PRÁCTICA 2: APRENDIZAJE SUPERVISADO (DengAI)
¶

Nombre y apellidos: Cristian Guerrero Balber

Contacto: cristian.guerrerobalber@gmail.com


Resumen¶


Esta práctica tiene como objetivo final la consecución de la mejor puntuación posible evaluada con la métrica MAE (Mean Absolute Error) sobre la predicción de la cantidad de casos afectados por el virus del Dengue. Es requisito casi indispensable obtener una métrica mae < 28. Este problema es parte de una competición organizada por DrivenData llamada DengAI.

Para conseguirlo, tras un primer proceso de exploración y clusterización de la Actividad 1 donde aún no se estaba teniendo en cuenta a la variable objetivo total_cases, ahora se realizará una reexploración teniendo en cuenta dicha variable. Se creará un pipeline de transformaciones del dataset basado en la Actividad 1 para que este documento sea completamente autocontenido, teniendo así el dataset resultante de dichas exploraciones y clusterizaciones anteriores.

A partir de este punto, se realizarán exploraciones univariable de total_cases y bivariable comprando este atributo con el resto. Además, se visualizará cómo varía a lo largo de los años con una visualización temporal.

Tras esta fase, se continuará con una exploración de posibles modelos en su estado por defecto que, según el tipo de predicción, se argumenta que son adecuados para su uso en la predicción. En esta exploración preliminar se decidirá cuáles son los más aptos para seguir con su desarrollo. Para dicha evaluación se utilizará la validación cruzada (cross validation) en lugar de dividir el dataset simplemente en entrenamiento y validación siendo la métrica a evaluar, como se ha comentado, el mae.

Además, se ha experimentado combinando modelos distintos y entrenándolos con el dataset dividido según la ciudad, sj e iq debido a una clara distinción en cuanto al número de casos que se visualiza en la fase de reexploración.

Por último, se optimizarán los parámetros de aquellos que obtuvieron puntuaciones por defecto del mae < 28 intentando conseguir el mejor modelo posible para la predicción del dataset de test. Esta predicción se enviará a DrivenData para la obtención de la métrica final.

El mejor resultado final obtenido entrenando sin split por alguna característica ha sido un mae = 26.6442 con el modelo LGBMRegressor, un framework de gradient boosting que utiliza algoritmos de aprendizaje basado en árboles.

Sin embargo, tras realizar el experimento de distintos modelos entrenándolos con split según ciudades se ha obtenido un mae = 25.9327. Esto ha sido gracias al entrenamiento por separado, curiosamente, mediante la misma clase de modelo: KNeighborsRegressor.

Como curiosidad, mientras se hacían experimentaciones incontroladas, se logró alcanzar un mae = 25.9303 con RandomForestRegressor. Sin embargo, al no haber tenido fijada la semilla en su ejecución, por desgracia, no se ha conseguido replicar el experimento.


Inicialización¶


In [ ]:
# Imports generales
import pandas as pd
import io
from google.colab import files
import numpy as np
import time

seed = 42  # Semilla aleatoria arbitraria y constante a incluir en los algoritmos estocásticos para que los experimentos sean siempre reproducibles por el profesor.
# OJO: En los experimentos estocásticos que requieran varias iteraciones con distintas semillas, podéis incorporarla como seed+1, seed+2, etc.

def upload_files (index_fields=None):
  uploaded = files.upload()
  for fn in uploaded.keys():
    print('User uploaded file "{name}" with length {length} bytes'.format(
        name=fn, length=len(uploaded[fn])))
    df = pd.read_csv(io.StringIO(uploaded[fn].decode('utf-8')), index_col = index_fields)

    return df

def download_predictions(test, pred_total_cases, model_name):
  file_name = "practica2_pred_" + model_name + time.strftime("%Y") + time.strftime("%m") + time.strftime("%d") + time.strftime("%H") + time.strftime("%M") + time.strftime("%S") + ".csv"
  predictions = pd.DataFrame({ 'city': test['city'], 'year': test['year'], 'weekofyear': test['weekofyear'], 'total_cases': pred_total_cases})
  with open(file_name, 'w') as f:
    predictions.to_csv(f, index = False)
  files.download(file_name)
  print("Downloaded " + file_name)
Out[ ]:
'\n# Imports generales\nimport pandas as pd\nimport io\nfrom google.colab import files\nimport numpy as np\nimport time\n\nseed = 42  # Semilla aleatoria arbitraria y constante a incluir en los algoritmos estocásticos para que los experimentos sean siempre reproducibles por el profesor.\n# OJO: En los experimentos estocásticos que requieran varias iteraciones con distintas semillas, podéis incorporarla como seed+1, seed+2, etc.\n\ndef upload_files (index_fields=None):\n  uploaded = files.upload()\n  for fn in uploaded.keys():\n    print(\'User uploaded file "{name}" with length {length} bytes\'.format(\n        name=fn, length=len(uploaded[fn])))\n    df = pd.read_csv(io.StringIO(uploaded[fn].decode(\'utf-8\')), index_col = index_fields)\n\n    return df\n\ndef download_predictions(test, pred_total_cases):\n  file_name = "practica2_pred_" + time.strftime("%Y") + time.strftime("%m") + time.strftime("%d") + time.strftime("%H") + time.strftime("%M") + time.strftime("%S") + ".csv"\n  predictions = pd.DataFrame({ \'city\': test[\'city\'], \'year\': test[\'year\'], \'weekofyear\': test[\'weekofyear\'], \'total_cases\': pred_total_cases})\n  with open(file_name, \'w\') as f:\n    predictions.to_csv(f, index = False)\n  files.download(file_name)\n  print("Downloaded " + file_name)\n'
In [ ]:
# Subir el conjunto de entrenamiento sin variable objetivo (dengue_features_train.csv)
train_feat = upload_files()
print(train_feat.shape)
train_feat.head()
In [ ]:
# Subir la variable objetivo total_cases del conjunto de entrenamiento (dengue_labels_train.csv)
train_labels = upload_files()

# Unificar el conjunto de entrenamiento (características + variable objetivo)
train = pd.merge(train_feat,train_labels,on=['city', 'year', 'weekofyear'])
print(train.shape)
train.head()
In [ ]:
# Subir el conjunto de test sin variable objetivo (dengue_features_test.csv)
test = upload_files()
print(test.shape)
test.head()
In [9]:
#Ocultar los warnings
import warnings
warnings.filterwarnings("ignore")
#Configurar ajustes generales de pandas
pd.set_option('display.max_rows', None)        # Mostrar todas las filas
pd.set_option('display.max_columns', None)     # Mostrar todas las columnas
pd.set_option('display.width', None)           # Ancho dinámico para evitar cortes horizontales
pd.set_option('display.max_colwidth', None)    # Mostrar contenido completo de las celdas

Reexploración¶


Aplicación de transformaciones e ingeniería de caraceterísticas de la Actividad 1¶

Antes de realizar todas las transformaciones descritas y aplicadas en la Actividad 1, se va a echar un vistazo a cómo esas transformaciones afectarían a la nueva variable integrada, el total de casos.

Realmente, lo más preocupante es la eliminación de instancias por un gran porcentaje de valores nulos y la sustitución de valores por tener valores nulos en sus características.

También, es crítico cómo se tratan los Outliers.

Como en la actividad 1 los outliers se trataban de forma específica para algunas de las características, esto se verá tras las transformaciones generales del dataset, ya que se aplicarán misma ingeniería de características y transformaciones que en la Actividad 1. Por lo tanto, es crítico observar si esta nueva variable tiene valores nulos:

In [10]:
train['total_cases'].isnull().value_counts()
Out[10]:
total_cases
False    1456
Name: count, dtype: int64

No hay valores nulos. Por lo tanto, las transformaciones de la actividad 1 no afectará a esta nueva variable (salvo por la eliminación de instancias por una gran cantidad de valores faltantes).

No obstante, antes de realizar estas transformaciones y para que todo funcione igual, vamos a separar esta variable de las demás y, luego, se volverá a fusionar teniendo en cuenta los índices que queden.

In [11]:
# Se vuelven a separar las variables
train_labels = train['total_cases']
train = train.drop('total_cases', axis = 1)

En base a todo el estudio preliminar realizado en la Actividad 1, donde se realizó una ingeniería de características completa (a excepción de la variable objetivo), se va a diseñar un código para el tratamiento de todo el dataset subido. Este código hace que este archivo sea autocontenido y no necesite del csv que se generó con la Actividad 1.

¡IMPORTANTE! Para ver las justificaciones de la ingeniería de características que viene a continuación, por favor, abrir la actividad 1 en paralelo para evitar duplicar trabajo.

In [12]:
import pandas as pd
from sklearn.preprocessing import LabelEncoder
from scipy import stats
from sklearn.linear_model import LinearRegression
from sklearn.model_selection import train_test_split


def drop_columns(df): #Aplicable a train y a test
    """
    Elimina columnas innecesarias del DataFrame.
    Ojo: en la actividad 1, se eliminó la columna "year", ya que no aportaba nada para un
    ejercicio de clusterización. Sin embargo, a pesar de que no van a usarse en esta actividad
    modelos especializados en series temporales (como ARIMA/SARIMA), se va a incluir la 
    variable año, ya que puede aportar desde el punto de vista predictivo. De hecho, se 
    comprobó mediante gráficas, que algunas características tenían un comportamiento
    creciente o decreciente en función del año. Puede que a la variable target le ocurra igual.
    """
    columns = ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']
    df.drop(columns=columns, inplace=True)
    return df

def encode_labels(df): #Aplicable a train y a test
    """Codifica etiquetas categóricas usando LabelEncoder."""
    encoder = LabelEncoder()
    df['city'] = encoder.fit_transform(df['city'])
    return df

def remove_high_na(df, threshold=0.5): #No aplicable a test
    """Elimina filas con un alto porcentaje de valores nulos en sus características"""
    filter_na = df.isna().any(axis=1)
    '''Ahora, se calcula el ratio entre columnas con na y el total de columnas.
    Como criterio, se establecerá que, en caso de que haya un 50% o más de
    características nulas, se eliminará la instancia.'''
    ind_high_na = []
    for i, row in df[filter_na].iterrows():
        ratio_na = row.isna().sum() / row.size
        if ratio_na >= threshold:
            ind_high_na.append(i)
    df.drop(index=ind_high_na, inplace=True)
    return df

def fill_nulls(df, sesgos): # No aplicable a test
    """Rellena los valores nulos en el DataFrame basado en el sesgo.
    Ojo, como novedad con respecto a la Actividad 1, se crearán dos diccionarios,
    uno para la media y otro para la mediana, de forma que se utilicen como
    cumplimentadores en los dataset de test. Esto lo hago así ya que, para un set de test
    podría ocurrir que sea tan pequeño (incluso de una instancia) que su media o mediana
    no se para nada representativa de la realidad o incluso de error al calcularse.
    """
    cols_with_mean = {} #Se crea un diccionario para almacenar columnas con su media de entrenamiento
    cols_with_median = {} #Se crea un diccionario para almacenar columnas con su mediana de entrenamiento
    for col in df.columns:
        if df[col].isnull().mean() < 0.1:  # Menos del 10% de nulos
            if sesgos[col] == 'Bajo sesgo o aproximadamente simétrica':
                df[col].fillna(df[col].mean(), inplace=True)
                cols_with_mean[col] = df[col].mean() #Se incluye la columna y su media
            else:
                df[col].fillna(df[col].median(), inplace=True)
                cols_with_mean[col] = df[col].mean() #Se incluye la columna y su mediana
    return df, cols_with_mean, cols_with_median

def fill_nulls_test(df, cols_with_mean, cols_with_median, linear_model): #Solo aplicable a test
    """
    Rellena los nulos del dataset de test con los diferentes datos del entrenamiento
    """
    for col in df:
        if col in cols_with_mean:
            df[col].fillna(cols_with_mean[col], inplace = True)
        elif col in cols_with_median:
            df[col].fillna(cols_with_median[col], inplace = True)
        elif col == 'ndvi_ne': #En la primera pasada, no se hace nada, todo lo demás tiene que estar relleno
            pass
        
    #Ahora sí, se evalúa si existen nulos en ndvi_ne y en caso afirmativo se cumplimentan con lm
    col = 'ndvi_ne'
    if any(df[col].isna()):
        target_column = col
        df_to_predict = df[df.isna().any(axis=1)]
        X = df_to_predict.drop(target_column, axis=1)
        y_pred = linear_model.predict(X)
        dict_index_values = dict(zip(df_to_predict.index, y_pred))
        df.fillna({target_column: dict_index_values}, inplace=True)
    return df

def compute_bias(df): #No aplicable a test
    """Calcula el sesgo para cada columna del DataFrame."""
    sesgos = {}
    tipos_sesgos = (
        'Bajo sesgo o aproximadamente simétrica',
        'Moderadamente sesgada',
        'Altamente sesgada'
    )
    for col in df.columns:
        sesgo = stats.skew(df[col], nan_policy='omit')
        if -0.5 < sesgo < 0.5:
            tipo = tipos_sesgos[0]
        elif -1 < sesgo <= -0.5 or 0.5 <= sesgo < 1:
            tipo = tipos_sesgos[1]
        else:
            tipo = tipos_sesgos[2]
        sesgos[col] = tipo
    return sesgos

def fill_high_na(df): #No aplica a test
    """Rellena valores nulos de alto porcentaje usando un modelo de regresión."""
    target_column = 'ndvi_ne'
    df_to_predict = df[df.isna().any(axis=1)]
    df_subtrain = df[~df.isna().any(axis=1)]
    X = df_subtrain.drop(target_column, axis=1)
    y = df_subtrain[target_column]
    X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
    linear_model = LinearRegression()
    linear_model.fit(X_train, y_train)
    X = df_to_predict.drop(target_column, axis=1)
    y_pred = linear_model.predict(X)
    dict_index_values = dict(zip(df_to_predict.index, y_pred))
    df.fillna({target_column: dict_index_values}, inplace=True)
    return df, linear_model

def treat_outliers(df): #Aplicable a train y a test
    """Tratamiento de outliers.
    Se ha cambiado la estrategia con respecto a la Actividad 1. En lugar de inputarse
    la media a los valores por encima de los umbrales considerados altos, se inputará
    el valor del propio umbral. Tiene más sentido y simplifica la función.
    """
    #Se calculan las medias de las columnas
    df['reanalysis_precip_amt_kg_per_m2'] = df['reanalysis_precip_amt_kg_per_m2'].apply(
    lambda x: x if x < 320 else 320)

    df['station_precip_mm'] = df['station_precip_mm'].apply(
    lambda x: x if x < 320 else 320)

    df['reanalysis_sat_precip_amt_mm'] = df['reanalysis_sat_precip_amt_mm'].apply(
    lambda x: x if x < 260 else 260)
    return df

def create_new_features(df): #Aplicable a train y a test
    """Creación de nuevas características"""
    # NDVIs
    ## Media ndvi
    df['calc_ndvi_avg'] = df[['ndvi_ne', 'ndvi_nw', 'ndvi_se', 'ndvi_sw']].mean(axis = 1)

    ## Rangos ndvi
    df['calc_ndvi_range'] = df[['ndvi_ne', 'ndvi_nw', 'ndvi_se', 'ndvi_sw']].max(axis = 1)-df[['ndvi_ne', 'ndvi_nw', 'ndvi_se', 'ndvi_sw']].min(axis = 1)

    # Temperaturas
    ## temp_range
    df['calc_temp_range_c'] = df['station_max_temp_c'] - df['station_min_temp_c']

    ## total_avg_air_temp
    df['calc_total_avg_air_temp'] = (df['reanalysis_air_temp_k'] - 273.15 + df['station_avg_temp_c']) / 2

    # Precipitaciones
    ## avg_precip
    df['calc_avg_precip'] = df[['reanalysis_precip_amt_kg_per_m2', 'station_precip_mm']].mean(axis=1)
    return df

def scale(df, scaler): #Aplicable a train y a test
    """Se escala entre 0 y 1"""
    df_norm = scaler.transform(df)
    return df_norm

def cluster(df, gmm): #Aplicable a train y a test
    "Se clasifica en un cluster y se devuelve dicha clasificación"
    clustering = gmm.predict(df)
    return clustering

Ahora se va a crear un pipeline exclusivo para el dataset de train. Este pipe irá llamando a las funciones creadas anteriormente en el orden preciso para obtener un dataset de train procesado y preparado para su reanálisis.

In [13]:
# Aplicar las transformaciones en orden deseado
from sklearn.preprocessing import MinMaxScaler
from sklearn.mixture import GaussianMixture
def run_pipeline(train):
    train = drop_columns(train)
    train = encode_labels(train)
    train = remove_high_na(train)
    sesgos = compute_bias(train)
    train, cols_with_mean, cols_with_median = fill_nulls(train, sesgos) #los diccionarios se usarán para test
    train, linear_model = fill_high_na(train) #linear_model se usarça para test
    train = treat_outliers(train)
    train = create_new_features(train)
    #Creo el escalador para train y test pero basado solamente en train
    min_max_scaler = MinMaxScaler()
    min_max_scaler.fit(train)
    train_norm = scale(train, min_max_scaler)
    #Se crea el modelo de clusterización para train y test pero basado solamente en train
    gmm = GaussianMixture(n_components=3)
    gmm.fit(train_norm)
    #Se llama a la función creada para clusterizar
    clustering = cluster(train_norm, gmm)
    #Se incluye el clustering como una característica más
    train['Cluster'] = clustering
    '''
    Con el fin de realizar un OneHotEncoder más entendible, se van a sustituir los valores 
    númericos ordenados por letras, digamos, A, B y C, que representarán los tres clusteres.
    '''
    train['Cluster'].replace({0: "A", 1: "B", 2: "C"}, inplace = True)
    '''
    Más adelante se realizará el OneHotEncoder, ya que de momento, el dataset de esta manera 
    viene muy bien para graficar en función de los clusters.
    '''
    return train, cols_with_mean, cols_with_median, linear_model, min_max_scaler, gmm

# Ejecutar el pipeline
train, cols_with_mean, cols_with_median, linear_model, min_max_scaler, gmm = run_pipeline(train)

Ahora, fusionemos el dataset resultante con las x_labels (solo los índices resultantes, ya que se han eliminado instancias y el "shape" es distinto)

In [14]:
indexes = train.index.to_list()
train_labels = train_labels.iloc[indexes]
train = pd.merge(train, train_labels, left_index = True, right_index = True)

Visualicemos como ha quedado el dataset

In [15]:
train.head()
Out[15]:
city year weekofyear ndvi_ne ndvi_nw ndvi_se ndvi_sw reanalysis_air_temp_k reanalysis_avg_temp_k reanalysis_max_air_temp_k reanalysis_min_air_temp_k reanalysis_precip_amt_kg_per_m2 reanalysis_relative_humidity_percent reanalysis_sat_precip_amt_mm reanalysis_specific_humidity_g_per_kg reanalysis_tdtr_k station_avg_temp_c station_diur_temp_rng_c station_max_temp_c station_min_temp_c station_precip_mm calc_ndvi_avg calc_ndvi_range calc_temp_range_c calc_total_avg_air_temp calc_avg_precip Cluster total_cases
0 1 1990 18 0.122600 0.103725 0.198483 0.177617 297.572857 297.742857 299.8 295.9 32.00 73.365714 12.42 14.012857 2.628571 25.442857 6.900000 29.4 20.0 16.0 0.150606 0.094758 9.4 24.932857 24.00 C 4
1 1 1990 19 0.169900 0.142175 0.162357 0.155486 298.211429 298.442857 300.9 296.4 17.94 77.368571 22.82 15.372857 2.371429 26.714286 6.371429 31.7 22.2 8.6 0.157479 0.027725 9.5 25.887857 13.27 C 5
2 1 1990 20 0.032250 0.172967 0.157200 0.170843 298.781429 298.878571 300.5 297.3 26.10 82.052857 34.54 16.848571 2.300000 26.714286 6.485714 32.2 22.8 41.4 0.133315 0.140717 9.4 26.172857 33.75 B 4
3 1 1990 21 0.128633 0.245067 0.227557 0.235886 298.987143 299.228571 301.4 297.0 13.90 80.337143 15.36 16.672857 2.428571 27.471429 6.771429 33.3 23.3 4.0 0.209286 0.116433 10.0 26.654286 8.95 B 3
4 1 1990 22 0.196200 0.262200 0.251200 0.247340 299.518571 299.664286 301.9 297.5 12.20 80.460000 7.52 17.210000 3.014286 28.942857 9.371429 35.0 23.9 5.8 0.239235 0.066000 11.1 27.655714 9.00 B 6

Análisis de la variable objetivo: Total_cases¶

Análisis univariable¶

In [16]:
train['total_cases'].describe()
Out[16]:
count    1446.000000
mean       24.656985
std        43.682654
min         0.000000
25%         5.000000
50%        12.000000
75%        28.000000
max       461.000000
Name: total_cases, dtype: float64

Con un mínimo de 0, un máximo de 461 y una media de 25 aproximadamente, ya se intuye que esta variable tiene outliers y que, probablemente, esté sesgada.

A continuación, se va a usar la visualización doble de violín y caja de bigotes. La razón por la que se escoge este tipo de visualización es porque, de un vistazo, podemos ver no solo la cantidad de ouliers y algunos parámetros estadísticos, sino también una estimación de la función de densidad de la distribución.

In [17]:
import seaborn as sns
import matplotlib.pyplot as plt
#Se ajusta un estilo para todos los gráficos y mantener la uniformidad
plt.style.use('seaborn-v0_8-bright')
#Se plotea un gráfico de violín y, sobre él, un boxplot
sns.violinplot(train['total_cases'])
sns.boxplot(train['total_cases'], width = 0.1)
plt.show()
#Ref: https://seaborn.pydata.org/generated/seaborn.violinplot.html
No description has been provided for this image

Se puede observar mediante la gráfica de violín y de caja juntas, que:

  • total_cases tiene muchos outliers
  • A pesar de los outliers, es una variable con una distribución bastante "normal", aunque sesgada hacia valores entre cero y 50 aproximadamente con una cola ascendente.

Comprobemos la cantidad de ouliers que existen:

In [18]:
Q1, Q2, Q3 = train['total_cases'].quantile([0.25, 0.5, 0.75])
IQR = Q3 - Q1
lim_sup = Q3 + 1.5 * IQR
len(train['total_cases'][train['total_cases'] > lim_sup])
Out[18]:
122

Aunque parecen muchos, 122 no es una cantidad sufiente como para desarrollar un modelo exclusivamente para estos, lo cual sería una posibilidad. Este modelo tendría una pobre capacidad predictora, por lo que se van a quedar tal cual para que los algoritmos de ML busquen los patrones o causas por los cuales se obtienen estos valores tan altos.

Análisis bivariable¶

Ahora, se va a realizar un scatterplot para ver las posibles relaciones entre el número de casos y el resto de variables. Como tenemos 28 variables incluyendo la objetivo y el Cluster, se van a hacer 12 comparaciones: total_cases vs Resto de variables menos la variable Cluster.

Esto se realiza de esta manera porque la variable Cluster se va a usar como método de visualización añadido con el color. Es decir, para cada gráfica, se va a ver cada cluster de un color.

Esto también nos ayudará a entender por qué se han formado los clusters de la manera que lo ha hecho.

In [19]:
fig, axs = plt.subplots(12, 2, figsize = (15, 30))
for i, column in enumerate(train.columns):
    row = i//2
    col = i % 2
    #Se verifica que no se exceda las 12 * 2 = 24 subgráficas
    if row < 12:
        sns.scatterplot(x = column, y = 'total_cases', hue = 'Cluster', data = train, ax=axs[row, col])
        axs[row, col].set_title(f'{column} vs total_cases')
plt.tight_layout()
plt.show()
No description has been provided for this image

Veamos también una serie temporal de la cantidad total de casos por año

In [20]:
fig, ax = plt.subplots(figsize = (15, 3))
agg = train.groupby("year")["total_cases"].sum()
plt.plot(agg)
plt.xticks(agg.index)
plt.tight_layout()
plt.xlabel("Años")
plt.ylabel("Casos Totales")
plt.show()
No description has been provided for this image

Se sacan las siguientes observaciones:

  • Claramente el cluster B da una información muy buena sobre aquellas instancias cuyos casos son muy elevados. Ojo, todos los casos elevados pertenecen al Cluster B, pero no todos los que pertenecen al Cluster B son casos elevados. Sin embargo, no hay demasiada distinción entre los clústeres A y C en todas las variables.
  • Para algunas variables como reanalysis_tdtr_k sí que se ve una clara distinción entre los clústeres A y C: cuanto mayor es el valor de esta variable, más se acerca a la agrupación del cluster C y menos al A y viceversa. Sin embargo, para esta misma variable, valores muy bajos de esta se agrupa en el B a la vez que aumentan los casos afectados. Recordemos que esta variable describe el rango de temperatura diurna. Así que, cuando el rango es muy pequeño, los casos aumentan.
  • La mayoría de casos elevados se encuentran en la ciudad "1".
  • No se ve una clara relación lineal entre el número de casos y el año, pero los número de casos mayores se dieron entre 1993 y 1999.
  • Aumentan los casos entre las semanas 35 y la 52
  • Cuando los valores de ndvi están entre 0.1 y 0.2 (en general), aumentan los casos.
  • En cuanto a las temperaturas, los mayores casos se dan cuando las temperaturas medias aumentan. Sin embargo, curiosamente, disminuyen cuando las máximas temperaturas disminuyen y las mínimas aumentan. Esto está muy en concordancia con la observación que se explicó antes del rango de temperaturas diurna.
  • Las precipitaciónes abundantes decrementan el número de casos.
  • Existe una gran diferencia en el número de casos y picos antes del año 2000 que en adelante.

En general, se observan claros patrones con la ayuda de la clusterización, que ha resultado ser muy útil.

Ahora, se volverá a utilizar la técnica del heatmap, pero esta vez solo nos centraremos en las relaciones entre las variables y la variable objetivo. Por lo tanto, en esta ocasión, cuanto mayor correlación exista, mejor capacidad predictora tendrá dicha variable, sobre todo para algoritmos basados en regresiones lineales.

Para poder realizar correctamente la matriz de correlaciones, se realiza el OneHotEncoding de la variable Cluster. La razón por la que se hace este cambio es porque realmente la variable Cluster no es ordinal, es decir, no es mayor, ni "mejor", el cluster "C" que el "A". Son atributos nominales. Por lo tanto, se crea una columna dicotómica para cada posible resultado.

In [21]:
train = pd.get_dummies(train, columns = ['Cluster'])

Se observa que el resultado son tres columnas adicionales con los Clústeres A, B y C y valores 1 y 0 (True y False).

In [22]:
train.head()
Out[22]:
city year weekofyear ndvi_ne ndvi_nw ndvi_se ndvi_sw reanalysis_air_temp_k reanalysis_avg_temp_k reanalysis_max_air_temp_k reanalysis_min_air_temp_k reanalysis_precip_amt_kg_per_m2 reanalysis_relative_humidity_percent reanalysis_sat_precip_amt_mm reanalysis_specific_humidity_g_per_kg reanalysis_tdtr_k station_avg_temp_c station_diur_temp_rng_c station_max_temp_c station_min_temp_c station_precip_mm calc_ndvi_avg calc_ndvi_range calc_temp_range_c calc_total_avg_air_temp calc_avg_precip total_cases Cluster_A Cluster_B Cluster_C
0 1 1990 18 0.122600 0.103725 0.198483 0.177617 297.572857 297.742857 299.8 295.9 32.00 73.365714 12.42 14.012857 2.628571 25.442857 6.900000 29.4 20.0 16.0 0.150606 0.094758 9.4 24.932857 24.00 4 False False True
1 1 1990 19 0.169900 0.142175 0.162357 0.155486 298.211429 298.442857 300.9 296.4 17.94 77.368571 22.82 15.372857 2.371429 26.714286 6.371429 31.7 22.2 8.6 0.157479 0.027725 9.5 25.887857 13.27 5 False False True
2 1 1990 20 0.032250 0.172967 0.157200 0.170843 298.781429 298.878571 300.5 297.3 26.10 82.052857 34.54 16.848571 2.300000 26.714286 6.485714 32.2 22.8 41.4 0.133315 0.140717 9.4 26.172857 33.75 4 False True False
3 1 1990 21 0.128633 0.245067 0.227557 0.235886 298.987143 299.228571 301.4 297.0 13.90 80.337143 15.36 16.672857 2.428571 27.471429 6.771429 33.3 23.3 4.0 0.209286 0.116433 10.0 26.654286 8.95 3 False True False
4 1 1990 22 0.196200 0.262200 0.251200 0.247340 299.518571 299.664286 301.9 297.5 12.20 80.460000 7.52 17.210000 3.014286 28.942857 9.371429 35.0 23.9 5.8 0.239235 0.066000 11.1 27.655714 9.00 6 False True False

Para poder plotear el HeatMap, se necesita el dataset en formato "largo" o "Tidydata"

In [23]:
#Se calcula la matriz de correlación y se transforma en forma larga
corr = train.corr()
labels = train.columns.tolist()

#Se genera una máscara por el triángulo superior
mask = np.triu(np.ones_like(corr, dtype=bool))

#Se establece la figura de matplotlib
f, ax = plt.subplots(figsize=(11, 11))

#Se genera un mapa de color divergente
cmap = sns.diverging_palette(230, 20, as_cmap=True)

#Se plotea el mapa de calor con la máscara y un ratio correcto
sns.heatmap(corr, mask=mask, cmap=cmap, vmax=1, vmin = -1, center=0,
            xticklabels = labels, yticklabels = labels,
            square=True, linewidths=.5, cbar_kws={"shrink": .5},
            annot = True, fmt=".2f", annot_kws = {"size": 6, "fontweight": 'bold'})
plt.xticks(fontsize = 8)
plt.yticks(fontsize = 8)

#Código adaptado de https://seaborn.pydata.org/examples/many_pairwise_correlations.html
Out[23]:
(array([ 0.5,  1.5,  2.5,  3.5,  4.5,  5.5,  6.5,  7.5,  8.5,  9.5, 10.5,
        11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5,
        22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5]),
 [Text(0, 0.5, 'city'),
  Text(0, 1.5, 'year'),
  Text(0, 2.5, 'weekofyear'),
  Text(0, 3.5, 'ndvi_ne'),
  Text(0, 4.5, 'ndvi_nw'),
  Text(0, 5.5, 'ndvi_se'),
  Text(0, 6.5, 'ndvi_sw'),
  Text(0, 7.5, 'reanalysis_air_temp_k'),
  Text(0, 8.5, 'reanalysis_avg_temp_k'),
  Text(0, 9.5, 'reanalysis_max_air_temp_k'),
  Text(0, 10.5, 'reanalysis_min_air_temp_k'),
  Text(0, 11.5, 'reanalysis_precip_amt_kg_per_m2'),
  Text(0, 12.5, 'reanalysis_relative_humidity_percent'),
  Text(0, 13.5, 'reanalysis_sat_precip_amt_mm'),
  Text(0, 14.5, 'reanalysis_specific_humidity_g_per_kg'),
  Text(0, 15.5, 'reanalysis_tdtr_k'),
  Text(0, 16.5, 'station_avg_temp_c'),
  Text(0, 17.5, 'station_diur_temp_rng_c'),
  Text(0, 18.5, 'station_max_temp_c'),
  Text(0, 19.5, 'station_min_temp_c'),
  Text(0, 20.5, 'station_precip_mm'),
  Text(0, 21.5, 'calc_ndvi_avg'),
  Text(0, 22.5, 'calc_ndvi_range'),
  Text(0, 23.5, 'calc_temp_range_c'),
  Text(0, 24.5, 'calc_total_avg_air_temp'),
  Text(0, 25.5, 'calc_avg_precip'),
  Text(0, 26.5, 'total_cases'),
  Text(0, 27.5, 'Cluster_A'),
  Text(0, 28.5, 'Cluster_B'),
  Text(0, 29.5, 'Cluster_C')])
No description has been provided for this image

Observando la matriz de correlaciones, se observa que no existe ninguna variable que esté fuertemente correlacionada con total_cases, teniendo el mayor coef. de Pearson reanalysis_min_air_temp_k con 0.33 (un nivel bajo).

Sin embargo, se ha detectado una correlación absoluta entre el Cluster_By city, con un coef. de Pearson igual a 1. Esto significa que podemos prescindir de una de las dos variables.

Por lo tanto, se va a prescindir de la variable del cluster B ya que, aunque a modo visualización ha sido de lo más útil para obtener ciertas conclusiones, a los algoritmos puede que los entorpezca por su absoluta correlación con la ciudad.

In [24]:
train.drop('Cluster_B', axis = 1, inplace = True)

Con esto finaliza la ingeniería de características de esta segunda actividad


Predicción¶


División de los conjuntos de entrenamiento y validación¶

Con el fin de testear adecuadamente los diferentes modelos a seleccionar, lo primero es dividir el dataset de entrenamiento en dos subdatasets:

  • train: que no confunda el nombre, no es exactamente el mismo que el utilizado hasta el momento. Este es un subconjunto del total de entrenamiento que va a servir para entrenar y probar los distintos algoritmos y luego, poder comprobar la eficacia de cada uno de ellos.
  • validation: este es un subconjunto del total del entrenamiento. Este subconjunto entra en el entrenamiento, sino que es el que se usa como testeo para comprobar la eficacia de los modelos.

A su vez, cada uno de ellos se divide en X e y, donde X son las variables independientes (o entrenables) e "y" es la variable dependiente (u objetivo). Por lo tanto, de lo que se trata es de que los diferentes modelos a usar sean capaz de aprender lo mejor posible las relaciones y patrones ocultos existentes entre las instancias de "X" y el valor de "y". Esto es el cometido principal de los modelos discriminantes.

Sin embargo, aún se puede llevar esta metodología un poco más allá: en lugar de hacer una sola división para usar una parte para entrenar y otra para validar, ¿Qué tal si todo el dataset es, por partes, conjunto de entrenamiento y validación? Es decir, se puede entrenar el modelo varias veces utilizando diferentes partes para entrenar y el resto para validar y la evaluación será la media del mae de todos estos entrenamientos y validaciones.

En otras palabras, se utilizará la validación cruzada. Por lo tanto, tan solo se dividen los datos en X e y, ya que todos el dataset actuará como entrenamiento y validación.

De esta manera, además, se controlará el overfitting haciendo que el modelo a construir sea más rebusto, sea cual sea el algoritmo que se use.

In [25]:
X = train.drop('total_cases', axis = 1)
y = train['total_cases']

Exploración de modelos¶

Intro¶

Para la selección a modelos a probar se debe tener en cuenta el problema al que nos enfrentamos.

En primer lugar, se trata de un problema de entrenamiento supervisado, es decir, donde se tiene la etiqueta a predecir durante el entrenamiento (al contrario que ocurría con clustering a ciegas).

En segundo lugar, se trata de un problema de regresión. La variable a predecir es de tipo numérica discreta. Aunque las regresiones están pensadas para variables continuas, en este caso, donde la naturaleza de la variable hace que la cantidad de "tipos" discretos sea muy elevada, cobra más sentido tratarla como una variable continua donde, al final, se redondee a un número entero para obtener un número entero y discreto.

Por lo tanto, los modelos que se van a probar serán los siguientes:

  • Regresión de Bosque Aleatorio (Random Forest): con este modelo se creará un conjunto de múltiples árboles de decisiones que se entrenan con diferentes subconjuntos de datos. Promedia las predicciones de todos los árboles para mejorar la precisión y reducir el sobreajuste.

  • Máquinas de Soporte Vectorial (SVR - Support Vector Regression): extensión de SVM (Support Vector Machine) que se utiliza para la regresión. Se intenta encontrar una función que tenga el menor error dentro de un margen especificado.

  • K-Vecinos más Cercanos (KNN - K-Nearest Neighbors): con este método se predice el valor de una nueva instancia basándose en los valores de sus k vecinos más cercanos en el espacio de características. La predicción se realiza tomando el promedio de los valores de los vecinos.

  • Regresión por Proceso Gaussiano (Gaussian Process Regression): un enfoque bayesiano que trata la regresión como un problema de inferencia estadística. Utiliza funciones gaussianas para modelar la relación entre las variables, permitiendo capturar incertidumbres en las predicciones.

  • XGBRegressor: este modelo, basado en el algoritmo de gradient boosting de XGBoost, entrena una serie de árboles de decisión secuenciales, donde cada nuevo árbol intenta corregir los errores de los anteriores. Es conocido por su eficiencia y capacidad de ajuste fino, mejorando precisión y rendimiento en problemas de regresión.

  • LGBMRegressor: el modelo de LightGBM usa un enfoque de boosting basado en histogramas, que permite un entrenamiento rápido y eficiente en grandes conjuntos de datos. Al construir árboles de manera selectiva, LightGBM logra precisión en la predicción y es menos propenso a sobreajuste en comparación con otros métodos de boosting.

  • CatBoostRegressor: CatBoost utiliza técnicas avanzadas de gradient boosting y es especialmente eficaz para datos categóricos. Construye árboles de decisión de forma iterativa y es conocido por su facilidad de uso y menor necesidad de preprocesamiento, ofreciendo gran precisión sin requerir un extenso ajuste de hiperparámetros.

Explicado esto, es importante aclarar lo siguiente. Aunque todos van a trabajar con el mismo X_trainy se van a evaluar bajo la mísma función de pérdida, el Mean Absolute Error (MAE), algunos de ellos necesitan de una estandarización de los datos para que funcionen adecuadamente. Estos son aquellos basados en el cálculo de distancias: SVR, KNeighborsRegressor y GaussianProcessRegressor. Sin embargo, el mecanismo de RandomForestRegressor y del resto, no se ven afectado por el escalado, ya que tienen un sistema de "corte" entre los valores de las características, por ejemplo, en el diseño de sus árboles de decisión.

Por lo tanto, primero se va a trabajar con X_train sin escalar para el modelo de RandomForestRegressor y, a continuación, se usará el conjunto de entrenamiento escalado para el resto.

Con respecto a la elección de los hiperparámetros, la estrategia será la siguiente:

  1. Se realizará una primera prueba para los distintos modelos con unos hiperparámetros estándar, ya sea porque son los que vienen por defecto al importar el modelo o porque son los recomendados según la literatura.
  2. Se escogerán los mejores modelos para continuar con el estudio y se hará un RandomSearchCV para explorar estocásticamente un conjunto de hiperparámetros.
  3. Basado en los resultados anteriores, se tratará de afinar los hiperparámetros con un Algoritmo Genético.

Preparación de funciones para transformaciones y métricas¶

Se va a crear otro pipeline exclusivo para procesar el dataset de test. Esto es importante ya que los modelos de ML se diseñarán en función del dataset de entrenamiento con todos sus preprocesos. Por lo tanto, para que el modelo de test pueda ser predicho correctamente, necesita tener un procesado que devuelva un dataset con una forma similar al de entrenamiento.

Sin embargo, no vale la misma función de pipe usada para entrenamiento (y por eso se crea uno distinto al que ya existe), ya que la lógica es algo diferente: se van a usar modelos de escalado, clusterización, rellenado de nulos, etc, basados en el dataset de entrenamiento.

In [26]:
def run_pipeline_test(test, cols_with_mean, cols_with_median, linear_model, min_max_scaler, gmm):
    test = drop_columns(test)
    test = encode_labels(test)
    '''
    A diferencia del dataset de train, al test no se le puede aplicar la función "remove_high_na" ya que nunca se sabe
    cómo va a venir un dataset y, este modelo, debe ser capaz de sacar una predicción incluso para ina instancia 
    completamente vacía. Esto es capaz de hacerlo porque inputaría a cada columna su media, su mediana o su valor
    según el modelo de regresión lineal definido en con train según proceda.
    '''
    test = fill_nulls_test(test, cols_with_mean, cols_with_median, linear_model)
    test = treat_outliers(test)
    test = create_new_features(test)
    #Se escala utilizando el escalador ajustado con los datos de train
    test_norm = scale(test, min_max_scaler)
    #Se clusteriza con el modelo gmm creado con los datos de train
    clustering = cluster(test_norm, gmm)
    #Se incluye el clustering como una característica más
    test['Cluster'] = clustering
    '''
    Con el fin de realizar un OneHotEncoder más entendible, se van a sustituir los valores 
    númericos ordenados por letras, digamos, A, B y C, que representarán los tres clusteres.
    '''
    test['Cluster'].replace({0: "A", 1: "B", 2: "C"}, inplace = True)
    '''
    Como el análisis de características ya se ha hecho con train, ya se sabe que se necesita
    realizar el OneHotEncoder y luego eliminar el Cluster_B por estar correlacionado con city
    '''
    test = pd.get_dummies(test, columns = ['Cluster'])
    test.drop("Cluster_B", axis = 1, inplace = True)
    #Se devuelve el dataset procesado para poder predecir su variable target con algoritmos de ML
    return test

# Ejecutar el pipeline
test_processed = run_pipeline_test(test.copy(), cols_with_mean, cols_with_median, linear_model, min_max_scaler, gmm)

Ahora se importan todos los módulos necesarios de los modelos descritos

In [27]:
#Se importan los modelos así como los buscadores de hiperparámetros
from sklearn.ensemble import RandomForestRegressor
from sklearn.svm import SVR
from sklearn.neighbors import KNeighborsRegressor
from sklearn.gaussian_process import GaussianProcessRegressor
from sklearn.metrics import mean_absolute_error, make_scorer
from sklearn.model_selection import cross_val_score
from xgboost import XGBRegressor
from lightgbm import LGBMRegressor
from catboost import CatBoostRegressor

Se crea un diccionario con los resultados para luego crear una tabla comparativa

In [28]:
summary = {'Indice': [],
           'Modelo': [],
           'MAE test (DrivenData)': [],
           'MAE CV': [],
           'MAE CV std': [],
           'Algoritmo': [],
           'Hiperparámetros': [],
           'Características': [],
           'Descripción': []            
           }

Se crea una función para escribir en el resumen

In [29]:
def write_summary(cv_mae, cv_mae_std, model, features, description):
    global summary
    if len(summary['Indice']) == 0:
        index = 0
    else:
        index = max(summary['Indice']) + 1
    summary['Indice'].append(index)
    summary['Modelo'].append(f'{model.__class__.__name__[:5]}_{index}')
    summary['MAE test (DrivenData)'].append(None)
    summary['MAE CV'].append(cv_mae) #Resultado de la media de los resultados de "crossvalidation"
    summary['MAE CV std'].append(cv_mae_std) #Desviación estándar de los resultados del "crossvalidation"
    summary['Algoritmo'].append(model.__class__.__name__)
    summary['Hiperparámetros'].append(model.get_params())
    summary['Características'].append(features)
    summary['Descripción'].append(description)
    

Ahora, para probar de forma iterativa cada modelo, estos se van a almacenar en un diccionario con su forma de Clase.

In [30]:
dict_models = {
    'RandomForestRegressor': RandomForestRegressor,
    'SVR': SVR,
    'KNeighborsRegressor': KNeighborsRegressor,
    'GaussianProcessRegressor': GaussianProcessRegressor,
    'XGBRegressor': XGBRegressor,
    'LGBMRegressor': LGBMRegressor,
    'CatBoostRegressor': CatBoostRegressor
}

Como el escalador utilizado hasta el momento no contenía ni las varibales ´Cluster_A´, ´Cluster_C´ ni las etiquetas total_cases, se creará otro escalador basado en "X" e "y". De esta manera, se usarán escaladores con todos los datos posibles de entrenamiento real.

En caso de obtener valores más altos de los vistos en el entrenamiento, simplemente saldrán valores ligeramente superiores a 1. Es decir, si el valor más alto en el entrenamiento son 50 casos que corresponde a 1 y en test existen 100 casos, este obtendrá un valor de 2, que seguirá estando en una escala semejante como para predecir adecuadamente.

In [31]:
x_min_max_scaler = MinMaxScaler()
x_min_max_scaler.fit(X)
y_min_max_scaler = MinMaxScaler()
y_min_max_scaler.fit(np.array(y).reshape(-1, 1))
Out[31]:
MinMaxScaler()
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
MinMaxScaler()

La función cross_val_score evalúa de forma interna el mae si se le indica en uno de sus argumentos. El problema es que, a la hora de hacer predicciones, puede que estos den algunos resultados negativos por tratarse de regresiones, haciendo que el mae se vea afectado por estos. Como la variable objetivo trata sobre personas afectadas, siempre será un número entero y natural, por lo que se creará una función personalizada de score que evalúe el mae pero convirtiendo antes las predicciones negativas a cero.

Podría pensarse que es buena idea, aprovechando la función, transformar también las variables a enteros, pero no se hará debido a que a veces tendrá que evaluar las predicciones escaladas entre 0 y 1, dependiendo del modelo.

In [32]:
def non_negative_mae(y_true, y_pred):
    y_pred = np.maximum(y_pred, 0)  # Reemplaza valores negativos por cero
    return mean_absolute_error(y_true, y_pred)

#Se crea un scorer con la función personalizada
scorer = make_scorer(non_negative_mae, greater_is_better=False)

Ahora, se crea una función personal para realizar la validación cruzada. De esta manera, se simplifica el resto del código llamando a una función con menos argumentos ya que la mayoría se mantienen. Además, se devolverá como resultado de la función no solo la media de los resultados de la validación cruzada, sino también su desviación estandar (std) para hacernos una idea de la precisión del conjunto de resultados.

In [33]:
def pers_cross_val_score(model, X, y, scaled = False):
    #Se crean 10 pliegues
    cv_mae_array = abs(cross_val_score(model, X, y, cv=5, scoring=scorer))
    cv_mae = cv_mae_array.mean()
    cv_mae_std = cv_mae_array.std()
    #Si X e y se han pasado escalados, el mae se tiene que desescalar para poder ser comparados
    if scaled == True:
        global y_min_max_scaler
        cv_mae = y_min_max_scaler.inverse_transform(cv_mae.reshape(-1, 1))[0][0]
        cv_mae_std = y_min_max_scaler.inverse_transform(cv_mae_std.reshape(-1, 1))[0][0]
    return cv_mae, cv_mae_std

Ahora, se creará una lista con el nombre de los modelos que sí requieren (o se aconseja) escalado y de aquellos que requieren fijar la semilla aleatoria para garantizar la reproducibilidad de los experimentos.

In [34]:
models_to_scale = ['SVR','KNeighborsRegressor','GaussianProcessRegressor'] 
models_to_seed = ['RandomForestRegressor', 'XGBRegressor', 'LGBMRegressor', 'CatBoostRegressor']

La siguiente función va a recibir los diferentes modelos, con las diferentes columnas del dataset que se van a ir escogiendo para hacer pruebas, así como los parámetros que se van a utilizar en el modelo. La misión de la función try_models será la de evaluar cada uno de estos modelos, ya sea con columnas y parámetros enviados en el argumento como de los modelos en su estado más básico por defecto.

Dentro de la lógica de la función, se ha creado un flujo para evaluar los modelos normalizados o no, y con semilla aleatoria o no, en función de las listas definidas anteriormente.

Además, llamará a la función que escribe en el resumen, de forma que finalmente se tengan todos los experimentos recogidos en una misma tabla.

In [92]:
def try_models(X, y, dict_models, dict_cols_selected = None, dict_params = None):
    for name, class_model in dict_models.items():
        #Se llaman a las variables de entorno globales
        global x_min_max_scaler
        global y_min_max_scaler
        global models_to_scale
        global models_to_seed

        #Se extraen las columnas en caso de haber sido pasadas. Sino, se escogen todas (esto se hace para unificar código más adelante)
        if dict_cols_selected == None:
            cols_selected = X.columns.tolist()
        else:
            cols_selected = dict_cols_selected[name].copy()
        #Se crea la instancia de la clase de modelo
        if dict_params == None:
            if name in models_to_seed:
                if name != 'CatBoostRegressor':
                    model = class_model(random_state = seed)
                else:
                    model = class_model(random_seed = seed)
            else:
                model = class_model()
        else:
            params = dict_params[name]
            model = class_model(**params)
        
        #Se envía una un dataset escalado a evaluar o no en función del tipo de modelo
        if name not in models_to_scale:
            # Realizar validación cruzada de 5-folds
            cv_mae, cv_mae_std = pers_cross_val_score(model, X.loc[:,cols_selected], y)    
        else:
            #Se normaliza X e y, luego se pasa a dataframe X para poder ser filtrado y enviado a evaluar
            X_norm = pd.DataFrame(x_min_max_scaler.transform(X), columns = X.columns)
            y_norm = y_min_max_scaler.transform(np.array(y).reshape(-1, 1))
            # Realizar validación cruzada de 5-folds
            cv_mae, cv_mae_std = pers_cross_val_score(model, X_norm.loc[:,cols_selected], y_norm, scaled = True) 

        #Se añaden los datos al resumen de modelos
        base_description = """Transformaciones: 
        - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']
        - Codificación de city en 0 y 1
        - Eliminación de instancias de más de un 50% de nulos en sus características
        - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.
        - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.
        - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).
        - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']
        - Escalado entre 0 y 1 para clusterización
        - Clusterización en 3 clústeres mediante Gaussian Mixture Model
        - Eliminación del cluster "B" por correlación absoluta con la variable city
        """
        if name not in models_to_scale:
            description = base_description
        else:
            description = base_description + "\n- Escalado entre 0 y 1 para entrenamiento."
        print(f'MAE CV para {name}: {cv_mae}')
        write_summary(cv_mae, cv_mae_std, model, cols_selected, description)

Primeros experimentos¶

Se prueban los modelos con los parámetros por defecto y con todas las columnas del dataset de entrenamiento

In [ ]:
try_models(X, y, dict_models)
MAE CV para RandomForestRegressor: 19.890978117169787
MAE CV para SVR: 33.194767105419714
MAE CV para KNeighborsRegressor: 21.418423577138768
MAE CV para GaussianProcessRegressor: 55.67719464482355
MAE CV para XGBRegressor: 22.3768203066653
[LightGBM] [Info] Auto-choosing row-wise multi-threading, the overhead of testing was 0.000973 seconds.
You can set `force_row_wise=true` to remove the overhead.
And if memory is not enough, you can set `force_col_wise=true`.
[LightGBM] [Info] Total Bins 5144
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 28
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000256 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 5144
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 28
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000254 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 5144
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 28
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000227 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 5070
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 28
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000247 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 5056
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 28
[LightGBM] [Info] Start training from score 28.448574
MAE CV para LGBMRegressor: 20.311619596754472
Learning rate set to 0.041892
0:	learn: 27.5337004	total: 156ms	remaining: 2m 35s
1:	learn: 27.1768884	total: 158ms	remaining: 1m 18s
2:	learn: 26.7573047	total: 159ms	remaining: 52.9s
3:	learn: 26.3336983	total: 161ms	remaining: 40s
4:	learn: 25.9095444	total: 162ms	remaining: 32.3s
5:	learn: 25.6212964	total: 164ms	remaining: 27.2s
6:	learn: 25.2699538	total: 166ms	remaining: 23.5s
7:	learn: 24.8562447	total: 167ms	remaining: 20.7s
8:	learn: 24.5379993	total: 169ms	remaining: 18.6s
9:	learn: 24.2764258	total: 171ms	remaining: 16.9s
10:	learn: 24.0157374	total: 173ms	remaining: 15.5s
11:	learn: 23.7182669	total: 175ms	remaining: 14.4s
12:	learn: 23.3792738	total: 176ms	remaining: 13.4s
13:	learn: 23.0155044	total: 178ms	remaining: 12.5s
14:	learn: 22.7829558	total: 179ms	remaining: 11.8s
15:	learn: 22.5068616	total: 181ms	remaining: 11.1s
16:	learn: 22.2153726	total: 183ms	remaining: 10.6s
17:	learn: 21.9690346	total: 184ms	remaining: 10.1s
18:	learn: 21.7851045	total: 187ms	remaining: 9.63s
19:	learn: 21.6033756	total: 189ms	remaining: 9.24s
20:	learn: 21.3335540	total: 190ms	remaining: 8.88s
21:	learn: 21.0517867	total: 192ms	remaining: 8.54s
22:	learn: 20.8615712	total: 194ms	remaining: 8.23s
23:	learn: 20.6578509	total: 195ms	remaining: 7.95s
24:	learn: 20.4929591	total: 197ms	remaining: 7.68s
25:	learn: 20.3122854	total: 199ms	remaining: 7.44s
26:	learn: 20.1464147	total: 201ms	remaining: 7.23s
27:	learn: 19.9506996	total: 203ms	remaining: 7.03s
28:	learn: 19.8425362	total: 204ms	remaining: 6.84s
29:	learn: 19.6104783	total: 206ms	remaining: 6.66s
30:	learn: 19.4394743	total: 208ms	remaining: 6.49s
31:	learn: 19.2993684	total: 209ms	remaining: 6.33s
32:	learn: 19.1704690	total: 211ms	remaining: 6.18s
33:	learn: 18.9994439	total: 213ms	remaining: 6.04s
34:	learn: 18.8479679	total: 214ms	remaining: 5.91s
35:	learn: 18.7104260	total: 216ms	remaining: 5.79s
36:	learn: 18.5554538	total: 218ms	remaining: 5.67s
37:	learn: 18.4163029	total: 220ms	remaining: 5.56s
38:	learn: 18.2681046	total: 221ms	remaining: 5.46s
39:	learn: 18.1562028	total: 223ms	remaining: 5.36s
40:	learn: 18.0166400	total: 225ms	remaining: 5.26s
41:	learn: 17.8847995	total: 226ms	remaining: 5.17s
42:	learn: 17.7367546	total: 228ms	remaining: 5.08s
43:	learn: 17.6170519	total: 230ms	remaining: 4.99s
44:	learn: 17.5178044	total: 231ms	remaining: 4.91s
45:	learn: 17.3413671	total: 233ms	remaining: 4.84s
46:	learn: 17.2238809	total: 235ms	remaining: 4.77s
47:	learn: 17.0975247	total: 237ms	remaining: 4.7s
48:	learn: 16.9790188	total: 238ms	remaining: 4.63s
49:	learn: 16.9119414	total: 240ms	remaining: 4.56s
50:	learn: 16.8045185	total: 242ms	remaining: 4.5s
51:	learn: 16.7115267	total: 243ms	remaining: 4.44s
52:	learn: 16.6497629	total: 245ms	remaining: 4.38s
53:	learn: 16.5818802	total: 247ms	remaining: 4.32s
54:	learn: 16.4705832	total: 248ms	remaining: 4.27s
55:	learn: 16.4037348	total: 250ms	remaining: 4.22s
56:	learn: 16.3253734	total: 252ms	remaining: 4.17s
57:	learn: 16.1841764	total: 254ms	remaining: 4.12s
58:	learn: 16.1202222	total: 256ms	remaining: 4.08s
59:	learn: 16.0168049	total: 257ms	remaining: 4.03s
60:	learn: 15.9485300	total: 259ms	remaining: 3.99s
61:	learn: 15.8614067	total: 261ms	remaining: 3.94s
62:	learn: 15.7778670	total: 262ms	remaining: 3.9s
63:	learn: 15.7134974	total: 264ms	remaining: 3.86s
64:	learn: 15.6487791	total: 266ms	remaining: 3.83s
65:	learn: 15.5836067	total: 268ms	remaining: 3.79s
66:	learn: 15.5091469	total: 270ms	remaining: 3.75s
67:	learn: 15.4111980	total: 271ms	remaining: 3.72s
68:	learn: 15.3091282	total: 273ms	remaining: 3.68s
69:	learn: 15.2074736	total: 274ms	remaining: 3.65s
70:	learn: 15.1559531	total: 276ms	remaining: 3.61s
71:	learn: 15.0870044	total: 278ms	remaining: 3.58s
72:	learn: 15.0275031	total: 280ms	remaining: 3.55s
73:	learn: 14.9591161	total: 282ms	remaining: 3.52s
74:	learn: 14.8927484	total: 284ms	remaining: 3.5s
75:	learn: 14.8189442	total: 285ms	remaining: 3.47s
76:	learn: 14.7087233	total: 287ms	remaining: 3.44s
77:	learn: 14.6542961	total: 289ms	remaining: 3.41s
78:	learn: 14.6177781	total: 290ms	remaining: 3.38s
79:	learn: 14.5711949	total: 292ms	remaining: 3.36s
80:	learn: 14.4917166	total: 294ms	remaining: 3.33s
81:	learn: 14.4158381	total: 295ms	remaining: 3.31s
82:	learn: 14.3753502	total: 297ms	remaining: 3.29s
83:	learn: 14.3274749	total: 299ms	remaining: 3.26s
84:	learn: 14.2541004	total: 301ms	remaining: 3.24s
85:	learn: 14.1840220	total: 303ms	remaining: 3.22s
86:	learn: 14.1011966	total: 304ms	remaining: 3.19s
87:	learn: 14.0531629	total: 306ms	remaining: 3.17s
88:	learn: 14.0223809	total: 308ms	remaining: 3.15s
89:	learn: 13.9752548	total: 310ms	remaining: 3.13s
90:	learn: 13.9184139	total: 311ms	remaining: 3.11s
91:	learn: 13.8914941	total: 313ms	remaining: 3.09s
92:	learn: 13.8320656	total: 315ms	remaining: 3.07s
93:	learn: 13.7871123	total: 317ms	remaining: 3.05s
94:	learn: 13.7562250	total: 319ms	remaining: 3.04s
95:	learn: 13.7019263	total: 320ms	remaining: 3.02s
96:	learn: 13.6548584	total: 322ms	remaining: 3s
97:	learn: 13.6176267	total: 324ms	remaining: 2.98s
98:	learn: 13.5804656	total: 325ms	remaining: 2.96s
99:	learn: 13.5086030	total: 327ms	remaining: 2.94s
100:	learn: 13.4337498	total: 329ms	remaining: 2.93s
101:	learn: 13.3774745	total: 331ms	remaining: 2.91s
102:	learn: 13.3367281	total: 333ms	remaining: 2.9s
103:	learn: 13.2766837	total: 334ms	remaining: 2.88s
104:	learn: 13.2391869	total: 336ms	remaining: 2.86s
105:	learn: 13.2157567	total: 338ms	remaining: 2.85s
106:	learn: 13.1983363	total: 339ms	remaining: 2.83s
107:	learn: 13.1750310	total: 341ms	remaining: 2.81s
108:	learn: 13.1257528	total: 343ms	remaining: 2.8s
109:	learn: 13.0703394	total: 344ms	remaining: 2.79s
110:	learn: 13.0368062	total: 346ms	remaining: 2.77s
111:	learn: 12.9828456	total: 348ms	remaining: 2.76s
112:	learn: 12.9320789	total: 350ms	remaining: 2.75s
113:	learn: 12.9156402	total: 352ms	remaining: 2.73s
114:	learn: 12.8907006	total: 353ms	remaining: 2.72s
115:	learn: 12.8513445	total: 355ms	remaining: 2.71s
116:	learn: 12.8143214	total: 357ms	remaining: 2.69s
117:	learn: 12.7792082	total: 358ms	remaining: 2.68s
118:	learn: 12.7775898	total: 359ms	remaining: 2.65s
119:	learn: 12.7299901	total: 361ms	remaining: 2.64s
120:	learn: 12.7128705	total: 362ms	remaining: 2.63s
121:	learn: 12.6620896	total: 364ms	remaining: 2.62s
122:	learn: 12.6355359	total: 366ms	remaining: 2.61s
123:	learn: 12.5761249	total: 368ms	remaining: 2.6s
124:	learn: 12.5339368	total: 369ms	remaining: 2.58s
125:	learn: 12.4883600	total: 371ms	remaining: 2.57s
126:	learn: 12.4614097	total: 373ms	remaining: 2.56s
127:	learn: 12.4332794	total: 374ms	remaining: 2.55s
128:	learn: 12.4152785	total: 376ms	remaining: 2.54s
129:	learn: 12.3697813	total: 378ms	remaining: 2.53s
130:	learn: 12.3454565	total: 380ms	remaining: 2.52s
131:	learn: 12.3210708	total: 382ms	remaining: 2.51s
132:	learn: 12.2835713	total: 384ms	remaining: 2.5s
133:	learn: 12.2527780	total: 385ms	remaining: 2.49s
134:	learn: 12.2310245	total: 387ms	remaining: 2.48s
135:	learn: 12.1914006	total: 389ms	remaining: 2.47s
136:	learn: 12.1432119	total: 390ms	remaining: 2.46s
137:	learn: 12.1003495	total: 392ms	remaining: 2.45s
138:	learn: 12.0723356	total: 394ms	remaining: 2.44s
139:	learn: 12.0405975	total: 396ms	remaining: 2.43s
140:	learn: 11.9859155	total: 398ms	remaining: 2.42s
141:	learn: 11.9453228	total: 399ms	remaining: 2.41s
142:	learn: 11.9030833	total: 401ms	remaining: 2.4s
143:	learn: 11.8830612	total: 403ms	remaining: 2.39s
144:	learn: 11.8598283	total: 404ms	remaining: 2.38s
145:	learn: 11.8235006	total: 406ms	remaining: 2.38s
146:	learn: 11.7987088	total: 408ms	remaining: 2.37s
147:	learn: 11.7812045	total: 410ms	remaining: 2.36s
148:	learn: 11.7267610	total: 412ms	remaining: 2.35s
149:	learn: 11.6945670	total: 413ms	remaining: 2.34s
150:	learn: 11.6548710	total: 415ms	remaining: 2.33s
151:	learn: 11.6204944	total: 417ms	remaining: 2.32s
152:	learn: 11.5974209	total: 418ms	remaining: 2.31s
153:	learn: 11.5533928	total: 420ms	remaining: 2.31s
154:	learn: 11.5136522	total: 422ms	remaining: 2.3s
155:	learn: 11.4928831	total: 423ms	remaining: 2.29s
156:	learn: 11.4543738	total: 425ms	remaining: 2.28s
157:	learn: 11.4123270	total: 427ms	remaining: 2.27s
158:	learn: 11.3814915	total: 429ms	remaining: 2.27s
159:	learn: 11.3481089	total: 430ms	remaining: 2.26s
160:	learn: 11.3214610	total: 432ms	remaining: 2.25s
161:	learn: 11.2847273	total: 434ms	remaining: 2.24s
162:	learn: 11.2389600	total: 435ms	remaining: 2.23s
163:	learn: 11.1968804	total: 437ms	remaining: 2.23s
164:	learn: 11.1827876	total: 439ms	remaining: 2.22s
165:	learn: 11.1350744	total: 441ms	remaining: 2.21s
166:	learn: 11.0961916	total: 443ms	remaining: 2.21s
167:	learn: 11.0480325	total: 444ms	remaining: 2.2s
168:	learn: 11.0197238	total: 446ms	remaining: 2.19s
169:	learn: 10.9918113	total: 448ms	remaining: 2.19s
170:	learn: 10.9457364	total: 449ms	remaining: 2.18s
171:	learn: 10.9187043	total: 451ms	remaining: 2.17s
172:	learn: 10.8958985	total: 453ms	remaining: 2.16s
173:	learn: 10.8618905	total: 454ms	remaining: 2.16s
174:	learn: 10.8199176	total: 457ms	remaining: 2.15s
175:	learn: 10.7932776	total: 458ms	remaining: 2.15s
176:	learn: 10.7494362	total: 460ms	remaining: 2.14s
177:	learn: 10.7187378	total: 462ms	remaining: 2.13s
178:	learn: 10.6845712	total: 463ms	remaining: 2.13s
179:	learn: 10.6595814	total: 465ms	remaining: 2.12s
180:	learn: 10.6282182	total: 467ms	remaining: 2.11s
181:	learn: 10.6157774	total: 468ms	remaining: 2.1s
182:	learn: 10.5757202	total: 470ms	remaining: 2.1s
183:	learn: 10.5318075	total: 472ms	remaining: 2.09s
184:	learn: 10.4988927	total: 474ms	remaining: 2.09s
185:	learn: 10.4765447	total: 476ms	remaining: 2.08s
186:	learn: 10.4428042	total: 478ms	remaining: 2.08s
187:	learn: 10.4185201	total: 479ms	remaining: 2.07s
188:	learn: 10.3935356	total: 481ms	remaining: 2.06s
189:	learn: 10.3613418	total: 483ms	remaining: 2.06s
190:	learn: 10.3257077	total: 484ms	remaining: 2.05s
191:	learn: 10.2948405	total: 486ms	remaining: 2.04s
192:	learn: 10.2695859	total: 488ms	remaining: 2.04s
193:	learn: 10.2344061	total: 490ms	remaining: 2.04s
194:	learn: 10.2028565	total: 492ms	remaining: 2.03s
195:	learn: 10.1702934	total: 494ms	remaining: 2.02s
196:	learn: 10.1475344	total: 495ms	remaining: 2.02s
197:	learn: 10.1212872	total: 497ms	remaining: 2.01s
198:	learn: 10.0872439	total: 499ms	remaining: 2.01s
199:	learn: 10.0528967	total: 500ms	remaining: 2s
200:	learn: 10.0207459	total: 502ms	remaining: 2s
201:	learn: 9.9998993	total: 504ms	remaining: 1.99s
202:	learn: 9.9788034	total: 506ms	remaining: 1.99s
203:	learn: 9.9550834	total: 508ms	remaining: 1.98s
204:	learn: 9.9204970	total: 510ms	remaining: 1.98s
205:	learn: 9.8984798	total: 511ms	remaining: 1.97s
206:	learn: 9.8563565	total: 513ms	remaining: 1.97s
207:	learn: 9.8235571	total: 515ms	remaining: 1.96s
208:	learn: 9.7858189	total: 517ms	remaining: 1.95s
209:	learn: 9.7606859	total: 518ms	remaining: 1.95s
210:	learn: 9.7394627	total: 520ms	remaining: 1.95s
211:	learn: 9.7289770	total: 522ms	remaining: 1.94s
212:	learn: 9.6957602	total: 524ms	remaining: 1.93s
213:	learn: 9.6641699	total: 525ms	remaining: 1.93s
214:	learn: 9.6488090	total: 527ms	remaining: 1.92s
215:	learn: 9.6301046	total: 529ms	remaining: 1.92s
216:	learn: 9.6088129	total: 530ms	remaining: 1.91s
217:	learn: 9.5822526	total: 532ms	remaining: 1.91s
218:	learn: 9.5626788	total: 534ms	remaining: 1.9s
219:	learn: 9.5545809	total: 536ms	remaining: 1.9s
220:	learn: 9.5196650	total: 538ms	remaining: 1.89s
221:	learn: 9.4910372	total: 539ms	remaining: 1.89s
222:	learn: 9.4605036	total: 541ms	remaining: 1.89s
223:	learn: 9.4321321	total: 543ms	remaining: 1.88s
224:	learn: 9.4038520	total: 544ms	remaining: 1.88s
225:	learn: 9.3747038	total: 546ms	remaining: 1.87s
226:	learn: 9.3613910	total: 548ms	remaining: 1.86s
227:	learn: 9.3420000	total: 549ms	remaining: 1.86s
228:	learn: 9.3189340	total: 551ms	remaining: 1.86s
229:	learn: 9.2886795	total: 553ms	remaining: 1.85s
230:	learn: 9.2666898	total: 555ms	remaining: 1.85s
231:	learn: 9.2631799	total: 557ms	remaining: 1.84s
232:	learn: 9.2427677	total: 558ms	remaining: 1.84s
233:	learn: 9.2183975	total: 560ms	remaining: 1.83s
234:	learn: 9.2012742	total: 562ms	remaining: 1.83s
235:	learn: 9.1800157	total: 563ms	remaining: 1.82s
236:	learn: 9.1768397	total: 565ms	remaining: 1.82s
237:	learn: 9.1482968	total: 567ms	remaining: 1.81s
238:	learn: 9.1217236	total: 569ms	remaining: 1.81s
239:	learn: 9.1043920	total: 570ms	remaining: 1.81s
240:	learn: 9.0955084	total: 572ms	remaining: 1.8s
241:	learn: 9.0588391	total: 574ms	remaining: 1.8s
242:	learn: 9.0294026	total: 576ms	remaining: 1.79s
243:	learn: 8.9983135	total: 578ms	remaining: 1.79s
244:	learn: 8.9814219	total: 579ms	remaining: 1.78s
245:	learn: 8.9591491	total: 581ms	remaining: 1.78s
246:	learn: 8.9534333	total: 583ms	remaining: 1.78s
247:	learn: 8.9502312	total: 585ms	remaining: 1.77s
248:	learn: 8.9385949	total: 586ms	remaining: 1.77s
249:	learn: 8.9082003	total: 588ms	remaining: 1.76s
250:	learn: 8.8924752	total: 590ms	remaining: 1.76s
251:	learn: 8.8707757	total: 592ms	remaining: 1.76s
252:	learn: 8.8446489	total: 594ms	remaining: 1.75s
253:	learn: 8.8241594	total: 595ms	remaining: 1.75s
254:	learn: 8.8154992	total: 597ms	remaining: 1.74s
255:	learn: 8.7921038	total: 599ms	remaining: 1.74s
256:	learn: 8.7799018	total: 601ms	remaining: 1.74s
257:	learn: 8.7741520	total: 603ms	remaining: 1.73s
258:	learn: 8.7533852	total: 604ms	remaining: 1.73s
259:	learn: 8.7314972	total: 606ms	remaining: 1.72s
260:	learn: 8.7221389	total: 608ms	remaining: 1.72s
261:	learn: 8.6951363	total: 609ms	remaining: 1.72s
262:	learn: 8.6864112	total: 611ms	remaining: 1.71s
263:	learn: 8.6768117	total: 613ms	remaining: 1.71s
264:	learn: 8.6747229	total: 615ms	remaining: 1.7s
265:	learn: 8.6463414	total: 616ms	remaining: 1.7s
266:	learn: 8.6158566	total: 618ms	remaining: 1.7s
267:	learn: 8.5920188	total: 620ms	remaining: 1.69s
268:	learn: 8.5829219	total: 622ms	remaining: 1.69s
269:	learn: 8.5802089	total: 623ms	remaining: 1.69s
270:	learn: 8.5554036	total: 625ms	remaining: 1.68s
271:	learn: 8.5258025	total: 627ms	remaining: 1.68s
272:	learn: 8.5067795	total: 628ms	remaining: 1.67s
273:	learn: 8.4894088	total: 630ms	remaining: 1.67s
274:	learn: 8.4806800	total: 632ms	remaining: 1.67s
275:	learn: 8.4639406	total: 634ms	remaining: 1.66s
276:	learn: 8.4535738	total: 636ms	remaining: 1.66s
277:	learn: 8.4305736	total: 637ms	remaining: 1.66s
278:	learn: 8.4251350	total: 639ms	remaining: 1.65s
279:	learn: 8.4150001	total: 641ms	remaining: 1.65s
280:	learn: 8.3895296	total: 642ms	remaining: 1.64s
281:	learn: 8.3550603	total: 644ms	remaining: 1.64s
282:	learn: 8.3348182	total: 646ms	remaining: 1.64s
283:	learn: 8.3283775	total: 648ms	remaining: 1.63s
284:	learn: 8.3132551	total: 649ms	remaining: 1.63s
285:	learn: 8.3066669	total: 651ms	remaining: 1.63s
286:	learn: 8.2833545	total: 653ms	remaining: 1.62s
287:	learn: 8.2744521	total: 655ms	remaining: 1.62s
288:	learn: 8.2399280	total: 656ms	remaining: 1.61s
289:	learn: 8.2273201	total: 658ms	remaining: 1.61s
290:	learn: 8.2073953	total: 660ms	remaining: 1.61s
291:	learn: 8.1807485	total: 663ms	remaining: 1.61s
292:	learn: 8.1715544	total: 665ms	remaining: 1.6s
293:	learn: 8.1560096	total: 667ms	remaining: 1.6s
294:	learn: 8.1454093	total: 669ms	remaining: 1.6s
295:	learn: 8.1382715	total: 670ms	remaining: 1.59s
296:	learn: 8.1295537	total: 672ms	remaining: 1.59s
297:	learn: 8.1207556	total: 674ms	remaining: 1.59s
298:	learn: 8.1100225	total: 676ms	remaining: 1.58s
299:	learn: 8.0886968	total: 678ms	remaining: 1.58s
300:	learn: 8.0575678	total: 680ms	remaining: 1.58s
301:	learn: 8.0506381	total: 682ms	remaining: 1.58s
302:	learn: 8.0349618	total: 684ms	remaining: 1.57s
303:	learn: 8.0288489	total: 686ms	remaining: 1.57s
304:	learn: 8.0180156	total: 687ms	remaining: 1.57s
305:	learn: 7.9994171	total: 689ms	remaining: 1.56s
306:	learn: 7.9796432	total: 691ms	remaining: 1.56s
307:	learn: 7.9592944	total: 692ms	remaining: 1.55s
308:	learn: 7.9354603	total: 694ms	remaining: 1.55s
309:	learn: 7.9216575	total: 696ms	remaining: 1.55s
310:	learn: 7.9053076	total: 698ms	remaining: 1.55s
311:	learn: 7.8850323	total: 700ms	remaining: 1.54s
312:	learn: 7.8602826	total: 702ms	remaining: 1.54s
313:	learn: 7.8427449	total: 703ms	remaining: 1.54s
314:	learn: 7.8293766	total: 705ms	remaining: 1.53s
315:	learn: 7.8162840	total: 707ms	remaining: 1.53s
316:	learn: 7.8115028	total: 708ms	remaining: 1.53s
317:	learn: 7.7929978	total: 710ms	remaining: 1.52s
318:	learn: 7.7771068	total: 712ms	remaining: 1.52s
319:	learn: 7.7729051	total: 714ms	remaining: 1.52s
320:	learn: 7.7663415	total: 716ms	remaining: 1.51s
321:	learn: 7.7540479	total: 718ms	remaining: 1.51s
322:	learn: 7.7497569	total: 719ms	remaining: 1.51s
323:	learn: 7.7318860	total: 721ms	remaining: 1.5s
324:	learn: 7.7170162	total: 723ms	remaining: 1.5s
325:	learn: 7.6981597	total: 724ms	remaining: 1.5s
326:	learn: 7.6796736	total: 726ms	remaining: 1.49s
327:	learn: 7.6706142	total: 728ms	remaining: 1.49s
328:	learn: 7.6549956	total: 730ms	remaining: 1.49s
329:	learn: 7.6424887	total: 732ms	remaining: 1.49s
330:	learn: 7.6286891	total: 733ms	remaining: 1.48s
331:	learn: 7.6178640	total: 735ms	remaining: 1.48s
332:	learn: 7.6039519	total: 737ms	remaining: 1.48s
333:	learn: 7.5848104	total: 738ms	remaining: 1.47s
334:	learn: 7.5686379	total: 740ms	remaining: 1.47s
335:	learn: 7.5638841	total: 742ms	remaining: 1.47s
336:	learn: 7.5492563	total: 744ms	remaining: 1.46s
337:	learn: 7.5280102	total: 745ms	remaining: 1.46s
338:	learn: 7.5136925	total: 747ms	remaining: 1.46s
339:	learn: 7.5055745	total: 749ms	remaining: 1.45s
340:	learn: 7.4965607	total: 750ms	remaining: 1.45s
341:	learn: 7.4853406	total: 752ms	remaining: 1.45s
342:	learn: 7.4730413	total: 754ms	remaining: 1.44s
343:	learn: 7.4581636	total: 756ms	remaining: 1.44s
344:	learn: 7.4524701	total: 758ms	remaining: 1.44s
345:	learn: 7.4244493	total: 759ms	remaining: 1.44s
346:	learn: 7.4068539	total: 761ms	remaining: 1.43s
347:	learn: 7.4032339	total: 763ms	remaining: 1.43s
348:	learn: 7.3934704	total: 765ms	remaining: 1.43s
349:	learn: 7.3682134	total: 766ms	remaining: 1.42s
350:	learn: 7.3599757	total: 768ms	remaining: 1.42s
351:	learn: 7.3405307	total: 770ms	remaining: 1.42s
352:	learn: 7.3296152	total: 772ms	remaining: 1.41s
353:	learn: 7.3039191	total: 774ms	remaining: 1.41s
354:	learn: 7.2870540	total: 776ms	remaining: 1.41s
355:	learn: 7.2729640	total: 778ms	remaining: 1.41s
356:	learn: 7.2576017	total: 780ms	remaining: 1.4s
357:	learn: 7.2540610	total: 781ms	remaining: 1.4s
358:	learn: 7.2371591	total: 783ms	remaining: 1.4s
359:	learn: 7.2252744	total: 785ms	remaining: 1.4s
360:	learn: 7.2170045	total: 787ms	remaining: 1.39s
361:	learn: 7.1994910	total: 788ms	remaining: 1.39s
362:	learn: 7.1968039	total: 790ms	remaining: 1.39s
363:	learn: 7.1943955	total: 792ms	remaining: 1.38s
364:	learn: 7.1926711	total: 794ms	remaining: 1.38s
365:	learn: 7.1673456	total: 796ms	remaining: 1.38s
366:	learn: 7.1640190	total: 797ms	remaining: 1.37s
367:	learn: 7.1501906	total: 799ms	remaining: 1.37s
368:	learn: 7.1306274	total: 801ms	remaining: 1.37s
369:	learn: 7.1141015	total: 802ms	remaining: 1.37s
370:	learn: 7.1069662	total: 804ms	remaining: 1.36s
371:	learn: 7.0923745	total: 806ms	remaining: 1.36s
372:	learn: 7.0734912	total: 808ms	remaining: 1.36s
373:	learn: 7.0583281	total: 810ms	remaining: 1.35s
374:	learn: 7.0399521	total: 811ms	remaining: 1.35s
375:	learn: 7.0317067	total: 813ms	remaining: 1.35s
376:	learn: 7.0163497	total: 815ms	remaining: 1.35s
377:	learn: 7.0080398	total: 816ms	remaining: 1.34s
378:	learn: 6.9971735	total: 818ms	remaining: 1.34s
379:	learn: 6.9784481	total: 820ms	remaining: 1.34s
380:	learn: 6.9567554	total: 822ms	remaining: 1.33s
381:	learn: 6.9429052	total: 824ms	remaining: 1.33s
382:	learn: 6.9255284	total: 826ms	remaining: 1.33s
383:	learn: 6.9117298	total: 828ms	remaining: 1.33s
384:	learn: 6.8904855	total: 829ms	remaining: 1.32s
385:	learn: 6.8882997	total: 831ms	remaining: 1.32s
386:	learn: 6.8829329	total: 833ms	remaining: 1.32s
387:	learn: 6.8585148	total: 834ms	remaining: 1.31s
388:	learn: 6.8542004	total: 836ms	remaining: 1.31s
389:	learn: 6.8390233	total: 838ms	remaining: 1.31s
390:	learn: 6.8192355	total: 840ms	remaining: 1.31s
391:	learn: 6.8090421	total: 842ms	remaining: 1.3s
392:	learn: 6.7979948	total: 843ms	remaining: 1.3s
393:	learn: 6.7839394	total: 845ms	remaining: 1.3s
394:	learn: 6.7705662	total: 847ms	remaining: 1.3s
395:	learn: 6.7646807	total: 848ms	remaining: 1.29s
396:	learn: 6.7566105	total: 850ms	remaining: 1.29s
397:	learn: 6.7368022	total: 852ms	remaining: 1.29s
398:	learn: 6.7338020	total: 854ms	remaining: 1.29s
399:	learn: 6.7260216	total: 856ms	remaining: 1.28s
400:	learn: 6.7149941	total: 858ms	remaining: 1.28s
401:	learn: 6.7044445	total: 859ms	remaining: 1.28s
402:	learn: 6.6922353	total: 861ms	remaining: 1.27s
403:	learn: 6.6816087	total: 863ms	remaining: 1.27s
404:	learn: 6.6749090	total: 864ms	remaining: 1.27s
405:	learn: 6.6626553	total: 866ms	remaining: 1.27s
406:	learn: 6.6581492	total: 868ms	remaining: 1.26s
407:	learn: 6.6454318	total: 870ms	remaining: 1.26s
408:	learn: 6.6312542	total: 871ms	remaining: 1.26s
409:	learn: 6.6301571	total: 873ms	remaining: 1.26s
410:	learn: 6.6162625	total: 875ms	remaining: 1.25s
411:	learn: 6.6038230	total: 877ms	remaining: 1.25s
412:	learn: 6.5882450	total: 878ms	remaining: 1.25s
413:	learn: 6.5814790	total: 880ms	remaining: 1.25s
414:	learn: 6.5740925	total: 882ms	remaining: 1.24s
415:	learn: 6.5689972	total: 884ms	remaining: 1.24s
416:	learn: 6.5631498	total: 886ms	remaining: 1.24s
417:	learn: 6.5483037	total: 888ms	remaining: 1.24s
418:	learn: 6.5468608	total: 889ms	remaining: 1.23s
419:	learn: 6.5459225	total: 891ms	remaining: 1.23s
420:	learn: 6.5315264	total: 893ms	remaining: 1.23s
421:	learn: 6.5245813	total: 895ms	remaining: 1.23s
422:	learn: 6.5191231	total: 896ms	remaining: 1.22s
423:	learn: 6.5086155	total: 898ms	remaining: 1.22s
424:	learn: 6.4856756	total: 900ms	remaining: 1.22s
425:	learn: 6.4730902	total: 902ms	remaining: 1.21s
426:	learn: 6.4624228	total: 903ms	remaining: 1.21s
427:	learn: 6.4514738	total: 905ms	remaining: 1.21s
428:	learn: 6.4342220	total: 907ms	remaining: 1.21s
429:	learn: 6.4314621	total: 909ms	remaining: 1.2s
430:	learn: 6.4167080	total: 911ms	remaining: 1.2s
431:	learn: 6.4130927	total: 912ms	remaining: 1.2s
432:	learn: 6.4111259	total: 914ms	remaining: 1.2s
433:	learn: 6.4016099	total: 915ms	remaining: 1.19s
434:	learn: 6.3817983	total: 918ms	remaining: 1.19s
435:	learn: 6.3798884	total: 919ms	remaining: 1.19s
436:	learn: 6.3764096	total: 921ms	remaining: 1.19s
437:	learn: 6.3664927	total: 923ms	remaining: 1.18s
438:	learn: 6.3639936	total: 925ms	remaining: 1.18s
439:	learn: 6.3546650	total: 927ms	remaining: 1.18s
440:	learn: 6.3515199	total: 928ms	remaining: 1.18s
441:	learn: 6.3422160	total: 930ms	remaining: 1.17s
442:	learn: 6.3406893	total: 931ms	remaining: 1.17s
443:	learn: 6.3251957	total: 934ms	remaining: 1.17s
444:	learn: 6.3150561	total: 935ms	remaining: 1.17s
445:	learn: 6.3057444	total: 937ms	remaining: 1.16s
446:	learn: 6.2901527	total: 939ms	remaining: 1.16s
447:	learn: 6.2800238	total: 940ms	remaining: 1.16s
448:	learn: 6.2792826	total: 942ms	remaining: 1.16s
449:	learn: 6.2744764	total: 944ms	remaining: 1.15s
450:	learn: 6.2618426	total: 945ms	remaining: 1.15s
451:	learn: 6.2565370	total: 947ms	remaining: 1.15s
452:	learn: 6.2498386	total: 949ms	remaining: 1.15s
453:	learn: 6.2445609	total: 951ms	remaining: 1.14s
454:	learn: 6.2378540	total: 953ms	remaining: 1.14s
455:	learn: 6.2281173	total: 955ms	remaining: 1.14s
456:	learn: 6.2207771	total: 957ms	remaining: 1.14s
457:	learn: 6.2103228	total: 959ms	remaining: 1.13s
458:	learn: 6.1968503	total: 960ms	remaining: 1.13s
459:	learn: 6.1889089	total: 962ms	remaining: 1.13s
460:	learn: 6.1820039	total: 964ms	remaining: 1.13s
461:	learn: 6.1740052	total: 966ms	remaining: 1.12s
462:	learn: 6.1643802	total: 968ms	remaining: 1.12s
463:	learn: 6.1440969	total: 970ms	remaining: 1.12s
464:	learn: 6.1245770	total: 972ms	remaining: 1.12s
465:	learn: 6.1160568	total: 973ms	remaining: 1.11s
466:	learn: 6.1089074	total: 975ms	remaining: 1.11s
467:	learn: 6.1019665	total: 977ms	remaining: 1.11s
468:	learn: 6.0920418	total: 978ms	remaining: 1.11s
469:	learn: 6.0849103	total: 980ms	remaining: 1.1s
470:	learn: 6.0775591	total: 982ms	remaining: 1.1s
471:	learn: 6.0745353	total: 984ms	remaining: 1.1s
472:	learn: 6.0622484	total: 986ms	remaining: 1.1s
473:	learn: 6.0539182	total: 987ms	remaining: 1.09s
474:	learn: 6.0397158	total: 989ms	remaining: 1.09s
475:	learn: 6.0276054	total: 991ms	remaining: 1.09s
476:	learn: 6.0266946	total: 993ms	remaining: 1.09s
477:	learn: 6.0175872	total: 994ms	remaining: 1.08s
478:	learn: 6.0087775	total: 996ms	remaining: 1.08s
479:	learn: 6.0015996	total: 998ms	remaining: 1.08s
480:	learn: 5.9891940	total: 1000ms	remaining: 1.08s
481:	learn: 5.9817335	total: 1s	remaining: 1.08s
482:	learn: 5.9752269	total: 1s	remaining: 1.07s
483:	learn: 5.9607088	total: 1s	remaining: 1.07s
484:	learn: 5.9600389	total: 1.01s	remaining: 1.07s
485:	learn: 5.9434186	total: 1.01s	remaining: 1.07s
486:	learn: 5.9306582	total: 1.01s	remaining: 1.06s
487:	learn: 5.9226097	total: 1.01s	remaining: 1.06s
488:	learn: 5.9124942	total: 1.01s	remaining: 1.06s
489:	learn: 5.9106209	total: 1.01s	remaining: 1.06s
490:	learn: 5.9088609	total: 1.02s	remaining: 1.05s
491:	learn: 5.8907380	total: 1.02s	remaining: 1.05s
492:	learn: 5.8895756	total: 1.02s	remaining: 1.05s
493:	learn: 5.8833919	total: 1.02s	remaining: 1.05s
494:	learn: 5.8663093	total: 1.02s	remaining: 1.04s
495:	learn: 5.8523445	total: 1.02s	remaining: 1.04s
496:	learn: 5.8405292	total: 1.03s	remaining: 1.04s
497:	learn: 5.8376921	total: 1.03s	remaining: 1.04s
498:	learn: 5.8349921	total: 1.03s	remaining: 1.03s
499:	learn: 5.8343512	total: 1.03s	remaining: 1.03s
500:	learn: 5.8311424	total: 1.03s	remaining: 1.03s
501:	learn: 5.8176747	total: 1.04s	remaining: 1.03s
502:	learn: 5.8114498	total: 1.04s	remaining: 1.03s
503:	learn: 5.8056533	total: 1.04s	remaining: 1.02s
504:	learn: 5.7950401	total: 1.04s	remaining: 1.02s
505:	learn: 5.7930000	total: 1.04s	remaining: 1.02s
506:	learn: 5.7777300	total: 1.05s	remaining: 1.02s
507:	learn: 5.7734999	total: 1.05s	remaining: 1.01s
508:	learn: 5.7595173	total: 1.05s	remaining: 1.01s
509:	learn: 5.7502656	total: 1.05s	remaining: 1.01s
510:	learn: 5.7392578	total: 1.05s	remaining: 1.01s
511:	learn: 5.7316579	total: 1.05s	remaining: 1.01s
512:	learn: 5.7295365	total: 1.06s	remaining: 1s
513:	learn: 5.7214897	total: 1.06s	remaining: 1s
514:	learn: 5.7194880	total: 1.06s	remaining: 1000ms
515:	learn: 5.7185472	total: 1.06s	remaining: 997ms
516:	learn: 5.7036787	total: 1.06s	remaining: 995ms
517:	learn: 5.6883886	total: 1.07s	remaining: 993ms
518:	learn: 5.6798890	total: 1.07s	remaining: 990ms
519:	learn: 5.6669730	total: 1.07s	remaining: 988ms
520:	learn: 5.6663901	total: 1.07s	remaining: 986ms
521:	learn: 5.6621635	total: 1.07s	remaining: 983ms
522:	learn: 5.6614216	total: 1.07s	remaining: 981ms
523:	learn: 5.6601654	total: 1.08s	remaining: 979ms
524:	learn: 5.6583450	total: 1.08s	remaining: 977ms
525:	learn: 5.6459565	total: 1.08s	remaining: 974ms
526:	learn: 5.6373349	total: 1.08s	remaining: 972ms
527:	learn: 5.6253721	total: 1.08s	remaining: 970ms
528:	learn: 5.6238971	total: 1.09s	remaining: 967ms
529:	learn: 5.6104877	total: 1.09s	remaining: 965ms
530:	learn: 5.5986727	total: 1.09s	remaining: 963ms
531:	learn: 5.5884714	total: 1.09s	remaining: 960ms
532:	learn: 5.5701636	total: 1.09s	remaining: 958ms
533:	learn: 5.5653586	total: 1.09s	remaining: 956ms
534:	learn: 5.5467960	total: 1.1s	remaining: 954ms
535:	learn: 5.5356533	total: 1.1s	remaining: 951ms
536:	learn: 5.5288337	total: 1.1s	remaining: 949ms
537:	learn: 5.5258078	total: 1.1s	remaining: 947ms
538:	learn: 5.5230224	total: 1.1s	remaining: 945ms
539:	learn: 5.5036380	total: 1.11s	remaining: 942ms
540:	learn: 5.4893890	total: 1.11s	remaining: 940ms
541:	learn: 5.4879414	total: 1.11s	remaining: 938ms
542:	learn: 5.4870920	total: 1.11s	remaining: 935ms
543:	learn: 5.4839332	total: 1.11s	remaining: 933ms
544:	learn: 5.4811368	total: 1.11s	remaining: 931ms
545:	learn: 5.4762813	total: 1.12s	remaining: 928ms
546:	learn: 5.4709613	total: 1.12s	remaining: 926ms
547:	learn: 5.4661597	total: 1.12s	remaining: 924ms
548:	learn: 5.4652227	total: 1.12s	remaining: 921ms
549:	learn: 5.4619508	total: 1.12s	remaining: 919ms
550:	learn: 5.4574551	total: 1.13s	remaining: 917ms
551:	learn: 5.4498521	total: 1.13s	remaining: 915ms
552:	learn: 5.4493429	total: 1.13s	remaining: 912ms
553:	learn: 5.4391972	total: 1.13s	remaining: 910ms
554:	learn: 5.4287113	total: 1.13s	remaining: 908ms
555:	learn: 5.4238304	total: 1.13s	remaining: 905ms
556:	learn: 5.4142537	total: 1.14s	remaining: 903ms
557:	learn: 5.4090431	total: 1.14s	remaining: 901ms
558:	learn: 5.3994818	total: 1.14s	remaining: 899ms
559:	learn: 5.3954236	total: 1.14s	remaining: 896ms
560:	learn: 5.3903082	total: 1.14s	remaining: 894ms
561:	learn: 5.3874593	total: 1.14s	remaining: 892ms
562:	learn: 5.3795699	total: 1.15s	remaining: 890ms
563:	learn: 5.3771620	total: 1.15s	remaining: 887ms
564:	learn: 5.3765333	total: 1.15s	remaining: 885ms
565:	learn: 5.3676004	total: 1.15s	remaining: 883ms
566:	learn: 5.3649457	total: 1.15s	remaining: 880ms
567:	learn: 5.3625798	total: 1.15s	remaining: 878ms
568:	learn: 5.3537466	total: 1.16s	remaining: 876ms
569:	learn: 5.3469646	total: 1.16s	remaining: 874ms
570:	learn: 5.3363617	total: 1.16s	remaining: 872ms
571:	learn: 5.3238352	total: 1.16s	remaining: 869ms
572:	learn: 5.3233766	total: 1.16s	remaining: 867ms
573:	learn: 5.3088234	total: 1.17s	remaining: 865ms
574:	learn: 5.3071009	total: 1.17s	remaining: 862ms
575:	learn: 5.3014526	total: 1.17s	remaining: 860ms
576:	learn: 5.2871349	total: 1.17s	remaining: 858ms
577:	learn: 5.2838314	total: 1.17s	remaining: 856ms
578:	learn: 5.2833961	total: 1.17s	remaining: 854ms
579:	learn: 5.2707802	total: 1.18s	remaining: 852ms
580:	learn: 5.2566001	total: 1.18s	remaining: 849ms
581:	learn: 5.2557529	total: 1.18s	remaining: 847ms
582:	learn: 5.2443507	total: 1.18s	remaining: 845ms
583:	learn: 5.2334442	total: 1.18s	remaining: 843ms
584:	learn: 5.2330369	total: 1.18s	remaining: 840ms
585:	learn: 5.2174781	total: 1.19s	remaining: 838ms
586:	learn: 5.2077008	total: 1.19s	remaining: 836ms
587:	learn: 5.1973020	total: 1.19s	remaining: 834ms
588:	learn: 5.1887019	total: 1.19s	remaining: 832ms
589:	learn: 5.1805451	total: 1.19s	remaining: 829ms
590:	learn: 5.1635906	total: 1.2s	remaining: 827ms
591:	learn: 5.1586920	total: 1.2s	remaining: 825ms
592:	learn: 5.1504343	total: 1.2s	remaining: 823ms
593:	learn: 5.1414162	total: 1.2s	remaining: 820ms
594:	learn: 5.1328836	total: 1.2s	remaining: 818ms
595:	learn: 5.1324719	total: 1.2s	remaining: 816ms
596:	learn: 5.1316692	total: 1.21s	remaining: 814ms
597:	learn: 5.1276893	total: 1.21s	remaining: 812ms
598:	learn: 5.1188238	total: 1.21s	remaining: 809ms
599:	learn: 5.1114541	total: 1.21s	remaining: 807ms
600:	learn: 5.0997306	total: 1.21s	remaining: 805ms
601:	learn: 5.0988184	total: 1.21s	remaining: 803ms
602:	learn: 5.0932719	total: 1.22s	remaining: 800ms
603:	learn: 5.0919858	total: 1.22s	remaining: 798ms
604:	learn: 5.0879061	total: 1.22s	remaining: 796ms
605:	learn: 5.0822775	total: 1.22s	remaining: 794ms
606:	learn: 5.0685590	total: 1.22s	remaining: 792ms
607:	learn: 5.0509996	total: 1.22s	remaining: 790ms
608:	learn: 5.0484873	total: 1.23s	remaining: 787ms
609:	learn: 5.0402359	total: 1.23s	remaining: 785ms
610:	learn: 5.0312461	total: 1.23s	remaining: 783ms
611:	learn: 5.0227044	total: 1.23s	remaining: 781ms
612:	learn: 5.0137509	total: 1.23s	remaining: 779ms
613:	learn: 5.0109046	total: 1.24s	remaining: 776ms
614:	learn: 5.0058062	total: 1.24s	remaining: 774ms
615:	learn: 4.9901484	total: 1.24s	remaining: 772ms
616:	learn: 4.9840073	total: 1.24s	remaining: 770ms
617:	learn: 4.9747335	total: 1.24s	remaining: 768ms
618:	learn: 4.9645398	total: 1.24s	remaining: 766ms
619:	learn: 4.9615102	total: 1.25s	remaining: 763ms
620:	learn: 4.9466950	total: 1.25s	remaining: 761ms
621:	learn: 4.9453685	total: 1.25s	remaining: 759ms
622:	learn: 4.9355978	total: 1.25s	remaining: 757ms
623:	learn: 4.9255738	total: 1.25s	remaining: 755ms
624:	learn: 4.9121238	total: 1.25s	remaining: 753ms
625:	learn: 4.9084294	total: 1.26s	remaining: 751ms
626:	learn: 4.8982341	total: 1.26s	remaining: 748ms
627:	learn: 4.8957603	total: 1.26s	remaining: 746ms
628:	learn: 4.8937966	total: 1.26s	remaining: 744ms
629:	learn: 4.8853698	total: 1.26s	remaining: 742ms
630:	learn: 4.8752807	total: 1.26s	remaining: 740ms
631:	learn: 4.8657470	total: 1.27s	remaining: 738ms
632:	learn: 4.8619020	total: 1.27s	remaining: 736ms
633:	learn: 4.8574006	total: 1.27s	remaining: 733ms
634:	learn: 4.8498124	total: 1.27s	remaining: 731ms
635:	learn: 4.8424685	total: 1.27s	remaining: 729ms
636:	learn: 4.8343691	total: 1.27s	remaining: 727ms
637:	learn: 4.8276932	total: 1.28s	remaining: 725ms
638:	learn: 4.8177215	total: 1.28s	remaining: 723ms
639:	learn: 4.8117497	total: 1.28s	remaining: 720ms
640:	learn: 4.8044834	total: 1.28s	remaining: 718ms
641:	learn: 4.8041344	total: 1.28s	remaining: 716ms
642:	learn: 4.8035410	total: 1.28s	remaining: 714ms
643:	learn: 4.8010319	total: 1.29s	remaining: 712ms
644:	learn: 4.7951184	total: 1.29s	remaining: 710ms
645:	learn: 4.7871814	total: 1.29s	remaining: 707ms
646:	learn: 4.7749869	total: 1.29s	remaining: 705ms
647:	learn: 4.7620059	total: 1.29s	remaining: 703ms
648:	learn: 4.7569028	total: 1.29s	remaining: 701ms
649:	learn: 4.7525214	total: 1.3s	remaining: 699ms
650:	learn: 4.7413298	total: 1.3s	remaining: 697ms
651:	learn: 4.7302693	total: 1.3s	remaining: 695ms
652:	learn: 4.7230811	total: 1.3s	remaining: 692ms
653:	learn: 4.7179984	total: 1.3s	remaining: 690ms
654:	learn: 4.7109497	total: 1.31s	remaining: 688ms
655:	learn: 4.7008783	total: 1.31s	remaining: 686ms
656:	learn: 4.6928336	total: 1.31s	remaining: 684ms
657:	learn: 4.6848822	total: 1.31s	remaining: 682ms
658:	learn: 4.6810714	total: 1.31s	remaining: 680ms
659:	learn: 4.6755951	total: 1.31s	remaining: 677ms
660:	learn: 4.6688513	total: 1.32s	remaining: 675ms
661:	learn: 4.6630055	total: 1.32s	remaining: 673ms
662:	learn: 4.6597885	total: 1.32s	remaining: 671ms
663:	learn: 4.6507742	total: 1.32s	remaining: 669ms
664:	learn: 4.6427670	total: 1.32s	remaining: 667ms
665:	learn: 4.6391586	total: 1.32s	remaining: 665ms
666:	learn: 4.6329287	total: 1.33s	remaining: 663ms
667:	learn: 4.6246120	total: 1.33s	remaining: 660ms
668:	learn: 4.6138110	total: 1.33s	remaining: 658ms
669:	learn: 4.6085187	total: 1.33s	remaining: 656ms
670:	learn: 4.6050832	total: 1.33s	remaining: 654ms
671:	learn: 4.5998022	total: 1.34s	remaining: 652ms
672:	learn: 4.5914240	total: 1.34s	remaining: 650ms
673:	learn: 4.5873838	total: 1.34s	remaining: 648ms
674:	learn: 4.5793442	total: 1.34s	remaining: 646ms
675:	learn: 4.5740412	total: 1.34s	remaining: 644ms
676:	learn: 4.5686081	total: 1.34s	remaining: 642ms
677:	learn: 4.5549730	total: 1.35s	remaining: 640ms
678:	learn: 4.5463941	total: 1.35s	remaining: 637ms
679:	learn: 4.5397854	total: 1.35s	remaining: 635ms
680:	learn: 4.5371076	total: 1.35s	remaining: 633ms
681:	learn: 4.5291009	total: 1.35s	remaining: 631ms
682:	learn: 4.5160295	total: 1.35s	remaining: 629ms
683:	learn: 4.5098866	total: 1.36s	remaining: 627ms
684:	learn: 4.5087872	total: 1.36s	remaining: 625ms
685:	learn: 4.5012079	total: 1.36s	remaining: 623ms
686:	learn: 4.4995594	total: 1.36s	remaining: 621ms
687:	learn: 4.4921759	total: 1.36s	remaining: 619ms
688:	learn: 4.4919786	total: 1.37s	remaining: 617ms
689:	learn: 4.4831548	total: 1.37s	remaining: 615ms
690:	learn: 4.4746606	total: 1.37s	remaining: 613ms
691:	learn: 4.4696329	total: 1.37s	remaining: 610ms
692:	learn: 4.4602425	total: 1.37s	remaining: 608ms
693:	learn: 4.4553140	total: 1.37s	remaining: 606ms
694:	learn: 4.4423620	total: 1.38s	remaining: 604ms
695:	learn: 4.4324530	total: 1.38s	remaining: 602ms
696:	learn: 4.4292488	total: 1.38s	remaining: 600ms
697:	learn: 4.4171567	total: 1.38s	remaining: 598ms
698:	learn: 4.4134823	total: 1.38s	remaining: 596ms
699:	learn: 4.4105569	total: 1.39s	remaining: 594ms
700:	learn: 4.4022522	total: 1.39s	remaining: 592ms
701:	learn: 4.3929831	total: 1.39s	remaining: 590ms
702:	learn: 4.3855678	total: 1.39s	remaining: 588ms
703:	learn: 4.3784462	total: 1.39s	remaining: 585ms
704:	learn: 4.3712680	total: 1.39s	remaining: 584ms
705:	learn: 4.3685344	total: 1.4s	remaining: 581ms
706:	learn: 4.3628556	total: 1.4s	remaining: 579ms
707:	learn: 4.3530924	total: 1.4s	remaining: 577ms
708:	learn: 4.3452398	total: 1.4s	remaining: 575ms
709:	learn: 4.3387746	total: 1.4s	remaining: 573ms
710:	learn: 4.3360672	total: 1.4s	remaining: 571ms
711:	learn: 4.3331081	total: 1.41s	remaining: 569ms
712:	learn: 4.3277057	total: 1.41s	remaining: 567ms
713:	learn: 4.3198785	total: 1.41s	remaining: 565ms
714:	learn: 4.3140773	total: 1.41s	remaining: 563ms
715:	learn: 4.3028008	total: 1.41s	remaining: 561ms
716:	learn: 4.2962392	total: 1.42s	remaining: 559ms
717:	learn: 4.2878019	total: 1.42s	remaining: 557ms
718:	learn: 4.2837322	total: 1.42s	remaining: 554ms
719:	learn: 4.2768842	total: 1.42s	remaining: 552ms
720:	learn: 4.2761946	total: 1.42s	remaining: 550ms
721:	learn: 4.2707945	total: 1.42s	remaining: 548ms
722:	learn: 4.2629119	total: 1.43s	remaining: 546ms
723:	learn: 4.2545851	total: 1.43s	remaining: 544ms
724:	learn: 4.2451601	total: 1.43s	remaining: 543ms
725:	learn: 4.2431198	total: 1.43s	remaining: 541ms
726:	learn: 4.2322298	total: 1.43s	remaining: 538ms
727:	learn: 4.2293068	total: 1.44s	remaining: 536ms
728:	learn: 4.2250055	total: 1.44s	remaining: 534ms
729:	learn: 4.2240691	total: 1.44s	remaining: 532ms
730:	learn: 4.2170131	total: 1.44s	remaining: 530ms
731:	learn: 4.2105658	total: 1.44s	remaining: 528ms
732:	learn: 4.2065308	total: 1.44s	remaining: 526ms
733:	learn: 4.2040164	total: 1.45s	remaining: 524ms
734:	learn: 4.1973064	total: 1.45s	remaining: 522ms
735:	learn: 4.1919569	total: 1.45s	remaining: 520ms
736:	learn: 4.1864494	total: 1.45s	remaining: 518ms
737:	learn: 4.1791241	total: 1.45s	remaining: 516ms
738:	learn: 4.1758879	total: 1.45s	remaining: 514ms
739:	learn: 4.1753515	total: 1.46s	remaining: 512ms
740:	learn: 4.1685978	total: 1.46s	remaining: 510ms
741:	learn: 4.1611028	total: 1.46s	remaining: 508ms
742:	learn: 4.1566787	total: 1.46s	remaining: 506ms
743:	learn: 4.1530103	total: 1.46s	remaining: 504ms
744:	learn: 4.1461997	total: 1.47s	remaining: 502ms
745:	learn: 4.1403234	total: 1.47s	remaining: 500ms
746:	learn: 4.1312129	total: 1.47s	remaining: 498ms
747:	learn: 4.1269644	total: 1.47s	remaining: 496ms
748:	learn: 4.1211251	total: 1.47s	remaining: 494ms
749:	learn: 4.1179651	total: 1.48s	remaining: 492ms
750:	learn: 4.1101148	total: 1.48s	remaining: 490ms
751:	learn: 4.1028732	total: 1.48s	remaining: 488ms
752:	learn: 4.0984888	total: 1.48s	remaining: 486ms
753:	learn: 4.0979213	total: 1.48s	remaining: 484ms
754:	learn: 4.0907564	total: 1.49s	remaining: 482ms
755:	learn: 4.0904344	total: 1.49s	remaining: 480ms
756:	learn: 4.0813239	total: 1.49s	remaining: 478ms
757:	learn: 4.0756128	total: 1.49s	remaining: 476ms
758:	learn: 4.0687505	total: 1.49s	remaining: 474ms
759:	learn: 4.0619620	total: 1.49s	remaining: 472ms
760:	learn: 4.0533377	total: 1.5s	remaining: 470ms
761:	learn: 4.0530481	total: 1.5s	remaining: 468ms
762:	learn: 4.0492142	total: 1.5s	remaining: 466ms
763:	learn: 4.0428853	total: 1.5s	remaining: 464ms
764:	learn: 4.0380176	total: 1.5s	remaining: 462ms
765:	learn: 4.0310663	total: 1.5s	remaining: 459ms
766:	learn: 4.0237541	total: 1.51s	remaining: 458ms
767:	learn: 4.0173498	total: 1.51s	remaining: 456ms
768:	learn: 4.0110702	total: 1.51s	remaining: 454ms
769:	learn: 4.0070072	total: 1.51s	remaining: 451ms
770:	learn: 4.0065271	total: 1.51s	remaining: 449ms
771:	learn: 4.0060834	total: 1.51s	remaining: 447ms
772:	learn: 4.0011693	total: 1.52s	remaining: 445ms
773:	learn: 4.0007533	total: 1.52s	remaining: 443ms
774:	learn: 3.9902718	total: 1.52s	remaining: 441ms
775:	learn: 3.9864128	total: 1.52s	remaining: 439ms
776:	learn: 3.9860901	total: 1.52s	remaining: 437ms
777:	learn: 3.9809950	total: 1.52s	remaining: 435ms
778:	learn: 3.9748009	total: 1.53s	remaining: 433ms
779:	learn: 3.9672029	total: 1.53s	remaining: 431ms
780:	learn: 3.9624758	total: 1.53s	remaining: 429ms
781:	learn: 3.9526877	total: 1.53s	remaining: 427ms
782:	learn: 3.9467322	total: 1.53s	remaining: 425ms
783:	learn: 3.9400019	total: 1.54s	remaining: 423ms
784:	learn: 3.9353206	total: 1.54s	remaining: 421ms
785:	learn: 3.9349803	total: 1.54s	remaining: 419ms
786:	learn: 3.9287764	total: 1.54s	remaining: 417ms
787:	learn: 3.9265780	total: 1.54s	remaining: 415ms
788:	learn: 3.9214582	total: 1.54s	remaining: 413ms
789:	learn: 3.9118229	total: 1.55s	remaining: 411ms
790:	learn: 3.9116647	total: 1.55s	remaining: 409ms
791:	learn: 3.9020062	total: 1.55s	remaining: 407ms
792:	learn: 3.8969471	total: 1.55s	remaining: 405ms
793:	learn: 3.8895589	total: 1.55s	remaining: 403ms
794:	learn: 3.8854496	total: 1.55s	remaining: 401ms
795:	learn: 3.8825866	total: 1.56s	remaining: 399ms
796:	learn: 3.8760828	total: 1.56s	remaining: 397ms
797:	learn: 3.8705118	total: 1.56s	remaining: 395ms
798:	learn: 3.8642531	total: 1.56s	remaining: 393ms
799:	learn: 3.8566499	total: 1.56s	remaining: 391ms
800:	learn: 3.8495944	total: 1.57s	remaining: 389ms
801:	learn: 3.8481512	total: 1.57s	remaining: 387ms
802:	learn: 3.8440660	total: 1.57s	remaining: 385ms
803:	learn: 3.8421880	total: 1.57s	remaining: 383ms
804:	learn: 3.8386265	total: 1.57s	remaining: 381ms
805:	learn: 3.8323932	total: 1.57s	remaining: 379ms
806:	learn: 3.8316428	total: 1.58s	remaining: 377ms
807:	learn: 3.8269802	total: 1.58s	remaining: 375ms
808:	learn: 3.8205500	total: 1.58s	remaining: 373ms
809:	learn: 3.8144581	total: 1.58s	remaining: 371ms
810:	learn: 3.8103340	total: 1.58s	remaining: 369ms
811:	learn: 3.8099887	total: 1.58s	remaining: 367ms
812:	learn: 3.8025355	total: 1.59s	remaining: 365ms
813:	learn: 3.8004744	total: 1.59s	remaining: 363ms
814:	learn: 3.7928900	total: 1.59s	remaining: 361ms
815:	learn: 3.7885241	total: 1.59s	remaining: 359ms
816:	learn: 3.7847273	total: 1.59s	remaining: 357ms
817:	learn: 3.7825177	total: 1.59s	remaining: 355ms
818:	learn: 3.7747435	total: 1.6s	remaining: 353ms
819:	learn: 3.7707284	total: 1.6s	remaining: 351ms
820:	learn: 3.7699699	total: 1.6s	remaining: 349ms
821:	learn: 3.7672085	total: 1.6s	remaining: 347ms
822:	learn: 3.7647022	total: 1.6s	remaining: 345ms
823:	learn: 3.7582067	total: 1.61s	remaining: 343ms
824:	learn: 3.7518518	total: 1.61s	remaining: 341ms
825:	learn: 3.7471719	total: 1.61s	remaining: 339ms
826:	learn: 3.7408015	total: 1.61s	remaining: 337ms
827:	learn: 3.7384772	total: 1.61s	remaining: 335ms
828:	learn: 3.7331142	total: 1.62s	remaining: 333ms
829:	learn: 3.7292720	total: 1.62s	remaining: 331ms
830:	learn: 3.7249435	total: 1.62s	remaining: 330ms
831:	learn: 3.7164033	total: 1.62s	remaining: 328ms
832:	learn: 3.7098630	total: 1.62s	remaining: 326ms
833:	learn: 3.7054865	total: 1.63s	remaining: 324ms
834:	learn: 3.7027926	total: 1.63s	remaining: 322ms
835:	learn: 3.6997335	total: 1.63s	remaining: 320ms
836:	learn: 3.6955841	total: 1.63s	remaining: 318ms
837:	learn: 3.6887537	total: 1.63s	remaining: 316ms
838:	learn: 3.6870205	total: 1.64s	remaining: 314ms
839:	learn: 3.6828090	total: 1.64s	remaining: 312ms
840:	learn: 3.6798068	total: 1.64s	remaining: 310ms
841:	learn: 3.6755684	total: 1.64s	remaining: 308ms
842:	learn: 3.6725700	total: 1.64s	remaining: 306ms
843:	learn: 3.6672797	total: 1.65s	remaining: 304ms
844:	learn: 3.6571669	total: 1.65s	remaining: 302ms
845:	learn: 3.6475615	total: 1.65s	remaining: 300ms
846:	learn: 3.6395142	total: 1.65s	remaining: 298ms
847:	learn: 3.6349574	total: 1.65s	remaining: 296ms
848:	learn: 3.6307227	total: 1.65s	remaining: 294ms
849:	learn: 3.6283215	total: 1.66s	remaining: 292ms
850:	learn: 3.6232776	total: 1.66s	remaining: 290ms
851:	learn: 3.6174874	total: 1.66s	remaining: 288ms
852:	learn: 3.6140767	total: 1.66s	remaining: 286ms
853:	learn: 3.6137510	total: 1.66s	remaining: 284ms
854:	learn: 3.6087167	total: 1.67s	remaining: 282ms
855:	learn: 3.6028686	total: 1.67s	remaining: 280ms
856:	learn: 3.5974143	total: 1.67s	remaining: 278ms
857:	learn: 3.5887419	total: 1.67s	remaining: 277ms
858:	learn: 3.5841437	total: 1.67s	remaining: 275ms
859:	learn: 3.5781272	total: 1.67s	remaining: 273ms
860:	learn: 3.5733826	total: 1.68s	remaining: 271ms
861:	learn: 3.5732665	total: 1.68s	remaining: 269ms
862:	learn: 3.5702466	total: 1.68s	remaining: 267ms
863:	learn: 3.5666194	total: 1.68s	remaining: 265ms
864:	learn: 3.5592742	total: 1.68s	remaining: 263ms
865:	learn: 3.5561826	total: 1.68s	remaining: 261ms
866:	learn: 3.5534258	total: 1.69s	remaining: 259ms
867:	learn: 3.5483679	total: 1.69s	remaining: 257ms
868:	learn: 3.5425675	total: 1.69s	remaining: 255ms
869:	learn: 3.5381478	total: 1.69s	remaining: 253ms
870:	learn: 3.5377322	total: 1.69s	remaining: 251ms
871:	learn: 3.5331397	total: 1.69s	remaining: 249ms
872:	learn: 3.5273802	total: 1.7s	remaining: 247ms
873:	learn: 3.5244024	total: 1.7s	remaining: 245ms
874:	learn: 3.5144171	total: 1.7s	remaining: 243ms
875:	learn: 3.5077423	total: 1.7s	remaining: 241ms
876:	learn: 3.5017334	total: 1.7s	remaining: 239ms
877:	learn: 3.4923132	total: 1.71s	remaining: 237ms
878:	learn: 3.4921214	total: 1.71s	remaining: 235ms
879:	learn: 3.4894545	total: 1.71s	remaining: 233ms
880:	learn: 3.4832011	total: 1.71s	remaining: 231ms
881:	learn: 3.4790934	total: 1.71s	remaining: 229ms
882:	learn: 3.4782761	total: 1.71s	remaining: 227ms
883:	learn: 3.4776458	total: 1.72s	remaining: 225ms
884:	learn: 3.4754015	total: 1.72s	remaining: 223ms
885:	learn: 3.4685333	total: 1.72s	remaining: 221ms
886:	learn: 3.4616184	total: 1.72s	remaining: 219ms
887:	learn: 3.4589588	total: 1.72s	remaining: 217ms
888:	learn: 3.4525315	total: 1.72s	remaining: 215ms
889:	learn: 3.4441012	total: 1.73s	remaining: 213ms
890:	learn: 3.4407547	total: 1.73s	remaining: 212ms
891:	learn: 3.4383946	total: 1.73s	remaining: 210ms
892:	learn: 3.4342224	total: 1.73s	remaining: 208ms
893:	learn: 3.4336092	total: 1.73s	remaining: 206ms
894:	learn: 3.4308747	total: 1.74s	remaining: 204ms
895:	learn: 3.4257380	total: 1.74s	remaining: 202ms
896:	learn: 3.4194211	total: 1.74s	remaining: 200ms
897:	learn: 3.4138249	total: 1.74s	remaining: 198ms
898:	learn: 3.4052193	total: 1.74s	remaining: 196ms
899:	learn: 3.3991134	total: 1.75s	remaining: 194ms
900:	learn: 3.3951821	total: 1.75s	remaining: 192ms
901:	learn: 3.3909227	total: 1.75s	remaining: 190ms
902:	learn: 3.3857331	total: 1.75s	remaining: 188ms
903:	learn: 3.3809212	total: 1.75s	remaining: 186ms
904:	learn: 3.3734514	total: 1.75s	remaining: 184ms
905:	learn: 3.3698477	total: 1.75s	remaining: 182ms
906:	learn: 3.3654629	total: 1.76s	remaining: 180ms
907:	learn: 3.3590759	total: 1.76s	remaining: 178ms
908:	learn: 3.3555819	total: 1.76s	remaining: 176ms
909:	learn: 3.3511372	total: 1.76s	remaining: 174ms
910:	learn: 3.3462098	total: 1.76s	remaining: 172ms
911:	learn: 3.3419266	total: 1.77s	remaining: 170ms
912:	learn: 3.3386411	total: 1.77s	remaining: 169ms
913:	learn: 3.3377218	total: 1.77s	remaining: 167ms
914:	learn: 3.3329665	total: 1.77s	remaining: 165ms
915:	learn: 3.3279004	total: 1.77s	remaining: 163ms
916:	learn: 3.3211354	total: 1.77s	remaining: 161ms
917:	learn: 3.3172193	total: 1.78s	remaining: 159ms
918:	learn: 3.3170295	total: 1.78s	remaining: 157ms
919:	learn: 3.3119185	total: 1.78s	remaining: 155ms
920:	learn: 3.3056326	total: 1.78s	remaining: 153ms
921:	learn: 3.3011564	total: 1.78s	remaining: 151ms
922:	learn: 3.2971131	total: 1.78s	remaining: 149ms
923:	learn: 3.2924284	total: 1.79s	remaining: 147ms
924:	learn: 3.2878221	total: 1.79s	remaining: 145ms
925:	learn: 3.2835293	total: 1.79s	remaining: 143ms
926:	learn: 3.2800228	total: 1.79s	remaining: 141ms
927:	learn: 3.2727717	total: 1.79s	remaining: 139ms
928:	learn: 3.2686387	total: 1.8s	remaining: 137ms
929:	learn: 3.2629946	total: 1.8s	remaining: 135ms
930:	learn: 3.2572928	total: 1.8s	remaining: 133ms
931:	learn: 3.2529667	total: 1.8s	remaining: 131ms
932:	learn: 3.2479721	total: 1.8s	remaining: 129ms
933:	learn: 3.2450286	total: 1.8s	remaining: 128ms
934:	learn: 3.2446797	total: 1.81s	remaining: 126ms
935:	learn: 3.2357716	total: 1.81s	remaining: 124ms
936:	learn: 3.2275447	total: 1.81s	remaining: 122ms
937:	learn: 3.2236144	total: 1.81s	remaining: 120ms
938:	learn: 3.2203625	total: 1.81s	remaining: 118ms
939:	learn: 3.2162795	total: 1.81s	remaining: 116ms
940:	learn: 3.2128173	total: 1.82s	remaining: 114ms
941:	learn: 3.2082489	total: 1.82s	remaining: 112ms
942:	learn: 3.2044652	total: 1.82s	remaining: 110ms
943:	learn: 3.1998979	total: 1.82s	remaining: 108ms
944:	learn: 3.1970447	total: 1.82s	remaining: 106ms
945:	learn: 3.1925297	total: 1.82s	remaining: 104ms
946:	learn: 3.1867339	total: 1.83s	remaining: 102ms
947:	learn: 3.1807048	total: 1.83s	remaining: 100ms
948:	learn: 3.1750623	total: 1.83s	remaining: 98.4ms
949:	learn: 3.1705172	total: 1.83s	remaining: 96.4ms
950:	learn: 3.1653850	total: 1.83s	remaining: 94.5ms
951:	learn: 3.1598060	total: 1.83s	remaining: 92.6ms
952:	learn: 3.1553905	total: 1.84s	remaining: 90.6ms
953:	learn: 3.1549143	total: 1.84s	remaining: 88.7ms
954:	learn: 3.1479638	total: 1.84s	remaining: 86.7ms
955:	learn: 3.1448983	total: 1.84s	remaining: 84.8ms
956:	learn: 3.1406723	total: 1.84s	remaining: 82.9ms
957:	learn: 3.1365760	total: 1.85s	remaining: 80.9ms
958:	learn: 3.1328269	total: 1.85s	remaining: 79ms
959:	learn: 3.1304482	total: 1.85s	remaining: 77.1ms
960:	learn: 3.1292411	total: 1.85s	remaining: 75.1ms
961:	learn: 3.1271036	total: 1.85s	remaining: 73.2ms
962:	learn: 3.1229650	total: 1.85s	remaining: 71.3ms
963:	learn: 3.1166806	total: 1.86s	remaining: 69.3ms
964:	learn: 3.1116116	total: 1.86s	remaining: 67.4ms
965:	learn: 3.1080172	total: 1.86s	remaining: 65.5ms
966:	learn: 3.1040038	total: 1.86s	remaining: 63.5ms
967:	learn: 3.1005576	total: 1.86s	remaining: 61.6ms
968:	learn: 3.0970835	total: 1.86s	remaining: 59.7ms
969:	learn: 3.0968456	total: 1.87s	remaining: 57.8ms
970:	learn: 3.0925102	total: 1.87s	remaining: 55.8ms
971:	learn: 3.0874015	total: 1.87s	remaining: 53.9ms
972:	learn: 3.0833663	total: 1.87s	remaining: 52ms
973:	learn: 3.0805623	total: 1.87s	remaining: 50ms
974:	learn: 3.0778900	total: 1.88s	remaining: 48.1ms
975:	learn: 3.0692739	total: 1.88s	remaining: 46.2ms
976:	learn: 3.0652044	total: 1.88s	remaining: 44.3ms
977:	learn: 3.0621114	total: 1.88s	remaining: 42.3ms
978:	learn: 3.0583813	total: 1.88s	remaining: 40.4ms
979:	learn: 3.0532406	total: 1.88s	remaining: 38.5ms
980:	learn: 3.0463328	total: 1.89s	remaining: 36.5ms
981:	learn: 3.0412161	total: 1.89s	remaining: 34.6ms
982:	learn: 3.0380441	total: 1.89s	remaining: 32.7ms
983:	learn: 3.0351508	total: 1.89s	remaining: 30.8ms
984:	learn: 3.0324629	total: 1.89s	remaining: 28.8ms
985:	learn: 3.0268337	total: 1.9s	remaining: 26.9ms
986:	learn: 3.0231572	total: 1.9s	remaining: 25ms
987:	learn: 3.0211301	total: 1.9s	remaining: 23.1ms
988:	learn: 3.0162421	total: 1.9s	remaining: 21.1ms
989:	learn: 3.0131781	total: 1.9s	remaining: 19.2ms
990:	learn: 3.0117645	total: 1.9s	remaining: 17.3ms
991:	learn: 3.0044522	total: 1.91s	remaining: 15.4ms
992:	learn: 3.0022300	total: 1.91s	remaining: 13.4ms
993:	learn: 2.9965799	total: 1.91s	remaining: 11.5ms
994:	learn: 2.9911375	total: 1.91s	remaining: 9.6ms
995:	learn: 2.9869380	total: 1.91s	remaining: 7.68ms
996:	learn: 2.9846123	total: 1.91s	remaining: 5.76ms
997:	learn: 2.9807265	total: 1.92s	remaining: 3.84ms
998:	learn: 2.9788079	total: 1.92s	remaining: 1.92ms
999:	learn: 2.9740477	total: 1.92s	remaining: 0us
Learning rate set to 0.041897
0:	learn: 42.8628241	total: 2.21ms	remaining: 2.21s
1:	learn: 41.7713993	total: 4.02ms	remaining: 2.01s
2:	learn: 41.0211358	total: 5.76ms	remaining: 1.92s
3:	learn: 40.2387245	total: 16.3ms	remaining: 4.05s
4:	learn: 39.2843957	total: 18.1ms	remaining: 3.6s
5:	learn: 38.3586840	total: 20.1ms	remaining: 3.33s
6:	learn: 37.5029138	total: 21.9ms	remaining: 3.11s
7:	learn: 36.7178581	total: 23.8ms	remaining: 2.95s
8:	learn: 35.8882467	total: 25.5ms	remaining: 2.81s
9:	learn: 35.3126809	total: 27.3ms	remaining: 2.7s
10:	learn: 34.5625866	total: 29ms	remaining: 2.61s
11:	learn: 33.9015326	total: 30.7ms	remaining: 2.53s
12:	learn: 33.3075505	total: 32.5ms	remaining: 2.47s
13:	learn: 32.5998223	total: 34.5ms	remaining: 2.43s
14:	learn: 32.0137608	total: 36.3ms	remaining: 2.38s
15:	learn: 31.4350551	total: 38.1ms	remaining: 2.34s
16:	learn: 30.9867198	total: 40ms	remaining: 2.31s
17:	learn: 30.3961092	total: 41.7ms	remaining: 2.27s
18:	learn: 29.8554697	total: 43.5ms	remaining: 2.24s
19:	learn: 29.2630215	total: 45.4ms	remaining: 2.23s
20:	learn: 28.8933141	total: 47.2ms	remaining: 2.2s
21:	learn: 28.4254074	total: 49ms	remaining: 2.18s
22:	learn: 28.0417410	total: 51.2ms	remaining: 2.18s
23:	learn: 27.6708740	total: 53.2ms	remaining: 2.16s
24:	learn: 27.1676800	total: 55ms	remaining: 2.15s
25:	learn: 26.9150637	total: 56.8ms	remaining: 2.13s
26:	learn: 26.4450229	total: 58.7ms	remaining: 2.12s
27:	learn: 26.1210036	total: 60.5ms	remaining: 2.1s
28:	learn: 25.7771949	total: 62.3ms	remaining: 2.08s
29:	learn: 25.3793751	total: 64ms	remaining: 2.07s
30:	learn: 25.0419802	total: 66.1ms	remaining: 2.06s
31:	learn: 24.7059715	total: 68.1ms	remaining: 2.06s
32:	learn: 24.4539064	total: 70ms	remaining: 2.05s
33:	learn: 24.1035145	total: 71.9ms	remaining: 2.04s
34:	learn: 23.8310609	total: 73.7ms	remaining: 2.03s
35:	learn: 23.6706143	total: 75.4ms	remaining: 2.02s
36:	learn: 23.3462125	total: 77.2ms	remaining: 2.01s
37:	learn: 23.0387672	total: 78.9ms	remaining: 2s
38:	learn: 22.7090587	total: 80.6ms	remaining: 1.99s
39:	learn: 22.4811240	total: 82.6ms	remaining: 1.98s
40:	learn: 22.1703222	total: 84.5ms	remaining: 1.98s
41:	learn: 22.0200413	total: 86.4ms	remaining: 1.97s
42:	learn: 21.7916001	total: 88.2ms	remaining: 1.96s
43:	learn: 21.5290078	total: 90ms	remaining: 1.96s
44:	learn: 21.3149076	total: 91.7ms	remaining: 1.95s
45:	learn: 21.1142661	total: 93.4ms	remaining: 1.94s
46:	learn: 20.9610735	total: 95ms	remaining: 1.93s
47:	learn: 20.7874355	total: 96.8ms	remaining: 1.92s
48:	learn: 20.5315321	total: 98.9ms	remaining: 1.92s
49:	learn: 20.4362828	total: 101ms	remaining: 1.91s
50:	learn: 20.3073187	total: 102ms	remaining: 1.91s
51:	learn: 20.2294133	total: 104ms	remaining: 1.9s
52:	learn: 20.1147400	total: 106ms	remaining: 1.89s
53:	learn: 20.0270716	total: 108ms	remaining: 1.88s
54:	learn: 19.8709347	total: 109ms	remaining: 1.88s
55:	learn: 19.7881580	total: 111ms	remaining: 1.87s
56:	learn: 19.6521180	total: 113ms	remaining: 1.86s
57:	learn: 19.5002948	total: 115ms	remaining: 1.86s
58:	learn: 19.3891945	total: 117ms	remaining: 1.86s
59:	learn: 19.2386316	total: 119ms	remaining: 1.86s
60:	learn: 19.1341465	total: 120ms	remaining: 1.85s
61:	learn: 18.9990826	total: 122ms	remaining: 1.85s
62:	learn: 18.8597616	total: 124ms	remaining: 1.84s
63:	learn: 18.7539759	total: 125ms	remaining: 1.83s
64:	learn: 18.6676888	total: 127ms	remaining: 1.83s
65:	learn: 18.5616793	total: 129ms	remaining: 1.82s
66:	learn: 18.4239513	total: 131ms	remaining: 1.82s
67:	learn: 18.3025375	total: 133ms	remaining: 1.82s
68:	learn: 18.2515996	total: 135ms	remaining: 1.82s
69:	learn: 18.1646922	total: 136ms	remaining: 1.81s
70:	learn: 18.0910120	total: 138ms	remaining: 1.81s
71:	learn: 18.0120621	total: 140ms	remaining: 1.8s
72:	learn: 17.9210235	total: 142ms	remaining: 1.8s
73:	learn: 17.7791857	total: 143ms	remaining: 1.79s
74:	learn: 17.7114711	total: 145ms	remaining: 1.79s
75:	learn: 17.6085303	total: 147ms	remaining: 1.79s
76:	learn: 17.5420127	total: 149ms	remaining: 1.78s
77:	learn: 17.5010763	total: 151ms	remaining: 1.78s
78:	learn: 17.4656956	total: 152ms	remaining: 1.78s
79:	learn: 17.4117391	total: 154ms	remaining: 1.77s
80:	learn: 17.2752821	total: 156ms	remaining: 1.77s
81:	learn: 17.1775779	total: 158ms	remaining: 1.76s
82:	learn: 17.0627900	total: 159ms	remaining: 1.76s
83:	learn: 16.9933651	total: 161ms	remaining: 1.76s
84:	learn: 16.9156101	total: 163ms	remaining: 1.75s
85:	learn: 16.8656560	total: 165ms	remaining: 1.75s
86:	learn: 16.7818574	total: 167ms	remaining: 1.75s
87:	learn: 16.7538911	total: 168ms	remaining: 1.74s
88:	learn: 16.6466400	total: 170ms	remaining: 1.74s
89:	learn: 16.6039767	total: 172ms	remaining: 1.74s
90:	learn: 16.5494167	total: 173ms	remaining: 1.73s
91:	learn: 16.5144198	total: 175ms	remaining: 1.73s
92:	learn: 16.4014206	total: 177ms	remaining: 1.73s
93:	learn: 16.3315360	total: 179ms	remaining: 1.72s
94:	learn: 16.2803257	total: 181ms	remaining: 1.72s
95:	learn: 16.1822100	total: 182ms	remaining: 1.72s
96:	learn: 16.1083435	total: 184ms	remaining: 1.71s
97:	learn: 16.0336801	total: 186ms	remaining: 1.71s
98:	learn: 15.9893429	total: 187ms	remaining: 1.71s
99:	learn: 15.9367278	total: 189ms	remaining: 1.7s
100:	learn: 15.8835890	total: 191ms	remaining: 1.7s
101:	learn: 15.8098038	total: 193ms	remaining: 1.7s
102:	learn: 15.7702085	total: 195ms	remaining: 1.7s
103:	learn: 15.7029828	total: 197ms	remaining: 1.7s
104:	learn: 15.6545494	total: 199ms	remaining: 1.69s
105:	learn: 15.6200004	total: 201ms	remaining: 1.69s
106:	learn: 15.5759899	total: 202ms	remaining: 1.69s
107:	learn: 15.5292016	total: 204ms	remaining: 1.68s
108:	learn: 15.4731242	total: 206ms	remaining: 1.68s
109:	learn: 15.4100150	total: 208ms	remaining: 1.68s
110:	learn: 15.3725413	total: 210ms	remaining: 1.68s
111:	learn: 15.3376157	total: 212ms	remaining: 1.68s
112:	learn: 15.2961765	total: 214ms	remaining: 1.68s
113:	learn: 15.1729100	total: 215ms	remaining: 1.67s
114:	learn: 15.1436781	total: 217ms	remaining: 1.67s
115:	learn: 15.0977515	total: 219ms	remaining: 1.67s
116:	learn: 15.0319893	total: 220ms	remaining: 1.66s
117:	learn: 15.0024935	total: 222ms	remaining: 1.66s
118:	learn: 14.9826919	total: 224ms	remaining: 1.66s
119:	learn: 14.9099107	total: 226ms	remaining: 1.66s
120:	learn: 14.8821251	total: 228ms	remaining: 1.65s
121:	learn: 14.8298224	total: 229ms	remaining: 1.65s
122:	learn: 14.7733460	total: 231ms	remaining: 1.65s
123:	learn: 14.7216034	total: 233ms	remaining: 1.64s
124:	learn: 14.6696354	total: 234ms	remaining: 1.64s
125:	learn: 14.6197382	total: 236ms	remaining: 1.64s
126:	learn: 14.6035095	total: 238ms	remaining: 1.64s
127:	learn: 14.5756818	total: 240ms	remaining: 1.63s
128:	learn: 14.5469611	total: 242ms	remaining: 1.63s
129:	learn: 14.4603178	total: 244ms	remaining: 1.63s
130:	learn: 14.4385229	total: 246ms	remaining: 1.63s
131:	learn: 14.4021232	total: 247ms	remaining: 1.63s
132:	learn: 14.3703031	total: 249ms	remaining: 1.62s
133:	learn: 14.3021529	total: 251ms	remaining: 1.62s
134:	learn: 14.2359321	total: 252ms	remaining: 1.62s
135:	learn: 14.2066693	total: 254ms	remaining: 1.61s
136:	learn: 14.1786007	total: 256ms	remaining: 1.61s
137:	learn: 14.1484137	total: 258ms	remaining: 1.61s
138:	learn: 14.0926023	total: 260ms	remaining: 1.61s
139:	learn: 14.0739973	total: 261ms	remaining: 1.61s
140:	learn: 14.0259962	total: 263ms	remaining: 1.6s
141:	learn: 13.9624731	total: 265ms	remaining: 1.6s
142:	learn: 13.9377479	total: 267ms	remaining: 1.6s
143:	learn: 13.8817629	total: 268ms	remaining: 1.59s
144:	learn: 13.8421590	total: 270ms	remaining: 1.59s
145:	learn: 13.8189246	total: 272ms	remaining: 1.59s
146:	learn: 13.7795761	total: 274ms	remaining: 1.59s
147:	learn: 13.7481303	total: 276ms	remaining: 1.59s
148:	learn: 13.7034961	total: 278ms	remaining: 1.58s
149:	learn: 13.6659720	total: 279ms	remaining: 1.58s
150:	learn: 13.6378805	total: 281ms	remaining: 1.58s
151:	learn: 13.5942894	total: 283ms	remaining: 1.58s
152:	learn: 13.5682347	total: 285ms	remaining: 1.57s
153:	learn: 13.5253126	total: 286ms	remaining: 1.57s
154:	learn: 13.4913789	total: 288ms	remaining: 1.57s
155:	learn: 13.4650543	total: 290ms	remaining: 1.57s
156:	learn: 13.4307526	total: 292ms	remaining: 1.57s
157:	learn: 13.4021448	total: 294ms	remaining: 1.56s
158:	learn: 13.3659855	total: 295ms	remaining: 1.56s
159:	learn: 13.3149035	total: 297ms	remaining: 1.56s
160:	learn: 13.2600021	total: 299ms	remaining: 1.56s
161:	learn: 13.2354539	total: 301ms	remaining: 1.56s
162:	learn: 13.2158294	total: 303ms	remaining: 1.55s
163:	learn: 13.1333931	total: 304ms	remaining: 1.55s
164:	learn: 13.0989806	total: 306ms	remaining: 1.55s
165:	learn: 13.0129616	total: 308ms	remaining: 1.55s
166:	learn: 12.9522903	total: 310ms	remaining: 1.54s
167:	learn: 12.9361310	total: 312ms	remaining: 1.54s
168:	learn: 12.8877370	total: 313ms	remaining: 1.54s
169:	learn: 12.8468640	total: 315ms	remaining: 1.54s
170:	learn: 12.7667963	total: 317ms	remaining: 1.53s
171:	learn: 12.7138729	total: 319ms	remaining: 1.53s
172:	learn: 12.6907064	total: 320ms	remaining: 1.53s
173:	learn: 12.6559904	total: 322ms	remaining: 1.53s
174:	learn: 12.6320415	total: 324ms	remaining: 1.53s
175:	learn: 12.6056512	total: 326ms	remaining: 1.52s
176:	learn: 12.5806692	total: 327ms	remaining: 1.52s
177:	learn: 12.5426396	total: 329ms	remaining: 1.52s
178:	learn: 12.4958186	total: 331ms	remaining: 1.52s
179:	learn: 12.4790533	total: 333ms	remaining: 1.51s
180:	learn: 12.4425457	total: 334ms	remaining: 1.51s
181:	learn: 12.4075353	total: 336ms	remaining: 1.51s
182:	learn: 12.3412823	total: 338ms	remaining: 1.51s
183:	learn: 12.3249440	total: 340ms	remaining: 1.51s
184:	learn: 12.2526351	total: 342ms	remaining: 1.5s
185:	learn: 12.2154231	total: 343ms	remaining: 1.5s
186:	learn: 12.1647948	total: 345ms	remaining: 1.5s
187:	learn: 12.1538853	total: 347ms	remaining: 1.5s
188:	learn: 12.1287458	total: 349ms	remaining: 1.5s
189:	learn: 12.1014223	total: 350ms	remaining: 1.49s
190:	learn: 12.0348703	total: 352ms	remaining: 1.49s
191:	learn: 11.9979666	total: 354ms	remaining: 1.49s
192:	learn: 11.9420064	total: 356ms	remaining: 1.49s
193:	learn: 11.9228925	total: 357ms	remaining: 1.48s
194:	learn: 11.8766952	total: 359ms	remaining: 1.48s
195:	learn: 11.8507018	total: 361ms	remaining: 1.48s
196:	learn: 11.8088691	total: 362ms	remaining: 1.48s
197:	learn: 11.7568161	total: 364ms	remaining: 1.47s
198:	learn: 11.7296423	total: 366ms	remaining: 1.47s
199:	learn: 11.7007277	total: 367ms	remaining: 1.47s
200:	learn: 11.6872391	total: 370ms	remaining: 1.47s
201:	learn: 11.6586651	total: 371ms	remaining: 1.47s
202:	learn: 11.6211595	total: 373ms	remaining: 1.46s
203:	learn: 11.5949152	total: 375ms	remaining: 1.46s
204:	learn: 11.5682670	total: 377ms	remaining: 1.46s
205:	learn: 11.5350975	total: 378ms	remaining: 1.46s
206:	learn: 11.5015110	total: 380ms	remaining: 1.46s
207:	learn: 11.4794246	total: 382ms	remaining: 1.45s
208:	learn: 11.4232969	total: 383ms	remaining: 1.45s
209:	learn: 11.4039460	total: 385ms	remaining: 1.45s
210:	learn: 11.3786078	total: 387ms	remaining: 1.45s
211:	learn: 11.3340969	total: 389ms	remaining: 1.45s
212:	learn: 11.3034437	total: 391ms	remaining: 1.45s
213:	learn: 11.2618259	total: 393ms	remaining: 1.44s
214:	learn: 11.2235921	total: 395ms	remaining: 1.44s
215:	learn: 11.1856247	total: 397ms	remaining: 1.44s
216:	learn: 11.1338936	total: 398ms	remaining: 1.44s
217:	learn: 11.0895521	total: 400ms	remaining: 1.44s
218:	learn: 11.0594754	total: 402ms	remaining: 1.43s
219:	learn: 11.0480227	total: 404ms	remaining: 1.43s
220:	learn: 11.0325903	total: 406ms	remaining: 1.43s
221:	learn: 10.9814809	total: 408ms	remaining: 1.43s
222:	learn: 10.9474005	total: 410ms	remaining: 1.43s
223:	learn: 10.9242491	total: 412ms	remaining: 1.43s
224:	learn: 10.8949544	total: 413ms	remaining: 1.42s
225:	learn: 10.8626251	total: 415ms	remaining: 1.42s
226:	learn: 10.8365156	total: 417ms	remaining: 1.42s
227:	learn: 10.8068250	total: 419ms	remaining: 1.42s
228:	learn: 10.7687861	total: 421ms	remaining: 1.42s
229:	learn: 10.7526762	total: 422ms	remaining: 1.41s
230:	learn: 10.7395692	total: 424ms	remaining: 1.41s
231:	learn: 10.6918111	total: 426ms	remaining: 1.41s
232:	learn: 10.6629813	total: 428ms	remaining: 1.41s
233:	learn: 10.6265921	total: 429ms	remaining: 1.41s
234:	learn: 10.6105129	total: 431ms	remaining: 1.4s
235:	learn: 10.5857885	total: 433ms	remaining: 1.4s
236:	learn: 10.5705179	total: 435ms	remaining: 1.4s
237:	learn: 10.5395236	total: 437ms	remaining: 1.4s
238:	learn: 10.5237586	total: 438ms	remaining: 1.4s
239:	learn: 10.4895817	total: 440ms	remaining: 1.39s
240:	learn: 10.4593121	total: 442ms	remaining: 1.39s
241:	learn: 10.4318177	total: 443ms	remaining: 1.39s
242:	learn: 10.3991814	total: 445ms	remaining: 1.39s
243:	learn: 10.3797603	total: 447ms	remaining: 1.38s
244:	learn: 10.3491140	total: 449ms	remaining: 1.38s
245:	learn: 10.3212025	total: 451ms	remaining: 1.38s
246:	learn: 10.2986039	total: 453ms	remaining: 1.38s
247:	learn: 10.2837584	total: 454ms	remaining: 1.38s
248:	learn: 10.2493920	total: 456ms	remaining: 1.38s
249:	learn: 10.2342927	total: 458ms	remaining: 1.37s
250:	learn: 10.2165544	total: 459ms	remaining: 1.37s
251:	learn: 10.2014033	total: 461ms	remaining: 1.37s
252:	learn: 10.1857020	total: 463ms	remaining: 1.37s
253:	learn: 10.1715281	total: 465ms	remaining: 1.36s
254:	learn: 10.1434859	total: 467ms	remaining: 1.36s
255:	learn: 10.1142852	total: 468ms	remaining: 1.36s
256:	learn: 10.0973690	total: 470ms	remaining: 1.36s
257:	learn: 10.0831044	total: 472ms	remaining: 1.36s
258:	learn: 10.0688782	total: 474ms	remaining: 1.35s
259:	learn: 10.0553730	total: 475ms	remaining: 1.35s
260:	learn: 10.0217188	total: 477ms	remaining: 1.35s
261:	learn: 10.0037383	total: 479ms	remaining: 1.35s
262:	learn: 9.9789116	total: 481ms	remaining: 1.35s
263:	learn: 9.9457159	total: 483ms	remaining: 1.34s
264:	learn: 9.9324233	total: 484ms	remaining: 1.34s
265:	learn: 9.9111263	total: 486ms	remaining: 1.34s
266:	learn: 9.8853481	total: 488ms	remaining: 1.34s
267:	learn: 9.8559797	total: 490ms	remaining: 1.34s
268:	learn: 9.8393072	total: 491ms	remaining: 1.33s
269:	learn: 9.8212069	total: 493ms	remaining: 1.33s
270:	learn: 9.7943730	total: 495ms	remaining: 1.33s
271:	learn: 9.7667712	total: 497ms	remaining: 1.33s
272:	learn: 9.7492156	total: 499ms	remaining: 1.33s
273:	learn: 9.7263228	total: 501ms	remaining: 1.33s
274:	learn: 9.7035366	total: 503ms	remaining: 1.32s
275:	learn: 9.6849981	total: 504ms	remaining: 1.32s
276:	learn: 9.6724443	total: 506ms	remaining: 1.32s
277:	learn: 9.6442316	total: 508ms	remaining: 1.32s
278:	learn: 9.6260698	total: 509ms	remaining: 1.32s
279:	learn: 9.6124346	total: 511ms	remaining: 1.31s
280:	learn: 9.6052371	total: 513ms	remaining: 1.31s
281:	learn: 9.5939711	total: 515ms	remaining: 1.31s
282:	learn: 9.5764159	total: 517ms	remaining: 1.31s
283:	learn: 9.5545104	total: 519ms	remaining: 1.31s
284:	learn: 9.5342364	total: 520ms	remaining: 1.3s
285:	learn: 9.5232027	total: 522ms	remaining: 1.3s
286:	learn: 9.5128736	total: 524ms	remaining: 1.3s
287:	learn: 9.4898932	total: 525ms	remaining: 1.3s
288:	learn: 9.4687574	total: 527ms	remaining: 1.3s
289:	learn: 9.4528264	total: 529ms	remaining: 1.29s
290:	learn: 9.4345385	total: 531ms	remaining: 1.29s
291:	learn: 9.4075192	total: 533ms	remaining: 1.29s
292:	learn: 9.3858089	total: 534ms	remaining: 1.29s
293:	learn: 9.3663683	total: 536ms	remaining: 1.29s
294:	learn: 9.3605681	total: 538ms	remaining: 1.28s
295:	learn: 9.3479751	total: 539ms	remaining: 1.28s
296:	learn: 9.3316791	total: 541ms	remaining: 1.28s
297:	learn: 9.3122560	total: 543ms	remaining: 1.28s
298:	learn: 9.2843217	total: 545ms	remaining: 1.28s
299:	learn: 9.2572536	total: 547ms	remaining: 1.27s
300:	learn: 9.2445954	total: 549ms	remaining: 1.27s
301:	learn: 9.2216350	total: 550ms	remaining: 1.27s
302:	learn: 9.2023687	total: 552ms	remaining: 1.27s
303:	learn: 9.1748884	total: 554ms	remaining: 1.27s
304:	learn: 9.1523308	total: 556ms	remaining: 1.26s
305:	learn: 9.1182899	total: 557ms	remaining: 1.26s
306:	learn: 9.1120340	total: 559ms	remaining: 1.26s
307:	learn: 9.1009601	total: 561ms	remaining: 1.26s
308:	learn: 9.0770713	total: 563ms	remaining: 1.26s
309:	learn: 9.0583125	total: 565ms	remaining: 1.26s
310:	learn: 9.0477527	total: 566ms	remaining: 1.25s
311:	learn: 9.0156295	total: 568ms	remaining: 1.25s
312:	learn: 8.9984288	total: 570ms	remaining: 1.25s
313:	learn: 8.9747610	total: 571ms	remaining: 1.25s
314:	learn: 8.9696457	total: 573ms	remaining: 1.25s
315:	learn: 8.9611375	total: 575ms	remaining: 1.24s
316:	learn: 8.9365789	total: 577ms	remaining: 1.24s
317:	learn: 8.9209676	total: 579ms	remaining: 1.24s
318:	learn: 8.9125328	total: 580ms	remaining: 1.24s
319:	learn: 8.9019688	total: 582ms	remaining: 1.24s
320:	learn: 8.8940423	total: 584ms	remaining: 1.24s
321:	learn: 8.8829361	total: 586ms	remaining: 1.23s
322:	learn: 8.8699008	total: 588ms	remaining: 1.23s
323:	learn: 8.8543444	total: 590ms	remaining: 1.23s
324:	learn: 8.8277429	total: 592ms	remaining: 1.23s
325:	learn: 8.8156529	total: 594ms	remaining: 1.23s
326:	learn: 8.7990477	total: 596ms	remaining: 1.23s
327:	learn: 8.7814052	total: 598ms	remaining: 1.23s
328:	learn: 8.7536090	total: 600ms	remaining: 1.22s
329:	learn: 8.7401810	total: 602ms	remaining: 1.22s
330:	learn: 8.7211954	total: 604ms	remaining: 1.22s
331:	learn: 8.7069239	total: 606ms	remaining: 1.22s
332:	learn: 8.6928456	total: 608ms	remaining: 1.22s
333:	learn: 8.6710050	total: 610ms	remaining: 1.22s
334:	learn: 8.6359761	total: 612ms	remaining: 1.22s
335:	learn: 8.6257191	total: 614ms	remaining: 1.21s
336:	learn: 8.6143317	total: 616ms	remaining: 1.21s
337:	learn: 8.6004533	total: 618ms	remaining: 1.21s
338:	learn: 8.5782517	total: 620ms	remaining: 1.21s
339:	learn: 8.5510358	total: 621ms	remaining: 1.21s
340:	learn: 8.5388987	total: 623ms	remaining: 1.2s
341:	learn: 8.5313376	total: 625ms	remaining: 1.2s
342:	learn: 8.5125275	total: 627ms	remaining: 1.2s
343:	learn: 8.4977323	total: 629ms	remaining: 1.2s
344:	learn: 8.4659438	total: 631ms	remaining: 1.2s
345:	learn: 8.4503511	total: 632ms	remaining: 1.2s
346:	learn: 8.4330992	total: 634ms	remaining: 1.19s
347:	learn: 8.4210243	total: 636ms	remaining: 1.19s
348:	learn: 8.4131591	total: 637ms	remaining: 1.19s
349:	learn: 8.3831627	total: 639ms	remaining: 1.19s
350:	learn: 8.3661211	total: 641ms	remaining: 1.19s
351:	learn: 8.3498736	total: 643ms	remaining: 1.18s
352:	learn: 8.3080864	total: 645ms	remaining: 1.18s
353:	learn: 8.2890390	total: 646ms	remaining: 1.18s
354:	learn: 8.2744093	total: 648ms	remaining: 1.18s
355:	learn: 8.2597812	total: 650ms	remaining: 1.18s
356:	learn: 8.2285932	total: 652ms	remaining: 1.17s
357:	learn: 8.2150904	total: 653ms	remaining: 1.17s
358:	learn: 8.1968487	total: 655ms	remaining: 1.17s
359:	learn: 8.1793858	total: 657ms	remaining: 1.17s
360:	learn: 8.1616039	total: 659ms	remaining: 1.17s
361:	learn: 8.1284736	total: 661ms	remaining: 1.16s
362:	learn: 8.1023490	total: 662ms	remaining: 1.16s
363:	learn: 8.0865436	total: 664ms	remaining: 1.16s
364:	learn: 8.0734487	total: 666ms	remaining: 1.16s
365:	learn: 8.0599169	total: 667ms	remaining: 1.16s
366:	learn: 8.0448772	total: 669ms	remaining: 1.15s
367:	learn: 8.0365350	total: 671ms	remaining: 1.15s
368:	learn: 8.0209248	total: 673ms	remaining: 1.15s
369:	learn: 8.0091745	total: 675ms	remaining: 1.15s
370:	learn: 7.9969146	total: 676ms	remaining: 1.15s
371:	learn: 7.9876855	total: 678ms	remaining: 1.14s
372:	learn: 7.9720832	total: 680ms	remaining: 1.14s
373:	learn: 7.9619692	total: 681ms	remaining: 1.14s
374:	learn: 7.9502131	total: 683ms	remaining: 1.14s
375:	learn: 7.9359691	total: 685ms	remaining: 1.14s
376:	learn: 7.9237494	total: 686ms	remaining: 1.13s
377:	learn: 7.9193703	total: 688ms	remaining: 1.13s
378:	learn: 7.8969581	total: 690ms	remaining: 1.13s
379:	learn: 7.8849677	total: 692ms	remaining: 1.13s
380:	learn: 7.8769928	total: 694ms	remaining: 1.13s
381:	learn: 7.8612615	total: 695ms	remaining: 1.12s
382:	learn: 7.8406168	total: 697ms	remaining: 1.12s
383:	learn: 7.8284016	total: 699ms	remaining: 1.12s
384:	learn: 7.8162748	total: 700ms	remaining: 1.12s
385:	learn: 7.8025168	total: 702ms	remaining: 1.12s
386:	learn: 7.7833416	total: 704ms	remaining: 1.11s
387:	learn: 7.7667457	total: 706ms	remaining: 1.11s
388:	learn: 7.7478084	total: 708ms	remaining: 1.11s
389:	learn: 7.7366545	total: 710ms	remaining: 1.11s
390:	learn: 7.7162373	total: 712ms	remaining: 1.11s
391:	learn: 7.7124218	total: 713ms	remaining: 1.11s
392:	learn: 7.7000726	total: 715ms	remaining: 1.1s
393:	learn: 7.6941772	total: 717ms	remaining: 1.1s
394:	learn: 7.6848247	total: 719ms	remaining: 1.1s
395:	learn: 7.6706539	total: 721ms	remaining: 1.1s
396:	learn: 7.6571749	total: 723ms	remaining: 1.1s
397:	learn: 7.6542257	total: 725ms	remaining: 1.09s
398:	learn: 7.6412470	total: 726ms	remaining: 1.09s
399:	learn: 7.6332791	total: 728ms	remaining: 1.09s
400:	learn: 7.6172197	total: 730ms	remaining: 1.09s
401:	learn: 7.6000736	total: 731ms	remaining: 1.09s
402:	learn: 7.5933968	total: 733ms	remaining: 1.08s
403:	learn: 7.5837210	total: 735ms	remaining: 1.08s
404:	learn: 7.5733278	total: 737ms	remaining: 1.08s
405:	learn: 7.5625280	total: 739ms	remaining: 1.08s
406:	learn: 7.5513464	total: 741ms	remaining: 1.08s
407:	learn: 7.5308700	total: 742ms	remaining: 1.08s
408:	learn: 7.5208084	total: 744ms	remaining: 1.07s
409:	learn: 7.5088577	total: 746ms	remaining: 1.07s
410:	learn: 7.4977608	total: 748ms	remaining: 1.07s
411:	learn: 7.4745008	total: 749ms	remaining: 1.07s
412:	learn: 7.4639261	total: 751ms	remaining: 1.07s
413:	learn: 7.4525919	total: 753ms	remaining: 1.06s
414:	learn: 7.4403881	total: 755ms	remaining: 1.06s
415:	learn: 7.4235460	total: 756ms	remaining: 1.06s
416:	learn: 7.4151190	total: 758ms	remaining: 1.06s
417:	learn: 7.4079034	total: 760ms	remaining: 1.06s
418:	learn: 7.4055338	total: 761ms	remaining: 1.05s
419:	learn: 7.3964509	total: 763ms	remaining: 1.05s
420:	learn: 7.3779226	total: 765ms	remaining: 1.05s
421:	learn: 7.3698162	total: 767ms	remaining: 1.05s
422:	learn: 7.3616043	total: 768ms	remaining: 1.05s
423:	learn: 7.3511224	total: 770ms	remaining: 1.05s
424:	learn: 7.3400527	total: 772ms	remaining: 1.04s
425:	learn: 7.3278353	total: 774ms	remaining: 1.04s
426:	learn: 7.3190557	total: 775ms	remaining: 1.04s
427:	learn: 7.3113353	total: 777ms	remaining: 1.04s
428:	learn: 7.3015682	total: 779ms	remaining: 1.04s
429:	learn: 7.2925743	total: 780ms	remaining: 1.03s
430:	learn: 7.2695302	total: 783ms	remaining: 1.03s
431:	learn: 7.2552185	total: 785ms	remaining: 1.03s
432:	learn: 7.2281990	total: 786ms	remaining: 1.03s
433:	learn: 7.2152967	total: 788ms	remaining: 1.03s
434:	learn: 7.2059178	total: 790ms	remaining: 1.03s
435:	learn: 7.1775936	total: 792ms	remaining: 1.02s
436:	learn: 7.1612013	total: 794ms	remaining: 1.02s
437:	learn: 7.1511860	total: 796ms	remaining: 1.02s
438:	learn: 7.1360262	total: 798ms	remaining: 1.02s
439:	learn: 7.1302237	total: 800ms	remaining: 1.02s
440:	learn: 7.1234807	total: 802ms	remaining: 1.02s
441:	learn: 7.1159828	total: 804ms	remaining: 1.01s
442:	learn: 7.1072798	total: 806ms	remaining: 1.01s
443:	learn: 7.0921714	total: 808ms	remaining: 1.01s
444:	learn: 7.0874310	total: 809ms	remaining: 1.01s
445:	learn: 7.0649010	total: 811ms	remaining: 1.01s
446:	learn: 7.0469188	total: 813ms	remaining: 1s
447:	learn: 7.0384524	total: 814ms	remaining: 1s
448:	learn: 7.0325360	total: 816ms	remaining: 1s
449:	learn: 7.0099709	total: 818ms	remaining: 999ms
450:	learn: 6.9922942	total: 819ms	remaining: 998ms
451:	learn: 6.9825634	total: 822ms	remaining: 996ms
452:	learn: 6.9654317	total: 823ms	remaining: 994ms
453:	learn: 6.9475964	total: 825ms	remaining: 992ms
454:	learn: 6.9426893	total: 827ms	remaining: 991ms
455:	learn: 6.9275480	total: 829ms	remaining: 989ms
456:	learn: 6.9135810	total: 830ms	remaining: 987ms
457:	learn: 6.8904427	total: 832ms	remaining: 985ms
458:	learn: 6.8743887	total: 834ms	remaining: 983ms
459:	learn: 6.8642195	total: 836ms	remaining: 981ms
460:	learn: 6.8527506	total: 838ms	remaining: 980ms
461:	learn: 6.8343533	total: 840ms	remaining: 978ms
462:	learn: 6.8296447	total: 842ms	remaining: 976ms
463:	learn: 6.8232371	total: 843ms	remaining: 974ms
464:	learn: 6.8172928	total: 845ms	remaining: 972ms
465:	learn: 6.8096257	total: 847ms	remaining: 970ms
466:	learn: 6.7946844	total: 848ms	remaining: 968ms
467:	learn: 6.7843666	total: 850ms	remaining: 966ms
468:	learn: 6.7796217	total: 852ms	remaining: 965ms
469:	learn: 6.7698185	total: 854ms	remaining: 963ms
470:	learn: 6.7547324	total: 856ms	remaining: 961ms
471:	learn: 6.7421087	total: 857ms	remaining: 959ms
472:	learn: 6.7314362	total: 859ms	remaining: 957ms
473:	learn: 6.7138823	total: 861ms	remaining: 955ms
474:	learn: 6.7055041	total: 863ms	remaining: 953ms
475:	learn: 6.6942586	total: 864ms	remaining: 951ms
476:	learn: 6.6848762	total: 866ms	remaining: 950ms
477:	learn: 6.6793112	total: 868ms	remaining: 948ms
478:	learn: 6.6745984	total: 870ms	remaining: 946ms
479:	learn: 6.6621599	total: 871ms	remaining: 944ms
480:	learn: 6.6484300	total: 873ms	remaining: 942ms
481:	learn: 6.6389610	total: 875ms	remaining: 940ms
482:	learn: 6.6243490	total: 877ms	remaining: 938ms
483:	learn: 6.6094015	total: 878ms	remaining: 937ms
484:	learn: 6.6017717	total: 880ms	remaining: 935ms
485:	learn: 6.5858874	total: 882ms	remaining: 933ms
486:	learn: 6.5755215	total: 884ms	remaining: 931ms
487:	learn: 6.5677360	total: 886ms	remaining: 929ms
488:	learn: 6.5624323	total: 887ms	remaining: 927ms
489:	learn: 6.5504376	total: 889ms	remaining: 926ms
490:	learn: 6.5413630	total: 891ms	remaining: 924ms
491:	learn: 6.5273642	total: 893ms	remaining: 922ms
492:	learn: 6.5198856	total: 894ms	remaining: 920ms
493:	learn: 6.5109414	total: 896ms	remaining: 918ms
494:	learn: 6.5057825	total: 898ms	remaining: 916ms
495:	learn: 6.4951191	total: 900ms	remaining: 914ms
496:	learn: 6.4874444	total: 902ms	remaining: 912ms
497:	learn: 6.4862701	total: 903ms	remaining: 911ms
498:	learn: 6.4745434	total: 905ms	remaining: 909ms
499:	learn: 6.4614208	total: 907ms	remaining: 907ms
500:	learn: 6.4486576	total: 908ms	remaining: 905ms
501:	learn: 6.4407818	total: 910ms	remaining: 903ms
502:	learn: 6.4286751	total: 912ms	remaining: 901ms
503:	learn: 6.4231837	total: 913ms	remaining: 899ms
504:	learn: 6.4181477	total: 915ms	remaining: 897ms
505:	learn: 6.4105764	total: 917ms	remaining: 895ms
506:	learn: 6.4033135	total: 919ms	remaining: 894ms
507:	learn: 6.3941768	total: 921ms	remaining: 892ms
508:	learn: 6.3897547	total: 923ms	remaining: 890ms
509:	learn: 6.3796820	total: 924ms	remaining: 888ms
510:	learn: 6.3687548	total: 926ms	remaining: 886ms
511:	learn: 6.3596093	total: 928ms	remaining: 884ms
512:	learn: 6.3491881	total: 930ms	remaining: 882ms
513:	learn: 6.3343737	total: 931ms	remaining: 881ms
514:	learn: 6.3165590	total: 933ms	remaining: 879ms
515:	learn: 6.3071565	total: 935ms	remaining: 877ms
516:	learn: 6.3018690	total: 937ms	remaining: 875ms
517:	learn: 6.2922572	total: 939ms	remaining: 874ms
518:	learn: 6.2825652	total: 941ms	remaining: 872ms
519:	learn: 6.2762038	total: 942ms	remaining: 870ms
520:	learn: 6.2711559	total: 944ms	remaining: 868ms
521:	learn: 6.2516222	total: 946ms	remaining: 866ms
522:	learn: 6.2404821	total: 947ms	remaining: 864ms
523:	learn: 6.2179003	total: 949ms	remaining: 862ms
524:	learn: 6.2119322	total: 951ms	remaining: 861ms
525:	learn: 6.2066064	total: 953ms	remaining: 859ms
526:	learn: 6.2010305	total: 955ms	remaining: 857ms
527:	learn: 6.1954314	total: 956ms	remaining: 855ms
528:	learn: 6.1888255	total: 958ms	remaining: 853ms
529:	learn: 6.1779099	total: 960ms	remaining: 851ms
530:	learn: 6.1681222	total: 962ms	remaining: 849ms
531:	learn: 6.1586494	total: 963ms	remaining: 847ms
532:	learn: 6.1485436	total: 965ms	remaining: 846ms
533:	learn: 6.1379570	total: 967ms	remaining: 844ms
534:	learn: 6.1330806	total: 969ms	remaining: 842ms
535:	learn: 6.1274546	total: 970ms	remaining: 840ms
536:	learn: 6.1162167	total: 972ms	remaining: 838ms
537:	learn: 6.1104884	total: 974ms	remaining: 836ms
538:	learn: 6.1031956	total: 976ms	remaining: 834ms
539:	learn: 6.1015526	total: 977ms	remaining: 832ms
540:	learn: 6.0951280	total: 979ms	remaining: 830ms
541:	learn: 6.0894871	total: 981ms	remaining: 829ms
542:	learn: 6.0765671	total: 983ms	remaining: 827ms
543:	learn: 6.0724765	total: 985ms	remaining: 825ms
544:	learn: 6.0575861	total: 986ms	remaining: 823ms
545:	learn: 6.0541152	total: 988ms	remaining: 821ms
546:	learn: 6.0484186	total: 990ms	remaining: 819ms
547:	learn: 6.0397939	total: 991ms	remaining: 818ms
548:	learn: 6.0330636	total: 993ms	remaining: 816ms
549:	learn: 6.0175158	total: 995ms	remaining: 814ms
550:	learn: 6.0030416	total: 997ms	remaining: 812ms
551:	learn: 5.9915847	total: 999ms	remaining: 810ms
552:	learn: 5.9761484	total: 1s	remaining: 809ms
553:	learn: 5.9716497	total: 1s	remaining: 807ms
554:	learn: 5.9568622	total: 1s	remaining: 805ms
555:	learn: 5.9530219	total: 1s	remaining: 803ms
556:	learn: 5.9449782	total: 1.01s	remaining: 801ms
557:	learn: 5.9412698	total: 1.01s	remaining: 799ms
558:	learn: 5.9381161	total: 1.01s	remaining: 797ms
559:	learn: 5.9357414	total: 1.01s	remaining: 795ms
560:	learn: 5.9309257	total: 1.01s	remaining: 794ms
561:	learn: 5.9148256	total: 1.01s	remaining: 792ms
562:	learn: 5.9081021	total: 1.02s	remaining: 790ms
563:	learn: 5.8909612	total: 1.02s	remaining: 788ms
564:	learn: 5.8820237	total: 1.02s	remaining: 786ms
565:	learn: 5.8726832	total: 1.02s	remaining: 784ms
566:	learn: 5.8618234	total: 1.02s	remaining: 782ms
567:	learn: 5.8590606	total: 1.03s	remaining: 781ms
568:	learn: 5.8536145	total: 1.03s	remaining: 779ms
569:	learn: 5.8422452	total: 1.03s	remaining: 777ms
570:	learn: 5.8308101	total: 1.03s	remaining: 775ms
571:	learn: 5.8251579	total: 1.03s	remaining: 774ms
572:	learn: 5.8149265	total: 1.03s	remaining: 772ms
573:	learn: 5.8033115	total: 1.04s	remaining: 770ms
574:	learn: 5.7945040	total: 1.04s	remaining: 768ms
575:	learn: 5.7856280	total: 1.04s	remaining: 766ms
576:	learn: 5.7786422	total: 1.04s	remaining: 765ms
577:	learn: 5.7670011	total: 1.04s	remaining: 763ms
578:	learn: 5.7590445	total: 1.05s	remaining: 761ms
579:	learn: 5.7456994	total: 1.05s	remaining: 759ms
580:	learn: 5.7452561	total: 1.05s	remaining: 757ms
581:	learn: 5.7385053	total: 1.05s	remaining: 755ms
582:	learn: 5.7293773	total: 1.05s	remaining: 753ms
583:	learn: 5.7119549	total: 1.05s	remaining: 752ms
584:	learn: 5.7076310	total: 1.06s	remaining: 750ms
585:	learn: 5.7015663	total: 1.06s	remaining: 748ms
586:	learn: 5.6959638	total: 1.06s	remaining: 746ms
587:	learn: 5.6920745	total: 1.06s	remaining: 744ms
588:	learn: 5.6848780	total: 1.06s	remaining: 742ms
589:	learn: 5.6743416	total: 1.06s	remaining: 740ms
590:	learn: 5.6703269	total: 1.07s	remaining: 738ms
591:	learn: 5.6623605	total: 1.07s	remaining: 737ms
592:	learn: 5.6467384	total: 1.07s	remaining: 735ms
593:	learn: 5.6387978	total: 1.07s	remaining: 733ms
594:	learn: 5.6314705	total: 1.07s	remaining: 731ms
595:	learn: 5.6217213	total: 1.07s	remaining: 729ms
596:	learn: 5.6183134	total: 1.08s	remaining: 727ms
597:	learn: 5.6104999	total: 1.08s	remaining: 726ms
598:	learn: 5.5994947	total: 1.08s	remaining: 724ms
599:	learn: 5.5942795	total: 1.08s	remaining: 722ms
600:	learn: 5.5842660	total: 1.08s	remaining: 720ms
601:	learn: 5.5726942	total: 1.09s	remaining: 718ms
602:	learn: 5.5643729	total: 1.09s	remaining: 716ms
603:	learn: 5.5594718	total: 1.09s	remaining: 714ms
604:	learn: 5.5543324	total: 1.09s	remaining: 713ms
605:	learn: 5.5440836	total: 1.09s	remaining: 711ms
606:	learn: 5.5372998	total: 1.09s	remaining: 709ms
607:	learn: 5.5294473	total: 1.1s	remaining: 707ms
608:	learn: 5.5248728	total: 1.1s	remaining: 705ms
609:	learn: 5.5230972	total: 1.1s	remaining: 703ms
610:	learn: 5.5139966	total: 1.1s	remaining: 701ms
611:	learn: 5.5048806	total: 1.1s	remaining: 700ms
612:	learn: 5.4950072	total: 1.1s	remaining: 698ms
613:	learn: 5.4846911	total: 1.11s	remaining: 696ms
614:	learn: 5.4795740	total: 1.11s	remaining: 694ms
615:	learn: 5.4720547	total: 1.11s	remaining: 692ms
616:	learn: 5.4660595	total: 1.11s	remaining: 690ms
617:	learn: 5.4621142	total: 1.11s	remaining: 689ms
618:	learn: 5.4540195	total: 1.11s	remaining: 687ms
619:	learn: 5.4366334	total: 1.12s	remaining: 685ms
620:	learn: 5.4304222	total: 1.12s	remaining: 683ms
621:	learn: 5.4245912	total: 1.12s	remaining: 681ms
622:	learn: 5.4139194	total: 1.12s	remaining: 679ms
623:	learn: 5.4069117	total: 1.12s	remaining: 677ms
624:	learn: 5.3942270	total: 1.13s	remaining: 676ms
625:	learn: 5.3935712	total: 1.13s	remaining: 674ms
626:	learn: 5.3841204	total: 1.13s	remaining: 672ms
627:	learn: 5.3764997	total: 1.13s	remaining: 670ms
628:	learn: 5.3726231	total: 1.13s	remaining: 668ms
629:	learn: 5.3572796	total: 1.13s	remaining: 666ms
630:	learn: 5.3528929	total: 1.14s	remaining: 664ms
631:	learn: 5.3444241	total: 1.14s	remaining: 663ms
632:	learn: 5.3352085	total: 1.14s	remaining: 661ms
633:	learn: 5.3315151	total: 1.14s	remaining: 659ms
634:	learn: 5.3253428	total: 1.14s	remaining: 657ms
635:	learn: 5.3098238	total: 1.15s	remaining: 655ms
636:	learn: 5.3065380	total: 1.15s	remaining: 654ms
637:	learn: 5.2981000	total: 1.15s	remaining: 652ms
638:	learn: 5.2820450	total: 1.15s	remaining: 650ms
639:	learn: 5.2696246	total: 1.15s	remaining: 648ms
640:	learn: 5.2590325	total: 1.15s	remaining: 646ms
641:	learn: 5.2472340	total: 1.16s	remaining: 644ms
642:	learn: 5.2335545	total: 1.16s	remaining: 643ms
643:	learn: 5.2248812	total: 1.16s	remaining: 641ms
644:	learn: 5.2146495	total: 1.16s	remaining: 639ms
645:	learn: 5.2060022	total: 1.16s	remaining: 637ms
646:	learn: 5.1997372	total: 1.16s	remaining: 635ms
647:	learn: 5.1931189	total: 1.17s	remaining: 633ms
648:	learn: 5.1753352	total: 1.17s	remaining: 631ms
649:	learn: 5.1693208	total: 1.17s	remaining: 630ms
650:	learn: 5.1573025	total: 1.17s	remaining: 628ms
651:	learn: 5.1499099	total: 1.17s	remaining: 626ms
652:	learn: 5.1440682	total: 1.17s	remaining: 624ms
653:	learn: 5.1425386	total: 1.18s	remaining: 623ms
654:	learn: 5.1285048	total: 1.18s	remaining: 621ms
655:	learn: 5.1219666	total: 1.18s	remaining: 619ms
656:	learn: 5.1184996	total: 1.18s	remaining: 617ms
657:	learn: 5.1127213	total: 1.18s	remaining: 615ms
658:	learn: 5.0998954	total: 1.19s	remaining: 613ms
659:	learn: 5.0942615	total: 1.19s	remaining: 612ms
660:	learn: 5.0834217	total: 1.19s	remaining: 610ms
661:	learn: 5.0744472	total: 1.19s	remaining: 608ms
662:	learn: 5.0664318	total: 1.19s	remaining: 606ms
663:	learn: 5.0547000	total: 1.19s	remaining: 604ms
664:	learn: 5.0490666	total: 1.2s	remaining: 603ms
665:	learn: 5.0376953	total: 1.2s	remaining: 601ms
666:	learn: 5.0315923	total: 1.2s	remaining: 599ms
667:	learn: 5.0232106	total: 1.2s	remaining: 597ms
668:	learn: 5.0108336	total: 1.2s	remaining: 595ms
669:	learn: 5.0013170	total: 1.21s	remaining: 594ms
670:	learn: 4.9922065	total: 1.21s	remaining: 592ms
671:	learn: 4.9868316	total: 1.21s	remaining: 590ms
672:	learn: 4.9762721	total: 1.21s	remaining: 588ms
673:	learn: 4.9721445	total: 1.21s	remaining: 586ms
674:	learn: 4.9635990	total: 1.21s	remaining: 584ms
675:	learn: 4.9567644	total: 1.22s	remaining: 583ms
676:	learn: 4.9482575	total: 1.22s	remaining: 581ms
677:	learn: 4.9420769	total: 1.22s	remaining: 579ms
678:	learn: 4.9341449	total: 1.22s	remaining: 577ms
679:	learn: 4.9278405	total: 1.22s	remaining: 576ms
680:	learn: 4.9242470	total: 1.22s	remaining: 574ms
681:	learn: 4.9204629	total: 1.23s	remaining: 572ms
682:	learn: 4.9128011	total: 1.23s	remaining: 570ms
683:	learn: 4.9005881	total: 1.23s	remaining: 568ms
684:	learn: 4.8900451	total: 1.23s	remaining: 566ms
685:	learn: 4.8799202	total: 1.23s	remaining: 564ms
686:	learn: 4.8745676	total: 1.24s	remaining: 563ms
687:	learn: 4.8706192	total: 1.24s	remaining: 561ms
688:	learn: 4.8603564	total: 1.24s	remaining: 559ms
689:	learn: 4.8573466	total: 1.24s	remaining: 557ms
690:	learn: 4.8448331	total: 1.24s	remaining: 556ms
691:	learn: 4.8446137	total: 1.24s	remaining: 554ms
692:	learn: 4.8364650	total: 1.25s	remaining: 552ms
693:	learn: 4.8307334	total: 1.25s	remaining: 550ms
694:	learn: 4.8249000	total: 1.25s	remaining: 548ms
695:	learn: 4.8169099	total: 1.25s	remaining: 547ms
696:	learn: 4.8098263	total: 1.25s	remaining: 545ms
697:	learn: 4.8065748	total: 1.25s	remaining: 543ms
698:	learn: 4.7987215	total: 1.26s	remaining: 541ms
699:	learn: 4.7909301	total: 1.26s	remaining: 539ms
700:	learn: 4.7810597	total: 1.26s	remaining: 537ms
701:	learn: 4.7701658	total: 1.26s	remaining: 536ms
702:	learn: 4.7653127	total: 1.26s	remaining: 534ms
703:	learn: 4.7575589	total: 1.26s	remaining: 532ms
704:	learn: 4.7493783	total: 1.27s	remaining: 530ms
705:	learn: 4.7449285	total: 1.27s	remaining: 528ms
706:	learn: 4.7372687	total: 1.27s	remaining: 527ms
707:	learn: 4.7283082	total: 1.27s	remaining: 525ms
708:	learn: 4.7181956	total: 1.27s	remaining: 523ms
709:	learn: 4.7137833	total: 1.27s	remaining: 521ms
710:	learn: 4.7102890	total: 1.28s	remaining: 519ms
711:	learn: 4.6982167	total: 1.28s	remaining: 518ms
712:	learn: 4.6907348	total: 1.28s	remaining: 516ms
713:	learn: 4.6808229	total: 1.28s	remaining: 514ms
714:	learn: 4.6753304	total: 1.28s	remaining: 512ms
715:	learn: 4.6682475	total: 1.29s	remaining: 510ms
716:	learn: 4.6619303	total: 1.29s	remaining: 509ms
717:	learn: 4.6557995	total: 1.29s	remaining: 507ms
718:	learn: 4.6455742	total: 1.29s	remaining: 505ms
719:	learn: 4.6364620	total: 1.29s	remaining: 503ms
720:	learn: 4.6312319	total: 1.29s	remaining: 501ms
721:	learn: 4.6206465	total: 1.3s	remaining: 499ms
722:	learn: 4.6086161	total: 1.3s	remaining: 498ms
723:	learn: 4.6039097	total: 1.3s	remaining: 496ms
724:	learn: 4.5985481	total: 1.3s	remaining: 494ms
725:	learn: 4.5944724	total: 1.3s	remaining: 492ms
726:	learn: 4.5877445	total: 1.3s	remaining: 490ms
727:	learn: 4.5816237	total: 1.31s	remaining: 489ms
728:	learn: 4.5733853	total: 1.31s	remaining: 487ms
729:	learn: 4.5703798	total: 1.31s	remaining: 485ms
730:	learn: 4.5645412	total: 1.31s	remaining: 483ms
731:	learn: 4.5611382	total: 1.31s	remaining: 481ms
732:	learn: 4.5576008	total: 1.32s	remaining: 480ms
733:	learn: 4.5534427	total: 1.32s	remaining: 478ms
734:	learn: 4.5495517	total: 1.32s	remaining: 476ms
735:	learn: 4.5424566	total: 1.32s	remaining: 474ms
736:	learn: 4.5407344	total: 1.32s	remaining: 473ms
737:	learn: 4.5335243	total: 1.32s	remaining: 471ms
738:	learn: 4.5303232	total: 1.33s	remaining: 469ms
739:	learn: 4.5204091	total: 1.33s	remaining: 467ms
740:	learn: 4.5157856	total: 1.33s	remaining: 465ms
741:	learn: 4.5125796	total: 1.33s	remaining: 464ms
742:	learn: 4.5114220	total: 1.33s	remaining: 462ms
743:	learn: 4.5103681	total: 1.34s	remaining: 460ms
744:	learn: 4.5093904	total: 1.34s	remaining: 458ms
745:	learn: 4.5071964	total: 1.34s	remaining: 456ms
746:	learn: 4.4940904	total: 1.34s	remaining: 455ms
747:	learn: 4.4876701	total: 1.34s	remaining: 453ms
748:	learn: 4.4821902	total: 1.34s	remaining: 451ms
749:	learn: 4.4736111	total: 1.35s	remaining: 449ms
750:	learn: 4.4711399	total: 1.35s	remaining: 447ms
751:	learn: 4.4623600	total: 1.35s	remaining: 446ms
752:	learn: 4.4564484	total: 1.35s	remaining: 444ms
753:	learn: 4.4447142	total: 1.35s	remaining: 442ms
754:	learn: 4.4393457	total: 1.36s	remaining: 440ms
755:	learn: 4.4372983	total: 1.36s	remaining: 438ms
756:	learn: 4.4311244	total: 1.36s	remaining: 436ms
757:	learn: 4.4236835	total: 1.36s	remaining: 435ms
758:	learn: 4.4191855	total: 1.36s	remaining: 433ms
759:	learn: 4.4103917	total: 1.36s	remaining: 431ms
760:	learn: 4.4009656	total: 1.37s	remaining: 429ms
761:	learn: 4.3991667	total: 1.37s	remaining: 428ms
762:	learn: 4.3940574	total: 1.37s	remaining: 426ms
763:	learn: 4.3921465	total: 1.37s	remaining: 424ms
764:	learn: 4.3823030	total: 1.37s	remaining: 422ms
765:	learn: 4.3761129	total: 1.38s	remaining: 420ms
766:	learn: 4.3688641	total: 1.38s	remaining: 419ms
767:	learn: 4.3582537	total: 1.38s	remaining: 417ms
768:	learn: 4.3484067	total: 1.38s	remaining: 415ms
769:	learn: 4.3458779	total: 1.38s	remaining: 413ms
770:	learn: 4.3446981	total: 1.39s	remaining: 411ms
771:	learn: 4.3390350	total: 1.39s	remaining: 410ms
772:	learn: 4.3319181	total: 1.39s	remaining: 408ms
773:	learn: 4.3281500	total: 1.39s	remaining: 406ms
774:	learn: 4.3233726	total: 1.39s	remaining: 404ms
775:	learn: 4.3147066	total: 1.39s	remaining: 402ms
776:	learn: 4.3044908	total: 1.4s	remaining: 401ms
777:	learn: 4.2946344	total: 1.4s	remaining: 399ms
778:	learn: 4.2868871	total: 1.4s	remaining: 397ms
779:	learn: 4.2849745	total: 1.4s	remaining: 395ms
780:	learn: 4.2815097	total: 1.4s	remaining: 393ms
781:	learn: 4.2809811	total: 1.4s	remaining: 392ms
782:	learn: 4.2765892	total: 1.41s	remaining: 390ms
783:	learn: 4.2715249	total: 1.41s	remaining: 388ms
784:	learn: 4.2709727	total: 1.41s	remaining: 386ms
785:	learn: 4.2620969	total: 1.41s	remaining: 384ms
786:	learn: 4.2547061	total: 1.41s	remaining: 383ms
787:	learn: 4.2524785	total: 1.42s	remaining: 381ms
788:	learn: 4.2456408	total: 1.42s	remaining: 379ms
789:	learn: 4.2399220	total: 1.42s	remaining: 377ms
790:	learn: 4.2353922	total: 1.42s	remaining: 375ms
791:	learn: 4.2291210	total: 1.42s	remaining: 374ms
792:	learn: 4.2216013	total: 1.42s	remaining: 372ms
793:	learn: 4.2171049	total: 1.43s	remaining: 370ms
794:	learn: 4.2108268	total: 1.43s	remaining: 368ms
795:	learn: 4.2038392	total: 1.43s	remaining: 366ms
796:	learn: 4.1971695	total: 1.43s	remaining: 365ms
797:	learn: 4.1877722	total: 1.43s	remaining: 363ms
798:	learn: 4.1804720	total: 1.43s	remaining: 361ms
799:	learn: 4.1742136	total: 1.44s	remaining: 359ms
800:	learn: 4.1722598	total: 1.44s	remaining: 357ms
801:	learn: 4.1673112	total: 1.44s	remaining: 355ms
802:	learn: 4.1581464	total: 1.44s	remaining: 354ms
803:	learn: 4.1466471	total: 1.44s	remaining: 352ms
804:	learn: 4.1419348	total: 1.45s	remaining: 350ms
805:	learn: 4.1394548	total: 1.45s	remaining: 348ms
806:	learn: 4.1352451	total: 1.45s	remaining: 347ms
807:	learn: 4.1274313	total: 1.45s	remaining: 345ms
808:	learn: 4.1207076	total: 1.45s	remaining: 343ms
809:	learn: 4.1117621	total: 1.45s	remaining: 341ms
810:	learn: 4.0975722	total: 1.46s	remaining: 339ms
811:	learn: 4.0871271	total: 1.46s	remaining: 338ms
812:	learn: 4.0820201	total: 1.46s	remaining: 336ms
813:	learn: 4.0781984	total: 1.46s	remaining: 334ms
814:	learn: 4.0699368	total: 1.46s	remaining: 332ms
815:	learn: 4.0633030	total: 1.47s	remaining: 330ms
816:	learn: 4.0568505	total: 1.47s	remaining: 329ms
817:	learn: 4.0458126	total: 1.47s	remaining: 327ms
818:	learn: 4.0374072	total: 1.47s	remaining: 325ms
819:	learn: 4.0349732	total: 1.47s	remaining: 323ms
820:	learn: 4.0288953	total: 1.47s	remaining: 321ms
821:	learn: 4.0234213	total: 1.48s	remaining: 320ms
822:	learn: 4.0172206	total: 1.48s	remaining: 318ms
823:	learn: 4.0170225	total: 1.48s	remaining: 316ms
824:	learn: 4.0091992	total: 1.48s	remaining: 314ms
825:	learn: 4.0015401	total: 1.48s	remaining: 312ms
826:	learn: 3.9953310	total: 1.48s	remaining: 311ms
827:	learn: 3.9936431	total: 1.49s	remaining: 309ms
828:	learn: 3.9909107	total: 1.49s	remaining: 307ms
829:	learn: 3.9810637	total: 1.49s	remaining: 305ms
830:	learn: 3.9795323	total: 1.49s	remaining: 303ms
831:	learn: 3.9710157	total: 1.49s	remaining: 302ms
832:	learn: 3.9655383	total: 1.5s	remaining: 300ms
833:	learn: 3.9611192	total: 1.5s	remaining: 298ms
834:	learn: 3.9584874	total: 1.5s	remaining: 296ms
835:	learn: 3.9539721	total: 1.5s	remaining: 294ms
836:	learn: 3.9464495	total: 1.5s	remaining: 293ms
837:	learn: 3.9446498	total: 1.5s	remaining: 291ms
838:	learn: 3.9401302	total: 1.5s	remaining: 289ms
839:	learn: 3.9372594	total: 1.51s	remaining: 287ms
840:	learn: 3.9367273	total: 1.51s	remaining: 285ms
841:	learn: 3.9275379	total: 1.51s	remaining: 284ms
842:	learn: 3.9191952	total: 1.51s	remaining: 282ms
843:	learn: 3.9131545	total: 1.51s	remaining: 280ms
844:	learn: 3.9027914	total: 1.52s	remaining: 278ms
845:	learn: 3.9018754	total: 1.52s	remaining: 276ms
846:	learn: 3.8966963	total: 1.52s	remaining: 274ms
847:	learn: 3.8926735	total: 1.52s	remaining: 273ms
848:	learn: 3.8873750	total: 1.52s	remaining: 271ms
849:	learn: 3.8820416	total: 1.52s	remaining: 269ms
850:	learn: 3.8743678	total: 1.53s	remaining: 267ms
851:	learn: 3.8689162	total: 1.53s	remaining: 266ms
852:	learn: 3.8605020	total: 1.53s	remaining: 264ms
853:	learn: 3.8600179	total: 1.53s	remaining: 262ms
854:	learn: 3.8546250	total: 1.53s	remaining: 260ms
855:	learn: 3.8514670	total: 1.54s	remaining: 259ms
856:	learn: 3.8476550	total: 1.54s	remaining: 257ms
857:	learn: 3.8462087	total: 1.54s	remaining: 255ms
858:	learn: 3.8440633	total: 1.54s	remaining: 253ms
859:	learn: 3.8386857	total: 1.54s	remaining: 251ms
860:	learn: 3.8337670	total: 1.55s	remaining: 250ms
861:	learn: 3.8271331	total: 1.55s	remaining: 248ms
862:	learn: 3.8228982	total: 1.55s	remaining: 246ms
863:	learn: 3.8201588	total: 1.55s	remaining: 244ms
864:	learn: 3.8192607	total: 1.55s	remaining: 243ms
865:	learn: 3.8136692	total: 1.56s	remaining: 241ms
866:	learn: 3.8091609	total: 1.56s	remaining: 239ms
867:	learn: 3.8042183	total: 1.56s	remaining: 237ms
868:	learn: 3.8036939	total: 1.56s	remaining: 236ms
869:	learn: 3.7987747	total: 1.56s	remaining: 234ms
870:	learn: 3.7948045	total: 1.57s	remaining: 232ms
871:	learn: 3.7900393	total: 1.57s	remaining: 230ms
872:	learn: 3.7894481	total: 1.57s	remaining: 228ms
873:	learn: 3.7838975	total: 1.57s	remaining: 227ms
874:	learn: 3.7749247	total: 1.57s	remaining: 225ms
875:	learn: 3.7701254	total: 1.57s	remaining: 223ms
876:	learn: 3.7638207	total: 1.58s	remaining: 221ms
877:	learn: 3.7524108	total: 1.58s	remaining: 219ms
878:	learn: 3.7464564	total: 1.58s	remaining: 218ms
879:	learn: 3.7367831	total: 1.58s	remaining: 216ms
880:	learn: 3.7361392	total: 1.58s	remaining: 214ms
881:	learn: 3.7337152	total: 1.59s	remaining: 212ms
882:	learn: 3.7302767	total: 1.59s	remaining: 210ms
883:	learn: 3.7245563	total: 1.59s	remaining: 209ms
884:	learn: 3.7218979	total: 1.59s	remaining: 207ms
885:	learn: 3.7186854	total: 1.59s	remaining: 205ms
886:	learn: 3.7135643	total: 1.59s	remaining: 203ms
887:	learn: 3.7089444	total: 1.6s	remaining: 201ms
888:	learn: 3.7085409	total: 1.6s	remaining: 200ms
889:	learn: 3.7059793	total: 1.6s	remaining: 198ms
890:	learn: 3.7030220	total: 1.6s	remaining: 196ms
891:	learn: 3.6972908	total: 1.6s	remaining: 194ms
892:	learn: 3.6932948	total: 1.6s	remaining: 192ms
893:	learn: 3.6876154	total: 1.61s	remaining: 191ms
894:	learn: 3.6789367	total: 1.61s	remaining: 189ms
895:	learn: 3.6696354	total: 1.61s	remaining: 187ms
896:	learn: 3.6654286	total: 1.61s	remaining: 185ms
897:	learn: 3.6617186	total: 1.61s	remaining: 183ms
898:	learn: 3.6576354	total: 1.62s	remaining: 182ms
899:	learn: 3.6542412	total: 1.62s	remaining: 180ms
900:	learn: 3.6497183	total: 1.62s	remaining: 178ms
901:	learn: 3.6428035	total: 1.62s	remaining: 176ms
902:	learn: 3.6396029	total: 1.62s	remaining: 174ms
903:	learn: 3.6346836	total: 1.63s	remaining: 173ms
904:	learn: 3.6318970	total: 1.63s	remaining: 171ms
905:	learn: 3.6299028	total: 1.63s	remaining: 169ms
906:	learn: 3.6251929	total: 1.63s	remaining: 167ms
907:	learn: 3.6212391	total: 1.63s	remaining: 165ms
908:	learn: 3.6144097	total: 1.63s	remaining: 164ms
909:	learn: 3.6074750	total: 1.64s	remaining: 162ms
910:	learn: 3.6038222	total: 1.64s	remaining: 160ms
911:	learn: 3.5985819	total: 1.64s	remaining: 158ms
912:	learn: 3.5949553	total: 1.64s	remaining: 156ms
913:	learn: 3.5914677	total: 1.64s	remaining: 155ms
914:	learn: 3.5879157	total: 1.64s	remaining: 153ms
915:	learn: 3.5835866	total: 1.65s	remaining: 151ms
916:	learn: 3.5799559	total: 1.65s	remaining: 149ms
917:	learn: 3.5766889	total: 1.65s	remaining: 147ms
918:	learn: 3.5741435	total: 1.65s	remaining: 146ms
919:	learn: 3.5685439	total: 1.65s	remaining: 144ms
920:	learn: 3.5593549	total: 1.66s	remaining: 142ms
921:	learn: 3.5543205	total: 1.66s	remaining: 140ms
922:	learn: 3.5431024	total: 1.66s	remaining: 138ms
923:	learn: 3.5378541	total: 1.66s	remaining: 137ms
924:	learn: 3.5313243	total: 1.66s	remaining: 135ms
925:	learn: 3.5269414	total: 1.66s	remaining: 133ms
926:	learn: 3.5234646	total: 1.67s	remaining: 131ms
927:	learn: 3.5207547	total: 1.67s	remaining: 129ms
928:	learn: 3.5156005	total: 1.67s	remaining: 128ms
929:	learn: 3.5107874	total: 1.67s	remaining: 126ms
930:	learn: 3.5106267	total: 1.67s	remaining: 124ms
931:	learn: 3.5077780	total: 1.68s	remaining: 122ms
932:	learn: 3.5064301	total: 1.68s	remaining: 120ms
933:	learn: 3.4993346	total: 1.68s	remaining: 119ms
934:	learn: 3.4986386	total: 1.68s	remaining: 117ms
935:	learn: 3.4980506	total: 1.68s	remaining: 115ms
936:	learn: 3.4940637	total: 1.68s	remaining: 113ms
937:	learn: 3.4889968	total: 1.69s	remaining: 111ms
938:	learn: 3.4862359	total: 1.69s	remaining: 110ms
939:	learn: 3.4829901	total: 1.69s	remaining: 108ms
940:	learn: 3.4801035	total: 1.69s	remaining: 106ms
941:	learn: 3.4753954	total: 1.69s	remaining: 104ms
942:	learn: 3.4698860	total: 1.69s	remaining: 102ms
943:	learn: 3.4623081	total: 1.7s	remaining: 101ms
944:	learn: 3.4606040	total: 1.7s	remaining: 98.8ms
945:	learn: 3.4567285	total: 1.7s	remaining: 97ms
946:	learn: 3.4532641	total: 1.7s	remaining: 95.2ms
947:	learn: 3.4482960	total: 1.7s	remaining: 93.4ms
948:	learn: 3.4378936	total: 1.71s	remaining: 91.6ms
949:	learn: 3.4311858	total: 1.71s	remaining: 89.8ms
950:	learn: 3.4272912	total: 1.71s	remaining: 88ms
951:	learn: 3.4233863	total: 1.71s	remaining: 86.2ms
952:	learn: 3.4210065	total: 1.71s	remaining: 84.4ms
953:	learn: 3.4177360	total: 1.71s	remaining: 82.6ms
954:	learn: 3.4161274	total: 1.72s	remaining: 80.8ms
955:	learn: 3.4125753	total: 1.72s	remaining: 79ms
956:	learn: 3.4117705	total: 1.72s	remaining: 77.2ms
957:	learn: 3.4058874	total: 1.72s	remaining: 75.4ms
958:	learn: 3.4021960	total: 1.72s	remaining: 73.6ms
959:	learn: 3.3996308	total: 1.72s	remaining: 71.8ms
960:	learn: 3.3948686	total: 1.73s	remaining: 70ms
961:	learn: 3.3923588	total: 1.73s	remaining: 68.3ms
962:	learn: 3.3913669	total: 1.73s	remaining: 66.5ms
963:	learn: 3.3850107	total: 1.73s	remaining: 64.7ms
964:	learn: 3.3771081	total: 1.73s	remaining: 62.9ms
965:	learn: 3.3700006	total: 1.74s	remaining: 61.1ms
966:	learn: 3.3660484	total: 1.74s	remaining: 59.3ms
967:	learn: 3.3614397	total: 1.74s	remaining: 57.5ms
968:	learn: 3.3586052	total: 1.74s	remaining: 55.7ms
969:	learn: 3.3554795	total: 1.74s	remaining: 53.9ms
970:	learn: 3.3496812	total: 1.74s	remaining: 52.1ms
971:	learn: 3.3428566	total: 1.75s	remaining: 50.3ms
972:	learn: 3.3369244	total: 1.75s	remaining: 48.5ms
973:	learn: 3.3332245	total: 1.75s	remaining: 46.7ms
974:	learn: 3.3268457	total: 1.75s	remaining: 44.9ms
975:	learn: 3.3188961	total: 1.75s	remaining: 43.1ms
976:	learn: 3.3153063	total: 1.75s	remaining: 41.3ms
977:	learn: 3.3100313	total: 1.76s	remaining: 39.5ms
978:	learn: 3.3002003	total: 1.76s	remaining: 37.7ms
979:	learn: 3.2951774	total: 1.76s	remaining: 35.9ms
980:	learn: 3.2945220	total: 1.76s	remaining: 34.1ms
981:	learn: 3.2905524	total: 1.76s	remaining: 32.3ms
982:	learn: 3.2868590	total: 1.76s	remaining: 30.5ms
983:	learn: 3.2816818	total: 1.77s	remaining: 28.7ms
984:	learn: 3.2697075	total: 1.77s	remaining: 26.9ms
985:	learn: 3.2646168	total: 1.77s	remaining: 25.1ms
986:	learn: 3.2581655	total: 1.77s	remaining: 23.4ms
987:	learn: 3.2531424	total: 1.77s	remaining: 21.6ms
988:	learn: 3.2481170	total: 1.78s	remaining: 19.8ms
989:	learn: 3.2437285	total: 1.78s	remaining: 18ms
990:	learn: 3.2398617	total: 1.78s	remaining: 16.2ms
991:	learn: 3.2352024	total: 1.78s	remaining: 14.4ms
992:	learn: 3.2302896	total: 1.78s	remaining: 12.6ms
993:	learn: 3.2263425	total: 1.79s	remaining: 10.8ms
994:	learn: 3.2233548	total: 1.79s	remaining: 8.99ms
995:	learn: 3.2212463	total: 1.79s	remaining: 7.19ms
996:	learn: 3.2157072	total: 1.79s	remaining: 5.39ms
997:	learn: 3.2098790	total: 1.79s	remaining: 3.59ms
998:	learn: 3.2035901	total: 1.79s	remaining: 1.8ms
999:	learn: 3.2022892	total: 1.8s	remaining: 0us
Learning rate set to 0.041897
0:	learn: 46.5614008	total: 2.11ms	remaining: 2.11s
1:	learn: 45.9539300	total: 3.87ms	remaining: 1.93s
2:	learn: 45.0777500	total: 5.55ms	remaining: 1.85s
3:	learn: 44.4261035	total: 7.22ms	remaining: 1.8s
4:	learn: 43.6652372	total: 8.94ms	remaining: 1.78s
5:	learn: 43.1279303	total: 10.6ms	remaining: 1.76s
6:	learn: 42.4225638	total: 12.4ms	remaining: 1.76s
7:	learn: 41.9047768	total: 14.4ms	remaining: 1.78s
8:	learn: 41.1420834	total: 16.3ms	remaining: 1.79s
9:	learn: 40.3308522	total: 18.1ms	remaining: 1.79s
10:	learn: 39.8286794	total: 19.9ms	remaining: 1.79s
11:	learn: 39.1611106	total: 21.6ms	remaining: 1.78s
12:	learn: 38.7656419	total: 23.4ms	remaining: 1.77s
13:	learn: 38.3714065	total: 25.1ms	remaining: 1.77s
14:	learn: 38.0273795	total: 26.9ms	remaining: 1.76s
15:	learn: 37.4083973	total: 28.6ms	remaining: 1.76s
16:	learn: 37.0149004	total: 30.6ms	remaining: 1.77s
17:	learn: 36.3206576	total: 32.4ms	remaining: 1.77s
18:	learn: 35.7263731	total: 34.3ms	remaining: 1.77s
19:	learn: 35.0399609	total: 36.1ms	remaining: 1.77s
20:	learn: 34.6977827	total: 37.8ms	remaining: 1.76s
21:	learn: 34.1236139	total: 39.5ms	remaining: 1.76s
22:	learn: 33.7582165	total: 41.2ms	remaining: 1.75s
23:	learn: 33.4784384	total: 42.9ms	remaining: 1.75s
24:	learn: 32.8799403	total: 44.6ms	remaining: 1.74s
25:	learn: 32.5401567	total: 46.5ms	remaining: 1.74s
26:	learn: 32.0437354	total: 48.3ms	remaining: 1.74s
27:	learn: 31.6246964	total: 50ms	remaining: 1.74s
28:	learn: 31.2227588	total: 52ms	remaining: 1.74s
29:	learn: 30.8909604	total: 53.8ms	remaining: 1.74s
30:	learn: 30.4504661	total: 55.7ms	remaining: 1.74s
31:	learn: 30.2809479	total: 57.4ms	remaining: 1.74s
32:	learn: 29.8150247	total: 59.2ms	remaining: 1.73s
33:	learn: 29.4839153	total: 60.9ms	remaining: 1.73s
34:	learn: 29.1899436	total: 62.9ms	remaining: 1.74s
35:	learn: 28.9760195	total: 64.8ms	remaining: 1.73s
36:	learn: 28.7214083	total: 66.6ms	remaining: 1.73s
37:	learn: 28.3710572	total: 68.3ms	remaining: 1.73s
38:	learn: 28.1131947	total: 70.1ms	remaining: 1.73s
39:	learn: 27.8173568	total: 71.9ms	remaining: 1.73s
40:	learn: 27.4909956	total: 73.6ms	remaining: 1.72s
41:	learn: 27.2490458	total: 75.3ms	remaining: 1.72s
42:	learn: 26.9054306	total: 77ms	remaining: 1.71s
43:	learn: 26.5320401	total: 79.1ms	remaining: 1.72s
44:	learn: 26.1476974	total: 80.9ms	remaining: 1.72s
45:	learn: 25.9034377	total: 82.7ms	remaining: 1.72s
46:	learn: 25.6396165	total: 84.4ms	remaining: 1.71s
47:	learn: 25.5333305	total: 86.2ms	remaining: 1.71s
48:	learn: 25.3125142	total: 87.9ms	remaining: 1.71s
49:	learn: 25.1515321	total: 89.6ms	remaining: 1.7s
50:	learn: 24.9520324	total: 91.3ms	remaining: 1.7s
51:	learn: 24.8574196	total: 92.9ms	remaining: 1.69s
52:	learn: 24.6347979	total: 94.9ms	remaining: 1.7s
53:	learn: 24.3939016	total: 96.7ms	remaining: 1.69s
54:	learn: 24.1824519	total: 98.5ms	remaining: 1.69s
55:	learn: 23.9870656	total: 101ms	remaining: 1.7s
56:	learn: 23.8757532	total: 102ms	remaining: 1.69s
57:	learn: 23.6329123	total: 104ms	remaining: 1.69s
58:	learn: 23.5488364	total: 106ms	remaining: 1.69s
59:	learn: 23.3547073	total: 107ms	remaining: 1.68s
60:	learn: 23.2829273	total: 109ms	remaining: 1.68s
61:	learn: 23.1501370	total: 111ms	remaining: 1.68s
62:	learn: 22.9243527	total: 113ms	remaining: 1.68s
63:	learn: 22.6766784	total: 115ms	remaining: 1.68s
64:	learn: 22.5103556	total: 117ms	remaining: 1.68s
65:	learn: 22.4050450	total: 119ms	remaining: 1.68s
66:	learn: 22.2285103	total: 120ms	remaining: 1.67s
67:	learn: 22.0694747	total: 122ms	remaining: 1.67s
68:	learn: 21.9945656	total: 124ms	remaining: 1.67s
69:	learn: 21.7989506	total: 125ms	remaining: 1.67s
70:	learn: 21.7421234	total: 127ms	remaining: 1.67s
71:	learn: 21.6079849	total: 129ms	remaining: 1.67s
72:	learn: 21.5225402	total: 131ms	remaining: 1.67s
73:	learn: 21.3455977	total: 133ms	remaining: 1.67s
74:	learn: 21.2604298	total: 135ms	remaining: 1.66s
75:	learn: 21.1423302	total: 137ms	remaining: 1.66s
76:	learn: 21.0740232	total: 138ms	remaining: 1.66s
77:	learn: 21.0081054	total: 140ms	remaining: 1.65s
78:	learn: 20.9281488	total: 142ms	remaining: 1.65s
79:	learn: 20.8746341	total: 144ms	remaining: 1.65s
80:	learn: 20.6964356	total: 146ms	remaining: 1.65s
81:	learn: 20.6215019	total: 147ms	remaining: 1.65s
82:	learn: 20.5092317	total: 149ms	remaining: 1.65s
83:	learn: 20.4372460	total: 151ms	remaining: 1.64s
84:	learn: 20.3727834	total: 152ms	remaining: 1.64s
85:	learn: 20.2991345	total: 154ms	remaining: 1.64s
86:	learn: 20.1587260	total: 156ms	remaining: 1.64s
87:	learn: 19.9814415	total: 158ms	remaining: 1.64s
88:	learn: 19.8198517	total: 160ms	remaining: 1.64s
89:	learn: 19.7432212	total: 162ms	remaining: 1.63s
90:	learn: 19.6656532	total: 163ms	remaining: 1.63s
91:	learn: 19.6245844	total: 165ms	remaining: 1.63s
92:	learn: 19.5509766	total: 167ms	remaining: 1.63s
93:	learn: 19.5202934	total: 169ms	remaining: 1.63s
94:	learn: 19.4264782	total: 171ms	remaining: 1.63s
95:	learn: 19.2594837	total: 172ms	remaining: 1.62s
96:	learn: 19.2112221	total: 174ms	remaining: 1.62s
97:	learn: 19.0919057	total: 176ms	remaining: 1.62s
98:	learn: 18.9656350	total: 178ms	remaining: 1.62s
99:	learn: 18.9158143	total: 180ms	remaining: 1.62s
100:	learn: 18.8237694	total: 181ms	remaining: 1.61s
101:	learn: 18.7184566	total: 183ms	remaining: 1.61s
102:	learn: 18.6656214	total: 185ms	remaining: 1.61s
103:	learn: 18.6244655	total: 187ms	remaining: 1.61s
104:	learn: 18.5846995	total: 189ms	remaining: 1.61s
105:	learn: 18.5351577	total: 191ms	remaining: 1.61s
106:	learn: 18.4351426	total: 193ms	remaining: 1.61s
107:	learn: 18.3789291	total: 195ms	remaining: 1.61s
108:	learn: 18.2867944	total: 197ms	remaining: 1.61s
109:	learn: 18.2242675	total: 198ms	remaining: 1.6s
110:	learn: 18.1729705	total: 200ms	remaining: 1.6s
111:	learn: 18.0799343	total: 202ms	remaining: 1.6s
112:	learn: 18.0096315	total: 204ms	remaining: 1.6s
113:	learn: 17.9473687	total: 206ms	remaining: 1.6s
114:	learn: 17.9246325	total: 207ms	remaining: 1.59s
115:	learn: 17.8761557	total: 209ms	remaining: 1.59s
116:	learn: 17.8078908	total: 211ms	remaining: 1.59s
117:	learn: 17.7606044	total: 212ms	remaining: 1.59s
118:	learn: 17.6858641	total: 214ms	remaining: 1.58s
119:	learn: 17.6210885	total: 216ms	remaining: 1.58s
120:	learn: 17.5314749	total: 218ms	remaining: 1.58s
121:	learn: 17.4380482	total: 219ms	remaining: 1.58s
122:	learn: 17.3566820	total: 222ms	remaining: 1.58s
123:	learn: 17.2199343	total: 223ms	remaining: 1.58s
124:	learn: 17.1378616	total: 225ms	remaining: 1.58s
125:	learn: 17.0934510	total: 227ms	remaining: 1.57s
126:	learn: 17.0253060	total: 229ms	remaining: 1.57s
127:	learn: 17.0113725	total: 230ms	remaining: 1.57s
128:	learn: 16.9914734	total: 232ms	remaining: 1.57s
129:	learn: 16.9122466	total: 234ms	remaining: 1.57s
130:	learn: 16.8865980	total: 236ms	remaining: 1.56s
131:	learn: 16.8276844	total: 238ms	remaining: 1.56s
132:	learn: 16.7359925	total: 239ms	remaining: 1.56s
133:	learn: 16.6500168	total: 241ms	remaining: 1.56s
134:	learn: 16.6089789	total: 243ms	remaining: 1.56s
135:	learn: 16.5672688	total: 245ms	remaining: 1.55s
136:	learn: 16.5399040	total: 246ms	remaining: 1.55s
137:	learn: 16.4895768	total: 248ms	remaining: 1.55s
138:	learn: 16.4466098	total: 250ms	remaining: 1.55s
139:	learn: 16.3956647	total: 252ms	remaining: 1.54s
140:	learn: 16.3529027	total: 254ms	remaining: 1.54s
141:	learn: 16.3062265	total: 256ms	remaining: 1.54s
142:	learn: 16.2731305	total: 257ms	remaining: 1.54s
143:	learn: 16.2250859	total: 259ms	remaining: 1.54s
144:	learn: 16.1899229	total: 261ms	remaining: 1.54s
145:	learn: 16.1324412	total: 263ms	remaining: 1.54s
146:	learn: 16.0781884	total: 264ms	remaining: 1.53s
147:	learn: 16.0410714	total: 266ms	remaining: 1.53s
148:	learn: 16.0079904	total: 268ms	remaining: 1.53s
149:	learn: 15.9646648	total: 270ms	remaining: 1.53s
150:	learn: 15.9008575	total: 272ms	remaining: 1.53s
151:	learn: 15.8666909	total: 274ms	remaining: 1.53s
152:	learn: 15.8241277	total: 276ms	remaining: 1.52s
153:	learn: 15.7703361	total: 277ms	remaining: 1.52s
154:	learn: 15.6813464	total: 279ms	remaining: 1.52s
155:	learn: 15.6408199	total: 281ms	remaining: 1.52s
156:	learn: 15.5931318	total: 283ms	remaining: 1.52s
157:	learn: 15.5580857	total: 285ms	remaining: 1.52s
158:	learn: 15.5028121	total: 287ms	remaining: 1.52s
159:	learn: 15.4185420	total: 289ms	remaining: 1.52s
160:	learn: 15.3477698	total: 291ms	remaining: 1.51s
161:	learn: 15.3076036	total: 292ms	remaining: 1.51s
162:	learn: 15.1876855	total: 294ms	remaining: 1.51s
163:	learn: 15.1326869	total: 296ms	remaining: 1.51s
164:	learn: 15.0949637	total: 298ms	remaining: 1.5s
165:	learn: 14.9855672	total: 299ms	remaining: 1.5s
166:	learn: 14.9665495	total: 301ms	remaining: 1.5s
167:	learn: 14.9227458	total: 303ms	remaining: 1.5s
168:	learn: 14.8349143	total: 305ms	remaining: 1.5s
169:	learn: 14.7905826	total: 306ms	remaining: 1.49s
170:	learn: 14.7377033	total: 308ms	remaining: 1.49s
171:	learn: 14.6669811	total: 310ms	remaining: 1.49s
172:	learn: 14.6301429	total: 312ms	remaining: 1.49s
173:	learn: 14.5862420	total: 314ms	remaining: 1.49s
174:	learn: 14.5590003	total: 315ms	remaining: 1.49s
175:	learn: 14.5233207	total: 317ms	remaining: 1.49s
176:	learn: 14.4420289	total: 319ms	remaining: 1.48s
177:	learn: 14.3818463	total: 321ms	remaining: 1.48s
178:	learn: 14.3231256	total: 323ms	remaining: 1.48s
179:	learn: 14.2799685	total: 327ms	remaining: 1.49s
180:	learn: 14.1860734	total: 330ms	remaining: 1.49s
181:	learn: 14.1555483	total: 333ms	remaining: 1.5s
182:	learn: 14.1283763	total: 336ms	remaining: 1.5s
183:	learn: 14.1000324	total: 339ms	remaining: 1.5s
184:	learn: 14.0841637	total: 341ms	remaining: 1.5s
185:	learn: 14.0637331	total: 344ms	remaining: 1.5s
186:	learn: 13.9826984	total: 346ms	remaining: 1.5s
187:	learn: 13.9592376	total: 347ms	remaining: 1.5s
188:	learn: 13.8587583	total: 350ms	remaining: 1.5s
189:	learn: 13.8237747	total: 353ms	remaining: 1.5s
190:	learn: 13.7774023	total: 355ms	remaining: 1.5s
191:	learn: 13.7400320	total: 357ms	remaining: 1.5s
192:	learn: 13.7159346	total: 358ms	remaining: 1.5s
193:	learn: 13.6670391	total: 360ms	remaining: 1.5s
194:	learn: 13.5937277	total: 362ms	remaining: 1.49s
195:	learn: 13.5527030	total: 364ms	remaining: 1.49s
196:	learn: 13.4712473	total: 365ms	remaining: 1.49s
197:	learn: 13.3866001	total: 367ms	remaining: 1.49s
198:	learn: 13.3477309	total: 369ms	remaining: 1.49s
199:	learn: 13.2771776	total: 371ms	remaining: 1.48s
200:	learn: 13.2503969	total: 372ms	remaining: 1.48s
201:	learn: 13.1916292	total: 374ms	remaining: 1.48s
202:	learn: 13.1191303	total: 376ms	remaining: 1.48s
203:	learn: 13.0685211	total: 377ms	remaining: 1.47s
204:	learn: 13.0450364	total: 379ms	remaining: 1.47s
205:	learn: 13.0005850	total: 381ms	remaining: 1.47s
206:	learn: 12.9422776	total: 383ms	remaining: 1.47s
207:	learn: 12.9021475	total: 384ms	remaining: 1.46s
208:	learn: 12.8263261	total: 386ms	remaining: 1.46s
209:	learn: 12.8010792	total: 388ms	remaining: 1.46s
210:	learn: 12.7543223	total: 390ms	remaining: 1.46s
211:	learn: 12.7414333	total: 391ms	remaining: 1.45s
212:	learn: 12.6813263	total: 393ms	remaining: 1.45s
213:	learn: 12.6326605	total: 395ms	remaining: 1.45s
214:	learn: 12.5917143	total: 397ms	remaining: 1.45s
215:	learn: 12.5579228	total: 398ms	remaining: 1.45s
216:	learn: 12.5215063	total: 400ms	remaining: 1.44s
217:	learn: 12.4500553	total: 402ms	remaining: 1.44s
218:	learn: 12.4257001	total: 403ms	remaining: 1.44s
219:	learn: 12.3812467	total: 405ms	remaining: 1.44s
220:	learn: 12.3551692	total: 407ms	remaining: 1.43s
221:	learn: 12.3398501	total: 408ms	remaining: 1.43s
222:	learn: 12.2844300	total: 410ms	remaining: 1.43s
223:	learn: 12.2321636	total: 412ms	remaining: 1.43s
224:	learn: 12.1974669	total: 414ms	remaining: 1.43s
225:	learn: 12.1445075	total: 416ms	remaining: 1.42s
226:	learn: 12.1069153	total: 417ms	remaining: 1.42s
227:	learn: 12.0540239	total: 419ms	remaining: 1.42s
228:	learn: 12.0396740	total: 421ms	remaining: 1.42s
229:	learn: 12.0176064	total: 422ms	remaining: 1.41s
230:	learn: 11.9951523	total: 424ms	remaining: 1.41s
231:	learn: 11.9452113	total: 426ms	remaining: 1.41s
232:	learn: 11.9113276	total: 428ms	remaining: 1.41s
233:	learn: 11.8649901	total: 430ms	remaining: 1.41s
234:	learn: 11.8319359	total: 432ms	remaining: 1.41s
235:	learn: 11.7897748	total: 433ms	remaining: 1.4s
236:	learn: 11.7764774	total: 435ms	remaining: 1.4s
237:	learn: 11.7417979	total: 437ms	remaining: 1.4s
238:	learn: 11.7126676	total: 438ms	remaining: 1.4s
239:	learn: 11.6825396	total: 440ms	remaining: 1.39s
240:	learn: 11.6383865	total: 442ms	remaining: 1.39s
241:	learn: 11.6137312	total: 444ms	remaining: 1.39s
242:	learn: 11.5862517	total: 446ms	remaining: 1.39s
243:	learn: 11.5578764	total: 447ms	remaining: 1.39s
244:	learn: 11.5128314	total: 449ms	remaining: 1.38s
245:	learn: 11.4797214	total: 451ms	remaining: 1.38s
246:	learn: 11.4573133	total: 453ms	remaining: 1.38s
247:	learn: 11.4246994	total: 454ms	remaining: 1.38s
248:	learn: 11.3950785	total: 456ms	remaining: 1.37s
249:	learn: 11.3543761	total: 458ms	remaining: 1.37s
250:	learn: 11.3130990	total: 460ms	remaining: 1.37s
251:	learn: 11.2942698	total: 461ms	remaining: 1.37s
252:	learn: 11.2684638	total: 463ms	remaining: 1.37s
253:	learn: 11.2455103	total: 465ms	remaining: 1.36s
254:	learn: 11.2083252	total: 467ms	remaining: 1.36s
255:	learn: 11.1848699	total: 468ms	remaining: 1.36s
256:	learn: 11.1645029	total: 470ms	remaining: 1.36s
257:	learn: 11.1221071	total: 472ms	remaining: 1.36s
258:	learn: 11.0949616	total: 474ms	remaining: 1.35s
259:	learn: 11.0607525	total: 476ms	remaining: 1.35s
260:	learn: 11.0316332	total: 478ms	remaining: 1.35s
261:	learn: 11.0117179	total: 479ms	remaining: 1.35s
262:	learn: 10.9943592	total: 481ms	remaining: 1.35s
263:	learn: 10.9900180	total: 483ms	remaining: 1.35s
264:	learn: 10.9740340	total: 485ms	remaining: 1.34s
265:	learn: 10.9549677	total: 486ms	remaining: 1.34s
266:	learn: 10.9215675	total: 488ms	remaining: 1.34s
267:	learn: 10.8780866	total: 490ms	remaining: 1.34s
268:	learn: 10.8580360	total: 492ms	remaining: 1.34s
269:	learn: 10.8224670	total: 493ms	remaining: 1.33s
270:	learn: 10.7793452	total: 495ms	remaining: 1.33s
271:	learn: 10.7564218	total: 497ms	remaining: 1.33s
272:	learn: 10.7409674	total: 498ms	remaining: 1.33s
273:	learn: 10.7168811	total: 500ms	remaining: 1.32s
274:	learn: 10.6839972	total: 502ms	remaining: 1.32s
275:	learn: 10.6567661	total: 503ms	remaining: 1.32s
276:	learn: 10.6321951	total: 506ms	remaining: 1.32s
277:	learn: 10.6141385	total: 508ms	remaining: 1.32s
278:	learn: 10.5740214	total: 509ms	remaining: 1.32s
279:	learn: 10.5572797	total: 511ms	remaining: 1.31s
280:	learn: 10.5304453	total: 513ms	remaining: 1.31s
281:	learn: 10.5020115	total: 514ms	remaining: 1.31s
282:	learn: 10.4769730	total: 516ms	remaining: 1.31s
283:	learn: 10.4612549	total: 518ms	remaining: 1.3s
284:	learn: 10.4435597	total: 519ms	remaining: 1.3s
285:	learn: 10.4147422	total: 521ms	remaining: 1.3s
286:	learn: 10.3852734	total: 523ms	remaining: 1.3s
287:	learn: 10.3618733	total: 525ms	remaining: 1.3s
288:	learn: 10.3420038	total: 527ms	remaining: 1.3s
289:	learn: 10.3110981	total: 529ms	remaining: 1.29s
290:	learn: 10.2606022	total: 530ms	remaining: 1.29s
291:	learn: 10.2420696	total: 532ms	remaining: 1.29s
292:	learn: 10.2280278	total: 534ms	remaining: 1.29s
293:	learn: 10.1874865	total: 536ms	remaining: 1.29s
294:	learn: 10.1625371	total: 538ms	remaining: 1.28s
295:	learn: 10.1462591	total: 540ms	remaining: 1.28s
296:	learn: 10.1217707	total: 542ms	remaining: 1.28s
297:	learn: 10.1004078	total: 543ms	remaining: 1.28s
298:	learn: 10.0750801	total: 545ms	remaining: 1.28s
299:	learn: 10.0669001	total: 547ms	remaining: 1.27s
300:	learn: 10.0408079	total: 548ms	remaining: 1.27s
301:	learn: 10.0296497	total: 550ms	remaining: 1.27s
302:	learn: 9.9937091	total: 552ms	remaining: 1.27s
303:	learn: 9.9750648	total: 554ms	remaining: 1.27s
304:	learn: 9.9496506	total: 556ms	remaining: 1.27s
305:	learn: 9.9263703	total: 557ms	remaining: 1.26s
306:	learn: 9.9085231	total: 559ms	remaining: 1.26s
307:	learn: 9.8881302	total: 561ms	remaining: 1.26s
308:	learn: 9.8735429	total: 563ms	remaining: 1.26s
309:	learn: 9.8563469	total: 564ms	remaining: 1.25s
310:	learn: 9.8202121	total: 566ms	remaining: 1.25s
311:	learn: 9.7959932	total: 568ms	remaining: 1.25s
312:	learn: 9.7875374	total: 569ms	remaining: 1.25s
313:	learn: 9.7674849	total: 571ms	remaining: 1.25s
314:	learn: 9.7493532	total: 573ms	remaining: 1.25s
315:	learn: 9.7260227	total: 575ms	remaining: 1.24s
316:	learn: 9.7148253	total: 577ms	remaining: 1.24s
317:	learn: 9.6930307	total: 578ms	remaining: 1.24s
318:	learn: 9.6755792	total: 580ms	remaining: 1.24s
319:	learn: 9.6564717	total: 582ms	remaining: 1.24s
320:	learn: 9.6370469	total: 584ms	remaining: 1.23s
321:	learn: 9.6238768	total: 585ms	remaining: 1.23s
322:	learn: 9.6163710	total: 587ms	remaining: 1.23s
323:	learn: 9.6009524	total: 589ms	remaining: 1.23s
324:	learn: 9.5735740	total: 591ms	remaining: 1.23s
325:	learn: 9.5421672	total: 592ms	remaining: 1.22s
326:	learn: 9.5208716	total: 594ms	remaining: 1.22s
327:	learn: 9.5100241	total: 596ms	remaining: 1.22s
328:	learn: 9.4957082	total: 598ms	remaining: 1.22s
329:	learn: 9.4739487	total: 599ms	remaining: 1.22s
330:	learn: 9.4537314	total: 601ms	remaining: 1.21s
331:	learn: 9.4357314	total: 603ms	remaining: 1.21s
332:	learn: 9.4168756	total: 605ms	remaining: 1.21s
333:	learn: 9.4017945	total: 606ms	remaining: 1.21s
334:	learn: 9.3900846	total: 608ms	remaining: 1.21s
335:	learn: 9.3796183	total: 610ms	remaining: 1.2s
336:	learn: 9.3506015	total: 611ms	remaining: 1.2s
337:	learn: 9.3291528	total: 613ms	remaining: 1.2s
338:	learn: 9.3082682	total: 615ms	remaining: 1.2s
339:	learn: 9.2851982	total: 617ms	remaining: 1.2s
340:	learn: 9.2472022	total: 619ms	remaining: 1.2s
341:	learn: 9.2304991	total: 621ms	remaining: 1.19s
342:	learn: 9.2158914	total: 622ms	remaining: 1.19s
343:	learn: 9.2073767	total: 624ms	remaining: 1.19s
344:	learn: 9.1751706	total: 626ms	remaining: 1.19s
345:	learn: 9.1577797	total: 627ms	remaining: 1.19s
346:	learn: 9.1456773	total: 629ms	remaining: 1.18s
347:	learn: 9.1345946	total: 631ms	remaining: 1.18s
348:	learn: 9.1216463	total: 632ms	remaining: 1.18s
349:	learn: 9.1049108	total: 634ms	remaining: 1.18s
350:	learn: 9.0831953	total: 636ms	remaining: 1.18s
351:	learn: 9.0597157	total: 638ms	remaining: 1.17s
352:	learn: 9.0446209	total: 640ms	remaining: 1.17s
353:	learn: 9.0296416	total: 641ms	remaining: 1.17s
354:	learn: 9.0054783	total: 643ms	remaining: 1.17s
355:	learn: 8.9895830	total: 645ms	remaining: 1.17s
356:	learn: 8.9759672	total: 647ms	remaining: 1.17s
357:	learn: 8.9729330	total: 649ms	remaining: 1.16s
358:	learn: 8.9620780	total: 651ms	remaining: 1.16s
359:	learn: 8.9463020	total: 653ms	remaining: 1.16s
360:	learn: 8.9298299	total: 655ms	remaining: 1.16s
361:	learn: 8.9180501	total: 657ms	remaining: 1.16s
362:	learn: 8.8848750	total: 659ms	remaining: 1.16s
363:	learn: 8.8797289	total: 660ms	remaining: 1.15s
364:	learn: 8.8639176	total: 662ms	remaining: 1.15s
365:	learn: 8.8540990	total: 664ms	remaining: 1.15s
366:	learn: 8.8360338	total: 666ms	remaining: 1.15s
367:	learn: 8.8214636	total: 668ms	remaining: 1.15s
368:	learn: 8.8104983	total: 670ms	remaining: 1.15s
369:	learn: 8.7904655	total: 672ms	remaining: 1.14s
370:	learn: 8.7869414	total: 674ms	remaining: 1.14s
371:	learn: 8.7671366	total: 676ms	remaining: 1.14s
372:	learn: 8.7524778	total: 677ms	remaining: 1.14s
373:	learn: 8.7284299	total: 679ms	remaining: 1.14s
374:	learn: 8.7118386	total: 681ms	remaining: 1.13s
375:	learn: 8.6919383	total: 682ms	remaining: 1.13s
376:	learn: 8.6816564	total: 684ms	remaining: 1.13s
377:	learn: 8.6628422	total: 686ms	remaining: 1.13s
378:	learn: 8.6556133	total: 688ms	remaining: 1.13s
379:	learn: 8.6490470	total: 689ms	remaining: 1.12s
380:	learn: 8.6256382	total: 691ms	remaining: 1.12s
381:	learn: 8.6126932	total: 693ms	remaining: 1.12s
382:	learn: 8.5970329	total: 694ms	remaining: 1.12s
383:	learn: 8.5773713	total: 696ms	remaining: 1.12s
384:	learn: 8.5585889	total: 698ms	remaining: 1.11s
385:	learn: 8.5499194	total: 700ms	remaining: 1.11s
386:	learn: 8.5355103	total: 702ms	remaining: 1.11s
387:	learn: 8.5154159	total: 704ms	remaining: 1.11s
388:	learn: 8.5030799	total: 705ms	remaining: 1.11s
389:	learn: 8.4914655	total: 707ms	remaining: 1.1s
390:	learn: 8.4767895	total: 709ms	remaining: 1.1s
391:	learn: 8.4634876	total: 710ms	remaining: 1.1s
392:	learn: 8.4499758	total: 712ms	remaining: 1.1s
393:	learn: 8.4447991	total: 714ms	remaining: 1.1s
394:	learn: 8.4239908	total: 716ms	remaining: 1.1s
395:	learn: 8.4052035	total: 718ms	remaining: 1.09s
396:	learn: 8.3905774	total: 720ms	remaining: 1.09s
397:	learn: 8.3800565	total: 721ms	remaining: 1.09s
398:	learn: 8.3675485	total: 723ms	remaining: 1.09s
399:	learn: 8.3521064	total: 725ms	remaining: 1.09s
400:	learn: 8.3472123	total: 726ms	remaining: 1.08s
401:	learn: 8.3345457	total: 728ms	remaining: 1.08s
402:	learn: 8.3139932	total: 730ms	remaining: 1.08s
403:	learn: 8.2907984	total: 732ms	remaining: 1.08s
404:	learn: 8.2559781	total: 734ms	remaining: 1.08s
405:	learn: 8.2393124	total: 735ms	remaining: 1.08s
406:	learn: 8.2164100	total: 737ms	remaining: 1.07s
407:	learn: 8.1930635	total: 739ms	remaining: 1.07s
408:	learn: 8.1776557	total: 740ms	remaining: 1.07s
409:	learn: 8.1632431	total: 742ms	remaining: 1.07s
410:	learn: 8.1381457	total: 744ms	remaining: 1.06s
411:	learn: 8.1273867	total: 746ms	remaining: 1.06s
412:	learn: 8.1094032	total: 748ms	remaining: 1.06s
413:	learn: 8.0823806	total: 750ms	remaining: 1.06s
414:	learn: 8.0726142	total: 751ms	remaining: 1.06s
415:	learn: 8.0601905	total: 753ms	remaining: 1.06s
416:	learn: 8.0449845	total: 755ms	remaining: 1.05s
417:	learn: 8.0332934	total: 756ms	remaining: 1.05s
418:	learn: 8.0058280	total: 758ms	remaining: 1.05s
419:	learn: 7.9941915	total: 760ms	remaining: 1.05s
420:	learn: 7.9782293	total: 762ms	remaining: 1.05s
421:	learn: 7.9653046	total: 763ms	remaining: 1.04s
422:	learn: 7.9466745	total: 765ms	remaining: 1.04s
423:	learn: 7.9207530	total: 767ms	remaining: 1.04s
424:	learn: 7.9039921	total: 768ms	remaining: 1.04s
425:	learn: 7.8936995	total: 770ms	remaining: 1.04s
426:	learn: 7.8775454	total: 772ms	remaining: 1.03s
427:	learn: 7.8653684	total: 774ms	remaining: 1.03s
428:	learn: 7.8591077	total: 776ms	remaining: 1.03s
429:	learn: 7.8522600	total: 778ms	remaining: 1.03s
430:	learn: 7.8399965	total: 779ms	remaining: 1.03s
431:	learn: 7.8276700	total: 781ms	remaining: 1.03s
432:	learn: 7.8082093	total: 783ms	remaining: 1.02s
433:	learn: 7.8073723	total: 785ms	remaining: 1.02s
434:	learn: 7.7733946	total: 787ms	remaining: 1.02s
435:	learn: 7.7568577	total: 789ms	remaining: 1.02s
436:	learn: 7.7440380	total: 791ms	remaining: 1.02s
437:	learn: 7.7310762	total: 793ms	remaining: 1.02s
438:	learn: 7.7188405	total: 795ms	remaining: 1.01s
439:	learn: 7.7060522	total: 796ms	remaining: 1.01s
440:	learn: 7.6896390	total: 798ms	remaining: 1.01s
441:	learn: 7.6684876	total: 800ms	remaining: 1.01s
442:	learn: 7.6566597	total: 802ms	remaining: 1.01s
443:	learn: 7.6379771	total: 803ms	remaining: 1.01s
444:	learn: 7.6351883	total: 805ms	remaining: 1s
445:	learn: 7.6342888	total: 806ms	remaining: 1s
446:	learn: 7.6228702	total: 808ms	remaining: 1000ms
447:	learn: 7.6150983	total: 810ms	remaining: 998ms
448:	learn: 7.6009838	total: 812ms	remaining: 996ms
449:	learn: 7.5800761	total: 814ms	remaining: 994ms
450:	learn: 7.5668818	total: 815ms	remaining: 993ms
451:	learn: 7.5543783	total: 817ms	remaining: 991ms
452:	learn: 7.5426797	total: 819ms	remaining: 989ms
453:	learn: 7.5266428	total: 820ms	remaining: 987ms
454:	learn: 7.5154211	total: 822ms	remaining: 985ms
455:	learn: 7.5018632	total: 824ms	remaining: 983ms
456:	learn: 7.4867116	total: 826ms	remaining: 981ms
457:	learn: 7.4680427	total: 828ms	remaining: 979ms
458:	learn: 7.4537083	total: 829ms	remaining: 977ms
459:	learn: 7.4423476	total: 831ms	remaining: 976ms
460:	learn: 7.4202665	total: 833ms	remaining: 974ms
461:	learn: 7.4072866	total: 834ms	remaining: 972ms
462:	learn: 7.3886770	total: 836ms	remaining: 970ms
463:	learn: 7.3756982	total: 838ms	remaining: 968ms
464:	learn: 7.3518500	total: 839ms	remaining: 966ms
465:	learn: 7.3371907	total: 841ms	remaining: 964ms
466:	learn: 7.3313909	total: 843ms	remaining: 962ms
467:	learn: 7.3181809	total: 845ms	remaining: 960ms
468:	learn: 7.3077673	total: 846ms	remaining: 958ms
469:	learn: 7.2978584	total: 848ms	remaining: 956ms
470:	learn: 7.2901378	total: 850ms	remaining: 955ms
471:	learn: 7.2888236	total: 851ms	remaining: 952ms
472:	learn: 7.2870101	total: 853ms	remaining: 951ms
473:	learn: 7.2790993	total: 855ms	remaining: 949ms
474:	learn: 7.2742868	total: 857ms	remaining: 947ms
475:	learn: 7.2669050	total: 859ms	remaining: 946ms
476:	learn: 7.2656805	total: 861ms	remaining: 944ms
477:	learn: 7.2474745	total: 863ms	remaining: 942ms
478:	learn: 7.2410644	total: 864ms	remaining: 940ms
479:	learn: 7.2280746	total: 866ms	remaining: 938ms
480:	learn: 7.2171994	total: 868ms	remaining: 937ms
481:	learn: 7.2062139	total: 870ms	remaining: 935ms
482:	learn: 7.1971632	total: 871ms	remaining: 933ms
483:	learn: 7.1778021	total: 873ms	remaining: 931ms
484:	learn: 7.1740561	total: 875ms	remaining: 929ms
485:	learn: 7.1583986	total: 877ms	remaining: 927ms
486:	learn: 7.1485565	total: 879ms	remaining: 926ms
487:	learn: 7.1187794	total: 881ms	remaining: 924ms
488:	learn: 7.1104071	total: 882ms	remaining: 922ms
489:	learn: 7.0923254	total: 884ms	remaining: 920ms
490:	learn: 7.0835336	total: 886ms	remaining: 919ms
491:	learn: 7.0736293	total: 888ms	remaining: 917ms
492:	learn: 7.0601888	total: 890ms	remaining: 915ms
493:	learn: 7.0462225	total: 892ms	remaining: 913ms
494:	learn: 7.0454050	total: 894ms	remaining: 912ms
495:	learn: 7.0381036	total: 895ms	remaining: 910ms
496:	learn: 7.0203544	total: 897ms	remaining: 908ms
497:	learn: 7.0063231	total: 899ms	remaining: 907ms
498:	learn: 6.9837714	total: 901ms	remaining: 905ms
499:	learn: 6.9711600	total: 903ms	remaining: 903ms
500:	learn: 6.9613643	total: 905ms	remaining: 901ms
501:	learn: 6.9488667	total: 907ms	remaining: 899ms
502:	learn: 6.9329005	total: 908ms	remaining: 898ms
503:	learn: 6.9253299	total: 910ms	remaining: 896ms
504:	learn: 6.9167175	total: 912ms	remaining: 894ms
505:	learn: 6.9062819	total: 914ms	remaining: 892ms
506:	learn: 6.8929600	total: 916ms	remaining: 891ms
507:	learn: 6.8797997	total: 918ms	remaining: 889ms
508:	learn: 6.8690292	total: 919ms	remaining: 887ms
509:	learn: 6.8569637	total: 921ms	remaining: 885ms
510:	learn: 6.8518216	total: 923ms	remaining: 883ms
511:	learn: 6.8394159	total: 925ms	remaining: 882ms
512:	learn: 6.8311964	total: 927ms	remaining: 880ms
513:	learn: 6.8222616	total: 929ms	remaining: 878ms
514:	learn: 6.8079626	total: 930ms	remaining: 876ms
515:	learn: 6.7922584	total: 932ms	remaining: 874ms
516:	learn: 6.7797741	total: 934ms	remaining: 873ms
517:	learn: 6.7727527	total: 936ms	remaining: 871ms
518:	learn: 6.7662685	total: 938ms	remaining: 869ms
519:	learn: 6.7561241	total: 939ms	remaining: 867ms
520:	learn: 6.7403473	total: 941ms	remaining: 866ms
521:	learn: 6.7341754	total: 943ms	remaining: 864ms
522:	learn: 6.7333740	total: 945ms	remaining: 862ms
523:	learn: 6.7323055	total: 947ms	remaining: 860ms
524:	learn: 6.7200636	total: 949ms	remaining: 859ms
525:	learn: 6.7107971	total: 951ms	remaining: 857ms
526:	learn: 6.7061047	total: 953ms	remaining: 856ms
527:	learn: 6.7013895	total: 955ms	remaining: 854ms
528:	learn: 6.6892082	total: 957ms	remaining: 852ms
529:	learn: 6.6827813	total: 959ms	remaining: 851ms
530:	learn: 6.6686564	total: 961ms	remaining: 849ms
531:	learn: 6.6565122	total: 962ms	remaining: 847ms
532:	learn: 6.6466349	total: 964ms	remaining: 845ms
533:	learn: 6.6391319	total: 966ms	remaining: 843ms
534:	learn: 6.6217322	total: 968ms	remaining: 841ms
535:	learn: 6.6103609	total: 970ms	remaining: 839ms
536:	learn: 6.6017249	total: 971ms	remaining: 837ms
537:	learn: 6.5952387	total: 973ms	remaining: 836ms
538:	learn: 6.5845301	total: 975ms	remaining: 834ms
539:	learn: 6.5763500	total: 977ms	remaining: 832ms
540:	learn: 6.5705893	total: 978ms	remaining: 830ms
541:	learn: 6.5571608	total: 980ms	remaining: 828ms
542:	learn: 6.5447990	total: 982ms	remaining: 827ms
543:	learn: 6.5368143	total: 984ms	remaining: 825ms
544:	learn: 6.5212732	total: 986ms	remaining: 823ms
545:	learn: 6.5087842	total: 988ms	remaining: 821ms
546:	learn: 6.4938688	total: 990ms	remaining: 820ms
547:	learn: 6.4838522	total: 991ms	remaining: 818ms
548:	learn: 6.4709760	total: 993ms	remaining: 816ms
549:	learn: 6.4531954	total: 995ms	remaining: 814ms
550:	learn: 6.4464568	total: 997ms	remaining: 812ms
551:	learn: 6.4297759	total: 998ms	remaining: 810ms
552:	learn: 6.4285921	total: 1s	remaining: 809ms
553:	learn: 6.4142163	total: 1s	remaining: 807ms
554:	learn: 6.4064453	total: 1s	remaining: 805ms
555:	learn: 6.3865988	total: 1.01s	remaining: 803ms
556:	learn: 6.3786835	total: 1.01s	remaining: 802ms
557:	learn: 6.3722518	total: 1.01s	remaining: 800ms
558:	learn: 6.3640955	total: 1.01s	remaining: 798ms
559:	learn: 6.3536366	total: 1.01s	remaining: 796ms
560:	learn: 6.3491172	total: 1.01s	remaining: 794ms
561:	learn: 6.3443591	total: 1.02s	remaining: 793ms
562:	learn: 6.3268060	total: 1.02s	remaining: 791ms
563:	learn: 6.3178098	total: 1.02s	remaining: 789ms
564:	learn: 6.3079413	total: 1.02s	remaining: 788ms
565:	learn: 6.2966159	total: 1.02s	remaining: 786ms
566:	learn: 6.2833918	total: 1.03s	remaining: 784ms
567:	learn: 6.2741393	total: 1.03s	remaining: 782ms
568:	learn: 6.2629317	total: 1.03s	remaining: 780ms
569:	learn: 6.2554062	total: 1.03s	remaining: 779ms
570:	learn: 6.2428526	total: 1.03s	remaining: 777ms
571:	learn: 6.2314165	total: 1.03s	remaining: 775ms
572:	learn: 6.2180504	total: 1.04s	remaining: 773ms
573:	learn: 6.2070530	total: 1.04s	remaining: 772ms
574:	learn: 6.2004263	total: 1.04s	remaining: 770ms
575:	learn: 6.1894404	total: 1.04s	remaining: 768ms
576:	learn: 6.1819306	total: 1.04s	remaining: 766ms
577:	learn: 6.1729190	total: 1.05s	remaining: 764ms
578:	learn: 6.1645888	total: 1.05s	remaining: 763ms
579:	learn: 6.1576825	total: 1.05s	remaining: 761ms
580:	learn: 6.1487055	total: 1.05s	remaining: 760ms
581:	learn: 6.1412738	total: 1.05s	remaining: 758ms
582:	learn: 6.1348221	total: 1.06s	remaining: 756ms
583:	learn: 6.1242368	total: 1.06s	remaining: 754ms
584:	learn: 6.1124541	total: 1.06s	remaining: 752ms
585:	learn: 6.1001137	total: 1.06s	remaining: 751ms
586:	learn: 6.0925893	total: 1.06s	remaining: 749ms
587:	learn: 6.0814728	total: 1.07s	remaining: 747ms
588:	learn: 6.0731652	total: 1.07s	remaining: 746ms
589:	learn: 6.0586018	total: 1.07s	remaining: 744ms
590:	learn: 6.0520472	total: 1.07s	remaining: 742ms
591:	learn: 6.0391329	total: 1.07s	remaining: 741ms
592:	learn: 6.0342064	total: 1.08s	remaining: 740ms
593:	learn: 6.0308977	total: 1.08s	remaining: 739ms
594:	learn: 6.0220258	total: 1.08s	remaining: 737ms
595:	learn: 6.0129156	total: 1.08s	remaining: 735ms
596:	learn: 6.0023297	total: 1.08s	remaining: 733ms
597:	learn: 5.9942178	total: 1.09s	remaining: 731ms
598:	learn: 5.9854499	total: 1.09s	remaining: 729ms
599:	learn: 5.9766754	total: 1.09s	remaining: 727ms
600:	learn: 5.9762399	total: 1.09s	remaining: 726ms
601:	learn: 5.9676428	total: 1.09s	remaining: 724ms
602:	learn: 5.9671457	total: 1.1s	remaining: 722ms
603:	learn: 5.9523257	total: 1.1s	remaining: 721ms
604:	learn: 5.9457880	total: 1.1s	remaining: 719ms
605:	learn: 5.9349501	total: 1.1s	remaining: 717ms
606:	learn: 5.9219377	total: 1.1s	remaining: 715ms
607:	learn: 5.9143248	total: 1.11s	remaining: 713ms
608:	learn: 5.9064934	total: 1.11s	remaining: 711ms
609:	learn: 5.8924509	total: 1.11s	remaining: 710ms
610:	learn: 5.8816642	total: 1.11s	remaining: 708ms
611:	learn: 5.8688352	total: 1.11s	remaining: 706ms
612:	learn: 5.8640435	total: 1.11s	remaining: 704ms
613:	learn: 5.8537522	total: 1.12s	remaining: 702ms
614:	learn: 5.8481971	total: 1.12s	remaining: 700ms
615:	learn: 5.8440190	total: 1.12s	remaining: 699ms
616:	learn: 5.8338471	total: 1.12s	remaining: 697ms
617:	learn: 5.8313882	total: 1.12s	remaining: 695ms
618:	learn: 5.8300641	total: 1.13s	remaining: 693ms
619:	learn: 5.8232530	total: 1.13s	remaining: 691ms
620:	learn: 5.8115431	total: 1.13s	remaining: 689ms
621:	learn: 5.8042174	total: 1.13s	remaining: 688ms
622:	learn: 5.7953056	total: 1.13s	remaining: 686ms
623:	learn: 5.7849897	total: 1.13s	remaining: 684ms
624:	learn: 5.7802348	total: 1.14s	remaining: 682ms
625:	learn: 5.7703719	total: 1.14s	remaining: 680ms
626:	learn: 5.7626049	total: 1.14s	remaining: 678ms
627:	learn: 5.7462764	total: 1.14s	remaining: 676ms
628:	learn: 5.7401771	total: 1.14s	remaining: 674ms
629:	learn: 5.7313995	total: 1.15s	remaining: 673ms
630:	learn: 5.7254505	total: 1.15s	remaining: 671ms
631:	learn: 5.7167641	total: 1.15s	remaining: 669ms
632:	learn: 5.7156540	total: 1.15s	remaining: 667ms
633:	learn: 5.7055328	total: 1.15s	remaining: 665ms
634:	learn: 5.6957197	total: 1.15s	remaining: 664ms
635:	learn: 5.6861733	total: 1.16s	remaining: 662ms
636:	learn: 5.6750851	total: 1.16s	remaining: 660ms
637:	learn: 5.6692293	total: 1.16s	remaining: 658ms
638:	learn: 5.6641228	total: 1.16s	remaining: 657ms
639:	learn: 5.6547110	total: 1.16s	remaining: 655ms
640:	learn: 5.6420758	total: 1.17s	remaining: 653ms
641:	learn: 5.6356629	total: 1.17s	remaining: 651ms
642:	learn: 5.6265790	total: 1.17s	remaining: 650ms
643:	learn: 5.6199401	total: 1.17s	remaining: 648ms
644:	learn: 5.6141982	total: 1.17s	remaining: 646ms
645:	learn: 5.6137575	total: 1.18s	remaining: 644ms
646:	learn: 5.6007748	total: 1.18s	remaining: 642ms
647:	learn: 5.5985810	total: 1.18s	remaining: 641ms
648:	learn: 5.5900323	total: 1.18s	remaining: 639ms
649:	learn: 5.5801373	total: 1.18s	remaining: 637ms
650:	learn: 5.5714357	total: 1.18s	remaining: 635ms
651:	learn: 5.5636028	total: 1.19s	remaining: 633ms
652:	learn: 5.5540927	total: 1.19s	remaining: 631ms
653:	learn: 5.5403603	total: 1.19s	remaining: 630ms
654:	learn: 5.5329487	total: 1.19s	remaining: 628ms
655:	learn: 5.5229663	total: 1.19s	remaining: 626ms
656:	learn: 5.5162621	total: 1.2s	remaining: 624ms
657:	learn: 5.5081184	total: 1.2s	remaining: 622ms
658:	learn: 5.5024479	total: 1.2s	remaining: 620ms
659:	learn: 5.4980473	total: 1.2s	remaining: 619ms
660:	learn: 5.4884939	total: 1.2s	remaining: 617ms
661:	learn: 5.4876896	total: 1.2s	remaining: 615ms
662:	learn: 5.4871283	total: 1.21s	remaining: 613ms
663:	learn: 5.4808734	total: 1.21s	remaining: 611ms
664:	learn: 5.4680561	total: 1.21s	remaining: 609ms
665:	learn: 5.4577088	total: 1.21s	remaining: 608ms
666:	learn: 5.4530790	total: 1.21s	remaining: 606ms
667:	learn: 5.4453345	total: 1.22s	remaining: 604ms
668:	learn: 5.4442701	total: 1.22s	remaining: 602ms
669:	learn: 5.4345485	total: 1.22s	remaining: 600ms
670:	learn: 5.4252968	total: 1.22s	remaining: 598ms
671:	learn: 5.4191861	total: 1.22s	remaining: 597ms
672:	learn: 5.4188292	total: 1.22s	remaining: 595ms
673:	learn: 5.4116880	total: 1.23s	remaining: 593ms
674:	learn: 5.4054929	total: 1.23s	remaining: 591ms
675:	learn: 5.3920424	total: 1.23s	remaining: 589ms
676:	learn: 5.3828415	total: 1.23s	remaining: 588ms
677:	learn: 5.3745638	total: 1.23s	remaining: 586ms
678:	learn: 5.3649201	total: 1.23s	remaining: 584ms
679:	learn: 5.3569090	total: 1.24s	remaining: 582ms
680:	learn: 5.3494756	total: 1.24s	remaining: 580ms
681:	learn: 5.3398628	total: 1.24s	remaining: 578ms
682:	learn: 5.3307406	total: 1.24s	remaining: 577ms
683:	learn: 5.3233699	total: 1.24s	remaining: 575ms
684:	learn: 5.3209791	total: 1.25s	remaining: 573ms
685:	learn: 5.3119398	total: 1.25s	remaining: 571ms
686:	learn: 5.3026314	total: 1.25s	remaining: 569ms
687:	learn: 5.2981215	total: 1.25s	remaining: 567ms
688:	learn: 5.2885069	total: 1.25s	remaining: 565ms
689:	learn: 5.2881276	total: 1.25s	remaining: 564ms
690:	learn: 5.2797485	total: 1.26s	remaining: 562ms
691:	learn: 5.2721432	total: 1.26s	remaining: 560ms
692:	learn: 5.2662090	total: 1.26s	remaining: 558ms
693:	learn: 5.2597538	total: 1.26s	remaining: 556ms
694:	learn: 5.2589778	total: 1.26s	remaining: 554ms
695:	learn: 5.2485906	total: 1.26s	remaining: 553ms
696:	learn: 5.2429712	total: 1.27s	remaining: 551ms
697:	learn: 5.2318517	total: 1.27s	remaining: 549ms
698:	learn: 5.2249583	total: 1.27s	remaining: 547ms
699:	learn: 5.2186915	total: 1.27s	remaining: 545ms
700:	learn: 5.2137740	total: 1.27s	remaining: 543ms
701:	learn: 5.2040403	total: 1.28s	remaining: 542ms
702:	learn: 5.1975700	total: 1.28s	remaining: 540ms
703:	learn: 5.1900247	total: 1.28s	remaining: 538ms
704:	learn: 5.1852228	total: 1.28s	remaining: 536ms
705:	learn: 5.1848987	total: 1.28s	remaining: 534ms
706:	learn: 5.1814497	total: 1.28s	remaining: 532ms
707:	learn: 5.1744365	total: 1.29s	remaining: 531ms
708:	learn: 5.1635754	total: 1.29s	remaining: 529ms
709:	learn: 5.1543677	total: 1.29s	remaining: 527ms
710:	learn: 5.1477153	total: 1.29s	remaining: 525ms
711:	learn: 5.1366148	total: 1.29s	remaining: 523ms
712:	learn: 5.1278022	total: 1.29s	remaining: 522ms
713:	learn: 5.1249865	total: 1.3s	remaining: 520ms
714:	learn: 5.1151729	total: 1.3s	remaining: 518ms
715:	learn: 5.1062598	total: 1.3s	remaining: 516ms
716:	learn: 5.1004670	total: 1.3s	remaining: 514ms
717:	learn: 5.0924881	total: 1.3s	remaining: 512ms
718:	learn: 5.0854827	total: 1.31s	remaining: 511ms
719:	learn: 5.0797629	total: 1.31s	remaining: 509ms
720:	learn: 5.0695478	total: 1.31s	remaining: 507ms
721:	learn: 5.0640373	total: 1.31s	remaining: 505ms
722:	learn: 5.0555910	total: 1.31s	remaining: 503ms
723:	learn: 5.0478863	total: 1.31s	remaining: 501ms
724:	learn: 5.0476074	total: 1.32s	remaining: 500ms
725:	learn: 5.0403112	total: 1.32s	remaining: 498ms
726:	learn: 5.0288849	total: 1.32s	remaining: 496ms
727:	learn: 5.0194817	total: 1.32s	remaining: 494ms
728:	learn: 5.0097545	total: 1.32s	remaining: 492ms
729:	learn: 5.0041433	total: 1.32s	remaining: 490ms
730:	learn: 4.9962611	total: 1.33s	remaining: 488ms
731:	learn: 4.9873204	total: 1.33s	remaining: 487ms
732:	learn: 4.9805148	total: 1.33s	remaining: 485ms
733:	learn: 4.9777502	total: 1.33s	remaining: 483ms
734:	learn: 4.9684520	total: 1.33s	remaining: 481ms
735:	learn: 4.9612318	total: 1.34s	remaining: 479ms
736:	learn: 4.9535556	total: 1.34s	remaining: 478ms
737:	learn: 4.9462176	total: 1.34s	remaining: 476ms
738:	learn: 4.9386486	total: 1.34s	remaining: 474ms
739:	learn: 4.9309292	total: 1.34s	remaining: 472ms
740:	learn: 4.9231418	total: 1.34s	remaining: 470ms
741:	learn: 4.9190075	total: 1.35s	remaining: 468ms
742:	learn: 4.9145486	total: 1.35s	remaining: 466ms
743:	learn: 4.9065307	total: 1.35s	remaining: 465ms
744:	learn: 4.8970114	total: 1.35s	remaining: 463ms
745:	learn: 4.8894004	total: 1.35s	remaining: 461ms
746:	learn: 4.8891261	total: 1.35s	remaining: 459ms
747:	learn: 4.8781320	total: 1.36s	remaining: 457ms
748:	learn: 4.8679377	total: 1.36s	remaining: 455ms
749:	learn: 4.8612072	total: 1.36s	remaining: 453ms
750:	learn: 4.8507348	total: 1.36s	remaining: 452ms
751:	learn: 4.8441014	total: 1.36s	remaining: 450ms
752:	learn: 4.8303151	total: 1.36s	remaining: 448ms
753:	learn: 4.8248628	total: 1.37s	remaining: 446ms
754:	learn: 4.8222053	total: 1.37s	remaining: 444ms
755:	learn: 4.8159446	total: 1.37s	remaining: 442ms
756:	learn: 4.8085559	total: 1.37s	remaining: 441ms
757:	learn: 4.8018736	total: 1.37s	remaining: 439ms
758:	learn: 4.7921078	total: 1.38s	remaining: 437ms
759:	learn: 4.7916722	total: 1.38s	remaining: 435ms
760:	learn: 4.7807273	total: 1.38s	remaining: 433ms
761:	learn: 4.7714828	total: 1.38s	remaining: 431ms
762:	learn: 4.7620952	total: 1.38s	remaining: 430ms
763:	learn: 4.7572943	total: 1.38s	remaining: 428ms
764:	learn: 4.7513767	total: 1.39s	remaining: 426ms
765:	learn: 4.7461340	total: 1.39s	remaining: 424ms
766:	learn: 4.7378735	total: 1.39s	remaining: 422ms
767:	learn: 4.7323802	total: 1.39s	remaining: 420ms
768:	learn: 4.7231066	total: 1.39s	remaining: 418ms
769:	learn: 4.7151211	total: 1.39s	remaining: 417ms
770:	learn: 4.7082409	total: 1.4s	remaining: 415ms
771:	learn: 4.7006119	total: 1.4s	remaining: 413ms
772:	learn: 4.6986254	total: 1.4s	remaining: 411ms
773:	learn: 4.6878628	total: 1.4s	remaining: 409ms
774:	learn: 4.6791927	total: 1.4s	remaining: 408ms
775:	learn: 4.6727471	total: 1.41s	remaining: 406ms
776:	learn: 4.6680133	total: 1.41s	remaining: 404ms
777:	learn: 4.6595648	total: 1.41s	remaining: 402ms
778:	learn: 4.6540111	total: 1.41s	remaining: 400ms
779:	learn: 4.6438458	total: 1.41s	remaining: 398ms
780:	learn: 4.6371105	total: 1.41s	remaining: 397ms
781:	learn: 4.6279327	total: 1.42s	remaining: 395ms
782:	learn: 4.6188819	total: 1.42s	remaining: 393ms
783:	learn: 4.6133197	total: 1.42s	remaining: 391ms
784:	learn: 4.6045382	total: 1.42s	remaining: 389ms
785:	learn: 4.5967594	total: 1.42s	remaining: 387ms
786:	learn: 4.5901492	total: 1.42s	remaining: 386ms
787:	learn: 4.5843551	total: 1.43s	remaining: 384ms
788:	learn: 4.5820290	total: 1.43s	remaining: 382ms
789:	learn: 4.5766823	total: 1.43s	remaining: 380ms
790:	learn: 4.5677667	total: 1.43s	remaining: 378ms
791:	learn: 4.5615921	total: 1.43s	remaining: 376ms
792:	learn: 4.5561890	total: 1.44s	remaining: 375ms
793:	learn: 4.5438644	total: 1.44s	remaining: 373ms
794:	learn: 4.5366684	total: 1.44s	remaining: 371ms
795:	learn: 4.5307637	total: 1.44s	remaining: 369ms
796:	learn: 4.5252265	total: 1.44s	remaining: 367ms
797:	learn: 4.5191401	total: 1.44s	remaining: 366ms
798:	learn: 4.5105738	total: 1.45s	remaining: 364ms
799:	learn: 4.5060849	total: 1.45s	remaining: 362ms
800:	learn: 4.4943891	total: 1.45s	remaining: 360ms
801:	learn: 4.4854786	total: 1.45s	remaining: 358ms
802:	learn: 4.4801601	total: 1.45s	remaining: 356ms
803:	learn: 4.4675487	total: 1.45s	remaining: 355ms
804:	learn: 4.4588082	total: 1.46s	remaining: 353ms
805:	learn: 4.4491978	total: 1.46s	remaining: 351ms
806:	learn: 4.4408929	total: 1.46s	remaining: 349ms
807:	learn: 4.4347267	total: 1.46s	remaining: 347ms
808:	learn: 4.4277857	total: 1.46s	remaining: 345ms
809:	learn: 4.4192931	total: 1.47s	remaining: 344ms
810:	learn: 4.4091016	total: 1.47s	remaining: 342ms
811:	learn: 4.4020159	total: 1.47s	remaining: 340ms
812:	learn: 4.3902566	total: 1.47s	remaining: 338ms
813:	learn: 4.3841173	total: 1.47s	remaining: 336ms
814:	learn: 4.3733712	total: 1.47s	remaining: 335ms
815:	learn: 4.3649611	total: 1.48s	remaining: 333ms
816:	learn: 4.3579401	total: 1.48s	remaining: 331ms
817:	learn: 4.3489466	total: 1.48s	remaining: 329ms
818:	learn: 4.3448569	total: 1.48s	remaining: 327ms
819:	learn: 4.3406014	total: 1.48s	remaining: 326ms
820:	learn: 4.3351662	total: 1.48s	remaining: 324ms
821:	learn: 4.3298009	total: 1.49s	remaining: 322ms
822:	learn: 4.3255946	total: 1.49s	remaining: 320ms
823:	learn: 4.3151874	total: 1.49s	remaining: 318ms
824:	learn: 4.3061830	total: 1.49s	remaining: 316ms
825:	learn: 4.2956964	total: 1.49s	remaining: 315ms
826:	learn: 4.2822941	total: 1.5s	remaining: 313ms
827:	learn: 4.2762361	total: 1.5s	remaining: 311ms
828:	learn: 4.2725383	total: 1.5s	remaining: 309ms
829:	learn: 4.2624258	total: 1.5s	remaining: 308ms
830:	learn: 4.2589371	total: 1.5s	remaining: 306ms
831:	learn: 4.2503161	total: 1.5s	remaining: 304ms
832:	learn: 4.2387513	total: 1.51s	remaining: 302ms
833:	learn: 4.2325908	total: 1.51s	remaining: 300ms
834:	learn: 4.2311446	total: 1.51s	remaining: 298ms
835:	learn: 4.2229386	total: 1.51s	remaining: 297ms
836:	learn: 4.2182464	total: 1.51s	remaining: 295ms
837:	learn: 4.2145085	total: 1.51s	remaining: 293ms
838:	learn: 4.2091548	total: 1.52s	remaining: 291ms
839:	learn: 4.2019039	total: 1.52s	remaining: 289ms
840:	learn: 4.1942398	total: 1.52s	remaining: 288ms
841:	learn: 4.1880488	total: 1.52s	remaining: 286ms
842:	learn: 4.1818164	total: 1.52s	remaining: 284ms
843:	learn: 4.1765107	total: 1.53s	remaining: 282ms
844:	learn: 4.1737157	total: 1.53s	remaining: 280ms
845:	learn: 4.1664395	total: 1.53s	remaining: 279ms
846:	learn: 4.1613932	total: 1.53s	remaining: 277ms
847:	learn: 4.1565676	total: 1.53s	remaining: 275ms
848:	learn: 4.1503651	total: 1.53s	remaining: 273ms
849:	learn: 4.1477101	total: 1.54s	remaining: 271ms
850:	learn: 4.1387103	total: 1.54s	remaining: 269ms
851:	learn: 4.1304565	total: 1.54s	remaining: 268ms
852:	learn: 4.1243485	total: 1.54s	remaining: 266ms
853:	learn: 4.1177428	total: 1.54s	remaining: 264ms
854:	learn: 4.1092832	total: 1.55s	remaining: 262ms
855:	learn: 4.1024729	total: 1.55s	remaining: 260ms
856:	learn: 4.0925818	total: 1.55s	remaining: 259ms
857:	learn: 4.0853117	total: 1.55s	remaining: 257ms
858:	learn: 4.0817994	total: 1.55s	remaining: 255ms
859:	learn: 4.0774632	total: 1.55s	remaining: 253ms
860:	learn: 4.0702634	total: 1.56s	remaining: 251ms
861:	learn: 4.0652510	total: 1.56s	remaining: 250ms
862:	learn: 4.0630211	total: 1.56s	remaining: 248ms
863:	learn: 4.0594186	total: 1.56s	remaining: 246ms
864:	learn: 4.0529928	total: 1.56s	remaining: 244ms
865:	learn: 4.0495672	total: 1.57s	remaining: 242ms
866:	learn: 4.0493578	total: 1.57s	remaining: 241ms
867:	learn: 4.0490486	total: 1.57s	remaining: 239ms
868:	learn: 4.0434115	total: 1.57s	remaining: 237ms
869:	learn: 4.0375650	total: 1.57s	remaining: 235ms
870:	learn: 4.0308591	total: 1.57s	remaining: 233ms
871:	learn: 4.0265523	total: 1.58s	remaining: 231ms
872:	learn: 4.0199562	total: 1.58s	remaining: 230ms
873:	learn: 4.0117722	total: 1.58s	remaining: 228ms
874:	learn: 4.0073729	total: 1.58s	remaining: 226ms
875:	learn: 4.0002671	total: 1.58s	remaining: 224ms
876:	learn: 3.9959607	total: 1.58s	remaining: 222ms
877:	learn: 3.9895757	total: 1.59s	remaining: 221ms
878:	learn: 3.9812825	total: 1.59s	remaining: 219ms
879:	learn: 3.9743850	total: 1.59s	remaining: 217ms
880:	learn: 3.9657668	total: 1.59s	remaining: 215ms
881:	learn: 3.9580849	total: 1.59s	remaining: 213ms
882:	learn: 3.9549162	total: 1.6s	remaining: 212ms
883:	learn: 3.9534648	total: 1.6s	remaining: 210ms
884:	learn: 3.9485818	total: 1.6s	remaining: 208ms
885:	learn: 3.9417114	total: 1.6s	remaining: 206ms
886:	learn: 3.9317594	total: 1.6s	remaining: 204ms
887:	learn: 3.9269360	total: 1.61s	remaining: 203ms
888:	learn: 3.9233843	total: 1.61s	remaining: 201ms
889:	learn: 3.9232252	total: 1.61s	remaining: 199ms
890:	learn: 3.9201067	total: 1.61s	remaining: 197ms
891:	learn: 3.9144617	total: 1.61s	remaining: 196ms
892:	learn: 3.9089328	total: 1.62s	remaining: 194ms
893:	learn: 3.9033311	total: 1.62s	remaining: 192ms
894:	learn: 3.9014678	total: 1.62s	remaining: 190ms
895:	learn: 3.8962600	total: 1.62s	remaining: 188ms
896:	learn: 3.8892762	total: 1.62s	remaining: 186ms
897:	learn: 3.8817328	total: 1.63s	remaining: 185ms
898:	learn: 3.8767551	total: 1.63s	remaining: 183ms
899:	learn: 3.8708095	total: 1.63s	remaining: 181ms
900:	learn: 3.8666657	total: 1.63s	remaining: 179ms
901:	learn: 3.8572466	total: 1.63s	remaining: 177ms
902:	learn: 3.8509043	total: 1.63s	remaining: 176ms
903:	learn: 3.8485355	total: 1.64s	remaining: 174ms
904:	learn: 3.8415855	total: 1.64s	remaining: 172ms
905:	learn: 3.8363907	total: 1.64s	remaining: 170ms
906:	learn: 3.8322223	total: 1.64s	remaining: 168ms
907:	learn: 3.8263686	total: 1.64s	remaining: 167ms
908:	learn: 3.8205644	total: 1.65s	remaining: 165ms
909:	learn: 3.8165098	total: 1.65s	remaining: 163ms
910:	learn: 3.8087858	total: 1.65s	remaining: 161ms
911:	learn: 3.8023871	total: 1.65s	remaining: 159ms
912:	learn: 3.7945453	total: 1.65s	remaining: 157ms
913:	learn: 3.7916550	total: 1.65s	remaining: 156ms
914:	learn: 3.7859271	total: 1.66s	remaining: 154ms
915:	learn: 3.7821740	total: 1.66s	remaining: 152ms
916:	learn: 3.7772417	total: 1.66s	remaining: 150ms
917:	learn: 3.7725654	total: 1.66s	remaining: 148ms
918:	learn: 3.7691613	total: 1.66s	remaining: 147ms
919:	learn: 3.7638294	total: 1.67s	remaining: 145ms
920:	learn: 3.7582960	total: 1.67s	remaining: 143ms
921:	learn: 3.7527489	total: 1.67s	remaining: 141ms
922:	learn: 3.7522456	total: 1.67s	remaining: 139ms
923:	learn: 3.7520090	total: 1.67s	remaining: 138ms
924:	learn: 3.7469692	total: 1.67s	remaining: 136ms
925:	learn: 3.7439352	total: 1.68s	remaining: 134ms
926:	learn: 3.7406631	total: 1.68s	remaining: 132ms
927:	learn: 3.7363802	total: 1.68s	remaining: 130ms
928:	learn: 3.7338051	total: 1.68s	remaining: 129ms
929:	learn: 3.7271853	total: 1.68s	remaining: 127ms
930:	learn: 3.7239611	total: 1.69s	remaining: 125ms
931:	learn: 3.7173132	total: 1.69s	remaining: 123ms
932:	learn: 3.7108197	total: 1.69s	remaining: 121ms
933:	learn: 3.7051981	total: 1.69s	remaining: 119ms
934:	learn: 3.6970950	total: 1.69s	remaining: 118ms
935:	learn: 3.6928317	total: 1.69s	remaining: 116ms
936:	learn: 3.6887305	total: 1.7s	remaining: 114ms
937:	learn: 3.6820883	total: 1.7s	remaining: 112ms
938:	learn: 3.6753622	total: 1.7s	remaining: 110ms
939:	learn: 3.6750136	total: 1.7s	remaining: 109ms
940:	learn: 3.6662830	total: 1.7s	remaining: 107ms
941:	learn: 3.6630075	total: 1.7s	remaining: 105ms
942:	learn: 3.6591818	total: 1.71s	remaining: 103ms
943:	learn: 3.6548130	total: 1.71s	remaining: 101ms
944:	learn: 3.6494701	total: 1.71s	remaining: 99.5ms
945:	learn: 3.6410810	total: 1.71s	remaining: 97.7ms
946:	learn: 3.6406333	total: 1.71s	remaining: 95.9ms
947:	learn: 3.6329310	total: 1.71s	remaining: 94.1ms
948:	learn: 3.6246376	total: 1.72s	remaining: 92.2ms
949:	learn: 3.6177224	total: 1.72s	remaining: 90.4ms
950:	learn: 3.6122936	total: 1.72s	remaining: 88.6ms
951:	learn: 3.6073166	total: 1.72s	remaining: 86.8ms
952:	learn: 3.6014590	total: 1.72s	remaining: 85ms
953:	learn: 3.5974797	total: 1.73s	remaining: 83.2ms
954:	learn: 3.5926075	total: 1.73s	remaining: 81.4ms
955:	learn: 3.5875606	total: 1.73s	remaining: 79.6ms
956:	learn: 3.5859045	total: 1.73s	remaining: 77.7ms
957:	learn: 3.5817252	total: 1.73s	remaining: 75.9ms
958:	learn: 3.5763169	total: 1.73s	remaining: 74.1ms
959:	learn: 3.5743201	total: 1.74s	remaining: 72.3ms
960:	learn: 3.5670676	total: 1.74s	remaining: 70.5ms
961:	learn: 3.5623663	total: 1.74s	remaining: 68.7ms
962:	learn: 3.5575306	total: 1.74s	remaining: 66.9ms
963:	learn: 3.5514715	total: 1.74s	remaining: 65.1ms
964:	learn: 3.5470883	total: 1.75s	remaining: 63.3ms
965:	learn: 3.5406761	total: 1.75s	remaining: 61.5ms
966:	learn: 3.5353929	total: 1.75s	remaining: 59.7ms
967:	learn: 3.5317717	total: 1.75s	remaining: 57.9ms
968:	learn: 3.5241771	total: 1.75s	remaining: 56.1ms
969:	learn: 3.5212437	total: 1.75s	remaining: 54.3ms
970:	learn: 3.5159429	total: 1.76s	remaining: 52.5ms
971:	learn: 3.5123168	total: 1.76s	remaining: 50.6ms
972:	learn: 3.5086954	total: 1.76s	remaining: 48.8ms
973:	learn: 3.5026243	total: 1.76s	remaining: 47ms
974:	learn: 3.4971919	total: 1.76s	remaining: 45.2ms
975:	learn: 3.4941305	total: 1.76s	remaining: 43.4ms
976:	learn: 3.4892507	total: 1.77s	remaining: 41.6ms
977:	learn: 3.4854455	total: 1.77s	remaining: 39.8ms
978:	learn: 3.4824612	total: 1.77s	remaining: 38ms
979:	learn: 3.4774068	total: 1.77s	remaining: 36.2ms
980:	learn: 3.4735494	total: 1.77s	remaining: 34.4ms
981:	learn: 3.4694212	total: 1.78s	remaining: 32.6ms
982:	learn: 3.4669388	total: 1.78s	remaining: 30.7ms
983:	learn: 3.4630444	total: 1.78s	remaining: 28.9ms
984:	learn: 3.4596396	total: 1.78s	remaining: 27.1ms
985:	learn: 3.4555655	total: 1.78s	remaining: 25.3ms
986:	learn: 3.4515008	total: 1.78s	remaining: 23.5ms
987:	learn: 3.4494652	total: 1.79s	remaining: 21.7ms
988:	learn: 3.4446806	total: 1.79s	remaining: 19.9ms
989:	learn: 3.4415126	total: 1.79s	remaining: 18.1ms
990:	learn: 3.4343580	total: 1.79s	remaining: 16.3ms
991:	learn: 3.4281441	total: 1.79s	remaining: 14.5ms
992:	learn: 3.4255373	total: 1.8s	remaining: 12.7ms
993:	learn: 3.4224611	total: 1.8s	remaining: 10.9ms
994:	learn: 3.4220393	total: 1.8s	remaining: 9.04ms
995:	learn: 3.4160664	total: 1.8s	remaining: 7.24ms
996:	learn: 3.4074057	total: 1.8s	remaining: 5.43ms
997:	learn: 3.4007160	total: 1.8s	remaining: 3.62ms
998:	learn: 3.3929405	total: 1.81s	remaining: 1.81ms
999:	learn: 3.3865327	total: 1.81s	remaining: 0us
Learning rate set to 0.041897
0:	learn: 46.1625076	total: 1.88ms	remaining: 1.88s
1:	learn: 45.5211200	total: 3.92ms	remaining: 1.95s
2:	learn: 45.0092014	total: 5.89ms	remaining: 1.96s
3:	learn: 44.2001948	total: 7.7ms	remaining: 1.92s
4:	learn: 43.6425940	total: 9.51ms	remaining: 1.89s
5:	learn: 43.1911779	total: 11.2ms	remaining: 1.85s
6:	learn: 42.5103505	total: 12.8ms	remaining: 1.82s
7:	learn: 41.9219068	total: 14.5ms	remaining: 1.79s
8:	learn: 41.4113682	total: 16.1ms	remaining: 1.78s
9:	learn: 40.6541890	total: 17.8ms	remaining: 1.77s
10:	learn: 40.1686810	total: 19.8ms	remaining: 1.78s
11:	learn: 39.4064457	total: 21.8ms	remaining: 1.79s
12:	learn: 38.8146669	total: 23.6ms	remaining: 1.79s
13:	learn: 38.2048972	total: 25.4ms	remaining: 1.79s
14:	learn: 37.6036072	total: 27.1ms	remaining: 1.78s
15:	learn: 37.2347308	total: 28.7ms	remaining: 1.76s
16:	learn: 36.5906124	total: 30.4ms	remaining: 1.75s
17:	learn: 36.1643834	total: 32ms	remaining: 1.75s
18:	learn: 35.6802484	total: 33.8ms	remaining: 1.75s
19:	learn: 35.1867242	total: 35.4ms	remaining: 1.74s
20:	learn: 34.9428976	total: 37.3ms	remaining: 1.74s
21:	learn: 34.4487476	total: 39ms	remaining: 1.74s
22:	learn: 34.1321518	total: 40.8ms	remaining: 1.73s
23:	learn: 33.7172416	total: 42.5ms	remaining: 1.73s
24:	learn: 33.3046369	total: 44.3ms	remaining: 1.73s
25:	learn: 32.9084780	total: 45.9ms	remaining: 1.72s
26:	learn: 32.4172631	total: 47.6ms	remaining: 1.72s
27:	learn: 32.0588378	total: 49.3ms	remaining: 1.71s
28:	learn: 31.6535128	total: 51ms	remaining: 1.71s
29:	learn: 31.1224343	total: 53ms	remaining: 1.71s
30:	learn: 30.7861097	total: 54.7ms	remaining: 1.71s
31:	learn: 30.4458044	total: 56.5ms	remaining: 1.71s
32:	learn: 30.0417620	total: 58.2ms	remaining: 1.71s
33:	learn: 29.7313556	total: 60ms	remaining: 1.7s
34:	learn: 29.4798603	total: 61.6ms	remaining: 1.7s
35:	learn: 29.0470791	total: 63.4ms	remaining: 1.7s
36:	learn: 28.8595917	total: 65.1ms	remaining: 1.69s
37:	learn: 28.5534362	total: 66.8ms	remaining: 1.69s
38:	learn: 28.1860807	total: 68.8ms	remaining: 1.7s
39:	learn: 27.9289108	total: 70.6ms	remaining: 1.69s
40:	learn: 27.6517464	total: 72.5ms	remaining: 1.69s
41:	learn: 27.4484054	total: 74.2ms	remaining: 1.69s
42:	learn: 27.2044324	total: 75.9ms	remaining: 1.69s
43:	learn: 26.9562023	total: 77.6ms	remaining: 1.69s
44:	learn: 26.5310370	total: 79.3ms	remaining: 1.68s
45:	learn: 26.2849509	total: 81ms	remaining: 1.68s
46:	learn: 26.1911861	total: 82.7ms	remaining: 1.68s
47:	learn: 26.0598024	total: 84.6ms	remaining: 1.68s
48:	learn: 25.8130843	total: 86.4ms	remaining: 1.68s
49:	learn: 25.6315947	total: 88.1ms	remaining: 1.67s
50:	learn: 25.3983648	total: 89.8ms	remaining: 1.67s
51:	learn: 25.3291895	total: 91.4ms	remaining: 1.67s
52:	learn: 25.1921810	total: 93.1ms	remaining: 1.66s
53:	learn: 25.0597518	total: 94.8ms	remaining: 1.66s
54:	learn: 24.9464729	total: 96.4ms	remaining: 1.66s
55:	learn: 24.8791918	total: 98.1ms	remaining: 1.65s
56:	learn: 24.6633071	total: 99.9ms	remaining: 1.65s
57:	learn: 24.5684326	total: 102ms	remaining: 1.65s
58:	learn: 24.4774741	total: 104ms	remaining: 1.65s
59:	learn: 24.2812975	total: 105ms	remaining: 1.65s
60:	learn: 24.2158235	total: 107ms	remaining: 1.65s
61:	learn: 23.9790829	total: 109ms	remaining: 1.65s
62:	learn: 23.8904611	total: 111ms	remaining: 1.65s
63:	learn: 23.7868569	total: 112ms	remaining: 1.64s
64:	learn: 23.6442292	total: 114ms	remaining: 1.64s
65:	learn: 23.6067526	total: 116ms	remaining: 1.64s
66:	learn: 23.4763078	total: 118ms	remaining: 1.64s
67:	learn: 23.2998822	total: 119ms	remaining: 1.64s
68:	learn: 23.2662397	total: 121ms	remaining: 1.64s
69:	learn: 23.2213366	total: 123ms	remaining: 1.63s
70:	learn: 23.1346912	total: 125ms	remaining: 1.63s
71:	learn: 22.9537776	total: 126ms	remaining: 1.63s
72:	learn: 22.8046657	total: 128ms	remaining: 1.62s
73:	learn: 22.7235740	total: 130ms	remaining: 1.62s
74:	learn: 22.6613589	total: 131ms	remaining: 1.62s
75:	learn: 22.6139848	total: 133ms	remaining: 1.62s
76:	learn: 22.5355855	total: 135ms	remaining: 1.62s
77:	learn: 22.4602435	total: 137ms	remaining: 1.61s
78:	learn: 22.3692294	total: 138ms	remaining: 1.61s
79:	learn: 22.1983298	total: 140ms	remaining: 1.61s
80:	learn: 22.1410658	total: 142ms	remaining: 1.61s
81:	learn: 22.0769754	total: 143ms	remaining: 1.6s
82:	learn: 21.9626106	total: 145ms	remaining: 1.6s
83:	learn: 21.9072826	total: 147ms	remaining: 1.6s
84:	learn: 21.8184147	total: 149ms	remaining: 1.6s
85:	learn: 21.6662663	total: 150ms	remaining: 1.6s
86:	learn: 21.4843093	total: 152ms	remaining: 1.6s
87:	learn: 21.4220512	total: 154ms	remaining: 1.6s
88:	learn: 21.3147602	total: 156ms	remaining: 1.59s
89:	learn: 21.2516250	total: 158ms	remaining: 1.59s
90:	learn: 21.1208592	total: 159ms	remaining: 1.59s
91:	learn: 21.0817201	total: 161ms	remaining: 1.59s
92:	learn: 21.0499081	total: 163ms	remaining: 1.58s
93:	learn: 20.9726637	total: 164ms	remaining: 1.58s
94:	learn: 20.9283669	total: 166ms	remaining: 1.58s
95:	learn: 20.8528072	total: 168ms	remaining: 1.58s
96:	learn: 20.8185013	total: 170ms	remaining: 1.58s
97:	learn: 20.7556751	total: 172ms	remaining: 1.58s
98:	learn: 20.6679698	total: 173ms	remaining: 1.58s
99:	learn: 20.5726947	total: 175ms	remaining: 1.57s
100:	learn: 20.5438658	total: 177ms	remaining: 1.57s
101:	learn: 20.4423559	total: 178ms	remaining: 1.57s
102:	learn: 20.3625089	total: 180ms	remaining: 1.57s
103:	learn: 20.3078257	total: 182ms	remaining: 1.57s
104:	learn: 20.2165496	total: 184ms	remaining: 1.57s
105:	learn: 20.1860931	total: 186ms	remaining: 1.57s
106:	learn: 20.1181676	total: 187ms	remaining: 1.56s
107:	learn: 20.0975568	total: 189ms	remaining: 1.56s
108:	learn: 20.0083707	total: 191ms	remaining: 1.56s
109:	learn: 19.9641002	total: 193ms	remaining: 1.56s
110:	learn: 19.9140569	total: 194ms	remaining: 1.56s
111:	learn: 19.8452843	total: 196ms	remaining: 1.56s
112:	learn: 19.7825410	total: 198ms	remaining: 1.56s
113:	learn: 19.7518391	total: 200ms	remaining: 1.55s
114:	learn: 19.6985195	total: 202ms	remaining: 1.55s
115:	learn: 19.6339749	total: 204ms	remaining: 1.55s
116:	learn: 19.4986487	total: 205ms	remaining: 1.55s
117:	learn: 19.4858689	total: 207ms	remaining: 1.55s
118:	learn: 19.4272460	total: 209ms	remaining: 1.54s
119:	learn: 19.4042887	total: 210ms	remaining: 1.54s
120:	learn: 19.3804263	total: 212ms	remaining: 1.54s
121:	learn: 19.2653505	total: 214ms	remaining: 1.54s
122:	learn: 19.1814531	total: 216ms	remaining: 1.54s
123:	learn: 19.1355821	total: 217ms	remaining: 1.53s
124:	learn: 19.0550424	total: 219ms	remaining: 1.53s
125:	learn: 19.0030611	total: 221ms	remaining: 1.53s
126:	learn: 18.9205664	total: 222ms	remaining: 1.53s
127:	learn: 18.8709174	total: 224ms	remaining: 1.52s
128:	learn: 18.8487381	total: 226ms	remaining: 1.52s
129:	learn: 18.7259172	total: 227ms	remaining: 1.52s
130:	learn: 18.6744232	total: 229ms	remaining: 1.52s
131:	learn: 18.6503802	total: 231ms	remaining: 1.52s
132:	learn: 18.5993577	total: 233ms	remaining: 1.52s
133:	learn: 18.4777219	total: 235ms	remaining: 1.52s
134:	learn: 18.4148452	total: 236ms	remaining: 1.51s
135:	learn: 18.3757275	total: 238ms	remaining: 1.51s
136:	learn: 18.3257181	total: 240ms	remaining: 1.51s
137:	learn: 18.2951912	total: 241ms	remaining: 1.51s
138:	learn: 18.2458885	total: 243ms	remaining: 1.51s
139:	learn: 18.1571946	total: 245ms	remaining: 1.51s
140:	learn: 18.0946025	total: 247ms	remaining: 1.5s
141:	learn: 18.0596978	total: 249ms	remaining: 1.5s
142:	learn: 18.0229001	total: 251ms	remaining: 1.5s
143:	learn: 17.9378570	total: 252ms	remaining: 1.5s
144:	learn: 17.9001164	total: 254ms	remaining: 1.5s
145:	learn: 17.8779422	total: 256ms	remaining: 1.5s
146:	learn: 17.8294412	total: 258ms	remaining: 1.49s
147:	learn: 17.7657558	total: 259ms	remaining: 1.49s
148:	learn: 17.7391056	total: 261ms	remaining: 1.49s
149:	learn: 17.7245402	total: 263ms	remaining: 1.49s
150:	learn: 17.6951494	total: 265ms	remaining: 1.49s
151:	learn: 17.6529922	total: 267ms	remaining: 1.49s
152:	learn: 17.6194925	total: 269ms	remaining: 1.49s
153:	learn: 17.5889197	total: 270ms	remaining: 1.49s
154:	learn: 17.5604072	total: 272ms	remaining: 1.48s
155:	learn: 17.4813174	total: 274ms	remaining: 1.48s
156:	learn: 17.4337099	total: 276ms	remaining: 1.48s
157:	learn: 17.3966014	total: 278ms	remaining: 1.48s
158:	learn: 17.3559200	total: 280ms	remaining: 1.48s
159:	learn: 17.3033878	total: 282ms	remaining: 1.48s
160:	learn: 17.2104075	total: 284ms	remaining: 1.48s
161:	learn: 17.1705493	total: 285ms	remaining: 1.48s
162:	learn: 17.0876093	total: 287ms	remaining: 1.47s
163:	learn: 17.0499356	total: 289ms	remaining: 1.47s
164:	learn: 16.9904014	total: 291ms	remaining: 1.47s
165:	learn: 16.9125520	total: 293ms	remaining: 1.47s
166:	learn: 16.8823122	total: 294ms	remaining: 1.47s
167:	learn: 16.8596060	total: 296ms	remaining: 1.47s
168:	learn: 16.8115571	total: 298ms	remaining: 1.46s
169:	learn: 16.7000995	total: 299ms	remaining: 1.46s
170:	learn: 16.6522892	total: 301ms	remaining: 1.46s
171:	learn: 16.6407314	total: 303ms	remaining: 1.46s
172:	learn: 16.5616421	total: 305ms	remaining: 1.46s
173:	learn: 16.5422837	total: 307ms	remaining: 1.46s
174:	learn: 16.5169816	total: 308ms	remaining: 1.45s
175:	learn: 16.4715127	total: 310ms	remaining: 1.45s
176:	learn: 16.4475984	total: 312ms	remaining: 1.45s
177:	learn: 16.4202205	total: 313ms	remaining: 1.45s
178:	learn: 16.3769264	total: 315ms	remaining: 1.45s
179:	learn: 16.3481131	total: 317ms	remaining: 1.44s
180:	learn: 16.2458202	total: 319ms	remaining: 1.44s
181:	learn: 16.1856711	total: 320ms	remaining: 1.44s
182:	learn: 16.1093616	total: 322ms	remaining: 1.44s
183:	learn: 16.0563703	total: 324ms	remaining: 1.44s
184:	learn: 15.9567963	total: 325ms	remaining: 1.43s
185:	learn: 15.8808854	total: 327ms	remaining: 1.43s
186:	learn: 15.8088371	total: 329ms	remaining: 1.43s
187:	learn: 15.7718570	total: 331ms	remaining: 1.43s
188:	learn: 15.6800733	total: 332ms	remaining: 1.43s
189:	learn: 15.6218702	total: 334ms	remaining: 1.42s
190:	learn: 15.6057630	total: 336ms	remaining: 1.42s
191:	learn: 15.5401923	total: 337ms	remaining: 1.42s
192:	learn: 15.4857648	total: 339ms	remaining: 1.42s
193:	learn: 15.4669678	total: 341ms	remaining: 1.42s
194:	learn: 15.4342086	total: 343ms	remaining: 1.42s
195:	learn: 15.3922109	total: 345ms	remaining: 1.41s
196:	learn: 15.3153896	total: 347ms	remaining: 1.41s
197:	learn: 15.2590282	total: 348ms	remaining: 1.41s
198:	learn: 15.1979288	total: 350ms	remaining: 1.41s
199:	learn: 15.1622575	total: 352ms	remaining: 1.41s
200:	learn: 15.1358534	total: 353ms	remaining: 1.4s
201:	learn: 15.0850466	total: 355ms	remaining: 1.4s
202:	learn: 15.0523467	total: 357ms	remaining: 1.4s
203:	learn: 14.9820899	total: 359ms	remaining: 1.4s
204:	learn: 14.9361925	total: 360ms	remaining: 1.4s
205:	learn: 14.8881099	total: 362ms	remaining: 1.4s
206:	learn: 14.8315190	total: 364ms	remaining: 1.39s
207:	learn: 14.7844720	total: 366ms	remaining: 1.39s
208:	learn: 14.7426437	total: 367ms	remaining: 1.39s
209:	learn: 14.7041028	total: 369ms	remaining: 1.39s
210:	learn: 14.6522791	total: 371ms	remaining: 1.39s
211:	learn: 14.6072795	total: 373ms	remaining: 1.39s
212:	learn: 14.5496069	total: 374ms	remaining: 1.38s
213:	learn: 14.5085397	total: 376ms	remaining: 1.38s
214:	learn: 14.4427327	total: 378ms	remaining: 1.38s
215:	learn: 14.4135521	total: 380ms	remaining: 1.38s
216:	learn: 14.3796717	total: 381ms	remaining: 1.38s
217:	learn: 14.3411797	total: 383ms	remaining: 1.37s
218:	learn: 14.3042972	total: 385ms	remaining: 1.37s
219:	learn: 14.2589095	total: 387ms	remaining: 1.37s
220:	learn: 14.2316509	total: 388ms	remaining: 1.37s
221:	learn: 14.1996919	total: 390ms	remaining: 1.37s
222:	learn: 14.1708588	total: 392ms	remaining: 1.36s
223:	learn: 14.0807803	total: 393ms	remaining: 1.36s
224:	learn: 14.0536638	total: 396ms	remaining: 1.36s
225:	learn: 13.9999065	total: 397ms	remaining: 1.36s
226:	learn: 13.9764070	total: 399ms	remaining: 1.36s
227:	learn: 13.9294868	total: 401ms	remaining: 1.36s
228:	learn: 13.9034185	total: 403ms	remaining: 1.35s
229:	learn: 13.8686672	total: 404ms	remaining: 1.35s
230:	learn: 13.7976292	total: 406ms	remaining: 1.35s
231:	learn: 13.7602595	total: 408ms	remaining: 1.35s
232:	learn: 13.7197369	total: 409ms	remaining: 1.35s
233:	learn: 13.6823827	total: 411ms	remaining: 1.35s
234:	learn: 13.6545993	total: 413ms	remaining: 1.34s
235:	learn: 13.6189323	total: 415ms	remaining: 1.34s
236:	learn: 13.5585109	total: 416ms	remaining: 1.34s
237:	learn: 13.5001310	total: 418ms	remaining: 1.34s
238:	learn: 13.4717771	total: 420ms	remaining: 1.34s
239:	learn: 13.4440059	total: 421ms	remaining: 1.33s
240:	learn: 13.4066147	total: 423ms	remaining: 1.33s
241:	learn: 13.3754342	total: 425ms	remaining: 1.33s
242:	learn: 13.3417181	total: 427ms	remaining: 1.33s
243:	learn: 13.2862959	total: 428ms	remaining: 1.33s
244:	learn: 13.2355972	total: 430ms	remaining: 1.32s
245:	learn: 13.1969436	total: 432ms	remaining: 1.32s
246:	learn: 13.1632114	total: 433ms	remaining: 1.32s
247:	learn: 13.1206743	total: 435ms	remaining: 1.32s
248:	learn: 13.1044081	total: 437ms	remaining: 1.32s
249:	learn: 13.0941164	total: 439ms	remaining: 1.32s
250:	learn: 13.0657289	total: 441ms	remaining: 1.31s
251:	learn: 13.0526266	total: 443ms	remaining: 1.31s
252:	learn: 13.0171631	total: 444ms	remaining: 1.31s
253:	learn: 13.0117561	total: 446ms	remaining: 1.31s
254:	learn: 12.9596141	total: 448ms	remaining: 1.31s
255:	learn: 12.9101317	total: 449ms	remaining: 1.3s
256:	learn: 12.8858616	total: 451ms	remaining: 1.3s
257:	learn: 12.8594895	total: 453ms	remaining: 1.3s
258:	learn: 12.8256553	total: 455ms	remaining: 1.3s
259:	learn: 12.8095207	total: 457ms	remaining: 1.3s
260:	learn: 12.7439238	total: 459ms	remaining: 1.3s
261:	learn: 12.7080177	total: 460ms	remaining: 1.3s
262:	learn: 12.6854092	total: 462ms	remaining: 1.29s
263:	learn: 12.6348973	total: 464ms	remaining: 1.29s
264:	learn: 12.6080023	total: 465ms	remaining: 1.29s
265:	learn: 12.5752526	total: 467ms	remaining: 1.29s
266:	learn: 12.5512294	total: 469ms	remaining: 1.29s
267:	learn: 12.5396988	total: 471ms	remaining: 1.28s
268:	learn: 12.5227416	total: 473ms	remaining: 1.28s
269:	learn: 12.4905288	total: 474ms	remaining: 1.28s
270:	learn: 12.4813154	total: 476ms	remaining: 1.28s
271:	learn: 12.4586755	total: 478ms	remaining: 1.28s
272:	learn: 12.4209589	total: 479ms	remaining: 1.28s
273:	learn: 12.3684070	total: 481ms	remaining: 1.27s
274:	learn: 12.3277856	total: 483ms	remaining: 1.27s
275:	learn: 12.2953736	total: 485ms	remaining: 1.27s
276:	learn: 12.2892153	total: 487ms	remaining: 1.27s
277:	learn: 12.2858226	total: 488ms	remaining: 1.27s
278:	learn: 12.2589385	total: 490ms	remaining: 1.27s
279:	learn: 12.2409903	total: 492ms	remaining: 1.26s
280:	learn: 12.2323568	total: 493ms	remaining: 1.26s
281:	learn: 12.2153694	total: 495ms	remaining: 1.26s
282:	learn: 12.2114241	total: 497ms	remaining: 1.26s
283:	learn: 12.1942092	total: 498ms	remaining: 1.26s
284:	learn: 12.1692412	total: 500ms	remaining: 1.25s
285:	learn: 12.1661842	total: 502ms	remaining: 1.25s
286:	learn: 12.1274102	total: 503ms	remaining: 1.25s
287:	learn: 12.0879492	total: 505ms	remaining: 1.25s
288:	learn: 12.0604218	total: 507ms	remaining: 1.25s
289:	learn: 12.0413613	total: 508ms	remaining: 1.24s
290:	learn: 11.9916898	total: 510ms	remaining: 1.24s
291:	learn: 11.9640925	total: 512ms	remaining: 1.24s
292:	learn: 11.9353920	total: 514ms	remaining: 1.24s
293:	learn: 11.9019230	total: 515ms	remaining: 1.24s
294:	learn: 11.8780264	total: 517ms	remaining: 1.24s
295:	learn: 11.8545162	total: 519ms	remaining: 1.23s
296:	learn: 11.8434144	total: 521ms	remaining: 1.23s
297:	learn: 11.8107649	total: 522ms	remaining: 1.23s
298:	learn: 11.7962782	total: 524ms	remaining: 1.23s
299:	learn: 11.7829694	total: 526ms	remaining: 1.23s
300:	learn: 11.7579643	total: 528ms	remaining: 1.23s
301:	learn: 11.7313316	total: 529ms	remaining: 1.22s
302:	learn: 11.6817939	total: 531ms	remaining: 1.22s
303:	learn: 11.6742657	total: 533ms	remaining: 1.22s
304:	learn: 11.6520378	total: 535ms	remaining: 1.22s
305:	learn: 11.6411704	total: 537ms	remaining: 1.22s
306:	learn: 11.6120891	total: 538ms	remaining: 1.21s
307:	learn: 11.6045080	total: 540ms	remaining: 1.21s
308:	learn: 11.5828668	total: 542ms	remaining: 1.21s
309:	learn: 11.5670130	total: 543ms	remaining: 1.21s
310:	learn: 11.5542597	total: 545ms	remaining: 1.21s
311:	learn: 11.5206437	total: 547ms	remaining: 1.21s
312:	learn: 11.5082050	total: 549ms	remaining: 1.2s
313:	learn: 11.4737326	total: 551ms	remaining: 1.2s
314:	learn: 11.4629799	total: 552ms	remaining: 1.2s
315:	learn: 11.4429257	total: 554ms	remaining: 1.2s
316:	learn: 11.4070939	total: 556ms	remaining: 1.2s
317:	learn: 11.3852938	total: 558ms	remaining: 1.2s
318:	learn: 11.3716915	total: 559ms	remaining: 1.19s
319:	learn: 11.3621439	total: 561ms	remaining: 1.19s
320:	learn: 11.3330575	total: 563ms	remaining: 1.19s
321:	learn: 11.3120662	total: 565ms	remaining: 1.19s
322:	learn: 11.2730846	total: 566ms	remaining: 1.19s
323:	learn: 11.2486698	total: 568ms	remaining: 1.19s
324:	learn: 11.2099546	total: 570ms	remaining: 1.18s
325:	learn: 11.1844270	total: 571ms	remaining: 1.18s
326:	learn: 11.1675004	total: 573ms	remaining: 1.18s
327:	learn: 11.1343555	total: 575ms	remaining: 1.18s
328:	learn: 11.1081499	total: 576ms	remaining: 1.18s
329:	learn: 11.0582463	total: 578ms	remaining: 1.17s
330:	learn: 11.0388559	total: 580ms	remaining: 1.17s
331:	learn: 11.0020709	total: 582ms	remaining: 1.17s
332:	learn: 10.9511053	total: 584ms	remaining: 1.17s
333:	learn: 10.9474311	total: 585ms	remaining: 1.17s
334:	learn: 10.9216756	total: 587ms	remaining: 1.17s
335:	learn: 10.9111167	total: 589ms	remaining: 1.16s
336:	learn: 10.8865509	total: 590ms	remaining: 1.16s
337:	learn: 10.8595362	total: 592ms	remaining: 1.16s
338:	learn: 10.8347193	total: 594ms	remaining: 1.16s
339:	learn: 10.8138878	total: 595ms	remaining: 1.16s
340:	learn: 10.7980806	total: 597ms	remaining: 1.15s
341:	learn: 10.7805061	total: 599ms	remaining: 1.15s
342:	learn: 10.7509252	total: 601ms	remaining: 1.15s
343:	learn: 10.7358930	total: 603ms	remaining: 1.15s
344:	learn: 10.7102015	total: 604ms	remaining: 1.15s
345:	learn: 10.6842675	total: 606ms	remaining: 1.15s
346:	learn: 10.6498793	total: 607ms	remaining: 1.14s
347:	learn: 10.6342066	total: 609ms	remaining: 1.14s
348:	learn: 10.6010940	total: 611ms	remaining: 1.14s
349:	learn: 10.5935155	total: 613ms	remaining: 1.14s
350:	learn: 10.5736753	total: 614ms	remaining: 1.14s
351:	learn: 10.5590482	total: 616ms	remaining: 1.13s
352:	learn: 10.5486586	total: 618ms	remaining: 1.13s
353:	learn: 10.5317387	total: 620ms	remaining: 1.13s
354:	learn: 10.5113281	total: 622ms	remaining: 1.13s
355:	learn: 10.4909068	total: 623ms	remaining: 1.13s
356:	learn: 10.4611376	total: 625ms	remaining: 1.13s
357:	learn: 10.4532054	total: 627ms	remaining: 1.12s
358:	learn: 10.4410382	total: 629ms	remaining: 1.12s
359:	learn: 10.4138593	total: 631ms	remaining: 1.12s
360:	learn: 10.3890792	total: 632ms	remaining: 1.12s
361:	learn: 10.3680960	total: 634ms	remaining: 1.12s
362:	learn: 10.3450298	total: 636ms	remaining: 1.11s
363:	learn: 10.3288569	total: 638ms	remaining: 1.11s
364:	learn: 10.3169045	total: 639ms	remaining: 1.11s
365:	learn: 10.3050828	total: 641ms	remaining: 1.11s
366:	learn: 10.2874774	total: 643ms	remaining: 1.11s
367:	learn: 10.2658762	total: 645ms	remaining: 1.11s
368:	learn: 10.2531341	total: 646ms	remaining: 1.1s
369:	learn: 10.2289659	total: 648ms	remaining: 1.1s
370:	learn: 10.1984836	total: 650ms	remaining: 1.1s
371:	learn: 10.1893036	total: 652ms	remaining: 1.1s
372:	learn: 10.1781713	total: 653ms	remaining: 1.1s
373:	learn: 10.1563649	total: 655ms	remaining: 1.1s
374:	learn: 10.1466249	total: 657ms	remaining: 1.09s
375:	learn: 10.1384467	total: 659ms	remaining: 1.09s
376:	learn: 10.1081923	total: 661ms	remaining: 1.09s
377:	learn: 10.0792814	total: 663ms	remaining: 1.09s
378:	learn: 10.0670546	total: 665ms	remaining: 1.09s
379:	learn: 10.0335113	total: 666ms	remaining: 1.09s
380:	learn: 10.0267490	total: 668ms	remaining: 1.08s
381:	learn: 10.0124924	total: 670ms	remaining: 1.08s
382:	learn: 10.0015153	total: 671ms	remaining: 1.08s
383:	learn: 9.9848489	total: 673ms	remaining: 1.08s
384:	learn: 9.9695348	total: 675ms	remaining: 1.08s
385:	learn: 9.9506232	total: 677ms	remaining: 1.08s
386:	learn: 9.9230607	total: 679ms	remaining: 1.07s
387:	learn: 9.9051551	total: 680ms	remaining: 1.07s
388:	learn: 9.8904367	total: 682ms	remaining: 1.07s
389:	learn: 9.8759760	total: 684ms	remaining: 1.07s
390:	learn: 9.8573219	total: 686ms	remaining: 1.07s
391:	learn: 9.8334867	total: 688ms	remaining: 1.07s
392:	learn: 9.8187368	total: 690ms	remaining: 1.06s
393:	learn: 9.8044709	total: 692ms	remaining: 1.06s
394:	learn: 9.7976074	total: 693ms	remaining: 1.06s
395:	learn: 9.7808996	total: 695ms	remaining: 1.06s
396:	learn: 9.7580734	total: 697ms	remaining: 1.06s
397:	learn: 9.7415379	total: 699ms	remaining: 1.06s
398:	learn: 9.7365499	total: 701ms	remaining: 1.06s
399:	learn: 9.7075063	total: 703ms	remaining: 1.05s
400:	learn: 9.6932120	total: 705ms	remaining: 1.05s
401:	learn: 9.6748851	total: 707ms	remaining: 1.05s
402:	learn: 9.6529359	total: 709ms	remaining: 1.05s
403:	learn: 9.6259406	total: 711ms	remaining: 1.05s
404:	learn: 9.6129443	total: 713ms	remaining: 1.05s
405:	learn: 9.5968437	total: 714ms	remaining: 1.04s
406:	learn: 9.5809011	total: 716ms	remaining: 1.04s
407:	learn: 9.5613561	total: 718ms	remaining: 1.04s
408:	learn: 9.5443495	total: 719ms	remaining: 1.04s
409:	learn: 9.5126455	total: 722ms	remaining: 1.04s
410:	learn: 9.5038293	total: 724ms	remaining: 1.04s
411:	learn: 9.4850015	total: 725ms	remaining: 1.03s
412:	learn: 9.4640501	total: 727ms	remaining: 1.03s
413:	learn: 9.4435723	total: 729ms	remaining: 1.03s
414:	learn: 9.4369067	total: 731ms	remaining: 1.03s
415:	learn: 9.4143612	total: 732ms	remaining: 1.03s
416:	learn: 9.3929653	total: 734ms	remaining: 1.03s
417:	learn: 9.3847870	total: 736ms	remaining: 1.02s
418:	learn: 9.3741408	total: 738ms	remaining: 1.02s
419:	learn: 9.3520897	total: 740ms	remaining: 1.02s
420:	learn: 9.3433547	total: 741ms	remaining: 1.02s
421:	learn: 9.3303972	total: 743ms	remaining: 1.02s
422:	learn: 9.3235956	total: 745ms	remaining: 1.01s
423:	learn: 9.3177770	total: 746ms	remaining: 1.01s
424:	learn: 9.3037436	total: 748ms	remaining: 1.01s
425:	learn: 9.2760535	total: 750ms	remaining: 1.01s
426:	learn: 9.2606370	total: 752ms	remaining: 1.01s
427:	learn: 9.2414237	total: 754ms	remaining: 1.01s
428:	learn: 9.2148278	total: 755ms	remaining: 1s
429:	learn: 9.2002168	total: 757ms	remaining: 1s
430:	learn: 9.1772257	total: 759ms	remaining: 1s
431:	learn: 9.1641141	total: 761ms	remaining: 1s
432:	learn: 9.1456068	total: 762ms	remaining: 998ms
433:	learn: 9.1329664	total: 764ms	remaining: 996ms
434:	learn: 9.1145281	total: 766ms	remaining: 994ms
435:	learn: 9.0992906	total: 767ms	remaining: 992ms
436:	learn: 9.0765779	total: 769ms	remaining: 991ms
437:	learn: 9.0681582	total: 771ms	remaining: 989ms
438:	learn: 9.0596474	total: 773ms	remaining: 987ms
439:	learn: 9.0404437	total: 774ms	remaining: 986ms
440:	learn: 9.0183628	total: 776ms	remaining: 984ms
441:	learn: 9.0054011	total: 778ms	remaining: 982ms
442:	learn: 8.9890380	total: 780ms	remaining: 980ms
443:	learn: 8.9699984	total: 781ms	remaining: 978ms
444:	learn: 8.9603514	total: 783ms	remaining: 977ms
445:	learn: 8.9435730	total: 785ms	remaining: 975ms
446:	learn: 8.9319642	total: 787ms	remaining: 973ms
447:	learn: 8.9028242	total: 788ms	remaining: 971ms
448:	learn: 8.8817410	total: 790ms	remaining: 970ms
449:	learn: 8.8617790	total: 792ms	remaining: 968ms
450:	learn: 8.8563082	total: 794ms	remaining: 966ms
451:	learn: 8.8455936	total: 795ms	remaining: 964ms
452:	learn: 8.8380985	total: 797ms	remaining: 963ms
453:	learn: 8.8208844	total: 799ms	remaining: 961ms
454:	learn: 8.8050833	total: 801ms	remaining: 959ms
455:	learn: 8.7865738	total: 802ms	remaining: 957ms
456:	learn: 8.7738977	total: 804ms	remaining: 955ms
457:	learn: 8.7688566	total: 806ms	remaining: 954ms
458:	learn: 8.7549057	total: 808ms	remaining: 952ms
459:	learn: 8.7379823	total: 809ms	remaining: 950ms
460:	learn: 8.7322048	total: 811ms	remaining: 948ms
461:	learn: 8.7230879	total: 813ms	remaining: 947ms
462:	learn: 8.7099453	total: 814ms	remaining: 945ms
463:	learn: 8.6971742	total: 816ms	remaining: 943ms
464:	learn: 8.6882671	total: 818ms	remaining: 941ms
465:	learn: 8.6783587	total: 820ms	remaining: 940ms
466:	learn: 8.6616718	total: 822ms	remaining: 938ms
467:	learn: 8.6471112	total: 824ms	remaining: 936ms
468:	learn: 8.6359311	total: 825ms	remaining: 935ms
469:	learn: 8.6280536	total: 827ms	remaining: 933ms
470:	learn: 8.6184746	total: 829ms	remaining: 931ms
471:	learn: 8.5948266	total: 831ms	remaining: 929ms
472:	learn: 8.5824952	total: 833ms	remaining: 928ms
473:	learn: 8.5589077	total: 835ms	remaining: 926ms
474:	learn: 8.5537017	total: 836ms	remaining: 924ms
475:	learn: 8.5238371	total: 838ms	remaining: 923ms
476:	learn: 8.5137001	total: 840ms	remaining: 921ms
477:	learn: 8.5002292	total: 842ms	remaining: 919ms
478:	learn: 8.4957697	total: 844ms	remaining: 918ms
479:	learn: 8.4756943	total: 845ms	remaining: 916ms
480:	learn: 8.4601232	total: 847ms	remaining: 914ms
481:	learn: 8.4451069	total: 849ms	remaining: 912ms
482:	learn: 8.4307789	total: 851ms	remaining: 910ms
483:	learn: 8.4159833	total: 852ms	remaining: 909ms
484:	learn: 8.4061584	total: 854ms	remaining: 907ms
485:	learn: 8.3918982	total: 856ms	remaining: 905ms
486:	learn: 8.3667025	total: 858ms	remaining: 903ms
487:	learn: 8.3428130	total: 859ms	remaining: 901ms
488:	learn: 8.3385323	total: 861ms	remaining: 900ms
489:	learn: 8.3315878	total: 862ms	remaining: 898ms
490:	learn: 8.3180873	total: 864ms	remaining: 896ms
491:	learn: 8.3020517	total: 866ms	remaining: 894ms
492:	learn: 8.2840751	total: 868ms	remaining: 892ms
493:	learn: 8.2798796	total: 870ms	remaining: 891ms
494:	learn: 8.2706723	total: 871ms	remaining: 889ms
495:	learn: 8.2605537	total: 873ms	remaining: 887ms
496:	learn: 8.2564797	total: 875ms	remaining: 885ms
497:	learn: 8.2417190	total: 876ms	remaining: 883ms
498:	learn: 8.2359312	total: 878ms	remaining: 881ms
499:	learn: 8.2091798	total: 880ms	remaining: 880ms
500:	learn: 8.1997158	total: 881ms	remaining: 878ms
501:	learn: 8.1857283	total: 883ms	remaining: 876ms
502:	learn: 8.1591632	total: 884ms	remaining: 874ms
503:	learn: 8.1446112	total: 886ms	remaining: 872ms
504:	learn: 8.1308895	total: 888ms	remaining: 870ms
505:	learn: 8.1229795	total: 889ms	remaining: 868ms
506:	learn: 8.1058028	total: 891ms	remaining: 866ms
507:	learn: 8.0944515	total: 893ms	remaining: 865ms
508:	learn: 8.0838634	total: 894ms	remaining: 863ms
509:	learn: 8.0640609	total: 896ms	remaining: 861ms
510:	learn: 8.0471582	total: 898ms	remaining: 859ms
511:	learn: 8.0429066	total: 900ms	remaining: 858ms
512:	learn: 8.0319795	total: 902ms	remaining: 856ms
513:	learn: 8.0164184	total: 903ms	remaining: 854ms
514:	learn: 8.0089675	total: 905ms	remaining: 852ms
515:	learn: 8.0028145	total: 907ms	remaining: 850ms
516:	learn: 7.9989275	total: 908ms	remaining: 849ms
517:	learn: 7.9801616	total: 910ms	remaining: 847ms
518:	learn: 7.9699711	total: 912ms	remaining: 845ms
519:	learn: 7.9579006	total: 913ms	remaining: 843ms
520:	learn: 7.9491165	total: 915ms	remaining: 841ms
521:	learn: 7.9408662	total: 917ms	remaining: 840ms
522:	learn: 7.9209479	total: 919ms	remaining: 838ms
523:	learn: 7.9110794	total: 921ms	remaining: 836ms
524:	learn: 7.9066684	total: 922ms	remaining: 835ms
525:	learn: 7.8939741	total: 924ms	remaining: 833ms
526:	learn: 7.8826585	total: 926ms	remaining: 831ms
527:	learn: 7.8679845	total: 927ms	remaining: 829ms
528:	learn: 7.8547639	total: 929ms	remaining: 827ms
529:	learn: 7.8355972	total: 931ms	remaining: 826ms
530:	learn: 7.8172274	total: 933ms	remaining: 824ms
531:	learn: 7.8120405	total: 935ms	remaining: 822ms
532:	learn: 7.8052074	total: 937ms	remaining: 821ms
533:	learn: 7.7981935	total: 938ms	remaining: 819ms
534:	learn: 7.7854239	total: 940ms	remaining: 817ms
535:	learn: 7.7801910	total: 942ms	remaining: 815ms
536:	learn: 7.7626314	total: 944ms	remaining: 814ms
537:	learn: 7.7480800	total: 946ms	remaining: 812ms
538:	learn: 7.7385109	total: 948ms	remaining: 811ms
539:	learn: 7.7285447	total: 950ms	remaining: 809ms
540:	learn: 7.7132482	total: 952ms	remaining: 808ms
541:	learn: 7.6797239	total: 953ms	remaining: 806ms
542:	learn: 7.6593659	total: 955ms	remaining: 804ms
543:	learn: 7.6468306	total: 957ms	remaining: 802ms
544:	learn: 7.6349116	total: 958ms	remaining: 800ms
545:	learn: 7.6241136	total: 961ms	remaining: 799ms
546:	learn: 7.6120321	total: 963ms	remaining: 797ms
547:	learn: 7.5988623	total: 965ms	remaining: 796ms
548:	learn: 7.5796754	total: 966ms	remaining: 794ms
549:	learn: 7.5721227	total: 968ms	remaining: 792ms
550:	learn: 7.5589423	total: 970ms	remaining: 790ms
551:	learn: 7.5473622	total: 971ms	remaining: 788ms
552:	learn: 7.5361992	total: 973ms	remaining: 787ms
553:	learn: 7.5272959	total: 975ms	remaining: 785ms
554:	learn: 7.5155070	total: 977ms	remaining: 783ms
555:	learn: 7.4999963	total: 978ms	remaining: 781ms
556:	learn: 7.4897942	total: 980ms	remaining: 779ms
557:	learn: 7.4792637	total: 982ms	remaining: 778ms
558:	learn: 7.4575784	total: 983ms	remaining: 776ms
559:	learn: 7.4497921	total: 985ms	remaining: 774ms
560:	learn: 7.4415586	total: 987ms	remaining: 772ms
561:	learn: 7.4285620	total: 988ms	remaining: 770ms
562:	learn: 7.4217370	total: 990ms	remaining: 769ms
563:	learn: 7.4132189	total: 992ms	remaining: 767ms
564:	learn: 7.4038749	total: 994ms	remaining: 765ms
565:	learn: 7.3965866	total: 996ms	remaining: 764ms
566:	learn: 7.3815261	total: 998ms	remaining: 762ms
567:	learn: 7.3669576	total: 999ms	remaining: 760ms
568:	learn: 7.3548205	total: 1s	remaining: 758ms
569:	learn: 7.3436483	total: 1s	remaining: 756ms
570:	learn: 7.3260124	total: 1s	remaining: 755ms
571:	learn: 7.3238694	total: 1.01s	remaining: 753ms
572:	learn: 7.3107757	total: 1.01s	remaining: 751ms
573:	learn: 7.2971425	total: 1.01s	remaining: 750ms
574:	learn: 7.2780036	total: 1.01s	remaining: 748ms
575:	learn: 7.2571467	total: 1.01s	remaining: 746ms
576:	learn: 7.2405328	total: 1.01s	remaining: 744ms
577:	learn: 7.2167868	total: 1.02s	remaining: 742ms
578:	learn: 7.2015941	total: 1.02s	remaining: 741ms
579:	learn: 7.1885139	total: 1.02s	remaining: 739ms
580:	learn: 7.1795158	total: 1.02s	remaining: 737ms
581:	learn: 7.1607712	total: 1.02s	remaining: 735ms
582:	learn: 7.1481368	total: 1.02s	remaining: 734ms
583:	learn: 7.1410582	total: 1.03s	remaining: 732ms
584:	learn: 7.1338407	total: 1.03s	remaining: 730ms
585:	learn: 7.1306436	total: 1.03s	remaining: 729ms
586:	learn: 7.1259205	total: 1.03s	remaining: 727ms
587:	learn: 7.1057711	total: 1.03s	remaining: 725ms
588:	learn: 7.0938929	total: 1.04s	remaining: 724ms
589:	learn: 7.0806264	total: 1.04s	remaining: 722ms
590:	learn: 7.0681260	total: 1.04s	remaining: 721ms
591:	learn: 7.0525466	total: 1.04s	remaining: 719ms
592:	learn: 7.0444039	total: 1.04s	remaining: 717ms
593:	learn: 7.0281524	total: 1.05s	remaining: 716ms
594:	learn: 7.0187283	total: 1.05s	remaining: 714ms
595:	learn: 7.0082540	total: 1.05s	remaining: 712ms
596:	learn: 6.9972679	total: 1.05s	remaining: 710ms
597:	learn: 6.9891703	total: 1.05s	remaining: 708ms
598:	learn: 6.9755018	total: 1.05s	remaining: 707ms
599:	learn: 6.9575018	total: 1.06s	remaining: 705ms
600:	learn: 6.9472628	total: 1.06s	remaining: 703ms
601:	learn: 6.9338075	total: 1.06s	remaining: 701ms
602:	learn: 6.9240895	total: 1.06s	remaining: 699ms
603:	learn: 6.9178353	total: 1.06s	remaining: 698ms
604:	learn: 6.9029049	total: 1.06s	remaining: 696ms
605:	learn: 6.8819201	total: 1.07s	remaining: 694ms
606:	learn: 6.8714304	total: 1.07s	remaining: 692ms
607:	learn: 6.8605297	total: 1.07s	remaining: 691ms
608:	learn: 6.8424963	total: 1.07s	remaining: 689ms
609:	learn: 6.8318729	total: 1.07s	remaining: 687ms
610:	learn: 6.8300477	total: 1.08s	remaining: 685ms
611:	learn: 6.8121713	total: 1.08s	remaining: 684ms
612:	learn: 6.8046704	total: 1.08s	remaining: 682ms
613:	learn: 6.7935921	total: 1.08s	remaining: 680ms
614:	learn: 6.7833878	total: 1.08s	remaining: 678ms
615:	learn: 6.7781155	total: 1.08s	remaining: 676ms
616:	learn: 6.7675294	total: 1.09s	remaining: 675ms
617:	learn: 6.7595509	total: 1.09s	remaining: 673ms
618:	learn: 6.7493066	total: 1.09s	remaining: 671ms
619:	learn: 6.7433161	total: 1.09s	remaining: 670ms
620:	learn: 6.7301680	total: 1.09s	remaining: 668ms
621:	learn: 6.7188930	total: 1.09s	remaining: 666ms
622:	learn: 6.7075328	total: 1.1s	remaining: 664ms
623:	learn: 6.6960986	total: 1.1s	remaining: 662ms
624:	learn: 6.6822718	total: 1.1s	remaining: 661ms
625:	learn: 6.6716123	total: 1.1s	remaining: 659ms
626:	learn: 6.6595052	total: 1.1s	remaining: 657ms
627:	learn: 6.6512604	total: 1.11s	remaining: 655ms
628:	learn: 6.6435391	total: 1.11s	remaining: 654ms
629:	learn: 6.6299858	total: 1.11s	remaining: 652ms
630:	learn: 6.6237955	total: 1.11s	remaining: 650ms
631:	learn: 6.6155626	total: 1.11s	remaining: 648ms
632:	learn: 6.6063021	total: 1.11s	remaining: 646ms
633:	learn: 6.5960257	total: 1.12s	remaining: 645ms
634:	learn: 6.5818451	total: 1.12s	remaining: 643ms
635:	learn: 6.5641081	total: 1.12s	remaining: 641ms
636:	learn: 6.5558248	total: 1.12s	remaining: 639ms
637:	learn: 6.5503378	total: 1.12s	remaining: 638ms
638:	learn: 6.5275419	total: 1.13s	remaining: 636ms
639:	learn: 6.5100112	total: 1.13s	remaining: 634ms
640:	learn: 6.4977314	total: 1.13s	remaining: 632ms
641:	learn: 6.4925995	total: 1.13s	remaining: 631ms
642:	learn: 6.4858666	total: 1.13s	remaining: 629ms
643:	learn: 6.4739247	total: 1.13s	remaining: 627ms
644:	learn: 6.4664005	total: 1.14s	remaining: 625ms
645:	learn: 6.4594393	total: 1.14s	remaining: 624ms
646:	learn: 6.4507827	total: 1.14s	remaining: 622ms
647:	learn: 6.4327756	total: 1.14s	remaining: 620ms
648:	learn: 6.4216478	total: 1.14s	remaining: 618ms
649:	learn: 6.4122531	total: 1.14s	remaining: 616ms
650:	learn: 6.3984858	total: 1.15s	remaining: 615ms
651:	learn: 6.3926148	total: 1.15s	remaining: 613ms
652:	learn: 6.3839707	total: 1.15s	remaining: 611ms
653:	learn: 6.3689949	total: 1.15s	remaining: 609ms
654:	learn: 6.3600367	total: 1.15s	remaining: 608ms
655:	learn: 6.3558613	total: 1.16s	remaining: 606ms
656:	learn: 6.3483183	total: 1.16s	remaining: 604ms
657:	learn: 6.3380566	total: 1.16s	remaining: 602ms
658:	learn: 6.3227962	total: 1.16s	remaining: 601ms
659:	learn: 6.3194440	total: 1.16s	remaining: 599ms
660:	learn: 6.3149369	total: 1.16s	remaining: 597ms
661:	learn: 6.3081903	total: 1.17s	remaining: 595ms
662:	learn: 6.3021504	total: 1.17s	remaining: 593ms
663:	learn: 6.2905018	total: 1.17s	remaining: 592ms
664:	learn: 6.2808978	total: 1.17s	remaining: 590ms
665:	learn: 6.2681410	total: 1.17s	remaining: 588ms
666:	learn: 6.2607337	total: 1.17s	remaining: 586ms
667:	learn: 6.2472417	total: 1.18s	remaining: 585ms
668:	learn: 6.2398655	total: 1.18s	remaining: 583ms
669:	learn: 6.2288830	total: 1.18s	remaining: 581ms
670:	learn: 6.2187209	total: 1.18s	remaining: 579ms
671:	learn: 6.2109707	total: 1.18s	remaining: 578ms
672:	learn: 6.2019104	total: 1.19s	remaining: 576ms
673:	learn: 6.1908009	total: 1.19s	remaining: 574ms
674:	learn: 6.1823198	total: 1.19s	remaining: 572ms
675:	learn: 6.1654870	total: 1.19s	remaining: 571ms
676:	learn: 6.1566978	total: 1.19s	remaining: 569ms
677:	learn: 6.1474965	total: 1.19s	remaining: 567ms
678:	learn: 6.1365545	total: 1.2s	remaining: 565ms
679:	learn: 6.1235656	total: 1.2s	remaining: 564ms
680:	learn: 6.1164174	total: 1.2s	remaining: 562ms
681:	learn: 6.1065574	total: 1.2s	remaining: 560ms
682:	learn: 6.0932209	total: 1.2s	remaining: 558ms
683:	learn: 6.0875130	total: 1.2s	remaining: 557ms
684:	learn: 6.0749985	total: 1.21s	remaining: 555ms
685:	learn: 6.0655905	total: 1.21s	remaining: 553ms
686:	learn: 6.0569066	total: 1.21s	remaining: 551ms
687:	learn: 6.0497125	total: 1.21s	remaining: 549ms
688:	learn: 6.0393195	total: 1.21s	remaining: 548ms
689:	learn: 6.0276034	total: 1.22s	remaining: 546ms
690:	learn: 6.0179721	total: 1.22s	remaining: 544ms
691:	learn: 6.0104262	total: 1.22s	remaining: 543ms
692:	learn: 5.9985469	total: 1.22s	remaining: 541ms
693:	learn: 5.9912550	total: 1.22s	remaining: 539ms
694:	learn: 5.9777251	total: 1.22s	remaining: 537ms
695:	learn: 5.9725871	total: 1.23s	remaining: 535ms
696:	learn: 5.9693135	total: 1.23s	remaining: 534ms
697:	learn: 5.9617956	total: 1.23s	remaining: 532ms
698:	learn: 5.9492106	total: 1.23s	remaining: 530ms
699:	learn: 5.9426789	total: 1.23s	remaining: 528ms
700:	learn: 5.9353525	total: 1.23s	remaining: 527ms
701:	learn: 5.9248473	total: 1.24s	remaining: 525ms
702:	learn: 5.9189405	total: 1.24s	remaining: 523ms
703:	learn: 5.9134506	total: 1.24s	remaining: 521ms
704:	learn: 5.9066086	total: 1.24s	remaining: 519ms
705:	learn: 5.8984224	total: 1.24s	remaining: 518ms
706:	learn: 5.8869025	total: 1.24s	remaining: 516ms
707:	learn: 5.8815234	total: 1.25s	remaining: 514ms
708:	learn: 5.8747360	total: 1.25s	remaining: 512ms
709:	learn: 5.8642225	total: 1.25s	remaining: 511ms
710:	learn: 5.8579417	total: 1.25s	remaining: 509ms
711:	learn: 5.8502551	total: 1.25s	remaining: 507ms
712:	learn: 5.8457623	total: 1.25s	remaining: 505ms
713:	learn: 5.8440916	total: 1.26s	remaining: 504ms
714:	learn: 5.8305467	total: 1.26s	remaining: 502ms
715:	learn: 5.8213940	total: 1.26s	remaining: 500ms
716:	learn: 5.8147554	total: 1.26s	remaining: 498ms
717:	learn: 5.8037559	total: 1.26s	remaining: 497ms
718:	learn: 5.7942027	total: 1.27s	remaining: 495ms
719:	learn: 5.7823656	total: 1.27s	remaining: 493ms
720:	learn: 5.7695343	total: 1.27s	remaining: 491ms
721:	learn: 5.7625878	total: 1.27s	remaining: 490ms
722:	learn: 5.7554412	total: 1.27s	remaining: 488ms
723:	learn: 5.7486669	total: 1.27s	remaining: 486ms
724:	learn: 5.7379925	total: 1.28s	remaining: 484ms
725:	learn: 5.7283296	total: 1.28s	remaining: 483ms
726:	learn: 5.7178240	total: 1.28s	remaining: 481ms
727:	learn: 5.7083990	total: 1.28s	remaining: 479ms
728:	learn: 5.7020656	total: 1.28s	remaining: 477ms
729:	learn: 5.6911876	total: 1.28s	remaining: 476ms
730:	learn: 5.6842299	total: 1.29s	remaining: 474ms
731:	learn: 5.6796787	total: 1.29s	remaining: 472ms
732:	learn: 5.6718787	total: 1.29s	remaining: 470ms
733:	learn: 5.6584145	total: 1.29s	remaining: 469ms
734:	learn: 5.6482242	total: 1.29s	remaining: 467ms
735:	learn: 5.6453706	total: 1.3s	remaining: 465ms
736:	learn: 5.6294521	total: 1.3s	remaining: 463ms
737:	learn: 5.6199833	total: 1.3s	remaining: 462ms
738:	learn: 5.6154974	total: 1.3s	remaining: 460ms
739:	learn: 5.6090941	total: 1.3s	remaining: 458ms
740:	learn: 5.5994484	total: 1.3s	remaining: 456ms
741:	learn: 5.5901117	total: 1.31s	remaining: 454ms
742:	learn: 5.5841650	total: 1.31s	remaining: 453ms
743:	learn: 5.5739975	total: 1.31s	remaining: 451ms
744:	learn: 5.5732469	total: 1.31s	remaining: 449ms
745:	learn: 5.5626405	total: 1.31s	remaining: 447ms
746:	learn: 5.5522308	total: 1.31s	remaining: 446ms
747:	learn: 5.5428471	total: 1.32s	remaining: 444ms
748:	learn: 5.5411999	total: 1.32s	remaining: 442ms
749:	learn: 5.5243014	total: 1.32s	remaining: 440ms
750:	learn: 5.5174185	total: 1.32s	remaining: 439ms
751:	learn: 5.5093868	total: 1.32s	remaining: 437ms
752:	learn: 5.4982037	total: 1.33s	remaining: 435ms
753:	learn: 5.4900693	total: 1.33s	remaining: 433ms
754:	learn: 5.4889619	total: 1.33s	remaining: 431ms
755:	learn: 5.4813567	total: 1.33s	remaining: 430ms
756:	learn: 5.4751921	total: 1.33s	remaining: 428ms
757:	learn: 5.4611536	total: 1.33s	remaining: 426ms
758:	learn: 5.4519512	total: 1.34s	remaining: 424ms
759:	learn: 5.4465806	total: 1.34s	remaining: 423ms
760:	learn: 5.4404580	total: 1.34s	remaining: 421ms
761:	learn: 5.4296219	total: 1.34s	remaining: 419ms
762:	learn: 5.4243836	total: 1.34s	remaining: 417ms
763:	learn: 5.4116439	total: 1.34s	remaining: 416ms
764:	learn: 5.4027740	total: 1.35s	remaining: 414ms
765:	learn: 5.3967758	total: 1.35s	remaining: 412ms
766:	learn: 5.3877915	total: 1.35s	remaining: 410ms
767:	learn: 5.3817890	total: 1.35s	remaining: 409ms
768:	learn: 5.3705106	total: 1.35s	remaining: 407ms
769:	learn: 5.3621990	total: 1.35s	remaining: 405ms
770:	learn: 5.3532432	total: 1.36s	remaining: 403ms
771:	learn: 5.3466171	total: 1.36s	remaining: 401ms
772:	learn: 5.3359624	total: 1.36s	remaining: 400ms
773:	learn: 5.3250901	total: 1.36s	remaining: 398ms
774:	learn: 5.3205870	total: 1.36s	remaining: 396ms
775:	learn: 5.3155956	total: 1.36s	remaining: 394ms
776:	learn: 5.3084237	total: 1.37s	remaining: 392ms
777:	learn: 5.2988827	total: 1.37s	remaining: 391ms
778:	learn: 5.2939415	total: 1.37s	remaining: 389ms
779:	learn: 5.2836002	total: 1.37s	remaining: 387ms
780:	learn: 5.2752070	total: 1.37s	remaining: 385ms
781:	learn: 5.2646650	total: 1.38s	remaining: 384ms
782:	learn: 5.2607290	total: 1.38s	remaining: 382ms
783:	learn: 5.2562386	total: 1.38s	remaining: 380ms
784:	learn: 5.2471817	total: 1.38s	remaining: 378ms
785:	learn: 5.2316823	total: 1.38s	remaining: 377ms
786:	learn: 5.2243284	total: 1.39s	remaining: 375ms
787:	learn: 5.2201677	total: 1.39s	remaining: 373ms
788:	learn: 5.2117817	total: 1.39s	remaining: 371ms
789:	learn: 5.2046331	total: 1.39s	remaining: 370ms
790:	learn: 5.2018883	total: 1.39s	remaining: 368ms
791:	learn: 5.1911673	total: 1.39s	remaining: 366ms
792:	learn: 5.1886766	total: 1.4s	remaining: 364ms
793:	learn: 5.1832617	total: 1.4s	remaining: 363ms
794:	learn: 5.1710016	total: 1.4s	remaining: 361ms
795:	learn: 5.1672381	total: 1.4s	remaining: 359ms
796:	learn: 5.1561176	total: 1.4s	remaining: 357ms
797:	learn: 5.1484195	total: 1.4s	remaining: 356ms
798:	learn: 5.1400131	total: 1.41s	remaining: 354ms
799:	learn: 5.1352903	total: 1.41s	remaining: 352ms
800:	learn: 5.1272836	total: 1.41s	remaining: 350ms
801:	learn: 5.1167254	total: 1.41s	remaining: 349ms
802:	learn: 5.1120565	total: 1.41s	remaining: 347ms
803:	learn: 5.1078253	total: 1.42s	remaining: 345ms
804:	learn: 5.1003575	total: 1.42s	remaining: 343ms
805:	learn: 5.0889075	total: 1.42s	remaining: 341ms
806:	learn: 5.0831528	total: 1.42s	remaining: 340ms
807:	learn: 5.0746136	total: 1.42s	remaining: 338ms
808:	learn: 5.0624074	total: 1.42s	remaining: 336ms
809:	learn: 5.0532013	total: 1.43s	remaining: 334ms
810:	learn: 5.0517073	total: 1.43s	remaining: 333ms
811:	learn: 5.0444826	total: 1.43s	remaining: 331ms
812:	learn: 5.0363937	total: 1.43s	remaining: 329ms
813:	learn: 5.0252769	total: 1.43s	remaining: 327ms
814:	learn: 5.0191941	total: 1.43s	remaining: 326ms
815:	learn: 5.0119682	total: 1.44s	remaining: 324ms
816:	learn: 5.0042757	total: 1.44s	remaining: 322ms
817:	learn: 4.9989162	total: 1.44s	remaining: 320ms
818:	learn: 4.9944147	total: 1.44s	remaining: 319ms
819:	learn: 4.9859583	total: 1.44s	remaining: 317ms
820:	learn: 4.9751046	total: 1.44s	remaining: 315ms
821:	learn: 4.9696587	total: 1.45s	remaining: 313ms
822:	learn: 4.9605691	total: 1.45s	remaining: 311ms
823:	learn: 4.9534868	total: 1.45s	remaining: 310ms
824:	learn: 4.9468370	total: 1.45s	remaining: 308ms
825:	learn: 4.9429338	total: 1.45s	remaining: 306ms
826:	learn: 4.9395810	total: 1.45s	remaining: 304ms
827:	learn: 4.9323373	total: 1.46s	remaining: 303ms
828:	learn: 4.9288475	total: 1.46s	remaining: 301ms
829:	learn: 4.9244858	total: 1.46s	remaining: 299ms
830:	learn: 4.9168942	total: 1.46s	remaining: 297ms
831:	learn: 4.9066740	total: 1.46s	remaining: 296ms
832:	learn: 4.8994284	total: 1.47s	remaining: 294ms
833:	learn: 4.8947728	total: 1.47s	remaining: 292ms
834:	learn: 4.8871835	total: 1.47s	remaining: 291ms
835:	learn: 4.8854430	total: 1.47s	remaining: 289ms
836:	learn: 4.8847691	total: 1.48s	remaining: 287ms
837:	learn: 4.8744219	total: 1.48s	remaining: 286ms
838:	learn: 4.8675361	total: 1.48s	remaining: 284ms
839:	learn: 4.8663195	total: 1.48s	remaining: 282ms
840:	learn: 4.8603067	total: 1.48s	remaining: 280ms
841:	learn: 4.8546589	total: 1.49s	remaining: 279ms
842:	learn: 4.8499815	total: 1.49s	remaining: 277ms
843:	learn: 4.8428033	total: 1.49s	remaining: 275ms
844:	learn: 4.8414431	total: 1.49s	remaining: 273ms
845:	learn: 4.8316252	total: 1.49s	remaining: 272ms
846:	learn: 4.8260193	total: 1.49s	remaining: 270ms
847:	learn: 4.8132406	total: 1.5s	remaining: 268ms
848:	learn: 4.8100901	total: 1.5s	remaining: 266ms
849:	learn: 4.8082395	total: 1.5s	remaining: 265ms
850:	learn: 4.7961685	total: 1.5s	remaining: 263ms
851:	learn: 4.7896408	total: 1.5s	remaining: 261ms
852:	learn: 4.7847795	total: 1.5s	remaining: 259ms
853:	learn: 4.7841459	total: 1.51s	remaining: 258ms
854:	learn: 4.7806161	total: 1.51s	remaining: 256ms
855:	learn: 4.7744919	total: 1.51s	remaining: 254ms
856:	learn: 4.7701482	total: 1.51s	remaining: 252ms
857:	learn: 4.7638275	total: 1.51s	remaining: 250ms
858:	learn: 4.7565117	total: 1.51s	remaining: 249ms
859:	learn: 4.7500641	total: 1.52s	remaining: 247ms
860:	learn: 4.7448630	total: 1.52s	remaining: 245ms
861:	learn: 4.7359006	total: 1.52s	remaining: 243ms
862:	learn: 4.7343339	total: 1.52s	remaining: 242ms
863:	learn: 4.7275164	total: 1.52s	remaining: 240ms
864:	learn: 4.7201022	total: 1.52s	remaining: 238ms
865:	learn: 4.7156583	total: 1.53s	remaining: 236ms
866:	learn: 4.7137830	total: 1.53s	remaining: 235ms
867:	learn: 4.7039017	total: 1.53s	remaining: 233ms
868:	learn: 4.6991932	total: 1.53s	remaining: 231ms
869:	learn: 4.6937981	total: 1.53s	remaining: 229ms
870:	learn: 4.6839635	total: 1.54s	remaining: 228ms
871:	learn: 4.6796941	total: 1.54s	remaining: 226ms
872:	learn: 4.6716119	total: 1.54s	remaining: 224ms
873:	learn: 4.6648783	total: 1.54s	remaining: 222ms
874:	learn: 4.6616719	total: 1.54s	remaining: 220ms
875:	learn: 4.6541145	total: 1.54s	remaining: 219ms
876:	learn: 4.6426419	total: 1.55s	remaining: 217ms
877:	learn: 4.6353420	total: 1.55s	remaining: 215ms
878:	learn: 4.6314232	total: 1.55s	remaining: 213ms
879:	learn: 4.6217829	total: 1.55s	remaining: 212ms
880:	learn: 4.6185020	total: 1.55s	remaining: 210ms
881:	learn: 4.6160115	total: 1.55s	remaining: 208ms
882:	learn: 4.6151303	total: 1.56s	remaining: 206ms
883:	learn: 4.6112707	total: 1.56s	remaining: 204ms
884:	learn: 4.6011709	total: 1.56s	remaining: 203ms
885:	learn: 4.5948811	total: 1.56s	remaining: 201ms
886:	learn: 4.5899642	total: 1.56s	remaining: 199ms
887:	learn: 4.5838714	total: 1.56s	remaining: 197ms
888:	learn: 4.5782681	total: 1.57s	remaining: 196ms
889:	learn: 4.5731877	total: 1.57s	remaining: 194ms
890:	learn: 4.5672136	total: 1.57s	remaining: 192ms
891:	learn: 4.5598943	total: 1.57s	remaining: 190ms
892:	learn: 4.5538542	total: 1.57s	remaining: 189ms
893:	learn: 4.5523316	total: 1.58s	remaining: 187ms
894:	learn: 4.5501754	total: 1.58s	remaining: 185ms
895:	learn: 4.5462551	total: 1.58s	remaining: 183ms
896:	learn: 4.5418408	total: 1.58s	remaining: 182ms
897:	learn: 4.5390552	total: 1.58s	remaining: 180ms
898:	learn: 4.5321971	total: 1.58s	remaining: 178ms
899:	learn: 4.5279588	total: 1.59s	remaining: 176ms
900:	learn: 4.5270589	total: 1.59s	remaining: 175ms
901:	learn: 4.5199884	total: 1.59s	remaining: 173ms
902:	learn: 4.5102580	total: 1.59s	remaining: 171ms
903:	learn: 4.5020162	total: 1.59s	remaining: 169ms
904:	learn: 4.4935717	total: 1.6s	remaining: 168ms
905:	learn: 4.4896945	total: 1.6s	remaining: 166ms
906:	learn: 4.4842616	total: 1.6s	remaining: 164ms
907:	learn: 4.4772084	total: 1.6s	remaining: 162ms
908:	learn: 4.4739528	total: 1.6s	remaining: 161ms
909:	learn: 4.4658296	total: 1.6s	remaining: 159ms
910:	learn: 4.4547744	total: 1.61s	remaining: 157ms
911:	learn: 4.4532397	total: 1.61s	remaining: 155ms
912:	learn: 4.4473733	total: 1.61s	remaining: 153ms
913:	learn: 4.4461834	total: 1.61s	remaining: 152ms
914:	learn: 4.4405060	total: 1.61s	remaining: 150ms
915:	learn: 4.4328893	total: 1.61s	remaining: 148ms
916:	learn: 4.4288507	total: 1.62s	remaining: 146ms
917:	learn: 4.4232878	total: 1.62s	remaining: 145ms
918:	learn: 4.4155788	total: 1.62s	remaining: 143ms
919:	learn: 4.4096655	total: 1.62s	remaining: 141ms
920:	learn: 4.4027199	total: 1.63s	remaining: 139ms
921:	learn: 4.3932745	total: 1.63s	remaining: 138ms
922:	learn: 4.3875161	total: 1.63s	remaining: 136ms
923:	learn: 4.3814670	total: 1.63s	remaining: 134ms
924:	learn: 4.3737251	total: 1.63s	remaining: 132ms
925:	learn: 4.3699200	total: 1.64s	remaining: 131ms
926:	learn: 4.3600657	total: 1.64s	remaining: 129ms
927:	learn: 4.3525413	total: 1.64s	remaining: 127ms
928:	learn: 4.3521273	total: 1.64s	remaining: 125ms
929:	learn: 4.3469846	total: 1.64s	remaining: 124ms
930:	learn: 4.3386788	total: 1.64s	remaining: 122ms
931:	learn: 4.3338256	total: 1.65s	remaining: 120ms
932:	learn: 4.3253650	total: 1.65s	remaining: 118ms
933:	learn: 4.3164096	total: 1.65s	remaining: 117ms
934:	learn: 4.3111272	total: 1.65s	remaining: 115ms
935:	learn: 4.3029741	total: 1.65s	remaining: 113ms
936:	learn: 4.2946383	total: 1.66s	remaining: 111ms
937:	learn: 4.2889605	total: 1.66s	remaining: 110ms
938:	learn: 4.2821288	total: 1.66s	remaining: 108ms
939:	learn: 4.2719515	total: 1.66s	remaining: 106ms
940:	learn: 4.2670258	total: 1.66s	remaining: 104ms
941:	learn: 4.2639678	total: 1.67s	remaining: 103ms
942:	learn: 4.2572790	total: 1.67s	remaining: 101ms
943:	learn: 4.2551941	total: 1.67s	remaining: 99ms
944:	learn: 4.2491739	total: 1.67s	remaining: 97.2ms
945:	learn: 4.2443074	total: 1.67s	remaining: 95.5ms
946:	learn: 4.2361073	total: 1.67s	remaining: 93.7ms
947:	learn: 4.2310525	total: 1.68s	remaining: 92ms
948:	learn: 4.2273431	total: 1.68s	remaining: 90.2ms
949:	learn: 4.2238224	total: 1.68s	remaining: 88.4ms
950:	learn: 4.2183697	total: 1.68s	remaining: 86.7ms
951:	learn: 4.2123353	total: 1.68s	remaining: 84.9ms
952:	learn: 4.2081835	total: 1.69s	remaining: 83.1ms
953:	learn: 4.2031013	total: 1.69s	remaining: 81.4ms
954:	learn: 4.1952038	total: 1.69s	remaining: 79.6ms
955:	learn: 4.1888167	total: 1.69s	remaining: 77.8ms
956:	learn: 4.1815715	total: 1.69s	remaining: 76.1ms
957:	learn: 4.1750960	total: 1.69s	remaining: 74.3ms
958:	learn: 4.1686227	total: 1.7s	remaining: 72.5ms
959:	learn: 4.1612659	total: 1.7s	remaining: 70.8ms
960:	learn: 4.1551775	total: 1.7s	remaining: 69ms
961:	learn: 4.1486609	total: 1.7s	remaining: 67.2ms
962:	learn: 4.1419664	total: 1.7s	remaining: 65.4ms
963:	learn: 4.1367806	total: 1.71s	remaining: 63.7ms
964:	learn: 4.1291163	total: 1.71s	remaining: 61.9ms
965:	learn: 4.1261000	total: 1.71s	remaining: 60.1ms
966:	learn: 4.1240487	total: 1.71s	remaining: 58.4ms
967:	learn: 4.1179605	total: 1.71s	remaining: 56.6ms
968:	learn: 4.1095208	total: 1.71s	remaining: 54.8ms
969:	learn: 4.1034689	total: 1.72s	remaining: 53.1ms
970:	learn: 4.1026026	total: 1.72s	remaining: 51.3ms
971:	learn: 4.0921503	total: 1.72s	remaining: 49.5ms
972:	learn: 4.0902687	total: 1.72s	remaining: 47.8ms
973:	learn: 4.0879341	total: 1.72s	remaining: 46ms
974:	learn: 4.0829656	total: 1.72s	remaining: 44.2ms
975:	learn: 4.0812730	total: 1.73s	remaining: 42.4ms
976:	learn: 4.0752202	total: 1.73s	remaining: 40.7ms
977:	learn: 4.0705759	total: 1.73s	remaining: 38.9ms
978:	learn: 4.0698423	total: 1.73s	remaining: 37.1ms
979:	learn: 4.0641169	total: 1.73s	remaining: 35.4ms
980:	learn: 4.0541810	total: 1.74s	remaining: 33.6ms
981:	learn: 4.0489305	total: 1.74s	remaining: 31.8ms
982:	learn: 4.0479612	total: 1.74s	remaining: 30.1ms
983:	learn: 4.0426502	total: 1.74s	remaining: 28.3ms
984:	learn: 4.0390032	total: 1.74s	remaining: 26.5ms
985:	learn: 4.0343601	total: 1.74s	remaining: 24.8ms
986:	learn: 4.0294874	total: 1.75s	remaining: 23ms
987:	learn: 4.0251545	total: 1.75s	remaining: 21.2ms
988:	learn: 4.0209805	total: 1.75s	remaining: 19.5ms
989:	learn: 4.0143243	total: 1.75s	remaining: 17.7ms
990:	learn: 4.0102655	total: 1.75s	remaining: 15.9ms
991:	learn: 4.0081794	total: 1.75s	remaining: 14.1ms
992:	learn: 4.0035412	total: 1.76s	remaining: 12.4ms
993:	learn: 3.9989122	total: 1.76s	remaining: 10.6ms
994:	learn: 3.9945728	total: 1.76s	remaining: 8.84ms
995:	learn: 3.9825072	total: 1.76s	remaining: 7.07ms
996:	learn: 3.9726224	total: 1.76s	remaining: 5.3ms
997:	learn: 3.9676806	total: 1.76s	remaining: 3.54ms
998:	learn: 3.9658766	total: 1.77s	remaining: 1.77ms
999:	learn: 3.9614198	total: 1.77s	remaining: 0us
Learning rate set to 0.041897
0:	learn: 46.6969676	total: 2.14ms	remaining: 2.13s
1:	learn: 46.0278362	total: 4.03ms	remaining: 2.01s
2:	learn: 45.5259126	total: 5.72ms	remaining: 1.9s
3:	learn: 44.6330601	total: 7.4ms	remaining: 1.84s
4:	learn: 43.9876680	total: 9.11ms	remaining: 1.81s
5:	learn: 43.4509556	total: 10.8ms	remaining: 1.78s
6:	learn: 42.7826336	total: 12.4ms	remaining: 1.76s
7:	learn: 42.2831012	total: 14.3ms	remaining: 1.77s
8:	learn: 41.6844530	total: 16ms	remaining: 1.76s
9:	learn: 41.1812834	total: 17.7ms	remaining: 1.75s
10:	learn: 40.4711599	total: 19.4ms	remaining: 1.74s
11:	learn: 39.6836618	total: 21.1ms	remaining: 1.74s
12:	learn: 39.0010812	total: 22.7ms	remaining: 1.73s
13:	learn: 38.3340297	total: 24.4ms	remaining: 1.72s
14:	learn: 37.9817058	total: 26.1ms	remaining: 1.71s
15:	learn: 37.4687048	total: 27.8ms	remaining: 1.71s
16:	learn: 36.8250063	total: 29.5ms	remaining: 1.71s
17:	learn: 36.2932235	total: 31.4ms	remaining: 1.71s
18:	learn: 35.8638943	total: 33.2ms	remaining: 1.71s
19:	learn: 35.3479372	total: 35ms	remaining: 1.71s
20:	learn: 34.9979136	total: 36.7ms	remaining: 1.71s
21:	learn: 34.5867634	total: 38.4ms	remaining: 1.71s
22:	learn: 34.0946134	total: 40.1ms	remaining: 1.7s
23:	learn: 33.7172485	total: 41.7ms	remaining: 1.7s
24:	learn: 33.3522207	total: 43.4ms	remaining: 1.69s
25:	learn: 32.8640457	total: 45.1ms	remaining: 1.69s
26:	learn: 32.3537468	total: 46.9ms	remaining: 1.69s
27:	learn: 32.0738414	total: 48.6ms	remaining: 1.69s
28:	learn: 31.9133822	total: 50.4ms	remaining: 1.69s
29:	learn: 31.5618665	total: 52.2ms	remaining: 1.69s
30:	learn: 31.1867318	total: 53.9ms	remaining: 1.69s
31:	learn: 30.8865582	total: 55.5ms	remaining: 1.68s
32:	learn: 30.4511087	total: 57.2ms	remaining: 1.68s
33:	learn: 30.1780130	total: 58.8ms	remaining: 1.67s
34:	learn: 29.9096851	total: 60.6ms	remaining: 1.67s
35:	learn: 29.7702886	total: 62.4ms	remaining: 1.67s
36:	learn: 29.6173040	total: 64.1ms	remaining: 1.67s
37:	learn: 29.2903428	total: 65.9ms	remaining: 1.67s
38:	learn: 29.0583590	total: 67.7ms	remaining: 1.67s
39:	learn: 28.8642880	total: 69.4ms	remaining: 1.66s
40:	learn: 28.6408212	total: 71ms	remaining: 1.66s
41:	learn: 28.4306247	total: 72.7ms	remaining: 1.66s
42:	learn: 28.1915208	total: 74.4ms	remaining: 1.66s
43:	learn: 27.8615713	total: 76ms	remaining: 1.65s
44:	learn: 27.6819891	total: 77.7ms	remaining: 1.65s
45:	learn: 27.5934782	total: 79.5ms	remaining: 1.65s
46:	learn: 27.3025392	total: 81.2ms	remaining: 1.65s
47:	learn: 27.2206710	total: 82.9ms	remaining: 1.64s
48:	learn: 27.1250524	total: 84.9ms	remaining: 1.65s
49:	learn: 26.9243644	total: 86.5ms	remaining: 1.64s
50:	learn: 26.6858673	total: 88.2ms	remaining: 1.64s
51:	learn: 26.6039204	total: 89.9ms	remaining: 1.64s
52:	learn: 26.5314455	total: 91.6ms	remaining: 1.64s
53:	learn: 26.3226860	total: 93.4ms	remaining: 1.64s
54:	learn: 26.1170201	total: 95.2ms	remaining: 1.64s
55:	learn: 26.0214464	total: 97.1ms	remaining: 1.64s
56:	learn: 25.8116300	total: 98.8ms	remaining: 1.63s
57:	learn: 25.5377264	total: 101ms	remaining: 1.63s
58:	learn: 25.3900900	total: 102ms	remaining: 1.63s
59:	learn: 25.2080491	total: 104ms	remaining: 1.63s
60:	learn: 25.1239712	total: 106ms	remaining: 1.62s
61:	learn: 25.0579221	total: 107ms	remaining: 1.62s
62:	learn: 24.9091990	total: 109ms	remaining: 1.62s
63:	learn: 24.7754949	total: 111ms	remaining: 1.62s
64:	learn: 24.6098880	total: 112ms	remaining: 1.61s
65:	learn: 24.5598670	total: 114ms	remaining: 1.61s
66:	learn: 24.3281104	total: 116ms	remaining: 1.61s
67:	learn: 24.1530506	total: 117ms	remaining: 1.61s
68:	learn: 24.0953908	total: 119ms	remaining: 1.61s
69:	learn: 23.9499463	total: 121ms	remaining: 1.6s
70:	learn: 23.8190527	total: 123ms	remaining: 1.6s
71:	learn: 23.6621941	total: 124ms	remaining: 1.6s
72:	learn: 23.5915559	total: 126ms	remaining: 1.6s
73:	learn: 23.4553069	total: 128ms	remaining: 1.6s
74:	learn: 23.3946312	total: 130ms	remaining: 1.6s
75:	learn: 23.2664343	total: 131ms	remaining: 1.6s
76:	learn: 23.1753487	total: 133ms	remaining: 1.59s
77:	learn: 23.0935540	total: 135ms	remaining: 1.59s
78:	learn: 22.9177249	total: 136ms	remaining: 1.59s
79:	learn: 22.8321787	total: 138ms	remaining: 1.59s
80:	learn: 22.6977868	total: 140ms	remaining: 1.58s
81:	learn: 22.6345085	total: 141ms	remaining: 1.58s
82:	learn: 22.4508317	total: 143ms	remaining: 1.58s
83:	learn: 22.3652829	total: 145ms	remaining: 1.58s
84:	learn: 22.2500061	total: 147ms	remaining: 1.58s
85:	learn: 22.1853816	total: 149ms	remaining: 1.58s
86:	learn: 22.0663036	total: 150ms	remaining: 1.58s
87:	learn: 22.0108732	total: 152ms	remaining: 1.58s
88:	learn: 21.9157965	total: 154ms	remaining: 1.57s
89:	learn: 21.8526079	total: 155ms	remaining: 1.57s
90:	learn: 21.7355008	total: 157ms	remaining: 1.57s
91:	learn: 21.7012332	total: 159ms	remaining: 1.57s
92:	learn: 21.6645007	total: 161ms	remaining: 1.57s
93:	learn: 21.6291589	total: 162ms	remaining: 1.56s
94:	learn: 21.5803764	total: 164ms	remaining: 1.56s
95:	learn: 21.4291300	total: 166ms	remaining: 1.56s
96:	learn: 21.2785863	total: 168ms	remaining: 1.56s
97:	learn: 21.2410801	total: 169ms	remaining: 1.56s
98:	learn: 21.1560760	total: 171ms	remaining: 1.56s
99:	learn: 21.0643031	total: 173ms	remaining: 1.56s
100:	learn: 20.9798459	total: 175ms	remaining: 1.56s
101:	learn: 20.8577419	total: 177ms	remaining: 1.56s
102:	learn: 20.7828382	total: 179ms	remaining: 1.56s
103:	learn: 20.7459802	total: 181ms	remaining: 1.56s
104:	learn: 20.6590501	total: 182ms	remaining: 1.55s
105:	learn: 20.6216825	total: 184ms	remaining: 1.55s
106:	learn: 20.5775769	total: 186ms	remaining: 1.55s
107:	learn: 20.4712070	total: 187ms	remaining: 1.55s
108:	learn: 20.3499057	total: 189ms	remaining: 1.55s
109:	learn: 20.2800501	total: 191ms	remaining: 1.55s
110:	learn: 20.2113381	total: 193ms	remaining: 1.54s
111:	learn: 20.1607526	total: 195ms	remaining: 1.54s
112:	learn: 20.0916540	total: 197ms	remaining: 1.54s
113:	learn: 19.9323742	total: 198ms	remaining: 1.54s
114:	learn: 19.9012293	total: 200ms	remaining: 1.54s
115:	learn: 19.8385085	total: 202ms	remaining: 1.54s
116:	learn: 19.7808903	total: 203ms	remaining: 1.53s
117:	learn: 19.7646620	total: 205ms	remaining: 1.53s
118:	learn: 19.6937936	total: 206ms	remaining: 1.53s
119:	learn: 19.6490011	total: 208ms	remaining: 1.53s
120:	learn: 19.6179672	total: 210ms	remaining: 1.52s
121:	learn: 19.5742393	total: 212ms	remaining: 1.52s
122:	learn: 19.4810557	total: 214ms	remaining: 1.52s
123:	learn: 19.3500056	total: 215ms	remaining: 1.52s
124:	learn: 19.2476397	total: 217ms	remaining: 1.52s
125:	learn: 19.2100148	total: 219ms	remaining: 1.51s
126:	learn: 19.1005314	total: 220ms	remaining: 1.51s
127:	learn: 19.0294177	total: 222ms	remaining: 1.51s
128:	learn: 18.9895141	total: 224ms	remaining: 1.51s
129:	learn: 18.9122825	total: 226ms	remaining: 1.51s
130:	learn: 18.8479640	total: 228ms	remaining: 1.51s
131:	learn: 18.7981439	total: 230ms	remaining: 1.51s
132:	learn: 18.7355297	total: 232ms	remaining: 1.51s
133:	learn: 18.6380616	total: 234ms	remaining: 1.51s
134:	learn: 18.5988566	total: 236ms	remaining: 1.51s
135:	learn: 18.5615005	total: 238ms	remaining: 1.51s
136:	learn: 18.5317816	total: 240ms	remaining: 1.51s
137:	learn: 18.4997719	total: 242ms	remaining: 1.51s
138:	learn: 18.4567588	total: 245ms	remaining: 1.51s
139:	learn: 18.3812907	total: 247ms	remaining: 1.51s
140:	learn: 18.3017933	total: 249ms	remaining: 1.51s
141:	learn: 18.2599281	total: 251ms	remaining: 1.52s
142:	learn: 18.2251968	total: 253ms	remaining: 1.52s
143:	learn: 18.1865512	total: 256ms	remaining: 1.52s
144:	learn: 18.1591768	total: 258ms	remaining: 1.52s
145:	learn: 18.1247466	total: 260ms	remaining: 1.52s
146:	learn: 18.0444223	total: 263ms	remaining: 1.52s
147:	learn: 18.0083385	total: 265ms	remaining: 1.52s
148:	learn: 17.9532600	total: 267ms	remaining: 1.52s
149:	learn: 17.9262045	total: 269ms	remaining: 1.52s
150:	learn: 17.8619428	total: 272ms	remaining: 1.53s
151:	learn: 17.8222256	total: 274ms	remaining: 1.53s
152:	learn: 17.7802519	total: 276ms	remaining: 1.52s
153:	learn: 17.7584428	total: 278ms	remaining: 1.53s
154:	learn: 17.6983560	total: 280ms	remaining: 1.52s
155:	learn: 17.6472901	total: 282ms	remaining: 1.52s
156:	learn: 17.5594477	total: 284ms	remaining: 1.52s
157:	learn: 17.5175627	total: 286ms	remaining: 1.52s
158:	learn: 17.4522407	total: 288ms	remaining: 1.52s
159:	learn: 17.3850677	total: 289ms	remaining: 1.52s
160:	learn: 17.3233627	total: 291ms	remaining: 1.52s
161:	learn: 17.2758720	total: 293ms	remaining: 1.51s
162:	learn: 17.2190981	total: 294ms	remaining: 1.51s
163:	learn: 17.1710989	total: 296ms	remaining: 1.51s
164:	learn: 17.0573629	total: 298ms	remaining: 1.51s
165:	learn: 16.9300940	total: 299ms	remaining: 1.5s
166:	learn: 16.9091388	total: 301ms	remaining: 1.5s
167:	learn: 16.8681450	total: 303ms	remaining: 1.5s
168:	learn: 16.8098654	total: 305ms	remaining: 1.5s
169:	learn: 16.7774572	total: 306ms	remaining: 1.5s
170:	learn: 16.7363498	total: 308ms	remaining: 1.49s
171:	learn: 16.7016238	total: 310ms	remaining: 1.49s
172:	learn: 16.6603735	total: 311ms	remaining: 1.49s
173:	learn: 16.5832932	total: 313ms	remaining: 1.49s
174:	learn: 16.5465729	total: 315ms	remaining: 1.48s
175:	learn: 16.4736529	total: 317ms	remaining: 1.48s
176:	learn: 16.4086463	total: 319ms	remaining: 1.48s
177:	learn: 16.3488076	total: 321ms	remaining: 1.48s
178:	learn: 16.2768034	total: 322ms	remaining: 1.48s
179:	learn: 16.2216516	total: 324ms	remaining: 1.48s
180:	learn: 16.1092130	total: 326ms	remaining: 1.47s
181:	learn: 16.0476657	total: 327ms	remaining: 1.47s
182:	learn: 15.9782320	total: 329ms	remaining: 1.47s
183:	learn: 15.9459805	total: 331ms	remaining: 1.47s
184:	learn: 15.8888438	total: 333ms	remaining: 1.47s
185:	learn: 15.8193638	total: 334ms	remaining: 1.46s
186:	learn: 15.7541971	total: 336ms	remaining: 1.46s
187:	learn: 15.7093431	total: 338ms	remaining: 1.46s
188:	learn: 15.6705495	total: 340ms	remaining: 1.46s
189:	learn: 15.6133870	total: 341ms	remaining: 1.45s
190:	learn: 15.5624326	total: 343ms	remaining: 1.45s
191:	learn: 15.4959563	total: 345ms	remaining: 1.45s
192:	learn: 15.4558100	total: 346ms	remaining: 1.45s
193:	learn: 15.4390742	total: 348ms	remaining: 1.45s
194:	learn: 15.3910745	total: 350ms	remaining: 1.45s
195:	learn: 15.3565042	total: 352ms	remaining: 1.44s
196:	learn: 15.2626670	total: 354ms	remaining: 1.44s
197:	learn: 15.2100385	total: 355ms	remaining: 1.44s
198:	learn: 15.1758905	total: 357ms	remaining: 1.44s
199:	learn: 15.0814261	total: 359ms	remaining: 1.44s
200:	learn: 15.0244121	total: 360ms	remaining: 1.43s
201:	learn: 14.9674957	total: 362ms	remaining: 1.43s
202:	learn: 14.9243373	total: 364ms	remaining: 1.43s
203:	learn: 14.8647758	total: 366ms	remaining: 1.43s
204:	learn: 14.8302744	total: 368ms	remaining: 1.43s
205:	learn: 14.8023456	total: 369ms	remaining: 1.42s
206:	learn: 14.7632943	total: 371ms	remaining: 1.42s
207:	learn: 14.7304923	total: 373ms	remaining: 1.42s
208:	learn: 14.6800485	total: 374ms	remaining: 1.42s
209:	learn: 14.6554242	total: 376ms	remaining: 1.42s
210:	learn: 14.6128881	total: 378ms	remaining: 1.41s
211:	learn: 14.5661005	total: 380ms	remaining: 1.41s
212:	learn: 14.5352144	total: 382ms	remaining: 1.41s
213:	learn: 14.4893754	total: 383ms	remaining: 1.41s
214:	learn: 14.4036480	total: 385ms	remaining: 1.41s
215:	learn: 14.3624236	total: 387ms	remaining: 1.4s
216:	learn: 14.2800967	total: 388ms	remaining: 1.4s
217:	learn: 14.2123668	total: 390ms	remaining: 1.4s
218:	learn: 14.1135383	total: 392ms	remaining: 1.4s
219:	learn: 14.0511412	total: 394ms	remaining: 1.4s
220:	learn: 13.9988713	total: 396ms	remaining: 1.4s
221:	learn: 13.9378393	total: 398ms	remaining: 1.39s
222:	learn: 13.8599242	total: 399ms	remaining: 1.39s
223:	learn: 13.8398965	total: 401ms	remaining: 1.39s
224:	learn: 13.7779689	total: 403ms	remaining: 1.39s
225:	learn: 13.7343743	total: 405ms	remaining: 1.39s
226:	learn: 13.6956619	total: 406ms	remaining: 1.38s
227:	learn: 13.6246621	total: 408ms	remaining: 1.38s
228:	learn: 13.5817216	total: 410ms	remaining: 1.38s
229:	learn: 13.5461504	total: 412ms	remaining: 1.38s
230:	learn: 13.4803942	total: 414ms	remaining: 1.38s
231:	learn: 13.4313089	total: 416ms	remaining: 1.38s
232:	learn: 13.3908830	total: 417ms	remaining: 1.37s
233:	learn: 13.3298166	total: 419ms	remaining: 1.37s
234:	learn: 13.2798606	total: 421ms	remaining: 1.37s
235:	learn: 13.2472974	total: 423ms	remaining: 1.37s
236:	learn: 13.2172124	total: 425ms	remaining: 1.37s
237:	learn: 13.1722898	total: 426ms	remaining: 1.36s
238:	learn: 13.1301178	total: 429ms	remaining: 1.36s
239:	learn: 13.0849543	total: 430ms	remaining: 1.36s
240:	learn: 13.0531556	total: 432ms	remaining: 1.36s
241:	learn: 13.0091742	total: 434ms	remaining: 1.36s
242:	learn: 12.9465277	total: 436ms	remaining: 1.36s
243:	learn: 12.9183087	total: 437ms	remaining: 1.35s
244:	learn: 12.8916521	total: 439ms	remaining: 1.35s
245:	learn: 12.8596061	total: 441ms	remaining: 1.35s
246:	learn: 12.8353507	total: 443ms	remaining: 1.35s
247:	learn: 12.8046203	total: 455ms	remaining: 1.38s
248:	learn: 12.7746556	total: 457ms	remaining: 1.38s
249:	learn: 12.7215451	total: 459ms	remaining: 1.38s
250:	learn: 12.6736904	total: 460ms	remaining: 1.37s
251:	learn: 12.6438470	total: 462ms	remaining: 1.37s
252:	learn: 12.5718909	total: 464ms	remaining: 1.37s
253:	learn: 12.5291755	total: 466ms	remaining: 1.37s
254:	learn: 12.5079172	total: 467ms	remaining: 1.36s
255:	learn: 12.4788825	total: 469ms	remaining: 1.36s
256:	learn: 12.4550768	total: 471ms	remaining: 1.36s
257:	learn: 12.4182079	total: 472ms	remaining: 1.36s
258:	learn: 12.3868686	total: 474ms	remaining: 1.36s
259:	learn: 12.3563197	total: 476ms	remaining: 1.35s
260:	learn: 12.3205378	total: 478ms	remaining: 1.35s
261:	learn: 12.2915957	total: 479ms	remaining: 1.35s
262:	learn: 12.2717313	total: 481ms	remaining: 1.35s
263:	learn: 12.2497969	total: 483ms	remaining: 1.35s
264:	learn: 12.2131635	total: 485ms	remaining: 1.34s
265:	learn: 12.1671224	total: 486ms	remaining: 1.34s
266:	learn: 12.1255007	total: 488ms	remaining: 1.34s
267:	learn: 12.0820243	total: 490ms	remaining: 1.34s
268:	learn: 12.0478364	total: 492ms	remaining: 1.33s
269:	learn: 12.0026726	total: 493ms	remaining: 1.33s
270:	learn: 11.9764807	total: 495ms	remaining: 1.33s
271:	learn: 11.9405898	total: 497ms	remaining: 1.33s
272:	learn: 11.9051938	total: 499ms	remaining: 1.33s
273:	learn: 11.8740936	total: 500ms	remaining: 1.32s
274:	learn: 11.8431686	total: 502ms	remaining: 1.32s
275:	learn: 11.8121567	total: 504ms	remaining: 1.32s
276:	learn: 11.7924069	total: 505ms	remaining: 1.32s
277:	learn: 11.7566227	total: 507ms	remaining: 1.32s
278:	learn: 11.7292885	total: 509ms	remaining: 1.31s
279:	learn: 11.6794010	total: 511ms	remaining: 1.31s
280:	learn: 11.6520786	total: 513ms	remaining: 1.31s
281:	learn: 11.6388402	total: 514ms	remaining: 1.31s
282:	learn: 11.6052506	total: 516ms	remaining: 1.31s
283:	learn: 11.5820261	total: 518ms	remaining: 1.3s
284:	learn: 11.5433116	total: 519ms	remaining: 1.3s
285:	learn: 11.5126062	total: 521ms	remaining: 1.3s
286:	learn: 11.4808344	total: 523ms	remaining: 1.3s
287:	learn: 11.4702313	total: 525ms	remaining: 1.3s
288:	learn: 11.4536886	total: 526ms	remaining: 1.29s
289:	learn: 11.4207053	total: 528ms	remaining: 1.29s
290:	learn: 11.3998430	total: 530ms	remaining: 1.29s
291:	learn: 11.3542481	total: 531ms	remaining: 1.29s
292:	learn: 11.3132571	total: 533ms	remaining: 1.29s
293:	learn: 11.2877916	total: 535ms	remaining: 1.28s
294:	learn: 11.2486786	total: 537ms	remaining: 1.28s
295:	learn: 11.2244040	total: 538ms	remaining: 1.28s
296:	learn: 11.1725602	total: 540ms	remaining: 1.28s
297:	learn: 11.1447066	total: 542ms	remaining: 1.28s
298:	learn: 11.1374354	total: 544ms	remaining: 1.27s
299:	learn: 11.1223370	total: 545ms	remaining: 1.27s
300:	learn: 11.1092188	total: 547ms	remaining: 1.27s
301:	learn: 11.0824478	total: 549ms	remaining: 1.27s
302:	learn: 11.0585229	total: 550ms	remaining: 1.27s
303:	learn: 11.0327474	total: 552ms	remaining: 1.26s
304:	learn: 10.9987478	total: 554ms	remaining: 1.26s
305:	learn: 10.9773235	total: 556ms	remaining: 1.26s
306:	learn: 10.9612337	total: 557ms	remaining: 1.26s
307:	learn: 10.9257310	total: 559ms	remaining: 1.26s
308:	learn: 10.9163516	total: 561ms	remaining: 1.25s
309:	learn: 10.8863391	total: 563ms	remaining: 1.25s
310:	learn: 10.8528705	total: 564ms	remaining: 1.25s
311:	learn: 10.8257741	total: 566ms	remaining: 1.25s
312:	learn: 10.7873436	total: 568ms	remaining: 1.25s
313:	learn: 10.7616446	total: 569ms	remaining: 1.24s
314:	learn: 10.7132816	total: 571ms	remaining: 1.24s
315:	learn: 10.6949644	total: 573ms	remaining: 1.24s
316:	learn: 10.6675993	total: 575ms	remaining: 1.24s
317:	learn: 10.6438337	total: 577ms	remaining: 1.24s
318:	learn: 10.6142429	total: 578ms	remaining: 1.23s
319:	learn: 10.5965815	total: 580ms	remaining: 1.23s
320:	learn: 10.5448553	total: 582ms	remaining: 1.23s
321:	learn: 10.5269251	total: 583ms	remaining: 1.23s
322:	learn: 10.4871554	total: 585ms	remaining: 1.23s
323:	learn: 10.4586851	total: 587ms	remaining: 1.22s
324:	learn: 10.4324603	total: 589ms	remaining: 1.22s
325:	learn: 10.4102160	total: 591ms	remaining: 1.22s
326:	learn: 10.3855591	total: 593ms	remaining: 1.22s
327:	learn: 10.3563928	total: 594ms	remaining: 1.22s
328:	learn: 10.3188170	total: 596ms	remaining: 1.22s
329:	learn: 10.2988119	total: 598ms	remaining: 1.21s
330:	learn: 10.2650529	total: 599ms	remaining: 1.21s
331:	learn: 10.2546010	total: 601ms	remaining: 1.21s
332:	learn: 10.2281850	total: 603ms	remaining: 1.21s
333:	learn: 10.2120891	total: 605ms	remaining: 1.21s
334:	learn: 10.1673897	total: 607ms	remaining: 1.2s
335:	learn: 10.1454671	total: 608ms	remaining: 1.2s
336:	learn: 10.1034543	total: 610ms	remaining: 1.2s
337:	learn: 10.0892073	total: 612ms	remaining: 1.2s
338:	learn: 10.0632335	total: 613ms	remaining: 1.2s
339:	learn: 10.0210474	total: 615ms	remaining: 1.19s
340:	learn: 9.9996443	total: 617ms	remaining: 1.19s
341:	learn: 9.9604578	total: 618ms	remaining: 1.19s
342:	learn: 9.9557753	total: 620ms	remaining: 1.19s
343:	learn: 9.9210418	total: 622ms	remaining: 1.19s
344:	learn: 9.9166077	total: 624ms	remaining: 1.18s
345:	learn: 9.9121716	total: 625ms	remaining: 1.18s
346:	learn: 9.8922907	total: 627ms	remaining: 1.18s
347:	learn: 9.8600247	total: 629ms	remaining: 1.18s
348:	learn: 9.8358811	total: 630ms	remaining: 1.18s
349:	learn: 9.8201486	total: 632ms	remaining: 1.17s
350:	learn: 9.8114804	total: 634ms	remaining: 1.17s
351:	learn: 9.7685103	total: 636ms	remaining: 1.17s
352:	learn: 9.7478605	total: 638ms	remaining: 1.17s
353:	learn: 9.7139542	total: 640ms	remaining: 1.17s
354:	learn: 9.6887577	total: 642ms	remaining: 1.17s
355:	learn: 9.6691763	total: 643ms	remaining: 1.16s
356:	learn: 9.6414581	total: 645ms	remaining: 1.16s
357:	learn: 9.6187627	total: 647ms	remaining: 1.16s
358:	learn: 9.6010226	total: 648ms	remaining: 1.16s
359:	learn: 9.5808247	total: 650ms	remaining: 1.16s
360:	learn: 9.5768628	total: 652ms	remaining: 1.15s
361:	learn: 9.5611945	total: 654ms	remaining: 1.15s
362:	learn: 9.5494748	total: 656ms	remaining: 1.15s
363:	learn: 9.5270456	total: 657ms	remaining: 1.15s
364:	learn: 9.5173328	total: 659ms	remaining: 1.15s
365:	learn: 9.5072035	total: 661ms	remaining: 1.14s
366:	learn: 9.4862794	total: 662ms	remaining: 1.14s
367:	learn: 9.4665664	total: 664ms	remaining: 1.14s
368:	learn: 9.4354866	total: 666ms	remaining: 1.14s
369:	learn: 9.4282887	total: 668ms	remaining: 1.14s
370:	learn: 9.4090271	total: 670ms	remaining: 1.14s
371:	learn: 9.3825916	total: 671ms	remaining: 1.13s
372:	learn: 9.3500596	total: 673ms	remaining: 1.13s
373:	learn: 9.3309202	total: 675ms	remaining: 1.13s
374:	learn: 9.3164687	total: 676ms	remaining: 1.13s
375:	learn: 9.3126679	total: 678ms	remaining: 1.13s
376:	learn: 9.2942048	total: 680ms	remaining: 1.12s
377:	learn: 9.2706703	total: 682ms	remaining: 1.12s
378:	learn: 9.2537247	total: 683ms	remaining: 1.12s
379:	learn: 9.2392656	total: 685ms	remaining: 1.12s
380:	learn: 9.2243430	total: 687ms	remaining: 1.12s
381:	learn: 9.2106130	total: 689ms	remaining: 1.11s
382:	learn: 9.1965492	total: 691ms	remaining: 1.11s
383:	learn: 9.1834664	total: 692ms	remaining: 1.11s
384:	learn: 9.1709972	total: 694ms	remaining: 1.11s
385:	learn: 9.1557838	total: 696ms	remaining: 1.11s
386:	learn: 9.1462152	total: 698ms	remaining: 1.1s
387:	learn: 9.1226325	total: 700ms	remaining: 1.1s
388:	learn: 9.1069495	total: 701ms	remaining: 1.1s
389:	learn: 9.0896365	total: 703ms	remaining: 1.1s
390:	learn: 9.0757769	total: 705ms	remaining: 1.1s
391:	learn: 9.0632433	total: 707ms	remaining: 1.1s
392:	learn: 9.0572622	total: 708ms	remaining: 1.09s
393:	learn: 9.0443045	total: 710ms	remaining: 1.09s
394:	learn: 9.0292742	total: 712ms	remaining: 1.09s
395:	learn: 9.0219022	total: 714ms	remaining: 1.09s
396:	learn: 9.0113566	total: 716ms	remaining: 1.09s
397:	learn: 8.9856163	total: 718ms	remaining: 1.08s
398:	learn: 8.9653104	total: 719ms	remaining: 1.08s
399:	learn: 8.9462162	total: 721ms	remaining: 1.08s
400:	learn: 8.9210328	total: 723ms	remaining: 1.08s
401:	learn: 8.9049899	total: 724ms	remaining: 1.08s
402:	learn: 8.8868145	total: 726ms	remaining: 1.07s
403:	learn: 8.8645078	total: 728ms	remaining: 1.07s
404:	learn: 8.8573410	total: 729ms	remaining: 1.07s
405:	learn: 8.8384470	total: 731ms	remaining: 1.07s
406:	learn: 8.8145042	total: 733ms	remaining: 1.07s
407:	learn: 8.8088315	total: 735ms	remaining: 1.06s
408:	learn: 8.8047358	total: 736ms	remaining: 1.06s
409:	learn: 8.7978518	total: 738ms	remaining: 1.06s
410:	learn: 8.7738172	total: 740ms	remaining: 1.06s
411:	learn: 8.7621941	total: 742ms	remaining: 1.06s
412:	learn: 8.7385429	total: 743ms	remaining: 1.06s
413:	learn: 8.7250513	total: 745ms	remaining: 1.05s
414:	learn: 8.7189081	total: 747ms	remaining: 1.05s
415:	learn: 8.7113713	total: 748ms	remaining: 1.05s
416:	learn: 8.6915884	total: 750ms	remaining: 1.05s
417:	learn: 8.6568306	total: 752ms	remaining: 1.05s
418:	learn: 8.6401597	total: 754ms	remaining: 1.04s
419:	learn: 8.6232574	total: 755ms	remaining: 1.04s
420:	learn: 8.6037103	total: 757ms	remaining: 1.04s
421:	learn: 8.5874876	total: 759ms	remaining: 1.04s
422:	learn: 8.5783769	total: 761ms	remaining: 1.04s
423:	learn: 8.5658806	total: 762ms	remaining: 1.03s
424:	learn: 8.5560765	total: 764ms	remaining: 1.03s
425:	learn: 8.5507898	total: 766ms	remaining: 1.03s
426:	learn: 8.5366682	total: 768ms	remaining: 1.03s
427:	learn: 8.5067728	total: 769ms	remaining: 1.03s
428:	learn: 8.4937739	total: 771ms	remaining: 1.03s
429:	learn: 8.4782979	total: 773ms	remaining: 1.02s
430:	learn: 8.4611483	total: 775ms	remaining: 1.02s
431:	learn: 8.4439091	total: 777ms	remaining: 1.02s
432:	learn: 8.4369167	total: 779ms	remaining: 1.02s
433:	learn: 8.4234038	total: 781ms	remaining: 1.02s
434:	learn: 8.4036196	total: 783ms	remaining: 1.02s
435:	learn: 8.3855174	total: 784ms	remaining: 1.01s
436:	learn: 8.3586027	total: 786ms	remaining: 1.01s
437:	learn: 8.3475160	total: 788ms	remaining: 1.01s
438:	learn: 8.3244550	total: 790ms	remaining: 1.01s
439:	learn: 8.3009647	total: 792ms	remaining: 1.01s
440:	learn: 8.2887607	total: 794ms	remaining: 1.01s
441:	learn: 8.2772595	total: 796ms	remaining: 1s
442:	learn: 8.2540677	total: 798ms	remaining: 1s
443:	learn: 8.2356404	total: 800ms	remaining: 1s
444:	learn: 8.2214009	total: 802ms	remaining: 1000ms
445:	learn: 8.2128932	total: 804ms	remaining: 998ms
446:	learn: 8.2000735	total: 805ms	remaining: 996ms
447:	learn: 8.1760212	total: 807ms	remaining: 994ms
448:	learn: 8.1714666	total: 809ms	remaining: 993ms
449:	learn: 8.1591211	total: 811ms	remaining: 991ms
450:	learn: 8.1471093	total: 813ms	remaining: 989ms
451:	learn: 8.1411040	total: 814ms	remaining: 987ms
452:	learn: 8.1363407	total: 816ms	remaining: 985ms
453:	learn: 8.1315085	total: 818ms	remaining: 984ms
454:	learn: 8.1180333	total: 820ms	remaining: 982ms
455:	learn: 8.1080192	total: 821ms	remaining: 980ms
456:	learn: 8.0916305	total: 823ms	remaining: 978ms
457:	learn: 8.0864057	total: 825ms	remaining: 976ms
458:	learn: 8.0721505	total: 827ms	remaining: 974ms
459:	learn: 8.0593172	total: 828ms	remaining: 973ms
460:	learn: 8.0490833	total: 830ms	remaining: 971ms
461:	learn: 8.0251116	total: 832ms	remaining: 969ms
462:	learn: 8.0024237	total: 834ms	remaining: 967ms
463:	learn: 7.9796423	total: 835ms	remaining: 965ms
464:	learn: 7.9589179	total: 837ms	remaining: 963ms
465:	learn: 7.9472623	total: 839ms	remaining: 961ms
466:	learn: 7.9334117	total: 840ms	remaining: 959ms
467:	learn: 7.9272687	total: 842ms	remaining: 957ms
468:	learn: 7.9088898	total: 844ms	remaining: 955ms
469:	learn: 7.9010707	total: 845ms	remaining: 953ms
470:	learn: 7.8915550	total: 847ms	remaining: 952ms
471:	learn: 7.8850355	total: 849ms	remaining: 950ms
472:	learn: 7.8657141	total: 851ms	remaining: 948ms
473:	learn: 7.8479099	total: 852ms	remaining: 946ms
474:	learn: 7.8414853	total: 854ms	remaining: 944ms
475:	learn: 7.8285292	total: 856ms	remaining: 942ms
476:	learn: 7.8225572	total: 857ms	remaining: 940ms
477:	learn: 7.8127942	total: 859ms	remaining: 938ms
478:	learn: 7.7974846	total: 861ms	remaining: 936ms
479:	learn: 7.7792788	total: 863ms	remaining: 935ms
480:	learn: 7.7661688	total: 865ms	remaining: 933ms
481:	learn: 7.7484279	total: 867ms	remaining: 932ms
482:	learn: 7.7433163	total: 869ms	remaining: 930ms
483:	learn: 7.7395344	total: 871ms	remaining: 929ms
484:	learn: 7.7325589	total: 873ms	remaining: 927ms
485:	learn: 7.7253111	total: 875ms	remaining: 926ms
486:	learn: 7.7178265	total: 877ms	remaining: 924ms
487:	learn: 7.7040002	total: 879ms	remaining: 923ms
488:	learn: 7.7002773	total: 881ms	remaining: 921ms
489:	learn: 7.6842350	total: 883ms	remaining: 920ms
490:	learn: 7.6746891	total: 885ms	remaining: 918ms
491:	learn: 7.6589862	total: 887ms	remaining: 916ms
492:	learn: 7.6526201	total: 889ms	remaining: 915ms
493:	learn: 7.6365118	total: 892ms	remaining: 913ms
494:	learn: 7.6165609	total: 894ms	remaining: 912ms
495:	learn: 7.5985252	total: 896ms	remaining: 910ms
496:	learn: 7.5896025	total: 898ms	remaining: 909ms
497:	learn: 7.5802657	total: 900ms	remaining: 907ms
498:	learn: 7.5685794	total: 902ms	remaining: 905ms
499:	learn: 7.5518057	total: 903ms	remaining: 903ms
500:	learn: 7.5410556	total: 905ms	remaining: 902ms
501:	learn: 7.5340373	total: 907ms	remaining: 900ms
502:	learn: 7.5211843	total: 909ms	remaining: 898ms
503:	learn: 7.5096528	total: 910ms	remaining: 896ms
504:	learn: 7.4958780	total: 912ms	remaining: 894ms
505:	learn: 7.4729471	total: 914ms	remaining: 892ms
506:	learn: 7.4541343	total: 915ms	remaining: 890ms
507:	learn: 7.4496829	total: 917ms	remaining: 888ms
508:	learn: 7.4279010	total: 919ms	remaining: 886ms
509:	learn: 7.4167038	total: 920ms	remaining: 884ms
510:	learn: 7.3963875	total: 922ms	remaining: 882ms
511:	learn: 7.3783679	total: 924ms	remaining: 881ms
512:	learn: 7.3689044	total: 926ms	remaining: 879ms
513:	learn: 7.3467859	total: 928ms	remaining: 877ms
514:	learn: 7.3374186	total: 929ms	remaining: 875ms
515:	learn: 7.3306392	total: 931ms	remaining: 873ms
516:	learn: 7.3164223	total: 933ms	remaining: 871ms
517:	learn: 7.3089456	total: 934ms	remaining: 869ms
518:	learn: 7.2972925	total: 936ms	remaining: 867ms
519:	learn: 7.2902929	total: 938ms	remaining: 866ms
520:	learn: 7.2786008	total: 939ms	remaining: 864ms
521:	learn: 7.2672004	total: 941ms	remaining: 862ms
522:	learn: 7.2595140	total: 943ms	remaining: 860ms
523:	learn: 7.2489784	total: 945ms	remaining: 858ms
524:	learn: 7.2400134	total: 946ms	remaining: 856ms
525:	learn: 7.2346244	total: 948ms	remaining: 854ms
526:	learn: 7.2235390	total: 950ms	remaining: 852ms
527:	learn: 7.2050275	total: 952ms	remaining: 851ms
528:	learn: 7.1895435	total: 953ms	remaining: 849ms
529:	learn: 7.1761852	total: 955ms	remaining: 847ms
530:	learn: 7.1614487	total: 957ms	remaining: 845ms
531:	learn: 7.1520289	total: 959ms	remaining: 844ms
532:	learn: 7.1387195	total: 961ms	remaining: 842ms
533:	learn: 7.1284040	total: 962ms	remaining: 840ms
534:	learn: 7.1220485	total: 964ms	remaining: 838ms
535:	learn: 7.1108224	total: 966ms	remaining: 836ms
536:	learn: 7.1019215	total: 967ms	remaining: 834ms
537:	learn: 7.0831346	total: 969ms	remaining: 832ms
538:	learn: 7.0769928	total: 971ms	remaining: 831ms
539:	learn: 7.0588343	total: 973ms	remaining: 829ms
540:	learn: 7.0468152	total: 975ms	remaining: 827ms
541:	learn: 7.0400555	total: 976ms	remaining: 825ms
542:	learn: 7.0279688	total: 978ms	remaining: 823ms
543:	learn: 7.0170050	total: 980ms	remaining: 821ms
544:	learn: 7.0036266	total: 981ms	remaining: 819ms
545:	learn: 6.9909383	total: 983ms	remaining: 818ms
546:	learn: 6.9709169	total: 985ms	remaining: 816ms
547:	learn: 6.9577248	total: 987ms	remaining: 814ms
548:	learn: 6.9453603	total: 989ms	remaining: 812ms
549:	learn: 6.9376294	total: 990ms	remaining: 810ms
550:	learn: 6.9229356	total: 992ms	remaining: 809ms
551:	learn: 6.9158816	total: 994ms	remaining: 807ms
552:	learn: 6.9003202	total: 996ms	remaining: 805ms
553:	learn: 6.8881991	total: 997ms	remaining: 803ms
554:	learn: 6.8738866	total: 999ms	remaining: 801ms
555:	learn: 6.8595678	total: 1s	remaining: 799ms
556:	learn: 6.8430146	total: 1s	remaining: 798ms
557:	learn: 6.8365689	total: 1s	remaining: 796ms
558:	learn: 6.8244254	total: 1.01s	remaining: 794ms
559:	learn: 6.8210775	total: 1.01s	remaining: 792ms
560:	learn: 6.8087981	total: 1.01s	remaining: 790ms
561:	learn: 6.7941790	total: 1.01s	remaining: 788ms
562:	learn: 6.7840220	total: 1.01s	remaining: 786ms
563:	learn: 6.7710793	total: 1.01s	remaining: 784ms
564:	learn: 6.7639064	total: 1.02s	remaining: 783ms
565:	learn: 6.7573953	total: 1.02s	remaining: 781ms
566:	learn: 6.7526369	total: 1.02s	remaining: 779ms
567:	learn: 6.7440425	total: 1.02s	remaining: 777ms
568:	learn: 6.7307048	total: 1.02s	remaining: 775ms
569:	learn: 6.7204891	total: 1.02s	remaining: 774ms
570:	learn: 6.7021323	total: 1.03s	remaining: 772ms
571:	learn: 6.6867101	total: 1.03s	remaining: 770ms
572:	learn: 6.6751127	total: 1.03s	remaining: 768ms
573:	learn: 6.6653725	total: 1.03s	remaining: 766ms
574:	learn: 6.6536500	total: 1.03s	remaining: 764ms
575:	learn: 6.6342247	total: 1.04s	remaining: 763ms
576:	learn: 6.6222863	total: 1.04s	remaining: 761ms
577:	learn: 6.6082372	total: 1.04s	remaining: 759ms
578:	learn: 6.5975235	total: 1.04s	remaining: 757ms
579:	learn: 6.5898832	total: 1.04s	remaining: 755ms
580:	learn: 6.5835838	total: 1.04s	remaining: 753ms
581:	learn: 6.5651238	total: 1.05s	remaining: 752ms
582:	learn: 6.5575387	total: 1.05s	remaining: 750ms
583:	learn: 6.5529725	total: 1.05s	remaining: 748ms
584:	learn: 6.5413738	total: 1.05s	remaining: 746ms
585:	learn: 6.5317660	total: 1.05s	remaining: 744ms
586:	learn: 6.5177106	total: 1.05s	remaining: 742ms
587:	learn: 6.5114474	total: 1.06s	remaining: 741ms
588:	learn: 6.5002910	total: 1.06s	remaining: 739ms
589:	learn: 6.4894814	total: 1.06s	remaining: 737ms
590:	learn: 6.4746052	total: 1.06s	remaining: 735ms
591:	learn: 6.4705638	total: 1.06s	remaining: 733ms
592:	learn: 6.4545301	total: 1.06s	remaining: 731ms
593:	learn: 6.4471552	total: 1.07s	remaining: 730ms
594:	learn: 6.4373792	total: 1.07s	remaining: 728ms
595:	learn: 6.4266120	total: 1.07s	remaining: 726ms
596:	learn: 6.4191700	total: 1.07s	remaining: 724ms
597:	learn: 6.4137687	total: 1.07s	remaining: 722ms
598:	learn: 6.4047478	total: 1.08s	remaining: 720ms
599:	learn: 6.3935756	total: 1.08s	remaining: 719ms
600:	learn: 6.3765457	total: 1.08s	remaining: 717ms
601:	learn: 6.3714185	total: 1.08s	remaining: 715ms
602:	learn: 6.3564324	total: 1.08s	remaining: 713ms
603:	learn: 6.3495073	total: 1.08s	remaining: 711ms
604:	learn: 6.3428549	total: 1.09s	remaining: 709ms
605:	learn: 6.3319340	total: 1.09s	remaining: 708ms
606:	learn: 6.3177949	total: 1.09s	remaining: 706ms
607:	learn: 6.3077093	total: 1.09s	remaining: 704ms
608:	learn: 6.3031808	total: 1.09s	remaining: 702ms
609:	learn: 6.2969265	total: 1.09s	remaining: 700ms
610:	learn: 6.2837688	total: 1.1s	remaining: 698ms
611:	learn: 6.2658246	total: 1.1s	remaining: 696ms
612:	learn: 6.2602429	total: 1.1s	remaining: 695ms
613:	learn: 6.2501871	total: 1.1s	remaining: 693ms
614:	learn: 6.2349921	total: 1.1s	remaining: 691ms
615:	learn: 6.2297435	total: 1.1s	remaining: 689ms
616:	learn: 6.2164754	total: 1.11s	remaining: 687ms
617:	learn: 6.2061083	total: 1.11s	remaining: 685ms
618:	learn: 6.1932101	total: 1.11s	remaining: 683ms
619:	learn: 6.1836107	total: 1.11s	remaining: 681ms
620:	learn: 6.1741458	total: 1.11s	remaining: 680ms
621:	learn: 6.1693741	total: 1.11s	remaining: 678ms
622:	learn: 6.1647807	total: 1.12s	remaining: 676ms
623:	learn: 6.1515448	total: 1.12s	remaining: 674ms
624:	learn: 6.1438237	total: 1.12s	remaining: 672ms
625:	learn: 6.1403384	total: 1.12s	remaining: 670ms
626:	learn: 6.1363193	total: 1.12s	remaining: 669ms
627:	learn: 6.1235387	total: 1.13s	remaining: 667ms
628:	learn: 6.1134038	total: 1.13s	remaining: 665ms
629:	learn: 6.0986498	total: 1.13s	remaining: 663ms
630:	learn: 6.0874823	total: 1.13s	remaining: 661ms
631:	learn: 6.0797026	total: 1.13s	remaining: 659ms
632:	learn: 6.0742789	total: 1.13s	remaining: 658ms
633:	learn: 6.0672427	total: 1.14s	remaining: 656ms
634:	learn: 6.0559182	total: 1.14s	remaining: 654ms
635:	learn: 6.0453376	total: 1.14s	remaining: 652ms
636:	learn: 6.0362980	total: 1.14s	remaining: 651ms
637:	learn: 6.0313750	total: 1.14s	remaining: 649ms
638:	learn: 6.0210808	total: 1.15s	remaining: 647ms
639:	learn: 6.0120839	total: 1.15s	remaining: 645ms
640:	learn: 6.0032218	total: 1.15s	remaining: 643ms
641:	learn: 5.9937586	total: 1.15s	remaining: 642ms
642:	learn: 5.9886256	total: 1.15s	remaining: 640ms
643:	learn: 5.9782961	total: 1.15s	remaining: 638ms
644:	learn: 5.9731538	total: 1.16s	remaining: 636ms
645:	learn: 5.9637693	total: 1.16s	remaining: 634ms
646:	learn: 5.9494758	total: 1.16s	remaining: 632ms
647:	learn: 5.9415244	total: 1.16s	remaining: 631ms
648:	learn: 5.9320757	total: 1.16s	remaining: 629ms
649:	learn: 5.9263586	total: 1.16s	remaining: 627ms
650:	learn: 5.9193480	total: 1.17s	remaining: 625ms
651:	learn: 5.9078014	total: 1.17s	remaining: 623ms
652:	learn: 5.8912015	total: 1.17s	remaining: 622ms
653:	learn: 5.8822876	total: 1.17s	remaining: 620ms
654:	learn: 5.8710467	total: 1.17s	remaining: 618ms
655:	learn: 5.8639294	total: 1.17s	remaining: 616ms
656:	learn: 5.8578811	total: 1.18s	remaining: 614ms
657:	learn: 5.8489664	total: 1.18s	remaining: 612ms
658:	learn: 5.8365466	total: 1.18s	remaining: 611ms
659:	learn: 5.8287510	total: 1.18s	remaining: 609ms
660:	learn: 5.8180213	total: 1.18s	remaining: 607ms
661:	learn: 5.8100708	total: 1.19s	remaining: 605ms
662:	learn: 5.8025236	total: 1.19s	remaining: 604ms
663:	learn: 5.7890952	total: 1.19s	remaining: 602ms
664:	learn: 5.7855262	total: 1.19s	remaining: 600ms
665:	learn: 5.7722080	total: 1.19s	remaining: 598ms
666:	learn: 5.7680633	total: 1.19s	remaining: 596ms
667:	learn: 5.7515193	total: 1.2s	remaining: 595ms
668:	learn: 5.7436712	total: 1.2s	remaining: 593ms
669:	learn: 5.7359025	total: 1.2s	remaining: 591ms
670:	learn: 5.7321217	total: 1.2s	remaining: 589ms
671:	learn: 5.7279610	total: 1.2s	remaining: 587ms
672:	learn: 5.7178796	total: 1.2s	remaining: 585ms
673:	learn: 5.7051979	total: 1.21s	remaining: 584ms
674:	learn: 5.6985125	total: 1.21s	remaining: 582ms
675:	learn: 5.6957768	total: 1.21s	remaining: 580ms
676:	learn: 5.6784885	total: 1.21s	remaining: 578ms
677:	learn: 5.6625507	total: 1.21s	remaining: 576ms
678:	learn: 5.6567639	total: 1.22s	remaining: 575ms
679:	learn: 5.6470885	total: 1.22s	remaining: 573ms
680:	learn: 5.6427788	total: 1.22s	remaining: 571ms
681:	learn: 5.6311160	total: 1.22s	remaining: 569ms
682:	learn: 5.6250486	total: 1.22s	remaining: 567ms
683:	learn: 5.6170505	total: 1.22s	remaining: 565ms
684:	learn: 5.6132923	total: 1.23s	remaining: 564ms
685:	learn: 5.6057125	total: 1.23s	remaining: 562ms
686:	learn: 5.5966377	total: 1.23s	remaining: 560ms
687:	learn: 5.5905232	total: 1.23s	remaining: 558ms
688:	learn: 5.5779505	total: 1.23s	remaining: 556ms
689:	learn: 5.5675180	total: 1.23s	remaining: 554ms
690:	learn: 5.5566170	total: 1.24s	remaining: 553ms
691:	learn: 5.5478586	total: 1.24s	remaining: 551ms
692:	learn: 5.5383393	total: 1.24s	remaining: 549ms
693:	learn: 5.5251804	total: 1.24s	remaining: 547ms
694:	learn: 5.5180542	total: 1.24s	remaining: 546ms
695:	learn: 5.5072427	total: 1.24s	remaining: 544ms
696:	learn: 5.5011771	total: 1.25s	remaining: 542ms
697:	learn: 5.4952399	total: 1.25s	remaining: 540ms
698:	learn: 5.4931090	total: 1.25s	remaining: 538ms
699:	learn: 5.4813010	total: 1.25s	remaining: 536ms
700:	learn: 5.4684219	total: 1.25s	remaining: 535ms
701:	learn: 5.4629617	total: 1.25s	remaining: 533ms
702:	learn: 5.4538350	total: 1.26s	remaining: 531ms
703:	learn: 5.4502955	total: 1.26s	remaining: 529ms
704:	learn: 5.4420165	total: 1.26s	remaining: 527ms
705:	learn: 5.4298468	total: 1.26s	remaining: 526ms
706:	learn: 5.4199437	total: 1.26s	remaining: 524ms
707:	learn: 5.4093567	total: 1.26s	remaining: 522ms
708:	learn: 5.4025199	total: 1.27s	remaining: 520ms
709:	learn: 5.3984059	total: 1.27s	remaining: 518ms
710:	learn: 5.3912864	total: 1.27s	remaining: 516ms
711:	learn: 5.3830293	total: 1.27s	remaining: 515ms
712:	learn: 5.3781985	total: 1.27s	remaining: 513ms
713:	learn: 5.3726174	total: 1.27s	remaining: 511ms
714:	learn: 5.3660775	total: 1.28s	remaining: 509ms
715:	learn: 5.3622150	total: 1.28s	remaining: 507ms
716:	learn: 5.3495185	total: 1.28s	remaining: 506ms
717:	learn: 5.3448512	total: 1.28s	remaining: 504ms
718:	learn: 5.3395027	total: 1.28s	remaining: 502ms
719:	learn: 5.3308815	total: 1.28s	remaining: 500ms
720:	learn: 5.3202656	total: 1.29s	remaining: 498ms
721:	learn: 5.3148463	total: 1.29s	remaining: 497ms
722:	learn: 5.3050780	total: 1.29s	remaining: 495ms
723:	learn: 5.2980794	total: 1.29s	remaining: 493ms
724:	learn: 5.2858775	total: 1.29s	remaining: 491ms
725:	learn: 5.2789062	total: 1.3s	remaining: 489ms
726:	learn: 5.2699382	total: 1.3s	remaining: 487ms
727:	learn: 5.2593664	total: 1.3s	remaining: 486ms
728:	learn: 5.2540770	total: 1.3s	remaining: 484ms
729:	learn: 5.2489617	total: 1.3s	remaining: 482ms
730:	learn: 5.2421327	total: 1.3s	remaining: 480ms
731:	learn: 5.2294238	total: 1.31s	remaining: 478ms
732:	learn: 5.2284483	total: 1.31s	remaining: 477ms
733:	learn: 5.2236519	total: 1.31s	remaining: 475ms
734:	learn: 5.2195608	total: 1.31s	remaining: 473ms
735:	learn: 5.2089646	total: 1.31s	remaining: 471ms
736:	learn: 5.2069973	total: 1.31s	remaining: 469ms
737:	learn: 5.1991424	total: 1.32s	remaining: 468ms
738:	learn: 5.1961907	total: 1.32s	remaining: 466ms
739:	learn: 5.1924103	total: 1.32s	remaining: 464ms
740:	learn: 5.1844675	total: 1.32s	remaining: 462ms
741:	learn: 5.1765791	total: 1.32s	remaining: 461ms
742:	learn: 5.1626629	total: 1.33s	remaining: 459ms
743:	learn: 5.1593186	total: 1.33s	remaining: 457ms
744:	learn: 5.1554375	total: 1.33s	remaining: 455ms
745:	learn: 5.1457457	total: 1.33s	remaining: 453ms
746:	learn: 5.1327362	total: 1.33s	remaining: 451ms
747:	learn: 5.1201863	total: 1.33s	remaining: 450ms
748:	learn: 5.1157705	total: 1.34s	remaining: 448ms
749:	learn: 5.1041131	total: 1.34s	remaining: 446ms
750:	learn: 5.0923419	total: 1.34s	remaining: 444ms
751:	learn: 5.0890321	total: 1.34s	remaining: 443ms
752:	learn: 5.0784932	total: 1.34s	remaining: 441ms
753:	learn: 5.0710394	total: 1.34s	remaining: 439ms
754:	learn: 5.0627512	total: 1.35s	remaining: 437ms
755:	learn: 5.0595908	total: 1.35s	remaining: 435ms
756:	learn: 5.0526932	total: 1.35s	remaining: 433ms
757:	learn: 5.0443839	total: 1.35s	remaining: 432ms
758:	learn: 5.0361227	total: 1.35s	remaining: 430ms
759:	learn: 5.0275398	total: 1.35s	remaining: 428ms
760:	learn: 5.0220582	total: 1.36s	remaining: 426ms
761:	learn: 5.0147913	total: 1.36s	remaining: 425ms
762:	learn: 5.0077223	total: 1.36s	remaining: 423ms
763:	learn: 5.0042688	total: 1.36s	remaining: 421ms
764:	learn: 4.9932875	total: 1.36s	remaining: 419ms
765:	learn: 4.9897117	total: 1.37s	remaining: 417ms
766:	learn: 4.9823522	total: 1.37s	remaining: 416ms
767:	learn: 4.9738770	total: 1.37s	remaining: 414ms
768:	learn: 4.9654996	total: 1.37s	remaining: 412ms
769:	learn: 4.9541553	total: 1.37s	remaining: 410ms
770:	learn: 4.9465514	total: 1.38s	remaining: 408ms
771:	learn: 4.9396409	total: 1.38s	remaining: 407ms
772:	learn: 4.9271015	total: 1.38s	remaining: 405ms
773:	learn: 4.9172089	total: 1.38s	remaining: 403ms
774:	learn: 4.9039247	total: 1.38s	remaining: 401ms
775:	learn: 4.8919885	total: 1.38s	remaining: 399ms
776:	learn: 4.8855671	total: 1.39s	remaining: 398ms
777:	learn: 4.8815905	total: 1.39s	remaining: 396ms
778:	learn: 4.8705848	total: 1.39s	remaining: 394ms
779:	learn: 4.8694799	total: 1.39s	remaining: 392ms
780:	learn: 4.8665513	total: 1.39s	remaining: 391ms
781:	learn: 4.8598109	total: 1.39s	remaining: 389ms
782:	learn: 4.8516520	total: 1.4s	remaining: 387ms
783:	learn: 4.8421405	total: 1.4s	remaining: 385ms
784:	learn: 4.8340633	total: 1.4s	remaining: 383ms
785:	learn: 4.8302053	total: 1.4s	remaining: 382ms
786:	learn: 4.8292439	total: 1.4s	remaining: 380ms
787:	learn: 4.8154899	total: 1.41s	remaining: 378ms
788:	learn: 4.8043051	total: 1.41s	remaining: 376ms
789:	learn: 4.7918238	total: 1.41s	remaining: 375ms
790:	learn: 4.7869145	total: 1.41s	remaining: 373ms
791:	learn: 4.7815946	total: 1.41s	remaining: 371ms
792:	learn: 4.7755712	total: 1.41s	remaining: 369ms
793:	learn: 4.7665714	total: 1.42s	remaining: 367ms
794:	learn: 4.7590388	total: 1.42s	remaining: 366ms
795:	learn: 4.7529338	total: 1.42s	remaining: 364ms
796:	learn: 4.7430137	total: 1.42s	remaining: 362ms
797:	learn: 4.7325157	total: 1.42s	remaining: 360ms
798:	learn: 4.7292035	total: 1.43s	remaining: 359ms
799:	learn: 4.7240888	total: 1.43s	remaining: 357ms
800:	learn: 4.7144700	total: 1.43s	remaining: 355ms
801:	learn: 4.7085501	total: 1.43s	remaining: 353ms
802:	learn: 4.7015092	total: 1.43s	remaining: 352ms
803:	learn: 4.6984105	total: 1.43s	remaining: 350ms
804:	learn: 4.6951627	total: 1.44s	remaining: 348ms
805:	learn: 4.6858555	total: 1.44s	remaining: 346ms
806:	learn: 4.6816565	total: 1.44s	remaining: 344ms
807:	learn: 4.6773737	total: 1.44s	remaining: 343ms
808:	learn: 4.6660383	total: 1.44s	remaining: 341ms
809:	learn: 4.6585283	total: 1.45s	remaining: 339ms
810:	learn: 4.6550349	total: 1.45s	remaining: 337ms
811:	learn: 4.6502226	total: 1.45s	remaining: 335ms
812:	learn: 4.6447584	total: 1.45s	remaining: 334ms
813:	learn: 4.6434663	total: 1.45s	remaining: 332ms
814:	learn: 4.6353736	total: 1.45s	remaining: 330ms
815:	learn: 4.6287233	total: 1.46s	remaining: 328ms
816:	learn: 4.6257210	total: 1.46s	remaining: 326ms
817:	learn: 4.6173907	total: 1.46s	remaining: 325ms
818:	learn: 4.6165644	total: 1.46s	remaining: 323ms
819:	learn: 4.6072177	total: 1.46s	remaining: 321ms
820:	learn: 4.5992347	total: 1.46s	remaining: 319ms
821:	learn: 4.5987820	total: 1.47s	remaining: 318ms
822:	learn: 4.5925953	total: 1.47s	remaining: 316ms
823:	learn: 4.5857386	total: 1.47s	remaining: 314ms
824:	learn: 4.5786360	total: 1.47s	remaining: 312ms
825:	learn: 4.5733375	total: 1.47s	remaining: 310ms
826:	learn: 4.5625541	total: 1.47s	remaining: 309ms
827:	learn: 4.5619054	total: 1.48s	remaining: 307ms
828:	learn: 4.5583203	total: 1.48s	remaining: 305ms
829:	learn: 4.5501564	total: 1.48s	remaining: 303ms
830:	learn: 4.5431523	total: 1.48s	remaining: 301ms
831:	learn: 4.5379632	total: 1.48s	remaining: 300ms
832:	learn: 4.5330205	total: 1.49s	remaining: 298ms
833:	learn: 4.5228938	total: 1.49s	remaining: 296ms
834:	learn: 4.5162345	total: 1.49s	remaining: 294ms
835:	learn: 4.5151629	total: 1.49s	remaining: 292ms
836:	learn: 4.5049656	total: 1.49s	remaining: 291ms
837:	learn: 4.4978529	total: 1.49s	remaining: 289ms
838:	learn: 4.4921686	total: 1.5s	remaining: 287ms
839:	learn: 4.4852158	total: 1.5s	remaining: 285ms
840:	learn: 4.4787991	total: 1.5s	remaining: 283ms
841:	learn: 4.4720316	total: 1.5s	remaining: 282ms
842:	learn: 4.4650551	total: 1.5s	remaining: 280ms
843:	learn: 4.4599119	total: 1.5s	remaining: 278ms
844:	learn: 4.4545434	total: 1.51s	remaining: 276ms
845:	learn: 4.4523035	total: 1.51s	remaining: 275ms
846:	learn: 4.4442176	total: 1.51s	remaining: 273ms
847:	learn: 4.4403082	total: 1.51s	remaining: 271ms
848:	learn: 4.4354357	total: 1.51s	remaining: 269ms
849:	learn: 4.4265940	total: 1.51s	remaining: 267ms
850:	learn: 4.4137915	total: 1.52s	remaining: 266ms
851:	learn: 4.4085282	total: 1.52s	remaining: 264ms
852:	learn: 4.3967176	total: 1.52s	remaining: 262ms
853:	learn: 4.3906080	total: 1.52s	remaining: 260ms
854:	learn: 4.3834418	total: 1.52s	remaining: 258ms
855:	learn: 4.3789102	total: 1.52s	remaining: 257ms
856:	learn: 4.3766017	total: 1.53s	remaining: 255ms
857:	learn: 4.3678702	total: 1.53s	remaining: 253ms
858:	learn: 4.3632000	total: 1.53s	remaining: 251ms
859:	learn: 4.3589906	total: 1.53s	remaining: 250ms
860:	learn: 4.3538467	total: 1.53s	remaining: 248ms
861:	learn: 4.3472431	total: 1.54s	remaining: 246ms
862:	learn: 4.3411717	total: 1.54s	remaining: 244ms
863:	learn: 4.3357125	total: 1.54s	remaining: 243ms
864:	learn: 4.3299031	total: 1.54s	remaining: 241ms
865:	learn: 4.3273917	total: 1.54s	remaining: 239ms
866:	learn: 4.3160980	total: 1.55s	remaining: 237ms
867:	learn: 4.3096073	total: 1.55s	remaining: 236ms
868:	learn: 4.3040262	total: 1.55s	remaining: 234ms
869:	learn: 4.2981074	total: 1.55s	remaining: 232ms
870:	learn: 4.2921047	total: 1.55s	remaining: 230ms
871:	learn: 4.2882876	total: 1.56s	remaining: 229ms
872:	learn: 4.2812203	total: 1.56s	remaining: 227ms
873:	learn: 4.2776388	total: 1.56s	remaining: 225ms
874:	learn: 4.2722125	total: 1.56s	remaining: 223ms
875:	learn: 4.2624557	total: 1.56s	remaining: 221ms
876:	learn: 4.2548525	total: 1.57s	remaining: 220ms
877:	learn: 4.2456769	total: 1.57s	remaining: 218ms
878:	learn: 4.2402541	total: 1.57s	remaining: 216ms
879:	learn: 4.2276017	total: 1.57s	remaining: 214ms
880:	learn: 4.2202936	total: 1.57s	remaining: 213ms
881:	learn: 4.2144514	total: 1.58s	remaining: 211ms
882:	learn: 4.2053536	total: 1.58s	remaining: 209ms
883:	learn: 4.1962728	total: 1.58s	remaining: 207ms
884:	learn: 4.1914324	total: 1.58s	remaining: 206ms
885:	learn: 4.1873767	total: 1.58s	remaining: 204ms
886:	learn: 4.1843519	total: 1.58s	remaining: 202ms
887:	learn: 4.1810000	total: 1.59s	remaining: 200ms
888:	learn: 4.1734478	total: 1.59s	remaining: 198ms
889:	learn: 4.1711560	total: 1.59s	remaining: 197ms
890:	learn: 4.1613969	total: 1.59s	remaining: 195ms
891:	learn: 4.1555851	total: 1.59s	remaining: 193ms
892:	learn: 4.1503011	total: 1.6s	remaining: 192ms
893:	learn: 4.1497047	total: 1.6s	remaining: 190ms
894:	learn: 4.1480475	total: 1.6s	remaining: 188ms
895:	learn: 4.1385929	total: 1.6s	remaining: 186ms
896:	learn: 4.1327924	total: 1.6s	remaining: 184ms
897:	learn: 4.1279592	total: 1.61s	remaining: 183ms
898:	learn: 4.1224733	total: 1.61s	remaining: 181ms
899:	learn: 4.1108643	total: 1.61s	remaining: 179ms
900:	learn: 4.1095893	total: 1.61s	remaining: 177ms
901:	learn: 4.1056583	total: 1.61s	remaining: 175ms
902:	learn: 4.1004170	total: 1.62s	remaining: 174ms
903:	learn: 4.0945251	total: 1.62s	remaining: 172ms
904:	learn: 4.0896183	total: 1.62s	remaining: 170ms
905:	learn: 4.0838955	total: 1.62s	remaining: 168ms
906:	learn: 4.0816592	total: 1.62s	remaining: 166ms
907:	learn: 4.0798367	total: 1.63s	remaining: 165ms
908:	learn: 4.0706005	total: 1.63s	remaining: 163ms
909:	learn: 4.0640178	total: 1.63s	remaining: 161ms
910:	learn: 4.0574943	total: 1.63s	remaining: 159ms
911:	learn: 4.0543856	total: 1.63s	remaining: 158ms
912:	learn: 4.0508468	total: 1.63s	remaining: 156ms
913:	learn: 4.0420631	total: 1.64s	remaining: 154ms
914:	learn: 4.0366211	total: 1.64s	remaining: 152ms
915:	learn: 4.0324522	total: 1.64s	remaining: 150ms
916:	learn: 4.0259170	total: 1.64s	remaining: 149ms
917:	learn: 4.0224615	total: 1.64s	remaining: 147ms
918:	learn: 4.0160839	total: 1.65s	remaining: 145ms
919:	learn: 4.0121477	total: 1.65s	remaining: 143ms
920:	learn: 4.0067469	total: 1.65s	remaining: 141ms
921:	learn: 3.9975027	total: 1.65s	remaining: 140ms
922:	learn: 3.9921387	total: 1.65s	remaining: 138ms
923:	learn: 3.9841435	total: 1.65s	remaining: 136ms
924:	learn: 3.9828077	total: 1.66s	remaining: 134ms
925:	learn: 3.9755199	total: 1.66s	remaining: 133ms
926:	learn: 3.9696973	total: 1.66s	remaining: 131ms
927:	learn: 3.9682560	total: 1.66s	remaining: 129ms
928:	learn: 3.9580862	total: 1.66s	remaining: 127ms
929:	learn: 3.9553900	total: 1.67s	remaining: 125ms
930:	learn: 3.9474612	total: 1.67s	remaining: 124ms
931:	learn: 3.9402667	total: 1.67s	remaining: 122ms
932:	learn: 3.9373373	total: 1.67s	remaining: 120ms
933:	learn: 3.9337481	total: 1.67s	remaining: 118ms
934:	learn: 3.9270537	total: 1.67s	remaining: 116ms
935:	learn: 3.9219384	total: 1.68s	remaining: 115ms
936:	learn: 3.9149030	total: 1.68s	remaining: 113ms
937:	learn: 3.9100454	total: 1.68s	remaining: 111ms
938:	learn: 3.9031287	total: 1.68s	remaining: 109ms
939:	learn: 3.8994513	total: 1.68s	remaining: 107ms
940:	learn: 3.8964826	total: 1.68s	remaining: 106ms
941:	learn: 3.8922377	total: 1.69s	remaining: 104ms
942:	learn: 3.8870176	total: 1.69s	remaining: 102ms
943:	learn: 3.8806088	total: 1.69s	remaining: 100ms
944:	learn: 3.8741491	total: 1.69s	remaining: 98.5ms
945:	learn: 3.8693878	total: 1.69s	remaining: 96.7ms
946:	learn: 3.8662231	total: 1.7s	remaining: 94.9ms
947:	learn: 3.8597291	total: 1.7s	remaining: 93.1ms
948:	learn: 3.8516271	total: 1.7s	remaining: 91.3ms
949:	learn: 3.8459452	total: 1.7s	remaining: 89.5ms
950:	learn: 3.8381356	total: 1.7s	remaining: 87.7ms
951:	learn: 3.8322646	total: 1.7s	remaining: 85.9ms
952:	learn: 3.8262451	total: 1.71s	remaining: 84.2ms
953:	learn: 3.8226227	total: 1.71s	remaining: 82.4ms
954:	learn: 3.8153232	total: 1.71s	remaining: 80.6ms
955:	learn: 3.8066399	total: 1.71s	remaining: 78.8ms
956:	learn: 3.8023321	total: 1.71s	remaining: 77ms
957:	learn: 3.7992494	total: 1.71s	remaining: 75.2ms
958:	learn: 3.7963694	total: 1.72s	remaining: 73.4ms
959:	learn: 3.7927434	total: 1.72s	remaining: 71.6ms
960:	learn: 3.7851761	total: 1.72s	remaining: 69.8ms
961:	learn: 3.7823520	total: 1.72s	remaining: 68ms
962:	learn: 3.7775171	total: 1.72s	remaining: 66.2ms
963:	learn: 3.7698392	total: 1.73s	remaining: 64.4ms
964:	learn: 3.7655571	total: 1.73s	remaining: 62.6ms
965:	learn: 3.7602670	total: 1.73s	remaining: 60.9ms
966:	learn: 3.7554190	total: 1.73s	remaining: 59.1ms
967:	learn: 3.7506436	total: 1.73s	remaining: 57.3ms
968:	learn: 3.7467283	total: 1.74s	remaining: 55.5ms
969:	learn: 3.7409966	total: 1.74s	remaining: 53.7ms
970:	learn: 3.7356506	total: 1.74s	remaining: 51.9ms
971:	learn: 3.7300992	total: 1.74s	remaining: 50.2ms
972:	learn: 3.7278638	total: 1.74s	remaining: 48.4ms
973:	learn: 3.7221008	total: 1.74s	remaining: 46.6ms
974:	learn: 3.7164954	total: 1.75s	remaining: 44.8ms
975:	learn: 3.7105874	total: 1.75s	remaining: 43ms
976:	learn: 3.7058782	total: 1.75s	remaining: 41.2ms
977:	learn: 3.6980031	total: 1.75s	remaining: 39.4ms
978:	learn: 3.6907118	total: 1.75s	remaining: 37.6ms
979:	learn: 3.6820692	total: 1.76s	remaining: 35.9ms
980:	learn: 3.6772614	total: 1.76s	remaining: 34.1ms
981:	learn: 3.6720601	total: 1.76s	remaining: 32.3ms
982:	learn: 3.6652238	total: 1.76s	remaining: 30.5ms
983:	learn: 3.6618641	total: 1.76s	remaining: 28.7ms
984:	learn: 3.6558114	total: 1.77s	remaining: 26.9ms
985:	learn: 3.6486967	total: 1.77s	remaining: 25.1ms
986:	learn: 3.6430800	total: 1.77s	remaining: 23.3ms
987:	learn: 3.6392285	total: 1.77s	remaining: 21.5ms
988:	learn: 3.6321767	total: 1.77s	remaining: 19.7ms
989:	learn: 3.6258535	total: 1.77s	remaining: 17.9ms
990:	learn: 3.6183623	total: 1.78s	remaining: 16.1ms
991:	learn: 3.6143467	total: 1.78s	remaining: 14.3ms
992:	learn: 3.6092504	total: 1.78s	remaining: 12.6ms
993:	learn: 3.6053112	total: 1.78s	remaining: 10.8ms
994:	learn: 3.5998652	total: 1.78s	remaining: 8.97ms
995:	learn: 3.5947241	total: 1.79s	remaining: 7.17ms
996:	learn: 3.5877839	total: 1.79s	remaining: 5.38ms
997:	learn: 3.5832254	total: 1.79s	remaining: 3.59ms
998:	learn: 3.5804865	total: 1.79s	remaining: 1.79ms
999:	learn: 3.5754571	total: 1.79s	remaining: 0us
MAE CV para CatBoostRegressor: 21.440976156397138

Ahora se van a graficar los resultados obtenidos del crossvalidation por modelo.

Para ello, se crea un dataframe para summary y se define una función para plotear los resultados.

In [37]:
summary_df = pd.DataFrame(summary).drop('Indice', axis = 1)

Visualización de summary:

In [38]:
summary_df.head()
Out[38]:
Modelo MAE test (DrivenData) MAE CV MAE CV std Algoritmo Hiperparámetros Características Descripción
0 Rando_0 None 19.890978 9.413129 RandomForestRegressor {'bootstrap': True, 'ccp_alpha': 0.0, 'criterion': 'squared_error', 'max_depth': None, 'max_features': 1.0, 'max_leaf_nodes': None, 'max_samples': None, 'min_impurity_decrease': 0.0, 'min_samples_leaf': 1, 'min_samples_split': 2, 'min_weight_fraction_leaf': 0.0, 'monotonic_cst': None, 'n_estimators': 100, 'n_jobs': None, 'oob_score': False, 'random_state': 42, 'verbose': 0, 'warm_start': False} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
1 SVR_1 None 33.194767 6.462950 SVR {'C': 1.0, 'cache_size': 200, 'coef0': 0.0, 'degree': 3, 'epsilon': 0.1, 'gamma': 'scale', 'kernel': 'rbf', 'max_iter': -1, 'shrinking': True, 'tol': 0.001, 'verbose': False} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento.
2 KNeig_2 None 21.418424 11.206360 KNeighborsRegressor {'algorithm': 'auto', 'leaf_size': 30, 'metric': 'minkowski', 'metric_params': None, 'n_jobs': None, 'n_neighbors': 5, 'p': 2, 'weights': 'uniform'} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento.
3 Gauss_3 None 55.677195 30.604036 GaussianProcessRegressor {'alpha': 1e-10, 'copy_X_train': True, 'kernel': None, 'n_restarts_optimizer': 0, 'n_targets': None, 'normalize_y': False, 'optimizer': 'fmin_l_bfgs_b', 'random_state': None} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento.
4 XGBRe_4 None 22.376820 7.650232 XGBRegressor {'objective': 'reg:squarederror', 'base_score': None, 'booster': None, 'callbacks': None, 'colsample_bylevel': None, 'colsample_bynode': None, 'colsample_bytree': None, 'device': None, 'early_stopping_rounds': None, 'enable_categorical': False, 'eval_metric': None, 'feature_types': None, 'gamma': None, 'grow_policy': None, 'importance_type': None, 'interaction_constraints': None, 'learning_rate': None, 'max_bin': None, 'max_cat_threshold': None, 'max_cat_to_onehot': None, 'max_delta_step': None, 'max_depth': None, 'max_leaves': None, 'min_child_weight': None, 'missing': nan, 'monotone_constraints': None, 'multi_strategy': None, 'n_estimators': None, 'n_jobs': None, 'num_parallel_tree': None, 'random_state': 42, 'reg_alpha': None, 'reg_lambda': None, 'sampling_method': None, 'scale_pos_weight': None, 'subsample': None, 'tree_method': None, 'validate_parameters': None, 'verbosity': None} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n

Función para plotear (diagrama de barras horizontales con líneas de "error" para el std):

In [141]:
def plot_results(df, col, dataset = 'completo'):
    #Se crea la figura
    fig, ax = plt.subplots(figsize = (10, 5))

    #Se plotea la marca a mejorar
    sns.barplot(x = [28] * df.shape[0], y = 'Modelo', data = df, label = "Mejora base", color = 'b', alpha = 0.5)
    #Se plotean los resultados
    sns.barplot(x = col, y = 'Modelo', data = df, label = col, color = 'b')
    #Se plotean las desviaciones estándar de cada modelo
    for i, value in enumerate(df['MAE CV std']):
        col_value = df[col].iloc[i] #Valor de la columna (MAE CV, por ejemplo)
        start = df[col].iloc[i] - value/2
        end = df[col].iloc[i] + value/2
        if i == 0:
            plt.plot([start, end], [i, i], color = "red", label = "std")
        else:
            plt.plot([start, end], [i, i], color = "red")
        #Se añade texto para ver los resultados
        plt.text(x = 0.2, y = i, s = f'MAE CV = {round(col_value, 4)}, std = {round(value, 4)}', 
                 color = "white", fontweight = 'bold', size = 6)

    #Etiquetas y título
    ax.legend(ncol=3, loc="upper right", frameon=True)
    ax.set(ylabel="", xlabel=f"{col} por Modelo Experimentado")
    ax.set_title(f"Evaluación del Algoritmos mediante MAE CV dataset {dataset}")
    sns.despine(left=True, bottom=True)
    #Ref: https://seaborn.pydata.org/examples/part_whole_bars.html

Se plotean los resultados ordenándolos según el mejor MAE de validación (el más bajo)

In [40]:
plot_results(summary_df.sort_values(by = 'MAE CV'), 'MAE CV')
No description has been provided for this image

Observaciones:

  • Rando_0: tiene presenta el mejor valor MAE mediante cv obtenido. Ha obtenido mejor marca que la de partida seteada como objetivo de mejora (un MAE de 28). Sin embargo, la desviación estandar de su cv no es de la mejor. Cuanto menor sea el std, más robusta es la marca obtenida.
  • LGBMR_5: tiene muy buena puntuación también, con un peor mae que el anterior pero un mejor std.
  • KNeig_2: también mejora la marca base (mae = 28), pero es un poco peor que el anterior en scoring y std.
  • XGBRe_4: Continúa en una buena línea junto con los anteriores, se sigue considerando para mejorar hiperparámetros.
  • CatBo_6: Resultados muy parecidos al anterior con un std un poco mayor.
  • SVR_1: no mejora la marca, pero eso no significa que no se puedan encontrar unos parámetros que sí la mejoren. Además, es el más estable con su marca, pues presenta la menor de las std.
  • Gauss_3 tiene una marca realmente mala, con muchísima diferencia con respecto al resto y una std muy grande.

Se decide eliminar aquellos modelos que no hayan sido capaz de mejorar la marca mae = 28 del estudio y continuar con los otros, ya que, normalmente en las predicciones de test, se empeora.

In [41]:
models_to_remove = [model for model in dict_models.keys() if 
                    summary_df['MAE CV'][summary_df['Algoritmo'] == model].iloc[0] > 28]
for model in models_to_remove:
    del dict_models[model]

Se visualizan los modelos a buscar sus mejores hiperparámetros

In [42]:
list(dict_models.keys())
Out[42]:
['RandomForestRegressor',
 'KNeighborsRegressor',
 'XGBRegressor',
 'LGBMRegressor',
 'CatBoostRegressor']

Optimización de hiperparámetros: Algoritmo Genético¶

La siguiente función tiene una misión muy especial: optimizar no solo los hiperparámetros de los modelos, sino también las características a usar del dataset con el fin de obtener la mejor puntuación posible.

A diferencia de otros algoritmos estocásticos como RandomizedSearchCV, este tipo de algoritmo presenta una mejora direccionada gracias a su inteligente sistema basado en el propio funcionamiento de la evolución natural.

Además, tiene la ventaja de poder establecer fácilmente el método de penalización así como la estructura de sus indiviuos (es decir, la estructura genética), pudiendo añadir las características como un cromosoma más.

Hay infinitas formas de configurar al individuo y su estructura genética. En este caso, se ha escogido la siguiente estructura:

Individuo = {"Model": class_model, "selected_params": {selected_params}, "cols_selected": [cols_selected]}

Cada modelo se enviará por separado, es decir, la elección del modelo no será algo a optimizar.

Tanto los parámetros como las columnas serán seleccionadas para cada individuo de forma aleatoria. Sin embargo, en el caso de las columnas, se creará una distribución de probabilidad de forma que se favorezca la elección de una cantidad mayor de características, ya que, normalmente, cuantas más caraceterísticas se tengan, mejores resultados se obtienen.

La función fitness evaluará, al igual que anteriormente, según la media del cv del modelo con sus datos de entrenamiento ya sea tal cual o escalado.

Al final, se devolverá como resultados el mejor individuo con sus características genéticas, el mejor mae cv, su std y un histórico del mae promedio de la población.

Por lo demás, he intentado que el código esté comentado lo mejor posible para que sea autoexplicativo.

IMPORTANTE: He escogido la estructura de los apuntes de clase del AG y lo he adaptado al problema que ataña, por lo que los nombres de las funciones podrían coincidir.

In [ ]:
import random
np.random.seed(seed)
random.seed(seed)
def AG(class_model, params, N = 12, generations = 15):
    '''N representa el número de individuos por población, generations representa la cantidad de generaciones'''
    start_time = time.time()
    def generate_ind(class_model, params):
        '''Función para generar un individuo'''
        global X
        global y
        '''Función para generar a un individuo'''
        selected_params = {
            param: random.choice(values) for param, values in params.items()
        }
        model = class_model(**selected_params)
        '''
        Ahora, también se tendrá en cuenta las columnas de X con las que se va a entrenar
        el modelo como una variable más a optimizar. Por lo tanto, se escogerá aleatoriamente
        con una distribución de probabilidad dada (se prioriza un número alto de características)
        un número de columnas y luego, igualmente, se escogerán aleatoriamente dichas columnas
        con reemplazo para evitar que se escoja dos veces o más la misma.
        '''
        total_cols = len(X.columns.tolist())
        number_posible_cols = list(range(1, total_cols + 1))
        prob = np.linspace(1, 10, total_cols) #Se genera valores del 1 al 10 en tantos pasos como columnas haya
        prob /= prob.sum() #Se dividi cada valor entre la suma total para obtener valores entre 0 y 1, aumentando en cada paso
        n_cols_selected = np.random.choice(number_posible_cols, p = prob) #Más probable que escoge un número alto
        cols_selected = random.sample(X.columns.tolist(), k = n_cols_selected)
        #Ref: https://numpy.org/doc/stable/reference/random/generated/numpy.random.choice.html
        #      https://docs.python.org/es/3/library/random.html
        
        individual = {
            'model': model, #el modelo no es aleatorio, porque se va a optimizar cada modelo por separado
            'cols_selected': cols_selected, # Se codifican las columnas usadas como un gen porque se usará para mutar
            'selected_params': selected_params #Igual para los hiperparámetros
        }
        return individual
    def generate_pop(N, class_model, params):
        '''Se generan N individuos'''
        print(f"Generando Población Inicial de {N} individuos para la clase {class_model.__name__}...")
        return [generate_ind(class_model, params) for _ in range(N)]
    
    def fitness(individual):
        '''Función de evaluación'''
        global X
        global y
        global models_to_scale
        '''Se calcula el fitness. Como la función de coste es el mae, el target será 0'''
        model = individual['model']
        cols_selected = individual['cols_selected'].copy()
        #Si el class_model no esta en los modelos para escalar, no hay que desescalar entrenar y puntuar
        if model.__class__.__name__ not in models_to_scale:
            cv_mae, cv_mae_std = pers_cross_val_score(model, X.loc[:,cols_selected], y)
        else:
            #Se normaliza X e y, luego se pasa a dataframe X para poder ser filtrado y enviado a evaluar
            X_norm = pd.DataFrame(x_min_max_scaler.transform(X), columns = X.columns)
            y_norm = y_min_max_scaler.transform(np.array(y).reshape(-1, 1))
            cv_mae, cv_mae_std = pers_cross_val_score(model, X_norm.loc[:,cols_selected], y_norm, scaled = True)
        return cv_mae, cv_mae_std #Cuanto más ceranos a cero, mejor
    
    def calc_pop_fitness(pop):
        '''Se calcula el fitness para cada individuo'''
        pop_fitnesses = [(fitness(ind), ind) for ind in pop]
        #Se ordena de menor a mayor, ya que menor mae es mejor. En caso de empate, se ordena con el menor std
        pop_fitnesses = sorted(pop_fitnesses, key = lambda x: (x[0][0], x[0][1]))
        return pop_fitnesses

    def evolve(pop, class_model, params, mutate = 0.01, retain = 0.2, random_select = 0.05):
        '''Función de evolución: mutación y reproducción'''
        global X
        global y
        '''Función para seleccionar los mejores, mutar y reproducir'''
        #Se calcula el fitness para toda la población actual
        pop_fitnesses = calc_pop_fitness(pop)
        #Se extrae solo a los individuos, que ya están ordenados de mejor a peor
        pop_ordered = [x[1] for x in pop_fitnesses]
        #Se escoge al primer 20% de individuos (el 20% mejor) para ser los padres
        retain_length = int(len(pop) * retain)
        parents = pop_ordered[:retain_length]

        #Se añaden individuos aleatoriamente para promover la diversidad genética
        for individual in pop_ordered[retain_length:]:
            if random_select > np.random.rand():
                parents.append(individual)
        
        
        #Se mutan algunos
        for individual in parents:
            if mutate > np.random.rand():
                '''
                El tipo de individuo creado es bastante especial: tiene tres cromosomas, pero realmente 
                tan solo uno (model) es el que ha funcionado para generar el fitness, ya que este
                cromosoma ha sido entrenado con los otros dos que se han añadido como info adicional.
                Por lo tanto, al mutar, se podrán mezclar cromosomas de un individuo con los de otro pero,
                tras hacer esto, se deberá ejecutar de nuevo el modelo resultante con esta nueva
                combinación de cromosomas, es decir, con los parámetros resultantes y las columnas 
                escogidas.
                '''
                feature_to_mutate = random.choice(list(individual.keys()))
                if feature_to_mutate == 'cols_selected':
                    #La forma de mutar será eliminando columnas si hay, al menos, más de una
                    cols_selected = individual['cols_selected'].copy() #Se usa copy para desligar la variable de la dirección de memoria
                    if len(cols_selected) > 1:
                        cols_selected.pop(-1) #Se elimina la última col
                    individual['cols_selected'] = cols_selected
                else:
                    selected_params = {
                            param: random.choice(values) for param, values in params.items()
                                    }
                    individual['selected_params'] = selected_params
                    model = class_model(**selected_params)
                    individual['model'] = model
        #Reproducción
        #Se calcula la cantidad de hijos a tener (hasta completar la población)
        desired_children_length = len(pop) - len(parents)
        children = []
        #Se itera teniendo hijos hasta completar la población
        while len(children) < desired_children_length:
            # Se escoge, de entre los padres, un padre y una madre diferentes
            male, female = random.sample(parents, k = 2)
            # Para el padre, se escoge las columnas, para la madre, los parámetros
            cols_selected = male['cols_selected']
            selected_params = female['selected_params']
            #Se entrena de nuevo el modelo
            model = class_model(**selected_params)
            #Se crea el nuevo individuo hijo
            child = {
                'model': model,
                'cols_selected': cols_selected,
                'selected_params': selected_params
            }
            #Se añade a la lista de hijos
            children.append(child)
        #Se suma la lista de padres e hijos, formando una nueva población del mismo tamaño que la anterior
        new_pop = parents + children
        return new_pop

    def calc_avg_fitnesses(pop_fitnesses):
        '''Con esta función se calcula la media de los fitnesses como control de mejora'''
        sum_mae = 0
        sum_std = 0
        for mae_std, _ in pop_fitnesses:
            sum_mae += mae_std[0]
            sum_std += mae_std[1]
        avg_mae = sum_mae / len(pop_fitnesses)
        avg_std = sum_std / len(pop_fitnesses)
        return avg_mae, avg_std
    
    #Se ejecuta el Algoritmo Genético
    error = 12.0 #error aceptado del mae (se considera bueno teniendo en cuanta la experimentación previa)
    #Se crea una lista para el historial de la media de los fitness para luego ver su evolución
    hist_pop_fitnesses = []
    #Se inicializa el proceso
    pop = generate_pop(N, class_model, params)
    #Calculo el fitness para la población
    pop_fitnesses = calc_pop_fitness(pop)
    #Se calcula la media para el historial
    avg_mae, avg_std = calc_avg_fitnesses(pop_fitnesses)
    hist_pop_fitnesses.append(avg_mae)
    #El mejor individuo es el primero por orden en la población, ya que se devolvió ordenada
    print(f'Mae cv del Mejor modelo en la inicialización: {pop_fitnesses[0][0][0].round(4)} con std = {pop_fitnesses[0][0][1].round(4)}')

    print("Comienza la búsqueda...\n")
    for i in range(1, generations):
        pop = evolve(pop, class_model, params, retain=0.2, random_select=0.2, mutate=0.2)
        #Calculo el fitness para la población
        pop_fitnesses = calc_pop_fitness(pop)
        #Se calcula la media para el historial
        avg_mae, avg_std = calc_avg_fitnesses(pop_fitnesses)
        hist_pop_fitnesses.append((avg_mae, avg_std))
        #El mejor individuo es el primero por orden en la población, ya que se devolvió ordenada
        best_ind = pop_fitnesses[0][1]
        best_mae = pop_fitnesses[0][0][0].round(4)
        best_mae_std = pop_fitnesses[0][0][1].round(4)
        print(f'avg_Mae_val de la población en la generación {i}: {avg_mae} con std media = {avg_std}')
        print(f'Mae_val del Mejor modelo en la generación {i}: {best_mae} con std = {best_mae_std}')

        if best_mae < error:
            break
    print(f"Mejor Mae_val de la clase {class_model.__name__}: {best_mae} con std = {best_mae_std}")
    end_time = time.time()
    total_time = round((end_time - start_time) / 3600, 2) #Cálculo de tiempo de procesamiento en horas
    print(f"\n\nTiempo total de búsqueda con AG: {total_time} h")
    return best_ind, best_mae, best_mae_std, hist_pop_fitnesses

Ahora, para optimizar cada modelo por separado, se creará un diccionario que contendrá, como clave, el nombre de cada modelo y como valores diccionarios con un espacio de búsqueda de parámetros a combinar.

In [44]:
dict_params_to_optimize = {
    'RandomForestRegressor': {
        'criterion': ['squared_error', 'absolute_error'],
        'n_estimators': [100, 200, 300, 400, 500],  # Número de árboles en el bosque
        'max_features': [None, 'sqrt', 'log2'],  # Número de características a considerar para la mejor división
        'max_depth': [None, 10, 20, 30],  # Profundidad máxima del árbol
        'min_samples_split': [2, 5, 10],  # Número mínimo de muestras requeridas para dividir un nodo
        'min_samples_leaf': [1, 2, 4],  # Número mínimo de muestras requeridas para estar en un nodo hoja
        'bootstrap': [True, False],  # Si se utiliza el muestreo bootstrap
        'random_state': [seed]  # Para la reproducibilidad
    },
    'SVR': {
        'C': [0.1, 1, 10, 100, 1000],           # Coeficiente de penalización del error
        'kernel': ['linear', 'rbf', 'poly', 'sigmoid'],  # Tipo de kernel
        'gamma': ['scale', 'auto', 0.01, 0.1, 1],  # Coeficiente del kernel para 'rbf', 'poly' y 'sigmoid'
        'degree': [2, 3, 4],                    # Grado del polinomio (solo se usa en el kernel 'poly')
        'epsilon': [0.1, 0.2, 0.5, 0.3, 0.01]   # Margen de tolerancia para no penalizar errores pequeños
    },
    'KNeighborsRegressor': {
        'n_neighbors': [3, 5, 10, 15, 20],             # Número de vecinos
        'weights': ['uniform', 'distance'],            # Tipo de ponderación de los vecinos
        'algorithm': ['auto', 'ball_tree', 'kd_tree', 'brute'],  # Algoritmo utilizado para encontrar vecinos
        'leaf_size': [10, 30, 50, 70],                 # Tamaño de las hojas para 'ball_tree' o 'kd_tree'
    },
   'XGBRegressor': {
        'n_estimators': [100, 200, 300],           # Número de árboles de decisión en el modelo de boosting
        'max_depth': [3, 5, 7],                    # Profundidad máxima de cada árbol, para controlar el ajuste del modelo
        'learning_rate': [0.01, 0.05, 0.1],        # Tasa de aprendizaje; valores más bajos pueden mejorar la precisión pero requieren más iteraciones
        'subsample': [0.7, 0.8, 0.9, 1.0],         # Porcentaje de muestras usadas para entrenar cada árbol, ayuda a evitar el sobreajuste
        'colsample_bytree': [0.6, 0.7, 0.8, 1.0],  # Porcentaje de características usadas en cada árbol, para controlar la diversidad del modelo
        'reg_alpha': [0, 0.1, 0.5, 1],             # Regularización L1, para reducir el sobreajuste aplicando penalización a pesos altos
        'reg_lambda': [0, 0.1, 0.5, 1],            # Regularización L2, también para evitar el sobreajuste mediante penalización a pesos altos
        'random_state': [seed]                     # Semilla aleatoria para garantizar la reproducibilidad del modelo
},
'LGBMRegressor': {
        'n_estimators': [100, 200, 300],           # Número de árboles en el modelo
        'max_depth': [-1, 5, 10, 15],              # Profundidad máxima de los árboles; -1 significa sin límite
        'learning_rate': [0.01, 0.05, 0.1, 0.2],   # Tasa de aprendizaje para ajustar la contribución de cada árbol
        'num_leaves': [20, 31, 40, 50],            # Número máximo de hojas por árbol; más hojas pueden aumentar la precisión pero también el riesgo de sobreajuste
        'min_child_samples': [10, 20, 30],         # Mínimo de muestras necesarias en una hoja para reducir el sobreajuste
        'subsample': [0.7, 0.8, 0.9, 1.0],         # Fracción de datos usados para entrenar cada árbol, ayuda a evitar el sobreajuste
        'colsample_bytree': [0.6, 0.8, 1.0],       # Proporción de características usadas en cada árbol, aumentando la diversidad del modelo
        'random_state': [seed]                     # Semilla para asegurar la reproducibilidad
},
'CatBoostRegressor': {
        'iterations': [100, 200, 300],             # Número de iteraciones de boosting (equivalente al número de árboles)
        'depth': [4, 6, 8, 10],                    # Profundidad de cada árbol, para controlar el ajuste del modelo
        'learning_rate': [0.01, 0.05, 0.1],        # Tasa de aprendizaje, controla el peso de cada nuevo árbol
        'l2_leaf_reg': [1, 3, 5, 7, 9],            # Regularización L2 aplicada a los pesos de las hojas para reducir el sobreajuste
        'bagging_temperature': [0.0, 0.5, 1.0],    # Controla el enfoque de muestreo por bagging; valores más altos generan árboles más diversos
        'random_seed': [seed]                      # Semilla aleatoria para asegurar la reproducibilidad del modelo
}
}
# Ref: Los valores escogidos de cada modelo provienen de Chatgpt habiendo sido modificados algunos parámetros por decisión personal 

A continuación, se itera llamando a cada modelo con sus posibles parámetros a combinar y enviándolos al algoritmo genético para buscar soluciones subóptimas.

In [45]:
#Se crea un dict donde se almacenará, por cada clase de modelo, una lista del mejor modelo del AG y su Mae_val
best_models_from_AG = {key: None for key in dict_models.keys()}
#Se itera en cada clase de modelo
for name, class_model in dict_models.items():
    #Se cogen los parámetros a optimizar definidos
    params = dict_params_to_optimize[name]
    #Se llama al Algoritmo Genético
    best_ind, best_mae, best_mae_std, hist_pop_fitnesses = AG(class_model, params)
    #Se añade el mejor individuo y mae_val al diccionario best_models_from_AG
    best_models_from_AG[name] = [best_ind, best_mae, best_mae_std, hist_pop_fitnesses]
Generando Población Inicial de 12 individuos para la clase RandomForestRegressor...
Mae cv del Mejor modelo en la inicialización: 19.0723 con std = 9.1433
Comienza la búsqueda...

avg_Mae_val de la población en la generación 1: 22.01507120727683 con std media = 10.736271280427802
Mae_val del Mejor modelo en la generación 1: 19.0723 con std = 9.1433
avg_Mae_val de la población en la generación 2: 20.866441409715755 con std media = 10.089022199267523
Mae_val del Mejor modelo en la generación 2: 19.1147 con std = 9.1447
avg_Mae_val de la población en la generación 3: 20.30211109767276 con std media = 9.583542179112545
Mae_val del Mejor modelo en la generación 3: 19.1147 con std = 9.1447
avg_Mae_val de la población en la generación 4: 19.875081552301666 con std media = 9.170757115102639
Mae_val del Mejor modelo en la generación 4: 19.0245 con std = 9.0578
avg_Mae_val de la población en la generación 5: 19.48175833868901 con std media = 9.14278451280001
Mae_val del Mejor modelo en la generación 5: 19.0245 con std = 9.0578
avg_Mae_val de la población en la generación 6: 19.830005570915244 con std media = 8.817469297443571
Mae_val del Mejor modelo en la generación 6: 19.0245 con std = 9.0578
avg_Mae_val de la población en la generación 7: 19.961255640594732 con std media = 8.756855220201942
Mae_val del Mejor modelo en la generación 7: 19.0245 con std = 9.0578
avg_Mae_val de la población en la generación 8: 20.10659936816822 con std media = 8.707128520581525
Mae_val del Mejor modelo en la generación 8: 19.0245 con std = 9.0578
avg_Mae_val de la población en la generación 9: 19.14881143546219 con std media = 9.019106203286855
Mae_val del Mejor modelo en la generación 9: 19.0245 con std = 9.0578
avg_Mae_val de la población en la generación 10: 19.026131113134777 con std media = 9.05823376703365
Mae_val del Mejor modelo en la generación 10: 19.0245 con std = 9.0578
avg_Mae_val de la población en la generación 11: 19.913355558249563 con std media = 9.51845076291741
Mae_val del Mejor modelo en la generación 11: 19.0039 con std = 9.2528
avg_Mae_val de la población en la generación 12: 19.443682280176926 con std media = 9.655192171341922
Mae_val del Mejor modelo en la generación 12: 19.0039 con std = 9.2528
avg_Mae_val de la población en la generación 13: 19.12684059656753 con std media = 9.372189119052571
Mae_val del Mejor modelo en la generación 13: 19.0039 con std = 9.2528
avg_Mae_val de la población en la generación 14: 19.019774977194146 con std media = 9.290360721500223
Mae_val del Mejor modelo en la generación 14: 18.9738 con std = 9.2501
Mejor Mae_val de la clase RandomForestRegressor: 18.9738 con std = 9.2501


Tiempo total de búsqueda con AG: 2.39 h
Generando Población Inicial de 12 individuos para la clase KNeighborsRegressor...
Mae cv del Mejor modelo en la inicialización: 20.0609 con std = 10.3103
Comienza la búsqueda...

avg_Mae_val de la población en la generación 1: 20.258365474463428 con std media = 10.503339876668987
Mae_val del Mejor modelo en la generación 1: 20.0609 con std = 10.3103
avg_Mae_val de la población en la generación 2: 20.2019415487344 con std media = 10.448180344253904
Mae_val del Mejor modelo en la generación 2: 20.0609 con std = 10.3103
avg_Mae_val de la población en la generación 3: 20.168847244663798 con std media = 10.418408732877745
Mae_val del Mejor modelo en la generación 3: 20.0316 con std = 10.2971
avg_Mae_val de la población en la generación 4: 20.031587687175296 con std media = 10.297130442204503
Mae_val del Mejor modelo en la generación 4: 20.0316 con std = 10.2971
avg_Mae_val de la población en la generación 5: 20.031587687175296 con std media = 10.297130442204503
Mae_val del Mejor modelo en la generación 5: 20.0316 con std = 10.2971
avg_Mae_val de la población en la generación 6: 20.031587687175296 con std media = 10.297130442204503
Mae_val del Mejor modelo en la generación 6: 20.0316 con std = 10.2971
avg_Mae_val de la población en la generación 7: 20.031587687175296 con std media = 10.297130442204503
Mae_val del Mejor modelo en la generación 7: 20.0316 con std = 10.2971
avg_Mae_val de la población en la generación 8: 20.031587687175296 con std media = 10.297130442204503
Mae_val del Mejor modelo en la generación 8: 20.0316 con std = 10.2971
avg_Mae_val de la población en la generación 9: 20.667579057524534 con std media = 10.56369186791846
Mae_val del Mejor modelo en la generación 9: 19.9331 con std = 10.3064
avg_Mae_val de la población en la generación 10: 20.425473962491466 con std media = 10.47767049833328
Mae_val del Mejor modelo en la generación 10: 19.9331 con std = 10.3064
avg_Mae_val de la población en la generación 11: 20.289519810782412 con std media = 10.381145260874648
Mae_val del Mejor modelo en la generación 11: 19.8566 con std = 10.1503
avg_Mae_val de la población en la generación 12: 19.9149297480531 con std media = 10.199274398876124
Mae_val del Mejor modelo en la generación 12: 19.8566 con std = 10.1503
avg_Mae_val de la población en la generación 13: 19.944094232833645 con std media = 10.22373840970822
Mae_val del Mejor modelo en la generación 13: 19.8566 con std = 10.1503
avg_Mae_val de la población en la generación 14: 19.856600778492005 con std media = 10.150346377211934
Mae_val del Mejor modelo en la generación 14: 19.8566 con std = 10.1503
Mejor Mae_val de la clase KNeighborsRegressor: 19.8566 con std = 10.1503


Tiempo total de búsqueda con AG: 0.0 h
Generando Población Inicial de 12 individuos para la clase XGBRegressor...
Mae cv del Mejor modelo en la inicialización: 19.1575 con std = 9.202
Comienza la búsqueda...

avg_Mae_val de la población en la generación 1: 20.81994449516276 con std media = 9.038795111498793
Mae_val del Mejor modelo en la generación 1: 19.1575 con std = 9.202
avg_Mae_val de la población en la generación 2: 21.40420637949352 con std media = 8.892561452885266
Mae_val del Mejor modelo en la generación 2: 19.3122 con std = 9.236
avg_Mae_val de la población en la generación 3: 21.15502035917153 con std media = 8.708261963353683
Mae_val del Mejor modelo en la generación 3: 19.2222 con std = 9.5117
avg_Mae_val de la población en la generación 4: 20.933059211820556 con std media = 8.962862442265928
Mae_val del Mejor modelo en la generación 4: 19.2222 con std = 9.5117
avg_Mae_val de la población en la generación 5: 20.317446100112743 con std media = 9.353459081980679
Mae_val del Mejor modelo en la generación 5: 18.6614 con std = 9.3943
avg_Mae_val de la población en la generación 6: 20.751716960993836 con std media = 9.22207012876119
Mae_val del Mejor modelo en la generación 6: 18.6614 con std = 9.3943
avg_Mae_val de la población en la generación 7: 19.625609519348362 con std media = 9.386614972818512
Mae_val del Mejor modelo en la generación 7: 18.6614 con std = 9.3943
avg_Mae_val de la población en la generación 8: 18.76485473183943 con std media = 9.374906495082042
Mae_val del Mejor modelo en la generación 8: 18.5939 con std = 9.2924
avg_Mae_val de la población en la generación 9: 19.42158576836571 con std media = 9.203129339857856
Mae_val del Mejor modelo en la generación 9: 18.5939 con std = 9.2924
avg_Mae_val de la población en la generación 10: 18.68999892001551 con std media = 9.322690705859957
Mae_val del Mejor modelo en la generación 10: 18.5939 con std = 9.2924
avg_Mae_val de la población en la generación 11: 18.574350574817938 con std media = 9.248283244564783
Mae_val del Mejor modelo en la generación 11: 18.5156 con std = 9.1159
avg_Mae_val de la población en la generación 12: 19.55006744300621 con std media = 9.081930561627873
Mae_val del Mejor modelo en la generación 12: 18.5521 con std = 9.1474
avg_Mae_val de la población en la generación 13: 19.588539474991133 con std media = 8.940988547450926
Mae_val del Mejor modelo en la generación 13: 18.5156 con std = 9.1159
avg_Mae_val de la población en la generación 14: 18.946468630835735 con std media = 9.051276128125815
Mae_val del Mejor modelo en la generación 14: 18.5156 con std = 9.1159
Mejor Mae_val de la clase XGBRegressor: 18.5156 con std = 9.1159


Tiempo total de búsqueda con AG: 0.06 h
Generando Población Inicial de 12 individuos para la clase LGBMRegressor...
[LightGBM] [Info] Auto-choosing row-wise multi-threading, the overhead of testing was 0.000641 seconds.
You can set `force_row_wise=true` to remove the overhead.
And if memory is not enough, you can set `force_col_wise=true`.
[LightGBM] [Info] Total Bins 3557
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 20
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000202 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3557
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000168 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3557
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3495
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000180 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3483
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000079 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1521
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 8
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000086 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1520
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 8
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000080 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1522
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 8
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000094 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1491
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 8
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000080 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1490
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 8
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000233 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3378
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 18
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000184 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3379
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 18
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3378
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 18
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000213 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3333
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 18
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000206 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3322
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 18
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3564
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 20
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000196 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3563
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000220 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3563
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000185 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3489
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000182 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3476
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000285 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2544
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2545
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2543
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000174 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2501
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2487
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000162 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3336
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 17
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3335
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 17
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3331
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 17
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3260
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 17
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3248
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 17
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000047 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 512
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 3
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000041 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 512
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 3
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000050 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 512
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 3
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000064 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 509
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 3
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000080 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 509
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 3
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2700
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2701
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2696
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2642
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2631
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2408
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 12
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2405
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2402
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2346
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2340
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000170 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000089 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1713
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 9
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1711
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 9
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000096 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1712
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 9
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000089 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1689
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 9
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1688
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 9
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
Mae cv del Mejor modelo en la inicialización: 18.971 con std = 9.1797
Comienza la búsqueda...

[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000196 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3557
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 20
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000167 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3557
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000162 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3557
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3495
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000185 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3483
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000080 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1521
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 8
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000094 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1520
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 8
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000071 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1522
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 8
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000079 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1491
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 8
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000075 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1490
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 8
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000176 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3378
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 18
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3379
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 18
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3378
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 18
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3333
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 18
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3322
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 18
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000162 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3564
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 20
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000168 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3563
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000200 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3563
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000189 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3489
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000173 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3476
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 20
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000106 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000180 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2544
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2545
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2543
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000180 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2501
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2487
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3336
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 17
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3335
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 17
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3331
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 17
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3260
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 17
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 3248
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 17
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000046 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 512
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 3
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000050 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 512
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 3
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000039 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 512
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 3
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000083 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 509
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 3
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000084 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 509
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 3
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000104 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2700
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2701
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2696
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2642
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2631
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2408
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 12
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2405
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2402
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2346
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2340
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000192 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000093 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1713
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 9
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000083 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1711
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 9
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1712
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 9
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000095 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1689
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 9
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000090 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1688
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 9
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000101 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2700
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2701
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2696
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2642
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000103 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2631
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2700
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2701
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2696
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2642
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2631
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000099 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2700
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2701
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2696
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2642
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2631
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 1: 21.526896470148937 con std media = 9.582771670267611
Mae_val del Mejor modelo en la generación 1: 19.6055 con std = 8.9321
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000171 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2700
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2701
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2696
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2642
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2631
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2700
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2701
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2696
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2642
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2631
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2700
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2701
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2696
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2642
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000103 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2631
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000099 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000104 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000100 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000167 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000161 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000160 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000103 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000095 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 2: 22.818190767934002 con std media = 9.621314343057497
Mae_val del Mejor modelo en la generación 2: 20.5426 con std = 9.0618
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000103 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000101 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000100 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000104 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000101 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000106 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000103 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000156 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000168 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000106 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000099 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000101 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000182 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 3: 21.950971001788428 con std media = 9.861138173024559
Mae_val del Mejor modelo en la generación 3: 20.5426 con std = 9.0618
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000168 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000162 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000106 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000097 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000088 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000094 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000229 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2556
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 13
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2558
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2560
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2530
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2516
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 13
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000098 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2304
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 12
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2306
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000099 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2308
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000097 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2275
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2262
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000093 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000176 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2304
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 12
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2306
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2308
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2275
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000090 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2262
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000101 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000096 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000099 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000101 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000169 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 4: 21.25811218446001 con std media = 9.468615780693838
Mae_val del Mejor modelo en la generación 4: 20.5426 con std = 9.0618
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000156 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000088 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2304
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 12
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2306
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000083 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2308
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2275
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2262
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000106 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000181 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000160 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000192 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2304
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 12
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2306
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2308
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2275
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2262
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 12
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2447
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2442
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2388
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2377
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000196 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000175 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000161 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000156 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000161 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000198 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000174 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000156 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000175 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000181 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000156 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000186 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000192 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000176 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 5: 20.542572357482932 con std media = 9.061765735095218
Mae_val del Mejor modelo en la generación 5: 20.5426 con std = 9.0618
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000178 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000186 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000262 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000226 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000170 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000189 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000160 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000167 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000187 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000185 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000160 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000167 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000207 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000161 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 6: 20.36751770630819 con std media = 9.089259236472389
Mae_val del Mejor modelo en la generación 6: 19.3493 con std = 8.8952
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000181 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.001897 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000243 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000175 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2212
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 16
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2214
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2213
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2163
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000169 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 2150
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 16
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000168 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000103 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000106 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000167 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 7: 19.349327184182556 con std media = 8.895193412455274
Mae_val del Mejor modelo en la generación 7: 19.3493 con std = 8.8952
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000177 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000217 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000168 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000161 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000874 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000101 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000162 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000190 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000160 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000169 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000156 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 8: 19.8297497316296 con std media = 9.001431395099747
Mae_val del Mejor modelo en la generación 8: 19.3493 con std = 8.8952
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000103 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000168 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000167 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000167 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000187 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000171 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000221 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing row-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_row_wise=true` to remove the overhead.
And if memory is not enough, you can set `force_col_wise=true`.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000170 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.001417 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000172 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000100 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 9: 19.70964409476784 con std media = 8.974871899438629
Mae_val del Mejor modelo en la generación 9: 19.3493 con std = 8.8952
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000104 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000162 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000160 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000161 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000162 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000664 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000168 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000195 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 10: 19.42895691758811 con std media = 8.712342722096768
Mae_val del Mejor modelo en la generación 10: 19.3493 con std = 8.8952
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000160 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000169 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000174 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000106 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000175 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000171 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000169 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000184 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000818 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000169 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000160 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000171 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000161 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 11: 19.402413673119593 con std media = 8.77329295221627
Mae_val del Mejor modelo en la generación 11: 19.3493 con std = 8.8952
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000165 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing row-wise multi-threading, the overhead of testing was 0.000083 seconds.
You can set `force_row_wise=true` to remove the overhead.
And if memory is not enough, you can set `force_col_wise=true`.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000227 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000166 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000174 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000181 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000493 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000160 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000162 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000173 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 12: 19.5343416372619 con std media = 8.938196970555973
Mae_val del Mejor modelo en la generación 12: 19.3493 con std = 8.8952
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000109 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000170 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000105 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000167 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000161 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing row-wise multi-threading, the overhead of testing was 0.002935 seconds.
You can set `force_row_wise=true` to remove the overhead.
And if memory is not enough, you can set `force_col_wise=true`.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000156 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000133 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000147 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000104 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000154 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000159 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000121 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000155 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing row-wise multi-threading, the overhead of testing was 0.004260 seconds.
You can set `force_row_wise=true` to remove the overhead.
And if memory is not enough, you can set `force_col_wise=true`.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000149 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000168 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000122 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 13: 19.62684886380157 con std media = 8.959698749606321
Mae_val del Mejor modelo en la generación 13: 19.3493 con std = 8.8952
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000160 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.003589 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000136 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000114 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000156 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000171 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000151 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000132 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000144 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000108 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000124 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000143 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000139 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000865 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000110 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000131 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000171 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000140 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000169 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000115 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000148 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000107 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000125 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000101 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1822
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000098 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1824
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000126 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1824
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000095 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1802
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000100 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1796
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000158 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000152 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000120 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000146 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000104 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000135 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000137 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000118 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000172 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000145 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000095 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1822
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 14
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000092 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1824
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1824
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000102 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1802
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000116 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1796
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 14
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000123 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000142 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000157 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000163 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000117 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000111 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000208 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000119 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000134 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000128 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000153 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000112 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000129 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
avg_Mae_val de la población en la generación 14: 19.647213808782524 con std media = 8.945772757426463
Mae_val del Mejor modelo en la generación 14: 19.3493 con std = 8.8952
Mejor Mae_val de la clase LGBMRegressor: 19.3493 con std = 8.8952


Tiempo total de búsqueda con AG: 0.03 h
Generando Población Inicial de 12 individuos para la clase CatBoostRegressor...
0:	learn: 27.9297030	total: 13.3ms	remaining: 3.98s
1:	learn: 27.8334811	total: 14.9ms	remaining: 2.22s
2:	learn: 27.7396575	total: 16.4ms	remaining: 1.62s
3:	learn: 27.6059446	total: 17.9ms	remaining: 1.33s
4:	learn: 27.4880040	total: 19.5ms	remaining: 1.15s
5:	learn: 27.3654581	total: 21.1ms	remaining: 1.03s
6:	learn: 27.2539611	total: 22.6ms	remaining: 947ms
7:	learn: 27.1340069	total: 24.2ms	remaining: 883ms
8:	learn: 27.0230245	total: 25.8ms	remaining: 833ms
9:	learn: 26.9346715	total: 27.4ms	remaining: 794ms
10:	learn: 26.8501786	total: 28.9ms	remaining: 759ms
11:	learn: 26.7569164	total: 30.5ms	remaining: 731ms
12:	learn: 26.6835773	total: 32.1ms	remaining: 709ms
13:	learn: 26.5981700	total: 34ms	remaining: 694ms
14:	learn: 26.5126892	total: 35.7ms	remaining: 678ms
15:	learn: 26.3990781	total: 37.3ms	remaining: 662ms
16:	learn: 26.3117687	total: 38.7ms	remaining: 644ms
17:	learn: 26.2082222	total: 40.3ms	remaining: 632ms
18:	learn: 26.1048621	total: 42.2ms	remaining: 624ms
19:	learn: 26.0069992	total: 44.1ms	remaining: 617ms
20:	learn: 25.9081142	total: 46.1ms	remaining: 612ms
21:	learn: 25.8242231	total: 47.6ms	remaining: 602ms
22:	learn: 25.7095676	total: 49.2ms	remaining: 593ms
23:	learn: 25.6122198	total: 50.8ms	remaining: 585ms
24:	learn: 25.5091351	total: 52.5ms	remaining: 577ms
25:	learn: 25.4197569	total: 54.1ms	remaining: 570ms
26:	learn: 25.3261752	total: 55.6ms	remaining: 562ms
27:	learn: 25.2342414	total: 57.3ms	remaining: 557ms
28:	learn: 25.1383072	total: 58.9ms	remaining: 551ms
29:	learn: 25.0540847	total: 60.6ms	remaining: 546ms
30:	learn: 24.9768460	total: 62.5ms	remaining: 542ms
31:	learn: 24.8843671	total: 64.3ms	remaining: 538ms
32:	learn: 24.8153007	total: 66ms	remaining: 534ms
33:	learn: 24.7371017	total: 67.7ms	remaining: 530ms
34:	learn: 24.6692827	total: 69.3ms	remaining: 525ms
35:	learn: 24.5851011	total: 71.1ms	remaining: 522ms
36:	learn: 24.5066951	total: 74.2ms	remaining: 528ms
37:	learn: 24.4311180	total: 77ms	remaining: 531ms
38:	learn: 24.3448185	total: 80.1ms	remaining: 536ms
39:	learn: 24.2722317	total: 83.2ms	remaining: 541ms
40:	learn: 24.1862258	total: 85.6ms	remaining: 541ms
41:	learn: 24.1014960	total: 88ms	remaining: 541ms
42:	learn: 24.0166001	total: 90.4ms	remaining: 540ms
43:	learn: 23.9405028	total: 92.8ms	remaining: 540ms
44:	learn: 23.8638495	total: 94.7ms	remaining: 537ms
45:	learn: 23.7911557	total: 96.5ms	remaining: 533ms
46:	learn: 23.7111941	total: 98.9ms	remaining: 533ms
47:	learn: 23.6395829	total: 101ms	remaining: 530ms
48:	learn: 23.5617847	total: 102ms	remaining: 525ms
49:	learn: 23.4823143	total: 104ms	remaining: 520ms
50:	learn: 23.4072845	total: 105ms	remaining: 515ms
51:	learn: 23.3113059	total: 107ms	remaining: 510ms
52:	learn: 23.2285033	total: 108ms	remaining: 505ms
53:	learn: 23.1737065	total: 110ms	remaining: 501ms
54:	learn: 23.1096021	total: 112ms	remaining: 497ms
55:	learn: 23.0505362	total: 113ms	remaining: 493ms
56:	learn: 22.9828999	total: 115ms	remaining: 490ms
57:	learn: 22.9129733	total: 116ms	remaining: 485ms
58:	learn: 22.8675872	total: 118ms	remaining: 481ms
59:	learn: 22.8039542	total: 119ms	remaining: 477ms
60:	learn: 22.7399395	total: 121ms	remaining: 474ms
61:	learn: 22.6741307	total: 122ms	remaining: 470ms
62:	learn: 22.6021876	total: 124ms	remaining: 466ms
63:	learn: 22.5313816	total: 126ms	remaining: 463ms
64:	learn: 22.4782866	total: 127ms	remaining: 457ms
65:	learn: 22.4114850	total: 128ms	remaining: 453ms
66:	learn: 22.3475333	total: 130ms	remaining: 451ms
67:	learn: 22.2784155	total: 131ms	remaining: 448ms
68:	learn: 22.2107867	total: 133ms	remaining: 444ms
69:	learn: 22.1498534	total: 134ms	remaining: 441ms
70:	learn: 22.0938769	total: 136ms	remaining: 438ms
71:	learn: 22.0593973	total: 137ms	remaining: 435ms
72:	learn: 21.9954991	total: 139ms	remaining: 433ms
73:	learn: 21.9329283	total: 141ms	remaining: 430ms
74:	learn: 21.8835020	total: 142ms	remaining: 427ms
75:	learn: 21.8261179	total: 144ms	remaining: 424ms
76:	learn: 21.7760788	total: 146ms	remaining: 422ms
77:	learn: 21.7137505	total: 148ms	remaining: 420ms
78:	learn: 21.6477339	total: 149ms	remaining: 418ms
79:	learn: 21.5853221	total: 151ms	remaining: 415ms
80:	learn: 21.5393040	total: 153ms	remaining: 413ms
81:	learn: 21.4795088	total: 154ms	remaining: 410ms
82:	learn: 21.4213766	total: 156ms	remaining: 407ms
83:	learn: 21.3825055	total: 157ms	remaining: 404ms
84:	learn: 21.3398891	total: 159ms	remaining: 401ms
85:	learn: 21.2706727	total: 160ms	remaining: 399ms
86:	learn: 21.2282339	total: 162ms	remaining: 396ms
87:	learn: 21.1822653	total: 163ms	remaining: 394ms
88:	learn: 21.1393047	total: 165ms	remaining: 391ms
89:	learn: 21.0814469	total: 166ms	remaining: 388ms
90:	learn: 21.0397052	total: 168ms	remaining: 386ms
91:	learn: 20.9967600	total: 170ms	remaining: 384ms
92:	learn: 20.9535088	total: 171ms	remaining: 381ms
93:	learn: 20.9007087	total: 173ms	remaining: 378ms
94:	learn: 20.8548975	total: 174ms	remaining: 376ms
95:	learn: 20.8037244	total: 176ms	remaining: 374ms
96:	learn: 20.7603029	total: 177ms	remaining: 371ms
97:	learn: 20.7040301	total: 179ms	remaining: 369ms
98:	learn: 20.6593932	total: 181ms	remaining: 367ms
99:	learn: 20.6278863	total: 182ms	remaining: 365ms
100:	learn: 20.5815943	total: 184ms	remaining: 362ms
101:	learn: 20.5444256	total: 185ms	remaining: 360ms
102:	learn: 20.5044243	total: 187ms	remaining: 358ms
103:	learn: 20.4429777	total: 189ms	remaining: 355ms
104:	learn: 20.3993411	total: 190ms	remaining: 353ms
105:	learn: 20.3446212	total: 192ms	remaining: 351ms
106:	learn: 20.3055689	total: 193ms	remaining: 349ms
107:	learn: 20.2614567	total: 195ms	remaining: 346ms
108:	learn: 20.2248857	total: 196ms	remaining: 344ms
109:	learn: 20.1716270	total: 198ms	remaining: 342ms
110:	learn: 20.1424641	total: 200ms	remaining: 340ms
111:	learn: 20.1047516	total: 201ms	remaining: 338ms
112:	learn: 20.0679683	total: 203ms	remaining: 335ms
113:	learn: 20.0247561	total: 204ms	remaining: 333ms
114:	learn: 19.9760399	total: 206ms	remaining: 331ms
115:	learn: 19.9301762	total: 207ms	remaining: 329ms
116:	learn: 19.8767157	total: 209ms	remaining: 326ms
117:	learn: 19.8272366	total: 210ms	remaining: 324ms
118:	learn: 19.7859650	total: 212ms	remaining: 322ms
119:	learn: 19.7309305	total: 213ms	remaining: 320ms
120:	learn: 19.6876039	total: 215ms	remaining: 318ms
121:	learn: 19.6411700	total: 217ms	remaining: 316ms
122:	learn: 19.6000378	total: 218ms	remaining: 314ms
123:	learn: 19.5622966	total: 220ms	remaining: 312ms
124:	learn: 19.5186812	total: 221ms	remaining: 310ms
125:	learn: 19.4791873	total: 223ms	remaining: 308ms
126:	learn: 19.4427919	total: 225ms	remaining: 306ms
127:	learn: 19.4085962	total: 226ms	remaining: 304ms
128:	learn: 19.3536793	total: 228ms	remaining: 302ms
129:	learn: 19.3268442	total: 230ms	remaining: 300ms
130:	learn: 19.2835105	total: 232ms	remaining: 299ms
131:	learn: 19.2321314	total: 233ms	remaining: 297ms
132:	learn: 19.1972949	total: 235ms	remaining: 295ms
133:	learn: 19.1567043	total: 236ms	remaining: 293ms
134:	learn: 19.1242632	total: 238ms	remaining: 291ms
135:	learn: 19.0921148	total: 240ms	remaining: 289ms
136:	learn: 19.0372088	total: 241ms	remaining: 287ms
137:	learn: 19.0021647	total: 243ms	remaining: 286ms
138:	learn: 18.9704696	total: 245ms	remaining: 284ms
139:	learn: 18.9471225	total: 247ms	remaining: 282ms
140:	learn: 18.8984215	total: 249ms	remaining: 281ms
141:	learn: 18.8553915	total: 251ms	remaining: 279ms
142:	learn: 18.8236630	total: 253ms	remaining: 278ms
143:	learn: 18.8000357	total: 255ms	remaining: 276ms
144:	learn: 18.7680455	total: 257ms	remaining: 274ms
145:	learn: 18.7386678	total: 259ms	remaining: 273ms
146:	learn: 18.7070213	total: 260ms	remaining: 271ms
147:	learn: 18.6725172	total: 262ms	remaining: 269ms
148:	learn: 18.6438797	total: 264ms	remaining: 267ms
149:	learn: 18.5964084	total: 266ms	remaining: 266ms
150:	learn: 18.5613244	total: 270ms	remaining: 266ms
151:	learn: 18.5298153	total: 273ms	remaining: 265ms
152:	learn: 18.4982129	total: 275ms	remaining: 265ms
153:	learn: 18.4479762	total: 279ms	remaining: 264ms
154:	learn: 18.4193159	total: 282ms	remaining: 264ms
155:	learn: 18.3924152	total: 286ms	remaining: 264ms
156:	learn: 18.3568483	total: 288ms	remaining: 262ms
157:	learn: 18.3252816	total: 290ms	remaining: 261ms
158:	learn: 18.2875007	total: 294ms	remaining: 260ms
159:	learn: 18.2545124	total: 296ms	remaining: 259ms
160:	learn: 18.2296459	total: 298ms	remaining: 257ms
161:	learn: 18.1978273	total: 300ms	remaining: 255ms
162:	learn: 18.1739563	total: 302ms	remaining: 254ms
163:	learn: 18.1424420	total: 304ms	remaining: 252ms
164:	learn: 18.1175778	total: 306ms	remaining: 250ms
165:	learn: 18.0839457	total: 308ms	remaining: 248ms
166:	learn: 18.0549822	total: 310ms	remaining: 247ms
167:	learn: 18.0216459	total: 312ms	remaining: 245ms
168:	learn: 17.9900746	total: 313ms	remaining: 243ms
169:	learn: 17.9611751	total: 315ms	remaining: 241ms
170:	learn: 17.9280167	total: 317ms	remaining: 239ms
171:	learn: 17.8912140	total: 319ms	remaining: 238ms
172:	learn: 17.8619998	total: 321ms	remaining: 236ms
173:	learn: 17.8125721	total: 323ms	remaining: 234ms
174:	learn: 17.7926802	total: 325ms	remaining: 232ms
175:	learn: 17.7694802	total: 327ms	remaining: 231ms
176:	learn: 17.7405869	total: 329ms	remaining: 229ms
177:	learn: 17.7053647	total: 331ms	remaining: 227ms
178:	learn: 17.6638997	total: 333ms	remaining: 225ms
179:	learn: 17.6380949	total: 335ms	remaining: 223ms
180:	learn: 17.6091225	total: 337ms	remaining: 222ms
181:	learn: 17.5917743	total: 339ms	remaining: 220ms
182:	learn: 17.5605549	total: 341ms	remaining: 218ms
183:	learn: 17.5319286	total: 343ms	remaining: 216ms
184:	learn: 17.5077646	total: 345ms	remaining: 214ms
185:	learn: 17.4665187	total: 347ms	remaining: 212ms
186:	learn: 17.4408723	total: 349ms	remaining: 211ms
187:	learn: 17.3982293	total: 351ms	remaining: 209ms
188:	learn: 17.3700647	total: 353ms	remaining: 207ms
189:	learn: 17.3551532	total: 354ms	remaining: 205ms
190:	learn: 17.3254188	total: 356ms	remaining: 203ms
191:	learn: 17.3072029	total: 358ms	remaining: 201ms
192:	learn: 17.2947669	total: 359ms	remaining: 199ms
193:	learn: 17.2660983	total: 361ms	remaining: 197ms
194:	learn: 17.2323449	total: 363ms	remaining: 195ms
195:	learn: 17.2010122	total: 364ms	remaining: 193ms
196:	learn: 17.1827753	total: 366ms	remaining: 191ms
197:	learn: 17.1685672	total: 367ms	remaining: 189ms
198:	learn: 17.1443020	total: 369ms	remaining: 187ms
199:	learn: 17.1226312	total: 370ms	remaining: 185ms
200:	learn: 17.0887019	total: 372ms	remaining: 183ms
201:	learn: 17.0662759	total: 373ms	remaining: 181ms
202:	learn: 17.0452842	total: 375ms	remaining: 179ms
203:	learn: 17.0257200	total: 377ms	remaining: 177ms
204:	learn: 16.9986828	total: 378ms	remaining: 175ms
205:	learn: 16.9700322	total: 380ms	remaining: 173ms
206:	learn: 16.9405974	total: 381ms	remaining: 171ms
207:	learn: 16.9158363	total: 383ms	remaining: 169ms
208:	learn: 16.8857263	total: 385ms	remaining: 168ms
209:	learn: 16.8687321	total: 386ms	remaining: 166ms
210:	learn: 16.8447505	total: 388ms	remaining: 164ms
211:	learn: 16.8242853	total: 389ms	remaining: 162ms
212:	learn: 16.8064848	total: 391ms	remaining: 160ms
213:	learn: 16.7825336	total: 392ms	remaining: 158ms
214:	learn: 16.7609887	total: 394ms	remaining: 156ms
215:	learn: 16.7399731	total: 395ms	remaining: 154ms
216:	learn: 16.7178915	total: 397ms	remaining: 152ms
217:	learn: 16.6963256	total: 398ms	remaining: 150ms
218:	learn: 16.6774191	total: 400ms	remaining: 148ms
219:	learn: 16.6419563	total: 402ms	remaining: 146ms
220:	learn: 16.6173274	total: 403ms	remaining: 144ms
221:	learn: 16.5920373	total: 405ms	remaining: 142ms
222:	learn: 16.5684507	total: 406ms	remaining: 140ms
223:	learn: 16.5403584	total: 408ms	remaining: 138ms
224:	learn: 16.5046396	total: 409ms	remaining: 136ms
225:	learn: 16.4816375	total: 411ms	remaining: 135ms
226:	learn: 16.4588336	total: 412ms	remaining: 133ms
227:	learn: 16.4246750	total: 414ms	remaining: 131ms
228:	learn: 16.3964249	total: 415ms	remaining: 129ms
229:	learn: 16.3773547	total: 417ms	remaining: 127ms
230:	learn: 16.3602360	total: 419ms	remaining: 125ms
231:	learn: 16.3408106	total: 421ms	remaining: 123ms
232:	learn: 16.3234911	total: 422ms	remaining: 121ms
233:	learn: 16.3020252	total: 423ms	remaining: 119ms
234:	learn: 16.2917464	total: 425ms	remaining: 118ms
235:	learn: 16.2758396	total: 427ms	remaining: 116ms
236:	learn: 16.2553676	total: 428ms	remaining: 114ms
237:	learn: 16.2356787	total: 430ms	remaining: 112ms
238:	learn: 16.2149514	total: 431ms	remaining: 110ms
239:	learn: 16.1857107	total: 433ms	remaining: 108ms
240:	learn: 16.1626765	total: 434ms	remaining: 106ms
241:	learn: 16.1388618	total: 436ms	remaining: 105ms
242:	learn: 16.1252023	total: 438ms	remaining: 103ms
243:	learn: 16.1078883	total: 440ms	remaining: 101ms
244:	learn: 16.0834087	total: 441ms	remaining: 99ms
245:	learn: 16.0605993	total: 443ms	remaining: 97.2ms
246:	learn: 16.0406480	total: 445ms	remaining: 95.4ms
247:	learn: 16.0233779	total: 446ms	remaining: 93.6ms
248:	learn: 16.0120537	total: 448ms	remaining: 91.7ms
249:	learn: 15.9904648	total: 450ms	remaining: 89.9ms
250:	learn: 15.9662931	total: 451ms	remaining: 88.1ms
251:	learn: 15.9363763	total: 453ms	remaining: 86.3ms
252:	learn: 15.9212520	total: 455ms	remaining: 84.5ms
253:	learn: 15.9074401	total: 457ms	remaining: 82.8ms
254:	learn: 15.8967136	total: 459ms	remaining: 81.1ms
255:	learn: 15.8768735	total: 463ms	remaining: 79.6ms
256:	learn: 15.8504570	total: 469ms	remaining: 78.5ms
257:	learn: 15.8311677	total: 471ms	remaining: 76.7ms
258:	learn: 15.8189546	total: 474ms	remaining: 75ms
259:	learn: 15.7986500	total: 476ms	remaining: 73.2ms
260:	learn: 15.7741361	total: 478ms	remaining: 71.5ms
261:	learn: 15.7625953	total: 480ms	remaining: 69.7ms
262:	learn: 15.7435288	total: 482ms	remaining: 67.9ms
263:	learn: 15.7162307	total: 484ms	remaining: 66ms
264:	learn: 15.6991788	total: 487ms	remaining: 64.3ms
265:	learn: 15.6795388	total: 489ms	remaining: 62.5ms
266:	learn: 15.6607158	total: 491ms	remaining: 60.6ms
267:	learn: 15.6509275	total: 492ms	remaining: 58.8ms
268:	learn: 15.6368828	total: 494ms	remaining: 56.9ms
269:	learn: 15.6223301	total: 495ms	remaining: 55.1ms
270:	learn: 15.6099838	total: 497ms	remaining: 53.2ms
271:	learn: 15.5930755	total: 498ms	remaining: 51.3ms
272:	learn: 15.5828071	total: 500ms	remaining: 49.5ms
273:	learn: 15.5642589	total: 502ms	remaining: 47.6ms
274:	learn: 15.5502959	total: 504ms	remaining: 45.8ms
275:	learn: 15.5411663	total: 505ms	remaining: 43.9ms
276:	learn: 15.5263470	total: 507ms	remaining: 42.1ms
277:	learn: 15.5127132	total: 508ms	remaining: 40.2ms
278:	learn: 15.4856385	total: 510ms	remaining: 38.4ms
279:	learn: 15.4686674	total: 511ms	remaining: 36.5ms
280:	learn: 15.4612681	total: 513ms	remaining: 34.7ms
281:	learn: 15.4522987	total: 515ms	remaining: 32.8ms
282:	learn: 15.4308650	total: 516ms	remaining: 31ms
283:	learn: 15.4158875	total: 518ms	remaining: 29.2ms
284:	learn: 15.4008198	total: 519ms	remaining: 27.3ms
285:	learn: 15.3849623	total: 521ms	remaining: 25.5ms
286:	learn: 15.3737673	total: 523ms	remaining: 23.7ms
287:	learn: 15.3621393	total: 525ms	remaining: 21.9ms
288:	learn: 15.3535324	total: 526ms	remaining: 20ms
289:	learn: 15.3394111	total: 528ms	remaining: 18.2ms
290:	learn: 15.3222059	total: 530ms	remaining: 16.4ms
291:	learn: 15.3060770	total: 532ms	remaining: 14.6ms
292:	learn: 15.2924531	total: 534ms	remaining: 12.8ms
293:	learn: 15.2719475	total: 536ms	remaining: 10.9ms
294:	learn: 15.2461816	total: 537ms	remaining: 9.11ms
295:	learn: 15.2337641	total: 540ms	remaining: 7.29ms
296:	learn: 15.2148705	total: 541ms	remaining: 5.47ms
297:	learn: 15.1991495	total: 543ms	remaining: 3.65ms
298:	learn: 15.1797012	total: 545ms	remaining: 1.82ms
299:	learn: 15.1610613	total: 547ms	remaining: 0us
0:	learn: 43.7605425	total: 1.9ms	remaining: 569ms
1:	learn: 43.4912581	total: 3.37ms	remaining: 502ms
2:	learn: 43.2693141	total: 4.83ms	remaining: 478ms
3:	learn: 43.0484853	total: 6.33ms	remaining: 468ms
4:	learn: 42.8167283	total: 7.83ms	remaining: 462ms
5:	learn: 42.5756189	total: 9.44ms	remaining: 462ms
6:	learn: 42.3517341	total: 10.9ms	remaining: 458ms
7:	learn: 42.1173355	total: 12.5ms	remaining: 458ms
8:	learn: 41.8793817	total: 14.1ms	remaining: 456ms
9:	learn: 41.6308788	total: 15.6ms	remaining: 453ms
10:	learn: 41.4342028	total: 17.4ms	remaining: 457ms
11:	learn: 41.1882055	total: 18.9ms	remaining: 454ms
12:	learn: 40.9319094	total: 20.5ms	remaining: 452ms
13:	learn: 40.6714090	total: 22ms	remaining: 449ms
14:	learn: 40.4909798	total: 24ms	remaining: 456ms
15:	learn: 40.2717763	total: 25.5ms	remaining: 453ms
16:	learn: 40.0681771	total: 27.1ms	remaining: 451ms
17:	learn: 39.8218856	total: 28.6ms	remaining: 448ms
18:	learn: 39.5961267	total: 30.1ms	remaining: 446ms
19:	learn: 39.4405798	total: 31.6ms	remaining: 443ms
20:	learn: 39.2108144	total: 33.2ms	remaining: 441ms
21:	learn: 39.0432609	total: 34.9ms	remaining: 442ms
22:	learn: 38.8259483	total: 36.6ms	remaining: 441ms
23:	learn: 38.6184822	total: 38.3ms	remaining: 440ms
24:	learn: 38.4437978	total: 40ms	remaining: 440ms
25:	learn: 38.2222225	total: 41.7ms	remaining: 440ms
26:	learn: 38.0324524	total: 43.4ms	remaining: 439ms
27:	learn: 37.8494951	total: 45.1ms	remaining: 438ms
28:	learn: 37.6335152	total: 46.7ms	remaining: 437ms
29:	learn: 37.4744192	total: 48.4ms	remaining: 435ms
30:	learn: 37.3123037	total: 50ms	remaining: 434ms
31:	learn: 37.1243402	total: 51.8ms	remaining: 433ms
32:	learn: 36.9331259	total: 53.6ms	remaining: 434ms
33:	learn: 36.7495416	total: 55.3ms	remaining: 433ms
34:	learn: 36.5847482	total: 57ms	remaining: 432ms
35:	learn: 36.4041560	total: 58.7ms	remaining: 430ms
36:	learn: 36.2310112	total: 60.3ms	remaining: 429ms
37:	learn: 36.0300071	total: 62.5ms	remaining: 431ms
38:	learn: 35.8413053	total: 65.6ms	remaining: 439ms
39:	learn: 35.6391333	total: 68.4ms	remaining: 445ms
40:	learn: 35.4435169	total: 71.1ms	remaining: 449ms
41:	learn: 35.2592944	total: 74.7ms	remaining: 459ms
42:	learn: 35.1234175	total: 79.3ms	remaining: 474ms
43:	learn: 34.9513713	total: 83.5ms	remaining: 486ms
44:	learn: 34.7636330	total: 86ms	remaining: 487ms
45:	learn: 34.5945270	total: 88ms	remaining: 486ms
46:	learn: 34.4412215	total: 91.5ms	remaining: 493ms
47:	learn: 34.3171904	total: 93.8ms	remaining: 492ms
48:	learn: 34.1518441	total: 95.9ms	remaining: 491ms
49:	learn: 33.9708309	total: 98.3ms	remaining: 492ms
50:	learn: 33.7897519	total: 100ms	remaining: 490ms
51:	learn: 33.6365072	total: 102ms	remaining: 489ms
52:	learn: 33.5038050	total: 104ms	remaining: 487ms
53:	learn: 33.3569700	total: 106ms	remaining: 484ms
54:	learn: 33.1935439	total: 108ms	remaining: 483ms
55:	learn: 33.0209407	total: 111ms	remaining: 482ms
56:	learn: 32.8888015	total: 113ms	remaining: 481ms
57:	learn: 32.7360633	total: 115ms	remaining: 479ms
58:	learn: 32.6310895	total: 117ms	remaining: 476ms
59:	learn: 32.4938025	total: 119ms	remaining: 474ms
60:	learn: 32.3409081	total: 121ms	remaining: 472ms
61:	learn: 32.1877026	total: 122ms	remaining: 470ms
62:	learn: 32.0522661	total: 124ms	remaining: 467ms
63:	learn: 31.9444498	total: 126ms	remaining: 466ms
64:	learn: 31.8223753	total: 128ms	remaining: 464ms
65:	learn: 31.6707888	total: 130ms	remaining: 462ms
66:	learn: 31.5118036	total: 132ms	remaining: 460ms
67:	learn: 31.3748394	total: 134ms	remaining: 457ms
68:	learn: 31.2329558	total: 136ms	remaining: 454ms
69:	learn: 31.0844603	total: 138ms	remaining: 452ms
70:	learn: 30.9446631	total: 140ms	remaining: 451ms
71:	learn: 30.8205769	total: 142ms	remaining: 450ms
72:	learn: 30.6929272	total: 144ms	remaining: 448ms
73:	learn: 30.5585591	total: 146ms	remaining: 447ms
74:	learn: 30.4131773	total: 148ms	remaining: 444ms
75:	learn: 30.2863697	total: 149ms	remaining: 441ms
76:	learn: 30.1542367	total: 151ms	remaining: 437ms
77:	learn: 30.0311754	total: 153ms	remaining: 434ms
78:	learn: 29.9144725	total: 154ms	remaining: 431ms
79:	learn: 29.7747798	total: 156ms	remaining: 428ms
80:	learn: 29.6218481	total: 157ms	remaining: 425ms
81:	learn: 29.4878825	total: 159ms	remaining: 422ms
82:	learn: 29.4045741	total: 160ms	remaining: 419ms
83:	learn: 29.2774952	total: 162ms	remaining: 416ms
84:	learn: 29.1445027	total: 163ms	remaining: 413ms
85:	learn: 29.0090642	total: 165ms	remaining: 410ms
86:	learn: 28.8797334	total: 166ms	remaining: 407ms
87:	learn: 28.7621584	total: 168ms	remaining: 404ms
88:	learn: 28.6313080	total: 170ms	remaining: 402ms
89:	learn: 28.5488221	total: 171ms	remaining: 400ms
90:	learn: 28.4536887	total: 173ms	remaining: 397ms
91:	learn: 28.3346535	total: 174ms	remaining: 394ms
92:	learn: 28.2299679	total: 176ms	remaining: 392ms
93:	learn: 28.1258951	total: 178ms	remaining: 389ms
94:	learn: 27.9985547	total: 179ms	remaining: 387ms
95:	learn: 27.8778043	total: 181ms	remaining: 385ms
96:	learn: 27.7773420	total: 183ms	remaining: 383ms
97:	learn: 27.6669866	total: 185ms	remaining: 381ms
98:	learn: 27.6067904	total: 187ms	remaining: 379ms
99:	learn: 27.5114044	total: 188ms	remaining: 376ms
100:	learn: 27.4108899	total: 190ms	remaining: 374ms
101:	learn: 27.2922494	total: 191ms	remaining: 372ms
102:	learn: 27.1942093	total: 193ms	remaining: 369ms
103:	learn: 27.1204512	total: 195ms	remaining: 367ms
104:	learn: 27.0254994	total: 196ms	remaining: 364ms
105:	learn: 26.9312912	total: 198ms	remaining: 362ms
106:	learn: 26.8222333	total: 200ms	remaining: 360ms
107:	learn: 26.7452875	total: 201ms	remaining: 358ms
108:	learn: 26.6545963	total: 203ms	remaining: 356ms
109:	learn: 26.5528420	total: 205ms	remaining: 354ms
110:	learn: 26.4400669	total: 206ms	remaining: 351ms
111:	learn: 26.3445406	total: 208ms	remaining: 349ms
112:	learn: 26.2402538	total: 210ms	remaining: 347ms
113:	learn: 26.1562088	total: 211ms	remaining: 345ms
114:	learn: 26.0559300	total: 213ms	remaining: 342ms
115:	learn: 25.9988131	total: 214ms	remaining: 339ms
116:	learn: 25.9198095	total: 216ms	remaining: 338ms
117:	learn: 25.8402295	total: 218ms	remaining: 336ms
118:	learn: 25.7541945	total: 219ms	remaining: 333ms
119:	learn: 25.6880488	total: 221ms	remaining: 332ms
120:	learn: 25.5888396	total: 223ms	remaining: 329ms
121:	learn: 25.4907804	total: 224ms	remaining: 327ms
122:	learn: 25.3941866	total: 226ms	remaining: 325ms
123:	learn: 25.3050193	total: 228ms	remaining: 323ms
124:	learn: 25.2533585	total: 229ms	remaining: 321ms
125:	learn: 25.1691166	total: 231ms	remaining: 319ms
126:	learn: 25.0893061	total: 233ms	remaining: 317ms
127:	learn: 25.0392400	total: 235ms	remaining: 315ms
128:	learn: 24.9648706	total: 236ms	remaining: 313ms
129:	learn: 24.8933551	total: 238ms	remaining: 312ms
130:	learn: 24.8281291	total: 240ms	remaining: 310ms
131:	learn: 24.7591234	total: 242ms	remaining: 308ms
132:	learn: 24.7059820	total: 244ms	remaining: 306ms
133:	learn: 24.6287026	total: 246ms	remaining: 304ms
134:	learn: 24.5530180	total: 247ms	remaining: 302ms
135:	learn: 24.4808279	total: 249ms	remaining: 300ms
136:	learn: 24.3907753	total: 251ms	remaining: 298ms
137:	learn: 24.3042328	total: 253ms	remaining: 297ms
138:	learn: 24.2197937	total: 257ms	remaining: 298ms
139:	learn: 24.1519694	total: 260ms	remaining: 297ms
140:	learn: 24.0921077	total: 263ms	remaining: 296ms
141:	learn: 24.0240646	total: 265ms	remaining: 295ms
142:	learn: 23.9532949	total: 268ms	remaining: 294ms
143:	learn: 23.9018152	total: 270ms	remaining: 293ms
144:	learn: 23.8660710	total: 273ms	remaining: 292ms
145:	learn: 23.7925441	total: 275ms	remaining: 290ms
146:	learn: 23.7201628	total: 277ms	remaining: 288ms
147:	learn: 23.6498034	total: 279ms	remaining: 287ms
148:	learn: 23.5752576	total: 281ms	remaining: 285ms
149:	learn: 23.4961769	total: 283ms	remaining: 283ms
150:	learn: 23.4254916	total: 285ms	remaining: 281ms
151:	learn: 23.3421278	total: 287ms	remaining: 279ms
152:	learn: 23.2722557	total: 289ms	remaining: 277ms
153:	learn: 23.2151798	total: 290ms	remaining: 275ms
154:	learn: 23.1714870	total: 292ms	remaining: 273ms
155:	learn: 23.1214083	total: 294ms	remaining: 271ms
156:	learn: 23.0729212	total: 295ms	remaining: 269ms
157:	learn: 23.0123129	total: 297ms	remaining: 267ms
158:	learn: 22.9532171	total: 298ms	remaining: 264ms
159:	learn: 22.8825295	total: 300ms	remaining: 262ms
160:	learn: 22.8320734	total: 301ms	remaining: 260ms
161:	learn: 22.7913462	total: 303ms	remaining: 258ms
162:	learn: 22.7252448	total: 305ms	remaining: 256ms
163:	learn: 22.6844215	total: 306ms	remaining: 254ms
164:	learn: 22.6455454	total: 308ms	remaining: 252ms
165:	learn: 22.5916948	total: 310ms	remaining: 250ms
166:	learn: 22.5386003	total: 311ms	remaining: 248ms
167:	learn: 22.4848811	total: 313ms	remaining: 246ms
168:	learn: 22.4336631	total: 314ms	remaining: 244ms
169:	learn: 22.3832871	total: 316ms	remaining: 242ms
170:	learn: 22.3285168	total: 318ms	remaining: 240ms
171:	learn: 22.2619878	total: 319ms	remaining: 238ms
172:	learn: 22.2082223	total: 321ms	remaining: 236ms
173:	learn: 22.1552707	total: 323ms	remaining: 234ms
174:	learn: 22.1112768	total: 324ms	remaining: 232ms
175:	learn: 22.0647648	total: 326ms	remaining: 230ms
176:	learn: 22.0153413	total: 328ms	remaining: 228ms
177:	learn: 21.9667837	total: 329ms	remaining: 226ms
178:	learn: 21.9063505	total: 331ms	remaining: 223ms
179:	learn: 21.8592803	total: 332ms	remaining: 221ms
180:	learn: 21.8252736	total: 334ms	remaining: 220ms
181:	learn: 21.7640793	total: 336ms	remaining: 218ms
182:	learn: 21.7284811	total: 337ms	remaining: 216ms
183:	learn: 21.6819901	total: 340ms	remaining: 214ms
184:	learn: 21.6372017	total: 341ms	remaining: 212ms
185:	learn: 21.6002825	total: 343ms	remaining: 210ms
186:	learn: 21.5437225	total: 345ms	remaining: 208ms
187:	learn: 21.4877736	total: 347ms	remaining: 207ms
188:	learn: 21.4273863	total: 349ms	remaining: 205ms
189:	learn: 21.3919836	total: 350ms	remaining: 203ms
190:	learn: 21.3369122	total: 352ms	remaining: 201ms
191:	learn: 21.2933419	total: 354ms	remaining: 199ms
192:	learn: 21.2758663	total: 356ms	remaining: 197ms
193:	learn: 21.2239492	total: 357ms	remaining: 195ms
194:	learn: 21.1856650	total: 359ms	remaining: 193ms
195:	learn: 21.1425543	total: 361ms	remaining: 192ms
196:	learn: 21.1029181	total: 363ms	remaining: 190ms
197:	learn: 21.0557650	total: 364ms	remaining: 188ms
198:	learn: 21.0207413	total: 366ms	remaining: 186ms
199:	learn: 20.9819234	total: 368ms	remaining: 184ms
200:	learn: 20.9321090	total: 370ms	remaining: 182ms
201:	learn: 20.8783205	total: 372ms	remaining: 180ms
202:	learn: 20.8353798	total: 373ms	remaining: 178ms
203:	learn: 20.8105715	total: 375ms	remaining: 177ms
204:	learn: 20.7825826	total: 377ms	remaining: 175ms
205:	learn: 20.7392383	total: 379ms	remaining: 173ms
206:	learn: 20.7020084	total: 381ms	remaining: 171ms
207:	learn: 20.6693098	total: 382ms	remaining: 169ms
208:	learn: 20.6302116	total: 384ms	remaining: 167ms
209:	learn: 20.5975717	total: 386ms	remaining: 165ms
210:	learn: 20.5608536	total: 388ms	remaining: 163ms
211:	learn: 20.5239564	total: 389ms	remaining: 162ms
212:	learn: 20.4729645	total: 391ms	remaining: 160ms
213:	learn: 20.4555771	total: 393ms	remaining: 158ms
214:	learn: 20.4205704	total: 394ms	remaining: 156ms
215:	learn: 20.3768331	total: 396ms	remaining: 154ms
216:	learn: 20.3185859	total: 397ms	remaining: 152ms
217:	learn: 20.2688499	total: 399ms	remaining: 150ms
218:	learn: 20.2193380	total: 401ms	remaining: 148ms
219:	learn: 20.1868123	total: 402ms	remaining: 146ms
220:	learn: 20.1422068	total: 404ms	remaining: 144ms
221:	learn: 20.1142691	total: 405ms	remaining: 142ms
222:	learn: 20.0725492	total: 407ms	remaining: 141ms
223:	learn: 20.0385687	total: 409ms	remaining: 139ms
224:	learn: 20.0134530	total: 411ms	remaining: 137ms
225:	learn: 19.9733773	total: 412ms	remaining: 135ms
226:	learn: 19.9433878	total: 414ms	remaining: 133ms
227:	learn: 19.9151264	total: 415ms	remaining: 131ms
228:	learn: 19.8930103	total: 417ms	remaining: 129ms
229:	learn: 19.8591579	total: 418ms	remaining: 127ms
230:	learn: 19.8373025	total: 420ms	remaining: 125ms
231:	learn: 19.7965152	total: 422ms	remaining: 124ms
232:	learn: 19.7639351	total: 423ms	remaining: 122ms
233:	learn: 19.7292445	total: 425ms	remaining: 120ms
234:	learn: 19.7036541	total: 427ms	remaining: 118ms
235:	learn: 19.6607731	total: 428ms	remaining: 116ms
236:	learn: 19.6218908	total: 430ms	remaining: 114ms
237:	learn: 19.5834620	total: 432ms	remaining: 112ms
238:	learn: 19.5498690	total: 433ms	remaining: 111ms
239:	learn: 19.5150060	total: 435ms	remaining: 109ms
240:	learn: 19.4841916	total: 437ms	remaining: 107ms
241:	learn: 19.4610332	total: 439ms	remaining: 105ms
242:	learn: 19.4116425	total: 440ms	remaining: 103ms
243:	learn: 19.3759093	total: 442ms	remaining: 101ms
244:	learn: 19.3588853	total: 444ms	remaining: 99.6ms
245:	learn: 19.3309451	total: 445ms	remaining: 97.8ms
246:	learn: 19.2969038	total: 448ms	remaining: 96ms
247:	learn: 19.2739852	total: 451ms	remaining: 94.7ms
248:	learn: 19.2448974	total: 454ms	remaining: 93ms
249:	learn: 19.2175631	total: 457ms	remaining: 91.4ms
250:	learn: 19.1837895	total: 461ms	remaining: 89.9ms
251:	learn: 19.1620377	total: 464ms	remaining: 88.3ms
252:	learn: 19.1290965	total: 467ms	remaining: 86.8ms
253:	learn: 19.0964982	total: 470ms	remaining: 85ms
254:	learn: 19.0765372	total: 472ms	remaining: 83.2ms
255:	learn: 19.0559508	total: 474ms	remaining: 81.5ms
256:	learn: 19.0292859	total: 477ms	remaining: 79.8ms
257:	learn: 19.0024690	total: 479ms	remaining: 78ms
258:	learn: 18.9748922	total: 481ms	remaining: 76.2ms
259:	learn: 18.9544535	total: 483ms	remaining: 74.3ms
260:	learn: 18.9390257	total: 485ms	remaining: 72.5ms
261:	learn: 18.9062451	total: 487ms	remaining: 70.6ms
262:	learn: 18.8733505	total: 489ms	remaining: 68.8ms
263:	learn: 18.8449637	total: 491ms	remaining: 66.9ms
264:	learn: 18.8327466	total: 493ms	remaining: 65.1ms
265:	learn: 18.7933752	total: 495ms	remaining: 63.3ms
266:	learn: 18.7585534	total: 497ms	remaining: 61.5ms
267:	learn: 18.7309076	total: 499ms	remaining: 59.6ms
268:	learn: 18.7189917	total: 501ms	remaining: 57.8ms
269:	learn: 18.6929104	total: 503ms	remaining: 55.9ms
270:	learn: 18.6859968	total: 505ms	remaining: 54ms
271:	learn: 18.6542820	total: 507ms	remaining: 52.2ms
272:	learn: 18.6354256	total: 509ms	remaining: 50.3ms
273:	learn: 18.6011119	total: 511ms	remaining: 48.5ms
274:	learn: 18.5858433	total: 513ms	remaining: 46.6ms
275:	learn: 18.5621150	total: 515ms	remaining: 44.8ms
276:	learn: 18.5366382	total: 517ms	remaining: 42.9ms
277:	learn: 18.5001168	total: 518ms	remaining: 41ms
278:	learn: 18.4648031	total: 520ms	remaining: 39.1ms
279:	learn: 18.4462882	total: 522ms	remaining: 37.3ms
280:	learn: 18.4169799	total: 524ms	remaining: 35.4ms
281:	learn: 18.3862530	total: 526ms	remaining: 33.6ms
282:	learn: 18.3603644	total: 528ms	remaining: 31.7ms
283:	learn: 18.3343403	total: 530ms	remaining: 29.9ms
284:	learn: 18.3079526	total: 532ms	remaining: 28ms
285:	learn: 18.2914542	total: 533ms	remaining: 26.1ms
286:	learn: 18.2760216	total: 535ms	remaining: 24.2ms
287:	learn: 18.2569461	total: 536ms	remaining: 22.3ms
288:	learn: 18.2469361	total: 538ms	remaining: 20.5ms
289:	learn: 18.2253889	total: 540ms	remaining: 18.6ms
290:	learn: 18.1988356	total: 541ms	remaining: 16.7ms
291:	learn: 18.1819113	total: 543ms	remaining: 14.9ms
292:	learn: 18.1753537	total: 545ms	remaining: 13ms
293:	learn: 18.1576302	total: 546ms	remaining: 11.1ms
294:	learn: 18.1353124	total: 548ms	remaining: 9.28ms
295:	learn: 18.1254767	total: 549ms	remaining: 7.42ms
296:	learn: 18.1075581	total: 551ms	remaining: 5.56ms
297:	learn: 18.0923426	total: 552ms	remaining: 3.71ms
298:	learn: 18.0731509	total: 554ms	remaining: 1.85ms
299:	learn: 18.0532499	total: 556ms	remaining: 0us
0:	learn: 47.2420321	total: 1.81ms	remaining: 542ms
1:	learn: 47.0075933	total: 3.38ms	remaining: 503ms
2:	learn: 46.7507100	total: 4.89ms	remaining: 485ms
3:	learn: 46.5792546	total: 6.41ms	remaining: 474ms
4:	learn: 46.4168335	total: 8.35ms	remaining: 492ms
5:	learn: 46.2079107	total: 10.3ms	remaining: 506ms
6:	learn: 46.0246860	total: 12.3ms	remaining: 515ms
7:	learn: 45.7976604	total: 14.1ms	remaining: 515ms
8:	learn: 45.5818450	total: 15.7ms	remaining: 509ms
9:	learn: 45.3651717	total: 17.2ms	remaining: 500ms
10:	learn: 45.1816207	total: 18.7ms	remaining: 492ms
11:	learn: 44.9806458	total: 20.3ms	remaining: 488ms
12:	learn: 44.7658788	total: 21.9ms	remaining: 483ms
13:	learn: 44.6014304	total: 23.4ms	remaining: 479ms
14:	learn: 44.4557345	total: 25.2ms	remaining: 479ms
15:	learn: 44.2250496	total: 26.7ms	remaining: 473ms
16:	learn: 44.0474464	total: 28.4ms	remaining: 473ms
17:	learn: 43.8602658	total: 30.1ms	remaining: 472ms
18:	learn: 43.6697756	total: 32ms	remaining: 473ms
19:	learn: 43.5096131	total: 33.8ms	remaining: 474ms
20:	learn: 43.3764119	total: 35.6ms	remaining: 473ms
21:	learn: 43.2491411	total: 37.5ms	remaining: 474ms
22:	learn: 43.1208490	total: 39.4ms	remaining: 474ms
23:	learn: 42.9794830	total: 41.1ms	remaining: 473ms
24:	learn: 42.7739578	total: 43.1ms	remaining: 474ms
25:	learn: 42.5993624	total: 45ms	remaining: 474ms
26:	learn: 42.4140067	total: 46.8ms	remaining: 473ms
27:	learn: 42.1803930	total: 48.5ms	remaining: 471ms
28:	learn: 41.9876735	total: 50.2ms	remaining: 469ms
29:	learn: 41.8285093	total: 52.4ms	remaining: 472ms
30:	learn: 41.6630492	total: 54.6ms	remaining: 474ms
31:	learn: 41.5334890	total: 57.6ms	remaining: 482ms
32:	learn: 41.3248200	total: 60.7ms	remaining: 491ms
33:	learn: 41.1752844	total: 63.4ms	remaining: 496ms
34:	learn: 41.0548900	total: 65.8ms	remaining: 498ms
35:	learn: 40.9231532	total: 68.5ms	remaining: 502ms
36:	learn: 40.7408834	total: 70.8ms	remaining: 503ms
37:	learn: 40.5685807	total: 72.9ms	remaining: 503ms
38:	learn: 40.4675016	total: 74.8ms	remaining: 500ms
39:	learn: 40.3298096	total: 76.7ms	remaining: 498ms
40:	learn: 40.2050519	total: 78.6ms	remaining: 497ms
41:	learn: 40.0402111	total: 80.9ms	remaining: 497ms
42:	learn: 39.8860665	total: 82.7ms	remaining: 494ms
43:	learn: 39.7145635	total: 84.3ms	remaining: 491ms
44:	learn: 39.5616859	total: 85.9ms	remaining: 487ms
45:	learn: 39.3759273	total: 87.4ms	remaining: 483ms
46:	learn: 39.2716287	total: 89ms	remaining: 479ms
47:	learn: 39.1073020	total: 90.4ms	remaining: 475ms
48:	learn: 38.9728491	total: 91.9ms	remaining: 471ms
49:	learn: 38.8504734	total: 93.6ms	remaining: 468ms
50:	learn: 38.7051501	total: 95.3ms	remaining: 465ms
51:	learn: 38.5847277	total: 96.8ms	remaining: 462ms
52:	learn: 38.4171686	total: 98.3ms	remaining: 458ms
53:	learn: 38.2639958	total: 99.9ms	remaining: 455ms
54:	learn: 38.1089453	total: 101ms	remaining: 451ms
55:	learn: 37.9926928	total: 103ms	remaining: 449ms
56:	learn: 37.8694595	total: 105ms	remaining: 446ms
57:	learn: 37.7283140	total: 106ms	remaining: 443ms
58:	learn: 37.6173344	total: 108ms	remaining: 440ms
59:	learn: 37.4703167	total: 109ms	remaining: 438ms
60:	learn: 37.3361972	total: 111ms	remaining: 435ms
61:	learn: 37.2055730	total: 113ms	remaining: 433ms
62:	learn: 37.0713496	total: 114ms	remaining: 430ms
63:	learn: 36.9800638	total: 116ms	remaining: 428ms
64:	learn: 36.8591047	total: 118ms	remaining: 425ms
65:	learn: 36.6866788	total: 119ms	remaining: 422ms
66:	learn: 36.6042228	total: 121ms	remaining: 420ms
67:	learn: 36.5165516	total: 122ms	remaining: 417ms
68:	learn: 36.3980848	total: 124ms	remaining: 414ms
69:	learn: 36.2665583	total: 125ms	remaining: 412ms
70:	learn: 36.1338194	total: 127ms	remaining: 410ms
71:	learn: 36.0049945	total: 129ms	remaining: 407ms
72:	learn: 35.8363683	total: 130ms	remaining: 405ms
73:	learn: 35.7342377	total: 132ms	remaining: 404ms
74:	learn: 35.6415000	total: 134ms	remaining: 402ms
75:	learn: 35.5244470	total: 136ms	remaining: 401ms
76:	learn: 35.4345693	total: 138ms	remaining: 399ms
77:	learn: 35.3443274	total: 140ms	remaining: 397ms
78:	learn: 35.2505511	total: 141ms	remaining: 395ms
79:	learn: 35.1651168	total: 143ms	remaining: 392ms
80:	learn: 35.0516577	total: 144ms	remaining: 390ms
81:	learn: 34.9220162	total: 146ms	remaining: 388ms
82:	learn: 34.8321471	total: 147ms	remaining: 385ms
83:	learn: 34.7198979	total: 149ms	remaining: 383ms
84:	learn: 34.6008300	total: 150ms	remaining: 381ms
85:	learn: 34.4634015	total: 152ms	remaining: 378ms
86:	learn: 34.2832716	total: 154ms	remaining: 376ms
87:	learn: 34.1664311	total: 155ms	remaining: 374ms
88:	learn: 34.0594841	total: 157ms	remaining: 372ms
89:	learn: 33.9941748	total: 158ms	remaining: 369ms
90:	learn: 33.8801431	total: 160ms	remaining: 368ms
91:	learn: 33.7786185	total: 162ms	remaining: 366ms
92:	learn: 33.6596690	total: 163ms	remaining: 364ms
93:	learn: 33.5456009	total: 165ms	remaining: 361ms
94:	learn: 33.4573049	total: 166ms	remaining: 359ms
95:	learn: 33.3382314	total: 168ms	remaining: 357ms
96:	learn: 33.2376233	total: 170ms	remaining: 355ms
97:	learn: 33.1653718	total: 171ms	remaining: 353ms
98:	learn: 33.0455978	total: 173ms	remaining: 351ms
99:	learn: 32.9195646	total: 174ms	remaining: 349ms
100:	learn: 32.8503171	total: 176ms	remaining: 347ms
101:	learn: 32.7585069	total: 178ms	remaining: 345ms
102:	learn: 32.6348058	total: 179ms	remaining: 343ms
103:	learn: 32.5810868	total: 181ms	remaining: 341ms
104:	learn: 32.4441615	total: 182ms	remaining: 338ms
105:	learn: 32.3268329	total: 184ms	remaining: 336ms
106:	learn: 32.2230319	total: 185ms	remaining: 334ms
107:	learn: 32.1484401	total: 187ms	remaining: 332ms
108:	learn: 32.0604459	total: 188ms	remaining: 330ms
109:	learn: 31.9510121	total: 190ms	remaining: 328ms
110:	learn: 31.8281442	total: 191ms	remaining: 326ms
111:	learn: 31.7231519	total: 193ms	remaining: 324ms
112:	learn: 31.6247967	total: 194ms	remaining: 322ms
113:	learn: 31.5594988	total: 196ms	remaining: 320ms
114:	learn: 31.4833814	total: 198ms	remaining: 318ms
115:	learn: 31.3930062	total: 199ms	remaining: 316ms
116:	learn: 31.3485038	total: 201ms	remaining: 314ms
117:	learn: 31.2390105	total: 202ms	remaining: 312ms
118:	learn: 31.1473468	total: 204ms	remaining: 310ms
119:	learn: 31.0722151	total: 205ms	remaining: 308ms
120:	learn: 31.0202304	total: 207ms	remaining: 306ms
121:	learn: 30.9074121	total: 209ms	remaining: 305ms
122:	learn: 30.8563892	total: 211ms	remaining: 303ms
123:	learn: 30.7567620	total: 212ms	remaining: 301ms
124:	learn: 30.6950547	total: 214ms	remaining: 300ms
125:	learn: 30.5947973	total: 216ms	remaining: 298ms
126:	learn: 30.4944626	total: 217ms	remaining: 296ms
127:	learn: 30.3967239	total: 219ms	remaining: 295ms
128:	learn: 30.3030941	total: 221ms	remaining: 293ms
129:	learn: 30.2269285	total: 222ms	remaining: 291ms
130:	learn: 30.1295528	total: 224ms	remaining: 289ms
131:	learn: 30.0699291	total: 226ms	remaining: 287ms
132:	learn: 29.9983586	total: 228ms	remaining: 286ms
133:	learn: 29.9476041	total: 229ms	remaining: 284ms
134:	learn: 29.8951888	total: 231ms	remaining: 283ms
135:	learn: 29.8038429	total: 233ms	remaining: 281ms
136:	learn: 29.7642786	total: 235ms	remaining: 279ms
137:	learn: 29.7185402	total: 236ms	remaining: 277ms
138:	learn: 29.6310525	total: 238ms	remaining: 276ms
139:	learn: 29.5402510	total: 240ms	remaining: 274ms
140:	learn: 29.4332394	total: 241ms	remaining: 272ms
141:	learn: 29.3449895	total: 243ms	remaining: 271ms
142:	learn: 29.2787236	total: 245ms	remaining: 269ms
143:	learn: 29.1912486	total: 247ms	remaining: 268ms
144:	learn: 29.1213985	total: 268ms	remaining: 286ms
145:	learn: 29.0659307	total: 270ms	remaining: 285ms
146:	learn: 29.0099718	total: 272ms	remaining: 284ms
147:	learn: 28.9311607	total: 276ms	remaining: 284ms
148:	learn: 28.8695217	total: 279ms	remaining: 283ms
149:	learn: 28.8141788	total: 281ms	remaining: 281ms
150:	learn: 28.7590151	total: 283ms	remaining: 279ms
151:	learn: 28.6477095	total: 285ms	remaining: 277ms
152:	learn: 28.5453775	total: 287ms	remaining: 276ms
153:	learn: 28.4899040	total: 289ms	remaining: 274ms
154:	learn: 28.4028840	total: 291ms	remaining: 272ms
155:	learn: 28.3337913	total: 294ms	remaining: 271ms
156:	learn: 28.2448347	total: 296ms	remaining: 269ms
157:	learn: 28.1501311	total: 298ms	remaining: 268ms
158:	learn: 28.0569782	total: 300ms	remaining: 266ms
159:	learn: 27.9814978	total: 303ms	remaining: 265ms
160:	learn: 27.8824744	total: 305ms	remaining: 263ms
161:	learn: 27.8089161	total: 307ms	remaining: 261ms
162:	learn: 27.7055854	total: 309ms	remaining: 260ms
163:	learn: 27.6769676	total: 311ms	remaining: 258ms
164:	learn: 27.5888570	total: 313ms	remaining: 256ms
165:	learn: 27.5413585	total: 316ms	remaining: 255ms
166:	learn: 27.5025708	total: 317ms	remaining: 253ms
167:	learn: 27.4227487	total: 319ms	remaining: 251ms
168:	learn: 27.3607312	total: 322ms	remaining: 250ms
169:	learn: 27.2785477	total: 325ms	remaining: 249ms
170:	learn: 27.2420480	total: 327ms	remaining: 247ms
171:	learn: 27.2198863	total: 330ms	remaining: 245ms
172:	learn: 27.1740063	total: 332ms	remaining: 244ms
173:	learn: 27.1354753	total: 334ms	remaining: 242ms
174:	learn: 27.0757650	total: 335ms	remaining: 240ms
175:	learn: 27.0413472	total: 337ms	remaining: 237ms
176:	learn: 26.9964627	total: 339ms	remaining: 235ms
177:	learn: 26.9673643	total: 340ms	remaining: 233ms
178:	learn: 26.9187431	total: 342ms	remaining: 231ms
179:	learn: 26.8423953	total: 344ms	remaining: 229ms
180:	learn: 26.8017685	total: 345ms	remaining: 227ms
181:	learn: 26.7299208	total: 347ms	remaining: 225ms
182:	learn: 26.6589519	total: 348ms	remaining: 223ms
183:	learn: 26.6205310	total: 350ms	remaining: 221ms
184:	learn: 26.5486009	total: 352ms	remaining: 219ms
185:	learn: 26.5207532	total: 354ms	remaining: 217ms
186:	learn: 26.4739185	total: 355ms	remaining: 215ms
187:	learn: 26.3960054	total: 357ms	remaining: 213ms
188:	learn: 26.3382485	total: 358ms	remaining: 211ms
189:	learn: 26.3073259	total: 360ms	remaining: 208ms
190:	learn: 26.2619871	total: 362ms	remaining: 206ms
191:	learn: 26.2154677	total: 363ms	remaining: 204ms
192:	learn: 26.1419014	total: 365ms	remaining: 202ms
193:	learn: 26.0943937	total: 366ms	remaining: 200ms
194:	learn: 26.0363173	total: 368ms	remaining: 198ms
195:	learn: 26.0069678	total: 370ms	remaining: 196ms
196:	learn: 25.9766108	total: 371ms	remaining: 194ms
197:	learn: 25.9334016	total: 373ms	remaining: 192ms
198:	learn: 25.8933333	total: 375ms	remaining: 190ms
199:	learn: 25.8354840	total: 376ms	remaining: 188ms
200:	learn: 25.7706835	total: 378ms	remaining: 186ms
201:	learn: 25.7128993	total: 379ms	remaining: 184ms
202:	learn: 25.6889810	total: 381ms	remaining: 182ms
203:	learn: 25.6341759	total: 383ms	remaining: 180ms
204:	learn: 25.5689871	total: 384ms	remaining: 178ms
205:	learn: 25.5143566	total: 386ms	remaining: 176ms
206:	learn: 25.4579909	total: 387ms	remaining: 174ms
207:	learn: 25.4328240	total: 389ms	remaining: 172ms
208:	learn: 25.3817695	total: 391ms	remaining: 170ms
209:	learn: 25.3396806	total: 392ms	remaining: 168ms
210:	learn: 25.2790923	total: 394ms	remaining: 166ms
211:	learn: 25.2139348	total: 395ms	remaining: 164ms
212:	learn: 25.1526440	total: 397ms	remaining: 162ms
213:	learn: 25.1166376	total: 398ms	remaining: 160ms
214:	learn: 25.0555716	total: 400ms	remaining: 158ms
215:	learn: 24.9843928	total: 402ms	remaining: 156ms
216:	learn: 24.9564270	total: 403ms	remaining: 154ms
217:	learn: 24.9163289	total: 405ms	remaining: 152ms
218:	learn: 24.8640012	total: 407ms	remaining: 150ms
219:	learn: 24.8271365	total: 408ms	remaining: 148ms
220:	learn: 24.7569960	total: 410ms	remaining: 147ms
221:	learn: 24.7241868	total: 412ms	remaining: 145ms
222:	learn: 24.6583262	total: 413ms	remaining: 143ms
223:	learn: 24.6081638	total: 415ms	remaining: 141ms
224:	learn: 24.5407954	total: 417ms	remaining: 139ms
225:	learn: 24.4798236	total: 418ms	remaining: 137ms
226:	learn: 24.4472011	total: 420ms	remaining: 135ms
227:	learn: 24.4095415	total: 423ms	remaining: 133ms
228:	learn: 24.3710798	total: 426ms	remaining: 132ms
229:	learn: 24.3541099	total: 428ms	remaining: 130ms
230:	learn: 24.3098980	total: 431ms	remaining: 129ms
231:	learn: 24.2532076	total: 433ms	remaining: 127ms
232:	learn: 24.2068810	total: 436ms	remaining: 125ms
233:	learn: 24.1854655	total: 438ms	remaining: 124ms
234:	learn: 24.1600724	total: 440ms	remaining: 122ms
235:	learn: 24.1356788	total: 442ms	remaining: 120ms
236:	learn: 24.0830920	total: 445ms	remaining: 118ms
237:	learn: 24.0367589	total: 448ms	remaining: 117ms
238:	learn: 23.9893813	total: 450ms	remaining: 115ms
239:	learn: 23.9401764	total: 453ms	remaining: 113ms
240:	learn: 23.9025635	total: 455ms	remaining: 111ms
241:	learn: 23.8439789	total: 457ms	remaining: 110ms
242:	learn: 23.8007963	total: 459ms	remaining: 108ms
243:	learn: 23.7690097	total: 461ms	remaining: 106ms
244:	learn: 23.7315202	total: 463ms	remaining: 104ms
245:	learn: 23.6942339	total: 464ms	remaining: 102ms
246:	learn: 23.6516053	total: 466ms	remaining: 100ms
247:	learn: 23.6317201	total: 468ms	remaining: 98.2ms
248:	learn: 23.5764398	total: 470ms	remaining: 96.3ms
249:	learn: 23.5603404	total: 472ms	remaining: 94.4ms
250:	learn: 23.5055893	total: 474ms	remaining: 92.5ms
251:	learn: 23.4547244	total: 475ms	remaining: 90.5ms
252:	learn: 23.4089600	total: 477ms	remaining: 88.6ms
253:	learn: 23.3948026	total: 479ms	remaining: 86.7ms
254:	learn: 23.3446548	total: 480ms	remaining: 84.7ms
255:	learn: 23.3075672	total: 482ms	remaining: 82.8ms
256:	learn: 23.2553567	total: 483ms	remaining: 80.9ms
257:	learn: 23.2290706	total: 485ms	remaining: 78.9ms
258:	learn: 23.1787472	total: 487ms	remaining: 77ms
259:	learn: 23.1362265	total: 488ms	remaining: 75.1ms
260:	learn: 23.1177175	total: 490ms	remaining: 73.2ms
261:	learn: 23.0768872	total: 492ms	remaining: 71.3ms
262:	learn: 23.0600939	total: 493ms	remaining: 69.4ms
263:	learn: 23.0150783	total: 495ms	remaining: 67.5ms
264:	learn: 22.9906812	total: 496ms	remaining: 65.6ms
265:	learn: 22.9739939	total: 498ms	remaining: 63.6ms
266:	learn: 22.9220463	total: 499ms	remaining: 61.7ms
267:	learn: 22.9003028	total: 501ms	remaining: 59.8ms
268:	learn: 22.8586620	total: 503ms	remaining: 57.9ms
269:	learn: 22.8262357	total: 504ms	remaining: 56ms
270:	learn: 22.7927410	total: 506ms	remaining: 54.2ms
271:	learn: 22.7352474	total: 508ms	remaining: 52.3ms
272:	learn: 22.7190324	total: 509ms	remaining: 50.4ms
273:	learn: 22.6586988	total: 511ms	remaining: 48.5ms
274:	learn: 22.6188406	total: 512ms	remaining: 46.6ms
275:	learn: 22.5895887	total: 514ms	remaining: 44.7ms
276:	learn: 22.5733752	total: 516ms	remaining: 42.8ms
277:	learn: 22.5411964	total: 517ms	remaining: 40.9ms
278:	learn: 22.5044372	total: 519ms	remaining: 39.1ms
279:	learn: 22.4849773	total: 521ms	remaining: 37.2ms
280:	learn: 22.4434597	total: 522ms	remaining: 35.3ms
281:	learn: 22.4241487	total: 524ms	remaining: 33.4ms
282:	learn: 22.3590126	total: 526ms	remaining: 31.6ms
283:	learn: 22.3133781	total: 527ms	remaining: 29.7ms
284:	learn: 22.2728561	total: 529ms	remaining: 27.8ms
285:	learn: 22.2246402	total: 531ms	remaining: 26ms
286:	learn: 22.1879337	total: 532ms	remaining: 24.1ms
287:	learn: 22.1654785	total: 534ms	remaining: 22.2ms
288:	learn: 22.1162785	total: 536ms	remaining: 20.4ms
289:	learn: 22.0891620	total: 537ms	remaining: 18.5ms
290:	learn: 22.0555770	total: 539ms	remaining: 16.7ms
291:	learn: 22.0155382	total: 541ms	remaining: 14.8ms
292:	learn: 21.9945326	total: 542ms	remaining: 13ms
293:	learn: 21.9565494	total: 544ms	remaining: 11.1ms
294:	learn: 21.9172015	total: 546ms	remaining: 9.25ms
295:	learn: 21.8749682	total: 547ms	remaining: 7.39ms
296:	learn: 21.8588591	total: 549ms	remaining: 5.54ms
297:	learn: 21.8143368	total: 550ms	remaining: 3.69ms
298:	learn: 21.7762250	total: 552ms	remaining: 1.85ms
299:	learn: 21.7533128	total: 554ms	remaining: 0us
0:	learn: 46.8069978	total: 2.03ms	remaining: 608ms
1:	learn: 46.6032721	total: 3.91ms	remaining: 583ms
2:	learn: 46.3744340	total: 5.64ms	remaining: 559ms
3:	learn: 46.1613073	total: 7.38ms	remaining: 547ms
4:	learn: 45.9767631	total: 9.05ms	remaining: 534ms
5:	learn: 45.8352163	total: 11.1ms	remaining: 544ms
6:	learn: 45.6282901	total: 12.7ms	remaining: 530ms
7:	learn: 45.4476238	total: 14.3ms	remaining: 523ms
8:	learn: 45.2295793	total: 16.2ms	remaining: 524ms
9:	learn: 45.0417061	total: 18.2ms	remaining: 529ms
10:	learn: 44.8858157	total: 20.1ms	remaining: 527ms
11:	learn: 44.6705546	total: 21.9ms	remaining: 525ms
12:	learn: 44.5529587	total: 23.8ms	remaining: 525ms
13:	learn: 44.3970028	total: 25.4ms	remaining: 519ms
14:	learn: 44.2774216	total: 27.2ms	remaining: 517ms
15:	learn: 44.1066136	total: 28.9ms	remaining: 513ms
16:	learn: 43.8998640	total: 30.6ms	remaining: 509ms
17:	learn: 43.6834273	total: 32.2ms	remaining: 504ms
18:	learn: 43.4807748	total: 33.9ms	remaining: 501ms
19:	learn: 43.3147258	total: 35.6ms	remaining: 498ms
20:	learn: 43.1006880	total: 37.3ms	remaining: 496ms
21:	learn: 42.8998319	total: 40.4ms	remaining: 510ms
22:	learn: 42.7761164	total: 43.3ms	remaining: 522ms
23:	learn: 42.6430333	total: 46.1ms	remaining: 530ms
24:	learn: 42.4023729	total: 49.3ms	remaining: 542ms
25:	learn: 42.2044799	total: 53.7ms	remaining: 566ms
26:	learn: 42.0355462	total: 57.4ms	remaining: 581ms
27:	learn: 41.8128650	total: 60.2ms	remaining: 585ms
28:	learn: 41.6708087	total: 62.2ms	remaining: 581ms
29:	learn: 41.5643126	total: 64.6ms	remaining: 581ms
30:	learn: 41.4309187	total: 67.2ms	remaining: 583ms
31:	learn: 41.2424589	total: 69.6ms	remaining: 583ms
32:	learn: 41.0487010	total: 71.6ms	remaining: 579ms
33:	learn: 40.8426318	total: 73.6ms	remaining: 576ms
34:	learn: 40.6876070	total: 75.4ms	remaining: 571ms
35:	learn: 40.5843009	total: 77.3ms	remaining: 567ms
36:	learn: 40.4906110	total: 79.2ms	remaining: 563ms
37:	learn: 40.3088362	total: 81.1ms	remaining: 559ms
38:	learn: 40.1975388	total: 83.2ms	remaining: 557ms
39:	learn: 40.1029269	total: 85.1ms	remaining: 553ms
40:	learn: 39.9805949	total: 87.2ms	remaining: 551ms
41:	learn: 39.8136403	total: 89ms	remaining: 547ms
42:	learn: 39.6759340	total: 90.9ms	remaining: 544ms
43:	learn: 39.5289519	total: 92.8ms	remaining: 540ms
44:	learn: 39.3438031	total: 94.9ms	remaining: 538ms
45:	learn: 39.2311733	total: 97ms	remaining: 536ms
46:	learn: 39.1320167	total: 99.2ms	remaining: 534ms
47:	learn: 39.0385994	total: 101ms	remaining: 531ms
48:	learn: 38.8921390	total: 103ms	remaining: 528ms
49:	learn: 38.7555721	total: 105ms	remaining: 525ms
50:	learn: 38.6255233	total: 107ms	remaining: 520ms
51:	learn: 38.5035133	total: 108ms	remaining: 517ms
52:	learn: 38.3321272	total: 110ms	remaining: 514ms
53:	learn: 38.1766234	total: 113ms	remaining: 513ms
54:	learn: 38.0534922	total: 115ms	remaining: 510ms
55:	learn: 37.9171854	total: 116ms	remaining: 508ms
56:	learn: 37.7828510	total: 119ms	remaining: 506ms
57:	learn: 37.6228943	total: 120ms	remaining: 502ms
58:	learn: 37.4869372	total: 122ms	remaining: 497ms
59:	learn: 37.3602841	total: 123ms	remaining: 493ms
60:	learn: 37.2593763	total: 125ms	remaining: 488ms
61:	learn: 37.1446155	total: 126ms	remaining: 484ms
62:	learn: 37.0387650	total: 128ms	remaining: 480ms
63:	learn: 36.8791175	total: 129ms	remaining: 477ms
64:	learn: 36.7006576	total: 131ms	remaining: 474ms
65:	learn: 36.5947427	total: 133ms	remaining: 470ms
66:	learn: 36.4723477	total: 134ms	remaining: 466ms
67:	learn: 36.3551247	total: 136ms	remaining: 463ms
68:	learn: 36.2233202	total: 137ms	remaining: 460ms
69:	learn: 36.1425926	total: 139ms	remaining: 456ms
70:	learn: 36.0225768	total: 140ms	remaining: 453ms
71:	learn: 35.9573580	total: 142ms	remaining: 451ms
72:	learn: 35.8342732	total: 144ms	remaining: 448ms
73:	learn: 35.7414820	total: 146ms	remaining: 446ms
74:	learn: 35.6524309	total: 148ms	remaining: 443ms
75:	learn: 35.5229379	total: 149ms	remaining: 440ms
76:	learn: 35.4248408	total: 151ms	remaining: 437ms
77:	learn: 35.3475666	total: 152ms	remaining: 434ms
78:	learn: 35.2560963	total: 154ms	remaining: 430ms
79:	learn: 35.1061729	total: 155ms	remaining: 427ms
80:	learn: 35.0184796	total: 157ms	remaining: 424ms
81:	learn: 34.8941352	total: 158ms	remaining: 421ms
82:	learn: 34.8069482	total: 160ms	remaining: 418ms
83:	learn: 34.7410857	total: 161ms	remaining: 415ms
84:	learn: 34.6260815	total: 163ms	remaining: 413ms
85:	learn: 34.5044302	total: 165ms	remaining: 410ms
86:	learn: 34.3303987	total: 166ms	remaining: 407ms
87:	learn: 34.2253345	total: 168ms	remaining: 404ms
88:	learn: 34.1232842	total: 169ms	remaining: 401ms
89:	learn: 34.0640673	total: 171ms	remaining: 398ms
90:	learn: 34.0122863	total: 172ms	remaining: 395ms
91:	learn: 33.9100965	total: 174ms	remaining: 393ms
92:	learn: 33.8200115	total: 175ms	remaining: 390ms
93:	learn: 33.7149257	total: 177ms	remaining: 388ms
94:	learn: 33.6092342	total: 178ms	remaining: 385ms
95:	learn: 33.5116656	total: 180ms	remaining: 383ms
96:	learn: 33.3877207	total: 182ms	remaining: 380ms
97:	learn: 33.2838212	total: 183ms	remaining: 378ms
98:	learn: 33.1754909	total: 185ms	remaining: 375ms
99:	learn: 33.1170180	total: 186ms	remaining: 373ms
100:	learn: 33.0000365	total: 188ms	remaining: 370ms
101:	learn: 32.9109137	total: 189ms	remaining: 368ms
102:	learn: 32.8390257	total: 191ms	remaining: 366ms
103:	learn: 32.7631422	total: 193ms	remaining: 363ms
104:	learn: 32.6889569	total: 194ms	remaining: 361ms
105:	learn: 32.5721315	total: 196ms	remaining: 358ms
106:	learn: 32.4571112	total: 197ms	remaining: 356ms
107:	learn: 32.3269402	total: 199ms	remaining: 353ms
108:	learn: 32.2288586	total: 200ms	remaining: 351ms
109:	learn: 32.1571508	total: 202ms	remaining: 349ms
110:	learn: 32.0766496	total: 203ms	remaining: 346ms
111:	learn: 31.9903935	total: 205ms	remaining: 344ms
112:	learn: 31.8753674	total: 207ms	remaining: 342ms
113:	learn: 31.8176490	total: 208ms	remaining: 340ms
114:	learn: 31.7767050	total: 210ms	remaining: 338ms
115:	learn: 31.7096490	total: 211ms	remaining: 335ms
116:	learn: 31.6663461	total: 213ms	remaining: 333ms
117:	learn: 31.5639770	total: 214ms	remaining: 331ms
118:	learn: 31.4767882	total: 216ms	remaining: 328ms
119:	learn: 31.3918674	total: 217ms	remaining: 326ms
120:	learn: 31.2954750	total: 219ms	remaining: 324ms
121:	learn: 31.1972758	total: 221ms	remaining: 322ms
122:	learn: 31.1360054	total: 222ms	remaining: 320ms
123:	learn: 31.0300335	total: 224ms	remaining: 318ms
124:	learn: 30.9371132	total: 226ms	remaining: 316ms
125:	learn: 30.8480290	total: 227ms	remaining: 314ms
126:	learn: 30.7508430	total: 229ms	remaining: 312ms
127:	learn: 30.6793448	total: 231ms	remaining: 310ms
128:	learn: 30.5833215	total: 233ms	remaining: 308ms
129:	learn: 30.5255399	total: 234ms	remaining: 307ms
130:	learn: 30.4856440	total: 236ms	remaining: 305ms
131:	learn: 30.3988276	total: 238ms	remaining: 303ms
132:	learn: 30.3294137	total: 240ms	remaining: 301ms
133:	learn: 30.2800707	total: 241ms	remaining: 299ms
134:	learn: 30.1892274	total: 244ms	remaining: 298ms
135:	learn: 30.1090992	total: 249ms	remaining: 300ms
136:	learn: 30.0509080	total: 252ms	remaining: 299ms
137:	learn: 29.9992386	total: 254ms	remaining: 298ms
138:	learn: 29.9180981	total: 256ms	remaining: 297ms
139:	learn: 29.8408530	total: 259ms	remaining: 296ms
140:	learn: 29.7326167	total: 261ms	remaining: 294ms
141:	learn: 29.6573760	total: 263ms	remaining: 293ms
142:	learn: 29.5769389	total: 265ms	remaining: 291ms
143:	learn: 29.4949512	total: 267ms	remaining: 289ms
144:	learn: 29.4248723	total: 269ms	remaining: 287ms
145:	learn: 29.3341891	total: 271ms	remaining: 286ms
146:	learn: 29.2871540	total: 273ms	remaining: 284ms
147:	learn: 29.2348806	total: 275ms	remaining: 282ms
148:	learn: 29.1509615	total: 276ms	remaining: 280ms
149:	learn: 29.0675930	total: 278ms	remaining: 278ms
150:	learn: 29.0164644	total: 279ms	remaining: 276ms
151:	learn: 28.9150243	total: 281ms	remaining: 274ms
152:	learn: 28.8672053	total: 283ms	remaining: 272ms
153:	learn: 28.8404951	total: 284ms	remaining: 270ms
154:	learn: 28.7752307	total: 286ms	remaining: 267ms
155:	learn: 28.7226319	total: 287ms	remaining: 265ms
156:	learn: 28.6517830	total: 289ms	remaining: 263ms
157:	learn: 28.5677591	total: 290ms	remaining: 261ms
158:	learn: 28.4932613	total: 292ms	remaining: 259ms
159:	learn: 28.4384719	total: 293ms	remaining: 257ms
160:	learn: 28.3480603	total: 295ms	remaining: 255ms
161:	learn: 28.3000850	total: 296ms	remaining: 253ms
162:	learn: 28.2345070	total: 298ms	remaining: 251ms
163:	learn: 28.1786898	total: 300ms	remaining: 249ms
164:	learn: 28.1088064	total: 302ms	remaining: 247ms
165:	learn: 28.0701051	total: 303ms	remaining: 245ms
166:	learn: 28.0307579	total: 305ms	remaining: 243ms
167:	learn: 27.9568140	total: 307ms	remaining: 241ms
168:	learn: 27.8972533	total: 309ms	remaining: 239ms
169:	learn: 27.8200944	total: 310ms	remaining: 237ms
170:	learn: 27.7746116	total: 312ms	remaining: 235ms
171:	learn: 27.7253273	total: 314ms	remaining: 233ms
172:	learn: 27.6652268	total: 316ms	remaining: 232ms
173:	learn: 27.6191244	total: 317ms	remaining: 230ms
174:	learn: 27.5491649	total: 319ms	remaining: 228ms
175:	learn: 27.4780653	total: 321ms	remaining: 226ms
176:	learn: 27.4129039	total: 322ms	remaining: 224ms
177:	learn: 27.3561383	total: 324ms	remaining: 222ms
178:	learn: 27.2907413	total: 326ms	remaining: 220ms
179:	learn: 27.2598005	total: 327ms	remaining: 218ms
180:	learn: 27.2235040	total: 329ms	remaining: 216ms
181:	learn: 27.1943272	total: 331ms	remaining: 214ms
182:	learn: 27.1504830	total: 332ms	remaining: 212ms
183:	learn: 27.0840381	total: 334ms	remaining: 211ms
184:	learn: 27.0371971	total: 336ms	remaining: 209ms
185:	learn: 27.0179799	total: 337ms	remaining: 207ms
186:	learn: 26.9599919	total: 339ms	remaining: 205ms
187:	learn: 26.8973471	total: 341ms	remaining: 203ms
188:	learn: 26.8449616	total: 343ms	remaining: 202ms
189:	learn: 26.7845071	total: 345ms	remaining: 200ms
190:	learn: 26.7203548	total: 347ms	remaining: 198ms
191:	learn: 26.6511027	total: 348ms	remaining: 196ms
192:	learn: 26.5949009	total: 350ms	remaining: 194ms
193:	learn: 26.5625717	total: 352ms	remaining: 192ms
194:	learn: 26.5067703	total: 353ms	remaining: 190ms
195:	learn: 26.4736197	total: 355ms	remaining: 188ms
196:	learn: 26.4534002	total: 357ms	remaining: 187ms
197:	learn: 26.4334079	total: 359ms	remaining: 185ms
198:	learn: 26.4084564	total: 360ms	remaining: 183ms
199:	learn: 26.3497040	total: 362ms	remaining: 181ms
200:	learn: 26.2996231	total: 364ms	remaining: 179ms
201:	learn: 26.2555122	total: 365ms	remaining: 177ms
202:	learn: 26.2397561	total: 367ms	remaining: 175ms
203:	learn: 26.1713716	total: 369ms	remaining: 174ms
204:	learn: 26.1429879	total: 370ms	remaining: 172ms
205:	learn: 26.0866840	total: 372ms	remaining: 170ms
206:	learn: 26.0208947	total: 374ms	remaining: 168ms
207:	learn: 25.9493634	total: 376ms	remaining: 166ms
208:	learn: 25.9045311	total: 378ms	remaining: 164ms
209:	learn: 25.8673891	total: 379ms	remaining: 163ms
210:	learn: 25.8311149	total: 381ms	remaining: 161ms
211:	learn: 25.7715341	total: 383ms	remaining: 159ms
212:	learn: 25.7102273	total: 385ms	remaining: 157ms
213:	learn: 25.6918717	total: 386ms	remaining: 155ms
214:	learn: 25.6813536	total: 388ms	remaining: 153ms
215:	learn: 25.6237177	total: 390ms	remaining: 152ms
216:	learn: 25.5854713	total: 391ms	remaining: 150ms
217:	learn: 25.5711646	total: 393ms	remaining: 148ms
218:	learn: 25.5166575	total: 395ms	remaining: 146ms
219:	learn: 25.4912020	total: 396ms	remaining: 144ms
220:	learn: 25.4256875	total: 398ms	remaining: 142ms
221:	learn: 25.3726607	total: 399ms	remaining: 140ms
222:	learn: 25.3409851	total: 401ms	remaining: 138ms
223:	learn: 25.3174326	total: 403ms	remaining: 137ms
224:	learn: 25.2617252	total: 404ms	remaining: 135ms
225:	learn: 25.2050958	total: 406ms	remaining: 133ms
226:	learn: 25.1591741	total: 408ms	remaining: 131ms
227:	learn: 25.1353113	total: 409ms	remaining: 129ms
228:	learn: 25.0935675	total: 411ms	remaining: 127ms
229:	learn: 25.0465126	total: 413ms	remaining: 126ms
230:	learn: 25.0303382	total: 414ms	remaining: 124ms
231:	learn: 24.9950003	total: 416ms	remaining: 122ms
232:	learn: 24.9496095	total: 418ms	remaining: 120ms
233:	learn: 24.9187586	total: 420ms	remaining: 118ms
234:	learn: 24.8901319	total: 422ms	remaining: 117ms
235:	learn: 24.8350164	total: 424ms	remaining: 115ms
236:	learn: 24.7820911	total: 426ms	remaining: 113ms
237:	learn: 24.7378296	total: 430ms	remaining: 112ms
238:	learn: 24.7138758	total: 433ms	remaining: 111ms
239:	learn: 24.6742585	total: 438ms	remaining: 110ms
240:	learn: 24.6375632	total: 446ms	remaining: 109ms
241:	learn: 24.6088841	total: 449ms	remaining: 108ms
242:	learn: 24.5714539	total: 452ms	remaining: 106ms
243:	learn: 24.5378431	total: 456ms	remaining: 105ms
244:	learn: 24.5033285	total: 458ms	remaining: 103ms
245:	learn: 24.4702532	total: 460ms	remaining: 101ms
246:	learn: 24.4509326	total: 462ms	remaining: 99.2ms
247:	learn: 24.4015937	total: 465ms	remaining: 97.4ms
248:	learn: 24.3595442	total: 467ms	remaining: 95.6ms
249:	learn: 24.3281774	total: 469ms	remaining: 93.7ms
250:	learn: 24.2858626	total: 470ms	remaining: 91.8ms
251:	learn: 24.2695332	total: 472ms	remaining: 90ms
252:	learn: 24.2401624	total: 474ms	remaining: 88.1ms
253:	learn: 24.2106176	total: 476ms	remaining: 86.3ms
254:	learn: 24.1662138	total: 478ms	remaining: 84.4ms
255:	learn: 24.1430783	total: 480ms	remaining: 82.5ms
256:	learn: 24.0953232	total: 482ms	remaining: 80.7ms
257:	learn: 24.0705680	total: 485ms	remaining: 78.9ms
258:	learn: 24.0434932	total: 487ms	remaining: 77ms
259:	learn: 24.0176433	total: 489ms	remaining: 75.2ms
260:	learn: 23.9759095	total: 491ms	remaining: 73.3ms
261:	learn: 23.9381799	total: 493ms	remaining: 71.5ms
262:	learn: 23.9235365	total: 495ms	remaining: 69.6ms
263:	learn: 23.8844621	total: 496ms	remaining: 67.7ms
264:	learn: 23.8603987	total: 498ms	remaining: 65.8ms
265:	learn: 23.8166097	total: 500ms	remaining: 63.9ms
266:	learn: 23.7770992	total: 502ms	remaining: 62ms
267:	learn: 23.7654011	total: 503ms	remaining: 60.1ms
268:	learn: 23.7333508	total: 505ms	remaining: 58.2ms
269:	learn: 23.7016358	total: 507ms	remaining: 56.4ms
270:	learn: 23.6837836	total: 509ms	remaining: 54.5ms
271:	learn: 23.6416624	total: 511ms	remaining: 52.6ms
272:	learn: 23.6316011	total: 513ms	remaining: 50.7ms
273:	learn: 23.5867365	total: 515ms	remaining: 48.9ms
274:	learn: 23.5453186	total: 517ms	remaining: 47ms
275:	learn: 23.5290432	total: 519ms	remaining: 45.2ms
276:	learn: 23.5158187	total: 521ms	remaining: 43.3ms
277:	learn: 23.5028991	total: 523ms	remaining: 41.4ms
278:	learn: 23.4768906	total: 525ms	remaining: 39.5ms
279:	learn: 23.4279327	total: 526ms	remaining: 37.6ms
280:	learn: 23.4100451	total: 528ms	remaining: 35.7ms
281:	learn: 23.3907012	total: 529ms	remaining: 33.8ms
282:	learn: 23.3721655	total: 531ms	remaining: 31.9ms
283:	learn: 23.3511459	total: 533ms	remaining: 30ms
284:	learn: 23.3064907	total: 534ms	remaining: 28.1ms
285:	learn: 23.2715905	total: 536ms	remaining: 26.2ms
286:	learn: 23.2437183	total: 537ms	remaining: 24.3ms
287:	learn: 23.1997142	total: 539ms	remaining: 22.4ms
288:	learn: 23.1664790	total: 540ms	remaining: 20.6ms
289:	learn: 23.1469596	total: 542ms	remaining: 18.7ms
290:	learn: 23.1291022	total: 543ms	remaining: 16.8ms
291:	learn: 23.0995427	total: 545ms	remaining: 14.9ms
292:	learn: 23.0888220	total: 547ms	remaining: 13.1ms
293:	learn: 23.0538282	total: 549ms	remaining: 11.2ms
294:	learn: 23.0196716	total: 550ms	remaining: 9.33ms
295:	learn: 23.0063685	total: 552ms	remaining: 7.46ms
296:	learn: 22.9803606	total: 554ms	remaining: 5.59ms
297:	learn: 22.9653025	total: 555ms	remaining: 3.73ms
298:	learn: 22.9232567	total: 557ms	remaining: 1.86ms
299:	learn: 22.9004962	total: 559ms	remaining: 0us
0:	learn: 47.4640855	total: 1.83ms	remaining: 548ms
1:	learn: 47.2372949	total: 3.8ms	remaining: 566ms
2:	learn: 47.0264843	total: 5.4ms	remaining: 535ms
3:	learn: 46.8135153	total: 7.16ms	remaining: 530ms
4:	learn: 46.6317820	total: 8.78ms	remaining: 518ms
5:	learn: 46.3572751	total: 10.4ms	remaining: 508ms
6:	learn: 46.1572824	total: 12ms	remaining: 504ms
7:	learn: 46.0120286	total: 13.7ms	remaining: 499ms
8:	learn: 45.8093270	total: 15.3ms	remaining: 496ms
9:	learn: 45.5960912	total: 17ms	remaining: 494ms
10:	learn: 45.4316293	total: 18.9ms	remaining: 496ms
11:	learn: 45.2183881	total: 20.9ms	remaining: 501ms
12:	learn: 45.0054884	total: 22.8ms	remaining: 503ms
13:	learn: 44.8595906	total: 24.6ms	remaining: 503ms
14:	learn: 44.7253841	total: 26.4ms	remaining: 502ms
15:	learn: 44.5587768	total: 28.3ms	remaining: 502ms
16:	learn: 44.3544794	total: 30.1ms	remaining: 501ms
17:	learn: 44.1521779	total: 32.1ms	remaining: 502ms
18:	learn: 44.0118782	total: 33.8ms	remaining: 500ms
19:	learn: 43.8789264	total: 35.6ms	remaining: 499ms
20:	learn: 43.6933441	total: 37.5ms	remaining: 498ms
21:	learn: 43.5014553	total: 39.3ms	remaining: 496ms
22:	learn: 43.3058600	total: 41.6ms	remaining: 501ms
23:	learn: 43.1833173	total: 46.2ms	remaining: 531ms
24:	learn: 42.9830626	total: 49.2ms	remaining: 541ms
25:	learn: 42.7848284	total: 52.3ms	remaining: 551ms
26:	learn: 42.5965463	total: 54.9ms	remaining: 555ms
27:	learn: 42.4170516	total: 59.2ms	remaining: 575ms
28:	learn: 42.2127486	total: 62.1ms	remaining: 581ms
29:	learn: 42.1092713	total: 64.7ms	remaining: 583ms
30:	learn: 41.9533268	total: 67ms	remaining: 581ms
31:	learn: 41.7900416	total: 69.7ms	remaining: 584ms
32:	learn: 41.6108677	total: 71.9ms	remaining: 581ms
33:	learn: 41.4432496	total: 73.9ms	remaining: 578ms
34:	learn: 41.2836874	total: 75.8ms	remaining: 574ms
35:	learn: 41.1636227	total: 77.5ms	remaining: 568ms
36:	learn: 41.0598070	total: 79.5ms	remaining: 565ms
37:	learn: 40.8758105	total: 81.3ms	remaining: 560ms
38:	learn: 40.7684582	total: 83ms	remaining: 555ms
39:	learn: 40.6048982	total: 84.8ms	remaining: 551ms
40:	learn: 40.4807609	total: 86.5ms	remaining: 546ms
41:	learn: 40.3034545	total: 88ms	remaining: 541ms
42:	learn: 40.1883269	total: 89.5ms	remaining: 535ms
43:	learn: 40.0227190	total: 91.2ms	remaining: 531ms
44:	learn: 39.8640453	total: 92.8ms	remaining: 526ms
45:	learn: 39.7683448	total: 94.5ms	remaining: 522ms
46:	learn: 39.6687486	total: 96.1ms	remaining: 517ms
47:	learn: 39.5097114	total: 97.6ms	remaining: 513ms
48:	learn: 39.3765611	total: 99.1ms	remaining: 508ms
49:	learn: 39.2164327	total: 101ms	remaining: 503ms
50:	learn: 39.0802204	total: 102ms	remaining: 499ms
51:	learn: 38.9387501	total: 104ms	remaining: 494ms
52:	learn: 38.8119119	total: 105ms	remaining: 490ms
53:	learn: 38.7229519	total: 107ms	remaining: 486ms
54:	learn: 38.6094271	total: 108ms	remaining: 483ms
55:	learn: 38.4600152	total: 110ms	remaining: 479ms
56:	learn: 38.3219917	total: 111ms	remaining: 475ms
57:	learn: 38.2363464	total: 113ms	remaining: 471ms
58:	learn: 38.1300609	total: 114ms	remaining: 467ms
59:	learn: 38.0159819	total: 116ms	remaining: 463ms
60:	learn: 37.8997784	total: 117ms	remaining: 460ms
61:	learn: 37.7860568	total: 119ms	remaining: 456ms
62:	learn: 37.6554369	total: 120ms	remaining: 453ms
63:	learn: 37.5667027	total: 122ms	remaining: 449ms
64:	learn: 37.3885326	total: 123ms	remaining: 446ms
65:	learn: 37.2907433	total: 125ms	remaining: 444ms
66:	learn: 37.1637711	total: 127ms	remaining: 441ms
67:	learn: 37.0112134	total: 129ms	remaining: 439ms
68:	learn: 36.8925079	total: 130ms	remaining: 436ms
69:	learn: 36.7656324	total: 132ms	remaining: 433ms
70:	learn: 36.6395623	total: 134ms	remaining: 431ms
71:	learn: 36.5239608	total: 135ms	remaining: 428ms
72:	learn: 36.3869381	total: 137ms	remaining: 425ms
73:	learn: 36.2910675	total: 138ms	remaining: 422ms
74:	learn: 36.1753657	total: 140ms	remaining: 420ms
75:	learn: 36.0647243	total: 142ms	remaining: 417ms
76:	learn: 35.9491781	total: 143ms	remaining: 415ms
77:	learn: 35.7988942	total: 145ms	remaining: 413ms
78:	learn: 35.6792166	total: 147ms	remaining: 411ms
79:	learn: 35.5600852	total: 149ms	remaining: 409ms
80:	learn: 35.4671852	total: 150ms	remaining: 406ms
81:	learn: 35.3546572	total: 152ms	remaining: 404ms
82:	learn: 35.2613116	total: 154ms	remaining: 402ms
83:	learn: 35.1775264	total: 155ms	remaining: 399ms
84:	learn: 35.0713114	total: 157ms	remaining: 397ms
85:	learn: 34.9579055	total: 159ms	remaining: 395ms
86:	learn: 34.8660515	total: 161ms	remaining: 393ms
87:	learn: 34.7584181	total: 163ms	remaining: 391ms
88:	learn: 34.6569282	total: 164ms	remaining: 389ms
89:	learn: 34.5744370	total: 166ms	remaining: 387ms
90:	learn: 34.5022419	total: 168ms	remaining: 386ms
91:	learn: 34.3890917	total: 170ms	remaining: 384ms
92:	learn: 34.2947723	total: 172ms	remaining: 382ms
93:	learn: 34.1834350	total: 173ms	remaining: 380ms
94:	learn: 34.0601393	total: 175ms	remaining: 378ms
95:	learn: 33.9635646	total: 177ms	remaining: 376ms
96:	learn: 33.8413775	total: 179ms	remaining: 374ms
97:	learn: 33.7572233	total: 180ms	remaining: 372ms
98:	learn: 33.6720942	total: 182ms	remaining: 370ms
99:	learn: 33.5933570	total: 184ms	remaining: 367ms
100:	learn: 33.4788722	total: 185ms	remaining: 365ms
101:	learn: 33.3853702	total: 187ms	remaining: 363ms
102:	learn: 33.2919841	total: 189ms	remaining: 361ms
103:	learn: 33.1932527	total: 190ms	remaining: 359ms
104:	learn: 33.1207319	total: 192ms	remaining: 357ms
105:	learn: 33.0358467	total: 194ms	remaining: 355ms
106:	learn: 32.9225923	total: 196ms	remaining: 353ms
107:	learn: 32.8269209	total: 197ms	remaining: 351ms
108:	learn: 32.7452765	total: 200ms	remaining: 350ms
109:	learn: 32.6900054	total: 201ms	remaining: 348ms
110:	learn: 32.5987873	total: 203ms	remaining: 346ms
111:	learn: 32.4982255	total: 205ms	remaining: 343ms
112:	learn: 32.3849450	total: 206ms	remaining: 341ms
113:	learn: 32.3323530	total: 208ms	remaining: 339ms
114:	learn: 32.2879411	total: 210ms	remaining: 337ms
115:	learn: 32.2224126	total: 212ms	remaining: 336ms
116:	learn: 32.1388790	total: 213ms	remaining: 334ms
117:	learn: 32.0307289	total: 215ms	remaining: 332ms
118:	learn: 31.9528912	total: 217ms	remaining: 330ms
119:	learn: 31.8664620	total: 219ms	remaining: 329ms
120:	learn: 31.7534820	total: 221ms	remaining: 327ms
121:	learn: 31.6451109	total: 223ms	remaining: 325ms
122:	learn: 31.5724759	total: 224ms	remaining: 323ms
123:	learn: 31.4693495	total: 226ms	remaining: 321ms
124:	learn: 31.3926057	total: 228ms	remaining: 320ms
125:	learn: 31.2865281	total: 230ms	remaining: 318ms
126:	learn: 31.1900353	total: 232ms	remaining: 316ms
127:	learn: 31.1292367	total: 234ms	remaining: 314ms
128:	learn: 31.0473392	total: 235ms	remaining: 312ms
129:	learn: 30.9809275	total: 237ms	remaining: 310ms
130:	learn: 30.9374245	total: 241ms	remaining: 311ms
131:	learn: 30.9082436	total: 244ms	remaining: 310ms
132:	learn: 30.8335652	total: 247ms	remaining: 310ms
133:	learn: 30.7840626	total: 251ms	remaining: 311ms
134:	learn: 30.6909351	total: 255ms	remaining: 311ms
135:	learn: 30.6127524	total: 259ms	remaining: 312ms
136:	learn: 30.5599495	total: 261ms	remaining: 311ms
137:	learn: 30.5109248	total: 263ms	remaining: 309ms
138:	learn: 30.4355690	total: 267ms	remaining: 309ms
139:	learn: 30.3768646	total: 270ms	remaining: 308ms
140:	learn: 30.2830882	total: 272ms	remaining: 306ms
141:	learn: 30.1938021	total: 274ms	remaining: 305ms
142:	learn: 30.1598360	total: 276ms	remaining: 303ms
143:	learn: 30.0660913	total: 278ms	remaining: 301ms
144:	learn: 30.0270593	total: 280ms	remaining: 299ms
145:	learn: 29.9563886	total: 282ms	remaining: 297ms
146:	learn: 29.8925520	total: 283ms	remaining: 295ms
147:	learn: 29.8519438	total: 285ms	remaining: 293ms
148:	learn: 29.8056179	total: 287ms	remaining: 291ms
149:	learn: 29.7176556	total: 289ms	remaining: 289ms
150:	learn: 29.6633564	total: 291ms	remaining: 287ms
151:	learn: 29.5992993	total: 293ms	remaining: 285ms
152:	learn: 29.5331374	total: 295ms	remaining: 283ms
153:	learn: 29.4890521	total: 297ms	remaining: 282ms
154:	learn: 29.4404476	total: 299ms	remaining: 280ms
155:	learn: 29.4123948	total: 301ms	remaining: 278ms
156:	learn: 29.3328123	total: 303ms	remaining: 276ms
157:	learn: 29.2440006	total: 305ms	remaining: 274ms
158:	learn: 29.1719767	total: 307ms	remaining: 272ms
159:	learn: 29.1130881	total: 309ms	remaining: 270ms
160:	learn: 29.0195429	total: 311ms	remaining: 268ms
161:	learn: 28.9668936	total: 313ms	remaining: 267ms
162:	learn: 28.9321758	total: 315ms	remaining: 265ms
163:	learn: 28.8689171	total: 317ms	remaining: 263ms
164:	learn: 28.8156839	total: 319ms	remaining: 261ms
165:	learn: 28.7466025	total: 321ms	remaining: 259ms
166:	learn: 28.7075251	total: 323ms	remaining: 257ms
167:	learn: 28.6536936	total: 324ms	remaining: 255ms
168:	learn: 28.5823868	total: 326ms	remaining: 253ms
169:	learn: 28.4995513	total: 328ms	remaining: 251ms
170:	learn: 28.4720173	total: 329ms	remaining: 248ms
171:	learn: 28.4289554	total: 331ms	remaining: 246ms
172:	learn: 28.3939131	total: 333ms	remaining: 244ms
173:	learn: 28.3451922	total: 334ms	remaining: 242ms
174:	learn: 28.2985374	total: 336ms	remaining: 240ms
175:	learn: 28.2250486	total: 337ms	remaining: 238ms
176:	learn: 28.1553412	total: 339ms	remaining: 235ms
177:	learn: 28.1003511	total: 340ms	remaining: 233ms
178:	learn: 28.0713108	total: 342ms	remaining: 231ms
179:	learn: 28.0351056	total: 343ms	remaining: 229ms
180:	learn: 27.9964581	total: 345ms	remaining: 227ms
181:	learn: 27.9354637	total: 347ms	remaining: 225ms
182:	learn: 27.8899165	total: 349ms	remaining: 223ms
183:	learn: 27.8205051	total: 350ms	remaining: 221ms
184:	learn: 27.7392284	total: 352ms	remaining: 219ms
185:	learn: 27.6816691	total: 353ms	remaining: 217ms
186:	learn: 27.6222153	total: 355ms	remaining: 215ms
187:	learn: 27.5532571	total: 357ms	remaining: 212ms
188:	learn: 27.5073757	total: 358ms	remaining: 210ms
189:	learn: 27.4464505	total: 360ms	remaining: 208ms
190:	learn: 27.3830757	total: 361ms	remaining: 206ms
191:	learn: 27.3368197	total: 363ms	remaining: 204ms
192:	learn: 27.3177591	total: 365ms	remaining: 202ms
193:	learn: 27.2934730	total: 367ms	remaining: 200ms
194:	learn: 27.2384691	total: 368ms	remaining: 198ms
195:	learn: 27.1926226	total: 370ms	remaining: 196ms
196:	learn: 27.1253756	total: 371ms	remaining: 194ms
197:	learn: 27.0843018	total: 373ms	remaining: 192ms
198:	learn: 27.0654471	total: 375ms	remaining: 190ms
199:	learn: 27.0155478	total: 377ms	remaining: 188ms
200:	learn: 26.9648750	total: 378ms	remaining: 186ms
201:	learn: 26.9059197	total: 380ms	remaining: 184ms
202:	learn: 26.8700639	total: 382ms	remaining: 183ms
203:	learn: 26.8126330	total: 384ms	remaining: 181ms
204:	learn: 26.7995398	total: 385ms	remaining: 179ms
205:	learn: 26.7435972	total: 387ms	remaining: 177ms
206:	learn: 26.6826011	total: 388ms	remaining: 175ms
207:	learn: 26.6087640	total: 390ms	remaining: 173ms
208:	learn: 26.5615803	total: 392ms	remaining: 171ms
209:	learn: 26.5214100	total: 394ms	remaining: 169ms
210:	learn: 26.4833031	total: 395ms	remaining: 167ms
211:	learn: 26.4222421	total: 397ms	remaining: 165ms
212:	learn: 26.3826930	total: 399ms	remaining: 163ms
213:	learn: 26.3436552	total: 400ms	remaining: 161ms
214:	learn: 26.2852755	total: 402ms	remaining: 159ms
215:	learn: 26.2306290	total: 404ms	remaining: 157ms
216:	learn: 26.2028363	total: 405ms	remaining: 155ms
217:	learn: 26.1690602	total: 407ms	remaining: 153ms
218:	learn: 26.1132008	total: 409ms	remaining: 151ms
219:	learn: 26.0853975	total: 410ms	remaining: 149ms
220:	learn: 26.0409290	total: 412ms	remaining: 147ms
221:	learn: 26.0131690	total: 414ms	remaining: 145ms
222:	learn: 25.9751504	total: 415ms	remaining: 143ms
223:	learn: 25.9558085	total: 417ms	remaining: 142ms
224:	learn: 25.8896180	total: 419ms	remaining: 140ms
225:	learn: 25.8502441	total: 421ms	remaining: 138ms
226:	learn: 25.7879984	total: 423ms	remaining: 136ms
227:	learn: 25.7520775	total: 424ms	remaining: 134ms
228:	learn: 25.6976986	total: 426ms	remaining: 132ms
229:	learn: 25.6562862	total: 428ms	remaining: 130ms
230:	learn: 25.6363727	total: 429ms	remaining: 128ms
231:	learn: 25.5830111	total: 431ms	remaining: 126ms
232:	learn: 25.5399471	total: 435ms	remaining: 125ms
233:	learn: 25.5212560	total: 438ms	remaining: 124ms
234:	learn: 25.4889089	total: 441ms	remaining: 122ms
235:	learn: 25.4349196	total: 443ms	remaining: 120ms
236:	learn: 25.3817609	total: 446ms	remaining: 118ms
237:	learn: 25.3410524	total: 448ms	remaining: 117ms
238:	learn: 25.3254923	total: 450ms	remaining: 115ms
239:	learn: 25.2786352	total: 452ms	remaining: 113ms
240:	learn: 25.2665472	total: 454ms	remaining: 111ms
241:	learn: 25.2446737	total: 456ms	remaining: 109ms
242:	learn: 25.2071036	total: 458ms	remaining: 107ms
243:	learn: 25.1799808	total: 460ms	remaining: 106ms
244:	learn: 25.1648801	total: 462ms	remaining: 104ms
245:	learn: 25.1484949	total: 464ms	remaining: 102ms
246:	learn: 25.1142792	total: 465ms	remaining: 99.8ms
247:	learn: 25.0902615	total: 467ms	remaining: 97.9ms
248:	learn: 25.0508025	total: 469ms	remaining: 96ms
249:	learn: 25.0216054	total: 470ms	remaining: 94ms
250:	learn: 24.9664227	total: 472ms	remaining: 92.1ms
251:	learn: 24.9214821	total: 473ms	remaining: 90.2ms
252:	learn: 24.8893852	total: 475ms	remaining: 88.2ms
253:	learn: 24.8711977	total: 477ms	remaining: 86.3ms
254:	learn: 24.8509705	total: 478ms	remaining: 84.4ms
255:	learn: 24.8219172	total: 480ms	remaining: 82.6ms
256:	learn: 24.7835577	total: 482ms	remaining: 80.7ms
257:	learn: 24.7314363	total: 484ms	remaining: 78.8ms
258:	learn: 24.7101644	total: 485ms	remaining: 76.8ms
259:	learn: 24.6756828	total: 487ms	remaining: 74.9ms
260:	learn: 24.6472605	total: 488ms	remaining: 73ms
261:	learn: 24.6315306	total: 490ms	remaining: 71.1ms
262:	learn: 24.6126966	total: 491ms	remaining: 69.1ms
263:	learn: 24.5675005	total: 493ms	remaining: 67.2ms
264:	learn: 24.5461601	total: 495ms	remaining: 65.3ms
265:	learn: 24.5111067	total: 496ms	remaining: 63.4ms
266:	learn: 24.4661061	total: 498ms	remaining: 61.5ms
267:	learn: 24.4360594	total: 499ms	remaining: 59.6ms
268:	learn: 24.4148542	total: 501ms	remaining: 57.7ms
269:	learn: 24.3938325	total: 502ms	remaining: 55.8ms
270:	learn: 24.3756913	total: 504ms	remaining: 53.9ms
271:	learn: 24.3329501	total: 505ms	remaining: 52ms
272:	learn: 24.3071652	total: 507ms	remaining: 50.1ms
273:	learn: 24.2599942	total: 508ms	remaining: 48.2ms
274:	learn: 24.2351201	total: 510ms	remaining: 46.4ms
275:	learn: 24.1992041	total: 512ms	remaining: 44.5ms
276:	learn: 24.1664867	total: 513ms	remaining: 42.6ms
277:	learn: 24.1290041	total: 515ms	remaining: 40.7ms
278:	learn: 24.1005350	total: 516ms	remaining: 38.9ms
279:	learn: 24.0717307	total: 518ms	remaining: 37ms
280:	learn: 24.0418237	total: 520ms	remaining: 35.1ms
281:	learn: 24.0270311	total: 521ms	remaining: 33.3ms
282:	learn: 24.0001441	total: 523ms	remaining: 31.4ms
283:	learn: 23.9702034	total: 524ms	remaining: 29.5ms
284:	learn: 23.9408485	total: 526ms	remaining: 27.7ms
285:	learn: 23.9096981	total: 527ms	remaining: 25.8ms
286:	learn: 23.8872005	total: 529ms	remaining: 23.9ms
287:	learn: 23.8605277	total: 530ms	remaining: 22.1ms
288:	learn: 23.8420106	total: 532ms	remaining: 20.2ms
289:	learn: 23.7941350	total: 533ms	remaining: 18.4ms
290:	learn: 23.7672236	total: 535ms	remaining: 16.5ms
291:	learn: 23.7342798	total: 537ms	remaining: 14.7ms
292:	learn: 23.7216623	total: 538ms	remaining: 12.9ms
293:	learn: 23.6933141	total: 540ms	remaining: 11ms
294:	learn: 23.6699354	total: 541ms	remaining: 9.18ms
295:	learn: 23.6446399	total: 543ms	remaining: 7.34ms
296:	learn: 23.6105635	total: 545ms	remaining: 5.5ms
297:	learn: 23.5770007	total: 546ms	remaining: 3.67ms
298:	learn: 23.5375414	total: 548ms	remaining: 1.83ms
299:	learn: 23.5155928	total: 549ms	remaining: 0us
0:	learn: 27.5396669	total: 1.3ms	remaining: 129ms
1:	learn: 27.0711196	total: 2.41ms	remaining: 118ms
2:	learn: 26.7462899	total: 3.52ms	remaining: 114ms
3:	learn: 26.3889740	total: 4.65ms	remaining: 112ms
4:	learn: 26.0454949	total: 5.83ms	remaining: 111ms
5:	learn: 25.6379887	total: 6.98ms	remaining: 109ms
6:	learn: 25.3078228	total: 8.13ms	remaining: 108ms
7:	learn: 25.0053100	total: 9.32ms	remaining: 107ms
8:	learn: 24.7065110	total: 10.5ms	remaining: 106ms
9:	learn: 24.4255226	total: 11.8ms	remaining: 107ms
10:	learn: 24.0933348	total: 13ms	remaining: 106ms
11:	learn: 23.8483245	total: 14.3ms	remaining: 105ms
12:	learn: 23.6206636	total: 15.6ms	remaining: 105ms
13:	learn: 23.2922409	total: 16.8ms	remaining: 103ms
14:	learn: 23.0921688	total: 18.1ms	remaining: 102ms
15:	learn: 22.8859744	total: 19.2ms	remaining: 101ms
16:	learn: 22.6507414	total: 20.6ms	remaining: 100ms
17:	learn: 22.4275526	total: 21.9ms	remaining: 99.6ms
18:	learn: 22.2482577	total: 23.1ms	remaining: 98.7ms
19:	learn: 22.0728028	total: 24.4ms	remaining: 97.5ms
20:	learn: 21.8632088	total: 25.7ms	remaining: 96.6ms
21:	learn: 21.7136685	total: 27.1ms	remaining: 96.2ms
22:	learn: 21.4990130	total: 28.5ms	remaining: 95.3ms
23:	learn: 21.2603930	total: 29.8ms	remaining: 94.3ms
24:	learn: 21.0156291	total: 31.1ms	remaining: 93.3ms
25:	learn: 20.8324243	total: 32.4ms	remaining: 92.2ms
26:	learn: 20.6486014	total: 33.8ms	remaining: 91.5ms
27:	learn: 20.4653098	total: 36.7ms	remaining: 94.3ms
28:	learn: 20.2517031	total: 38.7ms	remaining: 94.7ms
29:	learn: 20.0901141	total: 40.7ms	remaining: 95ms
30:	learn: 19.9448720	total: 42.8ms	remaining: 95.3ms
31:	learn: 19.8092363	total: 45.5ms	remaining: 96.7ms
32:	learn: 19.6433245	total: 47.9ms	remaining: 97.2ms
33:	learn: 19.5094619	total: 50ms	remaining: 97.1ms
34:	learn: 19.3969342	total: 52.2ms	remaining: 97ms
35:	learn: 19.2936512	total: 54.4ms	remaining: 96.7ms
36:	learn: 19.1767015	total: 55.9ms	remaining: 95.1ms
37:	learn: 19.0124800	total: 57.4ms	remaining: 93.7ms
38:	learn: 18.8704042	total: 59ms	remaining: 92.3ms
39:	learn: 18.7979750	total: 70.2ms	remaining: 105ms
40:	learn: 18.6894469	total: 71.7ms	remaining: 103ms
41:	learn: 18.5339705	total: 73.1ms	remaining: 101ms
42:	learn: 18.4104127	total: 74.5ms	remaining: 98.7ms
43:	learn: 18.2671840	total: 75.9ms	remaining: 96.6ms
44:	learn: 18.1898954	total: 77.3ms	remaining: 94.4ms
45:	learn: 18.0778917	total: 78.6ms	remaining: 92.3ms
46:	learn: 17.9742755	total: 80.1ms	remaining: 90.4ms
47:	learn: 17.8715751	total: 81.6ms	remaining: 88.4ms
48:	learn: 17.7802309	total: 83ms	remaining: 86.4ms
49:	learn: 17.6538567	total: 84.5ms	remaining: 84.5ms
50:	learn: 17.5783755	total: 86ms	remaining: 82.6ms
51:	learn: 17.4828039	total: 87.5ms	remaining: 80.7ms
52:	learn: 17.4113566	total: 89ms	remaining: 79ms
53:	learn: 17.3288316	total: 90.4ms	remaining: 77ms
54:	learn: 17.2467366	total: 91.8ms	remaining: 75.1ms
55:	learn: 17.1835351	total: 93.3ms	remaining: 73.3ms
56:	learn: 17.1099250	total: 94.9ms	remaining: 71.6ms
57:	learn: 17.0125026	total: 96.5ms	remaining: 69.9ms
58:	learn: 16.9632634	total: 98.4ms	remaining: 68.4ms
59:	learn: 16.8418169	total: 99.9ms	remaining: 66.6ms
60:	learn: 16.8014640	total: 101ms	remaining: 64.8ms
61:	learn: 16.7378790	total: 103ms	remaining: 62.9ms
62:	learn: 16.6702723	total: 104ms	remaining: 61ms
63:	learn: 16.5860445	total: 105ms	remaining: 59.2ms
64:	learn: 16.5555219	total: 106ms	remaining: 57.3ms
65:	learn: 16.5017286	total: 108ms	remaining: 55.5ms
66:	learn: 16.4670034	total: 109ms	remaining: 53.8ms
67:	learn: 16.4166623	total: 111ms	remaining: 52.2ms
68:	learn: 16.3600109	total: 112ms	remaining: 50.5ms
69:	learn: 16.2612093	total: 114ms	remaining: 48.8ms
70:	learn: 16.2433137	total: 116ms	remaining: 47.2ms
71:	learn: 16.1910263	total: 117ms	remaining: 45.6ms
72:	learn: 16.1217878	total: 119ms	remaining: 43.9ms
73:	learn: 16.0458991	total: 120ms	remaining: 42.2ms
74:	learn: 15.9835877	total: 121ms	remaining: 40.5ms
75:	learn: 15.9357219	total: 123ms	remaining: 38.7ms
76:	learn: 15.8724556	total: 124ms	remaining: 37ms
77:	learn: 15.8140222	total: 125ms	remaining: 35.3ms
78:	learn: 15.7865227	total: 126ms	remaining: 33.6ms
79:	learn: 15.7244499	total: 127ms	remaining: 31.9ms
80:	learn: 15.6879106	total: 129ms	remaining: 30.2ms
81:	learn: 15.6296104	total: 130ms	remaining: 28.5ms
82:	learn: 15.5666712	total: 131ms	remaining: 26.9ms
83:	learn: 15.4904472	total: 133ms	remaining: 25.2ms
84:	learn: 15.4451518	total: 134ms	remaining: 23.6ms
85:	learn: 15.3831808	total: 135ms	remaining: 22ms
86:	learn: 15.3516180	total: 136ms	remaining: 20.4ms
87:	learn: 15.3347957	total: 137ms	remaining: 18.7ms
88:	learn: 15.2950036	total: 139ms	remaining: 17.1ms
89:	learn: 15.2713057	total: 140ms	remaining: 15.5ms
90:	learn: 15.2435112	total: 141ms	remaining: 14ms
91:	learn: 15.2016893	total: 142ms	remaining: 12.4ms
92:	learn: 15.1300259	total: 143ms	remaining: 10.8ms
93:	learn: 15.1100842	total: 145ms	remaining: 9.24ms
94:	learn: 15.0536701	total: 146ms	remaining: 7.68ms
95:	learn: 15.0164869	total: 147ms	remaining: 6.13ms
96:	learn: 14.9612179	total: 149ms	remaining: 4.6ms
97:	learn: 14.9125935	total: 150ms	remaining: 3.06ms
98:	learn: 14.8799048	total: 151ms	remaining: 1.52ms
99:	learn: 14.8420890	total: 152ms	remaining: 0us
0:	learn: 43.0053311	total: 1.35ms	remaining: 134ms
1:	learn: 42.0239625	total: 2.59ms	remaining: 127ms
2:	learn: 41.1030003	total: 3.89ms	remaining: 126ms
3:	learn: 40.3772208	total: 5.09ms	remaining: 122ms
4:	learn: 39.5285394	total: 6.3ms	remaining: 120ms
5:	learn: 38.8846904	total: 7.51ms	remaining: 118ms
6:	learn: 38.0874915	total: 8.7ms	remaining: 116ms
7:	learn: 37.2874302	total: 9.87ms	remaining: 113ms
8:	learn: 36.6773271	total: 11.4ms	remaining: 115ms
9:	learn: 35.8988723	total: 12.7ms	remaining: 114ms
10:	learn: 35.2421951	total: 14ms	remaining: 113ms
11:	learn: 34.6974421	total: 15.2ms	remaining: 111ms
12:	learn: 33.9803216	total: 16.4ms	remaining: 110ms
13:	learn: 33.2894316	total: 17.7ms	remaining: 109ms
14:	learn: 32.8509600	total: 19.1ms	remaining: 108ms
15:	learn: 32.2785817	total: 20.5ms	remaining: 108ms
16:	learn: 31.6455283	total: 22.1ms	remaining: 108ms
17:	learn: 31.1621398	total: 23.3ms	remaining: 106ms
18:	learn: 30.6948657	total: 24.5ms	remaining: 104ms
19:	learn: 30.2696759	total: 25.8ms	remaining: 103ms
20:	learn: 29.7990443	total: 27ms	remaining: 102ms
21:	learn: 29.3120464	total: 28.2ms	remaining: 100ms
22:	learn: 28.8520090	total: 29.5ms	remaining: 98.8ms
23:	learn: 28.4516277	total: 30.7ms	remaining: 97.2ms
24:	learn: 27.9805220	total: 32ms	remaining: 96ms
25:	learn: 27.5120013	total: 33.3ms	remaining: 94.8ms
26:	learn: 27.1140024	total: 34.6ms	remaining: 93.5ms
27:	learn: 26.8120668	total: 35.9ms	remaining: 92.2ms
28:	learn: 26.4659360	total: 37.3ms	remaining: 91.2ms
29:	learn: 26.1004005	total: 38.5ms	remaining: 89.9ms
30:	learn: 25.7313823	total: 39.8ms	remaining: 88.6ms
31:	learn: 25.4182130	total: 41.1ms	remaining: 87.4ms
32:	learn: 25.2047643	total: 42.4ms	remaining: 86.2ms
33:	learn: 24.9811895	total: 43.9ms	remaining: 85.1ms
34:	learn: 24.6834284	total: 45.2ms	remaining: 83.9ms
35:	learn: 24.3576937	total: 46.6ms	remaining: 82.8ms
36:	learn: 24.1026830	total: 48.2ms	remaining: 82ms
37:	learn: 23.8848222	total: 50.3ms	remaining: 82ms
38:	learn: 23.6646521	total: 53.3ms	remaining: 83.4ms
39:	learn: 23.4774417	total: 55.2ms	remaining: 82.9ms
40:	learn: 23.2957217	total: 57.3ms	remaining: 82.4ms
41:	learn: 23.0902748	total: 59.3ms	remaining: 81.9ms
42:	learn: 22.9141327	total: 61.3ms	remaining: 81.2ms
43:	learn: 22.6661361	total: 63.2ms	remaining: 80.4ms
44:	learn: 22.4669869	total: 65ms	remaining: 79.5ms
45:	learn: 22.3018496	total: 66.8ms	remaining: 78.4ms
46:	learn: 22.1164541	total: 68.8ms	remaining: 77.6ms
47:	learn: 21.9166860	total: 70.5ms	remaining: 76.4ms
48:	learn: 21.7309627	total: 72.2ms	remaining: 75.1ms
49:	learn: 21.5925245	total: 73.6ms	remaining: 73.6ms
50:	learn: 21.4391920	total: 75.6ms	remaining: 72.6ms
51:	learn: 21.2627368	total: 77.2ms	remaining: 71.3ms
52:	learn: 21.1393465	total: 78.6ms	remaining: 69.7ms
53:	learn: 21.0307989	total: 79.9ms	remaining: 68ms
54:	learn: 20.9650666	total: 81.1ms	remaining: 66.4ms
55:	learn: 20.8329784	total: 82.3ms	remaining: 64.7ms
56:	learn: 20.6897421	total: 83.5ms	remaining: 63ms
57:	learn: 20.5437642	total: 84.7ms	remaining: 61.4ms
58:	learn: 20.4456457	total: 86.1ms	remaining: 59.8ms
59:	learn: 20.3198670	total: 87.4ms	remaining: 58.3ms
60:	learn: 20.2266012	total: 88.7ms	remaining: 56.7ms
61:	learn: 20.1117397	total: 89.9ms	remaining: 55.1ms
62:	learn: 20.0287866	total: 91.2ms	remaining: 53.6ms
63:	learn: 19.9336125	total: 92.5ms	remaining: 52ms
64:	learn: 19.8386945	total: 93.8ms	remaining: 50.5ms
65:	learn: 19.7723203	total: 95ms	remaining: 49ms
66:	learn: 19.7086882	total: 96.3ms	remaining: 47.4ms
67:	learn: 19.6214223	total: 97.5ms	remaining: 45.9ms
68:	learn: 19.5646939	total: 98.7ms	remaining: 44.3ms
69:	learn: 19.4647185	total: 99.9ms	remaining: 42.8ms
70:	learn: 19.3928476	total: 101ms	remaining: 41.3ms
71:	learn: 19.2916814	total: 102ms	remaining: 39.8ms
72:	learn: 19.1881737	total: 104ms	remaining: 38.4ms
73:	learn: 19.1104643	total: 105ms	remaining: 36.9ms
74:	learn: 19.0297834	total: 106ms	remaining: 35.4ms
75:	learn: 18.9455314	total: 107ms	remaining: 33.9ms
76:	learn: 18.8565548	total: 109ms	remaining: 32.5ms
77:	learn: 18.7985754	total: 110ms	remaining: 31ms
78:	learn: 18.7085717	total: 111ms	remaining: 29.5ms
79:	learn: 18.6187703	total: 112ms	remaining: 28.1ms
80:	learn: 18.5593491	total: 114ms	remaining: 26.6ms
81:	learn: 18.5049072	total: 115ms	remaining: 25.2ms
82:	learn: 18.4236743	total: 116ms	remaining: 23.7ms
83:	learn: 18.3782839	total: 117ms	remaining: 22.3ms
84:	learn: 18.3255876	total: 118ms	remaining: 20.9ms
85:	learn: 18.2408841	total: 120ms	remaining: 19.5ms
86:	learn: 18.1768990	total: 121ms	remaining: 18.1ms
87:	learn: 18.1082002	total: 122ms	remaining: 16.7ms
88:	learn: 18.0377700	total: 124ms	remaining: 15.3ms
89:	learn: 18.0130218	total: 125ms	remaining: 13.9ms
90:	learn: 17.9709653	total: 126ms	remaining: 12.5ms
91:	learn: 17.8890205	total: 127ms	remaining: 11.1ms
92:	learn: 17.8792580	total: 129ms	remaining: 9.68ms
93:	learn: 17.8209868	total: 130ms	remaining: 8.28ms
94:	learn: 17.7571297	total: 131ms	remaining: 6.89ms
95:	learn: 17.6848040	total: 132ms	remaining: 5.5ms
96:	learn: 17.6198628	total: 133ms	remaining: 4.12ms
97:	learn: 17.5571832	total: 134ms	remaining: 2.74ms
98:	learn: 17.5466369	total: 136ms	remaining: 1.37ms
99:	learn: 17.5114502	total: 137ms	remaining: 0us
0:	learn: 46.6074068	total: 1.49ms	remaining: 148ms
1:	learn: 45.8496006	total: 2.83ms	remaining: 138ms
2:	learn: 45.2354594	total: 4.08ms	remaining: 132ms
3:	learn: 44.5261088	total: 5.25ms	remaining: 126ms
4:	learn: 43.8098278	total: 6.48ms	remaining: 123ms
5:	learn: 43.0569602	total: 7.77ms	remaining: 122ms
6:	learn: 42.3137394	total: 9.03ms	remaining: 120ms
7:	learn: 41.8335666	total: 10.3ms	remaining: 118ms
8:	learn: 41.2921489	total: 11.4ms	remaining: 116ms
9:	learn: 40.7149691	total: 12.7ms	remaining: 114ms
10:	learn: 39.9277062	total: 14.1ms	remaining: 114ms
11:	learn: 39.2504313	total: 15.3ms	remaining: 112ms
12:	learn: 38.6625180	total: 16.5ms	remaining: 111ms
13:	learn: 38.1961525	total: 17.8ms	remaining: 109ms
14:	learn: 37.5585738	total: 19ms	remaining: 108ms
15:	learn: 36.9806821	total: 20.2ms	remaining: 106ms
16:	learn: 36.3146356	total: 21.4ms	remaining: 105ms
17:	learn: 35.7283727	total: 22.7ms	remaining: 103ms
18:	learn: 35.2399137	total: 23.9ms	remaining: 102ms
19:	learn: 34.9252247	total: 25.2ms	remaining: 101ms
20:	learn: 34.4172641	total: 26.4ms	remaining: 99.4ms
21:	learn: 33.9218104	total: 27.5ms	remaining: 97.6ms
22:	learn: 33.3349137	total: 28.7ms	remaining: 96ms
23:	learn: 32.8550596	total: 29.8ms	remaining: 94.3ms
24:	learn: 32.3963132	total: 31.1ms	remaining: 93.2ms
25:	learn: 32.1380456	total: 32.2ms	remaining: 91.7ms
26:	learn: 31.8903131	total: 33.4ms	remaining: 90.2ms
27:	learn: 31.5828553	total: 34.6ms	remaining: 89ms
28:	learn: 31.3056708	total: 35.9ms	remaining: 87.8ms
29:	learn: 30.9248794	total: 37ms	remaining: 86.4ms
30:	learn: 30.5603460	total: 38.5ms	remaining: 85.7ms
31:	learn: 30.2457444	total: 39.7ms	remaining: 84.4ms
32:	learn: 29.9848454	total: 41.1ms	remaining: 83.5ms
33:	learn: 29.5184386	total: 42.4ms	remaining: 82.2ms
34:	learn: 29.2613930	total: 43.6ms	remaining: 81ms
35:	learn: 28.9067981	total: 44.9ms	remaining: 79.9ms
36:	learn: 28.6506758	total: 46.1ms	remaining: 78.5ms
37:	learn: 28.3752310	total: 47.3ms	remaining: 77.2ms
38:	learn: 28.0949087	total: 48.5ms	remaining: 75.9ms
39:	learn: 27.9923595	total: 49.7ms	remaining: 74.6ms
40:	learn: 27.7196177	total: 51ms	remaining: 73.4ms
41:	learn: 27.4452872	total: 52.3ms	remaining: 72.2ms
42:	learn: 27.2277329	total: 53.7ms	remaining: 71.2ms
43:	learn: 26.9337091	total: 55.1ms	remaining: 70.1ms
44:	learn: 26.7927632	total: 56.5ms	remaining: 69ms
45:	learn: 26.6440337	total: 57.9ms	remaining: 68ms
46:	learn: 26.4163087	total: 59.8ms	remaining: 67.4ms
47:	learn: 26.2359345	total: 61.9ms	remaining: 67ms
48:	learn: 26.0839781	total: 63.7ms	remaining: 66.3ms
49:	learn: 26.0074843	total: 65.6ms	remaining: 65.6ms
50:	learn: 25.8898461	total: 67.4ms	remaining: 64.8ms
51:	learn: 25.7699020	total: 69.4ms	remaining: 64.1ms
52:	learn: 25.5940202	total: 71.4ms	remaining: 63.3ms
53:	learn: 25.3201765	total: 73.3ms	remaining: 62.5ms
54:	learn: 25.1052751	total: 76.6ms	remaining: 62.7ms
55:	learn: 24.9461875	total: 78.7ms	remaining: 61.8ms
56:	learn: 24.8024818	total: 80.4ms	remaining: 60.6ms
57:	learn: 24.6094808	total: 82ms	remaining: 59.4ms
58:	learn: 24.4583256	total: 83.9ms	remaining: 58.3ms
59:	learn: 24.2083139	total: 85.5ms	remaining: 57ms
60:	learn: 24.0649998	total: 86.9ms	remaining: 55.6ms
61:	learn: 23.9822219	total: 88.3ms	remaining: 54.1ms
62:	learn: 23.8769027	total: 90.2ms	remaining: 53ms
63:	learn: 23.6715310	total: 92.5ms	remaining: 52ms
64:	learn: 23.5595595	total: 94.5ms	remaining: 50.9ms
65:	learn: 23.4166147	total: 96.1ms	remaining: 49.5ms
66:	learn: 23.2582057	total: 97.7ms	remaining: 48.1ms
67:	learn: 23.0974656	total: 99.2ms	remaining: 46.7ms
68:	learn: 22.9791854	total: 101ms	remaining: 45.2ms
69:	learn: 22.8652498	total: 102ms	remaining: 43.7ms
70:	learn: 22.7360703	total: 103ms	remaining: 42.2ms
71:	learn: 22.6802644	total: 105ms	remaining: 40.8ms
72:	learn: 22.5538402	total: 106ms	remaining: 39.3ms
73:	learn: 22.4076395	total: 108ms	remaining: 37.9ms
74:	learn: 22.3831299	total: 109ms	remaining: 36.4ms
75:	learn: 22.2246561	total: 111ms	remaining: 34.9ms
76:	learn: 22.1392381	total: 112ms	remaining: 33.5ms
77:	learn: 22.0753998	total: 114ms	remaining: 32.1ms
78:	learn: 21.9871709	total: 116ms	remaining: 30.7ms
79:	learn: 21.9266311	total: 117ms	remaining: 29.3ms
80:	learn: 21.8699159	total: 119ms	remaining: 27.8ms
81:	learn: 21.7234760	total: 120ms	remaining: 26.4ms
82:	learn: 21.6334590	total: 122ms	remaining: 24.9ms
83:	learn: 21.5025328	total: 124ms	remaining: 23.5ms
84:	learn: 21.3813020	total: 125ms	remaining: 22.1ms
85:	learn: 21.2702525	total: 127ms	remaining: 20.7ms
86:	learn: 21.2368103	total: 128ms	remaining: 19.2ms
87:	learn: 21.1377121	total: 130ms	remaining: 17.7ms
88:	learn: 21.0039796	total: 131ms	remaining: 16.2ms
89:	learn: 20.9596608	total: 133ms	remaining: 14.8ms
90:	learn: 20.8929363	total: 134ms	remaining: 13.3ms
91:	learn: 20.8701561	total: 136ms	remaining: 11.8ms
92:	learn: 20.7424119	total: 137ms	remaining: 10.3ms
93:	learn: 20.6604399	total: 139ms	remaining: 8.84ms
94:	learn: 20.5911098	total: 140ms	remaining: 7.37ms
95:	learn: 20.4993176	total: 142ms	remaining: 5.9ms
96:	learn: 20.4264961	total: 143ms	remaining: 4.42ms
97:	learn: 20.3333721	total: 144ms	remaining: 2.95ms
98:	learn: 20.2810811	total: 146ms	remaining: 1.47ms
99:	learn: 20.2357826	total: 147ms	remaining: 0us
0:	learn: 46.0709575	total: 1.52ms	remaining: 151ms
1:	learn: 45.3080435	total: 2.87ms	remaining: 141ms
2:	learn: 44.4280378	total: 4.15ms	remaining: 134ms
3:	learn: 43.6532211	total: 5.29ms	remaining: 127ms
4:	learn: 43.0220398	total: 6.57ms	remaining: 125ms
5:	learn: 42.3125518	total: 7.85ms	remaining: 123ms
6:	learn: 41.5705990	total: 9.07ms	remaining: 121ms
7:	learn: 40.9033720	total: 10.3ms	remaining: 118ms
8:	learn: 40.4222182	total: 11.4ms	remaining: 116ms
9:	learn: 39.8244330	total: 12.7ms	remaining: 114ms
10:	learn: 39.2127156	total: 14.1ms	remaining: 114ms
11:	learn: 38.6536958	total: 15.4ms	remaining: 113ms
12:	learn: 38.2111805	total: 16.6ms	remaining: 111ms
13:	learn: 37.6429965	total: 17.7ms	remaining: 109ms
14:	learn: 37.1610161	total: 19ms	remaining: 107ms
15:	learn: 36.5832678	total: 20.2ms	remaining: 106ms
16:	learn: 36.1403033	total: 21.4ms	remaining: 105ms
17:	learn: 35.5196906	total: 22.6ms	remaining: 103ms
18:	learn: 35.0546005	total: 23.8ms	remaining: 101ms
19:	learn: 34.4514322	total: 24.9ms	remaining: 99.7ms
20:	learn: 33.9877784	total: 26.1ms	remaining: 98.2ms
21:	learn: 33.6442602	total: 27.3ms	remaining: 96.6ms
22:	learn: 33.2409783	total: 28.4ms	remaining: 95.2ms
23:	learn: 32.9516432	total: 29.7ms	remaining: 94.1ms
24:	learn: 32.4903536	total: 31ms	remaining: 93.1ms
25:	learn: 32.0441543	total: 32.3ms	remaining: 92ms
26:	learn: 31.7266413	total: 33.6ms	remaining: 90.7ms
27:	learn: 31.4745738	total: 34.7ms	remaining: 89.1ms
28:	learn: 31.2113721	total: 35.9ms	remaining: 87.9ms
29:	learn: 30.8650894	total: 37ms	remaining: 86.5ms
30:	learn: 30.5994275	total: 38.2ms	remaining: 85.1ms
31:	learn: 30.2533497	total: 39.4ms	remaining: 83.7ms
32:	learn: 30.0226357	total: 40.5ms	remaining: 82.3ms
33:	learn: 29.6680750	total: 41.7ms	remaining: 81ms
34:	learn: 29.4259058	total: 43ms	remaining: 79.9ms
35:	learn: 29.1863115	total: 44.2ms	remaining: 78.5ms
36:	learn: 28.9553548	total: 45.4ms	remaining: 77.2ms
37:	learn: 28.7322310	total: 46.6ms	remaining: 76.1ms
38:	learn: 28.5005636	total: 47.9ms	remaining: 74.9ms
39:	learn: 28.2605292	total: 49.1ms	remaining: 73.7ms
40:	learn: 28.1085921	total: 50.4ms	remaining: 72.5ms
41:	learn: 27.8395526	total: 52ms	remaining: 71.8ms
42:	learn: 27.7211327	total: 53.2ms	remaining: 70.5ms
43:	learn: 27.4504176	total: 54.4ms	remaining: 69.2ms
44:	learn: 27.3505477	total: 55.5ms	remaining: 67.9ms
45:	learn: 26.9910896	total: 56.7ms	remaining: 66.6ms
46:	learn: 26.7973471	total: 57.8ms	remaining: 65.2ms
47:	learn: 26.5915932	total: 59ms	remaining: 64ms
48:	learn: 26.4143720	total: 60.2ms	remaining: 62.7ms
49:	learn: 26.3644490	total: 61.4ms	remaining: 61.4ms
50:	learn: 26.2523195	total: 62.6ms	remaining: 60.2ms
51:	learn: 26.0712146	total: 63.9ms	remaining: 59ms
52:	learn: 25.9400804	total: 65.2ms	remaining: 57.9ms
53:	learn: 25.8481212	total: 66.5ms	remaining: 56.6ms
54:	learn: 25.7209987	total: 67.8ms	remaining: 55.4ms
55:	learn: 25.6429720	total: 69ms	remaining: 54.2ms
56:	learn: 25.5102707	total: 70.3ms	remaining: 53ms
57:	learn: 25.3142072	total: 71.5ms	remaining: 51.8ms
58:	learn: 25.1826732	total: 72.8ms	remaining: 50.6ms
59:	learn: 25.0370887	total: 74ms	remaining: 49.4ms
60:	learn: 24.9072184	total: 75.3ms	remaining: 48.1ms
61:	learn: 24.8634327	total: 76.6ms	remaining: 46.9ms
62:	learn: 24.7213499	total: 77.8ms	remaining: 45.7ms
63:	learn: 24.5471121	total: 79.1ms	remaining: 44.5ms
64:	learn: 24.3607859	total: 80.6ms	remaining: 43.4ms
65:	learn: 24.3012330	total: 81.7ms	remaining: 42.1ms
66:	learn: 24.1680354	total: 83ms	remaining: 40.9ms
67:	learn: 24.0121232	total: 84.2ms	remaining: 39.6ms
68:	learn: 23.9038949	total: 85.5ms	remaining: 38.4ms
69:	learn: 23.8038761	total: 87ms	remaining: 37.3ms
70:	learn: 23.6826454	total: 88.5ms	remaining: 36.2ms
71:	learn: 23.5306004	total: 90.1ms	remaining: 35ms
72:	learn: 23.4074484	total: 93ms	remaining: 34.4ms
73:	learn: 23.2818633	total: 94.9ms	remaining: 33.3ms
74:	learn: 23.1664660	total: 97.1ms	remaining: 32.4ms
75:	learn: 23.0355231	total: 99.3ms	remaining: 31.4ms
76:	learn: 22.9491379	total: 101ms	remaining: 30.2ms
77:	learn: 22.8762202	total: 103ms	remaining: 29ms
78:	learn: 22.7930168	total: 105ms	remaining: 27.8ms
79:	learn: 22.6945773	total: 106ms	remaining: 26.6ms
80:	learn: 22.6144831	total: 108ms	remaining: 25.3ms
81:	learn: 22.5288060	total: 110ms	remaining: 24ms
82:	learn: 22.4756829	total: 111ms	remaining: 22.7ms
83:	learn: 22.4040653	total: 112ms	remaining: 21.4ms
84:	learn: 22.3500837	total: 114ms	remaining: 20.1ms
85:	learn: 22.2807715	total: 116ms	remaining: 18.9ms
86:	learn: 22.2066189	total: 117ms	remaining: 17.5ms
87:	learn: 22.0773233	total: 119ms	remaining: 16.2ms
88:	learn: 21.9443679	total: 120ms	remaining: 14.8ms
89:	learn: 21.9189100	total: 121ms	remaining: 13.5ms
90:	learn: 21.8890882	total: 122ms	remaining: 12.1ms
91:	learn: 21.8244969	total: 123ms	remaining: 10.7ms
92:	learn: 21.7198126	total: 125ms	remaining: 9.39ms
93:	learn: 21.6638826	total: 126ms	remaining: 8.05ms
94:	learn: 21.6012969	total: 127ms	remaining: 6.7ms
95:	learn: 21.5834938	total: 128ms	remaining: 5.35ms
96:	learn: 21.5216755	total: 130ms	remaining: 4.01ms
97:	learn: 21.4379267	total: 131ms	remaining: 2.68ms
98:	learn: 21.4228194	total: 133ms	remaining: 1.34ms
99:	learn: 21.3450022	total: 134ms	remaining: 0us
0:	learn: 46.7615100	total: 1.47ms	remaining: 146ms
1:	learn: 45.8786592	total: 2.76ms	remaining: 135ms
2:	learn: 44.9643893	total: 4.11ms	remaining: 133ms
3:	learn: 44.1579612	total: 5.43ms	remaining: 130ms
4:	learn: 43.5334961	total: 6.71ms	remaining: 127ms
5:	learn: 42.7675564	total: 7.96ms	remaining: 125ms
6:	learn: 42.0636134	total: 9.17ms	remaining: 122ms
7:	learn: 41.4826596	total: 10.5ms	remaining: 121ms
8:	learn: 41.0037954	total: 11.8ms	remaining: 119ms
9:	learn: 40.3590188	total: 13ms	remaining: 117ms
10:	learn: 39.6815163	total: 14.3ms	remaining: 115ms
11:	learn: 39.1429112	total: 15.6ms	remaining: 114ms
12:	learn: 38.6834999	total: 16.8ms	remaining: 112ms
13:	learn: 38.0686328	total: 18ms	remaining: 110ms
14:	learn: 37.6058931	total: 19.2ms	remaining: 109ms
15:	learn: 37.0469277	total: 20.5ms	remaining: 108ms
16:	learn: 36.4816649	total: 22ms	remaining: 107ms
17:	learn: 35.9335814	total: 23.2ms	remaining: 106ms
18:	learn: 35.4397240	total: 24.6ms	remaining: 105ms
19:	learn: 34.9578079	total: 25.8ms	remaining: 103ms
20:	learn: 34.6387869	total: 27.1ms	remaining: 102ms
21:	learn: 34.3270198	total: 28.5ms	remaining: 101ms
22:	learn: 33.8220130	total: 29.8ms	remaining: 99.6ms
23:	learn: 33.4424897	total: 31.1ms	remaining: 98.4ms
24:	learn: 33.0763455	total: 32.5ms	remaining: 97.4ms
25:	learn: 32.6396376	total: 33.7ms	remaining: 95.9ms
26:	learn: 32.3291978	total: 35ms	remaining: 94.5ms
27:	learn: 31.9809138	total: 36.2ms	remaining: 93.2ms
28:	learn: 31.7242800	total: 37.6ms	remaining: 92ms
29:	learn: 31.4494254	total: 39ms	remaining: 91.1ms
30:	learn: 31.1380464	total: 40.3ms	remaining: 89.8ms
31:	learn: 30.8456635	total: 41.6ms	remaining: 88.4ms
32:	learn: 30.6058287	total: 42.9ms	remaining: 87.1ms
33:	learn: 30.2425993	total: 44ms	remaining: 85.5ms
34:	learn: 29.9549589	total: 45.2ms	remaining: 84ms
35:	learn: 29.6907023	total: 46.4ms	remaining: 82.5ms
36:	learn: 29.5117956	total: 47.6ms	remaining: 81ms
37:	learn: 29.3037840	total: 48.8ms	remaining: 79.6ms
38:	learn: 29.0719600	total: 50ms	remaining: 78.2ms
39:	learn: 28.9042259	total: 51.3ms	remaining: 76.9ms
40:	learn: 28.6479775	total: 52.5ms	remaining: 75.5ms
41:	learn: 28.3606424	total: 53.7ms	remaining: 74.1ms
42:	learn: 28.1638734	total: 55ms	remaining: 72.9ms
43:	learn: 27.9207579	total: 56.3ms	remaining: 71.6ms
44:	learn: 27.7790971	total: 57.5ms	remaining: 70.3ms
45:	learn: 27.6799141	total: 58.7ms	remaining: 68.9ms
46:	learn: 27.5365213	total: 59.9ms	remaining: 67.6ms
47:	learn: 27.3773653	total: 61.1ms	remaining: 66.2ms
48:	learn: 27.1561862	total: 62.3ms	remaining: 64.9ms
49:	learn: 27.0997048	total: 63.6ms	remaining: 63.6ms
50:	learn: 26.9547579	total: 64.8ms	remaining: 62.3ms
51:	learn: 26.7939984	total: 66ms	remaining: 60.9ms
52:	learn: 26.6326409	total: 67.3ms	remaining: 59.6ms
53:	learn: 26.4624451	total: 68.5ms	remaining: 58.4ms
54:	learn: 26.2923661	total: 69.8ms	remaining: 57.1ms
55:	learn: 26.1658098	total: 71.1ms	remaining: 55.9ms
56:	learn: 26.0209867	total: 72.4ms	remaining: 54.6ms
57:	learn: 25.8671326	total: 73.5ms	remaining: 53.2ms
58:	learn: 25.7192646	total: 74.7ms	remaining: 51.9ms
59:	learn: 25.6132249	total: 75.9ms	remaining: 50.6ms
60:	learn: 25.5160209	total: 77.1ms	remaining: 49.3ms
61:	learn: 25.4472180	total: 78.4ms	remaining: 48ms
62:	learn: 25.3494822	total: 79.5ms	remaining: 46.7ms
63:	learn: 25.3029653	total: 80.6ms	remaining: 45.4ms
64:	learn: 25.0863109	total: 81.8ms	remaining: 44.1ms
65:	learn: 25.0178325	total: 83.5ms	remaining: 43ms
66:	learn: 24.9390409	total: 84.7ms	remaining: 41.7ms
67:	learn: 24.8270544	total: 85.9ms	remaining: 40.4ms
68:	learn: 24.7219046	total: 87.1ms	remaining: 39.1ms
69:	learn: 24.6403493	total: 88.4ms	remaining: 37.9ms
70:	learn: 24.5430289	total: 89.7ms	remaining: 36.6ms
71:	learn: 24.5017234	total: 90.9ms	remaining: 35.4ms
72:	learn: 24.4411368	total: 92.2ms	remaining: 34.1ms
73:	learn: 24.1836983	total: 93.3ms	remaining: 32.8ms
74:	learn: 24.1278934	total: 94.6ms	remaining: 31.5ms
75:	learn: 24.0160938	total: 95.8ms	remaining: 30.3ms
76:	learn: 23.9354837	total: 97ms	remaining: 29ms
77:	learn: 23.8788468	total: 98.3ms	remaining: 27.7ms
78:	learn: 23.8623417	total: 99.6ms	remaining: 26.5ms
79:	learn: 23.8004037	total: 101ms	remaining: 25.2ms
80:	learn: 23.7143775	total: 102ms	remaining: 23.9ms
81:	learn: 23.5518349	total: 103ms	remaining: 22.7ms
82:	learn: 23.4692344	total: 105ms	remaining: 21.5ms
83:	learn: 23.3632341	total: 106ms	remaining: 20.2ms
84:	learn: 23.2750154	total: 107ms	remaining: 18.9ms
85:	learn: 23.1830489	total: 109ms	remaining: 17.7ms
86:	learn: 23.1004439	total: 110ms	remaining: 16.4ms
87:	learn: 22.9698626	total: 111ms	remaining: 15.2ms
88:	learn: 22.8249990	total: 113ms	remaining: 13.9ms
89:	learn: 22.7632398	total: 114ms	remaining: 12.7ms
90:	learn: 22.6933729	total: 115ms	remaining: 11.4ms
91:	learn: 22.6193254	total: 117ms	remaining: 10.1ms
92:	learn: 22.5970262	total: 118ms	remaining: 8.87ms
93:	learn: 22.5707244	total: 119ms	remaining: 7.61ms
94:	learn: 22.4865249	total: 120ms	remaining: 6.34ms
95:	learn: 22.3923951	total: 122ms	remaining: 5.08ms
96:	learn: 22.3220308	total: 124ms	remaining: 3.83ms
97:	learn: 22.2633193	total: 126ms	remaining: 2.57ms
98:	learn: 22.2273383	total: 128ms	remaining: 1.29ms
99:	learn: 22.1945338	total: 131ms	remaining: 0us
0:	learn: 27.6973511	total: 24.3ms	remaining: 7.28s
1:	learn: 27.2958182	total: 47.7ms	remaining: 7.11s
2:	learn: 26.8950527	total: 70.3ms	remaining: 6.96s
3:	learn: 26.4489170	total: 93.3ms	remaining: 6.9s
4:	learn: 26.1800349	total: 116ms	remaining: 6.86s
5:	learn: 25.7917141	total: 139ms	remaining: 6.82s
6:	learn: 25.5263958	total: 164ms	remaining: 6.87s
7:	learn: 25.2345461	total: 191ms	remaining: 6.98s
8:	learn: 24.8337785	total: 215ms	remaining: 6.94s
9:	learn: 24.5131550	total: 238ms	remaining: 6.89s
10:	learn: 24.2257656	total: 261ms	remaining: 6.85s
11:	learn: 23.9792781	total: 283ms	remaining: 6.79s
12:	learn: 23.6676478	total: 306ms	remaining: 6.75s
13:	learn: 23.4355824	total: 328ms	remaining: 6.7s
14:	learn: 23.2062795	total: 352ms	remaining: 6.68s
15:	learn: 22.9749556	total: 377ms	remaining: 6.69s
16:	learn: 22.7388336	total: 416ms	remaining: 6.92s
17:	learn: 22.5065141	total: 439ms	remaining: 6.88s
18:	learn: 22.2263730	total: 462ms	remaining: 6.84s
19:	learn: 21.9969137	total: 486ms	remaining: 6.81s
20:	learn: 21.7654035	total: 508ms	remaining: 6.75s
21:	learn: 21.5672959	total: 531ms	remaining: 6.71s
22:	learn: 21.3699131	total: 555ms	remaining: 6.68s
23:	learn: 21.1320132	total: 578ms	remaining: 6.64s
24:	learn: 20.8360475	total: 602ms	remaining: 6.62s
25:	learn: 20.6216430	total: 632ms	remaining: 6.66s
26:	learn: 20.4442023	total: 656ms	remaining: 6.63s
27:	learn: 20.2452126	total: 679ms	remaining: 6.59s
28:	learn: 19.9551543	total: 701ms	remaining: 6.55s
29:	learn: 19.7874909	total: 726ms	remaining: 6.53s
30:	learn: 19.6541244	total: 750ms	remaining: 6.5s
31:	learn: 19.4769528	total: 773ms	remaining: 6.47s
32:	learn: 19.2916254	total: 796ms	remaining: 6.44s
33:	learn: 19.1524478	total: 821ms	remaining: 6.42s
34:	learn: 19.0152836	total: 853ms	remaining: 6.46s
35:	learn: 18.7761219	total: 880ms	remaining: 6.45s
36:	learn: 18.6266045	total: 904ms	remaining: 6.42s
37:	learn: 18.4382424	total: 929ms	remaining: 6.4s
38:	learn: 18.3276487	total: 953ms	remaining: 6.38s
39:	learn: 18.1728115	total: 977ms	remaining: 6.35s
40:	learn: 18.0412668	total: 1s	remaining: 6.32s
41:	learn: 17.8927154	total: 1.02s	remaining: 6.28s
42:	learn: 17.6796203	total: 1.05s	remaining: 6.26s
43:	learn: 17.5396182	total: 1.08s	remaining: 6.27s
44:	learn: 17.3897332	total: 1.1s	remaining: 6.25s
45:	learn: 17.2677742	total: 1.13s	remaining: 6.22s
46:	learn: 17.1204742	total: 1.15s	remaining: 6.19s
47:	learn: 16.9890701	total: 1.17s	remaining: 6.16s
48:	learn: 16.8827846	total: 1.2s	remaining: 6.14s
49:	learn: 16.7657376	total: 1.22s	remaining: 6.12s
50:	learn: 16.6624511	total: 1.25s	remaining: 6.13s
51:	learn: 16.5486117	total: 1.28s	remaining: 6.11s
52:	learn: 16.4000940	total: 1.31s	remaining: 6.09s
53:	learn: 16.3029344	total: 1.33s	remaining: 6.07s
54:	learn: 16.2035733	total: 1.35s	remaining: 6.04s
55:	learn: 16.0437589	total: 1.38s	remaining: 6.02s
56:	learn: 15.9522262	total: 1.41s	remaining: 6s
57:	learn: 15.8358267	total: 1.43s	remaining: 5.97s
58:	learn: 15.7214027	total: 1.46s	remaining: 5.95s
59:	learn: 15.5996313	total: 1.48s	remaining: 5.93s
60:	learn: 15.4720290	total: 1.51s	remaining: 5.93s
61:	learn: 15.3836272	total: 1.54s	remaining: 5.9s
62:	learn: 15.2874597	total: 1.56s	remaining: 5.88s
63:	learn: 15.1976492	total: 1.59s	remaining: 5.85s
64:	learn: 15.0909229	total: 1.61s	remaining: 5.83s
65:	learn: 15.0152553	total: 1.64s	remaining: 5.8s
66:	learn: 14.9383045	total: 1.66s	remaining: 5.77s
67:	learn: 14.8359454	total: 1.68s	remaining: 5.74s
68:	learn: 14.7292481	total: 1.71s	remaining: 5.72s
69:	learn: 14.6260226	total: 1.74s	remaining: 5.72s
70:	learn: 14.4936289	total: 1.77s	remaining: 5.7s
71:	learn: 14.4124866	total: 1.79s	remaining: 5.68s
72:	learn: 14.3506411	total: 1.82s	remaining: 5.66s
73:	learn: 14.3003606	total: 1.84s	remaining: 5.63s
74:	learn: 14.2329960	total: 1.87s	remaining: 5.6s
75:	learn: 14.1623742	total: 1.89s	remaining: 5.58s
76:	learn: 14.0963112	total: 1.92s	remaining: 5.55s
77:	learn: 14.0129265	total: 1.95s	remaining: 5.54s
78:	learn: 13.9069448	total: 1.97s	remaining: 5.52s
79:	learn: 13.8583745	total: 1.99s	remaining: 5.49s
80:	learn: 13.8036276	total: 2.02s	remaining: 5.46s
81:	learn: 13.7294653	total: 2.04s	remaining: 5.43s
82:	learn: 13.6421548	total: 2.06s	remaining: 5.4s
83:	learn: 13.5544027	total: 2.09s	remaining: 5.37s
84:	learn: 13.4962426	total: 2.11s	remaining: 5.34s
85:	learn: 13.4236501	total: 2.14s	remaining: 5.32s
86:	learn: 13.3553655	total: 2.16s	remaining: 5.29s
87:	learn: 13.2833189	total: 2.19s	remaining: 5.29s
88:	learn: 13.2153279	total: 2.22s	remaining: 5.26s
89:	learn: 13.1595818	total: 2.24s	remaining: 5.24s
90:	learn: 13.0790280	total: 2.27s	remaining: 5.21s
91:	learn: 13.0059101	total: 2.29s	remaining: 5.18s
92:	learn: 12.9563936	total: 2.31s	remaining: 5.15s
93:	learn: 12.8795347	total: 2.34s	remaining: 5.12s
94:	learn: 12.8232219	total: 2.36s	remaining: 5.1s
95:	learn: 12.7614070	total: 2.39s	remaining: 5.08s
96:	learn: 12.7102421	total: 2.42s	remaining: 5.05s
97:	learn: 12.6436653	total: 2.44s	remaining: 5.03s
98:	learn: 12.5913696	total: 2.46s	remaining: 5s
99:	learn: 12.5367726	total: 2.49s	remaining: 4.98s
100:	learn: 12.4852419	total: 2.51s	remaining: 4.95s
101:	learn: 12.4385597	total: 2.54s	remaining: 4.93s
102:	learn: 12.3736476	total: 2.56s	remaining: 4.9s
103:	learn: 12.3247110	total: 2.6s	remaining: 4.9s
104:	learn: 12.2766720	total: 2.63s	remaining: 4.88s
105:	learn: 12.1952428	total: 2.65s	remaining: 4.85s
106:	learn: 12.1331617	total: 2.67s	remaining: 4.82s
107:	learn: 12.0512166	total: 2.7s	remaining: 4.8s
108:	learn: 11.9992209	total: 2.72s	remaining: 4.77s
109:	learn: 11.9475776	total: 2.75s	remaining: 4.74s
110:	learn: 11.9014821	total: 2.77s	remaining: 4.72s
111:	learn: 11.8707288	total: 2.79s	remaining: 4.69s
112:	learn: 11.8094965	total: 2.82s	remaining: 4.67s
113:	learn: 11.7463043	total: 2.85s	remaining: 4.64s
114:	learn: 11.7007710	total: 2.87s	remaining: 4.62s
115:	learn: 11.6615587	total: 2.89s	remaining: 4.59s
116:	learn: 11.6237977	total: 2.92s	remaining: 4.56s
117:	learn: 11.5616902	total: 2.94s	remaining: 4.54s
118:	learn: 11.4975486	total: 2.96s	remaining: 4.51s
119:	learn: 11.4545682	total: 2.99s	remaining: 4.48s
120:	learn: 11.4025940	total: 3.01s	remaining: 4.45s
121:	learn: 11.3457331	total: 3.04s	remaining: 4.43s
122:	learn: 11.3052810	total: 3.07s	remaining: 4.42s
123:	learn: 11.2420518	total: 3.1s	remaining: 4.39s
124:	learn: 11.1980267	total: 3.12s	remaining: 4.37s
125:	learn: 11.1471837	total: 3.15s	remaining: 4.34s
126:	learn: 11.0933514	total: 3.17s	remaining: 4.32s
127:	learn: 11.0387232	total: 3.19s	remaining: 4.29s
128:	learn: 10.9882800	total: 3.21s	remaining: 4.26s
129:	learn: 10.9217831	total: 3.24s	remaining: 4.24s
130:	learn: 10.8638073	total: 3.27s	remaining: 4.22s
131:	learn: 10.8405452	total: 3.29s	remaining: 4.19s
132:	learn: 10.7843152	total: 3.32s	remaining: 4.17s
133:	learn: 10.7215416	total: 3.34s	remaining: 4.14s
134:	learn: 10.6848770	total: 3.36s	remaining: 4.11s
135:	learn: 10.6386232	total: 3.39s	remaining: 4.08s
136:	learn: 10.5833324	total: 3.41s	remaining: 4.06s
137:	learn: 10.5552164	total: 3.43s	remaining: 4.03s
138:	learn: 10.5095592	total: 3.46s	remaining: 4s
139:	learn: 10.4652541	total: 3.49s	remaining: 3.99s
140:	learn: 10.4181327	total: 3.52s	remaining: 3.96s
141:	learn: 10.3570489	total: 3.54s	remaining: 3.94s
142:	learn: 10.3155806	total: 3.57s	remaining: 3.92s
143:	learn: 10.2935116	total: 3.59s	remaining: 3.89s
144:	learn: 10.2490396	total: 3.61s	remaining: 3.86s
145:	learn: 10.2175010	total: 3.64s	remaining: 3.84s
146:	learn: 10.1861611	total: 3.66s	remaining: 3.81s
147:	learn: 10.1464010	total: 3.68s	remaining: 3.78s
148:	learn: 10.1109588	total: 3.71s	remaining: 3.76s
149:	learn: 10.0820993	total: 3.74s	remaining: 3.74s
150:	learn: 10.0459417	total: 3.76s	remaining: 3.71s
151:	learn: 10.0150499	total: 3.79s	remaining: 3.69s
152:	learn: 9.9616104	total: 3.81s	remaining: 3.66s
153:	learn: 9.9370092	total: 3.83s	remaining: 3.63s
154:	learn: 9.8880669	total: 3.85s	remaining: 3.61s
155:	learn: 9.8035082	total: 3.88s	remaining: 3.58s
156:	learn: 9.7562049	total: 3.9s	remaining: 3.56s
157:	learn: 9.7188558	total: 3.93s	remaining: 3.53s
158:	learn: 9.6455036	total: 3.96s	remaining: 3.51s
159:	learn: 9.6138052	total: 3.98s	remaining: 3.48s
160:	learn: 9.5876598	total: 4s	remaining: 3.46s
161:	learn: 9.5617205	total: 4.03s	remaining: 3.43s
162:	learn: 9.5136300	total: 4.05s	remaining: 3.4s
163:	learn: 9.4854261	total: 4.07s	remaining: 3.38s
164:	learn: 9.4413089	total: 4.1s	remaining: 3.35s
165:	learn: 9.4301555	total: 4.12s	remaining: 3.33s
166:	learn: 9.3696661	total: 4.15s	remaining: 3.31s
167:	learn: 9.3197847	total: 4.17s	remaining: 3.28s
168:	learn: 9.2932309	total: 4.2s	remaining: 3.25s
169:	learn: 9.2622589	total: 4.22s	remaining: 3.23s
170:	learn: 9.2248534	total: 4.24s	remaining: 3.2s
171:	learn: 9.2022003	total: 4.26s	remaining: 3.17s
172:	learn: 9.1580241	total: 4.29s	remaining: 3.15s
173:	learn: 9.1260167	total: 4.31s	remaining: 3.12s
174:	learn: 9.0878209	total: 4.33s	remaining: 3.1s
175:	learn: 9.0321761	total: 4.37s	remaining: 3.08s
176:	learn: 9.0083249	total: 4.39s	remaining: 3.05s
177:	learn: 8.9787673	total: 4.42s	remaining: 3.03s
178:	learn: 8.9601410	total: 4.44s	remaining: 3s
179:	learn: 8.9127704	total: 4.46s	remaining: 2.98s
180:	learn: 8.8972409	total: 4.49s	remaining: 2.95s
181:	learn: 8.8794861	total: 4.51s	remaining: 2.92s
182:	learn: 8.8500542	total: 4.53s	remaining: 2.9s
183:	learn: 8.8141901	total: 4.56s	remaining: 2.87s
184:	learn: 8.7581473	total: 4.59s	remaining: 2.85s
185:	learn: 8.7253122	total: 4.61s	remaining: 2.83s
186:	learn: 8.6834052	total: 4.63s	remaining: 2.8s
187:	learn: 8.6566031	total: 4.66s	remaining: 2.77s
188:	learn: 8.6185765	total: 4.68s	remaining: 2.75s
189:	learn: 8.5835114	total: 4.7s	remaining: 2.72s
190:	learn: 8.5300510	total: 4.73s	remaining: 2.7s
191:	learn: 8.5135771	total: 4.75s	remaining: 2.67s
192:	learn: 8.4829013	total: 4.77s	remaining: 2.65s
193:	learn: 8.4533553	total: 4.8s	remaining: 2.62s
194:	learn: 8.4023227	total: 4.83s	remaining: 2.6s
195:	learn: 8.3643349	total: 4.86s	remaining: 2.58s
196:	learn: 8.3359260	total: 4.89s	remaining: 2.56s
197:	learn: 8.3049442	total: 4.92s	remaining: 2.53s
198:	learn: 8.2787682	total: 4.94s	remaining: 2.51s
199:	learn: 8.2447974	total: 4.97s	remaining: 2.48s
200:	learn: 8.1921213	total: 5s	remaining: 2.46s
201:	learn: 8.1368756	total: 5.03s	remaining: 2.44s
202:	learn: 8.1199237	total: 5.05s	remaining: 2.41s
203:	learn: 8.1017969	total: 5.08s	remaining: 2.39s
204:	learn: 8.0671173	total: 5.11s	remaining: 2.37s
205:	learn: 8.0319971	total: 5.13s	remaining: 2.34s
206:	learn: 8.0103044	total: 5.16s	remaining: 2.32s
207:	learn: 7.9967444	total: 5.19s	remaining: 2.29s
208:	learn: 7.9828258	total: 5.21s	remaining: 2.27s
209:	learn: 7.9515046	total: 5.25s	remaining: 2.25s
210:	learn: 7.9227280	total: 5.27s	remaining: 2.22s
211:	learn: 7.8910798	total: 5.31s	remaining: 2.2s
212:	learn: 7.8631592	total: 5.33s	remaining: 2.18s
213:	learn: 7.8233678	total: 5.36s	remaining: 2.15s
214:	learn: 7.8019668	total: 5.38s	remaining: 2.13s
215:	learn: 7.7692506	total: 5.41s	remaining: 2.1s
216:	learn: 7.7490031	total: 5.44s	remaining: 2.08s
217:	learn: 7.7321355	total: 5.47s	remaining: 2.06s
218:	learn: 7.7098665	total: 5.5s	remaining: 2.03s
219:	learn: 7.6731807	total: 5.52s	remaining: 2.01s
220:	learn: 7.6504773	total: 5.56s	remaining: 1.99s
221:	learn: 7.6249824	total: 5.58s	remaining: 1.96s
222:	learn: 7.6041649	total: 5.61s	remaining: 1.94s
223:	learn: 7.5490806	total: 5.63s	remaining: 1.91s
224:	learn: 7.5192127	total: 5.66s	remaining: 1.89s
225:	learn: 7.5025279	total: 5.69s	remaining: 1.86s
226:	learn: 7.4929920	total: 5.72s	remaining: 1.84s
227:	learn: 7.4778779	total: 5.75s	remaining: 1.81s
228:	learn: 7.4483660	total: 5.78s	remaining: 1.79s
229:	learn: 7.4291956	total: 5.81s	remaining: 1.77s
230:	learn: 7.4142087	total: 5.84s	remaining: 1.74s
231:	learn: 7.3986246	total: 5.86s	remaining: 1.72s
232:	learn: 7.3551309	total: 5.89s	remaining: 1.69s
233:	learn: 7.3005723	total: 5.92s	remaining: 1.67s
234:	learn: 7.2744519	total: 5.95s	remaining: 1.65s
235:	learn: 7.2477126	total: 5.97s	remaining: 1.62s
236:	learn: 7.2363537	total: 6.01s	remaining: 1.6s
237:	learn: 7.2243670	total: 6.03s	remaining: 1.57s
238:	learn: 7.2006057	total: 6.06s	remaining: 1.55s
239:	learn: 7.1770175	total: 6.08s	remaining: 1.52s
240:	learn: 7.1608454	total: 6.11s	remaining: 1.5s
241:	learn: 7.1347778	total: 6.14s	remaining: 1.47s
242:	learn: 7.1201448	total: 6.17s	remaining: 1.45s
243:	learn: 7.0954331	total: 6.2s	remaining: 1.42s
244:	learn: 7.0788027	total: 6.24s	remaining: 1.4s
245:	learn: 7.0587521	total: 6.26s	remaining: 1.37s
246:	learn: 7.0403295	total: 6.29s	remaining: 1.35s
247:	learn: 7.0149142	total: 6.32s	remaining: 1.32s
248:	learn: 7.0058503	total: 6.34s	remaining: 1.3s
249:	learn: 6.9872119	total: 6.38s	remaining: 1.27s
250:	learn: 6.9784378	total: 6.4s	remaining: 1.25s
251:	learn: 6.9401511	total: 6.43s	remaining: 1.22s
252:	learn: 6.9119575	total: 6.45s	remaining: 1.2s
253:	learn: 6.8791967	total: 6.49s	remaining: 1.17s
254:	learn: 6.8591065	total: 6.51s	remaining: 1.15s
255:	learn: 6.8466643	total: 6.54s	remaining: 1.12s
256:	learn: 6.8336092	total: 6.58s	remaining: 1.1s
257:	learn: 6.7969563	total: 6.61s	remaining: 1.07s
258:	learn: 6.7696422	total: 6.63s	remaining: 1.05s
259:	learn: 6.7495271	total: 6.66s	remaining: 1.02s
260:	learn: 6.7360935	total: 6.68s	remaining: 999ms
261:	learn: 6.7206472	total: 6.72s	remaining: 975ms
262:	learn: 6.7069436	total: 6.75s	remaining: 949ms
263:	learn: 6.6808851	total: 6.77s	remaining: 924ms
264:	learn: 6.6465468	total: 6.81s	remaining: 899ms
265:	learn: 6.6275745	total: 6.83s	remaining: 874ms
266:	learn: 6.6154560	total: 6.86s	remaining: 848ms
267:	learn: 6.5939280	total: 6.88s	remaining: 822ms
268:	learn: 6.5711370	total: 6.91s	remaining: 796ms
269:	learn: 6.5613012	total: 6.95s	remaining: 772ms
270:	learn: 6.5376183	total: 6.97s	remaining: 746ms
271:	learn: 6.5139963	total: 7s	remaining: 721ms
272:	learn: 6.5040754	total: 7.03s	remaining: 696ms
273:	learn: 6.4975901	total: 7.06s	remaining: 670ms
274:	learn: 6.4904306	total: 7.09s	remaining: 644ms
275:	learn: 6.4771827	total: 7.11s	remaining: 619ms
276:	learn: 6.4640077	total: 7.14s	remaining: 593ms
277:	learn: 6.4479524	total: 7.17s	remaining: 568ms
278:	learn: 6.4378265	total: 7.2s	remaining: 542ms
279:	learn: 6.3945577	total: 7.23s	remaining: 517ms
280:	learn: 6.3799486	total: 7.26s	remaining: 491ms
281:	learn: 6.3522615	total: 7.29s	remaining: 465ms
282:	learn: 6.3442235	total: 7.31s	remaining: 439ms
283:	learn: 6.3211858	total: 7.34s	remaining: 413ms
284:	learn: 6.3144146	total: 7.37s	remaining: 388ms
285:	learn: 6.2952523	total: 7.39s	remaining: 362ms
286:	learn: 6.2759215	total: 7.42s	remaining: 336ms
287:	learn: 6.2573928	total: 7.45s	remaining: 311ms
288:	learn: 6.2171188	total: 7.49s	remaining: 285ms
289:	learn: 6.2047704	total: 7.52s	remaining: 259ms
290:	learn: 6.1958409	total: 7.54s	remaining: 233ms
291:	learn: 6.1687670	total: 7.57s	remaining: 207ms
292:	learn: 6.1534078	total: 7.6s	remaining: 182ms
293:	learn: 6.1501440	total: 7.62s	remaining: 156ms
294:	learn: 6.1433714	total: 7.66s	remaining: 130ms
295:	learn: 6.1307498	total: 7.68s	remaining: 104ms
296:	learn: 6.0959885	total: 7.72s	remaining: 77.9ms
297:	learn: 6.0797899	total: 7.74s	remaining: 52ms
298:	learn: 6.0558136	total: 7.77s	remaining: 26ms
299:	learn: 6.0496478	total: 7.79s	remaining: 0us
0:	learn: 42.9665907	total: 26.1ms	remaining: 7.82s
1:	learn: 42.0749580	total: 53.1ms	remaining: 7.91s
2:	learn: 41.2364372	total: 97.6ms	remaining: 9.66s
3:	learn: 40.2791940	total: 124ms	remaining: 9.17s
4:	learn: 39.4774740	total: 152ms	remaining: 8.96s
5:	learn: 38.5996840	total: 154ms	remaining: 7.52s
6:	learn: 37.8316211	total: 181ms	remaining: 7.59s
7:	learn: 37.1628850	total: 207ms	remaining: 7.57s
8:	learn: 36.4156466	total: 234ms	remaining: 7.55s
9:	learn: 35.6588758	total: 261ms	remaining: 7.58s
10:	learn: 35.0884345	total: 291ms	remaining: 7.65s
11:	learn: 34.5488461	total: 329ms	remaining: 7.89s
12:	learn: 34.0111283	total: 354ms	remaining: 7.81s
13:	learn: 33.3032373	total: 380ms	remaining: 7.77s
14:	learn: 32.6944492	total: 407ms	remaining: 7.72s
15:	learn: 32.1392985	total: 433ms	remaining: 7.68s
16:	learn: 31.5189724	total: 459ms	remaining: 7.64s
17:	learn: 31.1349319	total: 487ms	remaining: 7.63s
18:	learn: 30.6327993	total: 493ms	remaining: 7.3s
19:	learn: 30.1244237	total: 531ms	remaining: 7.43s
20:	learn: 29.6203476	total: 559ms	remaining: 7.42s
21:	learn: 29.1948722	total: 594ms	remaining: 7.51s
22:	learn: 28.7806338	total: 621ms	remaining: 7.48s
23:	learn: 28.4090304	total: 648ms	remaining: 7.45s
24:	learn: 27.8808639	total: 674ms	remaining: 7.42s
25:	learn: 27.4873995	total: 702ms	remaining: 7.4s
26:	learn: 27.1508867	total: 738ms	remaining: 7.46s
27:	learn: 26.8736886	total: 766ms	remaining: 7.44s
28:	learn: 26.5573453	total: 793ms	remaining: 7.41s
29:	learn: 26.1377013	total: 826ms	remaining: 7.44s
30:	learn: 25.8646447	total: 853ms	remaining: 7.41s
31:	learn: 25.5102956	total: 880ms	remaining: 7.37s
32:	learn: 25.1125832	total: 882ms	remaining: 7.14s
33:	learn: 24.7834335	total: 909ms	remaining: 7.11s
34:	learn: 24.4107155	total: 952ms	remaining: 7.2s
35:	learn: 24.1257227	total: 981ms	remaining: 7.2s
36:	learn: 23.7885363	total: 1.01s	remaining: 7.17s
37:	learn: 23.4172762	total: 1.03s	remaining: 7.13s
38:	learn: 23.1811741	total: 1.07s	remaining: 7.16s
39:	learn: 23.0203552	total: 1.09s	remaining: 7.12s
40:	learn: 22.7568385	total: 1.12s	remaining: 7.08s
41:	learn: 22.5575054	total: 1.15s	remaining: 7.09s
42:	learn: 22.3627317	total: 1.18s	remaining: 7.07s
43:	learn: 22.1148033	total: 1.21s	remaining: 7.03s
44:	learn: 21.8764654	total: 1.23s	remaining: 7s
45:	learn: 21.6507751	total: 1.26s	remaining: 6.96s
46:	learn: 21.5071770	total: 1.29s	remaining: 6.92s
47:	learn: 21.2905641	total: 1.32s	remaining: 6.93s
48:	learn: 21.0236680	total: 1.35s	remaining: 6.93s
49:	learn: 20.8525654	total: 1.38s	remaining: 6.91s
50:	learn: 20.7238361	total: 1.41s	remaining: 6.87s
51:	learn: 20.5196846	total: 1.43s	remaining: 6.84s
52:	learn: 20.4023709	total: 1.46s	remaining: 6.8s
53:	learn: 20.2251544	total: 1.49s	remaining: 6.78s
54:	learn: 20.0165126	total: 1.51s	remaining: 6.74s
55:	learn: 19.8473022	total: 1.54s	remaining: 6.73s
56:	learn: 19.6453942	total: 1.57s	remaining: 6.71s
57:	learn: 19.4414519	total: 1.6s	remaining: 6.69s
58:	learn: 19.2841809	total: 1.63s	remaining: 6.66s
59:	learn: 19.1094988	total: 1.66s	remaining: 6.63s
60:	learn: 18.9071492	total: 1.68s	remaining: 6.59s
61:	learn: 18.8142448	total: 1.71s	remaining: 6.56s
62:	learn: 18.7155916	total: 1.74s	remaining: 6.53s
63:	learn: 18.5713989	total: 1.77s	remaining: 6.53s
64:	learn: 18.4435949	total: 1.8s	remaining: 6.5s
65:	learn: 18.3154060	total: 1.83s	remaining: 6.51s
66:	learn: 18.1763969	total: 1.86s	remaining: 6.48s
67:	learn: 18.0520004	total: 1.89s	remaining: 6.45s
68:	learn: 17.9256535	total: 1.92s	remaining: 6.42s
69:	learn: 17.8001190	total: 1.94s	remaining: 6.39s
70:	learn: 17.7046336	total: 1.97s	remaining: 6.35s
71:	learn: 17.5727695	total: 2s	remaining: 6.35s
72:	learn: 17.4690371	total: 2.04s	remaining: 6.35s
73:	learn: 17.3464529	total: 2.07s	remaining: 6.32s
74:	learn: 17.2490723	total: 2.09s	remaining: 6.28s
75:	learn: 17.1387598	total: 2.12s	remaining: 6.25s
76:	learn: 17.0249827	total: 2.15s	remaining: 6.21s
77:	learn: 16.8957417	total: 2.17s	remaining: 6.18s
78:	learn: 16.8509294	total: 2.2s	remaining: 6.15s
79:	learn: 16.7606789	total: 2.22s	remaining: 6.11s
80:	learn: 16.6451525	total: 2.27s	remaining: 6.13s
81:	learn: 16.5535417	total: 2.29s	remaining: 6.09s
82:	learn: 16.4573626	total: 2.32s	remaining: 6.06s
83:	learn: 16.3815139	total: 2.35s	remaining: 6.03s
84:	learn: 16.2757371	total: 2.37s	remaining: 6s
85:	learn: 16.1610261	total: 2.4s	remaining: 5.97s
86:	learn: 16.0576382	total: 2.42s	remaining: 5.94s
87:	learn: 15.9864012	total: 2.45s	remaining: 5.91s
88:	learn: 15.8595556	total: 2.49s	remaining: 5.91s
89:	learn: 15.7835777	total: 2.52s	remaining: 5.88s
90:	learn: 15.6644813	total: 2.54s	remaining: 5.85s
91:	learn: 15.5703568	total: 2.57s	remaining: 5.81s
92:	learn: 15.5149519	total: 2.6s	remaining: 5.78s
93:	learn: 15.4388698	total: 2.62s	remaining: 5.75s
94:	learn: 15.3748348	total: 2.65s	remaining: 5.71s
95:	learn: 15.2653364	total: 2.67s	remaining: 5.69s
96:	learn: 15.1811031	total: 2.72s	remaining: 5.69s
97:	learn: 15.1048666	total: 2.74s	remaining: 5.66s
98:	learn: 14.9482659	total: 2.77s	remaining: 5.63s
99:	learn: 14.8677279	total: 2.8s	remaining: 5.6s
100:	learn: 14.7725994	total: 2.83s	remaining: 5.57s
101:	learn: 14.7029290	total: 2.85s	remaining: 5.53s
102:	learn: 14.6496411	total: 2.88s	remaining: 5.5s
103:	learn: 14.5777257	total: 2.9s	remaining: 5.47s
104:	learn: 14.5216984	total: 2.95s	remaining: 5.47s
105:	learn: 14.4547829	total: 2.97s	remaining: 5.44s
106:	learn: 14.3711083	total: 3s	remaining: 5.41s
107:	learn: 14.2912634	total: 3.02s	remaining: 5.38s
108:	learn: 14.2095515	total: 3.05s	remaining: 5.34s
109:	learn: 14.1126833	total: 3.08s	remaining: 5.31s
110:	learn: 14.0289467	total: 3.1s	remaining: 5.29s
111:	learn: 13.9815748	total: 3.13s	remaining: 5.25s
112:	learn: 13.8835790	total: 3.17s	remaining: 5.24s
113:	learn: 13.8212214	total: 3.21s	remaining: 5.23s
114:	learn: 13.7640007	total: 3.23s	remaining: 5.2s
115:	learn: 13.7267519	total: 3.26s	remaining: 5.17s
116:	learn: 13.6599610	total: 3.29s	remaining: 5.14s
117:	learn: 13.5793132	total: 3.31s	remaining: 5.11s
118:	learn: 13.4925503	total: 3.34s	remaining: 5.08s
119:	learn: 13.4190945	total: 3.38s	remaining: 5.07s
120:	learn: 13.3466705	total: 3.4s	remaining: 5.04s
121:	learn: 13.2924496	total: 3.44s	remaining: 5.02s
122:	learn: 13.2085622	total: 3.46s	remaining: 4.99s
123:	learn: 13.1162372	total: 3.49s	remaining: 4.95s
124:	learn: 13.0410713	total: 3.52s	remaining: 4.92s
125:	learn: 12.9609613	total: 3.54s	remaining: 4.89s
126:	learn: 12.8983994	total: 3.57s	remaining: 4.86s
127:	learn: 12.8474128	total: 3.61s	remaining: 4.85s
128:	learn: 12.7868331	total: 3.64s	remaining: 4.82s
129:	learn: 12.7309355	total: 3.67s	remaining: 4.8s
130:	learn: 12.6294977	total: 3.7s	remaining: 4.77s
131:	learn: 12.5179424	total: 3.73s	remaining: 4.74s
132:	learn: 12.4808285	total: 3.75s	remaining: 4.71s
133:	learn: 12.4263439	total: 3.78s	remaining: 4.68s
134:	learn: 12.3735545	total: 3.81s	remaining: 4.65s
135:	learn: 12.3307713	total: 3.84s	remaining: 4.63s
136:	learn: 12.2519866	total: 3.87s	remaining: 4.6s
137:	learn: 12.1999454	total: 3.89s	remaining: 4.57s
138:	learn: 12.1615470	total: 3.93s	remaining: 4.55s
139:	learn: 12.1069953	total: 3.95s	remaining: 4.52s
140:	learn: 12.0901368	total: 3.98s	remaining: 4.49s
141:	learn: 12.0479705	total: 4.01s	remaining: 4.46s
142:	learn: 12.0053457	total: 4.04s	remaining: 4.43s
143:	learn: 11.9659408	total: 4.07s	remaining: 4.41s
144:	learn: 11.8554732	total: 4.1s	remaining: 4.38s
145:	learn: 11.8187196	total: 4.13s	remaining: 4.35s
146:	learn: 11.7800675	total: 4.17s	remaining: 4.33s
147:	learn: 11.7386309	total: 4.19s	remaining: 4.3s
148:	learn: 11.6839216	total: 4.22s	remaining: 4.27s
149:	learn: 11.6001114	total: 4.24s	remaining: 4.24s
150:	learn: 11.5294641	total: 4.28s	remaining: 4.22s
151:	learn: 11.4688507	total: 4.3s	remaining: 4.19s
152:	learn: 11.4036255	total: 4.33s	remaining: 4.16s
153:	learn: 11.3539311	total: 4.36s	remaining: 4.13s
154:	learn: 11.2810182	total: 4.39s	remaining: 4.11s
155:	learn: 11.2291051	total: 4.41s	remaining: 4.07s
156:	learn: 11.1684511	total: 4.44s	remaining: 4.04s
157:	learn: 11.0820909	total: 4.47s	remaining: 4.01s
158:	learn: 11.0151771	total: 4.49s	remaining: 3.98s
159:	learn: 10.9854451	total: 4.53s	remaining: 3.96s
160:	learn: 10.9538428	total: 4.56s	remaining: 3.94s
161:	learn: 10.9071380	total: 4.58s	remaining: 3.91s
162:	learn: 10.8506541	total: 4.62s	remaining: 3.88s
163:	learn: 10.7895632	total: 4.65s	remaining: 3.85s
164:	learn: 10.7104166	total: 4.67s	remaining: 3.83s
165:	learn: 10.6713716	total: 4.71s	remaining: 3.8s
166:	learn: 10.6075628	total: 4.74s	remaining: 3.77s
167:	learn: 10.5513657	total: 4.76s	remaining: 3.74s
168:	learn: 10.5308283	total: 4.79s	remaining: 3.71s
169:	learn: 10.5023957	total: 4.81s	remaining: 3.68s
170:	learn: 10.4435313	total: 4.84s	remaining: 3.65s
171:	learn: 10.4072323	total: 4.88s	remaining: 3.63s
172:	learn: 10.3655510	total: 4.91s	remaining: 3.6s
173:	learn: 10.3243121	total: 4.94s	remaining: 3.58s
174:	learn: 10.2931771	total: 4.97s	remaining: 3.55s
175:	learn: 10.2558381	total: 5s	remaining: 3.52s
176:	learn: 10.2092526	total: 5.02s	remaining: 3.49s
177:	learn: 10.1711544	total: 5.05s	remaining: 3.46s
178:	learn: 10.1456963	total: 5.08s	remaining: 3.43s
179:	learn: 10.0920598	total: 5.11s	remaining: 3.41s
180:	learn: 10.0733859	total: 5.14s	remaining: 3.38s
181:	learn: 10.0472528	total: 5.17s	remaining: 3.35s
182:	learn: 10.0011592	total: 5.2s	remaining: 3.33s
183:	learn: 9.9794945	total: 5.23s	remaining: 3.3s
184:	learn: 9.9585906	total: 5.25s	remaining: 3.27s
185:	learn: 9.9399622	total: 5.28s	remaining: 3.24s
186:	learn: 9.9029023	total: 5.31s	remaining: 3.21s
187:	learn: 9.8554746	total: 5.34s	remaining: 3.18s
188:	learn: 9.8238680	total: 5.37s	remaining: 3.16s
189:	learn: 9.7666554	total: 5.4s	remaining: 3.13s
190:	learn: 9.7207381	total: 5.43s	remaining: 3.1s
191:	learn: 9.6569385	total: 5.46s	remaining: 3.07s
192:	learn: 9.6385185	total: 5.48s	remaining: 3.04s
193:	learn: 9.6202811	total: 5.51s	remaining: 3.01s
194:	learn: 9.5971883	total: 5.54s	remaining: 2.98s
195:	learn: 9.5799642	total: 5.57s	remaining: 2.95s
196:	learn: 9.5177746	total: 5.61s	remaining: 2.93s
197:	learn: 9.4886409	total: 5.63s	remaining: 2.9s
198:	learn: 9.4664307	total: 5.66s	remaining: 2.87s
199:	learn: 9.4000552	total: 5.69s	remaining: 2.84s
200:	learn: 9.3423940	total: 5.71s	remaining: 2.81s
201:	learn: 9.2917605	total: 5.74s	remaining: 2.79s
202:	learn: 9.2787639	total: 5.77s	remaining: 2.75s
203:	learn: 9.2348560	total: 5.79s	remaining: 2.73s
204:	learn: 9.2163272	total: 5.83s	remaining: 2.7s
205:	learn: 9.1475795	total: 5.86s	remaining: 2.67s
206:	learn: 9.1152705	total: 5.89s	remaining: 2.65s
207:	learn: 9.0832275	total: 5.92s	remaining: 2.62s
208:	learn: 9.0497331	total: 5.94s	remaining: 2.59s
209:	learn: 8.9884684	total: 5.97s	remaining: 2.56s
210:	learn: 8.9704690	total: 6s	remaining: 2.53s
211:	learn: 8.9489198	total: 6.02s	remaining: 2.5s
212:	learn: 8.9309060	total: 6.06s	remaining: 2.48s
213:	learn: 8.8812512	total: 6.09s	remaining: 2.45s
214:	learn: 8.8596725	total: 6.12s	remaining: 2.42s
215:	learn: 8.8300852	total: 6.15s	remaining: 2.39s
216:	learn: 8.7882493	total: 6.17s	remaining: 2.36s
217:	learn: 8.7527024	total: 6.2s	remaining: 2.33s
218:	learn: 8.7373901	total: 6.22s	remaining: 2.3s
219:	learn: 8.6853084	total: 6.25s	remaining: 2.27s
220:	learn: 8.6700353	total: 6.3s	remaining: 2.25s
221:	learn: 8.6488354	total: 6.32s	remaining: 2.22s
222:	learn: 8.6245087	total: 6.35s	remaining: 2.19s
223:	learn: 8.5803127	total: 6.38s	remaining: 2.16s
224:	learn: 8.5687287	total: 6.41s	remaining: 2.13s
225:	learn: 8.5524159	total: 6.43s	remaining: 2.1s
226:	learn: 8.5363118	total: 6.46s	remaining: 2.08s
227:	learn: 8.5173117	total: 6.49s	remaining: 2.05s
228:	learn: 8.5023907	total: 6.52s	remaining: 2.02s
229:	learn: 8.4758786	total: 6.55s	remaining: 1.99s
230:	learn: 8.4589042	total: 6.58s	remaining: 1.97s
231:	learn: 8.4178675	total: 6.61s	remaining: 1.94s
232:	learn: 8.4015768	total: 6.63s	remaining: 1.91s
233:	learn: 8.3538784	total: 6.66s	remaining: 1.88s
234:	learn: 8.3197095	total: 6.69s	remaining: 1.85s
235:	learn: 8.3012561	total: 6.72s	remaining: 1.82s
236:	learn: 8.2676774	total: 6.75s	remaining: 1.79s
237:	learn: 8.2345097	total: 6.79s	remaining: 1.77s
238:	learn: 8.1918901	total: 6.81s	remaining: 1.74s
239:	learn: 8.1628985	total: 6.84s	remaining: 1.71s
240:	learn: 8.1474180	total: 6.87s	remaining: 1.68s
241:	learn: 8.1325534	total: 6.9s	remaining: 1.65s
242:	learn: 8.1037771	total: 6.93s	remaining: 1.63s
243:	learn: 8.0648232	total: 6.96s	remaining: 1.6s
244:	learn: 8.0292260	total: 6.98s	remaining: 1.57s
245:	learn: 7.9979887	total: 7.02s	remaining: 1.54s
246:	learn: 7.9749906	total: 7.04s	remaining: 1.51s
247:	learn: 7.9536857	total: 7.07s	remaining: 1.48s
248:	learn: 7.9369033	total: 7.11s	remaining: 1.46s
249:	learn: 7.9041314	total: 7.13s	remaining: 1.43s
250:	learn: 7.8700779	total: 7.16s	remaining: 1.4s
251:	learn: 7.8589815	total: 7.19s	remaining: 1.37s
252:	learn: 7.8461408	total: 7.22s	remaining: 1.34s
253:	learn: 7.8203908	total: 7.25s	remaining: 1.31s
254:	learn: 7.8115877	total: 7.28s	remaining: 1.28s
255:	learn: 7.7972851	total: 7.31s	remaining: 1.26s
256:	learn: 7.7592777	total: 7.34s	remaining: 1.23s
257:	learn: 7.7415378	total: 7.37s	remaining: 1.2s
258:	learn: 7.7066130	total: 7.39s	remaining: 1.17s
259:	learn: 7.6688277	total: 7.42s	remaining: 1.14s
260:	learn: 7.6399303	total: 7.44s	remaining: 1.11s
261:	learn: 7.6294434	total: 7.47s	remaining: 1.08s
262:	learn: 7.5974222	total: 7.5s	remaining: 1.05s
263:	learn: 7.5614717	total: 7.54s	remaining: 1.03s
264:	learn: 7.5393196	total: 7.57s	remaining: 1s
265:	learn: 7.5304428	total: 7.6s	remaining: 971ms
266:	learn: 7.5005082	total: 7.63s	remaining: 943ms
267:	learn: 7.4930881	total: 7.65s	remaining: 914ms
268:	learn: 7.4618806	total: 7.68s	remaining: 885ms
269:	learn: 7.4324630	total: 7.71s	remaining: 856ms
270:	learn: 7.4024922	total: 7.74s	remaining: 829ms
271:	learn: 7.3795771	total: 7.77s	remaining: 800ms
272:	learn: 7.3582401	total: 7.8s	remaining: 772ms
273:	learn: 7.3332320	total: 7.83s	remaining: 743ms
274:	learn: 7.3134158	total: 7.85s	remaining: 714ms
275:	learn: 7.3047177	total: 7.88s	remaining: 685ms
276:	learn: 7.2835686	total: 7.91s	remaining: 657ms
277:	learn: 7.2590706	total: 7.94s	remaining: 628ms
278:	learn: 7.2389798	total: 7.98s	remaining: 601ms
279:	learn: 7.2238047	total: 8.01s	remaining: 572ms
280:	learn: 7.2091121	total: 8.03s	remaining: 543ms
281:	learn: 7.1841389	total: 8.06s	remaining: 515ms
282:	learn: 7.1551478	total: 8.09s	remaining: 486ms
283:	learn: 7.1417039	total: 8.12s	remaining: 457ms
284:	learn: 7.1149018	total: 8.14s	remaining: 429ms
285:	learn: 7.0940299	total: 8.17s	remaining: 400ms
286:	learn: 7.0642807	total: 8.21s	remaining: 372ms
287:	learn: 7.0578276	total: 8.24s	remaining: 343ms
288:	learn: 7.0282409	total: 8.27s	remaining: 315ms
289:	learn: 7.0175655	total: 8.29s	remaining: 286ms
290:	learn: 7.0117776	total: 8.32s	remaining: 257ms
291:	learn: 7.0065809	total: 8.34s	remaining: 229ms
292:	learn: 6.9844003	total: 8.37s	remaining: 200ms
293:	learn: 6.9588520	total: 8.4s	remaining: 171ms
294:	learn: 6.9319651	total: 8.44s	remaining: 143ms
295:	learn: 6.9184996	total: 8.47s	remaining: 114ms
296:	learn: 6.9089387	total: 8.5s	remaining: 85.8ms
297:	learn: 6.8834263	total: 8.53s	remaining: 57.2ms
298:	learn: 6.8646725	total: 8.55s	remaining: 28.6ms
299:	learn: 6.8583069	total: 8.58s	remaining: 0us
0:	learn: 46.4920187	total: 26.6ms	remaining: 7.95s
1:	learn: 45.6433575	total: 52.9ms	remaining: 7.88s
2:	learn: 44.9081373	total: 78.8ms	remaining: 7.8s
3:	learn: 44.2007033	total: 111ms	remaining: 8.2s
4:	learn: 43.6170398	total: 138ms	remaining: 8.11s
5:	learn: 42.9324480	total: 165ms	remaining: 8.11s
6:	learn: 42.1711446	total: 206ms	remaining: 8.64s
7:	learn: 41.4804333	total: 233ms	remaining: 8.52s
8:	learn: 40.7785369	total: 261ms	remaining: 8.43s
9:	learn: 40.1652912	total: 289ms	remaining: 8.39s
10:	learn: 39.7932467	total: 315ms	remaining: 8.28s
11:	learn: 39.1996124	total: 348ms	remaining: 8.36s
12:	learn: 38.7184015	total: 376ms	remaining: 8.31s
13:	learn: 38.2978784	total: 409ms	remaining: 8.36s
14:	learn: 37.9153936	total: 436ms	remaining: 8.29s
15:	learn: 37.4724861	total: 463ms	remaining: 8.22s
16:	learn: 36.9897929	total: 489ms	remaining: 8.14s
17:	learn: 36.5310822	total: 515ms	remaining: 8.07s
18:	learn: 35.8591207	total: 542ms	remaining: 8.01s
19:	learn: 35.3264196	total: 568ms	remaining: 7.96s
20:	learn: 34.9815543	total: 603ms	remaining: 8.01s
21:	learn: 34.5242647	total: 639ms	remaining: 8.08s
22:	learn: 34.0838298	total: 669ms	remaining: 8.05s
23:	learn: 33.5132614	total: 696ms	remaining: 8s
24:	learn: 33.1682884	total: 722ms	remaining: 7.95s
25:	learn: 32.6809656	total: 751ms	remaining: 7.91s
26:	learn: 32.2976643	total: 778ms	remaining: 7.87s
27:	learn: 31.8377309	total: 806ms	remaining: 7.83s
28:	learn: 31.4757870	total: 843ms	remaining: 7.88s
29:	learn: 31.1346090	total: 872ms	remaining: 7.85s
30:	learn: 30.8895702	total: 898ms	remaining: 7.79s
31:	learn: 30.4184979	total: 925ms	remaining: 7.75s
32:	learn: 30.1250221	total: 953ms	remaining: 7.71s
33:	learn: 29.7407593	total: 980ms	remaining: 7.66s
34:	learn: 29.4737622	total: 1s	remaining: 7.62s
35:	learn: 29.0366253	total: 1.04s	remaining: 7.6s
36:	learn: 28.5395737	total: 1.08s	remaining: 7.66s
37:	learn: 28.2499036	total: 1.1s	remaining: 7.61s
38:	learn: 28.0302095	total: 1.13s	remaining: 7.57s
39:	learn: 27.7630415	total: 1.16s	remaining: 7.54s
40:	learn: 27.5060679	total: 1.19s	remaining: 7.49s
41:	learn: 27.1860580	total: 1.21s	remaining: 7.45s
42:	learn: 26.9497401	total: 1.24s	remaining: 7.42s
43:	learn: 26.5636809	total: 1.27s	remaining: 7.41s
44:	learn: 26.3527818	total: 1.31s	remaining: 7.41s
45:	learn: 26.0947487	total: 1.31s	remaining: 7.26s
46:	learn: 25.8964846	total: 1.34s	remaining: 7.22s
47:	learn: 25.7357069	total: 1.37s	remaining: 7.18s
48:	learn: 25.4371960	total: 1.39s	remaining: 7.14s
49:	learn: 25.2603655	total: 1.42s	remaining: 7.1s
50:	learn: 25.0858697	total: 1.45s	remaining: 7.08s
51:	learn: 24.8939288	total: 1.49s	remaining: 7.09s
52:	learn: 24.6820962	total: 1.51s	remaining: 7.05s
53:	learn: 24.4191077	total: 1.54s	remaining: 7.02s
54:	learn: 24.2285108	total: 1.57s	remaining: 7.02s
55:	learn: 24.0237019	total: 1.6s	remaining: 6.98s
56:	learn: 23.8723096	total: 1.63s	remaining: 6.95s
57:	learn: 23.6426757	total: 1.66s	remaining: 6.93s
58:	learn: 23.3573717	total: 1.69s	remaining: 6.9s
59:	learn: 23.2066882	total: 1.72s	remaining: 6.87s
60:	learn: 23.0766272	total: 1.74s	remaining: 6.83s
61:	learn: 22.8991718	total: 1.77s	remaining: 6.79s
62:	learn: 22.7894335	total: 1.8s	remaining: 6.79s
63:	learn: 22.6367500	total: 1.83s	remaining: 6.75s
64:	learn: 22.4138205	total: 1.86s	remaining: 6.72s
65:	learn: 22.2650450	total: 1.9s	remaining: 6.73s
66:	learn: 22.1323603	total: 1.93s	remaining: 6.7s
67:	learn: 22.0038344	total: 1.95s	remaining: 6.67s
68:	learn: 21.8540317	total: 1.98s	remaining: 6.64s
69:	learn: 21.6608789	total: 2.01s	remaining: 6.6s
70:	learn: 21.4853082	total: 2.04s	remaining: 6.59s
71:	learn: 21.3715617	total: 2.07s	remaining: 6.56s
72:	learn: 21.2631638	total: 2.1s	remaining: 6.53s
73:	learn: 21.0630270	total: 2.14s	remaining: 6.53s
74:	learn: 20.9295137	total: 2.16s	remaining: 6.49s
75:	learn: 20.7587846	total: 2.19s	remaining: 6.46s
76:	learn: 20.6341259	total: 2.22s	remaining: 6.42s
77:	learn: 20.4852416	total: 2.24s	remaining: 6.39s
78:	learn: 20.3364151	total: 2.28s	remaining: 6.38s
79:	learn: 20.1513667	total: 2.31s	remaining: 6.36s
80:	learn: 20.0363336	total: 2.34s	remaining: 6.33s
81:	learn: 19.8984761	total: 2.37s	remaining: 6.3s
82:	learn: 19.7196215	total: 2.4s	remaining: 6.27s
83:	learn: 19.6326171	total: 2.42s	remaining: 6.24s
84:	learn: 19.5192244	total: 2.45s	remaining: 6.2s
85:	learn: 19.3415480	total: 2.48s	remaining: 6.16s
86:	learn: 19.1977806	total: 2.5s	remaining: 6.13s
87:	learn: 19.0755247	total: 2.54s	remaining: 6.13s
88:	learn: 18.9651152	total: 2.57s	remaining: 6.1s
89:	learn: 18.8207893	total: 2.6s	remaining: 6.06s
90:	learn: 18.6727740	total: 2.62s	remaining: 6.03s
91:	learn: 18.5581545	total: 2.65s	remaining: 5.99s
92:	learn: 18.3991083	total: 2.68s	remaining: 5.96s
93:	learn: 18.2684705	total: 2.7s	remaining: 5.93s
94:	learn: 18.1617452	total: 2.73s	remaining: 5.89s
95:	learn: 18.0459371	total: 2.77s	remaining: 5.88s
96:	learn: 17.9276342	total: 2.8s	remaining: 5.87s
97:	learn: 17.8174578	total: 2.83s	remaining: 5.83s
98:	learn: 17.7243604	total: 2.86s	remaining: 5.8s
99:	learn: 17.5858933	total: 2.88s	remaining: 5.77s
100:	learn: 17.4987099	total: 2.91s	remaining: 5.74s
101:	learn: 17.4074669	total: 2.94s	remaining: 5.7s
102:	learn: 17.3061897	total: 2.96s	remaining: 5.67s
103:	learn: 17.2198386	total: 3s	remaining: 5.66s
104:	learn: 17.1413444	total: 3.03s	remaining: 5.63s
105:	learn: 17.0254611	total: 3.06s	remaining: 5.6s
106:	learn: 16.8532099	total: 3.09s	remaining: 5.57s
107:	learn: 16.7502658	total: 3.11s	remaining: 5.54s
108:	learn: 16.6620525	total: 3.14s	remaining: 5.5s
109:	learn: 16.5150565	total: 3.17s	remaining: 5.47s
110:	learn: 16.3807346	total: 3.19s	remaining: 5.44s
111:	learn: 16.2864111	total: 3.24s	remaining: 5.44s
112:	learn: 16.2093028	total: 3.27s	remaining: 5.41s
113:	learn: 16.1230989	total: 3.29s	remaining: 5.37s
114:	learn: 16.0202012	total: 3.32s	remaining: 5.34s
115:	learn: 15.8709211	total: 3.35s	remaining: 5.31s
116:	learn: 15.8000542	total: 3.37s	remaining: 5.28s
117:	learn: 15.7243590	total: 3.4s	remaining: 5.25s
118:	learn: 15.6838028	total: 3.43s	remaining: 5.22s
119:	learn: 15.5999055	total: 3.46s	remaining: 5.19s
120:	learn: 15.4847533	total: 3.5s	remaining: 5.17s
121:	learn: 15.3935164	total: 3.52s	remaining: 5.14s
122:	learn: 15.3296377	total: 3.55s	remaining: 5.11s
123:	learn: 15.2519510	total: 3.57s	remaining: 5.07s
124:	learn: 15.1230133	total: 3.6s	remaining: 5.04s
125:	learn: 15.0423019	total: 3.63s	remaining: 5.01s
126:	learn: 14.9651901	total: 3.66s	remaining: 4.99s
127:	learn: 14.8934123	total: 3.69s	remaining: 4.96s
128:	learn: 14.7751491	total: 3.73s	remaining: 4.94s
129:	learn: 14.6892078	total: 3.75s	remaining: 4.91s
130:	learn: 14.5672638	total: 3.78s	remaining: 4.87s
131:	learn: 14.4952938	total: 3.81s	remaining: 4.84s
132:	learn: 14.4180105	total: 3.83s	remaining: 4.81s
133:	learn: 14.3259063	total: 3.86s	remaining: 4.79s
134:	learn: 14.2345804	total: 3.89s	remaining: 4.76s
135:	learn: 14.1483357	total: 3.92s	remaining: 4.73s
136:	learn: 14.0736010	total: 3.96s	remaining: 4.71s
137:	learn: 13.9937119	total: 3.98s	remaining: 4.68s
138:	learn: 13.8959716	total: 4.01s	remaining: 4.64s
139:	learn: 13.8412567	total: 4.04s	remaining: 4.61s
140:	learn: 13.7154644	total: 4.06s	remaining: 4.58s
141:	learn: 13.6297829	total: 4.1s	remaining: 4.57s
142:	learn: 13.5739671	total: 4.13s	remaining: 4.54s
143:	learn: 13.4995340	total: 4.16s	remaining: 4.51s
144:	learn: 13.4419790	total: 4.19s	remaining: 4.48s
145:	learn: 13.3537206	total: 4.22s	remaining: 4.46s
146:	learn: 13.2933505	total: 4.25s	remaining: 4.42s
147:	learn: 13.2556145	total: 4.28s	remaining: 4.4s
148:	learn: 13.1895569	total: 4.31s	remaining: 4.37s
149:	learn: 13.0743749	total: 4.34s	remaining: 4.34s
150:	learn: 12.9866329	total: 4.36s	remaining: 4.31s
151:	learn: 12.9104275	total: 4.39s	remaining: 4.27s
152:	learn: 12.8577271	total: 4.42s	remaining: 4.24s
153:	learn: 12.8256294	total: 4.45s	remaining: 4.22s
154:	learn: 12.7696590	total: 4.47s	remaining: 4.18s
155:	learn: 12.7209084	total: 4.5s	remaining: 4.16s
156:	learn: 12.6674046	total: 4.54s	remaining: 4.14s
157:	learn: 12.5958375	total: 4.57s	remaining: 4.11s
158:	learn: 12.5324216	total: 4.59s	remaining: 4.08s
159:	learn: 12.4750343	total: 4.62s	remaining: 4.04s
160:	learn: 12.4460476	total: 4.65s	remaining: 4.01s
161:	learn: 12.3931726	total: 4.68s	remaining: 3.99s
162:	learn: 12.3423679	total: 4.71s	remaining: 3.96s
163:	learn: 12.2404837	total: 4.75s	remaining: 3.94s
164:	learn: 12.1393154	total: 4.77s	remaining: 3.9s
165:	learn: 12.0493899	total: 4.8s	remaining: 3.87s
166:	learn: 11.9978027	total: 4.83s	remaining: 3.84s
167:	learn: 11.9099690	total: 4.85s	remaining: 3.81s
168:	learn: 11.8102813	total: 4.88s	remaining: 3.78s
169:	learn: 11.7900460	total: 4.91s	remaining: 3.76s
170:	learn: 11.6614467	total: 4.94s	remaining: 3.73s
171:	learn: 11.6131631	total: 4.97s	remaining: 3.7s
172:	learn: 11.5629996	total: 5.01s	remaining: 3.68s
173:	learn: 11.5169908	total: 5.04s	remaining: 3.65s
174:	learn: 11.4660439	total: 5.06s	remaining: 3.62s
175:	learn: 11.3919483	total: 5.09s	remaining: 3.59s
176:	learn: 11.3145316	total: 5.12s	remaining: 3.56s
177:	learn: 11.2776601	total: 5.14s	remaining: 3.52s
178:	learn: 11.2271053	total: 5.18s	remaining: 3.5s
179:	learn: 11.1499719	total: 5.21s	remaining: 3.47s
180:	learn: 11.0826417	total: 5.24s	remaining: 3.44s
181:	learn: 11.0345062	total: 5.26s	remaining: 3.41s
182:	learn: 10.9747957	total: 5.29s	remaining: 3.38s
183:	learn: 10.9504835	total: 5.32s	remaining: 3.35s
184:	learn: 10.8920732	total: 5.34s	remaining: 3.32s
185:	learn: 10.8332793	total: 5.37s	remaining: 3.29s
186:	learn: 10.7563237	total: 5.41s	remaining: 3.27s
187:	learn: 10.6822868	total: 5.44s	remaining: 3.24s
188:	learn: 10.6056324	total: 5.47s	remaining: 3.21s
189:	learn: 10.5266557	total: 5.5s	remaining: 3.18s
190:	learn: 10.4930964	total: 5.53s	remaining: 3.15s
191:	learn: 10.4201879	total: 5.55s	remaining: 3.12s
192:	learn: 10.3397888	total: 5.58s	remaining: 3.09s
193:	learn: 10.2865417	total: 5.61s	remaining: 3.06s
194:	learn: 10.2334779	total: 5.64s	remaining: 3.04s
195:	learn: 10.1692880	total: 5.67s	remaining: 3.01s
196:	learn: 10.0710712	total: 5.7s	remaining: 2.98s
197:	learn: 10.0112189	total: 5.72s	remaining: 2.95s
198:	learn: 9.9312531	total: 5.75s	remaining: 2.92s
199:	learn: 9.8522991	total: 5.78s	remaining: 2.89s
200:	learn: 9.8089200	total: 5.8s	remaining: 2.86s
201:	learn: 9.7508922	total: 5.83s	remaining: 2.83s
202:	learn: 9.7146850	total: 5.86s	remaining: 2.8s
203:	learn: 9.6641129	total: 5.9s	remaining: 2.78s
204:	learn: 9.6327075	total: 5.93s	remaining: 2.75s
205:	learn: 9.5932487	total: 5.96s	remaining: 2.72s
206:	learn: 9.5445036	total: 5.99s	remaining: 2.69s
207:	learn: 9.4948826	total: 6.01s	remaining: 2.66s
208:	learn: 9.4535103	total: 6.04s	remaining: 2.63s
209:	learn: 9.4123413	total: 6.07s	remaining: 2.6s
210:	learn: 9.3702571	total: 6.1s	remaining: 2.57s
211:	learn: 9.3376174	total: 6.14s	remaining: 2.55s
212:	learn: 9.2978132	total: 6.16s	remaining: 2.52s
213:	learn: 9.2585597	total: 6.19s	remaining: 2.49s
214:	learn: 9.2229218	total: 6.22s	remaining: 2.46s
215:	learn: 9.1931978	total: 6.24s	remaining: 2.43s
216:	learn: 9.1391962	total: 6.27s	remaining: 2.4s
217:	learn: 9.1177140	total: 6.3s	remaining: 2.37s
218:	learn: 9.0779325	total: 6.33s	remaining: 2.34s
219:	learn: 9.0291866	total: 6.36s	remaining: 2.31s
220:	learn: 9.0063703	total: 6.39s	remaining: 2.28s
221:	learn: 8.9747579	total: 6.42s	remaining: 2.25s
222:	learn: 8.9452822	total: 6.45s	remaining: 2.23s
223:	learn: 8.8954806	total: 6.47s	remaining: 2.2s
224:	learn: 8.8756565	total: 6.5s	remaining: 2.17s
225:	learn: 8.8362862	total: 6.53s	remaining: 2.14s
226:	learn: 8.7994104	total: 6.56s	remaining: 2.11s
227:	learn: 8.7388797	total: 6.6s	remaining: 2.08s
228:	learn: 8.7011029	total: 6.62s	remaining: 2.05s
229:	learn: 8.6617377	total: 6.65s	remaining: 2.02s
230:	learn: 8.6134302	total: 6.67s	remaining: 1.99s
231:	learn: 8.5572452	total: 6.7s	remaining: 1.96s
232:	learn: 8.5450933	total: 6.73s	remaining: 1.93s
233:	learn: 8.5296821	total: 6.75s	remaining: 1.91s
234:	learn: 8.4941428	total: 6.79s	remaining: 1.88s
235:	learn: 8.4682542	total: 6.82s	remaining: 1.85s
236:	learn: 8.4334184	total: 6.85s	remaining: 1.82s
237:	learn: 8.3841236	total: 6.88s	remaining: 1.79s
238:	learn: 8.3495185	total: 6.91s	remaining: 1.76s
239:	learn: 8.3255533	total: 6.93s	remaining: 1.73s
240:	learn: 8.2769513	total: 6.96s	remaining: 1.7s
241:	learn: 8.2392608	total: 6.99s	remaining: 1.67s
242:	learn: 8.2075977	total: 7.02s	remaining: 1.65s
243:	learn: 8.1675762	total: 7.04s	remaining: 1.62s
244:	learn: 8.1426498	total: 7.08s	remaining: 1.59s
245:	learn: 8.1212492	total: 7.11s	remaining: 1.56s
246:	learn: 8.1085819	total: 7.13s	remaining: 1.53s
247:	learn: 8.0970063	total: 7.16s	remaining: 1.5s
248:	learn: 8.0831142	total: 7.19s	remaining: 1.47s
249:	learn: 8.0682674	total: 7.23s	remaining: 1.45s
250:	learn: 8.0255439	total: 7.25s	remaining: 1.42s
251:	learn: 7.9910040	total: 7.28s	remaining: 1.39s
252:	learn: 7.9689255	total: 7.32s	remaining: 1.36s
253:	learn: 7.9472704	total: 7.34s	remaining: 1.33s
254:	learn: 7.9223583	total: 7.37s	remaining: 1.3s
255:	learn: 7.9037436	total: 7.41s	remaining: 1.27s
256:	learn: 7.8699909	total: 7.43s	remaining: 1.24s
257:	learn: 7.8368335	total: 7.46s	remaining: 1.21s
258:	learn: 7.8236324	total: 7.49s	remaining: 1.19s
259:	learn: 7.8036203	total: 7.51s	remaining: 1.16s
260:	learn: 7.7785106	total: 7.54s	remaining: 1.13s
261:	learn: 7.7378238	total: 7.57s	remaining: 1.1s
262:	learn: 7.7076815	total: 7.61s	remaining: 1.07s
263:	learn: 7.6857233	total: 7.64s	remaining: 1.04s
264:	learn: 7.6580317	total: 7.67s	remaining: 1.01s
265:	learn: 7.6172020	total: 7.69s	remaining: 983ms
266:	learn: 7.5867081	total: 7.72s	remaining: 954ms
267:	learn: 7.5596902	total: 7.75s	remaining: 925ms
268:	learn: 7.5299019	total: 7.77s	remaining: 896ms
269:	learn: 7.5009508	total: 7.81s	remaining: 868ms
270:	learn: 7.4926172	total: 7.84s	remaining: 839ms
271:	learn: 7.4658986	total: 7.87s	remaining: 810ms
272:	learn: 7.4522698	total: 7.89s	remaining: 781ms
273:	learn: 7.4302812	total: 7.92s	remaining: 751ms
274:	learn: 7.3941731	total: 7.95s	remaining: 722ms
275:	learn: 7.3799563	total: 7.97s	remaining: 693ms
276:	learn: 7.3656377	total: 8s	remaining: 664ms
277:	learn: 7.3315754	total: 8.04s	remaining: 637ms
278:	learn: 7.3180067	total: 8.07s	remaining: 608ms
279:	learn: 7.2955359	total: 8.1s	remaining: 578ms
280:	learn: 7.2752011	total: 8.13s	remaining: 550ms
281:	learn: 7.2453396	total: 8.15s	remaining: 521ms
282:	learn: 7.2349607	total: 8.18s	remaining: 491ms
283:	learn: 7.2063896	total: 8.21s	remaining: 463ms
284:	learn: 7.1899919	total: 8.24s	remaining: 434ms
285:	learn: 7.1788740	total: 8.28s	remaining: 405ms
286:	learn: 7.1567240	total: 8.3s	remaining: 376ms
287:	learn: 7.1370331	total: 8.33s	remaining: 347ms
288:	learn: 7.1180486	total: 8.36s	remaining: 318ms
289:	learn: 7.0971315	total: 8.38s	remaining: 289ms
290:	learn: 7.0784398	total: 8.41s	remaining: 260ms
291:	learn: 7.0605330	total: 8.44s	remaining: 231ms
292:	learn: 7.0273458	total: 8.47s	remaining: 202ms
293:	learn: 7.0133663	total: 8.5s	remaining: 173ms
294:	learn: 6.9946693	total: 8.53s	remaining: 145ms
295:	learn: 6.9685770	total: 8.56s	remaining: 116ms
296:	learn: 6.9527470	total: 8.59s	remaining: 86.8ms
297:	learn: 6.9305615	total: 8.62s	remaining: 57.8ms
298:	learn: 6.9039647	total: 8.64s	remaining: 28.9ms
299:	learn: 6.8927522	total: 8.67s	remaining: 0us
0:	learn: 46.2361874	total: 26.6ms	remaining: 7.97s
1:	learn: 45.3982106	total: 52.7ms	remaining: 7.85s
2:	learn: 44.6777488	total: 86.8ms	remaining: 8.6s
3:	learn: 43.7409965	total: 122ms	remaining: 9.06s
4:	learn: 43.2513213	total: 153ms	remaining: 9.01s
5:	learn: 42.4947195	total: 180ms	remaining: 8.82s
6:	learn: 41.9697708	total: 207ms	remaining: 8.67s
7:	learn: 41.2445289	total: 233ms	remaining: 8.49s
8:	learn: 40.5360490	total: 260ms	remaining: 8.39s
9:	learn: 39.9370297	total: 286ms	remaining: 8.29s
10:	learn: 39.1060281	total: 322ms	remaining: 8.46s
11:	learn: 38.6733181	total: 355ms	remaining: 8.52s
12:	learn: 38.3760896	total: 383ms	remaining: 8.45s
13:	learn: 37.9842684	total: 410ms	remaining: 8.37s
14:	learn: 37.4860092	total: 437ms	remaining: 8.3s
15:	learn: 36.9450018	total: 463ms	remaining: 8.22s
16:	learn: 36.5144396	total: 490ms	remaining: 8.16s
17:	learn: 36.0168729	total: 517ms	remaining: 8.1s
18:	learn: 35.4748970	total: 546ms	remaining: 8.07s
19:	learn: 35.0390482	total: 588ms	remaining: 8.23s
20:	learn: 34.6776156	total: 615ms	remaining: 8.17s
21:	learn: 34.3978384	total: 643ms	remaining: 8.12s
22:	learn: 34.0289970	total: 670ms	remaining: 8.06s
23:	learn: 33.6138883	total: 696ms	remaining: 8.01s
24:	learn: 33.2279106	total: 723ms	remaining: 7.95s
25:	learn: 32.8252468	total: 751ms	remaining: 7.92s
26:	learn: 32.4666371	total: 784ms	remaining: 7.92s
27:	learn: 32.1644689	total: 818ms	remaining: 7.94s
28:	learn: 31.6892888	total: 845ms	remaining: 7.89s
29:	learn: 31.4013853	total: 872ms	remaining: 7.85s
30:	learn: 31.0918470	total: 899ms	remaining: 7.8s
31:	learn: 30.7382925	total: 927ms	remaining: 7.76s
32:	learn: 30.3837621	total: 954ms	remaining: 7.72s
33:	learn: 29.9818772	total: 993ms	remaining: 7.76s
34:	learn: 29.7173064	total: 1.02s	remaining: 7.72s
35:	learn: 29.2164083	total: 1.05s	remaining: 7.74s
36:	learn: 28.9131554	total: 1.08s	remaining: 7.7s
37:	learn: 28.5257233	total: 1.11s	remaining: 7.65s
38:	learn: 28.2965944	total: 1.14s	remaining: 7.61s
39:	learn: 28.0804622	total: 1.17s	remaining: 7.58s
40:	learn: 27.8304426	total: 1.2s	remaining: 7.57s
41:	learn: 27.4453684	total: 1.23s	remaining: 7.53s
42:	learn: 27.3017075	total: 1.25s	remaining: 7.48s
43:	learn: 27.0701323	total: 1.28s	remaining: 7.43s
44:	learn: 26.8649692	total: 1.31s	remaining: 7.43s
45:	learn: 26.6301705	total: 1.32s	remaining: 7.28s
46:	learn: 26.4341772	total: 1.35s	remaining: 7.25s
47:	learn: 26.2192154	total: 1.37s	remaining: 7.21s
48:	learn: 25.9631071	total: 1.4s	remaining: 7.18s
49:	learn: 25.5792340	total: 1.44s	remaining: 7.2s
50:	learn: 25.3916810	total: 1.47s	remaining: 7.16s
51:	learn: 25.2370365	total: 1.49s	remaining: 7.13s
52:	learn: 24.9965355	total: 1.52s	remaining: 7.1s
53:	learn: 24.8178278	total: 1.56s	remaining: 7.09s
54:	learn: 24.6443095	total: 1.58s	remaining: 7.06s
55:	learn: 24.4870683	total: 1.61s	remaining: 7.02s
56:	learn: 24.2978173	total: 1.64s	remaining: 6.99s
57:	learn: 24.1340740	total: 1.67s	remaining: 6.97s
58:	learn: 23.8586489	total: 1.7s	remaining: 6.94s
59:	learn: 23.6035925	total: 1.73s	remaining: 6.9s
60:	learn: 23.4530593	total: 1.75s	remaining: 6.86s
61:	learn: 23.2783421	total: 1.78s	remaining: 6.85s
62:	learn: 23.1030553	total: 1.81s	remaining: 6.82s
63:	learn: 22.9659704	total: 1.84s	remaining: 6.79s
64:	learn: 22.8283407	total: 1.88s	remaining: 6.79s
65:	learn: 22.7134955	total: 1.9s	remaining: 6.75s
66:	learn: 22.5782888	total: 1.93s	remaining: 6.72s
67:	learn: 22.4557438	total: 1.96s	remaining: 6.69s
68:	learn: 22.3316398	total: 1.99s	remaining: 6.65s
69:	learn: 22.1161650	total: 2.01s	remaining: 6.61s
70:	learn: 21.9806112	total: 2.05s	remaining: 6.61s
71:	learn: 21.8705364	total: 2.08s	remaining: 6.59s
72:	learn: 21.7450899	total: 2.11s	remaining: 6.56s
73:	learn: 21.5593132	total: 2.14s	remaining: 6.52s
74:	learn: 21.4206323	total: 2.16s	remaining: 6.49s
75:	learn: 21.2904965	total: 2.19s	remaining: 6.45s
76:	learn: 21.1898852	total: 2.21s	remaining: 6.42s
77:	learn: 21.0582226	total: 2.24s	remaining: 6.38s
78:	learn: 20.9414763	total: 2.28s	remaining: 6.37s
79:	learn: 20.7847655	total: 2.31s	remaining: 6.36s
80:	learn: 20.6413634	total: 2.34s	remaining: 6.33s
81:	learn: 20.5314598	total: 2.37s	remaining: 6.29s
82:	learn: 20.3298485	total: 2.4s	remaining: 6.26s
83:	learn: 20.2197693	total: 2.42s	remaining: 6.23s
84:	learn: 20.1021239	total: 2.45s	remaining: 6.2s
85:	learn: 20.0001932	total: 2.48s	remaining: 6.16s
86:	learn: 19.8813166	total: 2.5s	remaining: 6.13s
87:	learn: 19.7335638	total: 2.54s	remaining: 6.13s
88:	learn: 19.6116984	total: 2.57s	remaining: 6.1s
89:	learn: 19.4739468	total: 2.6s	remaining: 6.07s
90:	learn: 19.3561691	total: 2.63s	remaining: 6.03s
91:	learn: 19.2462168	total: 2.65s	remaining: 6s
92:	learn: 19.1423750	total: 2.68s	remaining: 5.97s
93:	learn: 19.0313643	total: 2.71s	remaining: 5.93s
94:	learn: 18.9323468	total: 2.74s	remaining: 5.91s
95:	learn: 18.8504682	total: 2.78s	remaining: 5.91s
96:	learn: 18.7831778	total: 2.81s	remaining: 5.87s
97:	learn: 18.6811943	total: 2.83s	remaining: 5.84s
98:	learn: 18.5908821	total: 2.86s	remaining: 5.81s
99:	learn: 18.4714725	total: 2.89s	remaining: 5.78s
100:	learn: 18.4186226	total: 2.91s	remaining: 5.74s
101:	learn: 18.3174294	total: 2.94s	remaining: 5.71s
102:	learn: 18.2499823	total: 2.97s	remaining: 5.68s
103:	learn: 18.1797568	total: 3.01s	remaining: 5.67s
104:	learn: 18.0633880	total: 3.04s	remaining: 5.64s
105:	learn: 17.9230666	total: 3.06s	remaining: 5.61s
106:	learn: 17.8255078	total: 3.09s	remaining: 5.57s
107:	learn: 17.7301999	total: 3.12s	remaining: 5.54s
108:	learn: 17.6643624	total: 3.15s	remaining: 5.51s
109:	learn: 17.5888284	total: 3.17s	remaining: 5.48s
110:	learn: 17.4829166	total: 3.2s	remaining: 5.45s
111:	learn: 17.3884998	total: 3.23s	remaining: 5.42s
112:	learn: 17.3190040	total: 3.27s	remaining: 5.41s
113:	learn: 17.2327089	total: 3.29s	remaining: 5.38s
114:	learn: 17.1647683	total: 3.32s	remaining: 5.34s
115:	learn: 17.0566172	total: 3.35s	remaining: 5.31s
116:	learn: 16.9678905	total: 3.38s	remaining: 5.28s
117:	learn: 16.8708649	total: 3.4s	remaining: 5.25s
118:	learn: 16.8044407	total: 3.43s	remaining: 5.22s
119:	learn: 16.7826952	total: 3.46s	remaining: 5.2s
120:	learn: 16.6904252	total: 3.5s	remaining: 5.18s
121:	learn: 16.6389060	total: 3.53s	remaining: 5.15s
122:	learn: 16.6175863	total: 3.56s	remaining: 5.12s
123:	learn: 16.5491464	total: 3.58s	remaining: 5.08s
124:	learn: 16.4907928	total: 3.61s	remaining: 5.05s
125:	learn: 16.4498651	total: 3.64s	remaining: 5.02s
126:	learn: 16.3775502	total: 3.67s	remaining: 5s
127:	learn: 16.3075622	total: 3.7s	remaining: 4.98s
128:	learn: 16.2141203	total: 3.74s	remaining: 4.96s
129:	learn: 16.1287920	total: 3.77s	remaining: 4.93s
130:	learn: 15.9776702	total: 3.79s	remaining: 4.9s
131:	learn: 15.8957114	total: 3.82s	remaining: 4.86s
132:	learn: 15.8623913	total: 3.85s	remaining: 4.83s
133:	learn: 15.7410770	total: 3.88s	remaining: 4.81s
134:	learn: 15.6800520	total: 3.91s	remaining: 4.78s
135:	learn: 15.6327751	total: 3.94s	remaining: 4.75s
136:	learn: 15.5499724	total: 3.96s	remaining: 4.72s
137:	learn: 15.4431979	total: 4s	remaining: 4.69s
138:	learn: 15.3542910	total: 4.03s	remaining: 4.66s
139:	learn: 15.3024922	total: 4.05s	remaining: 4.63s
140:	learn: 15.2729651	total: 4.08s	remaining: 4.6s
141:	learn: 15.1606911	total: 4.12s	remaining: 4.59s
142:	learn: 15.0979047	total: 4.15s	remaining: 4.56s
143:	learn: 15.0141377	total: 4.18s	remaining: 4.53s
144:	learn: 14.9689028	total: 4.21s	remaining: 4.5s
145:	learn: 14.8925843	total: 4.24s	remaining: 4.47s
146:	learn: 14.8587722	total: 4.26s	remaining: 4.44s
147:	learn: 14.8360363	total: 4.29s	remaining: 4.41s
148:	learn: 14.7676016	total: 4.33s	remaining: 4.38s
149:	learn: 14.6736810	total: 4.36s	remaining: 4.36s
150:	learn: 14.6261132	total: 4.38s	remaining: 4.32s
151:	learn: 14.5723176	total: 4.41s	remaining: 4.29s
152:	learn: 14.5100088	total: 4.43s	remaining: 4.26s
153:	learn: 14.4025427	total: 4.46s	remaining: 4.23s
154:	learn: 14.3282038	total: 4.49s	remaining: 4.2s
155:	learn: 14.2672601	total: 4.52s	remaining: 4.17s
156:	learn: 14.1558952	total: 4.56s	remaining: 4.15s
157:	learn: 14.0328502	total: 4.59s	remaining: 4.12s
158:	learn: 13.9769510	total: 4.62s	remaining: 4.09s
159:	learn: 13.9259386	total: 4.64s	remaining: 4.06s
160:	learn: 13.8712208	total: 4.67s	remaining: 4.03s
161:	learn: 13.8553696	total: 4.7s	remaining: 4s
162:	learn: 13.7500608	total: 4.73s	remaining: 3.98s
163:	learn: 13.7258160	total: 4.76s	remaining: 3.95s
164:	learn: 13.6125019	total: 4.79s	remaining: 3.92s
165:	learn: 13.5681577	total: 4.82s	remaining: 3.89s
166:	learn: 13.5101392	total: 4.84s	remaining: 3.86s
167:	learn: 13.4944170	total: 4.87s	remaining: 3.83s
168:	learn: 13.4758510	total: 4.89s	remaining: 3.79s
169:	learn: 13.4513818	total: 4.92s	remaining: 3.76s
170:	learn: 13.3378793	total: 4.96s	remaining: 3.74s
171:	learn: 13.2934120	total: 4.98s	remaining: 3.71s
172:	learn: 13.2442661	total: 5.02s	remaining: 3.69s
173:	learn: 13.1852300	total: 5.05s	remaining: 3.65s
174:	learn: 13.0772632	total: 5.08s	remaining: 3.63s
175:	learn: 13.0402354	total: 5.1s	remaining: 3.6s
176:	learn: 13.0047433	total: 5.13s	remaining: 3.56s
177:	learn: 12.9303834	total: 5.16s	remaining: 3.54s
178:	learn: 12.8598436	total: 5.18s	remaining: 3.5s
179:	learn: 12.7990665	total: 5.23s	remaining: 3.48s
180:	learn: 12.7095636	total: 5.25s	remaining: 3.45s
181:	learn: 12.6340644	total: 5.28s	remaining: 3.42s
182:	learn: 12.5621624	total: 5.3s	remaining: 3.39s
183:	learn: 12.5354249	total: 5.33s	remaining: 3.36s
184:	learn: 12.4829336	total: 5.36s	remaining: 3.33s
185:	learn: 12.4529388	total: 5.38s	remaining: 3.3s
186:	learn: 12.3788317	total: 5.42s	remaining: 3.27s
187:	learn: 12.3037316	total: 5.46s	remaining: 3.25s
188:	learn: 12.1983493	total: 5.49s	remaining: 3.22s
189:	learn: 12.1711675	total: 5.51s	remaining: 3.19s
190:	learn: 12.1217733	total: 5.54s	remaining: 3.16s
191:	learn: 12.0832600	total: 5.57s	remaining: 3.13s
192:	learn: 12.0127028	total: 5.59s	remaining: 3.1s
193:	learn: 11.9255354	total: 5.63s	remaining: 3.08s
194:	learn: 11.8908213	total: 5.66s	remaining: 3.04s
195:	learn: 11.8443328	total: 5.69s	remaining: 3.02s
196:	learn: 11.8103191	total: 5.72s	remaining: 2.99s
197:	learn: 11.7696031	total: 5.74s	remaining: 2.96s
198:	learn: 11.7200811	total: 5.77s	remaining: 2.93s
199:	learn: 11.6551205	total: 5.8s	remaining: 2.9s
200:	learn: 11.6238265	total: 5.82s	remaining: 2.87s
201:	learn: 11.5225634	total: 5.86s	remaining: 2.84s
202:	learn: 11.4468078	total: 5.88s	remaining: 2.81s
203:	learn: 11.4143074	total: 5.91s	remaining: 2.78s
204:	learn: 11.3831537	total: 5.95s	remaining: 2.76s
205:	learn: 11.3559117	total: 5.98s	remaining: 2.73s
206:	learn: 11.3453635	total: 6s	remaining: 2.7s
207:	learn: 11.3023110	total: 6.03s	remaining: 2.67s
208:	learn: 11.2751825	total: 6.06s	remaining: 2.64s
209:	learn: 11.2454377	total: 6.09s	remaining: 2.61s
210:	learn: 11.2300814	total: 6.12s	remaining: 2.58s
211:	learn: 11.1739504	total: 6.14s	remaining: 2.55s
212:	learn: 11.1388920	total: 6.18s	remaining: 2.52s
213:	learn: 11.0933003	total: 6.21s	remaining: 2.49s
214:	learn: 11.0336421	total: 6.23s	remaining: 2.46s
215:	learn: 11.0041887	total: 6.26s	remaining: 2.43s
216:	learn: 10.9756683	total: 6.3s	remaining: 2.41s
217:	learn: 10.9622324	total: 6.33s	remaining: 2.38s
218:	learn: 10.9400379	total: 6.35s	remaining: 2.35s
219:	learn: 10.9122171	total: 6.38s	remaining: 2.32s
220:	learn: 10.8702127	total: 6.41s	remaining: 2.29s
221:	learn: 10.8384354	total: 6.44s	remaining: 2.26s
222:	learn: 10.8064597	total: 6.47s	remaining: 2.23s
223:	learn: 10.7753840	total: 6.5s	remaining: 2.21s
224:	learn: 10.7500544	total: 6.53s	remaining: 2.18s
225:	learn: 10.7000854	total: 6.56s	remaining: 2.15s
226:	learn: 10.6788968	total: 6.58s	remaining: 2.12s
227:	learn: 10.6541308	total: 6.61s	remaining: 2.09s
228:	learn: 10.6163808	total: 6.64s	remaining: 2.06s
229:	learn: 10.5664491	total: 6.67s	remaining: 2.03s
230:	learn: 10.5384259	total: 6.7s	remaining: 2s
231:	learn: 10.5168722	total: 6.74s	remaining: 1.97s
232:	learn: 10.4880672	total: 6.76s	remaining: 1.94s
233:	learn: 10.4528880	total: 6.79s	remaining: 1.92s
234:	learn: 10.4358848	total: 6.82s	remaining: 1.89s
235:	learn: 10.4043764	total: 6.84s	remaining: 1.85s
236:	learn: 10.3835177	total: 6.87s	remaining: 1.83s
237:	learn: 10.3564621	total: 6.91s	remaining: 1.8s
238:	learn: 10.3300698	total: 6.94s	remaining: 1.77s
239:	learn: 10.3072404	total: 6.96s	remaining: 1.74s
240:	learn: 10.2885220	total: 6.99s	remaining: 1.71s
241:	learn: 10.2801250	total: 7.02s	remaining: 1.68s
242:	learn: 10.2598176	total: 7.05s	remaining: 1.65s
243:	learn: 10.2300900	total: 7.07s	remaining: 1.62s
244:	learn: 10.2013001	total: 7.1s	remaining: 1.59s
245:	learn: 10.1581217	total: 7.13s	remaining: 1.56s
246:	learn: 10.1499441	total: 7.17s	remaining: 1.54s
247:	learn: 10.1216778	total: 7.2s	remaining: 1.51s
248:	learn: 10.0802136	total: 7.23s	remaining: 1.48s
249:	learn: 10.0644908	total: 7.25s	remaining: 1.45s
250:	learn: 10.0271888	total: 7.28s	remaining: 1.42s
251:	learn: 9.9585656	total: 7.31s	remaining: 1.39s
252:	learn: 9.9156424	total: 7.34s	remaining: 1.36s
253:	learn: 9.9015845	total: 7.37s	remaining: 1.33s
254:	learn: 9.8802631	total: 7.41s	remaining: 1.31s
255:	learn: 9.8637488	total: 7.43s	remaining: 1.28s
256:	learn: 9.8431359	total: 7.46s	remaining: 1.25s
257:	learn: 9.8100809	total: 7.49s	remaining: 1.22s
258:	learn: 9.7856290	total: 7.51s	remaining: 1.19s
259:	learn: 9.7684665	total: 7.54s	remaining: 1.16s
260:	learn: 9.7491274	total: 7.57s	remaining: 1.13s
261:	learn: 9.7290952	total: 7.6s	remaining: 1.1s
262:	learn: 9.6988988	total: 7.64s	remaining: 1.07s
263:	learn: 9.6731295	total: 7.67s	remaining: 1.05s
264:	learn: 9.6511532	total: 7.7s	remaining: 1.02s
265:	learn: 9.6215242	total: 7.73s	remaining: 988ms
266:	learn: 9.6028004	total: 7.75s	remaining: 958ms
267:	learn: 9.5849636	total: 7.78s	remaining: 929ms
268:	learn: 9.5537664	total: 7.81s	remaining: 900ms
269:	learn: 9.5330605	total: 7.84s	remaining: 871ms
270:	learn: 9.5181912	total: 7.87s	remaining: 842ms
271:	learn: 9.5123758	total: 7.9s	remaining: 814ms
272:	learn: 9.4832216	total: 7.93s	remaining: 784ms
273:	learn: 9.4638778	total: 7.96s	remaining: 755ms
274:	learn: 9.4456890	total: 7.98s	remaining: 726ms
275:	learn: 9.4163159	total: 8.01s	remaining: 697ms
276:	learn: 9.3823442	total: 8.04s	remaining: 668ms
277:	learn: 9.3549677	total: 8.08s	remaining: 639ms
278:	learn: 9.3386790	total: 8.11s	remaining: 610ms
279:	learn: 9.3273180	total: 8.14s	remaining: 582ms
280:	learn: 9.2861700	total: 8.17s	remaining: 552ms
281:	learn: 9.2564421	total: 8.2s	remaining: 523ms
282:	learn: 9.2362960	total: 8.23s	remaining: 494ms
283:	learn: 9.2213087	total: 8.26s	remaining: 465ms
284:	learn: 9.2137366	total: 8.29s	remaining: 436ms
285:	learn: 9.2036812	total: 8.31s	remaining: 407ms
286:	learn: 9.1880212	total: 8.34s	remaining: 378ms
287:	learn: 9.1753952	total: 8.37s	remaining: 349ms
288:	learn: 9.1502121	total: 8.4s	remaining: 320ms
289:	learn: 9.1346178	total: 8.42s	remaining: 291ms
290:	learn: 9.1221911	total: 8.45s	remaining: 261ms
291:	learn: 9.0950561	total: 8.49s	remaining: 233ms
292:	learn: 9.0742575	total: 8.52s	remaining: 203ms
293:	learn: 9.0466144	total: 8.54s	remaining: 174ms
294:	learn: 8.9886202	total: 8.57s	remaining: 145ms
295:	learn: 8.9467069	total: 8.6s	remaining: 116ms
296:	learn: 8.9265029	total: 8.63s	remaining: 87.2ms
297:	learn: 8.8995921	total: 8.66s	remaining: 58.1ms
298:	learn: 8.8813384	total: 8.69s	remaining: 29ms
299:	learn: 8.8736256	total: 8.72s	remaining: 0us
0:	learn: 46.8188846	total: 27.5ms	remaining: 8.22s
1:	learn: 45.9726402	total: 53.5ms	remaining: 7.97s
2:	learn: 45.2144460	total: 80.9ms	remaining: 8.01s
3:	learn: 44.2563351	total: 116ms	remaining: 8.59s
4:	learn: 43.5408994	total: 151ms	remaining: 8.91s
5:	learn: 42.8364810	total: 178ms	remaining: 8.7s
6:	learn: 42.0153804	total: 205ms	remaining: 8.59s
7:	learn: 41.5473671	total: 232ms	remaining: 8.48s
8:	learn: 40.7744756	total: 260ms	remaining: 8.4s
9:	learn: 40.1702554	total: 288ms	remaining: 8.34s
10:	learn: 39.4636842	total: 320ms	remaining: 8.42s
11:	learn: 38.8831049	total: 334ms	remaining: 8.03s
12:	learn: 38.5197723	total: 360ms	remaining: 7.95s
13:	learn: 38.1990585	total: 394ms	remaining: 8.05s
14:	learn: 37.6657989	total: 421ms	remaining: 7.99s
15:	learn: 37.2969732	total: 448ms	remaining: 7.95s
16:	learn: 36.8221350	total: 475ms	remaining: 7.91s
17:	learn: 36.2123369	total: 502ms	remaining: 7.87s
18:	learn: 35.8755271	total: 531ms	remaining: 7.85s
19:	learn: 35.4739707	total: 570ms	remaining: 7.97s
20:	learn: 35.0012472	total: 597ms	remaining: 7.93s
21:	learn: 34.6477631	total: 625ms	remaining: 7.89s
22:	learn: 34.2247055	total: 659ms	remaining: 7.93s
23:	learn: 33.8047150	total: 687ms	remaining: 7.9s
24:	learn: 33.3972078	total: 714ms	remaining: 7.85s
25:	learn: 32.8076440	total: 744ms	remaining: 7.84s
26:	learn: 32.4957574	total: 776ms	remaining: 7.85s
27:	learn: 32.1823910	total: 803ms	remaining: 7.8s
28:	learn: 31.8761156	total: 829ms	remaining: 7.75s
29:	learn: 31.6118984	total: 856ms	remaining: 7.7s
30:	learn: 31.2041248	total: 890ms	remaining: 7.72s
31:	learn: 30.9798718	total: 916ms	remaining: 7.67s
32:	learn: 30.6632137	total: 943ms	remaining: 7.63s
33:	learn: 30.3572185	total: 970ms	remaining: 7.59s
34:	learn: 30.0045459	total: 1s	remaining: 7.61s
35:	learn: 29.7559980	total: 1.03s	remaining: 7.58s
36:	learn: 29.3862349	total: 1.06s	remaining: 7.54s
37:	learn: 29.1066177	total: 1.09s	remaining: 7.51s
38:	learn: 28.8253904	total: 1.12s	remaining: 7.53s
39:	learn: 28.4917320	total: 1.15s	remaining: 7.48s
40:	learn: 28.2730169	total: 1.18s	remaining: 7.44s
41:	learn: 28.0652338	total: 1.21s	remaining: 7.42s
42:	learn: 27.8025307	total: 1.24s	remaining: 7.41s
43:	learn: 27.5627117	total: 1.27s	remaining: 7.37s
44:	learn: 27.3217632	total: 1.29s	remaining: 7.33s
45:	learn: 27.0112958	total: 1.32s	remaining: 7.29s
46:	learn: 26.8300808	total: 1.34s	remaining: 7.24s
47:	learn: 26.5816136	total: 1.38s	remaining: 7.25s
48:	learn: 26.3838749	total: 1.41s	remaining: 7.21s
49:	learn: 26.2191374	total: 1.43s	remaining: 7.17s
50:	learn: 26.0298048	total: 1.47s	remaining: 7.2s
51:	learn: 25.8685966	total: 1.5s	remaining: 7.16s
52:	learn: 25.5853885	total: 1.53s	remaining: 7.12s
53:	learn: 25.2325006	total: 1.55s	remaining: 7.09s
54:	learn: 25.0294895	total: 1.58s	remaining: 7.05s
55:	learn: 24.8123194	total: 1.61s	remaining: 7.04s
56:	learn: 24.6175769	total: 1.64s	remaining: 7s
57:	learn: 24.4799104	total: 1.67s	remaining: 6.97s
58:	learn: 24.2874293	total: 1.7s	remaining: 6.96s
59:	learn: 24.0996038	total: 1.73s	remaining: 6.92s
60:	learn: 23.8568310	total: 1.75s	remaining: 6.88s
61:	learn: 23.6508912	total: 1.78s	remaining: 6.84s
62:	learn: 23.4201097	total: 1.81s	remaining: 6.8s
63:	learn: 23.1941561	total: 1.83s	remaining: 6.77s
64:	learn: 23.0619226	total: 1.87s	remaining: 6.76s
65:	learn: 22.9049921	total: 1.91s	remaining: 6.76s
66:	learn: 22.7833057	total: 1.93s	remaining: 6.73s
67:	learn: 22.6428922	total: 1.96s	remaining: 6.69s
68:	learn: 22.4738494	total: 1.99s	remaining: 6.66s
69:	learn: 22.3126837	total: 2.01s	remaining: 6.62s
70:	learn: 22.1934569	total: 2.04s	remaining: 6.58s
71:	learn: 21.9921513	total: 2.07s	remaining: 6.55s
72:	learn: 21.7966100	total: 2.11s	remaining: 6.55s
73:	learn: 21.6703669	total: 2.14s	remaining: 6.53s
74:	learn: 21.5517108	total: 2.16s	remaining: 6.49s
75:	learn: 21.3795499	total: 2.19s	remaining: 6.45s
76:	learn: 21.2321877	total: 2.21s	remaining: 6.42s
77:	learn: 21.0921581	total: 2.24s	remaining: 6.38s
78:	learn: 20.9204877	total: 2.27s	remaining: 6.35s
79:	learn: 20.7078986	total: 2.3s	remaining: 6.33s
80:	learn: 20.6069210	total: 2.34s	remaining: 6.32s
81:	learn: 20.3718639	total: 2.37s	remaining: 6.29s
82:	learn: 20.2660046	total: 2.39s	remaining: 6.26s
83:	learn: 20.1453571	total: 2.42s	remaining: 6.22s
84:	learn: 20.0303912	total: 2.45s	remaining: 6.19s
85:	learn: 19.9530417	total: 2.47s	remaining: 6.16s
86:	learn: 19.8719239	total: 2.5s	remaining: 6.13s
87:	learn: 19.8051193	total: 2.54s	remaining: 6.11s
88:	learn: 19.6390791	total: 2.56s	remaining: 6.07s
89:	learn: 19.5163125	total: 2.56s	remaining: 5.99s
90:	learn: 19.3820098	total: 2.6s	remaining: 5.97s
91:	learn: 19.2634584	total: 2.63s	remaining: 5.94s
92:	learn: 19.1877570	total: 2.65s	remaining: 5.9s
93:	learn: 19.1136222	total: 2.68s	remaining: 5.87s
94:	learn: 19.0378846	total: 2.71s	remaining: 5.84s
95:	learn: 18.9699092	total: 2.74s	remaining: 5.83s
96:	learn: 18.8750815	total: 2.77s	remaining: 5.79s
97:	learn: 18.7851544	total: 2.8s	remaining: 5.76s
98:	learn: 18.6886359	total: 2.83s	remaining: 5.75s
99:	learn: 18.5967562	total: 2.86s	remaining: 5.72s
100:	learn: 18.5134464	total: 2.88s	remaining: 5.68s
101:	learn: 18.4449133	total: 2.91s	remaining: 5.65s
102:	learn: 18.3604967	total: 2.94s	remaining: 5.63s
103:	learn: 18.2256969	total: 2.97s	remaining: 5.6s
104:	learn: 18.1523158	total: 3s	remaining: 5.57s
105:	learn: 18.0374485	total: 3.02s	remaining: 5.54s
106:	learn: 17.9731649	total: 3.05s	remaining: 5.5s
107:	learn: 17.9251416	total: 3.08s	remaining: 5.48s
108:	learn: 17.8617656	total: 3.11s	remaining: 5.45s
109:	learn: 17.7727167	total: 3.14s	remaining: 5.42s
110:	learn: 17.6826822	total: 3.17s	remaining: 5.41s
111:	learn: 17.5769208	total: 3.2s	remaining: 5.38s
112:	learn: 17.4884222	total: 3.23s	remaining: 5.35s
113:	learn: 17.3765888	total: 3.26s	remaining: 5.32s
114:	learn: 17.3037030	total: 3.29s	remaining: 5.29s
115:	learn: 17.2153950	total: 3.32s	remaining: 5.27s
116:	learn: 17.1490540	total: 3.35s	remaining: 5.24s
117:	learn: 17.0634815	total: 3.38s	remaining: 5.21s
118:	learn: 16.9513537	total: 3.41s	remaining: 5.19s
119:	learn: 16.8224657	total: 3.44s	remaining: 5.15s
120:	learn: 16.7342682	total: 3.46s	remaining: 5.12s
121:	learn: 16.6438712	total: 3.49s	remaining: 5.09s
122:	learn: 16.5473010	total: 3.51s	remaining: 5.06s
123:	learn: 16.4734305	total: 3.55s	remaining: 5.04s
124:	learn: 16.3442257	total: 3.58s	remaining: 5.01s
125:	learn: 16.2501040	total: 3.61s	remaining: 4.99s
126:	learn: 16.1413869	total: 3.64s	remaining: 4.96s
127:	learn: 16.0650386	total: 3.67s	remaining: 4.93s
128:	learn: 15.9654002	total: 3.7s	remaining: 4.9s
129:	learn: 15.9016632	total: 3.72s	remaining: 4.87s
130:	learn: 15.8386094	total: 3.75s	remaining: 4.84s
131:	learn: 15.7695128	total: 3.78s	remaining: 4.81s
132:	learn: 15.6863810	total: 3.82s	remaining: 4.79s
133:	learn: 15.6014453	total: 3.85s	remaining: 4.76s
134:	learn: 15.5533660	total: 3.87s	remaining: 4.73s
135:	learn: 15.4234281	total: 3.9s	remaining: 4.7s
136:	learn: 15.3971004	total: 3.92s	remaining: 4.67s
137:	learn: 15.3398975	total: 3.95s	remaining: 4.64s
138:	learn: 15.2689760	total: 3.98s	remaining: 4.61s
139:	learn: 15.1651925	total: 4s	remaining: 4.58s
140:	learn: 15.1125683	total: 4.04s	remaining: 4.56s
141:	learn: 15.0573442	total: 4.07s	remaining: 4.53s
142:	learn: 15.0129880	total: 4.1s	remaining: 4.5s
143:	learn: 14.9597237	total: 4.13s	remaining: 4.47s
144:	learn: 14.9235224	total: 4.16s	remaining: 4.44s
145:	learn: 14.8333558	total: 4.18s	remaining: 4.41s
146:	learn: 14.7273903	total: 4.21s	remaining: 4.38s
147:	learn: 14.6622611	total: 4.24s	remaining: 4.35s
148:	learn: 14.5908471	total: 4.28s	remaining: 4.33s
149:	learn: 14.5076303	total: 4.31s	remaining: 4.31s
150:	learn: 14.4133074	total: 4.34s	remaining: 4.28s
151:	learn: 14.3479884	total: 4.36s	remaining: 4.25s
152:	learn: 14.2884168	total: 4.39s	remaining: 4.22s
153:	learn: 14.2238756	total: 4.42s	remaining: 4.19s
154:	learn: 14.1598526	total: 4.44s	remaining: 4.16s
155:	learn: 14.1006242	total: 4.48s	remaining: 4.13s
156:	learn: 14.0116182	total: 4.51s	remaining: 4.11s
157:	learn: 13.9456796	total: 4.54s	remaining: 4.08s
158:	learn: 13.8579899	total: 4.57s	remaining: 4.05s
159:	learn: 13.8094183	total: 4.6s	remaining: 4.02s
160:	learn: 13.6558280	total: 4.63s	remaining: 3.99s
161:	learn: 13.5837377	total: 4.65s	remaining: 3.96s
162:	learn: 13.5105749	total: 4.69s	remaining: 3.94s
163:	learn: 13.3959486	total: 4.72s	remaining: 3.91s
164:	learn: 13.3427701	total: 4.74s	remaining: 3.88s
165:	learn: 13.2742960	total: 4.78s	remaining: 3.86s
166:	learn: 13.2232946	total: 4.81s	remaining: 3.83s
167:	learn: 13.1639434	total: 4.83s	remaining: 3.8s
168:	learn: 13.1001998	total: 4.86s	remaining: 3.77s
169:	learn: 13.0187776	total: 4.89s	remaining: 3.74s
170:	learn: 12.9284509	total: 4.93s	remaining: 3.72s
171:	learn: 12.8564085	total: 4.96s	remaining: 3.69s
172:	learn: 12.7786756	total: 4.99s	remaining: 3.66s
173:	learn: 12.7404900	total: 5.02s	remaining: 3.63s
174:	learn: 12.6844545	total: 5.05s	remaining: 3.61s
175:	learn: 12.6021043	total: 5.08s	remaining: 3.58s
176:	learn: 12.5809817	total: 5.1s	remaining: 3.55s
177:	learn: 12.5380271	total: 5.14s	remaining: 3.52s
178:	learn: 12.5044811	total: 5.16s	remaining: 3.49s
179:	learn: 12.3824039	total: 5.19s	remaining: 3.46s
180:	learn: 12.3163074	total: 5.22s	remaining: 3.43s
181:	learn: 12.2260642	total: 5.25s	remaining: 3.4s
182:	learn: 12.1962262	total: 5.28s	remaining: 3.38s
183:	learn: 12.1075043	total: 5.31s	remaining: 3.35s
184:	learn: 12.0299051	total: 5.33s	remaining: 3.32s
185:	learn: 11.9750127	total: 5.37s	remaining: 3.29s
186:	learn: 11.9007112	total: 5.4s	remaining: 3.26s
187:	learn: 11.8169703	total: 5.43s	remaining: 3.23s
188:	learn: 11.7451722	total: 5.46s	remaining: 3.21s
189:	learn: 11.6844013	total: 5.48s	remaining: 3.17s
190:	learn: 11.5844322	total: 5.51s	remaining: 3.14s
191:	learn: 11.5389707	total: 5.54s	remaining: 3.12s
192:	learn: 11.4989050	total: 5.57s	remaining: 3.09s
193:	learn: 11.4305771	total: 5.61s	remaining: 3.06s
194:	learn: 11.3188820	total: 5.63s	remaining: 3.03s
195:	learn: 11.2915156	total: 5.66s	remaining: 3s
196:	learn: 11.2329580	total: 5.68s	remaining: 2.97s
197:	learn: 11.1759941	total: 5.71s	remaining: 2.94s
198:	learn: 11.1562433	total: 5.74s	remaining: 2.91s
199:	learn: 11.1118627	total: 5.78s	remaining: 2.89s
200:	learn: 11.0908712	total: 5.81s	remaining: 2.86s
201:	learn: 11.0365972	total: 5.83s	remaining: 2.83s
202:	learn: 10.9633932	total: 5.86s	remaining: 2.8s
203:	learn: 10.8837891	total: 5.89s	remaining: 2.77s
204:	learn: 10.8038584	total: 5.91s	remaining: 2.74s
205:	learn: 10.7729034	total: 5.94s	remaining: 2.71s
206:	learn: 10.7289468	total: 5.97s	remaining: 2.68s
207:	learn: 10.6734340	total: 6.01s	remaining: 2.66s
208:	learn: 10.6482350	total: 6.04s	remaining: 2.63s
209:	learn: 10.5975506	total: 6.06s	remaining: 2.6s
210:	learn: 10.5528228	total: 6.09s	remaining: 2.57s
211:	learn: 10.5370360	total: 6.11s	remaining: 2.54s
212:	learn: 10.5230215	total: 6.14s	remaining: 2.51s
213:	learn: 10.4857244	total: 6.17s	remaining: 2.48s
214:	learn: 10.4212276	total: 6.19s	remaining: 2.45s
215:	learn: 10.4085529	total: 6.22s	remaining: 2.42s
216:	learn: 10.3355719	total: 6.27s	remaining: 2.4s
217:	learn: 10.2785284	total: 6.29s	remaining: 2.37s
218:	learn: 10.2125565	total: 6.32s	remaining: 2.34s
219:	learn: 10.1797782	total: 6.35s	remaining: 2.31s
220:	learn: 10.1530157	total: 6.38s	remaining: 2.28s
221:	learn: 10.1300360	total: 6.4s	remaining: 2.25s
222:	learn: 10.1168807	total: 6.43s	remaining: 2.22s
223:	learn: 10.0969154	total: 6.46s	remaining: 2.19s
224:	learn: 10.0800220	total: 6.5s	remaining: 2.17s
225:	learn: 10.0495195	total: 6.53s	remaining: 2.14s
226:	learn: 10.0130864	total: 6.55s	remaining: 2.11s
227:	learn: 9.9733051	total: 6.58s	remaining: 2.08s
228:	learn: 9.9186624	total: 6.6s	remaining: 2.05s
229:	learn: 9.8408517	total: 6.63s	remaining: 2.02s
230:	learn: 9.8020626	total: 6.66s	remaining: 1.99s
231:	learn: 9.7754447	total: 6.7s	remaining: 1.96s
232:	learn: 9.7642804	total: 6.72s	remaining: 1.93s
233:	learn: 9.7368568	total: 6.76s	remaining: 1.91s
234:	learn: 9.7056387	total: 6.79s	remaining: 1.88s
235:	learn: 9.6936392	total: 6.82s	remaining: 1.85s
236:	learn: 9.6470411	total: 6.84s	remaining: 1.82s
237:	learn: 9.5906698	total: 6.87s	remaining: 1.79s
238:	learn: 9.5416290	total: 6.9s	remaining: 1.76s
239:	learn: 9.5255228	total: 6.93s	remaining: 1.73s
240:	learn: 9.4529465	total: 6.96s	remaining: 1.7s
241:	learn: 9.4106807	total: 6.99s	remaining: 1.68s
242:	learn: 9.3728828	total: 7.02s	remaining: 1.65s
243:	learn: 9.3399456	total: 7.05s	remaining: 1.62s
244:	learn: 9.3118951	total: 7.07s	remaining: 1.59s
245:	learn: 9.3005486	total: 7.1s	remaining: 1.56s
246:	learn: 9.2903549	total: 7.14s	remaining: 1.53s
247:	learn: 9.2453982	total: 7.17s	remaining: 1.5s
248:	learn: 9.2340791	total: 7.19s	remaining: 1.47s
249:	learn: 9.2022569	total: 7.23s	remaining: 1.45s
250:	learn: 9.1782703	total: 7.26s	remaining: 1.42s
251:	learn: 9.1383043	total: 7.28s	remaining: 1.39s
252:	learn: 9.1021623	total: 7.31s	remaining: 1.36s
253:	learn: 9.0892727	total: 7.34s	remaining: 1.33s
254:	learn: 9.0521468	total: 7.37s	remaining: 1.3s
255:	learn: 9.0384933	total: 7.4s	remaining: 1.27s
256:	learn: 9.0063168	total: 7.42s	remaining: 1.24s
257:	learn: 8.9956277	total: 7.45s	remaining: 1.21s
258:	learn: 8.9496921	total: 7.49s	remaining: 1.19s
259:	learn: 8.9036568	total: 7.51s	remaining: 1.16s
260:	learn: 8.8936773	total: 7.54s	remaining: 1.13s
261:	learn: 8.8516187	total: 7.58s	remaining: 1.1s
262:	learn: 8.8136929	total: 7.61s	remaining: 1.07s
263:	learn: 8.7857931	total: 7.63s	remaining: 1.04s
264:	learn: 8.7542759	total: 7.66s	remaining: 1.01s
265:	learn: 8.7388965	total: 7.69s	remaining: 983ms
266:	learn: 8.7298188	total: 7.72s	remaining: 954ms
267:	learn: 8.7213757	total: 7.75s	remaining: 925ms
268:	learn: 8.6906438	total: 7.78s	remaining: 896ms
269:	learn: 8.6693053	total: 7.81s	remaining: 868ms
270:	learn: 8.6470936	total: 7.83s	remaining: 838ms
271:	learn: 8.6096396	total: 7.86s	remaining: 809ms
272:	learn: 8.5746539	total: 7.89s	remaining: 780ms
273:	learn: 8.5560630	total: 7.91s	remaining: 751ms
274:	learn: 8.5399246	total: 7.95s	remaining: 723ms
275:	learn: 8.4986755	total: 7.98s	remaining: 694ms
276:	learn: 8.4692322	total: 8.01s	remaining: 665ms
277:	learn: 8.4447901	total: 8.04s	remaining: 636ms
278:	learn: 8.4280272	total: 8.07s	remaining: 607ms
279:	learn: 8.3947119	total: 8.09s	remaining: 578ms
280:	learn: 8.3554975	total: 8.12s	remaining: 549ms
281:	learn: 8.3221566	total: 8.15s	remaining: 520ms
282:	learn: 8.3131827	total: 8.18s	remaining: 491ms
283:	learn: 8.2891313	total: 8.22s	remaining: 463ms
284:	learn: 8.2839105	total: 8.24s	remaining: 434ms
285:	learn: 8.2757450	total: 8.27s	remaining: 405ms
286:	learn: 8.2388411	total: 8.3s	remaining: 376ms
287:	learn: 8.2074603	total: 8.32s	remaining: 347ms
288:	learn: 8.1701839	total: 8.35s	remaining: 318ms
289:	learn: 8.1498646	total: 8.38s	remaining: 289ms
290:	learn: 8.1195237	total: 8.4s	remaining: 260ms
291:	learn: 8.0995089	total: 8.45s	remaining: 231ms
292:	learn: 8.0775287	total: 8.48s	remaining: 203ms
293:	learn: 8.0527267	total: 8.51s	remaining: 174ms
294:	learn: 8.0201604	total: 8.53s	remaining: 145ms
295:	learn: 8.0106207	total: 8.56s	remaining: 116ms
296:	learn: 7.9693660	total: 8.59s	remaining: 86.7ms
297:	learn: 7.9463481	total: 8.61s	remaining: 57.8ms
298:	learn: 7.9254902	total: 8.64s	remaining: 28.9ms
299:	learn: 7.9210391	total: 8.65s	remaining: 0us
0:	learn: 27.7754516	total: 14.7ms	remaining: 2.92s
1:	learn: 27.5479796	total: 36.7ms	remaining: 3.64s
2:	learn: 27.2746068	total: 51.1ms	remaining: 3.35s
3:	learn: 27.0509917	total: 65.1ms	remaining: 3.19s
4:	learn: 26.8288361	total: 79.3ms	remaining: 3.09s
5:	learn: 26.6090156	total: 80.9ms	remaining: 2.61s
6:	learn: 26.3690628	total: 94.8ms	remaining: 2.61s
7:	learn: 26.1079649	total: 109ms	remaining: 2.61s
8:	learn: 25.8928130	total: 123ms	remaining: 2.62s
9:	learn: 25.6789848	total: 138ms	remaining: 2.62s
10:	learn: 25.4564779	total: 153ms	remaining: 2.62s
11:	learn: 25.2648743	total: 172ms	remaining: 2.69s
12:	learn: 25.0675347	total: 193ms	remaining: 2.77s
13:	learn: 24.8582580	total: 209ms	remaining: 2.78s
14:	learn: 24.6910007	total: 225ms	remaining: 2.77s
15:	learn: 24.4929561	total: 240ms	remaining: 2.76s
16:	learn: 24.2885185	total: 256ms	remaining: 2.75s
17:	learn: 24.1199034	total: 271ms	remaining: 2.74s
18:	learn: 23.9429025	total: 285ms	remaining: 2.72s
19:	learn: 23.8041721	total: 299ms	remaining: 2.69s
20:	learn: 23.6354352	total: 321ms	remaining: 2.74s
21:	learn: 23.4791358	total: 336ms	remaining: 2.72s
22:	learn: 23.3215290	total: 351ms	remaining: 2.7s
23:	learn: 23.1726818	total: 366ms	remaining: 2.68s
24:	learn: 23.0277027	total: 386ms	remaining: 2.7s
25:	learn: 22.8923537	total: 389ms	remaining: 2.61s
26:	learn: 22.7593722	total: 406ms	remaining: 2.6s
27:	learn: 22.6406604	total: 420ms	remaining: 2.58s
28:	learn: 22.4859315	total: 428ms	remaining: 2.52s
29:	learn: 22.3556820	total: 442ms	remaining: 2.51s
30:	learn: 22.2099725	total: 457ms	remaining: 2.49s
31:	learn: 22.0753449	total: 472ms	remaining: 2.48s
32:	learn: 21.9461998	total: 487ms	remaining: 2.46s
33:	learn: 21.8154273	total: 501ms	remaining: 2.44s
34:	learn: 21.6892586	total: 515ms	remaining: 2.42s
35:	learn: 21.5600367	total: 529ms	remaining: 2.41s
36:	learn: 21.4485913	total: 544ms	remaining: 2.4s
37:	learn: 21.3370937	total: 558ms	remaining: 2.38s
38:	learn: 21.2318811	total: 574ms	remaining: 2.37s
39:	learn: 21.1157424	total: 602ms	remaining: 2.41s
40:	learn: 20.9860009	total: 623ms	remaining: 2.41s
41:	learn: 20.8805147	total: 638ms	remaining: 2.4s
42:	learn: 20.7546802	total: 653ms	remaining: 2.38s
43:	learn: 20.6423188	total: 668ms	remaining: 2.37s
44:	learn: 20.5463305	total: 684ms	remaining: 2.35s
45:	learn: 20.4769432	total: 699ms	remaining: 2.34s
46:	learn: 20.4061650	total: 714ms	remaining: 2.32s
47:	learn: 20.3033767	total: 728ms	remaining: 2.31s
48:	learn: 20.2028133	total: 743ms	remaining: 2.29s
49:	learn: 20.1206445	total: 757ms	remaining: 2.27s
50:	learn: 20.0481763	total: 772ms	remaining: 2.26s
51:	learn: 19.9602950	total: 787ms	remaining: 2.24s
52:	learn: 19.8988906	total: 808ms	remaining: 2.24s
53:	learn: 19.8125644	total: 824ms	remaining: 2.23s
54:	learn: 19.6981945	total: 839ms	remaining: 2.21s
55:	learn: 19.6103203	total: 853ms	remaining: 2.19s
56:	learn: 19.5110711	total: 875ms	remaining: 2.19s
57:	learn: 19.4184024	total: 889ms	remaining: 2.18s
58:	learn: 19.3561775	total: 903ms	remaining: 2.16s
59:	learn: 19.2768465	total: 917ms	remaining: 2.14s
60:	learn: 19.1958903	total: 931ms	remaining: 2.12s
61:	learn: 19.1233600	total: 945ms	remaining: 2.1s
62:	learn: 19.0065985	total: 960ms	remaining: 2.09s
63:	learn: 18.8998023	total: 974ms	remaining: 2.07s
64:	learn: 18.8245329	total: 988ms	remaining: 2.05s
65:	learn: 18.7379541	total: 1s	remaining: 2.04s
66:	learn: 18.6709669	total: 1.02s	remaining: 2.03s
67:	learn: 18.6006341	total: 1.04s	remaining: 2.02s
68:	learn: 18.5123543	total: 1.06s	remaining: 2.01s
69:	learn: 18.4591770	total: 1.06s	remaining: 1.98s
70:	learn: 18.3860067	total: 1.08s	remaining: 1.96s
71:	learn: 18.2931874	total: 1.09s	remaining: 1.94s
72:	learn: 18.2328344	total: 1.11s	remaining: 1.93s
73:	learn: 18.1626099	total: 1.12s	remaining: 1.91s
74:	learn: 18.0943799	total: 1.14s	remaining: 1.9s
75:	learn: 18.0248063	total: 1.16s	remaining: 1.89s
76:	learn: 17.9584282	total: 1.17s	remaining: 1.88s
77:	learn: 17.8976438	total: 1.19s	remaining: 1.86s
78:	learn: 17.8196115	total: 1.2s	remaining: 1.84s
79:	learn: 17.7295852	total: 1.23s	remaining: 1.84s
80:	learn: 17.6647765	total: 1.24s	remaining: 1.82s
81:	learn: 17.6081123	total: 1.25s	remaining: 1.81s
82:	learn: 17.5557349	total: 1.27s	remaining: 1.79s
83:	learn: 17.4926230	total: 1.28s	remaining: 1.77s
84:	learn: 17.4091582	total: 1.3s	remaining: 1.76s
85:	learn: 17.3478901	total: 1.31s	remaining: 1.74s
86:	learn: 17.3103417	total: 1.33s	remaining: 1.72s
87:	learn: 17.2551484	total: 1.34s	remaining: 1.71s
88:	learn: 17.1874130	total: 1.35s	remaining: 1.69s
89:	learn: 17.1256332	total: 1.37s	remaining: 1.67s
90:	learn: 17.0654384	total: 1.38s	remaining: 1.66s
91:	learn: 16.9695926	total: 1.4s	remaining: 1.64s
92:	learn: 16.9228416	total: 1.41s	remaining: 1.62s
93:	learn: 16.8695236	total: 1.44s	remaining: 1.62s
94:	learn: 16.7889551	total: 1.46s	remaining: 1.61s
95:	learn: 16.7531495	total: 1.48s	remaining: 1.6s
96:	learn: 16.7193502	total: 1.49s	remaining: 1.58s
97:	learn: 16.6813193	total: 1.5s	remaining: 1.57s
98:	learn: 16.6175519	total: 1.52s	remaining: 1.55s
99:	learn: 16.5622700	total: 1.54s	remaining: 1.54s
100:	learn: 16.5103889	total: 1.55s	remaining: 1.52s
101:	learn: 16.4772897	total: 1.56s	remaining: 1.5s
102:	learn: 16.4286498	total: 1.58s	remaining: 1.49s
103:	learn: 16.3570934	total: 1.59s	remaining: 1.47s
104:	learn: 16.2917081	total: 1.61s	remaining: 1.45s
105:	learn: 16.2393000	total: 1.62s	remaining: 1.44s
106:	learn: 16.1723330	total: 1.64s	remaining: 1.42s
107:	learn: 16.1026656	total: 1.65s	remaining: 1.41s
108:	learn: 16.0324378	total: 1.67s	remaining: 1.4s
109:	learn: 15.9782961	total: 1.69s	remaining: 1.38s
110:	learn: 15.9444816	total: 1.71s	remaining: 1.37s
111:	learn: 15.8795534	total: 1.73s	remaining: 1.36s
112:	learn: 15.8283145	total: 1.74s	remaining: 1.34s
113:	learn: 15.7901413	total: 1.75s	remaining: 1.32s
114:	learn: 15.7337883	total: 1.77s	remaining: 1.31s
115:	learn: 15.6829439	total: 1.78s	remaining: 1.29s
116:	learn: 15.6288502	total: 1.8s	remaining: 1.28s
117:	learn: 15.5881368	total: 1.81s	remaining: 1.26s
118:	learn: 15.5469701	total: 1.83s	remaining: 1.24s
119:	learn: 15.5075988	total: 1.84s	remaining: 1.23s
120:	learn: 15.4666847	total: 1.86s	remaining: 1.21s
121:	learn: 15.4242174	total: 1.88s	remaining: 1.2s
122:	learn: 15.3582877	total: 1.9s	remaining: 1.19s
123:	learn: 15.3223592	total: 1.92s	remaining: 1.17s
124:	learn: 15.2856087	total: 1.93s	remaining: 1.16s
125:	learn: 15.2086007	total: 1.95s	remaining: 1.14s
126:	learn: 15.1666176	total: 1.96s	remaining: 1.13s
127:	learn: 15.1294993	total: 1.98s	remaining: 1.11s
128:	learn: 15.0998719	total: 2s	remaining: 1.1s
129:	learn: 15.0424857	total: 2.01s	remaining: 1.08s
130:	learn: 14.9965072	total: 2.02s	remaining: 1.07s
131:	learn: 14.9410314	total: 2.04s	remaining: 1.05s
132:	learn: 14.9018107	total: 2.06s	remaining: 1.03s
133:	learn: 14.8682689	total: 2.08s	remaining: 1.02s
134:	learn: 14.8125665	total: 2.09s	remaining: 1.01s
135:	learn: 14.7744128	total: 2.11s	remaining: 991ms
136:	learn: 14.7455632	total: 2.12s	remaining: 975ms
137:	learn: 14.7246694	total: 2.13s	remaining: 959ms
138:	learn: 14.6778548	total: 2.15s	remaining: 943ms
139:	learn: 14.6263454	total: 2.16s	remaining: 927ms
140:	learn: 14.5792278	total: 2.18s	remaining: 911ms
141:	learn: 14.5342542	total: 2.19s	remaining: 895ms
142:	learn: 14.4979554	total: 2.21s	remaining: 879ms
143:	learn: 14.4599096	total: 2.22s	remaining: 863ms
144:	learn: 14.4103353	total: 2.23s	remaining: 848ms
145:	learn: 14.3737086	total: 2.25s	remaining: 832ms
146:	learn: 14.3442122	total: 2.28s	remaining: 821ms
147:	learn: 14.3292787	total: 2.3s	remaining: 807ms
148:	learn: 14.3021843	total: 2.31s	remaining: 791ms
149:	learn: 14.2516396	total: 2.33s	remaining: 776ms
150:	learn: 14.2056883	total: 2.34s	remaining: 760ms
151:	learn: 14.1597842	total: 2.36s	remaining: 744ms
152:	learn: 14.1150082	total: 2.37s	remaining: 729ms
153:	learn: 14.0646832	total: 2.39s	remaining: 713ms
154:	learn: 14.0391238	total: 2.4s	remaining: 697ms
155:	learn: 13.9924610	total: 2.42s	remaining: 682ms
156:	learn: 13.9698870	total: 2.43s	remaining: 666ms
157:	learn: 13.9235625	total: 2.45s	remaining: 650ms
158:	learn: 13.8778960	total: 2.46s	remaining: 635ms
159:	learn: 13.8477459	total: 2.48s	remaining: 620ms
160:	learn: 13.8271223	total: 2.5s	remaining: 605ms
161:	learn: 13.7993025	total: 2.51s	remaining: 589ms
162:	learn: 13.7554835	total: 2.53s	remaining: 574ms
163:	learn: 13.7135517	total: 2.55s	remaining: 560ms
164:	learn: 13.6538805	total: 2.56s	remaining: 544ms
165:	learn: 13.6267398	total: 2.58s	remaining: 528ms
166:	learn: 13.5901508	total: 2.59s	remaining: 512ms
167:	learn: 13.5459635	total: 2.61s	remaining: 496ms
168:	learn: 13.5104344	total: 2.62s	remaining: 481ms
169:	learn: 13.4733551	total: 2.63s	remaining: 465ms
170:	learn: 13.4390118	total: 2.65s	remaining: 449ms
171:	learn: 13.4019789	total: 2.66s	remaining: 433ms
172:	learn: 13.3509403	total: 2.68s	remaining: 418ms
173:	learn: 13.3198863	total: 2.69s	remaining: 402ms
174:	learn: 13.2851907	total: 2.71s	remaining: 388ms
175:	learn: 13.2594567	total: 2.73s	remaining: 372ms
176:	learn: 13.2148093	total: 2.74s	remaining: 357ms
177:	learn: 13.1878251	total: 2.76s	remaining: 341ms
178:	learn: 13.1540507	total: 2.77s	remaining: 325ms
179:	learn: 13.1112550	total: 2.79s	remaining: 310ms
180:	learn: 13.0614430	total: 2.8s	remaining: 294ms
181:	learn: 13.0166699	total: 2.82s	remaining: 279ms
182:	learn: 12.9982666	total: 2.83s	remaining: 263ms
183:	learn: 12.9620737	total: 2.85s	remaining: 247ms
184:	learn: 12.9135083	total: 2.86s	remaining: 232ms
185:	learn: 12.8637351	total: 2.87s	remaining: 216ms
186:	learn: 12.8344083	total: 2.89s	remaining: 201ms
187:	learn: 12.8164884	total: 2.91s	remaining: 186ms
188:	learn: 12.7791441	total: 2.92s	remaining: 170ms
189:	learn: 12.7561604	total: 2.94s	remaining: 155ms
190:	learn: 12.7281886	total: 2.95s	remaining: 139ms
191:	learn: 12.7028767	total: 2.97s	remaining: 124ms
192:	learn: 12.6855837	total: 2.98s	remaining: 108ms
193:	learn: 12.6708305	total: 3s	remaining: 92.6ms
194:	learn: 12.6370119	total: 3.01s	remaining: 77.2ms
195:	learn: 12.6219431	total: 3.02s	remaining: 61.7ms
196:	learn: 12.5821011	total: 3.04s	remaining: 46.3ms
197:	learn: 12.5640325	total: 3.05s	remaining: 30.8ms
198:	learn: 12.5483138	total: 3.06s	remaining: 15.4ms
199:	learn: 12.5196132	total: 3.08s	remaining: 0us
0:	learn: 43.1697170	total: 14.9ms	remaining: 2.96s
1:	learn: 42.2901012	total: 22.8ms	remaining: 2.26s
2:	learn: 41.6816926	total: 37.5ms	remaining: 2.46s
3:	learn: 40.8914438	total: 51.7ms	remaining: 2.53s
4:	learn: 40.1880767	total: 66.5ms	remaining: 2.59s
5:	learn: 39.6273650	total: 80.2ms	remaining: 2.59s
6:	learn: 39.0451513	total: 81.9ms	remaining: 2.26s
7:	learn: 38.3812583	total: 95.6ms	remaining: 2.29s
8:	learn: 37.8015048	total: 109ms	remaining: 2.32s
9:	learn: 37.1969385	total: 123ms	remaining: 2.34s
10:	learn: 36.6867327	total: 137ms	remaining: 2.36s
11:	learn: 36.2634590	total: 152ms	remaining: 2.38s
12:	learn: 35.8323306	total: 167ms	remaining: 2.4s
13:	learn: 35.3308195	total: 186ms	remaining: 2.46s
14:	learn: 34.8817490	total: 203ms	remaining: 2.5s
15:	learn: 34.4104862	total: 218ms	remaining: 2.5s
16:	learn: 33.8982813	total: 232ms	remaining: 2.5s
17:	learn: 33.4650148	total: 237ms	remaining: 2.39s
18:	learn: 33.0792636	total: 251ms	remaining: 2.39s
19:	learn: 32.7412243	total: 256ms	remaining: 2.3s
20:	learn: 32.2667105	total: 270ms	remaining: 2.3s
21:	learn: 31.7834777	total: 283ms	remaining: 2.29s
22:	learn: 31.4015295	total: 297ms	remaining: 2.29s
23:	learn: 30.9848010	total: 311ms	remaining: 2.28s
24:	learn: 30.7903012	total: 323ms	remaining: 2.26s
25:	learn: 30.4816626	total: 336ms	remaining: 2.25s
26:	learn: 30.1870075	total: 348ms	remaining: 2.23s
27:	learn: 29.8012884	total: 361ms	remaining: 2.21s
28:	learn: 29.5472213	total: 373ms	remaining: 2.2s
29:	learn: 29.3024630	total: 386ms	remaining: 2.19s
30:	learn: 29.0053754	total: 400ms	remaining: 2.18s
31:	learn: 28.7041553	total: 422ms	remaining: 2.21s
32:	learn: 28.4538670	total: 438ms	remaining: 2.22s
33:	learn: 28.2116807	total: 452ms	remaining: 2.21s
34:	learn: 27.8699559	total: 456ms	remaining: 2.15s
35:	learn: 27.6936227	total: 469ms	remaining: 2.14s
36:	learn: 27.4499017	total: 483ms	remaining: 2.13s
37:	learn: 27.1972047	total: 497ms	remaining: 2.12s
38:	learn: 26.9634636	total: 509ms	remaining: 2.1s
39:	learn: 26.6713588	total: 516ms	remaining: 2.06s
40:	learn: 26.4731982	total: 529ms	remaining: 2.05s
41:	learn: 26.2832383	total: 542ms	remaining: 2.04s
42:	learn: 26.0425668	total: 554ms	remaining: 2.02s
43:	learn: 25.7759256	total: 567ms	remaining: 2.01s
44:	learn: 25.5870195	total: 580ms	remaining: 2s
45:	learn: 25.4326297	total: 593ms	remaining: 1.99s
46:	learn: 25.2511756	total: 612ms	remaining: 1.99s
47:	learn: 25.0030838	total: 627ms	remaining: 1.99s
48:	learn: 24.8115423	total: 639ms	remaining: 1.97s
49:	learn: 24.6707104	total: 652ms	remaining: 1.96s
50:	learn: 24.5209087	total: 665ms	remaining: 1.94s
51:	learn: 24.3724532	total: 677ms	remaining: 1.93s
52:	learn: 24.1750135	total: 679ms	remaining: 1.88s
53:	learn: 23.9994522	total: 691ms	remaining: 1.87s
54:	learn: 23.8535119	total: 704ms	remaining: 1.85s
55:	learn: 23.6581193	total: 716ms	remaining: 1.84s
56:	learn: 23.5366321	total: 729ms	remaining: 1.83s
57:	learn: 23.3942594	total: 736ms	remaining: 1.8s
58:	learn: 23.2117484	total: 748ms	remaining: 1.79s
59:	learn: 23.0825507	total: 760ms	remaining: 1.77s
60:	learn: 22.9814400	total: 773ms	remaining: 1.76s
61:	learn: 22.8627210	total: 785ms	remaining: 1.75s
62:	learn: 22.7373194	total: 801ms	remaining: 1.74s
63:	learn: 22.6803940	total: 822ms	remaining: 1.75s
64:	learn: 22.5211669	total: 837ms	remaining: 1.74s
65:	learn: 22.3557079	total: 851ms	remaining: 1.73s
66:	learn: 22.1954453	total: 863ms	remaining: 1.71s
67:	learn: 22.0940771	total: 877ms	remaining: 1.7s
68:	learn: 21.9646922	total: 891ms	remaining: 1.69s
69:	learn: 21.8296265	total: 903ms	remaining: 1.68s
70:	learn: 21.7577856	total: 906ms	remaining: 1.65s
71:	learn: 21.5929067	total: 919ms	remaining: 1.63s
72:	learn: 21.4688900	total: 931ms	remaining: 1.62s
73:	learn: 21.4016138	total: 944ms	remaining: 1.61s
74:	learn: 21.2699195	total: 956ms	remaining: 1.59s
75:	learn: 21.1770809	total: 968ms	remaining: 1.58s
76:	learn: 21.0712664	total: 981ms	remaining: 1.57s
77:	learn: 20.9363651	total: 994ms	remaining: 1.55s
78:	learn: 20.8409020	total: 1.01s	remaining: 1.55s
79:	learn: 20.7494130	total: 1.03s	remaining: 1.54s
80:	learn: 20.6557400	total: 1.04s	remaining: 1.53s
81:	learn: 20.5140990	total: 1.05s	remaining: 1.52s
82:	learn: 20.4322198	total: 1.07s	remaining: 1.5s
83:	learn: 20.3570768	total: 1.08s	remaining: 1.49s
84:	learn: 20.2525592	total: 1.09s	remaining: 1.48s
85:	learn: 20.1749553	total: 1.1s	remaining: 1.46s
86:	learn: 20.0767399	total: 1.11s	remaining: 1.45s
87:	learn: 19.9905216	total: 1.13s	remaining: 1.44s
88:	learn: 19.9273793	total: 1.14s	remaining: 1.42s
89:	learn: 19.8323289	total: 1.15s	remaining: 1.41s
90:	learn: 19.7380101	total: 1.17s	remaining: 1.4s
91:	learn: 19.6819956	total: 1.18s	remaining: 1.38s
92:	learn: 19.6055868	total: 1.19s	remaining: 1.37s
93:	learn: 19.5275793	total: 1.21s	remaining: 1.36s
94:	learn: 19.4796461	total: 1.22s	remaining: 1.35s
95:	learn: 19.4055966	total: 1.24s	remaining: 1.34s
96:	learn: 19.3154915	total: 1.26s	remaining: 1.34s
97:	learn: 19.2285209	total: 1.28s	remaining: 1.33s
98:	learn: 19.1453986	total: 1.29s	remaining: 1.32s
99:	learn: 19.0669269	total: 1.31s	remaining: 1.31s
100:	learn: 18.9743440	total: 1.31s	remaining: 1.28s
101:	learn: 18.8703850	total: 1.32s	remaining: 1.27s
102:	learn: 18.8016702	total: 1.34s	remaining: 1.26s
103:	learn: 18.7629726	total: 1.35s	remaining: 1.25s
104:	learn: 18.6871791	total: 1.37s	remaining: 1.24s
105:	learn: 18.6344854	total: 1.38s	remaining: 1.23s
106:	learn: 18.5966202	total: 1.4s	remaining: 1.21s
107:	learn: 18.5436408	total: 1.41s	remaining: 1.2s
108:	learn: 18.4608796	total: 1.42s	remaining: 1.19s
109:	learn: 18.4015795	total: 1.44s	remaining: 1.18s
110:	learn: 18.3142664	total: 1.46s	remaining: 1.17s
111:	learn: 18.2596545	total: 1.47s	remaining: 1.16s
112:	learn: 18.1750225	total: 1.49s	remaining: 1.15s
113:	learn: 18.1496816	total: 1.5s	remaining: 1.13s
114:	learn: 18.1156018	total: 1.52s	remaining: 1.12s
115:	learn: 18.0391012	total: 1.53s	remaining: 1.11s
116:	learn: 17.9600807	total: 1.54s	remaining: 1.1s
117:	learn: 17.9126323	total: 1.56s	remaining: 1.08s
118:	learn: 17.8510394	total: 1.57s	remaining: 1.07s
119:	learn: 17.8213588	total: 1.59s	remaining: 1.06s
120:	learn: 17.7501747	total: 1.6s	remaining: 1.04s
121:	learn: 17.7081146	total: 1.61s	remaining: 1.03s
122:	learn: 17.6516747	total: 1.63s	remaining: 1.02s
123:	learn: 17.6215737	total: 1.64s	remaining: 1.01s
124:	learn: 17.5499849	total: 1.66s	remaining: 999ms
125:	learn: 17.4687260	total: 1.68s	remaining: 987ms
126:	learn: 17.4289998	total: 1.69s	remaining: 974ms
127:	learn: 17.3844447	total: 1.71s	remaining: 961ms
128:	learn: 17.3469769	total: 1.72s	remaining: 948ms
129:	learn: 17.2870043	total: 1.74s	remaining: 935ms
130:	learn: 17.2443557	total: 1.75s	remaining: 921ms
131:	learn: 17.2215423	total: 1.76s	remaining: 908ms
132:	learn: 17.1793821	total: 1.77s	remaining: 894ms
133:	learn: 17.1248718	total: 1.79s	remaining: 880ms
134:	learn: 17.0768258	total: 1.8s	remaining: 866ms
135:	learn: 16.9920366	total: 1.81s	remaining: 853ms
136:	learn: 16.9292963	total: 1.82s	remaining: 839ms
137:	learn: 16.9070813	total: 1.84s	remaining: 826ms
138:	learn: 16.8610184	total: 1.86s	remaining: 815ms
139:	learn: 16.8208914	total: 1.87s	remaining: 803ms
140:	learn: 16.8046949	total: 1.89s	remaining: 789ms
141:	learn: 16.7601901	total: 1.9s	remaining: 775ms
142:	learn: 16.7253112	total: 1.91s	remaining: 762ms
143:	learn: 16.6521118	total: 1.92s	remaining: 748ms
144:	learn: 16.5761582	total: 1.94s	remaining: 734ms
145:	learn: 16.5032986	total: 1.95s	remaining: 721ms
146:	learn: 16.4926906	total: 1.96s	remaining: 707ms
147:	learn: 16.4393907	total: 1.97s	remaining: 694ms
148:	learn: 16.4017971	total: 1.99s	remaining: 680ms
149:	learn: 16.3163710	total: 2s	remaining: 666ms
150:	learn: 16.2894053	total: 2.01s	remaining: 653ms
151:	learn: 16.2479557	total: 2.02s	remaining: 639ms
152:	learn: 16.2173534	total: 2.04s	remaining: 626ms
153:	learn: 16.1282338	total: 2.05s	remaining: 612ms
154:	learn: 16.0974366	total: 2.06s	remaining: 599ms
155:	learn: 16.0640506	total: 2.09s	remaining: 588ms
156:	learn: 16.0382950	total: 2.1s	remaining: 576ms
157:	learn: 15.9692056	total: 2.11s	remaining: 562ms
158:	learn: 15.9384018	total: 2.13s	remaining: 549ms
159:	learn: 15.9142264	total: 2.14s	remaining: 535ms
160:	learn: 15.8968581	total: 2.15s	remaining: 522ms
161:	learn: 15.8594751	total: 2.17s	remaining: 508ms
162:	learn: 15.8034099	total: 2.18s	remaining: 495ms
163:	learn: 15.7651924	total: 2.19s	remaining: 481ms
164:	learn: 15.7126016	total: 2.2s	remaining: 468ms
165:	learn: 15.6502726	total: 2.22s	remaining: 454ms
166:	learn: 15.6406676	total: 2.23s	remaining: 441ms
167:	learn: 15.6251646	total: 2.24s	remaining: 427ms
168:	learn: 15.5907873	total: 2.25s	remaining: 413ms
169:	learn: 15.5704966	total: 2.27s	remaining: 400ms
170:	learn: 15.5450119	total: 2.28s	remaining: 387ms
171:	learn: 15.5329788	total: 2.3s	remaining: 374ms
172:	learn: 15.4931727	total: 2.31s	remaining: 361ms
173:	learn: 15.4652790	total: 2.33s	remaining: 348ms
174:	learn: 15.4405845	total: 2.34s	remaining: 334ms
175:	learn: 15.4209702	total: 2.35s	remaining: 321ms
176:	learn: 15.3658062	total: 2.36s	remaining: 307ms
177:	learn: 15.3510670	total: 2.38s	remaining: 294ms
178:	learn: 15.3270088	total: 2.39s	remaining: 280ms
179:	learn: 15.3128373	total: 2.4s	remaining: 267ms
180:	learn: 15.2763107	total: 2.42s	remaining: 254ms
181:	learn: 15.2494358	total: 2.43s	remaining: 240ms
182:	learn: 15.2167404	total: 2.44s	remaining: 227ms
183:	learn: 15.2050483	total: 2.46s	remaining: 214ms
184:	learn: 15.1911087	total: 2.47s	remaining: 200ms
185:	learn: 15.1726609	total: 2.49s	remaining: 187ms
186:	learn: 15.1584047	total: 2.5s	remaining: 174ms
187:	learn: 15.1265275	total: 2.52s	remaining: 161ms
188:	learn: 15.1167676	total: 2.54s	remaining: 148ms
189:	learn: 15.1023788	total: 2.55s	remaining: 134ms
190:	learn: 15.0833498	total: 2.57s	remaining: 121ms
191:	learn: 15.0541393	total: 2.58s	remaining: 108ms
192:	learn: 15.0175177	total: 2.6s	remaining: 94.2ms
193:	learn: 14.9889861	total: 2.61s	remaining: 80.8ms
194:	learn: 14.9783108	total: 2.63s	remaining: 67.4ms
195:	learn: 14.9675054	total: 2.64s	remaining: 53.9ms
196:	learn: 14.9419417	total: 2.65s	remaining: 40.4ms
197:	learn: 14.9049270	total: 2.67s	remaining: 27ms
198:	learn: 14.8657178	total: 2.68s	remaining: 13.5ms
199:	learn: 14.8560163	total: 2.7s	remaining: 0us
0:	learn: 46.5479203	total: 12.8ms	remaining: 2.55s
1:	learn: 46.1965422	total: 13.8ms	remaining: 1.37s
2:	learn: 45.4104405	total: 18.2ms	remaining: 1.19s
3:	learn: 44.7670932	total: 31.1ms	remaining: 1.52s
4:	learn: 44.2097827	total: 43.8ms	remaining: 1.71s
5:	learn: 43.6234060	total: 56.9ms	remaining: 1.84s
6:	learn: 42.9745233	total: 69.6ms	remaining: 1.92s
7:	learn: 42.4383352	total: 82ms	remaining: 1.97s
8:	learn: 41.9625996	total: 94.4ms	remaining: 2s
9:	learn: 41.5618491	total: 107ms	remaining: 2.04s
10:	learn: 40.9754608	total: 121ms	remaining: 2.07s
11:	learn: 40.3131661	total: 134ms	remaining: 2.09s
12:	learn: 40.1726884	total: 134ms	remaining: 1.93s
13:	learn: 39.6327597	total: 154ms	remaining: 2.04s
14:	learn: 38.9216029	total: 176ms	remaining: 2.17s
15:	learn: 38.4359295	total: 190ms	remaining: 2.18s
16:	learn: 38.0285724	total: 204ms	remaining: 2.2s
17:	learn: 37.8890661	total: 205ms	remaining: 2.08s
18:	learn: 37.5240866	total: 220ms	remaining: 2.09s
19:	learn: 37.2546259	total: 234ms	remaining: 2.11s
20:	learn: 36.8724730	total: 248ms	remaining: 2.11s
21:	learn: 36.5244229	total: 261ms	remaining: 2.11s
22:	learn: 36.1680839	total: 273ms	remaining: 2.1s
23:	learn: 35.9260145	total: 286ms	remaining: 2.1s
24:	learn: 35.5893297	total: 299ms	remaining: 2.09s
25:	learn: 35.2483174	total: 311ms	remaining: 2.08s
26:	learn: 34.8610318	total: 324ms	remaining: 2.08s
27:	learn: 34.5085787	total: 338ms	remaining: 2.07s
28:	learn: 34.1765279	total: 350ms	remaining: 2.06s
29:	learn: 33.8160972	total: 370ms	remaining: 2.1s
30:	learn: 33.5513656	total: 385ms	remaining: 2.1s
31:	learn: 33.1904941	total: 398ms	remaining: 2.09s
32:	learn: 32.9188745	total: 411ms	remaining: 2.08s
33:	learn: 32.5427842	total: 424ms	remaining: 2.07s
34:	learn: 32.2861786	total: 436ms	remaining: 2.06s
35:	learn: 31.9618964	total: 449ms	remaining: 2.04s
36:	learn: 31.6894780	total: 461ms	remaining: 2.03s
37:	learn: 31.3877790	total: 473ms	remaining: 2.02s
38:	learn: 31.1941957	total: 486ms	remaining: 2s
39:	learn: 30.9864930	total: 498ms	remaining: 1.99s
40:	learn: 30.7701528	total: 510ms	remaining: 1.98s
41:	learn: 30.4595135	total: 523ms	remaining: 1.97s
42:	learn: 30.2321559	total: 535ms	remaining: 1.95s
43:	learn: 29.9595345	total: 548ms	remaining: 1.94s
44:	learn: 29.7559932	total: 565ms	remaining: 1.95s
45:	learn: 29.5788743	total: 584ms	remaining: 1.96s
46:	learn: 29.4174545	total: 600ms	remaining: 1.95s
47:	learn: 29.2762863	total: 613ms	remaining: 1.94s
48:	learn: 29.0604108	total: 628ms	remaining: 1.94s
49:	learn: 28.8391908	total: 642ms	remaining: 1.93s
50:	learn: 28.6167650	total: 657ms	remaining: 1.92s
51:	learn: 28.4477051	total: 672ms	remaining: 1.91s
52:	learn: 28.2733201	total: 686ms	remaining: 1.9s
53:	learn: 28.0721287	total: 700ms	remaining: 1.89s
54:	learn: 27.9113692	total: 714ms	remaining: 1.88s
55:	learn: 27.7551300	total: 728ms	remaining: 1.87s
56:	learn: 27.5833850	total: 742ms	remaining: 1.86s
57:	learn: 27.4879621	total: 756ms	remaining: 1.85s
58:	learn: 27.3065781	total: 771ms	remaining: 1.84s
59:	learn: 27.1200195	total: 792ms	remaining: 1.85s
60:	learn: 26.9094739	total: 807ms	remaining: 1.84s
61:	learn: 26.7248026	total: 822ms	remaining: 1.83s
62:	learn: 26.5544946	total: 835ms	remaining: 1.82s
63:	learn: 26.3149124	total: 849ms	remaining: 1.8s
64:	learn: 26.1305605	total: 863ms	remaining: 1.79s
65:	learn: 25.9647345	total: 876ms	remaining: 1.78s
66:	learn: 25.9486619	total: 876ms	remaining: 1.74s
67:	learn: 25.7514773	total: 888ms	remaining: 1.72s
68:	learn: 25.5914153	total: 901ms	remaining: 1.71s
69:	learn: 25.4418716	total: 913ms	remaining: 1.7s
70:	learn: 25.3153784	total: 926ms	remaining: 1.68s
71:	learn: 25.1866820	total: 938ms	remaining: 1.67s
72:	learn: 25.0569396	total: 955ms	remaining: 1.66s
73:	learn: 24.9216649	total: 974ms	remaining: 1.66s
74:	learn: 24.7866921	total: 990ms	remaining: 1.65s
75:	learn: 24.6255132	total: 994ms	remaining: 1.62s
76:	learn: 24.5131076	total: 1.01s	remaining: 1.61s
77:	learn: 24.3654371	total: 1.02s	remaining: 1.6s
78:	learn: 24.2212122	total: 1.03s	remaining: 1.58s
79:	learn: 24.0783049	total: 1.05s	remaining: 1.57s
80:	learn: 23.9731510	total: 1.06s	remaining: 1.56s
81:	learn: 23.8713141	total: 1.08s	remaining: 1.55s
82:	learn: 23.7635666	total: 1.09s	remaining: 1.53s
83:	learn: 23.6665356	total: 1.1s	remaining: 1.52s
84:	learn: 23.5447965	total: 1.11s	remaining: 1.51s
85:	learn: 23.4122832	total: 1.13s	remaining: 1.49s
86:	learn: 23.3355590	total: 1.14s	remaining: 1.48s
87:	learn: 23.2416701	total: 1.15s	remaining: 1.47s
88:	learn: 23.1214363	total: 1.16s	remaining: 1.45s
89:	learn: 23.0108340	total: 1.18s	remaining: 1.44s
90:	learn: 22.9164577	total: 1.2s	remaining: 1.43s
91:	learn: 22.7857812	total: 1.21s	remaining: 1.42s
92:	learn: 22.7460534	total: 1.21s	remaining: 1.39s
93:	learn: 22.6437072	total: 1.22s	remaining: 1.38s
94:	learn: 22.5934981	total: 1.24s	remaining: 1.37s
95:	learn: 22.4821095	total: 1.25s	remaining: 1.35s
96:	learn: 22.3913810	total: 1.26s	remaining: 1.34s
97:	learn: 22.2496946	total: 1.27s	remaining: 1.32s
98:	learn: 22.1724244	total: 1.28s	remaining: 1.31s
99:	learn: 22.0500554	total: 1.3s	remaining: 1.3s
100:	learn: 21.9566566	total: 1.31s	remaining: 1.28s
101:	learn: 21.8563483	total: 1.32s	remaining: 1.27s
102:	learn: 21.7553972	total: 1.33s	remaining: 1.26s
103:	learn: 21.6792686	total: 1.35s	remaining: 1.24s
104:	learn: 21.6079754	total: 1.36s	remaining: 1.23s
105:	learn: 21.5929760	total: 1.36s	remaining: 1.21s
106:	learn: 21.5018932	total: 1.37s	remaining: 1.19s
107:	learn: 21.3895189	total: 1.39s	remaining: 1.19s
108:	learn: 21.2905259	total: 1.41s	remaining: 1.18s
109:	learn: 21.1953813	total: 1.43s	remaining: 1.17s
110:	learn: 21.1006813	total: 1.44s	remaining: 1.16s
111:	learn: 20.9982205	total: 1.46s	remaining: 1.14s
112:	learn: 20.8903837	total: 1.47s	remaining: 1.13s
113:	learn: 20.8009606	total: 1.48s	remaining: 1.12s
114:	learn: 20.7355579	total: 1.49s	remaining: 1.1s
115:	learn: 20.6237427	total: 1.51s	remaining: 1.09s
116:	learn: 20.5455394	total: 1.52s	remaining: 1.08s
117:	learn: 20.4565531	total: 1.53s	remaining: 1.06s
118:	learn: 20.3850600	total: 1.54s	remaining: 1.05s
119:	learn: 20.2960184	total: 1.56s	remaining: 1.04s
120:	learn: 20.2227619	total: 1.57s	remaining: 1.03s
121:	learn: 20.1673058	total: 1.59s	remaining: 1.01s
122:	learn: 20.0830457	total: 1.61s	remaining: 1.01s
123:	learn: 19.9978525	total: 1.62s	remaining: 996ms
124:	learn: 19.9026649	total: 1.64s	remaining: 984ms
125:	learn: 19.8301038	total: 1.65s	remaining: 971ms
126:	learn: 19.7214176	total: 1.67s	remaining: 959ms
127:	learn: 19.6370517	total: 1.68s	remaining: 946ms
128:	learn: 19.5552843	total: 1.7s	remaining: 933ms
129:	learn: 19.4970036	total: 1.71s	remaining: 921ms
130:	learn: 19.3965589	total: 1.72s	remaining: 908ms
131:	learn: 19.3347552	total: 1.74s	remaining: 895ms
132:	learn: 19.2762190	total: 1.75s	remaining: 882ms
133:	learn: 19.2232518	total: 1.76s	remaining: 870ms
134:	learn: 19.1475310	total: 1.78s	remaining: 857ms
135:	learn: 19.0805701	total: 1.79s	remaining: 844ms
136:	learn: 19.0128371	total: 1.81s	remaining: 832ms
137:	learn: 18.9680086	total: 1.83s	remaining: 823ms
138:	learn: 18.9174216	total: 1.85s	remaining: 811ms
139:	learn: 18.8680366	total: 1.86s	remaining: 798ms
140:	learn: 18.7829878	total: 1.88s	remaining: 785ms
141:	learn: 18.7107500	total: 1.89s	remaining: 772ms
142:	learn: 18.6421677	total: 1.91s	remaining: 760ms
143:	learn: 18.5753031	total: 1.92s	remaining: 747ms
144:	learn: 18.4862395	total: 1.94s	remaining: 734ms
145:	learn: 18.4082316	total: 1.95s	remaining: 721ms
146:	learn: 18.3266085	total: 1.96s	remaining: 708ms
147:	learn: 18.2506431	total: 1.98s	remaining: 695ms
148:	learn: 18.1796791	total: 1.99s	remaining: 681ms
149:	learn: 18.1306152	total: 2s	remaining: 668ms
150:	learn: 18.0573844	total: 2.02s	remaining: 657ms
151:	learn: 18.0069354	total: 2.04s	remaining: 645ms
152:	learn: 17.9455723	total: 2.05s	remaining: 631ms
153:	learn: 17.8576984	total: 2.07s	remaining: 617ms
154:	learn: 17.7866536	total: 2.08s	remaining: 604ms
155:	learn: 17.7320554	total: 2.09s	remaining: 590ms
156:	learn: 17.6595894	total: 2.1s	remaining: 576ms
157:	learn: 17.5919900	total: 2.12s	remaining: 563ms
158:	learn: 17.5501369	total: 2.13s	remaining: 549ms
159:	learn: 17.4711366	total: 2.14s	remaining: 535ms
160:	learn: 17.4031363	total: 2.15s	remaining: 522ms
161:	learn: 17.3608073	total: 2.17s	remaining: 508ms
162:	learn: 17.3074670	total: 2.18s	remaining: 495ms
163:	learn: 17.2770806	total: 2.19s	remaining: 481ms
164:	learn: 17.2372800	total: 2.2s	remaining: 468ms
165:	learn: 17.1665382	total: 2.22s	remaining: 454ms
166:	learn: 17.0882798	total: 2.24s	remaining: 442ms
167:	learn: 17.0414853	total: 2.25s	remaining: 430ms
168:	learn: 17.0030811	total: 2.27s	remaining: 416ms
169:	learn: 16.9593570	total: 2.28s	remaining: 403ms
170:	learn: 16.9162939	total: 2.29s	remaining: 389ms
171:	learn: 16.8558710	total: 2.31s	remaining: 376ms
172:	learn: 16.8279565	total: 2.32s	remaining: 363ms
173:	learn: 16.7583842	total: 2.33s	remaining: 349ms
174:	learn: 16.7082108	total: 2.35s	remaining: 335ms
175:	learn: 16.6502448	total: 2.36s	remaining: 322ms
176:	learn: 16.5721270	total: 2.37s	remaining: 308ms
177:	learn: 16.5198206	total: 2.39s	remaining: 295ms
178:	learn: 16.4793099	total: 2.4s	remaining: 282ms
179:	learn: 16.4046956	total: 2.41s	remaining: 268ms
180:	learn: 16.3542826	total: 2.43s	remaining: 255ms
181:	learn: 16.2884172	total: 2.45s	remaining: 242ms
182:	learn: 16.2441536	total: 2.46s	remaining: 229ms
183:	learn: 16.1740433	total: 2.47s	remaining: 215ms
184:	learn: 16.1064635	total: 2.48s	remaining: 202ms
185:	learn: 16.0581162	total: 2.5s	remaining: 188ms
186:	learn: 16.0005626	total: 2.51s	remaining: 175ms
187:	learn: 15.9542569	total: 2.52s	remaining: 161ms
188:	learn: 15.9208452	total: 2.54s	remaining: 148ms
189:	learn: 15.8668580	total: 2.55s	remaining: 134ms
190:	learn: 15.8017183	total: 2.56s	remaining: 121ms
191:	learn: 15.7604054	total: 2.57s	remaining: 107ms
192:	learn: 15.7088199	total: 2.59s	remaining: 93.8ms
193:	learn: 15.6408719	total: 2.6s	remaining: 80.4ms
194:	learn: 15.5801848	total: 2.62s	remaining: 67.1ms
195:	learn: 15.5195155	total: 2.63s	remaining: 53.7ms
196:	learn: 15.4596622	total: 2.65s	remaining: 40.4ms
197:	learn: 15.4262513	total: 2.67s	remaining: 27ms
198:	learn: 15.3892694	total: 2.68s	remaining: 13.5ms
199:	learn: 15.3258600	total: 2.7s	remaining: 0us
0:	learn: 46.1737882	total: 13.3ms	remaining: 2.66s
1:	learn: 45.4520044	total: 21.3ms	remaining: 2.11s
2:	learn: 45.0712613	total: 35.1ms	remaining: 2.3s
3:	learn: 44.4457890	total: 48.6ms	remaining: 2.38s
4:	learn: 43.9047401	total: 68.7ms	remaining: 2.68s
5:	learn: 43.3984138	total: 82.5ms	remaining: 2.67s
6:	learn: 43.0280895	total: 96.6ms	remaining: 2.66s
7:	learn: 42.6728829	total: 109ms	remaining: 2.62s
8:	learn: 42.0283731	total: 122ms	remaining: 2.58s
9:	learn: 41.4824619	total: 135ms	remaining: 2.56s
10:	learn: 41.1526236	total: 147ms	remaining: 2.53s
11:	learn: 40.6345297	total: 160ms	remaining: 2.5s
12:	learn: 40.5265379	total: 161ms	remaining: 2.31s
13:	learn: 40.0618320	total: 173ms	remaining: 2.3s
14:	learn: 39.7463253	total: 186ms	remaining: 2.29s
15:	learn: 39.3126131	total: 199ms	remaining: 2.28s
16:	learn: 38.8978481	total: 211ms	remaining: 2.27s
17:	learn: 38.3600803	total: 223ms	remaining: 2.25s
18:	learn: 37.9697709	total: 227ms	remaining: 2.16s
19:	learn: 37.6592421	total: 240ms	remaining: 2.15s
20:	learn: 37.5825287	total: 240ms	remaining: 2.05s
21:	learn: 37.1758511	total: 252ms	remaining: 2.04s
22:	learn: 36.9226265	total: 265ms	remaining: 2.04s
23:	learn: 36.4830964	total: 278ms	remaining: 2.04s
24:	learn: 36.2956750	total: 296ms	remaining: 2.07s
25:	learn: 36.2646036	total: 297ms	remaining: 1.99s
26:	learn: 36.1010228	total: 317ms	remaining: 2.03s
27:	learn: 35.9338601	total: 331ms	remaining: 2.03s
28:	learn: 35.6285593	total: 344ms	remaining: 2.03s
29:	learn: 35.4083002	total: 357ms	remaining: 2.02s
30:	learn: 35.0885917	total: 370ms	remaining: 2.02s
31:	learn: 34.8838570	total: 384ms	remaining: 2.02s
32:	learn: 34.6938582	total: 397ms	remaining: 2.01s
33:	learn: 34.3973598	total: 409ms	remaining: 2s
34:	learn: 34.1237528	total: 421ms	remaining: 1.98s
35:	learn: 33.9305934	total: 433ms	remaining: 1.97s
36:	learn: 33.6681445	total: 446ms	remaining: 1.96s
37:	learn: 33.4661390	total: 458ms	remaining: 1.95s
38:	learn: 33.2201400	total: 471ms	remaining: 1.94s
39:	learn: 33.0285883	total: 484ms	remaining: 1.93s
40:	learn: 32.7765737	total: 504ms	remaining: 1.95s
41:	learn: 32.6197427	total: 518ms	remaining: 1.95s
42:	learn: 32.3330742	total: 522ms	remaining: 1.91s
43:	learn: 32.0626517	total: 534ms	remaining: 1.89s
44:	learn: 31.8298751	total: 546ms	remaining: 1.88s
45:	learn: 31.6245952	total: 558ms	remaining: 1.87s
46:	learn: 31.4127977	total: 571ms	remaining: 1.86s
47:	learn: 31.2323682	total: 583ms	remaining: 1.85s
48:	learn: 31.0303595	total: 595ms	remaining: 1.83s
49:	learn: 30.8138769	total: 608ms	remaining: 1.82s
50:	learn: 30.6107924	total: 621ms	remaining: 1.81s
51:	learn: 30.5113895	total: 634ms	remaining: 1.8s
52:	learn: 30.2906289	total: 638ms	remaining: 1.77s
53:	learn: 30.1102964	total: 650ms	remaining: 1.76s
54:	learn: 29.9521329	total: 663ms	remaining: 1.75s
55:	learn: 29.7908429	total: 675ms	remaining: 1.74s
56:	learn: 29.6074499	total: 689ms	remaining: 1.73s
57:	learn: 29.4529666	total: 710ms	remaining: 1.74s
58:	learn: 29.2799671	total: 724ms	remaining: 1.73s
59:	learn: 29.1306800	total: 737ms	remaining: 1.72s
60:	learn: 28.9840926	total: 751ms	remaining: 1.71s
61:	learn: 28.8477871	total: 763ms	remaining: 1.7s
62:	learn: 28.6349154	total: 776ms	remaining: 1.69s
63:	learn: 28.4837277	total: 790ms	remaining: 1.68s
64:	learn: 28.3123360	total: 804ms	remaining: 1.67s
65:	learn: 28.1504380	total: 818ms	remaining: 1.66s
66:	learn: 27.9887756	total: 831ms	remaining: 1.65s
67:	learn: 27.8424203	total: 845ms	remaining: 1.64s
68:	learn: 27.7591585	total: 859ms	remaining: 1.63s
69:	learn: 27.6770504	total: 873ms	remaining: 1.62s
70:	learn: 27.5634581	total: 888ms	remaining: 1.61s
71:	learn: 27.4144488	total: 906ms	remaining: 1.61s
72:	learn: 27.3110985	total: 921ms	remaining: 1.6s
73:	learn: 27.1917304	total: 935ms	remaining: 1.59s
74:	learn: 27.0592065	total: 949ms	remaining: 1.58s
75:	learn: 26.9561470	total: 963ms	remaining: 1.57s
76:	learn: 26.8227633	total: 977ms	remaining: 1.56s
77:	learn: 26.7135435	total: 990ms	remaining: 1.55s
78:	learn: 26.5934052	total: 1s	remaining: 1.54s
79:	learn: 26.4589208	total: 1.02s	remaining: 1.53s
80:	learn: 26.3564001	total: 1.03s	remaining: 1.52s
81:	learn: 26.2548634	total: 1.05s	remaining: 1.5s
82:	learn: 26.1322313	total: 1.06s	remaining: 1.5s
83:	learn: 26.0247080	total: 1.07s	remaining: 1.49s
84:	learn: 25.9338695	total: 1.08s	remaining: 1.47s
85:	learn: 25.8097906	total: 1.1s	remaining: 1.46s
86:	learn: 25.7578809	total: 1.12s	remaining: 1.46s
87:	learn: 25.6231522	total: 1.14s	remaining: 1.45s
88:	learn: 25.5543183	total: 1.15s	remaining: 1.44s
89:	learn: 25.4967844	total: 1.17s	remaining: 1.42s
90:	learn: 25.4127099	total: 1.18s	remaining: 1.41s
91:	learn: 25.3307532	total: 1.19s	remaining: 1.4s
92:	learn: 25.2187306	total: 1.21s	remaining: 1.39s
93:	learn: 25.1150153	total: 1.22s	remaining: 1.37s
94:	learn: 25.0545559	total: 1.23s	remaining: 1.36s
95:	learn: 24.9540322	total: 1.24s	remaining: 1.35s
96:	learn: 24.8884772	total: 1.25s	remaining: 1.33s
97:	learn: 24.8244764	total: 1.27s	remaining: 1.32s
98:	learn: 24.7192988	total: 1.28s	remaining: 1.31s
99:	learn: 24.6083365	total: 1.29s	remaining: 1.29s
100:	learn: 24.5518560	total: 1.31s	remaining: 1.29s
101:	learn: 24.4385716	total: 1.33s	remaining: 1.28s
102:	learn: 24.3427493	total: 1.34s	remaining: 1.27s
103:	learn: 24.2909973	total: 1.36s	remaining: 1.25s
104:	learn: 24.2202250	total: 1.37s	remaining: 1.24s
105:	learn: 24.1605361	total: 1.38s	remaining: 1.23s
106:	learn: 24.0728379	total: 1.4s	remaining: 1.21s
107:	learn: 23.9627559	total: 1.41s	remaining: 1.2s
108:	learn: 23.8956290	total: 1.42s	remaining: 1.19s
109:	learn: 23.7889651	total: 1.43s	remaining: 1.17s
110:	learn: 23.7295710	total: 1.45s	remaining: 1.16s
111:	learn: 23.6975936	total: 1.46s	remaining: 1.15s
112:	learn: 23.6253454	total: 1.47s	remaining: 1.13s
113:	learn: 23.5706048	total: 1.48s	remaining: 1.12s
114:	learn: 23.4529381	total: 1.5s	remaining: 1.1s
115:	learn: 23.3824496	total: 1.51s	remaining: 1.09s
116:	learn: 23.2941387	total: 1.53s	remaining: 1.08s
117:	learn: 23.1961893	total: 1.54s	remaining: 1.07s
118:	learn: 23.0866671	total: 1.56s	remaining: 1.06s
119:	learn: 22.9856833	total: 1.57s	remaining: 1.05s
120:	learn: 22.9436878	total: 1.59s	remaining: 1.03s
121:	learn: 22.8914163	total: 1.6s	remaining: 1.02s
122:	learn: 22.8415694	total: 1.61s	remaining: 1.01s
123:	learn: 22.7824402	total: 1.63s	remaining: 997ms
124:	learn: 22.7024020	total: 1.64s	remaining: 984ms
125:	learn: 22.6066169	total: 1.65s	remaining: 970ms
126:	learn: 22.5172995	total: 1.66s	remaining: 956ms
127:	learn: 22.4550185	total: 1.68s	remaining: 943ms
128:	learn: 22.3946238	total: 1.69s	remaining: 929ms
129:	learn: 22.3424458	total: 1.7s	remaining: 916ms
130:	learn: 22.2684742	total: 1.71s	remaining: 903ms
131:	learn: 22.2216367	total: 1.73s	remaining: 892ms
132:	learn: 22.1512493	total: 1.75s	remaining: 880ms
133:	learn: 22.0717608	total: 1.76s	remaining: 868ms
134:	learn: 22.0309977	total: 1.77s	remaining: 854ms
135:	learn: 21.9828015	total: 1.79s	remaining: 842ms
136:	learn: 21.9145406	total: 1.8s	remaining: 829ms
137:	learn: 21.8657376	total: 1.82s	remaining: 816ms
138:	learn: 21.7625285	total: 1.83s	remaining: 803ms
139:	learn: 21.6896849	total: 1.84s	remaining: 790ms
140:	learn: 21.6336155	total: 1.86s	remaining: 777ms
141:	learn: 21.5475005	total: 1.87s	remaining: 765ms
142:	learn: 21.4581081	total: 1.89s	remaining: 752ms
143:	learn: 21.3999602	total: 1.9s	remaining: 739ms
144:	learn: 21.3476074	total: 1.91s	remaining: 726ms
145:	learn: 21.2686709	total: 1.93s	remaining: 713ms
146:	learn: 21.2279066	total: 1.94s	remaining: 701ms
147:	learn: 21.1556089	total: 1.96s	remaining: 688ms
148:	learn: 21.0984823	total: 1.98s	remaining: 678ms
149:	learn: 20.9820880	total: 2s	remaining: 666ms
150:	learn: 20.9106417	total: 2.01s	remaining: 653ms
151:	learn: 20.8423459	total: 2.03s	remaining: 640ms
152:	learn: 20.7950736	total: 2.04s	remaining: 627ms
153:	learn: 20.7554120	total: 2.05s	remaining: 614ms
154:	learn: 20.7084574	total: 2.07s	remaining: 601ms
155:	learn: 20.6119772	total: 2.08s	remaining: 588ms
156:	learn: 20.5726797	total: 2.1s	remaining: 574ms
157:	learn: 20.4997054	total: 2.11s	remaining: 561ms
158:	learn: 20.4265788	total: 2.12s	remaining: 547ms
159:	learn: 20.3896959	total: 2.13s	remaining: 533ms
160:	learn: 20.3461939	total: 2.15s	remaining: 520ms
161:	learn: 20.3123101	total: 2.16s	remaining: 506ms
162:	learn: 20.2771866	total: 2.17s	remaining: 493ms
163:	learn: 20.2541920	total: 2.2s	remaining: 483ms
164:	learn: 20.2203385	total: 2.21s	remaining: 469ms
165:	learn: 20.1676520	total: 2.23s	remaining: 456ms
166:	learn: 20.1357662	total: 2.24s	remaining: 442ms
167:	learn: 20.1061575	total: 2.25s	remaining: 429ms
168:	learn: 20.0774864	total: 2.26s	remaining: 415ms
169:	learn: 20.0471409	total: 2.27s	remaining: 402ms
170:	learn: 20.0045577	total: 2.29s	remaining: 388ms
171:	learn: 19.9387232	total: 2.3s	remaining: 374ms
172:	learn: 19.8990864	total: 2.31s	remaining: 361ms
173:	learn: 19.8268740	total: 2.33s	remaining: 347ms
174:	learn: 19.8085513	total: 2.34s	remaining: 334ms
175:	learn: 19.7264685	total: 2.35s	remaining: 320ms
176:	learn: 19.6942352	total: 2.36s	remaining: 307ms
177:	learn: 19.6678519	total: 2.38s	remaining: 294ms
178:	learn: 19.5985912	total: 2.39s	remaining: 280ms
179:	learn: 19.5747039	total: 2.41s	remaining: 268ms
180:	learn: 19.5579697	total: 2.42s	remaining: 255ms
181:	learn: 19.5185189	total: 2.44s	remaining: 241ms
182:	learn: 19.5043140	total: 2.45s	remaining: 228ms
183:	learn: 19.4121879	total: 2.46s	remaining: 214ms
184:	learn: 19.3722227	total: 2.48s	remaining: 201ms
185:	learn: 19.3595546	total: 2.49s	remaining: 188ms
186:	learn: 19.3257434	total: 2.5s	remaining: 174ms
187:	learn: 19.3048362	total: 2.52s	remaining: 161ms
188:	learn: 19.2885314	total: 2.53s	remaining: 147ms
189:	learn: 19.2677091	total: 2.54s	remaining: 134ms
190:	learn: 19.1979977	total: 2.55s	remaining: 120ms
191:	learn: 19.1609348	total: 2.57s	remaining: 107ms
192:	learn: 19.1401970	total: 2.58s	remaining: 93.6ms
193:	learn: 19.1151943	total: 2.59s	remaining: 80.2ms
194:	learn: 19.0905188	total: 2.61s	remaining: 66.8ms
195:	learn: 19.0463928	total: 2.63s	remaining: 53.6ms
196:	learn: 19.0260219	total: 2.64s	remaining: 40.2ms
197:	learn: 19.0016911	total: 2.65s	remaining: 26.8ms
198:	learn: 18.9768328	total: 2.67s	remaining: 13.4ms
199:	learn: 18.9666575	total: 2.68s	remaining: 0us
0:	learn: 46.8597119	total: 12.3ms	remaining: 2.44s
1:	learn: 46.3377954	total: 19ms	remaining: 1.88s
2:	learn: 45.7907719	total: 31.8ms	remaining: 2.09s
3:	learn: 45.0827604	total: 45.5ms	remaining: 2.23s
4:	learn: 44.4581466	total: 59.9ms	remaining: 2.33s
5:	learn: 43.9410703	total: 74.6ms	remaining: 2.41s
6:	learn: 43.4345680	total: 90ms	remaining: 2.48s
7:	learn: 43.0069410	total: 114ms	remaining: 2.73s
8:	learn: 42.4393411	total: 124ms	remaining: 2.63s
9:	learn: 42.1646732	total: 139ms	remaining: 2.64s
10:	learn: 41.7746717	total: 153ms	remaining: 2.63s
11:	learn: 41.1882097	total: 168ms	remaining: 2.63s
12:	learn: 40.7778997	total: 182ms	remaining: 2.62s
13:	learn: 40.3222058	total: 197ms	remaining: 2.62s
14:	learn: 39.9360949	total: 211ms	remaining: 2.61s
15:	learn: 39.5900045	total: 225ms	remaining: 2.59s
16:	learn: 39.2244003	total: 239ms	remaining: 2.58s
17:	learn: 38.9665946	total: 253ms	remaining: 2.56s
18:	learn: 38.7439015	total: 268ms	remaining: 2.55s
19:	learn: 38.3164162	total: 282ms	remaining: 2.54s
20:	learn: 37.9742033	total: 300ms	remaining: 2.55s
21:	learn: 37.5821295	total: 317ms	remaining: 2.57s
22:	learn: 37.2386223	total: 333ms	remaining: 2.56s
23:	learn: 36.8196698	total: 336ms	remaining: 2.46s
24:	learn: 36.6502294	total: 350ms	remaining: 2.45s
25:	learn: 36.2635217	total: 362ms	remaining: 2.42s
26:	learn: 35.9726978	total: 375ms	remaining: 2.4s
27:	learn: 35.7161847	total: 387ms	remaining: 2.38s
28:	learn: 35.4012764	total: 400ms	remaining: 2.36s
29:	learn: 35.1657331	total: 412ms	remaining: 2.34s
30:	learn: 34.9224250	total: 425ms	remaining: 2.31s
31:	learn: 34.6124561	total: 438ms	remaining: 2.3s
32:	learn: 34.3727795	total: 451ms	remaining: 2.28s
33:	learn: 34.0964434	total: 463ms	remaining: 2.26s
34:	learn: 33.9001623	total: 476ms	remaining: 2.24s
35:	learn: 33.6601006	total: 488ms	remaining: 2.22s
36:	learn: 33.5813168	total: 490ms	remaining: 2.16s
37:	learn: 33.3571982	total: 503ms	remaining: 2.14s
38:	learn: 33.2240748	total: 524ms	remaining: 2.16s
39:	learn: 33.0133919	total: 542ms	remaining: 2.17s
40:	learn: 32.8360021	total: 555ms	remaining: 2.15s
41:	learn: 32.5897802	total: 569ms	remaining: 2.14s
42:	learn: 32.3474720	total: 582ms	remaining: 2.13s
43:	learn: 32.0979582	total: 596ms	remaining: 2.11s
44:	learn: 31.9280653	total: 600ms	remaining: 2.07s
45:	learn: 31.7301096	total: 614ms	remaining: 2.06s
46:	learn: 31.5504882	total: 627ms	remaining: 2.04s
47:	learn: 31.3557803	total: 640ms	remaining: 2.03s
48:	learn: 31.1113979	total: 653ms	remaining: 2.01s
49:	learn: 30.9599086	total: 666ms	remaining: 2s
50:	learn: 30.8162084	total: 678ms	remaining: 1.98s
51:	learn: 30.6631394	total: 691ms	remaining: 1.97s
52:	learn: 30.4597718	total: 709ms	remaining: 1.97s
53:	learn: 30.2495092	total: 725ms	remaining: 1.96s
54:	learn: 30.1402773	total: 739ms	remaining: 1.95s
55:	learn: 29.9476521	total: 752ms	remaining: 1.93s
56:	learn: 29.7561408	total: 765ms	remaining: 1.92s
57:	learn: 29.6749222	total: 778ms	remaining: 1.9s
58:	learn: 29.4407521	total: 790ms	remaining: 1.89s
59:	learn: 29.2800390	total: 802ms	remaining: 1.87s
60:	learn: 29.1223027	total: 815ms	remaining: 1.86s
61:	learn: 29.0127428	total: 828ms	remaining: 1.84s
62:	learn: 28.7892940	total: 841ms	remaining: 1.83s
63:	learn: 28.6367935	total: 853ms	remaining: 1.81s
64:	learn: 28.5037809	total: 866ms	remaining: 1.8s
65:	learn: 28.3338553	total: 878ms	remaining: 1.78s
66:	learn: 28.2239844	total: 890ms	remaining: 1.77s
67:	learn: 28.0688556	total: 906ms	remaining: 1.76s
68:	learn: 27.9788997	total: 922ms	remaining: 1.75s
69:	learn: 27.8643631	total: 937ms	remaining: 1.74s
70:	learn: 27.7606408	total: 951ms	remaining: 1.73s
71:	learn: 27.6524947	total: 964ms	remaining: 1.71s
72:	learn: 27.5266733	total: 978ms	remaining: 1.7s
73:	learn: 27.4218405	total: 991ms	remaining: 1.69s
74:	learn: 27.3093470	total: 1s	remaining: 1.67s
75:	learn: 27.1968426	total: 1.02s	remaining: 1.66s
76:	learn: 27.0544433	total: 1.03s	remaining: 1.65s
77:	learn: 26.9215144	total: 1.05s	remaining: 1.64s
78:	learn: 26.7879033	total: 1.06s	remaining: 1.63s
79:	learn: 26.6393536	total: 1.07s	remaining: 1.61s
80:	learn: 26.5419541	total: 1.09s	remaining: 1.6s
81:	learn: 26.4940744	total: 1.1s	remaining: 1.59s
82:	learn: 26.3955285	total: 1.12s	remaining: 1.58s
83:	learn: 26.3027412	total: 1.14s	remaining: 1.57s
84:	learn: 26.2849743	total: 1.14s	remaining: 1.54s
85:	learn: 26.1581105	total: 1.16s	remaining: 1.53s
86:	learn: 26.0033406	total: 1.17s	remaining: 1.52s
87:	learn: 25.8805032	total: 1.18s	remaining: 1.51s
88:	learn: 25.8007067	total: 1.2s	remaining: 1.49s
89:	learn: 25.6593548	total: 1.21s	remaining: 1.48s
90:	learn: 25.5296290	total: 1.23s	remaining: 1.47s
91:	learn: 25.3829197	total: 1.24s	remaining: 1.45s
92:	learn: 25.2843975	total: 1.25s	remaining: 1.44s
93:	learn: 25.1969520	total: 1.27s	remaining: 1.43s
94:	learn: 25.0773719	total: 1.28s	remaining: 1.42s
95:	learn: 24.9814848	total: 1.29s	remaining: 1.4s
96:	learn: 24.8850463	total: 1.31s	remaining: 1.39s
97:	learn: 24.7857780	total: 1.32s	remaining: 1.37s
98:	learn: 24.6522292	total: 1.33s	remaining: 1.36s
99:	learn: 24.5799514	total: 1.35s	remaining: 1.35s
100:	learn: 24.4699109	total: 1.37s	remaining: 1.34s
101:	learn: 24.4002293	total: 1.38s	remaining: 1.33s
102:	learn: 24.2772421	total: 1.4s	remaining: 1.31s
103:	learn: 24.1862379	total: 1.41s	remaining: 1.3s
104:	learn: 24.1295176	total: 1.42s	remaining: 1.29s
105:	learn: 24.0485116	total: 1.44s	remaining: 1.27s
106:	learn: 23.9749271	total: 1.45s	remaining: 1.26s
107:	learn: 23.8858015	total: 1.46s	remaining: 1.25s
108:	learn: 23.7914972	total: 1.47s	remaining: 1.23s
109:	learn: 23.6956200	total: 1.49s	remaining: 1.22s
110:	learn: 23.6190777	total: 1.5s	remaining: 1.2s
111:	learn: 23.4900303	total: 1.51s	remaining: 1.19s
112:	learn: 23.4043594	total: 1.53s	remaining: 1.18s
113:	learn: 23.3009109	total: 1.55s	remaining: 1.17s
114:	learn: 23.2492042	total: 1.56s	remaining: 1.15s
115:	learn: 23.1502858	total: 1.57s	remaining: 1.14s
116:	learn: 23.0298968	total: 1.59s	remaining: 1.13s
117:	learn: 22.9368904	total: 1.6s	remaining: 1.11s
118:	learn: 22.8783977	total: 1.61s	remaining: 1.1s
119:	learn: 22.8327030	total: 1.63s	remaining: 1.08s
120:	learn: 22.7568987	total: 1.64s	remaining: 1.07s
121:	learn: 22.6974870	total: 1.65s	remaining: 1.05s
122:	learn: 22.6614507	total: 1.66s	remaining: 1.04s
123:	learn: 22.5694891	total: 1.67s	remaining: 1.03s
124:	learn: 22.5157956	total: 1.69s	remaining: 1.01s
125:	learn: 22.4463939	total: 1.7s	remaining: 998ms
126:	learn: 22.4017224	total: 1.71s	remaining: 984ms
127:	learn: 22.3231146	total: 1.72s	remaining: 970ms
128:	learn: 22.2902496	total: 1.74s	remaining: 956ms
129:	learn: 22.2168290	total: 1.75s	remaining: 945ms
130:	learn: 22.1156771	total: 1.77s	remaining: 934ms
131:	learn: 22.0180897	total: 1.79s	remaining: 921ms
132:	learn: 21.9718023	total: 1.8s	remaining: 907ms
133:	learn: 21.8761821	total: 1.81s	remaining: 894ms
134:	learn: 21.8244441	total: 1.83s	remaining: 880ms
135:	learn: 21.7599101	total: 1.84s	remaining: 867ms
136:	learn: 21.6873421	total: 1.85s	remaining: 853ms
137:	learn: 21.6326828	total: 1.87s	remaining: 839ms
138:	learn: 21.5493977	total: 1.88s	remaining: 825ms
139:	learn: 21.4801934	total: 1.89s	remaining: 811ms
140:	learn: 21.4130443	total: 1.9s	remaining: 797ms
141:	learn: 21.3084785	total: 1.92s	remaining: 783ms
142:	learn: 21.2332315	total: 1.93s	remaining: 769ms
143:	learn: 21.1520460	total: 1.94s	remaining: 755ms
144:	learn: 21.0868270	total: 1.96s	remaining: 743ms
145:	learn: 21.0484590	total: 1.97s	remaining: 730ms
146:	learn: 20.9722941	total: 1.99s	remaining: 716ms
147:	learn: 20.9385136	total: 2s	remaining: 703ms
148:	learn: 20.8477204	total: 2.01s	remaining: 689ms
149:	learn: 20.7921170	total: 2.03s	remaining: 676ms
150:	learn: 20.6990351	total: 2.04s	remaining: 663ms
151:	learn: 20.6219746	total: 2.06s	remaining: 649ms
152:	learn: 20.5734579	total: 2.07s	remaining: 636ms
153:	learn: 20.5465995	total: 2.08s	remaining: 623ms
154:	learn: 20.4450458	total: 2.1s	remaining: 609ms
155:	learn: 20.3421128	total: 2.11s	remaining: 596ms
156:	learn: 20.3122148	total: 2.13s	remaining: 583ms
157:	learn: 20.2632366	total: 2.14s	remaining: 569ms
158:	learn: 20.2167347	total: 2.16s	remaining: 557ms
159:	learn: 20.1512454	total: 2.18s	remaining: 545ms
160:	learn: 20.0949796	total: 2.19s	remaining: 532ms
161:	learn: 20.0497935	total: 2.21s	remaining: 518ms
162:	learn: 20.0004248	total: 2.22s	remaining: 505ms
163:	learn: 19.9168266	total: 2.24s	remaining: 491ms
164:	learn: 19.8562675	total: 2.25s	remaining: 478ms
165:	learn: 19.8394154	total: 2.27s	remaining: 464ms
166:	learn: 19.7685556	total: 2.28s	remaining: 451ms
167:	learn: 19.7268296	total: 2.29s	remaining: 437ms
168:	learn: 19.6762103	total: 2.31s	remaining: 424ms
169:	learn: 19.6046065	total: 2.32s	remaining: 410ms
170:	learn: 19.5586545	total: 2.33s	remaining: 396ms
171:	learn: 19.5173043	total: 2.35s	remaining: 382ms
172:	learn: 19.4892208	total: 2.36s	remaining: 369ms
173:	learn: 19.4404707	total: 2.38s	remaining: 356ms
174:	learn: 19.3558832	total: 2.4s	remaining: 342ms
175:	learn: 19.3014743	total: 2.41s	remaining: 328ms
176:	learn: 19.2538696	total: 2.42s	remaining: 315ms
177:	learn: 19.2176422	total: 2.43s	remaining: 301ms
178:	learn: 19.1364876	total: 2.44s	remaining: 287ms
179:	learn: 19.0612141	total: 2.46s	remaining: 273ms
180:	learn: 19.0378922	total: 2.47s	remaining: 259ms
181:	learn: 18.9683811	total: 2.48s	remaining: 246ms
182:	learn: 18.8857115	total: 2.5s	remaining: 232ms
183:	learn: 18.8495410	total: 2.51s	remaining: 218ms
184:	learn: 18.8036588	total: 2.52s	remaining: 204ms
185:	learn: 18.7880310	total: 2.53s	remaining: 191ms
186:	learn: 18.7165570	total: 2.55s	remaining: 177ms
187:	learn: 18.6945979	total: 2.56s	remaining: 163ms
188:	learn: 18.6660636	total: 2.57s	remaining: 150ms
189:	learn: 18.5778439	total: 2.59s	remaining: 136ms
190:	learn: 18.5162112	total: 2.61s	remaining: 123ms
191:	learn: 18.4509510	total: 2.62s	remaining: 109ms
192:	learn: 18.4260415	total: 2.64s	remaining: 95.7ms
193:	learn: 18.4050050	total: 2.65s	remaining: 82ms
194:	learn: 18.3379789	total: 2.66s	remaining: 68.3ms
195:	learn: 18.2682932	total: 2.68s	remaining: 54.6ms
196:	learn: 18.2228079	total: 2.69s	remaining: 41ms
197:	learn: 18.1953160	total: 2.7s	remaining: 27.3ms
198:	learn: 18.1741886	total: 2.71s	remaining: 13.6ms
199:	learn: 18.1483272	total: 2.73s	remaining: 0us
0:	learn: 27.6482572	total: 3.73ms	remaining: 370ms
1:	learn: 27.2599426	total: 7.36ms	remaining: 361ms
2:	learn: 26.9002728	total: 9.32ms	remaining: 301ms
3:	learn: 26.5017816	total: 13.4ms	remaining: 320ms
4:	learn: 26.1628708	total: 22ms	remaining: 418ms
5:	learn: 25.7978181	total: 28.9ms	remaining: 452ms
6:	learn: 25.4203755	total: 35.2ms	remaining: 467ms
7:	learn: 25.0838029	total: 39.3ms	remaining: 452ms
8:	learn: 24.7622554	total: 44.3ms	remaining: 448ms
9:	learn: 24.4550932	total: 48ms	remaining: 432ms
10:	learn: 24.1436008	total: 51.2ms	remaining: 415ms
11:	learn: 23.7856603	total: 54.7ms	remaining: 401ms
12:	learn: 23.5223689	total: 58.3ms	remaining: 390ms
13:	learn: 23.2814983	total: 61.6ms	remaining: 378ms
14:	learn: 23.0630409	total: 64.8ms	remaining: 367ms
15:	learn: 22.8886480	total: 68.1ms	remaining: 358ms
16:	learn: 22.5844732	total: 71.3ms	remaining: 348ms
17:	learn: 22.3783004	total: 74.4ms	remaining: 339ms
18:	learn: 22.1850545	total: 77.7ms	remaining: 331ms
19:	learn: 21.9499441	total: 81.1ms	remaining: 324ms
20:	learn: 21.7617479	total: 84.3ms	remaining: 317ms
21:	learn: 21.5486317	total: 87.4ms	remaining: 310ms
22:	learn: 21.3537292	total: 90.6ms	remaining: 303ms
23:	learn: 21.1589107	total: 93.7ms	remaining: 297ms
24:	learn: 20.9744280	total: 97ms	remaining: 291ms
25:	learn: 20.7875576	total: 100ms	remaining: 286ms
26:	learn: 20.6460173	total: 104ms	remaining: 281ms
27:	learn: 20.4914606	total: 107ms	remaining: 275ms
28:	learn: 20.3020029	total: 110ms	remaining: 270ms
29:	learn: 20.1098438	total: 113ms	remaining: 265ms
30:	learn: 19.9332141	total: 117ms	remaining: 259ms
31:	learn: 19.7902228	total: 120ms	remaining: 254ms
32:	learn: 19.6192763	total: 123ms	remaining: 249ms
33:	learn: 19.5211658	total: 126ms	remaining: 245ms
34:	learn: 19.3690360	total: 130ms	remaining: 241ms
35:	learn: 19.2619642	total: 133ms	remaining: 237ms
36:	learn: 19.1286903	total: 136ms	remaining: 232ms
37:	learn: 19.0141668	total: 140ms	remaining: 228ms
38:	learn: 18.8959642	total: 143ms	remaining: 223ms
39:	learn: 18.7837720	total: 146ms	remaining: 219ms
40:	learn: 18.6902324	total: 149ms	remaining: 215ms
41:	learn: 18.6024406	total: 153ms	remaining: 211ms
42:	learn: 18.4921541	total: 156ms	remaining: 207ms
43:	learn: 18.3760135	total: 159ms	remaining: 203ms
44:	learn: 18.2855158	total: 163ms	remaining: 199ms
45:	learn: 18.1851003	total: 166ms	remaining: 195ms
46:	learn: 18.0881818	total: 169ms	remaining: 191ms
47:	learn: 17.9840121	total: 172ms	remaining: 187ms
48:	learn: 17.8569341	total: 176ms	remaining: 183ms
49:	learn: 17.7325703	total: 179ms	remaining: 179ms
50:	learn: 17.6398047	total: 182ms	remaining: 175ms
51:	learn: 17.5518439	total: 185ms	remaining: 171ms
52:	learn: 17.4613171	total: 188ms	remaining: 167ms
53:	learn: 17.3908057	total: 192ms	remaining: 163ms
54:	learn: 17.3074769	total: 195ms	remaining: 159ms
55:	learn: 17.2202074	total: 198ms	remaining: 156ms
56:	learn: 17.1181492	total: 202ms	remaining: 152ms
57:	learn: 17.0182750	total: 206ms	remaining: 149ms
58:	learn: 16.9354347	total: 210ms	remaining: 146ms
59:	learn: 16.8580374	total: 213ms	remaining: 142ms
60:	learn: 16.7988650	total: 217ms	remaining: 139ms
61:	learn: 16.7117569	total: 222ms	remaining: 136ms
62:	learn: 16.6251948	total: 225ms	remaining: 132ms
63:	learn: 16.5795522	total: 229ms	remaining: 129ms
64:	learn: 16.4933713	total: 236ms	remaining: 127ms
65:	learn: 16.4351213	total: 242ms	remaining: 125ms
66:	learn: 16.3584748	total: 247ms	remaining: 122ms
67:	learn: 16.3070538	total: 253ms	remaining: 119ms
68:	learn: 16.2215777	total: 258ms	remaining: 116ms
69:	learn: 16.1576931	total: 263ms	remaining: 113ms
70:	learn: 16.0877074	total: 269ms	remaining: 110ms
71:	learn: 16.0207498	total: 273ms	remaining: 106ms
72:	learn: 15.9479131	total: 278ms	remaining: 103ms
73:	learn: 15.9005314	total: 282ms	remaining: 99ms
74:	learn: 15.8619401	total: 286ms	remaining: 95.4ms
75:	learn: 15.8009685	total: 291ms	remaining: 91.9ms
76:	learn: 15.7265206	total: 295ms	remaining: 88.2ms
77:	learn: 15.6616562	total: 300ms	remaining: 84.5ms
78:	learn: 15.6237097	total: 304ms	remaining: 80.8ms
79:	learn: 15.5776633	total: 308ms	remaining: 77.1ms
80:	learn: 15.5322280	total: 312ms	remaining: 73.3ms
81:	learn: 15.4798853	total: 317ms	remaining: 69.6ms
82:	learn: 15.4293283	total: 321ms	remaining: 65.8ms
83:	learn: 15.3941462	total: 325ms	remaining: 62ms
84:	learn: 15.3406194	total: 330ms	remaining: 58.2ms
85:	learn: 15.2847779	total: 334ms	remaining: 54.4ms
86:	learn: 15.2359620	total: 338ms	remaining: 50.5ms
87:	learn: 15.1908867	total: 343ms	remaining: 46.8ms
88:	learn: 15.1583829	total: 348ms	remaining: 43.1ms
89:	learn: 15.0900621	total: 352ms	remaining: 39.1ms
90:	learn: 15.0245432	total: 356ms	remaining: 35.2ms
91:	learn: 14.9874315	total: 360ms	remaining: 31.3ms
92:	learn: 14.9487677	total: 363ms	remaining: 27.3ms
93:	learn: 14.9012516	total: 367ms	remaining: 23.4ms
94:	learn: 14.8505353	total: 370ms	remaining: 19.5ms
95:	learn: 14.7891744	total: 374ms	remaining: 15.6ms
96:	learn: 14.7383577	total: 378ms	remaining: 11.7ms
97:	learn: 14.7100374	total: 381ms	remaining: 7.78ms
98:	learn: 14.6713180	total: 385ms	remaining: 3.89ms
99:	learn: 14.6359446	total: 389ms	remaining: 0us
0:	learn: 43.1567515	total: 3.79ms	remaining: 375ms
1:	learn: 42.3285464	total: 7.28ms	remaining: 357ms
2:	learn: 41.7830186	total: 10.9ms	remaining: 354ms
3:	learn: 41.0050750	total: 18.4ms	remaining: 441ms
4:	learn: 40.1967453	total: 23.8ms	remaining: 452ms
5:	learn: 39.5179125	total: 28.9ms	remaining: 453ms
6:	learn: 38.9358765	total: 34.4ms	remaining: 457ms
7:	learn: 38.4321042	total: 38.1ms	remaining: 438ms
8:	learn: 37.8097897	total: 42.6ms	remaining: 431ms
9:	learn: 37.2834651	total: 46.4ms	remaining: 417ms
10:	learn: 36.7318431	total: 49.8ms	remaining: 403ms
11:	learn: 36.0993568	total: 53.2ms	remaining: 390ms
12:	learn: 35.4409975	total: 56.3ms	remaining: 377ms
13:	learn: 34.9590929	total: 59.5ms	remaining: 366ms
14:	learn: 34.4708430	total: 62.7ms	remaining: 355ms
15:	learn: 33.9933200	total: 66.1ms	remaining: 347ms
16:	learn: 33.6054933	total: 69.9ms	remaining: 341ms
17:	learn: 33.2387432	total: 73.5ms	remaining: 335ms
18:	learn: 32.8578041	total: 76.8ms	remaining: 327ms
19:	learn: 32.5361694	total: 80ms	remaining: 320ms
20:	learn: 32.0996604	total: 83.4ms	remaining: 314ms
21:	learn: 31.7402509	total: 86.8ms	remaining: 308ms
22:	learn: 31.4978473	total: 90.2ms	remaining: 302ms
23:	learn: 31.1735711	total: 93.4ms	remaining: 296ms
24:	learn: 30.7141887	total: 96.8ms	remaining: 290ms
25:	learn: 30.3039643	total: 100ms	remaining: 285ms
26:	learn: 29.8331825	total: 103ms	remaining: 280ms
27:	learn: 29.4431235	total: 107ms	remaining: 275ms
28:	learn: 29.1249709	total: 110ms	remaining: 270ms
29:	learn: 28.8946701	total: 114ms	remaining: 265ms
30:	learn: 28.5385406	total: 117ms	remaining: 260ms
31:	learn: 28.2975532	total: 120ms	remaining: 256ms
32:	learn: 27.9495292	total: 124ms	remaining: 251ms
33:	learn: 27.6380196	total: 128ms	remaining: 248ms
34:	learn: 27.4017531	total: 131ms	remaining: 243ms
35:	learn: 27.2024880	total: 134ms	remaining: 239ms
36:	learn: 26.9557055	total: 138ms	remaining: 235ms
37:	learn: 26.7452312	total: 141ms	remaining: 230ms
38:	learn: 26.5562527	total: 144ms	remaining: 226ms
39:	learn: 26.3687035	total: 148ms	remaining: 221ms
40:	learn: 26.0629954	total: 151ms	remaining: 217ms
41:	learn: 25.9079361	total: 154ms	remaining: 213ms
42:	learn: 25.6215341	total: 157ms	remaining: 209ms
43:	learn: 25.4251321	total: 161ms	remaining: 205ms
44:	learn: 25.2547770	total: 164ms	remaining: 200ms
45:	learn: 25.1021558	total: 167ms	remaining: 196ms
46:	learn: 24.8892837	total: 171ms	remaining: 192ms
47:	learn: 24.6711225	total: 174ms	remaining: 188ms
48:	learn: 24.4535925	total: 177ms	remaining: 184ms
49:	learn: 24.2387567	total: 180ms	remaining: 180ms
50:	learn: 24.1112080	total: 183ms	remaining: 176ms
51:	learn: 23.9838750	total: 187ms	remaining: 172ms
52:	learn: 23.8247043	total: 190ms	remaining: 168ms
53:	learn: 23.7155239	total: 193ms	remaining: 164ms
54:	learn: 23.5065806	total: 196ms	remaining: 161ms
55:	learn: 23.3811052	total: 200ms	remaining: 157ms
56:	learn: 23.2778692	total: 203ms	remaining: 153ms
57:	learn: 23.1348173	total: 207ms	remaining: 150ms
58:	learn: 23.0065773	total: 210ms	remaining: 146ms
59:	learn: 22.9424201	total: 213ms	remaining: 142ms
60:	learn: 22.8253556	total: 217ms	remaining: 139ms
61:	learn: 22.7162584	total: 220ms	remaining: 135ms
62:	learn: 22.5800493	total: 224ms	remaining: 131ms
63:	learn: 22.4847771	total: 228ms	remaining: 128ms
64:	learn: 22.3720124	total: 231ms	remaining: 125ms
65:	learn: 22.2572523	total: 235ms	remaining: 121ms
66:	learn: 22.1886012	total: 239ms	remaining: 118ms
67:	learn: 22.1164215	total: 245ms	remaining: 116ms
68:	learn: 21.9592518	total: 252ms	remaining: 113ms
69:	learn: 21.8428611	total: 263ms	remaining: 113ms
70:	learn: 21.7443159	total: 269ms	remaining: 110ms
71:	learn: 21.6558527	total: 274ms	remaining: 107ms
72:	learn: 21.5671531	total: 279ms	remaining: 103ms
73:	learn: 21.4543087	total: 283ms	remaining: 99.4ms
74:	learn: 21.3914084	total: 287ms	remaining: 95.7ms
75:	learn: 21.3011488	total: 291ms	remaining: 92ms
76:	learn: 21.2503549	total: 296ms	remaining: 88.6ms
77:	learn: 21.1329845	total: 301ms	remaining: 84.8ms
78:	learn: 21.0799972	total: 305ms	remaining: 81.1ms
79:	learn: 21.0086134	total: 309ms	remaining: 77.3ms
80:	learn: 20.9554508	total: 313ms	remaining: 73.3ms
81:	learn: 20.8967003	total: 316ms	remaining: 69.4ms
82:	learn: 20.7930312	total: 320ms	remaining: 65.5ms
83:	learn: 20.7520758	total: 325ms	remaining: 61.8ms
84:	learn: 20.6278115	total: 329ms	remaining: 58.1ms
85:	learn: 20.4813506	total: 334ms	remaining: 54.4ms
86:	learn: 20.4126821	total: 337ms	remaining: 50.4ms
87:	learn: 20.3830832	total: 341ms	remaining: 46.5ms
88:	learn: 20.2918633	total: 344ms	remaining: 42.6ms
89:	learn: 20.2023213	total: 348ms	remaining: 38.6ms
90:	learn: 20.1115974	total: 351ms	remaining: 34.7ms
91:	learn: 20.0017655	total: 355ms	remaining: 30.9ms
92:	learn: 19.9414949	total: 358ms	remaining: 26.9ms
93:	learn: 19.8993254	total: 361ms	remaining: 23.1ms
94:	learn: 19.7908417	total: 365ms	remaining: 19.2ms
95:	learn: 19.7366388	total: 368ms	remaining: 15.3ms
96:	learn: 19.6824266	total: 371ms	remaining: 11.5ms
97:	learn: 19.5960554	total: 374ms	remaining: 7.64ms
98:	learn: 19.5515294	total: 378ms	remaining: 3.81ms
99:	learn: 19.5014849	total: 381ms	remaining: 0us
0:	learn: 46.9176085	total: 4.22ms	remaining: 418ms
1:	learn: 45.9191501	total: 7.93ms	remaining: 389ms
2:	learn: 45.3023837	total: 11.4ms	remaining: 368ms
3:	learn: 44.6127749	total: 14.8ms	remaining: 355ms
4:	learn: 44.0093053	total: 18.2ms	remaining: 345ms
5:	learn: 43.5038132	total: 21.8ms	remaining: 341ms
6:	learn: 42.7227700	total: 25.1ms	remaining: 333ms
7:	learn: 42.1235005	total: 32.1ms	remaining: 369ms
8:	learn: 41.6834513	total: 38.3ms	remaining: 387ms
9:	learn: 41.2253594	total: 43.2ms	remaining: 389ms
10:	learn: 40.5327035	total: 48.3ms	remaining: 391ms
11:	learn: 39.8572011	total: 52ms	remaining: 382ms
12:	learn: 39.3393627	total: 57.4ms	remaining: 384ms
13:	learn: 39.1295674	total: 60.9ms	remaining: 374ms
14:	learn: 38.4583601	total: 64.6ms	remaining: 366ms
15:	learn: 38.0883633	total: 68.1ms	remaining: 357ms
16:	learn: 37.4794371	total: 71.5ms	remaining: 349ms
17:	learn: 37.0255919	total: 75ms	remaining: 342ms
18:	learn: 36.4806106	total: 78.4ms	remaining: 334ms
19:	learn: 36.2266166	total: 81.8ms	remaining: 327ms
20:	learn: 35.8549064	total: 85.3ms	remaining: 321ms
21:	learn: 35.3785921	total: 88.8ms	remaining: 315ms
22:	learn: 35.0414098	total: 92.1ms	remaining: 308ms
23:	learn: 34.5992924	total: 95.3ms	remaining: 302ms
24:	learn: 34.1674144	total: 98.5ms	remaining: 296ms
25:	learn: 33.7582971	total: 102ms	remaining: 290ms
26:	learn: 33.4983133	total: 105ms	remaining: 284ms
27:	learn: 33.0829388	total: 108ms	remaining: 279ms
28:	learn: 32.8896246	total: 112ms	remaining: 273ms
29:	learn: 32.5811820	total: 115ms	remaining: 268ms
30:	learn: 32.2082440	total: 118ms	remaining: 263ms
31:	learn: 32.0896781	total: 119ms	remaining: 253ms
32:	learn: 31.8932976	total: 122ms	remaining: 248ms
33:	learn: 31.5815632	total: 126ms	remaining: 244ms
34:	learn: 31.1917020	total: 129ms	remaining: 240ms
35:	learn: 31.0217692	total: 133ms	remaining: 236ms
36:	learn: 30.7416876	total: 136ms	remaining: 231ms
37:	learn: 30.5787914	total: 140ms	remaining: 228ms
38:	learn: 30.3530018	total: 144ms	remaining: 225ms
39:	learn: 30.0475480	total: 148ms	remaining: 221ms
40:	learn: 29.8265556	total: 151ms	remaining: 217ms
41:	learn: 29.6014785	total: 155ms	remaining: 214ms
42:	learn: 29.3666391	total: 159ms	remaining: 211ms
43:	learn: 29.2173284	total: 162ms	remaining: 207ms
44:	learn: 29.0496312	total: 166ms	remaining: 203ms
45:	learn: 28.9124050	total: 169ms	remaining: 198ms
46:	learn: 28.7933802	total: 173ms	remaining: 195ms
47:	learn: 28.6704326	total: 176ms	remaining: 191ms
48:	learn: 28.4146326	total: 179ms	remaining: 187ms
49:	learn: 28.2911692	total: 183ms	remaining: 183ms
50:	learn: 28.1481785	total: 186ms	remaining: 179ms
51:	learn: 27.9853479	total: 189ms	remaining: 175ms
52:	learn: 27.7798663	total: 192ms	remaining: 171ms
53:	learn: 27.5892607	total: 196ms	remaining: 167ms
54:	learn: 27.4458591	total: 199ms	remaining: 163ms
55:	learn: 27.3240567	total: 203ms	remaining: 159ms
56:	learn: 27.1968560	total: 206ms	remaining: 156ms
57:	learn: 27.0303538	total: 209ms	remaining: 152ms
58:	learn: 26.8933408	total: 213ms	remaining: 148ms
59:	learn: 26.7459903	total: 216ms	remaining: 144ms
60:	learn: 26.5416813	total: 220ms	remaining: 140ms
61:	learn: 26.3691341	total: 223ms	remaining: 137ms
62:	learn: 26.2040079	total: 227ms	remaining: 133ms
63:	learn: 26.0703825	total: 230ms	remaining: 130ms
64:	learn: 25.9333118	total: 234ms	remaining: 126ms
65:	learn: 25.8335440	total: 237ms	remaining: 122ms
66:	learn: 25.6908598	total: 244ms	remaining: 120ms
67:	learn: 25.5884546	total: 250ms	remaining: 118ms
68:	learn: 25.4997131	total: 258ms	remaining: 116ms
69:	learn: 25.3394607	total: 264ms	remaining: 113ms
70:	learn: 25.1708228	total: 270ms	remaining: 110ms
71:	learn: 25.0597898	total: 275ms	remaining: 107ms
72:	learn: 24.9902100	total: 279ms	remaining: 103ms
73:	learn: 24.8427452	total: 283ms	remaining: 99.6ms
74:	learn: 24.7861428	total: 288ms	remaining: 95.8ms
75:	learn: 24.6812951	total: 292ms	remaining: 92.2ms
76:	learn: 24.5175000	total: 296ms	remaining: 88.5ms
77:	learn: 24.4737545	total: 301ms	remaining: 84.8ms
78:	learn: 24.4128351	total: 305ms	remaining: 81.1ms
79:	learn: 24.3079589	total: 310ms	remaining: 77.5ms
80:	learn: 24.2169091	total: 314ms	remaining: 73.7ms
81:	learn: 24.1006975	total: 318ms	remaining: 69.8ms
82:	learn: 23.9676423	total: 323ms	remaining: 66.1ms
83:	learn: 23.8391994	total: 327ms	remaining: 62.3ms
84:	learn: 23.6765758	total: 331ms	remaining: 58.5ms
85:	learn: 23.5639853	total: 335ms	remaining: 54.5ms
86:	learn: 23.4886973	total: 338ms	remaining: 50.5ms
87:	learn: 23.3778099	total: 342ms	remaining: 46.6ms
88:	learn: 23.2601930	total: 346ms	remaining: 42.7ms
89:	learn: 23.1947627	total: 349ms	remaining: 38.8ms
90:	learn: 23.1160204	total: 353ms	remaining: 34.9ms
91:	learn: 22.9602982	total: 357ms	remaining: 31ms
92:	learn: 22.8379683	total: 360ms	remaining: 27.1ms
93:	learn: 22.7801440	total: 364ms	remaining: 23.2ms
94:	learn: 22.6374647	total: 367ms	remaining: 19.3ms
95:	learn: 22.5999803	total: 371ms	remaining: 15.5ms
96:	learn: 22.5549839	total: 374ms	remaining: 11.6ms
97:	learn: 22.4852837	total: 378ms	remaining: 7.72ms
98:	learn: 22.3977327	total: 381ms	remaining: 3.85ms
99:	learn: 22.3182762	total: 385ms	remaining: 0us
0:	learn: 46.4569509	total: 3.58ms	remaining: 355ms
1:	learn: 45.5590310	total: 7.28ms	remaining: 357ms
2:	learn: 44.8510590	total: 11ms	remaining: 354ms
3:	learn: 44.1383546	total: 14.3ms	remaining: 343ms
4:	learn: 43.5859837	total: 17.8ms	remaining: 338ms
5:	learn: 43.0686057	total: 21.1ms	remaining: 331ms
6:	learn: 42.6923057	total: 24.8ms	remaining: 329ms
7:	learn: 42.1309688	total: 29.6ms	remaining: 340ms
8:	learn: 41.3980110	total: 35.6ms	remaining: 360ms
9:	learn: 41.1134422	total: 41.2ms	remaining: 371ms
10:	learn: 40.6825926	total: 46.5ms	remaining: 376ms
11:	learn: 39.9957002	total: 51.7ms	remaining: 379ms
12:	learn: 39.4592447	total: 55.4ms	remaining: 371ms
13:	learn: 39.1417579	total: 60.5ms	remaining: 371ms
14:	learn: 38.8251135	total: 63.8ms	remaining: 362ms
15:	learn: 38.5175085	total: 67ms	remaining: 352ms
16:	learn: 38.2322060	total: 70.3ms	remaining: 343ms
17:	learn: 37.8502072	total: 73.6ms	remaining: 335ms
18:	learn: 37.5948599	total: 76.7ms	remaining: 327ms
19:	learn: 37.3591823	total: 80.1ms	remaining: 320ms
20:	learn: 37.0542330	total: 83.4ms	remaining: 314ms
21:	learn: 36.5809976	total: 86.7ms	remaining: 307ms
22:	learn: 36.3718772	total: 89.8ms	remaining: 301ms
23:	learn: 35.9776353	total: 93ms	remaining: 294ms
24:	learn: 35.5645322	total: 96ms	remaining: 288ms
25:	learn: 35.3106255	total: 99.4ms	remaining: 283ms
26:	learn: 35.1585201	total: 103ms	remaining: 277ms
27:	learn: 34.8086383	total: 106ms	remaining: 272ms
28:	learn: 34.4353661	total: 109ms	remaining: 267ms
29:	learn: 34.1202525	total: 112ms	remaining: 262ms
30:	learn: 33.7360883	total: 116ms	remaining: 257ms
31:	learn: 33.6071680	total: 117ms	remaining: 248ms
32:	learn: 33.2612198	total: 120ms	remaining: 243ms
33:	learn: 33.0084668	total: 123ms	remaining: 239ms
34:	learn: 32.6098273	total: 126ms	remaining: 234ms
35:	learn: 32.4105060	total: 130ms	remaining: 231ms
36:	learn: 32.2563701	total: 134ms	remaining: 228ms
37:	learn: 32.0103570	total: 137ms	remaining: 223ms
38:	learn: 31.7020507	total: 140ms	remaining: 219ms
39:	learn: 31.3515310	total: 143ms	remaining: 215ms
40:	learn: 31.0995617	total: 147ms	remaining: 211ms
41:	learn: 30.7691091	total: 150ms	remaining: 207ms
42:	learn: 30.5901947	total: 153ms	remaining: 203ms
43:	learn: 30.4972111	total: 156ms	remaining: 199ms
44:	learn: 30.3078996	total: 159ms	remaining: 195ms
45:	learn: 30.1333395	total: 163ms	remaining: 191ms
46:	learn: 29.9834047	total: 166ms	remaining: 187ms
47:	learn: 29.8520712	total: 169ms	remaining: 184ms
48:	learn: 29.5731547	total: 173ms	remaining: 180ms
49:	learn: 29.4238396	total: 176ms	remaining: 176ms
50:	learn: 29.1333851	total: 179ms	remaining: 172ms
51:	learn: 28.9405198	total: 182ms	remaining: 168ms
52:	learn: 28.8259273	total: 186ms	remaining: 165ms
53:	learn: 28.7236385	total: 189ms	remaining: 161ms
54:	learn: 28.6169338	total: 192ms	remaining: 157ms
55:	learn: 28.4088385	total: 195ms	remaining: 153ms
56:	learn: 28.2494669	total: 199ms	remaining: 150ms
57:	learn: 28.1098622	total: 202ms	remaining: 146ms
58:	learn: 27.9681542	total: 205ms	remaining: 143ms
59:	learn: 27.7912988	total: 208ms	remaining: 139ms
60:	learn: 27.7032663	total: 212ms	remaining: 135ms
61:	learn: 27.4484269	total: 215ms	remaining: 132ms
62:	learn: 27.3280668	total: 219ms	remaining: 128ms
63:	learn: 27.2040612	total: 222ms	remaining: 125ms
64:	learn: 27.1348914	total: 226ms	remaining: 121ms
65:	learn: 27.0542921	total: 229ms	remaining: 118ms
66:	learn: 26.8811680	total: 232ms	remaining: 114ms
67:	learn: 26.7659759	total: 236ms	remaining: 111ms
68:	learn: 26.5235768	total: 243ms	remaining: 109ms
69:	learn: 26.4038727	total: 249ms	remaining: 107ms
70:	learn: 26.2401106	total: 258ms	remaining: 105ms
71:	learn: 26.1724954	total: 263ms	remaining: 102ms
72:	learn: 26.0008992	total: 270ms	remaining: 99.7ms
73:	learn: 25.9590526	total: 274ms	remaining: 96.3ms
74:	learn: 25.8059076	total: 279ms	remaining: 92.9ms
75:	learn: 25.7387097	total: 283ms	remaining: 89.4ms
76:	learn: 25.6599597	total: 288ms	remaining: 85.9ms
77:	learn: 25.6012070	total: 293ms	remaining: 82.5ms
78:	learn: 25.5564128	total: 297ms	remaining: 78.9ms
79:	learn: 25.4398522	total: 301ms	remaining: 75.2ms
80:	learn: 25.3181008	total: 306ms	remaining: 71.7ms
81:	learn: 25.1997544	total: 310ms	remaining: 68ms
82:	learn: 25.1470930	total: 313ms	remaining: 64.2ms
83:	learn: 24.9779820	total: 318ms	remaining: 60.6ms
84:	learn: 24.9371929	total: 324ms	remaining: 57.1ms
85:	learn: 24.8010712	total: 327ms	remaining: 53.3ms
86:	learn: 24.7485057	total: 331ms	remaining: 49.4ms
87:	learn: 24.6372395	total: 334ms	remaining: 45.6ms
88:	learn: 24.5045854	total: 338ms	remaining: 41.8ms
89:	learn: 24.4613380	total: 342ms	remaining: 38ms
90:	learn: 24.4358919	total: 346ms	remaining: 34.2ms
91:	learn: 24.3547819	total: 349ms	remaining: 30.3ms
92:	learn: 24.2544354	total: 352ms	remaining: 26.5ms
93:	learn: 24.1015994	total: 356ms	remaining: 22.7ms
94:	learn: 23.9857687	total: 359ms	remaining: 18.9ms
95:	learn: 23.9186020	total: 363ms	remaining: 15.1ms
96:	learn: 23.8447627	total: 366ms	remaining: 11.3ms
97:	learn: 23.7559141	total: 369ms	remaining: 7.54ms
98:	learn: 23.6980558	total: 373ms	remaining: 3.77ms
99:	learn: 23.6653114	total: 376ms	remaining: 0us
0:	learn: 46.9302808	total: 3.93ms	remaining: 389ms
1:	learn: 46.1919518	total: 7.97ms	remaining: 391ms
2:	learn: 45.5356803	total: 11.7ms	remaining: 377ms
3:	learn: 44.9319988	total: 15.1ms	remaining: 362ms
4:	learn: 44.3304571	total: 18.6ms	remaining: 353ms
5:	learn: 43.8287969	total: 22.5ms	remaining: 353ms
6:	learn: 43.1329286	total: 26ms	remaining: 345ms
7:	learn: 42.6484098	total: 29.3ms	remaining: 336ms
8:	learn: 42.0854695	total: 33.3ms	remaining: 336ms
9:	learn: 41.7935637	total: 41.2ms	remaining: 371ms
10:	learn: 41.3915117	total: 46.4ms	remaining: 376ms
11:	learn: 40.8204807	total: 51.8ms	remaining: 380ms
12:	learn: 40.4004766	total: 56.5ms	remaining: 378ms
13:	learn: 40.0786245	total: 60.3ms	remaining: 371ms
14:	learn: 39.8276220	total: 64.9ms	remaining: 368ms
15:	learn: 39.4929140	total: 68.1ms	remaining: 358ms
16:	learn: 38.9293713	total: 69.4ms	remaining: 339ms
17:	learn: 38.5243853	total: 72.7ms	remaining: 331ms
18:	learn: 38.1012358	total: 75.9ms	remaining: 324ms
19:	learn: 37.6824745	total: 79ms	remaining: 316ms
20:	learn: 37.4082379	total: 82.4ms	remaining: 310ms
21:	learn: 37.0424336	total: 85.6ms	remaining: 303ms
22:	learn: 36.5253706	total: 88.8ms	remaining: 297ms
23:	learn: 36.1089648	total: 92.3ms	remaining: 292ms
24:	learn: 35.8530605	total: 95.4ms	remaining: 286ms
25:	learn: 35.3434906	total: 98.7ms	remaining: 281ms
26:	learn: 35.0945762	total: 102ms	remaining: 275ms
27:	learn: 34.7494045	total: 105ms	remaining: 270ms
28:	learn: 34.4794807	total: 108ms	remaining: 265ms
29:	learn: 34.1151556	total: 111ms	remaining: 260ms
30:	learn: 33.7226297	total: 115ms	remaining: 256ms
31:	learn: 33.5116453	total: 118ms	remaining: 250ms
32:	learn: 33.2479370	total: 121ms	remaining: 245ms
33:	learn: 32.9610010	total: 124ms	remaining: 241ms
34:	learn: 32.6348841	total: 128ms	remaining: 237ms
35:	learn: 32.4165166	total: 131ms	remaining: 233ms
36:	learn: 32.1634880	total: 134ms	remaining: 229ms
37:	learn: 31.8288262	total: 138ms	remaining: 225ms
38:	learn: 31.5539052	total: 141ms	remaining: 221ms
39:	learn: 31.4198481	total: 145ms	remaining: 218ms
40:	learn: 31.2440280	total: 149ms	remaining: 215ms
41:	learn: 31.1300731	total: 153ms	remaining: 211ms
42:	learn: 30.9511993	total: 156ms	remaining: 207ms
43:	learn: 30.8704406	total: 159ms	remaining: 203ms
44:	learn: 30.6733228	total: 163ms	remaining: 199ms
45:	learn: 30.4870918	total: 166ms	remaining: 195ms
46:	learn: 30.3213898	total: 169ms	remaining: 191ms
47:	learn: 30.1882908	total: 173ms	remaining: 187ms
48:	learn: 30.0903758	total: 176ms	remaining: 183ms
49:	learn: 29.8990064	total: 179ms	remaining: 179ms
50:	learn: 29.6651764	total: 183ms	remaining: 175ms
51:	learn: 29.4340813	total: 186ms	remaining: 172ms
52:	learn: 29.1819815	total: 189ms	remaining: 168ms
53:	learn: 29.0637148	total: 193ms	remaining: 164ms
54:	learn: 28.8898860	total: 196ms	remaining: 161ms
55:	learn: 28.8417689	total: 198ms	remaining: 155ms
56:	learn: 28.6409462	total: 201ms	remaining: 152ms
57:	learn: 28.4473653	total: 205ms	remaining: 148ms
58:	learn: 28.2766846	total: 209ms	remaining: 145ms
59:	learn: 28.1096025	total: 213ms	remaining: 142ms
60:	learn: 27.9814157	total: 217ms	remaining: 139ms
61:	learn: 27.8747488	total: 221ms	remaining: 135ms
62:	learn: 27.6892718	total: 224ms	remaining: 132ms
63:	learn: 27.6098588	total: 230ms	remaining: 129ms
64:	learn: 27.5043123	total: 237ms	remaining: 127ms
65:	learn: 27.4065702	total: 248ms	remaining: 128ms
66:	learn: 27.2783015	total: 253ms	remaining: 125ms
67:	learn: 27.0649253	total: 260ms	remaining: 122ms
68:	learn: 26.9494723	total: 265ms	remaining: 119ms
69:	learn: 26.9062912	total: 270ms	remaining: 116ms
70:	learn: 26.7995709	total: 275ms	remaining: 112ms
71:	learn: 26.7197632	total: 279ms	remaining: 109ms
72:	learn: 26.5838489	total: 285ms	remaining: 105ms
73:	learn: 26.4102866	total: 290ms	remaining: 102ms
74:	learn: 26.2967239	total: 295ms	remaining: 98.3ms
75:	learn: 26.1863197	total: 299ms	remaining: 94.5ms
76:	learn: 26.0516965	total: 303ms	remaining: 90.6ms
77:	learn: 25.9156355	total: 308ms	remaining: 86.8ms
78:	learn: 25.8544810	total: 313ms	remaining: 83.2ms
79:	learn: 25.7610687	total: 318ms	remaining: 79.4ms
80:	learn: 25.6755141	total: 321ms	remaining: 75.3ms
81:	learn: 25.5633857	total: 325ms	remaining: 71.2ms
82:	learn: 25.5137377	total: 328ms	remaining: 67.2ms
83:	learn: 25.4026911	total: 331ms	remaining: 63.1ms
84:	learn: 25.2825971	total: 335ms	remaining: 59.1ms
85:	learn: 25.1919139	total: 338ms	remaining: 55.1ms
86:	learn: 25.1038574	total: 342ms	remaining: 51.1ms
87:	learn: 25.0552853	total: 346ms	remaining: 47.2ms
88:	learn: 24.9391083	total: 349ms	remaining: 43.1ms
89:	learn: 24.7886814	total: 353ms	remaining: 39.2ms
90:	learn: 24.7026802	total: 356ms	remaining: 35.2ms
91:	learn: 24.6015527	total: 359ms	remaining: 31.3ms
92:	learn: 24.5036952	total: 363ms	remaining: 27.3ms
93:	learn: 24.4476589	total: 366ms	remaining: 23.4ms
94:	learn: 24.4226950	total: 369ms	remaining: 19.4ms
95:	learn: 24.3621621	total: 372ms	remaining: 15.5ms
96:	learn: 24.3209805	total: 376ms	remaining: 11.6ms
97:	learn: 24.2384350	total: 379ms	remaining: 7.74ms
98:	learn: 24.1609656	total: 382ms	remaining: 3.86ms
99:	learn: 24.1125573	total: 386ms	remaining: 0us
0:	learn: 27.9345743	total: 747us	remaining: 149ms
1:	learn: 27.8117053	total: 1.46ms	remaining: 144ms
2:	learn: 27.7266602	total: 2.15ms	remaining: 141ms
3:	learn: 27.6016608	total: 2.9ms	remaining: 142ms
4:	learn: 27.5190033	total: 3.76ms	remaining: 147ms
5:	learn: 27.4017247	total: 4.41ms	remaining: 143ms
6:	learn: 27.3177916	total: 5.13ms	remaining: 141ms
7:	learn: 27.2359607	total: 5.97ms	remaining: 143ms
8:	learn: 27.1496142	total: 6.78ms	remaining: 144ms
9:	learn: 27.0644580	total: 7.58ms	remaining: 144ms
10:	learn: 26.9807354	total: 8.38ms	remaining: 144ms
11:	learn: 26.8725185	total: 9.22ms	remaining: 145ms
12:	learn: 26.7653965	total: 10ms	remaining: 144ms
13:	learn: 26.6551109	total: 11ms	remaining: 146ms
14:	learn: 26.5435448	total: 11.8ms	remaining: 145ms
15:	learn: 26.4688964	total: 12.5ms	remaining: 143ms
16:	learn: 26.3930912	total: 13.2ms	remaining: 142ms
17:	learn: 26.2864589	total: 13.9ms	remaining: 140ms
18:	learn: 26.2144529	total: 14.8ms	remaining: 141ms
19:	learn: 26.1091767	total: 15.6ms	remaining: 141ms
20:	learn: 26.0043329	total: 16.4ms	remaining: 140ms
21:	learn: 25.9052945	total: 17.2ms	remaining: 139ms
22:	learn: 25.8258706	total: 18ms	remaining: 138ms
23:	learn: 25.7302172	total: 18.8ms	remaining: 138ms
24:	learn: 25.6589246	total: 19.7ms	remaining: 138ms
25:	learn: 25.5854899	total: 20.5ms	remaining: 137ms
26:	learn: 25.4915921	total: 21.3ms	remaining: 137ms
27:	learn: 25.3997623	total: 22.1ms	remaining: 136ms
28:	learn: 25.3279579	total: 23ms	remaining: 136ms
29:	learn: 25.2580381	total: 23.8ms	remaining: 135ms
30:	learn: 25.1909251	total: 24.6ms	remaining: 134ms
31:	learn: 25.1220565	total: 25.5ms	remaining: 134ms
32:	learn: 25.0348621	total: 26.4ms	remaining: 133ms
33:	learn: 24.9754828	total: 27.4ms	remaining: 134ms
34:	learn: 24.8869750	total: 28.2ms	remaining: 133ms
35:	learn: 24.8141019	total: 29.2ms	remaining: 133ms
36:	learn: 24.7311803	total: 30.1ms	remaining: 133ms
37:	learn: 24.6656989	total: 30.9ms	remaining: 132ms
38:	learn: 24.5954442	total: 31.7ms	remaining: 131ms
39:	learn: 24.5341309	total: 32.6ms	remaining: 130ms
40:	learn: 24.4839865	total: 33.3ms	remaining: 129ms
41:	learn: 24.4231791	total: 34ms	remaining: 128ms
42:	learn: 24.3410517	total: 34.9ms	remaining: 127ms
43:	learn: 24.2639438	total: 35.9ms	remaining: 127ms
44:	learn: 24.2087714	total: 37.1ms	remaining: 128ms
45:	learn: 24.1410945	total: 37.8ms	remaining: 127ms
46:	learn: 24.0639859	total: 38.5ms	remaining: 125ms
47:	learn: 24.0082838	total: 39.1ms	remaining: 124ms
48:	learn: 23.9394332	total: 39.9ms	remaining: 123ms
49:	learn: 23.8661139	total: 40.6ms	remaining: 122ms
50:	learn: 23.8268244	total: 41.3ms	remaining: 121ms
51:	learn: 23.7472920	total: 42ms	remaining: 120ms
52:	learn: 23.6902543	total: 42.7ms	remaining: 118ms
53:	learn: 23.6171283	total: 43.4ms	remaining: 117ms
54:	learn: 23.5617157	total: 44.1ms	remaining: 116ms
55:	learn: 23.4919078	total: 44.8ms	remaining: 115ms
56:	learn: 23.4357391	total: 45.4ms	remaining: 114ms
57:	learn: 23.3849463	total: 46.1ms	remaining: 113ms
58:	learn: 23.3196328	total: 46.7ms	remaining: 112ms
59:	learn: 23.2756437	total: 47.3ms	remaining: 110ms
60:	learn: 23.2233902	total: 48ms	remaining: 109ms
61:	learn: 23.1858613	total: 48.6ms	remaining: 108ms
62:	learn: 23.1184971	total: 49.3ms	remaining: 107ms
63:	learn: 23.0800295	total: 50ms	remaining: 106ms
64:	learn: 23.0300653	total: 50.7ms	remaining: 105ms
65:	learn: 22.9645504	total: 51.5ms	remaining: 105ms
66:	learn: 22.9000149	total: 52.3ms	remaining: 104ms
67:	learn: 22.8309058	total: 52.9ms	remaining: 103ms
68:	learn: 22.7854340	total: 53.5ms	remaining: 102ms
69:	learn: 22.7260500	total: 54.2ms	remaining: 101ms
70:	learn: 22.6820031	total: 54.9ms	remaining: 99.8ms
71:	learn: 22.6463359	total: 55.6ms	remaining: 98.9ms
72:	learn: 22.6126329	total: 56.4ms	remaining: 98.1ms
73:	learn: 22.5668259	total: 57ms	remaining: 97ms
74:	learn: 22.5101083	total: 57.6ms	remaining: 96ms
75:	learn: 22.4574310	total: 58.3ms	remaining: 95.1ms
76:	learn: 22.4128950	total: 59ms	remaining: 94.2ms
77:	learn: 22.3835496	total: 59.7ms	remaining: 93.3ms
78:	learn: 22.3353060	total: 60.4ms	remaining: 92.5ms
79:	learn: 22.2804778	total: 61ms	remaining: 91.6ms
80:	learn: 22.2271546	total: 61.7ms	remaining: 90.6ms
81:	learn: 22.1788026	total: 62.3ms	remaining: 89.7ms
82:	learn: 22.1396310	total: 63ms	remaining: 88.8ms
83:	learn: 22.0891025	total: 63.7ms	remaining: 88ms
84:	learn: 22.0584492	total: 64.4ms	remaining: 87.1ms
85:	learn: 22.0084313	total: 65ms	remaining: 86.1ms
86:	learn: 21.9686494	total: 65.7ms	remaining: 85.3ms
87:	learn: 21.9184861	total: 66.4ms	remaining: 84.6ms
88:	learn: 21.8636253	total: 67.2ms	remaining: 83.8ms
89:	learn: 21.8129067	total: 67.9ms	remaining: 83ms
90:	learn: 21.7689727	total: 68.5ms	remaining: 82.1ms
91:	learn: 21.7352413	total: 69.2ms	remaining: 81.2ms
92:	learn: 21.6803661	total: 69.8ms	remaining: 80.3ms
93:	learn: 21.6358488	total: 70.4ms	remaining: 79.4ms
94:	learn: 21.5806150	total: 71.1ms	remaining: 78.5ms
95:	learn: 21.5517497	total: 71.8ms	remaining: 77.8ms
96:	learn: 21.5074432	total: 72.4ms	remaining: 76.9ms
97:	learn: 21.4850405	total: 73.2ms	remaining: 76.2ms
98:	learn: 21.4476621	total: 73.8ms	remaining: 75.3ms
99:	learn: 21.4119273	total: 74.5ms	remaining: 74.5ms
100:	learn: 21.3877385	total: 75.1ms	remaining: 73.6ms
101:	learn: 21.3482376	total: 75.8ms	remaining: 72.8ms
102:	learn: 21.3073720	total: 76.5ms	remaining: 72.1ms
103:	learn: 21.2671738	total: 77.2ms	remaining: 71.2ms
104:	learn: 21.2362785	total: 77.8ms	remaining: 70.4ms
105:	learn: 21.2193724	total: 78.6ms	remaining: 69.7ms
106:	learn: 21.1796194	total: 79.2ms	remaining: 68.8ms
107:	learn: 21.1511414	total: 79.9ms	remaining: 68.1ms
108:	learn: 21.1203718	total: 80.6ms	remaining: 67.3ms
109:	learn: 21.0915582	total: 81.2ms	remaining: 66.4ms
110:	learn: 21.0578145	total: 81.9ms	remaining: 65.7ms
111:	learn: 21.0341551	total: 82.6ms	remaining: 64.9ms
112:	learn: 21.0145973	total: 83.3ms	remaining: 64.1ms
113:	learn: 20.9914530	total: 84.1ms	remaining: 63.4ms
114:	learn: 20.9552569	total: 84.8ms	remaining: 62.7ms
115:	learn: 20.9189405	total: 85.6ms	remaining: 62ms
116:	learn: 20.8791064	total: 86.3ms	remaining: 61.2ms
117:	learn: 20.8540204	total: 87ms	remaining: 60.5ms
118:	learn: 20.8271144	total: 87.7ms	remaining: 59.7ms
119:	learn: 20.7866688	total: 88.5ms	remaining: 59ms
120:	learn: 20.7633119	total: 89.3ms	remaining: 58.3ms
121:	learn: 20.7312060	total: 89.9ms	remaining: 57.5ms
122:	learn: 20.7056447	total: 90.6ms	remaining: 56.7ms
123:	learn: 20.6774292	total: 91.2ms	remaining: 55.9ms
124:	learn: 20.6476333	total: 91.9ms	remaining: 55.1ms
125:	learn: 20.6307514	total: 92.6ms	remaining: 54.4ms
126:	learn: 20.5925456	total: 93.2ms	remaining: 53.6ms
127:	learn: 20.5763798	total: 93.8ms	remaining: 52.8ms
128:	learn: 20.5342001	total: 94.5ms	remaining: 52ms
129:	learn: 20.5063809	total: 95.2ms	remaining: 51.3ms
130:	learn: 20.4709801	total: 96ms	remaining: 50.5ms
131:	learn: 20.4459135	total: 96.6ms	remaining: 49.8ms
132:	learn: 20.4292225	total: 97.3ms	remaining: 49ms
133:	learn: 20.4109592	total: 98ms	remaining: 48.3ms
134:	learn: 20.3875851	total: 98.7ms	remaining: 47.5ms
135:	learn: 20.3551300	total: 99.4ms	remaining: 46.8ms
136:	learn: 20.3225285	total: 100ms	remaining: 46ms
137:	learn: 20.2916189	total: 101ms	remaining: 45.3ms
138:	learn: 20.2631819	total: 101ms	remaining: 44.5ms
139:	learn: 20.2405951	total: 102ms	remaining: 43.7ms
140:	learn: 20.2096812	total: 103ms	remaining: 43ms
141:	learn: 20.1845120	total: 103ms	remaining: 42.2ms
142:	learn: 20.1654143	total: 104ms	remaining: 41.4ms
143:	learn: 20.1487737	total: 105ms	remaining: 40.7ms
144:	learn: 20.1258372	total: 105ms	remaining: 39.9ms
145:	learn: 20.0901895	total: 106ms	remaining: 39.1ms
146:	learn: 20.0735524	total: 106ms	remaining: 38.4ms
147:	learn: 20.0541408	total: 107ms	remaining: 37.7ms
148:	learn: 20.0355104	total: 108ms	remaining: 36.9ms
149:	learn: 20.0131746	total: 108ms	remaining: 36.1ms
150:	learn: 19.9966686	total: 109ms	remaining: 35.4ms
151:	learn: 19.9701090	total: 110ms	remaining: 34.7ms
152:	learn: 19.9540785	total: 111ms	remaining: 34ms
153:	learn: 19.9342859	total: 111ms	remaining: 33.3ms
154:	learn: 19.9140882	total: 112ms	remaining: 32.5ms
155:	learn: 19.9004829	total: 113ms	remaining: 31.8ms
156:	learn: 19.8857734	total: 113ms	remaining: 31.1ms
157:	learn: 19.8743254	total: 114ms	remaining: 30.4ms
158:	learn: 19.8464976	total: 115ms	remaining: 29.7ms
159:	learn: 19.8206431	total: 116ms	remaining: 28.9ms
160:	learn: 19.8073402	total: 117ms	remaining: 28.2ms
161:	learn: 19.7846014	total: 117ms	remaining: 27.5ms
162:	learn: 19.7649191	total: 118ms	remaining: 26.8ms
163:	learn: 19.7472124	total: 119ms	remaining: 26ms
164:	learn: 19.7324825	total: 119ms	remaining: 25.3ms
165:	learn: 19.7087907	total: 120ms	remaining: 24.6ms
166:	learn: 19.6749642	total: 121ms	remaining: 23.9ms
167:	learn: 19.6593869	total: 121ms	remaining: 23.1ms
168:	learn: 19.6407421	total: 122ms	remaining: 22.4ms
169:	learn: 19.6129225	total: 123ms	remaining: 21.7ms
170:	learn: 19.5912312	total: 124ms	remaining: 20.9ms
171:	learn: 19.5801253	total: 124ms	remaining: 20.2ms
172:	learn: 19.5478447	total: 125ms	remaining: 19.5ms
173:	learn: 19.5246807	total: 126ms	remaining: 18.8ms
174:	learn: 19.4928102	total: 127ms	remaining: 18.1ms
175:	learn: 19.4734488	total: 128ms	remaining: 17.4ms
176:	learn: 19.4504306	total: 128ms	remaining: 16.7ms
177:	learn: 19.4384187	total: 129ms	remaining: 15.9ms
178:	learn: 19.4211715	total: 130ms	remaining: 15.2ms
179:	learn: 19.4094261	total: 130ms	remaining: 14.5ms
180:	learn: 19.3993272	total: 131ms	remaining: 13.8ms
181:	learn: 19.3854976	total: 132ms	remaining: 13ms
182:	learn: 19.3738124	total: 132ms	remaining: 12.3ms
183:	learn: 19.3543461	total: 133ms	remaining: 11.6ms
184:	learn: 19.3418462	total: 134ms	remaining: 10.8ms
185:	learn: 19.3279260	total: 134ms	remaining: 10.1ms
186:	learn: 19.3016907	total: 135ms	remaining: 9.38ms
187:	learn: 19.2819524	total: 136ms	remaining: 8.65ms
188:	learn: 19.2701816	total: 136ms	remaining: 7.93ms
189:	learn: 19.2533731	total: 137ms	remaining: 7.2ms
190:	learn: 19.2315471	total: 138ms	remaining: 6.48ms
191:	learn: 19.2206058	total: 138ms	remaining: 5.75ms
192:	learn: 19.2083106	total: 139ms	remaining: 5.03ms
193:	learn: 19.1926492	total: 139ms	remaining: 4.31ms
194:	learn: 19.1809773	total: 140ms	remaining: 3.59ms
195:	learn: 19.1670208	total: 141ms	remaining: 2.87ms
196:	learn: 19.1589639	total: 141ms	remaining: 2.15ms
197:	learn: 19.1459478	total: 142ms	remaining: 1.44ms
198:	learn: 19.1294348	total: 143ms	remaining: 717us
199:	learn: 19.1135766	total: 143ms	remaining: 0us
0:	learn: 43.7763277	total: 736us	remaining: 147ms
1:	learn: 43.5425482	total: 1.35ms	remaining: 134ms
2:	learn: 43.2962189	total: 2.24ms	remaining: 147ms
3:	learn: 43.0734657	total: 3.04ms	remaining: 149ms
4:	learn: 42.8498475	total: 3.75ms	remaining: 146ms
5:	learn: 42.6251089	total: 4.47ms	remaining: 145ms
6:	learn: 42.5184166	total: 5.17ms	remaining: 143ms
7:	learn: 42.3132704	total: 5.85ms	remaining: 140ms
8:	learn: 42.1684353	total: 6.54ms	remaining: 139ms
9:	learn: 41.9743216	total: 7.18ms	remaining: 136ms
10:	learn: 41.7687629	total: 7.85ms	remaining: 135ms
11:	learn: 41.6159007	total: 8.49ms	remaining: 133ms
12:	learn: 41.4367166	total: 9.13ms	remaining: 131ms
13:	learn: 41.2720122	total: 9.77ms	remaining: 130ms
14:	learn: 41.1625566	total: 10.4ms	remaining: 129ms
15:	learn: 40.9646939	total: 11.1ms	remaining: 128ms
16:	learn: 40.7635884	total: 11.8ms	remaining: 127ms
17:	learn: 40.5831233	total: 12.5ms	remaining: 126ms
18:	learn: 40.4116380	total: 13.1ms	remaining: 125ms
19:	learn: 40.2195109	total: 13.8ms	remaining: 124ms
20:	learn: 40.0415345	total: 14.4ms	remaining: 123ms
21:	learn: 39.8830293	total: 15ms	remaining: 121ms
22:	learn: 39.7251732	total: 15.6ms	remaining: 120ms
23:	learn: 39.5177281	total: 16.5ms	remaining: 121ms
24:	learn: 39.3586500	total: 17.2ms	remaining: 120ms
25:	learn: 39.1858903	total: 17.9ms	remaining: 120ms
26:	learn: 39.0231535	total: 18.6ms	remaining: 119ms
27:	learn: 38.8689164	total: 19.3ms	remaining: 119ms
28:	learn: 38.6953014	total: 20ms	remaining: 118ms
29:	learn: 38.5253733	total: 20.7ms	remaining: 117ms
30:	learn: 38.3030785	total: 21.3ms	remaining: 116ms
31:	learn: 38.2381396	total: 22.1ms	remaining: 116ms
32:	learn: 38.0725649	total: 22.9ms	remaining: 116ms
33:	learn: 37.8964718	total: 23.6ms	remaining: 115ms
34:	learn: 37.6864210	total: 24.3ms	remaining: 115ms
35:	learn: 37.5312464	total: 25ms	remaining: 114ms
36:	learn: 37.4608027	total: 25.7ms	remaining: 113ms
37:	learn: 37.2959375	total: 26.4ms	remaining: 113ms
38:	learn: 37.1657345	total: 27.2ms	remaining: 112ms
39:	learn: 37.0888849	total: 27.9ms	remaining: 112ms
40:	learn: 36.9390283	total: 28.6ms	remaining: 111ms
41:	learn: 36.8317263	total: 29.3ms	remaining: 110ms
42:	learn: 36.6609204	total: 30.1ms	remaining: 110ms
43:	learn: 36.4914247	total: 30.8ms	remaining: 109ms
44:	learn: 36.3949526	total: 31.5ms	remaining: 109ms
45:	learn: 36.2630769	total: 32.3ms	remaining: 108ms
46:	learn: 36.1600369	total: 33ms	remaining: 108ms
47:	learn: 36.0303085	total: 33.7ms	remaining: 107ms
48:	learn: 35.8810487	total: 34.4ms	remaining: 106ms
49:	learn: 35.7458358	total: 35.1ms	remaining: 105ms
50:	learn: 35.6449680	total: 35.7ms	remaining: 104ms
51:	learn: 35.5367778	total: 36.5ms	remaining: 104ms
52:	learn: 35.4878294	total: 37.2ms	remaining: 103ms
53:	learn: 35.3692334	total: 38.1ms	remaining: 103ms
54:	learn: 35.2474018	total: 38.9ms	remaining: 103ms
55:	learn: 35.1093579	total: 39.8ms	remaining: 102ms
56:	learn: 34.9763022	total: 40.9ms	remaining: 103ms
57:	learn: 34.9189684	total: 41.7ms	remaining: 102ms
58:	learn: 34.8607770	total: 42.7ms	remaining: 102ms
59:	learn: 34.8069970	total: 43.6ms	remaining: 102ms
60:	learn: 34.6821561	total: 44.5ms	remaining: 101ms
61:	learn: 34.5785540	total: 45.4ms	remaining: 101ms
62:	learn: 34.4791008	total: 46.2ms	remaining: 100ms
63:	learn: 34.3428443	total: 47.1ms	remaining: 100ms
64:	learn: 34.2536515	total: 48.5ms	remaining: 101ms
65:	learn: 34.1255724	total: 49.5ms	remaining: 101ms
66:	learn: 34.0059851	total: 50.9ms	remaining: 101ms
67:	learn: 33.9029376	total: 52.6ms	remaining: 102ms
68:	learn: 33.8499467	total: 53.8ms	remaining: 102ms
69:	learn: 33.7331715	total: 54.7ms	remaining: 102ms
70:	learn: 33.6685354	total: 56.2ms	remaining: 102ms
71:	learn: 33.5756277	total: 57.1ms	remaining: 102ms
72:	learn: 33.4492129	total: 58ms	remaining: 101ms
73:	learn: 33.3406780	total: 58.7ms	remaining: 100ms
74:	learn: 33.2898126	total: 59.6ms	remaining: 99.3ms
75:	learn: 33.1573492	total: 60.7ms	remaining: 99ms
76:	learn: 33.0267251	total: 61.7ms	remaining: 98.5ms
77:	learn: 32.9636970	total: 62.8ms	remaining: 98.2ms
78:	learn: 32.8564826	total: 63.6ms	remaining: 97.3ms
79:	learn: 32.7460286	total: 64.4ms	remaining: 96.5ms
80:	learn: 32.6635501	total: 65.3ms	remaining: 95.9ms
81:	learn: 32.5822630	total: 66.5ms	remaining: 95.7ms
82:	learn: 32.5050696	total: 67.3ms	remaining: 94.9ms
83:	learn: 32.4080310	total: 68.1ms	remaining: 94ms
84:	learn: 32.3696108	total: 68.8ms	remaining: 93.1ms
85:	learn: 32.2374655	total: 69.7ms	remaining: 92.4ms
86:	learn: 32.1681005	total: 70.5ms	remaining: 91.5ms
87:	learn: 32.0671452	total: 71.3ms	remaining: 90.7ms
88:	learn: 31.9890018	total: 72ms	remaining: 89.8ms
89:	learn: 31.9405798	total: 72.9ms	remaining: 89.2ms
90:	learn: 31.8525989	total: 73.9ms	remaining: 88.5ms
91:	learn: 31.8067683	total: 74.7ms	remaining: 87.6ms
92:	learn: 31.7403038	total: 75.5ms	remaining: 86.9ms
93:	learn: 31.6496396	total: 76.3ms	remaining: 86ms
94:	learn: 31.5943492	total: 77.1ms	remaining: 85.2ms
95:	learn: 31.5090602	total: 77.9ms	remaining: 84.4ms
96:	learn: 31.4759685	total: 78.7ms	remaining: 83.5ms
97:	learn: 31.4068487	total: 79.4ms	remaining: 82.6ms
98:	learn: 31.3269903	total: 80.1ms	remaining: 81.7ms
99:	learn: 31.2432888	total: 80.8ms	remaining: 80.8ms
100:	learn: 31.2105541	total: 81.7ms	remaining: 80.1ms
101:	learn: 31.1789009	total: 82.5ms	remaining: 79.2ms
102:	learn: 31.1420713	total: 83.2ms	remaining: 78.4ms
103:	learn: 31.1084427	total: 83.9ms	remaining: 77.5ms
104:	learn: 31.0371224	total: 84.7ms	remaining: 76.6ms
105:	learn: 30.9296267	total: 85.4ms	remaining: 75.7ms
106:	learn: 30.8407640	total: 86.2ms	remaining: 74.9ms
107:	learn: 30.8071437	total: 87ms	remaining: 74.1ms
108:	learn: 30.7540713	total: 87.7ms	remaining: 73.2ms
109:	learn: 30.6681028	total: 88.5ms	remaining: 72.4ms
110:	learn: 30.5519503	total: 89.3ms	remaining: 71.6ms
111:	learn: 30.5150835	total: 90.1ms	remaining: 70.8ms
112:	learn: 30.4915748	total: 90.8ms	remaining: 69.9ms
113:	learn: 30.4009761	total: 91.6ms	remaining: 69.1ms
114:	learn: 30.2992489	total: 92.4ms	remaining: 68.3ms
115:	learn: 30.2181480	total: 93.2ms	remaining: 67.5ms
116:	learn: 30.1383821	total: 94ms	remaining: 66.7ms
117:	learn: 30.1115345	total: 94.7ms	remaining: 65.8ms
118:	learn: 30.0419118	total: 95.4ms	remaining: 65ms
119:	learn: 29.9709627	total: 96.2ms	remaining: 64.1ms
120:	learn: 29.8847950	total: 97ms	remaining: 63.3ms
121:	learn: 29.8249202	total: 97.8ms	remaining: 62.5ms
122:	learn: 29.7611567	total: 98.5ms	remaining: 61.7ms
123:	learn: 29.7127495	total: 99.3ms	remaining: 60.8ms
124:	learn: 29.6248001	total: 100ms	remaining: 60.1ms
125:	learn: 29.5598910	total: 101ms	remaining: 59.3ms
126:	learn: 29.4992635	total: 102ms	remaining: 58.4ms
127:	learn: 29.4392123	total: 102ms	remaining: 57.6ms
128:	learn: 29.3865130	total: 103ms	remaining: 56.8ms
129:	learn: 29.2937471	total: 104ms	remaining: 56ms
130:	learn: 29.2596044	total: 105ms	remaining: 55.1ms
131:	learn: 29.2037725	total: 105ms	remaining: 54.3ms
132:	learn: 29.1280377	total: 106ms	remaining: 53.5ms
133:	learn: 29.1073318	total: 107ms	remaining: 52.7ms
134:	learn: 29.0450521	total: 108ms	remaining: 52ms
135:	learn: 28.9607208	total: 109ms	remaining: 51.2ms
136:	learn: 28.9395559	total: 110ms	remaining: 50.4ms
137:	learn: 28.9062837	total: 111ms	remaining: 49.7ms
138:	learn: 28.8659657	total: 111ms	remaining: 48.8ms
139:	learn: 28.7936056	total: 112ms	remaining: 48ms
140:	learn: 28.7495567	total: 113ms	remaining: 47.2ms
141:	learn: 28.6994707	total: 114ms	remaining: 46.4ms
142:	learn: 28.6843722	total: 115ms	remaining: 45.7ms
143:	learn: 28.6516385	total: 115ms	remaining: 44.9ms
144:	learn: 28.5986641	total: 116ms	remaining: 44.1ms
145:	learn: 28.5411248	total: 117ms	remaining: 43.2ms
146:	learn: 28.5164598	total: 118ms	remaining: 42.4ms
147:	learn: 28.4925149	total: 118ms	remaining: 41.6ms
148:	learn: 28.3915985	total: 119ms	remaining: 40.8ms
149:	learn: 28.3617110	total: 120ms	remaining: 39.9ms
150:	learn: 28.2883651	total: 121ms	remaining: 39.1ms
151:	learn: 28.2678446	total: 121ms	remaining: 38.3ms
152:	learn: 28.2463774	total: 122ms	remaining: 37.5ms
153:	learn: 28.1943698	total: 123ms	remaining: 36.6ms
154:	learn: 28.1775283	total: 123ms	remaining: 35.8ms
155:	learn: 28.1639008	total: 124ms	remaining: 35ms
156:	learn: 28.1360277	total: 125ms	remaining: 34.2ms
157:	learn: 28.0392251	total: 126ms	remaining: 33.4ms
158:	learn: 27.9651176	total: 126ms	remaining: 32.5ms
159:	learn: 27.9186795	total: 127ms	remaining: 31.7ms
160:	learn: 27.9011575	total: 128ms	remaining: 30.9ms
161:	learn: 27.8790276	total: 128ms	remaining: 30.1ms
162:	learn: 27.8472134	total: 129ms	remaining: 29.3ms
163:	learn: 27.8176856	total: 130ms	remaining: 28.4ms
164:	learn: 27.7780048	total: 130ms	remaining: 27.6ms
165:	learn: 27.7593980	total: 131ms	remaining: 26.8ms
166:	learn: 27.7408393	total: 132ms	remaining: 26ms
167:	learn: 27.7069372	total: 132ms	remaining: 25.2ms
168:	learn: 27.6890665	total: 133ms	remaining: 24.4ms
169:	learn: 27.6776691	total: 134ms	remaining: 23.6ms
170:	learn: 27.6183990	total: 134ms	remaining: 22.8ms
171:	learn: 27.5866176	total: 135ms	remaining: 22ms
172:	learn: 27.5178625	total: 136ms	remaining: 21.2ms
173:	learn: 27.4428647	total: 136ms	remaining: 20.4ms
174:	learn: 27.4173642	total: 137ms	remaining: 19.6ms
175:	learn: 27.3966593	total: 138ms	remaining: 18.8ms
176:	learn: 27.3081651	total: 138ms	remaining: 18ms
177:	learn: 27.2618516	total: 139ms	remaining: 17.2ms
178:	learn: 27.2410010	total: 140ms	remaining: 16.4ms
179:	learn: 27.2253158	total: 140ms	remaining: 15.6ms
180:	learn: 27.1869730	total: 141ms	remaining: 14.8ms
181:	learn: 27.1381795	total: 142ms	remaining: 14ms
182:	learn: 27.1004446	total: 143ms	remaining: 13.2ms
183:	learn: 27.0549503	total: 143ms	remaining: 12.5ms
184:	learn: 27.0401194	total: 144ms	remaining: 11.7ms
185:	learn: 27.0145052	total: 144ms	remaining: 10.9ms
186:	learn: 26.9934631	total: 145ms	remaining: 10.1ms
187:	learn: 26.9739953	total: 146ms	remaining: 9.31ms
188:	learn: 26.9571286	total: 146ms	remaining: 8.52ms
189:	learn: 26.9207729	total: 147ms	remaining: 7.74ms
190:	learn: 26.8901767	total: 148ms	remaining: 6.96ms
191:	learn: 26.8731673	total: 148ms	remaining: 6.18ms
192:	learn: 26.8145174	total: 149ms	remaining: 5.41ms
193:	learn: 26.7982016	total: 150ms	remaining: 4.63ms
194:	learn: 26.7725350	total: 150ms	remaining: 3.85ms
195:	learn: 26.7527195	total: 151ms	remaining: 3.08ms
196:	learn: 26.7417350	total: 152ms	remaining: 2.31ms
197:	learn: 26.7170891	total: 152ms	remaining: 1.54ms
198:	learn: 26.6754254	total: 153ms	remaining: 769us
199:	learn: 26.6578305	total: 154ms	remaining: 0us
0:	learn: 47.2096946	total: 774us	remaining: 154ms
1:	learn: 47.0455806	total: 1.4ms	remaining: 138ms
2:	learn: 46.9199293	total: 2.01ms	remaining: 132ms
3:	learn: 46.6906700	total: 2.63ms	remaining: 129ms
4:	learn: 46.5513236	total: 3.22ms	remaining: 126ms
5:	learn: 46.4696355	total: 3.82ms	remaining: 124ms
6:	learn: 46.3899562	total: 4.41ms	remaining: 122ms
7:	learn: 46.2924968	total: 5.02ms	remaining: 121ms
8:	learn: 46.0810214	total: 5.68ms	remaining: 121ms
9:	learn: 45.9849227	total: 6.33ms	remaining: 120ms
10:	learn: 45.8166278	total: 6.94ms	remaining: 119ms
11:	learn: 45.6853814	total: 7.79ms	remaining: 122ms
12:	learn: 45.6093390	total: 8.43ms	remaining: 121ms
13:	learn: 45.4259676	total: 9.07ms	remaining: 121ms
14:	learn: 45.3505842	total: 9.7ms	remaining: 120ms
15:	learn: 45.2325262	total: 10.4ms	remaining: 120ms
16:	learn: 45.0482095	total: 11.1ms	remaining: 120ms
17:	learn: 44.8654856	total: 11.8ms	remaining: 119ms
18:	learn: 44.7925480	total: 12.4ms	remaining: 118ms
19:	learn: 44.6355523	total: 13ms	remaining: 117ms
20:	learn: 44.4653569	total: 13.7ms	remaining: 117ms
21:	learn: 44.3795841	total: 14.3ms	remaining: 116ms
22:	learn: 44.2330627	total: 15ms	remaining: 115ms
23:	learn: 44.1636522	total: 15.7ms	remaining: 115ms
24:	learn: 44.0029579	total: 16.3ms	remaining: 114ms
25:	learn: 43.7660587	total: 17ms	remaining: 114ms
26:	learn: 43.6577036	total: 17.6ms	remaining: 113ms
27:	learn: 43.5801582	total: 18.3ms	remaining: 112ms
28:	learn: 43.5068855	total: 19ms	remaining: 112ms
29:	learn: 43.3672310	total: 19.7ms	remaining: 111ms
30:	learn: 43.2884884	total: 20.3ms	remaining: 111ms
31:	learn: 43.1262911	total: 21ms	remaining: 110ms
32:	learn: 43.0297532	total: 21.9ms	remaining: 111ms
33:	learn: 42.9665694	total: 22.6ms	remaining: 110ms
34:	learn: 42.8861114	total: 23.2ms	remaining: 109ms
35:	learn: 42.7743055	total: 23.9ms	remaining: 109ms
36:	learn: 42.6653889	total: 24.6ms	remaining: 108ms
37:	learn: 42.4791226	total: 25.4ms	remaining: 108ms
38:	learn: 42.3918757	total: 26.2ms	remaining: 108ms
39:	learn: 42.3119573	total: 27ms	remaining: 108ms
40:	learn: 42.2373451	total: 27.7ms	remaining: 107ms
41:	learn: 42.1228988	total: 28.5ms	remaining: 107ms
42:	learn: 42.0674026	total: 29.3ms	remaining: 107ms
43:	learn: 41.9749605	total: 30ms	remaining: 106ms
44:	learn: 41.9225428	total: 30.7ms	remaining: 106ms
45:	learn: 41.7536271	total: 31.3ms	remaining: 105ms
46:	learn: 41.6879371	total: 32.1ms	remaining: 104ms
47:	learn: 41.6033098	total: 32.7ms	remaining: 104ms
48:	learn: 41.4212282	total: 33.4ms	remaining: 103ms
49:	learn: 41.2660588	total: 34.1ms	remaining: 102ms
50:	learn: 41.1442812	total: 34.9ms	remaining: 102ms
51:	learn: 41.0798646	total: 35.5ms	remaining: 101ms
52:	learn: 41.0187839	total: 36.3ms	remaining: 101ms
53:	learn: 40.9800372	total: 37.1ms	remaining: 100ms
54:	learn: 40.9110229	total: 37.9ms	remaining: 99.9ms
55:	learn: 40.8180769	total: 38.7ms	remaining: 99.6ms
56:	learn: 40.6851799	total: 39.5ms	remaining: 99ms
57:	learn: 40.6295409	total: 40.2ms	remaining: 98.4ms
58:	learn: 40.5519644	total: 40.9ms	remaining: 97.6ms
59:	learn: 40.4913726	total: 41.6ms	remaining: 97.1ms
60:	learn: 40.4522836	total: 42.5ms	remaining: 96.8ms
61:	learn: 40.3879876	total: 43.6ms	remaining: 97ms
62:	learn: 40.3461618	total: 44.4ms	remaining: 96.5ms
63:	learn: 40.2913591	total: 45.8ms	remaining: 97.3ms
64:	learn: 40.2252350	total: 46.7ms	remaining: 97ms
65:	learn: 40.0964411	total: 47.5ms	remaining: 96.5ms
66:	learn: 40.0490943	total: 48.3ms	remaining: 95.8ms
67:	learn: 39.9888799	total: 49ms	remaining: 95.1ms
68:	learn: 39.9398320	total: 49.8ms	remaining: 94.5ms
69:	learn: 39.7895548	total: 50.7ms	remaining: 94.1ms
70:	learn: 39.7356955	total: 51.5ms	remaining: 93.6ms
71:	learn: 39.6678715	total: 52.3ms	remaining: 93ms
72:	learn: 39.6021536	total: 53.2ms	remaining: 92.5ms
73:	learn: 39.5317494	total: 53.9ms	remaining: 91.8ms
74:	learn: 39.4832446	total: 54.6ms	remaining: 91.1ms
75:	learn: 39.3267509	total: 55.4ms	remaining: 90.4ms
76:	learn: 39.2692949	total: 56.2ms	remaining: 89.7ms
77:	learn: 39.1767133	total: 57ms	remaining: 89.2ms
78:	learn: 39.1026762	total: 57.8ms	remaining: 88.6ms
79:	learn: 38.9596213	total: 58.8ms	remaining: 88.2ms
80:	learn: 38.9022307	total: 59.5ms	remaining: 87.4ms
81:	learn: 38.8075675	total: 60.3ms	remaining: 86.7ms
82:	learn: 38.7477780	total: 61.1ms	remaining: 86.1ms
83:	learn: 38.6685119	total: 62ms	remaining: 85.6ms
84:	learn: 38.6219792	total: 62.8ms	remaining: 85ms
85:	learn: 38.5950435	total: 63.7ms	remaining: 84.4ms
86:	learn: 38.5545925	total: 64.5ms	remaining: 83.8ms
87:	learn: 38.5075030	total: 65.3ms	remaining: 83.1ms
88:	learn: 38.4663593	total: 66ms	remaining: 82.3ms
89:	learn: 38.4301861	total: 66.7ms	remaining: 81.6ms
90:	learn: 38.3097418	total: 67.6ms	remaining: 81ms
91:	learn: 38.1761983	total: 68.5ms	remaining: 80.4ms
92:	learn: 38.1266292	total: 69.3ms	remaining: 79.8ms
93:	learn: 38.0792503	total: 70.1ms	remaining: 79ms
94:	learn: 38.0101759	total: 70.8ms	remaining: 78.2ms
95:	learn: 37.9555002	total: 71.5ms	remaining: 77.5ms
96:	learn: 37.8324713	total: 72.3ms	remaining: 76.8ms
97:	learn: 37.7293135	total: 73.1ms	remaining: 76ms
98:	learn: 37.6109948	total: 73.8ms	remaining: 75.3ms
99:	learn: 37.5911183	total: 74.6ms	remaining: 74.6ms
100:	learn: 37.4792785	total: 75.4ms	remaining: 73.9ms
101:	learn: 37.4324538	total: 76.3ms	remaining: 73.3ms
102:	learn: 37.4061539	total: 77ms	remaining: 72.5ms
103:	learn: 37.3537012	total: 77.7ms	remaining: 71.7ms
104:	learn: 37.3104791	total: 78.4ms	remaining: 71ms
105:	learn: 37.1816317	total: 79.1ms	remaining: 70.2ms
106:	learn: 37.1310052	total: 79.8ms	remaining: 69.4ms
107:	learn: 37.0965604	total: 80.5ms	remaining: 68.5ms
108:	learn: 36.9745357	total: 81.2ms	remaining: 67.8ms
109:	learn: 36.8520564	total: 81.9ms	remaining: 67ms
110:	learn: 36.7486473	total: 82.6ms	remaining: 66.3ms
111:	learn: 36.6295078	total: 83.3ms	remaining: 65.5ms
112:	learn: 36.6053038	total: 84ms	remaining: 64.7ms
113:	learn: 36.5673629	total: 84.7ms	remaining: 63.9ms
114:	learn: 36.4448034	total: 85.4ms	remaining: 63.1ms
115:	learn: 36.4216270	total: 86ms	remaining: 62.3ms
116:	learn: 36.3385522	total: 86.7ms	remaining: 61.5ms
117:	learn: 36.2396517	total: 87.3ms	remaining: 60.7ms
118:	learn: 36.1172270	total: 88.1ms	remaining: 60ms
119:	learn: 36.0673575	total: 88.7ms	remaining: 59.1ms
120:	learn: 35.9275860	total: 89.3ms	remaining: 58.3ms
121:	learn: 35.8457613	total: 90ms	remaining: 57.6ms
122:	learn: 35.7622694	total: 90.7ms	remaining: 56.8ms
123:	learn: 35.7324475	total: 91.3ms	remaining: 56ms
124:	learn: 35.6279687	total: 92ms	remaining: 55.2ms
125:	learn: 35.5991516	total: 92.7ms	remaining: 54.4ms
126:	learn: 35.5001054	total: 93.4ms	remaining: 53.7ms
127:	learn: 35.4656927	total: 94.1ms	remaining: 52.9ms
128:	learn: 35.3829580	total: 94.9ms	remaining: 52.2ms
129:	learn: 35.3517612	total: 95.6ms	remaining: 51.5ms
130:	learn: 35.3080191	total: 96.2ms	remaining: 50.7ms
131:	learn: 35.2779805	total: 96.9ms	remaining: 49.9ms
132:	learn: 35.1409651	total: 97.6ms	remaining: 49.2ms
133:	learn: 35.1136951	total: 98.2ms	remaining: 48.4ms
134:	learn: 35.0745418	total: 98.9ms	remaining: 47.6ms
135:	learn: 35.0333877	total: 99.6ms	remaining: 46.9ms
136:	learn: 34.9681328	total: 100ms	remaining: 46.1ms
137:	learn: 34.8658773	total: 101ms	remaining: 45.4ms
138:	learn: 34.8243538	total: 102ms	remaining: 44.6ms
139:	learn: 34.7850564	total: 102ms	remaining: 43.8ms
140:	learn: 34.7223791	total: 103ms	remaining: 43ms
141:	learn: 34.6720203	total: 104ms	remaining: 42.3ms
142:	learn: 34.6404646	total: 104ms	remaining: 41.5ms
143:	learn: 34.5925744	total: 105ms	remaining: 40.8ms
144:	learn: 34.4852407	total: 106ms	remaining: 40.1ms
145:	learn: 34.4421397	total: 106ms	remaining: 39.3ms
146:	learn: 34.4214323	total: 107ms	remaining: 38.6ms
147:	learn: 34.3284820	total: 108ms	remaining: 37.9ms
148:	learn: 34.2234314	total: 109ms	remaining: 37.2ms
149:	learn: 34.1405404	total: 109ms	remaining: 36.4ms
150:	learn: 34.0653285	total: 110ms	remaining: 35.7ms
151:	learn: 34.0310662	total: 111ms	remaining: 34.9ms
152:	learn: 33.9340201	total: 111ms	remaining: 34.2ms
153:	learn: 33.8801464	total: 112ms	remaining: 33.4ms
154:	learn: 33.8472829	total: 113ms	remaining: 32.7ms
155:	learn: 33.8340207	total: 113ms	remaining: 32ms
156:	learn: 33.7973942	total: 114ms	remaining: 31.3ms
157:	learn: 33.7040650	total: 115ms	remaining: 30.5ms
158:	learn: 33.6172658	total: 115ms	remaining: 29.8ms
159:	learn: 33.5436009	total: 116ms	remaining: 29ms
160:	learn: 33.4561155	total: 117ms	remaining: 28.3ms
161:	learn: 33.3937137	total: 117ms	remaining: 27.5ms
162:	learn: 33.3234550	total: 118ms	remaining: 26.8ms
163:	learn: 33.3027049	total: 119ms	remaining: 26.1ms
164:	learn: 33.2778112	total: 119ms	remaining: 25.3ms
165:	learn: 33.1839024	total: 120ms	remaining: 24.6ms
166:	learn: 33.1488597	total: 121ms	remaining: 23.8ms
167:	learn: 33.0938969	total: 121ms	remaining: 23.1ms
168:	learn: 33.0647018	total: 122ms	remaining: 22.4ms
169:	learn: 32.9892981	total: 123ms	remaining: 21.6ms
170:	learn: 32.9089974	total: 123ms	remaining: 20.9ms
171:	learn: 32.8686497	total: 124ms	remaining: 20.2ms
172:	learn: 32.8420706	total: 125ms	remaining: 19.5ms
173:	learn: 32.7825320	total: 125ms	remaining: 18.7ms
174:	learn: 32.7292564	total: 126ms	remaining: 18ms
175:	learn: 32.7136967	total: 127ms	remaining: 17.3ms
176:	learn: 32.6689320	total: 127ms	remaining: 16.6ms
177:	learn: 32.5987393	total: 128ms	remaining: 15.8ms
178:	learn: 32.5110719	total: 129ms	remaining: 15.1ms
179:	learn: 32.4019361	total: 129ms	remaining: 14.4ms
180:	learn: 32.3847107	total: 130ms	remaining: 13.7ms
181:	learn: 32.3252298	total: 131ms	remaining: 12.9ms
182:	learn: 32.2679775	total: 131ms	remaining: 12.2ms
183:	learn: 32.2447563	total: 132ms	remaining: 11.5ms
184:	learn: 32.1957336	total: 133ms	remaining: 10.8ms
185:	learn: 32.0969032	total: 133ms	remaining: 10ms
186:	learn: 32.0280809	total: 134ms	remaining: 9.32ms
187:	learn: 31.9980858	total: 135ms	remaining: 8.6ms
188:	learn: 31.9446015	total: 136ms	remaining: 7.89ms
189:	learn: 31.8916049	total: 136ms	remaining: 7.16ms
190:	learn: 31.8431043	total: 137ms	remaining: 6.44ms
191:	learn: 31.7440418	total: 137ms	remaining: 5.72ms
192:	learn: 31.6920360	total: 138ms	remaining: 5.01ms
193:	learn: 31.6670917	total: 139ms	remaining: 4.29ms
194:	learn: 31.6347902	total: 140ms	remaining: 3.58ms
195:	learn: 31.5944386	total: 140ms	remaining: 2.86ms
196:	learn: 31.5866871	total: 141ms	remaining: 2.15ms
197:	learn: 31.5058482	total: 142ms	remaining: 1.43ms
198:	learn: 31.4477161	total: 142ms	remaining: 715us
199:	learn: 31.3933696	total: 143ms	remaining: 0us
0:	learn: 46.8376728	total: 742us	remaining: 148ms
1:	learn: 46.6810718	total: 1.34ms	remaining: 132ms
2:	learn: 46.4699413	total: 1.96ms	remaining: 129ms
3:	learn: 46.3385439	total: 2.61ms	remaining: 128ms
4:	learn: 46.2407437	total: 3.23ms	remaining: 126ms
5:	learn: 46.1458179	total: 3.95ms	remaining: 128ms
6:	learn: 46.0754559	total: 4.81ms	remaining: 133ms
7:	learn: 45.8847909	total: 5.61ms	remaining: 135ms
8:	learn: 45.7696744	total: 6.27ms	remaining: 133ms
9:	learn: 45.6717142	total: 6.93ms	remaining: 132ms
10:	learn: 45.5845685	total: 7.67ms	remaining: 132ms
11:	learn: 45.4398381	total: 8.33ms	remaining: 130ms
12:	learn: 45.3312302	total: 8.96ms	remaining: 129ms
13:	learn: 45.2428587	total: 9.63ms	remaining: 128ms
14:	learn: 45.1718296	total: 10.3ms	remaining: 127ms
15:	learn: 45.0905314	total: 10.9ms	remaining: 126ms
16:	learn: 44.8871025	total: 11.6ms	remaining: 125ms
17:	learn: 44.7206295	total: 12.2ms	remaining: 124ms
18:	learn: 44.6584387	total: 12.9ms	remaining: 122ms
19:	learn: 44.4918756	total: 13.5ms	remaining: 122ms
20:	learn: 44.3304816	total: 14.1ms	remaining: 121ms
21:	learn: 44.2077441	total: 14.8ms	remaining: 119ms
22:	learn: 44.0595626	total: 15.5ms	remaining: 119ms
23:	learn: 43.9968476	total: 16.2ms	remaining: 119ms
24:	learn: 43.8554993	total: 16.8ms	remaining: 118ms
25:	learn: 43.7722399	total: 17.4ms	remaining: 117ms
26:	learn: 43.6819444	total: 18.1ms	remaining: 116ms
27:	learn: 43.6025929	total: 18.7ms	remaining: 115ms
28:	learn: 43.4871268	total: 19.3ms	remaining: 114ms
29:	learn: 43.3298565	total: 20.1ms	remaining: 114ms
30:	learn: 43.2362540	total: 20.8ms	remaining: 113ms
31:	learn: 43.1398083	total: 21.4ms	remaining: 112ms
32:	learn: 42.9665919	total: 22ms	remaining: 111ms
33:	learn: 42.8314587	total: 22.6ms	remaining: 110ms
34:	learn: 42.7506981	total: 23.2ms	remaining: 110ms
35:	learn: 42.6715579	total: 23.9ms	remaining: 109ms
36:	learn: 42.6125371	total: 24.5ms	remaining: 108ms
37:	learn: 42.4580772	total: 25.5ms	remaining: 109ms
38:	learn: 42.3837628	total: 26.4ms	remaining: 109ms
39:	learn: 42.3367222	total: 27ms	remaining: 108ms
40:	learn: 42.2661135	total: 27.6ms	remaining: 107ms
41:	learn: 42.2151138	total: 28.3ms	remaining: 106ms
42:	learn: 42.1634533	total: 28.9ms	remaining: 106ms
43:	learn: 42.0394266	total: 29.6ms	remaining: 105ms
44:	learn: 41.9012102	total: 30.3ms	remaining: 104ms
45:	learn: 41.7581615	total: 30.9ms	remaining: 104ms
46:	learn: 41.6865340	total: 31.6ms	remaining: 103ms
47:	learn: 41.5856110	total: 32.2ms	remaining: 102ms
48:	learn: 41.5339503	total: 32.9ms	remaining: 101ms
49:	learn: 41.4151557	total: 33.6ms	remaining: 101ms
50:	learn: 41.3100492	total: 34.2ms	remaining: 99.9ms
51:	learn: 41.2473827	total: 34.8ms	remaining: 99.2ms
52:	learn: 41.1763784	total: 35.6ms	remaining: 98.7ms
53:	learn: 41.1068967	total: 36.3ms	remaining: 98ms
54:	learn: 41.0509347	total: 36.9ms	remaining: 97.4ms
55:	learn: 41.0012289	total: 37.5ms	remaining: 96.5ms
56:	learn: 40.8988672	total: 38.1ms	remaining: 95.7ms
57:	learn: 40.8511801	total: 38.9ms	remaining: 95.3ms
58:	learn: 40.7938621	total: 39.6ms	remaining: 94.6ms
59:	learn: 40.7257990	total: 40.3ms	remaining: 94ms
60:	learn: 40.6771622	total: 41ms	remaining: 93.4ms
61:	learn: 40.5394512	total: 41.7ms	remaining: 92.8ms
62:	learn: 40.4448103	total: 42.4ms	remaining: 92.3ms
63:	learn: 40.3596307	total: 43.1ms	remaining: 91.5ms
64:	learn: 40.3248689	total: 43.8ms	remaining: 90.9ms
65:	learn: 40.2657920	total: 44.6ms	remaining: 90.5ms
66:	learn: 40.1536126	total: 45.3ms	remaining: 89.9ms
67:	learn: 39.9756806	total: 46.1ms	remaining: 89.5ms
68:	learn: 39.9385291	total: 46.8ms	remaining: 88.9ms
69:	learn: 39.8034193	total: 47.5ms	remaining: 88.2ms
70:	learn: 39.7547568	total: 48.2ms	remaining: 87.6ms
71:	learn: 39.7035746	total: 48.9ms	remaining: 86.9ms
72:	learn: 39.6378008	total: 49.7ms	remaining: 86.5ms
73:	learn: 39.5716644	total: 50.5ms	remaining: 86ms
74:	learn: 39.5366750	total: 51.2ms	remaining: 85.3ms
75:	learn: 39.5032447	total: 51.9ms	remaining: 84.7ms
76:	learn: 39.3973271	total: 52.8ms	remaining: 84.4ms
77:	learn: 39.2641280	total: 53.6ms	remaining: 83.8ms
78:	learn: 39.1575530	total: 54.3ms	remaining: 83.1ms
79:	learn: 39.0497504	total: 55ms	remaining: 82.5ms
80:	learn: 39.0037339	total: 55.8ms	remaining: 81.9ms
81:	learn: 38.8985234	total: 56.4ms	remaining: 81.2ms
82:	learn: 38.8654143	total: 57.1ms	remaining: 80.4ms
83:	learn: 38.7329489	total: 57.8ms	remaining: 79.8ms
84:	learn: 38.6477845	total: 58.5ms	remaining: 79.1ms
85:	learn: 38.6162732	total: 59.1ms	remaining: 78.4ms
86:	learn: 38.5872284	total: 59.8ms	remaining: 77.6ms
87:	learn: 38.5536948	total: 60.6ms	remaining: 77.2ms
88:	learn: 38.4862722	total: 61.4ms	remaining: 76.6ms
89:	learn: 38.4497112	total: 63.8ms	remaining: 78ms
90:	learn: 38.2920444	total: 64.7ms	remaining: 77.5ms
91:	learn: 38.2547036	total: 65.6ms	remaining: 77ms
92:	learn: 38.1550248	total: 66.4ms	remaining: 76.4ms
93:	learn: 38.1103665	total: 67.4ms	remaining: 76ms
94:	learn: 38.0474361	total: 68.4ms	remaining: 75.6ms
95:	learn: 38.0261541	total: 69.2ms	remaining: 75ms
96:	learn: 37.9221040	total: 69.9ms	remaining: 74.3ms
97:	learn: 37.8428740	total: 71.2ms	remaining: 74.1ms
98:	learn: 37.7369890	total: 72.8ms	remaining: 74.3ms
99:	learn: 37.6935626	total: 73.8ms	remaining: 73.8ms
100:	learn: 37.6515549	total: 74.9ms	remaining: 73.5ms
101:	learn: 37.5489244	total: 75.9ms	remaining: 72.9ms
102:	learn: 37.5220554	total: 76.9ms	remaining: 72.4ms
103:	learn: 37.4968417	total: 77.9ms	remaining: 71.9ms
104:	learn: 37.4316020	total: 78.7ms	remaining: 71.2ms
105:	learn: 37.3645686	total: 79.9ms	remaining: 70.9ms
106:	learn: 37.3211376	total: 80.8ms	remaining: 70.2ms
107:	learn: 37.2884654	total: 81.7ms	remaining: 69.6ms
108:	learn: 37.1661489	total: 82.5ms	remaining: 68.9ms
109:	learn: 37.0453748	total: 83.2ms	remaining: 68.1ms
110:	learn: 37.0146359	total: 84.2ms	remaining: 67.5ms
111:	learn: 36.9189176	total: 85.3ms	remaining: 67ms
112:	learn: 36.8720600	total: 86.4ms	remaining: 66.5ms
113:	learn: 36.7813052	total: 87.3ms	remaining: 65.9ms
114:	learn: 36.7020512	total: 88.2ms	remaining: 65.2ms
115:	learn: 36.5852608	total: 89.1ms	remaining: 64.5ms
116:	learn: 36.4824925	total: 89.9ms	remaining: 63.8ms
117:	learn: 36.4456809	total: 90.7ms	remaining: 63ms
118:	learn: 36.4153133	total: 91.5ms	remaining: 62.3ms
119:	learn: 36.3602386	total: 92.2ms	remaining: 61.5ms
120:	learn: 36.2262929	total: 92.9ms	remaining: 60.7ms
121:	learn: 36.2023511	total: 93.7ms	remaining: 59.9ms
122:	learn: 36.1135168	total: 94.4ms	remaining: 59.1ms
123:	learn: 36.0786352	total: 95.2ms	remaining: 58.3ms
124:	learn: 35.9745615	total: 96.1ms	remaining: 57.7ms
125:	learn: 35.9250487	total: 96.9ms	remaining: 56.9ms
126:	learn: 35.8389245	total: 97.6ms	remaining: 56.1ms
127:	learn: 35.7629340	total: 98.4ms	remaining: 55.4ms
128:	learn: 35.7461874	total: 99.3ms	remaining: 54.6ms
129:	learn: 35.6385932	total: 100ms	remaining: 53.9ms
130:	learn: 35.5241757	total: 101ms	remaining: 53.2ms
131:	learn: 35.4924242	total: 102ms	remaining: 52.5ms
132:	learn: 35.3974479	total: 103ms	remaining: 51.7ms
133:	learn: 35.3789074	total: 104ms	remaining: 51ms
134:	learn: 35.3540756	total: 105ms	remaining: 50.3ms
135:	learn: 35.3212153	total: 105ms	remaining: 49.6ms
136:	learn: 35.2580824	total: 106ms	remaining: 48.8ms
137:	learn: 35.1585184	total: 107ms	remaining: 48.1ms
138:	learn: 35.1220460	total: 108ms	remaining: 47.3ms
139:	learn: 35.0799944	total: 109ms	remaining: 46.6ms
140:	learn: 35.0234646	total: 109ms	remaining: 45.8ms
141:	learn: 34.9788467	total: 110ms	remaining: 45ms
142:	learn: 34.9626116	total: 111ms	remaining: 44.2ms
143:	learn: 34.8692408	total: 112ms	remaining: 43.5ms
144:	learn: 34.8294053	total: 113ms	remaining: 42.7ms
145:	learn: 34.8022190	total: 113ms	remaining: 41.9ms
146:	learn: 34.7178975	total: 114ms	remaining: 41.1ms
147:	learn: 34.6300332	total: 115ms	remaining: 40.3ms
148:	learn: 34.5404391	total: 116ms	remaining: 39.6ms
149:	learn: 34.4647050	total: 116ms	remaining: 38.8ms
150:	learn: 34.4386903	total: 117ms	remaining: 38ms
151:	learn: 34.4130123	total: 118ms	remaining: 37.2ms
152:	learn: 34.3089103	total: 119ms	remaining: 36.5ms
153:	learn: 34.2459062	total: 119ms	remaining: 35.7ms
154:	learn: 34.2273667	total: 120ms	remaining: 34.9ms
155:	learn: 34.1797205	total: 121ms	remaining: 34.1ms
156:	learn: 34.1440221	total: 122ms	remaining: 33.4ms
157:	learn: 34.1293516	total: 123ms	remaining: 32.6ms
158:	learn: 34.1003086	total: 123ms	remaining: 31.8ms
159:	learn: 34.0352947	total: 124ms	remaining: 31ms
160:	learn: 34.0043080	total: 125ms	remaining: 30.3ms
161:	learn: 33.9266654	total: 126ms	remaining: 29.5ms
162:	learn: 33.9008028	total: 127ms	remaining: 28.7ms
163:	learn: 33.8758152	total: 127ms	remaining: 27.9ms
164:	learn: 33.7606732	total: 128ms	remaining: 27.1ms
165:	learn: 33.6824305	total: 129ms	remaining: 26.4ms
166:	learn: 33.6557321	total: 129ms	remaining: 25.6ms
167:	learn: 33.6093500	total: 130ms	remaining: 24.8ms
168:	learn: 33.5542175	total: 131ms	remaining: 24ms
169:	learn: 33.4948141	total: 132ms	remaining: 23.3ms
170:	learn: 33.4192970	total: 133ms	remaining: 22.5ms
171:	learn: 33.3815757	total: 134ms	remaining: 21.8ms
172:	learn: 33.3638461	total: 135ms	remaining: 21ms
173:	learn: 33.3313165	total: 136ms	remaining: 20.3ms
174:	learn: 33.3165493	total: 136ms	remaining: 19.5ms
175:	learn: 33.2812005	total: 137ms	remaining: 18.7ms
176:	learn: 33.2684566	total: 138ms	remaining: 17.9ms
177:	learn: 33.2366404	total: 139ms	remaining: 17.1ms
178:	learn: 33.1933347	total: 140ms	remaining: 16.4ms
179:	learn: 33.1832100	total: 140ms	remaining: 15.6ms
180:	learn: 33.1664598	total: 141ms	remaining: 14.8ms
181:	learn: 33.1418777	total: 142ms	remaining: 14ms
182:	learn: 33.0712690	total: 143ms	remaining: 13.3ms
183:	learn: 33.0514845	total: 143ms	remaining: 12.5ms
184:	learn: 33.0077128	total: 144ms	remaining: 11.7ms
185:	learn: 32.9419588	total: 145ms	remaining: 10.9ms
186:	learn: 32.8759779	total: 145ms	remaining: 10.1ms
187:	learn: 32.8640303	total: 146ms	remaining: 9.32ms
188:	learn: 32.8212186	total: 147ms	remaining: 8.54ms
189:	learn: 32.7832254	total: 147ms	remaining: 7.76ms
190:	learn: 32.7115177	total: 148ms	remaining: 6.97ms
191:	learn: 32.6633250	total: 149ms	remaining: 6.19ms
192:	learn: 32.6212693	total: 149ms	remaining: 5.42ms
193:	learn: 32.5933653	total: 150ms	remaining: 4.64ms
194:	learn: 32.5590386	total: 151ms	remaining: 3.87ms
195:	learn: 32.5143185	total: 151ms	remaining: 3.09ms
196:	learn: 32.4671515	total: 152ms	remaining: 2.32ms
197:	learn: 32.4153702	total: 153ms	remaining: 1.54ms
198:	learn: 32.4069281	total: 153ms	remaining: 771us
199:	learn: 32.3884692	total: 154ms	remaining: 0us
0:	learn: 47.5413405	total: 804us	remaining: 160ms
1:	learn: 47.4042730	total: 1.43ms	remaining: 141ms
2:	learn: 47.3013932	total: 2.04ms	remaining: 134ms
3:	learn: 47.1301591	total: 2.98ms	remaining: 146ms
4:	learn: 46.8960397	total: 3.77ms	remaining: 147ms
5:	learn: 46.8023001	total: 4.55ms	remaining: 147ms
6:	learn: 46.7298169	total: 5.22ms	remaining: 144ms
7:	learn: 46.5997268	total: 5.83ms	remaining: 140ms
8:	learn: 46.4671144	total: 6.46ms	remaining: 137ms
9:	learn: 46.3816178	total: 7.17ms	remaining: 136ms
10:	learn: 46.3060138	total: 7.85ms	remaining: 135ms
11:	learn: 46.2340934	total: 8.56ms	remaining: 134ms
12:	learn: 46.1497717	total: 9.25ms	remaining: 133ms
13:	learn: 46.0401742	total: 9.93ms	remaining: 132ms
14:	learn: 45.9678554	total: 10.6ms	remaining: 131ms
15:	learn: 45.8224538	total: 11.2ms	remaining: 129ms
16:	learn: 45.6410626	total: 11.9ms	remaining: 128ms
17:	learn: 45.4737697	total: 12.4ms	remaining: 126ms
18:	learn: 45.2610399	total: 13.1ms	remaining: 125ms
19:	learn: 45.1181641	total: 13.7ms	remaining: 123ms
20:	learn: 44.9935373	total: 14.4ms	remaining: 123ms
21:	learn: 44.9177790	total: 15.1ms	remaining: 122ms
22:	learn: 44.8282635	total: 15.7ms	remaining: 121ms
23:	learn: 44.7631728	total: 16.3ms	remaining: 120ms
24:	learn: 44.6211946	total: 17ms	remaining: 119ms
25:	learn: 44.5169294	total: 17.7ms	remaining: 118ms
26:	learn: 44.4275391	total: 18.4ms	remaining: 118ms
27:	learn: 44.3534003	total: 19.1ms	remaining: 117ms
28:	learn: 44.2893131	total: 19.8ms	remaining: 117ms
29:	learn: 44.1473210	total: 20.5ms	remaining: 116ms
30:	learn: 44.0449795	total: 21.3ms	remaining: 116ms
31:	learn: 43.8914683	total: 22ms	remaining: 116ms
32:	learn: 43.8120789	total: 22.8ms	remaining: 115ms
33:	learn: 43.7564647	total: 23.4ms	remaining: 114ms
34:	learn: 43.6701526	total: 24.2ms	remaining: 114ms
35:	learn: 43.5973974	total: 25ms	remaining: 114ms
36:	learn: 43.4812700	total: 25.8ms	remaining: 113ms
37:	learn: 43.2995913	total: 26.3ms	remaining: 112ms
38:	learn: 43.2241107	total: 27ms	remaining: 112ms
39:	learn: 43.1305230	total: 27.7ms	remaining: 111ms
40:	learn: 43.0618164	total: 28.3ms	remaining: 110ms
41:	learn: 42.9941319	total: 29ms	remaining: 109ms
42:	learn: 42.9340920	total: 29.6ms	remaining: 108ms
43:	learn: 42.8381509	total: 30.3ms	remaining: 107ms
44:	learn: 42.7891560	total: 31ms	remaining: 107ms
45:	learn: 42.6300724	total: 31.7ms	remaining: 106ms
46:	learn: 42.4714446	total: 32.4ms	remaining: 105ms
47:	learn: 42.3938509	total: 33ms	remaining: 105ms
48:	learn: 42.3425919	total: 33.7ms	remaining: 104ms
49:	learn: 42.1982180	total: 34.4ms	remaining: 103ms
50:	learn: 42.0909996	total: 35.1ms	remaining: 102ms
51:	learn: 42.0275207	total: 35.8ms	remaining: 102ms
52:	learn: 41.9576936	total: 36.4ms	remaining: 101ms
53:	learn: 41.8980736	total: 37ms	remaining: 100ms
54:	learn: 41.8441375	total: 37.7ms	remaining: 99.5ms
55:	learn: 41.7957864	total: 38.3ms	remaining: 98.6ms
56:	learn: 41.6400935	total: 39ms	remaining: 97.8ms
57:	learn: 41.5779559	total: 39.6ms	remaining: 97ms
58:	learn: 41.4015880	total: 40.3ms	remaining: 96.4ms
59:	learn: 41.3246540	total: 41ms	remaining: 95.6ms
60:	learn: 41.2191783	total: 41.7ms	remaining: 95ms
61:	learn: 41.0767371	total: 42.4ms	remaining: 94.4ms
62:	learn: 41.0185674	total: 43ms	remaining: 93.6ms
63:	learn: 40.8727589	total: 43.6ms	remaining: 92.7ms
64:	learn: 40.8090578	total: 44.3ms	remaining: 92.1ms
65:	learn: 40.7478418	total: 45.1ms	remaining: 91.5ms
66:	learn: 40.6898542	total: 45.8ms	remaining: 91ms
67:	learn: 40.6495112	total: 46.6ms	remaining: 90.4ms
68:	learn: 40.5711230	total: 47.4ms	remaining: 90ms
69:	learn: 40.4340360	total: 48.2ms	remaining: 89.5ms
70:	learn: 40.3864634	total: 48.9ms	remaining: 88.9ms
71:	learn: 40.2927281	total: 49.8ms	remaining: 88.5ms
72:	learn: 40.2471461	total: 50.6ms	remaining: 88ms
73:	learn: 40.1173032	total: 51.4ms	remaining: 87.5ms
74:	learn: 39.9572645	total: 52.3ms	remaining: 87.2ms
75:	learn: 39.8289998	total: 53ms	remaining: 86.5ms
76:	learn: 39.7317641	total: 53.8ms	remaining: 85.9ms
77:	learn: 39.6177868	total: 54.5ms	remaining: 85.3ms
78:	learn: 39.4648683	total: 55.3ms	remaining: 84.7ms
79:	learn: 39.3366556	total: 56.1ms	remaining: 84.1ms
80:	learn: 39.2794630	total: 56.9ms	remaining: 83.6ms
81:	learn: 39.1935374	total: 57.6ms	remaining: 83ms
82:	learn: 39.0799065	total: 58.4ms	remaining: 82.3ms
83:	learn: 38.9736899	total: 59.3ms	remaining: 81.9ms
84:	learn: 38.8917692	total: 60ms	remaining: 81.2ms
85:	learn: 38.8692792	total: 60.9ms	remaining: 80.7ms
86:	learn: 38.8111920	total: 61.7ms	remaining: 80.1ms
87:	learn: 38.7611157	total: 62.5ms	remaining: 79.6ms
88:	learn: 38.7303702	total: 63.3ms	remaining: 79ms
89:	learn: 38.7008618	total: 64.2ms	remaining: 78.5ms
90:	learn: 38.5775963	total: 65.1ms	remaining: 77.9ms
91:	learn: 38.5386335	total: 65.8ms	remaining: 77.3ms
92:	learn: 38.4934053	total: 66.5ms	remaining: 76.5ms
93:	learn: 38.4504791	total: 67.8ms	remaining: 76.4ms
94:	learn: 38.3832805	total: 68.9ms	remaining: 76.1ms
95:	learn: 38.3394560	total: 70ms	remaining: 75.8ms
96:	learn: 38.2161225	total: 70.9ms	remaining: 75.3ms
97:	learn: 38.1158951	total: 71.9ms	remaining: 74.8ms
98:	learn: 38.0067354	total: 72.8ms	remaining: 74.3ms
99:	learn: 37.9602724	total: 74ms	remaining: 74ms
100:	learn: 37.9339489	total: 74.9ms	remaining: 73.4ms
101:	learn: 37.8394853	total: 75.8ms	remaining: 72.9ms
102:	learn: 37.7321497	total: 76.6ms	remaining: 72.2ms
103:	learn: 37.6596017	total: 77.5ms	remaining: 71.5ms
104:	learn: 37.6203341	total: 78.7ms	remaining: 71.2ms
105:	learn: 37.5197469	total: 80.1ms	remaining: 71ms
106:	learn: 37.4725979	total: 80.9ms	remaining: 70.3ms
107:	learn: 37.4435463	total: 81.9ms	remaining: 69.8ms
108:	learn: 37.3727955	total: 83.7ms	remaining: 69.9ms
109:	learn: 37.2608160	total: 85ms	remaining: 69.6ms
110:	learn: 37.1365304	total: 85.9ms	remaining: 68.9ms
111:	learn: 37.0095684	total: 87.1ms	remaining: 68.5ms
112:	learn: 36.9792507	total: 88.2ms	remaining: 67.9ms
113:	learn: 36.9430515	total: 89.1ms	remaining: 67.2ms
114:	learn: 36.8720961	total: 89.9ms	remaining: 66.5ms
115:	learn: 36.8299504	total: 90.8ms	remaining: 65.7ms
116:	learn: 36.8054916	total: 91.6ms	remaining: 65ms
117:	learn: 36.7261879	total: 92.7ms	remaining: 64.4ms
118:	learn: 36.6313984	total: 93.5ms	remaining: 63.6ms
119:	learn: 36.5839057	total: 94.3ms	remaining: 62.9ms
120:	learn: 36.4520465	total: 95.1ms	remaining: 62.1ms
121:	learn: 36.3698730	total: 95.9ms	remaining: 61.3ms
122:	learn: 36.2898575	total: 96.7ms	remaining: 60.5ms
123:	learn: 36.2709483	total: 97.5ms	remaining: 59.7ms
124:	learn: 36.1687567	total: 98.2ms	remaining: 58.9ms
125:	learn: 36.1220183	total: 98.9ms	remaining: 58.1ms
126:	learn: 36.0222391	total: 99.6ms	remaining: 57.3ms
127:	learn: 35.9388813	total: 100ms	remaining: 56.5ms
128:	learn: 35.9020294	total: 101ms	remaining: 55.7ms
129:	learn: 35.8027120	total: 102ms	remaining: 54.9ms
130:	learn: 35.7083967	total: 103ms	remaining: 54.1ms
131:	learn: 35.6806443	total: 103ms	remaining: 53.3ms
132:	learn: 35.5856666	total: 104ms	remaining: 52.5ms
133:	learn: 35.5639283	total: 105ms	remaining: 51.6ms
134:	learn: 35.5264118	total: 105ms	remaining: 50.8ms
135:	learn: 35.4950444	total: 106ms	remaining: 50ms
136:	learn: 35.4780706	total: 107ms	remaining: 49.1ms
137:	learn: 35.4341419	total: 107ms	remaining: 48.3ms
138:	learn: 35.3784667	total: 108ms	remaining: 47.4ms
139:	learn: 35.3281885	total: 109ms	remaining: 46.6ms
140:	learn: 35.2930665	total: 109ms	remaining: 45.8ms
141:	learn: 35.2452353	total: 110ms	remaining: 45ms
142:	learn: 35.2162123	total: 111ms	remaining: 44.1ms
143:	learn: 35.1977123	total: 111ms	remaining: 43.4ms
144:	learn: 35.1616996	total: 112ms	remaining: 42.5ms
145:	learn: 35.1485018	total: 113ms	remaining: 41.7ms
146:	learn: 35.0229940	total: 113ms	remaining: 40.9ms
147:	learn: 34.9165274	total: 114ms	remaining: 40.1ms
148:	learn: 34.8049137	total: 115ms	remaining: 39.3ms
149:	learn: 34.7581164	total: 115ms	remaining: 38.5ms
150:	learn: 34.6935379	total: 116ms	remaining: 37.7ms
151:	learn: 34.6705467	total: 117ms	remaining: 36.9ms
152:	learn: 34.5840510	total: 118ms	remaining: 36.2ms
153:	learn: 34.5274952	total: 118ms	remaining: 35.4ms
154:	learn: 34.5039816	total: 119ms	remaining: 34.6ms
155:	learn: 34.4571072	total: 120ms	remaining: 33.8ms
156:	learn: 34.4219046	total: 120ms	remaining: 33ms
157:	learn: 34.4062836	total: 121ms	remaining: 32.2ms
158:	learn: 34.3140485	total: 122ms	remaining: 31.4ms
159:	learn: 34.2514932	total: 123ms	remaining: 30.6ms
160:	learn: 34.1785436	total: 123ms	remaining: 29.8ms
161:	learn: 34.1562964	total: 124ms	remaining: 29.1ms
162:	learn: 34.1269203	total: 125ms	remaining: 28.3ms
163:	learn: 34.1002443	total: 126ms	remaining: 27.5ms
164:	learn: 34.0821366	total: 126ms	remaining: 26.8ms
165:	learn: 33.9698382	total: 127ms	remaining: 26ms
166:	learn: 33.9381788	total: 128ms	remaining: 25.2ms
167:	learn: 33.8779145	total: 128ms	remaining: 24.4ms
168:	learn: 33.8022549	total: 129ms	remaining: 23.6ms
169:	learn: 33.7221779	total: 130ms	remaining: 22.9ms
170:	learn: 33.6507173	total: 130ms	remaining: 22.1ms
171:	learn: 33.6084031	total: 131ms	remaining: 21.3ms
172:	learn: 33.5414163	total: 132ms	remaining: 20.6ms
173:	learn: 33.4950698	total: 132ms	remaining: 19.8ms
174:	learn: 33.4607894	total: 133ms	remaining: 19ms
175:	learn: 33.4128270	total: 134ms	remaining: 18.2ms
176:	learn: 33.3993696	total: 134ms	remaining: 17.5ms
177:	learn: 33.3476417	total: 135ms	remaining: 16.7ms
178:	learn: 33.3337522	total: 136ms	remaining: 15.9ms
179:	learn: 33.3252558	total: 136ms	remaining: 15.2ms
180:	learn: 33.3106873	total: 137ms	remaining: 14.4ms
181:	learn: 33.2981688	total: 138ms	remaining: 13.6ms
182:	learn: 33.2471875	total: 138ms	remaining: 12.9ms
183:	learn: 33.2287396	total: 139ms	remaining: 12.1ms
184:	learn: 33.1687544	total: 140ms	remaining: 11.3ms
185:	learn: 33.1539312	total: 140ms	remaining: 10.6ms
186:	learn: 33.0887021	total: 141ms	remaining: 9.8ms
187:	learn: 33.0787973	total: 142ms	remaining: 9.04ms
188:	learn: 33.0288259	total: 142ms	remaining: 8.29ms
189:	learn: 32.9830382	total: 143ms	remaining: 7.53ms
190:	learn: 32.9299536	total: 144ms	remaining: 6.77ms
191:	learn: 32.8731965	total: 144ms	remaining: 6.02ms
192:	learn: 32.8545456	total: 145ms	remaining: 5.26ms
193:	learn: 32.7954507	total: 146ms	remaining: 4.51ms
194:	learn: 32.7852007	total: 146ms	remaining: 3.75ms
195:	learn: 32.7485313	total: 147ms	remaining: 3ms
196:	learn: 32.7412632	total: 148ms	remaining: 2.25ms
197:	learn: 32.6934005	total: 149ms	remaining: 1.5ms
198:	learn: 32.6325960	total: 150ms	remaining: 751us
199:	learn: 32.5977041	total: 150ms	remaining: 0us
0:	learn: 27.2173776	total: 1.95ms	remaining: 389ms
1:	learn: 26.3026144	total: 3.99ms	remaining: 395ms
2:	learn: 25.6419394	total: 5.82ms	remaining: 382ms
3:	learn: 24.9436234	total: 7.63ms	remaining: 374ms
4:	learn: 24.5168790	total: 9.49ms	remaining: 370ms
5:	learn: 23.9946024	total: 11.7ms	remaining: 377ms
6:	learn: 23.4596303	total: 13.8ms	remaining: 379ms
7:	learn: 22.9324516	total: 15.7ms	remaining: 378ms
8:	learn: 22.5177719	total: 17.8ms	remaining: 378ms
9:	learn: 22.0686207	total: 20ms	remaining: 380ms
10:	learn: 21.5578759	total: 21.9ms	remaining: 377ms
11:	learn: 21.2470071	total: 23.9ms	remaining: 375ms
12:	learn: 20.9591049	total: 26ms	remaining: 374ms
13:	learn: 20.5526441	total: 27.9ms	remaining: 371ms
14:	learn: 20.3089581	total: 29.7ms	remaining: 367ms
15:	learn: 20.0882303	total: 31.6ms	remaining: 363ms
16:	learn: 19.8470023	total: 33.4ms	remaining: 360ms
17:	learn: 19.6235706	total: 35.3ms	remaining: 357ms
18:	learn: 19.4469370	total: 37.2ms	remaining: 355ms
19:	learn: 19.3036640	total: 39.4ms	remaining: 355ms
20:	learn: 19.0131879	total: 41.3ms	remaining: 352ms
21:	learn: 18.7266866	total: 43.2ms	remaining: 350ms
22:	learn: 18.4779202	total: 45.4ms	remaining: 349ms
23:	learn: 18.1656742	total: 47.6ms	remaining: 349ms
24:	learn: 18.0175578	total: 49.5ms	remaining: 346ms
25:	learn: 17.8799616	total: 51.3ms	remaining: 343ms
26:	learn: 17.7380555	total: 53.2ms	remaining: 341ms
27:	learn: 17.5276079	total: 55.2ms	remaining: 339ms
28:	learn: 17.4402374	total: 57.2ms	remaining: 337ms
29:	learn: 17.2686955	total: 59.1ms	remaining: 335ms
30:	learn: 17.0970436	total: 61ms	remaining: 332ms
31:	learn: 17.0133798	total: 62.8ms	remaining: 330ms
32:	learn: 16.8833557	total: 64.8ms	remaining: 328ms
33:	learn: 16.7861892	total: 66.7ms	remaining: 326ms
34:	learn: 16.6660637	total: 68.6ms	remaining: 323ms
35:	learn: 16.5929100	total: 70.4ms	remaining: 321ms
36:	learn: 16.4874455	total: 72.4ms	remaining: 319ms
37:	learn: 16.4210125	total: 74.3ms	remaining: 317ms
38:	learn: 16.2218597	total: 76.1ms	remaining: 314ms
39:	learn: 16.1233730	total: 77.9ms	remaining: 312ms
40:	learn: 16.0197291	total: 82.2ms	remaining: 319ms
41:	learn: 15.8868797	total: 85.3ms	remaining: 321ms
42:	learn: 15.7304403	total: 88.6ms	remaining: 324ms
43:	learn: 15.6345298	total: 94.4ms	remaining: 335ms
44:	learn: 15.5828981	total: 98.4ms	remaining: 339ms
45:	learn: 15.4967174	total: 101ms	remaining: 338ms
46:	learn: 15.3874751	total: 105ms	remaining: 342ms
47:	learn: 15.3518584	total: 108ms	remaining: 342ms
48:	learn: 15.2041148	total: 110ms	remaining: 340ms
49:	learn: 15.0736744	total: 112ms	remaining: 337ms
50:	learn: 14.9557868	total: 115ms	remaining: 335ms
51:	learn: 14.8619990	total: 117ms	remaining: 332ms
52:	learn: 14.7194668	total: 119ms	remaining: 330ms
53:	learn: 14.6239828	total: 122ms	remaining: 329ms
54:	learn: 14.5718496	total: 124ms	remaining: 328ms
55:	learn: 14.4559636	total: 127ms	remaining: 326ms
56:	learn: 14.2483934	total: 129ms	remaining: 324ms
57:	learn: 14.1989131	total: 131ms	remaining: 322ms
58:	learn: 14.1019712	total: 134ms	remaining: 320ms
59:	learn: 13.9856792	total: 136ms	remaining: 318ms
60:	learn: 13.8856124	total: 139ms	remaining: 317ms
61:	learn: 13.8123880	total: 142ms	remaining: 315ms
62:	learn: 13.7674650	total: 144ms	remaining: 312ms
63:	learn: 13.7537652	total: 146ms	remaining: 310ms
64:	learn: 13.6399918	total: 148ms	remaining: 308ms
65:	learn: 13.5625274	total: 150ms	remaining: 305ms
66:	learn: 13.5153222	total: 152ms	remaining: 302ms
67:	learn: 13.4715742	total: 154ms	remaining: 299ms
68:	learn: 13.4060287	total: 156ms	remaining: 296ms
69:	learn: 13.3558172	total: 158ms	remaining: 294ms
70:	learn: 13.2850108	total: 160ms	remaining: 291ms
71:	learn: 13.2536076	total: 162ms	remaining: 288ms
72:	learn: 13.1825253	total: 164ms	remaining: 285ms
73:	learn: 13.1531063	total: 166ms	remaining: 283ms
74:	learn: 13.0539601	total: 169ms	remaining: 281ms
75:	learn: 12.9774255	total: 171ms	remaining: 279ms
76:	learn: 12.8785431	total: 173ms	remaining: 277ms
77:	learn: 12.7616290	total: 176ms	remaining: 275ms
78:	learn: 12.6117095	total: 178ms	remaining: 272ms
79:	learn: 12.5396666	total: 179ms	remaining: 269ms
80:	learn: 12.4185493	total: 181ms	remaining: 266ms
81:	learn: 12.3108800	total: 183ms	remaining: 263ms
82:	learn: 12.2695453	total: 185ms	remaining: 261ms
83:	learn: 12.2402154	total: 187ms	remaining: 258ms
84:	learn: 12.2003300	total: 188ms	remaining: 255ms
85:	learn: 12.1746565	total: 190ms	remaining: 252ms
86:	learn: 12.1199336	total: 192ms	remaining: 250ms
87:	learn: 12.0106092	total: 194ms	remaining: 247ms
88:	learn: 11.9272735	total: 196ms	remaining: 244ms
89:	learn: 11.8780962	total: 198ms	remaining: 242ms
90:	learn: 11.8336603	total: 200ms	remaining: 239ms
91:	learn: 11.7924622	total: 201ms	remaining: 236ms
92:	learn: 11.7049222	total: 203ms	remaining: 234ms
93:	learn: 11.6364343	total: 205ms	remaining: 231ms
94:	learn: 11.5739279	total: 207ms	remaining: 228ms
95:	learn: 11.5237108	total: 208ms	remaining: 226ms
96:	learn: 11.4676554	total: 210ms	remaining: 223ms
97:	learn: 11.4110835	total: 212ms	remaining: 221ms
98:	learn: 11.3700747	total: 214ms	remaining: 218ms
99:	learn: 11.3295569	total: 216ms	remaining: 216ms
100:	learn: 11.2727105	total: 217ms	remaining: 213ms
101:	learn: 11.2527379	total: 219ms	remaining: 210ms
102:	learn: 11.1776433	total: 221ms	remaining: 208ms
103:	learn: 11.1365705	total: 223ms	remaining: 205ms
104:	learn: 11.0786680	total: 224ms	remaining: 203ms
105:	learn: 11.0202592	total: 226ms	remaining: 201ms
106:	learn: 10.9692299	total: 228ms	remaining: 198ms
107:	learn: 10.9336434	total: 230ms	remaining: 196ms
108:	learn: 10.8840052	total: 232ms	remaining: 194ms
109:	learn: 10.8732934	total: 234ms	remaining: 191ms
110:	learn: 10.8393882	total: 236ms	remaining: 189ms
111:	learn: 10.8217002	total: 238ms	remaining: 187ms
112:	learn: 10.7707620	total: 240ms	remaining: 184ms
113:	learn: 10.7535453	total: 241ms	remaining: 182ms
114:	learn: 10.6877319	total: 243ms	remaining: 180ms
115:	learn: 10.6405208	total: 245ms	remaining: 178ms
116:	learn: 10.5841398	total: 247ms	remaining: 175ms
117:	learn: 10.5333532	total: 249ms	remaining: 173ms
118:	learn: 10.5196647	total: 251ms	remaining: 171ms
119:	learn: 10.4826762	total: 253ms	remaining: 169ms
120:	learn: 10.4214523	total: 255ms	remaining: 166ms
121:	learn: 10.3722031	total: 257ms	remaining: 164ms
122:	learn: 10.3589541	total: 259ms	remaining: 162ms
123:	learn: 10.3162217	total: 261ms	remaining: 160ms
124:	learn: 10.2708944	total: 263ms	remaining: 158ms
125:	learn: 10.2408701	total: 265ms	remaining: 156ms
126:	learn: 10.1933561	total: 267ms	remaining: 153ms
127:	learn: 10.1642702	total: 269ms	remaining: 151ms
128:	learn: 10.1326110	total: 271ms	remaining: 149ms
129:	learn: 10.0857980	total: 273ms	remaining: 147ms
130:	learn: 10.0038129	total: 278ms	remaining: 146ms
131:	learn: 9.9923350	total: 281ms	remaining: 145ms
132:	learn: 9.9402220	total: 284ms	remaining: 143ms
133:	learn: 9.9288553	total: 286ms	remaining: 141ms
134:	learn: 9.8583192	total: 289ms	remaining: 139ms
135:	learn: 9.7921629	total: 292ms	remaining: 137ms
136:	learn: 9.7340532	total: 294ms	remaining: 135ms
137:	learn: 9.7270091	total: 296ms	remaining: 133ms
138:	learn: 9.6631721	total: 299ms	remaining: 131ms
139:	learn: 9.6552606	total: 309ms	remaining: 132ms
140:	learn: 9.6477368	total: 310ms	remaining: 130ms
141:	learn: 9.6027788	total: 312ms	remaining: 128ms
142:	learn: 9.5783983	total: 314ms	remaining: 125ms
143:	learn: 9.5301709	total: 316ms	remaining: 123ms
144:	learn: 9.5231773	total: 318ms	remaining: 121ms
145:	learn: 9.5164244	total: 319ms	remaining: 118ms
146:	learn: 9.4769090	total: 321ms	remaining: 116ms
147:	learn: 9.4584102	total: 323ms	remaining: 114ms
148:	learn: 9.4520298	total: 325ms	remaining: 111ms
149:	learn: 9.4200934	total: 327ms	remaining: 109ms
150:	learn: 9.3833699	total: 329ms	remaining: 107ms
151:	learn: 9.3640451	total: 331ms	remaining: 104ms
152:	learn: 9.3618447	total: 332ms	remaining: 102ms
153:	learn: 9.3181203	total: 334ms	remaining: 99.8ms
154:	learn: 9.2952575	total: 336ms	remaining: 97.5ms
155:	learn: 9.2766655	total: 338ms	remaining: 95.3ms
156:	learn: 9.2706137	total: 340ms	remaining: 93ms
157:	learn: 9.2232143	total: 341ms	remaining: 90.8ms
158:	learn: 9.2117249	total: 343ms	remaining: 88.5ms
159:	learn: 9.1697159	total: 345ms	remaining: 86.3ms
160:	learn: 9.1683914	total: 347ms	remaining: 84ms
161:	learn: 9.1456430	total: 348ms	remaining: 81.7ms
162:	learn: 9.1432459	total: 350ms	remaining: 79.5ms
163:	learn: 9.0937001	total: 352ms	remaining: 77.3ms
164:	learn: 9.0482714	total: 354ms	remaining: 75.1ms
165:	learn: 9.0412693	total: 356ms	remaining: 72.9ms
166:	learn: 8.9977024	total: 358ms	remaining: 70.7ms
167:	learn: 8.9716561	total: 360ms	remaining: 68.5ms
168:	learn: 8.9494840	total: 361ms	remaining: 66.3ms
169:	learn: 8.9435898	total: 363ms	remaining: 64.1ms
170:	learn: 8.9320416	total: 365ms	remaining: 61.9ms
171:	learn: 8.9265105	total: 367ms	remaining: 59.7ms
172:	learn: 8.9081872	total: 368ms	remaining: 57.5ms
173:	learn: 8.8986096	total: 370ms	remaining: 55.3ms
174:	learn: 8.8839482	total: 372ms	remaining: 53.1ms
175:	learn: 8.8482093	total: 374ms	remaining: 51ms
176:	learn: 8.8338539	total: 375ms	remaining: 48.8ms
177:	learn: 8.8210944	total: 377ms	remaining: 46.6ms
178:	learn: 8.8165962	total: 379ms	remaining: 44.4ms
179:	learn: 8.7922750	total: 381ms	remaining: 42.3ms
180:	learn: 8.7527760	total: 382ms	remaining: 40.1ms
181:	learn: 8.7338997	total: 384ms	remaining: 38ms
182:	learn: 8.6997023	total: 386ms	remaining: 35.9ms
183:	learn: 8.6860237	total: 388ms	remaining: 33.7ms
184:	learn: 8.6749033	total: 390ms	remaining: 31.6ms
185:	learn: 8.6293250	total: 391ms	remaining: 29.5ms
186:	learn: 8.6111671	total: 393ms	remaining: 27.3ms
187:	learn: 8.5862239	total: 395ms	remaining: 25.2ms
188:	learn: 8.5562469	total: 397ms	remaining: 23.1ms
189:	learn: 8.5230409	total: 399ms	remaining: 21ms
190:	learn: 8.4919272	total: 401ms	remaining: 18.9ms
191:	learn: 8.4735402	total: 402ms	remaining: 16.8ms
192:	learn: 8.4348778	total: 404ms	remaining: 14.7ms
193:	learn: 8.3946761	total: 406ms	remaining: 12.6ms
194:	learn: 8.3734196	total: 408ms	remaining: 10.5ms
195:	learn: 8.3699636	total: 409ms	remaining: 8.35ms
196:	learn: 8.3620347	total: 411ms	remaining: 6.26ms
197:	learn: 8.3211828	total: 413ms	remaining: 4.17ms
198:	learn: 8.2855364	total: 415ms	remaining: 2.08ms
199:	learn: 8.2693598	total: 417ms	remaining: 0us
0:	learn: 41.9012867	total: 2.21ms	remaining: 439ms
1:	learn: 40.3602862	total: 4.25ms	remaining: 421ms
2:	learn: 39.0502047	total: 6.6ms	remaining: 433ms
3:	learn: 37.6041267	total: 8.87ms	remaining: 435ms
4:	learn: 36.6225659	total: 10.8ms	remaining: 422ms
5:	learn: 35.4308990	total: 12.7ms	remaining: 411ms
6:	learn: 34.3662750	total: 14.6ms	remaining: 403ms
7:	learn: 33.0064636	total: 16.7ms	remaining: 401ms
8:	learn: 31.7582660	total: 18.7ms	remaining: 396ms
9:	learn: 30.9194740	total: 20.8ms	remaining: 395ms
10:	learn: 29.8158668	total: 23ms	remaining: 394ms
11:	learn: 29.1934067	total: 26.3ms	remaining: 412ms
12:	learn: 28.5173856	total: 30.6ms	remaining: 440ms
13:	learn: 27.5728711	total: 34.3ms	remaining: 456ms
14:	learn: 26.9369780	total: 38.2ms	remaining: 471ms
15:	learn: 26.4125583	total: 42ms	remaining: 483ms
16:	learn: 25.7202314	total: 46.5ms	remaining: 501ms
17:	learn: 24.9850822	total: 49ms	remaining: 495ms
18:	learn: 24.4066640	total: 51.9ms	remaining: 494ms
19:	learn: 24.0360669	total: 55.4ms	remaining: 499ms
20:	learn: 23.3845981	total: 57.9ms	remaining: 493ms
21:	learn: 22.8843657	total: 60.3ms	remaining: 488ms
22:	learn: 22.3929633	total: 62.5ms	remaining: 481ms
23:	learn: 21.8546941	total: 64.9ms	remaining: 476ms
24:	learn: 21.5801437	total: 67.1ms	remaining: 470ms
25:	learn: 21.1440814	total: 69.3ms	remaining: 464ms
26:	learn: 20.9103570	total: 71.4ms	remaining: 458ms
27:	learn: 20.6242817	total: 73.6ms	remaining: 452ms
28:	learn: 20.4235998	total: 76ms	remaining: 448ms
29:	learn: 20.1368127	total: 78.2ms	remaining: 443ms
30:	learn: 19.8012500	total: 80.5ms	remaining: 439ms
31:	learn: 19.5973729	total: 82.7ms	remaining: 434ms
32:	learn: 19.4254728	total: 84.9ms	remaining: 430ms
33:	learn: 19.3592959	total: 87.1ms	remaining: 425ms
34:	learn: 19.1693009	total: 89.4ms	remaining: 421ms
35:	learn: 18.9768459	total: 91.4ms	remaining: 416ms
36:	learn: 18.8023888	total: 93.6ms	remaining: 413ms
37:	learn: 18.6944581	total: 96ms	remaining: 409ms
38:	learn: 18.6142316	total: 98.1ms	remaining: 405ms
39:	learn: 18.4307277	total: 100ms	remaining: 400ms
40:	learn: 18.3184423	total: 102ms	remaining: 395ms
41:	learn: 18.1987806	total: 104ms	remaining: 392ms
42:	learn: 18.1374565	total: 106ms	remaining: 388ms
43:	learn: 17.9890786	total: 109ms	remaining: 385ms
44:	learn: 17.8242470	total: 111ms	remaining: 383ms
45:	learn: 17.7256988	total: 114ms	remaining: 380ms
46:	learn: 17.6013418	total: 115ms	remaining: 375ms
47:	learn: 17.3516423	total: 117ms	remaining: 371ms
48:	learn: 17.1549027	total: 119ms	remaining: 366ms
49:	learn: 17.0522881	total: 121ms	remaining: 362ms
50:	learn: 16.9721506	total: 123ms	remaining: 358ms
51:	learn: 16.8171787	total: 124ms	remaining: 354ms
52:	learn: 16.7862551	total: 126ms	remaining: 350ms
53:	learn: 16.7346380	total: 128ms	remaining: 346ms
54:	learn: 16.6820832	total: 130ms	remaining: 343ms
55:	learn: 16.5756273	total: 132ms	remaining: 339ms
56:	learn: 16.4081000	total: 134ms	remaining: 335ms
57:	learn: 16.2692136	total: 136ms	remaining: 332ms
58:	learn: 16.2082793	total: 137ms	remaining: 328ms
59:	learn: 16.0482879	total: 139ms	remaining: 325ms
60:	learn: 15.9323395	total: 141ms	remaining: 321ms
61:	learn: 15.8479826	total: 143ms	remaining: 318ms
62:	learn: 15.8047748	total: 145ms	remaining: 314ms
63:	learn: 15.7454767	total: 147ms	remaining: 311ms
64:	learn: 15.6530131	total: 148ms	remaining: 308ms
65:	learn: 15.5406921	total: 150ms	remaining: 305ms
66:	learn: 15.5114049	total: 152ms	remaining: 302ms
67:	learn: 15.4318723	total: 154ms	remaining: 298ms
68:	learn: 15.3332108	total: 156ms	remaining: 295ms
69:	learn: 15.1573507	total: 157ms	remaining: 292ms
70:	learn: 15.0494657	total: 159ms	remaining: 289ms
71:	learn: 14.9785035	total: 161ms	remaining: 286ms
72:	learn: 14.8912308	total: 163ms	remaining: 283ms
73:	learn: 14.7415189	total: 165ms	remaining: 280ms
74:	learn: 14.6932372	total: 166ms	remaining: 277ms
75:	learn: 14.6822869	total: 168ms	remaining: 274ms
76:	learn: 14.6148551	total: 170ms	remaining: 272ms
77:	learn: 14.5020765	total: 172ms	remaining: 269ms
78:	learn: 14.4188246	total: 174ms	remaining: 266ms
79:	learn: 14.3590099	total: 175ms	remaining: 263ms
80:	learn: 14.3459790	total: 177ms	remaining: 260ms
81:	learn: 14.2361343	total: 179ms	remaining: 257ms
82:	learn: 14.0748309	total: 181ms	remaining: 255ms
83:	learn: 14.0243454	total: 183ms	remaining: 252ms
84:	learn: 13.9491161	total: 184ms	remaining: 250ms
85:	learn: 13.9111559	total: 186ms	remaining: 247ms
86:	learn: 13.8733819	total: 188ms	remaining: 244ms
87:	learn: 13.7719419	total: 190ms	remaining: 242ms
88:	learn: 13.6904842	total: 192ms	remaining: 239ms
89:	learn: 13.5947292	total: 193ms	remaining: 236ms
90:	learn: 13.5220179	total: 195ms	remaining: 234ms
91:	learn: 13.4609052	total: 213ms	remaining: 250ms
92:	learn: 13.3610228	total: 215ms	remaining: 248ms
93:	learn: 13.2768858	total: 218ms	remaining: 245ms
94:	learn: 13.1968680	total: 219ms	remaining: 243ms
95:	learn: 13.1630226	total: 221ms	remaining: 240ms
96:	learn: 13.0086795	total: 223ms	remaining: 237ms
97:	learn: 12.9930441	total: 225ms	remaining: 234ms
98:	learn: 12.8542329	total: 227ms	remaining: 231ms
99:	learn: 12.8000828	total: 229ms	remaining: 229ms
100:	learn: 12.7366148	total: 231ms	remaining: 226ms
101:	learn: 12.6097017	total: 232ms	remaining: 223ms
102:	learn: 12.5787510	total: 234ms	remaining: 221ms
103:	learn: 12.5479357	total: 236ms	remaining: 218ms
104:	learn: 12.4511363	total: 240ms	remaining: 217ms
105:	learn: 12.4036812	total: 244ms	remaining: 216ms
106:	learn: 12.3598863	total: 247ms	remaining: 215ms
107:	learn: 12.3459795	total: 251ms	remaining: 214ms
108:	learn: 12.3111169	total: 253ms	remaining: 212ms
109:	learn: 12.2676933	total: 256ms	remaining: 210ms
110:	learn: 12.1758887	total: 259ms	remaining: 208ms
111:	learn: 12.1152608	total: 261ms	remaining: 205ms
112:	learn: 12.0829383	total: 263ms	remaining: 202ms
113:	learn: 12.0490563	total: 266ms	remaining: 200ms
114:	learn: 11.9403133	total: 268ms	remaining: 198ms
115:	learn: 11.9198217	total: 270ms	remaining: 195ms
116:	learn: 11.8839602	total: 271ms	remaining: 192ms
117:	learn: 11.8645354	total: 273ms	remaining: 190ms
118:	learn: 11.8162872	total: 275ms	remaining: 187ms
119:	learn: 11.6982945	total: 277ms	remaining: 184ms
120:	learn: 11.6219239	total: 278ms	remaining: 182ms
121:	learn: 11.5658777	total: 280ms	remaining: 179ms
122:	learn: 11.5048819	total: 282ms	remaining: 177ms
123:	learn: 11.4734299	total: 284ms	remaining: 174ms
124:	learn: 11.3945639	total: 286ms	remaining: 171ms
125:	learn: 11.3591944	total: 288ms	remaining: 169ms
126:	learn: 11.3468251	total: 289ms	remaining: 166ms
127:	learn: 11.3379697	total: 291ms	remaining: 164ms
128:	learn: 11.2990673	total: 293ms	remaining: 161ms
129:	learn: 11.2313174	total: 295ms	remaining: 159ms
130:	learn: 11.2247310	total: 297ms	remaining: 156ms
131:	learn: 11.1582062	total: 298ms	remaining: 154ms
132:	learn: 11.0770898	total: 300ms	remaining: 151ms
133:	learn: 11.0413409	total: 302ms	remaining: 149ms
134:	learn: 10.9801933	total: 304ms	remaining: 146ms
135:	learn: 10.9421536	total: 306ms	remaining: 144ms
136:	learn: 10.8804137	total: 307ms	remaining: 141ms
137:	learn: 10.8225538	total: 309ms	remaining: 139ms
138:	learn: 10.7932046	total: 311ms	remaining: 137ms
139:	learn: 10.7379622	total: 313ms	remaining: 134ms
140:	learn: 10.7168938	total: 315ms	remaining: 132ms
141:	learn: 10.6791476	total: 316ms	remaining: 129ms
142:	learn: 10.6668469	total: 318ms	remaining: 127ms
143:	learn: 10.6342987	total: 321ms	remaining: 125ms
144:	learn: 10.6118949	total: 323ms	remaining: 122ms
145:	learn: 10.5594643	total: 324ms	remaining: 120ms
146:	learn: 10.5449127	total: 326ms	remaining: 118ms
147:	learn: 10.5140908	total: 328ms	remaining: 115ms
148:	learn: 10.4664129	total: 330ms	remaining: 113ms
149:	learn: 10.3916880	total: 332ms	remaining: 111ms
150:	learn: 10.3514579	total: 334ms	remaining: 108ms
151:	learn: 10.3462492	total: 335ms	remaining: 106ms
152:	learn: 10.3060149	total: 337ms	remaining: 104ms
153:	learn: 10.2709239	total: 339ms	remaining: 101ms
154:	learn: 10.2562514	total: 341ms	remaining: 99ms
155:	learn: 10.2458975	total: 343ms	remaining: 96.7ms
156:	learn: 10.1854980	total: 345ms	remaining: 94.4ms
157:	learn: 10.1594854	total: 347ms	remaining: 92.2ms
158:	learn: 10.1429880	total: 349ms	remaining: 90ms
159:	learn: 10.0975330	total: 351ms	remaining: 87.7ms
160:	learn: 10.0905193	total: 353ms	remaining: 85.4ms
161:	learn: 10.0668513	total: 354ms	remaining: 83.1ms
162:	learn: 10.0535099	total: 356ms	remaining: 80.9ms
163:	learn: 10.0406088	total: 358ms	remaining: 78.6ms
164:	learn: 10.0145806	total: 360ms	remaining: 76.3ms
165:	learn: 9.9960130	total: 362ms	remaining: 74ms
166:	learn: 9.9670316	total: 363ms	remaining: 71.8ms
167:	learn: 9.9544549	total: 365ms	remaining: 69.6ms
168:	learn: 9.9452295	total: 367ms	remaining: 67.3ms
169:	learn: 9.9349563	total: 369ms	remaining: 65.1ms
170:	learn: 9.9067382	total: 371ms	remaining: 62.9ms
171:	learn: 9.8682978	total: 373ms	remaining: 60.7ms
172:	learn: 9.8603020	total: 375ms	remaining: 58.5ms
173:	learn: 9.8488377	total: 377ms	remaining: 56.3ms
174:	learn: 9.8373415	total: 379ms	remaining: 54.1ms
175:	learn: 9.8033137	total: 381ms	remaining: 51.9ms
176:	learn: 9.7521603	total: 383ms	remaining: 49.7ms
177:	learn: 9.7359943	total: 385ms	remaining: 47.5ms
178:	learn: 9.7294349	total: 387ms	remaining: 45.4ms
179:	learn: 9.6906526	total: 389ms	remaining: 43.2ms
180:	learn: 9.6683537	total: 391ms	remaining: 41ms
181:	learn: 9.6404987	total: 393ms	remaining: 38.8ms
182:	learn: 9.6136184	total: 395ms	remaining: 36.7ms
183:	learn: 9.5800205	total: 397ms	remaining: 34.5ms
184:	learn: 9.5637203	total: 399ms	remaining: 32.3ms
185:	learn: 9.5532951	total: 400ms	remaining: 30.1ms
186:	learn: 9.5294543	total: 402ms	remaining: 28ms
187:	learn: 9.4966421	total: 404ms	remaining: 25.8ms
188:	learn: 9.4886710	total: 406ms	remaining: 23.6ms
189:	learn: 9.4586255	total: 409ms	remaining: 21.5ms
190:	learn: 9.4484274	total: 411ms	remaining: 19.4ms
191:	learn: 9.4061866	total: 413ms	remaining: 17.2ms
192:	learn: 9.3970270	total: 414ms	remaining: 15ms
193:	learn: 9.3793657	total: 416ms	remaining: 12.9ms
194:	learn: 9.3367009	total: 418ms	remaining: 10.7ms
195:	learn: 9.2979773	total: 420ms	remaining: 8.57ms
196:	learn: 9.2894253	total: 422ms	remaining: 6.42ms
197:	learn: 9.2717994	total: 424ms	remaining: 4.28ms
198:	learn: 9.2273630	total: 426ms	remaining: 2.14ms
199:	learn: 9.2005054	total: 429ms	remaining: 0us
0:	learn: 45.5988393	total: 2.47ms	remaining: 492ms
1:	learn: 44.0667262	total: 4.81ms	remaining: 476ms
2:	learn: 42.6667803	total: 7.06ms	remaining: 464ms
3:	learn: 41.0164184	total: 9.26ms	remaining: 454ms
4:	learn: 40.1599831	total: 11.5ms	remaining: 450ms
5:	learn: 39.1998374	total: 13.8ms	remaining: 445ms
6:	learn: 38.3721549	total: 16.4ms	remaining: 451ms
7:	learn: 37.1423161	total: 18.6ms	remaining: 447ms
8:	learn: 36.2867675	total: 20.9ms	remaining: 444ms
9:	learn: 35.2534551	total: 22.9ms	remaining: 436ms
10:	learn: 34.5948956	total: 25.1ms	remaining: 430ms
11:	learn: 34.1302484	total: 27.3ms	remaining: 428ms
12:	learn: 33.4583165	total: 29.3ms	remaining: 422ms
13:	learn: 32.6058872	total: 31.3ms	remaining: 415ms
14:	learn: 32.1334495	total: 33.5ms	remaining: 413ms
15:	learn: 31.8281150	total: 35.7ms	remaining: 411ms
16:	learn: 31.4959874	total: 38.3ms	remaining: 413ms
17:	learn: 30.6942827	total: 40.3ms	remaining: 408ms
18:	learn: 30.0118197	total: 42.5ms	remaining: 405ms
19:	learn: 29.5433695	total: 44.6ms	remaining: 401ms
20:	learn: 28.8965849	total: 47ms	remaining: 401ms
21:	learn: 28.4887119	total: 49.2ms	remaining: 398ms
22:	learn: 27.9541469	total: 51.2ms	remaining: 394ms
23:	learn: 27.6366295	total: 53ms	remaining: 389ms
24:	learn: 27.3977548	total: 55.4ms	remaining: 388ms
25:	learn: 27.1962962	total: 57.7ms	remaining: 386ms
26:	learn: 26.7648141	total: 60.3ms	remaining: 386ms
27:	learn: 26.4859528	total: 63.1ms	remaining: 387ms
28:	learn: 25.9740526	total: 65.6ms	remaining: 387ms
29:	learn: 25.5414063	total: 67.3ms	remaining: 382ms
30:	learn: 25.0726215	total: 69.1ms	remaining: 377ms
31:	learn: 24.8578425	total: 70.9ms	remaining: 372ms
32:	learn: 24.4900334	total: 72.8ms	remaining: 368ms
33:	learn: 24.3960878	total: 74.5ms	remaining: 364ms
34:	learn: 24.1095267	total: 76.3ms	remaining: 360ms
35:	learn: 23.7943610	total: 78.1ms	remaining: 356ms
36:	learn: 23.5199863	total: 79.9ms	remaining: 352ms
37:	learn: 23.3769009	total: 81.6ms	remaining: 348ms
38:	learn: 23.2735600	total: 83.3ms	remaining: 344ms
39:	learn: 22.7630506	total: 85.2ms	remaining: 341ms
40:	learn: 22.5857445	total: 87.1ms	remaining: 338ms
41:	learn: 22.4581508	total: 89.2ms	remaining: 336ms
42:	learn: 22.3975550	total: 91.1ms	remaining: 333ms
43:	learn: 22.2414333	total: 93ms	remaining: 330ms
44:	learn: 22.0715314	total: 94.9ms	remaining: 327ms
45:	learn: 21.7688530	total: 96.8ms	remaining: 324ms
46:	learn: 21.5754715	total: 98.8ms	remaining: 322ms
47:	learn: 21.4179434	total: 101ms	remaining: 319ms
48:	learn: 21.3718766	total: 103ms	remaining: 316ms
49:	learn: 21.2365490	total: 105ms	remaining: 314ms
50:	learn: 21.1753451	total: 107ms	remaining: 312ms
51:	learn: 20.9694234	total: 109ms	remaining: 309ms
52:	learn: 20.8839146	total: 110ms	remaining: 306ms
53:	learn: 20.8043429	total: 112ms	remaining: 304ms
54:	learn: 20.7538919	total: 114ms	remaining: 301ms
55:	learn: 20.4946492	total: 116ms	remaining: 299ms
56:	learn: 20.3037709	total: 118ms	remaining: 297ms
57:	learn: 20.2645370	total: 120ms	remaining: 294ms
58:	learn: 20.0523989	total: 122ms	remaining: 291ms
59:	learn: 19.8978578	total: 124ms	remaining: 289ms
60:	learn: 19.7072190	total: 126ms	remaining: 287ms
61:	learn: 19.5921681	total: 128ms	remaining: 284ms
62:	learn: 19.5582318	total: 129ms	remaining: 281ms
63:	learn: 19.4951077	total: 131ms	remaining: 279ms
64:	learn: 19.4455316	total: 133ms	remaining: 276ms
65:	learn: 19.1202445	total: 136ms	remaining: 275ms
66:	learn: 19.0300783	total: 138ms	remaining: 273ms
67:	learn: 18.9923341	total: 140ms	remaining: 271ms
68:	learn: 18.9245198	total: 142ms	remaining: 269ms
69:	learn: 18.7686036	total: 144ms	remaining: 267ms
70:	learn: 18.6109788	total: 145ms	remaining: 264ms
71:	learn: 18.2854068	total: 148ms	remaining: 262ms
72:	learn: 18.1158272	total: 150ms	remaining: 261ms
73:	learn: 17.8627486	total: 152ms	remaining: 259ms
74:	learn: 17.6513302	total: 154ms	remaining: 256ms
75:	learn: 17.4523633	total: 156ms	remaining: 254ms
76:	learn: 17.2768319	total: 158ms	remaining: 252ms
77:	learn: 17.0590182	total: 160ms	remaining: 250ms
78:	learn: 16.9292091	total: 162ms	remaining: 247ms
79:	learn: 16.8454996	total: 164ms	remaining: 245ms
80:	learn: 16.7601878	total: 165ms	remaining: 243ms
81:	learn: 16.6697484	total: 168ms	remaining: 241ms
82:	learn: 16.6239283	total: 169ms	remaining: 239ms
83:	learn: 16.4121568	total: 171ms	remaining: 237ms
84:	learn: 16.3584090	total: 174ms	remaining: 235ms
85:	learn: 16.3264696	total: 178ms	remaining: 236ms
86:	learn: 16.2672836	total: 181ms	remaining: 236ms
87:	learn: 16.0925714	total: 184ms	remaining: 235ms
88:	learn: 16.0116069	total: 187ms	remaining: 233ms
89:	learn: 15.8268689	total: 190ms	remaining: 232ms
90:	learn: 15.7989575	total: 192ms	remaining: 231ms
91:	learn: 15.6305351	total: 195ms	remaining: 229ms
92:	learn: 15.4889271	total: 197ms	remaining: 226ms
93:	learn: 15.4501637	total: 199ms	remaining: 224ms
94:	learn: 15.3988856	total: 202ms	remaining: 223ms
95:	learn: 15.2345232	total: 204ms	remaining: 221ms
96:	learn: 15.1458430	total: 205ms	remaining: 218ms
97:	learn: 14.9858948	total: 207ms	remaining: 216ms
98:	learn: 14.9657470	total: 209ms	remaining: 214ms
99:	learn: 14.8822662	total: 211ms	remaining: 211ms
100:	learn: 14.8387760	total: 213ms	remaining: 209ms
101:	learn: 14.7644482	total: 215ms	remaining: 206ms
102:	learn: 14.6223623	total: 217ms	remaining: 204ms
103:	learn: 14.4815193	total: 219ms	remaining: 202ms
104:	learn: 14.3957837	total: 220ms	remaining: 199ms
105:	learn: 14.2272069	total: 222ms	remaining: 197ms
106:	learn: 14.0853007	total: 224ms	remaining: 195ms
107:	learn: 14.0424631	total: 226ms	remaining: 193ms
108:	learn: 13.9844368	total: 228ms	remaining: 190ms
109:	learn: 13.9686284	total: 230ms	remaining: 188ms
110:	learn: 13.9090028	total: 231ms	remaining: 186ms
111:	learn: 13.7912829	total: 233ms	remaining: 183ms
112:	learn: 13.7159189	total: 235ms	remaining: 181ms
113:	learn: 13.6507379	total: 237ms	remaining: 179ms
114:	learn: 13.6157048	total: 239ms	remaining: 176ms
115:	learn: 13.4979956	total: 240ms	remaining: 174ms
116:	learn: 13.4603073	total: 242ms	remaining: 172ms
117:	learn: 13.3924995	total: 244ms	remaining: 170ms
118:	learn: 13.3567968	total: 246ms	remaining: 167ms
119:	learn: 13.2846914	total: 248ms	remaining: 165ms
120:	learn: 13.2285300	total: 250ms	remaining: 163ms
121:	learn: 13.1263880	total: 251ms	remaining: 161ms
122:	learn: 13.0650602	total: 253ms	remaining: 158ms
123:	learn: 13.0108668	total: 255ms	remaining: 156ms
124:	learn: 12.8969660	total: 257ms	remaining: 154ms
125:	learn: 12.7767557	total: 258ms	remaining: 152ms
126:	learn: 12.6752597	total: 260ms	remaining: 150ms
127:	learn: 12.6150053	total: 262ms	remaining: 147ms
128:	learn: 12.5796954	total: 264ms	remaining: 145ms
129:	learn: 12.4860644	total: 265ms	remaining: 143ms
130:	learn: 12.3986608	total: 267ms	remaining: 141ms
131:	learn: 12.3586817	total: 269ms	remaining: 139ms
132:	learn: 12.3346361	total: 271ms	remaining: 137ms
133:	learn: 12.2497055	total: 273ms	remaining: 135ms
134:	learn: 12.2073373	total: 275ms	remaining: 133ms
135:	learn: 12.1772712	total: 277ms	remaining: 130ms
136:	learn: 12.1306014	total: 279ms	remaining: 128ms
137:	learn: 12.0856252	total: 281ms	remaining: 126ms
138:	learn: 12.0688553	total: 283ms	remaining: 124ms
139:	learn: 12.0611444	total: 284ms	remaining: 122ms
140:	learn: 12.0304337	total: 286ms	remaining: 120ms
141:	learn: 11.9886085	total: 288ms	remaining: 118ms
142:	learn: 11.9656609	total: 290ms	remaining: 115ms
143:	learn: 11.9367134	total: 291ms	remaining: 113ms
144:	learn: 11.9070746	total: 293ms	remaining: 111ms
145:	learn: 11.9017508	total: 295ms	remaining: 109ms
146:	learn: 11.8547447	total: 297ms	remaining: 107ms
147:	learn: 11.7715346	total: 299ms	remaining: 105ms
148:	learn: 11.6936801	total: 300ms	remaining: 103ms
149:	learn: 11.6465295	total: 302ms	remaining: 101ms
150:	learn: 11.6135825	total: 304ms	remaining: 98.6ms
151:	learn: 11.5520734	total: 306ms	remaining: 96.5ms
152:	learn: 11.5392594	total: 307ms	remaining: 94.4ms
153:	learn: 11.4732330	total: 309ms	remaining: 92.3ms
154:	learn: 11.4229895	total: 311ms	remaining: 90.3ms
155:	learn: 11.4106703	total: 313ms	remaining: 88.2ms
156:	learn: 11.3945916	total: 314ms	remaining: 86.1ms
157:	learn: 11.3633331	total: 316ms	remaining: 84ms
158:	learn: 11.3189425	total: 318ms	remaining: 82ms
159:	learn: 11.2790765	total: 320ms	remaining: 79.9ms
160:	learn: 11.1976571	total: 321ms	remaining: 77.9ms
161:	learn: 11.1602777	total: 323ms	remaining: 75.8ms
162:	learn: 11.1264815	total: 325ms	remaining: 73.8ms
163:	learn: 11.0755511	total: 327ms	remaining: 71.7ms
164:	learn: 11.0669238	total: 329ms	remaining: 69.7ms
165:	learn: 11.0223156	total: 330ms	remaining: 67.7ms
166:	learn: 11.0004765	total: 332ms	remaining: 65.6ms
167:	learn: 10.9907728	total: 334ms	remaining: 63.6ms
168:	learn: 10.9781087	total: 336ms	remaining: 61.5ms
169:	learn: 10.9729772	total: 337ms	remaining: 59.5ms
170:	learn: 10.9292162	total: 339ms	remaining: 57.5ms
171:	learn: 10.9114886	total: 341ms	remaining: 55.5ms
172:	learn: 10.8692957	total: 343ms	remaining: 53.5ms
173:	learn: 10.8565693	total: 345ms	remaining: 51.5ms
174:	learn: 10.8479040	total: 347ms	remaining: 49.5ms
175:	learn: 10.8134133	total: 348ms	remaining: 47.5ms
176:	learn: 10.7397658	total: 350ms	remaining: 45.5ms
177:	learn: 10.7075204	total: 352ms	remaining: 43.5ms
178:	learn: 10.7018837	total: 354ms	remaining: 41.5ms
179:	learn: 10.6633845	total: 356ms	remaining: 39.5ms
180:	learn: 10.5736444	total: 357ms	remaining: 37.5ms
181:	learn: 10.5602667	total: 359ms	remaining: 35.5ms
182:	learn: 10.5224644	total: 361ms	remaining: 33.6ms
183:	learn: 10.5064690	total: 363ms	remaining: 31.6ms
184:	learn: 10.4500232	total: 365ms	remaining: 29.6ms
185:	learn: 10.4233867	total: 367ms	remaining: 27.6ms
186:	learn: 10.3532302	total: 369ms	remaining: 25.6ms
187:	learn: 10.3507295	total: 370ms	remaining: 23.6ms
188:	learn: 10.3042761	total: 372ms	remaining: 21.7ms
189:	learn: 10.2738014	total: 375ms	remaining: 19.7ms
190:	learn: 10.2671610	total: 377ms	remaining: 17.8ms
191:	learn: 10.2553404	total: 380ms	remaining: 15.8ms
192:	learn: 10.2208633	total: 384ms	remaining: 13.9ms
193:	learn: 10.1811139	total: 387ms	remaining: 12ms
194:	learn: 10.1679708	total: 391ms	remaining: 10ms
195:	learn: 10.1353499	total: 397ms	remaining: 8.09ms
196:	learn: 10.1290738	total: 400ms	remaining: 6.09ms
197:	learn: 10.1045352	total: 402ms	remaining: 4.06ms
198:	learn: 10.0795440	total: 407ms	remaining: 2.04ms
199:	learn: 10.0764385	total: 409ms	remaining: 0us
0:	learn: 45.0927664	total: 2.05ms	remaining: 409ms
1:	learn: 43.6578258	total: 3.88ms	remaining: 384ms
2:	learn: 42.3045666	total: 5.61ms	remaining: 368ms
3:	learn: 41.0651204	total: 7.41ms	remaining: 363ms
4:	learn: 40.0174394	total: 9.15ms	remaining: 357ms
5:	learn: 39.0784952	total: 10.8ms	remaining: 351ms
6:	learn: 38.3066561	total: 12.6ms	remaining: 348ms
7:	learn: 37.2334422	total: 14.4ms	remaining: 345ms
8:	learn: 36.4774031	total: 16.1ms	remaining: 342ms
9:	learn: 35.8304451	total: 17.8ms	remaining: 338ms
10:	learn: 34.8872241	total: 19.6ms	remaining: 337ms
11:	learn: 34.1690164	total: 21.3ms	remaining: 334ms
12:	learn: 33.4622902	total: 23.2ms	remaining: 334ms
13:	learn: 32.6413764	total: 25.1ms	remaining: 333ms
14:	learn: 32.1477897	total: 27ms	remaining: 333ms
15:	learn: 31.9043824	total: 28.8ms	remaining: 331ms
16:	learn: 31.5711458	total: 31ms	remaining: 333ms
17:	learn: 31.0067933	total: 32.7ms	remaining: 331ms
18:	learn: 30.4526003	total: 34.4ms	remaining: 328ms
19:	learn: 30.0542843	total: 36.2ms	remaining: 326ms
20:	learn: 29.3557664	total: 38ms	remaining: 324ms
21:	learn: 28.7786485	total: 39.8ms	remaining: 322ms
22:	learn: 28.1703476	total: 41.5ms	remaining: 319ms
23:	learn: 27.7516495	total: 43.2ms	remaining: 317ms
24:	learn: 27.5126186	total: 45ms	remaining: 315ms
25:	learn: 27.2805015	total: 46.8ms	remaining: 313ms
26:	learn: 27.0002652	total: 48.6ms	remaining: 311ms
27:	learn: 26.6656987	total: 50.3ms	remaining: 309ms
28:	learn: 26.5685416	total: 52ms	remaining: 307ms
29:	learn: 26.3372151	total: 53.8ms	remaining: 305ms
30:	learn: 25.9801017	total: 55.6ms	remaining: 303ms
31:	learn: 25.5912784	total: 57.4ms	remaining: 301ms
32:	learn: 25.2946270	total: 59.1ms	remaining: 299ms
33:	learn: 25.2518445	total: 60.9ms	remaining: 297ms
34:	learn: 25.0538656	total: 62.6ms	remaining: 295ms
35:	learn: 24.7943657	total: 64.5ms	remaining: 294ms
36:	learn: 24.6593068	total: 66.3ms	remaining: 292ms
37:	learn: 24.6263847	total: 68.3ms	remaining: 291ms
38:	learn: 24.5732241	total: 70.1ms	remaining: 290ms
39:	learn: 24.1786088	total: 71.9ms	remaining: 288ms
40:	learn: 23.8638004	total: 73.9ms	remaining: 287ms
41:	learn: 23.7143451	total: 75.6ms	remaining: 285ms
42:	learn: 23.5288017	total: 77.5ms	remaining: 283ms
43:	learn: 23.4086190	total: 79.3ms	remaining: 281ms
44:	learn: 23.3102392	total: 81.1ms	remaining: 279ms
45:	learn: 23.0135006	total: 83.3ms	remaining: 279ms
46:	learn: 22.8192926	total: 85.2ms	remaining: 277ms
47:	learn: 22.6317475	total: 86.9ms	remaining: 275ms
48:	learn: 22.5529817	total: 88.7ms	remaining: 273ms
49:	learn: 22.5215510	total: 90.4ms	remaining: 271ms
50:	learn: 22.4011309	total: 92.1ms	remaining: 269ms
51:	learn: 22.2307162	total: 93.8ms	remaining: 267ms
52:	learn: 22.0484393	total: 95.6ms	remaining: 265ms
53:	learn: 21.9258488	total: 97.5ms	remaining: 264ms
54:	learn: 21.6760056	total: 99.6ms	remaining: 263ms
55:	learn: 21.5206588	total: 102ms	remaining: 261ms
56:	learn: 21.2723212	total: 103ms	remaining: 260ms
57:	learn: 21.2220339	total: 105ms	remaining: 258ms
58:	learn: 21.1534151	total: 107ms	remaining: 256ms
59:	learn: 21.1002869	total: 109ms	remaining: 255ms
60:	learn: 20.9222182	total: 111ms	remaining: 253ms
61:	learn: 20.8670150	total: 113ms	remaining: 252ms
62:	learn: 20.6939554	total: 115ms	remaining: 250ms
63:	learn: 20.5515638	total: 117ms	remaining: 248ms
64:	learn: 20.5105133	total: 119ms	remaining: 247ms
65:	learn: 20.4742608	total: 121ms	remaining: 246ms
66:	learn: 20.4284681	total: 125ms	remaining: 248ms
67:	learn: 20.3875880	total: 128ms	remaining: 248ms
68:	learn: 20.1388359	total: 131ms	remaining: 249ms
69:	learn: 19.8927210	total: 134ms	remaining: 250ms
70:	learn: 19.7264882	total: 137ms	remaining: 249ms
71:	learn: 19.5786905	total: 140ms	remaining: 249ms
72:	learn: 19.3031248	total: 142ms	remaining: 247ms
73:	learn: 19.2580101	total: 144ms	remaining: 246ms
74:	learn: 19.0938323	total: 146ms	remaining: 244ms
75:	learn: 18.8494291	total: 149ms	remaining: 243ms
76:	learn: 18.7770042	total: 151ms	remaining: 242ms
77:	learn: 18.7502033	total: 153ms	remaining: 239ms
78:	learn: 18.5872072	total: 155ms	remaining: 237ms
79:	learn: 18.4061746	total: 157ms	remaining: 235ms
80:	learn: 18.3522879	total: 158ms	remaining: 233ms
81:	learn: 18.3159119	total: 160ms	remaining: 231ms
82:	learn: 18.2855826	total: 162ms	remaining: 228ms
83:	learn: 18.2583293	total: 164ms	remaining: 226ms
84:	learn: 18.1266917	total: 166ms	remaining: 224ms
85:	learn: 18.1086439	total: 167ms	remaining: 222ms
86:	learn: 18.0815786	total: 169ms	remaining: 220ms
87:	learn: 17.8167233	total: 171ms	remaining: 218ms
88:	learn: 17.6781428	total: 173ms	remaining: 215ms
89:	learn: 17.6414372	total: 174ms	remaining: 213ms
90:	learn: 17.6047874	total: 176ms	remaining: 211ms
91:	learn: 17.5762914	total: 178ms	remaining: 209ms
92:	learn: 17.5078839	total: 180ms	remaining: 207ms
93:	learn: 17.2771268	total: 181ms	remaining: 204ms
94:	learn: 17.2591693	total: 183ms	remaining: 202ms
95:	learn: 17.2184828	total: 185ms	remaining: 200ms
96:	learn: 17.0842386	total: 187ms	remaining: 198ms
97:	learn: 17.0374026	total: 188ms	remaining: 196ms
98:	learn: 16.8921747	total: 190ms	remaining: 194ms
99:	learn: 16.8038934	total: 192ms	remaining: 192ms
100:	learn: 16.7781346	total: 194ms	remaining: 190ms
101:	learn: 16.7303307	total: 195ms	remaining: 188ms
102:	learn: 16.6948233	total: 197ms	remaining: 186ms
103:	learn: 16.5422757	total: 199ms	remaining: 184ms
104:	learn: 16.4274160	total: 201ms	remaining: 182ms
105:	learn: 16.4127731	total: 203ms	remaining: 180ms
106:	learn: 16.3798810	total: 205ms	remaining: 178ms
107:	learn: 16.3722888	total: 206ms	remaining: 176ms
108:	learn: 16.2439381	total: 208ms	remaining: 174ms
109:	learn: 16.1937915	total: 210ms	remaining: 172ms
110:	learn: 16.1601864	total: 211ms	remaining: 170ms
111:	learn: 16.1470563	total: 213ms	remaining: 167ms
112:	learn: 16.1344122	total: 215ms	remaining: 165ms
113:	learn: 16.0484913	total: 217ms	remaining: 163ms
114:	learn: 15.9877793	total: 218ms	remaining: 161ms
115:	learn: 15.8282910	total: 220ms	remaining: 159ms
116:	learn: 15.7684592	total: 222ms	remaining: 157ms
117:	learn: 15.7561382	total: 223ms	remaining: 155ms
118:	learn: 15.7442755	total: 225ms	remaining: 153ms
119:	learn: 15.6742562	total: 227ms	remaining: 151ms
120:	learn: 15.6510050	total: 229ms	remaining: 149ms
121:	learn: 15.6033799	total: 231ms	remaining: 147ms
122:	learn: 15.5574149	total: 232ms	remaining: 145ms
123:	learn: 15.5462777	total: 234ms	remaining: 143ms
124:	learn: 15.5241127	total: 236ms	remaining: 142ms
125:	learn: 15.5137299	total: 238ms	remaining: 140ms
126:	learn: 15.4558766	total: 240ms	remaining: 138ms
127:	learn: 15.3553614	total: 242ms	remaining: 136ms
128:	learn: 15.3035059	total: 243ms	remaining: 134ms
129:	learn: 15.2979491	total: 245ms	remaining: 132ms
130:	learn: 15.2458686	total: 247ms	remaining: 130ms
131:	learn: 15.2232270	total: 249ms	remaining: 128ms
132:	learn: 15.1939552	total: 251ms	remaining: 126ms
133:	learn: 15.1154110	total: 252ms	remaining: 124ms
134:	learn: 15.0816326	total: 254ms	remaining: 122ms
135:	learn: 14.9770768	total: 256ms	remaining: 120ms
136:	learn: 14.9079187	total: 258ms	remaining: 119ms
137:	learn: 14.8090301	total: 260ms	remaining: 117ms
138:	learn: 14.6652674	total: 261ms	remaining: 115ms
139:	learn: 14.6450254	total: 263ms	remaining: 113ms
140:	learn: 14.6255761	total: 265ms	remaining: 111ms
141:	learn: 14.4922933	total: 267ms	remaining: 109ms
142:	learn: 14.4816831	total: 268ms	remaining: 107ms
143:	learn: 14.3411868	total: 270ms	remaining: 105ms
144:	learn: 14.2491127	total: 272ms	remaining: 103ms
145:	learn: 14.2433974	total: 274ms	remaining: 101ms
146:	learn: 14.2337099	total: 276ms	remaining: 99.5ms
147:	learn: 14.2252269	total: 278ms	remaining: 97.5ms
148:	learn: 14.1977647	total: 279ms	remaining: 95.6ms
149:	learn: 14.1309276	total: 281ms	remaining: 93.7ms
150:	learn: 14.1173976	total: 283ms	remaining: 91.8ms
151:	learn: 14.0140039	total: 285ms	remaining: 89.9ms
152:	learn: 14.0061002	total: 286ms	remaining: 88ms
153:	learn: 13.9106250	total: 288ms	remaining: 86.1ms
154:	learn: 13.8736771	total: 290ms	remaining: 84.3ms
155:	learn: 13.8505820	total: 292ms	remaining: 82.4ms
156:	learn: 13.8461949	total: 294ms	remaining: 80.5ms
157:	learn: 13.8061666	total: 296ms	remaining: 78.6ms
158:	learn: 13.7444628	total: 298ms	remaining: 76.8ms
159:	learn: 13.7032415	total: 300ms	remaining: 74.9ms
160:	learn: 13.6765790	total: 301ms	remaining: 73ms
161:	learn: 13.6446901	total: 303ms	remaining: 71.1ms
162:	learn: 13.6048464	total: 305ms	remaining: 69.3ms
163:	learn: 13.5715607	total: 307ms	remaining: 67.4ms
164:	learn: 13.5169905	total: 309ms	remaining: 65.6ms
165:	learn: 13.5015192	total: 311ms	remaining: 63.7ms
166:	learn: 13.4099236	total: 314ms	remaining: 62ms
167:	learn: 13.3828355	total: 317ms	remaining: 60.4ms
168:	learn: 13.3230491	total: 321ms	remaining: 59ms
169:	learn: 13.2637823	total: 326ms	remaining: 57.5ms
170:	learn: 13.1943260	total: 331ms	remaining: 56.1ms
171:	learn: 13.1101230	total: 335ms	remaining: 54.6ms
172:	learn: 13.0193624	total: 338ms	remaining: 52.7ms
173:	learn: 12.9843784	total: 343ms	remaining: 51.3ms
174:	learn: 12.9661567	total: 346ms	remaining: 49.4ms
175:	learn: 12.9348217	total: 348ms	remaining: 47.5ms
176:	learn: 12.8473604	total: 350ms	remaining: 45.5ms
177:	learn: 12.7700476	total: 353ms	remaining: 43.6ms
178:	learn: 12.7429745	total: 355ms	remaining: 41.6ms
179:	learn: 12.7241278	total: 357ms	remaining: 39.7ms
180:	learn: 12.7096560	total: 359ms	remaining: 37.7ms
181:	learn: 12.6844927	total: 361ms	remaining: 35.7ms
182:	learn: 12.6377639	total: 363ms	remaining: 33.8ms
183:	learn: 12.6213365	total: 365ms	remaining: 31.8ms
184:	learn: 12.5935483	total: 368ms	remaining: 29.8ms
185:	learn: 12.5758853	total: 370ms	remaining: 27.8ms
186:	learn: 12.5623461	total: 372ms	remaining: 25.8ms
187:	learn: 12.5458927	total: 374ms	remaining: 23.9ms
188:	learn: 12.5050050	total: 376ms	remaining: 21.9ms
189:	learn: 12.4587958	total: 378ms	remaining: 19.9ms
190:	learn: 12.4467318	total: 380ms	remaining: 17.9ms
191:	learn: 12.4200898	total: 382ms	remaining: 15.9ms
192:	learn: 12.3962707	total: 384ms	remaining: 13.9ms
193:	learn: 12.3728455	total: 386ms	remaining: 11.9ms
194:	learn: 12.3364983	total: 388ms	remaining: 9.96ms
195:	learn: 12.3274670	total: 391ms	remaining: 7.98ms
196:	learn: 12.2600839	total: 393ms	remaining: 5.99ms
197:	learn: 12.1959210	total: 395ms	remaining: 3.99ms
198:	learn: 12.1567793	total: 397ms	remaining: 2ms
199:	learn: 12.0758633	total: 399ms	remaining: 0us
0:	learn: 45.9531425	total: 2.2ms	remaining: 438ms
1:	learn: 44.5479949	total: 4.02ms	remaining: 398ms
2:	learn: 43.1362878	total: 5.85ms	remaining: 384ms
3:	learn: 41.8701373	total: 7.74ms	remaining: 379ms
4:	learn: 40.8617315	total: 9.66ms	remaining: 377ms
5:	learn: 39.9452877	total: 11.4ms	remaining: 368ms
6:	learn: 39.2732295	total: 13.2ms	remaining: 363ms
7:	learn: 38.1538324	total: 14.9ms	remaining: 358ms
8:	learn: 37.2414077	total: 16.7ms	remaining: 354ms
9:	learn: 36.3106228	total: 18.5ms	remaining: 351ms
10:	learn: 35.3488441	total: 20.3ms	remaining: 349ms
11:	learn: 34.9203655	total: 22.1ms	remaining: 346ms
12:	learn: 34.2010962	total: 23.8ms	remaining: 343ms
13:	learn: 33.4274151	total: 25.5ms	remaining: 339ms
14:	learn: 33.0065843	total: 27.2ms	remaining: 335ms
15:	learn: 32.6353689	total: 28.9ms	remaining: 332ms
16:	learn: 32.2540521	total: 30.9ms	remaining: 333ms
17:	learn: 31.5322874	total: 32.9ms	remaining: 332ms
18:	learn: 31.0605088	total: 34.5ms	remaining: 329ms
19:	learn: 30.5072948	total: 36.3ms	remaining: 327ms
20:	learn: 29.9298729	total: 38.1ms	remaining: 325ms
21:	learn: 29.7485940	total: 39.9ms	remaining: 323ms
22:	learn: 29.0792546	total: 41.7ms	remaining: 321ms
23:	learn: 28.1958969	total: 43.4ms	remaining: 319ms
24:	learn: 27.7491907	total: 45.2ms	remaining: 317ms
25:	learn: 27.2255621	total: 47.3ms	remaining: 316ms
26:	learn: 26.9825044	total: 49.4ms	remaining: 316ms
27:	learn: 26.7798006	total: 51.4ms	remaining: 316ms
28:	learn: 26.3821790	total: 53.6ms	remaining: 316ms
29:	learn: 26.0742378	total: 55.6ms	remaining: 315ms
30:	learn: 25.7918013	total: 57.6ms	remaining: 314ms
31:	learn: 25.4955151	total: 59.5ms	remaining: 312ms
32:	learn: 25.2427795	total: 61.4ms	remaining: 311ms
33:	learn: 25.1676920	total: 63.4ms	remaining: 309ms
34:	learn: 25.0824545	total: 65.2ms	remaining: 307ms
35:	learn: 24.7120168	total: 67.2ms	remaining: 306ms
36:	learn: 24.5889751	total: 69.5ms	remaining: 306ms
37:	learn: 24.3992786	total: 74ms	remaining: 316ms
38:	learn: 24.3701053	total: 77.7ms	remaining: 321ms
39:	learn: 24.1139323	total: 80.9ms	remaining: 323ms
40:	learn: 23.8439794	total: 91.3ms	remaining: 354ms
41:	learn: 23.7313255	total: 93.2ms	remaining: 350ms
42:	learn: 23.4333414	total: 95.1ms	remaining: 347ms
43:	learn: 23.1226407	total: 97.8ms	remaining: 347ms
44:	learn: 22.9125944	total: 99.8ms	remaining: 344ms
45:	learn: 22.7951086	total: 102ms	remaining: 340ms
46:	learn: 22.6980018	total: 103ms	remaining: 337ms
47:	learn: 22.4890011	total: 105ms	remaining: 333ms
48:	learn: 22.2973924	total: 107ms	remaining: 330ms
49:	learn: 22.1743278	total: 109ms	remaining: 327ms
50:	learn: 22.0462520	total: 111ms	remaining: 324ms
51:	learn: 21.8574534	total: 113ms	remaining: 321ms
52:	learn: 21.6357274	total: 115ms	remaining: 318ms
53:	learn: 21.4805062	total: 116ms	remaining: 314ms
54:	learn: 21.3865752	total: 118ms	remaining: 311ms
55:	learn: 21.2501796	total: 120ms	remaining: 308ms
56:	learn: 21.1657122	total: 122ms	remaining: 305ms
57:	learn: 21.1050424	total: 123ms	remaining: 302ms
58:	learn: 21.0337824	total: 125ms	remaining: 299ms
59:	learn: 20.9606805	total: 127ms	remaining: 296ms
60:	learn: 20.8153366	total: 129ms	remaining: 293ms
61:	learn: 20.6786682	total: 130ms	remaining: 290ms
62:	learn: 20.4820554	total: 132ms	remaining: 287ms
63:	learn: 20.3800951	total: 134ms	remaining: 284ms
64:	learn: 20.2403167	total: 135ms	remaining: 281ms
65:	learn: 20.0563680	total: 137ms	remaining: 278ms
66:	learn: 19.9820577	total: 139ms	remaining: 276ms
67:	learn: 19.9330682	total: 141ms	remaining: 273ms
68:	learn: 19.8816650	total: 143ms	remaining: 271ms
69:	learn: 19.7656704	total: 144ms	remaining: 268ms
70:	learn: 19.7053928	total: 146ms	remaining: 265ms
71:	learn: 19.6044445	total: 148ms	remaining: 263ms
72:	learn: 19.3645351	total: 149ms	remaining: 260ms
73:	learn: 19.2442367	total: 151ms	remaining: 257ms
74:	learn: 19.0510071	total: 153ms	remaining: 255ms
75:	learn: 18.9756930	total: 155ms	remaining: 252ms
76:	learn: 18.8563721	total: 157ms	remaining: 250ms
77:	learn: 18.6169730	total: 158ms	remaining: 248ms
78:	learn: 18.4693908	total: 160ms	remaining: 245ms
79:	learn: 18.3138255	total: 162ms	remaining: 243ms
80:	learn: 18.2104459	total: 164ms	remaining: 241ms
81:	learn: 17.9848470	total: 166ms	remaining: 238ms
82:	learn: 17.7848200	total: 167ms	remaining: 236ms
83:	learn: 17.6976766	total: 169ms	remaining: 233ms
84:	learn: 17.5629396	total: 171ms	remaining: 231ms
85:	learn: 17.4707774	total: 173ms	remaining: 229ms
86:	learn: 17.4224826	total: 175ms	remaining: 227ms
87:	learn: 17.2510653	total: 176ms	remaining: 225ms
88:	learn: 17.1399798	total: 178ms	remaining: 222ms
89:	learn: 17.0588145	total: 180ms	remaining: 220ms
90:	learn: 17.0189682	total: 182ms	remaining: 218ms
91:	learn: 16.8596402	total: 184ms	remaining: 216ms
92:	learn: 16.7529323	total: 186ms	remaining: 214ms
93:	learn: 16.5570513	total: 187ms	remaining: 211ms
94:	learn: 16.4484526	total: 189ms	remaining: 209ms
95:	learn: 16.3863263	total: 191ms	remaining: 207ms
96:	learn: 16.2462155	total: 193ms	remaining: 205ms
97:	learn: 16.2238797	total: 195ms	remaining: 203ms
98:	learn: 16.1741815	total: 196ms	remaining: 200ms
99:	learn: 16.1104410	total: 198ms	remaining: 198ms
100:	learn: 16.0192341	total: 200ms	remaining: 196ms
101:	learn: 15.9573692	total: 202ms	remaining: 194ms
102:	learn: 15.8866859	total: 204ms	remaining: 192ms
103:	learn: 15.7982187	total: 205ms	remaining: 190ms
104:	learn: 15.6681686	total: 207ms	remaining: 187ms
105:	learn: 15.6061795	total: 209ms	remaining: 185ms
106:	learn: 15.5189030	total: 211ms	remaining: 183ms
107:	learn: 15.4267877	total: 213ms	remaining: 181ms
108:	learn: 15.4064087	total: 215ms	remaining: 179ms
109:	learn: 15.3006860	total: 216ms	remaining: 177ms
110:	learn: 15.2190890	total: 218ms	remaining: 175ms
111:	learn: 15.1650577	total: 220ms	remaining: 173ms
112:	learn: 15.1366876	total: 222ms	remaining: 171ms
113:	learn: 15.0003355	total: 224ms	remaining: 169ms
114:	learn: 14.8763865	total: 226ms	remaining: 167ms
115:	learn: 14.7784780	total: 227ms	remaining: 165ms
116:	learn: 14.6921777	total: 230ms	remaining: 163ms
117:	learn: 14.6065124	total: 231ms	remaining: 161ms
118:	learn: 14.5662097	total: 233ms	remaining: 159ms
119:	learn: 14.5058696	total: 235ms	remaining: 157ms
120:	learn: 14.4258040	total: 237ms	remaining: 155ms
121:	learn: 14.3502426	total: 238ms	remaining: 152ms
122:	learn: 14.2320479	total: 240ms	remaining: 150ms
123:	learn: 14.0966607	total: 242ms	remaining: 148ms
124:	learn: 14.0519725	total: 244ms	remaining: 146ms
125:	learn: 13.9455303	total: 246ms	remaining: 145ms
126:	learn: 13.9218211	total: 248ms	remaining: 143ms
127:	learn: 13.8535119	total: 250ms	remaining: 141ms
128:	learn: 13.8057194	total: 252ms	remaining: 139ms
129:	learn: 13.7778916	total: 254ms	remaining: 137ms
130:	learn: 13.7266440	total: 255ms	remaining: 135ms
131:	learn: 13.6728152	total: 257ms	remaining: 133ms
132:	learn: 13.6597828	total: 259ms	remaining: 131ms
133:	learn: 13.6156519	total: 261ms	remaining: 129ms
134:	learn: 13.5220318	total: 263ms	remaining: 127ms
135:	learn: 13.4277020	total: 265ms	remaining: 125ms
136:	learn: 13.3985470	total: 267ms	remaining: 123ms
137:	learn: 13.3123205	total: 269ms	remaining: 121ms
138:	learn: 13.2707488	total: 273ms	remaining: 120ms
139:	learn: 13.2012344	total: 276ms	remaining: 118ms
140:	learn: 13.1628178	total: 280ms	remaining: 117ms
141:	learn: 13.0762268	total: 284ms	remaining: 116ms
142:	learn: 13.0017862	total: 289ms	remaining: 115ms
143:	learn: 12.9898732	total: 291ms	remaining: 113ms
144:	learn: 12.9623452	total: 293ms	remaining: 111ms
145:	learn: 12.9494992	total: 297ms	remaining: 110ms
146:	learn: 12.8779505	total: 300ms	remaining: 108ms
147:	learn: 12.7824663	total: 302ms	remaining: 106ms
148:	learn: 12.7361785	total: 304ms	remaining: 104ms
149:	learn: 12.7025975	total: 306ms	remaining: 102ms
150:	learn: 12.6911153	total: 308ms	remaining: 100ms
151:	learn: 12.6573555	total: 310ms	remaining: 97.9ms
152:	learn: 12.6417700	total: 312ms	remaining: 95.9ms
153:	learn: 12.5653024	total: 314ms	remaining: 93.9ms
154:	learn: 12.5486627	total: 316ms	remaining: 91.9ms
155:	learn: 12.4828068	total: 319ms	remaining: 89.9ms
156:	learn: 12.4704958	total: 321ms	remaining: 87.9ms
157:	learn: 12.4366691	total: 323ms	remaining: 85.9ms
158:	learn: 12.3675992	total: 325ms	remaining: 83.9ms
159:	learn: 12.3366820	total: 328ms	remaining: 81.9ms
160:	learn: 12.2802559	total: 330ms	remaining: 79.9ms
161:	learn: 12.2413932	total: 332ms	remaining: 77.9ms
162:	learn: 12.2063889	total: 334ms	remaining: 75.9ms
163:	learn: 12.1332462	total: 336ms	remaining: 73.8ms
164:	learn: 12.1205681	total: 338ms	remaining: 71.7ms
165:	learn: 12.1093412	total: 340ms	remaining: 69.6ms
166:	learn: 12.0668287	total: 342ms	remaining: 67.6ms
167:	learn: 11.9963216	total: 344ms	remaining: 65.6ms
168:	learn: 11.9867571	total: 347ms	remaining: 63.6ms
169:	learn: 11.9383510	total: 349ms	remaining: 61.6ms
170:	learn: 11.8770349	total: 352ms	remaining: 59.7ms
171:	learn: 11.7921856	total: 354ms	remaining: 57.6ms
172:	learn: 11.7271960	total: 356ms	remaining: 55.5ms
173:	learn: 11.7167316	total: 357ms	remaining: 53.4ms
174:	learn: 11.7026595	total: 359ms	remaining: 51.3ms
175:	learn: 11.6467927	total: 361ms	remaining: 49.2ms
176:	learn: 11.6228326	total: 363ms	remaining: 47.1ms
177:	learn: 11.5765728	total: 364ms	remaining: 45ms
178:	learn: 11.5587578	total: 366ms	remaining: 42.9ms
179:	learn: 11.5367196	total: 368ms	remaining: 40.9ms
180:	learn: 11.5065153	total: 370ms	remaining: 38.8ms
181:	learn: 11.4197075	total: 371ms	remaining: 36.7ms
182:	learn: 11.3654758	total: 373ms	remaining: 34.6ms
183:	learn: 11.2919670	total: 375ms	remaining: 32.6ms
184:	learn: 11.2119719	total: 376ms	remaining: 30.5ms
185:	learn: 11.1708040	total: 378ms	remaining: 28.5ms
186:	learn: 11.1196454	total: 380ms	remaining: 26.4ms
187:	learn: 11.0960626	total: 382ms	remaining: 24.4ms
188:	learn: 11.0709214	total: 384ms	remaining: 22.3ms
189:	learn: 11.0545170	total: 385ms	remaining: 20.3ms
190:	learn: 11.0452486	total: 387ms	remaining: 18.2ms
191:	learn: 11.0085000	total: 389ms	remaining: 16.2ms
192:	learn: 10.9803031	total: 391ms	remaining: 14.2ms
193:	learn: 10.9408339	total: 392ms	remaining: 12.1ms
194:	learn: 10.8964071	total: 394ms	remaining: 10.1ms
195:	learn: 10.8333690	total: 396ms	remaining: 8.08ms
196:	learn: 10.7775113	total: 398ms	remaining: 6.06ms
197:	learn: 10.7370353	total: 400ms	remaining: 4.04ms
198:	learn: 10.7274417	total: 401ms	remaining: 2.02ms
199:	learn: 10.6890120	total: 403ms	remaining: 0us
0:	learn: 27.9287538	total: 17.9ms	remaining: 5.37s
1:	learn: 27.8355877	total: 43.4ms	remaining: 6.46s
2:	learn: 27.7377793	total: 61.8ms	remaining: 6.12s
3:	learn: 27.6343000	total: 79.2ms	remaining: 5.86s
4:	learn: 27.5266115	total: 96.3ms	remaining: 5.68s
5:	learn: 27.4134229	total: 114ms	remaining: 5.57s
6:	learn: 27.2990636	total: 131ms	remaining: 5.47s
7:	learn: 27.1972510	total: 148ms	remaining: 5.39s
8:	learn: 27.0978359	total: 165ms	remaining: 5.34s
9:	learn: 26.9865440	total: 183ms	remaining: 5.3s
10:	learn: 26.9020004	total: 200ms	remaining: 5.25s
11:	learn: 26.8141055	total: 217ms	remaining: 5.21s
12:	learn: 26.6968247	total: 234ms	remaining: 5.16s
13:	learn: 26.6044547	total: 251ms	remaining: 5.13s
14:	learn: 26.5124007	total: 271ms	remaining: 5.14s
15:	learn: 26.4396400	total: 300ms	remaining: 5.33s
16:	learn: 26.3477795	total: 324ms	remaining: 5.4s
17:	learn: 26.2543756	total: 346ms	remaining: 5.42s
18:	learn: 26.1791034	total: 367ms	remaining: 5.43s
19:	learn: 26.1007134	total: 388ms	remaining: 5.44s
20:	learn: 25.9996688	total: 406ms	remaining: 5.39s
21:	learn: 25.9163852	total: 423ms	remaining: 5.34s
22:	learn: 25.8272079	total: 440ms	remaining: 5.3s
23:	learn: 25.7480168	total: 458ms	remaining: 5.26s
24:	learn: 25.6695074	total: 482ms	remaining: 5.31s
25:	learn: 25.5966524	total: 505ms	remaining: 5.32s
26:	learn: 25.5196752	total: 525ms	remaining: 5.31s
27:	learn: 25.4332686	total: 543ms	remaining: 5.27s
28:	learn: 25.3495027	total: 560ms	remaining: 5.23s
29:	learn: 25.2860642	total: 577ms	remaining: 5.19s
30:	learn: 25.2021945	total: 594ms	remaining: 5.15s
31:	learn: 25.1023964	total: 611ms	remaining: 5.12s
32:	learn: 25.0255596	total: 628ms	remaining: 5.08s
33:	learn: 24.9452005	total: 646ms	remaining: 5.05s
34:	learn: 24.8550211	total: 663ms	remaining: 5.02s
35:	learn: 24.7818705	total: 681ms	remaining: 5s
36:	learn: 24.7033034	total: 701ms	remaining: 4.98s
37:	learn: 24.6196573	total: 730ms	remaining: 5.03s
38:	learn: 24.5369945	total: 753ms	remaining: 5.04s
39:	learn: 24.4619035	total: 777ms	remaining: 5.05s
40:	learn: 24.3823789	total: 796ms	remaining: 5.03s
41:	learn: 24.3252034	total: 818ms	remaining: 5.02s
42:	learn: 24.2486155	total: 836ms	remaining: 5s
43:	learn: 24.1888166	total: 855ms	remaining: 4.97s
44:	learn: 24.1139611	total: 873ms	remaining: 4.95s
45:	learn: 24.0212493	total: 891ms	remaining: 4.92s
46:	learn: 23.9415810	total: 911ms	remaining: 4.9s
47:	learn: 23.8736804	total: 939ms	remaining: 4.93s
48:	learn: 23.8095179	total: 961ms	remaining: 4.92s
49:	learn: 23.7383521	total: 980ms	remaining: 4.9s
50:	learn: 23.6607435	total: 998ms	remaining: 4.87s
51:	learn: 23.5998233	total: 1.02s	remaining: 4.85s
52:	learn: 23.5232493	total: 1.03s	remaining: 4.82s
53:	learn: 23.4426238	total: 1.05s	remaining: 4.8s
54:	learn: 23.3630038	total: 1.07s	remaining: 4.77s
55:	learn: 23.2860887	total: 1.09s	remaining: 4.75s
56:	learn: 23.2159937	total: 1.11s	remaining: 4.75s
57:	learn: 23.1476280	total: 1.14s	remaining: 4.77s
58:	learn: 23.0828577	total: 1.17s	remaining: 4.78s
59:	learn: 23.0114421	total: 1.19s	remaining: 4.77s
60:	learn: 22.9382847	total: 1.21s	remaining: 4.76s
61:	learn: 22.8735487	total: 1.24s	remaining: 4.75s
62:	learn: 22.8031351	total: 1.26s	remaining: 4.74s
63:	learn: 22.7463661	total: 1.28s	remaining: 4.72s
64:	learn: 22.6893841	total: 1.3s	remaining: 4.69s
65:	learn: 22.6365710	total: 1.32s	remaining: 4.67s
66:	learn: 22.5716621	total: 1.34s	remaining: 4.65s
67:	learn: 22.5026622	total: 1.37s	remaining: 4.66s
68:	learn: 22.4357534	total: 1.39s	remaining: 4.64s
69:	learn: 22.3787304	total: 1.41s	remaining: 4.62s
70:	learn: 22.3117958	total: 1.42s	remaining: 4.59s
71:	learn: 22.2471474	total: 1.44s	remaining: 4.57s
72:	learn: 22.1854108	total: 1.46s	remaining: 4.54s
73:	learn: 22.1066505	total: 1.48s	remaining: 4.52s
74:	learn: 22.0507978	total: 1.5s	remaining: 4.5s
75:	learn: 21.9851662	total: 1.52s	remaining: 4.49s
76:	learn: 21.9295292	total: 1.55s	remaining: 4.49s
77:	learn: 21.8787583	total: 1.58s	remaining: 4.5s
78:	learn: 21.8104621	total: 1.6s	remaining: 4.49s
79:	learn: 21.7432602	total: 1.62s	remaining: 4.47s
80:	learn: 21.6766804	total: 1.64s	remaining: 4.45s
81:	learn: 21.6113721	total: 1.67s	remaining: 4.43s
82:	learn: 21.5502297	total: 1.68s	remaining: 4.41s
83:	learn: 21.4974800	total: 1.7s	remaining: 4.38s
84:	learn: 21.4296143	total: 1.72s	remaining: 4.36s
85:	learn: 21.3833038	total: 1.74s	remaining: 4.33s
86:	learn: 21.3249565	total: 1.76s	remaining: 4.32s
87:	learn: 21.2653259	total: 1.79s	remaining: 4.31s
88:	learn: 21.2107083	total: 1.81s	remaining: 4.29s
89:	learn: 21.1541933	total: 1.83s	remaining: 4.26s
90:	learn: 21.1002777	total: 1.84s	remaining: 4.24s
91:	learn: 21.0459016	total: 1.86s	remaining: 4.22s
92:	learn: 20.9893833	total: 1.88s	remaining: 4.19s
93:	learn: 20.9337341	total: 1.9s	remaining: 4.17s
94:	learn: 20.8800004	total: 1.92s	remaining: 4.14s
95:	learn: 20.8198062	total: 1.94s	remaining: 4.11s
96:	learn: 20.7698343	total: 1.96s	remaining: 4.09s
97:	learn: 20.7194587	total: 1.98s	remaining: 4.09s
98:	learn: 20.6592165	total: 2.01s	remaining: 4.07s
99:	learn: 20.6071860	total: 2.03s	remaining: 4.05s
100:	learn: 20.5531468	total: 2.05s	remaining: 4.04s
101:	learn: 20.5039279	total: 2.07s	remaining: 4.01s
102:	learn: 20.4539331	total: 2.09s	remaining: 3.99s
103:	learn: 20.4020382	total: 2.1s	remaining: 3.97s
104:	learn: 20.3477286	total: 2.12s	remaining: 3.94s
105:	learn: 20.2851045	total: 2.14s	remaining: 3.92s
106:	learn: 20.2451669	total: 2.16s	remaining: 3.89s
107:	learn: 20.1964512	total: 2.19s	remaining: 3.89s
108:	learn: 20.1552840	total: 2.21s	remaining: 3.87s
109:	learn: 20.1009399	total: 2.22s	remaining: 3.84s
110:	learn: 20.0571100	total: 2.24s	remaining: 3.81s
111:	learn: 20.0030282	total: 2.26s	remaining: 3.79s
112:	learn: 19.9439272	total: 2.27s	remaining: 3.77s
113:	learn: 19.8977422	total: 2.29s	remaining: 3.74s
114:	learn: 19.8524016	total: 2.31s	remaining: 3.72s
115:	learn: 19.8023928	total: 2.33s	remaining: 3.69s
116:	learn: 19.7490506	total: 2.35s	remaining: 3.67s
117:	learn: 19.7001633	total: 2.37s	remaining: 3.66s
118:	learn: 19.6455153	total: 2.4s	remaining: 3.64s
119:	learn: 19.6004040	total: 2.42s	remaining: 3.62s
120:	learn: 19.5470399	total: 2.44s	remaining: 3.61s
121:	learn: 19.5000893	total: 2.46s	remaining: 3.59s
122:	learn: 19.4507652	total: 2.48s	remaining: 3.57s
123:	learn: 19.4106326	total: 2.5s	remaining: 3.55s
124:	learn: 19.3644311	total: 2.52s	remaining: 3.53s
125:	learn: 19.3148949	total: 2.54s	remaining: 3.5s
126:	learn: 19.2697671	total: 2.55s	remaining: 3.48s
127:	learn: 19.2332406	total: 2.57s	remaining: 3.46s
128:	learn: 19.1806807	total: 2.6s	remaining: 3.45s
129:	learn: 19.1369558	total: 2.62s	remaining: 3.43s
130:	learn: 19.0946811	total: 2.64s	remaining: 3.4s
131:	learn: 19.0472537	total: 2.65s	remaining: 3.38s
132:	learn: 19.0015774	total: 2.67s	remaining: 3.36s
133:	learn: 18.9566014	total: 2.69s	remaining: 3.33s
134:	learn: 18.9106843	total: 2.71s	remaining: 3.31s
135:	learn: 18.8712192	total: 2.73s	remaining: 3.29s
136:	learn: 18.8307878	total: 2.75s	remaining: 3.27s
137:	learn: 18.7888605	total: 2.77s	remaining: 3.25s
138:	learn: 18.7561413	total: 2.78s	remaining: 3.22s
139:	learn: 18.7152477	total: 2.81s	remaining: 3.21s
140:	learn: 18.6729856	total: 2.83s	remaining: 3.19s
141:	learn: 18.6270081	total: 2.86s	remaining: 3.18s
142:	learn: 18.5847583	total: 2.88s	remaining: 3.16s
143:	learn: 18.5438439	total: 2.9s	remaining: 3.14s
144:	learn: 18.4992884	total: 2.92s	remaining: 3.12s
145:	learn: 18.4638746	total: 2.93s	remaining: 3.09s
146:	learn: 18.4225830	total: 2.95s	remaining: 3.07s
147:	learn: 18.3818692	total: 2.97s	remaining: 3.05s
148:	learn: 18.3399112	total: 2.99s	remaining: 3.03s
149:	learn: 18.2952736	total: 3.01s	remaining: 3.01s
150:	learn: 18.2506791	total: 3.03s	remaining: 2.99s
151:	learn: 18.2129149	total: 3.05s	remaining: 2.97s
152:	learn: 18.1756293	total: 3.07s	remaining: 2.95s
153:	learn: 18.1463373	total: 3.07s	remaining: 2.91s
154:	learn: 18.1033180	total: 3.09s	remaining: 2.89s
155:	learn: 18.0658127	total: 3.11s	remaining: 2.87s
156:	learn: 18.0195238	total: 3.13s	remaining: 2.85s
157:	learn: 17.9823757	total: 3.14s	remaining: 2.83s
158:	learn: 17.9460032	total: 3.16s	remaining: 2.8s
159:	learn: 17.9006607	total: 3.18s	remaining: 2.78s
160:	learn: 17.8656718	total: 3.2s	remaining: 2.76s
161:	learn: 17.8281417	total: 3.23s	remaining: 2.75s
162:	learn: 17.7936071	total: 3.25s	remaining: 2.73s
163:	learn: 17.7512920	total: 3.27s	remaining: 2.71s
164:	learn: 17.7087771	total: 3.29s	remaining: 2.69s
165:	learn: 17.6734435	total: 3.31s	remaining: 2.67s
166:	learn: 17.6328319	total: 3.32s	remaining: 2.65s
167:	learn: 17.5950341	total: 3.34s	remaining: 2.63s
168:	learn: 17.5558152	total: 3.36s	remaining: 2.6s
169:	learn: 17.5242504	total: 3.38s	remaining: 2.58s
170:	learn: 17.4834769	total: 3.4s	remaining: 2.56s
171:	learn: 17.4506978	total: 3.42s	remaining: 2.54s
172:	learn: 17.4187842	total: 3.44s	remaining: 2.52s
173:	learn: 17.3842446	total: 3.46s	remaining: 2.5s
174:	learn: 17.3470152	total: 3.48s	remaining: 2.48s
175:	learn: 17.3097298	total: 3.5s	remaining: 2.46s
176:	learn: 17.2726240	total: 3.52s	remaining: 2.45s
177:	learn: 17.2359845	total: 3.54s	remaining: 2.43s
178:	learn: 17.2022599	total: 3.56s	remaining: 2.41s
179:	learn: 17.1625346	total: 3.58s	remaining: 2.39s
180:	learn: 17.1293568	total: 3.61s	remaining: 2.37s
181:	learn: 17.0979801	total: 3.64s	remaining: 2.36s
182:	learn: 17.0621326	total: 3.66s	remaining: 2.34s
183:	learn: 17.0260151	total: 3.69s	remaining: 2.32s
184:	learn: 16.9942672	total: 3.71s	remaining: 2.3s
185:	learn: 16.9549284	total: 3.73s	remaining: 2.29s
186:	learn: 16.9192182	total: 3.75s	remaining: 2.27s
187:	learn: 16.8872695	total: 3.77s	remaining: 2.25s
188:	learn: 16.8487904	total: 3.79s	remaining: 2.23s
189:	learn: 16.8203784	total: 3.81s	remaining: 2.21s
190:	learn: 16.7903459	total: 3.84s	remaining: 2.19s
191:	learn: 16.7544969	total: 3.88s	remaining: 2.18s
192:	learn: 16.7229843	total: 3.89s	remaining: 2.16s
193:	learn: 16.6904455	total: 3.92s	remaining: 2.14s
194:	learn: 16.6575920	total: 3.93s	remaining: 2.12s
195:	learn: 16.6357177	total: 3.95s	remaining: 2.1s
196:	learn: 16.6060792	total: 3.98s	remaining: 2.08s
197:	learn: 16.5736452	total: 3.99s	remaining: 2.06s
198:	learn: 16.5439440	total: 4.01s	remaining: 2.04s
199:	learn: 16.5141009	total: 4.04s	remaining: 2.02s
200:	learn: 16.4816419	total: 4.07s	remaining: 2s
201:	learn: 16.4518810	total: 4.09s	remaining: 1.99s
202:	learn: 16.4212965	total: 4.12s	remaining: 1.97s
203:	learn: 16.3893517	total: 4.14s	remaining: 1.95s
204:	learn: 16.3470875	total: 4.17s	remaining: 1.93s
205:	learn: 16.3182029	total: 4.19s	remaining: 1.91s
206:	learn: 16.2891757	total: 4.21s	remaining: 1.89s
207:	learn: 16.2566535	total: 4.23s	remaining: 1.87s
208:	learn: 16.2275519	total: 4.25s	remaining: 1.85s
209:	learn: 16.1996746	total: 4.28s	remaining: 1.83s
210:	learn: 16.1683317	total: 4.3s	remaining: 1.81s
211:	learn: 16.1310051	total: 4.32s	remaining: 1.79s
212:	learn: 16.0958734	total: 4.34s	remaining: 1.77s
213:	learn: 16.0673631	total: 4.37s	remaining: 1.75s
214:	learn: 16.0364435	total: 4.39s	remaining: 1.74s
215:	learn: 16.0051263	total: 4.41s	remaining: 1.71s
216:	learn: 15.9777538	total: 4.43s	remaining: 1.69s
217:	learn: 15.9455316	total: 4.45s	remaining: 1.67s
218:	learn: 15.9241293	total: 4.47s	remaining: 1.65s
219:	learn: 15.8970309	total: 4.5s	remaining: 1.64s
220:	learn: 15.8691723	total: 4.53s	remaining: 1.62s
221:	learn: 15.8436926	total: 4.55s	remaining: 1.6s
222:	learn: 15.8166301	total: 4.58s	remaining: 1.58s
223:	learn: 15.7880114	total: 4.6s	remaining: 1.56s
224:	learn: 15.7567514	total: 4.63s	remaining: 1.54s
225:	learn: 15.7291041	total: 4.64s	remaining: 1.52s
226:	learn: 15.7021329	total: 4.67s	remaining: 1.5s
227:	learn: 15.6702609	total: 4.69s	remaining: 1.48s
228:	learn: 15.6467297	total: 4.71s	remaining: 1.46s
229:	learn: 15.6214854	total: 4.74s	remaining: 1.44s
230:	learn: 15.5922396	total: 4.76s	remaining: 1.42s
231:	learn: 15.5684351	total: 4.78s	remaining: 1.4s
232:	learn: 15.5437010	total: 4.8s	remaining: 1.38s
233:	learn: 15.5197623	total: 4.82s	remaining: 1.36s
234:	learn: 15.4955199	total: 4.84s	remaining: 1.34s
235:	learn: 15.4672461	total: 4.87s	remaining: 1.32s
236:	learn: 15.4366186	total: 4.89s	remaining: 1.3s
237:	learn: 15.4086956	total: 4.91s	remaining: 1.28s
238:	learn: 15.3806069	total: 4.94s	remaining: 1.26s
239:	learn: 15.3506578	total: 4.97s	remaining: 1.24s
240:	learn: 15.3188403	total: 4.99s	remaining: 1.22s
241:	learn: 15.2929225	total: 5.01s	remaining: 1.2s
242:	learn: 15.2737189	total: 5.03s	remaining: 1.18s
243:	learn: 15.2477656	total: 5.05s	remaining: 1.16s
244:	learn: 15.2208688	total: 5.07s	remaining: 1.14s
245:	learn: 15.1939794	total: 5.09s	remaining: 1.12s
246:	learn: 15.1654788	total: 5.13s	remaining: 1.1s
247:	learn: 15.1455209	total: 5.16s	remaining: 1.08s
248:	learn: 15.1168954	total: 5.18s	remaining: 1.06s
249:	learn: 15.0879091	total: 5.2s	remaining: 1.04s
250:	learn: 15.0640811	total: 5.22s	remaining: 1.02s
251:	learn: 15.0388041	total: 5.24s	remaining: 998ms
252:	learn: 15.0099876	total: 5.26s	remaining: 977ms
253:	learn: 14.9832352	total: 5.28s	remaining: 956ms
254:	learn: 14.9603687	total: 5.3s	remaining: 935ms
255:	learn: 14.9380207	total: 5.32s	remaining: 914ms
256:	learn: 14.9153860	total: 5.34s	remaining: 894ms
257:	learn: 14.8938640	total: 5.38s	remaining: 875ms
258:	learn: 14.8656429	total: 5.4s	remaining: 855ms
259:	learn: 14.8400108	total: 5.43s	remaining: 835ms
260:	learn: 14.8127477	total: 5.45s	remaining: 815ms
261:	learn: 14.7840189	total: 5.47s	remaining: 794ms
262:	learn: 14.7636580	total: 5.49s	remaining: 773ms
263:	learn: 14.7424463	total: 5.51s	remaining: 752ms
264:	learn: 14.7165151	total: 5.54s	remaining: 731ms
265:	learn: 14.6943344	total: 5.56s	remaining: 710ms
266:	learn: 14.6684671	total: 5.59s	remaining: 691ms
267:	learn: 14.6500533	total: 5.62s	remaining: 671ms
268:	learn: 14.6242507	total: 5.64s	remaining: 650ms
269:	learn: 14.6010969	total: 5.66s	remaining: 629ms
270:	learn: 14.5754050	total: 5.68s	remaining: 607ms
271:	learn: 14.5527180	total: 5.7s	remaining: 586ms
272:	learn: 14.5312625	total: 5.71s	remaining: 565ms
273:	learn: 14.5046916	total: 5.74s	remaining: 544ms
274:	learn: 14.4831769	total: 5.75s	remaining: 523ms
275:	learn: 14.4557873	total: 5.78s	remaining: 502ms
276:	learn: 14.4340248	total: 5.8s	remaining: 481ms
277:	learn: 14.4187123	total: 5.83s	remaining: 462ms
278:	learn: 14.3943058	total: 5.86s	remaining: 441ms
279:	learn: 14.3734883	total: 5.89s	remaining: 421ms
280:	learn: 14.3485928	total: 5.91s	remaining: 400ms
281:	learn: 14.3207447	total: 5.93s	remaining: 379ms
282:	learn: 14.2969638	total: 5.95s	remaining: 357ms
283:	learn: 14.2810628	total: 5.97s	remaining: 336ms
284:	learn: 14.2590377	total: 5.99s	remaining: 315ms
285:	learn: 14.2375705	total: 6.02s	remaining: 295ms
286:	learn: 14.2147566	total: 6.04s	remaining: 274ms
287:	learn: 14.1935863	total: 6.06s	remaining: 253ms
288:	learn: 14.1721543	total: 6.08s	remaining: 232ms
289:	learn: 14.1455377	total: 6.11s	remaining: 211ms
290:	learn: 14.1236162	total: 6.13s	remaining: 190ms
291:	learn: 14.0984065	total: 6.15s	remaining: 169ms
292:	learn: 14.0784162	total: 6.17s	remaining: 147ms
293:	learn: 14.0548298	total: 6.19s	remaining: 126ms
294:	learn: 14.0323401	total: 6.21s	remaining: 105ms
295:	learn: 14.0073430	total: 6.25s	remaining: 84.4ms
296:	learn: 13.9845466	total: 6.28s	remaining: 63.4ms
297:	learn: 13.9606203	total: 6.3s	remaining: 42.3ms
298:	learn: 13.9452850	total: 6.32s	remaining: 21.1ms
299:	learn: 13.9220508	total: 6.35s	remaining: 0us
0:	learn: 43.7856816	total: 22.3ms	remaining: 6.66s
1:	learn: 43.5659218	total: 54.2ms	remaining: 8.07s
2:	learn: 43.3733982	total: 76.3ms	remaining: 7.55s
3:	learn: 43.1723410	total: 95.1ms	remaining: 7.04s
4:	learn: 42.9319116	total: 115ms	remaining: 6.81s
5:	learn: 42.7464007	total: 134ms	remaining: 6.58s
6:	learn: 42.5608430	total: 153ms	remaining: 6.42s
7:	learn: 42.3800740	total: 174ms	remaining: 6.35s
8:	learn: 42.1910551	total: 195ms	remaining: 6.29s
9:	learn: 41.9653144	total: 217ms	remaining: 6.28s
10:	learn: 41.7727061	total: 236ms	remaining: 6.19s
11:	learn: 41.5933740	total: 256ms	remaining: 6.15s
12:	learn: 41.4042369	total: 279ms	remaining: 6.17s
13:	learn: 41.2362391	total: 311ms	remaining: 6.36s
14:	learn: 41.0537134	total: 334ms	remaining: 6.35s
15:	learn: 40.8332150	total: 356ms	remaining: 6.33s
16:	learn: 40.6622092	total: 376ms	remaining: 6.27s
17:	learn: 40.4852088	total: 397ms	remaining: 6.22s
18:	learn: 40.3177798	total: 416ms	remaining: 6.15s
19:	learn: 40.1620848	total: 434ms	remaining: 6.08s
20:	learn: 40.0157854	total: 454ms	remaining: 6.03s
21:	learn: 39.8273959	total: 475ms	remaining: 6s
22:	learn: 39.6404929	total: 506ms	remaining: 6.09s
23:	learn: 39.4600428	total: 526ms	remaining: 6.05s
24:	learn: 39.3048690	total: 545ms	remaining: 6s
25:	learn: 39.1251852	total: 563ms	remaining: 5.94s
26:	learn: 38.9442672	total: 581ms	remaining: 5.88s
27:	learn: 38.7823590	total: 600ms	remaining: 5.83s
28:	learn: 38.6054970	total: 619ms	remaining: 5.78s
29:	learn: 38.4455821	total: 637ms	remaining: 5.74s
30:	learn: 38.2751416	total: 658ms	remaining: 5.71s
31:	learn: 38.1412929	total: 677ms	remaining: 5.67s
32:	learn: 37.9766473	total: 697ms	remaining: 5.64s
33:	learn: 37.8286500	total: 725ms	remaining: 5.67s
34:	learn: 37.6627925	total: 749ms	remaining: 5.67s
35:	learn: 37.5157792	total: 771ms	remaining: 5.66s
36:	learn: 37.3581107	total: 793ms	remaining: 5.63s
37:	learn: 37.2281308	total: 815ms	remaining: 5.62s
38:	learn: 37.0636902	total: 834ms	remaining: 5.58s
39:	learn: 36.9103063	total: 853ms	remaining: 5.54s
40:	learn: 36.7940308	total: 871ms	remaining: 5.5s
41:	learn: 36.6485639	total: 891ms	remaining: 5.47s
42:	learn: 36.4851708	total: 911ms	remaining: 5.45s
43:	learn: 36.3381167	total: 939ms	remaining: 5.46s
44:	learn: 36.2038956	total: 959ms	remaining: 5.43s
45:	learn: 36.0587955	total: 978ms	remaining: 5.4s
46:	learn: 35.8793723	total: 996ms	remaining: 5.36s
47:	learn: 35.7468816	total: 1.02s	remaining: 5.34s
48:	learn: 35.6329508	total: 1.04s	remaining: 5.31s
49:	learn: 35.4891807	total: 1.06s	remaining: 5.28s
50:	learn: 35.3432049	total: 1.07s	remaining: 5.25s
51:	learn: 35.2327908	total: 1.09s	remaining: 5.21s
52:	learn: 35.1052522	total: 1.11s	remaining: 5.18s
53:	learn: 34.9886968	total: 1.13s	remaining: 5.16s
54:	learn: 34.8773412	total: 1.16s	remaining: 5.18s
55:	learn: 34.7472204	total: 1.18s	remaining: 5.16s
56:	learn: 34.6327502	total: 1.21s	remaining: 5.14s
57:	learn: 34.5054629	total: 1.23s	remaining: 5.12s
58:	learn: 34.4000757	total: 1.25s	remaining: 5.1s
59:	learn: 34.2599156	total: 1.27s	remaining: 5.07s
60:	learn: 34.0957859	total: 1.29s	remaining: 5.04s
61:	learn: 33.9558366	total: 1.3s	remaining: 5.01s
62:	learn: 33.8358576	total: 1.32s	remaining: 4.99s
63:	learn: 33.7227911	total: 1.34s	remaining: 4.96s
64:	learn: 33.6000896	total: 1.37s	remaining: 4.96s
65:	learn: 33.4731958	total: 1.39s	remaining: 4.94s
66:	learn: 33.3653344	total: 1.41s	remaining: 4.91s
67:	learn: 33.2193391	total: 1.43s	remaining: 4.88s
68:	learn: 33.0882205	total: 1.45s	remaining: 4.85s
69:	learn: 33.0048440	total: 1.47s	remaining: 4.82s
70:	learn: 32.8807136	total: 1.49s	remaining: 4.79s
71:	learn: 32.7586530	total: 1.51s	remaining: 4.77s
72:	learn: 32.6391088	total: 1.52s	remaining: 4.74s
73:	learn: 32.5057642	total: 1.54s	remaining: 4.71s
74:	learn: 32.3794191	total: 1.57s	remaining: 4.71s
75:	learn: 32.2701431	total: 1.59s	remaining: 4.7s
76:	learn: 32.1653013	total: 1.61s	remaining: 4.68s
77:	learn: 32.0510725	total: 1.64s	remaining: 4.66s
78:	learn: 31.9443968	total: 1.66s	remaining: 4.64s
79:	learn: 31.8314564	total: 1.68s	remaining: 4.62s
80:	learn: 31.7028384	total: 1.7s	remaining: 4.59s
81:	learn: 31.5866025	total: 1.72s	remaining: 4.56s
82:	learn: 31.4694776	total: 1.73s	remaining: 4.54s
83:	learn: 31.3496921	total: 1.75s	remaining: 4.51s
84:	learn: 31.2249241	total: 1.77s	remaining: 4.49s
85:	learn: 31.1080513	total: 1.8s	remaining: 4.48s
86:	learn: 30.9833337	total: 1.82s	remaining: 4.46s
87:	learn: 30.9062503	total: 1.84s	remaining: 4.44s
88:	learn: 30.8191741	total: 1.86s	remaining: 4.41s
89:	learn: 30.7313024	total: 1.88s	remaining: 4.39s
90:	learn: 30.6471248	total: 1.9s	remaining: 4.36s
91:	learn: 30.5146481	total: 1.92s	remaining: 4.33s
92:	learn: 30.3820896	total: 1.94s	remaining: 4.31s
93:	learn: 30.2824002	total: 1.96s	remaining: 4.29s
94:	learn: 30.1727218	total: 1.98s	remaining: 4.26s
95:	learn: 30.0878548	total: 2s	remaining: 4.24s
96:	learn: 29.9818399	total: 2.02s	remaining: 4.24s
97:	learn: 29.9015803	total: 2.05s	remaining: 4.22s
98:	learn: 29.8217982	total: 2.07s	remaining: 4.2s
99:	learn: 29.7264971	total: 2.09s	remaining: 4.18s
100:	learn: 29.6289348	total: 2.11s	remaining: 4.16s
101:	learn: 29.5205081	total: 2.13s	remaining: 4.14s
102:	learn: 29.4418891	total: 2.15s	remaining: 4.11s
103:	learn: 29.3334487	total: 2.17s	remaining: 4.09s
104:	learn: 29.2240799	total: 2.19s	remaining: 4.06s
105:	learn: 29.1304764	total: 2.21s	remaining: 4.04s
106:	learn: 29.0308760	total: 2.23s	remaining: 4.02s
107:	learn: 28.9577969	total: 2.25s	remaining: 4.01s
108:	learn: 28.8728758	total: 2.27s	remaining: 3.98s
109:	learn: 28.7984665	total: 2.29s	remaining: 3.96s
110:	learn: 28.6877184	total: 2.31s	remaining: 3.93s
111:	learn: 28.5791485	total: 2.33s	remaining: 3.9s
112:	learn: 28.4982721	total: 2.34s	remaining: 3.88s
113:	learn: 28.4085608	total: 2.36s	remaining: 3.85s
114:	learn: 28.3448584	total: 2.38s	remaining: 3.83s
115:	learn: 28.2575931	total: 2.4s	remaining: 3.8s
116:	learn: 28.1881896	total: 2.42s	remaining: 3.78s
117:	learn: 28.1069507	total: 2.44s	remaining: 3.76s
118:	learn: 28.0270528	total: 2.47s	remaining: 3.75s
119:	learn: 27.9259166	total: 2.49s	remaining: 3.73s
120:	learn: 27.8563639	total: 2.51s	remaining: 3.71s
121:	learn: 27.7785736	total: 2.53s	remaining: 3.69s
122:	learn: 27.6946101	total: 2.55s	remaining: 3.67s
123:	learn: 27.6139657	total: 2.57s	remaining: 3.65s
124:	learn: 27.5264856	total: 2.59s	remaining: 3.63s
125:	learn: 27.4490397	total: 2.61s	remaining: 3.6s
126:	learn: 27.3707329	total: 2.63s	remaining: 3.58s
127:	learn: 27.3087624	total: 2.65s	remaining: 3.56s
128:	learn: 27.2413002	total: 2.67s	remaining: 3.54s
129:	learn: 27.1632835	total: 2.69s	remaining: 3.52s
130:	learn: 27.0921279	total: 2.71s	remaining: 3.49s
131:	learn: 27.0007844	total: 2.73s	remaining: 3.47s
132:	learn: 26.9285864	total: 2.74s	remaining: 3.44s
133:	learn: 26.8446919	total: 2.76s	remaining: 3.42s
134:	learn: 26.7846812	total: 2.78s	remaining: 3.4s
135:	learn: 26.7235166	total: 2.8s	remaining: 3.37s
136:	learn: 26.6537054	total: 2.81s	remaining: 3.35s
137:	learn: 26.5823761	total: 2.83s	remaining: 3.32s
138:	learn: 26.5118236	total: 2.85s	remaining: 3.3s
139:	learn: 26.4258642	total: 2.87s	remaining: 3.28s
140:	learn: 26.3419164	total: 2.9s	remaining: 3.27s
141:	learn: 26.2795332	total: 2.92s	remaining: 3.25s
142:	learn: 26.2033926	total: 2.94s	remaining: 3.23s
143:	learn: 26.1361455	total: 2.96s	remaining: 3.21s
144:	learn: 26.0778431	total: 2.98s	remaining: 3.19s
145:	learn: 26.0186987	total: 3s	remaining: 3.17s
146:	learn: 25.9494077	total: 3.02s	remaining: 3.14s
147:	learn: 25.8713963	total: 3.04s	remaining: 3.12s
148:	learn: 25.8109826	total: 3.06s	remaining: 3.1s
149:	learn: 25.7558495	total: 3.07s	remaining: 3.07s
150:	learn: 25.6849542	total: 3.1s	remaining: 3.06s
151:	learn: 25.6195687	total: 3.12s	remaining: 3.04s
152:	learn: 25.5569409	total: 3.14s	remaining: 3.02s
153:	learn: 25.4979783	total: 3.16s	remaining: 2.99s
154:	learn: 25.4282161	total: 3.18s	remaining: 2.97s
155:	learn: 25.3550543	total: 3.19s	remaining: 2.95s
156:	learn: 25.3038420	total: 3.21s	remaining: 2.93s
157:	learn: 25.2307423	total: 3.23s	remaining: 2.9s
158:	learn: 25.1635473	total: 3.25s	remaining: 2.88s
159:	learn: 25.1019951	total: 3.27s	remaining: 2.86s
160:	learn: 25.0370269	total: 3.29s	remaining: 2.84s
161:	learn: 24.9709545	total: 3.31s	remaining: 2.82s
162:	learn: 24.9115940	total: 3.34s	remaining: 2.81s
163:	learn: 24.8527105	total: 3.36s	remaining: 2.79s
164:	learn: 24.7828791	total: 3.38s	remaining: 2.77s
165:	learn: 24.7274457	total: 3.4s	remaining: 2.75s
166:	learn: 24.6621617	total: 3.42s	remaining: 2.72s
167:	learn: 24.5905749	total: 3.42s	remaining: 2.69s
168:	learn: 24.5297300	total: 3.44s	remaining: 2.67s
169:	learn: 24.4643850	total: 3.46s	remaining: 2.64s
170:	learn: 24.4008397	total: 3.48s	remaining: 2.62s
171:	learn: 24.3357360	total: 3.5s	remaining: 2.61s
172:	learn: 24.2734264	total: 3.52s	remaining: 2.59s
173:	learn: 24.2248748	total: 3.54s	remaining: 2.56s
174:	learn: 24.1560070	total: 3.56s	remaining: 2.54s
175:	learn: 24.0996080	total: 3.58s	remaining: 2.52s
176:	learn: 24.0348608	total: 3.6s	remaining: 2.5s
177:	learn: 23.9803664	total: 3.61s	remaining: 2.48s
178:	learn: 23.9260748	total: 3.63s	remaining: 2.45s
179:	learn: 23.8772265	total: 3.65s	remaining: 2.43s
180:	learn: 23.8232381	total: 3.67s	remaining: 2.41s
181:	learn: 23.7590503	total: 3.69s	remaining: 2.39s
182:	learn: 23.6989235	total: 3.71s	remaining: 2.37s
183:	learn: 23.6391502	total: 3.73s	remaining: 2.35s
184:	learn: 23.5860625	total: 3.75s	remaining: 2.33s
185:	learn: 23.5370458	total: 3.78s	remaining: 2.31s
186:	learn: 23.4829130	total: 3.81s	remaining: 2.3s
187:	learn: 23.4288757	total: 3.83s	remaining: 2.28s
188:	learn: 23.3690770	total: 3.85s	remaining: 2.26s
189:	learn: 23.3056629	total: 3.87s	remaining: 2.24s
190:	learn: 23.2498793	total: 3.89s	remaining: 2.22s
191:	learn: 23.1978251	total: 3.91s	remaining: 2.2s
192:	learn: 23.1405048	total: 3.94s	remaining: 2.18s
193:	learn: 23.0858217	total: 3.96s	remaining: 2.16s
194:	learn: 23.0345109	total: 3.98s	remaining: 2.15s
195:	learn: 22.9852977	total: 4s	remaining: 2.12s
196:	learn: 22.9320009	total: 4.03s	remaining: 2.1s
197:	learn: 22.8820432	total: 4.05s	remaining: 2.09s
198:	learn: 22.8358084	total: 4.07s	remaining: 2.07s
199:	learn: 22.7819318	total: 4.09s	remaining: 2.05s
200:	learn: 22.7307146	total: 4.12s	remaining: 2.03s
201:	learn: 22.6711968	total: 4.14s	remaining: 2.01s
202:	learn: 22.6096234	total: 4.17s	remaining: 1.99s
203:	learn: 22.5661776	total: 4.19s	remaining: 1.97s
204:	learn: 22.5174350	total: 4.22s	remaining: 1.96s
205:	learn: 22.4609572	total: 4.24s	remaining: 1.94s
206:	learn: 22.4143305	total: 4.26s	remaining: 1.92s
207:	learn: 22.3686998	total: 4.28s	remaining: 1.9s
208:	learn: 22.3251391	total: 4.31s	remaining: 1.88s
209:	learn: 22.2773061	total: 4.34s	remaining: 1.86s
210:	learn: 22.2117895	total: 4.36s	remaining: 1.84s
211:	learn: 22.1597226	total: 4.39s	remaining: 1.82s
212:	learn: 22.1146603	total: 4.41s	remaining: 1.8s
213:	learn: 22.0637131	total: 4.43s	remaining: 1.78s
214:	learn: 22.0208429	total: 4.45s	remaining: 1.76s
215:	learn: 21.9862177	total: 4.47s	remaining: 1.74s
216:	learn: 21.9331491	total: 4.49s	remaining: 1.72s
217:	learn: 21.8776205	total: 4.51s	remaining: 1.7s
218:	learn: 21.8193753	total: 4.53s	remaining: 1.68s
219:	learn: 21.7818344	total: 4.56s	remaining: 1.66s
220:	learn: 21.7317318	total: 4.59s	remaining: 1.64s
221:	learn: 21.6955181	total: 4.62s	remaining: 1.62s
222:	learn: 21.6498734	total: 4.64s	remaining: 1.6s
223:	learn: 21.6055066	total: 4.67s	remaining: 1.58s
224:	learn: 21.5432678	total: 4.69s	remaining: 1.56s
225:	learn: 21.4994308	total: 4.71s	remaining: 1.54s
226:	learn: 21.4441214	total: 4.73s	remaining: 1.52s
227:	learn: 21.3999408	total: 4.75s	remaining: 1.5s
228:	learn: 21.3597379	total: 4.77s	remaining: 1.48s
229:	learn: 21.3129730	total: 4.8s	remaining: 1.46s
230:	learn: 21.2683296	total: 4.83s	remaining: 1.44s
231:	learn: 21.2282909	total: 4.85s	remaining: 1.42s
232:	learn: 21.1860738	total: 4.87s	remaining: 1.4s
233:	learn: 21.1387672	total: 4.89s	remaining: 1.38s
234:	learn: 21.0939778	total: 4.91s	remaining: 1.36s
235:	learn: 21.0439583	total: 4.93s	remaining: 1.34s
236:	learn: 21.0137177	total: 4.95s	remaining: 1.32s
237:	learn: 20.9670937	total: 4.97s	remaining: 1.29s
238:	learn: 20.9126049	total: 4.99s	remaining: 1.27s
239:	learn: 20.8693031	total: 5.03s	remaining: 1.26s
240:	learn: 20.8284927	total: 5.05s	remaining: 1.24s
241:	learn: 20.7956565	total: 5.08s	remaining: 1.22s
242:	learn: 20.7607092	total: 5.11s	remaining: 1.2s
243:	learn: 20.7214592	total: 5.13s	remaining: 1.18s
244:	learn: 20.6835630	total: 5.15s	remaining: 1.16s
245:	learn: 20.6425341	total: 5.17s	remaining: 1.13s
246:	learn: 20.5974839	total: 5.19s	remaining: 1.11s
247:	learn: 20.5625745	total: 5.22s	remaining: 1.09s
248:	learn: 20.5159735	total: 5.24s	remaining: 1.07s
249:	learn: 20.4711155	total: 5.26s	remaining: 1.05s
250:	learn: 20.4299959	total: 5.28s	remaining: 1.03s
251:	learn: 20.3921730	total: 5.3s	remaining: 1.01s
252:	learn: 20.3466882	total: 5.33s	remaining: 990ms
253:	learn: 20.3102915	total: 5.35s	remaining: 968ms
254:	learn: 20.2680005	total: 5.37s	remaining: 947ms
255:	learn: 20.2302697	total: 5.37s	remaining: 924ms
256:	learn: 20.1904094	total: 5.39s	remaining: 902ms
257:	learn: 20.1474158	total: 5.42s	remaining: 882ms
258:	learn: 20.1120054	total: 5.45s	remaining: 862ms
259:	learn: 20.0690019	total: 5.47s	remaining: 841ms
260:	learn: 20.0272146	total: 5.49s	remaining: 821ms
261:	learn: 19.9859846	total: 5.51s	remaining: 800ms
262:	learn: 19.9528223	total: 5.54s	remaining: 779ms
263:	learn: 19.9163525	total: 5.57s	remaining: 759ms
264:	learn: 19.8774663	total: 5.59s	remaining: 738ms
265:	learn: 19.8406971	total: 5.61s	remaining: 717ms
266:	learn: 19.8061441	total: 5.64s	remaining: 697ms
267:	learn: 19.7704750	total: 5.66s	remaining: 676ms
268:	learn: 19.7271709	total: 5.68s	remaining: 655ms
269:	learn: 19.6914048	total: 5.7s	remaining: 634ms
270:	learn: 19.6578212	total: 5.72s	remaining: 613ms
271:	learn: 19.6316411	total: 5.74s	remaining: 591ms
272:	learn: 19.6011082	total: 5.76s	remaining: 570ms
273:	learn: 19.5645530	total: 5.78s	remaining: 549ms
274:	learn: 19.5313764	total: 5.81s	remaining: 528ms
275:	learn: 19.5004632	total: 5.83s	remaining: 507ms
276:	learn: 19.4740346	total: 5.86s	remaining: 487ms
277:	learn: 19.4373882	total: 5.89s	remaining: 466ms
278:	learn: 19.3922269	total: 5.91s	remaining: 445ms
279:	learn: 19.3544202	total: 5.94s	remaining: 424ms
280:	learn: 19.3170310	total: 5.96s	remaining: 403ms
281:	learn: 19.2701727	total: 5.98s	remaining: 382ms
282:	learn: 19.2333313	total: 6s	remaining: 360ms
283:	learn: 19.1955511	total: 6.02s	remaining: 339ms
284:	learn: 19.1494420	total: 6.04s	remaining: 318ms
285:	learn: 19.1158911	total: 6.07s	remaining: 297ms
286:	learn: 19.0857708	total: 6.1s	remaining: 276ms
287:	learn: 19.0500206	total: 6.12s	remaining: 255ms
288:	learn: 19.0160421	total: 6.14s	remaining: 234ms
289:	learn: 18.9799013	total: 6.16s	remaining: 212ms
290:	learn: 18.9493716	total: 6.18s	remaining: 191ms
291:	learn: 18.9137069	total: 6.2s	remaining: 170ms
292:	learn: 18.8853939	total: 6.22s	remaining: 149ms
293:	learn: 18.8502142	total: 6.24s	remaining: 127ms
294:	learn: 18.8230818	total: 6.26s	remaining: 106ms
295:	learn: 18.7937041	total: 6.29s	remaining: 84.9ms
296:	learn: 18.7538071	total: 6.33s	remaining: 63.9ms
297:	learn: 18.7197456	total: 6.35s	remaining: 42.6ms
298:	learn: 18.6944413	total: 6.37s	remaining: 21.3ms
299:	learn: 18.6605569	total: 6.39s	remaining: 0us
0:	learn: 47.2292747	total: 21.3ms	remaining: 6.37s
1:	learn: 47.1137681	total: 48.4ms	remaining: 7.22s
2:	learn: 46.8877712	total: 73.6ms	remaining: 7.29s
3:	learn: 46.6520173	total: 93.6ms	remaining: 6.93s
4:	learn: 46.4622380	total: 114ms	remaining: 6.73s
5:	learn: 46.2765728	total: 134ms	remaining: 6.57s
6:	learn: 46.1056209	total: 154ms	remaining: 6.43s
7:	learn: 45.9234243	total: 181ms	remaining: 6.6s
8:	learn: 45.7378721	total: 199ms	remaining: 6.44s
9:	learn: 45.5430935	total: 220ms	remaining: 6.37s
10:	learn: 45.4106678	total: 239ms	remaining: 6.28s
11:	learn: 45.2108101	total: 260ms	remaining: 6.23s
12:	learn: 45.0703727	total: 281ms	remaining: 6.21s
13:	learn: 44.9079969	total: 309ms	remaining: 6.31s
14:	learn: 44.7689302	total: 332ms	remaining: 6.31s
15:	learn: 44.5641436	total: 356ms	remaining: 6.31s
16:	learn: 44.3823296	total: 376ms	remaining: 6.26s
17:	learn: 44.2047235	total: 399ms	remaining: 6.25s
18:	learn: 44.0819629	total: 418ms	remaining: 6.18s
19:	learn: 43.9075686	total: 436ms	remaining: 6.1s
20:	learn: 43.7632059	total: 455ms	remaining: 6.04s
21:	learn: 43.5527859	total: 474ms	remaining: 5.98s
22:	learn: 43.3949579	total: 495ms	remaining: 5.96s
23:	learn: 43.2315351	total: 526ms	remaining: 6.05s
24:	learn: 43.0455538	total: 547ms	remaining: 6.02s
25:	learn: 42.8960642	total: 566ms	remaining: 5.96s
26:	learn: 42.7775344	total: 585ms	remaining: 5.91s
27:	learn: 42.5870674	total: 604ms	remaining: 5.87s
28:	learn: 42.4256050	total: 623ms	remaining: 5.82s
29:	learn: 42.3005825	total: 643ms	remaining: 5.78s
30:	learn: 42.1180170	total: 661ms	remaining: 5.74s
31:	learn: 42.0010738	total: 681ms	remaining: 5.71s
32:	learn: 41.8515811	total: 702ms	remaining: 5.68s
33:	learn: 41.6748749	total: 730ms	remaining: 5.71s
34:	learn: 41.5090623	total: 753ms	remaining: 5.7s
35:	learn: 41.3438035	total: 776ms	remaining: 5.69s
36:	learn: 41.1830991	total: 798ms	remaining: 5.67s
37:	learn: 41.0278172	total: 821ms	remaining: 5.66s
38:	learn: 40.9390270	total: 840ms	remaining: 5.62s
39:	learn: 40.8072766	total: 859ms	remaining: 5.58s
40:	learn: 40.6378142	total: 877ms	remaining: 5.54s
41:	learn: 40.4868345	total: 896ms	remaining: 5.5s
42:	learn: 40.3211957	total: 921ms	remaining: 5.51s
43:	learn: 40.1468776	total: 947ms	remaining: 5.51s
44:	learn: 40.0492686	total: 966ms	remaining: 5.47s
45:	learn: 39.9094880	total: 986ms	remaining: 5.44s
46:	learn: 39.7446042	total: 1s	remaining: 5.4s
47:	learn: 39.6382809	total: 1.02s	remaining: 5.37s
48:	learn: 39.5015253	total: 1.04s	remaining: 5.34s
49:	learn: 39.3598146	total: 1.06s	remaining: 5.3s
50:	learn: 39.2379974	total: 1.08s	remaining: 5.27s
51:	learn: 39.1555066	total: 1.1s	remaining: 5.24s
52:	learn: 39.0362667	total: 1.12s	remaining: 5.22s
53:	learn: 38.9033825	total: 1.15s	remaining: 5.24s
54:	learn: 38.7725735	total: 1.17s	remaining: 5.22s
55:	learn: 38.6588057	total: 1.19s	remaining: 5.2s
56:	learn: 38.5669979	total: 1.22s	remaining: 5.18s
57:	learn: 38.4297746	total: 1.24s	remaining: 5.17s
58:	learn: 38.3046997	total: 1.26s	remaining: 5.14s
59:	learn: 38.1473812	total: 1.28s	remaining: 5.11s
60:	learn: 37.9937397	total: 1.3s	remaining: 5.08s
61:	learn: 37.8759804	total: 1.32s	remaining: 5.06s
62:	learn: 37.7540834	total: 1.34s	remaining: 5.04s
63:	learn: 37.6209389	total: 1.36s	remaining: 5.03s
64:	learn: 37.5107057	total: 1.38s	remaining: 5.01s
65:	learn: 37.3933702	total: 1.4s	remaining: 4.98s
66:	learn: 37.2900154	total: 1.42s	remaining: 4.95s
67:	learn: 37.1101629	total: 1.44s	remaining: 4.92s
68:	learn: 36.9847784	total: 1.46s	remaining: 4.89s
69:	learn: 36.8748023	total: 1.48s	remaining: 4.86s
70:	learn: 36.7561135	total: 1.5s	remaining: 4.84s
71:	learn: 36.6354513	total: 1.52s	remaining: 4.82s
72:	learn: 36.4926346	total: 1.54s	remaining: 4.79s
73:	learn: 36.3632203	total: 1.56s	remaining: 4.78s
74:	learn: 36.2677062	total: 1.59s	remaining: 4.78s
75:	learn: 36.1856138	total: 1.61s	remaining: 4.76s
76:	learn: 36.1315196	total: 1.64s	remaining: 4.74s
77:	learn: 35.9697871	total: 1.66s	remaining: 4.71s
78:	learn: 35.8317683	total: 1.68s	remaining: 4.69s
79:	learn: 35.7309718	total: 1.69s	remaining: 4.66s
80:	learn: 35.5869137	total: 1.71s	remaining: 4.63s
81:	learn: 35.4965817	total: 1.73s	remaining: 4.6s
82:	learn: 35.3832812	total: 1.75s	remaining: 4.58s
83:	learn: 35.2980255	total: 1.78s	remaining: 4.58s
84:	learn: 35.1734948	total: 1.8s	remaining: 4.56s
85:	learn: 35.0798697	total: 1.82s	remaining: 4.53s
86:	learn: 34.9563860	total: 1.84s	remaining: 4.51s
87:	learn: 34.8243443	total: 1.86s	remaining: 4.48s
88:	learn: 34.7227632	total: 1.88s	remaining: 4.46s
89:	learn: 34.6288296	total: 1.9s	remaining: 4.43s
90:	learn: 34.5333887	total: 1.92s	remaining: 4.4s
91:	learn: 34.4148747	total: 1.94s	remaining: 4.38s
92:	learn: 34.3191495	total: 1.95s	remaining: 4.35s
93:	learn: 34.2425617	total: 1.98s	remaining: 4.33s
94:	learn: 34.1194306	total: 2s	remaining: 4.31s
95:	learn: 34.0163293	total: 2.03s	remaining: 4.31s
96:	learn: 33.8787842	total: 2.05s	remaining: 4.29s
97:	learn: 33.7727812	total: 2.07s	remaining: 4.27s
98:	learn: 33.6824107	total: 2.09s	remaining: 4.25s
99:	learn: 33.6031874	total: 2.11s	remaining: 4.23s
100:	learn: 33.4984606	total: 2.13s	remaining: 4.2s
101:	learn: 33.4102364	total: 2.15s	remaining: 4.17s
102:	learn: 33.2990334	total: 2.17s	remaining: 4.15s
103:	learn: 33.1873068	total: 2.19s	remaining: 4.13s
104:	learn: 33.0816347	total: 2.22s	remaining: 4.12s
105:	learn: 32.9783969	total: 2.24s	remaining: 4.1s
106:	learn: 32.8553088	total: 2.26s	remaining: 4.08s
107:	learn: 32.7900679	total: 2.28s	remaining: 4.05s
108:	learn: 32.6779719	total: 2.3s	remaining: 4.03s
109:	learn: 32.5714888	total: 2.32s	remaining: 4s
110:	learn: 32.4849083	total: 2.34s	remaining: 3.98s
111:	learn: 32.3636284	total: 2.36s	remaining: 3.96s
112:	learn: 32.2557993	total: 2.37s	remaining: 3.93s
113:	learn: 32.1576093	total: 2.39s	remaining: 3.9s
114:	learn: 32.1001268	total: 2.41s	remaining: 3.88s
115:	learn: 31.9674204	total: 2.44s	remaining: 3.87s
116:	learn: 31.8841203	total: 2.46s	remaining: 3.85s
117:	learn: 31.7636940	total: 2.49s	remaining: 3.83s
118:	learn: 31.6610992	total: 2.51s	remaining: 3.82s
119:	learn: 31.5632927	total: 2.53s	remaining: 3.8s
120:	learn: 31.4898735	total: 2.55s	remaining: 3.78s
121:	learn: 31.3784320	total: 2.57s	remaining: 3.75s
122:	learn: 31.2899921	total: 2.59s	remaining: 3.73s
123:	learn: 31.2164058	total: 2.61s	remaining: 3.7s
124:	learn: 31.1203862	total: 2.63s	remaining: 3.67s
125:	learn: 31.0376991	total: 2.65s	remaining: 3.66s
126:	learn: 30.9901053	total: 2.67s	remaining: 3.64s
127:	learn: 30.9010569	total: 2.69s	remaining: 3.62s
128:	learn: 30.7897710	total: 2.71s	remaining: 3.59s
129:	learn: 30.7083435	total: 2.73s	remaining: 3.56s
130:	learn: 30.6299800	total: 2.74s	remaining: 3.54s
131:	learn: 30.5257796	total: 2.76s	remaining: 3.52s
132:	learn: 30.4421347	total: 2.78s	remaining: 3.49s
133:	learn: 30.3697428	total: 2.8s	remaining: 3.46s
134:	learn: 30.2828797	total: 2.81s	remaining: 3.44s
135:	learn: 30.2103845	total: 2.83s	remaining: 3.42s
136:	learn: 30.1317546	total: 2.86s	remaining: 3.4s
137:	learn: 30.0400611	total: 2.88s	remaining: 3.38s
138:	learn: 29.9668046	total: 2.9s	remaining: 3.36s
139:	learn: 29.8659426	total: 2.92s	remaining: 3.34s
140:	learn: 29.7744450	total: 2.94s	remaining: 3.32s
141:	learn: 29.7048056	total: 2.96s	remaining: 3.3s
142:	learn: 29.6331674	total: 2.98s	remaining: 3.27s
143:	learn: 29.5566748	total: 3s	remaining: 3.25s
144:	learn: 29.4948144	total: 3.02s	remaining: 3.23s
145:	learn: 29.4086402	total: 3.04s	remaining: 3.2s
146:	learn: 29.3137860	total: 3.05s	remaining: 3.18s
147:	learn: 29.2256372	total: 3.07s	remaining: 3.16s
148:	learn: 29.1533470	total: 3.1s	remaining: 3.14s
149:	learn: 29.0748782	total: 3.12s	remaining: 3.12s
150:	learn: 28.9973630	total: 3.14s	remaining: 3.1s
151:	learn: 28.9139471	total: 3.16s	remaining: 3.07s
152:	learn: 28.8440553	total: 3.17s	remaining: 3.05s
153:	learn: 28.7627166	total: 3.19s	remaining: 3.03s
154:	learn: 28.6879888	total: 3.21s	remaining: 3s
155:	learn: 28.6207049	total: 3.23s	remaining: 2.98s
156:	learn: 28.5639115	total: 3.25s	remaining: 2.96s
157:	learn: 28.4647588	total: 3.26s	remaining: 2.93s
158:	learn: 28.3834803	total: 3.28s	remaining: 2.91s
159:	learn: 28.3054890	total: 3.31s	remaining: 2.89s
160:	learn: 28.2433429	total: 3.33s	remaining: 2.88s
161:	learn: 28.1559471	total: 3.35s	remaining: 2.86s
162:	learn: 28.0733026	total: 3.38s	remaining: 2.84s
163:	learn: 28.0109855	total: 3.4s	remaining: 2.82s
164:	learn: 27.9554044	total: 3.42s	remaining: 2.8s
165:	learn: 27.8906340	total: 3.44s	remaining: 2.78s
166:	learn: 27.8173011	total: 3.46s	remaining: 2.75s
167:	learn: 27.7531886	total: 3.48s	remaining: 2.73s
168:	learn: 27.6787698	total: 3.5s	remaining: 2.71s
169:	learn: 27.6117258	total: 3.52s	remaining: 2.69s
170:	learn: 27.5383897	total: 3.55s	remaining: 2.68s
171:	learn: 27.4521634	total: 3.57s	remaining: 2.65s
172:	learn: 27.3775523	total: 3.58s	remaining: 2.63s
173:	learn: 27.3197994	total: 3.6s	remaining: 2.61s
174:	learn: 27.2373041	total: 3.62s	remaining: 2.59s
175:	learn: 27.1617809	total: 3.64s	remaining: 2.57s
176:	learn: 27.0775080	total: 3.66s	remaining: 2.55s
177:	learn: 27.0160368	total: 3.68s	remaining: 2.52s
178:	learn: 26.9556472	total: 3.7s	remaining: 2.5s
179:	learn: 26.9006206	total: 3.73s	remaining: 2.48s
180:	learn: 26.8271799	total: 3.76s	remaining: 2.47s
181:	learn: 26.7535133	total: 3.78s	remaining: 2.45s
182:	learn: 26.7009660	total: 3.8s	remaining: 2.43s
183:	learn: 26.6286430	total: 3.82s	remaining: 2.41s
184:	learn: 26.5638590	total: 3.84s	remaining: 2.39s
185:	learn: 26.5110888	total: 3.86s	remaining: 2.37s
186:	learn: 26.4625783	total: 3.88s	remaining: 2.35s
187:	learn: 26.3801626	total: 3.9s	remaining: 2.32s
188:	learn: 26.2947913	total: 3.92s	remaining: 2.3s
189:	learn: 26.2441125	total: 3.94s	remaining: 2.28s
190:	learn: 26.1753138	total: 3.96s	remaining: 2.26s
191:	learn: 26.1123583	total: 3.98s	remaining: 2.24s
192:	learn: 26.0569241	total: 4s	remaining: 2.22s
193:	learn: 26.0252651	total: 4.02s	remaining: 2.19s
194:	learn: 25.9591040	total: 4.04s	remaining: 2.17s
195:	learn: 25.9015598	total: 4.05s	remaining: 2.15s
196:	learn: 25.8264017	total: 4.07s	remaining: 2.13s
197:	learn: 25.7749180	total: 4.09s	remaining: 2.11s
198:	learn: 25.7342556	total: 4.11s	remaining: 2.08s
199:	learn: 25.6780299	total: 4.13s	remaining: 2.06s
200:	learn: 25.6178238	total: 4.14s	remaining: 2.04s
201:	learn: 25.5660527	total: 4.16s	remaining: 2.02s
202:	learn: 25.5124572	total: 4.19s	remaining: 2s
203:	learn: 25.4592906	total: 4.22s	remaining: 1.99s
204:	learn: 25.3973083	total: 4.24s	remaining: 1.97s
205:	learn: 25.3439014	total: 4.26s	remaining: 1.95s
206:	learn: 25.2908108	total: 4.29s	remaining: 1.93s
207:	learn: 25.2367194	total: 4.31s	remaining: 1.91s
208:	learn: 25.1781162	total: 4.33s	remaining: 1.88s
209:	learn: 25.1353824	total: 4.35s	remaining: 1.86s
210:	learn: 25.0782001	total: 4.37s	remaining: 1.84s
211:	learn: 25.0170021	total: 4.4s	remaining: 1.83s
212:	learn: 24.9551860	total: 4.42s	remaining: 1.81s
213:	learn: 24.8923500	total: 4.45s	remaining: 1.79s
214:	learn: 24.8382280	total: 4.47s	remaining: 1.77s
215:	learn: 24.7793083	total: 4.5s	remaining: 1.75s
216:	learn: 24.7234762	total: 4.51s	remaining: 1.73s
217:	learn: 24.6700099	total: 4.54s	remaining: 1.71s
218:	learn: 24.6337862	total: 4.56s	remaining: 1.69s
219:	learn: 24.5984553	total: 4.58s	remaining: 1.67s
220:	learn: 24.5522362	total: 4.61s	remaining: 1.65s
221:	learn: 24.4915583	total: 4.63s	remaining: 1.63s
222:	learn: 24.4271589	total: 4.66s	remaining: 1.61s
223:	learn: 24.3618025	total: 4.68s	remaining: 1.59s
224:	learn: 24.3162966	total: 4.71s	remaining: 1.57s
225:	learn: 24.2603025	total: 4.73s	remaining: 1.55s
226:	learn: 24.2019761	total: 4.75s	remaining: 1.53s
227:	learn: 24.1470914	total: 4.77s	remaining: 1.51s
228:	learn: 24.0849149	total: 4.79s	remaining: 1.49s
229:	learn: 24.0504031	total: 4.82s	remaining: 1.47s
230:	learn: 24.0041816	total: 4.84s	remaining: 1.45s
231:	learn: 23.9560147	total: 4.86s	remaining: 1.43s
232:	learn: 23.9110152	total: 4.88s	remaining: 1.4s
233:	learn: 23.8654808	total: 4.9s	remaining: 1.38s
234:	learn: 23.8065999	total: 4.93s	remaining: 1.36s
235:	learn: 23.7643552	total: 4.95s	remaining: 1.34s
236:	learn: 23.7081628	total: 4.97s	remaining: 1.32s
237:	learn: 23.6734422	total: 5s	remaining: 1.3s
238:	learn: 23.6253676	total: 5.03s	remaining: 1.28s
239:	learn: 23.5766458	total: 5.05s	remaining: 1.26s
240:	learn: 23.5367596	total: 5.08s	remaining: 1.24s
241:	learn: 23.4841493	total: 5.1s	remaining: 1.22s
242:	learn: 23.4381238	total: 5.12s	remaining: 1.2s
243:	learn: 23.3760294	total: 5.14s	remaining: 1.18s
244:	learn: 23.3223135	total: 5.16s	remaining: 1.16s
245:	learn: 23.2808660	total: 5.19s	remaining: 1.14s
246:	learn: 23.2517652	total: 5.21s	remaining: 1.12s
247:	learn: 23.2073109	total: 5.24s	remaining: 1.1s
248:	learn: 23.1627444	total: 5.26s	remaining: 1.08s
249:	learn: 23.1280599	total: 5.28s	remaining: 1.05s
250:	learn: 23.0844833	total: 5.3s	remaining: 1.03s
251:	learn: 23.0396478	total: 5.32s	remaining: 1.01s
252:	learn: 22.9941483	total: 5.34s	remaining: 992ms
253:	learn: 22.9587040	total: 5.36s	remaining: 970ms
254:	learn: 22.9153548	total: 5.38s	remaining: 949ms
255:	learn: 22.8753223	total: 5.4s	remaining: 928ms
256:	learn: 22.8302416	total: 5.44s	remaining: 910ms
257:	learn: 22.8014428	total: 5.47s	remaining: 890ms
258:	learn: 22.7508273	total: 5.49s	remaining: 870ms
259:	learn: 22.7027973	total: 5.52s	remaining: 849ms
260:	learn: 22.6580173	total: 5.54s	remaining: 828ms
261:	learn: 22.6114698	total: 5.56s	remaining: 806ms
262:	learn: 22.5630143	total: 5.58s	remaining: 785ms
263:	learn: 22.5246133	total: 5.6s	remaining: 764ms
264:	learn: 22.4794591	total: 5.62s	remaining: 743ms
265:	learn: 22.4325423	total: 5.65s	remaining: 722ms
266:	learn: 22.3846787	total: 5.67s	remaining: 701ms
267:	learn: 22.3343826	total: 5.7s	remaining: 681ms
268:	learn: 22.3004833	total: 5.72s	remaining: 659ms
269:	learn: 22.2581479	total: 5.74s	remaining: 638ms
270:	learn: 22.2113344	total: 5.76s	remaining: 617ms
271:	learn: 22.1588663	total: 5.78s	remaining: 595ms
272:	learn: 22.1229095	total: 5.8s	remaining: 574ms
273:	learn: 22.0867775	total: 5.82s	remaining: 553ms
274:	learn: 22.0438705	total: 5.84s	remaining: 531ms
275:	learn: 21.9925989	total: 5.87s	remaining: 511ms
276:	learn: 21.9552337	total: 5.9s	remaining: 490ms
277:	learn: 21.9070985	total: 5.92s	remaining: 469ms
278:	learn: 21.8696456	total: 5.95s	remaining: 448ms
279:	learn: 21.8337015	total: 5.98s	remaining: 427ms
280:	learn: 21.7979403	total: 6s	remaining: 405ms
281:	learn: 21.7595376	total: 6.02s	remaining: 384ms
282:	learn: 21.7103730	total: 6.04s	remaining: 363ms
283:	learn: 21.6681361	total: 6.06s	remaining: 341ms
284:	learn: 21.6371877	total: 6.08s	remaining: 320ms
285:	learn: 21.5892481	total: 6.11s	remaining: 299ms
286:	learn: 21.5478948	total: 6.13s	remaining: 278ms
287:	learn: 21.5242128	total: 6.15s	remaining: 256ms
288:	learn: 21.4840092	total: 6.17s	remaining: 235ms
289:	learn: 21.4401806	total: 6.19s	remaining: 214ms
290:	learn: 21.3937706	total: 6.21s	remaining: 192ms
291:	learn: 21.3488985	total: 6.23s	remaining: 171ms
292:	learn: 21.3093605	total: 6.25s	remaining: 149ms
293:	learn: 21.2646475	total: 6.28s	remaining: 128ms
294:	learn: 21.2309409	total: 6.3s	remaining: 107ms
295:	learn: 21.1908660	total: 6.33s	remaining: 85.5ms
296:	learn: 21.1493584	total: 6.35s	remaining: 64.2ms
297:	learn: 21.1036105	total: 6.38s	remaining: 42.8ms
298:	learn: 21.0591420	total: 6.4s	remaining: 21.4ms
299:	learn: 21.0040336	total: 6.42s	remaining: 0us
0:	learn: 46.7964202	total: 31.8ms	remaining: 9.51s
1:	learn: 46.6749466	total: 52.9ms	remaining: 7.88s
2:	learn: 46.5196071	total: 72.8ms	remaining: 7.2s
3:	learn: 46.3626411	total: 93.2ms	remaining: 6.89s
4:	learn: 46.1525071	total: 114ms	remaining: 6.74s
5:	learn: 45.9858740	total: 134ms	remaining: 6.59s
6:	learn: 45.8120368	total: 155ms	remaining: 6.47s
7:	learn: 45.6293425	total: 175ms	remaining: 6.38s
8:	learn: 45.4447656	total: 196ms	remaining: 6.33s
9:	learn: 45.2689788	total: 216ms	remaining: 6.25s
10:	learn: 45.0747765	total: 235ms	remaining: 6.18s
11:	learn: 44.8710435	total: 266ms	remaining: 6.39s
12:	learn: 44.7268382	total: 290ms	remaining: 6.41s
13:	learn: 44.5467591	total: 324ms	remaining: 6.61s
14:	learn: 44.3851031	total: 347ms	remaining: 6.6s
15:	learn: 44.2329591	total: 371ms	remaining: 6.58s
16:	learn: 44.0406244	total: 394ms	remaining: 6.56s
17:	learn: 43.8785108	total: 415ms	remaining: 6.5s
18:	learn: 43.7471362	total: 435ms	remaining: 6.43s
19:	learn: 43.5591007	total: 455ms	remaining: 6.37s
20:	learn: 43.4018255	total: 475ms	remaining: 6.31s
21:	learn: 43.2292233	total: 498ms	remaining: 6.3s
22:	learn: 43.0953062	total: 536ms	remaining: 6.45s
23:	learn: 42.9509025	total: 558ms	remaining: 6.42s
24:	learn: 42.8040888	total: 578ms	remaining: 6.36s
25:	learn: 42.6059536	total: 598ms	remaining: 6.3s
26:	learn: 42.4719315	total: 618ms	remaining: 6.25s
27:	learn: 42.3164463	total: 638ms	remaining: 6.2s
28:	learn: 42.1322069	total: 658ms	remaining: 6.15s
29:	learn: 41.9730185	total: 678ms	remaining: 6.1s
30:	learn: 41.8494577	total: 699ms	remaining: 6.06s
31:	learn: 41.7443412	total: 719ms	remaining: 6.02s
32:	learn: 41.6027545	total: 750ms	remaining: 6.06s
33:	learn: 41.4301743	total: 778ms	remaining: 6.09s
34:	learn: 41.2736962	total: 802ms	remaining: 6.07s
35:	learn: 41.1334085	total: 826ms	remaining: 6.06s
36:	learn: 41.0072606	total: 850ms	remaining: 6.04s
37:	learn: 40.8619217	total: 870ms	remaining: 6s
38:	learn: 40.7354459	total: 890ms	remaining: 5.96s
39:	learn: 40.6156413	total: 910ms	remaining: 5.92s
40:	learn: 40.4577265	total: 931ms	remaining: 5.88s
41:	learn: 40.3234616	total: 958ms	remaining: 5.88s
42:	learn: 40.1899266	total: 986ms	remaining: 5.89s
43:	learn: 40.0634209	total: 1.01s	remaining: 5.91s
44:	learn: 39.9305166	total: 1.03s	remaining: 5.87s
45:	learn: 39.7845871	total: 1.05s	remaining: 5.83s
46:	learn: 39.6621696	total: 1.08s	remaining: 5.79s
47:	learn: 39.5551825	total: 1.1s	remaining: 5.75s
48:	learn: 39.4351591	total: 1.12s	remaining: 5.72s
49:	learn: 39.3164633	total: 1.14s	remaining: 5.68s
50:	learn: 39.1747677	total: 1.16s	remaining: 5.66s
51:	learn: 39.1100564	total: 1.19s	remaining: 5.68s
52:	learn: 38.9606936	total: 1.22s	remaining: 5.67s
53:	learn: 38.8660863	total: 1.24s	remaining: 5.65s
54:	learn: 38.7391714	total: 1.27s	remaining: 5.67s
55:	learn: 38.6076997	total: 1.29s	remaining: 5.63s
56:	learn: 38.4980503	total: 1.31s	remaining: 5.59s
57:	learn: 38.3620320	total: 1.33s	remaining: 5.56s
58:	learn: 38.2397585	total: 1.35s	remaining: 5.52s
59:	learn: 38.1028241	total: 1.37s	remaining: 5.49s
60:	learn: 37.9510740	total: 1.4s	remaining: 5.47s
61:	learn: 37.8520252	total: 1.42s	remaining: 5.46s
62:	learn: 37.7243846	total: 1.44s	remaining: 5.43s
63:	learn: 37.6100254	total: 1.46s	remaining: 5.4s
64:	learn: 37.4967571	total: 1.48s	remaining: 5.37s
65:	learn: 37.3815739	total: 1.51s	remaining: 5.36s
66:	learn: 37.2889210	total: 1.53s	remaining: 5.33s
67:	learn: 37.1375228	total: 1.55s	remaining: 5.3s
68:	learn: 37.0348038	total: 1.57s	remaining: 5.26s
69:	learn: 36.9144977	total: 1.59s	remaining: 5.24s
70:	learn: 36.7863146	total: 1.62s	remaining: 5.22s
71:	learn: 36.6689594	total: 1.65s	remaining: 5.22s
72:	learn: 36.5577194	total: 1.67s	remaining: 5.2s
73:	learn: 36.4519888	total: 1.7s	remaining: 5.18s
74:	learn: 36.3455631	total: 1.72s	remaining: 5.16s
75:	learn: 36.2420832	total: 1.74s	remaining: 5.13s
76:	learn: 36.1067531	total: 1.77s	remaining: 5.12s
77:	learn: 35.9820199	total: 1.79s	remaining: 5.09s
78:	learn: 35.9020954	total: 1.81s	remaining: 5.06s
79:	learn: 35.8129097	total: 1.83s	remaining: 5.04s
80:	learn: 35.7004440	total: 1.86s	remaining: 5.03s
81:	learn: 35.5596927	total: 1.88s	remaining: 5s
82:	learn: 35.4487136	total: 1.9s	remaining: 4.97s
83:	learn: 35.3544578	total: 1.92s	remaining: 4.94s
84:	learn: 35.2493319	total: 1.94s	remaining: 4.92s
85:	learn: 35.1321057	total: 1.96s	remaining: 4.89s
86:	learn: 35.0336669	total: 1.98s	remaining: 4.86s
87:	learn: 34.9440442	total: 2.01s	remaining: 4.85s
88:	learn: 34.8468790	total: 2.04s	remaining: 4.84s
89:	learn: 34.7374788	total: 2.07s	remaining: 4.82s
90:	learn: 34.6760377	total: 2.09s	remaining: 4.8s
91:	learn: 34.5864691	total: 2.11s	remaining: 4.78s
92:	learn: 34.4777052	total: 2.14s	remaining: 4.76s
93:	learn: 34.3675910	total: 2.16s	remaining: 4.74s
94:	learn: 34.2620295	total: 2.18s	remaining: 4.71s
95:	learn: 34.1738876	total: 2.2s	remaining: 4.68s
96:	learn: 34.0520382	total: 2.22s	remaining: 4.65s
97:	learn: 33.9327288	total: 2.24s	remaining: 4.62s
98:	learn: 33.8784543	total: 2.27s	remaining: 4.62s
99:	learn: 33.7855568	total: 2.3s	remaining: 4.6s
100:	learn: 33.6996591	total: 2.32s	remaining: 4.57s
101:	learn: 33.6005603	total: 2.34s	remaining: 4.54s
102:	learn: 33.4838458	total: 2.36s	remaining: 4.51s
103:	learn: 33.3753606	total: 2.38s	remaining: 4.49s
104:	learn: 33.2849056	total: 2.4s	remaining: 4.46s
105:	learn: 33.1669792	total: 2.42s	remaining: 4.43s
106:	learn: 33.0841006	total: 2.44s	remaining: 4.4s
107:	learn: 33.0068992	total: 2.46s	remaining: 4.38s
108:	learn: 32.8941817	total: 2.49s	remaining: 4.36s
109:	learn: 32.7877064	total: 2.52s	remaining: 4.36s
110:	learn: 32.6570408	total: 2.55s	remaining: 4.34s
111:	learn: 32.5471534	total: 2.57s	remaining: 4.32s
112:	learn: 32.4576663	total: 2.59s	remaining: 4.29s
113:	learn: 32.3616209	total: 2.62s	remaining: 4.27s
114:	learn: 32.2873913	total: 2.64s	remaining: 4.24s
115:	learn: 32.1851076	total: 2.66s	remaining: 4.21s
116:	learn: 32.1116710	total: 2.68s	remaining: 4.19s
117:	learn: 32.0062324	total: 2.7s	remaining: 4.16s
118:	learn: 31.9056875	total: 2.73s	remaining: 4.15s
119:	learn: 31.8300075	total: 2.75s	remaining: 4.12s
120:	learn: 31.7661011	total: 2.78s	remaining: 4.11s
121:	learn: 31.6766467	total: 2.8s	remaining: 4.08s
122:	learn: 31.5882617	total: 2.82s	remaining: 4.05s
123:	learn: 31.5244840	total: 2.84s	remaining: 4.03s
124:	learn: 31.4156467	total: 2.86s	remaining: 4s
125:	learn: 31.3465983	total: 2.88s	remaining: 3.97s
126:	learn: 31.2633572	total: 2.9s	remaining: 3.95s
127:	learn: 31.1744619	total: 2.92s	remaining: 3.93s
128:	learn: 31.0809501	total: 2.96s	remaining: 3.92s
129:	learn: 31.0046918	total: 2.98s	remaining: 3.9s
130:	learn: 30.9219673	total: 3s	remaining: 3.88s
131:	learn: 30.8264194	total: 3.04s	remaining: 3.87s
132:	learn: 30.7427831	total: 3.06s	remaining: 3.84s
133:	learn: 30.6607780	total: 3.08s	remaining: 3.82s
134:	learn: 30.5904777	total: 3.1s	remaining: 3.79s
135:	learn: 30.4964054	total: 3.13s	remaining: 3.77s
136:	learn: 30.4243732	total: 3.16s	remaining: 3.75s
137:	learn: 30.3385417	total: 3.18s	remaining: 3.73s
138:	learn: 30.2929859	total: 3.2s	remaining: 3.7s
139:	learn: 30.2338712	total: 3.22s	remaining: 3.68s
140:	learn: 30.1535064	total: 3.24s	remaining: 3.65s
141:	learn: 30.0753981	total: 3.26s	remaining: 3.63s
142:	learn: 30.0084260	total: 3.29s	remaining: 3.61s
143:	learn: 29.9286569	total: 3.31s	remaining: 3.58s
144:	learn: 29.8422727	total: 3.33s	remaining: 3.56s
145:	learn: 29.7585802	total: 3.35s	remaining: 3.53s
146:	learn: 29.6822944	total: 3.38s	remaining: 3.52s
147:	learn: 29.5859529	total: 3.4s	remaining: 3.5s
148:	learn: 29.5215467	total: 3.43s	remaining: 3.47s
149:	learn: 29.4500431	total: 3.45s	remaining: 3.45s
150:	learn: 29.3932562	total: 3.47s	remaining: 3.43s
151:	learn: 29.3240790	total: 3.49s	remaining: 3.4s
152:	learn: 29.2610671	total: 3.51s	remaining: 3.37s
153:	learn: 29.1802115	total: 3.54s	remaining: 3.36s
154:	learn: 29.1136141	total: 3.57s	remaining: 3.34s
155:	learn: 29.0345869	total: 3.59s	remaining: 3.31s
156:	learn: 28.9850348	total: 3.61s	remaining: 3.29s
157:	learn: 28.8851980	total: 3.63s	remaining: 3.26s
158:	learn: 28.8395883	total: 3.65s	remaining: 3.24s
159:	learn: 28.7878426	total: 3.67s	remaining: 3.21s
160:	learn: 28.7282585	total: 3.69s	remaining: 3.19s
161:	learn: 28.6672531	total: 3.71s	remaining: 3.16s
162:	learn: 28.6136679	total: 3.73s	remaining: 3.13s
163:	learn: 28.5473854	total: 3.75s	remaining: 3.11s
164:	learn: 28.4604501	total: 3.77s	remaining: 3.08s
165:	learn: 28.3881088	total: 3.79s	remaining: 3.06s
166:	learn: 28.3336157	total: 3.82s	remaining: 3.04s
167:	learn: 28.2747062	total: 3.84s	remaining: 3.02s
168:	learn: 28.1889373	total: 3.86s	remaining: 2.99s
169:	learn: 28.1372229	total: 3.88s	remaining: 2.97s
170:	learn: 28.0741485	total: 3.9s	remaining: 2.94s
171:	learn: 28.0103769	total: 3.92s	remaining: 2.92s
172:	learn: 27.9436363	total: 3.94s	remaining: 2.9s
173:	learn: 27.8861266	total: 3.97s	remaining: 2.87s
174:	learn: 27.8248371	total: 3.99s	remaining: 2.85s
175:	learn: 27.7841392	total: 4.01s	remaining: 2.83s
176:	learn: 27.7240247	total: 4.03s	remaining: 2.8s
177:	learn: 27.6623438	total: 4.05s	remaining: 2.78s
178:	learn: 27.6125629	total: 4.07s	remaining: 2.75s
179:	learn: 27.5437302	total: 4.09s	remaining: 2.73s
180:	learn: 27.4760159	total: 4.11s	remaining: 2.7s
181:	learn: 27.4112750	total: 4.13s	remaining: 2.67s
182:	learn: 27.3525236	total: 4.14s	remaining: 2.65s
183:	learn: 27.2883901	total: 4.16s	remaining: 2.62s
184:	learn: 27.2333393	total: 4.18s	remaining: 2.6s
185:	learn: 27.1746343	total: 4.21s	remaining: 2.58s
186:	learn: 27.1199014	total: 4.24s	remaining: 2.56s
187:	learn: 27.0416060	total: 4.26s	remaining: 2.54s
188:	learn: 26.9656521	total: 4.28s	remaining: 2.51s
189:	learn: 26.9181723	total: 4.3s	remaining: 2.49s
190:	learn: 26.8564162	total: 4.32s	remaining: 2.47s
191:	learn: 26.8059857	total: 4.34s	remaining: 2.44s
192:	learn: 26.7509662	total: 4.36s	remaining: 2.42s
193:	learn: 26.7165506	total: 4.38s	remaining: 2.39s
194:	learn: 26.6484732	total: 4.4s	remaining: 2.37s
195:	learn: 26.5742624	total: 4.43s	remaining: 2.35s
196:	learn: 26.5045055	total: 4.45s	remaining: 2.33s
197:	learn: 26.4505796	total: 4.47s	remaining: 2.3s
198:	learn: 26.3862661	total: 4.49s	remaining: 2.28s
199:	learn: 26.3297138	total: 4.51s	remaining: 2.25s
200:	learn: 26.2696953	total: 4.53s	remaining: 2.23s
201:	learn: 26.1901363	total: 4.54s	remaining: 2.2s
202:	learn: 26.1305031	total: 4.56s	remaining: 2.18s
203:	learn: 26.0796788	total: 4.58s	remaining: 2.16s
204:	learn: 26.0228886	total: 4.6s	remaining: 2.13s
205:	learn: 25.9654115	total: 4.62s	remaining: 2.11s
206:	learn: 25.9201366	total: 4.65s	remaining: 2.09s
207:	learn: 25.8748210	total: 4.67s	remaining: 2.06s
208:	learn: 25.8189189	total: 4.69s	remaining: 2.04s
209:	learn: 25.7529170	total: 4.71s	remaining: 2.02s
210:	learn: 25.7000451	total: 4.74s	remaining: 2s
211:	learn: 25.6660530	total: 4.75s	remaining: 1.97s
212:	learn: 25.6001686	total: 4.77s	remaining: 1.95s
213:	learn: 25.5742396	total: 4.79s	remaining: 1.93s
214:	learn: 25.5487064	total: 4.81s	remaining: 1.9s
215:	learn: 25.4995003	total: 4.83s	remaining: 1.88s
216:	learn: 25.4597064	total: 4.86s	remaining: 1.86s
217:	learn: 25.4094124	total: 4.88s	remaining: 1.83s
218:	learn: 25.3537056	total: 4.9s	remaining: 1.81s
219:	learn: 25.3050115	total: 4.92s	remaining: 1.79s
220:	learn: 25.2493893	total: 4.94s	remaining: 1.76s
221:	learn: 25.2078913	total: 4.96s	remaining: 1.74s
222:	learn: 25.1427704	total: 4.98s	remaining: 1.72s
223:	learn: 25.0921531	total: 5s	remaining: 1.69s
224:	learn: 25.0564716	total: 5.01s	remaining: 1.67s
225:	learn: 25.0127399	total: 5.03s	remaining: 1.65s
226:	learn: 24.9498509	total: 5.05s	remaining: 1.62s
227:	learn: 24.8856642	total: 5.08s	remaining: 1.6s
228:	learn: 24.8402617	total: 5.1s	remaining: 1.58s
229:	learn: 24.7974291	total: 5.13s	remaining: 1.56s
230:	learn: 24.7466757	total: 5.15s	remaining: 1.54s
231:	learn: 24.6994959	total: 5.17s	remaining: 1.51s
232:	learn: 24.6530658	total: 5.19s	remaining: 1.49s
233:	learn: 24.6024693	total: 5.21s	remaining: 1.47s
234:	learn: 24.5532250	total: 5.23s	remaining: 1.45s
235:	learn: 24.5121346	total: 5.25s	remaining: 1.42s
236:	learn: 24.4649666	total: 5.27s	remaining: 1.4s
237:	learn: 24.4205420	total: 5.29s	remaining: 1.38s
238:	learn: 24.3721893	total: 5.32s	remaining: 1.36s
239:	learn: 24.3288875	total: 5.33s	remaining: 1.33s
240:	learn: 24.2858930	total: 5.35s	remaining: 1.31s
241:	learn: 24.2426238	total: 5.37s	remaining: 1.29s
242:	learn: 24.2022960	total: 5.39s	remaining: 1.26s
243:	learn: 24.1354051	total: 5.41s	remaining: 1.24s
244:	learn: 24.0773236	total: 5.43s	remaining: 1.22s
245:	learn: 24.0318702	total: 5.45s	remaining: 1.2s
246:	learn: 24.0008127	total: 5.47s	remaining: 1.17s
247:	learn: 23.9582968	total: 5.49s	remaining: 1.15s
248:	learn: 23.9175164	total: 5.53s	remaining: 1.13s
249:	learn: 23.8689671	total: 5.55s	remaining: 1.11s
250:	learn: 23.8295906	total: 5.57s	remaining: 1.09s
251:	learn: 23.7911866	total: 5.59s	remaining: 1.06s
252:	learn: 23.7516339	total: 5.61s	remaining: 1.04s
253:	learn: 23.7005912	total: 5.63s	remaining: 1.02s
254:	learn: 23.6697490	total: 5.65s	remaining: 997ms
255:	learn: 23.6190458	total: 5.67s	remaining: 975ms
256:	learn: 23.5602336	total: 5.69s	remaining: 953ms
257:	learn: 23.5138893	total: 5.72s	remaining: 932ms
258:	learn: 23.4696303	total: 5.74s	remaining: 909ms
259:	learn: 23.4264526	total: 5.76s	remaining: 886ms
260:	learn: 23.3701939	total: 5.78s	remaining: 863ms
261:	learn: 23.3284725	total: 5.8s	remaining: 841ms
262:	learn: 23.2913057	total: 5.81s	remaining: 818ms
263:	learn: 23.2530105	total: 5.83s	remaining: 795ms
264:	learn: 23.2040785	total: 5.85s	remaining: 773ms
265:	learn: 23.1585944	total: 5.87s	remaining: 751ms
266:	learn: 23.1196334	total: 5.89s	remaining: 728ms
267:	learn: 23.0746189	total: 5.92s	remaining: 706ms
268:	learn: 23.0474287	total: 5.94s	remaining: 685ms
269:	learn: 23.0085360	total: 5.96s	remaining: 663ms
270:	learn: 22.9578501	total: 5.99s	remaining: 641ms
271:	learn: 22.9186734	total: 6.01s	remaining: 619ms
272:	learn: 22.8754252	total: 6.03s	remaining: 597ms
273:	learn: 22.8383574	total: 6.05s	remaining: 574ms
274:	learn: 22.7915522	total: 6.07s	remaining: 552ms
275:	learn: 22.7453961	total: 6.09s	remaining: 529ms
276:	learn: 22.7069125	total: 6.1s	remaining: 507ms
277:	learn: 22.6659337	total: 6.12s	remaining: 485ms
278:	learn: 22.6294138	total: 6.14s	remaining: 462ms
279:	learn: 22.6092117	total: 6.17s	remaining: 441ms
280:	learn: 22.5574720	total: 6.19s	remaining: 419ms
281:	learn: 22.5256539	total: 6.21s	remaining: 396ms
282:	learn: 22.4696840	total: 6.23s	remaining: 374ms
283:	learn: 22.4334836	total: 6.25s	remaining: 352ms
284:	learn: 22.3942731	total: 6.26s	remaining: 330ms
285:	learn: 22.3623275	total: 6.28s	remaining: 308ms
286:	learn: 22.3367243	total: 6.3s	remaining: 285ms
287:	learn: 22.2973276	total: 6.32s	remaining: 263ms
288:	learn: 22.2549274	total: 6.34s	remaining: 241ms
289:	learn: 22.2130222	total: 6.37s	remaining: 219ms
290:	learn: 22.1766238	total: 6.39s	remaining: 198ms
291:	learn: 22.1317070	total: 6.42s	remaining: 176ms
292:	learn: 22.0826530	total: 6.44s	remaining: 154ms
293:	learn: 22.0432673	total: 6.46s	remaining: 132ms
294:	learn: 22.0034045	total: 6.48s	remaining: 110ms
295:	learn: 21.9621209	total: 6.49s	remaining: 87.8ms
296:	learn: 21.9293071	total: 6.51s	remaining: 65.8ms
297:	learn: 21.8936209	total: 6.53s	remaining: 43.8ms
298:	learn: 21.8559823	total: 6.55s	remaining: 21.9ms
299:	learn: 21.8222811	total: 6.57s	remaining: 0us
0:	learn: 47.4415069	total: 17.4ms	remaining: 5.21s
1:	learn: 47.3006845	total: 35.2ms	remaining: 5.25s
2:	learn: 47.1143281	total: 52.9ms	remaining: 5.23s
3:	learn: 46.9283740	total: 70.5ms	remaining: 5.22s
4:	learn: 46.7341954	total: 88.1ms	remaining: 5.2s
5:	learn: 46.5805151	total: 106ms	remaining: 5.19s
6:	learn: 46.4123848	total: 124ms	remaining: 5.18s
7:	learn: 46.2536787	total: 143ms	remaining: 5.2s
8:	learn: 46.0837896	total: 170ms	remaining: 5.5s
9:	learn: 45.9137595	total: 194ms	remaining: 5.62s
10:	learn: 45.7301998	total: 216ms	remaining: 5.68s
11:	learn: 45.5416840	total: 236ms	remaining: 5.66s
12:	learn: 45.4112787	total: 257ms	remaining: 5.67s
13:	learn: 45.2251336	total: 276ms	remaining: 5.63s
14:	learn: 45.0751692	total: 295ms	remaining: 5.59s
15:	learn: 44.9052947	total: 312ms	remaining: 5.54s
16:	learn: 44.7026126	total: 330ms	remaining: 5.49s
17:	learn: 44.6155081	total: 355ms	remaining: 5.56s
18:	learn: 44.4655418	total: 380ms	remaining: 5.63s
19:	learn: 44.2979483	total: 401ms	remaining: 5.61s
20:	learn: 44.1286400	total: 419ms	remaining: 5.57s
21:	learn: 43.9664148	total: 437ms	remaining: 5.52s
22:	learn: 43.8135181	total: 456ms	remaining: 5.49s
23:	learn: 43.6355559	total: 477ms	remaining: 5.48s
24:	learn: 43.4946230	total: 494ms	remaining: 5.43s
25:	learn: 43.3171994	total: 511ms	remaining: 5.39s
26:	learn: 43.1732515	total: 531ms	remaining: 5.36s
27:	learn: 43.0148739	total: 551ms	remaining: 5.35s
28:	learn: 42.8331813	total: 572ms	remaining: 5.35s
29:	learn: 42.7046557	total: 606ms	remaining: 5.46s
30:	learn: 42.5783949	total: 631ms	remaining: 5.47s
31:	learn: 42.4510038	total: 653ms	remaining: 5.46s
32:	learn: 42.3077215	total: 672ms	remaining: 5.44s
33:	learn: 42.1571143	total: 695ms	remaining: 5.43s
34:	learn: 41.9922134	total: 714ms	remaining: 5.4s
35:	learn: 41.8225864	total: 734ms	remaining: 5.38s
36:	learn: 41.6667248	total: 753ms	remaining: 5.35s
37:	learn: 41.5268861	total: 774ms	remaining: 5.33s
38:	learn: 41.3711052	total: 796ms	remaining: 5.33s
39:	learn: 41.2537279	total: 824ms	remaining: 5.35s
40:	learn: 41.0996028	total: 843ms	remaining: 5.33s
41:	learn: 40.9627503	total: 861ms	remaining: 5.29s
42:	learn: 40.7854288	total: 879ms	remaining: 5.25s
43:	learn: 40.6594779	total: 896ms	remaining: 5.21s
44:	learn: 40.5841980	total: 914ms	remaining: 5.18s
45:	learn: 40.4345303	total: 931ms	remaining: 5.14s
46:	learn: 40.3142398	total: 949ms	remaining: 5.11s
47:	learn: 40.1876415	total: 968ms	remaining: 5.08s
48:	learn: 40.1055059	total: 985ms	remaining: 5.05s
49:	learn: 40.0158836	total: 1s	remaining: 5.02s
50:	learn: 39.8907429	total: 1.03s	remaining: 5.02s
51:	learn: 39.8179547	total: 1.05s	remaining: 5.03s
52:	learn: 39.6670905	total: 1.08s	remaining: 5.02s
53:	learn: 39.5083620	total: 1.1s	remaining: 5.01s
54:	learn: 39.4005935	total: 1.12s	remaining: 5s
55:	learn: 39.3015087	total: 1.14s	remaining: 4.98s
56:	learn: 39.1874325	total: 1.17s	remaining: 4.98s
57:	learn: 39.0635291	total: 1.19s	remaining: 4.96s
58:	learn: 38.9510641	total: 1.21s	remaining: 4.93s
59:	learn: 38.7926837	total: 1.23s	remaining: 4.93s
60:	learn: 38.6657937	total: 1.26s	remaining: 4.94s
61:	learn: 38.5434418	total: 1.28s	remaining: 4.92s
62:	learn: 38.4354431	total: 1.3s	remaining: 4.89s
63:	learn: 38.3052083	total: 1.32s	remaining: 4.87s
64:	learn: 38.1568327	total: 1.34s	remaining: 4.85s
65:	learn: 38.0583217	total: 1.36s	remaining: 4.83s
66:	learn: 37.9408835	total: 1.38s	remaining: 4.81s
67:	learn: 37.7937886	total: 1.41s	remaining: 4.81s
68:	learn: 37.6688608	total: 1.43s	remaining: 4.79s
69:	learn: 37.5513140	total: 1.45s	remaining: 4.77s
70:	learn: 37.4202612	total: 1.48s	remaining: 4.79s
71:	learn: 37.2921279	total: 1.51s	remaining: 4.77s
72:	learn: 37.1772452	total: 1.53s	remaining: 4.76s
73:	learn: 37.0489596	total: 1.55s	remaining: 4.75s
74:	learn: 36.9550880	total: 1.58s	remaining: 4.74s
75:	learn: 36.8577046	total: 1.6s	remaining: 4.71s
76:	learn: 36.7231017	total: 1.62s	remaining: 4.69s
77:	learn: 36.5943125	total: 1.64s	remaining: 4.67s
78:	learn: 36.5307898	total: 1.67s	remaining: 4.68s
79:	learn: 36.4437731	total: 1.7s	remaining: 4.68s
80:	learn: 36.3490643	total: 1.72s	remaining: 4.66s
81:	learn: 36.2577345	total: 1.74s	remaining: 4.63s
82:	learn: 36.1427001	total: 1.76s	remaining: 4.61s
83:	learn: 36.0470492	total: 1.78s	remaining: 4.58s
84:	learn: 35.9311830	total: 1.8s	remaining: 4.56s
85:	learn: 35.8089285	total: 1.82s	remaining: 4.53s
86:	learn: 35.6839931	total: 1.84s	remaining: 4.51s
87:	learn: 35.5685635	total: 1.86s	remaining: 4.49s
88:	learn: 35.4589708	total: 1.89s	remaining: 4.48s
89:	learn: 35.3460701	total: 1.93s	remaining: 4.49s
90:	learn: 35.2309386	total: 1.95s	remaining: 4.48s
91:	learn: 35.1276002	total: 1.97s	remaining: 4.46s
92:	learn: 35.0010975	total: 1.99s	remaining: 4.44s
93:	learn: 34.8884542	total: 2.01s	remaining: 4.41s
94:	learn: 34.7691640	total: 2.03s	remaining: 4.39s
95:	learn: 34.6613410	total: 2.05s	remaining: 4.36s
96:	learn: 34.5362927	total: 2.07s	remaining: 4.34s
97:	learn: 34.3937090	total: 2.1s	remaining: 4.32s
98:	learn: 34.2801628	total: 2.12s	remaining: 4.31s
99:	learn: 34.2120760	total: 2.15s	remaining: 4.29s
100:	learn: 34.1115527	total: 2.17s	remaining: 4.29s
101:	learn: 34.0012057	total: 2.19s	remaining: 4.26s
102:	learn: 33.9102183	total: 2.21s	remaining: 4.24s
103:	learn: 33.8045324	total: 2.23s	remaining: 4.21s
104:	learn: 33.7166413	total: 2.26s	remaining: 4.19s
105:	learn: 33.6325957	total: 2.28s	remaining: 4.17s
106:	learn: 33.5361026	total: 2.3s	remaining: 4.15s
107:	learn: 33.4416327	total: 2.33s	remaining: 4.13s
108:	learn: 33.3573368	total: 2.35s	remaining: 4.13s
109:	learn: 33.2576884	total: 2.38s	remaining: 4.11s
110:	learn: 33.1601056	total: 2.4s	remaining: 4.09s
111:	learn: 33.0573494	total: 2.43s	remaining: 4.08s
112:	learn: 32.9654874	total: 2.45s	remaining: 4.06s
113:	learn: 32.8616446	total: 2.47s	remaining: 4.03s
114:	learn: 32.7771282	total: 2.49s	remaining: 4.01s
115:	learn: 32.6747736	total: 2.51s	remaining: 3.99s
116:	learn: 32.6120205	total: 2.54s	remaining: 3.97s
117:	learn: 32.4978307	total: 2.56s	remaining: 3.95s
118:	learn: 32.4088995	total: 2.58s	remaining: 3.93s
119:	learn: 32.3206257	total: 2.6s	remaining: 3.91s
120:	learn: 32.2589963	total: 2.62s	remaining: 3.88s
121:	learn: 32.1960869	total: 2.64s	remaining: 3.86s
122:	learn: 32.1098306	total: 2.67s	remaining: 3.84s
123:	learn: 32.0282147	total: 2.69s	remaining: 3.83s
124:	learn: 31.9607470	total: 2.71s	remaining: 3.8s
125:	learn: 31.8661652	total: 2.74s	remaining: 3.78s
126:	learn: 31.7914736	total: 2.77s	remaining: 3.77s
127:	learn: 31.7027962	total: 2.79s	remaining: 3.75s
128:	learn: 31.6202341	total: 2.81s	remaining: 3.73s
129:	learn: 31.5452903	total: 2.84s	remaining: 3.71s
130:	learn: 31.4704576	total: 2.86s	remaining: 3.69s
131:	learn: 31.3608484	total: 2.88s	remaining: 3.67s
132:	learn: 31.3006478	total: 2.9s	remaining: 3.64s
133:	learn: 31.2179039	total: 2.93s	remaining: 3.63s
134:	learn: 31.1319791	total: 2.95s	remaining: 3.61s
135:	learn: 31.0340141	total: 2.98s	remaining: 3.59s
136:	learn: 30.9625342	total: 3s	remaining: 3.57s
137:	learn: 30.8815727	total: 3.02s	remaining: 3.55s
138:	learn: 30.8073667	total: 3.04s	remaining: 3.52s
139:	learn: 30.7388985	total: 3.06s	remaining: 3.5s
140:	learn: 30.6649364	total: 3.08s	remaining: 3.48s
141:	learn: 30.5932927	total: 3.1s	remaining: 3.45s
142:	learn: 30.5299209	total: 3.12s	remaining: 3.43s
143:	learn: 30.4659211	total: 3.14s	remaining: 3.4s
144:	learn: 30.3843278	total: 3.17s	remaining: 3.39s
145:	learn: 30.3264561	total: 3.2s	remaining: 3.38s
146:	learn: 30.2415859	total: 3.23s	remaining: 3.36s
147:	learn: 30.1696673	total: 3.25s	remaining: 3.34s
148:	learn: 30.1067038	total: 3.28s	remaining: 3.32s
149:	learn: 30.0144841	total: 3.3s	remaining: 3.3s
150:	learn: 29.9387888	total: 3.32s	remaining: 3.28s
151:	learn: 29.8543684	total: 3.34s	remaining: 3.25s
152:	learn: 29.7978539	total: 3.36s	remaining: 3.23s
153:	learn: 29.7312420	total: 3.38s	remaining: 3.21s
154:	learn: 29.6687537	total: 3.41s	remaining: 3.19s
155:	learn: 29.5932530	total: 3.44s	remaining: 3.18s
156:	learn: 29.5311340	total: 3.46s	remaining: 3.15s
157:	learn: 29.4435017	total: 3.48s	remaining: 3.13s
158:	learn: 29.3597179	total: 3.5s	remaining: 3.11s
159:	learn: 29.2919794	total: 3.52s	remaining: 3.08s
160:	learn: 29.2336515	total: 3.54s	remaining: 3.06s
161:	learn: 29.1439548	total: 3.56s	remaining: 3.04s
162:	learn: 29.0756608	total: 3.58s	remaining: 3.01s
163:	learn: 28.9975108	total: 3.61s	remaining: 2.99s
164:	learn: 28.9209465	total: 3.64s	remaining: 2.98s
165:	learn: 28.8633943	total: 3.66s	remaining: 2.96s
166:	learn: 28.7934690	total: 3.69s	remaining: 2.94s
167:	learn: 28.7306650	total: 3.71s	remaining: 2.92s
168:	learn: 28.6538399	total: 3.74s	remaining: 2.9s
169:	learn: 28.5982417	total: 3.76s	remaining: 2.87s
170:	learn: 28.5398716	total: 3.78s	remaining: 2.85s
171:	learn: 28.4637418	total: 3.8s	remaining: 2.83s
172:	learn: 28.3885814	total: 3.83s	remaining: 2.81s
173:	learn: 28.3245411	total: 3.85s	remaining: 2.79s
174:	learn: 28.2525307	total: 3.87s	remaining: 2.76s
175:	learn: 28.1808651	total: 3.89s	remaining: 2.74s
176:	learn: 28.1063594	total: 3.91s	remaining: 2.72s
177:	learn: 28.0598454	total: 3.94s	remaining: 2.7s
178:	learn: 27.9983744	total: 3.96s	remaining: 2.67s
179:	learn: 27.9253668	total: 3.98s	remaining: 2.65s
180:	learn: 27.8702113	total: 4s	remaining: 2.63s
181:	learn: 27.8069673	total: 4.02s	remaining: 2.61s
182:	learn: 27.7231370	total: 4.05s	remaining: 2.59s
183:	learn: 27.6392716	total: 4.07s	remaining: 2.57s
184:	learn: 27.5898803	total: 4.1s	remaining: 2.55s
185:	learn: 27.5345183	total: 4.12s	remaining: 2.52s
186:	learn: 27.4669290	total: 4.15s	remaining: 2.5s
187:	learn: 27.4069508	total: 4.16s	remaining: 2.48s
188:	learn: 27.3568834	total: 4.18s	remaining: 2.46s
189:	learn: 27.3161596	total: 4.21s	remaining: 2.44s
190:	learn: 27.2447206	total: 4.24s	remaining: 2.42s
191:	learn: 27.1863809	total: 4.26s	remaining: 2.4s
192:	learn: 27.1247103	total: 4.28s	remaining: 2.37s
193:	learn: 27.0727644	total: 4.3s	remaining: 2.35s
194:	learn: 27.0067203	total: 4.32s	remaining: 2.33s
195:	learn: 26.9713750	total: 4.34s	remaining: 2.3s
196:	learn: 26.9176783	total: 4.36s	remaining: 2.28s
197:	learn: 26.8631029	total: 4.38s	remaining: 2.26s
198:	learn: 26.8156454	total: 4.4s	remaining: 2.23s
199:	learn: 26.7496528	total: 4.42s	remaining: 2.21s
200:	learn: 26.7022814	total: 4.44s	remaining: 2.19s
201:	learn: 26.6479222	total: 4.47s	remaining: 2.17s
202:	learn: 26.5979806	total: 4.49s	remaining: 2.15s
203:	learn: 26.5404288	total: 4.52s	remaining: 2.13s
204:	learn: 26.5004143	total: 4.54s	remaining: 2.1s
205:	learn: 26.4429579	total: 4.56s	remaining: 2.08s
206:	learn: 26.3936519	total: 4.58s	remaining: 2.06s
207:	learn: 26.3466875	total: 4.6s	remaining: 2.03s
208:	learn: 26.2681116	total: 4.61s	remaining: 2.01s
209:	learn: 26.2256433	total: 4.63s	remaining: 1.99s
210:	learn: 26.1817064	total: 4.66s	remaining: 1.96s
211:	learn: 26.1283188	total: 4.68s	remaining: 1.94s
212:	learn: 26.0778225	total: 4.7s	remaining: 1.92s
213:	learn: 26.0151209	total: 4.72s	remaining: 1.9s
214:	learn: 25.9623235	total: 4.74s	remaining: 1.87s
215:	learn: 25.9225331	total: 4.76s	remaining: 1.85s
216:	learn: 25.8678208	total: 4.78s	remaining: 1.83s
217:	learn: 25.8004181	total: 4.8s	remaining: 1.8s
218:	learn: 25.7521137	total: 4.82s	remaining: 1.78s
219:	learn: 25.7019731	total: 4.83s	remaining: 1.76s
220:	learn: 25.6325833	total: 4.85s	remaining: 1.74s
221:	learn: 25.5826479	total: 4.88s	remaining: 1.72s
222:	learn: 25.5246045	total: 4.9s	remaining: 1.69s
223:	learn: 25.4815200	total: 4.93s	remaining: 1.67s
224:	learn: 25.4307990	total: 4.95s	remaining: 1.65s
225:	learn: 25.3826516	total: 4.97s	remaining: 1.63s
226:	learn: 25.3331377	total: 4.99s	remaining: 1.6s
227:	learn: 25.2887204	total: 5.01s	remaining: 1.58s
228:	learn: 25.2514609	total: 5.03s	remaining: 1.56s
229:	learn: 25.2085007	total: 5.05s	remaining: 1.54s
230:	learn: 25.1510758	total: 5.07s	remaining: 1.51s
231:	learn: 25.0977143	total: 5.1s	remaining: 1.49s
232:	learn: 25.0341435	total: 5.12s	remaining: 1.47s
233:	learn: 25.0157596	total: 5.14s	remaining: 1.45s
234:	learn: 24.9702366	total: 5.16s	remaining: 1.43s
235:	learn: 24.9198918	total: 5.17s	remaining: 1.4s
236:	learn: 24.8557065	total: 5.18s	remaining: 1.38s
237:	learn: 24.8049297	total: 5.2s	remaining: 1.35s
238:	learn: 24.7507429	total: 5.22s	remaining: 1.33s
239:	learn: 24.7041305	total: 5.24s	remaining: 1.31s
240:	learn: 24.6598200	total: 5.26s	remaining: 1.29s
241:	learn: 24.6081448	total: 5.28s	remaining: 1.27s
242:	learn: 24.5565269	total: 5.31s	remaining: 1.24s
243:	learn: 24.5254555	total: 5.34s	remaining: 1.22s
244:	learn: 24.4825920	total: 5.36s	remaining: 1.2s
245:	learn: 24.4445284	total: 5.38s	remaining: 1.18s
246:	learn: 24.3974272	total: 5.4s	remaining: 1.16s
247:	learn: 24.3515459	total: 5.42s	remaining: 1.14s
248:	learn: 24.3126168	total: 5.44s	remaining: 1.11s
249:	learn: 24.2599353	total: 5.46s	remaining: 1.09s
250:	learn: 24.2221952	total: 5.48s	remaining: 1.07s
251:	learn: 24.1912200	total: 5.5s	remaining: 1.05s
252:	learn: 24.1595062	total: 5.52s	remaining: 1.03s
253:	learn: 24.1159500	total: 5.55s	remaining: 1s
254:	learn: 24.0596715	total: 5.56s	remaining: 982ms
255:	learn: 24.0178909	total: 5.58s	remaining: 960ms
256:	learn: 23.9692923	total: 5.6s	remaining: 937ms
257:	learn: 23.9168418	total: 5.62s	remaining: 915ms
258:	learn: 23.8732126	total: 5.64s	remaining: 893ms
259:	learn: 23.8330379	total: 5.66s	remaining: 870ms
260:	learn: 23.7870315	total: 5.68s	remaining: 848ms
261:	learn: 23.7359999	total: 5.7s	remaining: 826ms
262:	learn: 23.7051420	total: 5.72s	remaining: 804ms
263:	learn: 23.6865829	total: 5.74s	remaining: 783ms
264:	learn: 23.6356526	total: 5.76s	remaining: 762ms
265:	learn: 23.5924878	total: 5.79s	remaining: 740ms
266:	learn: 23.5542199	total: 5.81s	remaining: 718ms
267:	learn: 23.5116191	total: 5.83s	remaining: 697ms
268:	learn: 23.4731214	total: 5.86s	remaining: 675ms
269:	learn: 23.4306600	total: 5.87s	remaining: 653ms
270:	learn: 23.3911981	total: 5.89s	remaining: 631ms
271:	learn: 23.3511300	total: 5.91s	remaining: 609ms
272:	learn: 23.3135303	total: 5.93s	remaining: 587ms
273:	learn: 23.2778775	total: 5.95s	remaining: 565ms
274:	learn: 23.2340352	total: 5.98s	remaining: 544ms
275:	learn: 23.2022716	total: 6s	remaining: 522ms
276:	learn: 23.1710414	total: 6.02s	remaining: 500ms
277:	learn: 23.1464202	total: 6.04s	remaining: 478ms
278:	learn: 23.1005121	total: 6.06s	remaining: 456ms
279:	learn: 23.0702296	total: 6.08s	remaining: 434ms
280:	learn: 23.0157157	total: 6.09s	remaining: 412ms
281:	learn: 22.9744405	total: 6.11s	remaining: 390ms
282:	learn: 22.9329790	total: 6.13s	remaining: 368ms
283:	learn: 22.8878322	total: 6.15s	remaining: 347ms
284:	learn: 22.8444739	total: 6.18s	remaining: 325ms
285:	learn: 22.8029137	total: 6.21s	remaining: 304ms
286:	learn: 22.7664280	total: 6.23s	remaining: 282ms
287:	learn: 22.7348364	total: 6.25s	remaining: 261ms
288:	learn: 22.6989859	total: 6.28s	remaining: 239ms
289:	learn: 22.6749026	total: 6.3s	remaining: 217ms
290:	learn: 22.6438417	total: 6.32s	remaining: 195ms
291:	learn: 22.6116772	total: 6.34s	remaining: 174ms
292:	learn: 22.5676635	total: 6.36s	remaining: 152ms
293:	learn: 22.5194574	total: 6.38s	remaining: 130ms
294:	learn: 22.4864168	total: 6.41s	remaining: 109ms
295:	learn: 22.4379626	total: 6.43s	remaining: 86.9ms
296:	learn: 22.4077601	total: 6.45s	remaining: 65.2ms
297:	learn: 22.3694214	total: 6.47s	remaining: 43.4ms
298:	learn: 22.3277092	total: 6.49s	remaining: 21.7ms
299:	learn: 22.2927636	total: 6.51s	remaining: 0us
0:	learn: 27.9148448	total: 3.93ms	remaining: 1.18s
1:	learn: 27.8037487	total: 7.13ms	remaining: 1.06s
2:	learn: 27.7052841	total: 9.9ms	remaining: 980ms
3:	learn: 27.5994457	total: 15.8ms	remaining: 1.17s
4:	learn: 27.4920753	total: 20.4ms	remaining: 1.2s
5:	learn: 27.3906580	total: 23.6ms	remaining: 1.16s
6:	learn: 27.3021621	total: 25.8ms	remaining: 1.08s
7:	learn: 27.2057818	total: 29ms	remaining: 1.06s
8:	learn: 27.1205322	total: 31.5ms	remaining: 1.02s
9:	learn: 27.0193742	total: 33.7ms	remaining: 977ms
10:	learn: 26.9366851	total: 35.7ms	remaining: 938ms
11:	learn: 26.8556575	total: 37.8ms	remaining: 907ms
12:	learn: 26.7596587	total: 39.8ms	remaining: 880ms
13:	learn: 26.6595476	total: 42ms	remaining: 858ms
14:	learn: 26.5674144	total: 44ms	remaining: 836ms
15:	learn: 26.4619992	total: 45.9ms	remaining: 815ms
16:	learn: 26.3555750	total: 48.1ms	remaining: 802ms
17:	learn: 26.2764265	total: 50.8ms	remaining: 796ms
18:	learn: 26.2123887	total: 53.1ms	remaining: 785ms
19:	learn: 26.1384755	total: 55.3ms	remaining: 774ms
20:	learn: 26.0588208	total: 57.4ms	remaining: 763ms
21:	learn: 25.9585477	total: 59.4ms	remaining: 751ms
22:	learn: 25.8854778	total: 61.4ms	remaining: 739ms
23:	learn: 25.7956596	total: 63.5ms	remaining: 731ms
24:	learn: 25.7357543	total: 66.1ms	remaining: 727ms
25:	learn: 25.6525283	total: 68.3ms	remaining: 719ms
26:	learn: 25.5906325	total: 70.4ms	remaining: 712ms
27:	learn: 25.5256184	total: 72.3ms	remaining: 702ms
28:	learn: 25.4371061	total: 74.1ms	remaining: 693ms
29:	learn: 25.3782269	total: 76ms	remaining: 684ms
30:	learn: 25.3001612	total: 77.9ms	remaining: 676ms
31:	learn: 25.2260428	total: 80.1ms	remaining: 671ms
32:	learn: 25.1520886	total: 82.3ms	remaining: 666ms
33:	learn: 25.0748337	total: 84.5ms	remaining: 661ms
34:	learn: 25.0038027	total: 87.1ms	remaining: 660ms
35:	learn: 24.9302651	total: 89.1ms	remaining: 653ms
36:	learn: 24.8691019	total: 90.9ms	remaining: 646ms
37:	learn: 24.7940781	total: 92.6ms	remaining: 638ms
38:	learn: 24.7284465	total: 94.2ms	remaining: 631ms
39:	learn: 24.6502080	total: 95.8ms	remaining: 623ms
40:	learn: 24.5818237	total: 97.4ms	remaining: 615ms
41:	learn: 24.5159503	total: 99.1ms	remaining: 609ms
42:	learn: 24.4395350	total: 101ms	remaining: 601ms
43:	learn: 24.3702409	total: 102ms	remaining: 594ms
44:	learn: 24.3115874	total: 104ms	remaining: 589ms
45:	learn: 24.2318694	total: 106ms	remaining: 583ms
46:	learn: 24.1579242	total: 107ms	remaining: 577ms
47:	learn: 24.0944914	total: 109ms	remaining: 572ms
48:	learn: 24.0284558	total: 111ms	remaining: 567ms
49:	learn: 23.9729611	total: 112ms	remaining: 562ms
50:	learn: 23.8999705	total: 114ms	remaining: 557ms
51:	learn: 23.8352480	total: 116ms	remaining: 553ms
52:	learn: 23.7700012	total: 117ms	remaining: 547ms
53:	learn: 23.6825861	total: 119ms	remaining: 543ms
54:	learn: 23.6212377	total: 121ms	remaining: 538ms
55:	learn: 23.5620814	total: 122ms	remaining: 533ms
56:	learn: 23.4998382	total: 124ms	remaining: 529ms
57:	learn: 23.4268260	total: 126ms	remaining: 525ms
58:	learn: 23.3607639	total: 127ms	remaining: 520ms
59:	learn: 23.2963400	total: 129ms	remaining: 516ms
60:	learn: 23.2262192	total: 131ms	remaining: 511ms
61:	learn: 23.1689529	total: 132ms	remaining: 507ms
62:	learn: 23.1202113	total: 134ms	remaining: 503ms
63:	learn: 23.0700602	total: 136ms	remaining: 500ms
64:	learn: 22.9980281	total: 137ms	remaining: 496ms
65:	learn: 22.9432112	total: 139ms	remaining: 493ms
66:	learn: 22.8796270	total: 141ms	remaining: 489ms
67:	learn: 22.8130349	total: 142ms	remaining: 485ms
68:	learn: 22.7588239	total: 144ms	remaining: 482ms
69:	learn: 22.6892976	total: 146ms	remaining: 479ms
70:	learn: 22.6222284	total: 148ms	remaining: 476ms
71:	learn: 22.5708025	total: 149ms	remaining: 472ms
72:	learn: 22.5011205	total: 151ms	remaining: 469ms
73:	learn: 22.4445191	total: 152ms	remaining: 465ms
74:	learn: 22.3970874	total: 154ms	remaining: 463ms
75:	learn: 22.3237481	total: 156ms	remaining: 460ms
76:	learn: 22.2755124	total: 158ms	remaining: 457ms
77:	learn: 22.2257866	total: 160ms	remaining: 455ms
78:	learn: 22.1690030	total: 161ms	remaining: 452ms
79:	learn: 22.1257335	total: 163ms	remaining: 448ms
80:	learn: 22.0843040	total: 165ms	remaining: 445ms
81:	learn: 22.0264962	total: 166ms	remaining: 442ms
82:	learn: 21.9530162	total: 168ms	remaining: 439ms
83:	learn: 21.9136844	total: 169ms	remaining: 436ms
84:	learn: 21.8670691	total: 171ms	remaining: 433ms
85:	learn: 21.8242121	total: 173ms	remaining: 430ms
86:	learn: 21.7617821	total: 175ms	remaining: 427ms
87:	learn: 21.7074909	total: 176ms	remaining: 425ms
88:	learn: 21.6412238	total: 178ms	remaining: 422ms
89:	learn: 21.6009761	total: 180ms	remaining: 419ms
90:	learn: 21.5512422	total: 181ms	remaining: 416ms
91:	learn: 21.5085034	total: 183ms	remaining: 414ms
92:	learn: 21.4443896	total: 185ms	remaining: 411ms
93:	learn: 21.4033228	total: 186ms	remaining: 408ms
94:	learn: 21.3642714	total: 188ms	remaining: 405ms
95:	learn: 21.3084023	total: 189ms	remaining: 403ms
96:	learn: 21.2675512	total: 191ms	remaining: 400ms
97:	learn: 21.2173673	total: 193ms	remaining: 398ms
98:	learn: 21.1548629	total: 195ms	remaining: 395ms
99:	learn: 21.0949896	total: 196ms	remaining: 392ms
100:	learn: 21.0497074	total: 198ms	remaining: 390ms
101:	learn: 21.0133789	total: 200ms	remaining: 387ms
102:	learn: 20.9733157	total: 201ms	remaining: 385ms
103:	learn: 20.9334140	total: 203ms	remaining: 382ms
104:	learn: 20.8869217	total: 205ms	remaining: 380ms
105:	learn: 20.8412477	total: 206ms	remaining: 378ms
106:	learn: 20.8149504	total: 208ms	remaining: 375ms
107:	learn: 20.7739707	total: 210ms	remaining: 373ms
108:	learn: 20.7336249	total: 211ms	remaining: 370ms
109:	learn: 20.6685917	total: 213ms	remaining: 368ms
110:	learn: 20.6271526	total: 215ms	remaining: 366ms
111:	learn: 20.5991256	total: 217ms	remaining: 364ms
112:	learn: 20.5406110	total: 219ms	remaining: 362ms
113:	learn: 20.5007652	total: 221ms	remaining: 360ms
114:	learn: 20.4679714	total: 223ms	remaining: 358ms
115:	learn: 20.4402808	total: 226ms	remaining: 358ms
116:	learn: 20.4045078	total: 229ms	remaining: 358ms
117:	learn: 20.3648613	total: 231ms	remaining: 356ms
118:	learn: 20.3174889	total: 233ms	remaining: 355ms
119:	learn: 20.2760469	total: 236ms	remaining: 354ms
120:	learn: 20.2444904	total: 238ms	remaining: 352ms
121:	learn: 20.2090993	total: 241ms	remaining: 351ms
122:	learn: 20.1680335	total: 243ms	remaining: 350ms
123:	learn: 20.1206031	total: 246ms	remaining: 349ms
124:	learn: 20.0838991	total: 248ms	remaining: 347ms
125:	learn: 20.0456339	total: 250ms	remaining: 346ms
126:	learn: 20.0035448	total: 252ms	remaining: 344ms
127:	learn: 19.9706017	total: 255ms	remaining: 342ms
128:	learn: 19.9326995	total: 257ms	remaining: 341ms
129:	learn: 19.8937387	total: 260ms	remaining: 339ms
130:	learn: 19.8585244	total: 262ms	remaining: 337ms
131:	learn: 19.8350273	total: 263ms	remaining: 335ms
132:	learn: 19.7967602	total: 265ms	remaining: 333ms
133:	learn: 19.7603498	total: 266ms	remaining: 330ms
134:	learn: 19.7207945	total: 268ms	remaining: 327ms
135:	learn: 19.6893841	total: 270ms	remaining: 325ms
136:	learn: 19.6512738	total: 271ms	remaining: 323ms
137:	learn: 19.6190445	total: 273ms	remaining: 320ms
138:	learn: 19.5902509	total: 275ms	remaining: 318ms
139:	learn: 19.5617651	total: 276ms	remaining: 316ms
140:	learn: 19.5223309	total: 278ms	remaining: 314ms
141:	learn: 19.4867845	total: 280ms	remaining: 311ms
142:	learn: 19.4508314	total: 281ms	remaining: 309ms
143:	learn: 19.4047457	total: 283ms	remaining: 307ms
144:	learn: 19.3742884	total: 285ms	remaining: 304ms
145:	learn: 19.3395800	total: 286ms	remaining: 302ms
146:	learn: 19.2992404	total: 288ms	remaining: 300ms
147:	learn: 19.2630001	total: 290ms	remaining: 297ms
148:	learn: 19.2321058	total: 291ms	remaining: 295ms
149:	learn: 19.1982160	total: 293ms	remaining: 293ms
150:	learn: 19.1590344	total: 295ms	remaining: 291ms
151:	learn: 19.1267211	total: 296ms	remaining: 289ms
152:	learn: 19.0932172	total: 298ms	remaining: 286ms
153:	learn: 19.0607909	total: 300ms	remaining: 284ms
154:	learn: 19.0390738	total: 301ms	remaining: 282ms
155:	learn: 19.0183348	total: 303ms	remaining: 280ms
156:	learn: 18.9863123	total: 305ms	remaining: 278ms
157:	learn: 18.9627921	total: 307ms	remaining: 275ms
158:	learn: 18.9385273	total: 308ms	remaining: 273ms
159:	learn: 18.8890145	total: 310ms	remaining: 271ms
160:	learn: 18.8535700	total: 311ms	remaining: 269ms
161:	learn: 18.8113472	total: 313ms	remaining: 267ms
162:	learn: 18.7797731	total: 315ms	remaining: 265ms
163:	learn: 18.7483927	total: 316ms	remaining: 262ms
164:	learn: 18.7265200	total: 318ms	remaining: 260ms
165:	learn: 18.6963512	total: 319ms	remaining: 258ms
166:	learn: 18.6704611	total: 321ms	remaining: 256ms
167:	learn: 18.6426824	total: 323ms	remaining: 254ms
168:	learn: 18.6114258	total: 325ms	remaining: 252ms
169:	learn: 18.5875648	total: 326ms	remaining: 249ms
170:	learn: 18.5565724	total: 328ms	remaining: 247ms
171:	learn: 18.5321733	total: 329ms	remaining: 245ms
172:	learn: 18.5065436	total: 331ms	remaining: 243ms
173:	learn: 18.4703202	total: 333ms	remaining: 241ms
174:	learn: 18.4429591	total: 334ms	remaining: 239ms
175:	learn: 18.4205904	total: 336ms	remaining: 237ms
176:	learn: 18.3930588	total: 338ms	remaining: 235ms
177:	learn: 18.3535393	total: 340ms	remaining: 233ms
178:	learn: 18.3268092	total: 341ms	remaining: 231ms
179:	learn: 18.2912247	total: 343ms	remaining: 229ms
180:	learn: 18.2679233	total: 345ms	remaining: 227ms
181:	learn: 18.2336715	total: 346ms	remaining: 225ms
182:	learn: 18.1997058	total: 348ms	remaining: 222ms
183:	learn: 18.1740819	total: 350ms	remaining: 220ms
184:	learn: 18.1571511	total: 351ms	remaining: 218ms
185:	learn: 18.1331425	total: 353ms	remaining: 216ms
186:	learn: 18.1193147	total: 355ms	remaining: 214ms
187:	learn: 18.0979116	total: 356ms	remaining: 212ms
188:	learn: 18.0742865	total: 358ms	remaining: 210ms
189:	learn: 18.0350932	total: 359ms	remaining: 208ms
190:	learn: 18.0127887	total: 361ms	remaining: 206ms
191:	learn: 17.9800159	total: 363ms	remaining: 204ms
192:	learn: 17.9545396	total: 365ms	remaining: 202ms
193:	learn: 17.9311158	total: 367ms	remaining: 200ms
194:	learn: 17.9137592	total: 368ms	remaining: 198ms
195:	learn: 17.8840559	total: 370ms	remaining: 196ms
196:	learn: 17.8712014	total: 372ms	remaining: 194ms
197:	learn: 17.8545247	total: 373ms	remaining: 192ms
198:	learn: 17.8304404	total: 375ms	remaining: 190ms
199:	learn: 17.8018991	total: 376ms	remaining: 188ms
200:	learn: 17.7777558	total: 378ms	remaining: 186ms
201:	learn: 17.7595468	total: 379ms	remaining: 184ms
202:	learn: 17.7384285	total: 381ms	remaining: 182ms
203:	learn: 17.7154647	total: 383ms	remaining: 180ms
204:	learn: 17.7028657	total: 384ms	remaining: 178ms
205:	learn: 17.6875963	total: 386ms	remaining: 176ms
206:	learn: 17.6672419	total: 387ms	remaining: 174ms
207:	learn: 17.6439359	total: 389ms	remaining: 172ms
208:	learn: 17.6294814	total: 391ms	remaining: 170ms
209:	learn: 17.6143587	total: 392ms	remaining: 168ms
210:	learn: 17.5905537	total: 394ms	remaining: 166ms
211:	learn: 17.5726640	total: 396ms	remaining: 164ms
212:	learn: 17.5485581	total: 398ms	remaining: 162ms
213:	learn: 17.5291658	total: 399ms	remaining: 161ms
214:	learn: 17.5089175	total: 401ms	remaining: 159ms
215:	learn: 17.4926425	total: 403ms	remaining: 157ms
216:	learn: 17.4554911	total: 404ms	remaining: 155ms
217:	learn: 17.4432149	total: 406ms	remaining: 153ms
218:	learn: 17.4279081	total: 408ms	remaining: 151ms
219:	learn: 17.4116601	total: 409ms	remaining: 149ms
220:	learn: 17.3940568	total: 411ms	remaining: 147ms
221:	learn: 17.3744347	total: 413ms	remaining: 145ms
222:	learn: 17.3580401	total: 415ms	remaining: 143ms
223:	learn: 17.3351731	total: 416ms	remaining: 141ms
224:	learn: 17.2990428	total: 418ms	remaining: 139ms
225:	learn: 17.2795161	total: 420ms	remaining: 138ms
226:	learn: 17.2507461	total: 422ms	remaining: 136ms
227:	learn: 17.2364999	total: 424ms	remaining: 134ms
228:	learn: 17.2184558	total: 425ms	remaining: 132ms
229:	learn: 17.1898079	total: 427ms	remaining: 130ms
230:	learn: 17.1752556	total: 429ms	remaining: 128ms
231:	learn: 17.1487783	total: 431ms	remaining: 126ms
232:	learn: 17.1299738	total: 433ms	remaining: 124ms
233:	learn: 17.1071277	total: 435ms	remaining: 123ms
234:	learn: 17.0866361	total: 439ms	remaining: 121ms
235:	learn: 17.0621531	total: 441ms	remaining: 120ms
236:	learn: 17.0434858	total: 444ms	remaining: 118ms
237:	learn: 17.0264782	total: 448ms	remaining: 117ms
238:	learn: 17.0079568	total: 452ms	remaining: 115ms
239:	learn: 16.9905451	total: 456ms	remaining: 114ms
240:	learn: 16.9693836	total: 458ms	remaining: 112ms
241:	learn: 16.9485803	total: 461ms	remaining: 111ms
242:	learn: 16.9356484	total: 464ms	remaining: 109ms
243:	learn: 16.9193434	total: 467ms	remaining: 107ms
244:	learn: 16.9056538	total: 469ms	remaining: 105ms
245:	learn: 16.8895278	total: 471ms	remaining: 103ms
246:	learn: 16.8672735	total: 473ms	remaining: 102ms
247:	learn: 16.8511081	total: 475ms	remaining: 99.6ms
248:	learn: 16.8335735	total: 477ms	remaining: 97.7ms
249:	learn: 16.8138578	total: 479ms	remaining: 95.8ms
250:	learn: 16.7942630	total: 481ms	remaining: 94ms
251:	learn: 16.7800486	total: 484ms	remaining: 92.1ms
252:	learn: 16.7646840	total: 486ms	remaining: 90.2ms
253:	learn: 16.7497990	total: 488ms	remaining: 88.4ms
254:	learn: 16.7305480	total: 490ms	remaining: 86.5ms
255:	learn: 16.7124703	total: 492ms	remaining: 84.6ms
256:	learn: 16.6904184	total: 494ms	remaining: 82.7ms
257:	learn: 16.6778138	total: 496ms	remaining: 80.8ms
258:	learn: 16.6564852	total: 498ms	remaining: 78.8ms
259:	learn: 16.6327917	total: 500ms	remaining: 76.9ms
260:	learn: 16.6149088	total: 503ms	remaining: 75.1ms
261:	learn: 16.5958184	total: 504ms	remaining: 73.2ms
262:	learn: 16.5749444	total: 506ms	remaining: 71.2ms
263:	learn: 16.5588703	total: 508ms	remaining: 69.3ms
264:	learn: 16.5432254	total: 510ms	remaining: 67.4ms
265:	learn: 16.5220338	total: 512ms	remaining: 65.4ms
266:	learn: 16.5088779	total: 514ms	remaining: 63.5ms
267:	learn: 16.4857478	total: 516ms	remaining: 61.7ms
268:	learn: 16.4625567	total: 518ms	remaining: 59.8ms
269:	learn: 16.4487979	total: 520ms	remaining: 57.8ms
270:	learn: 16.4300493	total: 522ms	remaining: 55.9ms
271:	learn: 16.4159997	total: 524ms	remaining: 53.9ms
272:	learn: 16.3951340	total: 525ms	remaining: 52ms
273:	learn: 16.3849098	total: 527ms	remaining: 50ms
274:	learn: 16.3669559	total: 529ms	remaining: 48.1ms
275:	learn: 16.3487790	total: 530ms	remaining: 46.1ms
276:	learn: 16.3325273	total: 532ms	remaining: 44.2ms
277:	learn: 16.3220555	total: 534ms	remaining: 42.3ms
278:	learn: 16.3082882	total: 536ms	remaining: 40.3ms
279:	learn: 16.2770444	total: 537ms	remaining: 38.4ms
280:	learn: 16.2644216	total: 539ms	remaining: 36.4ms
281:	learn: 16.2446284	total: 541ms	remaining: 34.5ms
282:	learn: 16.2314095	total: 542ms	remaining: 32.6ms
283:	learn: 16.2185936	total: 544ms	remaining: 30.6ms
284:	learn: 16.1867847	total: 546ms	remaining: 28.7ms
285:	learn: 16.1730405	total: 547ms	remaining: 26.8ms
286:	learn: 16.1582470	total: 549ms	remaining: 24.9ms
287:	learn: 16.1465180	total: 551ms	remaining: 23ms
288:	learn: 16.1232814	total: 553ms	remaining: 21.1ms
289:	learn: 16.1057511	total: 555ms	remaining: 19.1ms
290:	learn: 16.0922240	total: 557ms	remaining: 17.2ms
291:	learn: 16.0756867	total: 559ms	remaining: 15.3ms
292:	learn: 16.0622282	total: 561ms	remaining: 13.4ms
293:	learn: 16.0380896	total: 563ms	remaining: 11.5ms
294:	learn: 16.0231222	total: 565ms	remaining: 9.57ms
295:	learn: 16.0010109	total: 567ms	remaining: 7.66ms
296:	learn: 15.9875905	total: 568ms	remaining: 5.74ms
297:	learn: 15.9710299	total: 570ms	remaining: 3.83ms
298:	learn: 15.9534931	total: 572ms	remaining: 1.91ms
299:	learn: 15.9230931	total: 574ms	remaining: 0us
0:	learn: 43.7575876	total: 2.06ms	remaining: 616ms
1:	learn: 43.5134096	total: 3.81ms	remaining: 568ms
2:	learn: 43.2785588	total: 5.52ms	remaining: 546ms
3:	learn: 43.0463550	total: 7.25ms	remaining: 536ms
4:	learn: 42.8334081	total: 9.07ms	remaining: 535ms
5:	learn: 42.5904727	total: 11.1ms	remaining: 542ms
6:	learn: 42.3571524	total: 12.8ms	remaining: 536ms
7:	learn: 42.1749119	total: 14.6ms	remaining: 533ms
8:	learn: 41.9898328	total: 16.2ms	remaining: 525ms
9:	learn: 41.8533900	total: 17.9ms	remaining: 519ms
10:	learn: 41.6724928	total: 19.8ms	remaining: 520ms
11:	learn: 41.4676698	total: 24ms	remaining: 576ms
12:	learn: 41.2725091	total: 26.5ms	remaining: 586ms
13:	learn: 41.0699948	total: 30.1ms	remaining: 615ms
14:	learn: 40.9202286	total: 33ms	remaining: 627ms
15:	learn: 40.7633654	total: 35.4ms	remaining: 629ms
16:	learn: 40.5456645	total: 37.8ms	remaining: 630ms
17:	learn: 40.3245359	total: 39.9ms	remaining: 625ms
18:	learn: 40.0994348	total: 42ms	remaining: 622ms
19:	learn: 39.8961897	total: 44ms	remaining: 615ms
20:	learn: 39.6903354	total: 46.3ms	remaining: 616ms
21:	learn: 39.4768111	total: 48.5ms	remaining: 613ms
22:	learn: 39.2944760	total: 50.4ms	remaining: 606ms
23:	learn: 39.1047688	total: 52ms	remaining: 598ms
24:	learn: 38.8957558	total: 53.6ms	remaining: 590ms
25:	learn: 38.6911849	total: 55.3ms	remaining: 583ms
26:	learn: 38.5320837	total: 57ms	remaining: 576ms
27:	learn: 38.3739340	total: 58.6ms	remaining: 569ms
28:	learn: 38.1796534	total: 60.2ms	remaining: 563ms
29:	learn: 38.0486447	total: 62ms	remaining: 558ms
30:	learn: 37.8603529	total: 63.5ms	remaining: 551ms
31:	learn: 37.6748164	total: 65.2ms	remaining: 546ms
32:	learn: 37.5082112	total: 67ms	remaining: 542ms
33:	learn: 37.3602142	total: 68.8ms	remaining: 538ms
34:	learn: 37.2052221	total: 70.5ms	remaining: 534ms
35:	learn: 37.0279715	total: 72.2ms	remaining: 530ms
36:	learn: 36.8700999	total: 73.8ms	remaining: 525ms
37:	learn: 36.7354033	total: 75.4ms	remaining: 520ms
38:	learn: 36.5577641	total: 77.1ms	remaining: 516ms
39:	learn: 36.4107686	total: 78.8ms	remaining: 512ms
40:	learn: 36.2321077	total: 80.4ms	remaining: 508ms
41:	learn: 36.0535478	total: 82ms	remaining: 503ms
42:	learn: 35.8986058	total: 83.6ms	remaining: 500ms
43:	learn: 35.7402538	total: 85.2ms	remaining: 496ms
44:	learn: 35.5790464	total: 86.8ms	remaining: 492ms
45:	learn: 35.4329739	total: 88.3ms	remaining: 487ms
46:	learn: 35.2637207	total: 89.8ms	remaining: 483ms
47:	learn: 35.1068609	total: 91.5ms	remaining: 480ms
48:	learn: 34.9568563	total: 93.2ms	remaining: 477ms
49:	learn: 34.7860868	total: 94.9ms	remaining: 474ms
50:	learn: 34.6571321	total: 96.6ms	remaining: 472ms
51:	learn: 34.5010896	total: 98.4ms	remaining: 469ms
52:	learn: 34.3301006	total: 100ms	remaining: 466ms
53:	learn: 34.1706503	total: 102ms	remaining: 464ms
54:	learn: 34.0189672	total: 104ms	remaining: 461ms
55:	learn: 33.8795160	total: 105ms	remaining: 459ms
56:	learn: 33.7201699	total: 107ms	remaining: 456ms
57:	learn: 33.5908818	total: 108ms	remaining: 452ms
58:	learn: 33.4281354	total: 110ms	remaining: 449ms
59:	learn: 33.2802583	total: 112ms	remaining: 447ms
60:	learn: 33.1503858	total: 113ms	remaining: 444ms
61:	learn: 33.0029837	total: 115ms	remaining: 442ms
62:	learn: 32.8452927	total: 117ms	remaining: 439ms
63:	learn: 32.7306684	total: 118ms	remaining: 436ms
64:	learn: 32.5835573	total: 120ms	remaining: 434ms
65:	learn: 32.4795881	total: 122ms	remaining: 431ms
66:	learn: 32.3832369	total: 123ms	remaining: 429ms
67:	learn: 32.2305487	total: 125ms	remaining: 427ms
68:	learn: 32.1233767	total: 127ms	remaining: 424ms
69:	learn: 32.0080961	total: 128ms	remaining: 422ms
70:	learn: 31.8763181	total: 130ms	remaining: 420ms
71:	learn: 31.7382525	total: 132ms	remaining: 417ms
72:	learn: 31.6042870	total: 133ms	remaining: 415ms
73:	learn: 31.4842962	total: 135ms	remaining: 411ms
74:	learn: 31.3392952	total: 136ms	remaining: 408ms
75:	learn: 31.2543362	total: 138ms	remaining: 406ms
76:	learn: 31.1295749	total: 140ms	remaining: 404ms
77:	learn: 31.0407947	total: 141ms	remaining: 402ms
78:	learn: 30.9588823	total: 143ms	remaining: 400ms
79:	learn: 30.8511098	total: 144ms	remaining: 397ms
80:	learn: 30.7130527	total: 146ms	remaining: 395ms
81:	learn: 30.6182902	total: 148ms	remaining: 393ms
82:	learn: 30.4843259	total: 149ms	remaining: 391ms
83:	learn: 30.4286927	total: 151ms	remaining: 388ms
84:	learn: 30.2980661	total: 153ms	remaining: 386ms
85:	learn: 30.1944029	total: 154ms	remaining: 384ms
86:	learn: 30.1080526	total: 156ms	remaining: 381ms
87:	learn: 29.9843743	total: 157ms	remaining: 379ms
88:	learn: 29.8739347	total: 159ms	remaining: 377ms
89:	learn: 29.7598241	total: 161ms	remaining: 375ms
90:	learn: 29.6331623	total: 162ms	remaining: 373ms
91:	learn: 29.5287663	total: 164ms	remaining: 371ms
92:	learn: 29.4049676	total: 166ms	remaining: 368ms
93:	learn: 29.2844799	total: 167ms	remaining: 366ms
94:	learn: 29.1827539	total: 169ms	remaining: 364ms
95:	learn: 29.0736286	total: 171ms	remaining: 363ms
96:	learn: 29.0046370	total: 173ms	remaining: 361ms
97:	learn: 28.9146898	total: 174ms	remaining: 359ms
98:	learn: 28.7914282	total: 176ms	remaining: 358ms
99:	learn: 28.6949251	total: 178ms	remaining: 355ms
100:	learn: 28.5998734	total: 179ms	remaining: 353ms
101:	learn: 28.4828633	total: 181ms	remaining: 352ms
102:	learn: 28.4087453	total: 183ms	remaining: 349ms
103:	learn: 28.2927847	total: 184ms	remaining: 347ms
104:	learn: 28.1931016	total: 186ms	remaining: 345ms
105:	learn: 28.0813164	total: 187ms	remaining: 343ms
106:	learn: 27.9937825	total: 189ms	remaining: 341ms
107:	learn: 27.9262766	total: 191ms	remaining: 339ms
108:	learn: 27.8224593	total: 192ms	remaining: 337ms
109:	learn: 27.7522855	total: 194ms	remaining: 335ms
110:	learn: 27.6435730	total: 196ms	remaining: 333ms
111:	learn: 27.5601203	total: 197ms	remaining: 331ms
112:	learn: 27.4914824	total: 199ms	remaining: 329ms
113:	learn: 27.3904881	total: 201ms	remaining: 327ms
114:	learn: 27.3274566	total: 202ms	remaining: 325ms
115:	learn: 27.2438856	total: 204ms	remaining: 323ms
116:	learn: 27.1667351	total: 206ms	remaining: 322ms
117:	learn: 27.1040332	total: 208ms	remaining: 320ms
118:	learn: 27.0200098	total: 209ms	remaining: 318ms
119:	learn: 26.9717243	total: 211ms	remaining: 316ms
120:	learn: 26.8745053	total: 212ms	remaining: 314ms
121:	learn: 26.7983468	total: 214ms	remaining: 313ms
122:	learn: 26.6985387	total: 216ms	remaining: 311ms
123:	learn: 26.6272569	total: 217ms	remaining: 308ms
124:	learn: 26.5579901	total: 219ms	remaining: 307ms
125:	learn: 26.4765313	total: 221ms	remaining: 305ms
126:	learn: 26.3917096	total: 223ms	remaining: 304ms
127:	learn: 26.3078220	total: 225ms	remaining: 302ms
128:	learn: 26.2144184	total: 226ms	remaining: 300ms
129:	learn: 26.1448672	total: 228ms	remaining: 298ms
130:	learn: 26.0811038	total: 230ms	remaining: 296ms
131:	learn: 25.9957338	total: 232ms	remaining: 295ms
132:	learn: 25.9190804	total: 234ms	remaining: 293ms
133:	learn: 25.8353581	total: 235ms	remaining: 292ms
134:	learn: 25.7681916	total: 237ms	remaining: 290ms
135:	learn: 25.7035489	total: 239ms	remaining: 288ms
136:	learn: 25.6181994	total: 241ms	remaining: 286ms
137:	learn: 25.5585347	total: 242ms	remaining: 285ms
138:	learn: 25.4796217	total: 244ms	remaining: 283ms
139:	learn: 25.4112658	total: 248ms	remaining: 284ms
140:	learn: 25.3426994	total: 251ms	remaining: 283ms
141:	learn: 25.2932025	total: 254ms	remaining: 283ms
142:	learn: 25.2221992	total: 258ms	remaining: 283ms
143:	learn: 25.1442718	total: 261ms	remaining: 283ms
144:	learn: 25.0777233	total: 265ms	remaining: 284ms
145:	learn: 25.0034190	total: 268ms	remaining: 282ms
146:	learn: 24.9475252	total: 270ms	remaining: 281ms
147:	learn: 24.8839373	total: 273ms	remaining: 281ms
148:	learn: 24.8003714	total: 276ms	remaining: 280ms
149:	learn: 24.7333728	total: 278ms	remaining: 278ms
150:	learn: 24.6852508	total: 280ms	remaining: 277ms
151:	learn: 24.6067923	total: 282ms	remaining: 275ms
152:	learn: 24.5528451	total: 297ms	remaining: 286ms
153:	learn: 24.4738283	total: 300ms	remaining: 284ms
154:	learn: 24.4076351	total: 302ms	remaining: 282ms
155:	learn: 24.3421678	total: 304ms	remaining: 280ms
156:	learn: 24.2868949	total: 306ms	remaining: 279ms
157:	learn: 24.2142503	total: 308ms	remaining: 277ms
158:	learn: 24.1398416	total: 310ms	remaining: 275ms
159:	learn: 24.0953829	total: 312ms	remaining: 273ms
160:	learn: 24.0452303	total: 314ms	remaining: 271ms
161:	learn: 23.9846295	total: 316ms	remaining: 269ms
162:	learn: 23.9143182	total: 318ms	remaining: 267ms
163:	learn: 23.8369675	total: 320ms	remaining: 266ms
164:	learn: 23.7861047	total: 322ms	remaining: 264ms
165:	learn: 23.7293821	total: 325ms	remaining: 262ms
166:	learn: 23.6582751	total: 326ms	remaining: 260ms
167:	learn: 23.6246286	total: 328ms	remaining: 258ms
168:	learn: 23.5894992	total: 330ms	remaining: 256ms
169:	learn: 23.5242734	total: 331ms	remaining: 253ms
170:	learn: 23.4558331	total: 333ms	remaining: 251ms
171:	learn: 23.4010813	total: 335ms	remaining: 249ms
172:	learn: 23.3576373	total: 337ms	remaining: 247ms
173:	learn: 23.3192371	total: 338ms	remaining: 245ms
174:	learn: 23.2628426	total: 340ms	remaining: 243ms
175:	learn: 23.2124954	total: 342ms	remaining: 241ms
176:	learn: 23.1681637	total: 343ms	remaining: 239ms
177:	learn: 23.0947174	total: 345ms	remaining: 236ms
178:	learn: 23.0549384	total: 347ms	remaining: 234ms
179:	learn: 22.9884826	total: 348ms	remaining: 232ms
180:	learn: 22.9453412	total: 350ms	remaining: 230ms
181:	learn: 22.8828124	total: 352ms	remaining: 228ms
182:	learn: 22.8137342	total: 353ms	remaining: 226ms
183:	learn: 22.7811168	total: 355ms	remaining: 224ms
184:	learn: 22.7339158	total: 357ms	remaining: 222ms
185:	learn: 22.6842018	total: 358ms	remaining: 219ms
186:	learn: 22.6368689	total: 360ms	remaining: 217ms
187:	learn: 22.5754649	total: 361ms	remaining: 215ms
188:	learn: 22.5456675	total: 363ms	remaining: 213ms
189:	learn: 22.4982148	total: 365ms	remaining: 211ms
190:	learn: 22.4681772	total: 366ms	remaining: 209ms
191:	learn: 22.4312514	total: 368ms	remaining: 207ms
192:	learn: 22.3960622	total: 370ms	remaining: 205ms
193:	learn: 22.3528413	total: 371ms	remaining: 203ms
194:	learn: 22.3056110	total: 373ms	remaining: 201ms
195:	learn: 22.2463002	total: 375ms	remaining: 199ms
196:	learn: 22.1939592	total: 377ms	remaining: 197ms
197:	learn: 22.1697365	total: 379ms	remaining: 195ms
198:	learn: 22.1231046	total: 381ms	remaining: 193ms
199:	learn: 22.0748554	total: 383ms	remaining: 191ms
200:	learn: 22.0219263	total: 384ms	remaining: 189ms
201:	learn: 21.9693283	total: 386ms	remaining: 187ms
202:	learn: 21.9255216	total: 388ms	remaining: 185ms
203:	learn: 21.8828937	total: 390ms	remaining: 184ms
204:	learn: 21.8407084	total: 392ms	remaining: 182ms
205:	learn: 21.7779417	total: 394ms	remaining: 180ms
206:	learn: 21.7364589	total: 395ms	remaining: 178ms
207:	learn: 21.6942037	total: 397ms	remaining: 175ms
208:	learn: 21.6684217	total: 398ms	remaining: 173ms
209:	learn: 21.6237978	total: 400ms	remaining: 171ms
210:	learn: 21.5810114	total: 402ms	remaining: 169ms
211:	learn: 21.5428532	total: 404ms	remaining: 168ms
212:	learn: 21.5158600	total: 406ms	remaining: 166ms
213:	learn: 21.4669380	total: 407ms	remaining: 164ms
214:	learn: 21.4394526	total: 409ms	remaining: 162ms
215:	learn: 21.4002548	total: 411ms	remaining: 160ms
216:	learn: 21.3773231	total: 412ms	remaining: 158ms
217:	learn: 21.3209698	total: 414ms	remaining: 156ms
218:	learn: 21.2839577	total: 416ms	remaining: 154ms
219:	learn: 21.2614490	total: 417ms	remaining: 152ms
220:	learn: 21.2215280	total: 419ms	remaining: 150ms
221:	learn: 21.1857633	total: 421ms	remaining: 148ms
222:	learn: 21.1684886	total: 423ms	remaining: 146ms
223:	learn: 21.1568012	total: 425ms	remaining: 144ms
224:	learn: 21.1236497	total: 426ms	remaining: 142ms
225:	learn: 21.0839535	total: 428ms	remaining: 140ms
226:	learn: 21.0511862	total: 430ms	remaining: 138ms
227:	learn: 21.0088876	total: 432ms	remaining: 136ms
228:	learn: 20.9916074	total: 434ms	remaining: 134ms
229:	learn: 20.9645163	total: 435ms	remaining: 133ms
230:	learn: 20.9413314	total: 437ms	remaining: 131ms
231:	learn: 20.9101240	total: 439ms	remaining: 129ms
232:	learn: 20.8720635	total: 441ms	remaining: 127ms
233:	learn: 20.8418993	total: 444ms	remaining: 125ms
234:	learn: 20.8175094	total: 447ms	remaining: 124ms
235:	learn: 20.8003733	total: 450ms	remaining: 122ms
236:	learn: 20.7679561	total: 452ms	remaining: 120ms
237:	learn: 20.7304942	total: 455ms	remaining: 119ms
238:	learn: 20.7080091	total: 458ms	remaining: 117ms
239:	learn: 20.6935526	total: 460ms	remaining: 115ms
240:	learn: 20.6613565	total: 462ms	remaining: 113ms
241:	learn: 20.6274206	total: 464ms	remaining: 111ms
242:	learn: 20.6033125	total: 466ms	remaining: 109ms
243:	learn: 20.5576577	total: 468ms	remaining: 108ms
244:	learn: 20.5399670	total: 470ms	remaining: 106ms
245:	learn: 20.5084783	total: 472ms	remaining: 104ms
246:	learn: 20.4793993	total: 474ms	remaining: 102ms
247:	learn: 20.4468959	total: 475ms	remaining: 99.7ms
248:	learn: 20.4318672	total: 477ms	remaining: 97.7ms
249:	learn: 20.3963669	total: 479ms	remaining: 95.7ms
250:	learn: 20.3592173	total: 480ms	remaining: 93.7ms
251:	learn: 20.3406779	total: 482ms	remaining: 91.8ms
252:	learn: 20.3217794	total: 484ms	remaining: 89.9ms
253:	learn: 20.2983187	total: 486ms	remaining: 88ms
254:	learn: 20.2404681	total: 488ms	remaining: 86ms
255:	learn: 20.2184918	total: 489ms	remaining: 84.1ms
256:	learn: 20.1902368	total: 491ms	remaining: 82.2ms
257:	learn: 20.1549201	total: 493ms	remaining: 80.2ms
258:	learn: 20.1181683	total: 494ms	remaining: 78.3ms
259:	learn: 20.1017045	total: 496ms	remaining: 76.3ms
260:	learn: 20.0720881	total: 498ms	remaining: 74.4ms
261:	learn: 20.0526008	total: 499ms	remaining: 72.4ms
262:	learn: 20.0388615	total: 501ms	remaining: 70.4ms
263:	learn: 20.0230076	total: 502ms	remaining: 68.5ms
264:	learn: 19.9983032	total: 504ms	remaining: 66.6ms
265:	learn: 19.9639903	total: 506ms	remaining: 64.7ms
266:	learn: 19.9531008	total: 508ms	remaining: 62.7ms
267:	learn: 19.9309093	total: 509ms	remaining: 60.8ms
268:	learn: 19.8962485	total: 511ms	remaining: 58.9ms
269:	learn: 19.8818541	total: 512ms	remaining: 56.9ms
270:	learn: 19.8527225	total: 514ms	remaining: 55ms
271:	learn: 19.8287003	total: 515ms	remaining: 53.1ms
272:	learn: 19.8086766	total: 517ms	remaining: 51.1ms
273:	learn: 19.7689447	total: 519ms	remaining: 49.2ms
274:	learn: 19.7234100	total: 520ms	remaining: 47.3ms
275:	learn: 19.6849292	total: 522ms	remaining: 45.4ms
276:	learn: 19.6617622	total: 524ms	remaining: 43.5ms
277:	learn: 19.6499816	total: 525ms	remaining: 41.6ms
278:	learn: 19.6342533	total: 527ms	remaining: 39.7ms
279:	learn: 19.5980998	total: 529ms	remaining: 37.8ms
280:	learn: 19.5756499	total: 530ms	remaining: 35.9ms
281:	learn: 19.5401042	total: 532ms	remaining: 33.9ms
282:	learn: 19.4985039	total: 533ms	remaining: 32ms
283:	learn: 19.4689965	total: 535ms	remaining: 30.1ms
284:	learn: 19.4485049	total: 536ms	remaining: 28.2ms
285:	learn: 19.4328311	total: 538ms	remaining: 26.3ms
286:	learn: 19.4152407	total: 540ms	remaining: 24.4ms
287:	learn: 19.3800739	total: 541ms	remaining: 22.6ms
288:	learn: 19.3610650	total: 543ms	remaining: 20.7ms
289:	learn: 19.3492362	total: 544ms	remaining: 18.8ms
290:	learn: 19.3369408	total: 546ms	remaining: 16.9ms
291:	learn: 19.3095221	total: 548ms	remaining: 15ms
292:	learn: 19.2994660	total: 549ms	remaining: 13.1ms
293:	learn: 19.2744686	total: 551ms	remaining: 11.2ms
294:	learn: 19.2637387	total: 553ms	remaining: 9.37ms
295:	learn: 19.2458129	total: 554ms	remaining: 7.49ms
296:	learn: 19.2144916	total: 556ms	remaining: 5.62ms
297:	learn: 19.1977874	total: 558ms	remaining: 3.74ms
298:	learn: 19.1819866	total: 559ms	remaining: 1.87ms
299:	learn: 19.1553443	total: 561ms	remaining: 0us
0:	learn: 47.2473586	total: 1.94ms	remaining: 580ms
1:	learn: 47.0822087	total: 3.79ms	remaining: 565ms
2:	learn: 46.9145333	total: 5.7ms	remaining: 564ms
3:	learn: 46.7268864	total: 7.4ms	remaining: 548ms
4:	learn: 46.5563164	total: 9.14ms	remaining: 539ms
5:	learn: 46.3900705	total: 10.9ms	remaining: 534ms
6:	learn: 46.2495418	total: 12.9ms	remaining: 541ms
7:	learn: 46.1128787	total: 14.8ms	remaining: 541ms
8:	learn: 45.9066511	total: 16.7ms	remaining: 539ms
9:	learn: 45.7867128	total: 18.5ms	remaining: 536ms
10:	learn: 45.5776403	total: 20.3ms	remaining: 534ms
11:	learn: 45.4839186	total: 22.5ms	remaining: 540ms
12:	learn: 45.3513144	total: 24.3ms	remaining: 537ms
13:	learn: 45.1984758	total: 26.1ms	remaining: 534ms
14:	learn: 45.0569980	total: 27.8ms	remaining: 528ms
15:	learn: 44.9335781	total: 29.5ms	remaining: 524ms
16:	learn: 44.7164383	total: 31.2ms	remaining: 520ms
17:	learn: 44.6013181	total: 33ms	remaining: 517ms
18:	learn: 44.4911037	total: 36ms	remaining: 532ms
19:	learn: 44.3847907	total: 39.2ms	remaining: 549ms
20:	learn: 44.2011308	total: 41.8ms	remaining: 556ms
21:	learn: 44.0473899	total: 44.5ms	remaining: 562ms
22:	learn: 43.9346778	total: 47.7ms	remaining: 575ms
23:	learn: 43.7621516	total: 51.4ms	remaining: 591ms
24:	learn: 43.6554630	total: 55ms	remaining: 605ms
25:	learn: 43.5437765	total: 57.4ms	remaining: 605ms
26:	learn: 43.3682727	total: 59.7ms	remaining: 604ms
27:	learn: 43.2045232	total: 63.3ms	remaining: 615ms
28:	learn: 43.0783699	total: 65.4ms	remaining: 611ms
29:	learn: 42.9102799	total: 67.4ms	remaining: 606ms
30:	learn: 42.7757337	total: 69.3ms	remaining: 602ms
31:	learn: 42.5904584	total: 71.3ms	remaining: 597ms
32:	learn: 42.4469655	total: 73.4ms	remaining: 594ms
33:	learn: 42.2641608	total: 75.2ms	remaining: 589ms
34:	learn: 42.1099469	total: 77.3ms	remaining: 586ms
35:	learn: 42.0013923	total: 79.2ms	remaining: 581ms
36:	learn: 41.8770894	total: 81.1ms	remaining: 577ms
37:	learn: 41.7165983	total: 83.1ms	remaining: 573ms
38:	learn: 41.5813539	total: 85.4ms	remaining: 572ms
39:	learn: 41.4402515	total: 87.4ms	remaining: 568ms
40:	learn: 41.2541274	total: 90ms	remaining: 569ms
41:	learn: 41.1667955	total: 92.3ms	remaining: 567ms
42:	learn: 41.0722676	total: 94.2ms	remaining: 563ms
43:	learn: 40.9363980	total: 96.3ms	remaining: 561ms
44:	learn: 40.7533049	total: 98.4ms	remaining: 557ms
45:	learn: 40.6041322	total: 100ms	remaining: 554ms
46:	learn: 40.5008435	total: 102ms	remaining: 551ms
47:	learn: 40.3697322	total: 104ms	remaining: 548ms
48:	learn: 40.2759631	total: 106ms	remaining: 544ms
49:	learn: 40.1279586	total: 108ms	remaining: 541ms
50:	learn: 39.9652792	total: 110ms	remaining: 538ms
51:	learn: 39.8539606	total: 112ms	remaining: 535ms
52:	learn: 39.6955101	total: 114ms	remaining: 532ms
53:	learn: 39.5821296	total: 116ms	remaining: 529ms
54:	learn: 39.4233068	total: 118ms	remaining: 528ms
55:	learn: 39.2971509	total: 121ms	remaining: 525ms
56:	learn: 39.1803901	total: 122ms	remaining: 521ms
57:	learn: 39.0367888	total: 124ms	remaining: 517ms
58:	learn: 38.9224179	total: 126ms	remaining: 513ms
59:	learn: 38.8411359	total: 127ms	remaining: 509ms
60:	learn: 38.7165984	total: 129ms	remaining: 504ms
61:	learn: 38.6667773	total: 130ms	remaining: 500ms
62:	learn: 38.5546279	total: 132ms	remaining: 495ms
63:	learn: 38.4431995	total: 133ms	remaining: 492ms
64:	learn: 38.3473318	total: 135ms	remaining: 488ms
65:	learn: 38.1904490	total: 136ms	remaining: 484ms
66:	learn: 38.0753257	total: 138ms	remaining: 479ms
67:	learn: 37.9408944	total: 139ms	remaining: 476ms
68:	learn: 37.8273107	total: 141ms	remaining: 473ms
69:	learn: 37.7581459	total: 143ms	remaining: 469ms
70:	learn: 37.6659931	total: 144ms	remaining: 465ms
71:	learn: 37.6223010	total: 146ms	remaining: 462ms
72:	learn: 37.4659013	total: 147ms	remaining: 458ms
73:	learn: 37.3534370	total: 149ms	remaining: 455ms
74:	learn: 37.2761418	total: 150ms	remaining: 451ms
75:	learn: 37.1705453	total: 152ms	remaining: 448ms
76:	learn: 37.0355826	total: 154ms	remaining: 445ms
77:	learn: 36.8941196	total: 155ms	remaining: 442ms
78:	learn: 36.7822156	total: 157ms	remaining: 439ms
79:	learn: 36.6490564	total: 159ms	remaining: 436ms
80:	learn: 36.5833132	total: 160ms	remaining: 434ms
81:	learn: 36.4763998	total: 162ms	remaining: 431ms
82:	learn: 36.3568865	total: 164ms	remaining: 429ms
83:	learn: 36.2367073	total: 166ms	remaining: 426ms
84:	learn: 36.1214660	total: 167ms	remaining: 424ms
85:	learn: 36.0099768	total: 169ms	remaining: 421ms
86:	learn: 35.8913036	total: 171ms	remaining: 418ms
87:	learn: 35.7869338	total: 172ms	remaining: 416ms
88:	learn: 35.6760736	total: 174ms	remaining: 413ms
89:	learn: 35.5741023	total: 176ms	remaining: 411ms
90:	learn: 35.4984183	total: 178ms	remaining: 408ms
91:	learn: 35.3699381	total: 179ms	remaining: 406ms
92:	learn: 35.2647397	total: 181ms	remaining: 403ms
93:	learn: 35.1378698	total: 183ms	remaining: 400ms
94:	learn: 35.0179125	total: 184ms	remaining: 398ms
95:	learn: 34.9358381	total: 186ms	remaining: 395ms
96:	learn: 34.8732973	total: 187ms	remaining: 392ms
97:	learn: 34.7311293	total: 189ms	remaining: 390ms
98:	learn: 34.5920678	total: 191ms	remaining: 387ms
99:	learn: 34.4869641	total: 192ms	remaining: 384ms
100:	learn: 34.3660181	total: 194ms	remaining: 383ms
101:	learn: 34.2735816	total: 196ms	remaining: 380ms
102:	learn: 34.1694168	total: 198ms	remaining: 378ms
103:	learn: 34.0944141	total: 199ms	remaining: 375ms
104:	learn: 34.0053323	total: 201ms	remaining: 373ms
105:	learn: 33.8981420	total: 202ms	remaining: 370ms
106:	learn: 33.8459401	total: 204ms	remaining: 368ms
107:	learn: 33.7172741	total: 206ms	remaining: 365ms
108:	learn: 33.5848313	total: 207ms	remaining: 363ms
109:	learn: 33.5053918	total: 209ms	remaining: 360ms
110:	learn: 33.4221952	total: 210ms	remaining: 358ms
111:	learn: 33.3653330	total: 212ms	remaining: 356ms
112:	learn: 33.2624923	total: 213ms	remaining: 353ms
113:	learn: 33.1503856	total: 215ms	remaining: 351ms
114:	learn: 33.0752857	total: 217ms	remaining: 348ms
115:	learn: 33.0061348	total: 218ms	remaining: 346ms
116:	learn: 32.9062296	total: 220ms	remaining: 344ms
117:	learn: 32.8264062	total: 222ms	remaining: 342ms
118:	learn: 32.7044875	total: 224ms	remaining: 340ms
119:	learn: 32.6304321	total: 226ms	remaining: 338ms
120:	learn: 32.5325975	total: 227ms	remaining: 336ms
121:	learn: 32.4420173	total: 229ms	remaining: 334ms
122:	learn: 32.3569629	total: 231ms	remaining: 332ms
123:	learn: 32.2973512	total: 233ms	remaining: 330ms
124:	learn: 32.2464034	total: 234ms	remaining: 328ms
125:	learn: 32.1709823	total: 236ms	remaining: 326ms
126:	learn: 32.0885089	total: 238ms	remaining: 324ms
127:	learn: 32.0321351	total: 239ms	remaining: 322ms
128:	learn: 31.9511784	total: 241ms	remaining: 320ms
129:	learn: 31.8680402	total: 245ms	remaining: 321ms
130:	learn: 31.7617703	total: 248ms	remaining: 320ms
131:	learn: 31.7060123	total: 251ms	remaining: 319ms
132:	learn: 31.6296843	total: 253ms	remaining: 318ms
133:	learn: 31.5651784	total: 256ms	remaining: 317ms
134:	learn: 31.4985733	total: 258ms	remaining: 315ms
135:	learn: 31.4500531	total: 260ms	remaining: 314ms
136:	learn: 31.3728089	total: 263ms	remaining: 313ms
137:	learn: 31.3389149	total: 265ms	remaining: 311ms
138:	learn: 31.2730162	total: 266ms	remaining: 308ms
139:	learn: 31.2120202	total: 269ms	remaining: 307ms
140:	learn: 31.1199742	total: 271ms	remaining: 306ms
141:	learn: 31.0027679	total: 272ms	remaining: 303ms
142:	learn: 30.9098768	total: 274ms	remaining: 301ms
143:	learn: 30.8469678	total: 276ms	remaining: 299ms
144:	learn: 30.7755193	total: 277ms	remaining: 296ms
145:	learn: 30.7301942	total: 279ms	remaining: 294ms
146:	learn: 30.6558676	total: 280ms	remaining: 292ms
147:	learn: 30.5747912	total: 282ms	remaining: 290ms
148:	learn: 30.4939523	total: 284ms	remaining: 287ms
149:	learn: 30.4083652	total: 285ms	remaining: 285ms
150:	learn: 30.3453525	total: 287ms	remaining: 283ms
151:	learn: 30.2883430	total: 288ms	remaining: 281ms
152:	learn: 30.2390390	total: 290ms	remaining: 278ms
153:	learn: 30.1946995	total: 291ms	remaining: 276ms
154:	learn: 30.0955820	total: 293ms	remaining: 274ms
155:	learn: 30.0184386	total: 295ms	remaining: 272ms
156:	learn: 29.9665086	total: 296ms	remaining: 270ms
157:	learn: 29.9137060	total: 298ms	remaining: 268ms
158:	learn: 29.8596035	total: 300ms	remaining: 266ms
159:	learn: 29.7902987	total: 302ms	remaining: 264ms
160:	learn: 29.7319228	total: 304ms	remaining: 262ms
161:	learn: 29.6744829	total: 306ms	remaining: 260ms
162:	learn: 29.6210762	total: 307ms	remaining: 258ms
163:	learn: 29.5343855	total: 309ms	remaining: 256ms
164:	learn: 29.4690572	total: 311ms	remaining: 254ms
165:	learn: 29.3812604	total: 313ms	remaining: 252ms
166:	learn: 29.3454703	total: 315ms	remaining: 251ms
167:	learn: 29.3018505	total: 316ms	remaining: 249ms
168:	learn: 29.2290356	total: 318ms	remaining: 247ms
169:	learn: 29.1332014	total: 320ms	remaining: 245ms
170:	learn: 29.0731713	total: 322ms	remaining: 243ms
171:	learn: 28.9988362	total: 324ms	remaining: 241ms
172:	learn: 28.9296186	total: 325ms	remaining: 239ms
173:	learn: 28.8826750	total: 327ms	remaining: 237ms
174:	learn: 28.8056396	total: 329ms	remaining: 235ms
175:	learn: 28.7695823	total: 331ms	remaining: 233ms
176:	learn: 28.6823809	total: 332ms	remaining: 231ms
177:	learn: 28.6362300	total: 334ms	remaining: 229ms
178:	learn: 28.5563247	total: 335ms	remaining: 227ms
179:	learn: 28.4964793	total: 337ms	remaining: 225ms
180:	learn: 28.4285593	total: 339ms	remaining: 223ms
181:	learn: 28.3411415	total: 340ms	remaining: 221ms
182:	learn: 28.2457249	total: 342ms	remaining: 219ms
183:	learn: 28.2154946	total: 343ms	remaining: 216ms
184:	learn: 28.1388371	total: 345ms	remaining: 215ms
185:	learn: 28.0565956	total: 347ms	remaining: 213ms
186:	learn: 28.0297017	total: 349ms	remaining: 211ms
187:	learn: 28.0051477	total: 350ms	remaining: 209ms
188:	learn: 27.9661420	total: 352ms	remaining: 206ms
189:	learn: 27.9298860	total: 353ms	remaining: 205ms
190:	learn: 27.8953992	total: 355ms	remaining: 203ms
191:	learn: 27.8193847	total: 357ms	remaining: 201ms
192:	learn: 27.7871397	total: 358ms	remaining: 199ms
193:	learn: 27.7473911	total: 360ms	remaining: 197ms
194:	learn: 27.6926438	total: 362ms	remaining: 195ms
195:	learn: 27.6339285	total: 363ms	remaining: 193ms
196:	learn: 27.5937522	total: 365ms	remaining: 191ms
197:	learn: 27.5656187	total: 366ms	remaining: 189ms
198:	learn: 27.5068956	total: 368ms	remaining: 187ms
199:	learn: 27.4501115	total: 369ms	remaining: 185ms
200:	learn: 27.3750377	total: 371ms	remaining: 183ms
201:	learn: 27.3121982	total: 373ms	remaining: 181ms
202:	learn: 27.2770037	total: 374ms	remaining: 179ms
203:	learn: 27.1988825	total: 376ms	remaining: 177ms
204:	learn: 27.1673182	total: 377ms	remaining: 175ms
205:	learn: 27.1101403	total: 379ms	remaining: 173ms
206:	learn: 27.0851549	total: 380ms	remaining: 171ms
207:	learn: 27.0254148	total: 382ms	remaining: 169ms
208:	learn: 26.9923575	total: 384ms	remaining: 167ms
209:	learn: 26.9760256	total: 386ms	remaining: 165ms
210:	learn: 26.9348980	total: 387ms	remaining: 163ms
211:	learn: 26.8738488	total: 389ms	remaining: 161ms
212:	learn: 26.8472657	total: 390ms	remaining: 159ms
213:	learn: 26.7901840	total: 392ms	remaining: 158ms
214:	learn: 26.7477355	total: 394ms	remaining: 156ms
215:	learn: 26.7242354	total: 395ms	remaining: 154ms
216:	learn: 26.6660087	total: 397ms	remaining: 152ms
217:	learn: 26.6467805	total: 399ms	remaining: 150ms
218:	learn: 26.5847674	total: 400ms	remaining: 148ms
219:	learn: 26.5635661	total: 402ms	remaining: 146ms
220:	learn: 26.5010331	total: 404ms	remaining: 144ms
221:	learn: 26.4494444	total: 406ms	remaining: 143ms
222:	learn: 26.4323432	total: 407ms	remaining: 141ms
223:	learn: 26.3884407	total: 409ms	remaining: 139ms
224:	learn: 26.3352548	total: 410ms	remaining: 137ms
225:	learn: 26.2697538	total: 412ms	remaining: 135ms
226:	learn: 26.2390244	total: 414ms	remaining: 133ms
227:	learn: 26.1566609	total: 415ms	remaining: 131ms
228:	learn: 26.1186489	total: 417ms	remaining: 129ms
229:	learn: 26.0466786	total: 419ms	remaining: 127ms
230:	learn: 25.9982903	total: 420ms	remaining: 126ms
231:	learn: 25.9328991	total: 422ms	remaining: 124ms
232:	learn: 25.9072291	total: 424ms	remaining: 122ms
233:	learn: 25.8692414	total: 425ms	remaining: 120ms
234:	learn: 25.8127398	total: 427ms	remaining: 118ms
235:	learn: 25.7605141	total: 429ms	remaining: 116ms
236:	learn: 25.7260171	total: 431ms	remaining: 114ms
237:	learn: 25.6655065	total: 433ms	remaining: 113ms
238:	learn: 25.6202786	total: 434ms	remaining: 111ms
239:	learn: 25.5992821	total: 436ms	remaining: 109ms
240:	learn: 25.5760013	total: 438ms	remaining: 107ms
241:	learn: 25.5176670	total: 441ms	remaining: 106ms
242:	learn: 25.4628242	total: 444ms	remaining: 104ms
243:	learn: 25.4371827	total: 447ms	remaining: 103ms
244:	learn: 25.4190070	total: 452ms	remaining: 101ms
245:	learn: 25.3708493	total: 454ms	remaining: 99.6ms
246:	learn: 25.3203846	total: 458ms	remaining: 98.3ms
247:	learn: 25.2770759	total: 460ms	remaining: 96.5ms
248:	learn: 25.2052641	total: 462ms	remaining: 94.7ms
249:	learn: 25.1805311	total: 466ms	remaining: 93.3ms
250:	learn: 25.1549221	total: 469ms	remaining: 91.5ms
251:	learn: 25.0658462	total: 471ms	remaining: 89.7ms
252:	learn: 25.0466489	total: 473ms	remaining: 87.8ms
253:	learn: 25.0064469	total: 475ms	remaining: 86ms
254:	learn: 24.9708571	total: 477ms	remaining: 84.1ms
255:	learn: 24.9439838	total: 479ms	remaining: 82.3ms
256:	learn: 24.9220046	total: 481ms	remaining: 80.5ms
257:	learn: 24.8815421	total: 483ms	remaining: 78.7ms
258:	learn: 24.8652712	total: 486ms	remaining: 76.9ms
259:	learn: 24.8391802	total: 488ms	remaining: 75ms
260:	learn: 24.8225190	total: 490ms	remaining: 73.2ms
261:	learn: 24.7657563	total: 492ms	remaining: 71.3ms
262:	learn: 24.7524663	total: 494ms	remaining: 69.5ms
263:	learn: 24.7219517	total: 496ms	remaining: 67.6ms
264:	learn: 24.7081727	total: 498ms	remaining: 65.7ms
265:	learn: 24.6733459	total: 500ms	remaining: 63.9ms
266:	learn: 24.6591376	total: 502ms	remaining: 62ms
267:	learn: 24.6287826	total: 504ms	remaining: 60.1ms
268:	learn: 24.6150519	total: 506ms	remaining: 58.3ms
269:	learn: 24.6055137	total: 507ms	remaining: 56.4ms
270:	learn: 24.5763027	total: 509ms	remaining: 54.5ms
271:	learn: 24.5318877	total: 511ms	remaining: 52.6ms
272:	learn: 24.4874949	total: 513ms	remaining: 50.7ms
273:	learn: 24.4266654	total: 515ms	remaining: 48.9ms
274:	learn: 24.4084324	total: 517ms	remaining: 47ms
275:	learn: 24.3648836	total: 518ms	remaining: 45ms
276:	learn: 24.3466697	total: 520ms	remaining: 43.2ms
277:	learn: 24.3100902	total: 522ms	remaining: 41.3ms
278:	learn: 24.2475437	total: 524ms	remaining: 39.5ms
279:	learn: 24.2017116	total: 526ms	remaining: 37.6ms
280:	learn: 24.1797884	total: 529ms	remaining: 35.7ms
281:	learn: 24.1488294	total: 530ms	remaining: 33.8ms
282:	learn: 24.1298836	total: 532ms	remaining: 31.9ms
283:	learn: 24.0778698	total: 533ms	remaining: 30.1ms
284:	learn: 24.0162312	total: 535ms	remaining: 28.2ms
285:	learn: 23.9689773	total: 537ms	remaining: 26.3ms
286:	learn: 23.9241064	total: 538ms	remaining: 24.4ms
287:	learn: 23.9107872	total: 540ms	remaining: 22.5ms
288:	learn: 23.8867705	total: 542ms	remaining: 20.6ms
289:	learn: 23.8657564	total: 543ms	remaining: 18.7ms
290:	learn: 23.8290522	total: 545ms	remaining: 16.9ms
291:	learn: 23.8085141	total: 546ms	remaining: 15ms
292:	learn: 23.7958277	total: 548ms	remaining: 13.1ms
293:	learn: 23.7808577	total: 550ms	remaining: 11.2ms
294:	learn: 23.7532235	total: 552ms	remaining: 9.35ms
295:	learn: 23.7204390	total: 553ms	remaining: 7.47ms
296:	learn: 23.7002256	total: 555ms	remaining: 5.6ms
297:	learn: 23.6871816	total: 556ms	remaining: 3.73ms
298:	learn: 23.6338318	total: 558ms	remaining: 1.87ms
299:	learn: 23.5824584	total: 560ms	remaining: 0us
0:	learn: 46.8123864	total: 1.79ms	remaining: 535ms
1:	learn: 46.6439435	total: 3.38ms	remaining: 504ms
2:	learn: 46.4728598	total: 4.96ms	remaining: 492ms
3:	learn: 46.3461682	total: 6.85ms	remaining: 507ms
4:	learn: 46.1510938	total: 8.32ms	remaining: 491ms
5:	learn: 45.9093039	total: 9.83ms	remaining: 482ms
6:	learn: 45.7710045	total: 11.4ms	remaining: 476ms
7:	learn: 45.5998163	total: 13ms	remaining: 474ms
8:	learn: 45.4669566	total: 14.9ms	remaining: 481ms
9:	learn: 45.3327945	total: 16.8ms	remaining: 486ms
10:	learn: 45.2132216	total: 18.6ms	remaining: 488ms
11:	learn: 45.1058541	total: 20.3ms	remaining: 488ms
12:	learn: 44.9755763	total: 22.1ms	remaining: 489ms
13:	learn: 44.8523549	total: 24ms	remaining: 491ms
14:	learn: 44.7213295	total: 25.8ms	remaining: 490ms
15:	learn: 44.6097169	total: 27.6ms	remaining: 489ms
16:	learn: 44.4116732	total: 29.5ms	remaining: 491ms
17:	learn: 44.3005244	total: 31.2ms	remaining: 489ms
18:	learn: 44.1851481	total: 33.1ms	remaining: 489ms
19:	learn: 44.0847215	total: 34.8ms	remaining: 488ms
20:	learn: 43.9090863	total: 36.5ms	remaining: 486ms
21:	learn: 43.7360000	total: 38.6ms	remaining: 487ms
22:	learn: 43.6429988	total: 42.7ms	remaining: 515ms
23:	learn: 43.4995976	total: 45.3ms	remaining: 521ms
24:	learn: 43.3491878	total: 47.9ms	remaining: 527ms
25:	learn: 43.2400388	total: 50.4ms	remaining: 531ms
26:	learn: 43.1400856	total: 52.7ms	remaining: 533ms
27:	learn: 42.9651928	total: 55ms	remaining: 534ms
28:	learn: 42.8636478	total: 57.4ms	remaining: 536ms
29:	learn: 42.7058476	total: 59.6ms	remaining: 537ms
30:	learn: 42.6223025	total: 61.4ms	remaining: 533ms
31:	learn: 42.5149105	total: 63ms	remaining: 528ms
32:	learn: 42.3776427	total: 65.5ms	remaining: 530ms
33:	learn: 42.2136528	total: 67.7ms	remaining: 530ms
34:	learn: 42.0803972	total: 69.2ms	remaining: 524ms
35:	learn: 41.9586701	total: 70.7ms	remaining: 519ms
36:	learn: 41.8044514	total: 72.4ms	remaining: 515ms
37:	learn: 41.6425568	total: 74ms	remaining: 511ms
38:	learn: 41.5312228	total: 75.8ms	remaining: 507ms
39:	learn: 41.3758088	total: 77.3ms	remaining: 502ms
40:	learn: 41.2287784	total: 78.8ms	remaining: 498ms
41:	learn: 41.0650918	total: 80.3ms	remaining: 493ms
42:	learn: 40.9685357	total: 81.8ms	remaining: 489ms
43:	learn: 40.8525952	total: 83.3ms	remaining: 485ms
44:	learn: 40.6723176	total: 84.8ms	remaining: 480ms
45:	learn: 40.5157592	total: 86.4ms	remaining: 477ms
46:	learn: 40.3649184	total: 87.9ms	remaining: 473ms
47:	learn: 40.2212390	total: 89.4ms	remaining: 469ms
48:	learn: 40.1136487	total: 90.9ms	remaining: 466ms
49:	learn: 39.9470441	total: 92.7ms	remaining: 463ms
50:	learn: 39.8180835	total: 94.2ms	remaining: 460ms
51:	learn: 39.6783358	total: 95.7ms	remaining: 457ms
52:	learn: 39.4965980	total: 97.2ms	remaining: 453ms
53:	learn: 39.4113774	total: 98.8ms	remaining: 450ms
54:	learn: 39.2510168	total: 100ms	remaining: 447ms
55:	learn: 39.1119218	total: 102ms	remaining: 444ms
56:	learn: 38.9596071	total: 104ms	remaining: 442ms
57:	learn: 38.8580172	total: 105ms	remaining: 439ms
58:	learn: 38.7544482	total: 107ms	remaining: 436ms
59:	learn: 38.6554091	total: 108ms	remaining: 433ms
60:	learn: 38.5097630	total: 110ms	remaining: 430ms
61:	learn: 38.4664936	total: 111ms	remaining: 427ms
62:	learn: 38.3211437	total: 113ms	remaining: 425ms
63:	learn: 38.1940740	total: 114ms	remaining: 422ms
64:	learn: 38.0836956	total: 116ms	remaining: 419ms
65:	learn: 37.9978704	total: 117ms	remaining: 416ms
66:	learn: 37.8924138	total: 119ms	remaining: 415ms
67:	learn: 37.7980446	total: 121ms	remaining: 413ms
68:	learn: 37.6827258	total: 123ms	remaining: 410ms
69:	learn: 37.5813412	total: 124ms	remaining: 408ms
70:	learn: 37.4940225	total: 126ms	remaining: 406ms
71:	learn: 37.3560171	total: 128ms	remaining: 404ms
72:	learn: 37.2551496	total: 129ms	remaining: 401ms
73:	learn: 37.1712543	total: 131ms	remaining: 399ms
74:	learn: 37.0388429	total: 132ms	remaining: 397ms
75:	learn: 36.9404467	total: 134ms	remaining: 394ms
76:	learn: 36.7992176	total: 135ms	remaining: 392ms
77:	learn: 36.6894036	total: 137ms	remaining: 389ms
78:	learn: 36.5997606	total: 138ms	remaining: 387ms
79:	learn: 36.4580564	total: 140ms	remaining: 384ms
80:	learn: 36.3715213	total: 141ms	remaining: 382ms
81:	learn: 36.3158167	total: 143ms	remaining: 380ms
82:	learn: 36.1772603	total: 145ms	remaining: 378ms
83:	learn: 36.1324186	total: 146ms	remaining: 376ms
84:	learn: 36.0023982	total: 148ms	remaining: 373ms
85:	learn: 35.8977325	total: 149ms	remaining: 371ms
86:	learn: 35.8171626	total: 151ms	remaining: 370ms
87:	learn: 35.7151052	total: 153ms	remaining: 367ms
88:	learn: 35.5805788	total: 154ms	remaining: 366ms
89:	learn: 35.4551601	total: 156ms	remaining: 364ms
90:	learn: 35.3352533	total: 157ms	remaining: 362ms
91:	learn: 35.2201924	total: 159ms	remaining: 359ms
92:	learn: 35.0867878	total: 161ms	remaining: 358ms
93:	learn: 34.9701676	total: 162ms	remaining: 356ms
94:	learn: 34.8559765	total: 164ms	remaining: 354ms
95:	learn: 34.7684669	total: 165ms	remaining: 351ms
96:	learn: 34.7011699	total: 167ms	remaining: 349ms
97:	learn: 34.6392360	total: 168ms	remaining: 347ms
98:	learn: 34.5013228	total: 170ms	remaining: 345ms
99:	learn: 34.4159561	total: 172ms	remaining: 343ms
100:	learn: 34.3599335	total: 173ms	remaining: 341ms
101:	learn: 34.2662263	total: 174ms	remaining: 339ms
102:	learn: 34.1858267	total: 176ms	remaining: 336ms
103:	learn: 34.1503703	total: 178ms	remaining: 335ms
104:	learn: 34.0434391	total: 179ms	remaining: 333ms
105:	learn: 33.9306776	total: 181ms	remaining: 331ms
106:	learn: 33.8212273	total: 183ms	remaining: 329ms
107:	learn: 33.7487055	total: 184ms	remaining: 327ms
108:	learn: 33.6612285	total: 186ms	remaining: 325ms
109:	learn: 33.5936893	total: 187ms	remaining: 323ms
110:	learn: 33.5160243	total: 189ms	remaining: 321ms
111:	learn: 33.4534349	total: 190ms	remaining: 319ms
112:	learn: 33.3720985	total: 192ms	remaining: 317ms
113:	learn: 33.2709022	total: 194ms	remaining: 316ms
114:	learn: 33.2186484	total: 195ms	remaining: 314ms
115:	learn: 33.1305515	total: 197ms	remaining: 312ms
116:	learn: 33.0412676	total: 198ms	remaining: 310ms
117:	learn: 32.9219359	total: 200ms	remaining: 308ms
118:	learn: 32.7801752	total: 201ms	remaining: 306ms
119:	learn: 32.7283825	total: 203ms	remaining: 304ms
120:	learn: 32.6245992	total: 205ms	remaining: 303ms
121:	learn: 32.5461444	total: 206ms	remaining: 301ms
122:	learn: 32.4730959	total: 208ms	remaining: 299ms
123:	learn: 32.4162612	total: 210ms	remaining: 297ms
124:	learn: 32.3365655	total: 211ms	remaining: 296ms
125:	learn: 32.2834445	total: 213ms	remaining: 294ms
126:	learn: 32.1740651	total: 215ms	remaining: 293ms
127:	learn: 32.1276313	total: 218ms	remaining: 293ms
128:	learn: 32.0247248	total: 220ms	remaining: 292ms
129:	learn: 31.9585672	total: 223ms	remaining: 291ms
130:	learn: 31.8731774	total: 225ms	remaining: 291ms
131:	learn: 31.8229682	total: 228ms	remaining: 290ms
132:	learn: 31.7220156	total: 231ms	remaining: 289ms
133:	learn: 31.6363982	total: 233ms	remaining: 288ms
134:	learn: 31.5413546	total: 235ms	remaining: 287ms
135:	learn: 31.4825168	total: 237ms	remaining: 286ms
136:	learn: 31.3870918	total: 239ms	remaining: 284ms
137:	learn: 31.3691295	total: 241ms	remaining: 283ms
138:	learn: 31.3111013	total: 243ms	remaining: 281ms
139:	learn: 31.2251822	total: 246ms	remaining: 281ms
140:	learn: 31.1671209	total: 249ms	remaining: 280ms
141:	learn: 31.0793758	total: 251ms	remaining: 279ms
142:	learn: 30.9840799	total: 252ms	remaining: 277ms
143:	learn: 30.9272075	total: 254ms	remaining: 276ms
144:	learn: 30.8477944	total: 256ms	remaining: 274ms
145:	learn: 30.7636140	total: 258ms	remaining: 272ms
146:	learn: 30.6927319	total: 260ms	remaining: 271ms
147:	learn: 30.6053025	total: 262ms	remaining: 269ms
148:	learn: 30.5402021	total: 264ms	remaining: 268ms
149:	learn: 30.4904707	total: 267ms	remaining: 267ms
150:	learn: 30.4231514	total: 268ms	remaining: 265ms
151:	learn: 30.3753309	total: 270ms	remaining: 263ms
152:	learn: 30.3287473	total: 272ms	remaining: 262ms
153:	learn: 30.2450278	total: 275ms	remaining: 260ms
154:	learn: 30.1593566	total: 277ms	remaining: 259ms
155:	learn: 30.1025185	total: 278ms	remaining: 257ms
156:	learn: 30.0254817	total: 281ms	remaining: 256ms
157:	learn: 29.9766485	total: 283ms	remaining: 254ms
158:	learn: 29.9098458	total: 285ms	remaining: 253ms
159:	learn: 29.8572697	total: 287ms	remaining: 251ms
160:	learn: 29.8049512	total: 289ms	remaining: 249ms
161:	learn: 29.7301398	total: 291ms	remaining: 248ms
162:	learn: 29.6951198	total: 293ms	remaining: 246ms
163:	learn: 29.6494166	total: 295ms	remaining: 244ms
164:	learn: 29.6128044	total: 296ms	remaining: 243ms
165:	learn: 29.5223372	total: 299ms	remaining: 241ms
166:	learn: 29.4826838	total: 301ms	remaining: 239ms
167:	learn: 29.4477004	total: 303ms	remaining: 238ms
168:	learn: 29.3831841	total: 305ms	remaining: 236ms
169:	learn: 29.3086357	total: 306ms	remaining: 234ms
170:	learn: 29.2486310	total: 308ms	remaining: 232ms
171:	learn: 29.1912126	total: 310ms	remaining: 231ms
172:	learn: 29.1593021	total: 312ms	remaining: 229ms
173:	learn: 29.1306727	total: 314ms	remaining: 227ms
174:	learn: 29.0691221	total: 316ms	remaining: 226ms
175:	learn: 29.0422640	total: 318ms	remaining: 224ms
176:	learn: 28.9668208	total: 321ms	remaining: 223ms
177:	learn: 28.9409329	total: 323ms	remaining: 221ms
178:	learn: 28.9113536	total: 324ms	remaining: 219ms
179:	learn: 28.8747391	total: 326ms	remaining: 217ms
180:	learn: 28.8157524	total: 328ms	remaining: 216ms
181:	learn: 28.7898652	total: 330ms	remaining: 214ms
182:	learn: 28.7138873	total: 332ms	remaining: 212ms
183:	learn: 28.6413091	total: 333ms	remaining: 210ms
184:	learn: 28.6264903	total: 335ms	remaining: 208ms
185:	learn: 28.5742796	total: 336ms	remaining: 206ms
186:	learn: 28.5433744	total: 338ms	remaining: 204ms
187:	learn: 28.4901843	total: 339ms	remaining: 202ms
188:	learn: 28.4537922	total: 341ms	remaining: 200ms
189:	learn: 28.3661189	total: 342ms	remaining: 198ms
190:	learn: 28.3282569	total: 344ms	remaining: 196ms
191:	learn: 28.2715649	total: 345ms	remaining: 194ms
192:	learn: 28.2153173	total: 347ms	remaining: 192ms
193:	learn: 28.1772176	total: 348ms	remaining: 190ms
194:	learn: 28.1276292	total: 350ms	remaining: 188ms
195:	learn: 28.0977547	total: 352ms	remaining: 187ms
196:	learn: 28.0556057	total: 353ms	remaining: 185ms
197:	learn: 28.0187160	total: 355ms	remaining: 183ms
198:	learn: 27.9659258	total: 356ms	remaining: 181ms
199:	learn: 27.9246875	total: 357ms	remaining: 179ms
200:	learn: 27.8773081	total: 359ms	remaining: 177ms
201:	learn: 27.8454952	total: 360ms	remaining: 175ms
202:	learn: 27.7890931	total: 362ms	remaining: 173ms
203:	learn: 27.7350910	total: 364ms	remaining: 171ms
204:	learn: 27.6662910	total: 365ms	remaining: 169ms
205:	learn: 27.6058152	total: 367ms	remaining: 167ms
206:	learn: 27.5851019	total: 368ms	remaining: 166ms
207:	learn: 27.5278079	total: 370ms	remaining: 164ms
208:	learn: 27.5008861	total: 372ms	remaining: 162ms
209:	learn: 27.4892440	total: 374ms	remaining: 160ms
210:	learn: 27.4553735	total: 376ms	remaining: 158ms
211:	learn: 27.3927748	total: 378ms	remaining: 157ms
212:	learn: 27.3689973	total: 379ms	remaining: 155ms
213:	learn: 27.3528154	total: 381ms	remaining: 153ms
214:	learn: 27.3233932	total: 383ms	remaining: 152ms
215:	learn: 27.2936807	total: 385ms	remaining: 150ms
216:	learn: 27.2469055	total: 387ms	remaining: 148ms
217:	learn: 27.2199301	total: 388ms	remaining: 146ms
218:	learn: 27.1766279	total: 390ms	remaining: 144ms
219:	learn: 27.1264094	total: 392ms	remaining: 142ms
220:	learn: 27.0869861	total: 394ms	remaining: 141ms
221:	learn: 27.0499703	total: 396ms	remaining: 139ms
222:	learn: 27.0289082	total: 398ms	remaining: 137ms
223:	learn: 26.9782195	total: 400ms	remaining: 136ms
224:	learn: 26.9452078	total: 402ms	remaining: 134ms
225:	learn: 26.8895170	total: 403ms	remaining: 132ms
226:	learn: 26.8578051	total: 405ms	remaining: 130ms
227:	learn: 26.8346752	total: 407ms	remaining: 128ms
228:	learn: 26.7898183	total: 408ms	remaining: 127ms
229:	learn: 26.7495764	total: 410ms	remaining: 125ms
230:	learn: 26.6981037	total: 412ms	remaining: 123ms
231:	learn: 26.6737577	total: 414ms	remaining: 121ms
232:	learn: 26.6548891	total: 415ms	remaining: 119ms
233:	learn: 26.6224420	total: 417ms	remaining: 118ms
234:	learn: 26.5666306	total: 419ms	remaining: 116ms
235:	learn: 26.5121705	total: 421ms	remaining: 114ms
236:	learn: 26.4823788	total: 422ms	remaining: 112ms
237:	learn: 26.4160437	total: 424ms	remaining: 110ms
238:	learn: 26.3717696	total: 426ms	remaining: 109ms
239:	learn: 26.3200134	total: 427ms	remaining: 107ms
240:	learn: 26.2905419	total: 429ms	remaining: 105ms
241:	learn: 26.2460382	total: 431ms	remaining: 103ms
242:	learn: 26.1959512	total: 433ms	remaining: 102ms
243:	learn: 26.1873459	total: 435ms	remaining: 99.8ms
244:	learn: 26.1520963	total: 439ms	remaining: 98.5ms
245:	learn: 26.0937386	total: 442ms	remaining: 96.9ms
246:	learn: 26.0640140	total: 444ms	remaining: 95.3ms
247:	learn: 26.0078303	total: 447ms	remaining: 93.7ms
248:	learn: 25.9975318	total: 450ms	remaining: 92.1ms
249:	learn: 25.9475206	total: 452ms	remaining: 90.4ms
250:	learn: 25.9158847	total: 455ms	remaining: 88.8ms
251:	learn: 25.8695846	total: 457ms	remaining: 87ms
252:	learn: 25.8510793	total: 459ms	remaining: 85.2ms
253:	learn: 25.8419271	total: 461ms	remaining: 83.5ms
254:	learn: 25.8020764	total: 463ms	remaining: 81.7ms
255:	learn: 25.7653029	total: 465ms	remaining: 79.9ms
256:	learn: 25.7040273	total: 466ms	remaining: 78ms
257:	learn: 25.6306249	total: 468ms	remaining: 76.2ms
258:	learn: 25.6177741	total: 470ms	remaining: 74.3ms
259:	learn: 25.5939121	total: 471ms	remaining: 72.5ms
260:	learn: 25.5627347	total: 473ms	remaining: 70.6ms
261:	learn: 25.5127991	total: 474ms	remaining: 68.8ms
262:	learn: 25.4899370	total: 476ms	remaining: 66.9ms
263:	learn: 25.4274802	total: 477ms	remaining: 65.1ms
264:	learn: 25.4089121	total: 479ms	remaining: 63.2ms
265:	learn: 25.3559627	total: 480ms	remaining: 61.4ms
266:	learn: 25.3447015	total: 482ms	remaining: 59.5ms
267:	learn: 25.3310975	total: 483ms	remaining: 57.7ms
268:	learn: 25.3176207	total: 485ms	remaining: 55.9ms
269:	learn: 25.3067952	total: 487ms	remaining: 54.1ms
270:	learn: 25.2517809	total: 488ms	remaining: 52.2ms
271:	learn: 25.2310761	total: 490ms	remaining: 50.4ms
272:	learn: 25.1921775	total: 491ms	remaining: 48.6ms
273:	learn: 25.1842495	total: 493ms	remaining: 46.7ms
274:	learn: 25.1323973	total: 494ms	remaining: 44.9ms
275:	learn: 25.1137577	total: 496ms	remaining: 43.1ms
276:	learn: 25.0959857	total: 497ms	remaining: 41.3ms
277:	learn: 25.0763860	total: 499ms	remaining: 39.5ms
278:	learn: 25.0584112	total: 500ms	remaining: 37.6ms
279:	learn: 25.0128845	total: 502ms	remaining: 35.9ms
280:	learn: 25.0015807	total: 504ms	remaining: 34.1ms
281:	learn: 24.9706284	total: 505ms	remaining: 32.3ms
282:	learn: 24.9635882	total: 507ms	remaining: 30.4ms
283:	learn: 24.9140020	total: 509ms	remaining: 28.7ms
284:	learn: 24.8931065	total: 510ms	remaining: 26.8ms
285:	learn: 24.8528087	total: 512ms	remaining: 25ms
286:	learn: 24.8447024	total: 513ms	remaining: 23.2ms
287:	learn: 24.7983324	total: 515ms	remaining: 21.4ms
288:	learn: 24.7885242	total: 516ms	remaining: 19.7ms
289:	learn: 24.7510155	total: 518ms	remaining: 17.9ms
290:	learn: 24.7409537	total: 520ms	remaining: 16.1ms
291:	learn: 24.7137671	total: 521ms	remaining: 14.3ms
292:	learn: 24.6892018	total: 523ms	remaining: 12.5ms
293:	learn: 24.6796397	total: 524ms	remaining: 10.7ms
294:	learn: 24.6742411	total: 526ms	remaining: 8.91ms
295:	learn: 24.6577408	total: 528ms	remaining: 7.13ms
296:	learn: 24.6377568	total: 529ms	remaining: 5.34ms
297:	learn: 24.6174868	total: 531ms	remaining: 3.56ms
298:	learn: 24.5889581	total: 532ms	remaining: 1.78ms
299:	learn: 24.5467643	total: 534ms	remaining: 0us
0:	learn: 47.4393745	total: 1.77ms	remaining: 530ms
1:	learn: 47.3115123	total: 3.2ms	remaining: 477ms
2:	learn: 47.1299792	total: 4.91ms	remaining: 486ms
3:	learn: 46.9713689	total: 6.37ms	remaining: 471ms
4:	learn: 46.7746123	total: 7.88ms	remaining: 465ms
5:	learn: 46.5688177	total: 9.47ms	remaining: 464ms
6:	learn: 46.4290273	total: 11ms	remaining: 461ms
7:	learn: 46.2474512	total: 12.5ms	remaining: 456ms
8:	learn: 46.0860872	total: 14.1ms	remaining: 457ms
9:	learn: 45.9580823	total: 15.7ms	remaining: 456ms
10:	learn: 45.8343714	total: 17.3ms	remaining: 454ms
11:	learn: 45.6593089	total: 18.7ms	remaining: 450ms
12:	learn: 45.5336258	total: 20.2ms	remaining: 446ms
13:	learn: 45.3581260	total: 21.9ms	remaining: 447ms
14:	learn: 45.2211303	total: 23.5ms	remaining: 446ms
15:	learn: 45.0911481	total: 25ms	remaining: 443ms
16:	learn: 44.9167918	total: 26.5ms	remaining: 442ms
17:	learn: 44.8100775	total: 28ms	remaining: 438ms
18:	learn: 44.6023688	total: 29.5ms	remaining: 436ms
19:	learn: 44.4981743	total: 31ms	remaining: 434ms
20:	learn: 44.3373955	total: 32.5ms	remaining: 431ms
21:	learn: 44.2030097	total: 34.1ms	remaining: 431ms
22:	learn: 44.0963602	total: 35.6ms	remaining: 428ms
23:	learn: 43.9512811	total: 37ms	remaining: 426ms
24:	learn: 43.7538126	total: 38.9ms	remaining: 428ms
25:	learn: 43.6337305	total: 40.4ms	remaining: 426ms
26:	learn: 43.4674922	total: 41.9ms	remaining: 424ms
27:	learn: 43.2941897	total: 43.5ms	remaining: 422ms
28:	learn: 43.1896135	total: 44.9ms	remaining: 420ms
29:	learn: 43.0299768	total: 46.5ms	remaining: 418ms
30:	learn: 42.9350201	total: 48ms	remaining: 416ms
31:	learn: 42.8306424	total: 49.5ms	remaining: 415ms
32:	learn: 42.6551390	total: 51ms	remaining: 412ms
33:	learn: 42.4989990	total: 52.7ms	remaining: 412ms
34:	learn: 42.3481235	total: 54.4ms	remaining: 412ms
35:	learn: 42.2225782	total: 56.3ms	remaining: 413ms
36:	learn: 42.0652681	total: 58ms	remaining: 413ms
37:	learn: 41.9695110	total: 59.8ms	remaining: 412ms
38:	learn: 41.8496483	total: 61.4ms	remaining: 411ms
39:	learn: 41.6769844	total: 63ms	remaining: 410ms
40:	learn: 41.5095961	total: 64.6ms	remaining: 408ms
41:	learn: 41.3705149	total: 66.3ms	remaining: 407ms
42:	learn: 41.2691399	total: 68ms	remaining: 407ms
43:	learn: 41.1541370	total: 69.7ms	remaining: 405ms
44:	learn: 41.0095865	total: 71.3ms	remaining: 404ms
45:	learn: 40.8653191	total: 73.3ms	remaining: 405ms
46:	learn: 40.7816168	total: 75.1ms	remaining: 405ms
47:	learn: 40.6167140	total: 77.5ms	remaining: 407ms
48:	learn: 40.5125275	total: 80.8ms	remaining: 414ms
49:	learn: 40.3440726	total: 83.4ms	remaining: 417ms
50:	learn: 40.2166469	total: 86ms	remaining: 420ms
51:	learn: 40.0753607	total: 89.5ms	remaining: 427ms
52:	learn: 39.8960811	total: 93.4ms	remaining: 435ms
53:	learn: 39.8147773	total: 98.9ms	remaining: 451ms
54:	learn: 39.6544064	total: 102ms	remaining: 452ms
55:	learn: 39.4907129	total: 106ms	remaining: 463ms
56:	learn: 39.3468759	total: 109ms	remaining: 465ms
57:	learn: 39.2136021	total: 111ms	remaining: 465ms
58:	learn: 39.1045650	total: 113ms	remaining: 463ms
59:	learn: 38.9515436	total: 116ms	remaining: 462ms
60:	learn: 38.8126148	total: 118ms	remaining: 461ms
61:	learn: 38.7049448	total: 120ms	remaining: 459ms
62:	learn: 38.5832861	total: 122ms	remaining: 458ms
63:	learn: 38.4595489	total: 124ms	remaining: 456ms
64:	learn: 38.3498858	total: 126ms	remaining: 455ms
65:	learn: 38.2633513	total: 128ms	remaining: 453ms
66:	learn: 38.1445155	total: 130ms	remaining: 452ms
67:	learn: 38.0483078	total: 132ms	remaining: 451ms
68:	learn: 37.9312328	total: 134ms	remaining: 449ms
69:	learn: 37.8492968	total: 136ms	remaining: 447ms
70:	learn: 37.7414347	total: 138ms	remaining: 445ms
71:	learn: 37.6560964	total: 140ms	remaining: 443ms
72:	learn: 37.5108434	total: 142ms	remaining: 441ms
73:	learn: 37.3893827	total: 144ms	remaining: 439ms
74:	learn: 37.3119144	total: 146ms	remaining: 438ms
75:	learn: 37.2296704	total: 148ms	remaining: 436ms
76:	learn: 37.1028614	total: 150ms	remaining: 434ms
77:	learn: 36.9745410	total: 152ms	remaining: 432ms
78:	learn: 36.8411536	total: 154ms	remaining: 430ms
79:	learn: 36.7253315	total: 156ms	remaining: 428ms
80:	learn: 36.6086737	total: 158ms	remaining: 427ms
81:	learn: 36.5444007	total: 160ms	remaining: 426ms
82:	learn: 36.4393125	total: 162ms	remaining: 424ms
83:	learn: 36.3102888	total: 164ms	remaining: 422ms
84:	learn: 36.1789372	total: 166ms	remaining: 419ms
85:	learn: 36.0664432	total: 167ms	remaining: 416ms
86:	learn: 35.9894764	total: 169ms	remaining: 413ms
87:	learn: 35.8991531	total: 170ms	remaining: 410ms
88:	learn: 35.7648321	total: 171ms	remaining: 407ms
89:	learn: 35.6432953	total: 173ms	remaining: 404ms
90:	learn: 35.5478705	total: 175ms	remaining: 401ms
91:	learn: 35.4789443	total: 177ms	remaining: 399ms
92:	learn: 35.3488936	total: 178ms	remaining: 397ms
93:	learn: 35.2640881	total: 180ms	remaining: 395ms
94:	learn: 35.2088976	total: 182ms	remaining: 392ms
95:	learn: 35.1217180	total: 183ms	remaining: 390ms
96:	learn: 35.0273772	total: 185ms	remaining: 387ms
97:	learn: 34.9253200	total: 187ms	remaining: 384ms
98:	learn: 34.7926643	total: 188ms	remaining: 382ms
99:	learn: 34.6877772	total: 190ms	remaining: 379ms
100:	learn: 34.6067494	total: 191ms	remaining: 377ms
101:	learn: 34.5217200	total: 193ms	remaining: 375ms
102:	learn: 34.4334545	total: 195ms	remaining: 372ms
103:	learn: 34.3745678	total: 197ms	remaining: 370ms
104:	learn: 34.2953158	total: 198ms	remaining: 368ms
105:	learn: 34.1807896	total: 200ms	remaining: 365ms
106:	learn: 34.1270167	total: 201ms	remaining: 363ms
107:	learn: 34.0450018	total: 203ms	remaining: 360ms
108:	learn: 33.9252963	total: 204ms	remaining: 358ms
109:	learn: 33.8547744	total: 206ms	remaining: 355ms
110:	learn: 33.7909411	total: 207ms	remaining: 353ms
111:	learn: 33.7132714	total: 209ms	remaining: 351ms
112:	learn: 33.6581506	total: 211ms	remaining: 349ms
113:	learn: 33.5625316	total: 212ms	remaining: 346ms
114:	learn: 33.5124325	total: 214ms	remaining: 344ms
115:	learn: 33.4338263	total: 215ms	remaining: 342ms
116:	learn: 33.3437173	total: 217ms	remaining: 340ms
117:	learn: 33.2930449	total: 219ms	remaining: 337ms
118:	learn: 33.1985472	total: 220ms	remaining: 335ms
119:	learn: 33.1380317	total: 222ms	remaining: 333ms
120:	learn: 33.0512942	total: 224ms	remaining: 331ms
121:	learn: 32.9681207	total: 225ms	remaining: 328ms
122:	learn: 32.9207505	total: 227ms	remaining: 326ms
123:	learn: 32.8315467	total: 229ms	remaining: 324ms
124:	learn: 32.7527284	total: 230ms	remaining: 322ms
125:	learn: 32.6892905	total: 232ms	remaining: 320ms
126:	learn: 32.5821109	total: 233ms	remaining: 318ms
127:	learn: 32.5358388	total: 235ms	remaining: 316ms
128:	learn: 32.4351700	total: 237ms	remaining: 314ms
129:	learn: 32.3739109	total: 239ms	remaining: 312ms
130:	learn: 32.2762003	total: 240ms	remaining: 310ms
131:	learn: 32.2338977	total: 242ms	remaining: 307ms
132:	learn: 32.1480841	total: 243ms	remaining: 306ms
133:	learn: 32.0726124	total: 245ms	remaining: 303ms
134:	learn: 32.0383128	total: 247ms	remaining: 301ms
135:	learn: 31.9909124	total: 248ms	remaining: 299ms
136:	learn: 31.8939530	total: 250ms	remaining: 298ms
137:	learn: 31.8630371	total: 252ms	remaining: 296ms
138:	learn: 31.7837403	total: 254ms	remaining: 294ms
139:	learn: 31.7007092	total: 255ms	remaining: 292ms
140:	learn: 31.6616834	total: 257ms	remaining: 290ms
141:	learn: 31.5668273	total: 259ms	remaining: 288ms
142:	learn: 31.4807015	total: 261ms	remaining: 286ms
143:	learn: 31.4033623	total: 262ms	remaining: 284ms
144:	learn: 31.3344872	total: 264ms	remaining: 282ms
145:	learn: 31.2945254	total: 266ms	remaining: 281ms
146:	learn: 31.2208343	total: 268ms	remaining: 279ms
147:	learn: 31.1302716	total: 269ms	remaining: 277ms
148:	learn: 31.0908961	total: 271ms	remaining: 275ms
149:	learn: 31.0556209	total: 273ms	remaining: 273ms
150:	learn: 31.0165997	total: 275ms	remaining: 271ms
151:	learn: 30.9190456	total: 279ms	remaining: 272ms
152:	learn: 30.8663229	total: 282ms	remaining: 271ms
153:	learn: 30.8277067	total: 285ms	remaining: 270ms
154:	learn: 30.7682740	total: 287ms	remaining: 269ms
155:	learn: 30.7226357	total: 290ms	remaining: 267ms
156:	learn: 30.6737420	total: 292ms	remaining: 266ms
157:	learn: 30.6256145	total: 294ms	remaining: 264ms
158:	learn: 30.5552859	total: 296ms	remaining: 263ms
159:	learn: 30.5015166	total: 298ms	remaining: 261ms
160:	learn: 30.4535031	total: 300ms	remaining: 259ms
161:	learn: 30.3935467	total: 302ms	remaining: 257ms
162:	learn: 30.3582625	total: 304ms	remaining: 255ms
163:	learn: 30.3084406	total: 305ms	remaining: 253ms
164:	learn: 30.2507515	total: 307ms	remaining: 251ms
165:	learn: 30.1815976	total: 309ms	remaining: 249ms
166:	learn: 30.1412976	total: 310ms	remaining: 247ms
167:	learn: 30.1039376	total: 312ms	remaining: 245ms
168:	learn: 30.0604139	total: 314ms	remaining: 243ms
169:	learn: 30.0119626	total: 315ms	remaining: 241ms
170:	learn: 29.9548376	total: 317ms	remaining: 239ms
171:	learn: 29.8943425	total: 318ms	remaining: 237ms
172:	learn: 29.8532264	total: 320ms	remaining: 235ms
173:	learn: 29.7933873	total: 321ms	remaining: 233ms
174:	learn: 29.7528797	total: 323ms	remaining: 231ms
175:	learn: 29.6966980	total: 325ms	remaining: 229ms
176:	learn: 29.6162023	total: 326ms	remaining: 227ms
177:	learn: 29.5854949	total: 328ms	remaining: 225ms
178:	learn: 29.5313557	total: 330ms	remaining: 223ms
179:	learn: 29.4732720	total: 331ms	remaining: 221ms
180:	learn: 29.3952314	total: 333ms	remaining: 219ms
181:	learn: 29.3601031	total: 335ms	remaining: 217ms
182:	learn: 29.2837570	total: 336ms	remaining: 215ms
183:	learn: 29.2055188	total: 338ms	remaining: 213ms
184:	learn: 29.1735242	total: 339ms	remaining: 211ms
185:	learn: 29.1136378	total: 341ms	remaining: 209ms
186:	learn: 29.0831573	total: 343ms	remaining: 207ms
187:	learn: 29.0330322	total: 344ms	remaining: 205ms
188:	learn: 28.9924752	total: 346ms	remaining: 203ms
189:	learn: 28.9234431	total: 348ms	remaining: 201ms
190:	learn: 28.8827720	total: 349ms	remaining: 199ms
191:	learn: 28.8206794	total: 351ms	remaining: 197ms
192:	learn: 28.7840359	total: 352ms	remaining: 195ms
193:	learn: 28.7251888	total: 354ms	remaining: 193ms
194:	learn: 28.6915701	total: 356ms	remaining: 192ms
195:	learn: 28.6439960	total: 357ms	remaining: 190ms
196:	learn: 28.6278039	total: 359ms	remaining: 188ms
197:	learn: 28.5934117	total: 360ms	remaining: 186ms
198:	learn: 28.5674495	total: 362ms	remaining: 184ms
199:	learn: 28.5017159	total: 364ms	remaining: 182ms
200:	learn: 28.4439908	total: 365ms	remaining: 180ms
201:	learn: 28.3907752	total: 367ms	remaining: 178ms
202:	learn: 28.3584519	total: 368ms	remaining: 176ms
203:	learn: 28.3029473	total: 370ms	remaining: 174ms
204:	learn: 28.2570613	total: 371ms	remaining: 172ms
205:	learn: 28.2111445	total: 373ms	remaining: 170ms
206:	learn: 28.1878815	total: 374ms	remaining: 168ms
207:	learn: 28.1408466	total: 376ms	remaining: 166ms
208:	learn: 28.1076337	total: 377ms	remaining: 164ms
209:	learn: 28.0511354	total: 379ms	remaining: 162ms
210:	learn: 28.0197018	total: 380ms	remaining: 160ms
211:	learn: 27.9819110	total: 382ms	remaining: 158ms
212:	learn: 27.9392364	total: 383ms	remaining: 156ms
213:	learn: 27.8993734	total: 385ms	remaining: 155ms
214:	learn: 27.8657981	total: 386ms	remaining: 153ms
215:	learn: 27.8438665	total: 388ms	remaining: 151ms
216:	learn: 27.8009927	total: 390ms	remaining: 149ms
217:	learn: 27.7756878	total: 391ms	remaining: 147ms
218:	learn: 27.7432363	total: 393ms	remaining: 145ms
219:	learn: 27.7048718	total: 394ms	remaining: 143ms
220:	learn: 27.6546169	total: 396ms	remaining: 141ms
221:	learn: 27.6044002	total: 397ms	remaining: 140ms
222:	learn: 27.5794507	total: 399ms	remaining: 138ms
223:	learn: 27.5204296	total: 400ms	remaining: 136ms
224:	learn: 27.4722729	total: 402ms	remaining: 134ms
225:	learn: 27.4114505	total: 403ms	remaining: 132ms
226:	learn: 27.3896347	total: 405ms	remaining: 130ms
227:	learn: 27.3224945	total: 406ms	remaining: 128ms
228:	learn: 27.2500493	total: 408ms	remaining: 126ms
229:	learn: 27.2169685	total: 409ms	remaining: 124ms
230:	learn: 27.2052299	total: 410ms	remaining: 123ms
231:	learn: 27.1530864	total: 412ms	remaining: 121ms
232:	learn: 27.0937869	total: 414ms	remaining: 119ms
233:	learn: 27.0555859	total: 415ms	remaining: 117ms
234:	learn: 27.0076350	total: 417ms	remaining: 115ms
235:	learn: 26.9628005	total: 418ms	remaining: 113ms
236:	learn: 26.9341788	total: 420ms	remaining: 112ms
237:	learn: 26.8737120	total: 421ms	remaining: 110ms
238:	learn: 26.8614128	total: 422ms	remaining: 108ms
239:	learn: 26.8377714	total: 424ms	remaining: 106ms
240:	learn: 26.8155923	total: 425ms	remaining: 104ms
241:	learn: 26.7638821	total: 427ms	remaining: 102ms
242:	learn: 26.7494544	total: 429ms	remaining: 101ms
243:	learn: 26.7205058	total: 431ms	remaining: 98.9ms
244:	learn: 26.6589465	total: 433ms	remaining: 97.1ms
245:	learn: 26.6100918	total: 434ms	remaining: 95.3ms
246:	learn: 26.5742240	total: 436ms	remaining: 93.5ms
247:	learn: 26.5102073	total: 437ms	remaining: 91.6ms
248:	learn: 26.4875513	total: 439ms	remaining: 89.8ms
249:	learn: 26.4443390	total: 440ms	remaining: 88ms
250:	learn: 26.4140994	total: 442ms	remaining: 86.2ms
251:	learn: 26.3620365	total: 443ms	remaining: 84.4ms
252:	learn: 26.3184758	total: 445ms	remaining: 82.7ms
253:	learn: 26.2707910	total: 447ms	remaining: 80.9ms
254:	learn: 26.2271234	total: 448ms	remaining: 79.1ms
255:	learn: 26.1733229	total: 450ms	remaining: 77.4ms
256:	learn: 26.1287322	total: 452ms	remaining: 75.6ms
257:	learn: 26.0565532	total: 454ms	remaining: 73.8ms
258:	learn: 26.0175785	total: 455ms	remaining: 72.1ms
259:	learn: 25.9821043	total: 457ms	remaining: 70.3ms
260:	learn: 25.9380814	total: 458ms	remaining: 68.5ms
261:	learn: 25.9000999	total: 460ms	remaining: 66.7ms
262:	learn: 25.8829325	total: 462ms	remaining: 65ms
263:	learn: 25.8690017	total: 464ms	remaining: 63.2ms
264:	learn: 25.8414419	total: 466ms	remaining: 61.5ms
265:	learn: 25.7788947	total: 467ms	remaining: 59.7ms
266:	learn: 25.7682938	total: 470ms	remaining: 58.1ms
267:	learn: 25.7327495	total: 473ms	remaining: 56.5ms
268:	learn: 25.6839122	total: 476ms	remaining: 54.8ms
269:	learn: 25.6422713	total: 478ms	remaining: 53.2ms
270:	learn: 25.5909099	total: 481ms	remaining: 51.5ms
271:	learn: 25.5702527	total: 485ms	remaining: 50ms
272:	learn: 25.5551111	total: 489ms	remaining: 48.3ms
273:	learn: 25.5369906	total: 492ms	remaining: 46.7ms
274:	learn: 25.5164874	total: 494ms	remaining: 44.9ms
275:	learn: 25.4960609	total: 496ms	remaining: 43.1ms
276:	learn: 25.4599689	total: 498ms	remaining: 41.3ms
277:	learn: 25.4331658	total: 500ms	remaining: 39.5ms
278:	learn: 25.3843746	total: 502ms	remaining: 37.8ms
279:	learn: 25.3471515	total: 504ms	remaining: 36ms
280:	learn: 25.3324997	total: 506ms	remaining: 34.2ms
281:	learn: 25.2875551	total: 508ms	remaining: 32.4ms
282:	learn: 25.2631185	total: 510ms	remaining: 30.6ms
283:	learn: 25.2508484	total: 512ms	remaining: 28.9ms
284:	learn: 25.2338508	total: 514ms	remaining: 27.1ms
285:	learn: 25.2008818	total: 516ms	remaining: 25.3ms
286:	learn: 25.1524935	total: 518ms	remaining: 23.5ms
287:	learn: 25.1260195	total: 520ms	remaining: 21.7ms
288:	learn: 25.1140222	total: 522ms	remaining: 19.9ms
289:	learn: 25.0956490	total: 524ms	remaining: 18.1ms
290:	learn: 25.0663175	total: 526ms	remaining: 16.3ms
291:	learn: 25.0400041	total: 528ms	remaining: 14.5ms
292:	learn: 25.0127957	total: 530ms	remaining: 12.7ms
293:	learn: 24.9756745	total: 532ms	remaining: 10.9ms
294:	learn: 24.9560703	total: 534ms	remaining: 9.05ms
295:	learn: 24.9197109	total: 536ms	remaining: 7.24ms
296:	learn: 24.9052226	total: 538ms	remaining: 5.43ms
297:	learn: 24.8634416	total: 540ms	remaining: 3.63ms
298:	learn: 24.8422841	total: 543ms	remaining: 1.81ms
299:	learn: 24.7909609	total: 545ms	remaining: 0us
0:	learn: 27.7312900	total: 2.82ms	remaining: 842ms
1:	learn: 27.4345051	total: 5.35ms	remaining: 798ms
2:	learn: 27.1425124	total: 7.95ms	remaining: 787ms
3:	learn: 26.8475638	total: 10.5ms	remaining: 778ms
4:	learn: 26.5821374	total: 13.2ms	remaining: 777ms
5:	learn: 26.3397160	total: 15.8ms	remaining: 774ms
6:	learn: 26.1213921	total: 18.6ms	remaining: 777ms
7:	learn: 25.8980881	total: 21.2ms	remaining: 775ms
8:	learn: 25.6718230	total: 23.7ms	remaining: 767ms
9:	learn: 25.4732059	total: 26.3ms	remaining: 764ms
10:	learn: 25.2816413	total: 29.1ms	remaining: 764ms
11:	learn: 25.1075454	total: 31.5ms	remaining: 757ms
12:	learn: 24.8902329	total: 34.2ms	remaining: 755ms
13:	learn: 24.6868998	total: 36.9ms	remaining: 754ms
14:	learn: 24.5005507	total: 39.6ms	remaining: 753ms
15:	learn: 24.3467102	total: 42.2ms	remaining: 750ms
16:	learn: 24.1934515	total: 44.8ms	remaining: 746ms
17:	learn: 24.0617252	total: 47.4ms	remaining: 743ms
18:	learn: 23.9144621	total: 50ms	remaining: 740ms
19:	learn: 23.7827575	total: 52.4ms	remaining: 733ms
20:	learn: 23.6570262	total: 55.2ms	remaining: 733ms
21:	learn: 23.5390088	total: 57.8ms	remaining: 731ms
22:	learn: 23.4194874	total: 60.5ms	remaining: 729ms
23:	learn: 23.2835722	total: 63.2ms	remaining: 727ms
24:	learn: 23.1649380	total: 65.8ms	remaining: 724ms
25:	learn: 23.0651661	total: 68.5ms	remaining: 722ms
26:	learn: 22.9543236	total: 71.5ms	remaining: 723ms
27:	learn: 22.8337994	total: 74.3ms	remaining: 722ms
28:	learn: 22.7211544	total: 77ms	remaining: 719ms
29:	learn: 22.6584406	total: 81.4ms	remaining: 732ms
30:	learn: 22.5599683	total: 84.5ms	remaining: 733ms
31:	learn: 22.4445395	total: 87.5ms	remaining: 733ms
32:	learn: 22.3623498	total: 91.1ms	remaining: 737ms
33:	learn: 22.2367304	total: 94.2ms	remaining: 737ms
34:	learn: 22.1434406	total: 97.1ms	remaining: 735ms
35:	learn: 22.0662446	total: 100ms	remaining: 734ms
36:	learn: 22.0037980	total: 103ms	remaining: 733ms
37:	learn: 21.9403619	total: 107ms	remaining: 737ms
38:	learn: 21.8234862	total: 110ms	remaining: 734ms
39:	learn: 21.7499182	total: 113ms	remaining: 732ms
40:	learn: 21.6439987	total: 115ms	remaining: 729ms
41:	learn: 21.5870427	total: 118ms	remaining: 728ms
42:	learn: 21.4999423	total: 121ms	remaining: 724ms
43:	learn: 21.4120162	total: 124ms	remaining: 722ms
44:	learn: 21.3475153	total: 127ms	remaining: 719ms
45:	learn: 21.2562143	total: 130ms	remaining: 716ms
46:	learn: 21.2081957	total: 132ms	remaining: 711ms
47:	learn: 21.1364479	total: 135ms	remaining: 706ms
48:	learn: 21.0931940	total: 137ms	remaining: 702ms
49:	learn: 21.0244313	total: 140ms	remaining: 698ms
50:	learn: 20.9568833	total: 142ms	remaining: 694ms
51:	learn: 20.8802424	total: 145ms	remaining: 691ms
52:	learn: 20.8227013	total: 147ms	remaining: 686ms
53:	learn: 20.7222412	total: 150ms	remaining: 683ms
54:	learn: 20.6633618	total: 152ms	remaining: 679ms
55:	learn: 20.5876044	total: 155ms	remaining: 676ms
56:	learn: 20.5355883	total: 158ms	remaining: 673ms
57:	learn: 20.4641031	total: 161ms	remaining: 670ms
58:	learn: 20.4053936	total: 163ms	remaining: 666ms
59:	learn: 20.3565704	total: 166ms	remaining: 662ms
60:	learn: 20.3015867	total: 168ms	remaining: 659ms
61:	learn: 20.2661543	total: 171ms	remaining: 655ms
62:	learn: 20.2247908	total: 173ms	remaining: 652ms
63:	learn: 20.1686760	total: 176ms	remaining: 650ms
64:	learn: 20.1286204	total: 179ms	remaining: 647ms
65:	learn: 20.0728550	total: 181ms	remaining: 643ms
66:	learn: 20.0282701	total: 184ms	remaining: 639ms
67:	learn: 19.9801200	total: 186ms	remaining: 636ms
68:	learn: 19.9360378	total: 189ms	remaining: 632ms
69:	learn: 19.9150158	total: 192ms	remaining: 630ms
70:	learn: 19.8665453	total: 194ms	remaining: 626ms
71:	learn: 19.8137515	total: 197ms	remaining: 623ms
72:	learn: 19.7489489	total: 199ms	remaining: 619ms
73:	learn: 19.7238468	total: 202ms	remaining: 616ms
74:	learn: 19.6951289	total: 204ms	remaining: 612ms
75:	learn: 19.6481767	total: 207ms	remaining: 610ms
76:	learn: 19.5950392	total: 209ms	remaining: 606ms
77:	learn: 19.5231073	total: 212ms	remaining: 603ms
78:	learn: 19.4767695	total: 214ms	remaining: 600ms
79:	learn: 19.4113165	total: 217ms	remaining: 597ms
80:	learn: 19.3709673	total: 220ms	remaining: 594ms
81:	learn: 19.3506758	total: 222ms	remaining: 591ms
82:	learn: 19.3030442	total: 226ms	remaining: 590ms
83:	learn: 19.2446413	total: 229ms	remaining: 588ms
84:	learn: 19.1820890	total: 231ms	remaining: 585ms
85:	learn: 19.1476679	total: 234ms	remaining: 583ms
86:	learn: 19.1148485	total: 237ms	remaining: 581ms
87:	learn: 19.0614575	total: 240ms	remaining: 578ms
88:	learn: 19.0063636	total: 243ms	remaining: 575ms
89:	learn: 18.9796567	total: 246ms	remaining: 573ms
90:	learn: 18.9585258	total: 248ms	remaining: 571ms
91:	learn: 18.9351618	total: 251ms	remaining: 568ms
92:	learn: 18.9197432	total: 254ms	remaining: 565ms
93:	learn: 18.8799610	total: 257ms	remaining: 563ms
94:	learn: 18.8462221	total: 260ms	remaining: 560ms
95:	learn: 18.8146640	total: 262ms	remaining: 557ms
96:	learn: 18.7771602	total: 265ms	remaining: 555ms
97:	learn: 18.7607506	total: 268ms	remaining: 552ms
98:	learn: 18.7373497	total: 271ms	remaining: 549ms
99:	learn: 18.6758022	total: 274ms	remaining: 547ms
100:	learn: 18.6305036	total: 278ms	remaining: 549ms
101:	learn: 18.5708026	total: 282ms	remaining: 547ms
102:	learn: 18.4983385	total: 286ms	remaining: 547ms
103:	learn: 18.4631649	total: 290ms	remaining: 546ms
104:	learn: 18.4157925	total: 294ms	remaining: 546ms
105:	learn: 18.3873941	total: 298ms	remaining: 545ms
106:	learn: 18.3249897	total: 301ms	remaining: 543ms
107:	learn: 18.2895823	total: 305ms	remaining: 542ms
108:	learn: 18.2657777	total: 308ms	remaining: 540ms
109:	learn: 18.2307536	total: 312ms	remaining: 539ms
110:	learn: 18.2083493	total: 315ms	remaining: 536ms
111:	learn: 18.1899823	total: 318ms	remaining: 533ms
112:	learn: 18.1235957	total: 321ms	remaining: 531ms
113:	learn: 18.1103408	total: 324ms	remaining: 528ms
114:	learn: 18.0780360	total: 327ms	remaining: 526ms
115:	learn: 18.0508736	total: 330ms	remaining: 524ms
116:	learn: 18.0232945	total: 334ms	remaining: 522ms
117:	learn: 17.9671231	total: 337ms	remaining: 520ms
118:	learn: 17.9433138	total: 340ms	remaining: 517ms
119:	learn: 17.9137201	total: 343ms	remaining: 514ms
120:	learn: 17.8847143	total: 346ms	remaining: 511ms
121:	learn: 17.8398082	total: 349ms	remaining: 508ms
122:	learn: 17.7872161	total: 352ms	remaining: 506ms
123:	learn: 17.7598726	total: 355ms	remaining: 503ms
124:	learn: 17.7343256	total: 358ms	remaining: 501ms
125:	learn: 17.7178855	total: 361ms	remaining: 498ms
126:	learn: 17.6656618	total: 363ms	remaining: 495ms
127:	learn: 17.6524308	total: 366ms	remaining: 492ms
128:	learn: 17.5994985	total: 368ms	remaining: 488ms
129:	learn: 17.5686895	total: 371ms	remaining: 485ms
130:	learn: 17.5205541	total: 374ms	remaining: 482ms
131:	learn: 17.5110354	total: 376ms	remaining: 479ms
132:	learn: 17.4795266	total: 379ms	remaining: 476ms
133:	learn: 17.4449643	total: 381ms	remaining: 472ms
134:	learn: 17.4021873	total: 384ms	remaining: 470ms
135:	learn: 17.3842979	total: 387ms	remaining: 466ms
136:	learn: 17.3697747	total: 389ms	remaining: 463ms
137:	learn: 17.3463751	total: 392ms	remaining: 460ms
138:	learn: 17.3295649	total: 395ms	remaining: 457ms
139:	learn: 17.3038425	total: 397ms	remaining: 454ms
140:	learn: 17.2872925	total: 400ms	remaining: 451ms
141:	learn: 17.2611398	total: 403ms	remaining: 448ms
142:	learn: 17.2198584	total: 406ms	remaining: 445ms
143:	learn: 17.2032926	total: 408ms	remaining: 442ms
144:	learn: 17.1872421	total: 411ms	remaining: 439ms
145:	learn: 17.1493319	total: 413ms	remaining: 436ms
146:	learn: 17.1173765	total: 416ms	remaining: 433ms
147:	learn: 17.0722474	total: 419ms	remaining: 430ms
148:	learn: 17.0503186	total: 421ms	remaining: 427ms
149:	learn: 17.0355879	total: 424ms	remaining: 424ms
150:	learn: 17.0106740	total: 426ms	remaining: 421ms
151:	learn: 16.9789025	total: 429ms	remaining: 418ms
152:	learn: 16.9634907	total: 432ms	remaining: 415ms
153:	learn: 16.9427293	total: 435ms	remaining: 412ms
154:	learn: 16.9251857	total: 437ms	remaining: 409ms
155:	learn: 16.9031994	total: 440ms	remaining: 406ms
156:	learn: 16.8688919	total: 443ms	remaining: 403ms
157:	learn: 16.8514832	total: 445ms	remaining: 400ms
158:	learn: 16.8390128	total: 448ms	remaining: 397ms
159:	learn: 16.8214250	total: 451ms	remaining: 394ms
160:	learn: 16.8054104	total: 453ms	remaining: 391ms
161:	learn: 16.7887678	total: 456ms	remaining: 389ms
162:	learn: 16.7752283	total: 459ms	remaining: 385ms
163:	learn: 16.7568796	total: 461ms	remaining: 383ms
164:	learn: 16.7447065	total: 464ms	remaining: 380ms
165:	learn: 16.7331887	total: 467ms	remaining: 377ms
166:	learn: 16.7182709	total: 471ms	remaining: 375ms
167:	learn: 16.7040219	total: 476ms	remaining: 374ms
168:	learn: 16.6896583	total: 479ms	remaining: 372ms
169:	learn: 16.6763579	total: 484ms	remaining: 370ms
170:	learn: 16.6585652	total: 487ms	remaining: 367ms
171:	learn: 16.6373452	total: 491ms	remaining: 365ms
172:	learn: 16.6257215	total: 494ms	remaining: 362ms
173:	learn: 16.6121147	total: 497ms	remaining: 360ms
174:	learn: 16.6010098	total: 500ms	remaining: 357ms
175:	learn: 16.5852799	total: 503ms	remaining: 354ms
176:	learn: 16.5743006	total: 506ms	remaining: 351ms
177:	learn: 16.5654853	total: 508ms	remaining: 348ms
178:	learn: 16.5561067	total: 511ms	remaining: 345ms
179:	learn: 16.5436645	total: 514ms	remaining: 342ms
180:	learn: 16.5370845	total: 516ms	remaining: 339ms
181:	learn: 16.5201103	total: 519ms	remaining: 336ms
182:	learn: 16.5114639	total: 521ms	remaining: 333ms
183:	learn: 16.4961672	total: 524ms	remaining: 330ms
184:	learn: 16.4815908	total: 527ms	remaining: 328ms
185:	learn: 16.4689331	total: 530ms	remaining: 325ms
186:	learn: 16.4186717	total: 532ms	remaining: 322ms
187:	learn: 16.4094779	total: 535ms	remaining: 319ms
188:	learn: 16.3910182	total: 538ms	remaining: 316ms
189:	learn: 16.3779840	total: 540ms	remaining: 313ms
190:	learn: 16.3701409	total: 543ms	remaining: 310ms
191:	learn: 16.3570343	total: 545ms	remaining: 307ms
192:	learn: 16.3480252	total: 548ms	remaining: 304ms
193:	learn: 16.3357711	total: 551ms	remaining: 301ms
194:	learn: 16.3202159	total: 553ms	remaining: 298ms
195:	learn: 16.3009914	total: 556ms	remaining: 295ms
196:	learn: 16.2794832	total: 559ms	remaining: 292ms
197:	learn: 16.2689241	total: 561ms	remaining: 289ms
198:	learn: 16.2569964	total: 564ms	remaining: 286ms
199:	learn: 16.2501074	total: 566ms	remaining: 283ms
200:	learn: 16.2334635	total: 569ms	remaining: 280ms
201:	learn: 16.2266659	total: 572ms	remaining: 277ms
202:	learn: 16.2114835	total: 575ms	remaining: 275ms
203:	learn: 16.1979142	total: 577ms	remaining: 272ms
204:	learn: 16.1600146	total: 580ms	remaining: 269ms
205:	learn: 16.1506784	total: 582ms	remaining: 266ms
206:	learn: 16.1271620	total: 585ms	remaining: 263ms
207:	learn: 16.1165719	total: 588ms	remaining: 260ms
208:	learn: 16.1071036	total: 590ms	remaining: 257ms
209:	learn: 16.0960975	total: 593ms	remaining: 254ms
210:	learn: 16.0912426	total: 595ms	remaining: 251ms
211:	learn: 16.0815767	total: 598ms	remaining: 248ms
212:	learn: 16.0740703	total: 600ms	remaining: 245ms
213:	learn: 16.0647717	total: 603ms	remaining: 242ms
214:	learn: 16.0457862	total: 606ms	remaining: 240ms
215:	learn: 16.0116488	total: 609ms	remaining: 237ms
216:	learn: 15.9972994	total: 611ms	remaining: 234ms
217:	learn: 15.9922950	total: 614ms	remaining: 231ms
218:	learn: 15.9739390	total: 617ms	remaining: 228ms
219:	learn: 15.9614315	total: 619ms	remaining: 225ms
220:	learn: 15.9280196	total: 622ms	remaining: 222ms
221:	learn: 15.9199164	total: 625ms	remaining: 220ms
222:	learn: 15.8979388	total: 628ms	remaining: 217ms
223:	learn: 15.8893001	total: 631ms	remaining: 214ms
224:	learn: 15.8861983	total: 633ms	remaining: 211ms
225:	learn: 15.8680711	total: 636ms	remaining: 208ms
226:	learn: 15.8411853	total: 639ms	remaining: 205ms
227:	learn: 15.7998380	total: 641ms	remaining: 203ms
228:	learn: 15.7927323	total: 644ms	remaining: 200ms
229:	learn: 15.7876029	total: 647ms	remaining: 197ms
230:	learn: 15.7660185	total: 650ms	remaining: 194ms
231:	learn: 15.7639805	total: 653ms	remaining: 191ms
232:	learn: 15.7486342	total: 655ms	remaining: 188ms
233:	learn: 15.7443809	total: 658ms	remaining: 186ms
234:	learn: 15.7368660	total: 661ms	remaining: 183ms
235:	learn: 15.7051393	total: 664ms	remaining: 180ms
236:	learn: 15.6681163	total: 667ms	remaining: 177ms
237:	learn: 15.6460505	total: 672ms	remaining: 175ms
238:	learn: 15.6299332	total: 677ms	remaining: 173ms
239:	learn: 15.6023445	total: 683ms	remaining: 171ms
240:	learn: 15.5832347	total: 689ms	remaining: 169ms
241:	learn: 15.5603685	total: 693ms	remaining: 166ms
242:	learn: 15.5570262	total: 697ms	remaining: 164ms
243:	learn: 15.5522753	total: 701ms	remaining: 161ms
244:	learn: 15.5458460	total: 704ms	remaining: 158ms
245:	learn: 15.5411812	total: 707ms	remaining: 155ms
246:	learn: 15.5109506	total: 710ms	remaining: 152ms
247:	learn: 15.4750391	total: 713ms	remaining: 150ms
248:	learn: 15.4441882	total: 716ms	remaining: 147ms
249:	learn: 15.4216198	total: 719ms	remaining: 144ms
250:	learn: 15.3938407	total: 723ms	remaining: 141ms
251:	learn: 15.3856581	total: 726ms	remaining: 138ms
252:	learn: 15.3651829	total: 729ms	remaining: 135ms
253:	learn: 15.3574027	total: 732ms	remaining: 133ms
254:	learn: 15.3524848	total: 735ms	remaining: 130ms
255:	learn: 15.3407760	total: 738ms	remaining: 127ms
256:	learn: 15.3220247	total: 742ms	remaining: 124ms
257:	learn: 15.3173742	total: 745ms	remaining: 121ms
258:	learn: 15.3129730	total: 748ms	remaining: 118ms
259:	learn: 15.3055685	total: 751ms	remaining: 116ms
260:	learn: 15.2878623	total: 755ms	remaining: 113ms
261:	learn: 15.2616569	total: 757ms	remaining: 110ms
262:	learn: 15.2495088	total: 760ms	remaining: 107ms
263:	learn: 15.2362299	total: 763ms	remaining: 104ms
264:	learn: 15.2170490	total: 765ms	remaining: 101ms
265:	learn: 15.1979748	total: 768ms	remaining: 98.2ms
266:	learn: 15.1798322	total: 771ms	remaining: 95.3ms
267:	learn: 15.1667244	total: 774ms	remaining: 92.4ms
268:	learn: 15.1450562	total: 777ms	remaining: 89.5ms
269:	learn: 15.1182756	total: 779ms	remaining: 86.6ms
270:	learn: 15.0930465	total: 782ms	remaining: 83.7ms
271:	learn: 15.0691949	total: 785ms	remaining: 80.8ms
272:	learn: 15.0544279	total: 787ms	remaining: 77.9ms
273:	learn: 15.0426441	total: 790ms	remaining: 75ms
274:	learn: 15.0384055	total: 793ms	remaining: 72.1ms
275:	learn: 15.0175909	total: 796ms	remaining: 69.2ms
276:	learn: 15.0081346	total: 798ms	remaining: 66.3ms
277:	learn: 14.9823017	total: 801ms	remaining: 63.4ms
278:	learn: 14.9514776	total: 803ms	remaining: 60.5ms
279:	learn: 14.9354205	total: 806ms	remaining: 57.6ms
280:	learn: 14.9048664	total: 808ms	remaining: 54.6ms
281:	learn: 14.8971730	total: 811ms	remaining: 51.8ms
282:	learn: 14.8873825	total: 814ms	remaining: 48.9ms
283:	learn: 14.8829176	total: 816ms	remaining: 46ms
284:	learn: 14.8693626	total: 819ms	remaining: 43.1ms
285:	learn: 14.8466081	total: 822ms	remaining: 40.2ms
286:	learn: 14.8426234	total: 824ms	remaining: 37.3ms
287:	learn: 14.8230183	total: 827ms	remaining: 34.5ms
288:	learn: 14.7843247	total: 829ms	remaining: 31.6ms
289:	learn: 14.7651722	total: 832ms	remaining: 28.7ms
290:	learn: 14.7475908	total: 835ms	remaining: 25.8ms
291:	learn: 14.7314700	total: 837ms	remaining: 22.9ms
292:	learn: 14.7109677	total: 840ms	remaining: 20.1ms
293:	learn: 14.6874941	total: 843ms	remaining: 17.2ms
294:	learn: 14.6833408	total: 845ms	remaining: 14.3ms
295:	learn: 14.6645573	total: 848ms	remaining: 11.5ms
296:	learn: 14.6606785	total: 851ms	remaining: 8.6ms
297:	learn: 14.6527076	total: 855ms	remaining: 5.74ms
298:	learn: 14.6342205	total: 858ms	remaining: 2.87ms
299:	learn: 14.6130851	total: 861ms	remaining: 0us
0:	learn: 43.6482444	total: 2.98ms	remaining: 890ms
1:	learn: 43.3158816	total: 5.83ms	remaining: 869ms
2:	learn: 43.0158692	total: 8.49ms	remaining: 840ms
3:	learn: 42.7644247	total: 11.2ms	remaining: 828ms
4:	learn: 42.4924895	total: 13.8ms	remaining: 816ms
5:	learn: 42.1964718	total: 16.6ms	remaining: 816ms
6:	learn: 41.9185673	total: 19.4ms	remaining: 813ms
7:	learn: 41.6794357	total: 22.2ms	remaining: 810ms
8:	learn: 41.4860116	total: 25ms	remaining: 807ms
9:	learn: 41.2303714	total: 27.7ms	remaining: 803ms
10:	learn: 41.0563835	total: 30.6ms	remaining: 804ms
11:	learn: 40.8271047	total: 33.3ms	remaining: 799ms
12:	learn: 40.6678311	total: 36.2ms	remaining: 800ms
13:	learn: 40.4273239	total: 39.1ms	remaining: 798ms
14:	learn: 40.2326783	total: 41.8ms	remaining: 794ms
15:	learn: 40.0330670	total: 44.8ms	remaining: 795ms
16:	learn: 39.8000172	total: 47.7ms	remaining: 794ms
17:	learn: 39.6774120	total: 50.8ms	remaining: 796ms
18:	learn: 39.4814023	total: 53.6ms	remaining: 793ms
19:	learn: 39.3190402	total: 56.5ms	remaining: 791ms
20:	learn: 39.1483334	total: 59.5ms	remaining: 791ms
21:	learn: 38.9609174	total: 62.1ms	remaining: 785ms
22:	learn: 38.8972692	total: 63ms	remaining: 759ms
23:	learn: 38.7163560	total: 65.8ms	remaining: 757ms
24:	learn: 38.5704797	total: 68.5ms	remaining: 754ms
25:	learn: 38.3358853	total: 71.3ms	remaining: 751ms
26:	learn: 38.1942411	total: 73.8ms	remaining: 746ms
27:	learn: 38.0308461	total: 76.5ms	remaining: 743ms
28:	learn: 37.8892543	total: 79.2ms	remaining: 740ms
29:	learn: 37.7625316	total: 81.7ms	remaining: 736ms
30:	learn: 37.6164457	total: 84.5ms	remaining: 733ms
31:	learn: 37.4980450	total: 87ms	remaining: 729ms
32:	learn: 37.3667729	total: 89.6ms	remaining: 725ms
33:	learn: 37.2366840	total: 92.2ms	remaining: 722ms
34:	learn: 37.1797616	total: 94.8ms	remaining: 718ms
35:	learn: 37.0132521	total: 97.4ms	remaining: 714ms
36:	learn: 36.8380130	total: 100ms	remaining: 711ms
37:	learn: 36.7565362	total: 103ms	remaining: 709ms
38:	learn: 36.6853080	total: 106ms	remaining: 707ms
39:	learn: 36.5828529	total: 108ms	remaining: 704ms
40:	learn: 36.4360531	total: 111ms	remaining: 701ms
41:	learn: 36.3332917	total: 114ms	remaining: 699ms
42:	learn: 36.2341817	total: 116ms	remaining: 695ms
43:	learn: 36.1582098	total: 119ms	remaining: 693ms
44:	learn: 36.0613820	total: 122ms	remaining: 692ms
45:	learn: 35.9799685	total: 125ms	remaining: 688ms
46:	learn: 35.8917271	total: 127ms	remaining: 685ms
47:	learn: 35.7375034	total: 130ms	remaining: 682ms
48:	learn: 35.6402272	total: 132ms	remaining: 679ms
49:	learn: 35.5430556	total: 135ms	remaining: 676ms
50:	learn: 35.4338278	total: 138ms	remaining: 674ms
51:	learn: 35.3650399	total: 141ms	remaining: 672ms
52:	learn: 35.3005814	total: 145ms	remaining: 674ms
53:	learn: 35.2414914	total: 148ms	remaining: 675ms
54:	learn: 35.1728672	total: 152ms	remaining: 676ms
55:	learn: 35.1234852	total: 155ms	remaining: 675ms
56:	learn: 35.0305233	total: 158ms	remaining: 673ms
57:	learn: 34.9710937	total: 161ms	remaining: 673ms
58:	learn: 34.8375739	total: 165ms	remaining: 675ms
59:	learn: 34.7117519	total: 169ms	remaining: 675ms
60:	learn: 34.5571775	total: 173ms	remaining: 676ms
61:	learn: 34.5153214	total: 176ms	remaining: 674ms
62:	learn: 34.4301243	total: 179ms	remaining: 672ms
63:	learn: 34.3463814	total: 182ms	remaining: 670ms
64:	learn: 34.3179530	total: 185ms	remaining: 668ms
65:	learn: 34.2555212	total: 188ms	remaining: 666ms
66:	learn: 34.1690374	total: 191ms	remaining: 665ms
67:	learn: 34.0248512	total: 194ms	remaining: 662ms
68:	learn: 33.9698972	total: 197ms	remaining: 660ms
69:	learn: 33.8509795	total: 200ms	remaining: 658ms
70:	learn: 33.8002588	total: 204ms	remaining: 657ms
71:	learn: 33.7456648	total: 207ms	remaining: 655ms
72:	learn: 33.7146982	total: 210ms	remaining: 653ms
73:	learn: 33.6796817	total: 213ms	remaining: 651ms
74:	learn: 33.6143400	total: 216ms	remaining: 649ms
75:	learn: 33.5534587	total: 220ms	remaining: 647ms
76:	learn: 33.4765959	total: 223ms	remaining: 646ms
77:	learn: 33.4115857	total: 226ms	remaining: 643ms
78:	learn: 33.3613147	total: 229ms	remaining: 640ms
79:	learn: 33.3224263	total: 232ms	remaining: 638ms
80:	learn: 33.3010529	total: 235ms	remaining: 635ms
81:	learn: 33.2339440	total: 238ms	remaining: 633ms
82:	learn: 33.1851243	total: 241ms	remaining: 631ms
83:	learn: 33.1524810	total: 244ms	remaining: 629ms
84:	learn: 33.0498044	total: 248ms	remaining: 626ms
85:	learn: 33.0048447	total: 251ms	remaining: 624ms
86:	learn: 32.9355513	total: 254ms	remaining: 621ms
87:	learn: 32.8886521	total: 257ms	remaining: 618ms
88:	learn: 32.8579320	total: 259ms	remaining: 615ms
89:	learn: 32.7833882	total: 262ms	remaining: 610ms
90:	learn: 32.6941961	total: 264ms	remaining: 607ms
91:	learn: 32.6391156	total: 267ms	remaining: 603ms
92:	learn: 32.6092306	total: 270ms	remaining: 600ms
93:	learn: 32.5918160	total: 272ms	remaining: 597ms
94:	learn: 32.5517432	total: 275ms	remaining: 593ms
95:	learn: 32.5209346	total: 278ms	remaining: 590ms
96:	learn: 32.4040893	total: 280ms	remaining: 586ms
97:	learn: 32.3649089	total: 283ms	remaining: 583ms
98:	learn: 32.2767947	total: 285ms	remaining: 579ms
99:	learn: 32.2589610	total: 288ms	remaining: 576ms
100:	learn: 32.2358338	total: 291ms	remaining: 572ms
101:	learn: 32.1963939	total: 293ms	remaining: 569ms
102:	learn: 32.1781515	total: 296ms	remaining: 565ms
103:	learn: 32.1372767	total: 298ms	remaining: 562ms
104:	learn: 32.0444404	total: 301ms	remaining: 559ms
105:	learn: 31.9326967	total: 304ms	remaining: 556ms
106:	learn: 31.8698426	total: 306ms	remaining: 553ms
107:	learn: 31.7975900	total: 309ms	remaining: 549ms
108:	learn: 31.7097248	total: 312ms	remaining: 546ms
109:	learn: 31.6783205	total: 314ms	remaining: 543ms
110:	learn: 31.6537297	total: 318ms	remaining: 541ms
111:	learn: 31.6190255	total: 320ms	remaining: 538ms
112:	learn: 31.5739933	total: 323ms	remaining: 535ms
113:	learn: 31.4897981	total: 327ms	remaining: 533ms
114:	learn: 31.4574878	total: 329ms	remaining: 530ms
115:	learn: 31.4432269	total: 332ms	remaining: 527ms
116:	learn: 31.3622979	total: 335ms	remaining: 525ms
117:	learn: 31.3465111	total: 338ms	remaining: 522ms
118:	learn: 31.3106549	total: 341ms	remaining: 519ms
119:	learn: 31.2722468	total: 344ms	remaining: 516ms
120:	learn: 31.2412076	total: 347ms	remaining: 513ms
121:	learn: 31.2001279	total: 352ms	remaining: 513ms
122:	learn: 31.1587149	total: 355ms	remaining: 511ms
123:	learn: 31.1007599	total: 358ms	remaining: 509ms
124:	learn: 31.0351312	total: 362ms	remaining: 506ms
125:	learn: 30.9714229	total: 365ms	remaining: 504ms
126:	learn: 30.9236683	total: 368ms	remaining: 501ms
127:	learn: 30.8856392	total: 371ms	remaining: 498ms
128:	learn: 30.8225652	total: 374ms	remaining: 496ms
129:	learn: 30.7939910	total: 377ms	remaining: 493ms
130:	learn: 30.7084962	total: 379ms	remaining: 489ms
131:	learn: 30.6568521	total: 382ms	remaining: 486ms
132:	learn: 30.6169844	total: 385ms	remaining: 483ms
133:	learn: 30.5416727	total: 387ms	remaining: 480ms
134:	learn: 30.5143267	total: 390ms	remaining: 477ms
135:	learn: 30.4754811	total: 393ms	remaining: 473ms
136:	learn: 30.4547070	total: 395ms	remaining: 470ms
137:	learn: 30.4269347	total: 398ms	remaining: 467ms
138:	learn: 30.3898351	total: 401ms	remaining: 464ms
139:	learn: 30.3130743	total: 403ms	remaining: 461ms
140:	learn: 30.3010368	total: 406ms	remaining: 457ms
141:	learn: 30.2684026	total: 408ms	remaining: 454ms
142:	learn: 30.1986682	total: 411ms	remaining: 451ms
143:	learn: 30.1690109	total: 414ms	remaining: 448ms
144:	learn: 30.1362793	total: 416ms	remaining: 445ms
145:	learn: 30.0902361	total: 419ms	remaining: 442ms
146:	learn: 30.0557773	total: 422ms	remaining: 439ms
147:	learn: 29.9784908	total: 425ms	remaining: 436ms
148:	learn: 29.8822991	total: 427ms	remaining: 433ms
149:	learn: 29.8567266	total: 430ms	remaining: 430ms
150:	learn: 29.8279111	total: 432ms	remaining: 426ms
151:	learn: 29.7968274	total: 435ms	remaining: 423ms
152:	learn: 29.7788320	total: 437ms	remaining: 420ms
153:	learn: 29.7672561	total: 440ms	remaining: 417ms
154:	learn: 29.7319617	total: 442ms	remaining: 414ms
155:	learn: 29.6888418	total: 445ms	remaining: 411ms
156:	learn: 29.5930209	total: 448ms	remaining: 408ms
157:	learn: 29.5852560	total: 448ms	remaining: 403ms
158:	learn: 29.4399314	total: 451ms	remaining: 400ms
159:	learn: 29.4135992	total: 454ms	remaining: 397ms
160:	learn: 29.3239447	total: 456ms	remaining: 394ms
161:	learn: 29.3042894	total: 459ms	remaining: 391ms
162:	learn: 29.2810751	total: 461ms	remaining: 388ms
163:	learn: 29.2750132	total: 462ms	remaining: 383ms
164:	learn: 29.2438976	total: 465ms	remaining: 380ms
165:	learn: 29.2252138	total: 468ms	remaining: 378ms
166:	learn: 29.2042457	total: 471ms	remaining: 375ms
167:	learn: 29.1687080	total: 474ms	remaining: 372ms
168:	learn: 29.1501767	total: 476ms	remaining: 369ms
169:	learn: 29.1300010	total: 479ms	remaining: 366ms
170:	learn: 29.1100445	total: 481ms	remaining: 363ms
171:	learn: 29.0786428	total: 484ms	remaining: 360ms
172:	learn: 29.0534977	total: 486ms	remaining: 357ms
173:	learn: 29.0465546	total: 489ms	remaining: 354ms
174:	learn: 29.0237947	total: 492ms	remaining: 351ms
175:	learn: 28.9947470	total: 494ms	remaining: 348ms
176:	learn: 28.9693651	total: 497ms	remaining: 345ms
177:	learn: 28.9396794	total: 500ms	remaining: 342ms
178:	learn: 28.9299681	total: 502ms	remaining: 339ms
179:	learn: 28.8958794	total: 505ms	remaining: 337ms
180:	learn: 28.8699033	total: 508ms	remaining: 334ms
181:	learn: 28.8426682	total: 511ms	remaining: 331ms
182:	learn: 28.8330239	total: 513ms	remaining: 328ms
183:	learn: 28.8037360	total: 516ms	remaining: 325ms
184:	learn: 28.7657887	total: 519ms	remaining: 322ms
185:	learn: 28.7458417	total: 522ms	remaining: 320ms
186:	learn: 28.7283797	total: 525ms	remaining: 317ms
187:	learn: 28.7086249	total: 528ms	remaining: 314ms
188:	learn: 28.7042846	total: 531ms	remaining: 312ms
189:	learn: 28.6851771	total: 533ms	remaining: 309ms
190:	learn: 28.6601041	total: 536ms	remaining: 306ms
191:	learn: 28.6365750	total: 539ms	remaining: 303ms
192:	learn: 28.6152561	total: 542ms	remaining: 301ms
193:	learn: 28.5837367	total: 545ms	remaining: 298ms
194:	learn: 28.5557477	total: 548ms	remaining: 295ms
195:	learn: 28.5474951	total: 551ms	remaining: 292ms
196:	learn: 28.5318884	total: 553ms	remaining: 289ms
197:	learn: 28.4899163	total: 556ms	remaining: 287ms
198:	learn: 28.4751668	total: 560ms	remaining: 284ms
199:	learn: 28.4413812	total: 563ms	remaining: 282ms
200:	learn: 28.4281763	total: 567ms	remaining: 279ms
201:	learn: 28.4124343	total: 570ms	remaining: 276ms
202:	learn: 28.3889724	total: 575ms	remaining: 275ms
203:	learn: 28.3587058	total: 581ms	remaining: 273ms
204:	learn: 28.3395487	total: 584ms	remaining: 270ms
205:	learn: 28.3207922	total: 588ms	remaining: 268ms
206:	learn: 28.2992244	total: 591ms	remaining: 266ms
207:	learn: 28.2953751	total: 592ms	remaining: 262ms
208:	learn: 28.2751511	total: 595ms	remaining: 259ms
209:	learn: 28.2564283	total: 598ms	remaining: 256ms
210:	learn: 28.2393507	total: 601ms	remaining: 254ms
211:	learn: 28.1747814	total: 605ms	remaining: 251ms
212:	learn: 28.1602558	total: 608ms	remaining: 248ms
213:	learn: 28.1424052	total: 611ms	remaining: 246ms
214:	learn: 28.1236954	total: 614ms	remaining: 243ms
215:	learn: 28.0638326	total: 617ms	remaining: 240ms
216:	learn: 28.0108657	total: 620ms	remaining: 237ms
217:	learn: 27.9961881	total: 623ms	remaining: 234ms
218:	learn: 27.9805184	total: 626ms	remaining: 232ms
219:	learn: 27.9663240	total: 629ms	remaining: 229ms
220:	learn: 27.9059514	total: 633ms	remaining: 226ms
221:	learn: 27.8705269	total: 635ms	remaining: 223ms
222:	learn: 27.8587156	total: 639ms	remaining: 221ms
223:	learn: 27.8451766	total: 642ms	remaining: 218ms
224:	learn: 27.8219094	total: 645ms	remaining: 215ms
225:	learn: 27.7120201	total: 648ms	remaining: 212ms
226:	learn: 27.7006493	total: 651ms	remaining: 209ms
227:	learn: 27.6415270	total: 653ms	remaining: 206ms
228:	learn: 27.6319759	total: 656ms	remaining: 203ms
229:	learn: 27.5835612	total: 659ms	remaining: 200ms
230:	learn: 27.5362425	total: 661ms	remaining: 198ms
231:	learn: 27.5083947	total: 664ms	remaining: 195ms
232:	learn: 27.4502321	total: 667ms	remaining: 192ms
233:	learn: 27.4359995	total: 669ms	remaining: 189ms
234:	learn: 27.3998273	total: 672ms	remaining: 186ms
235:	learn: 27.3496727	total: 675ms	remaining: 183ms
236:	learn: 27.3452340	total: 678ms	remaining: 180ms
237:	learn: 27.2211380	total: 680ms	remaining: 177ms
238:	learn: 27.1926373	total: 683ms	remaining: 174ms
239:	learn: 27.1840515	total: 685ms	remaining: 171ms
240:	learn: 27.1454037	total: 688ms	remaining: 168ms
241:	learn: 27.0249769	total: 691ms	remaining: 166ms
242:	learn: 27.0077365	total: 694ms	remaining: 163ms
243:	learn: 26.9700558	total: 696ms	remaining: 160ms
244:	learn: 26.9563861	total: 699ms	remaining: 157ms
245:	learn: 26.9107598	total: 702ms	remaining: 154ms
246:	learn: 26.8662971	total: 705ms	remaining: 151ms
247:	learn: 26.8332136	total: 707ms	remaining: 148ms
248:	learn: 26.7317386	total: 710ms	remaining: 145ms
249:	learn: 26.7077079	total: 713ms	remaining: 143ms
250:	learn: 26.6103455	total: 716ms	remaining: 140ms
251:	learn: 26.5891872	total: 718ms	remaining: 137ms
252:	learn: 26.5093629	total: 721ms	remaining: 134ms
253:	learn: 26.4781695	total: 724ms	remaining: 131ms
254:	learn: 26.4288576	total: 727ms	remaining: 128ms
255:	learn: 26.3820556	total: 729ms	remaining: 125ms
256:	learn: 26.3549921	total: 732ms	remaining: 122ms
257:	learn: 26.3236453	total: 735ms	remaining: 120ms
258:	learn: 26.2892951	total: 737ms	remaining: 117ms
259:	learn: 26.2755242	total: 740ms	remaining: 114ms
260:	learn: 26.2617880	total: 743ms	remaining: 111ms
261:	learn: 26.2255942	total: 746ms	remaining: 108ms
262:	learn: 26.1890309	total: 749ms	remaining: 105ms
263:	learn: 26.1542599	total: 752ms	remaining: 102ms
264:	learn: 26.1341451	total: 754ms	remaining: 99.6ms
265:	learn: 26.0345707	total: 757ms	remaining: 96.8ms
266:	learn: 26.0125834	total: 760ms	remaining: 93.9ms
267:	learn: 25.9674124	total: 763ms	remaining: 91.1ms
268:	learn: 25.9523714	total: 765ms	remaining: 88.2ms
269:	learn: 25.9087393	total: 769ms	remaining: 85.5ms
270:	learn: 25.8213561	total: 772ms	remaining: 82.6ms
271:	learn: 25.7919191	total: 775ms	remaining: 79.8ms
272:	learn: 25.7839428	total: 779ms	remaining: 77ms
273:	learn: 25.7702586	total: 782ms	remaining: 74.2ms
274:	learn: 25.7627649	total: 785ms	remaining: 71.4ms
275:	learn: 25.7322080	total: 788ms	remaining: 68.5ms
276:	learn: 25.6127645	total: 791ms	remaining: 65.7ms
277:	learn: 25.6008183	total: 794ms	remaining: 62.9ms
278:	learn: 25.5326286	total: 798ms	remaining: 60ms
279:	learn: 25.4849413	total: 800ms	remaining: 57.2ms
280:	learn: 25.4008202	total: 803ms	remaining: 54.3ms
281:	learn: 25.3865585	total: 806ms	remaining: 51.4ms
282:	learn: 25.3711219	total: 808ms	remaining: 48.6ms
283:	learn: 25.3275394	total: 811ms	remaining: 45.7ms
284:	learn: 25.3108364	total: 813ms	remaining: 42.8ms
285:	learn: 25.2455525	total: 816ms	remaining: 39.9ms
286:	learn: 25.2102221	total: 819ms	remaining: 37.1ms
287:	learn: 25.1718352	total: 821ms	remaining: 34.2ms
288:	learn: 25.1316989	total: 824ms	remaining: 31.4ms
289:	learn: 25.0904310	total: 827ms	remaining: 28.5ms
290:	learn: 25.0848601	total: 829ms	remaining: 25.6ms
291:	learn: 24.9975632	total: 832ms	remaining: 22.8ms
292:	learn: 24.9459522	total: 834ms	remaining: 19.9ms
293:	learn: 24.9133756	total: 837ms	remaining: 17.1ms
294:	learn: 24.8622757	total: 840ms	remaining: 14.2ms
295:	learn: 24.8251654	total: 842ms	remaining: 11.4ms
296:	learn: 24.8087605	total: 845ms	remaining: 8.53ms
297:	learn: 24.7634829	total: 847ms	remaining: 5.68ms
298:	learn: 24.6900208	total: 850ms	remaining: 2.84ms
299:	learn: 24.6742277	total: 852ms	remaining: 0us
0:	learn: 47.0946563	total: 2.64ms	remaining: 791ms
1:	learn: 46.7192970	total: 5.43ms	remaining: 809ms
2:	learn: 46.3743086	total: 7.98ms	remaining: 790ms
3:	learn: 46.0488298	total: 10.7ms	remaining: 789ms
4:	learn: 45.7257796	total: 13.2ms	remaining: 779ms
5:	learn: 45.3981640	total: 15.8ms	remaining: 772ms
6:	learn: 45.0752491	total: 18.5ms	remaining: 775ms
7:	learn: 44.8069177	total: 21.1ms	remaining: 771ms
8:	learn: 44.5640932	total: 23.8ms	remaining: 770ms
9:	learn: 44.3278070	total: 26.6ms	remaining: 771ms
10:	learn: 44.1056457	total: 29.3ms	remaining: 771ms
11:	learn: 43.8757503	total: 32ms	remaining: 769ms
12:	learn: 43.6501661	total: 34.9ms	remaining: 770ms
13:	learn: 43.4485604	total: 37.7ms	remaining: 770ms
14:	learn: 43.2273298	total: 40.4ms	remaining: 769ms
15:	learn: 43.0148072	total: 43.1ms	remaining: 765ms
16:	learn: 42.8161711	total: 46.1ms	remaining: 767ms
17:	learn: 42.5774886	total: 48.8ms	remaining: 765ms
18:	learn: 42.4173705	total: 51.5ms	remaining: 762ms
19:	learn: 42.2280498	total: 54.4ms	remaining: 761ms
20:	learn: 42.0277849	total: 57.1ms	remaining: 759ms
21:	learn: 41.8932582	total: 60ms	remaining: 758ms
22:	learn: 41.7556061	total: 62.8ms	remaining: 757ms
23:	learn: 41.5275486	total: 67ms	remaining: 771ms
24:	learn: 41.4371628	total: 70.8ms	remaining: 779ms
25:	learn: 41.3020774	total: 73.8ms	remaining: 778ms
26:	learn: 41.0998208	total: 78.1ms	remaining: 790ms
27:	learn: 40.9270546	total: 83ms	remaining: 806ms
28:	learn: 40.7907110	total: 87.1ms	remaining: 814ms
29:	learn: 40.6540040	total: 91.2ms	remaining: 821ms
30:	learn: 40.5430304	total: 96.6ms	remaining: 838ms
31:	learn: 40.3759846	total: 99.5ms	remaining: 833ms
32:	learn: 40.2246507	total: 103ms	remaining: 829ms
33:	learn: 40.0946324	total: 106ms	remaining: 827ms
34:	learn: 39.9712336	total: 109ms	remaining: 824ms
35:	learn: 39.8400190	total: 112ms	remaining: 821ms
36:	learn: 39.7264196	total: 115ms	remaining: 815ms
37:	learn: 39.5865473	total: 118ms	remaining: 811ms
38:	learn: 39.4820875	total: 121ms	remaining: 807ms
39:	learn: 39.3866039	total: 124ms	remaining: 804ms
40:	learn: 39.3025597	total: 127ms	remaining: 799ms
41:	learn: 39.2082650	total: 130ms	remaining: 797ms
42:	learn: 39.0431134	total: 133ms	remaining: 793ms
43:	learn: 38.9615403	total: 136ms	remaining: 789ms
44:	learn: 38.8736672	total: 138ms	remaining: 785ms
45:	learn: 38.8135712	total: 142ms	remaining: 782ms
46:	learn: 38.5968072	total: 145ms	remaining: 779ms
47:	learn: 38.4564759	total: 148ms	remaining: 776ms
48:	learn: 38.4220021	total: 151ms	remaining: 772ms
49:	learn: 38.3261815	total: 153ms	remaining: 767ms
50:	learn: 38.2197536	total: 156ms	remaining: 762ms
51:	learn: 38.1698081	total: 159ms	remaining: 756ms
52:	learn: 38.1183521	total: 161ms	remaining: 751ms
53:	learn: 38.0614445	total: 164ms	remaining: 746ms
54:	learn: 37.9534469	total: 166ms	remaining: 741ms
55:	learn: 37.8955931	total: 169ms	remaining: 735ms
56:	learn: 37.8413544	total: 171ms	remaining: 730ms
57:	learn: 37.7862614	total: 174ms	remaining: 727ms
58:	learn: 37.6311122	total: 177ms	remaining: 722ms
59:	learn: 37.5639711	total: 179ms	remaining: 717ms
60:	learn: 37.4081381	total: 182ms	remaining: 713ms
61:	learn: 37.3551506	total: 185ms	remaining: 709ms
62:	learn: 37.2710147	total: 187ms	remaining: 704ms
63:	learn: 37.2190124	total: 190ms	remaining: 700ms
64:	learn: 37.1958907	total: 192ms	remaining: 696ms
65:	learn: 37.0937736	total: 195ms	remaining: 692ms
66:	learn: 36.9561504	total: 198ms	remaining: 688ms
67:	learn: 36.9176602	total: 200ms	remaining: 684ms
68:	learn: 36.8322131	total: 203ms	remaining: 679ms
69:	learn: 36.7554664	total: 205ms	remaining: 675ms
70:	learn: 36.6685216	total: 208ms	remaining: 671ms
71:	learn: 36.6152199	total: 211ms	remaining: 667ms
72:	learn: 36.5316021	total: 213ms	remaining: 663ms
73:	learn: 36.4877449	total: 216ms	remaining: 659ms
74:	learn: 36.3911881	total: 219ms	remaining: 656ms
75:	learn: 36.3074184	total: 221ms	remaining: 652ms
76:	learn: 36.2092742	total: 224ms	remaining: 648ms
77:	learn: 36.1686417	total: 226ms	remaining: 643ms
78:	learn: 36.1331457	total: 229ms	remaining: 640ms
79:	learn: 36.0676261	total: 231ms	remaining: 636ms
80:	learn: 36.0331942	total: 234ms	remaining: 632ms
81:	learn: 35.9806655	total: 237ms	remaining: 629ms
82:	learn: 35.9067157	total: 239ms	remaining: 626ms
83:	learn: 35.8503725	total: 242ms	remaining: 623ms
84:	learn: 35.7545453	total: 245ms	remaining: 619ms
85:	learn: 35.7155162	total: 248ms	remaining: 616ms
86:	learn: 35.6736142	total: 250ms	remaining: 613ms
87:	learn: 35.6278917	total: 253ms	remaining: 610ms
88:	learn: 35.6076776	total: 256ms	remaining: 607ms
89:	learn: 35.5357644	total: 259ms	remaining: 605ms
90:	learn: 35.4630554	total: 264ms	remaining: 606ms
91:	learn: 35.3827339	total: 267ms	remaining: 604ms
92:	learn: 35.3123833	total: 270ms	remaining: 602ms
93:	learn: 35.2542092	total: 273ms	remaining: 599ms
94:	learn: 35.1962550	total: 277ms	remaining: 597ms
95:	learn: 35.1626179	total: 280ms	remaining: 594ms
96:	learn: 35.1261898	total: 283ms	remaining: 591ms
97:	learn: 35.0827604	total: 285ms	remaining: 588ms
98:	learn: 35.0198692	total: 289ms	remaining: 586ms
99:	learn: 34.9456226	total: 291ms	remaining: 583ms
100:	learn: 34.9124263	total: 294ms	remaining: 579ms
101:	learn: 34.8647897	total: 297ms	remaining: 576ms
102:	learn: 34.8166501	total: 299ms	remaining: 572ms
103:	learn: 34.7351161	total: 302ms	remaining: 569ms
104:	learn: 34.6958062	total: 305ms	remaining: 566ms
105:	learn: 34.6245377	total: 307ms	remaining: 562ms
106:	learn: 34.5768281	total: 310ms	remaining: 559ms
107:	learn: 34.4178944	total: 313ms	remaining: 556ms
108:	learn: 34.3731367	total: 315ms	remaining: 553ms
109:	learn: 34.3388152	total: 318ms	remaining: 549ms
110:	learn: 34.2945617	total: 321ms	remaining: 546ms
111:	learn: 34.1544128	total: 323ms	remaining: 543ms
112:	learn: 34.1121985	total: 326ms	remaining: 539ms
113:	learn: 34.0574129	total: 329ms	remaining: 536ms
114:	learn: 34.0433236	total: 331ms	remaining: 533ms
115:	learn: 33.9832649	total: 334ms	remaining: 530ms
116:	learn: 33.9608321	total: 337ms	remaining: 526ms
117:	learn: 33.8585878	total: 339ms	remaining: 523ms
118:	learn: 33.8389522	total: 342ms	remaining: 520ms
119:	learn: 33.7680787	total: 345ms	remaining: 517ms
120:	learn: 33.7223981	total: 347ms	remaining: 513ms
121:	learn: 33.6706825	total: 350ms	remaining: 510ms
122:	learn: 33.6231523	total: 352ms	remaining: 507ms
123:	learn: 33.6031439	total: 355ms	remaining: 504ms
124:	learn: 33.5675128	total: 357ms	remaining: 500ms
125:	learn: 33.5434212	total: 360ms	remaining: 497ms
126:	learn: 33.5356345	total: 362ms	remaining: 494ms
127:	learn: 33.5147946	total: 365ms	remaining: 490ms
128:	learn: 33.4745010	total: 367ms	remaining: 487ms
129:	learn: 33.4185238	total: 370ms	remaining: 484ms
130:	learn: 33.3874745	total: 372ms	remaining: 480ms
131:	learn: 33.3274632	total: 375ms	remaining: 477ms
132:	learn: 33.2863456	total: 378ms	remaining: 474ms
133:	learn: 33.2636649	total: 380ms	remaining: 471ms
134:	learn: 33.2426517	total: 383ms	remaining: 468ms
135:	learn: 33.2251649	total: 385ms	remaining: 465ms
136:	learn: 33.1951949	total: 388ms	remaining: 462ms
137:	learn: 33.1251743	total: 391ms	remaining: 459ms
138:	learn: 33.0866552	total: 394ms	remaining: 456ms
139:	learn: 33.0273260	total: 397ms	remaining: 453ms
140:	learn: 32.9954983	total: 399ms	remaining: 450ms
141:	learn: 32.9796694	total: 402ms	remaining: 447ms
142:	learn: 32.9523795	total: 404ms	remaining: 444ms
143:	learn: 32.9077748	total: 407ms	remaining: 441ms
144:	learn: 32.8931881	total: 410ms	remaining: 438ms
145:	learn: 32.8260175	total: 413ms	remaining: 435ms
146:	learn: 32.8150117	total: 416ms	remaining: 433ms
147:	learn: 32.7747758	total: 418ms	remaining: 430ms
148:	learn: 32.7033204	total: 421ms	remaining: 427ms
149:	learn: 32.6802420	total: 424ms	remaining: 424ms
150:	learn: 32.6615233	total: 426ms	remaining: 421ms
151:	learn: 32.5609177	total: 429ms	remaining: 418ms
152:	learn: 32.5009930	total: 432ms	remaining: 415ms
153:	learn: 32.4596264	total: 435ms	remaining: 412ms
154:	learn: 32.4415791	total: 437ms	remaining: 409ms
155:	learn: 32.3891939	total: 440ms	remaining: 406ms
156:	learn: 32.3737216	total: 442ms	remaining: 403ms
157:	learn: 32.3548287	total: 445ms	remaining: 400ms
158:	learn: 32.3121095	total: 448ms	remaining: 397ms
159:	learn: 32.2591195	total: 450ms	remaining: 394ms
160:	learn: 32.2407487	total: 453ms	remaining: 391ms
161:	learn: 32.2037713	total: 456ms	remaining: 389ms
162:	learn: 32.1958929	total: 458ms	remaining: 385ms
163:	learn: 32.1872272	total: 461ms	remaining: 382ms
164:	learn: 32.1571922	total: 465ms	remaining: 380ms
165:	learn: 32.1411683	total: 470ms	remaining: 379ms
166:	learn: 32.1201608	total: 474ms	remaining: 378ms
167:	learn: 32.0973069	total: 478ms	remaining: 376ms
168:	learn: 32.0803416	total: 481ms	remaining: 373ms
169:	learn: 32.0720454	total: 486ms	remaining: 372ms
170:	learn: 32.0607116	total: 490ms	remaining: 369ms
171:	learn: 32.0532906	total: 493ms	remaining: 367ms
172:	learn: 32.0386078	total: 496ms	remaining: 364ms
173:	learn: 32.0301246	total: 499ms	remaining: 361ms
174:	learn: 32.0207069	total: 502ms	remaining: 359ms
175:	learn: 31.9914505	total: 505ms	remaining: 356ms
176:	learn: 31.9807135	total: 508ms	remaining: 353ms
177:	learn: 31.9698686	total: 511ms	remaining: 350ms
178:	learn: 31.9626879	total: 514ms	remaining: 348ms
179:	learn: 31.9556059	total: 517ms	remaining: 345ms
180:	learn: 31.9122854	total: 520ms	remaining: 342ms
181:	learn: 31.9047196	total: 523ms	remaining: 339ms
182:	learn: 31.8980390	total: 526ms	remaining: 336ms
183:	learn: 31.8300329	total: 529ms	remaining: 334ms
184:	learn: 31.8233927	total: 532ms	remaining: 331ms
185:	learn: 31.7817409	total: 535ms	remaining: 328ms
186:	learn: 31.7642827	total: 538ms	remaining: 325ms
187:	learn: 31.7446144	total: 541ms	remaining: 323ms
188:	learn: 31.7427151	total: 542ms	remaining: 319ms
189:	learn: 31.6983519	total: 545ms	remaining: 316ms
190:	learn: 31.6868507	total: 548ms	remaining: 312ms
191:	learn: 31.6728469	total: 550ms	remaining: 309ms
192:	learn: 31.6207164	total: 553ms	remaining: 307ms
193:	learn: 31.6023653	total: 556ms	remaining: 304ms
194:	learn: 31.6003768	total: 557ms	remaining: 300ms
195:	learn: 31.5654528	total: 560ms	remaining: 297ms
196:	learn: 31.5597608	total: 562ms	remaining: 294ms
197:	learn: 31.5525929	total: 565ms	remaining: 291ms
198:	learn: 31.5502324	total: 567ms	remaining: 288ms
199:	learn: 31.5151266	total: 570ms	remaining: 285ms
200:	learn: 31.5045925	total: 572ms	remaining: 282ms
201:	learn: 31.4752580	total: 575ms	remaining: 279ms
202:	learn: 31.4587944	total: 578ms	remaining: 276ms
203:	learn: 31.4185575	total: 581ms	remaining: 273ms
204:	learn: 31.4086177	total: 584ms	remaining: 270ms
205:	learn: 31.3994671	total: 587ms	remaining: 268ms
206:	learn: 31.3821922	total: 589ms	remaining: 265ms
207:	learn: 31.3435512	total: 592ms	remaining: 262ms
208:	learn: 31.3267075	total: 595ms	remaining: 259ms
209:	learn: 31.3055995	total: 598ms	remaining: 256ms
210:	learn: 31.2925381	total: 601ms	remaining: 253ms
211:	learn: 31.2515949	total: 604ms	remaining: 251ms
212:	learn: 31.2416812	total: 606ms	remaining: 248ms
213:	learn: 31.2337835	total: 609ms	remaining: 245ms
214:	learn: 31.2322669	total: 610ms	remaining: 241ms
215:	learn: 31.2040865	total: 612ms	remaining: 238ms
216:	learn: 31.1973993	total: 615ms	remaining: 235ms
217:	learn: 31.1577630	total: 618ms	remaining: 232ms
218:	learn: 31.1368403	total: 621ms	remaining: 230ms
219:	learn: 31.1008710	total: 623ms	remaining: 227ms
220:	learn: 31.0749328	total: 626ms	remaining: 224ms
221:	learn: 31.0653105	total: 629ms	remaining: 221ms
222:	learn: 31.0481915	total: 631ms	remaining: 218ms
223:	learn: 31.0425160	total: 634ms	remaining: 215ms
224:	learn: 30.9998005	total: 637ms	remaining: 212ms
225:	learn: 30.9550976	total: 640ms	remaining: 209ms
226:	learn: 30.9281855	total: 642ms	remaining: 207ms
227:	learn: 30.8554875	total: 645ms	remaining: 204ms
228:	learn: 30.8129633	total: 648ms	remaining: 201ms
229:	learn: 30.7758163	total: 650ms	remaining: 198ms
230:	learn: 30.7403985	total: 656ms	remaining: 196ms
231:	learn: 30.6531344	total: 659ms	remaining: 193ms
232:	learn: 30.6039533	total: 662ms	remaining: 190ms
233:	learn: 30.5286637	total: 665ms	remaining: 188ms
234:	learn: 30.5163750	total: 668ms	remaining: 185ms
235:	learn: 30.4973015	total: 671ms	remaining: 182ms
236:	learn: 30.4520059	total: 674ms	remaining: 179ms
237:	learn: 30.4113875	total: 678ms	remaining: 177ms
238:	learn: 30.3682183	total: 681ms	remaining: 174ms
239:	learn: 30.3583321	total: 684ms	remaining: 171ms
240:	learn: 30.2660115	total: 686ms	remaining: 168ms
241:	learn: 30.1767935	total: 689ms	remaining: 165ms
242:	learn: 30.1265407	total: 691ms	remaining: 162ms
243:	learn: 30.1148303	total: 694ms	remaining: 159ms
244:	learn: 30.1036393	total: 697ms	remaining: 156ms
245:	learn: 30.0770671	total: 699ms	remaining: 153ms
246:	learn: 29.9773672	total: 702ms	remaining: 151ms
247:	learn: 29.8663401	total: 705ms	remaining: 148ms
248:	learn: 29.8407032	total: 707ms	remaining: 145ms
249:	learn: 29.8042228	total: 710ms	remaining: 142ms
250:	learn: 29.7341565	total: 712ms	remaining: 139ms
251:	learn: 29.7067541	total: 715ms	remaining: 136ms
252:	learn: 29.6208570	total: 718ms	remaining: 133ms
253:	learn: 29.5396091	total: 720ms	remaining: 130ms
254:	learn: 29.4887071	total: 722ms	remaining: 127ms
255:	learn: 29.4451558	total: 726ms	remaining: 125ms
256:	learn: 29.4015290	total: 728ms	remaining: 122ms
257:	learn: 29.3765732	total: 731ms	remaining: 119ms
258:	learn: 29.2956026	total: 734ms	remaining: 116ms
259:	learn: 29.2796538	total: 736ms	remaining: 113ms
260:	learn: 29.2672512	total: 739ms	remaining: 110ms
261:	learn: 29.2403360	total: 742ms	remaining: 108ms
262:	learn: 29.2009188	total: 744ms	remaining: 105ms
263:	learn: 29.1345424	total: 747ms	remaining: 102ms
264:	learn: 29.1222235	total: 750ms	remaining: 99ms
265:	learn: 29.0517705	total: 752ms	remaining: 96.2ms
266:	learn: 29.0351016	total: 755ms	remaining: 93.3ms
267:	learn: 29.0070103	total: 758ms	remaining: 90.5ms
268:	learn: 28.9688495	total: 761ms	remaining: 87.7ms
269:	learn: 28.9573524	total: 763ms	remaining: 84.8ms
270:	learn: 28.9497389	total: 766ms	remaining: 82ms
271:	learn: 28.9336877	total: 769ms	remaining: 79.1ms
272:	learn: 28.9065616	total: 772ms	remaining: 76.3ms
273:	learn: 28.8786620	total: 774ms	remaining: 73.5ms
274:	learn: 28.8434433	total: 777ms	remaining: 70.6ms
275:	learn: 28.8192108	total: 780ms	remaining: 67.8ms
276:	learn: 28.7650999	total: 783ms	remaining: 65ms
277:	learn: 28.7418789	total: 785ms	remaining: 62.2ms
278:	learn: 28.6960709	total: 788ms	remaining: 59.3ms
279:	learn: 28.6272706	total: 791ms	remaining: 56.5ms
280:	learn: 28.6171553	total: 794ms	remaining: 53.7ms
281:	learn: 28.5932493	total: 796ms	remaining: 50.8ms
282:	learn: 28.5883710	total: 799ms	remaining: 48ms
283:	learn: 28.5463571	total: 802ms	remaining: 45.2ms
284:	learn: 28.5002826	total: 805ms	remaining: 42.4ms
285:	learn: 28.4596366	total: 808ms	remaining: 39.5ms
286:	learn: 28.4152871	total: 810ms	remaining: 36.7ms
287:	learn: 28.3795245	total: 813ms	remaining: 33.9ms
288:	learn: 28.3689855	total: 816ms	remaining: 31.1ms
289:	learn: 28.3234883	total: 819ms	remaining: 28.2ms
290:	learn: 28.3014483	total: 821ms	remaining: 25.4ms
291:	learn: 28.2685402	total: 824ms	remaining: 22.6ms
292:	learn: 28.2615321	total: 826ms	remaining: 19.7ms
293:	learn: 28.2320290	total: 829ms	remaining: 16.9ms
294:	learn: 28.2012581	total: 832ms	remaining: 14.1ms
295:	learn: 28.1628794	total: 836ms	remaining: 11.3ms
296:	learn: 28.1533738	total: 839ms	remaining: 8.47ms
297:	learn: 28.1209972	total: 842ms	remaining: 5.65ms
298:	learn: 28.1105796	total: 845ms	remaining: 2.83ms
299:	learn: 28.0755937	total: 848ms	remaining: 0us
0:	learn: 46.7409540	total: 3.2ms	remaining: 956ms
1:	learn: 46.4900418	total: 6.39ms	remaining: 952ms
2:	learn: 46.2177991	total: 9.29ms	remaining: 919ms
3:	learn: 46.0246904	total: 12.4ms	remaining: 915ms
4:	learn: 45.8823293	total: 13.2ms	remaining: 778ms
5:	learn: 45.6975709	total: 16.4ms	remaining: 802ms
6:	learn: 45.4138557	total: 19.2ms	remaining: 805ms
7:	learn: 45.1915996	total: 22.3ms	remaining: 812ms
8:	learn: 45.0523314	total: 25.4ms	remaining: 820ms
9:	learn: 44.8314928	total: 28.2ms	remaining: 817ms
10:	learn: 44.6951527	total: 31.2ms	remaining: 820ms
11:	learn: 44.5126929	total: 34.2ms	remaining: 821ms
12:	learn: 44.4224414	total: 37ms	remaining: 817ms
13:	learn: 44.2893364	total: 40.5ms	remaining: 826ms
14:	learn: 44.1704279	total: 43.5ms	remaining: 826ms
15:	learn: 44.0345498	total: 46.4ms	remaining: 823ms
16:	learn: 43.8672380	total: 49.1ms	remaining: 817ms
17:	learn: 43.7009559	total: 51.5ms	remaining: 806ms
18:	learn: 43.6150435	total: 54.1ms	remaining: 801ms
19:	learn: 43.5220282	total: 56.7ms	remaining: 794ms
20:	learn: 43.3297206	total: 59.5ms	remaining: 791ms
21:	learn: 43.1696599	total: 62.1ms	remaining: 785ms
22:	learn: 42.9831081	total: 64.5ms	remaining: 777ms
23:	learn: 42.9080309	total: 67.1ms	remaining: 772ms
24:	learn: 42.8252763	total: 69.8ms	remaining: 768ms
25:	learn: 42.6448659	total: 72.3ms	remaining: 762ms
26:	learn: 42.4842723	total: 75ms	remaining: 758ms
27:	learn: 42.3580952	total: 77.6ms	remaining: 754ms
28:	learn: 42.2222094	total: 80.1ms	remaining: 749ms
29:	learn: 42.1187872	total: 82.6ms	remaining: 743ms
30:	learn: 42.0396949	total: 85.3ms	remaining: 740ms
31:	learn: 41.8887483	total: 87.9ms	remaining: 736ms
32:	learn: 41.7734119	total: 90.4ms	remaining: 732ms
33:	learn: 41.6874221	total: 93ms	remaining: 728ms
34:	learn: 41.5266937	total: 95.7ms	remaining: 725ms
35:	learn: 41.4359760	total: 98.2ms	remaining: 720ms
36:	learn: 41.3303571	total: 101ms	remaining: 716ms
37:	learn: 41.2411965	total: 103ms	remaining: 712ms
38:	learn: 41.1905359	total: 106ms	remaining: 711ms
39:	learn: 41.0896940	total: 109ms	remaining: 708ms
40:	learn: 41.0616713	total: 111ms	remaining: 704ms
41:	learn: 40.9376437	total: 114ms	remaining: 699ms
42:	learn: 40.8121909	total: 117ms	remaining: 696ms
43:	learn: 40.6918887	total: 119ms	remaining: 694ms
44:	learn: 40.5755597	total: 122ms	remaining: 690ms
45:	learn: 40.5183514	total: 124ms	remaining: 686ms
46:	learn: 40.4683386	total: 127ms	remaining: 682ms
47:	learn: 40.4237475	total: 129ms	remaining: 680ms
48:	learn: 40.3742374	total: 132ms	remaining: 677ms
49:	learn: 40.2848340	total: 135ms	remaining: 675ms
50:	learn: 40.2154181	total: 138ms	remaining: 673ms
51:	learn: 40.1573109	total: 141ms	remaining: 671ms
52:	learn: 40.1038095	total: 143ms	remaining: 669ms
53:	learn: 39.9687011	total: 146ms	remaining: 667ms
54:	learn: 39.8642070	total: 149ms	remaining: 664ms
55:	learn: 39.7679423	total: 152ms	remaining: 662ms
56:	learn: 39.7311395	total: 155ms	remaining: 660ms
57:	learn: 39.6966428	total: 158ms	remaining: 658ms
58:	learn: 39.6409457	total: 163ms	remaining: 666ms
59:	learn: 39.5589543	total: 167ms	remaining: 666ms
60:	learn: 39.5119041	total: 170ms	remaining: 665ms
61:	learn: 39.4614952	total: 173ms	remaining: 663ms
62:	learn: 39.3830530	total: 176ms	remaining: 661ms
63:	learn: 39.3025910	total: 179ms	remaining: 660ms
64:	learn: 39.1945931	total: 182ms	remaining: 657ms
65:	learn: 39.1672487	total: 185ms	remaining: 656ms
66:	learn: 39.0890373	total: 188ms	remaining: 653ms
67:	learn: 38.9952387	total: 190ms	remaining: 649ms
68:	learn: 38.8646371	total: 193ms	remaining: 646ms
69:	learn: 38.8092638	total: 195ms	remaining: 642ms
70:	learn: 38.7700652	total: 198ms	remaining: 639ms
71:	learn: 38.7224958	total: 201ms	remaining: 636ms
72:	learn: 38.6860112	total: 203ms	remaining: 632ms
73:	learn: 38.6598661	total: 206ms	remaining: 629ms
74:	learn: 38.6046827	total: 208ms	remaining: 625ms
75:	learn: 38.5326876	total: 211ms	remaining: 622ms
76:	learn: 38.4698903	total: 214ms	remaining: 619ms
77:	learn: 38.3611351	total: 216ms	remaining: 616ms
78:	learn: 38.2344264	total: 219ms	remaining: 613ms
79:	learn: 38.1876325	total: 222ms	remaining: 610ms
80:	learn: 38.1012586	total: 224ms	remaining: 607ms
81:	learn: 38.0137397	total: 227ms	remaining: 604ms
82:	learn: 37.9302845	total: 230ms	remaining: 601ms
83:	learn: 37.8724361	total: 233ms	remaining: 598ms
84:	learn: 37.8311923	total: 235ms	remaining: 595ms
85:	learn: 37.7731875	total: 238ms	remaining: 591ms
86:	learn: 37.7056069	total: 240ms	remaining: 588ms
87:	learn: 37.6640666	total: 243ms	remaining: 585ms
88:	learn: 37.6111679	total: 245ms	remaining: 581ms
89:	learn: 37.5658145	total: 248ms	remaining: 578ms
90:	learn: 37.5155703	total: 251ms	remaining: 576ms
91:	learn: 37.4802716	total: 253ms	remaining: 573ms
92:	learn: 37.4301915	total: 256ms	remaining: 570ms
93:	learn: 37.3959966	total: 258ms	remaining: 565ms
94:	learn: 37.3409338	total: 260ms	remaining: 562ms
95:	learn: 37.3007656	total: 263ms	remaining: 559ms
96:	learn: 37.2301460	total: 266ms	remaining: 556ms
97:	learn: 37.1587509	total: 268ms	remaining: 553ms
98:	learn: 37.1129692	total: 271ms	remaining: 550ms
99:	learn: 37.0028340	total: 274ms	remaining: 547ms
100:	learn: 36.9445360	total: 276ms	remaining: 544ms
101:	learn: 36.8968565	total: 279ms	remaining: 541ms
102:	learn: 36.8537872	total: 281ms	remaining: 538ms
103:	learn: 36.8278946	total: 284ms	remaining: 535ms
104:	learn: 36.7660934	total: 287ms	remaining: 533ms
105:	learn: 36.7005679	total: 289ms	remaining: 530ms
106:	learn: 36.6779992	total: 292ms	remaining: 527ms
107:	learn: 36.6317647	total: 295ms	remaining: 524ms
108:	learn: 36.5922762	total: 297ms	remaining: 521ms
109:	learn: 36.5581350	total: 300ms	remaining: 518ms
110:	learn: 36.5412464	total: 303ms	remaining: 516ms
111:	learn: 36.4742915	total: 305ms	remaining: 513ms
112:	learn: 36.3682318	total: 308ms	remaining: 510ms
113:	learn: 36.3238897	total: 311ms	remaining: 507ms
114:	learn: 36.2486749	total: 313ms	remaining: 504ms
115:	learn: 36.2074022	total: 316ms	remaining: 500ms
116:	learn: 36.1610808	total: 319ms	remaining: 498ms
117:	learn: 36.1142905	total: 321ms	remaining: 495ms
118:	learn: 36.0532081	total: 324ms	remaining: 492ms
119:	learn: 36.0108869	total: 326ms	remaining: 489ms
120:	learn: 35.9369859	total: 329ms	remaining: 487ms
121:	learn: 35.8860244	total: 332ms	remaining: 484ms
122:	learn: 35.8159312	total: 334ms	remaining: 481ms
123:	learn: 35.7375968	total: 337ms	remaining: 478ms
124:	learn: 35.6886767	total: 340ms	remaining: 475ms
125:	learn: 35.6489199	total: 342ms	remaining: 473ms
126:	learn: 35.6281245	total: 345ms	remaining: 470ms
127:	learn: 35.5344953	total: 348ms	remaining: 467ms
128:	learn: 35.5105800	total: 350ms	remaining: 465ms
129:	learn: 35.4969787	total: 354ms	remaining: 462ms
130:	learn: 35.4700500	total: 358ms	remaining: 461ms
131:	learn: 35.4211048	total: 361ms	remaining: 459ms
132:	learn: 35.3422989	total: 366ms	remaining: 459ms
133:	learn: 35.3292769	total: 372ms	remaining: 460ms
134:	learn: 35.2338468	total: 376ms	remaining: 459ms
135:	learn: 35.2043039	total: 379ms	remaining: 457ms
136:	learn: 35.1455212	total: 383ms	remaining: 456ms
137:	learn: 35.1266733	total: 387ms	remaining: 454ms
138:	learn: 35.1106707	total: 390ms	remaining: 451ms
139:	learn: 35.0577000	total: 393ms	remaining: 449ms
140:	learn: 35.0093012	total: 396ms	remaining: 446ms
141:	learn: 34.9923672	total: 399ms	remaining: 444ms
142:	learn: 34.9683405	total: 402ms	remaining: 441ms
143:	learn: 34.9269773	total: 404ms	remaining: 438ms
144:	learn: 34.9173570	total: 408ms	remaining: 436ms
145:	learn: 34.8932076	total: 411ms	remaining: 433ms
146:	learn: 34.8345158	total: 414ms	remaining: 431ms
147:	learn: 34.8128120	total: 417ms	remaining: 428ms
148:	learn: 34.7675567	total: 419ms	remaining: 425ms
149:	learn: 34.6680620	total: 423ms	remaining: 423ms
150:	learn: 34.6128793	total: 426ms	remaining: 420ms
151:	learn: 34.5858418	total: 428ms	remaining: 417ms
152:	learn: 34.5617141	total: 432ms	remaining: 415ms
153:	learn: 34.5583796	total: 435ms	remaining: 412ms
154:	learn: 34.5492043	total: 438ms	remaining: 409ms
155:	learn: 34.5062775	total: 441ms	remaining: 407ms
156:	learn: 34.4853214	total: 444ms	remaining: 404ms
157:	learn: 34.4532270	total: 446ms	remaining: 401ms
158:	learn: 34.4057143	total: 449ms	remaining: 398ms
159:	learn: 34.3638896	total: 451ms	remaining: 395ms
160:	learn: 34.3525518	total: 454ms	remaining: 392ms
161:	learn: 34.3180853	total: 456ms	remaining: 389ms
162:	learn: 34.2831184	total: 459ms	remaining: 386ms
163:	learn: 34.2153348	total: 462ms	remaining: 383ms
164:	learn: 34.1678422	total: 464ms	remaining: 380ms
165:	learn: 34.0781750	total: 467ms	remaining: 377ms
166:	learn: 34.0710071	total: 469ms	remaining: 374ms
167:	learn: 34.0457273	total: 472ms	remaining: 371ms
168:	learn: 34.0218289	total: 475ms	remaining: 368ms
169:	learn: 34.0193016	total: 475ms	remaining: 363ms
170:	learn: 33.9291561	total: 478ms	remaining: 360ms
171:	learn: 33.9148562	total: 480ms	remaining: 358ms
172:	learn: 33.8291166	total: 483ms	remaining: 354ms
173:	learn: 33.8124274	total: 486ms	remaining: 352ms
174:	learn: 33.7594554	total: 488ms	remaining: 349ms
175:	learn: 33.7213894	total: 491ms	remaining: 346ms
176:	learn: 33.7190291	total: 493ms	remaining: 343ms
177:	learn: 33.7027206	total: 496ms	remaining: 340ms
178:	learn: 33.6940830	total: 499ms	remaining: 337ms
179:	learn: 33.6708618	total: 502ms	remaining: 334ms
180:	learn: 33.6398192	total: 504ms	remaining: 331ms
181:	learn: 33.6237236	total: 507ms	remaining: 329ms
182:	learn: 33.5776923	total: 509ms	remaining: 326ms
183:	learn: 33.5359250	total: 512ms	remaining: 323ms
184:	learn: 33.5196497	total: 515ms	remaining: 320ms
185:	learn: 33.4897162	total: 518ms	remaining: 317ms
186:	learn: 33.4665916	total: 520ms	remaining: 314ms
187:	learn: 33.4265775	total: 523ms	remaining: 312ms
188:	learn: 33.4033700	total: 526ms	remaining: 309ms
189:	learn: 33.3674851	total: 529ms	remaining: 306ms
190:	learn: 33.3439383	total: 531ms	remaining: 303ms
191:	learn: 33.3096800	total: 534ms	remaining: 300ms
192:	learn: 33.3076549	total: 536ms	remaining: 297ms
193:	learn: 33.2762752	total: 539ms	remaining: 294ms
194:	learn: 33.2601887	total: 542ms	remaining: 292ms
195:	learn: 33.2520695	total: 545ms	remaining: 289ms
196:	learn: 33.2365212	total: 547ms	remaining: 286ms
197:	learn: 33.2277840	total: 550ms	remaining: 283ms
198:	learn: 33.1999417	total: 555ms	remaining: 282ms
199:	learn: 33.1561758	total: 558ms	remaining: 279ms
200:	learn: 33.1248616	total: 562ms	remaining: 277ms
201:	learn: 33.1177708	total: 565ms	remaining: 274ms
202:	learn: 33.1087692	total: 567ms	remaining: 271ms
203:	learn: 33.0651191	total: 571ms	remaining: 269ms
204:	learn: 33.0475080	total: 574ms	remaining: 266ms
205:	learn: 33.0324939	total: 577ms	remaining: 263ms
206:	learn: 32.9707173	total: 580ms	remaining: 261ms
207:	learn: 32.9568135	total: 583ms	remaining: 258ms
208:	learn: 32.9410674	total: 586ms	remaining: 255ms
209:	learn: 32.9043768	total: 588ms	remaining: 252ms
210:	learn: 32.8696749	total: 591ms	remaining: 249ms
211:	learn: 32.8595690	total: 593ms	remaining: 246ms
212:	learn: 32.8415730	total: 596ms	remaining: 243ms
213:	learn: 32.7827560	total: 599ms	remaining: 241ms
214:	learn: 32.7736392	total: 601ms	remaining: 238ms
215:	learn: 32.7402520	total: 604ms	remaining: 235ms
216:	learn: 32.7348668	total: 606ms	remaining: 232ms
217:	learn: 32.7026034	total: 609ms	remaining: 229ms
218:	learn: 32.6465736	total: 612ms	remaining: 226ms
219:	learn: 32.5785658	total: 614ms	remaining: 223ms
220:	learn: 32.5518853	total: 617ms	remaining: 220ms
221:	learn: 32.5425599	total: 619ms	remaining: 218ms
222:	learn: 32.4567134	total: 622ms	remaining: 215ms
223:	learn: 32.3910841	total: 625ms	remaining: 212ms
224:	learn: 32.3805838	total: 627ms	remaining: 209ms
225:	learn: 32.3495681	total: 630ms	remaining: 206ms
226:	learn: 32.3391937	total: 632ms	remaining: 203ms
227:	learn: 32.2788435	total: 635ms	remaining: 201ms
228:	learn: 32.2457383	total: 638ms	remaining: 198ms
229:	learn: 32.1839728	total: 640ms	remaining: 195ms
230:	learn: 32.1334642	total: 643ms	remaining: 192ms
231:	learn: 32.1052892	total: 646ms	remaining: 189ms
232:	learn: 32.0526544	total: 648ms	remaining: 186ms
233:	learn: 32.0476926	total: 651ms	remaining: 184ms
234:	learn: 32.0434369	total: 654ms	remaining: 181ms
235:	learn: 32.0001304	total: 656ms	remaining: 178ms
236:	learn: 31.9909493	total: 659ms	remaining: 175ms
237:	learn: 31.9583296	total: 662ms	remaining: 172ms
238:	learn: 31.9361650	total: 665ms	remaining: 170ms
239:	learn: 31.9097778	total: 668ms	remaining: 167ms
240:	learn: 31.9048113	total: 671ms	remaining: 164ms
241:	learn: 31.8978521	total: 674ms	remaining: 161ms
242:	learn: 31.8793342	total: 676ms	remaining: 159ms
243:	learn: 31.7955767	total: 679ms	remaining: 156ms
244:	learn: 31.7888123	total: 682ms	remaining: 153ms
245:	learn: 31.7646216	total: 684ms	remaining: 150ms
246:	learn: 31.7547256	total: 687ms	remaining: 147ms
247:	learn: 31.7467808	total: 690ms	remaining: 145ms
248:	learn: 31.7405683	total: 692ms	remaining: 142ms
249:	learn: 31.7159534	total: 695ms	remaining: 139ms
250:	learn: 31.6953713	total: 697ms	remaining: 136ms
251:	learn: 31.6886450	total: 700ms	remaining: 133ms
252:	learn: 31.6762483	total: 703ms	remaining: 131ms
253:	learn: 31.6663107	total: 705ms	remaining: 128ms
254:	learn: 31.6388957	total: 708ms	remaining: 125ms
255:	learn: 31.6119766	total: 711ms	remaining: 122ms
256:	learn: 31.5673762	total: 713ms	remaining: 119ms
257:	learn: 31.5087039	total: 716ms	remaining: 117ms
258:	learn: 31.5057918	total: 718ms	remaining: 114ms
259:	learn: 31.4815976	total: 721ms	remaining: 111ms
260:	learn: 31.4429973	total: 724ms	remaining: 108ms
261:	learn: 31.4307324	total: 726ms	remaining: 105ms
262:	learn: 31.3615565	total: 729ms	remaining: 103ms
263:	learn: 31.3419490	total: 732ms	remaining: 99.8ms
264:	learn: 31.3018857	total: 735ms	remaining: 97ms
265:	learn: 31.2955380	total: 737ms	remaining: 94.2ms
266:	learn: 31.2922250	total: 740ms	remaining: 91.4ms
267:	learn: 31.2238232	total: 742ms	remaining: 88.6ms
268:	learn: 31.2153842	total: 745ms	remaining: 85.9ms
269:	learn: 31.1941405	total: 749ms	remaining: 83.3ms
270:	learn: 31.1202914	total: 753ms	remaining: 80.5ms
271:	learn: 31.1076236	total: 756ms	remaining: 77.8ms
272:	learn: 31.0897572	total: 761ms	remaining: 75.2ms
273:	learn: 31.0876506	total: 765ms	remaining: 72.6ms
274:	learn: 31.0820490	total: 769ms	remaining: 69.9ms
275:	learn: 31.0378538	total: 772ms	remaining: 67.2ms
276:	learn: 31.0344867	total: 776ms	remaining: 64.5ms
277:	learn: 31.0038037	total: 779ms	remaining: 61.7ms
278:	learn: 30.9950252	total: 783ms	remaining: 58.9ms
279:	learn: 30.9785756	total: 786ms	remaining: 56.1ms
280:	learn: 30.9695898	total: 789ms	remaining: 53.3ms
281:	learn: 30.9640123	total: 792ms	remaining: 50.5ms
282:	learn: 30.8982341	total: 795ms	remaining: 47.8ms
283:	learn: 30.8788555	total: 798ms	remaining: 45ms
284:	learn: 30.8508810	total: 801ms	remaining: 42.2ms
285:	learn: 30.8225450	total: 804ms	remaining: 39.4ms
286:	learn: 30.8169303	total: 807ms	remaining: 36.6ms
287:	learn: 30.7949668	total: 810ms	remaining: 33.7ms
288:	learn: 30.7892180	total: 812ms	remaining: 30.9ms
289:	learn: 30.7517599	total: 816ms	remaining: 28.1ms
290:	learn: 30.7444248	total: 819ms	remaining: 25.3ms
291:	learn: 30.7341503	total: 822ms	remaining: 22.5ms
292:	learn: 30.7180315	total: 825ms	remaining: 19.7ms
293:	learn: 30.7118741	total: 828ms	remaining: 16.9ms
294:	learn: 30.7048745	total: 831ms	remaining: 14.1ms
295:	learn: 30.6999671	total: 834ms	remaining: 11.3ms
296:	learn: 30.6951216	total: 837ms	remaining: 8.45ms
297:	learn: 30.6717018	total: 840ms	remaining: 5.64ms
298:	learn: 30.6655786	total: 842ms	remaining: 2.82ms
299:	learn: 30.6597378	total: 845ms	remaining: 0us
0:	learn: 47.4345198	total: 2.85ms	remaining: 852ms
1:	learn: 47.1803373	total: 5.54ms	remaining: 825ms
2:	learn: 46.9537885	total: 8.06ms	remaining: 798ms
3:	learn: 46.7484006	total: 10.6ms	remaining: 781ms
4:	learn: 46.5082487	total: 13.1ms	remaining: 772ms
5:	learn: 46.2664567	total: 15.9ms	remaining: 779ms
6:	learn: 46.0790469	total: 18.6ms	remaining: 779ms
7:	learn: 45.8212445	total: 21.2ms	remaining: 772ms
8:	learn: 45.6254409	total: 23.5ms	remaining: 760ms
9:	learn: 45.4958339	total: 26ms	remaining: 753ms
10:	learn: 45.2719681	total: 28.5ms	remaining: 750ms
11:	learn: 45.0557338	total: 31.3ms	remaining: 752ms
12:	learn: 44.9420518	total: 34.2ms	remaining: 756ms
13:	learn: 44.7592065	total: 37ms	remaining: 756ms
14:	learn: 44.5928936	total: 40ms	remaining: 759ms
15:	learn: 44.4901287	total: 42.8ms	remaining: 760ms
16:	learn: 44.2608943	total: 45.7ms	remaining: 760ms
17:	learn: 44.1278950	total: 48.6ms	remaining: 761ms
18:	learn: 43.9869418	total: 51.3ms	remaining: 759ms
19:	learn: 43.8765329	total: 55ms	remaining: 770ms
20:	learn: 43.7825785	total: 58.9ms	remaining: 783ms
21:	learn: 43.6594405	total: 62.2ms	remaining: 786ms
22:	learn: 43.5017730	total: 65.5ms	remaining: 789ms
23:	learn: 43.4380746	total: 68.6ms	remaining: 789ms
24:	learn: 43.3460819	total: 71.7ms	remaining: 789ms
25:	learn: 43.2129469	total: 75.1ms	remaining: 791ms
26:	learn: 43.1117583	total: 77.8ms	remaining: 787ms
27:	learn: 42.9762849	total: 81.2ms	remaining: 789ms
28:	learn: 42.8205803	total: 84.1ms	remaining: 786ms
29:	learn: 42.7150685	total: 86.8ms	remaining: 781ms
30:	learn: 42.5706656	total: 89.3ms	remaining: 775ms
31:	learn: 42.4468875	total: 92ms	remaining: 770ms
32:	learn: 42.3323044	total: 94.5ms	remaining: 764ms
33:	learn: 42.2009098	total: 97.1ms	remaining: 759ms
34:	learn: 42.0809807	total: 99.6ms	remaining: 754ms
35:	learn: 41.9856134	total: 102ms	remaining: 749ms
36:	learn: 41.8615928	total: 105ms	remaining: 744ms
37:	learn: 41.7428387	total: 107ms	remaining: 740ms
38:	learn: 41.5880034	total: 110ms	remaining: 735ms
39:	learn: 41.5042737	total: 112ms	remaining: 729ms
40:	learn: 41.4533046	total: 115ms	remaining: 724ms
41:	learn: 41.3504099	total: 117ms	remaining: 719ms
42:	learn: 41.2610642	total: 120ms	remaining: 715ms
43:	learn: 41.1754851	total: 122ms	remaining: 711ms
44:	learn: 41.0611075	total: 125ms	remaining: 706ms
45:	learn: 41.0058906	total: 127ms	remaining: 703ms
46:	learn: 40.9356801	total: 130ms	remaining: 700ms
47:	learn: 40.8903721	total: 133ms	remaining: 696ms
48:	learn: 40.8364117	total: 135ms	remaining: 694ms
49:	learn: 40.7526690	total: 138ms	remaining: 690ms
50:	learn: 40.7139605	total: 141ms	remaining: 687ms
51:	learn: 40.6856635	total: 143ms	remaining: 684ms
52:	learn: 40.6228259	total: 146ms	remaining: 680ms
53:	learn: 40.5865664	total: 148ms	remaining: 676ms
54:	learn: 40.4597682	total: 151ms	remaining: 672ms
55:	learn: 40.3836976	total: 154ms	remaining: 669ms
56:	learn: 40.3348977	total: 156ms	remaining: 666ms
57:	learn: 40.2648050	total: 159ms	remaining: 663ms
58:	learn: 40.1210986	total: 161ms	remaining: 659ms
59:	learn: 39.9689757	total: 164ms	remaining: 656ms
60:	learn: 39.8863368	total: 167ms	remaining: 653ms
61:	learn: 39.7903478	total: 170ms	remaining: 652ms
62:	learn: 39.7348177	total: 173ms	remaining: 649ms
63:	learn: 39.6700427	total: 175ms	remaining: 646ms
64:	learn: 39.6233471	total: 178ms	remaining: 643ms
65:	learn: 39.5407288	total: 181ms	remaining: 640ms
66:	learn: 39.4833113	total: 183ms	remaining: 637ms
67:	learn: 39.4191014	total: 186ms	remaining: 634ms
68:	learn: 39.3943698	total: 189ms	remaining: 632ms
69:	learn: 39.3380348	total: 191ms	remaining: 628ms
70:	learn: 39.3015533	total: 194ms	remaining: 626ms
71:	learn: 39.2174641	total: 197ms	remaining: 622ms
72:	learn: 39.1853311	total: 199ms	remaining: 619ms
73:	learn: 39.1125684	total: 202ms	remaining: 616ms
74:	learn: 39.0538416	total: 204ms	remaining: 613ms
75:	learn: 39.0038579	total: 207ms	remaining: 610ms
76:	learn: 38.8831293	total: 210ms	remaining: 608ms
77:	learn: 38.8127389	total: 212ms	remaining: 604ms
78:	learn: 38.7407008	total: 215ms	remaining: 601ms
79:	learn: 38.6842485	total: 218ms	remaining: 599ms
80:	learn: 38.6190149	total: 221ms	remaining: 596ms
81:	learn: 38.5223921	total: 223ms	remaining: 593ms
82:	learn: 38.4713320	total: 226ms	remaining: 590ms
83:	learn: 38.3873627	total: 229ms	remaining: 588ms
84:	learn: 38.3481678	total: 231ms	remaining: 585ms
85:	learn: 38.3213332	total: 234ms	remaining: 582ms
86:	learn: 38.2593371	total: 237ms	remaining: 580ms
87:	learn: 38.2308330	total: 240ms	remaining: 577ms
88:	learn: 38.2021836	total: 242ms	remaining: 574ms
89:	learn: 38.1088158	total: 245ms	remaining: 571ms
90:	learn: 38.0486019	total: 250ms	remaining: 573ms
91:	learn: 38.0073677	total: 253ms	remaining: 573ms
92:	learn: 37.9592089	total: 257ms	remaining: 571ms
93:	learn: 37.8762661	total: 261ms	remaining: 572ms
94:	learn: 37.8039371	total: 265ms	remaining: 573ms
95:	learn: 37.7731061	total: 269ms	remaining: 572ms
96:	learn: 37.7365356	total: 272ms	remaining: 570ms
97:	learn: 37.6586128	total: 276ms	remaining: 569ms
98:	learn: 37.6245646	total: 279ms	remaining: 567ms
99:	learn: 37.5561553	total: 282ms	remaining: 564ms
100:	learn: 37.5224779	total: 285ms	remaining: 562ms
101:	learn: 37.4792420	total: 288ms	remaining: 560ms
102:	learn: 37.3605023	total: 291ms	remaining: 557ms
103:	learn: 37.3215427	total: 294ms	remaining: 554ms
104:	learn: 37.2983428	total: 297ms	remaining: 552ms
105:	learn: 37.2817367	total: 300ms	remaining: 550ms
106:	learn: 37.2232437	total: 303ms	remaining: 547ms
107:	learn: 37.1441937	total: 307ms	remaining: 545ms
108:	learn: 37.0909969	total: 310ms	remaining: 543ms
109:	learn: 37.0617132	total: 313ms	remaining: 541ms
110:	learn: 37.0352719	total: 316ms	remaining: 538ms
111:	learn: 36.9288919	total: 319ms	remaining: 536ms
112:	learn: 36.8746752	total: 322ms	remaining: 533ms
113:	learn: 36.8613313	total: 325ms	remaining: 530ms
114:	learn: 36.8129093	total: 328ms	remaining: 528ms
115:	learn: 36.7732980	total: 331ms	remaining: 525ms
116:	learn: 36.7305672	total: 334ms	remaining: 523ms
117:	learn: 36.6740912	total: 337ms	remaining: 520ms
118:	learn: 36.6450693	total: 340ms	remaining: 517ms
119:	learn: 36.6065580	total: 343ms	remaining: 514ms
120:	learn: 36.5517370	total: 345ms	remaining: 511ms
121:	learn: 36.5172017	total: 348ms	remaining: 507ms
122:	learn: 36.4083583	total: 350ms	remaining: 504ms
123:	learn: 36.3686528	total: 353ms	remaining: 501ms
124:	learn: 36.3201400	total: 355ms	remaining: 497ms
125:	learn: 36.2872491	total: 358ms	remaining: 494ms
126:	learn: 36.2655127	total: 361ms	remaining: 491ms
127:	learn: 36.2426270	total: 363ms	remaining: 488ms
128:	learn: 36.2356829	total: 366ms	remaining: 485ms
129:	learn: 36.2141644	total: 369ms	remaining: 482ms
130:	learn: 36.1189128	total: 371ms	remaining: 479ms
131:	learn: 35.9990160	total: 374ms	remaining: 476ms
132:	learn: 35.9495956	total: 376ms	remaining: 473ms
133:	learn: 35.9359773	total: 379ms	remaining: 470ms
134:	learn: 35.8470774	total: 382ms	remaining: 467ms
135:	learn: 35.7776583	total: 384ms	remaining: 463ms
136:	learn: 35.7530995	total: 387ms	remaining: 460ms
137:	learn: 35.7137428	total: 390ms	remaining: 457ms
138:	learn: 35.6881746	total: 392ms	remaining: 455ms
139:	learn: 35.5962786	total: 395ms	remaining: 451ms
140:	learn: 35.5258589	total: 398ms	remaining: 448ms
141:	learn: 35.4990619	total: 400ms	remaining: 445ms
142:	learn: 35.4569239	total: 403ms	remaining: 442ms
143:	learn: 35.3769413	total: 405ms	remaining: 439ms
144:	learn: 35.3588736	total: 408ms	remaining: 436ms
145:	learn: 35.3564411	total: 409ms	remaining: 431ms
146:	learn: 35.2721589	total: 411ms	remaining: 428ms
147:	learn: 35.2476377	total: 414ms	remaining: 425ms
148:	learn: 35.1755567	total: 417ms	remaining: 422ms
149:	learn: 35.1034252	total: 420ms	remaining: 420ms
150:	learn: 35.0394130	total: 422ms	remaining: 417ms
151:	learn: 35.0105709	total: 425ms	remaining: 414ms
152:	learn: 34.9827218	total: 428ms	remaining: 411ms
153:	learn: 34.9642349	total: 430ms	remaining: 408ms
154:	learn: 34.8701980	total: 433ms	remaining: 405ms
155:	learn: 34.8128882	total: 436ms	remaining: 402ms
156:	learn: 34.7617668	total: 438ms	remaining: 399ms
157:	learn: 34.7486854	total: 443ms	remaining: 398ms
158:	learn: 34.7207291	total: 446ms	remaining: 396ms
159:	learn: 34.6868678	total: 449ms	remaining: 393ms
160:	learn: 34.6313296	total: 452ms	remaining: 390ms
161:	learn: 34.5791853	total: 455ms	remaining: 388ms
162:	learn: 34.4758922	total: 459ms	remaining: 386ms
163:	learn: 34.4060345	total: 462ms	remaining: 383ms
164:	learn: 34.3487331	total: 465ms	remaining: 381ms
165:	learn: 34.3394067	total: 468ms	remaining: 378ms
166:	learn: 34.3152193	total: 470ms	remaining: 375ms
167:	learn: 34.2841593	total: 473ms	remaining: 372ms
168:	learn: 34.2560727	total: 475ms	remaining: 368ms
169:	learn: 34.2338047	total: 478ms	remaining: 365ms
170:	learn: 34.2089393	total: 481ms	remaining: 363ms
171:	learn: 34.1999285	total: 483ms	remaining: 359ms
172:	learn: 34.1830957	total: 486ms	remaining: 356ms
173:	learn: 34.1801720	total: 488ms	remaining: 353ms
174:	learn: 34.1577200	total: 491ms	remaining: 350ms
175:	learn: 34.1305343	total: 493ms	remaining: 348ms
176:	learn: 34.0351372	total: 496ms	remaining: 345ms
177:	learn: 34.0199010	total: 498ms	remaining: 342ms
178:	learn: 34.0061255	total: 501ms	remaining: 339ms
179:	learn: 33.9777425	total: 503ms	remaining: 336ms
180:	learn: 33.9382161	total: 506ms	remaining: 333ms
181:	learn: 33.9168710	total: 508ms	remaining: 330ms
182:	learn: 33.8769625	total: 511ms	remaining: 327ms
183:	learn: 33.8663742	total: 514ms	remaining: 324ms
184:	learn: 33.8429098	total: 516ms	remaining: 321ms
185:	learn: 33.8284318	total: 519ms	remaining: 318ms
186:	learn: 33.7880813	total: 521ms	remaining: 315ms
187:	learn: 33.7798237	total: 524ms	remaining: 312ms
188:	learn: 33.7441697	total: 526ms	remaining: 309ms
189:	learn: 33.7135438	total: 529ms	remaining: 306ms
190:	learn: 33.7008817	total: 531ms	remaining: 303ms
191:	learn: 33.6768361	total: 534ms	remaining: 300ms
192:	learn: 33.6630576	total: 537ms	remaining: 297ms
193:	learn: 33.6434109	total: 539ms	remaining: 295ms
194:	learn: 33.6050415	total: 542ms	remaining: 292ms
195:	learn: 33.5951124	total: 544ms	remaining: 289ms
196:	learn: 33.5642132	total: 547ms	remaining: 286ms
197:	learn: 33.5522406	total: 550ms	remaining: 283ms
198:	learn: 33.4978810	total: 552ms	remaining: 280ms
199:	learn: 33.4608382	total: 555ms	remaining: 277ms
200:	learn: 33.3967445	total: 557ms	remaining: 275ms
201:	learn: 33.3832791	total: 560ms	remaining: 272ms
202:	learn: 33.3600595	total: 563ms	remaining: 269ms
203:	learn: 33.3395917	total: 565ms	remaining: 266ms
204:	learn: 33.3279251	total: 568ms	remaining: 263ms
205:	learn: 33.3154042	total: 571ms	remaining: 260ms
206:	learn: 33.3040672	total: 573ms	remaining: 258ms
207:	learn: 33.2949743	total: 576ms	remaining: 255ms
208:	learn: 33.2469608	total: 579ms	remaining: 252ms
209:	learn: 33.2302800	total: 581ms	remaining: 249ms
210:	learn: 33.2171947	total: 584ms	remaining: 246ms
211:	learn: 33.2045634	total: 587ms	remaining: 243ms
212:	learn: 33.1679803	total: 589ms	remaining: 241ms
213:	learn: 33.1438602	total: 592ms	remaining: 238ms
214:	learn: 33.1075007	total: 595ms	remaining: 235ms
215:	learn: 33.0576166	total: 598ms	remaining: 232ms
216:	learn: 33.0454131	total: 600ms	remaining: 230ms
217:	learn: 33.0337434	total: 603ms	remaining: 227ms
218:	learn: 33.0225519	total: 606ms	remaining: 224ms
219:	learn: 33.0047964	total: 609ms	remaining: 221ms
220:	learn: 32.9935965	total: 611ms	remaining: 219ms
221:	learn: 32.9660799	total: 615ms	remaining: 216ms
222:	learn: 32.9548002	total: 618ms	remaining: 213ms
223:	learn: 32.9279846	total: 620ms	remaining: 211ms
224:	learn: 32.9099345	total: 623ms	remaining: 208ms
225:	learn: 32.8909935	total: 626ms	remaining: 205ms
226:	learn: 32.8483819	total: 629ms	remaining: 202ms
227:	learn: 32.8459290	total: 631ms	remaining: 199ms
228:	learn: 32.8125404	total: 634ms	remaining: 197ms
229:	learn: 32.7934895	total: 638ms	remaining: 194ms
230:	learn: 32.7822088	total: 641ms	remaining: 191ms
231:	learn: 32.7716027	total: 644ms	remaining: 189ms
232:	learn: 32.7581238	total: 648ms	remaining: 186ms
233:	learn: 32.7244963	total: 653ms	remaining: 184ms
234:	learn: 32.7140833	total: 658ms	remaining: 182ms
235:	learn: 32.6797398	total: 661ms	remaining: 179ms
236:	learn: 32.6660595	total: 666ms	remaining: 177ms
237:	learn: 32.6439964	total: 669ms	remaining: 174ms
238:	learn: 32.6415510	total: 672ms	remaining: 171ms
239:	learn: 32.6233019	total: 675ms	remaining: 169ms
240:	learn: 32.5736105	total: 677ms	remaining: 166ms
241:	learn: 32.5455064	total: 680ms	remaining: 163ms
242:	learn: 32.5302096	total: 683ms	remaining: 160ms
243:	learn: 32.4796998	total: 686ms	remaining: 158ms
244:	learn: 32.4507242	total: 690ms	remaining: 155ms
245:	learn: 32.4246666	total: 693ms	remaining: 152ms
246:	learn: 32.4067457	total: 696ms	remaining: 149ms
247:	learn: 32.3995464	total: 699ms	remaining: 146ms
248:	learn: 32.3749821	total: 702ms	remaining: 144ms
249:	learn: 32.3239190	total: 705ms	remaining: 141ms
250:	learn: 32.3000844	total: 707ms	remaining: 138ms
251:	learn: 32.2907687	total: 710ms	remaining: 135ms
252:	learn: 32.2865061	total: 713ms	remaining: 132ms
253:	learn: 32.2377833	total: 716ms	remaining: 130ms
254:	learn: 32.2239049	total: 720ms	remaining: 127ms
255:	learn: 32.2020136	total: 723ms	remaining: 124ms
256:	learn: 32.1695229	total: 726ms	remaining: 121ms
257:	learn: 32.1539705	total: 729ms	remaining: 119ms
258:	learn: 32.0825367	total: 731ms	remaining: 116ms
259:	learn: 32.0663493	total: 734ms	remaining: 113ms
260:	learn: 32.0292061	total: 737ms	remaining: 110ms
261:	learn: 32.0084765	total: 740ms	remaining: 107ms
262:	learn: 31.9644951	total: 743ms	remaining: 105ms
263:	learn: 31.9279050	total: 746ms	remaining: 102ms
264:	learn: 31.8601022	total: 749ms	remaining: 98.9ms
265:	learn: 31.7936103	total: 751ms	remaining: 96ms
266:	learn: 31.7415043	total: 754ms	remaining: 93.2ms
267:	learn: 31.6940452	total: 757ms	remaining: 90.3ms
268:	learn: 31.6721754	total: 759ms	remaining: 87.5ms
269:	learn: 31.6514151	total: 762ms	remaining: 84.7ms
270:	learn: 31.6186907	total: 765ms	remaining: 81.8ms
271:	learn: 31.6087114	total: 767ms	remaining: 79ms
272:	learn: 31.5882765	total: 770ms	remaining: 76.1ms
273:	learn: 31.5311760	total: 772ms	remaining: 73.3ms
274:	learn: 31.5220593	total: 775ms	remaining: 70.5ms
275:	learn: 31.4640439	total: 778ms	remaining: 67.6ms
276:	learn: 31.4519029	total: 781ms	remaining: 64.8ms
277:	learn: 31.4452374	total: 784ms	remaining: 62ms
278:	learn: 31.4143337	total: 786ms	remaining: 59.2ms
279:	learn: 31.3754862	total: 788ms	remaining: 56.3ms
280:	learn: 31.3627413	total: 791ms	remaining: 53.5ms
281:	learn: 31.3068276	total: 794ms	remaining: 50.7ms
282:	learn: 31.2442212	total: 797ms	remaining: 47.9ms
283:	learn: 31.2220652	total: 799ms	remaining: 45ms
284:	learn: 31.1843222	total: 802ms	remaining: 42.2ms
285:	learn: 31.1303702	total: 805ms	remaining: 39.4ms
286:	learn: 31.0994210	total: 807ms	remaining: 36.6ms
287:	learn: 31.0848959	total: 810ms	remaining: 33.8ms
288:	learn: 31.0612009	total: 813ms	remaining: 31ms
289:	learn: 31.0270292	total: 817ms	remaining: 28.2ms
290:	learn: 31.0162398	total: 820ms	remaining: 25.4ms
291:	learn: 31.0043120	total: 823ms	remaining: 22.6ms
292:	learn: 30.9935700	total: 826ms	remaining: 19.7ms
293:	learn: 30.9847419	total: 829ms	remaining: 16.9ms
294:	learn: 30.9772256	total: 832ms	remaining: 14.1ms
295:	learn: 30.9325326	total: 837ms	remaining: 11.3ms
296:	learn: 30.9189246	total: 840ms	remaining: 8.49ms
297:	learn: 30.8525316	total: 844ms	remaining: 5.66ms
298:	learn: 30.8189248	total: 846ms	remaining: 2.83ms
299:	learn: 30.8106431	total: 849ms	remaining: 0us
0:	learn: 27.5331316	total: 21.8ms	remaining: 2.15s
1:	learn: 27.0928878	total: 42.8ms	remaining: 2.1s
2:	learn: 26.6215397	total: 64.4ms	remaining: 2.08s
3:	learn: 26.1320797	total: 85.7ms	remaining: 2.06s
4:	learn: 25.5708114	total: 106ms	remaining: 2.01s
5:	learn: 25.1569609	total: 127ms	remaining: 1.99s
6:	learn: 24.6776916	total: 154ms	remaining: 2.04s
7:	learn: 24.3131466	total: 182ms	remaining: 2.09s
8:	learn: 23.9291269	total: 204ms	remaining: 2.06s
9:	learn: 23.5838366	total: 226ms	remaining: 2.03s
10:	learn: 23.2314577	total: 248ms	remaining: 2.01s
11:	learn: 22.8869949	total: 268ms	remaining: 1.97s
12:	learn: 22.4245937	total: 288ms	remaining: 1.93s
13:	learn: 22.0206534	total: 309ms	remaining: 1.9s
14:	learn: 21.7022606	total: 331ms	remaining: 1.88s
15:	learn: 21.3968672	total: 353ms	remaining: 1.85s
16:	learn: 20.9882573	total: 380ms	remaining: 1.86s
17:	learn: 20.6789624	total: 403ms	remaining: 1.84s
18:	learn: 20.3827949	total: 423ms	remaining: 1.8s
19:	learn: 20.1544166	total: 442ms	remaining: 1.77s
20:	learn: 19.9121457	total: 462ms	remaining: 1.74s
21:	learn: 19.6621421	total: 480ms	remaining: 1.7s
22:	learn: 19.3501569	total: 501ms	remaining: 1.68s
23:	learn: 19.0889327	total: 520ms	remaining: 1.65s
24:	learn: 18.8689195	total: 542ms	remaining: 1.63s
25:	learn: 18.5964445	total: 567ms	remaining: 1.61s
26:	learn: 18.3364834	total: 594ms	remaining: 1.6s
27:	learn: 18.1076409	total: 616ms	remaining: 1.58s
28:	learn: 17.8878261	total: 638ms	remaining: 1.56s
29:	learn: 17.6774627	total: 659ms	remaining: 1.54s
30:	learn: 17.4836295	total: 679ms	remaining: 1.51s
31:	learn: 17.2733761	total: 698ms	remaining: 1.48s
32:	learn: 17.0468867	total: 720ms	remaining: 1.46s
33:	learn: 16.8108325	total: 741ms	remaining: 1.44s
34:	learn: 16.5415211	total: 763ms	remaining: 1.42s
35:	learn: 16.3714184	total: 790ms	remaining: 1.4s
36:	learn: 16.1608788	total: 812ms	remaining: 1.38s
37:	learn: 15.9984328	total: 834ms	remaining: 1.36s
38:	learn: 15.8335060	total: 855ms	remaining: 1.34s
39:	learn: 15.6602202	total: 876ms	remaining: 1.31s
40:	learn: 15.4954581	total: 896ms	remaining: 1.29s
41:	learn: 15.3620882	total: 919ms	remaining: 1.27s
42:	learn: 15.2140166	total: 942ms	remaining: 1.25s
43:	learn: 15.0870086	total: 969ms	remaining: 1.23s
44:	learn: 14.9147154	total: 1s	remaining: 1.22s
45:	learn: 14.7609171	total: 1.02s	remaining: 1.2s
46:	learn: 14.5901052	total: 1.05s	remaining: 1.18s
47:	learn: 14.4273259	total: 1.07s	remaining: 1.16s
48:	learn: 14.2798610	total: 1.09s	remaining: 1.14s
49:	learn: 14.1021139	total: 1.11s	remaining: 1.11s
50:	learn: 13.9902689	total: 1.13s	remaining: 1.09s
51:	learn: 13.8779536	total: 1.16s	remaining: 1.07s
52:	learn: 13.7445550	total: 1.19s	remaining: 1.05s
53:	learn: 13.6337249	total: 1.21s	remaining: 1.03s
54:	learn: 13.5400472	total: 1.23s	remaining: 1.01s
55:	learn: 13.3803597	total: 1.25s	remaining: 986ms
56:	learn: 13.2902125	total: 1.28s	remaining: 964ms
57:	learn: 13.1578553	total: 1.3s	remaining: 941ms
58:	learn: 13.0362047	total: 1.32s	remaining: 918ms
59:	learn: 12.9394034	total: 1.34s	remaining: 895ms
60:	learn: 12.8348950	total: 1.36s	remaining: 872ms
61:	learn: 12.7266532	total: 1.39s	remaining: 850ms
62:	learn: 12.5633581	total: 1.42s	remaining: 833ms
63:	learn: 12.4424580	total: 1.44s	remaining: 811ms
64:	learn: 12.3207502	total: 1.47s	remaining: 790ms
65:	learn: 12.1991637	total: 1.49s	remaining: 767ms
66:	learn: 12.0994803	total: 1.51s	remaining: 745ms
67:	learn: 11.9730740	total: 1.53s	remaining: 721ms
68:	learn: 11.8611564	total: 1.55s	remaining: 698ms
69:	learn: 11.7682666	total: 1.57s	remaining: 674ms
70:	learn: 11.6650875	total: 1.6s	remaining: 654ms
71:	learn: 11.5916610	total: 1.63s	remaining: 633ms
72:	learn: 11.4778837	total: 1.65s	remaining: 610ms
73:	learn: 11.3753187	total: 1.67s	remaining: 587ms
74:	learn: 11.2807363	total: 1.69s	remaining: 565ms
75:	learn: 11.1922433	total: 1.71s	remaining: 541ms
76:	learn: 11.1089234	total: 1.74s	remaining: 519ms
77:	learn: 11.0238343	total: 1.76s	remaining: 496ms
78:	learn: 10.9409200	total: 1.78s	remaining: 473ms
79:	learn: 10.8632563	total: 1.8s	remaining: 451ms
80:	learn: 10.7619610	total: 1.83s	remaining: 429ms
81:	learn: 10.6971597	total: 1.86s	remaining: 409ms
82:	learn: 10.6251891	total: 1.88s	remaining: 386ms
83:	learn: 10.5326326	total: 1.91s	remaining: 363ms
84:	learn: 10.4377665	total: 1.93s	remaining: 341ms
85:	learn: 10.3817931	total: 1.95s	remaining: 318ms
86:	learn: 10.2988157	total: 1.97s	remaining: 295ms
87:	learn: 10.2192016	total: 1.99s	remaining: 272ms
88:	learn: 10.1494494	total: 2.01s	remaining: 249ms
89:	learn: 10.0741735	total: 2.03s	remaining: 226ms
90:	learn: 10.0144581	total: 2.06s	remaining: 204ms
91:	learn: 9.9524648	total: 2.08s	remaining: 181ms
92:	learn: 9.8774329	total: 2.1s	remaining: 158ms
93:	learn: 9.8185407	total: 2.12s	remaining: 136ms
94:	learn: 9.7522036	total: 2.15s	remaining: 113ms
95:	learn: 9.6854283	total: 2.17s	remaining: 90.3ms
96:	learn: 9.6130737	total: 2.19s	remaining: 67.6ms
97:	learn: 9.5584787	total: 2.21s	remaining: 45ms
98:	learn: 9.5074757	total: 2.23s	remaining: 22.5ms
99:	learn: 9.4107769	total: 2.25s	remaining: 0us
0:	learn: 42.7887226	total: 21.7ms	remaining: 2.15s
1:	learn: 41.8440822	total: 34.1ms	remaining: 1.67s
2:	learn: 40.7630462	total: 57.5ms	remaining: 1.86s
3:	learn: 39.5297880	total: 77.9ms	remaining: 1.87s
4:	learn: 38.6077280	total: 97.8ms	remaining: 1.86s
5:	learn: 37.6971732	total: 120ms	remaining: 1.88s
6:	learn: 36.7463218	total: 142ms	remaining: 1.88s
7:	learn: 35.8007703	total: 163ms	remaining: 1.88s
8:	learn: 34.9731655	total: 189ms	remaining: 1.91s
9:	learn: 34.1812857	total: 213ms	remaining: 1.91s
10:	learn: 33.3509251	total: 233ms	remaining: 1.88s
11:	learn: 32.6184078	total: 252ms	remaining: 1.85s
12:	learn: 31.9918266	total: 273ms	remaining: 1.82s
13:	learn: 31.2244641	total: 294ms	remaining: 1.81s
14:	learn: 30.5895020	total: 316ms	remaining: 1.79s
15:	learn: 29.9318064	total: 335ms	remaining: 1.76s
16:	learn: 29.2267723	total: 356ms	remaining: 1.74s
17:	learn: 28.6196795	total: 379ms	remaining: 1.72s
18:	learn: 28.0756253	total: 411ms	remaining: 1.75s
19:	learn: 27.4447254	total: 436ms	remaining: 1.74s
20:	learn: 26.8501969	total: 458ms	remaining: 1.72s
21:	learn: 26.3047050	total: 481ms	remaining: 1.71s
22:	learn: 25.7794565	total: 503ms	remaining: 1.69s
23:	learn: 25.2658135	total: 506ms	remaining: 1.6s
24:	learn: 24.7272223	total: 527ms	remaining: 1.58s
25:	learn: 24.3182112	total: 549ms	remaining: 1.56s
26:	learn: 23.9791831	total: 568ms	remaining: 1.54s
27:	learn: 23.6007465	total: 590ms	remaining: 1.52s
28:	learn: 23.2573075	total: 613ms	remaining: 1.5s
29:	learn: 22.9475656	total: 639ms	remaining: 1.49s
30:	learn: 22.5526305	total: 662ms	remaining: 1.47s
31:	learn: 22.1198330	total: 682ms	remaining: 1.45s
32:	learn: 21.7489085	total: 703ms	remaining: 1.43s
33:	learn: 21.3655565	total: 724ms	remaining: 1.41s
34:	learn: 21.0252381	total: 744ms	remaining: 1.38s
35:	learn: 20.7488731	total: 766ms	remaining: 1.36s
36:	learn: 20.5339646	total: 785ms	remaining: 1.34s
37:	learn: 20.2145684	total: 808ms	remaining: 1.32s
38:	learn: 19.8876509	total: 832ms	remaining: 1.3s
39:	learn: 19.6692385	total: 865ms	remaining: 1.3s
40:	learn: 19.4286270	total: 888ms	remaining: 1.28s
41:	learn: 19.1769071	total: 911ms	remaining: 1.26s
42:	learn: 18.9575237	total: 935ms	remaining: 1.24s
43:	learn: 18.7342247	total: 957ms	remaining: 1.22s
44:	learn: 18.4849146	total: 978ms	remaining: 1.2s
45:	learn: 18.2624270	total: 1s	remaining: 1.17s
46:	learn: 18.0695318	total: 1.02s	remaining: 1.15s
47:	learn: 17.8828655	total: 1.05s	remaining: 1.13s
48:	learn: 17.6634936	total: 1.07s	remaining: 1.12s
49:	learn: 17.4906819	total: 1.09s	remaining: 1.09s
50:	learn: 17.3041918	total: 1.12s	remaining: 1.07s
51:	learn: 17.0823762	total: 1.14s	remaining: 1.05s
52:	learn: 16.8782440	total: 1.16s	remaining: 1.03s
53:	learn: 16.6195426	total: 1.18s	remaining: 1s
54:	learn: 16.4155330	total: 1.2s	remaining: 982ms
55:	learn: 16.2476574	total: 1.22s	remaining: 961ms
56:	learn: 16.0258529	total: 1.25s	remaining: 944ms
57:	learn: 15.8620283	total: 1.28s	remaining: 924ms
58:	learn: 15.7108893	total: 1.3s	remaining: 903ms
59:	learn: 15.5737080	total: 1.32s	remaining: 882ms
60:	learn: 15.4123613	total: 1.34s	remaining: 861ms
61:	learn: 15.2629578	total: 1.37s	remaining: 840ms
62:	learn: 15.1097207	total: 1.39s	remaining: 819ms
63:	learn: 14.9427151	total: 1.42s	remaining: 797ms
64:	learn: 14.7889867	total: 1.44s	remaining: 775ms
65:	learn: 14.6746715	total: 1.47s	remaining: 755ms
66:	learn: 14.5205076	total: 1.49s	remaining: 735ms
67:	learn: 14.3786093	total: 1.51s	remaining: 713ms
68:	learn: 14.2324541	total: 1.54s	remaining: 690ms
69:	learn: 14.0978554	total: 1.56s	remaining: 668ms
70:	learn: 13.9424582	total: 1.58s	remaining: 646ms
71:	learn: 13.8140169	total: 1.6s	remaining: 623ms
72:	learn: 13.6759558	total: 1.63s	remaining: 601ms
73:	learn: 13.5499120	total: 1.65s	remaining: 579ms
74:	learn: 13.4276838	total: 1.67s	remaining: 557ms
75:	learn: 13.3175244	total: 1.7s	remaining: 537ms
76:	learn: 13.2179850	total: 1.73s	remaining: 515ms
77:	learn: 13.1192866	total: 1.75s	remaining: 493ms
78:	learn: 13.0156952	total: 1.77s	remaining: 471ms
79:	learn: 12.8996211	total: 1.8s	remaining: 449ms
80:	learn: 12.8036058	total: 1.82s	remaining: 426ms
81:	learn: 12.7085774	total: 1.84s	remaining: 404ms
82:	learn: 12.6225307	total: 1.86s	remaining: 381ms
83:	learn: 12.4901564	total: 1.89s	remaining: 360ms
84:	learn: 12.3766435	total: 1.91s	remaining: 338ms
85:	learn: 12.2837693	total: 1.94s	remaining: 315ms
86:	learn: 12.1808453	total: 1.96s	remaining: 292ms
87:	learn: 12.1154320	total: 1.98s	remaining: 270ms
88:	learn: 12.0324383	total: 2s	remaining: 247ms
89:	learn: 11.9649236	total: 2.02s	remaining: 224ms
90:	learn: 11.8702731	total: 2.04s	remaining: 202ms
91:	learn: 11.7872282	total: 2.06s	remaining: 179ms
92:	learn: 11.6802080	total: 2.08s	remaining: 157ms
93:	learn: 11.5608608	total: 2.11s	remaining: 135ms
94:	learn: 11.4619383	total: 2.14s	remaining: 113ms
95:	learn: 11.3892378	total: 2.16s	remaining: 90.1ms
96:	learn: 11.3083410	total: 2.19s	remaining: 67.6ms
97:	learn: 11.2283441	total: 2.21s	remaining: 45.1ms
98:	learn: 11.1583948	total: 2.23s	remaining: 22.5ms
99:	learn: 11.0469641	total: 2.25s	remaining: 0us
0:	learn: 46.3030650	total: 4.1ms	remaining: 406ms
1:	learn: 45.3863821	total: 29.9ms	remaining: 1.47s
2:	learn: 44.3303657	total: 50.6ms	remaining: 1.64s
3:	learn: 43.3376970	total: 70.7ms	remaining: 1.7s
4:	learn: 42.3048090	total: 90.9ms	remaining: 1.73s
5:	learn: 41.2876619	total: 110ms	remaining: 1.72s
6:	learn: 40.2621105	total: 130ms	remaining: 1.73s
7:	learn: 39.2067787	total: 152ms	remaining: 1.74s
8:	learn: 38.2152671	total: 172ms	remaining: 1.74s
9:	learn: 37.3871577	total: 193ms	remaining: 1.73s
10:	learn: 36.6393787	total: 213ms	remaining: 1.73s
11:	learn: 35.8850130	total: 234ms	remaining: 1.72s
12:	learn: 35.3145595	total: 256ms	remaining: 1.72s
13:	learn: 34.5127183	total: 287ms	remaining: 1.76s
14:	learn: 33.9299378	total: 311ms	remaining: 1.76s
15:	learn: 33.1444830	total: 334ms	remaining: 1.75s
16:	learn: 32.5046852	total: 355ms	remaining: 1.73s
17:	learn: 31.9896017	total: 376ms	remaining: 1.71s
18:	learn: 31.3671259	total: 397ms	remaining: 1.69s
19:	learn: 30.7709490	total: 418ms	remaining: 1.67s
20:	learn: 30.3076309	total: 438ms	remaining: 1.65s
21:	learn: 29.7436165	total: 460ms	remaining: 1.63s
22:	learn: 29.2367879	total: 485ms	remaining: 1.62s
23:	learn: 28.6721804	total: 510ms	remaining: 1.61s
24:	learn: 28.1740050	total: 530ms	remaining: 1.59s
25:	learn: 27.7310122	total: 550ms	remaining: 1.56s
26:	learn: 27.2559389	total: 570ms	remaining: 1.54s
27:	learn: 26.7919727	total: 591ms	remaining: 1.52s
28:	learn: 26.3973786	total: 611ms	remaining: 1.5s
29:	learn: 25.9446861	total: 632ms	remaining: 1.48s
30:	learn: 25.5889650	total: 654ms	remaining: 1.46s
31:	learn: 25.1627233	total: 676ms	remaining: 1.44s
32:	learn: 24.8848176	total: 699ms	remaining: 1.42s
33:	learn: 24.4268954	total: 729ms	remaining: 1.42s
34:	learn: 24.1655944	total: 751ms	remaining: 1.4s
35:	learn: 23.8296205	total: 774ms	remaining: 1.38s
36:	learn: 23.4214518	total: 797ms	remaining: 1.36s
37:	learn: 23.1485204	total: 818ms	remaining: 1.33s
38:	learn: 22.7675316	total: 840ms	remaining: 1.31s
39:	learn: 22.4807336	total: 859ms	remaining: 1.29s
40:	learn: 22.2054867	total: 879ms	remaining: 1.26s
41:	learn: 21.9328851	total: 905ms	remaining: 1.25s
42:	learn: 21.6073446	total: 931ms	remaining: 1.23s
43:	learn: 21.3198829	total: 953ms	remaining: 1.21s
44:	learn: 21.0001604	total: 973ms	remaining: 1.19s
45:	learn: 20.6560095	total: 993ms	remaining: 1.17s
46:	learn: 20.4068862	total: 1.01s	remaining: 1.14s
47:	learn: 20.1123610	total: 1.04s	remaining: 1.12s
48:	learn: 19.8929795	total: 1.06s	remaining: 1.1s
49:	learn: 19.6851325	total: 1.08s	remaining: 1.08s
50:	learn: 19.4379923	total: 1.1s	remaining: 1.05s
51:	learn: 19.1765299	total: 1.12s	remaining: 1.03s
52:	learn: 18.9359818	total: 1.15s	remaining: 1.02s
53:	learn: 18.6848954	total: 1.17s	remaining: 1s
54:	learn: 18.4602852	total: 1.2s	remaining: 980ms
55:	learn: 18.2692773	total: 1.22s	remaining: 958ms
56:	learn: 18.0399201	total: 1.24s	remaining: 937ms
57:	learn: 17.8235063	total: 1.26s	remaining: 915ms
58:	learn: 17.6311769	total: 1.28s	remaining: 892ms
59:	learn: 17.4590002	total: 1.3s	remaining: 870ms
60:	learn: 17.2170241	total: 1.33s	remaining: 848ms
61:	learn: 17.0477567	total: 1.35s	remaining: 827ms
62:	learn: 16.8483227	total: 1.38s	remaining: 810ms
63:	learn: 16.7003707	total: 1.4s	remaining: 788ms
64:	learn: 16.5244197	total: 1.42s	remaining: 765ms
65:	learn: 16.3560522	total: 1.44s	remaining: 742ms
66:	learn: 16.2090391	total: 1.46s	remaining: 721ms
67:	learn: 16.0773806	total: 1.49s	remaining: 699ms
68:	learn: 15.9313223	total: 1.5s	remaining: 676ms
69:	learn: 15.8587403	total: 1.53s	remaining: 655ms
70:	learn: 15.7219902	total: 1.55s	remaining: 634ms
71:	learn: 15.5888303	total: 1.58s	remaining: 616ms
72:	learn: 15.4672174	total: 1.61s	remaining: 595ms
73:	learn: 15.3250528	total: 1.63s	remaining: 574ms
74:	learn: 15.1885799	total: 1.66s	remaining: 552ms
75:	learn: 15.0571789	total: 1.68s	remaining: 531ms
76:	learn: 14.9087739	total: 1.7s	remaining: 509ms
77:	learn: 14.7682304	total: 1.73s	remaining: 487ms
78:	learn: 14.5259049	total: 1.75s	remaining: 465ms
79:	learn: 14.3631190	total: 1.77s	remaining: 444ms
80:	learn: 14.2467961	total: 1.8s	remaining: 423ms
81:	learn: 14.0738885	total: 1.83s	remaining: 401ms
82:	learn: 13.9665111	total: 1.85s	remaining: 378ms
83:	learn: 13.8331846	total: 1.87s	remaining: 356ms
84:	learn: 13.7292162	total: 1.89s	remaining: 334ms
85:	learn: 13.6492354	total: 1.91s	remaining: 312ms
86:	learn: 13.5481979	total: 1.94s	remaining: 290ms
87:	learn: 13.4472352	total: 1.96s	remaining: 267ms
88:	learn: 13.3258910	total: 1.98s	remaining: 245ms
89:	learn: 13.2393886	total: 2.02s	remaining: 224ms
90:	learn: 13.1693415	total: 2.04s	remaining: 202ms
91:	learn: 13.0653588	total: 2.06s	remaining: 179ms
92:	learn: 12.9569271	total: 2.08s	remaining: 157ms
93:	learn: 12.7887232	total: 2.11s	remaining: 135ms
94:	learn: 12.6654219	total: 2.13s	remaining: 112ms
95:	learn: 12.5942081	total: 2.15s	remaining: 89.8ms
96:	learn: 12.5016735	total: 2.19s	remaining: 67.6ms
97:	learn: 12.3851734	total: 2.21s	remaining: 45.2ms
98:	learn: 12.2915943	total: 2.23s	remaining: 22.6ms
99:	learn: 12.1817773	total: 2.26s	remaining: 0us
0:	learn: 45.9374585	total: 2.84ms	remaining: 281ms
1:	learn: 44.9941372	total: 25.1ms	remaining: 1.23s
2:	learn: 44.2262139	total: 46.4ms	remaining: 1.5s
3:	learn: 43.4077369	total: 69.7ms	remaining: 1.67s
4:	learn: 42.4614795	total: 99.6ms	remaining: 1.89s
5:	learn: 41.7293035	total: 127ms	remaining: 1.99s
6:	learn: 40.9788334	total: 150ms	remaining: 1.99s
7:	learn: 40.2192521	total: 173ms	remaining: 1.99s
8:	learn: 39.3640339	total: 196ms	remaining: 1.98s
9:	learn: 38.5378070	total: 218ms	remaining: 1.96s
10:	learn: 37.8182939	total: 239ms	remaining: 1.93s
11:	learn: 37.1773569	total: 261ms	remaining: 1.91s
12:	learn: 36.4195124	total: 284ms	remaining: 1.9s
13:	learn: 35.5821022	total: 307ms	remaining: 1.89s
14:	learn: 35.0064478	total: 334ms	remaining: 1.89s
15:	learn: 34.2615732	total: 355ms	remaining: 1.86s
16:	learn: 33.5412554	total: 377ms	remaining: 1.84s
17:	learn: 32.9141508	total: 397ms	remaining: 1.81s
18:	learn: 32.2363942	total: 418ms	remaining: 1.78s
19:	learn: 31.7331387	total: 438ms	remaining: 1.75s
20:	learn: 31.0899756	total: 460ms	remaining: 1.73s
21:	learn: 30.6319944	total: 481ms	remaining: 1.7s
22:	learn: 30.1842367	total: 509ms	remaining: 1.71s
23:	learn: 29.6380878	total: 534ms	remaining: 1.69s
24:	learn: 29.2321241	total: 559ms	remaining: 1.68s
25:	learn: 28.7979520	total: 581ms	remaining: 1.65s
26:	learn: 28.2980553	total: 605ms	remaining: 1.64s
27:	learn: 27.8482566	total: 628ms	remaining: 1.61s
28:	learn: 27.4300154	total: 650ms	remaining: 1.59s
29:	learn: 27.0089070	total: 670ms	remaining: 1.56s
30:	learn: 26.6386533	total: 693ms	remaining: 1.54s
31:	learn: 26.1488739	total: 716ms	remaining: 1.52s
32:	learn: 25.7427326	total: 739ms	remaining: 1.5s
33:	learn: 25.4135376	total: 766ms	remaining: 1.49s
34:	learn: 25.1125079	total: 787ms	remaining: 1.46s
35:	learn: 24.7765508	total: 809ms	remaining: 1.44s
36:	learn: 24.4184054	total: 829ms	remaining: 1.41s
37:	learn: 24.1285465	total: 851ms	remaining: 1.39s
38:	learn: 23.7617767	total: 874ms	remaining: 1.37s
39:	learn: 23.4697237	total: 895ms	remaining: 1.34s
40:	learn: 23.1529572	total: 915ms	remaining: 1.32s
41:	learn: 22.9281680	total: 937ms	remaining: 1.29s
42:	learn: 22.5433571	total: 961ms	remaining: 1.27s
43:	learn: 22.2694210	total: 994ms	remaining: 1.26s
44:	learn: 22.0626545	total: 1.02s	remaining: 1.24s
45:	learn: 21.7856336	total: 1.04s	remaining: 1.22s
46:	learn: 21.5744570	total: 1.06s	remaining: 1.2s
47:	learn: 21.3032312	total: 1.08s	remaining: 1.17s
48:	learn: 21.0549035	total: 1.1s	remaining: 1.15s
49:	learn: 20.7560738	total: 1.12s	remaining: 1.12s
50:	learn: 20.5666362	total: 1.14s	remaining: 1.1s
51:	learn: 20.2971913	total: 1.17s	remaining: 1.08s
52:	learn: 20.1128767	total: 1.2s	remaining: 1.06s
53:	learn: 19.9086266	total: 1.22s	remaining: 1.04s
54:	learn: 19.8505379	total: 1.24s	remaining: 1.01s
55:	learn: 19.6060818	total: 1.25s	remaining: 987ms
56:	learn: 19.3463236	total: 1.27s	remaining: 962ms
57:	learn: 19.1448943	total: 1.29s	remaining: 938ms
58:	learn: 18.9303070	total: 1.31s	remaining: 914ms
59:	learn: 18.7334702	total: 1.33s	remaining: 890ms
60:	learn: 18.4745316	total: 1.36s	remaining: 867ms
61:	learn: 18.3429058	total: 1.38s	remaining: 845ms
62:	learn: 18.2349371	total: 1.41s	remaining: 827ms
63:	learn: 18.0464198	total: 1.43s	remaining: 805ms
64:	learn: 17.9551885	total: 1.45s	remaining: 783ms
65:	learn: 17.8046513	total: 1.48s	remaining: 760ms
66:	learn: 17.6580615	total: 1.5s	remaining: 737ms
67:	learn: 17.5210179	total: 1.52s	remaining: 714ms
68:	learn: 17.3683843	total: 1.54s	remaining: 690ms
69:	learn: 17.2746349	total: 1.56s	remaining: 668ms
70:	learn: 17.1657792	total: 1.58s	remaining: 645ms
71:	learn: 17.0139366	total: 1.6s	remaining: 624ms
72:	learn: 16.9273438	total: 1.63s	remaining: 603ms
73:	learn: 16.7770796	total: 1.65s	remaining: 580ms
74:	learn: 16.6273270	total: 1.67s	remaining: 556ms
75:	learn: 16.4876252	total: 1.69s	remaining: 533ms
76:	learn: 16.3403316	total: 1.71s	remaining: 510ms
77:	learn: 16.2334666	total: 1.73s	remaining: 487ms
78:	learn: 16.1246403	total: 1.75s	remaining: 465ms
79:	learn: 16.1051765	total: 1.75s	remaining: 437ms
80:	learn: 15.9789512	total: 1.77s	remaining: 415ms
81:	learn: 15.8668312	total: 1.79s	remaining: 393ms
82:	learn: 15.8286992	total: 1.81s	remaining: 372ms
83:	learn: 15.7176535	total: 1.85s	remaining: 352ms
84:	learn: 15.6304053	total: 1.87s	remaining: 330ms
85:	learn: 15.5540487	total: 1.89s	remaining: 308ms
86:	learn: 15.4358015	total: 1.92s	remaining: 286ms
87:	learn: 15.3234993	total: 1.94s	remaining: 264ms
88:	learn: 15.1846833	total: 1.96s	remaining: 242ms
89:	learn: 15.0930916	total: 1.98s	remaining: 220ms
90:	learn: 14.9870552	total: 2s	remaining: 198ms
91:	learn: 14.9340350	total: 2.02s	remaining: 176ms
92:	learn: 14.8819329	total: 2.05s	remaining: 154ms
93:	learn: 14.8108947	total: 2.07s	remaining: 132ms
94:	learn: 14.7229760	total: 2.09s	remaining: 110ms
95:	learn: 14.6144792	total: 2.11s	remaining: 88.1ms
96:	learn: 14.5117556	total: 2.13s	remaining: 66.1ms
97:	learn: 14.4162730	total: 2.16s	remaining: 44ms
98:	learn: 14.3472920	total: 2.18s	remaining: 22ms
99:	learn: 14.2651631	total: 2.2s	remaining: 0us
0:	learn: 46.4538034	total: 25.7ms	remaining: 2.54s
1:	learn: 45.4517374	total: 48.6ms	remaining: 2.38s
2:	learn: 44.5278586	total: 70.6ms	remaining: 2.28s
3:	learn: 43.4085977	total: 94.1ms	remaining: 2.26s
4:	learn: 42.4277811	total: 113ms	remaining: 2.15s
5:	learn: 41.6326697	total: 134ms	remaining: 2.09s
6:	learn: 40.7538359	total: 156ms	remaining: 2.07s
7:	learn: 39.9527309	total: 176ms	remaining: 2.03s
8:	learn: 39.0753018	total: 199ms	remaining: 2.01s
9:	learn: 38.2762566	total: 219ms	remaining: 1.97s
10:	learn: 37.6931120	total: 241ms	remaining: 1.95s
11:	learn: 37.1152456	total: 266ms	remaining: 1.95s
12:	learn: 36.4260589	total: 293ms	remaining: 1.96s
13:	learn: 35.8227743	total: 315ms	remaining: 1.93s
14:	learn: 35.1895931	total: 335ms	remaining: 1.9s
15:	learn: 34.5173917	total: 354ms	remaining: 1.86s
16:	learn: 33.7580423	total: 374ms	remaining: 1.83s
17:	learn: 33.2817590	total: 395ms	remaining: 1.8s
18:	learn: 32.6094234	total: 417ms	remaining: 1.78s
19:	learn: 32.1663838	total: 438ms	remaining: 1.75s
20:	learn: 31.6118204	total: 460ms	remaining: 1.73s
21:	learn: 31.0524919	total: 483ms	remaining: 1.71s
22:	learn: 30.6530294	total: 512ms	remaining: 1.71s
23:	learn: 29.9638142	total: 538ms	remaining: 1.7s
24:	learn: 29.4784766	total: 561ms	remaining: 1.68s
25:	learn: 29.0431548	total: 585ms	remaining: 1.67s
26:	learn: 28.5923229	total: 609ms	remaining: 1.65s
27:	learn: 28.1646598	total: 629ms	remaining: 1.62s
28:	learn: 27.7320559	total: 652ms	remaining: 1.6s
29:	learn: 27.3472101	total: 673ms	remaining: 1.57s
30:	learn: 26.9299792	total: 695ms	remaining: 1.55s
31:	learn: 26.5961114	total: 718ms	remaining: 1.52s
32:	learn: 26.0427736	total: 745ms	remaining: 1.51s
33:	learn: 25.5746867	total: 768ms	remaining: 1.49s
34:	learn: 25.2866624	total: 790ms	remaining: 1.47s
35:	learn: 24.9462619	total: 810ms	remaining: 1.44s
36:	learn: 24.6276430	total: 830ms	remaining: 1.41s
37:	learn: 24.3408784	total: 851ms	remaining: 1.39s
38:	learn: 24.0950500	total: 871ms	remaining: 1.36s
39:	learn: 23.7192013	total: 892ms	remaining: 1.34s
40:	learn: 23.4131644	total: 915ms	remaining: 1.32s
41:	learn: 23.0871679	total: 943ms	remaining: 1.3s
42:	learn: 22.8237273	total: 972ms	remaining: 1.29s
43:	learn: 22.5691307	total: 997ms	remaining: 1.27s
44:	learn: 22.3341037	total: 1.02s	remaining: 1.25s
45:	learn: 22.0782394	total: 1.04s	remaining: 1.23s
46:	learn: 21.8287260	total: 1.06s	remaining: 1.2s
47:	learn: 21.4945293	total: 1.08s	remaining: 1.17s
48:	learn: 21.2779027	total: 1.1s	remaining: 1.15s
49:	learn: 21.0183245	total: 1.13s	remaining: 1.13s
50:	learn: 20.8304059	total: 1.15s	remaining: 1.1s
51:	learn: 20.6505224	total: 1.18s	remaining: 1.08s
52:	learn: 20.4434302	total: 1.2s	remaining: 1.06s
53:	learn: 20.2358596	total: 1.22s	remaining: 1.04s
54:	learn: 19.9248895	total: 1.24s	remaining: 1.02s
55:	learn: 19.6402054	total: 1.26s	remaining: 992ms
56:	learn: 19.4863996	total: 1.28s	remaining: 968ms
57:	learn: 19.2820242	total: 1.3s	remaining: 945ms
58:	learn: 19.0309684	total: 1.33s	remaining: 922ms
59:	learn: 18.9156855	total: 1.35s	remaining: 900ms
60:	learn: 18.7362124	total: 1.38s	remaining: 883ms
61:	learn: 18.5327109	total: 1.4s	remaining: 861ms
62:	learn: 18.3473379	total: 1.43s	remaining: 838ms
63:	learn: 18.1447985	total: 1.45s	remaining: 816ms
64:	learn: 17.9782680	total: 1.47s	remaining: 794ms
65:	learn: 17.7731055	total: 1.49s	remaining: 769ms
66:	learn: 17.6666871	total: 1.51s	remaining: 746ms
67:	learn: 17.4893685	total: 1.54s	remaining: 723ms
68:	learn: 17.4081271	total: 1.56s	remaining: 701ms
69:	learn: 17.2768910	total: 1.58s	remaining: 679ms
70:	learn: 17.1686736	total: 1.61s	remaining: 658ms
71:	learn: 17.0306633	total: 1.63s	remaining: 636ms
72:	learn: 16.8387254	total: 1.66s	remaining: 613ms
73:	learn: 16.6835666	total: 1.68s	remaining: 589ms
74:	learn: 16.5275101	total: 1.7s	remaining: 566ms
75:	learn: 16.3788685	total: 1.72s	remaining: 543ms
76:	learn: 16.2632053	total: 1.74s	remaining: 520ms
77:	learn: 16.1434405	total: 1.76s	remaining: 497ms
78:	learn: 16.0439065	total: 1.78s	remaining: 474ms
79:	learn: 15.9662547	total: 1.8s	remaining: 451ms
80:	learn: 15.8312242	total: 1.83s	remaining: 430ms
81:	learn: 15.7325519	total: 1.86s	remaining: 408ms
82:	learn: 15.5842095	total: 1.88s	remaining: 385ms
83:	learn: 15.4773774	total: 1.9s	remaining: 362ms
84:	learn: 15.3840131	total: 1.93s	remaining: 340ms
85:	learn: 15.2543240	total: 1.95s	remaining: 317ms
86:	learn: 15.1770733	total: 1.97s	remaining: 294ms
87:	learn: 15.0601980	total: 1.99s	remaining: 271ms
88:	learn: 14.9710854	total: 2.01s	remaining: 249ms
89:	learn: 14.8071359	total: 2.03s	remaining: 226ms
90:	learn: 14.6765600	total: 2.06s	remaining: 204ms
91:	learn: 14.6006761	total: 2.08s	remaining: 181ms
92:	learn: 14.4927442	total: 2.1s	remaining: 158ms
93:	learn: 14.3676298	total: 2.12s	remaining: 136ms
94:	learn: 14.2821814	total: 2.14s	remaining: 113ms
95:	learn: 14.1977772	total: 2.16s	remaining: 90ms
96:	learn: 14.0716572	total: 2.18s	remaining: 67.5ms
97:	learn: 13.9596234	total: 2.2s	remaining: 44.9ms
98:	learn: 13.8995436	total: 2.22s	remaining: 22.5ms
99:	learn: 13.8034385	total: 2.25s	remaining: 0us
0:	learn: 26.8780123	total: 1.62ms	remaining: 323ms
1:	learn: 25.9043921	total: 3.04ms	remaining: 301ms
2:	learn: 25.0663216	total: 4.39ms	remaining: 288ms
3:	learn: 24.1332294	total: 5.76ms	remaining: 282ms
4:	learn: 23.3601755	total: 7.24ms	remaining: 282ms
5:	learn: 22.9157604	total: 9.14ms	remaining: 296ms
6:	learn: 22.3654023	total: 10.7ms	remaining: 295ms
7:	learn: 21.8960373	total: 12ms	remaining: 289ms
8:	learn: 21.5070135	total: 13.6ms	remaining: 289ms
9:	learn: 21.0046151	total: 15.4ms	remaining: 293ms
10:	learn: 20.6513404	total: 16.7ms	remaining: 287ms
11:	learn: 20.2426893	total: 18ms	remaining: 282ms
12:	learn: 19.9302622	total: 19.3ms	remaining: 277ms
13:	learn: 19.5777286	total: 20.6ms	remaining: 273ms
14:	learn: 19.3118034	total: 21.9ms	remaining: 270ms
15:	learn: 19.0360666	total: 23.2ms	remaining: 266ms
16:	learn: 18.7716159	total: 24.4ms	remaining: 262ms
17:	learn: 18.4566599	total: 25.7ms	remaining: 260ms
18:	learn: 18.2927501	total: 27ms	remaining: 257ms
19:	learn: 18.1194416	total: 28.2ms	remaining: 253ms
20:	learn: 17.9430536	total: 29.5ms	remaining: 251ms
21:	learn: 17.8280854	total: 30.8ms	remaining: 250ms
22:	learn: 17.6642931	total: 32.3ms	remaining: 249ms
23:	learn: 17.5061616	total: 33.7ms	remaining: 247ms
24:	learn: 17.2762703	total: 34.9ms	remaining: 244ms
25:	learn: 17.1451275	total: 36.4ms	remaining: 244ms
26:	learn: 16.9306177	total: 37.8ms	remaining: 242ms
27:	learn: 16.8487860	total: 39.1ms	remaining: 240ms
28:	learn: 16.5681267	total: 40.4ms	remaining: 238ms
29:	learn: 16.4717015	total: 41.7ms	remaining: 236ms
30:	learn: 16.3374350	total: 43ms	remaining: 234ms
31:	learn: 16.1874305	total: 44.2ms	remaining: 232ms
32:	learn: 16.0197095	total: 45.6ms	remaining: 231ms
33:	learn: 15.8764166	total: 46.9ms	remaining: 229ms
34:	learn: 15.8515487	total: 48.2ms	remaining: 227ms
35:	learn: 15.8248399	total: 49.4ms	remaining: 225ms
36:	learn: 15.7210312	total: 50.7ms	remaining: 223ms
37:	learn: 15.5988641	total: 52ms	remaining: 222ms
38:	learn: 15.4309330	total: 53.3ms	remaining: 220ms
39:	learn: 15.2923817	total: 54.6ms	remaining: 218ms
40:	learn: 15.2034106	total: 55.8ms	remaining: 216ms
41:	learn: 15.1096066	total: 57ms	remaining: 214ms
42:	learn: 15.0332381	total: 58.3ms	remaining: 213ms
43:	learn: 14.9505994	total: 59.5ms	remaining: 211ms
44:	learn: 14.8598807	total: 60.7ms	remaining: 209ms
45:	learn: 14.8160247	total: 62ms	remaining: 207ms
46:	learn: 14.7502711	total: 63.2ms	remaining: 206ms
47:	learn: 14.6559871	total: 64.5ms	remaining: 204ms
48:	learn: 14.5854837	total: 65.8ms	remaining: 203ms
49:	learn: 14.5499920	total: 67.1ms	remaining: 201ms
50:	learn: 14.4444283	total: 68.3ms	remaining: 200ms
51:	learn: 14.3487120	total: 69.6ms	remaining: 198ms
52:	learn: 14.2932080	total: 70.9ms	remaining: 197ms
53:	learn: 14.2463197	total: 72.2ms	remaining: 195ms
54:	learn: 14.1748090	total: 73.4ms	remaining: 194ms
55:	learn: 14.1230579	total: 74.6ms	remaining: 192ms
56:	learn: 14.0658107	total: 75.9ms	remaining: 191ms
57:	learn: 13.9301963	total: 77.2ms	remaining: 189ms
58:	learn: 13.8921094	total: 78.4ms	remaining: 187ms
59:	learn: 13.8125984	total: 79.6ms	remaining: 186ms
60:	learn: 13.7348965	total: 80.9ms	remaining: 184ms
61:	learn: 13.6366597	total: 82.3ms	remaining: 183ms
62:	learn: 13.5779579	total: 83.6ms	remaining: 182ms
63:	learn: 13.5143491	total: 84.9ms	remaining: 180ms
64:	learn: 13.4867625	total: 86.2ms	remaining: 179ms
65:	learn: 13.4133267	total: 87.5ms	remaining: 178ms
66:	learn: 13.3350082	total: 88.7ms	remaining: 176ms
67:	learn: 13.2699153	total: 89.9ms	remaining: 175ms
68:	learn: 13.2169661	total: 91.2ms	remaining: 173ms
69:	learn: 13.2010197	total: 92.4ms	remaining: 172ms
70:	learn: 13.1555695	total: 93.7ms	remaining: 170ms
71:	learn: 13.0050035	total: 94.9ms	remaining: 169ms
72:	learn: 12.8909186	total: 96.2ms	remaining: 167ms
73:	learn: 12.8359378	total: 97.5ms	remaining: 166ms
74:	learn: 12.7931154	total: 98.8ms	remaining: 165ms
75:	learn: 12.6794363	total: 101ms	remaining: 164ms
76:	learn: 12.6250914	total: 102ms	remaining: 163ms
77:	learn: 12.5828418	total: 103ms	remaining: 161ms
78:	learn: 12.5525142	total: 104ms	remaining: 160ms
79:	learn: 12.5073778	total: 106ms	remaining: 158ms
80:	learn: 12.4000173	total: 107ms	remaining: 157ms
81:	learn: 12.2465583	total: 108ms	remaining: 156ms
82:	learn: 12.2062227	total: 110ms	remaining: 154ms
83:	learn: 12.1563882	total: 111ms	remaining: 153ms
84:	learn: 12.0021969	total: 112ms	remaining: 152ms
85:	learn: 11.9673275	total: 113ms	remaining: 150ms
86:	learn: 11.9144004	total: 115ms	remaining: 149ms
87:	learn: 11.8871985	total: 116ms	remaining: 148ms
88:	learn: 11.7609906	total: 117ms	remaining: 146ms
89:	learn: 11.7305728	total: 119ms	remaining: 145ms
90:	learn: 11.7155199	total: 120ms	remaining: 144ms
91:	learn: 11.6510384	total: 121ms	remaining: 142ms
92:	learn: 11.6188932	total: 123ms	remaining: 141ms
93:	learn: 11.5644175	total: 124ms	remaining: 140ms
94:	learn: 11.5225771	total: 125ms	remaining: 138ms
95:	learn: 11.4912355	total: 126ms	remaining: 137ms
96:	learn: 11.4496711	total: 128ms	remaining: 136ms
97:	learn: 11.3386414	total: 129ms	remaining: 134ms
98:	learn: 11.3143359	total: 130ms	remaining: 133ms
99:	learn: 11.3045788	total: 132ms	remaining: 132ms
100:	learn: 11.2241989	total: 133ms	remaining: 130ms
101:	learn: 11.1986470	total: 134ms	remaining: 129ms
102:	learn: 11.1849294	total: 135ms	remaining: 127ms
103:	learn: 11.1068233	total: 137ms	remaining: 126ms
104:	learn: 11.1035711	total: 138ms	remaining: 125ms
105:	learn: 11.0083742	total: 141ms	remaining: 125ms
106:	learn: 10.9551515	total: 142ms	remaining: 124ms
107:	learn: 10.9291619	total: 144ms	remaining: 123ms
108:	learn: 10.9262836	total: 146ms	remaining: 122ms
109:	learn: 10.8277609	total: 147ms	remaining: 121ms
110:	learn: 10.8250114	total: 149ms	remaining: 120ms
111:	learn: 10.8159766	total: 151ms	remaining: 118ms
112:	learn: 10.7941672	total: 152ms	remaining: 117ms
113:	learn: 10.7161853	total: 154ms	remaining: 116ms
114:	learn: 10.6867241	total: 155ms	remaining: 115ms
115:	learn: 10.6696052	total: 156ms	remaining: 113ms
116:	learn: 10.6470174	total: 158ms	remaining: 112ms
117:	learn: 10.6440036	total: 159ms	remaining: 111ms
118:	learn: 10.5519178	total: 161ms	remaining: 109ms
119:	learn: 10.4823658	total: 162ms	remaining: 108ms
120:	learn: 10.4194117	total: 164ms	remaining: 107ms
121:	learn: 10.3934481	total: 166ms	remaining: 106ms
122:	learn: 10.3323873	total: 167ms	remaining: 104ms
123:	learn: 10.2814883	total: 168ms	remaining: 103ms
124:	learn: 10.2738198	total: 169ms	remaining: 102ms
125:	learn: 10.2234476	total: 171ms	remaining: 100ms
126:	learn: 10.1870721	total: 172ms	remaining: 98.8ms
127:	learn: 10.1208964	total: 173ms	remaining: 97.5ms
128:	learn: 10.1060307	total: 175ms	remaining: 96.1ms
129:	learn: 10.0751339	total: 176ms	remaining: 94.8ms
130:	learn: 10.0544777	total: 178ms	remaining: 93.5ms
131:	learn: 10.0123439	total: 179ms	remaining: 92.2ms
132:	learn: 10.0103456	total: 181ms	remaining: 91ms
133:	learn: 9.9646319	total: 182ms	remaining: 89.8ms
134:	learn: 9.9592056	total: 184ms	remaining: 88.4ms
135:	learn: 9.9198204	total: 185ms	remaining: 87.1ms
136:	learn: 9.9100869	total: 186ms	remaining: 85.7ms
137:	learn: 9.8574542	total: 188ms	remaining: 84.4ms
138:	learn: 9.8415987	total: 189ms	remaining: 83ms
139:	learn: 9.8331971	total: 191ms	remaining: 81.7ms
140:	learn: 9.7742422	total: 192ms	remaining: 80.3ms
141:	learn: 9.7420410	total: 193ms	remaining: 78.9ms
142:	learn: 9.7268423	total: 195ms	remaining: 77.6ms
143:	learn: 9.7126225	total: 196ms	remaining: 76.3ms
144:	learn: 9.7041303	total: 198ms	remaining: 74.9ms
145:	learn: 9.6577031	total: 199ms	remaining: 73.6ms
146:	learn: 9.6030392	total: 201ms	remaining: 72.3ms
147:	learn: 9.5891010	total: 202ms	remaining: 71ms
148:	learn: 9.5748128	total: 204ms	remaining: 69.7ms
149:	learn: 9.5382984	total: 205ms	remaining: 68.4ms
150:	learn: 9.4852927	total: 207ms	remaining: 67.1ms
151:	learn: 9.4353119	total: 208ms	remaining: 65.7ms
152:	learn: 9.4007787	total: 209ms	remaining: 64.3ms
153:	learn: 9.3792481	total: 211ms	remaining: 63ms
154:	learn: 9.3667367	total: 212ms	remaining: 61.6ms
155:	learn: 9.3231711	total: 214ms	remaining: 60.3ms
156:	learn: 9.2982697	total: 216ms	remaining: 59ms
157:	learn: 9.2583025	total: 217ms	remaining: 57.7ms
158:	learn: 9.2385114	total: 219ms	remaining: 56.4ms
159:	learn: 9.2122079	total: 220ms	remaining: 55ms
160:	learn: 9.1909208	total: 221ms	remaining: 53.6ms
161:	learn: 9.1583999	total: 223ms	remaining: 52.3ms
162:	learn: 9.1346684	total: 224ms	remaining: 50.9ms
163:	learn: 9.0966572	total: 226ms	remaining: 49.6ms
164:	learn: 9.0756642	total: 227ms	remaining: 48.2ms
165:	learn: 9.0686768	total: 229ms	remaining: 46.9ms
166:	learn: 9.0426638	total: 230ms	remaining: 45.5ms
167:	learn: 9.0358117	total: 232ms	remaining: 44.2ms
168:	learn: 9.0159549	total: 233ms	remaining: 42.8ms
169:	learn: 9.0088652	total: 235ms	remaining: 41.4ms
170:	learn: 8.9678807	total: 236ms	remaining: 40.1ms
171:	learn: 8.9369188	total: 238ms	remaining: 38.7ms
172:	learn: 8.8931317	total: 239ms	remaining: 37.4ms
173:	learn: 8.8678608	total: 241ms	remaining: 36ms
174:	learn: 8.8470735	total: 242ms	remaining: 34.6ms
175:	learn: 8.8060308	total: 244ms	remaining: 33.2ms
176:	learn: 8.7830318	total: 245ms	remaining: 31.8ms
177:	learn: 8.7584972	total: 247ms	remaining: 30.5ms
178:	learn: 8.7551538	total: 248ms	remaining: 29.1ms
179:	learn: 8.7283591	total: 249ms	remaining: 27.7ms
180:	learn: 8.6996402	total: 251ms	remaining: 26.3ms
181:	learn: 8.6409248	total: 252ms	remaining: 24.9ms
182:	learn: 8.6193486	total: 253ms	remaining: 23.5ms
183:	learn: 8.5931097	total: 255ms	remaining: 22.2ms
184:	learn: 8.5386145	total: 256ms	remaining: 20.8ms
185:	learn: 8.5057562	total: 257ms	remaining: 19.4ms
186:	learn: 8.4793085	total: 259ms	remaining: 18ms
187:	learn: 8.4659231	total: 260ms	remaining: 16.6ms
188:	learn: 8.4578531	total: 261ms	remaining: 15.2ms
189:	learn: 8.4370190	total: 262ms	remaining: 13.8ms
190:	learn: 8.4192446	total: 264ms	remaining: 12.4ms
191:	learn: 8.4104933	total: 265ms	remaining: 11ms
192:	learn: 8.3743513	total: 266ms	remaining: 9.65ms
193:	learn: 8.3526721	total: 267ms	remaining: 8.27ms
194:	learn: 8.3305361	total: 269ms	remaining: 6.89ms
195:	learn: 8.3099305	total: 270ms	remaining: 5.51ms
196:	learn: 8.2801696	total: 271ms	remaining: 4.13ms
197:	learn: 8.2444902	total: 272ms	remaining: 2.75ms
198:	learn: 8.2136721	total: 274ms	remaining: 1.38ms
199:	learn: 8.1647665	total: 275ms	remaining: 0us
0:	learn: 42.3740470	total: 1.41ms	remaining: 280ms
1:	learn: 40.3399430	total: 2.67ms	remaining: 264ms
2:	learn: 38.4471083	total: 3.98ms	remaining: 262ms
3:	learn: 37.0183270	total: 5.27ms	remaining: 258ms
4:	learn: 35.1509786	total: 6.46ms	remaining: 252ms
5:	learn: 33.6516582	total: 7.7ms	remaining: 249ms
6:	learn: 32.2729479	total: 8.95ms	remaining: 247ms
7:	learn: 30.8843111	total: 10.1ms	remaining: 243ms
8:	learn: 29.6132064	total: 11.4ms	remaining: 242ms
9:	learn: 28.3886575	total: 12.7ms	remaining: 241ms
10:	learn: 27.4894389	total: 14.3ms	remaining: 245ms
11:	learn: 26.7873725	total: 15.6ms	remaining: 245ms
12:	learn: 25.9112013	total: 16.9ms	remaining: 243ms
13:	learn: 25.0770267	total: 18.2ms	remaining: 242ms
14:	learn: 24.4552796	total: 19.5ms	remaining: 241ms
15:	learn: 23.7593414	total: 20.9ms	remaining: 240ms
16:	learn: 23.1113269	total: 22.3ms	remaining: 240ms
17:	learn: 22.6045954	total: 23.6ms	remaining: 239ms
18:	learn: 22.3091480	total: 25.1ms	remaining: 239ms
19:	learn: 21.9353317	total: 26.4ms	remaining: 238ms
20:	learn: 21.5220580	total: 27.8ms	remaining: 237ms
21:	learn: 21.0560084	total: 29.2ms	remaining: 236ms
22:	learn: 20.6895688	total: 30.8ms	remaining: 237ms
23:	learn: 20.3817993	total: 32.1ms	remaining: 235ms
24:	learn: 20.1357194	total: 33.4ms	remaining: 234ms
25:	learn: 19.9299256	total: 34.7ms	remaining: 232ms
26:	learn: 19.7053653	total: 36.2ms	remaining: 232ms
27:	learn: 19.5098436	total: 38.2ms	remaining: 235ms
28:	learn: 19.3263277	total: 40.9ms	remaining: 241ms
29:	learn: 19.1742303	total: 42.7ms	remaining: 242ms
30:	learn: 18.9262701	total: 44.5ms	remaining: 243ms
31:	learn: 18.7144111	total: 46.6ms	remaining: 245ms
32:	learn: 18.4932266	total: 56.2ms	remaining: 285ms
33:	learn: 18.3531879	total: 58.4ms	remaining: 285ms
34:	learn: 18.0951391	total: 59.9ms	remaining: 282ms
35:	learn: 17.9335378	total: 61.2ms	remaining: 279ms
36:	learn: 17.7265341	total: 63.5ms	remaining: 280ms
37:	learn: 17.4949899	total: 65.2ms	remaining: 278ms
38:	learn: 17.3955543	total: 66.9ms	remaining: 276ms
39:	learn: 17.3157891	total: 68.4ms	remaining: 273ms
40:	learn: 17.1119704	total: 70.2ms	remaining: 272ms
41:	learn: 17.0374737	total: 71.7ms	remaining: 270ms
42:	learn: 16.8781471	total: 73.3ms	remaining: 268ms
43:	learn: 16.7212815	total: 74.8ms	remaining: 265ms
44:	learn: 16.6261497	total: 76.2ms	remaining: 262ms
45:	learn: 16.5094972	total: 77.6ms	remaining: 260ms
46:	learn: 16.4189859	total: 79.2ms	remaining: 258ms
47:	learn: 16.2459023	total: 80.8ms	remaining: 256ms
48:	learn: 16.1824834	total: 82.3ms	remaining: 254ms
49:	learn: 16.1278686	total: 83.7ms	remaining: 251ms
50:	learn: 15.9927037	total: 85.1ms	remaining: 249ms
51:	learn: 15.9047125	total: 86.5ms	remaining: 246ms
52:	learn: 15.8803257	total: 88.2ms	remaining: 245ms
53:	learn: 15.8158634	total: 89.7ms	remaining: 243ms
54:	learn: 15.7153075	total: 91.2ms	remaining: 240ms
55:	learn: 15.6619018	total: 92.7ms	remaining: 238ms
56:	learn: 15.6146635	total: 94.1ms	remaining: 236ms
57:	learn: 15.4834259	total: 95.7ms	remaining: 234ms
58:	learn: 15.4059372	total: 97.4ms	remaining: 233ms
59:	learn: 15.2769287	total: 99.1ms	remaining: 231ms
60:	learn: 15.1360763	total: 101ms	remaining: 229ms
61:	learn: 15.0405394	total: 102ms	remaining: 227ms
62:	learn: 14.8891996	total: 104ms	remaining: 225ms
63:	learn: 14.8481361	total: 105ms	remaining: 223ms
64:	learn: 14.7613586	total: 106ms	remaining: 221ms
65:	learn: 14.6664352	total: 108ms	remaining: 218ms
66:	learn: 14.5674002	total: 109ms	remaining: 216ms
67:	learn: 14.5145867	total: 110ms	remaining: 214ms
68:	learn: 14.4330840	total: 112ms	remaining: 212ms
69:	learn: 14.3523528	total: 113ms	remaining: 210ms
70:	learn: 14.3385769	total: 115ms	remaining: 208ms
71:	learn: 14.2099037	total: 116ms	remaining: 206ms
72:	learn: 14.0500061	total: 118ms	remaining: 205ms
73:	learn: 13.9994436	total: 119ms	remaining: 203ms
74:	learn: 13.9793074	total: 121ms	remaining: 202ms
75:	learn: 13.8663302	total: 122ms	remaining: 200ms
76:	learn: 13.7511886	total: 124ms	remaining: 197ms
77:	learn: 13.6900984	total: 125ms	remaining: 195ms
78:	learn: 13.5590771	total: 126ms	remaining: 193ms
79:	learn: 13.5272900	total: 127ms	remaining: 191ms
80:	learn: 13.4470323	total: 129ms	remaining: 189ms
81:	learn: 13.4073072	total: 130ms	remaining: 187ms
82:	learn: 13.3271760	total: 131ms	remaining: 185ms
83:	learn: 13.3073888	total: 132ms	remaining: 183ms
84:	learn: 13.1746805	total: 134ms	remaining: 181ms
85:	learn: 13.1013300	total: 135ms	remaining: 179ms
86:	learn: 13.0760148	total: 136ms	remaining: 177ms
87:	learn: 12.9777621	total: 137ms	remaining: 175ms
88:	learn: 12.8913910	total: 139ms	remaining: 173ms
89:	learn: 12.7720371	total: 140ms	remaining: 171ms
90:	learn: 12.7015541	total: 141ms	remaining: 169ms
91:	learn: 12.6472579	total: 143ms	remaining: 168ms
92:	learn: 12.6371586	total: 144ms	remaining: 166ms
93:	learn: 12.5527328	total: 145ms	remaining: 164ms
94:	learn: 12.5084240	total: 147ms	remaining: 162ms
95:	learn: 12.5010203	total: 148ms	remaining: 160ms
96:	learn: 12.4235611	total: 149ms	remaining: 158ms
97:	learn: 12.3999573	total: 150ms	remaining: 156ms
98:	learn: 12.3823209	total: 152ms	remaining: 155ms
99:	learn: 12.2766391	total: 153ms	remaining: 153ms
100:	learn: 12.2305887	total: 154ms	remaining: 151ms
101:	learn: 12.1790931	total: 156ms	remaining: 149ms
102:	learn: 12.1044301	total: 157ms	remaining: 148ms
103:	learn: 12.0758723	total: 158ms	remaining: 146ms
104:	learn: 12.0677262	total: 159ms	remaining: 144ms
105:	learn: 11.9777579	total: 160ms	remaining: 142ms
106:	learn: 11.9307747	total: 162ms	remaining: 141ms
107:	learn: 11.8895186	total: 163ms	remaining: 139ms
108:	learn: 11.8084366	total: 164ms	remaining: 137ms
109:	learn: 11.7493209	total: 166ms	remaining: 136ms
110:	learn: 11.6999226	total: 167ms	remaining: 134ms
111:	learn: 11.6937789	total: 168ms	remaining: 132ms
112:	learn: 11.6321348	total: 170ms	remaining: 131ms
113:	learn: 11.6043737	total: 171ms	remaining: 129ms
114:	learn: 11.5601139	total: 172ms	remaining: 127ms
115:	learn: 11.5142867	total: 173ms	remaining: 126ms
116:	learn: 11.5081653	total: 175ms	remaining: 124ms
117:	learn: 11.4945182	total: 176ms	remaining: 122ms
118:	learn: 11.4638817	total: 177ms	remaining: 121ms
119:	learn: 11.4449582	total: 178ms	remaining: 119ms
120:	learn: 11.3872543	total: 179ms	remaining: 117ms
121:	learn: 11.3072421	total: 181ms	remaining: 116ms
122:	learn: 11.2401251	total: 182ms	remaining: 114ms
123:	learn: 11.2230300	total: 183ms	remaining: 112ms
124:	learn: 11.1817394	total: 185ms	remaining: 111ms
125:	learn: 11.1549002	total: 186ms	remaining: 109ms
126:	learn: 11.1437461	total: 187ms	remaining: 108ms
127:	learn: 11.0760719	total: 188ms	remaining: 106ms
128:	learn: 11.0418831	total: 189ms	remaining: 104ms
129:	learn: 10.9937001	total: 191ms	remaining: 103ms
130:	learn: 10.9542092	total: 192ms	remaining: 101ms
131:	learn: 10.9320342	total: 194ms	remaining: 99.7ms
132:	learn: 10.9079932	total: 195ms	remaining: 98.1ms
133:	learn: 10.8558757	total: 196ms	remaining: 96.5ms
134:	learn: 10.8358317	total: 197ms	remaining: 94.9ms
135:	learn: 10.7849225	total: 198ms	remaining: 93.4ms
136:	learn: 10.7419067	total: 200ms	remaining: 91.8ms
137:	learn: 10.6961575	total: 201ms	remaining: 90.2ms
138:	learn: 10.6581906	total: 202ms	remaining: 88.7ms
139:	learn: 10.6290394	total: 203ms	remaining: 87.1ms
140:	learn: 10.5911813	total: 205ms	remaining: 85.6ms
141:	learn: 10.5693988	total: 206ms	remaining: 84ms
142:	learn: 10.5402047	total: 207ms	remaining: 82.5ms
143:	learn: 10.5333414	total: 208ms	remaining: 81ms
144:	learn: 10.5292652	total: 210ms	remaining: 79.5ms
145:	learn: 10.4946571	total: 211ms	remaining: 78ms
146:	learn: 10.4451531	total: 212ms	remaining: 76.5ms
147:	learn: 10.4348850	total: 213ms	remaining: 74.9ms
148:	learn: 10.4126426	total: 215ms	remaining: 73.5ms
149:	learn: 10.3996311	total: 216ms	remaining: 72ms
150:	learn: 10.3424042	total: 218ms	remaining: 70.6ms
151:	learn: 10.3169855	total: 219ms	remaining: 69.1ms
152:	learn: 10.2928616	total: 220ms	remaining: 67.6ms
153:	learn: 10.2578053	total: 221ms	remaining: 66.2ms
154:	learn: 10.2081210	total: 223ms	remaining: 64.7ms
155:	learn: 10.1795936	total: 224ms	remaining: 63.2ms
156:	learn: 10.1469030	total: 226ms	remaining: 61.8ms
157:	learn: 10.1308682	total: 227ms	remaining: 60.3ms
158:	learn: 10.0985586	total: 228ms	remaining: 58.8ms
159:	learn: 10.0688999	total: 230ms	remaining: 57.5ms
160:	learn: 9.9988571	total: 232ms	remaining: 56.3ms
161:	learn: 9.9513510	total: 234ms	remaining: 54.9ms
162:	learn: 9.8665404	total: 236ms	remaining: 53.5ms
163:	learn: 9.8292355	total: 237ms	remaining: 52.1ms
164:	learn: 9.8190293	total: 239ms	remaining: 50.6ms
165:	learn: 9.8056979	total: 240ms	remaining: 49.2ms
166:	learn: 9.7919568	total: 242ms	remaining: 47.8ms
167:	learn: 9.7330557	total: 244ms	remaining: 46.4ms
168:	learn: 9.6908134	total: 245ms	remaining: 45ms
169:	learn: 9.6440234	total: 247ms	remaining: 43.5ms
170:	learn: 9.6277834	total: 248ms	remaining: 42.1ms
171:	learn: 9.6011809	total: 250ms	remaining: 40.7ms
172:	learn: 9.5739379	total: 251ms	remaining: 39.2ms
173:	learn: 9.5528044	total: 253ms	remaining: 37.7ms
174:	learn: 9.5358087	total: 254ms	remaining: 36.3ms
175:	learn: 9.4784471	total: 256ms	remaining: 34.8ms
176:	learn: 9.4528669	total: 257ms	remaining: 33.4ms
177:	learn: 9.4289419	total: 258ms	remaining: 31.9ms
178:	learn: 9.3792504	total: 259ms	remaining: 30.4ms
179:	learn: 9.3667458	total: 261ms	remaining: 29ms
180:	learn: 9.3036318	total: 262ms	remaining: 27.5ms
181:	learn: 9.2909811	total: 263ms	remaining: 26ms
182:	learn: 9.2708937	total: 264ms	remaining: 24.6ms
183:	learn: 9.2294733	total: 266ms	remaining: 23.1ms
184:	learn: 9.2061119	total: 267ms	remaining: 21.7ms
185:	learn: 9.1665233	total: 268ms	remaining: 20.2ms
186:	learn: 9.1238011	total: 269ms	remaining: 18.7ms
187:	learn: 9.1118739	total: 271ms	remaining: 17.3ms
188:	learn: 9.0862975	total: 272ms	remaining: 15.8ms
189:	learn: 9.0781470	total: 273ms	remaining: 14.4ms
190:	learn: 9.0519515	total: 274ms	remaining: 12.9ms
191:	learn: 9.0297709	total: 275ms	remaining: 11.5ms
192:	learn: 8.9907012	total: 277ms	remaining: 10ms
193:	learn: 8.9671347	total: 278ms	remaining: 8.59ms
194:	learn: 8.9529746	total: 279ms	remaining: 7.15ms
195:	learn: 8.9246206	total: 280ms	remaining: 5.72ms
196:	learn: 8.9047940	total: 281ms	remaining: 4.29ms
197:	learn: 8.8857897	total: 283ms	remaining: 2.85ms
198:	learn: 8.8679002	total: 284ms	remaining: 1.43ms
199:	learn: 8.8464720	total: 285ms	remaining: 0us
0:	learn: 46.2278637	total: 1.34ms	remaining: 267ms
1:	learn: 44.9867418	total: 2.67ms	remaining: 264ms
2:	learn: 43.6196363	total: 3.76ms	remaining: 247ms
3:	learn: 42.2814629	total: 4.94ms	remaining: 242ms
4:	learn: 40.9855882	total: 6.13ms	remaining: 239ms
5:	learn: 39.4728429	total: 7.32ms	remaining: 237ms
6:	learn: 38.3689697	total: 8.57ms	remaining: 236ms
7:	learn: 36.9889318	total: 9.83ms	remaining: 236ms
8:	learn: 36.0705151	total: 11.2ms	remaining: 238ms
9:	learn: 34.5872942	total: 12.5ms	remaining: 237ms
10:	learn: 33.6102302	total: 13.8ms	remaining: 237ms
11:	learn: 32.7660009	total: 15.3ms	remaining: 239ms
12:	learn: 32.1368033	total: 16.6ms	remaining: 239ms
13:	learn: 31.4312312	total: 17.9ms	remaining: 238ms
14:	learn: 30.4835198	total: 19.3ms	remaining: 238ms
15:	learn: 29.8460381	total: 20.7ms	remaining: 238ms
16:	learn: 28.9524490	total: 22.2ms	remaining: 239ms
17:	learn: 28.5564772	total: 23.6ms	remaining: 238ms
18:	learn: 27.9432714	total: 25ms	remaining: 238ms
19:	learn: 27.5024856	total: 26.3ms	remaining: 237ms
20:	learn: 26.9057699	total: 27.8ms	remaining: 237ms
21:	learn: 26.3872882	total: 29.1ms	remaining: 236ms
22:	learn: 25.9168921	total: 30.5ms	remaining: 235ms
23:	learn: 25.5964863	total: 31.9ms	remaining: 234ms
24:	learn: 25.2823653	total: 33.3ms	remaining: 233ms
25:	learn: 25.0599387	total: 34.6ms	remaining: 231ms
26:	learn: 24.6995660	total: 36ms	remaining: 231ms
27:	learn: 24.3274721	total: 37.4ms	remaining: 230ms
28:	learn: 24.0974336	total: 38.7ms	remaining: 228ms
29:	learn: 23.7484439	total: 39.8ms	remaining: 226ms
30:	learn: 23.5668857	total: 41ms	remaining: 224ms
31:	learn: 23.3301102	total: 42.2ms	remaining: 221ms
32:	learn: 23.2167664	total: 43.5ms	remaining: 220ms
33:	learn: 22.9314282	total: 44.8ms	remaining: 219ms
34:	learn: 22.8780232	total: 46ms	remaining: 217ms
35:	learn: 22.6460673	total: 47.3ms	remaining: 215ms
36:	learn: 22.2457152	total: 48.4ms	remaining: 213ms
37:	learn: 21.8524008	total: 49.6ms	remaining: 212ms
38:	learn: 21.5666620	total: 50.8ms	remaining: 210ms
39:	learn: 21.4271473	total: 52ms	remaining: 208ms
40:	learn: 21.2127538	total: 53.2ms	remaining: 206ms
41:	learn: 20.9938461	total: 54.4ms	remaining: 205ms
42:	learn: 20.6894207	total: 55.5ms	remaining: 203ms
43:	learn: 20.4377998	total: 56.7ms	remaining: 201ms
44:	learn: 20.1593708	total: 58.3ms	remaining: 201ms
45:	learn: 20.0370690	total: 59.6ms	remaining: 199ms
46:	learn: 19.9311887	total: 60.8ms	remaining: 198ms
47:	learn: 19.7375660	total: 62.1ms	remaining: 197ms
48:	learn: 19.5831218	total: 63.4ms	remaining: 195ms
49:	learn: 19.4754139	total: 64.5ms	remaining: 194ms
50:	learn: 19.2863407	total: 65.8ms	remaining: 192ms
51:	learn: 19.1653451	total: 67ms	remaining: 191ms
52:	learn: 19.0243324	total: 68.2ms	remaining: 189ms
53:	learn: 18.8365571	total: 69.4ms	remaining: 188ms
54:	learn: 18.6953724	total: 70.7ms	remaining: 186ms
55:	learn: 18.5303848	total: 71.9ms	remaining: 185ms
56:	learn: 18.5026379	total: 73.2ms	remaining: 184ms
57:	learn: 18.3322607	total: 74.5ms	remaining: 182ms
58:	learn: 18.0701415	total: 75.8ms	remaining: 181ms
59:	learn: 18.0162426	total: 77.1ms	remaining: 180ms
60:	learn: 17.9058328	total: 78.5ms	remaining: 179ms
61:	learn: 17.7897388	total: 79.8ms	remaining: 178ms
62:	learn: 17.6107119	total: 81ms	remaining: 176ms
63:	learn: 17.3830854	total: 82.3ms	remaining: 175ms
64:	learn: 17.3149647	total: 83.6ms	remaining: 174ms
65:	learn: 17.2425282	total: 84.9ms	remaining: 172ms
66:	learn: 17.1584893	total: 86.2ms	remaining: 171ms
67:	learn: 16.9857615	total: 87.5ms	remaining: 170ms
68:	learn: 16.8537016	total: 88.8ms	remaining: 169ms
69:	learn: 16.8094882	total: 90.1ms	remaining: 167ms
70:	learn: 16.6615663	total: 91.4ms	remaining: 166ms
71:	learn: 16.6001531	total: 92.8ms	remaining: 165ms
72:	learn: 16.4983757	total: 94.2ms	remaining: 164ms
73:	learn: 16.3260470	total: 96.1ms	remaining: 164ms
74:	learn: 16.2866666	total: 98.5ms	remaining: 164ms
75:	learn: 16.1303383	total: 100ms	remaining: 164ms
76:	learn: 15.8832762	total: 102ms	remaining: 163ms
77:	learn: 15.8317229	total: 104ms	remaining: 162ms
78:	learn: 15.8083430	total: 106ms	remaining: 162ms
79:	learn: 15.6256321	total: 109ms	remaining: 163ms
80:	learn: 15.4841139	total: 111ms	remaining: 164ms
81:	learn: 15.3283804	total: 114ms	remaining: 164ms
82:	learn: 15.1339089	total: 116ms	remaining: 164ms
83:	learn: 15.0247000	total: 118ms	remaining: 162ms
84:	learn: 14.8744835	total: 119ms	remaining: 161ms
85:	learn: 14.8170849	total: 121ms	remaining: 160ms
86:	learn: 14.6666819	total: 123ms	remaining: 160ms
87:	learn: 14.5243225	total: 124ms	remaining: 158ms
88:	learn: 14.3019405	total: 126ms	remaining: 157ms
89:	learn: 14.1774402	total: 127ms	remaining: 156ms
90:	learn: 14.0218130	total: 129ms	remaining: 154ms
91:	learn: 13.9118319	total: 130ms	remaining: 153ms
92:	learn: 13.7985211	total: 132ms	remaining: 152ms
93:	learn: 13.7056238	total: 133ms	remaining: 150ms
94:	learn: 13.6387014	total: 135ms	remaining: 149ms
95:	learn: 13.5267692	total: 136ms	remaining: 148ms
96:	learn: 13.4087919	total: 138ms	remaining: 146ms
97:	learn: 13.3732128	total: 139ms	remaining: 145ms
98:	learn: 13.2952503	total: 140ms	remaining: 143ms
99:	learn: 13.2068133	total: 142ms	remaining: 142ms
100:	learn: 13.1331518	total: 143ms	remaining: 140ms
101:	learn: 13.0773891	total: 145ms	remaining: 139ms
102:	learn: 12.9128351	total: 146ms	remaining: 138ms
103:	learn: 12.8513194	total: 147ms	remaining: 136ms
104:	learn: 12.7535121	total: 149ms	remaining: 135ms
105:	learn: 12.7044657	total: 150ms	remaining: 133ms
106:	learn: 12.5544030	total: 152ms	remaining: 132ms
107:	learn: 12.4760170	total: 153ms	remaining: 130ms
108:	learn: 12.3800680	total: 154ms	remaining: 129ms
109:	learn: 12.3499190	total: 156ms	remaining: 127ms
110:	learn: 12.3092253	total: 157ms	remaining: 126ms
111:	learn: 12.2620217	total: 159ms	remaining: 125ms
112:	learn: 12.2213616	total: 160ms	remaining: 123ms
113:	learn: 12.1873145	total: 162ms	remaining: 122ms
114:	learn: 12.1641218	total: 163ms	remaining: 120ms
115:	learn: 12.1290769	total: 164ms	remaining: 119ms
116:	learn: 12.0930766	total: 166ms	remaining: 118ms
117:	learn: 12.0564916	total: 167ms	remaining: 116ms
118:	learn: 11.9874659	total: 169ms	remaining: 115ms
119:	learn: 11.9690225	total: 170ms	remaining: 114ms
120:	learn: 11.9300842	total: 172ms	remaining: 112ms
121:	learn: 11.8812114	total: 173ms	remaining: 111ms
122:	learn: 11.8681485	total: 175ms	remaining: 109ms
123:	learn: 11.8037422	total: 176ms	remaining: 108ms
124:	learn: 11.7859158	total: 177ms	remaining: 106ms
125:	learn: 11.7571589	total: 179ms	remaining: 105ms
126:	learn: 11.7289762	total: 180ms	remaining: 104ms
127:	learn: 11.6883041	total: 181ms	remaining: 102ms
128:	learn: 11.6487537	total: 183ms	remaining: 101ms
129:	learn: 11.6335432	total: 184ms	remaining: 99ms
130:	learn: 11.6149961	total: 185ms	remaining: 97.5ms
131:	learn: 11.5455373	total: 186ms	remaining: 95.9ms
132:	learn: 11.4989894	total: 187ms	remaining: 94.4ms
133:	learn: 11.4868155	total: 189ms	remaining: 92.9ms
134:	learn: 11.4598916	total: 190ms	remaining: 91.4ms
135:	learn: 11.4114509	total: 191ms	remaining: 89.9ms
136:	learn: 11.3509384	total: 192ms	remaining: 88.5ms
137:	learn: 11.3090708	total: 194ms	remaining: 87ms
138:	learn: 11.2728093	total: 195ms	remaining: 85.5ms
139:	learn: 11.2546808	total: 196ms	remaining: 84.1ms
140:	learn: 11.2292327	total: 197ms	remaining: 82.6ms
141:	learn: 11.2088756	total: 199ms	remaining: 81.1ms
142:	learn: 11.1846460	total: 200ms	remaining: 79.7ms
143:	learn: 11.1374256	total: 201ms	remaining: 78.3ms
144:	learn: 11.0735465	total: 203ms	remaining: 76.8ms
145:	learn: 11.0335819	total: 204ms	remaining: 75.4ms
146:	learn: 11.0031689	total: 205ms	remaining: 73.9ms
147:	learn: 10.9596734	total: 206ms	remaining: 72.5ms
148:	learn: 10.9459362	total: 208ms	remaining: 71ms
149:	learn: 10.9243178	total: 209ms	remaining: 69.6ms
150:	learn: 10.9027722	total: 210ms	remaining: 68.1ms
151:	learn: 10.8445495	total: 211ms	remaining: 66.7ms
152:	learn: 10.8132080	total: 213ms	remaining: 65.3ms
153:	learn: 10.7527435	total: 214ms	remaining: 63.9ms
154:	learn: 10.7420823	total: 215ms	remaining: 62.4ms
155:	learn: 10.7141777	total: 216ms	remaining: 61ms
156:	learn: 10.6824320	total: 217ms	remaining: 59.5ms
157:	learn: 10.6501216	total: 219ms	remaining: 58.1ms
158:	learn: 10.6361616	total: 220ms	remaining: 56.7ms
159:	learn: 10.6148747	total: 221ms	remaining: 55.3ms
160:	learn: 10.5445280	total: 222ms	remaining: 53.8ms
161:	learn: 10.5163054	total: 223ms	remaining: 52.4ms
162:	learn: 10.4977504	total: 224ms	remaining: 51ms
163:	learn: 10.4819690	total: 226ms	remaining: 49.5ms
164:	learn: 10.4651934	total: 227ms	remaining: 48.1ms
165:	learn: 10.4514642	total: 228ms	remaining: 46.7ms
166:	learn: 10.4394563	total: 230ms	remaining: 45.4ms
167:	learn: 10.3779187	total: 231ms	remaining: 44ms
168:	learn: 10.3533101	total: 232ms	remaining: 42.6ms
169:	learn: 10.3043375	total: 233ms	remaining: 41.2ms
170:	learn: 10.2572696	total: 235ms	remaining: 39.8ms
171:	learn: 10.2349202	total: 236ms	remaining: 38.4ms
172:	learn: 10.1850808	total: 237ms	remaining: 37ms
173:	learn: 10.1559597	total: 238ms	remaining: 35.6ms
174:	learn: 10.1459745	total: 240ms	remaining: 34.2ms
175:	learn: 10.1202833	total: 241ms	remaining: 32.8ms
176:	learn: 10.0675034	total: 242ms	remaining: 31.4ms
177:	learn: 10.0373218	total: 243ms	remaining: 30ms
178:	learn: 9.9959617	total: 244ms	remaining: 28.7ms
179:	learn: 9.9505381	total: 246ms	remaining: 27.3ms
180:	learn: 9.9296636	total: 247ms	remaining: 25.9ms
181:	learn: 9.8731209	total: 248ms	remaining: 24.6ms
182:	learn: 9.8268175	total: 249ms	remaining: 23.2ms
183:	learn: 9.8107564	total: 251ms	remaining: 21.8ms
184:	learn: 9.7653493	total: 252ms	remaining: 20.4ms
185:	learn: 9.7382499	total: 253ms	remaining: 19.1ms
186:	learn: 9.7301119	total: 254ms	remaining: 17.7ms
187:	learn: 9.6966018	total: 256ms	remaining: 16.3ms
188:	learn: 9.6590213	total: 257ms	remaining: 14.9ms
189:	learn: 9.6355046	total: 258ms	remaining: 13.6ms
190:	learn: 9.6110408	total: 259ms	remaining: 12.2ms
191:	learn: 9.5854019	total: 260ms	remaining: 10.9ms
192:	learn: 9.5450324	total: 262ms	remaining: 9.49ms
193:	learn: 9.5355976	total: 263ms	remaining: 8.13ms
194:	learn: 9.5230025	total: 264ms	remaining: 6.78ms
195:	learn: 9.4916734	total: 266ms	remaining: 5.42ms
196:	learn: 9.4468072	total: 267ms	remaining: 4.07ms
197:	learn: 9.4192652	total: 268ms	remaining: 2.71ms
198:	learn: 9.3571217	total: 270ms	remaining: 1.35ms
199:	learn: 9.3347252	total: 271ms	remaining: 0us
0:	learn: 45.4048346	total: 1.34ms	remaining: 267ms
1:	learn: 44.1474121	total: 2.54ms	remaining: 252ms
2:	learn: 42.3887094	total: 3.83ms	remaining: 252ms
3:	learn: 41.1483267	total: 5.11ms	remaining: 250ms
4:	learn: 39.9951783	total: 6.4ms	remaining: 250ms
5:	learn: 38.7236510	total: 7.67ms	remaining: 248ms
6:	learn: 37.9103150	total: 9.01ms	remaining: 249ms
7:	learn: 36.8525004	total: 10.3ms	remaining: 247ms
8:	learn: 35.8279814	total: 11.5ms	remaining: 243ms
9:	learn: 34.9241306	total: 12.7ms	remaining: 242ms
10:	learn: 34.0908630	total: 14.2ms	remaining: 243ms
11:	learn: 33.2767105	total: 15.5ms	remaining: 243ms
12:	learn: 32.5646955	total: 16.8ms	remaining: 241ms
13:	learn: 31.7738871	total: 18ms	remaining: 239ms
14:	learn: 31.2269392	total: 19.2ms	remaining: 237ms
15:	learn: 30.3602234	total: 20.4ms	remaining: 234ms
16:	learn: 29.6358059	total: 21.6ms	remaining: 233ms
17:	learn: 29.0928420	total: 22.9ms	remaining: 231ms
18:	learn: 28.6972485	total: 24.1ms	remaining: 229ms
19:	learn: 27.9911077	total: 25.3ms	remaining: 227ms
20:	learn: 27.4458900	total: 26.5ms	remaining: 226ms
21:	learn: 26.8998979	total: 27.8ms	remaining: 225ms
22:	learn: 26.5594927	total: 28.9ms	remaining: 223ms
23:	learn: 26.2011328	total: 30.3ms	remaining: 222ms
24:	learn: 25.9420537	total: 31.6ms	remaining: 221ms
25:	learn: 25.6345740	total: 32.9ms	remaining: 220ms
26:	learn: 25.4390328	total: 34.1ms	remaining: 219ms
27:	learn: 25.1867114	total: 35.4ms	remaining: 217ms
28:	learn: 24.8931496	total: 36.6ms	remaining: 216ms
29:	learn: 24.6142761	total: 37.8ms	remaining: 214ms
30:	learn: 24.2203789	total: 39.1ms	remaining: 213ms
31:	learn: 23.9082679	total: 40.3ms	remaining: 212ms
32:	learn: 23.7943456	total: 41.5ms	remaining: 210ms
33:	learn: 23.5649615	total: 42.8ms	remaining: 209ms
34:	learn: 23.3719209	total: 44ms	remaining: 207ms
35:	learn: 23.2678402	total: 45.2ms	remaining: 206ms
36:	learn: 23.0995486	total: 46.4ms	remaining: 204ms
37:	learn: 22.8426508	total: 47.8ms	remaining: 204ms
38:	learn: 22.6644415	total: 49ms	remaining: 202ms
39:	learn: 22.4830223	total: 50.3ms	remaining: 201ms
40:	learn: 22.2694030	total: 51.6ms	remaining: 200ms
41:	learn: 22.1351157	total: 52.8ms	remaining: 199ms
42:	learn: 22.0674082	total: 54.1ms	remaining: 197ms
43:	learn: 21.8740075	total: 55.3ms	remaining: 196ms
44:	learn: 21.7874466	total: 56.4ms	remaining: 194ms
45:	learn: 21.6120086	total: 57.7ms	remaining: 193ms
46:	learn: 21.5023987	total: 58.9ms	remaining: 192ms
47:	learn: 21.2850890	total: 60.2ms	remaining: 191ms
48:	learn: 21.0977748	total: 61.4ms	remaining: 189ms
49:	learn: 20.9980605	total: 62.8ms	remaining: 188ms
50:	learn: 20.8392786	total: 64.2ms	remaining: 188ms
51:	learn: 20.6376328	total: 65.5ms	remaining: 186ms
52:	learn: 20.5432725	total: 66.7ms	remaining: 185ms
53:	learn: 20.4837916	total: 67.9ms	remaining: 184ms
54:	learn: 20.3608876	total: 69.1ms	remaining: 182ms
55:	learn: 20.2917428	total: 70.3ms	remaining: 181ms
56:	learn: 20.1729553	total: 71.6ms	remaining: 180ms
57:	learn: 20.0883888	total: 72.8ms	remaining: 178ms
58:	learn: 20.0177544	total: 74ms	remaining: 177ms
59:	learn: 19.9150420	total: 75.2ms	remaining: 175ms
60:	learn: 19.7647317	total: 76.4ms	remaining: 174ms
61:	learn: 19.6334327	total: 77.7ms	remaining: 173ms
62:	learn: 19.5004811	total: 79ms	remaining: 172ms
63:	learn: 19.4359845	total: 80.3ms	remaining: 171ms
64:	learn: 19.3473377	total: 81.6ms	remaining: 170ms
65:	learn: 19.2058321	total: 82.8ms	remaining: 168ms
66:	learn: 19.1199053	total: 84ms	remaining: 167ms
67:	learn: 18.9546707	total: 85.2ms	remaining: 165ms
68:	learn: 18.8077503	total: 86.6ms	remaining: 164ms
69:	learn: 18.7339333	total: 87.8ms	remaining: 163ms
70:	learn: 18.6725400	total: 89ms	remaining: 162ms
71:	learn: 18.4715041	total: 90.2ms	remaining: 160ms
72:	learn: 18.3060142	total: 91.4ms	remaining: 159ms
73:	learn: 18.1805200	total: 92.6ms	remaining: 158ms
74:	learn: 18.1497416	total: 93.9ms	remaining: 157ms
75:	learn: 18.0744295	total: 95.1ms	remaining: 155ms
76:	learn: 17.8931631	total: 96.4ms	remaining: 154ms
77:	learn: 17.7489851	total: 97.6ms	remaining: 153ms
78:	learn: 17.5958940	total: 98.8ms	remaining: 151ms
79:	learn: 17.5335915	total: 100ms	remaining: 150ms
80:	learn: 17.4658189	total: 101ms	remaining: 149ms
81:	learn: 17.3931702	total: 102ms	remaining: 147ms
82:	learn: 17.3218716	total: 103ms	remaining: 146ms
83:	learn: 17.1757597	total: 105ms	remaining: 145ms
84:	learn: 17.0438674	total: 106ms	remaining: 143ms
85:	learn: 16.9661438	total: 107ms	remaining: 142ms
86:	learn: 16.9326050	total: 108ms	remaining: 141ms
87:	learn: 16.8589978	total: 110ms	remaining: 140ms
88:	learn: 16.8437235	total: 111ms	remaining: 138ms
89:	learn: 16.7781233	total: 112ms	remaining: 137ms
90:	learn: 16.6650942	total: 113ms	remaining: 136ms
91:	learn: 16.5062147	total: 115ms	remaining: 135ms
92:	learn: 16.3687770	total: 116ms	remaining: 134ms
93:	learn: 16.2625974	total: 117ms	remaining: 132ms
94:	learn: 16.2309806	total: 119ms	remaining: 131ms
95:	learn: 16.1745682	total: 120ms	remaining: 130ms
96:	learn: 16.1526108	total: 121ms	remaining: 129ms
97:	learn: 16.0631719	total: 122ms	remaining: 127ms
98:	learn: 16.0252527	total: 124ms	remaining: 126ms
99:	learn: 15.9930049	total: 125ms	remaining: 125ms
100:	learn: 15.9790331	total: 126ms	remaining: 124ms
101:	learn: 15.9030181	total: 127ms	remaining: 122ms
102:	learn: 15.8538675	total: 129ms	remaining: 121ms
103:	learn: 15.7883378	total: 130ms	remaining: 120ms
104:	learn: 15.7778690	total: 131ms	remaining: 119ms
105:	learn: 15.7089176	total: 132ms	remaining: 117ms
106:	learn: 15.5903176	total: 134ms	remaining: 116ms
107:	learn: 15.5498153	total: 135ms	remaining: 115ms
108:	learn: 15.4047126	total: 136ms	remaining: 113ms
109:	learn: 15.3152499	total: 137ms	remaining: 112ms
110:	learn: 15.2480107	total: 139ms	remaining: 111ms
111:	learn: 15.2334127	total: 140ms	remaining: 110ms
112:	learn: 15.1898999	total: 141ms	remaining: 109ms
113:	learn: 15.0099340	total: 142ms	remaining: 107ms
114:	learn: 14.8930257	total: 143ms	remaining: 106ms
115:	learn: 14.7529604	total: 145ms	remaining: 105ms
116:	learn: 14.7164943	total: 146ms	remaining: 104ms
117:	learn: 14.6785400	total: 147ms	remaining: 102ms
118:	learn: 14.6656053	total: 149ms	remaining: 101ms
119:	learn: 14.6278646	total: 150ms	remaining: 99.9ms
120:	learn: 14.5229793	total: 151ms	remaining: 98.8ms
121:	learn: 14.4162367	total: 153ms	remaining: 97.6ms
122:	learn: 14.3864669	total: 154ms	remaining: 96.3ms
123:	learn: 14.3244582	total: 155ms	remaining: 95.2ms
124:	learn: 14.2405165	total: 157ms	remaining: 94ms
125:	learn: 14.1924608	total: 158ms	remaining: 92.8ms
126:	learn: 14.1287990	total: 159ms	remaining: 91.5ms
127:	learn: 14.0769022	total: 161ms	remaining: 90.3ms
128:	learn: 14.0601362	total: 162ms	remaining: 89.1ms
129:	learn: 13.9608767	total: 163ms	remaining: 87.8ms
130:	learn: 13.9222835	total: 164ms	remaining: 86.6ms
131:	learn: 13.9033913	total: 166ms	remaining: 85.3ms
132:	learn: 13.8623147	total: 167ms	remaining: 84.2ms
133:	learn: 13.7860589	total: 168ms	remaining: 82.9ms
134:	learn: 13.7559525	total: 170ms	remaining: 81.6ms
135:	learn: 13.7318703	total: 171ms	remaining: 80.4ms
136:	learn: 13.6750190	total: 172ms	remaining: 79.2ms
137:	learn: 13.5875819	total: 174ms	remaining: 78.1ms
138:	learn: 13.5232267	total: 176ms	remaining: 77.4ms
139:	learn: 13.4639107	total: 178ms	remaining: 76.4ms
140:	learn: 13.4560255	total: 180ms	remaining: 75.3ms
141:	learn: 13.4045683	total: 182ms	remaining: 74.4ms
142:	learn: 13.3926419	total: 184ms	remaining: 73.4ms
143:	learn: 13.3840563	total: 186ms	remaining: 72.5ms
144:	learn: 13.3393568	total: 189ms	remaining: 71.6ms
145:	learn: 13.3040122	total: 191ms	remaining: 70.6ms
146:	learn: 13.2941437	total: 193ms	remaining: 69.5ms
147:	learn: 13.2085804	total: 195ms	remaining: 68.4ms
148:	learn: 13.1225837	total: 196ms	remaining: 67.2ms
149:	learn: 13.1124107	total: 198ms	remaining: 66ms
150:	learn: 13.0905352	total: 200ms	remaining: 64.9ms
151:	learn: 13.0830619	total: 202ms	remaining: 63.8ms
152:	learn: 13.0512049	total: 204ms	remaining: 62.7ms
153:	learn: 13.0502731	total: 205ms	remaining: 61.3ms
154:	learn: 12.9965858	total: 207ms	remaining: 60.1ms
155:	learn: 12.9730932	total: 208ms	remaining: 58.8ms
156:	learn: 12.8393292	total: 210ms	remaining: 57.5ms
157:	learn: 12.7607029	total: 212ms	remaining: 56.2ms
158:	learn: 12.7389258	total: 213ms	remaining: 54.9ms
159:	learn: 12.7127994	total: 214ms	remaining: 53.6ms
160:	learn: 12.6403146	total: 216ms	remaining: 52.3ms
161:	learn: 12.5992191	total: 218ms	remaining: 51.1ms
162:	learn: 12.4826414	total: 219ms	remaining: 49.8ms
163:	learn: 12.4508180	total: 221ms	remaining: 48.6ms
164:	learn: 12.4414079	total: 223ms	remaining: 47.3ms
165:	learn: 12.4364365	total: 225ms	remaining: 46ms
166:	learn: 12.3591893	total: 226ms	remaining: 44.7ms
167:	learn: 12.3547958	total: 228ms	remaining: 43.4ms
168:	learn: 12.3459608	total: 229ms	remaining: 42ms
169:	learn: 12.2195255	total: 231ms	remaining: 40.7ms
170:	learn: 12.2109373	total: 232ms	remaining: 39.4ms
171:	learn: 12.1653587	total: 234ms	remaining: 38.1ms
172:	learn: 12.1125488	total: 236ms	remaining: 36.8ms
173:	learn: 12.1110634	total: 237ms	remaining: 35.4ms
174:	learn: 12.1040183	total: 238ms	remaining: 34.1ms
175:	learn: 12.0485284	total: 240ms	remaining: 32.7ms
176:	learn: 11.9917444	total: 242ms	remaining: 31.4ms
177:	learn: 11.9846121	total: 243ms	remaining: 30ms
178:	learn: 11.9675084	total: 244ms	remaining: 28.6ms
179:	learn: 11.8973567	total: 245ms	remaining: 27.3ms
180:	learn: 11.8455387	total: 247ms	remaining: 25.9ms
181:	learn: 11.8056804	total: 248ms	remaining: 24.6ms
182:	learn: 11.7146352	total: 250ms	remaining: 23.2ms
183:	learn: 11.6399953	total: 251ms	remaining: 21.9ms
184:	learn: 11.5740434	total: 253ms	remaining: 20.5ms
185:	learn: 11.5666450	total: 255ms	remaining: 19.2ms
186:	learn: 11.5331784	total: 256ms	remaining: 17.8ms
187:	learn: 11.5066212	total: 257ms	remaining: 16.4ms
188:	learn: 11.4518463	total: 259ms	remaining: 15.1ms
189:	learn: 11.4272033	total: 260ms	remaining: 13.7ms
190:	learn: 11.3884820	total: 261ms	remaining: 12.3ms
191:	learn: 11.3646172	total: 262ms	remaining: 10.9ms
192:	learn: 11.3240567	total: 263ms	remaining: 9.55ms
193:	learn: 11.3039452	total: 265ms	remaining: 8.18ms
194:	learn: 11.2776314	total: 266ms	remaining: 6.82ms
195:	learn: 11.2272384	total: 267ms	remaining: 5.46ms
196:	learn: 11.2045998	total: 268ms	remaining: 4.09ms
197:	learn: 11.1347085	total: 270ms	remaining: 2.73ms
198:	learn: 11.0712194	total: 271ms	remaining: 1.36ms
199:	learn: 11.0138719	total: 272ms	remaining: 0us
0:	learn: 46.0672583	total: 1.4ms	remaining: 279ms
1:	learn: 44.5139564	total: 2.62ms	remaining: 259ms
2:	learn: 42.8025799	total: 3.91ms	remaining: 257ms
3:	learn: 41.4019960	total: 5.12ms	remaining: 251ms
4:	learn: 40.0744300	total: 6.46ms	remaining: 252ms
5:	learn: 38.6828903	total: 7.7ms	remaining: 249ms
6:	learn: 37.3807565	total: 8.83ms	remaining: 243ms
7:	learn: 36.5944676	total: 10.1ms	remaining: 242ms
8:	learn: 35.9874679	total: 11.3ms	remaining: 241ms
9:	learn: 34.7237627	total: 12.6ms	remaining: 239ms
10:	learn: 33.7958687	total: 13.9ms	remaining: 239ms
11:	learn: 33.0199734	total: 15.3ms	remaining: 239ms
12:	learn: 32.0148943	total: 16.6ms	remaining: 239ms
13:	learn: 31.3487651	total: 17.9ms	remaining: 238ms
14:	learn: 30.6712973	total: 19.1ms	remaining: 235ms
15:	learn: 29.8846599	total: 20.3ms	remaining: 234ms
16:	learn: 29.1469448	total: 21.9ms	remaining: 236ms
17:	learn: 28.7709250	total: 23.2ms	remaining: 234ms
18:	learn: 28.5626603	total: 24.5ms	remaining: 233ms
19:	learn: 28.1646138	total: 25.9ms	remaining: 233ms
20:	learn: 27.6308065	total: 27.5ms	remaining: 234ms
21:	learn: 27.0957167	total: 28.9ms	remaining: 234ms
22:	learn: 26.6564482	total: 30.4ms	remaining: 234ms
23:	learn: 26.3269020	total: 31.7ms	remaining: 233ms
24:	learn: 25.9536680	total: 33.2ms	remaining: 233ms
25:	learn: 25.7704291	total: 34.7ms	remaining: 232ms
26:	learn: 25.4045908	total: 36.1ms	remaining: 231ms
27:	learn: 25.1281935	total: 37.6ms	remaining: 231ms
28:	learn: 24.9210886	total: 39.1ms	remaining: 230ms
29:	learn: 24.5569874	total: 40.7ms	remaining: 230ms
30:	learn: 24.3416044	total: 42.3ms	remaining: 230ms
31:	learn: 24.1451980	total: 43.6ms	remaining: 229ms
32:	learn: 23.8837705	total: 44.9ms	remaining: 227ms
33:	learn: 23.5684410	total: 46.1ms	remaining: 225ms
34:	learn: 23.3132973	total: 47.3ms	remaining: 223ms
35:	learn: 22.9741127	total: 48.6ms	remaining: 222ms
36:	learn: 22.6319357	total: 49.9ms	remaining: 220ms
37:	learn: 22.2996136	total: 51.3ms	remaining: 219ms
38:	learn: 22.2528081	total: 52.8ms	remaining: 218ms
39:	learn: 22.1465954	total: 54.3ms	remaining: 217ms
40:	learn: 22.0011782	total: 55.9ms	remaining: 217ms
41:	learn: 21.8096540	total: 57.5ms	remaining: 216ms
42:	learn: 21.7265015	total: 59.3ms	remaining: 216ms
43:	learn: 21.5296205	total: 62.6ms	remaining: 222ms
44:	learn: 21.3943897	total: 64.5ms	remaining: 222ms
45:	learn: 21.0773300	total: 66.1ms	remaining: 221ms
46:	learn: 20.9404573	total: 67.8ms	remaining: 221ms
47:	learn: 20.8627418	total: 69.6ms	remaining: 220ms
48:	learn: 20.7331607	total: 71.1ms	remaining: 219ms
49:	learn: 20.6569488	total: 72.5ms	remaining: 218ms
50:	learn: 20.4885993	total: 74.4ms	remaining: 217ms
51:	learn: 20.2959537	total: 76ms	remaining: 216ms
52:	learn: 20.1901969	total: 77.7ms	remaining: 215ms
53:	learn: 20.1217372	total: 79.4ms	remaining: 215ms
54:	learn: 20.0044577	total: 81.1ms	remaining: 214ms
55:	learn: 19.9424163	total: 82.8ms	remaining: 213ms
56:	learn: 19.9037068	total: 84.3ms	remaining: 212ms
57:	learn: 19.6978652	total: 85.9ms	remaining: 210ms
58:	learn: 19.5818164	total: 87.5ms	remaining: 209ms
59:	learn: 19.4908773	total: 89.1ms	remaining: 208ms
60:	learn: 19.3750379	total: 90.7ms	remaining: 207ms
61:	learn: 19.2275493	total: 92.2ms	remaining: 205ms
62:	learn: 19.0365101	total: 93.7ms	remaining: 204ms
63:	learn: 18.9814752	total: 95.3ms	remaining: 202ms
64:	learn: 18.9412500	total: 96.8ms	remaining: 201ms
65:	learn: 18.8597002	total: 98.4ms	remaining: 200ms
66:	learn: 18.7762216	total: 99.8ms	remaining: 198ms
67:	learn: 18.6553681	total: 101ms	remaining: 196ms
68:	learn: 18.5066568	total: 103ms	remaining: 195ms
69:	learn: 18.2771147	total: 104ms	remaining: 193ms
70:	learn: 18.2522292	total: 106ms	remaining: 192ms
71:	learn: 18.1050159	total: 107ms	remaining: 190ms
72:	learn: 17.9965402	total: 108ms	remaining: 189ms
73:	learn: 17.9250301	total: 110ms	remaining: 187ms
74:	learn: 17.8989428	total: 111ms	remaining: 186ms
75:	learn: 17.7435105	total: 113ms	remaining: 184ms
76:	learn: 17.6353222	total: 115ms	remaining: 183ms
77:	learn: 17.5485384	total: 116ms	remaining: 181ms
78:	learn: 17.4040834	total: 117ms	remaining: 180ms
79:	learn: 17.3306236	total: 119ms	remaining: 178ms
80:	learn: 17.2696555	total: 120ms	remaining: 176ms
81:	learn: 17.1896150	total: 121ms	remaining: 175ms
82:	learn: 17.1340094	total: 123ms	remaining: 173ms
83:	learn: 17.0428527	total: 124ms	remaining: 171ms
84:	learn: 16.9034348	total: 125ms	remaining: 170ms
85:	learn: 16.7888273	total: 127ms	remaining: 168ms
86:	learn: 16.7053711	total: 128ms	remaining: 166ms
87:	learn: 16.6530329	total: 129ms	remaining: 165ms
88:	learn: 16.4426027	total: 131ms	remaining: 163ms
89:	learn: 16.3391862	total: 132ms	remaining: 162ms
90:	learn: 16.1725695	total: 134ms	remaining: 160ms
91:	learn: 16.0048696	total: 135ms	remaining: 158ms
92:	learn: 15.8450125	total: 136ms	remaining: 157ms
93:	learn: 15.6930832	total: 138ms	remaining: 155ms
94:	learn: 15.5012085	total: 139ms	remaining: 154ms
95:	learn: 15.3566769	total: 141ms	remaining: 152ms
96:	learn: 15.2676826	total: 142ms	remaining: 151ms
97:	learn: 15.1750555	total: 144ms	remaining: 150ms
98:	learn: 15.0351872	total: 145ms	remaining: 148ms
99:	learn: 14.9607381	total: 147ms	remaining: 147ms
100:	learn: 14.8702916	total: 148ms	remaining: 145ms
101:	learn: 14.8006095	total: 150ms	remaining: 144ms
102:	learn: 14.7415135	total: 151ms	remaining: 142ms
103:	learn: 14.6773302	total: 152ms	remaining: 141ms
104:	learn: 14.5479213	total: 154ms	remaining: 139ms
105:	learn: 14.3936323	total: 155ms	remaining: 138ms
106:	learn: 14.3212498	total: 157ms	remaining: 136ms
107:	learn: 14.1244663	total: 159ms	remaining: 135ms
108:	learn: 14.0252472	total: 160ms	remaining: 134ms
109:	learn: 13.9432525	total: 162ms	remaining: 132ms
110:	learn: 13.8130103	total: 163ms	remaining: 131ms
111:	learn: 13.7299384	total: 165ms	remaining: 129ms
112:	learn: 13.6775383	total: 166ms	remaining: 128ms
113:	learn: 13.6542197	total: 168ms	remaining: 126ms
114:	learn: 13.5412228	total: 169ms	remaining: 125ms
115:	learn: 13.4770516	total: 170ms	remaining: 123ms
116:	learn: 13.4355787	total: 171ms	remaining: 122ms
117:	learn: 13.3785376	total: 173ms	remaining: 120ms
118:	learn: 13.3011642	total: 174ms	remaining: 118ms
119:	learn: 13.2060583	total: 175ms	remaining: 117ms
120:	learn: 13.1433454	total: 177ms	remaining: 116ms
121:	learn: 13.0843482	total: 178ms	remaining: 114ms
122:	learn: 13.0142639	total: 180ms	remaining: 112ms
123:	learn: 13.0030814	total: 181ms	remaining: 111ms
124:	learn: 12.9636125	total: 182ms	remaining: 109ms
125:	learn: 12.8847673	total: 183ms	remaining: 108ms
126:	learn: 12.8339760	total: 185ms	remaining: 106ms
127:	learn: 12.7499344	total: 186ms	remaining: 105ms
128:	learn: 12.6947103	total: 187ms	remaining: 103ms
129:	learn: 12.6423027	total: 189ms	remaining: 102ms
130:	learn: 12.5742549	total: 190ms	remaining: 100ms
131:	learn: 12.5508188	total: 192ms	remaining: 98.7ms
132:	learn: 12.5010241	total: 193ms	remaining: 97.2ms
133:	learn: 12.4448731	total: 194ms	remaining: 95.7ms
134:	learn: 12.4216630	total: 196ms	remaining: 94.2ms
135:	learn: 12.3885673	total: 197ms	remaining: 92.7ms
136:	learn: 12.3001436	total: 198ms	remaining: 91.2ms
137:	learn: 12.2552239	total: 200ms	remaining: 89.7ms
138:	learn: 12.2152312	total: 201ms	remaining: 88.3ms
139:	learn: 12.1427169	total: 203ms	remaining: 86.8ms
140:	learn: 12.1040159	total: 204ms	remaining: 85.3ms
141:	learn: 12.0791687	total: 205ms	remaining: 83.8ms
142:	learn: 12.0307090	total: 207ms	remaining: 82.4ms
143:	learn: 12.0128842	total: 208ms	remaining: 81ms
144:	learn: 11.9942819	total: 210ms	remaining: 79.5ms
145:	learn: 11.9483602	total: 211ms	remaining: 78.1ms
146:	learn: 11.9129950	total: 212ms	remaining: 76.6ms
147:	learn: 11.8565886	total: 214ms	remaining: 75.1ms
148:	learn: 11.8066134	total: 215ms	remaining: 73.6ms
149:	learn: 11.7494254	total: 216ms	remaining: 72.1ms
150:	learn: 11.6874200	total: 218ms	remaining: 70.6ms
151:	learn: 11.6571491	total: 219ms	remaining: 69.2ms
152:	learn: 11.6283881	total: 221ms	remaining: 67.8ms
153:	learn: 11.5719938	total: 222ms	remaining: 66.3ms
154:	learn: 11.5163671	total: 223ms	remaining: 64.8ms
155:	learn: 11.4594426	total: 225ms	remaining: 63.4ms
156:	learn: 11.4408430	total: 226ms	remaining: 62ms
157:	learn: 11.3917425	total: 228ms	remaining: 60.5ms
158:	learn: 11.3139319	total: 229ms	remaining: 59ms
159:	learn: 11.2681367	total: 230ms	remaining: 57.6ms
160:	learn: 11.2527610	total: 232ms	remaining: 56.1ms
161:	learn: 11.1907574	total: 233ms	remaining: 54.7ms
162:	learn: 11.1686146	total: 234ms	remaining: 53.2ms
163:	learn: 11.1344355	total: 236ms	remaining: 51.7ms
164:	learn: 11.0883300	total: 237ms	remaining: 50.3ms
165:	learn: 11.0366295	total: 239ms	remaining: 48.9ms
166:	learn: 11.0247756	total: 240ms	remaining: 47.4ms
167:	learn: 11.0171438	total: 241ms	remaining: 46ms
168:	learn: 10.9731212	total: 243ms	remaining: 44.6ms
169:	learn: 10.9125703	total: 244ms	remaining: 43.1ms
170:	learn: 10.8759521	total: 246ms	remaining: 41.6ms
171:	learn: 10.8214428	total: 247ms	remaining: 40.2ms
172:	learn: 10.8010649	total: 248ms	remaining: 38.7ms
173:	learn: 10.7827387	total: 250ms	remaining: 37.4ms
174:	learn: 10.7630457	total: 253ms	remaining: 36.2ms
175:	learn: 10.7004930	total: 255ms	remaining: 34.7ms
176:	learn: 10.6728169	total: 256ms	remaining: 33.3ms
177:	learn: 10.6257671	total: 258ms	remaining: 31.9ms
178:	learn: 10.6140424	total: 261ms	remaining: 30.6ms
179:	learn: 10.5699443	total: 264ms	remaining: 29.4ms
180:	learn: 10.5535052	total: 267ms	remaining: 28ms
181:	learn: 10.5209682	total: 269ms	remaining: 26.6ms
182:	learn: 10.4727888	total: 271ms	remaining: 25.2ms
183:	learn: 10.4422734	total: 272ms	remaining: 23.7ms
184:	learn: 10.4215843	total: 274ms	remaining: 22.2ms
185:	learn: 10.4001842	total: 276ms	remaining: 20.8ms
186:	learn: 10.3539686	total: 278ms	remaining: 19.3ms
187:	learn: 10.2882664	total: 280ms	remaining: 17.8ms
188:	learn: 10.2579562	total: 281ms	remaining: 16.4ms
189:	learn: 10.2154245	total: 283ms	remaining: 14.9ms
190:	learn: 10.1743154	total: 284ms	remaining: 13.4ms
191:	learn: 10.1319221	total: 286ms	remaining: 11.9ms
192:	learn: 10.0949993	total: 287ms	remaining: 10.4ms
193:	learn: 10.0652363	total: 289ms	remaining: 8.94ms
194:	learn: 10.0373419	total: 290ms	remaining: 7.45ms
195:	learn: 10.0108677	total: 292ms	remaining: 5.96ms
196:	learn: 9.9982729	total: 294ms	remaining: 4.47ms
197:	learn: 9.9665690	total: 295ms	remaining: 2.98ms
198:	learn: 9.9440970	total: 296ms	remaining: 1.49ms
199:	learn: 9.9285484	total: 298ms	remaining: 0us
Mae cv del Mejor modelo en la inicialización: 18.0168 con std = 9.1423
Comienza la búsqueda...

0:	learn: 27.9297030	total: 1.9ms	remaining: 567ms
1:	learn: 27.8334811	total: 3.73ms	remaining: 556ms
2:	learn: 27.7396575	total: 5.44ms	remaining: 539ms
3:	learn: 27.6059446	total: 7.3ms	remaining: 541ms
4:	learn: 27.4880040	total: 8.92ms	remaining: 526ms
5:	learn: 27.3654581	total: 10.6ms	remaining: 517ms
6:	learn: 27.2539611	total: 12.3ms	remaining: 516ms
7:	learn: 27.1340069	total: 14.1ms	remaining: 513ms
8:	learn: 27.0230245	total: 15.8ms	remaining: 512ms
9:	learn: 26.9346715	total: 17.7ms	remaining: 512ms
10:	learn: 26.8501786	total: 19.5ms	remaining: 513ms
11:	learn: 26.7569164	total: 21.3ms	remaining: 512ms
12:	learn: 26.6835773	total: 23.1ms	remaining: 510ms
13:	learn: 26.5981700	total: 24.8ms	remaining: 507ms
14:	learn: 26.5126892	total: 26.4ms	remaining: 503ms
15:	learn: 26.3990781	total: 28.1ms	remaining: 499ms
16:	learn: 26.3117687	total: 29.9ms	remaining: 498ms
17:	learn: 26.2082222	total: 31.6ms	remaining: 494ms
18:	learn: 26.1048621	total: 33.3ms	remaining: 492ms
19:	learn: 26.0069992	total: 35.1ms	remaining: 491ms
20:	learn: 25.9081142	total: 36.9ms	remaining: 491ms
21:	learn: 25.8242231	total: 38.6ms	remaining: 488ms
22:	learn: 25.7095676	total: 40.3ms	remaining: 485ms
23:	learn: 25.6122198	total: 42ms	remaining: 483ms
24:	learn: 25.5091351	total: 43.6ms	remaining: 480ms
25:	learn: 25.4197569	total: 45.1ms	remaining: 475ms
26:	learn: 25.3261752	total: 46.7ms	remaining: 472ms
27:	learn: 25.2342414	total: 48.2ms	remaining: 468ms
28:	learn: 25.1383072	total: 49.9ms	remaining: 466ms
29:	learn: 25.0540847	total: 51.5ms	remaining: 463ms
30:	learn: 24.9768460	total: 53.4ms	remaining: 463ms
31:	learn: 24.8843671	total: 55.3ms	remaining: 463ms
32:	learn: 24.8153007	total: 57.1ms	remaining: 462ms
33:	learn: 24.7371017	total: 58.7ms	remaining: 460ms
34:	learn: 24.6692827	total: 60.4ms	remaining: 457ms
35:	learn: 24.5851011	total: 62ms	remaining: 455ms
36:	learn: 24.5066951	total: 63.7ms	remaining: 453ms
37:	learn: 24.4311180	total: 65.8ms	remaining: 453ms
38:	learn: 24.3448185	total: 67.4ms	remaining: 451ms
39:	learn: 24.2722317	total: 68.9ms	remaining: 448ms
40:	learn: 24.1862258	total: 70.8ms	remaining: 447ms
41:	learn: 24.1014960	total: 72.4ms	remaining: 445ms
42:	learn: 24.0166001	total: 73.9ms	remaining: 442ms
43:	learn: 23.9405028	total: 75.3ms	remaining: 438ms
44:	learn: 23.8638495	total: 76.9ms	remaining: 436ms
45:	learn: 23.7911557	total: 78.4ms	remaining: 433ms
46:	learn: 23.7111941	total: 80.2ms	remaining: 432ms
47:	learn: 23.6395829	total: 82ms	remaining: 431ms
48:	learn: 23.5617847	total: 83.9ms	remaining: 430ms
49:	learn: 23.4823143	total: 86.4ms	remaining: 432ms
50:	learn: 23.4072845	total: 89.3ms	remaining: 436ms
51:	learn: 23.3113059	total: 91.5ms	remaining: 437ms
52:	learn: 23.2285033	total: 93.8ms	remaining: 437ms
53:	learn: 23.1737065	total: 96ms	remaining: 437ms
54:	learn: 23.1096021	total: 98.4ms	remaining: 438ms
55:	learn: 23.0505362	total: 101ms	remaining: 439ms
56:	learn: 22.9828999	total: 103ms	remaining: 439ms
57:	learn: 22.9129733	total: 106ms	remaining: 441ms
58:	learn: 22.8675872	total: 108ms	remaining: 439ms
59:	learn: 22.8039542	total: 110ms	remaining: 438ms
60:	learn: 22.7399395	total: 112ms	remaining: 437ms
61:	learn: 22.6741307	total: 113ms	remaining: 436ms
62:	learn: 22.6021876	total: 115ms	remaining: 434ms
63:	learn: 22.5313816	total: 118ms	remaining: 435ms
64:	learn: 22.4782866	total: 119ms	remaining: 431ms
65:	learn: 22.4114850	total: 121ms	remaining: 430ms
66:	learn: 22.3475333	total: 123ms	remaining: 427ms
67:	learn: 22.2784155	total: 125ms	remaining: 425ms
68:	learn: 22.2107867	total: 126ms	remaining: 423ms
69:	learn: 22.1498534	total: 128ms	remaining: 420ms
70:	learn: 22.0938769	total: 129ms	remaining: 417ms
71:	learn: 22.0593973	total: 131ms	remaining: 415ms
72:	learn: 21.9954991	total: 132ms	remaining: 412ms
73:	learn: 21.9329283	total: 134ms	remaining: 409ms
74:	learn: 21.8835020	total: 135ms	remaining: 406ms
75:	learn: 21.8261179	total: 137ms	remaining: 404ms
76:	learn: 21.7760788	total: 139ms	remaining: 402ms
77:	learn: 21.7137505	total: 140ms	remaining: 400ms
78:	learn: 21.6477339	total: 142ms	remaining: 397ms
79:	learn: 21.5853221	total: 144ms	remaining: 395ms
80:	learn: 21.5393040	total: 145ms	remaining: 393ms
81:	learn: 21.4795088	total: 147ms	remaining: 390ms
82:	learn: 21.4213766	total: 148ms	remaining: 388ms
83:	learn: 21.3825055	total: 150ms	remaining: 385ms
84:	learn: 21.3398891	total: 151ms	remaining: 383ms
85:	learn: 21.2706727	total: 153ms	remaining: 380ms
86:	learn: 21.2282339	total: 154ms	remaining: 378ms
87:	learn: 21.1822653	total: 156ms	remaining: 376ms
88:	learn: 21.1393047	total: 158ms	remaining: 374ms
89:	learn: 21.0814469	total: 159ms	remaining: 371ms
90:	learn: 21.0397052	total: 161ms	remaining: 369ms
91:	learn: 20.9967600	total: 162ms	remaining: 367ms
92:	learn: 20.9535088	total: 164ms	remaining: 364ms
93:	learn: 20.9007087	total: 165ms	remaining: 362ms
94:	learn: 20.8548975	total: 167ms	remaining: 360ms
95:	learn: 20.8037244	total: 168ms	remaining: 358ms
96:	learn: 20.7603029	total: 170ms	remaining: 356ms
97:	learn: 20.7040301	total: 172ms	remaining: 354ms
98:	learn: 20.6593932	total: 173ms	remaining: 352ms
99:	learn: 20.6278863	total: 175ms	remaining: 350ms
100:	learn: 20.5815943	total: 176ms	remaining: 348ms
101:	learn: 20.5444256	total: 178ms	remaining: 346ms
102:	learn: 20.5044243	total: 180ms	remaining: 344ms
103:	learn: 20.4429777	total: 181ms	remaining: 341ms
104:	learn: 20.3993411	total: 183ms	remaining: 339ms
105:	learn: 20.3446212	total: 184ms	remaining: 337ms
106:	learn: 20.3055689	total: 186ms	remaining: 335ms
107:	learn: 20.2614567	total: 187ms	remaining: 333ms
108:	learn: 20.2248857	total: 189ms	remaining: 332ms
109:	learn: 20.1716270	total: 191ms	remaining: 330ms
110:	learn: 20.1424641	total: 193ms	remaining: 328ms
111:	learn: 20.1047516	total: 194ms	remaining: 326ms
112:	learn: 20.0679683	total: 196ms	remaining: 324ms
113:	learn: 20.0247561	total: 197ms	remaining: 322ms
114:	learn: 19.9760399	total: 199ms	remaining: 320ms
115:	learn: 19.9301762	total: 200ms	remaining: 318ms
116:	learn: 19.8767157	total: 202ms	remaining: 316ms
117:	learn: 19.8272366	total: 203ms	remaining: 314ms
118:	learn: 19.7859650	total: 205ms	remaining: 312ms
119:	learn: 19.7309305	total: 207ms	remaining: 310ms
120:	learn: 19.6876039	total: 208ms	remaining: 308ms
121:	learn: 19.6411700	total: 210ms	remaining: 306ms
122:	learn: 19.6000378	total: 211ms	remaining: 304ms
123:	learn: 19.5622966	total: 213ms	remaining: 302ms
124:	learn: 19.5186812	total: 214ms	remaining: 300ms
125:	learn: 19.4791873	total: 216ms	remaining: 298ms
126:	learn: 19.4427919	total: 217ms	remaining: 296ms
127:	learn: 19.4085962	total: 219ms	remaining: 294ms
128:	learn: 19.3536793	total: 220ms	remaining: 292ms
129:	learn: 19.3268442	total: 222ms	remaining: 290ms
130:	learn: 19.2835105	total: 224ms	remaining: 288ms
131:	learn: 19.2321314	total: 225ms	remaining: 287ms
132:	learn: 19.1972949	total: 227ms	remaining: 285ms
133:	learn: 19.1567043	total: 228ms	remaining: 283ms
134:	learn: 19.1242632	total: 230ms	remaining: 281ms
135:	learn: 19.0921148	total: 231ms	remaining: 279ms
136:	learn: 19.0372088	total: 233ms	remaining: 277ms
137:	learn: 19.0021647	total: 234ms	remaining: 275ms
138:	learn: 18.9704696	total: 236ms	remaining: 273ms
139:	learn: 18.9471225	total: 238ms	remaining: 272ms
140:	learn: 18.8984215	total: 239ms	remaining: 270ms
141:	learn: 18.8553915	total: 241ms	remaining: 268ms
142:	learn: 18.8236630	total: 242ms	remaining: 266ms
143:	learn: 18.8000357	total: 244ms	remaining: 264ms
144:	learn: 18.7680455	total: 246ms	remaining: 263ms
145:	learn: 18.7386678	total: 247ms	remaining: 261ms
146:	learn: 18.7070213	total: 249ms	remaining: 259ms
147:	learn: 18.6725172	total: 250ms	remaining: 257ms
148:	learn: 18.6438797	total: 252ms	remaining: 255ms
149:	learn: 18.5964084	total: 253ms	remaining: 253ms
150:	learn: 18.5613244	total: 255ms	remaining: 251ms
151:	learn: 18.5298153	total: 257ms	remaining: 250ms
152:	learn: 18.4982129	total: 258ms	remaining: 248ms
153:	learn: 18.4479762	total: 260ms	remaining: 247ms
154:	learn: 18.4193159	total: 262ms	remaining: 245ms
155:	learn: 18.3924152	total: 264ms	remaining: 244ms
156:	learn: 18.3568483	total: 266ms	remaining: 242ms
157:	learn: 18.3252816	total: 267ms	remaining: 240ms
158:	learn: 18.2875007	total: 269ms	remaining: 238ms
159:	learn: 18.2545124	total: 270ms	remaining: 236ms
160:	learn: 18.2296459	total: 272ms	remaining: 235ms
161:	learn: 18.1978273	total: 273ms	remaining: 233ms
162:	learn: 18.1739563	total: 275ms	remaining: 231ms
163:	learn: 18.1424420	total: 277ms	remaining: 230ms
164:	learn: 18.1175778	total: 279ms	remaining: 228ms
165:	learn: 18.0839457	total: 280ms	remaining: 226ms
166:	learn: 18.0549822	total: 282ms	remaining: 225ms
167:	learn: 18.0216459	total: 284ms	remaining: 223ms
168:	learn: 17.9900746	total: 286ms	remaining: 221ms
169:	learn: 17.9611751	total: 287ms	remaining: 220ms
170:	learn: 17.9280167	total: 289ms	remaining: 218ms
171:	learn: 17.8912140	total: 291ms	remaining: 216ms
172:	learn: 17.8619998	total: 293ms	remaining: 215ms
173:	learn: 17.8125721	total: 295ms	remaining: 213ms
174:	learn: 17.7926802	total: 296ms	remaining: 212ms
175:	learn: 17.7694802	total: 298ms	remaining: 210ms
176:	learn: 17.7405869	total: 301ms	remaining: 209ms
177:	learn: 17.7053647	total: 304ms	remaining: 208ms
178:	learn: 17.6638997	total: 307ms	remaining: 207ms
179:	learn: 17.6380949	total: 310ms	remaining: 207ms
180:	learn: 17.6091225	total: 314ms	remaining: 206ms
181:	learn: 17.5917743	total: 317ms	remaining: 206ms
182:	learn: 17.5605549	total: 321ms	remaining: 205ms
183:	learn: 17.5319286	total: 323ms	remaining: 204ms
184:	learn: 17.5077646	total: 325ms	remaining: 202ms
185:	learn: 17.4665187	total: 328ms	remaining: 201ms
186:	learn: 17.4408723	total: 330ms	remaining: 200ms
187:	learn: 17.3982293	total: 332ms	remaining: 198ms
188:	learn: 17.3700647	total: 334ms	remaining: 196ms
189:	learn: 17.3551532	total: 336ms	remaining: 195ms
190:	learn: 17.3254188	total: 338ms	remaining: 193ms
191:	learn: 17.3072029	total: 340ms	remaining: 191ms
192:	learn: 17.2947669	total: 342ms	remaining: 190ms
193:	learn: 17.2660983	total: 344ms	remaining: 188ms
194:	learn: 17.2323449	total: 346ms	remaining: 186ms
195:	learn: 17.2010122	total: 348ms	remaining: 185ms
196:	learn: 17.1827753	total: 350ms	remaining: 183ms
197:	learn: 17.1685672	total: 352ms	remaining: 181ms
198:	learn: 17.1443020	total: 354ms	remaining: 179ms
199:	learn: 17.1226312	total: 356ms	remaining: 178ms
200:	learn: 17.0887019	total: 358ms	remaining: 176ms
201:	learn: 17.0662759	total: 360ms	remaining: 174ms
202:	learn: 17.0452842	total: 361ms	remaining: 173ms
203:	learn: 17.0257200	total: 363ms	remaining: 171ms
204:	learn: 16.9986828	total: 365ms	remaining: 169ms
205:	learn: 16.9700322	total: 367ms	remaining: 167ms
206:	learn: 16.9405974	total: 369ms	remaining: 166ms
207:	learn: 16.9158363	total: 371ms	remaining: 164ms
208:	learn: 16.8857263	total: 373ms	remaining: 162ms
209:	learn: 16.8687321	total: 375ms	remaining: 161ms
210:	learn: 16.8447505	total: 377ms	remaining: 159ms
211:	learn: 16.8242853	total: 379ms	remaining: 157ms
212:	learn: 16.8064848	total: 381ms	remaining: 156ms
213:	learn: 16.7825336	total: 383ms	remaining: 154ms
214:	learn: 16.7609887	total: 385ms	remaining: 152ms
215:	learn: 16.7399731	total: 386ms	remaining: 150ms
216:	learn: 16.7178915	total: 388ms	remaining: 148ms
217:	learn: 16.6963256	total: 389ms	remaining: 146ms
218:	learn: 16.6774191	total: 391ms	remaining: 144ms
219:	learn: 16.6419563	total: 392ms	remaining: 143ms
220:	learn: 16.6173274	total: 394ms	remaining: 141ms
221:	learn: 16.5920373	total: 396ms	remaining: 139ms
222:	learn: 16.5684507	total: 397ms	remaining: 137ms
223:	learn: 16.5403584	total: 399ms	remaining: 135ms
224:	learn: 16.5046396	total: 400ms	remaining: 133ms
225:	learn: 16.4816375	total: 402ms	remaining: 132ms
226:	learn: 16.4588336	total: 403ms	remaining: 130ms
227:	learn: 16.4246750	total: 405ms	remaining: 128ms
228:	learn: 16.3964249	total: 406ms	remaining: 126ms
229:	learn: 16.3773547	total: 408ms	remaining: 124ms
230:	learn: 16.3602360	total: 409ms	remaining: 122ms
231:	learn: 16.3408106	total: 411ms	remaining: 121ms
232:	learn: 16.3234911	total: 413ms	remaining: 119ms
233:	learn: 16.3020252	total: 414ms	remaining: 117ms
234:	learn: 16.2917464	total: 416ms	remaining: 115ms
235:	learn: 16.2758396	total: 417ms	remaining: 113ms
236:	learn: 16.2553676	total: 419ms	remaining: 111ms
237:	learn: 16.2356787	total: 420ms	remaining: 109ms
238:	learn: 16.2149514	total: 422ms	remaining: 108ms
239:	learn: 16.1857107	total: 423ms	remaining: 106ms
240:	learn: 16.1626765	total: 425ms	remaining: 104ms
241:	learn: 16.1388618	total: 427ms	remaining: 102ms
242:	learn: 16.1252023	total: 429ms	remaining: 101ms
243:	learn: 16.1078883	total: 430ms	remaining: 98.8ms
244:	learn: 16.0834087	total: 432ms	remaining: 97ms
245:	learn: 16.0605993	total: 434ms	remaining: 95.2ms
246:	learn: 16.0406480	total: 435ms	remaining: 93.4ms
247:	learn: 16.0233779	total: 437ms	remaining: 91.6ms
248:	learn: 16.0120537	total: 438ms	remaining: 89.8ms
249:	learn: 15.9904648	total: 440ms	remaining: 88ms
250:	learn: 15.9662931	total: 441ms	remaining: 86.2ms
251:	learn: 15.9363763	total: 443ms	remaining: 84.4ms
252:	learn: 15.9212520	total: 445ms	remaining: 82.6ms
253:	learn: 15.9074401	total: 446ms	remaining: 80.8ms
254:	learn: 15.8967136	total: 448ms	remaining: 79ms
255:	learn: 15.8768735	total: 449ms	remaining: 77.2ms
256:	learn: 15.8504570	total: 451ms	remaining: 75.5ms
257:	learn: 15.8311677	total: 452ms	remaining: 73.6ms
258:	learn: 15.8189546	total: 454ms	remaining: 71.9ms
259:	learn: 15.7986500	total: 456ms	remaining: 70.2ms
260:	learn: 15.7741361	total: 458ms	remaining: 68.4ms
261:	learn: 15.7625953	total: 459ms	remaining: 66.6ms
262:	learn: 15.7435288	total: 461ms	remaining: 64.8ms
263:	learn: 15.7162307	total: 462ms	remaining: 63ms
264:	learn: 15.6991788	total: 464ms	remaining: 61.2ms
265:	learn: 15.6795388	total: 465ms	remaining: 59.5ms
266:	learn: 15.6607158	total: 467ms	remaining: 57.7ms
267:	learn: 15.6509275	total: 468ms	remaining: 55.9ms
268:	learn: 15.6368828	total: 470ms	remaining: 54.2ms
269:	learn: 15.6223301	total: 472ms	remaining: 52.4ms
270:	learn: 15.6099838	total: 473ms	remaining: 50.7ms
271:	learn: 15.5930755	total: 475ms	remaining: 48.9ms
272:	learn: 15.5828071	total: 477ms	remaining: 47.1ms
273:	learn: 15.5642589	total: 479ms	remaining: 45.4ms
274:	learn: 15.5502959	total: 480ms	remaining: 43.6ms
275:	learn: 15.5411663	total: 482ms	remaining: 41.9ms
276:	learn: 15.5263470	total: 484ms	remaining: 40.2ms
277:	learn: 15.5127132	total: 485ms	remaining: 38.4ms
278:	learn: 15.4856385	total: 487ms	remaining: 36.7ms
279:	learn: 15.4686674	total: 489ms	remaining: 34.9ms
280:	learn: 15.4612681	total: 490ms	remaining: 33.2ms
281:	learn: 15.4522987	total: 493ms	remaining: 31.4ms
282:	learn: 15.4308650	total: 496ms	remaining: 29.8ms
283:	learn: 15.4158875	total: 501ms	remaining: 28.2ms
284:	learn: 15.4008198	total: 505ms	remaining: 26.6ms
285:	learn: 15.3849623	total: 508ms	remaining: 24.9ms
286:	learn: 15.3737673	total: 511ms	remaining: 23.1ms
287:	learn: 15.3621393	total: 514ms	remaining: 21.4ms
288:	learn: 15.3535324	total: 516ms	remaining: 19.6ms
289:	learn: 15.3394111	total: 518ms	remaining: 17.9ms
290:	learn: 15.3222059	total: 520ms	remaining: 16.1ms
291:	learn: 15.3060770	total: 522ms	remaining: 14.3ms
292:	learn: 15.2924531	total: 524ms	remaining: 12.5ms
293:	learn: 15.2719475	total: 526ms	remaining: 10.7ms
294:	learn: 15.2461816	total: 527ms	remaining: 8.94ms
295:	learn: 15.2337641	total: 529ms	remaining: 7.15ms
296:	learn: 15.2148705	total: 531ms	remaining: 5.37ms
297:	learn: 15.1991495	total: 533ms	remaining: 3.58ms
298:	learn: 15.1797012	total: 534ms	remaining: 1.79ms
299:	learn: 15.1610613	total: 536ms	remaining: 0us
0:	learn: 43.7605425	total: 1.79ms	remaining: 535ms
1:	learn: 43.4912581	total: 3.31ms	remaining: 493ms
2:	learn: 43.2693141	total: 4.78ms	remaining: 473ms
3:	learn: 43.0484853	total: 6.23ms	remaining: 461ms
4:	learn: 42.8167283	total: 7.72ms	remaining: 455ms
5:	learn: 42.5756189	total: 9.21ms	remaining: 451ms
6:	learn: 42.3517341	total: 10.7ms	remaining: 449ms
7:	learn: 42.1173355	total: 12.2ms	remaining: 447ms
8:	learn: 41.8793817	total: 13.9ms	remaining: 448ms
9:	learn: 41.6308788	total: 15.5ms	remaining: 449ms
10:	learn: 41.4342028	total: 17ms	remaining: 447ms
11:	learn: 41.1882055	total: 18.5ms	remaining: 445ms
12:	learn: 40.9319094	total: 20ms	remaining: 442ms
13:	learn: 40.6714090	total: 21.5ms	remaining: 439ms
14:	learn: 40.4909798	total: 23.1ms	remaining: 439ms
15:	learn: 40.2717763	total: 24.8ms	remaining: 440ms
16:	learn: 40.0681771	total: 26.4ms	remaining: 440ms
17:	learn: 39.8218856	total: 27.9ms	remaining: 438ms
18:	learn: 39.5961267	total: 29.4ms	remaining: 435ms
19:	learn: 39.4405798	total: 31ms	remaining: 433ms
20:	learn: 39.2108144	total: 32.7ms	remaining: 434ms
21:	learn: 39.0432609	total: 34.2ms	remaining: 432ms
22:	learn: 38.8259483	total: 35.9ms	remaining: 433ms
23:	learn: 38.6184822	total: 37.9ms	remaining: 435ms
24:	learn: 38.4437978	total: 39.6ms	remaining: 436ms
25:	learn: 38.2222225	total: 41.1ms	remaining: 434ms
26:	learn: 38.0324524	total: 42.7ms	remaining: 432ms
27:	learn: 37.8494951	total: 44.2ms	remaining: 429ms
28:	learn: 37.6335152	total: 45.7ms	remaining: 427ms
29:	learn: 37.4744192	total: 47.3ms	remaining: 426ms
30:	learn: 37.3123037	total: 49ms	remaining: 425ms
31:	learn: 37.1243402	total: 50.5ms	remaining: 423ms
32:	learn: 36.9331259	total: 52.1ms	remaining: 421ms
33:	learn: 36.7495416	total: 53.6ms	remaining: 420ms
34:	learn: 36.5847482	total: 55.4ms	remaining: 419ms
35:	learn: 36.4041560	total: 57ms	remaining: 418ms
36:	learn: 36.2310112	total: 58.6ms	remaining: 416ms
37:	learn: 36.0300071	total: 60.1ms	remaining: 415ms
38:	learn: 35.8413053	total: 61.7ms	remaining: 413ms
39:	learn: 35.6391333	total: 63.3ms	remaining: 411ms
40:	learn: 35.4435169	total: 65ms	remaining: 411ms
41:	learn: 35.2592944	total: 66.8ms	remaining: 410ms
42:	learn: 35.1234175	total: 68.4ms	remaining: 409ms
43:	learn: 34.9513713	total: 70ms	remaining: 407ms
44:	learn: 34.7636330	total: 71.6ms	remaining: 406ms
45:	learn: 34.5945270	total: 73.3ms	remaining: 405ms
46:	learn: 34.4412215	total: 74.9ms	remaining: 403ms
47:	learn: 34.3171904	total: 76.5ms	remaining: 401ms
48:	learn: 34.1518441	total: 78ms	remaining: 400ms
49:	learn: 33.9708309	total: 79.7ms	remaining: 399ms
50:	learn: 33.7897519	total: 81.4ms	remaining: 398ms
51:	learn: 33.6365072	total: 83.4ms	remaining: 398ms
52:	learn: 33.5038050	total: 85.1ms	remaining: 397ms
53:	learn: 33.3569700	total: 86.7ms	remaining: 395ms
54:	learn: 33.1935439	total: 88.5ms	remaining: 394ms
55:	learn: 33.0209407	total: 90.1ms	remaining: 392ms
56:	learn: 32.8888015	total: 91.7ms	remaining: 391ms
57:	learn: 32.7360633	total: 93.3ms	remaining: 389ms
58:	learn: 32.6310895	total: 94.9ms	remaining: 388ms
59:	learn: 32.4938025	total: 96.5ms	remaining: 386ms
60:	learn: 32.3409081	total: 98.3ms	remaining: 385ms
61:	learn: 32.1877026	total: 100ms	remaining: 384ms
62:	learn: 32.0522661	total: 102ms	remaining: 383ms
63:	learn: 31.9444498	total: 104ms	remaining: 382ms
64:	learn: 31.8223753	total: 105ms	remaining: 381ms
65:	learn: 31.6707888	total: 107ms	remaining: 379ms
66:	learn: 31.5118036	total: 109ms	remaining: 378ms
67:	learn: 31.3748394	total: 110ms	remaining: 377ms
68:	learn: 31.2329558	total: 112ms	remaining: 375ms
69:	learn: 31.0844603	total: 114ms	remaining: 374ms
70:	learn: 30.9446631	total: 115ms	remaining: 372ms
71:	learn: 30.8205769	total: 117ms	remaining: 372ms
72:	learn: 30.6929272	total: 119ms	remaining: 370ms
73:	learn: 30.5585591	total: 121ms	remaining: 369ms
74:	learn: 30.4131773	total: 123ms	remaining: 369ms
75:	learn: 30.2863697	total: 127ms	remaining: 374ms
76:	learn: 30.1542367	total: 130ms	remaining: 376ms
77:	learn: 30.0311754	total: 132ms	remaining: 377ms
78:	learn: 29.9144725	total: 137ms	remaining: 383ms
79:	learn: 29.7747798	total: 144ms	remaining: 396ms
80:	learn: 29.6218481	total: 146ms	remaining: 396ms
81:	learn: 29.4878825	total: 148ms	remaining: 395ms
82:	learn: 29.4045741	total: 158ms	remaining: 413ms
83:	learn: 29.2774952	total: 160ms	remaining: 412ms
84:	learn: 29.1445027	total: 162ms	remaining: 410ms
85:	learn: 29.0090642	total: 164ms	remaining: 408ms
86:	learn: 28.8797334	total: 166ms	remaining: 407ms
87:	learn: 28.7621584	total: 168ms	remaining: 406ms
88:	learn: 28.6313080	total: 170ms	remaining: 404ms
89:	learn: 28.5488221	total: 172ms	remaining: 402ms
90:	learn: 28.4536887	total: 174ms	remaining: 400ms
91:	learn: 28.3346535	total: 176ms	remaining: 398ms
92:	learn: 28.2299679	total: 178ms	remaining: 397ms
93:	learn: 28.1258951	total: 180ms	remaining: 395ms
94:	learn: 27.9985547	total: 182ms	remaining: 393ms
95:	learn: 27.8778043	total: 184ms	remaining: 392ms
96:	learn: 27.7773420	total: 186ms	remaining: 390ms
97:	learn: 27.6669866	total: 188ms	remaining: 388ms
98:	learn: 27.6067904	total: 190ms	remaining: 387ms
99:	learn: 27.5114044	total: 192ms	remaining: 385ms
100:	learn: 27.4108899	total: 194ms	remaining: 383ms
101:	learn: 27.2922494	total: 196ms	remaining: 380ms
102:	learn: 27.1942093	total: 198ms	remaining: 379ms
103:	learn: 27.1204512	total: 200ms	remaining: 378ms
104:	learn: 27.0254994	total: 203ms	remaining: 376ms
105:	learn: 26.9312912	total: 205ms	remaining: 375ms
106:	learn: 26.8222333	total: 207ms	remaining: 373ms
107:	learn: 26.7452875	total: 208ms	remaining: 371ms
108:	learn: 26.6545963	total: 210ms	remaining: 368ms
109:	learn: 26.5528420	total: 211ms	remaining: 365ms
110:	learn: 26.4400669	total: 213ms	remaining: 363ms
111:	learn: 26.3445406	total: 214ms	remaining: 360ms
112:	learn: 26.2402538	total: 216ms	remaining: 357ms
113:	learn: 26.1562088	total: 218ms	remaining: 355ms
114:	learn: 26.0559300	total: 219ms	remaining: 353ms
115:	learn: 25.9988131	total: 220ms	remaining: 350ms
116:	learn: 25.9198095	total: 222ms	remaining: 347ms
117:	learn: 25.8402295	total: 224ms	remaining: 345ms
118:	learn: 25.7541945	total: 225ms	remaining: 342ms
119:	learn: 25.6880488	total: 227ms	remaining: 340ms
120:	learn: 25.5888396	total: 228ms	remaining: 337ms
121:	learn: 25.4907804	total: 230ms	remaining: 335ms
122:	learn: 25.3941866	total: 231ms	remaining: 332ms
123:	learn: 25.3050193	total: 233ms	remaining: 330ms
124:	learn: 25.2533585	total: 234ms	remaining: 328ms
125:	learn: 25.1691166	total: 236ms	remaining: 326ms
126:	learn: 25.0893061	total: 238ms	remaining: 324ms
127:	learn: 25.0392400	total: 239ms	remaining: 321ms
128:	learn: 24.9648706	total: 241ms	remaining: 319ms
129:	learn: 24.8933551	total: 242ms	remaining: 317ms
130:	learn: 24.8281291	total: 244ms	remaining: 315ms
131:	learn: 24.7591234	total: 246ms	remaining: 313ms
132:	learn: 24.7059820	total: 248ms	remaining: 311ms
133:	learn: 24.6287026	total: 249ms	remaining: 309ms
134:	learn: 24.5530180	total: 251ms	remaining: 307ms
135:	learn: 24.4808279	total: 253ms	remaining: 305ms
136:	learn: 24.3907753	total: 255ms	remaining: 303ms
137:	learn: 24.3042328	total: 256ms	remaining: 301ms
138:	learn: 24.2197937	total: 258ms	remaining: 299ms
139:	learn: 24.1519694	total: 260ms	remaining: 297ms
140:	learn: 24.0921077	total: 261ms	remaining: 294ms
141:	learn: 24.0240646	total: 263ms	remaining: 292ms
142:	learn: 23.9532949	total: 264ms	remaining: 290ms
143:	learn: 23.9018152	total: 266ms	remaining: 288ms
144:	learn: 23.8660710	total: 267ms	remaining: 286ms
145:	learn: 23.7925441	total: 269ms	remaining: 283ms
146:	learn: 23.7201628	total: 270ms	remaining: 281ms
147:	learn: 23.6498034	total: 272ms	remaining: 279ms
148:	learn: 23.5752576	total: 274ms	remaining: 277ms
149:	learn: 23.4961769	total: 275ms	remaining: 275ms
150:	learn: 23.4254916	total: 277ms	remaining: 273ms
151:	learn: 23.3421278	total: 278ms	remaining: 271ms
152:	learn: 23.2722557	total: 280ms	remaining: 269ms
153:	learn: 23.2151798	total: 282ms	remaining: 267ms
154:	learn: 23.1714870	total: 283ms	remaining: 265ms
155:	learn: 23.1214083	total: 285ms	remaining: 263ms
156:	learn: 23.0729212	total: 286ms	remaining: 261ms
157:	learn: 23.0123129	total: 288ms	remaining: 259ms
158:	learn: 22.9532171	total: 290ms	remaining: 257ms
159:	learn: 22.8825295	total: 291ms	remaining: 255ms
160:	learn: 22.8320734	total: 293ms	remaining: 253ms
161:	learn: 22.7913462	total: 295ms	remaining: 251ms
162:	learn: 22.7252448	total: 296ms	remaining: 249ms
163:	learn: 22.6844215	total: 298ms	remaining: 247ms
164:	learn: 22.6455454	total: 300ms	remaining: 245ms
165:	learn: 22.5916948	total: 302ms	remaining: 243ms
166:	learn: 22.5386003	total: 303ms	remaining: 242ms
167:	learn: 22.4848811	total: 305ms	remaining: 240ms
168:	learn: 22.4336631	total: 307ms	remaining: 238ms
169:	learn: 22.3832871	total: 309ms	remaining: 236ms
170:	learn: 22.3285168	total: 311ms	remaining: 234ms
171:	learn: 22.2619878	total: 312ms	remaining: 232ms
172:	learn: 22.2082223	total: 314ms	remaining: 231ms
173:	learn: 22.1552707	total: 316ms	remaining: 229ms
174:	learn: 22.1112768	total: 318ms	remaining: 227ms
175:	learn: 22.0647648	total: 321ms	remaining: 226ms
176:	learn: 22.0153413	total: 324ms	remaining: 225ms
177:	learn: 21.9667837	total: 327ms	remaining: 224ms
178:	learn: 21.9063505	total: 329ms	remaining: 222ms
179:	learn: 21.8592803	total: 332ms	remaining: 221ms
180:	learn: 21.8252736	total: 334ms	remaining: 219ms
181:	learn: 21.7640793	total: 336ms	remaining: 218ms
182:	learn: 21.7284811	total: 338ms	remaining: 216ms
183:	learn: 21.6819901	total: 340ms	remaining: 214ms
184:	learn: 21.6372017	total: 342ms	remaining: 212ms
185:	learn: 21.6002825	total: 344ms	remaining: 211ms
186:	learn: 21.5437225	total: 346ms	remaining: 209ms
187:	learn: 21.4877736	total: 348ms	remaining: 207ms
188:	learn: 21.4273863	total: 350ms	remaining: 205ms
189:	learn: 21.3919836	total: 352ms	remaining: 204ms
190:	learn: 21.3369122	total: 353ms	remaining: 202ms
191:	learn: 21.2933419	total: 355ms	remaining: 200ms
192:	learn: 21.2758663	total: 357ms	remaining: 198ms
193:	learn: 21.2239492	total: 358ms	remaining: 196ms
194:	learn: 21.1856650	total: 360ms	remaining: 194ms
195:	learn: 21.1425543	total: 361ms	remaining: 192ms
196:	learn: 21.1029181	total: 363ms	remaining: 190ms
197:	learn: 21.0557650	total: 364ms	remaining: 188ms
198:	learn: 21.0207413	total: 366ms	remaining: 186ms
199:	learn: 20.9819234	total: 367ms	remaining: 184ms
200:	learn: 20.9321090	total: 369ms	remaining: 182ms
201:	learn: 20.8783205	total: 370ms	remaining: 180ms
202:	learn: 20.8353798	total: 372ms	remaining: 178ms
203:	learn: 20.8105715	total: 374ms	remaining: 176ms
204:	learn: 20.7825826	total: 375ms	remaining: 174ms
205:	learn: 20.7392383	total: 377ms	remaining: 172ms
206:	learn: 20.7020084	total: 378ms	remaining: 170ms
207:	learn: 20.6693098	total: 380ms	remaining: 168ms
208:	learn: 20.6302116	total: 382ms	remaining: 166ms
209:	learn: 20.5975717	total: 383ms	remaining: 164ms
210:	learn: 20.5608536	total: 385ms	remaining: 162ms
211:	learn: 20.5239564	total: 386ms	remaining: 160ms
212:	learn: 20.4729645	total: 388ms	remaining: 158ms
213:	learn: 20.4555771	total: 389ms	remaining: 157ms
214:	learn: 20.4205704	total: 391ms	remaining: 155ms
215:	learn: 20.3768331	total: 393ms	remaining: 153ms
216:	learn: 20.3185859	total: 394ms	remaining: 151ms
217:	learn: 20.2688499	total: 396ms	remaining: 149ms
218:	learn: 20.2193380	total: 398ms	remaining: 147ms
219:	learn: 20.1868123	total: 399ms	remaining: 145ms
220:	learn: 20.1422068	total: 401ms	remaining: 143ms
221:	learn: 20.1142691	total: 403ms	remaining: 141ms
222:	learn: 20.0725492	total: 404ms	remaining: 140ms
223:	learn: 20.0385687	total: 406ms	remaining: 138ms
224:	learn: 20.0134530	total: 407ms	remaining: 136ms
225:	learn: 19.9733773	total: 409ms	remaining: 134ms
226:	learn: 19.9433878	total: 410ms	remaining: 132ms
227:	learn: 19.9151264	total: 412ms	remaining: 130ms
228:	learn: 19.8930103	total: 414ms	remaining: 128ms
229:	learn: 19.8591579	total: 415ms	remaining: 126ms
230:	learn: 19.8373025	total: 417ms	remaining: 124ms
231:	learn: 19.7965152	total: 418ms	remaining: 123ms
232:	learn: 19.7639351	total: 420ms	remaining: 121ms
233:	learn: 19.7292445	total: 421ms	remaining: 119ms
234:	learn: 19.7036541	total: 423ms	remaining: 117ms
235:	learn: 19.6607731	total: 425ms	remaining: 115ms
236:	learn: 19.6218908	total: 426ms	remaining: 113ms
237:	learn: 19.5834620	total: 428ms	remaining: 111ms
238:	learn: 19.5498690	total: 430ms	remaining: 110ms
239:	learn: 19.5150060	total: 431ms	remaining: 108ms
240:	learn: 19.4841916	total: 433ms	remaining: 106ms
241:	learn: 19.4610332	total: 435ms	remaining: 104ms
242:	learn: 19.4116425	total: 437ms	remaining: 102ms
243:	learn: 19.3759093	total: 438ms	remaining: 101ms
244:	learn: 19.3588853	total: 440ms	remaining: 98.8ms
245:	learn: 19.3309451	total: 442ms	remaining: 97ms
246:	learn: 19.2969038	total: 443ms	remaining: 95.2ms
247:	learn: 19.2739852	total: 445ms	remaining: 93.4ms
248:	learn: 19.2448974	total: 447ms	remaining: 91.5ms
249:	learn: 19.2175631	total: 449ms	remaining: 89.7ms
250:	learn: 19.1837895	total: 450ms	remaining: 87.9ms
251:	learn: 19.1620377	total: 452ms	remaining: 86.1ms
252:	learn: 19.1290965	total: 454ms	remaining: 84.3ms
253:	learn: 19.0964982	total: 456ms	remaining: 82.5ms
254:	learn: 19.0765372	total: 458ms	remaining: 80.8ms
255:	learn: 19.0559508	total: 459ms	remaining: 78.9ms
256:	learn: 19.0292859	total: 461ms	remaining: 77.1ms
257:	learn: 19.0024690	total: 463ms	remaining: 75.3ms
258:	learn: 18.9748922	total: 464ms	remaining: 73.5ms
259:	learn: 18.9544535	total: 466ms	remaining: 71.6ms
260:	learn: 18.9390257	total: 467ms	remaining: 69.8ms
261:	learn: 18.9062451	total: 469ms	remaining: 68ms
262:	learn: 18.8733505	total: 470ms	remaining: 66.2ms
263:	learn: 18.8449637	total: 472ms	remaining: 64.4ms
264:	learn: 18.8327466	total: 474ms	remaining: 62.6ms
265:	learn: 18.7933752	total: 476ms	remaining: 60.8ms
266:	learn: 18.7585534	total: 477ms	remaining: 59ms
267:	learn: 18.7309076	total: 479ms	remaining: 57.1ms
268:	learn: 18.7189917	total: 480ms	remaining: 55.3ms
269:	learn: 18.6929104	total: 482ms	remaining: 53.5ms
270:	learn: 18.6859968	total: 483ms	remaining: 51.7ms
271:	learn: 18.6542820	total: 485ms	remaining: 49.9ms
272:	learn: 18.6354256	total: 486ms	remaining: 48.1ms
273:	learn: 18.6011119	total: 488ms	remaining: 46.3ms
274:	learn: 18.5858433	total: 490ms	remaining: 44.5ms
275:	learn: 18.5621150	total: 492ms	remaining: 42.8ms
276:	learn: 18.5366382	total: 493ms	remaining: 41ms
277:	learn: 18.5001168	total: 495ms	remaining: 39.2ms
278:	learn: 18.4648031	total: 497ms	remaining: 37.4ms
279:	learn: 18.4462882	total: 498ms	remaining: 35.6ms
280:	learn: 18.4169799	total: 500ms	remaining: 33.8ms
281:	learn: 18.3862530	total: 502ms	remaining: 32ms
282:	learn: 18.3603644	total: 504ms	remaining: 30.2ms
283:	learn: 18.3343403	total: 505ms	remaining: 28.5ms
284:	learn: 18.3079526	total: 507ms	remaining: 26.7ms
285:	learn: 18.2914542	total: 509ms	remaining: 24.9ms
286:	learn: 18.2760216	total: 510ms	remaining: 23.1ms
287:	learn: 18.2569461	total: 512ms	remaining: 21.3ms
288:	learn: 18.2469361	total: 514ms	remaining: 19.6ms
289:	learn: 18.2253889	total: 517ms	remaining: 17.8ms
290:	learn: 18.1988356	total: 520ms	remaining: 16.1ms
291:	learn: 18.1819113	total: 523ms	remaining: 14.3ms
292:	learn: 18.1753537	total: 528ms	remaining: 12.6ms
293:	learn: 18.1576302	total: 532ms	remaining: 10.9ms
294:	learn: 18.1353124	total: 534ms	remaining: 9.05ms
295:	learn: 18.1254767	total: 536ms	remaining: 7.25ms
296:	learn: 18.1075581	total: 540ms	remaining: 5.45ms
297:	learn: 18.0923426	total: 542ms	remaining: 3.64ms
298:	learn: 18.0731509	total: 544ms	remaining: 1.82ms
299:	learn: 18.0532499	total: 546ms	remaining: 0us
0:	learn: 47.2420321	total: 2.3ms	remaining: 688ms
1:	learn: 47.0075933	total: 4.36ms	remaining: 650ms
2:	learn: 46.7507100	total: 6.27ms	remaining: 621ms
3:	learn: 46.5792546	total: 8.18ms	remaining: 606ms
4:	learn: 46.4168335	total: 10.1ms	remaining: 595ms
5:	learn: 46.2079107	total: 11.6ms	remaining: 570ms
6:	learn: 46.0246860	total: 13.2ms	remaining: 553ms
7:	learn: 45.7976604	total: 15ms	remaining: 549ms
8:	learn: 45.5818450	total: 16.6ms	remaining: 537ms
9:	learn: 45.3651717	total: 18.2ms	remaining: 527ms
10:	learn: 45.1816207	total: 19.8ms	remaining: 519ms
11:	learn: 44.9806458	total: 21.3ms	remaining: 511ms
12:	learn: 44.7658788	total: 22.9ms	remaining: 506ms
13:	learn: 44.6014304	total: 24.4ms	remaining: 499ms
14:	learn: 44.4557345	total: 26ms	remaining: 493ms
15:	learn: 44.2250496	total: 27.6ms	remaining: 489ms
16:	learn: 44.0474464	total: 29.2ms	remaining: 486ms
17:	learn: 43.8602658	total: 30.8ms	remaining: 483ms
18:	learn: 43.6697756	total: 32.6ms	remaining: 482ms
19:	learn: 43.5096131	total: 34.2ms	remaining: 478ms
20:	learn: 43.3764119	total: 35.8ms	remaining: 476ms
21:	learn: 43.2491411	total: 37.3ms	remaining: 471ms
22:	learn: 43.1208490	total: 38.9ms	remaining: 468ms
23:	learn: 42.9794830	total: 40.5ms	remaining: 466ms
24:	learn: 42.7739578	total: 42.1ms	remaining: 463ms
25:	learn: 42.5993624	total: 43.7ms	remaining: 460ms
26:	learn: 42.4140067	total: 45.3ms	remaining: 458ms
27:	learn: 42.1803930	total: 46.8ms	remaining: 455ms
28:	learn: 41.9876735	total: 48.4ms	remaining: 452ms
29:	learn: 41.8285093	total: 50.1ms	remaining: 451ms
30:	learn: 41.6630492	total: 51.7ms	remaining: 449ms
31:	learn: 41.5334890	total: 53.2ms	remaining: 446ms
32:	learn: 41.3248200	total: 54.9ms	remaining: 444ms
33:	learn: 41.1752844	total: 56.4ms	remaining: 441ms
34:	learn: 41.0548900	total: 58ms	remaining: 439ms
35:	learn: 40.9231532	total: 59.6ms	remaining: 437ms
36:	learn: 40.7408834	total: 61.3ms	remaining: 435ms
37:	learn: 40.5685807	total: 62.9ms	remaining: 434ms
38:	learn: 40.4675016	total: 64.5ms	remaining: 432ms
39:	learn: 40.3298096	total: 66.3ms	remaining: 431ms
40:	learn: 40.2050519	total: 67.8ms	remaining: 428ms
41:	learn: 40.0402111	total: 69.4ms	remaining: 426ms
42:	learn: 39.8860665	total: 71ms	remaining: 424ms
43:	learn: 39.7145635	total: 72.6ms	remaining: 422ms
44:	learn: 39.5616859	total: 74.2ms	remaining: 421ms
45:	learn: 39.3759273	total: 75.8ms	remaining: 418ms
46:	learn: 39.2716287	total: 77.3ms	remaining: 416ms
47:	learn: 39.1073020	total: 78.9ms	remaining: 414ms
48:	learn: 38.9728491	total: 80.5ms	remaining: 413ms
49:	learn: 38.8504734	total: 82.6ms	remaining: 413ms
50:	learn: 38.7051501	total: 84.4ms	remaining: 412ms
51:	learn: 38.5847277	total: 86ms	remaining: 410ms
52:	learn: 38.4171686	total: 87.5ms	remaining: 408ms
53:	learn: 38.2639958	total: 89.4ms	remaining: 407ms
54:	learn: 38.1089453	total: 91.1ms	remaining: 406ms
55:	learn: 37.9926928	total: 92.8ms	remaining: 404ms
56:	learn: 37.8694595	total: 94.5ms	remaining: 403ms
57:	learn: 37.7283140	total: 96.1ms	remaining: 401ms
58:	learn: 37.6173344	total: 97.6ms	remaining: 399ms
59:	learn: 37.4703167	total: 99.3ms	remaining: 397ms
60:	learn: 37.3361972	total: 101ms	remaining: 396ms
61:	learn: 37.2055730	total: 103ms	remaining: 394ms
62:	learn: 37.0713496	total: 104ms	remaining: 392ms
63:	learn: 36.9800638	total: 106ms	remaining: 391ms
64:	learn: 36.8591047	total: 108ms	remaining: 389ms
65:	learn: 36.6866788	total: 109ms	remaining: 388ms
66:	learn: 36.6042228	total: 111ms	remaining: 387ms
67:	learn: 36.5165516	total: 113ms	remaining: 385ms
68:	learn: 36.3980848	total: 115ms	remaining: 383ms
69:	learn: 36.2665583	total: 116ms	remaining: 383ms
70:	learn: 36.1338194	total: 118ms	remaining: 382ms
71:	learn: 36.0049945	total: 120ms	remaining: 380ms
72:	learn: 35.8363683	total: 122ms	remaining: 379ms
73:	learn: 35.7342377	total: 123ms	remaining: 377ms
74:	learn: 35.6415000	total: 125ms	remaining: 376ms
75:	learn: 35.5244470	total: 127ms	remaining: 374ms
76:	learn: 35.4345693	total: 129ms	remaining: 374ms
77:	learn: 35.3443274	total: 133ms	remaining: 377ms
78:	learn: 35.2505511	total: 135ms	remaining: 379ms
79:	learn: 35.1651168	total: 138ms	remaining: 379ms
80:	learn: 35.0516577	total: 141ms	remaining: 380ms
81:	learn: 34.9220162	total: 143ms	remaining: 380ms
82:	learn: 34.8321471	total: 146ms	remaining: 380ms
83:	learn: 34.7198979	total: 148ms	remaining: 381ms
84:	learn: 34.6008300	total: 164ms	remaining: 415ms
85:	learn: 34.4634015	total: 165ms	remaining: 412ms
86:	learn: 34.2832716	total: 167ms	remaining: 409ms
87:	learn: 34.1664311	total: 169ms	remaining: 407ms
88:	learn: 34.0594841	total: 170ms	remaining: 404ms
89:	learn: 33.9941748	total: 172ms	remaining: 401ms
90:	learn: 33.8801431	total: 173ms	remaining: 398ms
91:	learn: 33.7786185	total: 175ms	remaining: 396ms
92:	learn: 33.6596690	total: 177ms	remaining: 393ms
93:	learn: 33.5456009	total: 178ms	remaining: 391ms
94:	learn: 33.4573049	total: 180ms	remaining: 388ms
95:	learn: 33.3382314	total: 181ms	remaining: 385ms
96:	learn: 33.2376233	total: 183ms	remaining: 383ms
97:	learn: 33.1653718	total: 184ms	remaining: 380ms
98:	learn: 33.0455978	total: 186ms	remaining: 378ms
99:	learn: 32.9195646	total: 188ms	remaining: 376ms
100:	learn: 32.8503171	total: 190ms	remaining: 374ms
101:	learn: 32.7585069	total: 191ms	remaining: 372ms
102:	learn: 32.6348058	total: 193ms	remaining: 369ms
103:	learn: 32.5810868	total: 195ms	remaining: 367ms
104:	learn: 32.4441615	total: 196ms	remaining: 364ms
105:	learn: 32.3268329	total: 198ms	remaining: 362ms
106:	learn: 32.2230319	total: 199ms	remaining: 359ms
107:	learn: 32.1484401	total: 201ms	remaining: 357ms
108:	learn: 32.0604459	total: 203ms	remaining: 355ms
109:	learn: 31.9510121	total: 204ms	remaining: 353ms
110:	learn: 31.8281442	total: 206ms	remaining: 350ms
111:	learn: 31.7231519	total: 207ms	remaining: 348ms
112:	learn: 31.6247967	total: 209ms	remaining: 346ms
113:	learn: 31.5594988	total: 210ms	remaining: 343ms
114:	learn: 31.4833814	total: 212ms	remaining: 341ms
115:	learn: 31.3930062	total: 214ms	remaining: 339ms
116:	learn: 31.3485038	total: 215ms	remaining: 337ms
117:	learn: 31.2390105	total: 217ms	remaining: 334ms
118:	learn: 31.1473468	total: 218ms	remaining: 332ms
119:	learn: 31.0722151	total: 220ms	remaining: 330ms
120:	learn: 31.0202304	total: 222ms	remaining: 328ms
121:	learn: 30.9074121	total: 223ms	remaining: 326ms
122:	learn: 30.8563892	total: 225ms	remaining: 324ms
123:	learn: 30.7567620	total: 226ms	remaining: 321ms
124:	learn: 30.6950547	total: 228ms	remaining: 319ms
125:	learn: 30.5947973	total: 230ms	remaining: 317ms
126:	learn: 30.4944626	total: 231ms	remaining: 315ms
127:	learn: 30.3967239	total: 233ms	remaining: 313ms
128:	learn: 30.3030941	total: 234ms	remaining: 311ms
129:	learn: 30.2269285	total: 236ms	remaining: 309ms
130:	learn: 30.1295528	total: 238ms	remaining: 307ms
131:	learn: 30.0699291	total: 239ms	remaining: 304ms
132:	learn: 29.9983586	total: 241ms	remaining: 302ms
133:	learn: 29.9476041	total: 242ms	remaining: 300ms
134:	learn: 29.8951888	total: 244ms	remaining: 298ms
135:	learn: 29.8038429	total: 246ms	remaining: 296ms
136:	learn: 29.7642786	total: 247ms	remaining: 294ms
137:	learn: 29.7185402	total: 249ms	remaining: 292ms
138:	learn: 29.6310525	total: 250ms	remaining: 290ms
139:	learn: 29.5402510	total: 252ms	remaining: 288ms
140:	learn: 29.4332394	total: 254ms	remaining: 286ms
141:	learn: 29.3449895	total: 255ms	remaining: 284ms
142:	learn: 29.2787236	total: 257ms	remaining: 282ms
143:	learn: 29.1912486	total: 259ms	remaining: 280ms
144:	learn: 29.1213985	total: 260ms	remaining: 278ms
145:	learn: 29.0659307	total: 262ms	remaining: 277ms
146:	learn: 29.0099718	total: 264ms	remaining: 275ms
147:	learn: 28.9311607	total: 265ms	remaining: 273ms
148:	learn: 28.8695217	total: 267ms	remaining: 271ms
149:	learn: 28.8141788	total: 269ms	remaining: 269ms
150:	learn: 28.7590151	total: 270ms	remaining: 267ms
151:	learn: 28.6477095	total: 272ms	remaining: 265ms
152:	learn: 28.5453775	total: 274ms	remaining: 263ms
153:	learn: 28.4899040	total: 275ms	remaining: 261ms
154:	learn: 28.4028840	total: 277ms	remaining: 259ms
155:	learn: 28.3337913	total: 278ms	remaining: 257ms
156:	learn: 28.2448347	total: 280ms	remaining: 255ms
157:	learn: 28.1501311	total: 282ms	remaining: 253ms
158:	learn: 28.0569782	total: 284ms	remaining: 252ms
159:	learn: 27.9814978	total: 286ms	remaining: 250ms
160:	learn: 27.8824744	total: 288ms	remaining: 248ms
161:	learn: 27.8089161	total: 289ms	remaining: 247ms
162:	learn: 27.7055854	total: 291ms	remaining: 245ms
163:	learn: 27.6769676	total: 293ms	remaining: 243ms
164:	learn: 27.5888570	total: 295ms	remaining: 241ms
165:	learn: 27.5413585	total: 296ms	remaining: 239ms
166:	learn: 27.5025708	total: 298ms	remaining: 238ms
167:	learn: 27.4227487	total: 300ms	remaining: 236ms
168:	learn: 27.3607312	total: 302ms	remaining: 234ms
169:	learn: 27.2785477	total: 303ms	remaining: 232ms
170:	learn: 27.2420480	total: 305ms	remaining: 230ms
171:	learn: 27.2198863	total: 307ms	remaining: 229ms
172:	learn: 27.1740063	total: 309ms	remaining: 227ms
173:	learn: 27.1354753	total: 311ms	remaining: 225ms
174:	learn: 27.0757650	total: 313ms	remaining: 223ms
175:	learn: 27.0413472	total: 315ms	remaining: 222ms
176:	learn: 26.9964627	total: 317ms	remaining: 220ms
177:	learn: 26.9673643	total: 319ms	remaining: 218ms
178:	learn: 26.9187431	total: 321ms	remaining: 217ms
179:	learn: 26.8423953	total: 323ms	remaining: 216ms
180:	learn: 26.8017685	total: 327ms	remaining: 215ms
181:	learn: 26.7299208	total: 330ms	remaining: 214ms
182:	learn: 26.6589519	total: 334ms	remaining: 213ms
183:	learn: 26.6205310	total: 340ms	remaining: 214ms
184:	learn: 26.5486009	total: 343ms	remaining: 214ms
185:	learn: 26.5207532	total: 346ms	remaining: 212ms
186:	learn: 26.4739185	total: 348ms	remaining: 210ms
187:	learn: 26.3960054	total: 351ms	remaining: 209ms
188:	learn: 26.3382485	total: 353ms	remaining: 208ms
189:	learn: 26.3073259	total: 356ms	remaining: 206ms
190:	learn: 26.2619871	total: 358ms	remaining: 204ms
191:	learn: 26.2154677	total: 360ms	remaining: 203ms
192:	learn: 26.1419014	total: 362ms	remaining: 201ms
193:	learn: 26.0943937	total: 364ms	remaining: 199ms
194:	learn: 26.0363173	total: 366ms	remaining: 197ms
195:	learn: 26.0069678	total: 368ms	remaining: 195ms
196:	learn: 25.9766108	total: 370ms	remaining: 194ms
197:	learn: 25.9334016	total: 372ms	remaining: 192ms
198:	learn: 25.8933333	total: 374ms	remaining: 190ms
199:	learn: 25.8354840	total: 376ms	remaining: 188ms
200:	learn: 25.7706835	total: 378ms	remaining: 186ms
201:	learn: 25.7128993	total: 387ms	remaining: 188ms
202:	learn: 25.6889810	total: 389ms	remaining: 186ms
203:	learn: 25.6341759	total: 391ms	remaining: 184ms
204:	learn: 25.5689871	total: 393ms	remaining: 182ms
205:	learn: 25.5143566	total: 395ms	remaining: 180ms
206:	learn: 25.4579909	total: 397ms	remaining: 179ms
207:	learn: 25.4328240	total: 399ms	remaining: 177ms
208:	learn: 25.3817695	total: 402ms	remaining: 175ms
209:	learn: 25.3396806	total: 404ms	remaining: 173ms
210:	learn: 25.2790923	total: 406ms	remaining: 171ms
211:	learn: 25.2139348	total: 408ms	remaining: 169ms
212:	learn: 25.1526440	total: 409ms	remaining: 167ms
213:	learn: 25.1166376	total: 411ms	remaining: 165ms
214:	learn: 25.0555716	total: 412ms	remaining: 163ms
215:	learn: 24.9843928	total: 414ms	remaining: 161ms
216:	learn: 24.9564270	total: 416ms	remaining: 159ms
217:	learn: 24.9163289	total: 417ms	remaining: 157ms
218:	learn: 24.8640012	total: 419ms	remaining: 155ms
219:	learn: 24.8271365	total: 420ms	remaining: 153ms
220:	learn: 24.7569960	total: 422ms	remaining: 151ms
221:	learn: 24.7241868	total: 424ms	remaining: 149ms
222:	learn: 24.6583262	total: 425ms	remaining: 147ms
223:	learn: 24.6081638	total: 427ms	remaining: 145ms
224:	learn: 24.5407954	total: 428ms	remaining: 143ms
225:	learn: 24.4798236	total: 430ms	remaining: 141ms
226:	learn: 24.4472011	total: 431ms	remaining: 139ms
227:	learn: 24.4095415	total: 433ms	remaining: 137ms
228:	learn: 24.3710798	total: 435ms	remaining: 135ms
229:	learn: 24.3541099	total: 436ms	remaining: 133ms
230:	learn: 24.3098980	total: 438ms	remaining: 131ms
231:	learn: 24.2532076	total: 439ms	remaining: 129ms
232:	learn: 24.2068810	total: 441ms	remaining: 127ms
233:	learn: 24.1854655	total: 443ms	remaining: 125ms
234:	learn: 24.1600724	total: 445ms	remaining: 123ms
235:	learn: 24.1356788	total: 446ms	remaining: 121ms
236:	learn: 24.0830920	total: 448ms	remaining: 119ms
237:	learn: 24.0367589	total: 449ms	remaining: 117ms
238:	learn: 23.9893813	total: 451ms	remaining: 115ms
239:	learn: 23.9401764	total: 453ms	remaining: 113ms
240:	learn: 23.9025635	total: 454ms	remaining: 111ms
241:	learn: 23.8439789	total: 456ms	remaining: 109ms
242:	learn: 23.8007963	total: 458ms	remaining: 107ms
243:	learn: 23.7690097	total: 459ms	remaining: 105ms
244:	learn: 23.7315202	total: 461ms	remaining: 104ms
245:	learn: 23.6942339	total: 463ms	remaining: 102ms
246:	learn: 23.6516053	total: 465ms	remaining: 99.7ms
247:	learn: 23.6317201	total: 466ms	remaining: 97.8ms
248:	learn: 23.5764398	total: 468ms	remaining: 95.9ms
249:	learn: 23.5603404	total: 470ms	remaining: 94ms
250:	learn: 23.5055893	total: 471ms	remaining: 92ms
251:	learn: 23.4547244	total: 473ms	remaining: 90.1ms
252:	learn: 23.4089600	total: 475ms	remaining: 88.3ms
253:	learn: 23.3948026	total: 477ms	remaining: 86.3ms
254:	learn: 23.3446548	total: 478ms	remaining: 84.4ms
255:	learn: 23.3075672	total: 480ms	remaining: 82.5ms
256:	learn: 23.2553567	total: 482ms	remaining: 80.6ms
257:	learn: 23.2290706	total: 483ms	remaining: 78.7ms
258:	learn: 23.1787472	total: 485ms	remaining: 76.8ms
259:	learn: 23.1362265	total: 486ms	remaining: 74.8ms
260:	learn: 23.1177175	total: 488ms	remaining: 72.9ms
261:	learn: 23.0768872	total: 490ms	remaining: 71ms
262:	learn: 23.0600939	total: 492ms	remaining: 69.2ms
263:	learn: 23.0150783	total: 494ms	remaining: 67.3ms
264:	learn: 22.9906812	total: 495ms	remaining: 65.4ms
265:	learn: 22.9739939	total: 498ms	remaining: 63.7ms
266:	learn: 22.9220463	total: 502ms	remaining: 62ms
267:	learn: 22.9003028	total: 504ms	remaining: 60.2ms
268:	learn: 22.8586620	total: 507ms	remaining: 58.4ms
269:	learn: 22.8262357	total: 509ms	remaining: 56.6ms
270:	learn: 22.7927410	total: 512ms	remaining: 54.8ms
271:	learn: 22.7352474	total: 514ms	remaining: 52.9ms
272:	learn: 22.7190324	total: 517ms	remaining: 51.1ms
273:	learn: 22.6586988	total: 519ms	remaining: 49.2ms
274:	learn: 22.6188406	total: 521ms	remaining: 47.3ms
275:	learn: 22.5895887	total: 523ms	remaining: 45.5ms
276:	learn: 22.5733752	total: 525ms	remaining: 43.6ms
277:	learn: 22.5411964	total: 527ms	remaining: 41.7ms
278:	learn: 22.5044372	total: 530ms	remaining: 39.9ms
279:	learn: 22.4849773	total: 532ms	remaining: 38ms
280:	learn: 22.4434597	total: 533ms	remaining: 36.1ms
281:	learn: 22.4241487	total: 535ms	remaining: 34.2ms
282:	learn: 22.3590126	total: 537ms	remaining: 32.3ms
283:	learn: 22.3133781	total: 539ms	remaining: 30.3ms
284:	learn: 22.2728561	total: 540ms	remaining: 28.4ms
285:	learn: 22.2246402	total: 542ms	remaining: 26.5ms
286:	learn: 22.1879337	total: 544ms	remaining: 24.6ms
287:	learn: 22.1654785	total: 545ms	remaining: 22.7ms
288:	learn: 22.1162785	total: 547ms	remaining: 20.8ms
289:	learn: 22.0891620	total: 549ms	remaining: 18.9ms
290:	learn: 22.0555770	total: 551ms	remaining: 17ms
291:	learn: 22.0155382	total: 552ms	remaining: 15.1ms
292:	learn: 21.9945326	total: 554ms	remaining: 13.2ms
293:	learn: 21.9565494	total: 556ms	remaining: 11.3ms
294:	learn: 21.9172015	total: 557ms	remaining: 9.45ms
295:	learn: 21.8749682	total: 559ms	remaining: 7.56ms
296:	learn: 21.8588591	total: 561ms	remaining: 5.67ms
297:	learn: 21.8143368	total: 563ms	remaining: 3.78ms
298:	learn: 21.7762250	total: 564ms	remaining: 1.89ms
299:	learn: 21.7533128	total: 566ms	remaining: 0us
0:	learn: 46.8069978	total: 1.74ms	remaining: 522ms
1:	learn: 46.6032721	total: 3.19ms	remaining: 476ms
2:	learn: 46.3744340	total: 4.71ms	remaining: 466ms
3:	learn: 46.1613073	total: 6.57ms	remaining: 486ms
4:	learn: 45.9767631	total: 8.37ms	remaining: 494ms
5:	learn: 45.8352163	total: 10.1ms	remaining: 495ms
6:	learn: 45.6282901	total: 11.7ms	remaining: 489ms
7:	learn: 45.4476238	total: 13.2ms	remaining: 483ms
8:	learn: 45.2295793	total: 14.8ms	remaining: 479ms
9:	learn: 45.0417061	total: 16.4ms	remaining: 476ms
10:	learn: 44.8858157	total: 17.9ms	remaining: 469ms
11:	learn: 44.6705546	total: 19.4ms	remaining: 464ms
12:	learn: 44.5529587	total: 20.8ms	remaining: 460ms
13:	learn: 44.3970028	total: 22.4ms	remaining: 458ms
14:	learn: 44.2774216	total: 24ms	remaining: 455ms
15:	learn: 44.1066136	total: 25.5ms	remaining: 452ms
16:	learn: 43.8998640	total: 27.1ms	remaining: 451ms
17:	learn: 43.6834273	total: 28.7ms	remaining: 449ms
18:	learn: 43.4807748	total: 30.2ms	remaining: 446ms
19:	learn: 43.3147258	total: 31.7ms	remaining: 444ms
20:	learn: 43.1006880	total: 33.2ms	remaining: 442ms
21:	learn: 42.8998319	total: 34.7ms	remaining: 439ms
22:	learn: 42.7761164	total: 36.2ms	remaining: 436ms
23:	learn: 42.6430333	total: 37.8ms	remaining: 435ms
24:	learn: 42.4023729	total: 39.4ms	remaining: 433ms
25:	learn: 42.2044799	total: 41ms	remaining: 432ms
26:	learn: 42.0355462	total: 42.5ms	remaining: 430ms
27:	learn: 41.8128650	total: 44.1ms	remaining: 428ms
28:	learn: 41.6708087	total: 45.6ms	remaining: 426ms
29:	learn: 41.5643126	total: 47.1ms	remaining: 424ms
30:	learn: 41.4309187	total: 48.8ms	remaining: 423ms
31:	learn: 41.2424589	total: 50.3ms	remaining: 422ms
32:	learn: 41.0487010	total: 51.9ms	remaining: 420ms
33:	learn: 40.8426318	total: 53.5ms	remaining: 418ms
34:	learn: 40.6876070	total: 55ms	remaining: 417ms
35:	learn: 40.5843009	total: 56.5ms	remaining: 414ms
36:	learn: 40.4906110	total: 58ms	remaining: 412ms
37:	learn: 40.3088362	total: 59.4ms	remaining: 410ms
38:	learn: 40.1975388	total: 60.9ms	remaining: 408ms
39:	learn: 40.1029269	total: 62.4ms	remaining: 406ms
40:	learn: 39.9805949	total: 63.9ms	remaining: 404ms
41:	learn: 39.8136403	total: 65.5ms	remaining: 403ms
42:	learn: 39.6759340	total: 67ms	remaining: 401ms
43:	learn: 39.5289519	total: 68.5ms	remaining: 399ms
44:	learn: 39.3438031	total: 70.3ms	remaining: 398ms
45:	learn: 39.2311733	total: 72ms	remaining: 397ms
46:	learn: 39.1320167	total: 73.5ms	remaining: 396ms
47:	learn: 39.0385994	total: 75.1ms	remaining: 394ms
48:	learn: 38.8921390	total: 76.7ms	remaining: 393ms
49:	learn: 38.7555721	total: 78.2ms	remaining: 391ms
50:	learn: 38.6255233	total: 79.7ms	remaining: 389ms
51:	learn: 38.5035133	total: 81.1ms	remaining: 387ms
52:	learn: 38.3321272	total: 82.7ms	remaining: 385ms
53:	learn: 38.1766234	total: 84.3ms	remaining: 384ms
54:	learn: 38.0534922	total: 85.8ms	remaining: 382ms
55:	learn: 37.9171854	total: 87.5ms	remaining: 381ms
56:	learn: 37.7828510	total: 89.2ms	remaining: 380ms
57:	learn: 37.6228943	total: 90.8ms	remaining: 379ms
58:	learn: 37.4869372	total: 92.5ms	remaining: 378ms
59:	learn: 37.3602841	total: 94.1ms	remaining: 376ms
60:	learn: 37.2593763	total: 95.8ms	remaining: 375ms
61:	learn: 37.1446155	total: 97.4ms	remaining: 374ms
62:	learn: 37.0387650	total: 99.2ms	remaining: 373ms
63:	learn: 36.8791175	total: 101ms	remaining: 373ms
64:	learn: 36.7006576	total: 103ms	remaining: 371ms
65:	learn: 36.5947427	total: 104ms	remaining: 370ms
66:	learn: 36.4723477	total: 106ms	remaining: 369ms
67:	learn: 36.3551247	total: 108ms	remaining: 367ms
68:	learn: 36.2233202	total: 110ms	remaining: 367ms
69:	learn: 36.1425926	total: 113ms	remaining: 372ms
70:	learn: 36.0225768	total: 116ms	remaining: 374ms
71:	learn: 35.9573580	total: 119ms	remaining: 377ms
72:	learn: 35.8342732	total: 122ms	remaining: 381ms
73:	learn: 35.7414820	total: 126ms	remaining: 386ms
74:	learn: 35.6524309	total: 130ms	remaining: 391ms
75:	learn: 35.5229379	total: 133ms	remaining: 391ms
76:	learn: 35.4248408	total: 135ms	remaining: 391ms
77:	learn: 35.3475666	total: 138ms	remaining: 392ms
78:	learn: 35.2560963	total: 140ms	remaining: 391ms
79:	learn: 35.1061729	total: 142ms	remaining: 389ms
80:	learn: 35.0184796	total: 143ms	remaining: 388ms
81:	learn: 34.8941352	total: 145ms	remaining: 386ms
82:	learn: 34.8069482	total: 147ms	remaining: 385ms
83:	learn: 34.7410857	total: 149ms	remaining: 384ms
84:	learn: 34.6260815	total: 151ms	remaining: 383ms
85:	learn: 34.5044302	total: 153ms	remaining: 381ms
86:	learn: 34.3303987	total: 155ms	remaining: 380ms
87:	learn: 34.2253345	total: 157ms	remaining: 378ms
88:	learn: 34.1232842	total: 159ms	remaining: 377ms
89:	learn: 34.0640673	total: 161ms	remaining: 376ms
90:	learn: 34.0122863	total: 163ms	remaining: 374ms
91:	learn: 33.9100965	total: 165ms	remaining: 373ms
92:	learn: 33.8200115	total: 167ms	remaining: 372ms
93:	learn: 33.7149257	total: 169ms	remaining: 371ms
94:	learn: 33.6092342	total: 171ms	remaining: 369ms
95:	learn: 33.5116656	total: 173ms	remaining: 367ms
96:	learn: 33.3877207	total: 175ms	remaining: 366ms
97:	learn: 33.2838212	total: 177ms	remaining: 365ms
98:	learn: 33.1754909	total: 179ms	remaining: 363ms
99:	learn: 33.1170180	total: 181ms	remaining: 362ms
100:	learn: 33.0000365	total: 182ms	remaining: 360ms
101:	learn: 32.9109137	total: 184ms	remaining: 357ms
102:	learn: 32.8390257	total: 187ms	remaining: 357ms
103:	learn: 32.7631422	total: 188ms	remaining: 355ms
104:	learn: 32.6889569	total: 190ms	remaining: 354ms
105:	learn: 32.5721315	total: 193ms	remaining: 352ms
106:	learn: 32.4571112	total: 195ms	remaining: 351ms
107:	learn: 32.3269402	total: 196ms	remaining: 349ms
108:	learn: 32.2288586	total: 198ms	remaining: 347ms
109:	learn: 32.1571508	total: 199ms	remaining: 344ms
110:	learn: 32.0766496	total: 201ms	remaining: 342ms
111:	learn: 31.9903935	total: 202ms	remaining: 340ms
112:	learn: 31.8753674	total: 204ms	remaining: 338ms
113:	learn: 31.8176490	total: 206ms	remaining: 335ms
114:	learn: 31.7767050	total: 207ms	remaining: 333ms
115:	learn: 31.7096490	total: 209ms	remaining: 331ms
116:	learn: 31.6663461	total: 210ms	remaining: 329ms
117:	learn: 31.5639770	total: 212ms	remaining: 327ms
118:	learn: 31.4767882	total: 213ms	remaining: 325ms
119:	learn: 31.3918674	total: 215ms	remaining: 323ms
120:	learn: 31.2954750	total: 217ms	remaining: 321ms
121:	learn: 31.1972758	total: 219ms	remaining: 319ms
122:	learn: 31.1360054	total: 220ms	remaining: 317ms
123:	learn: 31.0300335	total: 222ms	remaining: 315ms
124:	learn: 30.9371132	total: 223ms	remaining: 313ms
125:	learn: 30.8480290	total: 225ms	remaining: 310ms
126:	learn: 30.7508430	total: 226ms	remaining: 308ms
127:	learn: 30.6793448	total: 228ms	remaining: 306ms
128:	learn: 30.5833215	total: 229ms	remaining: 304ms
129:	learn: 30.5255399	total: 231ms	remaining: 302ms
130:	learn: 30.4856440	total: 232ms	remaining: 299ms
131:	learn: 30.3988276	total: 234ms	remaining: 298ms
132:	learn: 30.3294137	total: 235ms	remaining: 296ms
133:	learn: 30.2800707	total: 237ms	remaining: 294ms
134:	learn: 30.1892274	total: 239ms	remaining: 292ms
135:	learn: 30.1090992	total: 241ms	remaining: 290ms
136:	learn: 30.0509080	total: 242ms	remaining: 288ms
137:	learn: 29.9992386	total: 244ms	remaining: 286ms
138:	learn: 29.9180981	total: 246ms	remaining: 285ms
139:	learn: 29.8408530	total: 247ms	remaining: 283ms
140:	learn: 29.7326167	total: 249ms	remaining: 281ms
141:	learn: 29.6573760	total: 251ms	remaining: 279ms
142:	learn: 29.5769389	total: 252ms	remaining: 277ms
143:	learn: 29.4949512	total: 254ms	remaining: 275ms
144:	learn: 29.4248723	total: 256ms	remaining: 273ms
145:	learn: 29.3341891	total: 257ms	remaining: 271ms
146:	learn: 29.2871540	total: 259ms	remaining: 270ms
147:	learn: 29.2348806	total: 261ms	remaining: 268ms
148:	learn: 29.1509615	total: 262ms	remaining: 266ms
149:	learn: 29.0675930	total: 264ms	remaining: 264ms
150:	learn: 29.0164644	total: 266ms	remaining: 262ms
151:	learn: 28.9150243	total: 268ms	remaining: 261ms
152:	learn: 28.8672053	total: 269ms	remaining: 259ms
153:	learn: 28.8404951	total: 271ms	remaining: 257ms
154:	learn: 28.7752307	total: 273ms	remaining: 255ms
155:	learn: 28.7226319	total: 275ms	remaining: 253ms
156:	learn: 28.6517830	total: 276ms	remaining: 252ms
157:	learn: 28.5677591	total: 278ms	remaining: 250ms
158:	learn: 28.4932613	total: 280ms	remaining: 248ms
159:	learn: 28.4384719	total: 281ms	remaining: 246ms
160:	learn: 28.3480603	total: 283ms	remaining: 245ms
161:	learn: 28.3000850	total: 285ms	remaining: 243ms
162:	learn: 28.2345070	total: 287ms	remaining: 241ms
163:	learn: 28.1786898	total: 289ms	remaining: 240ms
164:	learn: 28.1088064	total: 291ms	remaining: 238ms
165:	learn: 28.0701051	total: 292ms	remaining: 236ms
166:	learn: 28.0307579	total: 294ms	remaining: 234ms
167:	learn: 27.9568140	total: 296ms	remaining: 233ms
168:	learn: 27.8972533	total: 298ms	remaining: 231ms
169:	learn: 27.8200944	total: 299ms	remaining: 229ms
170:	learn: 27.7746116	total: 301ms	remaining: 227ms
171:	learn: 27.7253273	total: 303ms	remaining: 226ms
172:	learn: 27.6652268	total: 305ms	remaining: 224ms
173:	learn: 27.6191244	total: 309ms	remaining: 224ms
174:	learn: 27.5491649	total: 312ms	remaining: 223ms
175:	learn: 27.4780653	total: 315ms	remaining: 222ms
176:	learn: 27.4129039	total: 318ms	remaining: 221ms
177:	learn: 27.3561383	total: 321ms	remaining: 220ms
178:	learn: 27.2907413	total: 324ms	remaining: 219ms
179:	learn: 27.2598005	total: 326ms	remaining: 217ms
180:	learn: 27.2235040	total: 328ms	remaining: 216ms
181:	learn: 27.1943272	total: 330ms	remaining: 214ms
182:	learn: 27.1504830	total: 332ms	remaining: 212ms
183:	learn: 27.0840381	total: 334ms	remaining: 211ms
184:	learn: 27.0371971	total: 336ms	remaining: 209ms
185:	learn: 27.0179799	total: 338ms	remaining: 207ms
186:	learn: 26.9599919	total: 339ms	remaining: 205ms
187:	learn: 26.8973471	total: 341ms	remaining: 203ms
188:	learn: 26.8449616	total: 343ms	remaining: 201ms
189:	learn: 26.7845071	total: 345ms	remaining: 199ms
190:	learn: 26.7203548	total: 346ms	remaining: 198ms
191:	learn: 26.6511027	total: 348ms	remaining: 196ms
192:	learn: 26.5949009	total: 349ms	remaining: 194ms
193:	learn: 26.5625717	total: 351ms	remaining: 192ms
194:	learn: 26.5067703	total: 352ms	remaining: 190ms
195:	learn: 26.4736197	total: 370ms	remaining: 196ms
196:	learn: 26.4534002	total: 372ms	remaining: 194ms
197:	learn: 26.4334079	total: 373ms	remaining: 192ms
198:	learn: 26.4084564	total: 375ms	remaining: 190ms
199:	learn: 26.3497040	total: 376ms	remaining: 188ms
200:	learn: 26.2996231	total: 378ms	remaining: 186ms
201:	learn: 26.2555122	total: 379ms	remaining: 184ms
202:	learn: 26.2397561	total: 381ms	remaining: 182ms
203:	learn: 26.1713716	total: 382ms	remaining: 180ms
204:	learn: 26.1429879	total: 384ms	remaining: 178ms
205:	learn: 26.0866840	total: 386ms	remaining: 176ms
206:	learn: 26.0208947	total: 387ms	remaining: 174ms
207:	learn: 25.9493634	total: 389ms	remaining: 172ms
208:	learn: 25.9045311	total: 390ms	remaining: 170ms
209:	learn: 25.8673891	total: 392ms	remaining: 168ms
210:	learn: 25.8311149	total: 393ms	remaining: 166ms
211:	learn: 25.7715341	total: 395ms	remaining: 164ms
212:	learn: 25.7102273	total: 396ms	remaining: 162ms
213:	learn: 25.6918717	total: 398ms	remaining: 160ms
214:	learn: 25.6813536	total: 399ms	remaining: 158ms
215:	learn: 25.6237177	total: 401ms	remaining: 156ms
216:	learn: 25.5854713	total: 402ms	remaining: 154ms
217:	learn: 25.5711646	total: 404ms	remaining: 152ms
218:	learn: 25.5166575	total: 405ms	remaining: 150ms
219:	learn: 25.4912020	total: 407ms	remaining: 148ms
220:	learn: 25.4256875	total: 409ms	remaining: 146ms
221:	learn: 25.3726607	total: 410ms	remaining: 144ms
222:	learn: 25.3409851	total: 412ms	remaining: 142ms
223:	learn: 25.3174326	total: 413ms	remaining: 140ms
224:	learn: 25.2617252	total: 415ms	remaining: 138ms
225:	learn: 25.2050958	total: 416ms	remaining: 136ms
226:	learn: 25.1591741	total: 418ms	remaining: 134ms
227:	learn: 25.1353113	total: 419ms	remaining: 132ms
228:	learn: 25.0935675	total: 421ms	remaining: 130ms
229:	learn: 25.0465126	total: 423ms	remaining: 129ms
230:	learn: 25.0303382	total: 424ms	remaining: 127ms
231:	learn: 24.9950003	total: 426ms	remaining: 125ms
232:	learn: 24.9496095	total: 428ms	remaining: 123ms
233:	learn: 24.9187586	total: 429ms	remaining: 121ms
234:	learn: 24.8901319	total: 431ms	remaining: 119ms
235:	learn: 24.8350164	total: 432ms	remaining: 117ms
236:	learn: 24.7820911	total: 434ms	remaining: 115ms
237:	learn: 24.7378296	total: 435ms	remaining: 113ms
238:	learn: 24.7138758	total: 437ms	remaining: 111ms
239:	learn: 24.6742585	total: 438ms	remaining: 110ms
240:	learn: 24.6375632	total: 440ms	remaining: 108ms
241:	learn: 24.6088841	total: 442ms	remaining: 106ms
242:	learn: 24.5714539	total: 443ms	remaining: 104ms
243:	learn: 24.5378431	total: 445ms	remaining: 102ms
244:	learn: 24.5033285	total: 446ms	remaining: 100ms
245:	learn: 24.4702532	total: 448ms	remaining: 98.3ms
246:	learn: 24.4509326	total: 449ms	remaining: 96.3ms
247:	learn: 24.4015937	total: 451ms	remaining: 94.5ms
248:	learn: 24.3595442	total: 452ms	remaining: 92.6ms
249:	learn: 24.3281774	total: 453ms	remaining: 90.7ms
250:	learn: 24.2858626	total: 455ms	remaining: 88.8ms
251:	learn: 24.2695332	total: 456ms	remaining: 86.9ms
252:	learn: 24.2401624	total: 458ms	remaining: 85.1ms
253:	learn: 24.2106176	total: 460ms	remaining: 83.3ms
254:	learn: 24.1662138	total: 461ms	remaining: 81.4ms
255:	learn: 24.1430783	total: 463ms	remaining: 79.5ms
256:	learn: 24.0953232	total: 464ms	remaining: 77.7ms
257:	learn: 24.0705680	total: 466ms	remaining: 75.8ms
258:	learn: 24.0434932	total: 467ms	remaining: 74ms
259:	learn: 24.0176433	total: 469ms	remaining: 72.1ms
260:	learn: 23.9759095	total: 470ms	remaining: 70.3ms
261:	learn: 23.9381799	total: 472ms	remaining: 68.5ms
262:	learn: 23.9235365	total: 474ms	remaining: 66.7ms
263:	learn: 23.8844621	total: 476ms	remaining: 64.9ms
264:	learn: 23.8603987	total: 477ms	remaining: 63.1ms
265:	learn: 23.8166097	total: 479ms	remaining: 61.2ms
266:	learn: 23.7770992	total: 481ms	remaining: 59.4ms
267:	learn: 23.7654011	total: 483ms	remaining: 57.6ms
268:	learn: 23.7333508	total: 484ms	remaining: 55.8ms
269:	learn: 23.7016358	total: 486ms	remaining: 54ms
270:	learn: 23.6837836	total: 487ms	remaining: 52.1ms
271:	learn: 23.6416624	total: 489ms	remaining: 50.3ms
272:	learn: 23.6316011	total: 491ms	remaining: 48.5ms
273:	learn: 23.5867365	total: 492ms	remaining: 46.7ms
274:	learn: 23.5453186	total: 494ms	remaining: 44.9ms
275:	learn: 23.5290432	total: 496ms	remaining: 43.1ms
276:	learn: 23.5158187	total: 499ms	remaining: 41.4ms
277:	learn: 23.5028991	total: 502ms	remaining: 39.7ms
278:	learn: 23.4768906	total: 504ms	remaining: 38ms
279:	learn: 23.4279327	total: 507ms	remaining: 36.2ms
280:	learn: 23.4100451	total: 510ms	remaining: 34.5ms
281:	learn: 23.3907012	total: 514ms	remaining: 32.8ms
282:	learn: 23.3721655	total: 517ms	remaining: 31ms
283:	learn: 23.3511459	total: 519ms	remaining: 29.2ms
284:	learn: 23.3064907	total: 521ms	remaining: 27.4ms
285:	learn: 23.2715905	total: 523ms	remaining: 25.6ms
286:	learn: 23.2437183	total: 525ms	remaining: 23.8ms
287:	learn: 23.1997142	total: 527ms	remaining: 21.9ms
288:	learn: 23.1664790	total: 529ms	remaining: 20.1ms
289:	learn: 23.1469596	total: 530ms	remaining: 18.3ms
290:	learn: 23.1291022	total: 532ms	remaining: 16.5ms
291:	learn: 23.0995427	total: 534ms	remaining: 14.6ms
292:	learn: 23.0888220	total: 536ms	remaining: 12.8ms
293:	learn: 23.0538282	total: 538ms	remaining: 11ms
294:	learn: 23.0196716	total: 540ms	remaining: 9.15ms
295:	learn: 23.0063685	total: 542ms	remaining: 7.32ms
296:	learn: 22.9803606	total: 544ms	remaining: 5.49ms
297:	learn: 22.9653025	total: 545ms	remaining: 3.66ms
298:	learn: 22.9232567	total: 547ms	remaining: 1.83ms
299:	learn: 22.9004962	total: 549ms	remaining: 0us
0:	learn: 47.4640855	total: 1.94ms	remaining: 579ms
1:	learn: 47.2372949	total: 3.53ms	remaining: 526ms
2:	learn: 47.0264843	total: 5.03ms	remaining: 498ms
3:	learn: 46.8135153	total: 6.53ms	remaining: 483ms
4:	learn: 46.6317820	total: 8.06ms	remaining: 476ms
5:	learn: 46.3572751	total: 9.54ms	remaining: 467ms
6:	learn: 46.1572824	total: 11ms	remaining: 460ms
7:	learn: 46.0120286	total: 12.5ms	remaining: 455ms
8:	learn: 45.8093270	total: 14ms	remaining: 452ms
9:	learn: 45.5960912	total: 15.4ms	remaining: 447ms
10:	learn: 45.4316293	total: 17ms	remaining: 446ms
11:	learn: 45.2183881	total: 18.6ms	remaining: 447ms
12:	learn: 45.0054884	total: 20.2ms	remaining: 446ms
13:	learn: 44.8595906	total: 21.7ms	remaining: 444ms
14:	learn: 44.7253841	total: 23.3ms	remaining: 442ms
15:	learn: 44.5587768	total: 24.9ms	remaining: 441ms
16:	learn: 44.3544794	total: 26.3ms	remaining: 438ms
17:	learn: 44.1521779	total: 27.8ms	remaining: 436ms
18:	learn: 44.0118782	total: 29.3ms	remaining: 434ms
19:	learn: 43.8789264	total: 30.9ms	remaining: 432ms
20:	learn: 43.6933441	total: 32.6ms	remaining: 433ms
21:	learn: 43.5014553	total: 34.2ms	remaining: 432ms
22:	learn: 43.3058600	total: 35.9ms	remaining: 432ms
23:	learn: 43.1833173	total: 37.8ms	remaining: 434ms
24:	learn: 42.9830626	total: 39.5ms	remaining: 434ms
25:	learn: 42.7848284	total: 41.3ms	remaining: 435ms
26:	learn: 42.5965463	total: 42.8ms	remaining: 433ms
27:	learn: 42.4170516	total: 44.3ms	remaining: 431ms
28:	learn: 42.2127486	total: 45.8ms	remaining: 428ms
29:	learn: 42.1092713	total: 47.3ms	remaining: 426ms
30:	learn: 41.9533268	total: 48.9ms	remaining: 424ms
31:	learn: 41.7900416	total: 50.3ms	remaining: 421ms
32:	learn: 41.6108677	total: 51.9ms	remaining: 420ms
33:	learn: 41.4432496	total: 53.6ms	remaining: 419ms
34:	learn: 41.2836874	total: 55.2ms	remaining: 418ms
35:	learn: 41.1636227	total: 56.7ms	remaining: 416ms
36:	learn: 41.0598070	total: 58.2ms	remaining: 414ms
37:	learn: 40.8758105	total: 60.2ms	remaining: 415ms
38:	learn: 40.7684582	total: 62ms	remaining: 415ms
39:	learn: 40.6048982	total: 63.5ms	remaining: 412ms
40:	learn: 40.4807609	total: 64.9ms	remaining: 410ms
41:	learn: 40.3034545	total: 66.5ms	remaining: 408ms
42:	learn: 40.1883269	total: 68.1ms	remaining: 407ms
43:	learn: 40.0227190	total: 69.7ms	remaining: 406ms
44:	learn: 39.8640453	total: 71.5ms	remaining: 405ms
45:	learn: 39.7683448	total: 73.2ms	remaining: 404ms
46:	learn: 39.6687486	total: 75.3ms	remaining: 405ms
47:	learn: 39.5097114	total: 77.2ms	remaining: 405ms
48:	learn: 39.3765611	total: 79ms	remaining: 405ms
49:	learn: 39.2164327	total: 80.8ms	remaining: 404ms
50:	learn: 39.0802204	total: 82.4ms	remaining: 402ms
51:	learn: 38.9387501	total: 84.2ms	remaining: 402ms
52:	learn: 38.8119119	total: 86ms	remaining: 401ms
53:	learn: 38.7229519	total: 88.1ms	remaining: 401ms
54:	learn: 38.6094271	total: 90.1ms	remaining: 402ms
55:	learn: 38.4600152	total: 91.9ms	remaining: 400ms
56:	learn: 38.3219917	total: 93.7ms	remaining: 399ms
57:	learn: 38.2363464	total: 95.6ms	remaining: 399ms
58:	learn: 38.1300609	total: 97.8ms	remaining: 400ms
59:	learn: 38.0159819	total: 102ms	remaining: 408ms
60:	learn: 37.8997784	total: 106ms	remaining: 416ms
61:	learn: 37.7860568	total: 109ms	remaining: 418ms
62:	learn: 37.6554369	total: 111ms	remaining: 419ms
63:	learn: 37.5667027	total: 114ms	remaining: 420ms
64:	learn: 37.3885326	total: 116ms	remaining: 421ms
65:	learn: 37.2907433	total: 119ms	remaining: 421ms
66:	learn: 37.1637711	total: 121ms	remaining: 420ms
67:	learn: 37.0112134	total: 123ms	remaining: 419ms
68:	learn: 36.8925079	total: 125ms	remaining: 418ms
69:	learn: 36.7656324	total: 127ms	remaining: 417ms
70:	learn: 36.6395623	total: 129ms	remaining: 415ms
71:	learn: 36.5239608	total: 130ms	remaining: 412ms
72:	learn: 36.3869381	total: 132ms	remaining: 410ms
73:	learn: 36.2910675	total: 133ms	remaining: 407ms
74:	learn: 36.1753657	total: 135ms	remaining: 404ms
75:	learn: 36.0647243	total: 136ms	remaining: 402ms
76:	learn: 35.9491781	total: 138ms	remaining: 399ms
77:	learn: 35.7988942	total: 139ms	remaining: 397ms
78:	learn: 35.6792166	total: 141ms	remaining: 395ms
79:	learn: 35.5600852	total: 143ms	remaining: 393ms
80:	learn: 35.4671852	total: 145ms	remaining: 391ms
81:	learn: 35.3546572	total: 146ms	remaining: 389ms
82:	learn: 35.2613116	total: 148ms	remaining: 387ms
83:	learn: 35.1775264	total: 149ms	remaining: 384ms
84:	learn: 35.0713114	total: 151ms	remaining: 382ms
85:	learn: 34.9579055	total: 153ms	remaining: 380ms
86:	learn: 34.8660515	total: 154ms	remaining: 377ms
87:	learn: 34.7584181	total: 156ms	remaining: 375ms
88:	learn: 34.6569282	total: 157ms	remaining: 373ms
89:	learn: 34.5744370	total: 159ms	remaining: 371ms
90:	learn: 34.5022419	total: 160ms	remaining: 368ms
91:	learn: 34.3890917	total: 162ms	remaining: 366ms
92:	learn: 34.2947723	total: 163ms	remaining: 363ms
93:	learn: 34.1834350	total: 165ms	remaining: 361ms
94:	learn: 34.0601393	total: 166ms	remaining: 359ms
95:	learn: 33.9635646	total: 168ms	remaining: 357ms
96:	learn: 33.8413775	total: 169ms	remaining: 355ms
97:	learn: 33.7572233	total: 171ms	remaining: 352ms
98:	learn: 33.6720942	total: 173ms	remaining: 350ms
99:	learn: 33.5933570	total: 174ms	remaining: 348ms
100:	learn: 33.4788722	total: 176ms	remaining: 346ms
101:	learn: 33.3853702	total: 177ms	remaining: 344ms
102:	learn: 33.2919841	total: 179ms	remaining: 342ms
103:	learn: 33.1932527	total: 180ms	remaining: 340ms
104:	learn: 33.1207319	total: 182ms	remaining: 338ms
105:	learn: 33.0358467	total: 183ms	remaining: 336ms
106:	learn: 32.9225923	total: 185ms	remaining: 334ms
107:	learn: 32.8269209	total: 186ms	remaining: 331ms
108:	learn: 32.7452765	total: 188ms	remaining: 329ms
109:	learn: 32.6900054	total: 190ms	remaining: 328ms
110:	learn: 32.5987873	total: 191ms	remaining: 326ms
111:	learn: 32.4982255	total: 193ms	remaining: 324ms
112:	learn: 32.3849450	total: 194ms	remaining: 322ms
113:	learn: 32.3323530	total: 196ms	remaining: 320ms
114:	learn: 32.2879411	total: 197ms	remaining: 318ms
115:	learn: 32.2224126	total: 199ms	remaining: 316ms
116:	learn: 32.1388790	total: 200ms	remaining: 314ms
117:	learn: 32.0307289	total: 202ms	remaining: 312ms
118:	learn: 31.9528912	total: 204ms	remaining: 310ms
119:	learn: 31.8664620	total: 205ms	remaining: 308ms
120:	learn: 31.7534820	total: 207ms	remaining: 306ms
121:	learn: 31.6451109	total: 208ms	remaining: 304ms
122:	learn: 31.5724759	total: 210ms	remaining: 302ms
123:	learn: 31.4693495	total: 212ms	remaining: 300ms
124:	learn: 31.3926057	total: 213ms	remaining: 298ms
125:	learn: 31.2865281	total: 215ms	remaining: 297ms
126:	learn: 31.1900353	total: 216ms	remaining: 295ms
127:	learn: 31.1292367	total: 218ms	remaining: 293ms
128:	learn: 31.0473392	total: 220ms	remaining: 291ms
129:	learn: 30.9809275	total: 221ms	remaining: 289ms
130:	learn: 30.9374245	total: 223ms	remaining: 288ms
131:	learn: 30.9082436	total: 225ms	remaining: 286ms
132:	learn: 30.8335652	total: 226ms	remaining: 284ms
133:	learn: 30.7840626	total: 228ms	remaining: 282ms
134:	learn: 30.6909351	total: 229ms	remaining: 280ms
135:	learn: 30.6127524	total: 231ms	remaining: 279ms
136:	learn: 30.5599495	total: 233ms	remaining: 277ms
137:	learn: 30.5109248	total: 234ms	remaining: 275ms
138:	learn: 30.4355690	total: 236ms	remaining: 273ms
139:	learn: 30.3768646	total: 237ms	remaining: 271ms
140:	learn: 30.2830882	total: 239ms	remaining: 270ms
141:	learn: 30.1938021	total: 241ms	remaining: 268ms
142:	learn: 30.1598360	total: 243ms	remaining: 266ms
143:	learn: 30.0660913	total: 244ms	remaining: 265ms
144:	learn: 30.0270593	total: 246ms	remaining: 263ms
145:	learn: 29.9563886	total: 248ms	remaining: 262ms
146:	learn: 29.8925520	total: 250ms	remaining: 260ms
147:	learn: 29.8519438	total: 251ms	remaining: 258ms
148:	learn: 29.8056179	total: 253ms	remaining: 256ms
149:	learn: 29.7176556	total: 255ms	remaining: 255ms
150:	learn: 29.6633564	total: 256ms	remaining: 253ms
151:	learn: 29.5992993	total: 258ms	remaining: 251ms
152:	learn: 29.5331374	total: 260ms	remaining: 250ms
153:	learn: 29.4890521	total: 262ms	remaining: 248ms
154:	learn: 29.4404476	total: 263ms	remaining: 246ms
155:	learn: 29.4123948	total: 265ms	remaining: 245ms
156:	learn: 29.3328123	total: 267ms	remaining: 243ms
157:	learn: 29.2440006	total: 269ms	remaining: 241ms
158:	learn: 29.1719767	total: 271ms	remaining: 240ms
159:	learn: 29.1130881	total: 272ms	remaining: 238ms
160:	learn: 29.0195429	total: 274ms	remaining: 237ms
161:	learn: 28.9668936	total: 276ms	remaining: 235ms
162:	learn: 28.9321758	total: 278ms	remaining: 234ms
163:	learn: 28.8689171	total: 280ms	remaining: 232ms
164:	learn: 28.8156839	total: 282ms	remaining: 230ms
165:	learn: 28.7466025	total: 283ms	remaining: 229ms
166:	learn: 28.7075251	total: 285ms	remaining: 227ms
167:	learn: 28.6536936	total: 287ms	remaining: 225ms
168:	learn: 28.5823868	total: 288ms	remaining: 224ms
169:	learn: 28.4995513	total: 290ms	remaining: 222ms
170:	learn: 28.4720173	total: 292ms	remaining: 220ms
171:	learn: 28.4289554	total: 294ms	remaining: 219ms
172:	learn: 28.3939131	total: 297ms	remaining: 218ms
173:	learn: 28.3451922	total: 300ms	remaining: 217ms
174:	learn: 28.2985374	total: 302ms	remaining: 216ms
175:	learn: 28.2250486	total: 305ms	remaining: 215ms
176:	learn: 28.1553412	total: 308ms	remaining: 214ms
177:	learn: 28.1003511	total: 311ms	remaining: 213ms
178:	learn: 28.0713108	total: 314ms	remaining: 212ms
179:	learn: 28.0351056	total: 317ms	remaining: 211ms
180:	learn: 27.9964581	total: 319ms	remaining: 209ms
181:	learn: 27.9354637	total: 322ms	remaining: 209ms
182:	learn: 27.8899165	total: 324ms	remaining: 207ms
183:	learn: 27.8205051	total: 326ms	remaining: 206ms
184:	learn: 27.7392284	total: 328ms	remaining: 204ms
185:	learn: 27.6816691	total: 331ms	remaining: 203ms
186:	learn: 27.6222153	total: 332ms	remaining: 201ms
187:	learn: 27.5532571	total: 334ms	remaining: 199ms
188:	learn: 27.5073757	total: 336ms	remaining: 198ms
189:	learn: 27.4464505	total: 338ms	remaining: 196ms
190:	learn: 27.3830757	total: 340ms	remaining: 194ms
191:	learn: 27.3368197	total: 342ms	remaining: 193ms
192:	learn: 27.3177591	total: 344ms	remaining: 191ms
193:	learn: 27.2934730	total: 346ms	remaining: 189ms
194:	learn: 27.2384691	total: 348ms	remaining: 188ms
195:	learn: 27.1926226	total: 350ms	remaining: 186ms
196:	learn: 27.1253756	total: 353ms	remaining: 184ms
197:	learn: 27.0843018	total: 355ms	remaining: 183ms
198:	learn: 27.0654471	total: 357ms	remaining: 181ms
199:	learn: 27.0155478	total: 359ms	remaining: 179ms
200:	learn: 26.9648750	total: 361ms	remaining: 178ms
201:	learn: 26.9059197	total: 363ms	remaining: 176ms
202:	learn: 26.8700639	total: 365ms	remaining: 174ms
203:	learn: 26.8126330	total: 366ms	remaining: 172ms
204:	learn: 26.7995398	total: 368ms	remaining: 171ms
205:	learn: 26.7435972	total: 370ms	remaining: 169ms
206:	learn: 26.6826011	total: 371ms	remaining: 167ms
207:	learn: 26.6087640	total: 373ms	remaining: 165ms
208:	learn: 26.5615803	total: 375ms	remaining: 163ms
209:	learn: 26.5214100	total: 378ms	remaining: 162ms
210:	learn: 26.4833031	total: 380ms	remaining: 160ms
211:	learn: 26.4222421	total: 382ms	remaining: 158ms
212:	learn: 26.3826930	total: 384ms	remaining: 157ms
213:	learn: 26.3436552	total: 385ms	remaining: 155ms
214:	learn: 26.2852755	total: 387ms	remaining: 153ms
215:	learn: 26.2306290	total: 389ms	remaining: 151ms
216:	learn: 26.2028363	total: 390ms	remaining: 149ms
217:	learn: 26.1690602	total: 392ms	remaining: 147ms
218:	learn: 26.1132008	total: 394ms	remaining: 146ms
219:	learn: 26.0853975	total: 395ms	remaining: 144ms
220:	learn: 26.0409290	total: 397ms	remaining: 142ms
221:	learn: 26.0131690	total: 398ms	remaining: 140ms
222:	learn: 25.9751504	total: 400ms	remaining: 138ms
223:	learn: 25.9558085	total: 402ms	remaining: 136ms
224:	learn: 25.8896180	total: 403ms	remaining: 134ms
225:	learn: 25.8502441	total: 405ms	remaining: 132ms
226:	learn: 25.7879984	total: 406ms	remaining: 131ms
227:	learn: 25.7520775	total: 408ms	remaining: 129ms
228:	learn: 25.6976986	total: 409ms	remaining: 127ms
229:	learn: 25.6562862	total: 411ms	remaining: 125ms
230:	learn: 25.6363727	total: 412ms	remaining: 123ms
231:	learn: 25.5830111	total: 414ms	remaining: 121ms
232:	learn: 25.5399471	total: 415ms	remaining: 119ms
233:	learn: 25.5212560	total: 417ms	remaining: 118ms
234:	learn: 25.4889089	total: 418ms	remaining: 116ms
235:	learn: 25.4349196	total: 420ms	remaining: 114ms
236:	learn: 25.3817609	total: 422ms	remaining: 112ms
237:	learn: 25.3410524	total: 423ms	remaining: 110ms
238:	learn: 25.3254923	total: 425ms	remaining: 108ms
239:	learn: 25.2786352	total: 426ms	remaining: 107ms
240:	learn: 25.2665472	total: 428ms	remaining: 105ms
241:	learn: 25.2446737	total: 429ms	remaining: 103ms
242:	learn: 25.2071036	total: 431ms	remaining: 101ms
243:	learn: 25.1799808	total: 432ms	remaining: 99.2ms
244:	learn: 25.1648801	total: 434ms	remaining: 97.4ms
245:	learn: 25.1484949	total: 435ms	remaining: 95.6ms
246:	learn: 25.1142792	total: 437ms	remaining: 93.7ms
247:	learn: 25.0902615	total: 438ms	remaining: 91.9ms
248:	learn: 25.0508025	total: 440ms	remaining: 90.1ms
249:	learn: 25.0216054	total: 441ms	remaining: 88.3ms
250:	learn: 24.9664227	total: 443ms	remaining: 86.5ms
251:	learn: 24.9214821	total: 444ms	remaining: 84.7ms
252:	learn: 24.8893852	total: 446ms	remaining: 82.8ms
253:	learn: 24.8711977	total: 447ms	remaining: 81ms
254:	learn: 24.8509705	total: 449ms	remaining: 79.2ms
255:	learn: 24.8219172	total: 451ms	remaining: 77.5ms
256:	learn: 24.7835577	total: 452ms	remaining: 75.7ms
257:	learn: 24.7314363	total: 454ms	remaining: 73.9ms
258:	learn: 24.7101644	total: 456ms	remaining: 72.2ms
259:	learn: 24.6756828	total: 458ms	remaining: 70.4ms
260:	learn: 24.6472605	total: 459ms	remaining: 68.6ms
261:	learn: 24.6315306	total: 461ms	remaining: 66.8ms
262:	learn: 24.6126966	total: 462ms	remaining: 65.1ms
263:	learn: 24.5675005	total: 464ms	remaining: 63.3ms
264:	learn: 24.5461601	total: 466ms	remaining: 61.5ms
265:	learn: 24.5111067	total: 468ms	remaining: 59.8ms
266:	learn: 24.4661061	total: 469ms	remaining: 58ms
267:	learn: 24.4360594	total: 471ms	remaining: 56.2ms
268:	learn: 24.4148542	total: 472ms	remaining: 54.4ms
269:	learn: 24.3938325	total: 474ms	remaining: 52.7ms
270:	learn: 24.3756913	total: 476ms	remaining: 50.9ms
271:	learn: 24.3329501	total: 477ms	remaining: 49.1ms
272:	learn: 24.3071652	total: 479ms	remaining: 47.4ms
273:	learn: 24.2599942	total: 481ms	remaining: 45.6ms
274:	learn: 24.2351201	total: 483ms	remaining: 43.9ms
275:	learn: 24.1992041	total: 484ms	remaining: 42.1ms
276:	learn: 24.1664867	total: 486ms	remaining: 40.3ms
277:	learn: 24.1290041	total: 488ms	remaining: 38.6ms
278:	learn: 24.1005350	total: 490ms	remaining: 36.9ms
279:	learn: 24.0717307	total: 493ms	remaining: 35.2ms
280:	learn: 24.0418237	total: 496ms	remaining: 33.6ms
281:	learn: 24.0270311	total: 499ms	remaining: 31.9ms
282:	learn: 24.0001441	total: 502ms	remaining: 30.1ms
283:	learn: 23.9702034	total: 504ms	remaining: 28.4ms
284:	learn: 23.9408485	total: 507ms	remaining: 26.7ms
285:	learn: 23.9096981	total: 509ms	remaining: 24.9ms
286:	learn: 23.8872005	total: 512ms	remaining: 23.2ms
287:	learn: 23.8605277	total: 514ms	remaining: 21.4ms
288:	learn: 23.8420106	total: 515ms	remaining: 19.6ms
289:	learn: 23.7941350	total: 518ms	remaining: 17.8ms
290:	learn: 23.7672236	total: 519ms	remaining: 16.1ms
291:	learn: 23.7342798	total: 521ms	remaining: 14.3ms
292:	learn: 23.7216623	total: 523ms	remaining: 12.5ms
293:	learn: 23.6933141	total: 524ms	remaining: 10.7ms
294:	learn: 23.6699354	total: 526ms	remaining: 8.91ms
295:	learn: 23.6446399	total: 527ms	remaining: 7.13ms
296:	learn: 23.6105635	total: 529ms	remaining: 5.34ms
297:	learn: 23.5770007	total: 531ms	remaining: 3.56ms
298:	learn: 23.5375414	total: 532ms	remaining: 1.78ms
299:	learn: 23.5155928	total: 534ms	remaining: 0us
0:	learn: 27.5396669	total: 1.39ms	remaining: 138ms
1:	learn: 27.0711196	total: 2.5ms	remaining: 123ms
2:	learn: 26.7462899	total: 3.65ms	remaining: 118ms
3:	learn: 26.3889740	total: 4.74ms	remaining: 114ms
4:	learn: 26.0454949	total: 6.01ms	remaining: 114ms
5:	learn: 25.6379887	total: 7.3ms	remaining: 114ms
6:	learn: 25.3078228	total: 8.44ms	remaining: 112ms
7:	learn: 25.0053100	total: 9.63ms	remaining: 111ms
8:	learn: 24.7065110	total: 10.8ms	remaining: 109ms
9:	learn: 24.4255226	total: 11.9ms	remaining: 107ms
10:	learn: 24.0933348	total: 13.2ms	remaining: 106ms
11:	learn: 23.8483245	total: 14.4ms	remaining: 105ms
12:	learn: 23.6206636	total: 15.7ms	remaining: 105ms
13:	learn: 23.2922409	total: 16.9ms	remaining: 104ms
14:	learn: 23.0921688	total: 18.2ms	remaining: 103ms
15:	learn: 22.8859744	total: 19.6ms	remaining: 103ms
16:	learn: 22.6507414	total: 20.9ms	remaining: 102ms
17:	learn: 22.4275526	total: 22.2ms	remaining: 101ms
18:	learn: 22.2482577	total: 23.6ms	remaining: 101ms
19:	learn: 22.0728028	total: 25ms	remaining: 99.9ms
20:	learn: 21.8632088	total: 26.6ms	remaining: 100ms
21:	learn: 21.7136685	total: 27.9ms	remaining: 98.9ms
22:	learn: 21.4990130	total: 29.3ms	remaining: 98.2ms
23:	learn: 21.2603930	total: 30.5ms	remaining: 96.7ms
24:	learn: 21.0156291	total: 31.7ms	remaining: 95.1ms
25:	learn: 20.8324243	total: 33ms	remaining: 94ms
26:	learn: 20.6486014	total: 34.4ms	remaining: 93.1ms
27:	learn: 20.4653098	total: 35.7ms	remaining: 91.7ms
28:	learn: 20.2517031	total: 37ms	remaining: 90.5ms
29:	learn: 20.0901141	total: 38.3ms	remaining: 89.4ms
30:	learn: 19.9448720	total: 39.6ms	remaining: 88.2ms
31:	learn: 19.8092363	total: 41ms	remaining: 87.1ms
32:	learn: 19.6433245	total: 42.3ms	remaining: 85.9ms
33:	learn: 19.5094619	total: 43.5ms	remaining: 84.5ms
34:	learn: 19.3969342	total: 44.8ms	remaining: 83.2ms
35:	learn: 19.2936512	total: 46ms	remaining: 81.8ms
36:	learn: 19.1767015	total: 47.3ms	remaining: 80.5ms
37:	learn: 19.0124800	total: 48.7ms	remaining: 79.4ms
38:	learn: 18.8704042	total: 50.1ms	remaining: 78.3ms
39:	learn: 18.7979750	total: 51.4ms	remaining: 77.1ms
40:	learn: 18.6894469	total: 52.8ms	remaining: 76ms
41:	learn: 18.5339705	total: 54.2ms	remaining: 74.8ms
42:	learn: 18.4104127	total: 55.8ms	remaining: 73.9ms
43:	learn: 18.2671840	total: 57.3ms	remaining: 72.9ms
44:	learn: 18.1898954	total: 58.7ms	remaining: 71.8ms
45:	learn: 18.0778917	total: 60.1ms	remaining: 70.6ms
46:	learn: 17.9742755	total: 61.6ms	remaining: 69.4ms
47:	learn: 17.8715751	total: 62.9ms	remaining: 68.2ms
48:	learn: 17.7802309	total: 64.3ms	remaining: 66.9ms
49:	learn: 17.6538567	total: 65.6ms	remaining: 65.6ms
50:	learn: 17.5783755	total: 66.9ms	remaining: 64.3ms
51:	learn: 17.4828039	total: 68.3ms	remaining: 63ms
52:	learn: 17.4113566	total: 69.9ms	remaining: 62ms
53:	learn: 17.3288316	total: 71.5ms	remaining: 60.9ms
54:	learn: 17.2467366	total: 73ms	remaining: 59.7ms
55:	learn: 17.1835351	total: 74.3ms	remaining: 58.4ms
56:	learn: 17.1099250	total: 75.7ms	remaining: 57.1ms
57:	learn: 17.0125026	total: 77.3ms	remaining: 56ms
58:	learn: 16.9632634	total: 78.6ms	remaining: 54.6ms
59:	learn: 16.8418169	total: 79.9ms	remaining: 53.3ms
60:	learn: 16.8014640	total: 81.2ms	remaining: 51.9ms
61:	learn: 16.7378790	total: 82.5ms	remaining: 50.5ms
62:	learn: 16.6702723	total: 83.9ms	remaining: 49.3ms
63:	learn: 16.5860445	total: 85.4ms	remaining: 48ms
64:	learn: 16.5555219	total: 86.9ms	remaining: 46.8ms
65:	learn: 16.5017286	total: 88.5ms	remaining: 45.6ms
66:	learn: 16.4670034	total: 90.3ms	remaining: 44.5ms
67:	learn: 16.4166623	total: 91.8ms	remaining: 43.2ms
68:	learn: 16.3600109	total: 93.1ms	remaining: 41.8ms
69:	learn: 16.2612093	total: 94.3ms	remaining: 40.4ms
70:	learn: 16.2433137	total: 95.6ms	remaining: 39ms
71:	learn: 16.1910263	total: 96.9ms	remaining: 37.7ms
72:	learn: 16.1217878	total: 98.2ms	remaining: 36.3ms
73:	learn: 16.0458991	total: 99.5ms	remaining: 35ms
74:	learn: 15.9835877	total: 101ms	remaining: 33.6ms
75:	learn: 15.9357219	total: 102ms	remaining: 32.2ms
76:	learn: 15.8724556	total: 103ms	remaining: 30.9ms
77:	learn: 15.8140222	total: 105ms	remaining: 29.5ms
78:	learn: 15.7865227	total: 106ms	remaining: 28.2ms
79:	learn: 15.7244499	total: 108ms	remaining: 26.9ms
80:	learn: 15.6879106	total: 111ms	remaining: 26.1ms
81:	learn: 15.6296104	total: 113ms	remaining: 24.9ms
82:	learn: 15.5666712	total: 116ms	remaining: 23.7ms
83:	learn: 15.4904472	total: 118ms	remaining: 22.4ms
84:	learn: 15.4451518	total: 120ms	remaining: 21.2ms
85:	learn: 15.3831808	total: 123ms	remaining: 20ms
86:	learn: 15.3516180	total: 126ms	remaining: 18.8ms
87:	learn: 15.3347957	total: 128ms	remaining: 17.4ms
88:	learn: 15.2950036	total: 130ms	remaining: 16ms
89:	learn: 15.2713057	total: 131ms	remaining: 14.6ms
90:	learn: 15.2435112	total: 133ms	remaining: 13.1ms
91:	learn: 15.2016893	total: 135ms	remaining: 11.7ms
92:	learn: 15.1300259	total: 137ms	remaining: 10.3ms
93:	learn: 15.1100842	total: 138ms	remaining: 8.81ms
94:	learn: 15.0536701	total: 140ms	remaining: 7.35ms
95:	learn: 15.0164869	total: 141ms	remaining: 5.88ms
96:	learn: 14.9612179	total: 142ms	remaining: 4.41ms
97:	learn: 14.9125935	total: 144ms	remaining: 2.94ms
98:	learn: 14.8799048	total: 146ms	remaining: 1.47ms
99:	learn: 14.8420890	total: 147ms	remaining: 0us
0:	learn: 43.0053311	total: 2.05ms	remaining: 203ms
1:	learn: 42.0239625	total: 3.7ms	remaining: 181ms
2:	learn: 41.1030003	total: 5.42ms	remaining: 175ms
3:	learn: 40.3772208	total: 7.4ms	remaining: 178ms
4:	learn: 39.5285394	total: 9.21ms	remaining: 175ms
5:	learn: 38.8846904	total: 10.8ms	remaining: 169ms
6:	learn: 38.0874915	total: 12.2ms	remaining: 162ms
7:	learn: 37.2874302	total: 13.7ms	remaining: 158ms
8:	learn: 36.6773271	total: 15.2ms	remaining: 153ms
9:	learn: 35.8988723	total: 16.5ms	remaining: 148ms
10:	learn: 35.2421951	total: 17.8ms	remaining: 144ms
11:	learn: 34.6974421	total: 19.2ms	remaining: 141ms
12:	learn: 33.9803216	total: 20.5ms	remaining: 137ms
13:	learn: 33.2894316	total: 21.7ms	remaining: 133ms
14:	learn: 32.8509600	total: 23ms	remaining: 130ms
15:	learn: 32.2785817	total: 24.3ms	remaining: 127ms
16:	learn: 31.6455283	total: 25.6ms	remaining: 125ms
17:	learn: 31.1621398	total: 26.9ms	remaining: 123ms
18:	learn: 30.6948657	total: 28.2ms	remaining: 120ms
19:	learn: 30.2696759	total: 29.6ms	remaining: 119ms
20:	learn: 29.7990443	total: 31.1ms	remaining: 117ms
21:	learn: 29.3120464	total: 32.4ms	remaining: 115ms
22:	learn: 28.8520090	total: 33.7ms	remaining: 113ms
23:	learn: 28.4516277	total: 35ms	remaining: 111ms
24:	learn: 27.9805220	total: 36.3ms	remaining: 109ms
25:	learn: 27.5120013	total: 37.6ms	remaining: 107ms
26:	learn: 27.1140024	total: 38.9ms	remaining: 105ms
27:	learn: 26.8120668	total: 40.3ms	remaining: 104ms
28:	learn: 26.4659360	total: 41.6ms	remaining: 102ms
29:	learn: 26.1004005	total: 42.9ms	remaining: 100ms
30:	learn: 25.7313823	total: 44.2ms	remaining: 98.3ms
31:	learn: 25.4182130	total: 45.5ms	remaining: 96.6ms
32:	learn: 25.2047643	total: 46.8ms	remaining: 95ms
33:	learn: 24.9811895	total: 48.1ms	remaining: 93.3ms
34:	learn: 24.6834284	total: 49.2ms	remaining: 91.5ms
35:	learn: 24.3576937	total: 50.5ms	remaining: 89.8ms
36:	learn: 24.1026830	total: 51.7ms	remaining: 88.1ms
37:	learn: 23.8848222	total: 53ms	remaining: 86.5ms
38:	learn: 23.6646521	total: 54.5ms	remaining: 85.2ms
39:	learn: 23.4774417	total: 55.8ms	remaining: 83.7ms
40:	learn: 23.2957217	total: 57.2ms	remaining: 82.3ms
41:	learn: 23.0902748	total: 58.6ms	remaining: 80.9ms
42:	learn: 22.9141327	total: 60ms	remaining: 79.5ms
43:	learn: 22.6661361	total: 61.3ms	remaining: 78ms
44:	learn: 22.4669869	total: 62.6ms	remaining: 76.5ms
45:	learn: 22.3018496	total: 64ms	remaining: 75.1ms
46:	learn: 22.1164541	total: 65.4ms	remaining: 73.8ms
47:	learn: 21.9166860	total: 66.7ms	remaining: 72.2ms
48:	learn: 21.7309627	total: 67.8ms	remaining: 70.6ms
49:	learn: 21.5925245	total: 69.1ms	remaining: 69.1ms
50:	learn: 21.4391920	total: 70.4ms	remaining: 67.6ms
51:	learn: 21.2627368	total: 71.6ms	remaining: 66.1ms
52:	learn: 21.1393465	total: 72.8ms	remaining: 64.5ms
53:	learn: 21.0307989	total: 74ms	remaining: 63ms
54:	learn: 20.9650666	total: 75.2ms	remaining: 61.5ms
55:	learn: 20.8329784	total: 76.4ms	remaining: 60.1ms
56:	learn: 20.6897421	total: 77.6ms	remaining: 58.6ms
57:	learn: 20.5437642	total: 78.8ms	remaining: 57.1ms
58:	learn: 20.4456457	total: 80ms	remaining: 55.6ms
59:	learn: 20.3198670	total: 81.3ms	remaining: 54.2ms
60:	learn: 20.2266012	total: 82.6ms	remaining: 52.8ms
61:	learn: 20.1117397	total: 84.1ms	remaining: 51.6ms
62:	learn: 20.0287866	total: 85.6ms	remaining: 50.3ms
63:	learn: 19.9336125	total: 86.8ms	remaining: 48.8ms
64:	learn: 19.8386945	total: 88ms	remaining: 47.4ms
65:	learn: 19.7723203	total: 89.2ms	remaining: 45.9ms
66:	learn: 19.7086882	total: 90.4ms	remaining: 44.5ms
67:	learn: 19.6214223	total: 91.6ms	remaining: 43.1ms
68:	learn: 19.5646939	total: 92.8ms	remaining: 41.7ms
69:	learn: 19.4647185	total: 94.1ms	remaining: 40.3ms
70:	learn: 19.3928476	total: 95.3ms	remaining: 38.9ms
71:	learn: 19.2916814	total: 96.5ms	remaining: 37.5ms
72:	learn: 19.1881737	total: 97.8ms	remaining: 36.2ms
73:	learn: 19.1104643	total: 99.1ms	remaining: 34.8ms
74:	learn: 19.0297834	total: 100ms	remaining: 33.5ms
75:	learn: 18.9455314	total: 102ms	remaining: 32.2ms
76:	learn: 18.8565548	total: 103ms	remaining: 30.8ms
77:	learn: 18.7985754	total: 104ms	remaining: 29.4ms
78:	learn: 18.7085717	total: 106ms	remaining: 28.1ms
79:	learn: 18.6187703	total: 107ms	remaining: 26.7ms
80:	learn: 18.5593491	total: 108ms	remaining: 25.3ms
81:	learn: 18.5049072	total: 109ms	remaining: 24ms
82:	learn: 18.4236743	total: 111ms	remaining: 22.7ms
83:	learn: 18.3782839	total: 112ms	remaining: 21.3ms
84:	learn: 18.3255876	total: 113ms	remaining: 20ms
85:	learn: 18.2408841	total: 115ms	remaining: 18.7ms
86:	learn: 18.1768990	total: 116ms	remaining: 17.4ms
87:	learn: 18.1082002	total: 118ms	remaining: 16.1ms
88:	learn: 18.0377700	total: 119ms	remaining: 14.7ms
89:	learn: 18.0130218	total: 120ms	remaining: 13.4ms
90:	learn: 17.9709653	total: 122ms	remaining: 12ms
91:	learn: 17.8890205	total: 125ms	remaining: 10.8ms
92:	learn: 17.8792580	total: 127ms	remaining: 9.53ms
93:	learn: 17.8209868	total: 129ms	remaining: 8.22ms
94:	learn: 17.7571297	total: 131ms	remaining: 6.89ms
95:	learn: 17.6848040	total: 133ms	remaining: 5.54ms
96:	learn: 17.6198628	total: 134ms	remaining: 4.16ms
97:	learn: 17.5571832	total: 136ms	remaining: 2.78ms
98:	learn: 17.5466369	total: 138ms	remaining: 1.39ms
99:	learn: 17.5114502	total: 140ms	remaining: 0us
0:	learn: 46.6074068	total: 1.54ms	remaining: 153ms
1:	learn: 45.8496006	total: 2.86ms	remaining: 140ms
2:	learn: 45.2354594	total: 4.19ms	remaining: 135ms
3:	learn: 44.5261088	total: 5.51ms	remaining: 132ms
4:	learn: 43.8098278	total: 6.79ms	remaining: 129ms
5:	learn: 43.0569602	total: 8.13ms	remaining: 127ms
6:	learn: 42.3137394	total: 9.5ms	remaining: 126ms
7:	learn: 41.8335666	total: 10.8ms	remaining: 124ms
8:	learn: 41.2921489	total: 12ms	remaining: 122ms
9:	learn: 40.7149691	total: 13.3ms	remaining: 120ms
10:	learn: 39.9277062	total: 14.7ms	remaining: 119ms
11:	learn: 39.2504313	total: 16.2ms	remaining: 119ms
12:	learn: 38.6625180	total: 17.6ms	remaining: 118ms
13:	learn: 38.1961525	total: 18.8ms	remaining: 116ms
14:	learn: 37.5585738	total: 20.1ms	remaining: 114ms
15:	learn: 36.9806821	total: 21.5ms	remaining: 113ms
16:	learn: 36.3146356	total: 22.9ms	remaining: 112ms
17:	learn: 35.7283727	total: 24.2ms	remaining: 110ms
18:	learn: 35.2399137	total: 25.4ms	remaining: 108ms
19:	learn: 34.9252247	total: 26.6ms	remaining: 107ms
20:	learn: 34.4172641	total: 28ms	remaining: 105ms
21:	learn: 33.9218104	total: 29.3ms	remaining: 104ms
22:	learn: 33.3349137	total: 30.6ms	remaining: 102ms
23:	learn: 32.8550596	total: 31.9ms	remaining: 101ms
24:	learn: 32.3963132	total: 33.5ms	remaining: 101ms
25:	learn: 32.1380456	total: 34.9ms	remaining: 99.4ms
26:	learn: 31.8903131	total: 36.4ms	remaining: 98.3ms
27:	learn: 31.5828553	total: 37.8ms	remaining: 97.3ms
28:	learn: 31.3056708	total: 39.2ms	remaining: 96ms
29:	learn: 30.9248794	total: 40.7ms	remaining: 94.9ms
30:	learn: 30.5603460	total: 42ms	remaining: 93.4ms
31:	learn: 30.2457444	total: 43.4ms	remaining: 92.3ms
32:	learn: 29.9848454	total: 44.8ms	remaining: 91ms
33:	learn: 29.5184386	total: 46.2ms	remaining: 89.7ms
34:	learn: 29.2613930	total: 47.5ms	remaining: 88.3ms
35:	learn: 28.9067981	total: 49ms	remaining: 87.1ms
36:	learn: 28.6506758	total: 50.6ms	remaining: 86.2ms
37:	learn: 28.3752310	total: 52.1ms	remaining: 85ms
38:	learn: 28.0949087	total: 53.5ms	remaining: 83.7ms
39:	learn: 27.9923595	total: 55.1ms	remaining: 82.6ms
40:	learn: 27.7196177	total: 56.5ms	remaining: 81.3ms
41:	learn: 27.4452872	total: 57.8ms	remaining: 79.8ms
42:	learn: 27.2277329	total: 59.1ms	remaining: 78.3ms
43:	learn: 26.9337091	total: 60.4ms	remaining: 76.9ms
44:	learn: 26.7927632	total: 61.8ms	remaining: 75.5ms
45:	learn: 26.6440337	total: 63.1ms	remaining: 74ms
46:	learn: 26.4163087	total: 64.5ms	remaining: 72.7ms
47:	learn: 26.2359345	total: 65.9ms	remaining: 71.4ms
48:	learn: 26.0839781	total: 67.2ms	remaining: 70ms
49:	learn: 26.0074843	total: 68.5ms	remaining: 68.5ms
50:	learn: 25.8898461	total: 69.8ms	remaining: 67.1ms
51:	learn: 25.7699020	total: 71.2ms	remaining: 65.7ms
52:	learn: 25.5940202	total: 72.5ms	remaining: 64.3ms
53:	learn: 25.3201765	total: 74ms	remaining: 63ms
54:	learn: 25.1052751	total: 75.3ms	remaining: 61.6ms
55:	learn: 24.9461875	total: 76.7ms	remaining: 60.2ms
56:	learn: 24.8024818	total: 78ms	remaining: 58.8ms
57:	learn: 24.6094808	total: 79.5ms	remaining: 57.5ms
58:	learn: 24.4583256	total: 80.9ms	remaining: 56.2ms
59:	learn: 24.2083139	total: 82.4ms	remaining: 54.9ms
60:	learn: 24.0649998	total: 83.9ms	remaining: 53.6ms
61:	learn: 23.9822219	total: 85.3ms	remaining: 52.3ms
62:	learn: 23.8769027	total: 86.7ms	remaining: 50.9ms
63:	learn: 23.6715310	total: 88ms	remaining: 49.5ms
64:	learn: 23.5595595	total: 89.3ms	remaining: 48.1ms
65:	learn: 23.4166147	total: 90.6ms	remaining: 46.7ms
66:	learn: 23.2582057	total: 91.8ms	remaining: 45.2ms
67:	learn: 23.0974656	total: 93.1ms	remaining: 43.8ms
68:	learn: 22.9791854	total: 94.5ms	remaining: 42.4ms
69:	learn: 22.8652498	total: 95.8ms	remaining: 41ms
70:	learn: 22.7360703	total: 97.2ms	remaining: 39.7ms
71:	learn: 22.6802644	total: 98.6ms	remaining: 38.3ms
72:	learn: 22.5538402	total: 100ms	remaining: 37.1ms
73:	learn: 22.4076395	total: 102ms	remaining: 35.7ms
74:	learn: 22.3831299	total: 103ms	remaining: 34.3ms
75:	learn: 22.2246561	total: 104ms	remaining: 33ms
76:	learn: 22.1392381	total: 106ms	remaining: 31.6ms
77:	learn: 22.0753998	total: 107ms	remaining: 30.2ms
78:	learn: 21.9871709	total: 109ms	remaining: 28.9ms
79:	learn: 21.9266311	total: 111ms	remaining: 27.6ms
80:	learn: 21.8699159	total: 112ms	remaining: 26.3ms
81:	learn: 21.7234760	total: 114ms	remaining: 24.9ms
82:	learn: 21.6334590	total: 115ms	remaining: 23.5ms
83:	learn: 21.5025328	total: 116ms	remaining: 22.2ms
84:	learn: 21.3813020	total: 118ms	remaining: 20.8ms
85:	learn: 21.2702525	total: 119ms	remaining: 19.4ms
86:	learn: 21.2368103	total: 120ms	remaining: 18ms
87:	learn: 21.1377121	total: 122ms	remaining: 16.6ms
88:	learn: 21.0039796	total: 123ms	remaining: 15.2ms
89:	learn: 20.9596608	total: 124ms	remaining: 13.8ms
90:	learn: 20.8929363	total: 126ms	remaining: 12.4ms
91:	learn: 20.8701561	total: 127ms	remaining: 11.1ms
92:	learn: 20.7424119	total: 129ms	remaining: 9.68ms
93:	learn: 20.6604399	total: 130ms	remaining: 8.29ms
94:	learn: 20.5911098	total: 132ms	remaining: 6.94ms
95:	learn: 20.4993176	total: 135ms	remaining: 5.61ms
96:	learn: 20.4264961	total: 136ms	remaining: 4.22ms
97:	learn: 20.3333721	total: 138ms	remaining: 2.82ms
98:	learn: 20.2810811	total: 140ms	remaining: 1.41ms
99:	learn: 20.2357826	total: 142ms	remaining: 0us
0:	learn: 46.0709575	total: 1.86ms	remaining: 184ms
1:	learn: 45.3080435	total: 3.42ms	remaining: 168ms
2:	learn: 44.4280378	total: 5.1ms	remaining: 165ms
3:	learn: 43.6532211	total: 6.68ms	remaining: 160ms
4:	learn: 43.0220398	total: 8.21ms	remaining: 156ms
5:	learn: 42.3125518	total: 10.1ms	remaining: 158ms
6:	learn: 41.5705990	total: 11.6ms	remaining: 154ms
7:	learn: 40.9033720	total: 13.1ms	remaining: 151ms
8:	learn: 40.4222182	total: 14.5ms	remaining: 147ms
9:	learn: 39.8244330	total: 15.9ms	remaining: 144ms
10:	learn: 39.2127156	total: 17.3ms	remaining: 140ms
11:	learn: 38.6536958	total: 18.7ms	remaining: 137ms
12:	learn: 38.2111805	total: 20.1ms	remaining: 135ms
13:	learn: 37.6429965	total: 21.5ms	remaining: 132ms
14:	learn: 37.1610161	total: 22.9ms	remaining: 130ms
15:	learn: 36.5832678	total: 24.3ms	remaining: 128ms
16:	learn: 36.1403033	total: 25.9ms	remaining: 127ms
17:	learn: 35.5196906	total: 27.5ms	remaining: 125ms
18:	learn: 35.0546005	total: 28.9ms	remaining: 123ms
19:	learn: 34.4514322	total: 30.3ms	remaining: 121ms
20:	learn: 33.9877784	total: 31.7ms	remaining: 119ms
21:	learn: 33.6442602	total: 33.2ms	remaining: 118ms
22:	learn: 33.2409783	total: 34.6ms	remaining: 116ms
23:	learn: 32.9516432	total: 36.1ms	remaining: 114ms
24:	learn: 32.4903536	total: 37.6ms	remaining: 113ms
25:	learn: 32.0441543	total: 39ms	remaining: 111ms
26:	learn: 31.7266413	total: 40.5ms	remaining: 110ms
27:	learn: 31.4745738	total: 41.9ms	remaining: 108ms
28:	learn: 31.2113721	total: 43.4ms	remaining: 106ms
29:	learn: 30.8650894	total: 44.8ms	remaining: 105ms
30:	learn: 30.5994275	total: 46.3ms	remaining: 103ms
31:	learn: 30.2533497	total: 47.5ms	remaining: 101ms
32:	learn: 30.0226357	total: 48.8ms	remaining: 99.1ms
33:	learn: 29.6680750	total: 50.2ms	remaining: 97.5ms
34:	learn: 29.4259058	total: 51.7ms	remaining: 96ms
35:	learn: 29.1863115	total: 53.4ms	remaining: 95ms
36:	learn: 28.9553548	total: 55ms	remaining: 93.6ms
37:	learn: 28.7322310	total: 56.5ms	remaining: 92.2ms
38:	learn: 28.5005636	total: 57.9ms	remaining: 90.5ms
39:	learn: 28.2605292	total: 59.4ms	remaining: 89.1ms
40:	learn: 28.1085921	total: 61ms	remaining: 87.8ms
41:	learn: 27.8395526	total: 62.3ms	remaining: 86.1ms
42:	learn: 27.7211327	total: 63.6ms	remaining: 84.3ms
43:	learn: 27.4504176	total: 64.9ms	remaining: 82.6ms
44:	learn: 27.3505477	total: 66.2ms	remaining: 80.9ms
45:	learn: 26.9910896	total: 67.5ms	remaining: 79.2ms
46:	learn: 26.7973471	total: 68.8ms	remaining: 77.6ms
47:	learn: 26.5915932	total: 70.1ms	remaining: 76ms
48:	learn: 26.4143720	total: 71.4ms	remaining: 74.3ms
49:	learn: 26.3644490	total: 72.6ms	remaining: 72.6ms
50:	learn: 26.2523195	total: 73.9ms	remaining: 71ms
51:	learn: 26.0712146	total: 75.2ms	remaining: 69.4ms
52:	learn: 25.9400804	total: 76.5ms	remaining: 67.8ms
53:	learn: 25.8481212	total: 78ms	remaining: 66.4ms
54:	learn: 25.7209987	total: 79.2ms	remaining: 64.8ms
55:	learn: 25.6429720	total: 80.5ms	remaining: 63.2ms
56:	learn: 25.5102707	total: 81.9ms	remaining: 61.8ms
57:	learn: 25.3142072	total: 83.3ms	remaining: 60.3ms
58:	learn: 25.1826732	total: 84.7ms	remaining: 58.9ms
59:	learn: 25.0370887	total: 86.1ms	remaining: 57.4ms
60:	learn: 24.9072184	total: 87.4ms	remaining: 55.9ms
61:	learn: 24.8634327	total: 88.6ms	remaining: 54.3ms
62:	learn: 24.7213499	total: 89.9ms	remaining: 52.8ms
63:	learn: 24.5471121	total: 91.2ms	remaining: 51.3ms
64:	learn: 24.3607859	total: 92.3ms	remaining: 49.7ms
65:	learn: 24.3012330	total: 93.7ms	remaining: 48.3ms
66:	learn: 24.1680354	total: 95ms	remaining: 46.8ms
67:	learn: 24.0121232	total: 96.3ms	remaining: 45.3ms
68:	learn: 23.9038949	total: 97.5ms	remaining: 43.8ms
69:	learn: 23.8038761	total: 98.7ms	remaining: 42.3ms
70:	learn: 23.6826454	total: 100ms	remaining: 40.9ms
71:	learn: 23.5306004	total: 101ms	remaining: 39.4ms
72:	learn: 23.4074484	total: 103ms	remaining: 38ms
73:	learn: 23.2818633	total: 104ms	remaining: 36.6ms
74:	learn: 23.1664660	total: 105ms	remaining: 35.1ms
75:	learn: 23.0355231	total: 107ms	remaining: 33.7ms
76:	learn: 22.9491379	total: 108ms	remaining: 32.2ms
77:	learn: 22.8762202	total: 109ms	remaining: 30.8ms
78:	learn: 22.7930168	total: 110ms	remaining: 29.4ms
79:	learn: 22.6945773	total: 112ms	remaining: 27.9ms
80:	learn: 22.6144831	total: 113ms	remaining: 26.5ms
81:	learn: 22.5288060	total: 114ms	remaining: 25.1ms
82:	learn: 22.4756829	total: 116ms	remaining: 23.7ms
83:	learn: 22.4040653	total: 117ms	remaining: 22.2ms
84:	learn: 22.3500837	total: 118ms	remaining: 20.8ms
85:	learn: 22.2807715	total: 119ms	remaining: 19.4ms
86:	learn: 22.2066189	total: 120ms	remaining: 18ms
87:	learn: 22.0773233	total: 122ms	remaining: 16.6ms
88:	learn: 21.9443679	total: 123ms	remaining: 15.2ms
89:	learn: 21.9189100	total: 124ms	remaining: 13.8ms
90:	learn: 21.8890882	total: 125ms	remaining: 12.4ms
91:	learn: 21.8244969	total: 127ms	remaining: 11ms
92:	learn: 21.7198126	total: 128ms	remaining: 9.64ms
93:	learn: 21.6638826	total: 130ms	remaining: 8.28ms
94:	learn: 21.6012969	total: 131ms	remaining: 6.9ms
95:	learn: 21.5834938	total: 132ms	remaining: 5.52ms
96:	learn: 21.5216755	total: 134ms	remaining: 4.14ms
97:	learn: 21.4379267	total: 135ms	remaining: 2.76ms
98:	learn: 21.4228194	total: 136ms	remaining: 1.38ms
99:	learn: 21.3450022	total: 138ms	remaining: 0us
0:	learn: 46.7615100	total: 2.51ms	remaining: 249ms
1:	learn: 45.8786592	total: 4.22ms	remaining: 207ms
2:	learn: 44.9643893	total: 5.87ms	remaining: 190ms
3:	learn: 44.1579612	total: 7.54ms	remaining: 181ms
4:	learn: 43.5334961	total: 9.06ms	remaining: 172ms
5:	learn: 42.7675564	total: 10.7ms	remaining: 168ms
6:	learn: 42.0636134	total: 12.4ms	remaining: 165ms
7:	learn: 41.4826596	total: 14.3ms	remaining: 165ms
8:	learn: 41.0037954	total: 16ms	remaining: 161ms
9:	learn: 40.3590188	total: 17.6ms	remaining: 158ms
10:	learn: 39.6815163	total: 19.3ms	remaining: 156ms
11:	learn: 39.1429112	total: 20.8ms	remaining: 152ms
12:	learn: 38.6834999	total: 22.2ms	remaining: 149ms
13:	learn: 38.0686328	total: 24.1ms	remaining: 148ms
14:	learn: 37.6058931	total: 25.6ms	remaining: 145ms
15:	learn: 37.0469277	total: 27.1ms	remaining: 142ms
16:	learn: 36.4816649	total: 28.2ms	remaining: 138ms
17:	learn: 35.9335814	total: 29.5ms	remaining: 135ms
18:	learn: 35.4397240	total: 30.8ms	remaining: 131ms
19:	learn: 34.9578079	total: 32ms	remaining: 128ms
20:	learn: 34.6387869	total: 33.1ms	remaining: 125ms
21:	learn: 34.3270198	total: 34.4ms	remaining: 122ms
22:	learn: 33.8220130	total: 35.6ms	remaining: 119ms
23:	learn: 33.4424897	total: 36.8ms	remaining: 117ms
24:	learn: 33.0763455	total: 38.2ms	remaining: 115ms
25:	learn: 32.6396376	total: 39.4ms	remaining: 112ms
26:	learn: 32.3291978	total: 40.7ms	remaining: 110ms
27:	learn: 31.9809138	total: 41.8ms	remaining: 108ms
28:	learn: 31.7242800	total: 43ms	remaining: 105ms
29:	learn: 31.4494254	total: 44.1ms	remaining: 103ms
30:	learn: 31.1380464	total: 45.3ms	remaining: 101ms
31:	learn: 30.8456635	total: 46.6ms	remaining: 99.1ms
32:	learn: 30.6058287	total: 47.9ms	remaining: 97.2ms
33:	learn: 30.2425993	total: 49.1ms	remaining: 95.3ms
34:	learn: 29.9549589	total: 50.3ms	remaining: 93.3ms
35:	learn: 29.6907023	total: 51.6ms	remaining: 91.8ms
36:	learn: 29.5117956	total: 52.8ms	remaining: 89.9ms
37:	learn: 29.3037840	total: 54ms	remaining: 88.1ms
38:	learn: 29.0719600	total: 55.2ms	remaining: 86.3ms
39:	learn: 28.9042259	total: 56.4ms	remaining: 84.6ms
40:	learn: 28.6479775	total: 57.5ms	remaining: 82.8ms
41:	learn: 28.3606424	total: 58.7ms	remaining: 81ms
42:	learn: 28.1638734	total: 59.9ms	remaining: 79.5ms
43:	learn: 27.9207579	total: 61.1ms	remaining: 77.7ms
44:	learn: 27.7790971	total: 62.3ms	remaining: 76.1ms
45:	learn: 27.6799141	total: 63.7ms	remaining: 74.7ms
46:	learn: 27.5365213	total: 64.8ms	remaining: 73.1ms
47:	learn: 27.3773653	total: 66.1ms	remaining: 71.6ms
48:	learn: 27.1561862	total: 67.2ms	remaining: 70ms
49:	learn: 27.0997048	total: 68.5ms	remaining: 68.5ms
50:	learn: 26.9547579	total: 69.8ms	remaining: 67.1ms
51:	learn: 26.7939984	total: 71ms	remaining: 65.6ms
52:	learn: 26.6326409	total: 72.3ms	remaining: 64.1ms
53:	learn: 26.4624451	total: 73.5ms	remaining: 62.6ms
54:	learn: 26.2923661	total: 74.7ms	remaining: 61.2ms
55:	learn: 26.1658098	total: 75.9ms	remaining: 59.6ms
56:	learn: 26.0209867	total: 77ms	remaining: 58.1ms
57:	learn: 25.8671326	total: 78.2ms	remaining: 56.6ms
58:	learn: 25.7192646	total: 79.5ms	remaining: 55.2ms
59:	learn: 25.6132249	total: 80.7ms	remaining: 53.8ms
60:	learn: 25.5160209	total: 82ms	remaining: 52.4ms
61:	learn: 25.4472180	total: 83.2ms	remaining: 51ms
62:	learn: 25.3494822	total: 84.4ms	remaining: 49.6ms
63:	learn: 25.3029653	total: 85.6ms	remaining: 48.2ms
64:	learn: 25.0863109	total: 86.9ms	remaining: 46.8ms
65:	learn: 25.0178325	total: 88.1ms	remaining: 45.4ms
66:	learn: 24.9390409	total: 89.4ms	remaining: 44ms
67:	learn: 24.8270544	total: 90.5ms	remaining: 42.6ms
68:	learn: 24.7219046	total: 91.8ms	remaining: 41.2ms
69:	learn: 24.6403493	total: 92.9ms	remaining: 39.8ms
70:	learn: 24.5430289	total: 94.1ms	remaining: 38.5ms
71:	learn: 24.5017234	total: 95.4ms	remaining: 37.1ms
72:	learn: 24.4411368	total: 96.9ms	remaining: 35.8ms
73:	learn: 24.1836983	total: 98.1ms	remaining: 34.5ms
74:	learn: 24.1278934	total: 99.4ms	remaining: 33.1ms
75:	learn: 24.0160938	total: 101ms	remaining: 31.8ms
76:	learn: 23.9354837	total: 102ms	remaining: 30.4ms
77:	learn: 23.8788468	total: 103ms	remaining: 29.1ms
78:	learn: 23.8623417	total: 104ms	remaining: 27.7ms
79:	learn: 23.8004037	total: 105ms	remaining: 26.3ms
80:	learn: 23.7143775	total: 107ms	remaining: 25ms
81:	learn: 23.5518349	total: 108ms	remaining: 23.7ms
82:	learn: 23.4692344	total: 109ms	remaining: 22.3ms
83:	learn: 23.3632341	total: 110ms	remaining: 21ms
84:	learn: 23.2750154	total: 111ms	remaining: 19.7ms
85:	learn: 23.1830489	total: 113ms	remaining: 18.3ms
86:	learn: 23.1004439	total: 114ms	remaining: 17ms
87:	learn: 22.9698626	total: 115ms	remaining: 15.7ms
88:	learn: 22.8249990	total: 116ms	remaining: 14.4ms
89:	learn: 22.7632398	total: 117ms	remaining: 13ms
90:	learn: 22.6933729	total: 119ms	remaining: 11.7ms
91:	learn: 22.6193254	total: 120ms	remaining: 10.4ms
92:	learn: 22.5970262	total: 121ms	remaining: 9.12ms
93:	learn: 22.5707244	total: 122ms	remaining: 7.82ms
94:	learn: 22.4865249	total: 124ms	remaining: 6.52ms
95:	learn: 22.3923951	total: 125ms	remaining: 5.21ms
96:	learn: 22.3220308	total: 126ms	remaining: 3.91ms
97:	learn: 22.2633193	total: 128ms	remaining: 2.6ms
98:	learn: 22.2273383	total: 129ms	remaining: 1.3ms
99:	learn: 22.1945338	total: 130ms	remaining: 0us
0:	learn: 27.6973511	total: 23ms	remaining: 6.89s
1:	learn: 27.2958182	total: 54.1ms	remaining: 8.06s
2:	learn: 26.8950527	total: 79.3ms	remaining: 7.85s
3:	learn: 26.4489170	total: 104ms	remaining: 7.71s
4:	learn: 26.1800349	total: 129ms	remaining: 7.59s
5:	learn: 25.7917141	total: 153ms	remaining: 7.48s
6:	learn: 25.5263958	total: 178ms	remaining: 7.45s
7:	learn: 25.2345461	total: 202ms	remaining: 7.38s
8:	learn: 24.8337785	total: 225ms	remaining: 7.28s
9:	learn: 24.5131550	total: 249ms	remaining: 7.21s
10:	learn: 24.2257656	total: 273ms	remaining: 7.18s
11:	learn: 23.9792781	total: 304ms	remaining: 7.3s
12:	learn: 23.6676478	total: 329ms	remaining: 7.26s
13:	learn: 23.4355824	total: 351ms	remaining: 7.18s
14:	learn: 23.2062795	total: 374ms	remaining: 7.11s
15:	learn: 22.9749556	total: 398ms	remaining: 7.07s
16:	learn: 22.7388336	total: 422ms	remaining: 7.03s
17:	learn: 22.5065141	total: 447ms	remaining: 7s
18:	learn: 22.2263730	total: 471ms	remaining: 6.96s
19:	learn: 21.9969137	total: 496ms	remaining: 6.94s
20:	learn: 21.7654035	total: 531ms	remaining: 7.06s
21:	learn: 21.5672959	total: 555ms	remaining: 7.01s
22:	learn: 21.3699131	total: 580ms	remaining: 6.98s
23:	learn: 21.1320132	total: 606ms	remaining: 6.96s
24:	learn: 20.8360475	total: 630ms	remaining: 6.93s
25:	learn: 20.6216430	total: 654ms	remaining: 6.89s
26:	learn: 20.4442023	total: 678ms	remaining: 6.86s
27:	learn: 20.2452126	total: 702ms	remaining: 6.82s
28:	learn: 19.9551543	total: 727ms	remaining: 6.79s
29:	learn: 19.7874909	total: 761ms	remaining: 6.85s
30:	learn: 19.6541244	total: 788ms	remaining: 6.83s
31:	learn: 19.4769528	total: 812ms	remaining: 6.8s
32:	learn: 19.2916254	total: 837ms	remaining: 6.77s
33:	learn: 19.1524478	total: 861ms	remaining: 6.74s
34:	learn: 19.0152836	total: 886ms	remaining: 6.71s
35:	learn: 18.7761219	total: 910ms	remaining: 6.67s
36:	learn: 18.6266045	total: 936ms	remaining: 6.65s
37:	learn: 18.4382424	total: 969ms	remaining: 6.68s
38:	learn: 18.3276487	total: 998ms	remaining: 6.68s
39:	learn: 18.1728115	total: 1.02s	remaining: 6.66s
40:	learn: 18.0412668	total: 1.05s	remaining: 6.63s
41:	learn: 17.8927154	total: 1.07s	remaining: 6.6s
42:	learn: 17.6796203	total: 1.1s	remaining: 6.57s
43:	learn: 17.5396182	total: 1.13s	remaining: 6.55s
44:	learn: 17.3897332	total: 1.15s	remaining: 6.53s
45:	learn: 17.2677742	total: 1.18s	remaining: 6.53s
46:	learn: 17.1204742	total: 1.21s	remaining: 6.5s
47:	learn: 16.9890701	total: 1.23s	remaining: 6.47s
48:	learn: 16.8827846	total: 1.26s	remaining: 6.45s
49:	learn: 16.7657376	total: 1.28s	remaining: 6.42s
50:	learn: 16.6624511	total: 1.31s	remaining: 6.39s
51:	learn: 16.5486117	total: 1.33s	remaining: 6.36s
52:	learn: 16.4000940	total: 1.36s	remaining: 6.33s
53:	learn: 16.3029344	total: 1.39s	remaining: 6.35s
54:	learn: 16.2035733	total: 1.42s	remaining: 6.34s
55:	learn: 16.0437589	total: 1.45s	remaining: 6.31s
56:	learn: 15.9522262	total: 1.47s	remaining: 6.28s
57:	learn: 15.8358267	total: 1.5s	remaining: 6.26s
58:	learn: 15.7214027	total: 1.52s	remaining: 6.23s
59:	learn: 15.5996313	total: 1.55s	remaining: 6.2s
60:	learn: 15.4720290	total: 1.58s	remaining: 6.18s
61:	learn: 15.3836272	total: 1.61s	remaining: 6.18s
62:	learn: 15.2874597	total: 1.63s	remaining: 6.15s
63:	learn: 15.1976492	total: 1.66s	remaining: 6.12s
64:	learn: 15.0909229	total: 1.68s	remaining: 6.08s
65:	learn: 15.0152553	total: 1.71s	remaining: 6.05s
66:	learn: 14.9383045	total: 1.73s	remaining: 6.03s
67:	learn: 14.8359454	total: 1.76s	remaining: 5.99s
68:	learn: 14.7292481	total: 1.78s	remaining: 5.96s
69:	learn: 14.6260226	total: 1.8s	remaining: 5.93s
70:	learn: 14.4936289	total: 1.84s	remaining: 5.93s
71:	learn: 14.4124866	total: 1.86s	remaining: 5.91s
72:	learn: 14.3506411	total: 1.89s	remaining: 5.88s
73:	learn: 14.3003606	total: 1.92s	remaining: 5.85s
74:	learn: 14.2329960	total: 1.94s	remaining: 5.82s
75:	learn: 14.1623742	total: 1.96s	remaining: 5.79s
76:	learn: 14.0963112	total: 1.99s	remaining: 5.75s
77:	learn: 14.0129265	total: 2.01s	remaining: 5.72s
78:	learn: 13.9069448	total: 2.04s	remaining: 5.7s
79:	learn: 13.8583745	total: 2.06s	remaining: 5.68s
80:	learn: 13.8036276	total: 2.09s	remaining: 5.65s
81:	learn: 13.7294653	total: 2.11s	remaining: 5.62s
82:	learn: 13.6421548	total: 2.14s	remaining: 5.59s
83:	learn: 13.5544027	total: 2.16s	remaining: 5.56s
84:	learn: 13.4962426	total: 2.19s	remaining: 5.53s
85:	learn: 13.4236501	total: 2.21s	remaining: 5.5s
86:	learn: 13.3553655	total: 2.23s	remaining: 5.47s
87:	learn: 13.2833189	total: 2.27s	remaining: 5.46s
88:	learn: 13.2153279	total: 2.3s	remaining: 5.44s
89:	learn: 13.1595818	total: 2.32s	remaining: 5.42s
90:	learn: 13.0790280	total: 2.35s	remaining: 5.39s
91:	learn: 13.0059101	total: 2.37s	remaining: 5.36s
92:	learn: 12.9563936	total: 2.4s	remaining: 5.33s
93:	learn: 12.8795347	total: 2.42s	remaining: 5.3s
94:	learn: 12.8232219	total: 2.44s	remaining: 5.27s
95:	learn: 12.7614070	total: 2.47s	remaining: 5.25s
96:	learn: 12.7102421	total: 2.5s	remaining: 5.23s
97:	learn: 12.6436653	total: 2.52s	remaining: 5.2s
98:	learn: 12.5913696	total: 2.54s	remaining: 5.17s
99:	learn: 12.5367726	total: 2.57s	remaining: 5.14s
100:	learn: 12.4852419	total: 2.59s	remaining: 5.11s
101:	learn: 12.4385597	total: 2.62s	remaining: 5.08s
102:	learn: 12.3736476	total: 2.64s	remaining: 5.05s
103:	learn: 12.3247110	total: 2.67s	remaining: 5.02s
104:	learn: 12.2766720	total: 2.7s	remaining: 5.01s
105:	learn: 12.1952428	total: 2.73s	remaining: 4.99s
106:	learn: 12.1331617	total: 2.75s	remaining: 4.96s
107:	learn: 12.0512166	total: 2.78s	remaining: 4.94s
108:	learn: 11.9992209	total: 2.8s	remaining: 4.91s
109:	learn: 11.9475776	total: 2.83s	remaining: 4.88s
110:	learn: 11.9014821	total: 2.85s	remaining: 4.85s
111:	learn: 11.8707288	total: 2.88s	remaining: 4.83s
112:	learn: 11.8094965	total: 2.9s	remaining: 4.8s
113:	learn: 11.7463043	total: 2.93s	remaining: 4.78s
114:	learn: 11.7007710	total: 2.95s	remaining: 4.75s
115:	learn: 11.6615587	total: 2.98s	remaining: 4.72s
116:	learn: 11.6237977	total: 3s	remaining: 4.69s
117:	learn: 11.5616902	total: 3.02s	remaining: 4.67s
118:	learn: 11.4975486	total: 3.05s	remaining: 4.64s
119:	learn: 11.4545682	total: 3.07s	remaining: 4.61s
120:	learn: 11.4025940	total: 3.1s	remaining: 4.58s
121:	learn: 11.3457331	total: 3.13s	remaining: 4.57s
122:	learn: 11.3052810	total: 3.16s	remaining: 4.54s
123:	learn: 11.2420518	total: 3.18s	remaining: 4.52s
124:	learn: 11.1980267	total: 3.21s	remaining: 4.49s
125:	learn: 11.1471837	total: 3.23s	remaining: 4.46s
126:	learn: 11.0933514	total: 3.25s	remaining: 4.43s
127:	learn: 11.0387232	total: 3.28s	remaining: 4.41s
128:	learn: 10.9882800	total: 3.31s	remaining: 4.39s
129:	learn: 10.9217831	total: 3.35s	remaining: 4.38s
130:	learn: 10.8638073	total: 3.37s	remaining: 4.35s
131:	learn: 10.8405452	total: 3.4s	remaining: 4.33s
132:	learn: 10.7843152	total: 3.43s	remaining: 4.3s
133:	learn: 10.7215416	total: 3.45s	remaining: 4.28s
134:	learn: 10.6848770	total: 3.48s	remaining: 4.25s
135:	learn: 10.6386232	total: 3.51s	remaining: 4.23s
136:	learn: 10.5833324	total: 3.54s	remaining: 4.21s
137:	learn: 10.5552164	total: 3.57s	remaining: 4.19s
138:	learn: 10.5095592	total: 3.61s	remaining: 4.18s
139:	learn: 10.4652541	total: 3.63s	remaining: 4.15s
140:	learn: 10.4181327	total: 3.66s	remaining: 4.13s
141:	learn: 10.3570489	total: 3.69s	remaining: 4.11s
142:	learn: 10.3155806	total: 3.72s	remaining: 4.08s
143:	learn: 10.2935116	total: 3.74s	remaining: 4.05s
144:	learn: 10.2490396	total: 3.77s	remaining: 4.03s
145:	learn: 10.2175010	total: 3.8s	remaining: 4.01s
146:	learn: 10.1861611	total: 3.84s	remaining: 3.99s
147:	learn: 10.1464010	total: 3.86s	remaining: 3.97s
148:	learn: 10.1109588	total: 3.89s	remaining: 3.94s
149:	learn: 10.0820993	total: 3.92s	remaining: 3.92s
150:	learn: 10.0459417	total: 3.94s	remaining: 3.89s
151:	learn: 10.0150499	total: 3.97s	remaining: 3.87s
152:	learn: 9.9616104	total: 4s	remaining: 3.84s
153:	learn: 9.9370092	total: 4.04s	remaining: 3.83s
154:	learn: 9.8880669	total: 4.07s	remaining: 3.81s
155:	learn: 9.8035082	total: 4.1s	remaining: 3.78s
156:	learn: 9.7562049	total: 4.12s	remaining: 3.76s
157:	learn: 9.7188558	total: 4.15s	remaining: 3.73s
158:	learn: 9.6455036	total: 4.18s	remaining: 3.7s
159:	learn: 9.6138052	total: 4.2s	remaining: 3.68s
160:	learn: 9.5876598	total: 4.23s	remaining: 3.65s
161:	learn: 9.5617205	total: 4.26s	remaining: 3.63s
162:	learn: 9.5136300	total: 4.3s	remaining: 3.61s
163:	learn: 9.4854261	total: 4.32s	remaining: 3.58s
164:	learn: 9.4413089	total: 4.35s	remaining: 3.56s
165:	learn: 9.4301555	total: 4.38s	remaining: 3.53s
166:	learn: 9.3696661	total: 4.4s	remaining: 3.51s
167:	learn: 9.3197847	total: 4.43s	remaining: 3.48s
168:	learn: 9.2932309	total: 4.47s	remaining: 3.46s
169:	learn: 9.2622589	total: 4.5s	remaining: 3.44s
170:	learn: 9.2248534	total: 4.52s	remaining: 3.41s
171:	learn: 9.2022003	total: 4.56s	remaining: 3.39s
172:	learn: 9.1580241	total: 4.59s	remaining: 3.37s
173:	learn: 9.1260167	total: 4.62s	remaining: 3.34s
174:	learn: 9.0878209	total: 4.64s	remaining: 3.32s
175:	learn: 9.0321761	total: 4.68s	remaining: 3.29s
176:	learn: 9.0083249	total: 4.7s	remaining: 3.27s
177:	learn: 8.9787673	total: 4.73s	remaining: 3.24s
178:	learn: 8.9601410	total: 4.76s	remaining: 3.21s
179:	learn: 8.9127704	total: 4.79s	remaining: 3.19s
180:	learn: 8.8972409	total: 4.82s	remaining: 3.17s
181:	learn: 8.8794861	total: 4.85s	remaining: 3.14s
182:	learn: 8.8500542	total: 4.88s	remaining: 3.12s
183:	learn: 8.8141901	total: 4.91s	remaining: 3.1s
184:	learn: 8.7581473	total: 4.94s	remaining: 3.07s
185:	learn: 8.7253122	total: 4.96s	remaining: 3.04s
186:	learn: 8.6834052	total: 4.99s	remaining: 3.02s
187:	learn: 8.6566031	total: 5.03s	remaining: 2.99s
188:	learn: 8.6185765	total: 5.05s	remaining: 2.97s
189:	learn: 8.5835114	total: 5.08s	remaining: 2.94s
190:	learn: 8.5300510	total: 5.11s	remaining: 2.92s
191:	learn: 8.5135771	total: 5.14s	remaining: 2.89s
192:	learn: 8.4829013	total: 5.17s	remaining: 2.86s
193:	learn: 8.4533553	total: 5.19s	remaining: 2.84s
194:	learn: 8.4023227	total: 5.22s	remaining: 2.81s
195:	learn: 8.3643349	total: 5.25s	remaining: 2.79s
196:	learn: 8.3359260	total: 5.29s	remaining: 2.76s
197:	learn: 8.3049442	total: 5.32s	remaining: 2.74s
198:	learn: 8.2787682	total: 5.35s	remaining: 2.71s
199:	learn: 8.2447974	total: 5.38s	remaining: 2.69s
200:	learn: 8.1921213	total: 5.41s	remaining: 2.66s
201:	learn: 8.1368756	total: 5.43s	remaining: 2.63s
202:	learn: 8.1199237	total: 5.46s	remaining: 2.61s
203:	learn: 8.1017969	total: 5.49s	remaining: 2.58s
204:	learn: 8.0671173	total: 5.53s	remaining: 2.56s
205:	learn: 8.0319971	total: 5.56s	remaining: 2.54s
206:	learn: 8.0103044	total: 5.59s	remaining: 2.51s
207:	learn: 7.9967444	total: 5.61s	remaining: 2.48s
208:	learn: 7.9828258	total: 5.64s	remaining: 2.46s
209:	learn: 7.9515046	total: 5.67s	remaining: 2.43s
210:	learn: 7.9227280	total: 5.69s	remaining: 2.4s
211:	learn: 7.8910798	total: 5.72s	remaining: 2.38s
212:	learn: 7.8631592	total: 5.76s	remaining: 2.35s
213:	learn: 7.8233678	total: 5.8s	remaining: 2.33s
214:	learn: 7.8019668	total: 5.82s	remaining: 2.3s
215:	learn: 7.7692506	total: 5.85s	remaining: 2.27s
216:	learn: 7.7490031	total: 5.88s	remaining: 2.25s
217:	learn: 7.7321355	total: 5.91s	remaining: 2.22s
218:	learn: 7.7098665	total: 5.93s	remaining: 2.19s
219:	learn: 7.6731807	total: 5.96s	remaining: 2.17s
220:	learn: 7.6504773	total: 6.01s	remaining: 2.15s
221:	learn: 7.6249824	total: 6.04s	remaining: 2.12s
222:	learn: 7.6041649	total: 6.06s	remaining: 2.09s
223:	learn: 7.5490806	total: 6.09s	remaining: 2.07s
224:	learn: 7.5192127	total: 6.12s	remaining: 2.04s
225:	learn: 7.5025279	total: 6.14s	remaining: 2.01s
226:	learn: 7.4929920	total: 6.17s	remaining: 1.99s
227:	learn: 7.4778779	total: 6.21s	remaining: 1.96s
228:	learn: 7.4483660	total: 6.24s	remaining: 1.94s
229:	learn: 7.4291956	total: 6.28s	remaining: 1.91s
230:	learn: 7.4142087	total: 6.3s	remaining: 1.88s
231:	learn: 7.3986246	total: 6.33s	remaining: 1.86s
232:	learn: 7.3551309	total: 6.36s	remaining: 1.83s
233:	learn: 7.3005723	total: 6.39s	remaining: 1.8s
234:	learn: 7.2744519	total: 6.42s	remaining: 1.77s
235:	learn: 7.2477126	total: 6.45s	remaining: 1.75s
236:	learn: 7.2363537	total: 6.48s	remaining: 1.72s
237:	learn: 7.2243670	total: 6.51s	remaining: 1.7s
238:	learn: 7.2006057	total: 6.54s	remaining: 1.67s
239:	learn: 7.1770175	total: 6.57s	remaining: 1.64s
240:	learn: 7.1608454	total: 6.6s	remaining: 1.61s
241:	learn: 7.1347778	total: 6.63s	remaining: 1.59s
242:	learn: 7.1201448	total: 6.67s	remaining: 1.56s
243:	learn: 7.0954331	total: 6.7s	remaining: 1.54s
244:	learn: 7.0788027	total: 6.73s	remaining: 1.51s
245:	learn: 7.0587521	total: 6.76s	remaining: 1.48s
246:	learn: 7.0403295	total: 6.79s	remaining: 1.46s
247:	learn: 7.0149142	total: 6.82s	remaining: 1.43s
248:	learn: 7.0058503	total: 6.84s	remaining: 1.4s
249:	learn: 6.9872119	total: 6.87s	remaining: 1.37s
250:	learn: 6.9784378	total: 6.91s	remaining: 1.35s
251:	learn: 6.9401511	total: 6.93s	remaining: 1.32s
252:	learn: 6.9119575	total: 6.96s	remaining: 1.29s
253:	learn: 6.8791967	total: 7s	remaining: 1.27s
254:	learn: 6.8591065	total: 7.02s	remaining: 1.24s
255:	learn: 6.8466643	total: 7.05s	remaining: 1.21s
256:	learn: 6.8336092	total: 7.08s	remaining: 1.18s
257:	learn: 6.7969563	total: 7.12s	remaining: 1.16s
258:	learn: 6.7696422	total: 7.14s	remaining: 1.13s
259:	learn: 6.7495271	total: 7.17s	remaining: 1.1s
260:	learn: 6.7360935	total: 7.2s	remaining: 1.07s
261:	learn: 6.7206472	total: 7.23s	remaining: 1.05s
262:	learn: 6.7069436	total: 7.26s	remaining: 1.02s
263:	learn: 6.6808851	total: 7.29s	remaining: 994ms
264:	learn: 6.6465468	total: 7.32s	remaining: 967ms
265:	learn: 6.6275745	total: 7.35s	remaining: 940ms
266:	learn: 6.6154560	total: 7.38s	remaining: 912ms
267:	learn: 6.5939280	total: 7.41s	remaining: 884ms
268:	learn: 6.5711370	total: 7.43s	remaining: 857ms
269:	learn: 6.5613012	total: 7.46s	remaining: 829ms
270:	learn: 6.5376183	total: 7.5s	remaining: 803ms
271:	learn: 6.5139963	total: 7.54s	remaining: 776ms
272:	learn: 6.5040754	total: 7.56s	remaining: 748ms
273:	learn: 6.4975901	total: 7.59s	remaining: 720ms
274:	learn: 6.4904306	total: 7.62s	remaining: 693ms
275:	learn: 6.4771827	total: 7.64s	remaining: 665ms
276:	learn: 6.4640077	total: 7.67s	remaining: 637ms
277:	learn: 6.4479524	total: 7.7s	remaining: 609ms
278:	learn: 6.4378265	total: 7.74s	remaining: 583ms
279:	learn: 6.3945577	total: 7.77s	remaining: 555ms
280:	learn: 6.3799486	total: 7.8s	remaining: 527ms
281:	learn: 6.3522615	total: 7.82s	remaining: 499ms
282:	learn: 6.3442235	total: 7.85s	remaining: 472ms
283:	learn: 6.3211858	total: 7.88s	remaining: 444ms
284:	learn: 6.3144146	total: 7.9s	remaining: 416ms
285:	learn: 6.2952523	total: 7.93s	remaining: 388ms
286:	learn: 6.2759215	total: 7.98s	remaining: 361ms
287:	learn: 6.2573928	total: 8.01s	remaining: 334ms
288:	learn: 6.2171188	total: 8.03s	remaining: 306ms
289:	learn: 6.2047704	total: 8.06s	remaining: 278ms
290:	learn: 6.1958409	total: 8.09s	remaining: 250ms
291:	learn: 6.1687670	total: 8.12s	remaining: 222ms
292:	learn: 6.1534078	total: 8.14s	remaining: 195ms
293:	learn: 6.1501440	total: 8.17s	remaining: 167ms
294:	learn: 6.1433714	total: 8.21s	remaining: 139ms
295:	learn: 6.1307498	total: 8.24s	remaining: 111ms
296:	learn: 6.0959885	total: 8.27s	remaining: 83.5ms
297:	learn: 6.0797899	total: 8.29s	remaining: 55.6ms
298:	learn: 6.0558136	total: 8.32s	remaining: 27.8ms
299:	learn: 6.0496478	total: 8.34s	remaining: 0us
0:	learn: 42.9665907	total: 27ms	remaining: 8.09s
1:	learn: 42.0749580	total: 53.5ms	remaining: 7.97s
2:	learn: 41.2364372	total: 80.1ms	remaining: 7.93s
3:	learn: 40.2791940	total: 116ms	remaining: 8.59s
4:	learn: 39.4774740	total: 150ms	remaining: 8.86s
5:	learn: 38.5996840	total: 152ms	remaining: 7.46s
6:	learn: 37.8316211	total: 180ms	remaining: 7.53s
7:	learn: 37.1628850	total: 207ms	remaining: 7.56s
8:	learn: 36.4156466	total: 234ms	remaining: 7.58s
9:	learn: 35.6588758	total: 261ms	remaining: 7.58s
10:	learn: 35.0884345	total: 289ms	remaining: 7.58s
11:	learn: 34.5488461	total: 315ms	remaining: 7.57s
12:	learn: 34.0111283	total: 352ms	remaining: 7.77s
13:	learn: 33.3032373	total: 387ms	remaining: 7.91s
14:	learn: 32.6944492	total: 418ms	remaining: 7.95s
15:	learn: 32.1392985	total: 446ms	remaining: 7.91s
16:	learn: 31.5189724	total: 473ms	remaining: 7.87s
17:	learn: 31.1349319	total: 501ms	remaining: 7.85s
18:	learn: 30.6327993	total: 505ms	remaining: 7.47s
19:	learn: 30.1244237	total: 532ms	remaining: 7.45s
20:	learn: 29.6203476	total: 558ms	remaining: 7.42s
21:	learn: 29.1948722	total: 596ms	remaining: 7.53s
22:	learn: 28.7806338	total: 628ms	remaining: 7.56s
23:	learn: 28.4090304	total: 657ms	remaining: 7.56s
24:	learn: 27.8808639	total: 684ms	remaining: 7.53s
25:	learn: 27.4873995	total: 710ms	remaining: 7.48s
26:	learn: 27.1508867	total: 737ms	remaining: 7.45s
27:	learn: 26.8736886	total: 763ms	remaining: 7.41s
28:	learn: 26.5573453	total: 789ms	remaining: 7.38s
29:	learn: 26.1377013	total: 816ms	remaining: 7.35s
30:	learn: 25.8646447	total: 854ms	remaining: 7.41s
31:	learn: 25.5102956	total: 894ms	remaining: 7.49s
32:	learn: 25.1125832	total: 898ms	remaining: 7.26s
33:	learn: 24.7834335	total: 927ms	remaining: 7.25s
34:	learn: 24.4107155	total: 954ms	remaining: 7.23s
35:	learn: 24.1257227	total: 983ms	remaining: 7.21s
36:	learn: 23.7885363	total: 1.01s	remaining: 7.17s
37:	learn: 23.4172762	total: 1.04s	remaining: 7.15s
38:	learn: 23.1811741	total: 1.07s	remaining: 7.17s
39:	learn: 23.0203552	total: 1.11s	remaining: 7.22s
40:	learn: 22.7568385	total: 1.14s	remaining: 7.18s
41:	learn: 22.5575054	total: 1.16s	remaining: 7.15s
42:	learn: 22.3627317	total: 1.19s	remaining: 7.12s
43:	learn: 22.1148033	total: 1.22s	remaining: 7.09s
44:	learn: 21.8764654	total: 1.24s	remaining: 7.05s
45:	learn: 21.6507751	total: 1.27s	remaining: 7.02s
46:	learn: 21.5071770	total: 1.3s	remaining: 7s
47:	learn: 21.2905641	total: 1.34s	remaining: 7.05s
48:	learn: 21.0236680	total: 1.37s	remaining: 7.02s
49:	learn: 20.8525654	total: 1.4s	remaining: 6.99s
50:	learn: 20.7238361	total: 1.43s	remaining: 6.96s
51:	learn: 20.5196846	total: 1.45s	remaining: 6.93s
52:	learn: 20.4023709	total: 1.48s	remaining: 6.89s
53:	learn: 20.2251544	total: 1.5s	remaining: 6.86s
54:	learn: 20.0165126	total: 1.53s	remaining: 6.83s
55:	learn: 19.8473022	total: 1.56s	remaining: 6.82s
56:	learn: 19.6453942	total: 1.6s	remaining: 6.82s
57:	learn: 19.4414519	total: 1.63s	remaining: 6.78s
58:	learn: 19.2841809	total: 1.65s	remaining: 6.75s
59:	learn: 19.1094988	total: 1.68s	remaining: 6.72s
60:	learn: 18.9071492	total: 1.71s	remaining: 6.68s
61:	learn: 18.8142448	total: 1.73s	remaining: 6.65s
62:	learn: 18.7155916	total: 1.76s	remaining: 6.62s
63:	learn: 18.5713989	total: 1.8s	remaining: 6.63s
64:	learn: 18.4435949	total: 1.83s	remaining: 6.63s
65:	learn: 18.3154060	total: 1.86s	remaining: 6.6s
66:	learn: 18.1763969	total: 1.89s	remaining: 6.57s
67:	learn: 18.0520004	total: 1.92s	remaining: 6.54s
68:	learn: 17.9256535	total: 1.94s	remaining: 6.5s
69:	learn: 17.8001190	total: 1.97s	remaining: 6.47s
70:	learn: 17.7046336	total: 2s	remaining: 6.46s
71:	learn: 17.5727695	total: 2.03s	remaining: 6.43s
72:	learn: 17.4690371	total: 2.06s	remaining: 6.42s
73:	learn: 17.3464529	total: 2.09s	remaining: 6.38s
74:	learn: 17.2490723	total: 2.12s	remaining: 6.35s
75:	learn: 17.1387598	total: 2.15s	remaining: 6.32s
76:	learn: 17.0249827	total: 2.17s	remaining: 6.29s
77:	learn: 16.8957417	total: 2.2s	remaining: 6.26s
78:	learn: 16.8509294	total: 2.24s	remaining: 6.26s
79:	learn: 16.7606789	total: 2.27s	remaining: 6.23s
80:	learn: 16.6451525	total: 2.3s	remaining: 6.22s
81:	learn: 16.5535417	total: 2.33s	remaining: 6.19s
82:	learn: 16.4573626	total: 2.36s	remaining: 6.16s
83:	learn: 16.3815139	total: 2.38s	remaining: 6.13s
84:	learn: 16.2757371	total: 2.41s	remaining: 6.1s
85:	learn: 16.1610261	total: 2.45s	remaining: 6.09s
86:	learn: 16.0576382	total: 2.47s	remaining: 6.06s
87:	learn: 15.9864012	total: 2.5s	remaining: 6.02s
88:	learn: 15.8595556	total: 2.53s	remaining: 5.99s
89:	learn: 15.7835777	total: 2.56s	remaining: 5.98s
90:	learn: 15.6644813	total: 2.59s	remaining: 5.94s
91:	learn: 15.5703568	total: 2.61s	remaining: 5.91s
92:	learn: 15.5149519	total: 2.65s	remaining: 5.89s
93:	learn: 15.4388698	total: 2.68s	remaining: 5.87s
94:	learn: 15.3748348	total: 2.71s	remaining: 5.84s
95:	learn: 15.2653364	total: 2.73s	remaining: 5.81s
96:	learn: 15.1811031	total: 2.76s	remaining: 5.78s
97:	learn: 15.1048666	total: 2.8s	remaining: 5.76s
98:	learn: 14.9482659	total: 2.82s	remaining: 5.73s
99:	learn: 14.8677279	total: 2.86s	remaining: 5.71s
100:	learn: 14.7725994	total: 2.88s	remaining: 5.68s
101:	learn: 14.7029290	total: 2.91s	remaining: 5.65s
102:	learn: 14.6496411	total: 2.94s	remaining: 5.62s
103:	learn: 14.5777257	total: 2.96s	remaining: 5.59s
104:	learn: 14.5216984	total: 2.99s	remaining: 5.55s
105:	learn: 14.4547829	total: 3.02s	remaining: 5.53s
106:	learn: 14.3711083	total: 3.05s	remaining: 5.5s
107:	learn: 14.2912634	total: 3.08s	remaining: 5.48s
108:	learn: 14.2095515	total: 3.12s	remaining: 5.47s
109:	learn: 14.1126833	total: 3.15s	remaining: 5.44s
110:	learn: 14.0289467	total: 3.17s	remaining: 5.41s
111:	learn: 13.9815748	total: 3.2s	remaining: 5.38s
112:	learn: 13.8835790	total: 3.23s	remaining: 5.35s
113:	learn: 13.8212214	total: 3.27s	remaining: 5.33s
114:	learn: 13.7640007	total: 3.29s	remaining: 5.3s
115:	learn: 13.7267519	total: 3.33s	remaining: 5.28s
116:	learn: 13.6599610	total: 3.35s	remaining: 5.25s
117:	learn: 13.5793132	total: 3.38s	remaining: 5.21s
118:	learn: 13.4925503	total: 3.41s	remaining: 5.18s
119:	learn: 13.4190945	total: 3.44s	remaining: 5.15s
120:	learn: 13.3466705	total: 3.46s	remaining: 5.12s
121:	learn: 13.2924496	total: 3.49s	remaining: 5.09s
122:	learn: 13.2085622	total: 3.54s	remaining: 5.09s
123:	learn: 13.1162372	total: 3.57s	remaining: 5.06s
124:	learn: 13.0410713	total: 3.59s	remaining: 5.03s
125:	learn: 12.9609613	total: 3.62s	remaining: 5s
126:	learn: 12.8983994	total: 3.65s	remaining: 4.97s
127:	learn: 12.8474128	total: 3.68s	remaining: 4.94s
128:	learn: 12.7868331	total: 3.7s	remaining: 4.91s
129:	learn: 12.7309355	total: 3.73s	remaining: 4.88s
130:	learn: 12.6294977	total: 3.77s	remaining: 4.87s
131:	learn: 12.5179424	total: 3.8s	remaining: 4.84s
132:	learn: 12.4808285	total: 3.83s	remaining: 4.8s
133:	learn: 12.4263439	total: 3.85s	remaining: 4.77s
134:	learn: 12.3735545	total: 3.88s	remaining: 4.74s
135:	learn: 12.3307713	total: 3.9s	remaining: 4.71s
136:	learn: 12.2519866	total: 3.93s	remaining: 4.68s
137:	learn: 12.1999454	total: 3.96s	remaining: 4.65s
138:	learn: 12.1615470	total: 4.01s	remaining: 4.64s
139:	learn: 12.1069953	total: 4.03s	remaining: 4.61s
140:	learn: 12.0901368	total: 4.06s	remaining: 4.58s
141:	learn: 12.0479705	total: 4.09s	remaining: 4.55s
142:	learn: 12.0053457	total: 4.12s	remaining: 4.52s
143:	learn: 11.9659408	total: 4.14s	remaining: 4.49s
144:	learn: 11.8554732	total: 4.17s	remaining: 4.46s
145:	learn: 11.8187196	total: 4.2s	remaining: 4.43s
146:	learn: 11.7800675	total: 4.23s	remaining: 4.4s
147:	learn: 11.7386309	total: 4.27s	remaining: 4.38s
148:	learn: 11.6839216	total: 4.29s	remaining: 4.35s
149:	learn: 11.6001114	total: 4.32s	remaining: 4.32s
150:	learn: 11.5294641	total: 4.34s	remaining: 4.29s
151:	learn: 11.4688507	total: 4.37s	remaining: 4.26s
152:	learn: 11.4036255	total: 4.4s	remaining: 4.23s
153:	learn: 11.3539311	total: 4.44s	remaining: 4.21s
154:	learn: 11.2810182	total: 4.47s	remaining: 4.18s
155:	learn: 11.2291051	total: 4.5s	remaining: 4.16s
156:	learn: 11.1684511	total: 4.53s	remaining: 4.13s
157:	learn: 11.0820909	total: 4.56s	remaining: 4.1s
158:	learn: 11.0151771	total: 4.59s	remaining: 4.07s
159:	learn: 10.9854451	total: 4.61s	remaining: 4.04s
160:	learn: 10.9538428	total: 4.64s	remaining: 4.01s
161:	learn: 10.9071380	total: 4.67s	remaining: 3.98s
162:	learn: 10.8506541	total: 4.7s	remaining: 3.95s
163:	learn: 10.7895632	total: 4.73s	remaining: 3.92s
164:	learn: 10.7104166	total: 4.76s	remaining: 3.9s
165:	learn: 10.6713716	total: 4.79s	remaining: 3.87s
166:	learn: 10.6075628	total: 4.82s	remaining: 3.83s
167:	learn: 10.5513657	total: 4.85s	remaining: 3.81s
168:	learn: 10.5308283	total: 4.88s	remaining: 3.78s
169:	learn: 10.5023957	total: 4.9s	remaining: 3.75s
170:	learn: 10.4435313	total: 4.93s	remaining: 3.72s
171:	learn: 10.4072323	total: 4.97s	remaining: 3.7s
172:	learn: 10.3655510	total: 5s	remaining: 3.67s
173:	learn: 10.3243121	total: 5.02s	remaining: 3.64s
174:	learn: 10.2931771	total: 5.05s	remaining: 3.61s
175:	learn: 10.2558381	total: 5.09s	remaining: 3.58s
176:	learn: 10.2092526	total: 5.11s	remaining: 3.55s
177:	learn: 10.1711544	total: 5.14s	remaining: 3.52s
178:	learn: 10.1456963	total: 5.17s	remaining: 3.49s
179:	learn: 10.0920598	total: 5.19s	remaining: 3.46s
180:	learn: 10.0733859	total: 5.23s	remaining: 3.44s
181:	learn: 10.0472528	total: 5.25s	remaining: 3.41s
182:	learn: 10.0011592	total: 5.28s	remaining: 3.38s
183:	learn: 9.9794945	total: 5.32s	remaining: 3.36s
184:	learn: 9.9585906	total: 5.35s	remaining: 3.33s
185:	learn: 9.9399622	total: 5.38s	remaining: 3.3s
186:	learn: 9.9029023	total: 5.41s	remaining: 3.27s
187:	learn: 9.8554746	total: 5.43s	remaining: 3.24s
188:	learn: 9.8238680	total: 5.47s	remaining: 3.21s
189:	learn: 9.7666554	total: 5.5s	remaining: 3.19s
190:	learn: 9.7207381	total: 5.53s	remaining: 3.15s
191:	learn: 9.6569385	total: 5.56s	remaining: 3.13s
192:	learn: 9.6385185	total: 5.58s	remaining: 3.1s
193:	learn: 9.6202811	total: 5.61s	remaining: 3.06s
194:	learn: 9.5971883	total: 5.64s	remaining: 3.04s
195:	learn: 9.5799642	total: 5.66s	remaining: 3s
196:	learn: 9.5177746	total: 5.7s	remaining: 2.98s
197:	learn: 9.4886409	total: 5.74s	remaining: 2.95s
198:	learn: 9.4664307	total: 5.76s	remaining: 2.92s
199:	learn: 9.4000552	total: 5.79s	remaining: 2.9s
200:	learn: 9.3423940	total: 5.82s	remaining: 2.87s
201:	learn: 9.2917605	total: 5.84s	remaining: 2.83s
202:	learn: 9.2787639	total: 5.87s	remaining: 2.81s
203:	learn: 9.2348560	total: 5.9s	remaining: 2.78s
204:	learn: 9.2163272	total: 5.93s	remaining: 2.75s
205:	learn: 9.1475795	total: 5.97s	remaining: 2.72s
206:	learn: 9.1152705	total: 6s	remaining: 2.69s
207:	learn: 9.0832275	total: 6.02s	remaining: 2.66s
208:	learn: 9.0497331	total: 6.05s	remaining: 2.63s
209:	learn: 8.9884684	total: 6.08s	remaining: 2.6s
210:	learn: 8.9704690	total: 6.1s	remaining: 2.57s
211:	learn: 8.9489198	total: 6.13s	remaining: 2.54s
212:	learn: 8.9309060	total: 6.16s	remaining: 2.52s
213:	learn: 8.8812512	total: 6.2s	remaining: 2.49s
214:	learn: 8.8596725	total: 6.23s	remaining: 2.46s
215:	learn: 8.8300852	total: 6.26s	remaining: 2.43s
216:	learn: 8.7882493	total: 6.29s	remaining: 2.4s
217:	learn: 8.7527024	total: 6.31s	remaining: 2.37s
218:	learn: 8.7373901	total: 6.34s	remaining: 2.34s
219:	learn: 8.6853084	total: 6.37s	remaining: 2.31s
220:	learn: 8.6700353	total: 6.39s	remaining: 2.29s
221:	learn: 8.6488354	total: 6.44s	remaining: 2.26s
222:	learn: 8.6245087	total: 6.46s	remaining: 2.23s
223:	learn: 8.5803127	total: 6.49s	remaining: 2.2s
224:	learn: 8.5687287	total: 6.52s	remaining: 2.17s
225:	learn: 8.5524159	total: 6.54s	remaining: 2.14s
226:	learn: 8.5363118	total: 6.57s	remaining: 2.11s
227:	learn: 8.5173117	total: 6.6s	remaining: 2.08s
228:	learn: 8.5023907	total: 6.64s	remaining: 2.06s
229:	learn: 8.4758786	total: 6.67s	remaining: 2.03s
230:	learn: 8.4589042	total: 6.7s	remaining: 2s
231:	learn: 8.4178675	total: 6.73s	remaining: 1.97s
232:	learn: 8.4015768	total: 6.76s	remaining: 1.94s
233:	learn: 8.3538784	total: 6.78s	remaining: 1.91s
234:	learn: 8.3197095	total: 6.82s	remaining: 1.89s
235:	learn: 8.3012561	total: 6.85s	remaining: 1.86s
236:	learn: 8.2676774	total: 6.88s	remaining: 1.83s
237:	learn: 8.2345097	total: 6.9s	remaining: 1.8s
238:	learn: 8.1918901	total: 6.94s	remaining: 1.77s
239:	learn: 8.1628985	total: 6.96s	remaining: 1.74s
240:	learn: 8.1474180	total: 6.99s	remaining: 1.71s
241:	learn: 8.1325534	total: 7.01s	remaining: 1.68s
242:	learn: 8.1037771	total: 7.04s	remaining: 1.65s
243:	learn: 8.0648232	total: 7.08s	remaining: 1.63s
244:	learn: 8.0292260	total: 7.11s	remaining: 1.6s
245:	learn: 7.9979887	total: 7.14s	remaining: 1.57s
246:	learn: 7.9749906	total: 7.17s	remaining: 1.54s
247:	learn: 7.9536857	total: 7.2s	remaining: 1.51s
248:	learn: 7.9369033	total: 7.23s	remaining: 1.48s
249:	learn: 7.9041314	total: 7.25s	remaining: 1.45s
250:	learn: 7.8700779	total: 7.28s	remaining: 1.42s
251:	learn: 7.8589815	total: 7.32s	remaining: 1.39s
252:	learn: 7.8461408	total: 7.34s	remaining: 1.36s
253:	learn: 7.8203908	total: 7.37s	remaining: 1.33s
254:	learn: 7.8115877	total: 7.4s	remaining: 1.31s
255:	learn: 7.7972851	total: 7.43s	remaining: 1.28s
256:	learn: 7.7592777	total: 7.46s	remaining: 1.25s
257:	learn: 7.7415378	total: 7.49s	remaining: 1.22s
258:	learn: 7.7066130	total: 7.53s	remaining: 1.19s
259:	learn: 7.6688277	total: 7.55s	remaining: 1.16s
260:	learn: 7.6399303	total: 7.58s	remaining: 1.13s
261:	learn: 7.6294434	total: 7.61s	remaining: 1.1s
262:	learn: 7.5974222	total: 7.64s	remaining: 1.07s
263:	learn: 7.5614717	total: 7.67s	remaining: 1.04s
264:	learn: 7.5393196	total: 7.7s	remaining: 1.02s
265:	learn: 7.5304428	total: 7.73s	remaining: 988ms
266:	learn: 7.5005082	total: 7.76s	remaining: 959ms
267:	learn: 7.4930881	total: 7.79s	remaining: 930ms
268:	learn: 7.4618806	total: 7.81s	remaining: 900ms
269:	learn: 7.4324630	total: 7.84s	remaining: 871ms
270:	learn: 7.4024922	total: 7.87s	remaining: 842ms
271:	learn: 7.3795771	total: 7.9s	remaining: 813ms
272:	learn: 7.3582401	total: 7.93s	remaining: 784ms
273:	learn: 7.3332320	total: 7.97s	remaining: 756ms
274:	learn: 7.3134158	total: 7.99s	remaining: 727ms
275:	learn: 7.3047177	total: 8.02s	remaining: 698ms
276:	learn: 7.2835686	total: 8.05s	remaining: 669ms
277:	learn: 7.2590706	total: 8.08s	remaining: 639ms
278:	learn: 7.2389798	total: 8.1s	remaining: 610ms
279:	learn: 7.2238047	total: 8.14s	remaining: 581ms
280:	learn: 7.2091121	total: 8.17s	remaining: 552ms
281:	learn: 7.1841389	total: 8.2s	remaining: 523ms
282:	learn: 7.1551478	total: 8.23s	remaining: 494ms
283:	learn: 7.1417039	total: 8.25s	remaining: 465ms
284:	learn: 7.1149018	total: 8.28s	remaining: 436ms
285:	learn: 7.0940299	total: 8.31s	remaining: 407ms
286:	learn: 7.0642807	total: 8.33s	remaining: 377ms
287:	learn: 7.0578276	total: 8.37s	remaining: 349ms
288:	learn: 7.0282409	total: 8.39s	remaining: 320ms
289:	learn: 7.0175655	total: 8.43s	remaining: 291ms
290:	learn: 7.0117776	total: 8.46s	remaining: 262ms
291:	learn: 7.0065809	total: 8.49s	remaining: 233ms
292:	learn: 6.9844003	total: 8.51s	remaining: 203ms
293:	learn: 6.9588520	total: 8.54s	remaining: 174ms
294:	learn: 6.9319651	total: 8.57s	remaining: 145ms
295:	learn: 6.9184996	total: 8.6s	remaining: 116ms
296:	learn: 6.9089387	total: 8.63s	remaining: 87.2ms
297:	learn: 6.8834263	total: 8.66s	remaining: 58.1ms
298:	learn: 6.8646725	total: 8.69s	remaining: 29.1ms
299:	learn: 6.8583069	total: 8.72s	remaining: 0us
0:	learn: 46.4920187	total: 31.8ms	remaining: 9.52s
1:	learn: 45.6433575	total: 61ms	remaining: 9.09s
2:	learn: 44.9081373	total: 89.1ms	remaining: 8.82s
3:	learn: 44.2007033	total: 115ms	remaining: 8.54s
4:	learn: 43.6170398	total: 153ms	remaining: 9s
5:	learn: 42.9324480	total: 179ms	remaining: 8.76s
6:	learn: 42.1711446	total: 206ms	remaining: 8.61s
7:	learn: 41.4804333	total: 234ms	remaining: 8.53s
8:	learn: 40.7785369	total: 261ms	remaining: 8.43s
9:	learn: 40.1652912	total: 288ms	remaining: 8.36s
10:	learn: 39.7932467	total: 322ms	remaining: 8.47s
11:	learn: 39.1996124	total: 349ms	remaining: 8.38s
12:	learn: 38.7184015	total: 384ms	remaining: 8.49s
13:	learn: 38.2978784	total: 412ms	remaining: 8.41s
14:	learn: 37.9153936	total: 439ms	remaining: 8.34s
15:	learn: 37.4724861	total: 466ms	remaining: 8.27s
16:	learn: 36.9897929	total: 493ms	remaining: 8.21s
17:	learn: 36.5310822	total: 522ms	remaining: 8.18s
18:	learn: 35.8591207	total: 559ms	remaining: 8.27s
19:	learn: 35.3264196	total: 587ms	remaining: 8.21s
20:	learn: 34.9815543	total: 621ms	remaining: 8.25s
21:	learn: 34.5242647	total: 648ms	remaining: 8.19s
22:	learn: 34.0838298	total: 675ms	remaining: 8.13s
23:	learn: 33.5132614	total: 703ms	remaining: 8.08s
24:	learn: 33.1682884	total: 734ms	remaining: 8.07s
25:	learn: 32.6809656	total: 763ms	remaining: 8.04s
26:	learn: 32.2976643	total: 790ms	remaining: 7.99s
27:	learn: 31.8377309	total: 816ms	remaining: 7.92s
28:	learn: 31.4757870	total: 842ms	remaining: 7.87s
29:	learn: 31.1346090	total: 876ms	remaining: 7.89s
30:	learn: 30.8895702	total: 902ms	remaining: 7.83s
31:	learn: 30.4184979	total: 930ms	remaining: 7.79s
32:	learn: 30.1250221	total: 966ms	remaining: 7.82s
33:	learn: 29.7407593	total: 995ms	remaining: 7.79s
34:	learn: 29.4737622	total: 1.02s	remaining: 7.75s
35:	learn: 29.0366253	total: 1.05s	remaining: 7.71s
36:	learn: 28.5395737	total: 1.08s	remaining: 7.66s
37:	learn: 28.2499036	total: 1.11s	remaining: 7.68s
38:	learn: 28.0302095	total: 1.14s	remaining: 7.64s
39:	learn: 27.7630415	total: 1.17s	remaining: 7.63s
40:	learn: 27.5060679	total: 1.2s	remaining: 7.6s
41:	learn: 27.1860580	total: 1.23s	remaining: 7.55s
42:	learn: 26.9497401	total: 1.26s	remaining: 7.51s
43:	learn: 26.5636809	total: 1.28s	remaining: 7.46s
44:	learn: 26.3527818	total: 1.31s	remaining: 7.42s
45:	learn: 26.0947487	total: 1.32s	remaining: 7.27s
46:	learn: 25.8964846	total: 1.35s	remaining: 7.29s
47:	learn: 25.7357069	total: 1.38s	remaining: 7.26s
48:	learn: 25.4371960	total: 1.42s	remaining: 7.26s
49:	learn: 25.2603655	total: 1.44s	remaining: 7.22s
50:	learn: 25.0858697	total: 1.47s	remaining: 7.18s
51:	learn: 24.8939288	total: 1.5s	remaining: 7.15s
52:	learn: 24.6820962	total: 1.53s	remaining: 7.11s
53:	learn: 24.4191077	total: 1.55s	remaining: 7.08s
54:	learn: 24.2285108	total: 1.59s	remaining: 7.08s
55:	learn: 24.0237019	total: 1.62s	remaining: 7.06s
56:	learn: 23.8723096	total: 1.65s	remaining: 7.03s
57:	learn: 23.6426757	total: 1.68s	remaining: 6.99s
58:	learn: 23.3573717	total: 1.7s	remaining: 6.95s
59:	learn: 23.2066882	total: 1.73s	remaining: 6.91s
60:	learn: 23.0766272	total: 1.75s	remaining: 6.87s
61:	learn: 22.8991718	total: 1.78s	remaining: 6.84s
62:	learn: 22.7894335	total: 1.81s	remaining: 6.81s
63:	learn: 22.6367500	total: 1.85s	remaining: 6.83s
64:	learn: 22.4138205	total: 1.88s	remaining: 6.79s
65:	learn: 22.2650450	total: 1.9s	remaining: 6.75s
66:	learn: 22.1323603	total: 1.93s	remaining: 6.72s
67:	learn: 22.0038344	total: 1.96s	remaining: 6.68s
68:	learn: 21.8540317	total: 1.99s	remaining: 6.65s
69:	learn: 21.6608789	total: 2.01s	remaining: 6.62s
70:	learn: 21.4853082	total: 2.05s	remaining: 6.61s
71:	learn: 21.3715617	total: 2.09s	remaining: 6.61s
72:	learn: 21.2631638	total: 2.11s	remaining: 6.57s
73:	learn: 21.0630270	total: 2.14s	remaining: 6.54s
74:	learn: 20.9295137	total: 2.17s	remaining: 6.5s
75:	learn: 20.7587846	total: 2.19s	remaining: 6.47s
76:	learn: 20.6341259	total: 2.22s	remaining: 6.44s
77:	learn: 20.4852416	total: 2.25s	remaining: 6.42s
78:	learn: 20.3364151	total: 2.29s	remaining: 6.42s
79:	learn: 20.1513667	total: 2.33s	remaining: 6.41s
80:	learn: 20.0363336	total: 2.36s	remaining: 6.37s
81:	learn: 19.8984761	total: 2.38s	remaining: 6.34s
82:	learn: 19.7196215	total: 2.41s	remaining: 6.31s
83:	learn: 19.6326171	total: 2.44s	remaining: 6.28s
84:	learn: 19.5192244	total: 2.47s	remaining: 6.24s
85:	learn: 19.3415480	total: 2.5s	remaining: 6.22s
86:	learn: 19.1977806	total: 2.53s	remaining: 6.2s
87:	learn: 19.0755247	total: 2.56s	remaining: 6.18s
88:	learn: 18.9651152	total: 2.59s	remaining: 6.14s
89:	learn: 18.8207893	total: 2.62s	remaining: 6.11s
90:	learn: 18.6727740	total: 2.65s	remaining: 6.08s
91:	learn: 18.5581545	total: 2.67s	remaining: 6.05s
92:	learn: 18.3991083	total: 2.7s	remaining: 6.01s
93:	learn: 18.2684705	total: 2.74s	remaining: 6s
94:	learn: 18.1617452	total: 2.77s	remaining: 5.97s
95:	learn: 18.0459371	total: 2.8s	remaining: 5.94s
96:	learn: 17.9276342	total: 2.83s	remaining: 5.93s
97:	learn: 17.8174578	total: 2.86s	remaining: 5.89s
98:	learn: 17.7243604	total: 2.89s	remaining: 5.86s
99:	learn: 17.5858933	total: 2.91s	remaining: 5.83s
100:	learn: 17.4987099	total: 2.94s	remaining: 5.79s
101:	learn: 17.4074669	total: 2.97s	remaining: 5.77s
102:	learn: 17.3061897	total: 3s	remaining: 5.74s
103:	learn: 17.2198386	total: 3.03s	remaining: 5.7s
104:	learn: 17.1413444	total: 3.06s	remaining: 5.68s
105:	learn: 17.0254611	total: 3.09s	remaining: 5.65s
106:	learn: 16.8532099	total: 3.12s	remaining: 5.62s
107:	learn: 16.7502658	total: 3.15s	remaining: 5.59s
108:	learn: 16.6620525	total: 3.18s	remaining: 5.58s
109:	learn: 16.5150565	total: 3.21s	remaining: 5.55s
110:	learn: 16.3807346	total: 3.24s	remaining: 5.52s
111:	learn: 16.2864111	total: 3.27s	remaining: 5.49s
112:	learn: 16.2093028	total: 3.3s	remaining: 5.46s
113:	learn: 16.1230989	total: 3.33s	remaining: 5.43s
114:	learn: 16.0202012	total: 3.36s	remaining: 5.41s
115:	learn: 15.8709211	total: 3.39s	remaining: 5.38s
116:	learn: 15.8000542	total: 3.42s	remaining: 5.35s
117:	learn: 15.7243590	total: 3.45s	remaining: 5.32s
118:	learn: 15.6838028	total: 3.47s	remaining: 5.28s
119:	learn: 15.5999055	total: 3.5s	remaining: 5.25s
120:	learn: 15.4847533	total: 3.53s	remaining: 5.22s
121:	learn: 15.3935164	total: 3.57s	remaining: 5.21s
122:	learn: 15.3296377	total: 3.6s	remaining: 5.18s
123:	learn: 15.2519510	total: 3.62s	remaining: 5.14s
124:	learn: 15.1230133	total: 3.65s	remaining: 5.11s
125:	learn: 15.0423019	total: 3.68s	remaining: 5.08s
126:	learn: 14.9651901	total: 3.7s	remaining: 5.04s
127:	learn: 14.8934123	total: 3.73s	remaining: 5.01s
128:	learn: 14.7751491	total: 3.75s	remaining: 4.97s
129:	learn: 14.6892078	total: 3.78s	remaining: 4.94s
130:	learn: 14.5672638	total: 3.81s	remaining: 4.91s
131:	learn: 14.4952938	total: 3.83s	remaining: 4.88s
132:	learn: 14.4180105	total: 3.86s	remaining: 4.84s
133:	learn: 14.3259063	total: 3.88s	remaining: 4.81s
134:	learn: 14.2345804	total: 3.91s	remaining: 4.78s
135:	learn: 14.1483357	total: 3.93s	remaining: 4.74s
136:	learn: 14.0736010	total: 3.96s	remaining: 4.71s
137:	learn: 13.9937119	total: 3.98s	remaining: 4.67s
138:	learn: 13.8959716	total: 4.01s	remaining: 4.64s
139:	learn: 13.8412567	total: 4.04s	remaining: 4.62s
140:	learn: 13.7154644	total: 4.07s	remaining: 4.59s
141:	learn: 13.6297829	total: 4.09s	remaining: 4.55s
142:	learn: 13.5739671	total: 4.12s	remaining: 4.52s
143:	learn: 13.4995340	total: 4.14s	remaining: 4.49s
144:	learn: 13.4419790	total: 4.17s	remaining: 4.46s
145:	learn: 13.3537206	total: 4.2s	remaining: 4.43s
146:	learn: 13.2933505	total: 4.23s	remaining: 4.4s
147:	learn: 13.2556145	total: 4.26s	remaining: 4.37s
148:	learn: 13.1895569	total: 4.28s	remaining: 4.34s
149:	learn: 13.0743749	total: 4.31s	remaining: 4.31s
150:	learn: 12.9866329	total: 4.33s	remaining: 4.27s
151:	learn: 12.9104275	total: 4.36s	remaining: 4.24s
152:	learn: 12.8577271	total: 4.38s	remaining: 4.21s
153:	learn: 12.8256294	total: 4.41s	remaining: 4.18s
154:	learn: 12.7696590	total: 4.43s	remaining: 4.14s
155:	learn: 12.7209084	total: 4.46s	remaining: 4.12s
156:	learn: 12.6674046	total: 4.49s	remaining: 4.09s
157:	learn: 12.5958375	total: 4.52s	remaining: 4.06s
158:	learn: 12.5324216	total: 4.54s	remaining: 4.03s
159:	learn: 12.4750343	total: 4.57s	remaining: 4s
160:	learn: 12.4460476	total: 4.59s	remaining: 3.97s
161:	learn: 12.3931726	total: 4.62s	remaining: 3.94s
162:	learn: 12.3423679	total: 4.64s	remaining: 3.9s
163:	learn: 12.2404837	total: 4.67s	remaining: 3.87s
164:	learn: 12.1393154	total: 4.7s	remaining: 3.85s
165:	learn: 12.0493899	total: 4.72s	remaining: 3.81s
166:	learn: 11.9978027	total: 4.75s	remaining: 3.78s
167:	learn: 11.9099690	total: 4.77s	remaining: 3.75s
168:	learn: 11.8102813	total: 4.8s	remaining: 3.72s
169:	learn: 11.7900460	total: 4.82s	remaining: 3.69s
170:	learn: 11.6614467	total: 4.85s	remaining: 3.66s
171:	learn: 11.6131631	total: 4.87s	remaining: 3.63s
172:	learn: 11.5629996	total: 4.91s	remaining: 3.6s
173:	learn: 11.5169908	total: 4.94s	remaining: 3.58s
174:	learn: 11.4660439	total: 4.96s	remaining: 3.54s
175:	learn: 11.3919483	total: 4.99s	remaining: 3.51s
176:	learn: 11.3145316	total: 5.01s	remaining: 3.48s
177:	learn: 11.2776601	total: 5.04s	remaining: 3.45s
178:	learn: 11.2271053	total: 5.06s	remaining: 3.42s
179:	learn: 11.1499719	total: 5.09s	remaining: 3.39s
180:	learn: 11.0826417	total: 5.12s	remaining: 3.37s
181:	learn: 11.0345062	total: 5.14s	remaining: 3.34s
182:	learn: 10.9747957	total: 5.17s	remaining: 3.31s
183:	learn: 10.9504835	total: 5.2s	remaining: 3.27s
184:	learn: 10.8920732	total: 5.22s	remaining: 3.25s
185:	learn: 10.8332793	total: 5.25s	remaining: 3.21s
186:	learn: 10.7563237	total: 5.27s	remaining: 3.19s
187:	learn: 10.6822868	total: 5.3s	remaining: 3.15s
188:	learn: 10.6056324	total: 5.33s	remaining: 3.13s
189:	learn: 10.5266557	total: 5.36s	remaining: 3.1s
190:	learn: 10.4930964	total: 5.38s	remaining: 3.07s
191:	learn: 10.4201879	total: 5.41s	remaining: 3.04s
192:	learn: 10.3397888	total: 5.44s	remaining: 3.01s
193:	learn: 10.2865417	total: 5.46s	remaining: 2.98s
194:	learn: 10.2334779	total: 5.49s	remaining: 2.95s
195:	learn: 10.1692880	total: 5.51s	remaining: 2.92s
196:	learn: 10.0710712	total: 5.54s	remaining: 2.9s
197:	learn: 10.0112189	total: 5.57s	remaining: 2.87s
198:	learn: 9.9312531	total: 5.59s	remaining: 2.84s
199:	learn: 9.8522991	total: 5.62s	remaining: 2.81s
200:	learn: 9.8089200	total: 5.64s	remaining: 2.78s
201:	learn: 9.7508922	total: 5.67s	remaining: 2.75s
202:	learn: 9.7146850	total: 5.7s	remaining: 2.72s
203:	learn: 9.6641129	total: 5.72s	remaining: 2.69s
204:	learn: 9.6327075	total: 5.75s	remaining: 2.66s
205:	learn: 9.5932487	total: 5.78s	remaining: 2.64s
206:	learn: 9.5445036	total: 5.8s	remaining: 2.61s
207:	learn: 9.4948826	total: 5.83s	remaining: 2.58s
208:	learn: 9.4535103	total: 5.85s	remaining: 2.55s
209:	learn: 9.4123413	total: 5.88s	remaining: 2.52s
210:	learn: 9.3702571	total: 5.9s	remaining: 2.49s
211:	learn: 9.3376174	total: 5.93s	remaining: 2.46s
212:	learn: 9.2978132	total: 5.96s	remaining: 2.43s
213:	learn: 9.2585597	total: 5.99s	remaining: 2.4s
214:	learn: 9.2229218	total: 6.01s	remaining: 2.38s
215:	learn: 9.1931978	total: 6.03s	remaining: 2.35s
216:	learn: 9.1391962	total: 6.06s	remaining: 2.32s
217:	learn: 9.1177140	total: 6.08s	remaining: 2.29s
218:	learn: 9.0779325	total: 6.1s	remaining: 2.26s
219:	learn: 9.0291866	total: 6.13s	remaining: 2.23s
220:	learn: 9.0063703	total: 6.15s	remaining: 2.2s
221:	learn: 8.9747579	total: 6.18s	remaining: 2.17s
222:	learn: 8.9452822	total: 6.21s	remaining: 2.14s
223:	learn: 8.8954806	total: 6.24s	remaining: 2.12s
224:	learn: 8.8756565	total: 6.26s	remaining: 2.09s
225:	learn: 8.8362862	total: 6.29s	remaining: 2.06s
226:	learn: 8.7994104	total: 6.31s	remaining: 2.03s
227:	learn: 8.7388797	total: 6.33s	remaining: 2s
228:	learn: 8.7011029	total: 6.36s	remaining: 1.97s
229:	learn: 8.6617377	total: 6.38s	remaining: 1.94s
230:	learn: 8.6134302	total: 6.41s	remaining: 1.92s
231:	learn: 8.5572452	total: 6.44s	remaining: 1.89s
232:	learn: 8.5450933	total: 6.46s	remaining: 1.86s
233:	learn: 8.5296821	total: 6.48s	remaining: 1.83s
234:	learn: 8.4941428	total: 6.51s	remaining: 1.8s
235:	learn: 8.4682542	total: 6.53s	remaining: 1.77s
236:	learn: 8.4334184	total: 6.55s	remaining: 1.74s
237:	learn: 8.3841236	total: 6.58s	remaining: 1.71s
238:	learn: 8.3495185	total: 6.6s	remaining: 1.69s
239:	learn: 8.3255533	total: 6.64s	remaining: 1.66s
240:	learn: 8.2769513	total: 6.66s	remaining: 1.63s
241:	learn: 8.2392608	total: 6.69s	remaining: 1.6s
242:	learn: 8.2075977	total: 6.71s	remaining: 1.57s
243:	learn: 8.1675762	total: 6.74s	remaining: 1.55s
244:	learn: 8.1426498	total: 6.76s	remaining: 1.52s
245:	learn: 8.1212492	total: 6.79s	remaining: 1.49s
246:	learn: 8.1085819	total: 6.81s	remaining: 1.46s
247:	learn: 8.0970063	total: 6.83s	remaining: 1.43s
248:	learn: 8.0831142	total: 6.87s	remaining: 1.41s
249:	learn: 8.0682674	total: 6.89s	remaining: 1.38s
250:	learn: 8.0255439	total: 6.91s	remaining: 1.35s
251:	learn: 7.9910040	total: 6.94s	remaining: 1.32s
252:	learn: 7.9689255	total: 6.96s	remaining: 1.29s
253:	learn: 7.9472704	total: 6.99s	remaining: 1.26s
254:	learn: 7.9223583	total: 7.01s	remaining: 1.24s
255:	learn: 7.9037436	total: 7.03s	remaining: 1.21s
256:	learn: 7.8699909	total: 7.06s	remaining: 1.18s
257:	learn: 7.8368335	total: 7.09s	remaining: 1.15s
258:	learn: 7.8236324	total: 7.12s	remaining: 1.13s
259:	learn: 7.8036203	total: 7.14s	remaining: 1.1s
260:	learn: 7.7785106	total: 7.16s	remaining: 1.07s
261:	learn: 7.7378238	total: 7.19s	remaining: 1.04s
262:	learn: 7.7076815	total: 7.21s	remaining: 1.01s
263:	learn: 7.6857233	total: 7.24s	remaining: 987ms
264:	learn: 7.6580317	total: 7.26s	remaining: 959ms
265:	learn: 7.6172020	total: 7.3s	remaining: 933ms
266:	learn: 7.5867081	total: 7.32s	remaining: 905ms
267:	learn: 7.5596902	total: 7.34s	remaining: 877ms
268:	learn: 7.5299019	total: 7.37s	remaining: 849ms
269:	learn: 7.5009508	total: 7.39s	remaining: 822ms
270:	learn: 7.4926172	total: 7.42s	remaining: 794ms
271:	learn: 7.4658986	total: 7.44s	remaining: 766ms
272:	learn: 7.4522698	total: 7.47s	remaining: 739ms
273:	learn: 7.4302812	total: 7.5s	remaining: 712ms
274:	learn: 7.3941731	total: 7.54s	remaining: 685ms
275:	learn: 7.3799563	total: 7.56s	remaining: 658ms
276:	learn: 7.3656377	total: 7.59s	remaining: 630ms
277:	learn: 7.3315754	total: 7.62s	remaining: 603ms
278:	learn: 7.3180067	total: 7.65s	remaining: 576ms
279:	learn: 7.2955359	total: 7.67s	remaining: 548ms
280:	learn: 7.2752011	total: 7.71s	remaining: 521ms
281:	learn: 7.2453396	total: 7.74s	remaining: 494ms
282:	learn: 7.2349607	total: 7.77s	remaining: 467ms
283:	learn: 7.2063896	total: 7.8s	remaining: 439ms
284:	learn: 7.1899919	total: 7.83s	remaining: 412ms
285:	learn: 7.1788740	total: 7.85s	remaining: 384ms
286:	learn: 7.1567240	total: 7.88s	remaining: 357ms
287:	learn: 7.1370331	total: 7.9s	remaining: 329ms
288:	learn: 7.1180486	total: 7.94s	remaining: 302ms
289:	learn: 7.0971315	total: 7.97s	remaining: 275ms
290:	learn: 7.0784398	total: 8s	remaining: 248ms
291:	learn: 7.0605330	total: 8.03s	remaining: 220ms
292:	learn: 7.0273458	total: 8.05s	remaining: 192ms
293:	learn: 7.0133663	total: 8.08s	remaining: 165ms
294:	learn: 6.9946693	total: 8.11s	remaining: 137ms
295:	learn: 6.9685770	total: 8.14s	remaining: 110ms
296:	learn: 6.9527470	total: 8.17s	remaining: 82.6ms
297:	learn: 6.9305615	total: 8.2s	remaining: 55ms
298:	learn: 6.9039647	total: 8.23s	remaining: 27.5ms
299:	learn: 6.8927522	total: 8.26s	remaining: 0us
0:	learn: 46.2361874	total: 26.6ms	remaining: 7.94s
1:	learn: 45.3982106	total: 53.3ms	remaining: 7.95s
2:	learn: 44.6777488	total: 80.6ms	remaining: 7.98s
3:	learn: 43.7409965	total: 110ms	remaining: 8.16s
4:	learn: 43.2513213	total: 153ms	remaining: 9.05s
5:	learn: 42.4947195	total: 181ms	remaining: 8.87s
6:	learn: 41.9697708	total: 209ms	remaining: 8.77s
7:	learn: 41.2445289	total: 237ms	remaining: 8.67s
8:	learn: 40.5360490	total: 264ms	remaining: 8.53s
9:	learn: 39.9370297	total: 291ms	remaining: 8.44s
10:	learn: 39.1060281	total: 321ms	remaining: 8.43s
11:	learn: 38.6733181	total: 353ms	remaining: 8.46s
12:	learn: 38.3760896	total: 380ms	remaining: 8.38s
13:	learn: 37.9842684	total: 414ms	remaining: 8.45s
14:	learn: 37.4860092	total: 440ms	remaining: 8.37s
15:	learn: 36.9450018	total: 467ms	remaining: 8.28s
16:	learn: 36.5144396	total: 494ms	remaining: 8.22s
17:	learn: 36.0168729	total: 522ms	remaining: 8.17s
18:	learn: 35.4748970	total: 561ms	remaining: 8.29s
19:	learn: 35.0390482	total: 587ms	remaining: 8.22s
20:	learn: 34.6776156	total: 614ms	remaining: 8.15s
21:	learn: 34.3978384	total: 650ms	remaining: 8.22s
22:	learn: 34.0289970	total: 676ms	remaining: 8.14s
23:	learn: 33.6138883	total: 703ms	remaining: 8.08s
24:	learn: 33.2279106	total: 730ms	remaining: 8.03s
25:	learn: 32.8252468	total: 764ms	remaining: 8.05s
26:	learn: 32.4666371	total: 793ms	remaining: 8.02s
27:	learn: 32.1644689	total: 819ms	remaining: 7.96s
28:	learn: 31.6892888	total: 846ms	remaining: 7.91s
29:	learn: 31.4013853	total: 873ms	remaining: 7.86s
30:	learn: 31.0918470	total: 907ms	remaining: 7.87s
31:	learn: 30.7382925	total: 935ms	remaining: 7.83s
32:	learn: 30.3837621	total: 966ms	remaining: 7.82s
33:	learn: 29.9818772	total: 1s	remaining: 7.85s
34:	learn: 29.7173064	total: 1.03s	remaining: 7.81s
35:	learn: 29.2164083	total: 1.06s	remaining: 7.76s
36:	learn: 28.9131554	total: 1.09s	remaining: 7.73s
37:	learn: 28.5257233	total: 1.11s	remaining: 7.68s
38:	learn: 28.2965944	total: 1.15s	remaining: 7.68s
39:	learn: 28.0804622	total: 1.17s	remaining: 7.63s
40:	learn: 27.8304426	total: 1.2s	remaining: 7.61s
41:	learn: 27.4453684	total: 1.24s	remaining: 7.6s
42:	learn: 27.3017075	total: 1.26s	remaining: 7.55s
43:	learn: 27.0701323	total: 1.29s	remaining: 7.51s
44:	learn: 26.8649692	total: 1.32s	remaining: 7.46s
45:	learn: 26.6301705	total: 1.32s	remaining: 7.31s
46:	learn: 26.4341772	total: 1.35s	remaining: 7.27s
47:	learn: 26.2192154	total: 1.39s	remaining: 7.28s
48:	learn: 25.9631071	total: 1.43s	remaining: 7.3s
49:	learn: 25.5792340	total: 1.45s	remaining: 7.27s
50:	learn: 25.3916810	total: 1.48s	remaining: 7.23s
51:	learn: 25.2370365	total: 1.51s	remaining: 7.2s
52:	learn: 24.9965355	total: 1.54s	remaining: 7.16s
53:	learn: 24.8178278	total: 1.56s	remaining: 7.12s
54:	learn: 24.6443095	total: 1.59s	remaining: 7.08s
55:	learn: 24.4870683	total: 1.62s	remaining: 7.08s
56:	learn: 24.2978173	total: 1.66s	remaining: 7.08s
57:	learn: 24.1340740	total: 1.69s	remaining: 7.03s
58:	learn: 23.8586489	total: 1.71s	remaining: 7s
59:	learn: 23.6035925	total: 1.74s	remaining: 6.96s
60:	learn: 23.4530593	total: 1.76s	remaining: 6.92s
61:	learn: 23.2783421	total: 1.79s	remaining: 6.88s
62:	learn: 23.1030553	total: 1.82s	remaining: 6.85s
63:	learn: 22.9659704	total: 1.86s	remaining: 6.87s
64:	learn: 22.8283407	total: 1.9s	remaining: 6.86s
65:	learn: 22.7134955	total: 1.92s	remaining: 6.82s
66:	learn: 22.5782888	total: 1.95s	remaining: 6.79s
67:	learn: 22.4557438	total: 1.98s	remaining: 6.75s
68:	learn: 22.3316398	total: 2s	remaining: 6.71s
69:	learn: 22.1161650	total: 2.03s	remaining: 6.68s
70:	learn: 21.9806112	total: 2.07s	remaining: 6.67s
71:	learn: 21.8705364	total: 2.1s	remaining: 6.64s
72:	learn: 21.7450899	total: 2.13s	remaining: 6.63s
73:	learn: 21.5593132	total: 2.16s	remaining: 6.59s
74:	learn: 21.4206323	total: 2.18s	remaining: 6.55s
75:	learn: 21.2904965	total: 2.21s	remaining: 6.51s
76:	learn: 21.1898852	total: 2.24s	remaining: 6.48s
77:	learn: 21.0582226	total: 2.27s	remaining: 6.45s
78:	learn: 20.9414763	total: 2.3s	remaining: 6.44s
79:	learn: 20.7847655	total: 2.33s	remaining: 6.41s
80:	learn: 20.6413634	total: 2.36s	remaining: 6.38s
81:	learn: 20.5314598	total: 2.39s	remaining: 6.37s
82:	learn: 20.3298485	total: 2.42s	remaining: 6.33s
83:	learn: 20.2197693	total: 2.45s	remaining: 6.29s
84:	learn: 20.1021239	total: 2.47s	remaining: 6.25s
85:	learn: 20.0001932	total: 2.5s	remaining: 6.22s
86:	learn: 19.8813166	total: 2.53s	remaining: 6.2s
87:	learn: 19.7335638	total: 2.56s	remaining: 6.17s
88:	learn: 19.6116984	total: 2.59s	remaining: 6.14s
89:	learn: 19.4739468	total: 2.62s	remaining: 6.12s
90:	learn: 19.3561691	total: 2.65s	remaining: 6.08s
91:	learn: 19.2462168	total: 2.68s	remaining: 6.05s
92:	learn: 19.1423750	total: 2.7s	remaining: 6.02s
93:	learn: 19.0313643	total: 2.73s	remaining: 5.99s
94:	learn: 18.9323468	total: 2.77s	remaining: 5.98s
95:	learn: 18.8504682	total: 2.8s	remaining: 5.95s
96:	learn: 18.7831778	total: 2.83s	remaining: 5.92s
97:	learn: 18.6811943	total: 2.86s	remaining: 5.9s
98:	learn: 18.5908821	total: 2.89s	remaining: 5.87s
99:	learn: 18.4714725	total: 2.92s	remaining: 5.83s
100:	learn: 18.4186226	total: 2.94s	remaining: 5.8s
101:	learn: 18.3174294	total: 2.97s	remaining: 5.77s
102:	learn: 18.2499823	total: 3s	remaining: 5.75s
103:	learn: 18.1797568	total: 3.03s	remaining: 5.71s
104:	learn: 18.0633880	total: 3.06s	remaining: 5.68s
105:	learn: 17.9230666	total: 3.08s	remaining: 5.65s
106:	learn: 17.8255078	total: 3.12s	remaining: 5.63s
107:	learn: 17.7301999	total: 3.15s	remaining: 5.59s
108:	learn: 17.6643624	total: 3.17s	remaining: 5.56s
109:	learn: 17.5888284	total: 3.21s	remaining: 5.55s
110:	learn: 17.4829166	total: 3.24s	remaining: 5.52s
111:	learn: 17.3884998	total: 3.27s	remaining: 5.49s
112:	learn: 17.3190040	total: 3.3s	remaining: 5.46s
113:	learn: 17.2327089	total: 3.32s	remaining: 5.42s
114:	learn: 17.1647683	total: 3.36s	remaining: 5.4s
115:	learn: 17.0566172	total: 3.38s	remaining: 5.37s
116:	learn: 16.9678905	total: 3.42s	remaining: 5.34s
117:	learn: 16.8708649	total: 3.44s	remaining: 5.31s
118:	learn: 16.8044407	total: 3.47s	remaining: 5.28s
119:	learn: 16.7826952	total: 3.5s	remaining: 5.25s
120:	learn: 16.6904252	total: 3.52s	remaining: 5.21s
121:	learn: 16.6389060	total: 3.55s	remaining: 5.18s
122:	learn: 16.6175863	total: 3.58s	remaining: 5.15s
123:	learn: 16.5491464	total: 3.62s	remaining: 5.13s
124:	learn: 16.4907928	total: 3.65s	remaining: 5.11s
125:	learn: 16.4498651	total: 3.68s	remaining: 5.08s
126:	learn: 16.3775502	total: 3.7s	remaining: 5.05s
127:	learn: 16.3075622	total: 3.73s	remaining: 5.01s
128:	learn: 16.2141203	total: 3.76s	remaining: 4.98s
129:	learn: 16.1287920	total: 3.79s	remaining: 4.95s
130:	learn: 15.9776702	total: 3.81s	remaining: 4.92s
131:	learn: 15.8957114	total: 3.85s	remaining: 4.9s
132:	learn: 15.8623913	total: 3.88s	remaining: 4.88s
133:	learn: 15.7410770	total: 3.91s	remaining: 4.84s
134:	learn: 15.6800520	total: 3.94s	remaining: 4.81s
135:	learn: 15.6327751	total: 3.96s	remaining: 4.78s
136:	learn: 15.5499724	total: 3.99s	remaining: 4.75s
137:	learn: 15.4431979	total: 4.02s	remaining: 4.72s
138:	learn: 15.3542910	total: 4.05s	remaining: 4.69s
139:	learn: 15.3024922	total: 4.09s	remaining: 4.68s
140:	learn: 15.2729651	total: 4.12s	remaining: 4.65s
141:	learn: 15.1606911	total: 4.15s	remaining: 4.62s
142:	learn: 15.0979047	total: 4.18s	remaining: 4.59s
143:	learn: 15.0141377	total: 4.21s	remaining: 4.56s
144:	learn: 14.9689028	total: 4.23s	remaining: 4.52s
145:	learn: 14.8925843	total: 4.26s	remaining: 4.49s
146:	learn: 14.8587722	total: 4.3s	remaining: 4.47s
147:	learn: 14.8360363	total: 4.32s	remaining: 4.44s
148:	learn: 14.7676016	total: 4.36s	remaining: 4.42s
149:	learn: 14.6736810	total: 4.38s	remaining: 4.38s
150:	learn: 14.6261132	total: 4.41s	remaining: 4.35s
151:	learn: 14.5723176	total: 4.44s	remaining: 4.32s
152:	learn: 14.5100088	total: 4.46s	remaining: 4.29s
153:	learn: 14.4025427	total: 4.49s	remaining: 4.26s
154:	learn: 14.3282038	total: 4.53s	remaining: 4.24s
155:	learn: 14.2672601	total: 4.56s	remaining: 4.21s
156:	learn: 14.1558952	total: 4.59s	remaining: 4.18s
157:	learn: 14.0328502	total: 4.62s	remaining: 4.15s
158:	learn: 13.9769510	total: 4.65s	remaining: 4.12s
159:	learn: 13.9259386	total: 4.67s	remaining: 4.09s
160:	learn: 13.8712208	total: 4.7s	remaining: 4.06s
161:	learn: 13.8553696	total: 4.73s	remaining: 4.03s
162:	learn: 13.7500608	total: 4.76s	remaining: 4s
163:	learn: 13.7258160	total: 4.79s	remaining: 3.97s
164:	learn: 13.6125019	total: 4.82s	remaining: 3.94s
165:	learn: 13.5681577	total: 4.85s	remaining: 3.91s
166:	learn: 13.5101392	total: 4.87s	remaining: 3.88s
167:	learn: 13.4944170	total: 4.9s	remaining: 3.85s
168:	learn: 13.4758510	total: 4.94s	remaining: 3.83s
169:	learn: 13.4513818	total: 4.97s	remaining: 3.8s
170:	learn: 13.3378793	total: 4.99s	remaining: 3.77s
171:	learn: 13.2934120	total: 5.02s	remaining: 3.74s
172:	learn: 13.2442661	total: 5.05s	remaining: 3.71s
173:	learn: 13.1852300	total: 5.08s	remaining: 3.68s
174:	learn: 13.0772632	total: 5.11s	remaining: 3.65s
175:	learn: 13.0402354	total: 5.14s	remaining: 3.62s
176:	learn: 13.0047433	total: 5.17s	remaining: 3.59s
177:	learn: 12.9303834	total: 5.2s	remaining: 3.56s
178:	learn: 12.8598436	total: 5.22s	remaining: 3.53s
179:	learn: 12.7990665	total: 5.25s	remaining: 3.5s
180:	learn: 12.7095636	total: 5.28s	remaining: 3.47s
181:	learn: 12.6340644	total: 5.31s	remaining: 3.44s
182:	learn: 12.5621624	total: 5.35s	remaining: 3.42s
183:	learn: 12.5354249	total: 5.38s	remaining: 3.39s
184:	learn: 12.4829336	total: 5.41s	remaining: 3.36s
185:	learn: 12.4529388	total: 5.43s	remaining: 3.33s
186:	learn: 12.3788317	total: 5.46s	remaining: 3.3s
187:	learn: 12.3037316	total: 5.49s	remaining: 3.27s
188:	learn: 12.1983493	total: 5.51s	remaining: 3.24s
189:	learn: 12.1711675	total: 5.54s	remaining: 3.21s
190:	learn: 12.1217733	total: 5.58s	remaining: 3.18s
191:	learn: 12.0832600	total: 5.61s	remaining: 3.15s
192:	learn: 12.0127028	total: 5.63s	remaining: 3.12s
193:	learn: 11.9255354	total: 5.66s	remaining: 3.09s
194:	learn: 11.8908213	total: 5.69s	remaining: 3.06s
195:	learn: 11.8443328	total: 5.71s	remaining: 3.03s
196:	learn: 11.8103191	total: 5.74s	remaining: 3s
197:	learn: 11.7696031	total: 5.77s	remaining: 2.97s
198:	learn: 11.7200811	total: 5.8s	remaining: 2.94s
199:	learn: 11.6551205	total: 5.84s	remaining: 2.92s
200:	learn: 11.6238265	total: 5.87s	remaining: 2.89s
201:	learn: 11.5225634	total: 5.9s	remaining: 2.86s
202:	learn: 11.4468078	total: 5.93s	remaining: 2.83s
203:	learn: 11.4143074	total: 5.95s	remaining: 2.8s
204:	learn: 11.3831537	total: 5.98s	remaining: 2.77s
205:	learn: 11.3559117	total: 6.01s	remaining: 2.74s
206:	learn: 11.3453635	total: 6.05s	remaining: 2.72s
207:	learn: 11.3023110	total: 6.07s	remaining: 2.69s
208:	learn: 11.2751825	total: 6.1s	remaining: 2.66s
209:	learn: 11.2454377	total: 6.13s	remaining: 2.63s
210:	learn: 11.2300814	total: 6.15s	remaining: 2.6s
211:	learn: 11.1739504	total: 6.18s	remaining: 2.56s
212:	learn: 11.1388920	total: 6.21s	remaining: 2.54s
213:	learn: 11.0933003	total: 6.24s	remaining: 2.51s
214:	learn: 11.0336421	total: 6.27s	remaining: 2.48s
215:	learn: 11.0041887	total: 6.31s	remaining: 2.45s
216:	learn: 10.9756683	total: 6.34s	remaining: 2.42s
217:	learn: 10.9622324	total: 6.37s	remaining: 2.39s
218:	learn: 10.9400379	total: 6.39s	remaining: 2.36s
219:	learn: 10.9122171	total: 6.42s	remaining: 2.33s
220:	learn: 10.8702127	total: 6.45s	remaining: 2.31s
221:	learn: 10.8384354	total: 6.48s	remaining: 2.28s
222:	learn: 10.8064597	total: 6.51s	remaining: 2.25s
223:	learn: 10.7753840	total: 6.54s	remaining: 2.22s
224:	learn: 10.7500544	total: 6.57s	remaining: 2.19s
225:	learn: 10.7000854	total: 6.59s	remaining: 2.16s
226:	learn: 10.6788968	total: 6.62s	remaining: 2.13s
227:	learn: 10.6541308	total: 6.65s	remaining: 2.1s
228:	learn: 10.6163808	total: 6.69s	remaining: 2.07s
229:	learn: 10.5664491	total: 6.72s	remaining: 2.04s
230:	learn: 10.5384259	total: 6.74s	remaining: 2.01s
231:	learn: 10.5168722	total: 6.77s	remaining: 1.99s
232:	learn: 10.4880672	total: 6.81s	remaining: 1.96s
233:	learn: 10.4528880	total: 6.83s	remaining: 1.93s
234:	learn: 10.4358848	total: 6.87s	remaining: 1.9s
235:	learn: 10.4043764	total: 6.9s	remaining: 1.87s
236:	learn: 10.3835177	total: 6.92s	remaining: 1.84s
237:	learn: 10.3564621	total: 6.95s	remaining: 1.81s
238:	learn: 10.3300698	total: 6.98s	remaining: 1.78s
239:	learn: 10.3072404	total: 7s	remaining: 1.75s
240:	learn: 10.2885220	total: 7.04s	remaining: 1.72s
241:	learn: 10.2801250	total: 7.07s	remaining: 1.69s
242:	learn: 10.2598176	total: 7.1s	remaining: 1.67s
243:	learn: 10.2300900	total: 7.13s	remaining: 1.64s
244:	learn: 10.2013001	total: 7.16s	remaining: 1.61s
245:	learn: 10.1581217	total: 7.18s	remaining: 1.58s
246:	learn: 10.1499441	total: 7.21s	remaining: 1.55s
247:	learn: 10.1216778	total: 7.24s	remaining: 1.52s
248:	learn: 10.0802136	total: 7.27s	remaining: 1.49s
249:	learn: 10.0644908	total: 7.3s	remaining: 1.46s
250:	learn: 10.0271888	total: 7.33s	remaining: 1.43s
251:	learn: 9.9585656	total: 7.36s	remaining: 1.4s
252:	learn: 9.9156424	total: 7.39s	remaining: 1.37s
253:	learn: 9.9015845	total: 7.42s	remaining: 1.34s
254:	learn: 9.8802631	total: 7.44s	remaining: 1.31s
255:	learn: 9.8637488	total: 7.47s	remaining: 1.28s
256:	learn: 9.8431359	total: 7.5s	remaining: 1.25s
257:	learn: 9.8100809	total: 7.54s	remaining: 1.23s
258:	learn: 9.7856290	total: 7.57s	remaining: 1.2s
259:	learn: 9.7684665	total: 7.59s	remaining: 1.17s
260:	learn: 9.7491274	total: 7.62s	remaining: 1.14s
261:	learn: 9.7290952	total: 7.65s	remaining: 1.11s
262:	learn: 9.6988988	total: 7.68s	remaining: 1.08s
263:	learn: 9.6731295	total: 7.71s	remaining: 1.05s
264:	learn: 9.6511532	total: 7.74s	remaining: 1.02s
265:	learn: 9.6215242	total: 7.77s	remaining: 994ms
266:	learn: 9.6028004	total: 7.8s	remaining: 964ms
267:	learn: 9.5849636	total: 7.83s	remaining: 935ms
268:	learn: 9.5537664	total: 7.85s	remaining: 905ms
269:	learn: 9.5330605	total: 7.88s	remaining: 876ms
270:	learn: 9.5181912	total: 7.91s	remaining: 847ms
271:	learn: 9.5123758	total: 7.95s	remaining: 818ms
272:	learn: 9.4832216	total: 7.98s	remaining: 789ms
273:	learn: 9.4638778	total: 8.01s	remaining: 760ms
274:	learn: 9.4456890	total: 8.04s	remaining: 731ms
275:	learn: 9.4163159	total: 8.07s	remaining: 701ms
276:	learn: 9.3823442	total: 8.1s	remaining: 672ms
277:	learn: 9.3549677	total: 8.13s	remaining: 643ms
278:	learn: 9.3386790	total: 8.16s	remaining: 614ms
279:	learn: 9.3273180	total: 8.18s	remaining: 585ms
280:	learn: 9.2861700	total: 8.21s	remaining: 555ms
281:	learn: 9.2564421	total: 8.24s	remaining: 526ms
282:	learn: 9.2362960	total: 8.27s	remaining: 497ms
283:	learn: 9.2213087	total: 8.3s	remaining: 467ms
284:	learn: 9.2137366	total: 8.33s	remaining: 438ms
285:	learn: 9.2036812	total: 8.37s	remaining: 410ms
286:	learn: 9.1880212	total: 8.39s	remaining: 380ms
287:	learn: 9.1753952	total: 8.42s	remaining: 351ms
288:	learn: 9.1502121	total: 8.45s	remaining: 322ms
289:	learn: 9.1346178	total: 8.47s	remaining: 292ms
290:	learn: 9.1221911	total: 8.51s	remaining: 263ms
291:	learn: 9.0950561	total: 8.53s	remaining: 234ms
292:	learn: 9.0742575	total: 8.56s	remaining: 205ms
293:	learn: 9.0466144	total: 8.59s	remaining: 175ms
294:	learn: 8.9886202	total: 8.62s	remaining: 146ms
295:	learn: 8.9467069	total: 8.64s	remaining: 117ms
296:	learn: 8.9265029	total: 8.67s	remaining: 87.6ms
297:	learn: 8.8995921	total: 8.7s	remaining: 58.4ms
298:	learn: 8.8813384	total: 8.72s	remaining: 29.2ms
299:	learn: 8.8736256	total: 8.76s	remaining: 0us
0:	learn: 46.8188846	total: 27.7ms	remaining: 8.29s
1:	learn: 45.9726402	total: 55.6ms	remaining: 8.28s
2:	learn: 45.2144460	total: 82.4ms	remaining: 8.16s
3:	learn: 44.2563351	total: 109ms	remaining: 8.1s
4:	learn: 43.5408994	total: 137ms	remaining: 8.08s
5:	learn: 42.8364810	total: 163ms	remaining: 7.99s
6:	learn: 42.0153804	total: 194ms	remaining: 8.12s
7:	learn: 41.5473671	total: 219ms	remaining: 8.01s
8:	learn: 40.7744756	total: 244ms	remaining: 7.9s
9:	learn: 40.1702554	total: 270ms	remaining: 7.82s
10:	learn: 39.4636842	total: 295ms	remaining: 7.74s
11:	learn: 38.8831049	total: 308ms	remaining: 7.38s
12:	learn: 38.5197723	total: 332ms	remaining: 7.32s
13:	learn: 38.1990585	total: 358ms	remaining: 7.31s
14:	learn: 37.6657989	total: 384ms	remaining: 7.3s
15:	learn: 37.2969732	total: 422ms	remaining: 7.49s
16:	learn: 36.8221350	total: 448ms	remaining: 7.46s
17:	learn: 36.2123369	total: 473ms	remaining: 7.42s
18:	learn: 35.8755271	total: 500ms	remaining: 7.39s
19:	learn: 35.4739707	total: 525ms	remaining: 7.35s
20:	learn: 35.0012472	total: 550ms	remaining: 7.31s
21:	learn: 34.6477631	total: 575ms	remaining: 7.26s
22:	learn: 34.2247055	total: 607ms	remaining: 7.31s
23:	learn: 33.8047150	total: 635ms	remaining: 7.3s
24:	learn: 33.3972078	total: 658ms	remaining: 7.24s
25:	learn: 32.8076440	total: 683ms	remaining: 7.2s
26:	learn: 32.4957574	total: 708ms	remaining: 7.16s
27:	learn: 32.1823910	total: 733ms	remaining: 7.12s
28:	learn: 31.8761156	total: 758ms	remaining: 7.08s
29:	learn: 31.6118984	total: 782ms	remaining: 7.04s
30:	learn: 31.2041248	total: 809ms	remaining: 7.02s
31:	learn: 30.9798718	total: 840ms	remaining: 7.04s
32:	learn: 30.6632137	total: 870ms	remaining: 7.04s
33:	learn: 30.3572185	total: 897ms	remaining: 7.01s
34:	learn: 30.0045459	total: 922ms	remaining: 6.98s
35:	learn: 29.7559980	total: 951ms	remaining: 6.97s
36:	learn: 29.3862349	total: 975ms	remaining: 6.93s
37:	learn: 29.1066177	total: 1s	remaining: 6.89s
38:	learn: 28.8253904	total: 1.03s	remaining: 6.87s
39:	learn: 28.4917320	total: 1.06s	remaining: 6.89s
40:	learn: 28.2730169	total: 1.09s	remaining: 6.86s
41:	learn: 28.0652338	total: 1.11s	remaining: 6.83s
42:	learn: 27.8025307	total: 1.14s	remaining: 6.79s
43:	learn: 27.5627117	total: 1.16s	remaining: 6.76s
44:	learn: 27.3217632	total: 1.19s	remaining: 6.72s
45:	learn: 27.0112958	total: 1.21s	remaining: 6.69s
46:	learn: 26.8300808	total: 1.24s	remaining: 6.66s
47:	learn: 26.5816136	total: 1.26s	remaining: 6.64s
48:	learn: 26.3838749	total: 1.3s	remaining: 6.66s
49:	learn: 26.2191374	total: 1.32s	remaining: 6.63s
50:	learn: 26.0298048	total: 1.35s	remaining: 6.6s
51:	learn: 25.8685966	total: 1.38s	remaining: 6.57s
52:	learn: 25.5853885	total: 1.4s	remaining: 6.53s
53:	learn: 25.2325006	total: 1.43s	remaining: 6.49s
54:	learn: 25.0294895	total: 1.45s	remaining: 6.46s
55:	learn: 24.8123194	total: 1.48s	remaining: 6.43s
56:	learn: 24.6175769	total: 1.51s	remaining: 6.42s
57:	learn: 24.4799104	total: 1.53s	remaining: 6.39s
58:	learn: 24.2874293	total: 1.55s	remaining: 6.35s
59:	learn: 24.0996038	total: 1.58s	remaining: 6.32s
60:	learn: 23.8568310	total: 1.6s	remaining: 6.29s
61:	learn: 23.6508912	total: 1.63s	remaining: 6.26s
62:	learn: 23.4201097	total: 1.66s	remaining: 6.23s
63:	learn: 23.1941561	total: 1.68s	remaining: 6.21s
64:	learn: 23.0619226	total: 1.72s	remaining: 6.21s
65:	learn: 22.9049921	total: 1.74s	remaining: 6.18s
66:	learn: 22.7833057	total: 1.77s	remaining: 6.15s
67:	learn: 22.6428922	total: 1.79s	remaining: 6.13s
68:	learn: 22.4738494	total: 1.82s	remaining: 6.1s
69:	learn: 22.3126837	total: 1.85s	remaining: 6.07s
70:	learn: 22.1934569	total: 1.87s	remaining: 6.04s
71:	learn: 21.9921513	total: 1.91s	remaining: 6.04s
72:	learn: 21.7966100	total: 1.93s	remaining: 6.01s
73:	learn: 21.6703669	total: 1.96s	remaining: 5.98s
74:	learn: 21.5517108	total: 1.98s	remaining: 5.95s
75:	learn: 21.3795499	total: 2.01s	remaining: 5.92s
76:	learn: 21.2321877	total: 2.03s	remaining: 5.89s
77:	learn: 21.0921581	total: 2.06s	remaining: 5.86s
78:	learn: 20.9204877	total: 2.08s	remaining: 5.83s
79:	learn: 20.7078986	total: 2.12s	remaining: 5.83s
80:	learn: 20.6069210	total: 2.15s	remaining: 5.81s
81:	learn: 20.3718639	total: 2.17s	remaining: 5.78s
82:	learn: 20.2660046	total: 2.2s	remaining: 5.75s
83:	learn: 20.1453571	total: 2.23s	remaining: 5.72s
84:	learn: 20.0303912	total: 2.25s	remaining: 5.69s
85:	learn: 19.9530417	total: 2.27s	remaining: 5.66s
86:	learn: 19.8719239	total: 2.3s	remaining: 5.63s
87:	learn: 19.8051193	total: 2.33s	remaining: 5.62s
88:	learn: 19.6390791	total: 2.36s	remaining: 5.58s
89:	learn: 19.5163125	total: 2.36s	remaining: 5.51s
90:	learn: 19.3820098	total: 2.38s	remaining: 5.47s
91:	learn: 19.2634584	total: 2.41s	remaining: 5.44s
92:	learn: 19.1877570	total: 2.43s	remaining: 5.41s
93:	learn: 19.1136222	total: 2.45s	remaining: 5.38s
94:	learn: 19.0378846	total: 2.48s	remaining: 5.35s
95:	learn: 18.9699092	total: 2.5s	remaining: 5.32s
96:	learn: 18.8750815	total: 2.53s	remaining: 5.29s
97:	learn: 18.7851544	total: 2.56s	remaining: 5.29s
98:	learn: 18.6886359	total: 2.59s	remaining: 5.26s
99:	learn: 18.5967562	total: 2.61s	remaining: 5.23s
100:	learn: 18.5134464	total: 2.64s	remaining: 5.2s
101:	learn: 18.4449133	total: 2.66s	remaining: 5.17s
102:	learn: 18.3604967	total: 2.69s	remaining: 5.14s
103:	learn: 18.2256969	total: 2.71s	remaining: 5.11s
104:	learn: 18.1523158	total: 2.74s	remaining: 5.08s
105:	learn: 18.0374485	total: 2.77s	remaining: 5.07s
106:	learn: 17.9731649	total: 2.79s	remaining: 5.04s
107:	learn: 17.9251416	total: 2.82s	remaining: 5.01s
108:	learn: 17.8617656	total: 2.85s	remaining: 4.99s
109:	learn: 17.7727167	total: 2.87s	remaining: 4.96s
110:	learn: 17.6826822	total: 2.89s	remaining: 4.93s
111:	learn: 17.5769208	total: 2.92s	remaining: 4.9s
112:	learn: 17.4884222	total: 2.94s	remaining: 4.87s
113:	learn: 17.3765888	total: 2.97s	remaining: 4.85s
114:	learn: 17.3037030	total: 3.01s	remaining: 4.84s
115:	learn: 17.2153950	total: 3.03s	remaining: 4.81s
116:	learn: 17.1490540	total: 3.06s	remaining: 4.78s
117:	learn: 17.0634815	total: 3.08s	remaining: 4.75s
118:	learn: 16.9513537	total: 3.11s	remaining: 4.72s
119:	learn: 16.8224657	total: 3.13s	remaining: 4.7s
120:	learn: 16.7342682	total: 3.15s	remaining: 4.67s
121:	learn: 16.6438712	total: 3.18s	remaining: 4.64s
122:	learn: 16.5473010	total: 3.2s	remaining: 4.61s
123:	learn: 16.4734305	total: 3.23s	remaining: 4.59s
124:	learn: 16.3442257	total: 3.26s	remaining: 4.56s
125:	learn: 16.2501040	total: 3.28s	remaining: 4.53s
126:	learn: 16.1413869	total: 3.31s	remaining: 4.5s
127:	learn: 16.0650386	total: 3.33s	remaining: 4.47s
128:	learn: 15.9654002	total: 3.35s	remaining: 4.45s
129:	learn: 15.9016632	total: 3.38s	remaining: 4.42s
130:	learn: 15.8386094	total: 3.4s	remaining: 4.39s
131:	learn: 15.7695128	total: 3.43s	remaining: 4.36s
132:	learn: 15.6863810	total: 3.46s	remaining: 4.35s
133:	learn: 15.6014453	total: 3.49s	remaining: 4.32s
134:	learn: 15.5533660	total: 3.51s	remaining: 4.29s
135:	learn: 15.4234281	total: 3.54s	remaining: 4.27s
136:	learn: 15.3971004	total: 3.56s	remaining: 4.24s
137:	learn: 15.3398975	total: 3.59s	remaining: 4.21s
138:	learn: 15.2689760	total: 3.61s	remaining: 4.18s
139:	learn: 15.1651925	total: 3.63s	remaining: 4.15s
140:	learn: 15.1125683	total: 3.66s	remaining: 4.13s
141:	learn: 15.0573442	total: 3.69s	remaining: 4.1s
142:	learn: 15.0129880	total: 3.71s	remaining: 4.08s
143:	learn: 14.9597237	total: 3.74s	remaining: 4.05s
144:	learn: 14.9235224	total: 3.76s	remaining: 4.02s
145:	learn: 14.8333558	total: 3.79s	remaining: 3.99s
146:	learn: 14.7273903	total: 3.81s	remaining: 3.96s
147:	learn: 14.6622611	total: 3.83s	remaining: 3.94s
148:	learn: 14.5908471	total: 3.86s	remaining: 3.91s
149:	learn: 14.5076303	total: 3.89s	remaining: 3.89s
150:	learn: 14.4133074	total: 3.92s	remaining: 3.87s
151:	learn: 14.3479884	total: 3.95s	remaining: 3.85s
152:	learn: 14.2884168	total: 3.98s	remaining: 3.82s
153:	learn: 14.2238756	total: 4.01s	remaining: 3.8s
154:	learn: 14.1598526	total: 4.04s	remaining: 3.78s
155:	learn: 14.1006242	total: 4.06s	remaining: 3.75s
156:	learn: 14.0116182	total: 4.09s	remaining: 3.73s
157:	learn: 13.9456796	total: 4.13s	remaining: 3.71s
158:	learn: 13.8579899	total: 4.15s	remaining: 3.68s
159:	learn: 13.8094183	total: 4.18s	remaining: 3.66s
160:	learn: 13.6558280	total: 4.21s	remaining: 3.63s
161:	learn: 13.5837377	total: 4.23s	remaining: 3.6s
162:	learn: 13.5105749	total: 4.27s	remaining: 3.58s
163:	learn: 13.3959486	total: 4.29s	remaining: 3.56s
164:	learn: 13.3427701	total: 4.33s	remaining: 3.54s
165:	learn: 13.2742960	total: 4.36s	remaining: 3.52s
166:	learn: 13.2232946	total: 4.38s	remaining: 3.49s
167:	learn: 13.1639434	total: 4.41s	remaining: 3.47s
168:	learn: 13.1001998	total: 4.44s	remaining: 3.44s
169:	learn: 13.0187776	total: 4.46s	remaining: 3.42s
170:	learn: 12.9284509	total: 4.5s	remaining: 3.4s
171:	learn: 12.8564085	total: 4.53s	remaining: 3.37s
172:	learn: 12.7786756	total: 4.56s	remaining: 3.35s
173:	learn: 12.7404900	total: 4.59s	remaining: 3.32s
174:	learn: 12.6844545	total: 4.61s	remaining: 3.3s
175:	learn: 12.6021043	total: 4.64s	remaining: 3.27s
176:	learn: 12.5809817	total: 4.67s	remaining: 3.24s
177:	learn: 12.5380271	total: 4.69s	remaining: 3.22s
178:	learn: 12.5044811	total: 4.72s	remaining: 3.19s
179:	learn: 12.3824039	total: 4.76s	remaining: 3.17s
180:	learn: 12.3163074	total: 4.79s	remaining: 3.15s
181:	learn: 12.2260642	total: 4.82s	remaining: 3.12s
182:	learn: 12.1962262	total: 4.85s	remaining: 3.1s
183:	learn: 12.1075043	total: 4.87s	remaining: 3.07s
184:	learn: 12.0299051	total: 4.9s	remaining: 3.05s
185:	learn: 11.9750127	total: 4.93s	remaining: 3.02s
186:	learn: 11.9007112	total: 4.96s	remaining: 3s
187:	learn: 11.8169703	total: 5s	remaining: 2.98s
188:	learn: 11.7451722	total: 5.03s	remaining: 2.95s
189:	learn: 11.6844013	total: 5.05s	remaining: 2.92s
190:	learn: 11.5844322	total: 5.08s	remaining: 2.9s
191:	learn: 11.5389707	total: 5.11s	remaining: 2.87s
192:	learn: 11.4989050	total: 5.13s	remaining: 2.85s
193:	learn: 11.4305771	total: 5.16s	remaining: 2.82s
194:	learn: 11.3188820	total: 5.19s	remaining: 2.79s
195:	learn: 11.2915156	total: 5.24s	remaining: 2.78s
196:	learn: 11.2329580	total: 5.27s	remaining: 2.75s
197:	learn: 11.1759941	total: 5.3s	remaining: 2.73s
198:	learn: 11.1562433	total: 5.32s	remaining: 2.7s
199:	learn: 11.1118627	total: 5.35s	remaining: 2.68s
200:	learn: 11.0908712	total: 5.38s	remaining: 2.65s
201:	learn: 11.0365972	total: 5.41s	remaining: 2.62s
202:	learn: 10.9633932	total: 5.44s	remaining: 2.6s
203:	learn: 10.8837891	total: 5.47s	remaining: 2.57s
204:	learn: 10.8038584	total: 5.5s	remaining: 2.55s
205:	learn: 10.7729034	total: 5.53s	remaining: 2.52s
206:	learn: 10.7289468	total: 5.56s	remaining: 2.5s
207:	learn: 10.6734340	total: 5.58s	remaining: 2.47s
208:	learn: 10.6482350	total: 5.61s	remaining: 2.44s
209:	learn: 10.5975506	total: 5.64s	remaining: 2.42s
210:	learn: 10.5528228	total: 5.68s	remaining: 2.4s
211:	learn: 10.5370360	total: 5.71s	remaining: 2.37s
212:	learn: 10.5230215	total: 5.74s	remaining: 2.34s
213:	learn: 10.4857244	total: 5.77s	remaining: 2.32s
214:	learn: 10.4212276	total: 5.8s	remaining: 2.29s
215:	learn: 10.4085529	total: 5.82s	remaining: 2.26s
216:	learn: 10.3355719	total: 5.85s	remaining: 2.24s
217:	learn: 10.2785284	total: 5.88s	remaining: 2.21s
218:	learn: 10.2125565	total: 5.91s	remaining: 2.19s
219:	learn: 10.1797782	total: 5.94s	remaining: 2.16s
220:	learn: 10.1530157	total: 5.97s	remaining: 2.13s
221:	learn: 10.1300360	total: 6s	remaining: 2.11s
222:	learn: 10.1168807	total: 6.03s	remaining: 2.08s
223:	learn: 10.0969154	total: 6.05s	remaining: 2.05s
224:	learn: 10.0800220	total: 6.08s	remaining: 2.03s
225:	learn: 10.0495195	total: 6.12s	remaining: 2s
226:	learn: 10.0130864	total: 6.15s	remaining: 1.98s
227:	learn: 9.9733051	total: 6.17s	remaining: 1.95s
228:	learn: 9.9186624	total: 6.2s	remaining: 1.92s
229:	learn: 9.8408517	total: 6.24s	remaining: 1.9s
230:	learn: 9.8020626	total: 6.26s	remaining: 1.87s
231:	learn: 9.7754447	total: 6.29s	remaining: 1.84s
232:	learn: 9.7642804	total: 6.32s	remaining: 1.82s
233:	learn: 9.7368568	total: 6.35s	remaining: 1.79s
234:	learn: 9.7056387	total: 6.38s	remaining: 1.76s
235:	learn: 9.6936392	total: 6.41s	remaining: 1.74s
236:	learn: 9.6470411	total: 6.43s	remaining: 1.71s
237:	learn: 9.5906698	total: 6.46s	remaining: 1.68s
238:	learn: 9.5416290	total: 6.49s	remaining: 1.66s
239:	learn: 9.5255228	total: 6.52s	remaining: 1.63s
240:	learn: 9.4529465	total: 6.56s	remaining: 1.6s
241:	learn: 9.4106807	total: 6.58s	remaining: 1.58s
242:	learn: 9.3728828	total: 6.61s	remaining: 1.55s
243:	learn: 9.3399456	total: 6.64s	remaining: 1.52s
244:	learn: 9.3118951	total: 6.67s	remaining: 1.5s
245:	learn: 9.3005486	total: 6.69s	remaining: 1.47s
246:	learn: 9.2903549	total: 6.73s	remaining: 1.44s
247:	learn: 9.2453982	total: 6.75s	remaining: 1.42s
248:	learn: 9.2340791	total: 6.79s	remaining: 1.39s
249:	learn: 9.2022569	total: 6.81s	remaining: 1.36s
250:	learn: 9.1782703	total: 6.84s	remaining: 1.33s
251:	learn: 9.1383043	total: 6.87s	remaining: 1.31s
252:	learn: 9.1021623	total: 6.9s	remaining: 1.28s
253:	learn: 9.0892727	total: 6.92s	remaining: 1.25s
254:	learn: 9.0521468	total: 6.96s	remaining: 1.23s
255:	learn: 9.0384933	total: 6.99s	remaining: 1.2s
256:	learn: 9.0063168	total: 7.03s	remaining: 1.18s
257:	learn: 8.9956277	total: 7.05s	remaining: 1.15s
258:	learn: 8.9496921	total: 7.08s	remaining: 1.12s
259:	learn: 8.9036568	total: 7.11s	remaining: 1.09s
260:	learn: 8.8936773	total: 7.13s	remaining: 1.07s
261:	learn: 8.8516187	total: 7.16s	remaining: 1.04s
262:	learn: 8.8136929	total: 7.2s	remaining: 1.01s
263:	learn: 8.7857931	total: 7.23s	remaining: 986ms
264:	learn: 8.7542759	total: 7.26s	remaining: 959ms
265:	learn: 8.7388965	total: 7.29s	remaining: 931ms
266:	learn: 8.7298188	total: 7.31s	remaining: 904ms
267:	learn: 8.7213757	total: 7.34s	remaining: 876ms
268:	learn: 8.6906438	total: 7.37s	remaining: 849ms
269:	learn: 8.6693053	total: 7.39s	remaining: 821ms
270:	learn: 8.6470936	total: 7.42s	remaining: 794ms
271:	learn: 8.6096396	total: 7.46s	remaining: 768ms
272:	learn: 8.5746539	total: 7.49s	remaining: 741ms
273:	learn: 8.5560630	total: 7.52s	remaining: 714ms
274:	learn: 8.5399246	total: 7.55s	remaining: 686ms
275:	learn: 8.4986755	total: 7.58s	remaining: 659ms
276:	learn: 8.4692322	total: 7.6s	remaining: 631ms
277:	learn: 8.4447901	total: 7.63s	remaining: 604ms
278:	learn: 8.4280272	total: 7.66s	remaining: 576ms
279:	learn: 8.3947119	total: 7.69s	remaining: 550ms
280:	learn: 8.3554975	total: 7.72s	remaining: 522ms
281:	learn: 8.3221566	total: 7.75s	remaining: 495ms
282:	learn: 8.3131827	total: 7.78s	remaining: 467ms
283:	learn: 8.2891313	total: 7.8s	remaining: 440ms
284:	learn: 8.2839105	total: 7.83s	remaining: 412ms
285:	learn: 8.2757450	total: 7.86s	remaining: 385ms
286:	learn: 8.2388411	total: 7.88s	remaining: 357ms
287:	learn: 8.2074603	total: 7.91s	remaining: 330ms
288:	learn: 8.1701839	total: 7.96s	remaining: 303ms
289:	learn: 8.1498646	total: 7.99s	remaining: 275ms
290:	learn: 8.1195237	total: 8.02s	remaining: 248ms
291:	learn: 8.0995089	total: 8.04s	remaining: 220ms
292:	learn: 8.0775287	total: 8.07s	remaining: 193ms
293:	learn: 8.0527267	total: 8.1s	remaining: 165ms
294:	learn: 8.0201604	total: 8.13s	remaining: 138ms
295:	learn: 8.0106207	total: 8.16s	remaining: 110ms
296:	learn: 7.9693660	total: 8.2s	remaining: 82.8ms
297:	learn: 7.9463481	total: 8.22s	remaining: 55.2ms
298:	learn: 7.9254902	total: 8.25s	remaining: 27.6ms
299:	learn: 7.9210391	total: 8.26s	remaining: 0us
0:	learn: 27.7754516	total: 16.7ms	remaining: 3.31s
1:	learn: 27.5479796	total: 33.4ms	remaining: 3.3s
2:	learn: 27.2746068	total: 48.5ms	remaining: 3.18s
3:	learn: 27.0509917	total: 64.2ms	remaining: 3.15s
4:	learn: 26.8288361	total: 80.3ms	remaining: 3.13s
5:	learn: 26.6090156	total: 82.1ms	remaining: 2.65s
6:	learn: 26.3690628	total: 97.1ms	remaining: 2.68s
7:	learn: 26.1079649	total: 113ms	remaining: 2.71s
8:	learn: 25.8928130	total: 127ms	remaining: 2.7s
9:	learn: 25.6789848	total: 142ms	remaining: 2.69s
10:	learn: 25.4564779	total: 156ms	remaining: 2.68s
11:	learn: 25.2648743	total: 170ms	remaining: 2.66s
12:	learn: 25.0675347	total: 192ms	remaining: 2.76s
13:	learn: 24.8582580	total: 206ms	remaining: 2.74s
14:	learn: 24.6910007	total: 220ms	remaining: 2.71s
15:	learn: 24.4929561	total: 234ms	remaining: 2.7s
16:	learn: 24.2885185	total: 249ms	remaining: 2.68s
17:	learn: 24.1199034	total: 264ms	remaining: 2.66s
18:	learn: 23.9429025	total: 283ms	remaining: 2.69s
19:	learn: 23.8041721	total: 301ms	remaining: 2.71s
20:	learn: 23.6354352	total: 316ms	remaining: 2.69s
21:	learn: 23.4791358	total: 330ms	remaining: 2.67s
22:	learn: 23.3215290	total: 344ms	remaining: 2.65s
23:	learn: 23.1726818	total: 358ms	remaining: 2.62s
24:	learn: 23.0277027	total: 372ms	remaining: 2.6s
25:	learn: 22.8923537	total: 374ms	remaining: 2.5s
26:	learn: 22.7593722	total: 388ms	remaining: 2.49s
27:	learn: 22.6406604	total: 402ms	remaining: 2.47s
28:	learn: 22.4859315	total: 410ms	remaining: 2.42s
29:	learn: 22.3556820	total: 424ms	remaining: 2.4s
30:	learn: 22.2099725	total: 438ms	remaining: 2.39s
31:	learn: 22.0753449	total: 452ms	remaining: 2.38s
32:	learn: 21.9461998	total: 467ms	remaining: 2.36s
33:	learn: 21.8154273	total: 488ms	remaining: 2.38s
34:	learn: 21.6892586	total: 504ms	remaining: 2.38s
35:	learn: 21.5600367	total: 521ms	remaining: 2.37s
36:	learn: 21.4485913	total: 537ms	remaining: 2.37s
37:	learn: 21.3370937	total: 551ms	remaining: 2.35s
38:	learn: 21.2318811	total: 566ms	remaining: 2.34s
39:	learn: 21.1157424	total: 580ms	remaining: 2.32s
40:	learn: 20.9860009	total: 595ms	remaining: 2.31s
41:	learn: 20.8805147	total: 609ms	remaining: 2.29s
42:	learn: 20.7546802	total: 624ms	remaining: 2.28s
43:	learn: 20.6423188	total: 638ms	remaining: 2.26s
44:	learn: 20.5463305	total: 653ms	remaining: 2.25s
45:	learn: 20.4769432	total: 667ms	remaining: 2.23s
46:	learn: 20.4061650	total: 682ms	remaining: 2.22s
47:	learn: 20.3033767	total: 697ms	remaining: 2.21s
48:	learn: 20.2028133	total: 715ms	remaining: 2.2s
49:	learn: 20.1206445	total: 731ms	remaining: 2.19s
50:	learn: 20.0481763	total: 747ms	remaining: 2.18s
51:	learn: 19.9602950	total: 761ms	remaining: 2.17s
52:	learn: 19.8988906	total: 775ms	remaining: 2.15s
53:	learn: 19.8125644	total: 789ms	remaining: 2.13s
54:	learn: 19.6981945	total: 803ms	remaining: 2.12s
55:	learn: 19.6103203	total: 817ms	remaining: 2.1s
56:	learn: 19.5110711	total: 831ms	remaining: 2.08s
57:	learn: 19.4184024	total: 845ms	remaining: 2.07s
58:	learn: 19.3561775	total: 859ms	remaining: 2.05s
59:	learn: 19.2768465	total: 873ms	remaining: 2.04s
60:	learn: 19.1958903	total: 887ms	remaining: 2.02s
61:	learn: 19.1233600	total: 902ms	remaining: 2.01s
62:	learn: 19.0065985	total: 917ms	remaining: 1.99s
63:	learn: 18.8998023	total: 939ms	remaining: 2s
64:	learn: 18.8245329	total: 957ms	remaining: 1.99s
65:	learn: 18.7379541	total: 972ms	remaining: 1.97s
66:	learn: 18.6709669	total: 987ms	remaining: 1.96s
67:	learn: 18.6006341	total: 1s	remaining: 1.94s
68:	learn: 18.5123543	total: 1.02s	remaining: 1.93s
69:	learn: 18.4591770	total: 1.02s	remaining: 1.9s
70:	learn: 18.3860067	total: 1.03s	remaining: 1.88s
71:	learn: 18.2931874	total: 1.05s	remaining: 1.87s
72:	learn: 18.2328344	total: 1.06s	remaining: 1.85s
73:	learn: 18.1626099	total: 1.08s	remaining: 1.83s
74:	learn: 18.0943799	total: 1.09s	remaining: 1.82s
75:	learn: 18.0248063	total: 1.1s	remaining: 1.8s
76:	learn: 17.9584282	total: 1.12s	remaining: 1.79s
77:	learn: 17.8976438	total: 1.14s	remaining: 1.78s
78:	learn: 17.8196115	total: 1.16s	remaining: 1.77s
79:	learn: 17.7295852	total: 1.17s	remaining: 1.75s
80:	learn: 17.6647765	total: 1.18s	remaining: 1.74s
81:	learn: 17.6081123	total: 1.2s	remaining: 1.72s
82:	learn: 17.5557349	total: 1.21s	remaining: 1.71s
83:	learn: 17.4926230	total: 1.23s	remaining: 1.69s
84:	learn: 17.4091582	total: 1.24s	remaining: 1.68s
85:	learn: 17.3478901	total: 1.25s	remaining: 1.66s
86:	learn: 17.3103417	total: 1.26s	remaining: 1.64s
87:	learn: 17.2551484	total: 1.28s	remaining: 1.63s
88:	learn: 17.1874130	total: 1.29s	remaining: 1.61s
89:	learn: 17.1256332	total: 1.3s	remaining: 1.59s
90:	learn: 17.0654384	total: 1.31s	remaining: 1.57s
91:	learn: 16.9695926	total: 1.33s	remaining: 1.56s
92:	learn: 16.9228416	total: 1.34s	remaining: 1.54s
93:	learn: 16.8695236	total: 1.36s	remaining: 1.53s
94:	learn: 16.7889551	total: 1.38s	remaining: 1.52s
95:	learn: 16.7531495	total: 1.39s	remaining: 1.51s
96:	learn: 16.7193502	total: 1.41s	remaining: 1.49s
97:	learn: 16.6813193	total: 1.42s	remaining: 1.48s
98:	learn: 16.6175519	total: 1.43s	remaining: 1.46s
99:	learn: 16.5622700	total: 1.45s	remaining: 1.45s
100:	learn: 16.5103889	total: 1.46s	remaining: 1.43s
101:	learn: 16.4772897	total: 1.47s	remaining: 1.41s
102:	learn: 16.4286498	total: 1.49s	remaining: 1.4s
103:	learn: 16.3570934	total: 1.5s	remaining: 1.38s
104:	learn: 16.2917081	total: 1.51s	remaining: 1.37s
105:	learn: 16.2393000	total: 1.52s	remaining: 1.35s
106:	learn: 16.1723330	total: 1.54s	remaining: 1.33s
107:	learn: 16.1026656	total: 1.55s	remaining: 1.32s
108:	learn: 16.0324378	total: 1.56s	remaining: 1.3s
109:	learn: 15.9782961	total: 1.58s	remaining: 1.3s
110:	learn: 15.9444816	total: 1.6s	remaining: 1.28s
111:	learn: 15.8795534	total: 1.61s	remaining: 1.27s
112:	learn: 15.8283145	total: 1.63s	remaining: 1.25s
113:	learn: 15.7901413	total: 1.64s	remaining: 1.24s
114:	learn: 15.7337883	total: 1.65s	remaining: 1.22s
115:	learn: 15.6829439	total: 1.66s	remaining: 1.2s
116:	learn: 15.6288502	total: 1.68s	remaining: 1.19s
117:	learn: 15.5881368	total: 1.69s	remaining: 1.17s
118:	learn: 15.5469701	total: 1.7s	remaining: 1.16s
119:	learn: 15.5075988	total: 1.71s	remaining: 1.14s
120:	learn: 15.4666847	total: 1.73s	remaining: 1.13s
121:	learn: 15.4242174	total: 1.74s	remaining: 1.11s
122:	learn: 15.3582877	total: 1.75s	remaining: 1.1s
123:	learn: 15.3223592	total: 1.77s	remaining: 1.08s
124:	learn: 15.2856087	total: 1.79s	remaining: 1.07s
125:	learn: 15.2086007	total: 1.8s	remaining: 1.06s
126:	learn: 15.1666176	total: 1.81s	remaining: 1.04s
127:	learn: 15.1294993	total: 1.83s	remaining: 1.03s
128:	learn: 15.0998719	total: 1.84s	remaining: 1.01s
129:	learn: 15.0424857	total: 1.85s	remaining: 999ms
130:	learn: 14.9965072	total: 1.87s	remaining: 984ms
131:	learn: 14.9410314	total: 1.88s	remaining: 969ms
132:	learn: 14.9018107	total: 1.89s	remaining: 954ms
133:	learn: 14.8682689	total: 1.91s	remaining: 938ms
134:	learn: 14.8125665	total: 1.92s	remaining: 923ms
135:	learn: 14.7744128	total: 1.93s	remaining: 908ms
136:	learn: 14.7455632	total: 1.94s	remaining: 893ms
137:	learn: 14.7246694	total: 1.95s	remaining: 878ms
138:	learn: 14.6778548	total: 1.97s	remaining: 867ms
139:	learn: 14.6263454	total: 1.99s	remaining: 853ms
140:	learn: 14.5792278	total: 2s	remaining: 838ms
141:	learn: 14.5342542	total: 2.02s	remaining: 823ms
142:	learn: 14.4979554	total: 2.03s	remaining: 808ms
143:	learn: 14.4599096	total: 2.04s	remaining: 793ms
144:	learn: 14.4103353	total: 2.05s	remaining: 778ms
145:	learn: 14.3737086	total: 2.06s	remaining: 763ms
146:	learn: 14.3442122	total: 2.08s	remaining: 749ms
147:	learn: 14.3292787	total: 2.09s	remaining: 734ms
148:	learn: 14.3021843	total: 2.1s	remaining: 720ms
149:	learn: 14.2516396	total: 2.12s	remaining: 705ms
150:	learn: 14.2056883	total: 2.13s	remaining: 691ms
151:	learn: 14.1597842	total: 2.14s	remaining: 677ms
152:	learn: 14.1150082	total: 2.16s	remaining: 663ms
153:	learn: 14.0646832	total: 2.17s	remaining: 649ms
154:	learn: 14.0391238	total: 2.19s	remaining: 635ms
155:	learn: 13.9924610	total: 2.2s	remaining: 622ms
156:	learn: 13.9698870	total: 2.23s	remaining: 609ms
157:	learn: 13.9235625	total: 2.24s	remaining: 596ms
158:	learn: 13.8778960	total: 2.26s	remaining: 582ms
159:	learn: 13.8477459	total: 2.27s	remaining: 568ms
160:	learn: 13.8271223	total: 2.29s	remaining: 554ms
161:	learn: 13.7993025	total: 2.3s	remaining: 540ms
162:	learn: 13.7554835	total: 2.31s	remaining: 526ms
163:	learn: 13.7135517	total: 2.33s	remaining: 511ms
164:	learn: 13.6538805	total: 2.34s	remaining: 497ms
165:	learn: 13.6267398	total: 2.36s	remaining: 483ms
166:	learn: 13.5901508	total: 2.37s	remaining: 469ms
167:	learn: 13.5459635	total: 2.39s	remaining: 455ms
168:	learn: 13.5104344	total: 2.4s	remaining: 441ms
169:	learn: 13.4733551	total: 2.42s	remaining: 426ms
170:	learn: 13.4390118	total: 2.44s	remaining: 413ms
171:	learn: 13.4019789	total: 2.45s	remaining: 399ms
172:	learn: 13.3509403	total: 2.46s	remaining: 385ms
173:	learn: 13.3198863	total: 2.48s	remaining: 371ms
174:	learn: 13.2851907	total: 2.5s	remaining: 356ms
175:	learn: 13.2594567	total: 2.51s	remaining: 342ms
176:	learn: 13.2148093	total: 2.52s	remaining: 328ms
177:	learn: 13.1878251	total: 2.54s	remaining: 314ms
178:	learn: 13.1540507	total: 2.55s	remaining: 299ms
179:	learn: 13.1112550	total: 2.56s	remaining: 285ms
180:	learn: 13.0614430	total: 2.58s	remaining: 270ms
181:	learn: 13.0166699	total: 2.59s	remaining: 256ms
182:	learn: 12.9982666	total: 2.6s	remaining: 242ms
183:	learn: 12.9620737	total: 2.62s	remaining: 227ms
184:	learn: 12.9135083	total: 2.64s	remaining: 214ms
185:	learn: 12.8637351	total: 2.65s	remaining: 200ms
186:	learn: 12.8344083	total: 2.67s	remaining: 185ms
187:	learn: 12.8164884	total: 2.68s	remaining: 171ms
188:	learn: 12.7791441	total: 2.69s	remaining: 157ms
189:	learn: 12.7561604	total: 2.71s	remaining: 143ms
190:	learn: 12.7281886	total: 2.72s	remaining: 128ms
191:	learn: 12.7028767	total: 2.74s	remaining: 114ms
192:	learn: 12.6855837	total: 2.75s	remaining: 99.7ms
193:	learn: 12.6708305	total: 2.76s	remaining: 85.4ms
194:	learn: 12.6370119	total: 2.77s	remaining: 71.2ms
195:	learn: 12.6219431	total: 2.79s	remaining: 56.9ms
196:	learn: 12.5821011	total: 2.8s	remaining: 42.7ms
197:	learn: 12.5640325	total: 2.81s	remaining: 28.4ms
198:	learn: 12.5483138	total: 2.83s	remaining: 14.2ms
199:	learn: 12.5196132	total: 2.85s	remaining: 0us
0:	learn: 43.1697170	total: 12.1ms	remaining: 2.4s
1:	learn: 42.2901012	total: 19ms	remaining: 1.88s
2:	learn: 41.6816926	total: 30.9ms	remaining: 2.03s
3:	learn: 40.8914438	total: 43.2ms	remaining: 2.12s
4:	learn: 40.1880767	total: 55.5ms	remaining: 2.16s
5:	learn: 39.6273650	total: 68ms	remaining: 2.2s
6:	learn: 39.0451513	total: 69.7ms	remaining: 1.92s
7:	learn: 38.3812583	total: 82.5ms	remaining: 1.98s
8:	learn: 37.8015048	total: 95ms	remaining: 2.02s
9:	learn: 37.1969385	total: 107ms	remaining: 2.04s
10:	learn: 36.6867327	total: 127ms	remaining: 2.19s
11:	learn: 36.2634590	total: 145ms	remaining: 2.27s
12:	learn: 35.8323306	total: 159ms	remaining: 2.29s
13:	learn: 35.3308195	total: 172ms	remaining: 2.29s
14:	learn: 34.8817490	total: 186ms	remaining: 2.29s
15:	learn: 34.4104862	total: 199ms	remaining: 2.29s
16:	learn: 33.8982813	total: 212ms	remaining: 2.29s
17:	learn: 33.4650148	total: 216ms	remaining: 2.19s
18:	learn: 33.0792636	total: 229ms	remaining: 2.18s
19:	learn: 32.7412243	total: 233ms	remaining: 2.1s
20:	learn: 32.2667105	total: 245ms	remaining: 2.09s
21:	learn: 31.7834777	total: 258ms	remaining: 2.09s
22:	learn: 31.4015295	total: 270ms	remaining: 2.08s
23:	learn: 30.9848010	total: 283ms	remaining: 2.07s
24:	learn: 30.7903012	total: 296ms	remaining: 2.07s
25:	learn: 30.4816626	total: 308ms	remaining: 2.06s
26:	learn: 30.1870075	total: 325ms	remaining: 2.08s
27:	learn: 29.8012884	total: 341ms	remaining: 2.09s
28:	learn: 29.5472213	total: 354ms	remaining: 2.09s
29:	learn: 29.3024630	total: 367ms	remaining: 2.08s
30:	learn: 29.0053754	total: 379ms	remaining: 2.06s
31:	learn: 28.7041553	total: 391ms	remaining: 2.05s
32:	learn: 28.4538670	total: 403ms	remaining: 2.04s
33:	learn: 28.2116807	total: 416ms	remaining: 2.03s
34:	learn: 27.8699559	total: 420ms	remaining: 1.98s
35:	learn: 27.6936227	total: 432ms	remaining: 1.97s
36:	learn: 27.4499017	total: 444ms	remaining: 1.96s
37:	learn: 27.1972047	total: 457ms	remaining: 1.95s
38:	learn: 26.9634636	total: 469ms	remaining: 1.94s
39:	learn: 26.6713588	total: 476ms	remaining: 1.9s
40:	learn: 26.4731982	total: 488ms	remaining: 1.89s
41:	learn: 26.2832383	total: 501ms	remaining: 1.89s
42:	learn: 26.0425668	total: 514ms	remaining: 1.88s
43:	learn: 25.7759256	total: 526ms	remaining: 1.86s
44:	learn: 25.5870195	total: 540ms	remaining: 1.86s
45:	learn: 25.4326297	total: 561ms	remaining: 1.88s
46:	learn: 25.2511756	total: 577ms	remaining: 1.88s
47:	learn: 25.0030838	total: 592ms	remaining: 1.87s
48:	learn: 24.8115423	total: 606ms	remaining: 1.87s
49:	learn: 24.6707104	total: 621ms	remaining: 1.86s
50:	learn: 24.5209087	total: 635ms	remaining: 1.85s
51:	learn: 24.3724532	total: 650ms	remaining: 1.85s
52:	learn: 24.1750135	total: 652ms	remaining: 1.81s
53:	learn: 23.9994522	total: 667ms	remaining: 1.8s
54:	learn: 23.8535119	total: 680ms	remaining: 1.79s
55:	learn: 23.6581193	total: 694ms	remaining: 1.78s
56:	learn: 23.5366321	total: 708ms	remaining: 1.78s
57:	learn: 23.3942594	total: 717ms	remaining: 1.75s
58:	learn: 23.2117484	total: 731ms	remaining: 1.75s
59:	learn: 23.0825507	total: 745ms	remaining: 1.74s
60:	learn: 22.9814400	total: 762ms	remaining: 1.74s
61:	learn: 22.8627210	total: 782ms	remaining: 1.74s
62:	learn: 22.7373194	total: 798ms	remaining: 1.74s
63:	learn: 22.6803940	total: 812ms	remaining: 1.73s
64:	learn: 22.5211669	total: 827ms	remaining: 1.72s
65:	learn: 22.3557079	total: 842ms	remaining: 1.71s
66:	learn: 22.1954453	total: 856ms	remaining: 1.7s
67:	learn: 22.0940771	total: 870ms	remaining: 1.69s
68:	learn: 21.9646922	total: 884ms	remaining: 1.68s
69:	learn: 21.8296265	total: 898ms	remaining: 1.67s
70:	learn: 21.7577856	total: 902ms	remaining: 1.64s
71:	learn: 21.5929067	total: 916ms	remaining: 1.63s
72:	learn: 21.4688900	total: 930ms	remaining: 1.62s
73:	learn: 21.4016138	total: 944ms	remaining: 1.61s
74:	learn: 21.2699195	total: 963ms	remaining: 1.6s
75:	learn: 21.1770809	total: 982ms	remaining: 1.6s
76:	learn: 21.0712664	total: 999ms	remaining: 1.59s
77:	learn: 20.9363651	total: 1.01s	remaining: 1.58s
78:	learn: 20.8409020	total: 1.03s	remaining: 1.57s
79:	learn: 20.7494130	total: 1.04s	remaining: 1.56s
80:	learn: 20.6557400	total: 1.05s	remaining: 1.55s
81:	learn: 20.5140990	total: 1.07s	remaining: 1.54s
82:	learn: 20.4322198	total: 1.08s	remaining: 1.53s
83:	learn: 20.3570768	total: 1.09s	remaining: 1.51s
84:	learn: 20.2525592	total: 1.11s	remaining: 1.5s
85:	learn: 20.1749553	total: 1.12s	remaining: 1.49s
86:	learn: 20.0767399	total: 1.13s	remaining: 1.47s
87:	learn: 19.9905216	total: 1.15s	remaining: 1.46s
88:	learn: 19.9273793	total: 1.16s	remaining: 1.45s
89:	learn: 19.8323289	total: 1.17s	remaining: 1.43s
90:	learn: 19.7380101	total: 1.19s	remaining: 1.42s
91:	learn: 19.6819956	total: 1.21s	remaining: 1.41s
92:	learn: 19.6055868	total: 1.22s	remaining: 1.4s
93:	learn: 19.5275793	total: 1.23s	remaining: 1.39s
94:	learn: 19.4796461	total: 1.24s	remaining: 1.37s
95:	learn: 19.4055966	total: 1.26s	remaining: 1.36s
96:	learn: 19.3154915	total: 1.27s	remaining: 1.35s
97:	learn: 19.2285209	total: 1.28s	remaining: 1.33s
98:	learn: 19.1453986	total: 1.29s	remaining: 1.32s
99:	learn: 19.0669269	total: 1.31s	remaining: 1.31s
100:	learn: 18.9743440	total: 1.31s	remaining: 1.28s
101:	learn: 18.8703850	total: 1.32s	remaining: 1.27s
102:	learn: 18.8016702	total: 1.33s	remaining: 1.26s
103:	learn: 18.7629726	total: 1.35s	remaining: 1.24s
104:	learn: 18.6871791	total: 1.36s	remaining: 1.23s
105:	learn: 18.6344854	total: 1.37s	remaining: 1.22s
106:	learn: 18.5966202	total: 1.39s	remaining: 1.2s
107:	learn: 18.5436408	total: 1.4s	remaining: 1.19s
108:	learn: 18.4608796	total: 1.42s	remaining: 1.18s
109:	learn: 18.4015795	total: 1.43s	remaining: 1.17s
110:	learn: 18.3142664	total: 1.45s	remaining: 1.16s
111:	learn: 18.2596545	total: 1.46s	remaining: 1.15s
112:	learn: 18.1750225	total: 1.48s	remaining: 1.14s
113:	learn: 18.1496816	total: 1.49s	remaining: 1.12s
114:	learn: 18.1156018	total: 1.5s	remaining: 1.11s
115:	learn: 18.0391012	total: 1.51s	remaining: 1.1s
116:	learn: 17.9600807	total: 1.53s	remaining: 1.08s
117:	learn: 17.9126323	total: 1.54s	remaining: 1.07s
118:	learn: 17.8510394	total: 1.55s	remaining: 1.06s
119:	learn: 17.8213588	total: 1.56s	remaining: 1.04s
120:	learn: 17.7501747	total: 1.58s	remaining: 1.03s
121:	learn: 17.7081146	total: 1.59s	remaining: 1.02s
122:	learn: 17.6516747	total: 1.6s	remaining: 1s
123:	learn: 17.6215737	total: 1.62s	remaining: 995ms
124:	learn: 17.5499849	total: 1.64s	remaining: 983ms
125:	learn: 17.4687260	total: 1.65s	remaining: 970ms
126:	learn: 17.4289998	total: 1.67s	remaining: 957ms
127:	learn: 17.3844447	total: 1.68s	remaining: 945ms
128:	learn: 17.3469769	total: 1.69s	remaining: 932ms
129:	learn: 17.2870043	total: 1.71s	remaining: 919ms
130:	learn: 17.2443557	total: 1.72s	remaining: 907ms
131:	learn: 17.2215423	total: 1.74s	remaining: 894ms
132:	learn: 17.1793821	total: 1.75s	remaining: 882ms
133:	learn: 17.1248718	total: 1.76s	remaining: 869ms
134:	learn: 17.0768258	total: 1.78s	remaining: 856ms
135:	learn: 16.9920366	total: 1.79s	remaining: 843ms
136:	learn: 16.9292963	total: 1.81s	remaining: 831ms
137:	learn: 16.9070813	total: 1.82s	remaining: 818ms
138:	learn: 16.8610184	total: 1.85s	remaining: 811ms
139:	learn: 16.8208914	total: 1.87s	remaining: 800ms
140:	learn: 16.8046949	total: 1.88s	remaining: 787ms
141:	learn: 16.7601901	total: 1.9s	remaining: 775ms
142:	learn: 16.7253112	total: 1.91s	remaining: 762ms
143:	learn: 16.6521118	total: 1.93s	remaining: 749ms
144:	learn: 16.5761582	total: 1.94s	remaining: 736ms
145:	learn: 16.5032986	total: 1.95s	remaining: 723ms
146:	learn: 16.4926906	total: 1.97s	remaining: 709ms
147:	learn: 16.4393907	total: 1.98s	remaining: 696ms
148:	learn: 16.4017971	total: 1.99s	remaining: 682ms
149:	learn: 16.3163710	total: 2.01s	remaining: 669ms
150:	learn: 16.2894053	total: 2.02s	remaining: 655ms
151:	learn: 16.2479557	total: 2.04s	remaining: 645ms
152:	learn: 16.2173534	total: 2.06s	remaining: 632ms
153:	learn: 16.1282338	total: 2.07s	remaining: 618ms
154:	learn: 16.0974366	total: 2.08s	remaining: 605ms
155:	learn: 16.0640506	total: 2.1s	remaining: 591ms
156:	learn: 16.0382950	total: 2.11s	remaining: 577ms
157:	learn: 15.9692056	total: 2.12s	remaining: 564ms
158:	learn: 15.9384018	total: 2.13s	remaining: 550ms
159:	learn: 15.9142264	total: 2.15s	remaining: 537ms
160:	learn: 15.8968581	total: 2.16s	remaining: 523ms
161:	learn: 15.8594751	total: 2.17s	remaining: 509ms
162:	learn: 15.8034099	total: 2.18s	remaining: 496ms
163:	learn: 15.7651924	total: 2.2s	remaining: 482ms
164:	learn: 15.7126016	total: 2.21s	remaining: 469ms
165:	learn: 15.6502726	total: 2.22s	remaining: 455ms
166:	learn: 15.6406676	total: 2.23s	remaining: 442ms
167:	learn: 15.6251646	total: 2.25s	remaining: 429ms
168:	learn: 15.5907873	total: 2.27s	remaining: 417ms
169:	learn: 15.5704966	total: 2.29s	remaining: 403ms
170:	learn: 15.5450119	total: 2.3s	remaining: 390ms
171:	learn: 15.5329788	total: 2.31s	remaining: 376ms
172:	learn: 15.4931727	total: 2.33s	remaining: 363ms
173:	learn: 15.4652790	total: 2.34s	remaining: 350ms
174:	learn: 15.4405845	total: 2.35s	remaining: 336ms
175:	learn: 15.4209702	total: 2.36s	remaining: 322ms
176:	learn: 15.3658062	total: 2.38s	remaining: 309ms
177:	learn: 15.3510670	total: 2.39s	remaining: 295ms
178:	learn: 15.3270088	total: 2.4s	remaining: 282ms
179:	learn: 15.3128373	total: 2.41s	remaining: 268ms
180:	learn: 15.2763107	total: 2.43s	remaining: 255ms
181:	learn: 15.2494358	total: 2.44s	remaining: 241ms
182:	learn: 15.2167404	total: 2.45s	remaining: 228ms
183:	learn: 15.2050483	total: 2.47s	remaining: 215ms
184:	learn: 15.1911087	total: 2.49s	remaining: 202ms
185:	learn: 15.1726609	total: 2.5s	remaining: 188ms
186:	learn: 15.1584047	total: 2.51s	remaining: 175ms
187:	learn: 15.1265275	total: 2.52s	remaining: 161ms
188:	learn: 15.1167676	total: 2.54s	remaining: 148ms
189:	learn: 15.1023788	total: 2.55s	remaining: 134ms
190:	learn: 15.0833498	total: 2.56s	remaining: 121ms
191:	learn: 15.0541393	total: 2.58s	remaining: 107ms
192:	learn: 15.0175177	total: 2.59s	remaining: 93.9ms
193:	learn: 14.9889861	total: 2.6s	remaining: 80.5ms
194:	learn: 14.9783108	total: 2.61s	remaining: 67ms
195:	learn: 14.9675054	total: 2.63s	remaining: 53.6ms
196:	learn: 14.9419417	total: 2.64s	remaining: 40.2ms
197:	learn: 14.9049270	total: 2.65s	remaining: 26.8ms
198:	learn: 14.8657178	total: 2.67s	remaining: 13.4ms
199:	learn: 14.8560163	total: 2.68s	remaining: 0us
0:	learn: 46.5479203	total: 13.9ms	remaining: 2.77s
1:	learn: 46.1965422	total: 14.9ms	remaining: 1.48s
2:	learn: 45.4104405	total: 19.8ms	remaining: 1.3s
3:	learn: 44.7670932	total: 33.7ms	remaining: 1.65s
4:	learn: 44.2097827	total: 47.7ms	remaining: 1.86s
5:	learn: 43.6234060	total: 61.7ms	remaining: 2s
6:	learn: 42.9745233	total: 75.6ms	remaining: 2.08s
7:	learn: 42.4383352	total: 89.7ms	remaining: 2.15s
8:	learn: 41.9625996	total: 104ms	remaining: 2.21s
9:	learn: 41.5618491	total: 124ms	remaining: 2.35s
10:	learn: 40.9754608	total: 141ms	remaining: 2.42s
11:	learn: 40.3131661	total: 158ms	remaining: 2.47s
12:	learn: 40.1726884	total: 158ms	remaining: 2.27s
13:	learn: 39.6327597	total: 172ms	remaining: 2.28s
14:	learn: 38.9216029	total: 186ms	remaining: 2.29s
15:	learn: 38.4359295	total: 199ms	remaining: 2.29s
16:	learn: 38.0285724	total: 211ms	remaining: 2.27s
17:	learn: 37.8890661	total: 212ms	remaining: 2.14s
18:	learn: 37.5240866	total: 225ms	remaining: 2.14s
19:	learn: 37.2546259	total: 238ms	remaining: 2.14s
20:	learn: 36.8724730	total: 250ms	remaining: 2.13s
21:	learn: 36.5244229	total: 263ms	remaining: 2.13s
22:	learn: 36.1680839	total: 275ms	remaining: 2.12s
23:	learn: 35.9260145	total: 288ms	remaining: 2.11s
24:	learn: 35.5893297	total: 301ms	remaining: 2.11s
25:	learn: 35.2483174	total: 314ms	remaining: 2.1s
26:	learn: 34.8610318	total: 327ms	remaining: 2.09s
27:	learn: 34.5085787	total: 351ms	remaining: 2.15s
28:	learn: 34.1765279	total: 367ms	remaining: 2.17s
29:	learn: 33.8160972	total: 381ms	remaining: 2.16s
30:	learn: 33.5513656	total: 394ms	remaining: 2.15s
31:	learn: 33.1904941	total: 408ms	remaining: 2.14s
32:	learn: 32.9188745	total: 421ms	remaining: 2.13s
33:	learn: 32.5427842	total: 435ms	remaining: 2.13s
34:	learn: 32.2861786	total: 448ms	remaining: 2.11s
35:	learn: 31.9618964	total: 461ms	remaining: 2.1s
36:	learn: 31.6894780	total: 474ms	remaining: 2.09s
37:	learn: 31.3877790	total: 487ms	remaining: 2.08s
38:	learn: 31.1941957	total: 499ms	remaining: 2.06s
39:	learn: 30.9864930	total: 512ms	remaining: 2.05s
40:	learn: 30.7701528	total: 524ms	remaining: 2.03s
41:	learn: 30.4595135	total: 543ms	remaining: 2.04s
42:	learn: 30.2321559	total: 558ms	remaining: 2.04s
43:	learn: 29.9595345	total: 572ms	remaining: 2.03s
44:	learn: 29.7559932	total: 584ms	remaining: 2.01s
45:	learn: 29.5788743	total: 597ms	remaining: 2s
46:	learn: 29.4174545	total: 609ms	remaining: 1.98s
47:	learn: 29.2762863	total: 621ms	remaining: 1.97s
48:	learn: 29.0604108	total: 634ms	remaining: 1.95s
49:	learn: 28.8391908	total: 646ms	remaining: 1.94s
50:	learn: 28.6167650	total: 658ms	remaining: 1.92s
51:	learn: 28.4477051	total: 671ms	remaining: 1.91s
52:	learn: 28.2733201	total: 683ms	remaining: 1.89s
53:	learn: 28.0721287	total: 696ms	remaining: 1.88s
54:	learn: 27.9113692	total: 708ms	remaining: 1.86s
55:	learn: 27.7551300	total: 721ms	remaining: 1.85s
56:	learn: 27.5833850	total: 734ms	remaining: 1.84s
57:	learn: 27.4879621	total: 756ms	remaining: 1.85s
58:	learn: 27.3065781	total: 776ms	remaining: 1.85s
59:	learn: 27.1200195	total: 791ms	remaining: 1.84s
60:	learn: 26.9094739	total: 805ms	remaining: 1.83s
61:	learn: 26.7248026	total: 819ms	remaining: 1.82s
62:	learn: 26.5544946	total: 832ms	remaining: 1.81s
63:	learn: 26.3149124	total: 846ms	remaining: 1.8s
64:	learn: 26.1305605	total: 859ms	remaining: 1.78s
65:	learn: 25.9647345	total: 874ms	remaining: 1.77s
66:	learn: 25.9486619	total: 874ms	remaining: 1.74s
67:	learn: 25.7514773	total: 890ms	remaining: 1.73s
68:	learn: 25.5914153	total: 904ms	remaining: 1.72s
69:	learn: 25.4418716	total: 918ms	remaining: 1.71s
70:	learn: 25.3153784	total: 933ms	remaining: 1.69s
71:	learn: 25.1866820	total: 947ms	remaining: 1.68s
72:	learn: 25.0569396	total: 967ms	remaining: 1.68s
73:	learn: 24.9216649	total: 984ms	remaining: 1.68s
74:	learn: 24.7866921	total: 999ms	remaining: 1.66s
75:	learn: 24.6255132	total: 1s	remaining: 1.64s
76:	learn: 24.5131076	total: 1.02s	remaining: 1.63s
77:	learn: 24.3654371	total: 1.03s	remaining: 1.61s
78:	learn: 24.2212122	total: 1.05s	remaining: 1.6s
79:	learn: 24.0783049	total: 1.06s	remaining: 1.59s
80:	learn: 23.9731510	total: 1.07s	remaining: 1.58s
81:	learn: 23.8713141	total: 1.09s	remaining: 1.56s
82:	learn: 23.7635666	total: 1.1s	remaining: 1.55s
83:	learn: 23.6665356	total: 1.12s	remaining: 1.54s
84:	learn: 23.5447965	total: 1.13s	remaining: 1.53s
85:	learn: 23.4122832	total: 1.15s	remaining: 1.52s
86:	learn: 23.3355590	total: 1.16s	remaining: 1.51s
87:	learn: 23.2416701	total: 1.18s	remaining: 1.5s
88:	learn: 23.1214363	total: 1.2s	remaining: 1.5s
89:	learn: 23.0108340	total: 1.22s	remaining: 1.49s
90:	learn: 22.9164577	total: 1.24s	remaining: 1.48s
91:	learn: 22.7857812	total: 1.25s	remaining: 1.47s
92:	learn: 22.7460534	total: 1.25s	remaining: 1.44s
93:	learn: 22.6437072	total: 1.27s	remaining: 1.43s
94:	learn: 22.5934981	total: 1.28s	remaining: 1.42s
95:	learn: 22.4821095	total: 1.29s	remaining: 1.4s
96:	learn: 22.3913810	total: 1.31s	remaining: 1.39s
97:	learn: 22.2496946	total: 1.32s	remaining: 1.38s
98:	learn: 22.1724244	total: 1.33s	remaining: 1.36s
99:	learn: 22.0500554	total: 1.35s	remaining: 1.35s
100:	learn: 21.9566566	total: 1.36s	remaining: 1.33s
101:	learn: 21.8563483	total: 1.38s	remaining: 1.32s
102:	learn: 21.7553972	total: 1.4s	remaining: 1.32s
103:	learn: 21.6792686	total: 1.41s	remaining: 1.3s
104:	learn: 21.6079754	total: 1.43s	remaining: 1.29s
105:	learn: 21.5929760	total: 1.43s	remaining: 1.26s
106:	learn: 21.5018932	total: 1.44s	remaining: 1.25s
107:	learn: 21.3895189	total: 1.45s	remaining: 1.24s
108:	learn: 21.2905259	total: 1.46s	remaining: 1.22s
109:	learn: 21.1953813	total: 1.48s	remaining: 1.21s
110:	learn: 21.1006813	total: 1.49s	remaining: 1.2s
111:	learn: 20.9982205	total: 1.5s	remaining: 1.18s
112:	learn: 20.8903837	total: 1.52s	remaining: 1.17s
113:	learn: 20.8009606	total: 1.53s	remaining: 1.15s
114:	learn: 20.7355579	total: 1.54s	remaining: 1.14s
115:	learn: 20.6237427	total: 1.55s	remaining: 1.13s
116:	learn: 20.5455394	total: 1.57s	remaining: 1.11s
117:	learn: 20.4565531	total: 1.58s	remaining: 1.1s
118:	learn: 20.3850600	total: 1.59s	remaining: 1.08s
119:	learn: 20.2960184	total: 1.61s	remaining: 1.07s
120:	learn: 20.2227619	total: 1.63s	remaining: 1.06s
121:	learn: 20.1673058	total: 1.64s	remaining: 1.05s
122:	learn: 20.0830457	total: 1.66s	remaining: 1.04s
123:	learn: 19.9978525	total: 1.67s	remaining: 1.02s
124:	learn: 19.9026649	total: 1.68s	remaining: 1.01s
125:	learn: 19.8301038	total: 1.7s	remaining: 997ms
126:	learn: 19.7214176	total: 1.71s	remaining: 983ms
127:	learn: 19.6370517	total: 1.72s	remaining: 969ms
128:	learn: 19.5552843	total: 1.74s	remaining: 955ms
129:	learn: 19.4970036	total: 1.75s	remaining: 941ms
130:	learn: 19.3965589	total: 1.76s	remaining: 927ms
131:	learn: 19.3347552	total: 1.77s	remaining: 913ms
132:	learn: 19.2762190	total: 1.79s	remaining: 901ms
133:	learn: 19.2232518	total: 1.81s	remaining: 890ms
134:	learn: 19.1475310	total: 1.82s	remaining: 877ms
135:	learn: 19.0805701	total: 1.83s	remaining: 863ms
136:	learn: 19.0128371	total: 1.85s	remaining: 849ms
137:	learn: 18.9680086	total: 1.86s	remaining: 836ms
138:	learn: 18.9174216	total: 1.87s	remaining: 823ms
139:	learn: 18.8680366	total: 1.89s	remaining: 809ms
140:	learn: 18.7829878	total: 1.9s	remaining: 796ms
141:	learn: 18.7107500	total: 1.92s	remaining: 783ms
142:	learn: 18.6421677	total: 1.93s	remaining: 769ms
143:	learn: 18.5753031	total: 1.94s	remaining: 756ms
144:	learn: 18.4862395	total: 1.96s	remaining: 743ms
145:	learn: 18.4082316	total: 1.97s	remaining: 729ms
146:	learn: 18.3266085	total: 1.99s	remaining: 716ms
147:	learn: 18.2506431	total: 2s	remaining: 703ms
148:	learn: 18.1796791	total: 2.01s	remaining: 690ms
149:	learn: 18.1306152	total: 2.04s	remaining: 678ms
150:	learn: 18.0573844	total: 2.05s	remaining: 667ms
151:	learn: 18.0069354	total: 2.07s	remaining: 653ms
152:	learn: 17.9455723	total: 2.08s	remaining: 640ms
153:	learn: 17.8576984	total: 2.1s	remaining: 627ms
154:	learn: 17.7866536	total: 2.11s	remaining: 614ms
155:	learn: 17.7320554	total: 2.13s	remaining: 600ms
156:	learn: 17.6595894	total: 2.14s	remaining: 586ms
157:	learn: 17.5919900	total: 2.15s	remaining: 572ms
158:	learn: 17.5501369	total: 2.17s	remaining: 558ms
159:	learn: 17.4711366	total: 2.18s	remaining: 545ms
160:	learn: 17.4031363	total: 2.19s	remaining: 531ms
161:	learn: 17.3608073	total: 2.2s	remaining: 517ms
162:	learn: 17.3074670	total: 2.22s	remaining: 504ms
163:	learn: 17.2770806	total: 2.24s	remaining: 491ms
164:	learn: 17.2372800	total: 2.25s	remaining: 477ms
165:	learn: 17.1665382	total: 2.26s	remaining: 464ms
166:	learn: 17.0882798	total: 2.28s	remaining: 450ms
167:	learn: 17.0414853	total: 2.29s	remaining: 436ms
168:	learn: 17.0030811	total: 2.3s	remaining: 422ms
169:	learn: 16.9593570	total: 2.31s	remaining: 408ms
170:	learn: 16.9162939	total: 2.33s	remaining: 395ms
171:	learn: 16.8558710	total: 2.34s	remaining: 381ms
172:	learn: 16.8279565	total: 2.35s	remaining: 367ms
173:	learn: 16.7583842	total: 2.36s	remaining: 353ms
174:	learn: 16.7082108	total: 2.38s	remaining: 340ms
175:	learn: 16.6502448	total: 2.39s	remaining: 326ms
176:	learn: 16.5721270	total: 2.4s	remaining: 312ms
177:	learn: 16.5198206	total: 2.41s	remaining: 298ms
178:	learn: 16.4793099	total: 2.43s	remaining: 285ms
179:	learn: 16.4046956	total: 2.44s	remaining: 271ms
180:	learn: 16.3542826	total: 2.46s	remaining: 259ms
181:	learn: 16.2884172	total: 2.48s	remaining: 245ms
182:	learn: 16.2441536	total: 2.49s	remaining: 232ms
183:	learn: 16.1740433	total: 2.5s	remaining: 218ms
184:	learn: 16.1064635	total: 2.52s	remaining: 204ms
185:	learn: 16.0581162	total: 2.53s	remaining: 191ms
186:	learn: 16.0005626	total: 2.54s	remaining: 177ms
187:	learn: 15.9542569	total: 2.56s	remaining: 163ms
188:	learn: 15.9208452	total: 2.57s	remaining: 150ms
189:	learn: 15.8668580	total: 2.58s	remaining: 136ms
190:	learn: 15.8017183	total: 2.6s	remaining: 122ms
191:	learn: 15.7604054	total: 2.61s	remaining: 109ms
192:	learn: 15.7088199	total: 2.62s	remaining: 95ms
193:	learn: 15.6408719	total: 2.63s	remaining: 81.4ms
194:	learn: 15.5801848	total: 2.65s	remaining: 67.8ms
195:	learn: 15.5195155	total: 2.66s	remaining: 54.4ms
196:	learn: 15.4596622	total: 2.68s	remaining: 40.8ms
197:	learn: 15.4262513	total: 2.69s	remaining: 27.2ms
198:	learn: 15.3892694	total: 2.71s	remaining: 13.6ms
199:	learn: 15.3258600	total: 2.72s	remaining: 0us
0:	learn: 46.1737882	total: 12.6ms	remaining: 2.51s
1:	learn: 45.4520044	total: 19.5ms	remaining: 1.93s
2:	learn: 45.0712613	total: 31.8ms	remaining: 2.09s
3:	learn: 44.4457890	total: 44.3ms	remaining: 2.17s
4:	learn: 43.9047401	total: 56.9ms	remaining: 2.22s
5:	learn: 43.3984138	total: 72ms	remaining: 2.33s
6:	learn: 43.0280895	total: 91.1ms	remaining: 2.51s
7:	learn: 42.6728829	total: 110ms	remaining: 2.65s
8:	learn: 42.0283731	total: 126ms	remaining: 2.67s
9:	learn: 41.4824619	total: 141ms	remaining: 2.68s
10:	learn: 41.1526236	total: 155ms	remaining: 2.67s
11:	learn: 40.6345297	total: 170ms	remaining: 2.66s
12:	learn: 40.5265379	total: 171ms	remaining: 2.46s
13:	learn: 40.0618320	total: 184ms	remaining: 2.45s
14:	learn: 39.7463253	total: 198ms	remaining: 2.45s
15:	learn: 39.3126131	total: 213ms	remaining: 2.45s
16:	learn: 38.8978481	total: 226ms	remaining: 2.44s
17:	learn: 38.3600803	total: 240ms	remaining: 2.43s
18:	learn: 37.9697709	total: 245ms	remaining: 2.33s
19:	learn: 37.6592421	total: 259ms	remaining: 2.33s
20:	learn: 37.5825287	total: 259ms	remaining: 2.21s
21:	learn: 37.1758511	total: 274ms	remaining: 2.21s
22:	learn: 36.9226265	total: 289ms	remaining: 2.22s
23:	learn: 36.4830964	total: 306ms	remaining: 2.25s
24:	learn: 36.2956750	total: 324ms	remaining: 2.27s
25:	learn: 36.2646036	total: 325ms	remaining: 2.17s
26:	learn: 36.1010228	total: 340ms	remaining: 2.17s
27:	learn: 35.9338601	total: 354ms	remaining: 2.17s
28:	learn: 35.6285593	total: 368ms	remaining: 2.17s
29:	learn: 35.4083002	total: 383ms	remaining: 2.17s
30:	learn: 35.0885917	total: 396ms	remaining: 2.16s
31:	learn: 34.8838570	total: 410ms	remaining: 2.15s
32:	learn: 34.6938582	total: 424ms	remaining: 2.14s
33:	learn: 34.3973598	total: 437ms	remaining: 2.13s
34:	learn: 34.1237528	total: 449ms	remaining: 2.12s
35:	learn: 33.9305934	total: 462ms	remaining: 2.1s
36:	learn: 33.6681445	total: 476ms	remaining: 2.1s
37:	learn: 33.4661390	total: 489ms	remaining: 2.08s
38:	learn: 33.2201400	total: 502ms	remaining: 2.07s
39:	learn: 33.0285883	total: 518ms	remaining: 2.07s
40:	learn: 32.7765737	total: 539ms	remaining: 2.09s
41:	learn: 32.6197427	total: 555ms	remaining: 2.09s
42:	learn: 32.3330742	total: 560ms	remaining: 2.04s
43:	learn: 32.0626517	total: 574ms	remaining: 2.03s
44:	learn: 31.8298751	total: 588ms	remaining: 2.02s
45:	learn: 31.6245952	total: 601ms	remaining: 2.01s
46:	learn: 31.4127977	total: 615ms	remaining: 2s
47:	learn: 31.2323682	total: 628ms	remaining: 1.99s
48:	learn: 31.0303595	total: 641ms	remaining: 1.97s
49:	learn: 30.8138769	total: 653ms	remaining: 1.96s
50:	learn: 30.6107924	total: 666ms	remaining: 1.95s
51:	learn: 30.5113895	total: 678ms	remaining: 1.93s
52:	learn: 30.2906289	total: 682ms	remaining: 1.89s
53:	learn: 30.1102964	total: 695ms	remaining: 1.88s
54:	learn: 29.9521329	total: 708ms	remaining: 1.87s
55:	learn: 29.7908429	total: 721ms	remaining: 1.85s
56:	learn: 29.6074499	total: 734ms	remaining: 1.84s
57:	learn: 29.4529666	total: 755ms	remaining: 1.85s
58:	learn: 29.2799671	total: 768ms	remaining: 1.83s
59:	learn: 29.1306800	total: 781ms	remaining: 1.82s
60:	learn: 28.9840926	total: 793ms	remaining: 1.81s
61:	learn: 28.8477871	total: 806ms	remaining: 1.79s
62:	learn: 28.6349154	total: 818ms	remaining: 1.78s
63:	learn: 28.4837277	total: 830ms	remaining: 1.76s
64:	learn: 28.3123360	total: 843ms	remaining: 1.75s
65:	learn: 28.1504380	total: 855ms	remaining: 1.74s
66:	learn: 27.9887756	total: 868ms	remaining: 1.72s
67:	learn: 27.8424203	total: 880ms	remaining: 1.71s
68:	learn: 27.7591585	total: 892ms	remaining: 1.69s
69:	learn: 27.6770504	total: 905ms	remaining: 1.68s
70:	learn: 27.5634581	total: 918ms	remaining: 1.67s
71:	learn: 27.4144488	total: 934ms	remaining: 1.66s
72:	learn: 27.3110985	total: 954ms	remaining: 1.66s
73:	learn: 27.1917304	total: 970ms	remaining: 1.65s
74:	learn: 27.0592065	total: 984ms	remaining: 1.64s
75:	learn: 26.9561470	total: 998ms	remaining: 1.63s
76:	learn: 26.8227633	total: 1.01s	remaining: 1.61s
77:	learn: 26.7135435	total: 1.02s	remaining: 1.6s
78:	learn: 26.5934052	total: 1.04s	remaining: 1.59s
79:	learn: 26.4589208	total: 1.05s	remaining: 1.58s
80:	learn: 26.3564001	total: 1.07s	remaining: 1.57s
81:	learn: 26.2548634	total: 1.08s	remaining: 1.55s
82:	learn: 26.1322313	total: 1.09s	remaining: 1.54s
83:	learn: 26.0247080	total: 1.11s	remaining: 1.53s
84:	learn: 25.9338695	total: 1.12s	remaining: 1.51s
85:	learn: 25.8097906	total: 1.13s	remaining: 1.5s
86:	learn: 25.7578809	total: 1.15s	remaining: 1.49s
87:	learn: 25.6231522	total: 1.17s	remaining: 1.48s
88:	learn: 25.5543183	total: 1.18s	remaining: 1.47s
89:	learn: 25.4967844	total: 1.2s	remaining: 1.46s
90:	learn: 25.4127099	total: 1.21s	remaining: 1.45s
91:	learn: 25.3307532	total: 1.22s	remaining: 1.44s
92:	learn: 25.2187306	total: 1.24s	remaining: 1.42s
93:	learn: 25.1150153	total: 1.25s	remaining: 1.41s
94:	learn: 25.0545559	total: 1.26s	remaining: 1.4s
95:	learn: 24.9540322	total: 1.28s	remaining: 1.39s
96:	learn: 24.8884772	total: 1.29s	remaining: 1.37s
97:	learn: 24.8244764	total: 1.3s	remaining: 1.36s
98:	learn: 24.7192988	total: 1.32s	remaining: 1.34s
99:	learn: 24.6083365	total: 1.33s	remaining: 1.33s
100:	learn: 24.5518560	total: 1.34s	remaining: 1.32s
101:	learn: 24.4385716	total: 1.37s	remaining: 1.31s
102:	learn: 24.3427493	total: 1.38s	remaining: 1.3s
103:	learn: 24.2909973	total: 1.4s	remaining: 1.29s
104:	learn: 24.2202250	total: 1.41s	remaining: 1.28s
105:	learn: 24.1605361	total: 1.43s	remaining: 1.26s
106:	learn: 24.0728379	total: 1.44s	remaining: 1.25s
107:	learn: 23.9627559	total: 1.45s	remaining: 1.24s
108:	learn: 23.8956290	total: 1.46s	remaining: 1.22s
109:	learn: 23.7889651	total: 1.48s	remaining: 1.21s
110:	learn: 23.7295710	total: 1.49s	remaining: 1.2s
111:	learn: 23.6975936	total: 1.5s	remaining: 1.18s
112:	learn: 23.6253454	total: 1.52s	remaining: 1.17s
113:	learn: 23.5706048	total: 1.53s	remaining: 1.15s
114:	learn: 23.4529381	total: 1.54s	remaining: 1.14s
115:	learn: 23.3824496	total: 1.55s	remaining: 1.13s
116:	learn: 23.2941387	total: 1.58s	remaining: 1.12s
117:	learn: 23.1961893	total: 1.59s	remaining: 1.11s
118:	learn: 23.0866671	total: 1.6s	remaining: 1.09s
119:	learn: 22.9856833	total: 1.62s	remaining: 1.08s
120:	learn: 22.9436878	total: 1.63s	remaining: 1.06s
121:	learn: 22.8914163	total: 1.64s	remaining: 1.05s
122:	learn: 22.8415694	total: 1.66s	remaining: 1.04s
123:	learn: 22.7824402	total: 1.67s	remaining: 1.02s
124:	learn: 22.7024020	total: 1.68s	remaining: 1.01s
125:	learn: 22.6066169	total: 1.69s	remaining: 994ms
126:	learn: 22.5172995	total: 1.7s	remaining: 980ms
127:	learn: 22.4550185	total: 1.72s	remaining: 966ms
128:	learn: 22.3946238	total: 1.73s	remaining: 952ms
129:	learn: 22.3424458	total: 1.74s	remaining: 938ms
130:	learn: 22.2684742	total: 1.75s	remaining: 924ms
131:	learn: 22.2216367	total: 1.77s	remaining: 913ms
132:	learn: 22.1512493	total: 1.79s	remaining: 903ms
133:	learn: 22.0717608	total: 1.81s	remaining: 890ms
134:	learn: 22.0309977	total: 1.82s	remaining: 876ms
135:	learn: 21.9828015	total: 1.83s	remaining: 863ms
136:	learn: 21.9145406	total: 1.85s	remaining: 849ms
137:	learn: 21.8657376	total: 1.86s	remaining: 836ms
138:	learn: 21.7625285	total: 1.87s	remaining: 822ms
139:	learn: 21.6896849	total: 1.89s	remaining: 808ms
140:	learn: 21.6336155	total: 1.9s	remaining: 794ms
141:	learn: 21.5475005	total: 1.91s	remaining: 780ms
142:	learn: 21.4581081	total: 1.92s	remaining: 766ms
143:	learn: 21.3999602	total: 1.94s	remaining: 753ms
144:	learn: 21.3476074	total: 1.95s	remaining: 739ms
145:	learn: 21.2686709	total: 1.96s	remaining: 726ms
146:	learn: 21.2279066	total: 1.98s	remaining: 715ms
147:	learn: 21.1556089	total: 2s	remaining: 701ms
148:	learn: 21.0984823	total: 2.01s	remaining: 688ms
149:	learn: 20.9820880	total: 2.02s	remaining: 674ms
150:	learn: 20.9106417	total: 2.03s	remaining: 660ms
151:	learn: 20.8423459	total: 2.05s	remaining: 647ms
152:	learn: 20.7950736	total: 2.06s	remaining: 634ms
153:	learn: 20.7554120	total: 2.08s	remaining: 620ms
154:	learn: 20.7084574	total: 2.09s	remaining: 607ms
155:	learn: 20.6119772	total: 2.1s	remaining: 594ms
156:	learn: 20.5726797	total: 2.12s	remaining: 580ms
157:	learn: 20.4997054	total: 2.13s	remaining: 567ms
158:	learn: 20.4265788	total: 2.15s	remaining: 554ms
159:	learn: 20.3896959	total: 2.16s	remaining: 540ms
160:	learn: 20.3461939	total: 2.17s	remaining: 527ms
161:	learn: 20.3123101	total: 2.19s	remaining: 515ms
162:	learn: 20.2771866	total: 2.21s	remaining: 503ms
163:	learn: 20.2541920	total: 2.23s	remaining: 490ms
164:	learn: 20.2203385	total: 2.25s	remaining: 476ms
165:	learn: 20.1676520	total: 2.26s	remaining: 463ms
166:	learn: 20.1357662	total: 2.27s	remaining: 450ms
167:	learn: 20.1061575	total: 2.29s	remaining: 436ms
168:	learn: 20.0774864	total: 2.31s	remaining: 423ms
169:	learn: 20.0471409	total: 2.32s	remaining: 409ms
170:	learn: 20.0045577	total: 2.33s	remaining: 396ms
171:	learn: 19.9387232	total: 2.35s	remaining: 382ms
172:	learn: 19.8990864	total: 2.36s	remaining: 369ms
173:	learn: 19.8268740	total: 2.37s	remaining: 355ms
174:	learn: 19.8085513	total: 2.39s	remaining: 342ms
175:	learn: 19.7264685	total: 2.41s	remaining: 328ms
176:	learn: 19.6942352	total: 2.42s	remaining: 315ms
177:	learn: 19.6678519	total: 2.44s	remaining: 301ms
178:	learn: 19.5985912	total: 2.45s	remaining: 287ms
179:	learn: 19.5747039	total: 2.46s	remaining: 273ms
180:	learn: 19.5579697	total: 2.47s	remaining: 260ms
181:	learn: 19.5185189	total: 2.49s	remaining: 246ms
182:	learn: 19.5043140	total: 2.5s	remaining: 232ms
183:	learn: 19.4121879	total: 2.51s	remaining: 218ms
184:	learn: 19.3722227	total: 2.52s	remaining: 205ms
185:	learn: 19.3595546	total: 2.54s	remaining: 191ms
186:	learn: 19.3257434	total: 2.55s	remaining: 177ms
187:	learn: 19.3048362	total: 2.56s	remaining: 164ms
188:	learn: 19.2885314	total: 2.58s	remaining: 150ms
189:	learn: 19.2677091	total: 2.59s	remaining: 136ms
190:	learn: 19.1979977	total: 2.6s	remaining: 123ms
191:	learn: 19.1609348	total: 2.61s	remaining: 109ms
192:	learn: 19.1401970	total: 2.63s	remaining: 95.6ms
193:	learn: 19.1151943	total: 2.65s	remaining: 82ms
194:	learn: 19.0905188	total: 2.67s	remaining: 68.4ms
195:	learn: 19.0463928	total: 2.68s	remaining: 54.7ms
196:	learn: 19.0260219	total: 2.69s	remaining: 41ms
197:	learn: 19.0016911	total: 2.71s	remaining: 27.3ms
198:	learn: 18.9768328	total: 2.72s	remaining: 13.7ms
199:	learn: 18.9666575	total: 2.73s	remaining: 0us
0:	learn: 46.8597119	total: 12.2ms	remaining: 2.43s
1:	learn: 46.3377954	total: 19ms	remaining: 1.88s
2:	learn: 45.7907719	total: 32ms	remaining: 2.1s
3:	learn: 45.0827604	total: 51.9ms	remaining: 2.54s
4:	learn: 44.4581466	total: 67.6ms	remaining: 2.64s
5:	learn: 43.9410703	total: 80.2ms	remaining: 2.59s
6:	learn: 43.4345680	total: 92.5ms	remaining: 2.55s
7:	learn: 43.0069410	total: 105ms	remaining: 2.52s
8:	learn: 42.4393411	total: 112ms	remaining: 2.38s
9:	learn: 42.1646732	total: 124ms	remaining: 2.36s
10:	learn: 41.7746717	total: 136ms	remaining: 2.34s
11:	learn: 41.1882097	total: 150ms	remaining: 2.34s
12:	learn: 40.7778997	total: 164ms	remaining: 2.35s
13:	learn: 40.3222058	total: 177ms	remaining: 2.35s
14:	learn: 39.9360949	total: 190ms	remaining: 2.35s
15:	learn: 39.5900045	total: 203ms	remaining: 2.34s
16:	learn: 39.2244003	total: 216ms	remaining: 2.33s
17:	learn: 38.9665946	total: 229ms	remaining: 2.31s
18:	learn: 38.7439015	total: 241ms	remaining: 2.3s
19:	learn: 38.3164162	total: 256ms	remaining: 2.3s
20:	learn: 37.9742033	total: 278ms	remaining: 2.37s
21:	learn: 37.5821295	total: 296ms	remaining: 2.39s
22:	learn: 37.2386223	total: 310ms	remaining: 2.39s
23:	learn: 36.8196698	total: 313ms	remaining: 2.3s
24:	learn: 36.6502294	total: 328ms	remaining: 2.3s
25:	learn: 36.2635217	total: 343ms	remaining: 2.29s
26:	learn: 35.9726978	total: 357ms	remaining: 2.29s
27:	learn: 35.7161847	total: 372ms	remaining: 2.28s
28:	learn: 35.4012764	total: 386ms	remaining: 2.27s
29:	learn: 35.1657331	total: 400ms	remaining: 2.27s
30:	learn: 34.9224250	total: 414ms	remaining: 2.25s
31:	learn: 34.6124561	total: 428ms	remaining: 2.25s
32:	learn: 34.3727795	total: 442ms	remaining: 2.24s
33:	learn: 34.0964434	total: 457ms	remaining: 2.23s
34:	learn: 33.9001623	total: 472ms	remaining: 2.22s
35:	learn: 33.6601006	total: 493ms	remaining: 2.25s
36:	learn: 33.5813168	total: 496ms	remaining: 2.18s
37:	learn: 33.3571982	total: 511ms	remaining: 2.18s
38:	learn: 33.2240748	total: 525ms	remaining: 2.17s
39:	learn: 33.0133919	total: 538ms	remaining: 2.15s
40:	learn: 32.8360021	total: 552ms	remaining: 2.14s
41:	learn: 32.5897802	total: 566ms	remaining: 2.13s
42:	learn: 32.3474720	total: 580ms	remaining: 2.12s
43:	learn: 32.0979582	total: 594ms	remaining: 2.1s
44:	learn: 31.9280653	total: 598ms	remaining: 2.06s
45:	learn: 31.7301096	total: 610ms	remaining: 2.04s
46:	learn: 31.5504882	total: 623ms	remaining: 2.03s
47:	learn: 31.3557803	total: 635ms	remaining: 2.01s
48:	learn: 31.1113979	total: 648ms	remaining: 2s
49:	learn: 30.9599086	total: 661ms	remaining: 1.98s
50:	learn: 30.8162084	total: 675ms	remaining: 1.97s
51:	learn: 30.6631394	total: 695ms	remaining: 1.98s
52:	learn: 30.4597718	total: 712ms	remaining: 1.98s
53:	learn: 30.2495092	total: 726ms	remaining: 1.96s
54:	learn: 30.1402773	total: 740ms	remaining: 1.95s
55:	learn: 29.9476521	total: 754ms	remaining: 1.94s
56:	learn: 29.7561408	total: 768ms	remaining: 1.93s
57:	learn: 29.6749222	total: 782ms	remaining: 1.91s
58:	learn: 29.4407521	total: 795ms	remaining: 1.9s
59:	learn: 29.2800390	total: 808ms	remaining: 1.88s
60:	learn: 29.1223027	total: 820ms	remaining: 1.87s
61:	learn: 29.0127428	total: 833ms	remaining: 1.85s
62:	learn: 28.7892940	total: 845ms	remaining: 1.84s
63:	learn: 28.6367935	total: 858ms	remaining: 1.82s
64:	learn: 28.5037809	total: 871ms	remaining: 1.81s
65:	learn: 28.3338553	total: 884ms	remaining: 1.79s
66:	learn: 28.2239844	total: 902ms	remaining: 1.79s
67:	learn: 28.0688556	total: 917ms	remaining: 1.78s
68:	learn: 27.9788997	total: 930ms	remaining: 1.77s
69:	learn: 27.8643631	total: 943ms	remaining: 1.75s
70:	learn: 27.7606408	total: 955ms	remaining: 1.74s
71:	learn: 27.6524947	total: 968ms	remaining: 1.72s
72:	learn: 27.5266733	total: 981ms	remaining: 1.71s
73:	learn: 27.4218405	total: 993ms	remaining: 1.69s
74:	learn: 27.3093470	total: 1s	remaining: 1.68s
75:	learn: 27.1968426	total: 1.02s	remaining: 1.66s
76:	learn: 27.0544433	total: 1.03s	remaining: 1.65s
77:	learn: 26.9215144	total: 1.04s	remaining: 1.63s
78:	learn: 26.7879033	total: 1.05s	remaining: 1.62s
79:	learn: 26.6393536	total: 1.07s	remaining: 1.6s
80:	learn: 26.5419541	total: 1.08s	remaining: 1.59s
81:	learn: 26.4940744	total: 1.09s	remaining: 1.58s
82:	learn: 26.3955285	total: 1.12s	remaining: 1.57s
83:	learn: 26.3027412	total: 1.13s	remaining: 1.56s
84:	learn: 26.2849743	total: 1.13s	remaining: 1.53s
85:	learn: 26.1581105	total: 1.15s	remaining: 1.52s
86:	learn: 26.0033406	total: 1.16s	remaining: 1.51s
87:	learn: 25.8805032	total: 1.18s	remaining: 1.5s
88:	learn: 25.8007067	total: 1.19s	remaining: 1.48s
89:	learn: 25.6593548	total: 1.2s	remaining: 1.47s
90:	learn: 25.5296290	total: 1.22s	remaining: 1.46s
91:	learn: 25.3829197	total: 1.23s	remaining: 1.45s
92:	learn: 25.2843975	total: 1.25s	remaining: 1.43s
93:	learn: 25.1969520	total: 1.26s	remaining: 1.42s
94:	learn: 25.0773719	total: 1.27s	remaining: 1.41s
95:	learn: 24.9814848	total: 1.29s	remaining: 1.4s
96:	learn: 24.8850463	total: 1.31s	remaining: 1.39s
97:	learn: 24.7857780	total: 1.31s	remaining: 1.37s
98:	learn: 24.6522292	total: 1.33s	remaining: 1.36s
99:	learn: 24.5799514	total: 1.34s	remaining: 1.34s
100:	learn: 24.4699109	total: 1.36s	remaining: 1.33s
101:	learn: 24.4002293	total: 1.37s	remaining: 1.32s
102:	learn: 24.2772421	total: 1.39s	remaining: 1.31s
103:	learn: 24.1862379	total: 1.4s	remaining: 1.29s
104:	learn: 24.1295176	total: 1.41s	remaining: 1.28s
105:	learn: 24.0485116	total: 1.43s	remaining: 1.27s
106:	learn: 23.9749271	total: 1.44s	remaining: 1.25s
107:	learn: 23.8858015	total: 1.46s	remaining: 1.24s
108:	learn: 23.7914972	total: 1.47s	remaining: 1.23s
109:	learn: 23.6956200	total: 1.48s	remaining: 1.21s
110:	learn: 23.6190777	total: 1.5s	remaining: 1.2s
111:	learn: 23.4900303	total: 1.52s	remaining: 1.19s
112:	learn: 23.4043594	total: 1.53s	remaining: 1.18s
113:	learn: 23.3009109	total: 1.55s	remaining: 1.17s
114:	learn: 23.2492042	total: 1.56s	remaining: 1.15s
115:	learn: 23.1502858	total: 1.57s	remaining: 1.14s
116:	learn: 23.0298968	total: 1.59s	remaining: 1.13s
117:	learn: 22.9368904	total: 1.6s	remaining: 1.11s
118:	learn: 22.8783977	total: 1.61s	remaining: 1.1s
119:	learn: 22.8327030	total: 1.63s	remaining: 1.08s
120:	learn: 22.7568987	total: 1.64s	remaining: 1.07s
121:	learn: 22.6974870	total: 1.65s	remaining: 1.06s
122:	learn: 22.6614507	total: 1.67s	remaining: 1.04s
123:	learn: 22.5694891	total: 1.68s	remaining: 1.03s
124:	learn: 22.5157956	total: 1.69s	remaining: 1.01s
125:	learn: 22.4463939	total: 1.7s	remaining: 1s
126:	learn: 22.4017224	total: 1.72s	remaining: 988ms
127:	learn: 22.3231146	total: 1.74s	remaining: 976ms
128:	learn: 22.2902496	total: 1.75s	remaining: 964ms
129:	learn: 22.2168290	total: 1.76s	remaining: 950ms
130:	learn: 22.1156771	total: 1.78s	remaining: 936ms
131:	learn: 22.0180897	total: 1.79s	remaining: 923ms
132:	learn: 21.9718023	total: 1.8s	remaining: 908ms
133:	learn: 21.8761821	total: 1.82s	remaining: 895ms
134:	learn: 21.8244441	total: 1.83s	remaining: 880ms
135:	learn: 21.7599101	total: 1.84s	remaining: 867ms
136:	learn: 21.6873421	total: 1.85s	remaining: 852ms
137:	learn: 21.6326828	total: 1.86s	remaining: 838ms
138:	learn: 21.5493977	total: 1.88s	remaining: 824ms
139:	learn: 21.4801934	total: 1.89s	remaining: 811ms
140:	learn: 21.4130443	total: 1.9s	remaining: 797ms
141:	learn: 21.3084785	total: 1.92s	remaining: 783ms
142:	learn: 21.2332315	total: 1.93s	remaining: 769ms
143:	learn: 21.1520460	total: 1.95s	remaining: 757ms
144:	learn: 21.0868270	total: 1.96s	remaining: 745ms
145:	learn: 21.0484590	total: 1.98s	remaining: 731ms
146:	learn: 20.9722941	total: 1.99s	remaining: 717ms
147:	learn: 20.9385136	total: 2s	remaining: 704ms
148:	learn: 20.8477204	total: 2.02s	remaining: 690ms
149:	learn: 20.7921170	total: 2.03s	remaining: 677ms
150:	learn: 20.6990351	total: 2.04s	remaining: 663ms
151:	learn: 20.6219746	total: 2.06s	remaining: 650ms
152:	learn: 20.5734579	total: 2.07s	remaining: 636ms
153:	learn: 20.5465995	total: 2.08s	remaining: 622ms
154:	learn: 20.4450458	total: 2.09s	remaining: 608ms
155:	learn: 20.3421128	total: 2.11s	remaining: 594ms
156:	learn: 20.3122148	total: 2.12s	remaining: 580ms
157:	learn: 20.2632366	total: 2.13s	remaining: 567ms
158:	learn: 20.2167347	total: 2.15s	remaining: 553ms
159:	learn: 20.1512454	total: 2.17s	remaining: 542ms
160:	learn: 20.0949796	total: 2.18s	remaining: 528ms
161:	learn: 20.0497935	total: 2.19s	remaining: 514ms
162:	learn: 20.0004248	total: 2.21s	remaining: 501ms
163:	learn: 19.9168266	total: 2.22s	remaining: 488ms
164:	learn: 19.8562675	total: 2.23s	remaining: 474ms
165:	learn: 19.8394154	total: 2.25s	remaining: 461ms
166:	learn: 19.7685556	total: 2.26s	remaining: 447ms
167:	learn: 19.7268296	total: 2.28s	remaining: 434ms
168:	learn: 19.6762103	total: 2.29s	remaining: 420ms
169:	learn: 19.6046065	total: 2.3s	remaining: 407ms
170:	learn: 19.5586545	total: 2.32s	remaining: 393ms
171:	learn: 19.5173043	total: 2.33s	remaining: 380ms
172:	learn: 19.4892208	total: 2.35s	remaining: 366ms
173:	learn: 19.4404707	total: 2.37s	remaining: 354ms
174:	learn: 19.3558832	total: 2.39s	remaining: 341ms
175:	learn: 19.3014743	total: 2.4s	remaining: 328ms
176:	learn: 19.2538696	total: 2.42s	remaining: 314ms
177:	learn: 19.2176422	total: 2.43s	remaining: 301ms
178:	learn: 19.1364876	total: 2.45s	remaining: 287ms
179:	learn: 19.0612141	total: 2.46s	remaining: 273ms
180:	learn: 19.0378922	total: 2.48s	remaining: 260ms
181:	learn: 18.9683811	total: 2.49s	remaining: 246ms
182:	learn: 18.8857115	total: 2.5s	remaining: 232ms
183:	learn: 18.8495410	total: 2.52s	remaining: 219ms
184:	learn: 18.8036588	total: 2.53s	remaining: 205ms
185:	learn: 18.7880310	total: 2.54s	remaining: 192ms
186:	learn: 18.7165570	total: 2.56s	remaining: 178ms
187:	learn: 18.6945979	total: 2.57s	remaining: 164ms
188:	learn: 18.6660636	total: 2.59s	remaining: 151ms
189:	learn: 18.5778439	total: 2.61s	remaining: 137ms
190:	learn: 18.5162112	total: 2.62s	remaining: 123ms
191:	learn: 18.4509510	total: 2.63s	remaining: 110ms
192:	learn: 18.4260415	total: 2.65s	remaining: 96ms
193:	learn: 18.4050050	total: 2.66s	remaining: 82.2ms
194:	learn: 18.3379789	total: 2.67s	remaining: 68.5ms
195:	learn: 18.2682932	total: 2.68s	remaining: 54.8ms
196:	learn: 18.2228079	total: 2.7s	remaining: 41.1ms
197:	learn: 18.1953160	total: 2.71s	remaining: 27.4ms
198:	learn: 18.1741886	total: 2.72s	remaining: 13.7ms
199:	learn: 18.1483272	total: 2.73s	remaining: 0us
0:	learn: 27.6482572	total: 6.27ms	remaining: 621ms
1:	learn: 27.2599426	total: 10.9ms	remaining: 534ms
2:	learn: 26.9002728	total: 12.9ms	remaining: 417ms
3:	learn: 26.5017816	total: 17.8ms	remaining: 427ms
4:	learn: 26.1628708	total: 22.4ms	remaining: 425ms
5:	learn: 25.7978181	total: 26.8ms	remaining: 419ms
6:	learn: 25.4203755	total: 30.9ms	remaining: 410ms
7:	learn: 25.0838029	total: 35.7ms	remaining: 411ms
8:	learn: 24.7622554	total: 39.7ms	remaining: 401ms
9:	learn: 24.4550932	total: 43.9ms	remaining: 395ms
10:	learn: 24.1436008	total: 48ms	remaining: 389ms
11:	learn: 23.7856603	total: 52.3ms	remaining: 383ms
12:	learn: 23.5223689	total: 57.6ms	remaining: 386ms
13:	learn: 23.2814983	total: 62.5ms	remaining: 384ms
14:	learn: 23.0630409	total: 66ms	remaining: 374ms
15:	learn: 22.8886480	total: 69.5ms	remaining: 365ms
16:	learn: 22.5844732	total: 72.9ms	remaining: 356ms
17:	learn: 22.3783004	total: 76.1ms	remaining: 347ms
18:	learn: 22.1850545	total: 79.2ms	remaining: 337ms
19:	learn: 21.9499441	total: 82.3ms	remaining: 329ms
20:	learn: 21.7617479	total: 85.6ms	remaining: 322ms
21:	learn: 21.5486317	total: 89.1ms	remaining: 316ms
22:	learn: 21.3537292	total: 92.4ms	remaining: 309ms
23:	learn: 21.1589107	total: 95.5ms	remaining: 302ms
24:	learn: 20.9744280	total: 98.7ms	remaining: 296ms
25:	learn: 20.7875576	total: 102ms	remaining: 290ms
26:	learn: 20.6460173	total: 106ms	remaining: 286ms
27:	learn: 20.4914606	total: 109ms	remaining: 280ms
28:	learn: 20.3020029	total: 112ms	remaining: 275ms
29:	learn: 20.1098438	total: 116ms	remaining: 270ms
30:	learn: 19.9332141	total: 119ms	remaining: 264ms
31:	learn: 19.7902228	total: 122ms	remaining: 259ms
32:	learn: 19.6192763	total: 125ms	remaining: 254ms
33:	learn: 19.5211658	total: 129ms	remaining: 249ms
34:	learn: 19.3690360	total: 132ms	remaining: 245ms
35:	learn: 19.2619642	total: 135ms	remaining: 240ms
36:	learn: 19.1286903	total: 138ms	remaining: 236ms
37:	learn: 19.0141668	total: 142ms	remaining: 232ms
38:	learn: 18.8959642	total: 145ms	remaining: 227ms
39:	learn: 18.7837720	total: 148ms	remaining: 223ms
40:	learn: 18.6902324	total: 152ms	remaining: 218ms
41:	learn: 18.6024406	total: 155ms	remaining: 214ms
42:	learn: 18.4921541	total: 158ms	remaining: 209ms
43:	learn: 18.3760135	total: 162ms	remaining: 206ms
44:	learn: 18.2855158	total: 165ms	remaining: 201ms
45:	learn: 18.1851003	total: 168ms	remaining: 197ms
46:	learn: 18.0881818	total: 171ms	remaining: 193ms
47:	learn: 17.9840121	total: 174ms	remaining: 189ms
48:	learn: 17.8569341	total: 178ms	remaining: 185ms
49:	learn: 17.7325703	total: 181ms	remaining: 181ms
50:	learn: 17.6398047	total: 184ms	remaining: 177ms
51:	learn: 17.5518439	total: 187ms	remaining: 173ms
52:	learn: 17.4613171	total: 190ms	remaining: 169ms
53:	learn: 17.3908057	total: 194ms	remaining: 165ms
54:	learn: 17.3074769	total: 197ms	remaining: 161ms
55:	learn: 17.2202074	total: 201ms	remaining: 158ms
56:	learn: 17.1181492	total: 204ms	remaining: 154ms
57:	learn: 17.0182750	total: 207ms	remaining: 150ms
58:	learn: 16.9354347	total: 210ms	remaining: 146ms
59:	learn: 16.8580374	total: 214ms	remaining: 143ms
60:	learn: 16.7988650	total: 217ms	remaining: 139ms
61:	learn: 16.7117569	total: 220ms	remaining: 135ms
62:	learn: 16.6251948	total: 223ms	remaining: 131ms
63:	learn: 16.5795522	total: 227ms	remaining: 127ms
64:	learn: 16.4933713	total: 230ms	remaining: 124ms
65:	learn: 16.4351213	total: 234ms	remaining: 120ms
66:	learn: 16.3584748	total: 237ms	remaining: 117ms
67:	learn: 16.3070538	total: 240ms	remaining: 113ms
68:	learn: 16.2215777	total: 244ms	remaining: 110ms
69:	learn: 16.1576931	total: 247ms	remaining: 106ms
70:	learn: 16.0877074	total: 251ms	remaining: 102ms
71:	learn: 16.0207498	total: 257ms	remaining: 100ms
72:	learn: 15.9479131	total: 263ms	remaining: 97.4ms
73:	learn: 15.9005314	total: 269ms	remaining: 94.6ms
74:	learn: 15.8619401	total: 274ms	remaining: 91.5ms
75:	learn: 15.8009685	total: 278ms	remaining: 87.8ms
76:	learn: 15.7265206	total: 283ms	remaining: 84.6ms
77:	learn: 15.6616562	total: 287ms	remaining: 80.8ms
78:	learn: 15.6237097	total: 290ms	remaining: 77.1ms
79:	learn: 15.5776633	total: 294ms	remaining: 73.5ms
80:	learn: 15.5322280	total: 298ms	remaining: 69.8ms
81:	learn: 15.4798853	total: 301ms	remaining: 66.1ms
82:	learn: 15.4293283	total: 304ms	remaining: 62.4ms
83:	learn: 15.3941462	total: 308ms	remaining: 58.7ms
84:	learn: 15.3406194	total: 311ms	remaining: 54.9ms
85:	learn: 15.2847779	total: 315ms	remaining: 51.3ms
86:	learn: 15.2359620	total: 319ms	remaining: 47.6ms
87:	learn: 15.1908867	total: 322ms	remaining: 43.9ms
88:	learn: 15.1583829	total: 325ms	remaining: 40.2ms
89:	learn: 15.0900621	total: 328ms	remaining: 36.5ms
90:	learn: 15.0245432	total: 332ms	remaining: 32.8ms
91:	learn: 14.9874315	total: 335ms	remaining: 29.1ms
92:	learn: 14.9487677	total: 338ms	remaining: 25.4ms
93:	learn: 14.9012516	total: 341ms	remaining: 21.8ms
94:	learn: 14.8505353	total: 344ms	remaining: 18.1ms
95:	learn: 14.7891744	total: 347ms	remaining: 14.5ms
96:	learn: 14.7383577	total: 350ms	remaining: 10.8ms
97:	learn: 14.7100374	total: 354ms	remaining: 7.22ms
98:	learn: 14.6713180	total: 357ms	remaining: 3.6ms
99:	learn: 14.6359446	total: 360ms	remaining: 0us
0:	learn: 43.1567515	total: 3.7ms	remaining: 367ms
1:	learn: 42.3285464	total: 7.37ms	remaining: 361ms
2:	learn: 41.7830186	total: 10.8ms	remaining: 351ms
3:	learn: 41.0050750	total: 14.4ms	remaining: 347ms
4:	learn: 40.1967453	total: 17.8ms	remaining: 339ms
5:	learn: 39.5179125	total: 21.2ms	remaining: 331ms
6:	learn: 38.9358765	total: 24.3ms	remaining: 323ms
7:	learn: 38.4321042	total: 27.5ms	remaining: 317ms
8:	learn: 37.8097897	total: 31.1ms	remaining: 315ms
9:	learn: 37.2834651	total: 34.6ms	remaining: 311ms
10:	learn: 36.7318431	total: 37.8ms	remaining: 306ms
11:	learn: 36.0993568	total: 41.4ms	remaining: 303ms
12:	learn: 35.4409975	total: 45ms	remaining: 301ms
13:	learn: 34.9590929	total: 48.4ms	remaining: 297ms
14:	learn: 34.4708430	total: 51.9ms	remaining: 294ms
15:	learn: 33.9933200	total: 56.2ms	remaining: 295ms
16:	learn: 33.6054933	total: 64.4ms	remaining: 315ms
17:	learn: 33.2387432	total: 75.8ms	remaining: 345ms
18:	learn: 32.8578041	total: 80.7ms	remaining: 344ms
19:	learn: 32.5361694	total: 87.3ms	remaining: 349ms
20:	learn: 32.0996604	total: 91.7ms	remaining: 345ms
21:	learn: 31.7402509	total: 96.1ms	remaining: 341ms
22:	learn: 31.4978473	total: 100ms	remaining: 336ms
23:	learn: 31.1735711	total: 105ms	remaining: 332ms
24:	learn: 30.7141887	total: 109ms	remaining: 327ms
25:	learn: 30.3039643	total: 113ms	remaining: 322ms
26:	learn: 29.8331825	total: 118ms	remaining: 319ms
27:	learn: 29.4431235	total: 122ms	remaining: 313ms
28:	learn: 29.1249709	total: 126ms	remaining: 307ms
29:	learn: 28.8946701	total: 129ms	remaining: 301ms
30:	learn: 28.5385406	total: 134ms	remaining: 298ms
31:	learn: 28.2975532	total: 138ms	remaining: 294ms
32:	learn: 27.9495292	total: 143ms	remaining: 290ms
33:	learn: 27.6380196	total: 146ms	remaining: 284ms
34:	learn: 27.4017531	total: 149ms	remaining: 277ms
35:	learn: 27.2024880	total: 153ms	remaining: 271ms
36:	learn: 26.9557055	total: 156ms	remaining: 265ms
37:	learn: 26.7452312	total: 159ms	remaining: 260ms
38:	learn: 26.5562527	total: 163ms	remaining: 254ms
39:	learn: 26.3687035	total: 166ms	remaining: 249ms
40:	learn: 26.0629954	total: 169ms	remaining: 244ms
41:	learn: 25.9079361	total: 172ms	remaining: 238ms
42:	learn: 25.6215341	total: 176ms	remaining: 233ms
43:	learn: 25.4251321	total: 179ms	remaining: 228ms
44:	learn: 25.2547770	total: 183ms	remaining: 223ms
45:	learn: 25.1021558	total: 186ms	remaining: 219ms
46:	learn: 24.8892837	total: 189ms	remaining: 214ms
47:	learn: 24.6711225	total: 193ms	remaining: 209ms
48:	learn: 24.4535925	total: 196ms	remaining: 204ms
49:	learn: 24.2387567	total: 199ms	remaining: 199ms
50:	learn: 24.1112080	total: 202ms	remaining: 194ms
51:	learn: 23.9838750	total: 205ms	remaining: 190ms
52:	learn: 23.8247043	total: 209ms	remaining: 185ms
53:	learn: 23.7155239	total: 212ms	remaining: 181ms
54:	learn: 23.5065806	total: 215ms	remaining: 176ms
55:	learn: 23.3811052	total: 219ms	remaining: 172ms
56:	learn: 23.2778692	total: 222ms	remaining: 167ms
57:	learn: 23.1348173	total: 225ms	remaining: 163ms
58:	learn: 23.0065773	total: 228ms	remaining: 159ms
59:	learn: 22.9424201	total: 232ms	remaining: 155ms
60:	learn: 22.8253556	total: 235ms	remaining: 150ms
61:	learn: 22.7162584	total: 239ms	remaining: 146ms
62:	learn: 22.5800493	total: 242ms	remaining: 142ms
63:	learn: 22.4847771	total: 245ms	remaining: 138ms
64:	learn: 22.3720124	total: 249ms	remaining: 134ms
65:	learn: 22.2572523	total: 252ms	remaining: 130ms
66:	learn: 22.1886012	total: 259ms	remaining: 128ms
67:	learn: 22.1164215	total: 265ms	remaining: 125ms
68:	learn: 21.9592518	total: 270ms	remaining: 121ms
69:	learn: 21.8428611	total: 276ms	remaining: 118ms
70:	learn: 21.7443159	total: 279ms	remaining: 114ms
71:	learn: 21.6558527	total: 285ms	remaining: 111ms
72:	learn: 21.5671531	total: 288ms	remaining: 107ms
73:	learn: 21.4543087	total: 292ms	remaining: 102ms
74:	learn: 21.3914084	total: 295ms	remaining: 98.2ms
75:	learn: 21.3011488	total: 298ms	remaining: 94.1ms
76:	learn: 21.2503549	total: 301ms	remaining: 89.9ms
77:	learn: 21.1329845	total: 304ms	remaining: 85.8ms
78:	learn: 21.0799972	total: 308ms	remaining: 81.8ms
79:	learn: 21.0086134	total: 311ms	remaining: 77.7ms
80:	learn: 20.9554508	total: 314ms	remaining: 73.7ms
81:	learn: 20.8967003	total: 317ms	remaining: 69.7ms
82:	learn: 20.7930312	total: 321ms	remaining: 65.7ms
83:	learn: 20.7520758	total: 324ms	remaining: 61.8ms
84:	learn: 20.6278115	total: 327ms	remaining: 57.8ms
85:	learn: 20.4813506	total: 331ms	remaining: 53.8ms
86:	learn: 20.4126821	total: 334ms	remaining: 49.9ms
87:	learn: 20.3830832	total: 337ms	remaining: 46ms
88:	learn: 20.2918633	total: 340ms	remaining: 42ms
89:	learn: 20.2023213	total: 344ms	remaining: 38.2ms
90:	learn: 20.1115974	total: 347ms	remaining: 34.3ms
91:	learn: 20.0017655	total: 350ms	remaining: 30.4ms
92:	learn: 19.9414949	total: 353ms	remaining: 26.6ms
93:	learn: 19.8993254	total: 356ms	remaining: 22.8ms
94:	learn: 19.7908417	total: 360ms	remaining: 18.9ms
95:	learn: 19.7366388	total: 363ms	remaining: 15.1ms
96:	learn: 19.6824266	total: 366ms	remaining: 11.3ms
97:	learn: 19.5960554	total: 369ms	remaining: 7.54ms
98:	learn: 19.5515294	total: 373ms	remaining: 3.76ms
99:	learn: 19.5014849	total: 376ms	remaining: 0us
0:	learn: 46.9176085	total: 3.51ms	remaining: 348ms
1:	learn: 45.9191501	total: 6.93ms	remaining: 340ms
2:	learn: 45.3023837	total: 10.7ms	remaining: 345ms
3:	learn: 44.6127749	total: 14.3ms	remaining: 342ms
4:	learn: 44.0093053	total: 17.7ms	remaining: 337ms
5:	learn: 43.5038132	total: 21.2ms	remaining: 332ms
6:	learn: 42.7227700	total: 24.5ms	remaining: 326ms
7:	learn: 42.1235005	total: 28.1ms	remaining: 323ms
8:	learn: 41.6834513	total: 32ms	remaining: 324ms
9:	learn: 41.2253594	total: 38.6ms	remaining: 348ms
10:	learn: 40.5327035	total: 44.4ms	remaining: 360ms
11:	learn: 39.8572011	total: 51.9ms	remaining: 381ms
12:	learn: 39.3393627	total: 57.8ms	remaining: 387ms
13:	learn: 39.1295674	total: 66.8ms	remaining: 410ms
14:	learn: 38.4583601	total: 71.4ms	remaining: 405ms
15:	learn: 38.0883633	total: 76.2ms	remaining: 400ms
16:	learn: 37.4794371	total: 80.7ms	remaining: 394ms
17:	learn: 37.0255919	total: 85.2ms	remaining: 388ms
18:	learn: 36.4806106	total: 89.6ms	remaining: 382ms
19:	learn: 36.2266166	total: 93.8ms	remaining: 375ms
20:	learn: 35.8549064	total: 98.5ms	remaining: 371ms
21:	learn: 35.3785921	total: 102ms	remaining: 363ms
22:	learn: 35.0414098	total: 107ms	remaining: 357ms
23:	learn: 34.5992924	total: 110ms	remaining: 348ms
24:	learn: 34.1674144	total: 115ms	remaining: 344ms
25:	learn: 33.7582971	total: 120ms	remaining: 340ms
26:	learn: 33.4983133	total: 124ms	remaining: 336ms
27:	learn: 33.0829388	total: 128ms	remaining: 328ms
28:	learn: 32.8896246	total: 131ms	remaining: 321ms
29:	learn: 32.5811820	total: 135ms	remaining: 314ms
30:	learn: 32.2082440	total: 138ms	remaining: 307ms
31:	learn: 32.0896781	total: 139ms	remaining: 296ms
32:	learn: 31.8932976	total: 142ms	remaining: 289ms
33:	learn: 31.5815632	total: 146ms	remaining: 283ms
34:	learn: 31.1917020	total: 149ms	remaining: 277ms
35:	learn: 31.0217692	total: 153ms	remaining: 271ms
36:	learn: 30.7416876	total: 156ms	remaining: 265ms
37:	learn: 30.5787914	total: 159ms	remaining: 259ms
38:	learn: 30.3530018	total: 162ms	remaining: 254ms
39:	learn: 30.0475480	total: 166ms	remaining: 249ms
40:	learn: 29.8265556	total: 169ms	remaining: 243ms
41:	learn: 29.6014785	total: 172ms	remaining: 238ms
42:	learn: 29.3666391	total: 176ms	remaining: 233ms
43:	learn: 29.2173284	total: 179ms	remaining: 228ms
44:	learn: 29.0496312	total: 183ms	remaining: 224ms
45:	learn: 28.9124050	total: 186ms	remaining: 219ms
46:	learn: 28.7933802	total: 190ms	remaining: 214ms
47:	learn: 28.6704326	total: 193ms	remaining: 209ms
48:	learn: 28.4146326	total: 196ms	remaining: 205ms
49:	learn: 28.2911692	total: 200ms	remaining: 200ms
50:	learn: 28.1481785	total: 204ms	remaining: 196ms
51:	learn: 27.9853479	total: 207ms	remaining: 192ms
52:	learn: 27.7798663	total: 211ms	remaining: 187ms
53:	learn: 27.5892607	total: 214ms	remaining: 182ms
54:	learn: 27.4458591	total: 217ms	remaining: 178ms
55:	learn: 27.3240567	total: 221ms	remaining: 173ms
56:	learn: 27.1968560	total: 224ms	remaining: 169ms
57:	learn: 27.0303538	total: 229ms	remaining: 166ms
58:	learn: 26.8933408	total: 234ms	remaining: 163ms
59:	learn: 26.7459903	total: 240ms	remaining: 160ms
60:	learn: 26.5416813	total: 245ms	remaining: 156ms
61:	learn: 26.3691341	total: 249ms	remaining: 152ms
62:	learn: 26.2040079	total: 254ms	remaining: 149ms
63:	learn: 26.0703825	total: 259ms	remaining: 146ms
64:	learn: 25.9333118	total: 263ms	remaining: 142ms
65:	learn: 25.8335440	total: 266ms	remaining: 137ms
66:	learn: 25.6908598	total: 269ms	remaining: 133ms
67:	learn: 25.5884546	total: 273ms	remaining: 128ms
68:	learn: 25.4997131	total: 276ms	remaining: 124ms
69:	learn: 25.3394607	total: 279ms	remaining: 120ms
70:	learn: 25.1708228	total: 283ms	remaining: 115ms
71:	learn: 25.0597898	total: 286ms	remaining: 111ms
72:	learn: 24.9902100	total: 290ms	remaining: 107ms
73:	learn: 24.8427452	total: 293ms	remaining: 103ms
74:	learn: 24.7861428	total: 296ms	remaining: 98.7ms
75:	learn: 24.6812951	total: 300ms	remaining: 94.6ms
76:	learn: 24.5175000	total: 303ms	remaining: 90.5ms
77:	learn: 24.4737545	total: 306ms	remaining: 86.4ms
78:	learn: 24.4128351	total: 309ms	remaining: 82.3ms
79:	learn: 24.3079589	total: 313ms	remaining: 78.2ms
80:	learn: 24.2169091	total: 316ms	remaining: 74.1ms
81:	learn: 24.1006975	total: 319ms	remaining: 70.1ms
82:	learn: 23.9676423	total: 323ms	remaining: 66.1ms
83:	learn: 23.8391994	total: 326ms	remaining: 62.1ms
84:	learn: 23.6765758	total: 329ms	remaining: 58.1ms
85:	learn: 23.5639853	total: 333ms	remaining: 54.2ms
86:	learn: 23.4886973	total: 336ms	remaining: 50.2ms
87:	learn: 23.3778099	total: 339ms	remaining: 46.3ms
88:	learn: 23.2601930	total: 343ms	remaining: 42.4ms
89:	learn: 23.1947627	total: 346ms	remaining: 38.5ms
90:	learn: 23.1160204	total: 350ms	remaining: 34.6ms
91:	learn: 22.9602982	total: 353ms	remaining: 30.7ms
92:	learn: 22.8379683	total: 356ms	remaining: 26.8ms
93:	learn: 22.7801440	total: 360ms	remaining: 22.9ms
94:	learn: 22.6374647	total: 363ms	remaining: 19.1ms
95:	learn: 22.5999803	total: 366ms	remaining: 15.2ms
96:	learn: 22.5549839	total: 369ms	remaining: 11.4ms
97:	learn: 22.4852837	total: 373ms	remaining: 7.6ms
98:	learn: 22.3977327	total: 376ms	remaining: 3.8ms
99:	learn: 22.3182762	total: 379ms	remaining: 0us
0:	learn: 46.4569509	total: 3.49ms	remaining: 346ms
1:	learn: 45.5590310	total: 6.7ms	remaining: 328ms
2:	learn: 44.8510590	total: 10.2ms	remaining: 328ms
3:	learn: 44.1383546	total: 13.7ms	remaining: 329ms
4:	learn: 43.5859837	total: 17.3ms	remaining: 329ms
5:	learn: 43.0686057	total: 21.1ms	remaining: 331ms
6:	learn: 42.6923057	total: 25.7ms	remaining: 341ms
7:	learn: 42.1309688	total: 29.6ms	remaining: 341ms
8:	learn: 41.3980110	total: 34ms	remaining: 344ms
9:	learn: 41.1134422	total: 42ms	remaining: 378ms
10:	learn: 40.6825926	total: 54.9ms	remaining: 444ms
11:	learn: 39.9957002	total: 62.8ms	remaining: 460ms
12:	learn: 39.4592447	total: 70.1ms	remaining: 469ms
13:	learn: 39.1417579	total: 74.9ms	remaining: 460ms
14:	learn: 38.8251135	total: 79.4ms	remaining: 450ms
15:	learn: 38.5175085	total: 83.8ms	remaining: 440ms
16:	learn: 38.2322060	total: 88.8ms	remaining: 433ms
17:	learn: 37.8502072	total: 93.7ms	remaining: 427ms
18:	learn: 37.5948599	total: 99.1ms	remaining: 422ms
19:	learn: 37.3591823	total: 104ms	remaining: 416ms
20:	learn: 37.0542330	total: 109ms	remaining: 410ms
21:	learn: 36.5809976	total: 113ms	remaining: 401ms
22:	learn: 36.3718772	total: 118ms	remaining: 394ms
23:	learn: 35.9776353	total: 123ms	remaining: 389ms
24:	learn: 35.5645322	total: 127ms	remaining: 381ms
25:	learn: 35.3106255	total: 130ms	remaining: 371ms
26:	learn: 35.1585201	total: 134ms	remaining: 362ms
27:	learn: 34.8086383	total: 137ms	remaining: 353ms
28:	learn: 34.4353661	total: 141ms	remaining: 345ms
29:	learn: 34.1202525	total: 144ms	remaining: 337ms
30:	learn: 33.7360883	total: 148ms	remaining: 329ms
31:	learn: 33.6071680	total: 149ms	remaining: 316ms
32:	learn: 33.2612198	total: 152ms	remaining: 309ms
33:	learn: 33.0084668	total: 156ms	remaining: 302ms
34:	learn: 32.6098273	total: 159ms	remaining: 296ms
35:	learn: 32.4105060	total: 163ms	remaining: 289ms
36:	learn: 32.2563701	total: 166ms	remaining: 283ms
37:	learn: 32.0103570	total: 170ms	remaining: 277ms
38:	learn: 31.7020507	total: 173ms	remaining: 271ms
39:	learn: 31.3515310	total: 176ms	remaining: 265ms
40:	learn: 31.0995617	total: 180ms	remaining: 259ms
41:	learn: 30.7691091	total: 183ms	remaining: 253ms
42:	learn: 30.5901947	total: 187ms	remaining: 248ms
43:	learn: 30.4972111	total: 190ms	remaining: 242ms
44:	learn: 30.3078996	total: 194ms	remaining: 237ms
45:	learn: 30.1333395	total: 197ms	remaining: 231ms
46:	learn: 29.9834047	total: 201ms	remaining: 226ms
47:	learn: 29.8520712	total: 204ms	remaining: 221ms
48:	learn: 29.5731547	total: 207ms	remaining: 216ms
49:	learn: 29.4238396	total: 211ms	remaining: 211ms
50:	learn: 29.1333851	total: 215ms	remaining: 206ms
51:	learn: 28.9405198	total: 218ms	remaining: 201ms
52:	learn: 28.8259273	total: 221ms	remaining: 196ms
53:	learn: 28.7236385	total: 225ms	remaining: 191ms
54:	learn: 28.6169338	total: 228ms	remaining: 187ms
55:	learn: 28.4088385	total: 232ms	remaining: 182ms
56:	learn: 28.2494669	total: 235ms	remaining: 177ms
57:	learn: 28.1098622	total: 239ms	remaining: 173ms
58:	learn: 27.9681542	total: 242ms	remaining: 169ms
59:	learn: 27.7912988	total: 246ms	remaining: 164ms
60:	learn: 27.7032663	total: 249ms	remaining: 159ms
61:	learn: 27.4484269	total: 256ms	remaining: 157ms
62:	learn: 27.3280668	total: 262ms	remaining: 154ms
63:	learn: 27.2040612	total: 268ms	remaining: 151ms
64:	learn: 27.1348914	total: 273ms	remaining: 147ms
65:	learn: 27.0542921	total: 277ms	remaining: 142ms
66:	learn: 26.8811680	total: 282ms	remaining: 139ms
67:	learn: 26.7659759	total: 285ms	remaining: 134ms
68:	learn: 26.5235768	total: 288ms	remaining: 130ms
69:	learn: 26.4038727	total: 292ms	remaining: 125ms
70:	learn: 26.2401106	total: 295ms	remaining: 120ms
71:	learn: 26.1724954	total: 298ms	remaining: 116ms
72:	learn: 26.0008992	total: 302ms	remaining: 112ms
73:	learn: 25.9590526	total: 305ms	remaining: 107ms
74:	learn: 25.8059076	total: 308ms	remaining: 103ms
75:	learn: 25.7387097	total: 311ms	remaining: 98.3ms
76:	learn: 25.6599597	total: 315ms	remaining: 94ms
77:	learn: 25.6012070	total: 318ms	remaining: 89.7ms
78:	learn: 25.5564128	total: 321ms	remaining: 85.4ms
79:	learn: 25.4398522	total: 324ms	remaining: 81.1ms
80:	learn: 25.3181008	total: 328ms	remaining: 76.8ms
81:	learn: 25.1997544	total: 331ms	remaining: 72.6ms
82:	learn: 25.1470930	total: 334ms	remaining: 68.4ms
83:	learn: 24.9779820	total: 337ms	remaining: 64.2ms
84:	learn: 24.9371929	total: 341ms	remaining: 60.1ms
85:	learn: 24.8010712	total: 344ms	remaining: 55.9ms
86:	learn: 24.7485057	total: 347ms	remaining: 51.9ms
87:	learn: 24.6372395	total: 350ms	remaining: 47.8ms
88:	learn: 24.5045854	total: 354ms	remaining: 43.7ms
89:	learn: 24.4613380	total: 357ms	remaining: 39.6ms
90:	learn: 24.4358919	total: 360ms	remaining: 35.6ms
91:	learn: 24.3547819	total: 363ms	remaining: 31.6ms
92:	learn: 24.2544354	total: 367ms	remaining: 27.6ms
93:	learn: 24.1015994	total: 370ms	remaining: 23.6ms
94:	learn: 23.9857687	total: 373ms	remaining: 19.6ms
95:	learn: 23.9186020	total: 377ms	remaining: 15.7ms
96:	learn: 23.8447627	total: 380ms	remaining: 11.7ms
97:	learn: 23.7559141	total: 383ms	remaining: 7.82ms
98:	learn: 23.6980558	total: 386ms	remaining: 3.9ms
99:	learn: 23.6653114	total: 390ms	remaining: 0us
0:	learn: 46.9302808	total: 3.71ms	remaining: 368ms
1:	learn: 46.1919518	total: 7.21ms	remaining: 353ms
2:	learn: 45.5356803	total: 10.7ms	remaining: 345ms
3:	learn: 44.9319988	total: 14.4ms	remaining: 347ms
4:	learn: 44.3304571	total: 21.2ms	remaining: 403ms
5:	learn: 43.8287969	total: 26.6ms	remaining: 416ms
6:	learn: 43.1329286	total: 36ms	remaining: 479ms
7:	learn: 42.6484098	total: 41ms	remaining: 471ms
8:	learn: 42.0854695	total: 47.4ms	remaining: 480ms
9:	learn: 41.7935637	total: 51.5ms	remaining: 464ms
10:	learn: 41.3915117	total: 55.9ms	remaining: 452ms
11:	learn: 40.8204807	total: 60.7ms	remaining: 445ms
12:	learn: 40.4004766	total: 65ms	remaining: 435ms
13:	learn: 40.0786245	total: 68.8ms	remaining: 423ms
14:	learn: 39.8276220	total: 73.4ms	remaining: 416ms
15:	learn: 39.4929140	total: 77.8ms	remaining: 408ms
16:	learn: 38.9293713	total: 79.5ms	remaining: 388ms
17:	learn: 38.5243853	total: 84ms	remaining: 383ms
18:	learn: 38.1012358	total: 88.1ms	remaining: 375ms
19:	learn: 37.6824745	total: 91.8ms	remaining: 367ms
20:	learn: 37.4082379	total: 96.1ms	remaining: 362ms
21:	learn: 37.0424336	total: 101ms	remaining: 358ms
22:	learn: 36.5253706	total: 106ms	remaining: 355ms
23:	learn: 36.1089648	total: 110ms	remaining: 347ms
24:	learn: 35.8530605	total: 113ms	remaining: 340ms
25:	learn: 35.3434906	total: 117ms	remaining: 332ms
26:	learn: 35.0945762	total: 120ms	remaining: 325ms
27:	learn: 34.7494045	total: 124ms	remaining: 318ms
28:	learn: 34.4794807	total: 127ms	remaining: 311ms
29:	learn: 34.1151556	total: 130ms	remaining: 304ms
30:	learn: 33.7226297	total: 134ms	remaining: 298ms
31:	learn: 33.5116453	total: 137ms	remaining: 291ms
32:	learn: 33.2479370	total: 140ms	remaining: 284ms
33:	learn: 32.9610010	total: 143ms	remaining: 278ms
34:	learn: 32.6348841	total: 146ms	remaining: 272ms
35:	learn: 32.4165166	total: 150ms	remaining: 266ms
36:	learn: 32.1634880	total: 153ms	remaining: 260ms
37:	learn: 31.8288262	total: 156ms	remaining: 255ms
38:	learn: 31.5539052	total: 159ms	remaining: 249ms
39:	learn: 31.4198481	total: 163ms	remaining: 244ms
40:	learn: 31.2440280	total: 166ms	remaining: 238ms
41:	learn: 31.1300731	total: 169ms	remaining: 233ms
42:	learn: 30.9511993	total: 172ms	remaining: 228ms
43:	learn: 30.8704406	total: 175ms	remaining: 223ms
44:	learn: 30.6733228	total: 179ms	remaining: 218ms
45:	learn: 30.4870918	total: 182ms	remaining: 214ms
46:	learn: 30.3213898	total: 185ms	remaining: 209ms
47:	learn: 30.1882908	total: 188ms	remaining: 204ms
48:	learn: 30.0903758	total: 192ms	remaining: 200ms
49:	learn: 29.8990064	total: 195ms	remaining: 195ms
50:	learn: 29.6651764	total: 198ms	remaining: 191ms
51:	learn: 29.4340813	total: 202ms	remaining: 186ms
52:	learn: 29.1819815	total: 205ms	remaining: 182ms
53:	learn: 29.0637148	total: 208ms	remaining: 177ms
54:	learn: 28.8898860	total: 212ms	remaining: 173ms
55:	learn: 28.8417689	total: 213ms	remaining: 167ms
56:	learn: 28.6409462	total: 216ms	remaining: 163ms
57:	learn: 28.4473653	total: 219ms	remaining: 159ms
58:	learn: 28.2766846	total: 222ms	remaining: 155ms
59:	learn: 28.1096025	total: 226ms	remaining: 150ms
60:	learn: 27.9814157	total: 229ms	remaining: 146ms
61:	learn: 27.8747488	total: 233ms	remaining: 143ms
62:	learn: 27.6892718	total: 236ms	remaining: 139ms
63:	learn: 27.6098588	total: 240ms	remaining: 135ms
64:	learn: 27.5043123	total: 243ms	remaining: 131ms
65:	learn: 27.4065702	total: 247ms	remaining: 127ms
66:	learn: 27.2783015	total: 254ms	remaining: 125ms
67:	learn: 27.0649253	total: 259ms	remaining: 122ms
68:	learn: 26.9494723	total: 264ms	remaining: 119ms
69:	learn: 26.9062912	total: 269ms	remaining: 115ms
70:	learn: 26.7995709	total: 273ms	remaining: 111ms
71:	learn: 26.7197632	total: 278ms	remaining: 108ms
72:	learn: 26.5838489	total: 281ms	remaining: 104ms
73:	learn: 26.4102866	total: 285ms	remaining: 100ms
74:	learn: 26.2967239	total: 288ms	remaining: 96ms
75:	learn: 26.1863197	total: 291ms	remaining: 92ms
76:	learn: 26.0516965	total: 295ms	remaining: 88ms
77:	learn: 25.9156355	total: 298ms	remaining: 84.1ms
78:	learn: 25.8544810	total: 302ms	remaining: 80.2ms
79:	learn: 25.7610687	total: 305ms	remaining: 76.2ms
80:	learn: 25.6755141	total: 308ms	remaining: 72.2ms
81:	learn: 25.5633857	total: 311ms	remaining: 68.3ms
82:	learn: 25.5137377	total: 314ms	remaining: 64.4ms
83:	learn: 25.4026911	total: 318ms	remaining: 60.5ms
84:	learn: 25.2825971	total: 321ms	remaining: 56.6ms
85:	learn: 25.1919139	total: 324ms	remaining: 52.7ms
86:	learn: 25.1038574	total: 327ms	remaining: 48.9ms
87:	learn: 25.0552853	total: 330ms	remaining: 45ms
88:	learn: 24.9391083	total: 333ms	remaining: 41.2ms
89:	learn: 24.7886814	total: 337ms	remaining: 37.4ms
90:	learn: 24.7026802	total: 340ms	remaining: 33.6ms
91:	learn: 24.6015527	total: 344ms	remaining: 29.9ms
92:	learn: 24.5036952	total: 347ms	remaining: 26.1ms
93:	learn: 24.4476589	total: 350ms	remaining: 22.4ms
94:	learn: 24.4226950	total: 354ms	remaining: 18.6ms
95:	learn: 24.3621621	total: 357ms	remaining: 14.9ms
96:	learn: 24.3209805	total: 361ms	remaining: 11.2ms
97:	learn: 24.2384350	total: 364ms	remaining: 7.43ms
98:	learn: 24.1609656	total: 367ms	remaining: 3.71ms
99:	learn: 24.1125573	total: 371ms	remaining: 0us
0:	learn: 27.9345743	total: 771us	remaining: 154ms
1:	learn: 27.8117053	total: 1.39ms	remaining: 137ms
2:	learn: 27.7266602	total: 2.02ms	remaining: 133ms
3:	learn: 27.6016608	total: 2.64ms	remaining: 129ms
4:	learn: 27.5190033	total: 3.34ms	remaining: 130ms
5:	learn: 27.4017247	total: 4.01ms	remaining: 130ms
6:	learn: 27.3177916	total: 4.66ms	remaining: 128ms
7:	learn: 27.2359607	total: 5.51ms	remaining: 132ms
8:	learn: 27.1496142	total: 6.22ms	remaining: 132ms
9:	learn: 27.0644580	total: 6.96ms	remaining: 132ms
10:	learn: 26.9807354	total: 7.69ms	remaining: 132ms
11:	learn: 26.8725185	total: 8.43ms	remaining: 132ms
12:	learn: 26.7653965	total: 9.24ms	remaining: 133ms
13:	learn: 26.6551109	total: 9.94ms	remaining: 132ms
14:	learn: 26.5435448	total: 10.7ms	remaining: 132ms
15:	learn: 26.4688964	total: 11.4ms	remaining: 131ms
16:	learn: 26.3930912	total: 12.2ms	remaining: 131ms
17:	learn: 26.2864589	total: 12.9ms	remaining: 130ms
18:	learn: 26.2144529	total: 13.6ms	remaining: 130ms
19:	learn: 26.1091767	total: 14.4ms	remaining: 129ms
20:	learn: 26.0043329	total: 15.1ms	remaining: 129ms
21:	learn: 25.9052945	total: 15.8ms	remaining: 128ms
22:	learn: 25.8258706	total: 16.5ms	remaining: 127ms
23:	learn: 25.7302172	total: 17.2ms	remaining: 126ms
24:	learn: 25.6589246	total: 17.9ms	remaining: 125ms
25:	learn: 25.5854899	total: 18.7ms	remaining: 125ms
26:	learn: 25.4915921	total: 19.5ms	remaining: 125ms
27:	learn: 25.3997623	total: 20.2ms	remaining: 124ms
28:	learn: 25.3279579	total: 20.9ms	remaining: 123ms
29:	learn: 25.2580381	total: 21.6ms	remaining: 122ms
30:	learn: 25.1909251	total: 22.3ms	remaining: 122ms
31:	learn: 25.1220565	total: 23.1ms	remaining: 121ms
32:	learn: 25.0348621	total: 23.9ms	remaining: 121ms
33:	learn: 24.9754828	total: 24.7ms	remaining: 121ms
34:	learn: 24.8869750	total: 25.5ms	remaining: 120ms
35:	learn: 24.8141019	total: 26.3ms	remaining: 120ms
36:	learn: 24.7311803	total: 27ms	remaining: 119ms
37:	learn: 24.6656989	total: 28ms	remaining: 119ms
38:	learn: 24.5954442	total: 29ms	remaining: 120ms
39:	learn: 24.5341309	total: 31ms	remaining: 124ms
40:	learn: 24.4839865	total: 31.9ms	remaining: 124ms
41:	learn: 24.4231791	total: 32.7ms	remaining: 123ms
42:	learn: 24.3410517	total: 33.6ms	remaining: 123ms
43:	learn: 24.2639438	total: 34.4ms	remaining: 122ms
44:	learn: 24.2087714	total: 35.2ms	remaining: 121ms
45:	learn: 24.1410945	total: 36ms	remaining: 121ms
46:	learn: 24.0639859	total: 37.3ms	remaining: 121ms
47:	learn: 24.0082838	total: 38.3ms	remaining: 121ms
48:	learn: 23.9394332	total: 39.2ms	remaining: 121ms
49:	learn: 23.8661139	total: 40.7ms	remaining: 122ms
50:	learn: 23.8268244	total: 41.8ms	remaining: 122ms
51:	learn: 23.7472920	total: 42.9ms	remaining: 122ms
52:	learn: 23.6902543	total: 43.8ms	remaining: 122ms
53:	learn: 23.6171283	total: 44.8ms	remaining: 121ms
54:	learn: 23.5617157	total: 45.8ms	remaining: 121ms
55:	learn: 23.4919078	total: 46.8ms	remaining: 120ms
56:	learn: 23.4357391	total: 47.6ms	remaining: 119ms
57:	learn: 23.3849463	total: 48.5ms	remaining: 119ms
58:	learn: 23.3196328	total: 49.3ms	remaining: 118ms
59:	learn: 23.2756437	total: 50.1ms	remaining: 117ms
60:	learn: 23.2233902	total: 50.9ms	remaining: 116ms
61:	learn: 23.1858613	total: 51.9ms	remaining: 116ms
62:	learn: 23.1184971	total: 52.9ms	remaining: 115ms
63:	learn: 23.0800295	total: 53.8ms	remaining: 114ms
64:	learn: 23.0300653	total: 54.8ms	remaining: 114ms
65:	learn: 22.9645504	total: 55.5ms	remaining: 113ms
66:	learn: 22.9000149	total: 56.3ms	remaining: 112ms
67:	learn: 22.8309058	total: 57.1ms	remaining: 111ms
68:	learn: 22.7854340	total: 57.9ms	remaining: 110ms
69:	learn: 22.7260500	total: 58.8ms	remaining: 109ms
70:	learn: 22.6820031	total: 59.5ms	remaining: 108ms
71:	learn: 22.6463359	total: 60.3ms	remaining: 107ms
72:	learn: 22.6126329	total: 61.1ms	remaining: 106ms
73:	learn: 22.5668259	total: 61.9ms	remaining: 105ms
74:	learn: 22.5101083	total: 62.7ms	remaining: 104ms
75:	learn: 22.4574310	total: 63.5ms	remaining: 104ms
76:	learn: 22.4128950	total: 64.5ms	remaining: 103ms
77:	learn: 22.3835496	total: 65.3ms	remaining: 102ms
78:	learn: 22.3353060	total: 66.1ms	remaining: 101ms
79:	learn: 22.2804778	total: 66.9ms	remaining: 100ms
80:	learn: 22.2271546	total: 67.7ms	remaining: 99.4ms
81:	learn: 22.1788026	total: 68.5ms	remaining: 98.5ms
82:	learn: 22.1396310	total: 69.3ms	remaining: 97.6ms
83:	learn: 22.0891025	total: 70ms	remaining: 96.7ms
84:	learn: 22.0584492	total: 70.8ms	remaining: 95.7ms
85:	learn: 22.0084313	total: 71.6ms	remaining: 94.9ms
86:	learn: 21.9686494	total: 72.3ms	remaining: 93.9ms
87:	learn: 21.9184861	total: 73.1ms	remaining: 93.1ms
88:	learn: 21.8636253	total: 73.9ms	remaining: 92.2ms
89:	learn: 21.8129067	total: 74.7ms	remaining: 91.3ms
90:	learn: 21.7689727	total: 75.5ms	remaining: 90.4ms
91:	learn: 21.7352413	total: 76.4ms	remaining: 89.7ms
92:	learn: 21.6803661	total: 77.2ms	remaining: 88.8ms
93:	learn: 21.6358488	total: 77.9ms	remaining: 87.8ms
94:	learn: 21.5806150	total: 78.6ms	remaining: 86.9ms
95:	learn: 21.5517497	total: 79.5ms	remaining: 86.1ms
96:	learn: 21.5074432	total: 80.3ms	remaining: 85.2ms
97:	learn: 21.4850405	total: 81ms	remaining: 84.3ms
98:	learn: 21.4476621	total: 81.8ms	remaining: 83.4ms
99:	learn: 21.4119273	total: 82.6ms	remaining: 82.6ms
100:	learn: 21.3877385	total: 83.4ms	remaining: 81.7ms
101:	learn: 21.3482376	total: 84.2ms	remaining: 80.9ms
102:	learn: 21.3073720	total: 84.9ms	remaining: 80ms
103:	learn: 21.2671738	total: 85.7ms	remaining: 79.1ms
104:	learn: 21.2362785	total: 86.4ms	remaining: 78.2ms
105:	learn: 21.2193724	total: 87.3ms	remaining: 77.4ms
106:	learn: 21.1796194	total: 88.1ms	remaining: 76.6ms
107:	learn: 21.1511414	total: 89ms	remaining: 75.8ms
108:	learn: 21.1203718	total: 90ms	remaining: 75.1ms
109:	learn: 21.0915582	total: 90.9ms	remaining: 74.3ms
110:	learn: 21.0578145	total: 91.6ms	remaining: 73.4ms
111:	learn: 21.0341551	total: 92.4ms	remaining: 72.6ms
112:	learn: 21.0145973	total: 93.1ms	remaining: 71.7ms
113:	learn: 20.9914530	total: 93.8ms	remaining: 70.8ms
114:	learn: 20.9552569	total: 94.6ms	remaining: 69.9ms
115:	learn: 20.9189405	total: 95.3ms	remaining: 69ms
116:	learn: 20.8791064	total: 96.1ms	remaining: 68.2ms
117:	learn: 20.8540204	total: 96.9ms	remaining: 67.4ms
118:	learn: 20.8271144	total: 97.8ms	remaining: 66.5ms
119:	learn: 20.7866688	total: 98.6ms	remaining: 65.7ms
120:	learn: 20.7633119	total: 99.4ms	remaining: 64.9ms
121:	learn: 20.7312060	total: 101ms	remaining: 64.3ms
122:	learn: 20.7056447	total: 102ms	remaining: 63.6ms
123:	learn: 20.6774292	total: 103ms	remaining: 62.9ms
124:	learn: 20.6476333	total: 103ms	remaining: 62.1ms
125:	learn: 20.6307514	total: 104ms	remaining: 61.3ms
126:	learn: 20.5925456	total: 105ms	remaining: 60.4ms
127:	learn: 20.5763798	total: 106ms	remaining: 59.6ms
128:	learn: 20.5342001	total: 107ms	remaining: 58.8ms
129:	learn: 20.5063809	total: 108ms	remaining: 57.9ms
130:	learn: 20.4709801	total: 108ms	remaining: 57ms
131:	learn: 20.4459135	total: 109ms	remaining: 56.1ms
132:	learn: 20.4292225	total: 110ms	remaining: 55.2ms
133:	learn: 20.4109592	total: 110ms	remaining: 54.3ms
134:	learn: 20.3875851	total: 111ms	remaining: 53.4ms
135:	learn: 20.3551300	total: 112ms	remaining: 52.5ms
136:	learn: 20.3225285	total: 112ms	remaining: 51.6ms
137:	learn: 20.2916189	total: 113ms	remaining: 50.7ms
138:	learn: 20.2631819	total: 113ms	remaining: 49.8ms
139:	learn: 20.2405951	total: 114ms	remaining: 48.9ms
140:	learn: 20.2096812	total: 115ms	remaining: 48.1ms
141:	learn: 20.1845120	total: 115ms	remaining: 47.2ms
142:	learn: 20.1654143	total: 116ms	remaining: 46.3ms
143:	learn: 20.1487737	total: 117ms	remaining: 45.5ms
144:	learn: 20.1258372	total: 118ms	remaining: 44.6ms
145:	learn: 20.0901895	total: 118ms	remaining: 43.7ms
146:	learn: 20.0735524	total: 119ms	remaining: 42.9ms
147:	learn: 20.0541408	total: 120ms	remaining: 42ms
148:	learn: 20.0355104	total: 120ms	remaining: 41.1ms
149:	learn: 20.0131746	total: 121ms	remaining: 40.3ms
150:	learn: 19.9966686	total: 122ms	remaining: 39.4ms
151:	learn: 19.9701090	total: 122ms	remaining: 38.6ms
152:	learn: 19.9540785	total: 123ms	remaining: 37.8ms
153:	learn: 19.9342859	total: 124ms	remaining: 37ms
154:	learn: 19.9140882	total: 124ms	remaining: 36.1ms
155:	learn: 19.9004829	total: 125ms	remaining: 35.3ms
156:	learn: 19.8857734	total: 126ms	remaining: 34.4ms
157:	learn: 19.8743254	total: 126ms	remaining: 33.6ms
158:	learn: 19.8464976	total: 127ms	remaining: 32.8ms
159:	learn: 19.8206431	total: 128ms	remaining: 31.9ms
160:	learn: 19.8073402	total: 128ms	remaining: 31.1ms
161:	learn: 19.7846014	total: 129ms	remaining: 30.3ms
162:	learn: 19.7649191	total: 130ms	remaining: 29.5ms
163:	learn: 19.7472124	total: 130ms	remaining: 28.6ms
164:	learn: 19.7324825	total: 131ms	remaining: 27.8ms
165:	learn: 19.7087907	total: 132ms	remaining: 27ms
166:	learn: 19.6749642	total: 132ms	remaining: 26.2ms
167:	learn: 19.6593869	total: 133ms	remaining: 25.3ms
168:	learn: 19.6407421	total: 134ms	remaining: 24.5ms
169:	learn: 19.6129225	total: 134ms	remaining: 23.7ms
170:	learn: 19.5912312	total: 135ms	remaining: 22.9ms
171:	learn: 19.5801253	total: 136ms	remaining: 22.1ms
172:	learn: 19.5478447	total: 136ms	remaining: 21.3ms
173:	learn: 19.5246807	total: 137ms	remaining: 20.5ms
174:	learn: 19.4928102	total: 138ms	remaining: 19.7ms
175:	learn: 19.4734488	total: 139ms	remaining: 18.9ms
176:	learn: 19.4504306	total: 140ms	remaining: 18.1ms
177:	learn: 19.4384187	total: 141ms	remaining: 17.4ms
178:	learn: 19.4211715	total: 141ms	remaining: 16.6ms
179:	learn: 19.4094261	total: 142ms	remaining: 15.8ms
180:	learn: 19.3993272	total: 143ms	remaining: 15ms
181:	learn: 19.3854976	total: 144ms	remaining: 14.2ms
182:	learn: 19.3738124	total: 144ms	remaining: 13.4ms
183:	learn: 19.3543461	total: 145ms	remaining: 12.6ms
184:	learn: 19.3418462	total: 146ms	remaining: 11.8ms
185:	learn: 19.3279260	total: 147ms	remaining: 11ms
186:	learn: 19.3016907	total: 147ms	remaining: 10.2ms
187:	learn: 19.2819524	total: 148ms	remaining: 9.46ms
188:	learn: 19.2701816	total: 149ms	remaining: 8.66ms
189:	learn: 19.2533731	total: 150ms	remaining: 7.87ms
190:	learn: 19.2315471	total: 150ms	remaining: 7.08ms
191:	learn: 19.2206058	total: 151ms	remaining: 6.29ms
192:	learn: 19.2083106	total: 152ms	remaining: 5.5ms
193:	learn: 19.1926492	total: 152ms	remaining: 4.72ms
194:	learn: 19.1809773	total: 153ms	remaining: 3.93ms
195:	learn: 19.1670208	total: 154ms	remaining: 3.14ms
196:	learn: 19.1589639	total: 155ms	remaining: 2.36ms
197:	learn: 19.1459478	total: 156ms	remaining: 1.57ms
198:	learn: 19.1294348	total: 157ms	remaining: 786us
199:	learn: 19.1135766	total: 157ms	remaining: 0us
0:	learn: 43.7763277	total: 900us	remaining: 179ms
1:	learn: 43.5425482	total: 1.7ms	remaining: 168ms
2:	learn: 43.2962189	total: 2.45ms	remaining: 161ms
3:	learn: 43.0734657	total: 3.74ms	remaining: 183ms
4:	learn: 42.8498475	total: 4.79ms	remaining: 187ms
5:	learn: 42.6251089	total: 5.53ms	remaining: 179ms
6:	learn: 42.5184166	total: 6.28ms	remaining: 173ms
7:	learn: 42.3132704	total: 7ms	remaining: 168ms
8:	learn: 42.1684353	total: 7.77ms	remaining: 165ms
9:	learn: 41.9743216	total: 8.55ms	remaining: 163ms
10:	learn: 41.7687629	total: 9.28ms	remaining: 159ms
11:	learn: 41.6159007	total: 10ms	remaining: 157ms
12:	learn: 41.4367166	total: 10.8ms	remaining: 155ms
13:	learn: 41.2720122	total: 11.4ms	remaining: 152ms
14:	learn: 41.1625566	total: 12ms	remaining: 149ms
15:	learn: 40.9646939	total: 12.6ms	remaining: 145ms
16:	learn: 40.7635884	total: 13.2ms	remaining: 143ms
17:	learn: 40.5831233	total: 13.9ms	remaining: 141ms
18:	learn: 40.4116380	total: 14.7ms	remaining: 140ms
19:	learn: 40.2195109	total: 15.3ms	remaining: 137ms
20:	learn: 40.0415345	total: 15.9ms	remaining: 136ms
21:	learn: 39.8830293	total: 16.5ms	remaining: 133ms
22:	learn: 39.7251732	total: 17.2ms	remaining: 132ms
23:	learn: 39.5177281	total: 18ms	remaining: 132ms
24:	learn: 39.3586500	total: 18.8ms	remaining: 132ms
25:	learn: 39.1858903	total: 19.6ms	remaining: 131ms
26:	learn: 39.0231535	total: 20.3ms	remaining: 130ms
27:	learn: 38.8689164	total: 21ms	remaining: 129ms
28:	learn: 38.6953014	total: 21.8ms	remaining: 128ms
29:	learn: 38.5253733	total: 22.4ms	remaining: 127ms
30:	learn: 38.3030785	total: 23.2ms	remaining: 126ms
31:	learn: 38.2381396	total: 23.9ms	remaining: 126ms
32:	learn: 38.0725649	total: 24.6ms	remaining: 124ms
33:	learn: 37.8964718	total: 25.3ms	remaining: 124ms
34:	learn: 37.6864210	total: 26.1ms	remaining: 123ms
35:	learn: 37.5312464	total: 26.7ms	remaining: 122ms
36:	learn: 37.4608027	total: 27.4ms	remaining: 121ms
37:	learn: 37.2959375	total: 28.2ms	remaining: 120ms
38:	learn: 37.1657345	total: 29ms	remaining: 120ms
39:	learn: 37.0888849	total: 29.8ms	remaining: 119ms
40:	learn: 36.9390283	total: 30.6ms	remaining: 119ms
41:	learn: 36.8317263	total: 31.4ms	remaining: 118ms
42:	learn: 36.6609204	total: 32.2ms	remaining: 118ms
43:	learn: 36.4914247	total: 33ms	remaining: 117ms
44:	learn: 36.3949526	total: 33.6ms	remaining: 116ms
45:	learn: 36.2630769	total: 34.3ms	remaining: 115ms
46:	learn: 36.1600369	total: 35ms	remaining: 114ms
47:	learn: 36.0303085	total: 35.8ms	remaining: 113ms
48:	learn: 35.8810487	total: 36.4ms	remaining: 112ms
49:	learn: 35.7458358	total: 37.1ms	remaining: 111ms
50:	learn: 35.6449680	total: 37.9ms	remaining: 111ms
51:	learn: 35.5367778	total: 38.6ms	remaining: 110ms
52:	learn: 35.4878294	total: 39.3ms	remaining: 109ms
53:	learn: 35.3692334	total: 40.1ms	remaining: 108ms
54:	learn: 35.2474018	total: 40.9ms	remaining: 108ms
55:	learn: 35.1093579	total: 41.9ms	remaining: 108ms
56:	learn: 34.9763022	total: 42.9ms	remaining: 108ms
57:	learn: 34.9189684	total: 43.6ms	remaining: 107ms
58:	learn: 34.8607770	total: 44.4ms	remaining: 106ms
59:	learn: 34.8069970	total: 45.2ms	remaining: 105ms
60:	learn: 34.6821561	total: 46ms	remaining: 105ms
61:	learn: 34.5785540	total: 47ms	remaining: 105ms
62:	learn: 34.4791008	total: 48ms	remaining: 104ms
63:	learn: 34.3428443	total: 48.9ms	remaining: 104ms
64:	learn: 34.2536515	total: 49.9ms	remaining: 104ms
65:	learn: 34.1255724	total: 51.2ms	remaining: 104ms
66:	learn: 34.0059851	total: 52.3ms	remaining: 104ms
67:	learn: 33.9029376	total: 53.6ms	remaining: 104ms
68:	learn: 33.8499467	total: 54.3ms	remaining: 103ms
69:	learn: 33.7331715	total: 55.1ms	remaining: 102ms
70:	learn: 33.6685354	total: 55.9ms	remaining: 102ms
71:	learn: 33.5756277	total: 56.8ms	remaining: 101ms
72:	learn: 33.4492129	total: 57.6ms	remaining: 100ms
73:	learn: 33.3406780	total: 58.5ms	remaining: 99.5ms
74:	learn: 33.2898126	total: 59.3ms	remaining: 98.8ms
75:	learn: 33.1573492	total: 60.2ms	remaining: 98.3ms
76:	learn: 33.0267251	total: 61.1ms	remaining: 97.6ms
77:	learn: 32.9636970	total: 61.7ms	remaining: 96.5ms
78:	learn: 32.8564826	total: 62.5ms	remaining: 95.7ms
79:	learn: 32.7460286	total: 63.3ms	remaining: 94.9ms
80:	learn: 32.6635501	total: 64.1ms	remaining: 94.2ms
81:	learn: 32.5822630	total: 64.9ms	remaining: 93.5ms
82:	learn: 32.5050696	total: 65.7ms	remaining: 92.7ms
83:	learn: 32.4080310	total: 66.6ms	remaining: 92ms
84:	learn: 32.3696108	total: 67.5ms	remaining: 91.3ms
85:	learn: 32.2374655	total: 68.3ms	remaining: 90.6ms
86:	learn: 32.1681005	total: 68.9ms	remaining: 89.5ms
87:	learn: 32.0671452	total: 69.6ms	remaining: 88.6ms
88:	learn: 31.9890018	total: 70.4ms	remaining: 87.8ms
89:	learn: 31.9405798	total: 71ms	remaining: 86.8ms
90:	learn: 31.8525989	total: 71.8ms	remaining: 86ms
91:	learn: 31.8067683	total: 72.5ms	remaining: 85.1ms
92:	learn: 31.7403038	total: 73.2ms	remaining: 84.2ms
93:	learn: 31.6496396	total: 73.8ms	remaining: 83.2ms
94:	learn: 31.5943492	total: 74.5ms	remaining: 82.3ms
95:	learn: 31.5090602	total: 75.3ms	remaining: 81.6ms
96:	learn: 31.4759685	total: 76ms	remaining: 80.8ms
97:	learn: 31.4068487	total: 76.7ms	remaining: 79.8ms
98:	learn: 31.3269903	total: 77.3ms	remaining: 78.9ms
99:	learn: 31.2432888	total: 78ms	remaining: 78ms
100:	learn: 31.2105541	total: 78.7ms	remaining: 77.1ms
101:	learn: 31.1789009	total: 79.3ms	remaining: 76.2ms
102:	learn: 31.1420713	total: 80ms	remaining: 75.3ms
103:	learn: 31.1084427	total: 80.6ms	remaining: 74.4ms
104:	learn: 31.0371224	total: 81.2ms	remaining: 73.5ms
105:	learn: 30.9296267	total: 81.9ms	remaining: 72.6ms
106:	learn: 30.8407640	total: 82.6ms	remaining: 71.8ms
107:	learn: 30.8071437	total: 83.2ms	remaining: 70.9ms
108:	learn: 30.7540713	total: 83.9ms	remaining: 70ms
109:	learn: 30.6681028	total: 84.6ms	remaining: 69.2ms
110:	learn: 30.5519503	total: 85.3ms	remaining: 68.4ms
111:	learn: 30.5150835	total: 86.1ms	remaining: 67.6ms
112:	learn: 30.4915748	total: 86.7ms	remaining: 66.8ms
113:	learn: 30.4009761	total: 87.4ms	remaining: 66ms
114:	learn: 30.2992489	total: 88.1ms	remaining: 65.1ms
115:	learn: 30.2181480	total: 88.7ms	remaining: 64.3ms
116:	learn: 30.1383821	total: 89.4ms	remaining: 63.4ms
117:	learn: 30.1115345	total: 90ms	remaining: 62.6ms
118:	learn: 30.0419118	total: 90.7ms	remaining: 61.7ms
119:	learn: 29.9709627	total: 91.4ms	remaining: 60.9ms
120:	learn: 29.8847950	total: 92ms	remaining: 60ms
121:	learn: 29.8249202	total: 92.6ms	remaining: 59.2ms
122:	learn: 29.7611567	total: 93.2ms	remaining: 58.3ms
123:	learn: 29.7127495	total: 93.8ms	remaining: 57.5ms
124:	learn: 29.6248001	total: 94.5ms	remaining: 56.7ms
125:	learn: 29.5598910	total: 95.2ms	remaining: 55.9ms
126:	learn: 29.4992635	total: 95.7ms	remaining: 55ms
127:	learn: 29.4392123	total: 96.5ms	remaining: 54.3ms
128:	learn: 29.3865130	total: 97.2ms	remaining: 53.5ms
129:	learn: 29.2937471	total: 97.8ms	remaining: 52.7ms
130:	learn: 29.2596044	total: 98.4ms	remaining: 51.8ms
131:	learn: 29.2037725	total: 99ms	remaining: 51ms
132:	learn: 29.1280377	total: 99.7ms	remaining: 50.2ms
133:	learn: 29.1073318	total: 100ms	remaining: 49.5ms
134:	learn: 29.0450521	total: 101ms	remaining: 48.8ms
135:	learn: 28.9607208	total: 102ms	remaining: 48.1ms
136:	learn: 28.9395559	total: 103ms	remaining: 47.4ms
137:	learn: 28.9062837	total: 104ms	remaining: 46.7ms
138:	learn: 28.8659657	total: 105ms	remaining: 45.9ms
139:	learn: 28.7936056	total: 105ms	remaining: 45.2ms
140:	learn: 28.7495567	total: 106ms	remaining: 44.4ms
141:	learn: 28.6994707	total: 107ms	remaining: 43.6ms
142:	learn: 28.6843722	total: 107ms	remaining: 42.8ms
143:	learn: 28.6516385	total: 108ms	remaining: 42ms
144:	learn: 28.5986641	total: 109ms	remaining: 41.3ms
145:	learn: 28.5411248	total: 110ms	remaining: 40.5ms
146:	learn: 28.5164598	total: 110ms	remaining: 39.8ms
147:	learn: 28.4925149	total: 111ms	remaining: 39ms
148:	learn: 28.3915985	total: 112ms	remaining: 38.2ms
149:	learn: 28.3617110	total: 112ms	remaining: 37.5ms
150:	learn: 28.2883651	total: 113ms	remaining: 36.7ms
151:	learn: 28.2678446	total: 114ms	remaining: 35.9ms
152:	learn: 28.2463774	total: 114ms	remaining: 35.1ms
153:	learn: 28.1943698	total: 115ms	remaining: 34.4ms
154:	learn: 28.1775283	total: 116ms	remaining: 33.6ms
155:	learn: 28.1639008	total: 116ms	remaining: 32.8ms
156:	learn: 28.1360277	total: 117ms	remaining: 32.1ms
157:	learn: 28.0392251	total: 118ms	remaining: 31.3ms
158:	learn: 27.9651176	total: 119ms	remaining: 30.6ms
159:	learn: 27.9186795	total: 119ms	remaining: 29.8ms
160:	learn: 27.9011575	total: 120ms	remaining: 29.1ms
161:	learn: 27.8790276	total: 121ms	remaining: 28.4ms
162:	learn: 27.8472134	total: 122ms	remaining: 27.6ms
163:	learn: 27.8176856	total: 122ms	remaining: 26.8ms
164:	learn: 27.7780048	total: 123ms	remaining: 26.1ms
165:	learn: 27.7593980	total: 124ms	remaining: 25.3ms
166:	learn: 27.7408393	total: 124ms	remaining: 24.6ms
167:	learn: 27.7069372	total: 125ms	remaining: 23.8ms
168:	learn: 27.6890665	total: 126ms	remaining: 23ms
169:	learn: 27.6776691	total: 126ms	remaining: 22.3ms
170:	learn: 27.6183990	total: 127ms	remaining: 21.5ms
171:	learn: 27.5866176	total: 128ms	remaining: 20.8ms
172:	learn: 27.5178625	total: 128ms	remaining: 20ms
173:	learn: 27.4428647	total: 129ms	remaining: 19.3ms
174:	learn: 27.4173642	total: 130ms	remaining: 18.5ms
175:	learn: 27.3966593	total: 130ms	remaining: 17.8ms
176:	learn: 27.3081651	total: 131ms	remaining: 17ms
177:	learn: 27.2618516	total: 132ms	remaining: 16.3ms
178:	learn: 27.2410010	total: 132ms	remaining: 15.5ms
179:	learn: 27.2253158	total: 133ms	remaining: 14.8ms
180:	learn: 27.1869730	total: 134ms	remaining: 14ms
181:	learn: 27.1381795	total: 134ms	remaining: 13.3ms
182:	learn: 27.1004446	total: 135ms	remaining: 12.5ms
183:	learn: 27.0549503	total: 136ms	remaining: 11.8ms
184:	learn: 27.0401194	total: 136ms	remaining: 11.1ms
185:	learn: 27.0145052	total: 137ms	remaining: 10.3ms
186:	learn: 26.9934631	total: 138ms	remaining: 9.58ms
187:	learn: 26.9739953	total: 138ms	remaining: 8.84ms
188:	learn: 26.9571286	total: 139ms	remaining: 8.1ms
189:	learn: 26.9207729	total: 140ms	remaining: 7.36ms
190:	learn: 26.8901767	total: 140ms	remaining: 6.62ms
191:	learn: 26.8731673	total: 141ms	remaining: 5.88ms
192:	learn: 26.8145174	total: 142ms	remaining: 5.14ms
193:	learn: 26.7982016	total: 143ms	remaining: 4.41ms
194:	learn: 26.7725350	total: 143ms	remaining: 3.67ms
195:	learn: 26.7527195	total: 144ms	remaining: 2.94ms
196:	learn: 26.7417350	total: 145ms	remaining: 2.2ms
197:	learn: 26.7170891	total: 145ms	remaining: 1.47ms
198:	learn: 26.6754254	total: 146ms	remaining: 733us
199:	learn: 26.6578305	total: 146ms	remaining: 0us
0:	learn: 47.2096946	total: 755us	remaining: 150ms
1:	learn: 47.0455806	total: 1.43ms	remaining: 141ms
2:	learn: 46.9199293	total: 2.06ms	remaining: 135ms
3:	learn: 46.6906700	total: 2.66ms	remaining: 131ms
4:	learn: 46.5513236	total: 3.25ms	remaining: 127ms
5:	learn: 46.4696355	total: 3.87ms	remaining: 125ms
6:	learn: 46.3899562	total: 4.55ms	remaining: 125ms
7:	learn: 46.2924968	total: 5.16ms	remaining: 124ms
8:	learn: 46.0810214	total: 5.85ms	remaining: 124ms
9:	learn: 45.9849227	total: 6.54ms	remaining: 124ms
10:	learn: 45.8166278	total: 7.16ms	remaining: 123ms
11:	learn: 45.6853814	total: 7.82ms	remaining: 123ms
12:	learn: 45.6093390	total: 8.44ms	remaining: 121ms
13:	learn: 45.4259676	total: 9.05ms	remaining: 120ms
14:	learn: 45.3505842	total: 9.73ms	remaining: 120ms
15:	learn: 45.2325262	total: 10.5ms	remaining: 121ms
16:	learn: 45.0482095	total: 11.2ms	remaining: 120ms
17:	learn: 44.8654856	total: 11.8ms	remaining: 119ms
18:	learn: 44.7925480	total: 12.4ms	remaining: 118ms
19:	learn: 44.6355523	total: 13.1ms	remaining: 118ms
20:	learn: 44.4653569	total: 13.8ms	remaining: 117ms
21:	learn: 44.3795841	total: 14.4ms	remaining: 116ms
22:	learn: 44.2330627	total: 15.3ms	remaining: 118ms
23:	learn: 44.1636522	total: 16.2ms	remaining: 119ms
24:	learn: 44.0029579	total: 16.9ms	remaining: 119ms
25:	learn: 43.7660587	total: 17.6ms	remaining: 118ms
26:	learn: 43.6577036	total: 18.3ms	remaining: 117ms
27:	learn: 43.5801582	total: 19ms	remaining: 117ms
28:	learn: 43.5068855	total: 19.8ms	remaining: 117ms
29:	learn: 43.3672310	total: 20.4ms	remaining: 116ms
30:	learn: 43.2884884	total: 21.1ms	remaining: 115ms
31:	learn: 43.1262911	total: 21.7ms	remaining: 114ms
32:	learn: 43.0297532	total: 22.4ms	remaining: 114ms
33:	learn: 42.9665694	total: 23.1ms	remaining: 113ms
34:	learn: 42.8861114	total: 23.7ms	remaining: 112ms
35:	learn: 42.7743055	total: 24.4ms	remaining: 111ms
36:	learn: 42.6653889	total: 25.1ms	remaining: 110ms
37:	learn: 42.4791226	total: 25.8ms	remaining: 110ms
38:	learn: 42.3918757	total: 26.5ms	remaining: 109ms
39:	learn: 42.3119573	total: 27.3ms	remaining: 109ms
40:	learn: 42.2373451	total: 28ms	remaining: 109ms
41:	learn: 42.1228988	total: 28.9ms	remaining: 109ms
42:	learn: 42.0674026	total: 29.7ms	remaining: 108ms
43:	learn: 41.9749605	total: 30.4ms	remaining: 108ms
44:	learn: 41.9225428	total: 31.2ms	remaining: 107ms
45:	learn: 41.7536271	total: 31.9ms	remaining: 107ms
46:	learn: 41.6879371	total: 32.7ms	remaining: 106ms
47:	learn: 41.6033098	total: 33.4ms	remaining: 106ms
48:	learn: 41.4212282	total: 34ms	remaining: 105ms
49:	learn: 41.2660588	total: 34.7ms	remaining: 104ms
50:	learn: 41.1442812	total: 35.4ms	remaining: 103ms
51:	learn: 41.0798646	total: 36.1ms	remaining: 103ms
52:	learn: 41.0187839	total: 36.8ms	remaining: 102ms
53:	learn: 40.9800372	total: 37.6ms	remaining: 102ms
54:	learn: 40.9110229	total: 38.3ms	remaining: 101ms
55:	learn: 40.8180769	total: 39ms	remaining: 100ms
56:	learn: 40.6851799	total: 39.7ms	remaining: 99.7ms
57:	learn: 40.6295409	total: 40.5ms	remaining: 99.1ms
58:	learn: 40.5519644	total: 41.2ms	remaining: 98.6ms
59:	learn: 40.4913726	total: 41.9ms	remaining: 97.9ms
60:	learn: 40.4522836	total: 42.8ms	remaining: 97.4ms
61:	learn: 40.3879876	total: 43.6ms	remaining: 97ms
62:	learn: 40.3461618	total: 44.3ms	remaining: 96.4ms
63:	learn: 40.2913591	total: 45.1ms	remaining: 95.8ms
64:	learn: 40.2252350	total: 45.8ms	remaining: 95.1ms
65:	learn: 40.0964411	total: 46.5ms	remaining: 94.5ms
66:	learn: 40.0490943	total: 47.3ms	remaining: 93.8ms
67:	learn: 39.9888799	total: 48ms	remaining: 93.2ms
68:	learn: 39.9398320	total: 48.8ms	remaining: 92.6ms
69:	learn: 39.7895548	total: 49.5ms	remaining: 91.9ms
70:	learn: 39.7356955	total: 50.1ms	remaining: 91.1ms
71:	learn: 39.6678715	total: 50.9ms	remaining: 90.5ms
72:	learn: 39.6021536	total: 52ms	remaining: 90.5ms
73:	learn: 39.5317494	total: 53.3ms	remaining: 90.7ms
74:	learn: 39.4832446	total: 54.2ms	remaining: 90.4ms
75:	learn: 39.3267509	total: 55.2ms	remaining: 90ms
76:	learn: 39.2692949	total: 56ms	remaining: 89.4ms
77:	learn: 39.1767133	total: 57ms	remaining: 89.2ms
78:	learn: 39.1026762	total: 57.7ms	remaining: 88.4ms
79:	learn: 38.9596213	total: 59.2ms	remaining: 88.8ms
80:	learn: 38.9022307	total: 60.1ms	remaining: 88.3ms
81:	learn: 38.8075675	total: 61.1ms	remaining: 87.9ms
82:	learn: 38.7477780	total: 61.9ms	remaining: 87.3ms
83:	learn: 38.6685119	total: 62.9ms	remaining: 86.9ms
84:	learn: 38.6219792	total: 63.8ms	remaining: 86.3ms
85:	learn: 38.5950435	total: 64.8ms	remaining: 85.9ms
86:	learn: 38.5545925	total: 65.8ms	remaining: 85.5ms
87:	learn: 38.5075030	total: 66.9ms	remaining: 85.1ms
88:	learn: 38.4663593	total: 67.7ms	remaining: 84.5ms
89:	learn: 38.4301861	total: 68.5ms	remaining: 83.7ms
90:	learn: 38.3097418	total: 69.5ms	remaining: 83.3ms
91:	learn: 38.1761983	total: 70.4ms	remaining: 82.6ms
92:	learn: 38.1266292	total: 71.3ms	remaining: 82.1ms
93:	learn: 38.0792503	total: 72.2ms	remaining: 81.4ms
94:	learn: 38.0101759	total: 73ms	remaining: 80.7ms
95:	learn: 37.9555002	total: 73.9ms	remaining: 80.1ms
96:	learn: 37.8324713	total: 74.8ms	remaining: 79.4ms
97:	learn: 37.7293135	total: 75.6ms	remaining: 78.7ms
98:	learn: 37.6109948	total: 76.8ms	remaining: 78.3ms
99:	learn: 37.5911183	total: 77.6ms	remaining: 77.6ms
100:	learn: 37.4792785	total: 78.4ms	remaining: 76.8ms
101:	learn: 37.4324538	total: 79.1ms	remaining: 76ms
102:	learn: 37.4061539	total: 80.1ms	remaining: 75.4ms
103:	learn: 37.3537012	total: 80.9ms	remaining: 74.6ms
104:	learn: 37.3104791	total: 81.6ms	remaining: 73.8ms
105:	learn: 37.1816317	total: 82.4ms	remaining: 73.1ms
106:	learn: 37.1310052	total: 83.2ms	remaining: 72.3ms
107:	learn: 37.0965604	total: 84ms	remaining: 71.5ms
108:	learn: 36.9745357	total: 84.7ms	remaining: 70.8ms
109:	learn: 36.8520564	total: 85.5ms	remaining: 70ms
110:	learn: 36.7486473	total: 86.3ms	remaining: 69.2ms
111:	learn: 36.6295078	total: 87.1ms	remaining: 68.4ms
112:	learn: 36.6053038	total: 87.8ms	remaining: 67.6ms
113:	learn: 36.5673629	total: 88.6ms	remaining: 66.8ms
114:	learn: 36.4448034	total: 89.4ms	remaining: 66ms
115:	learn: 36.4216270	total: 90.1ms	remaining: 65.2ms
116:	learn: 36.3385522	total: 90.9ms	remaining: 64.5ms
117:	learn: 36.2396517	total: 91.6ms	remaining: 63.7ms
118:	learn: 36.1172270	total: 92.4ms	remaining: 62.9ms
119:	learn: 36.0673575	total: 93.2ms	remaining: 62.1ms
120:	learn: 35.9275860	total: 93.9ms	remaining: 61.3ms
121:	learn: 35.8457613	total: 94.7ms	remaining: 60.5ms
122:	learn: 35.7622694	total: 95.4ms	remaining: 59.7ms
123:	learn: 35.7324475	total: 96.1ms	remaining: 58.9ms
124:	learn: 35.6279687	total: 97ms	remaining: 58.2ms
125:	learn: 35.5991516	total: 97.7ms	remaining: 57.4ms
126:	learn: 35.5001054	total: 98.5ms	remaining: 56.6ms
127:	learn: 35.4656927	total: 99.3ms	remaining: 55.9ms
128:	learn: 35.3829580	total: 100ms	remaining: 55ms
129:	learn: 35.3517612	total: 101ms	remaining: 54.3ms
130:	learn: 35.3080191	total: 101ms	remaining: 53.5ms
131:	learn: 35.2779805	total: 102ms	remaining: 52.7ms
132:	learn: 35.1409651	total: 103ms	remaining: 52ms
133:	learn: 35.1136951	total: 104ms	remaining: 51.2ms
134:	learn: 35.0745418	total: 105ms	remaining: 50.4ms
135:	learn: 35.0333877	total: 105ms	remaining: 49.6ms
136:	learn: 34.9681328	total: 106ms	remaining: 48.9ms
137:	learn: 34.8658773	total: 107ms	remaining: 48.2ms
138:	learn: 34.8243538	total: 108ms	remaining: 47.4ms
139:	learn: 34.7850564	total: 109ms	remaining: 46.6ms
140:	learn: 34.7223791	total: 109ms	remaining: 45.8ms
141:	learn: 34.6720203	total: 110ms	remaining: 45ms
142:	learn: 34.6404646	total: 111ms	remaining: 44.2ms
143:	learn: 34.5925744	total: 112ms	remaining: 43.4ms
144:	learn: 34.4852407	total: 112ms	remaining: 42.6ms
145:	learn: 34.4421397	total: 113ms	remaining: 41.8ms
146:	learn: 34.4214323	total: 114ms	remaining: 41ms
147:	learn: 34.3284820	total: 115ms	remaining: 40.3ms
148:	learn: 34.2234314	total: 115ms	remaining: 39.5ms
149:	learn: 34.1405404	total: 116ms	remaining: 38.7ms
150:	learn: 34.0653285	total: 117ms	remaining: 37.9ms
151:	learn: 34.0310662	total: 118ms	remaining: 37.1ms
152:	learn: 33.9340201	total: 118ms	remaining: 36.4ms
153:	learn: 33.8801464	total: 119ms	remaining: 35.6ms
154:	learn: 33.8472829	total: 120ms	remaining: 34.8ms
155:	learn: 33.8340207	total: 120ms	remaining: 34ms
156:	learn: 33.7973942	total: 121ms	remaining: 33.2ms
157:	learn: 33.7040650	total: 122ms	remaining: 32.4ms
158:	learn: 33.6172658	total: 123ms	remaining: 31.6ms
159:	learn: 33.5436009	total: 123ms	remaining: 30.9ms
160:	learn: 33.4561155	total: 124ms	remaining: 30.1ms
161:	learn: 33.3937137	total: 125ms	remaining: 29.3ms
162:	learn: 33.3234550	total: 126ms	remaining: 28.6ms
163:	learn: 33.3027049	total: 127ms	remaining: 27.8ms
164:	learn: 33.2778112	total: 127ms	remaining: 27ms
165:	learn: 33.1839024	total: 128ms	remaining: 26.2ms
166:	learn: 33.1488597	total: 129ms	remaining: 25.5ms
167:	learn: 33.0938969	total: 130ms	remaining: 24.7ms
168:	learn: 33.0647018	total: 130ms	remaining: 23.9ms
169:	learn: 32.9892981	total: 131ms	remaining: 23.1ms
170:	learn: 32.9089974	total: 132ms	remaining: 22.4ms
171:	learn: 32.8686497	total: 133ms	remaining: 21.6ms
172:	learn: 32.8420706	total: 133ms	remaining: 20.8ms
173:	learn: 32.7825320	total: 134ms	remaining: 20.1ms
174:	learn: 32.7292564	total: 135ms	remaining: 19.3ms
175:	learn: 32.7136967	total: 136ms	remaining: 18.5ms
176:	learn: 32.6689320	total: 137ms	remaining: 17.8ms
177:	learn: 32.5987393	total: 137ms	remaining: 17ms
178:	learn: 32.5110719	total: 138ms	remaining: 16.2ms
179:	learn: 32.4019361	total: 139ms	remaining: 15.5ms
180:	learn: 32.3847107	total: 141ms	remaining: 14.8ms
181:	learn: 32.3252298	total: 142ms	remaining: 14.1ms
182:	learn: 32.2679775	total: 143ms	remaining: 13.3ms
183:	learn: 32.2447563	total: 144ms	remaining: 12.5ms
184:	learn: 32.1957336	total: 145ms	remaining: 11.7ms
185:	learn: 32.0969032	total: 146ms	remaining: 11ms
186:	learn: 32.0280809	total: 146ms	remaining: 10.2ms
187:	learn: 31.9980858	total: 147ms	remaining: 9.38ms
188:	learn: 31.9446015	total: 148ms	remaining: 8.59ms
189:	learn: 31.8916049	total: 148ms	remaining: 7.81ms
190:	learn: 31.8431043	total: 149ms	remaining: 7.03ms
191:	learn: 31.7440418	total: 150ms	remaining: 6.24ms
192:	learn: 31.6920360	total: 150ms	remaining: 5.46ms
193:	learn: 31.6670917	total: 151ms	remaining: 4.68ms
194:	learn: 31.6347902	total: 152ms	remaining: 3.9ms
195:	learn: 31.5944386	total: 153ms	remaining: 3.12ms
196:	learn: 31.5866871	total: 153ms	remaining: 2.34ms
197:	learn: 31.5058482	total: 154ms	remaining: 1.56ms
198:	learn: 31.4477161	total: 155ms	remaining: 778us
199:	learn: 31.3933696	total: 156ms	remaining: 0us
0:	learn: 46.8376728	total: 770us	remaining: 153ms
1:	learn: 46.6810718	total: 1.4ms	remaining: 139ms
2:	learn: 46.4699413	total: 2.04ms	remaining: 134ms
3:	learn: 46.3385439	total: 2.65ms	remaining: 130ms
4:	learn: 46.2407437	total: 3.23ms	remaining: 126ms
5:	learn: 46.1458179	total: 3.84ms	remaining: 124ms
6:	learn: 46.0754559	total: 4.44ms	remaining: 123ms
7:	learn: 45.8847909	total: 5.13ms	remaining: 123ms
8:	learn: 45.7696744	total: 5.84ms	remaining: 124ms
9:	learn: 45.6717142	total: 6.52ms	remaining: 124ms
10:	learn: 45.5845685	total: 7.14ms	remaining: 123ms
11:	learn: 45.4398381	total: 7.95ms	remaining: 124ms
12:	learn: 45.3312302	total: 8.67ms	remaining: 125ms
13:	learn: 45.2428587	total: 9.41ms	remaining: 125ms
14:	learn: 45.1718296	total: 10.2ms	remaining: 125ms
15:	learn: 45.0905314	total: 10.8ms	remaining: 125ms
16:	learn: 44.8871025	total: 11.6ms	remaining: 124ms
17:	learn: 44.7206295	total: 12.2ms	remaining: 123ms
18:	learn: 44.6584387	total: 12.9ms	remaining: 123ms
19:	learn: 44.4918756	total: 13.5ms	remaining: 122ms
20:	learn: 44.3304816	total: 14.1ms	remaining: 121ms
21:	learn: 44.2077441	total: 14.7ms	remaining: 119ms
22:	learn: 44.0595626	total: 15.4ms	remaining: 118ms
23:	learn: 43.9968476	total: 16ms	remaining: 117ms
24:	learn: 43.8554993	total: 17.1ms	remaining: 120ms
25:	learn: 43.7722399	total: 17.9ms	remaining: 120ms
26:	learn: 43.6819444	total: 18.5ms	remaining: 119ms
27:	learn: 43.6025929	total: 19.2ms	remaining: 118ms
28:	learn: 43.4871268	total: 19.8ms	remaining: 117ms
29:	learn: 43.3298565	total: 20.5ms	remaining: 116ms
30:	learn: 43.2362540	total: 21.1ms	remaining: 115ms
31:	learn: 43.1398083	total: 21.8ms	remaining: 115ms
32:	learn: 42.9665919	total: 22.5ms	remaining: 114ms
33:	learn: 42.8314587	total: 23.1ms	remaining: 113ms
34:	learn: 42.7506981	total: 23.7ms	remaining: 112ms
35:	learn: 42.6715579	total: 24.5ms	remaining: 112ms
36:	learn: 42.6125371	total: 25.1ms	remaining: 111ms
37:	learn: 42.4580772	total: 25.7ms	remaining: 110ms
38:	learn: 42.3837628	total: 26.4ms	remaining: 109ms
39:	learn: 42.3367222	total: 27ms	remaining: 108ms
40:	learn: 42.2661135	total: 27.7ms	remaining: 107ms
41:	learn: 42.2151138	total: 28.3ms	remaining: 107ms
42:	learn: 42.1634533	total: 29ms	remaining: 106ms
43:	learn: 42.0394266	total: 29.7ms	remaining: 105ms
44:	learn: 41.9012102	total: 30.3ms	remaining: 104ms
45:	learn: 41.7581615	total: 30.9ms	remaining: 103ms
46:	learn: 41.6865340	total: 31.5ms	remaining: 103ms
47:	learn: 41.5856110	total: 32.2ms	remaining: 102ms
48:	learn: 41.5339503	total: 32.9ms	remaining: 101ms
49:	learn: 41.4151557	total: 33.5ms	remaining: 101ms
50:	learn: 41.3100492	total: 34.2ms	remaining: 99.9ms
51:	learn: 41.2473827	total: 34.9ms	remaining: 99.2ms
52:	learn: 41.1763784	total: 35.6ms	remaining: 98.7ms
53:	learn: 41.1068967	total: 36.2ms	remaining: 98ms
54:	learn: 41.0509347	total: 36.9ms	remaining: 97.4ms
55:	learn: 41.0012289	total: 37.7ms	remaining: 97ms
56:	learn: 40.8988672	total: 38.4ms	remaining: 96.4ms
57:	learn: 40.8511801	total: 39.2ms	remaining: 96ms
58:	learn: 40.7938621	total: 39.9ms	remaining: 95.5ms
59:	learn: 40.7257990	total: 40.7ms	remaining: 95ms
60:	learn: 40.6771622	total: 41.4ms	remaining: 94.4ms
61:	learn: 40.5394512	total: 42.1ms	remaining: 93.6ms
62:	learn: 40.4448103	total: 42.7ms	remaining: 93ms
63:	learn: 40.3596307	total: 43.6ms	remaining: 92.6ms
64:	learn: 40.3248689	total: 44.5ms	remaining: 92.3ms
65:	learn: 40.2657920	total: 45.3ms	remaining: 92ms
66:	learn: 40.1536126	total: 46ms	remaining: 91.3ms
67:	learn: 39.9756806	total: 46.8ms	remaining: 90.8ms
68:	learn: 39.9385291	total: 47.5ms	remaining: 90.2ms
69:	learn: 39.8034193	total: 48.2ms	remaining: 89.6ms
70:	learn: 39.7547568	total: 49ms	remaining: 89.1ms
71:	learn: 39.7035746	total: 49.7ms	remaining: 88.4ms
72:	learn: 39.6378008	total: 50.4ms	remaining: 87.7ms
73:	learn: 39.5716644	total: 51.1ms	remaining: 87ms
74:	learn: 39.5366750	total: 51.8ms	remaining: 86.4ms
75:	learn: 39.5032447	total: 52.5ms	remaining: 85.7ms
76:	learn: 39.3973271	total: 53.2ms	remaining: 85.1ms
77:	learn: 39.2641280	total: 54.3ms	remaining: 84.9ms
78:	learn: 39.1575530	total: 55.2ms	remaining: 84.5ms
79:	learn: 39.0497504	total: 56.1ms	remaining: 84.2ms
80:	learn: 39.0037339	total: 57.3ms	remaining: 84.2ms
81:	learn: 38.8985234	total: 58.2ms	remaining: 83.7ms
82:	learn: 38.8654143	total: 59ms	remaining: 83.2ms
83:	learn: 38.7329489	total: 59.7ms	remaining: 82.5ms
84:	learn: 38.6477845	total: 60.5ms	remaining: 81.9ms
85:	learn: 38.6162732	total: 61.3ms	remaining: 81.2ms
86:	learn: 38.5872284	total: 62.3ms	remaining: 80.9ms
87:	learn: 38.5536948	total: 63.1ms	remaining: 80.3ms
88:	learn: 38.4862722	total: 63.9ms	remaining: 79.7ms
89:	learn: 38.4497112	total: 64.7ms	remaining: 79ms
90:	learn: 38.2920444	total: 65.4ms	remaining: 78.4ms
91:	learn: 38.2547036	total: 66.2ms	remaining: 77.8ms
92:	learn: 38.1550248	total: 67ms	remaining: 77ms
93:	learn: 38.1103665	total: 67.7ms	remaining: 76.3ms
94:	learn: 38.0474361	total: 68.4ms	remaining: 75.6ms
95:	learn: 38.0261541	total: 69.2ms	remaining: 75ms
96:	learn: 37.9221040	total: 69.9ms	remaining: 74.2ms
97:	learn: 37.8428740	total: 70.6ms	remaining: 73.5ms
98:	learn: 37.7369890	total: 71.4ms	remaining: 72.8ms
99:	learn: 37.6935626	total: 72.1ms	remaining: 72.1ms
100:	learn: 37.6515549	total: 73ms	remaining: 71.6ms
101:	learn: 37.5489244	total: 74ms	remaining: 71.1ms
102:	learn: 37.5220554	total: 74.8ms	remaining: 70.5ms
103:	learn: 37.4968417	total: 75.7ms	remaining: 69.8ms
104:	learn: 37.4316020	total: 76.4ms	remaining: 69.1ms
105:	learn: 37.3645686	total: 77.4ms	remaining: 68.6ms
106:	learn: 37.3211376	total: 78.3ms	remaining: 68.1ms
107:	learn: 37.2884654	total: 79.1ms	remaining: 67.4ms
108:	learn: 37.1661489	total: 79.9ms	remaining: 66.7ms
109:	learn: 37.0453748	total: 80.7ms	remaining: 66ms
110:	learn: 37.0146359	total: 81.4ms	remaining: 65.3ms
111:	learn: 36.9189176	total: 82.2ms	remaining: 64.6ms
112:	learn: 36.8720600	total: 82.9ms	remaining: 63.8ms
113:	learn: 36.7813052	total: 83.6ms	remaining: 63.1ms
114:	learn: 36.7020512	total: 84.5ms	remaining: 62.4ms
115:	learn: 36.5852608	total: 85.2ms	remaining: 61.7ms
116:	learn: 36.4824925	total: 85.9ms	remaining: 60.9ms
117:	learn: 36.4456809	total: 86.6ms	remaining: 60.1ms
118:	learn: 36.4153133	total: 87.3ms	remaining: 59.4ms
119:	learn: 36.3602386	total: 87.9ms	remaining: 58.6ms
120:	learn: 36.2262929	total: 88.7ms	remaining: 57.9ms
121:	learn: 36.2023511	total: 89.4ms	remaining: 57.2ms
122:	learn: 36.1135168	total: 90.1ms	remaining: 56.4ms
123:	learn: 36.0786352	total: 90.7ms	remaining: 55.6ms
124:	learn: 35.9745615	total: 91.4ms	remaining: 54.9ms
125:	learn: 35.9250487	total: 92.1ms	remaining: 54.1ms
126:	learn: 35.8389245	total: 92.7ms	remaining: 53.3ms
127:	learn: 35.7629340	total: 93.4ms	remaining: 52.5ms
128:	learn: 35.7461874	total: 94.1ms	remaining: 51.8ms
129:	learn: 35.6385932	total: 94.7ms	remaining: 51ms
130:	learn: 35.5241757	total: 95.4ms	remaining: 50.2ms
131:	learn: 35.4924242	total: 96ms	remaining: 49.5ms
132:	learn: 35.3974479	total: 96.6ms	remaining: 48.7ms
133:	learn: 35.3789074	total: 97.3ms	remaining: 47.9ms
134:	learn: 35.3540756	total: 98ms	remaining: 47.2ms
135:	learn: 35.3212153	total: 98.8ms	remaining: 46.5ms
136:	learn: 35.2580824	total: 99.5ms	remaining: 45.7ms
137:	learn: 35.1585184	total: 100ms	remaining: 45ms
138:	learn: 35.1220460	total: 101ms	remaining: 44.2ms
139:	learn: 35.0799944	total: 101ms	remaining: 43.5ms
140:	learn: 35.0234646	total: 102ms	remaining: 42.8ms
141:	learn: 34.9788467	total: 103ms	remaining: 42ms
142:	learn: 34.9626116	total: 104ms	remaining: 41.3ms
143:	learn: 34.8692408	total: 104ms	remaining: 40.6ms
144:	learn: 34.8294053	total: 105ms	remaining: 39.9ms
145:	learn: 34.8022190	total: 106ms	remaining: 39.1ms
146:	learn: 34.7178975	total: 107ms	remaining: 38.4ms
147:	learn: 34.6300332	total: 107ms	remaining: 37.7ms
148:	learn: 34.5404391	total: 108ms	remaining: 36.9ms
149:	learn: 34.4647050	total: 109ms	remaining: 36.2ms
150:	learn: 34.4386903	total: 109ms	remaining: 35.5ms
151:	learn: 34.4130123	total: 110ms	remaining: 34.8ms
152:	learn: 34.3089103	total: 111ms	remaining: 34ms
153:	learn: 34.2459062	total: 111ms	remaining: 33.3ms
154:	learn: 34.2273667	total: 112ms	remaining: 32.6ms
155:	learn: 34.1797205	total: 113ms	remaining: 31.8ms
156:	learn: 34.1440221	total: 113ms	remaining: 31.1ms
157:	learn: 34.1293516	total: 114ms	remaining: 30.3ms
158:	learn: 34.1003086	total: 115ms	remaining: 29.6ms
159:	learn: 34.0352947	total: 116ms	remaining: 28.9ms
160:	learn: 34.0043080	total: 116ms	remaining: 28.1ms
161:	learn: 33.9266654	total: 117ms	remaining: 27.4ms
162:	learn: 33.9008028	total: 118ms	remaining: 26.7ms
163:	learn: 33.8758152	total: 118ms	remaining: 26ms
164:	learn: 33.7606732	total: 119ms	remaining: 25.3ms
165:	learn: 33.6824305	total: 120ms	remaining: 24.6ms
166:	learn: 33.6557321	total: 121ms	remaining: 23.8ms
167:	learn: 33.6093500	total: 121ms	remaining: 23.1ms
168:	learn: 33.5542175	total: 122ms	remaining: 22.4ms
169:	learn: 33.4948141	total: 123ms	remaining: 21.7ms
170:	learn: 33.4192970	total: 124ms	remaining: 21ms
171:	learn: 33.3815757	total: 124ms	remaining: 20.2ms
172:	learn: 33.3638461	total: 125ms	remaining: 19.5ms
173:	learn: 33.3313165	total: 126ms	remaining: 18.8ms
174:	learn: 33.3165493	total: 126ms	remaining: 18.1ms
175:	learn: 33.2812005	total: 127ms	remaining: 17.3ms
176:	learn: 33.2684566	total: 128ms	remaining: 16.6ms
177:	learn: 33.2366404	total: 128ms	remaining: 15.9ms
178:	learn: 33.1933347	total: 129ms	remaining: 15.1ms
179:	learn: 33.1832100	total: 130ms	remaining: 14.4ms
180:	learn: 33.1664598	total: 130ms	remaining: 13.7ms
181:	learn: 33.1418777	total: 131ms	remaining: 13ms
182:	learn: 33.0712690	total: 132ms	remaining: 12.2ms
183:	learn: 33.0514845	total: 132ms	remaining: 11.5ms
184:	learn: 33.0077128	total: 133ms	remaining: 10.8ms
185:	learn: 32.9419588	total: 134ms	remaining: 10.1ms
186:	learn: 32.8759779	total: 135ms	remaining: 9.36ms
187:	learn: 32.8640303	total: 135ms	remaining: 8.64ms
188:	learn: 32.8212186	total: 136ms	remaining: 7.92ms
189:	learn: 32.7832254	total: 137ms	remaining: 7.2ms
190:	learn: 32.7115177	total: 138ms	remaining: 6.48ms
191:	learn: 32.6633250	total: 138ms	remaining: 5.76ms
192:	learn: 32.6212693	total: 139ms	remaining: 5.04ms
193:	learn: 32.5933653	total: 140ms	remaining: 4.32ms
194:	learn: 32.5590386	total: 140ms	remaining: 3.6ms
195:	learn: 32.5143185	total: 141ms	remaining: 2.88ms
196:	learn: 32.4671515	total: 142ms	remaining: 2.16ms
197:	learn: 32.4153702	total: 142ms	remaining: 1.44ms
198:	learn: 32.4069281	total: 143ms	remaining: 718us
199:	learn: 32.3884692	total: 144ms	remaining: 0us
0:	learn: 47.5413405	total: 917us	remaining: 183ms
1:	learn: 47.4042730	total: 1.53ms	remaining: 152ms
2:	learn: 47.3013932	total: 2.21ms	remaining: 145ms
3:	learn: 47.1301591	total: 2.92ms	remaining: 143ms
4:	learn: 46.8960397	total: 3.62ms	remaining: 141ms
5:	learn: 46.8023001	total: 4.29ms	remaining: 139ms
6:	learn: 46.7298169	total: 5.03ms	remaining: 139ms
7:	learn: 46.5997268	total: 5.69ms	remaining: 137ms
8:	learn: 46.4671144	total: 6.39ms	remaining: 136ms
9:	learn: 46.3816178	total: 7.1ms	remaining: 135ms
10:	learn: 46.3060138	total: 7.79ms	remaining: 134ms
11:	learn: 46.2340934	total: 8.5ms	remaining: 133ms
12:	learn: 46.1497717	total: 9.16ms	remaining: 132ms
13:	learn: 46.0401742	total: 9.86ms	remaining: 131ms
14:	learn: 45.9678554	total: 10.5ms	remaining: 130ms
15:	learn: 45.8224538	total: 11.2ms	remaining: 128ms
16:	learn: 45.6410626	total: 11.9ms	remaining: 128ms
17:	learn: 45.4737697	total: 12.5ms	remaining: 127ms
18:	learn: 45.2610399	total: 13.3ms	remaining: 126ms
19:	learn: 45.1181641	total: 13.9ms	remaining: 125ms
20:	learn: 44.9935373	total: 14.6ms	remaining: 124ms
21:	learn: 44.9177790	total: 15.3ms	remaining: 124ms
22:	learn: 44.8282635	total: 16.1ms	remaining: 124ms
23:	learn: 44.7631728	total: 16.9ms	remaining: 124ms
24:	learn: 44.6211946	total: 17.5ms	remaining: 123ms
25:	learn: 44.5169294	total: 18.2ms	remaining: 122ms
26:	learn: 44.4275391	total: 18.9ms	remaining: 121ms
27:	learn: 44.3534003	total: 19.5ms	remaining: 120ms
28:	learn: 44.2893131	total: 20.2ms	remaining: 119ms
29:	learn: 44.1473210	total: 20.9ms	remaining: 119ms
30:	learn: 44.0449795	total: 21.6ms	remaining: 118ms
31:	learn: 43.8914683	total: 22.3ms	remaining: 117ms
32:	learn: 43.8120789	total: 22.9ms	remaining: 116ms
33:	learn: 43.7564647	total: 23.6ms	remaining: 115ms
34:	learn: 43.6701526	total: 24.2ms	remaining: 114ms
35:	learn: 43.5973974	total: 24.9ms	remaining: 114ms
36:	learn: 43.4812700	total: 25.6ms	remaining: 113ms
37:	learn: 43.2995913	total: 26.4ms	remaining: 112ms
38:	learn: 43.2241107	total: 27.1ms	remaining: 112ms
39:	learn: 43.1305230	total: 27.7ms	remaining: 111ms
40:	learn: 43.0618164	total: 28.4ms	remaining: 110ms
41:	learn: 42.9941319	total: 29.1ms	remaining: 110ms
42:	learn: 42.9340920	total: 29.8ms	remaining: 109ms
43:	learn: 42.8381509	total: 30.9ms	remaining: 109ms
44:	learn: 42.7891560	total: 31.6ms	remaining: 109ms
45:	learn: 42.6300724	total: 32.5ms	remaining: 109ms
46:	learn: 42.4714446	total: 33.2ms	remaining: 108ms
47:	learn: 42.3938509	total: 33.9ms	remaining: 107ms
48:	learn: 42.3425919	total: 34.6ms	remaining: 107ms
49:	learn: 42.1982180	total: 35.3ms	remaining: 106ms
50:	learn: 42.0909996	total: 36ms	remaining: 105ms
51:	learn: 42.0275207	total: 36.6ms	remaining: 104ms
52:	learn: 41.9576936	total: 37.3ms	remaining: 103ms
53:	learn: 41.8980736	total: 38ms	remaining: 103ms
54:	learn: 41.8441375	total: 38.7ms	remaining: 102ms
55:	learn: 41.7957864	total: 39.3ms	remaining: 101ms
56:	learn: 41.6400935	total: 40ms	remaining: 100ms
57:	learn: 41.5779559	total: 40.6ms	remaining: 99.4ms
58:	learn: 41.4015880	total: 41.4ms	remaining: 98.8ms
59:	learn: 41.3246540	total: 42.1ms	remaining: 98.2ms
60:	learn: 41.2191783	total: 42.8ms	remaining: 97.6ms
61:	learn: 41.0767371	total: 43.5ms	remaining: 96.8ms
62:	learn: 41.0185674	total: 44.2ms	remaining: 96.1ms
63:	learn: 40.8727589	total: 45ms	remaining: 95.6ms
64:	learn: 40.8090578	total: 45.7ms	remaining: 95ms
65:	learn: 40.7478418	total: 46.5ms	remaining: 94.4ms
66:	learn: 40.6898542	total: 47.3ms	remaining: 93.9ms
67:	learn: 40.6495112	total: 48.1ms	remaining: 93.3ms
68:	learn: 40.5711230	total: 48.9ms	remaining: 92.9ms
69:	learn: 40.4340360	total: 49.7ms	remaining: 92.3ms
70:	learn: 40.3864634	total: 50.5ms	remaining: 91.7ms
71:	learn: 40.2927281	total: 51.5ms	remaining: 91.5ms
72:	learn: 40.2471461	total: 52.3ms	remaining: 90.9ms
73:	learn: 40.1173032	total: 53ms	remaining: 90.3ms
74:	learn: 39.9572645	total: 53.9ms	remaining: 89.8ms
75:	learn: 39.8289998	total: 54.7ms	remaining: 89.2ms
76:	learn: 39.7317641	total: 55.4ms	remaining: 88.5ms
77:	learn: 39.6177868	total: 56.1ms	remaining: 87.8ms
78:	learn: 39.4648683	total: 56.9ms	remaining: 87.2ms
79:	learn: 39.3366556	total: 57.7ms	remaining: 86.5ms
80:	learn: 39.2794630	total: 58.4ms	remaining: 85.8ms
81:	learn: 39.1935374	total: 59.2ms	remaining: 85.2ms
82:	learn: 39.0799065	total: 60.1ms	remaining: 84.7ms
83:	learn: 38.9736899	total: 60.8ms	remaining: 84ms
84:	learn: 38.8917692	total: 61.6ms	remaining: 83.4ms
85:	learn: 38.8692792	total: 62.3ms	remaining: 82.6ms
86:	learn: 38.8111920	total: 63.3ms	remaining: 82.2ms
87:	learn: 38.7611157	total: 64ms	remaining: 81.4ms
88:	learn: 38.7303702	total: 64.8ms	remaining: 80.9ms
89:	learn: 38.7008618	total: 65.6ms	remaining: 80.2ms
90:	learn: 38.5775963	total: 66.4ms	remaining: 79.5ms
91:	learn: 38.5386335	total: 67.2ms	remaining: 78.9ms
92:	learn: 38.4934053	total: 68ms	remaining: 78.2ms
93:	learn: 38.4504791	total: 68.8ms	remaining: 77.5ms
94:	learn: 38.3832805	total: 69.5ms	remaining: 76.9ms
95:	learn: 38.3394560	total: 70.4ms	remaining: 76.2ms
96:	learn: 38.2161225	total: 71.1ms	remaining: 75.5ms
97:	learn: 38.1158951	total: 72.1ms	remaining: 75ms
98:	learn: 38.0067354	total: 73.1ms	remaining: 74.6ms
99:	learn: 37.9602724	total: 74ms	remaining: 74ms
100:	learn: 37.9339489	total: 74.9ms	remaining: 73.4ms
101:	learn: 37.8394853	total: 76ms	remaining: 73ms
102:	learn: 37.7321497	total: 76.8ms	remaining: 72.3ms
103:	learn: 37.6596017	total: 77.8ms	remaining: 71.8ms
104:	learn: 37.6203341	total: 78.6ms	remaining: 71.2ms
105:	learn: 37.5197469	total: 79.5ms	remaining: 70.5ms
106:	learn: 37.4725979	total: 80.3ms	remaining: 69.8ms
107:	learn: 37.4435463	total: 81.5ms	remaining: 69.4ms
108:	learn: 37.3727955	total: 82.7ms	remaining: 69.1ms
109:	learn: 37.2608160	total: 83.6ms	remaining: 68.4ms
110:	learn: 37.1365304	total: 84.6ms	remaining: 67.9ms
111:	learn: 37.0095684	total: 85.6ms	remaining: 67.3ms
112:	learn: 36.9792507	total: 86.5ms	remaining: 66.6ms
113:	learn: 36.9430515	total: 87.3ms	remaining: 65.9ms
114:	learn: 36.8720961	total: 88.2ms	remaining: 65.2ms
115:	learn: 36.8299504	total: 89.1ms	remaining: 64.5ms
116:	learn: 36.8054916	total: 89.8ms	remaining: 63.7ms
117:	learn: 36.7261879	total: 90.6ms	remaining: 63ms
118:	learn: 36.6313984	total: 91.5ms	remaining: 62.3ms
119:	learn: 36.5839057	total: 92.3ms	remaining: 61.6ms
120:	learn: 36.4520465	total: 93.2ms	remaining: 60.8ms
121:	learn: 36.3698730	total: 93.9ms	remaining: 60ms
122:	learn: 36.2898575	total: 94.7ms	remaining: 59.3ms
123:	learn: 36.2709483	total: 95.4ms	remaining: 58.5ms
124:	learn: 36.1687567	total: 96.2ms	remaining: 57.7ms
125:	learn: 36.1220183	total: 97ms	remaining: 57ms
126:	learn: 36.0222391	total: 97.8ms	remaining: 56.2ms
127:	learn: 35.9388813	total: 98.7ms	remaining: 55.5ms
128:	learn: 35.9020294	total: 99.5ms	remaining: 54.8ms
129:	learn: 35.8027120	total: 100ms	remaining: 54ms
130:	learn: 35.7083967	total: 101ms	remaining: 53.2ms
131:	learn: 35.6806443	total: 102ms	remaining: 52.5ms
132:	learn: 35.5856666	total: 103ms	remaining: 51.7ms
133:	learn: 35.5639283	total: 103ms	remaining: 51ms
134:	learn: 35.5264118	total: 104ms	remaining: 50.2ms
135:	learn: 35.4950444	total: 105ms	remaining: 49.4ms
136:	learn: 35.4780706	total: 106ms	remaining: 48.6ms
137:	learn: 35.4341419	total: 107ms	remaining: 47.9ms
138:	learn: 35.3784667	total: 107ms	remaining: 47.2ms
139:	learn: 35.3281885	total: 108ms	remaining: 46.4ms
140:	learn: 35.2930665	total: 109ms	remaining: 45.6ms
141:	learn: 35.2452353	total: 110ms	remaining: 44.9ms
142:	learn: 35.2162123	total: 111ms	remaining: 44.1ms
143:	learn: 35.1977123	total: 111ms	remaining: 43.3ms
144:	learn: 35.1616996	total: 112ms	remaining: 42.6ms
145:	learn: 35.1485018	total: 113ms	remaining: 41.9ms
146:	learn: 35.0229940	total: 114ms	remaining: 41.2ms
147:	learn: 34.9165274	total: 115ms	remaining: 40.5ms
148:	learn: 34.8049137	total: 116ms	remaining: 39.7ms
149:	learn: 34.7581164	total: 117ms	remaining: 38.9ms
150:	learn: 34.6935379	total: 117ms	remaining: 38.1ms
151:	learn: 34.6705467	total: 118ms	remaining: 37.4ms
152:	learn: 34.5840510	total: 119ms	remaining: 36.6ms
153:	learn: 34.5274952	total: 120ms	remaining: 35.8ms
154:	learn: 34.5039816	total: 121ms	remaining: 35ms
155:	learn: 34.4571072	total: 121ms	remaining: 34.2ms
156:	learn: 34.4219046	total: 122ms	remaining: 33.4ms
157:	learn: 34.4062836	total: 123ms	remaining: 32.7ms
158:	learn: 34.3140485	total: 124ms	remaining: 31.9ms
159:	learn: 34.2514932	total: 124ms	remaining: 31.1ms
160:	learn: 34.1785436	total: 125ms	remaining: 30.3ms
161:	learn: 34.1562964	total: 126ms	remaining: 29.5ms
162:	learn: 34.1269203	total: 127ms	remaining: 28.7ms
163:	learn: 34.1002443	total: 127ms	remaining: 28ms
164:	learn: 34.0821366	total: 128ms	remaining: 27.2ms
165:	learn: 33.9698382	total: 129ms	remaining: 26.4ms
166:	learn: 33.9381788	total: 130ms	remaining: 25.6ms
167:	learn: 33.8779145	total: 130ms	remaining: 24.8ms
168:	learn: 33.8022549	total: 131ms	remaining: 24.1ms
169:	learn: 33.7221779	total: 132ms	remaining: 23.3ms
170:	learn: 33.6507173	total: 133ms	remaining: 22.5ms
171:	learn: 33.6084031	total: 133ms	remaining: 21.7ms
172:	learn: 33.5414163	total: 134ms	remaining: 21ms
173:	learn: 33.4950698	total: 135ms	remaining: 20.2ms
174:	learn: 33.4607894	total: 136ms	remaining: 19.4ms
175:	learn: 33.4128270	total: 137ms	remaining: 18.6ms
176:	learn: 33.3993696	total: 137ms	remaining: 17.9ms
177:	learn: 33.3476417	total: 138ms	remaining: 17.1ms
178:	learn: 33.3337522	total: 139ms	remaining: 16.3ms
179:	learn: 33.3252558	total: 140ms	remaining: 15.5ms
180:	learn: 33.3106873	total: 141ms	remaining: 14.8ms
181:	learn: 33.2981688	total: 142ms	remaining: 14ms
182:	learn: 33.2471875	total: 142ms	remaining: 13.2ms
183:	learn: 33.2287396	total: 143ms	remaining: 12.5ms
184:	learn: 33.1687544	total: 144ms	remaining: 11.7ms
185:	learn: 33.1539312	total: 145ms	remaining: 10.9ms
186:	learn: 33.0887021	total: 146ms	remaining: 10.1ms
187:	learn: 33.0787973	total: 146ms	remaining: 9.35ms
188:	learn: 33.0288259	total: 147ms	remaining: 8.57ms
189:	learn: 32.9830382	total: 148ms	remaining: 7.8ms
190:	learn: 32.9299536	total: 149ms	remaining: 7.01ms
191:	learn: 32.8731965	total: 150ms	remaining: 6.24ms
192:	learn: 32.8545456	total: 151ms	remaining: 5.46ms
193:	learn: 32.7954507	total: 151ms	remaining: 4.68ms
194:	learn: 32.7852007	total: 152ms	remaining: 3.9ms
195:	learn: 32.7485313	total: 153ms	remaining: 3.12ms
196:	learn: 32.7412632	total: 153ms	remaining: 2.34ms
197:	learn: 32.6934005	total: 154ms	remaining: 1.56ms
198:	learn: 32.6325960	total: 155ms	remaining: 777us
199:	learn: 32.5977041	total: 155ms	remaining: 0us
0:	learn: 27.2173776	total: 2.29ms	remaining: 455ms
1:	learn: 26.3026144	total: 4.21ms	remaining: 417ms
2:	learn: 25.6419394	total: 6.06ms	remaining: 398ms
3:	learn: 24.9436234	total: 7.95ms	remaining: 390ms
4:	learn: 24.5168790	total: 9.84ms	remaining: 384ms
5:	learn: 23.9946024	total: 11.9ms	remaining: 385ms
6:	learn: 23.4596303	total: 14ms	remaining: 385ms
7:	learn: 22.9324516	total: 15.8ms	remaining: 380ms
8:	learn: 22.5177719	total: 17.7ms	remaining: 376ms
9:	learn: 22.0686207	total: 19.8ms	remaining: 376ms
10:	learn: 21.5578759	total: 21.7ms	remaining: 372ms
11:	learn: 21.2470071	total: 23.5ms	remaining: 368ms
12:	learn: 20.9591049	total: 25.4ms	remaining: 366ms
13:	learn: 20.5526441	total: 27.1ms	remaining: 360ms
14:	learn: 20.3089581	total: 29ms	remaining: 358ms
15:	learn: 20.0882303	total: 30.8ms	remaining: 355ms
16:	learn: 19.8470023	total: 32.6ms	remaining: 351ms
17:	learn: 19.6235706	total: 34.9ms	remaining: 353ms
18:	learn: 19.4469370	total: 36.7ms	remaining: 349ms
19:	learn: 19.3036640	total: 38.5ms	remaining: 346ms
20:	learn: 19.0131879	total: 40.3ms	remaining: 344ms
21:	learn: 18.7266866	total: 42.1ms	remaining: 341ms
22:	learn: 18.4779202	total: 43.9ms	remaining: 338ms
23:	learn: 18.1656742	total: 45.8ms	remaining: 336ms
24:	learn: 18.0175578	total: 47.8ms	remaining: 335ms
25:	learn: 17.8799616	total: 49.9ms	remaining: 334ms
26:	learn: 17.7380555	total: 51.9ms	remaining: 333ms
27:	learn: 17.5276079	total: 53.9ms	remaining: 331ms
28:	learn: 17.4402374	total: 55.9ms	remaining: 329ms
29:	learn: 17.2686955	total: 57.8ms	remaining: 327ms
30:	learn: 17.0970436	total: 59.7ms	remaining: 325ms
31:	learn: 17.0133798	total: 61.6ms	remaining: 323ms
32:	learn: 16.8833557	total: 63.7ms	remaining: 323ms
33:	learn: 16.7861892	total: 65.7ms	remaining: 321ms
34:	learn: 16.6660637	total: 67.6ms	remaining: 319ms
35:	learn: 16.5929100	total: 69.4ms	remaining: 316ms
36:	learn: 16.4874455	total: 71.4ms	remaining: 315ms
37:	learn: 16.4210125	total: 75.5ms	remaining: 322ms
38:	learn: 16.2218597	total: 79.1ms	remaining: 326ms
39:	learn: 16.1233730	total: 82.8ms	remaining: 331ms
40:	learn: 16.0197291	total: 86.3ms	remaining: 335ms
41:	learn: 15.8868797	total: 89.6ms	remaining: 337ms
42:	learn: 15.7304403	total: 93.3ms	remaining: 340ms
43:	learn: 15.6345298	total: 95.8ms	remaining: 340ms
44:	learn: 15.5828981	total: 98.1ms	remaining: 338ms
45:	learn: 15.4967174	total: 101ms	remaining: 337ms
46:	learn: 15.3874751	total: 103ms	remaining: 335ms
47:	learn: 15.3518584	total: 105ms	remaining: 331ms
48:	learn: 15.2041148	total: 106ms	remaining: 328ms
49:	learn: 15.0736744	total: 108ms	remaining: 325ms
50:	learn: 14.9557868	total: 110ms	remaining: 321ms
51:	learn: 14.8619990	total: 112ms	remaining: 318ms
52:	learn: 14.7194668	total: 114ms	remaining: 315ms
53:	learn: 14.6239828	total: 116ms	remaining: 312ms
54:	learn: 14.5718496	total: 117ms	remaining: 309ms
55:	learn: 14.4559636	total: 119ms	remaining: 306ms
56:	learn: 14.2483934	total: 121ms	remaining: 304ms
57:	learn: 14.1989131	total: 123ms	remaining: 301ms
58:	learn: 14.1019712	total: 125ms	remaining: 298ms
59:	learn: 13.9856792	total: 126ms	remaining: 294ms
60:	learn: 13.8856124	total: 128ms	remaining: 291ms
61:	learn: 13.8123880	total: 130ms	remaining: 289ms
62:	learn: 13.7674650	total: 131ms	remaining: 286ms
63:	learn: 13.7537652	total: 133ms	remaining: 283ms
64:	learn: 13.6399918	total: 135ms	remaining: 281ms
65:	learn: 13.5625274	total: 137ms	remaining: 278ms
66:	learn: 13.5153222	total: 139ms	remaining: 275ms
67:	learn: 13.4715742	total: 140ms	remaining: 273ms
68:	learn: 13.4060287	total: 142ms	remaining: 270ms
69:	learn: 13.3558172	total: 144ms	remaining: 267ms
70:	learn: 13.2850108	total: 146ms	remaining: 265ms
71:	learn: 13.2536076	total: 148ms	remaining: 262ms
72:	learn: 13.1825253	total: 150ms	remaining: 260ms
73:	learn: 13.1531063	total: 151ms	remaining: 258ms
74:	learn: 13.0539601	total: 153ms	remaining: 255ms
75:	learn: 12.9774255	total: 155ms	remaining: 252ms
76:	learn: 12.8785431	total: 156ms	remaining: 250ms
77:	learn: 12.7616290	total: 158ms	remaining: 248ms
78:	learn: 12.6117095	total: 160ms	remaining: 246ms
79:	learn: 12.5396666	total: 162ms	remaining: 243ms
80:	learn: 12.4185493	total: 165ms	remaining: 242ms
81:	learn: 12.3108800	total: 167ms	remaining: 240ms
82:	learn: 12.2695453	total: 169ms	remaining: 238ms
83:	learn: 12.2402154	total: 171ms	remaining: 236ms
84:	learn: 12.2003300	total: 173ms	remaining: 233ms
85:	learn: 12.1746565	total: 174ms	remaining: 231ms
86:	learn: 12.1199336	total: 176ms	remaining: 229ms
87:	learn: 12.0106092	total: 178ms	remaining: 227ms
88:	learn: 11.9272735	total: 180ms	remaining: 225ms
89:	learn: 11.8780962	total: 182ms	remaining: 222ms
90:	learn: 11.8336603	total: 184ms	remaining: 220ms
91:	learn: 11.7924622	total: 186ms	remaining: 218ms
92:	learn: 11.7049222	total: 188ms	remaining: 216ms
93:	learn: 11.6364343	total: 189ms	remaining: 214ms
94:	learn: 11.5739279	total: 191ms	remaining: 211ms
95:	learn: 11.5237108	total: 193ms	remaining: 209ms
96:	learn: 11.4676554	total: 195ms	remaining: 207ms
97:	learn: 11.4110835	total: 197ms	remaining: 205ms
98:	learn: 11.3700747	total: 199ms	remaining: 203ms
99:	learn: 11.3295569	total: 201ms	remaining: 201ms
100:	learn: 11.2727105	total: 203ms	remaining: 199ms
101:	learn: 11.2527379	total: 204ms	remaining: 196ms
102:	learn: 11.1776433	total: 206ms	remaining: 194ms
103:	learn: 11.1365705	total: 208ms	remaining: 192ms
104:	learn: 11.0786680	total: 210ms	remaining: 190ms
105:	learn: 11.0202592	total: 211ms	remaining: 188ms
106:	learn: 10.9692299	total: 213ms	remaining: 185ms
107:	learn: 10.9336434	total: 215ms	remaining: 183ms
108:	learn: 10.8840052	total: 217ms	remaining: 181ms
109:	learn: 10.8732934	total: 219ms	remaining: 179ms
110:	learn: 10.8393882	total: 221ms	remaining: 177ms
111:	learn: 10.8217002	total: 222ms	remaining: 175ms
112:	learn: 10.7707620	total: 224ms	remaining: 173ms
113:	learn: 10.7535453	total: 226ms	remaining: 170ms
114:	learn: 10.6877319	total: 228ms	remaining: 169ms
115:	learn: 10.6405208	total: 230ms	remaining: 167ms
116:	learn: 10.5841398	total: 232ms	remaining: 164ms
117:	learn: 10.5333532	total: 233ms	remaining: 162ms
118:	learn: 10.5196647	total: 235ms	remaining: 160ms
119:	learn: 10.4826762	total: 237ms	remaining: 158ms
120:	learn: 10.4214523	total: 239ms	remaining: 156ms
121:	learn: 10.3722031	total: 241ms	remaining: 154ms
122:	learn: 10.3589541	total: 242ms	remaining: 152ms
123:	learn: 10.3162217	total: 244ms	remaining: 150ms
124:	learn: 10.2708944	total: 246ms	remaining: 148ms
125:	learn: 10.2408701	total: 248ms	remaining: 146ms
126:	learn: 10.1933561	total: 250ms	remaining: 144ms
127:	learn: 10.1642702	total: 252ms	remaining: 142ms
128:	learn: 10.1326110	total: 254ms	remaining: 140ms
129:	learn: 10.0857980	total: 256ms	remaining: 138ms
130:	learn: 10.0038129	total: 258ms	remaining: 136ms
131:	learn: 9.9923350	total: 260ms	remaining: 134ms
132:	learn: 9.9402220	total: 262ms	remaining: 132ms
133:	learn: 9.9288553	total: 264ms	remaining: 130ms
134:	learn: 9.8583192	total: 266ms	remaining: 128ms
135:	learn: 9.7921629	total: 272ms	remaining: 128ms
136:	learn: 9.7340532	total: 276ms	remaining: 127ms
137:	learn: 9.7270091	total: 283ms	remaining: 127ms
138:	learn: 9.6631721	total: 288ms	remaining: 127ms
139:	learn: 9.6552606	total: 291ms	remaining: 125ms
140:	learn: 9.6477368	total: 297ms	remaining: 124ms
141:	learn: 9.6027788	total: 300ms	remaining: 122ms
142:	learn: 9.5783983	total: 303ms	remaining: 121ms
143:	learn: 9.5301709	total: 306ms	remaining: 119ms
144:	learn: 9.5231773	total: 308ms	remaining: 117ms
145:	learn: 9.5164244	total: 311ms	remaining: 115ms
146:	learn: 9.4769090	total: 313ms	remaining: 113ms
147:	learn: 9.4584102	total: 315ms	remaining: 111ms
148:	learn: 9.4520298	total: 317ms	remaining: 109ms
149:	learn: 9.4200934	total: 319ms	remaining: 106ms
150:	learn: 9.3833699	total: 322ms	remaining: 104ms
151:	learn: 9.3640451	total: 324ms	remaining: 102ms
152:	learn: 9.3618447	total: 326ms	remaining: 100ms
153:	learn: 9.3181203	total: 328ms	remaining: 98ms
154:	learn: 9.2952575	total: 330ms	remaining: 95.8ms
155:	learn: 9.2766655	total: 332ms	remaining: 93.6ms
156:	learn: 9.2706137	total: 334ms	remaining: 91.4ms
157:	learn: 9.2232143	total: 336ms	remaining: 89.2ms
158:	learn: 9.2117249	total: 338ms	remaining: 87ms
159:	learn: 9.1697159	total: 339ms	remaining: 84.8ms
160:	learn: 9.1683914	total: 341ms	remaining: 82.7ms
161:	learn: 9.1456430	total: 343ms	remaining: 80.5ms
162:	learn: 9.1432459	total: 345ms	remaining: 78.4ms
163:	learn: 9.0937001	total: 348ms	remaining: 76.4ms
164:	learn: 9.0482714	total: 350ms	remaining: 74.3ms
165:	learn: 9.0412693	total: 352ms	remaining: 72.2ms
166:	learn: 8.9977024	total: 355ms	remaining: 70.2ms
167:	learn: 8.9716561	total: 357ms	remaining: 68ms
168:	learn: 8.9494840	total: 359ms	remaining: 65.8ms
169:	learn: 8.9435898	total: 360ms	remaining: 63.6ms
170:	learn: 8.9320416	total: 362ms	remaining: 61.4ms
171:	learn: 8.9265105	total: 364ms	remaining: 59.3ms
172:	learn: 8.9081872	total: 366ms	remaining: 57.1ms
173:	learn: 8.8986096	total: 368ms	remaining: 54.9ms
174:	learn: 8.8839482	total: 369ms	remaining: 52.8ms
175:	learn: 8.8482093	total: 371ms	remaining: 50.6ms
176:	learn: 8.8338539	total: 373ms	remaining: 48.5ms
177:	learn: 8.8210944	total: 375ms	remaining: 46.3ms
178:	learn: 8.8165962	total: 376ms	remaining: 44.2ms
179:	learn: 8.7922750	total: 378ms	remaining: 42ms
180:	learn: 8.7527760	total: 380ms	remaining: 39.9ms
181:	learn: 8.7338997	total: 382ms	remaining: 37.8ms
182:	learn: 8.6997023	total: 384ms	remaining: 35.7ms
183:	learn: 8.6860237	total: 386ms	remaining: 33.5ms
184:	learn: 8.6749033	total: 388ms	remaining: 31.4ms
185:	learn: 8.6293250	total: 389ms	remaining: 29.3ms
186:	learn: 8.6111671	total: 391ms	remaining: 27.2ms
187:	learn: 8.5862239	total: 393ms	remaining: 25.1ms
188:	learn: 8.5562469	total: 395ms	remaining: 23ms
189:	learn: 8.5230409	total: 397ms	remaining: 20.9ms
190:	learn: 8.4919272	total: 398ms	remaining: 18.8ms
191:	learn: 8.4735402	total: 400ms	remaining: 16.7ms
192:	learn: 8.4348778	total: 402ms	remaining: 14.6ms
193:	learn: 8.3946761	total: 404ms	remaining: 12.5ms
194:	learn: 8.3734196	total: 406ms	remaining: 10.4ms
195:	learn: 8.3699636	total: 408ms	remaining: 8.33ms
196:	learn: 8.3620347	total: 410ms	remaining: 6.24ms
197:	learn: 8.3211828	total: 412ms	remaining: 4.16ms
198:	learn: 8.2855364	total: 413ms	remaining: 2.08ms
199:	learn: 8.2693598	total: 415ms	remaining: 0us
0:	learn: 41.9012867	total: 2ms	remaining: 397ms
1:	learn: 40.3602862	total: 3.81ms	remaining: 377ms
2:	learn: 39.0502047	total: 5.7ms	remaining: 375ms
3:	learn: 37.6041267	total: 7.64ms	remaining: 374ms
4:	learn: 36.6225659	total: 9.5ms	remaining: 371ms
5:	learn: 35.4308990	total: 11.5ms	remaining: 373ms
6:	learn: 34.3662750	total: 13.4ms	remaining: 369ms
7:	learn: 33.0064636	total: 15.3ms	remaining: 367ms
8:	learn: 31.7582660	total: 17.3ms	remaining: 367ms
9:	learn: 30.9194740	total: 19.2ms	remaining: 364ms
10:	learn: 29.8158668	total: 20.9ms	remaining: 360ms
11:	learn: 29.1934067	total: 22.9ms	remaining: 359ms
12:	learn: 28.5173856	total: 24.7ms	remaining: 356ms
13:	learn: 27.5728711	total: 26.8ms	remaining: 357ms
14:	learn: 26.9369780	total: 31ms	remaining: 382ms
15:	learn: 26.4125583	total: 34.2ms	remaining: 393ms
16:	learn: 25.7202314	total: 37.5ms	remaining: 403ms
17:	learn: 24.9850822	total: 40.2ms	remaining: 407ms
18:	learn: 24.4066640	total: 43ms	remaining: 410ms
19:	learn: 24.0360669	total: 46.2ms	remaining: 415ms
20:	learn: 23.3845981	total: 48.8ms	remaining: 416ms
21:	learn: 22.8843657	total: 50.8ms	remaining: 411ms
22:	learn: 22.3929633	total: 52.6ms	remaining: 405ms
23:	learn: 21.8546941	total: 55.4ms	remaining: 406ms
24:	learn: 21.5801437	total: 57.5ms	remaining: 403ms
25:	learn: 21.1440814	total: 59.3ms	remaining: 397ms
26:	learn: 20.9103570	total: 61.3ms	remaining: 393ms
27:	learn: 20.6242817	total: 63.4ms	remaining: 389ms
28:	learn: 20.4235998	total: 65.3ms	remaining: 385ms
29:	learn: 20.1368127	total: 67.1ms	remaining: 380ms
30:	learn: 19.8012500	total: 68.9ms	remaining: 376ms
31:	learn: 19.5973729	total: 70.6ms	remaining: 371ms
32:	learn: 19.4254728	total: 72.4ms	remaining: 366ms
33:	learn: 19.3592959	total: 74.1ms	remaining: 362ms
34:	learn: 19.1693009	total: 75.9ms	remaining: 358ms
35:	learn: 18.9768459	total: 77.7ms	remaining: 354ms
36:	learn: 18.8023888	total: 79.9ms	remaining: 352ms
37:	learn: 18.6944581	total: 81.7ms	remaining: 348ms
38:	learn: 18.6142316	total: 83.6ms	remaining: 345ms
39:	learn: 18.4307277	total: 85.3ms	remaining: 341ms
40:	learn: 18.3184423	total: 87.1ms	remaining: 338ms
41:	learn: 18.1987806	total: 89ms	remaining: 335ms
42:	learn: 18.1374565	total: 90.8ms	remaining: 332ms
43:	learn: 17.9890786	total: 92.7ms	remaining: 329ms
44:	learn: 17.8242470	total: 94.4ms	remaining: 325ms
45:	learn: 17.7256988	total: 96.3ms	remaining: 322ms
46:	learn: 17.6013418	total: 98ms	remaining: 319ms
47:	learn: 17.3516423	total: 99.8ms	remaining: 316ms
48:	learn: 17.1549027	total: 102ms	remaining: 313ms
49:	learn: 17.0522881	total: 103ms	remaining: 310ms
50:	learn: 16.9721506	total: 105ms	remaining: 307ms
51:	learn: 16.8171787	total: 107ms	remaining: 304ms
52:	learn: 16.7862551	total: 109ms	remaining: 301ms
53:	learn: 16.7346380	total: 110ms	remaining: 298ms
54:	learn: 16.6820832	total: 112ms	remaining: 295ms
55:	learn: 16.5756273	total: 114ms	remaining: 293ms
56:	learn: 16.4081000	total: 116ms	remaining: 291ms
57:	learn: 16.2692136	total: 118ms	remaining: 288ms
58:	learn: 16.2082793	total: 119ms	remaining: 285ms
59:	learn: 16.0482879	total: 121ms	remaining: 283ms
60:	learn: 15.9323395	total: 123ms	remaining: 280ms
61:	learn: 15.8479826	total: 125ms	remaining: 277ms
62:	learn: 15.8047748	total: 126ms	remaining: 275ms
63:	learn: 15.7454767	total: 128ms	remaining: 273ms
64:	learn: 15.6530131	total: 130ms	remaining: 270ms
65:	learn: 15.5406921	total: 132ms	remaining: 268ms
66:	learn: 15.5114049	total: 134ms	remaining: 265ms
67:	learn: 15.4318723	total: 135ms	remaining: 263ms
68:	learn: 15.3332108	total: 137ms	remaining: 260ms
69:	learn: 15.1573507	total: 139ms	remaining: 258ms
70:	learn: 15.0494657	total: 141ms	remaining: 256ms
71:	learn: 14.9785035	total: 142ms	remaining: 253ms
72:	learn: 14.8912308	total: 144ms	remaining: 251ms
73:	learn: 14.7415189	total: 146ms	remaining: 249ms
74:	learn: 14.6932372	total: 148ms	remaining: 247ms
75:	learn: 14.6822869	total: 150ms	remaining: 244ms
76:	learn: 14.6148551	total: 151ms	remaining: 242ms
77:	learn: 14.5020765	total: 153ms	remaining: 240ms
78:	learn: 14.4188246	total: 155ms	remaining: 237ms
79:	learn: 14.3590099	total: 157ms	remaining: 235ms
80:	learn: 14.3459790	total: 158ms	remaining: 233ms
81:	learn: 14.2361343	total: 160ms	remaining: 230ms
82:	learn: 14.0748309	total: 162ms	remaining: 228ms
83:	learn: 14.0243454	total: 164ms	remaining: 226ms
84:	learn: 13.9491161	total: 166ms	remaining: 224ms
85:	learn: 13.9111559	total: 168ms	remaining: 222ms
86:	learn: 13.8733819	total: 170ms	remaining: 220ms
87:	learn: 13.7719419	total: 171ms	remaining: 218ms
88:	learn: 13.6904842	total: 173ms	remaining: 216ms
89:	learn: 13.5947292	total: 175ms	remaining: 214ms
90:	learn: 13.5220179	total: 177ms	remaining: 212ms
91:	learn: 13.4609052	total: 178ms	remaining: 209ms
92:	learn: 13.3610228	total: 180ms	remaining: 207ms
93:	learn: 13.2768858	total: 182ms	remaining: 205ms
94:	learn: 13.1968680	total: 184ms	remaining: 203ms
95:	learn: 13.1630226	total: 186ms	remaining: 201ms
96:	learn: 13.0086795	total: 187ms	remaining: 199ms
97:	learn: 12.9930441	total: 189ms	remaining: 197ms
98:	learn: 12.8542329	total: 191ms	remaining: 195ms
99:	learn: 12.8000828	total: 193ms	remaining: 193ms
100:	learn: 12.7366148	total: 194ms	remaining: 190ms
101:	learn: 12.6097017	total: 196ms	remaining: 188ms
102:	learn: 12.5787510	total: 198ms	remaining: 186ms
103:	learn: 12.5479357	total: 200ms	remaining: 185ms
104:	learn: 12.4511363	total: 202ms	remaining: 183ms
105:	learn: 12.4036812	total: 204ms	remaining: 181ms
106:	learn: 12.3598863	total: 206ms	remaining: 179ms
107:	learn: 12.3459795	total: 207ms	remaining: 177ms
108:	learn: 12.3111169	total: 209ms	remaining: 174ms
109:	learn: 12.2676933	total: 211ms	remaining: 172ms
110:	learn: 12.1758887	total: 213ms	remaining: 170ms
111:	learn: 12.1152608	total: 214ms	remaining: 168ms
112:	learn: 12.0829383	total: 217ms	remaining: 167ms
113:	learn: 12.0490563	total: 219ms	remaining: 165ms
114:	learn: 11.9403133	total: 220ms	remaining: 163ms
115:	learn: 11.9198217	total: 222ms	remaining: 161ms
116:	learn: 11.8839602	total: 224ms	remaining: 159ms
117:	learn: 11.8645354	total: 226ms	remaining: 157ms
118:	learn: 11.8162872	total: 228ms	remaining: 155ms
119:	learn: 11.6982945	total: 230ms	remaining: 153ms
120:	learn: 11.6219239	total: 231ms	remaining: 151ms
121:	learn: 11.5658777	total: 233ms	remaining: 149ms
122:	learn: 11.5048819	total: 235ms	remaining: 147ms
123:	learn: 11.4734299	total: 237ms	remaining: 145ms
124:	learn: 11.3945639	total: 239ms	remaining: 144ms
125:	learn: 11.3591944	total: 242ms	remaining: 142ms
126:	learn: 11.3468251	total: 245ms	remaining: 141ms
127:	learn: 11.3379697	total: 248ms	remaining: 140ms
128:	learn: 11.2990673	total: 252ms	remaining: 139ms
129:	learn: 11.2313174	total: 257ms	remaining: 138ms
130:	learn: 11.2247310	total: 261ms	remaining: 138ms
131:	learn: 11.1582062	total: 264ms	remaining: 136ms
132:	learn: 11.0770898	total: 266ms	remaining: 134ms
133:	learn: 11.0413409	total: 270ms	remaining: 133ms
134:	learn: 10.9801933	total: 273ms	remaining: 131ms
135:	learn: 10.9421536	total: 275ms	remaining: 130ms
136:	learn: 10.8804137	total: 278ms	remaining: 128ms
137:	learn: 10.8225538	total: 280ms	remaining: 126ms
138:	learn: 10.7932046	total: 283ms	remaining: 124ms
139:	learn: 10.7379622	total: 285ms	remaining: 122ms
140:	learn: 10.7168938	total: 287ms	remaining: 120ms
141:	learn: 10.6791476	total: 290ms	remaining: 118ms
142:	learn: 10.6668469	total: 292ms	remaining: 116ms
143:	learn: 10.6342987	total: 294ms	remaining: 114ms
144:	learn: 10.6118949	total: 296ms	remaining: 112ms
145:	learn: 10.5594643	total: 298ms	remaining: 110ms
146:	learn: 10.5449127	total: 300ms	remaining: 108ms
147:	learn: 10.5140908	total: 303ms	remaining: 106ms
148:	learn: 10.4664129	total: 305ms	remaining: 104ms
149:	learn: 10.3916880	total: 307ms	remaining: 102ms
150:	learn: 10.3514579	total: 309ms	remaining: 100ms
151:	learn: 10.3462492	total: 311ms	remaining: 98.1ms
152:	learn: 10.3060149	total: 312ms	remaining: 96ms
153:	learn: 10.2709239	total: 315ms	remaining: 94ms
154:	learn: 10.2562514	total: 317ms	remaining: 92ms
155:	learn: 10.2458975	total: 319ms	remaining: 90.1ms
156:	learn: 10.1854980	total: 322ms	remaining: 88.1ms
157:	learn: 10.1594854	total: 324ms	remaining: 86.1ms
158:	learn: 10.1429880	total: 326ms	remaining: 84ms
159:	learn: 10.0975330	total: 327ms	remaining: 81.9ms
160:	learn: 10.0905193	total: 329ms	remaining: 79.8ms
161:	learn: 10.0668513	total: 331ms	remaining: 77.6ms
162:	learn: 10.0535099	total: 333ms	remaining: 75.5ms
163:	learn: 10.0406088	total: 335ms	remaining: 73.4ms
164:	learn: 10.0145806	total: 337ms	remaining: 71.4ms
165:	learn: 9.9960130	total: 338ms	remaining: 69.3ms
166:	learn: 9.9670316	total: 340ms	remaining: 67.2ms
167:	learn: 9.9544549	total: 342ms	remaining: 65.1ms
168:	learn: 9.9452295	total: 344ms	remaining: 63ms
169:	learn: 9.9349563	total: 345ms	remaining: 60.9ms
170:	learn: 9.9067382	total: 347ms	remaining: 58.9ms
171:	learn: 9.8682978	total: 349ms	remaining: 56.8ms
172:	learn: 9.8603020	total: 351ms	remaining: 54.7ms
173:	learn: 9.8488377	total: 353ms	remaining: 52.7ms
174:	learn: 9.8373415	total: 354ms	remaining: 50.6ms
175:	learn: 9.8033137	total: 356ms	remaining: 48.6ms
176:	learn: 9.7521603	total: 358ms	remaining: 46.5ms
177:	learn: 9.7359943	total: 360ms	remaining: 44.5ms
178:	learn: 9.7294349	total: 362ms	remaining: 42.4ms
179:	learn: 9.6906526	total: 363ms	remaining: 40.4ms
180:	learn: 9.6683537	total: 365ms	remaining: 38.3ms
181:	learn: 9.6404987	total: 367ms	remaining: 36.3ms
182:	learn: 9.6136184	total: 369ms	remaining: 34.2ms
183:	learn: 9.5800205	total: 371ms	remaining: 32.2ms
184:	learn: 9.5637203	total: 372ms	remaining: 30.2ms
185:	learn: 9.5532951	total: 374ms	remaining: 28.2ms
186:	learn: 9.5294543	total: 376ms	remaining: 26.1ms
187:	learn: 9.4966421	total: 378ms	remaining: 24.1ms
188:	learn: 9.4886710	total: 380ms	remaining: 22.1ms
189:	learn: 9.4586255	total: 382ms	remaining: 20.1ms
190:	learn: 9.4484274	total: 383ms	remaining: 18.1ms
191:	learn: 9.4061866	total: 385ms	remaining: 16.1ms
192:	learn: 9.3970270	total: 387ms	remaining: 14ms
193:	learn: 9.3793657	total: 389ms	remaining: 12ms
194:	learn: 9.3367009	total: 391ms	remaining: 10ms
195:	learn: 9.2979773	total: 392ms	remaining: 8.01ms
196:	learn: 9.2894253	total: 394ms	remaining: 6ms
197:	learn: 9.2717994	total: 396ms	remaining: 4ms
198:	learn: 9.2273630	total: 398ms	remaining: 2ms
199:	learn: 9.2005054	total: 400ms	remaining: 0us
0:	learn: 45.5988393	total: 3.14ms	remaining: 626ms
1:	learn: 44.0667262	total: 5.86ms	remaining: 581ms
2:	learn: 42.6667803	total: 8.54ms	remaining: 561ms
3:	learn: 41.0164184	total: 10.5ms	remaining: 517ms
4:	learn: 40.1599831	total: 12.7ms	remaining: 497ms
5:	learn: 39.1998374	total: 15.5ms	remaining: 503ms
6:	learn: 38.3721549	total: 17.6ms	remaining: 484ms
7:	learn: 37.1423161	total: 19.6ms	remaining: 470ms
8:	learn: 36.2867675	total: 21.4ms	remaining: 454ms
9:	learn: 35.2534551	total: 23.2ms	remaining: 441ms
10:	learn: 34.5948956	total: 25ms	remaining: 430ms
11:	learn: 34.1302484	total: 26.7ms	remaining: 419ms
12:	learn: 33.4583165	total: 28.6ms	remaining: 411ms
13:	learn: 32.6058872	total: 30.5ms	remaining: 405ms
14:	learn: 32.1334495	total: 32.2ms	remaining: 397ms
15:	learn: 31.8281150	total: 34ms	remaining: 391ms
16:	learn: 31.4959874	total: 35.8ms	remaining: 385ms
17:	learn: 30.6942827	total: 37.7ms	remaining: 381ms
18:	learn: 30.0118197	total: 39.6ms	remaining: 377ms
19:	learn: 29.5433695	total: 41.4ms	remaining: 373ms
20:	learn: 28.8965849	total: 43.2ms	remaining: 368ms
21:	learn: 28.4887119	total: 44.9ms	remaining: 363ms
22:	learn: 27.9541469	total: 46.7ms	remaining: 359ms
23:	learn: 27.6366295	total: 48.4ms	remaining: 355ms
24:	learn: 27.3977548	total: 50.3ms	remaining: 352ms
25:	learn: 27.1962962	total: 52.1ms	remaining: 349ms
26:	learn: 26.7648141	total: 53.8ms	remaining: 345ms
27:	learn: 26.4859528	total: 55.6ms	remaining: 341ms
28:	learn: 25.9740526	total: 57.4ms	remaining: 338ms
29:	learn: 25.5414063	total: 59.1ms	remaining: 335ms
30:	learn: 25.0726215	total: 60.9ms	remaining: 332ms
31:	learn: 24.8578425	total: 62.6ms	remaining: 329ms
32:	learn: 24.4900334	total: 64.5ms	remaining: 326ms
33:	learn: 24.3960878	total: 66.3ms	remaining: 323ms
34:	learn: 24.1095267	total: 68.2ms	remaining: 321ms
35:	learn: 23.7943610	total: 70ms	remaining: 319ms
36:	learn: 23.5199863	total: 72ms	remaining: 317ms
37:	learn: 23.3769009	total: 73.8ms	remaining: 315ms
38:	learn: 23.2735600	total: 75.7ms	remaining: 312ms
39:	learn: 22.7630506	total: 77.5ms	remaining: 310ms
40:	learn: 22.5857445	total: 79.3ms	remaining: 308ms
41:	learn: 22.4581508	total: 81.3ms	remaining: 306ms
42:	learn: 22.3975550	total: 83.1ms	remaining: 303ms
43:	learn: 22.2414333	total: 85ms	remaining: 301ms
44:	learn: 22.0715314	total: 87ms	remaining: 300ms
45:	learn: 21.7688530	total: 88.8ms	remaining: 297ms
46:	learn: 21.5754715	total: 90.7ms	remaining: 295ms
47:	learn: 21.4179434	total: 92.5ms	remaining: 293ms
48:	learn: 21.3718766	total: 94.3ms	remaining: 291ms
49:	learn: 21.2365490	total: 96.2ms	remaining: 289ms
50:	learn: 21.1753451	total: 98.3ms	remaining: 287ms
51:	learn: 20.9694234	total: 100ms	remaining: 285ms
52:	learn: 20.8839146	total: 102ms	remaining: 282ms
53:	learn: 20.8043429	total: 104ms	remaining: 280ms
54:	learn: 20.7538919	total: 105ms	remaining: 278ms
55:	learn: 20.4946492	total: 107ms	remaining: 275ms
56:	learn: 20.3037709	total: 109ms	remaining: 273ms
57:	learn: 20.2645370	total: 111ms	remaining: 271ms
58:	learn: 20.0523989	total: 112ms	remaining: 269ms
59:	learn: 19.8978578	total: 114ms	remaining: 267ms
60:	learn: 19.7072190	total: 116ms	remaining: 265ms
61:	learn: 19.5921681	total: 118ms	remaining: 263ms
62:	learn: 19.5582318	total: 120ms	remaining: 261ms
63:	learn: 19.4951077	total: 122ms	remaining: 259ms
64:	learn: 19.4455316	total: 123ms	remaining: 256ms
65:	learn: 19.1202445	total: 125ms	remaining: 254ms
66:	learn: 19.0300783	total: 127ms	remaining: 252ms
67:	learn: 18.9923341	total: 129ms	remaining: 250ms
68:	learn: 18.9245198	total: 130ms	remaining: 248ms
69:	learn: 18.7686036	total: 132ms	remaining: 246ms
70:	learn: 18.6109788	total: 134ms	remaining: 243ms
71:	learn: 18.2854068	total: 136ms	remaining: 242ms
72:	learn: 18.1158272	total: 138ms	remaining: 239ms
73:	learn: 17.8627486	total: 139ms	remaining: 237ms
74:	learn: 17.6513302	total: 141ms	remaining: 236ms
75:	learn: 17.4523633	total: 143ms	remaining: 234ms
76:	learn: 17.2768319	total: 145ms	remaining: 232ms
77:	learn: 17.0590182	total: 147ms	remaining: 231ms
78:	learn: 16.9292091	total: 150ms	remaining: 229ms
79:	learn: 16.8454996	total: 151ms	remaining: 227ms
80:	learn: 16.7601878	total: 153ms	remaining: 225ms
81:	learn: 16.6697484	total: 155ms	remaining: 224ms
82:	learn: 16.6239283	total: 157ms	remaining: 222ms
83:	learn: 16.4121568	total: 159ms	remaining: 220ms
84:	learn: 16.3584090	total: 161ms	remaining: 218ms
85:	learn: 16.3264696	total: 163ms	remaining: 216ms
86:	learn: 16.2672836	total: 165ms	remaining: 215ms
87:	learn: 16.0925714	total: 167ms	remaining: 213ms
88:	learn: 16.0116069	total: 169ms	remaining: 211ms
89:	learn: 15.8268689	total: 171ms	remaining: 209ms
90:	learn: 15.7989575	total: 173ms	remaining: 207ms
91:	learn: 15.6305351	total: 175ms	remaining: 205ms
92:	learn: 15.4889271	total: 177ms	remaining: 203ms
93:	learn: 15.4501637	total: 178ms	remaining: 201ms
94:	learn: 15.3988856	total: 180ms	remaining: 199ms
95:	learn: 15.2345232	total: 182ms	remaining: 197ms
96:	learn: 15.1458430	total: 184ms	remaining: 196ms
97:	learn: 14.9858948	total: 186ms	remaining: 194ms
98:	learn: 14.9657470	total: 189ms	remaining: 193ms
99:	learn: 14.8822662	total: 193ms	remaining: 193ms
100:	learn: 14.8387760	total: 196ms	remaining: 192ms
101:	learn: 14.7644482	total: 200ms	remaining: 192ms
102:	learn: 14.6223623	total: 204ms	remaining: 192ms
103:	learn: 14.4815193	total: 208ms	remaining: 192ms
104:	learn: 14.3957837	total: 210ms	remaining: 190ms
105:	learn: 14.2272069	total: 213ms	remaining: 189ms
106:	learn: 14.0853007	total: 217ms	remaining: 188ms
107:	learn: 14.0424631	total: 219ms	remaining: 187ms
108:	learn: 13.9844368	total: 221ms	remaining: 185ms
109:	learn: 13.9686284	total: 223ms	remaining: 183ms
110:	learn: 13.9090028	total: 226ms	remaining: 181ms
111:	learn: 13.7912829	total: 228ms	remaining: 179ms
112:	learn: 13.7159189	total: 231ms	remaining: 178ms
113:	learn: 13.6507379	total: 233ms	remaining: 176ms
114:	learn: 13.6157048	total: 236ms	remaining: 174ms
115:	learn: 13.4979956	total: 238ms	remaining: 172ms
116:	learn: 13.4603073	total: 241ms	remaining: 171ms
117:	learn: 13.3924995	total: 243ms	remaining: 169ms
118:	learn: 13.3567968	total: 245ms	remaining: 167ms
119:	learn: 13.2846914	total: 248ms	remaining: 165ms
120:	learn: 13.2285300	total: 251ms	remaining: 164ms
121:	learn: 13.1263880	total: 253ms	remaining: 162ms
122:	learn: 13.0650602	total: 255ms	remaining: 160ms
123:	learn: 13.0108668	total: 257ms	remaining: 157ms
124:	learn: 12.8969660	total: 258ms	remaining: 155ms
125:	learn: 12.7767557	total: 260ms	remaining: 153ms
126:	learn: 12.6752597	total: 262ms	remaining: 151ms
127:	learn: 12.6150053	total: 264ms	remaining: 148ms
128:	learn: 12.5796954	total: 266ms	remaining: 147ms
129:	learn: 12.4860644	total: 268ms	remaining: 145ms
130:	learn: 12.3986608	total: 270ms	remaining: 142ms
131:	learn: 12.3586817	total: 272ms	remaining: 140ms
132:	learn: 12.3346361	total: 274ms	remaining: 138ms
133:	learn: 12.2497055	total: 276ms	remaining: 136ms
134:	learn: 12.2073373	total: 278ms	remaining: 134ms
135:	learn: 12.1772712	total: 281ms	remaining: 132ms
136:	learn: 12.1306014	total: 283ms	remaining: 130ms
137:	learn: 12.0856252	total: 286ms	remaining: 128ms
138:	learn: 12.0688553	total: 288ms	remaining: 126ms
139:	learn: 12.0611444	total: 290ms	remaining: 124ms
140:	learn: 12.0304337	total: 292ms	remaining: 122ms
141:	learn: 11.9886085	total: 294ms	remaining: 120ms
142:	learn: 11.9656609	total: 296ms	remaining: 118ms
143:	learn: 11.9367134	total: 298ms	remaining: 116ms
144:	learn: 11.9070746	total: 299ms	remaining: 114ms
145:	learn: 11.9017508	total: 301ms	remaining: 111ms
146:	learn: 11.8547447	total: 303ms	remaining: 109ms
147:	learn: 11.7715346	total: 305ms	remaining: 107ms
148:	learn: 11.6936801	total: 307ms	remaining: 105ms
149:	learn: 11.6465295	total: 309ms	remaining: 103ms
150:	learn: 11.6135825	total: 310ms	remaining: 101ms
151:	learn: 11.5520734	total: 312ms	remaining: 98.6ms
152:	learn: 11.5392594	total: 314ms	remaining: 96.5ms
153:	learn: 11.4732330	total: 316ms	remaining: 94.4ms
154:	learn: 11.4229895	total: 318ms	remaining: 92.3ms
155:	learn: 11.4106703	total: 320ms	remaining: 90.2ms
156:	learn: 11.3945916	total: 321ms	remaining: 88ms
157:	learn: 11.3633331	total: 323ms	remaining: 86ms
158:	learn: 11.3189425	total: 325ms	remaining: 83.8ms
159:	learn: 11.2790765	total: 327ms	remaining: 81.8ms
160:	learn: 11.1976571	total: 329ms	remaining: 79.7ms
161:	learn: 11.1602777	total: 331ms	remaining: 77.6ms
162:	learn: 11.1264815	total: 333ms	remaining: 75.5ms
163:	learn: 11.0755511	total: 334ms	remaining: 73.4ms
164:	learn: 11.0669238	total: 336ms	remaining: 71.4ms
165:	learn: 11.0223156	total: 339ms	remaining: 69.3ms
166:	learn: 11.0004765	total: 340ms	remaining: 67.3ms
167:	learn: 10.9907728	total: 342ms	remaining: 65.2ms
168:	learn: 10.9781087	total: 344ms	remaining: 63.1ms
169:	learn: 10.9729772	total: 346ms	remaining: 61ms
170:	learn: 10.9292162	total: 348ms	remaining: 59ms
171:	learn: 10.9114886	total: 350ms	remaining: 57ms
172:	learn: 10.8692957	total: 352ms	remaining: 54.9ms
173:	learn: 10.8565693	total: 354ms	remaining: 52.9ms
174:	learn: 10.8479040	total: 356ms	remaining: 50.8ms
175:	learn: 10.8134133	total: 358ms	remaining: 48.8ms
176:	learn: 10.7397658	total: 360ms	remaining: 46.7ms
177:	learn: 10.7075204	total: 362ms	remaining: 44.7ms
178:	learn: 10.7018837	total: 364ms	remaining: 42.6ms
179:	learn: 10.6633845	total: 365ms	remaining: 40.6ms
180:	learn: 10.5736444	total: 367ms	remaining: 38.6ms
181:	learn: 10.5602667	total: 369ms	remaining: 36.5ms
182:	learn: 10.5224644	total: 371ms	remaining: 34.5ms
183:	learn: 10.5064690	total: 373ms	remaining: 32.5ms
184:	learn: 10.4500232	total: 375ms	remaining: 30.4ms
185:	learn: 10.4233867	total: 377ms	remaining: 28.4ms
186:	learn: 10.3532302	total: 380ms	remaining: 26.4ms
187:	learn: 10.3507295	total: 384ms	remaining: 24.5ms
188:	learn: 10.3042761	total: 388ms	remaining: 22.6ms
189:	learn: 10.2738014	total: 391ms	remaining: 20.6ms
190:	learn: 10.2671610	total: 394ms	remaining: 18.5ms
191:	learn: 10.2553404	total: 396ms	remaining: 16.5ms
192:	learn: 10.2208633	total: 399ms	remaining: 14.5ms
193:	learn: 10.1811139	total: 401ms	remaining: 12.4ms
194:	learn: 10.1679708	total: 403ms	remaining: 10.3ms
195:	learn: 10.1353499	total: 405ms	remaining: 8.27ms
196:	learn: 10.1290738	total: 408ms	remaining: 6.21ms
197:	learn: 10.1045352	total: 410ms	remaining: 4.14ms
198:	learn: 10.0795440	total: 412ms	remaining: 2.07ms
199:	learn: 10.0764385	total: 414ms	remaining: 0us
0:	learn: 45.0927664	total: 7.11ms	remaining: 1.41s
1:	learn: 43.6578258	total: 8.96ms	remaining: 887ms
2:	learn: 42.3045666	total: 10.7ms	remaining: 701ms
3:	learn: 41.0651204	total: 12.5ms	remaining: 610ms
4:	learn: 40.0174394	total: 14.2ms	remaining: 553ms
5:	learn: 39.0784952	total: 15.9ms	remaining: 516ms
6:	learn: 38.3066561	total: 17.8ms	remaining: 490ms
7:	learn: 37.2334422	total: 19.6ms	remaining: 471ms
8:	learn: 36.4774031	total: 21.4ms	remaining: 455ms
9:	learn: 35.8304451	total: 23.2ms	remaining: 440ms
10:	learn: 34.8872241	total: 25ms	remaining: 429ms
11:	learn: 34.1690164	total: 26.8ms	remaining: 420ms
12:	learn: 33.4622902	total: 28.6ms	remaining: 412ms
13:	learn: 32.6413764	total: 30.4ms	remaining: 404ms
14:	learn: 32.1477897	total: 32.2ms	remaining: 397ms
15:	learn: 31.9043824	total: 34ms	remaining: 391ms
16:	learn: 31.5711458	total: 35.8ms	remaining: 386ms
17:	learn: 31.0067933	total: 37.8ms	remaining: 382ms
18:	learn: 30.4526003	total: 39.6ms	remaining: 377ms
19:	learn: 30.0542843	total: 41.3ms	remaining: 372ms
20:	learn: 29.3557664	total: 43.1ms	remaining: 367ms
21:	learn: 28.7786485	total: 45ms	remaining: 364ms
22:	learn: 28.1703476	total: 46.7ms	remaining: 359ms
23:	learn: 27.7516495	total: 48.5ms	remaining: 356ms
24:	learn: 27.5126186	total: 50.2ms	remaining: 352ms
25:	learn: 27.2805015	total: 52.1ms	remaining: 349ms
26:	learn: 27.0002652	total: 54ms	remaining: 346ms
27:	learn: 26.6656987	total: 55.8ms	remaining: 343ms
28:	learn: 26.5685416	total: 57.5ms	remaining: 339ms
29:	learn: 26.3372151	total: 59.3ms	remaining: 336ms
30:	learn: 25.9801017	total: 61.2ms	remaining: 333ms
31:	learn: 25.5912784	total: 62.9ms	remaining: 330ms
32:	learn: 25.2946270	total: 64.7ms	remaining: 327ms
33:	learn: 25.2518445	total: 66.4ms	remaining: 324ms
34:	learn: 25.0538656	total: 68.2ms	remaining: 321ms
35:	learn: 24.7943657	total: 70ms	remaining: 319ms
36:	learn: 24.6593068	total: 71.9ms	remaining: 317ms
37:	learn: 24.6263847	total: 73.7ms	remaining: 314ms
38:	learn: 24.5732241	total: 75.5ms	remaining: 311ms
39:	learn: 24.1786088	total: 77.3ms	remaining: 309ms
40:	learn: 23.8638004	total: 79.1ms	remaining: 307ms
41:	learn: 23.7143451	total: 81.1ms	remaining: 305ms
42:	learn: 23.5288017	total: 82.9ms	remaining: 303ms
43:	learn: 23.4086190	total: 84.6ms	remaining: 300ms
44:	learn: 23.3102392	total: 86.4ms	remaining: 298ms
45:	learn: 23.0135006	total: 88.3ms	remaining: 296ms
46:	learn: 22.8192926	total: 90.1ms	remaining: 293ms
47:	learn: 22.6317475	total: 91.8ms	remaining: 291ms
48:	learn: 22.5529817	total: 93.6ms	remaining: 288ms
49:	learn: 22.5215510	total: 95.4ms	remaining: 286ms
50:	learn: 22.4011309	total: 97.3ms	remaining: 284ms
51:	learn: 22.2307162	total: 99.2ms	remaining: 282ms
52:	learn: 22.0484393	total: 101ms	remaining: 280ms
53:	learn: 21.9258488	total: 103ms	remaining: 278ms
54:	learn: 21.6760056	total: 105ms	remaining: 276ms
55:	learn: 21.5206588	total: 107ms	remaining: 275ms
56:	learn: 21.2723212	total: 109ms	remaining: 273ms
57:	learn: 21.2220339	total: 111ms	remaining: 271ms
58:	learn: 21.1534151	total: 113ms	remaining: 269ms
59:	learn: 21.1002869	total: 115ms	remaining: 267ms
60:	learn: 20.9222182	total: 117ms	remaining: 266ms
61:	learn: 20.8670150	total: 118ms	remaining: 264ms
62:	learn: 20.6939554	total: 121ms	remaining: 262ms
63:	learn: 20.5515638	total: 125ms	remaining: 266ms
64:	learn: 20.5105133	total: 129ms	remaining: 267ms
65:	learn: 20.4742608	total: 132ms	remaining: 268ms
66:	learn: 20.4284681	total: 136ms	remaining: 270ms
67:	learn: 20.3875880	total: 140ms	remaining: 272ms
68:	learn: 20.1388359	total: 143ms	remaining: 272ms
69:	learn: 19.8927210	total: 145ms	remaining: 270ms
70:	learn: 19.7264882	total: 150ms	remaining: 272ms
71:	learn: 19.5786905	total: 152ms	remaining: 270ms
72:	learn: 19.3031248	total: 154ms	remaining: 268ms
73:	learn: 19.2580101	total: 156ms	remaining: 266ms
74:	learn: 19.0938323	total: 159ms	remaining: 265ms
75:	learn: 18.8494291	total: 161ms	remaining: 262ms
76:	learn: 18.7770042	total: 163ms	remaining: 260ms
77:	learn: 18.7502033	total: 165ms	remaining: 258ms
78:	learn: 18.5872072	total: 167ms	remaining: 256ms
79:	learn: 18.4061746	total: 169ms	remaining: 254ms
80:	learn: 18.3522879	total: 171ms	remaining: 252ms
81:	learn: 18.3159119	total: 173ms	remaining: 250ms
82:	learn: 18.2855826	total: 176ms	remaining: 248ms
83:	learn: 18.2583293	total: 178ms	remaining: 246ms
84:	learn: 18.1266917	total: 180ms	remaining: 243ms
85:	learn: 18.1086439	total: 182ms	remaining: 241ms
86:	learn: 18.0815786	total: 184ms	remaining: 239ms
87:	learn: 17.8167233	total: 186ms	remaining: 237ms
88:	learn: 17.6781428	total: 189ms	remaining: 235ms
89:	learn: 17.6414372	total: 190ms	remaining: 233ms
90:	learn: 17.6047874	total: 192ms	remaining: 230ms
91:	learn: 17.5762914	total: 194ms	remaining: 228ms
92:	learn: 17.5078839	total: 197ms	remaining: 226ms
93:	learn: 17.2771268	total: 199ms	remaining: 224ms
94:	learn: 17.2591693	total: 201ms	remaining: 222ms
95:	learn: 17.2184828	total: 204ms	remaining: 221ms
96:	learn: 17.0842386	total: 206ms	remaining: 218ms
97:	learn: 17.0374026	total: 207ms	remaining: 216ms
98:	learn: 16.8921747	total: 209ms	remaining: 213ms
99:	learn: 16.8038934	total: 211ms	remaining: 211ms
100:	learn: 16.7781346	total: 213ms	remaining: 209ms
101:	learn: 16.7303307	total: 215ms	remaining: 206ms
102:	learn: 16.6948233	total: 217ms	remaining: 204ms
103:	learn: 16.5422757	total: 218ms	remaining: 202ms
104:	learn: 16.4274160	total: 220ms	remaining: 199ms
105:	learn: 16.4127731	total: 222ms	remaining: 197ms
106:	learn: 16.3798810	total: 224ms	remaining: 194ms
107:	learn: 16.3722888	total: 225ms	remaining: 192ms
108:	learn: 16.2439381	total: 227ms	remaining: 190ms
109:	learn: 16.1937915	total: 229ms	remaining: 187ms
110:	learn: 16.1601864	total: 231ms	remaining: 185ms
111:	learn: 16.1470563	total: 232ms	remaining: 183ms
112:	learn: 16.1344122	total: 234ms	remaining: 180ms
113:	learn: 16.0484913	total: 236ms	remaining: 178ms
114:	learn: 15.9877793	total: 238ms	remaining: 176ms
115:	learn: 15.8282910	total: 239ms	remaining: 173ms
116:	learn: 15.7684592	total: 241ms	remaining: 171ms
117:	learn: 15.7561382	total: 243ms	remaining: 169ms
118:	learn: 15.7442755	total: 244ms	remaining: 166ms
119:	learn: 15.6742562	total: 246ms	remaining: 164ms
120:	learn: 15.6510050	total: 248ms	remaining: 162ms
121:	learn: 15.6033799	total: 250ms	remaining: 160ms
122:	learn: 15.5574149	total: 252ms	remaining: 158ms
123:	learn: 15.5462777	total: 253ms	remaining: 155ms
124:	learn: 15.5241127	total: 255ms	remaining: 153ms
125:	learn: 15.5137299	total: 257ms	remaining: 151ms
126:	learn: 15.4558766	total: 259ms	remaining: 149ms
127:	learn: 15.3553614	total: 260ms	remaining: 147ms
128:	learn: 15.3035059	total: 262ms	remaining: 144ms
129:	learn: 15.2979491	total: 264ms	remaining: 142ms
130:	learn: 15.2458686	total: 266ms	remaining: 140ms
131:	learn: 15.2232270	total: 268ms	remaining: 138ms
132:	learn: 15.1939552	total: 269ms	remaining: 136ms
133:	learn: 15.1154110	total: 271ms	remaining: 134ms
134:	learn: 15.0816326	total: 273ms	remaining: 131ms
135:	learn: 14.9770768	total: 275ms	remaining: 129ms
136:	learn: 14.9079187	total: 277ms	remaining: 127ms
137:	learn: 14.8090301	total: 279ms	remaining: 125ms
138:	learn: 14.6652674	total: 280ms	remaining: 123ms
139:	learn: 14.6450254	total: 282ms	remaining: 121ms
140:	learn: 14.6255761	total: 284ms	remaining: 119ms
141:	learn: 14.4922933	total: 286ms	remaining: 117ms
142:	learn: 14.4816831	total: 287ms	remaining: 115ms
143:	learn: 14.3411868	total: 289ms	remaining: 112ms
144:	learn: 14.2491127	total: 291ms	remaining: 110ms
145:	learn: 14.2433974	total: 293ms	remaining: 108ms
146:	learn: 14.2337099	total: 295ms	remaining: 106ms
147:	learn: 14.2252269	total: 298ms	remaining: 105ms
148:	learn: 14.1977647	total: 301ms	remaining: 103ms
149:	learn: 14.1309276	total: 304ms	remaining: 101ms
150:	learn: 14.1173976	total: 307ms	remaining: 99.5ms
151:	learn: 14.0140039	total: 309ms	remaining: 97.7ms
152:	learn: 14.0061002	total: 312ms	remaining: 95.9ms
153:	learn: 13.9106250	total: 315ms	remaining: 94.2ms
154:	learn: 13.8736771	total: 319ms	remaining: 92.7ms
155:	learn: 13.8505820	total: 321ms	remaining: 90.6ms
156:	learn: 13.8461949	total: 323ms	remaining: 88.6ms
157:	learn: 13.8061666	total: 326ms	remaining: 86.7ms
158:	learn: 13.7444628	total: 329ms	remaining: 84.8ms
159:	learn: 13.7032415	total: 330ms	remaining: 82.6ms
160:	learn: 13.6765790	total: 332ms	remaining: 80.5ms
161:	learn: 13.6446901	total: 334ms	remaining: 78.4ms
162:	learn: 13.6048464	total: 336ms	remaining: 76.2ms
163:	learn: 13.5715607	total: 337ms	remaining: 74.1ms
164:	learn: 13.5169905	total: 339ms	remaining: 72ms
165:	learn: 13.5015192	total: 341ms	remaining: 69.8ms
166:	learn: 13.4099236	total: 343ms	remaining: 67.7ms
167:	learn: 13.3828355	total: 344ms	remaining: 65.6ms
168:	learn: 13.3230491	total: 346ms	remaining: 63.5ms
169:	learn: 13.2637823	total: 348ms	remaining: 61.4ms
170:	learn: 13.1943260	total: 350ms	remaining: 59.4ms
171:	learn: 13.1101230	total: 352ms	remaining: 57.3ms
172:	learn: 13.0193624	total: 354ms	remaining: 55.2ms
173:	learn: 12.9843784	total: 356ms	remaining: 53.2ms
174:	learn: 12.9661567	total: 358ms	remaining: 51.1ms
175:	learn: 12.9348217	total: 359ms	remaining: 49ms
176:	learn: 12.8473604	total: 361ms	remaining: 47ms
177:	learn: 12.7700476	total: 363ms	remaining: 44.9ms
178:	learn: 12.7429745	total: 365ms	remaining: 42.8ms
179:	learn: 12.7241278	total: 367ms	remaining: 40.8ms
180:	learn: 12.7096560	total: 369ms	remaining: 38.7ms
181:	learn: 12.6844927	total: 370ms	remaining: 36.6ms
182:	learn: 12.6377639	total: 372ms	remaining: 34.6ms
183:	learn: 12.6213365	total: 374ms	remaining: 32.5ms
184:	learn: 12.5935483	total: 376ms	remaining: 30.5ms
185:	learn: 12.5758853	total: 377ms	remaining: 28.4ms
186:	learn: 12.5623461	total: 379ms	remaining: 26.4ms
187:	learn: 12.5458927	total: 381ms	remaining: 24.3ms
188:	learn: 12.5050050	total: 383ms	remaining: 22.3ms
189:	learn: 12.4587958	total: 385ms	remaining: 20.2ms
190:	learn: 12.4467318	total: 387ms	remaining: 18.2ms
191:	learn: 12.4200898	total: 388ms	remaining: 16.2ms
192:	learn: 12.3962707	total: 390ms	remaining: 14.2ms
193:	learn: 12.3728455	total: 392ms	remaining: 12.1ms
194:	learn: 12.3364983	total: 394ms	remaining: 10.1ms
195:	learn: 12.3274670	total: 395ms	remaining: 8.07ms
196:	learn: 12.2600839	total: 397ms	remaining: 6.05ms
197:	learn: 12.1959210	total: 399ms	remaining: 4.03ms
198:	learn: 12.1567793	total: 401ms	remaining: 2.01ms
199:	learn: 12.0758633	total: 403ms	remaining: 0us
0:	learn: 45.9531425	total: 2.07ms	remaining: 412ms
1:	learn: 44.5479949	total: 3.91ms	remaining: 387ms
2:	learn: 43.1362878	total: 5.67ms	remaining: 372ms
3:	learn: 41.8701373	total: 7.42ms	remaining: 364ms
4:	learn: 40.8617315	total: 9.17ms	remaining: 358ms
5:	learn: 39.9452877	total: 10.9ms	remaining: 352ms
6:	learn: 39.2732295	total: 12.6ms	remaining: 348ms
7:	learn: 38.1538324	total: 14.4ms	remaining: 345ms
8:	learn: 37.2414077	total: 16.3ms	remaining: 345ms
9:	learn: 36.3106228	total: 18ms	remaining: 342ms
10:	learn: 35.3488441	total: 19.8ms	remaining: 340ms
11:	learn: 34.9203655	total: 21.7ms	remaining: 339ms
12:	learn: 34.2010962	total: 23.4ms	remaining: 337ms
13:	learn: 33.4274151	total: 25.1ms	remaining: 334ms
14:	learn: 33.0065843	total: 27.2ms	remaining: 335ms
15:	learn: 32.6353689	total: 29.1ms	remaining: 335ms
16:	learn: 32.2540521	total: 30.9ms	remaining: 333ms
17:	learn: 31.5322874	total: 32.7ms	remaining: 330ms
18:	learn: 31.0605088	total: 34.4ms	remaining: 328ms
19:	learn: 30.5072948	total: 36.2ms	remaining: 326ms
20:	learn: 29.9298729	total: 37.9ms	remaining: 323ms
21:	learn: 29.7485940	total: 39.7ms	remaining: 321ms
22:	learn: 29.0792546	total: 41.6ms	remaining: 320ms
23:	learn: 28.1958969	total: 43.5ms	remaining: 319ms
24:	learn: 27.7491907	total: 45.4ms	remaining: 318ms
25:	learn: 27.2255621	total: 47.3ms	remaining: 317ms
26:	learn: 26.9825044	total: 49.1ms	remaining: 315ms
27:	learn: 26.7798006	total: 51ms	remaining: 313ms
28:	learn: 26.3821790	total: 52.8ms	remaining: 311ms
29:	learn: 26.0742378	total: 54.7ms	remaining: 310ms
30:	learn: 25.7918013	total: 56.6ms	remaining: 309ms
31:	learn: 25.4955151	total: 58.4ms	remaining: 307ms
32:	learn: 25.2427795	total: 60.2ms	remaining: 305ms
33:	learn: 25.1676920	total: 62.1ms	remaining: 303ms
34:	learn: 25.0824545	total: 64ms	remaining: 302ms
35:	learn: 24.7120168	total: 68.7ms	remaining: 313ms
36:	learn: 24.5889751	total: 71.8ms	remaining: 316ms
37:	learn: 24.3992786	total: 75ms	remaining: 320ms
38:	learn: 24.3701053	total: 79.1ms	remaining: 326ms
39:	learn: 24.1139323	total: 85.2ms	remaining: 341ms
40:	learn: 23.8439794	total: 88ms	remaining: 341ms
41:	learn: 23.7313255	total: 102ms	remaining: 384ms
42:	learn: 23.4333414	total: 104ms	remaining: 381ms
43:	learn: 23.1226407	total: 107ms	remaining: 380ms
44:	learn: 22.9125944	total: 110ms	remaining: 378ms
45:	learn: 22.7951086	total: 112ms	remaining: 374ms
46:	learn: 22.6980018	total: 114ms	remaining: 371ms
47:	learn: 22.4890011	total: 116ms	remaining: 368ms
48:	learn: 22.2973924	total: 118ms	remaining: 365ms
49:	learn: 22.1743278	total: 121ms	remaining: 362ms
50:	learn: 22.0462520	total: 123ms	remaining: 358ms
51:	learn: 21.8574534	total: 125ms	remaining: 355ms
52:	learn: 21.6357274	total: 127ms	remaining: 352ms
53:	learn: 21.4805062	total: 129ms	remaining: 349ms
54:	learn: 21.3865752	total: 131ms	remaining: 345ms
55:	learn: 21.2501796	total: 134ms	remaining: 344ms
56:	learn: 21.1657122	total: 136ms	remaining: 341ms
57:	learn: 21.1050424	total: 138ms	remaining: 338ms
58:	learn: 21.0337824	total: 140ms	remaining: 334ms
59:	learn: 20.9606805	total: 142ms	remaining: 331ms
60:	learn: 20.8153366	total: 144ms	remaining: 328ms
61:	learn: 20.6786682	total: 146ms	remaining: 325ms
62:	learn: 20.4820554	total: 149ms	remaining: 324ms
63:	learn: 20.3800951	total: 151ms	remaining: 322ms
64:	learn: 20.2403167	total: 153ms	remaining: 319ms
65:	learn: 20.0563680	total: 155ms	remaining: 315ms
66:	learn: 19.9820577	total: 157ms	remaining: 312ms
67:	learn: 19.9330682	total: 159ms	remaining: 309ms
68:	learn: 19.8816650	total: 161ms	remaining: 306ms
69:	learn: 19.7656704	total: 163ms	remaining: 303ms
70:	learn: 19.7053928	total: 165ms	remaining: 299ms
71:	learn: 19.6044445	total: 167ms	remaining: 296ms
72:	learn: 19.3645351	total: 169ms	remaining: 293ms
73:	learn: 19.2442367	total: 170ms	remaining: 290ms
74:	learn: 19.0510071	total: 172ms	remaining: 287ms
75:	learn: 18.9756930	total: 174ms	remaining: 284ms
76:	learn: 18.8563721	total: 176ms	remaining: 281ms
77:	learn: 18.6169730	total: 178ms	remaining: 278ms
78:	learn: 18.4693908	total: 180ms	remaining: 275ms
79:	learn: 18.3138255	total: 182ms	remaining: 273ms
80:	learn: 18.2104459	total: 184ms	remaining: 270ms
81:	learn: 17.9848470	total: 186ms	remaining: 267ms
82:	learn: 17.7848200	total: 188ms	remaining: 265ms
83:	learn: 17.6976766	total: 190ms	remaining: 262ms
84:	learn: 17.5629396	total: 192ms	remaining: 260ms
85:	learn: 17.4707774	total: 194ms	remaining: 257ms
86:	learn: 17.4224826	total: 195ms	remaining: 254ms
87:	learn: 17.2510653	total: 197ms	remaining: 251ms
88:	learn: 17.1399798	total: 199ms	remaining: 248ms
89:	learn: 17.0588145	total: 201ms	remaining: 245ms
90:	learn: 17.0189682	total: 202ms	remaining: 242ms
91:	learn: 16.8596402	total: 204ms	remaining: 240ms
92:	learn: 16.7529323	total: 206ms	remaining: 237ms
93:	learn: 16.5570513	total: 208ms	remaining: 234ms
94:	learn: 16.4484526	total: 209ms	remaining: 231ms
95:	learn: 16.3863263	total: 211ms	remaining: 229ms
96:	learn: 16.2462155	total: 213ms	remaining: 226ms
97:	learn: 16.2238797	total: 215ms	remaining: 223ms
98:	learn: 16.1741815	total: 216ms	remaining: 221ms
99:	learn: 16.1104410	total: 218ms	remaining: 218ms
100:	learn: 16.0192341	total: 220ms	remaining: 216ms
101:	learn: 15.9573692	total: 222ms	remaining: 213ms
102:	learn: 15.8866859	total: 224ms	remaining: 211ms
103:	learn: 15.7982187	total: 226ms	remaining: 209ms
104:	learn: 15.6681686	total: 228ms	remaining: 206ms
105:	learn: 15.6061795	total: 230ms	remaining: 204ms
106:	learn: 15.5189030	total: 231ms	remaining: 201ms
107:	learn: 15.4267877	total: 233ms	remaining: 198ms
108:	learn: 15.4064087	total: 235ms	remaining: 196ms
109:	learn: 15.3006860	total: 237ms	remaining: 194ms
110:	learn: 15.2190890	total: 239ms	remaining: 192ms
111:	learn: 15.1650577	total: 241ms	remaining: 189ms
112:	learn: 15.1366876	total: 243ms	remaining: 187ms
113:	learn: 15.0003355	total: 245ms	remaining: 185ms
114:	learn: 14.8763865	total: 247ms	remaining: 182ms
115:	learn: 14.7784780	total: 248ms	remaining: 180ms
116:	learn: 14.6921777	total: 250ms	remaining: 178ms
117:	learn: 14.6065124	total: 252ms	remaining: 175ms
118:	learn: 14.5662097	total: 254ms	remaining: 173ms
119:	learn: 14.5058696	total: 256ms	remaining: 171ms
120:	learn: 14.4258040	total: 258ms	remaining: 168ms
121:	learn: 14.3502426	total: 260ms	remaining: 166ms
122:	learn: 14.2320479	total: 262ms	remaining: 164ms
123:	learn: 14.0966607	total: 268ms	remaining: 164ms
124:	learn: 14.0519725	total: 271ms	remaining: 162ms
125:	learn: 13.9455303	total: 273ms	remaining: 161ms
126:	learn: 13.9218211	total: 276ms	remaining: 159ms
127:	learn: 13.8535119	total: 279ms	remaining: 157ms
128:	learn: 13.8057194	total: 296ms	remaining: 163ms
129:	learn: 13.7778916	total: 298ms	remaining: 161ms
130:	learn: 13.7266440	total: 300ms	remaining: 158ms
131:	learn: 13.6728152	total: 302ms	remaining: 156ms
132:	learn: 13.6597828	total: 304ms	remaining: 153ms
133:	learn: 13.6156519	total: 306ms	remaining: 151ms
134:	learn: 13.5220318	total: 308ms	remaining: 148ms
135:	learn: 13.4277020	total: 310ms	remaining: 146ms
136:	learn: 13.3985470	total: 312ms	remaining: 143ms
137:	learn: 13.3123205	total: 314ms	remaining: 141ms
138:	learn: 13.2707488	total: 316ms	remaining: 138ms
139:	learn: 13.2012344	total: 317ms	remaining: 136ms
140:	learn: 13.1628178	total: 319ms	remaining: 134ms
141:	learn: 13.0762268	total: 321ms	remaining: 131ms
142:	learn: 13.0017862	total: 323ms	remaining: 129ms
143:	learn: 12.9898732	total: 325ms	remaining: 126ms
144:	learn: 12.9623452	total: 326ms	remaining: 124ms
145:	learn: 12.9494992	total: 328ms	remaining: 121ms
146:	learn: 12.8779505	total: 330ms	remaining: 119ms
147:	learn: 12.7824663	total: 332ms	remaining: 117ms
148:	learn: 12.7361785	total: 333ms	remaining: 114ms
149:	learn: 12.7025975	total: 335ms	remaining: 112ms
150:	learn: 12.6911153	total: 337ms	remaining: 109ms
151:	learn: 12.6573555	total: 339ms	remaining: 107ms
152:	learn: 12.6417700	total: 341ms	remaining: 105ms
153:	learn: 12.5653024	total: 342ms	remaining: 102ms
154:	learn: 12.5486627	total: 344ms	remaining: 99.9ms
155:	learn: 12.4828068	total: 346ms	remaining: 97.6ms
156:	learn: 12.4704958	total: 348ms	remaining: 95.3ms
157:	learn: 12.4366691	total: 350ms	remaining: 93ms
158:	learn: 12.3675992	total: 351ms	remaining: 90.6ms
159:	learn: 12.3366820	total: 353ms	remaining: 88.3ms
160:	learn: 12.2802559	total: 355ms	remaining: 86ms
161:	learn: 12.2413932	total: 357ms	remaining: 83.7ms
162:	learn: 12.2063889	total: 359ms	remaining: 81.4ms
163:	learn: 12.1332462	total: 360ms	remaining: 79.1ms
164:	learn: 12.1205681	total: 362ms	remaining: 76.8ms
165:	learn: 12.1093412	total: 364ms	remaining: 74.6ms
166:	learn: 12.0668287	total: 366ms	remaining: 72.3ms
167:	learn: 11.9963216	total: 368ms	remaining: 70.1ms
168:	learn: 11.9867571	total: 370ms	remaining: 67.8ms
169:	learn: 11.9383510	total: 372ms	remaining: 65.6ms
170:	learn: 11.8770349	total: 374ms	remaining: 63.3ms
171:	learn: 11.7921856	total: 375ms	remaining: 61.1ms
172:	learn: 11.7271960	total: 377ms	remaining: 58.9ms
173:	learn: 11.7167316	total: 379ms	remaining: 56.6ms
174:	learn: 11.7026595	total: 381ms	remaining: 54.4ms
175:	learn: 11.6467927	total: 383ms	remaining: 52.2ms
176:	learn: 11.6228326	total: 385ms	remaining: 50ms
177:	learn: 11.5765728	total: 386ms	remaining: 47.8ms
178:	learn: 11.5587578	total: 388ms	remaining: 45.5ms
179:	learn: 11.5367196	total: 390ms	remaining: 43.3ms
180:	learn: 11.5065153	total: 392ms	remaining: 41.1ms
181:	learn: 11.4197075	total: 394ms	remaining: 39ms
182:	learn: 11.3654758	total: 396ms	remaining: 36.8ms
183:	learn: 11.2919670	total: 398ms	remaining: 34.6ms
184:	learn: 11.2119719	total: 400ms	remaining: 32.4ms
185:	learn: 11.1708040	total: 402ms	remaining: 30.2ms
186:	learn: 11.1196454	total: 404ms	remaining: 28.1ms
187:	learn: 11.0960626	total: 406ms	remaining: 25.9ms
188:	learn: 11.0709214	total: 407ms	remaining: 23.7ms
189:	learn: 11.0545170	total: 409ms	remaining: 21.5ms
190:	learn: 11.0452486	total: 411ms	remaining: 19.4ms
191:	learn: 11.0085000	total: 413ms	remaining: 17.2ms
192:	learn: 10.9803031	total: 414ms	remaining: 15ms
193:	learn: 10.9408339	total: 417ms	remaining: 12.9ms
194:	learn: 10.8964071	total: 419ms	remaining: 10.7ms
195:	learn: 10.8333690	total: 421ms	remaining: 8.58ms
196:	learn: 10.7775113	total: 422ms	remaining: 6.43ms
197:	learn: 10.7370353	total: 424ms	remaining: 4.28ms
198:	learn: 10.7274417	total: 426ms	remaining: 2.14ms
199:	learn: 10.6890120	total: 428ms	remaining: 0us
0:	learn: 27.9287538	total: 25.1ms	remaining: 7.49s
1:	learn: 27.8355877	total: 45.5ms	remaining: 6.77s
2:	learn: 27.7377793	total: 67ms	remaining: 6.63s
3:	learn: 27.6343000	total: 85.6ms	remaining: 6.34s
4:	learn: 27.5266115	total: 105ms	remaining: 6.21s
5:	learn: 27.4134229	total: 122ms	remaining: 5.99s
6:	learn: 27.2990636	total: 140ms	remaining: 5.84s
7:	learn: 27.1972510	total: 157ms	remaining: 5.73s
8:	learn: 27.0978359	total: 174ms	remaining: 5.63s
9:	learn: 26.9865440	total: 193ms	remaining: 5.59s
10:	learn: 26.9020004	total: 219ms	remaining: 5.76s
11:	learn: 26.8141055	total: 239ms	remaining: 5.74s
12:	learn: 26.6968247	total: 257ms	remaining: 5.67s
13:	learn: 26.6044547	total: 274ms	remaining: 5.6s
14:	learn: 26.5124007	total: 292ms	remaining: 5.54s
15:	learn: 26.4396400	total: 309ms	remaining: 5.48s
16:	learn: 26.3477795	total: 327ms	remaining: 5.44s
17:	learn: 26.2543756	total: 344ms	remaining: 5.39s
18:	learn: 26.1791034	total: 362ms	remaining: 5.35s
19:	learn: 26.1007134	total: 380ms	remaining: 5.31s
20:	learn: 25.9996688	total: 398ms	remaining: 5.29s
21:	learn: 25.9163852	total: 417ms	remaining: 5.27s
22:	learn: 25.8272079	total: 447ms	remaining: 5.38s
23:	learn: 25.7480168	total: 468ms	remaining: 5.38s
24:	learn: 25.6695074	total: 489ms	remaining: 5.38s
25:	learn: 25.5966524	total: 509ms	remaining: 5.36s
26:	learn: 25.5196752	total: 529ms	remaining: 5.34s
27:	learn: 25.4332686	total: 546ms	remaining: 5.3s
28:	learn: 25.3495027	total: 563ms	remaining: 5.26s
29:	learn: 25.2860642	total: 580ms	remaining: 5.22s
30:	learn: 25.2021945	total: 598ms	remaining: 5.19s
31:	learn: 25.1023964	total: 616ms	remaining: 5.16s
32:	learn: 25.0255596	total: 637ms	remaining: 5.16s
33:	learn: 24.9452005	total: 660ms	remaining: 5.16s
34:	learn: 24.8550211	total: 678ms	remaining: 5.14s
35:	learn: 24.7818705	total: 696ms	remaining: 5.11s
36:	learn: 24.7033034	total: 713ms	remaining: 5.07s
37:	learn: 24.6196573	total: 731ms	remaining: 5.04s
38:	learn: 24.5369945	total: 749ms	remaining: 5.01s
39:	learn: 24.4619035	total: 768ms	remaining: 4.99s
40:	learn: 24.3823789	total: 787ms	remaining: 4.97s
41:	learn: 24.3252034	total: 806ms	remaining: 4.95s
42:	learn: 24.2486155	total: 828ms	remaining: 4.95s
43:	learn: 24.1888166	total: 851ms	remaining: 4.95s
44:	learn: 24.1139611	total: 880ms	remaining: 4.99s
45:	learn: 24.0212493	total: 903ms	remaining: 4.99s
46:	learn: 23.9415810	total: 926ms	remaining: 4.98s
47:	learn: 23.8736804	total: 946ms	remaining: 4.97s
48:	learn: 23.8095179	total: 967ms	remaining: 4.96s
49:	learn: 23.7383521	total: 986ms	remaining: 4.93s
50:	learn: 23.6607435	total: 1s	remaining: 4.9s
51:	learn: 23.5998233	total: 1.02s	remaining: 4.88s
52:	learn: 23.5232493	total: 1.04s	remaining: 4.85s
53:	learn: 23.4426238	total: 1.07s	remaining: 4.87s
54:	learn: 23.3630038	total: 1.09s	remaining: 4.86s
55:	learn: 23.2860887	total: 1.11s	remaining: 4.84s
56:	learn: 23.2159937	total: 1.13s	remaining: 4.82s
57:	learn: 23.1476280	total: 1.15s	remaining: 4.79s
58:	learn: 23.0828577	total: 1.17s	remaining: 4.77s
59:	learn: 23.0114421	total: 1.19s	remaining: 4.74s
60:	learn: 22.9382847	total: 1.21s	remaining: 4.72s
61:	learn: 22.8735487	total: 1.22s	remaining: 4.7s
62:	learn: 22.8031351	total: 1.24s	remaining: 4.67s
63:	learn: 22.7463661	total: 1.26s	remaining: 4.66s
64:	learn: 22.6893841	total: 1.28s	remaining: 4.64s
65:	learn: 22.6365710	total: 1.31s	remaining: 4.65s
66:	learn: 22.5716621	total: 1.33s	remaining: 4.64s
67:	learn: 22.5026622	total: 1.36s	remaining: 4.63s
68:	learn: 22.4357534	total: 1.38s	remaining: 4.61s
69:	learn: 22.3787304	total: 1.4s	remaining: 4.59s
70:	learn: 22.3117958	total: 1.42s	remaining: 4.57s
71:	learn: 22.2471474	total: 1.44s	remaining: 4.55s
72:	learn: 22.1854108	total: 1.45s	remaining: 4.52s
73:	learn: 22.1066505	total: 1.47s	remaining: 4.5s
74:	learn: 22.0507978	total: 1.5s	remaining: 4.49s
75:	learn: 21.9851662	total: 1.52s	remaining: 4.49s
76:	learn: 21.9295292	total: 1.54s	remaining: 4.48s
77:	learn: 21.8787583	total: 1.56s	remaining: 4.45s
78:	learn: 21.8104621	total: 1.58s	remaining: 4.43s
79:	learn: 21.7432602	total: 1.6s	remaining: 4.41s
80:	learn: 21.6766804	total: 1.62s	remaining: 4.38s
81:	learn: 21.6113721	total: 1.64s	remaining: 4.36s
82:	learn: 21.5502297	total: 1.66s	remaining: 4.33s
83:	learn: 21.4974800	total: 1.68s	remaining: 4.31s
84:	learn: 21.4296143	total: 1.7s	remaining: 4.29s
85:	learn: 21.3833038	total: 1.72s	remaining: 4.29s
86:	learn: 21.3249565	total: 1.75s	remaining: 4.27s
87:	learn: 21.2653259	total: 1.77s	remaining: 4.26s
88:	learn: 21.2107083	total: 1.79s	remaining: 4.25s
89:	learn: 21.1541933	total: 1.81s	remaining: 4.23s
90:	learn: 21.1002777	total: 1.84s	remaining: 4.22s
91:	learn: 21.0459016	total: 1.86s	remaining: 4.2s
92:	learn: 20.9893833	total: 1.88s	remaining: 4.17s
93:	learn: 20.9337341	total: 1.89s	remaining: 4.15s
94:	learn: 20.8800004	total: 1.91s	remaining: 4.13s
95:	learn: 20.8198062	total: 1.94s	remaining: 4.12s
96:	learn: 20.7698343	total: 1.96s	remaining: 4.11s
97:	learn: 20.7194587	total: 1.98s	remaining: 4.08s
98:	learn: 20.6592165	total: 2s	remaining: 4.05s
99:	learn: 20.6071860	total: 2.02s	remaining: 4.03s
100:	learn: 20.5531468	total: 2.03s	remaining: 4s
101:	learn: 20.5039279	total: 2.05s	remaining: 3.98s
102:	learn: 20.4539331	total: 2.07s	remaining: 3.96s
103:	learn: 20.4020382	total: 2.09s	remaining: 3.93s
104:	learn: 20.3477286	total: 2.1s	remaining: 3.91s
105:	learn: 20.2851045	total: 2.12s	remaining: 3.89s
106:	learn: 20.2451669	total: 2.15s	remaining: 3.87s
107:	learn: 20.1964512	total: 2.17s	remaining: 3.86s
108:	learn: 20.1552840	total: 2.19s	remaining: 3.85s
109:	learn: 20.1009399	total: 2.22s	remaining: 3.83s
110:	learn: 20.0571100	total: 2.23s	remaining: 3.81s
111:	learn: 20.0030282	total: 2.26s	remaining: 3.79s
112:	learn: 19.9439272	total: 2.28s	remaining: 3.77s
113:	learn: 19.8977422	total: 2.29s	remaining: 3.74s
114:	learn: 19.8524016	total: 2.31s	remaining: 3.72s
115:	learn: 19.8023928	total: 2.33s	remaining: 3.7s
116:	learn: 19.7490506	total: 2.35s	remaining: 3.68s
117:	learn: 19.7001633	total: 2.38s	remaining: 3.67s
118:	learn: 19.6455153	total: 2.4s	remaining: 3.64s
119:	learn: 19.6004040	total: 2.41s	remaining: 3.62s
120:	learn: 19.5470399	total: 2.43s	remaining: 3.6s
121:	learn: 19.5000893	total: 2.45s	remaining: 3.57s
122:	learn: 19.4507652	total: 2.46s	remaining: 3.55s
123:	learn: 19.4106326	total: 2.48s	remaining: 3.52s
124:	learn: 19.3644311	total: 2.5s	remaining: 3.5s
125:	learn: 19.3148949	total: 2.52s	remaining: 3.48s
126:	learn: 19.2697671	total: 2.54s	remaining: 3.46s
127:	learn: 19.2332406	total: 2.56s	remaining: 3.44s
128:	learn: 19.1806807	total: 2.59s	remaining: 3.43s
129:	learn: 19.1369558	total: 2.61s	remaining: 3.41s
130:	learn: 19.0946811	total: 2.63s	remaining: 3.39s
131:	learn: 19.0472537	total: 2.65s	remaining: 3.38s
132:	learn: 19.0015774	total: 2.67s	remaining: 3.35s
133:	learn: 18.9566014	total: 2.69s	remaining: 3.33s
134:	learn: 18.9106843	total: 2.71s	remaining: 3.31s
135:	learn: 18.8712192	total: 2.72s	remaining: 3.28s
136:	learn: 18.8307878	total: 2.74s	remaining: 3.26s
137:	learn: 18.7888605	total: 2.76s	remaining: 3.24s
138:	learn: 18.7561413	total: 2.79s	remaining: 3.23s
139:	learn: 18.7152477	total: 2.81s	remaining: 3.21s
140:	learn: 18.6729856	total: 2.83s	remaining: 3.19s
141:	learn: 18.6270081	total: 2.85s	remaining: 3.17s
142:	learn: 18.5847583	total: 2.87s	remaining: 3.15s
143:	learn: 18.5438439	total: 2.89s	remaining: 3.13s
144:	learn: 18.4992884	total: 2.91s	remaining: 3.11s
145:	learn: 18.4638746	total: 2.92s	remaining: 3.08s
146:	learn: 18.4225830	total: 2.94s	remaining: 3.06s
147:	learn: 18.3818692	total: 2.96s	remaining: 3.04s
148:	learn: 18.3399112	total: 2.98s	remaining: 3.02s
149:	learn: 18.2952736	total: 3.01s	remaining: 3.01s
150:	learn: 18.2506791	total: 3.03s	remaining: 2.99s
151:	learn: 18.2129149	total: 3.05s	remaining: 2.97s
152:	learn: 18.1756293	total: 3.07s	remaining: 2.95s
153:	learn: 18.1463373	total: 3.08s	remaining: 2.92s
154:	learn: 18.1033180	total: 3.1s	remaining: 2.9s
155:	learn: 18.0658127	total: 3.12s	remaining: 2.88s
156:	learn: 18.0195238	total: 3.13s	remaining: 2.85s
157:	learn: 17.9823757	total: 3.15s	remaining: 2.83s
158:	learn: 17.9460032	total: 3.17s	remaining: 2.81s
159:	learn: 17.9006607	total: 3.19s	remaining: 2.79s
160:	learn: 17.8656718	total: 3.21s	remaining: 2.77s
161:	learn: 17.8281417	total: 3.24s	remaining: 2.76s
162:	learn: 17.7936071	total: 3.25s	remaining: 2.74s
163:	learn: 17.7512920	total: 3.27s	remaining: 2.71s
164:	learn: 17.7087771	total: 3.29s	remaining: 2.69s
165:	learn: 17.6734435	total: 3.31s	remaining: 2.67s
166:	learn: 17.6328319	total: 3.33s	remaining: 2.65s
167:	learn: 17.5950341	total: 3.34s	remaining: 2.63s
168:	learn: 17.5558152	total: 3.36s	remaining: 2.61s
169:	learn: 17.5242504	total: 3.38s	remaining: 2.58s
170:	learn: 17.4834769	total: 3.4s	remaining: 2.56s
171:	learn: 17.4506978	total: 3.42s	remaining: 2.54s
172:	learn: 17.4187842	total: 3.44s	remaining: 2.53s
173:	learn: 17.3842446	total: 3.47s	remaining: 2.51s
174:	learn: 17.3470152	total: 3.49s	remaining: 2.49s
175:	learn: 17.3097298	total: 3.51s	remaining: 2.47s
176:	learn: 17.2726240	total: 3.53s	remaining: 2.45s
177:	learn: 17.2359845	total: 3.55s	remaining: 2.43s
178:	learn: 17.2022599	total: 3.57s	remaining: 2.41s
179:	learn: 17.1625346	total: 3.59s	remaining: 2.39s
180:	learn: 17.1293568	total: 3.61s	remaining: 2.37s
181:	learn: 17.0979801	total: 3.63s	remaining: 2.35s
182:	learn: 17.0621326	total: 3.66s	remaining: 2.34s
183:	learn: 17.0260151	total: 3.69s	remaining: 2.33s
184:	learn: 16.9942672	total: 3.71s	remaining: 2.31s
185:	learn: 16.9549284	total: 3.73s	remaining: 2.29s
186:	learn: 16.9192182	total: 3.75s	remaining: 2.27s
187:	learn: 16.8872695	total: 3.77s	remaining: 2.25s
188:	learn: 16.8487904	total: 3.79s	remaining: 2.23s
189:	learn: 16.8203784	total: 3.81s	remaining: 2.21s
190:	learn: 16.7903459	total: 3.83s	remaining: 2.19s
191:	learn: 16.7544969	total: 3.87s	remaining: 2.18s
192:	learn: 16.7229843	total: 3.9s	remaining: 2.16s
193:	learn: 16.6904455	total: 3.93s	remaining: 2.15s
194:	learn: 16.6575920	total: 3.95s	remaining: 2.13s
195:	learn: 16.6357177	total: 3.97s	remaining: 2.11s
196:	learn: 16.6060792	total: 3.99s	remaining: 2.09s
197:	learn: 16.5736452	total: 4.01s	remaining: 2.07s
198:	learn: 16.5439440	total: 4.04s	remaining: 2.05s
199:	learn: 16.5141009	total: 4.06s	remaining: 2.03s
200:	learn: 16.4816419	total: 4.09s	remaining: 2.01s
201:	learn: 16.4518810	total: 4.11s	remaining: 1.99s
202:	learn: 16.4212965	total: 4.13s	remaining: 1.97s
203:	learn: 16.3893517	total: 4.15s	remaining: 1.95s
204:	learn: 16.3470875	total: 4.18s	remaining: 1.94s
205:	learn: 16.3182029	total: 4.2s	remaining: 1.92s
206:	learn: 16.2891757	total: 4.22s	remaining: 1.9s
207:	learn: 16.2566535	total: 4.24s	remaining: 1.88s
208:	learn: 16.2275519	total: 4.26s	remaining: 1.85s
209:	learn: 16.1996746	total: 4.28s	remaining: 1.83s
210:	learn: 16.1683317	total: 4.31s	remaining: 1.82s
211:	learn: 16.1310051	total: 4.34s	remaining: 1.8s
212:	learn: 16.0958734	total: 4.36s	remaining: 1.78s
213:	learn: 16.0673631	total: 4.39s	remaining: 1.76s
214:	learn: 16.0364435	total: 4.41s	remaining: 1.74s
215:	learn: 16.0051263	total: 4.44s	remaining: 1.73s
216:	learn: 15.9777538	total: 4.46s	remaining: 1.7s
217:	learn: 15.9455316	total: 4.48s	remaining: 1.68s
218:	learn: 15.9241293	total: 4.5s	remaining: 1.66s
219:	learn: 15.8970309	total: 4.52s	remaining: 1.64s
220:	learn: 15.8691723	total: 4.55s	remaining: 1.63s
221:	learn: 15.8436926	total: 4.57s	remaining: 1.6s
222:	learn: 15.8166301	total: 4.59s	remaining: 1.58s
223:	learn: 15.7880114	total: 4.61s	remaining: 1.56s
224:	learn: 15.7567514	total: 4.63s	remaining: 1.54s
225:	learn: 15.7291041	total: 4.65s	remaining: 1.52s
226:	learn: 15.7021329	total: 4.68s	remaining: 1.5s
227:	learn: 15.6702609	total: 4.7s	remaining: 1.48s
228:	learn: 15.6467297	total: 4.72s	remaining: 1.46s
229:	learn: 15.6214854	total: 4.75s	remaining: 1.45s
230:	learn: 15.5922396	total: 4.78s	remaining: 1.43s
231:	learn: 15.5684351	total: 4.8s	remaining: 1.41s
232:	learn: 15.5437010	total: 4.83s	remaining: 1.39s
233:	learn: 15.5197623	total: 4.85s	remaining: 1.37s
234:	learn: 15.4955199	total: 4.87s	remaining: 1.35s
235:	learn: 15.4672461	total: 4.89s	remaining: 1.33s
236:	learn: 15.4366186	total: 4.91s	remaining: 1.3s
237:	learn: 15.4086956	total: 4.93s	remaining: 1.28s
238:	learn: 15.3806069	total: 4.96s	remaining: 1.26s
239:	learn: 15.3506578	total: 4.98s	remaining: 1.25s
240:	learn: 15.3188403	total: 5s	remaining: 1.22s
241:	learn: 15.2929225	total: 5.02s	remaining: 1.2s
242:	learn: 15.2737189	total: 5.04s	remaining: 1.18s
243:	learn: 15.2477656	total: 5.06s	remaining: 1.16s
244:	learn: 15.2208688	total: 5.08s	remaining: 1.14s
245:	learn: 15.1939794	total: 5.09s	remaining: 1.12s
246:	learn: 15.1654788	total: 5.11s	remaining: 1.1s
247:	learn: 15.1455209	total: 5.13s	remaining: 1.08s
248:	learn: 15.1168954	total: 5.15s	remaining: 1.05s
249:	learn: 15.0879091	total: 5.18s	remaining: 1.04s
250:	learn: 15.0640811	total: 5.21s	remaining: 1.02s
251:	learn: 15.0388041	total: 5.23s	remaining: 996ms
252:	learn: 15.0099876	total: 5.25s	remaining: 975ms
253:	learn: 14.9832352	total: 5.27s	remaining: 955ms
254:	learn: 14.9603687	total: 5.29s	remaining: 934ms
255:	learn: 14.9380207	total: 5.31s	remaining: 913ms
256:	learn: 14.9153860	total: 5.33s	remaining: 892ms
257:	learn: 14.8938640	total: 5.35s	remaining: 871ms
258:	learn: 14.8656429	total: 5.37s	remaining: 850ms
259:	learn: 14.8400108	total: 5.4s	remaining: 830ms
260:	learn: 14.8127477	total: 5.42s	remaining: 809ms
261:	learn: 14.7840189	total: 5.43s	remaining: 788ms
262:	learn: 14.7636580	total: 5.45s	remaining: 767ms
263:	learn: 14.7424463	total: 5.47s	remaining: 746ms
264:	learn: 14.7165151	total: 5.49s	remaining: 725ms
265:	learn: 14.6943344	total: 5.51s	remaining: 705ms
266:	learn: 14.6684671	total: 5.53s	remaining: 684ms
267:	learn: 14.6500533	total: 5.55s	remaining: 663ms
268:	learn: 14.6242507	total: 5.57s	remaining: 642ms
269:	learn: 14.6010969	total: 5.59s	remaining: 621ms
270:	learn: 14.5754050	total: 5.62s	remaining: 602ms
271:	learn: 14.5527180	total: 5.64s	remaining: 581ms
272:	learn: 14.5312625	total: 5.67s	remaining: 560ms
273:	learn: 14.5046916	total: 5.69s	remaining: 540ms
274:	learn: 14.4831769	total: 5.71s	remaining: 519ms
275:	learn: 14.4557873	total: 5.73s	remaining: 498ms
276:	learn: 14.4340248	total: 5.75s	remaining: 477ms
277:	learn: 14.4187123	total: 5.77s	remaining: 456ms
278:	learn: 14.3943058	total: 5.79s	remaining: 436ms
279:	learn: 14.3734883	total: 5.82s	remaining: 416ms
280:	learn: 14.3485928	total: 5.84s	remaining: 395ms
281:	learn: 14.3207447	total: 5.86s	remaining: 374ms
282:	learn: 14.2969638	total: 5.88s	remaining: 353ms
283:	learn: 14.2810628	total: 5.9s	remaining: 332ms
284:	learn: 14.2590377	total: 5.92s	remaining: 311ms
285:	learn: 14.2375705	total: 5.94s	remaining: 291ms
286:	learn: 14.2147566	total: 5.96s	remaining: 270ms
287:	learn: 14.1935863	total: 5.98s	remaining: 249ms
288:	learn: 14.1721543	total: 6s	remaining: 228ms
289:	learn: 14.1455377	total: 6.02s	remaining: 208ms
290:	learn: 14.1236162	total: 6.05s	remaining: 187ms
291:	learn: 14.0984065	total: 6.07s	remaining: 166ms
292:	learn: 14.0784162	total: 6.1s	remaining: 146ms
293:	learn: 14.0548298	total: 6.12s	remaining: 125ms
294:	learn: 14.0323401	total: 6.14s	remaining: 104ms
295:	learn: 14.0073430	total: 6.16s	remaining: 83.3ms
296:	learn: 13.9845466	total: 6.18s	remaining: 62.5ms
297:	learn: 13.9606203	total: 6.21s	remaining: 41.7ms
298:	learn: 13.9452850	total: 6.23s	remaining: 20.8ms
299:	learn: 13.9220508	total: 6.25s	remaining: 0us
0:	learn: 43.7856816	total: 18.9ms	remaining: 5.64s
1:	learn: 43.5659218	total: 37.5ms	remaining: 5.58s
2:	learn: 43.3733982	total: 57.2ms	remaining: 5.67s
3:	learn: 43.1723410	total: 76.3ms	remaining: 5.64s
4:	learn: 42.9319116	total: 98.6ms	remaining: 5.81s
5:	learn: 42.7464007	total: 131ms	remaining: 6.42s
6:	learn: 42.5608430	total: 156ms	remaining: 6.52s
7:	learn: 42.3800740	total: 179ms	remaining: 6.52s
8:	learn: 42.1910551	total: 201ms	remaining: 6.51s
9:	learn: 41.9653144	total: 225ms	remaining: 6.51s
10:	learn: 41.7727061	total: 243ms	remaining: 6.39s
11:	learn: 41.5933740	total: 263ms	remaining: 6.31s
12:	learn: 41.4042369	total: 281ms	remaining: 6.21s
13:	learn: 41.2362391	total: 300ms	remaining: 6.13s
14:	learn: 41.0537134	total: 319ms	remaining: 6.06s
15:	learn: 40.8332150	total: 347ms	remaining: 6.16s
16:	learn: 40.6622092	total: 370ms	remaining: 6.16s
17:	learn: 40.4852088	total: 388ms	remaining: 6.09s
18:	learn: 40.3177798	total: 407ms	remaining: 6.02s
19:	learn: 40.1620848	total: 428ms	remaining: 5.99s
20:	learn: 40.0157854	total: 448ms	remaining: 5.95s
21:	learn: 39.8273959	total: 468ms	remaining: 5.92s
22:	learn: 39.6404929	total: 486ms	remaining: 5.85s
23:	learn: 39.4600428	total: 508ms	remaining: 5.84s
24:	learn: 39.3048690	total: 535ms	remaining: 5.89s
25:	learn: 39.1251852	total: 558ms	remaining: 5.88s
26:	learn: 38.9442672	total: 579ms	remaining: 5.85s
27:	learn: 38.7823590	total: 600ms	remaining: 5.83s
28:	learn: 38.6054970	total: 622ms	remaining: 5.82s
29:	learn: 38.4455821	total: 644ms	remaining: 5.79s
30:	learn: 38.2751416	total: 662ms	remaining: 5.74s
31:	learn: 38.1412929	total: 680ms	remaining: 5.7s
32:	learn: 37.9766473	total: 699ms	remaining: 5.65s
33:	learn: 37.8286500	total: 720ms	remaining: 5.63s
34:	learn: 37.6627925	total: 741ms	remaining: 5.61s
35:	learn: 37.5157792	total: 765ms	remaining: 5.61s
36:	learn: 37.3581107	total: 783ms	remaining: 5.57s
37:	learn: 37.2281308	total: 801ms	remaining: 5.52s
38:	learn: 37.0636902	total: 819ms	remaining: 5.48s
39:	learn: 36.9103063	total: 837ms	remaining: 5.44s
40:	learn: 36.7940308	total: 855ms	remaining: 5.4s
41:	learn: 36.6485639	total: 873ms	remaining: 5.36s
42:	learn: 36.4851708	total: 891ms	remaining: 5.32s
43:	learn: 36.3381167	total: 909ms	remaining: 5.29s
44:	learn: 36.2038956	total: 927ms	remaining: 5.25s
45:	learn: 36.0587955	total: 946ms	remaining: 5.22s
46:	learn: 35.8793723	total: 977ms	remaining: 5.26s
47:	learn: 35.7468816	total: 999ms	remaining: 5.25s
48:	learn: 35.6329508	total: 1.02s	remaining: 5.22s
49:	learn: 35.4891807	total: 1.04s	remaining: 5.2s
50:	learn: 35.3432049	total: 1.06s	remaining: 5.19s
51:	learn: 35.2327908	total: 1.08s	remaining: 5.15s
52:	learn: 35.1052522	total: 1.1s	remaining: 5.13s
53:	learn: 34.9886968	total: 1.12s	remaining: 5.1s
54:	learn: 34.8773412	total: 1.14s	remaining: 5.08s
55:	learn: 34.7472204	total: 1.16s	remaining: 5.06s
56:	learn: 34.6327502	total: 1.19s	remaining: 5.06s
57:	learn: 34.5054629	total: 1.21s	remaining: 5.05s
58:	learn: 34.4000757	total: 1.23s	remaining: 5.02s
59:	learn: 34.2599156	total: 1.25s	remaining: 4.99s
60:	learn: 34.0957859	total: 1.27s	remaining: 4.96s
61:	learn: 33.9558366	total: 1.29s	remaining: 4.94s
62:	learn: 33.8358576	total: 1.3s	remaining: 4.91s
63:	learn: 33.7227911	total: 1.32s	remaining: 4.87s
64:	learn: 33.6000896	total: 1.34s	remaining: 4.84s
65:	learn: 33.4731958	total: 1.36s	remaining: 4.83s
66:	learn: 33.3653344	total: 1.38s	remaining: 4.81s
67:	learn: 33.2193391	total: 1.42s	remaining: 4.84s
68:	learn: 33.0882205	total: 1.44s	remaining: 4.83s
69:	learn: 33.0048440	total: 1.46s	remaining: 4.81s
70:	learn: 32.8807136	total: 1.49s	remaining: 4.8s
71:	learn: 32.7586530	total: 1.5s	remaining: 4.76s
72:	learn: 32.6391088	total: 1.52s	remaining: 4.73s
73:	learn: 32.5057642	total: 1.54s	remaining: 4.7s
74:	learn: 32.3794191	total: 1.56s	remaining: 4.67s
75:	learn: 32.2701431	total: 1.58s	remaining: 4.65s
76:	learn: 32.1653013	total: 1.61s	remaining: 4.65s
77:	learn: 32.0510725	total: 1.63s	remaining: 4.63s
78:	learn: 31.9443968	total: 1.64s	remaining: 4.59s
79:	learn: 31.8314564	total: 1.66s	remaining: 4.57s
80:	learn: 31.7028384	total: 1.68s	remaining: 4.54s
81:	learn: 31.5866025	total: 1.7s	remaining: 4.51s
82:	learn: 31.4694776	total: 1.71s	remaining: 4.48s
83:	learn: 31.3496921	total: 1.73s	remaining: 4.46s
84:	learn: 31.2249241	total: 1.75s	remaining: 4.43s
85:	learn: 31.1080513	total: 1.77s	remaining: 4.41s
86:	learn: 30.9833337	total: 1.8s	remaining: 4.4s
87:	learn: 30.9062503	total: 1.82s	remaining: 4.39s
88:	learn: 30.8191741	total: 1.84s	remaining: 4.37s
89:	learn: 30.7313024	total: 1.86s	remaining: 4.35s
90:	learn: 30.6471248	total: 1.88s	remaining: 4.33s
91:	learn: 30.5146481	total: 1.9s	remaining: 4.3s
92:	learn: 30.3820896	total: 1.92s	remaining: 4.28s
93:	learn: 30.2824002	total: 1.94s	remaining: 4.25s
94:	learn: 30.1727218	total: 1.96s	remaining: 4.22s
95:	learn: 30.0878548	total: 1.98s	remaining: 4.2s
96:	learn: 29.9818399	total: 2s	remaining: 4.18s
97:	learn: 29.9015803	total: 2.02s	remaining: 4.17s
98:	learn: 29.8217982	total: 2.04s	remaining: 4.15s
99:	learn: 29.7264971	total: 2.06s	remaining: 4.12s
100:	learn: 29.6289348	total: 2.08s	remaining: 4.1s
101:	learn: 29.5205081	total: 2.1s	remaining: 4.07s
102:	learn: 29.4418891	total: 2.11s	remaining: 4.04s
103:	learn: 29.3334487	total: 2.14s	remaining: 4.04s
104:	learn: 29.2240799	total: 2.17s	remaining: 4.02s
105:	learn: 29.1304764	total: 2.19s	remaining: 4s
106:	learn: 29.0308760	total: 2.21s	remaining: 3.98s
107:	learn: 28.9577969	total: 2.24s	remaining: 3.98s
108:	learn: 28.8728758	total: 2.26s	remaining: 3.97s
109:	learn: 28.7984665	total: 2.29s	remaining: 3.95s
110:	learn: 28.6877184	total: 2.31s	remaining: 3.93s
111:	learn: 28.5791485	total: 2.33s	remaining: 3.92s
112:	learn: 28.4982721	total: 2.35s	remaining: 3.9s
113:	learn: 28.4085608	total: 2.37s	remaining: 3.87s
114:	learn: 28.3448584	total: 2.4s	remaining: 3.85s
115:	learn: 28.2575931	total: 2.43s	remaining: 3.86s
116:	learn: 28.1881896	total: 2.45s	remaining: 3.84s
117:	learn: 28.1069507	total: 2.47s	remaining: 3.82s
118:	learn: 28.0270528	total: 2.5s	remaining: 3.79s
119:	learn: 27.9259166	total: 2.52s	remaining: 3.77s
120:	learn: 27.8563639	total: 2.54s	remaining: 3.75s
121:	learn: 27.7785736	total: 2.56s	remaining: 3.73s
122:	learn: 27.6946101	total: 2.58s	remaining: 3.71s
123:	learn: 27.6139657	total: 2.6s	remaining: 3.68s
124:	learn: 27.5264856	total: 2.62s	remaining: 3.66s
125:	learn: 27.4490397	total: 2.64s	remaining: 3.64s
126:	learn: 27.3707329	total: 2.68s	remaining: 3.65s
127:	learn: 27.3087624	total: 2.7s	remaining: 3.63s
128:	learn: 27.2413002	total: 2.73s	remaining: 3.61s
129:	learn: 27.1632835	total: 2.75s	remaining: 3.6s
130:	learn: 27.0921279	total: 2.77s	remaining: 3.58s
131:	learn: 27.0007844	total: 2.79s	remaining: 3.56s
132:	learn: 26.9285864	total: 2.81s	remaining: 3.53s
133:	learn: 26.8446919	total: 2.84s	remaining: 3.51s
134:	learn: 26.7846812	total: 2.86s	remaining: 3.5s
135:	learn: 26.7235166	total: 2.89s	remaining: 3.48s
136:	learn: 26.6537054	total: 2.91s	remaining: 3.46s
137:	learn: 26.5823761	total: 2.94s	remaining: 3.45s
138:	learn: 26.5118236	total: 2.96s	remaining: 3.42s
139:	learn: 26.4258642	total: 2.98s	remaining: 3.4s
140:	learn: 26.3419164	total: 3s	remaining: 3.38s
141:	learn: 26.2795332	total: 3.02s	remaining: 3.36s
142:	learn: 26.2033926	total: 3.04s	remaining: 3.33s
143:	learn: 26.1361455	total: 3.06s	remaining: 3.31s
144:	learn: 26.0778431	total: 3.09s	remaining: 3.3s
145:	learn: 26.0186987	total: 3.11s	remaining: 3.28s
146:	learn: 25.9494077	total: 3.14s	remaining: 3.27s
147:	learn: 25.8713963	total: 3.16s	remaining: 3.25s
148:	learn: 25.8109826	total: 3.19s	remaining: 3.23s
149:	learn: 25.7558495	total: 3.21s	remaining: 3.21s
150:	learn: 25.6849542	total: 3.23s	remaining: 3.19s
151:	learn: 25.6195687	total: 3.25s	remaining: 3.17s
152:	learn: 25.5569409	total: 3.27s	remaining: 3.15s
153:	learn: 25.4979783	total: 3.31s	remaining: 3.13s
154:	learn: 25.4282161	total: 3.33s	remaining: 3.11s
155:	learn: 25.3550543	total: 3.35s	remaining: 3.09s
156:	learn: 25.3038420	total: 3.37s	remaining: 3.07s
157:	learn: 25.2307423	total: 3.39s	remaining: 3.04s
158:	learn: 25.1635473	total: 3.41s	remaining: 3.02s
159:	learn: 25.1019951	total: 3.44s	remaining: 3.01s
160:	learn: 25.0370269	total: 3.46s	remaining: 2.99s
161:	learn: 24.9709545	total: 3.48s	remaining: 2.97s
162:	learn: 24.9115940	total: 3.51s	remaining: 2.95s
163:	learn: 24.8527105	total: 3.54s	remaining: 2.93s
164:	learn: 24.7828791	total: 3.56s	remaining: 2.91s
165:	learn: 24.7274457	total: 3.59s	remaining: 2.89s
166:	learn: 24.6621617	total: 3.61s	remaining: 2.87s
167:	learn: 24.5905749	total: 3.61s	remaining: 2.84s
168:	learn: 24.5297300	total: 3.63s	remaining: 2.81s
169:	learn: 24.4643850	total: 3.65s	remaining: 2.79s
170:	learn: 24.4008397	total: 3.67s	remaining: 2.77s
171:	learn: 24.3357360	total: 3.71s	remaining: 2.76s
172:	learn: 24.2734264	total: 3.73s	remaining: 2.74s
173:	learn: 24.2248748	total: 3.75s	remaining: 2.72s
174:	learn: 24.1560070	total: 3.77s	remaining: 2.69s
175:	learn: 24.0996080	total: 3.79s	remaining: 2.67s
176:	learn: 24.0348608	total: 3.82s	remaining: 2.65s
177:	learn: 23.9803664	total: 3.84s	remaining: 2.63s
178:	learn: 23.9260748	total: 3.86s	remaining: 2.61s
179:	learn: 23.8772265	total: 3.88s	remaining: 2.58s
180:	learn: 23.8232381	total: 3.9s	remaining: 2.56s
181:	learn: 23.7590503	total: 3.94s	remaining: 2.56s
182:	learn: 23.6989235	total: 3.96s	remaining: 2.53s
183:	learn: 23.6391502	total: 3.99s	remaining: 2.51s
184:	learn: 23.5860625	total: 4.01s	remaining: 2.49s
185:	learn: 23.5370458	total: 4.03s	remaining: 2.47s
186:	learn: 23.4829130	total: 4.05s	remaining: 2.45s
187:	learn: 23.4288757	total: 4.08s	remaining: 2.43s
188:	learn: 23.3690770	total: 4.1s	remaining: 2.41s
189:	learn: 23.3056629	total: 4.12s	remaining: 2.39s
190:	learn: 23.2498793	total: 4.15s	remaining: 2.37s
191:	learn: 23.1978251	total: 4.17s	remaining: 2.35s
192:	learn: 23.1405048	total: 4.2s	remaining: 2.33s
193:	learn: 23.0858217	total: 4.22s	remaining: 2.3s
194:	learn: 23.0345109	total: 4.24s	remaining: 2.28s
195:	learn: 22.9852977	total: 4.26s	remaining: 2.26s
196:	learn: 22.9320009	total: 4.28s	remaining: 2.24s
197:	learn: 22.8820432	total: 4.3s	remaining: 2.21s
198:	learn: 22.8358084	total: 4.33s	remaining: 2.2s
199:	learn: 22.7819318	total: 4.35s	remaining: 2.17s
200:	learn: 22.7307146	total: 4.37s	remaining: 2.15s
201:	learn: 22.6711968	total: 4.4s	remaining: 2.13s
202:	learn: 22.6096234	total: 4.42s	remaining: 2.11s
203:	learn: 22.5661776	total: 4.46s	remaining: 2.1s
204:	learn: 22.5174350	total: 4.48s	remaining: 2.07s
205:	learn: 22.4609572	total: 4.5s	remaining: 2.05s
206:	learn: 22.4143305	total: 4.52s	remaining: 2.03s
207:	learn: 22.3686998	total: 4.56s	remaining: 2.02s
208:	learn: 22.3251391	total: 4.58s	remaining: 1.99s
209:	learn: 22.2773061	total: 4.6s	remaining: 1.97s
210:	learn: 22.2117895	total: 4.62s	remaining: 1.95s
211:	learn: 22.1597226	total: 4.64s	remaining: 1.93s
212:	learn: 22.1146603	total: 4.66s	remaining: 1.9s
213:	learn: 22.0637131	total: 4.68s	remaining: 1.88s
214:	learn: 22.0208429	total: 4.7s	remaining: 1.86s
215:	learn: 21.9862177	total: 4.71s	remaining: 1.83s
216:	learn: 21.9331491	total: 4.74s	remaining: 1.81s
217:	learn: 21.8776205	total: 4.76s	remaining: 1.79s
218:	learn: 21.8193753	total: 4.79s	remaining: 1.77s
219:	learn: 21.7818344	total: 4.81s	remaining: 1.75s
220:	learn: 21.7317318	total: 4.83s	remaining: 1.73s
221:	learn: 21.6955181	total: 4.86s	remaining: 1.71s
222:	learn: 21.6498734	total: 4.88s	remaining: 1.68s
223:	learn: 21.6055066	total: 4.9s	remaining: 1.66s
224:	learn: 21.5432678	total: 4.91s	remaining: 1.64s
225:	learn: 21.4994308	total: 4.93s	remaining: 1.61s
226:	learn: 21.4441214	total: 4.95s	remaining: 1.59s
227:	learn: 21.3999408	total: 4.98s	remaining: 1.57s
228:	learn: 21.3597379	total: 5s	remaining: 1.55s
229:	learn: 21.3129730	total: 5.02s	remaining: 1.53s
230:	learn: 21.2683296	total: 5.04s	remaining: 1.51s
231:	learn: 21.2282909	total: 5.06s	remaining: 1.48s
232:	learn: 21.1860738	total: 5.08s	remaining: 1.46s
233:	learn: 21.1387672	total: 5.1s	remaining: 1.44s
234:	learn: 21.0939778	total: 5.12s	remaining: 1.42s
235:	learn: 21.0439583	total: 5.14s	remaining: 1.39s
236:	learn: 21.0137177	total: 5.16s	remaining: 1.37s
237:	learn: 20.9670937	total: 5.18s	remaining: 1.35s
238:	learn: 20.9126049	total: 5.2s	remaining: 1.33s
239:	learn: 20.8693031	total: 5.23s	remaining: 1.31s
240:	learn: 20.8284927	total: 5.25s	remaining: 1.28s
241:	learn: 20.7956565	total: 5.27s	remaining: 1.26s
242:	learn: 20.7607092	total: 5.29s	remaining: 1.24s
243:	learn: 20.7214592	total: 5.32s	remaining: 1.22s
244:	learn: 20.6835630	total: 5.34s	remaining: 1.2s
245:	learn: 20.6425341	total: 5.35s	remaining: 1.18s
246:	learn: 20.5974839	total: 5.37s	remaining: 1.15s
247:	learn: 20.5625745	total: 5.39s	remaining: 1.13s
248:	learn: 20.5159735	total: 5.42s	remaining: 1.11s
249:	learn: 20.4711155	total: 5.45s	remaining: 1.09s
250:	learn: 20.4299959	total: 5.47s	remaining: 1.07s
251:	learn: 20.3921730	total: 5.49s	remaining: 1.04s
252:	learn: 20.3466882	total: 5.5s	remaining: 1.02s
253:	learn: 20.3102915	total: 5.53s	remaining: 1s
254:	learn: 20.2680005	total: 5.54s	remaining: 979ms
255:	learn: 20.2302697	total: 5.55s	remaining: 954ms
256:	learn: 20.1904094	total: 5.57s	remaining: 932ms
257:	learn: 20.1474158	total: 5.59s	remaining: 910ms
258:	learn: 20.1120054	total: 5.61s	remaining: 888ms
259:	learn: 20.0690019	total: 5.63s	remaining: 866ms
260:	learn: 20.0272146	total: 5.66s	remaining: 846ms
261:	learn: 19.9859846	total: 5.68s	remaining: 825ms
262:	learn: 19.9528223	total: 5.71s	remaining: 803ms
263:	learn: 19.9163525	total: 5.73s	remaining: 781ms
264:	learn: 19.8774663	total: 5.75s	remaining: 760ms
265:	learn: 19.8406971	total: 5.77s	remaining: 738ms
266:	learn: 19.8061441	total: 5.79s	remaining: 716ms
267:	learn: 19.7704750	total: 5.81s	remaining: 694ms
268:	learn: 19.7271709	total: 5.83s	remaining: 672ms
269:	learn: 19.6914048	total: 5.86s	remaining: 651ms
270:	learn: 19.6578212	total: 5.88s	remaining: 629ms
271:	learn: 19.6316411	total: 5.9s	remaining: 608ms
272:	learn: 19.6011082	total: 5.92s	remaining: 586ms
273:	learn: 19.5645530	total: 5.94s	remaining: 564ms
274:	learn: 19.5313764	total: 5.96s	remaining: 542ms
275:	learn: 19.5004632	total: 5.98s	remaining: 520ms
276:	learn: 19.4740346	total: 6s	remaining: 498ms
277:	learn: 19.4373882	total: 6.02s	remaining: 476ms
278:	learn: 19.3922269	total: 6.04s	remaining: 455ms
279:	learn: 19.3544202	total: 6.07s	remaining: 433ms
280:	learn: 19.3170310	total: 6.09s	remaining: 412ms
281:	learn: 19.2701727	total: 6.11s	remaining: 390ms
282:	learn: 19.2333313	total: 6.13s	remaining: 368ms
283:	learn: 19.1955511	total: 6.16s	remaining: 347ms
284:	learn: 19.1494420	total: 6.17s	remaining: 325ms
285:	learn: 19.1158911	total: 6.19s	remaining: 303ms
286:	learn: 19.0857708	total: 6.21s	remaining: 281ms
287:	learn: 19.0500206	total: 6.24s	remaining: 260ms
288:	learn: 19.0160421	total: 6.26s	remaining: 238ms
289:	learn: 18.9799013	total: 6.28s	remaining: 217ms
290:	learn: 18.9493716	total: 6.3s	remaining: 195ms
291:	learn: 18.9137069	total: 6.32s	remaining: 173ms
292:	learn: 18.8853939	total: 6.34s	remaining: 151ms
293:	learn: 18.8502142	total: 6.36s	remaining: 130ms
294:	learn: 18.8230818	total: 6.38s	remaining: 108ms
295:	learn: 18.7937041	total: 6.4s	remaining: 86.4ms
296:	learn: 18.7538071	total: 6.42s	remaining: 64.8ms
297:	learn: 18.7197456	total: 6.44s	remaining: 43.2ms
298:	learn: 18.6944413	total: 6.46s	remaining: 21.6ms
299:	learn: 18.6605569	total: 6.49s	remaining: 0us
0:	learn: 47.2292747	total: 18.4ms	remaining: 5.51s
1:	learn: 47.1137681	total: 35.8ms	remaining: 5.34s
2:	learn: 46.8877712	total: 53.4ms	remaining: 5.28s
3:	learn: 46.6520173	total: 72.5ms	remaining: 5.37s
4:	learn: 46.4622380	total: 93.5ms	remaining: 5.51s
5:	learn: 46.2765728	total: 121ms	remaining: 5.92s
6:	learn: 46.1056209	total: 139ms	remaining: 5.81s
7:	learn: 45.9234243	total: 156ms	remaining: 5.7s
8:	learn: 45.7378721	total: 174ms	remaining: 5.63s
9:	learn: 45.5430935	total: 192ms	remaining: 5.58s
10:	learn: 45.4106678	total: 210ms	remaining: 5.52s
11:	learn: 45.2108101	total: 228ms	remaining: 5.47s
12:	learn: 45.0703727	total: 246ms	remaining: 5.42s
13:	learn: 44.9079969	total: 263ms	remaining: 5.38s
14:	learn: 44.7689302	total: 281ms	remaining: 5.35s
15:	learn: 44.5641436	total: 300ms	remaining: 5.33s
16:	learn: 44.3823296	total: 328ms	remaining: 5.47s
17:	learn: 44.2047235	total: 353ms	remaining: 5.53s
18:	learn: 44.0819629	total: 375ms	remaining: 5.54s
19:	learn: 43.9075686	total: 396ms	remaining: 5.54s
20:	learn: 43.7632059	total: 417ms	remaining: 5.54s
21:	learn: 43.5527859	total: 434ms	remaining: 5.49s
22:	learn: 43.3949579	total: 452ms	remaining: 5.45s
23:	learn: 43.2315351	total: 470ms	remaining: 5.4s
24:	learn: 43.0455538	total: 488ms	remaining: 5.36s
25:	learn: 42.8960642	total: 507ms	remaining: 5.35s
26:	learn: 42.7775344	total: 531ms	remaining: 5.37s
27:	learn: 42.5870674	total: 556ms	remaining: 5.4s
28:	learn: 42.4256050	total: 574ms	remaining: 5.36s
29:	learn: 42.3005825	total: 591ms	remaining: 5.32s
30:	learn: 42.1180170	total: 609ms	remaining: 5.28s
31:	learn: 42.0010738	total: 626ms	remaining: 5.25s
32:	learn: 41.8515811	total: 644ms	remaining: 5.21s
33:	learn: 41.6748749	total: 662ms	remaining: 5.18s
34:	learn: 41.5090623	total: 680ms	remaining: 5.15s
35:	learn: 41.3438035	total: 698ms	remaining: 5.12s
36:	learn: 41.1830991	total: 716ms	remaining: 5.09s
37:	learn: 41.0278172	total: 734ms	remaining: 5.06s
38:	learn: 40.9390270	total: 763ms	remaining: 5.11s
39:	learn: 40.8072766	total: 786ms	remaining: 5.11s
40:	learn: 40.6378142	total: 808ms	remaining: 5.1s
41:	learn: 40.4868345	total: 830ms	remaining: 5.1s
42:	learn: 40.3211957	total: 852ms	remaining: 5.09s
43:	learn: 40.1468776	total: 872ms	remaining: 5.07s
44:	learn: 40.0492686	total: 890ms	remaining: 5.04s
45:	learn: 39.9094880	total: 908ms	remaining: 5.01s
46:	learn: 39.7446042	total: 926ms	remaining: 4.98s
47:	learn: 39.6382809	total: 946ms	remaining: 4.97s
48:	learn: 39.5015253	total: 972ms	remaining: 4.98s
49:	learn: 39.3598146	total: 993ms	remaining: 4.96s
50:	learn: 39.2379974	total: 1.01s	remaining: 4.93s
51:	learn: 39.1555066	total: 1.03s	remaining: 4.91s
52:	learn: 39.0362667	total: 1.05s	remaining: 4.88s
53:	learn: 38.9033825	total: 1.06s	remaining: 4.85s
54:	learn: 38.7725735	total: 1.08s	remaining: 4.82s
55:	learn: 38.6588057	total: 1.1s	remaining: 4.79s
56:	learn: 38.5669979	total: 1.12s	remaining: 4.76s
57:	learn: 38.4297746	total: 1.13s	remaining: 4.73s
58:	learn: 38.3046997	total: 1.15s	remaining: 4.71s
59:	learn: 38.1473812	total: 1.18s	remaining: 4.74s
60:	learn: 37.9937397	total: 1.21s	remaining: 4.73s
61:	learn: 37.8759804	total: 1.23s	remaining: 4.71s
62:	learn: 37.7540834	total: 1.25s	remaining: 4.7s
63:	learn: 37.6209389	total: 1.27s	remaining: 4.68s
64:	learn: 37.5107057	total: 1.29s	remaining: 4.65s
65:	learn: 37.3933702	total: 1.3s	remaining: 4.63s
66:	learn: 37.2900154	total: 1.32s	remaining: 4.6s
67:	learn: 37.1101629	total: 1.34s	remaining: 4.57s
68:	learn: 36.9847784	total: 1.36s	remaining: 4.56s
69:	learn: 36.8748023	total: 1.38s	remaining: 4.55s
70:	learn: 36.7561135	total: 1.41s	remaining: 4.53s
71:	learn: 36.6354513	total: 1.42s	remaining: 4.51s
72:	learn: 36.4926346	total: 1.44s	remaining: 4.48s
73:	learn: 36.3632203	total: 1.46s	remaining: 4.46s
74:	learn: 36.2677062	total: 1.48s	remaining: 4.43s
75:	learn: 36.1856138	total: 1.5s	remaining: 4.41s
76:	learn: 36.1315196	total: 1.51s	remaining: 4.38s
77:	learn: 35.9697871	total: 1.53s	remaining: 4.36s
78:	learn: 35.8317683	total: 1.55s	remaining: 4.33s
79:	learn: 35.7309718	total: 1.57s	remaining: 4.31s
80:	learn: 35.5869137	total: 1.59s	remaining: 4.29s
81:	learn: 35.4965817	total: 1.62s	remaining: 4.3s
82:	learn: 35.3832812	total: 1.64s	remaining: 4.29s
83:	learn: 35.2980255	total: 1.66s	remaining: 4.28s
84:	learn: 35.1734948	total: 1.68s	remaining: 4.26s
85:	learn: 35.0798697	total: 1.71s	remaining: 4.25s
86:	learn: 34.9563860	total: 1.73s	remaining: 4.22s
87:	learn: 34.8243443	total: 1.74s	remaining: 4.2s
88:	learn: 34.7227632	total: 1.76s	remaining: 4.18s
89:	learn: 34.6288296	total: 1.78s	remaining: 4.16s
90:	learn: 34.5333887	total: 1.81s	remaining: 4.17s
91:	learn: 34.4148747	total: 1.84s	remaining: 4.15s
92:	learn: 34.3191495	total: 1.86s	remaining: 4.13s
93:	learn: 34.2425617	total: 1.88s	remaining: 4.11s
94:	learn: 34.1194306	total: 1.89s	remaining: 4.09s
95:	learn: 34.0163293	total: 1.91s	remaining: 4.06s
96:	learn: 33.8787842	total: 1.93s	remaining: 4.04s
97:	learn: 33.7727812	total: 1.95s	remaining: 4.02s
98:	learn: 33.6824107	total: 1.97s	remaining: 4s
99:	learn: 33.6031874	total: 1.99s	remaining: 3.98s
100:	learn: 33.4984606	total: 2.01s	remaining: 3.95s
101:	learn: 33.4102364	total: 2.04s	remaining: 3.95s
102:	learn: 33.2990334	total: 2.06s	remaining: 3.95s
103:	learn: 33.1873068	total: 2.08s	remaining: 3.93s
104:	learn: 33.0816347	total: 2.11s	remaining: 3.91s
105:	learn: 32.9783969	total: 2.13s	remaining: 3.9s
106:	learn: 32.8553088	total: 2.15s	remaining: 3.87s
107:	learn: 32.7900679	total: 2.17s	remaining: 3.85s
108:	learn: 32.6779719	total: 2.18s	remaining: 3.83s
109:	learn: 32.5714888	total: 2.2s	remaining: 3.81s
110:	learn: 32.4849083	total: 2.22s	remaining: 3.79s
111:	learn: 32.3636284	total: 2.25s	remaining: 3.77s
112:	learn: 32.2557993	total: 2.27s	remaining: 3.75s
113:	learn: 32.1576093	total: 2.29s	remaining: 3.73s
114:	learn: 32.1001268	total: 2.31s	remaining: 3.71s
115:	learn: 31.9674204	total: 2.33s	remaining: 3.69s
116:	learn: 31.8841203	total: 2.35s	remaining: 3.67s
117:	learn: 31.7636940	total: 2.36s	remaining: 3.65s
118:	learn: 31.6610992	total: 2.38s	remaining: 3.62s
119:	learn: 31.5632927	total: 2.4s	remaining: 3.6s
120:	learn: 31.4898735	total: 2.42s	remaining: 3.58s
121:	learn: 31.3784320	total: 2.45s	remaining: 3.57s
122:	learn: 31.2899921	total: 2.48s	remaining: 3.56s
123:	learn: 31.2164058	total: 2.5s	remaining: 3.55s
124:	learn: 31.1203862	total: 2.52s	remaining: 3.53s
125:	learn: 31.0376991	total: 2.54s	remaining: 3.51s
126:	learn: 30.9901053	total: 2.56s	remaining: 3.49s
127:	learn: 30.9010569	total: 2.58s	remaining: 3.47s
128:	learn: 30.7897710	total: 2.6s	remaining: 3.45s
129:	learn: 30.7083435	total: 2.62s	remaining: 3.43s
130:	learn: 30.6299800	total: 2.64s	remaining: 3.4s
131:	learn: 30.5257796	total: 2.66s	remaining: 3.38s
132:	learn: 30.4421347	total: 2.69s	remaining: 3.37s
133:	learn: 30.3697428	total: 2.71s	remaining: 3.35s
134:	learn: 30.2828797	total: 2.72s	remaining: 3.33s
135:	learn: 30.2103845	total: 2.74s	remaining: 3.31s
136:	learn: 30.1317546	total: 2.76s	remaining: 3.29s
137:	learn: 30.0400611	total: 2.78s	remaining: 3.27s
138:	learn: 29.9668046	total: 2.8s	remaining: 3.24s
139:	learn: 29.8659426	total: 2.82s	remaining: 3.22s
140:	learn: 29.7744450	total: 2.84s	remaining: 3.2s
141:	learn: 29.7048056	total: 2.86s	remaining: 3.18s
142:	learn: 29.6331674	total: 2.89s	remaining: 3.17s
143:	learn: 29.5566748	total: 2.92s	remaining: 3.16s
144:	learn: 29.4948144	total: 2.94s	remaining: 3.14s
145:	learn: 29.4086402	total: 2.96s	remaining: 3.12s
146:	learn: 29.3137860	total: 2.98s	remaining: 3.1s
147:	learn: 29.2256372	total: 3s	remaining: 3.08s
148:	learn: 29.1533470	total: 3.02s	remaining: 3.06s
149:	learn: 29.0748782	total: 3.04s	remaining: 3.04s
150:	learn: 28.9973630	total: 3.06s	remaining: 3.02s
151:	learn: 28.9139471	total: 3.08s	remaining: 3s
152:	learn: 28.8440553	total: 3.11s	remaining: 2.99s
153:	learn: 28.7627166	total: 3.13s	remaining: 2.97s
154:	learn: 28.6879888	total: 3.15s	remaining: 2.94s
155:	learn: 28.6207049	total: 3.17s	remaining: 2.92s
156:	learn: 28.5639115	total: 3.19s	remaining: 2.9s
157:	learn: 28.4647588	total: 3.21s	remaining: 2.88s
158:	learn: 28.3834803	total: 3.23s	remaining: 2.86s
159:	learn: 28.3054890	total: 3.24s	remaining: 2.84s
160:	learn: 28.2433429	total: 3.26s	remaining: 2.82s
161:	learn: 28.1559471	total: 3.29s	remaining: 2.8s
162:	learn: 28.0733026	total: 3.31s	remaining: 2.79s
163:	learn: 28.0109855	total: 3.34s	remaining: 2.77s
164:	learn: 27.9554044	total: 3.36s	remaining: 2.75s
165:	learn: 27.8906340	total: 3.38s	remaining: 2.73s
166:	learn: 27.8173011	total: 3.4s	remaining: 2.71s
167:	learn: 27.7531886	total: 3.42s	remaining: 2.69s
168:	learn: 27.6787698	total: 3.44s	remaining: 2.67s
169:	learn: 27.6117258	total: 3.46s	remaining: 2.65s
170:	learn: 27.5383897	total: 3.49s	remaining: 2.63s
171:	learn: 27.4521634	total: 3.51s	remaining: 2.62s
172:	learn: 27.3775523	total: 3.53s	remaining: 2.59s
173:	learn: 27.3197994	total: 3.55s	remaining: 2.57s
174:	learn: 27.2373041	total: 3.57s	remaining: 2.55s
175:	learn: 27.1617809	total: 3.59s	remaining: 2.53s
176:	learn: 27.0775080	total: 3.61s	remaining: 2.51s
177:	learn: 27.0160368	total: 3.63s	remaining: 2.49s
178:	learn: 26.9556472	total: 3.65s	remaining: 2.47s
179:	learn: 26.9006206	total: 3.67s	remaining: 2.45s
180:	learn: 26.8271799	total: 3.69s	remaining: 2.43s
181:	learn: 26.7535133	total: 3.72s	remaining: 2.41s
182:	learn: 26.7009660	total: 3.74s	remaining: 2.39s
183:	learn: 26.6286430	total: 3.77s	remaining: 2.37s
184:	learn: 26.5638590	total: 3.79s	remaining: 2.35s
185:	learn: 26.5110888	total: 3.81s	remaining: 2.33s
186:	learn: 26.4625783	total: 3.83s	remaining: 2.31s
187:	learn: 26.3801626	total: 3.85s	remaining: 2.29s
188:	learn: 26.2947913	total: 3.86s	remaining: 2.27s
189:	learn: 26.2441125	total: 3.88s	remaining: 2.25s
190:	learn: 26.1753138	total: 3.9s	remaining: 2.23s
191:	learn: 26.1123583	total: 3.93s	remaining: 2.21s
192:	learn: 26.0569241	total: 3.95s	remaining: 2.19s
193:	learn: 26.0252651	total: 3.97s	remaining: 2.17s
194:	learn: 25.9591040	total: 3.98s	remaining: 2.15s
195:	learn: 25.9015598	total: 4s	remaining: 2.12s
196:	learn: 25.8264017	total: 4.02s	remaining: 2.1s
197:	learn: 25.7749180	total: 4.04s	remaining: 2.08s
198:	learn: 25.7342556	total: 4.05s	remaining: 2.06s
199:	learn: 25.6780299	total: 4.07s	remaining: 2.04s
200:	learn: 25.6178238	total: 4.09s	remaining: 2.02s
201:	learn: 25.5660527	total: 4.11s	remaining: 2s
202:	learn: 25.5124572	total: 4.14s	remaining: 1.98s
203:	learn: 25.4592906	total: 4.16s	remaining: 1.96s
204:	learn: 25.3973083	total: 4.18s	remaining: 1.94s
205:	learn: 25.3439014	total: 4.21s	remaining: 1.92s
206:	learn: 25.2908108	total: 4.22s	remaining: 1.9s
207:	learn: 25.2367194	total: 4.25s	remaining: 1.88s
208:	learn: 25.1781162	total: 4.26s	remaining: 1.86s
209:	learn: 25.1353824	total: 4.28s	remaining: 1.83s
210:	learn: 25.0782001	total: 4.3s	remaining: 1.81s
211:	learn: 25.0170021	total: 4.32s	remaining: 1.79s
212:	learn: 24.9551860	total: 4.34s	remaining: 1.77s
213:	learn: 24.8923500	total: 4.37s	remaining: 1.75s
214:	learn: 24.8382280	total: 4.39s	remaining: 1.73s
215:	learn: 24.7793083	total: 4.41s	remaining: 1.71s
216:	learn: 24.7234762	total: 4.42s	remaining: 1.69s
217:	learn: 24.6700099	total: 4.44s	remaining: 1.67s
218:	learn: 24.6337862	total: 4.46s	remaining: 1.65s
219:	learn: 24.5984553	total: 4.47s	remaining: 1.63s
220:	learn: 24.5522362	total: 4.49s	remaining: 1.61s
221:	learn: 24.4915583	total: 4.51s	remaining: 1.58s
222:	learn: 24.4271589	total: 4.53s	remaining: 1.56s
223:	learn: 24.3618025	total: 4.55s	remaining: 1.54s
224:	learn: 24.3162966	total: 4.58s	remaining: 1.53s
225:	learn: 24.2603025	total: 4.61s	remaining: 1.51s
226:	learn: 24.2019761	total: 4.63s	remaining: 1.49s
227:	learn: 24.1470914	total: 4.65s	remaining: 1.47s
228:	learn: 24.0849149	total: 4.67s	remaining: 1.45s
229:	learn: 24.0504031	total: 4.69s	remaining: 1.43s
230:	learn: 24.0041816	total: 4.71s	remaining: 1.41s
231:	learn: 23.9560147	total: 4.73s	remaining: 1.39s
232:	learn: 23.9110152	total: 4.75s	remaining: 1.37s
233:	learn: 23.8654808	total: 4.78s	remaining: 1.35s
234:	learn: 23.8065999	total: 4.8s	remaining: 1.33s
235:	learn: 23.7643552	total: 4.83s	remaining: 1.31s
236:	learn: 23.7081628	total: 4.84s	remaining: 1.29s
237:	learn: 23.6734422	total: 4.86s	remaining: 1.27s
238:	learn: 23.6253676	total: 4.88s	remaining: 1.25s
239:	learn: 23.5766458	total: 4.9s	remaining: 1.23s
240:	learn: 23.5367596	total: 4.92s	remaining: 1.2s
241:	learn: 23.4841493	total: 4.94s	remaining: 1.18s
242:	learn: 23.4381238	total: 4.96s	remaining: 1.16s
243:	learn: 23.3760294	total: 4.98s	remaining: 1.14s
244:	learn: 23.3223135	total: 5.01s	remaining: 1.13s
245:	learn: 23.2808660	total: 5.04s	remaining: 1.1s
246:	learn: 23.2517652	total: 5.06s	remaining: 1.08s
247:	learn: 23.2073109	total: 5.08s	remaining: 1.06s
248:	learn: 23.1627444	total: 5.1s	remaining: 1.04s
249:	learn: 23.1280599	total: 5.11s	remaining: 1.02s
250:	learn: 23.0844833	total: 5.13s	remaining: 1s
251:	learn: 23.0396478	total: 5.15s	remaining: 981ms
252:	learn: 22.9941483	total: 5.17s	remaining: 960ms
253:	learn: 22.9587040	total: 5.19s	remaining: 940ms
254:	learn: 22.9153548	total: 5.21s	remaining: 920ms
255:	learn: 22.8753223	total: 5.23s	remaining: 900ms
256:	learn: 22.8302416	total: 5.25s	remaining: 879ms
257:	learn: 22.8014428	total: 5.27s	remaining: 858ms
258:	learn: 22.7508273	total: 5.29s	remaining: 837ms
259:	learn: 22.7027973	total: 5.3s	remaining: 816ms
260:	learn: 22.6580173	total: 5.32s	remaining: 795ms
261:	learn: 22.6114698	total: 5.34s	remaining: 775ms
262:	learn: 22.5630143	total: 5.37s	remaining: 755ms
263:	learn: 22.5246133	total: 5.39s	remaining: 735ms
264:	learn: 22.4794591	total: 5.41s	remaining: 715ms
265:	learn: 22.4325423	total: 5.44s	remaining: 696ms
266:	learn: 22.3846787	total: 5.47s	remaining: 676ms
267:	learn: 22.3343826	total: 5.5s	remaining: 656ms
268:	learn: 22.3004833	total: 5.52s	remaining: 636ms
269:	learn: 22.2581479	total: 5.54s	remaining: 616ms
270:	learn: 22.2113344	total: 5.56s	remaining: 595ms
271:	learn: 22.1588663	total: 5.58s	remaining: 575ms
272:	learn: 22.1229095	total: 5.61s	remaining: 554ms
273:	learn: 22.0867775	total: 5.63s	remaining: 535ms
274:	learn: 22.0438705	total: 5.66s	remaining: 514ms
275:	learn: 21.9925989	total: 5.68s	remaining: 494ms
276:	learn: 21.9552337	total: 5.7s	remaining: 474ms
277:	learn: 21.9070985	total: 5.72s	remaining: 453ms
278:	learn: 21.8696456	total: 5.75s	remaining: 432ms
279:	learn: 21.8337015	total: 5.77s	remaining: 412ms
280:	learn: 21.7979403	total: 5.79s	remaining: 391ms
281:	learn: 21.7595376	total: 5.81s	remaining: 371ms
282:	learn: 21.7103730	total: 5.83s	remaining: 350ms
283:	learn: 21.6681361	total: 5.86s	remaining: 330ms
284:	learn: 21.6371877	total: 5.88s	remaining: 310ms
285:	learn: 21.5892481	total: 5.91s	remaining: 289ms
286:	learn: 21.5478948	total: 5.94s	remaining: 269ms
287:	learn: 21.5242128	total: 5.96s	remaining: 248ms
288:	learn: 21.4840092	total: 5.98s	remaining: 228ms
289:	learn: 21.4401806	total: 6s	remaining: 207ms
290:	learn: 21.3937706	total: 6.02s	remaining: 186ms
291:	learn: 21.3488985	total: 6.04s	remaining: 166ms
292:	learn: 21.3093605	total: 6.08s	remaining: 145ms
293:	learn: 21.2646475	total: 6.1s	remaining: 125ms
294:	learn: 21.2309409	total: 6.12s	remaining: 104ms
295:	learn: 21.1908660	total: 6.14s	remaining: 83ms
296:	learn: 21.1493584	total: 6.16s	remaining: 62.3ms
297:	learn: 21.1036105	total: 6.19s	remaining: 41.6ms
298:	learn: 21.0591420	total: 6.21s	remaining: 20.8ms
299:	learn: 21.0040336	total: 6.23s	remaining: 0us
0:	learn: 46.7964202	total: 22.7ms	remaining: 6.79s
1:	learn: 46.6749466	total: 43.5ms	remaining: 6.48s
2:	learn: 46.5196071	total: 63.6ms	remaining: 6.29s
3:	learn: 46.3626411	total: 83.7ms	remaining: 6.19s
4:	learn: 46.1525071	total: 104ms	remaining: 6.11s
5:	learn: 45.9858740	total: 123ms	remaining: 6.04s
6:	learn: 45.8120368	total: 142ms	remaining: 5.96s
7:	learn: 45.6293425	total: 169ms	remaining: 6.18s
8:	learn: 45.4447656	total: 191ms	remaining: 6.19s
9:	learn: 45.2689788	total: 210ms	remaining: 6.09s
10:	learn: 45.0747765	total: 229ms	remaining: 6.01s
11:	learn: 44.8710435	total: 248ms	remaining: 5.95s
12:	learn: 44.7268382	total: 266ms	remaining: 5.88s
13:	learn: 44.5467591	total: 287ms	remaining: 5.86s
14:	learn: 44.3851031	total: 306ms	remaining: 5.81s
15:	learn: 44.2329591	total: 325ms	remaining: 5.76s
16:	learn: 44.0406244	total: 343ms	remaining: 5.71s
17:	learn: 43.8785108	total: 363ms	remaining: 5.69s
18:	learn: 43.7471362	total: 384ms	remaining: 5.68s
19:	learn: 43.5591007	total: 410ms	remaining: 5.74s
20:	learn: 43.4018255	total: 436ms	remaining: 5.8s
21:	learn: 43.2292233	total: 458ms	remaining: 5.79s
22:	learn: 43.0953062	total: 483ms	remaining: 5.81s
23:	learn: 42.9509025	total: 506ms	remaining: 5.81s
24:	learn: 42.8040888	total: 525ms	remaining: 5.77s
25:	learn: 42.6059536	total: 543ms	remaining: 5.73s
26:	learn: 42.4719315	total: 563ms	remaining: 5.69s
27:	learn: 42.3164463	total: 583ms	remaining: 5.66s
28:	learn: 42.1322069	total: 603ms	remaining: 5.63s
29:	learn: 41.9730185	total: 628ms	remaining: 5.65s
30:	learn: 41.8494577	total: 649ms	remaining: 5.63s
31:	learn: 41.7443412	total: 667ms	remaining: 5.59s
32:	learn: 41.6027545	total: 686ms	remaining: 5.55s
33:	learn: 41.4301743	total: 704ms	remaining: 5.51s
34:	learn: 41.2736962	total: 723ms	remaining: 5.47s
35:	learn: 41.1334085	total: 742ms	remaining: 5.44s
36:	learn: 41.0072606	total: 760ms	remaining: 5.4s
37:	learn: 40.8619217	total: 781ms	remaining: 5.38s
38:	learn: 40.7354459	total: 803ms	remaining: 5.37s
39:	learn: 40.6156413	total: 827ms	remaining: 5.38s
40:	learn: 40.4577265	total: 851ms	remaining: 5.38s
41:	learn: 40.3234616	total: 872ms	remaining: 5.36s
42:	learn: 40.1899266	total: 893ms	remaining: 5.33s
43:	learn: 40.0634209	total: 914ms	remaining: 5.32s
44:	learn: 39.9305166	total: 935ms	remaining: 5.3s
45:	learn: 39.7845871	total: 955ms	remaining: 5.27s
46:	learn: 39.6621696	total: 974ms	remaining: 5.24s
47:	learn: 39.5551825	total: 993ms	remaining: 5.21s
48:	learn: 39.4351591	total: 1.01s	remaining: 5.18s
49:	learn: 39.3164633	total: 1.03s	remaining: 5.16s
50:	learn: 39.1747677	total: 1.06s	remaining: 5.17s
51:	learn: 39.1100564	total: 1.08s	remaining: 5.15s
52:	learn: 38.9606936	total: 1.1s	remaining: 5.12s
53:	learn: 38.8660863	total: 1.12s	remaining: 5.09s
54:	learn: 38.7391714	total: 1.14s	remaining: 5.06s
55:	learn: 38.6076997	total: 1.15s	remaining: 5.03s
56:	learn: 38.4980503	total: 1.17s	remaining: 5s
57:	learn: 38.3620320	total: 1.19s	remaining: 4.97s
58:	learn: 38.2397585	total: 1.21s	remaining: 4.94s
59:	learn: 38.1028241	total: 1.23s	remaining: 4.91s
60:	learn: 37.9510740	total: 1.25s	remaining: 4.9s
61:	learn: 37.8520252	total: 1.28s	remaining: 4.91s
62:	learn: 37.7243846	total: 1.3s	remaining: 4.9s
63:	learn: 37.6100254	total: 1.32s	remaining: 4.88s
64:	learn: 37.4967571	total: 1.35s	remaining: 4.87s
65:	learn: 37.3815739	total: 1.37s	remaining: 4.85s
66:	learn: 37.2889210	total: 1.39s	remaining: 4.83s
67:	learn: 37.1375228	total: 1.41s	remaining: 4.8s
68:	learn: 37.0348038	total: 1.43s	remaining: 4.77s
69:	learn: 36.9144977	total: 1.45s	remaining: 4.76s
70:	learn: 36.7863146	total: 1.47s	remaining: 4.74s
71:	learn: 36.6689594	total: 1.5s	remaining: 4.74s
72:	learn: 36.5577194	total: 1.52s	remaining: 4.72s
73:	learn: 36.4519888	total: 1.54s	remaining: 4.69s
74:	learn: 36.3455631	total: 1.55s	remaining: 4.67s
75:	learn: 36.2420832	total: 1.57s	remaining: 4.64s
76:	learn: 36.1067531	total: 1.59s	remaining: 4.62s
77:	learn: 35.9820199	total: 1.61s	remaining: 4.59s
78:	learn: 35.9020954	total: 1.63s	remaining: 4.56s
79:	learn: 35.8129097	total: 1.65s	remaining: 4.54s
80:	learn: 35.7004440	total: 1.67s	remaining: 4.51s
81:	learn: 35.5596927	total: 1.69s	remaining: 4.49s
82:	learn: 35.4487136	total: 1.72s	remaining: 4.49s
83:	learn: 35.3544578	total: 1.74s	remaining: 4.48s
84:	learn: 35.2493319	total: 1.76s	remaining: 4.47s
85:	learn: 35.1321057	total: 1.79s	remaining: 4.45s
86:	learn: 35.0336669	total: 1.81s	remaining: 4.42s
87:	learn: 34.9440442	total: 1.82s	remaining: 4.4s
88:	learn: 34.8468790	total: 1.84s	remaining: 4.37s
89:	learn: 34.7374788	total: 1.86s	remaining: 4.35s
90:	learn: 34.6760377	total: 1.88s	remaining: 4.32s
91:	learn: 34.5864691	total: 1.9s	remaining: 4.3s
92:	learn: 34.4777052	total: 1.93s	remaining: 4.29s
93:	learn: 34.3675910	total: 1.95s	remaining: 4.27s
94:	learn: 34.2620295	total: 1.97s	remaining: 4.25s
95:	learn: 34.1738876	total: 1.99s	remaining: 4.22s
96:	learn: 34.0520382	total: 2s	remaining: 4.2s
97:	learn: 33.9327288	total: 2.02s	remaining: 4.17s
98:	learn: 33.8784543	total: 2.04s	remaining: 4.15s
99:	learn: 33.7855568	total: 2.06s	remaining: 4.13s
100:	learn: 33.6996591	total: 2.08s	remaining: 4.1s
101:	learn: 33.6005603	total: 2.1s	remaining: 4.08s
102:	learn: 33.4838458	total: 2.13s	remaining: 4.07s
103:	learn: 33.3753606	total: 2.15s	remaining: 4.06s
104:	learn: 33.2849056	total: 2.18s	remaining: 4.04s
105:	learn: 33.1669792	total: 2.2s	remaining: 4.02s
106:	learn: 33.0841006	total: 2.22s	remaining: 4.01s
107:	learn: 33.0068992	total: 2.24s	remaining: 3.99s
108:	learn: 32.8941817	total: 2.26s	remaining: 3.96s
109:	learn: 32.7877064	total: 2.28s	remaining: 3.94s
110:	learn: 32.6570408	total: 2.3s	remaining: 3.92s
111:	learn: 32.5471534	total: 2.32s	remaining: 3.89s
112:	learn: 32.4576663	total: 2.34s	remaining: 3.87s
113:	learn: 32.3616209	total: 2.37s	remaining: 3.86s
114:	learn: 32.2873913	total: 2.39s	remaining: 3.84s
115:	learn: 32.1851076	total: 2.41s	remaining: 3.82s
116:	learn: 32.1116710	total: 2.42s	remaining: 3.79s
117:	learn: 32.0062324	total: 2.44s	remaining: 3.77s
118:	learn: 31.9056875	total: 2.46s	remaining: 3.74s
119:	learn: 31.8300075	total: 2.48s	remaining: 3.72s
120:	learn: 31.7661011	total: 2.5s	remaining: 3.69s
121:	learn: 31.6766467	total: 2.51s	remaining: 3.67s
122:	learn: 31.5882617	total: 2.53s	remaining: 3.64s
123:	learn: 31.5244840	total: 2.55s	remaining: 3.62s
124:	learn: 31.4156467	total: 2.58s	remaining: 3.62s
125:	learn: 31.3465983	total: 2.61s	remaining: 3.6s
126:	learn: 31.2633572	total: 2.63s	remaining: 3.58s
127:	learn: 31.1744619	total: 2.65s	remaining: 3.56s
128:	learn: 31.0809501	total: 2.67s	remaining: 3.54s
129:	learn: 31.0046918	total: 2.69s	remaining: 3.51s
130:	learn: 30.9219673	total: 2.7s	remaining: 3.49s
131:	learn: 30.8264194	total: 2.72s	remaining: 3.46s
132:	learn: 30.7427831	total: 2.74s	remaining: 3.44s
133:	learn: 30.6607780	total: 2.76s	remaining: 3.42s
134:	learn: 30.5904777	total: 2.78s	remaining: 3.4s
135:	learn: 30.4964054	total: 2.81s	remaining: 3.38s
136:	learn: 30.4243732	total: 2.82s	remaining: 3.36s
137:	learn: 30.3385417	total: 2.84s	remaining: 3.33s
138:	learn: 30.2929859	total: 2.86s	remaining: 3.31s
139:	learn: 30.2338712	total: 2.88s	remaining: 3.29s
140:	learn: 30.1535064	total: 2.89s	remaining: 3.26s
141:	learn: 30.0753981	total: 2.91s	remaining: 3.24s
142:	learn: 30.0084260	total: 2.93s	remaining: 3.22s
143:	learn: 29.9286569	total: 2.95s	remaining: 3.19s
144:	learn: 29.8422727	total: 2.96s	remaining: 3.17s
145:	learn: 29.7585802	total: 2.98s	remaining: 3.15s
146:	learn: 29.6822944	total: 3.02s	remaining: 3.14s
147:	learn: 29.5859529	total: 3.04s	remaining: 3.12s
148:	learn: 29.5215467	total: 3.06s	remaining: 3.1s
149:	learn: 29.4500431	total: 3.08s	remaining: 3.08s
150:	learn: 29.3932562	total: 3.1s	remaining: 3.06s
151:	learn: 29.3240790	total: 3.12s	remaining: 3.04s
152:	learn: 29.2610671	total: 3.14s	remaining: 3.01s
153:	learn: 29.1802115	total: 3.15s	remaining: 2.99s
154:	learn: 29.1136141	total: 3.17s	remaining: 2.97s
155:	learn: 29.0345869	total: 3.19s	remaining: 2.95s
156:	learn: 28.9850348	total: 3.22s	remaining: 2.93s
157:	learn: 28.8851980	total: 3.24s	remaining: 2.91s
158:	learn: 28.8395883	total: 3.26s	remaining: 2.89s
159:	learn: 28.7878426	total: 3.27s	remaining: 2.86s
160:	learn: 28.7282585	total: 3.29s	remaining: 2.84s
161:	learn: 28.6672531	total: 3.31s	remaining: 2.82s
162:	learn: 28.6136679	total: 3.33s	remaining: 2.8s
163:	learn: 28.5473854	total: 3.34s	remaining: 2.77s
164:	learn: 28.4604501	total: 3.36s	remaining: 2.75s
165:	learn: 28.3881088	total: 3.38s	remaining: 2.73s
166:	learn: 28.3336157	total: 3.4s	remaining: 2.71s
167:	learn: 28.2747062	total: 3.42s	remaining: 2.69s
168:	learn: 28.1889373	total: 3.46s	remaining: 2.68s
169:	learn: 28.1372229	total: 3.48s	remaining: 2.66s
170:	learn: 28.0741485	total: 3.5s	remaining: 2.64s
171:	learn: 28.0103769	total: 3.52s	remaining: 2.62s
172:	learn: 27.9436363	total: 3.54s	remaining: 2.6s
173:	learn: 27.8861266	total: 3.56s	remaining: 2.58s
174:	learn: 27.8248371	total: 3.58s	remaining: 2.55s
175:	learn: 27.7841392	total: 3.59s	remaining: 2.53s
176:	learn: 27.7240247	total: 3.62s	remaining: 2.51s
177:	learn: 27.6623438	total: 3.64s	remaining: 2.49s
178:	learn: 27.6125629	total: 3.66s	remaining: 2.47s
179:	learn: 27.5437302	total: 3.67s	remaining: 2.45s
180:	learn: 27.4760159	total: 3.69s	remaining: 2.43s
181:	learn: 27.4112750	total: 3.71s	remaining: 2.4s
182:	learn: 27.3525236	total: 3.73s	remaining: 2.38s
183:	learn: 27.2883901	total: 3.75s	remaining: 2.36s
184:	learn: 27.2333393	total: 3.76s	remaining: 2.34s
185:	learn: 27.1746343	total: 3.78s	remaining: 2.32s
186:	learn: 27.1199014	total: 3.8s	remaining: 2.3s
187:	learn: 27.0416060	total: 3.82s	remaining: 2.27s
188:	learn: 26.9656521	total: 3.84s	remaining: 2.25s
189:	learn: 26.9181723	total: 3.87s	remaining: 2.24s
190:	learn: 26.8564162	total: 3.89s	remaining: 2.22s
191:	learn: 26.8059857	total: 3.91s	remaining: 2.2s
192:	learn: 26.7509662	total: 3.94s	remaining: 2.18s
193:	learn: 26.7165506	total: 3.96s	remaining: 2.16s
194:	learn: 26.6484732	total: 3.98s	remaining: 2.14s
195:	learn: 26.5742624	total: 4s	remaining: 2.12s
196:	learn: 26.5045055	total: 4.03s	remaining: 2.1s
197:	learn: 26.4505796	total: 4.05s	remaining: 2.09s
198:	learn: 26.3862661	total: 4.08s	remaining: 2.07s
199:	learn: 26.3297138	total: 4.1s	remaining: 2.05s
200:	learn: 26.2696953	total: 4.12s	remaining: 2.03s
201:	learn: 26.1901363	total: 4.14s	remaining: 2.01s
202:	learn: 26.1305031	total: 4.16s	remaining: 1.99s
203:	learn: 26.0796788	total: 4.18s	remaining: 1.97s
204:	learn: 26.0228886	total: 4.2s	remaining: 1.95s
205:	learn: 25.9654115	total: 4.22s	remaining: 1.93s
206:	learn: 25.9201366	total: 4.25s	remaining: 1.91s
207:	learn: 25.8748210	total: 4.27s	remaining: 1.89s
208:	learn: 25.8189189	total: 4.3s	remaining: 1.87s
209:	learn: 25.7529170	total: 4.32s	remaining: 1.85s
210:	learn: 25.7000451	total: 4.34s	remaining: 1.83s
211:	learn: 25.6660530	total: 4.37s	remaining: 1.81s
212:	learn: 25.6001686	total: 4.39s	remaining: 1.79s
213:	learn: 25.5742396	total: 4.41s	remaining: 1.77s
214:	learn: 25.5487064	total: 4.43s	remaining: 1.75s
215:	learn: 25.4995003	total: 4.46s	remaining: 1.73s
216:	learn: 25.4597064	total: 4.49s	remaining: 1.72s
217:	learn: 25.4094124	total: 4.52s	remaining: 1.7s
218:	learn: 25.3537056	total: 4.54s	remaining: 1.68s
219:	learn: 25.3050115	total: 4.56s	remaining: 1.66s
220:	learn: 25.2493893	total: 4.58s	remaining: 1.64s
221:	learn: 25.2078913	total: 4.6s	remaining: 1.62s
222:	learn: 25.1427704	total: 4.62s	remaining: 1.59s
223:	learn: 25.0921531	total: 4.64s	remaining: 1.57s
224:	learn: 25.0564716	total: 4.66s	remaining: 1.55s
225:	learn: 25.0127399	total: 4.69s	remaining: 1.53s
226:	learn: 24.9498509	total: 4.71s	remaining: 1.52s
227:	learn: 24.8856642	total: 4.74s	remaining: 1.5s
228:	learn: 24.8402617	total: 4.77s	remaining: 1.48s
229:	learn: 24.7974291	total: 4.79s	remaining: 1.46s
230:	learn: 24.7466757	total: 4.81s	remaining: 1.44s
231:	learn: 24.6994959	total: 4.83s	remaining: 1.42s
232:	learn: 24.6530658	total: 4.85s	remaining: 1.4s
233:	learn: 24.6024693	total: 4.88s	remaining: 1.38s
234:	learn: 24.5532250	total: 4.9s	remaining: 1.36s
235:	learn: 24.5121346	total: 4.93s	remaining: 1.34s
236:	learn: 24.4649666	total: 4.95s	remaining: 1.31s
237:	learn: 24.4205420	total: 4.97s	remaining: 1.29s
238:	learn: 24.3721893	total: 5s	remaining: 1.27s
239:	learn: 24.3288875	total: 5.02s	remaining: 1.25s
240:	learn: 24.2858930	total: 5.04s	remaining: 1.23s
241:	learn: 24.2426238	total: 5.06s	remaining: 1.21s
242:	learn: 24.2022960	total: 5.08s	remaining: 1.19s
243:	learn: 24.1354051	total: 5.1s	remaining: 1.17s
244:	learn: 24.0773236	total: 5.13s	remaining: 1.15s
245:	learn: 24.0318702	total: 5.16s	remaining: 1.13s
246:	learn: 24.0008127	total: 5.18s	remaining: 1.11s
247:	learn: 23.9582968	total: 5.2s	remaining: 1.09s
248:	learn: 23.9175164	total: 5.22s	remaining: 1.07s
249:	learn: 23.8689671	total: 5.25s	remaining: 1.05s
250:	learn: 23.8295906	total: 5.27s	remaining: 1.03s
251:	learn: 23.7911866	total: 5.29s	remaining: 1.01s
252:	learn: 23.7516339	total: 5.32s	remaining: 988ms
253:	learn: 23.7005912	total: 5.34s	remaining: 968ms
254:	learn: 23.6697490	total: 5.37s	remaining: 947ms
255:	learn: 23.6190458	total: 5.39s	remaining: 926ms
256:	learn: 23.5602336	total: 5.41s	remaining: 905ms
257:	learn: 23.5138893	total: 5.43s	remaining: 884ms
258:	learn: 23.4696303	total: 5.45s	remaining: 863ms
259:	learn: 23.4264526	total: 5.47s	remaining: 842ms
260:	learn: 23.3701939	total: 5.5s	remaining: 822ms
261:	learn: 23.3284725	total: 5.52s	remaining: 801ms
262:	learn: 23.2913057	total: 5.55s	remaining: 780ms
263:	learn: 23.2530105	total: 5.58s	remaining: 761ms
264:	learn: 23.2040785	total: 5.6s	remaining: 740ms
265:	learn: 23.1585944	total: 5.62s	remaining: 719ms
266:	learn: 23.1196334	total: 5.65s	remaining: 698ms
267:	learn: 23.0746189	total: 5.67s	remaining: 677ms
268:	learn: 23.0474287	total: 5.69s	remaining: 656ms
269:	learn: 23.0085360	total: 5.71s	remaining: 635ms
270:	learn: 22.9578501	total: 5.73s	remaining: 613ms
271:	learn: 22.9186734	total: 5.76s	remaining: 593ms
272:	learn: 22.8754252	total: 5.79s	remaining: 573ms
273:	learn: 22.8383574	total: 5.81s	remaining: 551ms
274:	learn: 22.7915522	total: 5.83s	remaining: 530ms
275:	learn: 22.7453961	total: 5.85s	remaining: 509ms
276:	learn: 22.7069125	total: 5.87s	remaining: 487ms
277:	learn: 22.6659337	total: 5.89s	remaining: 466ms
278:	learn: 22.6294138	total: 5.91s	remaining: 445ms
279:	learn: 22.6092117	total: 5.93s	remaining: 424ms
280:	learn: 22.5574720	total: 5.95s	remaining: 403ms
281:	learn: 22.5256539	total: 5.99s	remaining: 382ms
282:	learn: 22.4696840	total: 6.01s	remaining: 361ms
283:	learn: 22.4334836	total: 6.04s	remaining: 340ms
284:	learn: 22.3942731	total: 6.06s	remaining: 319ms
285:	learn: 22.3623275	total: 6.08s	remaining: 298ms
286:	learn: 22.3367243	total: 6.1s	remaining: 277ms
287:	learn: 22.2973276	total: 6.13s	remaining: 255ms
288:	learn: 22.2549274	total: 6.15s	remaining: 234ms
289:	learn: 22.2130222	total: 6.17s	remaining: 213ms
290:	learn: 22.1766238	total: 6.2s	remaining: 192ms
291:	learn: 22.1317070	total: 6.22s	remaining: 171ms
292:	learn: 22.0826530	total: 6.25s	remaining: 149ms
293:	learn: 22.0432673	total: 6.27s	remaining: 128ms
294:	learn: 22.0034045	total: 6.29s	remaining: 107ms
295:	learn: 21.9621209	total: 6.31s	remaining: 85.3ms
296:	learn: 21.9293071	total: 6.33s	remaining: 64ms
297:	learn: 21.8936209	total: 6.35s	remaining: 42.6ms
298:	learn: 21.8559823	total: 6.37s	remaining: 21.3ms
299:	learn: 21.8222811	total: 6.41s	remaining: 0us
0:	learn: 47.4415069	total: 18.6ms	remaining: 5.57s
1:	learn: 47.3006845	total: 37.9ms	remaining: 5.64s
2:	learn: 47.1143281	total: 56ms	remaining: 5.54s
3:	learn: 46.9283740	total: 74.5ms	remaining: 5.51s
4:	learn: 46.7341954	total: 96ms	remaining: 5.67s
5:	learn: 46.5805151	total: 122ms	remaining: 5.99s
6:	learn: 46.4123848	total: 146ms	remaining: 6.09s
7:	learn: 46.2536787	total: 165ms	remaining: 6.03s
8:	learn: 46.0837896	total: 184ms	remaining: 5.96s
9:	learn: 45.9137595	total: 204ms	remaining: 5.93s
10:	learn: 45.7301998	total: 223ms	remaining: 5.86s
11:	learn: 45.5416840	total: 241ms	remaining: 5.79s
12:	learn: 45.4112787	total: 260ms	remaining: 5.73s
13:	learn: 45.2251336	total: 278ms	remaining: 5.69s
14:	learn: 45.0751692	total: 298ms	remaining: 5.65s
15:	learn: 44.9052947	total: 317ms	remaining: 5.63s
16:	learn: 44.7026126	total: 338ms	remaining: 5.63s
17:	learn: 44.6155081	total: 369ms	remaining: 5.78s
18:	learn: 44.4655418	total: 390ms	remaining: 5.77s
19:	learn: 44.2979483	total: 412ms	remaining: 5.77s
20:	learn: 44.1286400	total: 433ms	remaining: 5.75s
21:	learn: 43.9664148	total: 455ms	remaining: 5.75s
22:	learn: 43.8135181	total: 475ms	remaining: 5.71s
23:	learn: 43.6355559	total: 493ms	remaining: 5.67s
24:	learn: 43.4946230	total: 512ms	remaining: 5.63s
25:	learn: 43.3171994	total: 530ms	remaining: 5.59s
26:	learn: 43.1732515	total: 549ms	remaining: 5.55s
27:	learn: 43.0148739	total: 578ms	remaining: 5.62s
28:	learn: 42.8331813	total: 601ms	remaining: 5.62s
29:	learn: 42.7046557	total: 620ms	remaining: 5.58s
30:	learn: 42.5783949	total: 639ms	remaining: 5.54s
31:	learn: 42.4510038	total: 658ms	remaining: 5.51s
32:	learn: 42.3077215	total: 677ms	remaining: 5.47s
33:	learn: 42.1571143	total: 696ms	remaining: 5.44s
34:	learn: 41.9922134	total: 715ms	remaining: 5.41s
35:	learn: 41.8225864	total: 734ms	remaining: 5.38s
36:	learn: 41.6667248	total: 755ms	remaining: 5.36s
37:	learn: 41.5268861	total: 786ms	remaining: 5.42s
38:	learn: 41.3711052	total: 812ms	remaining: 5.43s
39:	learn: 41.2537279	total: 832ms	remaining: 5.41s
40:	learn: 41.0996028	total: 852ms	remaining: 5.38s
41:	learn: 40.9627503	total: 874ms	remaining: 5.37s
42:	learn: 40.7854288	total: 895ms	remaining: 5.35s
43:	learn: 40.6594779	total: 913ms	remaining: 5.31s
44:	learn: 40.5841980	total: 932ms	remaining: 5.28s
45:	learn: 40.4345303	total: 954ms	remaining: 5.27s
46:	learn: 40.3142398	total: 983ms	remaining: 5.29s
47:	learn: 40.1876415	total: 1s	remaining: 5.27s
48:	learn: 40.1055059	total: 1.02s	remaining: 5.24s
49:	learn: 40.0158836	total: 1.04s	remaining: 5.21s
50:	learn: 39.8907429	total: 1.06s	remaining: 5.18s
51:	learn: 39.8179547	total: 1.08s	remaining: 5.14s
52:	learn: 39.6670905	total: 1.1s	remaining: 5.12s
53:	learn: 39.5083620	total: 1.12s	remaining: 5.09s
54:	learn: 39.4005935	total: 1.14s	remaining: 5.06s
55:	learn: 39.3015087	total: 1.16s	remaining: 5.04s
56:	learn: 39.1874325	total: 1.18s	remaining: 5.02s
57:	learn: 39.0635291	total: 1.21s	remaining: 5.03s
58:	learn: 38.9510641	total: 1.23s	remaining: 5.02s
59:	learn: 38.7926837	total: 1.25s	remaining: 5s
60:	learn: 38.6657937	total: 1.27s	remaining: 4.98s
61:	learn: 38.5434418	total: 1.29s	remaining: 4.97s
62:	learn: 38.4354431	total: 1.31s	remaining: 4.95s
63:	learn: 38.3052083	total: 1.33s	remaining: 4.92s
64:	learn: 38.1568327	total: 1.35s	remaining: 4.89s
65:	learn: 38.0583217	total: 1.37s	remaining: 4.87s
66:	learn: 37.9408835	total: 1.39s	remaining: 4.85s
67:	learn: 37.7937886	total: 1.42s	remaining: 4.85s
68:	learn: 37.6688608	total: 1.44s	remaining: 4.83s
69:	learn: 37.5513140	total: 1.46s	remaining: 4.8s
70:	learn: 37.4202612	total: 1.48s	remaining: 4.77s
71:	learn: 37.2921279	total: 1.5s	remaining: 4.75s
72:	learn: 37.1772452	total: 1.52s	remaining: 4.72s
73:	learn: 37.0489596	total: 1.54s	remaining: 4.7s
74:	learn: 36.9550880	total: 1.56s	remaining: 4.67s
75:	learn: 36.8577046	total: 1.58s	remaining: 4.65s
76:	learn: 36.7231017	total: 1.6s	remaining: 4.63s
77:	learn: 36.5943125	total: 1.62s	remaining: 4.62s
78:	learn: 36.5307898	total: 1.65s	remaining: 4.62s
79:	learn: 36.4437731	total: 1.67s	remaining: 4.6s
80:	learn: 36.3490643	total: 1.69s	remaining: 4.58s
81:	learn: 36.2577345	total: 1.72s	remaining: 4.56s
82:	learn: 36.1427001	total: 1.74s	remaining: 4.54s
83:	learn: 36.0470492	total: 1.75s	remaining: 4.51s
84:	learn: 35.9311830	total: 1.77s	remaining: 4.48s
85:	learn: 35.8089285	total: 1.79s	remaining: 4.45s
86:	learn: 35.6839931	total: 1.81s	remaining: 4.43s
87:	learn: 35.5685635	total: 1.83s	remaining: 4.42s
88:	learn: 35.4589708	total: 1.86s	remaining: 4.4s
89:	learn: 35.3460701	total: 1.88s	remaining: 4.38s
90:	learn: 35.2309386	total: 1.9s	remaining: 4.36s
91:	learn: 35.1276002	total: 1.92s	remaining: 4.33s
92:	learn: 35.0010975	total: 1.94s	remaining: 4.31s
93:	learn: 34.8884542	total: 1.96s	remaining: 4.29s
94:	learn: 34.7691640	total: 1.98s	remaining: 4.27s
95:	learn: 34.6613410	total: 2s	remaining: 4.25s
96:	learn: 34.5362927	total: 2.02s	remaining: 4.23s
97:	learn: 34.3937090	total: 2.04s	remaining: 4.21s
98:	learn: 34.2801628	total: 2.07s	remaining: 4.21s
99:	learn: 34.2120760	total: 2.1s	remaining: 4.19s
100:	learn: 34.1115527	total: 2.12s	remaining: 4.17s
101:	learn: 34.0012057	total: 2.14s	remaining: 4.15s
102:	learn: 33.9102183	total: 2.16s	remaining: 4.13s
103:	learn: 33.8045324	total: 2.18s	remaining: 4.11s
104:	learn: 33.7166413	total: 2.2s	remaining: 4.09s
105:	learn: 33.6325957	total: 2.22s	remaining: 4.07s
106:	learn: 33.5361026	total: 2.24s	remaining: 4.04s
107:	learn: 33.4416327	total: 2.26s	remaining: 4.02s
108:	learn: 33.3573368	total: 2.29s	remaining: 4.01s
109:	learn: 33.2576884	total: 2.31s	remaining: 3.99s
110:	learn: 33.1601056	total: 2.33s	remaining: 3.96s
111:	learn: 33.0573494	total: 2.34s	remaining: 3.94s
112:	learn: 32.9654874	total: 2.36s	remaining: 3.91s
113:	learn: 32.8616446	total: 2.38s	remaining: 3.88s
114:	learn: 32.7771282	total: 2.4s	remaining: 3.86s
115:	learn: 32.6747736	total: 2.42s	remaining: 3.83s
116:	learn: 32.6120205	total: 2.43s	remaining: 3.81s
117:	learn: 32.4978307	total: 2.45s	remaining: 3.78s
118:	learn: 32.4088995	total: 2.47s	remaining: 3.76s
119:	learn: 32.3206257	total: 2.5s	remaining: 3.75s
120:	learn: 32.2589963	total: 2.52s	remaining: 3.73s
121:	learn: 32.1960869	total: 2.54s	remaining: 3.71s
122:	learn: 32.1098306	total: 2.56s	remaining: 3.69s
123:	learn: 32.0282147	total: 2.59s	remaining: 3.67s
124:	learn: 31.9607470	total: 2.6s	remaining: 3.65s
125:	learn: 31.8661652	total: 2.62s	remaining: 3.62s
126:	learn: 31.7914736	total: 2.64s	remaining: 3.6s
127:	learn: 31.7027962	total: 2.66s	remaining: 3.57s
128:	learn: 31.6202341	total: 2.68s	remaining: 3.55s
129:	learn: 31.5452903	total: 2.71s	remaining: 3.54s
130:	learn: 31.4704576	total: 2.73s	remaining: 3.52s
131:	learn: 31.3608484	total: 2.74s	remaining: 3.49s
132:	learn: 31.3006478	total: 2.76s	remaining: 3.47s
133:	learn: 31.2179039	total: 2.78s	remaining: 3.44s
134:	learn: 31.1319791	total: 2.8s	remaining: 3.42s
135:	learn: 31.0340141	total: 2.81s	remaining: 3.4s
136:	learn: 30.9625342	total: 2.83s	remaining: 3.37s
137:	learn: 30.8815727	total: 2.85s	remaining: 3.35s
138:	learn: 30.8073667	total: 2.87s	remaining: 3.32s
139:	learn: 30.7388985	total: 2.89s	remaining: 3.3s
140:	learn: 30.6649364	total: 2.91s	remaining: 3.29s
141:	learn: 30.5932927	total: 2.94s	remaining: 3.27s
142:	learn: 30.5299209	total: 2.96s	remaining: 3.25s
143:	learn: 30.4659211	total: 2.98s	remaining: 3.23s
144:	learn: 30.3843278	total: 3s	remaining: 3.21s
145:	learn: 30.3264561	total: 3.02s	remaining: 3.19s
146:	learn: 30.2415859	total: 3.04s	remaining: 3.17s
147:	learn: 30.1696673	total: 3.06s	remaining: 3.14s
148:	learn: 30.1067038	total: 3.08s	remaining: 3.12s
149:	learn: 30.0144841	total: 3.1s	remaining: 3.1s
150:	learn: 29.9387888	total: 3.12s	remaining: 3.08s
151:	learn: 29.8543684	total: 3.14s	remaining: 3.06s
152:	learn: 29.7978539	total: 3.16s	remaining: 3.04s
153:	learn: 29.7312420	total: 3.18s	remaining: 3.02s
154:	learn: 29.6687537	total: 3.2s	remaining: 2.99s
155:	learn: 29.5932530	total: 3.22s	remaining: 2.97s
156:	learn: 29.5311340	total: 3.24s	remaining: 2.95s
157:	learn: 29.4435017	total: 3.25s	remaining: 2.92s
158:	learn: 29.3597179	total: 3.27s	remaining: 2.9s
159:	learn: 29.2919794	total: 3.29s	remaining: 2.88s
160:	learn: 29.2336515	total: 3.31s	remaining: 2.86s
161:	learn: 29.1439548	total: 3.33s	remaining: 2.84s
162:	learn: 29.0756608	total: 3.35s	remaining: 2.82s
163:	learn: 28.9975108	total: 3.38s	remaining: 2.8s
164:	learn: 28.9209465	total: 3.4s	remaining: 2.79s
165:	learn: 28.8633943	total: 3.43s	remaining: 2.77s
166:	learn: 28.7934690	total: 3.45s	remaining: 2.75s
167:	learn: 28.7306650	total: 3.47s	remaining: 2.73s
168:	learn: 28.6538399	total: 3.49s	remaining: 2.71s
169:	learn: 28.5982417	total: 3.51s	remaining: 2.68s
170:	learn: 28.5398716	total: 3.53s	remaining: 2.66s
171:	learn: 28.4637418	total: 3.55s	remaining: 2.64s
172:	learn: 28.3885814	total: 3.57s	remaining: 2.62s
173:	learn: 28.3245411	total: 3.6s	remaining: 2.6s
174:	learn: 28.2525307	total: 3.62s	remaining: 2.58s
175:	learn: 28.1808651	total: 3.63s	remaining: 2.56s
176:	learn: 28.1063594	total: 3.65s	remaining: 2.54s
177:	learn: 28.0598454	total: 3.67s	remaining: 2.52s
178:	learn: 27.9983744	total: 3.69s	remaining: 2.5s
179:	learn: 27.9253668	total: 3.71s	remaining: 2.47s
180:	learn: 27.8702113	total: 3.73s	remaining: 2.45s
181:	learn: 27.8069673	total: 3.75s	remaining: 2.43s
182:	learn: 27.7231370	total: 3.77s	remaining: 2.41s
183:	learn: 27.6392716	total: 3.8s	remaining: 2.39s
184:	learn: 27.5898803	total: 3.82s	remaining: 2.38s
185:	learn: 27.5345183	total: 3.84s	remaining: 2.35s
186:	learn: 27.4669290	total: 3.87s	remaining: 2.34s
187:	learn: 27.4069508	total: 3.88s	remaining: 2.31s
188:	learn: 27.3568834	total: 3.9s	remaining: 2.29s
189:	learn: 27.3161596	total: 3.92s	remaining: 2.27s
190:	learn: 27.2447206	total: 3.94s	remaining: 2.25s
191:	learn: 27.1863809	total: 3.96s	remaining: 2.23s
192:	learn: 27.1247103	total: 3.98s	remaining: 2.2s
193:	learn: 27.0727644	total: 4s	remaining: 2.19s
194:	learn: 27.0067203	total: 4.03s	remaining: 2.17s
195:	learn: 26.9713750	total: 4.05s	remaining: 2.15s
196:	learn: 26.9176783	total: 4.07s	remaining: 2.13s
197:	learn: 26.8631029	total: 4.09s	remaining: 2.1s
198:	learn: 26.8156454	total: 4.1s	remaining: 2.08s
199:	learn: 26.7496528	total: 4.12s	remaining: 2.06s
200:	learn: 26.7022814	total: 4.14s	remaining: 2.04s
201:	learn: 26.6479222	total: 4.16s	remaining: 2.02s
202:	learn: 26.5979806	total: 4.18s	remaining: 2s
203:	learn: 26.5404288	total: 4.2s	remaining: 1.98s
204:	learn: 26.5004143	total: 4.23s	remaining: 1.96s
205:	learn: 26.4429579	total: 4.25s	remaining: 1.94s
206:	learn: 26.3936519	total: 4.28s	remaining: 1.92s
207:	learn: 26.3466875	total: 4.3s	remaining: 1.9s
208:	learn: 26.2681116	total: 4.32s	remaining: 1.88s
209:	learn: 26.2256433	total: 4.34s	remaining: 1.86s
210:	learn: 26.1817064	total: 4.36s	remaining: 1.84s
211:	learn: 26.1283188	total: 4.38s	remaining: 1.82s
212:	learn: 26.0778225	total: 4.4s	remaining: 1.8s
213:	learn: 26.0151209	total: 4.42s	remaining: 1.77s
214:	learn: 25.9623235	total: 4.45s	remaining: 1.76s
215:	learn: 25.9225331	total: 4.46s	remaining: 1.74s
216:	learn: 25.8678208	total: 4.48s	remaining: 1.72s
217:	learn: 25.8004181	total: 4.5s	remaining: 1.69s
218:	learn: 25.7521137	total: 4.52s	remaining: 1.67s
219:	learn: 25.7019731	total: 4.54s	remaining: 1.65s
220:	learn: 25.6325833	total: 4.56s	remaining: 1.63s
221:	learn: 25.5826479	total: 4.58s	remaining: 1.61s
222:	learn: 25.5246045	total: 4.6s	remaining: 1.59s
223:	learn: 25.4815200	total: 4.62s	remaining: 1.57s
224:	learn: 25.4307990	total: 4.64s	remaining: 1.55s
225:	learn: 25.3826516	total: 4.67s	remaining: 1.53s
226:	learn: 25.3331377	total: 4.69s	remaining: 1.51s
227:	learn: 25.2887204	total: 4.71s	remaining: 1.49s
228:	learn: 25.2514609	total: 4.73s	remaining: 1.47s
229:	learn: 25.2085007	total: 4.75s	remaining: 1.45s
230:	learn: 25.1510758	total: 4.77s	remaining: 1.43s
231:	learn: 25.0977143	total: 4.79s	remaining: 1.4s
232:	learn: 25.0341435	total: 4.81s	remaining: 1.38s
233:	learn: 25.0157596	total: 4.84s	remaining: 1.36s
234:	learn: 24.9702366	total: 4.86s	remaining: 1.34s
235:	learn: 24.9198918	total: 4.88s	remaining: 1.32s
236:	learn: 24.8557065	total: 4.89s	remaining: 1.3s
237:	learn: 24.8049297	total: 4.91s	remaining: 1.28s
238:	learn: 24.7507429	total: 4.93s	remaining: 1.26s
239:	learn: 24.7041305	total: 4.95s	remaining: 1.24s
240:	learn: 24.6598200	total: 4.97s	remaining: 1.22s
241:	learn: 24.6081448	total: 4.99s	remaining: 1.2s
242:	learn: 24.5565269	total: 5.01s	remaining: 1.17s
243:	learn: 24.5254555	total: 5.03s	remaining: 1.15s
244:	learn: 24.4825920	total: 5.05s	remaining: 1.13s
245:	learn: 24.4445284	total: 5.08s	remaining: 1.11s
246:	learn: 24.3974272	total: 5.1s	remaining: 1.09s
247:	learn: 24.3515459	total: 5.12s	remaining: 1.07s
248:	learn: 24.3126168	total: 5.14s	remaining: 1.05s
249:	learn: 24.2599353	total: 5.16s	remaining: 1.03s
250:	learn: 24.2221952	total: 5.18s	remaining: 1.01s
251:	learn: 24.1912200	total: 5.2s	remaining: 991ms
252:	learn: 24.1595062	total: 5.22s	remaining: 970ms
253:	learn: 24.1159500	total: 5.24s	remaining: 949ms
254:	learn: 24.0596715	total: 5.26s	remaining: 928ms
255:	learn: 24.0178909	total: 5.28s	remaining: 908ms
256:	learn: 23.9692923	total: 5.3s	remaining: 888ms
257:	learn: 23.9168418	total: 5.33s	remaining: 867ms
258:	learn: 23.8732126	total: 5.34s	remaining: 846ms
259:	learn: 23.8330379	total: 5.36s	remaining: 825ms
260:	learn: 23.7870315	total: 5.38s	remaining: 804ms
261:	learn: 23.7359999	total: 5.4s	remaining: 783ms
262:	learn: 23.7051420	total: 5.42s	remaining: 762ms
263:	learn: 23.6865829	total: 5.43s	remaining: 741ms
264:	learn: 23.6356526	total: 5.46s	remaining: 721ms
265:	learn: 23.5924878	total: 5.48s	remaining: 700ms
266:	learn: 23.5542199	total: 5.51s	remaining: 681ms
267:	learn: 23.5116191	total: 5.53s	remaining: 660ms
268:	learn: 23.4731214	total: 5.55s	remaining: 639ms
269:	learn: 23.4306600	total: 5.57s	remaining: 619ms
270:	learn: 23.3911981	total: 5.59s	remaining: 598ms
271:	learn: 23.3511300	total: 5.61s	remaining: 577ms
272:	learn: 23.3135303	total: 5.62s	remaining: 556ms
273:	learn: 23.2778775	total: 5.64s	remaining: 535ms
274:	learn: 23.2340352	total: 5.66s	remaining: 514ms
275:	learn: 23.2022716	total: 5.68s	remaining: 494ms
276:	learn: 23.1710414	total: 5.71s	remaining: 474ms
277:	learn: 23.1464202	total: 5.72s	remaining: 453ms
278:	learn: 23.1005121	total: 5.74s	remaining: 432ms
279:	learn: 23.0702296	total: 5.76s	remaining: 411ms
280:	learn: 23.0157157	total: 5.78s	remaining: 391ms
281:	learn: 22.9744405	total: 5.8s	remaining: 370ms
282:	learn: 22.9329790	total: 5.81s	remaining: 349ms
283:	learn: 22.8878322	total: 5.83s	remaining: 329ms
284:	learn: 22.8444739	total: 5.85s	remaining: 308ms
285:	learn: 22.8029137	total: 5.87s	remaining: 287ms
286:	learn: 22.7664280	total: 5.89s	remaining: 267ms
287:	learn: 22.7348364	total: 5.93s	remaining: 247ms
288:	learn: 22.6989859	total: 5.95s	remaining: 226ms
289:	learn: 22.6749026	total: 5.97s	remaining: 206ms
290:	learn: 22.6438417	total: 5.99s	remaining: 185ms
291:	learn: 22.6116772	total: 6.01s	remaining: 165ms
292:	learn: 22.5676635	total: 6.03s	remaining: 144ms
293:	learn: 22.5194574	total: 6.04s	remaining: 123ms
294:	learn: 22.4864168	total: 6.06s	remaining: 103ms
295:	learn: 22.4379626	total: 6.08s	remaining: 82.1ms
296:	learn: 22.4077601	total: 6.1s	remaining: 61.6ms
297:	learn: 22.3694214	total: 6.13s	remaining: 41.1ms
298:	learn: 22.3277092	total: 6.15s	remaining: 20.6ms
299:	learn: 22.2927636	total: 6.16s	remaining: 0us
0:	learn: 27.9148448	total: 1.83ms	remaining: 548ms
1:	learn: 27.8037487	total: 3.48ms	remaining: 519ms
2:	learn: 27.7052841	total: 5.13ms	remaining: 508ms
3:	learn: 27.5994457	total: 6.9ms	remaining: 511ms
4:	learn: 27.4920753	total: 8.48ms	remaining: 500ms
5:	learn: 27.3906580	total: 10.3ms	remaining: 503ms
6:	learn: 27.3021621	total: 11.9ms	remaining: 497ms
7:	learn: 27.2057818	total: 13.7ms	remaining: 499ms
8:	learn: 27.1205322	total: 15.4ms	remaining: 497ms
9:	learn: 27.0193742	total: 16.9ms	remaining: 489ms
10:	learn: 26.9366851	total: 18.5ms	remaining: 486ms
11:	learn: 26.8556575	total: 20.2ms	remaining: 484ms
12:	learn: 26.7596587	total: 22.2ms	remaining: 490ms
13:	learn: 26.6595476	total: 24ms	remaining: 490ms
14:	learn: 26.5674144	total: 25.6ms	remaining: 486ms
15:	learn: 26.4619992	total: 27.1ms	remaining: 481ms
16:	learn: 26.3555750	total: 28.6ms	remaining: 476ms
17:	learn: 26.2764265	total: 30.3ms	remaining: 474ms
18:	learn: 26.2123887	total: 31.9ms	remaining: 472ms
19:	learn: 26.1384755	total: 33.6ms	remaining: 470ms
20:	learn: 26.0588208	total: 35.1ms	remaining: 466ms
21:	learn: 25.9585477	total: 37ms	remaining: 467ms
22:	learn: 25.8854778	total: 39.2ms	remaining: 472ms
23:	learn: 25.7956596	total: 40.9ms	remaining: 470ms
24:	learn: 25.7357543	total: 42.7ms	remaining: 470ms
25:	learn: 25.6525283	total: 44.6ms	remaining: 470ms
26:	learn: 25.5906325	total: 46.5ms	remaining: 470ms
27:	learn: 25.5256184	total: 48.5ms	remaining: 471ms
28:	learn: 25.4371061	total: 50.1ms	remaining: 468ms
29:	learn: 25.3782269	total: 51.7ms	remaining: 465ms
30:	learn: 25.3001612	total: 53.4ms	remaining: 464ms
31:	learn: 25.2260428	total: 55.3ms	remaining: 463ms
32:	learn: 25.1520886	total: 57.1ms	remaining: 462ms
33:	learn: 25.0748337	total: 59ms	remaining: 461ms
34:	learn: 25.0038027	total: 60.6ms	remaining: 459ms
35:	learn: 24.9302651	total: 62.8ms	remaining: 461ms
36:	learn: 24.8691019	total: 67.5ms	remaining: 480ms
37:	learn: 24.7940781	total: 70ms	remaining: 483ms
38:	learn: 24.7284465	total: 72.5ms	remaining: 485ms
39:	learn: 24.6502080	total: 76.3ms	remaining: 496ms
40:	learn: 24.5818237	total: 80.2ms	remaining: 507ms
41:	learn: 24.5159503	total: 84ms	remaining: 516ms
42:	learn: 24.4395350	total: 86.7ms	remaining: 518ms
43:	learn: 24.3702409	total: 89.7ms	remaining: 522ms
44:	learn: 24.3115874	total: 92.3ms	remaining: 523ms
45:	learn: 24.2318694	total: 94.3ms	remaining: 520ms
46:	learn: 24.1579242	total: 96.3ms	remaining: 518ms
47:	learn: 24.0944914	total: 98.3ms	remaining: 516ms
48:	learn: 24.0284558	total: 100ms	remaining: 513ms
49:	learn: 23.9729611	total: 102ms	remaining: 511ms
50:	learn: 23.8999705	total: 104ms	remaining: 509ms
51:	learn: 23.8352480	total: 106ms	remaining: 507ms
52:	learn: 23.7700012	total: 108ms	remaining: 505ms
53:	learn: 23.6825861	total: 111ms	remaining: 504ms
54:	learn: 23.6212377	total: 113ms	remaining: 503ms
55:	learn: 23.5620814	total: 115ms	remaining: 502ms
56:	learn: 23.4998382	total: 117ms	remaining: 501ms
57:	learn: 23.4268260	total: 119ms	remaining: 498ms
58:	learn: 23.3607639	total: 122ms	remaining: 497ms
59:	learn: 23.2963400	total: 124ms	remaining: 494ms
60:	learn: 23.2262192	total: 125ms	remaining: 492ms
61:	learn: 23.1689529	total: 128ms	remaining: 492ms
62:	learn: 23.1202113	total: 130ms	remaining: 490ms
63:	learn: 23.0700602	total: 133ms	remaining: 489ms
64:	learn: 22.9980281	total: 134ms	remaining: 486ms
65:	learn: 22.9432112	total: 136ms	remaining: 484ms
66:	learn: 22.8796270	total: 139ms	remaining: 482ms
67:	learn: 22.8130349	total: 141ms	remaining: 480ms
68:	learn: 22.7588239	total: 143ms	remaining: 478ms
69:	learn: 22.6892976	total: 145ms	remaining: 475ms
70:	learn: 22.6222284	total: 147ms	remaining: 474ms
71:	learn: 22.5708025	total: 149ms	remaining: 472ms
72:	learn: 22.5011205	total: 151ms	remaining: 469ms
73:	learn: 22.4445191	total: 153ms	remaining: 466ms
74:	learn: 22.3970874	total: 154ms	remaining: 463ms
75:	learn: 22.3237481	total: 156ms	remaining: 459ms
76:	learn: 22.2755124	total: 158ms	remaining: 456ms
77:	learn: 22.2257866	total: 159ms	remaining: 453ms
78:	learn: 22.1690030	total: 161ms	remaining: 450ms
79:	learn: 22.1257335	total: 162ms	remaining: 446ms
80:	learn: 22.0843040	total: 164ms	remaining: 443ms
81:	learn: 22.0264962	total: 166ms	remaining: 440ms
82:	learn: 21.9530162	total: 167ms	remaining: 438ms
83:	learn: 21.9136844	total: 169ms	remaining: 435ms
84:	learn: 21.8670691	total: 171ms	remaining: 432ms
85:	learn: 21.8242121	total: 172ms	remaining: 429ms
86:	learn: 21.7617821	total: 174ms	remaining: 426ms
87:	learn: 21.7074909	total: 176ms	remaining: 423ms
88:	learn: 21.6412238	total: 177ms	remaining: 420ms
89:	learn: 21.6009761	total: 179ms	remaining: 417ms
90:	learn: 21.5512422	total: 181ms	remaining: 415ms
91:	learn: 21.5085034	total: 182ms	remaining: 412ms
92:	learn: 21.4443896	total: 184ms	remaining: 409ms
93:	learn: 21.4033228	total: 185ms	remaining: 407ms
94:	learn: 21.3642714	total: 187ms	remaining: 404ms
95:	learn: 21.3084023	total: 189ms	remaining: 402ms
96:	learn: 21.2675512	total: 191ms	remaining: 399ms
97:	learn: 21.2173673	total: 192ms	remaining: 396ms
98:	learn: 21.1548629	total: 194ms	remaining: 394ms
99:	learn: 21.0949896	total: 195ms	remaining: 391ms
100:	learn: 21.0497074	total: 197ms	remaining: 388ms
101:	learn: 21.0133789	total: 199ms	remaining: 386ms
102:	learn: 20.9733157	total: 200ms	remaining: 383ms
103:	learn: 20.9334140	total: 202ms	remaining: 381ms
104:	learn: 20.8869217	total: 204ms	remaining: 379ms
105:	learn: 20.8412477	total: 206ms	remaining: 376ms
106:	learn: 20.8149504	total: 207ms	remaining: 374ms
107:	learn: 20.7739707	total: 209ms	remaining: 371ms
108:	learn: 20.7336249	total: 211ms	remaining: 369ms
109:	learn: 20.6685917	total: 212ms	remaining: 367ms
110:	learn: 20.6271526	total: 214ms	remaining: 364ms
111:	learn: 20.5991256	total: 216ms	remaining: 362ms
112:	learn: 20.5406110	total: 217ms	remaining: 359ms
113:	learn: 20.5007652	total: 219ms	remaining: 358ms
114:	learn: 20.4679714	total: 221ms	remaining: 356ms
115:	learn: 20.4402808	total: 223ms	remaining: 353ms
116:	learn: 20.4045078	total: 225ms	remaining: 351ms
117:	learn: 20.3648613	total: 226ms	remaining: 349ms
118:	learn: 20.3174889	total: 228ms	remaining: 346ms
119:	learn: 20.2760469	total: 229ms	remaining: 344ms
120:	learn: 20.2444904	total: 231ms	remaining: 342ms
121:	learn: 20.2090993	total: 233ms	remaining: 340ms
122:	learn: 20.1680335	total: 235ms	remaining: 338ms
123:	learn: 20.1206031	total: 237ms	remaining: 336ms
124:	learn: 20.0838991	total: 238ms	remaining: 334ms
125:	learn: 20.0456339	total: 240ms	remaining: 332ms
126:	learn: 20.0035448	total: 242ms	remaining: 330ms
127:	learn: 19.9706017	total: 244ms	remaining: 328ms
128:	learn: 19.9326995	total: 246ms	remaining: 326ms
129:	learn: 19.8937387	total: 247ms	remaining: 324ms
130:	learn: 19.8585244	total: 249ms	remaining: 322ms
131:	learn: 19.8350273	total: 251ms	remaining: 320ms
132:	learn: 19.7967602	total: 253ms	remaining: 318ms
133:	learn: 19.7603498	total: 255ms	remaining: 316ms
134:	learn: 19.7207945	total: 257ms	remaining: 314ms
135:	learn: 19.6893841	total: 259ms	remaining: 312ms
136:	learn: 19.6512738	total: 263ms	remaining: 313ms
137:	learn: 19.6190445	total: 266ms	remaining: 312ms
138:	learn: 19.5902509	total: 268ms	remaining: 311ms
139:	learn: 19.5617651	total: 271ms	remaining: 310ms
140:	learn: 19.5223309	total: 273ms	remaining: 308ms
141:	learn: 19.4867845	total: 276ms	remaining: 307ms
142:	learn: 19.4508314	total: 278ms	remaining: 306ms
143:	learn: 19.4047457	total: 281ms	remaining: 304ms
144:	learn: 19.3742884	total: 282ms	remaining: 302ms
145:	learn: 19.3395800	total: 284ms	remaining: 300ms
146:	learn: 19.2992404	total: 287ms	remaining: 298ms
147:	learn: 19.2630001	total: 289ms	remaining: 296ms
148:	learn: 19.2321058	total: 290ms	remaining: 294ms
149:	learn: 19.1982160	total: 292ms	remaining: 292ms
150:	learn: 19.1590344	total: 294ms	remaining: 290ms
151:	learn: 19.1267211	total: 295ms	remaining: 288ms
152:	learn: 19.0932172	total: 297ms	remaining: 285ms
153:	learn: 19.0607909	total: 299ms	remaining: 283ms
154:	learn: 19.0390738	total: 300ms	remaining: 281ms
155:	learn: 19.0183348	total: 302ms	remaining: 278ms
156:	learn: 18.9863123	total: 303ms	remaining: 276ms
157:	learn: 18.9627921	total: 305ms	remaining: 274ms
158:	learn: 18.9385273	total: 307ms	remaining: 272ms
159:	learn: 18.8890145	total: 308ms	remaining: 270ms
160:	learn: 18.8535700	total: 310ms	remaining: 267ms
161:	learn: 18.8113472	total: 311ms	remaining: 265ms
162:	learn: 18.7797731	total: 313ms	remaining: 263ms
163:	learn: 18.7483927	total: 314ms	remaining: 261ms
164:	learn: 18.7265200	total: 316ms	remaining: 259ms
165:	learn: 18.6963512	total: 318ms	remaining: 256ms
166:	learn: 18.6704611	total: 319ms	remaining: 254ms
167:	learn: 18.6426824	total: 321ms	remaining: 252ms
168:	learn: 18.6114258	total: 322ms	remaining: 250ms
169:	learn: 18.5875648	total: 324ms	remaining: 248ms
170:	learn: 18.5565724	total: 326ms	remaining: 246ms
171:	learn: 18.5321733	total: 327ms	remaining: 243ms
172:	learn: 18.5065436	total: 329ms	remaining: 241ms
173:	learn: 18.4703202	total: 330ms	remaining: 239ms
174:	learn: 18.4429591	total: 332ms	remaining: 237ms
175:	learn: 18.4205904	total: 333ms	remaining: 235ms
176:	learn: 18.3930588	total: 335ms	remaining: 233ms
177:	learn: 18.3535393	total: 337ms	remaining: 231ms
178:	learn: 18.3268092	total: 339ms	remaining: 229ms
179:	learn: 18.2912247	total: 340ms	remaining: 227ms
180:	learn: 18.2679233	total: 342ms	remaining: 225ms
181:	learn: 18.2336715	total: 344ms	remaining: 223ms
182:	learn: 18.1997058	total: 345ms	remaining: 221ms
183:	learn: 18.1740819	total: 347ms	remaining: 219ms
184:	learn: 18.1571511	total: 348ms	remaining: 216ms
185:	learn: 18.1331425	total: 350ms	remaining: 214ms
186:	learn: 18.1193147	total: 351ms	remaining: 212ms
187:	learn: 18.0979116	total: 353ms	remaining: 210ms
188:	learn: 18.0742865	total: 355ms	remaining: 208ms
189:	learn: 18.0350932	total: 357ms	remaining: 207ms
190:	learn: 18.0127887	total: 359ms	remaining: 205ms
191:	learn: 17.9800159	total: 361ms	remaining: 203ms
192:	learn: 17.9545396	total: 362ms	remaining: 201ms
193:	learn: 17.9311158	total: 364ms	remaining: 199ms
194:	learn: 17.9137592	total: 365ms	remaining: 197ms
195:	learn: 17.8840559	total: 367ms	remaining: 195ms
196:	learn: 17.8712014	total: 369ms	remaining: 193ms
197:	learn: 17.8545247	total: 370ms	remaining: 191ms
198:	learn: 17.8304404	total: 372ms	remaining: 189ms
199:	learn: 17.8018991	total: 374ms	remaining: 187ms
200:	learn: 17.7777558	total: 375ms	remaining: 185ms
201:	learn: 17.7595468	total: 377ms	remaining: 183ms
202:	learn: 17.7384285	total: 379ms	remaining: 181ms
203:	learn: 17.7154647	total: 380ms	remaining: 179ms
204:	learn: 17.7028657	total: 382ms	remaining: 177ms
205:	learn: 17.6875963	total: 383ms	remaining: 175ms
206:	learn: 17.6672419	total: 385ms	remaining: 173ms
207:	learn: 17.6439359	total: 386ms	remaining: 171ms
208:	learn: 17.6294814	total: 388ms	remaining: 169ms
209:	learn: 17.6143587	total: 390ms	remaining: 167ms
210:	learn: 17.5905537	total: 391ms	remaining: 165ms
211:	learn: 17.5726640	total: 393ms	remaining: 163ms
212:	learn: 17.5485581	total: 394ms	remaining: 161ms
213:	learn: 17.5291658	total: 396ms	remaining: 159ms
214:	learn: 17.5089175	total: 398ms	remaining: 157ms
215:	learn: 17.4926425	total: 399ms	remaining: 155ms
216:	learn: 17.4554911	total: 401ms	remaining: 153ms
217:	learn: 17.4432149	total: 402ms	remaining: 151ms
218:	learn: 17.4279081	total: 404ms	remaining: 149ms
219:	learn: 17.4116601	total: 406ms	remaining: 147ms
220:	learn: 17.3940568	total: 407ms	remaining: 146ms
221:	learn: 17.3744347	total: 409ms	remaining: 144ms
222:	learn: 17.3580401	total: 410ms	remaining: 142ms
223:	learn: 17.3351731	total: 412ms	remaining: 140ms
224:	learn: 17.2990428	total: 414ms	remaining: 138ms
225:	learn: 17.2795161	total: 416ms	remaining: 136ms
226:	learn: 17.2507461	total: 418ms	remaining: 134ms
227:	learn: 17.2364999	total: 419ms	remaining: 132ms
228:	learn: 17.2184558	total: 421ms	remaining: 131ms
229:	learn: 17.1898079	total: 423ms	remaining: 129ms
230:	learn: 17.1752556	total: 425ms	remaining: 127ms
231:	learn: 17.1487783	total: 426ms	remaining: 125ms
232:	learn: 17.1299738	total: 428ms	remaining: 123ms
233:	learn: 17.1071277	total: 430ms	remaining: 121ms
234:	learn: 17.0866361	total: 431ms	remaining: 119ms
235:	learn: 17.0621531	total: 433ms	remaining: 117ms
236:	learn: 17.0434858	total: 435ms	remaining: 116ms
237:	learn: 17.0264782	total: 437ms	remaining: 114ms
238:	learn: 17.0079568	total: 438ms	remaining: 112ms
239:	learn: 16.9905451	total: 440ms	remaining: 110ms
240:	learn: 16.9693836	total: 442ms	remaining: 108ms
241:	learn: 16.9485803	total: 444ms	remaining: 106ms
242:	learn: 16.9356484	total: 446ms	remaining: 105ms
243:	learn: 16.9193434	total: 447ms	remaining: 103ms
244:	learn: 16.9056538	total: 449ms	remaining: 101ms
245:	learn: 16.8895278	total: 451ms	remaining: 99ms
246:	learn: 16.8672735	total: 453ms	remaining: 97.1ms
247:	learn: 16.8511081	total: 455ms	remaining: 95.4ms
248:	learn: 16.8335735	total: 459ms	remaining: 94ms
249:	learn: 16.8138578	total: 462ms	remaining: 92.4ms
250:	learn: 16.7942630	total: 465ms	remaining: 90.8ms
251:	learn: 16.7800486	total: 469ms	remaining: 89.4ms
252:	learn: 16.7646840	total: 473ms	remaining: 87.8ms
253:	learn: 16.7497990	total: 477ms	remaining: 86.3ms
254:	learn: 16.7305480	total: 479ms	remaining: 84.6ms
255:	learn: 16.7124703	total: 481ms	remaining: 82.7ms
256:	learn: 16.6904184	total: 485ms	remaining: 81.1ms
257:	learn: 16.6778138	total: 487ms	remaining: 79.3ms
258:	learn: 16.6564852	total: 489ms	remaining: 77.5ms
259:	learn: 16.6327917	total: 491ms	remaining: 75.6ms
260:	learn: 16.6149088	total: 494ms	remaining: 73.7ms
261:	learn: 16.5958184	total: 496ms	remaining: 71.9ms
262:	learn: 16.5749444	total: 498ms	remaining: 70ms
263:	learn: 16.5588703	total: 500ms	remaining: 68.1ms
264:	learn: 16.5432254	total: 502ms	remaining: 66.2ms
265:	learn: 16.5220338	total: 504ms	remaining: 64.4ms
266:	learn: 16.5088779	total: 506ms	remaining: 62.5ms
267:	learn: 16.4857478	total: 508ms	remaining: 60.6ms
268:	learn: 16.4625567	total: 510ms	remaining: 58.8ms
269:	learn: 16.4487979	total: 512ms	remaining: 56.9ms
270:	learn: 16.4300493	total: 514ms	remaining: 55ms
271:	learn: 16.4159997	total: 516ms	remaining: 53.1ms
272:	learn: 16.3951340	total: 518ms	remaining: 51.2ms
273:	learn: 16.3849098	total: 520ms	remaining: 49.3ms
274:	learn: 16.3669559	total: 522ms	remaining: 47.4ms
275:	learn: 16.3487790	total: 524ms	remaining: 45.5ms
276:	learn: 16.3325273	total: 526ms	remaining: 43.7ms
277:	learn: 16.3220555	total: 528ms	remaining: 41.8ms
278:	learn: 16.3082882	total: 530ms	remaining: 39.9ms
279:	learn: 16.2770444	total: 532ms	remaining: 38ms
280:	learn: 16.2644216	total: 534ms	remaining: 36.1ms
281:	learn: 16.2446284	total: 536ms	remaining: 34.2ms
282:	learn: 16.2314095	total: 539ms	remaining: 32.4ms
283:	learn: 16.2185936	total: 541ms	remaining: 30.5ms
284:	learn: 16.1867847	total: 543ms	remaining: 28.6ms
285:	learn: 16.1730405	total: 545ms	remaining: 26.7ms
286:	learn: 16.1582470	total: 547ms	remaining: 24.8ms
287:	learn: 16.1465180	total: 548ms	remaining: 22.8ms
288:	learn: 16.1232814	total: 550ms	remaining: 20.9ms
289:	learn: 16.1057511	total: 551ms	remaining: 19ms
290:	learn: 16.0922240	total: 553ms	remaining: 17.1ms
291:	learn: 16.0756867	total: 555ms	remaining: 15.2ms
292:	learn: 16.0622282	total: 557ms	remaining: 13.3ms
293:	learn: 16.0380896	total: 558ms	remaining: 11.4ms
294:	learn: 16.0231222	total: 560ms	remaining: 9.5ms
295:	learn: 16.0010109	total: 562ms	remaining: 7.6ms
296:	learn: 15.9875905	total: 564ms	remaining: 5.7ms
297:	learn: 15.9710299	total: 566ms	remaining: 3.8ms
298:	learn: 15.9534931	total: 568ms	remaining: 1.9ms
299:	learn: 15.9230931	total: 570ms	remaining: 0us
0:	learn: 43.7575876	total: 2.02ms	remaining: 604ms
1:	learn: 43.5134096	total: 3.61ms	remaining: 538ms
2:	learn: 43.2785588	total: 5.56ms	remaining: 551ms
3:	learn: 43.0463550	total: 7.38ms	remaining: 546ms
4:	learn: 42.8334081	total: 9.13ms	remaining: 538ms
5:	learn: 42.5904727	total: 10.8ms	remaining: 530ms
6:	learn: 42.3571524	total: 12.6ms	remaining: 526ms
7:	learn: 42.1749119	total: 14.5ms	remaining: 528ms
8:	learn: 41.9898328	total: 16.4ms	remaining: 530ms
9:	learn: 41.8533900	total: 18ms	remaining: 522ms
10:	learn: 41.6724928	total: 19.7ms	remaining: 518ms
11:	learn: 41.4676698	total: 21.6ms	remaining: 518ms
12:	learn: 41.2725091	total: 23.4ms	remaining: 517ms
13:	learn: 41.0699948	total: 25.1ms	remaining: 513ms
14:	learn: 40.9202286	total: 26.8ms	remaining: 509ms
15:	learn: 40.7633654	total: 28.7ms	remaining: 509ms
16:	learn: 40.5456645	total: 30.4ms	remaining: 506ms
17:	learn: 40.3245359	total: 32.3ms	remaining: 506ms
18:	learn: 40.0994348	total: 34.3ms	remaining: 507ms
19:	learn: 39.8961897	total: 37.9ms	remaining: 530ms
20:	learn: 39.6903354	total: 40.9ms	remaining: 543ms
21:	learn: 39.4768111	total: 43.4ms	remaining: 548ms
22:	learn: 39.2944760	total: 45.8ms	remaining: 551ms
23:	learn: 39.1047688	total: 48.2ms	remaining: 554ms
24:	learn: 38.8957558	total: 50.8ms	remaining: 559ms
25:	learn: 38.6911849	total: 53.2ms	remaining: 561ms
26:	learn: 38.5320837	total: 55.5ms	remaining: 562ms
27:	learn: 38.3739340	total: 57.7ms	remaining: 560ms
28:	learn: 38.1796534	total: 59.9ms	remaining: 560ms
29:	learn: 38.0486447	total: 62ms	remaining: 558ms
30:	learn: 37.8603529	total: 64.1ms	remaining: 556ms
31:	learn: 37.6748164	total: 66ms	remaining: 553ms
32:	learn: 37.5082112	total: 68ms	remaining: 550ms
33:	learn: 37.3602142	total: 69.8ms	remaining: 546ms
34:	learn: 37.2052221	total: 71.7ms	remaining: 542ms
35:	learn: 37.0279715	total: 73.5ms	remaining: 539ms
36:	learn: 36.8700999	total: 75.2ms	remaining: 535ms
37:	learn: 36.7354033	total: 77.1ms	remaining: 531ms
38:	learn: 36.5577641	total: 78.7ms	remaining: 527ms
39:	learn: 36.4107686	total: 80.6ms	remaining: 524ms
40:	learn: 36.2321077	total: 82.7ms	remaining: 522ms
41:	learn: 36.0535478	total: 84.4ms	remaining: 519ms
42:	learn: 35.8986058	total: 86.2ms	remaining: 515ms
43:	learn: 35.7402538	total: 87.9ms	remaining: 512ms
44:	learn: 35.5790464	total: 89.6ms	remaining: 508ms
45:	learn: 35.4329739	total: 91.3ms	remaining: 504ms
46:	learn: 35.2637207	total: 93.1ms	remaining: 501ms
47:	learn: 35.1068609	total: 95ms	remaining: 499ms
48:	learn: 34.9568563	total: 96.7ms	remaining: 495ms
49:	learn: 34.7860868	total: 98.4ms	remaining: 492ms
50:	learn: 34.6571321	total: 114ms	remaining: 557ms
51:	learn: 34.5010896	total: 116ms	remaining: 552ms
52:	learn: 34.3301006	total: 118ms	remaining: 548ms
53:	learn: 34.1706503	total: 120ms	remaining: 545ms
54:	learn: 34.0189672	total: 121ms	remaining: 540ms
55:	learn: 33.8795160	total: 123ms	remaining: 536ms
56:	learn: 33.7201699	total: 125ms	remaining: 532ms
57:	learn: 33.5908818	total: 127ms	remaining: 528ms
58:	learn: 33.4281354	total: 128ms	remaining: 524ms
59:	learn: 33.2802583	total: 130ms	remaining: 520ms
60:	learn: 33.1503858	total: 131ms	remaining: 515ms
61:	learn: 33.0029837	total: 133ms	remaining: 511ms
62:	learn: 32.8452927	total: 135ms	remaining: 508ms
63:	learn: 32.7306684	total: 137ms	remaining: 504ms
64:	learn: 32.5835573	total: 139ms	remaining: 501ms
65:	learn: 32.4795881	total: 140ms	remaining: 498ms
66:	learn: 32.3832369	total: 142ms	remaining: 495ms
67:	learn: 32.2305487	total: 144ms	remaining: 491ms
68:	learn: 32.1233767	total: 146ms	remaining: 488ms
69:	learn: 32.0080961	total: 147ms	remaining: 484ms
70:	learn: 31.8763181	total: 149ms	remaining: 480ms
71:	learn: 31.7382525	total: 151ms	remaining: 477ms
72:	learn: 31.6042870	total: 152ms	remaining: 474ms
73:	learn: 31.4842962	total: 154ms	remaining: 469ms
74:	learn: 31.3392952	total: 155ms	remaining: 466ms
75:	learn: 31.2543362	total: 157ms	remaining: 463ms
76:	learn: 31.1295749	total: 159ms	remaining: 460ms
77:	learn: 31.0407947	total: 161ms	remaining: 457ms
78:	learn: 30.9588823	total: 163ms	remaining: 455ms
79:	learn: 30.8511098	total: 164ms	remaining: 452ms
80:	learn: 30.7130527	total: 166ms	remaining: 449ms
81:	learn: 30.6182902	total: 168ms	remaining: 446ms
82:	learn: 30.4843259	total: 169ms	remaining: 443ms
83:	learn: 30.4286927	total: 171ms	remaining: 440ms
84:	learn: 30.2980661	total: 173ms	remaining: 437ms
85:	learn: 30.1944029	total: 175ms	remaining: 435ms
86:	learn: 30.1080526	total: 177ms	remaining: 433ms
87:	learn: 29.9843743	total: 179ms	remaining: 431ms
88:	learn: 29.8739347	total: 181ms	remaining: 428ms
89:	learn: 29.7598241	total: 182ms	remaining: 426ms
90:	learn: 29.6331623	total: 184ms	remaining: 423ms
91:	learn: 29.5287663	total: 186ms	remaining: 421ms
92:	learn: 29.4049676	total: 188ms	remaining: 419ms
93:	learn: 29.2844799	total: 190ms	remaining: 416ms
94:	learn: 29.1827539	total: 192ms	remaining: 414ms
95:	learn: 29.0736286	total: 193ms	remaining: 411ms
96:	learn: 29.0046370	total: 195ms	remaining: 408ms
97:	learn: 28.9146898	total: 197ms	remaining: 406ms
98:	learn: 28.7914282	total: 198ms	remaining: 403ms
99:	learn: 28.6949251	total: 200ms	remaining: 400ms
100:	learn: 28.5998734	total: 202ms	remaining: 398ms
101:	learn: 28.4828633	total: 204ms	remaining: 396ms
102:	learn: 28.4087453	total: 205ms	remaining: 393ms
103:	learn: 28.2927847	total: 207ms	remaining: 391ms
104:	learn: 28.1931016	total: 209ms	remaining: 388ms
105:	learn: 28.0813164	total: 211ms	remaining: 385ms
106:	learn: 27.9937825	total: 212ms	remaining: 383ms
107:	learn: 27.9262766	total: 214ms	remaining: 380ms
108:	learn: 27.8224593	total: 215ms	remaining: 377ms
109:	learn: 27.7522855	total: 217ms	remaining: 375ms
110:	learn: 27.6435730	total: 220ms	remaining: 374ms
111:	learn: 27.5601203	total: 221ms	remaining: 372ms
112:	learn: 27.4914824	total: 223ms	remaining: 369ms
113:	learn: 27.3904881	total: 225ms	remaining: 367ms
114:	learn: 27.3274566	total: 227ms	remaining: 365ms
115:	learn: 27.2438856	total: 228ms	remaining: 362ms
116:	learn: 27.1667351	total: 230ms	remaining: 360ms
117:	learn: 27.1040332	total: 232ms	remaining: 358ms
118:	learn: 27.0200098	total: 234ms	remaining: 355ms
119:	learn: 26.9717243	total: 236ms	remaining: 353ms
120:	learn: 26.8745053	total: 238ms	remaining: 352ms
121:	learn: 26.7983468	total: 240ms	remaining: 349ms
122:	learn: 26.6985387	total: 241ms	remaining: 347ms
123:	learn: 26.6272569	total: 244ms	remaining: 346ms
124:	learn: 26.5579901	total: 248ms	remaining: 347ms
125:	learn: 26.4765313	total: 250ms	remaining: 346ms
126:	learn: 26.3917096	total: 253ms	remaining: 345ms
127:	learn: 26.3078220	total: 257ms	remaining: 345ms
128:	learn: 26.2144184	total: 260ms	remaining: 345ms
129:	learn: 26.1448672	total: 264ms	remaining: 345ms
130:	learn: 26.0811038	total: 267ms	remaining: 344ms
131:	learn: 25.9957338	total: 270ms	remaining: 344ms
132:	learn: 25.9190804	total: 273ms	remaining: 343ms
133:	learn: 25.8353581	total: 275ms	remaining: 341ms
134:	learn: 25.7681916	total: 277ms	remaining: 339ms
135:	learn: 25.7035489	total: 279ms	remaining: 337ms
136:	learn: 25.6181994	total: 281ms	remaining: 334ms
137:	learn: 25.5585347	total: 283ms	remaining: 333ms
138:	learn: 25.4796217	total: 285ms	remaining: 330ms
139:	learn: 25.4112658	total: 288ms	remaining: 329ms
140:	learn: 25.3426994	total: 290ms	remaining: 326ms
141:	learn: 25.2932025	total: 292ms	remaining: 324ms
142:	learn: 25.2221992	total: 293ms	remaining: 322ms
143:	learn: 25.1442718	total: 295ms	remaining: 320ms
144:	learn: 25.0777233	total: 297ms	remaining: 318ms
145:	learn: 25.0034190	total: 299ms	remaining: 316ms
146:	learn: 24.9475252	total: 302ms	remaining: 314ms
147:	learn: 24.8839373	total: 304ms	remaining: 312ms
148:	learn: 24.8003714	total: 306ms	remaining: 310ms
149:	learn: 24.7333728	total: 308ms	remaining: 308ms
150:	learn: 24.6852508	total: 310ms	remaining: 306ms
151:	learn: 24.6067923	total: 312ms	remaining: 304ms
152:	learn: 24.5528451	total: 314ms	remaining: 302ms
153:	learn: 24.4738283	total: 316ms	remaining: 300ms
154:	learn: 24.4076351	total: 318ms	remaining: 297ms
155:	learn: 24.3421678	total: 320ms	remaining: 295ms
156:	learn: 24.2868949	total: 323ms	remaining: 294ms
157:	learn: 24.2142503	total: 325ms	remaining: 292ms
158:	learn: 24.1398416	total: 327ms	remaining: 290ms
159:	learn: 24.0953829	total: 329ms	remaining: 288ms
160:	learn: 24.0452303	total: 331ms	remaining: 286ms
161:	learn: 23.9846295	total: 333ms	remaining: 283ms
162:	learn: 23.9143182	total: 334ms	remaining: 281ms
163:	learn: 23.8369675	total: 336ms	remaining: 278ms
164:	learn: 23.7861047	total: 337ms	remaining: 276ms
165:	learn: 23.7293821	total: 339ms	remaining: 274ms
166:	learn: 23.6582751	total: 341ms	remaining: 271ms
167:	learn: 23.6246286	total: 343ms	remaining: 269ms
168:	learn: 23.5894992	total: 344ms	remaining: 267ms
169:	learn: 23.5242734	total: 346ms	remaining: 264ms
170:	learn: 23.4558331	total: 347ms	remaining: 262ms
171:	learn: 23.4010813	total: 349ms	remaining: 260ms
172:	learn: 23.3576373	total: 351ms	remaining: 257ms
173:	learn: 23.3192371	total: 352ms	remaining: 255ms
174:	learn: 23.2628426	total: 354ms	remaining: 253ms
175:	learn: 23.2124954	total: 356ms	remaining: 251ms
176:	learn: 23.1681637	total: 358ms	remaining: 248ms
177:	learn: 23.0947174	total: 359ms	remaining: 246ms
178:	learn: 23.0549384	total: 361ms	remaining: 244ms
179:	learn: 22.9884826	total: 363ms	remaining: 242ms
180:	learn: 22.9453412	total: 364ms	remaining: 240ms
181:	learn: 22.8828124	total: 366ms	remaining: 237ms
182:	learn: 22.8137342	total: 368ms	remaining: 235ms
183:	learn: 22.7811168	total: 370ms	remaining: 233ms
184:	learn: 22.7339158	total: 372ms	remaining: 231ms
185:	learn: 22.6842018	total: 374ms	remaining: 229ms
186:	learn: 22.6368689	total: 375ms	remaining: 227ms
187:	learn: 22.5754649	total: 377ms	remaining: 225ms
188:	learn: 22.5456675	total: 379ms	remaining: 222ms
189:	learn: 22.4982148	total: 380ms	remaining: 220ms
190:	learn: 22.4681772	total: 382ms	remaining: 218ms
191:	learn: 22.4312514	total: 384ms	remaining: 216ms
192:	learn: 22.3960622	total: 385ms	remaining: 214ms
193:	learn: 22.3528413	total: 387ms	remaining: 211ms
194:	learn: 22.3056110	total: 389ms	remaining: 209ms
195:	learn: 22.2463002	total: 390ms	remaining: 207ms
196:	learn: 22.1939592	total: 392ms	remaining: 205ms
197:	learn: 22.1697365	total: 393ms	remaining: 203ms
198:	learn: 22.1231046	total: 395ms	remaining: 200ms
199:	learn: 22.0748554	total: 397ms	remaining: 198ms
200:	learn: 22.0219263	total: 399ms	remaining: 196ms
201:	learn: 21.9693283	total: 400ms	remaining: 194ms
202:	learn: 21.9255216	total: 402ms	remaining: 192ms
203:	learn: 21.8828937	total: 403ms	remaining: 190ms
204:	learn: 21.8407084	total: 405ms	remaining: 188ms
205:	learn: 21.7779417	total: 406ms	remaining: 185ms
206:	learn: 21.7364589	total: 408ms	remaining: 183ms
207:	learn: 21.6942037	total: 409ms	remaining: 181ms
208:	learn: 21.6684217	total: 411ms	remaining: 179ms
209:	learn: 21.6237978	total: 413ms	remaining: 177ms
210:	learn: 21.5810114	total: 414ms	remaining: 175ms
211:	learn: 21.5428532	total: 416ms	remaining: 173ms
212:	learn: 21.5158600	total: 418ms	remaining: 171ms
213:	learn: 21.4669380	total: 420ms	remaining: 169ms
214:	learn: 21.4394526	total: 421ms	remaining: 167ms
215:	learn: 21.4002548	total: 424ms	remaining: 165ms
216:	learn: 21.3773231	total: 425ms	remaining: 163ms
217:	learn: 21.3209698	total: 427ms	remaining: 161ms
218:	learn: 21.2839577	total: 429ms	remaining: 159ms
219:	learn: 21.2614490	total: 431ms	remaining: 157ms
220:	learn: 21.2215280	total: 432ms	remaining: 155ms
221:	learn: 21.1857633	total: 434ms	remaining: 153ms
222:	learn: 21.1684886	total: 436ms	remaining: 150ms
223:	learn: 21.1568012	total: 438ms	remaining: 149ms
224:	learn: 21.1236497	total: 442ms	remaining: 147ms
225:	learn: 21.0839535	total: 445ms	remaining: 146ms
226:	learn: 21.0511862	total: 447ms	remaining: 144ms
227:	learn: 21.0088876	total: 449ms	remaining: 142ms
228:	learn: 20.9916074	total: 452ms	remaining: 140ms
229:	learn: 20.9645163	total: 454ms	remaining: 138ms
230:	learn: 20.9413314	total: 457ms	remaining: 137ms
231:	learn: 20.9101240	total: 459ms	remaining: 135ms
232:	learn: 20.8720635	total: 461ms	remaining: 133ms
233:	learn: 20.8418993	total: 463ms	remaining: 131ms
234:	learn: 20.8175094	total: 465ms	remaining: 129ms
235:	learn: 20.8003733	total: 467ms	remaining: 127ms
236:	learn: 20.7679561	total: 468ms	remaining: 125ms
237:	learn: 20.7304942	total: 470ms	remaining: 122ms
238:	learn: 20.7080091	total: 472ms	remaining: 120ms
239:	learn: 20.6935526	total: 474ms	remaining: 119ms
240:	learn: 20.6613565	total: 476ms	remaining: 117ms
241:	learn: 20.6274206	total: 478ms	remaining: 115ms
242:	learn: 20.6033125	total: 480ms	remaining: 112ms
243:	learn: 20.5576577	total: 481ms	remaining: 110ms
244:	learn: 20.5399670	total: 483ms	remaining: 108ms
245:	learn: 20.5084783	total: 485ms	remaining: 106ms
246:	learn: 20.4793993	total: 487ms	remaining: 104ms
247:	learn: 20.4468959	total: 488ms	remaining: 102ms
248:	learn: 20.4318672	total: 490ms	remaining: 100ms
249:	learn: 20.3963669	total: 492ms	remaining: 98.4ms
250:	learn: 20.3592173	total: 494ms	remaining: 96.4ms
251:	learn: 20.3406779	total: 495ms	remaining: 94.4ms
252:	learn: 20.3217794	total: 497ms	remaining: 92.4ms
253:	learn: 20.2983187	total: 499ms	remaining: 90.3ms
254:	learn: 20.2404681	total: 501ms	remaining: 88.3ms
255:	learn: 20.2184918	total: 502ms	remaining: 86.3ms
256:	learn: 20.1902368	total: 504ms	remaining: 84.4ms
257:	learn: 20.1549201	total: 506ms	remaining: 82.4ms
258:	learn: 20.1181683	total: 508ms	remaining: 80.4ms
259:	learn: 20.1017045	total: 509ms	remaining: 78.4ms
260:	learn: 20.0720881	total: 511ms	remaining: 76.3ms
261:	learn: 20.0526008	total: 512ms	remaining: 74.3ms
262:	learn: 20.0388615	total: 514ms	remaining: 72.3ms
263:	learn: 20.0230076	total: 516ms	remaining: 70.3ms
264:	learn: 19.9983032	total: 517ms	remaining: 68.3ms
265:	learn: 19.9639903	total: 519ms	remaining: 66.3ms
266:	learn: 19.9531008	total: 520ms	remaining: 64.3ms
267:	learn: 19.9309093	total: 522ms	remaining: 62.3ms
268:	learn: 19.8962485	total: 523ms	remaining: 60.3ms
269:	learn: 19.8818541	total: 525ms	remaining: 58.4ms
270:	learn: 19.8527225	total: 527ms	remaining: 56.4ms
271:	learn: 19.8287003	total: 528ms	remaining: 54.4ms
272:	learn: 19.8086766	total: 530ms	remaining: 52.4ms
273:	learn: 19.7689447	total: 531ms	remaining: 50.4ms
274:	learn: 19.7234100	total: 533ms	remaining: 48.4ms
275:	learn: 19.6849292	total: 534ms	remaining: 46.5ms
276:	learn: 19.6617622	total: 536ms	remaining: 44.5ms
277:	learn: 19.6499816	total: 537ms	remaining: 42.5ms
278:	learn: 19.6342533	total: 539ms	remaining: 40.6ms
279:	learn: 19.5980998	total: 541ms	remaining: 38.6ms
280:	learn: 19.5756499	total: 542ms	remaining: 36.7ms
281:	learn: 19.5401042	total: 544ms	remaining: 34.7ms
282:	learn: 19.4985039	total: 546ms	remaining: 32.8ms
283:	learn: 19.4689965	total: 547ms	remaining: 30.8ms
284:	learn: 19.4485049	total: 549ms	remaining: 28.9ms
285:	learn: 19.4328311	total: 550ms	remaining: 26.9ms
286:	learn: 19.4152407	total: 552ms	remaining: 25ms
287:	learn: 19.3800739	total: 553ms	remaining: 23.1ms
288:	learn: 19.3610650	total: 555ms	remaining: 21.1ms
289:	learn: 19.3492362	total: 556ms	remaining: 19.2ms
290:	learn: 19.3369408	total: 558ms	remaining: 17.3ms
291:	learn: 19.3095221	total: 560ms	remaining: 15.3ms
292:	learn: 19.2994660	total: 561ms	remaining: 13.4ms
293:	learn: 19.2744686	total: 563ms	remaining: 11.5ms
294:	learn: 19.2637387	total: 564ms	remaining: 9.56ms
295:	learn: 19.2458129	total: 566ms	remaining: 7.65ms
296:	learn: 19.2144916	total: 567ms	remaining: 5.73ms
297:	learn: 19.1977874	total: 569ms	remaining: 3.82ms
298:	learn: 19.1819866	total: 571ms	remaining: 1.91ms
299:	learn: 19.1553443	total: 572ms	remaining: 0us
0:	learn: 47.2473586	total: 2.6ms	remaining: 777ms
1:	learn: 47.0822087	total: 5.17ms	remaining: 771ms
2:	learn: 46.9145333	total: 7.53ms	remaining: 746ms
3:	learn: 46.7268864	total: 9.8ms	remaining: 725ms
4:	learn: 46.5563164	total: 12.2ms	remaining: 723ms
5:	learn: 46.3900705	total: 15ms	remaining: 733ms
6:	learn: 46.2495418	total: 17.2ms	remaining: 721ms
7:	learn: 46.1128787	total: 19.2ms	remaining: 701ms
8:	learn: 45.9066511	total: 21.4ms	remaining: 692ms
9:	learn: 45.7867128	total: 23.4ms	remaining: 679ms
10:	learn: 45.5776403	total: 25.3ms	remaining: 665ms
11:	learn: 45.4839186	total: 28.1ms	remaining: 673ms
12:	learn: 45.3513144	total: 30.6ms	remaining: 676ms
13:	learn: 45.1984758	total: 32.8ms	remaining: 669ms
14:	learn: 45.0569980	total: 34.7ms	remaining: 660ms
15:	learn: 44.9335781	total: 36.7ms	remaining: 651ms
16:	learn: 44.7164383	total: 38.6ms	remaining: 642ms
17:	learn: 44.6013181	total: 40.5ms	remaining: 635ms
18:	learn: 44.4911037	total: 42.6ms	remaining: 630ms
19:	learn: 44.3847907	total: 44.6ms	remaining: 624ms
20:	learn: 44.2011308	total: 46.6ms	remaining: 619ms
21:	learn: 44.0473899	total: 48.9ms	remaining: 617ms
22:	learn: 43.9346778	total: 50.8ms	remaining: 612ms
23:	learn: 43.7621516	total: 52.9ms	remaining: 608ms
24:	learn: 43.6554630	total: 54.8ms	remaining: 603ms
25:	learn: 43.5437765	total: 57.1ms	remaining: 601ms
26:	learn: 43.3682727	total: 59ms	remaining: 597ms
27:	learn: 43.2045232	total: 61.1ms	remaining: 594ms
28:	learn: 43.0783699	total: 63.2ms	remaining: 591ms
29:	learn: 42.9102799	total: 65.6ms	remaining: 590ms
30:	learn: 42.7757337	total: 67.9ms	remaining: 589ms
31:	learn: 42.5904584	total: 69.8ms	remaining: 585ms
32:	learn: 42.4469655	total: 71.8ms	remaining: 581ms
33:	learn: 42.2641608	total: 73.7ms	remaining: 576ms
34:	learn: 42.1099469	total: 75.6ms	remaining: 572ms
35:	learn: 42.0013923	total: 77.6ms	remaining: 569ms
36:	learn: 41.8770894	total: 79.6ms	remaining: 566ms
37:	learn: 41.7165983	total: 81.6ms	remaining: 562ms
38:	learn: 41.5813539	total: 83.7ms	remaining: 560ms
39:	learn: 41.4402515	total: 85.5ms	remaining: 556ms
40:	learn: 41.2541274	total: 87.5ms	remaining: 553ms
41:	learn: 41.1667955	total: 89.2ms	remaining: 548ms
42:	learn: 41.0722676	total: 90.9ms	remaining: 543ms
43:	learn: 40.9363980	total: 92.6ms	remaining: 538ms
44:	learn: 40.7533049	total: 94.6ms	remaining: 536ms
45:	learn: 40.6041322	total: 96.9ms	remaining: 535ms
46:	learn: 40.5008435	total: 99.1ms	remaining: 533ms
47:	learn: 40.3697322	total: 101ms	remaining: 532ms
48:	learn: 40.2759631	total: 104ms	remaining: 530ms
49:	learn: 40.1279586	total: 105ms	remaining: 527ms
50:	learn: 39.9652792	total: 107ms	remaining: 522ms
51:	learn: 39.8539606	total: 108ms	remaining: 517ms
52:	learn: 39.6955101	total: 110ms	remaining: 512ms
53:	learn: 39.5821296	total: 111ms	remaining: 508ms
54:	learn: 39.4233068	total: 113ms	remaining: 504ms
55:	learn: 39.2971509	total: 115ms	remaining: 499ms
56:	learn: 39.1803901	total: 116ms	remaining: 496ms
57:	learn: 39.0367888	total: 118ms	remaining: 492ms
58:	learn: 38.9224179	total: 119ms	remaining: 488ms
59:	learn: 38.8411359	total: 121ms	remaining: 484ms
60:	learn: 38.7165984	total: 122ms	remaining: 480ms
61:	learn: 38.6667773	total: 124ms	remaining: 477ms
62:	learn: 38.5546279	total: 126ms	remaining: 473ms
63:	learn: 38.4431995	total: 127ms	remaining: 469ms
64:	learn: 38.3473318	total: 129ms	remaining: 466ms
65:	learn: 38.1904490	total: 130ms	remaining: 462ms
66:	learn: 38.0753257	total: 132ms	remaining: 459ms
67:	learn: 37.9408944	total: 134ms	remaining: 455ms
68:	learn: 37.8273107	total: 135ms	remaining: 452ms
69:	learn: 37.7581459	total: 137ms	remaining: 449ms
70:	learn: 37.6659931	total: 138ms	remaining: 446ms
71:	learn: 37.6223010	total: 140ms	remaining: 443ms
72:	learn: 37.4659013	total: 141ms	remaining: 440ms
73:	learn: 37.3534370	total: 143ms	remaining: 436ms
74:	learn: 37.2761418	total: 144ms	remaining: 433ms
75:	learn: 37.1705453	total: 146ms	remaining: 431ms
76:	learn: 37.0355826	total: 148ms	remaining: 428ms
77:	learn: 36.8941196	total: 149ms	remaining: 425ms
78:	learn: 36.7822156	total: 151ms	remaining: 422ms
79:	learn: 36.6490564	total: 152ms	remaining: 419ms
80:	learn: 36.5833132	total: 154ms	remaining: 417ms
81:	learn: 36.4763998	total: 156ms	remaining: 414ms
82:	learn: 36.3568865	total: 157ms	remaining: 412ms
83:	learn: 36.2367073	total: 159ms	remaining: 409ms
84:	learn: 36.1214660	total: 161ms	remaining: 406ms
85:	learn: 36.0099768	total: 162ms	remaining: 404ms
86:	learn: 35.8913036	total: 164ms	remaining: 401ms
87:	learn: 35.7869338	total: 165ms	remaining: 398ms
88:	learn: 35.6760736	total: 167ms	remaining: 395ms
89:	learn: 35.5741023	total: 169ms	remaining: 393ms
90:	learn: 35.4984183	total: 170ms	remaining: 391ms
91:	learn: 35.3699381	total: 172ms	remaining: 389ms
92:	learn: 35.2647397	total: 174ms	remaining: 387ms
93:	learn: 35.1378698	total: 175ms	remaining: 384ms
94:	learn: 35.0179125	total: 177ms	remaining: 382ms
95:	learn: 34.9358381	total: 179ms	remaining: 379ms
96:	learn: 34.8732973	total: 180ms	remaining: 377ms
97:	learn: 34.7311293	total: 182ms	remaining: 374ms
98:	learn: 34.5920678	total: 183ms	remaining: 372ms
99:	learn: 34.4869641	total: 185ms	remaining: 370ms
100:	learn: 34.3660181	total: 187ms	remaining: 368ms
101:	learn: 34.2735816	total: 188ms	remaining: 365ms
102:	learn: 34.1694168	total: 190ms	remaining: 363ms
103:	learn: 34.0944141	total: 191ms	remaining: 360ms
104:	learn: 34.0053323	total: 193ms	remaining: 358ms
105:	learn: 33.8981420	total: 194ms	remaining: 356ms
106:	learn: 33.8459401	total: 196ms	remaining: 354ms
107:	learn: 33.7172741	total: 198ms	remaining: 351ms
108:	learn: 33.5848313	total: 200ms	remaining: 350ms
109:	learn: 33.5053918	total: 202ms	remaining: 348ms
110:	learn: 33.4221952	total: 203ms	remaining: 346ms
111:	learn: 33.3653330	total: 205ms	remaining: 344ms
112:	learn: 33.2624923	total: 206ms	remaining: 341ms
113:	learn: 33.1503856	total: 208ms	remaining: 339ms
114:	learn: 33.0752857	total: 209ms	remaining: 337ms
115:	learn: 33.0061348	total: 211ms	remaining: 335ms
116:	learn: 32.9062296	total: 213ms	remaining: 332ms
117:	learn: 32.8264062	total: 214ms	remaining: 330ms
118:	learn: 32.7044875	total: 216ms	remaining: 329ms
119:	learn: 32.6304321	total: 218ms	remaining: 327ms
120:	learn: 32.5325975	total: 219ms	remaining: 325ms
121:	learn: 32.4420173	total: 221ms	remaining: 322ms
122:	learn: 32.3569629	total: 223ms	remaining: 320ms
123:	learn: 32.2973512	total: 224ms	remaining: 318ms
124:	learn: 32.2464034	total: 226ms	remaining: 316ms
125:	learn: 32.1709823	total: 228ms	remaining: 314ms
126:	learn: 32.0885089	total: 229ms	remaining: 312ms
127:	learn: 32.0321351	total: 231ms	remaining: 310ms
128:	learn: 31.9511784	total: 233ms	remaining: 308ms
129:	learn: 31.8680402	total: 234ms	remaining: 307ms
130:	learn: 31.7617703	total: 236ms	remaining: 305ms
131:	learn: 31.7060123	total: 238ms	remaining: 303ms
132:	learn: 31.6296843	total: 242ms	remaining: 304ms
133:	learn: 31.5651784	total: 245ms	remaining: 303ms
134:	learn: 31.4985733	total: 247ms	remaining: 302ms
135:	learn: 31.4500531	total: 250ms	remaining: 301ms
136:	learn: 31.3728089	total: 252ms	remaining: 300ms
137:	learn: 31.3389149	total: 255ms	remaining: 299ms
138:	learn: 31.2730162	total: 257ms	remaining: 298ms
139:	learn: 31.2120202	total: 259ms	remaining: 296ms
140:	learn: 31.1199742	total: 261ms	remaining: 294ms
141:	learn: 31.0027679	total: 263ms	remaining: 292ms
142:	learn: 30.9098768	total: 265ms	remaining: 291ms
143:	learn: 30.8469678	total: 267ms	remaining: 289ms
144:	learn: 30.7755193	total: 269ms	remaining: 287ms
145:	learn: 30.7301942	total: 270ms	remaining: 285ms
146:	learn: 30.6558676	total: 272ms	remaining: 283ms
147:	learn: 30.5747912	total: 274ms	remaining: 281ms
148:	learn: 30.4939523	total: 276ms	remaining: 279ms
149:	learn: 30.4083652	total: 277ms	remaining: 277ms
150:	learn: 30.3453525	total: 279ms	remaining: 275ms
151:	learn: 30.2883430	total: 281ms	remaining: 273ms
152:	learn: 30.2390390	total: 282ms	remaining: 271ms
153:	learn: 30.1946995	total: 284ms	remaining: 269ms
154:	learn: 30.0955820	total: 286ms	remaining: 267ms
155:	learn: 30.0184386	total: 288ms	remaining: 266ms
156:	learn: 29.9665086	total: 290ms	remaining: 264ms
157:	learn: 29.9137060	total: 292ms	remaining: 262ms
158:	learn: 29.8596035	total: 293ms	remaining: 260ms
159:	learn: 29.7902987	total: 295ms	remaining: 258ms
160:	learn: 29.7319228	total: 297ms	remaining: 256ms
161:	learn: 29.6744829	total: 299ms	remaining: 255ms
162:	learn: 29.6210762	total: 301ms	remaining: 253ms
163:	learn: 29.5343855	total: 302ms	remaining: 251ms
164:	learn: 29.4690572	total: 304ms	remaining: 249ms
165:	learn: 29.3812604	total: 306ms	remaining: 247ms
166:	learn: 29.3454703	total: 308ms	remaining: 245ms
167:	learn: 29.3018505	total: 310ms	remaining: 243ms
168:	learn: 29.2290356	total: 312ms	remaining: 242ms
169:	learn: 29.1332014	total: 313ms	remaining: 239ms
170:	learn: 29.0731713	total: 315ms	remaining: 237ms
171:	learn: 28.9988362	total: 316ms	remaining: 235ms
172:	learn: 28.9296186	total: 318ms	remaining: 233ms
173:	learn: 28.8826750	total: 320ms	remaining: 232ms
174:	learn: 28.8056396	total: 321ms	remaining: 230ms
175:	learn: 28.7695823	total: 323ms	remaining: 227ms
176:	learn: 28.6823809	total: 324ms	remaining: 225ms
177:	learn: 28.6362300	total: 326ms	remaining: 223ms
178:	learn: 28.5563247	total: 327ms	remaining: 221ms
179:	learn: 28.4964793	total: 329ms	remaining: 219ms
180:	learn: 28.4285593	total: 331ms	remaining: 217ms
181:	learn: 28.3411415	total: 332ms	remaining: 215ms
182:	learn: 28.2457249	total: 334ms	remaining: 213ms
183:	learn: 28.2154946	total: 335ms	remaining: 211ms
184:	learn: 28.1388371	total: 337ms	remaining: 210ms
185:	learn: 28.0565956	total: 339ms	remaining: 208ms
186:	learn: 28.0297017	total: 341ms	remaining: 206ms
187:	learn: 28.0051477	total: 342ms	remaining: 204ms
188:	learn: 27.9661420	total: 344ms	remaining: 202ms
189:	learn: 27.9298860	total: 345ms	remaining: 200ms
190:	learn: 27.8953992	total: 347ms	remaining: 198ms
191:	learn: 27.8193847	total: 349ms	remaining: 196ms
192:	learn: 27.7871397	total: 350ms	remaining: 194ms
193:	learn: 27.7473911	total: 352ms	remaining: 192ms
194:	learn: 27.6926438	total: 353ms	remaining: 190ms
195:	learn: 27.6339285	total: 355ms	remaining: 188ms
196:	learn: 27.5937522	total: 356ms	remaining: 186ms
197:	learn: 27.5656187	total: 358ms	remaining: 184ms
198:	learn: 27.5068956	total: 360ms	remaining: 183ms
199:	learn: 27.4501115	total: 361ms	remaining: 181ms
200:	learn: 27.3750377	total: 363ms	remaining: 179ms
201:	learn: 27.3121982	total: 364ms	remaining: 177ms
202:	learn: 27.2770037	total: 366ms	remaining: 175ms
203:	learn: 27.1988825	total: 368ms	remaining: 173ms
204:	learn: 27.1673182	total: 369ms	remaining: 171ms
205:	learn: 27.1101403	total: 371ms	remaining: 169ms
206:	learn: 27.0851549	total: 372ms	remaining: 167ms
207:	learn: 27.0254148	total: 374ms	remaining: 165ms
208:	learn: 26.9923575	total: 376ms	remaining: 164ms
209:	learn: 26.9760256	total: 377ms	remaining: 162ms
210:	learn: 26.9348980	total: 379ms	remaining: 160ms
211:	learn: 26.8738488	total: 381ms	remaining: 158ms
212:	learn: 26.8472657	total: 383ms	remaining: 156ms
213:	learn: 26.7901840	total: 384ms	remaining: 154ms
214:	learn: 26.7477355	total: 386ms	remaining: 153ms
215:	learn: 26.7242354	total: 388ms	remaining: 151ms
216:	learn: 26.6660087	total: 389ms	remaining: 149ms
217:	learn: 26.6467805	total: 391ms	remaining: 147ms
218:	learn: 26.5847674	total: 393ms	remaining: 145ms
219:	learn: 26.5635661	total: 394ms	remaining: 143ms
220:	learn: 26.5010331	total: 396ms	remaining: 141ms
221:	learn: 26.4494444	total: 397ms	remaining: 140ms
222:	learn: 26.4323432	total: 399ms	remaining: 138ms
223:	learn: 26.3884407	total: 400ms	remaining: 136ms
224:	learn: 26.3352548	total: 402ms	remaining: 134ms
225:	learn: 26.2697538	total: 404ms	remaining: 132ms
226:	learn: 26.2390244	total: 406ms	remaining: 130ms
227:	learn: 26.1566609	total: 407ms	remaining: 129ms
228:	learn: 26.1186489	total: 409ms	remaining: 127ms
229:	learn: 26.0466786	total: 410ms	remaining: 125ms
230:	learn: 25.9982903	total: 412ms	remaining: 123ms
231:	learn: 25.9328991	total: 413ms	remaining: 121ms
232:	learn: 25.9072291	total: 415ms	remaining: 119ms
233:	learn: 25.8692414	total: 417ms	remaining: 117ms
234:	learn: 25.8127398	total: 418ms	remaining: 116ms
235:	learn: 25.7605141	total: 420ms	remaining: 114ms
236:	learn: 25.7260171	total: 422ms	remaining: 112ms
237:	learn: 25.6655065	total: 424ms	remaining: 110ms
238:	learn: 25.6202786	total: 425ms	remaining: 109ms
239:	learn: 25.5992821	total: 427ms	remaining: 107ms
240:	learn: 25.5760013	total: 429ms	remaining: 105ms
241:	learn: 25.5176670	total: 430ms	remaining: 103ms
242:	learn: 25.4628242	total: 432ms	remaining: 101ms
243:	learn: 25.4371827	total: 434ms	remaining: 99.5ms
244:	learn: 25.4190070	total: 435ms	remaining: 97.7ms
245:	learn: 25.3708493	total: 436ms	remaining: 95.7ms
246:	learn: 25.3203846	total: 438ms	remaining: 94ms
247:	learn: 25.2770759	total: 440ms	remaining: 92.2ms
248:	learn: 25.2052641	total: 442ms	remaining: 90.4ms
249:	learn: 25.1805311	total: 444ms	remaining: 88.8ms
250:	learn: 25.1549221	total: 448ms	remaining: 87.5ms
251:	learn: 25.0658462	total: 451ms	remaining: 86ms
252:	learn: 25.0466489	total: 455ms	remaining: 84.4ms
253:	learn: 25.0064469	total: 459ms	remaining: 83.2ms
254:	learn: 24.9708571	total: 463ms	remaining: 81.7ms
255:	learn: 24.9439838	total: 466ms	remaining: 80ms
256:	learn: 24.9220046	total: 468ms	remaining: 78.3ms
257:	learn: 24.8815421	total: 471ms	remaining: 76.6ms
258:	learn: 24.8652712	total: 474ms	remaining: 75ms
259:	learn: 24.8391802	total: 476ms	remaining: 73.2ms
260:	learn: 24.8225190	total: 478ms	remaining: 71.4ms
261:	learn: 24.7657563	total: 480ms	remaining: 69.6ms
262:	learn: 24.7524663	total: 482ms	remaining: 67.8ms
263:	learn: 24.7219517	total: 484ms	remaining: 66.1ms
264:	learn: 24.7081727	total: 486ms	remaining: 64.2ms
265:	learn: 24.6733459	total: 488ms	remaining: 62.4ms
266:	learn: 24.6591376	total: 490ms	remaining: 60.6ms
267:	learn: 24.6287826	total: 492ms	remaining: 58.8ms
268:	learn: 24.6150519	total: 495ms	remaining: 57ms
269:	learn: 24.6055137	total: 497ms	remaining: 55.2ms
270:	learn: 24.5763027	total: 499ms	remaining: 53.4ms
271:	learn: 24.5318877	total: 501ms	remaining: 51.6ms
272:	learn: 24.4874949	total: 503ms	remaining: 49.8ms
273:	learn: 24.4266654	total: 505ms	remaining: 47.9ms
274:	learn: 24.4084324	total: 508ms	remaining: 46.1ms
275:	learn: 24.3648836	total: 509ms	remaining: 44.2ms
276:	learn: 24.3466697	total: 511ms	remaining: 42.4ms
277:	learn: 24.3100902	total: 513ms	remaining: 40.6ms
278:	learn: 24.2475437	total: 514ms	remaining: 38.7ms
279:	learn: 24.2017116	total: 516ms	remaining: 36.9ms
280:	learn: 24.1797884	total: 518ms	remaining: 35ms
281:	learn: 24.1488294	total: 521ms	remaining: 33.2ms
282:	learn: 24.1298836	total: 523ms	remaining: 31.4ms
283:	learn: 24.0778698	total: 525ms	remaining: 29.6ms
284:	learn: 24.0162312	total: 527ms	remaining: 27.7ms
285:	learn: 23.9689773	total: 529ms	remaining: 25.9ms
286:	learn: 23.9241064	total: 530ms	remaining: 24ms
287:	learn: 23.9107872	total: 532ms	remaining: 22.2ms
288:	learn: 23.8867705	total: 533ms	remaining: 20.3ms
289:	learn: 23.8657564	total: 535ms	remaining: 18.4ms
290:	learn: 23.8290522	total: 536ms	remaining: 16.6ms
291:	learn: 23.8085141	total: 538ms	remaining: 14.7ms
292:	learn: 23.7958277	total: 540ms	remaining: 12.9ms
293:	learn: 23.7808577	total: 541ms	remaining: 11ms
294:	learn: 23.7532235	total: 543ms	remaining: 9.2ms
295:	learn: 23.7204390	total: 544ms	remaining: 7.36ms
296:	learn: 23.7002256	total: 546ms	remaining: 5.51ms
297:	learn: 23.6871816	total: 547ms	remaining: 3.67ms
298:	learn: 23.6338318	total: 549ms	remaining: 1.83ms
299:	learn: 23.5824584	total: 550ms	remaining: 0us
0:	learn: 46.8123864	total: 1.77ms	remaining: 529ms
1:	learn: 46.6439435	total: 3.24ms	remaining: 483ms
2:	learn: 46.4728598	total: 4.88ms	remaining: 483ms
3:	learn: 46.3461682	total: 6.73ms	remaining: 498ms
4:	learn: 46.1510938	total: 8.48ms	remaining: 500ms
5:	learn: 45.9093039	total: 10.1ms	remaining: 494ms
6:	learn: 45.7710045	total: 11.7ms	remaining: 488ms
7:	learn: 45.5998163	total: 13.3ms	remaining: 487ms
8:	learn: 45.4669566	total: 14.9ms	remaining: 481ms
9:	learn: 45.3327945	total: 16.5ms	remaining: 479ms
10:	learn: 45.2132216	total: 18.1ms	remaining: 475ms
11:	learn: 45.1058541	total: 19.8ms	remaining: 475ms
12:	learn: 44.9755763	total: 21.3ms	remaining: 470ms
13:	learn: 44.8523549	total: 22.8ms	remaining: 466ms
14:	learn: 44.7213295	total: 24.4ms	remaining: 464ms
15:	learn: 44.6097169	total: 26.1ms	remaining: 464ms
16:	learn: 44.4116732	total: 27.7ms	remaining: 461ms
17:	learn: 44.3005244	total: 29.5ms	remaining: 462ms
18:	learn: 44.1851481	total: 31.4ms	remaining: 464ms
19:	learn: 44.0847215	total: 33.2ms	remaining: 465ms
20:	learn: 43.9090863	total: 34.7ms	remaining: 462ms
21:	learn: 43.7360000	total: 36.3ms	remaining: 458ms
22:	learn: 43.6429988	total: 37.7ms	remaining: 455ms
23:	learn: 43.4995976	total: 39.3ms	remaining: 452ms
24:	learn: 43.3491878	total: 40.9ms	remaining: 449ms
25:	learn: 43.2400388	total: 42.3ms	remaining: 446ms
26:	learn: 43.1400856	total: 43.9ms	remaining: 444ms
27:	learn: 42.9651928	total: 45.7ms	remaining: 444ms
28:	learn: 42.8636478	total: 47.5ms	remaining: 444ms
29:	learn: 42.7058476	total: 49.2ms	remaining: 443ms
30:	learn: 42.6223025	total: 50.9ms	remaining: 442ms
31:	learn: 42.5149105	total: 52.7ms	remaining: 441ms
32:	learn: 42.3776427	total: 54.4ms	remaining: 440ms
33:	learn: 42.2136528	total: 56ms	remaining: 438ms
34:	learn: 42.0803972	total: 57.6ms	remaining: 436ms
35:	learn: 41.9586701	total: 59.2ms	remaining: 434ms
36:	learn: 41.8044514	total: 60.9ms	remaining: 433ms
37:	learn: 41.6425568	total: 62.6ms	remaining: 432ms
38:	learn: 41.5312228	total: 64.4ms	remaining: 431ms
39:	learn: 41.3758088	total: 66.1ms	remaining: 430ms
40:	learn: 41.2287784	total: 68ms	remaining: 429ms
41:	learn: 41.0650918	total: 70.2ms	remaining: 431ms
42:	learn: 40.9685357	total: 73.7ms	remaining: 441ms
43:	learn: 40.8525952	total: 76.5ms	remaining: 445ms
44:	learn: 40.6723176	total: 79.2ms	remaining: 449ms
45:	learn: 40.5157592	total: 82ms	remaining: 453ms
46:	learn: 40.3649184	total: 84.3ms	remaining: 454ms
47:	learn: 40.2212390	total: 86.5ms	remaining: 454ms
48:	learn: 40.1136487	total: 89ms	remaining: 456ms
49:	learn: 39.9470441	total: 91.1ms	remaining: 455ms
50:	learn: 39.8180835	total: 92.9ms	remaining: 454ms
51:	learn: 39.6783358	total: 95ms	remaining: 453ms
52:	learn: 39.4965980	total: 97.6ms	remaining: 455ms
53:	learn: 39.4113774	total: 99.3ms	remaining: 453ms
54:	learn: 39.2510168	total: 101ms	remaining: 450ms
55:	learn: 39.1119218	total: 103ms	remaining: 447ms
56:	learn: 38.9596071	total: 104ms	remaining: 445ms
57:	learn: 38.8580172	total: 106ms	remaining: 442ms
58:	learn: 38.7544482	total: 108ms	remaining: 440ms
59:	learn: 38.6554091	total: 110ms	remaining: 438ms
60:	learn: 38.5097630	total: 111ms	remaining: 436ms
61:	learn: 38.4664936	total: 113ms	remaining: 433ms
62:	learn: 38.3211437	total: 115ms	remaining: 431ms
63:	learn: 38.1940740	total: 116ms	remaining: 428ms
64:	learn: 38.0836956	total: 118ms	remaining: 426ms
65:	learn: 37.9978704	total: 119ms	remaining: 423ms
66:	learn: 37.8924138	total: 121ms	remaining: 420ms
67:	learn: 37.7980446	total: 122ms	remaining: 417ms
68:	learn: 37.6827258	total: 124ms	remaining: 414ms
69:	learn: 37.5813412	total: 125ms	remaining: 411ms
70:	learn: 37.4940225	total: 127ms	remaining: 408ms
71:	learn: 37.3560171	total: 128ms	remaining: 406ms
72:	learn: 37.2551496	total: 130ms	remaining: 403ms
73:	learn: 37.1712543	total: 132ms	remaining: 402ms
74:	learn: 37.0388429	total: 133ms	remaining: 400ms
75:	learn: 36.9404467	total: 135ms	remaining: 398ms
76:	learn: 36.7992176	total: 137ms	remaining: 396ms
77:	learn: 36.6894036	total: 138ms	remaining: 394ms
78:	learn: 36.5997606	total: 140ms	remaining: 392ms
79:	learn: 36.4580564	total: 142ms	remaining: 390ms
80:	learn: 36.3715213	total: 143ms	remaining: 387ms
81:	learn: 36.3158167	total: 145ms	remaining: 385ms
82:	learn: 36.1772603	total: 146ms	remaining: 382ms
83:	learn: 36.1324186	total: 148ms	remaining: 380ms
84:	learn: 36.0023982	total: 149ms	remaining: 378ms
85:	learn: 35.8977325	total: 151ms	remaining: 376ms
86:	learn: 35.8171626	total: 153ms	remaining: 374ms
87:	learn: 35.7151052	total: 154ms	remaining: 371ms
88:	learn: 35.5805788	total: 156ms	remaining: 369ms
89:	learn: 35.4551601	total: 157ms	remaining: 367ms
90:	learn: 35.3352533	total: 159ms	remaining: 364ms
91:	learn: 35.2201924	total: 160ms	remaining: 362ms
92:	learn: 35.0867878	total: 162ms	remaining: 360ms
93:	learn: 34.9701676	total: 163ms	remaining: 358ms
94:	learn: 34.8559765	total: 165ms	remaining: 356ms
95:	learn: 34.7684669	total: 166ms	remaining: 353ms
96:	learn: 34.7011699	total: 168ms	remaining: 351ms
97:	learn: 34.6392360	total: 169ms	remaining: 349ms
98:	learn: 34.5013228	total: 171ms	remaining: 347ms
99:	learn: 34.4159561	total: 172ms	remaining: 345ms
100:	learn: 34.3599335	total: 174ms	remaining: 343ms
101:	learn: 34.2662263	total: 176ms	remaining: 341ms
102:	learn: 34.1858267	total: 177ms	remaining: 338ms
103:	learn: 34.1503703	total: 178ms	remaining: 336ms
104:	learn: 34.0434391	total: 180ms	remaining: 334ms
105:	learn: 33.9306776	total: 181ms	remaining: 332ms
106:	learn: 33.8212273	total: 183ms	remaining: 330ms
107:	learn: 33.7487055	total: 185ms	remaining: 328ms
108:	learn: 33.6612285	total: 186ms	remaining: 326ms
109:	learn: 33.5936893	total: 188ms	remaining: 324ms
110:	learn: 33.5160243	total: 189ms	remaining: 322ms
111:	learn: 33.4534349	total: 191ms	remaining: 320ms
112:	learn: 33.3720985	total: 192ms	remaining: 318ms
113:	learn: 33.2709022	total: 194ms	remaining: 316ms
114:	learn: 33.2186484	total: 195ms	remaining: 314ms
115:	learn: 33.1305515	total: 197ms	remaining: 312ms
116:	learn: 33.0412676	total: 198ms	remaining: 310ms
117:	learn: 32.9219359	total: 200ms	remaining: 308ms
118:	learn: 32.7801752	total: 201ms	remaining: 306ms
119:	learn: 32.7283825	total: 203ms	remaining: 304ms
120:	learn: 32.6245992	total: 205ms	remaining: 303ms
121:	learn: 32.5461444	total: 206ms	remaining: 301ms
122:	learn: 32.4730959	total: 208ms	remaining: 299ms
123:	learn: 32.4162612	total: 209ms	remaining: 297ms
124:	learn: 32.3365655	total: 211ms	remaining: 295ms
125:	learn: 32.2834445	total: 213ms	remaining: 294ms
126:	learn: 32.1740651	total: 214ms	remaining: 292ms
127:	learn: 32.1276313	total: 216ms	remaining: 290ms
128:	learn: 32.0247248	total: 218ms	remaining: 289ms
129:	learn: 31.9585672	total: 219ms	remaining: 287ms
130:	learn: 31.8731774	total: 221ms	remaining: 285ms
131:	learn: 31.8229682	total: 222ms	remaining: 283ms
132:	learn: 31.7220156	total: 224ms	remaining: 281ms
133:	learn: 31.6363982	total: 226ms	remaining: 279ms
134:	learn: 31.5413546	total: 227ms	remaining: 278ms
135:	learn: 31.4825168	total: 229ms	remaining: 276ms
136:	learn: 31.3870918	total: 230ms	remaining: 274ms
137:	learn: 31.3691295	total: 232ms	remaining: 272ms
138:	learn: 31.3111013	total: 233ms	remaining: 270ms
139:	learn: 31.2251822	total: 235ms	remaining: 269ms
140:	learn: 31.1671209	total: 237ms	remaining: 267ms
141:	learn: 31.0793758	total: 239ms	remaining: 266ms
142:	learn: 30.9840799	total: 240ms	remaining: 264ms
143:	learn: 30.9272075	total: 242ms	remaining: 262ms
144:	learn: 30.8477944	total: 243ms	remaining: 260ms
145:	learn: 30.7636140	total: 245ms	remaining: 258ms
146:	learn: 30.6927319	total: 246ms	remaining: 256ms
147:	learn: 30.6053025	total: 248ms	remaining: 254ms
148:	learn: 30.5402021	total: 249ms	remaining: 252ms
149:	learn: 30.4904707	total: 251ms	remaining: 251ms
150:	learn: 30.4231514	total: 253ms	remaining: 249ms
151:	learn: 30.3753309	total: 254ms	remaining: 248ms
152:	learn: 30.3287473	total: 256ms	remaining: 246ms
153:	learn: 30.2450278	total: 258ms	remaining: 244ms
154:	learn: 30.1593566	total: 259ms	remaining: 242ms
155:	learn: 30.1025185	total: 261ms	remaining: 241ms
156:	learn: 30.0254817	total: 263ms	remaining: 239ms
157:	learn: 29.9766485	total: 264ms	remaining: 238ms
158:	learn: 29.9098458	total: 266ms	remaining: 236ms
159:	learn: 29.8572697	total: 268ms	remaining: 235ms
160:	learn: 29.8049512	total: 270ms	remaining: 233ms
161:	learn: 29.7301398	total: 272ms	remaining: 232ms
162:	learn: 29.6951198	total: 274ms	remaining: 230ms
163:	learn: 29.6494166	total: 276ms	remaining: 229ms
164:	learn: 29.6128044	total: 280ms	remaining: 229ms
165:	learn: 29.5223372	total: 283ms	remaining: 228ms
166:	learn: 29.4826838	total: 287ms	remaining: 228ms
167:	learn: 29.4477004	total: 292ms	remaining: 229ms
168:	learn: 29.3831841	total: 296ms	remaining: 230ms
169:	learn: 29.3086357	total: 299ms	remaining: 228ms
170:	learn: 29.2486310	total: 301ms	remaining: 227ms
171:	learn: 29.1912126	total: 305ms	remaining: 227ms
172:	learn: 29.1593021	total: 307ms	remaining: 225ms
173:	learn: 29.1306727	total: 309ms	remaining: 224ms
174:	learn: 29.0691221	total: 311ms	remaining: 222ms
175:	learn: 29.0422640	total: 313ms	remaining: 220ms
176:	learn: 28.9668208	total: 315ms	remaining: 219ms
177:	learn: 28.9409329	total: 317ms	remaining: 217ms
178:	learn: 28.9113536	total: 319ms	remaining: 216ms
179:	learn: 28.8747391	total: 321ms	remaining: 214ms
180:	learn: 28.8157524	total: 323ms	remaining: 213ms
181:	learn: 28.7898652	total: 326ms	remaining: 211ms
182:	learn: 28.7138873	total: 328ms	remaining: 210ms
183:	learn: 28.6413091	total: 330ms	remaining: 208ms
184:	learn: 28.6264903	total: 332ms	remaining: 206ms
185:	learn: 28.5742796	total: 334ms	remaining: 205ms
186:	learn: 28.5433744	total: 336ms	remaining: 203ms
187:	learn: 28.4901843	total: 338ms	remaining: 202ms
188:	learn: 28.4537922	total: 341ms	remaining: 200ms
189:	learn: 28.3661189	total: 342ms	remaining: 198ms
190:	learn: 28.3282569	total: 344ms	remaining: 196ms
191:	learn: 28.2715649	total: 346ms	remaining: 195ms
192:	learn: 28.2153173	total: 348ms	remaining: 193ms
193:	learn: 28.1772176	total: 350ms	remaining: 191ms
194:	learn: 28.1276292	total: 352ms	remaining: 189ms
195:	learn: 28.0977547	total: 354ms	remaining: 188ms
196:	learn: 28.0556057	total: 356ms	remaining: 186ms
197:	learn: 28.0187160	total: 358ms	remaining: 184ms
198:	learn: 27.9659258	total: 359ms	remaining: 182ms
199:	learn: 27.9246875	total: 361ms	remaining: 180ms
200:	learn: 27.8773081	total: 362ms	remaining: 178ms
201:	learn: 27.8454952	total: 364ms	remaining: 176ms
202:	learn: 27.7890931	total: 365ms	remaining: 174ms
203:	learn: 27.7350910	total: 366ms	remaining: 172ms
204:	learn: 27.6662910	total: 368ms	remaining: 171ms
205:	learn: 27.6058152	total: 370ms	remaining: 169ms
206:	learn: 27.5851019	total: 371ms	remaining: 167ms
207:	learn: 27.5278079	total: 373ms	remaining: 165ms
208:	learn: 27.5008861	total: 374ms	remaining: 163ms
209:	learn: 27.4892440	total: 376ms	remaining: 161ms
210:	learn: 27.4553735	total: 378ms	remaining: 159ms
211:	learn: 27.3927748	total: 379ms	remaining: 157ms
212:	learn: 27.3689973	total: 381ms	remaining: 155ms
213:	learn: 27.3528154	total: 382ms	remaining: 154ms
214:	learn: 27.3233932	total: 384ms	remaining: 152ms
215:	learn: 27.2936807	total: 385ms	remaining: 150ms
216:	learn: 27.2469055	total: 387ms	remaining: 148ms
217:	learn: 27.2199301	total: 389ms	remaining: 146ms
218:	learn: 27.1766279	total: 390ms	remaining: 144ms
219:	learn: 27.1264094	total: 392ms	remaining: 142ms
220:	learn: 27.0869861	total: 393ms	remaining: 141ms
221:	learn: 27.0499703	total: 395ms	remaining: 139ms
222:	learn: 27.0289082	total: 396ms	remaining: 137ms
223:	learn: 26.9782195	total: 398ms	remaining: 135ms
224:	learn: 26.9452078	total: 399ms	remaining: 133ms
225:	learn: 26.8895170	total: 401ms	remaining: 131ms
226:	learn: 26.8578051	total: 402ms	remaining: 129ms
227:	learn: 26.8346752	total: 404ms	remaining: 128ms
228:	learn: 26.7898183	total: 405ms	remaining: 126ms
229:	learn: 26.7495764	total: 407ms	remaining: 124ms
230:	learn: 26.6981037	total: 408ms	remaining: 122ms
231:	learn: 26.6737577	total: 410ms	remaining: 120ms
232:	learn: 26.6548891	total: 411ms	remaining: 118ms
233:	learn: 26.6224420	total: 413ms	remaining: 116ms
234:	learn: 26.5666306	total: 414ms	remaining: 115ms
235:	learn: 26.5121705	total: 416ms	remaining: 113ms
236:	learn: 26.4823788	total: 417ms	remaining: 111ms
237:	learn: 26.4160437	total: 419ms	remaining: 109ms
238:	learn: 26.3717696	total: 421ms	remaining: 107ms
239:	learn: 26.3200134	total: 422ms	remaining: 106ms
240:	learn: 26.2905419	total: 424ms	remaining: 104ms
241:	learn: 26.2460382	total: 426ms	remaining: 102ms
242:	learn: 26.1959512	total: 427ms	remaining: 100ms
243:	learn: 26.1873459	total: 429ms	remaining: 98.5ms
244:	learn: 26.1520963	total: 431ms	remaining: 96.7ms
245:	learn: 26.0937386	total: 432ms	remaining: 94.9ms
246:	learn: 26.0640140	total: 434ms	remaining: 93.1ms
247:	learn: 26.0078303	total: 435ms	remaining: 91.3ms
248:	learn: 25.9975318	total: 437ms	remaining: 89.5ms
249:	learn: 25.9475206	total: 439ms	remaining: 87.8ms
250:	learn: 25.9158847	total: 440ms	remaining: 86ms
251:	learn: 25.8695846	total: 442ms	remaining: 84.2ms
252:	learn: 25.8510793	total: 444ms	remaining: 82.4ms
253:	learn: 25.8419271	total: 445ms	remaining: 80.6ms
254:	learn: 25.8020764	total: 447ms	remaining: 78.9ms
255:	learn: 25.7653029	total: 449ms	remaining: 77.1ms
256:	learn: 25.7040273	total: 450ms	remaining: 75.4ms
257:	learn: 25.6306249	total: 452ms	remaining: 73.6ms
258:	learn: 25.6177741	total: 454ms	remaining: 71.9ms
259:	learn: 25.5939121	total: 456ms	remaining: 70.2ms
260:	learn: 25.5627347	total: 458ms	remaining: 68.4ms
261:	learn: 25.5127991	total: 460ms	remaining: 66.7ms
262:	learn: 25.4899370	total: 461ms	remaining: 64.9ms
263:	learn: 25.4274802	total: 463ms	remaining: 63.1ms
264:	learn: 25.4089121	total: 465ms	remaining: 61.4ms
265:	learn: 25.3559627	total: 466ms	remaining: 59.6ms
266:	learn: 25.3447015	total: 468ms	remaining: 57.9ms
267:	learn: 25.3310975	total: 472ms	remaining: 56.3ms
268:	learn: 25.3176207	total: 475ms	remaining: 54.7ms
269:	learn: 25.3067952	total: 477ms	remaining: 53ms
270:	learn: 25.2517809	total: 480ms	remaining: 51.3ms
271:	learn: 25.2310761	total: 482ms	remaining: 49.6ms
272:	learn: 25.1921775	total: 484ms	remaining: 47.9ms
273:	learn: 25.1842495	total: 487ms	remaining: 46.2ms
274:	learn: 25.1323973	total: 489ms	remaining: 44.5ms
275:	learn: 25.1137577	total: 491ms	remaining: 42.7ms
276:	learn: 25.0959857	total: 493ms	remaining: 40.9ms
277:	learn: 25.0763860	total: 495ms	remaining: 39.2ms
278:	learn: 25.0584112	total: 497ms	remaining: 37.4ms
279:	learn: 25.0128845	total: 499ms	remaining: 35.6ms
280:	learn: 25.0015807	total: 500ms	remaining: 33.8ms
281:	learn: 24.9706284	total: 502ms	remaining: 32ms
282:	learn: 24.9635882	total: 503ms	remaining: 30.2ms
283:	learn: 24.9140020	total: 505ms	remaining: 28.4ms
284:	learn: 24.8931065	total: 507ms	remaining: 26.7ms
285:	learn: 24.8528087	total: 508ms	remaining: 24.9ms
286:	learn: 24.8447024	total: 510ms	remaining: 23.1ms
287:	learn: 24.7983324	total: 511ms	remaining: 21.3ms
288:	learn: 24.7885242	total: 513ms	remaining: 19.5ms
289:	learn: 24.7510155	total: 514ms	remaining: 17.7ms
290:	learn: 24.7409537	total: 516ms	remaining: 16ms
291:	learn: 24.7137671	total: 517ms	remaining: 14.2ms
292:	learn: 24.6892018	total: 519ms	remaining: 12.4ms
293:	learn: 24.6796397	total: 520ms	remaining: 10.6ms
294:	learn: 24.6742411	total: 522ms	remaining: 8.85ms
295:	learn: 24.6577408	total: 524ms	remaining: 7.08ms
296:	learn: 24.6377568	total: 525ms	remaining: 5.31ms
297:	learn: 24.6174868	total: 527ms	remaining: 3.54ms
298:	learn: 24.5889581	total: 529ms	remaining: 1.77ms
299:	learn: 24.5467643	total: 530ms	remaining: 0us
0:	learn: 47.4393745	total: 1.76ms	remaining: 527ms
1:	learn: 47.3115123	total: 3.46ms	remaining: 516ms
2:	learn: 47.1299792	total: 4.96ms	remaining: 491ms
3:	learn: 46.9713689	total: 6.48ms	remaining: 479ms
4:	learn: 46.7746123	total: 8.04ms	remaining: 475ms
5:	learn: 46.5688177	total: 9.62ms	remaining: 471ms
6:	learn: 46.4290273	total: 11ms	remaining: 460ms
7:	learn: 46.2474512	total: 12.5ms	remaining: 456ms
8:	learn: 46.0860872	total: 13.9ms	remaining: 450ms
9:	learn: 45.9580823	total: 15.4ms	remaining: 446ms
10:	learn: 45.8343714	total: 16.9ms	remaining: 444ms
11:	learn: 45.6593089	total: 18.4ms	remaining: 442ms
12:	learn: 45.5336258	total: 20.1ms	remaining: 444ms
13:	learn: 45.3581260	total: 21.6ms	remaining: 442ms
14:	learn: 45.2211303	total: 23.1ms	remaining: 439ms
15:	learn: 45.0911481	total: 24.6ms	remaining: 437ms
16:	learn: 44.9167918	total: 26.2ms	remaining: 436ms
17:	learn: 44.8100775	total: 27.7ms	remaining: 433ms
18:	learn: 44.6023688	total: 29.2ms	remaining: 431ms
19:	learn: 44.4981743	total: 30.6ms	remaining: 429ms
20:	learn: 44.3373955	total: 32.1ms	remaining: 427ms
21:	learn: 44.2030097	total: 33.5ms	remaining: 424ms
22:	learn: 44.0963602	total: 35ms	remaining: 422ms
23:	learn: 43.9512811	total: 36.8ms	remaining: 423ms
24:	learn: 43.7538126	total: 38.3ms	remaining: 421ms
25:	learn: 43.6337305	total: 39.7ms	remaining: 419ms
26:	learn: 43.4674922	total: 41.4ms	remaining: 418ms
27:	learn: 43.2941897	total: 42.8ms	remaining: 416ms
28:	learn: 43.1896135	total: 44.4ms	remaining: 415ms
29:	learn: 43.0299768	total: 45.9ms	remaining: 413ms
30:	learn: 42.9350201	total: 47.3ms	remaining: 411ms
31:	learn: 42.8306424	total: 48.9ms	remaining: 409ms
32:	learn: 42.6551390	total: 50.4ms	remaining: 408ms
33:	learn: 42.4989990	total: 52.2ms	remaining: 409ms
34:	learn: 42.3481235	total: 54.2ms	remaining: 411ms
35:	learn: 42.2225782	total: 55.9ms	remaining: 410ms
36:	learn: 42.0652681	total: 57.6ms	remaining: 410ms
37:	learn: 41.9695110	total: 59.4ms	remaining: 409ms
38:	learn: 41.8496483	total: 60.9ms	remaining: 407ms
39:	learn: 41.6769844	total: 62.3ms	remaining: 405ms
40:	learn: 41.5095961	total: 63.8ms	remaining: 403ms
41:	learn: 41.3705149	total: 65.3ms	remaining: 401ms
42:	learn: 41.2691399	total: 66.9ms	remaining: 400ms
43:	learn: 41.1541370	total: 68.5ms	remaining: 399ms
44:	learn: 41.0095865	total: 70.5ms	remaining: 399ms
45:	learn: 40.8653191	total: 72.3ms	remaining: 399ms
46:	learn: 40.7816168	total: 74ms	remaining: 398ms
47:	learn: 40.6167140	total: 75.6ms	remaining: 397ms
48:	learn: 40.5125275	total: 77.4ms	remaining: 396ms
49:	learn: 40.3440726	total: 79ms	remaining: 395ms
50:	learn: 40.2166469	total: 80.7ms	remaining: 394ms
51:	learn: 40.0753607	total: 82.8ms	remaining: 395ms
52:	learn: 39.8960811	total: 84.7ms	remaining: 395ms
53:	learn: 39.8147773	total: 86.7ms	remaining: 395ms
54:	learn: 39.6544064	total: 88.8ms	remaining: 396ms
55:	learn: 39.4907129	total: 90.9ms	remaining: 396ms
56:	learn: 39.3468759	total: 93ms	remaining: 396ms
57:	learn: 39.2136021	total: 96.3ms	remaining: 402ms
58:	learn: 39.1045650	total: 99.4ms	remaining: 406ms
59:	learn: 38.9515436	total: 102ms	remaining: 409ms
60:	learn: 38.8126148	total: 105ms	remaining: 413ms
61:	learn: 38.7049448	total: 109ms	remaining: 419ms
62:	learn: 38.5832861	total: 113ms	remaining: 424ms
63:	learn: 38.4595489	total: 115ms	remaining: 425ms
64:	learn: 38.3498858	total: 119ms	remaining: 429ms
65:	learn: 38.2633513	total: 122ms	remaining: 432ms
66:	learn: 38.1445155	total: 124ms	remaining: 430ms
67:	learn: 38.0483078	total: 126ms	remaining: 429ms
68:	learn: 37.9312328	total: 128ms	remaining: 428ms
69:	learn: 37.8492968	total: 130ms	remaining: 427ms
70:	learn: 37.7414347	total: 132ms	remaining: 425ms
71:	learn: 37.6560964	total: 134ms	remaining: 424ms
72:	learn: 37.5108434	total: 136ms	remaining: 422ms
73:	learn: 37.3893827	total: 138ms	remaining: 421ms
74:	learn: 37.3119144	total: 140ms	remaining: 420ms
75:	learn: 37.2296704	total: 142ms	remaining: 419ms
76:	learn: 37.1028614	total: 144ms	remaining: 417ms
77:	learn: 36.9745410	total: 146ms	remaining: 415ms
78:	learn: 36.8411536	total: 148ms	remaining: 415ms
79:	learn: 36.7253315	total: 150ms	remaining: 413ms
80:	learn: 36.6086737	total: 152ms	remaining: 411ms
81:	learn: 36.5444007	total: 154ms	remaining: 410ms
82:	learn: 36.4393125	total: 156ms	remaining: 408ms
83:	learn: 36.3102888	total: 158ms	remaining: 407ms
84:	learn: 36.1789372	total: 161ms	remaining: 407ms
85:	learn: 36.0664432	total: 163ms	remaining: 406ms
86:	learn: 35.9894764	total: 165ms	remaining: 404ms
87:	learn: 35.8991531	total: 167ms	remaining: 403ms
88:	learn: 35.7648321	total: 169ms	remaining: 402ms
89:	learn: 35.6432953	total: 172ms	remaining: 401ms
90:	learn: 35.5478705	total: 174ms	remaining: 400ms
91:	learn: 35.4789443	total: 177ms	remaining: 400ms
92:	learn: 35.3488936	total: 179ms	remaining: 397ms
93:	learn: 35.2640881	total: 180ms	remaining: 395ms
94:	learn: 35.2088976	total: 182ms	remaining: 392ms
95:	learn: 35.1217180	total: 183ms	remaining: 390ms
96:	learn: 35.0273772	total: 185ms	remaining: 387ms
97:	learn: 34.9253200	total: 187ms	remaining: 384ms
98:	learn: 34.7926643	total: 188ms	remaining: 382ms
99:	learn: 34.6877772	total: 190ms	remaining: 380ms
100:	learn: 34.6067494	total: 191ms	remaining: 377ms
101:	learn: 34.5217200	total: 193ms	remaining: 375ms
102:	learn: 34.4334545	total: 195ms	remaining: 372ms
103:	learn: 34.3745678	total: 196ms	remaining: 370ms
104:	learn: 34.2953158	total: 198ms	remaining: 367ms
105:	learn: 34.1807896	total: 199ms	remaining: 365ms
106:	learn: 34.1270167	total: 201ms	remaining: 363ms
107:	learn: 34.0450018	total: 202ms	remaining: 360ms
108:	learn: 33.9252963	total: 204ms	remaining: 358ms
109:	learn: 33.8547744	total: 206ms	remaining: 356ms
110:	learn: 33.7909411	total: 208ms	remaining: 353ms
111:	learn: 33.7132714	total: 209ms	remaining: 351ms
112:	learn: 33.6581506	total: 211ms	remaining: 349ms
113:	learn: 33.5625316	total: 212ms	remaining: 347ms
114:	learn: 33.5124325	total: 214ms	remaining: 344ms
115:	learn: 33.4338263	total: 216ms	remaining: 342ms
116:	learn: 33.3437173	total: 231ms	remaining: 361ms
117:	learn: 33.2930449	total: 232ms	remaining: 358ms
118:	learn: 33.1985472	total: 234ms	remaining: 356ms
119:	learn: 33.1380317	total: 235ms	remaining: 353ms
120:	learn: 33.0512942	total: 237ms	remaining: 351ms
121:	learn: 32.9681207	total: 239ms	remaining: 348ms
122:	learn: 32.9207505	total: 240ms	remaining: 346ms
123:	learn: 32.8315467	total: 242ms	remaining: 344ms
124:	learn: 32.7527284	total: 244ms	remaining: 342ms
125:	learn: 32.6892905	total: 246ms	remaining: 339ms
126:	learn: 32.5821109	total: 247ms	remaining: 337ms
127:	learn: 32.5358388	total: 249ms	remaining: 335ms
128:	learn: 32.4351700	total: 251ms	remaining: 332ms
129:	learn: 32.3739109	total: 252ms	remaining: 330ms
130:	learn: 32.2762003	total: 254ms	remaining: 328ms
131:	learn: 32.2338977	total: 256ms	remaining: 325ms
132:	learn: 32.1480841	total: 257ms	remaining: 323ms
133:	learn: 32.0726124	total: 259ms	remaining: 321ms
134:	learn: 32.0383128	total: 261ms	remaining: 319ms
135:	learn: 31.9909124	total: 263ms	remaining: 317ms
136:	learn: 31.8939530	total: 265ms	remaining: 316ms
137:	learn: 31.8630371	total: 267ms	remaining: 314ms
138:	learn: 31.7837403	total: 269ms	remaining: 312ms
139:	learn: 31.7007092	total: 271ms	remaining: 309ms
140:	learn: 31.6616834	total: 272ms	remaining: 307ms
141:	learn: 31.5668273	total: 274ms	remaining: 305ms
142:	learn: 31.4807015	total: 276ms	remaining: 303ms
143:	learn: 31.4033623	total: 278ms	remaining: 301ms
144:	learn: 31.3344872	total: 280ms	remaining: 299ms
145:	learn: 31.2945254	total: 282ms	remaining: 297ms
146:	learn: 31.2208343	total: 283ms	remaining: 295ms
147:	learn: 31.1302716	total: 285ms	remaining: 293ms
148:	learn: 31.0908961	total: 288ms	remaining: 292ms
149:	learn: 31.0556209	total: 291ms	remaining: 291ms
150:	learn: 31.0165997	total: 294ms	remaining: 290ms
151:	learn: 30.9190456	total: 297ms	remaining: 289ms
152:	learn: 30.8663229	total: 299ms	remaining: 287ms
153:	learn: 30.8277067	total: 301ms	remaining: 286ms
154:	learn: 30.7682740	total: 304ms	remaining: 284ms
155:	learn: 30.7226357	total: 306ms	remaining: 282ms
156:	learn: 30.6737420	total: 308ms	remaining: 280ms
157:	learn: 30.6256145	total: 310ms	remaining: 278ms
158:	learn: 30.5552859	total: 311ms	remaining: 276ms
159:	learn: 30.5015166	total: 314ms	remaining: 274ms
160:	learn: 30.4535031	total: 316ms	remaining: 272ms
161:	learn: 30.3935467	total: 317ms	remaining: 270ms
162:	learn: 30.3582625	total: 319ms	remaining: 268ms
163:	learn: 30.3084406	total: 320ms	remaining: 265ms
164:	learn: 30.2507515	total: 322ms	remaining: 263ms
165:	learn: 30.1815976	total: 323ms	remaining: 261ms
166:	learn: 30.1412976	total: 325ms	remaining: 259ms
167:	learn: 30.1039376	total: 327ms	remaining: 257ms
168:	learn: 30.0604139	total: 328ms	remaining: 254ms
169:	learn: 30.0119626	total: 330ms	remaining: 252ms
170:	learn: 29.9548376	total: 331ms	remaining: 250ms
171:	learn: 29.8943425	total: 333ms	remaining: 248ms
172:	learn: 29.8532264	total: 335ms	remaining: 246ms
173:	learn: 29.7933873	total: 337ms	remaining: 244ms
174:	learn: 29.7528797	total: 338ms	remaining: 242ms
175:	learn: 29.6966980	total: 340ms	remaining: 239ms
176:	learn: 29.6162023	total: 341ms	remaining: 237ms
177:	learn: 29.5854949	total: 343ms	remaining: 235ms
178:	learn: 29.5313557	total: 345ms	remaining: 233ms
179:	learn: 29.4732720	total: 347ms	remaining: 231ms
180:	learn: 29.3952314	total: 348ms	remaining: 229ms
181:	learn: 29.3601031	total: 350ms	remaining: 227ms
182:	learn: 29.2837570	total: 351ms	remaining: 225ms
183:	learn: 29.2055188	total: 353ms	remaining: 222ms
184:	learn: 29.1735242	total: 354ms	remaining: 220ms
185:	learn: 29.1136378	total: 356ms	remaining: 218ms
186:	learn: 29.0831573	total: 358ms	remaining: 216ms
187:	learn: 29.0330322	total: 359ms	remaining: 214ms
188:	learn: 28.9924752	total: 361ms	remaining: 212ms
189:	learn: 28.9234431	total: 362ms	remaining: 210ms
190:	learn: 28.8827720	total: 364ms	remaining: 208ms
191:	learn: 28.8206794	total: 365ms	remaining: 206ms
192:	learn: 28.7840359	total: 367ms	remaining: 203ms
193:	learn: 28.7251888	total: 369ms	remaining: 202ms
194:	learn: 28.6915701	total: 371ms	remaining: 200ms
195:	learn: 28.6439960	total: 372ms	remaining: 198ms
196:	learn: 28.6278039	total: 374ms	remaining: 195ms
197:	learn: 28.5934117	total: 375ms	remaining: 193ms
198:	learn: 28.5674495	total: 377ms	remaining: 191ms
199:	learn: 28.5017159	total: 379ms	remaining: 189ms
200:	learn: 28.4439908	total: 380ms	remaining: 187ms
201:	learn: 28.3907752	total: 382ms	remaining: 185ms
202:	learn: 28.3584519	total: 383ms	remaining: 183ms
203:	learn: 28.3029473	total: 385ms	remaining: 181ms
204:	learn: 28.2570613	total: 386ms	remaining: 179ms
205:	learn: 28.2111445	total: 388ms	remaining: 177ms
206:	learn: 28.1878815	total: 389ms	remaining: 175ms
207:	learn: 28.1408466	total: 391ms	remaining: 173ms
208:	learn: 28.1076337	total: 392ms	remaining: 171ms
209:	learn: 28.0511354	total: 394ms	remaining: 169ms
210:	learn: 28.0197018	total: 395ms	remaining: 167ms
211:	learn: 27.9819110	total: 397ms	remaining: 165ms
212:	learn: 27.9392364	total: 399ms	remaining: 163ms
213:	learn: 27.8993734	total: 400ms	remaining: 161ms
214:	learn: 27.8657981	total: 401ms	remaining: 159ms
215:	learn: 27.8438665	total: 403ms	remaining: 157ms
216:	learn: 27.8009927	total: 405ms	remaining: 155ms
217:	learn: 27.7756878	total: 406ms	remaining: 153ms
218:	learn: 27.7432363	total: 407ms	remaining: 151ms
219:	learn: 27.7048718	total: 409ms	remaining: 149ms
220:	learn: 27.6546169	total: 411ms	remaining: 147ms
221:	learn: 27.6044002	total: 412ms	remaining: 145ms
222:	learn: 27.5794507	total: 414ms	remaining: 143ms
223:	learn: 27.5204296	total: 415ms	remaining: 141ms
224:	learn: 27.4722729	total: 417ms	remaining: 139ms
225:	learn: 27.4114505	total: 418ms	remaining: 137ms
226:	learn: 27.3896347	total: 420ms	remaining: 135ms
227:	learn: 27.3224945	total: 421ms	remaining: 133ms
228:	learn: 27.2500493	total: 423ms	remaining: 131ms
229:	learn: 27.2169685	total: 424ms	remaining: 129ms
230:	learn: 27.2052299	total: 426ms	remaining: 127ms
231:	learn: 27.1530864	total: 427ms	remaining: 125ms
232:	learn: 27.0937869	total: 429ms	remaining: 123ms
233:	learn: 27.0555859	total: 431ms	remaining: 121ms
234:	learn: 27.0076350	total: 432ms	remaining: 120ms
235:	learn: 26.9628005	total: 434ms	remaining: 118ms
236:	learn: 26.9341788	total: 435ms	remaining: 116ms
237:	learn: 26.8737120	total: 437ms	remaining: 114ms
238:	learn: 26.8614128	total: 438ms	remaining: 112ms
239:	learn: 26.8377714	total: 440ms	remaining: 110ms
240:	learn: 26.8155923	total: 442ms	remaining: 108ms
241:	learn: 26.7638821	total: 444ms	remaining: 106ms
242:	learn: 26.7494544	total: 445ms	remaining: 104ms
243:	learn: 26.7205058	total: 447ms	remaining: 103ms
244:	learn: 26.6589465	total: 448ms	remaining: 101ms
245:	learn: 26.6100918	total: 450ms	remaining: 98.7ms
246:	learn: 26.5742240	total: 451ms	remaining: 96.8ms
247:	learn: 26.5102073	total: 453ms	remaining: 94.9ms
248:	learn: 26.4875513	total: 454ms	remaining: 93.1ms
249:	learn: 26.4443390	total: 456ms	remaining: 91.2ms
250:	learn: 26.4140994	total: 458ms	remaining: 89.4ms
251:	learn: 26.3620365	total: 459ms	remaining: 87.5ms
252:	learn: 26.3184758	total: 461ms	remaining: 85.7ms
253:	learn: 26.2707910	total: 463ms	remaining: 83.8ms
254:	learn: 26.2271234	total: 465ms	remaining: 82ms
255:	learn: 26.1733229	total: 466ms	remaining: 80.2ms
256:	learn: 26.1287322	total: 468ms	remaining: 78.3ms
257:	learn: 26.0565532	total: 470ms	remaining: 76.5ms
258:	learn: 26.0175785	total: 472ms	remaining: 74.7ms
259:	learn: 25.9821043	total: 474ms	remaining: 72.9ms
260:	learn: 25.9380814	total: 476ms	remaining: 71.1ms
261:	learn: 25.9000999	total: 478ms	remaining: 69.3ms
262:	learn: 25.8829325	total: 480ms	remaining: 67.5ms
263:	learn: 25.8690017	total: 482ms	remaining: 65.7ms
264:	learn: 25.8414419	total: 485ms	remaining: 64.1ms
265:	learn: 25.7788947	total: 488ms	remaining: 62.4ms
266:	learn: 25.7682938	total: 490ms	remaining: 60.6ms
267:	learn: 25.7327495	total: 493ms	remaining: 58.9ms
268:	learn: 25.6839122	total: 497ms	remaining: 57.3ms
269:	learn: 25.6422713	total: 500ms	remaining: 55.6ms
270:	learn: 25.5909099	total: 504ms	remaining: 53.9ms
271:	learn: 25.5702527	total: 506ms	remaining: 52.1ms
272:	learn: 25.5551111	total: 508ms	remaining: 50.3ms
273:	learn: 25.5369906	total: 511ms	remaining: 48.5ms
274:	learn: 25.5164874	total: 513ms	remaining: 46.7ms
275:	learn: 25.4960609	total: 515ms	remaining: 44.8ms
276:	learn: 25.4599689	total: 517ms	remaining: 42.9ms
277:	learn: 25.4331658	total: 519ms	remaining: 41.1ms
278:	learn: 25.3843746	total: 521ms	remaining: 39.2ms
279:	learn: 25.3471515	total: 523ms	remaining: 37.3ms
280:	learn: 25.3324997	total: 525ms	remaining: 35.5ms
281:	learn: 25.2875551	total: 527ms	remaining: 33.6ms
282:	learn: 25.2631185	total: 529ms	remaining: 31.8ms
283:	learn: 25.2508484	total: 531ms	remaining: 29.9ms
284:	learn: 25.2338508	total: 533ms	remaining: 28.1ms
285:	learn: 25.2008818	total: 536ms	remaining: 26.2ms
286:	learn: 25.1524935	total: 538ms	remaining: 24.4ms
287:	learn: 25.1260195	total: 540ms	remaining: 22.5ms
288:	learn: 25.1140222	total: 542ms	remaining: 20.6ms
289:	learn: 25.0956490	total: 544ms	remaining: 18.8ms
290:	learn: 25.0663175	total: 546ms	remaining: 16.9ms
291:	learn: 25.0400041	total: 548ms	remaining: 15ms
292:	learn: 25.0127957	total: 550ms	remaining: 13.1ms
293:	learn: 24.9756745	total: 552ms	remaining: 11.3ms
294:	learn: 24.9560703	total: 553ms	remaining: 9.38ms
295:	learn: 24.9197109	total: 555ms	remaining: 7.5ms
296:	learn: 24.9052226	total: 557ms	remaining: 5.63ms
297:	learn: 24.8634416	total: 559ms	remaining: 3.75ms
298:	learn: 24.8422841	total: 562ms	remaining: 1.88ms
299:	learn: 24.7909609	total: 564ms	remaining: 0us
0:	learn: 27.7312900	total: 2.91ms	remaining: 871ms
1:	learn: 27.4345051	total: 5.35ms	remaining: 797ms
2:	learn: 27.1425124	total: 7.93ms	remaining: 785ms
3:	learn: 26.8475638	total: 10.5ms	remaining: 776ms
4:	learn: 26.5821374	total: 13.2ms	remaining: 780ms
5:	learn: 26.3397160	total: 16ms	remaining: 785ms
6:	learn: 26.1213921	total: 18.8ms	remaining: 785ms
7:	learn: 25.8980881	total: 21.3ms	remaining: 779ms
8:	learn: 25.6718230	total: 23.9ms	remaining: 773ms
9:	learn: 25.4732059	total: 26.5ms	remaining: 767ms
10:	learn: 25.2816413	total: 29.2ms	remaining: 768ms
11:	learn: 25.1075454	total: 32.2ms	remaining: 772ms
12:	learn: 24.8902329	total: 34.9ms	remaining: 771ms
13:	learn: 24.6868998	total: 37.4ms	remaining: 763ms
14:	learn: 24.5005507	total: 40.1ms	remaining: 762ms
15:	learn: 24.3467102	total: 42.7ms	remaining: 758ms
16:	learn: 24.1934515	total: 45.5ms	remaining: 757ms
17:	learn: 24.0617252	total: 48.3ms	remaining: 757ms
18:	learn: 23.9144621	total: 51.1ms	remaining: 756ms
19:	learn: 23.7827575	total: 54ms	remaining: 757ms
20:	learn: 23.6570262	total: 57.2ms	remaining: 759ms
21:	learn: 23.5390088	total: 60.3ms	remaining: 762ms
22:	learn: 23.4194874	total: 63.8ms	remaining: 768ms
23:	learn: 23.2835722	total: 66.8ms	remaining: 769ms
24:	learn: 23.1649380	total: 69.9ms	remaining: 769ms
25:	learn: 23.0651661	total: 72.9ms	remaining: 768ms
26:	learn: 22.9543236	total: 76ms	remaining: 768ms
27:	learn: 22.8337994	total: 79.4ms	remaining: 771ms
28:	learn: 22.7211544	total: 83ms	remaining: 775ms
29:	learn: 22.6584406	total: 86.3ms	remaining: 777ms
30:	learn: 22.5599683	total: 89ms	remaining: 773ms
31:	learn: 22.4445395	total: 91.7ms	remaining: 768ms
32:	learn: 22.3623498	total: 94.3ms	remaining: 763ms
33:	learn: 22.2367304	total: 97.2ms	remaining: 761ms
34:	learn: 22.1434406	total: 100ms	remaining: 757ms
35:	learn: 22.0662446	total: 103ms	remaining: 753ms
36:	learn: 22.0037980	total: 105ms	remaining: 749ms
37:	learn: 21.9403619	total: 108ms	remaining: 746ms
38:	learn: 21.8234862	total: 111ms	remaining: 743ms
39:	learn: 21.7499182	total: 114ms	remaining: 739ms
40:	learn: 21.6439987	total: 116ms	remaining: 735ms
41:	learn: 21.5870427	total: 119ms	remaining: 731ms
42:	learn: 21.4999423	total: 122ms	remaining: 726ms
43:	learn: 21.4120162	total: 124ms	remaining: 723ms
44:	learn: 21.3475153	total: 127ms	remaining: 720ms
45:	learn: 21.2562143	total: 130ms	remaining: 715ms
46:	learn: 21.2081957	total: 132ms	remaining: 713ms
47:	learn: 21.1364479	total: 135ms	remaining: 709ms
48:	learn: 21.0931940	total: 138ms	remaining: 706ms
49:	learn: 21.0244313	total: 140ms	remaining: 702ms
50:	learn: 20.9568833	total: 143ms	remaining: 698ms
51:	learn: 20.8802424	total: 146ms	remaining: 695ms
52:	learn: 20.8227013	total: 148ms	remaining: 691ms
53:	learn: 20.7222412	total: 151ms	remaining: 688ms
54:	learn: 20.6633618	total: 153ms	remaining: 683ms
55:	learn: 20.5876044	total: 156ms	remaining: 680ms
56:	learn: 20.5355883	total: 159ms	remaining: 676ms
57:	learn: 20.4641031	total: 161ms	remaining: 672ms
58:	learn: 20.4053936	total: 164ms	remaining: 668ms
59:	learn: 20.3565704	total: 166ms	remaining: 665ms
60:	learn: 20.3015867	total: 169ms	remaining: 661ms
61:	learn: 20.2661543	total: 171ms	remaining: 658ms
62:	learn: 20.2247908	total: 174ms	remaining: 655ms
63:	learn: 20.1686760	total: 177ms	remaining: 652ms
64:	learn: 20.1286204	total: 179ms	remaining: 648ms
65:	learn: 20.0728550	total: 182ms	remaining: 645ms
66:	learn: 20.0282701	total: 185ms	remaining: 642ms
67:	learn: 19.9801200	total: 187ms	remaining: 639ms
68:	learn: 19.9360378	total: 190ms	remaining: 636ms
69:	learn: 19.9150158	total: 193ms	remaining: 633ms
70:	learn: 19.8665453	total: 195ms	remaining: 630ms
71:	learn: 19.8137515	total: 198ms	remaining: 626ms
72:	learn: 19.7489489	total: 200ms	remaining: 623ms
73:	learn: 19.7238468	total: 203ms	remaining: 620ms
74:	learn: 19.6951289	total: 206ms	remaining: 617ms
75:	learn: 19.6481767	total: 208ms	remaining: 614ms
76:	learn: 19.5950392	total: 211ms	remaining: 611ms
77:	learn: 19.5231073	total: 214ms	remaining: 608ms
78:	learn: 19.4767695	total: 216ms	remaining: 605ms
79:	learn: 19.4113165	total: 219ms	remaining: 602ms
80:	learn: 19.3709673	total: 221ms	remaining: 599ms
81:	learn: 19.3506758	total: 224ms	remaining: 596ms
82:	learn: 19.3030442	total: 227ms	remaining: 593ms
83:	learn: 19.2446413	total: 229ms	remaining: 590ms
84:	learn: 19.1820890	total: 232ms	remaining: 587ms
85:	learn: 19.1476679	total: 235ms	remaining: 584ms
86:	learn: 19.1148485	total: 237ms	remaining: 581ms
87:	learn: 19.0614575	total: 240ms	remaining: 578ms
88:	learn: 19.0063636	total: 243ms	remaining: 575ms
89:	learn: 18.9796567	total: 245ms	remaining: 573ms
90:	learn: 18.9585258	total: 248ms	remaining: 570ms
91:	learn: 18.9351618	total: 251ms	remaining: 567ms
92:	learn: 18.9197432	total: 253ms	remaining: 564ms
93:	learn: 18.8799610	total: 256ms	remaining: 562ms
94:	learn: 18.8462221	total: 259ms	remaining: 559ms
95:	learn: 18.8146640	total: 262ms	remaining: 556ms
96:	learn: 18.7771602	total: 265ms	remaining: 554ms
97:	learn: 18.7607506	total: 267ms	remaining: 551ms
98:	learn: 18.7373497	total: 271ms	remaining: 550ms
99:	learn: 18.6758022	total: 274ms	remaining: 549ms
100:	learn: 18.6305036	total: 278ms	remaining: 547ms
101:	learn: 18.5708026	total: 283ms	remaining: 550ms
102:	learn: 18.4983385	total: 289ms	remaining: 553ms
103:	learn: 18.4631649	total: 293ms	remaining: 552ms
104:	learn: 18.4157925	total: 296ms	remaining: 549ms
105:	learn: 18.3873941	total: 300ms	remaining: 549ms
106:	learn: 18.3249897	total: 303ms	remaining: 546ms
107:	learn: 18.2895823	total: 306ms	remaining: 543ms
108:	learn: 18.2657777	total: 309ms	remaining: 541ms
109:	learn: 18.2307536	total: 312ms	remaining: 539ms
110:	learn: 18.2083493	total: 315ms	remaining: 536ms
111:	learn: 18.1899823	total: 318ms	remaining: 534ms
112:	learn: 18.1235957	total: 321ms	remaining: 532ms
113:	learn: 18.1103408	total: 324ms	remaining: 529ms
114:	learn: 18.0780360	total: 327ms	remaining: 526ms
115:	learn: 18.0508736	total: 330ms	remaining: 524ms
116:	learn: 18.0232945	total: 333ms	remaining: 521ms
117:	learn: 17.9671231	total: 336ms	remaining: 518ms
118:	learn: 17.9433138	total: 339ms	remaining: 516ms
119:	learn: 17.9137201	total: 342ms	remaining: 513ms
120:	learn: 17.8847143	total: 345ms	remaining: 510ms
121:	learn: 17.8398082	total: 348ms	remaining: 507ms
122:	learn: 17.7872161	total: 351ms	remaining: 505ms
123:	learn: 17.7598726	total: 354ms	remaining: 503ms
124:	learn: 17.7343256	total: 357ms	remaining: 500ms
125:	learn: 17.7178855	total: 360ms	remaining: 497ms
126:	learn: 17.6656618	total: 362ms	remaining: 494ms
127:	learn: 17.6524308	total: 365ms	remaining: 491ms
128:	learn: 17.5994985	total: 368ms	remaining: 488ms
129:	learn: 17.5686895	total: 371ms	remaining: 485ms
130:	learn: 17.5205541	total: 374ms	remaining: 482ms
131:	learn: 17.5110354	total: 376ms	remaining: 479ms
132:	learn: 17.4795266	total: 379ms	remaining: 476ms
133:	learn: 17.4449643	total: 381ms	remaining: 473ms
134:	learn: 17.4021873	total: 384ms	remaining: 469ms
135:	learn: 17.3842979	total: 387ms	remaining: 466ms
136:	learn: 17.3697747	total: 390ms	remaining: 463ms
137:	learn: 17.3463751	total: 393ms	remaining: 461ms
138:	learn: 17.3295649	total: 396ms	remaining: 458ms
139:	learn: 17.3038425	total: 398ms	remaining: 455ms
140:	learn: 17.2872925	total: 401ms	remaining: 452ms
141:	learn: 17.2611398	total: 403ms	remaining: 449ms
142:	learn: 17.2198584	total: 406ms	remaining: 446ms
143:	learn: 17.2032926	total: 409ms	remaining: 443ms
144:	learn: 17.1872421	total: 412ms	remaining: 440ms
145:	learn: 17.1493319	total: 414ms	remaining: 437ms
146:	learn: 17.1173765	total: 417ms	remaining: 434ms
147:	learn: 17.0722474	total: 420ms	remaining: 431ms
148:	learn: 17.0503186	total: 422ms	remaining: 428ms
149:	learn: 17.0355879	total: 425ms	remaining: 425ms
150:	learn: 17.0106740	total: 427ms	remaining: 422ms
151:	learn: 16.9789025	total: 430ms	remaining: 419ms
152:	learn: 16.9634907	total: 433ms	remaining: 416ms
153:	learn: 16.9427293	total: 435ms	remaining: 413ms
154:	learn: 16.9251857	total: 438ms	remaining: 410ms
155:	learn: 16.9031994	total: 441ms	remaining: 407ms
156:	learn: 16.8688919	total: 444ms	remaining: 405ms
157:	learn: 16.8514832	total: 447ms	remaining: 402ms
158:	learn: 16.8390128	total: 450ms	remaining: 399ms
159:	learn: 16.8214250	total: 453ms	remaining: 397ms
160:	learn: 16.8054104	total: 456ms	remaining: 394ms
161:	learn: 16.7887678	total: 459ms	remaining: 391ms
162:	learn: 16.7752283	total: 462ms	remaining: 388ms
163:	learn: 16.7568796	total: 465ms	remaining: 386ms
164:	learn: 16.7447065	total: 469ms	remaining: 384ms
165:	learn: 16.7331887	total: 473ms	remaining: 382ms
166:	learn: 16.7182709	total: 477ms	remaining: 380ms
167:	learn: 16.7040219	total: 480ms	remaining: 377ms
168:	learn: 16.6896583	total: 483ms	remaining: 374ms
169:	learn: 16.6763579	total: 486ms	remaining: 372ms
170:	learn: 16.6585652	total: 489ms	remaining: 369ms
171:	learn: 16.6373452	total: 492ms	remaining: 366ms
172:	learn: 16.6257215	total: 496ms	remaining: 364ms
173:	learn: 16.6121147	total: 499ms	remaining: 361ms
174:	learn: 16.6010098	total: 502ms	remaining: 358ms
175:	learn: 16.5852799	total: 504ms	remaining: 355ms
176:	learn: 16.5743006	total: 507ms	remaining: 352ms
177:	learn: 16.5654853	total: 510ms	remaining: 349ms
178:	learn: 16.5561067	total: 512ms	remaining: 346ms
179:	learn: 16.5436645	total: 515ms	remaining: 343ms
180:	learn: 16.5370845	total: 517ms	remaining: 340ms
181:	learn: 16.5201103	total: 520ms	remaining: 337ms
182:	learn: 16.5114639	total: 523ms	remaining: 334ms
183:	learn: 16.4961672	total: 525ms	remaining: 331ms
184:	learn: 16.4815908	total: 528ms	remaining: 328ms
185:	learn: 16.4689331	total: 530ms	remaining: 325ms
186:	learn: 16.4186717	total: 533ms	remaining: 322ms
187:	learn: 16.4094779	total: 536ms	remaining: 319ms
188:	learn: 16.3910182	total: 539ms	remaining: 316ms
189:	learn: 16.3779840	total: 541ms	remaining: 313ms
190:	learn: 16.3701409	total: 544ms	remaining: 310ms
191:	learn: 16.3570343	total: 547ms	remaining: 308ms
192:	learn: 16.3480252	total: 549ms	remaining: 305ms
193:	learn: 16.3357711	total: 552ms	remaining: 302ms
194:	learn: 16.3202159	total: 555ms	remaining: 299ms
195:	learn: 16.3009914	total: 558ms	remaining: 296ms
196:	learn: 16.2794832	total: 560ms	remaining: 293ms
197:	learn: 16.2689241	total: 563ms	remaining: 290ms
198:	learn: 16.2569964	total: 566ms	remaining: 287ms
199:	learn: 16.2501074	total: 568ms	remaining: 284ms
200:	learn: 16.2334635	total: 571ms	remaining: 281ms
201:	learn: 16.2266659	total: 573ms	remaining: 278ms
202:	learn: 16.2114835	total: 576ms	remaining: 275ms
203:	learn: 16.1979142	total: 579ms	remaining: 272ms
204:	learn: 16.1600146	total: 582ms	remaining: 270ms
205:	learn: 16.1506784	total: 584ms	remaining: 267ms
206:	learn: 16.1271620	total: 587ms	remaining: 264ms
207:	learn: 16.1165719	total: 589ms	remaining: 261ms
208:	learn: 16.1071036	total: 592ms	remaining: 258ms
209:	learn: 16.0960975	total: 594ms	remaining: 255ms
210:	learn: 16.0912426	total: 597ms	remaining: 252ms
211:	learn: 16.0815767	total: 599ms	remaining: 249ms
212:	learn: 16.0740703	total: 602ms	remaining: 246ms
213:	learn: 16.0647717	total: 605ms	remaining: 243ms
214:	learn: 16.0457862	total: 607ms	remaining: 240ms
215:	learn: 16.0116488	total: 610ms	remaining: 237ms
216:	learn: 15.9972994	total: 612ms	remaining: 234ms
217:	learn: 15.9922950	total: 615ms	remaining: 231ms
218:	learn: 15.9739390	total: 617ms	remaining: 228ms
219:	learn: 15.9614315	total: 620ms	remaining: 225ms
220:	learn: 15.9280196	total: 622ms	remaining: 222ms
221:	learn: 15.9199164	total: 625ms	remaining: 220ms
222:	learn: 15.8979388	total: 628ms	remaining: 217ms
223:	learn: 15.8893001	total: 631ms	remaining: 214ms
224:	learn: 15.8861983	total: 634ms	remaining: 211ms
225:	learn: 15.8680711	total: 636ms	remaining: 208ms
226:	learn: 15.8411853	total: 639ms	remaining: 205ms
227:	learn: 15.7998380	total: 642ms	remaining: 203ms
228:	learn: 15.7927323	total: 644ms	remaining: 200ms
229:	learn: 15.7876029	total: 647ms	remaining: 197ms
230:	learn: 15.7660185	total: 650ms	remaining: 194ms
231:	learn: 15.7639805	total: 653ms	remaining: 191ms
232:	learn: 15.7486342	total: 656ms	remaining: 189ms
233:	learn: 15.7443809	total: 659ms	remaining: 186ms
234:	learn: 15.7368660	total: 661ms	remaining: 183ms
235:	learn: 15.7051393	total: 664ms	remaining: 180ms
236:	learn: 15.6681163	total: 669ms	remaining: 178ms
237:	learn: 15.6460505	total: 672ms	remaining: 175ms
238:	learn: 15.6299332	total: 676ms	remaining: 172ms
239:	learn: 15.6023445	total: 681ms	remaining: 170ms
240:	learn: 15.5832347	total: 687ms	remaining: 168ms
241:	learn: 15.5603685	total: 690ms	remaining: 165ms
242:	learn: 15.5570262	total: 694ms	remaining: 163ms
243:	learn: 15.5522753	total: 697ms	remaining: 160ms
244:	learn: 15.5458460	total: 700ms	remaining: 157ms
245:	learn: 15.5411812	total: 703ms	remaining: 154ms
246:	learn: 15.5109506	total: 706ms	remaining: 151ms
247:	learn: 15.4750391	total: 709ms	remaining: 149ms
248:	learn: 15.4441882	total: 712ms	remaining: 146ms
249:	learn: 15.4216198	total: 715ms	remaining: 143ms
250:	learn: 15.3938407	total: 718ms	remaining: 140ms
251:	learn: 15.3856581	total: 721ms	remaining: 137ms
252:	learn: 15.3651829	total: 724ms	remaining: 135ms
253:	learn: 15.3574027	total: 727ms	remaining: 132ms
254:	learn: 15.3524848	total: 730ms	remaining: 129ms
255:	learn: 15.3407760	total: 733ms	remaining: 126ms
256:	learn: 15.3220247	total: 736ms	remaining: 123ms
257:	learn: 15.3173742	total: 739ms	remaining: 120ms
258:	learn: 15.3129730	total: 742ms	remaining: 117ms
259:	learn: 15.3055685	total: 745ms	remaining: 115ms
260:	learn: 15.2878623	total: 748ms	remaining: 112ms
261:	learn: 15.2616569	total: 751ms	remaining: 109ms
262:	learn: 15.2495088	total: 754ms	remaining: 106ms
263:	learn: 15.2362299	total: 757ms	remaining: 103ms
264:	learn: 15.2170490	total: 759ms	remaining: 100ms
265:	learn: 15.1979748	total: 762ms	remaining: 97.4ms
266:	learn: 15.1798322	total: 765ms	remaining: 94.5ms
267:	learn: 15.1667244	total: 767ms	remaining: 91.6ms
268:	learn: 15.1450562	total: 770ms	remaining: 88.7ms
269:	learn: 15.1182756	total: 773ms	remaining: 85.9ms
270:	learn: 15.0930465	total: 775ms	remaining: 83ms
271:	learn: 15.0691949	total: 778ms	remaining: 80.1ms
272:	learn: 15.0544279	total: 781ms	remaining: 77.2ms
273:	learn: 15.0426441	total: 783ms	remaining: 74.3ms
274:	learn: 15.0384055	total: 786ms	remaining: 71.4ms
275:	learn: 15.0175909	total: 788ms	remaining: 68.5ms
276:	learn: 15.0081346	total: 791ms	remaining: 65.7ms
277:	learn: 14.9823017	total: 794ms	remaining: 62.8ms
278:	learn: 14.9514776	total: 796ms	remaining: 59.9ms
279:	learn: 14.9354205	total: 799ms	remaining: 57.1ms
280:	learn: 14.9048664	total: 801ms	remaining: 54.2ms
281:	learn: 14.8971730	total: 804ms	remaining: 51.3ms
282:	learn: 14.8873825	total: 807ms	remaining: 48.5ms
283:	learn: 14.8829176	total: 809ms	remaining: 45.6ms
284:	learn: 14.8693626	total: 812ms	remaining: 42.7ms
285:	learn: 14.8466081	total: 814ms	remaining: 39.9ms
286:	learn: 14.8426234	total: 817ms	remaining: 37ms
287:	learn: 14.8230183	total: 820ms	remaining: 34.1ms
288:	learn: 14.7843247	total: 822ms	remaining: 31.3ms
289:	learn: 14.7651722	total: 825ms	remaining: 28.4ms
290:	learn: 14.7475908	total: 827ms	remaining: 25.6ms
291:	learn: 14.7314700	total: 830ms	remaining: 22.7ms
292:	learn: 14.7109677	total: 833ms	remaining: 19.9ms
293:	learn: 14.6874941	total: 835ms	remaining: 17ms
294:	learn: 14.6833408	total: 838ms	remaining: 14.2ms
295:	learn: 14.6645573	total: 841ms	remaining: 11.4ms
296:	learn: 14.6606785	total: 844ms	remaining: 8.52ms
297:	learn: 14.6527076	total: 846ms	remaining: 5.68ms
298:	learn: 14.6342205	total: 849ms	remaining: 2.84ms
299:	learn: 14.6130851	total: 852ms	remaining: 0us
0:	learn: 43.6482444	total: 2.71ms	remaining: 811ms
1:	learn: 43.3158816	total: 5.42ms	remaining: 808ms
2:	learn: 43.0158692	total: 8.14ms	remaining: 806ms
3:	learn: 42.7644247	total: 10.7ms	remaining: 793ms
4:	learn: 42.4924895	total: 13.4ms	remaining: 788ms
5:	learn: 42.1964718	total: 16ms	remaining: 784ms
6:	learn: 41.9185673	total: 18.6ms	remaining: 777ms
7:	learn: 41.6794357	total: 21.1ms	remaining: 771ms
8:	learn: 41.4860116	total: 23.9ms	remaining: 773ms
9:	learn: 41.2303714	total: 26.6ms	remaining: 770ms
10:	learn: 41.0563835	total: 29ms	remaining: 762ms
11:	learn: 40.8271047	total: 31.6ms	remaining: 758ms
12:	learn: 40.6678311	total: 34.3ms	remaining: 757ms
13:	learn: 40.4273239	total: 36.9ms	remaining: 755ms
14:	learn: 40.2326783	total: 39.6ms	remaining: 752ms
15:	learn: 40.0330670	total: 42.1ms	remaining: 747ms
16:	learn: 39.8000172	total: 44.7ms	remaining: 744ms
17:	learn: 39.6774120	total: 47.4ms	remaining: 743ms
18:	learn: 39.4814023	total: 50ms	remaining: 739ms
19:	learn: 39.3190402	total: 52.7ms	remaining: 737ms
20:	learn: 39.1483334	total: 55.3ms	remaining: 735ms
21:	learn: 38.9609174	total: 58ms	remaining: 733ms
22:	learn: 38.8972692	total: 59ms	remaining: 710ms
23:	learn: 38.7163560	total: 61.5ms	remaining: 707ms
24:	learn: 38.5704797	total: 64.3ms	remaining: 708ms
25:	learn: 38.3358853	total: 67ms	remaining: 706ms
26:	learn: 38.1942411	total: 70.1ms	remaining: 709ms
27:	learn: 38.0308461	total: 72.6ms	remaining: 705ms
28:	learn: 37.8892543	total: 75.4ms	remaining: 704ms
29:	learn: 37.7625316	total: 78ms	remaining: 702ms
30:	learn: 37.6164457	total: 80.5ms	remaining: 699ms
31:	learn: 37.4980450	total: 83ms	remaining: 695ms
32:	learn: 37.3667729	total: 85.8ms	remaining: 694ms
33:	learn: 37.2366840	total: 88.3ms	remaining: 691ms
34:	learn: 37.1797616	total: 90.8ms	remaining: 688ms
35:	learn: 37.0132521	total: 93.5ms	remaining: 685ms
36:	learn: 36.8380130	total: 95.9ms	remaining: 682ms
37:	learn: 36.7565362	total: 98.7ms	remaining: 680ms
38:	learn: 36.6853080	total: 101ms	remaining: 678ms
39:	learn: 36.5828529	total: 104ms	remaining: 674ms
40:	learn: 36.4360531	total: 106ms	remaining: 671ms
41:	learn: 36.3332917	total: 109ms	remaining: 669ms
42:	learn: 36.2341817	total: 112ms	remaining: 668ms
43:	learn: 36.1582098	total: 115ms	remaining: 666ms
44:	learn: 36.0613820	total: 117ms	remaining: 665ms
45:	learn: 35.9799685	total: 120ms	remaining: 661ms
46:	learn: 35.8917271	total: 122ms	remaining: 658ms
47:	learn: 35.7375034	total: 125ms	remaining: 655ms
48:	learn: 35.6402272	total: 128ms	remaining: 654ms
49:	learn: 35.5430556	total: 130ms	remaining: 652ms
50:	learn: 35.4338278	total: 133ms	remaining: 650ms
51:	learn: 35.3650399	total: 136ms	remaining: 648ms
52:	learn: 35.3005814	total: 139ms	remaining: 646ms
53:	learn: 35.2414914	total: 141ms	remaining: 644ms
54:	learn: 35.1728672	total: 144ms	remaining: 642ms
55:	learn: 35.1234852	total: 147ms	remaining: 640ms
56:	learn: 35.0305233	total: 150ms	remaining: 638ms
57:	learn: 34.9710937	total: 152ms	remaining: 635ms
58:	learn: 34.8375739	total: 157ms	remaining: 641ms
59:	learn: 34.7117519	total: 161ms	remaining: 643ms
60:	learn: 34.5571775	total: 165ms	remaining: 646ms
61:	learn: 34.5153214	total: 169ms	remaining: 650ms
62:	learn: 34.4301243	total: 175ms	remaining: 659ms
63:	learn: 34.3463814	total: 178ms	remaining: 658ms
64:	learn: 34.3179530	total: 183ms	remaining: 662ms
65:	learn: 34.2555212	total: 186ms	remaining: 660ms
66:	learn: 34.1690374	total: 189ms	remaining: 659ms
67:	learn: 34.0248512	total: 192ms	remaining: 657ms
68:	learn: 33.9698972	total: 195ms	remaining: 654ms
69:	learn: 33.8509795	total: 199ms	remaining: 652ms
70:	learn: 33.8002588	total: 202ms	remaining: 650ms
71:	learn: 33.7456648	total: 205ms	remaining: 648ms
72:	learn: 33.7146982	total: 208ms	remaining: 647ms
73:	learn: 33.6796817	total: 211ms	remaining: 644ms
74:	learn: 33.6143400	total: 214ms	remaining: 642ms
75:	learn: 33.5534587	total: 217ms	remaining: 640ms
76:	learn: 33.4765959	total: 220ms	remaining: 637ms
77:	learn: 33.4115857	total: 223ms	remaining: 635ms
78:	learn: 33.3613147	total: 226ms	remaining: 632ms
79:	learn: 33.3224263	total: 229ms	remaining: 629ms
80:	learn: 33.3010529	total: 232ms	remaining: 626ms
81:	learn: 33.2339440	total: 235ms	remaining: 624ms
82:	learn: 33.1851243	total: 238ms	remaining: 622ms
83:	learn: 33.1524810	total: 241ms	remaining: 620ms
84:	learn: 33.0498044	total: 244ms	remaining: 616ms
85:	learn: 33.0048447	total: 246ms	remaining: 612ms
86:	learn: 32.9355513	total: 249ms	remaining: 609ms
87:	learn: 32.8886521	total: 251ms	remaining: 606ms
88:	learn: 32.8579320	total: 254ms	remaining: 602ms
89:	learn: 32.7833882	total: 256ms	remaining: 598ms
90:	learn: 32.6941961	total: 259ms	remaining: 595ms
91:	learn: 32.6391156	total: 262ms	remaining: 592ms
92:	learn: 32.6092306	total: 264ms	remaining: 588ms
93:	learn: 32.5918160	total: 267ms	remaining: 585ms
94:	learn: 32.5517432	total: 270ms	remaining: 582ms
95:	learn: 32.5209346	total: 272ms	remaining: 578ms
96:	learn: 32.4040893	total: 275ms	remaining: 575ms
97:	learn: 32.3649089	total: 277ms	remaining: 571ms
98:	learn: 32.2767947	total: 280ms	remaining: 568ms
99:	learn: 32.2589610	total: 283ms	remaining: 565ms
100:	learn: 32.2358338	total: 285ms	remaining: 562ms
101:	learn: 32.1963939	total: 288ms	remaining: 558ms
102:	learn: 32.1781515	total: 290ms	remaining: 555ms
103:	learn: 32.1372767	total: 293ms	remaining: 552ms
104:	learn: 32.0444404	total: 295ms	remaining: 548ms
105:	learn: 31.9326967	total: 298ms	remaining: 545ms
106:	learn: 31.8698426	total: 301ms	remaining: 542ms
107:	learn: 31.7975900	total: 303ms	remaining: 539ms
108:	learn: 31.7097248	total: 306ms	remaining: 536ms
109:	learn: 31.6783205	total: 308ms	remaining: 532ms
110:	learn: 31.6537297	total: 311ms	remaining: 530ms
111:	learn: 31.6190255	total: 313ms	remaining: 526ms
112:	learn: 31.5739933	total: 316ms	remaining: 523ms
113:	learn: 31.4897981	total: 319ms	remaining: 520ms
114:	learn: 31.4574878	total: 321ms	remaining: 517ms
115:	learn: 31.4432269	total: 323ms	remaining: 513ms
116:	learn: 31.3622979	total: 326ms	remaining: 510ms
117:	learn: 31.3465111	total: 329ms	remaining: 508ms
118:	learn: 31.3106549	total: 332ms	remaining: 505ms
119:	learn: 31.2722468	total: 335ms	remaining: 503ms
120:	learn: 31.2412076	total: 338ms	remaining: 500ms
121:	learn: 31.2001279	total: 341ms	remaining: 497ms
122:	learn: 31.1587149	total: 343ms	remaining: 494ms
123:	learn: 31.1007599	total: 346ms	remaining: 491ms
124:	learn: 31.0351312	total: 349ms	remaining: 489ms
125:	learn: 30.9714229	total: 354ms	remaining: 489ms
126:	learn: 30.9236683	total: 357ms	remaining: 487ms
127:	learn: 30.8856392	total: 360ms	remaining: 484ms
128:	learn: 30.8225652	total: 364ms	remaining: 482ms
129:	learn: 30.7939910	total: 367ms	remaining: 480ms
130:	learn: 30.7084962	total: 370ms	remaining: 477ms
131:	learn: 30.6568521	total: 373ms	remaining: 475ms
132:	learn: 30.6169844	total: 376ms	remaining: 472ms
133:	learn: 30.5416727	total: 379ms	remaining: 470ms
134:	learn: 30.5143267	total: 382ms	remaining: 467ms
135:	learn: 30.4754811	total: 385ms	remaining: 464ms
136:	learn: 30.4547070	total: 387ms	remaining: 461ms
137:	learn: 30.4269347	total: 390ms	remaining: 458ms
138:	learn: 30.3898351	total: 393ms	remaining: 455ms
139:	learn: 30.3130743	total: 396ms	remaining: 452ms
140:	learn: 30.3010368	total: 399ms	remaining: 450ms
141:	learn: 30.2684026	total: 401ms	remaining: 446ms
142:	learn: 30.1986682	total: 404ms	remaining: 444ms
143:	learn: 30.1690109	total: 407ms	remaining: 441ms
144:	learn: 30.1362793	total: 409ms	remaining: 437ms
145:	learn: 30.0902361	total: 412ms	remaining: 435ms
146:	learn: 30.0557773	total: 415ms	remaining: 432ms
147:	learn: 29.9784908	total: 417ms	remaining: 429ms
148:	learn: 29.8822991	total: 420ms	remaining: 426ms
149:	learn: 29.8567266	total: 423ms	remaining: 423ms
150:	learn: 29.8279111	total: 425ms	remaining: 419ms
151:	learn: 29.7968274	total: 428ms	remaining: 416ms
152:	learn: 29.7788320	total: 430ms	remaining: 413ms
153:	learn: 29.7672561	total: 433ms	remaining: 410ms
154:	learn: 29.7319617	total: 436ms	remaining: 408ms
155:	learn: 29.6888418	total: 439ms	remaining: 405ms
156:	learn: 29.5930209	total: 441ms	remaining: 402ms
157:	learn: 29.5852560	total: 442ms	remaining: 397ms
158:	learn: 29.4399314	total: 445ms	remaining: 394ms
159:	learn: 29.4135992	total: 447ms	remaining: 392ms
160:	learn: 29.3239447	total: 450ms	remaining: 389ms
161:	learn: 29.3042894	total: 453ms	remaining: 386ms
162:	learn: 29.2810751	total: 455ms	remaining: 383ms
163:	learn: 29.2750132	total: 456ms	remaining: 379ms
164:	learn: 29.2438976	total: 459ms	remaining: 376ms
165:	learn: 29.2252138	total: 462ms	remaining: 373ms
166:	learn: 29.2042457	total: 464ms	remaining: 370ms
167:	learn: 29.1687080	total: 467ms	remaining: 367ms
168:	learn: 29.1501767	total: 470ms	remaining: 364ms
169:	learn: 29.1300010	total: 473ms	remaining: 361ms
170:	learn: 29.1100445	total: 475ms	remaining: 358ms
171:	learn: 29.0786428	total: 478ms	remaining: 356ms
172:	learn: 29.0534977	total: 480ms	remaining: 353ms
173:	learn: 29.0465546	total: 483ms	remaining: 350ms
174:	learn: 29.0237947	total: 486ms	remaining: 347ms
175:	learn: 28.9947470	total: 488ms	remaining: 344ms
176:	learn: 28.9693651	total: 491ms	remaining: 341ms
177:	learn: 28.9396794	total: 493ms	remaining: 338ms
178:	learn: 28.9299681	total: 496ms	remaining: 336ms
179:	learn: 28.8958794	total: 499ms	remaining: 333ms
180:	learn: 28.8699033	total: 502ms	remaining: 330ms
181:	learn: 28.8426682	total: 506ms	remaining: 328ms
182:	learn: 28.8330239	total: 509ms	remaining: 325ms
183:	learn: 28.8037360	total: 512ms	remaining: 323ms
184:	learn: 28.7657887	total: 514ms	remaining: 320ms
185:	learn: 28.7458417	total: 517ms	remaining: 317ms
186:	learn: 28.7283797	total: 520ms	remaining: 314ms
187:	learn: 28.7086249	total: 523ms	remaining: 311ms
188:	learn: 28.7042846	total: 526ms	remaining: 309ms
189:	learn: 28.6851771	total: 528ms	remaining: 306ms
190:	learn: 28.6601041	total: 531ms	remaining: 303ms
191:	learn: 28.6365750	total: 534ms	remaining: 300ms
192:	learn: 28.6152561	total: 537ms	remaining: 298ms
193:	learn: 28.5837367	total: 539ms	remaining: 295ms
194:	learn: 28.5557477	total: 543ms	remaining: 292ms
195:	learn: 28.5474951	total: 547ms	remaining: 290ms
196:	learn: 28.5318884	total: 550ms	remaining: 288ms
197:	learn: 28.4899163	total: 554ms	remaining: 285ms
198:	learn: 28.4751668	total: 558ms	remaining: 283ms
199:	learn: 28.4413812	total: 563ms	remaining: 281ms
200:	learn: 28.4281763	total: 567ms	remaining: 279ms
201:	learn: 28.4124343	total: 570ms	remaining: 276ms
202:	learn: 28.3889724	total: 574ms	remaining: 274ms
203:	learn: 28.3587058	total: 577ms	remaining: 272ms
204:	learn: 28.3395487	total: 580ms	remaining: 269ms
205:	learn: 28.3207922	total: 583ms	remaining: 266ms
206:	learn: 28.2992244	total: 586ms	remaining: 263ms
207:	learn: 28.2953751	total: 587ms	remaining: 260ms
208:	learn: 28.2751511	total: 591ms	remaining: 257ms
209:	learn: 28.2564283	total: 594ms	remaining: 254ms
210:	learn: 28.2393507	total: 597ms	remaining: 252ms
211:	learn: 28.1747814	total: 600ms	remaining: 249ms
212:	learn: 28.1602558	total: 603ms	remaining: 246ms
213:	learn: 28.1424052	total: 606ms	remaining: 244ms
214:	learn: 28.1236954	total: 609ms	remaining: 241ms
215:	learn: 28.0638326	total: 612ms	remaining: 238ms
216:	learn: 28.0108657	total: 615ms	remaining: 235ms
217:	learn: 27.9961881	total: 618ms	remaining: 232ms
218:	learn: 27.9805184	total: 620ms	remaining: 229ms
219:	learn: 27.9663240	total: 623ms	remaining: 227ms
220:	learn: 27.9059514	total: 627ms	remaining: 224ms
221:	learn: 27.8705269	total: 630ms	remaining: 221ms
222:	learn: 27.8587156	total: 633ms	remaining: 219ms
223:	learn: 27.8451766	total: 636ms	remaining: 216ms
224:	learn: 27.8219094	total: 639ms	remaining: 213ms
225:	learn: 27.7120201	total: 641ms	remaining: 210ms
226:	learn: 27.7006493	total: 644ms	remaining: 207ms
227:	learn: 27.6415270	total: 647ms	remaining: 204ms
228:	learn: 27.6319759	total: 650ms	remaining: 201ms
229:	learn: 27.5835612	total: 652ms	remaining: 199ms
230:	learn: 27.5362425	total: 655ms	remaining: 196ms
231:	learn: 27.5083947	total: 658ms	remaining: 193ms
232:	learn: 27.4502321	total: 661ms	remaining: 190ms
233:	learn: 27.4359995	total: 664ms	remaining: 187ms
234:	learn: 27.3998273	total: 666ms	remaining: 184ms
235:	learn: 27.3496727	total: 669ms	remaining: 181ms
236:	learn: 27.3452340	total: 672ms	remaining: 179ms
237:	learn: 27.2211380	total: 674ms	remaining: 176ms
238:	learn: 27.1926373	total: 677ms	remaining: 173ms
239:	learn: 27.1840515	total: 679ms	remaining: 170ms
240:	learn: 27.1454037	total: 682ms	remaining: 167ms
241:	learn: 27.0249769	total: 685ms	remaining: 164ms
242:	learn: 27.0077365	total: 687ms	remaining: 161ms
243:	learn: 26.9700558	total: 690ms	remaining: 158ms
244:	learn: 26.9563861	total: 693ms	remaining: 156ms
245:	learn: 26.9107598	total: 696ms	remaining: 153ms
246:	learn: 26.8662971	total: 698ms	remaining: 150ms
247:	learn: 26.8332136	total: 701ms	remaining: 147ms
248:	learn: 26.7317386	total: 704ms	remaining: 144ms
249:	learn: 26.7077079	total: 706ms	remaining: 141ms
250:	learn: 26.6103455	total: 709ms	remaining: 138ms
251:	learn: 26.5891872	total: 712ms	remaining: 136ms
252:	learn: 26.5093629	total: 714ms	remaining: 133ms
253:	learn: 26.4781695	total: 717ms	remaining: 130ms
254:	learn: 26.4288576	total: 720ms	remaining: 127ms
255:	learn: 26.3820556	total: 723ms	remaining: 124ms
256:	learn: 26.3549921	total: 725ms	remaining: 121ms
257:	learn: 26.3236453	total: 728ms	remaining: 119ms
258:	learn: 26.2892951	total: 731ms	remaining: 116ms
259:	learn: 26.2755242	total: 733ms	remaining: 113ms
260:	learn: 26.2617880	total: 736ms	remaining: 110ms
261:	learn: 26.2255942	total: 739ms	remaining: 107ms
262:	learn: 26.1890309	total: 742ms	remaining: 104ms
263:	learn: 26.1542599	total: 746ms	remaining: 102ms
264:	learn: 26.1341451	total: 749ms	remaining: 99ms
265:	learn: 26.0345707	total: 754ms	remaining: 96.4ms
266:	learn: 26.0125834	total: 757ms	remaining: 93.5ms
267:	learn: 25.9674124	total: 760ms	remaining: 90.7ms
268:	learn: 25.9523714	total: 762ms	remaining: 87.9ms
269:	learn: 25.9087393	total: 766ms	remaining: 85.1ms
270:	learn: 25.8213561	total: 769ms	remaining: 82.3ms
271:	learn: 25.7919191	total: 772ms	remaining: 79.5ms
272:	learn: 25.7839428	total: 775ms	remaining: 76.6ms
273:	learn: 25.7702586	total: 777ms	remaining: 73.7ms
274:	learn: 25.7627649	total: 780ms	remaining: 70.9ms
275:	learn: 25.7322080	total: 782ms	remaining: 68ms
276:	learn: 25.6127645	total: 785ms	remaining: 65.2ms
277:	learn: 25.6008183	total: 788ms	remaining: 62.3ms
278:	learn: 25.5326286	total: 790ms	remaining: 59.5ms
279:	learn: 25.4849413	total: 793ms	remaining: 56.6ms
280:	learn: 25.4008202	total: 796ms	remaining: 53.8ms
281:	learn: 25.3865585	total: 798ms	remaining: 51ms
282:	learn: 25.3711219	total: 801ms	remaining: 48.1ms
283:	learn: 25.3275394	total: 804ms	remaining: 45.3ms
284:	learn: 25.3108364	total: 806ms	remaining: 42.4ms
285:	learn: 25.2455525	total: 809ms	remaining: 39.6ms
286:	learn: 25.2102221	total: 812ms	remaining: 36.8ms
287:	learn: 25.1718352	total: 814ms	remaining: 33.9ms
288:	learn: 25.1316989	total: 817ms	remaining: 31.1ms
289:	learn: 25.0904310	total: 820ms	remaining: 28.3ms
290:	learn: 25.0848601	total: 822ms	remaining: 25.4ms
291:	learn: 24.9975632	total: 825ms	remaining: 22.6ms
292:	learn: 24.9459522	total: 827ms	remaining: 19.8ms
293:	learn: 24.9133756	total: 830ms	remaining: 16.9ms
294:	learn: 24.8622757	total: 833ms	remaining: 14.1ms
295:	learn: 24.8251654	total: 835ms	remaining: 11.3ms
296:	learn: 24.8087605	total: 838ms	remaining: 8.46ms
297:	learn: 24.7634829	total: 841ms	remaining: 5.64ms
298:	learn: 24.6900208	total: 843ms	remaining: 2.82ms
299:	learn: 24.6742277	total: 846ms	remaining: 0us
0:	learn: 47.0946563	total: 2.91ms	remaining: 870ms
1:	learn: 46.7192970	total: 5.46ms	remaining: 814ms
2:	learn: 46.3743086	total: 8.05ms	remaining: 797ms
3:	learn: 46.0488298	total: 10.8ms	remaining: 796ms
4:	learn: 45.7257796	total: 13.2ms	remaining: 780ms
5:	learn: 45.3981640	total: 15.9ms	remaining: 779ms
6:	learn: 45.0752491	total: 18.5ms	remaining: 774ms
7:	learn: 44.8069177	total: 21ms	remaining: 768ms
8:	learn: 44.5640932	total: 24ms	remaining: 775ms
9:	learn: 44.3278070	total: 26.8ms	remaining: 778ms
10:	learn: 44.1056457	total: 29.9ms	remaining: 787ms
11:	learn: 43.8757503	total: 33.1ms	remaining: 794ms
12:	learn: 43.6501661	total: 36.4ms	remaining: 803ms
13:	learn: 43.4485604	total: 39.5ms	remaining: 808ms
14:	learn: 43.2273298	total: 42.5ms	remaining: 807ms
15:	learn: 43.0148072	total: 45.7ms	remaining: 811ms
16:	learn: 42.8161711	total: 48.9ms	remaining: 814ms
17:	learn: 42.5774886	total: 51.8ms	remaining: 812ms
18:	learn: 42.4173705	total: 55.2ms	remaining: 817ms
19:	learn: 42.2280498	total: 58.5ms	remaining: 819ms
20:	learn: 42.0277849	total: 62.3ms	remaining: 828ms
21:	learn: 41.8932582	total: 65.4ms	remaining: 826ms
22:	learn: 41.7556061	total: 68.4ms	remaining: 824ms
23:	learn: 41.5275486	total: 71.8ms	remaining: 826ms
24:	learn: 41.4371628	total: 74.8ms	remaining: 823ms
25:	learn: 41.3020774	total: 77.6ms	remaining: 818ms
26:	learn: 41.0998208	total: 80.5ms	remaining: 814ms
27:	learn: 40.9270546	total: 83.4ms	remaining: 810ms
28:	learn: 40.7907110	total: 86.5ms	remaining: 808ms
29:	learn: 40.6540040	total: 89.5ms	remaining: 806ms
30:	learn: 40.5430304	total: 92.5ms	remaining: 802ms
31:	learn: 40.3759846	total: 95.3ms	remaining: 798ms
32:	learn: 40.2246507	total: 98.5ms	remaining: 797ms
33:	learn: 40.0946324	total: 102ms	remaining: 796ms
34:	learn: 39.9712336	total: 105ms	remaining: 794ms
35:	learn: 39.8400190	total: 108ms	remaining: 792ms
36:	learn: 39.7264196	total: 111ms	remaining: 789ms
37:	learn: 39.5865473	total: 114ms	remaining: 787ms
38:	learn: 39.4820875	total: 117ms	remaining: 784ms
39:	learn: 39.3866039	total: 120ms	remaining: 782ms
40:	learn: 39.3025597	total: 123ms	remaining: 778ms
41:	learn: 39.2082650	total: 126ms	remaining: 774ms
42:	learn: 39.0431134	total: 129ms	remaining: 770ms
43:	learn: 38.9615403	total: 132ms	remaining: 769ms
44:	learn: 38.8736672	total: 135ms	remaining: 766ms
45:	learn: 38.8135712	total: 138ms	remaining: 763ms
46:	learn: 38.5968072	total: 141ms	remaining: 758ms
47:	learn: 38.4564759	total: 143ms	remaining: 753ms
48:	learn: 38.4220021	total: 146ms	remaining: 748ms
49:	learn: 38.3261815	total: 149ms	remaining: 743ms
50:	learn: 38.2197536	total: 151ms	remaining: 737ms
51:	learn: 38.1698081	total: 154ms	remaining: 732ms
52:	learn: 38.1183521	total: 156ms	remaining: 727ms
53:	learn: 38.0614445	total: 158ms	remaining: 722ms
54:	learn: 37.9534469	total: 161ms	remaining: 717ms
55:	learn: 37.8955931	total: 163ms	remaining: 712ms
56:	learn: 37.8413544	total: 166ms	remaining: 707ms
57:	learn: 37.7862614	total: 169ms	remaining: 704ms
58:	learn: 37.6311122	total: 171ms	remaining: 700ms
59:	learn: 37.5639711	total: 174ms	remaining: 696ms
60:	learn: 37.4081381	total: 177ms	remaining: 693ms
61:	learn: 37.3551506	total: 180ms	remaining: 690ms
62:	learn: 37.2710147	total: 182ms	remaining: 686ms
63:	learn: 37.2190124	total: 185ms	remaining: 683ms
64:	learn: 37.1958907	total: 188ms	remaining: 679ms
65:	learn: 37.0937736	total: 191ms	remaining: 675ms
66:	learn: 36.9561504	total: 193ms	remaining: 672ms
67:	learn: 36.9176602	total: 196ms	remaining: 668ms
68:	learn: 36.8322131	total: 198ms	remaining: 664ms
69:	learn: 36.7554664	total: 201ms	remaining: 660ms
70:	learn: 36.6685216	total: 203ms	remaining: 656ms
71:	learn: 36.6152199	total: 207ms	remaining: 654ms
72:	learn: 36.5316021	total: 209ms	remaining: 651ms
73:	learn: 36.4877449	total: 212ms	remaining: 649ms
74:	learn: 36.3911881	total: 215ms	remaining: 646ms
75:	learn: 36.3074184	total: 218ms	remaining: 642ms
76:	learn: 36.2092742	total: 221ms	remaining: 640ms
77:	learn: 36.1686417	total: 224ms	remaining: 637ms
78:	learn: 36.1331457	total: 227ms	remaining: 634ms
79:	learn: 36.0676261	total: 230ms	remaining: 631ms
80:	learn: 36.0331942	total: 232ms	remaining: 628ms
81:	learn: 35.9806655	total: 235ms	remaining: 625ms
82:	learn: 35.9067157	total: 238ms	remaining: 622ms
83:	learn: 35.8503725	total: 241ms	remaining: 620ms
84:	learn: 35.7545453	total: 244ms	remaining: 618ms
85:	learn: 35.7155162	total: 249ms	remaining: 620ms
86:	learn: 35.6736142	total: 252ms	remaining: 618ms
87:	learn: 35.6278917	total: 256ms	remaining: 617ms
88:	learn: 35.6076776	total: 259ms	remaining: 615ms
89:	learn: 35.5357644	total: 263ms	remaining: 614ms
90:	learn: 35.4630554	total: 266ms	remaining: 612ms
91:	learn: 35.3827339	total: 270ms	remaining: 610ms
92:	learn: 35.3123833	total: 273ms	remaining: 608ms
93:	learn: 35.2542092	total: 276ms	remaining: 605ms
94:	learn: 35.1962550	total: 279ms	remaining: 602ms
95:	learn: 35.1626179	total: 282ms	remaining: 599ms
96:	learn: 35.1261898	total: 285ms	remaining: 597ms
97:	learn: 35.0827604	total: 288ms	remaining: 594ms
98:	learn: 35.0198692	total: 291ms	remaining: 591ms
99:	learn: 34.9456226	total: 294ms	remaining: 588ms
100:	learn: 34.9124263	total: 298ms	remaining: 586ms
101:	learn: 34.8647897	total: 301ms	remaining: 584ms
102:	learn: 34.8166501	total: 304ms	remaining: 582ms
103:	learn: 34.7351161	total: 307ms	remaining: 579ms
104:	learn: 34.6958062	total: 310ms	remaining: 576ms
105:	learn: 34.6245377	total: 313ms	remaining: 573ms
106:	learn: 34.5768281	total: 316ms	remaining: 571ms
107:	learn: 34.4178944	total: 319ms	remaining: 568ms
108:	learn: 34.3731367	total: 322ms	remaining: 565ms
109:	learn: 34.3388152	total: 325ms	remaining: 562ms
110:	learn: 34.2945617	total: 328ms	remaining: 559ms
111:	learn: 34.1544128	total: 331ms	remaining: 556ms
112:	learn: 34.1121985	total: 334ms	remaining: 553ms
113:	learn: 34.0574129	total: 337ms	remaining: 550ms
114:	learn: 34.0433236	total: 340ms	remaining: 548ms
115:	learn: 33.9832649	total: 343ms	remaining: 545ms
116:	learn: 33.9608321	total: 346ms	remaining: 541ms
117:	learn: 33.8585878	total: 349ms	remaining: 539ms
118:	learn: 33.8389522	total: 352ms	remaining: 535ms
119:	learn: 33.7680787	total: 355ms	remaining: 532ms
120:	learn: 33.7223981	total: 358ms	remaining: 529ms
121:	learn: 33.6706825	total: 360ms	remaining: 526ms
122:	learn: 33.6231523	total: 363ms	remaining: 523ms
123:	learn: 33.6031439	total: 366ms	remaining: 520ms
124:	learn: 33.5675128	total: 369ms	remaining: 517ms
125:	learn: 33.5434212	total: 373ms	remaining: 515ms
126:	learn: 33.5356345	total: 376ms	remaining: 512ms
127:	learn: 33.5147946	total: 379ms	remaining: 509ms
128:	learn: 33.4745010	total: 381ms	remaining: 506ms
129:	learn: 33.4185238	total: 384ms	remaining: 503ms
130:	learn: 33.3874745	total: 387ms	remaining: 500ms
131:	learn: 33.3274632	total: 390ms	remaining: 497ms
132:	learn: 33.2863456	total: 393ms	remaining: 493ms
133:	learn: 33.2636649	total: 396ms	remaining: 490ms
134:	learn: 33.2426517	total: 398ms	remaining: 487ms
135:	learn: 33.2251649	total: 401ms	remaining: 484ms
136:	learn: 33.1951949	total: 404ms	remaining: 481ms
137:	learn: 33.1251743	total: 407ms	remaining: 478ms
138:	learn: 33.0866552	total: 410ms	remaining: 475ms
139:	learn: 33.0273260	total: 413ms	remaining: 472ms
140:	learn: 32.9954983	total: 416ms	remaining: 469ms
141:	learn: 32.9796694	total: 418ms	remaining: 466ms
142:	learn: 32.9523795	total: 421ms	remaining: 463ms
143:	learn: 32.9077748	total: 424ms	remaining: 460ms
144:	learn: 32.8931881	total: 427ms	remaining: 457ms
145:	learn: 32.8260175	total: 430ms	remaining: 453ms
146:	learn: 32.8150117	total: 433ms	remaining: 450ms
147:	learn: 32.7747758	total: 435ms	remaining: 447ms
148:	learn: 32.7033204	total: 438ms	remaining: 444ms
149:	learn: 32.6802420	total: 442ms	remaining: 442ms
150:	learn: 32.6615233	total: 446ms	remaining: 440ms
151:	learn: 32.5609177	total: 450ms	remaining: 438ms
152:	learn: 32.5009930	total: 455ms	remaining: 437ms
153:	learn: 32.4596264	total: 461ms	remaining: 437ms
154:	learn: 32.4415791	total: 464ms	remaining: 434ms
155:	learn: 32.3891939	total: 467ms	remaining: 431ms
156:	learn: 32.3737216	total: 472ms	remaining: 430ms
157:	learn: 32.3548287	total: 475ms	remaining: 427ms
158:	learn: 32.3121095	total: 478ms	remaining: 424ms
159:	learn: 32.2591195	total: 481ms	remaining: 421ms
160:	learn: 32.2407487	total: 484ms	remaining: 418ms
161:	learn: 32.2037713	total: 487ms	remaining: 415ms
162:	learn: 32.1958929	total: 488ms	remaining: 410ms
163:	learn: 32.1872272	total: 492ms	remaining: 408ms
164:	learn: 32.1571922	total: 495ms	remaining: 405ms
165:	learn: 32.1411683	total: 498ms	remaining: 402ms
166:	learn: 32.1201608	total: 501ms	remaining: 399ms
167:	learn: 32.0973069	total: 504ms	remaining: 396ms
168:	learn: 32.0803416	total: 507ms	remaining: 393ms
169:	learn: 32.0720454	total: 510ms	remaining: 390ms
170:	learn: 32.0607116	total: 513ms	remaining: 387ms
171:	learn: 32.0532906	total: 516ms	remaining: 384ms
172:	learn: 32.0386078	total: 519ms	remaining: 381ms
173:	learn: 32.0301246	total: 522ms	remaining: 378ms
174:	learn: 32.0207069	total: 525ms	remaining: 375ms
175:	learn: 31.9914505	total: 529ms	remaining: 373ms
176:	learn: 31.9807135	total: 532ms	remaining: 370ms
177:	learn: 31.9698686	total: 535ms	remaining: 366ms
178:	learn: 31.9626879	total: 537ms	remaining: 363ms
179:	learn: 31.9556059	total: 540ms	remaining: 360ms
180:	learn: 31.9122854	total: 543ms	remaining: 357ms
181:	learn: 31.9047196	total: 546ms	remaining: 354ms
182:	learn: 31.8980390	total: 548ms	remaining: 350ms
183:	learn: 31.8300329	total: 551ms	remaining: 347ms
184:	learn: 31.8233927	total: 554ms	remaining: 344ms
185:	learn: 31.7817409	total: 556ms	remaining: 341ms
186:	learn: 31.7642827	total: 560ms	remaining: 338ms
187:	learn: 31.7446144	total: 562ms	remaining: 335ms
188:	learn: 31.7427151	total: 563ms	remaining: 331ms
189:	learn: 31.6983519	total: 566ms	remaining: 328ms
190:	learn: 31.6868507	total: 569ms	remaining: 325ms
191:	learn: 31.6728469	total: 572ms	remaining: 322ms
192:	learn: 31.6207164	total: 575ms	remaining: 319ms
193:	learn: 31.6023653	total: 578ms	remaining: 316ms
194:	learn: 31.6003768	total: 580ms	remaining: 312ms
195:	learn: 31.5654528	total: 584ms	remaining: 310ms
196:	learn: 31.5597608	total: 587ms	remaining: 307ms
197:	learn: 31.5525929	total: 589ms	remaining: 304ms
198:	learn: 31.5502324	total: 592ms	remaining: 300ms
199:	learn: 31.5151266	total: 595ms	remaining: 297ms
200:	learn: 31.5045925	total: 598ms	remaining: 295ms
201:	learn: 31.4752580	total: 601ms	remaining: 292ms
202:	learn: 31.4587944	total: 604ms	remaining: 288ms
203:	learn: 31.4185575	total: 606ms	remaining: 285ms
204:	learn: 31.4086177	total: 609ms	remaining: 282ms
205:	learn: 31.3994671	total: 612ms	remaining: 279ms
206:	learn: 31.3821922	total: 616ms	remaining: 277ms
207:	learn: 31.3435512	total: 619ms	remaining: 274ms
208:	learn: 31.3267075	total: 622ms	remaining: 271ms
209:	learn: 31.3055995	total: 625ms	remaining: 268ms
210:	learn: 31.2925381	total: 628ms	remaining: 265ms
211:	learn: 31.2515949	total: 631ms	remaining: 262ms
212:	learn: 31.2416812	total: 634ms	remaining: 259ms
213:	learn: 31.2337835	total: 637ms	remaining: 256ms
214:	learn: 31.2322669	total: 638ms	remaining: 252ms
215:	learn: 31.2040865	total: 643ms	remaining: 250ms
216:	learn: 31.1973993	total: 646ms	remaining: 247ms
217:	learn: 31.1577630	total: 650ms	remaining: 244ms
218:	learn: 31.1368403	total: 653ms	remaining: 241ms
219:	learn: 31.1008710	total: 656ms	remaining: 239ms
220:	learn: 31.0749328	total: 660ms	remaining: 236ms
221:	learn: 31.0653105	total: 663ms	remaining: 233ms
222:	learn: 31.0481915	total: 667ms	remaining: 230ms
223:	learn: 31.0425160	total: 669ms	remaining: 227ms
224:	learn: 30.9998005	total: 672ms	remaining: 224ms
225:	learn: 30.9550976	total: 675ms	remaining: 221ms
226:	learn: 30.9281855	total: 678ms	remaining: 218ms
227:	learn: 30.8554875	total: 681ms	remaining: 215ms
228:	learn: 30.8129633	total: 684ms	remaining: 212ms
229:	learn: 30.7758163	total: 687ms	remaining: 209ms
230:	learn: 30.7403985	total: 690ms	remaining: 206ms
231:	learn: 30.6531344	total: 693ms	remaining: 203ms
232:	learn: 30.6039533	total: 695ms	remaining: 200ms
233:	learn: 30.5286637	total: 698ms	remaining: 197ms
234:	learn: 30.5163750	total: 701ms	remaining: 194ms
235:	learn: 30.4973015	total: 704ms	remaining: 191ms
236:	learn: 30.4520059	total: 707ms	remaining: 188ms
237:	learn: 30.4113875	total: 710ms	remaining: 185ms
238:	learn: 30.3682183	total: 713ms	remaining: 182ms
239:	learn: 30.3583321	total: 716ms	remaining: 179ms
240:	learn: 30.2660115	total: 719ms	remaining: 176ms
241:	learn: 30.1767935	total: 721ms	remaining: 173ms
242:	learn: 30.1265407	total: 724ms	remaining: 170ms
243:	learn: 30.1148303	total: 727ms	remaining: 167ms
244:	learn: 30.1036393	total: 730ms	remaining: 164ms
245:	learn: 30.0770671	total: 733ms	remaining: 161ms
246:	learn: 29.9773672	total: 736ms	remaining: 158ms
247:	learn: 29.8663401	total: 739ms	remaining: 155ms
248:	learn: 29.8407032	total: 742ms	remaining: 152ms
249:	learn: 29.8042228	total: 744ms	remaining: 149ms
250:	learn: 29.7341565	total: 747ms	remaining: 146ms
251:	learn: 29.7067541	total: 750ms	remaining: 143ms
252:	learn: 29.6208570	total: 753ms	remaining: 140ms
253:	learn: 29.5396091	total: 755ms	remaining: 137ms
254:	learn: 29.4887071	total: 758ms	remaining: 134ms
255:	learn: 29.4451558	total: 761ms	remaining: 131ms
256:	learn: 29.4015290	total: 764ms	remaining: 128ms
257:	learn: 29.3765732	total: 767ms	remaining: 125ms
258:	learn: 29.2956026	total: 769ms	remaining: 122ms
259:	learn: 29.2796538	total: 772ms	remaining: 119ms
260:	learn: 29.2672512	total: 775ms	remaining: 116ms
261:	learn: 29.2403360	total: 777ms	remaining: 113ms
262:	learn: 29.2009188	total: 780ms	remaining: 110ms
263:	learn: 29.1345424	total: 783ms	remaining: 107ms
264:	learn: 29.1222235	total: 786ms	remaining: 104ms
265:	learn: 29.0517705	total: 789ms	remaining: 101ms
266:	learn: 29.0351016	total: 792ms	remaining: 97.8ms
267:	learn: 29.0070103	total: 794ms	remaining: 94.9ms
268:	learn: 28.9688495	total: 797ms	remaining: 91.9ms
269:	learn: 28.9573524	total: 800ms	remaining: 88.9ms
270:	learn: 28.9497389	total: 803ms	remaining: 85.9ms
271:	learn: 28.9336877	total: 806ms	remaining: 82.9ms
272:	learn: 28.9065616	total: 809ms	remaining: 80ms
273:	learn: 28.8786620	total: 811ms	remaining: 77ms
274:	learn: 28.8434433	total: 814ms	remaining: 74ms
275:	learn: 28.8192108	total: 817ms	remaining: 71.1ms
276:	learn: 28.7650999	total: 820ms	remaining: 68.1ms
277:	learn: 28.7418789	total: 823ms	remaining: 65.1ms
278:	learn: 28.6960709	total: 826ms	remaining: 62.2ms
279:	learn: 28.6272706	total: 829ms	remaining: 59.2ms
280:	learn: 28.6171553	total: 832ms	remaining: 56.2ms
281:	learn: 28.5932493	total: 835ms	remaining: 53.3ms
282:	learn: 28.5883710	total: 837ms	remaining: 50.3ms
283:	learn: 28.5463571	total: 840ms	remaining: 47.3ms
284:	learn: 28.5002826	total: 846ms	remaining: 44.5ms
285:	learn: 28.4596366	total: 850ms	remaining: 41.6ms
286:	learn: 28.4152871	total: 854ms	remaining: 38.7ms
287:	learn: 28.3795245	total: 860ms	remaining: 35.8ms
288:	learn: 28.3689855	total: 865ms	remaining: 32.9ms
289:	learn: 28.3234883	total: 868ms	remaining: 29.9ms
290:	learn: 28.3014483	total: 873ms	remaining: 27ms
291:	learn: 28.2685402	total: 877ms	remaining: 24ms
292:	learn: 28.2615321	total: 880ms	remaining: 21ms
293:	learn: 28.2320290	total: 883ms	remaining: 18ms
294:	learn: 28.2012581	total: 886ms	remaining: 15ms
295:	learn: 28.1628794	total: 889ms	remaining: 12ms
296:	learn: 28.1533738	total: 892ms	remaining: 9.01ms
297:	learn: 28.1209972	total: 895ms	remaining: 6.01ms
298:	learn: 28.1105796	total: 899ms	remaining: 3ms
299:	learn: 28.0755937	total: 902ms	remaining: 0us
0:	learn: 46.7409540	total: 2.71ms	remaining: 810ms
1:	learn: 46.4900418	total: 5.29ms	remaining: 789ms
2:	learn: 46.2177991	total: 8.21ms	remaining: 812ms
3:	learn: 46.0246904	total: 10.9ms	remaining: 808ms
4:	learn: 45.8823293	total: 11.6ms	remaining: 685ms
5:	learn: 45.6975709	total: 14.5ms	remaining: 709ms
6:	learn: 45.4138557	total: 17.2ms	remaining: 720ms
7:	learn: 45.1915996	total: 19.9ms	remaining: 727ms
8:	learn: 45.0523314	total: 22.7ms	remaining: 735ms
9:	learn: 44.8314928	total: 25.4ms	remaining: 737ms
10:	learn: 44.6951527	total: 28.1ms	remaining: 737ms
11:	learn: 44.5126929	total: 30.7ms	remaining: 736ms
12:	learn: 44.4224414	total: 33.4ms	remaining: 736ms
13:	learn: 44.2893364	total: 36ms	remaining: 736ms
14:	learn: 44.1704279	total: 38.8ms	remaining: 736ms
15:	learn: 44.0345498	total: 41.4ms	remaining: 735ms
16:	learn: 43.8672380	total: 44.1ms	remaining: 735ms
17:	learn: 43.7009559	total: 46.8ms	remaining: 734ms
18:	learn: 43.6150435	total: 49.5ms	remaining: 733ms
19:	learn: 43.5220282	total: 52.5ms	remaining: 735ms
20:	learn: 43.3297206	total: 55.4ms	remaining: 736ms
21:	learn: 43.1696599	total: 58.2ms	remaining: 735ms
22:	learn: 42.9831081	total: 61.1ms	remaining: 736ms
23:	learn: 42.9080309	total: 63.7ms	remaining: 733ms
24:	learn: 42.8252763	total: 66.8ms	remaining: 734ms
25:	learn: 42.6448659	total: 69.7ms	remaining: 735ms
26:	learn: 42.4842723	total: 72.7ms	remaining: 735ms
27:	learn: 42.3580952	total: 75.7ms	remaining: 735ms
28:	learn: 42.2222094	total: 78.5ms	remaining: 733ms
29:	learn: 42.1187872	total: 81.2ms	remaining: 731ms
30:	learn: 42.0396949	total: 84ms	remaining: 729ms
31:	learn: 41.8887483	total: 86.8ms	remaining: 727ms
32:	learn: 41.7734119	total: 89.6ms	remaining: 725ms
33:	learn: 41.6874221	total: 93.9ms	remaining: 734ms
34:	learn: 41.5266937	total: 97.3ms	remaining: 737ms
35:	learn: 41.4359760	total: 100ms	remaining: 737ms
36:	learn: 41.3303571	total: 104ms	remaining: 739ms
37:	learn: 41.2411965	total: 107ms	remaining: 738ms
38:	learn: 41.1905359	total: 111ms	remaining: 742ms
39:	learn: 41.0896940	total: 114ms	remaining: 742ms
40:	learn: 41.0616713	total: 117ms	remaining: 740ms
41:	learn: 40.9376437	total: 121ms	remaining: 741ms
42:	learn: 40.8121909	total: 123ms	remaining: 737ms
43:	learn: 40.6918887	total: 126ms	remaining: 732ms
44:	learn: 40.5755597	total: 129ms	remaining: 729ms
45:	learn: 40.5183514	total: 131ms	remaining: 725ms
46:	learn: 40.4683386	total: 134ms	remaining: 721ms
47:	learn: 40.4237475	total: 137ms	remaining: 718ms
48:	learn: 40.3742374	total: 139ms	remaining: 714ms
49:	learn: 40.2848340	total: 142ms	remaining: 710ms
50:	learn: 40.2154181	total: 145ms	remaining: 707ms
51:	learn: 40.1573109	total: 148ms	remaining: 704ms
52:	learn: 40.1038095	total: 150ms	remaining: 699ms
53:	learn: 39.9687011	total: 153ms	remaining: 695ms
54:	learn: 39.8642070	total: 155ms	remaining: 691ms
55:	learn: 39.7679423	total: 158ms	remaining: 687ms
56:	learn: 39.7311395	total: 160ms	remaining: 683ms
57:	learn: 39.6966428	total: 163ms	remaining: 680ms
58:	learn: 39.6409457	total: 165ms	remaining: 675ms
59:	learn: 39.5589543	total: 168ms	remaining: 672ms
60:	learn: 39.5119041	total: 171ms	remaining: 668ms
61:	learn: 39.4614952	total: 173ms	remaining: 665ms
62:	learn: 39.3830530	total: 176ms	remaining: 661ms
63:	learn: 39.3025910	total: 178ms	remaining: 657ms
64:	learn: 39.1945931	total: 181ms	remaining: 654ms
65:	learn: 39.1672487	total: 183ms	remaining: 651ms
66:	learn: 39.0890373	total: 186ms	remaining: 647ms
67:	learn: 38.9952387	total: 189ms	remaining: 644ms
68:	learn: 38.8646371	total: 191ms	remaining: 641ms
69:	learn: 38.8092638	total: 194ms	remaining: 637ms
70:	learn: 38.7700652	total: 196ms	remaining: 633ms
71:	learn: 38.7224958	total: 199ms	remaining: 630ms
72:	learn: 38.6860112	total: 201ms	remaining: 627ms
73:	learn: 38.6598661	total: 204ms	remaining: 624ms
74:	learn: 38.6046827	total: 207ms	remaining: 620ms
75:	learn: 38.5326876	total: 209ms	remaining: 616ms
76:	learn: 38.4698903	total: 212ms	remaining: 613ms
77:	learn: 38.3611351	total: 214ms	remaining: 609ms
78:	learn: 38.2344264	total: 217ms	remaining: 606ms
79:	learn: 38.1876325	total: 219ms	remaining: 603ms
80:	learn: 38.1012586	total: 222ms	remaining: 600ms
81:	learn: 38.0137397	total: 224ms	remaining: 597ms
82:	learn: 37.9302845	total: 227ms	remaining: 594ms
83:	learn: 37.8724361	total: 230ms	remaining: 591ms
84:	learn: 37.8311923	total: 232ms	remaining: 588ms
85:	learn: 37.7731875	total: 235ms	remaining: 585ms
86:	learn: 37.7056069	total: 238ms	remaining: 582ms
87:	learn: 37.6640666	total: 240ms	remaining: 579ms
88:	learn: 37.6111679	total: 243ms	remaining: 575ms
89:	learn: 37.5658145	total: 245ms	remaining: 572ms
90:	learn: 37.5155703	total: 248ms	remaining: 569ms
91:	learn: 37.4802716	total: 250ms	remaining: 566ms
92:	learn: 37.4301915	total: 253ms	remaining: 563ms
93:	learn: 37.3959966	total: 255ms	remaining: 558ms
94:	learn: 37.3409338	total: 257ms	remaining: 556ms
95:	learn: 37.3007656	total: 260ms	remaining: 552ms
96:	learn: 37.2301460	total: 262ms	remaining: 549ms
97:	learn: 37.1587509	total: 265ms	remaining: 547ms
98:	learn: 37.1129692	total: 268ms	remaining: 544ms
99:	learn: 37.0028340	total: 271ms	remaining: 541ms
100:	learn: 36.9445360	total: 273ms	remaining: 538ms
101:	learn: 36.8968565	total: 276ms	remaining: 535ms
102:	learn: 36.8537872	total: 279ms	remaining: 533ms
103:	learn: 36.8278946	total: 281ms	remaining: 530ms
104:	learn: 36.7660934	total: 284ms	remaining: 528ms
105:	learn: 36.7005679	total: 287ms	remaining: 526ms
106:	learn: 36.6779992	total: 293ms	remaining: 529ms
107:	learn: 36.6317647	total: 298ms	remaining: 529ms
108:	learn: 36.5922762	total: 301ms	remaining: 528ms
109:	learn: 36.5581350	total: 306ms	remaining: 528ms
110:	learn: 36.5412464	total: 310ms	remaining: 528ms
111:	learn: 36.4742915	total: 314ms	remaining: 527ms
112:	learn: 36.3682318	total: 319ms	remaining: 528ms
113:	learn: 36.3238897	total: 322ms	remaining: 525ms
114:	learn: 36.2486749	total: 325ms	remaining: 523ms
115:	learn: 36.2074022	total: 328ms	remaining: 520ms
116:	learn: 36.1610808	total: 331ms	remaining: 518ms
117:	learn: 36.1142905	total: 334ms	remaining: 515ms
118:	learn: 36.0532081	total: 337ms	remaining: 513ms
119:	learn: 36.0108869	total: 340ms	remaining: 510ms
120:	learn: 35.9369859	total: 343ms	remaining: 508ms
121:	learn: 35.8860244	total: 346ms	remaining: 505ms
122:	learn: 35.8159312	total: 349ms	remaining: 503ms
123:	learn: 35.7375968	total: 352ms	remaining: 500ms
124:	learn: 35.6886767	total: 355ms	remaining: 497ms
125:	learn: 35.6489199	total: 359ms	remaining: 495ms
126:	learn: 35.6281245	total: 362ms	remaining: 493ms
127:	learn: 35.5344953	total: 365ms	remaining: 490ms
128:	learn: 35.5105800	total: 368ms	remaining: 487ms
129:	learn: 35.4969787	total: 371ms	remaining: 485ms
130:	learn: 35.4700500	total: 374ms	remaining: 482ms
131:	learn: 35.4211048	total: 377ms	remaining: 479ms
132:	learn: 35.3422989	total: 379ms	remaining: 476ms
133:	learn: 35.3292769	total: 382ms	remaining: 473ms
134:	learn: 35.2338468	total: 385ms	remaining: 470ms
135:	learn: 35.2043039	total: 387ms	remaining: 467ms
136:	learn: 35.1455212	total: 390ms	remaining: 464ms
137:	learn: 35.1266733	total: 393ms	remaining: 461ms
138:	learn: 35.1106707	total: 395ms	remaining: 458ms
139:	learn: 35.0577000	total: 398ms	remaining: 454ms
140:	learn: 35.0093012	total: 400ms	remaining: 451ms
141:	learn: 34.9923672	total: 403ms	remaining: 448ms
142:	learn: 34.9683405	total: 405ms	remaining: 445ms
143:	learn: 34.9269773	total: 408ms	remaining: 442ms
144:	learn: 34.9173570	total: 410ms	remaining: 438ms
145:	learn: 34.8932076	total: 413ms	remaining: 435ms
146:	learn: 34.8345158	total: 415ms	remaining: 432ms
147:	learn: 34.8128120	total: 418ms	remaining: 429ms
148:	learn: 34.7675567	total: 421ms	remaining: 426ms
149:	learn: 34.6680620	total: 423ms	remaining: 423ms
150:	learn: 34.6128793	total: 425ms	remaining: 420ms
151:	learn: 34.5858418	total: 428ms	remaining: 417ms
152:	learn: 34.5617141	total: 431ms	remaining: 414ms
153:	learn: 34.5583796	total: 433ms	remaining: 411ms
154:	learn: 34.5492043	total: 436ms	remaining: 408ms
155:	learn: 34.5062775	total: 439ms	remaining: 405ms
156:	learn: 34.4853214	total: 441ms	remaining: 402ms
157:	learn: 34.4532270	total: 444ms	remaining: 399ms
158:	learn: 34.4057143	total: 447ms	remaining: 396ms
159:	learn: 34.3638896	total: 449ms	remaining: 393ms
160:	learn: 34.3525518	total: 452ms	remaining: 390ms
161:	learn: 34.3180853	total: 455ms	remaining: 387ms
162:	learn: 34.2831184	total: 457ms	remaining: 384ms
163:	learn: 34.2153348	total: 460ms	remaining: 381ms
164:	learn: 34.1678422	total: 463ms	remaining: 379ms
165:	learn: 34.0781750	total: 466ms	remaining: 376ms
166:	learn: 34.0710071	total: 468ms	remaining: 373ms
167:	learn: 34.0457273	total: 471ms	remaining: 370ms
168:	learn: 34.0218289	total: 473ms	remaining: 367ms
169:	learn: 34.0193016	total: 474ms	remaining: 362ms
170:	learn: 33.9291561	total: 477ms	remaining: 359ms
171:	learn: 33.9148562	total: 479ms	remaining: 357ms
172:	learn: 33.8291166	total: 482ms	remaining: 354ms
173:	learn: 33.8124274	total: 486ms	remaining: 352ms
174:	learn: 33.7594554	total: 491ms	remaining: 351ms
175:	learn: 33.7213894	total: 494ms	remaining: 348ms
176:	learn: 33.7190291	total: 497ms	remaining: 346ms
177:	learn: 33.7027206	total: 501ms	remaining: 343ms
178:	learn: 33.6940830	total: 504ms	remaining: 341ms
179:	learn: 33.6708618	total: 507ms	remaining: 338ms
180:	learn: 33.6398192	total: 509ms	remaining: 335ms
181:	learn: 33.6237236	total: 513ms	remaining: 332ms
182:	learn: 33.5776923	total: 515ms	remaining: 329ms
183:	learn: 33.5359250	total: 518ms	remaining: 326ms
184:	learn: 33.5196497	total: 520ms	remaining: 323ms
185:	learn: 33.4897162	total: 523ms	remaining: 320ms
186:	learn: 33.4665916	total: 525ms	remaining: 317ms
187:	learn: 33.4265775	total: 528ms	remaining: 315ms
188:	learn: 33.4033700	total: 531ms	remaining: 312ms
189:	learn: 33.3674851	total: 533ms	remaining: 309ms
190:	learn: 33.3439383	total: 536ms	remaining: 306ms
191:	learn: 33.3096800	total: 539ms	remaining: 303ms
192:	learn: 33.3076549	total: 541ms	remaining: 300ms
193:	learn: 33.2762752	total: 544ms	remaining: 297ms
194:	learn: 33.2601887	total: 546ms	remaining: 294ms
195:	learn: 33.2520695	total: 549ms	remaining: 291ms
196:	learn: 33.2365212	total: 552ms	remaining: 288ms
197:	learn: 33.2277840	total: 554ms	remaining: 286ms
198:	learn: 33.1999417	total: 557ms	remaining: 283ms
199:	learn: 33.1561758	total: 560ms	remaining: 280ms
200:	learn: 33.1248616	total: 562ms	remaining: 277ms
201:	learn: 33.1177708	total: 565ms	remaining: 274ms
202:	learn: 33.1087692	total: 567ms	remaining: 271ms
203:	learn: 33.0651191	total: 570ms	remaining: 268ms
204:	learn: 33.0475080	total: 572ms	remaining: 265ms
205:	learn: 33.0324939	total: 575ms	remaining: 262ms
206:	learn: 32.9707173	total: 578ms	remaining: 260ms
207:	learn: 32.9568135	total: 581ms	remaining: 257ms
208:	learn: 32.9410674	total: 584ms	remaining: 254ms
209:	learn: 32.9043768	total: 587ms	remaining: 252ms
210:	learn: 32.8696749	total: 590ms	remaining: 249ms
211:	learn: 32.8595690	total: 593ms	remaining: 246ms
212:	learn: 32.8415730	total: 596ms	remaining: 243ms
213:	learn: 32.7827560	total: 598ms	remaining: 241ms
214:	learn: 32.7736392	total: 601ms	remaining: 238ms
215:	learn: 32.7402520	total: 604ms	remaining: 235ms
216:	learn: 32.7348668	total: 607ms	remaining: 232ms
217:	learn: 32.7026034	total: 610ms	remaining: 229ms
218:	learn: 32.6465736	total: 613ms	remaining: 227ms
219:	learn: 32.5785658	total: 615ms	remaining: 224ms
220:	learn: 32.5518853	total: 618ms	remaining: 221ms
221:	learn: 32.5425599	total: 620ms	remaining: 218ms
222:	learn: 32.4567134	total: 623ms	remaining: 215ms
223:	learn: 32.3910841	total: 626ms	remaining: 212ms
224:	learn: 32.3805838	total: 628ms	remaining: 209ms
225:	learn: 32.3495681	total: 631ms	remaining: 207ms
226:	learn: 32.3391937	total: 634ms	remaining: 204ms
227:	learn: 32.2788435	total: 636ms	remaining: 201ms
228:	learn: 32.2457383	total: 639ms	remaining: 198ms
229:	learn: 32.1839728	total: 642ms	remaining: 195ms
230:	learn: 32.1334642	total: 645ms	remaining: 193ms
231:	learn: 32.1052892	total: 647ms	remaining: 190ms
232:	learn: 32.0526544	total: 650ms	remaining: 187ms
233:	learn: 32.0476926	total: 653ms	remaining: 184ms
234:	learn: 32.0434369	total: 655ms	remaining: 181ms
235:	learn: 32.0001304	total: 658ms	remaining: 178ms
236:	learn: 31.9909493	total: 661ms	remaining: 176ms
237:	learn: 31.9583296	total: 664ms	remaining: 173ms
238:	learn: 31.9361650	total: 667ms	remaining: 170ms
239:	learn: 31.9097778	total: 671ms	remaining: 168ms
240:	learn: 31.9048113	total: 674ms	remaining: 165ms
241:	learn: 31.8978521	total: 677ms	remaining: 162ms
242:	learn: 31.8793342	total: 680ms	remaining: 159ms
243:	learn: 31.7955767	total: 683ms	remaining: 157ms
244:	learn: 31.7888123	total: 686ms	remaining: 154ms
245:	learn: 31.7646216	total: 690ms	remaining: 151ms
246:	learn: 31.7547256	total: 693ms	remaining: 149ms
247:	learn: 31.7467808	total: 696ms	remaining: 146ms
248:	learn: 31.7405683	total: 700ms	remaining: 143ms
249:	learn: 31.7159534	total: 703ms	remaining: 141ms
250:	learn: 31.6953713	total: 706ms	remaining: 138ms
251:	learn: 31.6886450	total: 709ms	remaining: 135ms
252:	learn: 31.6762483	total: 712ms	remaining: 132ms
253:	learn: 31.6663107	total: 715ms	remaining: 130ms
254:	learn: 31.6388957	total: 719ms	remaining: 127ms
255:	learn: 31.6119766	total: 722ms	remaining: 124ms
256:	learn: 31.5673762	total: 725ms	remaining: 121ms
257:	learn: 31.5087039	total: 728ms	remaining: 118ms
258:	learn: 31.5057918	total: 731ms	remaining: 116ms
259:	learn: 31.4815976	total: 734ms	remaining: 113ms
260:	learn: 31.4429973	total: 737ms	remaining: 110ms
261:	learn: 31.4307324	total: 740ms	remaining: 107ms
262:	learn: 31.3615565	total: 743ms	remaining: 105ms
263:	learn: 31.3419490	total: 746ms	remaining: 102ms
264:	learn: 31.3018857	total: 750ms	remaining: 99ms
265:	learn: 31.2955380	total: 752ms	remaining: 96.2ms
266:	learn: 31.2922250	total: 755ms	remaining: 93.3ms
267:	learn: 31.2238232	total: 758ms	remaining: 90.6ms
268:	learn: 31.2153842	total: 761ms	remaining: 87.8ms
269:	learn: 31.1941405	total: 765ms	remaining: 85ms
270:	learn: 31.1202914	total: 768ms	remaining: 82.2ms
271:	learn: 31.1076236	total: 771ms	remaining: 79.4ms
272:	learn: 31.0897572	total: 774ms	remaining: 76.6ms
273:	learn: 31.0876506	total: 777ms	remaining: 73.7ms
274:	learn: 31.0820490	total: 780ms	remaining: 70.9ms
275:	learn: 31.0378538	total: 782ms	remaining: 68ms
276:	learn: 31.0344867	total: 785ms	remaining: 65.2ms
277:	learn: 31.0038037	total: 787ms	remaining: 62.3ms
278:	learn: 30.9950252	total: 790ms	remaining: 59.5ms
279:	learn: 30.9785756	total: 793ms	remaining: 56.6ms
280:	learn: 30.9695898	total: 795ms	remaining: 53.8ms
281:	learn: 30.9640123	total: 798ms	remaining: 50.9ms
282:	learn: 30.8982341	total: 800ms	remaining: 48.1ms
283:	learn: 30.8788555	total: 803ms	remaining: 45.2ms
284:	learn: 30.8508810	total: 806ms	remaining: 42.4ms
285:	learn: 30.8225450	total: 808ms	remaining: 39.6ms
286:	learn: 30.8169303	total: 811ms	remaining: 36.7ms
287:	learn: 30.7949668	total: 814ms	remaining: 33.9ms
288:	learn: 30.7892180	total: 817ms	remaining: 31.1ms
289:	learn: 30.7517599	total: 819ms	remaining: 28.2ms
290:	learn: 30.7444248	total: 822ms	remaining: 25.4ms
291:	learn: 30.7341503	total: 824ms	remaining: 22.6ms
292:	learn: 30.7180315	total: 827ms	remaining: 19.8ms
293:	learn: 30.7118741	total: 830ms	remaining: 16.9ms
294:	learn: 30.7048745	total: 832ms	remaining: 14.1ms
295:	learn: 30.6999671	total: 835ms	remaining: 11.3ms
296:	learn: 30.6951216	total: 837ms	remaining: 8.46ms
297:	learn: 30.6717018	total: 840ms	remaining: 5.64ms
298:	learn: 30.6655786	total: 843ms	remaining: 2.82ms
299:	learn: 30.6597378	total: 845ms	remaining: 0us
0:	learn: 47.4345198	total: 3.35ms	remaining: 1s
1:	learn: 47.1803373	total: 6.64ms	remaining: 990ms
2:	learn: 46.9537885	total: 9.51ms	remaining: 941ms
3:	learn: 46.7484006	total: 12.3ms	remaining: 912ms
4:	learn: 46.5082487	total: 15.1ms	remaining: 888ms
5:	learn: 46.2664567	total: 17.4ms	remaining: 854ms
6:	learn: 46.0790469	total: 20.2ms	remaining: 844ms
7:	learn: 45.8212445	total: 22.8ms	remaining: 832ms
8:	learn: 45.6254409	total: 25.4ms	remaining: 822ms
9:	learn: 45.4958339	total: 27.8ms	remaining: 807ms
10:	learn: 45.2719681	total: 30.5ms	remaining: 801ms
11:	learn: 45.0557338	total: 33ms	remaining: 792ms
12:	learn: 44.9420518	total: 35.5ms	remaining: 783ms
13:	learn: 44.7592065	total: 38.2ms	remaining: 781ms
14:	learn: 44.5928936	total: 40.6ms	remaining: 772ms
15:	learn: 44.4901287	total: 43.5ms	remaining: 773ms
16:	learn: 44.2608943	total: 46.1ms	remaining: 767ms
17:	learn: 44.1278950	total: 48.6ms	remaining: 762ms
18:	learn: 43.9869418	total: 51.3ms	remaining: 758ms
19:	learn: 43.8765329	total: 53.8ms	remaining: 753ms
20:	learn: 43.7825785	total: 56.3ms	remaining: 748ms
21:	learn: 43.6594405	total: 58.9ms	remaining: 744ms
22:	learn: 43.5017730	total: 61.6ms	remaining: 742ms
23:	learn: 43.4380746	total: 64.2ms	remaining: 738ms
24:	learn: 43.3460819	total: 66.7ms	remaining: 734ms
25:	learn: 43.2129469	total: 69.1ms	remaining: 728ms
26:	learn: 43.1117583	total: 71.6ms	remaining: 724ms
27:	learn: 42.9762849	total: 74.2ms	remaining: 721ms
28:	learn: 42.8205803	total: 77ms	remaining: 719ms
29:	learn: 42.7150685	total: 79.4ms	remaining: 715ms
30:	learn: 42.5706656	total: 81.9ms	remaining: 711ms
31:	learn: 42.4468875	total: 84.5ms	remaining: 708ms
32:	learn: 42.3323044	total: 87.1ms	remaining: 705ms
33:	learn: 42.2009098	total: 89.6ms	remaining: 701ms
34:	learn: 42.0809807	total: 92.2ms	remaining: 698ms
35:	learn: 41.9856134	total: 95ms	remaining: 696ms
36:	learn: 41.8615928	total: 97.4ms	remaining: 692ms
37:	learn: 41.7428387	total: 100ms	remaining: 689ms
38:	learn: 41.5880034	total: 102ms	remaining: 685ms
39:	learn: 41.5042737	total: 105ms	remaining: 682ms
40:	learn: 41.4533046	total: 107ms	remaining: 679ms
41:	learn: 41.3504099	total: 110ms	remaining: 677ms
42:	learn: 41.2610642	total: 113ms	remaining: 674ms
43:	learn: 41.1754851	total: 115ms	remaining: 672ms
44:	learn: 41.0611075	total: 118ms	remaining: 670ms
45:	learn: 41.0058906	total: 121ms	remaining: 669ms
46:	learn: 40.9356801	total: 124ms	remaining: 666ms
47:	learn: 40.8903721	total: 126ms	remaining: 663ms
48:	learn: 40.8364117	total: 129ms	remaining: 660ms
49:	learn: 40.7526690	total: 131ms	remaining: 657ms
50:	learn: 40.7139605	total: 134ms	remaining: 654ms
51:	learn: 40.6856635	total: 136ms	remaining: 650ms
52:	learn: 40.6228259	total: 139ms	remaining: 649ms
53:	learn: 40.5865664	total: 142ms	remaining: 646ms
54:	learn: 40.4597682	total: 144ms	remaining: 643ms
55:	learn: 40.3836976	total: 147ms	remaining: 640ms
56:	learn: 40.3348977	total: 150ms	remaining: 638ms
57:	learn: 40.2648050	total: 152ms	remaining: 635ms
58:	learn: 40.1210986	total: 155ms	remaining: 633ms
59:	learn: 39.9689757	total: 158ms	remaining: 631ms
60:	learn: 39.8863368	total: 161ms	remaining: 629ms
61:	learn: 39.7903478	total: 163ms	remaining: 627ms
62:	learn: 39.7348177	total: 166ms	remaining: 624ms
63:	learn: 39.6700427	total: 169ms	remaining: 622ms
64:	learn: 39.6233471	total: 171ms	remaining: 619ms
65:	learn: 39.5407288	total: 174ms	remaining: 617ms
66:	learn: 39.4833113	total: 177ms	remaining: 616ms
67:	learn: 39.4191014	total: 181ms	remaining: 618ms
68:	learn: 39.3943698	total: 184ms	remaining: 617ms
69:	learn: 39.3380348	total: 189ms	remaining: 619ms
70:	learn: 39.3015533	total: 193ms	remaining: 624ms
71:	learn: 39.2174641	total: 198ms	remaining: 627ms
72:	learn: 39.1853311	total: 201ms	remaining: 625ms
73:	learn: 39.1125684	total: 205ms	remaining: 627ms
74:	learn: 39.0538416	total: 208ms	remaining: 625ms
75:	learn: 39.0038579	total: 211ms	remaining: 623ms
76:	learn: 38.8831293	total: 215ms	remaining: 621ms
77:	learn: 38.8127389	total: 218ms	remaining: 620ms
78:	learn: 38.7407008	total: 221ms	remaining: 618ms
79:	learn: 38.6842485	total: 224ms	remaining: 616ms
80:	learn: 38.6190149	total: 227ms	remaining: 613ms
81:	learn: 38.5223921	total: 230ms	remaining: 611ms
82:	learn: 38.4713320	total: 233ms	remaining: 609ms
83:	learn: 38.3873627	total: 236ms	remaining: 607ms
84:	learn: 38.3481678	total: 239ms	remaining: 605ms
85:	learn: 38.3213332	total: 242ms	remaining: 602ms
86:	learn: 38.2593371	total: 245ms	remaining: 599ms
87:	learn: 38.2308330	total: 247ms	remaining: 596ms
88:	learn: 38.2021836	total: 250ms	remaining: 593ms
89:	learn: 38.1088158	total: 253ms	remaining: 590ms
90:	learn: 38.0486019	total: 256ms	remaining: 587ms
91:	learn: 38.0073677	total: 258ms	remaining: 584ms
92:	learn: 37.9592089	total: 261ms	remaining: 581ms
93:	learn: 37.8762661	total: 264ms	remaining: 579ms
94:	learn: 37.8039371	total: 268ms	remaining: 578ms
95:	learn: 37.7731061	total: 271ms	remaining: 576ms
96:	learn: 37.7365356	total: 274ms	remaining: 573ms
97:	learn: 37.6586128	total: 276ms	remaining: 570ms
98:	learn: 37.6245646	total: 279ms	remaining: 566ms
99:	learn: 37.5561553	total: 282ms	remaining: 563ms
100:	learn: 37.5224779	total: 285ms	remaining: 561ms
101:	learn: 37.4792420	total: 287ms	remaining: 557ms
102:	learn: 37.3605023	total: 290ms	remaining: 554ms
103:	learn: 37.3215427	total: 292ms	remaining: 551ms
104:	learn: 37.2983428	total: 295ms	remaining: 548ms
105:	learn: 37.2817367	total: 298ms	remaining: 545ms
106:	learn: 37.2232437	total: 300ms	remaining: 541ms
107:	learn: 37.1441937	total: 303ms	remaining: 539ms
108:	learn: 37.0909969	total: 306ms	remaining: 536ms
109:	learn: 37.0617132	total: 309ms	remaining: 533ms
110:	learn: 37.0352719	total: 311ms	remaining: 530ms
111:	learn: 36.9288919	total: 314ms	remaining: 527ms
112:	learn: 36.8746752	total: 317ms	remaining: 525ms
113:	learn: 36.8613313	total: 320ms	remaining: 522ms
114:	learn: 36.8129093	total: 323ms	remaining: 519ms
115:	learn: 36.7732980	total: 325ms	remaining: 516ms
116:	learn: 36.7305672	total: 328ms	remaining: 513ms
117:	learn: 36.6740912	total: 331ms	remaining: 510ms
118:	learn: 36.6450693	total: 333ms	remaining: 506ms
119:	learn: 36.6065580	total: 336ms	remaining: 504ms
120:	learn: 36.5517370	total: 338ms	remaining: 501ms
121:	learn: 36.5172017	total: 341ms	remaining: 497ms
122:	learn: 36.4083583	total: 343ms	remaining: 494ms
123:	learn: 36.3686528	total: 346ms	remaining: 491ms
124:	learn: 36.3201400	total: 348ms	remaining: 488ms
125:	learn: 36.2872491	total: 351ms	remaining: 485ms
126:	learn: 36.2655127	total: 354ms	remaining: 482ms
127:	learn: 36.2426270	total: 357ms	remaining: 480ms
128:	learn: 36.2356829	total: 359ms	remaining: 477ms
129:	learn: 36.2141644	total: 362ms	remaining: 474ms
130:	learn: 36.1189128	total: 365ms	remaining: 471ms
131:	learn: 35.9990160	total: 368ms	remaining: 468ms
132:	learn: 35.9495956	total: 370ms	remaining: 465ms
133:	learn: 35.9359773	total: 373ms	remaining: 462ms
134:	learn: 35.8470774	total: 378ms	remaining: 462ms
135:	learn: 35.7776583	total: 381ms	remaining: 459ms
136:	learn: 35.7530995	total: 384ms	remaining: 457ms
137:	learn: 35.7137428	total: 388ms	remaining: 455ms
138:	learn: 35.6881746	total: 391ms	remaining: 453ms
139:	learn: 35.5962786	total: 394ms	remaining: 450ms
140:	learn: 35.5258589	total: 397ms	remaining: 448ms
141:	learn: 35.4990619	total: 400ms	remaining: 445ms
142:	learn: 35.4569239	total: 404ms	remaining: 443ms
143:	learn: 35.3769413	total: 406ms	remaining: 440ms
144:	learn: 35.3588736	total: 409ms	remaining: 437ms
145:	learn: 35.3564411	total: 410ms	remaining: 432ms
146:	learn: 35.2721589	total: 412ms	remaining: 429ms
147:	learn: 35.2476377	total: 415ms	remaining: 426ms
148:	learn: 35.1755567	total: 417ms	remaining: 423ms
149:	learn: 35.1034252	total: 420ms	remaining: 420ms
150:	learn: 35.0394130	total: 422ms	remaining: 417ms
151:	learn: 35.0105709	total: 425ms	remaining: 414ms
152:	learn: 34.9827218	total: 428ms	remaining: 411ms
153:	learn: 34.9642349	total: 430ms	remaining: 408ms
154:	learn: 34.8701980	total: 433ms	remaining: 405ms
155:	learn: 34.8128882	total: 436ms	remaining: 402ms
156:	learn: 34.7617668	total: 439ms	remaining: 400ms
157:	learn: 34.7486854	total: 442ms	remaining: 397ms
158:	learn: 34.7207291	total: 444ms	remaining: 394ms
159:	learn: 34.6868678	total: 447ms	remaining: 391ms
160:	learn: 34.6313296	total: 450ms	remaining: 389ms
161:	learn: 34.5791853	total: 453ms	remaining: 386ms
162:	learn: 34.4758922	total: 456ms	remaining: 383ms
163:	learn: 34.4060345	total: 458ms	remaining: 380ms
164:	learn: 34.3487331	total: 461ms	remaining: 377ms
165:	learn: 34.3394067	total: 463ms	remaining: 374ms
166:	learn: 34.3152193	total: 466ms	remaining: 371ms
167:	learn: 34.2841593	total: 468ms	remaining: 368ms
168:	learn: 34.2560727	total: 471ms	remaining: 365ms
169:	learn: 34.2338047	total: 473ms	remaining: 362ms
170:	learn: 34.2089393	total: 476ms	remaining: 359ms
171:	learn: 34.1999285	total: 478ms	remaining: 356ms
172:	learn: 34.1830957	total: 481ms	remaining: 353ms
173:	learn: 34.1801720	total: 483ms	remaining: 350ms
174:	learn: 34.1577200	total: 486ms	remaining: 347ms
175:	learn: 34.1305343	total: 489ms	remaining: 344ms
176:	learn: 34.0351372	total: 491ms	remaining: 341ms
177:	learn: 34.0199010	total: 494ms	remaining: 338ms
178:	learn: 34.0061255	total: 496ms	remaining: 336ms
179:	learn: 33.9777425	total: 499ms	remaining: 333ms
180:	learn: 33.9382161	total: 501ms	remaining: 330ms
181:	learn: 33.9168710	total: 504ms	remaining: 327ms
182:	learn: 33.8769625	total: 507ms	remaining: 324ms
183:	learn: 33.8663742	total: 509ms	remaining: 321ms
184:	learn: 33.8429098	total: 512ms	remaining: 318ms
185:	learn: 33.8284318	total: 514ms	remaining: 315ms
186:	learn: 33.7880813	total: 517ms	remaining: 312ms
187:	learn: 33.7798237	total: 519ms	remaining: 309ms
188:	learn: 33.7441697	total: 522ms	remaining: 306ms
189:	learn: 33.7135438	total: 524ms	remaining: 304ms
190:	learn: 33.7008817	total: 527ms	remaining: 301ms
191:	learn: 33.6768361	total: 529ms	remaining: 298ms
192:	learn: 33.6630576	total: 532ms	remaining: 295ms
193:	learn: 33.6434109	total: 535ms	remaining: 292ms
194:	learn: 33.6050415	total: 537ms	remaining: 289ms
195:	learn: 33.5951124	total: 540ms	remaining: 286ms
196:	learn: 33.5642132	total: 542ms	remaining: 284ms
197:	learn: 33.5522406	total: 545ms	remaining: 281ms
198:	learn: 33.4978810	total: 548ms	remaining: 278ms
199:	learn: 33.4608382	total: 551ms	remaining: 275ms
200:	learn: 33.3967445	total: 554ms	remaining: 273ms
201:	learn: 33.3832791	total: 556ms	remaining: 270ms
202:	learn: 33.3600595	total: 559ms	remaining: 267ms
203:	learn: 33.3395917	total: 562ms	remaining: 264ms
204:	learn: 33.3279251	total: 565ms	remaining: 262ms
205:	learn: 33.3154042	total: 567ms	remaining: 259ms
206:	learn: 33.3040672	total: 571ms	remaining: 257ms
207:	learn: 33.2949743	total: 575ms	remaining: 254ms
208:	learn: 33.2469608	total: 579ms	remaining: 252ms
209:	learn: 33.2302800	total: 584ms	remaining: 250ms
210:	learn: 33.2171947	total: 589ms	remaining: 248ms
211:	learn: 33.2045634	total: 592ms	remaining: 246ms
212:	learn: 33.1679803	total: 595ms	remaining: 243ms
213:	learn: 33.1438602	total: 599ms	remaining: 241ms
214:	learn: 33.1075007	total: 602ms	remaining: 238ms
215:	learn: 33.0576166	total: 605ms	remaining: 235ms
216:	learn: 33.0454131	total: 608ms	remaining: 232ms
217:	learn: 33.0337434	total: 611ms	remaining: 230ms
218:	learn: 33.0225519	total: 614ms	remaining: 227ms
219:	learn: 33.0047964	total: 616ms	remaining: 224ms
220:	learn: 32.9935965	total: 619ms	remaining: 221ms
221:	learn: 32.9660799	total: 622ms	remaining: 219ms
222:	learn: 32.9548002	total: 625ms	remaining: 216ms
223:	learn: 32.9279846	total: 628ms	remaining: 213ms
224:	learn: 32.9099345	total: 631ms	remaining: 210ms
225:	learn: 32.8909935	total: 634ms	remaining: 208ms
226:	learn: 32.8483819	total: 636ms	remaining: 205ms
227:	learn: 32.8459290	total: 639ms	remaining: 202ms
228:	learn: 32.8125404	total: 642ms	remaining: 199ms
229:	learn: 32.7934895	total: 645ms	remaining: 196ms
230:	learn: 32.7822088	total: 648ms	remaining: 194ms
231:	learn: 32.7716027	total: 651ms	remaining: 191ms
232:	learn: 32.7581238	total: 654ms	remaining: 188ms
233:	learn: 32.7244963	total: 657ms	remaining: 185ms
234:	learn: 32.7140833	total: 660ms	remaining: 183ms
235:	learn: 32.6797398	total: 665ms	remaining: 180ms
236:	learn: 32.6660595	total: 668ms	remaining: 177ms
237:	learn: 32.6439964	total: 670ms	remaining: 175ms
238:	learn: 32.6415510	total: 673ms	remaining: 172ms
239:	learn: 32.6233019	total: 675ms	remaining: 169ms
240:	learn: 32.5736105	total: 678ms	remaining: 166ms
241:	learn: 32.5455064	total: 680ms	remaining: 163ms
242:	learn: 32.5302096	total: 683ms	remaining: 160ms
243:	learn: 32.4796998	total: 686ms	remaining: 157ms
244:	learn: 32.4507242	total: 689ms	remaining: 155ms
245:	learn: 32.4246666	total: 691ms	remaining: 152ms
246:	learn: 32.4067457	total: 694ms	remaining: 149ms
247:	learn: 32.3995464	total: 697ms	remaining: 146ms
248:	learn: 32.3749821	total: 700ms	remaining: 143ms
249:	learn: 32.3239190	total: 702ms	remaining: 140ms
250:	learn: 32.3000844	total: 705ms	remaining: 138ms
251:	learn: 32.2907687	total: 707ms	remaining: 135ms
252:	learn: 32.2865061	total: 710ms	remaining: 132ms
253:	learn: 32.2377833	total: 713ms	remaining: 129ms
254:	learn: 32.2239049	total: 715ms	remaining: 126ms
255:	learn: 32.2020136	total: 718ms	remaining: 123ms
256:	learn: 32.1695229	total: 720ms	remaining: 121ms
257:	learn: 32.1539705	total: 723ms	remaining: 118ms
258:	learn: 32.0825367	total: 726ms	remaining: 115ms
259:	learn: 32.0663493	total: 728ms	remaining: 112ms
260:	learn: 32.0292061	total: 731ms	remaining: 109ms
261:	learn: 32.0084765	total: 733ms	remaining: 106ms
262:	learn: 31.9644951	total: 736ms	remaining: 104ms
263:	learn: 31.9279050	total: 739ms	remaining: 101ms
264:	learn: 31.8601022	total: 741ms	remaining: 97.9ms
265:	learn: 31.7936103	total: 744ms	remaining: 95.1ms
266:	learn: 31.7415043	total: 747ms	remaining: 92.3ms
267:	learn: 31.6940452	total: 750ms	remaining: 89.6ms
268:	learn: 31.6721754	total: 753ms	remaining: 86.8ms
269:	learn: 31.6514151	total: 756ms	remaining: 84ms
270:	learn: 31.6186907	total: 759ms	remaining: 81.2ms
271:	learn: 31.6087114	total: 761ms	remaining: 78.4ms
272:	learn: 31.5882765	total: 764ms	remaining: 75.6ms
273:	learn: 31.5311760	total: 767ms	remaining: 72.8ms
274:	learn: 31.5220593	total: 772ms	remaining: 70.2ms
275:	learn: 31.4640439	total: 775ms	remaining: 67.4ms
276:	learn: 31.4519029	total: 778ms	remaining: 64.6ms
277:	learn: 31.4452374	total: 781ms	remaining: 61.8ms
278:	learn: 31.4143337	total: 784ms	remaining: 59ms
279:	learn: 31.3754862	total: 788ms	remaining: 56.3ms
280:	learn: 31.3627413	total: 791ms	remaining: 53.5ms
281:	learn: 31.3068276	total: 794ms	remaining: 50.7ms
282:	learn: 31.2442212	total: 797ms	remaining: 47.9ms
283:	learn: 31.2220652	total: 800ms	remaining: 45.1ms
284:	learn: 31.1843222	total: 803ms	remaining: 42.3ms
285:	learn: 31.1303702	total: 806ms	remaining: 39.4ms
286:	learn: 31.0994210	total: 808ms	remaining: 36.6ms
287:	learn: 31.0848959	total: 811ms	remaining: 33.8ms
288:	learn: 31.0612009	total: 814ms	remaining: 31ms
289:	learn: 31.0270292	total: 816ms	remaining: 28.2ms
290:	learn: 31.0162398	total: 819ms	remaining: 25.3ms
291:	learn: 31.0043120	total: 822ms	remaining: 22.5ms
292:	learn: 30.9935700	total: 824ms	remaining: 19.7ms
293:	learn: 30.9847419	total: 826ms	remaining: 16.9ms
294:	learn: 30.9772256	total: 829ms	remaining: 14.1ms
295:	learn: 30.9325326	total: 832ms	remaining: 11.2ms
296:	learn: 30.9189246	total: 834ms	remaining: 8.43ms
297:	learn: 30.8525316	total: 837ms	remaining: 5.62ms
298:	learn: 30.8189248	total: 840ms	remaining: 2.81ms
299:	learn: 30.8106431	total: 842ms	remaining: 0us
0:	learn: 27.5331316	total: 19.4ms	remaining: 1.92s
1:	learn: 27.0928878	total: 40.2ms	remaining: 1.97s
2:	learn: 26.6215397	total: 59.6ms	remaining: 1.93s
3:	learn: 26.1320797	total: 80.7ms	remaining: 1.94s
4:	learn: 25.5708114	total: 110ms	remaining: 2.08s
5:	learn: 25.1569609	total: 135ms	remaining: 2.11s
6:	learn: 24.6776916	total: 157ms	remaining: 2.09s
7:	learn: 24.3131466	total: 180ms	remaining: 2.07s
8:	learn: 23.9291269	total: 202ms	remaining: 2.04s
9:	learn: 23.5838366	total: 222ms	remaining: 2s
10:	learn: 23.2314577	total: 241ms	remaining: 1.95s
11:	learn: 22.8869949	total: 262ms	remaining: 1.92s
12:	learn: 22.4245937	total: 281ms	remaining: 1.88s
13:	learn: 22.0206534	total: 303ms	remaining: 1.86s
14:	learn: 21.7022606	total: 334ms	remaining: 1.89s
15:	learn: 21.3968672	total: 356ms	remaining: 1.87s
16:	learn: 20.9882573	total: 378ms	remaining: 1.84s
17:	learn: 20.6789624	total: 398ms	remaining: 1.81s
18:	learn: 20.3827949	total: 418ms	remaining: 1.78s
19:	learn: 20.1544166	total: 437ms	remaining: 1.75s
20:	learn: 19.9121457	total: 456ms	remaining: 1.72s
21:	learn: 19.6621421	total: 477ms	remaining: 1.69s
22:	learn: 19.3501569	total: 498ms	remaining: 1.67s
23:	learn: 19.0889327	total: 518ms	remaining: 1.64s
24:	learn: 18.8689195	total: 542ms	remaining: 1.63s
25:	learn: 18.5964445	total: 573ms	remaining: 1.63s
26:	learn: 18.3364834	total: 595ms	remaining: 1.61s
27:	learn: 18.1076409	total: 617ms	remaining: 1.59s
28:	learn: 17.8878261	total: 640ms	remaining: 1.57s
29:	learn: 17.6774627	total: 659ms	remaining: 1.54s
30:	learn: 17.4836295	total: 680ms	remaining: 1.51s
31:	learn: 17.2733761	total: 701ms	remaining: 1.49s
32:	learn: 17.0468867	total: 720ms	remaining: 1.46s
33:	learn: 16.8108325	total: 750ms	remaining: 1.46s
34:	learn: 16.5415211	total: 774ms	remaining: 1.44s
35:	learn: 16.3714184	total: 796ms	remaining: 1.42s
36:	learn: 16.1608788	total: 818ms	remaining: 1.39s
37:	learn: 15.9984328	total: 839ms	remaining: 1.37s
38:	learn: 15.8335060	total: 860ms	remaining: 1.34s
39:	learn: 15.6602202	total: 881ms	remaining: 1.32s
40:	learn: 15.4954581	total: 903ms	remaining: 1.3s
41:	learn: 15.3620882	total: 926ms	remaining: 1.28s
42:	learn: 15.2140166	total: 948ms	remaining: 1.26s
43:	learn: 15.0870086	total: 971ms	remaining: 1.24s
44:	learn: 14.9147154	total: 1s	remaining: 1.22s
45:	learn: 14.7609171	total: 1.02s	remaining: 1.2s
46:	learn: 14.5901052	total: 1.05s	remaining: 1.18s
47:	learn: 14.4273259	total: 1.07s	remaining: 1.16s
48:	learn: 14.2798610	total: 1.1s	remaining: 1.14s
49:	learn: 14.1021139	total: 1.12s	remaining: 1.12s
50:	learn: 13.9902689	total: 1.14s	remaining: 1.1s
51:	learn: 13.8779536	total: 1.17s	remaining: 1.07s
52:	learn: 13.7445550	total: 1.2s	remaining: 1.06s
53:	learn: 13.6337249	total: 1.22s	remaining: 1.04s
54:	learn: 13.5400472	total: 1.24s	remaining: 1.01s
55:	learn: 13.3803597	total: 1.26s	remaining: 993ms
56:	learn: 13.2902125	total: 1.28s	remaining: 969ms
57:	learn: 13.1578553	total: 1.3s	remaining: 945ms
58:	learn: 13.0362047	total: 1.32s	remaining: 921ms
59:	learn: 12.9394034	total: 1.35s	remaining: 898ms
60:	learn: 12.8348950	total: 1.37s	remaining: 876ms
61:	learn: 12.7266532	total: 1.39s	remaining: 854ms
62:	learn: 12.5633581	total: 1.43s	remaining: 838ms
63:	learn: 12.4424580	total: 1.45s	remaining: 817ms
64:	learn: 12.3207502	total: 1.48s	remaining: 794ms
65:	learn: 12.1991637	total: 1.5s	remaining: 772ms
66:	learn: 12.0994803	total: 1.52s	remaining: 750ms
67:	learn: 11.9730740	total: 1.54s	remaining: 727ms
68:	learn: 11.8611564	total: 1.57s	remaining: 704ms
69:	learn: 11.7682666	total: 1.59s	remaining: 681ms
70:	learn: 11.6650875	total: 1.62s	remaining: 662ms
71:	learn: 11.5916610	total: 1.64s	remaining: 639ms
72:	learn: 11.4778837	total: 1.67s	remaining: 616ms
73:	learn: 11.3753187	total: 1.69s	remaining: 594ms
74:	learn: 11.2807363	total: 1.71s	remaining: 571ms
75:	learn: 11.1922433	total: 1.73s	remaining: 547ms
76:	learn: 11.1089234	total: 1.75s	remaining: 523ms
77:	learn: 11.0238343	total: 1.77s	remaining: 500ms
78:	learn: 10.9409200	total: 1.8s	remaining: 478ms
79:	learn: 10.8632563	total: 1.82s	remaining: 456ms
80:	learn: 10.7619610	total: 1.85s	remaining: 433ms
81:	learn: 10.6971597	total: 1.87s	remaining: 410ms
82:	learn: 10.6251891	total: 1.89s	remaining: 387ms
83:	learn: 10.5326326	total: 1.91s	remaining: 365ms
84:	learn: 10.4377665	total: 1.94s	remaining: 342ms
85:	learn: 10.3817931	total: 1.96s	remaining: 319ms
86:	learn: 10.2988157	total: 1.98s	remaining: 296ms
87:	learn: 10.2192016	total: 2s	remaining: 272ms
88:	learn: 10.1494494	total: 2.02s	remaining: 250ms
89:	learn: 10.0741735	total: 2.05s	remaining: 228ms
90:	learn: 10.0144581	total: 2.07s	remaining: 205ms
91:	learn: 9.9524648	total: 2.09s	remaining: 182ms
92:	learn: 9.8774329	total: 2.11s	remaining: 159ms
93:	learn: 9.8185407	total: 2.13s	remaining: 136ms
94:	learn: 9.7522036	total: 2.15s	remaining: 113ms
95:	learn: 9.6854283	total: 2.18s	remaining: 90.7ms
96:	learn: 9.6130737	total: 2.2s	remaining: 67.9ms
97:	learn: 9.5584787	total: 2.22s	remaining: 45.3ms
98:	learn: 9.5074757	total: 2.24s	remaining: 22.6ms
99:	learn: 9.4107769	total: 2.27s	remaining: 0us
0:	learn: 42.7887226	total: 23.6ms	remaining: 2.34s
1:	learn: 41.8440822	total: 35.3ms	remaining: 1.73s
2:	learn: 40.7630462	total: 57.4ms	remaining: 1.86s
3:	learn: 39.5297880	total: 78.6ms	remaining: 1.89s
4:	learn: 38.6077280	total: 98.7ms	remaining: 1.88s
5:	learn: 37.6971732	total: 120ms	remaining: 1.88s
6:	learn: 36.7463218	total: 142ms	remaining: 1.89s
7:	learn: 35.8007703	total: 170ms	remaining: 1.96s
8:	learn: 34.9731655	total: 190ms	remaining: 1.92s
9:	learn: 34.1812857	total: 210ms	remaining: 1.89s
10:	learn: 33.3509251	total: 229ms	remaining: 1.86s
11:	learn: 32.6184078	total: 251ms	remaining: 1.84s
12:	learn: 31.9918266	total: 272ms	remaining: 1.82s
13:	learn: 31.2244641	total: 293ms	remaining: 1.8s
14:	learn: 30.5895020	total: 315ms	remaining: 1.78s
15:	learn: 29.9318064	total: 340ms	remaining: 1.79s
16:	learn: 29.2267723	total: 365ms	remaining: 1.78s
17:	learn: 28.6196795	total: 391ms	remaining: 1.78s
18:	learn: 28.0756253	total: 413ms	remaining: 1.76s
19:	learn: 27.4447254	total: 436ms	remaining: 1.74s
20:	learn: 26.8501969	total: 460ms	remaining: 1.73s
21:	learn: 26.3047050	total: 480ms	remaining: 1.7s
22:	learn: 25.7794565	total: 500ms	remaining: 1.67s
23:	learn: 25.2658135	total: 502ms	remaining: 1.59s
24:	learn: 24.7272223	total: 522ms	remaining: 1.56s
25:	learn: 24.3182112	total: 544ms	remaining: 1.55s
26:	learn: 23.9791831	total: 567ms	remaining: 1.53s
27:	learn: 23.6007465	total: 594ms	remaining: 1.53s
28:	learn: 23.2573075	total: 614ms	remaining: 1.5s
29:	learn: 22.9475656	total: 636ms	remaining: 1.48s
30:	learn: 22.5526305	total: 657ms	remaining: 1.46s
31:	learn: 22.1198330	total: 677ms	remaining: 1.44s
32:	learn: 21.7489085	total: 697ms	remaining: 1.42s
33:	learn: 21.3655565	total: 718ms	remaining: 1.39s
34:	learn: 21.0252381	total: 741ms	remaining: 1.38s
35:	learn: 20.7488731	total: 762ms	remaining: 1.35s
36:	learn: 20.5339646	total: 794ms	remaining: 1.35s
37:	learn: 20.2145684	total: 818ms	remaining: 1.33s
38:	learn: 19.8876509	total: 841ms	remaining: 1.31s
39:	learn: 19.6692385	total: 862ms	remaining: 1.29s
40:	learn: 19.4286270	total: 883ms	remaining: 1.27s
41:	learn: 19.1769071	total: 905ms	remaining: 1.25s
42:	learn: 18.9575237	total: 926ms	remaining: 1.23s
43:	learn: 18.7342247	total: 947ms	remaining: 1.21s
44:	learn: 18.4849146	total: 969ms	remaining: 1.18s
45:	learn: 18.2624270	total: 994ms	remaining: 1.17s
46:	learn: 18.0695318	total: 1.02s	remaining: 1.16s
47:	learn: 17.8828655	total: 1.05s	remaining: 1.14s
48:	learn: 17.6634936	total: 1.07s	remaining: 1.11s
49:	learn: 17.4906819	total: 1.09s	remaining: 1.09s
50:	learn: 17.3041918	total: 1.11s	remaining: 1.07s
51:	learn: 17.0823762	total: 1.14s	remaining: 1.05s
52:	learn: 16.8782440	total: 1.16s	remaining: 1.03s
53:	learn: 16.6195426	total: 1.18s	remaining: 1s
54:	learn: 16.4155330	total: 1.2s	remaining: 983ms
55:	learn: 16.2476574	total: 1.22s	remaining: 961ms
56:	learn: 16.0258529	total: 1.25s	remaining: 945ms
57:	learn: 15.8620283	total: 1.28s	remaining: 925ms
58:	learn: 15.7108893	total: 1.3s	remaining: 904ms
59:	learn: 15.5737080	total: 1.32s	remaining: 882ms
60:	learn: 15.4123613	total: 1.35s	remaining: 862ms
61:	learn: 15.2629578	total: 1.37s	remaining: 840ms
62:	learn: 15.1097207	total: 1.39s	remaining: 817ms
63:	learn: 14.9427151	total: 1.42s	remaining: 796ms
64:	learn: 14.7889867	total: 1.44s	remaining: 777ms
65:	learn: 14.6746715	total: 1.47s	remaining: 757ms
66:	learn: 14.5205076	total: 1.49s	remaining: 735ms
67:	learn: 14.3786093	total: 1.51s	remaining: 712ms
68:	learn: 14.2324541	total: 1.53s	remaining: 690ms
69:	learn: 14.0978554	total: 1.55s	remaining: 667ms
70:	learn: 13.9424582	total: 1.58s	remaining: 644ms
71:	learn: 13.8140169	total: 1.6s	remaining: 622ms
72:	learn: 13.6759558	total: 1.62s	remaining: 600ms
73:	learn: 13.5499120	total: 1.65s	remaining: 578ms
74:	learn: 13.4276838	total: 1.68s	remaining: 559ms
75:	learn: 13.3175244	total: 1.7s	remaining: 537ms
76:	learn: 13.2179850	total: 1.72s	remaining: 515ms
77:	learn: 13.1192866	total: 1.75s	remaining: 493ms
78:	learn: 13.0156952	total: 1.77s	remaining: 471ms
79:	learn: 12.8996211	total: 1.79s	remaining: 448ms
80:	learn: 12.8036058	total: 1.81s	remaining: 426ms
81:	learn: 12.7085774	total: 1.83s	remaining: 403ms
82:	learn: 12.6225307	total: 1.86s	remaining: 381ms
83:	learn: 12.4901564	total: 1.89s	remaining: 360ms
84:	learn: 12.3766435	total: 1.91s	remaining: 337ms
85:	learn: 12.2837693	total: 1.93s	remaining: 315ms
86:	learn: 12.1808453	total: 1.95s	remaining: 292ms
87:	learn: 12.1154320	total: 1.97s	remaining: 269ms
88:	learn: 12.0324383	total: 2s	remaining: 247ms
89:	learn: 11.9649236	total: 2.02s	remaining: 224ms
90:	learn: 11.8702731	total: 2.04s	remaining: 201ms
91:	learn: 11.7872282	total: 2.06s	remaining: 179ms
92:	learn: 11.6802080	total: 2.08s	remaining: 157ms
93:	learn: 11.5608608	total: 2.11s	remaining: 135ms
94:	learn: 11.4619383	total: 2.14s	remaining: 112ms
95:	learn: 11.3892378	total: 2.16s	remaining: 90.1ms
96:	learn: 11.3083410	total: 2.18s	remaining: 67.6ms
97:	learn: 11.2283441	total: 2.21s	remaining: 45ms
98:	learn: 11.1583948	total: 2.23s	remaining: 22.5ms
99:	learn: 11.0469641	total: 2.25s	remaining: 0us
0:	learn: 46.3030650	total: 3.44ms	remaining: 340ms
1:	learn: 45.3863821	total: 24.8ms	remaining: 1.22s
2:	learn: 44.3303657	total: 46.6ms	remaining: 1.5s
3:	learn: 43.3376970	total: 68.3ms	remaining: 1.64s
4:	learn: 42.3048090	total: 91.8ms	remaining: 1.74s
5:	learn: 41.2876619	total: 115ms	remaining: 1.81s
6:	learn: 40.2621105	total: 138ms	remaining: 1.84s
7:	learn: 39.2067787	total: 159ms	remaining: 1.83s
8:	learn: 38.2152671	total: 181ms	remaining: 1.83s
9:	learn: 37.3871577	total: 202ms	remaining: 1.82s
10:	learn: 36.6393787	total: 222ms	remaining: 1.8s
11:	learn: 35.8850130	total: 245ms	remaining: 1.8s
12:	learn: 35.3145595	total: 271ms	remaining: 1.81s
13:	learn: 34.5127183	total: 298ms	remaining: 1.83s
14:	learn: 33.9299378	total: 320ms	remaining: 1.81s
15:	learn: 33.1444830	total: 343ms	remaining: 1.8s
16:	learn: 32.5046852	total: 366ms	remaining: 1.78s
17:	learn: 31.9896017	total: 386ms	remaining: 1.76s
18:	learn: 31.3671259	total: 408ms	remaining: 1.74s
19:	learn: 30.7709490	total: 428ms	remaining: 1.71s
20:	learn: 30.3076309	total: 448ms	remaining: 1.69s
21:	learn: 29.7436165	total: 470ms	remaining: 1.66s
22:	learn: 29.2367879	total: 500ms	remaining: 1.67s
23:	learn: 28.6721804	total: 520ms	remaining: 1.65s
24:	learn: 28.1740050	total: 540ms	remaining: 1.62s
25:	learn: 27.7310122	total: 559ms	remaining: 1.59s
26:	learn: 27.2559389	total: 579ms	remaining: 1.57s
27:	learn: 26.7919727	total: 600ms	remaining: 1.54s
28:	learn: 26.3973786	total: 622ms	remaining: 1.52s
29:	learn: 25.9446861	total: 642ms	remaining: 1.5s
30:	learn: 25.5889650	total: 663ms	remaining: 1.48s
31:	learn: 25.1627233	total: 686ms	remaining: 1.46s
32:	learn: 24.8848176	total: 718ms	remaining: 1.46s
33:	learn: 24.4268954	total: 742ms	remaining: 1.44s
34:	learn: 24.1655944	total: 765ms	remaining: 1.42s
35:	learn: 23.8296205	total: 786ms	remaining: 1.4s
36:	learn: 23.4214518	total: 808ms	remaining: 1.38s
37:	learn: 23.1485204	total: 828ms	remaining: 1.35s
38:	learn: 22.7675316	total: 850ms	remaining: 1.33s
39:	learn: 22.4807336	total: 871ms	remaining: 1.31s
40:	learn: 22.2054867	total: 893ms	remaining: 1.28s
41:	learn: 21.9328851	total: 915ms	remaining: 1.26s
42:	learn: 21.6073446	total: 943ms	remaining: 1.25s
43:	learn: 21.3198829	total: 966ms	remaining: 1.23s
44:	learn: 21.0001604	total: 987ms	remaining: 1.21s
45:	learn: 20.6560095	total: 1.01s	remaining: 1.18s
46:	learn: 20.4068862	total: 1.03s	remaining: 1.16s
47:	learn: 20.1123610	total: 1.05s	remaining: 1.14s
48:	learn: 19.8929795	total: 1.07s	remaining: 1.11s
49:	learn: 19.6851325	total: 1.09s	remaining: 1.09s
50:	learn: 19.4379923	total: 1.12s	remaining: 1.07s
51:	learn: 19.1765299	total: 1.15s	remaining: 1.06s
52:	learn: 18.9359818	total: 1.17s	remaining: 1.04s
53:	learn: 18.6848954	total: 1.2s	remaining: 1.02s
54:	learn: 18.4602852	total: 1.22s	remaining: 999ms
55:	learn: 18.2692773	total: 1.24s	remaining: 975ms
56:	learn: 18.0399201	total: 1.26s	remaining: 952ms
57:	learn: 17.8235063	total: 1.28s	remaining: 929ms
58:	learn: 17.6311769	total: 1.3s	remaining: 906ms
59:	learn: 17.4590002	total: 1.33s	remaining: 884ms
60:	learn: 17.2170241	total: 1.35s	remaining: 866ms
61:	learn: 17.0477567	total: 1.38s	remaining: 845ms
62:	learn: 16.8483227	total: 1.4s	remaining: 822ms
63:	learn: 16.7003707	total: 1.42s	remaining: 799ms
64:	learn: 16.5244197	total: 1.44s	remaining: 776ms
65:	learn: 16.3560522	total: 1.46s	remaining: 754ms
66:	learn: 16.2090391	total: 1.48s	remaining: 731ms
67:	learn: 16.0773806	total: 1.51s	remaining: 709ms
68:	learn: 15.9313223	total: 1.53s	remaining: 686ms
69:	learn: 15.8587403	total: 1.55s	remaining: 665ms
70:	learn: 15.7219902	total: 1.58s	remaining: 647ms
71:	learn: 15.5888303	total: 1.61s	remaining: 626ms
72:	learn: 15.4672174	total: 1.63s	remaining: 603ms
73:	learn: 15.3250528	total: 1.66s	remaining: 582ms
74:	learn: 15.1885799	total: 1.68s	remaining: 560ms
75:	learn: 15.0571789	total: 1.7s	remaining: 538ms
76:	learn: 14.9087739	total: 1.72s	remaining: 515ms
77:	learn: 14.7682304	total: 1.75s	remaining: 493ms
78:	learn: 14.5259049	total: 1.78s	remaining: 472ms
79:	learn: 14.3631190	total: 1.8s	remaining: 450ms
80:	learn: 14.2467961	total: 1.82s	remaining: 428ms
81:	learn: 14.0738885	total: 1.84s	remaining: 405ms
82:	learn: 13.9665111	total: 1.86s	remaining: 382ms
83:	learn: 13.8331846	total: 1.89s	remaining: 359ms
84:	learn: 13.7292162	total: 1.91s	remaining: 336ms
85:	learn: 13.6492354	total: 1.93s	remaining: 314ms
86:	learn: 13.5481979	total: 1.95s	remaining: 292ms
87:	learn: 13.4472352	total: 1.98s	remaining: 270ms
88:	learn: 13.3258910	total: 2.01s	remaining: 248ms
89:	learn: 13.2393886	total: 2.03s	remaining: 226ms
90:	learn: 13.1693415	total: 2.06s	remaining: 203ms
91:	learn: 13.0653588	total: 2.08s	remaining: 181ms
92:	learn: 12.9569271	total: 2.1s	remaining: 158ms
93:	learn: 12.7887232	total: 2.13s	remaining: 136ms
94:	learn: 12.6654219	total: 2.15s	remaining: 113ms
95:	learn: 12.5942081	total: 2.17s	remaining: 90.7ms
96:	learn: 12.5016735	total: 2.21s	remaining: 68.3ms
97:	learn: 12.3851734	total: 2.23s	remaining: 45.6ms
98:	learn: 12.2915943	total: 2.26s	remaining: 22.8ms
99:	learn: 12.1817773	total: 2.28s	remaining: 0us
0:	learn: 45.9374585	total: 3.28ms	remaining: 325ms
1:	learn: 44.9941372	total: 24.8ms	remaining: 1.21s
2:	learn: 44.2262139	total: 45.8ms	remaining: 1.48s
3:	learn: 43.4077369	total: 67.3ms	remaining: 1.61s
4:	learn: 42.4614795	total: 90.7ms	remaining: 1.72s
5:	learn: 41.7293035	total: 122ms	remaining: 1.91s
6:	learn: 40.9788334	total: 146ms	remaining: 1.94s
7:	learn: 40.2192521	total: 168ms	remaining: 1.94s
8:	learn: 39.3640339	total: 192ms	remaining: 1.94s
9:	learn: 38.5378070	total: 215ms	remaining: 1.94s
10:	learn: 37.8182939	total: 236ms	remaining: 1.91s
11:	learn: 37.1773569	total: 258ms	remaining: 1.89s
12:	learn: 36.4195124	total: 282ms	remaining: 1.89s
13:	learn: 35.5821022	total: 309ms	remaining: 1.9s
14:	learn: 35.0064478	total: 334ms	remaining: 1.89s
15:	learn: 34.2615732	total: 354ms	remaining: 1.86s
16:	learn: 33.5412554	total: 376ms	remaining: 1.83s
17:	learn: 32.9141508	total: 396ms	remaining: 1.8s
18:	learn: 32.2363942	total: 416ms	remaining: 1.77s
19:	learn: 31.7331387	total: 437ms	remaining: 1.75s
20:	learn: 31.0899756	total: 458ms	remaining: 1.72s
21:	learn: 30.6319944	total: 479ms	remaining: 1.7s
22:	learn: 30.1842367	total: 501ms	remaining: 1.68s
23:	learn: 29.6380878	total: 533ms	remaining: 1.69s
24:	learn: 29.2321241	total: 557ms	remaining: 1.67s
25:	learn: 28.7979520	total: 579ms	remaining: 1.65s
26:	learn: 28.2980553	total: 601ms	remaining: 1.63s
27:	learn: 27.8482566	total: 624ms	remaining: 1.6s
28:	learn: 27.4300154	total: 646ms	remaining: 1.58s
29:	learn: 27.0089070	total: 665ms	remaining: 1.55s
30:	learn: 26.6386533	total: 684ms	remaining: 1.52s
31:	learn: 26.1488739	total: 705ms	remaining: 1.5s
32:	learn: 25.7427326	total: 727ms	remaining: 1.48s
33:	learn: 25.4135376	total: 757ms	remaining: 1.47s
34:	learn: 25.1125079	total: 780ms	remaining: 1.45s
35:	learn: 24.7765508	total: 799ms	remaining: 1.42s
36:	learn: 24.4184054	total: 819ms	remaining: 1.4s
37:	learn: 24.1285465	total: 839ms	remaining: 1.37s
38:	learn: 23.7617767	total: 859ms	remaining: 1.34s
39:	learn: 23.4697237	total: 878ms	remaining: 1.32s
40:	learn: 23.1529572	total: 900ms	remaining: 1.29s
41:	learn: 22.9281680	total: 922ms	remaining: 1.27s
42:	learn: 22.5433571	total: 955ms	remaining: 1.27s
43:	learn: 22.2694210	total: 981ms	remaining: 1.25s
44:	learn: 22.0626545	total: 1s	remaining: 1.23s
45:	learn: 21.7856336	total: 1.03s	remaining: 1.21s
46:	learn: 21.5744570	total: 1.05s	remaining: 1.18s
47:	learn: 21.3032312	total: 1.07s	remaining: 1.16s
48:	learn: 21.0549035	total: 1.09s	remaining: 1.14s
49:	learn: 20.7560738	total: 1.12s	remaining: 1.12s
50:	learn: 20.5666362	total: 1.14s	remaining: 1.09s
51:	learn: 20.2971913	total: 1.17s	remaining: 1.08s
52:	learn: 20.1128767	total: 1.19s	remaining: 1.06s
53:	learn: 19.9086266	total: 1.22s	remaining: 1.04s
54:	learn: 19.8505379	total: 1.24s	remaining: 1.01s
55:	learn: 19.6060818	total: 1.26s	remaining: 990ms
56:	learn: 19.3463236	total: 1.28s	remaining: 966ms
57:	learn: 19.1448943	total: 1.3s	remaining: 944ms
58:	learn: 18.9303070	total: 1.32s	remaining: 921ms
59:	learn: 18.7334702	total: 1.34s	remaining: 896ms
60:	learn: 18.4745316	total: 1.37s	remaining: 874ms
61:	learn: 18.3429058	total: 1.4s	remaining: 858ms
62:	learn: 18.2349371	total: 1.42s	remaining: 836ms
63:	learn: 18.0464198	total: 1.45s	remaining: 813ms
64:	learn: 17.9551885	total: 1.47s	remaining: 791ms
65:	learn: 17.8046513	total: 1.49s	remaining: 769ms
66:	learn: 17.6580615	total: 1.51s	remaining: 744ms
67:	learn: 17.5210179	total: 1.53s	remaining: 720ms
68:	learn: 17.3683843	total: 1.55s	remaining: 698ms
69:	learn: 17.2746349	total: 1.58s	remaining: 677ms
70:	learn: 17.1657792	total: 1.6s	remaining: 655ms
71:	learn: 17.0139366	total: 1.62s	remaining: 631ms
72:	learn: 16.9273438	total: 1.64s	remaining: 608ms
73:	learn: 16.7770796	total: 1.66s	remaining: 585ms
74:	learn: 16.6273270	total: 1.69s	remaining: 562ms
75:	learn: 16.4876252	total: 1.71s	remaining: 539ms
76:	learn: 16.3403316	total: 1.73s	remaining: 516ms
77:	learn: 16.2334666	total: 1.75s	remaining: 494ms
78:	learn: 16.1246403	total: 1.77s	remaining: 472ms
79:	learn: 16.1051765	total: 1.77s	remaining: 444ms
80:	learn: 15.9789512	total: 1.8s	remaining: 423ms
81:	learn: 15.8668312	total: 1.83s	remaining: 402ms
82:	learn: 15.8286992	total: 1.86s	remaining: 380ms
83:	learn: 15.7176535	total: 1.88s	remaining: 358ms
84:	learn: 15.6304053	total: 1.9s	remaining: 336ms
85:	learn: 15.5540487	total: 1.92s	remaining: 313ms
86:	learn: 15.4358015	total: 1.94s	remaining: 290ms
87:	learn: 15.3234993	total: 1.97s	remaining: 268ms
88:	learn: 15.1846833	total: 1.99s	remaining: 246ms
89:	learn: 15.0930916	total: 2.01s	remaining: 224ms
90:	learn: 14.9870552	total: 2.04s	remaining: 202ms
91:	learn: 14.9340350	total: 2.06s	remaining: 179ms
92:	learn: 14.8819329	total: 2.08s	remaining: 157ms
93:	learn: 14.8108947	total: 2.1s	remaining: 134ms
94:	learn: 14.7229760	total: 2.12s	remaining: 112ms
95:	learn: 14.6144792	total: 2.15s	remaining: 89.4ms
96:	learn: 14.5117556	total: 2.17s	remaining: 67ms
97:	learn: 14.4162730	total: 2.19s	remaining: 44.7ms
98:	learn: 14.3472920	total: 2.21s	remaining: 22.4ms
99:	learn: 14.2651631	total: 2.24s	remaining: 0us
0:	learn: 46.4538034	total: 20.4ms	remaining: 2.02s
1:	learn: 45.4517374	total: 41.7ms	remaining: 2.04s
2:	learn: 44.5278586	total: 61.2ms	remaining: 1.98s
3:	learn: 43.4085977	total: 84.5ms	remaining: 2.03s
4:	learn: 42.4277811	total: 107ms	remaining: 2.04s
5:	learn: 41.6326697	total: 136ms	remaining: 2.14s
6:	learn: 40.7538359	total: 159ms	remaining: 2.11s
7:	learn: 39.9527309	total: 180ms	remaining: 2.07s
8:	learn: 39.0753018	total: 203ms	remaining: 2.05s
9:	learn: 38.2762566	total: 223ms	remaining: 2s
10:	learn: 37.6931120	total: 245ms	remaining: 1.98s
11:	learn: 37.1152456	total: 265ms	remaining: 1.94s
12:	learn: 36.4260589	total: 286ms	remaining: 1.92s
13:	learn: 35.8227743	total: 310ms	remaining: 1.9s
14:	learn: 35.1895931	total: 331ms	remaining: 1.88s
15:	learn: 34.5173917	total: 363ms	remaining: 1.9s
16:	learn: 33.7580423	total: 387ms	remaining: 1.89s
17:	learn: 33.2817590	total: 410ms	remaining: 1.87s
18:	learn: 32.6094234	total: 434ms	remaining: 1.85s
19:	learn: 32.1663838	total: 458ms	remaining: 1.83s
20:	learn: 31.6118204	total: 480ms	remaining: 1.81s
21:	learn: 31.0524919	total: 503ms	remaining: 1.78s
22:	learn: 30.6530294	total: 525ms	remaining: 1.76s
23:	learn: 29.9638142	total: 554ms	remaining: 1.75s
24:	learn: 29.4784766	total: 576ms	remaining: 1.73s
25:	learn: 29.0431548	total: 597ms	remaining: 1.7s
26:	learn: 28.5923229	total: 618ms	remaining: 1.67s
27:	learn: 28.1646598	total: 640ms	remaining: 1.65s
28:	learn: 27.7320559	total: 661ms	remaining: 1.62s
29:	learn: 27.3472101	total: 683ms	remaining: 1.59s
30:	learn: 26.9299792	total: 705ms	remaining: 1.57s
31:	learn: 26.5961114	total: 727ms	remaining: 1.54s
32:	learn: 26.0427736	total: 749ms	remaining: 1.52s
33:	learn: 25.5746867	total: 781ms	remaining: 1.51s
34:	learn: 25.2866624	total: 804ms	remaining: 1.49s
35:	learn: 24.9462619	total: 827ms	remaining: 1.47s
36:	learn: 24.6276430	total: 849ms	remaining: 1.45s
37:	learn: 24.3408784	total: 870ms	remaining: 1.42s
38:	learn: 24.0950500	total: 890ms	remaining: 1.39s
39:	learn: 23.7192013	total: 910ms	remaining: 1.36s
40:	learn: 23.4131644	total: 931ms	remaining: 1.34s
41:	learn: 23.0871679	total: 951ms	remaining: 1.31s
42:	learn: 22.8237273	total: 973ms	remaining: 1.29s
43:	learn: 22.5691307	total: 1000ms	remaining: 1.27s
44:	learn: 22.3341037	total: 1.02s	remaining: 1.25s
45:	learn: 22.0782394	total: 1.04s	remaining: 1.23s
46:	learn: 21.8287260	total: 1.06s	remaining: 1.2s
47:	learn: 21.4945293	total: 1.09s	remaining: 1.18s
48:	learn: 21.2779027	total: 1.11s	remaining: 1.15s
49:	learn: 21.0183245	total: 1.13s	remaining: 1.13s
50:	learn: 20.8304059	total: 1.15s	remaining: 1.1s
51:	learn: 20.6505224	total: 1.17s	remaining: 1.08s
52:	learn: 20.4434302	total: 1.19s	remaining: 1.05s
53:	learn: 20.2358596	total: 1.22s	remaining: 1.03s
54:	learn: 19.9248895	total: 1.24s	remaining: 1.01s
55:	learn: 19.6402054	total: 1.26s	remaining: 991ms
56:	learn: 19.4863996	total: 1.28s	remaining: 969ms
57:	learn: 19.2820242	total: 1.31s	remaining: 947ms
58:	learn: 19.0309684	total: 1.33s	remaining: 924ms
59:	learn: 18.9156855	total: 1.35s	remaining: 901ms
60:	learn: 18.7362124	total: 1.37s	remaining: 877ms
61:	learn: 18.5327109	total: 1.39s	remaining: 853ms
62:	learn: 18.3473379	total: 1.41s	remaining: 830ms
63:	learn: 18.1447985	total: 1.44s	remaining: 813ms
64:	learn: 17.9782680	total: 1.47s	remaining: 790ms
65:	learn: 17.7731055	total: 1.49s	remaining: 767ms
66:	learn: 17.6666871	total: 1.51s	remaining: 744ms
67:	learn: 17.4893685	total: 1.53s	remaining: 720ms
68:	learn: 17.4081271	total: 1.55s	remaining: 696ms
69:	learn: 17.2768910	total: 1.57s	remaining: 673ms
70:	learn: 17.1686736	total: 1.59s	remaining: 650ms
71:	learn: 17.0306633	total: 1.61s	remaining: 627ms
72:	learn: 16.8387254	total: 1.64s	remaining: 605ms
73:	learn: 16.6835666	total: 1.67s	remaining: 585ms
74:	learn: 16.5275101	total: 1.69s	remaining: 563ms
75:	learn: 16.3788685	total: 1.71s	remaining: 540ms
76:	learn: 16.2632053	total: 1.73s	remaining: 517ms
77:	learn: 16.1434405	total: 1.76s	remaining: 495ms
78:	learn: 16.0439065	total: 1.78s	remaining: 473ms
79:	learn: 15.9662547	total: 1.8s	remaining: 450ms
80:	learn: 15.8312242	total: 1.82s	remaining: 427ms
81:	learn: 15.7325519	total: 1.84s	remaining: 404ms
82:	learn: 15.5842095	total: 1.86s	remaining: 381ms
83:	learn: 15.4773774	total: 1.89s	remaining: 360ms
84:	learn: 15.3840131	total: 1.91s	remaining: 338ms
85:	learn: 15.2543240	total: 1.93s	remaining: 315ms
86:	learn: 15.1770733	total: 1.96s	remaining: 292ms
87:	learn: 15.0601980	total: 1.98s	remaining: 270ms
88:	learn: 14.9710854	total: 2s	remaining: 247ms
89:	learn: 14.8071359	total: 2.02s	remaining: 225ms
90:	learn: 14.6765600	total: 2.04s	remaining: 202ms
91:	learn: 14.6006761	total: 2.06s	remaining: 180ms
92:	learn: 14.4927442	total: 2.09s	remaining: 157ms
93:	learn: 14.3676298	total: 2.12s	remaining: 135ms
94:	learn: 14.2821814	total: 2.14s	remaining: 113ms
95:	learn: 14.1977772	total: 2.16s	remaining: 90.2ms
96:	learn: 14.0716572	total: 2.19s	remaining: 67.7ms
97:	learn: 13.9596234	total: 2.21s	remaining: 45.1ms
98:	learn: 13.8995436	total: 2.23s	remaining: 22.5ms
99:	learn: 13.8034385	total: 2.25s	remaining: 0us
0:	learn: 26.8780123	total: 1.9ms	remaining: 378ms
1:	learn: 25.9043921	total: 3.38ms	remaining: 335ms
2:	learn: 25.0663216	total: 4.92ms	remaining: 323ms
3:	learn: 24.1332294	total: 6.46ms	remaining: 317ms
4:	learn: 23.3601755	total: 7.84ms	remaining: 306ms
5:	learn: 22.9157604	total: 9.14ms	remaining: 296ms
6:	learn: 22.3654023	total: 10.5ms	remaining: 290ms
7:	learn: 21.8960373	total: 12ms	remaining: 287ms
8:	learn: 21.5070135	total: 13.4ms	remaining: 285ms
9:	learn: 21.0046151	total: 15ms	remaining: 285ms
10:	learn: 20.6513404	total: 16.5ms	remaining: 284ms
11:	learn: 20.2426893	total: 17.9ms	remaining: 280ms
12:	learn: 19.9302622	total: 19.4ms	remaining: 280ms
13:	learn: 19.5777286	total: 21ms	remaining: 279ms
14:	learn: 19.3118034	total: 22.5ms	remaining: 277ms
15:	learn: 19.0360666	total: 23.8ms	remaining: 274ms
16:	learn: 18.7716159	total: 25.1ms	remaining: 270ms
17:	learn: 18.4566599	total: 26.4ms	remaining: 267ms
18:	learn: 18.2927501	total: 27.9ms	remaining: 266ms
19:	learn: 18.1194416	total: 29.3ms	remaining: 264ms
20:	learn: 17.9430536	total: 30.7ms	remaining: 262ms
21:	learn: 17.8280854	total: 32.1ms	remaining: 260ms
22:	learn: 17.6642931	total: 33.5ms	remaining: 258ms
23:	learn: 17.5061616	total: 35.1ms	remaining: 257ms
24:	learn: 17.2762703	total: 36.6ms	remaining: 256ms
25:	learn: 17.1451275	total: 38ms	remaining: 254ms
26:	learn: 16.9306177	total: 39.5ms	remaining: 253ms
27:	learn: 16.8487860	total: 40.9ms	remaining: 251ms
28:	learn: 16.5681267	total: 42.3ms	remaining: 250ms
29:	learn: 16.4717015	total: 43.7ms	remaining: 248ms
30:	learn: 16.3374350	total: 45.4ms	remaining: 248ms
31:	learn: 16.1874305	total: 47ms	remaining: 247ms
32:	learn: 16.0197095	total: 48.5ms	remaining: 245ms
33:	learn: 15.8764166	total: 50.2ms	remaining: 245ms
34:	learn: 15.8515487	total: 51.5ms	remaining: 243ms
35:	learn: 15.8248399	total: 53ms	remaining: 241ms
36:	learn: 15.7210312	total: 54.6ms	remaining: 240ms
37:	learn: 15.5988641	total: 56.1ms	remaining: 239ms
38:	learn: 15.4309330	total: 57.5ms	remaining: 237ms
39:	learn: 15.2923817	total: 58.9ms	remaining: 236ms
40:	learn: 15.2034106	total: 60.4ms	remaining: 234ms
41:	learn: 15.1096066	total: 62ms	remaining: 233ms
42:	learn: 15.0332381	total: 63.9ms	remaining: 233ms
43:	learn: 14.9505994	total: 65.4ms	remaining: 232ms
44:	learn: 14.8598807	total: 66.9ms	remaining: 230ms
45:	learn: 14.8160247	total: 68.3ms	remaining: 229ms
46:	learn: 14.7502711	total: 69.8ms	remaining: 227ms
47:	learn: 14.6559871	total: 71.2ms	remaining: 225ms
48:	learn: 14.5854837	total: 72.7ms	remaining: 224ms
49:	learn: 14.5499920	total: 74.2ms	remaining: 223ms
50:	learn: 14.4444283	total: 75.5ms	remaining: 221ms
51:	learn: 14.3487120	total: 77.1ms	remaining: 219ms
52:	learn: 14.2932080	total: 78.6ms	remaining: 218ms
53:	learn: 14.2463197	total: 80.1ms	remaining: 217ms
54:	learn: 14.1748090	total: 81.7ms	remaining: 215ms
55:	learn: 14.1230579	total: 83.2ms	remaining: 214ms
56:	learn: 14.0658107	total: 84.7ms	remaining: 212ms
57:	learn: 13.9301963	total: 86.1ms	remaining: 211ms
58:	learn: 13.8921094	total: 87.4ms	remaining: 209ms
59:	learn: 13.8125984	total: 88.7ms	remaining: 207ms
60:	learn: 13.7348965	total: 90ms	remaining: 205ms
61:	learn: 13.6366597	total: 91.2ms	remaining: 203ms
62:	learn: 13.5779579	total: 92.5ms	remaining: 201ms
63:	learn: 13.5143491	total: 94.1ms	remaining: 200ms
64:	learn: 13.4867625	total: 95.7ms	remaining: 199ms
65:	learn: 13.4133267	total: 97.1ms	remaining: 197ms
66:	learn: 13.3350082	total: 98.4ms	remaining: 195ms
67:	learn: 13.2699153	total: 99.8ms	remaining: 194ms
68:	learn: 13.2169661	total: 101ms	remaining: 192ms
69:	learn: 13.2010197	total: 102ms	remaining: 190ms
70:	learn: 13.1555695	total: 104ms	remaining: 188ms
71:	learn: 13.0050035	total: 105ms	remaining: 186ms
72:	learn: 12.8909186	total: 106ms	remaining: 184ms
73:	learn: 12.8359378	total: 107ms	remaining: 183ms
74:	learn: 12.7931154	total: 109ms	remaining: 181ms
75:	learn: 12.6794363	total: 110ms	remaining: 179ms
76:	learn: 12.6250914	total: 112ms	remaining: 178ms
77:	learn: 12.5828418	total: 113ms	remaining: 177ms
78:	learn: 12.5525142	total: 115ms	remaining: 176ms
79:	learn: 12.5073778	total: 116ms	remaining: 174ms
80:	learn: 12.4000173	total: 118ms	remaining: 173ms
81:	learn: 12.2465583	total: 119ms	remaining: 172ms
82:	learn: 12.2062227	total: 121ms	remaining: 170ms
83:	learn: 12.1563882	total: 122ms	remaining: 169ms
84:	learn: 12.0021969	total: 124ms	remaining: 168ms
85:	learn: 11.9673275	total: 125ms	remaining: 166ms
86:	learn: 11.9144004	total: 127ms	remaining: 165ms
87:	learn: 11.8871985	total: 129ms	remaining: 164ms
88:	learn: 11.7609906	total: 130ms	remaining: 162ms
89:	learn: 11.7305728	total: 132ms	remaining: 161ms
90:	learn: 11.7155199	total: 133ms	remaining: 160ms
91:	learn: 11.6510384	total: 135ms	remaining: 158ms
92:	learn: 11.6188932	total: 136ms	remaining: 157ms
93:	learn: 11.5644175	total: 137ms	remaining: 155ms
94:	learn: 11.5225771	total: 139ms	remaining: 154ms
95:	learn: 11.4912355	total: 140ms	remaining: 152ms
96:	learn: 11.4496711	total: 142ms	remaining: 151ms
97:	learn: 11.3386414	total: 143ms	remaining: 149ms
98:	learn: 11.3143359	total: 145ms	remaining: 148ms
99:	learn: 11.3045788	total: 146ms	remaining: 146ms
100:	learn: 11.2241989	total: 148ms	remaining: 145ms
101:	learn: 11.1986470	total: 149ms	remaining: 143ms
102:	learn: 11.1849294	total: 150ms	remaining: 142ms
103:	learn: 11.1068233	total: 152ms	remaining: 140ms
104:	learn: 11.1035711	total: 153ms	remaining: 139ms
105:	learn: 11.0083742	total: 155ms	remaining: 137ms
106:	learn: 10.9551515	total: 156ms	remaining: 136ms
107:	learn: 10.9291619	total: 158ms	remaining: 134ms
108:	learn: 10.9262836	total: 159ms	remaining: 133ms
109:	learn: 10.8277609	total: 161ms	remaining: 131ms
110:	learn: 10.8250114	total: 162ms	remaining: 130ms
111:	learn: 10.8159766	total: 164ms	remaining: 129ms
112:	learn: 10.7941672	total: 165ms	remaining: 127ms
113:	learn: 10.7161853	total: 167ms	remaining: 126ms
114:	learn: 10.6867241	total: 168ms	remaining: 124ms
115:	learn: 10.6696052	total: 169ms	remaining: 123ms
116:	learn: 10.6470174	total: 171ms	remaining: 121ms
117:	learn: 10.6440036	total: 172ms	remaining: 119ms
118:	learn: 10.5519178	total: 173ms	remaining: 118ms
119:	learn: 10.4823658	total: 175ms	remaining: 117ms
120:	learn: 10.4194117	total: 177ms	remaining: 116ms
121:	learn: 10.3934481	total: 180ms	remaining: 115ms
122:	learn: 10.3323873	total: 182ms	remaining: 114ms
123:	learn: 10.2814883	total: 184ms	remaining: 113ms
124:	learn: 10.2738198	total: 186ms	remaining: 112ms
125:	learn: 10.2234476	total: 189ms	remaining: 111ms
126:	learn: 10.1870721	total: 192ms	remaining: 110ms
127:	learn: 10.1208964	total: 195ms	remaining: 110ms
128:	learn: 10.1060307	total: 199ms	remaining: 109ms
129:	learn: 10.0751339	total: 200ms	remaining: 108ms
130:	learn: 10.0544777	total: 202ms	remaining: 106ms
131:	learn: 10.0123439	total: 204ms	remaining: 105ms
132:	learn: 10.0103456	total: 206ms	remaining: 104ms
133:	learn: 9.9646319	total: 208ms	remaining: 102ms
134:	learn: 9.9592056	total: 209ms	remaining: 101ms
135:	learn: 9.9198204	total: 211ms	remaining: 99.3ms
136:	learn: 9.9100869	total: 213ms	remaining: 97.9ms
137:	learn: 9.8574542	total: 214ms	remaining: 96.3ms
138:	learn: 9.8415987	total: 216ms	remaining: 94.8ms
139:	learn: 9.8331971	total: 217ms	remaining: 93.1ms
140:	learn: 9.7742422	total: 219ms	remaining: 91.5ms
141:	learn: 9.7420410	total: 220ms	remaining: 89.9ms
142:	learn: 9.7268423	total: 222ms	remaining: 88.4ms
143:	learn: 9.7126225	total: 223ms	remaining: 86.7ms
144:	learn: 9.7041303	total: 224ms	remaining: 85.1ms
145:	learn: 9.6577031	total: 226ms	remaining: 83.7ms
146:	learn: 9.6030392	total: 228ms	remaining: 82.2ms
147:	learn: 9.5891010	total: 229ms	remaining: 80.6ms
148:	learn: 9.5748128	total: 231ms	remaining: 79.1ms
149:	learn: 9.5382984	total: 233ms	remaining: 77.6ms
150:	learn: 9.4852927	total: 234ms	remaining: 76ms
151:	learn: 9.4353119	total: 236ms	remaining: 74.4ms
152:	learn: 9.4007787	total: 237ms	remaining: 72.9ms
153:	learn: 9.3792481	total: 239ms	remaining: 71.3ms
154:	learn: 9.3667367	total: 240ms	remaining: 69.7ms
155:	learn: 9.3231711	total: 242ms	remaining: 68.2ms
156:	learn: 9.2982697	total: 243ms	remaining: 66.5ms
157:	learn: 9.2583025	total: 244ms	remaining: 65ms
158:	learn: 9.2385114	total: 246ms	remaining: 63.4ms
159:	learn: 9.2122079	total: 247ms	remaining: 61.9ms
160:	learn: 9.1909208	total: 249ms	remaining: 60.3ms
161:	learn: 9.1583999	total: 251ms	remaining: 58.8ms
162:	learn: 9.1346684	total: 252ms	remaining: 57.3ms
163:	learn: 9.0966572	total: 254ms	remaining: 55.8ms
164:	learn: 9.0756642	total: 255ms	remaining: 54.2ms
165:	learn: 9.0686768	total: 257ms	remaining: 52.6ms
166:	learn: 9.0426638	total: 259ms	remaining: 51.1ms
167:	learn: 9.0358117	total: 260ms	remaining: 49.6ms
168:	learn: 9.0159549	total: 262ms	remaining: 48.1ms
169:	learn: 9.0088652	total: 263ms	remaining: 46.5ms
170:	learn: 8.9678807	total: 265ms	remaining: 44.9ms
171:	learn: 8.9369188	total: 266ms	remaining: 43.3ms
172:	learn: 8.8931317	total: 267ms	remaining: 41.7ms
173:	learn: 8.8678608	total: 269ms	remaining: 40.1ms
174:	learn: 8.8470735	total: 270ms	remaining: 38.6ms
175:	learn: 8.8060308	total: 271ms	remaining: 37ms
176:	learn: 8.7830318	total: 273ms	remaining: 35.4ms
177:	learn: 8.7584972	total: 274ms	remaining: 33.9ms
178:	learn: 8.7551538	total: 275ms	remaining: 32.3ms
179:	learn: 8.7283591	total: 276ms	remaining: 30.7ms
180:	learn: 8.6996402	total: 278ms	remaining: 29.2ms
181:	learn: 8.6409248	total: 279ms	remaining: 27.6ms
182:	learn: 8.6193486	total: 281ms	remaining: 26.1ms
183:	learn: 8.5931097	total: 282ms	remaining: 24.5ms
184:	learn: 8.5386145	total: 283ms	remaining: 23ms
185:	learn: 8.5057562	total: 285ms	remaining: 21.4ms
186:	learn: 8.4793085	total: 286ms	remaining: 19.9ms
187:	learn: 8.4659231	total: 287ms	remaining: 18.3ms
188:	learn: 8.4578531	total: 289ms	remaining: 16.8ms
189:	learn: 8.4370190	total: 290ms	remaining: 15.3ms
190:	learn: 8.4192446	total: 292ms	remaining: 13.7ms
191:	learn: 8.4104933	total: 293ms	remaining: 12.2ms
192:	learn: 8.3743513	total: 295ms	remaining: 10.7ms
193:	learn: 8.3526721	total: 296ms	remaining: 9.15ms
194:	learn: 8.3305361	total: 298ms	remaining: 7.63ms
195:	learn: 8.3099305	total: 299ms	remaining: 6.1ms
196:	learn: 8.2801696	total: 300ms	remaining: 4.57ms
197:	learn: 8.2444902	total: 301ms	remaining: 3.04ms
198:	learn: 8.2136721	total: 303ms	remaining: 1.52ms
199:	learn: 8.1647665	total: 304ms	remaining: 0us
0:	learn: 42.3740470	total: 1.66ms	remaining: 331ms
1:	learn: 40.3399430	total: 3.27ms	remaining: 324ms
2:	learn: 38.4471083	total: 4.54ms	remaining: 298ms
3:	learn: 37.0183270	total: 5.96ms	remaining: 292ms
4:	learn: 35.1509786	total: 7.23ms	remaining: 282ms
5:	learn: 33.6516582	total: 8.54ms	remaining: 276ms
6:	learn: 32.2729479	total: 9.84ms	remaining: 271ms
7:	learn: 30.8843111	total: 11.2ms	remaining: 268ms
8:	learn: 29.6132064	total: 12.5ms	remaining: 265ms
9:	learn: 28.3886575	total: 13.9ms	remaining: 265ms
10:	learn: 27.4894389	total: 15.3ms	remaining: 262ms
11:	learn: 26.7873725	total: 16.6ms	remaining: 259ms
12:	learn: 25.9112013	total: 17.9ms	remaining: 258ms
13:	learn: 25.0770267	total: 19.4ms	remaining: 257ms
14:	learn: 24.4552796	total: 21ms	remaining: 259ms
15:	learn: 23.7593414	total: 24.2ms	remaining: 278ms
16:	learn: 23.1113269	total: 26ms	remaining: 280ms
17:	learn: 22.6045954	total: 27.7ms	remaining: 280ms
18:	learn: 22.3091480	total: 29.4ms	remaining: 280ms
19:	learn: 21.9353317	total: 31.1ms	remaining: 280ms
20:	learn: 21.5220580	total: 33.2ms	remaining: 283ms
21:	learn: 21.0560084	total: 35ms	remaining: 283ms
22:	learn: 20.6895688	total: 36.9ms	remaining: 284ms
23:	learn: 20.3817993	total: 38.4ms	remaining: 281ms
24:	learn: 20.1357194	total: 39.9ms	remaining: 279ms
25:	learn: 19.9299256	total: 41.5ms	remaining: 278ms
26:	learn: 19.7053653	total: 42.9ms	remaining: 275ms
27:	learn: 19.5098436	total: 44.4ms	remaining: 272ms
28:	learn: 19.3263277	total: 46ms	remaining: 271ms
29:	learn: 19.1742303	total: 47.5ms	remaining: 269ms
30:	learn: 18.9262701	total: 49ms	remaining: 267ms
31:	learn: 18.7144111	total: 50.3ms	remaining: 264ms
32:	learn: 18.4932266	total: 51.7ms	remaining: 262ms
33:	learn: 18.3531879	total: 53.1ms	remaining: 259ms
34:	learn: 18.0951391	total: 54.3ms	remaining: 256ms
35:	learn: 17.9335378	total: 55.7ms	remaining: 254ms
36:	learn: 17.7265341	total: 56.9ms	remaining: 251ms
37:	learn: 17.4949899	total: 58.1ms	remaining: 248ms
38:	learn: 17.3955543	total: 59.3ms	remaining: 245ms
39:	learn: 17.3157891	total: 60.6ms	remaining: 242ms
40:	learn: 17.1119704	total: 61.8ms	remaining: 240ms
41:	learn: 17.0374737	total: 62.9ms	remaining: 237ms
42:	learn: 16.8781471	total: 64.2ms	remaining: 234ms
43:	learn: 16.7212815	total: 65.5ms	remaining: 232ms
44:	learn: 16.6261497	total: 66.7ms	remaining: 230ms
45:	learn: 16.5094972	total: 67.9ms	remaining: 227ms
46:	learn: 16.4189859	total: 69.3ms	remaining: 226ms
47:	learn: 16.2459023	total: 70.6ms	remaining: 224ms
48:	learn: 16.1824834	total: 71.9ms	remaining: 221ms
49:	learn: 16.1278686	total: 73.1ms	remaining: 219ms
50:	learn: 15.9927037	total: 74.3ms	remaining: 217ms
51:	learn: 15.9047125	total: 75.6ms	remaining: 215ms
52:	learn: 15.8803257	total: 76.8ms	remaining: 213ms
53:	learn: 15.8158634	total: 78ms	remaining: 211ms
54:	learn: 15.7153075	total: 79.3ms	remaining: 209ms
55:	learn: 15.6619018	total: 80.6ms	remaining: 207ms
56:	learn: 15.6146635	total: 81.8ms	remaining: 205ms
57:	learn: 15.4834259	total: 83.1ms	remaining: 203ms
58:	learn: 15.4059372	total: 84.2ms	remaining: 201ms
59:	learn: 15.2769287	total: 85.7ms	remaining: 200ms
60:	learn: 15.1360763	total: 87ms	remaining: 198ms
61:	learn: 15.0405394	total: 88.5ms	remaining: 197ms
62:	learn: 14.8891996	total: 89.9ms	remaining: 195ms
63:	learn: 14.8481361	total: 91.3ms	remaining: 194ms
64:	learn: 14.7613586	total: 92.6ms	remaining: 192ms
65:	learn: 14.6664352	total: 93.8ms	remaining: 190ms
66:	learn: 14.5674002	total: 95.1ms	remaining: 189ms
67:	learn: 14.5145867	total: 96.4ms	remaining: 187ms
68:	learn: 14.4330840	total: 97.8ms	remaining: 186ms
69:	learn: 14.3523528	total: 99ms	remaining: 184ms
70:	learn: 14.3385769	total: 100ms	remaining: 182ms
71:	learn: 14.2099037	total: 102ms	remaining: 181ms
72:	learn: 14.0500061	total: 103ms	remaining: 179ms
73:	learn: 13.9994436	total: 104ms	remaining: 178ms
74:	learn: 13.9793074	total: 106ms	remaining: 176ms
75:	learn: 13.8663302	total: 107ms	remaining: 175ms
76:	learn: 13.7511886	total: 108ms	remaining: 173ms
77:	learn: 13.6900984	total: 110ms	remaining: 172ms
78:	learn: 13.5590771	total: 111ms	remaining: 170ms
79:	learn: 13.5272900	total: 112ms	remaining: 168ms
80:	learn: 13.4470323	total: 114ms	remaining: 167ms
81:	learn: 13.4073072	total: 115ms	remaining: 165ms
82:	learn: 13.3271760	total: 116ms	remaining: 164ms
83:	learn: 13.3073888	total: 118ms	remaining: 163ms
84:	learn: 13.1746805	total: 119ms	remaining: 161ms
85:	learn: 13.1013300	total: 120ms	remaining: 160ms
86:	learn: 13.0760148	total: 122ms	remaining: 158ms
87:	learn: 12.9777621	total: 123ms	remaining: 156ms
88:	learn: 12.8913910	total: 124ms	remaining: 155ms
89:	learn: 12.7720371	total: 125ms	remaining: 153ms
90:	learn: 12.7015541	total: 126ms	remaining: 151ms
91:	learn: 12.6472579	total: 128ms	remaining: 150ms
92:	learn: 12.6371586	total: 129ms	remaining: 148ms
93:	learn: 12.5527328	total: 130ms	remaining: 147ms
94:	learn: 12.5084240	total: 131ms	remaining: 145ms
95:	learn: 12.5010203	total: 132ms	remaining: 143ms
96:	learn: 12.4235611	total: 134ms	remaining: 142ms
97:	learn: 12.3999573	total: 135ms	remaining: 140ms
98:	learn: 12.3823209	total: 136ms	remaining: 139ms
99:	learn: 12.2766391	total: 138ms	remaining: 138ms
100:	learn: 12.2305887	total: 139ms	remaining: 136ms
101:	learn: 12.1790931	total: 140ms	remaining: 135ms
102:	learn: 12.1044301	total: 142ms	remaining: 133ms
103:	learn: 12.0758723	total: 143ms	remaining: 132ms
104:	learn: 12.0677262	total: 144ms	remaining: 131ms
105:	learn: 11.9777579	total: 145ms	remaining: 129ms
106:	learn: 11.9307747	total: 147ms	remaining: 128ms
107:	learn: 11.8895186	total: 148ms	remaining: 126ms
108:	learn: 11.8084366	total: 149ms	remaining: 125ms
109:	learn: 11.7493209	total: 151ms	remaining: 123ms
110:	learn: 11.6999226	total: 152ms	remaining: 122ms
111:	learn: 11.6937789	total: 153ms	remaining: 120ms
112:	learn: 11.6321348	total: 154ms	remaining: 119ms
113:	learn: 11.6043737	total: 156ms	remaining: 117ms
114:	learn: 11.5601139	total: 157ms	remaining: 116ms
115:	learn: 11.5142867	total: 158ms	remaining: 114ms
116:	learn: 11.5081653	total: 159ms	remaining: 113ms
117:	learn: 11.4945182	total: 161ms	remaining: 112ms
118:	learn: 11.4638817	total: 162ms	remaining: 110ms
119:	learn: 11.4449582	total: 163ms	remaining: 109ms
120:	learn: 11.3872543	total: 164ms	remaining: 107ms
121:	learn: 11.3072421	total: 166ms	remaining: 106ms
122:	learn: 11.2401251	total: 167ms	remaining: 104ms
123:	learn: 11.2230300	total: 168ms	remaining: 103ms
124:	learn: 11.1817394	total: 169ms	remaining: 102ms
125:	learn: 11.1549002	total: 170ms	remaining: 100ms
126:	learn: 11.1437461	total: 172ms	remaining: 98.7ms
127:	learn: 11.0760719	total: 173ms	remaining: 97.3ms
128:	learn: 11.0418831	total: 174ms	remaining: 95.9ms
129:	learn: 10.9937001	total: 175ms	remaining: 94.5ms
130:	learn: 10.9542092	total: 177ms	remaining: 93ms
131:	learn: 10.9320342	total: 178ms	remaining: 91.6ms
132:	learn: 10.9079932	total: 179ms	remaining: 90.3ms
133:	learn: 10.8558757	total: 180ms	remaining: 88.9ms
134:	learn: 10.8358317	total: 182ms	remaining: 87.5ms
135:	learn: 10.7849225	total: 183ms	remaining: 86.1ms
136:	learn: 10.7419067	total: 184ms	remaining: 84.8ms
137:	learn: 10.6961575	total: 186ms	remaining: 83.4ms
138:	learn: 10.6581906	total: 187ms	remaining: 82ms
139:	learn: 10.6290394	total: 188ms	remaining: 80.7ms
140:	learn: 10.5911813	total: 189ms	remaining: 79.3ms
141:	learn: 10.5693988	total: 191ms	remaining: 77.9ms
142:	learn: 10.5402047	total: 192ms	remaining: 76.5ms
143:	learn: 10.5333414	total: 193ms	remaining: 75.1ms
144:	learn: 10.5292652	total: 194ms	remaining: 73.7ms
145:	learn: 10.4946571	total: 195ms	remaining: 72.3ms
146:	learn: 10.4451531	total: 197ms	remaining: 70.9ms
147:	learn: 10.4348850	total: 198ms	remaining: 69.5ms
148:	learn: 10.4126426	total: 199ms	remaining: 68.1ms
149:	learn: 10.3996311	total: 200ms	remaining: 66.8ms
150:	learn: 10.3424042	total: 202ms	remaining: 65.5ms
151:	learn: 10.3169855	total: 203ms	remaining: 64.2ms
152:	learn: 10.2928616	total: 204ms	remaining: 62.8ms
153:	learn: 10.2578053	total: 206ms	remaining: 61.4ms
154:	learn: 10.2081210	total: 207ms	remaining: 60.1ms
155:	learn: 10.1795936	total: 208ms	remaining: 58.7ms
156:	learn: 10.1469030	total: 209ms	remaining: 57.4ms
157:	learn: 10.1308682	total: 211ms	remaining: 56ms
158:	learn: 10.0985586	total: 212ms	remaining: 54.6ms
159:	learn: 10.0688999	total: 213ms	remaining: 53.3ms
160:	learn: 9.9988571	total: 214ms	remaining: 51.9ms
161:	learn: 9.9513510	total: 216ms	remaining: 50.6ms
162:	learn: 9.8665404	total: 217ms	remaining: 49.2ms
163:	learn: 9.8292355	total: 218ms	remaining: 47.9ms
164:	learn: 9.8190293	total: 220ms	remaining: 46.6ms
165:	learn: 9.8056979	total: 221ms	remaining: 45.3ms
166:	learn: 9.7919568	total: 223ms	remaining: 44ms
167:	learn: 9.7330557	total: 225ms	remaining: 42.8ms
168:	learn: 9.6908134	total: 226ms	remaining: 41.5ms
169:	learn: 9.6440234	total: 228ms	remaining: 40.2ms
170:	learn: 9.6277834	total: 229ms	remaining: 38.9ms
171:	learn: 9.6011809	total: 231ms	remaining: 37.7ms
172:	learn: 9.5739379	total: 233ms	remaining: 36.3ms
173:	learn: 9.5528044	total: 234ms	remaining: 35ms
174:	learn: 9.5358087	total: 236ms	remaining: 33.7ms
175:	learn: 9.4784471	total: 238ms	remaining: 32.4ms
176:	learn: 9.4528669	total: 239ms	remaining: 31.1ms
177:	learn: 9.4289419	total: 241ms	remaining: 29.8ms
178:	learn: 9.3792504	total: 243ms	remaining: 28.5ms
179:	learn: 9.3667458	total: 244ms	remaining: 27.1ms
180:	learn: 9.3036318	total: 245ms	remaining: 25.8ms
181:	learn: 9.2909811	total: 247ms	remaining: 24.4ms
182:	learn: 9.2708937	total: 248ms	remaining: 23.1ms
183:	learn: 9.2294733	total: 250ms	remaining: 21.7ms
184:	learn: 9.2061119	total: 251ms	remaining: 20.4ms
185:	learn: 9.1665233	total: 253ms	remaining: 19.1ms
186:	learn: 9.1238011	total: 255ms	remaining: 17.7ms
187:	learn: 9.1118739	total: 256ms	remaining: 16.4ms
188:	learn: 9.0862975	total: 258ms	remaining: 15ms
189:	learn: 9.0781470	total: 259ms	remaining: 13.6ms
190:	learn: 9.0519515	total: 261ms	remaining: 12.3ms
191:	learn: 9.0297709	total: 262ms	remaining: 10.9ms
192:	learn: 8.9907012	total: 264ms	remaining: 9.56ms
193:	learn: 8.9671347	total: 265ms	remaining: 8.2ms
194:	learn: 8.9529746	total: 266ms	remaining: 6.83ms
195:	learn: 8.9246206	total: 268ms	remaining: 5.47ms
196:	learn: 8.9047940	total: 269ms	remaining: 4.1ms
197:	learn: 8.8857897	total: 271ms	remaining: 2.74ms
198:	learn: 8.8679002	total: 272ms	remaining: 1.37ms
199:	learn: 8.8464720	total: 274ms	remaining: 0us
0:	learn: 46.2278637	total: 2ms	remaining: 397ms
1:	learn: 44.9867418	total: 3.29ms	remaining: 326ms
2:	learn: 43.6196363	total: 4.48ms	remaining: 294ms
3:	learn: 42.2814629	total: 5.72ms	remaining: 280ms
4:	learn: 40.9855882	total: 6.85ms	remaining: 267ms
5:	learn: 39.4728429	total: 8.02ms	remaining: 259ms
6:	learn: 38.3689697	total: 9.24ms	remaining: 255ms
7:	learn: 36.9889318	total: 10.5ms	remaining: 253ms
8:	learn: 36.0705151	total: 11.7ms	remaining: 248ms
9:	learn: 34.5872942	total: 13ms	remaining: 246ms
10:	learn: 33.6102302	total: 14.2ms	remaining: 244ms
11:	learn: 32.7660009	total: 15.4ms	remaining: 241ms
12:	learn: 32.1368033	total: 16.6ms	remaining: 239ms
13:	learn: 31.4312312	total: 17.9ms	remaining: 238ms
14:	learn: 30.4835198	total: 19.1ms	remaining: 236ms
15:	learn: 29.8460381	total: 20.3ms	remaining: 234ms
16:	learn: 28.9524490	total: 21.5ms	remaining: 232ms
17:	learn: 28.5564772	total: 22.8ms	remaining: 230ms
18:	learn: 27.9432714	total: 24ms	remaining: 229ms
19:	learn: 27.5024856	total: 25.2ms	remaining: 227ms
20:	learn: 26.9057699	total: 26.6ms	remaining: 227ms
21:	learn: 26.3872882	total: 27.8ms	remaining: 225ms
22:	learn: 25.9168921	total: 29ms	remaining: 223ms
23:	learn: 25.5964863	total: 30.3ms	remaining: 222ms
24:	learn: 25.2823653	total: 31.5ms	remaining: 220ms
25:	learn: 25.0599387	total: 32.7ms	remaining: 219ms
26:	learn: 24.6995660	total: 34ms	remaining: 218ms
27:	learn: 24.3274721	total: 35.3ms	remaining: 217ms
28:	learn: 24.0974336	total: 36.7ms	remaining: 216ms
29:	learn: 23.7484439	total: 37.8ms	remaining: 214ms
30:	learn: 23.5668857	total: 39ms	remaining: 213ms
31:	learn: 23.3301102	total: 40.2ms	remaining: 211ms
32:	learn: 23.2167664	total: 41.5ms	remaining: 210ms
33:	learn: 22.9314282	total: 42.8ms	remaining: 209ms
34:	learn: 22.8780232	total: 44ms	remaining: 207ms
35:	learn: 22.6460673	total: 45.2ms	remaining: 206ms
36:	learn: 22.2457152	total: 46.6ms	remaining: 205ms
37:	learn: 21.8524008	total: 47.8ms	remaining: 204ms
38:	learn: 21.5666620	total: 49.1ms	remaining: 203ms
39:	learn: 21.4271473	total: 50.3ms	remaining: 201ms
40:	learn: 21.2127538	total: 51.5ms	remaining: 200ms
41:	learn: 20.9938461	total: 53ms	remaining: 199ms
42:	learn: 20.6894207	total: 54.2ms	remaining: 198ms
43:	learn: 20.4377998	total: 55.5ms	remaining: 197ms
44:	learn: 20.1593708	total: 56.7ms	remaining: 195ms
45:	learn: 20.0370690	total: 58ms	remaining: 194ms
46:	learn: 19.9311887	total: 59.2ms	remaining: 193ms
47:	learn: 19.7375660	total: 60.4ms	remaining: 191ms
48:	learn: 19.5831218	total: 61.7ms	remaining: 190ms
49:	learn: 19.4754139	total: 63ms	remaining: 189ms
50:	learn: 19.2863407	total: 64.2ms	remaining: 188ms
51:	learn: 19.1653451	total: 65.4ms	remaining: 186ms
52:	learn: 19.0243324	total: 66.6ms	remaining: 185ms
53:	learn: 18.8365571	total: 67.8ms	remaining: 183ms
54:	learn: 18.6953724	total: 69.2ms	remaining: 182ms
55:	learn: 18.5303848	total: 70.5ms	remaining: 181ms
56:	learn: 18.5026379	total: 71.7ms	remaining: 180ms
57:	learn: 18.3322607	total: 73.2ms	remaining: 179ms
58:	learn: 18.0701415	total: 74.5ms	remaining: 178ms
59:	learn: 18.0162426	total: 75.8ms	remaining: 177ms
60:	learn: 17.9058328	total: 77ms	remaining: 175ms
61:	learn: 17.7897388	total: 78.2ms	remaining: 174ms
62:	learn: 17.6107119	total: 79.5ms	remaining: 173ms
63:	learn: 17.3830854	total: 80.7ms	remaining: 171ms
64:	learn: 17.3149647	total: 81.9ms	remaining: 170ms
65:	learn: 17.2425282	total: 83.1ms	remaining: 169ms
66:	learn: 17.1584893	total: 84.3ms	remaining: 167ms
67:	learn: 16.9857615	total: 85.8ms	remaining: 166ms
68:	learn: 16.8537016	total: 87.2ms	remaining: 165ms
69:	learn: 16.8094882	total: 88.5ms	remaining: 164ms
70:	learn: 16.6615663	total: 89.8ms	remaining: 163ms
71:	learn: 16.6001531	total: 91.1ms	remaining: 162ms
72:	learn: 16.4983757	total: 92.4ms	remaining: 161ms
73:	learn: 16.3260470	total: 93.7ms	remaining: 159ms
74:	learn: 16.2866666	total: 94.9ms	remaining: 158ms
75:	learn: 16.1303383	total: 96.2ms	remaining: 157ms
76:	learn: 15.8832762	total: 97.5ms	remaining: 156ms
77:	learn: 15.8317229	total: 98.8ms	remaining: 155ms
78:	learn: 15.8083430	total: 100ms	remaining: 153ms
79:	learn: 15.6256321	total: 101ms	remaining: 152ms
80:	learn: 15.4841139	total: 103ms	remaining: 151ms
81:	learn: 15.3283804	total: 104ms	remaining: 150ms
82:	learn: 15.1339089	total: 105ms	remaining: 149ms
83:	learn: 15.0247000	total: 107ms	remaining: 147ms
84:	learn: 14.8744835	total: 108ms	remaining: 146ms
85:	learn: 14.8170849	total: 109ms	remaining: 145ms
86:	learn: 14.6666819	total: 110ms	remaining: 143ms
87:	learn: 14.5243225	total: 112ms	remaining: 142ms
88:	learn: 14.3019405	total: 114ms	remaining: 143ms
89:	learn: 14.1774402	total: 116ms	remaining: 142ms
90:	learn: 14.0218130	total: 118ms	remaining: 141ms
91:	learn: 13.9118319	total: 120ms	remaining: 141ms
92:	learn: 13.7985211	total: 122ms	remaining: 140ms
93:	learn: 13.7056238	total: 123ms	remaining: 139ms
94:	learn: 13.6387014	total: 125ms	remaining: 138ms
95:	learn: 13.5267692	total: 126ms	remaining: 137ms
96:	learn: 13.4087919	total: 128ms	remaining: 136ms
97:	learn: 13.3732128	total: 130ms	remaining: 135ms
98:	learn: 13.2952503	total: 131ms	remaining: 134ms
99:	learn: 13.2068133	total: 133ms	remaining: 133ms
100:	learn: 13.1331518	total: 134ms	remaining: 131ms
101:	learn: 13.0773891	total: 135ms	remaining: 130ms
102:	learn: 12.9128351	total: 137ms	remaining: 129ms
103:	learn: 12.8513194	total: 138ms	remaining: 128ms
104:	learn: 12.7535121	total: 140ms	remaining: 127ms
105:	learn: 12.7044657	total: 141ms	remaining: 125ms
106:	learn: 12.5544030	total: 142ms	remaining: 124ms
107:	learn: 12.4760170	total: 143ms	remaining: 122ms
108:	learn: 12.3800680	total: 145ms	remaining: 121ms
109:	learn: 12.3499190	total: 146ms	remaining: 119ms
110:	learn: 12.3092253	total: 147ms	remaining: 118ms
111:	learn: 12.2620217	total: 148ms	remaining: 117ms
112:	learn: 12.2213616	total: 149ms	remaining: 115ms
113:	learn: 12.1873145	total: 151ms	remaining: 114ms
114:	learn: 12.1641218	total: 152ms	remaining: 112ms
115:	learn: 12.1290769	total: 153ms	remaining: 111ms
116:	learn: 12.0930766	total: 154ms	remaining: 110ms
117:	learn: 12.0564916	total: 156ms	remaining: 108ms
118:	learn: 11.9874659	total: 157ms	remaining: 107ms
119:	learn: 11.9690225	total: 158ms	remaining: 105ms
120:	learn: 11.9300842	total: 159ms	remaining: 104ms
121:	learn: 11.8812114	total: 160ms	remaining: 103ms
122:	learn: 11.8681485	total: 162ms	remaining: 101ms
123:	learn: 11.8037422	total: 163ms	remaining: 99.8ms
124:	learn: 11.7859158	total: 164ms	remaining: 98.4ms
125:	learn: 11.7571589	total: 165ms	remaining: 97ms
126:	learn: 11.7289762	total: 166ms	remaining: 95.7ms
127:	learn: 11.6883041	total: 168ms	remaining: 94.3ms
128:	learn: 11.6487537	total: 169ms	remaining: 92.9ms
129:	learn: 11.6335432	total: 170ms	remaining: 91.6ms
130:	learn: 11.6149961	total: 171ms	remaining: 90.3ms
131:	learn: 11.5455373	total: 173ms	remaining: 88.9ms
132:	learn: 11.4989894	total: 174ms	remaining: 87.5ms
133:	learn: 11.4868155	total: 175ms	remaining: 86.2ms
134:	learn: 11.4598916	total: 176ms	remaining: 84.9ms
135:	learn: 11.4114509	total: 177ms	remaining: 83.5ms
136:	learn: 11.3509384	total: 179ms	remaining: 82.2ms
137:	learn: 11.3090708	total: 180ms	remaining: 80.9ms
138:	learn: 11.2728093	total: 181ms	remaining: 79.5ms
139:	learn: 11.2546808	total: 182ms	remaining: 78.2ms
140:	learn: 11.2292327	total: 184ms	remaining: 76.8ms
141:	learn: 11.2088756	total: 185ms	remaining: 75.5ms
142:	learn: 11.1846460	total: 186ms	remaining: 74.2ms
143:	learn: 11.1374256	total: 187ms	remaining: 72.9ms
144:	learn: 11.0735465	total: 189ms	remaining: 71.5ms
145:	learn: 11.0335819	total: 190ms	remaining: 70.2ms
146:	learn: 11.0031689	total: 191ms	remaining: 68.8ms
147:	learn: 10.9596734	total: 192ms	remaining: 67.5ms
148:	learn: 10.9459362	total: 193ms	remaining: 66.2ms
149:	learn: 10.9243178	total: 195ms	remaining: 64.8ms
150:	learn: 10.9027722	total: 196ms	remaining: 63.5ms
151:	learn: 10.8445495	total: 197ms	remaining: 62.2ms
152:	learn: 10.8132080	total: 198ms	remaining: 60.8ms
153:	learn: 10.7527435	total: 199ms	remaining: 59.5ms
154:	learn: 10.7420823	total: 200ms	remaining: 58.2ms
155:	learn: 10.7141777	total: 202ms	remaining: 56.8ms
156:	learn: 10.6824320	total: 203ms	remaining: 55.6ms
157:	learn: 10.6501216	total: 204ms	remaining: 54.2ms
158:	learn: 10.6361616	total: 205ms	remaining: 52.9ms
159:	learn: 10.6148747	total: 207ms	remaining: 51.6ms
160:	learn: 10.5445280	total: 208ms	remaining: 50.4ms
161:	learn: 10.5163054	total: 209ms	remaining: 49.1ms
162:	learn: 10.4977504	total: 211ms	remaining: 47.8ms
163:	learn: 10.4819690	total: 212ms	remaining: 46.5ms
164:	learn: 10.4651934	total: 213ms	remaining: 45.3ms
165:	learn: 10.4514642	total: 215ms	remaining: 44ms
166:	learn: 10.4394563	total: 216ms	remaining: 42.6ms
167:	learn: 10.3779187	total: 217ms	remaining: 41.3ms
168:	learn: 10.3533101	total: 218ms	remaining: 40ms
169:	learn: 10.3043375	total: 220ms	remaining: 38.8ms
170:	learn: 10.2572696	total: 221ms	remaining: 37.5ms
171:	learn: 10.2349202	total: 222ms	remaining: 36.2ms
172:	learn: 10.1850808	total: 223ms	remaining: 34.9ms
173:	learn: 10.1559597	total: 225ms	remaining: 33.6ms
174:	learn: 10.1459745	total: 226ms	remaining: 32.3ms
175:	learn: 10.1202833	total: 227ms	remaining: 31ms
176:	learn: 10.0675034	total: 229ms	remaining: 29.7ms
177:	learn: 10.0373218	total: 230ms	remaining: 28.4ms
178:	learn: 9.9959617	total: 231ms	remaining: 27.2ms
179:	learn: 9.9505381	total: 233ms	remaining: 25.9ms
180:	learn: 9.9296636	total: 234ms	remaining: 24.6ms
181:	learn: 9.8731209	total: 235ms	remaining: 23.3ms
182:	learn: 9.8268175	total: 237ms	remaining: 22ms
183:	learn: 9.8107564	total: 238ms	remaining: 20.7ms
184:	learn: 9.7653493	total: 239ms	remaining: 19.4ms
185:	learn: 9.7382499	total: 240ms	remaining: 18.1ms
186:	learn: 9.7301119	total: 241ms	remaining: 16.8ms
187:	learn: 9.6966018	total: 243ms	remaining: 15.5ms
188:	learn: 9.6590213	total: 244ms	remaining: 14.2ms
189:	learn: 9.6355046	total: 245ms	remaining: 12.9ms
190:	learn: 9.6110408	total: 246ms	remaining: 11.6ms
191:	learn: 9.5854019	total: 248ms	remaining: 10.3ms
192:	learn: 9.5450324	total: 249ms	remaining: 9.03ms
193:	learn: 9.5355976	total: 250ms	remaining: 7.74ms
194:	learn: 9.5230025	total: 251ms	remaining: 6.45ms
195:	learn: 9.4916734	total: 253ms	remaining: 5.16ms
196:	learn: 9.4468072	total: 254ms	remaining: 3.87ms
197:	learn: 9.4192652	total: 255ms	remaining: 2.58ms
198:	learn: 9.3571217	total: 257ms	remaining: 1.29ms
199:	learn: 9.3347252	total: 258ms	remaining: 0us
0:	learn: 45.4048346	total: 1.57ms	remaining: 312ms
1:	learn: 44.1474121	total: 2.79ms	remaining: 276ms
2:	learn: 42.3887094	total: 3.98ms	remaining: 262ms
3:	learn: 41.1483267	total: 5.27ms	remaining: 258ms
4:	learn: 39.9951783	total: 6.56ms	remaining: 256ms
5:	learn: 38.7236510	total: 7.88ms	remaining: 255ms
6:	learn: 37.9103150	total: 9.26ms	remaining: 255ms
7:	learn: 36.8525004	total: 10.5ms	remaining: 252ms
8:	learn: 35.8279814	total: 11.8ms	remaining: 251ms
9:	learn: 34.9241306	total: 13.1ms	remaining: 249ms
10:	learn: 34.0908630	total: 14.5ms	remaining: 249ms
11:	learn: 33.2767105	total: 15.8ms	remaining: 248ms
12:	learn: 32.5646955	total: 17.6ms	remaining: 253ms
13:	learn: 31.7738871	total: 20ms	remaining: 266ms
14:	learn: 31.2269392	total: 21.7ms	remaining: 267ms
15:	learn: 30.3602234	total: 23.4ms	remaining: 269ms
16:	learn: 29.6358059	total: 25.1ms	remaining: 270ms
17:	learn: 29.0928420	total: 27ms	remaining: 273ms
18:	learn: 28.6972485	total: 29.1ms	remaining: 277ms
19:	learn: 27.9911077	total: 31ms	remaining: 279ms
20:	learn: 27.4458900	total: 32.8ms	remaining: 279ms
21:	learn: 26.8998979	total: 35.5ms	remaining: 287ms
22:	learn: 26.5594927	total: 38.1ms	remaining: 293ms
23:	learn: 26.2011328	total: 39.7ms	remaining: 291ms
24:	learn: 25.9420537	total: 41.2ms	remaining: 288ms
25:	learn: 25.6345740	total: 43.1ms	remaining: 288ms
26:	learn: 25.4390328	total: 45.4ms	remaining: 291ms
27:	learn: 25.1867114	total: 47.3ms	remaining: 291ms
28:	learn: 24.8931496	total: 48.8ms	remaining: 288ms
29:	learn: 24.6142761	total: 50.3ms	remaining: 285ms
30:	learn: 24.2203789	total: 51.8ms	remaining: 282ms
31:	learn: 23.9082679	total: 53.2ms	remaining: 279ms
32:	learn: 23.7943456	total: 54.9ms	remaining: 278ms
33:	learn: 23.5649615	total: 56.7ms	remaining: 277ms
34:	learn: 23.3719209	total: 58.5ms	remaining: 276ms
35:	learn: 23.2678402	total: 59.9ms	remaining: 273ms
36:	learn: 23.0995486	total: 61.5ms	remaining: 271ms
37:	learn: 22.8426508	total: 63.2ms	remaining: 269ms
38:	learn: 22.6644415	total: 64.8ms	remaining: 267ms
39:	learn: 22.4830223	total: 66.4ms	remaining: 266ms
40:	learn: 22.2694030	total: 68ms	remaining: 264ms
41:	learn: 22.1351157	total: 69.7ms	remaining: 262ms
42:	learn: 22.0674082	total: 71.4ms	remaining: 261ms
43:	learn: 21.8740075	total: 72.8ms	remaining: 258ms
44:	learn: 21.7874466	total: 74.3ms	remaining: 256ms
45:	learn: 21.6120086	total: 76.1ms	remaining: 255ms
46:	learn: 21.5023987	total: 77.7ms	remaining: 253ms
47:	learn: 21.2850890	total: 79.1ms	remaining: 251ms
48:	learn: 21.0977748	total: 80.7ms	remaining: 249ms
49:	learn: 20.9980605	total: 82.3ms	remaining: 247ms
50:	learn: 20.8392786	total: 83.8ms	remaining: 245ms
51:	learn: 20.6376328	total: 85.5ms	remaining: 243ms
52:	learn: 20.5432725	total: 86.9ms	remaining: 241ms
53:	learn: 20.4837916	total: 88.2ms	remaining: 239ms
54:	learn: 20.3608876	total: 89.5ms	remaining: 236ms
55:	learn: 20.2917428	total: 90.9ms	remaining: 234ms
56:	learn: 20.1729553	total: 92.3ms	remaining: 231ms
57:	learn: 20.0883888	total: 93.9ms	remaining: 230ms
58:	learn: 20.0177544	total: 95.6ms	remaining: 228ms
59:	learn: 19.9150420	total: 97.3ms	remaining: 227ms
60:	learn: 19.7647317	total: 98.7ms	remaining: 225ms
61:	learn: 19.6334327	total: 100ms	remaining: 223ms
62:	learn: 19.5004811	total: 102ms	remaining: 222ms
63:	learn: 19.4359845	total: 104ms	remaining: 220ms
64:	learn: 19.3473377	total: 105ms	remaining: 218ms
65:	learn: 19.2058321	total: 106ms	remaining: 215ms
66:	learn: 19.1199053	total: 107ms	remaining: 213ms
67:	learn: 18.9546707	total: 109ms	remaining: 211ms
68:	learn: 18.8077503	total: 110ms	remaining: 208ms
69:	learn: 18.7339333	total: 111ms	remaining: 206ms
70:	learn: 18.6725400	total: 112ms	remaining: 204ms
71:	learn: 18.4715041	total: 113ms	remaining: 202ms
72:	learn: 18.3060142	total: 115ms	remaining: 200ms
73:	learn: 18.1805200	total: 116ms	remaining: 198ms
74:	learn: 18.1497416	total: 117ms	remaining: 195ms
75:	learn: 18.0744295	total: 119ms	remaining: 193ms
76:	learn: 17.8931631	total: 120ms	remaining: 192ms
77:	learn: 17.7489851	total: 121ms	remaining: 190ms
78:	learn: 17.5958940	total: 122ms	remaining: 188ms
79:	learn: 17.5335915	total: 124ms	remaining: 186ms
80:	learn: 17.4658189	total: 125ms	remaining: 184ms
81:	learn: 17.3931702	total: 126ms	remaining: 182ms
82:	learn: 17.3218716	total: 128ms	remaining: 180ms
83:	learn: 17.1757597	total: 129ms	remaining: 178ms
84:	learn: 17.0438674	total: 130ms	remaining: 176ms
85:	learn: 16.9661438	total: 131ms	remaining: 174ms
86:	learn: 16.9326050	total: 132ms	remaining: 172ms
87:	learn: 16.8589978	total: 134ms	remaining: 170ms
88:	learn: 16.8437235	total: 135ms	remaining: 168ms
89:	learn: 16.7781233	total: 136ms	remaining: 167ms
90:	learn: 16.6650942	total: 138ms	remaining: 165ms
91:	learn: 16.5062147	total: 139ms	remaining: 163ms
92:	learn: 16.3687770	total: 140ms	remaining: 161ms
93:	learn: 16.2625974	total: 141ms	remaining: 160ms
94:	learn: 16.2309806	total: 143ms	remaining: 158ms
95:	learn: 16.1745682	total: 144ms	remaining: 156ms
96:	learn: 16.1526108	total: 146ms	remaining: 155ms
97:	learn: 16.0631719	total: 147ms	remaining: 153ms
98:	learn: 16.0252527	total: 148ms	remaining: 151ms
99:	learn: 15.9930049	total: 150ms	remaining: 150ms
100:	learn: 15.9790331	total: 151ms	remaining: 148ms
101:	learn: 15.9030181	total: 152ms	remaining: 146ms
102:	learn: 15.8538675	total: 153ms	remaining: 145ms
103:	learn: 15.7883378	total: 155ms	remaining: 143ms
104:	learn: 15.7778690	total: 156ms	remaining: 141ms
105:	learn: 15.7089176	total: 157ms	remaining: 139ms
106:	learn: 15.5903176	total: 158ms	remaining: 138ms
107:	learn: 15.5498153	total: 160ms	remaining: 136ms
108:	learn: 15.4047126	total: 161ms	remaining: 134ms
109:	learn: 15.3152499	total: 162ms	remaining: 133ms
110:	learn: 15.2480107	total: 163ms	remaining: 131ms
111:	learn: 15.2334127	total: 164ms	remaining: 129ms
112:	learn: 15.1898999	total: 166ms	remaining: 128ms
113:	learn: 15.0099340	total: 167ms	remaining: 126ms
114:	learn: 14.8930257	total: 168ms	remaining: 124ms
115:	learn: 14.7529604	total: 170ms	remaining: 123ms
116:	learn: 14.7164943	total: 171ms	remaining: 121ms
117:	learn: 14.6785400	total: 172ms	remaining: 120ms
118:	learn: 14.6656053	total: 173ms	remaining: 118ms
119:	learn: 14.6278646	total: 175ms	remaining: 116ms
120:	learn: 14.5229793	total: 176ms	remaining: 115ms
121:	learn: 14.4162367	total: 177ms	remaining: 113ms
122:	learn: 14.3864669	total: 178ms	remaining: 112ms
123:	learn: 14.3244582	total: 179ms	remaining: 110ms
124:	learn: 14.2405165	total: 181ms	remaining: 108ms
125:	learn: 14.1924608	total: 182ms	remaining: 107ms
126:	learn: 14.1287990	total: 183ms	remaining: 105ms
127:	learn: 14.0769022	total: 184ms	remaining: 104ms
128:	learn: 14.0601362	total: 185ms	remaining: 102ms
129:	learn: 13.9608767	total: 187ms	remaining: 100ms
130:	learn: 13.9222835	total: 188ms	remaining: 98.9ms
131:	learn: 13.9033913	total: 189ms	remaining: 97.4ms
132:	learn: 13.8623147	total: 190ms	remaining: 95.8ms
133:	learn: 13.7860589	total: 191ms	remaining: 94.3ms
134:	learn: 13.7559525	total: 193ms	remaining: 92.7ms
135:	learn: 13.7318703	total: 194ms	remaining: 91.2ms
136:	learn: 13.6750190	total: 195ms	remaining: 89.7ms
137:	learn: 13.5875819	total: 196ms	remaining: 88.1ms
138:	learn: 13.5232267	total: 197ms	remaining: 86.6ms
139:	learn: 13.4639107	total: 199ms	remaining: 85.1ms
140:	learn: 13.4560255	total: 200ms	remaining: 83.7ms
141:	learn: 13.4045683	total: 201ms	remaining: 82.2ms
142:	learn: 13.3926419	total: 203ms	remaining: 80.8ms
143:	learn: 13.3840563	total: 204ms	remaining: 79.3ms
144:	learn: 13.3393568	total: 205ms	remaining: 77.8ms
145:	learn: 13.3040122	total: 206ms	remaining: 76.3ms
146:	learn: 13.2941437	total: 208ms	remaining: 74.9ms
147:	learn: 13.2085804	total: 209ms	remaining: 73.4ms
148:	learn: 13.1225837	total: 210ms	remaining: 71.9ms
149:	learn: 13.1124107	total: 211ms	remaining: 70.4ms
150:	learn: 13.0905352	total: 212ms	remaining: 68.9ms
151:	learn: 13.0830619	total: 214ms	remaining: 67.5ms
152:	learn: 13.0512049	total: 215ms	remaining: 66.1ms
153:	learn: 13.0502731	total: 216ms	remaining: 64.6ms
154:	learn: 12.9965858	total: 218ms	remaining: 63.2ms
155:	learn: 12.9730932	total: 219ms	remaining: 61.8ms
156:	learn: 12.8393292	total: 221ms	remaining: 60.4ms
157:	learn: 12.7607029	total: 222ms	remaining: 59ms
158:	learn: 12.7389258	total: 223ms	remaining: 57.5ms
159:	learn: 12.7127994	total: 224ms	remaining: 56.1ms
160:	learn: 12.6403146	total: 226ms	remaining: 54.7ms
161:	learn: 12.5992191	total: 227ms	remaining: 53.3ms
162:	learn: 12.4826414	total: 228ms	remaining: 51.9ms
163:	learn: 12.4508180	total: 230ms	remaining: 50.5ms
164:	learn: 12.4414079	total: 231ms	remaining: 49ms
165:	learn: 12.4364365	total: 232ms	remaining: 47.6ms
166:	learn: 12.3591893	total: 234ms	remaining: 46.2ms
167:	learn: 12.3547958	total: 235ms	remaining: 44.7ms
168:	learn: 12.3459608	total: 236ms	remaining: 43.3ms
169:	learn: 12.2195255	total: 238ms	remaining: 42ms
170:	learn: 12.2109373	total: 241ms	remaining: 40.8ms
171:	learn: 12.1653587	total: 243ms	remaining: 39.5ms
172:	learn: 12.1125488	total: 244ms	remaining: 38.1ms
173:	learn: 12.1110634	total: 246ms	remaining: 36.7ms
174:	learn: 12.1040183	total: 247ms	remaining: 35.4ms
175:	learn: 12.0485284	total: 250ms	remaining: 34ms
176:	learn: 11.9917444	total: 252ms	remaining: 32.7ms
177:	learn: 11.9846121	total: 253ms	remaining: 31.3ms
178:	learn: 11.9675084	total: 255ms	remaining: 29.9ms
179:	learn: 11.8973567	total: 257ms	remaining: 28.5ms
180:	learn: 11.8455387	total: 258ms	remaining: 27.1ms
181:	learn: 11.8056804	total: 260ms	remaining: 25.7ms
182:	learn: 11.7146352	total: 261ms	remaining: 24.3ms
183:	learn: 11.6399953	total: 263ms	remaining: 22.8ms
184:	learn: 11.5740434	total: 264ms	remaining: 21.4ms
185:	learn: 11.5666450	total: 266ms	remaining: 20ms
186:	learn: 11.5331784	total: 267ms	remaining: 18.6ms
187:	learn: 11.5066212	total: 268ms	remaining: 17.1ms
188:	learn: 11.4518463	total: 269ms	remaining: 15.7ms
189:	learn: 11.4272033	total: 271ms	remaining: 14.2ms
190:	learn: 11.3884820	total: 272ms	remaining: 12.8ms
191:	learn: 11.3646172	total: 273ms	remaining: 11.4ms
192:	learn: 11.3240567	total: 274ms	remaining: 9.95ms
193:	learn: 11.3039452	total: 276ms	remaining: 8.52ms
194:	learn: 11.2776314	total: 277ms	remaining: 7.1ms
195:	learn: 11.2272384	total: 278ms	remaining: 5.67ms
196:	learn: 11.2045998	total: 279ms	remaining: 4.25ms
197:	learn: 11.1347085	total: 281ms	remaining: 2.83ms
198:	learn: 11.0712194	total: 282ms	remaining: 1.42ms
199:	learn: 11.0138719	total: 283ms	remaining: 0us
0:	learn: 46.0672583	total: 1.28ms	remaining: 255ms
1:	learn: 44.5139564	total: 2.45ms	remaining: 242ms
2:	learn: 42.8025799	total: 3.62ms	remaining: 238ms
3:	learn: 41.4019960	total: 4.8ms	remaining: 235ms
4:	learn: 40.0744300	total: 6.04ms	remaining: 236ms
5:	learn: 38.6828903	total: 7.29ms	remaining: 236ms
6:	learn: 37.3807565	total: 8.56ms	remaining: 236ms
7:	learn: 36.5944676	total: 9.93ms	remaining: 238ms
8:	learn: 35.9874679	total: 11.2ms	remaining: 237ms
9:	learn: 34.7237627	total: 12.3ms	remaining: 233ms
10:	learn: 33.7958687	total: 13.6ms	remaining: 233ms
11:	learn: 33.0199734	total: 14.8ms	remaining: 231ms
12:	learn: 32.0148943	total: 16ms	remaining: 230ms
13:	learn: 31.3487651	total: 17.2ms	remaining: 229ms
14:	learn: 30.6712973	total: 18.4ms	remaining: 227ms
15:	learn: 29.8846599	total: 19.6ms	remaining: 226ms
16:	learn: 29.1469448	total: 20.8ms	remaining: 224ms
17:	learn: 28.7709250	total: 22ms	remaining: 223ms
18:	learn: 28.5626603	total: 23.2ms	remaining: 221ms
19:	learn: 28.1646138	total: 24.3ms	remaining: 219ms
20:	learn: 27.6308065	total: 25.6ms	remaining: 219ms
21:	learn: 27.0957167	total: 27ms	remaining: 218ms
22:	learn: 26.6564482	total: 28.2ms	remaining: 217ms
23:	learn: 26.3269020	total: 29.4ms	remaining: 216ms
24:	learn: 25.9536680	total: 30.7ms	remaining: 215ms
25:	learn: 25.7704291	total: 31.9ms	remaining: 213ms
26:	learn: 25.4045908	total: 33.1ms	remaining: 212ms
27:	learn: 25.1281935	total: 34.2ms	remaining: 210ms
28:	learn: 24.9210886	total: 35.4ms	remaining: 209ms
29:	learn: 24.5569874	total: 36.7ms	remaining: 208ms
30:	learn: 24.3416044	total: 37.8ms	remaining: 206ms
31:	learn: 24.1451980	total: 39.1ms	remaining: 205ms
32:	learn: 23.8837705	total: 40.6ms	remaining: 205ms
33:	learn: 23.5684410	total: 41.9ms	remaining: 204ms
34:	learn: 23.3132973	total: 43.4ms	remaining: 205ms
35:	learn: 22.9741127	total: 44.6ms	remaining: 203ms
36:	learn: 22.6319357	total: 45.8ms	remaining: 202ms
37:	learn: 22.2996136	total: 47ms	remaining: 200ms
38:	learn: 22.2528081	total: 48.1ms	remaining: 199ms
39:	learn: 22.1465954	total: 49.3ms	remaining: 197ms
40:	learn: 22.0011782	total: 50.6ms	remaining: 196ms
41:	learn: 21.8096540	total: 52ms	remaining: 195ms
42:	learn: 21.7265015	total: 53.2ms	remaining: 194ms
43:	learn: 21.5296205	total: 54.4ms	remaining: 193ms
44:	learn: 21.3943897	total: 55.6ms	remaining: 192ms
45:	learn: 21.0773300	total: 56.9ms	remaining: 191ms
46:	learn: 20.9404573	total: 58.2ms	remaining: 189ms
47:	learn: 20.8627418	total: 59.6ms	remaining: 189ms
48:	learn: 20.7331607	total: 60.8ms	remaining: 187ms
49:	learn: 20.6569488	total: 62.1ms	remaining: 186ms
50:	learn: 20.4885993	total: 63.3ms	remaining: 185ms
51:	learn: 20.2959537	total: 64.6ms	remaining: 184ms
52:	learn: 20.1901969	total: 65.9ms	remaining: 183ms
53:	learn: 20.1217372	total: 67.2ms	remaining: 182ms
54:	learn: 20.0044577	total: 68.5ms	remaining: 181ms
55:	learn: 19.9424163	total: 69.7ms	remaining: 179ms
56:	learn: 19.9037068	total: 71ms	remaining: 178ms
57:	learn: 19.6978652	total: 72.1ms	remaining: 177ms
58:	learn: 19.5818164	total: 73.4ms	remaining: 175ms
59:	learn: 19.4908773	total: 74.6ms	remaining: 174ms
60:	learn: 19.3750379	total: 75.9ms	remaining: 173ms
61:	learn: 19.2275493	total: 77.2ms	remaining: 172ms
62:	learn: 19.0365101	total: 78.5ms	remaining: 171ms
63:	learn: 18.9814752	total: 80.1ms	remaining: 170ms
64:	learn: 18.9412500	total: 81.3ms	remaining: 169ms
65:	learn: 18.8597002	total: 82.5ms	remaining: 168ms
66:	learn: 18.7762216	total: 83.8ms	remaining: 166ms
67:	learn: 18.6553681	total: 85ms	remaining: 165ms
68:	learn: 18.5066568	total: 86.1ms	remaining: 163ms
69:	learn: 18.2771147	total: 87.3ms	remaining: 162ms
70:	learn: 18.2522292	total: 88.5ms	remaining: 161ms
71:	learn: 18.1050159	total: 89.7ms	remaining: 159ms
72:	learn: 17.9965402	total: 90.9ms	remaining: 158ms
73:	learn: 17.9250301	total: 92.1ms	remaining: 157ms
74:	learn: 17.8989428	total: 93.6ms	remaining: 156ms
75:	learn: 17.7435105	total: 95ms	remaining: 155ms
76:	learn: 17.6353222	total: 96.4ms	remaining: 154ms
77:	learn: 17.5485384	total: 97.7ms	remaining: 153ms
78:	learn: 17.4040834	total: 99ms	remaining: 152ms
79:	learn: 17.3306236	total: 100ms	remaining: 150ms
80:	learn: 17.2696555	total: 102ms	remaining: 149ms
81:	learn: 17.1896150	total: 103ms	remaining: 148ms
82:	learn: 17.1340094	total: 104ms	remaining: 147ms
83:	learn: 17.0428527	total: 105ms	remaining: 146ms
84:	learn: 16.9034348	total: 107ms	remaining: 144ms
85:	learn: 16.7888273	total: 108ms	remaining: 143ms
86:	learn: 16.7053711	total: 109ms	remaining: 142ms
87:	learn: 16.6530329	total: 111ms	remaining: 141ms
88:	learn: 16.4426027	total: 112ms	remaining: 139ms
89:	learn: 16.3391862	total: 113ms	remaining: 138ms
90:	learn: 16.1725695	total: 114ms	remaining: 137ms
91:	learn: 16.0048696	total: 116ms	remaining: 136ms
92:	learn: 15.8450125	total: 117ms	remaining: 135ms
93:	learn: 15.6930832	total: 118ms	remaining: 133ms
94:	learn: 15.5012085	total: 121ms	remaining: 134ms
95:	learn: 15.3566769	total: 123ms	remaining: 134ms
96:	learn: 15.2676826	total: 125ms	remaining: 133ms
97:	learn: 15.1750555	total: 127ms	remaining: 132ms
98:	learn: 15.0351872	total: 129ms	remaining: 132ms
99:	learn: 14.9607381	total: 132ms	remaining: 132ms
100:	learn: 14.8702916	total: 134ms	remaining: 131ms
101:	learn: 14.8006095	total: 136ms	remaining: 131ms
102:	learn: 14.7415135	total: 138ms	remaining: 130ms
103:	learn: 14.6773302	total: 140ms	remaining: 129ms
104:	learn: 14.5479213	total: 141ms	remaining: 128ms
105:	learn: 14.3936323	total: 143ms	remaining: 127ms
106:	learn: 14.3212498	total: 147ms	remaining: 127ms
107:	learn: 14.1244663	total: 149ms	remaining: 127ms
108:	learn: 14.0252472	total: 150ms	remaining: 125ms
109:	learn: 13.9432525	total: 152ms	remaining: 124ms
110:	learn: 13.8130103	total: 153ms	remaining: 123ms
111:	learn: 13.7299384	total: 155ms	remaining: 121ms
112:	learn: 13.6775383	total: 156ms	remaining: 120ms
113:	learn: 13.6542197	total: 157ms	remaining: 119ms
114:	learn: 13.5412228	total: 159ms	remaining: 117ms
115:	learn: 13.4770516	total: 160ms	remaining: 116ms
116:	learn: 13.4355787	total: 162ms	remaining: 115ms
117:	learn: 13.3785376	total: 163ms	remaining: 113ms
118:	learn: 13.3011642	total: 165ms	remaining: 112ms
119:	learn: 13.2060583	total: 166ms	remaining: 111ms
120:	learn: 13.1433454	total: 168ms	remaining: 109ms
121:	learn: 13.0843482	total: 169ms	remaining: 108ms
122:	learn: 13.0142639	total: 171ms	remaining: 107ms
123:	learn: 13.0030814	total: 172ms	remaining: 105ms
124:	learn: 12.9636125	total: 173ms	remaining: 104ms
125:	learn: 12.8847673	total: 175ms	remaining: 103ms
126:	learn: 12.8339760	total: 176ms	remaining: 101ms
127:	learn: 12.7499344	total: 178ms	remaining: 100ms
128:	learn: 12.6947103	total: 179ms	remaining: 98.7ms
129:	learn: 12.6423027	total: 181ms	remaining: 97.4ms
130:	learn: 12.5742549	total: 182ms	remaining: 95.8ms
131:	learn: 12.5508188	total: 183ms	remaining: 94.4ms
132:	learn: 12.5010241	total: 185ms	remaining: 93ms
133:	learn: 12.4448731	total: 186ms	remaining: 91.5ms
134:	learn: 12.4216630	total: 187ms	remaining: 90.1ms
135:	learn: 12.3885673	total: 188ms	remaining: 88.6ms
136:	learn: 12.3001436	total: 190ms	remaining: 87.2ms
137:	learn: 12.2552239	total: 191ms	remaining: 85.8ms
138:	learn: 12.2152312	total: 192ms	remaining: 84.3ms
139:	learn: 12.1427169	total: 194ms	remaining: 82.9ms
140:	learn: 12.1040159	total: 195ms	remaining: 81.5ms
141:	learn: 12.0791687	total: 196ms	remaining: 80.1ms
142:	learn: 12.0307090	total: 197ms	remaining: 78.7ms
143:	learn: 12.0128842	total: 199ms	remaining: 77.4ms
144:	learn: 11.9942819	total: 200ms	remaining: 76ms
145:	learn: 11.9483602	total: 202ms	remaining: 74.7ms
146:	learn: 11.9129950	total: 203ms	remaining: 73.3ms
147:	learn: 11.8565886	total: 205ms	remaining: 71.9ms
148:	learn: 11.8066134	total: 206ms	remaining: 70.5ms
149:	learn: 11.7494254	total: 207ms	remaining: 69.2ms
150:	learn: 11.6874200	total: 209ms	remaining: 67.7ms
151:	learn: 11.6571491	total: 210ms	remaining: 66.3ms
152:	learn: 11.6283881	total: 211ms	remaining: 64.8ms
153:	learn: 11.5719938	total: 212ms	remaining: 63.4ms
154:	learn: 11.5163671	total: 214ms	remaining: 62ms
155:	learn: 11.4594426	total: 215ms	remaining: 60.6ms
156:	learn: 11.4408430	total: 216ms	remaining: 59.2ms
157:	learn: 11.3917425	total: 217ms	remaining: 57.8ms
158:	learn: 11.3139319	total: 219ms	remaining: 56.4ms
159:	learn: 11.2681367	total: 220ms	remaining: 54.9ms
160:	learn: 11.2527610	total: 221ms	remaining: 53.5ms
161:	learn: 11.1907574	total: 222ms	remaining: 52.1ms
162:	learn: 11.1686146	total: 224ms	remaining: 50.8ms
163:	learn: 11.1344355	total: 225ms	remaining: 49.4ms
164:	learn: 11.0883300	total: 226ms	remaining: 48ms
165:	learn: 11.0366295	total: 227ms	remaining: 46.6ms
166:	learn: 11.0247756	total: 229ms	remaining: 45.2ms
167:	learn: 11.0171438	total: 230ms	remaining: 43.8ms
168:	learn: 10.9731212	total: 231ms	remaining: 42.4ms
169:	learn: 10.9125703	total: 232ms	remaining: 41ms
170:	learn: 10.8759521	total: 234ms	remaining: 39.6ms
171:	learn: 10.8214428	total: 235ms	remaining: 38.2ms
172:	learn: 10.8010649	total: 236ms	remaining: 36.8ms
173:	learn: 10.7827387	total: 237ms	remaining: 35.4ms
174:	learn: 10.7630457	total: 238ms	remaining: 34.1ms
175:	learn: 10.7004930	total: 240ms	remaining: 32.7ms
176:	learn: 10.6728169	total: 241ms	remaining: 31.3ms
177:	learn: 10.6257671	total: 242ms	remaining: 29.9ms
178:	learn: 10.6140424	total: 243ms	remaining: 28.5ms
179:	learn: 10.5699443	total: 245ms	remaining: 27.2ms
180:	learn: 10.5535052	total: 246ms	remaining: 25.8ms
181:	learn: 10.5209682	total: 247ms	remaining: 24.5ms
182:	learn: 10.4727888	total: 249ms	remaining: 23.1ms
183:	learn: 10.4422734	total: 250ms	remaining: 21.7ms
184:	learn: 10.4215843	total: 251ms	remaining: 20.4ms
185:	learn: 10.4001842	total: 252ms	remaining: 19ms
186:	learn: 10.3539686	total: 254ms	remaining: 17.6ms
187:	learn: 10.2882664	total: 255ms	remaining: 16.3ms
188:	learn: 10.2579562	total: 256ms	remaining: 14.9ms
189:	learn: 10.2154245	total: 258ms	remaining: 13.6ms
190:	learn: 10.1743154	total: 259ms	remaining: 12.2ms
191:	learn: 10.1319221	total: 260ms	remaining: 10.8ms
192:	learn: 10.0949993	total: 261ms	remaining: 9.48ms
193:	learn: 10.0652363	total: 263ms	remaining: 8.12ms
194:	learn: 10.0373419	total: 264ms	remaining: 6.76ms
195:	learn: 10.0108677	total: 265ms	remaining: 5.41ms
196:	learn: 9.9982729	total: 266ms	remaining: 4.05ms
197:	learn: 9.9665690	total: 267ms	remaining: 2.7ms
198:	learn: 9.9440970	total: 269ms	remaining: 1.35ms
199:	learn: 9.9285484	total: 270ms	remaining: 0us
0:	learn: 27.5331316	total: 25ms	remaining: 2.47s
1:	learn: 27.0928878	total: 43.7ms	remaining: 2.14s
2:	learn: 26.6215397	total: 65.2ms	remaining: 2.11s
3:	learn: 26.1320797	total: 86.6ms	remaining: 2.08s
4:	learn: 25.5708114	total: 106ms	remaining: 2.02s
5:	learn: 25.1569609	total: 125ms	remaining: 1.95s
6:	learn: 24.6776916	total: 145ms	remaining: 1.93s
7:	learn: 24.3131466	total: 166ms	remaining: 1.91s
8:	learn: 23.9291269	total: 188ms	remaining: 1.9s
9:	learn: 23.5838366	total: 214ms	remaining: 1.92s
10:	learn: 23.2314577	total: 241ms	remaining: 1.95s
11:	learn: 22.8869949	total: 264ms	remaining: 1.93s
12:	learn: 22.4245937	total: 286ms	remaining: 1.91s
13:	learn: 22.0206534	total: 309ms	remaining: 1.9s
14:	learn: 21.7022606	total: 328ms	remaining: 1.86s
15:	learn: 21.3968672	total: 348ms	remaining: 1.83s
16:	learn: 20.9882573	total: 367ms	remaining: 1.79s
17:	learn: 20.6789624	total: 387ms	remaining: 1.76s
18:	learn: 20.3827949	total: 409ms	remaining: 1.74s
19:	learn: 20.1544166	total: 439ms	remaining: 1.75s
20:	learn: 19.9121457	total: 462ms	remaining: 1.74s
21:	learn: 19.6621421	total: 484ms	remaining: 1.72s
22:	learn: 19.3501569	total: 505ms	remaining: 1.69s
23:	learn: 19.0889327	total: 527ms	remaining: 1.67s
24:	learn: 18.8689195	total: 547ms	remaining: 1.64s
25:	learn: 18.5964445	total: 569ms	remaining: 1.62s
26:	learn: 18.3364834	total: 591ms	remaining: 1.6s
27:	learn: 18.1076409	total: 612ms	remaining: 1.57s
28:	learn: 17.8878261	total: 635ms	remaining: 1.55s
29:	learn: 17.6774627	total: 666ms	remaining: 1.55s
30:	learn: 17.4836295	total: 691ms	remaining: 1.54s
31:	learn: 17.2733761	total: 715ms	remaining: 1.52s
32:	learn: 17.0468867	total: 738ms	remaining: 1.5s
33:	learn: 16.8108325	total: 763ms	remaining: 1.48s
34:	learn: 16.5415211	total: 783ms	remaining: 1.45s
35:	learn: 16.3714184	total: 804ms	remaining: 1.43s
36:	learn: 16.1608788	total: 827ms	remaining: 1.41s
37:	learn: 15.9984328	total: 854ms	remaining: 1.39s
38:	learn: 15.8335060	total: 878ms	remaining: 1.37s
39:	learn: 15.6602202	total: 901ms	remaining: 1.35s
40:	learn: 15.4954581	total: 925ms	remaining: 1.33s
41:	learn: 15.3620882	total: 945ms	remaining: 1.3s
42:	learn: 15.2140166	total: 964ms	remaining: 1.28s
43:	learn: 15.0870086	total: 984ms	remaining: 1.25s
44:	learn: 14.9147154	total: 1s	remaining: 1.23s
45:	learn: 14.7609171	total: 1.02s	remaining: 1.2s
46:	learn: 14.5901052	total: 1.04s	remaining: 1.18s
47:	learn: 14.4273259	total: 1.07s	remaining: 1.16s
48:	learn: 14.2798610	total: 1.1s	remaining: 1.14s
49:	learn: 14.1021139	total: 1.12s	remaining: 1.12s
50:	learn: 13.9902689	total: 1.14s	remaining: 1.1s
51:	learn: 13.8779536	total: 1.16s	remaining: 1.07s
52:	learn: 13.7445550	total: 1.19s	remaining: 1.05s
53:	learn: 13.6337249	total: 1.21s	remaining: 1.03s
54:	learn: 13.5400472	total: 1.23s	remaining: 1s
55:	learn: 13.3803597	total: 1.25s	remaining: 978ms
56:	learn: 13.2902125	total: 1.27s	remaining: 955ms
57:	learn: 13.1578553	total: 1.29s	remaining: 933ms
58:	learn: 13.0362047	total: 1.31s	remaining: 914ms
59:	learn: 12.9394034	total: 1.34s	remaining: 891ms
60:	learn: 12.8348950	total: 1.36s	remaining: 868ms
61:	learn: 12.7266532	total: 1.38s	remaining: 846ms
62:	learn: 12.5633581	total: 1.4s	remaining: 823ms
63:	learn: 12.4424580	total: 1.42s	remaining: 801ms
64:	learn: 12.3207502	total: 1.44s	remaining: 778ms
65:	learn: 12.1991637	total: 1.46s	remaining: 755ms
66:	learn: 12.0994803	total: 1.49s	remaining: 732ms
67:	learn: 11.9730740	total: 1.51s	remaining: 713ms
68:	learn: 11.8611564	total: 1.54s	remaining: 692ms
69:	learn: 11.7682666	total: 1.56s	remaining: 670ms
70:	learn: 11.6650875	total: 1.58s	remaining: 647ms
71:	learn: 11.5916610	total: 1.61s	remaining: 625ms
72:	learn: 11.4778837	total: 1.63s	remaining: 603ms
73:	learn: 11.3753187	total: 1.65s	remaining: 579ms
74:	learn: 11.2807363	total: 1.67s	remaining: 556ms
75:	learn: 11.1922433	total: 1.69s	remaining: 534ms
76:	learn: 11.1089234	total: 1.71s	remaining: 511ms
77:	learn: 11.0238343	total: 1.74s	remaining: 491ms
78:	learn: 10.9409200	total: 1.76s	remaining: 468ms
79:	learn: 10.8632563	total: 1.78s	remaining: 445ms
80:	learn: 10.7619610	total: 1.8s	remaining: 423ms
81:	learn: 10.6971597	total: 1.82s	remaining: 400ms
82:	learn: 10.6251891	total: 1.84s	remaining: 378ms
83:	learn: 10.5326326	total: 1.86s	remaining: 355ms
84:	learn: 10.4377665	total: 1.89s	remaining: 333ms
85:	learn: 10.3817931	total: 1.91s	remaining: 311ms
86:	learn: 10.2988157	total: 1.93s	remaining: 289ms
87:	learn: 10.2192016	total: 1.96s	remaining: 267ms
88:	learn: 10.1494494	total: 1.98s	remaining: 245ms
89:	learn: 10.0741735	total: 2.01s	remaining: 223ms
90:	learn: 10.0144581	total: 2.03s	remaining: 201ms
91:	learn: 9.9524648	total: 2.05s	remaining: 178ms
92:	learn: 9.8774329	total: 2.08s	remaining: 156ms
93:	learn: 9.8185407	total: 2.1s	remaining: 134ms
94:	learn: 9.7522036	total: 2.12s	remaining: 111ms
95:	learn: 9.6854283	total: 2.14s	remaining: 89.1ms
96:	learn: 9.6130737	total: 2.16s	remaining: 66.9ms
97:	learn: 9.5584787	total: 2.19s	remaining: 44.7ms
98:	learn: 9.5074757	total: 2.21s	remaining: 22.4ms
99:	learn: 9.4107769	total: 2.23s	remaining: 0us
0:	learn: 42.7887226	total: 21.2ms	remaining: 2.1s
1:	learn: 41.8440822	total: 33ms	remaining: 1.62s
2:	learn: 40.7630462	total: 55.2ms	remaining: 1.78s
3:	learn: 39.5297880	total: 77.5ms	remaining: 1.86s
4:	learn: 38.6077280	total: 101ms	remaining: 1.91s
5:	learn: 37.6971732	total: 124ms	remaining: 1.95s
6:	learn: 36.7463218	total: 155ms	remaining: 2.06s
7:	learn: 35.8007703	total: 180ms	remaining: 2.07s
8:	learn: 34.9731655	total: 203ms	remaining: 2.05s
9:	learn: 34.1812857	total: 227ms	remaining: 2.05s
10:	learn: 33.3509251	total: 250ms	remaining: 2.02s
11:	learn: 32.6184078	total: 271ms	remaining: 1.99s
12:	learn: 31.9918266	total: 293ms	remaining: 1.96s
13:	learn: 31.2244641	total: 316ms	remaining: 1.94s
14:	learn: 30.5895020	total: 346ms	remaining: 1.96s
15:	learn: 29.9318064	total: 368ms	remaining: 1.93s
16:	learn: 29.2267723	total: 391ms	remaining: 1.91s
17:	learn: 28.6196795	total: 412ms	remaining: 1.88s
18:	learn: 28.0756253	total: 434ms	remaining: 1.85s
19:	learn: 27.4447254	total: 455ms	remaining: 1.82s
20:	learn: 26.8501969	total: 476ms	remaining: 1.79s
21:	learn: 26.3047050	total: 498ms	remaining: 1.77s
22:	learn: 25.7794565	total: 520ms	remaining: 1.74s
23:	learn: 25.2658135	total: 524ms	remaining: 1.66s
24:	learn: 24.7272223	total: 551ms	remaining: 1.65s
25:	learn: 24.3182112	total: 577ms	remaining: 1.64s
26:	learn: 23.9791831	total: 601ms	remaining: 1.63s
27:	learn: 23.6007465	total: 625ms	remaining: 1.61s
28:	learn: 23.2573075	total: 649ms	remaining: 1.59s
29:	learn: 22.9475656	total: 672ms	remaining: 1.57s
30:	learn: 22.5526305	total: 694ms	remaining: 1.54s
31:	learn: 22.1198330	total: 717ms	remaining: 1.52s
32:	learn: 21.7489085	total: 741ms	remaining: 1.5s
33:	learn: 21.3655565	total: 770ms	remaining: 1.49s
34:	learn: 21.0252381	total: 792ms	remaining: 1.47s
35:	learn: 20.7488731	total: 815ms	remaining: 1.45s
36:	learn: 20.5339646	total: 837ms	remaining: 1.43s
37:	learn: 20.2145684	total: 859ms	remaining: 1.4s
38:	learn: 19.8876509	total: 879ms	remaining: 1.37s
39:	learn: 19.6692385	total: 899ms	remaining: 1.35s
40:	learn: 19.4286270	total: 918ms	remaining: 1.32s
41:	learn: 19.1769071	total: 940ms	remaining: 1.3s
42:	learn: 18.9575237	total: 961ms	remaining: 1.27s
43:	learn: 18.7342247	total: 984ms	remaining: 1.25s
44:	learn: 18.4849146	total: 1.01s	remaining: 1.24s
45:	learn: 18.2624270	total: 1.04s	remaining: 1.22s
46:	learn: 18.0695318	total: 1.06s	remaining: 1.2s
47:	learn: 17.8828655	total: 1.09s	remaining: 1.18s
48:	learn: 17.6634936	total: 1.11s	remaining: 1.16s
49:	learn: 17.4906819	total: 1.13s	remaining: 1.13s
50:	learn: 17.3041918	total: 1.15s	remaining: 1.11s
51:	learn: 17.0823762	total: 1.18s	remaining: 1.08s
52:	learn: 16.8782440	total: 1.2s	remaining: 1.06s
53:	learn: 16.6195426	total: 1.22s	remaining: 1.04s
54:	learn: 16.4155330	total: 1.25s	remaining: 1.02s
55:	learn: 16.2476574	total: 1.27s	remaining: 995ms
56:	learn: 16.0258529	total: 1.28s	remaining: 970ms
57:	learn: 15.8620283	total: 1.31s	remaining: 947ms
58:	learn: 15.7108893	total: 1.33s	remaining: 923ms
59:	learn: 15.5737080	total: 1.35s	remaining: 898ms
60:	learn: 15.4123613	total: 1.37s	remaining: 875ms
61:	learn: 15.2629578	total: 1.39s	remaining: 852ms
62:	learn: 15.1097207	total: 1.41s	remaining: 830ms
63:	learn: 14.9427151	total: 1.45s	remaining: 813ms
64:	learn: 14.7889867	total: 1.47s	remaining: 791ms
65:	learn: 14.6746715	total: 1.49s	remaining: 768ms
66:	learn: 14.5205076	total: 1.51s	remaining: 745ms
67:	learn: 14.3786093	total: 1.53s	remaining: 722ms
68:	learn: 14.2324541	total: 1.55s	remaining: 698ms
69:	learn: 14.0978554	total: 1.57s	remaining: 675ms
70:	learn: 13.9424582	total: 1.6s	remaining: 652ms
71:	learn: 13.8140169	total: 1.62s	remaining: 630ms
72:	learn: 13.6759558	total: 1.65s	remaining: 609ms
73:	learn: 13.5499120	total: 1.67s	remaining: 586ms
74:	learn: 13.4276838	total: 1.69s	remaining: 564ms
75:	learn: 13.3175244	total: 1.71s	remaining: 541ms
76:	learn: 13.2179850	total: 1.73s	remaining: 518ms
77:	learn: 13.1192866	total: 1.75s	remaining: 495ms
78:	learn: 13.0156952	total: 1.77s	remaining: 472ms
79:	learn: 12.8996211	total: 1.8s	remaining: 449ms
80:	learn: 12.8036058	total: 1.82s	remaining: 426ms
81:	learn: 12.7085774	total: 1.84s	remaining: 403ms
82:	learn: 12.6225307	total: 1.87s	remaining: 383ms
83:	learn: 12.4901564	total: 1.89s	remaining: 361ms
84:	learn: 12.3766435	total: 1.92s	remaining: 338ms
85:	learn: 12.2837693	total: 1.94s	remaining: 316ms
86:	learn: 12.1808453	total: 1.96s	remaining: 293ms
87:	learn: 12.1154320	total: 1.98s	remaining: 270ms
88:	learn: 12.0324383	total: 2s	remaining: 248ms
89:	learn: 11.9649236	total: 2.02s	remaining: 225ms
90:	learn: 11.8702731	total: 2.05s	remaining: 202ms
91:	learn: 11.7872282	total: 2.07s	remaining: 180ms
92:	learn: 11.6802080	total: 2.1s	remaining: 158ms
93:	learn: 11.5608608	total: 2.12s	remaining: 136ms
94:	learn: 11.4619383	total: 2.15s	remaining: 113ms
95:	learn: 11.3892378	total: 2.17s	remaining: 90.3ms
96:	learn: 11.3083410	total: 2.19s	remaining: 67.7ms
97:	learn: 11.2283441	total: 2.21s	remaining: 45.1ms
98:	learn: 11.1583948	total: 2.23s	remaining: 22.5ms
99:	learn: 11.0469641	total: 2.25s	remaining: 0us
0:	learn: 46.3030650	total: 3.56ms	remaining: 353ms
1:	learn: 45.3863821	total: 26.7ms	remaining: 1.31s
2:	learn: 44.3303657	total: 50.1ms	remaining: 1.62s
3:	learn: 43.3376970	total: 73.5ms	remaining: 1.76s
4:	learn: 42.3048090	total: 95.3ms	remaining: 1.81s
5:	learn: 41.2876619	total: 116ms	remaining: 1.82s
6:	learn: 40.2621105	total: 138ms	remaining: 1.83s
7:	learn: 39.2067787	total: 160ms	remaining: 1.84s
8:	learn: 38.2152671	total: 191ms	remaining: 1.93s
9:	learn: 37.3871577	total: 217ms	remaining: 1.95s
10:	learn: 36.6393787	total: 238ms	remaining: 1.93s
11:	learn: 35.8850130	total: 261ms	remaining: 1.91s
12:	learn: 35.3145595	total: 284ms	remaining: 1.9s
13:	learn: 34.5127183	total: 306ms	remaining: 1.88s
14:	learn: 33.9299378	total: 330ms	remaining: 1.87s
15:	learn: 33.1444830	total: 353ms	remaining: 1.85s
16:	learn: 32.5046852	total: 376ms	remaining: 1.83s
17:	learn: 31.9896017	total: 399ms	remaining: 1.82s
18:	learn: 31.3671259	total: 437ms	remaining: 1.86s
19:	learn: 30.7709490	total: 464ms	remaining: 1.86s
20:	learn: 30.3076309	total: 488ms	remaining: 1.83s
21:	learn: 29.7436165	total: 512ms	remaining: 1.81s
22:	learn: 29.2367879	total: 534ms	remaining: 1.79s
23:	learn: 28.6721804	total: 555ms	remaining: 1.76s
24:	learn: 28.1740050	total: 577ms	remaining: 1.73s
25:	learn: 27.7310122	total: 597ms	remaining: 1.7s
26:	learn: 27.2559389	total: 622ms	remaining: 1.68s
27:	learn: 26.7919727	total: 649ms	remaining: 1.67s
28:	learn: 26.3973786	total: 674ms	remaining: 1.65s
29:	learn: 25.9446861	total: 696ms	remaining: 1.62s
30:	learn: 25.5889650	total: 718ms	remaining: 1.6s
31:	learn: 25.1627233	total: 739ms	remaining: 1.57s
32:	learn: 24.8848176	total: 762ms	remaining: 1.55s
33:	learn: 24.4268954	total: 785ms	remaining: 1.52s
34:	learn: 24.1655944	total: 808ms	remaining: 1.5s
35:	learn: 23.8296205	total: 830ms	remaining: 1.48s
36:	learn: 23.4214518	total: 853ms	remaining: 1.45s
37:	learn: 23.1485204	total: 886ms	remaining: 1.45s
38:	learn: 22.7675316	total: 909ms	remaining: 1.42s
39:	learn: 22.4807336	total: 934ms	remaining: 1.4s
40:	learn: 22.2054867	total: 957ms	remaining: 1.38s
41:	learn: 21.9328851	total: 980ms	remaining: 1.35s
42:	learn: 21.6073446	total: 1s	remaining: 1.33s
43:	learn: 21.3198829	total: 1.02s	remaining: 1.3s
44:	learn: 21.0001604	total: 1.04s	remaining: 1.28s
45:	learn: 20.6560095	total: 1.07s	remaining: 1.25s
46:	learn: 20.4068862	total: 1.09s	remaining: 1.24s
47:	learn: 20.1123610	total: 1.12s	remaining: 1.21s
48:	learn: 19.8929795	total: 1.14s	remaining: 1.19s
49:	learn: 19.6851325	total: 1.16s	remaining: 1.16s
50:	learn: 19.4379923	total: 1.19s	remaining: 1.14s
51:	learn: 19.1765299	total: 1.21s	remaining: 1.11s
52:	learn: 18.9359818	total: 1.23s	remaining: 1.09s
53:	learn: 18.6848954	total: 1.25s	remaining: 1.06s
54:	learn: 18.4602852	total: 1.27s	remaining: 1.04s
55:	learn: 18.2692773	total: 1.3s	remaining: 1.02s
56:	learn: 18.0399201	total: 1.33s	remaining: 1s
57:	learn: 17.8235063	total: 1.35s	remaining: 978ms
58:	learn: 17.6311769	total: 1.37s	remaining: 954ms
59:	learn: 17.4590002	total: 1.39s	remaining: 930ms
60:	learn: 17.2170241	total: 1.42s	remaining: 905ms
61:	learn: 17.0477567	total: 1.44s	remaining: 880ms
62:	learn: 16.8483227	total: 1.46s	remaining: 856ms
63:	learn: 16.7003707	total: 1.48s	remaining: 833ms
64:	learn: 16.5244197	total: 1.51s	remaining: 813ms
65:	learn: 16.3560522	total: 1.53s	remaining: 789ms
66:	learn: 16.2090391	total: 1.55s	remaining: 765ms
67:	learn: 16.0773806	total: 1.57s	remaining: 742ms
68:	learn: 15.9313223	total: 1.6s	remaining: 718ms
69:	learn: 15.8587403	total: 1.62s	remaining: 694ms
70:	learn: 15.7219902	total: 1.64s	remaining: 670ms
71:	learn: 15.5888303	total: 1.66s	remaining: 646ms
72:	learn: 15.4672174	total: 1.68s	remaining: 622ms
73:	learn: 15.3250528	total: 1.7s	remaining: 598ms
74:	learn: 15.1885799	total: 1.73s	remaining: 578ms
75:	learn: 15.0571789	total: 1.76s	remaining: 555ms
76:	learn: 14.9087739	total: 1.78s	remaining: 532ms
77:	learn: 14.7682304	total: 1.8s	remaining: 509ms
78:	learn: 14.5259049	total: 1.83s	remaining: 486ms
79:	learn: 14.3631190	total: 1.85s	remaining: 462ms
80:	learn: 14.2467961	total: 1.87s	remaining: 438ms
81:	learn: 14.0738885	total: 1.89s	remaining: 415ms
82:	learn: 13.9665111	total: 1.91s	remaining: 392ms
83:	learn: 13.8331846	total: 1.94s	remaining: 369ms
84:	learn: 13.7292162	total: 1.96s	remaining: 346ms
85:	learn: 13.6492354	total: 1.98s	remaining: 323ms
86:	learn: 13.5481979	total: 2s	remaining: 299ms
87:	learn: 13.4472352	total: 2.02s	remaining: 276ms
88:	learn: 13.3258910	total: 2.04s	remaining: 253ms
89:	learn: 13.2393886	total: 2.06s	remaining: 230ms
90:	learn: 13.1693415	total: 2.09s	remaining: 206ms
91:	learn: 13.0653588	total: 2.11s	remaining: 183ms
92:	learn: 12.9569271	total: 2.13s	remaining: 161ms
93:	learn: 12.7887232	total: 2.16s	remaining: 138ms
94:	learn: 12.6654219	total: 2.19s	remaining: 115ms
95:	learn: 12.5942081	total: 2.21s	remaining: 92.1ms
96:	learn: 12.5016735	total: 2.23s	remaining: 69ms
97:	learn: 12.3851734	total: 2.25s	remaining: 46ms
98:	learn: 12.2915943	total: 2.27s	remaining: 23ms
99:	learn: 12.1817773	total: 2.29s	remaining: 0us
0:	learn: 45.9374585	total: 2.65ms	remaining: 262ms
1:	learn: 44.9941372	total: 22.3ms	remaining: 1.09s
2:	learn: 44.2262139	total: 41.8ms	remaining: 1.35s
3:	learn: 43.4077369	total: 62.1ms	remaining: 1.49s
4:	learn: 42.4614795	total: 83.8ms	remaining: 1.59s
5:	learn: 41.7293035	total: 105ms	remaining: 1.65s
6:	learn: 40.9788334	total: 126ms	remaining: 1.67s
7:	learn: 40.2192521	total: 147ms	remaining: 1.69s
8:	learn: 39.3640339	total: 170ms	remaining: 1.72s
9:	learn: 38.5378070	total: 192ms	remaining: 1.73s
10:	learn: 37.8182939	total: 216ms	remaining: 1.74s
11:	learn: 37.1773569	total: 239ms	remaining: 1.75s
12:	learn: 36.4195124	total: 264ms	remaining: 1.76s
13:	learn: 35.5821022	total: 296ms	remaining: 1.82s
14:	learn: 35.0064478	total: 320ms	remaining: 1.81s
15:	learn: 34.2615732	total: 343ms	remaining: 1.8s
16:	learn: 33.5412554	total: 367ms	remaining: 1.79s
17:	learn: 32.9141508	total: 388ms	remaining: 1.76s
18:	learn: 32.2363942	total: 409ms	remaining: 1.75s
19:	learn: 31.7331387	total: 432ms	remaining: 1.73s
20:	learn: 31.0899756	total: 457ms	remaining: 1.72s
21:	learn: 30.6319944	total: 487ms	remaining: 1.73s
22:	learn: 30.1842367	total: 510ms	remaining: 1.71s
23:	learn: 29.6380878	total: 532ms	remaining: 1.68s
24:	learn: 29.2321241	total: 554ms	remaining: 1.66s
25:	learn: 28.7979520	total: 575ms	remaining: 1.64s
26:	learn: 28.2980553	total: 596ms	remaining: 1.61s
27:	learn: 27.8482566	total: 617ms	remaining: 1.58s
28:	learn: 27.4300154	total: 638ms	remaining: 1.56s
29:	learn: 27.0089070	total: 660ms	remaining: 1.54s
30:	learn: 26.6386533	total: 683ms	remaining: 1.52s
31:	learn: 26.1488739	total: 714ms	remaining: 1.52s
32:	learn: 25.7427326	total: 737ms	remaining: 1.5s
33:	learn: 25.4135376	total: 760ms	remaining: 1.48s
34:	learn: 25.1125079	total: 783ms	remaining: 1.45s
35:	learn: 24.7765508	total: 806ms	remaining: 1.43s
36:	learn: 24.4184054	total: 827ms	remaining: 1.41s
37:	learn: 24.1285465	total: 850ms	remaining: 1.39s
38:	learn: 23.7617767	total: 872ms	remaining: 1.36s
39:	learn: 23.4697237	total: 900ms	remaining: 1.35s
40:	learn: 23.1529572	total: 925ms	remaining: 1.33s
41:	learn: 22.9281680	total: 948ms	remaining: 1.31s
42:	learn: 22.5433571	total: 968ms	remaining: 1.28s
43:	learn: 22.2694210	total: 989ms	remaining: 1.26s
44:	learn: 22.0626545	total: 1.01s	remaining: 1.24s
45:	learn: 21.7856336	total: 1.03s	remaining: 1.21s
46:	learn: 21.5744570	total: 1.06s	remaining: 1.19s
47:	learn: 21.3032312	total: 1.08s	remaining: 1.17s
48:	learn: 21.0549035	total: 1.1s	remaining: 1.15s
49:	learn: 20.7560738	total: 1.13s	remaining: 1.13s
50:	learn: 20.5666362	total: 1.16s	remaining: 1.11s
51:	learn: 20.2971913	total: 1.18s	remaining: 1.09s
52:	learn: 20.1128767	total: 1.2s	remaining: 1.07s
53:	learn: 19.9086266	total: 1.23s	remaining: 1.05s
54:	learn: 19.8505379	total: 1.25s	remaining: 1.02s
55:	learn: 19.6060818	total: 1.27s	remaining: 997ms
56:	learn: 19.3463236	total: 1.29s	remaining: 974ms
57:	learn: 19.1448943	total: 1.31s	remaining: 953ms
58:	learn: 18.9303070	total: 1.34s	remaining: 932ms
59:	learn: 18.7334702	total: 1.36s	remaining: 909ms
60:	learn: 18.4745316	total: 1.38s	remaining: 884ms
61:	learn: 18.3429058	total: 1.41s	remaining: 862ms
62:	learn: 18.2349371	total: 1.43s	remaining: 838ms
63:	learn: 18.0464198	total: 1.45s	remaining: 814ms
64:	learn: 17.9551885	total: 1.47s	remaining: 790ms
65:	learn: 17.8046513	total: 1.49s	remaining: 767ms
66:	learn: 17.6580615	total: 1.51s	remaining: 744ms
67:	learn: 17.5210179	total: 1.54s	remaining: 725ms
68:	learn: 17.3683843	total: 1.56s	remaining: 703ms
69:	learn: 17.2746349	total: 1.59s	remaining: 681ms
70:	learn: 17.1657792	total: 1.61s	remaining: 658ms
71:	learn: 17.0139366	total: 1.63s	remaining: 635ms
72:	learn: 16.9273438	total: 1.65s	remaining: 612ms
73:	learn: 16.7770796	total: 1.67s	remaining: 588ms
74:	learn: 16.6273270	total: 1.69s	remaining: 565ms
75:	learn: 16.4876252	total: 1.72s	remaining: 542ms
76:	learn: 16.3403316	total: 1.74s	remaining: 520ms
77:	learn: 16.2334666	total: 1.76s	remaining: 498ms
78:	learn: 16.1246403	total: 1.78s	remaining: 475ms
79:	learn: 16.1051765	total: 1.79s	remaining: 447ms
80:	learn: 15.9789512	total: 1.81s	remaining: 424ms
81:	learn: 15.8668312	total: 1.83s	remaining: 401ms
82:	learn: 15.8286992	total: 1.85s	remaining: 378ms
83:	learn: 15.7176535	total: 1.87s	remaining: 355ms
84:	learn: 15.6304053	total: 1.89s	remaining: 333ms
85:	learn: 15.5540487	total: 1.91s	remaining: 311ms
86:	learn: 15.4358015	total: 1.93s	remaining: 289ms
87:	learn: 15.3234993	total: 1.96s	remaining: 267ms
88:	learn: 15.1846833	total: 1.98s	remaining: 245ms
89:	learn: 15.0930916	total: 2s	remaining: 223ms
90:	learn: 14.9870552	total: 2.02s	remaining: 200ms
91:	learn: 14.9340350	total: 2.05s	remaining: 178ms
92:	learn: 14.8819329	total: 2.07s	remaining: 156ms
93:	learn: 14.8108947	total: 2.09s	remaining: 134ms
94:	learn: 14.7229760	total: 2.11s	remaining: 111ms
95:	learn: 14.6144792	total: 2.13s	remaining: 88.9ms
96:	learn: 14.5117556	total: 2.16s	remaining: 66.7ms
97:	learn: 14.4162730	total: 2.18s	remaining: 44.6ms
98:	learn: 14.3472920	total: 2.2s	remaining: 22.3ms
99:	learn: 14.2651631	total: 2.23s	remaining: 0us
0:	learn: 46.4538034	total: 20.1ms	remaining: 1.99s
1:	learn: 45.4517374	total: 40.5ms	remaining: 1.98s
2:	learn: 44.5278586	total: 62.1ms	remaining: 2.01s
3:	learn: 43.4085977	total: 85.2ms	remaining: 2.04s
4:	learn: 42.4277811	total: 116ms	remaining: 2.21s
5:	learn: 41.6326697	total: 141ms	remaining: 2.2s
6:	learn: 40.7538359	total: 164ms	remaining: 2.18s
7:	learn: 39.9527309	total: 187ms	remaining: 2.15s
8:	learn: 39.0753018	total: 207ms	remaining: 2.1s
9:	learn: 38.2762566	total: 228ms	remaining: 2.06s
10:	learn: 37.6931120	total: 247ms	remaining: 2s
11:	learn: 37.1152456	total: 268ms	remaining: 1.96s
12:	learn: 36.4260589	total: 290ms	remaining: 1.94s
13:	learn: 35.8227743	total: 318ms	remaining: 1.95s
14:	learn: 35.1895931	total: 343ms	remaining: 1.95s
15:	learn: 34.5173917	total: 365ms	remaining: 1.92s
16:	learn: 33.7580423	total: 387ms	remaining: 1.89s
17:	learn: 33.2817590	total: 408ms	remaining: 1.86s
18:	learn: 32.6094234	total: 431ms	remaining: 1.84s
19:	learn: 32.1663838	total: 452ms	remaining: 1.81s
20:	learn: 31.6118204	total: 474ms	remaining: 1.78s
21:	learn: 31.0524919	total: 496ms	remaining: 1.76s
22:	learn: 30.6530294	total: 520ms	remaining: 1.74s
23:	learn: 29.9638142	total: 549ms	remaining: 1.74s
24:	learn: 29.4784766	total: 573ms	remaining: 1.72s
25:	learn: 29.0431548	total: 596ms	remaining: 1.7s
26:	learn: 28.5923229	total: 620ms	remaining: 1.68s
27:	learn: 28.1646598	total: 643ms	remaining: 1.65s
28:	learn: 27.7320559	total: 665ms	remaining: 1.63s
29:	learn: 27.3472101	total: 685ms	remaining: 1.6s
30:	learn: 26.9299792	total: 708ms	remaining: 1.57s
31:	learn: 26.5961114	total: 732ms	remaining: 1.55s
32:	learn: 26.0427736	total: 758ms	remaining: 1.54s
33:	learn: 25.5746867	total: 780ms	remaining: 1.51s
34:	learn: 25.2866624	total: 801ms	remaining: 1.49s
35:	learn: 24.9462619	total: 822ms	remaining: 1.46s
36:	learn: 24.6276430	total: 842ms	remaining: 1.43s
37:	learn: 24.3408784	total: 863ms	remaining: 1.41s
38:	learn: 24.0950500	total: 884ms	remaining: 1.38s
39:	learn: 23.7192013	total: 903ms	remaining: 1.35s
40:	learn: 23.4131644	total: 927ms	remaining: 1.33s
41:	learn: 23.0871679	total: 955ms	remaining: 1.32s
42:	learn: 22.8237273	total: 983ms	remaining: 1.3s
43:	learn: 22.5691307	total: 1.01s	remaining: 1.28s
44:	learn: 22.3341037	total: 1.03s	remaining: 1.26s
45:	learn: 22.0782394	total: 1.05s	remaining: 1.24s
46:	learn: 21.8287260	total: 1.08s	remaining: 1.21s
47:	learn: 21.4945293	total: 1.1s	remaining: 1.19s
48:	learn: 21.2779027	total: 1.12s	remaining: 1.17s
49:	learn: 21.0183245	total: 1.15s	remaining: 1.15s
50:	learn: 20.8304059	total: 1.17s	remaining: 1.12s
51:	learn: 20.6505224	total: 1.19s	remaining: 1.1s
52:	learn: 20.4434302	total: 1.22s	remaining: 1.08s
53:	learn: 20.2358596	total: 1.24s	remaining: 1.05s
54:	learn: 19.9248895	total: 1.26s	remaining: 1.03s
55:	learn: 19.6402054	total: 1.28s	remaining: 1.01s
56:	learn: 19.4863996	total: 1.3s	remaining: 984ms
57:	learn: 19.2820242	total: 1.32s	remaining: 959ms
58:	learn: 19.0309684	total: 1.34s	remaining: 935ms
59:	learn: 18.9156855	total: 1.37s	remaining: 913ms
60:	learn: 18.7362124	total: 1.4s	remaining: 894ms
61:	learn: 18.5327109	total: 1.42s	remaining: 873ms
62:	learn: 18.3473379	total: 1.45s	remaining: 851ms
63:	learn: 18.1447985	total: 1.47s	remaining: 828ms
64:	learn: 17.9782680	total: 1.49s	remaining: 805ms
65:	learn: 17.7731055	total: 1.52s	remaining: 782ms
66:	learn: 17.6666871	total: 1.54s	remaining: 759ms
67:	learn: 17.4893685	total: 1.56s	remaining: 735ms
68:	learn: 17.4081271	total: 1.58s	remaining: 712ms
69:	learn: 17.2768910	total: 1.61s	remaining: 691ms
70:	learn: 17.1686736	total: 1.64s	remaining: 668ms
71:	learn: 17.0306633	total: 1.66s	remaining: 644ms
72:	learn: 16.8387254	total: 1.68s	remaining: 620ms
73:	learn: 16.6835666	total: 1.7s	remaining: 596ms
74:	learn: 16.5275101	total: 1.71s	remaining: 571ms
75:	learn: 16.3788685	total: 1.74s	remaining: 548ms
76:	learn: 16.2632053	total: 1.75s	remaining: 524ms
77:	learn: 16.1434405	total: 1.77s	remaining: 501ms
78:	learn: 16.0439065	total: 1.8s	remaining: 478ms
79:	learn: 15.9662547	total: 1.82s	remaining: 455ms
80:	learn: 15.8312242	total: 1.85s	remaining: 434ms
81:	learn: 15.7325519	total: 1.87s	remaining: 411ms
82:	learn: 15.5842095	total: 1.9s	remaining: 388ms
83:	learn: 15.4773774	total: 1.92s	remaining: 365ms
84:	learn: 15.3840131	total: 1.94s	remaining: 342ms
85:	learn: 15.2543240	total: 1.96s	remaining: 319ms
86:	learn: 15.1770733	total: 1.98s	remaining: 296ms
87:	learn: 15.0601980	total: 2s	remaining: 272ms
88:	learn: 14.9710854	total: 2.02s	remaining: 250ms
89:	learn: 14.8071359	total: 2.04s	remaining: 227ms
90:	learn: 14.6765600	total: 2.07s	remaining: 205ms
91:	learn: 14.6006761	total: 2.09s	remaining: 182ms
92:	learn: 14.4927442	total: 2.11s	remaining: 159ms
93:	learn: 14.3676298	total: 2.13s	remaining: 136ms
94:	learn: 14.2821814	total: 2.15s	remaining: 113ms
95:	learn: 14.1977772	total: 2.17s	remaining: 90.6ms
96:	learn: 14.0716572	total: 2.2s	remaining: 67.9ms
97:	learn: 13.9596234	total: 2.22s	remaining: 45.3ms
98:	learn: 13.8995436	total: 2.24s	remaining: 22.6ms
99:	learn: 13.8034385	total: 2.26s	remaining: 0us
0:	learn: 27.5396669	total: 2ms	remaining: 198ms
1:	learn: 27.0711196	total: 3.58ms	remaining: 175ms
2:	learn: 26.7462899	total: 5.05ms	remaining: 163ms
3:	learn: 26.3889740	total: 6.47ms	remaining: 155ms
4:	learn: 26.0454949	total: 8.26ms	remaining: 157ms
5:	learn: 25.6379887	total: 9.84ms	remaining: 154ms
6:	learn: 25.3078228	total: 11.3ms	remaining: 151ms
7:	learn: 25.0053100	total: 12.7ms	remaining: 146ms
8:	learn: 24.7065110	total: 14.2ms	remaining: 144ms
9:	learn: 24.4255226	total: 15.6ms	remaining: 141ms
10:	learn: 24.0933348	total: 17.1ms	remaining: 138ms
11:	learn: 23.8483245	total: 18.5ms	remaining: 135ms
12:	learn: 23.6206636	total: 19.9ms	remaining: 133ms
13:	learn: 23.2922409	total: 21.2ms	remaining: 130ms
14:	learn: 23.0921688	total: 22.5ms	remaining: 127ms
15:	learn: 22.8859744	total: 23.8ms	remaining: 125ms
16:	learn: 22.6507414	total: 25.4ms	remaining: 124ms
17:	learn: 22.4275526	total: 27ms	remaining: 123ms
18:	learn: 22.2482577	total: 28.5ms	remaining: 121ms
19:	learn: 22.0728028	total: 30ms	remaining: 120ms
20:	learn: 21.8632088	total: 31.7ms	remaining: 119ms
21:	learn: 21.7136685	total: 33.5ms	remaining: 119ms
22:	learn: 21.4990130	total: 34.9ms	remaining: 117ms
23:	learn: 21.2603930	total: 36.3ms	remaining: 115ms
24:	learn: 21.0156291	total: 37.5ms	remaining: 113ms
25:	learn: 20.8324243	total: 38.7ms	remaining: 110ms
26:	learn: 20.6486014	total: 40ms	remaining: 108ms
27:	learn: 20.4653098	total: 41.4ms	remaining: 106ms
28:	learn: 20.2517031	total: 42.7ms	remaining: 105ms
29:	learn: 20.0901141	total: 43.9ms	remaining: 103ms
30:	learn: 19.9448720	total: 45.1ms	remaining: 100ms
31:	learn: 19.8092363	total: 46.5ms	remaining: 98.7ms
32:	learn: 19.6433245	total: 47.8ms	remaining: 97ms
33:	learn: 19.5094619	total: 49ms	remaining: 95.2ms
34:	learn: 19.3969342	total: 50.3ms	remaining: 93.5ms
35:	learn: 19.2936512	total: 51.6ms	remaining: 91.7ms
36:	learn: 19.1767015	total: 52.8ms	remaining: 89.9ms
37:	learn: 19.0124800	total: 54ms	remaining: 88.1ms
38:	learn: 18.8704042	total: 55.2ms	remaining: 86.3ms
39:	learn: 18.7979750	total: 56.4ms	remaining: 84.6ms
40:	learn: 18.6894469	total: 57.6ms	remaining: 82.9ms
41:	learn: 18.5339705	total: 59.1ms	remaining: 81.6ms
42:	learn: 18.4104127	total: 60.3ms	remaining: 80ms
43:	learn: 18.2671840	total: 61.7ms	remaining: 78.5ms
44:	learn: 18.1898954	total: 62.9ms	remaining: 76.9ms
45:	learn: 18.0778917	total: 64.2ms	remaining: 75.3ms
46:	learn: 17.9742755	total: 65.5ms	remaining: 73.9ms
47:	learn: 17.8715751	total: 66.8ms	remaining: 72.4ms
48:	learn: 17.7802309	total: 68.1ms	remaining: 70.9ms
49:	learn: 17.6538567	total: 69.4ms	remaining: 69.4ms
50:	learn: 17.5783755	total: 70.6ms	remaining: 67.8ms
51:	learn: 17.4828039	total: 71.8ms	remaining: 66.3ms
52:	learn: 17.4113566	total: 73.1ms	remaining: 64.8ms
53:	learn: 17.3288316	total: 74.4ms	remaining: 63.4ms
54:	learn: 17.2467366	total: 75.8ms	remaining: 62ms
55:	learn: 17.1835351	total: 77ms	remaining: 60.5ms
56:	learn: 17.1099250	total: 78.4ms	remaining: 59.1ms
57:	learn: 17.0125026	total: 79.7ms	remaining: 57.7ms
58:	learn: 16.9632634	total: 80.9ms	remaining: 56.2ms
59:	learn: 16.8418169	total: 82.1ms	remaining: 54.7ms
60:	learn: 16.8014640	total: 83.4ms	remaining: 53.3ms
61:	learn: 16.7378790	total: 84.6ms	remaining: 51.9ms
62:	learn: 16.6702723	total: 85.8ms	remaining: 50.4ms
63:	learn: 16.5860445	total: 87.1ms	remaining: 49ms
64:	learn: 16.5555219	total: 88.3ms	remaining: 47.6ms
65:	learn: 16.5017286	total: 89.6ms	remaining: 46.1ms
66:	learn: 16.4670034	total: 90.9ms	remaining: 44.8ms
67:	learn: 16.4166623	total: 92.3ms	remaining: 43.4ms
68:	learn: 16.3600109	total: 93.5ms	remaining: 42ms
69:	learn: 16.2612093	total: 94.9ms	remaining: 40.7ms
70:	learn: 16.2433137	total: 96.2ms	remaining: 39.3ms
71:	learn: 16.1910263	total: 97.5ms	remaining: 37.9ms
72:	learn: 16.1217878	total: 98.8ms	remaining: 36.5ms
73:	learn: 16.0458991	total: 100ms	remaining: 35.1ms
74:	learn: 15.9835877	total: 101ms	remaining: 33.8ms
75:	learn: 15.9357219	total: 103ms	remaining: 32.5ms
76:	learn: 15.8724556	total: 104ms	remaining: 31.1ms
77:	learn: 15.8140222	total: 105ms	remaining: 29.7ms
78:	learn: 15.7865227	total: 107ms	remaining: 28.4ms
79:	learn: 15.7244499	total: 108ms	remaining: 27ms
80:	learn: 15.6879106	total: 109ms	remaining: 25.7ms
81:	learn: 15.6296104	total: 111ms	remaining: 24.3ms
82:	learn: 15.5666712	total: 112ms	remaining: 23ms
83:	learn: 15.4904472	total: 113ms	remaining: 21.6ms
84:	learn: 15.4451518	total: 115ms	remaining: 20.2ms
85:	learn: 15.3831808	total: 116ms	remaining: 18.9ms
86:	learn: 15.3516180	total: 117ms	remaining: 17.5ms
87:	learn: 15.3347957	total: 118ms	remaining: 16.1ms
88:	learn: 15.2950036	total: 120ms	remaining: 14.8ms
89:	learn: 15.2713057	total: 121ms	remaining: 13.4ms
90:	learn: 15.2435112	total: 122ms	remaining: 12.1ms
91:	learn: 15.2016893	total: 124ms	remaining: 10.8ms
92:	learn: 15.1300259	total: 125ms	remaining: 9.4ms
93:	learn: 15.1100842	total: 126ms	remaining: 8.07ms
94:	learn: 15.0536701	total: 128ms	remaining: 6.72ms
95:	learn: 15.0164869	total: 130ms	remaining: 5.4ms
96:	learn: 14.9612179	total: 132ms	remaining: 4.07ms
97:	learn: 14.9125935	total: 133ms	remaining: 2.72ms
98:	learn: 14.8799048	total: 135ms	remaining: 1.36ms
99:	learn: 14.8420890	total: 137ms	remaining: 0us
0:	learn: 43.0053311	total: 1.5ms	remaining: 148ms
1:	learn: 42.0239625	total: 2.76ms	remaining: 135ms
2:	learn: 41.1030003	total: 4.21ms	remaining: 136ms
3:	learn: 40.3772208	total: 5.49ms	remaining: 132ms
4:	learn: 39.5285394	total: 6.72ms	remaining: 128ms
5:	learn: 38.8846904	total: 7.85ms	remaining: 123ms
6:	learn: 38.0874915	total: 9.01ms	remaining: 120ms
7:	learn: 37.2874302	total: 10.3ms	remaining: 118ms
8:	learn: 36.6773271	total: 11.5ms	remaining: 116ms
9:	learn: 35.8988723	total: 12.7ms	remaining: 115ms
10:	learn: 35.2421951	total: 13.9ms	remaining: 112ms
11:	learn: 34.6974421	total: 15.1ms	remaining: 111ms
12:	learn: 33.9803216	total: 16.3ms	remaining: 109ms
13:	learn: 33.2894316	total: 17.5ms	remaining: 107ms
14:	learn: 32.8509600	total: 18.7ms	remaining: 106ms
15:	learn: 32.2785817	total: 20ms	remaining: 105ms
16:	learn: 31.6455283	total: 21.3ms	remaining: 104ms
17:	learn: 31.1621398	total: 22.5ms	remaining: 103ms
18:	learn: 30.6948657	total: 23.8ms	remaining: 101ms
19:	learn: 30.2696759	total: 25ms	remaining: 100ms
20:	learn: 29.7990443	total: 26.2ms	remaining: 98.6ms
21:	learn: 29.3120464	total: 27.4ms	remaining: 97.3ms
22:	learn: 28.8520090	total: 28.5ms	remaining: 95.6ms
23:	learn: 28.4516277	total: 29.7ms	remaining: 94.1ms
24:	learn: 27.9805220	total: 30.9ms	remaining: 92.7ms
25:	learn: 27.5120013	total: 32.3ms	remaining: 92ms
26:	learn: 27.1140024	total: 33.7ms	remaining: 91.2ms
27:	learn: 26.8120668	total: 35.1ms	remaining: 90.2ms
28:	learn: 26.4659360	total: 36.4ms	remaining: 89ms
29:	learn: 26.1004005	total: 37.8ms	remaining: 88.2ms
30:	learn: 25.7313823	total: 39ms	remaining: 86.8ms
31:	learn: 25.4182130	total: 40.3ms	remaining: 85.6ms
32:	learn: 25.2047643	total: 41.5ms	remaining: 84.2ms
33:	learn: 24.9811895	total: 42.7ms	remaining: 82.9ms
34:	learn: 24.6834284	total: 44ms	remaining: 81.7ms
35:	learn: 24.3576937	total: 45.3ms	remaining: 80.5ms
36:	learn: 24.1026830	total: 46.6ms	remaining: 79.3ms
37:	learn: 23.8848222	total: 47.9ms	remaining: 78.1ms
38:	learn: 23.6646521	total: 49.1ms	remaining: 76.8ms
39:	learn: 23.4774417	total: 50.3ms	remaining: 75.4ms
40:	learn: 23.2957217	total: 51.5ms	remaining: 74.1ms
41:	learn: 23.0902748	total: 52.8ms	remaining: 72.9ms
42:	learn: 22.9141327	total: 54.1ms	remaining: 71.7ms
43:	learn: 22.6661361	total: 55.4ms	remaining: 70.5ms
44:	learn: 22.4669869	total: 56.6ms	remaining: 69.2ms
45:	learn: 22.3018496	total: 57.8ms	remaining: 67.8ms
46:	learn: 22.1164541	total: 59ms	remaining: 66.5ms
47:	learn: 21.9166860	total: 60.3ms	remaining: 65.3ms
48:	learn: 21.7309627	total: 61.6ms	remaining: 64.1ms
49:	learn: 21.5925245	total: 62.7ms	remaining: 62.7ms
50:	learn: 21.4391920	total: 63.9ms	remaining: 61.4ms
51:	learn: 21.2627368	total: 65.2ms	remaining: 60.2ms
52:	learn: 21.1393465	total: 66.4ms	remaining: 58.9ms
53:	learn: 21.0307989	total: 67.7ms	remaining: 57.7ms
54:	learn: 20.9650666	total: 69ms	remaining: 56.4ms
55:	learn: 20.8329784	total: 70.1ms	remaining: 55.1ms
56:	learn: 20.6897421	total: 71.4ms	remaining: 53.8ms
57:	learn: 20.5437642	total: 72.5ms	remaining: 52.5ms
58:	learn: 20.4456457	total: 73.8ms	remaining: 51.3ms
59:	learn: 20.3198670	total: 75.2ms	remaining: 50.1ms
60:	learn: 20.2266012	total: 76.4ms	remaining: 48.8ms
61:	learn: 20.1117397	total: 77.6ms	remaining: 47.5ms
62:	learn: 20.0287866	total: 78.8ms	remaining: 46.3ms
63:	learn: 19.9336125	total: 80.1ms	remaining: 45ms
64:	learn: 19.8386945	total: 81.4ms	remaining: 43.8ms
65:	learn: 19.7723203	total: 82.6ms	remaining: 42.6ms
66:	learn: 19.7086882	total: 83.9ms	remaining: 41.3ms
67:	learn: 19.6214223	total: 85.1ms	remaining: 40.1ms
68:	learn: 19.5646939	total: 86.3ms	remaining: 38.8ms
69:	learn: 19.4647185	total: 87.6ms	remaining: 37.5ms
70:	learn: 19.3928476	total: 88.8ms	remaining: 36.3ms
71:	learn: 19.2916814	total: 90ms	remaining: 35ms
72:	learn: 19.1881737	total: 91.1ms	remaining: 33.7ms
73:	learn: 19.1104643	total: 92.3ms	remaining: 32.4ms
74:	learn: 19.0297834	total: 93.4ms	remaining: 31.1ms
75:	learn: 18.9455314	total: 94.6ms	remaining: 29.9ms
76:	learn: 18.8565548	total: 95.8ms	remaining: 28.6ms
77:	learn: 18.7985754	total: 97.1ms	remaining: 27.4ms
78:	learn: 18.7085717	total: 98.4ms	remaining: 26.1ms
79:	learn: 18.6187703	total: 99.6ms	remaining: 24.9ms
80:	learn: 18.5593491	total: 101ms	remaining: 23.7ms
81:	learn: 18.5049072	total: 102ms	remaining: 22.4ms
82:	learn: 18.4236743	total: 103ms	remaining: 21.2ms
83:	learn: 18.3782839	total: 105ms	remaining: 19.9ms
84:	learn: 18.3255876	total: 106ms	remaining: 18.7ms
85:	learn: 18.2408841	total: 107ms	remaining: 17.4ms
86:	learn: 18.1768990	total: 108ms	remaining: 16.2ms
87:	learn: 18.1082002	total: 110ms	remaining: 14.9ms
88:	learn: 18.0377700	total: 111ms	remaining: 13.7ms
89:	learn: 18.0130218	total: 112ms	remaining: 12.4ms
90:	learn: 17.9709653	total: 113ms	remaining: 11.2ms
91:	learn: 17.8890205	total: 114ms	remaining: 9.94ms
92:	learn: 17.8792580	total: 115ms	remaining: 8.69ms
93:	learn: 17.8209868	total: 117ms	remaining: 7.44ms
94:	learn: 17.7571297	total: 118ms	remaining: 6.2ms
95:	learn: 17.6848040	total: 119ms	remaining: 4.96ms
96:	learn: 17.6198628	total: 120ms	remaining: 3.71ms
97:	learn: 17.5571832	total: 121ms	remaining: 2.48ms
98:	learn: 17.5466369	total: 123ms	remaining: 1.24ms
99:	learn: 17.5114502	total: 124ms	remaining: 0us
0:	learn: 46.6074068	total: 1.4ms	remaining: 138ms
1:	learn: 45.8496006	total: 2.75ms	remaining: 135ms
2:	learn: 45.2354594	total: 4.11ms	remaining: 133ms
3:	learn: 44.5261088	total: 5.43ms	remaining: 130ms
4:	learn: 43.8098278	total: 6.77ms	remaining: 129ms
5:	learn: 43.0569602	total: 8.08ms	remaining: 127ms
6:	learn: 42.3137394	total: 9.41ms	remaining: 125ms
7:	learn: 41.8335666	total: 10.8ms	remaining: 124ms
8:	learn: 41.2921489	total: 12ms	remaining: 121ms
9:	learn: 40.7149691	total: 13.8ms	remaining: 124ms
10:	learn: 39.9277062	total: 17ms	remaining: 138ms
11:	learn: 39.2504313	total: 19ms	remaining: 139ms
12:	learn: 38.6625180	total: 21.2ms	remaining: 142ms
13:	learn: 38.1961525	total: 23.3ms	remaining: 143ms
14:	learn: 37.5585738	total: 35.9ms	remaining: 203ms
15:	learn: 36.9806821	total: 37.5ms	remaining: 197ms
16:	learn: 36.3146356	total: 39.2ms	remaining: 192ms
17:	learn: 35.7283727	total: 41.6ms	remaining: 190ms
18:	learn: 35.2399137	total: 43.9ms	remaining: 187ms
19:	learn: 34.9252247	total: 45.4ms	remaining: 181ms
20:	learn: 34.4172641	total: 46.9ms	remaining: 176ms
21:	learn: 33.9218104	total: 48.3ms	remaining: 171ms
22:	learn: 33.3349137	total: 49.7ms	remaining: 166ms
23:	learn: 32.8550596	total: 51.3ms	remaining: 162ms
24:	learn: 32.3963132	total: 52.8ms	remaining: 158ms
25:	learn: 32.1380456	total: 54.2ms	remaining: 154ms
26:	learn: 31.8903131	total: 55.7ms	remaining: 150ms
27:	learn: 31.5828553	total: 57.1ms	remaining: 147ms
28:	learn: 31.3056708	total: 58.5ms	remaining: 143ms
29:	learn: 30.9248794	total: 60ms	remaining: 140ms
30:	learn: 30.5603460	total: 61.3ms	remaining: 137ms
31:	learn: 30.2457444	total: 62.8ms	remaining: 134ms
32:	learn: 29.9848454	total: 64.6ms	remaining: 131ms
33:	learn: 29.5184386	total: 66.3ms	remaining: 129ms
34:	learn: 29.2613930	total: 67.7ms	remaining: 126ms
35:	learn: 28.9067981	total: 69.4ms	remaining: 123ms
36:	learn: 28.6506758	total: 70.8ms	remaining: 121ms
37:	learn: 28.3752310	total: 72.6ms	remaining: 119ms
38:	learn: 28.0949087	total: 74.3ms	remaining: 116ms
39:	learn: 27.9923595	total: 75.7ms	remaining: 114ms
40:	learn: 27.7196177	total: 77.1ms	remaining: 111ms
41:	learn: 27.4452872	total: 78.5ms	remaining: 108ms
42:	learn: 27.2277329	total: 79.9ms	remaining: 106ms
43:	learn: 26.9337091	total: 81.3ms	remaining: 103ms
44:	learn: 26.7927632	total: 82.6ms	remaining: 101ms
45:	learn: 26.6440337	total: 83.9ms	remaining: 98.5ms
46:	learn: 26.4163087	total: 85.4ms	remaining: 96.3ms
47:	learn: 26.2359345	total: 87.4ms	remaining: 94.7ms
48:	learn: 26.0839781	total: 89.3ms	remaining: 93ms
49:	learn: 26.0074843	total: 91ms	remaining: 91ms
50:	learn: 25.8898461	total: 92.4ms	remaining: 88.8ms
51:	learn: 25.7699020	total: 94.1ms	remaining: 86.9ms
52:	learn: 25.5940202	total: 95.6ms	remaining: 84.8ms
53:	learn: 25.3201765	total: 96.9ms	remaining: 82.6ms
54:	learn: 25.1052751	total: 98.2ms	remaining: 80.3ms
55:	learn: 24.9461875	total: 99.3ms	remaining: 78ms
56:	learn: 24.8024818	total: 101ms	remaining: 76ms
57:	learn: 24.6094808	total: 102ms	remaining: 73.8ms
58:	learn: 24.4583256	total: 103ms	remaining: 71.7ms
59:	learn: 24.2083139	total: 104ms	remaining: 69.5ms
60:	learn: 24.0649998	total: 106ms	remaining: 67.5ms
61:	learn: 23.9822219	total: 107ms	remaining: 65.5ms
62:	learn: 23.8769027	total: 108ms	remaining: 63.5ms
63:	learn: 23.6715310	total: 109ms	remaining: 61.5ms
64:	learn: 23.5595595	total: 111ms	remaining: 59.5ms
65:	learn: 23.4166147	total: 112ms	remaining: 57.6ms
66:	learn: 23.2582057	total: 113ms	remaining: 55.6ms
67:	learn: 23.0974656	total: 114ms	remaining: 53.8ms
68:	learn: 22.9791854	total: 115ms	remaining: 51.9ms
69:	learn: 22.8652498	total: 117ms	remaining: 50ms
70:	learn: 22.7360703	total: 118ms	remaining: 48.1ms
71:	learn: 22.6802644	total: 119ms	remaining: 46.3ms
72:	learn: 22.5538402	total: 120ms	remaining: 44.5ms
73:	learn: 22.4076395	total: 121ms	remaining: 42.7ms
74:	learn: 22.3831299	total: 123ms	remaining: 41ms
75:	learn: 22.2246561	total: 124ms	remaining: 39.2ms
76:	learn: 22.1392381	total: 125ms	remaining: 37.5ms
77:	learn: 22.0753998	total: 127ms	remaining: 35.7ms
78:	learn: 21.9871709	total: 128ms	remaining: 34ms
79:	learn: 21.9266311	total: 129ms	remaining: 32.3ms
80:	learn: 21.8699159	total: 130ms	remaining: 30.6ms
81:	learn: 21.7234760	total: 132ms	remaining: 28.9ms
82:	learn: 21.6334590	total: 133ms	remaining: 27.2ms
83:	learn: 21.5025328	total: 134ms	remaining: 25.5ms
84:	learn: 21.3813020	total: 135ms	remaining: 23.9ms
85:	learn: 21.2702525	total: 136ms	remaining: 22.2ms
86:	learn: 21.2368103	total: 138ms	remaining: 20.6ms
87:	learn: 21.1377121	total: 139ms	remaining: 19ms
88:	learn: 21.0039796	total: 140ms	remaining: 17.4ms
89:	learn: 20.9596608	total: 142ms	remaining: 15.7ms
90:	learn: 20.8929363	total: 143ms	remaining: 14.1ms
91:	learn: 20.8701561	total: 144ms	remaining: 12.5ms
92:	learn: 20.7424119	total: 145ms	remaining: 10.9ms
93:	learn: 20.6604399	total: 147ms	remaining: 9.35ms
94:	learn: 20.5911098	total: 148ms	remaining: 7.77ms
95:	learn: 20.4993176	total: 149ms	remaining: 6.2ms
96:	learn: 20.4264961	total: 150ms	remaining: 4.64ms
97:	learn: 20.3333721	total: 151ms	remaining: 3.09ms
98:	learn: 20.2810811	total: 153ms	remaining: 1.54ms
99:	learn: 20.2357826	total: 154ms	remaining: 0us
0:	learn: 46.0709575	total: 1.34ms	remaining: 132ms
1:	learn: 45.3080435	total: 2.52ms	remaining: 124ms
2:	learn: 44.4280378	total: 3.72ms	remaining: 120ms
3:	learn: 43.6532211	total: 4.87ms	remaining: 117ms
4:	learn: 43.0220398	total: 6.14ms	remaining: 117ms
5:	learn: 42.3125518	total: 7.25ms	remaining: 114ms
6:	learn: 41.5705990	total: 8.52ms	remaining: 113ms
7:	learn: 40.9033720	total: 9.96ms	remaining: 115ms
8:	learn: 40.4222182	total: 11.3ms	remaining: 114ms
9:	learn: 39.8244330	total: 12.5ms	remaining: 113ms
10:	learn: 39.2127156	total: 13.8ms	remaining: 111ms
11:	learn: 38.6536958	total: 14.9ms	remaining: 110ms
12:	learn: 38.2111805	total: 16.2ms	remaining: 108ms
13:	learn: 37.6429965	total: 17.3ms	remaining: 106ms
14:	learn: 37.1610161	total: 18.5ms	remaining: 105ms
15:	learn: 36.5832678	total: 19.8ms	remaining: 104ms
16:	learn: 36.1403033	total: 21.3ms	remaining: 104ms
17:	learn: 35.5196906	total: 22.5ms	remaining: 102ms
18:	learn: 35.0546005	total: 23.6ms	remaining: 101ms
19:	learn: 34.4514322	total: 24.8ms	remaining: 99.1ms
20:	learn: 33.9877784	total: 25.9ms	remaining: 97.5ms
21:	learn: 33.6442602	total: 27.3ms	remaining: 96.7ms
22:	learn: 33.2409783	total: 28.5ms	remaining: 95.5ms
23:	learn: 32.9516432	total: 29.8ms	remaining: 94.2ms
24:	learn: 32.4903536	total: 31ms	remaining: 93.1ms
25:	learn: 32.0441543	total: 32.2ms	remaining: 91.7ms
26:	learn: 31.7266413	total: 33.4ms	remaining: 90.3ms
27:	learn: 31.4745738	total: 34.7ms	remaining: 89.3ms
28:	learn: 31.2113721	total: 36ms	remaining: 88.1ms
29:	learn: 30.8650894	total: 37.3ms	remaining: 87ms
30:	learn: 30.5994275	total: 38.6ms	remaining: 85.9ms
31:	learn: 30.2533497	total: 39.9ms	remaining: 84.8ms
32:	learn: 30.0226357	total: 41.2ms	remaining: 83.6ms
33:	learn: 29.6680750	total: 42.5ms	remaining: 82.5ms
34:	learn: 29.4259058	total: 43.9ms	remaining: 81.5ms
35:	learn: 29.1863115	total: 45.2ms	remaining: 80.3ms
36:	learn: 28.9553548	total: 46.5ms	remaining: 79.1ms
37:	learn: 28.7322310	total: 47.8ms	remaining: 78ms
38:	learn: 28.5005636	total: 49.1ms	remaining: 76.8ms
39:	learn: 28.2605292	total: 50.4ms	remaining: 75.6ms
40:	learn: 28.1085921	total: 51.8ms	remaining: 74.5ms
41:	learn: 27.8395526	total: 53.2ms	remaining: 73.5ms
42:	learn: 27.7211327	total: 54.6ms	remaining: 72.3ms
43:	learn: 27.4504176	total: 55.8ms	remaining: 71ms
44:	learn: 27.3505477	total: 57.1ms	remaining: 69.8ms
45:	learn: 26.9910896	total: 58.4ms	remaining: 68.6ms
46:	learn: 26.7973471	total: 60.1ms	remaining: 67.7ms
47:	learn: 26.5915932	total: 63.6ms	remaining: 68.9ms
48:	learn: 26.4143720	total: 65.6ms	remaining: 68.2ms
49:	learn: 26.3644490	total: 67.5ms	remaining: 67.5ms
50:	learn: 26.2523195	total: 69.5ms	remaining: 66.8ms
51:	learn: 26.0712146	total: 71.5ms	remaining: 66ms
52:	learn: 25.9400804	total: 73.3ms	remaining: 65ms
53:	learn: 25.8481212	total: 74.9ms	remaining: 63.8ms
54:	learn: 25.7209987	total: 76.6ms	remaining: 62.7ms
55:	learn: 25.6429720	total: 78.4ms	remaining: 61.6ms
56:	learn: 25.5102707	total: 80.2ms	remaining: 60.5ms
57:	learn: 25.3142072	total: 81.7ms	remaining: 59.2ms
58:	learn: 25.1826732	total: 83.1ms	remaining: 57.8ms
59:	learn: 25.0370887	total: 84.4ms	remaining: 56.3ms
60:	learn: 24.9072184	total: 86.1ms	remaining: 55.1ms
61:	learn: 24.8634327	total: 87.6ms	remaining: 53.7ms
62:	learn: 24.7213499	total: 88.9ms	remaining: 52.2ms
63:	learn: 24.5471121	total: 90.1ms	remaining: 50.7ms
64:	learn: 24.3607859	total: 91.2ms	remaining: 49.1ms
65:	learn: 24.3012330	total: 92.5ms	remaining: 47.7ms
66:	learn: 24.1680354	total: 93.8ms	remaining: 46.2ms
67:	learn: 24.0121232	total: 95ms	remaining: 44.7ms
68:	learn: 23.9038949	total: 96.3ms	remaining: 43.3ms
69:	learn: 23.8038761	total: 97.6ms	remaining: 41.8ms
70:	learn: 23.6826454	total: 98.8ms	remaining: 40.3ms
71:	learn: 23.5306004	total: 100ms	remaining: 38.9ms
72:	learn: 23.4074484	total: 101ms	remaining: 37.4ms
73:	learn: 23.2818633	total: 102ms	remaining: 36ms
74:	learn: 23.1664660	total: 104ms	remaining: 34.5ms
75:	learn: 23.0355231	total: 105ms	remaining: 33.1ms
76:	learn: 22.9491379	total: 106ms	remaining: 31.7ms
77:	learn: 22.8762202	total: 107ms	remaining: 30.3ms
78:	learn: 22.7930168	total: 109ms	remaining: 28.9ms
79:	learn: 22.6945773	total: 110ms	remaining: 27.5ms
80:	learn: 22.6144831	total: 111ms	remaining: 26.1ms
81:	learn: 22.5288060	total: 113ms	remaining: 24.7ms
82:	learn: 22.4756829	total: 114ms	remaining: 23.3ms
83:	learn: 22.4040653	total: 115ms	remaining: 22ms
84:	learn: 22.3500837	total: 117ms	remaining: 20.6ms
85:	learn: 22.2807715	total: 118ms	remaining: 19.2ms
86:	learn: 22.2066189	total: 119ms	remaining: 17.8ms
87:	learn: 22.0773233	total: 120ms	remaining: 16.4ms
88:	learn: 21.9443679	total: 121ms	remaining: 15ms
89:	learn: 21.9189100	total: 123ms	remaining: 13.6ms
90:	learn: 21.8890882	total: 124ms	remaining: 12.2ms
91:	learn: 21.8244969	total: 125ms	remaining: 10.9ms
92:	learn: 21.7198126	total: 126ms	remaining: 9.49ms
93:	learn: 21.6638826	total: 127ms	remaining: 8.13ms
94:	learn: 21.6012969	total: 129ms	remaining: 6.77ms
95:	learn: 21.5834938	total: 130ms	remaining: 5.41ms
96:	learn: 21.5216755	total: 131ms	remaining: 4.05ms
97:	learn: 21.4379267	total: 132ms	remaining: 2.7ms
98:	learn: 21.4228194	total: 133ms	remaining: 1.35ms
99:	learn: 21.3450022	total: 135ms	remaining: 0us
0:	learn: 46.7615100	total: 1.44ms	remaining: 143ms
1:	learn: 45.8786592	total: 2.71ms	remaining: 133ms
2:	learn: 44.9643893	total: 4ms	remaining: 129ms
3:	learn: 44.1579612	total: 5.26ms	remaining: 126ms
4:	learn: 43.5334961	total: 6.51ms	remaining: 124ms
5:	learn: 42.7675564	total: 7.72ms	remaining: 121ms
6:	learn: 42.0636134	total: 8.87ms	remaining: 118ms
7:	learn: 41.4826596	total: 10.1ms	remaining: 116ms
8:	learn: 41.0037954	total: 11.3ms	remaining: 114ms
9:	learn: 40.3590188	total: 12.4ms	remaining: 112ms
10:	learn: 39.6815163	total: 13.6ms	remaining: 110ms
11:	learn: 39.1429112	total: 14.8ms	remaining: 109ms
12:	learn: 38.6834999	total: 16ms	remaining: 107ms
13:	learn: 38.0686328	total: 17.1ms	remaining: 105ms
14:	learn: 37.6058931	total: 18.4ms	remaining: 104ms
15:	learn: 37.0469277	total: 19.6ms	remaining: 103ms
16:	learn: 36.4816649	total: 20.7ms	remaining: 101ms
17:	learn: 35.9335814	total: 21.9ms	remaining: 99.6ms
18:	learn: 35.4397240	total: 23ms	remaining: 98.1ms
19:	learn: 34.9578079	total: 24.2ms	remaining: 96.8ms
20:	learn: 34.6387869	total: 25.4ms	remaining: 95.5ms
21:	learn: 34.3270198	total: 26.6ms	remaining: 94.3ms
22:	learn: 33.8220130	total: 27.8ms	remaining: 93.1ms
23:	learn: 33.4424897	total: 28.9ms	remaining: 91.6ms
24:	learn: 33.0763455	total: 30ms	remaining: 90.1ms
25:	learn: 32.6396376	total: 31.3ms	remaining: 89ms
26:	learn: 32.3291978	total: 32.5ms	remaining: 87.9ms
27:	learn: 31.9809138	total: 33.7ms	remaining: 86.6ms
28:	learn: 31.7242800	total: 34.9ms	remaining: 85.3ms
29:	learn: 31.4494254	total: 36.2ms	remaining: 84.5ms
30:	learn: 31.1380464	total: 37.4ms	remaining: 83.3ms
31:	learn: 30.8456635	total: 38.7ms	remaining: 82.2ms
32:	learn: 30.6058287	total: 40ms	remaining: 81.1ms
33:	learn: 30.2425993	total: 41.2ms	remaining: 79.9ms
34:	learn: 29.9549589	total: 42.4ms	remaining: 78.8ms
35:	learn: 29.6907023	total: 43.6ms	remaining: 77.4ms
36:	learn: 29.5117956	total: 44.7ms	remaining: 76.2ms
37:	learn: 29.3037840	total: 45.9ms	remaining: 74.9ms
38:	learn: 29.0719600	total: 47.1ms	remaining: 73.7ms
39:	learn: 28.9042259	total: 48.4ms	remaining: 72.6ms
40:	learn: 28.6479775	total: 49.6ms	remaining: 71.4ms
41:	learn: 28.3606424	total: 51.3ms	remaining: 70.8ms
42:	learn: 28.1638734	total: 52.8ms	remaining: 70ms
43:	learn: 27.9207579	total: 54.1ms	remaining: 68.9ms
44:	learn: 27.7790971	total: 55.5ms	remaining: 67.8ms
45:	learn: 27.6799141	total: 56.8ms	remaining: 66.7ms
46:	learn: 27.5365213	total: 58.2ms	remaining: 65.7ms
47:	learn: 27.3773653	total: 59.5ms	remaining: 64.4ms
48:	learn: 27.1561862	total: 60.8ms	remaining: 63.2ms
49:	learn: 27.0997048	total: 62ms	remaining: 62ms
50:	learn: 26.9547579	total: 63.3ms	remaining: 60.9ms
51:	learn: 26.7939984	total: 64.8ms	remaining: 59.8ms
52:	learn: 26.6326409	total: 66.3ms	remaining: 58.8ms
53:	learn: 26.4624451	total: 67.9ms	remaining: 57.8ms
54:	learn: 26.2923661	total: 69.5ms	remaining: 56.9ms
55:	learn: 26.1658098	total: 71ms	remaining: 55.8ms
56:	learn: 26.0209867	total: 72.6ms	remaining: 54.8ms
57:	learn: 25.8671326	total: 74ms	remaining: 53.6ms
58:	learn: 25.7192646	total: 75.6ms	remaining: 52.5ms
59:	learn: 25.6132249	total: 77.1ms	remaining: 51.4ms
60:	learn: 25.5160209	total: 78.5ms	remaining: 50.2ms
61:	learn: 25.4472180	total: 79.9ms	remaining: 49ms
62:	learn: 25.3494822	total: 81.3ms	remaining: 47.8ms
63:	learn: 25.3029653	total: 82.8ms	remaining: 46.6ms
64:	learn: 25.0863109	total: 84.4ms	remaining: 45.4ms
65:	learn: 25.0178325	total: 86.1ms	remaining: 44.3ms
66:	learn: 24.9390409	total: 87.6ms	remaining: 43.1ms
67:	learn: 24.8270544	total: 89.1ms	remaining: 41.9ms
68:	learn: 24.7219046	total: 90.8ms	remaining: 40.8ms
69:	learn: 24.6403493	total: 94.8ms	remaining: 40.6ms
70:	learn: 24.5430289	total: 97ms	remaining: 39.6ms
71:	learn: 24.5017234	total: 99.2ms	remaining: 38.6ms
72:	learn: 24.4411368	total: 101ms	remaining: 37.5ms
73:	learn: 24.1836983	total: 112ms	remaining: 39.5ms
74:	learn: 24.1278934	total: 114ms	remaining: 38ms
75:	learn: 24.0160938	total: 116ms	remaining: 36.5ms
76:	learn: 23.9354837	total: 117ms	remaining: 35ms
77:	learn: 23.8788468	total: 120ms	remaining: 33.9ms
78:	learn: 23.8623417	total: 122ms	remaining: 32.6ms
79:	learn: 23.8004037	total: 124ms	remaining: 31ms
80:	learn: 23.7143775	total: 125ms	remaining: 29.4ms
81:	learn: 23.5518349	total: 127ms	remaining: 27.9ms
82:	learn: 23.4692344	total: 128ms	remaining: 26.3ms
83:	learn: 23.3632341	total: 130ms	remaining: 24.8ms
84:	learn: 23.2750154	total: 131ms	remaining: 23.2ms
85:	learn: 23.1830489	total: 133ms	remaining: 21.6ms
86:	learn: 23.1004439	total: 134ms	remaining: 20ms
87:	learn: 22.9698626	total: 136ms	remaining: 18.5ms
88:	learn: 22.8249990	total: 137ms	remaining: 17ms
89:	learn: 22.7632398	total: 139ms	remaining: 15.4ms
90:	learn: 22.6933729	total: 141ms	remaining: 13.9ms
91:	learn: 22.6193254	total: 142ms	remaining: 12.4ms
92:	learn: 22.5970262	total: 144ms	remaining: 10.8ms
93:	learn: 22.5707244	total: 145ms	remaining: 9.28ms
94:	learn: 22.4865249	total: 147ms	remaining: 7.72ms
95:	learn: 22.3923951	total: 148ms	remaining: 6.17ms
96:	learn: 22.3220308	total: 150ms	remaining: 4.63ms
97:	learn: 22.2633193	total: 151ms	remaining: 3.08ms
98:	learn: 22.2273383	total: 152ms	remaining: 1.54ms
99:	learn: 22.1945338	total: 154ms	remaining: 0us
0:	learn: 27.6973511	total: 24.5ms	remaining: 7.32s
1:	learn: 27.2958182	total: 49.5ms	remaining: 7.38s
2:	learn: 26.8950527	total: 73.8ms	remaining: 7.31s
3:	learn: 26.4489170	total: 108ms	remaining: 8.01s
4:	learn: 26.1800349	total: 135ms	remaining: 7.95s
5:	learn: 25.7917141	total: 160ms	remaining: 7.83s
6:	learn: 25.5263958	total: 184ms	remaining: 7.7s
7:	learn: 25.2345461	total: 209ms	remaining: 7.62s
8:	learn: 24.8337785	total: 233ms	remaining: 7.54s
9:	learn: 24.5131550	total: 258ms	remaining: 7.47s
10:	learn: 24.2257656	total: 283ms	remaining: 7.44s
11:	learn: 23.9792781	total: 308ms	remaining: 7.4s
12:	learn: 23.6676478	total: 338ms	remaining: 7.47s
13:	learn: 23.4355824	total: 372ms	remaining: 7.61s
14:	learn: 23.2062795	total: 397ms	remaining: 7.55s
15:	learn: 22.9749556	total: 424ms	remaining: 7.52s
16:	learn: 22.7388336	total: 450ms	remaining: 7.5s
17:	learn: 22.5065141	total: 475ms	remaining: 7.45s
18:	learn: 22.2263730	total: 499ms	remaining: 7.38s
19:	learn: 21.9969137	total: 523ms	remaining: 7.32s
20:	learn: 21.7654035	total: 546ms	remaining: 7.25s
21:	learn: 21.5672959	total: 571ms	remaining: 7.21s
22:	learn: 21.3699131	total: 599ms	remaining: 7.22s
23:	learn: 21.1320132	total: 622ms	remaining: 7.16s
24:	learn: 20.8360475	total: 646ms	remaining: 7.11s
25:	learn: 20.6216430	total: 669ms	remaining: 7.05s
26:	learn: 20.4442023	total: 693ms	remaining: 7.01s
27:	learn: 20.2452126	total: 716ms	remaining: 6.96s
28:	learn: 19.9551543	total: 740ms	remaining: 6.92s
29:	learn: 19.7874909	total: 764ms	remaining: 6.88s
30:	learn: 19.6541244	total: 795ms	remaining: 6.89s
31:	learn: 19.4769528	total: 822ms	remaining: 6.89s
32:	learn: 19.2916254	total: 848ms	remaining: 6.86s
33:	learn: 19.1524478	total: 873ms	remaining: 6.83s
34:	learn: 19.0152836	total: 899ms	remaining: 6.81s
35:	learn: 18.7761219	total: 924ms	remaining: 6.77s
36:	learn: 18.6266045	total: 948ms	remaining: 6.74s
37:	learn: 18.4382424	total: 973ms	remaining: 6.71s
38:	learn: 18.3276487	total: 1000ms	remaining: 6.69s
39:	learn: 18.1728115	total: 1.03s	remaining: 6.69s
40:	learn: 18.0412668	total: 1.05s	remaining: 6.65s
41:	learn: 17.8927154	total: 1.08s	remaining: 6.61s
42:	learn: 17.6796203	total: 1.1s	remaining: 6.58s
43:	learn: 17.5396182	total: 1.13s	remaining: 6.55s
44:	learn: 17.3897332	total: 1.15s	remaining: 6.51s
45:	learn: 17.2677742	total: 1.17s	remaining: 6.47s
46:	learn: 17.1204742	total: 1.2s	remaining: 6.44s
47:	learn: 16.9890701	total: 1.23s	remaining: 6.44s
48:	learn: 16.8827846	total: 1.25s	remaining: 6.43s
49:	learn: 16.7657376	total: 1.28s	remaining: 6.4s
50:	learn: 16.6624511	total: 1.3s	remaining: 6.37s
51:	learn: 16.5486117	total: 1.33s	remaining: 6.34s
52:	learn: 16.4000940	total: 1.35s	remaining: 6.31s
53:	learn: 16.3029344	total: 1.38s	remaining: 6.28s
54:	learn: 16.2035733	total: 1.4s	remaining: 6.25s
55:	learn: 16.0437589	total: 1.43s	remaining: 6.23s
56:	learn: 15.9522262	total: 1.46s	remaining: 6.22s
57:	learn: 15.8358267	total: 1.49s	remaining: 6.2s
58:	learn: 15.7214027	total: 1.51s	remaining: 6.17s
59:	learn: 15.5996313	total: 1.54s	remaining: 6.14s
60:	learn: 15.4720290	total: 1.56s	remaining: 6.12s
61:	learn: 15.3836272	total: 1.59s	remaining: 6.09s
62:	learn: 15.2874597	total: 1.61s	remaining: 6.06s
63:	learn: 15.1976492	total: 1.64s	remaining: 6.03s
64:	learn: 15.0909229	total: 1.66s	remaining: 6.01s
65:	learn: 15.0152553	total: 1.7s	remaining: 6.01s
66:	learn: 14.9383045	total: 1.72s	remaining: 5.98s
67:	learn: 14.8359454	total: 1.75s	remaining: 5.96s
68:	learn: 14.7292481	total: 1.77s	remaining: 5.93s
69:	learn: 14.6260226	total: 1.8s	remaining: 5.91s
70:	learn: 14.4936289	total: 1.82s	remaining: 5.88s
71:	learn: 14.4124866	total: 1.85s	remaining: 5.85s
72:	learn: 14.3506411	total: 1.87s	remaining: 5.83s
73:	learn: 14.3003606	total: 1.9s	remaining: 5.81s
74:	learn: 14.2329960	total: 1.93s	remaining: 5.79s
75:	learn: 14.1623742	total: 1.96s	remaining: 5.77s
76:	learn: 14.0963112	total: 1.98s	remaining: 5.74s
77:	learn: 14.0129265	total: 2.01s	remaining: 5.71s
78:	learn: 13.9069448	total: 2.03s	remaining: 5.69s
79:	learn: 13.8583745	total: 2.06s	remaining: 5.66s
80:	learn: 13.8036276	total: 2.09s	remaining: 5.64s
81:	learn: 13.7294653	total: 2.12s	remaining: 5.63s
82:	learn: 13.6421548	total: 2.14s	remaining: 5.6s
83:	learn: 13.5544027	total: 2.17s	remaining: 5.57s
84:	learn: 13.4962426	total: 2.19s	remaining: 5.54s
85:	learn: 13.4236501	total: 2.22s	remaining: 5.52s
86:	learn: 13.3553655	total: 2.24s	remaining: 5.49s
87:	learn: 13.2833189	total: 2.27s	remaining: 5.46s
88:	learn: 13.2153279	total: 2.29s	remaining: 5.43s
89:	learn: 13.1595818	total: 2.32s	remaining: 5.41s
90:	learn: 13.0790280	total: 2.35s	remaining: 5.39s
91:	learn: 13.0059101	total: 2.37s	remaining: 5.37s
92:	learn: 12.9563936	total: 2.4s	remaining: 5.34s
93:	learn: 12.8795347	total: 2.42s	remaining: 5.31s
94:	learn: 12.8232219	total: 2.45s	remaining: 5.29s
95:	learn: 12.7614070	total: 2.47s	remaining: 5.26s
96:	learn: 12.7102421	total: 2.5s	remaining: 5.23s
97:	learn: 12.6436653	total: 2.53s	remaining: 5.21s
98:	learn: 12.5913696	total: 2.55s	remaining: 5.18s
99:	learn: 12.5367726	total: 2.59s	remaining: 5.18s
100:	learn: 12.4852419	total: 2.62s	remaining: 5.16s
101:	learn: 12.4385597	total: 2.65s	remaining: 5.13s
102:	learn: 12.3736476	total: 2.67s	remaining: 5.11s
103:	learn: 12.3247110	total: 2.7s	remaining: 5.08s
104:	learn: 12.2766720	total: 2.72s	remaining: 5.05s
105:	learn: 12.1952428	total: 2.75s	remaining: 5.03s
106:	learn: 12.1331617	total: 2.77s	remaining: 5s
107:	learn: 12.0512166	total: 2.81s	remaining: 4.99s
108:	learn: 11.9992209	total: 2.83s	remaining: 4.97s
109:	learn: 11.9475776	total: 2.86s	remaining: 4.94s
110:	learn: 11.9014821	total: 2.89s	remaining: 4.92s
111:	learn: 11.8707288	total: 2.91s	remaining: 4.89s
112:	learn: 11.8094965	total: 2.94s	remaining: 4.86s
113:	learn: 11.7463043	total: 2.96s	remaining: 4.84s
114:	learn: 11.7007710	total: 2.99s	remaining: 4.81s
115:	learn: 11.6615587	total: 3.02s	remaining: 4.8s
116:	learn: 11.6237977	total: 3.05s	remaining: 4.78s
117:	learn: 11.5616902	total: 3.08s	remaining: 4.75s
118:	learn: 11.4975486	total: 3.1s	remaining: 4.72s
119:	learn: 11.4545682	total: 3.13s	remaining: 4.7s
120:	learn: 11.4025940	total: 3.15s	remaining: 4.67s
121:	learn: 11.3457331	total: 3.18s	remaining: 4.64s
122:	learn: 11.3052810	total: 3.2s	remaining: 4.61s
123:	learn: 11.2420518	total: 3.23s	remaining: 4.59s
124:	learn: 11.1980267	total: 3.26s	remaining: 4.56s
125:	learn: 11.1471837	total: 3.29s	remaining: 4.54s
126:	learn: 11.0933514	total: 3.31s	remaining: 4.51s
127:	learn: 11.0387232	total: 3.33s	remaining: 4.48s
128:	learn: 10.9882800	total: 3.36s	remaining: 4.45s
129:	learn: 10.9217831	total: 3.38s	remaining: 4.42s
130:	learn: 10.8638073	total: 3.4s	remaining: 4.39s
131:	learn: 10.8405452	total: 3.43s	remaining: 4.37s
132:	learn: 10.7843152	total: 3.46s	remaining: 4.35s
133:	learn: 10.7215416	total: 3.49s	remaining: 4.32s
134:	learn: 10.6848770	total: 3.51s	remaining: 4.3s
135:	learn: 10.6386232	total: 3.54s	remaining: 4.27s
136:	learn: 10.5833324	total: 3.56s	remaining: 4.24s
137:	learn: 10.5552164	total: 3.59s	remaining: 4.21s
138:	learn: 10.5095592	total: 3.61s	remaining: 4.18s
139:	learn: 10.4652541	total: 3.64s	remaining: 4.16s
140:	learn: 10.4181327	total: 3.66s	remaining: 4.13s
141:	learn: 10.3570489	total: 3.69s	remaining: 4.11s
142:	learn: 10.3155806	total: 3.72s	remaining: 4.08s
143:	learn: 10.2935116	total: 3.74s	remaining: 4.05s
144:	learn: 10.2490396	total: 3.76s	remaining: 4.02s
145:	learn: 10.2175010	total: 3.79s	remaining: 4s
146:	learn: 10.1861611	total: 3.81s	remaining: 3.97s
147:	learn: 10.1464010	total: 3.83s	remaining: 3.94s
148:	learn: 10.1109588	total: 3.86s	remaining: 3.91s
149:	learn: 10.0820993	total: 3.89s	remaining: 3.89s
150:	learn: 10.0459417	total: 3.92s	remaining: 3.87s
151:	learn: 10.0150499	total: 3.95s	remaining: 3.84s
152:	learn: 9.9616104	total: 3.97s	remaining: 3.81s
153:	learn: 9.9370092	total: 4s	remaining: 3.79s
154:	learn: 9.8880669	total: 4.02s	remaining: 3.76s
155:	learn: 9.8035082	total: 4.04s	remaining: 3.73s
156:	learn: 9.7562049	total: 4.07s	remaining: 3.71s
157:	learn: 9.7188558	total: 4.1s	remaining: 3.68s
158:	learn: 9.6455036	total: 4.13s	remaining: 3.66s
159:	learn: 9.6138052	total: 4.15s	remaining: 3.63s
160:	learn: 9.5876598	total: 4.17s	remaining: 3.6s
161:	learn: 9.5617205	total: 4.2s	remaining: 3.58s
162:	learn: 9.5136300	total: 4.22s	remaining: 3.55s
163:	learn: 9.4854261	total: 4.24s	remaining: 3.52s
164:	learn: 9.4413089	total: 4.27s	remaining: 3.49s
165:	learn: 9.4301555	total: 4.29s	remaining: 3.46s
166:	learn: 9.3696661	total: 4.33s	remaining: 3.45s
167:	learn: 9.3197847	total: 4.35s	remaining: 3.42s
168:	learn: 9.2932309	total: 4.38s	remaining: 3.39s
169:	learn: 9.2622589	total: 4.4s	remaining: 3.37s
170:	learn: 9.2248534	total: 4.43s	remaining: 3.34s
171:	learn: 9.2022003	total: 4.45s	remaining: 3.31s
172:	learn: 9.1580241	total: 4.47s	remaining: 3.28s
173:	learn: 9.1260167	total: 4.5s	remaining: 3.26s
174:	learn: 9.0878209	total: 4.53s	remaining: 3.23s
175:	learn: 9.0321761	total: 4.56s	remaining: 3.21s
176:	learn: 9.0083249	total: 4.59s	remaining: 3.19s
177:	learn: 8.9787673	total: 4.62s	remaining: 3.17s
178:	learn: 8.9601410	total: 4.64s	remaining: 3.14s
179:	learn: 8.9127704	total: 4.67s	remaining: 3.12s
180:	learn: 8.8972409	total: 4.7s	remaining: 3.09s
181:	learn: 8.8794861	total: 4.73s	remaining: 3.06s
182:	learn: 8.8500542	total: 4.76s	remaining: 3.05s
183:	learn: 8.8141901	total: 4.79s	remaining: 3.02s
184:	learn: 8.7581473	total: 4.82s	remaining: 3s
185:	learn: 8.7253122	total: 4.86s	remaining: 2.98s
186:	learn: 8.6834052	total: 4.89s	remaining: 2.95s
187:	learn: 8.6566031	total: 4.91s	remaining: 2.93s
188:	learn: 8.6185765	total: 4.94s	remaining: 2.9s
189:	learn: 8.5835114	total: 4.97s	remaining: 2.88s
190:	learn: 8.5300510	total: 5s	remaining: 2.85s
191:	learn: 8.5135771	total: 5.03s	remaining: 2.83s
192:	learn: 8.4829013	total: 5.05s	remaining: 2.8s
193:	learn: 8.4533553	total: 5.08s	remaining: 2.78s
194:	learn: 8.4023227	total: 5.11s	remaining: 2.75s
195:	learn: 8.3643349	total: 5.14s	remaining: 2.73s
196:	learn: 8.3359260	total: 5.17s	remaining: 2.7s
197:	learn: 8.3049442	total: 5.21s	remaining: 2.68s
198:	learn: 8.2787682	total: 5.23s	remaining: 2.66s
199:	learn: 8.2447974	total: 5.26s	remaining: 2.63s
200:	learn: 8.1921213	total: 5.29s	remaining: 2.6s
201:	learn: 8.1368756	total: 5.32s	remaining: 2.58s
202:	learn: 8.1199237	total: 5.35s	remaining: 2.56s
203:	learn: 8.1017969	total: 5.38s	remaining: 2.53s
204:	learn: 8.0671173	total: 5.4s	remaining: 2.5s
205:	learn: 8.0319971	total: 5.44s	remaining: 2.48s
206:	learn: 8.0103044	total: 5.46s	remaining: 2.46s
207:	learn: 7.9967444	total: 5.49s	remaining: 2.43s
208:	learn: 7.9828258	total: 5.52s	remaining: 2.4s
209:	learn: 7.9515046	total: 5.54s	remaining: 2.38s
210:	learn: 7.9227280	total: 5.58s	remaining: 2.35s
211:	learn: 7.8910798	total: 5.61s	remaining: 2.33s
212:	learn: 7.8631592	total: 5.65s	remaining: 2.31s
213:	learn: 7.8233678	total: 5.67s	remaining: 2.28s
214:	learn: 7.8019668	total: 5.7s	remaining: 2.25s
215:	learn: 7.7692506	total: 5.73s	remaining: 2.23s
216:	learn: 7.7490031	total: 5.76s	remaining: 2.2s
217:	learn: 7.7321355	total: 5.79s	remaining: 2.18s
218:	learn: 7.7098665	total: 5.81s	remaining: 2.15s
219:	learn: 7.6731807	total: 5.85s	remaining: 2.13s
220:	learn: 7.6504773	total: 5.88s	remaining: 2.1s
221:	learn: 7.6249824	total: 5.91s	remaining: 2.08s
222:	learn: 7.6041649	total: 5.93s	remaining: 2.05s
223:	learn: 7.5490806	total: 5.96s	remaining: 2.02s
224:	learn: 7.5192127	total: 5.99s	remaining: 2s
225:	learn: 7.5025279	total: 6.01s	remaining: 1.97s
226:	learn: 7.4929920	total: 6.05s	remaining: 1.94s
227:	learn: 7.4778779	total: 6.08s	remaining: 1.92s
228:	learn: 7.4483660	total: 6.11s	remaining: 1.89s
229:	learn: 7.4291956	total: 6.14s	remaining: 1.87s
230:	learn: 7.4142087	total: 6.17s	remaining: 1.84s
231:	learn: 7.3986246	total: 6.2s	remaining: 1.81s
232:	learn: 7.3551309	total: 6.22s	remaining: 1.79s
233:	learn: 7.3005723	total: 6.25s	remaining: 1.76s
234:	learn: 7.2744519	total: 6.28s	remaining: 1.74s
235:	learn: 7.2477126	total: 6.32s	remaining: 1.71s
236:	learn: 7.2363537	total: 6.35s	remaining: 1.69s
237:	learn: 7.2243670	total: 6.37s	remaining: 1.66s
238:	learn: 7.2006057	total: 6.4s	remaining: 1.63s
239:	learn: 7.1770175	total: 6.43s	remaining: 1.61s
240:	learn: 7.1608454	total: 6.45s	remaining: 1.58s
241:	learn: 7.1347778	total: 6.48s	remaining: 1.55s
242:	learn: 7.1201448	total: 6.52s	remaining: 1.53s
243:	learn: 7.0954331	total: 6.56s	remaining: 1.5s
244:	learn: 7.0788027	total: 6.58s	remaining: 1.48s
245:	learn: 7.0587521	total: 6.61s	remaining: 1.45s
246:	learn: 7.0403295	total: 6.64s	remaining: 1.42s
247:	learn: 7.0149142	total: 6.66s	remaining: 1.4s
248:	learn: 7.0058503	total: 6.69s	remaining: 1.37s
249:	learn: 6.9872119	total: 6.72s	remaining: 1.34s
250:	learn: 6.9784378	total: 6.75s	remaining: 1.32s
251:	learn: 6.9401511	total: 6.78s	remaining: 1.29s
252:	learn: 6.9119575	total: 6.81s	remaining: 1.26s
253:	learn: 6.8791967	total: 6.84s	remaining: 1.24s
254:	learn: 6.8591065	total: 6.87s	remaining: 1.21s
255:	learn: 6.8466643	total: 6.9s	remaining: 1.19s
256:	learn: 6.8336092	total: 6.94s	remaining: 1.16s
257:	learn: 6.7969563	total: 6.96s	remaining: 1.13s
258:	learn: 6.7696422	total: 6.99s	remaining: 1.11s
259:	learn: 6.7495271	total: 7.02s	remaining: 1.08s
260:	learn: 6.7360935	total: 7.05s	remaining: 1.05s
261:	learn: 6.7206472	total: 7.08s	remaining: 1.03s
262:	learn: 6.7069436	total: 7.11s	remaining: 1000ms
263:	learn: 6.6808851	total: 7.13s	remaining: 973ms
264:	learn: 6.6465468	total: 7.17s	remaining: 947ms
265:	learn: 6.6275745	total: 7.19s	remaining: 920ms
266:	learn: 6.6154560	total: 7.22s	remaining: 893ms
267:	learn: 6.5939280	total: 7.25s	remaining: 866ms
268:	learn: 6.5711370	total: 7.28s	remaining: 839ms
269:	learn: 6.5613012	total: 7.31s	remaining: 812ms
270:	learn: 6.5376183	total: 7.35s	remaining: 786ms
271:	learn: 6.5139963	total: 7.38s	remaining: 759ms
272:	learn: 6.5040754	total: 7.4s	remaining: 732ms
273:	learn: 6.4975901	total: 7.43s	remaining: 705ms
274:	learn: 6.4904306	total: 7.46s	remaining: 678ms
275:	learn: 6.4771827	total: 7.49s	remaining: 651ms
276:	learn: 6.4640077	total: 7.52s	remaining: 624ms
277:	learn: 6.4479524	total: 7.55s	remaining: 598ms
278:	learn: 6.4378265	total: 7.58s	remaining: 571ms
279:	learn: 6.3945577	total: 7.61s	remaining: 543ms
280:	learn: 6.3799486	total: 7.63s	remaining: 516ms
281:	learn: 6.3522615	total: 7.66s	remaining: 489ms
282:	learn: 6.3442235	total: 7.69s	remaining: 462ms
283:	learn: 6.3211858	total: 7.71s	remaining: 435ms
284:	learn: 6.3144146	total: 7.74s	remaining: 408ms
285:	learn: 6.2952523	total: 7.78s	remaining: 381ms
286:	learn: 6.2759215	total: 7.82s	remaining: 354ms
287:	learn: 6.2573928	total: 7.85s	remaining: 327ms
288:	learn: 6.2171188	total: 7.87s	remaining: 300ms
289:	learn: 6.2047704	total: 7.9s	remaining: 272ms
290:	learn: 6.1958409	total: 7.93s	remaining: 245ms
291:	learn: 6.1687670	total: 7.96s	remaining: 218ms
292:	learn: 6.1534078	total: 7.99s	remaining: 191ms
293:	learn: 6.1501440	total: 8.03s	remaining: 164ms
294:	learn: 6.1433714	total: 8.05s	remaining: 137ms
295:	learn: 6.1307498	total: 8.08s	remaining: 109ms
296:	learn: 6.0959885	total: 8.11s	remaining: 81.9ms
297:	learn: 6.0797899	total: 8.13s	remaining: 54.6ms
298:	learn: 6.0558136	total: 8.16s	remaining: 27.3ms
299:	learn: 6.0496478	total: 8.19s	remaining: 0us
0:	learn: 42.9665907	total: 27.5ms	remaining: 8.21s
1:	learn: 42.0749580	total: 62.7ms	remaining: 9.34s
2:	learn: 41.2364372	total: 90.4ms	remaining: 8.95s
3:	learn: 40.2791940	total: 117ms	remaining: 8.64s
4:	learn: 39.4774740	total: 144ms	remaining: 8.52s
5:	learn: 38.5996840	total: 146ms	remaining: 7.18s
6:	learn: 37.8316211	total: 176ms	remaining: 7.37s
7:	learn: 37.1628850	total: 207ms	remaining: 7.56s
8:	learn: 36.4156466	total: 234ms	remaining: 7.56s
9:	learn: 35.6588758	total: 259ms	remaining: 7.52s
10:	learn: 35.0884345	total: 283ms	remaining: 7.44s
11:	learn: 34.5488461	total: 309ms	remaining: 7.41s
12:	learn: 34.0111283	total: 334ms	remaining: 7.37s
13:	learn: 33.3032373	total: 359ms	remaining: 7.34s
14:	learn: 32.6944492	total: 396ms	remaining: 7.52s
15:	learn: 32.1392985	total: 422ms	remaining: 7.49s
16:	learn: 31.5189724	total: 447ms	remaining: 7.45s
17:	learn: 31.1349319	total: 475ms	remaining: 7.44s
18:	learn: 30.6327993	total: 480ms	remaining: 7.09s
19:	learn: 30.1244237	total: 504ms	remaining: 7.06s
20:	learn: 29.6203476	total: 530ms	remaining: 7.03s
21:	learn: 29.1948722	total: 555ms	remaining: 7.01s
22:	learn: 28.7806338	total: 582ms	remaining: 7s
23:	learn: 28.4090304	total: 612ms	remaining: 7.04s
24:	learn: 27.8808639	total: 639ms	remaining: 7.03s
25:	learn: 27.4873995	total: 663ms	remaining: 6.99s
26:	learn: 27.1508867	total: 688ms	remaining: 6.96s
27:	learn: 26.8736886	total: 713ms	remaining: 6.92s
28:	learn: 26.5573453	total: 737ms	remaining: 6.89s
29:	learn: 26.1377013	total: 762ms	remaining: 6.86s
30:	learn: 25.8646447	total: 787ms	remaining: 6.83s
31:	learn: 25.5102956	total: 813ms	remaining: 6.81s
32:	learn: 25.1125832	total: 818ms	remaining: 6.62s
33:	learn: 24.7834335	total: 857ms	remaining: 6.7s
34:	learn: 24.4107155	total: 884ms	remaining: 6.69s
35:	learn: 24.1257227	total: 909ms	remaining: 6.67s
36:	learn: 23.7885363	total: 936ms	remaining: 6.65s
37:	learn: 23.4172762	total: 961ms	remaining: 6.63s
38:	learn: 23.1811741	total: 986ms	remaining: 6.6s
39:	learn: 23.0203552	total: 1.01s	remaining: 6.58s
40:	learn: 22.7568385	total: 1.04s	remaining: 6.55s
41:	learn: 22.5575054	total: 1.07s	remaining: 6.57s
42:	learn: 22.3627317	total: 1.1s	remaining: 6.56s
43:	learn: 22.1148033	total: 1.12s	remaining: 6.53s
44:	learn: 21.8764654	total: 1.15s	remaining: 6.5s
45:	learn: 21.6507751	total: 1.17s	remaining: 6.47s
46:	learn: 21.5071770	total: 1.2s	remaining: 6.44s
47:	learn: 21.2905641	total: 1.22s	remaining: 6.41s
48:	learn: 21.0236680	total: 1.25s	remaining: 6.38s
49:	learn: 20.8525654	total: 1.27s	remaining: 6.38s
50:	learn: 20.7238361	total: 1.31s	remaining: 6.39s
51:	learn: 20.5196846	total: 1.33s	remaining: 6.37s
52:	learn: 20.4023709	total: 1.36s	remaining: 6.34s
53:	learn: 20.2251544	total: 1.39s	remaining: 6.32s
54:	learn: 20.0165126	total: 1.41s	remaining: 6.29s
55:	learn: 19.8473022	total: 1.44s	remaining: 6.26s
56:	learn: 19.6453942	total: 1.46s	remaining: 6.23s
57:	learn: 19.4414519	total: 1.49s	remaining: 6.23s
58:	learn: 19.2841809	total: 1.52s	remaining: 6.21s
59:	learn: 19.1094988	total: 1.55s	remaining: 6.19s
60:	learn: 18.9071492	total: 1.57s	remaining: 6.16s
61:	learn: 18.8142448	total: 1.6s	remaining: 6.14s
62:	learn: 18.7155916	total: 1.62s	remaining: 6.11s
63:	learn: 18.5713989	total: 1.65s	remaining: 6.08s
64:	learn: 18.4435949	total: 1.68s	remaining: 6.07s
65:	learn: 18.3154060	total: 1.71s	remaining: 6.05s
66:	learn: 18.1763969	total: 1.73s	remaining: 6.03s
67:	learn: 18.0520004	total: 1.76s	remaining: 6s
68:	learn: 17.9256535	total: 1.78s	remaining: 5.98s
69:	learn: 17.8001190	total: 1.81s	remaining: 5.95s
70:	learn: 17.7046336	total: 1.84s	remaining: 5.93s
71:	learn: 17.5727695	total: 1.86s	remaining: 5.9s
72:	learn: 17.4690371	total: 1.89s	remaining: 5.87s
73:	learn: 17.3464529	total: 1.92s	remaining: 5.86s
74:	learn: 17.2490723	total: 1.95s	remaining: 5.84s
75:	learn: 17.1387598	total: 1.97s	remaining: 5.82s
76:	learn: 17.0249827	total: 2s	remaining: 5.79s
77:	learn: 16.8957417	total: 2.02s	remaining: 5.76s
78:	learn: 16.8509294	total: 2.05s	remaining: 5.73s
79:	learn: 16.7606789	total: 2.07s	remaining: 5.7s
80:	learn: 16.6451525	total: 2.1s	remaining: 5.68s
81:	learn: 16.5535417	total: 2.13s	remaining: 5.66s
82:	learn: 16.4573626	total: 2.16s	remaining: 5.65s
83:	learn: 16.3815139	total: 2.19s	remaining: 5.63s
84:	learn: 16.2757371	total: 2.21s	remaining: 5.6s
85:	learn: 16.1610261	total: 2.24s	remaining: 5.58s
86:	learn: 16.0576382	total: 2.27s	remaining: 5.55s
87:	learn: 15.9864012	total: 2.29s	remaining: 5.52s
88:	learn: 15.8595556	total: 2.32s	remaining: 5.49s
89:	learn: 15.7835777	total: 2.34s	remaining: 5.46s
90:	learn: 15.6644813	total: 2.37s	remaining: 5.44s
91:	learn: 15.5703568	total: 2.4s	remaining: 5.43s
92:	learn: 15.5149519	total: 2.43s	remaining: 5.4s
93:	learn: 15.4388698	total: 2.45s	remaining: 5.37s
94:	learn: 15.3748348	total: 2.48s	remaining: 5.34s
95:	learn: 15.2653364	total: 2.5s	remaining: 5.31s
96:	learn: 15.1811031	total: 2.53s	remaining: 5.29s
97:	learn: 15.1048666	total: 2.55s	remaining: 5.26s
98:	learn: 14.9482659	total: 2.58s	remaining: 5.25s
99:	learn: 14.8677279	total: 2.61s	remaining: 5.23s
100:	learn: 14.7725994	total: 2.64s	remaining: 5.2s
101:	learn: 14.7029290	total: 2.67s	remaining: 5.17s
102:	learn: 14.6496411	total: 2.69s	remaining: 5.15s
103:	learn: 14.5777257	total: 2.71s	remaining: 5.12s
104:	learn: 14.5216984	total: 2.74s	remaining: 5.09s
105:	learn: 14.4547829	total: 2.76s	remaining: 5.06s
106:	learn: 14.3711083	total: 2.79s	remaining: 5.03s
107:	learn: 14.2912634	total: 2.82s	remaining: 5.01s
108:	learn: 14.2095515	total: 2.84s	remaining: 4.98s
109:	learn: 14.1126833	total: 2.87s	remaining: 4.96s
110:	learn: 14.0289467	total: 2.89s	remaining: 4.93s
111:	learn: 13.9815748	total: 2.92s	remaining: 4.9s
112:	learn: 13.8835790	total: 2.94s	remaining: 4.87s
113:	learn: 13.8212214	total: 2.97s	remaining: 4.84s
114:	learn: 13.7640007	total: 2.99s	remaining: 4.81s
115:	learn: 13.7267519	total: 3.03s	remaining: 4.8s
116:	learn: 13.6599610	total: 3.05s	remaining: 4.78s
117:	learn: 13.5793132	total: 3.08s	remaining: 4.75s
118:	learn: 13.4925503	total: 3.1s	remaining: 4.72s
119:	learn: 13.4190945	total: 3.13s	remaining: 4.69s
120:	learn: 13.3466705	total: 3.15s	remaining: 4.66s
121:	learn: 13.2924496	total: 3.18s	remaining: 4.64s
122:	learn: 13.2085622	total: 3.2s	remaining: 4.61s
123:	learn: 13.1162372	total: 3.23s	remaining: 4.58s
124:	learn: 13.0410713	total: 3.26s	remaining: 4.56s
125:	learn: 12.9609613	total: 3.28s	remaining: 4.53s
126:	learn: 12.8983994	total: 3.31s	remaining: 4.5s
127:	learn: 12.8474128	total: 3.33s	remaining: 4.47s
128:	learn: 12.7868331	total: 3.35s	remaining: 4.45s
129:	learn: 12.7309355	total: 3.38s	remaining: 4.42s
130:	learn: 12.6294977	total: 3.4s	remaining: 4.39s
131:	learn: 12.5179424	total: 3.43s	remaining: 4.36s
132:	learn: 12.4808285	total: 3.46s	remaining: 4.35s
133:	learn: 12.4263439	total: 3.49s	remaining: 4.32s
134:	learn: 12.3735545	total: 3.51s	remaining: 4.29s
135:	learn: 12.3307713	total: 3.54s	remaining: 4.27s
136:	learn: 12.2519866	total: 3.56s	remaining: 4.24s
137:	learn: 12.1999454	total: 3.59s	remaining: 4.21s
138:	learn: 12.1615470	total: 3.62s	remaining: 4.19s
139:	learn: 12.1069953	total: 3.65s	remaining: 4.17s
140:	learn: 12.0901368	total: 3.67s	remaining: 4.14s
141:	learn: 12.0479705	total: 3.69s	remaining: 4.11s
142:	learn: 12.0053457	total: 3.72s	remaining: 4.08s
143:	learn: 11.9659408	total: 3.74s	remaining: 4.05s
144:	learn: 11.8554732	total: 3.77s	remaining: 4.03s
145:	learn: 11.8187196	total: 3.79s	remaining: 4s
146:	learn: 11.7800675	total: 3.81s	remaining: 3.97s
147:	learn: 11.7386309	total: 3.84s	remaining: 3.94s
148:	learn: 11.6839216	total: 3.87s	remaining: 3.92s
149:	learn: 11.6001114	total: 3.9s	remaining: 3.9s
150:	learn: 11.5294641	total: 3.92s	remaining: 3.87s
151:	learn: 11.4688507	total: 3.95s	remaining: 3.84s
152:	learn: 11.4036255	total: 3.97s	remaining: 3.82s
153:	learn: 11.3539311	total: 4s	remaining: 3.79s
154:	learn: 11.2810182	total: 4.02s	remaining: 3.76s
155:	learn: 11.2291051	total: 4.04s	remaining: 3.73s
156:	learn: 11.1684511	total: 4.07s	remaining: 3.71s
157:	learn: 11.0820909	total: 4.1s	remaining: 3.68s
158:	learn: 11.0151771	total: 4.13s	remaining: 3.66s
159:	learn: 10.9854451	total: 4.15s	remaining: 3.63s
160:	learn: 10.9538428	total: 4.17s	remaining: 3.6s
161:	learn: 10.9071380	total: 4.2s	remaining: 3.58s
162:	learn: 10.8506541	total: 4.23s	remaining: 3.56s
163:	learn: 10.7895632	total: 4.26s	remaining: 3.53s
164:	learn: 10.7104166	total: 4.29s	remaining: 3.51s
165:	learn: 10.6713716	total: 4.33s	remaining: 3.5s
166:	learn: 10.6075628	total: 4.36s	remaining: 3.47s
167:	learn: 10.5513657	total: 4.39s	remaining: 3.45s
168:	learn: 10.5308283	total: 4.42s	remaining: 3.43s
169:	learn: 10.5023957	total: 4.45s	remaining: 3.4s
170:	learn: 10.4435313	total: 4.47s	remaining: 3.38s
171:	learn: 10.4072323	total: 4.51s	remaining: 3.36s
172:	learn: 10.3655510	total: 4.55s	remaining: 3.34s
173:	learn: 10.3243121	total: 4.58s	remaining: 3.31s
174:	learn: 10.2931771	total: 4.6s	remaining: 3.29s
175:	learn: 10.2558381	total: 4.63s	remaining: 3.26s
176:	learn: 10.2092526	total: 4.66s	remaining: 3.23s
177:	learn: 10.1711544	total: 4.68s	remaining: 3.21s
178:	learn: 10.1456963	total: 4.71s	remaining: 3.18s
179:	learn: 10.0920598	total: 4.75s	remaining: 3.17s
180:	learn: 10.0733859	total: 4.78s	remaining: 3.14s
181:	learn: 10.0472528	total: 4.81s	remaining: 3.12s
182:	learn: 10.0011592	total: 4.84s	remaining: 3.09s
183:	learn: 9.9794945	total: 4.86s	remaining: 3.07s
184:	learn: 9.9585906	total: 4.89s	remaining: 3.04s
185:	learn: 9.9399622	total: 4.92s	remaining: 3.01s
186:	learn: 9.9029023	total: 4.95s	remaining: 2.99s
187:	learn: 9.8554746	total: 4.98s	remaining: 2.96s
188:	learn: 9.8238680	total: 5.01s	remaining: 2.94s
189:	learn: 9.7666554	total: 5.04s	remaining: 2.92s
190:	learn: 9.7207381	total: 5.07s	remaining: 2.89s
191:	learn: 9.6569385	total: 5.09s	remaining: 2.86s
192:	learn: 9.6385185	total: 5.12s	remaining: 2.84s
193:	learn: 9.6202811	total: 5.15s	remaining: 2.81s
194:	learn: 9.5971883	total: 5.18s	remaining: 2.79s
195:	learn: 9.5799642	total: 5.21s	remaining: 2.77s
196:	learn: 9.5177746	total: 5.25s	remaining: 2.74s
197:	learn: 9.4886409	total: 5.28s	remaining: 2.72s
198:	learn: 9.4664307	total: 5.31s	remaining: 2.69s
199:	learn: 9.4000552	total: 5.33s	remaining: 2.67s
200:	learn: 9.3423940	total: 5.36s	remaining: 2.64s
201:	learn: 9.2917605	total: 5.39s	remaining: 2.61s
202:	learn: 9.2787639	total: 5.42s	remaining: 2.59s
203:	learn: 9.2348560	total: 5.45s	remaining: 2.56s
204:	learn: 9.2163272	total: 5.48s	remaining: 2.54s
205:	learn: 9.1475795	total: 5.51s	remaining: 2.52s
206:	learn: 9.1152705	total: 5.54s	remaining: 2.49s
207:	learn: 9.0832275	total: 5.56s	remaining: 2.46s
208:	learn: 9.0497331	total: 5.59s	remaining: 2.43s
209:	learn: 8.9884684	total: 5.62s	remaining: 2.41s
210:	learn: 8.9704690	total: 5.64s	remaining: 2.38s
211:	learn: 8.9489198	total: 5.68s	remaining: 2.36s
212:	learn: 8.9309060	total: 5.71s	remaining: 2.33s
213:	learn: 8.8812512	total: 5.75s	remaining: 2.31s
214:	learn: 8.8596725	total: 5.77s	remaining: 2.28s
215:	learn: 8.8300852	total: 5.8s	remaining: 2.26s
216:	learn: 8.7882493	total: 5.83s	remaining: 2.23s
217:	learn: 8.7527024	total: 5.86s	remaining: 2.2s
218:	learn: 8.7373901	total: 5.88s	remaining: 2.18s
219:	learn: 8.6853084	total: 5.92s	remaining: 2.15s
220:	learn: 8.6700353	total: 5.94s	remaining: 2.12s
221:	learn: 8.6488354	total: 5.98s	remaining: 2.1s
222:	learn: 8.6245087	total: 6s	remaining: 2.07s
223:	learn: 8.5803127	total: 6.03s	remaining: 2.05s
224:	learn: 8.5687287	total: 6.06s	remaining: 2.02s
225:	learn: 8.5524159	total: 6.08s	remaining: 1.99s
226:	learn: 8.5363118	total: 6.11s	remaining: 1.97s
227:	learn: 8.5173117	total: 6.15s	remaining: 1.94s
228:	learn: 8.5023907	total: 6.18s	remaining: 1.92s
229:	learn: 8.4758786	total: 6.21s	remaining: 1.89s
230:	learn: 8.4589042	total: 6.24s	remaining: 1.86s
231:	learn: 8.4178675	total: 6.27s	remaining: 1.84s
232:	learn: 8.4015768	total: 6.3s	remaining: 1.81s
233:	learn: 8.3538784	total: 6.32s	remaining: 1.78s
234:	learn: 8.3197095	total: 6.36s	remaining: 1.76s
235:	learn: 8.3012561	total: 6.39s	remaining: 1.73s
236:	learn: 8.2676774	total: 6.41s	remaining: 1.7s
237:	learn: 8.2345097	total: 6.45s	remaining: 1.68s
238:	learn: 8.1918901	total: 6.47s	remaining: 1.65s
239:	learn: 8.1628985	total: 6.5s	remaining: 1.63s
240:	learn: 8.1474180	total: 6.53s	remaining: 1.6s
241:	learn: 8.1325534	total: 6.56s	remaining: 1.57s
242:	learn: 8.1037771	total: 6.6s	remaining: 1.55s
243:	learn: 8.0648232	total: 6.62s	remaining: 1.52s
244:	learn: 8.0292260	total: 6.65s	remaining: 1.49s
245:	learn: 7.9979887	total: 6.68s	remaining: 1.47s
246:	learn: 7.9749906	total: 6.71s	remaining: 1.44s
247:	learn: 7.9536857	total: 6.74s	remaining: 1.41s
248:	learn: 7.9369033	total: 6.77s	remaining: 1.39s
249:	learn: 7.9041314	total: 6.79s	remaining: 1.36s
250:	learn: 7.8700779	total: 6.83s	remaining: 1.33s
251:	learn: 7.8589815	total: 6.85s	remaining: 1.3s
252:	learn: 7.8461408	total: 6.88s	remaining: 1.28s
253:	learn: 7.8203908	total: 6.91s	remaining: 1.25s
254:	learn: 7.8115877	total: 6.94s	remaining: 1.22s
255:	learn: 7.7972851	total: 6.97s	remaining: 1.2s
256:	learn: 7.7592777	total: 6.99s	remaining: 1.17s
257:	learn: 7.7415378	total: 7.02s	remaining: 1.14s
258:	learn: 7.7066130	total: 7.06s	remaining: 1.12s
259:	learn: 7.6688277	total: 7.08s	remaining: 1.09s
260:	learn: 7.6399303	total: 7.11s	remaining: 1.06s
261:	learn: 7.6294434	total: 7.14s	remaining: 1.03s
262:	learn: 7.5974222	total: 7.17s	remaining: 1.01s
263:	learn: 7.5614717	total: 7.2s	remaining: 982ms
264:	learn: 7.5393196	total: 7.23s	remaining: 955ms
265:	learn: 7.5304428	total: 7.26s	remaining: 928ms
266:	learn: 7.5005082	total: 7.29s	remaining: 901ms
267:	learn: 7.4930881	total: 7.32s	remaining: 874ms
268:	learn: 7.4618806	total: 7.34s	remaining: 846ms
269:	learn: 7.4324630	total: 7.37s	remaining: 819ms
270:	learn: 7.4024922	total: 7.4s	remaining: 792ms
271:	learn: 7.3795771	total: 7.43s	remaining: 765ms
272:	learn: 7.3582401	total: 7.47s	remaining: 739ms
273:	learn: 7.3332320	total: 7.5s	remaining: 711ms
274:	learn: 7.3134158	total: 7.52s	remaining: 684ms
275:	learn: 7.3047177	total: 7.55s	remaining: 657ms
276:	learn: 7.2835686	total: 7.58s	remaining: 629ms
277:	learn: 7.2590706	total: 7.61s	remaining: 602ms
278:	learn: 7.2389798	total: 7.63s	remaining: 575ms
279:	learn: 7.2238047	total: 7.67s	remaining: 548ms
280:	learn: 7.2091121	total: 7.7s	remaining: 521ms
281:	learn: 7.1841389	total: 7.73s	remaining: 493ms
282:	learn: 7.1551478	total: 7.76s	remaining: 466ms
283:	learn: 7.1417039	total: 7.78s	remaining: 439ms
284:	learn: 7.1149018	total: 7.81s	remaining: 411ms
285:	learn: 7.0940299	total: 7.84s	remaining: 384ms
286:	learn: 7.0642807	total: 7.87s	remaining: 356ms
287:	learn: 7.0578276	total: 7.9s	remaining: 329ms
288:	learn: 7.0282409	total: 7.93s	remaining: 302ms
289:	learn: 7.0175655	total: 7.96s	remaining: 275ms
290:	learn: 7.0117776	total: 7.99s	remaining: 247ms
291:	learn: 7.0065809	total: 8.02s	remaining: 220ms
292:	learn: 6.9844003	total: 8.05s	remaining: 192ms
293:	learn: 6.9588520	total: 8.07s	remaining: 165ms
294:	learn: 6.9319651	total: 8.1s	remaining: 137ms
295:	learn: 6.9184996	total: 8.13s	remaining: 110ms
296:	learn: 6.9089387	total: 8.17s	remaining: 82.5ms
297:	learn: 6.8834263	total: 8.2s	remaining: 55ms
298:	learn: 6.8646725	total: 8.22s	remaining: 27.5ms
299:	learn: 6.8583069	total: 8.25s	remaining: 0us
0:	learn: 46.4920187	total: 25.9ms	remaining: 7.75s
1:	learn: 45.6433575	total: 53.6ms	remaining: 7.98s
2:	learn: 44.9081373	total: 91.3ms	remaining: 9.04s
3:	learn: 44.2007033	total: 122ms	remaining: 8.99s
4:	learn: 43.6170398	total: 158ms	remaining: 9.34s
5:	learn: 42.9324480	total: 186ms	remaining: 9.12s
6:	learn: 42.1711446	total: 213ms	remaining: 8.91s
7:	learn: 41.4804333	total: 239ms	remaining: 8.74s
8:	learn: 40.7785369	total: 267ms	remaining: 8.65s
9:	learn: 40.1652912	total: 297ms	remaining: 8.62s
10:	learn: 39.7932467	total: 328ms	remaining: 8.62s
11:	learn: 39.1996124	total: 355ms	remaining: 8.53s
12:	learn: 38.7184015	total: 389ms	remaining: 8.58s
13:	learn: 38.2978784	total: 415ms	remaining: 8.48s
14:	learn: 37.9153936	total: 443ms	remaining: 8.41s
15:	learn: 37.4724861	total: 469ms	remaining: 8.33s
16:	learn: 36.9897929	total: 497ms	remaining: 8.27s
17:	learn: 36.5310822	total: 532ms	remaining: 8.33s
18:	learn: 35.8591207	total: 560ms	remaining: 8.29s
19:	learn: 35.3264196	total: 587ms	remaining: 8.22s
20:	learn: 34.9815543	total: 623ms	remaining: 8.27s
21:	learn: 34.5242647	total: 650ms	remaining: 8.21s
22:	learn: 34.0838298	total: 677ms	remaining: 8.15s
23:	learn: 33.5132614	total: 703ms	remaining: 8.08s
24:	learn: 33.1682884	total: 733ms	remaining: 8.07s
25:	learn: 32.6809656	total: 766ms	remaining: 8.07s
26:	learn: 32.2976643	total: 793ms	remaining: 8.02s
27:	learn: 31.8377309	total: 820ms	remaining: 7.96s
28:	learn: 31.4757870	total: 853ms	remaining: 7.97s
29:	learn: 31.1346090	total: 880ms	remaining: 7.92s
30:	learn: 30.8895702	total: 906ms	remaining: 7.86s
31:	learn: 30.4184979	total: 933ms	remaining: 7.81s
32:	learn: 30.1250221	total: 963ms	remaining: 7.79s
33:	learn: 29.7407593	total: 999ms	remaining: 7.81s
34:	learn: 29.4737622	total: 1.03s	remaining: 7.78s
35:	learn: 29.0366253	total: 1.05s	remaining: 7.74s
36:	learn: 28.5395737	total: 1.08s	remaining: 7.7s
37:	learn: 28.2499036	total: 1.12s	remaining: 7.71s
38:	learn: 28.0302095	total: 1.15s	remaining: 7.69s
39:	learn: 27.7630415	total: 1.18s	remaining: 7.68s
40:	learn: 27.5060679	total: 1.21s	remaining: 7.64s
41:	learn: 27.1860580	total: 1.24s	remaining: 7.59s
42:	learn: 26.9497401	total: 1.26s	remaining: 7.55s
43:	learn: 26.5636809	total: 1.29s	remaining: 7.5s
44:	learn: 26.3527818	total: 1.32s	remaining: 7.46s
45:	learn: 26.0947487	total: 1.32s	remaining: 7.31s
46:	learn: 25.8964846	total: 1.36s	remaining: 7.31s
47:	learn: 25.7357069	total: 1.39s	remaining: 7.29s
48:	learn: 25.4371960	total: 1.43s	remaining: 7.3s
49:	learn: 25.2603655	total: 1.45s	remaining: 7.26s
50:	learn: 25.0858697	total: 1.48s	remaining: 7.23s
51:	learn: 24.8939288	total: 1.51s	remaining: 7.19s
52:	learn: 24.6820962	total: 1.54s	remaining: 7.16s
53:	learn: 24.4191077	total: 1.56s	remaining: 7.12s
54:	learn: 24.2285108	total: 1.6s	remaining: 7.12s
55:	learn: 24.0237019	total: 1.63s	remaining: 7.11s
56:	learn: 23.8723096	total: 1.66s	remaining: 7.07s
57:	learn: 23.6426757	total: 1.69s	remaining: 7.04s
58:	learn: 23.3573717	total: 1.71s	remaining: 7s
59:	learn: 23.2066882	total: 1.74s	remaining: 6.96s
60:	learn: 23.0766272	total: 1.77s	remaining: 6.92s
61:	learn: 22.8991718	total: 1.79s	remaining: 6.89s
62:	learn: 22.7894335	total: 1.84s	remaining: 6.92s
63:	learn: 22.6367500	total: 1.87s	remaining: 6.89s
64:	learn: 22.4138205	total: 1.9s	remaining: 6.85s
65:	learn: 22.2650450	total: 1.92s	remaining: 6.81s
66:	learn: 22.1323603	total: 1.95s	remaining: 6.78s
67:	learn: 22.0038344	total: 1.98s	remaining: 6.74s
68:	learn: 21.8540317	total: 2s	remaining: 6.71s
69:	learn: 21.6608789	total: 2.04s	remaining: 6.7s
70:	learn: 21.4853082	total: 2.08s	remaining: 6.7s
71:	learn: 21.3715617	total: 2.1s	remaining: 6.66s
72:	learn: 21.2631638	total: 2.13s	remaining: 6.62s
73:	learn: 21.0630270	total: 2.16s	remaining: 6.58s
74:	learn: 20.9295137	total: 2.18s	remaining: 6.55s
75:	learn: 20.7587846	total: 2.21s	remaining: 6.51s
76:	learn: 20.6341259	total: 2.24s	remaining: 6.49s
77:	learn: 20.4852416	total: 2.28s	remaining: 6.48s
78:	learn: 20.3364151	total: 2.31s	remaining: 6.45s
79:	learn: 20.1513667	total: 2.34s	remaining: 6.43s
80:	learn: 20.0363336	total: 2.37s	remaining: 6.4s
81:	learn: 19.8984761	total: 2.39s	remaining: 6.36s
82:	learn: 19.7196215	total: 2.42s	remaining: 6.33s
83:	learn: 19.6326171	total: 2.45s	remaining: 6.29s
84:	learn: 19.5192244	total: 2.48s	remaining: 6.27s
85:	learn: 19.3415480	total: 2.51s	remaining: 6.25s
86:	learn: 19.1977806	total: 2.54s	remaining: 6.21s
87:	learn: 19.0755247	total: 2.57s	remaining: 6.2s
88:	learn: 18.9651152	total: 2.6s	remaining: 6.16s
89:	learn: 18.8207893	total: 2.62s	remaining: 6.12s
90:	learn: 18.6727740	total: 2.65s	remaining: 6.09s
91:	learn: 18.5581545	total: 2.68s	remaining: 6.05s
92:	learn: 18.3991083	total: 2.71s	remaining: 6.02s
93:	learn: 18.2684705	total: 2.75s	remaining: 6.02s
94:	learn: 18.1617452	total: 2.77s	remaining: 5.99s
95:	learn: 18.0459371	total: 2.81s	remaining: 5.97s
96:	learn: 17.9276342	total: 2.84s	remaining: 5.94s
97:	learn: 17.8174578	total: 2.86s	remaining: 5.91s
98:	learn: 17.7243604	total: 2.89s	remaining: 5.87s
99:	learn: 17.5858933	total: 2.92s	remaining: 5.84s
100:	learn: 17.4987099	total: 2.95s	remaining: 5.8s
101:	learn: 17.4074669	total: 2.98s	remaining: 5.78s
102:	learn: 17.3061897	total: 3s	remaining: 5.75s
103:	learn: 17.2198386	total: 3.04s	remaining: 5.73s
104:	learn: 17.1413444	total: 3.07s	remaining: 5.69s
105:	learn: 17.0254611	total: 3.09s	remaining: 5.66s
106:	learn: 16.8532099	total: 3.12s	remaining: 5.63s
107:	learn: 16.7502658	total: 3.16s	remaining: 5.61s
108:	learn: 16.6620525	total: 3.19s	remaining: 5.58s
109:	learn: 16.5150565	total: 3.21s	remaining: 5.55s
110:	learn: 16.3807346	total: 3.24s	remaining: 5.52s
111:	learn: 16.2864111	total: 3.27s	remaining: 5.49s
112:	learn: 16.2093028	total: 3.31s	remaining: 5.47s
113:	learn: 16.1230989	total: 3.33s	remaining: 5.44s
114:	learn: 16.0202012	total: 3.37s	remaining: 5.42s
115:	learn: 15.8709211	total: 3.4s	remaining: 5.38s
116:	learn: 15.8000542	total: 3.42s	remaining: 5.35s
117:	learn: 15.7243590	total: 3.45s	remaining: 5.32s
118:	learn: 15.6838028	total: 3.48s	remaining: 5.29s
119:	learn: 15.5999055	total: 3.5s	remaining: 5.25s
120:	learn: 15.4847533	total: 3.54s	remaining: 5.23s
121:	learn: 15.3935164	total: 3.56s	remaining: 5.2s
122:	learn: 15.3296377	total: 3.6s	remaining: 5.18s
123:	learn: 15.2519510	total: 3.63s	remaining: 5.15s
124:	learn: 15.1230133	total: 3.66s	remaining: 5.12s
125:	learn: 15.0423019	total: 3.69s	remaining: 5.09s
126:	learn: 14.9651901	total: 3.71s	remaining: 5.06s
127:	learn: 14.8934123	total: 3.74s	remaining: 5.03s
128:	learn: 14.7751491	total: 3.77s	remaining: 5s
129:	learn: 14.6892078	total: 3.81s	remaining: 4.98s
130:	learn: 14.5672638	total: 3.84s	remaining: 4.95s
131:	learn: 14.4952938	total: 3.87s	remaining: 4.92s
132:	learn: 14.4180105	total: 3.89s	remaining: 4.89s
133:	learn: 14.3259063	total: 3.92s	remaining: 4.86s
134:	learn: 14.2345804	total: 3.95s	remaining: 4.82s
135:	learn: 14.1483357	total: 3.97s	remaining: 4.79s
136:	learn: 14.0736010	total: 4.01s	remaining: 4.77s
137:	learn: 13.9937119	total: 4.05s	remaining: 4.75s
138:	learn: 13.8959716	total: 4.07s	remaining: 4.72s
139:	learn: 13.8412567	total: 4.1s	remaining: 4.69s
140:	learn: 13.7154644	total: 4.13s	remaining: 4.66s
141:	learn: 13.6297829	total: 4.16s	remaining: 4.63s
142:	learn: 13.5739671	total: 4.18s	remaining: 4.59s
143:	learn: 13.4995340	total: 4.21s	remaining: 4.56s
144:	learn: 13.4419790	total: 4.24s	remaining: 4.54s
145:	learn: 13.3537206	total: 4.28s	remaining: 4.51s
146:	learn: 13.2933505	total: 4.31s	remaining: 4.48s
147:	learn: 13.2556145	total: 4.33s	remaining: 4.45s
148:	learn: 13.1895569	total: 4.36s	remaining: 4.42s
149:	learn: 13.0743749	total: 4.39s	remaining: 4.39s
150:	learn: 12.9866329	total: 4.41s	remaining: 4.36s
151:	learn: 12.9104275	total: 4.44s	remaining: 4.32s
152:	learn: 12.8577271	total: 4.47s	remaining: 4.29s
153:	learn: 12.8256294	total: 4.51s	remaining: 4.28s
154:	learn: 12.7696590	total: 4.54s	remaining: 4.25s
155:	learn: 12.7209084	total: 4.57s	remaining: 4.22s
156:	learn: 12.6674046	total: 4.59s	remaining: 4.18s
157:	learn: 12.5958375	total: 4.62s	remaining: 4.15s
158:	learn: 12.5324216	total: 4.65s	remaining: 4.12s
159:	learn: 12.4750343	total: 4.68s	remaining: 4.09s
160:	learn: 12.4460476	total: 4.71s	remaining: 4.06s
161:	learn: 12.3931726	total: 4.74s	remaining: 4.04s
162:	learn: 12.3423679	total: 4.77s	remaining: 4.01s
163:	learn: 12.2404837	total: 4.8s	remaining: 3.98s
164:	learn: 12.1393154	total: 4.82s	remaining: 3.95s
165:	learn: 12.0493899	total: 4.85s	remaining: 3.92s
166:	learn: 11.9978027	total: 4.88s	remaining: 3.88s
167:	learn: 11.9099690	total: 4.9s	remaining: 3.85s
168:	learn: 11.8102813	total: 4.93s	remaining: 3.82s
169:	learn: 11.7900460	total: 4.97s	remaining: 3.8s
170:	learn: 11.6614467	total: 5s	remaining: 3.77s
171:	learn: 11.6131631	total: 5.03s	remaining: 3.74s
172:	learn: 11.5629996	total: 5.06s	remaining: 3.71s
173:	learn: 11.5169908	total: 5.09s	remaining: 3.68s
174:	learn: 11.4660439	total: 5.11s	remaining: 3.65s
175:	learn: 11.3919483	total: 5.14s	remaining: 3.62s
176:	learn: 11.3145316	total: 5.17s	remaining: 3.6s
177:	learn: 11.2776601	total: 5.2s	remaining: 3.56s
178:	learn: 11.2271053	total: 5.24s	remaining: 3.54s
179:	learn: 11.1499719	total: 5.26s	remaining: 3.51s
180:	learn: 11.0826417	total: 5.29s	remaining: 3.48s
181:	learn: 11.0345062	total: 5.32s	remaining: 3.45s
182:	learn: 10.9747957	total: 5.34s	remaining: 3.42s
183:	learn: 10.9504835	total: 5.37s	remaining: 3.39s
184:	learn: 10.8920732	total: 5.41s	remaining: 3.36s
185:	learn: 10.8332793	total: 5.44s	remaining: 3.33s
186:	learn: 10.7563237	total: 5.47s	remaining: 3.31s
187:	learn: 10.6822868	total: 5.5s	remaining: 3.28s
188:	learn: 10.6056324	total: 5.53s	remaining: 3.25s
189:	learn: 10.5266557	total: 5.55s	remaining: 3.22s
190:	learn: 10.4930964	total: 5.58s	remaining: 3.19s
191:	learn: 10.4201879	total: 5.61s	remaining: 3.16s
192:	learn: 10.3397888	total: 5.64s	remaining: 3.13s
193:	learn: 10.2865417	total: 5.67s	remaining: 3.1s
194:	learn: 10.2334779	total: 5.7s	remaining: 3.07s
195:	learn: 10.1692880	total: 5.73s	remaining: 3.04s
196:	learn: 10.0710712	total: 5.76s	remaining: 3.01s
197:	learn: 10.0112189	total: 5.78s	remaining: 2.98s
198:	learn: 9.9312531	total: 5.81s	remaining: 2.95s
199:	learn: 9.8522991	total: 5.84s	remaining: 2.92s
200:	learn: 9.8089200	total: 5.88s	remaining: 2.9s
201:	learn: 9.7508922	total: 5.91s	remaining: 2.86s
202:	learn: 9.7146850	total: 5.93s	remaining: 2.83s
203:	learn: 9.6641129	total: 5.97s	remaining: 2.81s
204:	learn: 9.6327075	total: 6s	remaining: 2.78s
205:	learn: 9.5932487	total: 6.02s	remaining: 2.75s
206:	learn: 9.5445036	total: 6.05s	remaining: 2.72s
207:	learn: 9.4948826	total: 6.08s	remaining: 2.69s
208:	learn: 9.4535103	total: 6.11s	remaining: 2.66s
209:	learn: 9.4123413	total: 6.14s	remaining: 2.63s
210:	learn: 9.3702571	total: 6.17s	remaining: 2.6s
211:	learn: 9.3376174	total: 6.21s	remaining: 2.58s
212:	learn: 9.2978132	total: 6.23s	remaining: 2.54s
213:	learn: 9.2585597	total: 6.26s	remaining: 2.52s
214:	learn: 9.2229218	total: 6.29s	remaining: 2.48s
215:	learn: 9.1931978	total: 6.32s	remaining: 2.46s
216:	learn: 9.1391962	total: 6.36s	remaining: 2.43s
217:	learn: 9.1177140	total: 6.39s	remaining: 2.4s
218:	learn: 9.0779325	total: 6.41s	remaining: 2.37s
219:	learn: 9.0291866	total: 6.45s	remaining: 2.35s
220:	learn: 9.0063703	total: 6.47s	remaining: 2.31s
221:	learn: 8.9747579	total: 6.5s	remaining: 2.28s
222:	learn: 8.9452822	total: 6.53s	remaining: 2.25s
223:	learn: 8.8954806	total: 6.56s	remaining: 2.23s
224:	learn: 8.8756565	total: 6.59s	remaining: 2.2s
225:	learn: 8.8362862	total: 6.62s	remaining: 2.17s
226:	learn: 8.7994104	total: 6.64s	remaining: 2.14s
227:	learn: 8.7388797	total: 6.68s	remaining: 2.11s
228:	learn: 8.7011029	total: 6.71s	remaining: 2.08s
229:	learn: 8.6617377	total: 6.74s	remaining: 2.05s
230:	learn: 8.6134302	total: 6.77s	remaining: 2.02s
231:	learn: 8.5572452	total: 6.8s	remaining: 1.99s
232:	learn: 8.5450933	total: 6.83s	remaining: 1.96s
233:	learn: 8.5296821	total: 6.86s	remaining: 1.93s
234:	learn: 8.4941428	total: 6.88s	remaining: 1.9s
235:	learn: 8.4682542	total: 6.91s	remaining: 1.87s
236:	learn: 8.4334184	total: 6.95s	remaining: 1.85s
237:	learn: 8.3841236	total: 6.98s	remaining: 1.82s
238:	learn: 8.3495185	total: 7.01s	remaining: 1.79s
239:	learn: 8.3255533	total: 7.03s	remaining: 1.76s
240:	learn: 8.2769513	total: 7.06s	remaining: 1.73s
241:	learn: 8.2392608	total: 7.09s	remaining: 1.7s
242:	learn: 8.2075977	total: 7.12s	remaining: 1.67s
243:	learn: 8.1675762	total: 7.15s	remaining: 1.64s
244:	learn: 8.1426498	total: 7.19s	remaining: 1.61s
245:	learn: 8.1212492	total: 7.21s	remaining: 1.58s
246:	learn: 8.1085819	total: 7.24s	remaining: 1.55s
247:	learn: 8.0970063	total: 7.27s	remaining: 1.52s
248:	learn: 8.0831142	total: 7.3s	remaining: 1.49s
249:	learn: 8.0682674	total: 7.32s	remaining: 1.46s
250:	learn: 8.0255439	total: 7.35s	remaining: 1.43s
251:	learn: 7.9910040	total: 7.38s	remaining: 1.41s
252:	learn: 7.9689255	total: 7.42s	remaining: 1.38s
253:	learn: 7.9472704	total: 7.45s	remaining: 1.35s
254:	learn: 7.9223583	total: 7.47s	remaining: 1.32s
255:	learn: 7.9037436	total: 7.5s	remaining: 1.29s
256:	learn: 7.8699909	total: 7.53s	remaining: 1.26s
257:	learn: 7.8368335	total: 7.55s	remaining: 1.23s
258:	learn: 7.8236324	total: 7.58s	remaining: 1.2s
259:	learn: 7.8036203	total: 7.62s	remaining: 1.17s
260:	learn: 7.7785106	total: 7.65s	remaining: 1.14s
261:	learn: 7.7378238	total: 7.68s	remaining: 1.11s
262:	learn: 7.7076815	total: 7.71s	remaining: 1.08s
263:	learn: 7.6857233	total: 7.73s	remaining: 1.05s
264:	learn: 7.6580317	total: 7.76s	remaining: 1.02s
265:	learn: 7.6172020	total: 7.79s	remaining: 996ms
266:	learn: 7.5867081	total: 7.82s	remaining: 966ms
267:	learn: 7.5596902	total: 7.85s	remaining: 937ms
268:	learn: 7.5299019	total: 7.88s	remaining: 908ms
269:	learn: 7.5009508	total: 7.91s	remaining: 879ms
270:	learn: 7.4926172	total: 7.94s	remaining: 850ms
271:	learn: 7.4658986	total: 7.96s	remaining: 820ms
272:	learn: 7.4522698	total: 7.99s	remaining: 790ms
273:	learn: 7.4302812	total: 8.02s	remaining: 761ms
274:	learn: 7.3941731	total: 8.06s	remaining: 732ms
275:	learn: 7.3799563	total: 8.08s	remaining: 703ms
276:	learn: 7.3656377	total: 8.11s	remaining: 674ms
277:	learn: 7.3315754	total: 8.15s	remaining: 645ms
278:	learn: 7.3180067	total: 8.18s	remaining: 615ms
279:	learn: 7.2955359	total: 8.2s	remaining: 586ms
280:	learn: 7.2752011	total: 8.23s	remaining: 557ms
281:	learn: 7.2453396	total: 8.26s	remaining: 527ms
282:	learn: 7.2349607	total: 8.29s	remaining: 498ms
283:	learn: 7.2063896	total: 8.32s	remaining: 469ms
284:	learn: 7.1899919	total: 8.35s	remaining: 439ms
285:	learn: 7.1788740	total: 8.38s	remaining: 410ms
286:	learn: 7.1567240	total: 8.41s	remaining: 381ms
287:	learn: 7.1370331	total: 8.44s	remaining: 352ms
288:	learn: 7.1180486	total: 8.47s	remaining: 322ms
289:	learn: 7.0971315	total: 8.5s	remaining: 293ms
290:	learn: 7.0784398	total: 8.53s	remaining: 264ms
291:	learn: 7.0605330	total: 8.56s	remaining: 234ms
292:	learn: 7.0273458	total: 8.58s	remaining: 205ms
293:	learn: 7.0133663	total: 8.62s	remaining: 176ms
294:	learn: 6.9946693	total: 8.64s	remaining: 147ms
295:	learn: 6.9685770	total: 8.68s	remaining: 117ms
296:	learn: 6.9527470	total: 8.71s	remaining: 87.9ms
297:	learn: 6.9305615	total: 8.73s	remaining: 58.6ms
298:	learn: 6.9039647	total: 8.76s	remaining: 29.3ms
299:	learn: 6.8927522	total: 8.79s	remaining: 0us
0:	learn: 46.2361874	total: 33.2ms	remaining: 9.92s
1:	learn: 45.3982106	total: 74.3ms	remaining: 11.1s
2:	learn: 44.6777488	total: 101ms	remaining: 10s
3:	learn: 43.7409965	total: 130ms	remaining: 9.6s
4:	learn: 43.2513213	total: 157ms	remaining: 9.28s
5:	learn: 42.4947195	total: 184ms	remaining: 9s
6:	learn: 41.9697708	total: 210ms	remaining: 8.81s
7:	learn: 41.2445289	total: 237ms	remaining: 8.66s
8:	learn: 40.5360490	total: 264ms	remaining: 8.54s
9:	learn: 39.9370297	total: 299ms	remaining: 8.66s
10:	learn: 39.1060281	total: 335ms	remaining: 8.79s
11:	learn: 38.6733181	total: 362ms	remaining: 8.68s
12:	learn: 38.3760896	total: 388ms	remaining: 8.57s
13:	learn: 37.9842684	total: 415ms	remaining: 8.47s
14:	learn: 37.4860092	total: 442ms	remaining: 8.4s
15:	learn: 36.9450018	total: 469ms	remaining: 8.32s
16:	learn: 36.5144396	total: 496ms	remaining: 8.25s
17:	learn: 36.0168729	total: 525ms	remaining: 8.22s
18:	learn: 35.4748970	total: 567ms	remaining: 8.39s
19:	learn: 35.0390482	total: 595ms	remaining: 8.33s
20:	learn: 34.6776156	total: 622ms	remaining: 8.27s
21:	learn: 34.3978384	total: 651ms	remaining: 8.22s
22:	learn: 34.0289970	total: 677ms	remaining: 8.15s
23:	learn: 33.6138883	total: 704ms	remaining: 8.09s
24:	learn: 33.2279106	total: 730ms	remaining: 8.03s
25:	learn: 32.8252468	total: 758ms	remaining: 7.99s
26:	learn: 32.4666371	total: 791ms	remaining: 8s
27:	learn: 32.1644689	total: 826ms	remaining: 8.02s
28:	learn: 31.6892888	total: 853ms	remaining: 7.97s
29:	learn: 31.4013853	total: 881ms	remaining: 7.93s
30:	learn: 31.0918470	total: 908ms	remaining: 7.88s
31:	learn: 30.7382925	total: 935ms	remaining: 7.83s
32:	learn: 30.3837621	total: 966ms	remaining: 7.81s
33:	learn: 29.9818772	total: 1s	remaining: 7.84s
34:	learn: 29.7173064	total: 1.03s	remaining: 7.79s
35:	learn: 29.2164083	total: 1.06s	remaining: 7.8s
36:	learn: 28.9131554	total: 1.09s	remaining: 7.76s
37:	learn: 28.5257233	total: 1.12s	remaining: 7.72s
38:	learn: 28.2965944	total: 1.15s	remaining: 7.67s
39:	learn: 28.0804622	total: 1.17s	remaining: 7.63s
40:	learn: 27.8304426	total: 1.2s	remaining: 7.6s
41:	learn: 27.4453684	total: 1.24s	remaining: 7.59s
42:	learn: 27.3017075	total: 1.26s	remaining: 7.54s
43:	learn: 27.0701323	total: 1.29s	remaining: 7.54s
44:	learn: 26.8649692	total: 1.32s	remaining: 7.5s
45:	learn: 26.6301705	total: 1.33s	remaining: 7.34s
46:	learn: 26.4341772	total: 1.36s	remaining: 7.3s
47:	learn: 26.2192154	total: 1.38s	remaining: 7.26s
48:	learn: 25.9631071	total: 1.42s	remaining: 7.25s
49:	learn: 25.5792340	total: 1.45s	remaining: 7.25s
50:	learn: 25.3916810	total: 1.48s	remaining: 7.22s
51:	learn: 25.2370365	total: 1.51s	remaining: 7.19s
52:	learn: 24.9965355	total: 1.53s	remaining: 7.16s
53:	learn: 24.8178278	total: 1.57s	remaining: 7.15s
54:	learn: 24.6443095	total: 1.6s	remaining: 7.11s
55:	learn: 24.4870683	total: 1.63s	remaining: 7.08s
56:	learn: 24.2978173	total: 1.66s	remaining: 7.07s
57:	learn: 24.1340740	total: 1.69s	remaining: 7.04s
58:	learn: 23.8586489	total: 1.71s	remaining: 6.99s
59:	learn: 23.6035925	total: 1.74s	remaining: 6.96s
60:	learn: 23.4530593	total: 1.77s	remaining: 6.92s
61:	learn: 23.2783421	total: 1.8s	remaining: 6.91s
62:	learn: 23.1030553	total: 1.83s	remaining: 6.88s
63:	learn: 22.9659704	total: 1.86s	remaining: 6.88s
64:	learn: 22.8283407	total: 1.89s	remaining: 6.84s
65:	learn: 22.7134955	total: 1.92s	remaining: 6.81s
66:	learn: 22.5782888	total: 1.95s	remaining: 6.78s
67:	learn: 22.4557438	total: 1.98s	remaining: 6.74s
68:	learn: 22.3316398	total: 2s	remaining: 6.7s
69:	learn: 22.1161650	total: 2.03s	remaining: 6.68s
70:	learn: 21.9806112	total: 2.07s	remaining: 6.67s
71:	learn: 21.8705364	total: 2.1s	remaining: 6.64s
72:	learn: 21.7450899	total: 2.12s	remaining: 6.61s
73:	learn: 21.5593132	total: 2.15s	remaining: 6.57s
74:	learn: 21.4206323	total: 2.18s	remaining: 6.54s
75:	learn: 21.2904965	total: 2.2s	remaining: 6.5s
76:	learn: 21.1898852	total: 2.23s	remaining: 6.46s
77:	learn: 21.0582226	total: 2.26s	remaining: 6.43s
78:	learn: 20.9414763	total: 2.3s	remaining: 6.44s
79:	learn: 20.7847655	total: 2.33s	remaining: 6.42s
80:	learn: 20.6413634	total: 2.36s	remaining: 6.38s
81:	learn: 20.5314598	total: 2.39s	remaining: 6.35s
82:	learn: 20.3298485	total: 2.42s	remaining: 6.32s
83:	learn: 20.2197693	total: 2.44s	remaining: 6.28s
84:	learn: 20.1021239	total: 2.47s	remaining: 6.24s
85:	learn: 20.0001932	total: 2.5s	remaining: 6.21s
86:	learn: 19.8813166	total: 2.53s	remaining: 6.21s
87:	learn: 19.7335638	total: 2.56s	remaining: 6.18s
88:	learn: 19.6116984	total: 2.59s	remaining: 6.14s
89:	learn: 19.4739468	total: 2.62s	remaining: 6.11s
90:	learn: 19.3561691	total: 2.64s	remaining: 6.07s
91:	learn: 19.2462168	total: 2.67s	remaining: 6.04s
92:	learn: 19.1423750	total: 2.7s	remaining: 6s
93:	learn: 19.0313643	total: 2.72s	remaining: 5.97s
94:	learn: 18.9323468	total: 2.77s	remaining: 5.98s
95:	learn: 18.8504682	total: 2.8s	remaining: 5.95s
96:	learn: 18.7831778	total: 2.83s	remaining: 5.92s
97:	learn: 18.6811943	total: 2.85s	remaining: 5.88s
98:	learn: 18.5908821	total: 2.88s	remaining: 5.85s
99:	learn: 18.4714725	total: 2.91s	remaining: 5.82s
100:	learn: 18.4186226	total: 2.94s	remaining: 5.79s
101:	learn: 18.3174294	total: 2.97s	remaining: 5.77s
102:	learn: 18.2499823	total: 3s	remaining: 5.74s
103:	learn: 18.1797568	total: 3.03s	remaining: 5.72s
104:	learn: 18.0633880	total: 3.06s	remaining: 5.68s
105:	learn: 17.9230666	total: 3.09s	remaining: 5.65s
106:	learn: 17.8255078	total: 3.11s	remaining: 5.62s
107:	learn: 17.7301999	total: 3.14s	remaining: 5.58s
108:	learn: 17.6643624	total: 3.17s	remaining: 5.55s
109:	learn: 17.5888284	total: 3.21s	remaining: 5.54s
110:	learn: 17.4829166	total: 3.23s	remaining: 5.5s
111:	learn: 17.3884998	total: 3.27s	remaining: 5.49s
112:	learn: 17.3190040	total: 3.3s	remaining: 5.46s
113:	learn: 17.2327089	total: 3.32s	remaining: 5.42s
114:	learn: 17.1647683	total: 3.35s	remaining: 5.39s
115:	learn: 17.0566172	total: 3.38s	remaining: 5.36s
116:	learn: 16.9678905	total: 3.41s	remaining: 5.33s
117:	learn: 16.8708649	total: 3.44s	remaining: 5.3s
118:	learn: 16.8044407	total: 3.47s	remaining: 5.27s
119:	learn: 16.7826952	total: 3.5s	remaining: 5.25s
120:	learn: 16.6904252	total: 3.53s	remaining: 5.22s
121:	learn: 16.6389060	total: 3.55s	remaining: 5.18s
122:	learn: 16.6175863	total: 3.58s	remaining: 5.15s
123:	learn: 16.5491464	total: 3.61s	remaining: 5.12s
124:	learn: 16.4907928	total: 3.65s	remaining: 5.11s
125:	learn: 16.4498651	total: 3.67s	remaining: 5.07s
126:	learn: 16.3775502	total: 3.7s	remaining: 5.04s
127:	learn: 16.3075622	total: 3.73s	remaining: 5.01s
128:	learn: 16.2141203	total: 3.77s	remaining: 4.99s
129:	learn: 16.1287920	total: 3.79s	remaining: 4.96s
130:	learn: 15.9776702	total: 3.82s	remaining: 4.93s
131:	learn: 15.8957114	total: 3.85s	remaining: 4.9s
132:	learn: 15.8623913	total: 3.88s	remaining: 4.88s
133:	learn: 15.7410770	total: 3.91s	remaining: 4.84s
134:	learn: 15.6800520	total: 3.94s	remaining: 4.81s
135:	learn: 15.6327751	total: 3.96s	remaining: 4.78s
136:	learn: 15.5499724	total: 4s	remaining: 4.76s
137:	learn: 15.4431979	total: 4.02s	remaining: 4.72s
138:	learn: 15.3542910	total: 4.06s	remaining: 4.7s
139:	learn: 15.3024922	total: 4.09s	remaining: 4.67s
140:	learn: 15.2729651	total: 4.12s	remaining: 4.64s
141:	learn: 15.1606911	total: 4.14s	remaining: 4.61s
142:	learn: 15.0979047	total: 4.17s	remaining: 4.58s
143:	learn: 15.0141377	total: 4.2s	remaining: 4.55s
144:	learn: 14.9689028	total: 4.24s	remaining: 4.53s
145:	learn: 14.8925843	total: 4.26s	remaining: 4.5s
146:	learn: 14.8587722	total: 4.29s	remaining: 4.47s
147:	learn: 14.8360363	total: 4.32s	remaining: 4.44s
148:	learn: 14.7676016	total: 4.35s	remaining: 4.41s
149:	learn: 14.6736810	total: 4.38s	remaining: 4.38s
150:	learn: 14.6261132	total: 4.4s	remaining: 4.34s
151:	learn: 14.5723176	total: 4.43s	remaining: 4.31s
152:	learn: 14.5100088	total: 4.46s	remaining: 4.28s
153:	learn: 14.4025427	total: 4.5s	remaining: 4.26s
154:	learn: 14.3282038	total: 4.53s	remaining: 4.24s
155:	learn: 14.2672601	total: 4.55s	remaining: 4.21s
156:	learn: 14.1558952	total: 4.58s	remaining: 4.17s
157:	learn: 14.0328502	total: 4.61s	remaining: 4.14s
158:	learn: 13.9769510	total: 4.63s	remaining: 4.11s
159:	learn: 13.9259386	total: 4.66s	remaining: 4.08s
160:	learn: 13.8712208	total: 4.68s	remaining: 4.04s
161:	learn: 13.8553696	total: 4.71s	remaining: 4.01s
162:	learn: 13.7500608	total: 4.74s	remaining: 3.98s
163:	learn: 13.7258160	total: 4.76s	remaining: 3.95s
164:	learn: 13.6125019	total: 4.79s	remaining: 3.92s
165:	learn: 13.5681577	total: 4.81s	remaining: 3.88s
166:	learn: 13.5101392	total: 4.84s	remaining: 3.85s
167:	learn: 13.4944170	total: 4.86s	remaining: 3.82s
168:	learn: 13.4758510	total: 4.89s	remaining: 3.79s
169:	learn: 13.4513818	total: 4.91s	remaining: 3.76s
170:	learn: 13.3378793	total: 4.94s	remaining: 3.73s
171:	learn: 13.2934120	total: 4.97s	remaining: 3.7s
172:	learn: 13.2442661	total: 5s	remaining: 3.67s
173:	learn: 13.1852300	total: 5.02s	remaining: 3.64s
174:	learn: 13.0772632	total: 5.05s	remaining: 3.61s
175:	learn: 13.0402354	total: 5.08s	remaining: 3.58s
176:	learn: 13.0047433	total: 5.1s	remaining: 3.54s
177:	learn: 12.9303834	total: 5.13s	remaining: 3.51s
178:	learn: 12.8598436	total: 5.15s	remaining: 3.48s
179:	learn: 12.7990665	total: 5.18s	remaining: 3.46s
180:	learn: 12.7095636	total: 5.21s	remaining: 3.42s
181:	learn: 12.6340644	total: 5.24s	remaining: 3.39s
182:	learn: 12.5621624	total: 5.26s	remaining: 3.36s
183:	learn: 12.5354249	total: 5.29s	remaining: 3.33s
184:	learn: 12.4829336	total: 5.31s	remaining: 3.3s
185:	learn: 12.4529388	total: 5.34s	remaining: 3.27s
186:	learn: 12.3788317	total: 5.37s	remaining: 3.25s
187:	learn: 12.3037316	total: 5.4s	remaining: 3.22s
188:	learn: 12.1983493	total: 5.42s	remaining: 3.19s
189:	learn: 12.1711675	total: 5.45s	remaining: 3.16s
190:	learn: 12.1217733	total: 5.48s	remaining: 3.13s
191:	learn: 12.0832600	total: 5.5s	remaining: 3.1s
192:	learn: 12.0127028	total: 5.53s	remaining: 3.06s
193:	learn: 11.9255354	total: 5.55s	remaining: 3.04s
194:	learn: 11.8908213	total: 5.59s	remaining: 3.01s
195:	learn: 11.8443328	total: 5.61s	remaining: 2.98s
196:	learn: 11.8103191	total: 5.64s	remaining: 2.95s
197:	learn: 11.7696031	total: 5.66s	remaining: 2.92s
198:	learn: 11.7200811	total: 5.69s	remaining: 2.89s
199:	learn: 11.6551205	total: 5.71s	remaining: 2.86s
200:	learn: 11.6238265	total: 5.74s	remaining: 2.83s
201:	learn: 11.5225634	total: 5.76s	remaining: 2.8s
202:	learn: 11.4468078	total: 5.79s	remaining: 2.77s
203:	learn: 11.4143074	total: 5.83s	remaining: 2.74s
204:	learn: 11.3831537	total: 5.85s	remaining: 2.71s
205:	learn: 11.3559117	total: 5.88s	remaining: 2.68s
206:	learn: 11.3453635	total: 5.9s	remaining: 2.65s
207:	learn: 11.3023110	total: 5.93s	remaining: 2.62s
208:	learn: 11.2751825	total: 5.95s	remaining: 2.59s
209:	learn: 11.2454377	total: 5.99s	remaining: 2.56s
210:	learn: 11.2300814	total: 6.01s	remaining: 2.54s
211:	learn: 11.1739504	total: 6.04s	remaining: 2.51s
212:	learn: 11.1388920	total: 6.06s	remaining: 2.48s
213:	learn: 11.0933003	total: 6.09s	remaining: 2.45s
214:	learn: 11.0336421	total: 6.11s	remaining: 2.42s
215:	learn: 11.0041887	total: 6.14s	remaining: 2.39s
216:	learn: 10.9756683	total: 6.16s	remaining: 2.36s
217:	learn: 10.9622324	total: 6.19s	remaining: 2.33s
218:	learn: 10.9400379	total: 6.22s	remaining: 2.3s
219:	learn: 10.9122171	total: 6.25s	remaining: 2.27s
220:	learn: 10.8702127	total: 6.28s	remaining: 2.24s
221:	learn: 10.8384354	total: 6.3s	remaining: 2.21s
222:	learn: 10.8064597	total: 6.33s	remaining: 2.19s
223:	learn: 10.7753840	total: 6.35s	remaining: 2.15s
224:	learn: 10.7500544	total: 6.38s	remaining: 2.13s
225:	learn: 10.7000854	total: 6.41s	remaining: 2.1s
226:	learn: 10.6788968	total: 6.44s	remaining: 2.07s
227:	learn: 10.6541308	total: 6.46s	remaining: 2.04s
228:	learn: 10.6163808	total: 6.49s	remaining: 2.01s
229:	learn: 10.5664491	total: 6.51s	remaining: 1.98s
230:	learn: 10.5384259	total: 6.54s	remaining: 1.95s
231:	learn: 10.5168722	total: 6.56s	remaining: 1.92s
232:	learn: 10.4880672	total: 6.59s	remaining: 1.89s
233:	learn: 10.4528880	total: 6.61s	remaining: 1.86s
234:	learn: 10.4358848	total: 6.64s	remaining: 1.84s
235:	learn: 10.4043764	total: 6.67s	remaining: 1.81s
236:	learn: 10.3835177	total: 6.7s	remaining: 1.78s
237:	learn: 10.3564621	total: 6.72s	remaining: 1.75s
238:	learn: 10.3300698	total: 6.75s	remaining: 1.72s
239:	learn: 10.3072404	total: 6.77s	remaining: 1.69s
240:	learn: 10.2885220	total: 6.8s	remaining: 1.66s
241:	learn: 10.2801250	total: 6.82s	remaining: 1.63s
242:	learn: 10.2598176	total: 6.84s	remaining: 1.6s
243:	learn: 10.2300900	total: 6.87s	remaining: 1.58s
244:	learn: 10.2013001	total: 6.9s	remaining: 1.55s
245:	learn: 10.1581217	total: 6.92s	remaining: 1.52s
246:	learn: 10.1499441	total: 6.95s	remaining: 1.49s
247:	learn: 10.1216778	total: 6.97s	remaining: 1.46s
248:	learn: 10.0802136	total: 6.99s	remaining: 1.43s
249:	learn: 10.0644908	total: 7.02s	remaining: 1.4s
250:	learn: 10.0271888	total: 7.04s	remaining: 1.37s
251:	learn: 9.9585656	total: 7.07s	remaining: 1.34s
252:	learn: 9.9156424	total: 7.1s	remaining: 1.32s
253:	learn: 9.9015845	total: 7.13s	remaining: 1.29s
254:	learn: 9.8802631	total: 7.15s	remaining: 1.26s
255:	learn: 9.8637488	total: 7.18s	remaining: 1.23s
256:	learn: 9.8431359	total: 7.2s	remaining: 1.21s
257:	learn: 9.8100809	total: 7.23s	remaining: 1.18s
258:	learn: 9.7856290	total: 7.25s	remaining: 1.15s
259:	learn: 9.7684665	total: 7.28s	remaining: 1.12s
260:	learn: 9.7491274	total: 7.3s	remaining: 1.09s
261:	learn: 9.7290952	total: 7.33s	remaining: 1.06s
262:	learn: 9.6988988	total: 7.36s	remaining: 1.03s
263:	learn: 9.6731295	total: 7.38s	remaining: 1.01s
264:	learn: 9.6511532	total: 7.41s	remaining: 978ms
265:	learn: 9.6215242	total: 7.43s	remaining: 950ms
266:	learn: 9.6028004	total: 7.46s	remaining: 922ms
267:	learn: 9.5849636	total: 7.48s	remaining: 893ms
268:	learn: 9.5537664	total: 7.51s	remaining: 865ms
269:	learn: 9.5330605	total: 7.54s	remaining: 838ms
270:	learn: 9.5181912	total: 7.57s	remaining: 810ms
271:	learn: 9.5123758	total: 7.59s	remaining: 782ms
272:	learn: 9.4832216	total: 7.62s	remaining: 754ms
273:	learn: 9.4638778	total: 7.64s	remaining: 726ms
274:	learn: 9.4456890	total: 7.67s	remaining: 697ms
275:	learn: 9.4163159	total: 7.69s	remaining: 669ms
276:	learn: 9.3823442	total: 7.72s	remaining: 641ms
277:	learn: 9.3549677	total: 7.75s	remaining: 613ms
278:	learn: 9.3386790	total: 7.77s	remaining: 585ms
279:	learn: 9.3273180	total: 7.79s	remaining: 557ms
280:	learn: 9.2861700	total: 7.82s	remaining: 529ms
281:	learn: 9.2564421	total: 7.84s	remaining: 501ms
282:	learn: 9.2362960	total: 7.87s	remaining: 473ms
283:	learn: 9.2213087	total: 7.89s	remaining: 445ms
284:	learn: 9.2137366	total: 7.92s	remaining: 417ms
285:	learn: 9.2036812	total: 7.95s	remaining: 389ms
286:	learn: 9.1880212	total: 7.98s	remaining: 361ms
287:	learn: 9.1753952	total: 8s	remaining: 333ms
288:	learn: 9.1502121	total: 8.03s	remaining: 305ms
289:	learn: 9.1346178	total: 8.05s	remaining: 278ms
290:	learn: 9.1221911	total: 8.07s	remaining: 250ms
291:	learn: 9.0950561	total: 8.1s	remaining: 222ms
292:	learn: 9.0742575	total: 8.12s	remaining: 194ms
293:	learn: 9.0466144	total: 8.15s	remaining: 166ms
294:	learn: 8.9886202	total: 8.18s	remaining: 139ms
295:	learn: 8.9467069	total: 8.2s	remaining: 111ms
296:	learn: 8.9265029	total: 8.23s	remaining: 83.1ms
297:	learn: 8.8995921	total: 8.25s	remaining: 55.4ms
298:	learn: 8.8813384	total: 8.28s	remaining: 27.7ms
299:	learn: 8.8736256	total: 8.3s	remaining: 0us
0:	learn: 46.8188846	total: 27.5ms	remaining: 8.22s
1:	learn: 45.9726402	total: 55.1ms	remaining: 8.21s
2:	learn: 45.2144460	total: 82.8ms	remaining: 8.2s
3:	learn: 44.2563351	total: 110ms	remaining: 8.1s
4:	learn: 43.5408994	total: 137ms	remaining: 8.06s
5:	learn: 42.8364810	total: 164ms	remaining: 8.06s
6:	learn: 42.0153804	total: 205ms	remaining: 8.57s
7:	learn: 41.5473671	total: 236ms	remaining: 8.62s
8:	learn: 40.7744756	total: 264ms	remaining: 8.53s
9:	learn: 40.1702554	total: 291ms	remaining: 8.43s
10:	learn: 39.4636842	total: 318ms	remaining: 8.36s
11:	learn: 38.8831049	total: 333ms	remaining: 7.98s
12:	learn: 38.5197723	total: 361ms	remaining: 7.97s
13:	learn: 38.1990585	total: 391ms	remaining: 7.99s
14:	learn: 37.6657989	total: 430ms	remaining: 8.17s
15:	learn: 37.2969732	total: 466ms	remaining: 8.27s
16:	learn: 36.8221350	total: 494ms	remaining: 8.22s
17:	learn: 36.2123369	total: 522ms	remaining: 8.18s
18:	learn: 35.8755271	total: 549ms	remaining: 8.12s
19:	learn: 35.4739707	total: 576ms	remaining: 8.06s
20:	learn: 35.0012472	total: 604ms	remaining: 8.02s
21:	learn: 34.6477631	total: 640ms	remaining: 8.08s
22:	learn: 34.2247055	total: 670ms	remaining: 8.07s
23:	learn: 33.8047150	total: 704ms	remaining: 8.1s
24:	learn: 33.3972078	total: 731ms	remaining: 8.04s
25:	learn: 32.8076440	total: 758ms	remaining: 7.99s
26:	learn: 32.4957574	total: 785ms	remaining: 7.94s
27:	learn: 32.1823910	total: 814ms	remaining: 7.9s
28:	learn: 31.8761156	total: 844ms	remaining: 7.89s
29:	learn: 31.6118984	total: 884ms	remaining: 7.95s
30:	learn: 31.2041248	total: 912ms	remaining: 7.91s
31:	learn: 30.9798718	total: 939ms	remaining: 7.86s
32:	learn: 30.6632137	total: 974ms	remaining: 7.88s
33:	learn: 30.3572185	total: 1s	remaining: 7.84s
34:	learn: 30.0045459	total: 1.03s	remaining: 7.79s
35:	learn: 29.7559980	total: 1.06s	remaining: 7.75s
36:	learn: 29.3862349	total: 1.08s	remaining: 7.71s
37:	learn: 29.1066177	total: 1.11s	remaining: 7.69s
38:	learn: 28.8253904	total: 1.14s	remaining: 7.64s
39:	learn: 28.4917320	total: 1.17s	remaining: 7.59s
40:	learn: 28.2730169	total: 1.2s	remaining: 7.58s
41:	learn: 28.0652338	total: 1.23s	remaining: 7.54s
42:	learn: 27.8025307	total: 1.25s	remaining: 7.5s
43:	learn: 27.5627117	total: 1.28s	remaining: 7.48s
44:	learn: 27.3217632	total: 1.32s	remaining: 7.49s
45:	learn: 27.0112958	total: 1.35s	remaining: 7.45s
46:	learn: 26.8300808	total: 1.38s	remaining: 7.41s
47:	learn: 26.5816136	total: 1.41s	remaining: 7.38s
48:	learn: 26.3838749	total: 1.44s	remaining: 7.38s
49:	learn: 26.2191374	total: 1.47s	remaining: 7.33s
50:	learn: 26.0298048	total: 1.49s	remaining: 7.29s
51:	learn: 25.8685966	total: 1.53s	remaining: 7.29s
52:	learn: 25.5853885	total: 1.56s	remaining: 7.25s
53:	learn: 25.2325006	total: 1.58s	remaining: 7.21s
54:	learn: 25.0294895	total: 1.61s	remaining: 7.17s
55:	learn: 24.8123194	total: 1.64s	remaining: 7.13s
56:	learn: 24.6175769	total: 1.66s	remaining: 7.09s
57:	learn: 24.4799104	total: 1.7s	remaining: 7.09s
58:	learn: 24.2874293	total: 1.73s	remaining: 7.06s
59:	learn: 24.0996038	total: 1.76s	remaining: 7.05s
60:	learn: 23.8568310	total: 1.79s	remaining: 7.02s
61:	learn: 23.6508912	total: 1.82s	remaining: 6.98s
62:	learn: 23.4201097	total: 1.85s	remaining: 6.95s
63:	learn: 23.1941561	total: 1.87s	remaining: 6.91s
64:	learn: 23.0619226	total: 1.9s	remaining: 6.87s
65:	learn: 22.9049921	total: 1.94s	remaining: 6.86s
66:	learn: 22.7833057	total: 1.97s	remaining: 6.85s
67:	learn: 22.6428922	total: 2s	remaining: 6.81s
68:	learn: 22.4738494	total: 2.02s	remaining: 6.78s
69:	learn: 22.3126837	total: 2.05s	remaining: 6.74s
70:	learn: 22.1934569	total: 2.08s	remaining: 6.7s
71:	learn: 21.9921513	total: 2.1s	remaining: 6.66s
72:	learn: 21.7966100	total: 2.13s	remaining: 6.63s
73:	learn: 21.6703669	total: 2.16s	remaining: 6.61s
74:	learn: 21.5517108	total: 2.19s	remaining: 6.58s
75:	learn: 21.3795499	total: 2.23s	remaining: 6.57s
76:	learn: 21.2321877	total: 2.26s	remaining: 6.54s
77:	learn: 21.0921581	total: 2.28s	remaining: 6.5s
78:	learn: 20.9204877	total: 2.31s	remaining: 6.46s
79:	learn: 20.7078986	total: 2.34s	remaining: 6.43s
80:	learn: 20.6069210	total: 2.37s	remaining: 6.39s
81:	learn: 20.3718639	total: 2.39s	remaining: 6.36s
82:	learn: 20.2660046	total: 2.43s	remaining: 6.36s
83:	learn: 20.1453571	total: 2.46s	remaining: 6.33s
84:	learn: 20.0303912	total: 2.49s	remaining: 6.3s
85:	learn: 19.9530417	total: 2.52s	remaining: 6.26s
86:	learn: 19.8719239	total: 2.54s	remaining: 6.23s
87:	learn: 19.8051193	total: 2.57s	remaining: 6.19s
88:	learn: 19.6390791	total: 2.6s	remaining: 6.16s
89:	learn: 19.5163125	total: 2.6s	remaining: 6.07s
90:	learn: 19.3820098	total: 2.63s	remaining: 6.05s
91:	learn: 19.2634584	total: 2.67s	remaining: 6.04s
92:	learn: 19.1877570	total: 2.7s	remaining: 6.01s
93:	learn: 19.1136222	total: 2.73s	remaining: 5.98s
94:	learn: 19.0378846	total: 2.75s	remaining: 5.94s
95:	learn: 18.9699092	total: 2.78s	remaining: 5.91s
96:	learn: 18.8750815	total: 2.81s	remaining: 5.88s
97:	learn: 18.7851544	total: 2.84s	remaining: 5.86s
98:	learn: 18.6886359	total: 2.87s	remaining: 5.83s
99:	learn: 18.5967562	total: 2.9s	remaining: 5.8s
100:	learn: 18.5134464	total: 2.93s	remaining: 5.78s
101:	learn: 18.4449133	total: 2.96s	remaining: 5.75s
102:	learn: 18.3604967	total: 2.99s	remaining: 5.71s
103:	learn: 18.2256969	total: 3.01s	remaining: 5.68s
104:	learn: 18.1523158	total: 3.04s	remaining: 5.64s
105:	learn: 18.0374485	total: 3.07s	remaining: 5.62s
106:	learn: 17.9731649	total: 3.11s	remaining: 5.6s
107:	learn: 17.9251416	total: 3.13s	remaining: 5.57s
108:	learn: 17.8617656	total: 3.17s	remaining: 5.55s
109:	learn: 17.7727167	total: 3.2s	remaining: 5.52s
110:	learn: 17.6826822	total: 3.23s	remaining: 5.49s
111:	learn: 17.5769208	total: 3.25s	remaining: 5.46s
112:	learn: 17.4884222	total: 3.28s	remaining: 5.43s
113:	learn: 17.3765888	total: 3.31s	remaining: 5.39s
114:	learn: 17.3037030	total: 3.34s	remaining: 5.37s
115:	learn: 17.2153950	total: 3.37s	remaining: 5.34s
116:	learn: 17.1490540	total: 3.4s	remaining: 5.32s
117:	learn: 17.0634815	total: 3.42s	remaining: 5.28s
118:	learn: 16.9513537	total: 3.45s	remaining: 5.25s
119:	learn: 16.8224657	total: 3.48s	remaining: 5.22s
120:	learn: 16.7342682	total: 3.51s	remaining: 5.19s
121:	learn: 16.6438712	total: 3.54s	remaining: 5.16s
122:	learn: 16.5473010	total: 3.57s	remaining: 5.13s
123:	learn: 16.4734305	total: 3.59s	remaining: 5.1s
124:	learn: 16.3442257	total: 3.62s	remaining: 5.07s
125:	learn: 16.2501040	total: 3.65s	remaining: 5.05s
126:	learn: 16.1413869	total: 3.68s	remaining: 5.01s
127:	learn: 16.0650386	total: 3.71s	remaining: 4.98s
128:	learn: 15.9654002	total: 3.74s	remaining: 4.96s
129:	learn: 15.9016632	total: 3.77s	remaining: 4.93s
130:	learn: 15.8386094	total: 3.8s	remaining: 4.9s
131:	learn: 15.7695128	total: 3.83s	remaining: 4.87s
132:	learn: 15.6863810	total: 3.85s	remaining: 4.84s
133:	learn: 15.6014453	total: 3.89s	remaining: 4.82s
134:	learn: 15.5533660	total: 3.91s	remaining: 4.78s
135:	learn: 15.4234281	total: 3.94s	remaining: 4.75s
136:	learn: 15.3971004	total: 3.97s	remaining: 4.72s
137:	learn: 15.3398975	total: 4.01s	remaining: 4.71s
138:	learn: 15.2689760	total: 4.04s	remaining: 4.67s
139:	learn: 15.1651925	total: 4.06s	remaining: 4.64s
140:	learn: 15.1125683	total: 4.09s	remaining: 4.61s
141:	learn: 15.0573442	total: 4.13s	remaining: 4.59s
142:	learn: 15.0129880	total: 4.15s	remaining: 4.56s
143:	learn: 14.9597237	total: 4.18s	remaining: 4.53s
144:	learn: 14.9235224	total: 4.21s	remaining: 4.5s
145:	learn: 14.8333558	total: 4.24s	remaining: 4.47s
146:	learn: 14.7273903	total: 4.27s	remaining: 4.44s
147:	learn: 14.6622611	total: 4.29s	remaining: 4.41s
148:	learn: 14.5908471	total: 4.32s	remaining: 4.38s
149:	learn: 14.5076303	total: 4.35s	remaining: 4.35s
150:	learn: 14.4133074	total: 4.38s	remaining: 4.33s
151:	learn: 14.3479884	total: 4.41s	remaining: 4.29s
152:	learn: 14.2884168	total: 4.44s	remaining: 4.26s
153:	learn: 14.2238756	total: 4.47s	remaining: 4.24s
154:	learn: 14.1598526	total: 4.5s	remaining: 4.21s
155:	learn: 14.1006242	total: 4.53s	remaining: 4.18s
156:	learn: 14.0116182	total: 4.55s	remaining: 4.15s
157:	learn: 13.9456796	total: 4.58s	remaining: 4.12s
158:	learn: 13.8579899	total: 4.62s	remaining: 4.09s
159:	learn: 13.8094183	total: 4.64s	remaining: 4.06s
160:	learn: 13.6558280	total: 4.67s	remaining: 4.03s
161:	learn: 13.5837377	total: 4.71s	remaining: 4.01s
162:	learn: 13.5105749	total: 4.73s	remaining: 3.98s
163:	learn: 13.3959486	total: 4.76s	remaining: 3.95s
164:	learn: 13.3427701	total: 4.79s	remaining: 3.92s
165:	learn: 13.2742960	total: 4.81s	remaining: 3.88s
166:	learn: 13.2232946	total: 4.84s	remaining: 3.85s
167:	learn: 13.1639434	total: 4.87s	remaining: 3.83s
168:	learn: 13.1001998	total: 4.91s	remaining: 3.8s
169:	learn: 13.0187776	total: 4.94s	remaining: 3.78s
170:	learn: 12.9284509	total: 4.97s	remaining: 3.75s
171:	learn: 12.8564085	total: 5s	remaining: 3.72s
172:	learn: 12.7786756	total: 5.03s	remaining: 3.69s
173:	learn: 12.7404900	total: 5.05s	remaining: 3.66s
174:	learn: 12.6844545	total: 5.08s	remaining: 3.63s
175:	learn: 12.6021043	total: 5.12s	remaining: 3.6s
176:	learn: 12.5809817	total: 5.14s	remaining: 3.58s
177:	learn: 12.5380271	total: 5.18s	remaining: 3.55s
178:	learn: 12.5044811	total: 5.2s	remaining: 3.52s
179:	learn: 12.3824039	total: 5.23s	remaining: 3.49s
180:	learn: 12.3163074	total: 5.26s	remaining: 3.46s
181:	learn: 12.2260642	total: 5.28s	remaining: 3.43s
182:	learn: 12.1962262	total: 5.31s	remaining: 3.4s
183:	learn: 12.1075043	total: 5.34s	remaining: 3.37s
184:	learn: 12.0299051	total: 5.38s	remaining: 3.34s
185:	learn: 11.9750127	total: 5.41s	remaining: 3.31s
186:	learn: 11.9007112	total: 5.43s	remaining: 3.28s
187:	learn: 11.8169703	total: 5.46s	remaining: 3.25s
188:	learn: 11.7451722	total: 5.49s	remaining: 3.22s
189:	learn: 11.6844013	total: 5.51s	remaining: 3.19s
190:	learn: 11.5844322	total: 5.54s	remaining: 3.16s
191:	learn: 11.5389707	total: 5.57s	remaining: 3.13s
192:	learn: 11.4989050	total: 5.61s	remaining: 3.11s
193:	learn: 11.4305771	total: 5.64s	remaining: 3.08s
194:	learn: 11.3188820	total: 5.67s	remaining: 3.05s
195:	learn: 11.2915156	total: 5.69s	remaining: 3.02s
196:	learn: 11.2329580	total: 5.72s	remaining: 2.99s
197:	learn: 11.1759941	total: 5.75s	remaining: 2.96s
198:	learn: 11.1562433	total: 5.77s	remaining: 2.93s
199:	learn: 11.1118627	total: 5.8s	remaining: 2.9s
200:	learn: 11.0908712	total: 5.84s	remaining: 2.88s
201:	learn: 11.0365972	total: 5.87s	remaining: 2.85s
202:	learn: 10.9633932	total: 5.9s	remaining: 2.82s
203:	learn: 10.8837891	total: 5.93s	remaining: 2.79s
204:	learn: 10.8038584	total: 5.96s	remaining: 2.76s
205:	learn: 10.7729034	total: 5.98s	remaining: 2.73s
206:	learn: 10.7289468	total: 6.01s	remaining: 2.7s
207:	learn: 10.6734340	total: 6.04s	remaining: 2.67s
208:	learn: 10.6482350	total: 6.08s	remaining: 2.65s
209:	learn: 10.5975506	total: 6.11s	remaining: 2.62s
210:	learn: 10.5528228	total: 6.13s	remaining: 2.59s
211:	learn: 10.5370360	total: 6.16s	remaining: 2.56s
212:	learn: 10.5230215	total: 6.19s	remaining: 2.53s
213:	learn: 10.4857244	total: 6.21s	remaining: 2.5s
214:	learn: 10.4212276	total: 6.24s	remaining: 2.47s
215:	learn: 10.4085529	total: 6.27s	remaining: 2.44s
216:	learn: 10.3355719	total: 6.31s	remaining: 2.41s
217:	learn: 10.2785284	total: 6.34s	remaining: 2.38s
218:	learn: 10.2125565	total: 6.37s	remaining: 2.35s
219:	learn: 10.1797782	total: 6.39s	remaining: 2.33s
220:	learn: 10.1530157	total: 6.42s	remaining: 2.29s
221:	learn: 10.1300360	total: 6.45s	remaining: 2.27s
222:	learn: 10.1168807	total: 6.47s	remaining: 2.23s
223:	learn: 10.0969154	total: 6.5s	remaining: 2.21s
224:	learn: 10.0800220	total: 6.53s	remaining: 2.18s
225:	learn: 10.0495195	total: 6.57s	remaining: 2.15s
226:	learn: 10.0130864	total: 6.59s	remaining: 2.12s
227:	learn: 9.9733051	total: 6.62s	remaining: 2.09s
228:	learn: 9.9186624	total: 6.65s	remaining: 2.06s
229:	learn: 9.8408517	total: 6.68s	remaining: 2.03s
230:	learn: 9.8020626	total: 6.71s	remaining: 2s
231:	learn: 9.7754447	total: 6.75s	remaining: 1.98s
232:	learn: 9.7642804	total: 6.78s	remaining: 1.95s
233:	learn: 9.7368568	total: 6.81s	remaining: 1.92s
234:	learn: 9.7056387	total: 6.85s	remaining: 1.89s
235:	learn: 9.6936392	total: 6.88s	remaining: 1.86s
236:	learn: 9.6470411	total: 6.91s	remaining: 1.83s
237:	learn: 9.5906698	total: 6.94s	remaining: 1.81s
238:	learn: 9.5416290	total: 6.97s	remaining: 1.78s
239:	learn: 9.5255228	total: 7s	remaining: 1.75s
240:	learn: 9.4529465	total: 7.03s	remaining: 1.72s
241:	learn: 9.4106807	total: 7.05s	remaining: 1.69s
242:	learn: 9.3728828	total: 7.09s	remaining: 1.66s
243:	learn: 9.3399456	total: 7.11s	remaining: 1.63s
244:	learn: 9.3118951	total: 7.14s	remaining: 1.6s
245:	learn: 9.3005486	total: 7.18s	remaining: 1.58s
246:	learn: 9.2903549	total: 7.21s	remaining: 1.55s
247:	learn: 9.2453982	total: 7.23s	remaining: 1.52s
248:	learn: 9.2340791	total: 7.26s	remaining: 1.49s
249:	learn: 9.2022569	total: 7.29s	remaining: 1.46s
250:	learn: 9.1782703	total: 7.33s	remaining: 1.43s
251:	learn: 9.1383043	total: 7.36s	remaining: 1.4s
252:	learn: 9.1021623	total: 7.38s	remaining: 1.37s
253:	learn: 9.0892727	total: 7.41s	remaining: 1.34s
254:	learn: 9.0521468	total: 7.44s	remaining: 1.31s
255:	learn: 9.0384933	total: 7.46s	remaining: 1.28s
256:	learn: 9.0063168	total: 7.49s	remaining: 1.25s
257:	learn: 8.9956277	total: 7.52s	remaining: 1.22s
258:	learn: 8.9496921	total: 7.54s	remaining: 1.19s
259:	learn: 8.9036568	total: 7.58s	remaining: 1.17s
260:	learn: 8.8936773	total: 7.61s	remaining: 1.14s
261:	learn: 8.8516187	total: 7.64s	remaining: 1.11s
262:	learn: 8.8136929	total: 7.67s	remaining: 1.08s
263:	learn: 8.7857931	total: 7.7s	remaining: 1.05s
264:	learn: 8.7542759	total: 7.73s	remaining: 1.02s
265:	learn: 8.7388965	total: 7.75s	remaining: 991ms
266:	learn: 8.7298188	total: 7.78s	remaining: 962ms
267:	learn: 8.7213757	total: 7.82s	remaining: 934ms
268:	learn: 8.6906438	total: 7.85s	remaining: 905ms
269:	learn: 8.6693053	total: 7.88s	remaining: 875ms
270:	learn: 8.6470936	total: 7.9s	remaining: 846ms
271:	learn: 8.6096396	total: 7.93s	remaining: 816ms
272:	learn: 8.5746539	total: 7.96s	remaining: 787ms
273:	learn: 8.5560630	total: 7.98s	remaining: 758ms
274:	learn: 8.5399246	total: 8.01s	remaining: 728ms
275:	learn: 8.4986755	total: 8.06s	remaining: 701ms
276:	learn: 8.4692322	total: 8.09s	remaining: 671ms
277:	learn: 8.4447901	total: 8.11s	remaining: 642ms
278:	learn: 8.4280272	total: 8.14s	remaining: 613ms
279:	learn: 8.3947119	total: 8.17s	remaining: 583ms
280:	learn: 8.3554975	total: 8.2s	remaining: 554ms
281:	learn: 8.3221566	total: 8.22s	remaining: 525ms
282:	learn: 8.3131827	total: 8.26s	remaining: 496ms
283:	learn: 8.2891313	total: 8.28s	remaining: 467ms
284:	learn: 8.2839105	total: 8.32s	remaining: 438ms
285:	learn: 8.2757450	total: 8.34s	remaining: 408ms
286:	learn: 8.2388411	total: 8.37s	remaining: 379ms
287:	learn: 8.2074603	total: 8.4s	remaining: 350ms
288:	learn: 8.1701839	total: 8.42s	remaining: 321ms
289:	learn: 8.1498646	total: 8.45s	remaining: 291ms
290:	learn: 8.1195237	total: 8.49s	remaining: 263ms
291:	learn: 8.0995089	total: 8.52s	remaining: 233ms
292:	learn: 8.0775287	total: 8.55s	remaining: 204ms
293:	learn: 8.0527267	total: 8.58s	remaining: 175ms
294:	learn: 8.0201604	total: 8.61s	remaining: 146ms
295:	learn: 8.0106207	total: 8.63s	remaining: 117ms
296:	learn: 7.9693660	total: 8.66s	remaining: 87.5ms
297:	learn: 7.9463481	total: 8.69s	remaining: 58.4ms
298:	learn: 7.9254902	total: 8.72s	remaining: 29.2ms
299:	learn: 7.9210391	total: 8.74s	remaining: 0us
0:	learn: 27.6038312	total: 3.9ms	remaining: 386ms
1:	learn: 27.2191116	total: 7.12ms	remaining: 349ms
2:	learn: 26.7865547	total: 10.2ms	remaining: 331ms
3:	learn: 26.3714913	total: 11.7ms	remaining: 281ms
4:	learn: 26.0332483	total: 14.9ms	remaining: 283ms
5:	learn: 25.7050562	total: 18.2ms	remaining: 286ms
6:	learn: 25.4785422	total: 21.4ms	remaining: 285ms
7:	learn: 25.1441404	total: 24.6ms	remaining: 283ms
8:	learn: 24.9157842	total: 27.8ms	remaining: 281ms
9:	learn: 24.6209216	total: 30.9ms	remaining: 278ms
10:	learn: 24.3693387	total: 34.1ms	remaining: 276ms
11:	learn: 24.0303062	total: 37.1ms	remaining: 272ms
12:	learn: 23.8077285	total: 40.3ms	remaining: 270ms
13:	learn: 23.5654890	total: 43.8ms	remaining: 269ms
14:	learn: 23.2762076	total: 47.2ms	remaining: 268ms
15:	learn: 23.0977209	total: 50.3ms	remaining: 264ms
16:	learn: 22.8949063	total: 53.6ms	remaining: 261ms
17:	learn: 22.6504386	total: 56.7ms	remaining: 258ms
18:	learn: 22.4150811	total: 60.1ms	remaining: 256ms
19:	learn: 22.2343263	total: 63.8ms	remaining: 255ms
20:	learn: 21.9985519	total: 67.3ms	remaining: 253ms
21:	learn: 21.8211155	total: 70.6ms	remaining: 250ms
22:	learn: 21.6185427	total: 74.1ms	remaining: 248ms
23:	learn: 21.4645254	total: 77.7ms	remaining: 246ms
24:	learn: 21.2803565	total: 81.6ms	remaining: 245ms
25:	learn: 21.1111025	total: 87.5ms	remaining: 249ms
26:	learn: 20.9023051	total: 92.8ms	remaining: 251ms
27:	learn: 20.7130279	total: 101ms	remaining: 261ms
28:	learn: 20.5558010	total: 108ms	remaining: 264ms
29:	learn: 20.4464255	total: 112ms	remaining: 262ms
30:	learn: 20.3294764	total: 118ms	remaining: 263ms
31:	learn: 20.1622925	total: 122ms	remaining: 259ms
32:	learn: 19.9886267	total: 126ms	remaining: 256ms
33:	learn: 19.8595988	total: 130ms	remaining: 252ms
34:	learn: 19.7827876	total: 131ms	remaining: 243ms
35:	learn: 19.5868251	total: 135ms	remaining: 239ms
36:	learn: 19.4476465	total: 138ms	remaining: 236ms
37:	learn: 19.3315910	total: 142ms	remaining: 232ms
38:	learn: 19.2566315	total: 146ms	remaining: 228ms
39:	learn: 19.1522400	total: 150ms	remaining: 225ms
40:	learn: 18.9999212	total: 154ms	remaining: 221ms
41:	learn: 18.9096209	total: 158ms	remaining: 218ms
42:	learn: 18.7819625	total: 162ms	remaining: 214ms
43:	learn: 18.6535325	total: 166ms	remaining: 211ms
44:	learn: 18.5551323	total: 171ms	remaining: 209ms
45:	learn: 18.4321772	total: 176ms	remaining: 207ms
46:	learn: 18.3242799	total: 180ms	remaining: 203ms
47:	learn: 18.1901748	total: 184ms	remaining: 199ms
48:	learn: 18.1005644	total: 187ms	remaining: 195ms
49:	learn: 18.0312671	total: 191ms	remaining: 191ms
50:	learn: 17.9252161	total: 195ms	remaining: 187ms
51:	learn: 17.8070959	total: 198ms	remaining: 183ms
52:	learn: 17.7176812	total: 202ms	remaining: 179ms
53:	learn: 17.6065056	total: 206ms	remaining: 175ms
54:	learn: 17.5082035	total: 210ms	remaining: 172ms
55:	learn: 17.4057287	total: 214ms	remaining: 168ms
56:	learn: 17.3112897	total: 217ms	remaining: 164ms
57:	learn: 17.2448274	total: 221ms	remaining: 160ms
58:	learn: 17.1495043	total: 225ms	remaining: 156ms
59:	learn: 17.0639515	total: 229ms	remaining: 152ms
60:	learn: 16.9851402	total: 233ms	remaining: 149ms
61:	learn: 16.9008378	total: 236ms	remaining: 145ms
62:	learn: 16.8235050	total: 241ms	remaining: 142ms
63:	learn: 16.7267315	total: 245ms	remaining: 138ms
64:	learn: 16.6342497	total: 248ms	remaining: 134ms
65:	learn: 16.5662557	total: 253ms	remaining: 130ms
66:	learn: 16.5209506	total: 257ms	remaining: 126ms
67:	learn: 16.4807294	total: 259ms	remaining: 122ms
68:	learn: 16.3985778	total: 263ms	remaining: 118ms
69:	learn: 16.3027532	total: 266ms	remaining: 114ms
70:	learn: 16.2549987	total: 271ms	remaining: 111ms
71:	learn: 16.2000642	total: 275ms	remaining: 107ms
72:	learn: 16.1382821	total: 279ms	remaining: 103ms
73:	learn: 16.0565514	total: 288ms	remaining: 101ms
74:	learn: 15.9855376	total: 295ms	remaining: 98.2ms
75:	learn: 15.9391274	total: 301ms	remaining: 94.9ms
76:	learn: 15.8829964	total: 305ms	remaining: 91.1ms
77:	learn: 15.8161276	total: 309ms	remaining: 87.1ms
78:	learn: 15.7514329	total: 314ms	remaining: 83.5ms
79:	learn: 15.6746307	total: 318ms	remaining: 79.4ms
80:	learn: 15.6170381	total: 321ms	remaining: 75.4ms
81:	learn: 15.5697030	total: 325ms	remaining: 71.4ms
82:	learn: 15.5068721	total: 329ms	remaining: 67.4ms
83:	learn: 15.4500349	total: 332ms	remaining: 63.3ms
84:	learn: 15.3971554	total: 336ms	remaining: 59.4ms
85:	learn: 15.3656106	total: 340ms	remaining: 55.4ms
86:	learn: 15.3224902	total: 344ms	remaining: 51.4ms
87:	learn: 15.2771205	total: 348ms	remaining: 47.4ms
88:	learn: 15.2317846	total: 351ms	remaining: 43.4ms
89:	learn: 15.1742186	total: 355ms	remaining: 39.4ms
90:	learn: 15.1079571	total: 358ms	remaining: 35.4ms
91:	learn: 15.0620421	total: 362ms	remaining: 31.5ms
92:	learn: 14.9934851	total: 365ms	remaining: 27.5ms
93:	learn: 14.9356945	total: 369ms	remaining: 23.5ms
94:	learn: 14.8958510	total: 372ms	remaining: 19.6ms
95:	learn: 14.8374494	total: 376ms	remaining: 15.7ms
96:	learn: 14.7840510	total: 380ms	remaining: 11.8ms
97:	learn: 14.7352430	total: 384ms	remaining: 7.84ms
98:	learn: 14.6793257	total: 388ms	remaining: 3.91ms
99:	learn: 14.6300647	total: 392ms	remaining: 0us
0:	learn: 43.1421736	total: 3.84ms	remaining: 381ms
1:	learn: 42.5118728	total: 7.82ms	remaining: 383ms
2:	learn: 41.6410174	total: 11.7ms	remaining: 377ms
3:	learn: 41.0674171	total: 15.2ms	remaining: 365ms
4:	learn: 40.3172071	total: 19.2ms	remaining: 366ms
5:	learn: 39.6299071	total: 22.5ms	remaining: 353ms
6:	learn: 39.0141840	total: 26.2ms	remaining: 348ms
7:	learn: 38.2304564	total: 30ms	remaining: 345ms
8:	learn: 37.7031082	total: 34.9ms	remaining: 352ms
9:	learn: 37.1332893	total: 40.8ms	remaining: 367ms
10:	learn: 36.6806704	total: 46.6ms	remaining: 377ms
11:	learn: 35.9706978	total: 53.2ms	remaining: 390ms
12:	learn: 35.5378401	total: 58.6ms	remaining: 392ms
13:	learn: 34.9165313	total: 63.4ms	remaining: 390ms
14:	learn: 34.4102835	total: 67.4ms	remaining: 382ms
15:	learn: 34.0615387	total: 72.9ms	remaining: 383ms
16:	learn: 33.6666310	total: 77.3ms	remaining: 377ms
17:	learn: 33.1475457	total: 81ms	remaining: 369ms
18:	learn: 32.7064507	total: 85.2ms	remaining: 363ms
19:	learn: 32.1882514	total: 89.2ms	remaining: 357ms
20:	learn: 31.7215821	total: 93.1ms	remaining: 350ms
21:	learn: 31.3541769	total: 95.5ms	remaining: 339ms
22:	learn: 30.8484740	total: 99.3ms	remaining: 332ms
23:	learn: 30.4042519	total: 103ms	remaining: 327ms
24:	learn: 30.0628747	total: 107ms	remaining: 322ms
25:	learn: 29.7692210	total: 111ms	remaining: 316ms
26:	learn: 29.4695098	total: 115ms	remaining: 312ms
27:	learn: 29.1475987	total: 120ms	remaining: 307ms
28:	learn: 28.9289492	total: 124ms	remaining: 303ms
29:	learn: 28.5795718	total: 128ms	remaining: 300ms
30:	learn: 28.2423836	total: 133ms	remaining: 295ms
31:	learn: 28.0106450	total: 137ms	remaining: 291ms
32:	learn: 27.8126246	total: 141ms	remaining: 286ms
33:	learn: 27.5135642	total: 145ms	remaining: 281ms
34:	learn: 27.2539620	total: 149ms	remaining: 277ms
35:	learn: 27.0340945	total: 153ms	remaining: 273ms
36:	learn: 26.6970733	total: 158ms	remaining: 269ms
37:	learn: 26.4820773	total: 162ms	remaining: 264ms
38:	learn: 26.2944872	total: 165ms	remaining: 258ms
39:	learn: 26.0569870	total: 169ms	remaining: 254ms
40:	learn: 25.8235330	total: 173ms	remaining: 249ms
41:	learn: 25.6400571	total: 176ms	remaining: 243ms
42:	learn: 25.4326379	total: 180ms	remaining: 239ms
43:	learn: 25.2721974	total: 184ms	remaining: 234ms
44:	learn: 25.0842673	total: 188ms	remaining: 230ms
45:	learn: 24.9015717	total: 192ms	remaining: 226ms
46:	learn: 24.7023849	total: 196ms	remaining: 222ms
47:	learn: 24.5762105	total: 200ms	remaining: 217ms
48:	learn: 24.4675270	total: 203ms	remaining: 212ms
49:	learn: 24.3208092	total: 207ms	remaining: 207ms
50:	learn: 24.1682508	total: 211ms	remaining: 203ms
51:	learn: 23.9713724	total: 215ms	remaining: 198ms
52:	learn: 23.8333045	total: 218ms	remaining: 193ms
53:	learn: 23.6732366	total: 221ms	remaining: 188ms
54:	learn: 23.4980367	total: 225ms	remaining: 184ms
55:	learn: 23.3369139	total: 229ms	remaining: 180ms
56:	learn: 23.1774869	total: 233ms	remaining: 176ms
57:	learn: 23.0919217	total: 236ms	remaining: 171ms
58:	learn: 22.9048643	total: 240ms	remaining: 167ms
59:	learn: 22.7522632	total: 244ms	remaining: 162ms
60:	learn: 22.6276653	total: 247ms	remaining: 158ms
61:	learn: 22.5137902	total: 253ms	remaining: 155ms
62:	learn: 22.4001930	total: 260ms	remaining: 153ms
63:	learn: 22.2903553	total: 266ms	remaining: 149ms
64:	learn: 22.2029161	total: 271ms	remaining: 146ms
65:	learn: 22.0586062	total: 274ms	remaining: 141ms
66:	learn: 21.9039507	total: 278ms	remaining: 137ms
67:	learn: 21.8140739	total: 283ms	remaining: 133ms
68:	learn: 21.6917278	total: 286ms	remaining: 129ms
69:	learn: 21.5285254	total: 290ms	remaining: 124ms
70:	learn: 21.4932079	total: 294ms	remaining: 120ms
71:	learn: 21.3973096	total: 298ms	remaining: 116ms
72:	learn: 21.3036411	total: 301ms	remaining: 111ms
73:	learn: 21.1746524	total: 305ms	remaining: 107ms
74:	learn: 21.1134304	total: 309ms	remaining: 103ms
75:	learn: 20.9974070	total: 313ms	remaining: 98.8ms
76:	learn: 20.8910028	total: 317ms	remaining: 94.5ms
77:	learn: 20.8486120	total: 320ms	remaining: 90.3ms
78:	learn: 20.8038321	total: 324ms	remaining: 86.1ms
79:	learn: 20.7292848	total: 327ms	remaining: 81.8ms
80:	learn: 20.6434333	total: 331ms	remaining: 77.7ms
81:	learn: 20.5761937	total: 335ms	remaining: 73.6ms
82:	learn: 20.5115562	total: 339ms	remaining: 69.5ms
83:	learn: 20.4355436	total: 343ms	remaining: 65.3ms
84:	learn: 20.3298106	total: 346ms	remaining: 61.1ms
85:	learn: 20.2515711	total: 350ms	remaining: 57ms
86:	learn: 20.1734868	total: 354ms	remaining: 52.9ms
87:	learn: 20.1012130	total: 357ms	remaining: 48.7ms
88:	learn: 20.0270496	total: 361ms	remaining: 44.6ms
89:	learn: 19.9831523	total: 365ms	remaining: 40.5ms
90:	learn: 19.8970324	total: 368ms	remaining: 36.4ms
91:	learn: 19.7817021	total: 372ms	remaining: 32.3ms
92:	learn: 19.6981444	total: 375ms	remaining: 28.2ms
93:	learn: 19.6767924	total: 378ms	remaining: 24.1ms
94:	learn: 19.6134086	total: 382ms	remaining: 20.1ms
95:	learn: 19.5250782	total: 385ms	remaining: 16.1ms
96:	learn: 19.4448141	total: 388ms	remaining: 12ms
97:	learn: 19.4184562	total: 392ms	remaining: 8ms
98:	learn: 19.3659454	total: 395ms	remaining: 3.99ms
99:	learn: 19.3132586	total: 399ms	remaining: 0us
0:	learn: 46.7377014	total: 7.13ms	remaining: 706ms
1:	learn: 46.3303415	total: 15.5ms	remaining: 758ms
2:	learn: 45.7594940	total: 23.3ms	remaining: 753ms
3:	learn: 45.1997490	total: 31.2ms	remaining: 748ms
4:	learn: 44.4456343	total: 37.2ms	remaining: 707ms
5:	learn: 44.0270120	total: 42ms	remaining: 659ms
6:	learn: 43.3864430	total: 47ms	remaining: 625ms
7:	learn: 42.8170366	total: 51.5ms	remaining: 593ms
8:	learn: 42.3174634	total: 56.2ms	remaining: 568ms
9:	learn: 41.7915929	total: 60.4ms	remaining: 544ms
10:	learn: 41.2980685	total: 64.7ms	remaining: 523ms
11:	learn: 40.9965044	total: 68.6ms	remaining: 503ms
12:	learn: 40.2971996	total: 72.4ms	remaining: 484ms
13:	learn: 39.7024922	total: 75.6ms	remaining: 464ms
14:	learn: 39.1388938	total: 78.8ms	remaining: 447ms
15:	learn: 38.7028546	total: 82.5ms	remaining: 433ms
16:	learn: 38.0206663	total: 86ms	remaining: 420ms
17:	learn: 37.7039763	total: 90.2ms	remaining: 411ms
18:	learn: 37.3477865	total: 93.9ms	remaining: 400ms
19:	learn: 37.1168300	total: 98.4ms	remaining: 394ms
20:	learn: 36.6229657	total: 103ms	remaining: 388ms
21:	learn: 36.4053719	total: 107ms	remaining: 380ms
22:	learn: 36.0233519	total: 111ms	remaining: 370ms
23:	learn: 35.7662482	total: 114ms	remaining: 361ms
24:	learn: 35.3803259	total: 117ms	remaining: 352ms
25:	learn: 34.9146782	total: 121ms	remaining: 343ms
26:	learn: 34.4913235	total: 124ms	remaining: 335ms
27:	learn: 34.1328044	total: 127ms	remaining: 327ms
28:	learn: 33.7547852	total: 130ms	remaining: 319ms
29:	learn: 33.4228687	total: 134ms	remaining: 313ms
30:	learn: 33.0369321	total: 136ms	remaining: 303ms
31:	learn: 32.6523463	total: 139ms	remaining: 296ms
32:	learn: 32.3639902	total: 142ms	remaining: 289ms
33:	learn: 32.1246549	total: 146ms	remaining: 283ms
34:	learn: 31.8070801	total: 149ms	remaining: 278ms
35:	learn: 31.5955635	total: 153ms	remaining: 272ms
36:	learn: 31.3087690	total: 156ms	remaining: 266ms
37:	learn: 30.9131566	total: 159ms	remaining: 260ms
38:	learn: 30.6994920	total: 163ms	remaining: 254ms
39:	learn: 30.5602473	total: 166ms	remaining: 249ms
40:	learn: 30.1801105	total: 169ms	remaining: 243ms
41:	learn: 30.0257825	total: 172ms	remaining: 238ms
42:	learn: 29.7969114	total: 175ms	remaining: 232ms
43:	learn: 29.5429482	total: 178ms	remaining: 227ms
44:	learn: 29.3283763	total: 181ms	remaining: 222ms
45:	learn: 29.0483150	total: 185ms	remaining: 217ms
46:	learn: 28.7822963	total: 188ms	remaining: 212ms
47:	learn: 28.6424220	total: 191ms	remaining: 207ms
48:	learn: 28.5061764	total: 195ms	remaining: 203ms
49:	learn: 28.3986170	total: 198ms	remaining: 198ms
50:	learn: 28.2941489	total: 201ms	remaining: 193ms
51:	learn: 28.0366809	total: 205ms	remaining: 189ms
52:	learn: 27.8845231	total: 208ms	remaining: 185ms
53:	learn: 27.7522300	total: 212ms	remaining: 180ms
54:	learn: 27.6009972	total: 215ms	remaining: 176ms
55:	learn: 27.5203003	total: 218ms	remaining: 171ms
56:	learn: 27.3525123	total: 221ms	remaining: 167ms
57:	learn: 27.2036798	total: 225ms	remaining: 163ms
58:	learn: 26.9550883	total: 228ms	remaining: 159ms
59:	learn: 26.7301417	total: 232ms	remaining: 155ms
60:	learn: 26.5752592	total: 235ms	remaining: 150ms
61:	learn: 26.3868608	total: 239ms	remaining: 146ms
62:	learn: 26.3028223	total: 242ms	remaining: 142ms
63:	learn: 26.2365698	total: 246ms	remaining: 138ms
64:	learn: 26.1347659	total: 253ms	remaining: 136ms
65:	learn: 25.9844347	total: 258ms	remaining: 133ms
66:	learn: 25.9350341	total: 263ms	remaining: 130ms
67:	learn: 25.8565886	total: 268ms	remaining: 126ms
68:	learn: 25.7705651	total: 272ms	remaining: 122ms
69:	learn: 25.6364383	total: 277ms	remaining: 119ms
70:	learn: 25.5362089	total: 280ms	remaining: 114ms
71:	learn: 25.4774547	total: 283ms	remaining: 110ms
72:	learn: 25.2939899	total: 286ms	remaining: 106ms
73:	learn: 25.1202464	total: 290ms	remaining: 102ms
74:	learn: 24.9272677	total: 293ms	remaining: 97.8ms
75:	learn: 24.8042440	total: 297ms	remaining: 93.7ms
76:	learn: 24.7155645	total: 300ms	remaining: 89.6ms
77:	learn: 24.6450416	total: 303ms	remaining: 85.4ms
78:	learn: 24.5074704	total: 306ms	remaining: 81.4ms
79:	learn: 24.3862635	total: 309ms	remaining: 77.3ms
80:	learn: 24.3341586	total: 312ms	remaining: 73.3ms
81:	learn: 24.2574882	total: 316ms	remaining: 69.3ms
82:	learn: 24.2164183	total: 319ms	remaining: 65.3ms
83:	learn: 24.1308311	total: 322ms	remaining: 61.3ms
84:	learn: 24.0736634	total: 325ms	remaining: 57.4ms
85:	learn: 24.0063628	total: 328ms	remaining: 53.5ms
86:	learn: 23.8884527	total: 332ms	remaining: 49.5ms
87:	learn: 23.7735384	total: 335ms	remaining: 45.6ms
88:	learn: 23.6264244	total: 338ms	remaining: 41.8ms
89:	learn: 23.5162738	total: 342ms	remaining: 37.9ms
90:	learn: 23.3758618	total: 345ms	remaining: 34.1ms
91:	learn: 23.2079543	total: 348ms	remaining: 30.3ms
92:	learn: 23.1583446	total: 352ms	remaining: 26.5ms
93:	learn: 23.0691023	total: 355ms	remaining: 22.7ms
94:	learn: 23.0135261	total: 359ms	remaining: 18.9ms
95:	learn: 22.9566358	total: 362ms	remaining: 15.1ms
96:	learn: 22.8705497	total: 365ms	remaining: 11.3ms
97:	learn: 22.8241680	total: 369ms	remaining: 7.52ms
98:	learn: 22.6781456	total: 372ms	remaining: 3.75ms
99:	learn: 22.6197036	total: 375ms	remaining: 0us
0:	learn: 46.5970582	total: 3.63ms	remaining: 360ms
1:	learn: 46.0206458	total: 7.04ms	remaining: 345ms
2:	learn: 45.5185565	total: 10.2ms	remaining: 331ms
3:	learn: 44.8896077	total: 13.7ms	remaining: 328ms
4:	learn: 44.3650983	total: 17.2ms	remaining: 326ms
5:	learn: 43.7936095	total: 20.4ms	remaining: 319ms
6:	learn: 43.2516070	total: 26.7ms	remaining: 355ms
7:	learn: 42.5996244	total: 33.2ms	remaining: 382ms
8:	learn: 42.0868414	total: 41ms	remaining: 414ms
9:	learn: 41.6335283	total: 46.7ms	remaining: 421ms
10:	learn: 41.1980597	total: 53ms	remaining: 429ms
11:	learn: 40.7247450	total: 56.7ms	remaining: 416ms
12:	learn: 40.3043699	total: 60.6ms	remaining: 405ms
13:	learn: 39.6627019	total: 64.7ms	remaining: 397ms
14:	learn: 39.2484866	total: 68.8ms	remaining: 390ms
15:	learn: 38.7535048	total: 73.3ms	remaining: 385ms
16:	learn: 38.3256958	total: 77.2ms	remaining: 377ms
17:	learn: 38.1807470	total: 81.3ms	remaining: 370ms
18:	learn: 37.7913269	total: 85.2ms	remaining: 363ms
19:	learn: 37.4298827	total: 89ms	remaining: 356ms
20:	learn: 37.0476659	total: 92.9ms	remaining: 350ms
21:	learn: 36.7547216	total: 96.4ms	remaining: 342ms
22:	learn: 36.2942023	total: 99.8ms	remaining: 334ms
23:	learn: 35.9264935	total: 104ms	remaining: 328ms
24:	learn: 35.5734355	total: 108ms	remaining: 323ms
25:	learn: 35.3258596	total: 112ms	remaining: 318ms
26:	learn: 35.1298796	total: 115ms	remaining: 311ms
27:	learn: 34.7734567	total: 118ms	remaining: 304ms
28:	learn: 34.3340747	total: 121ms	remaining: 297ms
29:	learn: 33.9716447	total: 125ms	remaining: 291ms
30:	learn: 33.7844285	total: 128ms	remaining: 284ms
31:	learn: 33.4083909	total: 131ms	remaining: 278ms
32:	learn: 32.9586707	total: 134ms	remaining: 272ms
33:	learn: 32.6838865	total: 137ms	remaining: 267ms
34:	learn: 32.3654423	total: 141ms	remaining: 261ms
35:	learn: 32.0480111	total: 144ms	remaining: 256ms
36:	learn: 31.8317379	total: 147ms	remaining: 250ms
37:	learn: 31.6161719	total: 150ms	remaining: 245ms
38:	learn: 31.4822698	total: 154ms	remaining: 240ms
39:	learn: 31.2047107	total: 157ms	remaining: 235ms
40:	learn: 30.9542390	total: 160ms	remaining: 230ms
41:	learn: 30.5746299	total: 163ms	remaining: 225ms
42:	learn: 30.3248827	total: 166ms	remaining: 220ms
43:	learn: 30.0899615	total: 170ms	remaining: 216ms
44:	learn: 29.9658754	total: 173ms	remaining: 211ms
45:	learn: 29.8156811	total: 176ms	remaining: 206ms
46:	learn: 29.6917456	total: 179ms	remaining: 202ms
47:	learn: 29.4510879	total: 182ms	remaining: 197ms
48:	learn: 29.2333725	total: 185ms	remaining: 193ms
49:	learn: 29.0876255	total: 189ms	remaining: 189ms
50:	learn: 28.9909579	total: 192ms	remaining: 184ms
51:	learn: 28.8207407	total: 195ms	remaining: 180ms
52:	learn: 28.7414877	total: 198ms	remaining: 175ms
53:	learn: 28.5766184	total: 201ms	remaining: 171ms
54:	learn: 28.4578886	total: 204ms	remaining: 167ms
55:	learn: 28.3304667	total: 207ms	remaining: 163ms
56:	learn: 28.1430069	total: 211ms	remaining: 159ms
57:	learn: 27.8807558	total: 214ms	remaining: 155ms
58:	learn: 27.6304716	total: 217ms	remaining: 151ms
59:	learn: 27.5627212	total: 220ms	remaining: 147ms
60:	learn: 27.4922631	total: 224ms	remaining: 143ms
61:	learn: 27.2798153	total: 227ms	remaining: 139ms
62:	learn: 27.1551781	total: 231ms	remaining: 135ms
63:	learn: 26.9816596	total: 234ms	remaining: 132ms
64:	learn: 26.8436371	total: 237ms	remaining: 128ms
65:	learn: 26.6437415	total: 242ms	remaining: 125ms
66:	learn: 26.5134410	total: 250ms	remaining: 123ms
67:	learn: 26.4273283	total: 255ms	remaining: 120ms
68:	learn: 26.3734780	total: 260ms	remaining: 117ms
69:	learn: 26.1367850	total: 263ms	remaining: 113ms
70:	learn: 26.0450049	total: 267ms	remaining: 109ms
71:	learn: 25.8582711	total: 272ms	remaining: 106ms
72:	learn: 25.7624434	total: 275ms	remaining: 102ms
73:	learn: 25.7196147	total: 278ms	remaining: 97.7ms
74:	learn: 25.6674122	total: 281ms	remaining: 93.7ms
75:	learn: 25.5560336	total: 284ms	remaining: 89.8ms
76:	learn: 25.4541983	total: 287ms	remaining: 85.8ms
77:	learn: 25.3650572	total: 291ms	remaining: 82ms
78:	learn: 25.2572466	total: 294ms	remaining: 78.1ms
79:	learn: 25.1889443	total: 297ms	remaining: 74.2ms
80:	learn: 25.1119947	total: 300ms	remaining: 70.4ms
81:	learn: 25.0181981	total: 303ms	remaining: 66.6ms
82:	learn: 24.9328139	total: 307ms	remaining: 62.8ms
83:	learn: 24.8328911	total: 310ms	remaining: 59ms
84:	learn: 24.8105681	total: 313ms	remaining: 55.2ms
85:	learn: 24.6471687	total: 316ms	remaining: 51.4ms
86:	learn: 24.5777280	total: 319ms	remaining: 47.7ms
87:	learn: 24.4447436	total: 322ms	remaining: 43.9ms
88:	learn: 24.3349434	total: 326ms	remaining: 40.2ms
89:	learn: 24.3056107	total: 329ms	remaining: 36.5ms
90:	learn: 24.1709055	total: 332ms	remaining: 32.8ms
91:	learn: 24.0752443	total: 335ms	remaining: 29.2ms
92:	learn: 24.0024098	total: 338ms	remaining: 25.5ms
93:	learn: 23.9788290	total: 342ms	remaining: 21.8ms
94:	learn: 23.8454879	total: 345ms	remaining: 18.2ms
95:	learn: 23.7667392	total: 348ms	remaining: 14.5ms
96:	learn: 23.6936939	total: 352ms	remaining: 10.9ms
97:	learn: 23.6595073	total: 355ms	remaining: 7.25ms
98:	learn: 23.5963820	total: 358ms	remaining: 3.62ms
99:	learn: 23.4477444	total: 362ms	remaining: 0us
0:	learn: 47.2331543	total: 3.27ms	remaining: 324ms
1:	learn: 46.7380884	total: 6.4ms	remaining: 314ms
2:	learn: 46.1451019	total: 9.84ms	remaining: 318ms
3:	learn: 45.3906054	total: 13.2ms	remaining: 317ms
4:	learn: 44.6803536	total: 16.4ms	remaining: 312ms
5:	learn: 44.2273236	total: 19.5ms	remaining: 306ms
6:	learn: 43.7509703	total: 22.8ms	remaining: 303ms
7:	learn: 43.2028953	total: 26.1ms	remaining: 300ms
8:	learn: 42.6784995	total: 29.1ms	remaining: 294ms
9:	learn: 42.1404276	total: 33.1ms	remaining: 298ms
10:	learn: 41.6587763	total: 39.9ms	remaining: 323ms
11:	learn: 41.1447803	total: 46.4ms	remaining: 340ms
12:	learn: 40.5267303	total: 54.7ms	remaining: 366ms
13:	learn: 40.1691056	total: 59.3ms	remaining: 364ms
14:	learn: 39.6446454	total: 65.2ms	remaining: 370ms
15:	learn: 39.2530108	total: 68.9ms	remaining: 362ms
16:	learn: 38.8892572	total: 72.8ms	remaining: 356ms
17:	learn: 38.4248708	total: 76.8ms	remaining: 350ms
18:	learn: 38.1335644	total: 80.6ms	remaining: 344ms
19:	learn: 37.7628419	total: 84.8ms	remaining: 339ms
20:	learn: 37.1965661	total: 88.9ms	remaining: 334ms
21:	learn: 36.9899408	total: 92.5ms	remaining: 328ms
22:	learn: 36.7646654	total: 96.5ms	remaining: 323ms
23:	learn: 36.5034646	total: 100ms	remaining: 318ms
24:	learn: 36.2262522	total: 105ms	remaining: 314ms
25:	learn: 35.7667852	total: 108ms	remaining: 308ms
26:	learn: 35.4889046	total: 112ms	remaining: 303ms
27:	learn: 35.0537874	total: 116ms	remaining: 298ms
28:	learn: 34.6551105	total: 121ms	remaining: 295ms
29:	learn: 34.3632822	total: 125ms	remaining: 292ms
30:	learn: 34.2078749	total: 128ms	remaining: 284ms
31:	learn: 33.8029450	total: 131ms	remaining: 279ms
32:	learn: 33.4966214	total: 134ms	remaining: 273ms
33:	learn: 33.1539041	total: 138ms	remaining: 267ms
34:	learn: 32.8452780	total: 141ms	remaining: 262ms
35:	learn: 32.6128550	total: 144ms	remaining: 257ms
36:	learn: 32.4726320	total: 148ms	remaining: 251ms
37:	learn: 32.1795949	total: 151ms	remaining: 246ms
38:	learn: 31.9635047	total: 154ms	remaining: 241ms
39:	learn: 31.8025058	total: 158ms	remaining: 237ms
40:	learn: 31.5622343	total: 162ms	remaining: 233ms
41:	learn: 31.2497091	total: 165ms	remaining: 228ms
42:	learn: 30.9653927	total: 169ms	remaining: 224ms
43:	learn: 30.8345603	total: 172ms	remaining: 219ms
44:	learn: 30.6692290	total: 176ms	remaining: 215ms
45:	learn: 30.4509807	total: 179ms	remaining: 210ms
46:	learn: 30.2720753	total: 183ms	remaining: 206ms
47:	learn: 30.1327943	total: 186ms	remaining: 201ms
48:	learn: 30.0383667	total: 189ms	remaining: 197ms
49:	learn: 29.9177874	total: 192ms	remaining: 192ms
50:	learn: 29.7546431	total: 195ms	remaining: 188ms
51:	learn: 29.6101687	total: 199ms	remaining: 184ms
52:	learn: 29.4216734	total: 202ms	remaining: 179ms
53:	learn: 29.2958377	total: 206ms	remaining: 175ms
54:	learn: 29.1585307	total: 209ms	remaining: 171ms
55:	learn: 29.0121145	total: 212ms	remaining: 167ms
56:	learn: 28.8097485	total: 215ms	remaining: 162ms
57:	learn: 28.6782559	total: 219ms	remaining: 158ms
58:	learn: 28.3765838	total: 222ms	remaining: 154ms
59:	learn: 28.2153542	total: 225ms	remaining: 150ms
60:	learn: 28.0521681	total: 229ms	remaining: 146ms
61:	learn: 27.8608883	total: 232ms	remaining: 142ms
62:	learn: 27.7817937	total: 236ms	remaining: 138ms
63:	learn: 27.6764746	total: 239ms	remaining: 134ms
64:	learn: 27.5628169	total: 242ms	remaining: 130ms
65:	learn: 27.4644192	total: 245ms	remaining: 126ms
66:	learn: 27.2796164	total: 252ms	remaining: 124ms
67:	learn: 27.2113043	total: 258ms	remaining: 121ms
68:	learn: 27.0663491	total: 262ms	remaining: 118ms
69:	learn: 26.9792416	total: 268ms	remaining: 115ms
70:	learn: 26.8993578	total: 272ms	remaining: 111ms
71:	learn: 26.7735903	total: 276ms	remaining: 107ms
72:	learn: 26.7003631	total: 279ms	remaining: 103ms
73:	learn: 26.5312523	total: 283ms	remaining: 99.3ms
74:	learn: 26.4608453	total: 286ms	remaining: 95.3ms
75:	learn: 26.2980293	total: 289ms	remaining: 91.2ms
76:	learn: 26.2308846	total: 292ms	remaining: 87.2ms
77:	learn: 26.0989053	total: 295ms	remaining: 83.2ms
78:	learn: 25.9774549	total: 298ms	remaining: 79.2ms
79:	learn: 25.9299068	total: 301ms	remaining: 75.2ms
80:	learn: 25.8107261	total: 304ms	remaining: 71.4ms
81:	learn: 25.6969551	total: 307ms	remaining: 67.5ms
82:	learn: 25.5764999	total: 310ms	remaining: 63.6ms
83:	learn: 25.5380088	total: 314ms	remaining: 59.7ms
84:	learn: 25.4809750	total: 317ms	remaining: 55.9ms
85:	learn: 25.3508109	total: 320ms	remaining: 52.1ms
86:	learn: 25.2840817	total: 323ms	remaining: 48.3ms
87:	learn: 25.1436181	total: 326ms	remaining: 44.4ms
88:	learn: 25.0281618	total: 329ms	remaining: 40.7ms
89:	learn: 24.9079246	total: 332ms	remaining: 36.9ms
90:	learn: 24.8016608	total: 335ms	remaining: 33.2ms
91:	learn: 24.6694258	total: 339ms	remaining: 29.4ms
92:	learn: 24.5722463	total: 342ms	remaining: 25.7ms
93:	learn: 24.4504315	total: 345ms	remaining: 22ms
94:	learn: 24.3808238	total: 348ms	remaining: 18.3ms
95:	learn: 24.2244864	total: 351ms	remaining: 14.6ms
96:	learn: 24.0890358	total: 354ms	remaining: 11ms
97:	learn: 23.9940290	total: 358ms	remaining: 7.3ms
98:	learn: 23.8927560	total: 361ms	remaining: 3.65ms
99:	learn: 23.8146724	total: 364ms	remaining: 0us
0:	learn: 27.9285976	total: 2.03ms	remaining: 607ms
1:	learn: 27.8290218	total: 3.78ms	remaining: 563ms
2:	learn: 27.7149072	total: 5.53ms	remaining: 548ms
3:	learn: 27.5921171	total: 7.31ms	remaining: 541ms
4:	learn: 27.5080324	total: 9.15ms	remaining: 540ms
5:	learn: 27.4038418	total: 11.1ms	remaining: 543ms
6:	learn: 27.3124489	total: 13ms	remaining: 544ms
7:	learn: 27.2083065	total: 14.9ms	remaining: 543ms
8:	learn: 27.1317902	total: 16.9ms	remaining: 545ms
9:	learn: 27.0114102	total: 18.8ms	remaining: 545ms
10:	learn: 26.9204561	total: 20.5ms	remaining: 539ms
11:	learn: 26.8147167	total: 22.3ms	remaining: 536ms
12:	learn: 26.7123684	total: 24.2ms	remaining: 535ms
13:	learn: 26.6296555	total: 26.1ms	remaining: 532ms
14:	learn: 26.5460136	total: 27.9ms	remaining: 530ms
15:	learn: 26.4578480	total: 29.7ms	remaining: 528ms
16:	learn: 26.3724906	total: 31.6ms	remaining: 526ms
17:	learn: 26.2932630	total: 33.3ms	remaining: 522ms
18:	learn: 26.1998152	total: 35.5ms	remaining: 525ms
19:	learn: 26.1113900	total: 39.4ms	remaining: 551ms
20:	learn: 26.0055935	total: 42.6ms	remaining: 567ms
21:	learn: 25.9129490	total: 46ms	remaining: 581ms
22:	learn: 25.8427783	total: 50.4ms	remaining: 607ms
23:	learn: 25.7506199	total: 54.6ms	remaining: 628ms
24:	learn: 25.6548590	total: 57.8ms	remaining: 636ms
25:	learn: 25.5780652	total: 60.1ms	remaining: 634ms
26:	learn: 25.4956661	total: 62.6ms	remaining: 633ms
27:	learn: 25.3968741	total: 66.1ms	remaining: 642ms
28:	learn: 25.3018218	total: 68.9ms	remaining: 643ms
29:	learn: 25.2324218	total: 71.2ms	remaining: 641ms
30:	learn: 25.1562953	total: 73.6ms	remaining: 639ms
31:	learn: 25.0631924	total: 75.7ms	remaining: 634ms
32:	learn: 24.9983252	total: 78.1ms	remaining: 632ms
33:	learn: 24.9171308	total: 80.2ms	remaining: 628ms
34:	learn: 24.8346016	total: 82.3ms	remaining: 623ms
35:	learn: 24.7531282	total: 84.6ms	remaining: 621ms
36:	learn: 24.6750914	total: 86.8ms	remaining: 617ms
37:	learn: 24.5831754	total: 89.1ms	remaining: 614ms
38:	learn: 24.4965769	total: 91.7ms	remaining: 613ms
39:	learn: 24.4164076	total: 93.8ms	remaining: 610ms
40:	learn: 24.3434038	total: 95.9ms	remaining: 606ms
41:	learn: 24.2625862	total: 97.9ms	remaining: 602ms
42:	learn: 24.1682279	total: 99.9ms	remaining: 597ms
43:	learn: 24.1031282	total: 102ms	remaining: 594ms
44:	learn: 24.0343255	total: 104ms	remaining: 591ms
45:	learn: 23.9650736	total: 106ms	remaining: 587ms
46:	learn: 23.8889261	total: 108ms	remaining: 583ms
47:	learn: 23.8271335	total: 110ms	remaining: 579ms
48:	learn: 23.7461126	total: 112ms	remaining: 575ms
49:	learn: 23.6668976	total: 114ms	remaining: 572ms
50:	learn: 23.5838221	total: 117ms	remaining: 570ms
51:	learn: 23.4920016	total: 119ms	remaining: 569ms
52:	learn: 23.3960738	total: 122ms	remaining: 569ms
53:	learn: 23.3427015	total: 124ms	remaining: 566ms
54:	learn: 23.2643724	total: 126ms	remaining: 562ms
55:	learn: 23.1965774	total: 128ms	remaining: 558ms
56:	learn: 23.1299985	total: 130ms	remaining: 554ms
57:	learn: 23.0655888	total: 132ms	remaining: 550ms
58:	learn: 22.9757556	total: 134ms	remaining: 546ms
59:	learn: 22.9154140	total: 135ms	remaining: 542ms
60:	learn: 22.8683091	total: 137ms	remaining: 539ms
61:	learn: 22.8241251	total: 139ms	remaining: 535ms
62:	learn: 22.7677722	total: 141ms	remaining: 532ms
63:	learn: 22.7157382	total: 143ms	remaining: 529ms
64:	learn: 22.6340703	total: 145ms	remaining: 525ms
65:	learn: 22.5797585	total: 147ms	remaining: 521ms
66:	learn: 22.5052221	total: 149ms	remaining: 517ms
67:	learn: 22.4522876	total: 150ms	remaining: 513ms
68:	learn: 22.3822301	total: 152ms	remaining: 509ms
69:	learn: 22.3329093	total: 154ms	remaining: 506ms
70:	learn: 22.2696707	total: 156ms	remaining: 502ms
71:	learn: 22.1893329	total: 157ms	remaining: 499ms
72:	learn: 22.1272803	total: 159ms	remaining: 495ms
73:	learn: 22.0453922	total: 161ms	remaining: 491ms
74:	learn: 21.9848024	total: 163ms	remaining: 488ms
75:	learn: 21.9283676	total: 164ms	remaining: 485ms
76:	learn: 21.8687472	total: 166ms	remaining: 481ms
77:	learn: 21.8182084	total: 168ms	remaining: 478ms
78:	learn: 21.7592953	total: 170ms	remaining: 474ms
79:	learn: 21.6955626	total: 172ms	remaining: 472ms
80:	learn: 21.6480086	total: 174ms	remaining: 469ms
81:	learn: 21.5941029	total: 175ms	remaining: 467ms
82:	learn: 21.5325894	total: 177ms	remaining: 464ms
83:	learn: 21.4729115	total: 179ms	remaining: 461ms
84:	learn: 21.4211792	total: 181ms	remaining: 458ms
85:	learn: 21.3576133	total: 183ms	remaining: 455ms
86:	learn: 21.3247271	total: 184ms	remaining: 451ms
87:	learn: 21.2705544	total: 186ms	remaining: 449ms
88:	learn: 21.2072432	total: 188ms	remaining: 446ms
89:	learn: 21.1624877	total: 190ms	remaining: 443ms
90:	learn: 21.1028725	total: 192ms	remaining: 440ms
91:	learn: 21.0588361	total: 194ms	remaining: 438ms
92:	learn: 21.0105034	total: 195ms	remaining: 435ms
93:	learn: 20.9554729	total: 197ms	remaining: 432ms
94:	learn: 20.9097524	total: 199ms	remaining: 429ms
95:	learn: 20.8535150	total: 201ms	remaining: 427ms
96:	learn: 20.7973780	total: 202ms	remaining: 424ms
97:	learn: 20.7375099	total: 204ms	remaining: 421ms
98:	learn: 20.6879329	total: 206ms	remaining: 418ms
99:	learn: 20.6517844	total: 208ms	remaining: 416ms
100:	learn: 20.5959677	total: 210ms	remaining: 413ms
101:	learn: 20.5448786	total: 212ms	remaining: 411ms
102:	learn: 20.5054969	total: 213ms	remaining: 408ms
103:	learn: 20.4648575	total: 215ms	remaining: 406ms
104:	learn: 20.4164417	total: 217ms	remaining: 403ms
105:	learn: 20.3696310	total: 219ms	remaining: 400ms
106:	learn: 20.3182900	total: 221ms	remaining: 398ms
107:	learn: 20.2765773	total: 222ms	remaining: 395ms
108:	learn: 20.2420461	total: 224ms	remaining: 393ms
109:	learn: 20.2029460	total: 226ms	remaining: 391ms
110:	learn: 20.1619348	total: 228ms	remaining: 388ms
111:	learn: 20.1221457	total: 230ms	remaining: 387ms
112:	learn: 20.0749502	total: 233ms	remaining: 386ms
113:	learn: 20.0265468	total: 236ms	remaining: 385ms
114:	learn: 19.9771360	total: 239ms	remaining: 384ms
115:	learn: 19.9274586	total: 242ms	remaining: 383ms
116:	learn: 19.8814741	total: 243ms	remaining: 381ms
117:	learn: 19.8246965	total: 245ms	remaining: 378ms
118:	learn: 19.7746027	total: 248ms	remaining: 376ms
119:	learn: 19.7445185	total: 250ms	remaining: 374ms
120:	learn: 19.7144519	total: 252ms	remaining: 372ms
121:	learn: 19.6774523	total: 255ms	remaining: 372ms
122:	learn: 19.6307856	total: 257ms	remaining: 370ms
123:	learn: 19.5803827	total: 259ms	remaining: 367ms
124:	learn: 19.5331346	total: 261ms	remaining: 365ms
125:	learn: 19.4866451	total: 262ms	remaining: 362ms
126:	learn: 19.4203679	total: 264ms	remaining: 360ms
127:	learn: 19.3764529	total: 266ms	remaining: 357ms
128:	learn: 19.3180824	total: 268ms	remaining: 355ms
129:	learn: 19.2905634	total: 270ms	remaining: 353ms
130:	learn: 19.2533193	total: 272ms	remaining: 351ms
131:	learn: 19.2062921	total: 274ms	remaining: 348ms
132:	learn: 19.1715301	total: 275ms	remaining: 346ms
133:	learn: 19.1255393	total: 277ms	remaining: 343ms
134:	learn: 19.0860937	total: 279ms	remaining: 341ms
135:	learn: 19.0492332	total: 281ms	remaining: 338ms
136:	learn: 19.0156205	total: 283ms	remaining: 336ms
137:	learn: 18.9665162	total: 284ms	remaining: 334ms
138:	learn: 18.9446260	total: 286ms	remaining: 331ms
139:	learn: 18.8986689	total: 288ms	remaining: 329ms
140:	learn: 18.8611997	total: 290ms	remaining: 327ms
141:	learn: 18.8250666	total: 291ms	remaining: 324ms
142:	learn: 18.7822871	total: 293ms	remaining: 322ms
143:	learn: 18.7414238	total: 295ms	remaining: 319ms
144:	learn: 18.7074771	total: 297ms	remaining: 317ms
145:	learn: 18.6714146	total: 298ms	remaining: 315ms
146:	learn: 18.6450579	total: 300ms	remaining: 312ms
147:	learn: 18.6217009	total: 302ms	remaining: 310ms
148:	learn: 18.5986827	total: 304ms	remaining: 308ms
149:	learn: 18.5621962	total: 306ms	remaining: 306ms
150:	learn: 18.5293096	total: 307ms	remaining: 303ms
151:	learn: 18.5026941	total: 309ms	remaining: 301ms
152:	learn: 18.4713395	total: 311ms	remaining: 299ms
153:	learn: 18.4490272	total: 313ms	remaining: 297ms
154:	learn: 18.4211902	total: 314ms	remaining: 294ms
155:	learn: 18.3806158	total: 316ms	remaining: 292ms
156:	learn: 18.3537121	total: 318ms	remaining: 290ms
157:	learn: 18.3225033	total: 320ms	remaining: 288ms
158:	learn: 18.2903112	total: 322ms	remaining: 285ms
159:	learn: 18.2679262	total: 323ms	remaining: 283ms
160:	learn: 18.2459632	total: 325ms	remaining: 281ms
161:	learn: 18.2093096	total: 327ms	remaining: 278ms
162:	learn: 18.1887544	total: 329ms	remaining: 276ms
163:	learn: 18.1586638	total: 330ms	remaining: 274ms
164:	learn: 18.1319070	total: 332ms	remaining: 272ms
165:	learn: 18.0985148	total: 334ms	remaining: 270ms
166:	learn: 18.0704359	total: 336ms	remaining: 267ms
167:	learn: 18.0344107	total: 338ms	remaining: 265ms
168:	learn: 18.0164232	total: 339ms	remaining: 263ms
169:	learn: 17.9865641	total: 341ms	remaining: 261ms
170:	learn: 17.9669082	total: 343ms	remaining: 259ms
171:	learn: 17.9453890	total: 345ms	remaining: 256ms
172:	learn: 17.9227165	total: 346ms	remaining: 254ms
173:	learn: 17.9014448	total: 348ms	remaining: 252ms
174:	learn: 17.8731423	total: 350ms	remaining: 250ms
175:	learn: 17.8507065	total: 352ms	remaining: 248ms
176:	learn: 17.8258289	total: 354ms	remaining: 246ms
177:	learn: 17.8015957	total: 355ms	remaining: 243ms
178:	learn: 17.7751661	total: 357ms	remaining: 241ms
179:	learn: 17.7508456	total: 359ms	remaining: 239ms
180:	learn: 17.7247399	total: 360ms	remaining: 237ms
181:	learn: 17.7031652	total: 362ms	remaining: 235ms
182:	learn: 17.6763053	total: 364ms	remaining: 233ms
183:	learn: 17.6530744	total: 366ms	remaining: 230ms
184:	learn: 17.6185943	total: 367ms	remaining: 228ms
185:	learn: 17.5820317	total: 369ms	remaining: 226ms
186:	learn: 17.5502912	total: 371ms	remaining: 224ms
187:	learn: 17.5280867	total: 373ms	remaining: 222ms
188:	learn: 17.5054874	total: 375ms	remaining: 220ms
189:	learn: 17.4787462	total: 377ms	remaining: 218ms
190:	learn: 17.4460007	total: 378ms	remaining: 216ms
191:	learn: 17.4238148	total: 380ms	remaining: 214ms
192:	learn: 17.3950087	total: 382ms	remaining: 212ms
193:	learn: 17.3664910	total: 384ms	remaining: 210ms
194:	learn: 17.3391390	total: 385ms	remaining: 208ms
195:	learn: 17.3240064	total: 387ms	remaining: 205ms
196:	learn: 17.2963869	total: 389ms	remaining: 203ms
197:	learn: 17.2728095	total: 391ms	remaining: 201ms
198:	learn: 17.2465050	total: 392ms	remaining: 199ms
199:	learn: 17.2222551	total: 394ms	remaining: 197ms
200:	learn: 17.2020449	total: 396ms	remaining: 195ms
201:	learn: 17.1753652	total: 398ms	remaining: 193ms
202:	learn: 17.1402580	total: 400ms	remaining: 191ms
203:	learn: 17.1101039	total: 402ms	remaining: 189ms
204:	learn: 17.0814466	total: 404ms	remaining: 187ms
205:	learn: 17.0392425	total: 405ms	remaining: 185ms
206:	learn: 17.0185365	total: 407ms	remaining: 183ms
207:	learn: 17.0000792	total: 409ms	remaining: 181ms
208:	learn: 16.9790281	total: 411ms	remaining: 179ms
209:	learn: 16.9516641	total: 413ms	remaining: 177ms
210:	learn: 16.9318312	total: 414ms	remaining: 175ms
211:	learn: 16.9092120	total: 416ms	remaining: 173ms
212:	learn: 16.8973878	total: 418ms	remaining: 171ms
213:	learn: 16.8787605	total: 420ms	remaining: 169ms
214:	learn: 16.8601121	total: 422ms	remaining: 167ms
215:	learn: 16.8353573	total: 424ms	remaining: 165ms
216:	learn: 16.8085685	total: 426ms	remaining: 163ms
217:	learn: 16.7935033	total: 428ms	remaining: 161ms
218:	learn: 16.7646600	total: 429ms	remaining: 159ms
219:	learn: 16.7310761	total: 431ms	remaining: 157ms
220:	learn: 16.7088906	total: 433ms	remaining: 155ms
221:	learn: 16.6879148	total: 435ms	remaining: 153ms
222:	learn: 16.6775806	total: 438ms	remaining: 151ms
223:	learn: 16.6520096	total: 441ms	remaining: 150ms
224:	learn: 16.6270914	total: 445ms	remaining: 148ms
225:	learn: 16.6041953	total: 449ms	remaining: 147ms
226:	learn: 16.5823140	total: 453ms	remaining: 146ms
227:	learn: 16.5596142	total: 457ms	remaining: 144ms
228:	learn: 16.5419601	total: 460ms	remaining: 143ms
229:	learn: 16.5208337	total: 463ms	remaining: 141ms
230:	learn: 16.4796255	total: 467ms	remaining: 140ms
231:	learn: 16.4578162	total: 470ms	remaining: 138ms
232:	learn: 16.4376004	total: 472ms	remaining: 136ms
233:	learn: 16.4086771	total: 475ms	remaining: 134ms
234:	learn: 16.3900939	total: 477ms	remaining: 132ms
235:	learn: 16.3679575	total: 479ms	remaining: 130ms
236:	learn: 16.3468209	total: 481ms	remaining: 128ms
237:	learn: 16.3368922	total: 484ms	remaining: 126ms
238:	learn: 16.3099272	total: 486ms	remaining: 124ms
239:	learn: 16.2935433	total: 488ms	remaining: 122ms
240:	learn: 16.2821574	total: 490ms	remaining: 120ms
241:	learn: 16.2547164	total: 492ms	remaining: 118ms
242:	learn: 16.2345272	total: 494ms	remaining: 116ms
243:	learn: 16.2100089	total: 497ms	remaining: 114ms
244:	learn: 16.1954131	total: 499ms	remaining: 112ms
245:	learn: 16.1798313	total: 501ms	remaining: 110ms
246:	learn: 16.1563709	total: 503ms	remaining: 108ms
247:	learn: 16.1289074	total: 505ms	remaining: 106ms
248:	learn: 16.1179097	total: 507ms	remaining: 104ms
249:	learn: 16.1056268	total: 509ms	remaining: 102ms
250:	learn: 16.0766684	total: 511ms	remaining: 99.8ms
251:	learn: 16.0541204	total: 513ms	remaining: 97.8ms
252:	learn: 16.0343743	total: 515ms	remaining: 95.7ms
253:	learn: 16.0194570	total: 517ms	remaining: 93.7ms
254:	learn: 15.9962611	total: 519ms	remaining: 91.6ms
255:	learn: 15.9767807	total: 521ms	remaining: 89.6ms
256:	learn: 15.9470123	total: 524ms	remaining: 87.6ms
257:	learn: 15.9348379	total: 526ms	remaining: 85.7ms
258:	learn: 15.9159990	total: 528ms	remaining: 83.7ms
259:	learn: 15.8938835	total: 530ms	remaining: 81.6ms
260:	learn: 15.8840712	total: 532ms	remaining: 79.5ms
261:	learn: 15.8709936	total: 534ms	remaining: 77.4ms
262:	learn: 15.8500036	total: 536ms	remaining: 75.3ms
263:	learn: 15.8324627	total: 537ms	remaining: 73.3ms
264:	learn: 15.8203282	total: 539ms	remaining: 71.2ms
265:	learn: 15.8033280	total: 541ms	remaining: 69.1ms
266:	learn: 15.7886562	total: 543ms	remaining: 67.1ms
267:	learn: 15.7627391	total: 544ms	remaining: 65ms
268:	learn: 15.7357780	total: 546ms	remaining: 62.9ms
269:	learn: 15.7236140	total: 548ms	remaining: 60.9ms
270:	learn: 15.7085623	total: 550ms	remaining: 58.8ms
271:	learn: 15.6770338	total: 551ms	remaining: 56.8ms
272:	learn: 15.6589956	total: 553ms	remaining: 54.7ms
273:	learn: 15.6395745	total: 555ms	remaining: 52.7ms
274:	learn: 15.6200829	total: 557ms	remaining: 50.6ms
275:	learn: 15.6064412	total: 559ms	remaining: 48.6ms
276:	learn: 15.5796089	total: 560ms	remaining: 46.5ms
277:	learn: 15.5657784	total: 562ms	remaining: 44.5ms
278:	learn: 15.5488597	total: 564ms	remaining: 42.4ms
279:	learn: 15.5351794	total: 565ms	remaining: 40.4ms
280:	learn: 15.5250645	total: 567ms	remaining: 38.4ms
281:	learn: 15.5123678	total: 569ms	remaining: 36.3ms
282:	learn: 15.4997613	total: 571ms	remaining: 34.3ms
283:	learn: 15.4813228	total: 573ms	remaining: 32.3ms
284:	learn: 15.4638044	total: 575ms	remaining: 30.2ms
285:	learn: 15.4462381	total: 576ms	remaining: 28.2ms
286:	learn: 15.4215512	total: 578ms	remaining: 26.2ms
287:	learn: 15.3979494	total: 580ms	remaining: 24.2ms
288:	learn: 15.3733520	total: 582ms	remaining: 22.2ms
289:	learn: 15.3550203	total: 584ms	remaining: 20.1ms
290:	learn: 15.3385016	total: 586ms	remaining: 18.1ms
291:	learn: 15.3240839	total: 588ms	remaining: 16.1ms
292:	learn: 15.3110268	total: 589ms	remaining: 14.1ms
293:	learn: 15.3003992	total: 591ms	remaining: 12.1ms
294:	learn: 15.2873679	total: 593ms	remaining: 10.1ms
295:	learn: 15.2711554	total: 595ms	remaining: 8.04ms
296:	learn: 15.2631540	total: 597ms	remaining: 6.03ms
297:	learn: 15.2338919	total: 598ms	remaining: 4.01ms
298:	learn: 15.2185437	total: 600ms	remaining: 2.01ms
299:	learn: 15.1931047	total: 602ms	remaining: 0us
0:	learn: 43.7721537	total: 3.1ms	remaining: 926ms
1:	learn: 43.5552928	total: 6.19ms	remaining: 922ms
2:	learn: 43.3496462	total: 8.83ms	remaining: 874ms
3:	learn: 43.1212350	total: 11.3ms	remaining: 837ms
4:	learn: 42.9265080	total: 13.4ms	remaining: 791ms
5:	learn: 42.6966645	total: 16.2ms	remaining: 792ms
6:	learn: 42.4209575	total: 18.2ms	remaining: 762ms
7:	learn: 42.1828594	total: 20ms	remaining: 729ms
8:	learn: 41.9284258	total: 21.7ms	remaining: 702ms
9:	learn: 41.7011892	total: 23.5ms	remaining: 683ms
10:	learn: 41.4553132	total: 25.4ms	remaining: 668ms
11:	learn: 41.2492821	total: 27.3ms	remaining: 655ms
12:	learn: 41.0262856	total: 29.4ms	remaining: 649ms
13:	learn: 40.7844692	total: 31.2ms	remaining: 637ms
14:	learn: 40.5858834	total: 33.1ms	remaining: 628ms
15:	learn: 40.4108985	total: 34.9ms	remaining: 620ms
16:	learn: 40.1991501	total: 37ms	remaining: 616ms
17:	learn: 39.9659694	total: 39ms	remaining: 612ms
18:	learn: 39.7579464	total: 41ms	remaining: 607ms
19:	learn: 39.5592072	total: 42.9ms	remaining: 601ms
20:	learn: 39.3487592	total: 44.9ms	remaining: 596ms
21:	learn: 39.1369555	total: 46.9ms	remaining: 592ms
22:	learn: 38.9668050	total: 49ms	remaining: 590ms
23:	learn: 38.7370024	total: 51ms	remaining: 587ms
24:	learn: 38.5433037	total: 53.1ms	remaining: 584ms
25:	learn: 38.3258334	total: 55ms	remaining: 580ms
26:	learn: 38.1168415	total: 56.9ms	remaining: 576ms
27:	learn: 37.9260705	total: 58.9ms	remaining: 572ms
28:	learn: 37.7524257	total: 60.7ms	remaining: 567ms
29:	learn: 37.5341921	total: 62.8ms	remaining: 565ms
30:	learn: 37.3183745	total: 74.5ms	remaining: 647ms
31:	learn: 37.1564539	total: 76.5ms	remaining: 640ms
32:	learn: 36.9475227	total: 78.2ms	remaining: 633ms
33:	learn: 36.7646790	total: 80.2ms	remaining: 627ms
34:	learn: 36.5833113	total: 82ms	remaining: 621ms
35:	learn: 36.4209489	total: 83.9ms	remaining: 615ms
36:	learn: 36.2277457	total: 85.7ms	remaining: 609ms
37:	learn: 36.0354607	total: 87.4ms	remaining: 603ms
38:	learn: 35.8533305	total: 89.3ms	remaining: 597ms
39:	learn: 35.6811877	total: 91.2ms	remaining: 593ms
40:	learn: 35.5420911	total: 93ms	remaining: 587ms
41:	learn: 35.3700911	total: 94.8ms	remaining: 582ms
42:	learn: 35.1932134	total: 96.6ms	remaining: 578ms
43:	learn: 35.0160510	total: 98.4ms	remaining: 573ms
44:	learn: 34.8836763	total: 100ms	remaining: 569ms
45:	learn: 34.7157412	total: 102ms	remaining: 564ms
46:	learn: 34.5298676	total: 104ms	remaining: 560ms
47:	learn: 34.3603422	total: 106ms	remaining: 555ms
48:	learn: 34.1711190	total: 108ms	remaining: 551ms
49:	learn: 34.0003751	total: 109ms	remaining: 547ms
50:	learn: 33.8575550	total: 111ms	remaining: 543ms
51:	learn: 33.6847774	total: 113ms	remaining: 538ms
52:	learn: 33.5446542	total: 115ms	remaining: 535ms
53:	learn: 33.3950446	total: 117ms	remaining: 531ms
54:	learn: 33.2387928	total: 118ms	remaining: 528ms
55:	learn: 33.0615363	total: 120ms	remaining: 524ms
56:	learn: 32.9202628	total: 122ms	remaining: 521ms
57:	learn: 32.7754727	total: 124ms	remaining: 518ms
58:	learn: 32.6497810	total: 126ms	remaining: 514ms
59:	learn: 32.5026899	total: 128ms	remaining: 511ms
60:	learn: 32.3796545	total: 130ms	remaining: 509ms
61:	learn: 32.2157682	total: 132ms	remaining: 507ms
62:	learn: 32.1380604	total: 134ms	remaining: 504ms
63:	learn: 32.0105055	total: 136ms	remaining: 501ms
64:	learn: 31.9120873	total: 138ms	remaining: 499ms
65:	learn: 31.7487718	total: 140ms	remaining: 497ms
66:	learn: 31.5845413	total: 142ms	remaining: 495ms
67:	learn: 31.4640579	total: 145ms	remaining: 495ms
68:	learn: 31.3354623	total: 147ms	remaining: 492ms
69:	learn: 31.1857192	total: 149ms	remaining: 490ms
70:	learn: 31.0630206	total: 151ms	remaining: 488ms
71:	learn: 30.9688475	total: 153ms	remaining: 485ms
72:	learn: 30.8467994	total: 155ms	remaining: 482ms
73:	learn: 30.7056673	total: 157ms	remaining: 479ms
74:	learn: 30.5626298	total: 159ms	remaining: 477ms
75:	learn: 30.4371776	total: 161ms	remaining: 475ms
76:	learn: 30.2909000	total: 163ms	remaining: 472ms
77:	learn: 30.1744981	total: 165ms	remaining: 469ms
78:	learn: 30.0696503	total: 167ms	remaining: 467ms
79:	learn: 29.9605491	total: 169ms	remaining: 464ms
80:	learn: 29.8443969	total: 171ms	remaining: 462ms
81:	learn: 29.7448994	total: 173ms	remaining: 459ms
82:	learn: 29.6038471	total: 175ms	remaining: 456ms
83:	learn: 29.4838289	total: 176ms	remaining: 454ms
84:	learn: 29.3641294	total: 178ms	remaining: 451ms
85:	learn: 29.2378368	total: 180ms	remaining: 449ms
86:	learn: 29.1465804	total: 182ms	remaining: 447ms
87:	learn: 29.0449734	total: 184ms	remaining: 444ms
88:	learn: 28.9190278	total: 186ms	remaining: 442ms
89:	learn: 28.7905133	total: 188ms	remaining: 440ms
90:	learn: 28.7003833	total: 190ms	remaining: 437ms
91:	learn: 28.5934447	total: 192ms	remaining: 435ms
92:	learn: 28.5135393	total: 195ms	remaining: 433ms
93:	learn: 28.3973561	total: 197ms	remaining: 431ms
94:	learn: 28.3048983	total: 198ms	remaining: 428ms
95:	learn: 28.1814050	total: 201ms	remaining: 426ms
96:	learn: 28.0830010	total: 202ms	remaining: 424ms
97:	learn: 27.9588196	total: 204ms	remaining: 421ms
98:	learn: 27.8945014	total: 206ms	remaining: 419ms
99:	learn: 27.8174594	total: 209ms	remaining: 417ms
100:	learn: 27.7200195	total: 211ms	remaining: 415ms
101:	learn: 27.6108886	total: 213ms	remaining: 413ms
102:	learn: 27.5048699	total: 214ms	remaining: 410ms
103:	learn: 27.4396363	total: 217ms	remaining: 408ms
104:	learn: 27.3335650	total: 219ms	remaining: 406ms
105:	learn: 27.2195779	total: 221ms	remaining: 404ms
106:	learn: 27.1251930	total: 222ms	remaining: 401ms
107:	learn: 27.0214286	total: 224ms	remaining: 399ms
108:	learn: 26.9086310	total: 226ms	remaining: 396ms
109:	learn: 26.8332747	total: 228ms	remaining: 394ms
110:	learn: 26.7369793	total: 230ms	remaining: 392ms
111:	learn: 26.6392428	total: 232ms	remaining: 390ms
112:	learn: 26.5373683	total: 234ms	remaining: 388ms
113:	learn: 26.4665025	total: 236ms	remaining: 385ms
114:	learn: 26.3762128	total: 238ms	remaining: 383ms
115:	learn: 26.2850146	total: 240ms	remaining: 381ms
116:	learn: 26.1862182	total: 242ms	remaining: 379ms
117:	learn: 26.0991366	total: 244ms	remaining: 376ms
118:	learn: 25.9966544	total: 246ms	remaining: 374ms
119:	learn: 25.9148704	total: 248ms	remaining: 372ms
120:	learn: 25.8458923	total: 253ms	remaining: 374ms
121:	learn: 25.7444245	total: 256ms	remaining: 373ms
122:	learn: 25.6470676	total: 259ms	remaining: 372ms
123:	learn: 25.5603439	total: 264ms	remaining: 374ms
124:	learn: 25.4830913	total: 270ms	remaining: 378ms
125:	learn: 25.3862285	total: 272ms	remaining: 376ms
126:	learn: 25.3099795	total: 275ms	remaining: 374ms
127:	learn: 25.2629912	total: 278ms	remaining: 374ms
128:	learn: 25.1703805	total: 281ms	remaining: 372ms
129:	learn: 25.1046119	total: 283ms	remaining: 370ms
130:	learn: 25.0335735	total: 286ms	remaining: 369ms
131:	learn: 24.9430937	total: 288ms	remaining: 367ms
132:	learn: 24.8673026	total: 291ms	remaining: 365ms
133:	learn: 24.8203406	total: 293ms	remaining: 363ms
134:	learn: 24.7492537	total: 295ms	remaining: 361ms
135:	learn: 24.6651913	total: 297ms	remaining: 358ms
136:	learn: 24.5915533	total: 299ms	remaining: 356ms
137:	learn: 24.5342028	total: 302ms	remaining: 354ms
138:	learn: 24.4613704	total: 304ms	remaining: 352ms
139:	learn: 24.3839975	total: 306ms	remaining: 350ms
140:	learn: 24.3307172	total: 308ms	remaining: 348ms
141:	learn: 24.2636479	total: 311ms	remaining: 346ms
142:	learn: 24.1766639	total: 313ms	remaining: 343ms
143:	learn: 24.0971142	total: 315ms	remaining: 341ms
144:	learn: 24.0281586	total: 317ms	remaining: 338ms
145:	learn: 23.9707706	total: 319ms	remaining: 336ms
146:	learn: 23.8907105	total: 321ms	remaining: 334ms
147:	learn: 23.8341362	total: 322ms	remaining: 331ms
148:	learn: 23.7816031	total: 325ms	remaining: 329ms
149:	learn: 23.7077928	total: 327ms	remaining: 327ms
150:	learn: 23.6398419	total: 330ms	remaining: 325ms
151:	learn: 23.5734043	total: 332ms	remaining: 323ms
152:	learn: 23.5163002	total: 334ms	remaining: 321ms
153:	learn: 23.4927482	total: 336ms	remaining: 319ms
154:	learn: 23.4409706	total: 338ms	remaining: 316ms
155:	learn: 23.3861012	total: 340ms	remaining: 313ms
156:	learn: 23.3503313	total: 341ms	remaining: 311ms
157:	learn: 23.2957124	total: 343ms	remaining: 308ms
158:	learn: 23.2302057	total: 345ms	remaining: 306ms
159:	learn: 23.1737519	total: 347ms	remaining: 303ms
160:	learn: 23.1144992	total: 348ms	remaining: 301ms
161:	learn: 23.0519418	total: 350ms	remaining: 299ms
162:	learn: 22.9836244	total: 353ms	remaining: 296ms
163:	learn: 22.9297219	total: 354ms	remaining: 294ms
164:	learn: 22.8800603	total: 356ms	remaining: 291ms
165:	learn: 22.8466231	total: 358ms	remaining: 289ms
166:	learn: 22.7877102	total: 360ms	remaining: 287ms
167:	learn: 22.7169575	total: 362ms	remaining: 284ms
168:	learn: 22.6559558	total: 364ms	remaining: 282ms
169:	learn: 22.5854113	total: 365ms	remaining: 279ms
170:	learn: 22.5363505	total: 367ms	remaining: 277ms
171:	learn: 22.4730769	total: 369ms	remaining: 275ms
172:	learn: 22.4072997	total: 371ms	remaining: 272ms
173:	learn: 22.3644528	total: 373ms	remaining: 270ms
174:	learn: 22.3290253	total: 375ms	remaining: 268ms
175:	learn: 22.2676350	total: 376ms	remaining: 265ms
176:	learn: 22.2047712	total: 378ms	remaining: 263ms
177:	learn: 22.1641434	total: 380ms	remaining: 260ms
178:	learn: 22.1177425	total: 382ms	remaining: 258ms
179:	learn: 22.0783176	total: 383ms	remaining: 256ms
180:	learn: 22.0346236	total: 385ms	remaining: 253ms
181:	learn: 21.9900260	total: 387ms	remaining: 251ms
182:	learn: 21.9369693	total: 389ms	remaining: 249ms
183:	learn: 21.8944173	total: 391ms	remaining: 246ms
184:	learn: 21.8306031	total: 392ms	remaining: 244ms
185:	learn: 21.7701401	total: 394ms	remaining: 242ms
186:	learn: 21.7194001	total: 396ms	remaining: 239ms
187:	learn: 21.6829984	total: 398ms	remaining: 237ms
188:	learn: 21.6557681	total: 399ms	remaining: 235ms
189:	learn: 21.6169500	total: 401ms	remaining: 232ms
190:	learn: 21.5631656	total: 403ms	remaining: 230ms
191:	learn: 21.5190681	total: 405ms	remaining: 228ms
192:	learn: 21.4678033	total: 407ms	remaining: 226ms
193:	learn: 21.4232036	total: 409ms	remaining: 223ms
194:	learn: 21.3774019	total: 411ms	remaining: 221ms
195:	learn: 21.3377322	total: 412ms	remaining: 219ms
196:	learn: 21.2875684	total: 414ms	remaining: 216ms
197:	learn: 21.2505968	total: 416ms	remaining: 214ms
198:	learn: 21.2115877	total: 417ms	remaining: 212ms
199:	learn: 21.1659642	total: 419ms	remaining: 210ms
200:	learn: 21.1374893	total: 421ms	remaining: 208ms
201:	learn: 21.0834600	total: 423ms	remaining: 205ms
202:	learn: 21.0316448	total: 425ms	remaining: 203ms
203:	learn: 20.9772643	total: 427ms	remaining: 201ms
204:	learn: 20.9373133	total: 429ms	remaining: 199ms
205:	learn: 20.9014638	total: 431ms	remaining: 197ms
206:	learn: 20.8451398	total: 433ms	remaining: 194ms
207:	learn: 20.8025018	total: 434ms	remaining: 192ms
208:	learn: 20.7649603	total: 436ms	remaining: 190ms
209:	learn: 20.7191047	total: 438ms	remaining: 188ms
210:	learn: 20.6805693	total: 440ms	remaining: 186ms
211:	learn: 20.6324533	total: 442ms	remaining: 184ms
212:	learn: 20.6146737	total: 445ms	remaining: 182ms
213:	learn: 20.5784140	total: 450ms	remaining: 181ms
214:	learn: 20.5455283	total: 453ms	remaining: 179ms
215:	learn: 20.4974600	total: 457ms	remaining: 178ms
216:	learn: 20.4562765	total: 460ms	remaining: 176ms
217:	learn: 20.4221951	total: 463ms	remaining: 174ms
218:	learn: 20.3777313	total: 466ms	remaining: 172ms
219:	learn: 20.3258419	total: 468ms	remaining: 170ms
220:	learn: 20.2928360	total: 470ms	remaining: 168ms
221:	learn: 20.2551815	total: 473ms	remaining: 166ms
222:	learn: 20.2064643	total: 475ms	remaining: 164ms
223:	learn: 20.1742482	total: 477ms	remaining: 162ms
224:	learn: 20.1318207	total: 479ms	remaining: 160ms
225:	learn: 20.0927328	total: 481ms	remaining: 157ms
226:	learn: 20.0656742	total: 482ms	remaining: 155ms
227:	learn: 20.0435404	total: 484ms	remaining: 153ms
228:	learn: 20.0069848	total: 486ms	remaining: 151ms
229:	learn: 19.9755803	total: 488ms	remaining: 148ms
230:	learn: 19.9307383	total: 489ms	remaining: 146ms
231:	learn: 19.9158091	total: 491ms	remaining: 144ms
232:	learn: 19.8763419	total: 493ms	remaining: 142ms
233:	learn: 19.8531801	total: 495ms	remaining: 140ms
234:	learn: 19.8249599	total: 497ms	remaining: 137ms
235:	learn: 19.7839542	total: 498ms	remaining: 135ms
236:	learn: 19.7630376	total: 500ms	remaining: 133ms
237:	learn: 19.7455795	total: 502ms	remaining: 131ms
238:	learn: 19.7144447	total: 504ms	remaining: 129ms
239:	learn: 19.6869890	total: 505ms	remaining: 126ms
240:	learn: 19.6675357	total: 507ms	remaining: 124ms
241:	learn: 19.6383954	total: 509ms	remaining: 122ms
242:	learn: 19.6120938	total: 511ms	remaining: 120ms
243:	learn: 19.5834160	total: 513ms	remaining: 118ms
244:	learn: 19.5396439	total: 514ms	remaining: 115ms
245:	learn: 19.5067666	total: 516ms	remaining: 113ms
246:	learn: 19.4927801	total: 518ms	remaining: 111ms
247:	learn: 19.4516672	total: 520ms	remaining: 109ms
248:	learn: 19.4122142	total: 522ms	remaining: 107ms
249:	learn: 19.3990471	total: 523ms	remaining: 105ms
250:	learn: 19.3621680	total: 525ms	remaining: 103ms
251:	learn: 19.3233971	total: 527ms	remaining: 100ms
252:	learn: 19.2845020	total: 529ms	remaining: 98.2ms
253:	learn: 19.2467929	total: 530ms	remaining: 96.1ms
254:	learn: 19.2252751	total: 532ms	remaining: 93.9ms
255:	learn: 19.1961836	total: 534ms	remaining: 91.8ms
256:	learn: 19.1698831	total: 536ms	remaining: 89.6ms
257:	learn: 19.1390963	total: 538ms	remaining: 87.5ms
258:	learn: 19.1134085	total: 539ms	remaining: 85.4ms
259:	learn: 19.0810088	total: 541ms	remaining: 83.3ms
260:	learn: 19.0468643	total: 543ms	remaining: 81.2ms
261:	learn: 19.0241528	total: 545ms	remaining: 79ms
262:	learn: 18.9873896	total: 547ms	remaining: 76.9ms
263:	learn: 18.9564409	total: 548ms	remaining: 74.8ms
264:	learn: 18.9275379	total: 550ms	remaining: 72.7ms
265:	learn: 18.9057621	total: 552ms	remaining: 70.5ms
266:	learn: 18.8784733	total: 554ms	remaining: 68.4ms
267:	learn: 18.8519024	total: 556ms	remaining: 66.3ms
268:	learn: 18.8221015	total: 557ms	remaining: 64.2ms
269:	learn: 18.8050296	total: 559ms	remaining: 62.1ms
270:	learn: 18.7723582	total: 562ms	remaining: 60.1ms
271:	learn: 18.7375207	total: 563ms	remaining: 58ms
272:	learn: 18.7198251	total: 565ms	remaining: 55.9ms
273:	learn: 18.6999233	total: 567ms	remaining: 53.8ms
274:	learn: 18.6880949	total: 569ms	remaining: 51.7ms
275:	learn: 18.6646338	total: 570ms	remaining: 49.6ms
276:	learn: 18.6542533	total: 572ms	remaining: 47.5ms
277:	learn: 18.6324754	total: 574ms	remaining: 45.4ms
278:	learn: 18.6033608	total: 576ms	remaining: 43.3ms
279:	learn: 18.5950842	total: 578ms	remaining: 41.3ms
280:	learn: 18.5831348	total: 579ms	remaining: 39.2ms
281:	learn: 18.5628230	total: 581ms	remaining: 37.1ms
282:	learn: 18.5537131	total: 583ms	remaining: 35ms
283:	learn: 18.5341601	total: 585ms	remaining: 32.9ms
284:	learn: 18.5049043	total: 586ms	remaining: 30.9ms
285:	learn: 18.4702144	total: 588ms	remaining: 28.8ms
286:	learn: 18.4458906	total: 590ms	remaining: 26.7ms
287:	learn: 18.4236945	total: 592ms	remaining: 24.7ms
288:	learn: 18.4000028	total: 594ms	remaining: 22.6ms
289:	learn: 18.3792071	total: 595ms	remaining: 20.5ms
290:	learn: 18.3550799	total: 597ms	remaining: 18.5ms
291:	learn: 18.3431291	total: 599ms	remaining: 16.4ms
292:	learn: 18.3192748	total: 601ms	remaining: 14.4ms
293:	learn: 18.2994765	total: 603ms	remaining: 12.3ms
294:	learn: 18.2803336	total: 605ms	remaining: 10.3ms
295:	learn: 18.2555657	total: 607ms	remaining: 8.2ms
296:	learn: 18.2452375	total: 609ms	remaining: 6.15ms
297:	learn: 18.2157329	total: 611ms	remaining: 4.1ms
298:	learn: 18.1939091	total: 613ms	remaining: 2.05ms
299:	learn: 18.1666821	total: 615ms	remaining: 0us
0:	learn: 47.2254626	total: 2.36ms	remaining: 705ms
1:	learn: 46.9962440	total: 4.5ms	remaining: 671ms
2:	learn: 46.7947817	total: 6.61ms	remaining: 655ms
3:	learn: 46.6009777	total: 8.81ms	remaining: 652ms
4:	learn: 46.4107506	total: 11ms	remaining: 648ms
5:	learn: 46.2304787	total: 13.1ms	remaining: 641ms
6:	learn: 46.0769010	total: 15.1ms	remaining: 633ms
7:	learn: 45.8479541	total: 17.3ms	remaining: 632ms
8:	learn: 45.6554474	total: 19.4ms	remaining: 628ms
9:	learn: 45.4695217	total: 21.6ms	remaining: 627ms
10:	learn: 45.3391898	total: 23.7ms	remaining: 622ms
11:	learn: 45.2162888	total: 25.8ms	remaining: 619ms
12:	learn: 45.0198019	total: 28ms	remaining: 617ms
13:	learn: 44.8657812	total: 30ms	remaining: 613ms
14:	learn: 44.6907876	total: 32.3ms	remaining: 614ms
15:	learn: 44.5187501	total: 34.5ms	remaining: 613ms
16:	learn: 44.3794840	total: 36.6ms	remaining: 609ms
17:	learn: 44.2123440	total: 38.6ms	remaining: 604ms
18:	learn: 43.9823683	total: 40.4ms	remaining: 598ms
19:	learn: 43.8334161	total: 42.6ms	remaining: 596ms
20:	learn: 43.6533851	total: 45ms	remaining: 598ms
21:	learn: 43.4873096	total: 47.1ms	remaining: 596ms
22:	learn: 43.3078128	total: 49.7ms	remaining: 598ms
23:	learn: 43.1291584	total: 52.2ms	remaining: 600ms
24:	learn: 42.9038764	total: 54.1ms	remaining: 595ms
25:	learn: 42.7991582	total: 55.9ms	remaining: 589ms
26:	learn: 42.6587504	total: 57.7ms	remaining: 584ms
27:	learn: 42.5119763	total: 59.5ms	remaining: 578ms
28:	learn: 42.3234340	total: 61.2ms	remaining: 572ms
29:	learn: 42.1101845	total: 63ms	remaining: 567ms
30:	learn: 41.9000580	total: 64.7ms	remaining: 562ms
31:	learn: 41.7204596	total: 66.5ms	remaining: 557ms
32:	learn: 41.5845326	total: 68.4ms	remaining: 553ms
33:	learn: 41.4109127	total: 70.2ms	remaining: 549ms
34:	learn: 41.2849186	total: 71.9ms	remaining: 545ms
35:	learn: 41.1201146	total: 73.6ms	remaining: 540ms
36:	learn: 40.9751458	total: 75.4ms	remaining: 536ms
37:	learn: 40.8727129	total: 77.1ms	remaining: 532ms
38:	learn: 40.7891069	total: 79.1ms	remaining: 529ms
39:	learn: 40.6583517	total: 80.8ms	remaining: 525ms
40:	learn: 40.5168941	total: 82.6ms	remaining: 522ms
41:	learn: 40.3616647	total: 84.3ms	remaining: 518ms
42:	learn: 40.1969130	total: 86.1ms	remaining: 515ms
43:	learn: 40.0297025	total: 87.9ms	remaining: 511ms
44:	learn: 39.8598257	total: 89.6ms	remaining: 508ms
45:	learn: 39.7021499	total: 91.4ms	remaining: 505ms
46:	learn: 39.5495314	total: 93.1ms	remaining: 501ms
47:	learn: 39.3841769	total: 95ms	remaining: 499ms
48:	learn: 39.2808351	total: 96.9ms	remaining: 496ms
49:	learn: 39.1659075	total: 99ms	remaining: 495ms
50:	learn: 39.0788946	total: 101ms	remaining: 493ms
51:	learn: 38.9854228	total: 103ms	remaining: 491ms
52:	learn: 38.8744280	total: 105ms	remaining: 489ms
53:	learn: 38.8038180	total: 107ms	remaining: 486ms
54:	learn: 38.6601092	total: 108ms	remaining: 483ms
55:	learn: 38.5307162	total: 110ms	remaining: 480ms
56:	learn: 38.3853058	total: 112ms	remaining: 478ms
57:	learn: 38.2646111	total: 114ms	remaining: 476ms
58:	learn: 38.0986994	total: 116ms	remaining: 474ms
59:	learn: 37.9504300	total: 118ms	remaining: 471ms
60:	learn: 37.8361530	total: 119ms	remaining: 468ms
61:	learn: 37.7340741	total: 121ms	remaining: 466ms
62:	learn: 37.6456462	total: 123ms	remaining: 463ms
63:	learn: 37.5456802	total: 125ms	remaining: 461ms
64:	learn: 37.4417261	total: 127ms	remaining: 459ms
65:	learn: 37.2699256	total: 129ms	remaining: 457ms
66:	learn: 37.1128139	total: 131ms	remaining: 455ms
67:	learn: 36.9766499	total: 133ms	remaining: 452ms
68:	learn: 36.8707320	total: 134ms	remaining: 450ms
69:	learn: 36.7198828	total: 136ms	remaining: 447ms
70:	learn: 36.6435535	total: 138ms	remaining: 444ms
71:	learn: 36.5154607	total: 140ms	remaining: 442ms
72:	learn: 36.4273611	total: 141ms	remaining: 439ms
73:	learn: 36.3132857	total: 143ms	remaining: 437ms
74:	learn: 36.2396892	total: 145ms	remaining: 435ms
75:	learn: 36.1070444	total: 147ms	remaining: 433ms
76:	learn: 36.0360131	total: 149ms	remaining: 431ms
77:	learn: 35.9206901	total: 151ms	remaining: 429ms
78:	learn: 35.8347946	total: 153ms	remaining: 427ms
79:	learn: 35.7380762	total: 155ms	remaining: 425ms
80:	learn: 35.5844199	total: 157ms	remaining: 423ms
81:	learn: 35.4436363	total: 158ms	remaining: 421ms
82:	learn: 35.2923273	total: 160ms	remaining: 419ms
83:	learn: 35.1413305	total: 162ms	remaining: 417ms
84:	learn: 35.0476011	total: 164ms	remaining: 415ms
85:	learn: 34.9732674	total: 166ms	remaining: 413ms
86:	learn: 34.8693388	total: 168ms	remaining: 412ms
87:	learn: 34.7775982	total: 172ms	remaining: 415ms
88:	learn: 34.6552091	total: 175ms	remaining: 415ms
89:	learn: 34.5350778	total: 178ms	remaining: 416ms
90:	learn: 34.4614889	total: 181ms	remaining: 416ms
91:	learn: 34.3913141	total: 184ms	remaining: 415ms
92:	learn: 34.3365906	total: 186ms	remaining: 415ms
93:	learn: 34.2636353	total: 189ms	remaining: 413ms
94:	learn: 34.1695317	total: 191ms	remaining: 412ms
95:	learn: 34.0392726	total: 193ms	remaining: 409ms
96:	learn: 33.9869569	total: 195ms	remaining: 408ms
97:	learn: 33.8699469	total: 197ms	remaining: 406ms
98:	learn: 33.7534030	total: 199ms	remaining: 404ms
99:	learn: 33.6214442	total: 201ms	remaining: 402ms
100:	learn: 33.5412261	total: 203ms	remaining: 400ms
101:	learn: 33.4179107	total: 205ms	remaining: 398ms
102:	learn: 33.3069958	total: 207ms	remaining: 396ms
103:	learn: 33.1922064	total: 209ms	remaining: 394ms
104:	learn: 33.1140730	total: 211ms	remaining: 392ms
105:	learn: 33.0451570	total: 213ms	remaining: 389ms
106:	learn: 32.9497824	total: 214ms	remaining: 387ms
107:	learn: 32.8859008	total: 216ms	remaining: 385ms
108:	learn: 32.8023490	total: 218ms	remaining: 383ms
109:	learn: 32.7364184	total: 220ms	remaining: 380ms
110:	learn: 32.6472882	total: 222ms	remaining: 378ms
111:	learn: 32.5548679	total: 224ms	remaining: 375ms
112:	learn: 32.4940735	total: 225ms	remaining: 373ms
113:	learn: 32.3998708	total: 227ms	remaining: 371ms
114:	learn: 32.3379645	total: 229ms	remaining: 368ms
115:	learn: 32.2330069	total: 231ms	remaining: 366ms
116:	learn: 32.1290345	total: 233ms	remaining: 364ms
117:	learn: 32.0286561	total: 234ms	remaining: 362ms
118:	learn: 31.9046296	total: 236ms	remaining: 359ms
119:	learn: 31.8283274	total: 238ms	remaining: 357ms
120:	learn: 31.7251159	total: 240ms	remaining: 355ms
121:	learn: 31.6769050	total: 242ms	remaining: 352ms
122:	learn: 31.5958754	total: 243ms	remaining: 350ms
123:	learn: 31.5183196	total: 245ms	remaining: 348ms
124:	learn: 31.4335206	total: 247ms	remaining: 346ms
125:	learn: 31.3562393	total: 249ms	remaining: 344ms
126:	learn: 31.2788742	total: 251ms	remaining: 341ms
127:	learn: 31.1732626	total: 252ms	remaining: 339ms
128:	learn: 31.0477560	total: 254ms	remaining: 337ms
129:	learn: 30.9763737	total: 256ms	remaining: 335ms
130:	learn: 30.8656503	total: 258ms	remaining: 332ms
131:	learn: 30.7441377	total: 260ms	remaining: 330ms
132:	learn: 30.6818439	total: 261ms	remaining: 328ms
133:	learn: 30.5691925	total: 263ms	remaining: 326ms
134:	learn: 30.4989367	total: 265ms	remaining: 324ms
135:	learn: 30.4107901	total: 267ms	remaining: 322ms
136:	learn: 30.3517383	total: 269ms	remaining: 320ms
137:	learn: 30.2531868	total: 271ms	remaining: 318ms
138:	learn: 30.1881532	total: 272ms	remaining: 315ms
139:	learn: 30.1055334	total: 274ms	remaining: 313ms
140:	learn: 30.0704958	total: 276ms	remaining: 311ms
141:	learn: 29.9757517	total: 278ms	remaining: 309ms
142:	learn: 29.8755319	total: 280ms	remaining: 307ms
143:	learn: 29.7785283	total: 282ms	remaining: 305ms
144:	learn: 29.6827605	total: 283ms	remaining: 303ms
145:	learn: 29.6179053	total: 285ms	remaining: 301ms
146:	learn: 29.5243258	total: 287ms	remaining: 299ms
147:	learn: 29.4754676	total: 289ms	remaining: 297ms
148:	learn: 29.3858220	total: 291ms	remaining: 295ms
149:	learn: 29.3305935	total: 293ms	remaining: 293ms
150:	learn: 29.2646346	total: 294ms	remaining: 290ms
151:	learn: 29.1941735	total: 296ms	remaining: 288ms
152:	learn: 29.1249773	total: 298ms	remaining: 286ms
153:	learn: 29.0686401	total: 300ms	remaining: 284ms
154:	learn: 28.9920782	total: 302ms	remaining: 282ms
155:	learn: 28.9517001	total: 304ms	remaining: 280ms
156:	learn: 28.9103768	total: 305ms	remaining: 278ms
157:	learn: 28.8560564	total: 308ms	remaining: 276ms
158:	learn: 28.8052048	total: 310ms	remaining: 275ms
159:	learn: 28.7596382	total: 312ms	remaining: 273ms
160:	learn: 28.6784449	total: 313ms	remaining: 271ms
161:	learn: 28.6077184	total: 315ms	remaining: 268ms
162:	learn: 28.5268277	total: 317ms	remaining: 266ms
163:	learn: 28.4941481	total: 319ms	remaining: 264ms
164:	learn: 28.4582558	total: 321ms	remaining: 262ms
165:	learn: 28.4048727	total: 323ms	remaining: 260ms
166:	learn: 28.3235976	total: 324ms	remaining: 258ms
167:	learn: 28.2546621	total: 326ms	remaining: 256ms
168:	learn: 28.2145488	total: 328ms	remaining: 254ms
169:	learn: 28.1091079	total: 330ms	remaining: 252ms
170:	learn: 28.0211361	total: 332ms	remaining: 250ms
171:	learn: 27.9536661	total: 334ms	remaining: 249ms
172:	learn: 27.9196123	total: 336ms	remaining: 247ms
173:	learn: 27.8672763	total: 338ms	remaining: 245ms
174:	learn: 27.7913399	total: 340ms	remaining: 243ms
175:	learn: 27.7349855	total: 342ms	remaining: 241ms
176:	learn: 27.6500128	total: 344ms	remaining: 239ms
177:	learn: 27.6002421	total: 346ms	remaining: 237ms
178:	learn: 27.5378769	total: 349ms	remaining: 236ms
179:	learn: 27.5093385	total: 353ms	remaining: 236ms
180:	learn: 27.4514891	total: 356ms	remaining: 234ms
181:	learn: 27.3987466	total: 360ms	remaining: 233ms
182:	learn: 27.3078378	total: 366ms	remaining: 234ms
183:	learn: 27.2302125	total: 372ms	remaining: 234ms
184:	learn: 27.1654660	total: 374ms	remaining: 233ms
185:	learn: 27.0771330	total: 378ms	remaining: 232ms
186:	learn: 27.0195046	total: 381ms	remaining: 230ms
187:	learn: 26.9819845	total: 383ms	remaining: 228ms
188:	learn: 26.9188037	total: 385ms	remaining: 226ms
189:	learn: 26.8791319	total: 387ms	remaining: 224ms
190:	learn: 26.8152339	total: 389ms	remaining: 222ms
191:	learn: 26.7928500	total: 392ms	remaining: 220ms
192:	learn: 26.7096857	total: 394ms	remaining: 218ms
193:	learn: 26.6377110	total: 396ms	remaining: 216ms
194:	learn: 26.5735627	total: 398ms	remaining: 215ms
195:	learn: 26.5066526	total: 401ms	remaining: 213ms
196:	learn: 26.4443901	total: 403ms	remaining: 211ms
197:	learn: 26.3871804	total: 405ms	remaining: 209ms
198:	learn: 26.3195647	total: 407ms	remaining: 207ms
199:	learn: 26.2924038	total: 410ms	remaining: 205ms
200:	learn: 26.2655991	total: 412ms	remaining: 203ms
201:	learn: 26.2420267	total: 415ms	remaining: 201ms
202:	learn: 26.1651007	total: 416ms	remaining: 199ms
203:	learn: 26.1067523	total: 418ms	remaining: 197ms
204:	learn: 26.0563872	total: 420ms	remaining: 195ms
205:	learn: 26.0004920	total: 422ms	remaining: 193ms
206:	learn: 25.9512070	total: 424ms	remaining: 190ms
207:	learn: 25.9167990	total: 426ms	remaining: 188ms
208:	learn: 25.8372689	total: 428ms	remaining: 186ms
209:	learn: 25.7879704	total: 430ms	remaining: 184ms
210:	learn: 25.7499820	total: 432ms	remaining: 182ms
211:	learn: 25.6868880	total: 434ms	remaining: 180ms
212:	learn: 25.6395687	total: 436ms	remaining: 178ms
213:	learn: 25.5808450	total: 439ms	remaining: 176ms
214:	learn: 25.5181935	total: 441ms	remaining: 174ms
215:	learn: 25.4978378	total: 443ms	remaining: 172ms
216:	learn: 25.4366659	total: 445ms	remaining: 170ms
217:	learn: 25.3775286	total: 447ms	remaining: 168ms
218:	learn: 25.3189171	total: 449ms	remaining: 166ms
219:	learn: 25.2549914	total: 451ms	remaining: 164ms
220:	learn: 25.2259186	total: 452ms	remaining: 162ms
221:	learn: 25.1640975	total: 454ms	remaining: 160ms
222:	learn: 25.1029457	total: 456ms	remaining: 158ms
223:	learn: 25.0692285	total: 458ms	remaining: 155ms
224:	learn: 25.0210450	total: 460ms	remaining: 153ms
225:	learn: 24.9802463	total: 462ms	remaining: 151ms
226:	learn: 24.9410052	total: 463ms	remaining: 149ms
227:	learn: 24.9034472	total: 465ms	remaining: 147ms
228:	learn: 24.8426272	total: 467ms	remaining: 145ms
229:	learn: 24.8203072	total: 469ms	remaining: 143ms
230:	learn: 24.7645717	total: 471ms	remaining: 141ms
231:	learn: 24.7188723	total: 473ms	remaining: 138ms
232:	learn: 24.6825257	total: 474ms	remaining: 136ms
233:	learn: 24.6042517	total: 476ms	remaining: 134ms
234:	learn: 24.5462431	total: 478ms	remaining: 132ms
235:	learn: 24.5035391	total: 480ms	remaining: 130ms
236:	learn: 24.4662327	total: 481ms	remaining: 128ms
237:	learn: 24.3985629	total: 483ms	remaining: 126ms
238:	learn: 24.3402364	total: 485ms	remaining: 124ms
239:	learn: 24.3068217	total: 487ms	remaining: 122ms
240:	learn: 24.2684506	total: 489ms	remaining: 120ms
241:	learn: 24.2201115	total: 491ms	remaining: 118ms
242:	learn: 24.1703042	total: 493ms	remaining: 116ms
243:	learn: 24.1175357	total: 494ms	remaining: 113ms
244:	learn: 24.0593431	total: 496ms	remaining: 111ms
245:	learn: 24.0184605	total: 498ms	remaining: 109ms
246:	learn: 23.9755224	total: 500ms	remaining: 107ms
247:	learn: 23.9325681	total: 501ms	remaining: 105ms
248:	learn: 23.8827099	total: 503ms	remaining: 103ms
249:	learn: 23.8545353	total: 505ms	remaining: 101ms
250:	learn: 23.8118920	total: 507ms	remaining: 99ms
251:	learn: 23.7546697	total: 509ms	remaining: 97ms
252:	learn: 23.6953497	total: 511ms	remaining: 94.9ms
253:	learn: 23.6391422	total: 513ms	remaining: 92.8ms
254:	learn: 23.5800782	total: 514ms	remaining: 90.8ms
255:	learn: 23.5399450	total: 516ms	remaining: 88.7ms
256:	learn: 23.5027690	total: 518ms	remaining: 86.7ms
257:	learn: 23.4500453	total: 521ms	remaining: 84.7ms
258:	learn: 23.4168029	total: 522ms	remaining: 82.7ms
259:	learn: 23.3627592	total: 524ms	remaining: 80.7ms
260:	learn: 23.3111465	total: 526ms	remaining: 78.6ms
261:	learn: 23.2580725	total: 528ms	remaining: 76.6ms
262:	learn: 23.2100223	total: 530ms	remaining: 74.5ms
263:	learn: 23.1664560	total: 532ms	remaining: 72.5ms
264:	learn: 23.1122913	total: 533ms	remaining: 70.5ms
265:	learn: 23.0949418	total: 535ms	remaining: 68.4ms
266:	learn: 23.0395705	total: 537ms	remaining: 66.4ms
267:	learn: 22.9890382	total: 539ms	remaining: 64.4ms
268:	learn: 22.9467412	total: 541ms	remaining: 62.4ms
269:	learn: 22.9227067	total: 543ms	remaining: 60.3ms
270:	learn: 22.9072742	total: 545ms	remaining: 58.4ms
271:	learn: 22.8703917	total: 549ms	remaining: 56.6ms
272:	learn: 22.8584619	total: 552ms	remaining: 54.6ms
273:	learn: 22.8314721	total: 555ms	remaining: 52.7ms
274:	learn: 22.7849149	total: 558ms	remaining: 50.7ms
275:	learn: 22.7608809	total: 561ms	remaining: 48.8ms
276:	learn: 22.7112889	total: 563ms	remaining: 46.8ms
277:	learn: 22.6731659	total: 566ms	remaining: 44.8ms
278:	learn: 22.6283301	total: 567ms	remaining: 42.7ms
279:	learn: 22.6051717	total: 570ms	remaining: 40.7ms
280:	learn: 22.5798107	total: 572ms	remaining: 38.7ms
281:	learn: 22.5409164	total: 574ms	remaining: 36.7ms
282:	learn: 22.5068225	total: 576ms	remaining: 34.6ms
283:	learn: 22.4854153	total: 578ms	remaining: 32.6ms
284:	learn: 22.4407676	total: 580ms	remaining: 30.5ms
285:	learn: 22.3974458	total: 581ms	remaining: 28.5ms
286:	learn: 22.3725926	total: 583ms	remaining: 26.4ms
287:	learn: 22.3352073	total: 585ms	remaining: 24.4ms
288:	learn: 22.3111087	total: 587ms	remaining: 22.3ms
289:	learn: 22.2660649	total: 588ms	remaining: 20.3ms
290:	learn: 22.2248776	total: 590ms	remaining: 18.3ms
291:	learn: 22.2143307	total: 592ms	remaining: 16.2ms
292:	learn: 22.1959320	total: 594ms	remaining: 14.2ms
293:	learn: 22.1763587	total: 596ms	remaining: 12.2ms
294:	learn: 22.1394795	total: 598ms	remaining: 10.1ms
295:	learn: 22.1204204	total: 599ms	remaining: 8.1ms
296:	learn: 22.0812931	total: 601ms	remaining: 6.07ms
297:	learn: 22.0437126	total: 603ms	remaining: 4.04ms
298:	learn: 21.9977048	total: 604ms	remaining: 2.02ms
299:	learn: 21.9714822	total: 606ms	remaining: 0us
0:	learn: 46.7882195	total: 1.98ms	remaining: 591ms
1:	learn: 46.5884646	total: 3.75ms	remaining: 559ms
2:	learn: 46.3506322	total: 5.54ms	remaining: 549ms
3:	learn: 46.2092160	total: 7.44ms	remaining: 551ms
4:	learn: 46.0142066	total: 9.2ms	remaining: 543ms
5:	learn: 45.8472715	total: 11ms	remaining: 537ms
6:	learn: 45.6698068	total: 12.8ms	remaining: 537ms
7:	learn: 45.4336440	total: 14.6ms	remaining: 532ms
8:	learn: 45.2797290	total: 16.3ms	remaining: 528ms
9:	learn: 45.0906470	total: 18ms	remaining: 522ms
10:	learn: 44.9492695	total: 19.8ms	remaining: 521ms
11:	learn: 44.7236500	total: 21.6ms	remaining: 517ms
12:	learn: 44.5140850	total: 23.5ms	remaining: 519ms
13:	learn: 44.3073280	total: 25.4ms	remaining: 518ms
14:	learn: 44.1772124	total: 27.2ms	remaining: 516ms
15:	learn: 43.9740742	total: 29.1ms	remaining: 517ms
16:	learn: 43.8793189	total: 31.1ms	remaining: 518ms
17:	learn: 43.7382830	total: 32.9ms	remaining: 515ms
18:	learn: 43.5300660	total: 34.6ms	remaining: 512ms
19:	learn: 43.3822970	total: 36.4ms	remaining: 509ms
20:	learn: 43.1922004	total: 38.2ms	remaining: 507ms
21:	learn: 43.0312758	total: 40.1ms	remaining: 506ms
22:	learn: 42.8515845	total: 41.8ms	remaining: 504ms
23:	learn: 42.6572029	total: 43.6ms	remaining: 501ms
24:	learn: 42.5323323	total: 45.3ms	remaining: 498ms
25:	learn: 42.4131705	total: 47.2ms	remaining: 497ms
26:	learn: 42.2891188	total: 48.9ms	remaining: 495ms
27:	learn: 42.1257091	total: 50.7ms	remaining: 492ms
28:	learn: 41.9242823	total: 52.6ms	remaining: 491ms
29:	learn: 41.7234670	total: 54.5ms	remaining: 490ms
30:	learn: 41.5095945	total: 56.2ms	remaining: 487ms
31:	learn: 41.3653879	total: 57.9ms	remaining: 485ms
32:	learn: 41.2542208	total: 59.6ms	remaining: 482ms
33:	learn: 41.0848706	total: 61.3ms	remaining: 480ms
34:	learn: 40.9831867	total: 63.1ms	remaining: 477ms
35:	learn: 40.8630639	total: 65ms	remaining: 476ms
36:	learn: 40.7328137	total: 66.7ms	remaining: 474ms
37:	learn: 40.5951341	total: 68.8ms	remaining: 474ms
38:	learn: 40.4365274	total: 70.6ms	remaining: 472ms
39:	learn: 40.2797648	total: 72.5ms	remaining: 472ms
40:	learn: 40.1289788	total: 74.6ms	remaining: 471ms
41:	learn: 40.0058458	total: 77.9ms	remaining: 479ms
42:	learn: 39.8370834	total: 81.5ms	remaining: 487ms
43:	learn: 39.6985409	total: 84.2ms	remaining: 490ms
44:	learn: 39.5235705	total: 86.9ms	remaining: 492ms
45:	learn: 39.3677015	total: 89.7ms	remaining: 495ms
46:	learn: 39.2483931	total: 92.2ms	remaining: 496ms
47:	learn: 39.0965096	total: 94.9ms	remaining: 498ms
48:	learn: 38.9335198	total: 97.2ms	remaining: 498ms
49:	learn: 38.7833550	total: 99.5ms	remaining: 498ms
50:	learn: 38.6115389	total: 102ms	remaining: 497ms
51:	learn: 38.5074367	total: 104ms	remaining: 496ms
52:	learn: 38.4184861	total: 106ms	remaining: 494ms
53:	learn: 38.3463771	total: 109ms	remaining: 497ms
54:	learn: 38.1989304	total: 112ms	remaining: 497ms
55:	learn: 38.0892818	total: 114ms	remaining: 496ms
56:	learn: 37.9633329	total: 116ms	remaining: 494ms
57:	learn: 37.8352237	total: 118ms	remaining: 494ms
58:	learn: 37.7326179	total: 121ms	remaining: 494ms
59:	learn: 37.6324986	total: 123ms	remaining: 493ms
60:	learn: 37.4844421	total: 126ms	remaining: 494ms
61:	learn: 37.3486716	total: 129ms	remaining: 494ms
62:	learn: 37.2286209	total: 131ms	remaining: 493ms
63:	learn: 37.1221620	total: 134ms	remaining: 493ms
64:	learn: 36.9753174	total: 136ms	remaining: 492ms
65:	learn: 36.8391663	total: 138ms	remaining: 490ms
66:	learn: 36.7242295	total: 140ms	remaining: 488ms
67:	learn: 36.5999990	total: 143ms	remaining: 487ms
68:	learn: 36.5008941	total: 145ms	remaining: 485ms
69:	learn: 36.3581143	total: 147ms	remaining: 483ms
70:	learn: 36.2377355	total: 150ms	remaining: 482ms
71:	learn: 36.1009384	total: 152ms	remaining: 481ms
72:	learn: 35.9753867	total: 154ms	remaining: 480ms
73:	learn: 35.8718006	total: 156ms	remaining: 477ms
74:	learn: 35.7364519	total: 159ms	remaining: 476ms
75:	learn: 35.6637660	total: 161ms	remaining: 474ms
76:	learn: 35.5750025	total: 163ms	remaining: 472ms
77:	learn: 35.4751012	total: 165ms	remaining: 470ms
78:	learn: 35.3887695	total: 168ms	remaining: 469ms
79:	learn: 35.3061758	total: 170ms	remaining: 466ms
80:	learn: 35.1634219	total: 171ms	remaining: 464ms
81:	learn: 35.0419647	total: 173ms	remaining: 461ms
82:	learn: 34.9120008	total: 176ms	remaining: 459ms
83:	learn: 34.7959758	total: 178ms	remaining: 458ms
84:	learn: 34.7318897	total: 181ms	remaining: 457ms
85:	learn: 34.6075305	total: 183ms	remaining: 457ms
86:	learn: 34.5296638	total: 186ms	remaining: 456ms
87:	learn: 34.4631014	total: 188ms	remaining: 453ms
88:	learn: 34.3443888	total: 190ms	remaining: 450ms
89:	learn: 34.2429640	total: 192ms	remaining: 448ms
90:	learn: 34.0985375	total: 194ms	remaining: 445ms
91:	learn: 33.9877467	total: 196ms	remaining: 442ms
92:	learn: 33.9329773	total: 197ms	remaining: 439ms
93:	learn: 33.8065532	total: 199ms	remaining: 436ms
94:	learn: 33.7243192	total: 201ms	remaining: 434ms
95:	learn: 33.5898787	total: 203ms	remaining: 431ms
96:	learn: 33.5045369	total: 205ms	remaining: 428ms
97:	learn: 33.3957820	total: 206ms	remaining: 425ms
98:	learn: 33.3044825	total: 208ms	remaining: 422ms
99:	learn: 33.2347533	total: 210ms	remaining: 420ms
100:	learn: 33.1590017	total: 211ms	remaining: 417ms
101:	learn: 33.0401175	total: 213ms	remaining: 414ms
102:	learn: 32.9414651	total: 215ms	remaining: 411ms
103:	learn: 32.8985717	total: 217ms	remaining: 408ms
104:	learn: 32.8334678	total: 219ms	remaining: 406ms
105:	learn: 32.7637771	total: 221ms	remaining: 404ms
106:	learn: 32.6926058	total: 222ms	remaining: 401ms
107:	learn: 32.6018681	total: 224ms	remaining: 398ms
108:	learn: 32.5514342	total: 226ms	remaining: 396ms
109:	learn: 32.4929824	total: 228ms	remaining: 393ms
110:	learn: 32.4047019	total: 229ms	remaining: 390ms
111:	learn: 32.3448383	total: 231ms	remaining: 388ms
112:	learn: 32.2323475	total: 233ms	remaining: 385ms
113:	learn: 32.1549291	total: 235ms	remaining: 383ms
114:	learn: 32.0887819	total: 236ms	remaining: 380ms
115:	learn: 31.9458161	total: 238ms	remaining: 378ms
116:	learn: 31.8374918	total: 240ms	remaining: 375ms
117:	learn: 31.7451979	total: 242ms	remaining: 373ms
118:	learn: 31.6419904	total: 243ms	remaining: 370ms
119:	learn: 31.5989171	total: 245ms	remaining: 368ms
120:	learn: 31.4972365	total: 247ms	remaining: 365ms
121:	learn: 31.4571865	total: 249ms	remaining: 363ms
122:	learn: 31.3699383	total: 251ms	remaining: 361ms
123:	learn: 31.3172933	total: 253ms	remaining: 359ms
124:	learn: 31.2441634	total: 255ms	remaining: 356ms
125:	learn: 31.1967687	total: 256ms	remaining: 354ms
126:	learn: 31.1267475	total: 258ms	remaining: 352ms
127:	learn: 31.0574737	total: 260ms	remaining: 349ms
128:	learn: 30.9518421	total: 262ms	remaining: 347ms
129:	learn: 30.9068766	total: 263ms	remaining: 344ms
130:	learn: 30.7847031	total: 265ms	remaining: 342ms
131:	learn: 30.7194739	total: 267ms	remaining: 340ms
132:	learn: 30.6215712	total: 269ms	remaining: 338ms
133:	learn: 30.5325379	total: 271ms	remaining: 336ms
134:	learn: 30.4571307	total: 273ms	remaining: 334ms
135:	learn: 30.3521585	total: 275ms	remaining: 332ms
136:	learn: 30.2679211	total: 277ms	remaining: 330ms
137:	learn: 30.1992390	total: 279ms	remaining: 328ms
138:	learn: 30.1076003	total: 281ms	remaining: 325ms
139:	learn: 30.0272700	total: 283ms	remaining: 323ms
140:	learn: 29.9889391	total: 285ms	remaining: 322ms
141:	learn: 29.8984303	total: 288ms	remaining: 320ms
142:	learn: 29.8154581	total: 291ms	remaining: 319ms
143:	learn: 29.7204090	total: 296ms	remaining: 320ms
144:	learn: 29.6679621	total: 299ms	remaining: 320ms
145:	learn: 29.6112521	total: 302ms	remaining: 319ms
146:	learn: 29.5455079	total: 305ms	remaining: 318ms
147:	learn: 29.4976033	total: 308ms	remaining: 316ms
148:	learn: 29.4677338	total: 310ms	remaining: 315ms
149:	learn: 29.3857150	total: 312ms	remaining: 312ms
150:	learn: 29.3291675	total: 314ms	remaining: 310ms
151:	learn: 29.2662418	total: 317ms	remaining: 309ms
152:	learn: 29.2202571	total: 319ms	remaining: 306ms
153:	learn: 29.1664717	total: 321ms	remaining: 304ms
154:	learn: 29.0813524	total: 323ms	remaining: 302ms
155:	learn: 29.0044791	total: 324ms	remaining: 299ms
156:	learn: 28.9106720	total: 326ms	remaining: 297ms
157:	learn: 28.8136881	total: 328ms	remaining: 295ms
158:	learn: 28.7810142	total: 330ms	remaining: 292ms
159:	learn: 28.6935487	total: 331ms	remaining: 290ms
160:	learn: 28.6114279	total: 333ms	remaining: 288ms
161:	learn: 28.5378858	total: 335ms	remaining: 285ms
162:	learn: 28.4789687	total: 337ms	remaining: 283ms
163:	learn: 28.4498805	total: 339ms	remaining: 281ms
164:	learn: 28.3662541	total: 340ms	remaining: 278ms
165:	learn: 28.3294752	total: 342ms	remaining: 276ms
166:	learn: 28.2614279	total: 344ms	remaining: 274ms
167:	learn: 28.2101931	total: 346ms	remaining: 272ms
168:	learn: 28.1459434	total: 348ms	remaining: 269ms
169:	learn: 28.0530035	total: 349ms	remaining: 267ms
170:	learn: 27.9725048	total: 351ms	remaining: 265ms
171:	learn: 27.9430707	total: 353ms	remaining: 263ms
172:	learn: 27.9091981	total: 355ms	remaining: 260ms
173:	learn: 27.8489510	total: 357ms	remaining: 258ms
174:	learn: 27.7792396	total: 358ms	remaining: 256ms
175:	learn: 27.7130814	total: 360ms	remaining: 254ms
176:	learn: 27.6375817	total: 362ms	remaining: 252ms
177:	learn: 27.5949295	total: 364ms	remaining: 249ms
178:	learn: 27.5324755	total: 366ms	remaining: 247ms
179:	learn: 27.4853102	total: 367ms	remaining: 245ms
180:	learn: 27.4228454	total: 369ms	remaining: 243ms
181:	learn: 27.3882648	total: 371ms	remaining: 241ms
182:	learn: 27.3253251	total: 373ms	remaining: 238ms
183:	learn: 27.2730492	total: 375ms	remaining: 236ms
184:	learn: 27.2098191	total: 376ms	remaining: 234ms
185:	learn: 27.1241765	total: 378ms	remaining: 232ms
186:	learn: 27.0619479	total: 380ms	remaining: 230ms
187:	learn: 27.0269849	total: 382ms	remaining: 227ms
188:	learn: 26.9622544	total: 383ms	remaining: 225ms
189:	learn: 26.8941527	total: 385ms	remaining: 223ms
190:	learn: 26.8240108	total: 387ms	remaining: 221ms
191:	learn: 26.7691728	total: 389ms	remaining: 219ms
192:	learn: 26.6961922	total: 391ms	remaining: 217ms
193:	learn: 26.6518084	total: 393ms	remaining: 215ms
194:	learn: 26.6083803	total: 395ms	remaining: 213ms
195:	learn: 26.5888380	total: 396ms	remaining: 210ms
196:	learn: 26.5465450	total: 398ms	remaining: 208ms
197:	learn: 26.5207671	total: 400ms	remaining: 206ms
198:	learn: 26.4657654	total: 402ms	remaining: 204ms
199:	learn: 26.4432179	total: 403ms	remaining: 202ms
200:	learn: 26.4160908	total: 405ms	remaining: 200ms
201:	learn: 26.3990943	total: 407ms	remaining: 198ms
202:	learn: 26.3221146	total: 409ms	remaining: 195ms
203:	learn: 26.2666602	total: 411ms	remaining: 193ms
204:	learn: 26.2468127	total: 412ms	remaining: 191ms
205:	learn: 26.1896825	total: 414ms	remaining: 189ms
206:	learn: 26.1256298	total: 416ms	remaining: 187ms
207:	learn: 26.0909286	total: 418ms	remaining: 185ms
208:	learn: 26.0225070	total: 420ms	remaining: 183ms
209:	learn: 25.9936666	total: 421ms	remaining: 181ms
210:	learn: 25.9573963	total: 423ms	remaining: 179ms
211:	learn: 25.9059536	total: 425ms	remaining: 176ms
212:	learn: 25.8426638	total: 427ms	remaining: 174ms
213:	learn: 25.7891099	total: 428ms	remaining: 172ms
214:	learn: 25.7308213	total: 430ms	remaining: 170ms
215:	learn: 25.7038724	total: 432ms	remaining: 168ms
216:	learn: 25.6536411	total: 434ms	remaining: 166ms
217:	learn: 25.5957951	total: 435ms	remaining: 164ms
218:	learn: 25.5554072	total: 437ms	remaining: 162ms
219:	learn: 25.5039556	total: 439ms	remaining: 160ms
220:	learn: 25.4769625	total: 441ms	remaining: 158ms
221:	learn: 25.4442729	total: 443ms	remaining: 156ms
222:	learn: 25.3783977	total: 445ms	remaining: 154ms
223:	learn: 25.3627155	total: 447ms	remaining: 152ms
224:	learn: 25.3523227	total: 448ms	remaining: 149ms
225:	learn: 25.3088874	total: 450ms	remaining: 147ms
226:	learn: 25.2643503	total: 452ms	remaining: 145ms
227:	learn: 25.2476728	total: 454ms	remaining: 143ms
228:	learn: 25.1890875	total: 456ms	remaining: 141ms
229:	learn: 25.1675600	total: 457ms	remaining: 139ms
230:	learn: 25.1403308	total: 459ms	remaining: 137ms
231:	learn: 25.1025987	total: 461ms	remaining: 135ms
232:	learn: 25.0360607	total: 463ms	remaining: 133ms
233:	learn: 24.9745941	total: 465ms	remaining: 131ms
234:	learn: 24.9567997	total: 467ms	remaining: 129ms
235:	learn: 24.9282562	total: 469ms	remaining: 127ms
236:	learn: 24.8698936	total: 471ms	remaining: 125ms
237:	learn: 24.8558798	total: 473ms	remaining: 123ms
238:	learn: 24.8247587	total: 475ms	remaining: 121ms
239:	learn: 24.7771385	total: 477ms	remaining: 119ms
240:	learn: 24.7610276	total: 478ms	remaining: 117ms
241:	learn: 24.7354098	total: 480ms	remaining: 115ms
242:	learn: 24.6864772	total: 482ms	remaining: 113ms
243:	learn: 24.6725697	total: 486ms	remaining: 112ms
244:	learn: 24.6273757	total: 489ms	remaining: 110ms
245:	learn: 24.5977458	total: 492ms	remaining: 108ms
246:	learn: 24.5802706	total: 498ms	remaining: 107ms
247:	learn: 24.5407602	total: 503ms	remaining: 105ms
248:	learn: 24.5245607	total: 506ms	remaining: 104ms
249:	learn: 24.5095271	total: 509ms	remaining: 102ms
250:	learn: 24.4803695	total: 513ms	remaining: 100ms
251:	learn: 24.4291124	total: 515ms	remaining: 98.2ms
252:	learn: 24.3885620	total: 518ms	remaining: 96.2ms
253:	learn: 24.3619748	total: 520ms	remaining: 94.2ms
254:	learn: 24.3110330	total: 522ms	remaining: 92.1ms
255:	learn: 24.2975366	total: 524ms	remaining: 90.1ms
256:	learn: 24.2540671	total: 526ms	remaining: 88.1ms
257:	learn: 24.2315849	total: 529ms	remaining: 86.1ms
258:	learn: 24.2111588	total: 531ms	remaining: 84.1ms
259:	learn: 24.1645293	total: 533ms	remaining: 82.1ms
260:	learn: 24.1419922	total: 536ms	remaining: 80ms
261:	learn: 24.1240278	total: 538ms	remaining: 78ms
262:	learn: 24.0822349	total: 540ms	remaining: 75.9ms
263:	learn: 24.0419172	total: 542ms	remaining: 73.9ms
264:	learn: 24.0173143	total: 544ms	remaining: 71.9ms
265:	learn: 23.9803331	total: 546ms	remaining: 69.8ms
266:	learn: 23.9684627	total: 548ms	remaining: 67.8ms
267:	learn: 23.9252251	total: 550ms	remaining: 65.7ms
268:	learn: 23.9025609	total: 552ms	remaining: 63.7ms
269:	learn: 23.8863449	total: 554ms	remaining: 61.6ms
270:	learn: 23.8624715	total: 556ms	remaining: 59.5ms
271:	learn: 23.8331923	total: 558ms	remaining: 57.5ms
272:	learn: 23.8033099	total: 561ms	remaining: 55.4ms
273:	learn: 23.7933741	total: 563ms	remaining: 53.4ms
274:	learn: 23.7569921	total: 566ms	remaining: 51.4ms
275:	learn: 23.7098407	total: 568ms	remaining: 49.4ms
276:	learn: 23.6803157	total: 570ms	remaining: 47.3ms
277:	learn: 23.6623130	total: 572ms	remaining: 45.2ms
278:	learn: 23.6470273	total: 573ms	remaining: 43.2ms
279:	learn: 23.6240445	total: 575ms	remaining: 41.1ms
280:	learn: 23.6089946	total: 577ms	remaining: 39ms
281:	learn: 23.5703685	total: 579ms	remaining: 36.9ms
282:	learn: 23.5579034	total: 580ms	remaining: 34.9ms
283:	learn: 23.5410484	total: 582ms	remaining: 32.8ms
284:	learn: 23.4939983	total: 584ms	remaining: 30.7ms
285:	learn: 23.4626613	total: 586ms	remaining: 28.7ms
286:	learn: 23.4156246	total: 587ms	remaining: 26.6ms
287:	learn: 23.3924259	total: 589ms	remaining: 24.5ms
288:	learn: 23.3813932	total: 591ms	remaining: 22.5ms
289:	learn: 23.3635950	total: 593ms	remaining: 20.4ms
290:	learn: 23.3364924	total: 595ms	remaining: 18.4ms
291:	learn: 23.2947256	total: 596ms	remaining: 16.3ms
292:	learn: 23.2648078	total: 598ms	remaining: 14.3ms
293:	learn: 23.2396096	total: 600ms	remaining: 12.2ms
294:	learn: 23.2176858	total: 602ms	remaining: 10.2ms
295:	learn: 23.1941773	total: 604ms	remaining: 8.16ms
296:	learn: 23.1834613	total: 606ms	remaining: 6.12ms
297:	learn: 23.1649799	total: 608ms	remaining: 4.08ms
298:	learn: 23.1460743	total: 609ms	remaining: 2.04ms
299:	learn: 23.1181018	total: 611ms	remaining: 0us
0:	learn: 47.4509473	total: 4.09ms	remaining: 1.22s
1:	learn: 47.2328245	total: 7.35ms	remaining: 1.09s
2:	learn: 47.0188416	total: 10.5ms	remaining: 1.04s
3:	learn: 46.7838032	total: 13.2ms	remaining: 978ms
4:	learn: 46.5547103	total: 15.8ms	remaining: 932ms
5:	learn: 46.3143284	total: 18.5ms	remaining: 907ms
6:	learn: 46.1541318	total: 21ms	remaining: 879ms
7:	learn: 45.9826209	total: 22.9ms	remaining: 836ms
8:	learn: 45.8053588	total: 24.9ms	remaining: 806ms
9:	learn: 45.6224210	total: 28ms	remaining: 812ms
10:	learn: 45.4710397	total: 30.4ms	remaining: 799ms
11:	learn: 45.2868200	total: 32.5ms	remaining: 779ms
12:	learn: 45.0975014	total: 34.2ms	remaining: 755ms
13:	learn: 44.8901266	total: 35.8ms	remaining: 732ms
14:	learn: 44.7381740	total: 37.6ms	remaining: 715ms
15:	learn: 44.6165738	total: 39.4ms	remaining: 699ms
16:	learn: 44.5087601	total: 41.3ms	remaining: 687ms
17:	learn: 44.3029968	total: 43.1ms	remaining: 676ms
18:	learn: 44.0938327	total: 44.9ms	remaining: 663ms
19:	learn: 43.9452413	total: 46.6ms	remaining: 652ms
20:	learn: 43.7947641	total: 48.3ms	remaining: 642ms
21:	learn: 43.6403053	total: 50.1ms	remaining: 633ms
22:	learn: 43.4707106	total: 51.8ms	remaining: 624ms
23:	learn: 43.2806831	total: 53.6ms	remaining: 616ms
24:	learn: 43.1538328	total: 55.3ms	remaining: 608ms
25:	learn: 42.9835082	total: 57ms	remaining: 601ms
26:	learn: 42.8641226	total: 59ms	remaining: 596ms
27:	learn: 42.6858993	total: 60.7ms	remaining: 590ms
28:	learn: 42.5014960	total: 62.5ms	remaining: 584ms
29:	learn: 42.3017986	total: 64.3ms	remaining: 579ms
30:	learn: 42.1045094	total: 66.1ms	remaining: 573ms
31:	learn: 41.9146447	total: 67.8ms	remaining: 568ms
32:	learn: 41.7907923	total: 69.6ms	remaining: 563ms
33:	learn: 41.6749497	total: 71.5ms	remaining: 559ms
34:	learn: 41.5367091	total: 73.2ms	remaining: 554ms
35:	learn: 41.4166965	total: 74.9ms	remaining: 550ms
36:	learn: 41.2310956	total: 76.7ms	remaining: 546ms
37:	learn: 41.0383607	total: 78.5ms	remaining: 541ms
38:	learn: 40.9529347	total: 80.2ms	remaining: 537ms
39:	learn: 40.8039142	total: 82ms	remaining: 533ms
40:	learn: 40.7146033	total: 83.7ms	remaining: 529ms
41:	learn: 40.5885605	total: 85.5ms	remaining: 525ms
42:	learn: 40.4004309	total: 87.3ms	remaining: 522ms
43:	learn: 40.3048456	total: 89ms	remaining: 518ms
44:	learn: 40.2027703	total: 90.9ms	remaining: 515ms
45:	learn: 40.0444987	total: 92.7ms	remaining: 512ms
46:	learn: 39.9478128	total: 94.5ms	remaining: 509ms
47:	learn: 39.8252897	total: 96.4ms	remaining: 506ms
48:	learn: 39.6736480	total: 98.2ms	remaining: 503ms
49:	learn: 39.5186311	total: 99.9ms	remaining: 500ms
50:	learn: 39.3833153	total: 102ms	remaining: 496ms
51:	learn: 39.2224117	total: 103ms	remaining: 493ms
52:	learn: 39.1239283	total: 105ms	remaining: 490ms
53:	learn: 38.9990750	total: 107ms	remaining: 487ms
54:	learn: 38.8462276	total: 109ms	remaining: 484ms
55:	learn: 38.6801660	total: 110ms	remaining: 481ms
56:	learn: 38.5822341	total: 112ms	remaining: 478ms
57:	learn: 38.4557704	total: 114ms	remaining: 475ms
58:	learn: 38.3080619	total: 116ms	remaining: 472ms
59:	learn: 38.1817163	total: 117ms	remaining: 469ms
60:	learn: 38.0539176	total: 119ms	remaining: 467ms
61:	learn: 37.9467574	total: 121ms	remaining: 464ms
62:	learn: 37.8038261	total: 123ms	remaining: 461ms
63:	learn: 37.7136576	total: 124ms	remaining: 458ms
64:	learn: 37.5916022	total: 126ms	remaining: 455ms
65:	learn: 37.4899516	total: 128ms	remaining: 454ms
66:	learn: 37.3546414	total: 130ms	remaining: 452ms
67:	learn: 37.2856601	total: 132ms	remaining: 449ms
68:	learn: 37.1760084	total: 134ms	remaining: 447ms
69:	learn: 37.0399859	total: 136ms	remaining: 446ms
70:	learn: 36.9517409	total: 138ms	remaining: 444ms
71:	learn: 36.8198777	total: 139ms	remaining: 441ms
72:	learn: 36.7019746	total: 141ms	remaining: 439ms
73:	learn: 36.5859163	total: 143ms	remaining: 436ms
74:	learn: 36.4740132	total: 145ms	remaining: 434ms
75:	learn: 36.3415479	total: 146ms	remaining: 431ms
76:	learn: 36.2225463	total: 148ms	remaining: 429ms
77:	learn: 36.1046443	total: 150ms	remaining: 426ms
78:	learn: 36.0273896	total: 152ms	remaining: 424ms
79:	learn: 35.9293203	total: 153ms	remaining: 421ms
80:	learn: 35.8409047	total: 155ms	remaining: 419ms
81:	learn: 35.7520943	total: 157ms	remaining: 417ms
82:	learn: 35.6195684	total: 158ms	remaining: 414ms
83:	learn: 35.5139262	total: 160ms	remaining: 412ms
84:	learn: 35.4400977	total: 162ms	remaining: 410ms
85:	learn: 35.3200442	total: 164ms	remaining: 408ms
86:	learn: 35.2227847	total: 166ms	remaining: 406ms
87:	learn: 35.1279701	total: 167ms	remaining: 403ms
88:	learn: 35.0005041	total: 169ms	remaining: 401ms
89:	learn: 34.8951527	total: 171ms	remaining: 399ms
90:	learn: 34.7428563	total: 173ms	remaining: 397ms
91:	learn: 34.6273846	total: 175ms	remaining: 395ms
92:	learn: 34.5189566	total: 177ms	remaining: 393ms
93:	learn: 34.4118616	total: 178ms	remaining: 391ms
94:	learn: 34.3016270	total: 180ms	remaining: 389ms
95:	learn: 34.2142012	total: 182ms	remaining: 387ms
96:	learn: 34.1517462	total: 184ms	remaining: 385ms
97:	learn: 34.0481639	total: 186ms	remaining: 382ms
98:	learn: 33.9988244	total: 187ms	remaining: 380ms
99:	learn: 33.8913636	total: 189ms	remaining: 378ms
100:	learn: 33.8035772	total: 191ms	remaining: 376ms
101:	learn: 33.7300076	total: 193ms	remaining: 374ms
102:	learn: 33.6268210	total: 195ms	remaining: 372ms
103:	learn: 33.5338370	total: 196ms	remaining: 370ms
104:	learn: 33.4638378	total: 198ms	remaining: 368ms
105:	learn: 33.3907231	total: 200ms	remaining: 366ms
106:	learn: 33.3213207	total: 202ms	remaining: 364ms
107:	learn: 33.2021440	total: 204ms	remaining: 362ms
108:	learn: 33.1369023	total: 206ms	remaining: 361ms
109:	learn: 33.0752696	total: 208ms	remaining: 359ms
110:	learn: 32.9853494	total: 209ms	remaining: 356ms
111:	learn: 32.9243355	total: 211ms	remaining: 354ms
112:	learn: 32.8616230	total: 213ms	remaining: 352ms
113:	learn: 32.7837080	total: 215ms	remaining: 350ms
114:	learn: 32.7210014	total: 216ms	remaining: 348ms
115:	learn: 32.5991812	total: 218ms	remaining: 346ms
116:	learn: 32.5270674	total: 220ms	remaining: 344ms
117:	learn: 32.4533579	total: 222ms	remaining: 342ms
118:	learn: 32.3693832	total: 224ms	remaining: 341ms
119:	learn: 32.3131063	total: 226ms	remaining: 339ms
120:	learn: 32.2354451	total: 228ms	remaining: 337ms
121:	learn: 32.1789109	total: 230ms	remaining: 335ms
122:	learn: 32.0747609	total: 231ms	remaining: 333ms
123:	learn: 32.0171338	total: 233ms	remaining: 331ms
124:	learn: 31.9301802	total: 235ms	remaining: 330ms
125:	learn: 31.8702712	total: 238ms	remaining: 328ms
126:	learn: 31.7972388	total: 240ms	remaining: 326ms
127:	learn: 31.7221593	total: 242ms	remaining: 325ms
128:	learn: 31.6013775	total: 243ms	remaining: 323ms
129:	learn: 31.4874635	total: 245ms	remaining: 321ms
130:	learn: 31.3968347	total: 250ms	remaining: 322ms
131:	learn: 31.3025818	total: 253ms	remaining: 322ms
132:	learn: 31.2425777	total: 256ms	remaining: 321ms
133:	learn: 31.1530600	total: 261ms	remaining: 324ms
134:	learn: 31.0812133	total: 267ms	remaining: 326ms
135:	learn: 30.9780941	total: 269ms	remaining: 325ms
136:	learn: 30.8811810	total: 272ms	remaining: 324ms
137:	learn: 30.8098969	total: 276ms	remaining: 324ms
138:	learn: 30.7153836	total: 278ms	remaining: 322ms
139:	learn: 30.6358083	total: 280ms	remaining: 320ms
140:	learn: 30.5896067	total: 282ms	remaining: 318ms
141:	learn: 30.5288310	total: 284ms	remaining: 316ms
142:	learn: 30.4787586	total: 286ms	remaining: 314ms
143:	learn: 30.3748148	total: 288ms	remaining: 312ms
144:	learn: 30.3223730	total: 290ms	remaining: 310ms
145:	learn: 30.2935000	total: 293ms	remaining: 309ms
146:	learn: 30.2014678	total: 295ms	remaining: 307ms
147:	learn: 30.1548935	total: 297ms	remaining: 305ms
148:	learn: 30.1206970	total: 299ms	remaining: 303ms
149:	learn: 30.0333147	total: 301ms	remaining: 301ms
150:	learn: 29.9790816	total: 303ms	remaining: 299ms
151:	learn: 29.9162228	total: 305ms	remaining: 297ms
152:	learn: 29.8357412	total: 308ms	remaining: 295ms
153:	learn: 29.7619570	total: 310ms	remaining: 294ms
154:	learn: 29.7178127	total: 312ms	remaining: 292ms
155:	learn: 29.6539732	total: 314ms	remaining: 290ms
156:	learn: 29.6116204	total: 316ms	remaining: 288ms
157:	learn: 29.5626999	total: 318ms	remaining: 286ms
158:	learn: 29.4924776	total: 321ms	remaining: 284ms
159:	learn: 29.4326222	total: 323ms	remaining: 282ms
160:	learn: 29.3603405	total: 325ms	remaining: 281ms
161:	learn: 29.2878370	total: 328ms	remaining: 279ms
162:	learn: 29.2189208	total: 330ms	remaining: 278ms
163:	learn: 29.1838716	total: 332ms	remaining: 275ms
164:	learn: 29.0962954	total: 334ms	remaining: 273ms
165:	learn: 29.0316462	total: 336ms	remaining: 271ms
166:	learn: 28.9525169	total: 338ms	remaining: 269ms
167:	learn: 28.8960335	total: 340ms	remaining: 267ms
168:	learn: 28.8518194	total: 341ms	remaining: 265ms
169:	learn: 28.7778622	total: 344ms	remaining: 263ms
170:	learn: 28.7489311	total: 345ms	remaining: 261ms
171:	learn: 28.6975021	total: 347ms	remaining: 258ms
172:	learn: 28.6524180	total: 349ms	remaining: 256ms
173:	learn: 28.6153014	total: 351ms	remaining: 254ms
174:	learn: 28.5350641	total: 353ms	remaining: 252ms
175:	learn: 28.4654023	total: 355ms	remaining: 250ms
176:	learn: 28.4063750	total: 356ms	remaining: 248ms
177:	learn: 28.3676933	total: 358ms	remaining: 245ms
178:	learn: 28.3038490	total: 360ms	remaining: 243ms
179:	learn: 28.2647297	total: 362ms	remaining: 241ms
180:	learn: 28.2012065	total: 363ms	remaining: 239ms
181:	learn: 28.1652315	total: 365ms	remaining: 237ms
182:	learn: 28.0814687	total: 367ms	remaining: 235ms
183:	learn: 28.0237252	total: 369ms	remaining: 233ms
184:	learn: 27.9500516	total: 371ms	remaining: 230ms
185:	learn: 27.8843434	total: 373ms	remaining: 228ms
186:	learn: 27.8228669	total: 374ms	remaining: 226ms
187:	learn: 27.7818891	total: 376ms	remaining: 224ms
188:	learn: 27.7295848	total: 378ms	remaining: 222ms
189:	learn: 27.6626612	total: 380ms	remaining: 220ms
190:	learn: 27.6000071	total: 381ms	remaining: 218ms
191:	learn: 27.5471956	total: 383ms	remaining: 216ms
192:	learn: 27.4722833	total: 385ms	remaining: 213ms
193:	learn: 27.4108872	total: 387ms	remaining: 211ms
194:	learn: 27.3318659	total: 389ms	remaining: 209ms
195:	learn: 27.2985907	total: 390ms	remaining: 207ms
196:	learn: 27.2795843	total: 392ms	remaining: 205ms
197:	learn: 27.2476536	total: 394ms	remaining: 203ms
198:	learn: 27.1838593	total: 396ms	remaining: 201ms
199:	learn: 27.1343171	total: 397ms	remaining: 199ms
200:	learn: 27.0798698	total: 399ms	remaining: 197ms
201:	learn: 27.0569274	total: 401ms	remaining: 195ms
202:	learn: 27.0257016	total: 403ms	remaining: 193ms
203:	learn: 26.9983631	total: 405ms	remaining: 191ms
204:	learn: 26.9370253	total: 407ms	remaining: 189ms
205:	learn: 26.9046542	total: 409ms	remaining: 186ms
206:	learn: 26.8410127	total: 410ms	remaining: 184ms
207:	learn: 26.8226898	total: 412ms	remaining: 182ms
208:	learn: 26.7718034	total: 414ms	remaining: 180ms
209:	learn: 26.7344199	total: 416ms	remaining: 178ms
210:	learn: 26.7117470	total: 418ms	remaining: 176ms
211:	learn: 26.6568496	total: 420ms	remaining: 174ms
212:	learn: 26.5920838	total: 422ms	remaining: 172ms
213:	learn: 26.5463511	total: 424ms	remaining: 170ms
214:	learn: 26.5009409	total: 426ms	remaining: 168ms
215:	learn: 26.4702206	total: 427ms	remaining: 166ms
216:	learn: 26.4231110	total: 430ms	remaining: 164ms
217:	learn: 26.3681957	total: 431ms	remaining: 162ms
218:	learn: 26.3346590	total: 433ms	remaining: 160ms
219:	learn: 26.2914969	total: 436ms	remaining: 158ms
220:	learn: 26.2696992	total: 438ms	remaining: 156ms
221:	learn: 26.2235293	total: 440ms	remaining: 155ms
222:	learn: 26.1678122	total: 444ms	remaining: 153ms
223:	learn: 26.1489140	total: 448ms	remaining: 152ms
224:	learn: 26.1043492	total: 452ms	remaining: 151ms
225:	learn: 26.0553795	total: 455ms	remaining: 149ms
226:	learn: 26.0313326	total: 458ms	remaining: 147ms
227:	learn: 25.9950016	total: 461ms	remaining: 146ms
228:	learn: 25.9345264	total: 464ms	remaining: 144ms
229:	learn: 25.9048683	total: 466ms	remaining: 142ms
230:	learn: 25.8545561	total: 469ms	remaining: 140ms
231:	learn: 25.8337291	total: 471ms	remaining: 138ms
232:	learn: 25.8017436	total: 472ms	remaining: 136ms
233:	learn: 25.7632904	total: 474ms	remaining: 134ms
234:	learn: 25.7152408	total: 476ms	remaining: 132ms
235:	learn: 25.6833693	total: 478ms	remaining: 129ms
236:	learn: 25.6194804	total: 479ms	remaining: 127ms
237:	learn: 25.5778488	total: 481ms	remaining: 125ms
238:	learn: 25.5232180	total: 483ms	remaining: 123ms
239:	learn: 25.4760930	total: 485ms	remaining: 121ms
240:	learn: 25.4571920	total: 486ms	remaining: 119ms
241:	learn: 25.4297425	total: 488ms	remaining: 117ms
242:	learn: 25.3831441	total: 490ms	remaining: 115ms
243:	learn: 25.3559339	total: 492ms	remaining: 113ms
244:	learn: 25.3063452	total: 494ms	remaining: 111ms
245:	learn: 25.2779587	total: 496ms	remaining: 109ms
246:	learn: 25.2569417	total: 497ms	remaining: 107ms
247:	learn: 25.2279937	total: 499ms	remaining: 105ms
248:	learn: 25.2078352	total: 501ms	remaining: 103ms
249:	learn: 25.1820595	total: 503ms	remaining: 101ms
250:	learn: 25.1498509	total: 505ms	remaining: 98.6ms
251:	learn: 25.0926104	total: 507ms	remaining: 96.5ms
252:	learn: 25.0496170	total: 509ms	remaining: 94.5ms
253:	learn: 25.0088543	total: 510ms	remaining: 92.4ms
254:	learn: 24.9597823	total: 512ms	remaining: 90.4ms
255:	learn: 24.9419795	total: 514ms	remaining: 88.3ms
256:	learn: 24.9181799	total: 516ms	remaining: 86.3ms
257:	learn: 24.8748821	total: 517ms	remaining: 84.2ms
258:	learn: 24.8494404	total: 519ms	remaining: 82.2ms
259:	learn: 24.7975977	total: 521ms	remaining: 80.2ms
260:	learn: 24.7778201	total: 523ms	remaining: 78.1ms
261:	learn: 24.7552863	total: 525ms	remaining: 76.1ms
262:	learn: 24.7021314	total: 526ms	remaining: 74ms
263:	learn: 24.6427325	total: 528ms	remaining: 72ms
264:	learn: 24.6173677	total: 530ms	remaining: 70ms
265:	learn: 24.5567054	total: 532ms	remaining: 68ms
266:	learn: 24.5085968	total: 534ms	remaining: 65.9ms
267:	learn: 24.4668220	total: 535ms	remaining: 63.9ms
268:	learn: 24.4294909	total: 537ms	remaining: 61.9ms
269:	learn: 24.4110425	total: 539ms	remaining: 59.9ms
270:	learn: 24.3896369	total: 541ms	remaining: 57.9ms
271:	learn: 24.3594666	total: 542ms	remaining: 55.8ms
272:	learn: 24.3268537	total: 544ms	remaining: 53.8ms
273:	learn: 24.2917875	total: 546ms	remaining: 51.8ms
274:	learn: 24.2530978	total: 548ms	remaining: 49.8ms
275:	learn: 24.2025878	total: 550ms	remaining: 47.8ms
276:	learn: 24.1738463	total: 552ms	remaining: 45.8ms
277:	learn: 24.1586023	total: 554ms	remaining: 43.8ms
278:	learn: 24.1488022	total: 556ms	remaining: 41.8ms
279:	learn: 24.1174446	total: 557ms	remaining: 39.8ms
280:	learn: 24.1017518	total: 559ms	remaining: 37.8ms
281:	learn: 24.0712899	total: 561ms	remaining: 35.8ms
282:	learn: 24.0504811	total: 563ms	remaining: 33.8ms
283:	learn: 24.0239766	total: 565ms	remaining: 31.8ms
284:	learn: 23.9721248	total: 566ms	remaining: 29.8ms
285:	learn: 23.9377764	total: 568ms	remaining: 27.8ms
286:	learn: 23.8923944	total: 570ms	remaining: 25.8ms
287:	learn: 23.8700693	total: 572ms	remaining: 23.8ms
288:	learn: 23.8403570	total: 573ms	remaining: 21.8ms
289:	learn: 23.7840604	total: 575ms	remaining: 19.8ms
290:	learn: 23.7417930	total: 577ms	remaining: 17.8ms
291:	learn: 23.7059848	total: 579ms	remaining: 15.9ms
292:	learn: 23.6797074	total: 580ms	remaining: 13.9ms
293:	learn: 23.6614726	total: 582ms	remaining: 11.9ms
294:	learn: 23.6407646	total: 584ms	remaining: 9.9ms
295:	learn: 23.6254328	total: 586ms	remaining: 7.92ms
296:	learn: 23.6134281	total: 588ms	remaining: 5.93ms
297:	learn: 23.5765738	total: 589ms	remaining: 3.96ms
298:	learn: 23.5531217	total: 591ms	remaining: 1.98ms
299:	learn: 23.5207031	total: 593ms	remaining: 0us
0:	learn: 27.6165091	total: 5.7ms	remaining: 564ms
1:	learn: 27.2156009	total: 14.8ms	remaining: 725ms
2:	learn: 26.8744169	total: 27.2ms	remaining: 879ms
3:	learn: 26.5530473	total: 33.3ms	remaining: 799ms
4:	learn: 26.1200739	total: 40.7ms	remaining: 774ms
5:	learn: 25.7559063	total: 46.4ms	remaining: 727ms
6:	learn: 25.3817459	total: 52ms	remaining: 691ms
7:	learn: 25.0780231	total: 57.9ms	remaining: 666ms
8:	learn: 24.7908836	total: 64.1ms	remaining: 648ms
9:	learn: 24.5023726	total: 69.6ms	remaining: 626ms
10:	learn: 24.2430447	total: 75.3ms	remaining: 609ms
11:	learn: 24.0150987	total: 80.9ms	remaining: 594ms
12:	learn: 23.6832732	total: 85.9ms	remaining: 575ms
13:	learn: 23.4512462	total: 92.2ms	remaining: 566ms
14:	learn: 23.2300808	total: 98.3ms	remaining: 557ms
15:	learn: 23.0198192	total: 103ms	remaining: 542ms
16:	learn: 22.7757356	total: 108ms	remaining: 527ms
17:	learn: 22.4962727	total: 113ms	remaining: 514ms
18:	learn: 22.2131794	total: 117ms	remaining: 500ms
19:	learn: 21.9844087	total: 122ms	remaining: 490ms
20:	learn: 21.6467820	total: 127ms	remaining: 478ms
21:	learn: 21.4458045	total: 132ms	remaining: 468ms
22:	learn: 21.2706627	total: 137ms	remaining: 458ms
23:	learn: 21.0770166	total: 142ms	remaining: 449ms
24:	learn: 20.8871491	total: 146ms	remaining: 439ms
25:	learn: 20.7151270	total: 151ms	remaining: 430ms
26:	learn: 20.5585218	total: 156ms	remaining: 421ms
27:	learn: 20.4091128	total: 160ms	remaining: 413ms
28:	learn: 20.2343121	total: 165ms	remaining: 405ms
29:	learn: 20.0685862	total: 170ms	remaining: 398ms
30:	learn: 19.8339661	total: 175ms	remaining: 390ms
31:	learn: 19.6811138	total: 180ms	remaining: 382ms
32:	learn: 19.4881999	total: 185ms	remaining: 375ms
33:	learn: 19.3473429	total: 189ms	remaining: 368ms
34:	learn: 19.1087185	total: 194ms	remaining: 361ms
35:	learn: 18.9817724	total: 199ms	remaining: 354ms
36:	learn: 18.8465124	total: 204ms	remaining: 348ms
37:	learn: 18.6998182	total: 209ms	remaining: 341ms
38:	learn: 18.5534881	total: 214ms	remaining: 334ms
39:	learn: 18.4221213	total: 219ms	remaining: 328ms
40:	learn: 18.3262428	total: 223ms	remaining: 321ms
41:	learn: 18.2018519	total: 228ms	remaining: 315ms
42:	learn: 18.0704402	total: 234ms	remaining: 310ms
43:	learn: 17.9674737	total: 239ms	remaining: 304ms
44:	learn: 17.8092746	total: 244ms	remaining: 298ms
45:	learn: 17.7036671	total: 249ms	remaining: 292ms
46:	learn: 17.5636023	total: 255ms	remaining: 287ms
47:	learn: 17.3922671	total: 265ms	remaining: 287ms
48:	learn: 17.2777727	total: 273ms	remaining: 284ms
49:	learn: 17.1901866	total: 279ms	remaining: 279ms
50:	learn: 17.0799264	total: 286ms	remaining: 275ms
51:	learn: 17.0022808	total: 291ms	remaining: 269ms
52:	learn: 16.9193737	total: 296ms	remaining: 263ms
53:	learn: 16.8349324	total: 301ms	remaining: 257ms
54:	learn: 16.7122802	total: 307ms	remaining: 251ms
55:	learn: 16.5736462	total: 312ms	remaining: 245ms
56:	learn: 16.4576798	total: 317ms	remaining: 239ms
57:	learn: 16.3336075	total: 322ms	remaining: 233ms
58:	learn: 16.2578113	total: 327ms	remaining: 227ms
59:	learn: 16.1586938	total: 332ms	remaining: 221ms
60:	learn: 16.0827831	total: 337ms	remaining: 215ms
61:	learn: 16.0030150	total: 342ms	remaining: 210ms
62:	learn: 15.8741662	total: 347ms	remaining: 204ms
63:	learn: 15.7533897	total: 352ms	remaining: 198ms
64:	learn: 15.6743804	total: 357ms	remaining: 192ms
65:	learn: 15.6291324	total: 361ms	remaining: 186ms
66:	learn: 15.5363523	total: 366ms	remaining: 180ms
67:	learn: 15.4675550	total: 371ms	remaining: 175ms
68:	learn: 15.3959873	total: 376ms	remaining: 169ms
69:	learn: 15.3222045	total: 380ms	remaining: 163ms
70:	learn: 15.2343883	total: 385ms	remaining: 157ms
71:	learn: 15.1891070	total: 390ms	remaining: 152ms
72:	learn: 15.1320798	total: 395ms	remaining: 146ms
73:	learn: 15.0590468	total: 400ms	remaining: 140ms
74:	learn: 14.9682726	total: 404ms	remaining: 135ms
75:	learn: 14.8868528	total: 409ms	remaining: 129ms
76:	learn: 14.8046328	total: 414ms	remaining: 124ms
77:	learn: 14.7253152	total: 419ms	remaining: 118ms
78:	learn: 14.6438207	total: 423ms	remaining: 113ms
79:	learn: 14.5350651	total: 428ms	remaining: 107ms
80:	learn: 14.4301800	total: 433ms	remaining: 102ms
81:	learn: 14.3716251	total: 438ms	remaining: 96.2ms
82:	learn: 14.3127586	total: 443ms	remaining: 90.8ms
83:	learn: 14.2685086	total: 449ms	remaining: 85.4ms
84:	learn: 14.1936111	total: 454ms	remaining: 80ms
85:	learn: 14.1488261	total: 463ms	remaining: 75.4ms
86:	learn: 14.0654602	total: 472ms	remaining: 70.5ms
87:	learn: 14.0026195	total: 483ms	remaining: 65.8ms
88:	learn: 13.9498697	total: 491ms	remaining: 60.7ms
89:	learn: 13.9002477	total: 497ms	remaining: 55.2ms
90:	learn: 13.8429017	total: 502ms	remaining: 49.7ms
91:	learn: 13.7892130	total: 508ms	remaining: 44.2ms
92:	learn: 13.7122418	total: 514ms	remaining: 38.7ms
93:	learn: 13.6752324	total: 520ms	remaining: 33.2ms
94:	learn: 13.6186680	total: 525ms	remaining: 27.6ms
95:	learn: 13.5578384	total: 531ms	remaining: 22.1ms
96:	learn: 13.5028120	total: 536ms	remaining: 16.6ms
97:	learn: 13.4306895	total: 541ms	remaining: 11ms
98:	learn: 13.3955813	total: 547ms	remaining: 5.53ms
99:	learn: 13.3380095	total: 553ms	remaining: 0us
0:	learn: 42.9675374	total: 5.28ms	remaining: 523ms
1:	learn: 42.2542078	total: 9.84ms	remaining: 482ms
2:	learn: 41.5532166	total: 14.6ms	remaining: 472ms
3:	learn: 40.7812113	total: 19.6ms	remaining: 469ms
4:	learn: 39.8819601	total: 24.5ms	remaining: 465ms
5:	learn: 39.0997229	total: 26.3ms	remaining: 411ms
6:	learn: 38.2185623	total: 31ms	remaining: 412ms
7:	learn: 37.5465645	total: 36ms	remaining: 414ms
8:	learn: 36.8449555	total: 42ms	remaining: 425ms
9:	learn: 36.0912815	total: 49.5ms	remaining: 446ms
10:	learn: 35.5776470	total: 57.2ms	remaining: 463ms
11:	learn: 34.7845329	total: 64.2ms	remaining: 471ms
12:	learn: 34.1574031	total: 70.3ms	remaining: 470ms
13:	learn: 33.4950652	total: 76.6ms	remaining: 471ms
14:	learn: 32.9343881	total: 82.7ms	remaining: 468ms
15:	learn: 32.4356238	total: 87.5ms	remaining: 459ms
16:	learn: 31.8370592	total: 92.8ms	remaining: 453ms
17:	learn: 31.2122644	total: 97.5ms	remaining: 444ms
18:	learn: 30.7195190	total: 102ms	remaining: 436ms
19:	learn: 30.1548478	total: 107ms	remaining: 429ms
20:	learn: 29.6521001	total: 110ms	remaining: 414ms
21:	learn: 29.1746988	total: 115ms	remaining: 407ms
22:	learn: 28.6492690	total: 119ms	remaining: 399ms
23:	learn: 28.1958339	total: 124ms	remaining: 393ms
24:	learn: 27.9126674	total: 129ms	remaining: 387ms
25:	learn: 27.5059508	total: 134ms	remaining: 380ms
26:	learn: 27.0869176	total: 138ms	remaining: 374ms
27:	learn: 26.6545277	total: 144ms	remaining: 369ms
28:	learn: 26.2388575	total: 148ms	remaining: 363ms
29:	learn: 25.8957708	total: 153ms	remaining: 357ms
30:	learn: 25.5045901	total: 158ms	remaining: 351ms
31:	learn: 25.2559530	total: 163ms	remaining: 346ms
32:	learn: 24.9012566	total: 168ms	remaining: 340ms
33:	learn: 24.5601820	total: 173ms	remaining: 335ms
34:	learn: 24.2407285	total: 178ms	remaining: 330ms
35:	learn: 23.9481769	total: 182ms	remaining: 324ms
36:	learn: 23.6746994	total: 187ms	remaining: 318ms
37:	learn: 23.4470352	total: 192ms	remaining: 313ms
38:	learn: 23.1678305	total: 197ms	remaining: 308ms
39:	learn: 22.9660692	total: 202ms	remaining: 302ms
40:	learn: 22.7102548	total: 206ms	remaining: 297ms
41:	learn: 22.5152447	total: 212ms	remaining: 292ms
42:	learn: 22.2967100	total: 217ms	remaining: 287ms
43:	learn: 22.0869517	total: 222ms	remaining: 282ms
44:	learn: 21.8556497	total: 227ms	remaining: 277ms
45:	learn: 21.7036804	total: 232ms	remaining: 273ms
46:	learn: 21.4792011	total: 237ms	remaining: 268ms
47:	learn: 21.2830384	total: 243ms	remaining: 263ms
48:	learn: 21.0771837	total: 248ms	remaining: 258ms
49:	learn: 20.8824468	total: 253ms	remaining: 253ms
50:	learn: 20.7250875	total: 258ms	remaining: 248ms
51:	learn: 20.5564423	total: 268ms	remaining: 247ms
52:	learn: 20.4067403	total: 279ms	remaining: 248ms
53:	learn: 20.2674808	total: 285ms	remaining: 243ms
54:	learn: 20.1394249	total: 291ms	remaining: 238ms
55:	learn: 19.9748016	total: 297ms	remaining: 233ms
56:	learn: 19.8159522	total: 302ms	remaining: 228ms
57:	learn: 19.6811073	total: 308ms	remaining: 223ms
58:	learn: 19.5083232	total: 314ms	remaining: 218ms
59:	learn: 19.3949390	total: 316ms	remaining: 211ms
60:	learn: 19.2485728	total: 322ms	remaining: 206ms
61:	learn: 19.1255523	total: 328ms	remaining: 201ms
62:	learn: 18.9423320	total: 333ms	remaining: 195ms
63:	learn: 18.7794545	total: 338ms	remaining: 190ms
64:	learn: 18.6339033	total: 344ms	remaining: 185ms
65:	learn: 18.5188724	total: 349ms	remaining: 180ms
66:	learn: 18.3398412	total: 354ms	remaining: 174ms
67:	learn: 18.2873427	total: 358ms	remaining: 169ms
68:	learn: 18.1287092	total: 363ms	remaining: 163ms
69:	learn: 18.0163474	total: 368ms	remaining: 158ms
70:	learn: 17.9428395	total: 373ms	remaining: 152ms
71:	learn: 17.7906087	total: 378ms	remaining: 147ms
72:	learn: 17.6121088	total: 382ms	remaining: 141ms
73:	learn: 17.5136572	total: 387ms	remaining: 136ms
74:	learn: 17.3837993	total: 392ms	remaining: 131ms
75:	learn: 17.3015647	total: 397ms	remaining: 125ms
76:	learn: 17.1991252	total: 402ms	remaining: 120ms
77:	learn: 17.0854777	total: 406ms	remaining: 115ms
78:	learn: 17.0308269	total: 411ms	remaining: 109ms
79:	learn: 16.9754807	total: 416ms	remaining: 104ms
80:	learn: 16.9174907	total: 421ms	remaining: 98.7ms
81:	learn: 16.7962603	total: 426ms	remaining: 93.5ms
82:	learn: 16.6685446	total: 431ms	remaining: 88.2ms
83:	learn: 16.5812672	total: 436ms	remaining: 83ms
84:	learn: 16.4896026	total: 441ms	remaining: 77.9ms
85:	learn: 16.4023414	total: 446ms	remaining: 72.7ms
86:	learn: 16.3093718	total: 456ms	remaining: 68.2ms
87:	learn: 16.2409040	total: 464ms	remaining: 63.3ms
88:	learn: 16.1616213	total: 471ms	remaining: 58.2ms
89:	learn: 16.0825203	total: 477ms	remaining: 53ms
90:	learn: 16.0204931	total: 483ms	remaining: 47.7ms
91:	learn: 15.9741267	total: 487ms	remaining: 42.4ms
92:	learn: 15.9413725	total: 492ms	remaining: 37ms
93:	learn: 15.8762295	total: 497ms	remaining: 31.7ms
94:	learn: 15.8165812	total: 502ms	remaining: 26.4ms
95:	learn: 15.7244343	total: 507ms	remaining: 21.1ms
96:	learn: 15.6537033	total: 511ms	remaining: 15.8ms
97:	learn: 15.6052320	total: 516ms	remaining: 10.5ms
98:	learn: 15.5434930	total: 521ms	remaining: 5.26ms
99:	learn: 15.4452106	total: 525ms	remaining: 0us
0:	learn: 46.5387280	total: 5.38ms	remaining: 533ms
1:	learn: 45.8605074	total: 10.2ms	remaining: 498ms
2:	learn: 45.2237152	total: 14.9ms	remaining: 482ms
3:	learn: 44.4158454	total: 19.9ms	remaining: 479ms
4:	learn: 43.7177384	total: 24.7ms	remaining: 470ms
5:	learn: 42.9896372	total: 29.5ms	remaining: 462ms
6:	learn: 42.3639431	total: 34.1ms	remaining: 454ms
7:	learn: 41.6648406	total: 39.2ms	remaining: 450ms
8:	learn: 41.0681442	total: 44ms	remaining: 445ms
9:	learn: 40.4478745	total: 48.9ms	remaining: 440ms
10:	learn: 40.0398470	total: 54.2ms	remaining: 438ms
11:	learn: 39.3300888	total: 59.4ms	remaining: 436ms
12:	learn: 38.9198991	total: 64.6ms	remaining: 432ms
13:	learn: 38.4022666	total: 69.7ms	remaining: 428ms
14:	learn: 37.9124629	total: 75.2ms	remaining: 426ms
15:	learn: 37.3846174	total: 80.5ms	remaining: 423ms
16:	learn: 36.8502348	total: 90.4ms	remaining: 441ms
17:	learn: 36.5079755	total: 104ms	remaining: 473ms
18:	learn: 36.1239339	total: 111ms	remaining: 473ms
19:	learn: 35.8388688	total: 119ms	remaining: 477ms
20:	learn: 35.4915710	total: 126ms	remaining: 475ms
21:	learn: 34.9483623	total: 133ms	remaining: 471ms
22:	learn: 34.6033866	total: 139ms	remaining: 465ms
23:	learn: 34.1483341	total: 145ms	remaining: 459ms
24:	learn: 33.7626484	total: 151ms	remaining: 453ms
25:	learn: 33.4160820	total: 157ms	remaining: 447ms
26:	learn: 33.0421483	total: 163ms	remaining: 440ms
27:	learn: 32.6573469	total: 168ms	remaining: 431ms
28:	learn: 32.2672417	total: 174ms	remaining: 426ms
29:	learn: 31.8257441	total: 180ms	remaining: 421ms
30:	learn: 31.3394923	total: 186ms	remaining: 413ms
31:	learn: 30.9472894	total: 191ms	remaining: 405ms
32:	learn: 30.6961423	total: 196ms	remaining: 398ms
33:	learn: 30.4670615	total: 201ms	remaining: 390ms
34:	learn: 30.1495001	total: 206ms	remaining: 383ms
35:	learn: 29.8071763	total: 211ms	remaining: 375ms
36:	learn: 29.5255984	total: 216ms	remaining: 368ms
37:	learn: 29.2236758	total: 221ms	remaining: 360ms
38:	learn: 28.9199699	total: 226ms	remaining: 353ms
39:	learn: 28.7003989	total: 231ms	remaining: 347ms
40:	learn: 28.4681160	total: 236ms	remaining: 340ms
41:	learn: 28.2692668	total: 242ms	remaining: 334ms
42:	learn: 27.9327254	total: 247ms	remaining: 327ms
43:	learn: 27.7193597	total: 252ms	remaining: 320ms
44:	learn: 27.4061006	total: 257ms	remaining: 314ms
45:	learn: 27.1840910	total: 262ms	remaining: 308ms
46:	learn: 26.8943816	total: 267ms	remaining: 301ms
47:	learn: 26.6576617	total: 272ms	remaining: 295ms
48:	learn: 26.3230094	total: 277ms	remaining: 289ms
49:	learn: 26.0488483	total: 285ms	remaining: 285ms
50:	learn: 25.7795537	total: 295ms	remaining: 283ms
51:	learn: 25.6103781	total: 304ms	remaining: 280ms
52:	learn: 25.4107383	total: 309ms	remaining: 274ms
53:	learn: 25.1757211	total: 316ms	remaining: 269ms
54:	learn: 24.8949842	total: 321ms	remaining: 263ms
55:	learn: 24.7028694	total: 326ms	remaining: 256ms
56:	learn: 24.4033555	total: 330ms	remaining: 249ms
57:	learn: 24.2109268	total: 335ms	remaining: 243ms
58:	learn: 24.0697623	total: 340ms	remaining: 236ms
59:	learn: 23.8291672	total: 345ms	remaining: 230ms
60:	learn: 23.5972471	total: 350ms	remaining: 224ms
61:	learn: 23.4241182	total: 355ms	remaining: 217ms
62:	learn: 23.2617022	total: 359ms	remaining: 211ms
63:	learn: 23.0329448	total: 364ms	remaining: 205ms
64:	learn: 22.9108081	total: 369ms	remaining: 199ms
65:	learn: 22.8001962	total: 374ms	remaining: 193ms
66:	learn: 22.6861907	total: 379ms	remaining: 187ms
67:	learn: 22.5152895	total: 384ms	remaining: 181ms
68:	learn: 22.3734214	total: 389ms	remaining: 175ms
69:	learn: 22.1840754	total: 393ms	remaining: 169ms
70:	learn: 22.0732908	total: 398ms	remaining: 163ms
71:	learn: 21.8880456	total: 403ms	remaining: 157ms
72:	learn: 21.7838784	total: 408ms	remaining: 151ms
73:	learn: 21.5532885	total: 413ms	remaining: 145ms
74:	learn: 21.3998735	total: 417ms	remaining: 139ms
75:	learn: 21.2699824	total: 423ms	remaining: 133ms
76:	learn: 21.1077652	total: 427ms	remaining: 128ms
77:	learn: 20.9759102	total: 432ms	remaining: 122ms
78:	learn: 20.7531342	total: 437ms	remaining: 116ms
79:	learn: 20.6729631	total: 442ms	remaining: 110ms
80:	learn: 20.4903474	total: 447ms	remaining: 105ms
81:	learn: 20.3708622	total: 452ms	remaining: 99.2ms
82:	learn: 20.2627857	total: 457ms	remaining: 93.6ms
83:	learn: 20.1335464	total: 462ms	remaining: 88ms
84:	learn: 20.0100864	total: 467ms	remaining: 82.4ms
85:	learn: 19.9374357	total: 472ms	remaining: 76.8ms
86:	learn: 19.8383097	total: 477ms	remaining: 71.3ms
87:	learn: 19.7804443	total: 483ms	remaining: 65.9ms
88:	learn: 19.7225631	total: 493ms	remaining: 61ms
89:	learn: 19.5851849	total: 504ms	remaining: 56ms
90:	learn: 19.5115923	total: 513ms	remaining: 50.7ms
91:	learn: 19.3986485	total: 519ms	remaining: 45.1ms
92:	learn: 19.2465728	total: 525ms	remaining: 39.5ms
93:	learn: 19.2033796	total: 530ms	remaining: 33.8ms
94:	learn: 19.1234096	total: 536ms	remaining: 28.2ms
95:	learn: 19.0080161	total: 541ms	remaining: 22.6ms
96:	learn: 18.9048698	total: 547ms	remaining: 16.9ms
97:	learn: 18.7901500	total: 553ms	remaining: 11.3ms
98:	learn: 18.6759882	total: 559ms	remaining: 5.64ms
99:	learn: 18.6254590	total: 564ms	remaining: 0us
0:	learn: 46.0359105	total: 5.09ms	remaining: 504ms
1:	learn: 45.4503059	total: 9.71ms	remaining: 476ms
2:	learn: 44.6478680	total: 14.8ms	remaining: 477ms
3:	learn: 43.7932387	total: 19.4ms	remaining: 465ms
4:	learn: 43.2236036	total: 24ms	remaining: 455ms
5:	learn: 42.4339181	total: 28.6ms	remaining: 448ms
6:	learn: 41.8906461	total: 33.6ms	remaining: 446ms
7:	learn: 41.2248707	total: 38.2ms	remaining: 440ms
8:	learn: 40.5934570	total: 43.6ms	remaining: 441ms
9:	learn: 39.9204661	total: 48.8ms	remaining: 439ms
10:	learn: 39.3972458	total: 54ms	remaining: 437ms
11:	learn: 38.9220493	total: 59.2ms	remaining: 434ms
12:	learn: 38.2358406	total: 64.7ms	remaining: 433ms
13:	learn: 37.7089336	total: 70.1ms	remaining: 430ms
14:	learn: 37.3714255	total: 75.4ms	remaining: 427ms
15:	learn: 36.8098537	total: 80.8ms	remaining: 424ms
16:	learn: 36.2818695	total: 88.9ms	remaining: 434ms
17:	learn: 35.8807734	total: 96.5ms	remaining: 440ms
18:	learn: 35.3850720	total: 105ms	remaining: 446ms
19:	learn: 35.0622365	total: 110ms	remaining: 440ms
20:	learn: 34.7088655	total: 116ms	remaining: 436ms
21:	learn: 34.2869861	total: 121ms	remaining: 428ms
22:	learn: 33.9798756	total: 125ms	remaining: 419ms
23:	learn: 33.6933850	total: 130ms	remaining: 411ms
24:	learn: 33.3542725	total: 135ms	remaining: 404ms
25:	learn: 33.1531104	total: 139ms	remaining: 397ms
26:	learn: 32.7581499	total: 144ms	remaining: 389ms
27:	learn: 32.4953289	total: 149ms	remaining: 382ms
28:	learn: 32.1636511	total: 153ms	remaining: 375ms
29:	learn: 31.7179908	total: 158ms	remaining: 369ms
30:	learn: 31.2828971	total: 163ms	remaining: 362ms
31:	learn: 30.8954632	total: 167ms	remaining: 356ms
32:	learn: 30.6156466	total: 173ms	remaining: 351ms
33:	learn: 30.4325331	total: 178ms	remaining: 345ms
34:	learn: 30.1680270	total: 182ms	remaining: 339ms
35:	learn: 29.8372162	total: 187ms	remaining: 333ms
36:	learn: 29.5018241	total: 192ms	remaining: 327ms
37:	learn: 29.2660228	total: 197ms	remaining: 321ms
38:	learn: 28.9172883	total: 201ms	remaining: 315ms
39:	learn: 28.7004790	total: 206ms	remaining: 309ms
40:	learn: 28.5188438	total: 211ms	remaining: 304ms
41:	learn: 28.3064887	total: 216ms	remaining: 298ms
42:	learn: 27.9584462	total: 221ms	remaining: 293ms
43:	learn: 27.6654603	total: 226ms	remaining: 287ms
44:	learn: 27.3698139	total: 230ms	remaining: 282ms
45:	learn: 27.1825629	total: 235ms	remaining: 276ms
46:	learn: 26.9938719	total: 240ms	remaining: 271ms
47:	learn: 26.7385850	total: 245ms	remaining: 265ms
48:	learn: 26.5055251	total: 250ms	remaining: 260ms
49:	learn: 26.3264840	total: 255ms	remaining: 255ms
50:	learn: 26.1314307	total: 261ms	remaining: 250ms
51:	learn: 25.9514770	total: 265ms	remaining: 245ms
52:	learn: 25.7272663	total: 270ms	remaining: 240ms
53:	learn: 25.4554234	total: 276ms	remaining: 235ms
54:	learn: 25.2133674	total: 286ms	remaining: 234ms
55:	learn: 24.9612149	total: 298ms	remaining: 234ms
56:	learn: 24.6788780	total: 306ms	remaining: 231ms
57:	learn: 24.4504703	total: 312ms	remaining: 226ms
58:	learn: 24.3261542	total: 317ms	remaining: 221ms
59:	learn: 24.1217621	total: 323ms	remaining: 215ms
60:	learn: 23.9495725	total: 329ms	remaining: 210ms
61:	learn: 23.7848565	total: 334ms	remaining: 205ms
62:	learn: 23.6627081	total: 340ms	remaining: 200ms
63:	learn: 23.4390407	total: 346ms	remaining: 195ms
64:	learn: 23.2556312	total: 351ms	remaining: 189ms
65:	learn: 23.1796337	total: 356ms	remaining: 184ms
66:	learn: 23.0431987	total: 363ms	remaining: 179ms
67:	learn: 22.9300366	total: 369ms	remaining: 174ms
68:	learn: 22.8321895	total: 374ms	remaining: 168ms
69:	learn: 22.7825840	total: 380ms	remaining: 163ms
70:	learn: 22.6907764	total: 385ms	remaining: 157ms
71:	learn: 22.5080460	total: 391ms	remaining: 152ms
72:	learn: 22.4053282	total: 396ms	remaining: 147ms
73:	learn: 22.2698085	total: 402ms	remaining: 141ms
74:	learn: 22.0951825	total: 407ms	remaining: 136ms
75:	learn: 21.9933994	total: 412ms	remaining: 130ms
76:	learn: 21.8043413	total: 418ms	remaining: 125ms
77:	learn: 21.7259032	total: 423ms	remaining: 119ms
78:	learn: 21.5625358	total: 429ms	remaining: 114ms
79:	learn: 21.4316837	total: 434ms	remaining: 108ms
80:	learn: 21.2270985	total: 440ms	remaining: 103ms
81:	learn: 21.1248573	total: 445ms	remaining: 97.7ms
82:	learn: 21.0879584	total: 450ms	remaining: 92.2ms
83:	learn: 20.9810177	total: 456ms	remaining: 86.8ms
84:	learn: 20.8986744	total: 461ms	remaining: 81.3ms
85:	learn: 20.8427245	total: 466ms	remaining: 75.9ms
86:	learn: 20.7158681	total: 472ms	remaining: 70.6ms
87:	learn: 20.6055502	total: 496ms	remaining: 67.6ms
88:	learn: 20.5302059	total: 501ms	remaining: 62ms
89:	learn: 20.3936827	total: 508ms	remaining: 56.4ms
90:	learn: 20.2756993	total: 513ms	remaining: 50.8ms
91:	learn: 20.1882826	total: 518ms	remaining: 45.1ms
92:	learn: 20.0346875	total: 524ms	remaining: 39.4ms
93:	learn: 19.9798652	total: 529ms	remaining: 33.7ms
94:	learn: 19.9020384	total: 534ms	remaining: 28.1ms
95:	learn: 19.8463755	total: 539ms	remaining: 22.4ms
96:	learn: 19.7426458	total: 543ms	remaining: 16.8ms
97:	learn: 19.6728655	total: 548ms	remaining: 11.2ms
98:	learn: 19.6355104	total: 553ms	remaining: 5.59ms
99:	learn: 19.6074086	total: 558ms	remaining: 0us
0:	learn: 46.7817285	total: 4.96ms	remaining: 491ms
1:	learn: 45.9551634	total: 9.75ms	remaining: 478ms
2:	learn: 45.0274369	total: 14.4ms	remaining: 466ms
3:	learn: 44.5000950	total: 19ms	remaining: 456ms
4:	learn: 43.8963632	total: 23.5ms	remaining: 447ms
5:	learn: 43.2314124	total: 28.6ms	remaining: 448ms
6:	learn: 42.5780140	total: 33.2ms	remaining: 441ms
7:	learn: 41.9033077	total: 37.8ms	remaining: 434ms
8:	learn: 41.3161907	total: 42.5ms	remaining: 430ms
9:	learn: 40.7747000	total: 47.4ms	remaining: 426ms
10:	learn: 40.2728122	total: 51.8ms	remaining: 419ms
11:	learn: 39.7786608	total: 56.8ms	remaining: 416ms
12:	learn: 39.0812090	total: 61.7ms	remaining: 413ms
13:	learn: 38.6205762	total: 66.9ms	remaining: 411ms
14:	learn: 38.2894236	total: 71.9ms	remaining: 407ms
15:	learn: 37.6906364	total: 76.9ms	remaining: 404ms
16:	learn: 37.3014849	total: 84.8ms	remaining: 414ms
17:	learn: 36.9268494	total: 91.8ms	remaining: 418ms
18:	learn: 36.6348717	total: 99.2ms	remaining: 423ms
19:	learn: 36.1567831	total: 106ms	remaining: 424ms
20:	learn: 35.8080754	total: 113ms	remaining: 425ms
21:	learn: 35.4288913	total: 119ms	remaining: 421ms
22:	learn: 35.0910168	total: 124ms	remaining: 416ms
23:	learn: 34.7483277	total: 130ms	remaining: 411ms
24:	learn: 34.5077203	total: 136ms	remaining: 407ms
25:	learn: 34.1830247	total: 141ms	remaining: 402ms
26:	learn: 33.7943837	total: 147ms	remaining: 397ms
27:	learn: 33.3736582	total: 152ms	remaining: 392ms
28:	learn: 32.9133996	total: 158ms	remaining: 387ms
29:	learn: 32.4361653	total: 164ms	remaining: 382ms
30:	learn: 31.9630085	total: 170ms	remaining: 377ms
31:	learn: 31.5994894	total: 175ms	remaining: 371ms
32:	learn: 31.3120059	total: 180ms	remaining: 365ms
33:	learn: 31.0991187	total: 185ms	remaining: 358ms
34:	learn: 30.8055118	total: 190ms	remaining: 353ms
35:	learn: 30.5197359	total: 195ms	remaining: 347ms
36:	learn: 30.1975315	total: 201ms	remaining: 342ms
37:	learn: 29.9797615	total: 207ms	remaining: 337ms
38:	learn: 29.6874864	total: 212ms	remaining: 331ms
39:	learn: 29.4139907	total: 216ms	remaining: 324ms
40:	learn: 29.0472151	total: 221ms	remaining: 318ms
41:	learn: 28.8356285	total: 226ms	remaining: 312ms
42:	learn: 28.5099349	total: 231ms	remaining: 306ms
43:	learn: 28.2009716	total: 235ms	remaining: 299ms
44:	learn: 27.8947534	total: 240ms	remaining: 293ms
45:	learn: 27.6149698	total: 245ms	remaining: 287ms
46:	learn: 27.4780860	total: 249ms	remaining: 281ms
47:	learn: 27.2859119	total: 255ms	remaining: 276ms
48:	learn: 27.0572191	total: 260ms	remaining: 270ms
49:	learn: 26.8916263	total: 264ms	remaining: 264ms
50:	learn: 26.6791967	total: 269ms	remaining: 259ms
51:	learn: 26.4917307	total: 274ms	remaining: 253ms
52:	learn: 26.2957036	total: 279ms	remaining: 248ms
53:	learn: 26.1116543	total: 284ms	remaining: 242ms
54:	learn: 25.8593319	total: 289ms	remaining: 237ms
55:	learn: 25.6957296	total: 294ms	remaining: 231ms
56:	learn: 25.5065213	total: 302ms	remaining: 228ms
57:	learn: 25.3525337	total: 315ms	remaining: 228ms
58:	learn: 25.2197494	total: 321ms	remaining: 223ms
59:	learn: 25.0583799	total: 328ms	remaining: 219ms
60:	learn: 24.8432659	total: 333ms	remaining: 213ms
61:	learn: 24.6585337	total: 337ms	remaining: 207ms
62:	learn: 24.5382571	total: 342ms	remaining: 201ms
63:	learn: 24.3596337	total: 347ms	remaining: 195ms
64:	learn: 24.2009033	total: 351ms	remaining: 189ms
65:	learn: 24.0964080	total: 356ms	remaining: 183ms
66:	learn: 23.9765920	total: 361ms	remaining: 178ms
67:	learn: 23.8638384	total: 366ms	remaining: 172ms
68:	learn: 23.7381861	total: 370ms	remaining: 166ms
69:	learn: 23.5620129	total: 375ms	remaining: 161ms
70:	learn: 23.4494830	total: 380ms	remaining: 155ms
71:	learn: 23.3095806	total: 384ms	remaining: 149ms
72:	learn: 23.1441767	total: 389ms	remaining: 144ms
73:	learn: 22.9983446	total: 394ms	remaining: 138ms
74:	learn: 22.8464764	total: 399ms	remaining: 133ms
75:	learn: 22.7606423	total: 404ms	remaining: 127ms
76:	learn: 22.6095905	total: 408ms	remaining: 122ms
77:	learn: 22.4430506	total: 413ms	remaining: 117ms
78:	learn: 22.2925872	total: 418ms	remaining: 111ms
79:	learn: 22.1806286	total: 423ms	remaining: 106ms
80:	learn: 22.0070525	total: 428ms	remaining: 100ms
81:	learn: 21.9114201	total: 432ms	remaining: 94.9ms
82:	learn: 21.7742884	total: 437ms	remaining: 89.5ms
83:	learn: 21.6372857	total: 442ms	remaining: 84.1ms
84:	learn: 21.5380397	total: 446ms	remaining: 78.8ms
85:	learn: 21.4730146	total: 451ms	remaining: 73.4ms
86:	learn: 21.3236516	total: 456ms	remaining: 68.1ms
87:	learn: 21.2512101	total: 461ms	remaining: 62.8ms
88:	learn: 21.2192883	total: 466ms	remaining: 57.5ms
89:	learn: 21.0457926	total: 471ms	remaining: 52.3ms
90:	learn: 20.9986980	total: 476ms	remaining: 47.1ms
91:	learn: 20.9040032	total: 481ms	remaining: 41.8ms
92:	learn: 20.7178547	total: 487ms	remaining: 36.6ms
93:	learn: 20.6535030	total: 492ms	remaining: 31.4ms
94:	learn: 20.5641982	total: 501ms	remaining: 26.4ms
95:	learn: 20.5355409	total: 510ms	remaining: 21.2ms
96:	learn: 20.4496493	total: 518ms	remaining: 16ms
97:	learn: 20.3579862	total: 525ms	remaining: 10.7ms
98:	learn: 20.2442476	total: 531ms	remaining: 5.37ms
99:	learn: 20.1075813	total: 537ms	remaining: 0us
0:	learn: 27.5267205	total: 23.2ms	remaining: 2.29s
1:	learn: 27.0297320	total: 46.9ms	remaining: 2.3s
2:	learn: 26.5510417	total: 71.6ms	remaining: 2.31s
3:	learn: 26.1221185	total: 78.6ms	remaining: 1.89s
4:	learn: 25.6690036	total: 102ms	remaining: 1.94s
5:	learn: 25.2709759	total: 133ms	remaining: 2.09s
6:	learn: 24.8033327	total: 158ms	remaining: 2.09s
7:	learn: 24.4258966	total: 181ms	remaining: 2.09s
8:	learn: 24.0351254	total: 206ms	remaining: 2.08s
9:	learn: 23.6271871	total: 229ms	remaining: 2.06s
10:	learn: 23.1709164	total: 254ms	remaining: 2.06s
11:	learn: 22.8341448	total: 279ms	remaining: 2.04s
12:	learn: 22.5508255	total: 304ms	remaining: 2.03s
13:	learn: 22.1650870	total: 334ms	remaining: 2.05s
14:	learn: 21.8409545	total: 370ms	remaining: 2.1s
15:	learn: 21.5838916	total: 396ms	remaining: 2.08s
16:	learn: 21.2570767	total: 421ms	remaining: 2.06s
17:	learn: 20.9351602	total: 447ms	remaining: 2.04s
18:	learn: 20.6431553	total: 472ms	remaining: 2.01s
19:	learn: 20.3451843	total: 498ms	remaining: 1.99s
20:	learn: 20.0903893	total: 522ms	remaining: 1.97s
21:	learn: 19.7708525	total: 549ms	remaining: 1.95s
22:	learn: 19.5129016	total: 579ms	remaining: 1.94s
23:	learn: 19.2789838	total: 604ms	remaining: 1.91s
24:	learn: 19.0285247	total: 628ms	remaining: 1.88s
25:	learn: 18.7740774	total: 653ms	remaining: 1.86s
26:	learn: 18.4131270	total: 676ms	remaining: 1.83s
27:	learn: 18.1935928	total: 701ms	remaining: 1.8s
28:	learn: 17.9185293	total: 725ms	remaining: 1.77s
29:	learn: 17.6818825	total: 749ms	remaining: 1.75s
30:	learn: 17.4551687	total: 774ms	remaining: 1.72s
31:	learn: 17.2687322	total: 805ms	remaining: 1.71s
32:	learn: 17.0648633	total: 830ms	remaining: 1.68s
33:	learn: 16.8298981	total: 854ms	remaining: 1.66s
34:	learn: 16.6371395	total: 879ms	remaining: 1.63s
35:	learn: 16.4706695	total: 904ms	remaining: 1.61s
36:	learn: 16.2417258	total: 929ms	remaining: 1.58s
37:	learn: 16.0550250	total: 953ms	remaining: 1.55s
38:	learn: 15.8743430	total: 977ms	remaining: 1.53s
39:	learn: 15.7086215	total: 1s	remaining: 1.5s
40:	learn: 15.5349794	total: 1.03s	remaining: 1.49s
41:	learn: 15.3661561	total: 1.06s	remaining: 1.46s
42:	learn: 15.1953294	total: 1.08s	remaining: 1.43s
43:	learn: 15.0239038	total: 1.1s	remaining: 1.41s
44:	learn: 14.8773748	total: 1.13s	remaining: 1.38s
45:	learn: 14.6611861	total: 1.15s	remaining: 1.35s
46:	learn: 14.5252257	total: 1.18s	remaining: 1.33s
47:	learn: 14.3792699	total: 1.2s	remaining: 1.3s
48:	learn: 14.2511628	total: 1.23s	remaining: 1.28s
49:	learn: 14.1345616	total: 1.26s	remaining: 1.26s
50:	learn: 13.9884078	total: 1.28s	remaining: 1.23s
51:	learn: 13.8664210	total: 1.31s	remaining: 1.21s
52:	learn: 13.7317425	total: 1.33s	remaining: 1.18s
53:	learn: 13.6052633	total: 1.36s	remaining: 1.16s
54:	learn: 13.4989783	total: 1.38s	remaining: 1.13s
55:	learn: 13.3711614	total: 1.41s	remaining: 1.1s
56:	learn: 13.2500078	total: 1.43s	remaining: 1.08s
57:	learn: 13.1495677	total: 1.46s	remaining: 1.05s
58:	learn: 13.0270356	total: 1.49s	remaining: 1.03s
59:	learn: 12.9010466	total: 1.51s	remaining: 1.01s
60:	learn: 12.7690116	total: 1.54s	remaining: 982ms
61:	learn: 12.6721291	total: 1.56s	remaining: 957ms
62:	learn: 12.5556250	total: 1.59s	remaining: 932ms
63:	learn: 12.4465816	total: 1.61s	remaining: 906ms
64:	learn: 12.3321066	total: 1.64s	remaining: 881ms
65:	learn: 12.2170303	total: 1.66s	remaining: 856ms
66:	learn: 12.1113674	total: 1.69s	remaining: 834ms
67:	learn: 12.0224784	total: 1.72s	remaining: 810ms
68:	learn: 11.9394297	total: 1.75s	remaining: 785ms
69:	learn: 11.8303621	total: 1.77s	remaining: 761ms
70:	learn: 11.7377540	total: 1.8s	remaining: 736ms
71:	learn: 11.6367962	total: 1.83s	remaining: 711ms
72:	learn: 11.5501496	total: 1.85s	remaining: 685ms
73:	learn: 11.4493525	total: 1.88s	remaining: 660ms
74:	learn: 11.3454123	total: 1.91s	remaining: 635ms
75:	learn: 11.2512257	total: 1.94s	remaining: 612ms
76:	learn: 11.1778585	total: 1.97s	remaining: 588ms
77:	learn: 11.1109993	total: 1.99s	remaining: 562ms
78:	learn: 11.0176987	total: 2.02s	remaining: 537ms
79:	learn: 10.9457927	total: 2.04s	remaining: 511ms
80:	learn: 10.8639363	total: 2.07s	remaining: 485ms
81:	learn: 10.7872782	total: 2.09s	remaining: 459ms
82:	learn: 10.6570129	total: 2.12s	remaining: 434ms
83:	learn: 10.5760595	total: 2.15s	remaining: 409ms
84:	learn: 10.4763853	total: 2.18s	remaining: 385ms
85:	learn: 10.3931190	total: 2.21s	remaining: 359ms
86:	learn: 10.3021565	total: 2.23s	remaining: 334ms
87:	learn: 10.2202312	total: 2.26s	remaining: 308ms
88:	learn: 10.1376195	total: 2.28s	remaining: 282ms
89:	learn: 10.0481135	total: 2.31s	remaining: 257ms
90:	learn: 9.9436402	total: 2.33s	remaining: 231ms
91:	learn: 9.8883469	total: 2.37s	remaining: 206ms
92:	learn: 9.8391453	total: 2.39s	remaining: 180ms
93:	learn: 9.7559058	total: 2.42s	remaining: 154ms
94:	learn: 9.7036404	total: 2.44s	remaining: 129ms
95:	learn: 9.6339700	total: 2.47s	remaining: 103ms
96:	learn: 9.5423437	total: 2.49s	remaining: 77.1ms
97:	learn: 9.4694485	total: 2.52s	remaining: 51.4ms
98:	learn: 9.3961815	total: 2.54s	remaining: 25.7ms
99:	learn: 9.3398252	total: 2.57s	remaining: 0us
0:	learn: 42.7705174	total: 25.8ms	remaining: 2.55s
1:	learn: 41.7656178	total: 51.3ms	remaining: 2.51s
2:	learn: 40.8179156	total: 76.1ms	remaining: 2.46s
3:	learn: 39.6523791	total: 84.5ms	remaining: 2.03s
4:	learn: 38.7129138	total: 109ms	remaining: 2.08s
5:	learn: 37.8422176	total: 134ms	remaining: 2.1s
6:	learn: 36.8116359	total: 165ms	remaining: 2.19s
7:	learn: 36.0052487	total: 191ms	remaining: 2.2s
8:	learn: 35.2849975	total: 216ms	remaining: 2.18s
9:	learn: 34.4756781	total: 240ms	remaining: 2.16s
10:	learn: 33.6653999	total: 263ms	remaining: 2.13s
11:	learn: 32.7620757	total: 287ms	remaining: 2.11s
12:	learn: 32.0480959	total: 312ms	remaining: 2.08s
13:	learn: 31.4172082	total: 336ms	remaining: 2.06s
14:	learn: 30.8340727	total: 361ms	remaining: 2.05s
15:	learn: 30.2683567	total: 402ms	remaining: 2.11s
16:	learn: 29.8492136	total: 427ms	remaining: 2.08s
17:	learn: 29.2125099	total: 452ms	remaining: 2.06s
18:	learn: 28.6054738	total: 476ms	remaining: 2.03s
19:	learn: 28.0640663	total: 501ms	remaining: 2s
20:	learn: 27.5413586	total: 525ms	remaining: 1.98s
21:	learn: 26.9873574	total: 550ms	remaining: 1.95s
22:	learn: 26.3484257	total: 575ms	remaining: 1.93s
23:	learn: 25.8429212	total: 604ms	remaining: 1.91s
24:	learn: 25.3750345	total: 630ms	remaining: 1.89s
25:	learn: 24.8995542	total: 654ms	remaining: 1.86s
26:	learn: 24.4763414	total: 657ms	remaining: 1.77s
27:	learn: 24.0223071	total: 680ms	remaining: 1.75s
28:	learn: 23.5490716	total: 704ms	remaining: 1.72s
29:	learn: 23.2249502	total: 728ms	remaining: 1.7s
30:	learn: 22.8048550	total: 751ms	remaining: 1.67s
31:	learn: 22.5381351	total: 775ms	remaining: 1.65s
32:	learn: 22.1317703	total: 799ms	remaining: 1.62s
33:	learn: 21.7444080	total: 833ms	remaining: 1.62s
34:	learn: 21.3990423	total: 859ms	remaining: 1.59s
35:	learn: 21.1239746	total: 883ms	remaining: 1.57s
36:	learn: 20.8039218	total: 908ms	remaining: 1.54s
37:	learn: 20.5044886	total: 933ms	remaining: 1.52s
38:	learn: 20.2580104	total: 956ms	remaining: 1.5s
39:	learn: 19.9234991	total: 980ms	remaining: 1.47s
40:	learn: 19.6150872	total: 1s	remaining: 1.45s
41:	learn: 19.3387395	total: 1.03s	remaining: 1.43s
42:	learn: 19.1094717	total: 1.06s	remaining: 1.41s
43:	learn: 18.8720442	total: 1.08s	remaining: 1.38s
44:	learn: 18.5949279	total: 1.11s	remaining: 1.36s
45:	learn: 18.3092362	total: 1.13s	remaining: 1.33s
46:	learn: 18.0869723	total: 1.16s	remaining: 1.3s
47:	learn: 17.8480253	total: 1.18s	remaining: 1.28s
48:	learn: 17.6697203	total: 1.21s	remaining: 1.25s
49:	learn: 17.4805106	total: 1.23s	remaining: 1.23s
50:	learn: 17.2762453	total: 1.26s	remaining: 1.22s
51:	learn: 17.0525457	total: 1.29s	remaining: 1.19s
52:	learn: 16.8777174	total: 1.32s	remaining: 1.17s
53:	learn: 16.6928868	total: 1.34s	remaining: 1.15s
54:	learn: 16.5257601	total: 1.37s	remaining: 1.12s
55:	learn: 16.3285949	total: 1.4s	remaining: 1.1s
56:	learn: 16.1573162	total: 1.42s	remaining: 1.07s
57:	learn: 15.9898094	total: 1.45s	remaining: 1.05s
58:	learn: 15.8177173	total: 1.48s	remaining: 1.03s
59:	learn: 15.6220285	total: 1.51s	remaining: 1s
60:	learn: 15.4921595	total: 1.53s	remaining: 980ms
61:	learn: 15.2259668	total: 1.56s	remaining: 955ms
62:	learn: 15.0578599	total: 1.58s	remaining: 929ms
63:	learn: 14.8598966	total: 1.61s	remaining: 904ms
64:	learn: 14.7079676	total: 1.63s	remaining: 878ms
65:	learn: 14.5262302	total: 1.66s	remaining: 853ms
66:	learn: 14.3947423	total: 1.68s	remaining: 829ms
67:	learn: 14.2508493	total: 1.72s	remaining: 809ms
68:	learn: 14.1502560	total: 1.74s	remaining: 784ms
69:	learn: 13.9997992	total: 1.77s	remaining: 759ms
70:	learn: 13.8600785	total: 1.8s	remaining: 734ms
71:	learn: 13.7348317	total: 1.82s	remaining: 708ms
72:	learn: 13.6556478	total: 1.84s	remaining: 683ms
73:	learn: 13.5217356	total: 1.87s	remaining: 657ms
74:	learn: 13.4231392	total: 1.9s	remaining: 632ms
75:	learn: 13.2847848	total: 1.92s	remaining: 608ms
76:	learn: 13.1458481	total: 1.95s	remaining: 583ms
77:	learn: 13.0475561	total: 1.98s	remaining: 558ms
78:	learn: 12.9445908	total: 2s	remaining: 532ms
79:	learn: 12.8213077	total: 2.02s	remaining: 506ms
80:	learn: 12.7210762	total: 2.05s	remaining: 481ms
81:	learn: 12.6320186	total: 2.07s	remaining: 455ms
82:	learn: 12.5362788	total: 2.1s	remaining: 430ms
83:	learn: 12.4350353	total: 2.13s	remaining: 405ms
84:	learn: 12.3601174	total: 2.16s	remaining: 381ms
85:	learn: 12.2940655	total: 2.19s	remaining: 356ms
86:	learn: 12.2055695	total: 2.21s	remaining: 331ms
87:	learn: 12.1249471	total: 2.24s	remaining: 305ms
88:	learn: 12.0198476	total: 2.26s	remaining: 280ms
89:	learn: 11.9560995	total: 2.29s	remaining: 254ms
90:	learn: 11.8997810	total: 2.31s	remaining: 229ms
91:	learn: 11.8272800	total: 2.34s	remaining: 203ms
92:	learn: 11.7398723	total: 2.37s	remaining: 178ms
93:	learn: 11.6996897	total: 2.4s	remaining: 153ms
94:	learn: 11.5707058	total: 2.42s	remaining: 127ms
95:	learn: 11.4454892	total: 2.44s	remaining: 102ms
96:	learn: 11.3786021	total: 2.47s	remaining: 76.4ms
97:	learn: 11.2823760	total: 2.49s	remaining: 50.9ms
98:	learn: 11.1929769	total: 2.52s	remaining: 25.5ms
99:	learn: 11.1117188	total: 2.55s	remaining: 0us
0:	learn: 46.4051117	total: 25.3ms	remaining: 2.5s
1:	learn: 45.3311808	total: 49.4ms	remaining: 2.42s
2:	learn: 44.2355531	total: 74.9ms	remaining: 2.42s
3:	learn: 43.2958733	total: 99.3ms	remaining: 2.38s
4:	learn: 42.3536589	total: 124ms	remaining: 2.36s
5:	learn: 41.4859961	total: 148ms	remaining: 2.32s
6:	learn: 40.5534910	total: 175ms	remaining: 2.33s
7:	learn: 39.7060893	total: 202ms	remaining: 2.33s
8:	learn: 38.8439981	total: 226ms	remaining: 2.28s
9:	learn: 38.2669414	total: 249ms	remaining: 2.24s
10:	learn: 37.6759770	total: 273ms	remaining: 2.21s
11:	learn: 36.9869277	total: 298ms	remaining: 2.19s
12:	learn: 36.3901257	total: 322ms	remaining: 2.15s
13:	learn: 35.7917302	total: 346ms	remaining: 2.12s
14:	learn: 35.2174952	total: 371ms	remaining: 2.1s
15:	learn: 34.5826754	total: 401ms	remaining: 2.11s
16:	learn: 34.0874316	total: 430ms	remaining: 2.1s
17:	learn: 33.5003568	total: 454ms	remaining: 2.07s
18:	learn: 32.7934787	total: 480ms	remaining: 2.04s
19:	learn: 31.9083319	total: 504ms	remaining: 2.02s
20:	learn: 31.2930063	total: 528ms	remaining: 1.99s
21:	learn: 30.7897560	total: 552ms	remaining: 1.96s
22:	learn: 30.1479920	total: 577ms	remaining: 1.93s
23:	learn: 29.5764365	total: 603ms	remaining: 1.91s
24:	learn: 29.0910861	total: 633ms	remaining: 1.9s
25:	learn: 28.4397299	total: 657ms	remaining: 1.87s
26:	learn: 27.8228369	total: 682ms	remaining: 1.84s
27:	learn: 27.3877661	total: 705ms	remaining: 1.81s
28:	learn: 26.9261524	total: 730ms	remaining: 1.79s
29:	learn: 26.5038338	total: 754ms	remaining: 1.76s
30:	learn: 26.2151044	total: 778ms	remaining: 1.73s
31:	learn: 25.8170458	total: 805ms	remaining: 1.71s
32:	learn: 25.4852966	total: 838ms	remaining: 1.7s
33:	learn: 25.0288024	total: 862ms	remaining: 1.67s
34:	learn: 24.6327933	total: 887ms	remaining: 1.65s
35:	learn: 24.1334075	total: 913ms	remaining: 1.62s
36:	learn: 23.7648659	total: 937ms	remaining: 1.59s
37:	learn: 23.4059601	total: 962ms	remaining: 1.57s
38:	learn: 23.0824106	total: 986ms	remaining: 1.54s
39:	learn: 22.8059757	total: 1.01s	remaining: 1.51s
40:	learn: 22.5306226	total: 1.03s	remaining: 1.49s
41:	learn: 22.2219847	total: 1.06s	remaining: 1.47s
42:	learn: 21.8972204	total: 1.09s	remaining: 1.45s
43:	learn: 21.5236072	total: 1.11s	remaining: 1.42s
44:	learn: 21.2553689	total: 1.14s	remaining: 1.39s
45:	learn: 20.8401171	total: 1.16s	remaining: 1.36s
46:	learn: 20.5752228	total: 1.19s	remaining: 1.34s
47:	learn: 20.3528352	total: 1.21s	remaining: 1.31s
48:	learn: 20.1615025	total: 1.23s	remaining: 1.28s
49:	learn: 19.8957215	total: 1.26s	remaining: 1.26s
50:	learn: 19.6512654	total: 1.29s	remaining: 1.24s
51:	learn: 19.4334583	total: 1.32s	remaining: 1.22s
52:	learn: 19.1886760	total: 1.34s	remaining: 1.19s
53:	learn: 18.8797014	total: 1.37s	remaining: 1.17s
54:	learn: 18.6166876	total: 1.4s	remaining: 1.14s
55:	learn: 18.3791724	total: 1.42s	remaining: 1.12s
56:	learn: 18.2115659	total: 1.45s	remaining: 1.09s
57:	learn: 18.0722693	total: 1.47s	remaining: 1.06s
58:	learn: 17.8852192	total: 1.5s	remaining: 1.04s
59:	learn: 17.7272446	total: 1.52s	remaining: 1.02s
60:	learn: 17.4942483	total: 1.55s	remaining: 992ms
61:	learn: 17.3054937	total: 1.58s	remaining: 966ms
62:	learn: 17.1549585	total: 1.6s	remaining: 940ms
63:	learn: 16.9975916	total: 1.63s	remaining: 915ms
64:	learn: 16.8858589	total: 1.65s	remaining: 890ms
65:	learn: 16.6701164	total: 1.68s	remaining: 864ms
66:	learn: 16.5500620	total: 1.7s	remaining: 839ms
67:	learn: 16.3458753	total: 1.74s	remaining: 818ms
68:	learn: 16.1878838	total: 1.76s	remaining: 792ms
69:	learn: 16.0305134	total: 1.79s	remaining: 767ms
70:	learn: 15.8487627	total: 1.81s	remaining: 742ms
71:	learn: 15.6683766	total: 1.84s	remaining: 716ms
72:	learn: 15.5077137	total: 1.87s	remaining: 690ms
73:	learn: 15.4103876	total: 1.89s	remaining: 665ms
74:	learn: 15.2840688	total: 1.92s	remaining: 639ms
75:	learn: 15.1507590	total: 1.95s	remaining: 616ms
76:	learn: 14.9825337	total: 1.98s	remaining: 591ms
77:	learn: 14.8044062	total: 2s	remaining: 566ms
78:	learn: 14.6711374	total: 2.03s	remaining: 540ms
79:	learn: 14.5318692	total: 2.06s	remaining: 514ms
80:	learn: 14.4181194	total: 2.08s	remaining: 489ms
81:	learn: 14.2559532	total: 2.11s	remaining: 463ms
82:	learn: 14.1026042	total: 2.13s	remaining: 437ms
83:	learn: 13.9184961	total: 2.17s	remaining: 413ms
84:	learn: 13.7905556	total: 2.2s	remaining: 388ms
85:	learn: 13.6755541	total: 2.22s	remaining: 362ms
86:	learn: 13.5644560	total: 2.25s	remaining: 336ms
87:	learn: 13.4412378	total: 2.27s	remaining: 310ms
88:	learn: 13.3271667	total: 2.3s	remaining: 284ms
89:	learn: 13.2634410	total: 2.32s	remaining: 258ms
90:	learn: 13.1463553	total: 2.35s	remaining: 232ms
91:	learn: 13.0389944	total: 2.38s	remaining: 207ms
92:	learn: 12.9605830	total: 2.41s	remaining: 181ms
93:	learn: 12.8819119	total: 2.43s	remaining: 155ms
94:	learn: 12.8038551	total: 2.46s	remaining: 129ms
95:	learn: 12.7013498	total: 2.48s	remaining: 103ms
96:	learn: 12.6011350	total: 2.51s	remaining: 77.6ms
97:	learn: 12.4949377	total: 2.53s	remaining: 51.7ms
98:	learn: 12.3808699	total: 2.56s	remaining: 25.8ms
99:	learn: 12.2551864	total: 2.58s	remaining: 0us
0:	learn: 45.9785919	total: 25.6ms	remaining: 2.53s
1:	learn: 44.9581939	total: 50.8ms	remaining: 2.49s
2:	learn: 43.9091127	total: 75.4ms	remaining: 2.44s
3:	learn: 42.7984962	total: 100ms	remaining: 2.4s
4:	learn: 41.9715841	total: 126ms	remaining: 2.39s
5:	learn: 41.2949683	total: 152ms	remaining: 2.37s
6:	learn: 40.4494730	total: 185ms	remaining: 2.46s
7:	learn: 39.6906390	total: 212ms	remaining: 2.44s
8:	learn: 38.6718680	total: 237ms	remaining: 2.4s
9:	learn: 37.9176664	total: 262ms	remaining: 2.35s
10:	learn: 36.9169551	total: 286ms	remaining: 2.31s
11:	learn: 36.1670753	total: 310ms	remaining: 2.27s
12:	learn: 35.6362382	total: 334ms	remaining: 2.23s
13:	learn: 35.0764262	total: 358ms	remaining: 2.2s
14:	learn: 34.5241023	total: 385ms	remaining: 2.18s
15:	learn: 33.9112917	total: 421ms	remaining: 2.21s
16:	learn: 33.1023896	total: 446ms	remaining: 2.18s
17:	learn: 32.5227767	total: 470ms	remaining: 2.14s
18:	learn: 31.9685385	total: 495ms	remaining: 2.11s
19:	learn: 31.4048780	total: 519ms	remaining: 2.08s
20:	learn: 30.9173286	total: 544ms	remaining: 2.04s
21:	learn: 30.4889417	total: 568ms	remaining: 2.01s
22:	learn: 29.9957742	total: 591ms	remaining: 1.98s
23:	learn: 29.5532403	total: 622ms	remaining: 1.97s
24:	learn: 29.0869023	total: 648ms	remaining: 1.95s
25:	learn: 28.7131197	total: 672ms	remaining: 1.91s
26:	learn: 28.2622970	total: 696ms	remaining: 1.88s
27:	learn: 27.7045502	total: 720ms	remaining: 1.85s
28:	learn: 27.2689985	total: 744ms	remaining: 1.82s
29:	learn: 26.8937625	total: 768ms	remaining: 1.79s
30:	learn: 26.4723305	total: 792ms	remaining: 1.76s
31:	learn: 26.0613360	total: 815ms	remaining: 1.73s
32:	learn: 25.7354314	total: 840ms	remaining: 1.71s
33:	learn: 25.4365901	total: 876ms	remaining: 1.7s
34:	learn: 25.0579971	total: 901ms	remaining: 1.67s
35:	learn: 24.6756006	total: 925ms	remaining: 1.65s
36:	learn: 24.3211908	total: 951ms	remaining: 1.62s
37:	learn: 23.8567945	total: 975ms	remaining: 1.59s
38:	learn: 23.5856536	total: 1000ms	remaining: 1.56s
39:	learn: 23.3552361	total: 1.02s	remaining: 1.54s
40:	learn: 23.1477272	total: 1.05s	remaining: 1.51s
41:	learn: 22.8497360	total: 1.08s	remaining: 1.49s
42:	learn: 22.5809198	total: 1.1s	remaining: 1.46s
43:	learn: 22.2522495	total: 1.13s	remaining: 1.43s
44:	learn: 21.9258917	total: 1.15s	remaining: 1.41s
45:	learn: 21.6933205	total: 1.18s	remaining: 1.38s
46:	learn: 21.4423031	total: 1.2s	remaining: 1.35s
47:	learn: 21.1573471	total: 1.22s	remaining: 1.32s
48:	learn: 20.9677940	total: 1.25s	remaining: 1.3s
49:	learn: 20.7417189	total: 1.28s	remaining: 1.28s
50:	learn: 20.5010597	total: 1.31s	remaining: 1.25s
51:	learn: 20.2654074	total: 1.33s	remaining: 1.23s
52:	learn: 20.0568837	total: 1.36s	remaining: 1.2s
53:	learn: 19.8187698	total: 1.38s	remaining: 1.18s
54:	learn: 19.5549335	total: 1.41s	remaining: 1.15s
55:	learn: 19.4061951	total: 1.43s	remaining: 1.12s
56:	learn: 19.2259890	total: 1.46s	remaining: 1.1s
57:	learn: 19.0335945	total: 1.48s	remaining: 1.07s
58:	learn: 18.8545847	total: 1.51s	remaining: 1.05s
59:	learn: 18.7070231	total: 1.53s	remaining: 1.02s
60:	learn: 18.5923917	total: 1.56s	remaining: 996ms
61:	learn: 18.4429719	total: 1.58s	remaining: 969ms
62:	learn: 18.2825510	total: 1.6s	remaining: 942ms
63:	learn: 18.1358848	total: 1.63s	remaining: 916ms
64:	learn: 18.0102396	total: 1.65s	remaining: 891ms
65:	learn: 17.7782817	total: 1.68s	remaining: 867ms
66:	learn: 17.6293839	total: 1.71s	remaining: 844ms
67:	learn: 17.4950966	total: 1.74s	remaining: 819ms
68:	learn: 17.3213878	total: 1.76s	remaining: 793ms
69:	learn: 17.1833201	total: 1.79s	remaining: 767ms
70:	learn: 17.0063684	total: 1.82s	remaining: 742ms
71:	learn: 16.8322437	total: 1.84s	remaining: 716ms
72:	learn: 16.7058593	total: 1.87s	remaining: 690ms
73:	learn: 16.5781086	total: 1.89s	remaining: 664ms
74:	learn: 16.4536927	total: 1.92s	remaining: 639ms
75:	learn: 16.3555875	total: 1.95s	remaining: 614ms
76:	learn: 16.2112488	total: 1.97s	remaining: 588ms
77:	learn: 16.0933871	total: 2s	remaining: 563ms
78:	learn: 15.9482175	total: 2.02s	remaining: 537ms
79:	learn: 15.8457078	total: 2.05s	remaining: 512ms
80:	learn: 15.7756914	total: 2.07s	remaining: 486ms
81:	learn: 15.5938239	total: 2.1s	remaining: 460ms
82:	learn: 15.4879475	total: 2.12s	remaining: 435ms
83:	learn: 15.3387701	total: 2.16s	remaining: 411ms
84:	learn: 15.2647310	total: 2.19s	remaining: 386ms
85:	learn: 15.1407574	total: 2.21s	remaining: 360ms
86:	learn: 15.0412643	total: 2.24s	remaining: 334ms
87:	learn: 14.9524567	total: 2.26s	remaining: 308ms
88:	learn: 14.8463137	total: 2.29s	remaining: 283ms
89:	learn: 14.8165046	total: 2.31s	remaining: 257ms
90:	learn: 14.7199993	total: 2.34s	remaining: 232ms
91:	learn: 14.5961218	total: 2.37s	remaining: 206ms
92:	learn: 14.5344312	total: 2.4s	remaining: 180ms
93:	learn: 14.4678730	total: 2.42s	remaining: 154ms
94:	learn: 14.3960901	total: 2.44s	remaining: 129ms
95:	learn: 14.3119443	total: 2.47s	remaining: 103ms
96:	learn: 14.2240868	total: 2.5s	remaining: 77.3ms
97:	learn: 14.1399837	total: 2.52s	remaining: 51.5ms
98:	learn: 14.0533759	total: 2.55s	remaining: 25.8ms
99:	learn: 13.9950351	total: 2.58s	remaining: 0us
0:	learn: 46.6705057	total: 25.6ms	remaining: 2.54s
1:	learn: 45.6228942	total: 51.1ms	remaining: 2.5s
2:	learn: 44.6011857	total: 75.7ms	remaining: 2.45s
3:	learn: 43.4944730	total: 101ms	remaining: 2.42s
4:	learn: 42.7214061	total: 126ms	remaining: 2.4s
5:	learn: 41.8717386	total: 161ms	remaining: 2.52s
6:	learn: 41.0828465	total: 188ms	remaining: 2.49s
7:	learn: 40.3693162	total: 212ms	remaining: 2.43s
8:	learn: 39.5504439	total: 236ms	remaining: 2.39s
9:	learn: 38.8028188	total: 261ms	remaining: 2.35s
10:	learn: 37.8021607	total: 285ms	remaining: 2.3s
11:	learn: 37.0316047	total: 299ms	remaining: 2.19s
12:	learn: 36.4697449	total: 324ms	remaining: 2.17s
13:	learn: 35.7324928	total: 350ms	remaining: 2.15s
14:	learn: 35.0670311	total: 386ms	remaining: 2.19s
15:	learn: 34.5416158	total: 411ms	remaining: 2.16s
16:	learn: 33.8060657	total: 438ms	remaining: 2.14s
17:	learn: 33.2764048	total: 464ms	remaining: 2.11s
18:	learn: 32.7985056	total: 489ms	remaining: 2.08s
19:	learn: 32.2684820	total: 514ms	remaining: 2.05s
20:	learn: 31.7897893	total: 539ms	remaining: 2.03s
21:	learn: 31.3010339	total: 573ms	remaining: 2.03s
22:	learn: 30.8508227	total: 600ms	remaining: 2.01s
23:	learn: 30.3168654	total: 625ms	remaining: 1.98s
24:	learn: 29.8575867	total: 649ms	remaining: 1.95s
25:	learn: 29.3623615	total: 672ms	remaining: 1.91s
26:	learn: 28.9848451	total: 696ms	remaining: 1.88s
27:	learn: 28.6994426	total: 720ms	remaining: 1.85s
28:	learn: 28.2896051	total: 744ms	remaining: 1.82s
29:	learn: 27.8326651	total: 768ms	remaining: 1.79s
30:	learn: 27.3512730	total: 793ms	remaining: 1.76s
31:	learn: 27.0818307	total: 826ms	remaining: 1.75s
32:	learn: 26.6738197	total: 850ms	remaining: 1.73s
33:	learn: 26.3390302	total: 876ms	remaining: 1.7s
34:	learn: 25.9635842	total: 900ms	remaining: 1.67s
35:	learn: 25.6937525	total: 924ms	remaining: 1.64s
36:	learn: 25.3141815	total: 948ms	remaining: 1.61s
37:	learn: 25.0097733	total: 973ms	remaining: 1.59s
38:	learn: 24.7491704	total: 997ms	remaining: 1.56s
39:	learn: 24.3823525	total: 1.03s	remaining: 1.54s
40:	learn: 24.3094117	total: 1.03s	remaining: 1.48s
41:	learn: 23.9596755	total: 1.05s	remaining: 1.46s
42:	learn: 23.6550442	total: 1.08s	remaining: 1.43s
43:	learn: 23.4055797	total: 1.1s	remaining: 1.4s
44:	learn: 23.2484825	total: 1.13s	remaining: 1.38s
45:	learn: 22.9509665	total: 1.15s	remaining: 1.35s
46:	learn: 22.7288116	total: 1.17s	remaining: 1.32s
47:	learn: 22.4239204	total: 1.2s	remaining: 1.3s
48:	learn: 22.2223864	total: 1.23s	remaining: 1.28s
49:	learn: 21.9306439	total: 1.26s	remaining: 1.26s
50:	learn: 21.7134680	total: 1.28s	remaining: 1.23s
51:	learn: 21.6063065	total: 1.3s	remaining: 1.2s
52:	learn: 21.2300249	total: 1.33s	remaining: 1.18s
53:	learn: 20.9961502	total: 1.35s	remaining: 1.15s
54:	learn: 20.7428171	total: 1.38s	remaining: 1.13s
55:	learn: 20.5043370	total: 1.4s	remaining: 1.1s
56:	learn: 20.3343057	total: 1.43s	remaining: 1.08s
57:	learn: 20.1503869	total: 1.46s	remaining: 1.06s
58:	learn: 19.9571627	total: 1.49s	remaining: 1.03s
59:	learn: 19.7166454	total: 1.51s	remaining: 1.01s
60:	learn: 19.5460796	total: 1.54s	remaining: 983ms
61:	learn: 19.3319423	total: 1.56s	remaining: 957ms
62:	learn: 19.1518266	total: 1.58s	remaining: 931ms
63:	learn: 18.9801712	total: 1.61s	remaining: 905ms
64:	learn: 18.8325481	total: 1.63s	remaining: 880ms
65:	learn: 18.6545881	total: 1.67s	remaining: 859ms
66:	learn: 18.4172473	total: 1.69s	remaining: 833ms
67:	learn: 18.2145056	total: 1.72s	remaining: 808ms
68:	learn: 18.0294470	total: 1.74s	remaining: 783ms
69:	learn: 17.8764636	total: 1.77s	remaining: 757ms
70:	learn: 17.7552517	total: 1.79s	remaining: 731ms
71:	learn: 17.6134211	total: 1.81s	remaining: 705ms
72:	learn: 17.4607644	total: 1.84s	remaining: 679ms
73:	learn: 17.3425090	total: 1.86s	remaining: 655ms
74:	learn: 17.2255418	total: 1.89s	remaining: 631ms
75:	learn: 17.0908608	total: 1.92s	remaining: 606ms
76:	learn: 16.9227981	total: 1.94s	remaining: 580ms
77:	learn: 16.8243171	total: 1.97s	remaining: 554ms
78:	learn: 16.7020719	total: 1.99s	remaining: 529ms
79:	learn: 16.5231147	total: 2.01s	remaining: 503ms
80:	learn: 16.3550704	total: 2.04s	remaining: 478ms
81:	learn: 16.2531768	total: 2.06s	remaining: 452ms
82:	learn: 16.1529156	total: 2.09s	remaining: 427ms
83:	learn: 15.9391779	total: 2.12s	remaining: 403ms
84:	learn: 15.8578694	total: 2.14s	remaining: 378ms
85:	learn: 15.7783743	total: 2.17s	remaining: 353ms
86:	learn: 15.6452604	total: 2.2s	remaining: 329ms
87:	learn: 15.5300223	total: 2.23s	remaining: 304ms
88:	learn: 15.4195831	total: 2.25s	remaining: 279ms
89:	learn: 15.3071897	total: 2.28s	remaining: 253ms
90:	learn: 15.1446058	total: 2.31s	remaining: 228ms
91:	learn: 15.0547501	total: 2.34s	remaining: 204ms
92:	learn: 14.9463447	total: 2.37s	remaining: 178ms
93:	learn: 14.8747810	total: 2.4s	remaining: 153ms
94:	learn: 14.7579258	total: 2.42s	remaining: 127ms
95:	learn: 14.5927582	total: 2.45s	remaining: 102ms
96:	learn: 14.4834761	total: 2.48s	remaining: 76.8ms
97:	learn: 14.3683779	total: 2.51s	remaining: 51.2ms
98:	learn: 14.2648032	total: 2.54s	remaining: 25.7ms
99:	learn: 14.1339217	total: 2.57s	remaining: 0us
0:	learn: 27.6165091	total: 5.91ms	remaining: 585ms
1:	learn: 27.2156009	total: 10.7ms	remaining: 522ms
2:	learn: 26.8744169	total: 15.6ms	remaining: 505ms
3:	learn: 26.5530473	total: 20.7ms	remaining: 497ms
4:	learn: 26.1200739	total: 25.6ms	remaining: 487ms
5:	learn: 25.7559063	total: 30.5ms	remaining: 478ms
6:	learn: 25.3817459	total: 35.5ms	remaining: 472ms
7:	learn: 25.0780231	total: 40.1ms	remaining: 461ms
8:	learn: 24.7908836	total: 45ms	remaining: 455ms
9:	learn: 24.5023726	total: 49.8ms	remaining: 448ms
10:	learn: 24.2430447	total: 54.9ms	remaining: 444ms
11:	learn: 24.0150987	total: 59.5ms	remaining: 436ms
12:	learn: 23.6832732	total: 64.2ms	remaining: 430ms
13:	learn: 23.4512462	total: 68.8ms	remaining: 423ms
14:	learn: 23.2300808	total: 74.1ms	remaining: 420ms
15:	learn: 23.0198192	total: 79.1ms	remaining: 415ms
16:	learn: 22.7757356	total: 84.5ms	remaining: 413ms
17:	learn: 22.4962727	total: 90.2ms	remaining: 411ms
18:	learn: 22.2131794	total: 95.7ms	remaining: 408ms
19:	learn: 21.9844087	total: 101ms	remaining: 404ms
20:	learn: 21.6467820	total: 107ms	remaining: 402ms
21:	learn: 21.4458045	total: 112ms	remaining: 399ms
22:	learn: 21.2706627	total: 120ms	remaining: 401ms
23:	learn: 21.0770166	total: 138ms	remaining: 437ms
24:	learn: 20.8871491	total: 144ms	remaining: 433ms
25:	learn: 20.7151270	total: 151ms	remaining: 430ms
26:	learn: 20.5585218	total: 156ms	remaining: 423ms
27:	learn: 20.4091128	total: 161ms	remaining: 415ms
28:	learn: 20.2343121	total: 167ms	remaining: 408ms
29:	learn: 20.0685862	total: 172ms	remaining: 402ms
30:	learn: 19.8339661	total: 177ms	remaining: 394ms
31:	learn: 19.6811138	total: 182ms	remaining: 388ms
32:	learn: 19.4881999	total: 187ms	remaining: 380ms
33:	learn: 19.3473429	total: 193ms	remaining: 374ms
34:	learn: 19.1087185	total: 198ms	remaining: 367ms
35:	learn: 18.9817724	total: 202ms	remaining: 360ms
36:	learn: 18.8465124	total: 207ms	remaining: 353ms
37:	learn: 18.6998182	total: 213ms	remaining: 347ms
38:	learn: 18.5534881	total: 218ms	remaining: 341ms
39:	learn: 18.4221213	total: 223ms	remaining: 334ms
40:	learn: 18.3262428	total: 228ms	remaining: 328ms
41:	learn: 18.2018519	total: 233ms	remaining: 322ms
42:	learn: 18.0704402	total: 238ms	remaining: 316ms
43:	learn: 17.9674737	total: 243ms	remaining: 310ms
44:	learn: 17.8092746	total: 249ms	remaining: 304ms
45:	learn: 17.7036671	total: 254ms	remaining: 299ms
46:	learn: 17.5636023	total: 260ms	remaining: 293ms
47:	learn: 17.3922671	total: 265ms	remaining: 288ms
48:	learn: 17.2777727	total: 270ms	remaining: 282ms
49:	learn: 17.1901866	total: 276ms	remaining: 276ms
50:	learn: 17.0799264	total: 281ms	remaining: 270ms
51:	learn: 17.0022808	total: 286ms	remaining: 264ms
52:	learn: 16.9193737	total: 292ms	remaining: 259ms
53:	learn: 16.8349324	total: 297ms	remaining: 253ms
54:	learn: 16.7122802	total: 302ms	remaining: 247ms
55:	learn: 16.5736462	total: 308ms	remaining: 242ms
56:	learn: 16.4576798	total: 314ms	remaining: 237ms
57:	learn: 16.3336075	total: 324ms	remaining: 234ms
58:	learn: 16.2578113	total: 337ms	remaining: 234ms
59:	learn: 16.1586938	total: 345ms	remaining: 230ms
60:	learn: 16.0827831	total: 352ms	remaining: 225ms
61:	learn: 16.0030150	total: 358ms	remaining: 220ms
62:	learn: 15.8741662	total: 364ms	remaining: 214ms
63:	learn: 15.7533897	total: 370ms	remaining: 208ms
64:	learn: 15.6743804	total: 375ms	remaining: 202ms
65:	learn: 15.6291324	total: 381ms	remaining: 196ms
66:	learn: 15.5363523	total: 387ms	remaining: 191ms
67:	learn: 15.4675550	total: 393ms	remaining: 185ms
68:	learn: 15.3959873	total: 399ms	remaining: 179ms
69:	learn: 15.3222045	total: 405ms	remaining: 173ms
70:	learn: 15.2343883	total: 411ms	remaining: 168ms
71:	learn: 15.1891070	total: 417ms	remaining: 162ms
72:	learn: 15.1320798	total: 423ms	remaining: 156ms
73:	learn: 15.0590468	total: 428ms	remaining: 150ms
74:	learn: 14.9682726	total: 433ms	remaining: 144ms
75:	learn: 14.8868528	total: 438ms	remaining: 138ms
76:	learn: 14.8046328	total: 443ms	remaining: 132ms
77:	learn: 14.7253152	total: 448ms	remaining: 126ms
78:	learn: 14.6438207	total: 453ms	remaining: 120ms
79:	learn: 14.5350651	total: 458ms	remaining: 115ms
80:	learn: 14.4301800	total: 463ms	remaining: 109ms
81:	learn: 14.3716251	total: 468ms	remaining: 103ms
82:	learn: 14.3127586	total: 474ms	remaining: 97ms
83:	learn: 14.2685086	total: 479ms	remaining: 91.2ms
84:	learn: 14.1936111	total: 484ms	remaining: 85.4ms
85:	learn: 14.1488261	total: 489ms	remaining: 79.6ms
86:	learn: 14.0654602	total: 494ms	remaining: 73.8ms
87:	learn: 14.0026195	total: 499ms	remaining: 68.1ms
88:	learn: 13.9498697	total: 504ms	remaining: 62.4ms
89:	learn: 13.9002477	total: 510ms	remaining: 56.7ms
90:	learn: 13.8429017	total: 518ms	remaining: 51.2ms
91:	learn: 13.7892130	total: 526ms	remaining: 45.7ms
92:	learn: 13.7122418	total: 533ms	remaining: 40.1ms
93:	learn: 13.6752324	total: 540ms	remaining: 34.4ms
94:	learn: 13.6186680	total: 546ms	remaining: 28.8ms
95:	learn: 13.5578384	total: 552ms	remaining: 23ms
96:	learn: 13.5028120	total: 557ms	remaining: 17.2ms
97:	learn: 13.4306895	total: 562ms	remaining: 11.5ms
98:	learn: 13.3955813	total: 568ms	remaining: 5.73ms
99:	learn: 13.3380095	total: 572ms	remaining: 0us
0:	learn: 42.9675374	total: 5.32ms	remaining: 527ms
1:	learn: 42.2542078	total: 10.9ms	remaining: 533ms
2:	learn: 41.5532166	total: 15.9ms	remaining: 514ms
3:	learn: 40.7812113	total: 21.7ms	remaining: 522ms
4:	learn: 39.8819601	total: 26.8ms	remaining: 508ms
5:	learn: 39.0997229	total: 28.6ms	remaining: 449ms
6:	learn: 38.2185623	total: 34.1ms	remaining: 453ms
7:	learn: 37.5465645	total: 39.3ms	remaining: 452ms
8:	learn: 36.8449555	total: 44.4ms	remaining: 448ms
9:	learn: 36.0912815	total: 49.1ms	remaining: 442ms
10:	learn: 35.5776470	total: 54.2ms	remaining: 439ms
11:	learn: 34.7845329	total: 59.3ms	remaining: 435ms
12:	learn: 34.1574031	total: 65ms	remaining: 435ms
13:	learn: 33.4950652	total: 70.4ms	remaining: 432ms
14:	learn: 32.9343881	total: 76.1ms	remaining: 431ms
15:	learn: 32.4356238	total: 81ms	remaining: 425ms
16:	learn: 31.8370592	total: 86.4ms	remaining: 422ms
17:	learn: 31.2122644	total: 91.9ms	remaining: 419ms
18:	learn: 30.7195190	total: 97.4ms	remaining: 415ms
19:	learn: 30.1548478	total: 103ms	remaining: 412ms
20:	learn: 29.6521001	total: 106ms	remaining: 400ms
21:	learn: 29.1746988	total: 116ms	remaining: 411ms
22:	learn: 28.6492690	total: 126ms	remaining: 423ms
23:	learn: 28.1958339	total: 134ms	remaining: 425ms
24:	learn: 27.9126674	total: 143ms	remaining: 428ms
25:	learn: 27.5059508	total: 148ms	remaining: 422ms
26:	learn: 27.0869176	total: 154ms	remaining: 417ms
27:	learn: 26.6545277	total: 161ms	remaining: 413ms
28:	learn: 26.2388575	total: 166ms	remaining: 407ms
29:	learn: 25.8957708	total: 172ms	remaining: 400ms
30:	learn: 25.5045901	total: 192ms	remaining: 427ms
31:	learn: 25.2559530	total: 199ms	remaining: 422ms
32:	learn: 24.9012566	total: 205ms	remaining: 416ms
33:	learn: 24.5601820	total: 210ms	remaining: 408ms
34:	learn: 24.2407285	total: 215ms	remaining: 400ms
35:	learn: 23.9481769	total: 221ms	remaining: 392ms
36:	learn: 23.6746994	total: 226ms	remaining: 385ms
37:	learn: 23.4470352	total: 231ms	remaining: 377ms
38:	learn: 23.1678305	total: 237ms	remaining: 371ms
39:	learn: 22.9660692	total: 243ms	remaining: 364ms
40:	learn: 22.7102548	total: 248ms	remaining: 357ms
41:	learn: 22.5152447	total: 254ms	remaining: 351ms
42:	learn: 22.2967100	total: 260ms	remaining: 345ms
43:	learn: 22.0869517	total: 266ms	remaining: 338ms
44:	learn: 21.8556497	total: 272ms	remaining: 332ms
45:	learn: 21.7036804	total: 278ms	remaining: 326ms
46:	learn: 21.4792011	total: 284ms	remaining: 320ms
47:	learn: 21.2830384	total: 290ms	remaining: 315ms
48:	learn: 21.0771837	total: 296ms	remaining: 308ms
49:	learn: 20.8824468	total: 302ms	remaining: 302ms
50:	learn: 20.7250875	total: 309ms	remaining: 296ms
51:	learn: 20.5564423	total: 321ms	remaining: 296ms
52:	learn: 20.4067403	total: 329ms	remaining: 292ms
53:	learn: 20.2674808	total: 336ms	remaining: 286ms
54:	learn: 20.1394249	total: 343ms	remaining: 281ms
55:	learn: 19.9748016	total: 349ms	remaining: 274ms
56:	learn: 19.8159522	total: 355ms	remaining: 267ms
57:	learn: 19.6811073	total: 360ms	remaining: 261ms
58:	learn: 19.5083232	total: 366ms	remaining: 254ms
59:	learn: 19.3949390	total: 369ms	remaining: 246ms
60:	learn: 19.2485728	total: 375ms	remaining: 240ms
61:	learn: 19.1255523	total: 380ms	remaining: 233ms
62:	learn: 18.9423320	total: 386ms	remaining: 226ms
63:	learn: 18.7794545	total: 391ms	remaining: 220ms
64:	learn: 18.6339033	total: 397ms	remaining: 214ms
65:	learn: 18.5188724	total: 402ms	remaining: 207ms
66:	learn: 18.3398412	total: 408ms	remaining: 201ms
67:	learn: 18.2873427	total: 413ms	remaining: 194ms
68:	learn: 18.1287092	total: 419ms	remaining: 188ms
69:	learn: 18.0163474	total: 424ms	remaining: 182ms
70:	learn: 17.9428395	total: 429ms	remaining: 175ms
71:	learn: 17.7906087	total: 435ms	remaining: 169ms
72:	learn: 17.6121088	total: 441ms	remaining: 163ms
73:	learn: 17.5136572	total: 446ms	remaining: 157ms
74:	learn: 17.3837993	total: 453ms	remaining: 151ms
75:	learn: 17.3015647	total: 459ms	remaining: 145ms
76:	learn: 17.1991252	total: 465ms	remaining: 139ms
77:	learn: 17.0854777	total: 471ms	remaining: 133ms
78:	learn: 17.0308269	total: 477ms	remaining: 127ms
79:	learn: 16.9754807	total: 483ms	remaining: 121ms
80:	learn: 16.9174907	total: 489ms	remaining: 115ms
81:	learn: 16.7962603	total: 495ms	remaining: 109ms
82:	learn: 16.6685446	total: 501ms	remaining: 103ms
83:	learn: 16.5812672	total: 507ms	remaining: 96.7ms
84:	learn: 16.4896026	total: 519ms	remaining: 91.6ms
85:	learn: 16.4023414	total: 532ms	remaining: 86.7ms
86:	learn: 16.3093718	total: 541ms	remaining: 80.8ms
87:	learn: 16.2409040	total: 547ms	remaining: 74.6ms
88:	learn: 16.1616213	total: 553ms	remaining: 68.4ms
89:	learn: 16.0825203	total: 559ms	remaining: 62.1ms
90:	learn: 16.0204931	total: 565ms	remaining: 55.9ms
91:	learn: 15.9741267	total: 570ms	remaining: 49.6ms
92:	learn: 15.9413725	total: 577ms	remaining: 43.4ms
93:	learn: 15.8762295	total: 584ms	remaining: 37.3ms
94:	learn: 15.8165812	total: 590ms	remaining: 31ms
95:	learn: 15.7244343	total: 596ms	remaining: 24.8ms
96:	learn: 15.6537033	total: 602ms	remaining: 18.6ms
97:	learn: 15.6052320	total: 609ms	remaining: 12.4ms
98:	learn: 15.5434930	total: 614ms	remaining: 6.2ms
99:	learn: 15.4452106	total: 619ms	remaining: 0us
0:	learn: 46.5387280	total: 5.3ms	remaining: 525ms
1:	learn: 45.8605074	total: 9.98ms	remaining: 489ms
2:	learn: 45.2237152	total: 15.1ms	remaining: 489ms
3:	learn: 44.4158454	total: 20.5ms	remaining: 492ms
4:	learn: 43.7177384	total: 25.7ms	remaining: 489ms
5:	learn: 42.9896372	total: 30.9ms	remaining: 485ms
6:	learn: 42.3639431	total: 36.3ms	remaining: 483ms
7:	learn: 41.6648406	total: 43ms	remaining: 495ms
8:	learn: 41.0681442	total: 53ms	remaining: 536ms
9:	learn: 40.4478745	total: 61.5ms	remaining: 553ms
10:	learn: 40.0398470	total: 67.7ms	remaining: 548ms
11:	learn: 39.3300888	total: 75.1ms	remaining: 551ms
12:	learn: 38.9198991	total: 80.3ms	remaining: 537ms
13:	learn: 38.4022666	total: 85.4ms	remaining: 525ms
14:	learn: 37.9124629	total: 90.5ms	remaining: 513ms
15:	learn: 37.3846174	total: 95.5ms	remaining: 502ms
16:	learn: 36.8502348	total: 100ms	remaining: 489ms
17:	learn: 36.5079755	total: 105ms	remaining: 478ms
18:	learn: 36.1239339	total: 110ms	remaining: 469ms
19:	learn: 35.8388688	total: 115ms	remaining: 459ms
20:	learn: 35.4915710	total: 120ms	remaining: 450ms
21:	learn: 34.9483623	total: 125ms	remaining: 442ms
22:	learn: 34.6033866	total: 130ms	remaining: 434ms
23:	learn: 34.1483341	total: 135ms	remaining: 427ms
24:	learn: 33.7626484	total: 140ms	remaining: 419ms
25:	learn: 33.4160820	total: 145ms	remaining: 412ms
26:	learn: 33.0421483	total: 150ms	remaining: 404ms
27:	learn: 32.6573469	total: 155ms	remaining: 397ms
28:	learn: 32.2672417	total: 159ms	remaining: 390ms
29:	learn: 31.8257441	total: 164ms	remaining: 383ms
30:	learn: 31.3394923	total: 169ms	remaining: 376ms
31:	learn: 30.9472894	total: 174ms	remaining: 369ms
32:	learn: 30.6961423	total: 179ms	remaining: 363ms
33:	learn: 30.4670615	total: 183ms	remaining: 356ms
34:	learn: 30.1495001	total: 188ms	remaining: 350ms
35:	learn: 29.8071763	total: 193ms	remaining: 343ms
36:	learn: 29.5255984	total: 198ms	remaining: 337ms
37:	learn: 29.2236758	total: 203ms	remaining: 331ms
38:	learn: 28.9199699	total: 208ms	remaining: 325ms
39:	learn: 28.7003989	total: 212ms	remaining: 318ms
40:	learn: 28.4681160	total: 218ms	remaining: 313ms
41:	learn: 28.2692668	total: 223ms	remaining: 308ms
42:	learn: 27.9327254	total: 227ms	remaining: 302ms
43:	learn: 27.7193597	total: 233ms	remaining: 296ms
44:	learn: 27.4061006	total: 239ms	remaining: 292ms
45:	learn: 27.1840910	total: 246ms	remaining: 289ms
46:	learn: 26.8943816	total: 254ms	remaining: 286ms
47:	learn: 26.6576617	total: 261ms	remaining: 283ms
48:	learn: 26.3230094	total: 267ms	remaining: 278ms
49:	learn: 26.0488483	total: 272ms	remaining: 272ms
50:	learn: 25.7795537	total: 280ms	remaining: 269ms
51:	learn: 25.6103781	total: 286ms	remaining: 264ms
52:	learn: 25.4107383	total: 292ms	remaining: 259ms
53:	learn: 25.1757211	total: 298ms	remaining: 254ms
54:	learn: 24.8949842	total: 304ms	remaining: 248ms
55:	learn: 24.7028694	total: 310ms	remaining: 243ms
56:	learn: 24.4033555	total: 315ms	remaining: 238ms
57:	learn: 24.2109268	total: 320ms	remaining: 232ms
58:	learn: 24.0697623	total: 326ms	remaining: 227ms
59:	learn: 23.8291672	total: 332ms	remaining: 221ms
60:	learn: 23.5972471	total: 338ms	remaining: 216ms
61:	learn: 23.4241182	total: 344ms	remaining: 211ms
62:	learn: 23.2617022	total: 350ms	remaining: 205ms
63:	learn: 23.0329448	total: 356ms	remaining: 200ms
64:	learn: 22.9108081	total: 362ms	remaining: 195ms
65:	learn: 22.8001962	total: 367ms	remaining: 189ms
66:	learn: 22.6861907	total: 372ms	remaining: 183ms
67:	learn: 22.5152895	total: 377ms	remaining: 177ms
68:	learn: 22.3734214	total: 382ms	remaining: 172ms
69:	learn: 22.1840754	total: 387ms	remaining: 166ms
70:	learn: 22.0732908	total: 392ms	remaining: 160ms
71:	learn: 21.8880456	total: 396ms	remaining: 154ms
72:	learn: 21.7838784	total: 401ms	remaining: 148ms
73:	learn: 21.5532885	total: 406ms	remaining: 143ms
74:	learn: 21.3998735	total: 411ms	remaining: 137ms
75:	learn: 21.2699824	total: 416ms	remaining: 131ms
76:	learn: 21.1077652	total: 420ms	remaining: 126ms
77:	learn: 20.9759102	total: 425ms	remaining: 120ms
78:	learn: 20.7531342	total: 430ms	remaining: 114ms
79:	learn: 20.6729631	total: 435ms	remaining: 109ms
80:	learn: 20.4903474	total: 440ms	remaining: 103ms
81:	learn: 20.3708622	total: 446ms	remaining: 97.8ms
82:	learn: 20.2627857	total: 451ms	remaining: 92.4ms
83:	learn: 20.1335464	total: 456ms	remaining: 86.8ms
84:	learn: 20.0100864	total: 461ms	remaining: 81.4ms
85:	learn: 19.9374357	total: 467ms	remaining: 75.9ms
86:	learn: 19.8383097	total: 477ms	remaining: 71.2ms
87:	learn: 19.7804443	total: 485ms	remaining: 66.1ms
88:	learn: 19.7225631	total: 492ms	remaining: 60.8ms
89:	learn: 19.5851849	total: 497ms	remaining: 55.3ms
90:	learn: 19.5115923	total: 504ms	remaining: 49.8ms
91:	learn: 19.3986485	total: 508ms	remaining: 44.2ms
92:	learn: 19.2465728	total: 513ms	remaining: 38.6ms
93:	learn: 19.2033796	total: 518ms	remaining: 33.1ms
94:	learn: 19.1234096	total: 523ms	remaining: 27.5ms
95:	learn: 19.0080161	total: 528ms	remaining: 22ms
96:	learn: 18.9048698	total: 532ms	remaining: 16.5ms
97:	learn: 18.7901500	total: 537ms	remaining: 11ms
98:	learn: 18.6759882	total: 542ms	remaining: 5.47ms
99:	learn: 18.6254590	total: 547ms	remaining: 0us
0:	learn: 46.0359105	total: 5.12ms	remaining: 507ms
1:	learn: 45.4503059	total: 9.77ms	remaining: 479ms
2:	learn: 44.6478680	total: 14.4ms	remaining: 467ms
3:	learn: 43.7932387	total: 19.3ms	remaining: 463ms
4:	learn: 43.2236036	total: 24ms	remaining: 457ms
5:	learn: 42.4339181	total: 28.8ms	remaining: 451ms
6:	learn: 41.8906461	total: 33.8ms	remaining: 449ms
7:	learn: 41.2248707	total: 39ms	remaining: 448ms
8:	learn: 40.5934570	total: 44ms	remaining: 444ms
9:	learn: 39.9204661	total: 48.9ms	remaining: 440ms
10:	learn: 39.3972458	total: 54.5ms	remaining: 441ms
11:	learn: 38.9220493	total: 59.5ms	remaining: 436ms
12:	learn: 38.2358406	total: 64.6ms	remaining: 432ms
13:	learn: 37.7089336	total: 70ms	remaining: 430ms
14:	learn: 37.3714255	total: 75.5ms	remaining: 428ms
15:	learn: 36.8098537	total: 84.9ms	remaining: 446ms
16:	learn: 36.2818695	total: 94.5ms	remaining: 461ms
17:	learn: 35.8807734	total: 103ms	remaining: 469ms
18:	learn: 35.3850720	total: 112ms	remaining: 476ms
19:	learn: 35.0622365	total: 117ms	remaining: 468ms
20:	learn: 34.7088655	total: 123ms	remaining: 462ms
21:	learn: 34.2869861	total: 128ms	remaining: 455ms
22:	learn: 33.9798756	total: 134ms	remaining: 448ms
23:	learn: 33.6933850	total: 140ms	remaining: 442ms
24:	learn: 33.3542725	total: 145ms	remaining: 435ms
25:	learn: 33.1531104	total: 151ms	remaining: 429ms
26:	learn: 32.7581499	total: 156ms	remaining: 423ms
27:	learn: 32.4953289	total: 162ms	remaining: 417ms
28:	learn: 32.1636511	total: 168ms	remaining: 411ms
29:	learn: 31.7179908	total: 175ms	remaining: 408ms
30:	learn: 31.2828971	total: 181ms	remaining: 403ms
31:	learn: 30.8954632	total: 187ms	remaining: 397ms
32:	learn: 30.6156466	total: 192ms	remaining: 390ms
33:	learn: 30.4325331	total: 197ms	remaining: 383ms
34:	learn: 30.1680270	total: 202ms	remaining: 375ms
35:	learn: 29.8372162	total: 207ms	remaining: 368ms
36:	learn: 29.5018241	total: 212ms	remaining: 361ms
37:	learn: 29.2660228	total: 217ms	remaining: 354ms
38:	learn: 28.9172883	total: 222ms	remaining: 347ms
39:	learn: 28.7004790	total: 227ms	remaining: 340ms
40:	learn: 28.5188438	total: 231ms	remaining: 333ms
41:	learn: 28.3064887	total: 237ms	remaining: 327ms
42:	learn: 27.9584462	total: 242ms	remaining: 321ms
43:	learn: 27.6654603	total: 247ms	remaining: 315ms
44:	learn: 27.3698139	total: 252ms	remaining: 308ms
45:	learn: 27.1825629	total: 257ms	remaining: 302ms
46:	learn: 26.9938719	total: 267ms	remaining: 301ms
47:	learn: 26.7385850	total: 274ms	remaining: 297ms
48:	learn: 26.5055251	total: 282ms	remaining: 293ms
49:	learn: 26.3264840	total: 287ms	remaining: 287ms
50:	learn: 26.1314307	total: 293ms	remaining: 281ms
51:	learn: 25.9514770	total: 298ms	remaining: 275ms
52:	learn: 25.7272663	total: 303ms	remaining: 268ms
53:	learn: 25.4554234	total: 307ms	remaining: 262ms
54:	learn: 25.2133674	total: 312ms	remaining: 255ms
55:	learn: 24.9612149	total: 317ms	remaining: 249ms
56:	learn: 24.6788780	total: 322ms	remaining: 243ms
57:	learn: 24.4504703	total: 326ms	remaining: 236ms
58:	learn: 24.3261542	total: 331ms	remaining: 230ms
59:	learn: 24.1217621	total: 336ms	remaining: 224ms
60:	learn: 23.9495725	total: 341ms	remaining: 218ms
61:	learn: 23.7848565	total: 345ms	remaining: 212ms
62:	learn: 23.6627081	total: 350ms	remaining: 206ms
63:	learn: 23.4390407	total: 355ms	remaining: 200ms
64:	learn: 23.2556312	total: 360ms	remaining: 194ms
65:	learn: 23.1796337	total: 365ms	remaining: 188ms
66:	learn: 23.0431987	total: 369ms	remaining: 182ms
67:	learn: 22.9300366	total: 374ms	remaining: 176ms
68:	learn: 22.8321895	total: 379ms	remaining: 170ms
69:	learn: 22.7825840	total: 384ms	remaining: 165ms
70:	learn: 22.6907764	total: 389ms	remaining: 159ms
71:	learn: 22.5080460	total: 394ms	remaining: 153ms
72:	learn: 22.4053282	total: 398ms	remaining: 147ms
73:	learn: 22.2698085	total: 403ms	remaining: 142ms
74:	learn: 22.0951825	total: 408ms	remaining: 136ms
75:	learn: 21.9933994	total: 412ms	remaining: 130ms
76:	learn: 21.8043413	total: 418ms	remaining: 125ms
77:	learn: 21.7259032	total: 423ms	remaining: 119ms
78:	learn: 21.5625358	total: 428ms	remaining: 114ms
79:	learn: 21.4316837	total: 433ms	remaining: 108ms
80:	learn: 21.2270985	total: 438ms	remaining: 103ms
81:	learn: 21.1248573	total: 443ms	remaining: 97.3ms
82:	learn: 21.0879584	total: 448ms	remaining: 91.8ms
83:	learn: 20.9810177	total: 453ms	remaining: 86.4ms
84:	learn: 20.8986744	total: 462ms	remaining: 81.5ms
85:	learn: 20.8427245	total: 474ms	remaining: 77.2ms
86:	learn: 20.7158681	total: 484ms	remaining: 72.3ms
87:	learn: 20.6055502	total: 493ms	remaining: 67.2ms
88:	learn: 20.5302059	total: 499ms	remaining: 61.7ms
89:	learn: 20.3936827	total: 505ms	remaining: 56.2ms
90:	learn: 20.2756993	total: 511ms	remaining: 50.6ms
91:	learn: 20.1882826	total: 517ms	remaining: 45ms
92:	learn: 20.0346875	total: 523ms	remaining: 39.4ms
93:	learn: 19.9798652	total: 529ms	remaining: 33.8ms
94:	learn: 19.9020384	total: 534ms	remaining: 28.1ms
95:	learn: 19.8463755	total: 540ms	remaining: 22.5ms
96:	learn: 19.7426458	total: 545ms	remaining: 16.9ms
97:	learn: 19.6728655	total: 550ms	remaining: 11.2ms
98:	learn: 19.6355104	total: 555ms	remaining: 5.61ms
99:	learn: 19.6074086	total: 560ms	remaining: 0us
0:	learn: 46.7817285	total: 5.31ms	remaining: 526ms
1:	learn: 45.9551634	total: 10.1ms	remaining: 494ms
2:	learn: 45.0274369	total: 14.7ms	remaining: 475ms
3:	learn: 44.5000950	total: 19.8ms	remaining: 475ms
4:	learn: 43.8963632	total: 24.8ms	remaining: 471ms
5:	learn: 43.2314124	total: 29.7ms	remaining: 465ms
6:	learn: 42.5780140	total: 34.5ms	remaining: 458ms
7:	learn: 41.9033077	total: 39.6ms	remaining: 455ms
8:	learn: 41.3161907	total: 44.8ms	remaining: 453ms
9:	learn: 40.7747000	total: 49.9ms	remaining: 449ms
10:	learn: 40.2728122	total: 55.2ms	remaining: 446ms
11:	learn: 39.7786608	total: 60.3ms	remaining: 442ms
12:	learn: 39.0812090	total: 68.9ms	remaining: 461ms
13:	learn: 38.6205762	total: 76.9ms	remaining: 472ms
14:	learn: 38.2894236	total: 84.2ms	remaining: 477ms
15:	learn: 37.6906364	total: 89.8ms	remaining: 472ms
16:	learn: 37.3014849	total: 96.2ms	remaining: 470ms
17:	learn: 36.9268494	total: 101ms	remaining: 461ms
18:	learn: 36.6348717	total: 106ms	remaining: 453ms
19:	learn: 36.1567831	total: 111ms	remaining: 444ms
20:	learn: 35.8080754	total: 116ms	remaining: 437ms
21:	learn: 35.4288913	total: 121ms	remaining: 429ms
22:	learn: 35.0910168	total: 126ms	remaining: 420ms
23:	learn: 34.7483277	total: 130ms	remaining: 413ms
24:	learn: 34.5077203	total: 135ms	remaining: 404ms
25:	learn: 34.1830247	total: 140ms	remaining: 397ms
26:	learn: 33.7943837	total: 144ms	remaining: 390ms
27:	learn: 33.3736582	total: 149ms	remaining: 383ms
28:	learn: 32.9133996	total: 154ms	remaining: 376ms
29:	learn: 32.4361653	total: 159ms	remaining: 370ms
30:	learn: 31.9630085	total: 163ms	remaining: 364ms
31:	learn: 31.5994894	total: 168ms	remaining: 357ms
32:	learn: 31.3120059	total: 173ms	remaining: 352ms
33:	learn: 31.0991187	total: 178ms	remaining: 346ms
34:	learn: 30.8055118	total: 183ms	remaining: 340ms
35:	learn: 30.5197359	total: 188ms	remaining: 335ms
36:	learn: 30.1975315	total: 193ms	remaining: 329ms
37:	learn: 29.9797615	total: 199ms	remaining: 324ms
38:	learn: 29.6874864	total: 203ms	remaining: 318ms
39:	learn: 29.4139907	total: 208ms	remaining: 313ms
40:	learn: 29.0472151	total: 213ms	remaining: 307ms
41:	learn: 28.8356285	total: 218ms	remaining: 301ms
42:	learn: 28.5099349	total: 223ms	remaining: 296ms
43:	learn: 28.2009716	total: 228ms	remaining: 290ms
44:	learn: 27.8947534	total: 233ms	remaining: 285ms
45:	learn: 27.6149698	total: 238ms	remaining: 279ms
46:	learn: 27.4780860	total: 242ms	remaining: 273ms
47:	learn: 27.2859119	total: 247ms	remaining: 268ms
48:	learn: 27.0572191	total: 252ms	remaining: 262ms
49:	learn: 26.8916263	total: 257ms	remaining: 257ms
50:	learn: 26.6791967	total: 263ms	remaining: 252ms
51:	learn: 26.4917307	total: 268ms	remaining: 247ms
52:	learn: 26.2957036	total: 273ms	remaining: 242ms
53:	learn: 26.1116543	total: 280ms	remaining: 239ms
54:	learn: 25.8593319	total: 289ms	remaining: 236ms
55:	learn: 25.6957296	total: 300ms	remaining: 236ms
56:	learn: 25.5065213	total: 308ms	remaining: 232ms
57:	learn: 25.3525337	total: 314ms	remaining: 228ms
58:	learn: 25.2197494	total: 320ms	remaining: 223ms
59:	learn: 25.0583799	total: 326ms	remaining: 218ms
60:	learn: 24.8432659	total: 332ms	remaining: 212ms
61:	learn: 24.6585337	total: 338ms	remaining: 207ms
62:	learn: 24.5382571	total: 344ms	remaining: 202ms
63:	learn: 24.3596337	total: 350ms	remaining: 197ms
64:	learn: 24.2009033	total: 355ms	remaining: 191ms
65:	learn: 24.0964080	total: 360ms	remaining: 186ms
66:	learn: 23.9765920	total: 366ms	remaining: 180ms
67:	learn: 23.8638384	total: 372ms	remaining: 175ms
68:	learn: 23.7381861	total: 378ms	remaining: 170ms
69:	learn: 23.5620129	total: 382ms	remaining: 164ms
70:	learn: 23.4494830	total: 387ms	remaining: 158ms
71:	learn: 23.3095806	total: 392ms	remaining: 152ms
72:	learn: 23.1441767	total: 397ms	remaining: 147ms
73:	learn: 22.9983446	total: 402ms	remaining: 141ms
74:	learn: 22.8464764	total: 407ms	remaining: 136ms
75:	learn: 22.7606423	total: 412ms	remaining: 130ms
76:	learn: 22.6095905	total: 417ms	remaining: 124ms
77:	learn: 22.4430506	total: 422ms	remaining: 119ms
78:	learn: 22.2925872	total: 427ms	remaining: 113ms
79:	learn: 22.1806286	total: 431ms	remaining: 108ms
80:	learn: 22.0070525	total: 437ms	remaining: 103ms
81:	learn: 21.9114201	total: 442ms	remaining: 97ms
82:	learn: 21.7742884	total: 447ms	remaining: 91.5ms
83:	learn: 21.6372857	total: 452ms	remaining: 86.1ms
84:	learn: 21.5380397	total: 457ms	remaining: 80.6ms
85:	learn: 21.4730146	total: 461ms	remaining: 75.1ms
86:	learn: 21.3236516	total: 467ms	remaining: 69.7ms
87:	learn: 21.2512101	total: 472ms	remaining: 64.3ms
88:	learn: 21.2192883	total: 477ms	remaining: 58.9ms
89:	learn: 21.0457926	total: 482ms	remaining: 53.5ms
90:	learn: 20.9986980	total: 487ms	remaining: 48.2ms
91:	learn: 20.9040032	total: 496ms	remaining: 43.2ms
92:	learn: 20.7178547	total: 504ms	remaining: 37.9ms
93:	learn: 20.6535030	total: 511ms	remaining: 32.6ms
94:	learn: 20.5641982	total: 517ms	remaining: 27.2ms
95:	learn: 20.5355409	total: 523ms	remaining: 21.8ms
96:	learn: 20.4496493	total: 527ms	remaining: 16.3ms
97:	learn: 20.3579862	total: 532ms	remaining: 10.9ms
98:	learn: 20.2442476	total: 537ms	remaining: 5.42ms
99:	learn: 20.1075813	total: 542ms	remaining: 0us
0:	learn: 27.5364715	total: 13.8ms	remaining: 1.37s
1:	learn: 27.0332605	total: 28.2ms	remaining: 1.38s
2:	learn: 26.6003054	total: 41.7ms	remaining: 1.35s
3:	learn: 26.1718490	total: 55.3ms	remaining: 1.33s
4:	learn: 25.6754191	total: 69.8ms	remaining: 1.32s
5:	learn: 25.1972247	total: 84.5ms	remaining: 1.32s
6:	learn: 24.7789830	total: 99ms	remaining: 1.31s
7:	learn: 24.2982264	total: 120ms	remaining: 1.38s
8:	learn: 23.9385794	total: 138ms	remaining: 1.39s
9:	learn: 23.6008770	total: 154ms	remaining: 1.39s
10:	learn: 23.2761100	total: 169ms	remaining: 1.37s
11:	learn: 22.8911092	total: 184ms	remaining: 1.35s
12:	learn: 22.5316801	total: 199ms	remaining: 1.33s
13:	learn: 22.2544235	total: 215ms	remaining: 1.32s
14:	learn: 21.9242091	total: 229ms	remaining: 1.3s
15:	learn: 21.6271472	total: 244ms	remaining: 1.28s
16:	learn: 21.2652988	total: 258ms	remaining: 1.26s
17:	learn: 20.9768980	total: 272ms	remaining: 1.24s
18:	learn: 20.7309258	total: 286ms	remaining: 1.22s
19:	learn: 20.4429237	total: 301ms	remaining: 1.2s
20:	learn: 20.1255259	total: 321ms	remaining: 1.21s
21:	learn: 19.8288030	total: 340ms	remaining: 1.21s
22:	learn: 19.5829328	total: 355ms	remaining: 1.19s
23:	learn: 19.3328022	total: 370ms	remaining: 1.17s
24:	learn: 19.1228749	total: 384ms	remaining: 1.15s
25:	learn: 18.8350524	total: 398ms	remaining: 1.13s
26:	learn: 18.5551449	total: 412ms	remaining: 1.11s
27:	learn: 18.2938897	total: 426ms	remaining: 1.09s
28:	learn: 18.1043186	total: 440ms	remaining: 1.08s
29:	learn: 17.8978281	total: 455ms	remaining: 1.06s
30:	learn: 17.7117738	total: 469ms	remaining: 1.04s
31:	learn: 17.5039278	total: 483ms	remaining: 1.03s
32:	learn: 17.3162992	total: 498ms	remaining: 1.01s
33:	learn: 17.1329950	total: 512ms	remaining: 994ms
34:	learn: 16.9601126	total: 527ms	remaining: 978ms
35:	learn: 16.7877077	total: 545ms	remaining: 969ms
36:	learn: 16.6334301	total: 568ms	remaining: 968ms
37:	learn: 16.4829453	total: 585ms	remaining: 955ms
38:	learn: 16.3272820	total: 600ms	remaining: 939ms
39:	learn: 16.1678237	total: 616ms	remaining: 924ms
40:	learn: 16.0196284	total: 631ms	remaining: 908ms
41:	learn: 15.8796505	total: 647ms	remaining: 893ms
42:	learn: 15.7426376	total: 660ms	remaining: 875ms
43:	learn: 15.6043764	total: 674ms	remaining: 858ms
44:	learn: 15.4681068	total: 689ms	remaining: 842ms
45:	learn: 15.2875020	total: 703ms	remaining: 825ms
46:	learn: 15.1482508	total: 717ms	remaining: 809ms
47:	learn: 15.0228474	total: 732ms	remaining: 793ms
48:	learn: 14.8844135	total: 746ms	remaining: 777ms
49:	learn: 14.7657978	total: 764ms	remaining: 764ms
50:	learn: 14.6460387	total: 783ms	remaining: 752ms
51:	learn: 14.5101421	total: 799ms	remaining: 738ms
52:	learn: 14.3719206	total: 814ms	remaining: 722ms
53:	learn: 14.2682226	total: 830ms	remaining: 707ms
54:	learn: 14.1426585	total: 845ms	remaining: 691ms
55:	learn: 14.0258152	total: 861ms	remaining: 676ms
56:	learn: 13.9121709	total: 876ms	remaining: 661ms
57:	learn: 13.8073099	total: 892ms	remaining: 646ms
58:	learn: 13.7183634	total: 907ms	remaining: 630ms
59:	learn: 13.6248078	total: 922ms	remaining: 615ms
60:	learn: 13.5263718	total: 938ms	remaining: 600ms
61:	learn: 13.4317836	total: 955ms	remaining: 585ms
62:	learn: 13.3346746	total: 973ms	remaining: 572ms
63:	learn: 13.2273536	total: 998ms	remaining: 561ms
64:	learn: 13.1247698	total: 1.02s	remaining: 547ms
65:	learn: 13.0580572	total: 1.03s	remaining: 532ms
66:	learn: 12.9784144	total: 1.05s	remaining: 516ms
67:	learn: 12.8958182	total: 1.06s	remaining: 501ms
68:	learn: 12.8085193	total: 1.08s	remaining: 485ms
69:	learn: 12.7158575	total: 1.09s	remaining: 470ms
70:	learn: 12.6228844	total: 1.11s	remaining: 454ms
71:	learn: 12.5541656	total: 1.13s	remaining: 438ms
72:	learn: 12.4729623	total: 1.14s	remaining: 422ms
73:	learn: 12.3798763	total: 1.16s	remaining: 407ms
74:	learn: 12.3218601	total: 1.17s	remaining: 391ms
75:	learn: 12.2412940	total: 1.19s	remaining: 377ms
76:	learn: 12.1485559	total: 1.21s	remaining: 362ms
77:	learn: 12.0828976	total: 1.23s	remaining: 347ms
78:	learn: 11.9983281	total: 1.24s	remaining: 331ms
79:	learn: 11.9233743	total: 1.26s	remaining: 315ms
80:	learn: 11.8640921	total: 1.27s	remaining: 299ms
81:	learn: 11.7910223	total: 1.29s	remaining: 283ms
82:	learn: 11.7235632	total: 1.31s	remaining: 268ms
83:	learn: 11.6541693	total: 1.32s	remaining: 252ms
84:	learn: 11.5850883	total: 1.34s	remaining: 236ms
85:	learn: 11.5068749	total: 1.35s	remaining: 220ms
86:	learn: 11.4330975	total: 1.37s	remaining: 205ms
87:	learn: 11.3728016	total: 1.39s	remaining: 189ms
88:	learn: 11.2997698	total: 1.4s	remaining: 173ms
89:	learn: 11.2250105	total: 1.43s	remaining: 159ms
90:	learn: 11.1605386	total: 1.44s	remaining: 143ms
91:	learn: 11.1074685	total: 1.46s	remaining: 127ms
92:	learn: 11.0516038	total: 1.47s	remaining: 111ms
93:	learn: 10.9814113	total: 1.49s	remaining: 95.1ms
94:	learn: 10.9153259	total: 1.5s	remaining: 79.3ms
95:	learn: 10.8685064	total: 1.52s	remaining: 63.4ms
96:	learn: 10.8225632	total: 1.53s	remaining: 47.5ms
97:	learn: 10.7433962	total: 1.55s	remaining: 31.6ms
98:	learn: 10.6790412	total: 1.56s	remaining: 15.8ms
99:	learn: 10.6218930	total: 1.58s	remaining: 0us
0:	learn: 42.9392958	total: 14.8ms	remaining: 1.47s
1:	learn: 41.8861295	total: 22.9ms	remaining: 1.12s
2:	learn: 40.9351090	total: 37.6ms	remaining: 1.21s
3:	learn: 40.1727299	total: 51.6ms	remaining: 1.24s
4:	learn: 39.2749251	total: 66.2ms	remaining: 1.26s
5:	learn: 38.5546797	total: 80.9ms	remaining: 1.27s
6:	learn: 37.7382640	total: 95.4ms	remaining: 1.27s
7:	learn: 36.9734924	total: 110ms	remaining: 1.26s
8:	learn: 36.2760557	total: 125ms	remaining: 1.26s
9:	learn: 35.4983146	total: 139ms	remaining: 1.25s
10:	learn: 34.8709435	total: 154ms	remaining: 1.25s
11:	learn: 34.3094422	total: 169ms	remaining: 1.24s
12:	learn: 33.7797352	total: 186ms	remaining: 1.24s
13:	learn: 33.2644446	total: 209ms	remaining: 1.28s
14:	learn: 32.4846043	total: 226ms	remaining: 1.28s
15:	learn: 31.9659270	total: 241ms	remaining: 1.27s
16:	learn: 31.3626236	total: 257ms	remaining: 1.25s
17:	learn: 30.9186005	total: 272ms	remaining: 1.24s
18:	learn: 30.4779355	total: 287ms	remaining: 1.22s
19:	learn: 29.9841073	total: 302ms	remaining: 1.21s
20:	learn: 29.5221830	total: 317ms	remaining: 1.19s
21:	learn: 29.0672830	total: 332ms	remaining: 1.18s
22:	learn: 28.6147734	total: 347ms	remaining: 1.16s
23:	learn: 28.1862201	total: 362ms	remaining: 1.15s
24:	learn: 27.6101530	total: 376ms	remaining: 1.13s
25:	learn: 27.1402659	total: 391ms	remaining: 1.11s
26:	learn: 26.7584486	total: 409ms	remaining: 1.11s
27:	learn: 26.3946909	total: 429ms	remaining: 1.1s
28:	learn: 26.0504227	total: 444ms	remaining: 1.09s
29:	learn: 25.7165133	total: 459ms	remaining: 1.07s
30:	learn: 25.4284656	total: 473ms	remaining: 1.05s
31:	learn: 25.0746326	total: 487ms	remaining: 1.03s
32:	learn: 24.7681302	total: 501ms	remaining: 1.02s
33:	learn: 24.4453473	total: 515ms	remaining: 1s
34:	learn: 24.0821316	total: 530ms	remaining: 983ms
35:	learn: 23.7578001	total: 544ms	remaining: 967ms
36:	learn: 23.4986054	total: 558ms	remaining: 951ms
37:	learn: 23.2245830	total: 578ms	remaining: 942ms
38:	learn: 22.9112753	total: 597ms	remaining: 933ms
39:	learn: 22.6537491	total: 614ms	remaining: 921ms
40:	learn: 22.4455739	total: 629ms	remaining: 905ms
41:	learn: 22.1497467	total: 645ms	remaining: 891ms
42:	learn: 21.8978272	total: 661ms	remaining: 877ms
43:	learn: 21.6641644	total: 677ms	remaining: 862ms
44:	learn: 21.4925169	total: 694ms	remaining: 848ms
45:	learn: 21.2702786	total: 710ms	remaining: 834ms
46:	learn: 21.0229282	total: 726ms	remaining: 819ms
47:	learn: 20.8023093	total: 742ms	remaining: 804ms
48:	learn: 20.6544560	total: 758ms	remaining: 789ms
49:	learn: 20.4274938	total: 774ms	remaining: 774ms
50:	learn: 20.2918519	total: 791ms	remaining: 760ms
51:	learn: 20.0677337	total: 813ms	remaining: 751ms
52:	learn: 19.9242510	total: 831ms	remaining: 737ms
53:	learn: 19.6948057	total: 846ms	remaining: 720ms
54:	learn: 19.5133145	total: 861ms	remaining: 705ms
55:	learn: 19.3593952	total: 877ms	remaining: 689ms
56:	learn: 19.1906660	total: 893ms	remaining: 674ms
57:	learn: 18.9811137	total: 909ms	remaining: 658ms
58:	learn: 18.8688018	total: 925ms	remaining: 643ms
59:	learn: 18.6888845	total: 940ms	remaining: 627ms
60:	learn: 18.5743342	total: 956ms	remaining: 611ms
61:	learn: 18.4325359	total: 972ms	remaining: 596ms
62:	learn: 18.3639009	total: 974ms	remaining: 572ms
63:	learn: 18.2180846	total: 990ms	remaining: 557ms
64:	learn: 18.0937188	total: 1.01s	remaining: 542ms
65:	learn: 17.9416709	total: 1.03s	remaining: 532ms
66:	learn: 17.8132992	total: 1.05s	remaining: 518ms
67:	learn: 17.6633142	total: 1.07s	remaining: 502ms
68:	learn: 17.5333526	total: 1.08s	remaining: 487ms
69:	learn: 17.4544089	total: 1.1s	remaining: 471ms
70:	learn: 17.3135682	total: 1.12s	remaining: 456ms
71:	learn: 17.1831714	total: 1.13s	remaining: 440ms
72:	learn: 17.0099707	total: 1.15s	remaining: 424ms
73:	learn: 16.9350416	total: 1.16s	remaining: 409ms
74:	learn: 16.8414347	total: 1.18s	remaining: 393ms
75:	learn: 16.7182780	total: 1.19s	remaining: 377ms
76:	learn: 16.5838092	total: 1.21s	remaining: 362ms
77:	learn: 16.4590385	total: 1.23s	remaining: 346ms
78:	learn: 16.3695122	total: 1.25s	remaining: 332ms
79:	learn: 16.2535686	total: 1.27s	remaining: 317ms
80:	learn: 16.1487199	total: 1.28s	remaining: 301ms
81:	learn: 16.0128862	total: 1.3s	remaining: 285ms
82:	learn: 15.8918624	total: 1.31s	remaining: 269ms
83:	learn: 15.8158630	total: 1.33s	remaining: 253ms
84:	learn: 15.6893805	total: 1.34s	remaining: 237ms
85:	learn: 15.5804209	total: 1.35s	remaining: 221ms
86:	learn: 15.4871516	total: 1.37s	remaining: 205ms
87:	learn: 15.3672350	total: 1.39s	remaining: 189ms
88:	learn: 15.2512041	total: 1.4s	remaining: 173ms
89:	learn: 15.1808175	total: 1.42s	remaining: 157ms
90:	learn: 15.1019009	total: 1.43s	remaining: 142ms
91:	learn: 14.9864696	total: 1.46s	remaining: 127ms
92:	learn: 14.8857385	total: 1.47s	remaining: 111ms
93:	learn: 14.7974070	total: 1.49s	remaining: 95ms
94:	learn: 14.7105544	total: 1.5s	remaining: 79.2ms
95:	learn: 14.6548304	total: 1.52s	remaining: 63.3ms
96:	learn: 14.5738415	total: 1.53s	remaining: 47.4ms
97:	learn: 14.4917271	total: 1.55s	remaining: 31.6ms
98:	learn: 14.4114936	total: 1.56s	remaining: 15.8ms
99:	learn: 14.3750086	total: 1.58s	remaining: 0us
0:	learn: 46.5588427	total: 15.3ms	remaining: 1.52s
1:	learn: 45.6635964	total: 36.3ms	remaining: 1.78s
2:	learn: 44.6447505	total: 52.5ms	remaining: 1.7s
3:	learn: 43.6800849	total: 57ms	remaining: 1.37s
4:	learn: 42.9167738	total: 70.8ms	remaining: 1.34s
5:	learn: 42.2337119	total: 85.4ms	remaining: 1.34s
6:	learn: 41.5226009	total: 99.3ms	remaining: 1.32s
7:	learn: 40.9272252	total: 113ms	remaining: 1.3s
8:	learn: 40.4219026	total: 127ms	remaining: 1.29s
9:	learn: 39.4539834	total: 141ms	remaining: 1.27s
10:	learn: 38.6588436	total: 156ms	remaining: 1.26s
11:	learn: 38.0984201	total: 170ms	remaining: 1.25s
12:	learn: 37.3676229	total: 184ms	remaining: 1.23s
13:	learn: 36.9670411	total: 199ms	remaining: 1.22s
14:	learn: 36.2357592	total: 213ms	remaining: 1.21s
15:	learn: 35.4593874	total: 228ms	remaining: 1.2s
16:	learn: 34.7874782	total: 242ms	remaining: 1.18s
17:	learn: 34.1825603	total: 258ms	remaining: 1.17s
18:	learn: 33.7390135	total: 280ms	remaining: 1.19s
19:	learn: 33.1877490	total: 301ms	remaining: 1.21s
20:	learn: 32.6618930	total: 316ms	remaining: 1.19s
21:	learn: 32.2254158	total: 332ms	remaining: 1.18s
22:	learn: 31.7469155	total: 346ms	remaining: 1.16s
23:	learn: 31.1997986	total: 361ms	remaining: 1.14s
24:	learn: 30.6748050	total: 375ms	remaining: 1.13s
25:	learn: 30.1789291	total: 391ms	remaining: 1.11s
26:	learn: 29.8459330	total: 406ms	remaining: 1.1s
27:	learn: 29.4546320	total: 420ms	remaining: 1.08s
28:	learn: 29.0344042	total: 433ms	remaining: 1.06s
29:	learn: 28.5066104	total: 447ms	remaining: 1.04s
30:	learn: 28.0991112	total: 462ms	remaining: 1.03s
31:	learn: 27.6520871	total: 477ms	remaining: 1.01s
32:	learn: 27.3448961	total: 499ms	remaining: 1.01s
33:	learn: 27.1214405	total: 515ms	remaining: 1s
34:	learn: 26.7897524	total: 531ms	remaining: 986ms
35:	learn: 26.4715044	total: 547ms	remaining: 972ms
36:	learn: 26.1946682	total: 562ms	remaining: 957ms
37:	learn: 25.8461635	total: 578ms	remaining: 943ms
38:	learn: 25.5525851	total: 594ms	remaining: 929ms
39:	learn: 25.2815829	total: 609ms	remaining: 914ms
40:	learn: 25.0023546	total: 625ms	remaining: 899ms
41:	learn: 24.7784421	total: 640ms	remaining: 884ms
42:	learn: 24.4915965	total: 656ms	remaining: 870ms
43:	learn: 24.2273409	total: 673ms	remaining: 857ms
44:	learn: 24.0642215	total: 695ms	remaining: 850ms
45:	learn: 23.8571968	total: 717ms	remaining: 842ms
46:	learn: 23.6902398	total: 734ms	remaining: 828ms
47:	learn: 23.4321390	total: 750ms	remaining: 812ms
48:	learn: 23.2124975	total: 766ms	remaining: 797ms
49:	learn: 22.9758075	total: 782ms	remaining: 782ms
50:	learn: 22.8202464	total: 799ms	remaining: 767ms
51:	learn: 22.5918049	total: 815ms	remaining: 752ms
52:	learn: 22.3743701	total: 831ms	remaining: 737ms
53:	learn: 22.1494934	total: 846ms	remaining: 721ms
54:	learn: 21.9580200	total: 862ms	remaining: 705ms
55:	learn: 21.7669951	total: 884ms	remaining: 694ms
56:	learn: 21.5551113	total: 902ms	remaining: 681ms
57:	learn: 21.3521330	total: 918ms	remaining: 665ms
58:	learn: 21.1886488	total: 934ms	remaining: 649ms
59:	learn: 21.0480297	total: 950ms	remaining: 633ms
60:	learn: 20.9228547	total: 965ms	remaining: 617ms
61:	learn: 20.7775700	total: 981ms	remaining: 601ms
62:	learn: 20.6575132	total: 996ms	remaining: 585ms
63:	learn: 20.5865628	total: 1.01s	remaining: 570ms
64:	learn: 20.4315710	total: 1.03s	remaining: 554ms
65:	learn: 20.2510238	total: 1.04s	remaining: 538ms
66:	learn: 20.1183761	total: 1.06s	remaining: 522ms
67:	learn: 19.9387633	total: 1.07s	remaining: 505ms
68:	learn: 19.7968959	total: 1.09s	remaining: 489ms
69:	learn: 19.6798321	total: 1.1s	remaining: 473ms
70:	learn: 19.5093277	total: 1.13s	remaining: 461ms
71:	learn: 19.4338071	total: 1.13s	remaining: 440ms
72:	learn: 19.2707086	total: 1.15s	remaining: 424ms
73:	learn: 19.1510682	total: 1.16s	remaining: 408ms
74:	learn: 19.0520532	total: 1.18s	remaining: 393ms
75:	learn: 18.9271995	total: 1.19s	remaining: 377ms
76:	learn: 18.7586533	total: 1.21s	remaining: 361ms
77:	learn: 18.6268295	total: 1.22s	remaining: 345ms
78:	learn: 18.4593718	total: 1.24s	remaining: 330ms
79:	learn: 18.3495111	total: 1.25s	remaining: 314ms
80:	learn: 18.1668682	total: 1.27s	remaining: 298ms
81:	learn: 18.0473656	total: 1.28s	remaining: 282ms
82:	learn: 17.9152235	total: 1.3s	remaining: 266ms
83:	learn: 17.7772315	total: 1.32s	remaining: 252ms
84:	learn: 17.6332015	total: 1.33s	remaining: 236ms
85:	learn: 17.4822347	total: 1.35s	remaining: 220ms
86:	learn: 17.3872902	total: 1.36s	remaining: 204ms
87:	learn: 17.2778946	total: 1.38s	remaining: 188ms
88:	learn: 17.1703989	total: 1.39s	remaining: 172ms
89:	learn: 17.0496215	total: 1.41s	remaining: 156ms
90:	learn: 16.9593050	total: 1.42s	remaining: 141ms
91:	learn: 16.8830202	total: 1.44s	remaining: 125ms
92:	learn: 16.7830199	total: 1.45s	remaining: 109ms
93:	learn: 16.6990055	total: 1.47s	remaining: 93.6ms
94:	learn: 16.5741019	total: 1.48s	remaining: 77.9ms
95:	learn: 16.5101772	total: 1.5s	remaining: 62.3ms
96:	learn: 16.4316254	total: 1.51s	remaining: 46.7ms
97:	learn: 16.3794249	total: 1.53s	remaining: 31.3ms
98:	learn: 16.2513193	total: 1.55s	remaining: 15.7ms
99:	learn: 16.1992106	total: 1.57s	remaining: 0us
0:	learn: 46.3162543	total: 13.7ms	remaining: 1.36s
1:	learn: 45.5942821	total: 28.3ms	remaining: 1.38s
2:	learn: 44.7509166	total: 42.3ms	remaining: 1.37s
3:	learn: 43.9849058	total: 56.1ms	remaining: 1.35s
4:	learn: 43.2164230	total: 70.4ms	remaining: 1.34s
5:	learn: 42.5521164	total: 84.5ms	remaining: 1.32s
6:	learn: 41.8380122	total: 103ms	remaining: 1.36s
7:	learn: 40.9083773	total: 121ms	remaining: 1.4s
8:	learn: 40.2875143	total: 137ms	remaining: 1.38s
9:	learn: 39.6712329	total: 151ms	remaining: 1.36s
10:	learn: 38.8092415	total: 165ms	remaining: 1.34s
11:	learn: 38.3978427	total: 179ms	remaining: 1.31s
12:	learn: 37.8507175	total: 193ms	remaining: 1.29s
13:	learn: 37.2243513	total: 207ms	remaining: 1.27s
14:	learn: 36.7814582	total: 221ms	remaining: 1.25s
15:	learn: 36.1498599	total: 235ms	remaining: 1.23s
16:	learn: 35.5153807	total: 250ms	remaining: 1.22s
17:	learn: 35.0089844	total: 264ms	remaining: 1.2s
18:	learn: 34.6243964	total: 278ms	remaining: 1.18s
19:	learn: 34.0689736	total: 292ms	remaining: 1.17s
20:	learn: 33.7930217	total: 308ms	remaining: 1.16s
21:	learn: 33.4792712	total: 333ms	remaining: 1.18s
22:	learn: 32.9227092	total: 352ms	remaining: 1.18s
23:	learn: 32.4408696	total: 369ms	remaining: 1.17s
24:	learn: 32.0740179	total: 385ms	remaining: 1.15s
25:	learn: 31.7457396	total: 401ms	remaining: 1.14s
26:	learn: 31.4093081	total: 418ms	remaining: 1.13s
27:	learn: 31.2551361	total: 420ms	remaining: 1.08s
28:	learn: 30.8324184	total: 435ms	remaining: 1.06s
29:	learn: 30.3176750	total: 451ms	remaining: 1.05s
30:	learn: 29.8671170	total: 467ms	remaining: 1.04s
31:	learn: 29.6299828	total: 483ms	remaining: 1.02s
32:	learn: 29.3437220	total: 498ms	remaining: 1.01s
33:	learn: 29.0619536	total: 516ms	remaining: 1s
34:	learn: 28.6744910	total: 538ms	remaining: 1000ms
35:	learn: 28.3892321	total: 557ms	remaining: 990ms
36:	learn: 28.0222004	total: 573ms	remaining: 975ms
37:	learn: 27.7752251	total: 588ms	remaining: 960ms
38:	learn: 27.3930700	total: 604ms	remaining: 944ms
39:	learn: 27.1913074	total: 620ms	remaining: 930ms
40:	learn: 26.9505596	total: 636ms	remaining: 915ms
41:	learn: 26.6969689	total: 651ms	remaining: 899ms
42:	learn: 26.3682692	total: 667ms	remaining: 884ms
43:	learn: 26.1956305	total: 682ms	remaining: 869ms
44:	learn: 26.0343386	total: 698ms	remaining: 853ms
45:	learn: 25.7676858	total: 714ms	remaining: 839ms
46:	learn: 25.5282940	total: 731ms	remaining: 824ms
47:	learn: 25.2503007	total: 758ms	remaining: 822ms
48:	learn: 24.9480231	total: 777ms	remaining: 809ms
49:	learn: 24.7368745	total: 793ms	remaining: 793ms
50:	learn: 24.5094298	total: 812ms	remaining: 780ms
51:	learn: 24.3353830	total: 828ms	remaining: 765ms
52:	learn: 24.1469431	total: 845ms	remaining: 750ms
53:	learn: 23.9844905	total: 862ms	remaining: 734ms
54:	learn: 23.7485306	total: 878ms	remaining: 718ms
55:	learn: 23.5090219	total: 894ms	remaining: 702ms
56:	learn: 23.2771748	total: 910ms	remaining: 686ms
57:	learn: 23.1050867	total: 927ms	remaining: 671ms
58:	learn: 22.8768739	total: 944ms	remaining: 656ms
59:	learn: 22.7078012	total: 967ms	remaining: 645ms
60:	learn: 22.4792109	total: 985ms	remaining: 630ms
61:	learn: 22.3022108	total: 1s	remaining: 614ms
62:	learn: 22.1880076	total: 1.02s	remaining: 598ms
63:	learn: 22.0399178	total: 1.03s	remaining: 581ms
64:	learn: 21.8893942	total: 1.05s	remaining: 564ms
65:	learn: 21.7420556	total: 1.06s	remaining: 547ms
66:	learn: 21.5482244	total: 1.08s	remaining: 530ms
67:	learn: 21.3912425	total: 1.09s	remaining: 513ms
68:	learn: 21.2481926	total: 1.1s	remaining: 497ms
69:	learn: 21.0963461	total: 1.12s	remaining: 480ms
70:	learn: 20.8699742	total: 1.13s	remaining: 463ms
71:	learn: 20.7605761	total: 1.15s	remaining: 449ms
72:	learn: 20.6008357	total: 1.17s	remaining: 433ms
73:	learn: 20.4801003	total: 1.19s	remaining: 417ms
74:	learn: 20.3954906	total: 1.2s	remaining: 401ms
75:	learn: 20.3147776	total: 1.22s	remaining: 385ms
76:	learn: 20.1468550	total: 1.23s	remaining: 368ms
77:	learn: 20.0134727	total: 1.25s	remaining: 352ms
78:	learn: 19.8808755	total: 1.26s	remaining: 336ms
79:	learn: 19.7095280	total: 1.28s	remaining: 320ms
80:	learn: 19.5620806	total: 1.29s	remaining: 304ms
81:	learn: 19.4203190	total: 1.31s	remaining: 287ms
82:	learn: 19.2626610	total: 1.32s	remaining: 271ms
83:	learn: 19.1157540	total: 1.34s	remaining: 255ms
84:	learn: 18.9660358	total: 1.35s	remaining: 239ms
85:	learn: 18.8426472	total: 1.37s	remaining: 223ms
86:	learn: 18.7198125	total: 1.39s	remaining: 207ms
87:	learn: 18.6620190	total: 1.4s	remaining: 191ms
88:	learn: 18.5676918	total: 1.42s	remaining: 175ms
89:	learn: 18.4716789	total: 1.43s	remaining: 159ms
90:	learn: 18.3383981	total: 1.45s	remaining: 143ms
91:	learn: 18.2411989	total: 1.46s	remaining: 127ms
92:	learn: 18.1432274	total: 1.48s	remaining: 111ms
93:	learn: 18.0236976	total: 1.49s	remaining: 95.3ms
94:	learn: 17.9086680	total: 1.51s	remaining: 79.3ms
95:	learn: 17.7895525	total: 1.52s	remaining: 63.4ms
96:	learn: 17.6671319	total: 1.53s	remaining: 47.5ms
97:	learn: 17.5472350	total: 1.55s	remaining: 31.6ms
98:	learn: 17.4471055	total: 1.56s	remaining: 15.8ms
99:	learn: 17.3816494	total: 1.58s	remaining: 0us
0:	learn: 46.7483962	total: 15.5ms	remaining: 1.53s
1:	learn: 45.8794520	total: 30.8ms	remaining: 1.51s
2:	learn: 45.0212621	total: 46.9ms	remaining: 1.52s
3:	learn: 44.5335924	total: 61.4ms	remaining: 1.47s
4:	learn: 43.7022321	total: 75.2ms	remaining: 1.43s
5:	learn: 42.9741485	total: 89.4ms	remaining: 1.4s
6:	learn: 42.2971820	total: 104ms	remaining: 1.38s
7:	learn: 41.6447489	total: 117ms	remaining: 1.35s
8:	learn: 41.0245473	total: 131ms	remaining: 1.33s
9:	learn: 40.3474700	total: 146ms	remaining: 1.31s
10:	learn: 39.7225925	total: 161ms	remaining: 1.3s
11:	learn: 39.0504738	total: 179ms	remaining: 1.31s
12:	learn: 38.4951316	total: 197ms	remaining: 1.32s
13:	learn: 37.8390203	total: 213ms	remaining: 1.31s
14:	learn: 37.1200329	total: 228ms	remaining: 1.29s
15:	learn: 36.4946288	total: 243ms	remaining: 1.28s
16:	learn: 35.9883526	total: 259ms	remaining: 1.26s
17:	learn: 35.5201025	total: 274ms	remaining: 1.25s
18:	learn: 35.0282373	total: 289ms	remaining: 1.23s
19:	learn: 34.5162427	total: 305ms	remaining: 1.22s
20:	learn: 34.1131706	total: 321ms	remaining: 1.21s
21:	learn: 33.8394719	total: 336ms	remaining: 1.19s
22:	learn: 33.5633682	total: 352ms	remaining: 1.18s
23:	learn: 33.0379314	total: 369ms	remaining: 1.17s
24:	learn: 32.6612697	total: 391ms	remaining: 1.17s
25:	learn: 32.1774246	total: 411ms	remaining: 1.17s
26:	learn: 31.7521700	total: 427ms	remaining: 1.16s
27:	learn: 31.3498275	total: 443ms	remaining: 1.14s
28:	learn: 31.1136736	total: 460ms	remaining: 1.13s
29:	learn: 30.7777461	total: 476ms	remaining: 1.11s
30:	learn: 30.4642843	total: 492ms	remaining: 1.09s
31:	learn: 30.1668042	total: 508ms	remaining: 1.08s
32:	learn: 29.8085470	total: 524ms	remaining: 1.06s
33:	learn: 29.4927534	total: 539ms	remaining: 1.05s
34:	learn: 29.0694434	total: 548ms	remaining: 1.02s
35:	learn: 28.7629678	total: 563ms	remaining: 1s
36:	learn: 28.5129061	total: 579ms	remaining: 986ms
37:	learn: 28.2839319	total: 594ms	remaining: 969ms
38:	learn: 28.0203884	total: 613ms	remaining: 959ms
39:	learn: 27.6600580	total: 632ms	remaining: 948ms
40:	learn: 27.3916956	total: 650ms	remaining: 935ms
41:	learn: 27.0450079	total: 666ms	remaining: 919ms
42:	learn: 26.7005148	total: 681ms	remaining: 903ms
43:	learn: 26.4598808	total: 697ms	remaining: 887ms
44:	learn: 26.2317818	total: 712ms	remaining: 871ms
45:	learn: 26.0253812	total: 728ms	remaining: 855ms
46:	learn: 25.6330495	total: 743ms	remaining: 838ms
47:	learn: 25.4363221	total: 758ms	remaining: 821ms
48:	learn: 25.2403566	total: 772ms	remaining: 803ms
49:	learn: 24.9718595	total: 786ms	remaining: 786ms
50:	learn: 24.6647928	total: 802ms	remaining: 770ms
51:	learn: 24.4356667	total: 823ms	remaining: 760ms
52:	learn: 24.1807971	total: 841ms	remaining: 746ms
53:	learn: 23.9154663	total: 856ms	remaining: 729ms
54:	learn: 23.7061579	total: 871ms	remaining: 713ms
55:	learn: 23.5499455	total: 887ms	remaining: 697ms
56:	learn: 23.3461224	total: 902ms	remaining: 680ms
57:	learn: 23.1454918	total: 916ms	remaining: 664ms
58:	learn: 22.8907037	total: 932ms	remaining: 647ms
59:	learn: 22.8308646	total: 933ms	remaining: 622ms
60:	learn: 22.6498116	total: 948ms	remaining: 606ms
61:	learn: 22.4538994	total: 962ms	remaining: 590ms
62:	learn: 22.2380003	total: 977ms	remaining: 574ms
63:	learn: 22.0621750	total: 992ms	remaining: 558ms
64:	learn: 21.8829849	total: 1.01s	remaining: 542ms
65:	learn: 21.6934882	total: 1.02s	remaining: 526ms
66:	learn: 21.5402516	total: 1.04s	remaining: 511ms
67:	learn: 21.4434908	total: 1.06s	remaining: 499ms
68:	learn: 21.2688257	total: 1.08s	remaining: 484ms
69:	learn: 21.1860280	total: 1.09s	remaining: 468ms
70:	learn: 21.0612649	total: 1.1s	remaining: 452ms
71:	learn: 20.9340227	total: 1.12s	remaining: 435ms
72:	learn: 20.7977702	total: 1.13s	remaining: 420ms
73:	learn: 20.6621703	total: 1.15s	remaining: 404ms
74:	learn: 20.5169453	total: 1.16s	remaining: 388ms
75:	learn: 20.3798835	total: 1.18s	remaining: 372ms
76:	learn: 20.2354313	total: 1.19s	remaining: 356ms
77:	learn: 20.0892547	total: 1.2s	remaining: 340ms
78:	learn: 19.9631854	total: 1.22s	remaining: 324ms
79:	learn: 19.8241153	total: 1.24s	remaining: 309ms
80:	learn: 19.6584413	total: 1.26s	remaining: 296ms
81:	learn: 19.5480398	total: 1.28s	remaining: 282ms
82:	learn: 19.4611029	total: 1.3s	remaining: 266ms
83:	learn: 19.3556061	total: 1.31s	remaining: 250ms
84:	learn: 19.2350537	total: 1.33s	remaining: 235ms
85:	learn: 19.1125056	total: 1.35s	remaining: 220ms
86:	learn: 18.9716074	total: 1.36s	remaining: 204ms
87:	learn: 18.8130728	total: 1.38s	remaining: 188ms
88:	learn: 18.6516186	total: 1.4s	remaining: 173ms
89:	learn: 18.5730558	total: 1.41s	remaining: 157ms
90:	learn: 18.4692352	total: 1.43s	remaining: 141ms
91:	learn: 18.3881976	total: 1.45s	remaining: 126ms
92:	learn: 18.2953762	total: 1.47s	remaining: 110ms
93:	learn: 18.1773357	total: 1.48s	remaining: 94.8ms
94:	learn: 18.0674272	total: 1.5s	remaining: 79ms
95:	learn: 17.9484567	total: 1.52s	remaining: 63.2ms
96:	learn: 17.8510821	total: 1.53s	remaining: 47.4ms
97:	learn: 17.7881402	total: 1.55s	remaining: 31.6ms
98:	learn: 17.6824501	total: 1.56s	remaining: 15.8ms
99:	learn: 17.6148761	total: 1.58s	remaining: 0us
0:	learn: 27.6506730	total: 4.63ms	remaining: 459ms
1:	learn: 27.1638793	total: 9.43ms	remaining: 462ms
2:	learn: 26.8000665	total: 13.7ms	remaining: 445ms
3:	learn: 26.4256132	total: 18.4ms	remaining: 441ms
4:	learn: 26.0088351	total: 23.2ms	remaining: 441ms
5:	learn: 25.7558298	total: 28.2ms	remaining: 442ms
6:	learn: 25.3380711	total: 33ms	remaining: 439ms
7:	learn: 25.0571611	total: 37.7ms	remaining: 434ms
8:	learn: 24.6790148	total: 42.4ms	remaining: 429ms
9:	learn: 24.3600941	total: 47.3ms	remaining: 426ms
10:	learn: 24.1105667	total: 56ms	remaining: 453ms
11:	learn: 23.7736542	total: 63.8ms	remaining: 468ms
12:	learn: 23.5824429	total: 73.4ms	remaining: 491ms
13:	learn: 23.2658303	total: 80.3ms	remaining: 493ms
14:	learn: 23.0061886	total: 86.1ms	remaining: 488ms
15:	learn: 22.8060389	total: 91.8ms	remaining: 482ms
16:	learn: 22.5899735	total: 97ms	remaining: 474ms
17:	learn: 22.3625048	total: 102ms	remaining: 467ms
18:	learn: 22.0706477	total: 108ms	remaining: 459ms
19:	learn: 21.8739394	total: 113ms	remaining: 452ms
20:	learn: 21.6143650	total: 118ms	remaining: 444ms
21:	learn: 21.4571623	total: 123ms	remaining: 438ms
22:	learn: 21.2395769	total: 129ms	remaining: 432ms
23:	learn: 20.9801795	total: 134ms	remaining: 424ms
24:	learn: 20.8036808	total: 139ms	remaining: 418ms
25:	learn: 20.6387539	total: 145ms	remaining: 413ms
26:	learn: 20.4401427	total: 150ms	remaining: 405ms
27:	learn: 20.2879575	total: 154ms	remaining: 397ms
28:	learn: 20.0538664	total: 159ms	remaining: 389ms
29:	learn: 19.8363102	total: 163ms	remaining: 380ms
30:	learn: 19.7015446	total: 167ms	remaining: 373ms
31:	learn: 19.5483114	total: 172ms	remaining: 365ms
32:	learn: 19.4163053	total: 176ms	remaining: 358ms
33:	learn: 19.2880625	total: 181ms	remaining: 351ms
34:	learn: 19.1303389	total: 185ms	remaining: 344ms
35:	learn: 18.9237448	total: 190ms	remaining: 338ms
36:	learn: 18.8142925	total: 194ms	remaining: 331ms
37:	learn: 18.6994696	total: 199ms	remaining: 324ms
38:	learn: 18.5629211	total: 203ms	remaining: 318ms
39:	learn: 18.4600917	total: 208ms	remaining: 312ms
40:	learn: 18.3567139	total: 212ms	remaining: 306ms
41:	learn: 18.2120527	total: 216ms	remaining: 299ms
42:	learn: 18.0688062	total: 221ms	remaining: 293ms
43:	learn: 17.9250181	total: 225ms	remaining: 287ms
44:	learn: 17.8399138	total: 230ms	remaining: 282ms
45:	learn: 17.6720713	total: 235ms	remaining: 276ms
46:	learn: 17.5273091	total: 240ms	remaining: 270ms
47:	learn: 17.4232814	total: 244ms	remaining: 265ms
48:	learn: 17.2957579	total: 253ms	remaining: 263ms
49:	learn: 17.1892874	total: 260ms	remaining: 260ms
50:	learn: 17.0490355	total: 267ms	remaining: 257ms
51:	learn: 16.9666450	total: 272ms	remaining: 251ms
52:	learn: 16.8600056	total: 279ms	remaining: 247ms
53:	learn: 16.7542588	total: 283ms	remaining: 241ms
54:	learn: 16.6316077	total: 288ms	remaining: 235ms
55:	learn: 16.5588112	total: 292ms	remaining: 229ms
56:	learn: 16.5010186	total: 296ms	remaining: 223ms
57:	learn: 16.4081540	total: 301ms	remaining: 218ms
58:	learn: 16.3040451	total: 305ms	remaining: 212ms
59:	learn: 16.1890564	total: 309ms	remaining: 206ms
60:	learn: 16.0977103	total: 314ms	remaining: 200ms
61:	learn: 15.9627607	total: 318ms	remaining: 195ms
62:	learn: 15.9022248	total: 322ms	remaining: 189ms
63:	learn: 15.8151881	total: 326ms	remaining: 184ms
64:	learn: 15.7353125	total: 331ms	remaining: 178ms
65:	learn: 15.6312897	total: 335ms	remaining: 173ms
66:	learn: 15.5330927	total: 339ms	remaining: 167ms
67:	learn: 15.4698681	total: 344ms	remaining: 162ms
68:	learn: 15.4108571	total: 348ms	remaining: 156ms
69:	learn: 15.3492945	total: 353ms	remaining: 151ms
70:	learn: 15.3036540	total: 357ms	remaining: 146ms
71:	learn: 15.2390833	total: 361ms	remaining: 140ms
72:	learn: 15.1556327	total: 365ms	remaining: 135ms
73:	learn: 15.1016315	total: 369ms	remaining: 130ms
74:	learn: 15.0287076	total: 374ms	remaining: 125ms
75:	learn: 14.9530572	total: 379ms	remaining: 120ms
76:	learn: 14.8965517	total: 383ms	remaining: 114ms
77:	learn: 14.8125426	total: 387ms	remaining: 109ms
78:	learn: 14.7435359	total: 391ms	remaining: 104ms
79:	learn: 14.6963163	total: 395ms	remaining: 98.8ms
80:	learn: 14.6200060	total: 400ms	remaining: 93.7ms
81:	learn: 14.5707760	total: 404ms	remaining: 88.7ms
82:	learn: 14.5053651	total: 409ms	remaining: 83.7ms
83:	learn: 14.4115458	total: 413ms	remaining: 78.7ms
84:	learn: 14.3117159	total: 417ms	remaining: 73.6ms
85:	learn: 14.2511326	total: 422ms	remaining: 68.7ms
86:	learn: 14.1372486	total: 427ms	remaining: 63.8ms
87:	learn: 14.0992301	total: 431ms	remaining: 58.8ms
88:	learn: 14.0228331	total: 436ms	remaining: 53.9ms
89:	learn: 13.9249836	total: 441ms	remaining: 49ms
90:	learn: 13.8679364	total: 446ms	remaining: 44.1ms
91:	learn: 13.8405578	total: 456ms	remaining: 39.6ms
92:	learn: 13.7711325	total: 468ms	remaining: 35.2ms
93:	learn: 13.7357019	total: 475ms	remaining: 30.3ms
94:	learn: 13.6735271	total: 483ms	remaining: 25.4ms
95:	learn: 13.5682393	total: 488ms	remaining: 20.3ms
96:	learn: 13.5342610	total: 494ms	remaining: 15.3ms
97:	learn: 13.4710034	total: 499ms	remaining: 10.2ms
98:	learn: 13.4022402	total: 504ms	remaining: 5.09ms
99:	learn: 13.3351238	total: 509ms	remaining: 0us
0:	learn: 42.9181702	total: 4.63ms	remaining: 459ms
1:	learn: 42.0286736	total: 9.22ms	remaining: 452ms
2:	learn: 41.2764568	total: 13.6ms	remaining: 439ms
3:	learn: 40.4721918	total: 17.5ms	remaining: 420ms
4:	learn: 39.8518928	total: 21.9ms	remaining: 417ms
5:	learn: 39.2645479	total: 26.7ms	remaining: 418ms
6:	learn: 38.4453704	total: 31.2ms	remaining: 415ms
7:	learn: 37.7122059	total: 35.8ms	remaining: 412ms
8:	learn: 36.9185796	total: 40.4ms	remaining: 408ms
9:	learn: 36.1668427	total: 44.9ms	remaining: 404ms
10:	learn: 35.5639029	total: 49.5ms	remaining: 401ms
11:	learn: 34.7724193	total: 54.2ms	remaining: 397ms
12:	learn: 34.3053433	total: 58.9ms	remaining: 394ms
13:	learn: 33.6561327	total: 60.1ms	remaining: 369ms
14:	learn: 33.0134042	total: 64.7ms	remaining: 366ms
15:	learn: 32.4483300	total: 69ms	remaining: 362ms
16:	learn: 31.8581144	total: 73.4ms	remaining: 359ms
17:	learn: 31.2858301	total: 77.7ms	remaining: 354ms
18:	learn: 30.8483018	total: 82.6ms	remaining: 352ms
19:	learn: 30.4174622	total: 87.1ms	remaining: 348ms
20:	learn: 29.8994411	total: 91.6ms	remaining: 344ms
21:	learn: 29.5045355	total: 96.8ms	remaining: 343ms
22:	learn: 28.9923519	total: 105ms	remaining: 352ms
23:	learn: 28.4255717	total: 112ms	remaining: 355ms
24:	learn: 28.0283139	total: 119ms	remaining: 358ms
25:	learn: 27.7434814	total: 124ms	remaining: 354ms
26:	learn: 27.2770731	total: 130ms	remaining: 351ms
27:	learn: 26.8928270	total: 135ms	remaining: 346ms
28:	learn: 26.4282671	total: 139ms	remaining: 341ms
29:	learn: 26.0272764	total: 144ms	remaining: 335ms
30:	learn: 25.7579312	total: 148ms	remaining: 330ms
31:	learn: 25.4542434	total: 153ms	remaining: 324ms
32:	learn: 25.1232564	total: 158ms	remaining: 320ms
33:	learn: 24.8110795	total: 163ms	remaining: 316ms
34:	learn: 24.5077579	total: 168ms	remaining: 311ms
35:	learn: 24.1909000	total: 172ms	remaining: 306ms
36:	learn: 23.8719468	total: 177ms	remaining: 302ms
37:	learn: 23.5764366	total: 178ms	remaining: 291ms
38:	learn: 23.3468086	total: 183ms	remaining: 286ms
39:	learn: 23.0908771	total: 187ms	remaining: 281ms
40:	learn: 22.8580876	total: 192ms	remaining: 277ms
41:	learn: 22.6060825	total: 196ms	remaining: 271ms
42:	learn: 22.4125407	total: 201ms	remaining: 266ms
43:	learn: 22.1990617	total: 205ms	remaining: 261ms
44:	learn: 21.9716164	total: 209ms	remaining: 255ms
45:	learn: 21.8360935	total: 213ms	remaining: 250ms
46:	learn: 21.6169256	total: 218ms	remaining: 245ms
47:	learn: 21.4620612	total: 222ms	remaining: 241ms
48:	learn: 21.2894194	total: 227ms	remaining: 236ms
49:	learn: 21.1066266	total: 231ms	remaining: 231ms
50:	learn: 20.9484898	total: 235ms	remaining: 226ms
51:	learn: 20.7195338	total: 240ms	remaining: 221ms
52:	learn: 20.4899740	total: 244ms	remaining: 217ms
53:	learn: 20.3356583	total: 249ms	remaining: 212ms
54:	learn: 20.0754393	total: 253ms	remaining: 207ms
55:	learn: 19.9199159	total: 257ms	remaining: 202ms
56:	learn: 19.7761128	total: 262ms	remaining: 197ms
57:	learn: 19.6533060	total: 267ms	remaining: 193ms
58:	learn: 19.5113942	total: 271ms	remaining: 188ms
59:	learn: 19.3985022	total: 275ms	remaining: 183ms
60:	learn: 19.2683443	total: 280ms	remaining: 179ms
61:	learn: 19.1460824	total: 284ms	remaining: 174ms
62:	learn: 19.0042655	total: 290ms	remaining: 170ms
63:	learn: 18.8720873	total: 294ms	remaining: 165ms
64:	learn: 18.7183888	total: 299ms	remaining: 161ms
65:	learn: 18.5472360	total: 303ms	remaining: 156ms
66:	learn: 18.3976642	total: 311ms	remaining: 153ms
67:	learn: 18.2282851	total: 320ms	remaining: 151ms
68:	learn: 18.1469157	total: 330ms	remaining: 148ms
69:	learn: 18.0649494	total: 338ms	remaining: 145ms
70:	learn: 17.9485405	total: 344ms	remaining: 140ms
71:	learn: 17.8460261	total: 349ms	remaining: 136ms
72:	learn: 17.7679843	total: 354ms	remaining: 131ms
73:	learn: 17.5989290	total: 360ms	remaining: 126ms
74:	learn: 17.4381322	total: 365ms	remaining: 122ms
75:	learn: 17.3370886	total: 369ms	remaining: 117ms
76:	learn: 17.2675308	total: 375ms	remaining: 112ms
77:	learn: 17.1946430	total: 380ms	remaining: 107ms
78:	learn: 17.0923725	total: 385ms	remaining: 102ms
79:	learn: 17.0537265	total: 390ms	remaining: 97.6ms
80:	learn: 16.9456831	total: 396ms	remaining: 92.9ms
81:	learn: 16.8457353	total: 400ms	remaining: 87.8ms
82:	learn: 16.7469310	total: 404ms	remaining: 82.8ms
83:	learn: 16.6679953	total: 408ms	remaining: 77.8ms
84:	learn: 16.6274189	total: 413ms	remaining: 72.8ms
85:	learn: 16.5516530	total: 417ms	remaining: 67.9ms
86:	learn: 16.4886066	total: 421ms	remaining: 62.9ms
87:	learn: 16.3947859	total: 425ms	remaining: 58ms
88:	learn: 16.3406495	total: 430ms	remaining: 53.1ms
89:	learn: 16.3019195	total: 435ms	remaining: 48.3ms
90:	learn: 16.1860681	total: 439ms	remaining: 43.4ms
91:	learn: 16.1282812	total: 443ms	remaining: 38.5ms
92:	learn: 16.0303652	total: 447ms	remaining: 33.7ms
93:	learn: 15.9561692	total: 452ms	remaining: 28.8ms
94:	learn: 15.8733994	total: 456ms	remaining: 24ms
95:	learn: 15.8108833	total: 460ms	remaining: 19.2ms
96:	learn: 15.7606004	total: 465ms	remaining: 14.4ms
97:	learn: 15.6984664	total: 469ms	remaining: 9.57ms
98:	learn: 15.6223632	total: 473ms	remaining: 4.78ms
99:	learn: 15.5671136	total: 478ms	remaining: 0us
0:	learn: 46.4788614	total: 3.25ms	remaining: 322ms
1:	learn: 45.7608372	total: 10.6ms	remaining: 518ms
2:	learn: 44.8825004	total: 16ms	remaining: 516ms
3:	learn: 44.0362738	total: 21.7ms	remaining: 521ms
4:	learn: 43.2086374	total: 26.5ms	remaining: 504ms
5:	learn: 42.5835773	total: 31ms	remaining: 486ms
6:	learn: 41.9673269	total: 35.5ms	remaining: 472ms
7:	learn: 41.4748717	total: 39.8ms	remaining: 458ms
8:	learn: 40.7129183	total: 44.3ms	remaining: 448ms
9:	learn: 39.8900884	total: 48.8ms	remaining: 439ms
10:	learn: 39.4142193	total: 53ms	remaining: 429ms
11:	learn: 38.8645613	total: 57.4ms	remaining: 421ms
12:	learn: 38.2394731	total: 61.8ms	remaining: 413ms
13:	learn: 37.6834515	total: 66.2ms	remaining: 406ms
14:	learn: 37.0673507	total: 70.5ms	remaining: 400ms
15:	learn: 36.4728340	total: 75.2ms	remaining: 395ms
16:	learn: 36.0489086	total: 79.5ms	remaining: 388ms
17:	learn: 35.4744141	total: 83.8ms	remaining: 382ms
18:	learn: 35.0106021	total: 88.2ms	remaining: 376ms
19:	learn: 34.5586053	total: 92.8ms	remaining: 371ms
20:	learn: 34.1308223	total: 97.8ms	remaining: 368ms
21:	learn: 33.7701450	total: 102ms	remaining: 363ms
22:	learn: 33.4425444	total: 107ms	remaining: 358ms
23:	learn: 33.0296412	total: 112ms	remaining: 355ms
24:	learn: 32.6359803	total: 117ms	remaining: 351ms
25:	learn: 32.1846182	total: 122ms	remaining: 348ms
26:	learn: 31.7620230	total: 126ms	remaining: 342ms
27:	learn: 31.4669337	total: 131ms	remaining: 336ms
28:	learn: 31.0792062	total: 135ms	remaining: 331ms
29:	learn: 30.7970537	total: 139ms	remaining: 325ms
30:	learn: 30.4952215	total: 144ms	remaining: 320ms
31:	learn: 30.2845344	total: 148ms	remaining: 314ms
32:	learn: 29.9592732	total: 153ms	remaining: 310ms
33:	learn: 29.6798596	total: 157ms	remaining: 305ms
34:	learn: 29.3368905	total: 162ms	remaining: 301ms
35:	learn: 29.0621238	total: 167ms	remaining: 297ms
36:	learn: 28.6445375	total: 172ms	remaining: 293ms
37:	learn: 28.2418096	total: 176ms	remaining: 288ms
38:	learn: 27.9495390	total: 181ms	remaining: 284ms
39:	learn: 27.6958160	total: 187ms	remaining: 280ms
40:	learn: 27.4811189	total: 191ms	remaining: 275ms
41:	learn: 27.1494420	total: 201ms	remaining: 278ms
42:	learn: 26.8388873	total: 212ms	remaining: 281ms
43:	learn: 26.5721300	total: 218ms	remaining: 278ms
44:	learn: 26.3384738	total: 226ms	remaining: 276ms
45:	learn: 26.1894781	total: 232ms	remaining: 272ms
46:	learn: 25.9580198	total: 237ms	remaining: 267ms
47:	learn: 25.7897985	total: 242ms	remaining: 263ms
48:	learn: 25.6000271	total: 248ms	remaining: 258ms
49:	learn: 25.4130873	total: 253ms	remaining: 253ms
50:	learn: 25.1699061	total: 259ms	remaining: 249ms
51:	learn: 24.9324449	total: 264ms	remaining: 244ms
52:	learn: 24.7729152	total: 270ms	remaining: 239ms
53:	learn: 24.5026563	total: 275ms	remaining: 234ms
54:	learn: 24.2332627	total: 281ms	remaining: 230ms
55:	learn: 23.9611984	total: 286ms	remaining: 225ms
56:	learn: 23.7862603	total: 291ms	remaining: 219ms
57:	learn: 23.6318154	total: 295ms	remaining: 214ms
58:	learn: 23.4443306	total: 299ms	remaining: 208ms
59:	learn: 23.2581425	total: 304ms	remaining: 203ms
60:	learn: 23.0549901	total: 308ms	remaining: 197ms
61:	learn: 22.8666218	total: 313ms	remaining: 192ms
62:	learn: 22.6956739	total: 317ms	remaining: 186ms
63:	learn: 22.5068544	total: 321ms	remaining: 181ms
64:	learn: 22.1859147	total: 326ms	remaining: 175ms
65:	learn: 22.0462043	total: 330ms	remaining: 170ms
66:	learn: 21.9329563	total: 335ms	remaining: 165ms
67:	learn: 21.8029736	total: 339ms	remaining: 160ms
68:	learn: 21.6861091	total: 344ms	remaining: 154ms
69:	learn: 21.4838140	total: 349ms	remaining: 149ms
70:	learn: 21.3548921	total: 353ms	remaining: 144ms
71:	learn: 21.2244517	total: 358ms	remaining: 139ms
72:	learn: 21.0702958	total: 362ms	remaining: 134ms
73:	learn: 20.9224662	total: 367ms	remaining: 129ms
74:	learn: 20.8150357	total: 372ms	remaining: 124ms
75:	learn: 20.6962739	total: 377ms	remaining: 119ms
76:	learn: 20.5809258	total: 382ms	remaining: 114ms
77:	learn: 20.4735470	total: 387ms	remaining: 109ms
78:	learn: 20.3778167	total: 395ms	remaining: 105ms
79:	learn: 20.2211268	total: 404ms	remaining: 101ms
80:	learn: 20.1478678	total: 412ms	remaining: 96.6ms
81:	learn: 20.1032967	total: 417ms	remaining: 91.6ms
82:	learn: 19.9236300	total: 424ms	remaining: 86.9ms
83:	learn: 19.8151745	total: 429ms	remaining: 81.7ms
84:	learn: 19.7099856	total: 433ms	remaining: 76.5ms
85:	learn: 19.6264833	total: 438ms	remaining: 71.3ms
86:	learn: 19.4916361	total: 456ms	remaining: 68.1ms
87:	learn: 19.4050529	total: 461ms	remaining: 62.8ms
88:	learn: 19.2547065	total: 465ms	remaining: 57.4ms
89:	learn: 19.1610225	total: 470ms	remaining: 52.2ms
90:	learn: 19.0898958	total: 475ms	remaining: 46.9ms
91:	learn: 19.0489664	total: 479ms	remaining: 41.7ms
92:	learn: 18.9206240	total: 484ms	remaining: 36.4ms
93:	learn: 18.8636239	total: 488ms	remaining: 31.1ms
94:	learn: 18.8126187	total: 492ms	remaining: 25.9ms
95:	learn: 18.7579275	total: 497ms	remaining: 20.7ms
96:	learn: 18.6382753	total: 502ms	remaining: 15.5ms
97:	learn: 18.5397334	total: 506ms	remaining: 10.3ms
98:	learn: 18.4375951	total: 511ms	remaining: 5.16ms
99:	learn: 18.4033755	total: 515ms	remaining: 0us
0:	learn: 46.1068821	total: 1.96ms	remaining: 194ms
1:	learn: 45.3970261	total: 6.62ms	remaining: 325ms
2:	learn: 44.8732696	total: 11ms	remaining: 356ms
3:	learn: 44.1290184	total: 16.1ms	remaining: 387ms
4:	learn: 43.3290271	total: 21.6ms	remaining: 411ms
5:	learn: 42.7069090	total: 28.9ms	remaining: 452ms
6:	learn: 42.0572971	total: 35.8ms	remaining: 476ms
7:	learn: 41.4797924	total: 42.7ms	remaining: 491ms
8:	learn: 41.0023122	total: 48.2ms	remaining: 487ms
9:	learn: 40.5330570	total: 54.3ms	remaining: 489ms
10:	learn: 39.9726545	total: 62.4ms	remaining: 505ms
11:	learn: 39.3044053	total: 68ms	remaining: 499ms
12:	learn: 38.8169735	total: 90.5ms	remaining: 605ms
13:	learn: 38.2458761	total: 95.5ms	remaining: 586ms
14:	learn: 37.6280321	total: 101ms	remaining: 571ms
15:	learn: 37.0800610	total: 107ms	remaining: 561ms
16:	learn: 36.5489363	total: 112ms	remaining: 547ms
17:	learn: 36.0981456	total: 117ms	remaining: 534ms
18:	learn: 35.6956274	total: 123ms	remaining: 523ms
19:	learn: 35.1471999	total: 128ms	remaining: 511ms
20:	learn: 34.6235408	total: 133ms	remaining: 500ms
21:	learn: 34.1987018	total: 139ms	remaining: 491ms
22:	learn: 33.8985062	total: 143ms	remaining: 480ms
23:	learn: 33.3869017	total: 148ms	remaining: 469ms
24:	learn: 32.9100550	total: 153ms	remaining: 458ms
25:	learn: 32.4156208	total: 157ms	remaining: 448ms
26:	learn: 31.9320493	total: 162ms	remaining: 438ms
27:	learn: 31.5711468	total: 166ms	remaining: 428ms
28:	learn: 31.2404433	total: 171ms	remaining: 418ms
29:	learn: 30.8807946	total: 175ms	remaining: 409ms
30:	learn: 30.5948438	total: 180ms	remaining: 400ms
31:	learn: 30.3885560	total: 184ms	remaining: 391ms
32:	learn: 30.0625101	total: 188ms	remaining: 382ms
33:	learn: 29.9113114	total: 192ms	remaining: 373ms
34:	learn: 29.6983470	total: 196ms	remaining: 364ms
35:	learn: 29.4775849	total: 200ms	remaining: 356ms
36:	learn: 29.0538055	total: 205ms	remaining: 349ms
37:	learn: 28.6792318	total: 209ms	remaining: 342ms
38:	learn: 28.4231383	total: 214ms	remaining: 334ms
39:	learn: 28.1078565	total: 218ms	remaining: 326ms
40:	learn: 27.9079179	total: 222ms	remaining: 319ms
41:	learn: 27.6721506	total: 227ms	remaining: 313ms
42:	learn: 27.4228033	total: 232ms	remaining: 307ms
43:	learn: 27.1740534	total: 236ms	remaining: 301ms
44:	learn: 26.8584071	total: 241ms	remaining: 294ms
45:	learn: 26.6902083	total: 246ms	remaining: 288ms
46:	learn: 26.4855335	total: 251ms	remaining: 283ms
47:	learn: 26.2730822	total: 259ms	remaining: 280ms
48:	learn: 26.1058689	total: 266ms	remaining: 277ms
49:	learn: 25.8587318	total: 272ms	remaining: 272ms
50:	learn: 25.7558005	total: 278ms	remaining: 267ms
51:	learn: 25.5846925	total: 283ms	remaining: 261ms
52:	learn: 25.4249887	total: 287ms	remaining: 255ms
53:	learn: 25.1911054	total: 291ms	remaining: 248ms
54:	learn: 25.0544755	total: 296ms	remaining: 242ms
55:	learn: 24.8874006	total: 300ms	remaining: 236ms
56:	learn: 24.7736279	total: 304ms	remaining: 230ms
57:	learn: 24.6156255	total: 309ms	remaining: 224ms
58:	learn: 24.3962421	total: 313ms	remaining: 218ms
59:	learn: 24.2685129	total: 317ms	remaining: 212ms
60:	learn: 24.1874096	total: 321ms	remaining: 206ms
61:	learn: 24.0394287	total: 326ms	remaining: 200ms
62:	learn: 23.9281768	total: 330ms	remaining: 194ms
63:	learn: 23.7423900	total: 335ms	remaining: 188ms
64:	learn: 23.6015209	total: 339ms	remaining: 182ms
65:	learn: 23.4677943	total: 343ms	remaining: 177ms
66:	learn: 23.3215256	total: 348ms	remaining: 171ms
67:	learn: 23.1869360	total: 352ms	remaining: 166ms
68:	learn: 22.9691180	total: 356ms	remaining: 160ms
69:	learn: 22.7531657	total: 360ms	remaining: 154ms
70:	learn: 22.6133477	total: 364ms	remaining: 149ms
71:	learn: 22.3452758	total: 368ms	remaining: 143ms
72:	learn: 22.2065350	total: 373ms	remaining: 138ms
73:	learn: 22.1071155	total: 377ms	remaining: 133ms
74:	learn: 21.9740686	total: 382ms	remaining: 127ms
75:	learn: 21.8892033	total: 386ms	remaining: 122ms
76:	learn: 21.8267882	total: 391ms	remaining: 117ms
77:	learn: 21.7423479	total: 396ms	remaining: 112ms
78:	learn: 21.6242075	total: 400ms	remaining: 106ms
79:	learn: 21.5016910	total: 405ms	remaining: 101ms
80:	learn: 21.4806623	total: 406ms	remaining: 95.2ms
81:	learn: 21.3166637	total: 410ms	remaining: 90ms
82:	learn: 21.2222534	total: 414ms	remaining: 84.8ms
83:	learn: 21.1535708	total: 418ms	remaining: 79.6ms
84:	learn: 21.0858902	total: 423ms	remaining: 74.6ms
85:	learn: 20.9206003	total: 428ms	remaining: 69.6ms
86:	learn: 20.8674695	total: 432ms	remaining: 64.6ms
87:	learn: 20.8089875	total: 437ms	remaining: 59.6ms
88:	learn: 20.7085401	total: 442ms	remaining: 54.6ms
89:	learn: 20.5513468	total: 446ms	remaining: 49.5ms
90:	learn: 20.4586742	total: 455ms	remaining: 45ms
91:	learn: 20.3932149	total: 464ms	remaining: 40.3ms
92:	learn: 20.3000895	total: 472ms	remaining: 35.5ms
93:	learn: 20.2254009	total: 479ms	remaining: 30.6ms
94:	learn: 20.1750050	total: 485ms	remaining: 25.5ms
95:	learn: 20.0715579	total: 490ms	remaining: 20.4ms
96:	learn: 19.9920082	total: 495ms	remaining: 15.3ms
97:	learn: 19.9664401	total: 501ms	remaining: 10.2ms
98:	learn: 19.8689673	total: 506ms	remaining: 5.11ms
99:	learn: 19.7537356	total: 511ms	remaining: 0us
0:	learn: 46.8832143	total: 4.56ms	remaining: 451ms
1:	learn: 45.8700349	total: 8.54ms	remaining: 418ms
2:	learn: 45.0546867	total: 12.9ms	remaining: 416ms
3:	learn: 44.2829439	total: 17.1ms	remaining: 410ms
4:	learn: 43.4609042	total: 21.6ms	remaining: 411ms
5:	learn: 42.6754991	total: 25.8ms	remaining: 404ms
6:	learn: 41.9234935	total: 30.4ms	remaining: 403ms
7:	learn: 41.3987518	total: 34.4ms	remaining: 395ms
8:	learn: 40.6625066	total: 38.4ms	remaining: 388ms
9:	learn: 40.0029561	total: 42.5ms	remaining: 383ms
10:	learn: 39.3897033	total: 46.9ms	remaining: 379ms
11:	learn: 38.7741453	total: 51.1ms	remaining: 375ms
12:	learn: 38.1201100	total: 55.5ms	remaining: 372ms
13:	learn: 37.5129454	total: 59.6ms	remaining: 366ms
14:	learn: 37.2062206	total: 63.6ms	remaining: 360ms
15:	learn: 36.6831741	total: 67.9ms	remaining: 356ms
16:	learn: 36.2902788	total: 72.5ms	remaining: 354ms
17:	learn: 35.7639930	total: 77.7ms	remaining: 354ms
18:	learn: 35.2580953	total: 82.6ms	remaining: 352ms
19:	learn: 34.7809739	total: 87.7ms	remaining: 351ms
20:	learn: 34.1330433	total: 92.4ms	remaining: 348ms
21:	learn: 33.7302219	total: 101ms	remaining: 357ms
22:	learn: 33.3502495	total: 108ms	remaining: 362ms
23:	learn: 33.0067804	total: 115ms	remaining: 364ms
24:	learn: 32.6897855	total: 120ms	remaining: 360ms
25:	learn: 32.4361119	total: 126ms	remaining: 359ms
26:	learn: 32.1278981	total: 131ms	remaining: 353ms
27:	learn: 31.7863721	total: 135ms	remaining: 347ms
28:	learn: 31.4791450	total: 139ms	remaining: 340ms
29:	learn: 31.1760161	total: 143ms	remaining: 334ms
30:	learn: 30.9238888	total: 147ms	remaining: 328ms
31:	learn: 30.5500905	total: 152ms	remaining: 322ms
32:	learn: 30.3078126	total: 156ms	remaining: 316ms
33:	learn: 30.0480921	total: 160ms	remaining: 311ms
34:	learn: 29.8623884	total: 165ms	remaining: 306ms
35:	learn: 29.5991038	total: 169ms	remaining: 300ms
36:	learn: 29.4061161	total: 173ms	remaining: 294ms
37:	learn: 29.0269515	total: 177ms	remaining: 289ms
38:	learn: 28.8224959	total: 181ms	remaining: 284ms
39:	learn: 28.6417843	total: 186ms	remaining: 278ms
40:	learn: 28.3633368	total: 190ms	remaining: 273ms
41:	learn: 28.0200246	total: 194ms	remaining: 269ms
42:	learn: 27.7221254	total: 199ms	remaining: 263ms
43:	learn: 27.5105818	total: 203ms	remaining: 258ms
44:	learn: 27.3551010	total: 207ms	remaining: 253ms
45:	learn: 27.0787522	total: 212ms	remaining: 248ms
46:	learn: 26.8726317	total: 216ms	remaining: 243ms
47:	learn: 26.8003277	total: 220ms	remaining: 238ms
48:	learn: 26.5493785	total: 225ms	remaining: 234ms
49:	learn: 26.3699550	total: 229ms	remaining: 229ms
50:	learn: 26.1519631	total: 234ms	remaining: 224ms
51:	learn: 25.9277325	total: 238ms	remaining: 219ms
52:	learn: 25.7286035	total: 242ms	remaining: 214ms
53:	learn: 25.4999193	total: 246ms	remaining: 210ms
54:	learn: 25.3434703	total: 250ms	remaining: 205ms
55:	learn: 25.1497545	total: 255ms	remaining: 200ms
56:	learn: 24.9498143	total: 259ms	remaining: 196ms
57:	learn: 24.6509390	total: 264ms	remaining: 191ms
58:	learn: 24.5576144	total: 268ms	remaining: 186ms
59:	learn: 24.4265144	total: 273ms	remaining: 182ms
60:	learn: 24.3100706	total: 277ms	remaining: 177ms
61:	learn: 24.1727952	total: 282ms	remaining: 173ms
62:	learn: 24.0478558	total: 287ms	remaining: 169ms
63:	learn: 23.9124577	total: 292ms	remaining: 164ms
64:	learn: 23.7703718	total: 299ms	remaining: 161ms
65:	learn: 23.5975027	total: 309ms	remaining: 159ms
66:	learn: 23.4318077	total: 320ms	remaining: 158ms
67:	learn: 23.3099691	total: 327ms	remaining: 154ms
68:	learn: 23.1947982	total: 333ms	remaining: 150ms
69:	learn: 23.0260174	total: 339ms	remaining: 145ms
70:	learn: 22.8523100	total: 345ms	remaining: 141ms
71:	learn: 22.8028534	total: 350ms	remaining: 136ms
72:	learn: 22.6880658	total: 356ms	remaining: 132ms
73:	learn: 22.5956809	total: 361ms	remaining: 127ms
74:	learn: 22.4692932	total: 367ms	remaining: 122ms
75:	learn: 22.2863504	total: 372ms	remaining: 117ms
76:	learn: 22.1911237	total: 377ms	remaining: 113ms
77:	learn: 22.1098391	total: 383ms	remaining: 108ms
78:	learn: 22.0182738	total: 388ms	remaining: 103ms
79:	learn: 21.9306746	total: 392ms	remaining: 98.1ms
80:	learn: 21.7508233	total: 397ms	remaining: 93ms
81:	learn: 21.7108446	total: 401ms	remaining: 88ms
82:	learn: 21.5931852	total: 406ms	remaining: 83.1ms
83:	learn: 21.4480361	total: 410ms	remaining: 78.1ms
84:	learn: 21.3092119	total: 414ms	remaining: 73.1ms
85:	learn: 21.2605557	total: 419ms	remaining: 68.2ms
86:	learn: 21.1123597	total: 424ms	remaining: 63.3ms
87:	learn: 21.0115642	total: 428ms	remaining: 58.4ms
88:	learn: 20.9389040	total: 432ms	remaining: 53.5ms
89:	learn: 20.8300300	total: 437ms	remaining: 48.5ms
90:	learn: 20.7159733	total: 441ms	remaining: 43.6ms
91:	learn: 20.6282090	total: 446ms	remaining: 38.8ms
92:	learn: 20.5164529	total: 450ms	remaining: 33.9ms
93:	learn: 20.4692032	total: 454ms	remaining: 29ms
94:	learn: 20.3768451	total: 459ms	remaining: 24.2ms
95:	learn: 20.2808056	total: 463ms	remaining: 19.3ms
96:	learn: 20.2082089	total: 468ms	remaining: 14.5ms
97:	learn: 20.1698768	total: 473ms	remaining: 9.65ms
98:	learn: 20.1048816	total: 478ms	remaining: 4.83ms
99:	learn: 20.0086159	total: 483ms	remaining: 0us
0:	learn: 27.9323430	total: 1.83ms	remaining: 548ms
1:	learn: 27.7996944	total: 3.52ms	remaining: 525ms
2:	learn: 27.6986405	total: 5.22ms	remaining: 517ms
3:	learn: 27.6038927	total: 6.82ms	remaining: 505ms
4:	learn: 27.4956584	total: 8.64ms	remaining: 510ms
5:	learn: 27.4086855	total: 10.3ms	remaining: 504ms
6:	learn: 27.3208160	total: 11.9ms	remaining: 499ms
7:	learn: 27.2275973	total: 13.5ms	remaining: 494ms
8:	learn: 27.1284047	total: 15.1ms	remaining: 490ms
9:	learn: 27.0627235	total: 16.8ms	remaining: 487ms
10:	learn: 26.9750431	total: 18.7ms	remaining: 491ms
11:	learn: 26.8666041	total: 21.1ms	remaining: 506ms
12:	learn: 26.7572146	total: 23.3ms	remaining: 514ms
13:	learn: 26.6727429	total: 25.6ms	remaining: 523ms
14:	learn: 26.5768868	total: 28ms	remaining: 532ms
15:	learn: 26.4928857	total: 30.4ms	remaining: 539ms
16:	learn: 26.4036029	total: 32.8ms	remaining: 546ms
17:	learn: 26.2879621	total: 35.2ms	remaining: 551ms
18:	learn: 26.1753271	total: 37.6ms	remaining: 556ms
19:	learn: 26.0852786	total: 40ms	remaining: 560ms
20:	learn: 25.9644311	total: 42.4ms	remaining: 563ms
21:	learn: 25.8610400	total: 44.6ms	remaining: 564ms
22:	learn: 25.7679258	total: 46.9ms	remaining: 565ms
23:	learn: 25.6970032	total: 49.3ms	remaining: 567ms
24:	learn: 25.6077936	total: 51.7ms	remaining: 568ms
25:	learn: 25.5225300	total: 54.1ms	remaining: 570ms
26:	learn: 25.4234918	total: 56.6ms	remaining: 572ms
27:	learn: 25.3221482	total: 58.5ms	remaining: 568ms
28:	learn: 25.2290366	total: 60.2ms	remaining: 563ms
29:	learn: 25.1558160	total: 61.8ms	remaining: 556ms
30:	learn: 25.0834761	total: 63.5ms	remaining: 551ms
31:	learn: 25.0214185	total: 65.3ms	remaining: 547ms
32:	learn: 24.9501490	total: 66.9ms	remaining: 541ms
33:	learn: 24.8675468	total: 68.6ms	remaining: 537ms
34:	learn: 24.7926994	total: 70.3ms	remaining: 532ms
35:	learn: 24.7027184	total: 71.8ms	remaining: 527ms
36:	learn: 24.6194981	total: 73.4ms	remaining: 522ms
37:	learn: 24.5407677	total: 75.2ms	remaining: 518ms
38:	learn: 24.4764699	total: 77.1ms	remaining: 516ms
39:	learn: 24.4099387	total: 78.9ms	remaining: 513ms
40:	learn: 24.3491635	total: 80.8ms	remaining: 511ms
41:	learn: 24.2803804	total: 82.6ms	remaining: 508ms
42:	learn: 24.1924527	total: 84.3ms	remaining: 504ms
43:	learn: 24.1125479	total: 86.1ms	remaining: 501ms
44:	learn: 24.0298812	total: 87.9ms	remaining: 498ms
45:	learn: 23.9592447	total: 89.5ms	remaining: 494ms
46:	learn: 23.8946378	total: 91.2ms	remaining: 491ms
47:	learn: 23.8225692	total: 93ms	remaining: 488ms
48:	learn: 23.7493068	total: 94.7ms	remaining: 485ms
49:	learn: 23.6663865	total: 96.3ms	remaining: 481ms
50:	learn: 23.5940698	total: 98ms	remaining: 479ms
51:	learn: 23.5235742	total: 99.7ms	remaining: 476ms
52:	learn: 23.4477077	total: 101ms	remaining: 473ms
53:	learn: 23.3547569	total: 103ms	remaining: 470ms
54:	learn: 23.2614422	total: 105ms	remaining: 466ms
55:	learn: 23.1863372	total: 106ms	remaining: 463ms
56:	learn: 23.1183221	total: 108ms	remaining: 460ms
57:	learn: 23.0528514	total: 110ms	remaining: 458ms
58:	learn: 22.9762881	total: 112ms	remaining: 456ms
59:	learn: 22.8934174	total: 113ms	remaining: 454ms
60:	learn: 22.8127893	total: 115ms	remaining: 450ms
61:	learn: 22.7513564	total: 117ms	remaining: 448ms
62:	learn: 22.6734891	total: 118ms	remaining: 445ms
63:	learn: 22.5979016	total: 120ms	remaining: 442ms
64:	learn: 22.5374644	total: 122ms	remaining: 439ms
65:	learn: 22.4655785	total: 123ms	remaining: 437ms
66:	learn: 22.3980306	total: 125ms	remaining: 434ms
67:	learn: 22.3324001	total: 127ms	remaining: 432ms
68:	learn: 22.2699576	total: 128ms	remaining: 430ms
69:	learn: 22.2132480	total: 130ms	remaining: 428ms
70:	learn: 22.1395041	total: 132ms	remaining: 425ms
71:	learn: 22.0696518	total: 134ms	remaining: 423ms
72:	learn: 22.0171797	total: 135ms	remaining: 421ms
73:	learn: 21.9618774	total: 137ms	remaining: 418ms
74:	learn: 21.9101429	total: 139ms	remaining: 416ms
75:	learn: 21.8568378	total: 141ms	remaining: 415ms
76:	learn: 21.7902130	total: 142ms	remaining: 412ms
77:	learn: 21.7355753	total: 144ms	remaining: 410ms
78:	learn: 21.6958719	total: 146ms	remaining: 408ms
79:	learn: 21.6642739	total: 147ms	remaining: 405ms
80:	learn: 21.6024351	total: 149ms	remaining: 403ms
81:	learn: 21.5395822	total: 151ms	remaining: 401ms
82:	learn: 21.5030903	total: 152ms	remaining: 398ms
83:	learn: 21.4481073	total: 154ms	remaining: 396ms
84:	learn: 21.3893146	total: 156ms	remaining: 394ms
85:	learn: 21.3100125	total: 158ms	remaining: 392ms
86:	learn: 21.2452849	total: 159ms	remaining: 390ms
87:	learn: 21.2021361	total: 161ms	remaining: 388ms
88:	learn: 21.1407475	total: 163ms	remaining: 386ms
89:	learn: 21.0889101	total: 165ms	remaining: 384ms
90:	learn: 21.0335137	total: 166ms	remaining: 382ms
91:	learn: 20.9885491	total: 168ms	remaining: 380ms
92:	learn: 20.9443290	total: 170ms	remaining: 378ms
93:	learn: 20.9052675	total: 172ms	remaining: 376ms
94:	learn: 20.8618608	total: 174ms	remaining: 375ms
95:	learn: 20.8182778	total: 176ms	remaining: 373ms
96:	learn: 20.7741496	total: 177ms	remaining: 371ms
97:	learn: 20.7358992	total: 179ms	remaining: 370ms
98:	learn: 20.6930912	total: 183ms	remaining: 372ms
99:	learn: 20.6647044	total: 186ms	remaining: 373ms
100:	learn: 20.6050100	total: 189ms	remaining: 372ms
101:	learn: 20.5650057	total: 192ms	remaining: 372ms
102:	learn: 20.5231398	total: 196ms	remaining: 375ms
103:	learn: 20.4810223	total: 201ms	remaining: 378ms
104:	learn: 20.4436403	total: 203ms	remaining: 377ms
105:	learn: 20.3924528	total: 206ms	remaining: 377ms
106:	learn: 20.3475115	total: 209ms	remaining: 378ms
107:	learn: 20.3044250	total: 212ms	remaining: 376ms
108:	learn: 20.2597057	total: 214ms	remaining: 375ms
109:	learn: 20.2307207	total: 216ms	remaining: 374ms
110:	learn: 20.1800622	total: 219ms	remaining: 372ms
111:	learn: 20.1437302	total: 221ms	remaining: 370ms
112:	learn: 20.1096989	total: 223ms	remaining: 369ms
113:	learn: 20.0591089	total: 225ms	remaining: 367ms
114:	learn: 20.0077494	total: 227ms	remaining: 365ms
115:	learn: 19.9744886	total: 229ms	remaining: 364ms
116:	learn: 19.9317085	total: 232ms	remaining: 362ms
117:	learn: 19.8836768	total: 234ms	remaining: 361ms
118:	learn: 19.8377026	total: 236ms	remaining: 359ms
119:	learn: 19.7851338	total: 238ms	remaining: 357ms
120:	learn: 19.7228449	total: 240ms	remaining: 355ms
121:	learn: 19.6839240	total: 242ms	remaining: 353ms
122:	learn: 19.6518983	total: 244ms	remaining: 351ms
123:	learn: 19.5958505	total: 246ms	remaining: 349ms
124:	learn: 19.5654603	total: 248ms	remaining: 347ms
125:	learn: 19.5240493	total: 250ms	remaining: 345ms
126:	learn: 19.4930853	total: 252ms	remaining: 343ms
127:	learn: 19.4566867	total: 254ms	remaining: 341ms
128:	learn: 19.4051114	total: 255ms	remaining: 338ms
129:	learn: 19.3604412	total: 257ms	remaining: 336ms
130:	learn: 19.2977345	total: 259ms	remaining: 334ms
131:	learn: 19.2612627	total: 261ms	remaining: 332ms
132:	learn: 19.2143208	total: 263ms	remaining: 331ms
133:	learn: 19.1671559	total: 265ms	remaining: 329ms
134:	learn: 19.1187574	total: 267ms	remaining: 327ms
135:	learn: 19.0774395	total: 269ms	remaining: 325ms
136:	learn: 19.0301046	total: 271ms	remaining: 322ms
137:	learn: 19.0013642	total: 273ms	remaining: 320ms
138:	learn: 18.9689304	total: 274ms	remaining: 318ms
139:	learn: 18.9350396	total: 276ms	remaining: 315ms
140:	learn: 18.9005525	total: 277ms	remaining: 313ms
141:	learn: 18.8711419	total: 279ms	remaining: 311ms
142:	learn: 18.8283000	total: 281ms	remaining: 308ms
143:	learn: 18.8012140	total: 283ms	remaining: 306ms
144:	learn: 18.7590724	total: 284ms	remaining: 304ms
145:	learn: 18.7268041	total: 286ms	remaining: 302ms
146:	learn: 18.7042096	total: 288ms	remaining: 300ms
147:	learn: 18.6571466	total: 290ms	remaining: 297ms
148:	learn: 18.6127378	total: 291ms	remaining: 295ms
149:	learn: 18.5893108	total: 293ms	remaining: 293ms
150:	learn: 18.5579850	total: 294ms	remaining: 291ms
151:	learn: 18.5240885	total: 296ms	remaining: 288ms
152:	learn: 18.4885597	total: 298ms	remaining: 286ms
153:	learn: 18.4622737	total: 299ms	remaining: 284ms
154:	learn: 18.4364457	total: 301ms	remaining: 282ms
155:	learn: 18.4172380	total: 303ms	remaining: 279ms
156:	learn: 18.3823417	total: 304ms	remaining: 277ms
157:	learn: 18.3416644	total: 306ms	remaining: 275ms
158:	learn: 18.3145438	total: 308ms	remaining: 273ms
159:	learn: 18.2974773	total: 309ms	remaining: 271ms
160:	learn: 18.2677798	total: 311ms	remaining: 269ms
161:	learn: 18.2245348	total: 313ms	remaining: 266ms
162:	learn: 18.2059358	total: 314ms	remaining: 264ms
163:	learn: 18.1797810	total: 316ms	remaining: 262ms
164:	learn: 18.1491018	total: 318ms	remaining: 260ms
165:	learn: 18.1157412	total: 320ms	remaining: 258ms
166:	learn: 18.0786122	total: 321ms	remaining: 256ms
167:	learn: 18.0381834	total: 323ms	remaining: 254ms
168:	learn: 18.0079078	total: 325ms	remaining: 252ms
169:	learn: 17.9819965	total: 326ms	remaining: 249ms
170:	learn: 17.9642249	total: 328ms	remaining: 247ms
171:	learn: 17.9450746	total: 330ms	remaining: 245ms
172:	learn: 17.9146175	total: 331ms	remaining: 243ms
173:	learn: 17.8868124	total: 333ms	remaining: 241ms
174:	learn: 17.8573940	total: 334ms	remaining: 239ms
175:	learn: 17.8298267	total: 337ms	remaining: 237ms
176:	learn: 17.7982631	total: 338ms	remaining: 235ms
177:	learn: 17.7738629	total: 340ms	remaining: 233ms
178:	learn: 17.7441747	total: 342ms	remaining: 231ms
179:	learn: 17.7116900	total: 343ms	remaining: 229ms
180:	learn: 17.6824858	total: 345ms	remaining: 227ms
181:	learn: 17.6492945	total: 347ms	remaining: 225ms
182:	learn: 17.6206313	total: 348ms	remaining: 223ms
183:	learn: 17.6014898	total: 350ms	remaining: 221ms
184:	learn: 17.5741939	total: 352ms	remaining: 219ms
185:	learn: 17.5474523	total: 354ms	remaining: 217ms
186:	learn: 17.5206494	total: 356ms	remaining: 215ms
187:	learn: 17.4995490	total: 357ms	remaining: 213ms
188:	learn: 17.4786493	total: 359ms	remaining: 211ms
189:	learn: 17.4417322	total: 361ms	remaining: 209ms
190:	learn: 17.4206479	total: 363ms	remaining: 207ms
191:	learn: 17.3862768	total: 365ms	remaining: 205ms
192:	learn: 17.3518112	total: 367ms	remaining: 203ms
193:	learn: 17.3147438	total: 368ms	remaining: 201ms
194:	learn: 17.2947530	total: 370ms	remaining: 199ms
195:	learn: 17.2608869	total: 372ms	remaining: 197ms
196:	learn: 17.2340364	total: 374ms	remaining: 195ms
197:	learn: 17.2010925	total: 375ms	remaining: 193ms
198:	learn: 17.1600612	total: 377ms	remaining: 192ms
199:	learn: 17.1395893	total: 381ms	remaining: 191ms
200:	learn: 17.1026803	total: 385ms	remaining: 189ms
201:	learn: 17.0788486	total: 387ms	remaining: 188ms
202:	learn: 17.0604450	total: 391ms	remaining: 187ms
203:	learn: 17.0342871	total: 394ms	remaining: 185ms
204:	learn: 17.0140566	total: 396ms	remaining: 184ms
205:	learn: 16.9807440	total: 398ms	remaining: 182ms
206:	learn: 16.9597418	total: 401ms	remaining: 180ms
207:	learn: 16.9345729	total: 403ms	remaining: 178ms
208:	learn: 16.9090899	total: 405ms	remaining: 176ms
209:	learn: 16.8860656	total: 407ms	remaining: 174ms
210:	learn: 16.8574779	total: 408ms	remaining: 172ms
211:	learn: 16.8368769	total: 410ms	remaining: 170ms
212:	learn: 16.8187149	total: 412ms	remaining: 168ms
213:	learn: 16.7841064	total: 414ms	remaining: 166ms
214:	learn: 16.7437581	total: 415ms	remaining: 164ms
215:	learn: 16.7286325	total: 417ms	remaining: 162ms
216:	learn: 16.7037484	total: 419ms	remaining: 160ms
217:	learn: 16.6797434	total: 421ms	remaining: 158ms
218:	learn: 16.6514554	total: 422ms	remaining: 156ms
219:	learn: 16.6171706	total: 424ms	remaining: 154ms
220:	learn: 16.5991738	total: 426ms	remaining: 152ms
221:	learn: 16.5856960	total: 427ms	remaining: 150ms
222:	learn: 16.5535263	total: 429ms	remaining: 148ms
223:	learn: 16.5317953	total: 431ms	remaining: 146ms
224:	learn: 16.5071695	total: 432ms	remaining: 144ms
225:	learn: 16.4843616	total: 434ms	remaining: 142ms
226:	learn: 16.4566621	total: 436ms	remaining: 140ms
227:	learn: 16.4388522	total: 437ms	remaining: 138ms
228:	learn: 16.4118844	total: 439ms	remaining: 136ms
229:	learn: 16.3974193	total: 441ms	remaining: 134ms
230:	learn: 16.3797320	total: 442ms	remaining: 132ms
231:	learn: 16.3646578	total: 444ms	remaining: 130ms
232:	learn: 16.3392690	total: 446ms	remaining: 128ms
233:	learn: 16.3214036	total: 447ms	remaining: 126ms
234:	learn: 16.3012368	total: 449ms	remaining: 124ms
235:	learn: 16.2814160	total: 450ms	remaining: 122ms
236:	learn: 16.2612133	total: 452ms	remaining: 120ms
237:	learn: 16.2513309	total: 454ms	remaining: 118ms
238:	learn: 16.2313409	total: 455ms	remaining: 116ms
239:	learn: 16.2075395	total: 457ms	remaining: 114ms
240:	learn: 16.1801818	total: 459ms	remaining: 112ms
241:	learn: 16.1660439	total: 461ms	remaining: 110ms
242:	learn: 16.1377658	total: 462ms	remaining: 108ms
243:	learn: 16.1176664	total: 464ms	remaining: 106ms
244:	learn: 16.1026008	total: 466ms	remaining: 105ms
245:	learn: 16.0788031	total: 467ms	remaining: 103ms
246:	learn: 16.0571650	total: 469ms	remaining: 101ms
247:	learn: 16.0351082	total: 471ms	remaining: 98.7ms
248:	learn: 16.0107050	total: 472ms	remaining: 96.8ms
249:	learn: 15.9958491	total: 474ms	remaining: 94.8ms
250:	learn: 15.9773129	total: 476ms	remaining: 92.9ms
251:	learn: 15.9629779	total: 477ms	remaining: 90.9ms
252:	learn: 15.9486046	total: 479ms	remaining: 89ms
253:	learn: 15.9275992	total: 481ms	remaining: 87.1ms
254:	learn: 15.9173102	total: 482ms	remaining: 85.1ms
255:	learn: 15.9074741	total: 484ms	remaining: 83.2ms
256:	learn: 15.8905671	total: 486ms	remaining: 81.3ms
257:	learn: 15.8747691	total: 488ms	remaining: 79.4ms
258:	learn: 15.8565875	total: 489ms	remaining: 77.5ms
259:	learn: 15.8474120	total: 491ms	remaining: 75.5ms
260:	learn: 15.8304155	total: 493ms	remaining: 73.7ms
261:	learn: 15.8142603	total: 495ms	remaining: 71.8ms
262:	learn: 15.7976011	total: 497ms	remaining: 69.9ms
263:	learn: 15.7804422	total: 498ms	remaining: 67.9ms
264:	learn: 15.7597390	total: 500ms	remaining: 66ms
265:	learn: 15.7396332	total: 502ms	remaining: 64.1ms
266:	learn: 15.7282514	total: 503ms	remaining: 62.2ms
267:	learn: 15.7102340	total: 505ms	remaining: 60.3ms
268:	learn: 15.6953494	total: 507ms	remaining: 58.4ms
269:	learn: 15.6768758	total: 508ms	remaining: 56.5ms
270:	learn: 15.6504448	total: 510ms	remaining: 54.6ms
271:	learn: 15.6301521	total: 512ms	remaining: 52.7ms
272:	learn: 15.6085025	total: 513ms	remaining: 50.8ms
273:	learn: 15.5877103	total: 515ms	remaining: 48.9ms
274:	learn: 15.5674908	total: 517ms	remaining: 47ms
275:	learn: 15.5554447	total: 518ms	remaining: 45.1ms
276:	learn: 15.5379977	total: 520ms	remaining: 43.2ms
277:	learn: 15.5237618	total: 522ms	remaining: 41.3ms
278:	learn: 15.5090885	total: 523ms	remaining: 39.4ms
279:	learn: 15.4931724	total: 525ms	remaining: 37.5ms
280:	learn: 15.4784161	total: 527ms	remaining: 35.6ms
281:	learn: 15.4559633	total: 528ms	remaining: 33.7ms
282:	learn: 15.4475513	total: 530ms	remaining: 31.8ms
283:	learn: 15.4358914	total: 531ms	remaining: 29.9ms
284:	learn: 15.4191326	total: 533ms	remaining: 28.1ms
285:	learn: 15.4081828	total: 535ms	remaining: 26.2ms
286:	learn: 15.3967039	total: 537ms	remaining: 24.3ms
287:	learn: 15.3856986	total: 539ms	remaining: 22.4ms
288:	learn: 15.3614535	total: 540ms	remaining: 20.6ms
289:	learn: 15.3416739	total: 542ms	remaining: 18.7ms
290:	learn: 15.3236895	total: 543ms	remaining: 16.8ms
291:	learn: 15.3096231	total: 545ms	remaining: 14.9ms
292:	learn: 15.2939080	total: 547ms	remaining: 13.1ms
293:	learn: 15.2820654	total: 549ms	remaining: 11.2ms
294:	learn: 15.2738294	total: 550ms	remaining: 9.33ms
295:	learn: 15.2559871	total: 552ms	remaining: 7.46ms
296:	learn: 15.2310891	total: 554ms	remaining: 5.59ms
297:	learn: 15.2160299	total: 556ms	remaining: 3.73ms
298:	learn: 15.2040634	total: 557ms	remaining: 1.86ms
299:	learn: 15.1930070	total: 559ms	remaining: 0us
0:	learn: 43.7498914	total: 2.54ms	remaining: 758ms
1:	learn: 43.5743161	total: 9.05ms	remaining: 1.35s
2:	learn: 43.3532526	total: 11.1ms	remaining: 1.1s
3:	learn: 43.1298302	total: 12.9ms	remaining: 957ms
4:	learn: 42.9319689	total: 14.9ms	remaining: 881ms
5:	learn: 42.6810375	total: 16.9ms	remaining: 830ms
6:	learn: 42.4672745	total: 19.1ms	remaining: 799ms
7:	learn: 42.1999877	total: 21.2ms	remaining: 773ms
8:	learn: 41.9995808	total: 23.4ms	remaining: 757ms
9:	learn: 41.7914130	total: 25.5ms	remaining: 739ms
10:	learn: 41.6539876	total: 27.5ms	remaining: 722ms
11:	learn: 41.4195720	total: 29.5ms	remaining: 708ms
12:	learn: 41.1867586	total: 31.4ms	remaining: 693ms
13:	learn: 40.9730466	total: 33.1ms	remaining: 677ms
14:	learn: 40.7689817	total: 34.8ms	remaining: 662ms
15:	learn: 40.5678257	total: 36.6ms	remaining: 649ms
16:	learn: 40.3189705	total: 38.3ms	remaining: 638ms
17:	learn: 40.0953231	total: 40.1ms	remaining: 628ms
18:	learn: 39.8511708	total: 41.9ms	remaining: 620ms
19:	learn: 39.6434099	total: 43.7ms	remaining: 612ms
20:	learn: 39.4294234	total: 45.5ms	remaining: 605ms
21:	learn: 39.2400658	total: 47.3ms	remaining: 598ms
22:	learn: 39.0324029	total: 49.2ms	remaining: 593ms
23:	learn: 38.8610342	total: 51.1ms	remaining: 588ms
24:	learn: 38.6320751	total: 52.9ms	remaining: 582ms
25:	learn: 38.4003320	total: 54.8ms	remaining: 577ms
26:	learn: 38.1912653	total: 56.8ms	remaining: 574ms
27:	learn: 38.0037456	total: 59.1ms	remaining: 574ms
28:	learn: 37.8083797	total: 61.2ms	remaining: 571ms
29:	learn: 37.6082643	total: 62.2ms	remaining: 560ms
30:	learn: 37.4313822	total: 64.4ms	remaining: 559ms
31:	learn: 37.2345825	total: 66.2ms	remaining: 555ms
32:	learn: 37.0266015	total: 67.9ms	remaining: 549ms
33:	learn: 36.8179373	total: 69.5ms	remaining: 543ms
34:	learn: 36.6204339	total: 71.1ms	remaining: 539ms
35:	learn: 36.4339377	total: 72.8ms	remaining: 534ms
36:	learn: 36.2725127	total: 74.6ms	remaining: 530ms
37:	learn: 36.0851905	total: 76.4ms	remaining: 527ms
38:	learn: 35.9019021	total: 78ms	remaining: 522ms
39:	learn: 35.7010905	total: 79.6ms	remaining: 518ms
40:	learn: 35.5575893	total: 81.4ms	remaining: 514ms
41:	learn: 35.3754041	total: 83.2ms	remaining: 511ms
42:	learn: 35.1862923	total: 84.9ms	remaining: 507ms
43:	learn: 35.0221680	total: 86.6ms	remaining: 504ms
44:	learn: 34.8618656	total: 88.2ms	remaining: 500ms
45:	learn: 34.7398510	total: 89.9ms	remaining: 496ms
46:	learn: 34.5633346	total: 91.6ms	remaining: 493ms
47:	learn: 34.3728401	total: 93.4ms	remaining: 490ms
48:	learn: 34.2183914	total: 95ms	remaining: 487ms
49:	learn: 34.0454426	total: 96.6ms	remaining: 483ms
50:	learn: 33.9002133	total: 98.3ms	remaining: 480ms
51:	learn: 33.7610827	total: 100ms	remaining: 477ms
52:	learn: 33.6063333	total: 102ms	remaining: 475ms
53:	learn: 33.4317684	total: 104ms	remaining: 472ms
54:	learn: 33.3005990	total: 105ms	remaining: 469ms
55:	learn: 33.1741724	total: 107ms	remaining: 466ms
56:	learn: 33.0031930	total: 109ms	remaining: 464ms
57:	learn: 32.8551951	total: 110ms	remaining: 461ms
58:	learn: 32.7132077	total: 112ms	remaining: 458ms
59:	learn: 32.5549260	total: 114ms	remaining: 455ms
60:	learn: 32.4221067	total: 115ms	remaining: 452ms
61:	learn: 32.2777731	total: 117ms	remaining: 449ms
62:	learn: 32.1174249	total: 119ms	remaining: 446ms
63:	learn: 32.0178737	total: 120ms	remaining: 444ms
64:	learn: 31.9113032	total: 122ms	remaining: 441ms
65:	learn: 31.7911688	total: 124ms	remaining: 439ms
66:	learn: 31.6274835	total: 126ms	remaining: 437ms
67:	learn: 31.4989870	total: 127ms	remaining: 434ms
68:	learn: 31.3970168	total: 129ms	remaining: 432ms
69:	learn: 31.2525305	total: 131ms	remaining: 430ms
70:	learn: 31.1031106	total: 132ms	remaining: 427ms
71:	learn: 30.9572739	total: 134ms	remaining: 425ms
72:	learn: 30.8273454	total: 136ms	remaining: 422ms
73:	learn: 30.7043240	total: 137ms	remaining: 420ms
74:	learn: 30.5927794	total: 139ms	remaining: 418ms
75:	learn: 30.4698433	total: 141ms	remaining: 416ms
76:	learn: 30.3502842	total: 143ms	remaining: 414ms
77:	learn: 30.2032369	total: 145ms	remaining: 413ms
78:	learn: 30.0852144	total: 147ms	remaining: 413ms
79:	learn: 29.9489584	total: 150ms	remaining: 413ms
80:	learn: 29.8343210	total: 153ms	remaining: 413ms
81:	learn: 29.7112728	total: 155ms	remaining: 412ms
82:	learn: 29.5717957	total: 157ms	remaining: 411ms
83:	learn: 29.4309039	total: 160ms	remaining: 412ms
84:	learn: 29.3190932	total: 163ms	remaining: 412ms
85:	learn: 29.2106781	total: 165ms	remaining: 411ms
86:	learn: 29.0826668	total: 168ms	remaining: 411ms
87:	learn: 28.9891691	total: 171ms	remaining: 411ms
88:	learn: 28.8798780	total: 173ms	remaining: 410ms
89:	learn: 28.7777749	total: 175ms	remaining: 409ms
90:	learn: 28.6722304	total: 178ms	remaining: 408ms
91:	learn: 28.5419579	total: 180ms	remaining: 408ms
92:	learn: 28.4108536	total: 183ms	remaining: 407ms
93:	learn: 28.2892767	total: 185ms	remaining: 406ms
94:	learn: 28.1805062	total: 187ms	remaining: 404ms
95:	learn: 28.0561853	total: 189ms	remaining: 402ms
96:	learn: 27.9332435	total: 191ms	remaining: 400ms
97:	learn: 27.8469541	total: 193ms	remaining: 397ms
98:	learn: 27.7320198	total: 195ms	remaining: 395ms
99:	learn: 27.6312960	total: 196ms	remaining: 393ms
100:	learn: 27.5113091	total: 198ms	remaining: 391ms
101:	learn: 27.4100571	total: 200ms	remaining: 389ms
102:	learn: 27.3028790	total: 202ms	remaining: 387ms
103:	learn: 27.2305971	total: 204ms	remaining: 384ms
104:	learn: 27.1470175	total: 206ms	remaining: 382ms
105:	learn: 27.0535873	total: 208ms	remaining: 380ms
106:	learn: 26.9610373	total: 210ms	remaining: 378ms
107:	learn: 26.8458519	total: 211ms	remaining: 376ms
108:	learn: 26.7571113	total: 213ms	remaining: 374ms
109:	learn: 26.6577075	total: 215ms	remaining: 371ms
110:	learn: 26.5592548	total: 217ms	remaining: 369ms
111:	learn: 26.4628631	total: 218ms	remaining: 366ms
112:	learn: 26.3612589	total: 220ms	remaining: 364ms
113:	learn: 26.2700100	total: 222ms	remaining: 362ms
114:	learn: 26.1793907	total: 224ms	remaining: 360ms
115:	learn: 26.0780682	total: 226ms	remaining: 358ms
116:	learn: 25.9778033	total: 228ms	remaining: 356ms
117:	learn: 25.8948453	total: 229ms	remaining: 354ms
118:	learn: 25.8271303	total: 231ms	remaining: 352ms
119:	learn: 25.7211323	total: 233ms	remaining: 350ms
120:	learn: 25.6439899	total: 235ms	remaining: 347ms
121:	learn: 25.5570076	total: 236ms	remaining: 345ms
122:	learn: 25.4938382	total: 238ms	remaining: 343ms
123:	learn: 25.4211629	total: 240ms	remaining: 341ms
124:	learn: 25.3272179	total: 242ms	remaining: 338ms
125:	learn: 25.2507740	total: 244ms	remaining: 336ms
126:	learn: 25.1803595	total: 245ms	remaining: 334ms
127:	learn: 25.0988003	total: 247ms	remaining: 332ms
128:	learn: 25.0327904	total: 249ms	remaining: 330ms
129:	learn: 24.9399721	total: 251ms	remaining: 328ms
130:	learn: 24.8787624	total: 252ms	remaining: 325ms
131:	learn: 24.7906408	total: 254ms	remaining: 323ms
132:	learn: 24.7251282	total: 256ms	remaining: 321ms
133:	learn: 24.6471128	total: 258ms	remaining: 319ms
134:	learn: 24.5758109	total: 259ms	remaining: 317ms
135:	learn: 24.5028801	total: 261ms	remaining: 315ms
136:	learn: 24.4415266	total: 263ms	remaining: 313ms
137:	learn: 24.3859734	total: 265ms	remaining: 311ms
138:	learn: 24.2990679	total: 267ms	remaining: 309ms
139:	learn: 24.2368693	total: 268ms	remaining: 307ms
140:	learn: 24.1673143	total: 270ms	remaining: 305ms
141:	learn: 24.1088675	total: 272ms	remaining: 303ms
142:	learn: 24.0257934	total: 274ms	remaining: 300ms
143:	learn: 23.9611390	total: 275ms	remaining: 298ms
144:	learn: 23.8916223	total: 277ms	remaining: 296ms
145:	learn: 23.8204991	total: 279ms	remaining: 294ms
146:	learn: 23.7282666	total: 281ms	remaining: 292ms
147:	learn: 23.7006172	total: 282ms	remaining: 290ms
148:	learn: 23.6356236	total: 284ms	remaining: 288ms
149:	learn: 23.5748940	total: 286ms	remaining: 286ms
150:	learn: 23.5188124	total: 288ms	remaining: 284ms
151:	learn: 23.4556301	total: 289ms	remaining: 282ms
152:	learn: 23.4052211	total: 291ms	remaining: 280ms
153:	learn: 23.3310524	total: 293ms	remaining: 278ms
154:	learn: 23.2667998	total: 295ms	remaining: 276ms
155:	learn: 23.1908201	total: 297ms	remaining: 274ms
156:	learn: 23.1341093	total: 299ms	remaining: 273ms
157:	learn: 23.0788266	total: 301ms	remaining: 271ms
158:	learn: 23.0347221	total: 303ms	remaining: 269ms
159:	learn: 22.9588657	total: 305ms	remaining: 267ms
160:	learn: 22.8868919	total: 307ms	remaining: 265ms
161:	learn: 22.8412575	total: 309ms	remaining: 263ms
162:	learn: 22.7695481	total: 311ms	remaining: 261ms
163:	learn: 22.7201901	total: 313ms	remaining: 260ms
164:	learn: 22.6785896	total: 315ms	remaining: 258ms
165:	learn: 22.6122990	total: 317ms	remaining: 256ms
166:	learn: 22.5429541	total: 319ms	remaining: 254ms
167:	learn: 22.5045798	total: 320ms	remaining: 252ms
168:	learn: 22.4410984	total: 322ms	remaining: 250ms
169:	learn: 22.3804419	total: 324ms	remaining: 247ms
170:	learn: 22.3280157	total: 325ms	remaining: 245ms
171:	learn: 22.2668663	total: 327ms	remaining: 243ms
172:	learn: 22.2231787	total: 329ms	remaining: 241ms
173:	learn: 22.1570026	total: 330ms	remaining: 239ms
174:	learn: 22.1179129	total: 332ms	remaining: 237ms
175:	learn: 22.0731374	total: 334ms	remaining: 235ms
176:	learn: 22.0142878	total: 336ms	remaining: 234ms
177:	learn: 21.9505386	total: 338ms	remaining: 232ms
178:	learn: 21.9070810	total: 340ms	remaining: 230ms
179:	learn: 21.8490967	total: 342ms	remaining: 228ms
180:	learn: 21.8061606	total: 344ms	remaining: 226ms
181:	learn: 21.7363670	total: 345ms	remaining: 224ms
182:	learn: 21.7009574	total: 347ms	remaining: 222ms
183:	learn: 21.6386253	total: 349ms	remaining: 220ms
184:	learn: 21.5927890	total: 351ms	remaining: 218ms
185:	learn: 21.5507390	total: 353ms	remaining: 216ms
186:	learn: 21.5033957	total: 355ms	remaining: 214ms
187:	learn: 21.4598961	total: 356ms	remaining: 212ms
188:	learn: 21.4115937	total: 361ms	remaining: 212ms
189:	learn: 21.3538000	total: 364ms	remaining: 211ms
190:	learn: 21.3152015	total: 367ms	remaining: 209ms
191:	learn: 21.2879212	total: 371ms	remaining: 209ms
192:	learn: 21.2397972	total: 375ms	remaining: 208ms
193:	learn: 21.1989166	total: 379ms	remaining: 207ms
194:	learn: 21.1482659	total: 381ms	remaining: 205ms
195:	learn: 21.1261094	total: 385ms	remaining: 204ms
196:	learn: 21.0870504	total: 387ms	remaining: 202ms
197:	learn: 21.0465234	total: 389ms	remaining: 200ms
198:	learn: 21.0065293	total: 391ms	remaining: 198ms
199:	learn: 20.9794807	total: 393ms	remaining: 197ms
200:	learn: 20.9440788	total: 395ms	remaining: 195ms
201:	learn: 20.8996659	total: 397ms	remaining: 193ms
202:	learn: 20.8590133	total: 399ms	remaining: 191ms
203:	learn: 20.8302628	total: 401ms	remaining: 189ms
204:	learn: 20.7700361	total: 403ms	remaining: 187ms
205:	learn: 20.7323359	total: 405ms	remaining: 185ms
206:	learn: 20.7089949	total: 407ms	remaining: 183ms
207:	learn: 20.6761067	total: 409ms	remaining: 181ms
208:	learn: 20.6434036	total: 411ms	remaining: 179ms
209:	learn: 20.6101494	total: 413ms	remaining: 177ms
210:	learn: 20.5650465	total: 416ms	remaining: 175ms
211:	learn: 20.5417431	total: 418ms	remaining: 173ms
212:	learn: 20.5069412	total: 420ms	remaining: 171ms
213:	learn: 20.4915657	total: 422ms	remaining: 170ms
214:	learn: 20.4764890	total: 425ms	remaining: 168ms
215:	learn: 20.4447257	total: 427ms	remaining: 166ms
216:	learn: 20.4165748	total: 429ms	remaining: 164ms
217:	learn: 20.3859165	total: 431ms	remaining: 162ms
218:	learn: 20.3465832	total: 433ms	remaining: 160ms
219:	learn: 20.3027042	total: 435ms	remaining: 158ms
220:	learn: 20.2704475	total: 437ms	remaining: 156ms
221:	learn: 20.2510579	total: 439ms	remaining: 154ms
222:	learn: 20.2273368	total: 442ms	remaining: 153ms
223:	learn: 20.1861747	total: 444ms	remaining: 151ms
224:	learn: 20.1741036	total: 446ms	remaining: 149ms
225:	learn: 20.1447729	total: 447ms	remaining: 146ms
226:	learn: 20.1170167	total: 449ms	remaining: 144ms
227:	learn: 20.0807626	total: 451ms	remaining: 142ms
228:	learn: 20.0498810	total: 453ms	remaining: 140ms
229:	learn: 20.0166302	total: 454ms	remaining: 138ms
230:	learn: 20.0066392	total: 456ms	remaining: 136ms
231:	learn: 19.9785860	total: 458ms	remaining: 134ms
232:	learn: 19.9428348	total: 459ms	remaining: 132ms
233:	learn: 19.8937119	total: 461ms	remaining: 130ms
234:	learn: 19.8591015	total: 463ms	remaining: 128ms
235:	learn: 19.8133313	total: 464ms	remaining: 126ms
236:	learn: 19.7983903	total: 466ms	remaining: 124ms
237:	learn: 19.7773239	total: 468ms	remaining: 122ms
238:	learn: 19.7306763	total: 470ms	remaining: 120ms
239:	learn: 19.6932021	total: 471ms	remaining: 118ms
240:	learn: 19.6671271	total: 473ms	remaining: 116ms
241:	learn: 19.6146991	total: 475ms	remaining: 114ms
242:	learn: 19.5795603	total: 476ms	remaining: 112ms
243:	learn: 19.5379976	total: 478ms	remaining: 110ms
244:	learn: 19.5001179	total: 480ms	remaining: 108ms
245:	learn: 19.4728926	total: 481ms	remaining: 106ms
246:	learn: 19.4307296	total: 483ms	remaining: 104ms
247:	learn: 19.3965523	total: 485ms	remaining: 102ms
248:	learn: 19.3725464	total: 486ms	remaining: 99.6ms
249:	learn: 19.3564337	total: 488ms	remaining: 97.6ms
250:	learn: 19.3237215	total: 490ms	remaining: 95.6ms
251:	learn: 19.3061120	total: 492ms	remaining: 93.6ms
252:	learn: 19.2685120	total: 493ms	remaining: 91.6ms
253:	learn: 19.2512961	total: 495ms	remaining: 89.6ms
254:	learn: 19.2370818	total: 497ms	remaining: 87.6ms
255:	learn: 19.2248785	total: 498ms	remaining: 85.7ms
256:	learn: 19.1875521	total: 500ms	remaining: 83.7ms
257:	learn: 19.1538521	total: 502ms	remaining: 81.7ms
258:	learn: 19.1337514	total: 504ms	remaining: 79.7ms
259:	learn: 19.1238816	total: 505ms	remaining: 77.7ms
260:	learn: 19.0884835	total: 507ms	remaining: 75.7ms
261:	learn: 19.0700737	total: 508ms	remaining: 73.7ms
262:	learn: 19.0493298	total: 510ms	remaining: 71.7ms
263:	learn: 19.0170510	total: 512ms	remaining: 69.8ms
264:	learn: 18.9972427	total: 514ms	remaining: 67.8ms
265:	learn: 18.9805132	total: 515ms	remaining: 65.9ms
266:	learn: 18.9668296	total: 517ms	remaining: 64ms
267:	learn: 18.9307588	total: 519ms	remaining: 62ms
268:	learn: 18.8941570	total: 521ms	remaining: 60.1ms
269:	learn: 18.8658383	total: 523ms	remaining: 58.1ms
270:	learn: 18.8353612	total: 525ms	remaining: 56.1ms
271:	learn: 18.8274532	total: 526ms	remaining: 54.2ms
272:	learn: 18.8059719	total: 528ms	remaining: 52.2ms
273:	learn: 18.7590402	total: 530ms	remaining: 50.3ms
274:	learn: 18.7477292	total: 532ms	remaining: 48.3ms
275:	learn: 18.7261118	total: 533ms	remaining: 46.4ms
276:	learn: 18.7012824	total: 535ms	remaining: 44.5ms
277:	learn: 18.6729271	total: 537ms	remaining: 42.5ms
278:	learn: 18.6404915	total: 539ms	remaining: 40.6ms
279:	learn: 18.6287540	total: 541ms	remaining: 38.6ms
280:	learn: 18.6158038	total: 543ms	remaining: 36.7ms
281:	learn: 18.5698347	total: 544ms	remaining: 34.7ms
282:	learn: 18.5578703	total: 546ms	remaining: 32.8ms
283:	learn: 18.5286282	total: 548ms	remaining: 30.9ms
284:	learn: 18.5136172	total: 550ms	remaining: 28.9ms
285:	learn: 18.4945107	total: 552ms	remaining: 27ms
286:	learn: 18.4692908	total: 556ms	remaining: 25.2ms
287:	learn: 18.4608631	total: 559ms	remaining: 23.3ms
288:	learn: 18.4375152	total: 562ms	remaining: 21.4ms
289:	learn: 18.4191938	total: 564ms	remaining: 19.5ms
290:	learn: 18.3855959	total: 567ms	remaining: 17.5ms
291:	learn: 18.3655173	total: 570ms	remaining: 15.6ms
292:	learn: 18.3526062	total: 572ms	remaining: 13.7ms
293:	learn: 18.3268893	total: 574ms	remaining: 11.7ms
294:	learn: 18.2984383	total: 576ms	remaining: 9.76ms
295:	learn: 18.2903040	total: 578ms	remaining: 7.82ms
296:	learn: 18.2641202	total: 580ms	remaining: 5.86ms
297:	learn: 18.2307810	total: 582ms	remaining: 3.91ms
298:	learn: 18.2111964	total: 584ms	remaining: 1.95ms
299:	learn: 18.1920416	total: 586ms	remaining: 0us
0:	learn: 47.2223303	total: 1.92ms	remaining: 574ms
1:	learn: 47.0012450	total: 3.6ms	remaining: 537ms
2:	learn: 46.7902659	total: 5.32ms	remaining: 527ms
3:	learn: 46.6525816	total: 6.95ms	remaining: 514ms
4:	learn: 46.4339641	total: 8.63ms	remaining: 509ms
5:	learn: 46.2778225	total: 10.4ms	remaining: 508ms
6:	learn: 46.0643806	total: 12.1ms	remaining: 507ms
7:	learn: 45.8524408	total: 13.7ms	remaining: 500ms
8:	learn: 45.6292576	total: 15.4ms	remaining: 498ms
9:	learn: 45.4834191	total: 17ms	remaining: 494ms
10:	learn: 45.3051268	total: 18.8ms	remaining: 494ms
11:	learn: 45.0860123	total: 20.5ms	remaining: 493ms
12:	learn: 44.9244264	total: 22.3ms	remaining: 492ms
13:	learn: 44.7899028	total: 23.9ms	remaining: 489ms
14:	learn: 44.5722669	total: 25.5ms	remaining: 484ms
15:	learn: 44.4237842	total: 27.1ms	remaining: 481ms
16:	learn: 44.1884701	total: 28.8ms	remaining: 479ms
17:	learn: 43.9810393	total: 30.3ms	remaining: 475ms
18:	learn: 43.7615133	total: 32ms	remaining: 473ms
19:	learn: 43.6083532	total: 33.7ms	remaining: 471ms
20:	learn: 43.4027025	total: 35.3ms	remaining: 469ms
21:	learn: 43.1644638	total: 37.1ms	remaining: 468ms
22:	learn: 43.0374805	total: 38.8ms	remaining: 467ms
23:	learn: 42.9052784	total: 40.4ms	remaining: 465ms
24:	learn: 42.7752877	total: 42ms	remaining: 462ms
25:	learn: 42.5614346	total: 43.7ms	remaining: 461ms
26:	learn: 42.3835699	total: 45.6ms	remaining: 461ms
27:	learn: 42.2046841	total: 47.4ms	remaining: 460ms
28:	learn: 42.0587862	total: 49ms	remaining: 458ms
29:	learn: 41.8625203	total: 50.8ms	remaining: 457ms
30:	learn: 41.6884007	total: 52.5ms	remaining: 455ms
31:	learn: 41.5750265	total: 54.1ms	remaining: 453ms
32:	learn: 41.4625547	total: 55.8ms	remaining: 451ms
33:	learn: 41.3222654	total: 57.4ms	remaining: 449ms
34:	learn: 41.1920637	total: 59ms	remaining: 447ms
35:	learn: 41.0000509	total: 60.6ms	remaining: 445ms
36:	learn: 40.8354702	total: 62.5ms	remaining: 444ms
37:	learn: 40.7300355	total: 64.3ms	remaining: 443ms
38:	learn: 40.6241530	total: 66.1ms	remaining: 442ms
39:	learn: 40.5223631	total: 67.8ms	remaining: 441ms
40:	learn: 40.3965743	total: 69.6ms	remaining: 440ms
41:	learn: 40.2360082	total: 71.3ms	remaining: 438ms
42:	learn: 40.0637277	total: 73ms	remaining: 436ms
43:	learn: 39.9450923	total: 74.6ms	remaining: 434ms
44:	learn: 39.7948228	total: 76.3ms	remaining: 432ms
45:	learn: 39.6077939	total: 78ms	remaining: 431ms
46:	learn: 39.4925160	total: 80.2ms	remaining: 432ms
47:	learn: 39.3313511	total: 82.1ms	remaining: 431ms
48:	learn: 39.1679908	total: 83.8ms	remaining: 429ms
49:	learn: 39.0608626	total: 85.4ms	remaining: 427ms
50:	learn: 38.8594240	total: 87.2ms	remaining: 426ms
51:	learn: 38.6971572	total: 88.9ms	remaining: 424ms
52:	learn: 38.5462676	total: 90.7ms	remaining: 423ms
53:	learn: 38.3856244	total: 92.3ms	remaining: 420ms
54:	learn: 38.2480817	total: 93.9ms	remaining: 418ms
55:	learn: 38.1603701	total: 95.6ms	remaining: 417ms
56:	learn: 38.0318828	total: 97.5ms	remaining: 416ms
57:	learn: 37.8931939	total: 99.4ms	remaining: 415ms
58:	learn: 37.7602911	total: 102ms	remaining: 415ms
59:	learn: 37.6470644	total: 103ms	remaining: 414ms
60:	learn: 37.5204654	total: 105ms	remaining: 412ms
61:	learn: 37.3674965	total: 107ms	remaining: 411ms
62:	learn: 37.2833721	total: 109ms	remaining: 409ms
63:	learn: 37.1448751	total: 111ms	remaining: 408ms
64:	learn: 36.9854829	total: 112ms	remaining: 406ms
65:	learn: 36.8300761	total: 114ms	remaining: 405ms
66:	learn: 36.6929925	total: 116ms	remaining: 404ms
67:	learn: 36.5980491	total: 118ms	remaining: 402ms
68:	learn: 36.5129121	total: 120ms	remaining: 400ms
69:	learn: 36.3679545	total: 122ms	remaining: 400ms
70:	learn: 36.2177877	total: 126ms	remaining: 405ms
71:	learn: 36.1284249	total: 128ms	remaining: 407ms
72:	learn: 36.0006972	total: 131ms	remaining: 409ms
73:	learn: 35.8662383	total: 135ms	remaining: 413ms
74:	learn: 35.7550765	total: 140ms	remaining: 420ms
75:	learn: 35.6182362	total: 144ms	remaining: 423ms
76:	learn: 35.5269148	total: 146ms	remaining: 422ms
77:	learn: 35.4173631	total: 149ms	remaining: 425ms
78:	learn: 35.3151275	total: 152ms	remaining: 425ms
79:	learn: 35.1857990	total: 154ms	remaining: 423ms
80:	learn: 35.0761114	total: 156ms	remaining: 422ms
81:	learn: 34.9093171	total: 158ms	remaining: 420ms
82:	learn: 34.7653830	total: 160ms	remaining: 418ms
83:	learn: 34.6684928	total: 162ms	remaining: 417ms
84:	learn: 34.5433206	total: 164ms	remaining: 415ms
85:	learn: 34.4014290	total: 166ms	remaining: 413ms
86:	learn: 34.2658102	total: 168ms	remaining: 412ms
87:	learn: 34.1958424	total: 170ms	remaining: 410ms
88:	learn: 34.0738447	total: 172ms	remaining: 408ms
89:	learn: 33.9410395	total: 174ms	remaining: 407ms
90:	learn: 33.8118799	total: 177ms	remaining: 406ms
91:	learn: 33.7074790	total: 179ms	remaining: 404ms
92:	learn: 33.5786248	total: 181ms	remaining: 403ms
93:	learn: 33.5227692	total: 183ms	remaining: 401ms
94:	learn: 33.4029223	total: 185ms	remaining: 399ms
95:	learn: 33.3048722	total: 187ms	remaining: 397ms
96:	learn: 33.1884679	total: 189ms	remaining: 395ms
97:	learn: 33.1174014	total: 190ms	remaining: 392ms
98:	learn: 33.0069224	total: 192ms	remaining: 390ms
99:	learn: 32.9046646	total: 194ms	remaining: 388ms
100:	learn: 32.7946974	total: 196ms	remaining: 385ms
101:	learn: 32.6578038	total: 197ms	remaining: 383ms
102:	learn: 32.5634864	total: 199ms	remaining: 381ms
103:	learn: 32.4620919	total: 201ms	remaining: 380ms
104:	learn: 32.3801995	total: 204ms	remaining: 379ms
105:	learn: 32.2900031	total: 207ms	remaining: 378ms
106:	learn: 32.2281158	total: 209ms	remaining: 377ms
107:	learn: 32.1409170	total: 211ms	remaining: 375ms
108:	learn: 32.0603318	total: 212ms	remaining: 372ms
109:	learn: 32.0220925	total: 214ms	remaining: 370ms
110:	learn: 31.9252873	total: 216ms	remaining: 368ms
111:	learn: 31.8179420	total: 218ms	remaining: 365ms
112:	learn: 31.7764281	total: 219ms	remaining: 363ms
113:	learn: 31.6711444	total: 221ms	remaining: 361ms
114:	learn: 31.6130960	total: 223ms	remaining: 358ms
115:	learn: 31.5406778	total: 224ms	remaining: 356ms
116:	learn: 31.4243038	total: 226ms	remaining: 353ms
117:	learn: 31.3073581	total: 228ms	remaining: 351ms
118:	learn: 31.2286920	total: 229ms	remaining: 349ms
119:	learn: 31.1662999	total: 231ms	remaining: 347ms
120:	learn: 31.0767949	total: 233ms	remaining: 345ms
121:	learn: 30.9848147	total: 235ms	remaining: 342ms
122:	learn: 30.9168386	total: 236ms	remaining: 340ms
123:	learn: 30.8335426	total: 238ms	remaining: 338ms
124:	learn: 30.7845778	total: 239ms	remaining: 335ms
125:	learn: 30.6961948	total: 241ms	remaining: 333ms
126:	learn: 30.6318978	total: 243ms	remaining: 331ms
127:	learn: 30.5365462	total: 244ms	remaining: 328ms
128:	learn: 30.4473322	total: 246ms	remaining: 326ms
129:	learn: 30.3488215	total: 248ms	remaining: 324ms
130:	learn: 30.2516670	total: 249ms	remaining: 322ms
131:	learn: 30.1824873	total: 251ms	remaining: 320ms
132:	learn: 30.1407551	total: 253ms	remaining: 318ms
133:	learn: 30.0842716	total: 255ms	remaining: 315ms
134:	learn: 30.0453812	total: 256ms	remaining: 313ms
135:	learn: 29.9056675	total: 258ms	remaining: 311ms
136:	learn: 29.8562344	total: 259ms	remaining: 309ms
137:	learn: 29.7800438	total: 261ms	remaining: 307ms
138:	learn: 29.6893267	total: 263ms	remaining: 305ms
139:	learn: 29.6519883	total: 265ms	remaining: 302ms
140:	learn: 29.5933039	total: 267ms	remaining: 301ms
141:	learn: 29.5319814	total: 268ms	remaining: 299ms
142:	learn: 29.4478987	total: 270ms	remaining: 296ms
143:	learn: 29.3781781	total: 272ms	remaining: 294ms
144:	learn: 29.3156644	total: 273ms	remaining: 292ms
145:	learn: 29.2451972	total: 275ms	remaining: 290ms
146:	learn: 29.1340679	total: 277ms	remaining: 288ms
147:	learn: 29.0829388	total: 278ms	remaining: 286ms
148:	learn: 29.0075584	total: 280ms	remaining: 284ms
149:	learn: 28.9538516	total: 282ms	remaining: 282ms
150:	learn: 28.8841092	total: 283ms	remaining: 280ms
151:	learn: 28.7866514	total: 285ms	remaining: 278ms
152:	learn: 28.7050862	total: 287ms	remaining: 276ms
153:	learn: 28.6337898	total: 289ms	remaining: 274ms
154:	learn: 28.5928684	total: 290ms	remaining: 272ms
155:	learn: 28.5309727	total: 292ms	remaining: 270ms
156:	learn: 28.4893902	total: 294ms	remaining: 268ms
157:	learn: 28.4067126	total: 296ms	remaining: 266ms
158:	learn: 28.3512868	total: 298ms	remaining: 264ms
159:	learn: 28.2822639	total: 299ms	remaining: 262ms
160:	learn: 28.1903447	total: 301ms	remaining: 260ms
161:	learn: 28.1061944	total: 303ms	remaining: 258ms
162:	learn: 28.0590331	total: 305ms	remaining: 256ms
163:	learn: 27.9911252	total: 307ms	remaining: 255ms
164:	learn: 27.9445189	total: 309ms	remaining: 253ms
165:	learn: 27.8789384	total: 311ms	remaining: 251ms
166:	learn: 27.8444192	total: 313ms	remaining: 249ms
167:	learn: 27.7708732	total: 315ms	remaining: 247ms
168:	learn: 27.7247816	total: 318ms	remaining: 246ms
169:	learn: 27.6658306	total: 321ms	remaining: 246ms
170:	learn: 27.5914257	total: 324ms	remaining: 245ms
171:	learn: 27.5674108	total: 327ms	remaining: 243ms
172:	learn: 27.4976481	total: 330ms	remaining: 242ms
173:	learn: 27.4323842	total: 332ms	remaining: 241ms
174:	learn: 27.3827045	total: 335ms	remaining: 239ms
175:	learn: 27.3073099	total: 338ms	remaining: 238ms
176:	learn: 27.2425594	total: 339ms	remaining: 236ms
177:	learn: 27.1848653	total: 341ms	remaining: 234ms
178:	learn: 27.1081049	total: 344ms	remaining: 232ms
179:	learn: 27.0387445	total: 346ms	remaining: 231ms
180:	learn: 26.9210144	total: 347ms	remaining: 228ms
181:	learn: 26.8593297	total: 349ms	remaining: 226ms
182:	learn: 26.8114278	total: 351ms	remaining: 224ms
183:	learn: 26.7506449	total: 353ms	remaining: 222ms
184:	learn: 26.6976297	total: 354ms	remaining: 220ms
185:	learn: 26.6697229	total: 356ms	remaining: 218ms
186:	learn: 26.6016064	total: 358ms	remaining: 216ms
187:	learn: 26.5626343	total: 359ms	remaining: 214ms
188:	learn: 26.5317809	total: 361ms	remaining: 212ms
189:	learn: 26.4716674	total: 363ms	remaining: 210ms
190:	learn: 26.4207132	total: 364ms	remaining: 208ms
191:	learn: 26.3463564	total: 366ms	remaining: 206ms
192:	learn: 26.2699392	total: 368ms	remaining: 204ms
193:	learn: 26.2216394	total: 370ms	remaining: 202ms
194:	learn: 26.1542065	total: 371ms	remaining: 200ms
195:	learn: 26.1091427	total: 373ms	remaining: 198ms
196:	learn: 26.0497565	total: 375ms	remaining: 196ms
197:	learn: 26.0061280	total: 376ms	remaining: 194ms
198:	learn: 25.9378688	total: 378ms	remaining: 192ms
199:	learn: 25.9133859	total: 380ms	remaining: 190ms
200:	learn: 25.8417997	total: 382ms	remaining: 188ms
201:	learn: 25.7367859	total: 383ms	remaining: 186ms
202:	learn: 25.7066067	total: 385ms	remaining: 184ms
203:	learn: 25.6583951	total: 387ms	remaining: 182ms
204:	learn: 25.5769220	total: 388ms	remaining: 180ms
205:	learn: 25.4873171	total: 390ms	remaining: 178ms
206:	learn: 25.4369613	total: 392ms	remaining: 176ms
207:	learn: 25.3880595	total: 393ms	remaining: 174ms
208:	learn: 25.3358394	total: 395ms	remaining: 172ms
209:	learn: 25.3075209	total: 397ms	remaining: 170ms
210:	learn: 25.2772773	total: 398ms	remaining: 168ms
211:	learn: 25.2105870	total: 400ms	remaining: 166ms
212:	learn: 25.1342999	total: 402ms	remaining: 164ms
213:	learn: 25.0713395	total: 404ms	remaining: 162ms
214:	learn: 25.0320379	total: 405ms	remaining: 160ms
215:	learn: 24.9622500	total: 407ms	remaining: 158ms
216:	learn: 24.9199382	total: 409ms	remaining: 156ms
217:	learn: 24.8688670	total: 411ms	remaining: 154ms
218:	learn: 24.8211525	total: 412ms	remaining: 153ms
219:	learn: 24.7578300	total: 414ms	remaining: 151ms
220:	learn: 24.7309943	total: 416ms	remaining: 149ms
221:	learn: 24.7109299	total: 418ms	remaining: 147ms
222:	learn: 24.6447364	total: 419ms	remaining: 145ms
223:	learn: 24.5975071	total: 421ms	remaining: 143ms
224:	learn: 24.5428251	total: 423ms	remaining: 141ms
225:	learn: 24.5160218	total: 425ms	remaining: 139ms
226:	learn: 24.4506317	total: 426ms	remaining: 137ms
227:	learn: 24.4214121	total: 428ms	remaining: 135ms
228:	learn: 24.3745490	total: 429ms	remaining: 133ms
229:	learn: 24.3115589	total: 431ms	remaining: 131ms
230:	learn: 24.2576173	total: 433ms	remaining: 129ms
231:	learn: 24.2147187	total: 434ms	remaining: 127ms
232:	learn: 24.1794147	total: 436ms	remaining: 125ms
233:	learn: 24.1266786	total: 438ms	remaining: 124ms
234:	learn: 24.0804986	total: 440ms	remaining: 122ms
235:	learn: 24.0305450	total: 442ms	remaining: 120ms
236:	learn: 23.9862710	total: 443ms	remaining: 118ms
237:	learn: 23.9475906	total: 445ms	remaining: 116ms
238:	learn: 23.9106790	total: 447ms	remaining: 114ms
239:	learn: 23.8496178	total: 448ms	remaining: 112ms
240:	learn: 23.8300036	total: 450ms	remaining: 110ms
241:	learn: 23.7700921	total: 452ms	remaining: 108ms
242:	learn: 23.7514159	total: 454ms	remaining: 106ms
243:	learn: 23.7130162	total: 455ms	remaining: 105ms
244:	learn: 23.6912246	total: 457ms	remaining: 103ms
245:	learn: 23.6445985	total: 459ms	remaining: 101ms
246:	learn: 23.6160278	total: 461ms	remaining: 98.8ms
247:	learn: 23.5538477	total: 462ms	remaining: 96.9ms
248:	learn: 23.5045377	total: 464ms	remaining: 95ms
249:	learn: 23.4785220	total: 466ms	remaining: 93.1ms
250:	learn: 23.4354616	total: 467ms	remaining: 91.2ms
251:	learn: 23.3736592	total: 469ms	remaining: 89.3ms
252:	learn: 23.3232991	total: 471ms	remaining: 87.5ms
253:	learn: 23.3066182	total: 473ms	remaining: 85.6ms
254:	learn: 23.2785320	total: 474ms	remaining: 83.7ms
255:	learn: 23.2478441	total: 476ms	remaining: 81.8ms
256:	learn: 23.2041791	total: 478ms	remaining: 79.9ms
257:	learn: 23.1853184	total: 479ms	remaining: 78ms
258:	learn: 23.1242501	total: 481ms	remaining: 76.2ms
259:	learn: 23.1063176	total: 483ms	remaining: 74.3ms
260:	learn: 23.0744755	total: 484ms	remaining: 72.4ms
261:	learn: 23.0276198	total: 486ms	remaining: 70.5ms
262:	learn: 23.0003213	total: 488ms	remaining: 68.7ms
263:	learn: 22.9571747	total: 490ms	remaining: 66.8ms
264:	learn: 22.9403656	total: 492ms	remaining: 64.9ms
265:	learn: 22.9078376	total: 493ms	remaining: 63.1ms
266:	learn: 22.8937476	total: 495ms	remaining: 61.2ms
267:	learn: 22.8770947	total: 497ms	remaining: 59.4ms
268:	learn: 22.8569677	total: 499ms	remaining: 57.5ms
269:	learn: 22.8395432	total: 502ms	remaining: 55.8ms
270:	learn: 22.8183584	total: 505ms	remaining: 54ms
271:	learn: 22.7737614	total: 508ms	remaining: 52.3ms
272:	learn: 22.7307578	total: 511ms	remaining: 50.6ms
273:	learn: 22.7013944	total: 515ms	remaining: 48.9ms
274:	learn: 22.6726739	total: 519ms	remaining: 47.2ms
275:	learn: 22.6536608	total: 523ms	remaining: 45.5ms
276:	learn: 22.6028710	total: 525ms	remaining: 43.6ms
277:	learn: 22.5452835	total: 530ms	remaining: 41.9ms
278:	learn: 22.5071253	total: 533ms	remaining: 40.1ms
279:	learn: 22.4871356	total: 535ms	remaining: 38.2ms
280:	learn: 22.4592523	total: 537ms	remaining: 36.3ms
281:	learn: 22.4162232	total: 539ms	remaining: 34.4ms
282:	learn: 22.3638485	total: 541ms	remaining: 32.5ms
283:	learn: 22.3197880	total: 544ms	remaining: 30.6ms
284:	learn: 22.3036913	total: 546ms	remaining: 28.7ms
285:	learn: 22.2740687	total: 548ms	remaining: 26.8ms
286:	learn: 22.2547318	total: 551ms	remaining: 24.9ms
287:	learn: 22.2270474	total: 553ms	remaining: 23ms
288:	learn: 22.1922834	total: 555ms	remaining: 21.1ms
289:	learn: 22.1719978	total: 557ms	remaining: 19.2ms
290:	learn: 22.1457516	total: 559ms	remaining: 17.3ms
291:	learn: 22.1129213	total: 561ms	remaining: 15.4ms
292:	learn: 22.0701540	total: 563ms	remaining: 13.5ms
293:	learn: 22.0494017	total: 565ms	remaining: 11.5ms
294:	learn: 22.0019180	total: 578ms	remaining: 9.8ms
295:	learn: 21.9718082	total: 581ms	remaining: 7.85ms
296:	learn: 21.9326253	total: 583ms	remaining: 5.89ms
297:	learn: 21.9010347	total: 586ms	remaining: 3.93ms
298:	learn: 21.8630511	total: 587ms	remaining: 1.96ms
299:	learn: 21.8498785	total: 589ms	remaining: 0us
0:	learn: 46.8022812	total: 1.97ms	remaining: 590ms
1:	learn: 46.6654641	total: 3.8ms	remaining: 566ms
2:	learn: 46.4740664	total: 5.6ms	remaining: 555ms
3:	learn: 46.2992338	total: 7.35ms	remaining: 544ms
4:	learn: 46.0891706	total: 9.16ms	remaining: 541ms
5:	learn: 45.8814494	total: 11ms	remaining: 541ms
6:	learn: 45.7440096	total: 12.8ms	remaining: 534ms
7:	learn: 45.5142389	total: 14.9ms	remaining: 542ms
8:	learn: 45.3726763	total: 16.8ms	remaining: 545ms
9:	learn: 45.2161478	total: 18.6ms	remaining: 539ms
10:	learn: 44.9916539	total: 20.4ms	remaining: 535ms
11:	learn: 44.7835000	total: 22.1ms	remaining: 531ms
12:	learn: 44.6134174	total: 23.8ms	remaining: 525ms
13:	learn: 44.5007355	total: 25.6ms	remaining: 524ms
14:	learn: 44.3191784	total: 27.6ms	remaining: 524ms
15:	learn: 44.1243444	total: 29.4ms	remaining: 522ms
16:	learn: 43.9007423	total: 31.4ms	remaining: 523ms
17:	learn: 43.7015567	total: 33.5ms	remaining: 525ms
18:	learn: 43.4924581	total: 35.6ms	remaining: 527ms
19:	learn: 43.3200127	total: 37.6ms	remaining: 527ms
20:	learn: 43.1148527	total: 39.6ms	remaining: 526ms
21:	learn: 42.9081654	total: 41.6ms	remaining: 525ms
22:	learn: 42.7881111	total: 43.5ms	remaining: 524ms
23:	learn: 42.6089468	total: 45.5ms	remaining: 523ms
24:	learn: 42.4512711	total: 47.5ms	remaining: 522ms
25:	learn: 42.2596523	total: 49.4ms	remaining: 520ms
26:	learn: 42.0704067	total: 51.3ms	remaining: 519ms
27:	learn: 41.9683928	total: 53ms	remaining: 515ms
28:	learn: 41.8315908	total: 54.7ms	remaining: 511ms
29:	learn: 41.6531400	total: 56.9ms	remaining: 512ms
30:	learn: 41.5075024	total: 61.1ms	remaining: 530ms
31:	learn: 41.3723894	total: 64ms	remaining: 536ms
32:	learn: 41.2059622	total: 66.8ms	remaining: 540ms
33:	learn: 41.0733830	total: 69.4ms	remaining: 543ms
34:	learn: 40.9541471	total: 72ms	remaining: 545ms
35:	learn: 40.8004732	total: 74.6ms	remaining: 547ms
36:	learn: 40.6348730	total: 77.3ms	remaining: 549ms
37:	learn: 40.4621902	total: 79.3ms	remaining: 547ms
38:	learn: 40.2989558	total: 81.3ms	remaining: 544ms
39:	learn: 40.1934780	total: 83.8ms	remaining: 545ms
40:	learn: 39.9912000	total: 85.8ms	remaining: 542ms
41:	learn: 39.8534734	total: 87.7ms	remaining: 538ms
42:	learn: 39.6853720	total: 89.3ms	remaining: 534ms
43:	learn: 39.5288445	total: 90.9ms	remaining: 529ms
44:	learn: 39.3905742	total: 92.5ms	remaining: 524ms
45:	learn: 39.2349558	total: 94.2ms	remaining: 520ms
46:	learn: 39.0971455	total: 95.9ms	remaining: 516ms
47:	learn: 39.0024650	total: 97.6ms	remaining: 512ms
48:	learn: 38.8486854	total: 99.3ms	remaining: 509ms
49:	learn: 38.6933441	total: 101ms	remaining: 505ms
50:	learn: 38.5256373	total: 103ms	remaining: 502ms
51:	learn: 38.3757709	total: 104ms	remaining: 497ms
52:	learn: 38.2345101	total: 106ms	remaining: 494ms
53:	learn: 38.0805297	total: 108ms	remaining: 490ms
54:	learn: 37.9683931	total: 109ms	remaining: 486ms
55:	learn: 37.8613152	total: 111ms	remaining: 483ms
56:	learn: 37.7276368	total: 113ms	remaining: 480ms
57:	learn: 37.6357292	total: 114ms	remaining: 476ms
58:	learn: 37.4965166	total: 116ms	remaining: 473ms
59:	learn: 37.3775088	total: 117ms	remaining: 469ms
60:	learn: 37.2694079	total: 119ms	remaining: 466ms
61:	learn: 37.1266739	total: 121ms	remaining: 463ms
62:	learn: 37.0108994	total: 122ms	remaining: 460ms
63:	learn: 36.9132899	total: 124ms	remaining: 457ms
64:	learn: 36.7686870	total: 126ms	remaining: 454ms
65:	learn: 36.6507898	total: 127ms	remaining: 451ms
66:	learn: 36.5145585	total: 129ms	remaining: 449ms
67:	learn: 36.4273308	total: 131ms	remaining: 446ms
68:	learn: 36.3346139	total: 132ms	remaining: 443ms
69:	learn: 36.2665704	total: 134ms	remaining: 440ms
70:	learn: 36.1558457	total: 136ms	remaining: 437ms
71:	learn: 36.0192175	total: 137ms	remaining: 435ms
72:	learn: 35.8649856	total: 139ms	remaining: 432ms
73:	learn: 35.7617973	total: 140ms	remaining: 429ms
74:	learn: 35.6596519	total: 142ms	remaining: 426ms
75:	learn: 35.5245435	total: 144ms	remaining: 423ms
76:	learn: 35.4537556	total: 145ms	remaining: 421ms
77:	learn: 35.3780375	total: 147ms	remaining: 418ms
78:	learn: 35.2833791	total: 149ms	remaining: 416ms
79:	learn: 35.1452834	total: 150ms	remaining: 414ms
80:	learn: 35.0592434	total: 152ms	remaining: 411ms
81:	learn: 34.9669906	total: 154ms	remaining: 408ms
82:	learn: 34.8296901	total: 155ms	remaining: 406ms
83:	learn: 34.7326991	total: 157ms	remaining: 404ms
84:	learn: 34.6684697	total: 159ms	remaining: 401ms
85:	learn: 34.5428975	total: 160ms	remaining: 399ms
86:	learn: 34.4195245	total: 162ms	remaining: 396ms
87:	learn: 34.3392865	total: 164ms	remaining: 394ms
88:	learn: 34.2529322	total: 165ms	remaining: 392ms
89:	learn: 34.1448751	total: 167ms	remaining: 390ms
90:	learn: 34.0216141	total: 169ms	remaining: 388ms
91:	learn: 33.8915739	total: 170ms	remaining: 385ms
92:	learn: 33.7935768	total: 172ms	remaining: 383ms
93:	learn: 33.7266850	total: 174ms	remaining: 381ms
94:	learn: 33.6432974	total: 175ms	remaining: 378ms
95:	learn: 33.5771748	total: 177ms	remaining: 376ms
96:	learn: 33.4617173	total: 179ms	remaining: 374ms
97:	learn: 33.3995208	total: 181ms	remaining: 372ms
98:	learn: 33.3107973	total: 183ms	remaining: 371ms
99:	learn: 33.2293538	total: 184ms	remaining: 369ms
100:	learn: 33.1137639	total: 186ms	remaining: 366ms
101:	learn: 33.0104538	total: 188ms	remaining: 364ms
102:	learn: 32.9053061	total: 189ms	remaining: 362ms
103:	learn: 32.8181618	total: 191ms	remaining: 360ms
104:	learn: 32.7335172	total: 193ms	remaining: 358ms
105:	learn: 32.6844665	total: 194ms	remaining: 356ms
106:	learn: 32.5991038	total: 196ms	remaining: 353ms
107:	learn: 32.5344266	total: 198ms	remaining: 351ms
108:	learn: 32.4163296	total: 199ms	remaining: 349ms
109:	learn: 32.3642916	total: 201ms	remaining: 347ms
110:	learn: 32.2606372	total: 202ms	remaining: 345ms
111:	learn: 32.1667073	total: 204ms	remaining: 342ms
112:	learn: 32.1151894	total: 206ms	remaining: 340ms
113:	learn: 32.0335697	total: 207ms	remaining: 338ms
114:	learn: 31.9193995	total: 209ms	remaining: 336ms
115:	learn: 31.8539862	total: 211ms	remaining: 334ms
116:	learn: 31.8120778	total: 212ms	remaining: 332ms
117:	learn: 31.7051866	total: 214ms	remaining: 330ms
118:	learn: 31.6418317	total: 215ms	remaining: 328ms
119:	learn: 31.5777432	total: 217ms	remaining: 326ms
120:	learn: 31.4879841	total: 219ms	remaining: 324ms
121:	learn: 31.4251267	total: 221ms	remaining: 322ms
122:	learn: 31.3192433	total: 222ms	remaining: 320ms
123:	learn: 31.2561359	total: 224ms	remaining: 318ms
124:	learn: 31.1687750	total: 226ms	remaining: 316ms
125:	learn: 31.1087060	total: 227ms	remaining: 314ms
126:	learn: 31.0223746	total: 229ms	remaining: 312ms
127:	learn: 30.9195056	total: 231ms	remaining: 311ms
128:	learn: 30.8649912	total: 233ms	remaining: 309ms
129:	learn: 30.8157448	total: 235ms	remaining: 307ms
130:	learn: 30.7281289	total: 237ms	remaining: 305ms
131:	learn: 30.6649265	total: 238ms	remaining: 303ms
132:	learn: 30.6233894	total: 240ms	remaining: 301ms
133:	learn: 30.5808010	total: 242ms	remaining: 300ms
134:	learn: 30.4835334	total: 244ms	remaining: 298ms
135:	learn: 30.3998922	total: 245ms	remaining: 296ms
136:	learn: 30.3032450	total: 247ms	remaining: 294ms
137:	learn: 30.2440426	total: 249ms	remaining: 292ms
138:	learn: 30.1492421	total: 251ms	remaining: 290ms
139:	learn: 30.1022196	total: 253ms	remaining: 289ms
140:	learn: 30.0269087	total: 257ms	remaining: 289ms
141:	learn: 29.9620226	total: 260ms	remaining: 289ms
142:	learn: 29.9009743	total: 263ms	remaining: 289ms
143:	learn: 29.8502133	total: 270ms	remaining: 293ms
144:	learn: 29.7916646	total: 274ms	remaining: 293ms
145:	learn: 29.7316719	total: 276ms	remaining: 292ms
146:	learn: 29.6865510	total: 278ms	remaining: 290ms
147:	learn: 29.6452820	total: 283ms	remaining: 290ms
148:	learn: 29.5678148	total: 285ms	remaining: 289ms
149:	learn: 29.4908965	total: 287ms	remaining: 287ms
150:	learn: 29.4465126	total: 289ms	remaining: 285ms
151:	learn: 29.3691764	total: 291ms	remaining: 284ms
152:	learn: 29.2908371	total: 293ms	remaining: 282ms
153:	learn: 29.1822080	total: 295ms	remaining: 280ms
154:	learn: 29.1166238	total: 297ms	remaining: 278ms
155:	learn: 29.0319403	total: 300ms	remaining: 277ms
156:	learn: 28.9745770	total: 302ms	remaining: 275ms
157:	learn: 28.9111321	total: 304ms	remaining: 273ms
158:	learn: 28.8339565	total: 306ms	remaining: 271ms
159:	learn: 28.7553531	total: 308ms	remaining: 270ms
160:	learn: 28.6825705	total: 310ms	remaining: 268ms
161:	learn: 28.6068000	total: 313ms	remaining: 266ms
162:	learn: 28.5730586	total: 315ms	remaining: 265ms
163:	learn: 28.4980155	total: 317ms	remaining: 263ms
164:	learn: 28.4358809	total: 319ms	remaining: 261ms
165:	learn: 28.3725887	total: 321ms	remaining: 259ms
166:	learn: 28.3091487	total: 323ms	remaining: 257ms
167:	learn: 28.2286087	total: 325ms	remaining: 255ms
168:	learn: 28.1828160	total: 327ms	remaining: 253ms
169:	learn: 28.1417236	total: 329ms	remaining: 251ms
170:	learn: 28.0892848	total: 330ms	remaining: 249ms
171:	learn: 28.0166485	total: 333ms	remaining: 248ms
172:	learn: 27.9655036	total: 335ms	remaining: 246ms
173:	learn: 27.9210384	total: 337ms	remaining: 244ms
174:	learn: 27.8389682	total: 339ms	remaining: 242ms
175:	learn: 27.7676715	total: 341ms	remaining: 241ms
176:	learn: 27.6902349	total: 343ms	remaining: 239ms
177:	learn: 27.6486420	total: 345ms	remaining: 237ms
178:	learn: 27.5718928	total: 347ms	remaining: 235ms
179:	learn: 27.5262081	total: 349ms	remaining: 232ms
180:	learn: 27.4422858	total: 351ms	remaining: 230ms
181:	learn: 27.3773349	total: 352ms	remaining: 228ms
182:	learn: 27.3393259	total: 354ms	remaining: 226ms
183:	learn: 27.2647726	total: 356ms	remaining: 224ms
184:	learn: 27.2427257	total: 357ms	remaining: 222ms
185:	learn: 27.1691053	total: 359ms	remaining: 220ms
186:	learn: 27.1437576	total: 360ms	remaining: 218ms
187:	learn: 27.0783959	total: 362ms	remaining: 216ms
188:	learn: 27.0535819	total: 364ms	remaining: 214ms
189:	learn: 27.0178987	total: 365ms	remaining: 212ms
190:	learn: 26.9591416	total: 367ms	remaining: 210ms
191:	learn: 26.8995329	total: 369ms	remaining: 208ms
192:	learn: 26.8676050	total: 371ms	remaining: 206ms
193:	learn: 26.8541422	total: 372ms	remaining: 203ms
194:	learn: 26.7924939	total: 374ms	remaining: 201ms
195:	learn: 26.7146030	total: 376ms	remaining: 199ms
196:	learn: 26.6532268	total: 378ms	remaining: 197ms
197:	learn: 26.6185179	total: 379ms	remaining: 195ms
198:	learn: 26.5811036	total: 381ms	remaining: 193ms
199:	learn: 26.5629160	total: 382ms	remaining: 191ms
200:	learn: 26.5229339	total: 384ms	remaining: 189ms
201:	learn: 26.4216200	total: 386ms	remaining: 187ms
202:	learn: 26.3880299	total: 388ms	remaining: 185ms
203:	learn: 26.3312892	total: 390ms	remaining: 183ms
204:	learn: 26.3054679	total: 391ms	remaining: 181ms
205:	learn: 26.2473354	total: 393ms	remaining: 179ms
206:	learn: 26.1868611	total: 395ms	remaining: 177ms
207:	learn: 26.1262892	total: 396ms	remaining: 175ms
208:	learn: 26.0803173	total: 398ms	remaining: 173ms
209:	learn: 26.0503216	total: 399ms	remaining: 171ms
210:	learn: 26.0052977	total: 401ms	remaining: 169ms
211:	learn: 25.9438350	total: 403ms	remaining: 167ms
212:	learn: 25.9090289	total: 405ms	remaining: 165ms
213:	learn: 25.8571238	total: 407ms	remaining: 164ms
214:	learn: 25.8203910	total: 409ms	remaining: 162ms
215:	learn: 25.7785845	total: 410ms	remaining: 160ms
216:	learn: 25.7545342	total: 412ms	remaining: 158ms
217:	learn: 25.7154022	total: 414ms	remaining: 156ms
218:	learn: 25.6513011	total: 415ms	remaining: 154ms
219:	learn: 25.6069821	total: 417ms	remaining: 152ms
220:	learn: 25.5835433	total: 418ms	remaining: 150ms
221:	learn: 25.5085326	total: 420ms	remaining: 148ms
222:	learn: 25.4500766	total: 422ms	remaining: 146ms
223:	learn: 25.4092535	total: 424ms	remaining: 144ms
224:	learn: 25.3680123	total: 426ms	remaining: 142ms
225:	learn: 25.3316979	total: 427ms	remaining: 140ms
226:	learn: 25.2673219	total: 429ms	remaining: 138ms
227:	learn: 25.2519501	total: 431ms	remaining: 136ms
228:	learn: 25.1910995	total: 433ms	remaining: 134ms
229:	learn: 25.1466161	total: 434ms	remaining: 132ms
230:	learn: 25.0967414	total: 436ms	remaining: 130ms
231:	learn: 25.0537614	total: 438ms	remaining: 128ms
232:	learn: 25.0252974	total: 440ms	remaining: 126ms
233:	learn: 24.9896464	total: 442ms	remaining: 125ms
234:	learn: 24.9654783	total: 443ms	remaining: 123ms
235:	learn: 24.9382337	total: 447ms	remaining: 121ms
236:	learn: 24.9162174	total: 450ms	remaining: 120ms
237:	learn: 24.8997954	total: 454ms	remaining: 118ms
238:	learn: 24.8625340	total: 456ms	remaining: 116ms
239:	learn: 24.8354920	total: 459ms	remaining: 115ms
240:	learn: 24.8205774	total: 461ms	remaining: 113ms
241:	learn: 24.7655509	total: 464ms	remaining: 111ms
242:	learn: 24.7456314	total: 466ms	remaining: 109ms
243:	learn: 24.7029663	total: 468ms	remaining: 107ms
244:	learn: 24.6851747	total: 471ms	remaining: 106ms
245:	learn: 24.6550496	total: 473ms	remaining: 104ms
246:	learn: 24.6014400	total: 474ms	remaining: 102ms
247:	learn: 24.5851286	total: 476ms	remaining: 99.8ms
248:	learn: 24.5497482	total: 478ms	remaining: 97.8ms
249:	learn: 24.5137301	total: 479ms	remaining: 95.9ms
250:	learn: 24.4953136	total: 481ms	remaining: 93.9ms
251:	learn: 24.4766292	total: 483ms	remaining: 91.9ms
252:	learn: 24.4232903	total: 484ms	remaining: 89.9ms
253:	learn: 24.4048087	total: 486ms	remaining: 88ms
254:	learn: 24.3882134	total: 487ms	remaining: 86ms
255:	learn: 24.3590124	total: 489ms	remaining: 84.1ms
256:	learn: 24.3225138	total: 491ms	remaining: 82.2ms
257:	learn: 24.2760507	total: 493ms	remaining: 80.2ms
258:	learn: 24.2195837	total: 495ms	remaining: 78.3ms
259:	learn: 24.2102442	total: 496ms	remaining: 76.3ms
260:	learn: 24.1895873	total: 498ms	remaining: 74.4ms
261:	learn: 24.1501028	total: 500ms	remaining: 72.4ms
262:	learn: 24.1236915	total: 501ms	remaining: 70.5ms
263:	learn: 24.0851938	total: 503ms	remaining: 68.6ms
264:	learn: 24.0525404	total: 504ms	remaining: 66.6ms
265:	learn: 24.0138053	total: 506ms	remaining: 64.7ms
266:	learn: 23.9974641	total: 508ms	remaining: 62.8ms
267:	learn: 23.9827536	total: 510ms	remaining: 60.8ms
268:	learn: 23.9585269	total: 511ms	remaining: 58.9ms
269:	learn: 23.9420259	total: 513ms	remaining: 57ms
270:	learn: 23.9259725	total: 514ms	remaining: 55.1ms
271:	learn: 23.8898213	total: 516ms	remaining: 53.1ms
272:	learn: 23.8394970	total: 518ms	remaining: 51.2ms
273:	learn: 23.7828184	total: 519ms	remaining: 49.3ms
274:	learn: 23.7686364	total: 521ms	remaining: 47.4ms
275:	learn: 23.7468262	total: 523ms	remaining: 45.5ms
276:	learn: 23.7131736	total: 524ms	remaining: 43.5ms
277:	learn: 23.6652740	total: 526ms	remaining: 41.6ms
278:	learn: 23.6519654	total: 528ms	remaining: 39.7ms
279:	learn: 23.6222370	total: 530ms	remaining: 37.8ms
280:	learn: 23.5973672	total: 531ms	remaining: 35.9ms
281:	learn: 23.5529270	total: 533ms	remaining: 34ms
282:	learn: 23.5402250	total: 534ms	remaining: 32.1ms
283:	learn: 23.4909972	total: 536ms	remaining: 30.2ms
284:	learn: 23.4483865	total: 538ms	remaining: 28.3ms
285:	learn: 23.4306944	total: 539ms	remaining: 26.4ms
286:	learn: 23.4132212	total: 541ms	remaining: 24.5ms
287:	learn: 23.3845343	total: 543ms	remaining: 22.6ms
288:	learn: 23.3782629	total: 544ms	remaining: 20.7ms
289:	learn: 23.3688992	total: 546ms	remaining: 18.8ms
290:	learn: 23.3277968	total: 548ms	remaining: 16.9ms
291:	learn: 23.3078531	total: 549ms	remaining: 15ms
292:	learn: 23.2937328	total: 551ms	remaining: 13.2ms
293:	learn: 23.2612980	total: 552ms	remaining: 11.3ms
294:	learn: 23.2304367	total: 554ms	remaining: 9.39ms
295:	learn: 23.2202924	total: 556ms	remaining: 7.51ms
296:	learn: 23.1761901	total: 558ms	remaining: 5.63ms
297:	learn: 23.1452893	total: 559ms	remaining: 3.75ms
298:	learn: 23.1255058	total: 561ms	remaining: 1.88ms
299:	learn: 23.0889488	total: 563ms	remaining: 0us
0:	learn: 47.4529218	total: 1.95ms	remaining: 583ms
1:	learn: 47.2900688	total: 3.81ms	remaining: 568ms
2:	learn: 47.1096773	total: 5.71ms	remaining: 565ms
3:	learn: 46.9458017	total: 7.75ms	remaining: 573ms
4:	learn: 46.7394545	total: 9.52ms	remaining: 562ms
5:	learn: 46.6010938	total: 11.2ms	remaining: 547ms
6:	learn: 46.4630993	total: 12.8ms	remaining: 536ms
7:	learn: 46.2448951	total: 14.5ms	remaining: 529ms
8:	learn: 46.1043010	total: 16.3ms	remaining: 528ms
9:	learn: 45.8810190	total: 18.2ms	remaining: 527ms
10:	learn: 45.7420054	total: 19.8ms	remaining: 521ms
11:	learn: 45.5149331	total: 21.4ms	remaining: 513ms
12:	learn: 45.3382407	total: 23.3ms	remaining: 513ms
13:	learn: 45.2161570	total: 25ms	remaining: 511ms
14:	learn: 45.0926790	total: 26.8ms	remaining: 508ms
15:	learn: 44.9545530	total: 28.5ms	remaining: 506ms
16:	learn: 44.7287772	total: 31.6ms	remaining: 526ms
17:	learn: 44.5551144	total: 34.1ms	remaining: 534ms
18:	learn: 44.3448999	total: 36.6ms	remaining: 541ms
19:	learn: 44.1711445	total: 39.1ms	remaining: 547ms
20:	learn: 43.9621637	total: 41.4ms	remaining: 550ms
21:	learn: 43.7529661	total: 43.8ms	remaining: 554ms
22:	learn: 43.5464717	total: 46.1ms	remaining: 555ms
23:	learn: 43.3729361	total: 48.6ms	remaining: 559ms
24:	learn: 43.2801557	total: 51ms	remaining: 561ms
25:	learn: 43.1473718	total: 53ms	remaining: 558ms
26:	learn: 42.9705994	total: 55.1ms	remaining: 557ms
27:	learn: 42.7734822	total: 57.4ms	remaining: 557ms
28:	learn: 42.6504897	total: 59.3ms	remaining: 554ms
29:	learn: 42.4668368	total: 61.7ms	remaining: 555ms
30:	learn: 42.2613418	total: 64.4ms	remaining: 559ms
31:	learn: 42.1791761	total: 66.8ms	remaining: 559ms
32:	learn: 42.0764566	total: 68.9ms	remaining: 557ms
33:	learn: 41.9496825	total: 71ms	remaining: 556ms
34:	learn: 41.8376663	total: 73.1ms	remaining: 554ms
35:	learn: 41.7000601	total: 75.1ms	remaining: 550ms
36:	learn: 41.5533640	total: 77.1ms	remaining: 548ms
37:	learn: 41.4400883	total: 79.1ms	remaining: 545ms
38:	learn: 41.3175278	total: 81.2ms	remaining: 544ms
39:	learn: 41.2043083	total: 83.3ms	remaining: 541ms
40:	learn: 41.0738969	total: 96.5ms	remaining: 610ms
41:	learn: 40.9179876	total: 98.8ms	remaining: 607ms
42:	learn: 40.7436927	total: 101ms	remaining: 603ms
43:	learn: 40.6435369	total: 103ms	remaining: 598ms
44:	learn: 40.5383948	total: 105ms	remaining: 594ms
45:	learn: 40.3815403	total: 107ms	remaining: 592ms
46:	learn: 40.2441051	total: 109ms	remaining: 589ms
47:	learn: 40.1381318	total: 111ms	remaining: 585ms
48:	learn: 39.9795363	total: 113ms	remaining: 581ms
49:	learn: 39.8203576	total: 115ms	remaining: 576ms
50:	learn: 39.6474502	total: 117ms	remaining: 573ms
51:	learn: 39.5253122	total: 119ms	remaining: 569ms
52:	learn: 39.3737000	total: 121ms	remaining: 565ms
53:	learn: 39.2005360	total: 123ms	remaining: 560ms
54:	learn: 39.0989021	total: 125ms	remaining: 556ms
55:	learn: 38.9447803	total: 127ms	remaining: 555ms
56:	learn: 38.8313837	total: 129ms	remaining: 552ms
57:	learn: 38.6796993	total: 132ms	remaining: 549ms
58:	learn: 38.5148443	total: 134ms	remaining: 546ms
59:	learn: 38.3923692	total: 136ms	remaining: 544ms
60:	learn: 38.2489732	total: 138ms	remaining: 539ms
61:	learn: 38.1269866	total: 139ms	remaining: 534ms
62:	learn: 37.9760246	total: 141ms	remaining: 530ms
63:	learn: 37.8956062	total: 143ms	remaining: 526ms
64:	learn: 37.7450645	total: 144ms	remaining: 521ms
65:	learn: 37.6054180	total: 146ms	remaining: 517ms
66:	learn: 37.4811656	total: 148ms	remaining: 513ms
67:	learn: 37.3914857	total: 149ms	remaining: 510ms
68:	learn: 37.2806889	total: 151ms	remaining: 506ms
69:	learn: 37.1811123	total: 153ms	remaining: 502ms
70:	learn: 37.0594326	total: 155ms	remaining: 498ms
71:	learn: 36.9800074	total: 156ms	remaining: 494ms
72:	learn: 36.8190210	total: 158ms	remaining: 491ms
73:	learn: 36.6952228	total: 159ms	remaining: 487ms
74:	learn: 36.5654681	total: 161ms	remaining: 484ms
75:	learn: 36.4771903	total: 163ms	remaining: 480ms
76:	learn: 36.3838644	total: 164ms	remaining: 476ms
77:	learn: 36.2631705	total: 166ms	remaining: 472ms
78:	learn: 36.1879983	total: 168ms	remaining: 469ms
79:	learn: 36.0504743	total: 170ms	remaining: 466ms
80:	learn: 35.9655347	total: 171ms	remaining: 463ms
81:	learn: 35.8573006	total: 173ms	remaining: 460ms
82:	learn: 35.7184368	total: 175ms	remaining: 457ms
83:	learn: 35.6094378	total: 176ms	remaining: 453ms
84:	learn: 35.4649870	total: 178ms	remaining: 450ms
85:	learn: 35.3496452	total: 180ms	remaining: 447ms
86:	learn: 35.2159176	total: 181ms	remaining: 444ms
87:	learn: 35.0924611	total: 183ms	remaining: 441ms
88:	learn: 34.9916941	total: 185ms	remaining: 438ms
89:	learn: 34.9121739	total: 186ms	remaining: 435ms
90:	learn: 34.7794714	total: 188ms	remaining: 432ms
91:	learn: 34.6841457	total: 190ms	remaining: 429ms
92:	learn: 34.5722030	total: 191ms	remaining: 426ms
93:	learn: 34.5110825	total: 193ms	remaining: 423ms
94:	learn: 34.4487249	total: 195ms	remaining: 420ms
95:	learn: 34.3866516	total: 196ms	remaining: 417ms
96:	learn: 34.2677284	total: 198ms	remaining: 414ms
97:	learn: 34.2228038	total: 200ms	remaining: 412ms
98:	learn: 34.1034411	total: 202ms	remaining: 410ms
99:	learn: 34.0193655	total: 204ms	remaining: 408ms
100:	learn: 33.9137683	total: 206ms	remaining: 406ms
101:	learn: 33.8142570	total: 208ms	remaining: 403ms
102:	learn: 33.7490761	total: 209ms	remaining: 400ms
103:	learn: 33.6382695	total: 211ms	remaining: 398ms
104:	learn: 33.5526613	total: 213ms	remaining: 395ms
105:	learn: 33.4965005	total: 215ms	remaining: 393ms
106:	learn: 33.4454172	total: 217ms	remaining: 391ms
107:	learn: 33.3329578	total: 219ms	remaining: 389ms
108:	learn: 33.2151118	total: 220ms	remaining: 386ms
109:	learn: 33.1585276	total: 222ms	remaining: 384ms
110:	learn: 33.0449093	total: 224ms	remaining: 382ms
111:	learn: 32.9309427	total: 226ms	remaining: 380ms
112:	learn: 32.8937849	total: 228ms	remaining: 377ms
113:	learn: 32.8204081	total: 230ms	remaining: 375ms
114:	learn: 32.7042691	total: 232ms	remaining: 372ms
115:	learn: 32.6479509	total: 233ms	remaining: 370ms
116:	learn: 32.5596934	total: 235ms	remaining: 368ms
117:	learn: 32.4589530	total: 237ms	remaining: 365ms
118:	learn: 32.3952440	total: 239ms	remaining: 363ms
119:	learn: 32.3319275	total: 241ms	remaining: 361ms
120:	learn: 32.2776024	total: 243ms	remaining: 359ms
121:	learn: 32.2093836	total: 246ms	remaining: 359ms
122:	learn: 32.1375148	total: 249ms	remaining: 358ms
123:	learn: 32.0456001	total: 252ms	remaining: 357ms
124:	learn: 31.9373057	total: 254ms	remaining: 356ms
125:	learn: 31.8782587	total: 257ms	remaining: 355ms
126:	learn: 31.8086865	total: 259ms	remaining: 353ms
127:	learn: 31.7040622	total: 262ms	remaining: 352ms
128:	learn: 31.6464991	total: 264ms	remaining: 350ms
129:	learn: 31.5890453	total: 266ms	remaining: 348ms
130:	learn: 31.4920061	total: 269ms	remaining: 347ms
131:	learn: 31.4127596	total: 271ms	remaining: 345ms
132:	learn: 31.3583999	total: 273ms	remaining: 343ms
133:	learn: 31.3057304	total: 275ms	remaining: 341ms
134:	learn: 31.2117547	total: 277ms	remaining: 339ms
135:	learn: 31.0761735	total: 279ms	remaining: 337ms
136:	learn: 31.0112024	total: 281ms	remaining: 334ms
137:	learn: 30.9652181	total: 283ms	remaining: 332ms
138:	learn: 30.8894262	total: 285ms	remaining: 330ms
139:	learn: 30.8406920	total: 286ms	remaining: 327ms
140:	learn: 30.7933885	total: 288ms	remaining: 325ms
141:	learn: 30.7327144	total: 290ms	remaining: 323ms
142:	learn: 30.6596945	total: 292ms	remaining: 321ms
143:	learn: 30.5895052	total: 294ms	remaining: 318ms
144:	learn: 30.5439364	total: 296ms	remaining: 316ms
145:	learn: 30.4854180	total: 297ms	remaining: 314ms
146:	learn: 30.3945592	total: 299ms	remaining: 311ms
147:	learn: 30.3455971	total: 301ms	remaining: 309ms
148:	learn: 30.2758435	total: 303ms	remaining: 307ms
149:	learn: 30.1952049	total: 305ms	remaining: 305ms
150:	learn: 30.1115419	total: 307ms	remaining: 303ms
151:	learn: 30.0279563	total: 309ms	remaining: 300ms
152:	learn: 29.9403128	total: 310ms	remaining: 298ms
153:	learn: 29.8585848	total: 312ms	remaining: 296ms
154:	learn: 29.8173549	total: 314ms	remaining: 294ms
155:	learn: 29.7606479	total: 316ms	remaining: 291ms
156:	learn: 29.7192661	total: 317ms	remaining: 289ms
157:	learn: 29.6573867	total: 319ms	remaining: 287ms
158:	learn: 29.6011198	total: 321ms	remaining: 285ms
159:	learn: 29.5208614	total: 323ms	remaining: 283ms
160:	learn: 29.4263192	total: 325ms	remaining: 280ms
161:	learn: 29.3434737	total: 326ms	remaining: 278ms
162:	learn: 29.3098673	total: 328ms	remaining: 276ms
163:	learn: 29.2327943	total: 330ms	remaining: 274ms
164:	learn: 29.1601635	total: 332ms	remaining: 272ms
165:	learn: 29.1069048	total: 334ms	remaining: 270ms
166:	learn: 29.0382275	total: 336ms	remaining: 268ms
167:	learn: 28.9582253	total: 338ms	remaining: 266ms
168:	learn: 28.9064607	total: 340ms	remaining: 263ms
169:	learn: 28.8488541	total: 342ms	remaining: 261ms
170:	learn: 28.7995516	total: 344ms	remaining: 259ms
171:	learn: 28.7242521	total: 346ms	remaining: 257ms
172:	learn: 28.6426156	total: 348ms	remaining: 255ms
173:	learn: 28.5980046	total: 350ms	remaining: 253ms
174:	learn: 28.5198386	total: 352ms	remaining: 251ms
175:	learn: 28.4439630	total: 354ms	remaining: 249ms
176:	learn: 28.3655079	total: 355ms	remaining: 247ms
177:	learn: 28.3232157	total: 357ms	remaining: 245ms
178:	learn: 28.2364006	total: 359ms	remaining: 243ms
179:	learn: 28.1861183	total: 361ms	remaining: 240ms
180:	learn: 28.1227462	total: 362ms	remaining: 238ms
181:	learn: 28.0565946	total: 364ms	remaining: 236ms
182:	learn: 27.9984664	total: 366ms	remaining: 234ms
183:	learn: 27.9221997	total: 367ms	remaining: 232ms
184:	learn: 27.8748109	total: 369ms	remaining: 229ms
185:	learn: 27.8294375	total: 371ms	remaining: 227ms
186:	learn: 27.7745003	total: 373ms	remaining: 225ms
187:	learn: 27.7130989	total: 374ms	remaining: 223ms
188:	learn: 27.6722982	total: 376ms	remaining: 221ms
189:	learn: 27.6280830	total: 378ms	remaining: 219ms
190:	learn: 27.6020224	total: 379ms	remaining: 217ms
191:	learn: 27.5645462	total: 381ms	remaining: 214ms
192:	learn: 27.5082921	total: 383ms	remaining: 212ms
193:	learn: 27.4518307	total: 384ms	remaining: 210ms
194:	learn: 27.3891047	total: 386ms	remaining: 208ms
195:	learn: 27.3261929	total: 388ms	remaining: 206ms
196:	learn: 27.2777364	total: 389ms	remaining: 204ms
197:	learn: 27.2483200	total: 391ms	remaining: 202ms
198:	learn: 27.1940095	total: 393ms	remaining: 200ms
199:	learn: 27.1503379	total: 395ms	remaining: 197ms
200:	learn: 27.0980574	total: 396ms	remaining: 195ms
201:	learn: 27.0429416	total: 398ms	remaining: 193ms
202:	learn: 26.9803241	total: 400ms	remaining: 191ms
203:	learn: 26.9237002	total: 401ms	remaining: 189ms
204:	learn: 26.9012109	total: 403ms	remaining: 187ms
205:	learn: 26.8440446	total: 405ms	remaining: 185ms
206:	learn: 26.7801142	total: 407ms	remaining: 183ms
207:	learn: 26.7470260	total: 408ms	remaining: 181ms
208:	learn: 26.6972971	total: 410ms	remaining: 179ms
209:	learn: 26.6624251	total: 412ms	remaining: 177ms
210:	learn: 26.6063236	total: 414ms	remaining: 175ms
211:	learn: 26.5450022	total: 416ms	remaining: 173ms
212:	learn: 26.5243817	total: 418ms	remaining: 171ms
213:	learn: 26.4613009	total: 420ms	remaining: 169ms
214:	learn: 26.4170161	total: 422ms	remaining: 167ms
215:	learn: 26.3893390	total: 424ms	remaining: 165ms
216:	learn: 26.3599471	total: 426ms	remaining: 163ms
217:	learn: 26.3222168	total: 428ms	remaining: 161ms
218:	learn: 26.2590534	total: 429ms	remaining: 159ms
219:	learn: 26.2012713	total: 431ms	remaining: 157ms
220:	learn: 26.1663094	total: 433ms	remaining: 155ms
221:	learn: 26.1126423	total: 437ms	remaining: 153ms
222:	learn: 26.0864833	total: 439ms	remaining: 152ms
223:	learn: 26.0542856	total: 442ms	remaining: 150ms
224:	learn: 26.0126247	total: 445ms	remaining: 148ms
225:	learn: 25.9809537	total: 449ms	remaining: 147ms
226:	learn: 25.9490282	total: 452ms	remaining: 145ms
227:	learn: 25.9134622	total: 455ms	remaining: 144ms
228:	learn: 25.8527036	total: 457ms	remaining: 142ms
229:	learn: 25.8066425	total: 460ms	remaining: 140ms
230:	learn: 25.7720796	total: 463ms	remaining: 138ms
231:	learn: 25.7164417	total: 465ms	remaining: 136ms
232:	learn: 25.6880569	total: 467ms	remaining: 134ms
233:	learn: 25.6302446	total: 469ms	remaining: 132ms
234:	learn: 25.5872478	total: 471ms	remaining: 130ms
235:	learn: 25.5700163	total: 473ms	remaining: 128ms
236:	learn: 25.5123262	total: 475ms	remaining: 126ms
237:	learn: 25.4789989	total: 477ms	remaining: 124ms
238:	learn: 25.4275461	total: 479ms	remaining: 122ms
239:	learn: 25.3920584	total: 481ms	remaining: 120ms
240:	learn: 25.3347766	total: 483ms	remaining: 118ms
241:	learn: 25.3086652	total: 485ms	remaining: 116ms
242:	learn: 25.2950007	total: 487ms	remaining: 114ms
243:	learn: 25.2621794	total: 489ms	remaining: 112ms
244:	learn: 25.2456596	total: 492ms	remaining: 110ms
245:	learn: 25.1988578	total: 494ms	remaining: 108ms
246:	learn: 25.1451425	total: 496ms	remaining: 106ms
247:	learn: 25.1034817	total: 498ms	remaining: 104ms
248:	learn: 25.0604438	total: 499ms	remaining: 102ms
249:	learn: 25.0330185	total: 501ms	remaining: 100ms
250:	learn: 24.9921584	total: 503ms	remaining: 98.3ms
251:	learn: 24.9712889	total: 505ms	remaining: 96.2ms
252:	learn: 24.9577581	total: 507ms	remaining: 94.2ms
253:	learn: 24.9151686	total: 509ms	remaining: 92.1ms
254:	learn: 24.8772301	total: 511ms	remaining: 90.1ms
255:	learn: 24.8574403	total: 513ms	remaining: 88.1ms
256:	learn: 24.8251919	total: 515ms	remaining: 86.2ms
257:	learn: 24.8084011	total: 517ms	remaining: 84.2ms
258:	learn: 24.7530560	total: 519ms	remaining: 82.2ms
259:	learn: 24.7334451	total: 521ms	remaining: 80.1ms
260:	learn: 24.7042894	total: 523ms	remaining: 78.1ms
261:	learn: 24.6921083	total: 525ms	remaining: 76.1ms
262:	learn: 24.6576527	total: 527ms	remaining: 74.1ms
263:	learn: 24.6137766	total: 528ms	remaining: 72.1ms
264:	learn: 24.5924478	total: 530ms	remaining: 70ms
265:	learn: 24.5779194	total: 532ms	remaining: 68ms
266:	learn: 24.5619442	total: 533ms	remaining: 65.9ms
267:	learn: 24.5205212	total: 535ms	remaining: 63.9ms
268:	learn: 24.4986837	total: 537ms	remaining: 61.9ms
269:	learn: 24.4670566	total: 538ms	remaining: 59.8ms
270:	learn: 24.4429993	total: 540ms	remaining: 57.8ms
271:	learn: 24.4147988	total: 542ms	remaining: 55.7ms
272:	learn: 24.3864204	total: 543ms	remaining: 53.7ms
273:	learn: 24.3460285	total: 545ms	remaining: 51.7ms
274:	learn: 24.3213876	total: 547ms	remaining: 49.7ms
275:	learn: 24.3020446	total: 549ms	remaining: 47.7ms
276:	learn: 24.2891819	total: 550ms	remaining: 45.7ms
277:	learn: 24.2565439	total: 552ms	remaining: 43.7ms
278:	learn: 24.2427798	total: 554ms	remaining: 41.7ms
279:	learn: 24.2143497	total: 555ms	remaining: 39.7ms
280:	learn: 24.1963193	total: 557ms	remaining: 37.7ms
281:	learn: 24.1523840	total: 559ms	remaining: 35.7ms
282:	learn: 24.1368294	total: 561ms	remaining: 33.7ms
283:	learn: 24.1011272	total: 562ms	remaining: 31.7ms
284:	learn: 24.0608022	total: 564ms	remaining: 29.7ms
285:	learn: 24.0372181	total: 565ms	remaining: 27.7ms
286:	learn: 24.0248565	total: 567ms	remaining: 25.7ms
287:	learn: 24.0126120	total: 569ms	remaining: 23.7ms
288:	learn: 23.9812062	total: 570ms	remaining: 21.7ms
289:	learn: 23.9651260	total: 572ms	remaining: 19.7ms
290:	learn: 23.9400298	total: 573ms	remaining: 17.7ms
291:	learn: 23.9295523	total: 575ms	remaining: 15.8ms
292:	learn: 23.9102905	total: 577ms	remaining: 13.8ms
293:	learn: 23.8843705	total: 579ms	remaining: 11.8ms
294:	learn: 23.8596235	total: 580ms	remaining: 9.84ms
295:	learn: 23.8328176	total: 582ms	remaining: 7.87ms
296:	learn: 23.7800948	total: 584ms	remaining: 5.89ms
297:	learn: 23.7568958	total: 585ms	remaining: 3.93ms
298:	learn: 23.7334216	total: 587ms	remaining: 1.96ms
299:	learn: 23.7188754	total: 589ms	remaining: 0us
0:	learn: 27.6242191	total: 31.8ms	remaining: 9.51s
1:	learn: 27.3247973	total: 57.3ms	remaining: 8.54s
2:	learn: 26.9048262	total: 79.9ms	remaining: 7.91s
3:	learn: 26.6094870	total: 103ms	remaining: 7.63s
4:	learn: 26.2335903	total: 127ms	remaining: 7.48s
5:	learn: 25.9065752	total: 150ms	remaining: 7.37s
6:	learn: 25.6303453	total: 174ms	remaining: 7.28s
7:	learn: 25.2422673	total: 198ms	remaining: 7.24s
8:	learn: 24.9092185	total: 223ms	remaining: 7.21s
9:	learn: 24.6380278	total: 257ms	remaining: 7.46s
10:	learn: 24.2990126	total: 282ms	remaining: 7.4s
11:	learn: 24.0194492	total: 306ms	remaining: 7.35s
12:	learn: 23.7720807	total: 331ms	remaining: 7.31s
13:	learn: 23.4419462	total: 355ms	remaining: 7.26s
14:	learn: 23.2366857	total: 379ms	remaining: 7.2s
15:	learn: 22.9901263	total: 382ms	remaining: 6.78s
16:	learn: 22.7775050	total: 405ms	remaining: 6.74s
17:	learn: 22.5290799	total: 429ms	remaining: 6.71s
18:	learn: 22.2427201	total: 458ms	remaining: 6.77s
19:	learn: 21.9766361	total: 482ms	remaining: 6.75s
20:	learn: 21.7608475	total: 506ms	remaining: 6.72s
21:	learn: 21.5756818	total: 529ms	remaining: 6.69s
22:	learn: 21.3753018	total: 554ms	remaining: 6.67s
23:	learn: 21.1715384	total: 578ms	remaining: 6.65s
24:	learn: 20.9557317	total: 604ms	remaining: 6.64s
25:	learn: 20.7653390	total: 628ms	remaining: 6.62s
26:	learn: 20.5688623	total: 653ms	remaining: 6.6s
27:	learn: 20.3753201	total: 688ms	remaining: 6.69s
28:	learn: 20.2087140	total: 719ms	remaining: 6.72s
29:	learn: 20.0437127	total: 745ms	remaining: 6.71s
30:	learn: 19.7939404	total: 771ms	remaining: 6.69s
31:	learn: 19.6135511	total: 797ms	remaining: 6.67s
32:	learn: 19.4223949	total: 821ms	remaining: 6.64s
33:	learn: 19.3099062	total: 846ms	remaining: 6.62s
34:	learn: 19.1471296	total: 871ms	remaining: 6.59s
35:	learn: 18.9602406	total: 902ms	remaining: 6.62s
36:	learn: 18.8463205	total: 930ms	remaining: 6.61s
37:	learn: 18.5993654	total: 955ms	remaining: 6.58s
38:	learn: 18.4547850	total: 979ms	remaining: 6.55s
39:	learn: 18.3265698	total: 1s	remaining: 6.53s
40:	learn: 18.1552052	total: 1.03s	remaining: 6.5s
41:	learn: 17.9969729	total: 1.05s	remaining: 6.47s
42:	learn: 17.8420506	total: 1.08s	remaining: 6.45s
43:	learn: 17.7314471	total: 1.11s	remaining: 6.44s
44:	learn: 17.6037885	total: 1.14s	remaining: 6.46s
45:	learn: 17.4911598	total: 1.17s	remaining: 6.44s
46:	learn: 17.3334650	total: 1.19s	remaining: 6.42s
47:	learn: 17.1964435	total: 1.22s	remaining: 6.4s
48:	learn: 17.0705369	total: 1.24s	remaining: 6.37s
49:	learn: 16.9282293	total: 1.27s	remaining: 6.34s
50:	learn: 16.7996947	total: 1.29s	remaining: 6.31s
51:	learn: 16.6978905	total: 1.32s	remaining: 6.29s
52:	learn: 16.5793323	total: 1.35s	remaining: 6.28s
53:	learn: 16.4770669	total: 1.37s	remaining: 6.26s
54:	learn: 16.3655624	total: 1.4s	remaining: 6.23s
55:	learn: 16.2604369	total: 1.42s	remaining: 6.2s
56:	learn: 16.1431440	total: 1.45s	remaining: 6.17s
57:	learn: 16.0326605	total: 1.47s	remaining: 6.14s
58:	learn: 15.9323014	total: 1.5s	remaining: 6.11s
59:	learn: 15.8025601	total: 1.52s	remaining: 6.08s
60:	learn: 15.6963178	total: 1.55s	remaining: 6.08s
61:	learn: 15.6270773	total: 1.58s	remaining: 6.06s
62:	learn: 15.5313112	total: 1.6s	remaining: 6.03s
63:	learn: 15.4399515	total: 1.63s	remaining: 6s
64:	learn: 15.3597117	total: 1.65s	remaining: 5.98s
65:	learn: 15.2697176	total: 1.68s	remaining: 5.96s
66:	learn: 15.1828907	total: 1.71s	remaining: 5.94s
67:	learn: 15.0961490	total: 1.73s	remaining: 5.91s
68:	learn: 15.0128613	total: 1.76s	remaining: 5.88s
69:	learn: 14.9098281	total: 1.8s	remaining: 5.9s
70:	learn: 14.8290802	total: 1.82s	remaining: 5.88s
71:	learn: 14.7354294	total: 1.85s	remaining: 5.85s
72:	learn: 14.6593235	total: 1.87s	remaining: 5.82s
73:	learn: 14.5723402	total: 1.9s	remaining: 5.79s
74:	learn: 14.4986819	total: 1.92s	remaining: 5.76s
75:	learn: 14.4087447	total: 1.94s	remaining: 5.73s
76:	learn: 14.3357763	total: 1.97s	remaining: 5.7s
77:	learn: 14.2423286	total: 1.99s	remaining: 5.67s
78:	learn: 14.1791552	total: 2.03s	remaining: 5.67s
79:	learn: 14.0970307	total: 2.05s	remaining: 5.65s
80:	learn: 14.0336692	total: 2.08s	remaining: 5.62s
81:	learn: 13.9758100	total: 2.1s	remaining: 5.59s
82:	learn: 13.9111969	total: 2.13s	remaining: 5.56s
83:	learn: 13.8350945	total: 2.15s	remaining: 5.54s
84:	learn: 13.7593569	total: 2.18s	remaining: 5.5s
85:	learn: 13.6953120	total: 2.2s	remaining: 5.47s
86:	learn: 13.6352452	total: 2.23s	remaining: 5.45s
87:	learn: 13.5794275	total: 2.25s	remaining: 5.43s
88:	learn: 13.4880894	total: 2.28s	remaining: 5.41s
89:	learn: 13.4305792	total: 2.3s	remaining: 5.38s
90:	learn: 13.3569291	total: 2.33s	remaining: 5.35s
91:	learn: 13.2958628	total: 2.35s	remaining: 5.32s
92:	learn: 13.2338079	total: 2.38s	remaining: 5.29s
93:	learn: 13.1821114	total: 2.4s	remaining: 5.26s
94:	learn: 13.1082697	total: 2.42s	remaining: 5.23s
95:	learn: 13.0475619	total: 2.46s	remaining: 5.22s
96:	learn: 12.9878324	total: 2.48s	remaining: 5.2s
97:	learn: 12.9294785	total: 2.51s	remaining: 5.17s
98:	learn: 12.8646231	total: 2.53s	remaining: 5.14s
99:	learn: 12.8003027	total: 2.56s	remaining: 5.11s
100:	learn: 12.6741024	total: 2.58s	remaining: 5.08s
101:	learn: 12.5871778	total: 2.6s	remaining: 5.06s
102:	learn: 12.5199785	total: 2.63s	remaining: 5.03s
103:	learn: 12.4533348	total: 2.65s	remaining: 5s
104:	learn: 12.4014303	total: 2.68s	remaining: 4.98s
105:	learn: 12.3404648	total: 2.71s	remaining: 4.96s
106:	learn: 12.2853908	total: 2.73s	remaining: 4.93s
107:	learn: 12.2113131	total: 2.76s	remaining: 4.9s
108:	learn: 12.1443818	total: 2.78s	remaining: 4.87s
109:	learn: 12.0782972	total: 2.81s	remaining: 4.84s
110:	learn: 12.0242888	total: 2.83s	remaining: 4.82s
111:	learn: 11.9606186	total: 2.85s	remaining: 4.79s
112:	learn: 11.8840123	total: 2.88s	remaining: 4.76s
113:	learn: 11.8362234	total: 2.91s	remaining: 4.75s
114:	learn: 11.7798600	total: 2.94s	remaining: 4.73s
115:	learn: 11.7205583	total: 2.96s	remaining: 4.7s
116:	learn: 11.6703154	total: 2.99s	remaining: 4.67s
117:	learn: 11.5906207	total: 3.02s	remaining: 4.65s
118:	learn: 11.5392300	total: 3.04s	remaining: 4.63s
119:	learn: 11.5009891	total: 3.07s	remaining: 4.61s
120:	learn: 11.4496613	total: 3.1s	remaining: 4.59s
121:	learn: 11.3880593	total: 3.13s	remaining: 4.57s
122:	learn: 11.3343840	total: 3.16s	remaining: 4.55s
123:	learn: 11.2903777	total: 3.19s	remaining: 4.53s
124:	learn: 11.2226066	total: 3.22s	remaining: 4.5s
125:	learn: 11.1756503	total: 3.24s	remaining: 4.48s
126:	learn: 11.1266674	total: 3.27s	remaining: 4.45s
127:	learn: 11.0542744	total: 3.3s	remaining: 4.43s
128:	learn: 11.0132226	total: 3.33s	remaining: 4.42s
129:	learn: 10.9545179	total: 3.36s	remaining: 4.39s
130:	learn: 10.9167977	total: 3.4s	remaining: 4.38s
131:	learn: 10.8607094	total: 3.42s	remaining: 4.36s
132:	learn: 10.8081246	total: 3.45s	remaining: 4.33s
133:	learn: 10.7595004	total: 3.48s	remaining: 4.31s
134:	learn: 10.6949228	total: 3.5s	remaining: 4.28s
135:	learn: 10.6549608	total: 3.54s	remaining: 4.26s
136:	learn: 10.6085016	total: 3.57s	remaining: 4.25s
137:	learn: 10.5530774	total: 3.59s	remaining: 4.22s
138:	learn: 10.5146132	total: 3.63s	remaining: 4.2s
139:	learn: 10.4804263	total: 3.65s	remaining: 4.18s
140:	learn: 10.4469935	total: 3.68s	remaining: 4.15s
141:	learn: 10.4083597	total: 3.71s	remaining: 4.13s
142:	learn: 10.3700272	total: 3.74s	remaining: 4.1s
143:	learn: 10.3240531	total: 3.77s	remaining: 4.09s
144:	learn: 10.2838387	total: 3.8s	remaining: 4.06s
145:	learn: 10.2237396	total: 3.83s	remaining: 4.04s
146:	learn: 10.1677493	total: 3.87s	remaining: 4.02s
147:	learn: 10.1289528	total: 3.89s	remaining: 4s
148:	learn: 10.0918869	total: 3.92s	remaining: 3.97s
149:	learn: 10.0599014	total: 3.95s	remaining: 3.95s
150:	learn: 9.9817438	total: 3.98s	remaining: 3.93s
151:	learn: 9.9410469	total: 4.01s	remaining: 3.9s
152:	learn: 9.8790383	total: 4.04s	remaining: 3.88s
153:	learn: 9.8489714	total: 4.06s	remaining: 3.85s
154:	learn: 9.8192539	total: 4.09s	remaining: 3.83s
155:	learn: 9.7595292	total: 4.12s	remaining: 3.81s
156:	learn: 9.7305132	total: 4.15s	remaining: 3.78s
157:	learn: 9.6946431	total: 4.18s	remaining: 3.75s
158:	learn: 9.6382391	total: 4.21s	remaining: 3.74s
159:	learn: 9.5932080	total: 4.24s	remaining: 3.71s
160:	learn: 9.5528662	total: 4.27s	remaining: 3.69s
161:	learn: 9.5112954	total: 4.3s	remaining: 3.66s
162:	learn: 9.4782229	total: 4.33s	remaining: 3.64s
163:	learn: 9.4469139	total: 4.36s	remaining: 3.62s
164:	learn: 9.4073553	total: 4.39s	remaining: 3.59s
165:	learn: 9.3658459	total: 4.42s	remaining: 3.56s
166:	learn: 9.3331509	total: 4.45s	remaining: 3.54s
167:	learn: 9.3022193	total: 4.47s	remaining: 3.52s
168:	learn: 9.2687355	total: 4.5s	remaining: 3.49s
169:	learn: 9.2347395	total: 4.53s	remaining: 3.46s
170:	learn: 9.1946963	total: 4.55s	remaining: 3.43s
171:	learn: 9.1669467	total: 4.58s	remaining: 3.4s
172:	learn: 9.1174548	total: 4.6s	remaining: 3.38s
173:	learn: 9.0578865	total: 4.64s	remaining: 3.36s
174:	learn: 9.0242697	total: 4.67s	remaining: 3.33s
175:	learn: 8.9812385	total: 4.69s	remaining: 3.31s
176:	learn: 8.9394173	total: 4.72s	remaining: 3.28s
177:	learn: 8.8954630	total: 4.75s	remaining: 3.25s
178:	learn: 8.8650625	total: 4.77s	remaining: 3.22s
179:	learn: 8.8128518	total: 4.8s	remaining: 3.2s
180:	learn: 8.7713941	total: 4.82s	remaining: 3.17s
181:	learn: 8.7271373	total: 4.86s	remaining: 3.15s
182:	learn: 8.6827020	total: 4.88s	remaining: 3.12s
183:	learn: 8.6411197	total: 4.91s	remaining: 3.1s
184:	learn: 8.6161231	total: 4.93s	remaining: 3.07s
185:	learn: 8.5812975	total: 4.96s	remaining: 3.04s
186:	learn: 8.5494363	total: 4.98s	remaining: 3.01s
187:	learn: 8.5121894	total: 5.01s	remaining: 2.98s
188:	learn: 8.4769543	total: 5.03s	remaining: 2.96s
189:	learn: 8.4285766	total: 5.06s	remaining: 2.93s
190:	learn: 8.4032474	total: 5.09s	remaining: 2.91s
191:	learn: 8.3791298	total: 5.12s	remaining: 2.88s
192:	learn: 8.3494894	total: 5.14s	remaining: 2.85s
193:	learn: 8.3153327	total: 5.17s	remaining: 2.83s
194:	learn: 8.2823004	total: 5.2s	remaining: 2.8s
195:	learn: 8.2449482	total: 5.22s	remaining: 2.77s
196:	learn: 8.2013567	total: 5.25s	remaining: 2.75s
197:	learn: 8.1697337	total: 5.28s	remaining: 2.72s
198:	learn: 8.1265833	total: 5.3s	remaining: 2.69s
199:	learn: 8.0905433	total: 5.33s	remaining: 2.66s
200:	learn: 8.0669552	total: 5.35s	remaining: 2.64s
201:	learn: 8.0258330	total: 5.38s	remaining: 2.61s
202:	learn: 8.0026168	total: 5.4s	remaining: 2.58s
203:	learn: 7.9482286	total: 5.43s	remaining: 2.55s
204:	learn: 7.9105233	total: 5.45s	remaining: 2.53s
205:	learn: 7.8966891	total: 5.48s	remaining: 2.5s
206:	learn: 7.8575063	total: 5.52s	remaining: 2.48s
207:	learn: 7.8147335	total: 5.54s	remaining: 2.45s
208:	learn: 7.7917140	total: 5.57s	remaining: 2.43s
209:	learn: 7.7607147	total: 5.6s	remaining: 2.4s
210:	learn: 7.7425727	total: 5.62s	remaining: 2.37s
211:	learn: 7.7238288	total: 5.65s	remaining: 2.34s
212:	learn: 7.6985896	total: 5.67s	remaining: 2.32s
213:	learn: 7.6752745	total: 5.71s	remaining: 2.29s
214:	learn: 7.6442259	total: 5.73s	remaining: 2.27s
215:	learn: 7.6325331	total: 5.76s	remaining: 2.24s
216:	learn: 7.6063316	total: 5.78s	remaining: 2.21s
217:	learn: 7.5831832	total: 5.81s	remaining: 2.18s
218:	learn: 7.5672234	total: 5.83s	remaining: 2.16s
219:	learn: 7.5331936	total: 5.86s	remaining: 2.13s
220:	learn: 7.4920831	total: 5.88s	remaining: 2.1s
221:	learn: 7.4737554	total: 5.91s	remaining: 2.08s
222:	learn: 7.4270074	total: 5.95s	remaining: 2.05s
223:	learn: 7.4017600	total: 5.97s	remaining: 2.03s
224:	learn: 7.3806959	total: 6s	remaining: 2s
225:	learn: 7.3554017	total: 6.03s	remaining: 1.97s
226:	learn: 7.3409799	total: 6.05s	remaining: 1.95s
227:	learn: 7.3212923	total: 6.07s	remaining: 1.92s
228:	learn: 7.3105787	total: 6.1s	remaining: 1.89s
229:	learn: 7.2892883	total: 6.13s	remaining: 1.86s
230:	learn: 7.2744332	total: 6.16s	remaining: 1.84s
231:	learn: 7.2520263	total: 6.19s	remaining: 1.81s
232:	learn: 7.2282060	total: 6.21s	remaining: 1.79s
233:	learn: 7.2079652	total: 6.24s	remaining: 1.76s
234:	learn: 7.1916393	total: 6.26s	remaining: 1.73s
235:	learn: 7.1701919	total: 6.29s	remaining: 1.71s
236:	learn: 7.1568798	total: 6.31s	remaining: 1.68s
237:	learn: 7.1311171	total: 6.34s	remaining: 1.65s
238:	learn: 7.1241442	total: 6.37s	remaining: 1.62s
239:	learn: 7.1023502	total: 6.4s	remaining: 1.6s
240:	learn: 7.0871109	total: 6.43s	remaining: 1.57s
241:	learn: 7.0717340	total: 6.45s	remaining: 1.55s
242:	learn: 7.0574975	total: 6.48s	remaining: 1.52s
243:	learn: 7.0489270	total: 6.5s	remaining: 1.49s
244:	learn: 7.0279173	total: 6.53s	remaining: 1.47s
245:	learn: 6.9967234	total: 6.55s	remaining: 1.44s
246:	learn: 6.9827176	total: 6.58s	remaining: 1.41s
247:	learn: 6.9632381	total: 6.61s	remaining: 1.39s
248:	learn: 6.9490747	total: 6.64s	remaining: 1.36s
249:	learn: 6.9350226	total: 6.66s	remaining: 1.33s
250:	learn: 6.9203338	total: 6.69s	remaining: 1.3s
251:	learn: 6.9078713	total: 6.71s	remaining: 1.28s
252:	learn: 6.8997471	total: 6.73s	remaining: 1.25s
253:	learn: 6.8786784	total: 6.76s	remaining: 1.22s
254:	learn: 6.8629866	total: 6.78s	remaining: 1.2s
255:	learn: 6.8497530	total: 6.82s	remaining: 1.17s
256:	learn: 6.8363263	total: 6.84s	remaining: 1.14s
257:	learn: 6.8232778	total: 6.87s	remaining: 1.12s
258:	learn: 6.7952234	total: 6.89s	remaining: 1.09s
259:	learn: 6.7671952	total: 6.92s	remaining: 1.06s
260:	learn: 6.7545126	total: 6.94s	remaining: 1.04s
261:	learn: 6.7414039	total: 6.96s	remaining: 1.01s
262:	learn: 6.7307423	total: 6.99s	remaining: 983ms
263:	learn: 6.6887074	total: 7.02s	remaining: 957ms
264:	learn: 6.6786482	total: 7.04s	remaining: 931ms
265:	learn: 6.6520387	total: 7.07s	remaining: 904ms
266:	learn: 6.6371511	total: 7.09s	remaining: 877ms
267:	learn: 6.6139304	total: 7.12s	remaining: 850ms
268:	learn: 6.6024854	total: 7.14s	remaining: 823ms
269:	learn: 6.5811216	total: 7.16s	remaining: 796ms
270:	learn: 6.5396874	total: 7.19s	remaining: 769ms
271:	learn: 6.5260569	total: 7.22s	remaining: 743ms
272:	learn: 6.5161555	total: 7.25s	remaining: 717ms
273:	learn: 6.5055568	total: 7.27s	remaining: 690ms
274:	learn: 6.4955852	total: 7.3s	remaining: 663ms
275:	learn: 6.4768059	total: 7.32s	remaining: 637ms
276:	learn: 6.4526678	total: 7.35s	remaining: 610ms
277:	learn: 6.4407932	total: 7.37s	remaining: 583ms
278:	learn: 6.4229786	total: 7.4s	remaining: 557ms
279:	learn: 6.4143528	total: 7.42s	remaining: 530ms
280:	learn: 6.3939760	total: 7.45s	remaining: 504ms
281:	learn: 6.3821368	total: 7.48s	remaining: 477ms
282:	learn: 6.3733999	total: 7.5s	remaining: 451ms
283:	learn: 6.3506155	total: 7.52s	remaining: 424ms
284:	learn: 6.3456374	total: 7.55s	remaining: 397ms
285:	learn: 6.3423150	total: 7.57s	remaining: 371ms
286:	learn: 6.3323118	total: 7.6s	remaining: 344ms
287:	learn: 6.3209916	total: 7.62s	remaining: 318ms
288:	learn: 6.3017754	total: 7.66s	remaining: 291ms
289:	learn: 6.2738210	total: 7.68s	remaining: 265ms
290:	learn: 6.2684358	total: 7.71s	remaining: 238ms
291:	learn: 6.2546793	total: 7.73s	remaining: 212ms
292:	learn: 6.2441498	total: 7.75s	remaining: 185ms
293:	learn: 6.2406001	total: 7.78s	remaining: 159ms
294:	learn: 6.2308638	total: 7.8s	remaining: 132ms
295:	learn: 6.2166524	total: 7.83s	remaining: 106ms
296:	learn: 6.2029239	total: 7.85s	remaining: 79.3ms
297:	learn: 6.1930984	total: 7.88s	remaining: 52.9ms
298:	learn: 6.1787666	total: 7.91s	remaining: 26.4ms
299:	learn: 6.1715886	total: 7.93s	remaining: 0us
0:	learn: 43.0189040	total: 23.3ms	remaining: 6.97s
1:	learn: 42.1913120	total: 47ms	remaining: 7s
2:	learn: 41.2381785	total: 72.5ms	remaining: 7.17s
3:	learn: 40.3733911	total: 108ms	remaining: 7.99s
4:	learn: 39.7420433	total: 135ms	remaining: 7.97s
5:	learn: 38.9384932	total: 159ms	remaining: 7.81s
6:	learn: 38.2027180	total: 184ms	remaining: 7.71s
7:	learn: 37.5736018	total: 208ms	remaining: 7.6s
8:	learn: 36.9042368	total: 232ms	remaining: 7.49s
9:	learn: 36.1138721	total: 266ms	remaining: 7.7s
10:	learn: 35.4444268	total: 269ms	remaining: 7.06s
11:	learn: 34.7889997	total: 283ms	remaining: 6.8s
12:	learn: 34.3622266	total: 311ms	remaining: 6.87s
13:	learn: 33.6999120	total: 346ms	remaining: 7.07s
14:	learn: 32.9955576	total: 373ms	remaining: 7.08s
15:	learn: 32.3475617	total: 399ms	remaining: 7.09s
16:	learn: 31.9028750	total: 426ms	remaining: 7.09s
17:	learn: 31.3786390	total: 453ms	remaining: 7.1s
18:	learn: 30.9731314	total: 480ms	remaining: 7.09s
19:	learn: 30.5397110	total: 506ms	remaining: 7.09s
20:	learn: 30.0650165	total: 533ms	remaining: 7.08s
21:	learn: 29.4732599	total: 579ms	remaining: 7.31s
22:	learn: 29.0746185	total: 606ms	remaining: 7.29s
23:	learn: 28.5839328	total: 633ms	remaining: 7.28s
24:	learn: 28.2894974	total: 661ms	remaining: 7.27s
25:	learn: 27.7954367	total: 687ms	remaining: 7.24s
26:	learn: 27.3542996	total: 714ms	remaining: 7.22s
27:	learn: 27.0838564	total: 744ms	remaining: 7.23s
28:	learn: 26.7019509	total: 776ms	remaining: 7.25s
29:	learn: 26.3607640	total: 803ms	remaining: 7.23s
30:	learn: 25.9174899	total: 837ms	remaining: 7.26s
31:	learn: 25.5590328	total: 864ms	remaining: 7.24s
32:	learn: 25.1682834	total: 891ms	remaining: 7.21s
33:	learn: 24.8123558	total: 918ms	remaining: 7.18s
34:	learn: 24.5841473	total: 947ms	remaining: 7.17s
35:	learn: 24.2224307	total: 987ms	remaining: 7.24s
36:	learn: 23.9745715	total: 1.01s	remaining: 7.21s
37:	learn: 23.6958493	total: 1.04s	remaining: 7.19s
38:	learn: 23.3890143	total: 1.08s	remaining: 7.22s
39:	learn: 23.1113968	total: 1.1s	remaining: 7.19s
40:	learn: 22.8519880	total: 1.13s	remaining: 7.15s
41:	learn: 22.5944697	total: 1.16s	remaining: 7.13s
42:	learn: 22.3853418	total: 1.2s	remaining: 7.14s
43:	learn: 22.1827007	total: 1.22s	remaining: 7.12s
44:	learn: 22.0186852	total: 1.25s	remaining: 7.08s
45:	learn: 21.7686773	total: 1.28s	remaining: 7.05s
46:	learn: 21.5978489	total: 1.31s	remaining: 7.06s
47:	learn: 21.3542004	total: 1.34s	remaining: 7.03s
48:	learn: 21.1752073	total: 1.36s	remaining: 7s
49:	learn: 21.0415246	total: 1.39s	remaining: 6.97s
50:	learn: 20.8441081	total: 1.43s	remaining: 6.98s
51:	learn: 20.5918001	total: 1.46s	remaining: 6.95s
52:	learn: 20.4441208	total: 1.48s	remaining: 6.92s
53:	learn: 20.2679633	total: 1.51s	remaining: 6.89s
54:	learn: 20.1163092	total: 1.55s	remaining: 6.89s
55:	learn: 19.9714704	total: 1.57s	remaining: 6.86s
56:	learn: 19.8249765	total: 1.61s	remaining: 6.86s
57:	learn: 19.6607355	total: 1.64s	remaining: 6.83s
58:	learn: 19.4877956	total: 1.67s	remaining: 6.8s
59:	learn: 19.3053072	total: 1.69s	remaining: 6.77s
60:	learn: 19.1885738	total: 1.72s	remaining: 6.74s
61:	learn: 19.0346503	total: 1.75s	remaining: 6.7s
62:	learn: 18.8347986	total: 1.77s	remaining: 6.67s
63:	learn: 18.6814926	total: 1.81s	remaining: 6.68s
64:	learn: 18.5382672	total: 1.85s	remaining: 6.68s
65:	learn: 18.3895833	total: 1.88s	remaining: 6.66s
66:	learn: 18.2694672	total: 1.91s	remaining: 6.63s
67:	learn: 18.1196051	total: 1.93s	remaining: 6.59s
68:	learn: 17.9925317	total: 1.96s	remaining: 6.56s
69:	learn: 17.8749679	total: 1.99s	remaining: 6.53s
70:	learn: 17.7225935	total: 2.01s	remaining: 6.49s
71:	learn: 17.5806906	total: 2.05s	remaining: 6.5s
72:	learn: 17.4922570	total: 2.08s	remaining: 6.47s
73:	learn: 17.3984999	total: 2.11s	remaining: 6.43s
74:	learn: 17.3128227	total: 2.13s	remaining: 6.4s
75:	learn: 17.2165163	total: 2.16s	remaining: 6.37s
76:	learn: 17.0889232	total: 2.19s	remaining: 6.33s
77:	learn: 16.9583567	total: 2.21s	remaining: 6.3s
78:	learn: 16.8340539	total: 2.24s	remaining: 6.27s
79:	learn: 16.7346257	total: 2.29s	remaining: 6.29s
80:	learn: 16.6446663	total: 2.31s	remaining: 6.26s
81:	learn: 16.5218155	total: 2.34s	remaining: 6.23s
82:	learn: 16.4054583	total: 2.37s	remaining: 6.2s
83:	learn: 16.2803558	total: 2.4s	remaining: 6.16s
84:	learn: 16.1516324	total: 2.42s	remaining: 6.13s
85:	learn: 16.0643357	total: 2.45s	remaining: 6.1s
86:	learn: 15.9817265	total: 2.48s	remaining: 6.07s
87:	learn: 15.9144474	total: 2.52s	remaining: 6.07s
88:	learn: 15.8380424	total: 2.55s	remaining: 6.04s
89:	learn: 15.7453770	total: 2.57s	remaining: 6s
90:	learn: 15.6720653	total: 2.6s	remaining: 5.97s
91:	learn: 15.5626839	total: 2.63s	remaining: 5.94s
92:	learn: 15.4727375	total: 2.65s	remaining: 5.91s
93:	learn: 15.3655885	total: 2.68s	remaining: 5.88s
94:	learn: 15.2496762	total: 2.72s	remaining: 5.87s
95:	learn: 15.1773522	total: 2.75s	remaining: 5.84s
96:	learn: 15.0924366	total: 2.78s	remaining: 5.82s
97:	learn: 15.0082209	total: 2.81s	remaining: 5.79s
98:	learn: 14.9178437	total: 2.84s	remaining: 5.76s
99:	learn: 14.8149449	total: 2.87s	remaining: 5.73s
100:	learn: 14.7450303	total: 2.9s	remaining: 5.71s
101:	learn: 14.6462390	total: 2.92s	remaining: 5.68s
102:	learn: 14.5348825	total: 2.95s	remaining: 5.65s
103:	learn: 14.4483847	total: 2.98s	remaining: 5.62s
104:	learn: 14.4006573	total: 3.01s	remaining: 5.6s
105:	learn: 14.3322113	total: 3.04s	remaining: 5.57s
106:	learn: 14.2471466	total: 3.07s	remaining: 5.53s
107:	learn: 14.1788249	total: 3.1s	remaining: 5.5s
108:	learn: 14.1033594	total: 3.13s	remaining: 5.49s
109:	learn: 14.0161080	total: 3.16s	remaining: 5.46s
110:	learn: 13.9710960	total: 3.19s	remaining: 5.42s
111:	learn: 13.8941529	total: 3.21s	remaining: 5.4s
112:	learn: 13.8246456	total: 3.25s	remaining: 5.38s
113:	learn: 13.7518933	total: 3.28s	remaining: 5.35s
114:	learn: 13.7003709	total: 3.31s	remaining: 5.32s
115:	learn: 13.6359576	total: 3.33s	remaining: 5.29s
116:	learn: 13.6039211	total: 3.37s	remaining: 5.26s
117:	learn: 13.5361545	total: 3.39s	remaining: 5.24s
118:	learn: 13.4554429	total: 3.42s	remaining: 5.2s
119:	learn: 13.3922439	total: 3.45s	remaining: 5.17s
120:	learn: 13.2895862	total: 3.48s	remaining: 5.15s
121:	learn: 13.1749097	total: 3.51s	remaining: 5.12s
122:	learn: 13.1167631	total: 3.53s	remaining: 5.09s
123:	learn: 13.0410984	total: 3.56s	remaining: 5.05s
124:	learn: 12.9506234	total: 3.6s	remaining: 5.04s
125:	learn: 12.8890045	total: 3.63s	remaining: 5.01s
126:	learn: 12.8295606	total: 3.65s	remaining: 4.98s
127:	learn: 12.7634290	total: 3.68s	remaining: 4.95s
128:	learn: 12.6891923	total: 3.71s	remaining: 4.92s
129:	learn: 12.6312306	total: 3.74s	remaining: 4.9s
130:	learn: 12.5802486	total: 3.77s	remaining: 4.87s
131:	learn: 12.5246529	total: 3.8s	remaining: 4.84s
132:	learn: 12.4479017	total: 3.84s	remaining: 4.82s
133:	learn: 12.3930818	total: 3.87s	remaining: 4.79s
134:	learn: 12.3373247	total: 3.89s	remaining: 4.76s
135:	learn: 12.3039291	total: 3.92s	remaining: 4.73s
136:	learn: 12.2583784	total: 3.95s	remaining: 4.7s
137:	learn: 12.1902920	total: 3.98s	remaining: 4.68s
138:	learn: 12.1515651	total: 4.02s	remaining: 4.66s
139:	learn: 12.1008468	total: 4.05s	remaining: 4.63s
140:	learn: 12.0752080	total: 4.08s	remaining: 4.6s
141:	learn: 12.0263787	total: 4.11s	remaining: 4.57s
142:	learn: 11.9709736	total: 4.13s	remaining: 4.54s
143:	learn: 11.9295822	total: 4.16s	remaining: 4.51s
144:	learn: 11.8867911	total: 4.19s	remaining: 4.48s
145:	learn: 11.8179180	total: 4.22s	remaining: 4.46s
146:	learn: 11.7448446	total: 4.26s	remaining: 4.43s
147:	learn: 11.7332909	total: 4.29s	remaining: 4.4s
148:	learn: 11.6907270	total: 4.31s	remaining: 4.37s
149:	learn: 11.6628056	total: 4.34s	remaining: 4.34s
150:	learn: 11.6039432	total: 4.37s	remaining: 4.31s
151:	learn: 11.5752331	total: 4.39s	remaining: 4.28s
152:	learn: 11.5376476	total: 4.42s	remaining: 4.25s
153:	learn: 11.4947632	total: 4.46s	remaining: 4.23s
154:	learn: 11.4484147	total: 4.49s	remaining: 4.2s
155:	learn: 11.3925819	total: 4.52s	remaining: 4.17s
156:	learn: 11.3287384	total: 4.54s	remaining: 4.14s
157:	learn: 11.2566623	total: 4.57s	remaining: 4.11s
158:	learn: 11.2000227	total: 4.6s	remaining: 4.08s
159:	learn: 11.1023408	total: 4.63s	remaining: 4.05s
160:	learn: 11.0489770	total: 4.66s	remaining: 4.02s
161:	learn: 11.0026542	total: 4.69s	remaining: 4s
162:	learn: 10.9309626	total: 4.72s	remaining: 3.97s
163:	learn: 10.8844157	total: 4.75s	remaining: 3.94s
164:	learn: 10.8292008	total: 4.78s	remaining: 3.91s
165:	learn: 10.7365612	total: 4.8s	remaining: 3.88s
166:	learn: 10.6948804	total: 4.83s	remaining: 3.85s
167:	learn: 10.6566665	total: 4.86s	remaining: 3.82s
168:	learn: 10.6219222	total: 4.89s	remaining: 3.79s
169:	learn: 10.5930877	total: 4.92s	remaining: 3.76s
170:	learn: 10.5520362	total: 4.96s	remaining: 3.74s
171:	learn: 10.5160879	total: 4.98s	remaining: 3.71s
172:	learn: 10.4653972	total: 5.01s	remaining: 3.68s
173:	learn: 10.4164242	total: 5.04s	remaining: 3.65s
174:	learn: 10.3821629	total: 5.07s	remaining: 3.62s
175:	learn: 10.3623975	total: 5.09s	remaining: 3.59s
176:	learn: 10.3095845	total: 5.12s	remaining: 3.56s
177:	learn: 10.2501576	total: 5.15s	remaining: 3.53s
178:	learn: 10.2276060	total: 5.18s	remaining: 3.5s
179:	learn: 10.2052696	total: 5.21s	remaining: 3.47s
180:	learn: 10.1685156	total: 5.24s	remaining: 3.44s
181:	learn: 10.1443775	total: 5.26s	remaining: 3.41s
182:	learn: 10.0531518	total: 5.29s	remaining: 3.38s
183:	learn: 10.0052361	total: 5.32s	remaining: 3.35s
184:	learn: 9.9598299	total: 5.34s	remaining: 3.32s
185:	learn: 9.9062881	total: 5.38s	remaining: 3.3s
186:	learn: 9.8476621	total: 5.42s	remaining: 3.27s
187:	learn: 9.7943755	total: 5.44s	remaining: 3.24s
188:	learn: 9.7545158	total: 5.47s	remaining: 3.21s
189:	learn: 9.7325928	total: 5.5s	remaining: 3.18s
190:	learn: 9.6597076	total: 5.52s	remaining: 3.15s
191:	learn: 9.6049808	total: 5.55s	remaining: 3.12s
192:	learn: 9.5210539	total: 5.58s	remaining: 3.09s
193:	learn: 9.4839833	total: 5.61s	remaining: 3.07s
194:	learn: 9.4030810	total: 5.64s	remaining: 3.04s
195:	learn: 9.3610011	total: 5.67s	remaining: 3.01s
196:	learn: 9.3194779	total: 5.7s	remaining: 2.98s
197:	learn: 9.2866867	total: 5.73s	remaining: 2.95s
198:	learn: 9.2508142	total: 5.76s	remaining: 2.92s
199:	learn: 9.2271576	total: 5.79s	remaining: 2.9s
200:	learn: 9.1740668	total: 5.82s	remaining: 2.87s
201:	learn: 9.1586477	total: 5.85s	remaining: 2.84s
202:	learn: 9.1429015	total: 5.88s	remaining: 2.81s
203:	learn: 9.1133248	total: 5.91s	remaining: 2.78s
204:	learn: 9.0711331	total: 5.94s	remaining: 2.75s
205:	learn: 9.0093562	total: 5.96s	remaining: 2.72s
206:	learn: 8.9859881	total: 6s	remaining: 2.69s
207:	learn: 8.9419294	total: 6.03s	remaining: 2.67s
208:	learn: 8.8732493	total: 6.05s	remaining: 2.63s
209:	learn: 8.8186181	total: 6.08s	remaining: 2.6s
210:	learn: 8.7860222	total: 6.11s	remaining: 2.58s
211:	learn: 8.7597312	total: 6.14s	remaining: 2.55s
212:	learn: 8.7305431	total: 6.17s	remaining: 2.52s
213:	learn: 8.6620534	total: 6.2s	remaining: 2.49s
214:	learn: 8.6317582	total: 6.24s	remaining: 2.46s
215:	learn: 8.6021758	total: 6.26s	remaining: 2.44s
216:	learn: 8.5696515	total: 6.29s	remaining: 2.41s
217:	learn: 8.5267761	total: 6.32s	remaining: 2.38s
218:	learn: 8.5135802	total: 6.35s	remaining: 2.35s
219:	learn: 8.4762506	total: 6.38s	remaining: 2.32s
220:	learn: 8.4462181	total: 6.41s	remaining: 2.29s
221:	learn: 8.4167253	total: 6.44s	remaining: 2.26s
222:	learn: 8.3867332	total: 6.47s	remaining: 2.23s
223:	learn: 8.3527829	total: 6.5s	remaining: 2.21s
224:	learn: 8.3221175	total: 6.53s	remaining: 2.17s
225:	learn: 8.3149566	total: 6.55s	remaining: 2.15s
226:	learn: 8.3023601	total: 6.58s	remaining: 2.12s
227:	learn: 8.2720745	total: 6.61s	remaining: 2.09s
228:	learn: 8.2581250	total: 6.64s	remaining: 2.06s
229:	learn: 8.2207983	total: 6.68s	remaining: 2.03s
230:	learn: 8.2083228	total: 6.71s	remaining: 2s
231:	learn: 8.1774734	total: 6.74s	remaining: 1.97s
232:	learn: 8.1280317	total: 6.76s	remaining: 1.94s
233:	learn: 8.0969454	total: 6.79s	remaining: 1.92s
234:	learn: 8.0653906	total: 6.82s	remaining: 1.89s
235:	learn: 8.0403548	total: 6.85s	remaining: 1.86s
236:	learn: 8.0309296	total: 6.89s	remaining: 1.83s
237:	learn: 7.9802761	total: 6.92s	remaining: 1.8s
238:	learn: 7.9595062	total: 6.95s	remaining: 1.77s
239:	learn: 7.9560132	total: 6.97s	remaining: 1.74s
240:	learn: 7.9188077	total: 7s	remaining: 1.71s
241:	learn: 7.9129376	total: 7.03s	remaining: 1.68s
242:	learn: 7.8845382	total: 7.06s	remaining: 1.66s
243:	learn: 7.8699627	total: 7.09s	remaining: 1.63s
244:	learn: 7.8332493	total: 7.13s	remaining: 1.6s
245:	learn: 7.7807468	total: 7.16s	remaining: 1.57s
246:	learn: 7.7739426	total: 7.19s	remaining: 1.54s
247:	learn: 7.7384141	total: 7.21s	remaining: 1.51s
248:	learn: 7.7066380	total: 7.24s	remaining: 1.48s
249:	learn: 7.7001271	total: 7.27s	remaining: 1.45s
250:	learn: 7.6846399	total: 7.3s	remaining: 1.42s
251:	learn: 7.6791814	total: 7.33s	remaining: 1.4s
252:	learn: 7.6451688	total: 7.37s	remaining: 1.37s
253:	learn: 7.6117158	total: 7.39s	remaining: 1.34s
254:	learn: 7.6012012	total: 7.42s	remaining: 1.31s
255:	learn: 7.5729959	total: 7.45s	remaining: 1.28s
256:	learn: 7.5370997	total: 7.47s	remaining: 1.25s
257:	learn: 7.5099776	total: 7.5s	remaining: 1.22s
258:	learn: 7.4860975	total: 7.53s	remaining: 1.19s
259:	learn: 7.4566817	total: 7.57s	remaining: 1.16s
260:	learn: 7.4269980	total: 7.59s	remaining: 1.13s
261:	learn: 7.3923465	total: 7.63s	remaining: 1.11s
262:	learn: 7.3675376	total: 7.66s	remaining: 1.08s
263:	learn: 7.3392461	total: 7.68s	remaining: 1.05s
264:	learn: 7.3102490	total: 7.71s	remaining: 1.02s
265:	learn: 7.3010635	total: 7.74s	remaining: 990ms
266:	learn: 7.2733113	total: 7.78s	remaining: 961ms
267:	learn: 7.2683610	total: 7.8s	remaining: 932ms
268:	learn: 7.2532714	total: 7.83s	remaining: 902ms
269:	learn: 7.2444185	total: 7.86s	remaining: 874ms
270:	learn: 7.2300953	total: 7.89s	remaining: 844ms
271:	learn: 7.2077357	total: 7.92s	remaining: 815ms
272:	learn: 7.1843423	total: 7.95s	remaining: 786ms
273:	learn: 7.1754867	total: 7.98s	remaining: 757ms
274:	learn: 7.1395344	total: 8.01s	remaining: 728ms
275:	learn: 7.1342567	total: 8.03s	remaining: 699ms
276:	learn: 7.1116057	total: 8.06s	remaining: 669ms
277:	learn: 7.0822569	total: 8.1s	remaining: 641ms
278:	learn: 7.0731958	total: 8.12s	remaining: 612ms
279:	learn: 7.0576479	total: 8.15s	remaining: 582ms
280:	learn: 7.0354817	total: 8.18s	remaining: 553ms
281:	learn: 7.0277403	total: 8.21s	remaining: 524ms
282:	learn: 7.0028621	total: 8.24s	remaining: 495ms
283:	learn: 6.9820607	total: 8.27s	remaining: 466ms
284:	learn: 6.9645494	total: 8.29s	remaining: 437ms
285:	learn: 6.9563224	total: 8.33s	remaining: 408ms
286:	learn: 6.9482036	total: 8.36s	remaining: 379ms
287:	learn: 6.9116066	total: 8.38s	remaining: 349ms
288:	learn: 6.8884274	total: 8.42s	remaining: 321ms
289:	learn: 6.8632506	total: 8.45s	remaining: 291ms
290:	learn: 6.8447357	total: 8.48s	remaining: 262ms
291:	learn: 6.8242972	total: 8.5s	remaining: 233ms
292:	learn: 6.8012643	total: 8.53s	remaining: 204ms
293:	learn: 6.7800583	total: 8.56s	remaining: 175ms
294:	learn: 6.7687042	total: 8.59s	remaining: 146ms
295:	learn: 6.7454529	total: 8.62s	remaining: 116ms
296:	learn: 6.7227229	total: 8.65s	remaining: 87.4ms
297:	learn: 6.7004834	total: 8.68s	remaining: 58.3ms
298:	learn: 6.6931313	total: 8.71s	remaining: 29.1ms
299:	learn: 6.6604653	total: 8.73s	remaining: 0us
0:	learn: 46.4449485	total: 26.6ms	remaining: 7.96s
1:	learn: 45.6641003	total: 59.3ms	remaining: 8.83s
2:	learn: 44.9322182	total: 87.9ms	remaining: 8.7s
3:	learn: 44.1111890	total: 113ms	remaining: 8.39s
4:	learn: 43.2956452	total: 140ms	remaining: 8.24s
5:	learn: 42.6298126	total: 165ms	remaining: 8.08s
6:	learn: 42.0896057	total: 192ms	remaining: 8.03s
7:	learn: 41.2698632	total: 217ms	remaining: 7.93s
8:	learn: 40.4846232	total: 242ms	remaining: 7.83s
9:	learn: 39.7069009	total: 268ms	remaining: 7.78s
10:	learn: 38.9656593	total: 272ms	remaining: 7.15s
11:	learn: 38.5069229	total: 305ms	remaining: 7.31s
12:	learn: 37.8073380	total: 330ms	remaining: 7.28s
13:	learn: 37.3882967	total: 356ms	remaining: 7.27s
14:	learn: 36.8180964	total: 381ms	remaining: 7.24s
15:	learn: 36.2948556	total: 405ms	remaining: 7.19s
16:	learn: 35.6877194	total: 430ms	remaining: 7.16s
17:	learn: 35.3344416	total: 455ms	remaining: 7.12s
18:	learn: 34.8793907	total: 480ms	remaining: 7.1s
19:	learn: 34.3129264	total: 515ms	remaining: 7.21s
20:	learn: 34.0804390	total: 544ms	remaining: 7.23s
21:	learn: 33.4413882	total: 569ms	remaining: 7.19s
22:	learn: 32.9936060	total: 596ms	remaining: 7.17s
23:	learn: 32.6458868	total: 622ms	remaining: 7.15s
24:	learn: 32.3273431	total: 647ms	remaining: 7.11s
25:	learn: 31.8309940	total: 672ms	remaining: 7.09s
26:	learn: 31.4310003	total: 699ms	remaining: 7.07s
27:	learn: 31.1804602	total: 733ms	remaining: 7.12s
28:	learn: 30.8535447	total: 760ms	remaining: 7.1s
29:	learn: 30.4063180	total: 784ms	remaining: 7.06s
30:	learn: 30.1876699	total: 810ms	remaining: 7.03s
31:	learn: 29.8778033	total: 834ms	remaining: 6.98s
32:	learn: 29.6371470	total: 860ms	remaining: 6.95s
33:	learn: 29.3801255	total: 884ms	remaining: 6.92s
34:	learn: 29.1426244	total: 910ms	remaining: 6.89s
35:	learn: 28.9166951	total: 945ms	remaining: 6.93s
36:	learn: 28.6597815	total: 973ms	remaining: 6.92s
37:	learn: 28.3844706	total: 1000ms	remaining: 6.89s
38:	learn: 28.0894923	total: 1.03s	remaining: 6.87s
39:	learn: 27.7571740	total: 1.05s	remaining: 6.84s
40:	learn: 27.4609127	total: 1.08s	remaining: 6.81s
41:	learn: 27.1948352	total: 1.1s	remaining: 6.77s
42:	learn: 26.9507594	total: 1.13s	remaining: 6.74s
43:	learn: 26.6347229	total: 1.16s	remaining: 6.75s
44:	learn: 26.3479735	total: 1.19s	remaining: 6.72s
45:	learn: 26.1335817	total: 1.21s	remaining: 6.69s
46:	learn: 25.8868210	total: 1.24s	remaining: 6.66s
47:	learn: 25.6881647	total: 1.26s	remaining: 6.62s
48:	learn: 25.4764814	total: 1.29s	remaining: 6.59s
49:	learn: 25.2279851	total: 1.31s	remaining: 6.56s
50:	learn: 24.9914875	total: 1.34s	remaining: 6.53s
51:	learn: 24.7951252	total: 1.37s	remaining: 6.52s
52:	learn: 24.6181712	total: 1.4s	remaining: 6.52s
53:	learn: 24.3711141	total: 1.42s	remaining: 6.49s
54:	learn: 24.1983381	total: 1.45s	remaining: 6.46s
55:	learn: 24.0518193	total: 1.48s	remaining: 6.43s
56:	learn: 23.8035754	total: 1.5s	remaining: 6.41s
57:	learn: 23.5891443	total: 1.53s	remaining: 6.38s
58:	learn: 23.3650788	total: 1.55s	remaining: 6.35s
59:	learn: 23.1423622	total: 1.58s	remaining: 6.33s
60:	learn: 22.9562061	total: 1.61s	remaining: 6.32s
61:	learn: 22.7841608	total: 1.64s	remaining: 6.29s
62:	learn: 22.5259611	total: 1.67s	remaining: 6.26s
63:	learn: 22.3959565	total: 1.69s	remaining: 6.24s
64:	learn: 22.2695041	total: 1.72s	remaining: 6.21s
65:	learn: 22.0116444	total: 1.74s	remaining: 6.17s
66:	learn: 21.8636416	total: 1.77s	remaining: 6.15s
67:	learn: 21.7170816	total: 1.8s	remaining: 6.16s
68:	learn: 21.6130887	total: 1.83s	remaining: 6.14s
69:	learn: 21.4107735	total: 1.86s	remaining: 6.11s
70:	learn: 21.2682184	total: 1.89s	remaining: 6.08s
71:	learn: 21.0421124	total: 1.91s	remaining: 6.05s
72:	learn: 20.8829831	total: 1.94s	remaining: 6.02s
73:	learn: 20.7916905	total: 1.96s	remaining: 5.99s
74:	learn: 20.6572110	total: 1.99s	remaining: 5.98s
75:	learn: 20.4683201	total: 2.02s	remaining: 5.96s
76:	learn: 20.3387806	total: 2.05s	remaining: 5.93s
77:	learn: 20.2301442	total: 2.07s	remaining: 5.89s
78:	learn: 20.1399739	total: 2.1s	remaining: 5.86s
79:	learn: 20.0395988	total: 2.12s	remaining: 5.83s
80:	learn: 19.9529190	total: 2.15s	remaining: 5.8s
81:	learn: 19.8285498	total: 2.17s	remaining: 5.77s
82:	learn: 19.6862504	total: 2.19s	remaining: 5.74s
83:	learn: 19.5764172	total: 2.22s	remaining: 5.72s
84:	learn: 19.4499650	total: 2.26s	remaining: 5.71s
85:	learn: 19.3449362	total: 2.28s	remaining: 5.68s
86:	learn: 19.1854254	total: 2.31s	remaining: 5.65s
87:	learn: 19.0850074	total: 2.33s	remaining: 5.62s
88:	learn: 18.9724934	total: 2.36s	remaining: 5.59s
89:	learn: 18.8778956	total: 2.38s	remaining: 5.57s
90:	learn: 18.7370373	total: 2.41s	remaining: 5.54s
91:	learn: 18.6192464	total: 2.44s	remaining: 5.51s
92:	learn: 18.5100314	total: 2.47s	remaining: 5.49s
93:	learn: 18.4275820	total: 2.49s	remaining: 5.46s
94:	learn: 18.3242001	total: 2.51s	remaining: 5.42s
95:	learn: 18.2110620	total: 2.54s	remaining: 5.39s
96:	learn: 18.0955256	total: 2.56s	remaining: 5.36s
97:	learn: 17.9941571	total: 2.58s	remaining: 5.33s
98:	learn: 17.8973235	total: 2.61s	remaining: 5.3s
99:	learn: 17.8100972	total: 2.63s	remaining: 5.27s
100:	learn: 17.7386244	total: 2.66s	remaining: 5.24s
101:	learn: 17.6310903	total: 2.69s	remaining: 5.23s
102:	learn: 17.5516996	total: 2.72s	remaining: 5.2s
103:	learn: 17.4617467	total: 2.74s	remaining: 5.17s
104:	learn: 17.3666766	total: 2.77s	remaining: 5.14s
105:	learn: 17.2221165	total: 2.79s	remaining: 5.11s
106:	learn: 17.0790059	total: 2.82s	remaining: 5.08s
107:	learn: 16.9698310	total: 2.84s	remaining: 5.05s
108:	learn: 16.8969362	total: 2.87s	remaining: 5.03s
109:	learn: 16.7819942	total: 2.9s	remaining: 5.01s
110:	learn: 16.6911902	total: 2.92s	remaining: 4.98s
111:	learn: 16.5519175	total: 2.95s	remaining: 4.95s
112:	learn: 16.3906885	total: 2.97s	remaining: 4.92s
113:	learn: 16.3090927	total: 3s	remaining: 4.89s
114:	learn: 16.2205215	total: 3.02s	remaining: 4.86s
115:	learn: 16.1233780	total: 3.04s	remaining: 4.83s
116:	learn: 16.0321663	total: 3.07s	remaining: 4.8s
117:	learn: 15.9579011	total: 3.1s	remaining: 4.79s
118:	learn: 15.8593485	total: 3.13s	remaining: 4.76s
119:	learn: 15.7788251	total: 3.15s	remaining: 4.73s
120:	learn: 15.7287407	total: 3.18s	remaining: 4.7s
121:	learn: 15.5788208	total: 3.2s	remaining: 4.67s
122:	learn: 15.5086549	total: 3.23s	remaining: 4.64s
123:	learn: 15.4364731	total: 3.25s	remaining: 4.61s
124:	learn: 15.3549185	total: 3.28s	remaining: 4.59s
125:	learn: 15.2967084	total: 3.31s	remaining: 4.57s
126:	learn: 15.1872607	total: 3.33s	remaining: 4.54s
127:	learn: 15.0932023	total: 3.36s	remaining: 4.51s
128:	learn: 15.0097364	total: 3.38s	remaining: 4.48s
129:	learn: 14.9463156	total: 3.4s	remaining: 4.45s
130:	learn: 14.8900172	total: 3.43s	remaining: 4.42s
131:	learn: 14.8358826	total: 3.45s	remaining: 4.39s
132:	learn: 14.7553997	total: 3.48s	remaining: 4.37s
133:	learn: 14.6821554	total: 3.51s	remaining: 4.35s
134:	learn: 14.5304879	total: 3.54s	remaining: 4.33s
135:	learn: 14.4324442	total: 3.56s	remaining: 4.3s
136:	learn: 14.3331494	total: 3.59s	remaining: 4.27s
137:	learn: 14.2753055	total: 3.61s	remaining: 4.24s
138:	learn: 14.1937968	total: 3.64s	remaining: 4.21s
139:	learn: 14.1149360	total: 3.66s	remaining: 4.18s
140:	learn: 14.0475961	total: 3.69s	remaining: 4.16s
141:	learn: 13.9679410	total: 3.72s	remaining: 4.14s
142:	learn: 13.8728976	total: 3.74s	remaining: 4.11s
143:	learn: 13.8088340	total: 3.77s	remaining: 4.08s
144:	learn: 13.7225802	total: 3.79s	remaining: 4.05s
145:	learn: 13.6027859	total: 3.82s	remaining: 4.03s
146:	learn: 13.5360562	total: 3.84s	remaining: 4s
147:	learn: 13.4527264	total: 3.86s	remaining: 3.97s
148:	learn: 13.3905685	total: 3.9s	remaining: 3.95s
149:	learn: 13.3231120	total: 3.92s	remaining: 3.92s
150:	learn: 13.2748277	total: 3.96s	remaining: 3.91s
151:	learn: 13.2011042	total: 3.99s	remaining: 3.88s
152:	learn: 13.1113158	total: 4.01s	remaining: 3.86s
153:	learn: 13.0630373	total: 4.04s	remaining: 3.83s
154:	learn: 12.9877054	total: 4.07s	remaining: 3.81s
155:	learn: 12.8975618	total: 4.09s	remaining: 3.78s
156:	learn: 12.8226873	total: 4.12s	remaining: 3.76s
157:	learn: 12.7653176	total: 4.16s	remaining: 3.73s
158:	learn: 12.7032259	total: 4.18s	remaining: 3.71s
159:	learn: 12.6413414	total: 4.22s	remaining: 3.69s
160:	learn: 12.5418162	total: 4.24s	remaining: 3.66s
161:	learn: 12.4761943	total: 4.27s	remaining: 3.64s
162:	learn: 12.4099277	total: 4.3s	remaining: 3.61s
163:	learn: 12.3393405	total: 4.33s	remaining: 3.59s
164:	learn: 12.2429002	total: 4.36s	remaining: 3.56s
165:	learn: 12.1931336	total: 4.39s	remaining: 3.54s
166:	learn: 12.0509054	total: 4.42s	remaining: 3.52s
167:	learn: 11.9940166	total: 4.45s	remaining: 3.5s
168:	learn: 11.9267615	total: 4.48s	remaining: 3.48s
169:	learn: 11.8595898	total: 4.51s	remaining: 3.45s
170:	learn: 11.7291128	total: 4.54s	remaining: 3.42s
171:	learn: 11.6574232	total: 4.57s	remaining: 3.4s
172:	learn: 11.5771876	total: 4.6s	remaining: 3.37s
173:	learn: 11.4934307	total: 4.62s	remaining: 3.35s
174:	learn: 11.4454134	total: 4.65s	remaining: 3.32s
175:	learn: 11.3829392	total: 4.68s	remaining: 3.3s
176:	learn: 11.2971903	total: 4.71s	remaining: 3.27s
177:	learn: 11.2515029	total: 4.74s	remaining: 3.25s
178:	learn: 11.2046889	total: 4.76s	remaining: 3.22s
179:	learn: 11.1528497	total: 4.8s	remaining: 3.2s
180:	learn: 11.0691294	total: 4.83s	remaining: 3.17s
181:	learn: 11.0191173	total: 4.86s	remaining: 3.15s
182:	learn: 10.9046058	total: 4.88s	remaining: 3.12s
183:	learn: 10.8625890	total: 4.92s	remaining: 3.1s
184:	learn: 10.7913928	total: 4.95s	remaining: 3.07s
185:	learn: 10.7366315	total: 4.97s	remaining: 3.05s
186:	learn: 10.6583458	total: 5.01s	remaining: 3.03s
187:	learn: 10.5955649	total: 5.04s	remaining: 3s
188:	learn: 10.5456969	total: 5.06s	remaining: 2.97s
189:	learn: 10.4582108	total: 5.09s	remaining: 2.95s
190:	learn: 10.4226930	total: 5.12s	remaining: 2.92s
191:	learn: 10.3469793	total: 5.15s	remaining: 2.89s
192:	learn: 10.2680286	total: 5.18s	remaining: 2.87s
193:	learn: 10.2210599	total: 5.21s	remaining: 2.85s
194:	learn: 10.1575919	total: 5.25s	remaining: 2.83s
195:	learn: 10.0996054	total: 5.28s	remaining: 2.8s
196:	learn: 10.0503671	total: 5.31s	remaining: 2.77s
197:	learn: 9.9976825	total: 5.33s	remaining: 2.75s
198:	learn: 9.9452535	total: 5.36s	remaining: 2.72s
199:	learn: 9.8825415	total: 5.39s	remaining: 2.69s
200:	learn: 9.8064134	total: 5.42s	remaining: 2.67s
201:	learn: 9.7572174	total: 5.45s	remaining: 2.64s
202:	learn: 9.6993413	total: 5.48s	remaining: 2.62s
203:	learn: 9.6645937	total: 5.51s	remaining: 2.59s
204:	learn: 9.6261766	total: 5.54s	remaining: 2.57s
205:	learn: 9.5819475	total: 5.56s	remaining: 2.54s
206:	learn: 9.5366280	total: 5.59s	remaining: 2.51s
207:	learn: 9.4813538	total: 5.62s	remaining: 2.48s
208:	learn: 9.4246671	total: 5.65s	remaining: 2.46s
209:	learn: 9.3787991	total: 5.69s	remaining: 2.44s
210:	learn: 9.3261932	total: 5.72s	remaining: 2.41s
211:	learn: 9.2979373	total: 5.74s	remaining: 2.38s
212:	learn: 9.2466040	total: 5.77s	remaining: 2.36s
213:	learn: 9.1990809	total: 5.8s	remaining: 2.33s
214:	learn: 9.1630306	total: 5.83s	remaining: 2.3s
215:	learn: 9.1266975	total: 5.85s	remaining: 2.28s
216:	learn: 9.0846374	total: 5.88s	remaining: 2.25s
217:	learn: 9.0341002	total: 5.92s	remaining: 2.23s
218:	learn: 8.9874070	total: 5.95s	remaining: 2.2s
219:	learn: 8.9478524	total: 5.98s	remaining: 2.17s
220:	learn: 8.8970642	total: 6.01s	remaining: 2.15s
221:	learn: 8.8605945	total: 6.03s	remaining: 2.12s
222:	learn: 8.8261863	total: 6.06s	remaining: 2.09s
223:	learn: 8.7821922	total: 6.09s	remaining: 2.06s
224:	learn: 8.7517706	total: 6.11s	remaining: 2.04s
225:	learn: 8.7149517	total: 6.16s	remaining: 2.02s
226:	learn: 8.6766707	total: 6.18s	remaining: 1.99s
227:	learn: 8.6372492	total: 6.21s	remaining: 1.96s
228:	learn: 8.6002129	total: 6.24s	remaining: 1.93s
229:	learn: 8.5595754	total: 6.27s	remaining: 1.91s
230:	learn: 8.5342774	total: 6.29s	remaining: 1.88s
231:	learn: 8.4991734	total: 6.32s	remaining: 1.85s
232:	learn: 8.4735361	total: 6.35s	remaining: 1.83s
233:	learn: 8.4328577	total: 6.39s	remaining: 1.8s
234:	learn: 8.3929232	total: 6.42s	remaining: 1.77s
235:	learn: 8.3611534	total: 6.44s	remaining: 1.75s
236:	learn: 8.3469261	total: 6.47s	remaining: 1.72s
237:	learn: 8.3082592	total: 6.5s	remaining: 1.69s
238:	learn: 8.2724422	total: 6.52s	remaining: 1.67s
239:	learn: 8.2378713	total: 6.55s	remaining: 1.64s
240:	learn: 8.2054002	total: 6.59s	remaining: 1.61s
241:	learn: 8.1726213	total: 6.63s	remaining: 1.59s
242:	learn: 8.1385919	total: 6.65s	remaining: 1.56s
243:	learn: 8.1113159	total: 6.68s	remaining: 1.53s
244:	learn: 8.0740264	total: 6.71s	remaining: 1.51s
245:	learn: 8.0399614	total: 6.74s	remaining: 1.48s
246:	learn: 8.0179358	total: 6.76s	remaining: 1.45s
247:	learn: 7.9896565	total: 6.79s	remaining: 1.42s
248:	learn: 7.9644186	total: 6.83s	remaining: 1.4s
249:	learn: 7.9305923	total: 6.86s	remaining: 1.37s
250:	learn: 7.9007851	total: 6.89s	remaining: 1.34s
251:	learn: 7.8740137	total: 6.92s	remaining: 1.32s
252:	learn: 7.8448288	total: 6.95s	remaining: 1.29s
253:	learn: 7.8020074	total: 6.97s	remaining: 1.26s
254:	learn: 7.7748874	total: 7.01s	remaining: 1.24s
255:	learn: 7.7553198	total: 7.04s	remaining: 1.21s
256:	learn: 7.7327191	total: 7.07s	remaining: 1.18s
257:	learn: 7.7021253	total: 7.1s	remaining: 1.16s
258:	learn: 7.6760024	total: 7.13s	remaining: 1.13s
259:	learn: 7.6569353	total: 7.16s	remaining: 1.1s
260:	learn: 7.6304716	total: 7.19s	remaining: 1.07s
261:	learn: 7.6011855	total: 7.21s	remaining: 1.05s
262:	learn: 7.5732109	total: 7.25s	remaining: 1.02s
263:	learn: 7.5502359	total: 7.27s	remaining: 992ms
264:	learn: 7.5240021	total: 7.3s	remaining: 964ms
265:	learn: 7.4977154	total: 7.33s	remaining: 936ms
266:	learn: 7.4679226	total: 7.36s	remaining: 910ms
267:	learn: 7.4445035	total: 7.39s	remaining: 882ms
268:	learn: 7.4246251	total: 7.42s	remaining: 855ms
269:	learn: 7.4029554	total: 7.45s	remaining: 828ms
270:	learn: 7.3712662	total: 7.48s	remaining: 800ms
271:	learn: 7.3355870	total: 7.5s	remaining: 773ms
272:	learn: 7.3198771	total: 7.53s	remaining: 745ms
273:	learn: 7.3050151	total: 7.56s	remaining: 717ms
274:	learn: 7.2910043	total: 7.6s	remaining: 691ms
275:	learn: 7.2783385	total: 7.63s	remaining: 663ms
276:	learn: 7.2559473	total: 7.66s	remaining: 636ms
277:	learn: 7.2185655	total: 7.68s	remaining: 608ms
278:	learn: 7.1965563	total: 7.71s	remaining: 580ms
279:	learn: 7.1773705	total: 7.73s	remaining: 552ms
280:	learn: 7.1541341	total: 7.76s	remaining: 525ms
281:	learn: 7.1355109	total: 7.79s	remaining: 497ms
282:	learn: 7.1129308	total: 7.82s	remaining: 470ms
283:	learn: 7.0886063	total: 7.86s	remaining: 443ms
284:	learn: 7.0673363	total: 7.89s	remaining: 415ms
285:	learn: 7.0518651	total: 7.92s	remaining: 388ms
286:	learn: 7.0312280	total: 7.95s	remaining: 360ms
287:	learn: 7.0065712	total: 7.97s	remaining: 332ms
288:	learn: 6.9851465	total: 8s	remaining: 305ms
289:	learn: 6.9652208	total: 8.03s	remaining: 277ms
290:	learn: 6.9480340	total: 8.06s	remaining: 249ms
291:	learn: 6.9293725	total: 8.1s	remaining: 222ms
292:	learn: 6.8953713	total: 8.13s	remaining: 194ms
293:	learn: 6.8800761	total: 8.15s	remaining: 166ms
294:	learn: 6.8674172	total: 8.18s	remaining: 139ms
295:	learn: 6.8461255	total: 8.21s	remaining: 111ms
296:	learn: 6.8284246	total: 8.23s	remaining: 83.2ms
297:	learn: 6.8028742	total: 8.26s	remaining: 55.4ms
298:	learn: 6.7865169	total: 8.29s	remaining: 27.7ms
299:	learn: 6.7677918	total: 8.33s	remaining: 0us
0:	learn: 46.0177610	total: 27ms	remaining: 8.09s
1:	learn: 45.2171004	total: 53.7ms	remaining: 8s
2:	learn: 44.5194217	total: 80.8ms	remaining: 8s
3:	learn: 43.6812696	total: 108ms	remaining: 7.99s
4:	learn: 42.8831305	total: 136ms	remaining: 8.03s
5:	learn: 42.1262412	total: 167ms	remaining: 8.21s
6:	learn: 41.6465602	total: 195ms	remaining: 8.16s
7:	learn: 41.2399751	total: 228ms	remaining: 8.33s
8:	learn: 40.7217059	total: 255ms	remaining: 8.24s
9:	learn: 40.1802193	total: 282ms	remaining: 8.17s
10:	learn: 39.7286629	total: 308ms	remaining: 8.1s
11:	learn: 39.1775230	total: 336ms	remaining: 8.05s
12:	learn: 38.7477788	total: 363ms	remaining: 8.02s
13:	learn: 38.2296808	total: 402ms	remaining: 8.2s
14:	learn: 37.7069865	total: 429ms	remaining: 8.15s
15:	learn: 37.1535735	total: 456ms	remaining: 8.1s
16:	learn: 36.7900064	total: 492ms	remaining: 8.18s
17:	learn: 36.4049038	total: 518ms	remaining: 8.11s
18:	learn: 35.9640324	total: 545ms	remaining: 8.06s
19:	learn: 35.5778526	total: 573ms	remaining: 8.02s
20:	learn: 35.2480134	total: 605ms	remaining: 8.04s
21:	learn: 34.8576668	total: 633ms	remaining: 8s
22:	learn: 34.3332571	total: 659ms	remaining: 7.94s
23:	learn: 34.0285781	total: 687ms	remaining: 7.9s
24:	learn: 33.6137780	total: 721ms	remaining: 7.93s
25:	learn: 33.1018374	total: 748ms	remaining: 7.88s
26:	learn: 32.7865924	total: 775ms	remaining: 7.83s
27:	learn: 32.5376779	total: 810ms	remaining: 7.87s
28:	learn: 32.0718213	total: 837ms	remaining: 7.82s
29:	learn: 31.7440177	total: 864ms	remaining: 7.78s
30:	learn: 31.4767615	total: 892ms	remaining: 7.74s
31:	learn: 31.0939292	total: 920ms	remaining: 7.7s
32:	learn: 30.7679414	total: 953ms	remaining: 7.71s
33:	learn: 30.3318976	total: 982ms	remaining: 7.68s
34:	learn: 30.0098409	total: 1.01s	remaining: 7.67s
35:	learn: 29.7328439	total: 1.04s	remaining: 7.66s
36:	learn: 29.3793676	total: 1.07s	remaining: 7.61s
37:	learn: 29.1027021	total: 1.1s	remaining: 7.57s
38:	learn: 28.7995895	total: 1.12s	remaining: 7.52s
39:	learn: 28.5217760	total: 1.15s	remaining: 7.48s
40:	learn: 28.1682840	total: 1.18s	remaining: 7.44s
41:	learn: 27.7960176	total: 1.22s	remaining: 7.48s
42:	learn: 27.5479541	total: 1.25s	remaining: 7.45s
43:	learn: 27.1865306	total: 1.27s	remaining: 7.42s
44:	learn: 26.9937460	total: 1.3s	remaining: 7.38s
45:	learn: 26.8442463	total: 1.33s	remaining: 7.34s
46:	learn: 26.4960149	total: 1.36s	remaining: 7.3s
47:	learn: 26.3705169	total: 1.38s	remaining: 7.26s
48:	learn: 26.1706608	total: 1.41s	remaining: 7.23s
49:	learn: 25.9554127	total: 1.45s	remaining: 7.25s
50:	learn: 25.7460625	total: 1.48s	remaining: 7.22s
51:	learn: 25.5382801	total: 1.5s	remaining: 7.18s
52:	learn: 25.3702316	total: 1.53s	remaining: 7.14s
53:	learn: 25.1895507	total: 1.56s	remaining: 7.1s
54:	learn: 24.9547189	total: 1.58s	remaining: 7.06s
55:	learn: 24.7774266	total: 1.61s	remaining: 7.02s
56:	learn: 24.5983576	total: 1.64s	remaining: 6.98s
57:	learn: 24.4350851	total: 1.67s	remaining: 6.98s
58:	learn: 24.1821816	total: 1.71s	remaining: 6.98s
59:	learn: 24.0194176	total: 1.74s	remaining: 6.95s
60:	learn: 23.8268698	total: 1.76s	remaining: 6.91s
61:	learn: 23.6797713	total: 1.79s	remaining: 6.88s
62:	learn: 23.5016295	total: 1.82s	remaining: 6.85s
63:	learn: 23.3337406	total: 1.85s	remaining: 6.81s
64:	learn: 23.1777686	total: 1.87s	remaining: 6.77s
65:	learn: 22.9885995	total: 1.9s	remaining: 6.75s
66:	learn: 22.8371180	total: 1.94s	remaining: 6.76s
67:	learn: 22.6795513	total: 1.97s	remaining: 6.72s
68:	learn: 22.5161365	total: 2s	remaining: 6.68s
69:	learn: 22.3361211	total: 2.02s	remaining: 6.65s
70:	learn: 22.1434717	total: 2.05s	remaining: 6.61s
71:	learn: 21.9717466	total: 2.08s	remaining: 6.58s
72:	learn: 21.7799255	total: 2.1s	remaining: 6.55s
73:	learn: 21.5806287	total: 2.14s	remaining: 6.54s
74:	learn: 21.4515659	total: 2.18s	remaining: 6.53s
75:	learn: 21.3438173	total: 2.21s	remaining: 6.5s
76:	learn: 21.2141855	total: 2.23s	remaining: 6.47s
77:	learn: 20.9791139	total: 2.26s	remaining: 6.43s
78:	learn: 20.8731109	total: 2.29s	remaining: 6.39s
79:	learn: 20.7356152	total: 2.31s	remaining: 6.37s
80:	learn: 20.6794518	total: 2.35s	remaining: 6.36s
81:	learn: 20.5703504	total: 2.38s	remaining: 6.32s
82:	learn: 20.4542622	total: 2.41s	remaining: 6.31s
83:	learn: 20.3436005	total: 2.44s	remaining: 6.27s
84:	learn: 20.2213634	total: 2.47s	remaining: 6.24s
85:	learn: 20.0231006	total: 2.49s	remaining: 6.2s
86:	learn: 19.9066413	total: 2.52s	remaining: 6.17s
87:	learn: 19.8018072	total: 2.56s	remaining: 6.16s
88:	learn: 19.7018716	total: 2.58s	remaining: 6.12s
89:	learn: 19.5924764	total: 2.61s	remaining: 6.09s
90:	learn: 19.4563722	total: 2.64s	remaining: 6.06s
91:	learn: 19.3246547	total: 2.67s	remaining: 6.04s
92:	learn: 19.2157682	total: 2.7s	remaining: 6.01s
93:	learn: 19.1488443	total: 2.73s	remaining: 5.98s
94:	learn: 19.0557445	total: 2.76s	remaining: 5.95s
95:	learn: 18.9599358	total: 2.79s	remaining: 5.93s
96:	learn: 18.8626100	total: 2.82s	remaining: 5.9s
97:	learn: 18.7583061	total: 2.84s	remaining: 5.86s
98:	learn: 18.6544146	total: 2.87s	remaining: 5.83s
99:	learn: 18.5451742	total: 2.9s	remaining: 5.81s
100:	learn: 18.4189953	total: 2.93s	remaining: 5.77s
101:	learn: 18.3438186	total: 2.96s	remaining: 5.74s
102:	learn: 18.3162367	total: 2.99s	remaining: 5.71s
103:	learn: 18.2040313	total: 3.02s	remaining: 5.7s
104:	learn: 18.0312740	total: 3.05s	remaining: 5.67s
105:	learn: 17.9372951	total: 3.08s	remaining: 5.63s
106:	learn: 17.8724695	total: 3.11s	remaining: 5.61s
107:	learn: 17.7720982	total: 3.13s	remaining: 5.57s
108:	learn: 17.6847197	total: 3.17s	remaining: 5.56s
109:	learn: 17.5739155	total: 3.2s	remaining: 5.53s
110:	learn: 17.5071512	total: 3.23s	remaining: 5.5s
111:	learn: 17.4284339	total: 3.26s	remaining: 5.47s
112:	learn: 17.3333136	total: 3.29s	remaining: 5.44s
113:	learn: 17.2854017	total: 3.31s	remaining: 5.41s
114:	learn: 17.2580292	total: 3.34s	remaining: 5.37s
115:	learn: 17.1942005	total: 3.37s	remaining: 5.34s
116:	learn: 17.1180771	total: 3.4s	remaining: 5.32s
117:	learn: 17.0881080	total: 3.43s	remaining: 5.29s
118:	learn: 16.9946379	total: 3.47s	remaining: 5.27s
119:	learn: 16.9347009	total: 3.5s	remaining: 5.24s
120:	learn: 16.8550523	total: 3.52s	remaining: 5.21s
121:	learn: 16.8167084	total: 3.55s	remaining: 5.18s
122:	learn: 16.7431121	total: 3.58s	remaining: 5.15s
123:	learn: 16.6790079	total: 3.6s	remaining: 5.12s
124:	learn: 16.6544185	total: 3.64s	remaining: 5.1s
125:	learn: 16.5758961	total: 3.67s	remaining: 5.07s
126:	learn: 16.4736355	total: 3.7s	remaining: 5.04s
127:	learn: 16.3424410	total: 3.73s	remaining: 5.01s
128:	learn: 16.2679660	total: 3.75s	remaining: 4.97s
129:	learn: 16.2258039	total: 3.78s	remaining: 4.94s
130:	learn: 16.1516799	total: 3.81s	remaining: 4.91s
131:	learn: 16.1254438	total: 3.83s	remaining: 4.88s
132:	learn: 16.0304106	total: 3.86s	remaining: 4.85s
133:	learn: 15.9690721	total: 3.9s	remaining: 4.83s
134:	learn: 15.8475301	total: 3.94s	remaining: 4.81s
135:	learn: 15.7923044	total: 3.96s	remaining: 4.78s
136:	learn: 15.7122364	total: 3.99s	remaining: 4.75s
137:	learn: 15.6328785	total: 4.02s	remaining: 4.72s
138:	learn: 15.5626000	total: 4.05s	remaining: 4.69s
139:	learn: 15.4322531	total: 4.07s	remaining: 4.65s
140:	learn: 15.3057121	total: 4.1s	remaining: 4.62s
141:	learn: 15.2355698	total: 4.14s	remaining: 4.61s
142:	learn: 15.1858129	total: 4.17s	remaining: 4.58s
143:	learn: 15.1459442	total: 4.19s	remaining: 4.54s
144:	learn: 15.1011230	total: 4.22s	remaining: 4.51s
145:	learn: 15.0379234	total: 4.25s	remaining: 4.48s
146:	learn: 14.9606955	total: 4.27s	remaining: 4.45s
147:	learn: 14.8537869	total: 4.3s	remaining: 4.42s
148:	learn: 14.7978827	total: 4.33s	remaining: 4.39s
149:	learn: 14.7340183	total: 4.38s	remaining: 4.38s
150:	learn: 14.6973812	total: 4.41s	remaining: 4.35s
151:	learn: 14.6682787	total: 4.43s	remaining: 4.32s
152:	learn: 14.5210539	total: 4.46s	remaining: 4.29s
153:	learn: 14.4733148	total: 4.49s	remaining: 4.25s
154:	learn: 14.4119567	total: 4.51s	remaining: 4.22s
155:	learn: 14.3464330	total: 4.54s	remaining: 4.19s
156:	learn: 14.2314719	total: 4.57s	remaining: 4.17s
157:	learn: 14.1827121	total: 4.6s	remaining: 4.14s
158:	learn: 14.0860528	total: 4.64s	remaining: 4.11s
159:	learn: 14.0216499	total: 4.66s	remaining: 4.08s
160:	learn: 13.9788508	total: 4.69s	remaining: 4.05s
161:	learn: 13.9341942	total: 4.71s	remaining: 4.02s
162:	learn: 13.8689437	total: 4.74s	remaining: 3.98s
163:	learn: 13.8152354	total: 4.77s	remaining: 3.95s
164:	learn: 13.7979613	total: 4.81s	remaining: 3.93s
165:	learn: 13.7124340	total: 4.83s	remaining: 3.9s
166:	learn: 13.6328571	total: 4.87s	remaining: 3.88s
167:	learn: 13.6179483	total: 4.9s	remaining: 3.85s
168:	learn: 13.5737505	total: 4.93s	remaining: 3.82s
169:	learn: 13.5185652	total: 4.95s	remaining: 3.79s
170:	learn: 13.3621411	total: 4.98s	remaining: 3.76s
171:	learn: 13.3431787	total: 5.01s	remaining: 3.73s
172:	learn: 13.2661742	total: 5.04s	remaining: 3.7s
173:	learn: 13.2029526	total: 5.07s	remaining: 3.67s
174:	learn: 13.1457507	total: 5.1s	remaining: 3.64s
175:	learn: 13.0041277	total: 5.13s	remaining: 3.61s
176:	learn: 12.9565895	total: 5.15s	remaining: 3.58s
177:	learn: 12.8225368	total: 5.18s	remaining: 3.55s
178:	learn: 12.8073526	total: 5.21s	remaining: 3.52s
179:	learn: 12.7432577	total: 5.24s	remaining: 3.49s
180:	learn: 12.6894062	total: 5.27s	remaining: 3.46s
181:	learn: 12.6115430	total: 5.3s	remaining: 3.43s
182:	learn: 12.4884510	total: 5.32s	remaining: 3.4s
183:	learn: 12.4670071	total: 5.36s	remaining: 3.38s
184:	learn: 12.3586840	total: 5.39s	remaining: 3.35s
185:	learn: 12.3314465	total: 5.42s	remaining: 3.32s
186:	learn: 12.2898986	total: 5.44s	remaining: 3.29s
187:	learn: 12.2444848	total: 5.48s	remaining: 3.26s
188:	learn: 12.1286912	total: 5.51s	remaining: 3.23s
189:	learn: 12.0913051	total: 5.53s	remaining: 3.2s
190:	learn: 12.0412425	total: 5.56s	remaining: 3.17s
191:	learn: 11.9806235	total: 5.59s	remaining: 3.15s
192:	learn: 11.9166183	total: 5.62s	remaining: 3.12s
193:	learn: 11.8779218	total: 5.65s	remaining: 3.08s
194:	learn: 11.8179532	total: 5.67s	remaining: 3.06s
195:	learn: 11.7640239	total: 5.71s	remaining: 3.03s
196:	learn: 11.7071262	total: 5.74s	remaining: 3s
197:	learn: 11.6536293	total: 5.77s	remaining: 2.97s
198:	learn: 11.6065018	total: 5.79s	remaining: 2.94s
199:	learn: 11.5499607	total: 5.83s	remaining: 2.91s
200:	learn: 11.5040185	total: 5.86s	remaining: 2.88s
201:	learn: 11.4742990	total: 5.88s	remaining: 2.85s
202:	learn: 11.4464612	total: 5.91s	remaining: 2.82s
203:	learn: 11.3967352	total: 5.94s	remaining: 2.8s
204:	learn: 11.3773630	total: 5.97s	remaining: 2.77s
205:	learn: 11.3369897	total: 6s	remaining: 2.74s
206:	learn: 11.2785610	total: 6.02s	remaining: 2.71s
207:	learn: 11.2570903	total: 6.05s	remaining: 2.67s
208:	learn: 11.1959469	total: 6.08s	remaining: 2.65s
209:	learn: 11.1698664	total: 6.11s	remaining: 2.62s
210:	learn: 11.1452100	total: 6.14s	remaining: 2.59s
211:	learn: 11.1074115	total: 6.17s	remaining: 2.56s
212:	learn: 11.0813756	total: 6.2s	remaining: 2.53s
213:	learn: 11.0519307	total: 6.23s	remaining: 2.5s
214:	learn: 11.0155685	total: 6.26s	remaining: 2.47s
215:	learn: 10.9871406	total: 6.29s	remaining: 2.44s
216:	learn: 10.9693068	total: 6.32s	remaining: 2.42s
217:	learn: 10.9576767	total: 6.35s	remaining: 2.39s
218:	learn: 10.8594320	total: 6.38s	remaining: 2.36s
219:	learn: 10.8272954	total: 6.41s	remaining: 2.33s
220:	learn: 10.8038867	total: 6.44s	remaining: 2.3s
221:	learn: 10.7088853	total: 6.46s	remaining: 2.27s
222:	learn: 10.6887411	total: 6.49s	remaining: 2.24s
223:	learn: 10.6649574	total: 6.52s	remaining: 2.21s
224:	learn: 10.6194908	total: 6.54s	remaining: 2.18s
225:	learn: 10.5685522	total: 6.58s	remaining: 2.15s
226:	learn: 10.5537435	total: 6.61s	remaining: 2.13s
227:	learn: 10.5121708	total: 6.64s	remaining: 2.1s
228:	learn: 10.4691452	total: 6.67s	remaining: 2.07s
229:	learn: 10.4484099	total: 6.7s	remaining: 2.04s
230:	learn: 10.4377373	total: 6.73s	remaining: 2.01s
231:	learn: 10.4270601	total: 6.75s	remaining: 1.98s
232:	learn: 10.4051968	total: 6.78s	remaining: 1.95s
233:	learn: 10.3483300	total: 6.82s	remaining: 1.92s
234:	learn: 10.2865834	total: 6.85s	remaining: 1.89s
235:	learn: 10.2610314	total: 6.89s	remaining: 1.87s
236:	learn: 10.2388990	total: 6.91s	remaining: 1.84s
237:	learn: 10.1965393	total: 6.94s	remaining: 1.81s
238:	learn: 10.1800849	total: 6.97s	remaining: 1.78s
239:	learn: 10.1604400	total: 7s	remaining: 1.75s
240:	learn: 10.1302668	total: 7.02s	remaining: 1.72s
241:	learn: 10.1241338	total: 7.06s	remaining: 1.69s
242:	learn: 10.0835529	total: 7.09s	remaining: 1.66s
243:	learn: 10.0154507	total: 7.12s	remaining: 1.63s
244:	learn: 10.0024905	total: 7.15s	remaining: 1.6s
245:	learn: 9.9669119	total: 7.17s	remaining: 1.57s
246:	learn: 9.9325711	total: 7.2s	remaining: 1.54s
247:	learn: 9.8981230	total: 7.23s	remaining: 1.52s
248:	learn: 9.8660554	total: 7.26s	remaining: 1.49s
249:	learn: 9.8506587	total: 7.28s	remaining: 1.46s
250:	learn: 9.8080866	total: 7.33s	remaining: 1.43s
251:	learn: 9.7747070	total: 7.35s	remaining: 1.4s
252:	learn: 9.7589720	total: 7.38s	remaining: 1.37s
253:	learn: 9.7308058	total: 7.41s	remaining: 1.34s
254:	learn: 9.7157610	total: 7.43s	remaining: 1.31s
255:	learn: 9.6979675	total: 7.46s	remaining: 1.28s
256:	learn: 9.6657809	total: 7.49s	remaining: 1.25s
257:	learn: 9.6522187	total: 7.51s	remaining: 1.22s
258:	learn: 9.6375034	total: 7.55s	remaining: 1.2s
259:	learn: 9.6023653	total: 7.58s	remaining: 1.17s
260:	learn: 9.5760582	total: 7.61s	remaining: 1.14s
261:	learn: 9.5288913	total: 7.64s	remaining: 1.11s
262:	learn: 9.5151986	total: 7.67s	remaining: 1.08s
263:	learn: 9.4814503	total: 7.69s	remaining: 1.05s
264:	learn: 9.4635791	total: 7.72s	remaining: 1.02s
265:	learn: 9.4364856	total: 7.75s	remaining: 990ms
266:	learn: 9.4013439	total: 7.79s	remaining: 962ms
267:	learn: 9.3638018	total: 7.82s	remaining: 933ms
268:	learn: 9.3558171	total: 7.84s	remaining: 904ms
269:	learn: 9.3065751	total: 7.87s	remaining: 874ms
270:	learn: 9.2964146	total: 7.9s	remaining: 845ms
271:	learn: 9.2625670	total: 7.92s	remaining: 816ms
272:	learn: 9.2356760	total: 7.95s	remaining: 786ms
273:	learn: 9.2046550	total: 7.98s	remaining: 757ms
274:	learn: 9.1931591	total: 8.01s	remaining: 728ms
275:	learn: 9.1692863	total: 8.05s	remaining: 700ms
276:	learn: 9.1358490	total: 8.08s	remaining: 671ms
277:	learn: 9.1007511	total: 8.11s	remaining: 642ms
278:	learn: 9.0946236	total: 8.14s	remaining: 612ms
279:	learn: 9.0731587	total: 8.16s	remaining: 583ms
280:	learn: 9.0466446	total: 8.19s	remaining: 554ms
281:	learn: 9.0262027	total: 8.22s	remaining: 525ms
282:	learn: 8.9958148	total: 8.25s	remaining: 496ms
283:	learn: 8.9904119	total: 8.29s	remaining: 467ms
284:	learn: 8.9723234	total: 8.31s	remaining: 438ms
285:	learn: 8.9368256	total: 8.34s	remaining: 408ms
286:	learn: 8.8960967	total: 8.37s	remaining: 379ms
287:	learn: 8.8813638	total: 8.39s	remaining: 350ms
288:	learn: 8.8766445	total: 8.42s	remaining: 321ms
289:	learn: 8.8483604	total: 8.46s	remaining: 292ms
290:	learn: 8.8220559	total: 8.49s	remaining: 263ms
291:	learn: 8.7918301	total: 8.52s	remaining: 234ms
292:	learn: 8.7574504	total: 8.55s	remaining: 204ms
293:	learn: 8.7490725	total: 8.58s	remaining: 175ms
294:	learn: 8.7293377	total: 8.61s	remaining: 146ms
295:	learn: 8.7202847	total: 8.64s	remaining: 117ms
296:	learn: 8.6918465	total: 8.67s	remaining: 87.6ms
297:	learn: 8.6665828	total: 8.7s	remaining: 58.4ms
298:	learn: 8.6541683	total: 8.72s	remaining: 29.2ms
299:	learn: 8.6494740	total: 8.75s	remaining: 0us
0:	learn: 46.8012202	total: 35.4ms	remaining: 10.6s
1:	learn: 46.0273912	total: 63.7ms	remaining: 9.49s
2:	learn: 45.3733493	total: 88.8ms	remaining: 8.79s
3:	learn: 44.7109449	total: 115ms	remaining: 8.47s
4:	learn: 43.9430491	total: 141ms	remaining: 8.33s
5:	learn: 43.2536304	total: 167ms	remaining: 8.16s
6:	learn: 42.5901366	total: 191ms	remaining: 8.01s
7:	learn: 42.0362841	total: 217ms	remaining: 7.9s
8:	learn: 41.4655769	total: 242ms	remaining: 7.83s
9:	learn: 40.7617374	total: 268ms	remaining: 7.77s
10:	learn: 40.1467911	total: 297ms	remaining: 7.8s
11:	learn: 39.5322002	total: 327ms	remaining: 7.85s
12:	learn: 39.2369496	total: 352ms	remaining: 7.77s
13:	learn: 38.8730340	total: 376ms	remaining: 7.69s
14:	learn: 38.4661592	total: 401ms	remaining: 7.62s
15:	learn: 37.8483750	total: 404ms	remaining: 7.18s
16:	learn: 37.2598064	total: 428ms	remaining: 7.13s
17:	learn: 36.6878531	total: 453ms	remaining: 7.1s
18:	learn: 36.1765878	total: 478ms	remaining: 7.07s
19:	learn: 35.6111928	total: 504ms	remaining: 7.05s
20:	learn: 35.2113326	total: 536ms	remaining: 7.12s
21:	learn: 34.5754750	total: 564ms	remaining: 7.13s
22:	learn: 34.0844300	total: 589ms	remaining: 7.09s
23:	learn: 33.6434482	total: 615ms	remaining: 7.07s
24:	learn: 33.3578327	total: 641ms	remaining: 7.05s
25:	learn: 32.9883035	total: 666ms	remaining: 7.02s
26:	learn: 32.6325583	total: 692ms	remaining: 6.99s
27:	learn: 32.1886629	total: 717ms	remaining: 6.96s
28:	learn: 31.8587417	total: 743ms	remaining: 6.94s
29:	learn: 31.4999044	total: 770ms	remaining: 6.93s
30:	learn: 31.1903935	total: 800ms	remaining: 6.95s
31:	learn: 30.8877054	total: 825ms	remaining: 6.91s
32:	learn: 30.6421813	total: 851ms	remaining: 6.88s
33:	learn: 30.3687742	total: 876ms	remaining: 6.85s
34:	learn: 30.0972944	total: 900ms	remaining: 6.81s
35:	learn: 29.6026977	total: 925ms	remaining: 6.78s
36:	learn: 29.3412855	total: 950ms	remaining: 6.75s
37:	learn: 29.0138869	total: 980ms	remaining: 6.76s
38:	learn: 28.6424952	total: 1.01s	remaining: 6.78s
39:	learn: 28.4408572	total: 1.04s	remaining: 6.75s
40:	learn: 28.0554435	total: 1.06s	remaining: 6.72s
41:	learn: 27.8389274	total: 1.09s	remaining: 6.69s
42:	learn: 27.5339353	total: 1.11s	remaining: 6.66s
43:	learn: 27.3640594	total: 1.14s	remaining: 6.63s
44:	learn: 27.1330981	total: 1.16s	remaining: 6.6s
45:	learn: 26.9507132	total: 1.19s	remaining: 6.59s
46:	learn: 26.7285619	total: 1.22s	remaining: 6.58s
47:	learn: 26.3518482	total: 1.25s	remaining: 6.55s
48:	learn: 26.0543584	total: 1.27s	remaining: 6.52s
49:	learn: 25.8251945	total: 1.3s	remaining: 6.49s
50:	learn: 25.5436752	total: 1.32s	remaining: 6.47s
51:	learn: 25.3250332	total: 1.35s	remaining: 6.43s
52:	learn: 25.1688504	total: 1.37s	remaining: 6.4s
53:	learn: 24.9813407	total: 1.4s	remaining: 6.39s
54:	learn: 24.7384847	total: 1.44s	remaining: 6.4s
55:	learn: 24.5163023	total: 1.46s	remaining: 6.38s
56:	learn: 24.2729235	total: 1.49s	remaining: 6.35s
57:	learn: 24.1318061	total: 1.51s	remaining: 6.32s
58:	learn: 23.9701754	total: 1.54s	remaining: 6.29s
59:	learn: 23.8112940	total: 1.56s	remaining: 6.26s
60:	learn: 23.6723877	total: 1.59s	remaining: 6.23s
61:	learn: 23.5289336	total: 1.61s	remaining: 6.2s
62:	learn: 23.4106679	total: 1.65s	remaining: 6.19s
63:	learn: 23.2082280	total: 1.67s	remaining: 6.17s
64:	learn: 23.0959607	total: 1.7s	remaining: 6.14s
65:	learn: 22.9890902	total: 1.72s	remaining: 6.11s
66:	learn: 22.8516666	total: 1.75s	remaining: 6.08s
67:	learn: 22.7282575	total: 1.77s	remaining: 6.05s
68:	learn: 22.5991392	total: 1.8s	remaining: 6.02s
69:	learn: 22.3825348	total: 1.82s	remaining: 5.99s
70:	learn: 22.2284455	total: 1.85s	remaining: 5.96s
71:	learn: 22.0431735	total: 1.88s	remaining: 5.96s
72:	learn: 21.8930406	total: 1.91s	remaining: 5.94s
73:	learn: 21.7459390	total: 1.94s	remaining: 5.92s
74:	learn: 21.6277633	total: 1.96s	remaining: 5.89s
75:	learn: 21.4144047	total: 1.99s	remaining: 5.87s
76:	learn: 21.2747440	total: 2.02s	remaining: 5.84s
77:	learn: 21.1153657	total: 2.04s	remaining: 5.81s
78:	learn: 21.0445825	total: 2.06s	remaining: 5.78s
79:	learn: 20.9348935	total: 2.1s	remaining: 5.76s
80:	learn: 20.7685253	total: 2.12s	remaining: 5.74s
81:	learn: 20.6539889	total: 2.15s	remaining: 5.71s
82:	learn: 20.4538530	total: 2.17s	remaining: 5.67s
83:	learn: 20.3461251	total: 2.19s	remaining: 5.64s
84:	learn: 20.1992221	total: 2.22s	remaining: 5.61s
85:	learn: 20.0842190	total: 2.24s	remaining: 5.58s
86:	learn: 19.9903250	total: 2.27s	remaining: 5.54s
87:	learn: 19.9084171	total: 2.29s	remaining: 5.52s
88:	learn: 19.7929727	total: 2.32s	remaining: 5.5s
89:	learn: 19.7205230	total: 2.35s	remaining: 5.48s
90:	learn: 19.6075486	total: 2.37s	remaining: 5.45s
91:	learn: 19.5309964	total: 2.4s	remaining: 5.42s
92:	learn: 19.4363684	total: 2.42s	remaining: 5.39s
93:	learn: 19.3378127	total: 2.45s	remaining: 5.37s
94:	learn: 19.2292896	total: 2.47s	remaining: 5.34s
95:	learn: 19.1011370	total: 2.5s	remaining: 5.31s
96:	learn: 18.9974491	total: 2.52s	remaining: 5.28s
97:	learn: 18.8636531	total: 2.55s	remaining: 5.26s
98:	learn: 18.7739910	total: 2.58s	remaining: 5.23s
99:	learn: 18.6948867	total: 2.6s	remaining: 5.2s
100:	learn: 18.5747433	total: 2.62s	remaining: 5.17s
101:	learn: 18.5307499	total: 2.65s	remaining: 5.14s
102:	learn: 18.4248127	total: 2.67s	remaining: 5.11s
103:	learn: 18.3301727	total: 2.69s	remaining: 5.08s
104:	learn: 18.2579998	total: 2.72s	remaining: 5.05s
105:	learn: 18.1614231	total: 2.74s	remaining: 5.02s
106:	learn: 18.0748134	total: 2.77s	remaining: 5s
107:	learn: 17.9862898	total: 2.8s	remaining: 4.98s
108:	learn: 17.9368507	total: 2.83s	remaining: 4.95s
109:	learn: 17.8058561	total: 2.85s	remaining: 4.93s
110:	learn: 17.7371383	total: 2.88s	remaining: 4.9s
111:	learn: 17.6303538	total: 2.9s	remaining: 4.87s
112:	learn: 17.5449989	total: 2.92s	remaining: 4.84s
113:	learn: 17.4776008	total: 2.95s	remaining: 4.81s
114:	learn: 17.3648029	total: 2.97s	remaining: 4.78s
115:	learn: 17.2618916	total: 3s	remaining: 4.76s
116:	learn: 17.2111539	total: 3.03s	remaining: 4.74s
117:	learn: 17.1018870	total: 3.05s	remaining: 4.71s
118:	learn: 17.0024931	total: 3.08s	remaining: 4.68s
119:	learn: 16.9743860	total: 3.1s	remaining: 4.65s
120:	learn: 16.9130305	total: 3.13s	remaining: 4.62s
121:	learn: 16.8016712	total: 3.15s	remaining: 4.59s
122:	learn: 16.7261518	total: 3.17s	remaining: 4.57s
123:	learn: 16.6593504	total: 3.2s	remaining: 4.54s
124:	learn: 16.5732663	total: 3.23s	remaining: 4.52s
125:	learn: 16.4947922	total: 3.25s	remaining: 4.49s
126:	learn: 16.3991688	total: 3.28s	remaining: 4.46s
127:	learn: 16.3086895	total: 3.3s	remaining: 4.44s
128:	learn: 16.2101210	total: 3.33s	remaining: 4.41s
129:	learn: 16.1541963	total: 3.35s	remaining: 4.38s
130:	learn: 16.0790764	total: 3.37s	remaining: 4.35s
131:	learn: 16.0139723	total: 3.4s	remaining: 4.33s
132:	learn: 15.8906448	total: 3.42s	remaining: 4.3s
133:	learn: 15.8064421	total: 3.46s	remaining: 4.28s
134:	learn: 15.7265305	total: 3.48s	remaining: 4.25s
135:	learn: 15.6621677	total: 3.51s	remaining: 4.23s
136:	learn: 15.5922471	total: 3.53s	remaining: 4.2s
137:	learn: 15.5550517	total: 3.55s	remaining: 4.17s
138:	learn: 15.5278059	total: 3.58s	remaining: 4.14s
139:	learn: 15.4494043	total: 3.61s	remaining: 4.13s
140:	learn: 15.3765788	total: 3.64s	remaining: 4.11s
141:	learn: 15.3158598	total: 3.68s	remaining: 4.09s
142:	learn: 15.2121980	total: 3.71s	remaining: 4.07s
143:	learn: 15.0893974	total: 3.73s	remaining: 4.04s
144:	learn: 15.0074795	total: 3.76s	remaining: 4.02s
145:	learn: 14.9489574	total: 3.79s	remaining: 4s
146:	learn: 14.9258844	total: 3.81s	remaining: 3.97s
147:	learn: 14.8471123	total: 3.84s	remaining: 3.95s
148:	learn: 14.7745818	total: 3.88s	remaining: 3.93s
149:	learn: 14.6905246	total: 3.91s	remaining: 3.91s
150:	learn: 14.5873644	total: 3.94s	remaining: 3.88s
151:	learn: 14.5337902	total: 3.96s	remaining: 3.86s
152:	learn: 14.4749040	total: 3.99s	remaining: 3.83s
153:	learn: 14.3890824	total: 4.02s	remaining: 3.81s
154:	learn: 14.3259009	total: 4.04s	remaining: 3.78s
155:	learn: 14.2113192	total: 4.07s	remaining: 3.76s
156:	learn: 14.1718909	total: 4.12s	remaining: 3.75s
157:	learn: 14.1110356	total: 4.14s	remaining: 3.72s
158:	learn: 14.0362591	total: 4.17s	remaining: 3.7s
159:	learn: 13.9188238	total: 4.2s	remaining: 3.67s
160:	learn: 13.7740452	total: 4.22s	remaining: 3.65s
161:	learn: 13.7228642	total: 4.25s	remaining: 3.62s
162:	learn: 13.6648536	total: 4.28s	remaining: 3.6s
163:	learn: 13.5724722	total: 4.31s	remaining: 3.57s
164:	learn: 13.5141405	total: 4.35s	remaining: 3.56s
165:	learn: 13.4267305	total: 4.37s	remaining: 3.53s
166:	learn: 13.3370179	total: 4.4s	remaining: 3.5s
167:	learn: 13.2503127	total: 4.43s	remaining: 3.48s
168:	learn: 13.1743816	total: 4.45s	remaining: 3.45s
169:	learn: 13.1087726	total: 4.48s	remaining: 3.43s
170:	learn: 13.0426739	total: 4.51s	remaining: 3.4s
171:	learn: 12.9968745	total: 4.54s	remaining: 3.38s
172:	learn: 12.9301422	total: 4.57s	remaining: 3.35s
173:	learn: 12.9104864	total: 4.6s	remaining: 3.33s
174:	learn: 12.8199271	total: 4.63s	remaining: 3.31s
175:	learn: 12.7796485	total: 4.66s	remaining: 3.28s
176:	learn: 12.6883779	total: 4.69s	remaining: 3.26s
177:	learn: 12.5869619	total: 4.71s	remaining: 3.23s
178:	learn: 12.5397815	total: 4.74s	remaining: 3.2s
179:	learn: 12.4692676	total: 4.77s	remaining: 3.18s
180:	learn: 12.4433237	total: 4.8s	remaining: 3.16s
181:	learn: 12.3985342	total: 4.83s	remaining: 3.13s
182:	learn: 12.3635932	total: 4.86s	remaining: 3.11s
183:	learn: 12.2512719	total: 4.89s	remaining: 3.08s
184:	learn: 12.1558647	total: 4.92s	remaining: 3.06s
185:	learn: 12.1369112	total: 4.94s	remaining: 3.03s
186:	learn: 12.0798700	total: 4.97s	remaining: 3s
187:	learn: 12.0010668	total: 5s	remaining: 2.98s
188:	learn: 11.9442666	total: 5.03s	remaining: 2.96s
189:	learn: 11.8628888	total: 5.07s	remaining: 2.94s
190:	learn: 11.7616769	total: 5.1s	remaining: 2.91s
191:	learn: 11.6699926	total: 5.13s	remaining: 2.88s
192:	learn: 11.6392816	total: 5.15s	remaining: 2.86s
193:	learn: 11.5955244	total: 5.18s	remaining: 2.83s
194:	learn: 11.5772160	total: 5.21s	remaining: 2.81s
195:	learn: 11.5465581	total: 5.24s	remaining: 2.78s
196:	learn: 11.4564641	total: 5.27s	remaining: 2.75s
197:	learn: 11.3978031	total: 5.29s	remaining: 2.73s
198:	learn: 11.3460158	total: 5.33s	remaining: 2.7s
199:	learn: 11.2627720	total: 5.36s	remaining: 2.68s
200:	learn: 11.2162738	total: 5.38s	remaining: 2.65s
201:	learn: 11.1905894	total: 5.41s	remaining: 2.63s
202:	learn: 11.1639946	total: 5.45s	remaining: 2.6s
203:	learn: 11.0885906	total: 5.48s	remaining: 2.58s
204:	learn: 11.0284516	total: 5.51s	remaining: 2.55s
205:	learn: 10.9731416	total: 5.54s	remaining: 2.53s
206:	learn: 10.9378121	total: 5.57s	remaining: 2.5s
207:	learn: 10.8935640	total: 5.6s	remaining: 2.48s
208:	learn: 10.8572901	total: 5.62s	remaining: 2.45s
209:	learn: 10.8037961	total: 5.65s	remaining: 2.42s
210:	learn: 10.7458107	total: 5.68s	remaining: 2.4s
211:	learn: 10.7082447	total: 5.71s	remaining: 2.37s
212:	learn: 10.6599173	total: 5.74s	remaining: 2.34s
213:	learn: 10.6028419	total: 5.76s	remaining: 2.32s
214:	learn: 10.5627192	total: 5.79s	remaining: 2.29s
215:	learn: 10.5213774	total: 5.83s	remaining: 2.27s
216:	learn: 10.4732429	total: 5.86s	remaining: 2.24s
217:	learn: 10.4188551	total: 5.89s	remaining: 2.22s
218:	learn: 10.3740622	total: 5.92s	remaining: 2.19s
219:	learn: 10.3399349	total: 5.95s	remaining: 2.16s
220:	learn: 10.2824635	total: 5.97s	remaining: 2.13s
221:	learn: 10.2458277	total: 6s	remaining: 2.11s
222:	learn: 10.2341252	total: 6.03s	remaining: 2.08s
223:	learn: 10.1392287	total: 6.06s	remaining: 2.06s
224:	learn: 10.1088124	total: 6.09s	remaining: 2.03s
225:	learn: 10.0471375	total: 6.12s	remaining: 2s
226:	learn: 9.9852333	total: 6.15s	remaining: 1.98s
227:	learn: 9.9292294	total: 6.17s	remaining: 1.95s
228:	learn: 9.9015453	total: 6.2s	remaining: 1.92s
229:	learn: 9.8905067	total: 6.23s	remaining: 1.9s
230:	learn: 9.8507503	total: 6.26s	remaining: 1.87s
231:	learn: 9.7964411	total: 6.29s	remaining: 1.84s
232:	learn: 9.7540779	total: 6.32s	remaining: 1.82s
233:	learn: 9.7051776	total: 6.35s	remaining: 1.79s
234:	learn: 9.6539147	total: 6.38s	remaining: 1.76s
235:	learn: 9.6073112	total: 6.41s	remaining: 1.74s
236:	learn: 9.5975483	total: 6.44s	remaining: 1.71s
237:	learn: 9.5489561	total: 6.46s	remaining: 1.68s
238:	learn: 9.5160122	total: 6.49s	remaining: 1.66s
239:	learn: 9.4620416	total: 6.52s	remaining: 1.63s
240:	learn: 9.4463510	total: 6.54s	remaining: 1.6s
241:	learn: 9.4389200	total: 6.57s	remaining: 1.57s
242:	learn: 9.4078400	total: 6.6s	remaining: 1.55s
243:	learn: 9.3866265	total: 6.62s	remaining: 1.52s
244:	learn: 9.3473501	total: 6.65s	remaining: 1.49s
245:	learn: 9.2861016	total: 6.67s	remaining: 1.47s
246:	learn: 9.2734740	total: 6.7s	remaining: 1.44s
247:	learn: 9.2343522	total: 6.72s	remaining: 1.41s
248:	learn: 9.2223405	total: 6.75s	remaining: 1.38s
249:	learn: 9.2140074	total: 6.78s	remaining: 1.36s
250:	learn: 9.2046313	total: 6.81s	remaining: 1.33s
251:	learn: 9.1705343	total: 6.83s	remaining: 1.3s
252:	learn: 9.1635400	total: 6.86s	remaining: 1.27s
253:	learn: 9.1201103	total: 6.89s	remaining: 1.25s
254:	learn: 9.0874222	total: 6.91s	remaining: 1.22s
255:	learn: 9.0546404	total: 6.94s	remaining: 1.19s
256:	learn: 9.0294210	total: 6.96s	remaining: 1.16s
257:	learn: 8.9918549	total: 6.99s	remaining: 1.14s
258:	learn: 8.9860821	total: 7.02s	remaining: 1.11s
259:	learn: 8.9445721	total: 7.05s	remaining: 1.08s
260:	learn: 8.9204013	total: 7.07s	remaining: 1.06s
261:	learn: 8.8802796	total: 7.1s	remaining: 1.03s
262:	learn: 8.8319848	total: 7.12s	remaining: 1s
263:	learn: 8.8040786	total: 7.15s	remaining: 975ms
264:	learn: 8.7674300	total: 7.17s	remaining: 947ms
265:	learn: 8.7486932	total: 7.2s	remaining: 920ms
266:	learn: 8.7223059	total: 7.24s	remaining: 894ms
267:	learn: 8.7108992	total: 7.26s	remaining: 867ms
268:	learn: 8.7026068	total: 7.29s	remaining: 840ms
269:	learn: 8.6836280	total: 7.31s	remaining: 813ms
270:	learn: 8.6467938	total: 7.34s	remaining: 785ms
271:	learn: 8.6111555	total: 7.36s	remaining: 758ms
272:	learn: 8.5824973	total: 7.39s	remaining: 731ms
273:	learn: 8.5682745	total: 7.41s	remaining: 704ms
274:	learn: 8.5416779	total: 7.44s	remaining: 676ms
275:	learn: 8.5066950	total: 7.47s	remaining: 650ms
276:	learn: 8.4970713	total: 7.5s	remaining: 622ms
277:	learn: 8.4596116	total: 7.52s	remaining: 595ms
278:	learn: 8.4475857	total: 7.55s	remaining: 568ms
279:	learn: 8.4267482	total: 7.57s	remaining: 541ms
280:	learn: 8.4095246	total: 7.6s	remaining: 514ms
281:	learn: 8.3674941	total: 7.62s	remaining: 487ms
282:	learn: 8.3151248	total: 7.65s	remaining: 459ms
283:	learn: 8.2823195	total: 7.68s	remaining: 433ms
284:	learn: 8.2593854	total: 7.71s	remaining: 406ms
285:	learn: 8.2331325	total: 7.73s	remaining: 379ms
286:	learn: 8.1912221	total: 7.76s	remaining: 351ms
287:	learn: 8.1688810	total: 7.79s	remaining: 324ms
288:	learn: 8.1497193	total: 7.81s	remaining: 297ms
289:	learn: 8.1293205	total: 7.83s	remaining: 270ms
290:	learn: 8.1107539	total: 7.86s	remaining: 243ms
291:	learn: 8.0849956	total: 7.89s	remaining: 216ms
292:	learn: 8.0440544	total: 7.92s	remaining: 189ms
293:	learn: 8.0183325	total: 7.94s	remaining: 162ms
294:	learn: 7.9783905	total: 7.97s	remaining: 135ms
295:	learn: 7.9644989	total: 7.99s	remaining: 108ms
296:	learn: 7.9392598	total: 8.02s	remaining: 81ms
297:	learn: 7.9167538	total: 8.04s	remaining: 54ms
298:	learn: 7.8751558	total: 8.07s	remaining: 27ms
299:	learn: 7.8630471	total: 8.11s	remaining: 0us
avg_Mae_val de la población en la generación 1: 18.409740960972663 con std media = 9.257675568388544
Mae_val del Mejor modelo en la generación 1: 18.0168 con std = 9.1423
0:	learn: 27.5331316	total: 23.3ms	remaining: 2.3s
1:	learn: 27.0928878	total: 44.3ms	remaining: 2.17s
2:	learn: 26.6215397	total: 65.3ms	remaining: 2.11s
3:	learn: 26.1320797	total: 93.2ms	remaining: 2.24s
4:	learn: 25.5708114	total: 118ms	remaining: 2.24s
5:	learn: 25.1569609	total: 139ms	remaining: 2.18s
6:	learn: 24.6776916	total: 159ms	remaining: 2.11s
7:	learn: 24.3131466	total: 179ms	remaining: 2.06s
8:	learn: 23.9291269	total: 201ms	remaining: 2.03s
9:	learn: 23.5838366	total: 221ms	remaining: 1.99s
10:	learn: 23.2314577	total: 242ms	remaining: 1.96s
11:	learn: 22.8869949	total: 263ms	remaining: 1.93s
12:	learn: 22.4245937	total: 283ms	remaining: 1.89s
13:	learn: 22.0206534	total: 306ms	remaining: 1.88s
14:	learn: 21.7022606	total: 334ms	remaining: 1.89s
15:	learn: 21.3968672	total: 361ms	remaining: 1.89s
16:	learn: 20.9882573	total: 383ms	remaining: 1.87s
17:	learn: 20.6789624	total: 406ms	remaining: 1.85s
18:	learn: 20.3827949	total: 426ms	remaining: 1.82s
19:	learn: 20.1544166	total: 449ms	remaining: 1.8s
20:	learn: 19.9121457	total: 470ms	remaining: 1.77s
21:	learn: 19.6621421	total: 492ms	remaining: 1.74s
22:	learn: 19.3501569	total: 514ms	remaining: 1.72s
23:	learn: 19.0889327	total: 537ms	remaining: 1.7s
24:	learn: 18.8689195	total: 565ms	remaining: 1.69s
25:	learn: 18.5964445	total: 587ms	remaining: 1.67s
26:	learn: 18.3364834	total: 609ms	remaining: 1.65s
27:	learn: 18.1076409	total: 631ms	remaining: 1.62s
28:	learn: 17.8878261	total: 652ms	remaining: 1.59s
29:	learn: 17.6774627	total: 671ms	remaining: 1.56s
30:	learn: 17.4836295	total: 693ms	remaining: 1.54s
31:	learn: 17.2733761	total: 714ms	remaining: 1.52s
32:	learn: 17.0468867	total: 736ms	remaining: 1.49s
33:	learn: 16.8108325	total: 763ms	remaining: 1.48s
34:	learn: 16.5415211	total: 787ms	remaining: 1.46s
35:	learn: 16.3714184	total: 809ms	remaining: 1.44s
36:	learn: 16.1608788	total: 831ms	remaining: 1.41s
37:	learn: 15.9984328	total: 853ms	remaining: 1.39s
38:	learn: 15.8335060	total: 875ms	remaining: 1.37s
39:	learn: 15.6602202	total: 895ms	remaining: 1.34s
40:	learn: 15.4954581	total: 916ms	remaining: 1.32s
41:	learn: 15.3620882	total: 937ms	remaining: 1.29s
42:	learn: 15.2140166	total: 957ms	remaining: 1.27s
43:	learn: 15.0870086	total: 982ms	remaining: 1.25s
44:	learn: 14.9147154	total: 1.01s	remaining: 1.23s
45:	learn: 14.7609171	total: 1.03s	remaining: 1.21s
46:	learn: 14.5901052	total: 1.05s	remaining: 1.18s
47:	learn: 14.4273259	total: 1.07s	remaining: 1.16s
48:	learn: 14.2798610	total: 1.09s	remaining: 1.13s
49:	learn: 14.1021139	total: 1.11s	remaining: 1.11s
50:	learn: 13.9902689	total: 1.13s	remaining: 1.08s
51:	learn: 13.8779536	total: 1.15s	remaining: 1.06s
52:	learn: 13.7445550	total: 1.17s	remaining: 1.04s
53:	learn: 13.6337249	total: 1.2s	remaining: 1.02s
54:	learn: 13.5400472	total: 1.23s	remaining: 1s
55:	learn: 13.3803597	total: 1.25s	remaining: 984ms
56:	learn: 13.2902125	total: 1.27s	remaining: 961ms
57:	learn: 13.1578553	total: 1.3s	remaining: 939ms
58:	learn: 13.0362047	total: 1.32s	remaining: 916ms
59:	learn: 12.9394034	total: 1.34s	remaining: 893ms
60:	learn: 12.8348950	total: 1.36s	remaining: 870ms
61:	learn: 12.7266532	total: 1.38s	remaining: 848ms
62:	learn: 12.5633581	total: 1.41s	remaining: 826ms
63:	learn: 12.4424580	total: 1.43s	remaining: 806ms
64:	learn: 12.3207502	total: 1.45s	remaining: 783ms
65:	learn: 12.1991637	total: 1.47s	remaining: 760ms
66:	learn: 12.0994803	total: 1.5s	remaining: 737ms
67:	learn: 11.9730740	total: 1.52s	remaining: 715ms
68:	learn: 11.8611564	total: 1.54s	remaining: 692ms
69:	learn: 11.7682666	total: 1.56s	remaining: 669ms
70:	learn: 11.6650875	total: 1.58s	remaining: 647ms
71:	learn: 11.5916610	total: 1.6s	remaining: 624ms
72:	learn: 11.4778837	total: 1.63s	remaining: 603ms
73:	learn: 11.3753187	total: 1.66s	remaining: 584ms
74:	learn: 11.2807363	total: 1.68s	remaining: 561ms
75:	learn: 11.1922433	total: 1.71s	remaining: 539ms
76:	learn: 11.1089234	total: 1.73s	remaining: 516ms
77:	learn: 11.0238343	total: 1.75s	remaining: 493ms
78:	learn: 10.9409200	total: 1.78s	remaining: 473ms
79:	learn: 10.8632563	total: 1.8s	remaining: 450ms
80:	learn: 10.7619610	total: 1.82s	remaining: 428ms
81:	learn: 10.6971597	total: 1.85s	remaining: 406ms
82:	learn: 10.6251891	total: 1.88s	remaining: 385ms
83:	learn: 10.5326326	total: 1.91s	remaining: 363ms
84:	learn: 10.4377665	total: 1.93s	remaining: 340ms
85:	learn: 10.3817931	total: 1.95s	remaining: 317ms
86:	learn: 10.2988157	total: 1.97s	remaining: 294ms
87:	learn: 10.2192016	total: 1.99s	remaining: 272ms
88:	learn: 10.1494494	total: 2.01s	remaining: 249ms
89:	learn: 10.0741735	total: 2.04s	remaining: 226ms
90:	learn: 10.0144581	total: 2.06s	remaining: 204ms
91:	learn: 9.9524648	total: 2.09s	remaining: 182ms
92:	learn: 9.8774329	total: 2.11s	remaining: 159ms
93:	learn: 9.8185407	total: 2.14s	remaining: 136ms
94:	learn: 9.7522036	total: 2.16s	remaining: 114ms
95:	learn: 9.6854283	total: 2.18s	remaining: 91ms
96:	learn: 9.6130737	total: 2.21s	remaining: 68.3ms
97:	learn: 9.5584787	total: 2.23s	remaining: 45.6ms
98:	learn: 9.5074757	total: 2.25s	remaining: 22.8ms
99:	learn: 9.4107769	total: 2.28s	remaining: 0us
0:	learn: 42.7887226	total: 22.2ms	remaining: 2.2s
1:	learn: 41.8440822	total: 34.5ms	remaining: 1.69s
2:	learn: 40.7630462	total: 56.4ms	remaining: 1.82s
3:	learn: 39.5297880	total: 77.8ms	remaining: 1.87s
4:	learn: 38.6077280	total: 98.6ms	remaining: 1.87s
5:	learn: 37.6971732	total: 120ms	remaining: 1.89s
6:	learn: 36.7463218	total: 143ms	remaining: 1.91s
7:	learn: 35.8007703	total: 176ms	remaining: 2.02s
8:	learn: 34.9731655	total: 202ms	remaining: 2.05s
9:	learn: 34.1812857	total: 226ms	remaining: 2.04s
10:	learn: 33.3509251	total: 250ms	remaining: 2.02s
11:	learn: 32.6184078	total: 274ms	remaining: 2.01s
12:	learn: 31.9918266	total: 295ms	remaining: 1.97s
13:	learn: 31.2244641	total: 316ms	remaining: 1.94s
14:	learn: 30.5895020	total: 338ms	remaining: 1.91s
15:	learn: 29.9318064	total: 360ms	remaining: 1.89s
16:	learn: 29.2267723	total: 390ms	remaining: 1.9s
17:	learn: 28.6196795	total: 414ms	remaining: 1.89s
18:	learn: 28.0756253	total: 434ms	remaining: 1.85s
19:	learn: 27.4447254	total: 456ms	remaining: 1.82s
20:	learn: 26.8501969	total: 478ms	remaining: 1.8s
21:	learn: 26.3047050	total: 501ms	remaining: 1.78s
22:	learn: 25.7794565	total: 523ms	remaining: 1.75s
23:	learn: 25.2658135	total: 525ms	remaining: 1.66s
24:	learn: 24.7272223	total: 548ms	remaining: 1.64s
25:	learn: 24.3182112	total: 571ms	remaining: 1.63s
26:	learn: 23.9791831	total: 600ms	remaining: 1.62s
27:	learn: 23.6007465	total: 627ms	remaining: 1.61s
28:	learn: 23.2573075	total: 650ms	remaining: 1.59s
29:	learn: 22.9475656	total: 675ms	remaining: 1.57s
30:	learn: 22.5526305	total: 697ms	remaining: 1.55s
31:	learn: 22.1198330	total: 718ms	remaining: 1.52s
32:	learn: 21.7489085	total: 740ms	remaining: 1.5s
33:	learn: 21.3655565	total: 761ms	remaining: 1.48s
34:	learn: 21.0252381	total: 784ms	remaining: 1.46s
35:	learn: 20.7488731	total: 806ms	remaining: 1.43s
36:	learn: 20.5339646	total: 835ms	remaining: 1.42s
37:	learn: 20.2145684	total: 859ms	remaining: 1.4s
38:	learn: 19.8876509	total: 883ms	remaining: 1.38s
39:	learn: 19.6692385	total: 904ms	remaining: 1.35s
40:	learn: 19.4286270	total: 924ms	remaining: 1.33s
41:	learn: 19.1769071	total: 947ms	remaining: 1.31s
42:	learn: 18.9575237	total: 968ms	remaining: 1.28s
43:	learn: 18.7342247	total: 992ms	remaining: 1.26s
44:	learn: 18.4849146	total: 1.01s	remaining: 1.24s
45:	learn: 18.2624270	total: 1.04s	remaining: 1.23s
46:	learn: 18.0695318	total: 1.07s	remaining: 1.21s
47:	learn: 17.8828655	total: 1.09s	remaining: 1.18s
48:	learn: 17.6634936	total: 1.12s	remaining: 1.16s
49:	learn: 17.4906819	total: 1.14s	remaining: 1.14s
50:	learn: 17.3041918	total: 1.16s	remaining: 1.12s
51:	learn: 17.0823762	total: 1.18s	remaining: 1.09s
52:	learn: 16.8782440	total: 1.21s	remaining: 1.07s
53:	learn: 16.6195426	total: 1.24s	remaining: 1.05s
54:	learn: 16.4155330	total: 1.26s	remaining: 1.03s
55:	learn: 16.2476574	total: 1.28s	remaining: 1.01s
56:	learn: 16.0258529	total: 1.3s	remaining: 985ms
57:	learn: 15.8620283	total: 1.33s	remaining: 961ms
58:	learn: 15.7108893	total: 1.35s	remaining: 937ms
59:	learn: 15.5737080	total: 1.37s	remaining: 914ms
60:	learn: 15.4123613	total: 1.39s	remaining: 891ms
61:	learn: 15.2629578	total: 1.42s	remaining: 869ms
62:	learn: 15.1097207	total: 1.45s	remaining: 850ms
63:	learn: 14.9427151	total: 1.47s	remaining: 829ms
64:	learn: 14.7889867	total: 1.5s	remaining: 806ms
65:	learn: 14.6746715	total: 1.52s	remaining: 784ms
66:	learn: 14.5205076	total: 1.54s	remaining: 761ms
67:	learn: 14.3786093	total: 1.57s	remaining: 739ms
68:	learn: 14.2324541	total: 1.59s	remaining: 716ms
69:	learn: 14.0978554	total: 1.61s	remaining: 692ms
70:	learn: 13.9424582	total: 1.64s	remaining: 671ms
71:	learn: 13.8140169	total: 1.67s	remaining: 648ms
72:	learn: 13.6759558	total: 1.69s	remaining: 624ms
73:	learn: 13.5499120	total: 1.71s	remaining: 601ms
74:	learn: 13.4276838	total: 1.73s	remaining: 577ms
75:	learn: 13.3175244	total: 1.75s	remaining: 552ms
76:	learn: 13.2179850	total: 1.77s	remaining: 529ms
77:	learn: 13.1192866	total: 1.79s	remaining: 505ms
78:	learn: 13.0156952	total: 1.81s	remaining: 481ms
79:	learn: 12.8996211	total: 1.83s	remaining: 458ms
80:	learn: 12.8036058	total: 1.86s	remaining: 435ms
81:	learn: 12.7085774	total: 1.89s	remaining: 416ms
82:	learn: 12.6225307	total: 1.92s	remaining: 393ms
83:	learn: 12.4901564	total: 1.94s	remaining: 370ms
84:	learn: 12.3766435	total: 1.96s	remaining: 346ms
85:	learn: 12.2837693	total: 1.99s	remaining: 323ms
86:	learn: 12.1808453	total: 2s	remaining: 300ms
87:	learn: 12.1154320	total: 2.03s	remaining: 276ms
88:	learn: 12.0324383	total: 2.05s	remaining: 253ms
89:	learn: 11.9649236	total: 2.07s	remaining: 230ms
90:	learn: 11.8702731	total: 2.1s	remaining: 207ms
91:	learn: 11.7872282	total: 2.12s	remaining: 185ms
92:	learn: 11.6802080	total: 2.15s	remaining: 161ms
93:	learn: 11.5608608	total: 2.17s	remaining: 138ms
94:	learn: 11.4619383	total: 2.19s	remaining: 115ms
95:	learn: 11.3892378	total: 2.21s	remaining: 92ms
96:	learn: 11.3083410	total: 2.23s	remaining: 68.9ms
97:	learn: 11.2283441	total: 2.25s	remaining: 45.9ms
98:	learn: 11.1583948	total: 2.27s	remaining: 22.9ms
99:	learn: 11.0469641	total: 2.29s	remaining: 0us
0:	learn: 46.3030650	total: 2.88ms	remaining: 286ms
1:	learn: 45.3863821	total: 25ms	remaining: 1.23s
2:	learn: 44.3303657	total: 47.1ms	remaining: 1.52s
3:	learn: 43.3376970	total: 69ms	remaining: 1.66s
4:	learn: 42.3048090	total: 89ms	remaining: 1.69s
5:	learn: 41.2876619	total: 110ms	remaining: 1.72s
6:	learn: 40.2621105	total: 131ms	remaining: 1.74s
7:	learn: 39.2067787	total: 153ms	remaining: 1.76s
8:	learn: 38.2152671	total: 181ms	remaining: 1.83s
9:	learn: 37.3871577	total: 204ms	remaining: 1.83s
10:	learn: 36.6393787	total: 225ms	remaining: 1.82s
11:	learn: 35.8850130	total: 246ms	remaining: 1.81s
12:	learn: 35.3145595	total: 268ms	remaining: 1.79s
13:	learn: 34.5127183	total: 288ms	remaining: 1.77s
14:	learn: 33.9299378	total: 309ms	remaining: 1.75s
15:	learn: 33.1444830	total: 330ms	remaining: 1.73s
16:	learn: 32.5046852	total: 351ms	remaining: 1.71s
17:	learn: 31.9896017	total: 373ms	remaining: 1.7s
18:	learn: 31.3671259	total: 401ms	remaining: 1.71s
19:	learn: 30.7709490	total: 427ms	remaining: 1.71s
20:	learn: 30.3076309	total: 450ms	remaining: 1.69s
21:	learn: 29.7436165	total: 472ms	remaining: 1.67s
22:	learn: 29.2367879	total: 495ms	remaining: 1.66s
23:	learn: 28.6721804	total: 518ms	remaining: 1.64s
24:	learn: 28.1740050	total: 540ms	remaining: 1.62s
25:	learn: 27.7310122	total: 560ms	remaining: 1.59s
26:	learn: 27.2559389	total: 582ms	remaining: 1.57s
27:	learn: 26.7919727	total: 605ms	remaining: 1.55s
28:	learn: 26.3973786	total: 632ms	remaining: 1.55s
29:	learn: 25.9446861	total: 652ms	remaining: 1.52s
30:	learn: 25.5889650	total: 673ms	remaining: 1.5s
31:	learn: 25.1627233	total: 693ms	remaining: 1.47s
32:	learn: 24.8848176	total: 715ms	remaining: 1.45s
33:	learn: 24.4268954	total: 735ms	remaining: 1.43s
34:	learn: 24.1655944	total: 758ms	remaining: 1.41s
35:	learn: 23.8296205	total: 779ms	remaining: 1.39s
36:	learn: 23.4214518	total: 802ms	remaining: 1.36s
37:	learn: 23.1485204	total: 834ms	remaining: 1.36s
38:	learn: 22.7675316	total: 858ms	remaining: 1.34s
39:	learn: 22.4807336	total: 880ms	remaining: 1.32s
40:	learn: 22.2054867	total: 903ms	remaining: 1.3s
41:	learn: 21.9328851	total: 928ms	remaining: 1.28s
42:	learn: 21.6073446	total: 950ms	remaining: 1.26s
43:	learn: 21.3198829	total: 972ms	remaining: 1.24s
44:	learn: 21.0001604	total: 995ms	remaining: 1.22s
45:	learn: 20.6560095	total: 1.02s	remaining: 1.19s
46:	learn: 20.4068862	total: 1.04s	remaining: 1.18s
47:	learn: 20.1123610	total: 1.07s	remaining: 1.16s
48:	learn: 19.8929795	total: 1.09s	remaining: 1.14s
49:	learn: 19.6851325	total: 1.11s	remaining: 1.11s
50:	learn: 19.4379923	total: 1.13s	remaining: 1.09s
51:	learn: 19.1765299	total: 1.15s	remaining: 1.06s
52:	learn: 18.9359818	total: 1.17s	remaining: 1.04s
53:	learn: 18.6848954	total: 1.2s	remaining: 1.02s
54:	learn: 18.4602852	total: 1.22s	remaining: 996ms
55:	learn: 18.2692773	total: 1.25s	remaining: 981ms
56:	learn: 18.0399201	total: 1.27s	remaining: 962ms
57:	learn: 17.8235063	total: 1.3s	remaining: 940ms
58:	learn: 17.6311769	total: 1.32s	remaining: 919ms
59:	learn: 17.4590002	total: 1.34s	remaining: 897ms
60:	learn: 17.2170241	total: 1.37s	remaining: 874ms
61:	learn: 17.0477567	total: 1.39s	remaining: 852ms
62:	learn: 16.8483227	total: 1.41s	remaining: 829ms
63:	learn: 16.7003707	total: 1.43s	remaining: 805ms
64:	learn: 16.5244197	total: 1.45s	remaining: 783ms
65:	learn: 16.3560522	total: 1.48s	remaining: 761ms
66:	learn: 16.2090391	total: 1.51s	remaining: 742ms
67:	learn: 16.0773806	total: 1.53s	remaining: 721ms
68:	learn: 15.9313223	total: 1.55s	remaining: 698ms
69:	learn: 15.8587403	total: 1.57s	remaining: 675ms
70:	learn: 15.7219902	total: 1.6s	remaining: 652ms
71:	learn: 15.5888303	total: 1.62s	remaining: 629ms
72:	learn: 15.4672174	total: 1.64s	remaining: 606ms
73:	learn: 15.3250528	total: 1.66s	remaining: 583ms
74:	learn: 15.1885799	total: 1.68s	remaining: 561ms
75:	learn: 15.0571789	total: 1.71s	remaining: 541ms
76:	learn: 14.9087739	total: 1.74s	remaining: 519ms
77:	learn: 14.7682304	total: 1.76s	remaining: 497ms
78:	learn: 14.5259049	total: 1.78s	remaining: 475ms
79:	learn: 14.3631190	total: 1.81s	remaining: 452ms
80:	learn: 14.2467961	total: 1.83s	remaining: 429ms
81:	learn: 14.0738885	total: 1.85s	remaining: 407ms
82:	learn: 13.9665111	total: 1.88s	remaining: 384ms
83:	learn: 13.8331846	total: 1.9s	remaining: 363ms
84:	learn: 13.7292162	total: 1.93s	remaining: 340ms
85:	learn: 13.6492354	total: 1.95s	remaining: 317ms
86:	learn: 13.5481979	total: 1.97s	remaining: 295ms
87:	learn: 13.4472352	total: 1.99s	remaining: 272ms
88:	learn: 13.3258910	total: 2.02s	remaining: 249ms
89:	learn: 13.2393886	total: 2.04s	remaining: 227ms
90:	learn: 13.1693415	total: 2.06s	remaining: 204ms
91:	learn: 13.0653588	total: 2.08s	remaining: 181ms
92:	learn: 12.9569271	total: 2.11s	remaining: 159ms
93:	learn: 12.7887232	total: 2.14s	remaining: 136ms
94:	learn: 12.6654219	total: 2.16s	remaining: 114ms
95:	learn: 12.5942081	total: 2.19s	remaining: 91.1ms
96:	learn: 12.5016735	total: 2.21s	remaining: 68.3ms
97:	learn: 12.3851734	total: 2.23s	remaining: 45.6ms
98:	learn: 12.2915943	total: 2.25s	remaining: 22.8ms
99:	learn: 12.1817773	total: 2.28s	remaining: 0us
0:	learn: 45.9374585	total: 3.28ms	remaining: 325ms
1:	learn: 44.9941372	total: 23.1ms	remaining: 1.13s
2:	learn: 44.2262139	total: 44.1ms	remaining: 1.43s
3:	learn: 43.4077369	total: 65.5ms	remaining: 1.57s
4:	learn: 42.4614795	total: 87.4ms	remaining: 1.66s
5:	learn: 41.7293035	total: 109ms	remaining: 1.71s
6:	learn: 40.9788334	total: 131ms	remaining: 1.74s
7:	learn: 40.2192521	total: 153ms	remaining: 1.76s
8:	learn: 39.3640339	total: 176ms	remaining: 1.77s
9:	learn: 38.5378070	total: 199ms	remaining: 1.79s
10:	learn: 37.8182939	total: 230ms	remaining: 1.86s
11:	learn: 37.1773569	total: 254ms	remaining: 1.86s
12:	learn: 36.4195124	total: 277ms	remaining: 1.85s
13:	learn: 35.5821022	total: 299ms	remaining: 1.84s
14:	learn: 35.0064478	total: 321ms	remaining: 1.82s
15:	learn: 34.2615732	total: 341ms	remaining: 1.79s
16:	learn: 33.5412554	total: 364ms	remaining: 1.77s
17:	learn: 32.9141508	total: 384ms	remaining: 1.75s
18:	learn: 32.2363942	total: 406ms	remaining: 1.73s
19:	learn: 31.7331387	total: 436ms	remaining: 1.74s
20:	learn: 31.0899756	total: 459ms	remaining: 1.73s
21:	learn: 30.6319944	total: 481ms	remaining: 1.7s
22:	learn: 30.1842367	total: 500ms	remaining: 1.67s
23:	learn: 29.6380878	total: 520ms	remaining: 1.65s
24:	learn: 29.2321241	total: 541ms	remaining: 1.62s
25:	learn: 28.7979520	total: 562ms	remaining: 1.6s
26:	learn: 28.2980553	total: 582ms	remaining: 1.57s
27:	learn: 27.8482566	total: 604ms	remaining: 1.55s
28:	learn: 27.4300154	total: 633ms	remaining: 1.55s
29:	learn: 27.0089070	total: 658ms	remaining: 1.53s
30:	learn: 26.6386533	total: 680ms	remaining: 1.51s
31:	learn: 26.1488739	total: 703ms	remaining: 1.49s
32:	learn: 25.7427326	total: 726ms	remaining: 1.47s
33:	learn: 25.4135376	total: 749ms	remaining: 1.45s
34:	learn: 25.1125079	total: 768ms	remaining: 1.43s
35:	learn: 24.7765508	total: 789ms	remaining: 1.4s
36:	learn: 24.4184054	total: 810ms	remaining: 1.38s
37:	learn: 24.1285465	total: 833ms	remaining: 1.36s
38:	learn: 23.7617767	total: 859ms	remaining: 1.34s
39:	learn: 23.4697237	total: 883ms	remaining: 1.32s
40:	learn: 23.1529572	total: 904ms	remaining: 1.3s
41:	learn: 22.9281680	total: 925ms	remaining: 1.28s
42:	learn: 22.5433571	total: 947ms	remaining: 1.25s
43:	learn: 22.2694210	total: 968ms	remaining: 1.23s
44:	learn: 22.0626545	total: 987ms	remaining: 1.21s
45:	learn: 21.7856336	total: 1.01s	remaining: 1.18s
46:	learn: 21.5744570	total: 1.03s	remaining: 1.16s
47:	learn: 21.3032312	total: 1.05s	remaining: 1.14s
48:	learn: 21.0549035	total: 1.08s	remaining: 1.13s
49:	learn: 20.7560738	total: 1.11s	remaining: 1.11s
50:	learn: 20.5666362	total: 1.13s	remaining: 1.08s
51:	learn: 20.2971913	total: 1.15s	remaining: 1.06s
52:	learn: 20.1128767	total: 1.18s	remaining: 1.04s
53:	learn: 19.9086266	total: 1.19s	remaining: 1.02s
54:	learn: 19.8505379	total: 1.21s	remaining: 994ms
55:	learn: 19.6060818	total: 1.23s	remaining: 970ms
56:	learn: 19.3463236	total: 1.26s	remaining: 948ms
57:	learn: 19.1448943	total: 1.28s	remaining: 924ms
58:	learn: 18.9303070	total: 1.3s	remaining: 907ms
59:	learn: 18.7334702	total: 1.33s	remaining: 885ms
60:	learn: 18.4745316	total: 1.35s	remaining: 862ms
61:	learn: 18.3429058	total: 1.37s	remaining: 838ms
62:	learn: 18.2349371	total: 1.39s	remaining: 815ms
63:	learn: 18.0464198	total: 1.41s	remaining: 793ms
64:	learn: 17.9551885	total: 1.43s	remaining: 770ms
65:	learn: 17.8046513	total: 1.45s	remaining: 746ms
66:	learn: 17.6580615	total: 1.47s	remaining: 725ms
67:	learn: 17.5210179	total: 1.5s	remaining: 705ms
68:	learn: 17.3683843	total: 1.53s	remaining: 686ms
69:	learn: 17.2746349	total: 1.55s	remaining: 664ms
70:	learn: 17.1657792	total: 1.57s	remaining: 642ms
71:	learn: 17.0139366	total: 1.59s	remaining: 620ms
72:	learn: 16.9273438	total: 1.61s	remaining: 597ms
73:	learn: 16.7770796	total: 1.64s	remaining: 574ms
74:	learn: 16.6273270	total: 1.65s	remaining: 551ms
75:	learn: 16.4876252	total: 1.67s	remaining: 529ms
76:	learn: 16.3403316	total: 1.7s	remaining: 507ms
77:	learn: 16.2334666	total: 1.73s	remaining: 487ms
78:	learn: 16.1246403	total: 1.75s	remaining: 466ms
79:	learn: 16.1051765	total: 1.75s	remaining: 438ms
80:	learn: 15.9789512	total: 1.77s	remaining: 416ms
81:	learn: 15.8668312	total: 1.79s	remaining: 394ms
82:	learn: 15.8286992	total: 1.81s	remaining: 372ms
83:	learn: 15.7176535	total: 1.84s	remaining: 350ms
84:	learn: 15.6304053	total: 1.86s	remaining: 328ms
85:	learn: 15.5540487	total: 1.88s	remaining: 306ms
86:	learn: 15.4358015	total: 1.9s	remaining: 284ms
87:	learn: 15.3234993	total: 1.92s	remaining: 262ms
88:	learn: 15.1846833	total: 1.95s	remaining: 242ms
89:	learn: 15.0930916	total: 1.98s	remaining: 220ms
90:	learn: 14.9870552	total: 2s	remaining: 198ms
91:	learn: 14.9340350	total: 2.02s	remaining: 176ms
92:	learn: 14.8819329	total: 2.05s	remaining: 154ms
93:	learn: 14.8108947	total: 2.07s	remaining: 132ms
94:	learn: 14.7229760	total: 2.09s	remaining: 110ms
95:	learn: 14.6144792	total: 2.11s	remaining: 88.1ms
96:	learn: 14.5117556	total: 2.14s	remaining: 66.3ms
97:	learn: 14.4162730	total: 2.17s	remaining: 44.2ms
98:	learn: 14.3472920	total: 2.19s	remaining: 22.1ms
99:	learn: 14.2651631	total: 2.21s	remaining: 0us
0:	learn: 46.4538034	total: 19.7ms	remaining: 1.95s
1:	learn: 45.4517374	total: 40.2ms	remaining: 1.97s
2:	learn: 44.5278586	total: 63.6ms	remaining: 2.06s
3:	learn: 43.4085977	total: 94.2ms	remaining: 2.26s
4:	learn: 42.4277811	total: 119ms	remaining: 2.27s
5:	learn: 41.6326697	total: 143ms	remaining: 2.24s
6:	learn: 40.7538359	total: 167ms	remaining: 2.21s
7:	learn: 39.9527309	total: 190ms	remaining: 2.19s
8:	learn: 39.0753018	total: 209ms	remaining: 2.12s
9:	learn: 38.2762566	total: 231ms	remaining: 2.08s
10:	learn: 37.6931120	total: 252ms	remaining: 2.04s
11:	learn: 37.1152456	total: 277ms	remaining: 2.03s
12:	learn: 36.4260589	total: 304ms	remaining: 2.04s
13:	learn: 35.8227743	total: 327ms	remaining: 2.01s
14:	learn: 35.1895931	total: 349ms	remaining: 1.98s
15:	learn: 34.5173917	total: 372ms	remaining: 1.95s
16:	learn: 33.7580423	total: 394ms	remaining: 1.92s
17:	learn: 33.2817590	total: 414ms	remaining: 1.89s
18:	learn: 32.6094234	total: 436ms	remaining: 1.86s
19:	learn: 32.1663838	total: 457ms	remaining: 1.83s
20:	learn: 31.6118204	total: 478ms	remaining: 1.8s
21:	learn: 31.0524919	total: 501ms	remaining: 1.78s
22:	learn: 30.6530294	total: 536ms	remaining: 1.79s
23:	learn: 29.9638142	total: 561ms	remaining: 1.77s
24:	learn: 29.4784766	total: 584ms	remaining: 1.75s
25:	learn: 29.0431548	total: 606ms	remaining: 1.72s
26:	learn: 28.5923229	total: 629ms	remaining: 1.7s
27:	learn: 28.1646598	total: 652ms	remaining: 1.68s
28:	learn: 27.7320559	total: 676ms	remaining: 1.66s
29:	learn: 27.3472101	total: 699ms	remaining: 1.63s
30:	learn: 26.9299792	total: 723ms	remaining: 1.61s
31:	learn: 26.5961114	total: 752ms	remaining: 1.6s
32:	learn: 26.0427736	total: 781ms	remaining: 1.58s
33:	learn: 25.5746867	total: 803ms	remaining: 1.56s
34:	learn: 25.2866624	total: 824ms	remaining: 1.53s
35:	learn: 24.9462619	total: 846ms	remaining: 1.5s
36:	learn: 24.6276430	total: 868ms	remaining: 1.48s
37:	learn: 24.3408784	total: 889ms	remaining: 1.45s
38:	learn: 24.0950500	total: 911ms	remaining: 1.42s
39:	learn: 23.7192013	total: 931ms	remaining: 1.4s
40:	learn: 23.4131644	total: 955ms	remaining: 1.37s
41:	learn: 23.0871679	total: 987ms	remaining: 1.36s
42:	learn: 22.8237273	total: 1.01s	remaining: 1.34s
43:	learn: 22.5691307	total: 1.04s	remaining: 1.32s
44:	learn: 22.3341037	total: 1.06s	remaining: 1.29s
45:	learn: 22.0782394	total: 1.08s	remaining: 1.27s
46:	learn: 21.8287260	total: 1.1s	remaining: 1.24s
47:	learn: 21.4945293	total: 1.12s	remaining: 1.22s
48:	learn: 21.2779027	total: 1.15s	remaining: 1.19s
49:	learn: 21.0183245	total: 1.17s	remaining: 1.17s
50:	learn: 20.8304059	total: 1.2s	remaining: 1.15s
51:	learn: 20.6505224	total: 1.22s	remaining: 1.13s
52:	learn: 20.4434302	total: 1.24s	remaining: 1.1s
53:	learn: 20.2358596	total: 1.26s	remaining: 1.07s
54:	learn: 19.9248895	total: 1.28s	remaining: 1.05s
55:	learn: 19.6402054	total: 1.3s	remaining: 1.02s
56:	learn: 19.4863996	total: 1.32s	remaining: 996ms
57:	learn: 19.2820242	total: 1.34s	remaining: 970ms
58:	learn: 19.0309684	total: 1.36s	remaining: 946ms
59:	learn: 18.9156855	total: 1.38s	remaining: 922ms
60:	learn: 18.7362124	total: 1.41s	remaining: 902ms
61:	learn: 18.5327109	total: 1.44s	remaining: 880ms
62:	learn: 18.3473379	total: 1.46s	remaining: 857ms
63:	learn: 18.1447985	total: 1.48s	remaining: 832ms
64:	learn: 17.9782680	total: 1.5s	remaining: 808ms
65:	learn: 17.7731055	total: 1.52s	remaining: 784ms
66:	learn: 17.6666871	total: 1.54s	remaining: 760ms
67:	learn: 17.4893685	total: 1.56s	remaining: 737ms
68:	learn: 17.4081271	total: 1.59s	remaining: 714ms
69:	learn: 17.2768910	total: 1.61s	remaining: 692ms
70:	learn: 17.1686736	total: 1.64s	remaining: 670ms
71:	learn: 17.0306633	total: 1.66s	remaining: 646ms
72:	learn: 16.8387254	total: 1.68s	remaining: 622ms
73:	learn: 16.6835666	total: 1.7s	remaining: 599ms
74:	learn: 16.5275101	total: 1.72s	remaining: 574ms
75:	learn: 16.3788685	total: 1.74s	remaining: 551ms
76:	learn: 16.2632053	total: 1.76s	remaining: 527ms
77:	learn: 16.1434405	total: 1.78s	remaining: 503ms
78:	learn: 16.0439065	total: 1.81s	remaining: 480ms
79:	learn: 15.9662547	total: 1.84s	remaining: 460ms
80:	learn: 15.8312242	total: 1.86s	remaining: 437ms
81:	learn: 15.7325519	total: 1.89s	remaining: 414ms
82:	learn: 15.5842095	total: 1.91s	remaining: 391ms
83:	learn: 15.4773774	total: 1.93s	remaining: 368ms
84:	learn: 15.3840131	total: 1.95s	remaining: 345ms
85:	learn: 15.2543240	total: 1.97s	remaining: 321ms
86:	learn: 15.1770733	total: 1.99s	remaining: 298ms
87:	learn: 15.0601980	total: 2.01s	remaining: 275ms
88:	learn: 14.9710854	total: 2.04s	remaining: 252ms
89:	learn: 14.8071359	total: 2.06s	remaining: 229ms
90:	learn: 14.6765600	total: 2.08s	remaining: 206ms
91:	learn: 14.6006761	total: 2.1s	remaining: 183ms
92:	learn: 14.4927442	total: 2.12s	remaining: 160ms
93:	learn: 14.3676298	total: 2.14s	remaining: 137ms
94:	learn: 14.2821814	total: 2.16s	remaining: 114ms
95:	learn: 14.1977772	total: 2.18s	remaining: 91ms
96:	learn: 14.0716572	total: 2.2s	remaining: 68.2ms
97:	learn: 13.9596234	total: 2.23s	remaining: 45.4ms
98:	learn: 13.8995436	total: 2.26s	remaining: 22.8ms
99:	learn: 13.8034385	total: 2.28s	remaining: 0us
0:	learn: 27.5396669	total: 1.5ms	remaining: 148ms
1:	learn: 27.0711196	total: 2.78ms	remaining: 136ms
2:	learn: 26.7462899	total: 4.07ms	remaining: 132ms
3:	learn: 26.3889740	total: 5.24ms	remaining: 126ms
4:	learn: 26.0454949	total: 6.55ms	remaining: 124ms
5:	learn: 25.6379887	total: 7.87ms	remaining: 123ms
6:	learn: 25.3078228	total: 9.28ms	remaining: 123ms
7:	learn: 25.0053100	total: 10.5ms	remaining: 121ms
8:	learn: 24.7065110	total: 11.8ms	remaining: 119ms
9:	learn: 24.4255226	total: 13.1ms	remaining: 117ms
10:	learn: 24.0933348	total: 14.3ms	remaining: 116ms
11:	learn: 23.8483245	total: 15.5ms	remaining: 114ms
12:	learn: 23.6206636	total: 16.9ms	remaining: 113ms
13:	learn: 23.2922409	total: 18.1ms	remaining: 111ms
14:	learn: 23.0921688	total: 19.4ms	remaining: 110ms
15:	learn: 22.8859744	total: 20.7ms	remaining: 109ms
16:	learn: 22.6507414	total: 21.9ms	remaining: 107ms
17:	learn: 22.4275526	total: 23.2ms	remaining: 106ms
18:	learn: 22.2482577	total: 24.5ms	remaining: 104ms
19:	learn: 22.0728028	total: 25.9ms	remaining: 104ms
20:	learn: 21.8632088	total: 27.2ms	remaining: 102ms
21:	learn: 21.7136685	total: 28.4ms	remaining: 101ms
22:	learn: 21.4990130	total: 29.6ms	remaining: 99.1ms
23:	learn: 21.2603930	total: 30.8ms	remaining: 97.4ms
24:	learn: 21.0156291	total: 32.1ms	remaining: 96.2ms
25:	learn: 20.8324243	total: 33.2ms	remaining: 94.5ms
26:	learn: 20.6486014	total: 34.4ms	remaining: 93.1ms
27:	learn: 20.4653098	total: 35.7ms	remaining: 91.8ms
28:	learn: 20.2517031	total: 36.9ms	remaining: 90.4ms
29:	learn: 20.0901141	total: 38.2ms	remaining: 89.1ms
30:	learn: 19.9448720	total: 39.5ms	remaining: 87.9ms
31:	learn: 19.8092363	total: 40.8ms	remaining: 86.6ms
32:	learn: 19.6433245	total: 42.2ms	remaining: 85.6ms
33:	learn: 19.5094619	total: 43.5ms	remaining: 84.5ms
34:	learn: 19.3969342	total: 44.7ms	remaining: 83.1ms
35:	learn: 19.2936512	total: 46.1ms	remaining: 81.9ms
36:	learn: 19.1767015	total: 47.4ms	remaining: 80.7ms
37:	learn: 19.0124800	total: 48.6ms	remaining: 79.4ms
38:	learn: 18.8704042	total: 50ms	remaining: 78.2ms
39:	learn: 18.7979750	total: 51.2ms	remaining: 76.8ms
40:	learn: 18.6894469	total: 52.5ms	remaining: 75.6ms
41:	learn: 18.5339705	total: 53.9ms	remaining: 74.4ms
42:	learn: 18.4104127	total: 55.1ms	remaining: 73ms
43:	learn: 18.2671840	total: 56.3ms	remaining: 71.7ms
44:	learn: 18.1898954	total: 57.6ms	remaining: 70.4ms
45:	learn: 18.0778917	total: 58.8ms	remaining: 69ms
46:	learn: 17.9742755	total: 60.1ms	remaining: 67.8ms
47:	learn: 17.8715751	total: 61.3ms	remaining: 66.5ms
48:	learn: 17.7802309	total: 62.6ms	remaining: 65.1ms
49:	learn: 17.6538567	total: 63.8ms	remaining: 63.8ms
50:	learn: 17.5783755	total: 65ms	remaining: 62.5ms
51:	learn: 17.4828039	total: 66.3ms	remaining: 61.2ms
52:	learn: 17.4113566	total: 67.5ms	remaining: 59.9ms
53:	learn: 17.3288316	total: 69.2ms	remaining: 58.9ms
54:	learn: 17.2467366	total: 70.6ms	remaining: 57.8ms
55:	learn: 17.1835351	total: 71.9ms	remaining: 56.5ms
56:	learn: 17.1099250	total: 73.1ms	remaining: 55.2ms
57:	learn: 17.0125026	total: 74.4ms	remaining: 53.9ms
58:	learn: 16.9632634	total: 75.8ms	remaining: 52.7ms
59:	learn: 16.8418169	total: 77.2ms	remaining: 51.5ms
60:	learn: 16.8014640	total: 78.6ms	remaining: 50.3ms
61:	learn: 16.7378790	total: 79.9ms	remaining: 49ms
62:	learn: 16.6702723	total: 81.3ms	remaining: 47.7ms
63:	learn: 16.5860445	total: 82.5ms	remaining: 46.4ms
64:	learn: 16.5555219	total: 83.9ms	remaining: 45.2ms
65:	learn: 16.5017286	total: 85.2ms	remaining: 43.9ms
66:	learn: 16.4670034	total: 86.6ms	remaining: 42.6ms
67:	learn: 16.4166623	total: 87.9ms	remaining: 41.4ms
68:	learn: 16.3600109	total: 89.2ms	remaining: 40.1ms
69:	learn: 16.2612093	total: 90.5ms	remaining: 38.8ms
70:	learn: 16.2433137	total: 91.8ms	remaining: 37.5ms
71:	learn: 16.1910263	total: 93.2ms	remaining: 36.2ms
72:	learn: 16.1217878	total: 94.6ms	remaining: 35ms
73:	learn: 16.0458991	total: 95.9ms	remaining: 33.7ms
74:	learn: 15.9835877	total: 97.1ms	remaining: 32.4ms
75:	learn: 15.9357219	total: 98.5ms	remaining: 31.1ms
76:	learn: 15.8724556	total: 99.7ms	remaining: 29.8ms
77:	learn: 15.8140222	total: 101ms	remaining: 28.5ms
78:	learn: 15.7865227	total: 102ms	remaining: 27.2ms
79:	learn: 15.7244499	total: 104ms	remaining: 25.9ms
80:	learn: 15.6879106	total: 105ms	remaining: 24.6ms
81:	learn: 15.6296104	total: 106ms	remaining: 23.3ms
82:	learn: 15.5666712	total: 108ms	remaining: 22ms
83:	learn: 15.4904472	total: 111ms	remaining: 21.1ms
84:	learn: 15.4451518	total: 113ms	remaining: 20ms
85:	learn: 15.3831808	total: 115ms	remaining: 18.7ms
86:	learn: 15.3516180	total: 117ms	remaining: 17.5ms
87:	learn: 15.3347957	total: 119ms	remaining: 16.3ms
88:	learn: 15.2950036	total: 121ms	remaining: 15ms
89:	learn: 15.2713057	total: 123ms	remaining: 13.7ms
90:	learn: 15.2435112	total: 125ms	remaining: 12.3ms
91:	learn: 15.2016893	total: 127ms	remaining: 11ms
92:	learn: 15.1300259	total: 129ms	remaining: 9.68ms
93:	learn: 15.1100842	total: 130ms	remaining: 8.32ms
94:	learn: 15.0536701	total: 132ms	remaining: 6.93ms
95:	learn: 15.0164869	total: 134ms	remaining: 5.57ms
96:	learn: 14.9612179	total: 135ms	remaining: 4.18ms
97:	learn: 14.9125935	total: 137ms	remaining: 2.79ms
98:	learn: 14.8799048	total: 138ms	remaining: 1.4ms
99:	learn: 14.8420890	total: 140ms	remaining: 0us
0:	learn: 43.0053311	total: 1.41ms	remaining: 140ms
1:	learn: 42.0239625	total: 2.68ms	remaining: 132ms
2:	learn: 41.1030003	total: 4.19ms	remaining: 136ms
3:	learn: 40.3772208	total: 5.59ms	remaining: 134ms
4:	learn: 39.5285394	total: 6.98ms	remaining: 133ms
5:	learn: 38.8846904	total: 8.39ms	remaining: 131ms
6:	learn: 38.0874915	total: 9.64ms	remaining: 128ms
7:	learn: 37.2874302	total: 11.1ms	remaining: 128ms
8:	learn: 36.6773271	total: 12.5ms	remaining: 127ms
9:	learn: 35.8988723	total: 14ms	remaining: 126ms
10:	learn: 35.2421951	total: 15.4ms	remaining: 125ms
11:	learn: 34.6974421	total: 16.7ms	remaining: 123ms
12:	learn: 33.9803216	total: 18.1ms	remaining: 121ms
13:	learn: 33.2894316	total: 19.4ms	remaining: 119ms
14:	learn: 32.8509600	total: 20.7ms	remaining: 117ms
15:	learn: 32.2785817	total: 21.9ms	remaining: 115ms
16:	learn: 31.6455283	total: 23.3ms	remaining: 114ms
17:	learn: 31.1621398	total: 24.5ms	remaining: 112ms
18:	learn: 30.6948657	total: 25.9ms	remaining: 111ms
19:	learn: 30.2696759	total: 27.2ms	remaining: 109ms
20:	learn: 29.7990443	total: 28.6ms	remaining: 108ms
21:	learn: 29.3120464	total: 29.8ms	remaining: 106ms
22:	learn: 28.8520090	total: 31ms	remaining: 104ms
23:	learn: 28.4516277	total: 32.5ms	remaining: 103ms
24:	learn: 27.9805220	total: 33.7ms	remaining: 101ms
25:	learn: 27.5120013	total: 35.2ms	remaining: 100ms
26:	learn: 27.1140024	total: 36.4ms	remaining: 98.5ms
27:	learn: 26.8120668	total: 37.7ms	remaining: 96.9ms
28:	learn: 26.4659360	total: 39ms	remaining: 95.5ms
29:	learn: 26.1004005	total: 40.3ms	remaining: 94ms
30:	learn: 25.7313823	total: 41.7ms	remaining: 92.9ms
31:	learn: 25.4182130	total: 43ms	remaining: 91.4ms
32:	learn: 25.2047643	total: 44.3ms	remaining: 90ms
33:	learn: 24.9811895	total: 45.6ms	remaining: 88.5ms
34:	learn: 24.6834284	total: 46.8ms	remaining: 87ms
35:	learn: 24.3576937	total: 48.1ms	remaining: 85.6ms
36:	learn: 24.1026830	total: 49.6ms	remaining: 84.4ms
37:	learn: 23.8848222	total: 50.9ms	remaining: 83.1ms
38:	learn: 23.6646521	total: 52.2ms	remaining: 81.6ms
39:	learn: 23.4774417	total: 53.4ms	remaining: 80.2ms
40:	learn: 23.2957217	total: 54.8ms	remaining: 78.8ms
41:	learn: 23.0902748	total: 56.1ms	remaining: 77.4ms
42:	learn: 22.9141327	total: 57.3ms	remaining: 76ms
43:	learn: 22.6661361	total: 58.7ms	remaining: 74.7ms
44:	learn: 22.4669869	total: 60.3ms	remaining: 73.7ms
45:	learn: 22.3018496	total: 61.6ms	remaining: 72.3ms
46:	learn: 22.1164541	total: 63.3ms	remaining: 71.4ms
47:	learn: 21.9166860	total: 64.7ms	remaining: 70.1ms
48:	learn: 21.7309627	total: 66.3ms	remaining: 69ms
49:	learn: 21.5925245	total: 67.8ms	remaining: 67.8ms
50:	learn: 21.4391920	total: 69.5ms	remaining: 66.7ms
51:	learn: 21.2627368	total: 70.8ms	remaining: 65.4ms
52:	learn: 21.1393465	total: 72.3ms	remaining: 64.1ms
53:	learn: 21.0307989	total: 73.8ms	remaining: 62.9ms
54:	learn: 20.9650666	total: 75.4ms	remaining: 61.7ms
55:	learn: 20.8329784	total: 76.9ms	remaining: 60.5ms
56:	learn: 20.6897421	total: 78.5ms	remaining: 59.2ms
57:	learn: 20.5437642	total: 80.1ms	remaining: 58ms
58:	learn: 20.4456457	total: 81.6ms	remaining: 56.7ms
59:	learn: 20.3198670	total: 83.1ms	remaining: 55.4ms
60:	learn: 20.2266012	total: 84.5ms	remaining: 54ms
61:	learn: 20.1117397	total: 86.2ms	remaining: 52.8ms
62:	learn: 20.0287866	total: 87.7ms	remaining: 51.5ms
63:	learn: 19.9336125	total: 89.3ms	remaining: 50.2ms
64:	learn: 19.8386945	total: 90.8ms	remaining: 48.9ms
65:	learn: 19.7723203	total: 92.9ms	remaining: 47.9ms
66:	learn: 19.7086882	total: 94.4ms	remaining: 46.5ms
67:	learn: 19.6214223	total: 96ms	remaining: 45.2ms
68:	learn: 19.5646939	total: 97.6ms	remaining: 43.9ms
69:	learn: 19.4647185	total: 99.1ms	remaining: 42.5ms
70:	learn: 19.3928476	total: 100ms	remaining: 41ms
71:	learn: 19.2916814	total: 102ms	remaining: 39.6ms
72:	learn: 19.1881737	total: 103ms	remaining: 38.1ms
73:	learn: 19.1104643	total: 104ms	remaining: 36.7ms
74:	learn: 19.0297834	total: 106ms	remaining: 35.3ms
75:	learn: 18.9455314	total: 107ms	remaining: 33.9ms
76:	learn: 18.8565548	total: 109ms	remaining: 32.6ms
77:	learn: 18.7985754	total: 111ms	remaining: 31.2ms
78:	learn: 18.7085717	total: 112ms	remaining: 29.8ms
79:	learn: 18.6187703	total: 114ms	remaining: 28.5ms
80:	learn: 18.5593491	total: 115ms	remaining: 27.1ms
81:	learn: 18.5049072	total: 117ms	remaining: 25.7ms
82:	learn: 18.4236743	total: 118ms	remaining: 24.2ms
83:	learn: 18.3782839	total: 120ms	remaining: 22.8ms
84:	learn: 18.3255876	total: 121ms	remaining: 21.3ms
85:	learn: 18.2408841	total: 122ms	remaining: 19.9ms
86:	learn: 18.1768990	total: 124ms	remaining: 18.5ms
87:	learn: 18.1082002	total: 125ms	remaining: 17.1ms
88:	learn: 18.0377700	total: 126ms	remaining: 15.6ms
89:	learn: 18.0130218	total: 128ms	remaining: 14.2ms
90:	learn: 17.9709653	total: 129ms	remaining: 12.8ms
91:	learn: 17.8890205	total: 131ms	remaining: 11.4ms
92:	learn: 17.8792580	total: 133ms	remaining: 9.99ms
93:	learn: 17.8209868	total: 135ms	remaining: 8.64ms
94:	learn: 17.7571297	total: 137ms	remaining: 7.23ms
95:	learn: 17.6848040	total: 139ms	remaining: 5.79ms
96:	learn: 17.6198628	total: 141ms	remaining: 4.36ms
97:	learn: 17.5571832	total: 143ms	remaining: 2.92ms
98:	learn: 17.5466369	total: 145ms	remaining: 1.46ms
99:	learn: 17.5114502	total: 147ms	remaining: 0us
0:	learn: 46.6074068	total: 1.97ms	remaining: 195ms
1:	learn: 45.8496006	total: 3.95ms	remaining: 194ms
2:	learn: 45.2354594	total: 5.68ms	remaining: 184ms
3:	learn: 44.5261088	total: 7.09ms	remaining: 170ms
4:	learn: 43.8098278	total: 8.55ms	remaining: 162ms
5:	learn: 43.0569602	total: 10ms	remaining: 157ms
6:	learn: 42.3137394	total: 11.5ms	remaining: 152ms
7:	learn: 41.8335666	total: 12.8ms	remaining: 147ms
8:	learn: 41.2921489	total: 14.1ms	remaining: 143ms
9:	learn: 40.7149691	total: 15.6ms	remaining: 141ms
10:	learn: 39.9277062	total: 17.1ms	remaining: 138ms
11:	learn: 39.2504313	total: 18.4ms	remaining: 135ms
12:	learn: 38.6625180	total: 19.8ms	remaining: 132ms
13:	learn: 38.1961525	total: 21.6ms	remaining: 133ms
14:	learn: 37.5585738	total: 23.4ms	remaining: 132ms
15:	learn: 36.9806821	total: 25ms	remaining: 131ms
16:	learn: 36.3146356	total: 26.5ms	remaining: 129ms
17:	learn: 35.7283727	total: 28ms	remaining: 128ms
18:	learn: 35.2399137	total: 29.6ms	remaining: 126ms
19:	learn: 34.9252247	total: 31.2ms	remaining: 125ms
20:	learn: 34.4172641	total: 32.7ms	remaining: 123ms
21:	learn: 33.9218104	total: 34.1ms	remaining: 121ms
22:	learn: 33.3349137	total: 35.4ms	remaining: 119ms
23:	learn: 32.8550596	total: 36.8ms	remaining: 117ms
24:	learn: 32.3963132	total: 38.3ms	remaining: 115ms
25:	learn: 32.1380456	total: 39.7ms	remaining: 113ms
26:	learn: 31.8903131	total: 41.1ms	remaining: 111ms
27:	learn: 31.5828553	total: 42.4ms	remaining: 109ms
28:	learn: 31.3056708	total: 43.7ms	remaining: 107ms
29:	learn: 30.9248794	total: 45ms	remaining: 105ms
30:	learn: 30.5603460	total: 46.3ms	remaining: 103ms
31:	learn: 30.2457444	total: 47.6ms	remaining: 101ms
32:	learn: 29.9848454	total: 49ms	remaining: 99.4ms
33:	learn: 29.5184386	total: 50.3ms	remaining: 97.7ms
34:	learn: 29.2613930	total: 51.6ms	remaining: 95.9ms
35:	learn: 28.9067981	total: 53.1ms	remaining: 94.4ms
36:	learn: 28.6506758	total: 54.6ms	remaining: 92.9ms
37:	learn: 28.3752310	total: 55.9ms	remaining: 91.3ms
38:	learn: 28.0949087	total: 57.3ms	remaining: 89.7ms
39:	learn: 27.9923595	total: 58.6ms	remaining: 88ms
40:	learn: 27.7196177	total: 60.3ms	remaining: 86.7ms
41:	learn: 27.4452872	total: 61.6ms	remaining: 85.1ms
42:	learn: 27.2277329	total: 62.9ms	remaining: 83.4ms
43:	learn: 26.9337091	total: 64.2ms	remaining: 81.7ms
44:	learn: 26.7927632	total: 65.5ms	remaining: 80ms
45:	learn: 26.6440337	total: 66.8ms	remaining: 78.4ms
46:	learn: 26.4163087	total: 68.1ms	remaining: 76.8ms
47:	learn: 26.2359345	total: 69.5ms	remaining: 75.3ms
48:	learn: 26.0839781	total: 71.1ms	remaining: 74ms
49:	learn: 26.0074843	total: 72.5ms	remaining: 72.5ms
50:	learn: 25.8898461	total: 73.9ms	remaining: 71ms
51:	learn: 25.7699020	total: 75.3ms	remaining: 69.5ms
52:	learn: 25.5940202	total: 76.5ms	remaining: 67.8ms
53:	learn: 25.3201765	total: 77.8ms	remaining: 66.3ms
54:	learn: 25.1052751	total: 79.1ms	remaining: 64.8ms
55:	learn: 24.9461875	total: 80.5ms	remaining: 63.2ms
56:	learn: 24.8024818	total: 81.8ms	remaining: 61.7ms
57:	learn: 24.6094808	total: 83.3ms	remaining: 60.3ms
58:	learn: 24.4583256	total: 84.6ms	remaining: 58.8ms
59:	learn: 24.2083139	total: 85.9ms	remaining: 57.3ms
60:	learn: 24.0649998	total: 87.4ms	remaining: 55.9ms
61:	learn: 23.9822219	total: 89ms	remaining: 54.6ms
62:	learn: 23.8769027	total: 90.7ms	remaining: 53.3ms
63:	learn: 23.6715310	total: 92.3ms	remaining: 51.9ms
64:	learn: 23.5595595	total: 93.8ms	remaining: 50.5ms
65:	learn: 23.4166147	total: 95.1ms	remaining: 49ms
66:	learn: 23.2582057	total: 97ms	remaining: 47.8ms
67:	learn: 23.0974656	total: 98.4ms	remaining: 46.3ms
68:	learn: 22.9791854	total: 99.8ms	remaining: 44.8ms
69:	learn: 22.8652498	total: 101ms	remaining: 43.3ms
70:	learn: 22.7360703	total: 102ms	remaining: 41.8ms
71:	learn: 22.6802644	total: 104ms	remaining: 40.4ms
72:	learn: 22.5538402	total: 105ms	remaining: 39ms
73:	learn: 22.4076395	total: 107ms	remaining: 37.5ms
74:	learn: 22.3831299	total: 109ms	remaining: 36.2ms
75:	learn: 22.2246561	total: 110ms	remaining: 34.8ms
76:	learn: 22.1392381	total: 112ms	remaining: 33.4ms
77:	learn: 22.0753998	total: 113ms	remaining: 32ms
78:	learn: 21.9871709	total: 115ms	remaining: 30.6ms
79:	learn: 21.9266311	total: 117ms	remaining: 29.1ms
80:	learn: 21.8699159	total: 118ms	remaining: 27.7ms
81:	learn: 21.7234760	total: 119ms	remaining: 26.2ms
82:	learn: 21.6334590	total: 121ms	remaining: 24.8ms
83:	learn: 21.5025328	total: 123ms	remaining: 23.4ms
84:	learn: 21.3813020	total: 124ms	remaining: 21.9ms
85:	learn: 21.2702525	total: 125ms	remaining: 20.4ms
86:	learn: 21.2368103	total: 127ms	remaining: 19ms
87:	learn: 21.1377121	total: 128ms	remaining: 17.5ms
88:	learn: 21.0039796	total: 130ms	remaining: 16ms
89:	learn: 20.9596608	total: 131ms	remaining: 14.6ms
90:	learn: 20.8929363	total: 133ms	remaining: 13.1ms
91:	learn: 20.8701561	total: 134ms	remaining: 11.7ms
92:	learn: 20.7424119	total: 136ms	remaining: 10.2ms
93:	learn: 20.6604399	total: 139ms	remaining: 8.9ms
94:	learn: 20.5911098	total: 141ms	remaining: 7.44ms
95:	learn: 20.4993176	total: 143ms	remaining: 5.96ms
96:	learn: 20.4264961	total: 145ms	remaining: 4.48ms
97:	learn: 20.3333721	total: 147ms	remaining: 3ms
98:	learn: 20.2810811	total: 149ms	remaining: 1.5ms
99:	learn: 20.2357826	total: 150ms	remaining: 0us
0:	learn: 46.0709575	total: 1.5ms	remaining: 149ms
1:	learn: 45.3080435	total: 2.89ms	remaining: 141ms
2:	learn: 44.4280378	total: 4.28ms	remaining: 138ms
3:	learn: 43.6532211	total: 5.56ms	remaining: 134ms
4:	learn: 43.0220398	total: 6.86ms	remaining: 130ms
5:	learn: 42.3125518	total: 8.13ms	remaining: 127ms
6:	learn: 41.5705990	total: 9.41ms	remaining: 125ms
7:	learn: 40.9033720	total: 10.8ms	remaining: 124ms
8:	learn: 40.4222182	total: 11.9ms	remaining: 121ms
9:	learn: 39.8244330	total: 13.2ms	remaining: 119ms
10:	learn: 39.2127156	total: 14.5ms	remaining: 118ms
11:	learn: 38.6536958	total: 15.8ms	remaining: 116ms
12:	learn: 38.2111805	total: 17.2ms	remaining: 115ms
13:	learn: 37.6429965	total: 18.4ms	remaining: 113ms
14:	learn: 37.1610161	total: 19.7ms	remaining: 112ms
15:	learn: 36.5832678	total: 21ms	remaining: 110ms
16:	learn: 36.1403033	total: 22.2ms	remaining: 108ms
17:	learn: 35.5196906	total: 23.4ms	remaining: 107ms
18:	learn: 35.0546005	total: 24.7ms	remaining: 105ms
19:	learn: 34.4514322	total: 25.9ms	remaining: 104ms
20:	learn: 33.9877784	total: 27.1ms	remaining: 102ms
21:	learn: 33.6442602	total: 28.3ms	remaining: 100ms
22:	learn: 33.2409783	total: 29.5ms	remaining: 98.9ms
23:	learn: 32.9516432	total: 30.8ms	remaining: 97.7ms
24:	learn: 32.4903536	total: 32.2ms	remaining: 96.5ms
25:	learn: 32.0441543	total: 33.4ms	remaining: 95.1ms
26:	learn: 31.7266413	total: 34.7ms	remaining: 93.8ms
27:	learn: 31.4745738	total: 36ms	remaining: 92.7ms
28:	learn: 31.2113721	total: 37.4ms	remaining: 91.5ms
29:	learn: 30.8650894	total: 38.6ms	remaining: 90.1ms
30:	learn: 30.5994275	total: 39.8ms	remaining: 88.5ms
31:	learn: 30.2533497	total: 41.1ms	remaining: 87.3ms
32:	learn: 30.0226357	total: 42.2ms	remaining: 85.8ms
33:	learn: 29.6680750	total: 43.4ms	remaining: 84.3ms
34:	learn: 29.4259058	total: 44.6ms	remaining: 82.8ms
35:	learn: 29.1863115	total: 45.9ms	remaining: 81.5ms
36:	learn: 28.9553548	total: 47.1ms	remaining: 80.2ms
37:	learn: 28.7322310	total: 48.4ms	remaining: 79ms
38:	learn: 28.5005636	total: 49.6ms	remaining: 77.6ms
39:	learn: 28.2605292	total: 50.9ms	remaining: 76.3ms
40:	learn: 28.1085921	total: 52.1ms	remaining: 75ms
41:	learn: 27.8395526	total: 53.4ms	remaining: 73.8ms
42:	learn: 27.7211327	total: 54.7ms	remaining: 72.5ms
43:	learn: 27.4504176	total: 55.9ms	remaining: 71.2ms
44:	learn: 27.3505477	total: 57.1ms	remaining: 69.8ms
45:	learn: 26.9910896	total: 58.4ms	remaining: 68.6ms
46:	learn: 26.7973471	total: 59.6ms	remaining: 67.3ms
47:	learn: 26.5915932	total: 60.9ms	remaining: 65.9ms
48:	learn: 26.4143720	total: 62.1ms	remaining: 64.6ms
49:	learn: 26.3644490	total: 63.3ms	remaining: 63.3ms
50:	learn: 26.2523195	total: 64.7ms	remaining: 62.1ms
51:	learn: 26.0712146	total: 65.9ms	remaining: 60.8ms
52:	learn: 25.9400804	total: 67.1ms	remaining: 59.5ms
53:	learn: 25.8481212	total: 68.4ms	remaining: 58.2ms
54:	learn: 25.7209987	total: 69.8ms	remaining: 57.1ms
55:	learn: 25.6429720	total: 70.9ms	remaining: 55.7ms
56:	learn: 25.5102707	total: 72.2ms	remaining: 54.4ms
57:	learn: 25.3142072	total: 73.3ms	remaining: 53.1ms
58:	learn: 25.1826732	total: 74.5ms	remaining: 51.8ms
59:	learn: 25.0370887	total: 75.7ms	remaining: 50.5ms
60:	learn: 24.9072184	total: 76.9ms	remaining: 49.2ms
61:	learn: 24.8634327	total: 78.2ms	remaining: 47.9ms
62:	learn: 24.7213499	total: 79.4ms	remaining: 46.6ms
63:	learn: 24.5471121	total: 80.7ms	remaining: 45.4ms
64:	learn: 24.3607859	total: 81.8ms	remaining: 44.1ms
65:	learn: 24.3012330	total: 83.1ms	remaining: 42.8ms
66:	learn: 24.1680354	total: 84.3ms	remaining: 41.5ms
67:	learn: 24.0121232	total: 85.7ms	remaining: 40.3ms
68:	learn: 23.9038949	total: 86.9ms	remaining: 39ms
69:	learn: 23.8038761	total: 88.1ms	remaining: 37.7ms
70:	learn: 23.6826454	total: 89.2ms	remaining: 36.4ms
71:	learn: 23.5306004	total: 90.5ms	remaining: 35.2ms
72:	learn: 23.4074484	total: 91.7ms	remaining: 33.9ms
73:	learn: 23.2818633	total: 92.9ms	remaining: 32.6ms
74:	learn: 23.1664660	total: 94.2ms	remaining: 31.4ms
75:	learn: 23.0355231	total: 95.3ms	remaining: 30.1ms
76:	learn: 22.9491379	total: 96.5ms	remaining: 28.8ms
77:	learn: 22.8762202	total: 97.7ms	remaining: 27.6ms
78:	learn: 22.7930168	total: 98.9ms	remaining: 26.3ms
79:	learn: 22.6945773	total: 101ms	remaining: 25.1ms
80:	learn: 22.6144831	total: 102ms	remaining: 23.9ms
81:	learn: 22.5288060	total: 103ms	remaining: 22.6ms
82:	learn: 22.4756829	total: 104ms	remaining: 21.4ms
83:	learn: 22.4040653	total: 106ms	remaining: 20.1ms
84:	learn: 22.3500837	total: 107ms	remaining: 18.8ms
85:	learn: 22.2807715	total: 108ms	remaining: 17.6ms
86:	learn: 22.2066189	total: 109ms	remaining: 16.3ms
87:	learn: 22.0773233	total: 110ms	remaining: 15ms
88:	learn: 21.9443679	total: 111ms	remaining: 13.8ms
89:	learn: 21.9189100	total: 113ms	remaining: 12.5ms
90:	learn: 21.8890882	total: 114ms	remaining: 11.3ms
91:	learn: 21.8244969	total: 115ms	remaining: 10ms
92:	learn: 21.7198126	total: 117ms	remaining: 8.79ms
93:	learn: 21.6638826	total: 118ms	remaining: 7.54ms
94:	learn: 21.6012969	total: 120ms	remaining: 6.29ms
95:	learn: 21.5834938	total: 121ms	remaining: 5.04ms
96:	learn: 21.5216755	total: 122ms	remaining: 3.78ms
97:	learn: 21.4379267	total: 123ms	remaining: 2.52ms
98:	learn: 21.4228194	total: 125ms	remaining: 1.26ms
99:	learn: 21.3450022	total: 126ms	remaining: 0us
0:	learn: 46.7615100	total: 2ms	remaining: 198ms
1:	learn: 45.8786592	total: 3.4ms	remaining: 167ms
2:	learn: 44.9643893	total: 4.87ms	remaining: 157ms
3:	learn: 44.1579612	total: 6.31ms	remaining: 152ms
4:	learn: 43.5334961	total: 7.94ms	remaining: 151ms
5:	learn: 42.7675564	total: 9.35ms	remaining: 146ms
6:	learn: 42.0636134	total: 10.8ms	remaining: 143ms
7:	learn: 41.4826596	total: 12.2ms	remaining: 141ms
8:	learn: 41.0037954	total: 13.7ms	remaining: 138ms
9:	learn: 40.3590188	total: 15ms	remaining: 135ms
10:	learn: 39.6815163	total: 16.4ms	remaining: 133ms
11:	learn: 39.1429112	total: 17.8ms	remaining: 130ms
12:	learn: 38.6834999	total: 19ms	remaining: 127ms
13:	learn: 38.0686328	total: 20.4ms	remaining: 125ms
14:	learn: 37.6058931	total: 21.7ms	remaining: 123ms
15:	learn: 37.0469277	total: 23.1ms	remaining: 121ms
16:	learn: 36.4816649	total: 24.6ms	remaining: 120ms
17:	learn: 35.9335814	total: 26.2ms	remaining: 119ms
18:	learn: 35.4397240	total: 27.9ms	remaining: 119ms
19:	learn: 34.9578079	total: 29.3ms	remaining: 117ms
20:	learn: 34.6387869	total: 30.6ms	remaining: 115ms
21:	learn: 34.3270198	total: 32.1ms	remaining: 114ms
22:	learn: 33.8220130	total: 33.5ms	remaining: 112ms
23:	learn: 33.4424897	total: 34.8ms	remaining: 110ms
24:	learn: 33.0763455	total: 36.2ms	remaining: 109ms
25:	learn: 32.6396376	total: 37.5ms	remaining: 107ms
26:	learn: 32.3291978	total: 38.8ms	remaining: 105ms
27:	learn: 31.9809138	total: 40.3ms	remaining: 104ms
28:	learn: 31.7242800	total: 41.7ms	remaining: 102ms
29:	learn: 31.4494254	total: 42.9ms	remaining: 100ms
30:	learn: 31.1380464	total: 44.2ms	remaining: 98.5ms
31:	learn: 30.8456635	total: 45.5ms	remaining: 96.8ms
32:	learn: 30.6058287	total: 46.9ms	remaining: 95.1ms
33:	learn: 30.2425993	total: 48.2ms	remaining: 93.6ms
34:	learn: 29.9549589	total: 49.5ms	remaining: 91.9ms
35:	learn: 29.6907023	total: 50.8ms	remaining: 90.2ms
36:	learn: 29.5117956	total: 52.2ms	remaining: 88.8ms
37:	learn: 29.3037840	total: 53.5ms	remaining: 87.3ms
38:	learn: 29.0719600	total: 54.9ms	remaining: 85.9ms
39:	learn: 28.9042259	total: 56.2ms	remaining: 84.3ms
40:	learn: 28.6479775	total: 57.6ms	remaining: 82.9ms
41:	learn: 28.3606424	total: 59ms	remaining: 81.5ms
42:	learn: 28.1638734	total: 60.5ms	remaining: 80.1ms
43:	learn: 27.9207579	total: 61.9ms	remaining: 78.8ms
44:	learn: 27.7790971	total: 63.4ms	remaining: 77.5ms
45:	learn: 27.6799141	total: 64.8ms	remaining: 76.1ms
46:	learn: 27.5365213	total: 66.2ms	remaining: 74.7ms
47:	learn: 27.3773653	total: 67.7ms	remaining: 73.3ms
48:	learn: 27.1561862	total: 69.3ms	remaining: 72.1ms
49:	learn: 27.0997048	total: 70.6ms	remaining: 70.6ms
50:	learn: 26.9547579	total: 71.9ms	remaining: 69.1ms
51:	learn: 26.7939984	total: 73.1ms	remaining: 67.5ms
52:	learn: 26.6326409	total: 74.4ms	remaining: 66ms
53:	learn: 26.4624451	total: 75.7ms	remaining: 64.5ms
54:	learn: 26.2923661	total: 76.8ms	remaining: 62.9ms
55:	learn: 26.1658098	total: 78ms	remaining: 61.3ms
56:	learn: 26.0209867	total: 79.2ms	remaining: 59.7ms
57:	learn: 25.8671326	total: 80.4ms	remaining: 58.2ms
58:	learn: 25.7192646	total: 81.5ms	remaining: 56.6ms
59:	learn: 25.6132249	total: 82.6ms	remaining: 55.1ms
60:	learn: 25.5160209	total: 83.9ms	remaining: 53.6ms
61:	learn: 25.4472180	total: 85.1ms	remaining: 52.2ms
62:	learn: 25.3494822	total: 86.2ms	remaining: 50.6ms
63:	learn: 25.3029653	total: 87.4ms	remaining: 49.1ms
64:	learn: 25.0863109	total: 88.6ms	remaining: 47.7ms
65:	learn: 25.0178325	total: 89.9ms	remaining: 46.3ms
66:	learn: 24.9390409	total: 91.4ms	remaining: 45ms
67:	learn: 24.8270544	total: 92.8ms	remaining: 43.7ms
68:	learn: 24.7219046	total: 94.1ms	remaining: 42.3ms
69:	learn: 24.6403493	total: 95.2ms	remaining: 40.8ms
70:	learn: 24.5430289	total: 96.4ms	remaining: 39.4ms
71:	learn: 24.5017234	total: 97.6ms	remaining: 37.9ms
72:	learn: 24.4411368	total: 98.8ms	remaining: 36.5ms
73:	learn: 24.1836983	total: 100ms	remaining: 35.1ms
74:	learn: 24.1278934	total: 101ms	remaining: 33.7ms
75:	learn: 24.0160938	total: 102ms	remaining: 32.3ms
76:	learn: 23.9354837	total: 104ms	remaining: 31ms
77:	learn: 23.8788468	total: 105ms	remaining: 29.6ms
78:	learn: 23.8623417	total: 106ms	remaining: 28.2ms
79:	learn: 23.8004037	total: 107ms	remaining: 26.8ms
80:	learn: 23.7143775	total: 109ms	remaining: 25.5ms
81:	learn: 23.5518349	total: 110ms	remaining: 24.1ms
82:	learn: 23.4692344	total: 111ms	remaining: 22.7ms
83:	learn: 23.3632341	total: 112ms	remaining: 21.3ms
84:	learn: 23.2750154	total: 113ms	remaining: 20ms
85:	learn: 23.1830489	total: 115ms	remaining: 18.6ms
86:	learn: 23.1004439	total: 116ms	remaining: 17.3ms
87:	learn: 22.9698626	total: 117ms	remaining: 15.9ms
88:	learn: 22.8249990	total: 118ms	remaining: 14.6ms
89:	learn: 22.7632398	total: 119ms	remaining: 13.3ms
90:	learn: 22.6933729	total: 120ms	remaining: 11.9ms
91:	learn: 22.6193254	total: 122ms	remaining: 10.6ms
92:	learn: 22.5970262	total: 123ms	remaining: 9.24ms
93:	learn: 22.5707244	total: 124ms	remaining: 7.91ms
94:	learn: 22.4865249	total: 125ms	remaining: 6.59ms
95:	learn: 22.3923951	total: 126ms	remaining: 5.27ms
96:	learn: 22.3220308	total: 128ms	remaining: 3.95ms
97:	learn: 22.2633193	total: 129ms	remaining: 2.63ms
98:	learn: 22.2273383	total: 130ms	remaining: 1.32ms
99:	learn: 22.1945338	total: 132ms	remaining: 0us
0:	learn: 27.6973511	total: 31.4ms	remaining: 9.38s
1:	learn: 27.2958182	total: 56.7ms	remaining: 8.45s
2:	learn: 26.8950527	total: 79.7ms	remaining: 7.89s
3:	learn: 26.4489170	total: 103ms	remaining: 7.64s
4:	learn: 26.1800349	total: 127ms	remaining: 7.47s
5:	learn: 25.7917141	total: 149ms	remaining: 7.28s
6:	learn: 25.5263958	total: 172ms	remaining: 7.21s
7:	learn: 25.2345461	total: 196ms	remaining: 7.17s
8:	learn: 24.8337785	total: 221ms	remaining: 7.14s
9:	learn: 24.5131550	total: 254ms	remaining: 7.37s
10:	learn: 24.2257656	total: 280ms	remaining: 7.35s
11:	learn: 23.9792781	total: 305ms	remaining: 7.32s
12:	learn: 23.6676478	total: 330ms	remaining: 7.29s
13:	learn: 23.4355824	total: 355ms	remaining: 7.25s
14:	learn: 23.2062795	total: 381ms	remaining: 7.24s
15:	learn: 22.9749556	total: 407ms	remaining: 7.23s
16:	learn: 22.7388336	total: 435ms	remaining: 7.25s
17:	learn: 22.5065141	total: 465ms	remaining: 7.29s
18:	learn: 22.2263730	total: 490ms	remaining: 7.25s
19:	learn: 21.9969137	total: 515ms	remaining: 7.21s
20:	learn: 21.7654035	total: 540ms	remaining: 7.17s
21:	learn: 21.5672959	total: 565ms	remaining: 7.14s
22:	learn: 21.3699131	total: 591ms	remaining: 7.12s
23:	learn: 21.1320132	total: 617ms	remaining: 7.09s
24:	learn: 20.8360475	total: 651ms	remaining: 7.16s
25:	learn: 20.6216430	total: 678ms	remaining: 7.15s
26:	learn: 20.4442023	total: 704ms	remaining: 7.12s
27:	learn: 20.2452126	total: 729ms	remaining: 7.08s
28:	learn: 19.9551543	total: 755ms	remaining: 7.06s
29:	learn: 19.7874909	total: 780ms	remaining: 7.02s
30:	learn: 19.6541244	total: 805ms	remaining: 6.98s
31:	learn: 19.4769528	total: 829ms	remaining: 6.95s
32:	learn: 19.2916254	total: 858ms	remaining: 6.95s
33:	learn: 19.1524478	total: 884ms	remaining: 6.92s
34:	learn: 19.0152836	total: 908ms	remaining: 6.88s
35:	learn: 18.7761219	total: 932ms	remaining: 6.83s
36:	learn: 18.6266045	total: 955ms	remaining: 6.79s
37:	learn: 18.4382424	total: 978ms	remaining: 6.74s
38:	learn: 18.3276487	total: 1s	remaining: 6.71s
39:	learn: 18.1728115	total: 1.02s	remaining: 6.67s
40:	learn: 18.0412668	total: 1.05s	remaining: 6.63s
41:	learn: 17.8927154	total: 1.08s	remaining: 6.62s
42:	learn: 17.6796203	total: 1.11s	remaining: 6.65s
43:	learn: 17.5396182	total: 1.14s	remaining: 6.62s
44:	learn: 17.3897332	total: 1.16s	remaining: 6.58s
45:	learn: 17.2677742	total: 1.19s	remaining: 6.55s
46:	learn: 17.1204742	total: 1.21s	remaining: 6.52s
47:	learn: 16.9890701	total: 1.23s	remaining: 6.48s
48:	learn: 16.8827846	total: 1.26s	remaining: 6.45s
49:	learn: 16.7657376	total: 1.28s	remaining: 6.42s
50:	learn: 16.6624511	total: 1.31s	remaining: 6.41s
51:	learn: 16.5486117	total: 1.34s	remaining: 6.39s
52:	learn: 16.4000940	total: 1.36s	remaining: 6.35s
53:	learn: 16.3029344	total: 1.39s	remaining: 6.32s
54:	learn: 16.2035733	total: 1.41s	remaining: 6.28s
55:	learn: 16.0437589	total: 1.43s	remaining: 6.25s
56:	learn: 15.9522262	total: 1.46s	remaining: 6.22s
57:	learn: 15.8358267	total: 1.48s	remaining: 6.19s
58:	learn: 15.7214027	total: 1.51s	remaining: 6.16s
59:	learn: 15.5996313	total: 1.54s	remaining: 6.17s
60:	learn: 15.4720290	total: 1.57s	remaining: 6.15s
61:	learn: 15.3836272	total: 1.59s	remaining: 6.12s
62:	learn: 15.2874597	total: 1.62s	remaining: 6.09s
63:	learn: 15.1976492	total: 1.64s	remaining: 6.06s
64:	learn: 15.0909229	total: 1.67s	remaining: 6.03s
65:	learn: 15.0152553	total: 1.69s	remaining: 6s
66:	learn: 14.9383045	total: 1.72s	remaining: 5.97s
67:	learn: 14.8359454	total: 1.75s	remaining: 5.96s
68:	learn: 14.7292481	total: 1.77s	remaining: 5.93s
69:	learn: 14.6260226	total: 1.79s	remaining: 5.9s
70:	learn: 14.4936289	total: 1.82s	remaining: 5.87s
71:	learn: 14.4124866	total: 1.84s	remaining: 5.84s
72:	learn: 14.3506411	total: 1.87s	remaining: 5.81s
73:	learn: 14.3003606	total: 1.89s	remaining: 5.79s
74:	learn: 14.2329960	total: 1.92s	remaining: 5.76s
75:	learn: 14.1623742	total: 1.94s	remaining: 5.73s
76:	learn: 14.0963112	total: 1.98s	remaining: 5.73s
77:	learn: 14.0129265	total: 2s	remaining: 5.71s
78:	learn: 13.9069448	total: 2.03s	remaining: 5.68s
79:	learn: 13.8583745	total: 2.06s	remaining: 5.66s
80:	learn: 13.8036276	total: 2.08s	remaining: 5.64s
81:	learn: 13.7294653	total: 2.11s	remaining: 5.61s
82:	learn: 13.6421548	total: 2.13s	remaining: 5.58s
83:	learn: 13.5544027	total: 2.16s	remaining: 5.56s
84:	learn: 13.4962426	total: 2.19s	remaining: 5.55s
85:	learn: 13.4236501	total: 2.22s	remaining: 5.53s
86:	learn: 13.3553655	total: 2.25s	remaining: 5.5s
87:	learn: 13.2833189	total: 2.27s	remaining: 5.47s
88:	learn: 13.2153279	total: 2.3s	remaining: 5.45s
89:	learn: 13.1595818	total: 2.32s	remaining: 5.42s
90:	learn: 13.0790280	total: 2.35s	remaining: 5.39s
91:	learn: 13.0059101	total: 2.37s	remaining: 5.36s
92:	learn: 12.9563936	total: 2.41s	remaining: 5.36s
93:	learn: 12.8795347	total: 2.44s	remaining: 5.34s
94:	learn: 12.8232219	total: 2.46s	remaining: 5.31s
95:	learn: 12.7614070	total: 2.49s	remaining: 5.29s
96:	learn: 12.7102421	total: 2.51s	remaining: 5.26s
97:	learn: 12.6436653	total: 2.54s	remaining: 5.23s
98:	learn: 12.5913696	total: 2.57s	remaining: 5.21s
99:	learn: 12.5367726	total: 2.59s	remaining: 5.19s
100:	learn: 12.4852419	total: 2.63s	remaining: 5.18s
101:	learn: 12.4385597	total: 2.65s	remaining: 5.15s
102:	learn: 12.3736476	total: 2.68s	remaining: 5.12s
103:	learn: 12.3247110	total: 2.7s	remaining: 5.09s
104:	learn: 12.2766720	total: 2.73s	remaining: 5.07s
105:	learn: 12.1952428	total: 2.75s	remaining: 5.04s
106:	learn: 12.1331617	total: 2.78s	remaining: 5.01s
107:	learn: 12.0512166	total: 2.81s	remaining: 4.99s
108:	learn: 11.9992209	total: 2.83s	remaining: 4.97s
109:	learn: 11.9475776	total: 2.86s	remaining: 4.94s
110:	learn: 11.9014821	total: 2.89s	remaining: 4.92s
111:	learn: 11.8707288	total: 2.91s	remaining: 4.89s
112:	learn: 11.8094965	total: 2.94s	remaining: 4.87s
113:	learn: 11.7463043	total: 2.96s	remaining: 4.84s
114:	learn: 11.7007710	total: 2.99s	remaining: 4.81s
115:	learn: 11.6615587	total: 3.02s	remaining: 4.78s
116:	learn: 11.6237977	total: 3.04s	remaining: 4.76s
117:	learn: 11.5616902	total: 3.07s	remaining: 4.74s
118:	learn: 11.4975486	total: 3.1s	remaining: 4.71s
119:	learn: 11.4545682	total: 3.12s	remaining: 4.68s
120:	learn: 11.4025940	total: 3.15s	remaining: 4.66s
121:	learn: 11.3457331	total: 3.17s	remaining: 4.63s
122:	learn: 11.3052810	total: 3.2s	remaining: 4.6s
123:	learn: 11.2420518	total: 3.22s	remaining: 4.57s
124:	learn: 11.1980267	total: 3.25s	remaining: 4.55s
125:	learn: 11.1471837	total: 3.28s	remaining: 4.53s
126:	learn: 11.0933514	total: 3.31s	remaining: 4.5s
127:	learn: 11.0387232	total: 3.33s	remaining: 4.48s
128:	learn: 10.9882800	total: 3.36s	remaining: 4.45s
129:	learn: 10.9217831	total: 3.38s	remaining: 4.42s
130:	learn: 10.8638073	total: 3.4s	remaining: 4.39s
131:	learn: 10.8405452	total: 3.43s	remaining: 4.36s
132:	learn: 10.7843152	total: 3.45s	remaining: 4.34s
133:	learn: 10.7215416	total: 3.48s	remaining: 4.32s
134:	learn: 10.6848770	total: 3.51s	remaining: 4.29s
135:	learn: 10.6386232	total: 3.54s	remaining: 4.26s
136:	learn: 10.5833324	total: 3.56s	remaining: 4.24s
137:	learn: 10.5552164	total: 3.58s	remaining: 4.21s
138:	learn: 10.5095592	total: 3.61s	remaining: 4.18s
139:	learn: 10.4652541	total: 3.63s	remaining: 4.15s
140:	learn: 10.4181327	total: 3.65s	remaining: 4.12s
141:	learn: 10.3570489	total: 3.68s	remaining: 4.09s
142:	learn: 10.3155806	total: 3.71s	remaining: 4.08s
143:	learn: 10.2935116	total: 3.74s	remaining: 4.05s
144:	learn: 10.2490396	total: 3.76s	remaining: 4.02s
145:	learn: 10.2175010	total: 3.79s	remaining: 4s
146:	learn: 10.1861611	total: 3.81s	remaining: 3.97s
147:	learn: 10.1464010	total: 3.84s	remaining: 3.94s
148:	learn: 10.1109588	total: 3.86s	remaining: 3.91s
149:	learn: 10.0820993	total: 3.89s	remaining: 3.89s
150:	learn: 10.0459417	total: 3.92s	remaining: 3.86s
151:	learn: 10.0150499	total: 3.94s	remaining: 3.83s
152:	learn: 9.9616104	total: 3.96s	remaining: 3.81s
153:	learn: 9.9370092	total: 3.99s	remaining: 3.78s
154:	learn: 9.8880669	total: 4.01s	remaining: 3.75s
155:	learn: 9.8035082	total: 4.03s	remaining: 3.72s
156:	learn: 9.7562049	total: 4.06s	remaining: 3.7s
157:	learn: 9.7188558	total: 4.08s	remaining: 3.67s
158:	learn: 9.6455036	total: 4.12s	remaining: 3.65s
159:	learn: 9.6138052	total: 4.14s	remaining: 3.62s
160:	learn: 9.5876598	total: 4.17s	remaining: 3.6s
161:	learn: 9.5617205	total: 4.19s	remaining: 3.57s
162:	learn: 9.5136300	total: 4.22s	remaining: 3.54s
163:	learn: 9.4854261	total: 4.24s	remaining: 3.52s
164:	learn: 9.4413089	total: 4.26s	remaining: 3.49s
165:	learn: 9.4301555	total: 4.29s	remaining: 3.46s
166:	learn: 9.3696661	total: 4.32s	remaining: 3.44s
167:	learn: 9.3197847	total: 4.34s	remaining: 3.41s
168:	learn: 9.2932309	total: 4.37s	remaining: 3.39s
169:	learn: 9.2622589	total: 4.39s	remaining: 3.36s
170:	learn: 9.2248534	total: 4.42s	remaining: 3.33s
171:	learn: 9.2022003	total: 4.44s	remaining: 3.3s
172:	learn: 9.1580241	total: 4.46s	remaining: 3.28s
173:	learn: 9.1260167	total: 4.49s	remaining: 3.25s
174:	learn: 9.0878209	total: 4.51s	remaining: 3.22s
175:	learn: 9.0321761	total: 4.55s	remaining: 3.21s
176:	learn: 9.0083249	total: 4.58s	remaining: 3.18s
177:	learn: 8.9787673	total: 4.61s	remaining: 3.16s
178:	learn: 8.9601410	total: 4.63s	remaining: 3.13s
179:	learn: 8.9127704	total: 4.66s	remaining: 3.1s
180:	learn: 8.8972409	total: 4.68s	remaining: 3.08s
181:	learn: 8.8794861	total: 4.71s	remaining: 3.05s
182:	learn: 8.8500542	total: 4.74s	remaining: 3.03s
183:	learn: 8.8141901	total: 4.77s	remaining: 3.01s
184:	learn: 8.7581473	total: 4.79s	remaining: 2.98s
185:	learn: 8.7253122	total: 4.82s	remaining: 2.95s
186:	learn: 8.6834052	total: 4.84s	remaining: 2.93s
187:	learn: 8.6566031	total: 4.87s	remaining: 2.9s
188:	learn: 8.6185765	total: 4.89s	remaining: 2.87s
189:	learn: 8.5835114	total: 4.92s	remaining: 2.85s
190:	learn: 8.5300510	total: 4.95s	remaining: 2.82s
191:	learn: 8.5135771	total: 4.98s	remaining: 2.8s
192:	learn: 8.4829013	total: 5.01s	remaining: 2.78s
193:	learn: 8.4533553	total: 5.04s	remaining: 2.75s
194:	learn: 8.4023227	total: 5.06s	remaining: 2.73s
195:	learn: 8.3643349	total: 5.09s	remaining: 2.7s
196:	learn: 8.3359260	total: 5.12s	remaining: 2.67s
197:	learn: 8.3049442	total: 5.14s	remaining: 2.65s
198:	learn: 8.2787682	total: 5.17s	remaining: 2.62s
199:	learn: 8.2447974	total: 5.2s	remaining: 2.6s
200:	learn: 8.1921213	total: 5.22s	remaining: 2.57s
201:	learn: 8.1368756	total: 5.25s	remaining: 2.55s
202:	learn: 8.1199237	total: 5.27s	remaining: 2.52s
203:	learn: 8.1017969	total: 5.3s	remaining: 2.49s
204:	learn: 8.0671173	total: 5.32s	remaining: 2.47s
205:	learn: 8.0319971	total: 5.35s	remaining: 2.44s
206:	learn: 8.0103044	total: 5.37s	remaining: 2.41s
207:	learn: 7.9967444	total: 5.4s	remaining: 2.39s
208:	learn: 7.9828258	total: 5.44s	remaining: 2.37s
209:	learn: 7.9515046	total: 5.46s	remaining: 2.34s
210:	learn: 7.9227280	total: 5.49s	remaining: 2.31s
211:	learn: 7.8910798	total: 5.51s	remaining: 2.29s
212:	learn: 7.8631592	total: 5.54s	remaining: 2.26s
213:	learn: 7.8233678	total: 5.57s	remaining: 2.24s
214:	learn: 7.8019668	total: 5.59s	remaining: 2.21s
215:	learn: 7.7692506	total: 5.62s	remaining: 2.19s
216:	learn: 7.7490031	total: 5.65s	remaining: 2.16s
217:	learn: 7.7321355	total: 5.68s	remaining: 2.14s
218:	learn: 7.7098665	total: 5.7s	remaining: 2.11s
219:	learn: 7.6731807	total: 5.73s	remaining: 2.08s
220:	learn: 7.6504773	total: 5.75s	remaining: 2.06s
221:	learn: 7.6249824	total: 5.78s	remaining: 2.03s
222:	learn: 7.6041649	total: 5.8s	remaining: 2s
223:	learn: 7.5490806	total: 5.83s	remaining: 1.98s
224:	learn: 7.5192127	total: 5.87s	remaining: 1.96s
225:	learn: 7.5025279	total: 5.89s	remaining: 1.93s
226:	learn: 7.4929920	total: 5.92s	remaining: 1.9s
227:	learn: 7.4778779	total: 5.95s	remaining: 1.88s
228:	learn: 7.4483660	total: 5.97s	remaining: 1.85s
229:	learn: 7.4291956	total: 5.99s	remaining: 1.82s
230:	learn: 7.4142087	total: 6.02s	remaining: 1.8s
231:	learn: 7.3986246	total: 6.05s	remaining: 1.77s
232:	learn: 7.3551309	total: 6.08s	remaining: 1.75s
233:	learn: 7.3005723	total: 6.11s	remaining: 1.72s
234:	learn: 7.2744519	total: 6.13s	remaining: 1.7s
235:	learn: 7.2477126	total: 6.16s	remaining: 1.67s
236:	learn: 7.2363537	total: 6.18s	remaining: 1.64s
237:	learn: 7.2243670	total: 6.21s	remaining: 1.62s
238:	learn: 7.2006057	total: 6.23s	remaining: 1.59s
239:	learn: 7.1770175	total: 6.25s	remaining: 1.56s
240:	learn: 7.1608454	total: 6.28s	remaining: 1.54s
241:	learn: 7.1347778	total: 6.32s	remaining: 1.51s
242:	learn: 7.1201448	total: 6.34s	remaining: 1.49s
243:	learn: 7.0954331	total: 6.37s	remaining: 1.46s
244:	learn: 7.0788027	total: 6.39s	remaining: 1.44s
245:	learn: 7.0587521	total: 6.42s	remaining: 1.41s
246:	learn: 7.0403295	total: 6.45s	remaining: 1.38s
247:	learn: 7.0149142	total: 6.47s	remaining: 1.36s
248:	learn: 7.0058503	total: 6.5s	remaining: 1.33s
249:	learn: 6.9872119	total: 6.53s	remaining: 1.3s
250:	learn: 6.9784378	total: 6.55s	remaining: 1.28s
251:	learn: 6.9401511	total: 6.58s	remaining: 1.25s
252:	learn: 6.9119575	total: 6.6s	remaining: 1.23s
253:	learn: 6.8791967	total: 6.62s	remaining: 1.2s
254:	learn: 6.8591065	total: 6.65s	remaining: 1.17s
255:	learn: 6.8466643	total: 6.67s	remaining: 1.15s
256:	learn: 6.8336092	total: 6.71s	remaining: 1.12s
257:	learn: 6.7969563	total: 6.73s	remaining: 1.1s
258:	learn: 6.7696422	total: 6.76s	remaining: 1.07s
259:	learn: 6.7495271	total: 6.78s	remaining: 1.04s
260:	learn: 6.7360935	total: 6.81s	remaining: 1.02s
261:	learn: 6.7206472	total: 6.83s	remaining: 991ms
262:	learn: 6.7069436	total: 6.86s	remaining: 965ms
263:	learn: 6.6808851	total: 6.88s	remaining: 938ms
264:	learn: 6.6465468	total: 6.91s	remaining: 912ms
265:	learn: 6.6275745	total: 6.94s	remaining: 887ms
266:	learn: 6.6154560	total: 6.96s	remaining: 860ms
267:	learn: 6.5939280	total: 6.98s	remaining: 834ms
268:	learn: 6.5711370	total: 7.01s	remaining: 808ms
269:	learn: 6.5613012	total: 7.03s	remaining: 781ms
270:	learn: 6.5376183	total: 7.05s	remaining: 755ms
271:	learn: 6.5139963	total: 7.08s	remaining: 729ms
272:	learn: 6.5040754	total: 7.1s	remaining: 703ms
273:	learn: 6.4975901	total: 7.14s	remaining: 678ms
274:	learn: 6.4904306	total: 7.17s	remaining: 652ms
275:	learn: 6.4771827	total: 7.19s	remaining: 625ms
276:	learn: 6.4640077	total: 7.22s	remaining: 599ms
277:	learn: 6.4479524	total: 7.24s	remaining: 573ms
278:	learn: 6.4378265	total: 7.26s	remaining: 547ms
279:	learn: 6.3945577	total: 7.29s	remaining: 521ms
280:	learn: 6.3799486	total: 7.31s	remaining: 495ms
281:	learn: 6.3522615	total: 7.34s	remaining: 469ms
282:	learn: 6.3442235	total: 7.37s	remaining: 443ms
283:	learn: 6.3211858	total: 7.39s	remaining: 417ms
284:	learn: 6.3144146	total: 7.42s	remaining: 390ms
285:	learn: 6.2952523	total: 7.44s	remaining: 364ms
286:	learn: 6.2759215	total: 7.46s	remaining: 338ms
287:	learn: 6.2573928	total: 7.49s	remaining: 312ms
288:	learn: 6.2171188	total: 7.51s	remaining: 286ms
289:	learn: 6.2047704	total: 7.54s	remaining: 260ms
290:	learn: 6.1958409	total: 7.59s	remaining: 235ms
291:	learn: 6.1687670	total: 7.61s	remaining: 209ms
292:	learn: 6.1534078	total: 7.64s	remaining: 182ms
293:	learn: 6.1501440	total: 7.66s	remaining: 156ms
294:	learn: 6.1433714	total: 7.69s	remaining: 130ms
295:	learn: 6.1307498	total: 7.71s	remaining: 104ms
296:	learn: 6.0959885	total: 7.74s	remaining: 78.1ms
297:	learn: 6.0797899	total: 7.76s	remaining: 52.1ms
298:	learn: 6.0558136	total: 7.79s	remaining: 26.1ms
299:	learn: 6.0496478	total: 7.82s	remaining: 0us
0:	learn: 42.9665907	total: 24ms	remaining: 7.19s
1:	learn: 42.0749580	total: 47.3ms	remaining: 7.04s
2:	learn: 41.2364372	total: 71.1ms	remaining: 7.04s
3:	learn: 40.2791940	total: 96ms	remaining: 7.1s
4:	learn: 39.4774740	total: 129ms	remaining: 7.59s
5:	learn: 38.5996840	total: 131ms	remaining: 6.43s
6:	learn: 37.8316211	total: 157ms	remaining: 6.56s
7:	learn: 37.1628850	total: 181ms	remaining: 6.6s
8:	learn: 36.4156466	total: 215ms	remaining: 6.96s
9:	learn: 35.6588758	total: 243ms	remaining: 7.04s
10:	learn: 35.0884345	total: 269ms	remaining: 7.08s
11:	learn: 34.5488461	total: 297ms	remaining: 7.13s
12:	learn: 34.0111283	total: 327ms	remaining: 7.22s
13:	learn: 33.3032373	total: 359ms	remaining: 7.34s
14:	learn: 32.6944492	total: 386ms	remaining: 7.34s
15:	learn: 32.1392985	total: 414ms	remaining: 7.34s
16:	learn: 31.5189724	total: 440ms	remaining: 7.32s
17:	learn: 31.1349319	total: 466ms	remaining: 7.3s
18:	learn: 30.6327993	total: 470ms	remaining: 6.95s
19:	learn: 30.1244237	total: 496ms	remaining: 6.94s
20:	learn: 29.6203476	total: 523ms	remaining: 6.95s
21:	learn: 29.1948722	total: 563ms	remaining: 7.12s
22:	learn: 28.7806338	total: 591ms	remaining: 7.12s
23:	learn: 28.4090304	total: 619ms	remaining: 7.12s
24:	learn: 27.8808639	total: 648ms	remaining: 7.13s
25:	learn: 27.4873995	total: 676ms	remaining: 7.13s
26:	learn: 27.1508867	total: 703ms	remaining: 7.11s
27:	learn: 26.8736886	total: 729ms	remaining: 7.09s
28:	learn: 26.5573453	total: 757ms	remaining: 7.07s
29:	learn: 26.1377013	total: 797ms	remaining: 7.17s
30:	learn: 25.8646447	total: 828ms	remaining: 7.19s
31:	learn: 25.5102956	total: 855ms	remaining: 7.16s
32:	learn: 25.1125832	total: 858ms	remaining: 6.95s
33:	learn: 24.7834335	total: 885ms	remaining: 6.93s
34:	learn: 24.4107155	total: 912ms	remaining: 6.9s
35:	learn: 24.1257227	total: 938ms	remaining: 6.88s
36:	learn: 23.7885363	total: 964ms	remaining: 6.85s
37:	learn: 23.4172762	total: 991ms	remaining: 6.83s
38:	learn: 23.1811741	total: 1.03s	remaining: 6.89s
39:	learn: 23.0203552	total: 1.06s	remaining: 6.9s
40:	learn: 22.7568385	total: 1.09s	remaining: 6.88s
41:	learn: 22.5575054	total: 1.12s	remaining: 6.86s
42:	learn: 22.3627317	total: 1.14s	remaining: 6.84s
43:	learn: 22.1148033	total: 1.17s	remaining: 6.81s
44:	learn: 21.8764654	total: 1.2s	remaining: 6.79s
45:	learn: 21.6507751	total: 1.23s	remaining: 6.77s
46:	learn: 21.5071770	total: 1.26s	remaining: 6.77s
47:	learn: 21.2905641	total: 1.29s	remaining: 6.78s
48:	learn: 21.0236680	total: 1.32s	remaining: 6.75s
49:	learn: 20.8525654	total: 1.34s	remaining: 6.72s
50:	learn: 20.7238361	total: 1.37s	remaining: 6.69s
51:	learn: 20.5196846	total: 1.4s	remaining: 6.67s
52:	learn: 20.4023709	total: 1.43s	remaining: 6.65s
53:	learn: 20.2251544	total: 1.46s	remaining: 6.67s
54:	learn: 20.0165126	total: 1.49s	remaining: 6.64s
55:	learn: 19.8473022	total: 1.53s	remaining: 6.65s
56:	learn: 19.6453942	total: 1.55s	remaining: 6.63s
57:	learn: 19.4414519	total: 1.58s	remaining: 6.59s
58:	learn: 19.2841809	total: 1.61s	remaining: 6.57s
59:	learn: 19.1094988	total: 1.64s	remaining: 6.54s
60:	learn: 18.9071492	total: 1.66s	remaining: 6.52s
61:	learn: 18.8142448	total: 1.7s	remaining: 6.51s
62:	learn: 18.7155916	total: 1.72s	remaining: 6.49s
63:	learn: 18.5713989	total: 1.76s	remaining: 6.48s
64:	learn: 18.4435949	total: 1.78s	remaining: 6.45s
65:	learn: 18.3154060	total: 1.81s	remaining: 6.42s
66:	learn: 18.1763969	total: 1.84s	remaining: 6.39s
67:	learn: 18.0520004	total: 1.87s	remaining: 6.37s
68:	learn: 17.9256535	total: 1.9s	remaining: 6.37s
69:	learn: 17.8001190	total: 1.93s	remaining: 6.34s
70:	learn: 17.7046336	total: 1.96s	remaining: 6.32s
71:	learn: 17.5727695	total: 2s	remaining: 6.32s
72:	learn: 17.4690371	total: 2.02s	remaining: 6.29s
73:	learn: 17.3464529	total: 2.05s	remaining: 6.26s
74:	learn: 17.2490723	total: 2.08s	remaining: 6.23s
75:	learn: 17.1387598	total: 2.11s	remaining: 6.22s
76:	learn: 17.0249827	total: 2.13s	remaining: 6.18s
77:	learn: 16.8957417	total: 2.16s	remaining: 6.15s
78:	learn: 16.8509294	total: 2.19s	remaining: 6.12s
79:	learn: 16.7606789	total: 2.22s	remaining: 6.09s
80:	learn: 16.6451525	total: 2.25s	remaining: 6.08s
81:	learn: 16.5535417	total: 2.28s	remaining: 6.06s
82:	learn: 16.4573626	total: 2.32s	remaining: 6.06s
83:	learn: 16.3815139	total: 2.35s	remaining: 6.03s
84:	learn: 16.2757371	total: 2.37s	remaining: 6s
85:	learn: 16.1610261	total: 2.4s	remaining: 5.98s
86:	learn: 16.0576382	total: 2.43s	remaining: 5.95s
87:	learn: 15.9864012	total: 2.46s	remaining: 5.92s
88:	learn: 15.8595556	total: 2.49s	remaining: 5.9s
89:	learn: 15.7835777	total: 2.52s	remaining: 5.88s
90:	learn: 15.6644813	total: 2.55s	remaining: 5.86s
91:	learn: 15.5703568	total: 2.58s	remaining: 5.83s
92:	learn: 15.5149519	total: 2.6s	remaining: 5.79s
93:	learn: 15.4388698	total: 2.63s	remaining: 5.77s
94:	learn: 15.3748348	total: 2.66s	remaining: 5.74s
95:	learn: 15.2653364	total: 2.68s	remaining: 5.71s
96:	learn: 15.1811031	total: 2.72s	remaining: 5.69s
97:	learn: 15.1048666	total: 2.75s	remaining: 5.66s
98:	learn: 14.9482659	total: 2.78s	remaining: 5.65s
99:	learn: 14.8677279	total: 2.81s	remaining: 5.62s
100:	learn: 14.7725994	total: 2.84s	remaining: 5.59s
101:	learn: 14.7029290	total: 2.87s	remaining: 5.57s
102:	learn: 14.6496411	total: 2.89s	remaining: 5.54s
103:	learn: 14.5777257	total: 2.92s	remaining: 5.5s
104:	learn: 14.5216984	total: 2.96s	remaining: 5.49s
105:	learn: 14.4547829	total: 2.99s	remaining: 5.47s
106:	learn: 14.3711083	total: 3.02s	remaining: 5.45s
107:	learn: 14.2912634	total: 3.05s	remaining: 5.42s
108:	learn: 14.2095515	total: 3.08s	remaining: 5.39s
109:	learn: 14.1126833	total: 3.1s	remaining: 5.36s
110:	learn: 14.0289467	total: 3.13s	remaining: 5.33s
111:	learn: 13.9815748	total: 3.15s	remaining: 5.3s
112:	learn: 13.8835790	total: 3.18s	remaining: 5.27s
113:	learn: 13.8212214	total: 3.22s	remaining: 5.25s
114:	learn: 13.7640007	total: 3.25s	remaining: 5.24s
115:	learn: 13.7267519	total: 3.28s	remaining: 5.21s
116:	learn: 13.6599610	total: 3.31s	remaining: 5.18s
117:	learn: 13.5793132	total: 3.34s	remaining: 5.15s
118:	learn: 13.4925503	total: 3.37s	remaining: 5.12s
119:	learn: 13.4190945	total: 3.39s	remaining: 5.09s
120:	learn: 13.3466705	total: 3.42s	remaining: 5.06s
121:	learn: 13.2924496	total: 3.46s	remaining: 5.05s
122:	learn: 13.2085622	total: 3.49s	remaining: 5.02s
123:	learn: 13.1162372	total: 3.51s	remaining: 4.99s
124:	learn: 13.0410713	total: 3.54s	remaining: 4.96s
125:	learn: 12.9609613	total: 3.57s	remaining: 4.93s
126:	learn: 12.8983994	total: 3.59s	remaining: 4.89s
127:	learn: 12.8474128	total: 3.62s	remaining: 4.86s
128:	learn: 12.7868331	total: 3.65s	remaining: 4.84s
129:	learn: 12.7309355	total: 3.69s	remaining: 4.83s
130:	learn: 12.6294977	total: 3.72s	remaining: 4.8s
131:	learn: 12.5179424	total: 3.75s	remaining: 4.77s
132:	learn: 12.4808285	total: 3.77s	remaining: 4.74s
133:	learn: 12.4263439	total: 3.8s	remaining: 4.71s
134:	learn: 12.3735545	total: 3.83s	remaining: 4.68s
135:	learn: 12.3307713	total: 3.86s	remaining: 4.65s
136:	learn: 12.2519866	total: 3.88s	remaining: 4.62s
137:	learn: 12.1999454	total: 3.92s	remaining: 4.61s
138:	learn: 12.1615470	total: 3.95s	remaining: 4.58s
139:	learn: 12.1069953	total: 3.98s	remaining: 4.54s
140:	learn: 12.0901368	total: 4s	remaining: 4.51s
141:	learn: 12.0479705	total: 4.03s	remaining: 4.48s
142:	learn: 12.0053457	total: 4.06s	remaining: 4.46s
143:	learn: 11.9659408	total: 4.08s	remaining: 4.43s
144:	learn: 11.8554732	total: 4.11s	remaining: 4.4s
145:	learn: 11.8187196	total: 4.15s	remaining: 4.38s
146:	learn: 11.7800675	total: 4.18s	remaining: 4.36s
147:	learn: 11.7386309	total: 4.21s	remaining: 4.33s
148:	learn: 11.6839216	total: 4.24s	remaining: 4.3s
149:	learn: 11.6001114	total: 4.27s	remaining: 4.27s
150:	learn: 11.5294641	total: 4.29s	remaining: 4.24s
151:	learn: 11.4688507	total: 4.32s	remaining: 4.21s
152:	learn: 11.4036255	total: 4.35s	remaining: 4.18s
153:	learn: 11.3539311	total: 4.38s	remaining: 4.16s
154:	learn: 11.2810182	total: 4.42s	remaining: 4.13s
155:	learn: 11.2291051	total: 4.44s	remaining: 4.1s
156:	learn: 11.1684511	total: 4.47s	remaining: 4.07s
157:	learn: 11.0820909	total: 4.5s	remaining: 4.04s
158:	learn: 11.0151771	total: 4.52s	remaining: 4.01s
159:	learn: 10.9854451	total: 4.55s	remaining: 3.98s
160:	learn: 10.9538428	total: 4.58s	remaining: 3.96s
161:	learn: 10.9071380	total: 4.61s	remaining: 3.93s
162:	learn: 10.8506541	total: 4.65s	remaining: 3.91s
163:	learn: 10.7895632	total: 4.68s	remaining: 3.88s
164:	learn: 10.7104166	total: 4.71s	remaining: 3.85s
165:	learn: 10.6713716	total: 4.73s	remaining: 3.82s
166:	learn: 10.6075628	total: 4.76s	remaining: 3.79s
167:	learn: 10.5513657	total: 4.79s	remaining: 3.77s
168:	learn: 10.5308283	total: 4.82s	remaining: 3.74s
169:	learn: 10.5023957	total: 4.85s	remaining: 3.71s
170:	learn: 10.4435313	total: 4.87s	remaining: 3.68s
171:	learn: 10.4072323	total: 4.91s	remaining: 3.65s
172:	learn: 10.3655510	total: 4.93s	remaining: 3.62s
173:	learn: 10.3243121	total: 4.96s	remaining: 3.59s
174:	learn: 10.2931771	total: 4.99s	remaining: 3.56s
175:	learn: 10.2558381	total: 5.03s	remaining: 3.54s
176:	learn: 10.2092526	total: 5.05s	remaining: 3.51s
177:	learn: 10.1711544	total: 5.08s	remaining: 3.48s
178:	learn: 10.1456963	total: 5.11s	remaining: 3.46s
179:	learn: 10.0920598	total: 5.14s	remaining: 3.43s
180:	learn: 10.0733859	total: 5.17s	remaining: 3.4s
181:	learn: 10.0472528	total: 5.2s	remaining: 3.37s
182:	learn: 10.0011592	total: 5.23s	remaining: 3.34s
183:	learn: 9.9794945	total: 5.26s	remaining: 3.32s
184:	learn: 9.9585906	total: 5.29s	remaining: 3.29s
185:	learn: 9.9399622	total: 5.31s	remaining: 3.26s
186:	learn: 9.9029023	total: 5.34s	remaining: 3.23s
187:	learn: 9.8554746	total: 5.38s	remaining: 3.2s
188:	learn: 9.8238680	total: 5.4s	remaining: 3.17s
189:	learn: 9.7666554	total: 5.43s	remaining: 3.15s
190:	learn: 9.7207381	total: 5.47s	remaining: 3.12s
191:	learn: 9.6569385	total: 5.5s	remaining: 3.09s
192:	learn: 9.6385185	total: 5.52s	remaining: 3.06s
193:	learn: 9.6202811	total: 5.55s	remaining: 3.03s
194:	learn: 9.5971883	total: 5.58s	remaining: 3s
195:	learn: 9.5799642	total: 5.61s	remaining: 2.98s
196:	learn: 9.5177746	total: 5.64s	remaining: 2.95s
197:	learn: 9.4886409	total: 5.67s	remaining: 2.92s
198:	learn: 9.4664307	total: 5.7s	remaining: 2.89s
199:	learn: 9.4000552	total: 5.73s	remaining: 2.86s
200:	learn: 9.3423940	total: 5.75s	remaining: 2.83s
201:	learn: 9.2917605	total: 5.78s	remaining: 2.81s
202:	learn: 9.2787639	total: 5.81s	remaining: 2.77s
203:	learn: 9.2348560	total: 5.84s	remaining: 2.75s
204:	learn: 9.2163272	total: 5.87s	remaining: 2.72s
205:	learn: 9.1475795	total: 5.91s	remaining: 2.7s
206:	learn: 9.1152705	total: 5.94s	remaining: 2.67s
207:	learn: 9.0832275	total: 5.96s	remaining: 2.64s
208:	learn: 9.0497331	total: 5.99s	remaining: 2.61s
209:	learn: 8.9884684	total: 6.02s	remaining: 2.58s
210:	learn: 8.9704690	total: 6.05s	remaining: 2.55s
211:	learn: 8.9489198	total: 6.08s	remaining: 2.52s
212:	learn: 8.9309060	total: 6.12s	remaining: 2.5s
213:	learn: 8.8812512	total: 6.15s	remaining: 2.47s
214:	learn: 8.8596725	total: 6.17s	remaining: 2.44s
215:	learn: 8.8300852	total: 6.2s	remaining: 2.41s
216:	learn: 8.7882493	total: 6.23s	remaining: 2.38s
217:	learn: 8.7527024	total: 6.25s	remaining: 2.35s
218:	learn: 8.7373901	total: 6.28s	remaining: 2.32s
219:	learn: 8.6853084	total: 6.31s	remaining: 2.29s
220:	learn: 8.6700353	total: 6.35s	remaining: 2.27s
221:	learn: 8.6488354	total: 6.38s	remaining: 2.24s
222:	learn: 8.6245087	total: 6.41s	remaining: 2.21s
223:	learn: 8.5803127	total: 6.44s	remaining: 2.18s
224:	learn: 8.5687287	total: 6.46s	remaining: 2.15s
225:	learn: 8.5524159	total: 6.49s	remaining: 2.13s
226:	learn: 8.5363118	total: 6.52s	remaining: 2.1s
227:	learn: 8.5173117	total: 6.55s	remaining: 2.07s
228:	learn: 8.5023907	total: 6.59s	remaining: 2.04s
229:	learn: 8.4758786	total: 6.62s	remaining: 2.01s
230:	learn: 8.4589042	total: 6.64s	remaining: 1.98s
231:	learn: 8.4178675	total: 6.67s	remaining: 1.95s
232:	learn: 8.4015768	total: 6.7s	remaining: 1.93s
233:	learn: 8.3538784	total: 6.72s	remaining: 1.9s
234:	learn: 8.3197095	total: 6.75s	remaining: 1.87s
235:	learn: 8.3012561	total: 6.79s	remaining: 1.84s
236:	learn: 8.2676774	total: 6.81s	remaining: 1.81s
237:	learn: 8.2345097	total: 6.85s	remaining: 1.78s
238:	learn: 8.1918901	total: 6.88s	remaining: 1.75s
239:	learn: 8.1628985	total: 6.9s	remaining: 1.73s
240:	learn: 8.1474180	total: 6.93s	remaining: 1.7s
241:	learn: 8.1325534	total: 6.96s	remaining: 1.67s
242:	learn: 8.1037771	total: 6.98s	remaining: 1.64s
243:	learn: 8.0648232	total: 7.01s	remaining: 1.61s
244:	learn: 8.0292260	total: 7.04s	remaining: 1.58s
245:	learn: 7.9979887	total: 7.08s	remaining: 1.55s
246:	learn: 7.9749906	total: 7.1s	remaining: 1.52s
247:	learn: 7.9536857	total: 7.13s	remaining: 1.5s
248:	learn: 7.9369033	total: 7.16s	remaining: 1.47s
249:	learn: 7.9041314	total: 7.18s	remaining: 1.44s
250:	learn: 7.8700779	total: 7.21s	remaining: 1.41s
251:	learn: 7.8589815	total: 7.25s	remaining: 1.38s
252:	learn: 7.8461408	total: 7.28s	remaining: 1.35s
253:	learn: 7.8203908	total: 7.31s	remaining: 1.32s
254:	learn: 7.8115877	total: 7.34s	remaining: 1.29s
255:	learn: 7.7972851	total: 7.37s	remaining: 1.27s
256:	learn: 7.7592777	total: 7.39s	remaining: 1.24s
257:	learn: 7.7415378	total: 7.42s	remaining: 1.21s
258:	learn: 7.7066130	total: 7.45s	remaining: 1.18s
259:	learn: 7.6688277	total: 7.48s	remaining: 1.15s
260:	learn: 7.6399303	total: 7.51s	remaining: 1.12s
261:	learn: 7.6294434	total: 7.54s	remaining: 1.09s
262:	learn: 7.5974222	total: 7.57s	remaining: 1.06s
263:	learn: 7.5614717	total: 7.6s	remaining: 1.04s
264:	learn: 7.5393196	total: 7.63s	remaining: 1.01s
265:	learn: 7.5304428	total: 7.65s	remaining: 978ms
266:	learn: 7.5005082	total: 7.68s	remaining: 949ms
267:	learn: 7.4930881	total: 7.72s	remaining: 921ms
268:	learn: 7.4618806	total: 7.74s	remaining: 892ms
269:	learn: 7.4324630	total: 7.77s	remaining: 863ms
270:	learn: 7.4024922	total: 7.81s	remaining: 835ms
271:	learn: 7.3795771	total: 7.83s	remaining: 807ms
272:	learn: 7.3582401	total: 7.86s	remaining: 778ms
273:	learn: 7.3332320	total: 7.89s	remaining: 748ms
274:	learn: 7.3134158	total: 7.92s	remaining: 720ms
275:	learn: 7.3047177	total: 7.95s	remaining: 691ms
276:	learn: 7.2835686	total: 7.97s	remaining: 662ms
277:	learn: 7.2590706	total: 8s	remaining: 633ms
278:	learn: 7.2389798	total: 8.04s	remaining: 605ms
279:	learn: 7.2238047	total: 8.06s	remaining: 576ms
280:	learn: 7.2091121	total: 8.09s	remaining: 547ms
281:	learn: 7.1841389	total: 8.12s	remaining: 518ms
282:	learn: 7.1551478	total: 8.15s	remaining: 489ms
283:	learn: 7.1417039	total: 8.18s	remaining: 461ms
284:	learn: 7.1149018	total: 8.21s	remaining: 432ms
285:	learn: 7.0940299	total: 8.24s	remaining: 403ms
286:	learn: 7.0642807	total: 8.28s	remaining: 375ms
287:	learn: 7.0578276	total: 8.3s	remaining: 346ms
288:	learn: 7.0282409	total: 8.33s	remaining: 317ms
289:	learn: 7.0175655	total: 8.36s	remaining: 288ms
290:	learn: 7.0117776	total: 8.39s	remaining: 259ms
291:	learn: 7.0065809	total: 8.42s	remaining: 231ms
292:	learn: 6.9844003	total: 8.45s	remaining: 202ms
293:	learn: 6.9588520	total: 8.47s	remaining: 173ms
294:	learn: 6.9319651	total: 8.51s	remaining: 144ms
295:	learn: 6.9184996	total: 8.53s	remaining: 115ms
296:	learn: 6.9089387	total: 8.56s	remaining: 86.5ms
297:	learn: 6.8834263	total: 8.6s	remaining: 57.7ms
298:	learn: 6.8646725	total: 8.63s	remaining: 28.8ms
299:	learn: 6.8583069	total: 8.65s	remaining: 0us
0:	learn: 46.4920187	total: 25ms	remaining: 7.49s
1:	learn: 45.6433575	total: 52.8ms	remaining: 7.87s
2:	learn: 44.9081373	total: 82.3ms	remaining: 8.15s
3:	learn: 44.2007033	total: 107ms	remaining: 7.92s
4:	learn: 43.6170398	total: 132ms	remaining: 7.78s
5:	learn: 42.9324480	total: 157ms	remaining: 7.68s
6:	learn: 42.1711446	total: 182ms	remaining: 7.61s
7:	learn: 41.4804333	total: 206ms	remaining: 7.5s
8:	learn: 40.7785369	total: 232ms	remaining: 7.51s
9:	learn: 40.1652912	total: 257ms	remaining: 7.44s
10:	learn: 39.7932467	total: 284ms	remaining: 7.47s
11:	learn: 39.1996124	total: 317ms	remaining: 7.6s
12:	learn: 38.7184015	total: 343ms	remaining: 7.57s
13:	learn: 38.2978784	total: 369ms	remaining: 7.54s
14:	learn: 37.9153936	total: 395ms	remaining: 7.5s
15:	learn: 37.4724861	total: 421ms	remaining: 7.47s
16:	learn: 36.9897929	total: 446ms	remaining: 7.43s
17:	learn: 36.5310822	total: 471ms	remaining: 7.39s
18:	learn: 35.8591207	total: 497ms	remaining: 7.35s
19:	learn: 35.3264196	total: 526ms	remaining: 7.36s
20:	learn: 34.9815543	total: 555ms	remaining: 7.38s
21:	learn: 34.5242647	total: 581ms	remaining: 7.34s
22:	learn: 34.0838298	total: 606ms	remaining: 7.3s
23:	learn: 33.5132614	total: 631ms	remaining: 7.26s
24:	learn: 33.1682884	total: 657ms	remaining: 7.22s
25:	learn: 32.6809656	total: 681ms	remaining: 7.18s
26:	learn: 32.2976643	total: 706ms	remaining: 7.14s
27:	learn: 31.8377309	total: 745ms	remaining: 7.24s
28:	learn: 31.4757870	total: 773ms	remaining: 7.22s
29:	learn: 31.1346090	total: 798ms	remaining: 7.18s
30:	learn: 30.8895702	total: 824ms	remaining: 7.15s
31:	learn: 30.4184979	total: 850ms	remaining: 7.12s
32:	learn: 30.1250221	total: 874ms	remaining: 7.07s
33:	learn: 29.7407593	total: 898ms	remaining: 7.03s
34:	learn: 29.4737622	total: 924ms	remaining: 7s
35:	learn: 29.0366253	total: 949ms	remaining: 6.96s
36:	learn: 28.5395737	total: 988ms	remaining: 7.02s
37:	learn: 28.2499036	total: 1.01s	remaining: 7s
38:	learn: 28.0302095	total: 1.04s	remaining: 6.97s
39:	learn: 27.7630415	total: 1.07s	remaining: 6.95s
40:	learn: 27.5060679	total: 1.09s	remaining: 6.91s
41:	learn: 27.1860580	total: 1.12s	remaining: 6.88s
42:	learn: 26.9497401	total: 1.14s	remaining: 6.84s
43:	learn: 26.5636809	total: 1.18s	remaining: 6.86s
44:	learn: 26.3527818	total: 1.21s	remaining: 6.85s
45:	learn: 26.0947487	total: 1.22s	remaining: 6.72s
46:	learn: 25.8964846	total: 1.24s	remaining: 6.69s
47:	learn: 25.7357069	total: 1.27s	remaining: 6.65s
48:	learn: 25.4371960	total: 1.29s	remaining: 6.63s
49:	learn: 25.2603655	total: 1.32s	remaining: 6.6s
50:	learn: 25.0858697	total: 1.34s	remaining: 6.57s
51:	learn: 24.8939288	total: 1.37s	remaining: 6.54s
52:	learn: 24.6820962	total: 1.4s	remaining: 6.54s
53:	learn: 24.4191077	total: 1.43s	remaining: 6.51s
54:	learn: 24.2285108	total: 1.45s	remaining: 6.47s
55:	learn: 24.0237019	total: 1.48s	remaining: 6.44s
56:	learn: 23.8723096	total: 1.5s	remaining: 6.41s
57:	learn: 23.6426757	total: 1.53s	remaining: 6.38s
58:	learn: 23.3573717	total: 1.55s	remaining: 6.35s
59:	learn: 23.2066882	total: 1.58s	remaining: 6.32s
60:	learn: 23.0766272	total: 1.61s	remaining: 6.3s
61:	learn: 22.8991718	total: 1.64s	remaining: 6.31s
62:	learn: 22.7894335	total: 1.67s	remaining: 6.29s
63:	learn: 22.6367500	total: 1.7s	remaining: 6.26s
64:	learn: 22.4138205	total: 1.72s	remaining: 6.23s
65:	learn: 22.2650450	total: 1.75s	remaining: 6.2s
66:	learn: 22.1323603	total: 1.77s	remaining: 6.17s
67:	learn: 22.0038344	total: 1.8s	remaining: 6.14s
68:	learn: 21.8540317	total: 1.83s	remaining: 6.13s
69:	learn: 21.6608789	total: 1.86s	remaining: 6.11s
70:	learn: 21.4853082	total: 1.88s	remaining: 6.08s
71:	learn: 21.3715617	total: 1.91s	remaining: 6.04s
72:	learn: 21.2631638	total: 1.93s	remaining: 6.01s
73:	learn: 21.0630270	total: 1.96s	remaining: 5.98s
74:	learn: 20.9295137	total: 1.98s	remaining: 5.95s
75:	learn: 20.7587846	total: 2.01s	remaining: 5.92s
76:	learn: 20.6341259	total: 2.03s	remaining: 5.89s
77:	learn: 20.4852416	total: 2.06s	remaining: 5.86s
78:	learn: 20.3364151	total: 2.1s	remaining: 5.86s
79:	learn: 20.1513667	total: 2.12s	remaining: 5.83s
80:	learn: 20.0363336	total: 2.15s	remaining: 5.81s
81:	learn: 19.8984761	total: 2.17s	remaining: 5.78s
82:	learn: 19.7196215	total: 2.2s	remaining: 5.75s
83:	learn: 19.6326171	total: 2.22s	remaining: 5.71s
84:	learn: 19.5192244	total: 2.25s	remaining: 5.68s
85:	learn: 19.3415480	total: 2.27s	remaining: 5.65s
86:	learn: 19.1977806	total: 2.3s	remaining: 5.64s
87:	learn: 19.0755247	total: 2.33s	remaining: 5.61s
88:	learn: 18.9651152	total: 2.35s	remaining: 5.58s
89:	learn: 18.8207893	total: 2.38s	remaining: 5.54s
90:	learn: 18.6727740	total: 2.4s	remaining: 5.51s
91:	learn: 18.5581545	total: 2.42s	remaining: 5.48s
92:	learn: 18.3991083	total: 2.45s	remaining: 5.45s
93:	learn: 18.2684705	total: 2.47s	remaining: 5.42s
94:	learn: 18.1617452	total: 2.51s	remaining: 5.41s
95:	learn: 18.0459371	total: 2.53s	remaining: 5.39s
96:	learn: 17.9276342	total: 2.56s	remaining: 5.36s
97:	learn: 17.8174578	total: 2.58s	remaining: 5.33s
98:	learn: 17.7243604	total: 2.61s	remaining: 5.3s
99:	learn: 17.5858933	total: 2.63s	remaining: 5.27s
100:	learn: 17.4987099	total: 2.66s	remaining: 5.24s
101:	learn: 17.4074669	total: 2.68s	remaining: 5.21s
102:	learn: 17.3061897	total: 2.71s	remaining: 5.18s
103:	learn: 17.2198386	total: 2.74s	remaining: 5.16s
104:	learn: 17.1413444	total: 2.76s	remaining: 5.13s
105:	learn: 17.0254611	total: 2.79s	remaining: 5.1s
106:	learn: 16.8532099	total: 2.81s	remaining: 5.07s
107:	learn: 16.7502658	total: 2.83s	remaining: 5.04s
108:	learn: 16.6620525	total: 2.86s	remaining: 5.01s
109:	learn: 16.5150565	total: 2.88s	remaining: 4.98s
110:	learn: 16.3807346	total: 2.91s	remaining: 4.95s
111:	learn: 16.2864111	total: 2.94s	remaining: 4.93s
112:	learn: 16.2093028	total: 2.97s	remaining: 4.91s
113:	learn: 16.1230989	total: 2.99s	remaining: 4.88s
114:	learn: 16.0202012	total: 3.01s	remaining: 4.85s
115:	learn: 15.8709211	total: 3.04s	remaining: 4.82s
116:	learn: 15.8000542	total: 3.06s	remaining: 4.79s
117:	learn: 15.7243590	total: 3.09s	remaining: 4.76s
118:	learn: 15.6838028	total: 3.11s	remaining: 4.73s
119:	learn: 15.5999055	total: 3.14s	remaining: 4.71s
120:	learn: 15.4847533	total: 3.17s	remaining: 4.69s
121:	learn: 15.3935164	total: 3.19s	remaining: 4.66s
122:	learn: 15.3296377	total: 3.21s	remaining: 4.63s
123:	learn: 15.2519510	total: 3.24s	remaining: 4.6s
124:	learn: 15.1230133	total: 3.26s	remaining: 4.57s
125:	learn: 15.0423019	total: 3.29s	remaining: 4.54s
126:	learn: 14.9651901	total: 3.31s	remaining: 4.51s
127:	learn: 14.8934123	total: 3.34s	remaining: 4.48s
128:	learn: 14.7751491	total: 3.37s	remaining: 4.47s
129:	learn: 14.6892078	total: 3.4s	remaining: 4.44s
130:	learn: 14.5672638	total: 3.42s	remaining: 4.41s
131:	learn: 14.4952938	total: 3.44s	remaining: 4.38s
132:	learn: 14.4180105	total: 3.47s	remaining: 4.36s
133:	learn: 14.3259063	total: 3.49s	remaining: 4.33s
134:	learn: 14.2345804	total: 3.52s	remaining: 4.3s
135:	learn: 14.1483357	total: 3.54s	remaining: 4.27s
136:	learn: 14.0736010	total: 3.56s	remaining: 4.24s
137:	learn: 13.9937119	total: 3.6s	remaining: 4.22s
138:	learn: 13.8959716	total: 3.62s	remaining: 4.19s
139:	learn: 13.8412567	total: 3.64s	remaining: 4.16s
140:	learn: 13.7154644	total: 3.67s	remaining: 4.14s
141:	learn: 13.6297829	total: 3.69s	remaining: 4.11s
142:	learn: 13.5739671	total: 3.72s	remaining: 4.08s
143:	learn: 13.4995340	total: 3.75s	remaining: 4.06s
144:	learn: 13.4419790	total: 3.78s	remaining: 4.04s
145:	learn: 13.3537206	total: 3.81s	remaining: 4.02s
146:	learn: 13.2933505	total: 3.84s	remaining: 4s
147:	learn: 13.2556145	total: 3.87s	remaining: 3.98s
148:	learn: 13.1895569	total: 3.9s	remaining: 3.95s
149:	learn: 13.0743749	total: 3.93s	remaining: 3.93s
150:	learn: 12.9866329	total: 3.95s	remaining: 3.9s
151:	learn: 12.9104275	total: 3.98s	remaining: 3.88s
152:	learn: 12.8577271	total: 4.01s	remaining: 3.85s
153:	learn: 12.8256294	total: 4.04s	remaining: 3.83s
154:	learn: 12.7696590	total: 4.07s	remaining: 3.81s
155:	learn: 12.7209084	total: 4.1s	remaining: 3.79s
156:	learn: 12.6674046	total: 4.13s	remaining: 3.76s
157:	learn: 12.5958375	total: 4.16s	remaining: 3.73s
158:	learn: 12.5324216	total: 4.18s	remaining: 3.71s
159:	learn: 12.4750343	total: 4.21s	remaining: 3.68s
160:	learn: 12.4460476	total: 4.24s	remaining: 3.66s
161:	learn: 12.3931726	total: 4.27s	remaining: 3.64s
162:	learn: 12.3423679	total: 4.3s	remaining: 3.62s
163:	learn: 12.2404837	total: 4.34s	remaining: 3.6s
164:	learn: 12.1393154	total: 4.37s	remaining: 3.57s
165:	learn: 12.0493899	total: 4.39s	remaining: 3.54s
166:	learn: 11.9978027	total: 4.42s	remaining: 3.52s
167:	learn: 11.9099690	total: 4.45s	remaining: 3.49s
168:	learn: 11.8102813	total: 4.48s	remaining: 3.47s
169:	learn: 11.7900460	total: 4.51s	remaining: 3.45s
170:	learn: 11.6614467	total: 4.54s	remaining: 3.42s
171:	learn: 11.6131631	total: 4.57s	remaining: 3.4s
172:	learn: 11.5629996	total: 4.59s	remaining: 3.37s
173:	learn: 11.5169908	total: 4.62s	remaining: 3.35s
174:	learn: 11.4660439	total: 4.65s	remaining: 3.32s
175:	learn: 11.3919483	total: 4.68s	remaining: 3.29s
176:	learn: 11.3145316	total: 4.72s	remaining: 3.28s
177:	learn: 11.2776601	total: 4.75s	remaining: 3.25s
178:	learn: 11.2271053	total: 4.77s	remaining: 3.23s
179:	learn: 11.1499719	total: 4.81s	remaining: 3.21s
180:	learn: 11.0826417	total: 4.84s	remaining: 3.18s
181:	learn: 11.0345062	total: 4.86s	remaining: 3.15s
182:	learn: 10.9747957	total: 4.89s	remaining: 3.13s
183:	learn: 10.9504835	total: 4.92s	remaining: 3.1s
184:	learn: 10.8920732	total: 4.95s	remaining: 3.08s
185:	learn: 10.8332793	total: 4.98s	remaining: 3.05s
186:	learn: 10.7563237	total: 5s	remaining: 3.02s
187:	learn: 10.6822868	total: 5.04s	remaining: 3s
188:	learn: 10.6056324	total: 5.07s	remaining: 2.98s
189:	learn: 10.5266557	total: 5.09s	remaining: 2.95s
190:	learn: 10.4930964	total: 5.12s	remaining: 2.92s
191:	learn: 10.4201879	total: 5.16s	remaining: 2.9s
192:	learn: 10.3397888	total: 5.19s	remaining: 2.88s
193:	learn: 10.2865417	total: 5.21s	remaining: 2.85s
194:	learn: 10.2334779	total: 5.24s	remaining: 2.82s
195:	learn: 10.1692880	total: 5.27s	remaining: 2.8s
196:	learn: 10.0710712	total: 5.3s	remaining: 2.77s
197:	learn: 10.0112189	total: 5.34s	remaining: 2.75s
198:	learn: 9.9312531	total: 5.37s	remaining: 2.72s
199:	learn: 9.8522991	total: 5.39s	remaining: 2.7s
200:	learn: 9.8089200	total: 5.42s	remaining: 2.67s
201:	learn: 9.7508922	total: 5.45s	remaining: 2.64s
202:	learn: 9.7146850	total: 5.47s	remaining: 2.62s
203:	learn: 9.6641129	total: 5.5s	remaining: 2.59s
204:	learn: 9.6327075	total: 5.54s	remaining: 2.57s
205:	learn: 9.5932487	total: 5.57s	remaining: 2.54s
206:	learn: 9.5445036	total: 5.6s	remaining: 2.52s
207:	learn: 9.4948826	total: 5.63s	remaining: 2.49s
208:	learn: 9.4535103	total: 5.66s	remaining: 2.46s
209:	learn: 9.4123413	total: 5.68s	remaining: 2.44s
210:	learn: 9.3702571	total: 5.71s	remaining: 2.41s
211:	learn: 9.3376174	total: 5.75s	remaining: 2.39s
212:	learn: 9.2978132	total: 5.79s	remaining: 2.37s
213:	learn: 9.2585597	total: 5.82s	remaining: 2.34s
214:	learn: 9.2229218	total: 5.84s	remaining: 2.31s
215:	learn: 9.1931978	total: 5.87s	remaining: 2.28s
216:	learn: 9.1391962	total: 5.9s	remaining: 2.26s
217:	learn: 9.1177140	total: 5.93s	remaining: 2.23s
218:	learn: 9.0779325	total: 5.97s	remaining: 2.21s
219:	learn: 9.0291866	total: 6s	remaining: 2.18s
220:	learn: 9.0063703	total: 6.04s	remaining: 2.16s
221:	learn: 8.9747579	total: 6.06s	remaining: 2.13s
222:	learn: 8.9452822	total: 6.09s	remaining: 2.1s
223:	learn: 8.8954806	total: 6.12s	remaining: 2.08s
224:	learn: 8.8756565	total: 6.14s	remaining: 2.05s
225:	learn: 8.8362862	total: 6.18s	remaining: 2.02s
226:	learn: 8.7994104	total: 6.21s	remaining: 2s
227:	learn: 8.7388797	total: 6.24s	remaining: 1.97s
228:	learn: 8.7011029	total: 6.26s	remaining: 1.94s
229:	learn: 8.6617377	total: 6.3s	remaining: 1.92s
230:	learn: 8.6134302	total: 6.33s	remaining: 1.89s
231:	learn: 8.5572452	total: 6.35s	remaining: 1.86s
232:	learn: 8.5450933	total: 6.38s	remaining: 1.83s
233:	learn: 8.5296821	total: 6.42s	remaining: 1.81s
234:	learn: 8.4941428	total: 6.45s	remaining: 1.78s
235:	learn: 8.4682542	total: 6.48s	remaining: 1.76s
236:	learn: 8.4334184	total: 6.5s	remaining: 1.73s
237:	learn: 8.3841236	total: 6.54s	remaining: 1.7s
238:	learn: 8.3495185	total: 6.57s	remaining: 1.68s
239:	learn: 8.3255533	total: 6.6s	remaining: 1.65s
240:	learn: 8.2769513	total: 6.64s	remaining: 1.63s
241:	learn: 8.2392608	total: 6.67s	remaining: 1.6s
242:	learn: 8.2075977	total: 6.69s	remaining: 1.57s
243:	learn: 8.1675762	total: 6.72s	remaining: 1.54s
244:	learn: 8.1426498	total: 6.75s	remaining: 1.51s
245:	learn: 8.1212492	total: 6.78s	remaining: 1.49s
246:	learn: 8.1085819	total: 6.81s	remaining: 1.46s
247:	learn: 8.0970063	total: 6.84s	remaining: 1.43s
248:	learn: 8.0831142	total: 6.88s	remaining: 1.41s
249:	learn: 8.0682674	total: 6.91s	remaining: 1.38s
250:	learn: 8.0255439	total: 6.93s	remaining: 1.35s
251:	learn: 7.9910040	total: 6.96s	remaining: 1.33s
252:	learn: 7.9689255	total: 6.99s	remaining: 1.3s
253:	learn: 7.9472704	total: 7.02s	remaining: 1.27s
254:	learn: 7.9223583	total: 7.06s	remaining: 1.25s
255:	learn: 7.9037436	total: 7.09s	remaining: 1.22s
256:	learn: 7.8699909	total: 7.11s	remaining: 1.19s
257:	learn: 7.8368335	total: 7.14s	remaining: 1.16s
258:	learn: 7.8236324	total: 7.17s	remaining: 1.13s
259:	learn: 7.8036203	total: 7.19s	remaining: 1.11s
260:	learn: 7.7785106	total: 7.22s	remaining: 1.08s
261:	learn: 7.7378238	total: 7.25s	remaining: 1.05s
262:	learn: 7.7076815	total: 7.29s	remaining: 1.03s
263:	learn: 7.6857233	total: 7.32s	remaining: 998ms
264:	learn: 7.6580317	total: 7.35s	remaining: 971ms
265:	learn: 7.6172020	total: 7.38s	remaining: 943ms
266:	learn: 7.5867081	total: 7.4s	remaining: 915ms
267:	learn: 7.5596902	total: 7.43s	remaining: 887ms
268:	learn: 7.5299019	total: 7.46s	remaining: 860ms
269:	learn: 7.5009508	total: 7.49s	remaining: 833ms
270:	learn: 7.4926172	total: 7.53s	remaining: 806ms
271:	learn: 7.4658986	total: 7.56s	remaining: 778ms
272:	learn: 7.4522698	total: 7.58s	remaining: 750ms
273:	learn: 7.4302812	total: 7.61s	remaining: 722ms
274:	learn: 7.3941731	total: 7.64s	remaining: 694ms
275:	learn: 7.3799563	total: 7.67s	remaining: 667ms
276:	learn: 7.3656377	total: 7.69s	remaining: 639ms
277:	learn: 7.3315754	total: 7.73s	remaining: 612ms
278:	learn: 7.3180067	total: 7.76s	remaining: 584ms
279:	learn: 7.2955359	total: 7.79s	remaining: 557ms
280:	learn: 7.2752011	total: 7.82s	remaining: 529ms
281:	learn: 7.2453396	total: 7.85s	remaining: 501ms
282:	learn: 7.2349607	total: 7.88s	remaining: 473ms
283:	learn: 7.2063896	total: 7.9s	remaining: 445ms
284:	learn: 7.1899919	total: 7.93s	remaining: 418ms
285:	learn: 7.1788740	total: 7.97s	remaining: 390ms
286:	learn: 7.1567240	total: 8s	remaining: 362ms
287:	learn: 7.1370331	total: 8.03s	remaining: 334ms
288:	learn: 7.1180486	total: 8.05s	remaining: 307ms
289:	learn: 7.0971315	total: 8.08s	remaining: 279ms
290:	learn: 7.0784398	total: 8.11s	remaining: 251ms
291:	learn: 7.0605330	total: 8.13s	remaining: 223ms
292:	learn: 7.0273458	total: 8.17s	remaining: 195ms
293:	learn: 7.0133663	total: 8.2s	remaining: 167ms
294:	learn: 6.9946693	total: 8.23s	remaining: 139ms
295:	learn: 6.9685770	total: 8.26s	remaining: 112ms
296:	learn: 6.9527470	total: 8.29s	remaining: 83.7ms
297:	learn: 6.9305615	total: 8.32s	remaining: 55.8ms
298:	learn: 6.9039647	total: 8.35s	remaining: 27.9ms
299:	learn: 6.8927522	total: 8.38s	remaining: 0us
0:	learn: 46.2361874	total: 26.5ms	remaining: 7.93s
1:	learn: 45.3982106	total: 52.8ms	remaining: 7.87s
2:	learn: 44.6777488	total: 80.2ms	remaining: 7.94s
3:	learn: 43.7409965	total: 122ms	remaining: 9.05s
4:	learn: 43.2513213	total: 153ms	remaining: 9.02s
5:	learn: 42.4947195	total: 180ms	remaining: 8.81s
6:	learn: 41.9697708	total: 208ms	remaining: 8.71s
7:	learn: 41.2445289	total: 236ms	remaining: 8.62s
8:	learn: 40.5360490	total: 263ms	remaining: 8.5s
9:	learn: 39.9370297	total: 291ms	remaining: 8.44s
10:	learn: 39.1060281	total: 318ms	remaining: 8.35s
11:	learn: 38.6733181	total: 360ms	remaining: 8.64s
12:	learn: 38.3760896	total: 387ms	remaining: 8.55s
13:	learn: 37.9842684	total: 415ms	remaining: 8.47s
14:	learn: 37.4860092	total: 441ms	remaining: 8.38s
15:	learn: 36.9450018	total: 468ms	remaining: 8.3s
16:	learn: 36.5144396	total: 494ms	remaining: 8.22s
17:	learn: 36.0168729	total: 521ms	remaining: 8.16s
18:	learn: 35.4748970	total: 549ms	remaining: 8.12s
19:	learn: 35.0390482	total: 586ms	remaining: 8.2s
20:	learn: 34.6776156	total: 622ms	remaining: 8.27s
21:	learn: 34.3978384	total: 650ms	remaining: 8.21s
22:	learn: 34.0289970	total: 678ms	remaining: 8.16s
23:	learn: 33.6138883	total: 704ms	remaining: 8.1s
24:	learn: 33.2279106	total: 730ms	remaining: 8.03s
25:	learn: 32.8252468	total: 757ms	remaining: 7.97s
26:	learn: 32.4666371	total: 785ms	remaining: 7.94s
27:	learn: 32.1644689	total: 817ms	remaining: 7.94s
28:	learn: 31.6892888	total: 853ms	remaining: 7.97s
29:	learn: 31.4013853	total: 880ms	remaining: 7.92s
30:	learn: 31.0918470	total: 906ms	remaining: 7.86s
31:	learn: 30.7382925	total: 933ms	remaining: 7.81s
32:	learn: 30.3837621	total: 959ms	remaining: 7.75s
33:	learn: 29.9818772	total: 992ms	remaining: 7.76s
34:	learn: 29.7173064	total: 1.02s	remaining: 7.74s
35:	learn: 29.2164083	total: 1.05s	remaining: 7.69s
36:	learn: 28.9131554	total: 1.08s	remaining: 7.71s
37:	learn: 28.5257233	total: 1.11s	remaining: 7.66s
38:	learn: 28.2965944	total: 1.14s	remaining: 7.62s
39:	learn: 28.0804622	total: 1.17s	remaining: 7.58s
40:	learn: 27.8304426	total: 1.19s	remaining: 7.54s
41:	learn: 27.4453684	total: 1.22s	remaining: 7.51s
42:	learn: 27.3017075	total: 1.25s	remaining: 7.49s
43:	learn: 27.0701323	total: 1.28s	remaining: 7.44s
44:	learn: 26.8649692	total: 1.3s	remaining: 7.4s
45:	learn: 26.6301705	total: 1.32s	remaining: 7.3s
46:	learn: 26.4341772	total: 1.35s	remaining: 7.26s
47:	learn: 26.2192154	total: 1.38s	remaining: 7.23s
48:	learn: 25.9631071	total: 1.4s	remaining: 7.19s
49:	learn: 25.5792340	total: 1.44s	remaining: 7.2s
50:	learn: 25.3916810	total: 1.47s	remaining: 7.17s
51:	learn: 25.2370365	total: 1.5s	remaining: 7.14s
52:	learn: 24.9965355	total: 1.52s	remaining: 7.11s
53:	learn: 24.8178278	total: 1.55s	remaining: 7.07s
54:	learn: 24.6443095	total: 1.59s	remaining: 7.07s
55:	learn: 24.4870683	total: 1.61s	remaining: 7.04s
56:	learn: 24.2978173	total: 1.65s	remaining: 7.02s
57:	learn: 24.1340740	total: 1.68s	remaining: 7s
58:	learn: 23.8586489	total: 1.7s	remaining: 6.96s
59:	learn: 23.6035925	total: 1.73s	remaining: 6.92s
60:	learn: 23.4530593	total: 1.76s	remaining: 6.88s
61:	learn: 23.2783421	total: 1.78s	remaining: 6.84s
62:	learn: 23.1030553	total: 1.82s	remaining: 6.84s
63:	learn: 22.9659704	total: 1.84s	remaining: 6.8s
64:	learn: 22.8283407	total: 1.88s	remaining: 6.8s
65:	learn: 22.7134955	total: 1.91s	remaining: 6.77s
66:	learn: 22.5782888	total: 1.94s	remaining: 6.74s
67:	learn: 22.4557438	total: 1.96s	remaining: 6.7s
68:	learn: 22.3316398	total: 1.99s	remaining: 6.67s
69:	learn: 22.1161650	total: 2.02s	remaining: 6.63s
70:	learn: 21.9806112	total: 2.04s	remaining: 6.6s
71:	learn: 21.8705364	total: 2.09s	remaining: 6.61s
72:	learn: 21.7450899	total: 2.12s	remaining: 6.58s
73:	learn: 21.5593132	total: 2.14s	remaining: 6.54s
74:	learn: 21.4206323	total: 2.17s	remaining: 6.51s
75:	learn: 21.2904965	total: 2.19s	remaining: 6.47s
76:	learn: 21.1898852	total: 2.22s	remaining: 6.44s
77:	learn: 21.0582226	total: 2.25s	remaining: 6.4s
78:	learn: 20.9414763	total: 2.28s	remaining: 6.37s
79:	learn: 20.7847655	total: 2.33s	remaining: 6.4s
80:	learn: 20.6413634	total: 2.35s	remaining: 6.36s
81:	learn: 20.5314598	total: 2.38s	remaining: 6.33s
82:	learn: 20.3298485	total: 2.41s	remaining: 6.3s
83:	learn: 20.2197693	total: 2.44s	remaining: 6.26s
84:	learn: 20.1021239	total: 2.46s	remaining: 6.23s
85:	learn: 20.0001932	total: 2.5s	remaining: 6.21s
86:	learn: 19.8813166	total: 2.52s	remaining: 6.18s
87:	learn: 19.7335638	total: 2.56s	remaining: 6.16s
88:	learn: 19.6116984	total: 2.58s	remaining: 6.13s
89:	learn: 19.4739468	total: 2.61s	remaining: 6.09s
90:	learn: 19.3561691	total: 2.64s	remaining: 6.06s
91:	learn: 19.2462168	total: 2.67s	remaining: 6.03s
92:	learn: 19.1423750	total: 2.7s	remaining: 6s
93:	learn: 19.0313643	total: 2.74s	remaining: 6.01s
94:	learn: 18.9323468	total: 2.77s	remaining: 5.98s
95:	learn: 18.8504682	total: 2.8s	remaining: 5.94s
96:	learn: 18.7831778	total: 2.83s	remaining: 5.93s
97:	learn: 18.6811943	total: 2.86s	remaining: 5.9s
98:	learn: 18.5908821	total: 2.89s	remaining: 5.86s
99:	learn: 18.4714725	total: 2.92s	remaining: 5.84s
100:	learn: 18.4186226	total: 2.95s	remaining: 5.81s
101:	learn: 18.3174294	total: 2.98s	remaining: 5.78s
102:	learn: 18.2499823	total: 3s	remaining: 5.74s
103:	learn: 18.1797568	total: 3.03s	remaining: 5.71s
104:	learn: 18.0633880	total: 3.06s	remaining: 5.69s
105:	learn: 17.9230666	total: 3.09s	remaining: 5.66s
106:	learn: 17.8255078	total: 3.12s	remaining: 5.63s
107:	learn: 17.7301999	total: 3.15s	remaining: 5.6s
108:	learn: 17.6643624	total: 3.19s	remaining: 5.58s
109:	learn: 17.5888284	total: 3.21s	remaining: 5.55s
110:	learn: 17.4829166	total: 3.24s	remaining: 5.52s
111:	learn: 17.3884998	total: 3.27s	remaining: 5.49s
112:	learn: 17.3190040	total: 3.3s	remaining: 5.47s
113:	learn: 17.2327089	total: 3.33s	remaining: 5.43s
114:	learn: 17.1647683	total: 3.36s	remaining: 5.4s
115:	learn: 17.0566172	total: 3.39s	remaining: 5.37s
116:	learn: 16.9678905	total: 3.42s	remaining: 5.34s
117:	learn: 16.8708649	total: 3.44s	remaining: 5.31s
118:	learn: 16.8044407	total: 3.47s	remaining: 5.28s
119:	learn: 16.7826952	total: 3.5s	remaining: 5.25s
120:	learn: 16.6904252	total: 3.52s	remaining: 5.21s
121:	learn: 16.6389060	total: 3.56s	remaining: 5.19s
122:	learn: 16.6175863	total: 3.59s	remaining: 5.16s
123:	learn: 16.5491464	total: 3.62s	remaining: 5.14s
124:	learn: 16.4907928	total: 3.65s	remaining: 5.11s
125:	learn: 16.4498651	total: 3.68s	remaining: 5.08s
126:	learn: 16.3775502	total: 3.71s	remaining: 5.05s
127:	learn: 16.3075622	total: 3.73s	remaining: 5.02s
128:	learn: 16.2141203	total: 3.76s	remaining: 4.99s
129:	learn: 16.1287920	total: 3.79s	remaining: 4.96s
130:	learn: 15.9776702	total: 3.83s	remaining: 4.93s
131:	learn: 15.8957114	total: 3.86s	remaining: 4.91s
132:	learn: 15.8623913	total: 3.88s	remaining: 4.88s
133:	learn: 15.7410770	total: 3.91s	remaining: 4.84s
134:	learn: 15.6800520	total: 3.94s	remaining: 4.81s
135:	learn: 15.6327751	total: 3.96s	remaining: 4.78s
136:	learn: 15.5499724	total: 3.99s	remaining: 4.75s
137:	learn: 15.4431979	total: 4.03s	remaining: 4.73s
138:	learn: 15.3542910	total: 4.06s	remaining: 4.7s
139:	learn: 15.3024922	total: 4.09s	remaining: 4.68s
140:	learn: 15.2729651	total: 4.12s	remaining: 4.65s
141:	learn: 15.1606911	total: 4.15s	remaining: 4.62s
142:	learn: 15.0979047	total: 4.17s	remaining: 4.58s
143:	learn: 15.0141377	total: 4.2s	remaining: 4.55s
144:	learn: 14.9689028	total: 4.23s	remaining: 4.52s
145:	learn: 14.8925843	total: 4.26s	remaining: 4.49s
146:	learn: 14.8587722	total: 4.3s	remaining: 4.47s
147:	learn: 14.8360363	total: 4.33s	remaining: 4.44s
148:	learn: 14.7676016	total: 4.35s	remaining: 4.41s
149:	learn: 14.6736810	total: 4.38s	remaining: 4.38s
150:	learn: 14.6261132	total: 4.41s	remaining: 4.35s
151:	learn: 14.5723176	total: 4.43s	remaining: 4.32s
152:	learn: 14.5100088	total: 4.46s	remaining: 4.29s
153:	learn: 14.4025427	total: 4.49s	remaining: 4.26s
154:	learn: 14.3282038	total: 4.54s	remaining: 4.24s
155:	learn: 14.2672601	total: 4.57s	remaining: 4.21s
156:	learn: 14.1558952	total: 4.59s	remaining: 4.18s
157:	learn: 14.0328502	total: 4.62s	remaining: 4.15s
158:	learn: 13.9769510	total: 4.65s	remaining: 4.12s
159:	learn: 13.9259386	total: 4.67s	remaining: 4.09s
160:	learn: 13.8712208	total: 4.71s	remaining: 4.07s
161:	learn: 13.8553696	total: 4.74s	remaining: 4.04s
162:	learn: 13.7500608	total: 4.77s	remaining: 4.01s
163:	learn: 13.7258160	total: 4.8s	remaining: 3.98s
164:	learn: 13.6125019	total: 4.83s	remaining: 3.95s
165:	learn: 13.5681577	total: 4.85s	remaining: 3.92s
166:	learn: 13.5101392	total: 4.88s	remaining: 3.89s
167:	learn: 13.4944170	total: 4.91s	remaining: 3.86s
168:	learn: 13.4758510	total: 4.94s	remaining: 3.83s
169:	learn: 13.4513818	total: 4.97s	remaining: 3.8s
170:	learn: 13.3378793	total: 5s	remaining: 3.77s
171:	learn: 13.2934120	total: 5.03s	remaining: 3.75s
172:	learn: 13.2442661	total: 5.06s	remaining: 3.71s
173:	learn: 13.1852300	total: 5.09s	remaining: 3.68s
174:	learn: 13.0772632	total: 5.11s	remaining: 3.65s
175:	learn: 13.0402354	total: 5.14s	remaining: 3.62s
176:	learn: 13.0047433	total: 5.18s	remaining: 3.6s
177:	learn: 12.9303834	total: 5.2s	remaining: 3.56s
178:	learn: 12.8598436	total: 5.23s	remaining: 3.53s
179:	learn: 12.7990665	total: 5.26s	remaining: 3.51s
180:	learn: 12.7095636	total: 5.29s	remaining: 3.48s
181:	learn: 12.6340644	total: 5.32s	remaining: 3.45s
182:	learn: 12.5621624	total: 5.35s	remaining: 3.42s
183:	learn: 12.5354249	total: 5.38s	remaining: 3.39s
184:	learn: 12.4829336	total: 5.41s	remaining: 3.36s
185:	learn: 12.4529388	total: 5.44s	remaining: 3.33s
186:	learn: 12.3788317	total: 5.46s	remaining: 3.3s
187:	learn: 12.3037316	total: 5.5s	remaining: 3.28s
188:	learn: 12.1983493	total: 5.53s	remaining: 3.25s
189:	learn: 12.1711675	total: 5.55s	remaining: 3.21s
190:	learn: 12.1217733	total: 5.58s	remaining: 3.19s
191:	learn: 12.0832600	total: 5.62s	remaining: 3.16s
192:	learn: 12.0127028	total: 5.64s	remaining: 3.13s
193:	learn: 11.9255354	total: 5.67s	remaining: 3.1s
194:	learn: 11.8908213	total: 5.7s	remaining: 3.07s
195:	learn: 11.8443328	total: 5.72s	remaining: 3.04s
196:	learn: 11.8103191	total: 5.76s	remaining: 3.01s
197:	learn: 11.7696031	total: 5.79s	remaining: 2.98s
198:	learn: 11.7200811	total: 5.81s	remaining: 2.95s
199:	learn: 11.6551205	total: 5.85s	remaining: 2.92s
200:	learn: 11.6238265	total: 5.88s	remaining: 2.9s
201:	learn: 11.5225634	total: 5.91s	remaining: 2.87s
202:	learn: 11.4468078	total: 5.93s	remaining: 2.83s
203:	learn: 11.4143074	total: 5.96s	remaining: 2.81s
204:	learn: 11.3831537	total: 6s	remaining: 2.78s
205:	learn: 11.3559117	total: 6.03s	remaining: 2.75s
206:	learn: 11.3453635	total: 6.05s	remaining: 2.72s
207:	learn: 11.3023110	total: 6.08s	remaining: 2.69s
208:	learn: 11.2751825	total: 6.11s	remaining: 2.66s
209:	learn: 11.2454377	total: 6.13s	remaining: 2.63s
210:	learn: 11.2300814	total: 6.16s	remaining: 2.6s
211:	learn: 11.1739504	total: 6.19s	remaining: 2.57s
212:	learn: 11.1388920	total: 6.22s	remaining: 2.54s
213:	learn: 11.0933003	total: 6.26s	remaining: 2.52s
214:	learn: 11.0336421	total: 6.29s	remaining: 2.49s
215:	learn: 11.0041887	total: 6.32s	remaining: 2.46s
216:	learn: 10.9756683	total: 6.34s	remaining: 2.43s
217:	learn: 10.9622324	total: 6.37s	remaining: 2.4s
218:	learn: 10.9400379	total: 6.4s	remaining: 2.37s
219:	learn: 10.9122171	total: 6.43s	remaining: 2.34s
220:	learn: 10.8702127	total: 6.46s	remaining: 2.31s
221:	learn: 10.8384354	total: 6.5s	remaining: 2.28s
222:	learn: 10.8064597	total: 6.52s	remaining: 2.25s
223:	learn: 10.7753840	total: 6.55s	remaining: 2.22s
224:	learn: 10.7500544	total: 6.58s	remaining: 2.19s
225:	learn: 10.7000854	total: 6.6s	remaining: 2.16s
226:	learn: 10.6788968	total: 6.63s	remaining: 2.13s
227:	learn: 10.6541308	total: 6.67s	remaining: 2.1s
228:	learn: 10.6163808	total: 6.7s	remaining: 2.08s
229:	learn: 10.5664491	total: 6.73s	remaining: 2.05s
230:	learn: 10.5384259	total: 6.76s	remaining: 2.02s
231:	learn: 10.5168722	total: 6.78s	remaining: 1.99s
232:	learn: 10.4880672	total: 6.81s	remaining: 1.96s
233:	learn: 10.4528880	total: 6.84s	remaining: 1.93s
234:	learn: 10.4358848	total: 6.87s	remaining: 1.9s
235:	learn: 10.4043764	total: 6.9s	remaining: 1.87s
236:	learn: 10.3835177	total: 6.93s	remaining: 1.84s
237:	learn: 10.3564621	total: 6.96s	remaining: 1.81s
238:	learn: 10.3300698	total: 6.99s	remaining: 1.78s
239:	learn: 10.3072404	total: 7.02s	remaining: 1.75s
240:	learn: 10.2885220	total: 7.04s	remaining: 1.72s
241:	learn: 10.2801250	total: 7.07s	remaining: 1.69s
242:	learn: 10.2598176	total: 7.1s	remaining: 1.67s
243:	learn: 10.2300900	total: 7.14s	remaining: 1.64s
244:	learn: 10.2013001	total: 7.17s	remaining: 1.61s
245:	learn: 10.1581217	total: 7.19s	remaining: 1.58s
246:	learn: 10.1499441	total: 7.23s	remaining: 1.55s
247:	learn: 10.1216778	total: 7.25s	remaining: 1.52s
248:	learn: 10.0802136	total: 7.28s	remaining: 1.49s
249:	learn: 10.0644908	total: 7.31s	remaining: 1.46s
250:	learn: 10.0271888	total: 7.34s	remaining: 1.43s
251:	learn: 9.9585656	total: 7.37s	remaining: 1.4s
252:	learn: 9.9156424	total: 7.4s	remaining: 1.37s
253:	learn: 9.9015845	total: 7.42s	remaining: 1.34s
254:	learn: 9.8802631	total: 7.46s	remaining: 1.32s
255:	learn: 9.8637488	total: 7.49s	remaining: 1.29s
256:	learn: 9.8431359	total: 7.51s	remaining: 1.26s
257:	learn: 9.8100809	total: 7.55s	remaining: 1.23s
258:	learn: 9.7856290	total: 7.58s	remaining: 1.2s
259:	learn: 9.7684665	total: 7.61s	remaining: 1.17s
260:	learn: 9.7491274	total: 7.64s	remaining: 1.14s
261:	learn: 9.7290952	total: 7.66s	remaining: 1.11s
262:	learn: 9.6988988	total: 7.69s	remaining: 1.08s
263:	learn: 9.6731295	total: 7.73s	remaining: 1.05s
264:	learn: 9.6511532	total: 7.76s	remaining: 1.02s
265:	learn: 9.6215242	total: 7.79s	remaining: 996ms
266:	learn: 9.6028004	total: 7.82s	remaining: 966ms
267:	learn: 9.5849636	total: 7.84s	remaining: 936ms
268:	learn: 9.5537664	total: 7.87s	remaining: 907ms
269:	learn: 9.5330605	total: 7.9s	remaining: 877ms
270:	learn: 9.5181912	total: 7.92s	remaining: 848ms
271:	learn: 9.5123758	total: 7.97s	remaining: 820ms
272:	learn: 9.4832216	total: 8s	remaining: 791ms
273:	learn: 9.4638778	total: 8.02s	remaining: 761ms
274:	learn: 9.4456890	total: 8.05s	remaining: 732ms
275:	learn: 9.4163159	total: 8.08s	remaining: 702ms
276:	learn: 9.3823442	total: 8.1s	remaining: 673ms
277:	learn: 9.3549677	total: 8.14s	remaining: 644ms
278:	learn: 9.3386790	total: 8.17s	remaining: 615ms
279:	learn: 9.3273180	total: 8.2s	remaining: 586ms
280:	learn: 9.2861700	total: 8.23s	remaining: 556ms
281:	learn: 9.2564421	total: 8.25s	remaining: 527ms
282:	learn: 9.2362960	total: 8.28s	remaining: 497ms
283:	learn: 9.2213087	total: 8.31s	remaining: 468ms
284:	learn: 9.2137366	total: 8.33s	remaining: 439ms
285:	learn: 9.2036812	total: 8.37s	remaining: 410ms
286:	learn: 9.1880212	total: 8.4s	remaining: 380ms
287:	learn: 9.1753952	total: 8.43s	remaining: 351ms
288:	learn: 9.1502121	total: 8.46s	remaining: 322ms
289:	learn: 9.1346178	total: 8.49s	remaining: 293ms
290:	learn: 9.1221911	total: 8.52s	remaining: 263ms
291:	learn: 9.0950561	total: 8.54s	remaining: 234ms
292:	learn: 9.0742575	total: 8.57s	remaining: 205ms
293:	learn: 9.0466144	total: 8.6s	remaining: 176ms
294:	learn: 8.9886202	total: 8.63s	remaining: 146ms
295:	learn: 8.9467069	total: 8.66s	remaining: 117ms
296:	learn: 8.9265029	total: 8.69s	remaining: 87.8ms
297:	learn: 8.8995921	total: 8.72s	remaining: 58.5ms
298:	learn: 8.8813384	total: 8.74s	remaining: 29.2ms
299:	learn: 8.8736256	total: 8.77s	remaining: 0us
0:	learn: 46.8188846	total: 26.9ms	remaining: 8.04s
1:	learn: 45.9726402	total: 54.2ms	remaining: 8.08s
2:	learn: 45.2144460	total: 79ms	remaining: 7.83s
3:	learn: 44.2563351	total: 103ms	remaining: 7.62s
4:	learn: 43.5408994	total: 127ms	remaining: 7.49s
5:	learn: 42.8364810	total: 153ms	remaining: 7.47s
6:	learn: 42.0153804	total: 185ms	remaining: 7.73s
7:	learn: 41.5473671	total: 212ms	remaining: 7.72s
8:	learn: 40.7744756	total: 238ms	remaining: 7.68s
9:	learn: 40.1702554	total: 263ms	remaining: 7.63s
10:	learn: 39.4636842	total: 288ms	remaining: 7.56s
11:	learn: 38.8831049	total: 302ms	remaining: 7.24s
12:	learn: 38.5197723	total: 326ms	remaining: 7.21s
13:	learn: 38.1990585	total: 351ms	remaining: 7.17s
14:	learn: 37.6657989	total: 376ms	remaining: 7.15s
15:	learn: 37.2969732	total: 412ms	remaining: 7.32s
16:	learn: 36.8221350	total: 440ms	remaining: 7.33s
17:	learn: 36.2123369	total: 465ms	remaining: 7.29s
18:	learn: 35.8755271	total: 492ms	remaining: 7.27s
19:	learn: 35.4739707	total: 516ms	remaining: 7.22s
20:	learn: 35.0012472	total: 543ms	remaining: 7.21s
21:	learn: 34.6477631	total: 567ms	remaining: 7.17s
22:	learn: 34.2247055	total: 593ms	remaining: 7.15s
23:	learn: 33.8047150	total: 626ms	remaining: 7.2s
24:	learn: 33.3972078	total: 653ms	remaining: 7.19s
25:	learn: 32.8076440	total: 678ms	remaining: 7.14s
26:	learn: 32.4957574	total: 703ms	remaining: 7.11s
27:	learn: 32.1823910	total: 729ms	remaining: 7.08s
28:	learn: 31.8761156	total: 754ms	remaining: 7.04s
29:	learn: 31.6118984	total: 778ms	remaining: 7.01s
30:	learn: 31.2041248	total: 804ms	remaining: 6.98s
31:	learn: 30.9798718	total: 832ms	remaining: 6.97s
32:	learn: 30.6632137	total: 867ms	remaining: 7.01s
33:	learn: 30.3572185	total: 892ms	remaining: 6.98s
34:	learn: 30.0045459	total: 919ms	remaining: 6.96s
35:	learn: 29.7559980	total: 945ms	remaining: 6.93s
36:	learn: 29.3862349	total: 971ms	remaining: 6.9s
37:	learn: 29.1066177	total: 996ms	remaining: 6.87s
38:	learn: 28.8253904	total: 1.02s	remaining: 6.84s
39:	learn: 28.4917320	total: 1.05s	remaining: 6.81s
40:	learn: 28.2730169	total: 1.08s	remaining: 6.82s
41:	learn: 28.0652338	total: 1.1s	remaining: 6.79s
42:	learn: 27.8025307	total: 1.13s	remaining: 6.75s
43:	learn: 27.5627117	total: 1.15s	remaining: 6.72s
44:	learn: 27.3217632	total: 1.18s	remaining: 6.68s
45:	learn: 27.0112958	total: 1.21s	remaining: 6.66s
46:	learn: 26.8300808	total: 1.23s	remaining: 6.63s
47:	learn: 26.5816136	total: 1.26s	remaining: 6.61s
48:	learn: 26.3838749	total: 1.29s	remaining: 6.63s
49:	learn: 26.2191374	total: 1.32s	remaining: 6.6s
50:	learn: 26.0298048	total: 1.35s	remaining: 6.57s
51:	learn: 25.8685966	total: 1.37s	remaining: 6.55s
52:	learn: 25.5853885	total: 1.4s	remaining: 6.52s
53:	learn: 25.2325006	total: 1.43s	remaining: 6.49s
54:	learn: 25.0294895	total: 1.45s	remaining: 6.46s
55:	learn: 24.8123194	total: 1.48s	remaining: 6.43s
56:	learn: 24.6175769	total: 1.5s	remaining: 6.41s
57:	learn: 24.4799104	total: 1.53s	remaining: 6.4s
58:	learn: 24.2874293	total: 1.56s	remaining: 6.37s
59:	learn: 24.0996038	total: 1.58s	remaining: 6.34s
60:	learn: 23.8568310	total: 1.61s	remaining: 6.31s
61:	learn: 23.6508912	total: 1.64s	remaining: 6.28s
62:	learn: 23.4201097	total: 1.66s	remaining: 6.24s
63:	learn: 23.1941561	total: 1.69s	remaining: 6.21s
64:	learn: 23.0619226	total: 1.72s	remaining: 6.21s
65:	learn: 22.9049921	total: 1.75s	remaining: 6.19s
66:	learn: 22.7833057	total: 1.77s	remaining: 6.16s
67:	learn: 22.6428922	total: 1.8s	remaining: 6.13s
68:	learn: 22.4738494	total: 1.82s	remaining: 6.1s
69:	learn: 22.3126837	total: 1.85s	remaining: 6.07s
70:	learn: 22.1934569	total: 1.87s	remaining: 6.04s
71:	learn: 21.9921513	total: 1.9s	remaining: 6.01s
72:	learn: 21.7966100	total: 1.92s	remaining: 5.98s
73:	learn: 21.6703669	total: 1.95s	remaining: 5.97s
74:	learn: 21.5517108	total: 1.98s	remaining: 5.94s
75:	learn: 21.3795499	total: 2s	remaining: 5.91s
76:	learn: 21.2321877	total: 2.03s	remaining: 5.88s
77:	learn: 21.0921581	total: 2.06s	remaining: 5.85s
78:	learn: 20.9204877	total: 2.08s	remaining: 5.82s
79:	learn: 20.7078986	total: 2.1s	remaining: 5.79s
80:	learn: 20.6069210	total: 2.13s	remaining: 5.76s
81:	learn: 20.3718639	total: 2.15s	remaining: 5.73s
82:	learn: 20.2660046	total: 2.19s	remaining: 5.72s
83:	learn: 20.1453571	total: 2.21s	remaining: 5.69s
84:	learn: 20.0303912	total: 2.24s	remaining: 5.66s
85:	learn: 19.9530417	total: 2.26s	remaining: 5.63s
86:	learn: 19.8719239	total: 2.29s	remaining: 5.6s
87:	learn: 19.8051193	total: 2.31s	remaining: 5.57s
88:	learn: 19.6390791	total: 2.34s	remaining: 5.54s
89:	learn: 19.5163125	total: 2.34s	remaining: 5.46s
90:	learn: 19.3820098	total: 2.36s	remaining: 5.43s
91:	learn: 19.2634584	total: 2.4s	remaining: 5.41s
92:	learn: 19.1877570	total: 2.42s	remaining: 5.39s
93:	learn: 19.1136222	total: 2.45s	remaining: 5.36s
94:	learn: 19.0378846	total: 2.47s	remaining: 5.33s
95:	learn: 18.9699092	total: 2.5s	remaining: 5.3s
96:	learn: 18.8750815	total: 2.52s	remaining: 5.27s
97:	learn: 18.7851544	total: 2.54s	remaining: 5.24s
98:	learn: 18.6886359	total: 2.57s	remaining: 5.21s
99:	learn: 18.5967562	total: 2.59s	remaining: 5.18s
100:	learn: 18.5134464	total: 2.63s	remaining: 5.17s
101:	learn: 18.4449133	total: 2.65s	remaining: 5.15s
102:	learn: 18.3604967	total: 2.67s	remaining: 5.12s
103:	learn: 18.2256969	total: 2.7s	remaining: 5.09s
104:	learn: 18.1523158	total: 2.72s	remaining: 5.06s
105:	learn: 18.0374485	total: 2.75s	remaining: 5.03s
106:	learn: 17.9731649	total: 2.77s	remaining: 5s
107:	learn: 17.9251416	total: 2.8s	remaining: 4.97s
108:	learn: 17.8617656	total: 2.82s	remaining: 4.95s
109:	learn: 17.7727167	total: 2.85s	remaining: 4.92s
110:	learn: 17.6826822	total: 2.87s	remaining: 4.89s
111:	learn: 17.5769208	total: 2.9s	remaining: 4.87s
112:	learn: 17.4884222	total: 2.92s	remaining: 4.84s
113:	learn: 17.3765888	total: 2.95s	remaining: 4.81s
114:	learn: 17.3037030	total: 2.97s	remaining: 4.78s
115:	learn: 17.2153950	total: 3s	remaining: 4.75s
116:	learn: 17.1490540	total: 3.02s	remaining: 4.72s
117:	learn: 17.0634815	total: 3.05s	remaining: 4.7s
118:	learn: 16.9513537	total: 3.08s	remaining: 4.68s
119:	learn: 16.8224657	total: 3.1s	remaining: 4.66s
120:	learn: 16.7342682	total: 3.13s	remaining: 4.63s
121:	learn: 16.6438712	total: 3.15s	remaining: 4.6s
122:	learn: 16.5473010	total: 3.18s	remaining: 4.57s
123:	learn: 16.4734305	total: 3.2s	remaining: 4.55s
124:	learn: 16.3442257	total: 3.23s	remaining: 4.52s
125:	learn: 16.2501040	total: 3.25s	remaining: 4.5s
126:	learn: 16.1413869	total: 3.28s	remaining: 4.47s
127:	learn: 16.0650386	total: 3.31s	remaining: 4.45s
128:	learn: 15.9654002	total: 3.33s	remaining: 4.42s
129:	learn: 15.9016632	total: 3.36s	remaining: 4.39s
130:	learn: 15.8386094	total: 3.38s	remaining: 4.36s
131:	learn: 15.7695128	total: 3.4s	remaining: 4.33s
132:	learn: 15.6863810	total: 3.43s	remaining: 4.3s
133:	learn: 15.6014453	total: 3.45s	remaining: 4.28s
134:	learn: 15.5533660	total: 3.49s	remaining: 4.26s
135:	learn: 15.4234281	total: 3.51s	remaining: 4.24s
136:	learn: 15.3971004	total: 3.54s	remaining: 4.21s
137:	learn: 15.3398975	total: 3.56s	remaining: 4.18s
138:	learn: 15.2689760	total: 3.59s	remaining: 4.15s
139:	learn: 15.1651925	total: 3.61s	remaining: 4.13s
140:	learn: 15.1125683	total: 3.63s	remaining: 4.1s
141:	learn: 15.0573442	total: 3.67s	remaining: 4.08s
142:	learn: 15.0129880	total: 3.7s	remaining: 4.06s
143:	learn: 14.9597237	total: 3.73s	remaining: 4.04s
144:	learn: 14.9235224	total: 3.75s	remaining: 4.01s
145:	learn: 14.8333558	total: 3.78s	remaining: 3.99s
146:	learn: 14.7273903	total: 3.81s	remaining: 3.97s
147:	learn: 14.6622611	total: 3.84s	remaining: 3.94s
148:	learn: 14.5908471	total: 3.87s	remaining: 3.92s
149:	learn: 14.5076303	total: 3.92s	remaining: 3.92s
150:	learn: 14.4133074	total: 3.95s	remaining: 3.9s
151:	learn: 14.3479884	total: 3.98s	remaining: 3.88s
152:	learn: 14.2884168	total: 4.01s	remaining: 3.85s
153:	learn: 14.2238756	total: 4.04s	remaining: 3.83s
154:	learn: 14.1598526	total: 4.06s	remaining: 3.8s
155:	learn: 14.1006242	total: 4.1s	remaining: 3.79s
156:	learn: 14.0116182	total: 4.13s	remaining: 3.76s
157:	learn: 13.9456796	total: 4.16s	remaining: 3.74s
158:	learn: 13.8579899	total: 4.19s	remaining: 3.71s
159:	learn: 13.8094183	total: 4.21s	remaining: 3.69s
160:	learn: 13.6558280	total: 4.24s	remaining: 3.66s
161:	learn: 13.5837377	total: 4.27s	remaining: 3.63s
162:	learn: 13.5105749	total: 4.29s	remaining: 3.61s
163:	learn: 13.3959486	total: 4.33s	remaining: 3.59s
164:	learn: 13.3427701	total: 4.37s	remaining: 3.57s
165:	learn: 13.2742960	total: 4.39s	remaining: 3.55s
166:	learn: 13.2232946	total: 4.42s	remaining: 3.52s
167:	learn: 13.1639434	total: 4.45s	remaining: 3.5s
168:	learn: 13.1001998	total: 4.48s	remaining: 3.47s
169:	learn: 13.0187776	total: 4.5s	remaining: 3.44s
170:	learn: 12.9284509	total: 4.53s	remaining: 3.42s
171:	learn: 12.8564085	total: 4.56s	remaining: 3.39s
172:	learn: 12.7786756	total: 4.6s	remaining: 3.38s
173:	learn: 12.7404900	total: 4.63s	remaining: 3.35s
174:	learn: 12.6844545	total: 4.65s	remaining: 3.32s
175:	learn: 12.6021043	total: 4.68s	remaining: 3.29s
176:	learn: 12.5809817	total: 4.7s	remaining: 3.27s
177:	learn: 12.5380271	total: 4.73s	remaining: 3.24s
178:	learn: 12.5044811	total: 4.76s	remaining: 3.22s
179:	learn: 12.3824039	total: 4.78s	remaining: 3.19s
180:	learn: 12.3163074	total: 4.83s	remaining: 3.17s
181:	learn: 12.2260642	total: 4.85s	remaining: 3.15s
182:	learn: 12.1962262	total: 4.88s	remaining: 3.12s
183:	learn: 12.1075043	total: 4.91s	remaining: 3.1s
184:	learn: 12.0299051	total: 4.94s	remaining: 3.07s
185:	learn: 11.9750127	total: 4.96s	remaining: 3.04s
186:	learn: 11.9007112	total: 4.99s	remaining: 3.02s
187:	learn: 11.8169703	total: 5.02s	remaining: 2.99s
188:	learn: 11.7451722	total: 5.06s	remaining: 2.97s
189:	learn: 11.6844013	total: 5.08s	remaining: 2.94s
190:	learn: 11.5844322	total: 5.11s	remaining: 2.92s
191:	learn: 11.5389707	total: 5.14s	remaining: 2.89s
192:	learn: 11.4989050	total: 5.16s	remaining: 2.86s
193:	learn: 11.4305771	total: 5.19s	remaining: 2.84s
194:	learn: 11.3188820	total: 5.22s	remaining: 2.81s
195:	learn: 11.2915156	total: 5.26s	remaining: 2.79s
196:	learn: 11.2329580	total: 5.29s	remaining: 2.77s
197:	learn: 11.1759941	total: 5.32s	remaining: 2.74s
198:	learn: 11.1562433	total: 5.35s	remaining: 2.72s
199:	learn: 11.1118627	total: 5.38s	remaining: 2.69s
200:	learn: 11.0908712	total: 5.41s	remaining: 2.66s
201:	learn: 11.0365972	total: 5.43s	remaining: 2.64s
202:	learn: 10.9633932	total: 5.47s	remaining: 2.61s
203:	learn: 10.8837891	total: 5.49s	remaining: 2.58s
204:	learn: 10.8038584	total: 5.52s	remaining: 2.56s
205:	learn: 10.7729034	total: 5.55s	remaining: 2.53s
206:	learn: 10.7289468	total: 5.58s	remaining: 2.51s
207:	learn: 10.6734340	total: 5.61s	remaining: 2.48s
208:	learn: 10.6482350	total: 5.63s	remaining: 2.45s
209:	learn: 10.5975506	total: 5.66s	remaining: 2.43s
210:	learn: 10.5528228	total: 5.7s	remaining: 2.4s
211:	learn: 10.5370360	total: 5.72s	remaining: 2.38s
212:	learn: 10.5230215	total: 5.75s	remaining: 2.35s
213:	learn: 10.4857244	total: 5.79s	remaining: 2.33s
214:	learn: 10.4212276	total: 5.81s	remaining: 2.3s
215:	learn: 10.4085529	total: 5.84s	remaining: 2.27s
216:	learn: 10.3355719	total: 5.87s	remaining: 2.24s
217:	learn: 10.2785284	total: 5.9s	remaining: 2.22s
218:	learn: 10.2125565	total: 5.93s	remaining: 2.19s
219:	learn: 10.1797782	total: 5.96s	remaining: 2.17s
220:	learn: 10.1530157	total: 5.98s	remaining: 2.14s
221:	learn: 10.1300360	total: 6.01s	remaining: 2.11s
222:	learn: 10.1168807	total: 6.04s	remaining: 2.09s
223:	learn: 10.0969154	total: 6.07s	remaining: 2.06s
224:	learn: 10.0800220	total: 6.1s	remaining: 2.03s
225:	learn: 10.0495195	total: 6.14s	remaining: 2.01s
226:	learn: 10.0130864	total: 6.17s	remaining: 1.98s
227:	learn: 9.9733051	total: 6.19s	remaining: 1.96s
228:	learn: 9.9186624	total: 6.22s	remaining: 1.93s
229:	learn: 9.8408517	total: 6.25s	remaining: 1.9s
230:	learn: 9.8020626	total: 6.28s	remaining: 1.88s
231:	learn: 9.7754447	total: 6.32s	remaining: 1.85s
232:	learn: 9.7642804	total: 6.34s	remaining: 1.82s
233:	learn: 9.7368568	total: 6.37s	remaining: 1.8s
234:	learn: 9.7056387	total: 6.4s	remaining: 1.77s
235:	learn: 9.6936392	total: 6.43s	remaining: 1.74s
236:	learn: 9.6470411	total: 6.45s	remaining: 1.72s
237:	learn: 9.5906698	total: 6.48s	remaining: 1.69s
238:	learn: 9.5416290	total: 6.51s	remaining: 1.66s
239:	learn: 9.5255228	total: 6.55s	remaining: 1.64s
240:	learn: 9.4529465	total: 6.58s	remaining: 1.61s
241:	learn: 9.4106807	total: 6.6s	remaining: 1.58s
242:	learn: 9.3728828	total: 6.63s	remaining: 1.55s
243:	learn: 9.3399456	total: 6.66s	remaining: 1.53s
244:	learn: 9.3118951	total: 6.69s	remaining: 1.5s
245:	learn: 9.3005486	total: 6.72s	remaining: 1.47s
246:	learn: 9.2903549	total: 6.75s	remaining: 1.45s
247:	learn: 9.2453982	total: 6.78s	remaining: 1.42s
248:	learn: 9.2340791	total: 6.81s	remaining: 1.39s
249:	learn: 9.2022569	total: 6.83s	remaining: 1.37s
250:	learn: 9.1782703	total: 6.86s	remaining: 1.34s
251:	learn: 9.1383043	total: 6.89s	remaining: 1.31s
252:	learn: 9.1021623	total: 6.92s	remaining: 1.28s
253:	learn: 9.0892727	total: 6.95s	remaining: 1.26s
254:	learn: 9.0521468	total: 6.98s	remaining: 1.23s
255:	learn: 9.0384933	total: 7.01s	remaining: 1.21s
256:	learn: 9.0063168	total: 7.04s	remaining: 1.18s
257:	learn: 8.9956277	total: 7.07s	remaining: 1.15s
258:	learn: 8.9496921	total: 7.09s	remaining: 1.12s
259:	learn: 8.9036568	total: 7.12s	remaining: 1.09s
260:	learn: 8.8936773	total: 7.15s	remaining: 1.07s
261:	learn: 8.8516187	total: 7.18s	remaining: 1.04s
262:	learn: 8.8136929	total: 7.21s	remaining: 1.01s
263:	learn: 8.7857931	total: 7.24s	remaining: 987ms
264:	learn: 8.7542759	total: 7.27s	remaining: 961ms
265:	learn: 8.7388965	total: 7.3s	remaining: 933ms
266:	learn: 8.7298188	total: 7.33s	remaining: 906ms
267:	learn: 8.7213757	total: 7.36s	remaining: 879ms
268:	learn: 8.6906438	total: 7.4s	remaining: 852ms
269:	learn: 8.6693053	total: 7.42s	remaining: 825ms
270:	learn: 8.6470936	total: 7.45s	remaining: 797ms
271:	learn: 8.6096396	total: 7.48s	remaining: 770ms
272:	learn: 8.5746539	total: 7.51s	remaining: 743ms
273:	learn: 8.5560630	total: 7.54s	remaining: 715ms
274:	learn: 8.5399246	total: 7.57s	remaining: 688ms
275:	learn: 8.4986755	total: 7.6s	remaining: 661ms
276:	learn: 8.4692322	total: 7.63s	remaining: 633ms
277:	learn: 8.4447901	total: 7.65s	remaining: 606ms
278:	learn: 8.4280272	total: 7.68s	remaining: 578ms
279:	learn: 8.3947119	total: 7.71s	remaining: 550ms
280:	learn: 8.3554975	total: 7.74s	remaining: 523ms
281:	learn: 8.3221566	total: 7.77s	remaining: 496ms
282:	learn: 8.3131827	total: 7.79s	remaining: 468ms
283:	learn: 8.2891313	total: 7.83s	remaining: 441ms
284:	learn: 8.2839105	total: 7.86s	remaining: 413ms
285:	learn: 8.2757450	total: 7.88s	remaining: 386ms
286:	learn: 8.2388411	total: 7.91s	remaining: 358ms
287:	learn: 8.2074603	total: 7.94s	remaining: 331ms
288:	learn: 8.1701839	total: 7.96s	remaining: 303ms
289:	learn: 8.1498646	total: 8s	remaining: 276ms
290:	learn: 8.1195237	total: 8.03s	remaining: 248ms
291:	learn: 8.0995089	total: 8.06s	remaining: 221ms
292:	learn: 8.0775287	total: 8.09s	remaining: 193ms
293:	learn: 8.0527267	total: 8.11s	remaining: 166ms
294:	learn: 8.0201604	total: 8.14s	remaining: 138ms
295:	learn: 8.0106207	total: 8.17s	remaining: 110ms
296:	learn: 7.9693660	total: 8.19s	remaining: 82.8ms
297:	learn: 7.9463481	total: 8.23s	remaining: 55.2ms
298:	learn: 7.9254902	total: 8.26s	remaining: 27.6ms
299:	learn: 7.9210391	total: 8.28s	remaining: 0us
0:	learn: 27.6038312	total: 3.86ms	remaining: 382ms
1:	learn: 27.2191116	total: 7.41ms	remaining: 363ms
2:	learn: 26.7865547	total: 10.6ms	remaining: 342ms
3:	learn: 26.3714913	total: 11.9ms	remaining: 285ms
4:	learn: 26.0332483	total: 15ms	remaining: 286ms
5:	learn: 25.7050562	total: 18.5ms	remaining: 290ms
6:	learn: 25.4785422	total: 22.2ms	remaining: 295ms
7:	learn: 25.1441404	total: 25.6ms	remaining: 295ms
8:	learn: 24.9157842	total: 28.9ms	remaining: 292ms
9:	learn: 24.6209216	total: 32.2ms	remaining: 290ms
10:	learn: 24.3693387	total: 35.6ms	remaining: 288ms
11:	learn: 24.0303062	total: 39.1ms	remaining: 287ms
12:	learn: 23.8077285	total: 42.7ms	remaining: 286ms
13:	learn: 23.5654890	total: 46ms	remaining: 283ms
14:	learn: 23.2762076	total: 49.5ms	remaining: 281ms
15:	learn: 23.0977209	total: 53.2ms	remaining: 279ms
16:	learn: 22.8949063	total: 57ms	remaining: 278ms
17:	learn: 22.6504386	total: 60.7ms	remaining: 276ms
18:	learn: 22.4150811	total: 68.5ms	remaining: 292ms
19:	learn: 22.2343263	total: 74.8ms	remaining: 299ms
20:	learn: 21.9985519	total: 80.4ms	remaining: 302ms
21:	learn: 21.8211155	total: 85ms	remaining: 301ms
22:	learn: 21.6185427	total: 89.3ms	remaining: 299ms
23:	learn: 21.4645254	total: 93.5ms	remaining: 296ms
24:	learn: 21.2803565	total: 96.9ms	remaining: 291ms
25:	learn: 21.1111025	total: 100ms	remaining: 285ms
26:	learn: 20.9023051	total: 104ms	remaining: 280ms
27:	learn: 20.7130279	total: 107ms	remaining: 275ms
28:	learn: 20.5558010	total: 110ms	remaining: 270ms
29:	learn: 20.4464255	total: 114ms	remaining: 265ms
30:	learn: 20.3294764	total: 117ms	remaining: 260ms
31:	learn: 20.1622925	total: 120ms	remaining: 255ms
32:	learn: 19.9886267	total: 123ms	remaining: 251ms
33:	learn: 19.8595988	total: 127ms	remaining: 247ms
34:	learn: 19.7827876	total: 128ms	remaining: 238ms
35:	learn: 19.5868251	total: 131ms	remaining: 233ms
36:	learn: 19.4476465	total: 134ms	remaining: 229ms
37:	learn: 19.3315910	total: 137ms	remaining: 224ms
38:	learn: 19.2566315	total: 141ms	remaining: 220ms
39:	learn: 19.1522400	total: 144ms	remaining: 216ms
40:	learn: 18.9999212	total: 148ms	remaining: 213ms
41:	learn: 18.9096209	total: 152ms	remaining: 209ms
42:	learn: 18.7819625	total: 155ms	remaining: 205ms
43:	learn: 18.6535325	total: 158ms	remaining: 201ms
44:	learn: 18.5551323	total: 162ms	remaining: 198ms
45:	learn: 18.4321772	total: 166ms	remaining: 195ms
46:	learn: 18.3242799	total: 169ms	remaining: 191ms
47:	learn: 18.1901748	total: 173ms	remaining: 187ms
48:	learn: 18.1005644	total: 176ms	remaining: 183ms
49:	learn: 18.0312671	total: 180ms	remaining: 180ms
50:	learn: 17.9252161	total: 183ms	remaining: 176ms
51:	learn: 17.8070959	total: 187ms	remaining: 173ms
52:	learn: 17.7176812	total: 190ms	remaining: 169ms
53:	learn: 17.6065056	total: 194ms	remaining: 165ms
54:	learn: 17.5082035	total: 197ms	remaining: 161ms
55:	learn: 17.4057287	total: 201ms	remaining: 158ms
56:	learn: 17.3112897	total: 205ms	remaining: 155ms
57:	learn: 17.2448274	total: 209ms	remaining: 151ms
58:	learn: 17.1495043	total: 212ms	remaining: 148ms
59:	learn: 17.0639515	total: 216ms	remaining: 144ms
60:	learn: 16.9851402	total: 220ms	remaining: 141ms
61:	learn: 16.9008378	total: 224ms	remaining: 137ms
62:	learn: 16.8235050	total: 227ms	remaining: 134ms
63:	learn: 16.7267315	total: 231ms	remaining: 130ms
64:	learn: 16.6342497	total: 235ms	remaining: 127ms
65:	learn: 16.5662557	total: 239ms	remaining: 123ms
66:	learn: 16.5209506	total: 242ms	remaining: 119ms
67:	learn: 16.4807294	total: 244ms	remaining: 115ms
68:	learn: 16.3985778	total: 248ms	remaining: 111ms
69:	learn: 16.3027532	total: 251ms	remaining: 108ms
70:	learn: 16.2549987	total: 255ms	remaining: 104ms
71:	learn: 16.2000642	total: 259ms	remaining: 101ms
72:	learn: 16.1382821	total: 267ms	remaining: 98.7ms
73:	learn: 16.0565514	total: 274ms	remaining: 96.1ms
74:	learn: 15.9855376	total: 281ms	remaining: 93.8ms
75:	learn: 15.9391274	total: 287ms	remaining: 90.5ms
76:	learn: 15.8829964	total: 293ms	remaining: 87.5ms
77:	learn: 15.8161276	total: 297ms	remaining: 83.7ms
78:	learn: 15.7514329	total: 301ms	remaining: 80ms
79:	learn: 15.6746307	total: 305ms	remaining: 76.2ms
80:	learn: 15.6170381	total: 309ms	remaining: 72.4ms
81:	learn: 15.5697030	total: 313ms	remaining: 68.6ms
82:	learn: 15.5068721	total: 316ms	remaining: 64.8ms
83:	learn: 15.4500349	total: 320ms	remaining: 61ms
84:	learn: 15.3971554	total: 324ms	remaining: 57.2ms
85:	learn: 15.3656106	total: 328ms	remaining: 53.4ms
86:	learn: 15.3224902	total: 332ms	remaining: 49.6ms
87:	learn: 15.2771205	total: 336ms	remaining: 45.8ms
88:	learn: 15.2317846	total: 340ms	remaining: 42ms
89:	learn: 15.1742186	total: 344ms	remaining: 38.2ms
90:	learn: 15.1079571	total: 348ms	remaining: 34.4ms
91:	learn: 15.0620421	total: 353ms	remaining: 30.7ms
92:	learn: 14.9934851	total: 356ms	remaining: 26.8ms
93:	learn: 14.9356945	total: 360ms	remaining: 23ms
94:	learn: 14.8958510	total: 364ms	remaining: 19.1ms
95:	learn: 14.8374494	total: 367ms	remaining: 15.3ms
96:	learn: 14.7840510	total: 371ms	remaining: 11.5ms
97:	learn: 14.7352430	total: 375ms	remaining: 7.64ms
98:	learn: 14.6793257	total: 378ms	remaining: 3.82ms
99:	learn: 14.6300647	total: 381ms	remaining: 0us
0:	learn: 43.1421736	total: 3.76ms	remaining: 372ms
1:	learn: 42.5118728	total: 7.27ms	remaining: 356ms
2:	learn: 41.6410174	total: 10.7ms	remaining: 346ms
3:	learn: 41.0674171	total: 14.3ms	remaining: 343ms
4:	learn: 40.3172071	total: 18.3ms	remaining: 347ms
5:	learn: 39.6299071	total: 21.6ms	remaining: 339ms
6:	learn: 39.0141840	total: 24.9ms	remaining: 331ms
7:	learn: 38.2304564	total: 28.5ms	remaining: 328ms
8:	learn: 37.7031082	total: 32.5ms	remaining: 329ms
9:	learn: 37.1332893	total: 36.2ms	remaining: 326ms
10:	learn: 36.6806704	total: 39.9ms	remaining: 323ms
11:	learn: 35.9706978	total: 43.2ms	remaining: 317ms
12:	learn: 35.5378401	total: 47.1ms	remaining: 315ms
13:	learn: 34.9165313	total: 51.1ms	remaining: 314ms
14:	learn: 34.4102835	total: 55.2ms	remaining: 313ms
15:	learn: 34.0615387	total: 61.8ms	remaining: 324ms
16:	learn: 33.6666310	total: 67.5ms	remaining: 330ms
17:	learn: 33.1475457	total: 72.6ms	remaining: 331ms
18:	learn: 32.7064507	total: 77.7ms	remaining: 331ms
19:	learn: 32.1882514	total: 81.4ms	remaining: 326ms
20:	learn: 31.7215821	total: 86.2ms	remaining: 324ms
21:	learn: 31.3541769	total: 88.5ms	remaining: 314ms
22:	learn: 30.8484740	total: 92.4ms	remaining: 309ms
23:	learn: 30.4042519	total: 96ms	remaining: 304ms
24:	learn: 30.0628747	total: 99.6ms	remaining: 299ms
25:	learn: 29.7692210	total: 103ms	remaining: 293ms
26:	learn: 29.4695098	total: 107ms	remaining: 289ms
27:	learn: 29.1475987	total: 110ms	remaining: 284ms
28:	learn: 28.9289492	total: 114ms	remaining: 279ms
29:	learn: 28.5795718	total: 118ms	remaining: 275ms
30:	learn: 28.2423836	total: 122ms	remaining: 271ms
31:	learn: 28.0106450	total: 125ms	remaining: 267ms
32:	learn: 27.8126246	total: 129ms	remaining: 262ms
33:	learn: 27.5135642	total: 133ms	remaining: 257ms
34:	learn: 27.2539620	total: 136ms	remaining: 253ms
35:	learn: 27.0340945	total: 140ms	remaining: 249ms
36:	learn: 26.6970733	total: 155ms	remaining: 263ms
37:	learn: 26.4820773	total: 158ms	remaining: 258ms
38:	learn: 26.2944872	total: 162ms	remaining: 254ms
39:	learn: 26.0569870	total: 166ms	remaining: 249ms
40:	learn: 25.8235330	total: 169ms	remaining: 244ms
41:	learn: 25.6400571	total: 173ms	remaining: 239ms
42:	learn: 25.4326379	total: 177ms	remaining: 234ms
43:	learn: 25.2721974	total: 180ms	remaining: 229ms
44:	learn: 25.0842673	total: 183ms	remaining: 224ms
45:	learn: 24.9015717	total: 187ms	remaining: 219ms
46:	learn: 24.7023849	total: 190ms	remaining: 214ms
47:	learn: 24.5762105	total: 193ms	remaining: 209ms
48:	learn: 24.4675270	total: 197ms	remaining: 205ms
49:	learn: 24.3208092	total: 200ms	remaining: 200ms
50:	learn: 24.1682508	total: 204ms	remaining: 196ms
51:	learn: 23.9713724	total: 208ms	remaining: 192ms
52:	learn: 23.8333045	total: 211ms	remaining: 187ms
53:	learn: 23.6732366	total: 214ms	remaining: 183ms
54:	learn: 23.4980367	total: 218ms	remaining: 178ms
55:	learn: 23.3369139	total: 221ms	remaining: 174ms
56:	learn: 23.1774869	total: 225ms	remaining: 170ms
57:	learn: 23.0919217	total: 229ms	remaining: 166ms
58:	learn: 22.9048643	total: 233ms	remaining: 162ms
59:	learn: 22.7522632	total: 236ms	remaining: 158ms
60:	learn: 22.6276653	total: 240ms	remaining: 153ms
61:	learn: 22.5137902	total: 244ms	remaining: 149ms
62:	learn: 22.4001930	total: 247ms	remaining: 145ms
63:	learn: 22.2903553	total: 251ms	remaining: 141ms
64:	learn: 22.2029161	total: 254ms	remaining: 137ms
65:	learn: 22.0586062	total: 260ms	remaining: 134ms
66:	learn: 21.9039507	total: 265ms	remaining: 131ms
67:	learn: 21.8140739	total: 275ms	remaining: 129ms
68:	learn: 21.6917278	total: 282ms	remaining: 127ms
69:	learn: 21.5285254	total: 289ms	remaining: 124ms
70:	learn: 21.4932079	total: 293ms	remaining: 120ms
71:	learn: 21.3973096	total: 297ms	remaining: 116ms
72:	learn: 21.3036411	total: 301ms	remaining: 111ms
73:	learn: 21.1746524	total: 305ms	remaining: 107ms
74:	learn: 21.1134304	total: 309ms	remaining: 103ms
75:	learn: 20.9974070	total: 313ms	remaining: 99ms
76:	learn: 20.8910028	total: 317ms	remaining: 94.8ms
77:	learn: 20.8486120	total: 322ms	remaining: 90.8ms
78:	learn: 20.8038321	total: 326ms	remaining: 86.7ms
79:	learn: 20.7292848	total: 330ms	remaining: 82.5ms
80:	learn: 20.6434333	total: 334ms	remaining: 78.3ms
81:	learn: 20.5761937	total: 337ms	remaining: 74.1ms
82:	learn: 20.5115562	total: 341ms	remaining: 69.9ms
83:	learn: 20.4355436	total: 346ms	remaining: 65.8ms
84:	learn: 20.3298106	total: 350ms	remaining: 61.7ms
85:	learn: 20.2515711	total: 354ms	remaining: 57.6ms
86:	learn: 20.1734868	total: 358ms	remaining: 53.5ms
87:	learn: 20.1012130	total: 362ms	remaining: 49.3ms
88:	learn: 20.0270496	total: 365ms	remaining: 45.1ms
89:	learn: 19.9831523	total: 368ms	remaining: 40.9ms
90:	learn: 19.8970324	total: 372ms	remaining: 36.8ms
91:	learn: 19.7817021	total: 375ms	remaining: 32.6ms
92:	learn: 19.6981444	total: 379ms	remaining: 28.5ms
93:	learn: 19.6767924	total: 383ms	remaining: 24.4ms
94:	learn: 19.6134086	total: 387ms	remaining: 20.4ms
95:	learn: 19.5250782	total: 390ms	remaining: 16.3ms
96:	learn: 19.4448141	total: 394ms	remaining: 12.2ms
97:	learn: 19.4184562	total: 397ms	remaining: 8.1ms
98:	learn: 19.3659454	total: 400ms	remaining: 4.04ms
99:	learn: 19.3132586	total: 404ms	remaining: 0us
0:	learn: 46.7377014	total: 3.77ms	remaining: 373ms
1:	learn: 46.3303415	total: 10.5ms	remaining: 516ms
2:	learn: 45.7594940	total: 16.3ms	remaining: 526ms
3:	learn: 45.1997490	total: 21.7ms	remaining: 520ms
4:	learn: 44.4456343	total: 27ms	remaining: 513ms
5:	learn: 44.0270120	total: 31.2ms	remaining: 489ms
6:	learn: 43.3864430	total: 36.2ms	remaining: 481ms
7:	learn: 42.8170366	total: 40.1ms	remaining: 461ms
8:	learn: 42.3174634	total: 43.5ms	remaining: 440ms
9:	learn: 41.7915929	total: 46.9ms	remaining: 422ms
10:	learn: 41.2980685	total: 50.8ms	remaining: 411ms
11:	learn: 40.9965044	total: 54.6ms	remaining: 401ms
12:	learn: 40.2971996	total: 58.8ms	remaining: 393ms
13:	learn: 39.7024922	total: 62.7ms	remaining: 385ms
14:	learn: 39.1388938	total: 65.9ms	remaining: 373ms
15:	learn: 38.7028546	total: 69.4ms	remaining: 365ms
16:	learn: 38.0206663	total: 73.4ms	remaining: 358ms
17:	learn: 37.7039763	total: 76.9ms	remaining: 351ms
18:	learn: 37.3477865	total: 80.5ms	remaining: 343ms
19:	learn: 37.1168300	total: 84.3ms	remaining: 337ms
20:	learn: 36.6229657	total: 88.1ms	remaining: 331ms
21:	learn: 36.4053719	total: 91.7ms	remaining: 325ms
22:	learn: 36.0233519	total: 95.1ms	remaining: 318ms
23:	learn: 35.7662482	total: 98.5ms	remaining: 312ms
24:	learn: 35.3803259	total: 102ms	remaining: 307ms
25:	learn: 34.9146782	total: 106ms	remaining: 301ms
26:	learn: 34.4913235	total: 109ms	remaining: 295ms
27:	learn: 34.1328044	total: 112ms	remaining: 288ms
28:	learn: 33.7547852	total: 116ms	remaining: 283ms
29:	learn: 33.4228687	total: 119ms	remaining: 278ms
30:	learn: 33.0369321	total: 121ms	remaining: 270ms
31:	learn: 32.6523463	total: 125ms	remaining: 265ms
32:	learn: 32.3639902	total: 128ms	remaining: 260ms
33:	learn: 32.1246549	total: 131ms	remaining: 255ms
34:	learn: 31.8070801	total: 135ms	remaining: 251ms
35:	learn: 31.5955635	total: 138ms	remaining: 246ms
36:	learn: 31.3087690	total: 142ms	remaining: 241ms
37:	learn: 30.9131566	total: 145ms	remaining: 236ms
38:	learn: 30.6994920	total: 149ms	remaining: 232ms
39:	learn: 30.5602473	total: 152ms	remaining: 228ms
40:	learn: 30.1801105	total: 155ms	remaining: 223ms
41:	learn: 30.0257825	total: 158ms	remaining: 219ms
42:	learn: 29.7969114	total: 162ms	remaining: 214ms
43:	learn: 29.5429482	total: 165ms	remaining: 210ms
44:	learn: 29.3283763	total: 168ms	remaining: 206ms
45:	learn: 29.0483150	total: 172ms	remaining: 201ms
46:	learn: 28.7822963	total: 175ms	remaining: 197ms
47:	learn: 28.6424220	total: 178ms	remaining: 193ms
48:	learn: 28.5061764	total: 181ms	remaining: 189ms
49:	learn: 28.3986170	total: 184ms	remaining: 184ms
50:	learn: 28.2941489	total: 188ms	remaining: 180ms
51:	learn: 28.0366809	total: 191ms	remaining: 176ms
52:	learn: 27.8845231	total: 194ms	remaining: 172ms
53:	learn: 27.7522300	total: 197ms	remaining: 168ms
54:	learn: 27.6009972	total: 200ms	remaining: 164ms
55:	learn: 27.5203003	total: 204ms	remaining: 160ms
56:	learn: 27.3525123	total: 207ms	remaining: 156ms
57:	learn: 27.2036798	total: 211ms	remaining: 153ms
58:	learn: 26.9550883	total: 214ms	remaining: 149ms
59:	learn: 26.7301417	total: 217ms	remaining: 145ms
60:	learn: 26.5752592	total: 221ms	remaining: 141ms
61:	learn: 26.3868608	total: 224ms	remaining: 137ms
62:	learn: 26.3028223	total: 228ms	remaining: 134ms
63:	learn: 26.2365698	total: 233ms	remaining: 131ms
64:	learn: 26.1347659	total: 238ms	remaining: 128ms
65:	learn: 25.9844347	total: 243ms	remaining: 125ms
66:	learn: 25.9350341	total: 248ms	remaining: 122ms
67:	learn: 25.8565886	total: 253ms	remaining: 119ms
68:	learn: 25.7705651	total: 257ms	remaining: 115ms
69:	learn: 25.6364383	total: 261ms	remaining: 112ms
70:	learn: 25.5362089	total: 265ms	remaining: 108ms
71:	learn: 25.4774547	total: 270ms	remaining: 105ms
72:	learn: 25.2939899	total: 274ms	remaining: 101ms
73:	learn: 25.1202464	total: 278ms	remaining: 97.6ms
74:	learn: 24.9272677	total: 281ms	remaining: 93.8ms
75:	learn: 24.8042440	total: 286ms	remaining: 90.2ms
76:	learn: 24.7155645	total: 289ms	remaining: 86.4ms
77:	learn: 24.6450416	total: 293ms	remaining: 82.7ms
78:	learn: 24.5074704	total: 297ms	remaining: 78.9ms
79:	learn: 24.3862635	total: 301ms	remaining: 75.2ms
80:	learn: 24.3341586	total: 304ms	remaining: 71.4ms
81:	learn: 24.2574882	total: 309ms	remaining: 67.8ms
82:	learn: 24.2164183	total: 313ms	remaining: 64ms
83:	learn: 24.1308311	total: 316ms	remaining: 60.2ms
84:	learn: 24.0736634	total: 320ms	remaining: 56.5ms
85:	learn: 24.0063628	total: 324ms	remaining: 52.8ms
86:	learn: 23.8884527	total: 328ms	remaining: 49ms
87:	learn: 23.7735384	total: 331ms	remaining: 45.2ms
88:	learn: 23.6264244	total: 335ms	remaining: 41.4ms
89:	learn: 23.5162738	total: 339ms	remaining: 37.7ms
90:	learn: 23.3758618	total: 344ms	remaining: 34ms
91:	learn: 23.2079543	total: 347ms	remaining: 30.2ms
92:	learn: 23.1583446	total: 350ms	remaining: 26.4ms
93:	learn: 23.0691023	total: 354ms	remaining: 22.6ms
94:	learn: 23.0135261	total: 357ms	remaining: 18.8ms
95:	learn: 22.9566358	total: 360ms	remaining: 15ms
96:	learn: 22.8705497	total: 363ms	remaining: 11.2ms
97:	learn: 22.8241680	total: 366ms	remaining: 7.48ms
98:	learn: 22.6781456	total: 370ms	remaining: 3.73ms
99:	learn: 22.6197036	total: 373ms	remaining: 0us
0:	learn: 46.5970582	total: 3.46ms	remaining: 342ms
1:	learn: 46.0206458	total: 6.71ms	remaining: 329ms
2:	learn: 45.5185565	total: 10.2ms	remaining: 331ms
3:	learn: 44.8896077	total: 13.7ms	remaining: 329ms
4:	learn: 44.3650983	total: 17.2ms	remaining: 327ms
5:	learn: 43.7936095	total: 20.5ms	remaining: 321ms
6:	learn: 43.2516070	total: 23.8ms	remaining: 317ms
7:	learn: 42.5996244	total: 27.1ms	remaining: 312ms
8:	learn: 42.0868414	total: 30.5ms	remaining: 309ms
9:	learn: 41.6335283	total: 34.5ms	remaining: 311ms
10:	learn: 41.1980597	total: 41.4ms	remaining: 335ms
11:	learn: 40.7247450	total: 46.8ms	remaining: 343ms
12:	learn: 40.3043699	total: 52.8ms	remaining: 354ms
13:	learn: 39.6627019	total: 57.6ms	remaining: 354ms
14:	learn: 39.2484866	total: 60.9ms	remaining: 345ms
15:	learn: 38.7535048	total: 65.7ms	remaining: 345ms
16:	learn: 38.3256958	total: 68.9ms	remaining: 337ms
17:	learn: 38.1807470	total: 72.1ms	remaining: 329ms
18:	learn: 37.7913269	total: 75.2ms	remaining: 320ms
19:	learn: 37.4298827	total: 78.2ms	remaining: 313ms
20:	learn: 37.0476659	total: 81.4ms	remaining: 306ms
21:	learn: 36.7547216	total: 84.7ms	remaining: 300ms
22:	learn: 36.2942023	total: 87.9ms	remaining: 294ms
23:	learn: 35.9264935	total: 91ms	remaining: 288ms
24:	learn: 35.5734355	total: 94.2ms	remaining: 283ms
25:	learn: 35.3258596	total: 97.2ms	remaining: 277ms
26:	learn: 35.1298796	total: 100ms	remaining: 271ms
27:	learn: 34.7734567	total: 104ms	remaining: 267ms
28:	learn: 34.3340747	total: 107ms	remaining: 262ms
29:	learn: 33.9716447	total: 110ms	remaining: 257ms
30:	learn: 33.7844285	total: 113ms	remaining: 252ms
31:	learn: 33.4083909	total: 116ms	remaining: 248ms
32:	learn: 32.9586707	total: 120ms	remaining: 243ms
33:	learn: 32.6838865	total: 123ms	remaining: 239ms
34:	learn: 32.3654423	total: 127ms	remaining: 235ms
35:	learn: 32.0480111	total: 130ms	remaining: 231ms
36:	learn: 31.8317379	total: 133ms	remaining: 227ms
37:	learn: 31.6161719	total: 136ms	remaining: 222ms
38:	learn: 31.4822698	total: 140ms	remaining: 219ms
39:	learn: 31.2047107	total: 143ms	remaining: 214ms
40:	learn: 30.9542390	total: 146ms	remaining: 210ms
41:	learn: 30.5746299	total: 149ms	remaining: 206ms
42:	learn: 30.3248827	total: 152ms	remaining: 202ms
43:	learn: 30.0899615	total: 155ms	remaining: 198ms
44:	learn: 29.9658754	total: 159ms	remaining: 194ms
45:	learn: 29.8156811	total: 162ms	remaining: 191ms
46:	learn: 29.6917456	total: 166ms	remaining: 187ms
47:	learn: 29.4510879	total: 169ms	remaining: 183ms
48:	learn: 29.2333725	total: 172ms	remaining: 179ms
49:	learn: 29.0876255	total: 175ms	remaining: 175ms
50:	learn: 28.9909579	total: 178ms	remaining: 171ms
51:	learn: 28.8207407	total: 181ms	remaining: 167ms
52:	learn: 28.7414877	total: 185ms	remaining: 164ms
53:	learn: 28.5766184	total: 188ms	remaining: 160ms
54:	learn: 28.4578886	total: 191ms	remaining: 156ms
55:	learn: 28.3304667	total: 194ms	remaining: 153ms
56:	learn: 28.1430069	total: 197ms	remaining: 149ms
57:	learn: 27.8807558	total: 201ms	remaining: 145ms
58:	learn: 27.6304716	total: 204ms	remaining: 142ms
59:	learn: 27.5627212	total: 207ms	remaining: 138ms
60:	learn: 27.4922631	total: 210ms	remaining: 134ms
61:	learn: 27.2798153	total: 213ms	remaining: 131ms
62:	learn: 27.1551781	total: 217ms	remaining: 127ms
63:	learn: 26.9816596	total: 220ms	remaining: 124ms
64:	learn: 26.8436371	total: 223ms	remaining: 120ms
65:	learn: 26.6437415	total: 227ms	remaining: 117ms
66:	learn: 26.5134410	total: 230ms	remaining: 113ms
67:	learn: 26.4273283	total: 233ms	remaining: 110ms
68:	learn: 26.3734780	total: 237ms	remaining: 106ms
69:	learn: 26.1367850	total: 240ms	remaining: 103ms
70:	learn: 26.0450049	total: 244ms	remaining: 99.6ms
71:	learn: 25.8582711	total: 247ms	remaining: 96.2ms
72:	learn: 25.7624434	total: 254ms	remaining: 93.8ms
73:	learn: 25.7196147	total: 262ms	remaining: 92.1ms
74:	learn: 25.6674122	total: 267ms	remaining: 88.9ms
75:	learn: 25.5560336	total: 272ms	remaining: 85.8ms
76:	learn: 25.4541983	total: 276ms	remaining: 82.3ms
77:	learn: 25.3650572	total: 279ms	remaining: 78.7ms
78:	learn: 25.2572466	total: 283ms	remaining: 75.2ms
79:	learn: 25.1889443	total: 287ms	remaining: 71.7ms
80:	learn: 25.1119947	total: 290ms	remaining: 68.1ms
81:	learn: 25.0181981	total: 294ms	remaining: 64.5ms
82:	learn: 24.9328139	total: 298ms	remaining: 61ms
83:	learn: 24.8328911	total: 302ms	remaining: 57.5ms
84:	learn: 24.8105681	total: 306ms	remaining: 53.9ms
85:	learn: 24.6471687	total: 309ms	remaining: 50.3ms
86:	learn: 24.5777280	total: 313ms	remaining: 46.7ms
87:	learn: 24.4447436	total: 316ms	remaining: 43.1ms
88:	learn: 24.3349434	total: 319ms	remaining: 39.5ms
89:	learn: 24.3056107	total: 324ms	remaining: 36ms
90:	learn: 24.1709055	total: 328ms	remaining: 32.5ms
91:	learn: 24.0752443	total: 332ms	remaining: 28.9ms
92:	learn: 24.0024098	total: 335ms	remaining: 25.2ms
93:	learn: 23.9788290	total: 338ms	remaining: 21.6ms
94:	learn: 23.8454879	total: 342ms	remaining: 18ms
95:	learn: 23.7667392	total: 345ms	remaining: 14.4ms
96:	learn: 23.6936939	total: 348ms	remaining: 10.8ms
97:	learn: 23.6595073	total: 351ms	remaining: 7.17ms
98:	learn: 23.5963820	total: 354ms	remaining: 3.58ms
99:	learn: 23.4477444	total: 358ms	remaining: 0us
0:	learn: 47.2331543	total: 3.62ms	remaining: 359ms
1:	learn: 46.7380884	total: 6.88ms	remaining: 337ms
2:	learn: 46.1451019	total: 10.3ms	remaining: 333ms
3:	learn: 45.3906054	total: 13.7ms	remaining: 328ms
4:	learn: 44.6803536	total: 17ms	remaining: 323ms
5:	learn: 44.2273236	total: 20.5ms	remaining: 321ms
6:	learn: 43.7509703	total: 23.6ms	remaining: 314ms
7:	learn: 43.2028953	total: 27.2ms	remaining: 313ms
8:	learn: 42.6784995	total: 30.5ms	remaining: 309ms
9:	learn: 42.1404276	total: 34ms	remaining: 306ms
10:	learn: 41.6587763	total: 37.3ms	remaining: 302ms
11:	learn: 41.1447803	total: 40.7ms	remaining: 298ms
12:	learn: 40.5267303	total: 44.2ms	remaining: 296ms
13:	learn: 40.1691056	total: 47.6ms	remaining: 293ms
14:	learn: 39.6446454	total: 51.1ms	remaining: 289ms
15:	learn: 39.2530108	total: 57.3ms	remaining: 301ms
16:	learn: 38.8892572	total: 62.7ms	remaining: 306ms
17:	learn: 38.4248708	total: 68ms	remaining: 310ms
18:	learn: 38.1335644	total: 73.3ms	remaining: 313ms
19:	learn: 37.7628419	total: 77.2ms	remaining: 309ms
20:	learn: 37.1965661	total: 82.2ms	remaining: 309ms
21:	learn: 36.9899408	total: 85.8ms	remaining: 304ms
22:	learn: 36.7646654	total: 89.1ms	remaining: 298ms
23:	learn: 36.5034646	total: 92.6ms	remaining: 293ms
24:	learn: 36.2262522	total: 95.9ms	remaining: 288ms
25:	learn: 35.7667852	total: 99.2ms	remaining: 282ms
26:	learn: 35.4889046	total: 102ms	remaining: 277ms
27:	learn: 35.0537874	total: 105ms	remaining: 271ms
28:	learn: 34.6551105	total: 109ms	remaining: 266ms
29:	learn: 34.3632822	total: 111ms	remaining: 260ms
30:	learn: 34.2078749	total: 113ms	remaining: 252ms
31:	learn: 33.8029450	total: 117ms	remaining: 248ms
32:	learn: 33.4966214	total: 120ms	remaining: 243ms
33:	learn: 33.1539041	total: 123ms	remaining: 238ms
34:	learn: 32.8452780	total: 126ms	remaining: 234ms
35:	learn: 32.6128550	total: 129ms	remaining: 229ms
36:	learn: 32.4726320	total: 132ms	remaining: 225ms
37:	learn: 32.1795949	total: 135ms	remaining: 221ms
38:	learn: 31.9635047	total: 138ms	remaining: 216ms
39:	learn: 31.8025058	total: 142ms	remaining: 212ms
40:	learn: 31.5622343	total: 145ms	remaining: 209ms
41:	learn: 31.2497091	total: 148ms	remaining: 205ms
42:	learn: 30.9653927	total: 152ms	remaining: 201ms
43:	learn: 30.8345603	total: 155ms	remaining: 198ms
44:	learn: 30.6692290	total: 159ms	remaining: 194ms
45:	learn: 30.4509807	total: 162ms	remaining: 190ms
46:	learn: 30.2720753	total: 165ms	remaining: 186ms
47:	learn: 30.1327943	total: 169ms	remaining: 183ms
48:	learn: 30.0383667	total: 172ms	remaining: 179ms
49:	learn: 29.9177874	total: 175ms	remaining: 175ms
50:	learn: 29.7546431	total: 178ms	remaining: 171ms
51:	learn: 29.6101687	total: 181ms	remaining: 167ms
52:	learn: 29.4216734	total: 184ms	remaining: 163ms
53:	learn: 29.2958377	total: 187ms	remaining: 160ms
54:	learn: 29.1585307	total: 191ms	remaining: 156ms
55:	learn: 29.0121145	total: 194ms	remaining: 152ms
56:	learn: 28.8097485	total: 197ms	remaining: 149ms
57:	learn: 28.6782559	total: 200ms	remaining: 145ms
58:	learn: 28.3765838	total: 204ms	remaining: 142ms
59:	learn: 28.2153542	total: 207ms	remaining: 138ms
60:	learn: 28.0521681	total: 210ms	remaining: 134ms
61:	learn: 27.8608883	total: 213ms	remaining: 131ms
62:	learn: 27.7817937	total: 216ms	remaining: 127ms
63:	learn: 27.6764746	total: 220ms	remaining: 124ms
64:	learn: 27.5628169	total: 223ms	remaining: 120ms
65:	learn: 27.4644192	total: 226ms	remaining: 116ms
66:	learn: 27.2796164	total: 230ms	remaining: 113ms
67:	learn: 27.2113043	total: 233ms	remaining: 110ms
68:	learn: 27.0663491	total: 237ms	remaining: 106ms
69:	learn: 26.9792416	total: 240ms	remaining: 103ms
70:	learn: 26.8993578	total: 244ms	remaining: 99.6ms
71:	learn: 26.7735903	total: 251ms	remaining: 97.6ms
72:	learn: 26.7003631	total: 257ms	remaining: 95.2ms
73:	learn: 26.5312523	total: 266ms	remaining: 93.5ms
74:	learn: 26.4608453	total: 271ms	remaining: 90.4ms
75:	learn: 26.2980293	total: 277ms	remaining: 87.5ms
76:	learn: 26.2308846	total: 281ms	remaining: 84ms
77:	learn: 26.0989053	total: 285ms	remaining: 80.4ms
78:	learn: 25.9774549	total: 289ms	remaining: 76.8ms
79:	learn: 25.9299068	total: 293ms	remaining: 73.3ms
80:	learn: 25.8107261	total: 297ms	remaining: 69.8ms
81:	learn: 25.6969551	total: 301ms	remaining: 66.1ms
82:	learn: 25.5764999	total: 305ms	remaining: 62.4ms
83:	learn: 25.5380088	total: 309ms	remaining: 58.8ms
84:	learn: 25.4809750	total: 312ms	remaining: 55.1ms
85:	learn: 25.3508109	total: 316ms	remaining: 51.5ms
86:	learn: 25.2840817	total: 320ms	remaining: 47.8ms
87:	learn: 25.1436181	total: 323ms	remaining: 44ms
88:	learn: 25.0281618	total: 326ms	remaining: 40.3ms
89:	learn: 24.9079246	total: 330ms	remaining: 36.6ms
90:	learn: 24.8016608	total: 333ms	remaining: 32.9ms
91:	learn: 24.6694258	total: 337ms	remaining: 29.3ms
92:	learn: 24.5722463	total: 341ms	remaining: 25.7ms
93:	learn: 24.4504315	total: 346ms	remaining: 22.1ms
94:	learn: 24.3808238	total: 349ms	remaining: 18.4ms
95:	learn: 24.2244864	total: 352ms	remaining: 14.7ms
96:	learn: 24.0890358	total: 355ms	remaining: 11ms
97:	learn: 23.9940290	total: 358ms	remaining: 7.31ms
98:	learn: 23.8927560	total: 361ms	remaining: 3.65ms
99:	learn: 23.8146724	total: 364ms	remaining: 0us
0:	learn: 27.9285976	total: 2.11ms	remaining: 630ms
1:	learn: 27.8290218	total: 4.04ms	remaining: 603ms
2:	learn: 27.7149072	total: 6ms	remaining: 594ms
3:	learn: 27.5921171	total: 7.81ms	remaining: 578ms
4:	learn: 27.5080324	total: 9.75ms	remaining: 575ms
5:	learn: 27.4038418	total: 11.9ms	remaining: 583ms
6:	learn: 27.3124489	total: 14.1ms	remaining: 589ms
7:	learn: 27.2083065	total: 15.9ms	remaining: 581ms
8:	learn: 27.1317902	total: 17.8ms	remaining: 577ms
9:	learn: 27.0114102	total: 21ms	remaining: 608ms
10:	learn: 26.9204561	total: 23.9ms	remaining: 627ms
11:	learn: 26.8147167	total: 26.8ms	remaining: 643ms
12:	learn: 26.7123684	total: 29.7ms	remaining: 655ms
13:	learn: 26.6296555	total: 32.5ms	remaining: 664ms
14:	learn: 26.5460136	total: 35.1ms	remaining: 667ms
15:	learn: 26.4578480	total: 37.7ms	remaining: 670ms
16:	learn: 26.3724906	total: 40.5ms	remaining: 675ms
17:	learn: 26.2932630	total: 42.6ms	remaining: 668ms
18:	learn: 26.1998152	total: 44.8ms	remaining: 663ms
19:	learn: 26.1113900	total: 47ms	remaining: 658ms
20:	learn: 26.0055935	total: 49.4ms	remaining: 656ms
21:	learn: 25.9129490	total: 52.4ms	remaining: 662ms
22:	learn: 25.8427783	total: 54.4ms	remaining: 655ms
23:	learn: 25.7506199	total: 56.2ms	remaining: 646ms
24:	learn: 25.6548590	total: 58ms	remaining: 638ms
25:	learn: 25.5780652	total: 59.9ms	remaining: 631ms
26:	learn: 25.4956661	total: 61.5ms	remaining: 622ms
27:	learn: 25.3968741	total: 63.3ms	remaining: 615ms
28:	learn: 25.3018218	total: 65.2ms	remaining: 609ms
29:	learn: 25.2324218	total: 67ms	remaining: 603ms
30:	learn: 25.1562953	total: 68.8ms	remaining: 597ms
31:	learn: 25.0631924	total: 70.6ms	remaining: 591ms
32:	learn: 24.9983252	total: 72.4ms	remaining: 585ms
33:	learn: 24.9171308	total: 74.2ms	remaining: 580ms
34:	learn: 24.8346016	total: 76ms	remaining: 575ms
35:	learn: 24.7531282	total: 77.7ms	remaining: 570ms
36:	learn: 24.6750914	total: 79.4ms	remaining: 564ms
37:	learn: 24.5831754	total: 81.2ms	remaining: 560ms
38:	learn: 24.4965769	total: 83ms	remaining: 555ms
39:	learn: 24.4164076	total: 84.7ms	remaining: 551ms
40:	learn: 24.3434038	total: 86.5ms	remaining: 547ms
41:	learn: 24.2625862	total: 88.3ms	remaining: 542ms
42:	learn: 24.1682279	total: 90ms	remaining: 538ms
43:	learn: 24.1031282	total: 91.7ms	remaining: 534ms
44:	learn: 24.0343255	total: 93.6ms	remaining: 530ms
45:	learn: 23.9650736	total: 95.5ms	remaining: 527ms
46:	learn: 23.8889261	total: 97.7ms	remaining: 526ms
47:	learn: 23.8271335	total: 99.5ms	remaining: 522ms
48:	learn: 23.7461126	total: 101ms	remaining: 519ms
49:	learn: 23.6668976	total: 103ms	remaining: 515ms
50:	learn: 23.5838221	total: 105ms	remaining: 512ms
51:	learn: 23.4920016	total: 107ms	remaining: 508ms
52:	learn: 23.3960738	total: 108ms	remaining: 506ms
53:	learn: 23.3427015	total: 110ms	remaining: 502ms
54:	learn: 23.2643724	total: 112ms	remaining: 499ms
55:	learn: 23.1965774	total: 114ms	remaining: 496ms
56:	learn: 23.1299985	total: 116ms	remaining: 494ms
57:	learn: 23.0655888	total: 118ms	remaining: 491ms
58:	learn: 22.9757556	total: 119ms	remaining: 487ms
59:	learn: 22.9154140	total: 121ms	remaining: 485ms
60:	learn: 22.8683091	total: 123ms	remaining: 482ms
61:	learn: 22.8241251	total: 125ms	remaining: 479ms
62:	learn: 22.7677722	total: 127ms	remaining: 476ms
63:	learn: 22.7157382	total: 128ms	remaining: 473ms
64:	learn: 22.6340703	total: 130ms	remaining: 470ms
65:	learn: 22.5797585	total: 132ms	remaining: 468ms
66:	learn: 22.5052221	total: 134ms	remaining: 465ms
67:	learn: 22.4522876	total: 136ms	remaining: 462ms
68:	learn: 22.3822301	total: 137ms	remaining: 460ms
69:	learn: 22.3329093	total: 139ms	remaining: 457ms
70:	learn: 22.2696707	total: 141ms	remaining: 454ms
71:	learn: 22.1893329	total: 143ms	remaining: 452ms
72:	learn: 22.1272803	total: 144ms	remaining: 449ms
73:	learn: 22.0453922	total: 146ms	remaining: 446ms
74:	learn: 21.9848024	total: 148ms	remaining: 444ms
75:	learn: 21.9283676	total: 150ms	remaining: 442ms
76:	learn: 21.8687472	total: 152ms	remaining: 439ms
77:	learn: 21.8182084	total: 153ms	remaining: 437ms
78:	learn: 21.7592953	total: 155ms	remaining: 434ms
79:	learn: 21.6955626	total: 157ms	remaining: 432ms
80:	learn: 21.6480086	total: 159ms	remaining: 429ms
81:	learn: 21.5941029	total: 160ms	remaining: 427ms
82:	learn: 21.5325894	total: 162ms	remaining: 424ms
83:	learn: 21.4729115	total: 164ms	remaining: 422ms
84:	learn: 21.4211792	total: 166ms	remaining: 419ms
85:	learn: 21.3576133	total: 168ms	remaining: 417ms
86:	learn: 21.3247271	total: 170ms	remaining: 415ms
87:	learn: 21.2705544	total: 171ms	remaining: 413ms
88:	learn: 21.2072432	total: 173ms	remaining: 411ms
89:	learn: 21.1624877	total: 175ms	remaining: 408ms
90:	learn: 21.1028725	total: 177ms	remaining: 406ms
91:	learn: 21.0588361	total: 178ms	remaining: 404ms
92:	learn: 21.0105034	total: 180ms	remaining: 401ms
93:	learn: 20.9554729	total: 182ms	remaining: 399ms
94:	learn: 20.9097524	total: 184ms	remaining: 397ms
95:	learn: 20.8535150	total: 186ms	remaining: 395ms
96:	learn: 20.7973780	total: 188ms	remaining: 393ms
97:	learn: 20.7375099	total: 189ms	remaining: 390ms
98:	learn: 20.6879329	total: 191ms	remaining: 388ms
99:	learn: 20.6517844	total: 193ms	remaining: 386ms
100:	learn: 20.5959677	total: 195ms	remaining: 383ms
101:	learn: 20.5448786	total: 196ms	remaining: 381ms
102:	learn: 20.5054969	total: 198ms	remaining: 379ms
103:	learn: 20.4648575	total: 200ms	remaining: 377ms
104:	learn: 20.4164417	total: 202ms	remaining: 376ms
105:	learn: 20.3696310	total: 204ms	remaining: 374ms
106:	learn: 20.3182900	total: 206ms	remaining: 371ms
107:	learn: 20.2765773	total: 208ms	remaining: 370ms
108:	learn: 20.2420461	total: 210ms	remaining: 368ms
109:	learn: 20.2029460	total: 212ms	remaining: 366ms
110:	learn: 20.1619348	total: 213ms	remaining: 363ms
111:	learn: 20.1221457	total: 215ms	remaining: 361ms
112:	learn: 20.0749502	total: 217ms	remaining: 359ms
113:	learn: 20.0265468	total: 219ms	remaining: 357ms
114:	learn: 19.9771360	total: 220ms	remaining: 354ms
115:	learn: 19.9274586	total: 222ms	remaining: 352ms
116:	learn: 19.8814741	total: 224ms	remaining: 350ms
117:	learn: 19.8246965	total: 226ms	remaining: 348ms
118:	learn: 19.7746027	total: 228ms	remaining: 346ms
119:	learn: 19.7445185	total: 229ms	remaining: 344ms
120:	learn: 19.7144519	total: 231ms	remaining: 342ms
121:	learn: 19.6774523	total: 233ms	remaining: 340ms
122:	learn: 19.6307856	total: 235ms	remaining: 338ms
123:	learn: 19.5803827	total: 237ms	remaining: 336ms
124:	learn: 19.5331346	total: 238ms	remaining: 334ms
125:	learn: 19.4866451	total: 240ms	remaining: 332ms
126:	learn: 19.4203679	total: 242ms	remaining: 330ms
127:	learn: 19.3764529	total: 244ms	remaining: 328ms
128:	learn: 19.3180824	total: 246ms	remaining: 326ms
129:	learn: 19.2905634	total: 248ms	remaining: 324ms
130:	learn: 19.2533193	total: 252ms	remaining: 326ms
131:	learn: 19.2062921	total: 255ms	remaining: 325ms
132:	learn: 19.1715301	total: 259ms	remaining: 325ms
133:	learn: 19.1255393	total: 263ms	remaining: 326ms
134:	learn: 19.0860937	total: 268ms	remaining: 327ms
135:	learn: 19.0492332	total: 270ms	remaining: 326ms
136:	learn: 19.0156205	total: 273ms	remaining: 325ms
137:	learn: 18.9665162	total: 277ms	remaining: 325ms
138:	learn: 18.9446260	total: 279ms	remaining: 323ms
139:	learn: 18.8986689	total: 281ms	remaining: 321ms
140:	learn: 18.8611997	total: 283ms	remaining: 319ms
141:	learn: 18.8250666	total: 285ms	remaining: 317ms
142:	learn: 18.7822871	total: 288ms	remaining: 316ms
143:	learn: 18.7414238	total: 290ms	remaining: 314ms
144:	learn: 18.7074771	total: 292ms	remaining: 312ms
145:	learn: 18.6714146	total: 294ms	remaining: 310ms
146:	learn: 18.6450579	total: 296ms	remaining: 308ms
147:	learn: 18.6217009	total: 298ms	remaining: 306ms
148:	learn: 18.5986827	total: 300ms	remaining: 304ms
149:	learn: 18.5621962	total: 302ms	remaining: 302ms
150:	learn: 18.5293096	total: 305ms	remaining: 301ms
151:	learn: 18.5026941	total: 308ms	remaining: 300ms
152:	learn: 18.4713395	total: 310ms	remaining: 298ms
153:	learn: 18.4490272	total: 312ms	remaining: 296ms
154:	learn: 18.4211902	total: 314ms	remaining: 293ms
155:	learn: 18.3806158	total: 315ms	remaining: 291ms
156:	learn: 18.3537121	total: 317ms	remaining: 289ms
157:	learn: 18.3225033	total: 319ms	remaining: 287ms
158:	learn: 18.2903112	total: 321ms	remaining: 285ms
159:	learn: 18.2679262	total: 323ms	remaining: 283ms
160:	learn: 18.2459632	total: 325ms	remaining: 281ms
161:	learn: 18.2093096	total: 327ms	remaining: 279ms
162:	learn: 18.1887544	total: 329ms	remaining: 277ms
163:	learn: 18.1586638	total: 331ms	remaining: 275ms
164:	learn: 18.1319070	total: 333ms	remaining: 273ms
165:	learn: 18.0985148	total: 335ms	remaining: 271ms
166:	learn: 18.0704359	total: 337ms	remaining: 269ms
167:	learn: 18.0344107	total: 339ms	remaining: 267ms
168:	learn: 18.0164232	total: 341ms	remaining: 264ms
169:	learn: 17.9865641	total: 343ms	remaining: 262ms
170:	learn: 17.9669082	total: 344ms	remaining: 260ms
171:	learn: 17.9453890	total: 346ms	remaining: 258ms
172:	learn: 17.9227165	total: 348ms	remaining: 255ms
173:	learn: 17.9014448	total: 350ms	remaining: 253ms
174:	learn: 17.8731423	total: 351ms	remaining: 251ms
175:	learn: 17.8507065	total: 353ms	remaining: 249ms
176:	learn: 17.8258289	total: 355ms	remaining: 247ms
177:	learn: 17.8015957	total: 357ms	remaining: 244ms
178:	learn: 17.7751661	total: 358ms	remaining: 242ms
179:	learn: 17.7508456	total: 360ms	remaining: 240ms
180:	learn: 17.7247399	total: 362ms	remaining: 238ms
181:	learn: 17.7031652	total: 364ms	remaining: 236ms
182:	learn: 17.6763053	total: 365ms	remaining: 234ms
183:	learn: 17.6530744	total: 367ms	remaining: 231ms
184:	learn: 17.6185943	total: 369ms	remaining: 229ms
185:	learn: 17.5820317	total: 370ms	remaining: 227ms
186:	learn: 17.5502912	total: 372ms	remaining: 225ms
187:	learn: 17.5280867	total: 374ms	remaining: 223ms
188:	learn: 17.5054874	total: 376ms	remaining: 221ms
189:	learn: 17.4787462	total: 378ms	remaining: 219ms
190:	learn: 17.4460007	total: 379ms	remaining: 216ms
191:	learn: 17.4238148	total: 381ms	remaining: 214ms
192:	learn: 17.3950087	total: 383ms	remaining: 212ms
193:	learn: 17.3664910	total: 384ms	remaining: 210ms
194:	learn: 17.3391390	total: 386ms	remaining: 208ms
195:	learn: 17.3240064	total: 388ms	remaining: 206ms
196:	learn: 17.2963869	total: 390ms	remaining: 204ms
197:	learn: 17.2728095	total: 391ms	remaining: 202ms
198:	learn: 17.2465050	total: 393ms	remaining: 200ms
199:	learn: 17.2222551	total: 395ms	remaining: 197ms
200:	learn: 17.2020449	total: 397ms	remaining: 195ms
201:	learn: 17.1753652	total: 398ms	remaining: 193ms
202:	learn: 17.1402580	total: 400ms	remaining: 191ms
203:	learn: 17.1101039	total: 402ms	remaining: 189ms
204:	learn: 17.0814466	total: 404ms	remaining: 187ms
205:	learn: 17.0392425	total: 406ms	remaining: 185ms
206:	learn: 17.0185365	total: 408ms	remaining: 183ms
207:	learn: 17.0000792	total: 410ms	remaining: 181ms
208:	learn: 16.9790281	total: 412ms	remaining: 179ms
209:	learn: 16.9516641	total: 414ms	remaining: 177ms
210:	learn: 16.9318312	total: 415ms	remaining: 175ms
211:	learn: 16.9092120	total: 417ms	remaining: 173ms
212:	learn: 16.8973878	total: 419ms	remaining: 171ms
213:	learn: 16.8787605	total: 421ms	remaining: 169ms
214:	learn: 16.8601121	total: 423ms	remaining: 167ms
215:	learn: 16.8353573	total: 425ms	remaining: 165ms
216:	learn: 16.8085685	total: 427ms	remaining: 163ms
217:	learn: 16.7935033	total: 429ms	remaining: 161ms
218:	learn: 16.7646600	total: 431ms	remaining: 159ms
219:	learn: 16.7310761	total: 433ms	remaining: 157ms
220:	learn: 16.7088906	total: 435ms	remaining: 155ms
221:	learn: 16.6879148	total: 436ms	remaining: 153ms
222:	learn: 16.6775806	total: 438ms	remaining: 151ms
223:	learn: 16.6520096	total: 440ms	remaining: 149ms
224:	learn: 16.6270914	total: 442ms	remaining: 147ms
225:	learn: 16.6041953	total: 444ms	remaining: 145ms
226:	learn: 16.5823140	total: 448ms	remaining: 144ms
227:	learn: 16.5596142	total: 451ms	remaining: 142ms
228:	learn: 16.5419601	total: 454ms	remaining: 141ms
229:	learn: 16.5208337	total: 457ms	remaining: 139ms
230:	learn: 16.4796255	total: 460ms	remaining: 137ms
231:	learn: 16.4578162	total: 463ms	remaining: 136ms
232:	learn: 16.4376004	total: 465ms	remaining: 134ms
233:	learn: 16.4086771	total: 467ms	remaining: 132ms
234:	learn: 16.3900939	total: 469ms	remaining: 130ms
235:	learn: 16.3679575	total: 472ms	remaining: 128ms
236:	learn: 16.3468209	total: 474ms	remaining: 126ms
237:	learn: 16.3368922	total: 476ms	remaining: 124ms
238:	learn: 16.3099272	total: 477ms	remaining: 122ms
239:	learn: 16.2935433	total: 479ms	remaining: 120ms
240:	learn: 16.2821574	total: 481ms	remaining: 118ms
241:	learn: 16.2547164	total: 483ms	remaining: 116ms
242:	learn: 16.2345272	total: 485ms	remaining: 114ms
243:	learn: 16.2100089	total: 486ms	remaining: 112ms
244:	learn: 16.1954131	total: 488ms	remaining: 110ms
245:	learn: 16.1798313	total: 490ms	remaining: 108ms
246:	learn: 16.1563709	total: 492ms	remaining: 105ms
247:	learn: 16.1289074	total: 493ms	remaining: 103ms
248:	learn: 16.1179097	total: 495ms	remaining: 101ms
249:	learn: 16.1056268	total: 497ms	remaining: 99.4ms
250:	learn: 16.0766684	total: 499ms	remaining: 97.3ms
251:	learn: 16.0541204	total: 500ms	remaining: 95.3ms
252:	learn: 16.0343743	total: 502ms	remaining: 93.3ms
253:	learn: 16.0194570	total: 504ms	remaining: 91.2ms
254:	learn: 15.9962611	total: 506ms	remaining: 89.2ms
255:	learn: 15.9767807	total: 507ms	remaining: 87.2ms
256:	learn: 15.9470123	total: 509ms	remaining: 85.2ms
257:	learn: 15.9348379	total: 511ms	remaining: 83.2ms
258:	learn: 15.9159990	total: 513ms	remaining: 81.2ms
259:	learn: 15.8938835	total: 515ms	remaining: 79.2ms
260:	learn: 15.8840712	total: 517ms	remaining: 77.2ms
261:	learn: 15.8709936	total: 518ms	remaining: 75.2ms
262:	learn: 15.8500036	total: 520ms	remaining: 73.2ms
263:	learn: 15.8324627	total: 522ms	remaining: 71.2ms
264:	learn: 15.8203282	total: 524ms	remaining: 69.1ms
265:	learn: 15.8033280	total: 525ms	remaining: 67.1ms
266:	learn: 15.7886562	total: 527ms	remaining: 65.2ms
267:	learn: 15.7627391	total: 529ms	remaining: 63.1ms
268:	learn: 15.7357780	total: 531ms	remaining: 61.1ms
269:	learn: 15.7236140	total: 532ms	remaining: 59.1ms
270:	learn: 15.7085623	total: 534ms	remaining: 57.1ms
271:	learn: 15.6770338	total: 536ms	remaining: 55.1ms
272:	learn: 15.6589956	total: 537ms	remaining: 53.2ms
273:	learn: 15.6395745	total: 539ms	remaining: 51.2ms
274:	learn: 15.6200829	total: 541ms	remaining: 49.2ms
275:	learn: 15.6064412	total: 543ms	remaining: 47.2ms
276:	learn: 15.5796089	total: 545ms	remaining: 45.3ms
277:	learn: 15.5657784	total: 547ms	remaining: 43.3ms
278:	learn: 15.5488597	total: 549ms	remaining: 41.3ms
279:	learn: 15.5351794	total: 550ms	remaining: 39.3ms
280:	learn: 15.5250645	total: 552ms	remaining: 37.3ms
281:	learn: 15.5123678	total: 554ms	remaining: 35.4ms
282:	learn: 15.4997613	total: 556ms	remaining: 33.4ms
283:	learn: 15.4813228	total: 558ms	remaining: 31.4ms
284:	learn: 15.4638044	total: 559ms	remaining: 29.4ms
285:	learn: 15.4462381	total: 561ms	remaining: 27.5ms
286:	learn: 15.4215512	total: 563ms	remaining: 25.5ms
287:	learn: 15.3979494	total: 565ms	remaining: 23.5ms
288:	learn: 15.3733520	total: 566ms	remaining: 21.6ms
289:	learn: 15.3550203	total: 568ms	remaining: 19.6ms
290:	learn: 15.3385016	total: 570ms	remaining: 17.6ms
291:	learn: 15.3240839	total: 572ms	remaining: 15.7ms
292:	learn: 15.3110268	total: 574ms	remaining: 13.7ms
293:	learn: 15.3003992	total: 576ms	remaining: 11.8ms
294:	learn: 15.2873679	total: 578ms	remaining: 9.79ms
295:	learn: 15.2711554	total: 580ms	remaining: 7.83ms
296:	learn: 15.2631540	total: 582ms	remaining: 5.88ms
297:	learn: 15.2338919	total: 584ms	remaining: 3.92ms
298:	learn: 15.2185437	total: 586ms	remaining: 1.96ms
299:	learn: 15.1931047	total: 587ms	remaining: 0us
0:	learn: 43.7721537	total: 2.19ms	remaining: 654ms
1:	learn: 43.5552928	total: 4.06ms	remaining: 605ms
2:	learn: 43.3496462	total: 5.94ms	remaining: 588ms
3:	learn: 43.1212350	total: 8.03ms	remaining: 594ms
4:	learn: 42.9265080	total: 11.9ms	remaining: 705ms
5:	learn: 42.6966645	total: 14.9ms	remaining: 730ms
6:	learn: 42.4209575	total: 18ms	remaining: 753ms
7:	learn: 42.1828594	total: 20.8ms	remaining: 759ms
8:	learn: 41.9284258	total: 25.1ms	remaining: 811ms
9:	learn: 41.7011892	total: 29.8ms	remaining: 866ms
10:	learn: 41.4553132	total: 32.4ms	remaining: 851ms
11:	learn: 41.2492821	total: 35.1ms	remaining: 842ms
12:	learn: 41.0262856	total: 38.6ms	remaining: 853ms
13:	learn: 40.7844692	total: 40.9ms	remaining: 835ms
14:	learn: 40.5858834	total: 42.9ms	remaining: 815ms
15:	learn: 40.4108985	total: 44.9ms	remaining: 798ms
16:	learn: 40.1991501	total: 47.1ms	remaining: 784ms
17:	learn: 39.9659694	total: 49.6ms	remaining: 777ms
18:	learn: 39.7579464	total: 51.6ms	remaining: 763ms
19:	learn: 39.5592072	total: 53.7ms	remaining: 752ms
20:	learn: 39.3487592	total: 55.8ms	remaining: 741ms
21:	learn: 39.1369555	total: 58.1ms	remaining: 734ms
22:	learn: 38.9668050	total: 60.2ms	remaining: 726ms
23:	learn: 38.7370024	total: 62.3ms	remaining: 717ms
24:	learn: 38.5433037	total: 64.4ms	remaining: 708ms
25:	learn: 38.3258334	total: 66.4ms	remaining: 700ms
26:	learn: 38.1168415	total: 68.7ms	remaining: 694ms
27:	learn: 37.9260705	total: 70.9ms	remaining: 689ms
28:	learn: 37.7524257	total: 72.9ms	remaining: 681ms
29:	learn: 37.5341921	total: 75.2ms	remaining: 677ms
30:	learn: 37.3183745	total: 77.4ms	remaining: 672ms
31:	learn: 37.1564539	total: 79.4ms	remaining: 665ms
32:	learn: 36.9475227	total: 81.4ms	remaining: 659ms
33:	learn: 36.7646790	total: 83.3ms	remaining: 651ms
34:	learn: 36.5833113	total: 85.5ms	remaining: 647ms
35:	learn: 36.4209489	total: 87.7ms	remaining: 643ms
36:	learn: 36.2277457	total: 89.9ms	remaining: 639ms
37:	learn: 36.0354607	total: 107ms	remaining: 737ms
38:	learn: 35.8533305	total: 109ms	remaining: 727ms
39:	learn: 35.6811877	total: 110ms	remaining: 718ms
40:	learn: 35.5420911	total: 112ms	remaining: 709ms
41:	learn: 35.3700911	total: 114ms	remaining: 701ms
42:	learn: 35.1932134	total: 116ms	remaining: 692ms
43:	learn: 35.0160510	total: 118ms	remaining: 684ms
44:	learn: 34.8836763	total: 120ms	remaining: 677ms
45:	learn: 34.7157412	total: 121ms	remaining: 670ms
46:	learn: 34.5298676	total: 123ms	remaining: 664ms
47:	learn: 34.3603422	total: 125ms	remaining: 656ms
48:	learn: 34.1711190	total: 127ms	remaining: 650ms
49:	learn: 34.0003751	total: 129ms	remaining: 643ms
50:	learn: 33.8575550	total: 130ms	remaining: 636ms
51:	learn: 33.6847774	total: 132ms	remaining: 630ms
52:	learn: 33.5446542	total: 134ms	remaining: 623ms
53:	learn: 33.3950446	total: 136ms	remaining: 619ms
54:	learn: 33.2387928	total: 138ms	remaining: 613ms
55:	learn: 33.0615363	total: 139ms	remaining: 608ms
56:	learn: 32.9202628	total: 141ms	remaining: 602ms
57:	learn: 32.7754727	total: 143ms	remaining: 596ms
58:	learn: 32.6497810	total: 145ms	remaining: 591ms
59:	learn: 32.5026899	total: 146ms	remaining: 586ms
60:	learn: 32.3796545	total: 148ms	remaining: 580ms
61:	learn: 32.2157682	total: 150ms	remaining: 575ms
62:	learn: 32.1380604	total: 152ms	remaining: 572ms
63:	learn: 32.0105055	total: 154ms	remaining: 568ms
64:	learn: 31.9120873	total: 156ms	remaining: 564ms
65:	learn: 31.7487718	total: 158ms	remaining: 560ms
66:	learn: 31.5845413	total: 160ms	remaining: 556ms
67:	learn: 31.4640579	total: 162ms	remaining: 552ms
68:	learn: 31.3354623	total: 164ms	remaining: 548ms
69:	learn: 31.1857192	total: 166ms	remaining: 545ms
70:	learn: 31.0630206	total: 168ms	remaining: 541ms
71:	learn: 30.9688475	total: 170ms	remaining: 537ms
72:	learn: 30.8467994	total: 172ms	remaining: 534ms
73:	learn: 30.7056673	total: 174ms	remaining: 531ms
74:	learn: 30.5626298	total: 176ms	remaining: 527ms
75:	learn: 30.4371776	total: 178ms	remaining: 523ms
76:	learn: 30.2909000	total: 180ms	remaining: 520ms
77:	learn: 30.1744981	total: 182ms	remaining: 517ms
78:	learn: 30.0696503	total: 183ms	remaining: 513ms
79:	learn: 29.9605491	total: 185ms	remaining: 509ms
80:	learn: 29.8443969	total: 187ms	remaining: 506ms
81:	learn: 29.7448994	total: 189ms	remaining: 502ms
82:	learn: 29.6038471	total: 191ms	remaining: 498ms
83:	learn: 29.4838289	total: 192ms	remaining: 494ms
84:	learn: 29.3641294	total: 194ms	remaining: 491ms
85:	learn: 29.2378368	total: 196ms	remaining: 488ms
86:	learn: 29.1465804	total: 198ms	remaining: 485ms
87:	learn: 29.0449734	total: 200ms	remaining: 482ms
88:	learn: 28.9190278	total: 202ms	remaining: 478ms
89:	learn: 28.7905133	total: 203ms	remaining: 475ms
90:	learn: 28.7003833	total: 205ms	remaining: 471ms
91:	learn: 28.5934447	total: 207ms	remaining: 468ms
92:	learn: 28.5135393	total: 209ms	remaining: 465ms
93:	learn: 28.3973561	total: 211ms	remaining: 462ms
94:	learn: 28.3048983	total: 213ms	remaining: 459ms
95:	learn: 28.1814050	total: 214ms	remaining: 456ms
96:	learn: 28.0830010	total: 216ms	remaining: 453ms
97:	learn: 27.9588196	total: 219ms	remaining: 452ms
98:	learn: 27.8945014	total: 223ms	remaining: 452ms
99:	learn: 27.8174594	total: 226ms	remaining: 451ms
100:	learn: 27.7200195	total: 228ms	remaining: 450ms
101:	learn: 27.6108886	total: 231ms	remaining: 448ms
102:	learn: 27.5048699	total: 234ms	remaining: 447ms
103:	learn: 27.4396363	total: 237ms	remaining: 446ms
104:	learn: 27.3335650	total: 239ms	remaining: 444ms
105:	learn: 27.2195779	total: 241ms	remaining: 442ms
106:	learn: 27.1251930	total: 244ms	remaining: 440ms
107:	learn: 27.0214286	total: 246ms	remaining: 437ms
108:	learn: 26.9086310	total: 248ms	remaining: 434ms
109:	learn: 26.8332747	total: 251ms	remaining: 433ms
110:	learn: 26.7369793	total: 253ms	remaining: 431ms
111:	learn: 26.6392428	total: 255ms	remaining: 428ms
112:	learn: 26.5373683	total: 257ms	remaining: 425ms
113:	learn: 26.4665025	total: 259ms	remaining: 422ms
114:	learn: 26.3762128	total: 260ms	remaining: 419ms
115:	learn: 26.2850146	total: 262ms	remaining: 416ms
116:	learn: 26.1862182	total: 264ms	remaining: 413ms
117:	learn: 26.0991366	total: 266ms	remaining: 410ms
118:	learn: 25.9966544	total: 268ms	remaining: 407ms
119:	learn: 25.9148704	total: 270ms	remaining: 404ms
120:	learn: 25.8458923	total: 271ms	remaining: 401ms
121:	learn: 25.7444245	total: 273ms	remaining: 399ms
122:	learn: 25.6470676	total: 275ms	remaining: 396ms
123:	learn: 25.5603439	total: 277ms	remaining: 393ms
124:	learn: 25.4830913	total: 279ms	remaining: 390ms
125:	learn: 25.3862285	total: 280ms	remaining: 387ms
126:	learn: 25.3099795	total: 282ms	remaining: 384ms
127:	learn: 25.2629912	total: 284ms	remaining: 382ms
128:	learn: 25.1703805	total: 286ms	remaining: 379ms
129:	learn: 25.1046119	total: 288ms	remaining: 376ms
130:	learn: 25.0335735	total: 290ms	remaining: 374ms
131:	learn: 24.9430937	total: 292ms	remaining: 371ms
132:	learn: 24.8673026	total: 293ms	remaining: 368ms
133:	learn: 24.8203406	total: 295ms	remaining: 366ms
134:	learn: 24.7492537	total: 297ms	remaining: 363ms
135:	learn: 24.6651913	total: 299ms	remaining: 360ms
136:	learn: 24.5915533	total: 301ms	remaining: 358ms
137:	learn: 24.5342028	total: 303ms	remaining: 356ms
138:	learn: 24.4613704	total: 305ms	remaining: 353ms
139:	learn: 24.3839975	total: 307ms	remaining: 351ms
140:	learn: 24.3307172	total: 309ms	remaining: 348ms
141:	learn: 24.2636479	total: 310ms	remaining: 345ms
142:	learn: 24.1766639	total: 312ms	remaining: 343ms
143:	learn: 24.0971142	total: 314ms	remaining: 340ms
144:	learn: 24.0281586	total: 316ms	remaining: 338ms
145:	learn: 23.9707706	total: 318ms	remaining: 335ms
146:	learn: 23.8907105	total: 319ms	remaining: 332ms
147:	learn: 23.8341362	total: 321ms	remaining: 330ms
148:	learn: 23.7816031	total: 323ms	remaining: 327ms
149:	learn: 23.7077928	total: 325ms	remaining: 325ms
150:	learn: 23.6398419	total: 327ms	remaining: 322ms
151:	learn: 23.5734043	total: 328ms	remaining: 320ms
152:	learn: 23.5163002	total: 330ms	remaining: 317ms
153:	learn: 23.4927482	total: 332ms	remaining: 315ms
154:	learn: 23.4409706	total: 334ms	remaining: 312ms
155:	learn: 23.3861012	total: 336ms	remaining: 310ms
156:	learn: 23.3503313	total: 337ms	remaining: 307ms
157:	learn: 23.2957124	total: 339ms	remaining: 305ms
158:	learn: 23.2302057	total: 341ms	remaining: 302ms
159:	learn: 23.1737519	total: 343ms	remaining: 300ms
160:	learn: 23.1144992	total: 345ms	remaining: 298ms
161:	learn: 23.0519418	total: 347ms	remaining: 295ms
162:	learn: 22.9836244	total: 349ms	remaining: 293ms
163:	learn: 22.9297219	total: 351ms	remaining: 291ms
164:	learn: 22.8800603	total: 352ms	remaining: 288ms
165:	learn: 22.8466231	total: 354ms	remaining: 286ms
166:	learn: 22.7877102	total: 356ms	remaining: 284ms
167:	learn: 22.7169575	total: 358ms	remaining: 281ms
168:	learn: 22.6559558	total: 360ms	remaining: 279ms
169:	learn: 22.5854113	total: 362ms	remaining: 277ms
170:	learn: 22.5363505	total: 364ms	remaining: 275ms
171:	learn: 22.4730769	total: 366ms	remaining: 272ms
172:	learn: 22.4072997	total: 368ms	remaining: 270ms
173:	learn: 22.3644528	total: 370ms	remaining: 268ms
174:	learn: 22.3290253	total: 372ms	remaining: 265ms
175:	learn: 22.2676350	total: 373ms	remaining: 263ms
176:	learn: 22.2047712	total: 375ms	remaining: 261ms
177:	learn: 22.1641434	total: 377ms	remaining: 259ms
178:	learn: 22.1177425	total: 379ms	remaining: 256ms
179:	learn: 22.0783176	total: 381ms	remaining: 254ms
180:	learn: 22.0346236	total: 382ms	remaining: 251ms
181:	learn: 21.9900260	total: 384ms	remaining: 249ms
182:	learn: 21.9369693	total: 386ms	remaining: 247ms
183:	learn: 21.8944173	total: 388ms	remaining: 244ms
184:	learn: 21.8306031	total: 390ms	remaining: 242ms
185:	learn: 21.7701401	total: 391ms	remaining: 240ms
186:	learn: 21.7194001	total: 393ms	remaining: 238ms
187:	learn: 21.6829984	total: 395ms	remaining: 235ms
188:	learn: 21.6557681	total: 397ms	remaining: 233ms
189:	learn: 21.6169500	total: 399ms	remaining: 231ms
190:	learn: 21.5631656	total: 400ms	remaining: 229ms
191:	learn: 21.5190681	total: 402ms	remaining: 226ms
192:	learn: 21.4678033	total: 404ms	remaining: 224ms
193:	learn: 21.4232036	total: 406ms	remaining: 222ms
194:	learn: 21.3774019	total: 408ms	remaining: 220ms
195:	learn: 21.3377322	total: 410ms	remaining: 218ms
196:	learn: 21.2875684	total: 412ms	remaining: 215ms
197:	learn: 21.2505968	total: 414ms	remaining: 213ms
198:	learn: 21.2115877	total: 416ms	remaining: 211ms
199:	learn: 21.1659642	total: 418ms	remaining: 209ms
200:	learn: 21.1374893	total: 420ms	remaining: 207ms
201:	learn: 21.0834600	total: 421ms	remaining: 204ms
202:	learn: 21.0316448	total: 423ms	remaining: 202ms
203:	learn: 20.9772643	total: 425ms	remaining: 200ms
204:	learn: 20.9373133	total: 427ms	remaining: 198ms
205:	learn: 20.9014638	total: 429ms	remaining: 196ms
206:	learn: 20.8451398	total: 431ms	remaining: 194ms
207:	learn: 20.8025018	total: 433ms	remaining: 192ms
208:	learn: 20.7649603	total: 438ms	remaining: 191ms
209:	learn: 20.7191047	total: 441ms	remaining: 189ms
210:	learn: 20.6805693	total: 444ms	remaining: 187ms
211:	learn: 20.6324533	total: 448ms	remaining: 186ms
212:	learn: 20.6146737	total: 453ms	remaining: 185ms
213:	learn: 20.5784140	total: 456ms	remaining: 183ms
214:	learn: 20.5455283	total: 458ms	remaining: 181ms
215:	learn: 20.4974600	total: 463ms	remaining: 180ms
216:	learn: 20.4562765	total: 465ms	remaining: 178ms
217:	learn: 20.4221951	total: 467ms	remaining: 176ms
218:	learn: 20.3777313	total: 469ms	remaining: 174ms
219:	learn: 20.3258419	total: 471ms	remaining: 171ms
220:	learn: 20.2928360	total: 474ms	remaining: 169ms
221:	learn: 20.2551815	total: 476ms	remaining: 167ms
222:	learn: 20.2064643	total: 478ms	remaining: 165ms
223:	learn: 20.1742482	total: 480ms	remaining: 163ms
224:	learn: 20.1318207	total: 483ms	remaining: 161ms
225:	learn: 20.0927328	total: 485ms	remaining: 159ms
226:	learn: 20.0656742	total: 487ms	remaining: 157ms
227:	learn: 20.0435404	total: 489ms	remaining: 155ms
228:	learn: 20.0069848	total: 492ms	remaining: 152ms
229:	learn: 19.9755803	total: 494ms	remaining: 150ms
230:	learn: 19.9307383	total: 496ms	remaining: 148ms
231:	learn: 19.9158091	total: 498ms	remaining: 146ms
232:	learn: 19.8763419	total: 500ms	remaining: 144ms
233:	learn: 19.8531801	total: 502ms	remaining: 142ms
234:	learn: 19.8249599	total: 504ms	remaining: 139ms
235:	learn: 19.7839542	total: 506ms	remaining: 137ms
236:	learn: 19.7630376	total: 508ms	remaining: 135ms
237:	learn: 19.7455795	total: 511ms	remaining: 133ms
238:	learn: 19.7144447	total: 514ms	remaining: 131ms
239:	learn: 19.6869890	total: 516ms	remaining: 129ms
240:	learn: 19.6675357	total: 518ms	remaining: 127ms
241:	learn: 19.6383954	total: 521ms	remaining: 125ms
242:	learn: 19.6120938	total: 522ms	remaining: 123ms
243:	learn: 19.5834160	total: 524ms	remaining: 120ms
244:	learn: 19.5396439	total: 526ms	remaining: 118ms
245:	learn: 19.5067666	total: 528ms	remaining: 116ms
246:	learn: 19.4927801	total: 529ms	remaining: 114ms
247:	learn: 19.4516672	total: 531ms	remaining: 111ms
248:	learn: 19.4122142	total: 533ms	remaining: 109ms
249:	learn: 19.3990471	total: 535ms	remaining: 107ms
250:	learn: 19.3621680	total: 537ms	remaining: 105ms
251:	learn: 19.3233971	total: 538ms	remaining: 103ms
252:	learn: 19.2845020	total: 540ms	remaining: 100ms
253:	learn: 19.2467929	total: 542ms	remaining: 98.1ms
254:	learn: 19.2252751	total: 544ms	remaining: 95.9ms
255:	learn: 19.1961836	total: 545ms	remaining: 93.7ms
256:	learn: 19.1698831	total: 547ms	remaining: 91.6ms
257:	learn: 19.1390963	total: 549ms	remaining: 89.4ms
258:	learn: 19.1134085	total: 551ms	remaining: 87.2ms
259:	learn: 19.0810088	total: 552ms	remaining: 85ms
260:	learn: 19.0468643	total: 554ms	remaining: 82.8ms
261:	learn: 19.0241528	total: 556ms	remaining: 80.6ms
262:	learn: 18.9873896	total: 558ms	remaining: 78.5ms
263:	learn: 18.9564409	total: 560ms	remaining: 76.3ms
264:	learn: 18.9275379	total: 561ms	remaining: 74.1ms
265:	learn: 18.9057621	total: 563ms	remaining: 72ms
266:	learn: 18.8784733	total: 565ms	remaining: 69.8ms
267:	learn: 18.8519024	total: 567ms	remaining: 67.7ms
268:	learn: 18.8221015	total: 569ms	remaining: 65.5ms
269:	learn: 18.8050296	total: 571ms	remaining: 63.4ms
270:	learn: 18.7723582	total: 572ms	remaining: 61.2ms
271:	learn: 18.7375207	total: 574ms	remaining: 59.1ms
272:	learn: 18.7198251	total: 576ms	remaining: 57ms
273:	learn: 18.6999233	total: 578ms	remaining: 54.8ms
274:	learn: 18.6880949	total: 579ms	remaining: 52.7ms
275:	learn: 18.6646338	total: 581ms	remaining: 50.5ms
276:	learn: 18.6542533	total: 583ms	remaining: 48.4ms
277:	learn: 18.6324754	total: 585ms	remaining: 46.3ms
278:	learn: 18.6033608	total: 587ms	remaining: 44.2ms
279:	learn: 18.5950842	total: 589ms	remaining: 42ms
280:	learn: 18.5831348	total: 590ms	remaining: 39.9ms
281:	learn: 18.5628230	total: 592ms	remaining: 37.8ms
282:	learn: 18.5537131	total: 594ms	remaining: 35.7ms
283:	learn: 18.5341601	total: 596ms	remaining: 33.6ms
284:	learn: 18.5049043	total: 597ms	remaining: 31.4ms
285:	learn: 18.4702144	total: 599ms	remaining: 29.3ms
286:	learn: 18.4458906	total: 601ms	remaining: 27.2ms
287:	learn: 18.4236945	total: 603ms	remaining: 25.1ms
288:	learn: 18.4000028	total: 605ms	remaining: 23ms
289:	learn: 18.3792071	total: 607ms	remaining: 20.9ms
290:	learn: 18.3550799	total: 609ms	remaining: 18.8ms
291:	learn: 18.3431291	total: 611ms	remaining: 16.7ms
292:	learn: 18.3192748	total: 613ms	remaining: 14.6ms
293:	learn: 18.2994765	total: 615ms	remaining: 12.5ms
294:	learn: 18.2803336	total: 617ms	remaining: 10.5ms
295:	learn: 18.2555657	total: 619ms	remaining: 8.36ms
296:	learn: 18.2452375	total: 621ms	remaining: 6.27ms
297:	learn: 18.2157329	total: 623ms	remaining: 4.18ms
298:	learn: 18.1939091	total: 624ms	remaining: 2.09ms
299:	learn: 18.1666821	total: 627ms	remaining: 0us
0:	learn: 47.2254626	total: 2.09ms	remaining: 626ms
1:	learn: 46.9962440	total: 3.92ms	remaining: 583ms
2:	learn: 46.7947817	total: 5.6ms	remaining: 554ms
3:	learn: 46.6009777	total: 7.42ms	remaining: 549ms
4:	learn: 46.4107506	total: 9.15ms	remaining: 540ms
5:	learn: 46.2304787	total: 10.9ms	remaining: 534ms
6:	learn: 46.0769010	total: 12.8ms	remaining: 536ms
7:	learn: 45.8479541	total: 14.6ms	remaining: 534ms
8:	learn: 45.6554474	total: 16.4ms	remaining: 531ms
9:	learn: 45.4695217	total: 18.2ms	remaining: 528ms
10:	learn: 45.3391898	total: 20ms	remaining: 527ms
11:	learn: 45.2162888	total: 21.8ms	remaining: 522ms
12:	learn: 45.0198019	total: 23.5ms	remaining: 519ms
13:	learn: 44.8657812	total: 25.2ms	remaining: 516ms
14:	learn: 44.6907876	total: 27.1ms	remaining: 514ms
15:	learn: 44.5187501	total: 28.8ms	remaining: 511ms
16:	learn: 44.3794840	total: 30.7ms	remaining: 510ms
17:	learn: 44.2123440	total: 32.4ms	remaining: 508ms
18:	learn: 43.9823683	total: 34.3ms	remaining: 507ms
19:	learn: 43.8334161	total: 36ms	remaining: 503ms
20:	learn: 43.6533851	total: 37.8ms	remaining: 502ms
21:	learn: 43.4873096	total: 39.5ms	remaining: 499ms
22:	learn: 43.3078128	total: 41.3ms	remaining: 497ms
23:	learn: 43.1291584	total: 43.1ms	remaining: 495ms
24:	learn: 42.9038764	total: 44.9ms	remaining: 494ms
25:	learn: 42.7991582	total: 46.9ms	remaining: 494ms
26:	learn: 42.6587504	total: 48.9ms	remaining: 494ms
27:	learn: 42.5119763	total: 50.8ms	remaining: 494ms
28:	learn: 42.3234340	total: 52.5ms	remaining: 491ms
29:	learn: 42.1101845	total: 54.4ms	remaining: 489ms
30:	learn: 41.9000580	total: 56.1ms	remaining: 487ms
31:	learn: 41.7204596	total: 57.9ms	remaining: 485ms
32:	learn: 41.5845326	total: 59.7ms	remaining: 483ms
33:	learn: 41.4109127	total: 61.5ms	remaining: 481ms
34:	learn: 41.2849186	total: 63.4ms	remaining: 480ms
35:	learn: 41.1201146	total: 65.4ms	remaining: 479ms
36:	learn: 40.9751458	total: 67.3ms	remaining: 479ms
37:	learn: 40.8727129	total: 69.1ms	remaining: 477ms
38:	learn: 40.7891069	total: 70.9ms	remaining: 474ms
39:	learn: 40.6583517	total: 72.7ms	remaining: 472ms
40:	learn: 40.5168941	total: 74.5ms	remaining: 470ms
41:	learn: 40.3616647	total: 76.2ms	remaining: 468ms
42:	learn: 40.1969130	total: 78ms	remaining: 466ms
43:	learn: 40.0297025	total: 79.8ms	remaining: 464ms
44:	learn: 39.8598257	total: 81.7ms	remaining: 463ms
45:	learn: 39.7021499	total: 83.5ms	remaining: 461ms
46:	learn: 39.5495314	total: 85.2ms	remaining: 459ms
47:	learn: 39.3841769	total: 87.1ms	remaining: 457ms
48:	learn: 39.2808351	total: 88.8ms	remaining: 455ms
49:	learn: 39.1659075	total: 90.4ms	remaining: 452ms
50:	learn: 39.0788946	total: 92.2ms	remaining: 450ms
51:	learn: 38.9854228	total: 93.9ms	remaining: 448ms
52:	learn: 38.8744280	total: 95.7ms	remaining: 446ms
53:	learn: 38.8038180	total: 97.6ms	remaining: 445ms
54:	learn: 38.6601092	total: 99.8ms	remaining: 445ms
55:	learn: 38.5307162	total: 102ms	remaining: 443ms
56:	learn: 38.3853058	total: 103ms	remaining: 441ms
57:	learn: 38.2646111	total: 105ms	remaining: 439ms
58:	learn: 38.0986994	total: 107ms	remaining: 438ms
59:	learn: 37.9504300	total: 109ms	remaining: 436ms
60:	learn: 37.8361530	total: 111ms	remaining: 434ms
61:	learn: 37.7340741	total: 113ms	remaining: 433ms
62:	learn: 37.6456462	total: 114ms	remaining: 431ms
63:	learn: 37.5456802	total: 116ms	remaining: 429ms
64:	learn: 37.4417261	total: 118ms	remaining: 427ms
65:	learn: 37.2699256	total: 120ms	remaining: 426ms
66:	learn: 37.1128139	total: 122ms	remaining: 424ms
67:	learn: 36.9766499	total: 124ms	remaining: 422ms
68:	learn: 36.8707320	total: 126ms	remaining: 421ms
69:	learn: 36.7198828	total: 128ms	remaining: 419ms
70:	learn: 36.6435535	total: 129ms	remaining: 418ms
71:	learn: 36.5154607	total: 131ms	remaining: 416ms
72:	learn: 36.4273611	total: 133ms	remaining: 414ms
73:	learn: 36.3132857	total: 135ms	remaining: 413ms
74:	learn: 36.2396892	total: 137ms	remaining: 411ms
75:	learn: 36.1070444	total: 139ms	remaining: 410ms
76:	learn: 36.0360131	total: 141ms	remaining: 409ms
77:	learn: 35.9206901	total: 143ms	remaining: 407ms
78:	learn: 35.8347946	total: 145ms	remaining: 405ms
79:	learn: 35.7380762	total: 147ms	remaining: 404ms
80:	learn: 35.5844199	total: 149ms	remaining: 402ms
81:	learn: 35.4436363	total: 153ms	remaining: 406ms
82:	learn: 35.2923273	total: 156ms	remaining: 408ms
83:	learn: 35.1413305	total: 159ms	remaining: 409ms
84:	learn: 35.0476011	total: 163ms	remaining: 411ms
85:	learn: 34.9732674	total: 167ms	remaining: 416ms
86:	learn: 34.8693388	total: 172ms	remaining: 421ms
87:	learn: 34.7775982	total: 174ms	remaining: 420ms
88:	learn: 34.6552091	total: 177ms	remaining: 420ms
89:	learn: 34.5350778	total: 182ms	remaining: 424ms
90:	learn: 34.4614889	total: 184ms	remaining: 423ms
91:	learn: 34.3913141	total: 186ms	remaining: 421ms
92:	learn: 34.3365906	total: 188ms	remaining: 419ms
93:	learn: 34.2636353	total: 190ms	remaining: 417ms
94:	learn: 34.1695317	total: 192ms	remaining: 415ms
95:	learn: 34.0392726	total: 195ms	remaining: 414ms
96:	learn: 33.9869569	total: 197ms	remaining: 412ms
97:	learn: 33.8699469	total: 199ms	remaining: 410ms
98:	learn: 33.7534030	total: 202ms	remaining: 410ms
99:	learn: 33.6214442	total: 204ms	remaining: 409ms
100:	learn: 33.5412261	total: 207ms	remaining: 407ms
101:	learn: 33.4179107	total: 209ms	remaining: 406ms
102:	learn: 33.3069958	total: 211ms	remaining: 404ms
103:	learn: 33.1922064	total: 214ms	remaining: 402ms
104:	learn: 33.1140730	total: 216ms	remaining: 401ms
105:	learn: 33.0451570	total: 218ms	remaining: 400ms
106:	learn: 32.9497824	total: 221ms	remaining: 398ms
107:	learn: 32.8859008	total: 223ms	remaining: 396ms
108:	learn: 32.8023490	total: 225ms	remaining: 394ms
109:	learn: 32.7364184	total: 227ms	remaining: 392ms
110:	learn: 32.6472882	total: 229ms	remaining: 390ms
111:	learn: 32.5548679	total: 231ms	remaining: 388ms
112:	learn: 32.4940735	total: 233ms	remaining: 385ms
113:	learn: 32.3998708	total: 235ms	remaining: 383ms
114:	learn: 32.3379645	total: 237ms	remaining: 382ms
115:	learn: 32.2330069	total: 240ms	remaining: 381ms
116:	learn: 32.1290345	total: 243ms	remaining: 379ms
117:	learn: 32.0286561	total: 245ms	remaining: 377ms
118:	learn: 31.9046296	total: 247ms	remaining: 375ms
119:	learn: 31.8283274	total: 249ms	remaining: 373ms
120:	learn: 31.7251159	total: 251ms	remaining: 371ms
121:	learn: 31.6769050	total: 252ms	remaining: 368ms
122:	learn: 31.5958754	total: 254ms	remaining: 366ms
123:	learn: 31.5183196	total: 256ms	remaining: 364ms
124:	learn: 31.4335206	total: 258ms	remaining: 362ms
125:	learn: 31.3562393	total: 260ms	remaining: 359ms
126:	learn: 31.2788742	total: 262ms	remaining: 357ms
127:	learn: 31.1732626	total: 264ms	remaining: 355ms
128:	learn: 31.0477560	total: 266ms	remaining: 352ms
129:	learn: 30.9763737	total: 268ms	remaining: 350ms
130:	learn: 30.8656503	total: 269ms	remaining: 348ms
131:	learn: 30.7441377	total: 271ms	remaining: 345ms
132:	learn: 30.6818439	total: 273ms	remaining: 343ms
133:	learn: 30.5691925	total: 275ms	remaining: 341ms
134:	learn: 30.4989367	total: 277ms	remaining: 338ms
135:	learn: 30.4107901	total: 279ms	remaining: 336ms
136:	learn: 30.3517383	total: 281ms	remaining: 334ms
137:	learn: 30.2531868	total: 282ms	remaining: 331ms
138:	learn: 30.1881532	total: 284ms	remaining: 329ms
139:	learn: 30.1055334	total: 286ms	remaining: 327ms
140:	learn: 30.0704958	total: 288ms	remaining: 325ms
141:	learn: 29.9757517	total: 290ms	remaining: 323ms
142:	learn: 29.8755319	total: 292ms	remaining: 320ms
143:	learn: 29.7785283	total: 294ms	remaining: 318ms
144:	learn: 29.6827605	total: 295ms	remaining: 316ms
145:	learn: 29.6179053	total: 297ms	remaining: 314ms
146:	learn: 29.5243258	total: 299ms	remaining: 311ms
147:	learn: 29.4754676	total: 301ms	remaining: 310ms
148:	learn: 29.3858220	total: 303ms	remaining: 308ms
149:	learn: 29.3305935	total: 305ms	remaining: 305ms
150:	learn: 29.2646346	total: 307ms	remaining: 303ms
151:	learn: 29.1941735	total: 309ms	remaining: 301ms
152:	learn: 29.1249773	total: 311ms	remaining: 299ms
153:	learn: 29.0686401	total: 313ms	remaining: 296ms
154:	learn: 28.9920782	total: 315ms	remaining: 294ms
155:	learn: 28.9517001	total: 316ms	remaining: 292ms
156:	learn: 28.9103768	total: 318ms	remaining: 290ms
157:	learn: 28.8560564	total: 320ms	remaining: 288ms
158:	learn: 28.8052048	total: 322ms	remaining: 286ms
159:	learn: 28.7596382	total: 324ms	remaining: 284ms
160:	learn: 28.6784449	total: 326ms	remaining: 282ms
161:	learn: 28.6077184	total: 328ms	remaining: 279ms
162:	learn: 28.5268277	total: 330ms	remaining: 277ms
163:	learn: 28.4941481	total: 332ms	remaining: 275ms
164:	learn: 28.4582558	total: 334ms	remaining: 273ms
165:	learn: 28.4048727	total: 336ms	remaining: 271ms
166:	learn: 28.3235976	total: 338ms	remaining: 269ms
167:	learn: 28.2546621	total: 340ms	remaining: 267ms
168:	learn: 28.2145488	total: 342ms	remaining: 265ms
169:	learn: 28.1091079	total: 346ms	remaining: 264ms
170:	learn: 28.0211361	total: 349ms	remaining: 263ms
171:	learn: 27.9536661	total: 352ms	remaining: 262ms
172:	learn: 27.9196123	total: 354ms	remaining: 260ms
173:	learn: 27.8672763	total: 357ms	remaining: 259ms
174:	learn: 27.7913399	total: 360ms	remaining: 257ms
175:	learn: 27.7349855	total: 362ms	remaining: 255ms
176:	learn: 27.6500128	total: 364ms	remaining: 253ms
177:	learn: 27.6002421	total: 367ms	remaining: 251ms
178:	learn: 27.5378769	total: 369ms	remaining: 249ms
179:	learn: 27.5093385	total: 371ms	remaining: 247ms
180:	learn: 27.4514891	total: 373ms	remaining: 245ms
181:	learn: 27.3987466	total: 375ms	remaining: 243ms
182:	learn: 27.3078378	total: 377ms	remaining: 241ms
183:	learn: 27.2302125	total: 378ms	remaining: 239ms
184:	learn: 27.1654660	total: 380ms	remaining: 236ms
185:	learn: 27.0771330	total: 382ms	remaining: 234ms
186:	learn: 27.0195046	total: 384ms	remaining: 232ms
187:	learn: 26.9819845	total: 386ms	remaining: 230ms
188:	learn: 26.9188037	total: 388ms	remaining: 228ms
189:	learn: 26.8791319	total: 390ms	remaining: 226ms
190:	learn: 26.8152339	total: 391ms	remaining: 223ms
191:	learn: 26.7928500	total: 393ms	remaining: 221ms
192:	learn: 26.7096857	total: 395ms	remaining: 219ms
193:	learn: 26.6377110	total: 397ms	remaining: 217ms
194:	learn: 26.5735627	total: 399ms	remaining: 215ms
195:	learn: 26.5066526	total: 400ms	remaining: 212ms
196:	learn: 26.4443901	total: 402ms	remaining: 210ms
197:	learn: 26.3871804	total: 404ms	remaining: 208ms
198:	learn: 26.3195647	total: 406ms	remaining: 206ms
199:	learn: 26.2924038	total: 408ms	remaining: 204ms
200:	learn: 26.2655991	total: 410ms	remaining: 202ms
201:	learn: 26.2420267	total: 411ms	remaining: 200ms
202:	learn: 26.1651007	total: 413ms	remaining: 197ms
203:	learn: 26.1067523	total: 415ms	remaining: 195ms
204:	learn: 26.0563872	total: 417ms	remaining: 193ms
205:	learn: 26.0004920	total: 419ms	remaining: 191ms
206:	learn: 25.9512070	total: 420ms	remaining: 189ms
207:	learn: 25.9167990	total: 422ms	remaining: 187ms
208:	learn: 25.8372689	total: 424ms	remaining: 185ms
209:	learn: 25.7879704	total: 426ms	remaining: 182ms
210:	learn: 25.7499820	total: 428ms	remaining: 180ms
211:	learn: 25.6868880	total: 429ms	remaining: 178ms
212:	learn: 25.6395687	total: 431ms	remaining: 176ms
213:	learn: 25.5808450	total: 433ms	remaining: 174ms
214:	learn: 25.5181935	total: 435ms	remaining: 172ms
215:	learn: 25.4978378	total: 437ms	remaining: 170ms
216:	learn: 25.4366659	total: 439ms	remaining: 168ms
217:	learn: 25.3775286	total: 441ms	remaining: 166ms
218:	learn: 25.3189171	total: 443ms	remaining: 164ms
219:	learn: 25.2549914	total: 445ms	remaining: 162ms
220:	learn: 25.2259186	total: 447ms	remaining: 160ms
221:	learn: 25.1640975	total: 449ms	remaining: 158ms
222:	learn: 25.1029457	total: 451ms	remaining: 156ms
223:	learn: 25.0692285	total: 453ms	remaining: 154ms
224:	learn: 25.0210450	total: 455ms	remaining: 152ms
225:	learn: 24.9802463	total: 457ms	remaining: 150ms
226:	learn: 24.9410052	total: 459ms	remaining: 148ms
227:	learn: 24.9034472	total: 461ms	remaining: 145ms
228:	learn: 24.8426272	total: 478ms	remaining: 148ms
229:	learn: 24.8203072	total: 480ms	remaining: 146ms
230:	learn: 24.7645717	total: 482ms	remaining: 144ms
231:	learn: 24.7188723	total: 483ms	remaining: 142ms
232:	learn: 24.6825257	total: 485ms	remaining: 140ms
233:	learn: 24.6042517	total: 487ms	remaining: 137ms
234:	learn: 24.5462431	total: 489ms	remaining: 135ms
235:	learn: 24.5035391	total: 491ms	remaining: 133ms
236:	learn: 24.4662327	total: 492ms	remaining: 131ms
237:	learn: 24.3985629	total: 494ms	remaining: 129ms
238:	learn: 24.3402364	total: 496ms	remaining: 127ms
239:	learn: 24.3068217	total: 498ms	remaining: 124ms
240:	learn: 24.2684506	total: 500ms	remaining: 122ms
241:	learn: 24.2201115	total: 502ms	remaining: 120ms
242:	learn: 24.1703042	total: 503ms	remaining: 118ms
243:	learn: 24.1175357	total: 505ms	remaining: 116ms
244:	learn: 24.0593431	total: 507ms	remaining: 114ms
245:	learn: 24.0184605	total: 509ms	remaining: 112ms
246:	learn: 23.9755224	total: 511ms	remaining: 110ms
247:	learn: 23.9325681	total: 513ms	remaining: 107ms
248:	learn: 23.8827099	total: 514ms	remaining: 105ms
249:	learn: 23.8545353	total: 516ms	remaining: 103ms
250:	learn: 23.8118920	total: 518ms	remaining: 101ms
251:	learn: 23.7546697	total: 520ms	remaining: 99ms
252:	learn: 23.6953497	total: 521ms	remaining: 96.9ms
253:	learn: 23.6391422	total: 523ms	remaining: 94.8ms
254:	learn: 23.5800782	total: 525ms	remaining: 92.7ms
255:	learn: 23.5399450	total: 527ms	remaining: 90.6ms
256:	learn: 23.5027690	total: 529ms	remaining: 88.5ms
257:	learn: 23.4500453	total: 531ms	remaining: 86.5ms
258:	learn: 23.4168029	total: 533ms	remaining: 84.4ms
259:	learn: 23.3627592	total: 535ms	remaining: 82.3ms
260:	learn: 23.3111465	total: 537ms	remaining: 80.2ms
261:	learn: 23.2580725	total: 539ms	remaining: 78.1ms
262:	learn: 23.2100223	total: 541ms	remaining: 76.1ms
263:	learn: 23.1664560	total: 542ms	remaining: 74ms
264:	learn: 23.1122913	total: 544ms	remaining: 71.9ms
265:	learn: 23.0949418	total: 546ms	remaining: 69.8ms
266:	learn: 23.0395705	total: 549ms	remaining: 67.8ms
267:	learn: 22.9890382	total: 552ms	remaining: 65.9ms
268:	learn: 22.9467412	total: 555ms	remaining: 64ms
269:	learn: 22.9227067	total: 559ms	remaining: 62.1ms
270:	learn: 22.9072742	total: 563ms	remaining: 60.2ms
271:	learn: 22.8703917	total: 567ms	remaining: 58.4ms
272:	learn: 22.8584619	total: 571ms	remaining: 56.5ms
273:	learn: 22.8314721	total: 574ms	remaining: 54.5ms
274:	learn: 22.7849149	total: 578ms	remaining: 52.6ms
275:	learn: 22.7608809	total: 581ms	remaining: 50.5ms
276:	learn: 22.7112889	total: 583ms	remaining: 48.4ms
277:	learn: 22.6731659	total: 585ms	remaining: 46.3ms
278:	learn: 22.6283301	total: 587ms	remaining: 44.2ms
279:	learn: 22.6051717	total: 590ms	remaining: 42.1ms
280:	learn: 22.5798107	total: 592ms	remaining: 40ms
281:	learn: 22.5409164	total: 594ms	remaining: 37.9ms
282:	learn: 22.5068225	total: 596ms	remaining: 35.8ms
283:	learn: 22.4854153	total: 598ms	remaining: 33.7ms
284:	learn: 22.4407676	total: 600ms	remaining: 31.6ms
285:	learn: 22.3974458	total: 603ms	remaining: 29.5ms
286:	learn: 22.3725926	total: 605ms	remaining: 27.4ms
287:	learn: 22.3352073	total: 607ms	remaining: 25.3ms
288:	learn: 22.3111087	total: 609ms	remaining: 23.2ms
289:	learn: 22.2660649	total: 611ms	remaining: 21.1ms
290:	learn: 22.2248776	total: 614ms	remaining: 19ms
291:	learn: 22.2143307	total: 616ms	remaining: 16.9ms
292:	learn: 22.1959320	total: 618ms	remaining: 14.8ms
293:	learn: 22.1763587	total: 620ms	remaining: 12.6ms
294:	learn: 22.1394795	total: 622ms	remaining: 10.5ms
295:	learn: 22.1204204	total: 624ms	remaining: 8.43ms
296:	learn: 22.0812931	total: 626ms	remaining: 6.32ms
297:	learn: 22.0437126	total: 628ms	remaining: 4.21ms
298:	learn: 21.9977048	total: 631ms	remaining: 2.11ms
299:	learn: 21.9714822	total: 633ms	remaining: 0us
0:	learn: 46.7882195	total: 2.12ms	remaining: 633ms
1:	learn: 46.5884646	total: 3.91ms	remaining: 582ms
2:	learn: 46.3506322	total: 5.89ms	remaining: 583ms
3:	learn: 46.2092160	total: 7.64ms	remaining: 565ms
4:	learn: 46.0142066	total: 9.38ms	remaining: 553ms
5:	learn: 45.8472715	total: 11.2ms	remaining: 549ms
6:	learn: 45.6698068	total: 13.1ms	remaining: 549ms
7:	learn: 45.4336440	total: 14.9ms	remaining: 544ms
8:	learn: 45.2797290	total: 16.7ms	remaining: 541ms
9:	learn: 45.0906470	total: 18.5ms	remaining: 535ms
10:	learn: 44.9492695	total: 20.3ms	remaining: 534ms
11:	learn: 44.7236500	total: 22.2ms	remaining: 532ms
12:	learn: 44.5140850	total: 23.9ms	remaining: 528ms
13:	learn: 44.3073280	total: 25.6ms	remaining: 523ms
14:	learn: 44.1772124	total: 27.6ms	remaining: 524ms
15:	learn: 43.9740742	total: 29.3ms	remaining: 521ms
16:	learn: 43.8793189	total: 31.2ms	remaining: 519ms
17:	learn: 43.7382830	total: 32.9ms	remaining: 515ms
18:	learn: 43.5300660	total: 34.6ms	remaining: 512ms
19:	learn: 43.3822970	total: 36.4ms	remaining: 509ms
20:	learn: 43.1922004	total: 38.1ms	remaining: 506ms
21:	learn: 43.0312758	total: 40ms	remaining: 506ms
22:	learn: 42.8515845	total: 41.9ms	remaining: 505ms
23:	learn: 42.6572029	total: 43.8ms	remaining: 504ms
24:	learn: 42.5323323	total: 45.7ms	remaining: 502ms
25:	learn: 42.4131705	total: 47.5ms	remaining: 500ms
26:	learn: 42.2891188	total: 49.4ms	remaining: 499ms
27:	learn: 42.1257091	total: 51.3ms	remaining: 499ms
28:	learn: 41.9242823	total: 53.2ms	remaining: 497ms
29:	learn: 41.7234670	total: 55.1ms	remaining: 496ms
30:	learn: 41.5095945	total: 57.2ms	remaining: 497ms
31:	learn: 41.3653879	total: 59.1ms	remaining: 495ms
32:	learn: 41.2542208	total: 61ms	remaining: 494ms
33:	learn: 41.0848706	total: 62.9ms	remaining: 492ms
34:	learn: 40.9831867	total: 64.7ms	remaining: 490ms
35:	learn: 40.8630639	total: 66.5ms	remaining: 488ms
36:	learn: 40.7328137	total: 70.4ms	remaining: 500ms
37:	learn: 40.5951341	total: 74.1ms	remaining: 511ms
38:	learn: 40.4365274	total: 77.2ms	remaining: 516ms
39:	learn: 40.2797648	total: 79.9ms	remaining: 519ms
40:	learn: 40.1289788	total: 82.6ms	remaining: 522ms
41:	learn: 40.0058458	total: 85.3ms	remaining: 524ms
42:	learn: 39.8370834	total: 88.3ms	remaining: 528ms
43:	learn: 39.6985409	total: 90.5ms	remaining: 527ms
44:	learn: 39.5235705	total: 92.4ms	remaining: 524ms
45:	learn: 39.3677015	total: 95.1ms	remaining: 525ms
46:	learn: 39.2483931	total: 97.1ms	remaining: 523ms
47:	learn: 39.0965096	total: 98.9ms	remaining: 519ms
48:	learn: 38.9335198	total: 101ms	remaining: 517ms
49:	learn: 38.7833550	total: 103ms	remaining: 516ms
50:	learn: 38.6115389	total: 105ms	remaining: 513ms
51:	learn: 38.5074367	total: 107ms	remaining: 510ms
52:	learn: 38.4184861	total: 109ms	remaining: 507ms
53:	learn: 38.3463771	total: 110ms	remaining: 503ms
54:	learn: 38.1989304	total: 112ms	remaining: 500ms
55:	learn: 38.0892818	total: 114ms	remaining: 497ms
56:	learn: 37.9633329	total: 116ms	remaining: 494ms
57:	learn: 37.8352237	total: 118ms	remaining: 491ms
58:	learn: 37.7326179	total: 119ms	remaining: 488ms
59:	learn: 37.6324986	total: 121ms	remaining: 485ms
60:	learn: 37.4844421	total: 123ms	remaining: 482ms
61:	learn: 37.3486716	total: 125ms	remaining: 479ms
62:	learn: 37.2286209	total: 127ms	remaining: 476ms
63:	learn: 37.1221620	total: 128ms	remaining: 473ms
64:	learn: 36.9753174	total: 130ms	remaining: 470ms
65:	learn: 36.8391663	total: 132ms	remaining: 467ms
66:	learn: 36.7242295	total: 134ms	remaining: 465ms
67:	learn: 36.5999990	total: 135ms	remaining: 462ms
68:	learn: 36.5008941	total: 137ms	remaining: 459ms
69:	learn: 36.3581143	total: 139ms	remaining: 456ms
70:	learn: 36.2377355	total: 141ms	remaining: 454ms
71:	learn: 36.1009384	total: 143ms	remaining: 451ms
72:	learn: 35.9753867	total: 144ms	remaining: 449ms
73:	learn: 35.8718006	total: 146ms	remaining: 446ms
74:	learn: 35.7364519	total: 148ms	remaining: 443ms
75:	learn: 35.6637660	total: 150ms	remaining: 441ms
76:	learn: 35.5750025	total: 151ms	remaining: 438ms
77:	learn: 35.4751012	total: 153ms	remaining: 436ms
78:	learn: 35.3887695	total: 155ms	remaining: 433ms
79:	learn: 35.3061758	total: 157ms	remaining: 431ms
80:	learn: 35.1634219	total: 158ms	remaining: 428ms
81:	learn: 35.0419647	total: 160ms	remaining: 426ms
82:	learn: 34.9120008	total: 162ms	remaining: 424ms
83:	learn: 34.7959758	total: 164ms	remaining: 421ms
84:	learn: 34.7318897	total: 166ms	remaining: 419ms
85:	learn: 34.6075305	total: 167ms	remaining: 416ms
86:	learn: 34.5296638	total: 169ms	remaining: 414ms
87:	learn: 34.4631014	total: 171ms	remaining: 411ms
88:	learn: 34.3443888	total: 172ms	remaining: 409ms
89:	learn: 34.2429640	total: 174ms	remaining: 406ms
90:	learn: 34.0985375	total: 176ms	remaining: 404ms
91:	learn: 33.9877467	total: 178ms	remaining: 402ms
92:	learn: 33.9329773	total: 180ms	remaining: 400ms
93:	learn: 33.8065532	total: 181ms	remaining: 397ms
94:	learn: 33.7243192	total: 183ms	remaining: 395ms
95:	learn: 33.5898787	total: 185ms	remaining: 393ms
96:	learn: 33.5045369	total: 186ms	remaining: 390ms
97:	learn: 33.3957820	total: 188ms	remaining: 388ms
98:	learn: 33.3044825	total: 190ms	remaining: 386ms
99:	learn: 33.2347533	total: 192ms	remaining: 383ms
100:	learn: 33.1590017	total: 194ms	remaining: 382ms
101:	learn: 33.0401175	total: 195ms	remaining: 379ms
102:	learn: 32.9414651	total: 197ms	remaining: 377ms
103:	learn: 32.8985717	total: 199ms	remaining: 375ms
104:	learn: 32.8334678	total: 201ms	remaining: 373ms
105:	learn: 32.7637771	total: 202ms	remaining: 371ms
106:	learn: 32.6926058	total: 204ms	remaining: 368ms
107:	learn: 32.6018681	total: 206ms	remaining: 367ms
108:	learn: 32.5514342	total: 208ms	remaining: 365ms
109:	learn: 32.4929824	total: 210ms	remaining: 363ms
110:	learn: 32.4047019	total: 212ms	remaining: 361ms
111:	learn: 32.3448383	total: 214ms	remaining: 359ms
112:	learn: 32.2323475	total: 216ms	remaining: 357ms
113:	learn: 32.1549291	total: 217ms	remaining: 355ms
114:	learn: 32.0887819	total: 219ms	remaining: 353ms
115:	learn: 31.9458161	total: 221ms	remaining: 350ms
116:	learn: 31.8374918	total: 223ms	remaining: 348ms
117:	learn: 31.7451979	total: 225ms	remaining: 346ms
118:	learn: 31.6419904	total: 226ms	remaining: 344ms
119:	learn: 31.5989171	total: 228ms	remaining: 342ms
120:	learn: 31.4972365	total: 230ms	remaining: 340ms
121:	learn: 31.4571865	total: 232ms	remaining: 338ms
122:	learn: 31.3699383	total: 233ms	remaining: 336ms
123:	learn: 31.3172933	total: 235ms	remaining: 334ms
124:	learn: 31.2441634	total: 237ms	remaining: 332ms
125:	learn: 31.1967687	total: 239ms	remaining: 330ms
126:	learn: 31.1267475	total: 241ms	remaining: 328ms
127:	learn: 31.0574737	total: 243ms	remaining: 326ms
128:	learn: 30.9518421	total: 245ms	remaining: 324ms
129:	learn: 30.9068766	total: 247ms	remaining: 322ms
130:	learn: 30.7847031	total: 248ms	remaining: 320ms
131:	learn: 30.7194739	total: 250ms	remaining: 318ms
132:	learn: 30.6215712	total: 252ms	remaining: 316ms
133:	learn: 30.5325379	total: 254ms	remaining: 315ms
134:	learn: 30.4571307	total: 256ms	remaining: 313ms
135:	learn: 30.3521585	total: 258ms	remaining: 311ms
136:	learn: 30.2679211	total: 260ms	remaining: 309ms
137:	learn: 30.1992390	total: 261ms	remaining: 307ms
138:	learn: 30.1076003	total: 264ms	remaining: 305ms
139:	learn: 30.0272700	total: 268ms	remaining: 306ms
140:	learn: 29.9889391	total: 271ms	remaining: 306ms
141:	learn: 29.8984303	total: 274ms	remaining: 305ms
142:	learn: 29.8154581	total: 278ms	remaining: 306ms
143:	learn: 29.7204090	total: 283ms	remaining: 306ms
144:	learn: 29.6679621	total: 286ms	remaining: 306ms
145:	learn: 29.6112521	total: 288ms	remaining: 304ms
146:	learn: 29.5455079	total: 292ms	remaining: 304ms
147:	learn: 29.4976033	total: 295ms	remaining: 303ms
148:	learn: 29.4677338	total: 297ms	remaining: 301ms
149:	learn: 29.3857150	total: 299ms	remaining: 299ms
150:	learn: 29.3291675	total: 302ms	remaining: 298ms
151:	learn: 29.2662418	total: 304ms	remaining: 296ms
152:	learn: 29.2202571	total: 306ms	remaining: 294ms
153:	learn: 29.1664717	total: 308ms	remaining: 292ms
154:	learn: 29.0813524	total: 310ms	remaining: 290ms
155:	learn: 29.0044791	total: 313ms	remaining: 289ms
156:	learn: 28.9106720	total: 315ms	remaining: 287ms
157:	learn: 28.8136881	total: 317ms	remaining: 285ms
158:	learn: 28.7810142	total: 320ms	remaining: 283ms
159:	learn: 28.6935487	total: 322ms	remaining: 281ms
160:	learn: 28.6114279	total: 324ms	remaining: 279ms
161:	learn: 28.5378858	total: 326ms	remaining: 278ms
162:	learn: 28.4789687	total: 329ms	remaining: 276ms
163:	learn: 28.4498805	total: 331ms	remaining: 275ms
164:	learn: 28.3662541	total: 333ms	remaining: 272ms
165:	learn: 28.3294752	total: 335ms	remaining: 270ms
166:	learn: 28.2614279	total: 337ms	remaining: 268ms
167:	learn: 28.2101931	total: 339ms	remaining: 266ms
168:	learn: 28.1459434	total: 341ms	remaining: 264ms
169:	learn: 28.0530035	total: 343ms	remaining: 262ms
170:	learn: 27.9725048	total: 345ms	remaining: 261ms
171:	learn: 27.9430707	total: 348ms	remaining: 259ms
172:	learn: 27.9091981	total: 350ms	remaining: 257ms
173:	learn: 27.8489510	total: 352ms	remaining: 255ms
174:	learn: 27.7792396	total: 354ms	remaining: 253ms
175:	learn: 27.7130814	total: 356ms	remaining: 250ms
176:	learn: 27.6375817	total: 357ms	remaining: 248ms
177:	learn: 27.5949295	total: 359ms	remaining: 246ms
178:	learn: 27.5324755	total: 361ms	remaining: 244ms
179:	learn: 27.4853102	total: 363ms	remaining: 242ms
180:	learn: 27.4228454	total: 365ms	remaining: 240ms
181:	learn: 27.3882648	total: 367ms	remaining: 238ms
182:	learn: 27.3253251	total: 368ms	remaining: 236ms
183:	learn: 27.2730492	total: 370ms	remaining: 233ms
184:	learn: 27.2098191	total: 372ms	remaining: 231ms
185:	learn: 27.1241765	total: 374ms	remaining: 229ms
186:	learn: 27.0619479	total: 375ms	remaining: 227ms
187:	learn: 27.0269849	total: 377ms	remaining: 225ms
188:	learn: 26.9622544	total: 379ms	remaining: 222ms
189:	learn: 26.8941527	total: 381ms	remaining: 220ms
190:	learn: 26.8240108	total: 383ms	remaining: 218ms
191:	learn: 26.7691728	total: 384ms	remaining: 216ms
192:	learn: 26.6961922	total: 386ms	remaining: 214ms
193:	learn: 26.6518084	total: 388ms	remaining: 212ms
194:	learn: 26.6083803	total: 390ms	remaining: 210ms
195:	learn: 26.5888380	total: 392ms	remaining: 208ms
196:	learn: 26.5465450	total: 394ms	remaining: 206ms
197:	learn: 26.5207671	total: 395ms	remaining: 204ms
198:	learn: 26.4657654	total: 397ms	remaining: 202ms
199:	learn: 26.4432179	total: 399ms	remaining: 200ms
200:	learn: 26.4160908	total: 401ms	remaining: 197ms
201:	learn: 26.3990943	total: 403ms	remaining: 195ms
202:	learn: 26.3221146	total: 405ms	remaining: 193ms
203:	learn: 26.2666602	total: 406ms	remaining: 191ms
204:	learn: 26.2468127	total: 408ms	remaining: 189ms
205:	learn: 26.1896825	total: 410ms	remaining: 187ms
206:	learn: 26.1256298	total: 412ms	remaining: 185ms
207:	learn: 26.0909286	total: 413ms	remaining: 183ms
208:	learn: 26.0225070	total: 415ms	remaining: 181ms
209:	learn: 25.9936666	total: 418ms	remaining: 179ms
210:	learn: 25.9573963	total: 420ms	remaining: 177ms
211:	learn: 25.9059536	total: 421ms	remaining: 175ms
212:	learn: 25.8426638	total: 423ms	remaining: 173ms
213:	learn: 25.7891099	total: 425ms	remaining: 171ms
214:	learn: 25.7308213	total: 427ms	remaining: 169ms
215:	learn: 25.7038724	total: 428ms	remaining: 167ms
216:	learn: 25.6536411	total: 430ms	remaining: 165ms
217:	learn: 25.5957951	total: 432ms	remaining: 162ms
218:	learn: 25.5554072	total: 434ms	remaining: 160ms
219:	learn: 25.5039556	total: 436ms	remaining: 158ms
220:	learn: 25.4769625	total: 437ms	remaining: 156ms
221:	learn: 25.4442729	total: 439ms	remaining: 154ms
222:	learn: 25.3783977	total: 442ms	remaining: 153ms
223:	learn: 25.3627155	total: 445ms	remaining: 151ms
224:	learn: 25.3523227	total: 448ms	remaining: 149ms
225:	learn: 25.3088874	total: 450ms	remaining: 147ms
226:	learn: 25.2643503	total: 453ms	remaining: 146ms
227:	learn: 25.2476728	total: 456ms	remaining: 144ms
228:	learn: 25.1890875	total: 458ms	remaining: 142ms
229:	learn: 25.1675600	total: 461ms	remaining: 140ms
230:	learn: 25.1403308	total: 462ms	remaining: 138ms
231:	learn: 25.1025987	total: 464ms	remaining: 136ms
232:	learn: 25.0360607	total: 466ms	remaining: 134ms
233:	learn: 24.9745941	total: 469ms	remaining: 132ms
234:	learn: 24.9567997	total: 471ms	remaining: 130ms
235:	learn: 24.9282562	total: 474ms	remaining: 129ms
236:	learn: 24.8698936	total: 476ms	remaining: 127ms
237:	learn: 24.8558798	total: 478ms	remaining: 125ms
238:	learn: 24.8247587	total: 480ms	remaining: 123ms
239:	learn: 24.7771385	total: 482ms	remaining: 120ms
240:	learn: 24.7610276	total: 484ms	remaining: 118ms
241:	learn: 24.7354098	total: 486ms	remaining: 116ms
242:	learn: 24.6864772	total: 487ms	remaining: 114ms
243:	learn: 24.6725697	total: 489ms	remaining: 112ms
244:	learn: 24.6273757	total: 491ms	remaining: 110ms
245:	learn: 24.5977458	total: 493ms	remaining: 108ms
246:	learn: 24.5802706	total: 495ms	remaining: 106ms
247:	learn: 24.5407602	total: 496ms	remaining: 104ms
248:	learn: 24.5245607	total: 498ms	remaining: 102ms
249:	learn: 24.5095271	total: 500ms	remaining: 100ms
250:	learn: 24.4803695	total: 502ms	remaining: 98ms
251:	learn: 24.4291124	total: 504ms	remaining: 96ms
252:	learn: 24.3885620	total: 506ms	remaining: 94ms
253:	learn: 24.3619748	total: 508ms	remaining: 91.9ms
254:	learn: 24.3110330	total: 510ms	remaining: 90ms
255:	learn: 24.2975366	total: 512ms	remaining: 87.9ms
256:	learn: 24.2540671	total: 513ms	remaining: 85.9ms
257:	learn: 24.2315849	total: 515ms	remaining: 83.9ms
258:	learn: 24.2111588	total: 517ms	remaining: 81.8ms
259:	learn: 24.1645293	total: 519ms	remaining: 79.9ms
260:	learn: 24.1419922	total: 521ms	remaining: 77.9ms
261:	learn: 24.1240278	total: 523ms	remaining: 75.9ms
262:	learn: 24.0822349	total: 525ms	remaining: 73.9ms
263:	learn: 24.0419172	total: 527ms	remaining: 71.9ms
264:	learn: 24.0173143	total: 529ms	remaining: 69.9ms
265:	learn: 23.9803331	total: 531ms	remaining: 67.9ms
266:	learn: 23.9684627	total: 533ms	remaining: 65.8ms
267:	learn: 23.9252251	total: 534ms	remaining: 63.8ms
268:	learn: 23.9025609	total: 536ms	remaining: 61.8ms
269:	learn: 23.8863449	total: 538ms	remaining: 59.8ms
270:	learn: 23.8624715	total: 540ms	remaining: 57.8ms
271:	learn: 23.8331923	total: 542ms	remaining: 55.8ms
272:	learn: 23.8033099	total: 544ms	remaining: 53.8ms
273:	learn: 23.7933741	total: 545ms	remaining: 51.8ms
274:	learn: 23.7569921	total: 547ms	remaining: 49.7ms
275:	learn: 23.7098407	total: 549ms	remaining: 47.7ms
276:	learn: 23.6803157	total: 551ms	remaining: 45.7ms
277:	learn: 23.6623130	total: 553ms	remaining: 43.7ms
278:	learn: 23.6470273	total: 555ms	remaining: 41.7ms
279:	learn: 23.6240445	total: 556ms	remaining: 39.7ms
280:	learn: 23.6089946	total: 558ms	remaining: 37.7ms
281:	learn: 23.5703685	total: 560ms	remaining: 35.8ms
282:	learn: 23.5579034	total: 562ms	remaining: 33.8ms
283:	learn: 23.5410484	total: 564ms	remaining: 31.8ms
284:	learn: 23.4939983	total: 566ms	remaining: 29.8ms
285:	learn: 23.4626613	total: 567ms	remaining: 27.8ms
286:	learn: 23.4156246	total: 569ms	remaining: 25.8ms
287:	learn: 23.3924259	total: 571ms	remaining: 23.8ms
288:	learn: 23.3813932	total: 573ms	remaining: 21.8ms
289:	learn: 23.3635950	total: 575ms	remaining: 19.8ms
290:	learn: 23.3364924	total: 577ms	remaining: 17.8ms
291:	learn: 23.2947256	total: 578ms	remaining: 15.8ms
292:	learn: 23.2648078	total: 580ms	remaining: 13.9ms
293:	learn: 23.2396096	total: 582ms	remaining: 11.9ms
294:	learn: 23.2176858	total: 584ms	remaining: 9.9ms
295:	learn: 23.1941773	total: 586ms	remaining: 7.91ms
296:	learn: 23.1834613	total: 588ms	remaining: 5.93ms
297:	learn: 23.1649799	total: 589ms	remaining: 3.95ms
298:	learn: 23.1460743	total: 591ms	remaining: 1.98ms
299:	learn: 23.1181018	total: 593ms	remaining: 0us
0:	learn: 47.4509473	total: 2.07ms	remaining: 620ms
1:	learn: 47.2328245	total: 3.86ms	remaining: 575ms
2:	learn: 47.0188416	total: 5.64ms	remaining: 559ms
3:	learn: 46.7838032	total: 7.52ms	remaining: 557ms
4:	learn: 46.5547103	total: 9.34ms	remaining: 551ms
5:	learn: 46.3143284	total: 11.2ms	remaining: 549ms
6:	learn: 46.1541318	total: 13ms	remaining: 546ms
7:	learn: 45.9826209	total: 15ms	remaining: 547ms
8:	learn: 45.8053588	total: 17ms	remaining: 548ms
9:	learn: 45.6224210	total: 18.8ms	remaining: 546ms
10:	learn: 45.4710397	total: 20.8ms	remaining: 546ms
11:	learn: 45.2868200	total: 22.6ms	remaining: 541ms
12:	learn: 45.0975014	total: 24.5ms	remaining: 541ms
13:	learn: 44.8901266	total: 26.4ms	remaining: 540ms
14:	learn: 44.7381740	total: 28.3ms	remaining: 537ms
15:	learn: 44.6165738	total: 30.2ms	remaining: 537ms
16:	learn: 44.5087601	total: 34.4ms	remaining: 573ms
17:	learn: 44.3029968	total: 37.5ms	remaining: 587ms
18:	learn: 44.0938327	total: 40.6ms	remaining: 600ms
19:	learn: 43.9452413	total: 44.8ms	remaining: 627ms
20:	learn: 43.7947641	total: 50.3ms	remaining: 668ms
21:	learn: 43.6403053	total: 53.7ms	remaining: 679ms
22:	learn: 43.4707106	total: 55.9ms	remaining: 673ms
23:	learn: 43.2806831	total: 60.1ms	remaining: 691ms
24:	learn: 43.1538328	total: 62.4ms	remaining: 686ms
25:	learn: 42.9835082	total: 64.5ms	remaining: 680ms
26:	learn: 42.8641226	total: 66.7ms	remaining: 674ms
27:	learn: 42.6858993	total: 69ms	remaining: 670ms
28:	learn: 42.5014960	total: 71.1ms	remaining: 665ms
29:	learn: 42.3017986	total: 73.4ms	remaining: 660ms
30:	learn: 42.1045094	total: 75.6ms	remaining: 656ms
31:	learn: 41.9146447	total: 77.7ms	remaining: 651ms
32:	learn: 41.7907923	total: 79.9ms	remaining: 646ms
33:	learn: 41.6749497	total: 82.3ms	remaining: 644ms
34:	learn: 41.5367091	total: 84.8ms	remaining: 642ms
35:	learn: 41.4166965	total: 86.9ms	remaining: 638ms
36:	learn: 41.2310956	total: 89.2ms	remaining: 634ms
37:	learn: 41.0383607	total: 91.7ms	remaining: 632ms
38:	learn: 40.9529347	total: 94.3ms	remaining: 631ms
39:	learn: 40.8039142	total: 96.9ms	remaining: 630ms
40:	learn: 40.7146033	total: 99.1ms	remaining: 626ms
41:	learn: 40.5885605	total: 102ms	remaining: 624ms
42:	learn: 40.4004309	total: 104ms	remaining: 623ms
43:	learn: 40.3048456	total: 107ms	remaining: 620ms
44:	learn: 40.2027703	total: 109ms	remaining: 620ms
45:	learn: 40.0444987	total: 112ms	remaining: 619ms
46:	learn: 39.9478128	total: 115ms	remaining: 617ms
47:	learn: 39.8252897	total: 117ms	remaining: 615ms
48:	learn: 39.6736480	total: 120ms	remaining: 615ms
49:	learn: 39.5186311	total: 122ms	remaining: 610ms
50:	learn: 39.3833153	total: 124ms	remaining: 604ms
51:	learn: 39.2224117	total: 126ms	remaining: 599ms
52:	learn: 39.1239283	total: 127ms	remaining: 594ms
53:	learn: 38.9990750	total: 129ms	remaining: 589ms
54:	learn: 38.8462276	total: 131ms	remaining: 584ms
55:	learn: 38.6801660	total: 133ms	remaining: 579ms
56:	learn: 38.5822341	total: 135ms	remaining: 575ms
57:	learn: 38.4557704	total: 137ms	remaining: 570ms
58:	learn: 38.3080619	total: 139ms	remaining: 566ms
59:	learn: 38.1817163	total: 140ms	remaining: 561ms
60:	learn: 38.0539176	total: 142ms	remaining: 557ms
61:	learn: 37.9467574	total: 144ms	remaining: 552ms
62:	learn: 37.8038261	total: 146ms	remaining: 548ms
63:	learn: 37.7136576	total: 147ms	remaining: 544ms
64:	learn: 37.5916022	total: 149ms	remaining: 540ms
65:	learn: 37.4899516	total: 151ms	remaining: 535ms
66:	learn: 37.3546414	total: 153ms	remaining: 532ms
67:	learn: 37.2856601	total: 155ms	remaining: 528ms
68:	learn: 37.1760084	total: 157ms	remaining: 525ms
69:	learn: 37.0399859	total: 158ms	remaining: 521ms
70:	learn: 36.9517409	total: 160ms	remaining: 517ms
71:	learn: 36.8198777	total: 162ms	remaining: 513ms
72:	learn: 36.7019746	total: 164ms	remaining: 509ms
73:	learn: 36.5859163	total: 165ms	remaining: 505ms
74:	learn: 36.4740132	total: 167ms	remaining: 502ms
75:	learn: 36.3415479	total: 169ms	remaining: 498ms
76:	learn: 36.2225463	total: 171ms	remaining: 495ms
77:	learn: 36.1046443	total: 173ms	remaining: 492ms
78:	learn: 36.0273896	total: 175ms	remaining: 488ms
79:	learn: 35.9293203	total: 176ms	remaining: 485ms
80:	learn: 35.8409047	total: 178ms	remaining: 481ms
81:	learn: 35.7520943	total: 180ms	remaining: 478ms
82:	learn: 35.6195684	total: 181ms	remaining: 474ms
83:	learn: 35.5139262	total: 183ms	remaining: 471ms
84:	learn: 35.4400977	total: 185ms	remaining: 468ms
85:	learn: 35.3200442	total: 187ms	remaining: 465ms
86:	learn: 35.2227847	total: 189ms	remaining: 462ms
87:	learn: 35.1279701	total: 190ms	remaining: 459ms
88:	learn: 35.0005041	total: 192ms	remaining: 456ms
89:	learn: 34.8951527	total: 194ms	remaining: 452ms
90:	learn: 34.7428563	total: 196ms	remaining: 449ms
91:	learn: 34.6273846	total: 198ms	remaining: 447ms
92:	learn: 34.5189566	total: 199ms	remaining: 444ms
93:	learn: 34.4118616	total: 202ms	remaining: 442ms
94:	learn: 34.3016270	total: 203ms	remaining: 439ms
95:	learn: 34.2142012	total: 205ms	remaining: 436ms
96:	learn: 34.1517462	total: 207ms	remaining: 433ms
97:	learn: 34.0481639	total: 209ms	remaining: 431ms
98:	learn: 33.9988244	total: 211ms	remaining: 429ms
99:	learn: 33.8913636	total: 213ms	remaining: 426ms
100:	learn: 33.8035772	total: 215ms	remaining: 423ms
101:	learn: 33.7300076	total: 217ms	remaining: 421ms
102:	learn: 33.6268210	total: 219ms	remaining: 418ms
103:	learn: 33.5338370	total: 221ms	remaining: 416ms
104:	learn: 33.4638378	total: 223ms	remaining: 414ms
105:	learn: 33.3907231	total: 225ms	remaining: 411ms
106:	learn: 33.3213207	total: 226ms	remaining: 408ms
107:	learn: 33.2021440	total: 228ms	remaining: 406ms
108:	learn: 33.1369023	total: 230ms	remaining: 403ms
109:	learn: 33.0752696	total: 232ms	remaining: 400ms
110:	learn: 32.9853494	total: 234ms	remaining: 398ms
111:	learn: 32.9243355	total: 236ms	remaining: 395ms
112:	learn: 32.8616230	total: 237ms	remaining: 393ms
113:	learn: 32.7837080	total: 239ms	remaining: 390ms
114:	learn: 32.7210014	total: 242ms	remaining: 389ms
115:	learn: 32.5991812	total: 246ms	remaining: 390ms
116:	learn: 32.5270674	total: 249ms	remaining: 389ms
117:	learn: 32.4533579	total: 252ms	remaining: 389ms
118:	learn: 32.3693832	total: 255ms	remaining: 388ms
119:	learn: 32.3131063	total: 258ms	remaining: 386ms
120:	learn: 32.2354451	total: 261ms	remaining: 386ms
121:	learn: 32.1789109	total: 263ms	remaining: 384ms
122:	learn: 32.0747609	total: 265ms	remaining: 381ms
123:	learn: 32.0171338	total: 267ms	remaining: 379ms
124:	learn: 31.9301802	total: 269ms	remaining: 377ms
125:	learn: 31.8702712	total: 272ms	remaining: 375ms
126:	learn: 31.7972388	total: 273ms	remaining: 372ms
127:	learn: 31.7221593	total: 275ms	remaining: 370ms
128:	learn: 31.6013775	total: 277ms	remaining: 367ms
129:	learn: 31.4874635	total: 279ms	remaining: 365ms
130:	learn: 31.3968347	total: 281ms	remaining: 362ms
131:	learn: 31.3025818	total: 282ms	remaining: 359ms
132:	learn: 31.2425777	total: 284ms	remaining: 357ms
133:	learn: 31.1530600	total: 286ms	remaining: 354ms
134:	learn: 31.0812133	total: 288ms	remaining: 352ms
135:	learn: 30.9780941	total: 290ms	remaining: 349ms
136:	learn: 30.8811810	total: 291ms	remaining: 347ms
137:	learn: 30.8098969	total: 293ms	remaining: 344ms
138:	learn: 30.7153836	total: 295ms	remaining: 342ms
139:	learn: 30.6358083	total: 297ms	remaining: 339ms
140:	learn: 30.5896067	total: 298ms	remaining: 337ms
141:	learn: 30.5288310	total: 300ms	remaining: 334ms
142:	learn: 30.4787586	total: 302ms	remaining: 332ms
143:	learn: 30.3748148	total: 304ms	remaining: 329ms
144:	learn: 30.3223730	total: 306ms	remaining: 327ms
145:	learn: 30.2935000	total: 307ms	remaining: 324ms
146:	learn: 30.2014678	total: 309ms	remaining: 322ms
147:	learn: 30.1548935	total: 311ms	remaining: 319ms
148:	learn: 30.1206970	total: 313ms	remaining: 317ms
149:	learn: 30.0333147	total: 315ms	remaining: 315ms
150:	learn: 29.9790816	total: 317ms	remaining: 312ms
151:	learn: 29.9162228	total: 318ms	remaining: 310ms
152:	learn: 29.8357412	total: 320ms	remaining: 308ms
153:	learn: 29.7619570	total: 322ms	remaining: 305ms
154:	learn: 29.7178127	total: 324ms	remaining: 303ms
155:	learn: 29.6539732	total: 326ms	remaining: 301ms
156:	learn: 29.6116204	total: 327ms	remaining: 298ms
157:	learn: 29.5626999	total: 329ms	remaining: 296ms
158:	learn: 29.4924776	total: 331ms	remaining: 293ms
159:	learn: 29.4326222	total: 332ms	remaining: 291ms
160:	learn: 29.3603405	total: 334ms	remaining: 289ms
161:	learn: 29.2878370	total: 336ms	remaining: 286ms
162:	learn: 29.2189208	total: 338ms	remaining: 284ms
163:	learn: 29.1838716	total: 340ms	remaining: 282ms
164:	learn: 29.0962954	total: 342ms	remaining: 280ms
165:	learn: 29.0316462	total: 344ms	remaining: 278ms
166:	learn: 28.9525169	total: 346ms	remaining: 275ms
167:	learn: 28.8960335	total: 348ms	remaining: 273ms
168:	learn: 28.8518194	total: 350ms	remaining: 271ms
169:	learn: 28.7778622	total: 352ms	remaining: 269ms
170:	learn: 28.7489311	total: 353ms	remaining: 267ms
171:	learn: 28.6975021	total: 355ms	remaining: 264ms
172:	learn: 28.6524180	total: 357ms	remaining: 262ms
173:	learn: 28.6153014	total: 359ms	remaining: 260ms
174:	learn: 28.5350641	total: 361ms	remaining: 258ms
175:	learn: 28.4654023	total: 363ms	remaining: 256ms
176:	learn: 28.4063750	total: 365ms	remaining: 254ms
177:	learn: 28.3676933	total: 367ms	remaining: 252ms
178:	learn: 28.3038490	total: 369ms	remaining: 249ms
179:	learn: 28.2647297	total: 371ms	remaining: 247ms
180:	learn: 28.2012065	total: 373ms	remaining: 245ms
181:	learn: 28.1652315	total: 374ms	remaining: 243ms
182:	learn: 28.0814687	total: 376ms	remaining: 241ms
183:	learn: 28.0237252	total: 378ms	remaining: 238ms
184:	learn: 27.9500516	total: 380ms	remaining: 236ms
185:	learn: 27.8843434	total: 382ms	remaining: 234ms
186:	learn: 27.8228669	total: 383ms	remaining: 232ms
187:	learn: 27.7818891	total: 385ms	remaining: 229ms
188:	learn: 27.7295848	total: 387ms	remaining: 227ms
189:	learn: 27.6626612	total: 389ms	remaining: 225ms
190:	learn: 27.6000071	total: 391ms	remaining: 223ms
191:	learn: 27.5471956	total: 392ms	remaining: 221ms
192:	learn: 27.4722833	total: 394ms	remaining: 219ms
193:	learn: 27.4108872	total: 396ms	remaining: 217ms
194:	learn: 27.3318659	total: 398ms	remaining: 214ms
195:	learn: 27.2985907	total: 400ms	remaining: 212ms
196:	learn: 27.2795843	total: 402ms	remaining: 210ms
197:	learn: 27.2476536	total: 403ms	remaining: 208ms
198:	learn: 27.1838593	total: 405ms	remaining: 206ms
199:	learn: 27.1343171	total: 407ms	remaining: 203ms
200:	learn: 27.0798698	total: 409ms	remaining: 201ms
201:	learn: 27.0569274	total: 410ms	remaining: 199ms
202:	learn: 27.0257016	total: 412ms	remaining: 197ms
203:	learn: 26.9983631	total: 414ms	remaining: 195ms
204:	learn: 26.9370253	total: 416ms	remaining: 193ms
205:	learn: 26.9046542	total: 418ms	remaining: 191ms
206:	learn: 26.8410127	total: 420ms	remaining: 189ms
207:	learn: 26.8226898	total: 422ms	remaining: 187ms
208:	learn: 26.7718034	total: 424ms	remaining: 184ms
209:	learn: 26.7344199	total: 426ms	remaining: 182ms
210:	learn: 26.7117470	total: 428ms	remaining: 180ms
211:	learn: 26.6568496	total: 430ms	remaining: 178ms
212:	learn: 26.5920838	total: 431ms	remaining: 176ms
213:	learn: 26.5463511	total: 433ms	remaining: 174ms
214:	learn: 26.5009409	total: 435ms	remaining: 172ms
215:	learn: 26.4702206	total: 440ms	remaining: 171ms
216:	learn: 26.4231110	total: 443ms	remaining: 169ms
217:	learn: 26.3681957	total: 446ms	remaining: 168ms
218:	learn: 26.3346590	total: 450ms	remaining: 166ms
219:	learn: 26.2914969	total: 454ms	remaining: 165ms
220:	learn: 26.2696992	total: 457ms	remaining: 163ms
221:	learn: 26.2235293	total: 459ms	remaining: 161ms
222:	learn: 26.1678122	total: 462ms	remaining: 160ms
223:	learn: 26.1489140	total: 465ms	remaining: 158ms
224:	learn: 26.1043492	total: 468ms	remaining: 156ms
225:	learn: 26.0553795	total: 470ms	remaining: 154ms
226:	learn: 26.0313326	total: 472ms	remaining: 152ms
227:	learn: 25.9950016	total: 474ms	remaining: 150ms
228:	learn: 25.9345264	total: 476ms	remaining: 148ms
229:	learn: 25.9048683	total: 479ms	remaining: 146ms
230:	learn: 25.8545561	total: 481ms	remaining: 144ms
231:	learn: 25.8337291	total: 483ms	remaining: 141ms
232:	learn: 25.8017436	total: 485ms	remaining: 139ms
233:	learn: 25.7632904	total: 487ms	remaining: 137ms
234:	learn: 25.7152408	total: 489ms	remaining: 135ms
235:	learn: 25.6833693	total: 491ms	remaining: 133ms
236:	learn: 25.6194804	total: 493ms	remaining: 131ms
237:	learn: 25.5778488	total: 496ms	remaining: 129ms
238:	learn: 25.5232180	total: 498ms	remaining: 127ms
239:	learn: 25.4760930	total: 500ms	remaining: 125ms
240:	learn: 25.4571920	total: 502ms	remaining: 123ms
241:	learn: 25.4297425	total: 504ms	remaining: 121ms
242:	learn: 25.3831441	total: 506ms	remaining: 119ms
243:	learn: 25.3559339	total: 508ms	remaining: 117ms
244:	learn: 25.3063452	total: 510ms	remaining: 114ms
245:	learn: 25.2779587	total: 511ms	remaining: 112ms
246:	learn: 25.2569417	total: 513ms	remaining: 110ms
247:	learn: 25.2279937	total: 515ms	remaining: 108ms
248:	learn: 25.2078352	total: 517ms	remaining: 106ms
249:	learn: 25.1820595	total: 519ms	remaining: 104ms
250:	learn: 25.1498509	total: 521ms	remaining: 102ms
251:	learn: 25.0926104	total: 523ms	remaining: 99.6ms
252:	learn: 25.0496170	total: 525ms	remaining: 97.5ms
253:	learn: 25.0088543	total: 527ms	remaining: 95.5ms
254:	learn: 24.9597823	total: 530ms	remaining: 93.5ms
255:	learn: 24.9419795	total: 532ms	remaining: 91.4ms
256:	learn: 24.9181799	total: 534ms	remaining: 89.4ms
257:	learn: 24.8748821	total: 537ms	remaining: 87.3ms
258:	learn: 24.8494404	total: 538ms	remaining: 85.2ms
259:	learn: 24.7975977	total: 540ms	remaining: 83.1ms
260:	learn: 24.7778201	total: 542ms	remaining: 81ms
261:	learn: 24.7552863	total: 544ms	remaining: 78.8ms
262:	learn: 24.7021314	total: 545ms	remaining: 76.7ms
263:	learn: 24.6427325	total: 547ms	remaining: 74.6ms
264:	learn: 24.6173677	total: 549ms	remaining: 72.5ms
265:	learn: 24.5567054	total: 551ms	remaining: 70.4ms
266:	learn: 24.5085968	total: 553ms	remaining: 68.3ms
267:	learn: 24.4668220	total: 554ms	remaining: 66.2ms
268:	learn: 24.4294909	total: 556ms	remaining: 64.1ms
269:	learn: 24.4110425	total: 558ms	remaining: 62ms
270:	learn: 24.3896369	total: 560ms	remaining: 59.9ms
271:	learn: 24.3594666	total: 562ms	remaining: 57.8ms
272:	learn: 24.3268537	total: 564ms	remaining: 55.7ms
273:	learn: 24.2917875	total: 565ms	remaining: 53.6ms
274:	learn: 24.2530978	total: 567ms	remaining: 51.6ms
275:	learn: 24.2025878	total: 569ms	remaining: 49.5ms
276:	learn: 24.1738463	total: 571ms	remaining: 47.4ms
277:	learn: 24.1586023	total: 572ms	remaining: 45.3ms
278:	learn: 24.1488022	total: 574ms	remaining: 43.2ms
279:	learn: 24.1174446	total: 576ms	remaining: 41.2ms
280:	learn: 24.1017518	total: 578ms	remaining: 39.1ms
281:	learn: 24.0712899	total: 580ms	remaining: 37ms
282:	learn: 24.0504811	total: 582ms	remaining: 35ms
283:	learn: 24.0239766	total: 584ms	remaining: 32.9ms
284:	learn: 23.9721248	total: 586ms	remaining: 30.8ms
285:	learn: 23.9377764	total: 588ms	remaining: 28.8ms
286:	learn: 23.8923944	total: 590ms	remaining: 26.7ms
287:	learn: 23.8700693	total: 592ms	remaining: 24.7ms
288:	learn: 23.8403570	total: 594ms	remaining: 22.6ms
289:	learn: 23.7840604	total: 596ms	remaining: 20.5ms
290:	learn: 23.7417930	total: 598ms	remaining: 18.5ms
291:	learn: 23.7059848	total: 599ms	remaining: 16.4ms
292:	learn: 23.6797074	total: 601ms	remaining: 14.4ms
293:	learn: 23.6614726	total: 603ms	remaining: 12.3ms
294:	learn: 23.6407646	total: 604ms	remaining: 10.2ms
295:	learn: 23.6254328	total: 607ms	remaining: 8.2ms
296:	learn: 23.6134281	total: 608ms	remaining: 6.14ms
297:	learn: 23.5765738	total: 610ms	remaining: 4.1ms
298:	learn: 23.5531217	total: 612ms	remaining: 2.05ms
299:	learn: 23.5207031	total: 614ms	remaining: 0us
0:	learn: 27.6165091	total: 5.42ms	remaining: 537ms
1:	learn: 27.2156009	total: 10ms	remaining: 490ms
2:	learn: 26.8744169	total: 14.7ms	remaining: 475ms
3:	learn: 26.5530473	total: 19.6ms	remaining: 470ms
4:	learn: 26.1200739	total: 24.6ms	remaining: 468ms
5:	learn: 25.7559063	total: 29.4ms	remaining: 460ms
6:	learn: 25.3817459	total: 34.1ms	remaining: 453ms
7:	learn: 25.0780231	total: 39.3ms	remaining: 452ms
8:	learn: 24.7908836	total: 44.2ms	remaining: 447ms
9:	learn: 24.5023726	total: 49ms	remaining: 441ms
10:	learn: 24.2430447	total: 54ms	remaining: 437ms
11:	learn: 24.0150987	total: 59.2ms	remaining: 434ms
12:	learn: 23.6832732	total: 63.9ms	remaining: 428ms
13:	learn: 23.4512462	total: 68.9ms	remaining: 423ms
14:	learn: 23.2300808	total: 74.3ms	remaining: 421ms
15:	learn: 23.0198192	total: 79.3ms	remaining: 416ms
16:	learn: 22.7757356	total: 84.5ms	remaining: 413ms
17:	learn: 22.4962727	total: 89.8ms	remaining: 409ms
18:	learn: 22.2131794	total: 94.9ms	remaining: 405ms
19:	learn: 21.9844087	total: 100ms	remaining: 400ms
20:	learn: 21.6467820	total: 105ms	remaining: 395ms
21:	learn: 21.4458045	total: 110ms	remaining: 391ms
22:	learn: 21.2706627	total: 116ms	remaining: 387ms
23:	learn: 21.0770166	total: 121ms	remaining: 383ms
24:	learn: 20.8871491	total: 126ms	remaining: 379ms
25:	learn: 20.7151270	total: 131ms	remaining: 374ms
26:	learn: 20.5585218	total: 137ms	remaining: 370ms
27:	learn: 20.4091128	total: 143ms	remaining: 367ms
28:	learn: 20.2343121	total: 149ms	remaining: 364ms
29:	learn: 20.0685862	total: 154ms	remaining: 360ms
30:	learn: 19.8339661	total: 161ms	remaining: 357ms
31:	learn: 19.6811138	total: 167ms	remaining: 354ms
32:	learn: 19.4881999	total: 175ms	remaining: 355ms
33:	learn: 19.3473429	total: 197ms	remaining: 382ms
34:	learn: 19.1087185	total: 206ms	remaining: 383ms
35:	learn: 18.9817724	total: 213ms	remaining: 378ms
36:	learn: 18.8465124	total: 219ms	remaining: 373ms
37:	learn: 18.6998182	total: 226ms	remaining: 369ms
38:	learn: 18.5534881	total: 233ms	remaining: 364ms
39:	learn: 18.4221213	total: 240ms	remaining: 360ms
40:	learn: 18.3262428	total: 247ms	remaining: 355ms
41:	learn: 18.2018519	total: 253ms	remaining: 350ms
42:	learn: 18.0704402	total: 259ms	remaining: 343ms
43:	learn: 17.9674737	total: 266ms	remaining: 338ms
44:	learn: 17.8092746	total: 272ms	remaining: 332ms
45:	learn: 17.7036671	total: 277ms	remaining: 325ms
46:	learn: 17.5636023	total: 282ms	remaining: 318ms
47:	learn: 17.3922671	total: 288ms	remaining: 312ms
48:	learn: 17.2777727	total: 292ms	remaining: 304ms
49:	learn: 17.1901866	total: 297ms	remaining: 297ms
50:	learn: 17.0799264	total: 302ms	remaining: 290ms
51:	learn: 17.0022808	total: 307ms	remaining: 283ms
52:	learn: 16.9193737	total: 313ms	remaining: 278ms
53:	learn: 16.8349324	total: 318ms	remaining: 271ms
54:	learn: 16.7122802	total: 323ms	remaining: 264ms
55:	learn: 16.5736462	total: 328ms	remaining: 257ms
56:	learn: 16.4576798	total: 332ms	remaining: 251ms
57:	learn: 16.3336075	total: 337ms	remaining: 244ms
58:	learn: 16.2578113	total: 342ms	remaining: 238ms
59:	learn: 16.1586938	total: 347ms	remaining: 232ms
60:	learn: 16.0827831	total: 352ms	remaining: 225ms
61:	learn: 16.0030150	total: 358ms	remaining: 219ms
62:	learn: 15.8741662	total: 363ms	remaining: 213ms
63:	learn: 15.7533897	total: 368ms	remaining: 207ms
64:	learn: 15.6743804	total: 377ms	remaining: 203ms
65:	learn: 15.6291324	total: 385ms	remaining: 198ms
66:	learn: 15.5363523	total: 394ms	remaining: 194ms
67:	learn: 15.4675550	total: 401ms	remaining: 189ms
68:	learn: 15.3959873	total: 407ms	remaining: 183ms
69:	learn: 15.3222045	total: 412ms	remaining: 177ms
70:	learn: 15.2343883	total: 417ms	remaining: 170ms
71:	learn: 15.1891070	total: 422ms	remaining: 164ms
72:	learn: 15.1320798	total: 427ms	remaining: 158ms
73:	learn: 15.0590468	total: 432ms	remaining: 152ms
74:	learn: 14.9682726	total: 437ms	remaining: 146ms
75:	learn: 14.8868528	total: 443ms	remaining: 140ms
76:	learn: 14.8046328	total: 447ms	remaining: 134ms
77:	learn: 14.7253152	total: 452ms	remaining: 127ms
78:	learn: 14.6438207	total: 456ms	remaining: 121ms
79:	learn: 14.5350651	total: 461ms	remaining: 115ms
80:	learn: 14.4301800	total: 466ms	remaining: 109ms
81:	learn: 14.3716251	total: 471ms	remaining: 103ms
82:	learn: 14.3127586	total: 476ms	remaining: 97.5ms
83:	learn: 14.2685086	total: 480ms	remaining: 91.5ms
84:	learn: 14.1936111	total: 485ms	remaining: 85.6ms
85:	learn: 14.1488261	total: 490ms	remaining: 79.7ms
86:	learn: 14.0654602	total: 495ms	remaining: 73.9ms
87:	learn: 14.0026195	total: 500ms	remaining: 68.1ms
88:	learn: 13.9498697	total: 504ms	remaining: 62.3ms
89:	learn: 13.9002477	total: 509ms	remaining: 56.6ms
90:	learn: 13.8429017	total: 514ms	remaining: 50.8ms
91:	learn: 13.7892130	total: 519ms	remaining: 45.1ms
92:	learn: 13.7122418	total: 523ms	remaining: 39.4ms
93:	learn: 13.6752324	total: 529ms	remaining: 33.7ms
94:	learn: 13.6186680	total: 533ms	remaining: 28.1ms
95:	learn: 13.5578384	total: 538ms	remaining: 22.4ms
96:	learn: 13.5028120	total: 543ms	remaining: 16.8ms
97:	learn: 13.4306895	total: 548ms	remaining: 11.2ms
98:	learn: 13.3955813	total: 553ms	remaining: 5.59ms
99:	learn: 13.3380095	total: 558ms	remaining: 0us
0:	learn: 42.9675374	total: 6.18ms	remaining: 612ms
1:	learn: 42.2542078	total: 11.7ms	remaining: 575ms
2:	learn: 41.5532166	total: 17.7ms	remaining: 574ms
3:	learn: 40.7812113	total: 23.4ms	remaining: 562ms
4:	learn: 39.8819601	total: 29.3ms	remaining: 557ms
5:	learn: 39.0997229	total: 31.6ms	remaining: 494ms
6:	learn: 38.2185623	total: 37ms	remaining: 492ms
7:	learn: 37.5465645	total: 42.5ms	remaining: 489ms
8:	learn: 36.8449555	total: 47.7ms	remaining: 482ms
9:	learn: 36.0912815	total: 53.5ms	remaining: 481ms
10:	learn: 35.5776470	total: 59.5ms	remaining: 482ms
11:	learn: 34.7845329	total: 64.4ms	remaining: 472ms
12:	learn: 34.1574031	total: 69.3ms	remaining: 464ms
13:	learn: 33.4950652	total: 74.3ms	remaining: 456ms
14:	learn: 32.9343881	total: 79.3ms	remaining: 450ms
15:	learn: 32.4356238	total: 84.5ms	remaining: 444ms
16:	learn: 31.8370592	total: 89.5ms	remaining: 437ms
17:	learn: 31.2122644	total: 94.5ms	remaining: 430ms
18:	learn: 30.7195190	total: 99.5ms	remaining: 424ms
19:	learn: 30.1548478	total: 105ms	remaining: 419ms
20:	learn: 29.6521001	total: 108ms	remaining: 406ms
21:	learn: 29.1746988	total: 113ms	remaining: 400ms
22:	learn: 28.6492690	total: 118ms	remaining: 394ms
23:	learn: 28.1958339	total: 123ms	remaining: 388ms
24:	learn: 27.9126674	total: 128ms	remaining: 385ms
25:	learn: 27.5059508	total: 133ms	remaining: 378ms
26:	learn: 27.0869176	total: 138ms	remaining: 372ms
27:	learn: 26.6545277	total: 143ms	remaining: 367ms
28:	learn: 26.2388575	total: 148ms	remaining: 362ms
29:	learn: 25.8957708	total: 153ms	remaining: 357ms
30:	learn: 25.5045901	total: 158ms	remaining: 352ms
31:	learn: 25.2559530	total: 163ms	remaining: 347ms
32:	learn: 24.9012566	total: 171ms	remaining: 347ms
33:	learn: 24.5601820	total: 179ms	remaining: 348ms
34:	learn: 24.2407285	total: 188ms	remaining: 348ms
35:	learn: 23.9481769	total: 193ms	remaining: 343ms
36:	learn: 23.6746994	total: 200ms	remaining: 340ms
37:	learn: 23.4470352	total: 205ms	remaining: 335ms
38:	learn: 23.1678305	total: 210ms	remaining: 329ms
39:	learn: 22.9660692	total: 215ms	remaining: 323ms
40:	learn: 22.7102548	total: 220ms	remaining: 317ms
41:	learn: 22.5152447	total: 226ms	remaining: 312ms
42:	learn: 22.2967100	total: 231ms	remaining: 306ms
43:	learn: 22.0869517	total: 236ms	remaining: 300ms
44:	learn: 21.8556497	total: 241ms	remaining: 294ms
45:	learn: 21.7036804	total: 246ms	remaining: 289ms
46:	learn: 21.4792011	total: 251ms	remaining: 283ms
47:	learn: 21.2830384	total: 255ms	remaining: 276ms
48:	learn: 21.0771837	total: 260ms	remaining: 271ms
49:	learn: 20.8824468	total: 265ms	remaining: 265ms
50:	learn: 20.7250875	total: 270ms	remaining: 259ms
51:	learn: 20.5564423	total: 275ms	remaining: 254ms
52:	learn: 20.4067403	total: 280ms	remaining: 248ms
53:	learn: 20.2674808	total: 285ms	remaining: 242ms
54:	learn: 20.1394249	total: 289ms	remaining: 237ms
55:	learn: 19.9748016	total: 294ms	remaining: 231ms
56:	learn: 19.8159522	total: 299ms	remaining: 226ms
57:	learn: 19.6811073	total: 304ms	remaining: 220ms
58:	learn: 19.5083232	total: 309ms	remaining: 215ms
59:	learn: 19.3949390	total: 311ms	remaining: 207ms
60:	learn: 19.2485728	total: 316ms	remaining: 202ms
61:	learn: 19.1255523	total: 321ms	remaining: 197ms
62:	learn: 18.9423320	total: 326ms	remaining: 191ms
63:	learn: 18.7794545	total: 330ms	remaining: 186ms
64:	learn: 18.6339033	total: 335ms	remaining: 180ms
65:	learn: 18.5188724	total: 340ms	remaining: 175ms
66:	learn: 18.3398412	total: 345ms	remaining: 170ms
67:	learn: 18.2873427	total: 350ms	remaining: 165ms
68:	learn: 18.1287092	total: 355ms	remaining: 159ms
69:	learn: 18.0163474	total: 360ms	remaining: 154ms
70:	learn: 17.9428395	total: 368ms	remaining: 150ms
71:	learn: 17.7906087	total: 376ms	remaining: 146ms
72:	learn: 17.6121088	total: 384ms	remaining: 142ms
73:	learn: 17.5136572	total: 391ms	remaining: 137ms
74:	learn: 17.3837993	total: 399ms	remaining: 133ms
75:	learn: 17.3015647	total: 405ms	remaining: 128ms
76:	learn: 17.1991252	total: 410ms	remaining: 123ms
77:	learn: 17.0854777	total: 416ms	remaining: 117ms
78:	learn: 17.0308269	total: 422ms	remaining: 112ms
79:	learn: 16.9754807	total: 431ms	remaining: 108ms
80:	learn: 16.9174907	total: 437ms	remaining: 102ms
81:	learn: 16.7962603	total: 442ms	remaining: 97.1ms
82:	learn: 16.6685446	total: 448ms	remaining: 91.8ms
83:	learn: 16.5812672	total: 454ms	remaining: 86.5ms
84:	learn: 16.4896026	total: 460ms	remaining: 81.1ms
85:	learn: 16.4023414	total: 465ms	remaining: 75.7ms
86:	learn: 16.3093718	total: 470ms	remaining: 70.3ms
87:	learn: 16.2409040	total: 477ms	remaining: 65ms
88:	learn: 16.1616213	total: 483ms	remaining: 59.7ms
89:	learn: 16.0825203	total: 488ms	remaining: 54.2ms
90:	learn: 16.0204931	total: 493ms	remaining: 48.7ms
91:	learn: 15.9741267	total: 498ms	remaining: 43.3ms
92:	learn: 15.9413725	total: 503ms	remaining: 37.8ms
93:	learn: 15.8762295	total: 508ms	remaining: 32.4ms
94:	learn: 15.8165812	total: 513ms	remaining: 27ms
95:	learn: 15.7244343	total: 519ms	remaining: 21.6ms
96:	learn: 15.6537033	total: 524ms	remaining: 16.2ms
97:	learn: 15.6052320	total: 529ms	remaining: 10.8ms
98:	learn: 15.5434930	total: 534ms	remaining: 5.39ms
99:	learn: 15.4452106	total: 539ms	remaining: 0us
0:	learn: 46.5387280	total: 6.03ms	remaining: 597ms
1:	learn: 45.8605074	total: 14.4ms	remaining: 707ms
2:	learn: 45.2237152	total: 22.3ms	remaining: 720ms
3:	learn: 44.4158454	total: 28.9ms	remaining: 693ms
4:	learn: 43.7177384	total: 34.4ms	remaining: 654ms
5:	learn: 42.9896372	total: 40.3ms	remaining: 631ms
6:	learn: 42.3639431	total: 45ms	remaining: 598ms
7:	learn: 41.6648406	total: 49.8ms	remaining: 572ms
8:	learn: 41.0681442	total: 54.8ms	remaining: 554ms
9:	learn: 40.4478745	total: 59.8ms	remaining: 538ms
10:	learn: 40.0398470	total: 64.4ms	remaining: 521ms
11:	learn: 39.3300888	total: 69ms	remaining: 506ms
12:	learn: 38.9198991	total: 73.8ms	remaining: 494ms
13:	learn: 38.4022666	total: 78.7ms	remaining: 483ms
14:	learn: 37.9124629	total: 83.5ms	remaining: 473ms
15:	learn: 37.3846174	total: 88.4ms	remaining: 464ms
16:	learn: 36.8502348	total: 93.2ms	remaining: 455ms
17:	learn: 36.5079755	total: 97.8ms	remaining: 446ms
18:	learn: 36.1239339	total: 102ms	remaining: 437ms
19:	learn: 35.8388688	total: 107ms	remaining: 428ms
20:	learn: 35.4915710	total: 112ms	remaining: 421ms
21:	learn: 34.9483623	total: 117ms	remaining: 414ms
22:	learn: 34.6033866	total: 122ms	remaining: 407ms
23:	learn: 34.1483341	total: 126ms	remaining: 400ms
24:	learn: 33.7626484	total: 131ms	remaining: 394ms
25:	learn: 33.4160820	total: 136ms	remaining: 388ms
26:	learn: 33.0421483	total: 141ms	remaining: 381ms
27:	learn: 32.6573469	total: 146ms	remaining: 374ms
28:	learn: 32.2672417	total: 150ms	remaining: 368ms
29:	learn: 31.8257441	total: 155ms	remaining: 362ms
30:	learn: 31.3394923	total: 160ms	remaining: 356ms
31:	learn: 30.9472894	total: 165ms	remaining: 351ms
32:	learn: 30.6961423	total: 170ms	remaining: 345ms
33:	learn: 30.4670615	total: 175ms	remaining: 339ms
34:	learn: 30.1495001	total: 180ms	remaining: 334ms
35:	learn: 29.8071763	total: 185ms	remaining: 329ms
36:	learn: 29.5255984	total: 190ms	remaining: 324ms
37:	learn: 29.2236758	total: 196ms	remaining: 319ms
38:	learn: 28.9199699	total: 201ms	remaining: 314ms
39:	learn: 28.7003989	total: 206ms	remaining: 309ms
40:	learn: 28.4681160	total: 211ms	remaining: 303ms
41:	learn: 28.2692668	total: 217ms	remaining: 299ms
42:	learn: 27.9327254	total: 221ms	remaining: 293ms
43:	learn: 27.7193597	total: 226ms	remaining: 288ms
44:	learn: 27.4061006	total: 231ms	remaining: 282ms
45:	learn: 27.1840910	total: 236ms	remaining: 277ms
46:	learn: 26.8943816	total: 241ms	remaining: 272ms
47:	learn: 26.6576617	total: 247ms	remaining: 267ms
48:	learn: 26.3230094	total: 256ms	remaining: 266ms
49:	learn: 26.0488483	total: 268ms	remaining: 268ms
50:	learn: 25.7795537	total: 276ms	remaining: 265ms
51:	learn: 25.6103781	total: 283ms	remaining: 262ms
52:	learn: 25.4107383	total: 289ms	remaining: 256ms
53:	learn: 25.1757211	total: 295ms	remaining: 251ms
54:	learn: 24.8949842	total: 300ms	remaining: 245ms
55:	learn: 24.7028694	total: 306ms	remaining: 240ms
56:	learn: 24.4033555	total: 311ms	remaining: 235ms
57:	learn: 24.2109268	total: 317ms	remaining: 230ms
58:	learn: 24.0697623	total: 323ms	remaining: 224ms
59:	learn: 23.8291672	total: 328ms	remaining: 219ms
60:	learn: 23.5972471	total: 334ms	remaining: 213ms
61:	learn: 23.4241182	total: 340ms	remaining: 208ms
62:	learn: 23.2617022	total: 345ms	remaining: 203ms
63:	learn: 23.0329448	total: 350ms	remaining: 197ms
64:	learn: 22.9108081	total: 355ms	remaining: 191ms
65:	learn: 22.8001962	total: 360ms	remaining: 185ms
66:	learn: 22.6861907	total: 365ms	remaining: 180ms
67:	learn: 22.5152895	total: 370ms	remaining: 174ms
68:	learn: 22.3734214	total: 375ms	remaining: 168ms
69:	learn: 22.1840754	total: 379ms	remaining: 163ms
70:	learn: 22.0732908	total: 384ms	remaining: 157ms
71:	learn: 21.8880456	total: 389ms	remaining: 151ms
72:	learn: 21.7838784	total: 394ms	remaining: 146ms
73:	learn: 21.5532885	total: 399ms	remaining: 140ms
74:	learn: 21.3998735	total: 403ms	remaining: 134ms
75:	learn: 21.2699824	total: 408ms	remaining: 129ms
76:	learn: 21.1077652	total: 413ms	remaining: 123ms
77:	learn: 20.9759102	total: 418ms	remaining: 118ms
78:	learn: 20.7531342	total: 424ms	remaining: 113ms
79:	learn: 20.6729631	total: 429ms	remaining: 107ms
80:	learn: 20.4903474	total: 435ms	remaining: 102ms
81:	learn: 20.3708622	total: 440ms	remaining: 96.5ms
82:	learn: 20.2627857	total: 445ms	remaining: 91.1ms
83:	learn: 20.1335464	total: 450ms	remaining: 85.7ms
84:	learn: 20.0100864	total: 459ms	remaining: 81ms
85:	learn: 19.9374357	total: 467ms	remaining: 76ms
86:	learn: 19.8383097	total: 474ms	remaining: 70.9ms
87:	learn: 19.7804443	total: 480ms	remaining: 65.4ms
88:	learn: 19.7225631	total: 485ms	remaining: 60ms
89:	learn: 19.5851849	total: 491ms	remaining: 54.5ms
90:	learn: 19.5115923	total: 496ms	remaining: 49ms
91:	learn: 19.3986485	total: 501ms	remaining: 43.5ms
92:	learn: 19.2465728	total: 506ms	remaining: 38.1ms
93:	learn: 19.2033796	total: 511ms	remaining: 32.6ms
94:	learn: 19.1234096	total: 516ms	remaining: 27.2ms
95:	learn: 19.0080161	total: 521ms	remaining: 21.7ms
96:	learn: 18.9048698	total: 526ms	remaining: 16.3ms
97:	learn: 18.7901500	total: 531ms	remaining: 10.8ms
98:	learn: 18.6759882	total: 535ms	remaining: 5.41ms
99:	learn: 18.6254590	total: 540ms	remaining: 0us
0:	learn: 46.0359105	total: 5.22ms	remaining: 517ms
1:	learn: 45.4503059	total: 10.1ms	remaining: 495ms
2:	learn: 44.6478680	total: 15ms	remaining: 484ms
3:	learn: 43.7932387	total: 19.6ms	remaining: 470ms
4:	learn: 43.2236036	total: 24.2ms	remaining: 460ms
5:	learn: 42.4339181	total: 29.2ms	remaining: 458ms
6:	learn: 41.8906461	total: 33.8ms	remaining: 450ms
7:	learn: 41.2248707	total: 38.5ms	remaining: 443ms
8:	learn: 40.5934570	total: 43.5ms	remaining: 440ms
9:	learn: 39.9204661	total: 48.7ms	remaining: 438ms
10:	learn: 39.3972458	total: 53.8ms	remaining: 435ms
11:	learn: 38.9220493	total: 58.9ms	remaining: 432ms
12:	learn: 38.2358406	total: 64.2ms	remaining: 430ms
13:	learn: 37.7089336	total: 69.3ms	remaining: 426ms
14:	learn: 37.3714255	total: 79.8ms	remaining: 452ms
15:	learn: 36.8098537	total: 90.6ms	remaining: 476ms
16:	learn: 36.2818695	total: 96.8ms	remaining: 473ms
17:	learn: 35.8807734	total: 104ms	remaining: 474ms
18:	learn: 35.3850720	total: 110ms	remaining: 468ms
19:	learn: 35.0622365	total: 116ms	remaining: 462ms
20:	learn: 34.7088655	total: 121ms	remaining: 456ms
21:	learn: 34.2869861	total: 127ms	remaining: 449ms
22:	learn: 33.9798756	total: 132ms	remaining: 443ms
23:	learn: 33.6933850	total: 138ms	remaining: 438ms
24:	learn: 33.3542725	total: 149ms	remaining: 446ms
25:	learn: 33.1531104	total: 154ms	remaining: 439ms
26:	learn: 32.7581499	total: 160ms	remaining: 433ms
27:	learn: 32.4953289	total: 166ms	remaining: 427ms
28:	learn: 32.1636511	total: 171ms	remaining: 418ms
29:	learn: 31.7179908	total: 175ms	remaining: 409ms
30:	learn: 31.2828971	total: 180ms	remaining: 402ms
31:	learn: 30.8954632	total: 185ms	remaining: 394ms
32:	learn: 30.6156466	total: 190ms	remaining: 386ms
33:	learn: 30.4325331	total: 195ms	remaining: 378ms
34:	learn: 30.1680270	total: 199ms	remaining: 370ms
35:	learn: 29.8372162	total: 204ms	remaining: 363ms
36:	learn: 29.5018241	total: 209ms	remaining: 356ms
37:	learn: 29.2660228	total: 214ms	remaining: 349ms
38:	learn: 28.9172883	total: 219ms	remaining: 342ms
39:	learn: 28.7004790	total: 224ms	remaining: 336ms
40:	learn: 28.5188438	total: 229ms	remaining: 329ms
41:	learn: 28.3064887	total: 234ms	remaining: 323ms
42:	learn: 27.9584462	total: 238ms	remaining: 316ms
43:	learn: 27.6654603	total: 243ms	remaining: 310ms
44:	learn: 27.3698139	total: 249ms	remaining: 304ms
45:	learn: 27.1825629	total: 254ms	remaining: 298ms
46:	learn: 26.9938719	total: 259ms	remaining: 292ms
47:	learn: 26.7385850	total: 264ms	remaining: 286ms
48:	learn: 26.5055251	total: 269ms	remaining: 280ms
49:	learn: 26.3264840	total: 278ms	remaining: 278ms
50:	learn: 26.1314307	total: 286ms	remaining: 275ms
51:	learn: 25.9514770	total: 294ms	remaining: 271ms
52:	learn: 25.7272663	total: 299ms	remaining: 265ms
53:	learn: 25.4554234	total: 306ms	remaining: 260ms
54:	learn: 25.2133674	total: 311ms	remaining: 254ms
55:	learn: 24.9612149	total: 316ms	remaining: 248ms
56:	learn: 24.6788780	total: 321ms	remaining: 242ms
57:	learn: 24.4504703	total: 326ms	remaining: 236ms
58:	learn: 24.3261542	total: 330ms	remaining: 230ms
59:	learn: 24.1217621	total: 336ms	remaining: 224ms
60:	learn: 23.9495725	total: 341ms	remaining: 218ms
61:	learn: 23.7848565	total: 345ms	remaining: 212ms
62:	learn: 23.6627081	total: 350ms	remaining: 206ms
63:	learn: 23.4390407	total: 355ms	remaining: 200ms
64:	learn: 23.2556312	total: 360ms	remaining: 194ms
65:	learn: 23.1796337	total: 365ms	remaining: 188ms
66:	learn: 23.0431987	total: 371ms	remaining: 183ms
67:	learn: 22.9300366	total: 376ms	remaining: 177ms
68:	learn: 22.8321895	total: 381ms	remaining: 171ms
69:	learn: 22.7825840	total: 386ms	remaining: 165ms
70:	learn: 22.6907764	total: 390ms	remaining: 159ms
71:	learn: 22.5080460	total: 396ms	remaining: 154ms
72:	learn: 22.4053282	total: 400ms	remaining: 148ms
73:	learn: 22.2698085	total: 405ms	remaining: 142ms
74:	learn: 22.0951825	total: 410ms	remaining: 137ms
75:	learn: 21.9933994	total: 415ms	remaining: 131ms
76:	learn: 21.8043413	total: 420ms	remaining: 126ms
77:	learn: 21.7259032	total: 426ms	remaining: 120ms
78:	learn: 21.5625358	total: 431ms	remaining: 115ms
79:	learn: 21.4316837	total: 436ms	remaining: 109ms
80:	learn: 21.2270985	total: 441ms	remaining: 103ms
81:	learn: 21.1248573	total: 446ms	remaining: 97.8ms
82:	learn: 21.0879584	total: 451ms	remaining: 92.3ms
83:	learn: 20.9810177	total: 456ms	remaining: 86.8ms
84:	learn: 20.8986744	total: 461ms	remaining: 81.4ms
85:	learn: 20.8427245	total: 466ms	remaining: 75.9ms
86:	learn: 20.7158681	total: 471ms	remaining: 70.4ms
87:	learn: 20.6055502	total: 476ms	remaining: 64.9ms
88:	learn: 20.5302059	total: 485ms	remaining: 59.9ms
89:	learn: 20.3936827	total: 494ms	remaining: 54.9ms
90:	learn: 20.2756993	total: 505ms	remaining: 49.9ms
91:	learn: 20.1882826	total: 513ms	remaining: 44.7ms
92:	learn: 20.0346875	total: 520ms	remaining: 39.1ms
93:	learn: 19.9798652	total: 525ms	remaining: 33.5ms
94:	learn: 19.9020384	total: 531ms	remaining: 28ms
95:	learn: 19.8463755	total: 546ms	remaining: 22.7ms
96:	learn: 19.7426458	total: 551ms	remaining: 17.1ms
97:	learn: 19.6728655	total: 557ms	remaining: 11.4ms
98:	learn: 19.6355104	total: 563ms	remaining: 5.68ms
99:	learn: 19.6074086	total: 569ms	remaining: 0us
0:	learn: 46.7817285	total: 5.29ms	remaining: 523ms
1:	learn: 45.9551634	total: 10.3ms	remaining: 505ms
2:	learn: 45.0274369	total: 14.9ms	remaining: 482ms
3:	learn: 44.5000950	total: 19.7ms	remaining: 474ms
4:	learn: 43.8963632	total: 24.5ms	remaining: 466ms
5:	learn: 43.2314124	total: 29.3ms	remaining: 459ms
6:	learn: 42.5780140	total: 34.1ms	remaining: 453ms
7:	learn: 41.9033077	total: 39.1ms	remaining: 449ms
8:	learn: 41.3161907	total: 43.9ms	remaining: 444ms
9:	learn: 40.7747000	total: 49.1ms	remaining: 442ms
10:	learn: 40.2728122	total: 54ms	remaining: 437ms
11:	learn: 39.7786608	total: 58.5ms	remaining: 429ms
12:	learn: 39.0812090	total: 63.2ms	remaining: 423ms
13:	learn: 38.6205762	total: 68.2ms	remaining: 419ms
14:	learn: 38.2894236	total: 73.4ms	remaining: 416ms
15:	learn: 37.6906364	total: 78.2ms	remaining: 411ms
16:	learn: 37.3014849	total: 83.1ms	remaining: 406ms
17:	learn: 36.9268494	total: 88.2ms	remaining: 402ms
18:	learn: 36.6348717	total: 96.9ms	remaining: 413ms
19:	learn: 36.1567831	total: 105ms	remaining: 420ms
20:	learn: 35.8080754	total: 113ms	remaining: 425ms
21:	learn: 35.4288913	total: 118ms	remaining: 419ms
22:	learn: 35.0910168	total: 124ms	remaining: 415ms
23:	learn: 34.7483277	total: 129ms	remaining: 408ms
24:	learn: 34.5077203	total: 134ms	remaining: 401ms
25:	learn: 34.1830247	total: 139ms	remaining: 395ms
26:	learn: 33.7943837	total: 144ms	remaining: 390ms
27:	learn: 33.3736582	total: 149ms	remaining: 384ms
28:	learn: 32.9133996	total: 154ms	remaining: 378ms
29:	learn: 32.4361653	total: 159ms	remaining: 372ms
30:	learn: 31.9630085	total: 164ms	remaining: 365ms
31:	learn: 31.5994894	total: 169ms	remaining: 359ms
32:	learn: 31.3120059	total: 174ms	remaining: 352ms
33:	learn: 31.0991187	total: 178ms	remaining: 346ms
34:	learn: 30.8055118	total: 183ms	remaining: 340ms
35:	learn: 30.5197359	total: 188ms	remaining: 334ms
36:	learn: 30.1975315	total: 193ms	remaining: 328ms
37:	learn: 29.9797615	total: 197ms	remaining: 322ms
38:	learn: 29.6874864	total: 202ms	remaining: 316ms
39:	learn: 29.4139907	total: 207ms	remaining: 310ms
40:	learn: 29.0472151	total: 212ms	remaining: 305ms
41:	learn: 28.8356285	total: 216ms	remaining: 299ms
42:	learn: 28.5099349	total: 221ms	remaining: 293ms
43:	learn: 28.2009716	total: 226ms	remaining: 287ms
44:	learn: 27.8947534	total: 231ms	remaining: 282ms
45:	learn: 27.6149698	total: 235ms	remaining: 276ms
46:	learn: 27.4780860	total: 240ms	remaining: 271ms
47:	learn: 27.2859119	total: 245ms	remaining: 265ms
48:	learn: 27.0572191	total: 250ms	remaining: 260ms
49:	learn: 26.8916263	total: 255ms	remaining: 255ms
50:	learn: 26.6791967	total: 259ms	remaining: 249ms
51:	learn: 26.4917307	total: 265ms	remaining: 244ms
52:	learn: 26.2957036	total: 269ms	remaining: 239ms
53:	learn: 26.1116543	total: 274ms	remaining: 234ms
54:	learn: 25.8593319	total: 280ms	remaining: 229ms
55:	learn: 25.6957296	total: 285ms	remaining: 224ms
56:	learn: 25.5065213	total: 292ms	remaining: 220ms
57:	learn: 25.3525337	total: 301ms	remaining: 218ms
58:	learn: 25.2197494	total: 312ms	remaining: 217ms
59:	learn: 25.0583799	total: 321ms	remaining: 214ms
60:	learn: 24.8432659	total: 326ms	remaining: 209ms
61:	learn: 24.6585337	total: 332ms	remaining: 204ms
62:	learn: 24.5382571	total: 338ms	remaining: 199ms
63:	learn: 24.3596337	total: 344ms	remaining: 193ms
64:	learn: 24.2009033	total: 350ms	remaining: 188ms
65:	learn: 24.0964080	total: 356ms	remaining: 183ms
66:	learn: 23.9765920	total: 362ms	remaining: 178ms
67:	learn: 23.8638384	total: 368ms	remaining: 173ms
68:	learn: 23.7381861	total: 373ms	remaining: 167ms
69:	learn: 23.5620129	total: 379ms	remaining: 162ms
70:	learn: 23.4494830	total: 385ms	remaining: 157ms
71:	learn: 23.3095806	total: 390ms	remaining: 152ms
72:	learn: 23.1441767	total: 395ms	remaining: 146ms
73:	learn: 22.9983446	total: 399ms	remaining: 140ms
74:	learn: 22.8464764	total: 404ms	remaining: 135ms
75:	learn: 22.7606423	total: 409ms	remaining: 129ms
76:	learn: 22.6095905	total: 414ms	remaining: 124ms
77:	learn: 22.4430506	total: 419ms	remaining: 118ms
78:	learn: 22.2925872	total: 423ms	remaining: 113ms
79:	learn: 22.1806286	total: 428ms	remaining: 107ms
80:	learn: 22.0070525	total: 433ms	remaining: 102ms
81:	learn: 21.9114201	total: 438ms	remaining: 96ms
82:	learn: 21.7742884	total: 442ms	remaining: 90.6ms
83:	learn: 21.6372857	total: 447ms	remaining: 85.1ms
84:	learn: 21.5380397	total: 452ms	remaining: 79.7ms
85:	learn: 21.4730146	total: 457ms	remaining: 74.3ms
86:	learn: 21.3236516	total: 461ms	remaining: 68.9ms
87:	learn: 21.2512101	total: 466ms	remaining: 63.5ms
88:	learn: 21.2192883	total: 471ms	remaining: 58.2ms
89:	learn: 21.0457926	total: 478ms	remaining: 53.1ms
90:	learn: 20.9986980	total: 485ms	remaining: 48ms
91:	learn: 20.9040032	total: 492ms	remaining: 42.8ms
92:	learn: 20.7178547	total: 499ms	remaining: 37.6ms
93:	learn: 20.6535030	total: 506ms	remaining: 32.3ms
94:	learn: 20.5641982	total: 513ms	remaining: 27ms
95:	learn: 20.5355409	total: 517ms	remaining: 21.6ms
96:	learn: 20.4496493	total: 522ms	remaining: 16.1ms
97:	learn: 20.3579862	total: 527ms	remaining: 10.7ms
98:	learn: 20.2442476	total: 532ms	remaining: 5.37ms
99:	learn: 20.1075813	total: 537ms	remaining: 0us
0:	learn: 27.5267205	total: 23.6ms	remaining: 2.33s
1:	learn: 27.0297320	total: 46.9ms	remaining: 2.3s
2:	learn: 26.5510417	total: 70.8ms	remaining: 2.29s
3:	learn: 26.1221185	total: 78ms	remaining: 1.87s
4:	learn: 25.6690036	total: 101ms	remaining: 1.93s
5:	learn: 25.2709759	total: 129ms	remaining: 2.02s
6:	learn: 24.8033327	total: 165ms	remaining: 2.19s
7:	learn: 24.4258966	total: 190ms	remaining: 2.18s
8:	learn: 24.0351254	total: 215ms	remaining: 2.18s
9:	learn: 23.6271871	total: 242ms	remaining: 2.18s
10:	learn: 23.1709164	total: 268ms	remaining: 2.17s
11:	learn: 22.8341448	total: 292ms	remaining: 2.14s
12:	learn: 22.5508255	total: 317ms	remaining: 2.12s
13:	learn: 22.1650870	total: 343ms	remaining: 2.11s
14:	learn: 21.8409545	total: 368ms	remaining: 2.08s
15:	learn: 21.5838916	total: 400ms	remaining: 2.1s
16:	learn: 21.2570767	total: 425ms	remaining: 2.07s
17:	learn: 20.9351602	total: 449ms	remaining: 2.04s
18:	learn: 20.6431553	total: 473ms	remaining: 2.02s
19:	learn: 20.3451843	total: 497ms	remaining: 1.99s
20:	learn: 20.0903893	total: 521ms	remaining: 1.96s
21:	learn: 19.7708525	total: 545ms	remaining: 1.93s
22:	learn: 19.5129016	total: 573ms	remaining: 1.92s
23:	learn: 19.2789838	total: 607ms	remaining: 1.92s
24:	learn: 19.0285247	total: 631ms	remaining: 1.89s
25:	learn: 18.7740774	total: 655ms	remaining: 1.86s
26:	learn: 18.4131270	total: 680ms	remaining: 1.84s
27:	learn: 18.1935928	total: 705ms	remaining: 1.81s
28:	learn: 17.9185293	total: 729ms	remaining: 1.78s
29:	learn: 17.6818825	total: 754ms	remaining: 1.76s
30:	learn: 17.4551687	total: 780ms	remaining: 1.74s
31:	learn: 17.2687322	total: 812ms	remaining: 1.73s
32:	learn: 17.0648633	total: 836ms	remaining: 1.7s
33:	learn: 16.8298981	total: 860ms	remaining: 1.67s
34:	learn: 16.6371395	total: 884ms	remaining: 1.64s
35:	learn: 16.4706695	total: 908ms	remaining: 1.61s
36:	learn: 16.2417258	total: 933ms	remaining: 1.59s
37:	learn: 16.0550250	total: 957ms	remaining: 1.56s
38:	learn: 15.8743430	total: 981ms	remaining: 1.53s
39:	learn: 15.7086215	total: 1s	remaining: 1.51s
40:	learn: 15.5349794	total: 1.04s	remaining: 1.5s
41:	learn: 15.3661561	total: 1.06s	remaining: 1.47s
42:	learn: 15.1953294	total: 1.09s	remaining: 1.44s
43:	learn: 15.0239038	total: 1.11s	remaining: 1.42s
44:	learn: 14.8773748	total: 1.14s	remaining: 1.39s
45:	learn: 14.6611861	total: 1.16s	remaining: 1.37s
46:	learn: 14.5252257	total: 1.19s	remaining: 1.34s
47:	learn: 14.3792699	total: 1.22s	remaining: 1.32s
48:	learn: 14.2511628	total: 1.25s	remaining: 1.3s
49:	learn: 14.1345616	total: 1.27s	remaining: 1.27s
50:	learn: 13.9884078	total: 1.3s	remaining: 1.25s
51:	learn: 13.8664210	total: 1.32s	remaining: 1.22s
52:	learn: 13.7317425	total: 1.34s	remaining: 1.19s
53:	learn: 13.6052633	total: 1.37s	remaining: 1.17s
54:	learn: 13.4989783	total: 1.4s	remaining: 1.14s
55:	learn: 13.3711614	total: 1.42s	remaining: 1.12s
56:	learn: 13.2500078	total: 1.45s	remaining: 1.09s
57:	learn: 13.1495677	total: 1.49s	remaining: 1.07s
58:	learn: 13.0270356	total: 1.51s	remaining: 1.05s
59:	learn: 12.9010466	total: 1.54s	remaining: 1.02s
60:	learn: 12.7690116	total: 1.56s	remaining: 1s
61:	learn: 12.6721291	total: 1.59s	remaining: 974ms
62:	learn: 12.5556250	total: 1.61s	remaining: 948ms
63:	learn: 12.4465816	total: 1.64s	remaining: 922ms
64:	learn: 12.3321066	total: 1.66s	remaining: 896ms
65:	learn: 12.2170303	total: 1.7s	remaining: 874ms
66:	learn: 12.1113674	total: 1.72s	remaining: 849ms
67:	learn: 12.0224784	total: 1.75s	remaining: 823ms
68:	learn: 11.9394297	total: 1.77s	remaining: 797ms
69:	learn: 11.8303621	total: 1.8s	remaining: 771ms
70:	learn: 11.7377540	total: 1.82s	remaining: 745ms
71:	learn: 11.6367962	total: 1.85s	remaining: 719ms
72:	learn: 11.5501496	total: 1.87s	remaining: 693ms
73:	learn: 11.4493525	total: 1.91s	remaining: 670ms
74:	learn: 11.3454123	total: 1.93s	remaining: 645ms
75:	learn: 11.2512257	total: 1.96s	remaining: 619ms
76:	learn: 11.1778585	total: 1.99s	remaining: 593ms
77:	learn: 11.1109993	total: 2.01s	remaining: 567ms
78:	learn: 11.0176987	total: 2.04s	remaining: 542ms
79:	learn: 10.9457927	total: 2.06s	remaining: 516ms
80:	learn: 10.8639363	total: 2.09s	remaining: 490ms
81:	learn: 10.7872782	total: 2.11s	remaining: 464ms
82:	learn: 10.6570129	total: 2.14s	remaining: 438ms
83:	learn: 10.5760595	total: 2.17s	remaining: 413ms
84:	learn: 10.4763853	total: 2.19s	remaining: 386ms
85:	learn: 10.3931190	total: 2.21s	remaining: 361ms
86:	learn: 10.3021565	total: 2.24s	remaining: 335ms
87:	learn: 10.2202312	total: 2.26s	remaining: 309ms
88:	learn: 10.1376195	total: 2.29s	remaining: 283ms
89:	learn: 10.0481135	total: 2.31s	remaining: 257ms
90:	learn: 9.9436402	total: 2.33s	remaining: 231ms
91:	learn: 9.8883469	total: 2.37s	remaining: 206ms
92:	learn: 9.8391453	total: 2.4s	remaining: 180ms
93:	learn: 9.7559058	total: 2.42s	remaining: 155ms
94:	learn: 9.7036404	total: 2.45s	remaining: 129ms
95:	learn: 9.6339700	total: 2.47s	remaining: 103ms
96:	learn: 9.5423437	total: 2.5s	remaining: 77.2ms
97:	learn: 9.4694485	total: 2.52s	remaining: 51.4ms
98:	learn: 9.3961815	total: 2.54s	remaining: 25.7ms
99:	learn: 9.3398252	total: 2.58s	remaining: 0us
0:	learn: 42.7705174	total: 23.8ms	remaining: 2.35s
1:	learn: 41.7656178	total: 47.6ms	remaining: 2.33s
2:	learn: 40.8179156	total: 71.5ms	remaining: 2.31s
3:	learn: 39.6523791	total: 78.8ms	remaining: 1.89s
4:	learn: 38.7129138	total: 103ms	remaining: 1.96s
5:	learn: 37.8422176	total: 128ms	remaining: 2.01s
6:	learn: 36.8116359	total: 153ms	remaining: 2.03s
7:	learn: 36.0052487	total: 190ms	remaining: 2.18s
8:	learn: 35.2849975	total: 215ms	remaining: 2.17s
9:	learn: 34.4756781	total: 241ms	remaining: 2.17s
10:	learn: 33.6653999	total: 269ms	remaining: 2.17s
11:	learn: 32.7620757	total: 292ms	remaining: 2.14s
12:	learn: 32.0480959	total: 317ms	remaining: 2.12s
13:	learn: 31.4172082	total: 342ms	remaining: 2.1s
14:	learn: 30.8340727	total: 366ms	remaining: 2.08s
15:	learn: 30.2683567	total: 400ms	remaining: 2.1s
16:	learn: 29.8492136	total: 426ms	remaining: 2.08s
17:	learn: 29.2125099	total: 451ms	remaining: 2.05s
18:	learn: 28.6054738	total: 475ms	remaining: 2.03s
19:	learn: 28.0640663	total: 500ms	remaining: 2s
20:	learn: 27.5413586	total: 524ms	remaining: 1.97s
21:	learn: 26.9873574	total: 548ms	remaining: 1.94s
22:	learn: 26.3484257	total: 572ms	remaining: 1.92s
23:	learn: 25.8429212	total: 600ms	remaining: 1.9s
24:	learn: 25.3750345	total: 636ms	remaining: 1.91s
25:	learn: 24.8995542	total: 662ms	remaining: 1.88s
26:	learn: 24.4763414	total: 665ms	remaining: 1.8s
27:	learn: 24.0223071	total: 689ms	remaining: 1.77s
28:	learn: 23.5490716	total: 713ms	remaining: 1.75s
29:	learn: 23.2249502	total: 737ms	remaining: 1.72s
30:	learn: 22.8048550	total: 762ms	remaining: 1.7s
31:	learn: 22.5381351	total: 787ms	remaining: 1.67s
32:	learn: 22.1317703	total: 814ms	remaining: 1.65s
33:	learn: 21.7444080	total: 844ms	remaining: 1.64s
34:	learn: 21.3990423	total: 868ms	remaining: 1.61s
35:	learn: 21.1239746	total: 891ms	remaining: 1.58s
36:	learn: 20.8039218	total: 916ms	remaining: 1.56s
37:	learn: 20.5044886	total: 940ms	remaining: 1.53s
38:	learn: 20.2580104	total: 965ms	remaining: 1.51s
39:	learn: 19.9234991	total: 992ms	remaining: 1.49s
40:	learn: 19.6150872	total: 1.02s	remaining: 1.47s
41:	learn: 19.3387395	total: 1.05s	remaining: 1.45s
42:	learn: 19.1094717	total: 1.08s	remaining: 1.43s
43:	learn: 18.8720442	total: 1.1s	remaining: 1.4s
44:	learn: 18.5949279	total: 1.13s	remaining: 1.38s
45:	learn: 18.3092362	total: 1.16s	remaining: 1.35s
46:	learn: 18.0869723	total: 1.18s	remaining: 1.33s
47:	learn: 17.8480253	total: 1.2s	remaining: 1.3s
48:	learn: 17.6697203	total: 1.24s	remaining: 1.28s
49:	learn: 17.4805106	total: 1.26s	remaining: 1.26s
50:	learn: 17.2762453	total: 1.29s	remaining: 1.24s
51:	learn: 17.0525457	total: 1.31s	remaining: 1.21s
52:	learn: 16.8777174	total: 1.34s	remaining: 1.19s
53:	learn: 16.6928868	total: 1.36s	remaining: 1.16s
54:	learn: 16.5257601	total: 1.39s	remaining: 1.14s
55:	learn: 16.3285949	total: 1.42s	remaining: 1.11s
56:	learn: 16.1573162	total: 1.45s	remaining: 1.09s
57:	learn: 15.9898094	total: 1.47s	remaining: 1.07s
58:	learn: 15.8177173	total: 1.5s	remaining: 1.04s
59:	learn: 15.6220285	total: 1.53s	remaining: 1.02s
60:	learn: 15.4921595	total: 1.55s	remaining: 993ms
61:	learn: 15.2259668	total: 1.58s	remaining: 967ms
62:	learn: 15.0578599	total: 1.6s	remaining: 941ms
63:	learn: 14.8598966	total: 1.63s	remaining: 915ms
64:	learn: 14.7079676	total: 1.65s	remaining: 891ms
65:	learn: 14.5262302	total: 1.68s	remaining: 867ms
66:	learn: 14.3947423	total: 1.71s	remaining: 842ms
67:	learn: 14.2508493	total: 1.73s	remaining: 816ms
68:	learn: 14.1502560	total: 1.76s	remaining: 790ms
69:	learn: 13.9997992	total: 1.78s	remaining: 765ms
70:	learn: 13.8600785	total: 1.81s	remaining: 739ms
71:	learn: 13.7348317	total: 1.83s	remaining: 714ms
72:	learn: 13.6556478	total: 1.86s	remaining: 689ms
73:	learn: 13.5217356	total: 1.9s	remaining: 667ms
74:	learn: 13.4231392	total: 1.92s	remaining: 641ms
75:	learn: 13.2847848	total: 1.95s	remaining: 616ms
76:	learn: 13.1458481	total: 1.98s	remaining: 590ms
77:	learn: 13.0475561	total: 2s	remaining: 565ms
78:	learn: 12.9445908	total: 2.03s	remaining: 539ms
79:	learn: 12.8213077	total: 2.05s	remaining: 513ms
80:	learn: 12.7210762	total: 2.08s	remaining: 487ms
81:	learn: 12.6320186	total: 2.1s	remaining: 462ms
82:	learn: 12.5362788	total: 2.13s	remaining: 437ms
83:	learn: 12.4350353	total: 2.16s	remaining: 411ms
84:	learn: 12.3601174	total: 2.18s	remaining: 385ms
85:	learn: 12.2940655	total: 2.21s	remaining: 359ms
86:	learn: 12.2055695	total: 2.23s	remaining: 334ms
87:	learn: 12.1249471	total: 2.26s	remaining: 308ms
88:	learn: 12.0198476	total: 2.28s	remaining: 282ms
89:	learn: 11.9560995	total: 2.31s	remaining: 257ms
90:	learn: 11.8997810	total: 2.34s	remaining: 232ms
91:	learn: 11.8272800	total: 2.37s	remaining: 206ms
92:	learn: 11.7398723	total: 2.4s	remaining: 180ms
93:	learn: 11.6996897	total: 2.42s	remaining: 155ms
94:	learn: 11.5707058	total: 2.45s	remaining: 129ms
95:	learn: 11.4454892	total: 2.47s	remaining: 103ms
96:	learn: 11.3786021	total: 2.5s	remaining: 77.2ms
97:	learn: 11.2823760	total: 2.52s	remaining: 51.5ms
98:	learn: 11.1929769	total: 2.55s	remaining: 25.7ms
99:	learn: 11.1117188	total: 2.58s	remaining: 0us
0:	learn: 46.4051117	total: 24.9ms	remaining: 2.46s
1:	learn: 45.3311808	total: 49.7ms	remaining: 2.43s
2:	learn: 44.2355531	total: 74ms	remaining: 2.39s
3:	learn: 43.2958733	total: 99.6ms	remaining: 2.39s
4:	learn: 42.3536589	total: 129ms	remaining: 2.46s
5:	learn: 41.4859961	total: 166ms	remaining: 2.6s
6:	learn: 40.5534910	total: 192ms	remaining: 2.55s
7:	learn: 39.7060893	total: 217ms	remaining: 2.5s
8:	learn: 38.8439981	total: 243ms	remaining: 2.46s
9:	learn: 38.2669414	total: 268ms	remaining: 2.41s
10:	learn: 37.6759770	total: 292ms	remaining: 2.36s
11:	learn: 36.9869277	total: 317ms	remaining: 2.32s
12:	learn: 36.3901257	total: 344ms	remaining: 2.3s
13:	learn: 35.7917302	total: 373ms	remaining: 2.29s
14:	learn: 35.2174952	total: 396ms	remaining: 2.25s
15:	learn: 34.5826754	total: 421ms	remaining: 2.21s
16:	learn: 34.0874316	total: 444ms	remaining: 2.17s
17:	learn: 33.5003568	total: 468ms	remaining: 2.13s
18:	learn: 32.7934787	total: 492ms	remaining: 2.1s
19:	learn: 31.9083319	total: 517ms	remaining: 2.07s
20:	learn: 31.2930063	total: 546ms	remaining: 2.05s
21:	learn: 30.7897560	total: 574ms	remaining: 2.03s
22:	learn: 30.1479920	total: 598ms	remaining: 2s
23:	learn: 29.5764365	total: 622ms	remaining: 1.97s
24:	learn: 29.0910861	total: 647ms	remaining: 1.94s
25:	learn: 28.4397299	total: 671ms	remaining: 1.91s
26:	learn: 27.8228369	total: 695ms	remaining: 1.88s
27:	learn: 27.3877661	total: 719ms	remaining: 1.85s
28:	learn: 26.9261524	total: 743ms	remaining: 1.82s
29:	learn: 26.5038338	total: 767ms	remaining: 1.79s
30:	learn: 26.2151044	total: 801ms	remaining: 1.78s
31:	learn: 25.8170458	total: 826ms	remaining: 1.75s
32:	learn: 25.4852966	total: 849ms	remaining: 1.72s
33:	learn: 25.0288024	total: 873ms	remaining: 1.7s
34:	learn: 24.6327933	total: 898ms	remaining: 1.67s
35:	learn: 24.1334075	total: 922ms	remaining: 1.64s
36:	learn: 23.7648659	total: 945ms	remaining: 1.61s
37:	learn: 23.4059601	total: 969ms	remaining: 1.58s
38:	learn: 23.0824106	total: 995ms	remaining: 1.55s
39:	learn: 22.8059757	total: 1.03s	remaining: 1.55s
40:	learn: 22.5306226	total: 1.06s	remaining: 1.52s
41:	learn: 22.2219847	total: 1.08s	remaining: 1.5s
42:	learn: 21.8972204	total: 1.11s	remaining: 1.47s
43:	learn: 21.5236072	total: 1.13s	remaining: 1.44s
44:	learn: 21.2553689	total: 1.16s	remaining: 1.41s
45:	learn: 20.8401171	total: 1.18s	remaining: 1.39s
46:	learn: 20.5752228	total: 1.2s	remaining: 1.36s
47:	learn: 20.3528352	total: 1.23s	remaining: 1.33s
48:	learn: 20.1615025	total: 1.26s	remaining: 1.31s
49:	learn: 19.8957215	total: 1.28s	remaining: 1.28s
50:	learn: 19.6512654	total: 1.31s	remaining: 1.25s
51:	learn: 19.4334583	total: 1.33s	remaining: 1.23s
52:	learn: 19.1886760	total: 1.35s	remaining: 1.2s
53:	learn: 18.8797014	total: 1.38s	remaining: 1.17s
54:	learn: 18.6166876	total: 1.4s	remaining: 1.15s
55:	learn: 18.3791724	total: 1.43s	remaining: 1.12s
56:	learn: 18.2115659	total: 1.45s	remaining: 1.09s
57:	learn: 18.0722693	total: 1.48s	remaining: 1.07s
58:	learn: 17.8852192	total: 1.51s	remaining: 1.05s
59:	learn: 17.7272446	total: 1.53s	remaining: 1.02s
60:	learn: 17.4942483	total: 1.56s	remaining: 997ms
61:	learn: 17.3054937	total: 1.58s	remaining: 971ms
62:	learn: 17.1549585	total: 1.61s	remaining: 944ms
63:	learn: 16.9975916	total: 1.63s	remaining: 918ms
64:	learn: 16.8858589	total: 1.66s	remaining: 892ms
65:	learn: 16.6701164	total: 1.68s	remaining: 866ms
66:	learn: 16.5500620	total: 1.71s	remaining: 843ms
67:	learn: 16.3458753	total: 1.74s	remaining: 817ms
68:	learn: 16.1878838	total: 1.76s	remaining: 791ms
69:	learn: 16.0305134	total: 1.78s	remaining: 765ms
70:	learn: 15.8487627	total: 1.81s	remaining: 740ms
71:	learn: 15.6683766	total: 1.84s	remaining: 715ms
72:	learn: 15.5077137	total: 1.87s	remaining: 690ms
73:	learn: 15.4103876	total: 1.9s	remaining: 667ms
74:	learn: 15.2840688	total: 1.94s	remaining: 645ms
75:	learn: 15.1507590	total: 1.96s	remaining: 620ms
76:	learn: 14.9825337	total: 2s	remaining: 599ms
77:	learn: 14.8044062	total: 2.03s	remaining: 573ms
78:	learn: 14.6711374	total: 2.06s	remaining: 548ms
79:	learn: 14.5318692	total: 2.09s	remaining: 522ms
80:	learn: 14.4181194	total: 2.12s	remaining: 497ms
81:	learn: 14.2559532	total: 2.15s	remaining: 473ms
82:	learn: 14.1026042	total: 2.18s	remaining: 447ms
83:	learn: 13.9184961	total: 2.21s	remaining: 421ms
84:	learn: 13.7905556	total: 2.23s	remaining: 394ms
85:	learn: 13.6755541	total: 2.27s	remaining: 369ms
86:	learn: 13.5644560	total: 2.29s	remaining: 343ms
87:	learn: 13.4412378	total: 2.32s	remaining: 317ms
88:	learn: 13.3271667	total: 2.35s	remaining: 291ms
89:	learn: 13.2634410	total: 2.39s	remaining: 265ms
90:	learn: 13.1463553	total: 2.41s	remaining: 239ms
91:	learn: 13.0389944	total: 2.44s	remaining: 212ms
92:	learn: 12.9605830	total: 2.47s	remaining: 186ms
93:	learn: 12.8819119	total: 2.51s	remaining: 160ms
94:	learn: 12.8038551	total: 2.53s	remaining: 133ms
95:	learn: 12.7013498	total: 2.57s	remaining: 107ms
96:	learn: 12.6011350	total: 2.6s	remaining: 80.3ms
97:	learn: 12.4949377	total: 2.62s	remaining: 53.5ms
98:	learn: 12.3808699	total: 2.65s	remaining: 26.8ms
99:	learn: 12.2551864	total: 2.67s	remaining: 0us
0:	learn: 45.9785919	total: 24.6ms	remaining: 2.44s
1:	learn: 44.9581939	total: 50.5ms	remaining: 2.47s
2:	learn: 43.9091127	total: 91.8ms	remaining: 2.97s
3:	learn: 42.7984962	total: 118ms	remaining: 2.83s
4:	learn: 41.9715841	total: 144ms	remaining: 2.74s
5:	learn: 41.2949683	total: 172ms	remaining: 2.7s
6:	learn: 40.4494730	total: 198ms	remaining: 2.63s
7:	learn: 39.6906390	total: 223ms	remaining: 2.57s
8:	learn: 38.6718680	total: 248ms	remaining: 2.51s
9:	learn: 37.9176664	total: 274ms	remaining: 2.47s
10:	learn: 36.9169551	total: 307ms	remaining: 2.48s
11:	learn: 36.1670753	total: 333ms	remaining: 2.44s
12:	learn: 35.6362382	total: 358ms	remaining: 2.39s
13:	learn: 35.0764262	total: 382ms	remaining: 2.35s
14:	learn: 34.5241023	total: 406ms	remaining: 2.3s
15:	learn: 33.9112917	total: 431ms	remaining: 2.26s
16:	learn: 33.1023896	total: 456ms	remaining: 2.23s
17:	learn: 32.5227767	total: 481ms	remaining: 2.19s
18:	learn: 31.9685385	total: 509ms	remaining: 2.17s
19:	learn: 31.4048780	total: 543ms	remaining: 2.17s
20:	learn: 30.9173286	total: 569ms	remaining: 2.14s
21:	learn: 30.4889417	total: 594ms	remaining: 2.11s
22:	learn: 29.9957742	total: 621ms	remaining: 2.08s
23:	learn: 29.5532403	total: 646ms	remaining: 2.04s
24:	learn: 29.0869023	total: 671ms	remaining: 2.01s
25:	learn: 28.7131197	total: 696ms	remaining: 1.98s
26:	learn: 28.2622970	total: 725ms	remaining: 1.96s
27:	learn: 27.7045502	total: 755ms	remaining: 1.94s
28:	learn: 27.2689985	total: 779ms	remaining: 1.91s
29:	learn: 26.8937625	total: 803ms	remaining: 1.87s
30:	learn: 26.4723305	total: 827ms	remaining: 1.84s
31:	learn: 26.0613360	total: 852ms	remaining: 1.81s
32:	learn: 25.7354314	total: 877ms	remaining: 1.78s
33:	learn: 25.4365901	total: 903ms	remaining: 1.75s
34:	learn: 25.0579971	total: 932ms	remaining: 1.73s
35:	learn: 24.6756006	total: 960ms	remaining: 1.71s
36:	learn: 24.3211908	total: 986ms	remaining: 1.68s
37:	learn: 23.8567945	total: 1.01s	remaining: 1.65s
38:	learn: 23.5856536	total: 1.03s	remaining: 1.62s
39:	learn: 23.3552361	total: 1.06s	remaining: 1.59s
40:	learn: 23.1477272	total: 1.09s	remaining: 1.56s
41:	learn: 22.8497360	total: 1.11s	remaining: 1.54s
42:	learn: 22.5809198	total: 1.14s	remaining: 1.51s
43:	learn: 22.2522495	total: 1.17s	remaining: 1.49s
44:	learn: 21.9258917	total: 1.2s	remaining: 1.46s
45:	learn: 21.6933205	total: 1.22s	remaining: 1.43s
46:	learn: 21.4423031	total: 1.25s	remaining: 1.41s
47:	learn: 21.1573471	total: 1.27s	remaining: 1.38s
48:	learn: 20.9677940	total: 1.29s	remaining: 1.35s
49:	learn: 20.7417189	total: 1.32s	remaining: 1.32s
50:	learn: 20.5010597	total: 1.35s	remaining: 1.3s
51:	learn: 20.2654074	total: 1.38s	remaining: 1.28s
52:	learn: 20.0568837	total: 1.41s	remaining: 1.25s
53:	learn: 19.8187698	total: 1.44s	remaining: 1.22s
54:	learn: 19.5549335	total: 1.46s	remaining: 1.2s
55:	learn: 19.4061951	total: 1.49s	remaining: 1.17s
56:	learn: 19.2259890	total: 1.51s	remaining: 1.14s
57:	learn: 19.0335945	total: 1.54s	remaining: 1.11s
58:	learn: 18.8545847	total: 1.57s	remaining: 1.09s
59:	learn: 18.7070231	total: 1.59s	remaining: 1.06s
60:	learn: 18.5923917	total: 1.62s	remaining: 1.03s
61:	learn: 18.4429719	total: 1.64s	remaining: 1.01s
62:	learn: 18.2825510	total: 1.67s	remaining: 980ms
63:	learn: 18.1358848	total: 1.69s	remaining: 952ms
64:	learn: 18.0102396	total: 1.72s	remaining: 925ms
65:	learn: 17.7782817	total: 1.74s	remaining: 898ms
66:	learn: 17.6293839	total: 1.77s	remaining: 871ms
67:	learn: 17.4950966	total: 1.8s	remaining: 850ms
68:	learn: 17.3213878	total: 1.83s	remaining: 823ms
69:	learn: 17.1833201	total: 1.86s	remaining: 796ms
70:	learn: 17.0063684	total: 1.88s	remaining: 769ms
71:	learn: 16.8322437	total: 1.91s	remaining: 742ms
72:	learn: 16.7058593	total: 1.93s	remaining: 715ms
73:	learn: 16.5781086	total: 1.96s	remaining: 688ms
74:	learn: 16.4536927	total: 1.98s	remaining: 661ms
75:	learn: 16.3555875	total: 2.01s	remaining: 635ms
76:	learn: 16.2112488	total: 2.04s	remaining: 610ms
77:	learn: 16.0933871	total: 2.07s	remaining: 583ms
78:	learn: 15.9482175	total: 2.09s	remaining: 557ms
79:	learn: 15.8457078	total: 2.12s	remaining: 530ms
80:	learn: 15.7756914	total: 2.14s	remaining: 503ms
81:	learn: 15.5938239	total: 2.17s	remaining: 476ms
82:	learn: 15.4879475	total: 2.19s	remaining: 449ms
83:	learn: 15.3387701	total: 2.22s	remaining: 423ms
84:	learn: 15.2647310	total: 2.25s	remaining: 398ms
85:	learn: 15.1407574	total: 2.28s	remaining: 371ms
86:	learn: 15.0412643	total: 2.3s	remaining: 344ms
87:	learn: 14.9524567	total: 2.33s	remaining: 318ms
88:	learn: 14.8463137	total: 2.35s	remaining: 291ms
89:	learn: 14.8165046	total: 2.38s	remaining: 264ms
90:	learn: 14.7199993	total: 2.4s	remaining: 238ms
91:	learn: 14.5961218	total: 2.43s	remaining: 211ms
92:	learn: 14.5344312	total: 2.46s	remaining: 185ms
93:	learn: 14.4678730	total: 2.48s	remaining: 158ms
94:	learn: 14.3960901	total: 2.51s	remaining: 132ms
95:	learn: 14.3119443	total: 2.53s	remaining: 105ms
96:	learn: 14.2240868	total: 2.55s	remaining: 79ms
97:	learn: 14.1399837	total: 2.58s	remaining: 52.6ms
98:	learn: 14.0533759	total: 2.6s	remaining: 26.3ms
99:	learn: 13.9950351	total: 2.63s	remaining: 0us
0:	learn: 46.6705057	total: 24.5ms	remaining: 2.42s
1:	learn: 45.6228942	total: 49.5ms	remaining: 2.42s
2:	learn: 44.6011857	total: 73.5ms	remaining: 2.38s
3:	learn: 43.4944730	total: 97.4ms	remaining: 2.34s
4:	learn: 42.7214061	total: 121ms	remaining: 2.3s
5:	learn: 41.8717386	total: 145ms	remaining: 2.27s
6:	learn: 41.0828465	total: 169ms	remaining: 2.25s
7:	learn: 40.3693162	total: 201ms	remaining: 2.31s
8:	learn: 39.5504439	total: 227ms	remaining: 2.29s
9:	learn: 38.8028188	total: 251ms	remaining: 2.26s
10:	learn: 37.8021607	total: 274ms	remaining: 2.22s
11:	learn: 37.0316047	total: 287ms	remaining: 2.11s
12:	learn: 36.4697449	total: 311ms	remaining: 2.08s
13:	learn: 35.7324928	total: 335ms	remaining: 2.06s
14:	learn: 35.0670311	total: 359ms	remaining: 2.03s
15:	learn: 34.5416158	total: 384ms	remaining: 2.01s
16:	learn: 33.8060657	total: 416ms	remaining: 2.03s
17:	learn: 33.2764048	total: 444ms	remaining: 2.02s
18:	learn: 32.7985056	total: 470ms	remaining: 2s
19:	learn: 32.2684820	total: 495ms	remaining: 1.98s
20:	learn: 31.7897893	total: 520ms	remaining: 1.96s
21:	learn: 31.3010339	total: 544ms	remaining: 1.93s
22:	learn: 30.8508227	total: 567ms	remaining: 1.9s
23:	learn: 30.3168654	total: 591ms	remaining: 1.87s
24:	learn: 29.8575867	total: 619ms	remaining: 1.85s
25:	learn: 29.3623615	total: 648ms	remaining: 1.84s
26:	learn: 28.9848451	total: 673ms	remaining: 1.82s
27:	learn: 28.6994426	total: 698ms	remaining: 1.79s
28:	learn: 28.2896051	total: 722ms	remaining: 1.77s
29:	learn: 27.8326651	total: 745ms	remaining: 1.74s
30:	learn: 27.3512730	total: 770ms	remaining: 1.71s
31:	learn: 27.0818307	total: 794ms	remaining: 1.69s
32:	learn: 26.6738197	total: 824ms	remaining: 1.67s
33:	learn: 26.3390302	total: 851ms	remaining: 1.65s
34:	learn: 25.9635842	total: 876ms	remaining: 1.63s
35:	learn: 25.6937525	total: 900ms	remaining: 1.6s
36:	learn: 25.3141815	total: 925ms	remaining: 1.57s
37:	learn: 25.0097733	total: 950ms	remaining: 1.55s
38:	learn: 24.7491704	total: 974ms	remaining: 1.52s
39:	learn: 24.3823525	total: 997ms	remaining: 1.5s
40:	learn: 24.3094117	total: 1s	remaining: 1.44s
41:	learn: 23.9596755	total: 1.03s	remaining: 1.42s
42:	learn: 23.6550442	total: 1.05s	remaining: 1.4s
43:	learn: 23.4055797	total: 1.08s	remaining: 1.37s
44:	learn: 23.2484825	total: 1.1s	remaining: 1.35s
45:	learn: 22.9509665	total: 1.14s	remaining: 1.34s
46:	learn: 22.7288116	total: 1.16s	remaining: 1.31s
47:	learn: 22.4239204	total: 1.19s	remaining: 1.29s
48:	learn: 22.2223864	total: 1.22s	remaining: 1.27s
49:	learn: 21.9306439	total: 1.26s	remaining: 1.26s
50:	learn: 21.7134680	total: 1.28s	remaining: 1.23s
51:	learn: 21.6063065	total: 1.31s	remaining: 1.21s
52:	learn: 21.2300249	total: 1.34s	remaining: 1.19s
53:	learn: 20.9961502	total: 1.37s	remaining: 1.16s
54:	learn: 20.7428171	total: 1.4s	remaining: 1.15s
55:	learn: 20.5043370	total: 1.43s	remaining: 1.12s
56:	learn: 20.3343057	total: 1.46s	remaining: 1.1s
57:	learn: 20.1503869	total: 1.49s	remaining: 1.08s
58:	learn: 19.9571627	total: 1.51s	remaining: 1.05s
59:	learn: 19.7166454	total: 1.54s	remaining: 1.03s
60:	learn: 19.5460796	total: 1.57s	remaining: 1s
61:	learn: 19.3319423	total: 1.59s	remaining: 977ms
62:	learn: 19.1518266	total: 1.62s	remaining: 951ms
63:	learn: 18.9801712	total: 1.66s	remaining: 931ms
64:	learn: 18.8325481	total: 1.69s	remaining: 908ms
65:	learn: 18.6545881	total: 1.72s	remaining: 888ms
66:	learn: 18.4172473	total: 1.75s	remaining: 862ms
67:	learn: 18.2145056	total: 1.78s	remaining: 837ms
68:	learn: 18.0294470	total: 1.81s	remaining: 812ms
69:	learn: 17.8764636	total: 1.83s	remaining: 786ms
70:	learn: 17.7552517	total: 1.86s	remaining: 761ms
71:	learn: 17.6134211	total: 1.9s	remaining: 740ms
72:	learn: 17.4607644	total: 1.93s	remaining: 714ms
73:	learn: 17.3425090	total: 1.96s	remaining: 688ms
74:	learn: 17.2255418	total: 1.98s	remaining: 661ms
75:	learn: 17.0908608	total: 2.01s	remaining: 635ms
76:	learn: 16.9227981	total: 2.04s	remaining: 608ms
77:	learn: 16.8243171	total: 2.06s	remaining: 582ms
78:	learn: 16.7020719	total: 2.09s	remaining: 556ms
79:	learn: 16.5231147	total: 2.13s	remaining: 534ms
80:	learn: 16.3550704	total: 2.16s	remaining: 507ms
81:	learn: 16.2531768	total: 2.19s	remaining: 481ms
82:	learn: 16.1529156	total: 2.22s	remaining: 454ms
83:	learn: 15.9391779	total: 2.25s	remaining: 428ms
84:	learn: 15.8578694	total: 2.27s	remaining: 401ms
85:	learn: 15.7783743	total: 2.3s	remaining: 374ms
86:	learn: 15.6452604	total: 2.33s	remaining: 348ms
87:	learn: 15.5300223	total: 2.36s	remaining: 322ms
88:	learn: 15.4195831	total: 2.39s	remaining: 296ms
89:	learn: 15.3071897	total: 2.42s	remaining: 269ms
90:	learn: 15.1446058	total: 2.45s	remaining: 242ms
91:	learn: 15.0547501	total: 2.47s	remaining: 215ms
92:	learn: 14.9463447	total: 2.5s	remaining: 188ms
93:	learn: 14.8747810	total: 2.53s	remaining: 161ms
94:	learn: 14.7579258	total: 2.56s	remaining: 135ms
95:	learn: 14.5927582	total: 2.59s	remaining: 108ms
96:	learn: 14.4834761	total: 2.63s	remaining: 81.2ms
97:	learn: 14.3683779	total: 2.65s	remaining: 54.2ms
98:	learn: 14.2648032	total: 2.68s	remaining: 27.1ms
99:	learn: 14.1339217	total: 2.71s	remaining: 0us
0:	learn: 27.6165091	total: 6.09ms	remaining: 603ms
1:	learn: 27.2156009	total: 11.8ms	remaining: 579ms
2:	learn: 26.8744169	total: 18.5ms	remaining: 598ms
3:	learn: 26.5530473	total: 24.7ms	remaining: 593ms
4:	learn: 26.1200739	total: 31.2ms	remaining: 593ms
5:	learn: 25.7559063	total: 39.6ms	remaining: 621ms
6:	learn: 25.3817459	total: 45.6ms	remaining: 606ms
7:	learn: 25.0780231	total: 52.6ms	remaining: 605ms
8:	learn: 24.7908836	total: 57.7ms	remaining: 584ms
9:	learn: 24.5023726	total: 62.6ms	remaining: 564ms
10:	learn: 24.2430447	total: 67.5ms	remaining: 547ms
11:	learn: 24.0150987	total: 72.4ms	remaining: 531ms
12:	learn: 23.6832732	total: 77.3ms	remaining: 517ms
13:	learn: 23.4512462	total: 82.2ms	remaining: 505ms
14:	learn: 23.2300808	total: 87.1ms	remaining: 494ms
15:	learn: 23.0198192	total: 92.1ms	remaining: 483ms
16:	learn: 22.7757356	total: 97.3ms	remaining: 475ms
17:	learn: 22.4962727	total: 102ms	remaining: 466ms
18:	learn: 22.2131794	total: 107ms	remaining: 457ms
19:	learn: 21.9844087	total: 112ms	remaining: 448ms
20:	learn: 21.6467820	total: 117ms	remaining: 440ms
21:	learn: 21.4458045	total: 122ms	remaining: 432ms
22:	learn: 21.2706627	total: 127ms	remaining: 425ms
23:	learn: 21.0770166	total: 132ms	remaining: 418ms
24:	learn: 20.8871491	total: 137ms	remaining: 410ms
25:	learn: 20.7151270	total: 142ms	remaining: 404ms
26:	learn: 20.5585218	total: 147ms	remaining: 397ms
27:	learn: 20.4091128	total: 152ms	remaining: 390ms
28:	learn: 20.2343121	total: 157ms	remaining: 384ms
29:	learn: 20.0685862	total: 161ms	remaining: 377ms
30:	learn: 19.8339661	total: 166ms	remaining: 370ms
31:	learn: 19.6811138	total: 171ms	remaining: 363ms
32:	learn: 19.4881999	total: 176ms	remaining: 357ms
33:	learn: 19.3473429	total: 181ms	remaining: 351ms
34:	learn: 19.1087185	total: 186ms	remaining: 345ms
35:	learn: 18.9817724	total: 190ms	remaining: 338ms
36:	learn: 18.8465124	total: 195ms	remaining: 332ms
37:	learn: 18.6998182	total: 200ms	remaining: 326ms
38:	learn: 18.5534881	total: 205ms	remaining: 320ms
39:	learn: 18.4221213	total: 210ms	remaining: 314ms
40:	learn: 18.3262428	total: 215ms	remaining: 309ms
41:	learn: 18.2018519	total: 220ms	remaining: 304ms
42:	learn: 18.0704402	total: 225ms	remaining: 298ms
43:	learn: 17.9674737	total: 230ms	remaining: 293ms
44:	learn: 17.8092746	total: 235ms	remaining: 288ms
45:	learn: 17.7036671	total: 241ms	remaining: 283ms
46:	learn: 17.5636023	total: 246ms	remaining: 278ms
47:	learn: 17.3922671	total: 252ms	remaining: 273ms
48:	learn: 17.2777727	total: 257ms	remaining: 268ms
49:	learn: 17.1901866	total: 267ms	remaining: 267ms
50:	learn: 17.0799264	total: 276ms	remaining: 265ms
51:	learn: 17.0022808	total: 284ms	remaining: 262ms
52:	learn: 16.9193737	total: 292ms	remaining: 259ms
53:	learn: 16.8349324	total: 298ms	remaining: 254ms
54:	learn: 16.7122802	total: 304ms	remaining: 249ms
55:	learn: 16.5736462	total: 309ms	remaining: 243ms
56:	learn: 16.4576798	total: 315ms	remaining: 238ms
57:	learn: 16.3336075	total: 321ms	remaining: 232ms
58:	learn: 16.2578113	total: 326ms	remaining: 227ms
59:	learn: 16.1586938	total: 333ms	remaining: 222ms
60:	learn: 16.0827831	total: 338ms	remaining: 216ms
61:	learn: 16.0030150	total: 343ms	remaining: 210ms
62:	learn: 15.8741662	total: 348ms	remaining: 205ms
63:	learn: 15.7533897	total: 353ms	remaining: 199ms
64:	learn: 15.6743804	total: 359ms	remaining: 193ms
65:	learn: 15.6291324	total: 364ms	remaining: 188ms
66:	learn: 15.5363523	total: 370ms	remaining: 182ms
67:	learn: 15.4675550	total: 377ms	remaining: 177ms
68:	learn: 15.3959873	total: 382ms	remaining: 172ms
69:	learn: 15.3222045	total: 387ms	remaining: 166ms
70:	learn: 15.2343883	total: 392ms	remaining: 160ms
71:	learn: 15.1891070	total: 398ms	remaining: 155ms
72:	learn: 15.1320798	total: 403ms	remaining: 149ms
73:	learn: 15.0590468	total: 408ms	remaining: 143ms
74:	learn: 14.9682726	total: 413ms	remaining: 138ms
75:	learn: 14.8868528	total: 419ms	remaining: 132ms
76:	learn: 14.8046328	total: 424ms	remaining: 127ms
77:	learn: 14.7253152	total: 429ms	remaining: 121ms
78:	learn: 14.6438207	total: 435ms	remaining: 116ms
79:	learn: 14.5350651	total: 440ms	remaining: 110ms
80:	learn: 14.4301800	total: 445ms	remaining: 104ms
81:	learn: 14.3716251	total: 451ms	remaining: 99ms
82:	learn: 14.3127586	total: 456ms	remaining: 93.5ms
83:	learn: 14.2685086	total: 464ms	remaining: 88.5ms
84:	learn: 14.1936111	total: 473ms	remaining: 83.5ms
85:	learn: 14.1488261	total: 480ms	remaining: 78.2ms
86:	learn: 14.0654602	total: 486ms	remaining: 72.7ms
87:	learn: 14.0026195	total: 493ms	remaining: 67.2ms
88:	learn: 13.9498697	total: 498ms	remaining: 61.6ms
89:	learn: 13.9002477	total: 503ms	remaining: 55.9ms
90:	learn: 13.8429017	total: 509ms	remaining: 50.3ms
91:	learn: 13.7892130	total: 514ms	remaining: 44.7ms
92:	learn: 13.7122418	total: 519ms	remaining: 39.1ms
93:	learn: 13.6752324	total: 524ms	remaining: 33.5ms
94:	learn: 13.6186680	total: 529ms	remaining: 27.9ms
95:	learn: 13.5578384	total: 534ms	remaining: 22.3ms
96:	learn: 13.5028120	total: 540ms	remaining: 16.7ms
97:	learn: 13.4306895	total: 545ms	remaining: 11.1ms
98:	learn: 13.3955813	total: 549ms	remaining: 5.55ms
99:	learn: 13.3380095	total: 555ms	remaining: 0us
0:	learn: 42.9675374	total: 5.48ms	remaining: 542ms
1:	learn: 42.2542078	total: 10.8ms	remaining: 529ms
2:	learn: 41.5532166	total: 16ms	remaining: 516ms
3:	learn: 40.7812113	total: 21.6ms	remaining: 518ms
4:	learn: 39.8819601	total: 27.6ms	remaining: 524ms
5:	learn: 39.0997229	total: 29.6ms	remaining: 463ms
6:	learn: 38.2185623	total: 34.6ms	remaining: 459ms
7:	learn: 37.5465645	total: 40.1ms	remaining: 461ms
8:	learn: 36.8449555	total: 45.7ms	remaining: 462ms
9:	learn: 36.0912815	total: 51ms	remaining: 459ms
10:	learn: 35.5776470	total: 56.3ms	remaining: 456ms
11:	learn: 34.7845329	total: 61.6ms	remaining: 452ms
12:	learn: 34.1574031	total: 69.2ms	remaining: 463ms
13:	learn: 33.4950652	total: 78ms	remaining: 479ms
14:	learn: 32.9343881	total: 89.9ms	remaining: 510ms
15:	learn: 32.4356238	total: 96.7ms	remaining: 508ms
16:	learn: 31.8370592	total: 104ms	remaining: 507ms
17:	learn: 31.2122644	total: 110ms	remaining: 500ms
18:	learn: 30.7195190	total: 116ms	remaining: 493ms
19:	learn: 30.1548478	total: 121ms	remaining: 485ms
20:	learn: 29.6521001	total: 125ms	remaining: 469ms
21:	learn: 29.1746988	total: 131ms	remaining: 463ms
22:	learn: 28.6492690	total: 136ms	remaining: 456ms
23:	learn: 28.1958339	total: 142ms	remaining: 451ms
24:	learn: 27.9126674	total: 148ms	remaining: 445ms
25:	learn: 27.5059508	total: 154ms	remaining: 438ms
26:	learn: 27.0869176	total: 160ms	remaining: 432ms
27:	learn: 26.6545277	total: 166ms	remaining: 427ms
28:	learn: 26.2388575	total: 172ms	remaining: 421ms
29:	learn: 25.8957708	total: 178ms	remaining: 414ms
30:	learn: 25.5045901	total: 183ms	remaining: 407ms
31:	learn: 25.2559530	total: 188ms	remaining: 399ms
32:	learn: 24.9012566	total: 193ms	remaining: 392ms
33:	learn: 24.5601820	total: 198ms	remaining: 385ms
34:	learn: 24.2407285	total: 204ms	remaining: 379ms
35:	learn: 23.9481769	total: 209ms	remaining: 372ms
36:	learn: 23.6746994	total: 214ms	remaining: 365ms
37:	learn: 23.4470352	total: 219ms	remaining: 358ms
38:	learn: 23.1678305	total: 224ms	remaining: 351ms
39:	learn: 22.9660692	total: 229ms	remaining: 344ms
40:	learn: 22.7102548	total: 235ms	remaining: 338ms
41:	learn: 22.5152447	total: 240ms	remaining: 332ms
42:	learn: 22.2967100	total: 246ms	remaining: 326ms
43:	learn: 22.0869517	total: 252ms	remaining: 321ms
44:	learn: 21.8556497	total: 258ms	remaining: 315ms
45:	learn: 21.7036804	total: 264ms	remaining: 309ms
46:	learn: 21.4792011	total: 269ms	remaining: 304ms
47:	learn: 21.2830384	total: 275ms	remaining: 298ms
48:	learn: 21.0771837	total: 282ms	remaining: 294ms
49:	learn: 20.8824468	total: 290ms	remaining: 290ms
50:	learn: 20.7250875	total: 299ms	remaining: 287ms
51:	learn: 20.5564423	total: 305ms	remaining: 282ms
52:	learn: 20.4067403	total: 311ms	remaining: 276ms
53:	learn: 20.2674808	total: 318ms	remaining: 270ms
54:	learn: 20.1394249	total: 323ms	remaining: 264ms
55:	learn: 19.9748016	total: 328ms	remaining: 258ms
56:	learn: 19.8159522	total: 333ms	remaining: 251ms
57:	learn: 19.6811073	total: 338ms	remaining: 245ms
58:	learn: 19.5083232	total: 344ms	remaining: 239ms
59:	learn: 19.3949390	total: 346ms	remaining: 231ms
60:	learn: 19.2485728	total: 351ms	remaining: 224ms
61:	learn: 19.1255523	total: 357ms	remaining: 219ms
62:	learn: 18.9423320	total: 362ms	remaining: 213ms
63:	learn: 18.7794545	total: 367ms	remaining: 207ms
64:	learn: 18.6339033	total: 373ms	remaining: 201ms
65:	learn: 18.5188724	total: 378ms	remaining: 195ms
66:	learn: 18.3398412	total: 384ms	remaining: 189ms
67:	learn: 18.2873427	total: 389ms	remaining: 183ms
68:	learn: 18.1287092	total: 395ms	remaining: 177ms
69:	learn: 18.0163474	total: 400ms	remaining: 172ms
70:	learn: 17.9428395	total: 418ms	remaining: 171ms
71:	learn: 17.7906087	total: 424ms	remaining: 165ms
72:	learn: 17.6121088	total: 429ms	remaining: 159ms
73:	learn: 17.5136572	total: 434ms	remaining: 153ms
74:	learn: 17.3837993	total: 439ms	remaining: 146ms
75:	learn: 17.3015647	total: 445ms	remaining: 140ms
76:	learn: 17.1991252	total: 450ms	remaining: 135ms
77:	learn: 17.0854777	total: 456ms	remaining: 129ms
78:	learn: 17.0308269	total: 461ms	remaining: 123ms
79:	learn: 16.9754807	total: 466ms	remaining: 117ms
80:	learn: 16.9174907	total: 472ms	remaining: 111ms
81:	learn: 16.7962603	total: 478ms	remaining: 105ms
82:	learn: 16.6685446	total: 488ms	remaining: 100ms
83:	learn: 16.5812672	total: 501ms	remaining: 95.5ms
84:	learn: 16.4896026	total: 509ms	remaining: 89.9ms
85:	learn: 16.4023414	total: 516ms	remaining: 83.9ms
86:	learn: 16.3093718	total: 521ms	remaining: 77.9ms
87:	learn: 16.2409040	total: 527ms	remaining: 71.9ms
88:	learn: 16.1616213	total: 533ms	remaining: 65.8ms
89:	learn: 16.0825203	total: 538ms	remaining: 59.8ms
90:	learn: 16.0204931	total: 544ms	remaining: 53.8ms
91:	learn: 15.9741267	total: 550ms	remaining: 47.8ms
92:	learn: 15.9413725	total: 556ms	remaining: 41.8ms
93:	learn: 15.8762295	total: 561ms	remaining: 35.8ms
94:	learn: 15.8165812	total: 567ms	remaining: 29.9ms
95:	learn: 15.7244343	total: 574ms	remaining: 23.9ms
96:	learn: 15.6537033	total: 580ms	remaining: 17.9ms
97:	learn: 15.6052320	total: 585ms	remaining: 11.9ms
98:	learn: 15.5434930	total: 591ms	remaining: 5.97ms
99:	learn: 15.4452106	total: 597ms	remaining: 0us
0:	learn: 46.5387280	total: 5.13ms	remaining: 508ms
1:	learn: 45.8605074	total: 10.3ms	remaining: 506ms
2:	learn: 45.2237152	total: 15.7ms	remaining: 509ms
3:	learn: 44.4158454	total: 23.1ms	remaining: 553ms
4:	learn: 43.7177384	total: 30.2ms	remaining: 575ms
5:	learn: 42.9896372	total: 37.2ms	remaining: 583ms
6:	learn: 42.3639431	total: 44.8ms	remaining: 596ms
7:	learn: 41.6648406	total: 50.7ms	remaining: 583ms
8:	learn: 41.0681442	total: 56.3ms	remaining: 570ms
9:	learn: 40.4478745	total: 61.4ms	remaining: 553ms
10:	learn: 40.0398470	total: 66.3ms	remaining: 537ms
11:	learn: 39.3300888	total: 71.1ms	remaining: 521ms
12:	learn: 38.9198991	total: 76.3ms	remaining: 511ms
13:	learn: 38.4022666	total: 81.2ms	remaining: 499ms
14:	learn: 37.9124629	total: 86.3ms	remaining: 489ms
15:	learn: 37.3846174	total: 90.9ms	remaining: 477ms
16:	learn: 36.8502348	total: 96ms	remaining: 469ms
17:	learn: 36.5079755	total: 101ms	remaining: 459ms
18:	learn: 36.1239339	total: 106ms	remaining: 450ms
19:	learn: 35.8388688	total: 110ms	remaining: 442ms
20:	learn: 35.4915710	total: 116ms	remaining: 435ms
21:	learn: 34.9483623	total: 120ms	remaining: 427ms
22:	learn: 34.6033866	total: 125ms	remaining: 419ms
23:	learn: 34.1483341	total: 130ms	remaining: 412ms
24:	learn: 33.7626484	total: 135ms	remaining: 405ms
25:	learn: 33.4160820	total: 140ms	remaining: 398ms
26:	learn: 33.0421483	total: 144ms	remaining: 391ms
27:	learn: 32.6573469	total: 149ms	remaining: 384ms
28:	learn: 32.2672417	total: 154ms	remaining: 377ms
29:	learn: 31.8257441	total: 159ms	remaining: 371ms
30:	learn: 31.3394923	total: 164ms	remaining: 364ms
31:	learn: 30.9472894	total: 168ms	remaining: 358ms
32:	learn: 30.6961423	total: 174ms	remaining: 352ms
33:	learn: 30.4670615	total: 178ms	remaining: 346ms
34:	learn: 30.1495001	total: 183ms	remaining: 340ms
35:	learn: 29.8071763	total: 188ms	remaining: 334ms
36:	learn: 29.5255984	total: 193ms	remaining: 328ms
37:	learn: 29.2236758	total: 198ms	remaining: 322ms
38:	learn: 28.9199699	total: 202ms	remaining: 317ms
39:	learn: 28.7003989	total: 207ms	remaining: 311ms
40:	learn: 28.4681160	total: 212ms	remaining: 305ms
41:	learn: 28.2692668	total: 217ms	remaining: 300ms
42:	learn: 27.9327254	total: 222ms	remaining: 295ms
43:	learn: 27.7193597	total: 228ms	remaining: 290ms
44:	learn: 27.4061006	total: 233ms	remaining: 284ms
45:	learn: 27.1840910	total: 238ms	remaining: 279ms
46:	learn: 26.8943816	total: 243ms	remaining: 274ms
47:	learn: 26.6576617	total: 248ms	remaining: 268ms
48:	learn: 26.3230094	total: 258ms	remaining: 268ms
49:	learn: 26.0488483	total: 267ms	remaining: 267ms
50:	learn: 25.7795537	total: 276ms	remaining: 265ms
51:	learn: 25.6103781	total: 284ms	remaining: 262ms
52:	learn: 25.4107383	total: 290ms	remaining: 257ms
53:	learn: 25.1757211	total: 296ms	remaining: 252ms
54:	learn: 24.8949842	total: 301ms	remaining: 246ms
55:	learn: 24.7028694	total: 308ms	remaining: 242ms
56:	learn: 24.4033555	total: 314ms	remaining: 237ms
57:	learn: 24.2109268	total: 320ms	remaining: 232ms
58:	learn: 24.0697623	total: 326ms	remaining: 226ms
59:	learn: 23.8291672	total: 331ms	remaining: 221ms
60:	learn: 23.5972471	total: 336ms	remaining: 215ms
61:	learn: 23.4241182	total: 343ms	remaining: 210ms
62:	learn: 23.2617022	total: 349ms	remaining: 205ms
63:	learn: 23.0329448	total: 354ms	remaining: 199ms
64:	learn: 22.9108081	total: 359ms	remaining: 193ms
65:	learn: 22.8001962	total: 364ms	remaining: 187ms
66:	learn: 22.6861907	total: 369ms	remaining: 182ms
67:	learn: 22.5152895	total: 374ms	remaining: 176ms
68:	learn: 22.3734214	total: 379ms	remaining: 170ms
69:	learn: 22.1840754	total: 384ms	remaining: 165ms
70:	learn: 22.0732908	total: 389ms	remaining: 159ms
71:	learn: 21.8880456	total: 394ms	remaining: 153ms
72:	learn: 21.7838784	total: 398ms	remaining: 147ms
73:	learn: 21.5532885	total: 403ms	remaining: 142ms
74:	learn: 21.3998735	total: 408ms	remaining: 136ms
75:	learn: 21.2699824	total: 413ms	remaining: 130ms
76:	learn: 21.1077652	total: 417ms	remaining: 125ms
77:	learn: 20.9759102	total: 423ms	remaining: 119ms
78:	learn: 20.7531342	total: 428ms	remaining: 114ms
79:	learn: 20.6729631	total: 433ms	remaining: 108ms
80:	learn: 20.4903474	total: 438ms	remaining: 103ms
81:	learn: 20.3708622	total: 443ms	remaining: 97.3ms
82:	learn: 20.2627857	total: 451ms	remaining: 92.4ms
83:	learn: 20.1335464	total: 460ms	remaining: 87.5ms
84:	learn: 20.0100864	total: 467ms	remaining: 82.5ms
85:	learn: 19.9374357	total: 473ms	remaining: 77.1ms
86:	learn: 19.8383097	total: 480ms	remaining: 71.7ms
87:	learn: 19.7804443	total: 485ms	remaining: 66.2ms
88:	learn: 19.7225631	total: 490ms	remaining: 60.6ms
89:	learn: 19.5851849	total: 495ms	remaining: 55ms
90:	learn: 19.5115923	total: 500ms	remaining: 49.5ms
91:	learn: 19.3986485	total: 505ms	remaining: 43.9ms
92:	learn: 19.2465728	total: 509ms	remaining: 38.3ms
93:	learn: 19.2033796	total: 515ms	remaining: 32.8ms
94:	learn: 19.1234096	total: 519ms	remaining: 27.3ms
95:	learn: 19.0080161	total: 524ms	remaining: 21.8ms
96:	learn: 18.9048698	total: 529ms	remaining: 16.4ms
97:	learn: 18.7901500	total: 534ms	remaining: 10.9ms
98:	learn: 18.6759882	total: 539ms	remaining: 5.45ms
99:	learn: 18.6254590	total: 545ms	remaining: 0us
0:	learn: 46.0359105	total: 5.15ms	remaining: 510ms
1:	learn: 45.4503059	total: 9.9ms	remaining: 485ms
2:	learn: 44.6478680	total: 15.1ms	remaining: 489ms
3:	learn: 43.7932387	total: 22.1ms	remaining: 530ms
4:	learn: 43.2236036	total: 29.3ms	remaining: 556ms
5:	learn: 42.4339181	total: 37ms	remaining: 580ms
6:	learn: 41.8906461	total: 43.4ms	remaining: 576ms
7:	learn: 41.2248707	total: 48.9ms	remaining: 563ms
8:	learn: 40.5934570	total: 56.2ms	remaining: 569ms
9:	learn: 39.9204661	total: 62ms	remaining: 558ms
10:	learn: 39.3972458	total: 67.8ms	remaining: 549ms
11:	learn: 38.9220493	total: 73.6ms	remaining: 540ms
12:	learn: 38.2358406	total: 79.1ms	remaining: 529ms
13:	learn: 37.7089336	total: 84.8ms	remaining: 521ms
14:	learn: 37.3714255	total: 90.6ms	remaining: 513ms
15:	learn: 36.8098537	total: 96.5ms	remaining: 506ms
16:	learn: 36.2818695	total: 103ms	remaining: 501ms
17:	learn: 35.8807734	total: 108ms	remaining: 492ms
18:	learn: 35.3850720	total: 114ms	remaining: 485ms
19:	learn: 35.0622365	total: 120ms	remaining: 479ms
20:	learn: 34.7088655	total: 126ms	remaining: 472ms
21:	learn: 34.2869861	total: 131ms	remaining: 463ms
22:	learn: 33.9798756	total: 137ms	remaining: 458ms
23:	learn: 33.6933850	total: 143ms	remaining: 453ms
24:	learn: 33.3542725	total: 148ms	remaining: 444ms
25:	learn: 33.1531104	total: 153ms	remaining: 436ms
26:	learn: 32.7581499	total: 158ms	remaining: 428ms
27:	learn: 32.4953289	total: 163ms	remaining: 419ms
28:	learn: 32.1636511	total: 168ms	remaining: 411ms
29:	learn: 31.7179908	total: 173ms	remaining: 403ms
30:	learn: 31.2828971	total: 177ms	remaining: 395ms
31:	learn: 30.8954632	total: 182ms	remaining: 387ms
32:	learn: 30.6156466	total: 187ms	remaining: 380ms
33:	learn: 30.4325331	total: 192ms	remaining: 373ms
34:	learn: 30.1680270	total: 197ms	remaining: 366ms
35:	learn: 29.8372162	total: 202ms	remaining: 359ms
36:	learn: 29.5018241	total: 222ms	remaining: 377ms
37:	learn: 29.2660228	total: 227ms	remaining: 370ms
38:	learn: 28.9172883	total: 232ms	remaining: 363ms
39:	learn: 28.7004790	total: 237ms	remaining: 355ms
40:	learn: 28.5188438	total: 242ms	remaining: 348ms
41:	learn: 28.3064887	total: 247ms	remaining: 341ms
42:	learn: 27.9584462	total: 257ms	remaining: 340ms
43:	learn: 27.6654603	total: 265ms	remaining: 337ms
44:	learn: 27.3698139	total: 271ms	remaining: 331ms
45:	learn: 27.1825629	total: 276ms	remaining: 325ms
46:	learn: 26.9938719	total: 283ms	remaining: 319ms
47:	learn: 26.7385850	total: 287ms	remaining: 311ms
48:	learn: 26.5055251	total: 292ms	remaining: 304ms
49:	learn: 26.3264840	total: 297ms	remaining: 297ms
50:	learn: 26.1314307	total: 302ms	remaining: 290ms
51:	learn: 25.9514770	total: 306ms	remaining: 283ms
52:	learn: 25.7272663	total: 311ms	remaining: 276ms
53:	learn: 25.4554234	total: 316ms	remaining: 269ms
54:	learn: 25.2133674	total: 321ms	remaining: 262ms
55:	learn: 24.9612149	total: 325ms	remaining: 255ms
56:	learn: 24.6788780	total: 330ms	remaining: 249ms
57:	learn: 24.4504703	total: 334ms	remaining: 242ms
58:	learn: 24.3261542	total: 339ms	remaining: 236ms
59:	learn: 24.1217621	total: 344ms	remaining: 229ms
60:	learn: 23.9495725	total: 349ms	remaining: 223ms
61:	learn: 23.7848565	total: 353ms	remaining: 217ms
62:	learn: 23.6627081	total: 358ms	remaining: 210ms
63:	learn: 23.4390407	total: 363ms	remaining: 204ms
64:	learn: 23.2556312	total: 368ms	remaining: 198ms
65:	learn: 23.1796337	total: 372ms	remaining: 192ms
66:	learn: 23.0431987	total: 377ms	remaining: 186ms
67:	learn: 22.9300366	total: 382ms	remaining: 180ms
68:	learn: 22.8321895	total: 387ms	remaining: 174ms
69:	learn: 22.7825840	total: 391ms	remaining: 168ms
70:	learn: 22.6907764	total: 396ms	remaining: 162ms
71:	learn: 22.5080460	total: 401ms	remaining: 156ms
72:	learn: 22.4053282	total: 405ms	remaining: 150ms
73:	learn: 22.2698085	total: 410ms	remaining: 144ms
74:	learn: 22.0951825	total: 415ms	remaining: 138ms
75:	learn: 21.9933994	total: 420ms	remaining: 133ms
76:	learn: 21.8043413	total: 425ms	remaining: 127ms
77:	learn: 21.7259032	total: 430ms	remaining: 121ms
78:	learn: 21.5625358	total: 435ms	remaining: 116ms
79:	learn: 21.4316837	total: 440ms	remaining: 110ms
80:	learn: 21.2270985	total: 445ms	remaining: 104ms
81:	learn: 21.1248573	total: 450ms	remaining: 98.7ms
82:	learn: 21.0879584	total: 455ms	remaining: 93.2ms
83:	learn: 20.9810177	total: 460ms	remaining: 87.6ms
84:	learn: 20.8986744	total: 467ms	remaining: 82.5ms
85:	learn: 20.8427245	total: 476ms	remaining: 77.5ms
86:	learn: 20.7158681	total: 487ms	remaining: 72.8ms
87:	learn: 20.6055502	total: 495ms	remaining: 67.6ms
88:	learn: 20.5302059	total: 501ms	remaining: 62ms
89:	learn: 20.3936827	total: 507ms	remaining: 56.4ms
90:	learn: 20.2756993	total: 513ms	remaining: 50.7ms
91:	learn: 20.1882826	total: 518ms	remaining: 45.1ms
92:	learn: 20.0346875	total: 525ms	remaining: 39.5ms
93:	learn: 19.9798652	total: 531ms	remaining: 33.9ms
94:	learn: 19.9020384	total: 536ms	remaining: 28.2ms
95:	learn: 19.8463755	total: 542ms	remaining: 22.6ms
96:	learn: 19.7426458	total: 548ms	remaining: 17ms
97:	learn: 19.6728655	total: 553ms	remaining: 11.3ms
98:	learn: 19.6355104	total: 559ms	remaining: 5.64ms
99:	learn: 19.6074086	total: 565ms	remaining: 0us
0:	learn: 46.7817285	total: 5.32ms	remaining: 527ms
1:	learn: 45.9551634	total: 9.9ms	remaining: 485ms
2:	learn: 45.0274369	total: 14.9ms	remaining: 483ms
3:	learn: 44.5000950	total: 20.1ms	remaining: 483ms
4:	learn: 43.8963632	total: 24.6ms	remaining: 467ms
5:	learn: 43.2314124	total: 29.4ms	remaining: 460ms
6:	learn: 42.5780140	total: 34.3ms	remaining: 455ms
7:	learn: 41.9033077	total: 39.5ms	remaining: 454ms
8:	learn: 41.3161907	total: 44.8ms	remaining: 453ms
9:	learn: 40.7747000	total: 49.8ms	remaining: 448ms
10:	learn: 40.2728122	total: 55ms	remaining: 445ms
11:	learn: 39.7786608	total: 63.7ms	remaining: 467ms
12:	learn: 39.0812090	total: 72ms	remaining: 482ms
13:	learn: 38.6205762	total: 79.5ms	remaining: 488ms
14:	learn: 38.2894236	total: 84.8ms	remaining: 481ms
15:	learn: 37.6906364	total: 91.3ms	remaining: 479ms
16:	learn: 37.3014849	total: 96.1ms	remaining: 469ms
17:	learn: 36.9268494	total: 101ms	remaining: 459ms
18:	learn: 36.6348717	total: 106ms	remaining: 452ms
19:	learn: 36.1567831	total: 111ms	remaining: 445ms
20:	learn: 35.8080754	total: 116ms	remaining: 437ms
21:	learn: 35.4288913	total: 121ms	remaining: 429ms
22:	learn: 35.0910168	total: 126ms	remaining: 423ms
23:	learn: 34.7483277	total: 131ms	remaining: 415ms
24:	learn: 34.5077203	total: 136ms	remaining: 408ms
25:	learn: 34.1830247	total: 141ms	remaining: 401ms
26:	learn: 33.7943837	total: 146ms	remaining: 394ms
27:	learn: 33.3736582	total: 151ms	remaining: 387ms
28:	learn: 32.9133996	total: 155ms	remaining: 380ms
29:	learn: 32.4361653	total: 160ms	remaining: 374ms
30:	learn: 31.9630085	total: 165ms	remaining: 367ms
31:	learn: 31.5994894	total: 170ms	remaining: 361ms
32:	learn: 31.3120059	total: 175ms	remaining: 355ms
33:	learn: 31.0991187	total: 180ms	remaining: 348ms
34:	learn: 30.8055118	total: 185ms	remaining: 343ms
35:	learn: 30.5197359	total: 189ms	remaining: 336ms
36:	learn: 30.1975315	total: 194ms	remaining: 331ms
37:	learn: 29.9797615	total: 199ms	remaining: 325ms
38:	learn: 29.6874864	total: 204ms	remaining: 319ms
39:	learn: 29.4139907	total: 209ms	remaining: 313ms
40:	learn: 29.0472151	total: 214ms	remaining: 307ms
41:	learn: 28.8356285	total: 218ms	remaining: 301ms
42:	learn: 28.5099349	total: 223ms	remaining: 296ms
43:	learn: 28.2009716	total: 229ms	remaining: 291ms
44:	learn: 27.8947534	total: 234ms	remaining: 286ms
45:	learn: 27.6149698	total: 239ms	remaining: 280ms
46:	learn: 27.4780860	total: 254ms	remaining: 286ms
47:	learn: 27.2859119	total: 259ms	remaining: 281ms
48:	learn: 27.0572191	total: 264ms	remaining: 275ms
49:	learn: 26.8916263	total: 273ms	remaining: 273ms
50:	learn: 26.6791967	total: 285ms	remaining: 274ms
51:	learn: 26.4917307	total: 291ms	remaining: 269ms
52:	learn: 26.2957036	total: 299ms	remaining: 265ms
53:	learn: 26.1116543	total: 305ms	remaining: 260ms
54:	learn: 25.8593319	total: 310ms	remaining: 254ms
55:	learn: 25.6957296	total: 316ms	remaining: 248ms
56:	learn: 25.5065213	total: 321ms	remaining: 242ms
57:	learn: 25.3525337	total: 327ms	remaining: 237ms
58:	learn: 25.2197494	total: 333ms	remaining: 231ms
59:	learn: 25.0583799	total: 339ms	remaining: 226ms
60:	learn: 24.8432659	total: 345ms	remaining: 221ms
61:	learn: 24.6585337	total: 351ms	remaining: 215ms
62:	learn: 24.5382571	total: 358ms	remaining: 210ms
63:	learn: 24.3596337	total: 364ms	remaining: 205ms
64:	learn: 24.2009033	total: 369ms	remaining: 199ms
65:	learn: 24.0964080	total: 374ms	remaining: 192ms
66:	learn: 23.9765920	total: 379ms	remaining: 186ms
67:	learn: 23.8638384	total: 383ms	remaining: 180ms
68:	learn: 23.7381861	total: 388ms	remaining: 174ms
69:	learn: 23.5620129	total: 393ms	remaining: 168ms
70:	learn: 23.4494830	total: 397ms	remaining: 162ms
71:	learn: 23.3095806	total: 402ms	remaining: 156ms
72:	learn: 23.1441767	total: 407ms	remaining: 150ms
73:	learn: 22.9983446	total: 411ms	remaining: 145ms
74:	learn: 22.8464764	total: 416ms	remaining: 139ms
75:	learn: 22.7606423	total: 421ms	remaining: 133ms
76:	learn: 22.6095905	total: 426ms	remaining: 127ms
77:	learn: 22.4430506	total: 431ms	remaining: 121ms
78:	learn: 22.2925872	total: 435ms	remaining: 116ms
79:	learn: 22.1806286	total: 441ms	remaining: 110ms
80:	learn: 22.0070525	total: 446ms	remaining: 105ms
81:	learn: 21.9114201	total: 451ms	remaining: 98.9ms
82:	learn: 21.7742884	total: 456ms	remaining: 93.4ms
83:	learn: 21.6372857	total: 461ms	remaining: 87.9ms
84:	learn: 21.5380397	total: 466ms	remaining: 82.2ms
85:	learn: 21.4730146	total: 471ms	remaining: 76.7ms
86:	learn: 21.3236516	total: 476ms	remaining: 71.1ms
87:	learn: 21.2512101	total: 484ms	remaining: 66ms
88:	learn: 21.2192883	total: 493ms	remaining: 60.9ms
89:	learn: 21.0457926	total: 501ms	remaining: 55.6ms
90:	learn: 20.9986980	total: 507ms	remaining: 50.1ms
91:	learn: 20.9040032	total: 513ms	remaining: 44.6ms
92:	learn: 20.7178547	total: 518ms	remaining: 39ms
93:	learn: 20.6535030	total: 523ms	remaining: 33.4ms
94:	learn: 20.5641982	total: 528ms	remaining: 27.8ms
95:	learn: 20.5355409	total: 532ms	remaining: 22.2ms
96:	learn: 20.4496493	total: 537ms	remaining: 16.6ms
97:	learn: 20.3579862	total: 542ms	remaining: 11.1ms
98:	learn: 20.2442476	total: 547ms	remaining: 5.53ms
99:	learn: 20.1075813	total: 552ms	remaining: 0us
0:	learn: 27.5364715	total: 16.6ms	remaining: 1.64s
1:	learn: 27.0332605	total: 30.5ms	remaining: 1.5s
2:	learn: 26.6003054	total: 44.7ms	remaining: 1.44s
3:	learn: 26.1718490	total: 58.6ms	remaining: 1.41s
4:	learn: 25.6754191	total: 72.9ms	remaining: 1.39s
5:	learn: 25.1972247	total: 87.3ms	remaining: 1.37s
6:	learn: 24.7789830	total: 103ms	remaining: 1.36s
7:	learn: 24.2982264	total: 127ms	remaining: 1.46s
8:	learn: 23.9385794	total: 144ms	remaining: 1.46s
9:	learn: 23.6008770	total: 159ms	remaining: 1.43s
10:	learn: 23.2761100	total: 175ms	remaining: 1.42s
11:	learn: 22.8911092	total: 190ms	remaining: 1.39s
12:	learn: 22.5316801	total: 205ms	remaining: 1.37s
13:	learn: 22.2544235	total: 220ms	remaining: 1.35s
14:	learn: 21.9242091	total: 234ms	remaining: 1.32s
15:	learn: 21.6271472	total: 248ms	remaining: 1.3s
16:	learn: 21.2652988	total: 263ms	remaining: 1.28s
17:	learn: 20.9768980	total: 277ms	remaining: 1.26s
18:	learn: 20.7309258	total: 292ms	remaining: 1.25s
19:	learn: 20.4429237	total: 308ms	remaining: 1.23s
20:	learn: 20.1255259	total: 329ms	remaining: 1.24s
21:	learn: 19.8288030	total: 345ms	remaining: 1.22s
22:	learn: 19.5829328	total: 358ms	remaining: 1.2s
23:	learn: 19.3328022	total: 373ms	remaining: 1.18s
24:	learn: 19.1228749	total: 386ms	remaining: 1.16s
25:	learn: 18.8350524	total: 400ms	remaining: 1.14s
26:	learn: 18.5551449	total: 415ms	remaining: 1.12s
27:	learn: 18.2938897	total: 429ms	remaining: 1.1s
28:	learn: 18.1043186	total: 443ms	remaining: 1.08s
29:	learn: 17.8978281	total: 458ms	remaining: 1.07s
30:	learn: 17.7117738	total: 474ms	remaining: 1.05s
31:	learn: 17.5039278	total: 490ms	remaining: 1.04s
32:	learn: 17.3162992	total: 508ms	remaining: 1.03s
33:	learn: 17.1329950	total: 524ms	remaining: 1.02s
34:	learn: 16.9601126	total: 548ms	remaining: 1.02s
35:	learn: 16.7877077	total: 566ms	remaining: 1.01s
36:	learn: 16.6334301	total: 582ms	remaining: 991ms
37:	learn: 16.4829453	total: 597ms	remaining: 974ms
38:	learn: 16.3272820	total: 612ms	remaining: 958ms
39:	learn: 16.1678237	total: 629ms	remaining: 943ms
40:	learn: 16.0196284	total: 646ms	remaining: 929ms
41:	learn: 15.8796505	total: 661ms	remaining: 913ms
42:	learn: 15.7426376	total: 677ms	remaining: 897ms
43:	learn: 15.6043764	total: 693ms	remaining: 882ms
44:	learn: 15.4681068	total: 709ms	remaining: 866ms
45:	learn: 15.2875020	total: 732ms	remaining: 860ms
46:	learn: 15.1482508	total: 758ms	remaining: 854ms
47:	learn: 15.0228474	total: 776ms	remaining: 841ms
48:	learn: 14.8844135	total: 793ms	remaining: 825ms
49:	learn: 14.7657978	total: 809ms	remaining: 809ms
50:	learn: 14.6460387	total: 825ms	remaining: 793ms
51:	learn: 14.5101421	total: 842ms	remaining: 777ms
52:	learn: 14.3719206	total: 858ms	remaining: 761ms
53:	learn: 14.2682226	total: 873ms	remaining: 744ms
54:	learn: 14.1426585	total: 888ms	remaining: 727ms
55:	learn: 14.0258152	total: 903ms	remaining: 710ms
56:	learn: 13.9121709	total: 919ms	remaining: 693ms
57:	learn: 13.8073099	total: 934ms	remaining: 676ms
58:	learn: 13.7183634	total: 955ms	remaining: 663ms
59:	learn: 13.6248078	total: 978ms	remaining: 652ms
60:	learn: 13.5263718	total: 995ms	remaining: 636ms
61:	learn: 13.4317836	total: 1.01s	remaining: 619ms
62:	learn: 13.3346746	total: 1.02s	remaining: 602ms
63:	learn: 13.2273536	total: 1.04s	remaining: 585ms
64:	learn: 13.1247698	total: 1.05s	remaining: 569ms
65:	learn: 13.0580572	total: 1.07s	remaining: 552ms
66:	learn: 12.9784144	total: 1.08s	remaining: 535ms
67:	learn: 12.8958182	total: 1.1s	remaining: 518ms
68:	learn: 12.8085193	total: 1.11s	remaining: 501ms
69:	learn: 12.7158575	total: 1.13s	remaining: 484ms
70:	learn: 12.6228844	total: 1.14s	remaining: 467ms
71:	learn: 12.5541656	total: 1.16s	remaining: 451ms
72:	learn: 12.4729623	total: 1.18s	remaining: 437ms
73:	learn: 12.3798763	total: 1.2s	remaining: 421ms
74:	learn: 12.3218601	total: 1.21s	remaining: 404ms
75:	learn: 12.2412940	total: 1.23s	remaining: 388ms
76:	learn: 12.1485559	total: 1.24s	remaining: 371ms
77:	learn: 12.0828976	total: 1.26s	remaining: 355ms
78:	learn: 11.9983281	total: 1.27s	remaining: 338ms
79:	learn: 11.9233743	total: 1.29s	remaining: 322ms
80:	learn: 11.8640921	total: 1.3s	remaining: 305ms
81:	learn: 11.7910223	total: 1.31s	remaining: 289ms
82:	learn: 11.7235632	total: 1.33s	remaining: 272ms
83:	learn: 11.6541693	total: 1.34s	remaining: 256ms
84:	learn: 11.5850883	total: 1.36s	remaining: 240ms
85:	learn: 11.5068749	total: 1.38s	remaining: 224ms
86:	learn: 11.4330975	total: 1.4s	remaining: 209ms
87:	learn: 11.3728016	total: 1.42s	remaining: 193ms
88:	learn: 11.2997698	total: 1.43s	remaining: 177ms
89:	learn: 11.2250105	total: 1.45s	remaining: 161ms
90:	learn: 11.1605386	total: 1.46s	remaining: 145ms
91:	learn: 11.1074685	total: 1.48s	remaining: 129ms
92:	learn: 11.0516038	total: 1.5s	remaining: 113ms
93:	learn: 10.9814113	total: 1.51s	remaining: 96.4ms
94:	learn: 10.9153259	total: 1.52s	remaining: 80.3ms
95:	learn: 10.8685064	total: 1.54s	remaining: 64.2ms
96:	learn: 10.8225632	total: 1.55s	remaining: 48.1ms
97:	learn: 10.7433962	total: 1.57s	remaining: 32ms
98:	learn: 10.6790412	total: 1.59s	remaining: 16ms
99:	learn: 10.6218930	total: 1.6s	remaining: 0us
0:	learn: 42.9392958	total: 13.9ms	remaining: 1.38s
1:	learn: 41.8861295	total: 21.6ms	remaining: 1.06s
2:	learn: 40.9351090	total: 35.8ms	remaining: 1.16s
3:	learn: 40.1727299	total: 50.2ms	remaining: 1.21s
4:	learn: 39.2749251	total: 64.5ms	remaining: 1.23s
5:	learn: 38.5546797	total: 78.9ms	remaining: 1.24s
6:	learn: 37.7382640	total: 94.7ms	remaining: 1.26s
7:	learn: 36.9734924	total: 110ms	remaining: 1.27s
8:	learn: 36.2760557	total: 127ms	remaining: 1.28s
9:	learn: 35.4983146	total: 143ms	remaining: 1.28s
10:	learn: 34.8709435	total: 167ms	remaining: 1.35s
11:	learn: 34.3094422	total: 185ms	remaining: 1.36s
12:	learn: 33.7797352	total: 201ms	remaining: 1.35s
13:	learn: 33.2644446	total: 218ms	remaining: 1.34s
14:	learn: 32.4846043	total: 234ms	remaining: 1.32s
15:	learn: 31.9659270	total: 249ms	remaining: 1.31s
16:	learn: 31.3626236	total: 266ms	remaining: 1.3s
17:	learn: 30.9186005	total: 282ms	remaining: 1.28s
18:	learn: 30.4779355	total: 298ms	remaining: 1.27s
19:	learn: 29.9841073	total: 314ms	remaining: 1.26s
20:	learn: 29.5221830	total: 330ms	remaining: 1.24s
21:	learn: 29.0672830	total: 349ms	remaining: 1.24s
22:	learn: 28.6147734	total: 373ms	remaining: 1.25s
23:	learn: 28.1862201	total: 391ms	remaining: 1.24s
24:	learn: 27.6101530	total: 407ms	remaining: 1.22s
25:	learn: 27.1402659	total: 422ms	remaining: 1.2s
26:	learn: 26.7584486	total: 438ms	remaining: 1.18s
27:	learn: 26.3946909	total: 454ms	remaining: 1.17s
28:	learn: 26.0504227	total: 469ms	remaining: 1.15s
29:	learn: 25.7165133	total: 484ms	remaining: 1.13s
30:	learn: 25.4284656	total: 500ms	remaining: 1.11s
31:	learn: 25.0746326	total: 516ms	remaining: 1.1s
32:	learn: 24.7681302	total: 532ms	remaining: 1.08s
33:	learn: 24.4453473	total: 556ms	remaining: 1.08s
34:	learn: 24.0821316	total: 577ms	remaining: 1.07s
35:	learn: 23.7578001	total: 593ms	remaining: 1.05s
36:	learn: 23.4986054	total: 609ms	remaining: 1.04s
37:	learn: 23.2245830	total: 625ms	remaining: 1.02s
38:	learn: 22.9112753	total: 642ms	remaining: 1s
39:	learn: 22.6537491	total: 658ms	remaining: 988ms
40:	learn: 22.4455739	total: 674ms	remaining: 970ms
41:	learn: 22.1497467	total: 689ms	remaining: 952ms
42:	learn: 21.8978272	total: 704ms	remaining: 934ms
43:	learn: 21.6641644	total: 720ms	remaining: 916ms
44:	learn: 21.4925169	total: 735ms	remaining: 898ms
45:	learn: 21.2702786	total: 757ms	remaining: 888ms
46:	learn: 21.0229282	total: 774ms	remaining: 873ms
47:	learn: 20.8023093	total: 789ms	remaining: 855ms
48:	learn: 20.6544560	total: 804ms	remaining: 837ms
49:	learn: 20.4274938	total: 818ms	remaining: 818ms
50:	learn: 20.2918519	total: 833ms	remaining: 801ms
51:	learn: 20.0677337	total: 848ms	remaining: 783ms
52:	learn: 19.9242510	total: 863ms	remaining: 765ms
53:	learn: 19.6948057	total: 877ms	remaining: 747ms
54:	learn: 19.5133145	total: 892ms	remaining: 730ms
55:	learn: 19.3593952	total: 907ms	remaining: 713ms
56:	learn: 19.1906660	total: 922ms	remaining: 695ms
57:	learn: 18.9811137	total: 938ms	remaining: 679ms
58:	learn: 18.8688018	total: 958ms	remaining: 666ms
59:	learn: 18.6888845	total: 976ms	remaining: 650ms
60:	learn: 18.5743342	total: 992ms	remaining: 634ms
61:	learn: 18.4325359	total: 1.01s	remaining: 618ms
62:	learn: 18.3639009	total: 1.01s	remaining: 593ms
63:	learn: 18.2180846	total: 1.02s	remaining: 577ms
64:	learn: 18.0937188	total: 1.04s	remaining: 560ms
65:	learn: 17.9416709	total: 1.05s	remaining: 544ms
66:	learn: 17.8132992	total: 1.07s	remaining: 528ms
67:	learn: 17.6633142	total: 1.09s	remaining: 511ms
68:	learn: 17.5333526	total: 1.1s	remaining: 495ms
69:	learn: 17.4544089	total: 1.12s	remaining: 478ms
70:	learn: 17.3135682	total: 1.13s	remaining: 462ms
71:	learn: 17.1831714	total: 1.15s	remaining: 446ms
72:	learn: 17.0099707	total: 1.16s	remaining: 429ms
73:	learn: 16.9350416	total: 1.18s	remaining: 413ms
74:	learn: 16.8414347	total: 1.2s	remaining: 399ms
75:	learn: 16.7182780	total: 1.21s	remaining: 383ms
76:	learn: 16.5838092	total: 1.23s	remaining: 366ms
77:	learn: 16.4590385	total: 1.24s	remaining: 350ms
78:	learn: 16.3695122	total: 1.25s	remaining: 334ms
79:	learn: 16.2535686	total: 1.27s	remaining: 317ms
80:	learn: 16.1487199	total: 1.28s	remaining: 301ms
81:	learn: 16.0128862	total: 1.3s	remaining: 285ms
82:	learn: 15.8918624	total: 1.31s	remaining: 269ms
83:	learn: 15.8158630	total: 1.32s	remaining: 253ms
84:	learn: 15.6893805	total: 1.34s	remaining: 236ms
85:	learn: 15.5804209	total: 1.35s	remaining: 220ms
86:	learn: 15.4871516	total: 1.37s	remaining: 204ms
87:	learn: 15.3672350	total: 1.38s	remaining: 189ms
88:	learn: 15.2512041	total: 1.4s	remaining: 173ms
89:	learn: 15.1808175	total: 1.43s	remaining: 158ms
90:	learn: 15.1019009	total: 1.44s	remaining: 143ms
91:	learn: 14.9864696	total: 1.46s	remaining: 127ms
92:	learn: 14.8857385	total: 1.47s	remaining: 111ms
93:	learn: 14.7974070	total: 1.49s	remaining: 94.9ms
94:	learn: 14.7105544	total: 1.5s	remaining: 79.1ms
95:	learn: 14.6548304	total: 1.52s	remaining: 63.2ms
96:	learn: 14.5738415	total: 1.53s	remaining: 47.4ms
97:	learn: 14.4917271	total: 1.55s	remaining: 31.6ms
98:	learn: 14.4114936	total: 1.56s	remaining: 15.8ms
99:	learn: 14.3750086	total: 1.58s	remaining: 0us
0:	learn: 46.5588427	total: 15.5ms	remaining: 1.53s
1:	learn: 45.6635964	total: 31.5ms	remaining: 1.54s
2:	learn: 44.6447505	total: 47ms	remaining: 1.52s
3:	learn: 43.6800849	total: 52.2ms	remaining: 1.25s
4:	learn: 42.9167738	total: 68.1ms	remaining: 1.29s
5:	learn: 42.2337119	total: 83.6ms	remaining: 1.31s
6:	learn: 41.5226009	total: 99ms	remaining: 1.31s
7:	learn: 40.9272252	total: 115ms	remaining: 1.32s
8:	learn: 40.4219026	total: 130ms	remaining: 1.32s
9:	learn: 39.4539834	total: 146ms	remaining: 1.31s
10:	learn: 38.6588436	total: 162ms	remaining: 1.31s
11:	learn: 38.0984201	total: 179ms	remaining: 1.31s
12:	learn: 37.3676229	total: 203ms	remaining: 1.36s
13:	learn: 36.9670411	total: 221ms	remaining: 1.36s
14:	learn: 36.2357592	total: 237ms	remaining: 1.34s
15:	learn: 35.4593874	total: 254ms	remaining: 1.33s
16:	learn: 34.7874782	total: 269ms	remaining: 1.31s
17:	learn: 34.1825603	total: 285ms	remaining: 1.3s
18:	learn: 33.7390135	total: 301ms	remaining: 1.28s
19:	learn: 33.1877490	total: 316ms	remaining: 1.26s
20:	learn: 32.6618930	total: 330ms	remaining: 1.24s
21:	learn: 32.2254158	total: 345ms	remaining: 1.22s
22:	learn: 31.7469155	total: 360ms	remaining: 1.21s
23:	learn: 31.1997986	total: 376ms	remaining: 1.19s
24:	learn: 30.6748050	total: 397ms	remaining: 1.19s
25:	learn: 30.1789291	total: 415ms	remaining: 1.18s
26:	learn: 29.8459330	total: 431ms	remaining: 1.16s
27:	learn: 29.4546320	total: 446ms	remaining: 1.15s
28:	learn: 29.0344042	total: 460ms	remaining: 1.13s
29:	learn: 28.5066104	total: 475ms	remaining: 1.11s
30:	learn: 28.0991112	total: 490ms	remaining: 1.09s
31:	learn: 27.6520871	total: 504ms	remaining: 1.07s
32:	learn: 27.3448961	total: 519ms	remaining: 1.05s
33:	learn: 27.1214405	total: 533ms	remaining: 1.03s
34:	learn: 26.7897524	total: 548ms	remaining: 1.02s
35:	learn: 26.4715044	total: 563ms	remaining: 1s
36:	learn: 26.1946682	total: 578ms	remaining: 984ms
37:	learn: 25.8461635	total: 593ms	remaining: 967ms
38:	learn: 25.5525851	total: 617ms	remaining: 964ms
39:	learn: 25.2815829	total: 634ms	remaining: 951ms
40:	learn: 25.0023546	total: 649ms	remaining: 934ms
41:	learn: 24.7784421	total: 664ms	remaining: 917ms
42:	learn: 24.4915965	total: 679ms	remaining: 900ms
43:	learn: 24.2273409	total: 694ms	remaining: 883ms
44:	learn: 24.0642215	total: 709ms	remaining: 867ms
45:	learn: 23.8571968	total: 723ms	remaining: 849ms
46:	learn: 23.6902398	total: 737ms	remaining: 832ms
47:	learn: 23.4321390	total: 752ms	remaining: 814ms
48:	learn: 23.2124975	total: 766ms	remaining: 797ms
49:	learn: 22.9758075	total: 781ms	remaining: 781ms
50:	learn: 22.8202464	total: 796ms	remaining: 765ms
51:	learn: 22.5918049	total: 811ms	remaining: 748ms
52:	learn: 22.3743701	total: 832ms	remaining: 738ms
53:	learn: 22.1494934	total: 848ms	remaining: 722ms
54:	learn: 21.9580200	total: 862ms	remaining: 705ms
55:	learn: 21.7669951	total: 876ms	remaining: 688ms
56:	learn: 21.5551113	total: 890ms	remaining: 671ms
57:	learn: 21.3521330	total: 904ms	remaining: 654ms
58:	learn: 21.1886488	total: 918ms	remaining: 638ms
59:	learn: 21.0480297	total: 932ms	remaining: 621ms
60:	learn: 20.9228547	total: 946ms	remaining: 605ms
61:	learn: 20.7775700	total: 960ms	remaining: 589ms
62:	learn: 20.6575132	total: 975ms	remaining: 573ms
63:	learn: 20.5865628	total: 989ms	remaining: 556ms
64:	learn: 20.4315710	total: 1s	remaining: 541ms
65:	learn: 20.2510238	total: 1.02s	remaining: 525ms
66:	learn: 20.1183761	total: 1.04s	remaining: 514ms
67:	learn: 19.9387633	total: 1.06s	remaining: 499ms
68:	learn: 19.7968959	total: 1.07s	remaining: 483ms
69:	learn: 19.6798321	total: 1.09s	remaining: 468ms
70:	learn: 19.5093277	total: 1.11s	remaining: 452ms
71:	learn: 19.4338071	total: 1.11s	remaining: 431ms
72:	learn: 19.2707086	total: 1.13s	remaining: 416ms
73:	learn: 19.1510682	total: 1.14s	remaining: 401ms
74:	learn: 19.0520532	total: 1.16s	remaining: 386ms
75:	learn: 18.9271995	total: 1.17s	remaining: 371ms
76:	learn: 18.7586533	total: 1.19s	remaining: 355ms
77:	learn: 18.6268295	total: 1.21s	remaining: 341ms
78:	learn: 18.4593718	total: 1.23s	remaining: 327ms
79:	learn: 18.3495111	total: 1.25s	remaining: 312ms
80:	learn: 18.1668682	total: 1.26s	remaining: 296ms
81:	learn: 18.0473656	total: 1.28s	remaining: 281ms
82:	learn: 17.9152235	total: 1.29s	remaining: 265ms
83:	learn: 17.7772315	total: 1.31s	remaining: 250ms
84:	learn: 17.6332015	total: 1.33s	remaining: 234ms
85:	learn: 17.4822347	total: 1.34s	remaining: 219ms
86:	learn: 17.3872902	total: 1.36s	remaining: 203ms
87:	learn: 17.2778946	total: 1.37s	remaining: 187ms
88:	learn: 17.1703989	total: 1.39s	remaining: 172ms
89:	learn: 17.0496215	total: 1.41s	remaining: 156ms
90:	learn: 16.9593050	total: 1.42s	remaining: 141ms
91:	learn: 16.8830202	total: 1.45s	remaining: 126ms
92:	learn: 16.7830199	total: 1.46s	remaining: 110ms
93:	learn: 16.6990055	total: 1.48s	remaining: 94.5ms
94:	learn: 16.5741019	total: 1.5s	remaining: 78.8ms
95:	learn: 16.5101772	total: 1.51s	remaining: 63ms
96:	learn: 16.4316254	total: 1.53s	remaining: 47.3ms
97:	learn: 16.3794249	total: 1.54s	remaining: 31.5ms
98:	learn: 16.2513193	total: 1.56s	remaining: 15.8ms
99:	learn: 16.1992106	total: 1.57s	remaining: 0us
0:	learn: 46.3162543	total: 17.4ms	remaining: 1.72s
1:	learn: 45.5942821	total: 32ms	remaining: 1.57s
2:	learn: 44.7509166	total: 46.7ms	remaining: 1.51s
3:	learn: 43.9849058	total: 61.2ms	remaining: 1.47s
4:	learn: 43.2164230	total: 75.9ms	remaining: 1.44s
5:	learn: 42.5521164	total: 90.4ms	remaining: 1.42s
6:	learn: 41.8380122	total: 104ms	remaining: 1.39s
7:	learn: 40.9083773	total: 119ms	remaining: 1.37s
8:	learn: 40.2875143	total: 134ms	remaining: 1.35s
9:	learn: 39.6712329	total: 148ms	remaining: 1.33s
10:	learn: 38.8092415	total: 163ms	remaining: 1.31s
11:	learn: 38.3978427	total: 177ms	remaining: 1.3s
12:	learn: 37.8507175	total: 193ms	remaining: 1.29s
13:	learn: 37.2243513	total: 208ms	remaining: 1.28s
14:	learn: 36.7814582	total: 232ms	remaining: 1.32s
15:	learn: 36.1498599	total: 250ms	remaining: 1.31s
16:	learn: 35.5153807	total: 265ms	remaining: 1.29s
17:	learn: 35.0089844	total: 281ms	remaining: 1.28s
18:	learn: 34.6243964	total: 296ms	remaining: 1.26s
19:	learn: 34.0689736	total: 310ms	remaining: 1.24s
20:	learn: 33.7930217	total: 326ms	remaining: 1.22s
21:	learn: 33.4792712	total: 340ms	remaining: 1.2s
22:	learn: 32.9227092	total: 354ms	remaining: 1.19s
23:	learn: 32.4408696	total: 369ms	remaining: 1.17s
24:	learn: 32.0740179	total: 384ms	remaining: 1.15s
25:	learn: 31.7457396	total: 399ms	remaining: 1.13s
26:	learn: 31.4093081	total: 415ms	remaining: 1.12s
27:	learn: 31.2551361	total: 417ms	remaining: 1.07s
28:	learn: 30.8324184	total: 437ms	remaining: 1.07s
29:	learn: 30.3176750	total: 453ms	remaining: 1.06s
30:	learn: 29.8671170	total: 468ms	remaining: 1.04s
31:	learn: 29.6299828	total: 482ms	remaining: 1.02s
32:	learn: 29.3437220	total: 497ms	remaining: 1.01s
33:	learn: 29.0619536	total: 511ms	remaining: 992ms
34:	learn: 28.6744910	total: 526ms	remaining: 977ms
35:	learn: 28.3892321	total: 540ms	remaining: 960ms
36:	learn: 28.0222004	total: 555ms	remaining: 944ms
37:	learn: 27.7752251	total: 569ms	remaining: 928ms
38:	learn: 27.3930700	total: 582ms	remaining: 911ms
39:	learn: 27.1913074	total: 596ms	remaining: 894ms
40:	learn: 26.9505596	total: 611ms	remaining: 879ms
41:	learn: 26.6969689	total: 626ms	remaining: 865ms
42:	learn: 26.3682692	total: 651ms	remaining: 863ms
43:	learn: 26.1956305	total: 668ms	remaining: 850ms
44:	learn: 26.0343386	total: 683ms	remaining: 834ms
45:	learn: 25.7676858	total: 697ms	remaining: 819ms
46:	learn: 25.5282940	total: 712ms	remaining: 803ms
47:	learn: 25.2503007	total: 727ms	remaining: 788ms
48:	learn: 24.9480231	total: 744ms	remaining: 775ms
49:	learn: 24.7368745	total: 759ms	remaining: 759ms
50:	learn: 24.5094298	total: 773ms	remaining: 743ms
51:	learn: 24.3353830	total: 787ms	remaining: 726ms
52:	learn: 24.1469431	total: 801ms	remaining: 710ms
53:	learn: 23.9844905	total: 815ms	remaining: 694ms
54:	learn: 23.7485306	total: 830ms	remaining: 679ms
55:	learn: 23.5090219	total: 847ms	remaining: 665ms
56:	learn: 23.2771748	total: 869ms	remaining: 656ms
57:	learn: 23.1050867	total: 887ms	remaining: 642ms
58:	learn: 22.8768739	total: 902ms	remaining: 627ms
59:	learn: 22.7078012	total: 918ms	remaining: 612ms
60:	learn: 22.4792109	total: 933ms	remaining: 597ms
61:	learn: 22.3022108	total: 949ms	remaining: 582ms
62:	learn: 22.1880076	total: 965ms	remaining: 567ms
63:	learn: 22.0399178	total: 980ms	remaining: 552ms
64:	learn: 21.8893942	total: 996ms	remaining: 536ms
65:	learn: 21.7420556	total: 1.01s	remaining: 521ms
66:	learn: 21.5482244	total: 1.03s	remaining: 506ms
67:	learn: 21.3912425	total: 1.04s	remaining: 491ms
68:	learn: 21.2481926	total: 1.06s	remaining: 476ms
69:	learn: 21.0963461	total: 1.09s	remaining: 467ms
70:	learn: 20.8699742	total: 1.11s	remaining: 452ms
71:	learn: 20.7605761	total: 1.12s	remaining: 437ms
72:	learn: 20.6008357	total: 1.14s	remaining: 421ms
73:	learn: 20.4801003	total: 1.16s	remaining: 406ms
74:	learn: 20.3954906	total: 1.17s	remaining: 391ms
75:	learn: 20.3147776	total: 1.19s	remaining: 375ms
76:	learn: 20.1468550	total: 1.2s	remaining: 359ms
77:	learn: 20.0134727	total: 1.22s	remaining: 344ms
78:	learn: 19.8808755	total: 1.23s	remaining: 328ms
79:	learn: 19.7095280	total: 1.25s	remaining: 313ms
80:	learn: 19.5620806	total: 1.27s	remaining: 298ms
81:	learn: 19.4203190	total: 1.29s	remaining: 283ms
82:	learn: 19.2626610	total: 1.31s	remaining: 268ms
83:	learn: 19.1157540	total: 1.32s	remaining: 252ms
84:	learn: 18.9660358	total: 1.34s	remaining: 236ms
85:	learn: 18.8426472	total: 1.35s	remaining: 221ms
86:	learn: 18.7198125	total: 1.37s	remaining: 205ms
87:	learn: 18.6620190	total: 1.39s	remaining: 189ms
88:	learn: 18.5676918	total: 1.4s	remaining: 173ms
89:	learn: 18.4716789	total: 1.42s	remaining: 157ms
90:	learn: 18.3383981	total: 1.43s	remaining: 142ms
91:	learn: 18.2411989	total: 1.45s	remaining: 126ms
92:	learn: 18.1432274	total: 1.46s	remaining: 110ms
93:	learn: 18.0236976	total: 1.48s	remaining: 94.2ms
94:	learn: 17.9086680	total: 1.5s	remaining: 78.8ms
95:	learn: 17.7895525	total: 1.52s	remaining: 63.2ms
96:	learn: 17.6671319	total: 1.53s	remaining: 47.4ms
97:	learn: 17.5472350	total: 1.55s	remaining: 31.6ms
98:	learn: 17.4471055	total: 1.56s	remaining: 15.8ms
99:	learn: 17.3816494	total: 1.58s	remaining: 0us
0:	learn: 46.7483962	total: 14.4ms	remaining: 1.42s
1:	learn: 45.8794520	total: 29.3ms	remaining: 1.44s
2:	learn: 45.0212621	total: 43.9ms	remaining: 1.42s
3:	learn: 44.5335924	total: 58.7ms	remaining: 1.41s
4:	learn: 43.7022321	total: 73.7ms	remaining: 1.4s
5:	learn: 42.9741485	total: 97ms	remaining: 1.52s
6:	learn: 42.2971820	total: 113ms	remaining: 1.5s
7:	learn: 41.6447489	total: 128ms	remaining: 1.47s
8:	learn: 41.0245473	total: 142ms	remaining: 1.44s
9:	learn: 40.3474700	total: 157ms	remaining: 1.41s
10:	learn: 39.7225925	total: 171ms	remaining: 1.39s
11:	learn: 39.0504738	total: 186ms	remaining: 1.36s
12:	learn: 38.4951316	total: 200ms	remaining: 1.34s
13:	learn: 37.8390203	total: 214ms	remaining: 1.31s
14:	learn: 37.1200329	total: 227ms	remaining: 1.29s
15:	learn: 36.4946288	total: 242ms	remaining: 1.27s
16:	learn: 35.9883526	total: 257ms	remaining: 1.25s
17:	learn: 35.5201025	total: 272ms	remaining: 1.24s
18:	learn: 35.0282373	total: 295ms	remaining: 1.26s
19:	learn: 34.5162427	total: 314ms	remaining: 1.25s
20:	learn: 34.1131706	total: 328ms	remaining: 1.24s
21:	learn: 33.8394719	total: 343ms	remaining: 1.22s
22:	learn: 33.5633682	total: 358ms	remaining: 1.2s
23:	learn: 33.0379314	total: 373ms	remaining: 1.18s
24:	learn: 32.6612697	total: 388ms	remaining: 1.16s
25:	learn: 32.1774246	total: 403ms	remaining: 1.15s
26:	learn: 31.7521700	total: 417ms	remaining: 1.13s
27:	learn: 31.3498275	total: 431ms	remaining: 1.11s
28:	learn: 31.1136736	total: 445ms	remaining: 1.09s
29:	learn: 30.7777461	total: 459ms	remaining: 1.07s
30:	learn: 30.4642843	total: 474ms	remaining: 1.06s
31:	learn: 30.1668042	total: 489ms	remaining: 1.04s
32:	learn: 29.8085470	total: 512ms	remaining: 1.04s
33:	learn: 29.4927534	total: 528ms	remaining: 1.02s
34:	learn: 29.0694434	total: 536ms	remaining: 995ms
35:	learn: 28.7629678	total: 550ms	remaining: 977ms
36:	learn: 28.5129061	total: 564ms	remaining: 960ms
37:	learn: 28.2839319	total: 578ms	remaining: 942ms
38:	learn: 28.0203884	total: 591ms	remaining: 925ms
39:	learn: 27.6600580	total: 605ms	remaining: 907ms
40:	learn: 27.3916956	total: 619ms	remaining: 891ms
41:	learn: 27.0450079	total: 633ms	remaining: 875ms
42:	learn: 26.7005148	total: 648ms	remaining: 859ms
43:	learn: 26.4598808	total: 663ms	remaining: 844ms
44:	learn: 26.2317818	total: 679ms	remaining: 829ms
45:	learn: 26.0253812	total: 696ms	remaining: 817ms
46:	learn: 25.6330495	total: 711ms	remaining: 802ms
47:	learn: 25.4363221	total: 737ms	remaining: 798ms
48:	learn: 25.2403566	total: 755ms	remaining: 785ms
49:	learn: 24.9718595	total: 771ms	remaining: 771ms
50:	learn: 24.6647928	total: 788ms	remaining: 757ms
51:	learn: 24.4356667	total: 804ms	remaining: 742ms
52:	learn: 24.1807971	total: 820ms	remaining: 727ms
53:	learn: 23.9154663	total: 836ms	remaining: 712ms
54:	learn: 23.7061579	total: 851ms	remaining: 697ms
55:	learn: 23.5499455	total: 867ms	remaining: 681ms
56:	learn: 23.3461224	total: 883ms	remaining: 666ms
57:	learn: 23.1454918	total: 899ms	remaining: 651ms
58:	learn: 22.8907037	total: 918ms	remaining: 638ms
59:	learn: 22.8308646	total: 920ms	remaining: 614ms
60:	learn: 22.6498116	total: 939ms	remaining: 600ms
61:	learn: 22.4538994	total: 955ms	remaining: 585ms
62:	learn: 22.2380003	total: 971ms	remaining: 570ms
63:	learn: 22.0621750	total: 986ms	remaining: 555ms
64:	learn: 21.8829849	total: 1s	remaining: 539ms
65:	learn: 21.6934882	total: 1.02s	remaining: 524ms
66:	learn: 21.5402516	total: 1.03s	remaining: 509ms
67:	learn: 21.4434908	total: 1.05s	remaining: 493ms
68:	learn: 21.2688257	total: 1.06s	remaining: 478ms
69:	learn: 21.1860280	total: 1.08s	remaining: 463ms
70:	learn: 21.0612649	total: 1.09s	remaining: 448ms
71:	learn: 20.9340227	total: 1.11s	remaining: 432ms
72:	learn: 20.7977702	total: 1.13s	remaining: 419ms
73:	learn: 20.6621703	total: 1.15s	remaining: 405ms
74:	learn: 20.5169453	total: 1.17s	remaining: 390ms
75:	learn: 20.3798835	total: 1.18s	remaining: 374ms
76:	learn: 20.2354313	total: 1.2s	remaining: 359ms
77:	learn: 20.0892547	total: 1.22s	remaining: 343ms
78:	learn: 19.9631854	total: 1.23s	remaining: 328ms
79:	learn: 19.8241153	total: 1.25s	remaining: 312ms
80:	learn: 19.6584413	total: 1.26s	remaining: 297ms
81:	learn: 19.5480398	total: 1.28s	remaining: 281ms
82:	learn: 19.4611029	total: 1.29s	remaining: 265ms
83:	learn: 19.3556061	total: 1.31s	remaining: 249ms
84:	learn: 19.2350537	total: 1.32s	remaining: 234ms
85:	learn: 19.1125056	total: 1.34s	remaining: 219ms
86:	learn: 18.9716074	total: 1.36s	remaining: 204ms
87:	learn: 18.8130728	total: 1.38s	remaining: 188ms
88:	learn: 18.6516186	total: 1.39s	remaining: 172ms
89:	learn: 18.5730558	total: 1.41s	remaining: 156ms
90:	learn: 18.4692352	total: 1.42s	remaining: 141ms
91:	learn: 18.3881976	total: 1.44s	remaining: 125ms
92:	learn: 18.2953762	total: 1.45s	remaining: 109ms
93:	learn: 18.1773357	total: 1.47s	remaining: 93.6ms
94:	learn: 18.0674272	total: 1.48s	remaining: 77.9ms
95:	learn: 17.9484567	total: 1.5s	remaining: 62.3ms
96:	learn: 17.8510821	total: 1.51s	remaining: 46.7ms
97:	learn: 17.7881402	total: 1.52s	remaining: 31.1ms
98:	learn: 17.6824501	total: 1.54s	remaining: 15.6ms
99:	learn: 17.6148761	total: 1.56s	remaining: 0us
0:	learn: 27.6506730	total: 5.82ms	remaining: 576ms
1:	learn: 27.1638793	total: 10.6ms	remaining: 518ms
2:	learn: 26.8000665	total: 16.3ms	remaining: 527ms
3:	learn: 26.4256132	total: 22.1ms	remaining: 530ms
4:	learn: 26.0088351	total: 26.9ms	remaining: 510ms
5:	learn: 25.7558298	total: 31.8ms	remaining: 498ms
6:	learn: 25.3380711	total: 36.7ms	remaining: 488ms
7:	learn: 25.0571611	total: 41.5ms	remaining: 477ms
8:	learn: 24.6790148	total: 46.4ms	remaining: 469ms
9:	learn: 24.3600941	total: 51.1ms	remaining: 460ms
10:	learn: 24.1105667	total: 55.6ms	remaining: 450ms
11:	learn: 23.7736542	total: 60.2ms	remaining: 441ms
12:	learn: 23.5824429	total: 65ms	remaining: 435ms
13:	learn: 23.2658303	total: 69.2ms	remaining: 425ms
14:	learn: 23.0061886	total: 73.4ms	remaining: 416ms
15:	learn: 22.8060389	total: 77.9ms	remaining: 409ms
16:	learn: 22.5899735	total: 82.6ms	remaining: 403ms
17:	learn: 22.3625048	total: 86.9ms	remaining: 396ms
18:	learn: 22.0706477	total: 91.4ms	remaining: 390ms
19:	learn: 21.8739394	total: 96.3ms	remaining: 385ms
20:	learn: 21.6143650	total: 101ms	remaining: 378ms
21:	learn: 21.4571623	total: 105ms	remaining: 372ms
22:	learn: 21.2395769	total: 109ms	remaining: 366ms
23:	learn: 20.9801795	total: 114ms	remaining: 361ms
24:	learn: 20.8036808	total: 119ms	remaining: 357ms
25:	learn: 20.6387539	total: 124ms	remaining: 353ms
26:	learn: 20.4401427	total: 129ms	remaining: 348ms
27:	learn: 20.2879575	total: 133ms	remaining: 343ms
28:	learn: 20.0538664	total: 139ms	remaining: 341ms
29:	learn: 19.8363102	total: 147ms	remaining: 343ms
30:	learn: 19.7015446	total: 154ms	remaining: 342ms
31:	learn: 19.5483114	total: 161ms	remaining: 342ms
32:	learn: 19.4163053	total: 166ms	remaining: 337ms
33:	learn: 19.2880625	total: 172ms	remaining: 333ms
34:	learn: 19.1303389	total: 176ms	remaining: 327ms
35:	learn: 18.9237448	total: 181ms	remaining: 321ms
36:	learn: 18.8142925	total: 185ms	remaining: 315ms
37:	learn: 18.6994696	total: 190ms	remaining: 309ms
38:	learn: 18.5629211	total: 194ms	remaining: 304ms
39:	learn: 18.4600917	total: 198ms	remaining: 298ms
40:	learn: 18.3567139	total: 203ms	remaining: 292ms
41:	learn: 18.2120527	total: 207ms	remaining: 286ms
42:	learn: 18.0688062	total: 211ms	remaining: 280ms
43:	learn: 17.9250181	total: 215ms	remaining: 274ms
44:	learn: 17.8399138	total: 220ms	remaining: 268ms
45:	learn: 17.6720713	total: 224ms	remaining: 263ms
46:	learn: 17.5273091	total: 228ms	remaining: 257ms
47:	learn: 17.4232814	total: 232ms	remaining: 251ms
48:	learn: 17.2957579	total: 236ms	remaining: 246ms
49:	learn: 17.1892874	total: 240ms	remaining: 240ms
50:	learn: 17.0490355	total: 245ms	remaining: 235ms
51:	learn: 16.9666450	total: 249ms	remaining: 230ms
52:	learn: 16.8600056	total: 253ms	remaining: 224ms
53:	learn: 16.7542588	total: 258ms	remaining: 220ms
54:	learn: 16.6316077	total: 262ms	remaining: 214ms
55:	learn: 16.5588112	total: 267ms	remaining: 210ms
56:	learn: 16.5010186	total: 271ms	remaining: 204ms
57:	learn: 16.4081540	total: 275ms	remaining: 199ms
58:	learn: 16.3040451	total: 280ms	remaining: 194ms
59:	learn: 16.1890564	total: 284ms	remaining: 189ms
60:	learn: 16.0977103	total: 288ms	remaining: 184ms
61:	learn: 15.9627607	total: 293ms	remaining: 179ms
62:	learn: 15.9022248	total: 298ms	remaining: 175ms
63:	learn: 15.8151881	total: 302ms	remaining: 170ms
64:	learn: 15.7353125	total: 307ms	remaining: 165ms
65:	learn: 15.6312897	total: 311ms	remaining: 160ms
66:	learn: 15.5330927	total: 316ms	remaining: 156ms
67:	learn: 15.4698681	total: 322ms	remaining: 152ms
68:	learn: 15.4108571	total: 330ms	remaining: 148ms
69:	learn: 15.3492945	total: 336ms	remaining: 144ms
70:	learn: 15.3036540	total: 342ms	remaining: 140ms
71:	learn: 15.2390833	total: 348ms	remaining: 135ms
72:	learn: 15.1556327	total: 354ms	remaining: 131ms
73:	learn: 15.1016315	total: 360ms	remaining: 126ms
74:	learn: 15.0287076	total: 365ms	remaining: 122ms
75:	learn: 14.9530572	total: 370ms	remaining: 117ms
76:	learn: 14.8965517	total: 375ms	remaining: 112ms
77:	learn: 14.8125426	total: 381ms	remaining: 107ms
78:	learn: 14.7435359	total: 386ms	remaining: 103ms
79:	learn: 14.6963163	total: 391ms	remaining: 97.8ms
80:	learn: 14.6200060	total: 397ms	remaining: 93.1ms
81:	learn: 14.5707760	total: 403ms	remaining: 88.4ms
82:	learn: 14.5053651	total: 408ms	remaining: 83.6ms
83:	learn: 14.4115458	total: 413ms	remaining: 78.7ms
84:	learn: 14.3117159	total: 418ms	remaining: 73.8ms
85:	learn: 14.2511326	total: 423ms	remaining: 68.9ms
86:	learn: 14.1372486	total: 428ms	remaining: 64ms
87:	learn: 14.0992301	total: 435ms	remaining: 59.3ms
88:	learn: 14.0228331	total: 440ms	remaining: 54.4ms
89:	learn: 13.9249836	total: 444ms	remaining: 49.4ms
90:	learn: 13.8679364	total: 449ms	remaining: 44.4ms
91:	learn: 13.8405578	total: 454ms	remaining: 39.5ms
92:	learn: 13.7711325	total: 459ms	remaining: 34.5ms
93:	learn: 13.7357019	total: 463ms	remaining: 29.6ms
94:	learn: 13.6735271	total: 468ms	remaining: 24.6ms
95:	learn: 13.5682393	total: 472ms	remaining: 19.7ms
96:	learn: 13.5342610	total: 476ms	remaining: 14.7ms
97:	learn: 13.4710034	total: 480ms	remaining: 9.8ms
98:	learn: 13.4022402	total: 485ms	remaining: 4.9ms
99:	learn: 13.3351238	total: 489ms	remaining: 0us
0:	learn: 42.9181702	total: 4.94ms	remaining: 489ms
1:	learn: 42.0286736	total: 10ms	remaining: 491ms
2:	learn: 41.2764568	total: 19.4ms	remaining: 629ms
3:	learn: 40.4721918	total: 26.7ms	remaining: 641ms
4:	learn: 39.8518928	total: 33.5ms	remaining: 637ms
5:	learn: 39.2645479	total: 39ms	remaining: 611ms
6:	learn: 38.4453704	total: 44.1ms	remaining: 587ms
7:	learn: 37.7122059	total: 49ms	remaining: 563ms
8:	learn: 36.9185796	total: 53.3ms	remaining: 539ms
9:	learn: 36.1668427	total: 57.4ms	remaining: 517ms
10:	learn: 35.5639029	total: 61.7ms	remaining: 499ms
11:	learn: 34.7724193	total: 66.6ms	remaining: 488ms
12:	learn: 34.3053433	total: 70.9ms	remaining: 474ms
13:	learn: 33.6561327	total: 72.1ms	remaining: 443ms
14:	learn: 33.0134042	total: 76.3ms	remaining: 432ms
15:	learn: 32.4483300	total: 80.4ms	remaining: 422ms
16:	learn: 31.8581144	total: 84.6ms	remaining: 413ms
17:	learn: 31.2858301	total: 88.9ms	remaining: 405ms
18:	learn: 30.8483018	total: 93.8ms	remaining: 400ms
19:	learn: 30.4174622	total: 98.3ms	remaining: 393ms
20:	learn: 29.8994411	total: 103ms	remaining: 387ms
21:	learn: 29.5045355	total: 107ms	remaining: 379ms
22:	learn: 28.9923519	total: 111ms	remaining: 373ms
23:	learn: 28.4255717	total: 116ms	remaining: 366ms
24:	learn: 28.0283139	total: 120ms	remaining: 359ms
25:	learn: 27.7434814	total: 124ms	remaining: 354ms
26:	learn: 27.2770731	total: 129ms	remaining: 348ms
27:	learn: 26.8928270	total: 133ms	remaining: 343ms
28:	learn: 26.4282671	total: 138ms	remaining: 337ms
29:	learn: 26.0272764	total: 142ms	remaining: 331ms
30:	learn: 25.7579312	total: 146ms	remaining: 326ms
31:	learn: 25.4542434	total: 151ms	remaining: 320ms
32:	learn: 25.1232564	total: 155ms	remaining: 314ms
33:	learn: 24.8110795	total: 159ms	remaining: 309ms
34:	learn: 24.5077579	total: 163ms	remaining: 303ms
35:	learn: 24.1909000	total: 168ms	remaining: 298ms
36:	learn: 23.8719468	total: 172ms	remaining: 292ms
37:	learn: 23.5764366	total: 173ms	remaining: 282ms
38:	learn: 23.3468086	total: 177ms	remaining: 277ms
39:	learn: 23.0908771	total: 181ms	remaining: 272ms
40:	learn: 22.8580876	total: 185ms	remaining: 267ms
41:	learn: 22.6060825	total: 190ms	remaining: 262ms
42:	learn: 22.4125407	total: 194ms	remaining: 257ms
43:	learn: 22.1990617	total: 198ms	remaining: 253ms
44:	learn: 21.9716164	total: 203ms	remaining: 248ms
45:	learn: 21.8360935	total: 208ms	remaining: 244ms
46:	learn: 21.6169256	total: 213ms	remaining: 240ms
47:	learn: 21.4620612	total: 218ms	remaining: 236ms
48:	learn: 21.2894194	total: 223ms	remaining: 232ms
49:	learn: 21.1066266	total: 227ms	remaining: 227ms
50:	learn: 20.9484898	total: 236ms	remaining: 226ms
51:	learn: 20.7195338	total: 243ms	remaining: 224ms
52:	learn: 20.4899740	total: 254ms	remaining: 225ms
53:	learn: 20.3356583	total: 262ms	remaining: 223ms
54:	learn: 20.0754393	total: 268ms	remaining: 219ms
55:	learn: 19.9199159	total: 273ms	remaining: 214ms
56:	learn: 19.7761128	total: 278ms	remaining: 210ms
57:	learn: 19.6533060	total: 284ms	remaining: 206ms
58:	learn: 19.5113942	total: 290ms	remaining: 201ms
59:	learn: 19.3985022	total: 295ms	remaining: 197ms
60:	learn: 19.2683443	total: 300ms	remaining: 192ms
61:	learn: 19.1460824	total: 305ms	remaining: 187ms
62:	learn: 19.0042655	total: 311ms	remaining: 182ms
63:	learn: 18.8720873	total: 316ms	remaining: 178ms
64:	learn: 18.7183888	total: 321ms	remaining: 173ms
65:	learn: 18.5472360	total: 326ms	remaining: 168ms
66:	learn: 18.3976642	total: 330ms	remaining: 163ms
67:	learn: 18.2282851	total: 335ms	remaining: 157ms
68:	learn: 18.1469157	total: 339ms	remaining: 152ms
69:	learn: 18.0649494	total: 344ms	remaining: 147ms
70:	learn: 17.9485405	total: 348ms	remaining: 142ms
71:	learn: 17.8460261	total: 352ms	remaining: 137ms
72:	learn: 17.7679843	total: 356ms	remaining: 132ms
73:	learn: 17.5989290	total: 361ms	remaining: 127ms
74:	learn: 17.4381322	total: 365ms	remaining: 122ms
75:	learn: 17.3370886	total: 370ms	remaining: 117ms
76:	learn: 17.2675308	total: 374ms	remaining: 112ms
77:	learn: 17.1946430	total: 378ms	remaining: 107ms
78:	learn: 17.0923725	total: 382ms	remaining: 102ms
79:	learn: 17.0537265	total: 387ms	remaining: 96.7ms
80:	learn: 16.9456831	total: 391ms	remaining: 91.8ms
81:	learn: 16.8457353	total: 396ms	remaining: 86.9ms
82:	learn: 16.7469310	total: 400ms	remaining: 82ms
83:	learn: 16.6679953	total: 405ms	remaining: 77.2ms
84:	learn: 16.6274189	total: 410ms	remaining: 72.4ms
85:	learn: 16.5516530	total: 415ms	remaining: 67.5ms
86:	learn: 16.4886066	total: 420ms	remaining: 62.7ms
87:	learn: 16.3947859	total: 425ms	remaining: 58ms
88:	learn: 16.3406495	total: 431ms	remaining: 53.2ms
89:	learn: 16.3019195	total: 436ms	remaining: 48.4ms
90:	learn: 16.1860681	total: 440ms	remaining: 43.5ms
91:	learn: 16.1282812	total: 445ms	remaining: 38.7ms
92:	learn: 16.0303652	total: 454ms	remaining: 34.2ms
93:	learn: 15.9561692	total: 461ms	remaining: 29.4ms
94:	learn: 15.8733994	total: 468ms	remaining: 24.6ms
95:	learn: 15.8108833	total: 473ms	remaining: 19.7ms
96:	learn: 15.7606004	total: 478ms	remaining: 14.8ms
97:	learn: 15.6984664	total: 483ms	remaining: 9.85ms
98:	learn: 15.6223632	total: 487ms	remaining: 4.92ms
99:	learn: 15.5671136	total: 492ms	remaining: 0us
0:	learn: 46.4788614	total: 2.05ms	remaining: 203ms
1:	learn: 45.7608372	total: 6.69ms	remaining: 328ms
2:	learn: 44.8825004	total: 10.9ms	remaining: 352ms
3:	learn: 44.0362738	total: 15.3ms	remaining: 367ms
4:	learn: 43.2086374	total: 19.7ms	remaining: 374ms
5:	learn: 42.5835773	total: 24.1ms	remaining: 378ms
6:	learn: 41.9673269	total: 28.4ms	remaining: 378ms
7:	learn: 41.4748717	total: 32.9ms	remaining: 378ms
8:	learn: 40.7129183	total: 37.2ms	remaining: 376ms
9:	learn: 39.8900884	total: 41.6ms	remaining: 374ms
10:	learn: 39.4142193	total: 45.9ms	remaining: 371ms
11:	learn: 38.8645613	total: 49.9ms	remaining: 366ms
12:	learn: 38.2394731	total: 54.2ms	remaining: 363ms
13:	learn: 37.6834515	total: 58.9ms	remaining: 362ms
14:	learn: 37.0673507	total: 63.7ms	remaining: 361ms
15:	learn: 36.4728340	total: 68.4ms	remaining: 359ms
16:	learn: 36.0489086	total: 73.2ms	remaining: 357ms
17:	learn: 35.4744141	total: 77.6ms	remaining: 353ms
18:	learn: 35.0106021	total: 82ms	remaining: 349ms
19:	learn: 34.5586053	total: 86.8ms	remaining: 347ms
20:	learn: 34.1308223	total: 91.6ms	remaining: 345ms
21:	learn: 33.7701450	total: 96.7ms	remaining: 343ms
22:	learn: 33.4425444	total: 102ms	remaining: 341ms
23:	learn: 33.0296412	total: 107ms	remaining: 339ms
24:	learn: 32.6359803	total: 112ms	remaining: 336ms
25:	learn: 32.1846182	total: 117ms	remaining: 334ms
26:	learn: 31.7620230	total: 122ms	remaining: 330ms
27:	learn: 31.4669337	total: 131ms	remaining: 337ms
28:	learn: 31.0792062	total: 139ms	remaining: 341ms
29:	learn: 30.7970537	total: 149ms	remaining: 347ms
30:	learn: 30.4952215	total: 155ms	remaining: 344ms
31:	learn: 30.2845344	total: 161ms	remaining: 342ms
32:	learn: 29.9592732	total: 167ms	remaining: 338ms
33:	learn: 29.6798596	total: 172ms	remaining: 334ms
34:	learn: 29.3368905	total: 178ms	remaining: 331ms
35:	learn: 29.0621238	total: 184ms	remaining: 327ms
36:	learn: 28.6445375	total: 189ms	remaining: 322ms
37:	learn: 28.2418096	total: 195ms	remaining: 318ms
38:	learn: 27.9495390	total: 200ms	remaining: 313ms
39:	learn: 27.6958160	total: 205ms	remaining: 308ms
40:	learn: 27.4811189	total: 210ms	remaining: 303ms
41:	learn: 27.1494420	total: 215ms	remaining: 297ms
42:	learn: 26.8388873	total: 221ms	remaining: 293ms
43:	learn: 26.5721300	total: 226ms	remaining: 288ms
44:	learn: 26.3384738	total: 231ms	remaining: 283ms
45:	learn: 26.1894781	total: 236ms	remaining: 277ms
46:	learn: 25.9580198	total: 241ms	remaining: 272ms
47:	learn: 25.7897985	total: 245ms	remaining: 266ms
48:	learn: 25.6000271	total: 250ms	remaining: 260ms
49:	learn: 25.4130873	total: 254ms	remaining: 254ms
50:	learn: 25.1699061	total: 259ms	remaining: 249ms
51:	learn: 24.9324449	total: 264ms	remaining: 243ms
52:	learn: 24.7729152	total: 268ms	remaining: 238ms
53:	learn: 24.5026563	total: 273ms	remaining: 232ms
54:	learn: 24.2332627	total: 277ms	remaining: 227ms
55:	learn: 23.9611984	total: 282ms	remaining: 221ms
56:	learn: 23.7862603	total: 286ms	remaining: 216ms
57:	learn: 23.6318154	total: 290ms	remaining: 210ms
58:	learn: 23.4443306	total: 295ms	remaining: 205ms
59:	learn: 23.2581425	total: 300ms	remaining: 200ms
60:	learn: 23.0549901	total: 305ms	remaining: 195ms
61:	learn: 22.8666218	total: 310ms	remaining: 190ms
62:	learn: 22.6956739	total: 314ms	remaining: 185ms
63:	learn: 22.5068544	total: 319ms	remaining: 179ms
64:	learn: 22.1859147	total: 324ms	remaining: 174ms
65:	learn: 22.0462043	total: 328ms	remaining: 169ms
66:	learn: 21.9329563	total: 334ms	remaining: 164ms
67:	learn: 21.8029736	total: 344ms	remaining: 162ms
68:	learn: 21.6861091	total: 352ms	remaining: 158ms
69:	learn: 21.4838140	total: 359ms	remaining: 154ms
70:	learn: 21.3548921	total: 365ms	remaining: 149ms
71:	learn: 21.2244517	total: 370ms	remaining: 144ms
72:	learn: 21.0702958	total: 374ms	remaining: 139ms
73:	learn: 20.9224662	total: 379ms	remaining: 133ms
74:	learn: 20.8150357	total: 384ms	remaining: 128ms
75:	learn: 20.6962739	total: 389ms	remaining: 123ms
76:	learn: 20.5809258	total: 393ms	remaining: 118ms
77:	learn: 20.4735470	total: 398ms	remaining: 112ms
78:	learn: 20.3778167	total: 402ms	remaining: 107ms
79:	learn: 20.2211268	total: 407ms	remaining: 102ms
80:	learn: 20.1478678	total: 411ms	remaining: 96.5ms
81:	learn: 20.1032967	total: 416ms	remaining: 91.3ms
82:	learn: 19.9236300	total: 420ms	remaining: 86.1ms
83:	learn: 19.8151745	total: 425ms	remaining: 80.9ms
84:	learn: 19.7099856	total: 429ms	remaining: 75.7ms
85:	learn: 19.6264833	total: 433ms	remaining: 70.5ms
86:	learn: 19.4916361	total: 438ms	remaining: 65.4ms
87:	learn: 19.4050529	total: 442ms	remaining: 60.3ms
88:	learn: 19.2547065	total: 447ms	remaining: 55.2ms
89:	learn: 19.1610225	total: 451ms	remaining: 50.1ms
90:	learn: 19.0898958	total: 455ms	remaining: 45ms
91:	learn: 19.0489664	total: 460ms	remaining: 40ms
92:	learn: 18.9206240	total: 464ms	remaining: 34.9ms
93:	learn: 18.8636239	total: 468ms	remaining: 29.9ms
94:	learn: 18.8126187	total: 472ms	remaining: 24.9ms
95:	learn: 18.7579275	total: 477ms	remaining: 19.9ms
96:	learn: 18.6382753	total: 481ms	remaining: 14.9ms
97:	learn: 18.5397334	total: 485ms	remaining: 9.89ms
98:	learn: 18.4375951	total: 489ms	remaining: 4.94ms
99:	learn: 18.4033755	total: 494ms	remaining: 0us
0:	learn: 46.1068821	total: 2.95ms	remaining: 292ms
1:	learn: 45.3970261	total: 10.2ms	remaining: 502ms
2:	learn: 44.8732696	total: 15.9ms	remaining: 515ms
3:	learn: 44.1290184	total: 20.9ms	remaining: 501ms
4:	learn: 43.3290271	total: 26.2ms	remaining: 497ms
5:	learn: 42.7069090	total: 31.4ms	remaining: 491ms
6:	learn: 42.0572971	total: 36.8ms	remaining: 489ms
7:	learn: 41.4797924	total: 41.9ms	remaining: 482ms
8:	learn: 41.0023122	total: 47.2ms	remaining: 477ms
9:	learn: 40.5330570	total: 52.5ms	remaining: 472ms
10:	learn: 39.9726545	total: 57.6ms	remaining: 466ms
11:	learn: 39.3044053	total: 62.6ms	remaining: 459ms
12:	learn: 38.8169735	total: 68ms	remaining: 455ms
13:	learn: 38.2458761	total: 73.3ms	remaining: 450ms
14:	learn: 37.6280321	total: 78ms	remaining: 442ms
15:	learn: 37.0800610	total: 82.5ms	remaining: 433ms
16:	learn: 36.5489363	total: 86.9ms	remaining: 424ms
17:	learn: 36.0981456	total: 91.1ms	remaining: 415ms
18:	learn: 35.6956274	total: 95.4ms	remaining: 407ms
19:	learn: 35.1471999	total: 99.9ms	remaining: 400ms
20:	learn: 34.6235408	total: 104ms	remaining: 392ms
21:	learn: 34.1987018	total: 109ms	remaining: 385ms
22:	learn: 33.8985062	total: 113ms	remaining: 379ms
23:	learn: 33.3869017	total: 117ms	remaining: 371ms
24:	learn: 32.9100550	total: 122ms	remaining: 365ms
25:	learn: 32.4156208	total: 126ms	remaining: 359ms
26:	learn: 31.9320493	total: 130ms	remaining: 353ms
27:	learn: 31.5711468	total: 134ms	remaining: 346ms
28:	learn: 31.2404433	total: 139ms	remaining: 340ms
29:	learn: 30.8807946	total: 143ms	remaining: 335ms
30:	learn: 30.5948438	total: 148ms	remaining: 329ms
31:	learn: 30.3885560	total: 152ms	remaining: 323ms
32:	learn: 30.0625101	total: 157ms	remaining: 318ms
33:	learn: 29.9113114	total: 162ms	remaining: 314ms
34:	learn: 29.6983470	total: 167ms	remaining: 311ms
35:	learn: 29.4775849	total: 176ms	remaining: 312ms
36:	learn: 29.0538055	total: 181ms	remaining: 309ms
37:	learn: 28.6792318	total: 188ms	remaining: 306ms
38:	learn: 28.4231383	total: 194ms	remaining: 304ms
39:	learn: 28.1078565	total: 200ms	remaining: 301ms
40:	learn: 27.9079179	total: 207ms	remaining: 298ms
41:	learn: 27.6721506	total: 211ms	remaining: 292ms
42:	learn: 27.4228033	total: 216ms	remaining: 286ms
43:	learn: 27.1740534	total: 220ms	remaining: 280ms
44:	learn: 26.8584071	total: 224ms	remaining: 274ms
45:	learn: 26.6902083	total: 229ms	remaining: 268ms
46:	learn: 26.4855335	total: 233ms	remaining: 262ms
47:	learn: 26.2730822	total: 237ms	remaining: 257ms
48:	learn: 26.1058689	total: 241ms	remaining: 251ms
49:	learn: 25.8587318	total: 246ms	remaining: 246ms
50:	learn: 25.7558005	total: 250ms	remaining: 240ms
51:	learn: 25.5846925	total: 254ms	remaining: 235ms
52:	learn: 25.4249887	total: 259ms	remaining: 229ms
53:	learn: 25.1911054	total: 263ms	remaining: 224ms
54:	learn: 25.0544755	total: 267ms	remaining: 218ms
55:	learn: 24.8874006	total: 271ms	remaining: 213ms
56:	learn: 24.7736279	total: 276ms	remaining: 208ms
57:	learn: 24.6156255	total: 280ms	remaining: 203ms
58:	learn: 24.3962421	total: 284ms	remaining: 198ms
59:	learn: 24.2685129	total: 289ms	remaining: 193ms
60:	learn: 24.1874096	total: 293ms	remaining: 187ms
61:	learn: 24.0394287	total: 297ms	remaining: 182ms
62:	learn: 23.9281768	total: 301ms	remaining: 177ms
63:	learn: 23.7423900	total: 305ms	remaining: 172ms
64:	learn: 23.6015209	total: 310ms	remaining: 167ms
65:	learn: 23.4677943	total: 314ms	remaining: 162ms
66:	learn: 23.3215256	total: 319ms	remaining: 157ms
67:	learn: 23.1869360	total: 323ms	remaining: 152ms
68:	learn: 22.9691180	total: 327ms	remaining: 147ms
69:	learn: 22.7531657	total: 331ms	remaining: 142ms
70:	learn: 22.6133477	total: 336ms	remaining: 137ms
71:	learn: 22.3452758	total: 340ms	remaining: 132ms
72:	learn: 22.2065350	total: 344ms	remaining: 127ms
73:	learn: 22.1071155	total: 349ms	remaining: 122ms
74:	learn: 21.9740686	total: 352ms	remaining: 117ms
75:	learn: 21.8892033	total: 357ms	remaining: 113ms
76:	learn: 21.8267882	total: 361ms	remaining: 108ms
77:	learn: 21.7423479	total: 366ms	remaining: 103ms
78:	learn: 21.6242075	total: 370ms	remaining: 98.4ms
79:	learn: 21.5016910	total: 375ms	remaining: 93.8ms
80:	learn: 21.4806623	total: 376ms	remaining: 88.2ms
81:	learn: 21.3166637	total: 381ms	remaining: 83.5ms
82:	learn: 21.2222534	total: 388ms	remaining: 79.6ms
83:	learn: 21.1535708	total: 396ms	remaining: 75.5ms
84:	learn: 21.0858902	total: 407ms	remaining: 71.8ms
85:	learn: 20.9206003	total: 414ms	remaining: 67.4ms
86:	learn: 20.8674695	total: 421ms	remaining: 62.8ms
87:	learn: 20.8089875	total: 426ms	remaining: 58.1ms
88:	learn: 20.7085401	total: 432ms	remaining: 53.3ms
89:	learn: 20.5513468	total: 437ms	remaining: 48.6ms
90:	learn: 20.4586742	total: 443ms	remaining: 43.8ms
91:	learn: 20.3932149	total: 448ms	remaining: 39ms
92:	learn: 20.3000895	total: 454ms	remaining: 34.2ms
93:	learn: 20.2254009	total: 459ms	remaining: 29.3ms
94:	learn: 20.1750050	total: 464ms	remaining: 24.4ms
95:	learn: 20.0715579	total: 470ms	remaining: 19.6ms
96:	learn: 19.9920082	total: 475ms	remaining: 14.7ms
97:	learn: 19.9664401	total: 480ms	remaining: 9.8ms
98:	learn: 19.8689673	total: 485ms	remaining: 4.9ms
99:	learn: 19.7537356	total: 490ms	remaining: 0us
0:	learn: 46.8832143	total: 4.99ms	remaining: 494ms
1:	learn: 45.8700349	total: 9.38ms	remaining: 460ms
2:	learn: 45.0546867	total: 14ms	remaining: 452ms
3:	learn: 44.2829439	total: 18.6ms	remaining: 447ms
4:	learn: 43.4609042	total: 22.9ms	remaining: 435ms
5:	learn: 42.6754991	total: 27.3ms	remaining: 428ms
6:	learn: 41.9234935	total: 31.5ms	remaining: 418ms
7:	learn: 41.3987518	total: 36.3ms	remaining: 417ms
8:	learn: 40.6625066	total: 40.8ms	remaining: 413ms
9:	learn: 40.0029561	total: 45.3ms	remaining: 408ms
10:	learn: 39.3897033	total: 50.1ms	remaining: 405ms
11:	learn: 38.7741453	total: 54.8ms	remaining: 402ms
12:	learn: 38.1201100	total: 59.6ms	remaining: 399ms
13:	learn: 37.5129454	total: 66.6ms	remaining: 409ms
14:	learn: 37.2062206	total: 75.2ms	remaining: 426ms
15:	learn: 36.6831741	total: 81.9ms	remaining: 430ms
16:	learn: 36.2902788	total: 86.9ms	remaining: 425ms
17:	learn: 35.7639930	total: 93.2ms	remaining: 425ms
18:	learn: 35.2580953	total: 98.1ms	remaining: 418ms
19:	learn: 34.7809739	total: 102ms	remaining: 409ms
20:	learn: 34.1330433	total: 107ms	remaining: 403ms
21:	learn: 33.7302219	total: 111ms	remaining: 394ms
22:	learn: 33.3502495	total: 116ms	remaining: 387ms
23:	learn: 33.0067804	total: 120ms	remaining: 379ms
24:	learn: 32.6897855	total: 124ms	remaining: 373ms
25:	learn: 32.4361119	total: 129ms	remaining: 366ms
26:	learn: 32.1278981	total: 133ms	remaining: 360ms
27:	learn: 31.7863721	total: 137ms	remaining: 352ms
28:	learn: 31.4791450	total: 142ms	remaining: 346ms
29:	learn: 31.1760161	total: 146ms	remaining: 340ms
30:	learn: 30.9238888	total: 150ms	remaining: 333ms
31:	learn: 30.5500905	total: 154ms	remaining: 328ms
32:	learn: 30.3078126	total: 159ms	remaining: 323ms
33:	learn: 30.0480921	total: 163ms	remaining: 317ms
34:	learn: 29.8623884	total: 168ms	remaining: 311ms
35:	learn: 29.5991038	total: 172ms	remaining: 306ms
36:	learn: 29.4061161	total: 176ms	remaining: 300ms
37:	learn: 29.0269515	total: 181ms	remaining: 295ms
38:	learn: 28.8224959	total: 185ms	remaining: 289ms
39:	learn: 28.6417843	total: 189ms	remaining: 283ms
40:	learn: 28.3633368	total: 193ms	remaining: 278ms
41:	learn: 28.0200246	total: 198ms	remaining: 273ms
42:	learn: 27.7221254	total: 202ms	remaining: 268ms
43:	learn: 27.5105818	total: 206ms	remaining: 262ms
44:	learn: 27.3551010	total: 210ms	remaining: 257ms
45:	learn: 27.0787522	total: 215ms	remaining: 252ms
46:	learn: 26.8726317	total: 219ms	remaining: 247ms
47:	learn: 26.8003277	total: 223ms	remaining: 242ms
48:	learn: 26.5493785	total: 228ms	remaining: 238ms
49:	learn: 26.3699550	total: 233ms	remaining: 233ms
50:	learn: 26.1519631	total: 237ms	remaining: 228ms
51:	learn: 25.9277325	total: 242ms	remaining: 223ms
52:	learn: 25.7286035	total: 248ms	remaining: 220ms
53:	learn: 25.4999193	total: 253ms	remaining: 215ms
54:	learn: 25.3434703	total: 258ms	remaining: 211ms
55:	learn: 25.1497545	total: 263ms	remaining: 207ms
56:	learn: 24.9498143	total: 268ms	remaining: 202ms
57:	learn: 24.6509390	total: 274ms	remaining: 198ms
58:	learn: 24.5576144	total: 282ms	remaining: 196ms
59:	learn: 24.4265144	total: 292ms	remaining: 195ms
60:	learn: 24.3100706	total: 299ms	remaining: 191ms
61:	learn: 24.1727952	total: 307ms	remaining: 188ms
62:	learn: 24.0478558	total: 312ms	remaining: 183ms
63:	learn: 23.9124577	total: 318ms	remaining: 179ms
64:	learn: 23.7703718	total: 323ms	remaining: 174ms
65:	learn: 23.5975027	total: 328ms	remaining: 169ms
66:	learn: 23.4318077	total: 333ms	remaining: 164ms
67:	learn: 23.3099691	total: 339ms	remaining: 159ms
68:	learn: 23.1947982	total: 344ms	remaining: 155ms
69:	learn: 23.0260174	total: 349ms	remaining: 150ms
70:	learn: 22.8523100	total: 354ms	remaining: 145ms
71:	learn: 22.8028534	total: 359ms	remaining: 140ms
72:	learn: 22.6880658	total: 364ms	remaining: 135ms
73:	learn: 22.5956809	total: 371ms	remaining: 130ms
74:	learn: 22.4692932	total: 375ms	remaining: 125ms
75:	learn: 22.2863504	total: 380ms	remaining: 120ms
76:	learn: 22.1911237	total: 385ms	remaining: 115ms
77:	learn: 22.1098391	total: 390ms	remaining: 110ms
78:	learn: 22.0182738	total: 394ms	remaining: 105ms
79:	learn: 21.9306746	total: 399ms	remaining: 99.7ms
80:	learn: 21.7508233	total: 404ms	remaining: 94.7ms
81:	learn: 21.7108446	total: 408ms	remaining: 89.6ms
82:	learn: 21.5931852	total: 413ms	remaining: 84.6ms
83:	learn: 21.4480361	total: 418ms	remaining: 79.6ms
84:	learn: 21.3092119	total: 423ms	remaining: 74.6ms
85:	learn: 21.2605557	total: 427ms	remaining: 69.5ms
86:	learn: 21.1123597	total: 432ms	remaining: 64.6ms
87:	learn: 21.0115642	total: 437ms	remaining: 59.6ms
88:	learn: 20.9389040	total: 442ms	remaining: 54.6ms
89:	learn: 20.8300300	total: 447ms	remaining: 49.7ms
90:	learn: 20.7159733	total: 453ms	remaining: 44.8ms
91:	learn: 20.6282090	total: 458ms	remaining: 39.8ms
92:	learn: 20.5164529	total: 463ms	remaining: 34.8ms
93:	learn: 20.4692032	total: 468ms	remaining: 29.9ms
94:	learn: 20.3768451	total: 479ms	remaining: 25.2ms
95:	learn: 20.2808056	total: 488ms	remaining: 20.3ms
96:	learn: 20.2082089	total: 496ms	remaining: 15.3ms
97:	learn: 20.1698768	total: 502ms	remaining: 10.2ms
98:	learn: 20.1048816	total: 508ms	remaining: 5.13ms
99:	learn: 20.0086159	total: 513ms	remaining: 0us
0:	learn: 27.9323430	total: 2.02ms	remaining: 603ms
1:	learn: 27.7996944	total: 3.85ms	remaining: 573ms
2:	learn: 27.6986405	total: 5.65ms	remaining: 559ms
3:	learn: 27.6038927	total: 7.37ms	remaining: 545ms
4:	learn: 27.4956584	total: 9.09ms	remaining: 536ms
5:	learn: 27.4086855	total: 10.9ms	remaining: 535ms
6:	learn: 27.3208160	total: 12.9ms	remaining: 538ms
7:	learn: 27.2275973	total: 14.7ms	remaining: 535ms
8:	learn: 27.1284047	total: 16.5ms	remaining: 534ms
9:	learn: 27.0627235	total: 18.4ms	remaining: 534ms
10:	learn: 26.9750431	total: 20.2ms	remaining: 531ms
11:	learn: 26.8666041	total: 22ms	remaining: 529ms
12:	learn: 26.7572146	total: 23.8ms	remaining: 526ms
13:	learn: 26.6727429	total: 25.7ms	remaining: 526ms
14:	learn: 26.5768868	total: 27.5ms	remaining: 522ms
15:	learn: 26.4928857	total: 29.1ms	remaining: 516ms
16:	learn: 26.4036029	total: 30.8ms	remaining: 512ms
17:	learn: 26.2879621	total: 32.4ms	remaining: 508ms
18:	learn: 26.1753271	total: 34.2ms	remaining: 505ms
19:	learn: 26.0852786	total: 35.8ms	remaining: 501ms
20:	learn: 25.9644311	total: 37.5ms	remaining: 498ms
21:	learn: 25.8610400	total: 39.1ms	remaining: 494ms
22:	learn: 25.7679258	total: 40.8ms	remaining: 491ms
23:	learn: 25.6970032	total: 42.5ms	remaining: 489ms
24:	learn: 25.6077936	total: 44.3ms	remaining: 488ms
25:	learn: 25.5225300	total: 46.1ms	remaining: 485ms
26:	learn: 25.4234918	total: 47.8ms	remaining: 483ms
27:	learn: 25.3221482	total: 49.5ms	remaining: 481ms
28:	learn: 25.2290366	total: 51.3ms	remaining: 480ms
29:	learn: 25.1558160	total: 53.1ms	remaining: 478ms
30:	learn: 25.0834761	total: 54.8ms	remaining: 476ms
31:	learn: 25.0214185	total: 56.5ms	remaining: 473ms
32:	learn: 24.9501490	total: 58.2ms	remaining: 471ms
33:	learn: 24.8675468	total: 59.8ms	remaining: 468ms
34:	learn: 24.7926994	total: 61.4ms	remaining: 465ms
35:	learn: 24.7027184	total: 63ms	remaining: 462ms
36:	learn: 24.6194981	total: 64.8ms	remaining: 461ms
37:	learn: 24.5407677	total: 66.5ms	remaining: 458ms
38:	learn: 24.4764699	total: 68.3ms	remaining: 457ms
39:	learn: 24.4099387	total: 69.9ms	remaining: 454ms
40:	learn: 24.3491635	total: 71.5ms	remaining: 451ms
41:	learn: 24.2803804	total: 73.1ms	remaining: 449ms
42:	learn: 24.1924527	total: 74.8ms	remaining: 447ms
43:	learn: 24.1125479	total: 76.4ms	remaining: 444ms
44:	learn: 24.0298812	total: 78ms	remaining: 442ms
45:	learn: 23.9592447	total: 79.9ms	remaining: 441ms
46:	learn: 23.8946378	total: 81.8ms	remaining: 440ms
47:	learn: 23.8225692	total: 83.6ms	remaining: 439ms
48:	learn: 23.7493068	total: 85.6ms	remaining: 439ms
49:	learn: 23.6663865	total: 87.4ms	remaining: 437ms
50:	learn: 23.5940698	total: 89.2ms	remaining: 436ms
51:	learn: 23.5235742	total: 91ms	remaining: 434ms
52:	learn: 23.4477077	total: 92.9ms	remaining: 433ms
53:	learn: 23.3547569	total: 94.7ms	remaining: 431ms
54:	learn: 23.2614422	total: 96.4ms	remaining: 429ms
55:	learn: 23.1863372	total: 98.1ms	remaining: 427ms
56:	learn: 23.1183221	total: 99.9ms	remaining: 426ms
57:	learn: 23.0528514	total: 102ms	remaining: 424ms
58:	learn: 22.9762881	total: 103ms	remaining: 422ms
59:	learn: 22.8934174	total: 106ms	remaining: 422ms
60:	learn: 22.8127893	total: 109ms	remaining: 428ms
61:	learn: 22.7513564	total: 112ms	remaining: 429ms
62:	learn: 22.6734891	total: 114ms	remaining: 431ms
63:	learn: 22.5979016	total: 118ms	remaining: 434ms
64:	learn: 22.5374644	total: 122ms	remaining: 441ms
65:	learn: 22.4655785	total: 126ms	remaining: 447ms
66:	learn: 22.3980306	total: 128ms	remaining: 447ms
67:	learn: 22.3324001	total: 131ms	remaining: 446ms
68:	learn: 22.2699576	total: 134ms	remaining: 449ms
69:	learn: 22.2132480	total: 137ms	remaining: 449ms
70:	learn: 22.1395041	total: 139ms	remaining: 447ms
71:	learn: 22.0696518	total: 141ms	remaining: 445ms
72:	learn: 22.0171797	total: 142ms	remaining: 443ms
73:	learn: 21.9618774	total: 145ms	remaining: 441ms
74:	learn: 21.9101429	total: 147ms	remaining: 440ms
75:	learn: 21.8568378	total: 149ms	remaining: 439ms
76:	learn: 21.7902130	total: 151ms	remaining: 437ms
77:	learn: 21.7355753	total: 153ms	remaining: 435ms
78:	learn: 21.6958719	total: 155ms	remaining: 434ms
79:	learn: 21.6642739	total: 157ms	remaining: 433ms
80:	learn: 21.6024351	total: 160ms	remaining: 432ms
81:	learn: 21.5395822	total: 162ms	remaining: 430ms
82:	learn: 21.5030903	total: 164ms	remaining: 428ms
83:	learn: 21.4481073	total: 166ms	remaining: 426ms
84:	learn: 21.3893146	total: 168ms	remaining: 424ms
85:	learn: 21.3100125	total: 170ms	remaining: 423ms
86:	learn: 21.2452849	total: 172ms	remaining: 422ms
87:	learn: 21.2021361	total: 174ms	remaining: 420ms
88:	learn: 21.1407475	total: 176ms	remaining: 417ms
89:	learn: 21.0889101	total: 178ms	remaining: 415ms
90:	learn: 21.0335137	total: 180ms	remaining: 413ms
91:	learn: 20.9885491	total: 182ms	remaining: 411ms
92:	learn: 20.9443290	total: 184ms	remaining: 409ms
93:	learn: 20.9052675	total: 186ms	remaining: 408ms
94:	learn: 20.8618608	total: 188ms	remaining: 406ms
95:	learn: 20.8182778	total: 190ms	remaining: 405ms
96:	learn: 20.7741496	total: 192ms	remaining: 402ms
97:	learn: 20.7358992	total: 194ms	remaining: 400ms
98:	learn: 20.6930912	total: 196ms	remaining: 397ms
99:	learn: 20.6647044	total: 197ms	remaining: 395ms
100:	learn: 20.6050100	total: 199ms	remaining: 392ms
101:	learn: 20.5650057	total: 201ms	remaining: 389ms
102:	learn: 20.5231398	total: 202ms	remaining: 387ms
103:	learn: 20.4810223	total: 204ms	remaining: 384ms
104:	learn: 20.4436403	total: 206ms	remaining: 382ms
105:	learn: 20.3924528	total: 207ms	remaining: 380ms
106:	learn: 20.3475115	total: 209ms	remaining: 377ms
107:	learn: 20.3044250	total: 211ms	remaining: 375ms
108:	learn: 20.2597057	total: 212ms	remaining: 372ms
109:	learn: 20.2307207	total: 214ms	remaining: 370ms
110:	learn: 20.1800622	total: 216ms	remaining: 367ms
111:	learn: 20.1437302	total: 217ms	remaining: 365ms
112:	learn: 20.1096989	total: 219ms	remaining: 362ms
113:	learn: 20.0591089	total: 220ms	remaining: 360ms
114:	learn: 20.0077494	total: 222ms	remaining: 357ms
115:	learn: 19.9744886	total: 224ms	remaining: 355ms
116:	learn: 19.9317085	total: 225ms	remaining: 353ms
117:	learn: 19.8836768	total: 227ms	remaining: 350ms
118:	learn: 19.8377026	total: 229ms	remaining: 348ms
119:	learn: 19.7851338	total: 230ms	remaining: 346ms
120:	learn: 19.7228449	total: 232ms	remaining: 343ms
121:	learn: 19.6839240	total: 234ms	remaining: 341ms
122:	learn: 19.6518983	total: 235ms	remaining: 339ms
123:	learn: 19.5958505	total: 237ms	remaining: 336ms
124:	learn: 19.5654603	total: 239ms	remaining: 334ms
125:	learn: 19.5240493	total: 240ms	remaining: 332ms
126:	learn: 19.4930853	total: 242ms	remaining: 330ms
127:	learn: 19.4566867	total: 244ms	remaining: 327ms
128:	learn: 19.4051114	total: 245ms	remaining: 325ms
129:	learn: 19.3604412	total: 247ms	remaining: 323ms
130:	learn: 19.2977345	total: 249ms	remaining: 321ms
131:	learn: 19.2612627	total: 251ms	remaining: 319ms
132:	learn: 19.2143208	total: 252ms	remaining: 317ms
133:	learn: 19.1671559	total: 254ms	remaining: 315ms
134:	learn: 19.1187574	total: 256ms	remaining: 313ms
135:	learn: 19.0774395	total: 257ms	remaining: 311ms
136:	learn: 19.0301046	total: 259ms	remaining: 308ms
137:	learn: 19.0013642	total: 261ms	remaining: 306ms
138:	learn: 18.9689304	total: 262ms	remaining: 304ms
139:	learn: 18.9350396	total: 264ms	remaining: 302ms
140:	learn: 18.9005525	total: 266ms	remaining: 300ms
141:	learn: 18.8711419	total: 267ms	remaining: 297ms
142:	learn: 18.8283000	total: 269ms	remaining: 295ms
143:	learn: 18.8012140	total: 271ms	remaining: 293ms
144:	learn: 18.7590724	total: 273ms	remaining: 291ms
145:	learn: 18.7268041	total: 274ms	remaining: 289ms
146:	learn: 18.7042096	total: 276ms	remaining: 287ms
147:	learn: 18.6571466	total: 278ms	remaining: 285ms
148:	learn: 18.6127378	total: 279ms	remaining: 283ms
149:	learn: 18.5893108	total: 281ms	remaining: 281ms
150:	learn: 18.5579850	total: 283ms	remaining: 279ms
151:	learn: 18.5240885	total: 284ms	remaining: 277ms
152:	learn: 18.4885597	total: 286ms	remaining: 275ms
153:	learn: 18.4622737	total: 288ms	remaining: 273ms
154:	learn: 18.4364457	total: 290ms	remaining: 271ms
155:	learn: 18.4172380	total: 291ms	remaining: 269ms
156:	learn: 18.3823417	total: 293ms	remaining: 267ms
157:	learn: 18.3416644	total: 295ms	remaining: 265ms
158:	learn: 18.3145438	total: 297ms	remaining: 263ms
159:	learn: 18.2974773	total: 298ms	remaining: 261ms
160:	learn: 18.2677798	total: 300ms	remaining: 259ms
161:	learn: 18.2245348	total: 302ms	remaining: 257ms
162:	learn: 18.2059358	total: 304ms	remaining: 255ms
163:	learn: 18.1797810	total: 306ms	remaining: 254ms
164:	learn: 18.1491018	total: 308ms	remaining: 252ms
165:	learn: 18.1157412	total: 310ms	remaining: 250ms
166:	learn: 18.0786122	total: 312ms	remaining: 248ms
167:	learn: 18.0381834	total: 314ms	remaining: 247ms
168:	learn: 18.0079078	total: 317ms	remaining: 246ms
169:	learn: 17.9819965	total: 320ms	remaining: 245ms
170:	learn: 17.9642249	total: 323ms	remaining: 244ms
171:	learn: 17.9450746	total: 326ms	remaining: 242ms
172:	learn: 17.9146175	total: 328ms	remaining: 241ms
173:	learn: 17.8868124	total: 331ms	remaining: 239ms
174:	learn: 17.8573940	total: 333ms	remaining: 238ms
175:	learn: 17.8298267	total: 335ms	remaining: 236ms
176:	learn: 17.7982631	total: 337ms	remaining: 234ms
177:	learn: 17.7738629	total: 339ms	remaining: 232ms
178:	learn: 17.7441747	total: 341ms	remaining: 231ms
179:	learn: 17.7116900	total: 343ms	remaining: 229ms
180:	learn: 17.6824858	total: 345ms	remaining: 227ms
181:	learn: 17.6492945	total: 347ms	remaining: 225ms
182:	learn: 17.6206313	total: 349ms	remaining: 223ms
183:	learn: 17.6014898	total: 351ms	remaining: 221ms
184:	learn: 17.5741939	total: 352ms	remaining: 219ms
185:	learn: 17.5474523	total: 354ms	remaining: 217ms
186:	learn: 17.5206494	total: 356ms	remaining: 215ms
187:	learn: 17.4995490	total: 359ms	remaining: 214ms
188:	learn: 17.4786493	total: 361ms	remaining: 212ms
189:	learn: 17.4417322	total: 362ms	remaining: 210ms
190:	learn: 17.4206479	total: 364ms	remaining: 208ms
191:	learn: 17.3862768	total: 366ms	remaining: 206ms
192:	learn: 17.3518112	total: 368ms	remaining: 204ms
193:	learn: 17.3147438	total: 370ms	remaining: 202ms
194:	learn: 17.2947530	total: 371ms	remaining: 200ms
195:	learn: 17.2608869	total: 373ms	remaining: 198ms
196:	learn: 17.2340364	total: 375ms	remaining: 196ms
197:	learn: 17.2010925	total: 377ms	remaining: 194ms
198:	learn: 17.1600612	total: 378ms	remaining: 192ms
199:	learn: 17.1395893	total: 380ms	remaining: 190ms
200:	learn: 17.1026803	total: 382ms	remaining: 188ms
201:	learn: 17.0788486	total: 384ms	remaining: 186ms
202:	learn: 17.0604450	total: 385ms	remaining: 184ms
203:	learn: 17.0342871	total: 387ms	remaining: 182ms
204:	learn: 17.0140566	total: 389ms	remaining: 180ms
205:	learn: 16.9807440	total: 391ms	remaining: 178ms
206:	learn: 16.9597418	total: 392ms	remaining: 176ms
207:	learn: 16.9345729	total: 394ms	remaining: 174ms
208:	learn: 16.9090899	total: 396ms	remaining: 172ms
209:	learn: 16.8860656	total: 398ms	remaining: 170ms
210:	learn: 16.8574779	total: 399ms	remaining: 168ms
211:	learn: 16.8368769	total: 401ms	remaining: 166ms
212:	learn: 16.8187149	total: 403ms	remaining: 165ms
213:	learn: 16.7841064	total: 405ms	remaining: 163ms
214:	learn: 16.7437581	total: 406ms	remaining: 161ms
215:	learn: 16.7286325	total: 408ms	remaining: 159ms
216:	learn: 16.7037484	total: 410ms	remaining: 157ms
217:	learn: 16.6797434	total: 412ms	remaining: 155ms
218:	learn: 16.6514554	total: 414ms	remaining: 153ms
219:	learn: 16.6171706	total: 415ms	remaining: 151ms
220:	learn: 16.5991738	total: 417ms	remaining: 149ms
221:	learn: 16.5856960	total: 419ms	remaining: 147ms
222:	learn: 16.5535263	total: 421ms	remaining: 145ms
223:	learn: 16.5317953	total: 422ms	remaining: 143ms
224:	learn: 16.5071695	total: 424ms	remaining: 141ms
225:	learn: 16.4843616	total: 426ms	remaining: 139ms
226:	learn: 16.4566621	total: 428ms	remaining: 138ms
227:	learn: 16.4388522	total: 430ms	remaining: 136ms
228:	learn: 16.4118844	total: 431ms	remaining: 134ms
229:	learn: 16.3974193	total: 433ms	remaining: 132ms
230:	learn: 16.3797320	total: 435ms	remaining: 130ms
231:	learn: 16.3646578	total: 437ms	remaining: 128ms
232:	learn: 16.3392690	total: 438ms	remaining: 126ms
233:	learn: 16.3214036	total: 440ms	remaining: 124ms
234:	learn: 16.3012368	total: 442ms	remaining: 122ms
235:	learn: 16.2814160	total: 444ms	remaining: 120ms
236:	learn: 16.2612133	total: 445ms	remaining: 118ms
237:	learn: 16.2513309	total: 447ms	remaining: 116ms
238:	learn: 16.2313409	total: 449ms	remaining: 115ms
239:	learn: 16.2075395	total: 450ms	remaining: 113ms
240:	learn: 16.1801818	total: 452ms	remaining: 111ms
241:	learn: 16.1660439	total: 454ms	remaining: 109ms
242:	learn: 16.1377658	total: 456ms	remaining: 107ms
243:	learn: 16.1176664	total: 457ms	remaining: 105ms
244:	learn: 16.1026008	total: 459ms	remaining: 103ms
245:	learn: 16.0788031	total: 461ms	remaining: 101ms
246:	learn: 16.0571650	total: 463ms	remaining: 99.4ms
247:	learn: 16.0351082	total: 465ms	remaining: 97.5ms
248:	learn: 16.0107050	total: 467ms	remaining: 95.7ms
249:	learn: 15.9958491	total: 469ms	remaining: 93.8ms
250:	learn: 15.9773129	total: 470ms	remaining: 91.8ms
251:	learn: 15.9629779	total: 472ms	remaining: 89.9ms
252:	learn: 15.9486046	total: 474ms	remaining: 88ms
253:	learn: 15.9275992	total: 476ms	remaining: 86.1ms
254:	learn: 15.9173102	total: 477ms	remaining: 84.3ms
255:	learn: 15.9074741	total: 479ms	remaining: 82.4ms
256:	learn: 15.8905671	total: 481ms	remaining: 80.5ms
257:	learn: 15.8747691	total: 483ms	remaining: 78.6ms
258:	learn: 15.8565875	total: 485ms	remaining: 76.7ms
259:	learn: 15.8474120	total: 486ms	remaining: 74.8ms
260:	learn: 15.8304155	total: 488ms	remaining: 72.9ms
261:	learn: 15.8142603	total: 490ms	remaining: 71.1ms
262:	learn: 15.7976011	total: 492ms	remaining: 69.2ms
263:	learn: 15.7804422	total: 494ms	remaining: 67.3ms
264:	learn: 15.7597390	total: 496ms	remaining: 65.5ms
265:	learn: 15.7396332	total: 497ms	remaining: 63.6ms
266:	learn: 15.7282514	total: 499ms	remaining: 61.7ms
267:	learn: 15.7102340	total: 501ms	remaining: 59.8ms
268:	learn: 15.6953494	total: 503ms	remaining: 57.9ms
269:	learn: 15.6768758	total: 504ms	remaining: 56ms
270:	learn: 15.6504448	total: 507ms	remaining: 54.2ms
271:	learn: 15.6301521	total: 511ms	remaining: 52.6ms
272:	learn: 15.6085025	total: 514ms	remaining: 50.9ms
273:	learn: 15.5877103	total: 518ms	remaining: 49.2ms
274:	learn: 15.5674908	total: 522ms	remaining: 47.5ms
275:	learn: 15.5554447	total: 526ms	remaining: 45.8ms
276:	learn: 15.5379977	total: 529ms	remaining: 43.9ms
277:	learn: 15.5237618	total: 531ms	remaining: 42ms
278:	learn: 15.5090885	total: 534ms	remaining: 40.2ms
279:	learn: 15.4931724	total: 537ms	remaining: 38.3ms
280:	learn: 15.4784161	total: 539ms	remaining: 36.4ms
281:	learn: 15.4559633	total: 541ms	remaining: 34.5ms
282:	learn: 15.4475513	total: 543ms	remaining: 32.6ms
283:	learn: 15.4358914	total: 545ms	remaining: 30.7ms
284:	learn: 15.4191326	total: 547ms	remaining: 28.8ms
285:	learn: 15.4081828	total: 549ms	remaining: 26.9ms
286:	learn: 15.3967039	total: 551ms	remaining: 24.9ms
287:	learn: 15.3856986	total: 553ms	remaining: 23ms
288:	learn: 15.3614535	total: 555ms	remaining: 21.1ms
289:	learn: 15.3416739	total: 557ms	remaining: 19.2ms
290:	learn: 15.3236895	total: 559ms	remaining: 17.3ms
291:	learn: 15.3096231	total: 562ms	remaining: 15.4ms
292:	learn: 15.2939080	total: 569ms	remaining: 13.6ms
293:	learn: 15.2820654	total: 571ms	remaining: 11.6ms
294:	learn: 15.2738294	total: 573ms	remaining: 9.71ms
295:	learn: 15.2559871	total: 574ms	remaining: 7.76ms
296:	learn: 15.2310891	total: 576ms	remaining: 5.82ms
297:	learn: 15.2160299	total: 578ms	remaining: 3.88ms
298:	learn: 15.2040634	total: 580ms	remaining: 1.94ms
299:	learn: 15.1930070	total: 582ms	remaining: 0us
0:	learn: 43.7498914	total: 1.88ms	remaining: 562ms
1:	learn: 43.5743161	total: 3.5ms	remaining: 522ms
2:	learn: 43.3532526	total: 5.31ms	remaining: 526ms
3:	learn: 43.1298302	total: 7.03ms	remaining: 520ms
4:	learn: 42.9319689	total: 8.72ms	remaining: 514ms
5:	learn: 42.6810375	total: 10.4ms	remaining: 511ms
6:	learn: 42.4672745	total: 12.1ms	remaining: 507ms
7:	learn: 42.1999877	total: 13.8ms	remaining: 504ms
8:	learn: 41.9995808	total: 15.4ms	remaining: 499ms
9:	learn: 41.7914130	total: 17.3ms	remaining: 501ms
10:	learn: 41.6539876	total: 19.1ms	remaining: 501ms
11:	learn: 41.4195720	total: 21.1ms	remaining: 506ms
12:	learn: 41.1867586	total: 22.9ms	remaining: 506ms
13:	learn: 40.9730466	total: 24.9ms	remaining: 508ms
14:	learn: 40.7689817	total: 26.8ms	remaining: 509ms
15:	learn: 40.5678257	total: 28.4ms	remaining: 505ms
16:	learn: 40.3189705	total: 30.2ms	remaining: 502ms
17:	learn: 40.0953231	total: 31.9ms	remaining: 500ms
18:	learn: 39.8511708	total: 33.7ms	remaining: 498ms
19:	learn: 39.6434099	total: 36ms	remaining: 505ms
20:	learn: 39.4294234	total: 38ms	remaining: 505ms
21:	learn: 39.2400658	total: 39.9ms	remaining: 504ms
22:	learn: 39.0324029	total: 41.9ms	remaining: 505ms
23:	learn: 38.8610342	total: 43.9ms	remaining: 505ms
24:	learn: 38.6320751	total: 45.8ms	remaining: 504ms
25:	learn: 38.4003320	total: 47.4ms	remaining: 500ms
26:	learn: 38.1912653	total: 49ms	remaining: 496ms
27:	learn: 38.0037456	total: 50.9ms	remaining: 495ms
28:	learn: 37.8083797	total: 52.7ms	remaining: 493ms
29:	learn: 37.6082643	total: 53.6ms	remaining: 483ms
30:	learn: 37.4313822	total: 55.4ms	remaining: 481ms
31:	learn: 37.2345825	total: 57.2ms	remaining: 479ms
32:	learn: 37.0266015	total: 59.1ms	remaining: 478ms
33:	learn: 36.8179373	total: 60.8ms	remaining: 476ms
34:	learn: 36.6204339	total: 62.6ms	remaining: 474ms
35:	learn: 36.4339377	total: 64.2ms	remaining: 471ms
36:	learn: 36.2725127	total: 66ms	remaining: 469ms
37:	learn: 36.0851905	total: 67.8ms	remaining: 468ms
38:	learn: 35.9019021	total: 69.5ms	remaining: 465ms
39:	learn: 35.7010905	total: 71.4ms	remaining: 464ms
40:	learn: 35.5575893	total: 73.3ms	remaining: 463ms
41:	learn: 35.3754041	total: 75.2ms	remaining: 462ms
42:	learn: 35.1862923	total: 77.2ms	remaining: 462ms
43:	learn: 35.0221680	total: 81.1ms	remaining: 472ms
44:	learn: 34.8618656	total: 83.9ms	remaining: 475ms
45:	learn: 34.7398510	total: 86.9ms	remaining: 480ms
46:	learn: 34.5633346	total: 89.3ms	remaining: 481ms
47:	learn: 34.3728401	total: 91.9ms	remaining: 482ms
48:	learn: 34.2183914	total: 94.8ms	remaining: 486ms
49:	learn: 34.0454426	total: 97.2ms	remaining: 486ms
50:	learn: 33.9002133	total: 99ms	remaining: 483ms
51:	learn: 33.7610827	total: 101ms	remaining: 481ms
52:	learn: 33.6063333	total: 103ms	remaining: 482ms
53:	learn: 33.4317684	total: 106ms	remaining: 481ms
54:	learn: 33.3005990	total: 107ms	remaining: 477ms
55:	learn: 33.1741724	total: 109ms	remaining: 475ms
56:	learn: 33.0031930	total: 111ms	remaining: 473ms
57:	learn: 32.8551951	total: 113ms	remaining: 470ms
58:	learn: 32.7132077	total: 114ms	remaining: 467ms
59:	learn: 32.5549260	total: 116ms	remaining: 464ms
60:	learn: 32.4221067	total: 118ms	remaining: 462ms
61:	learn: 32.2777731	total: 119ms	remaining: 459ms
62:	learn: 32.1174249	total: 121ms	remaining: 456ms
63:	learn: 32.0178737	total: 123ms	remaining: 454ms
64:	learn: 31.9113032	total: 125ms	remaining: 452ms
65:	learn: 31.7911688	total: 127ms	remaining: 449ms
66:	learn: 31.6274835	total: 128ms	remaining: 447ms
67:	learn: 31.4989870	total: 130ms	remaining: 444ms
68:	learn: 31.3970168	total: 132ms	remaining: 441ms
69:	learn: 31.2525305	total: 134ms	remaining: 439ms
70:	learn: 31.1031106	total: 135ms	remaining: 436ms
71:	learn: 30.9572739	total: 137ms	remaining: 433ms
72:	learn: 30.8273454	total: 138ms	remaining: 430ms
73:	learn: 30.7043240	total: 140ms	remaining: 428ms
74:	learn: 30.5927794	total: 142ms	remaining: 426ms
75:	learn: 30.4698433	total: 144ms	remaining: 424ms
76:	learn: 30.3502842	total: 146ms	remaining: 422ms
77:	learn: 30.2032369	total: 147ms	remaining: 419ms
78:	learn: 30.0852144	total: 149ms	remaining: 417ms
79:	learn: 29.9489584	total: 151ms	remaining: 415ms
80:	learn: 29.8343210	total: 152ms	remaining: 412ms
81:	learn: 29.7112728	total: 154ms	remaining: 409ms
82:	learn: 29.5717957	total: 156ms	remaining: 407ms
83:	learn: 29.4309039	total: 157ms	remaining: 405ms
84:	learn: 29.3190932	total: 159ms	remaining: 402ms
85:	learn: 29.2106781	total: 161ms	remaining: 400ms
86:	learn: 29.0826668	total: 163ms	remaining: 398ms
87:	learn: 28.9891691	total: 164ms	remaining: 396ms
88:	learn: 28.8798780	total: 166ms	remaining: 393ms
89:	learn: 28.7777749	total: 167ms	remaining: 391ms
90:	learn: 28.6722304	total: 169ms	remaining: 388ms
91:	learn: 28.5419579	total: 171ms	remaining: 386ms
92:	learn: 28.4108536	total: 172ms	remaining: 384ms
93:	learn: 28.2892767	total: 174ms	remaining: 381ms
94:	learn: 28.1805062	total: 176ms	remaining: 379ms
95:	learn: 28.0561853	total: 177ms	remaining: 377ms
96:	learn: 27.9332435	total: 179ms	remaining: 375ms
97:	learn: 27.8469541	total: 181ms	remaining: 373ms
98:	learn: 27.7320198	total: 182ms	remaining: 370ms
99:	learn: 27.6312960	total: 184ms	remaining: 368ms
100:	learn: 27.5113091	total: 186ms	remaining: 366ms
101:	learn: 27.4100571	total: 187ms	remaining: 364ms
102:	learn: 27.3028790	total: 189ms	remaining: 361ms
103:	learn: 27.2305971	total: 191ms	remaining: 359ms
104:	learn: 27.1470175	total: 192ms	remaining: 357ms
105:	learn: 27.0535873	total: 194ms	remaining: 355ms
106:	learn: 26.9610373	total: 196ms	remaining: 353ms
107:	learn: 26.8458519	total: 197ms	remaining: 351ms
108:	learn: 26.7571113	total: 199ms	remaining: 349ms
109:	learn: 26.6577075	total: 201ms	remaining: 347ms
110:	learn: 26.5592548	total: 202ms	remaining: 345ms
111:	learn: 26.4628631	total: 204ms	remaining: 343ms
112:	learn: 26.3612589	total: 206ms	remaining: 340ms
113:	learn: 26.2700100	total: 207ms	remaining: 338ms
114:	learn: 26.1793907	total: 209ms	remaining: 336ms
115:	learn: 26.0780682	total: 211ms	remaining: 334ms
116:	learn: 25.9778033	total: 212ms	remaining: 332ms
117:	learn: 25.8948453	total: 214ms	remaining: 330ms
118:	learn: 25.8271303	total: 216ms	remaining: 328ms
119:	learn: 25.7211323	total: 217ms	remaining: 326ms
120:	learn: 25.6439899	total: 219ms	remaining: 324ms
121:	learn: 25.5570076	total: 221ms	remaining: 322ms
122:	learn: 25.4938382	total: 222ms	remaining: 320ms
123:	learn: 25.4211629	total: 224ms	remaining: 318ms
124:	learn: 25.3272179	total: 226ms	remaining: 316ms
125:	learn: 25.2507740	total: 227ms	remaining: 314ms
126:	learn: 25.1803595	total: 229ms	remaining: 312ms
127:	learn: 25.0988003	total: 231ms	remaining: 311ms
128:	learn: 25.0327904	total: 233ms	remaining: 309ms
129:	learn: 24.9399721	total: 235ms	remaining: 307ms
130:	learn: 24.8787624	total: 236ms	remaining: 305ms
131:	learn: 24.7906408	total: 238ms	remaining: 303ms
132:	learn: 24.7251282	total: 240ms	remaining: 301ms
133:	learn: 24.6471128	total: 241ms	remaining: 299ms
134:	learn: 24.5758109	total: 243ms	remaining: 297ms
135:	learn: 24.5028801	total: 245ms	remaining: 295ms
136:	learn: 24.4415266	total: 247ms	remaining: 293ms
137:	learn: 24.3859734	total: 248ms	remaining: 292ms
138:	learn: 24.2990679	total: 250ms	remaining: 290ms
139:	learn: 24.2368693	total: 254ms	remaining: 290ms
140:	learn: 24.1673143	total: 256ms	remaining: 289ms
141:	learn: 24.1088675	total: 259ms	remaining: 288ms
142:	learn: 24.0257934	total: 262ms	remaining: 287ms
143:	learn: 23.9611390	total: 265ms	remaining: 287ms
144:	learn: 23.8916223	total: 267ms	remaining: 286ms
145:	learn: 23.8204991	total: 270ms	remaining: 284ms
146:	learn: 23.7282666	total: 272ms	remaining: 283ms
147:	learn: 23.7006172	total: 274ms	remaining: 281ms
148:	learn: 23.6356236	total: 276ms	remaining: 280ms
149:	learn: 23.5748940	total: 278ms	remaining: 278ms
150:	learn: 23.5188124	total: 280ms	remaining: 277ms
151:	learn: 23.4556301	total: 283ms	remaining: 276ms
152:	learn: 23.4052211	total: 285ms	remaining: 274ms
153:	learn: 23.3310524	total: 287ms	remaining: 272ms
154:	learn: 23.2667998	total: 289ms	remaining: 271ms
155:	learn: 23.1908201	total: 291ms	remaining: 269ms
156:	learn: 23.1341093	total: 293ms	remaining: 267ms
157:	learn: 23.0788266	total: 295ms	remaining: 265ms
158:	learn: 23.0347221	total: 297ms	remaining: 264ms
159:	learn: 22.9588657	total: 300ms	remaining: 262ms
160:	learn: 22.8868919	total: 302ms	remaining: 260ms
161:	learn: 22.8412575	total: 304ms	remaining: 259ms
162:	learn: 22.7695481	total: 306ms	remaining: 257ms
163:	learn: 22.7201901	total: 308ms	remaining: 255ms
164:	learn: 22.6785896	total: 310ms	remaining: 253ms
165:	learn: 22.6122990	total: 312ms	remaining: 252ms
166:	learn: 22.5429541	total: 314ms	remaining: 250ms
167:	learn: 22.5045798	total: 316ms	remaining: 248ms
168:	learn: 22.4410984	total: 318ms	remaining: 246ms
169:	learn: 22.3804419	total: 320ms	remaining: 245ms
170:	learn: 22.3280157	total: 322ms	remaining: 243ms
171:	learn: 22.2668663	total: 324ms	remaining: 241ms
172:	learn: 22.2231787	total: 326ms	remaining: 239ms
173:	learn: 22.1570026	total: 328ms	remaining: 237ms
174:	learn: 22.1179129	total: 330ms	remaining: 235ms
175:	learn: 22.0731374	total: 331ms	remaining: 234ms
176:	learn: 22.0142878	total: 334ms	remaining: 232ms
177:	learn: 21.9505386	total: 335ms	remaining: 230ms
178:	learn: 21.9070810	total: 338ms	remaining: 228ms
179:	learn: 21.8490967	total: 340ms	remaining: 226ms
180:	learn: 21.8061606	total: 341ms	remaining: 225ms
181:	learn: 21.7363670	total: 344ms	remaining: 223ms
182:	learn: 21.7009574	total: 345ms	remaining: 221ms
183:	learn: 21.6386253	total: 347ms	remaining: 219ms
184:	learn: 21.5927890	total: 349ms	remaining: 217ms
185:	learn: 21.5507390	total: 351ms	remaining: 215ms
186:	learn: 21.5033957	total: 354ms	remaining: 214ms
187:	learn: 21.4598961	total: 356ms	remaining: 212ms
188:	learn: 21.4115937	total: 358ms	remaining: 210ms
189:	learn: 21.3538000	total: 360ms	remaining: 209ms
190:	learn: 21.3152015	total: 362ms	remaining: 207ms
191:	learn: 21.2879212	total: 364ms	remaining: 205ms
192:	learn: 21.2397972	total: 366ms	remaining: 203ms
193:	learn: 21.1989166	total: 367ms	remaining: 201ms
194:	learn: 21.1482659	total: 369ms	remaining: 199ms
195:	learn: 21.1261094	total: 371ms	remaining: 197ms
196:	learn: 21.0870504	total: 373ms	remaining: 195ms
197:	learn: 21.0465234	total: 374ms	remaining: 193ms
198:	learn: 21.0065293	total: 376ms	remaining: 191ms
199:	learn: 20.9794807	total: 378ms	remaining: 189ms
200:	learn: 20.9440788	total: 379ms	remaining: 187ms
201:	learn: 20.8996659	total: 381ms	remaining: 185ms
202:	learn: 20.8590133	total: 383ms	remaining: 183ms
203:	learn: 20.8302628	total: 384ms	remaining: 181ms
204:	learn: 20.7700361	total: 386ms	remaining: 179ms
205:	learn: 20.7323359	total: 388ms	remaining: 177ms
206:	learn: 20.7089949	total: 389ms	remaining: 175ms
207:	learn: 20.6761067	total: 391ms	remaining: 173ms
208:	learn: 20.6434036	total: 392ms	remaining: 171ms
209:	learn: 20.6101494	total: 394ms	remaining: 169ms
210:	learn: 20.5650465	total: 396ms	remaining: 167ms
211:	learn: 20.5417431	total: 398ms	remaining: 165ms
212:	learn: 20.5069412	total: 399ms	remaining: 163ms
213:	learn: 20.4915657	total: 401ms	remaining: 161ms
214:	learn: 20.4764890	total: 403ms	remaining: 159ms
215:	learn: 20.4447257	total: 404ms	remaining: 157ms
216:	learn: 20.4165748	total: 406ms	remaining: 155ms
217:	learn: 20.3859165	total: 408ms	remaining: 153ms
218:	learn: 20.3465832	total: 409ms	remaining: 151ms
219:	learn: 20.3027042	total: 411ms	remaining: 149ms
220:	learn: 20.2704475	total: 413ms	remaining: 148ms
221:	learn: 20.2510579	total: 414ms	remaining: 146ms
222:	learn: 20.2273368	total: 416ms	remaining: 144ms
223:	learn: 20.1861747	total: 418ms	remaining: 142ms
224:	learn: 20.1741036	total: 419ms	remaining: 140ms
225:	learn: 20.1447729	total: 421ms	remaining: 138ms
226:	learn: 20.1170167	total: 423ms	remaining: 136ms
227:	learn: 20.0807626	total: 425ms	remaining: 134ms
228:	learn: 20.0498810	total: 426ms	remaining: 132ms
229:	learn: 20.0166302	total: 428ms	remaining: 130ms
230:	learn: 20.0066392	total: 430ms	remaining: 128ms
231:	learn: 19.9785860	total: 432ms	remaining: 126ms
232:	learn: 19.9428348	total: 433ms	remaining: 125ms
233:	learn: 19.8937119	total: 435ms	remaining: 123ms
234:	learn: 19.8591015	total: 437ms	remaining: 121ms
235:	learn: 19.8133313	total: 439ms	remaining: 119ms
236:	learn: 19.7983903	total: 441ms	remaining: 117ms
237:	learn: 19.7773239	total: 442ms	remaining: 115ms
238:	learn: 19.7306763	total: 444ms	remaining: 113ms
239:	learn: 19.6932021	total: 446ms	remaining: 112ms
240:	learn: 19.6671271	total: 448ms	remaining: 110ms
241:	learn: 19.6146991	total: 450ms	remaining: 108ms
242:	learn: 19.5795603	total: 452ms	remaining: 106ms
243:	learn: 19.5379976	total: 453ms	remaining: 104ms
244:	learn: 19.5001179	total: 455ms	remaining: 102ms
245:	learn: 19.4728926	total: 457ms	remaining: 100ms
246:	learn: 19.4307296	total: 459ms	remaining: 98.5ms
247:	learn: 19.3965523	total: 461ms	remaining: 96.6ms
248:	learn: 19.3725464	total: 463ms	remaining: 94.8ms
249:	learn: 19.3564337	total: 467ms	remaining: 93.4ms
250:	learn: 19.3237215	total: 470ms	remaining: 91.8ms
251:	learn: 19.3061120	total: 473ms	remaining: 90.1ms
252:	learn: 19.2685120	total: 475ms	remaining: 88.3ms
253:	learn: 19.2512961	total: 478ms	remaining: 86.6ms
254:	learn: 19.2370818	total: 481ms	remaining: 84.8ms
255:	learn: 19.2248785	total: 483ms	remaining: 83ms
256:	learn: 19.1875521	total: 485ms	remaining: 81.2ms
257:	learn: 19.1538521	total: 487ms	remaining: 79.3ms
258:	learn: 19.1337514	total: 489ms	remaining: 77.4ms
259:	learn: 19.1238816	total: 491ms	remaining: 75.6ms
260:	learn: 19.0884835	total: 493ms	remaining: 73.7ms
261:	learn: 19.0700737	total: 495ms	remaining: 71.8ms
262:	learn: 19.0493298	total: 497ms	remaining: 69.9ms
263:	learn: 19.0170510	total: 498ms	remaining: 67.9ms
264:	learn: 18.9972427	total: 500ms	remaining: 66ms
265:	learn: 18.9805132	total: 501ms	remaining: 64.1ms
266:	learn: 18.9668296	total: 503ms	remaining: 62.2ms
267:	learn: 18.9307588	total: 505ms	remaining: 60.3ms
268:	learn: 18.8941570	total: 507ms	remaining: 58.4ms
269:	learn: 18.8658383	total: 508ms	remaining: 56.5ms
270:	learn: 18.8353612	total: 510ms	remaining: 54.6ms
271:	learn: 18.8274532	total: 512ms	remaining: 52.7ms
272:	learn: 18.8059719	total: 513ms	remaining: 50.8ms
273:	learn: 18.7590402	total: 515ms	remaining: 48.9ms
274:	learn: 18.7477292	total: 516ms	remaining: 47ms
275:	learn: 18.7261118	total: 518ms	remaining: 45.1ms
276:	learn: 18.7012824	total: 520ms	remaining: 43.2ms
277:	learn: 18.6729271	total: 522ms	remaining: 41.3ms
278:	learn: 18.6404915	total: 523ms	remaining: 39.4ms
279:	learn: 18.6287540	total: 525ms	remaining: 37.5ms
280:	learn: 18.6158038	total: 527ms	remaining: 35.6ms
281:	learn: 18.5698347	total: 528ms	remaining: 33.7ms
282:	learn: 18.5578703	total: 530ms	remaining: 31.8ms
283:	learn: 18.5286282	total: 532ms	remaining: 30ms
284:	learn: 18.5136172	total: 533ms	remaining: 28.1ms
285:	learn: 18.4945107	total: 535ms	remaining: 26.2ms
286:	learn: 18.4692908	total: 537ms	remaining: 24.3ms
287:	learn: 18.4608631	total: 539ms	remaining: 22.5ms
288:	learn: 18.4375152	total: 541ms	remaining: 20.6ms
289:	learn: 18.4191938	total: 543ms	remaining: 18.7ms
290:	learn: 18.3855959	total: 544ms	remaining: 16.8ms
291:	learn: 18.3655173	total: 546ms	remaining: 15ms
292:	learn: 18.3526062	total: 548ms	remaining: 13.1ms
293:	learn: 18.3268893	total: 549ms	remaining: 11.2ms
294:	learn: 18.2984383	total: 551ms	remaining: 9.34ms
295:	learn: 18.2903040	total: 553ms	remaining: 7.47ms
296:	learn: 18.2641202	total: 554ms	remaining: 5.6ms
297:	learn: 18.2307810	total: 556ms	remaining: 3.73ms
298:	learn: 18.2111964	total: 558ms	remaining: 1.86ms
299:	learn: 18.1920416	total: 559ms	remaining: 0us
0:	learn: 47.2223303	total: 1.86ms	remaining: 555ms
1:	learn: 47.0012450	total: 3.58ms	remaining: 534ms
2:	learn: 46.7902659	total: 5.43ms	remaining: 538ms
3:	learn: 46.6525816	total: 7.06ms	remaining: 522ms
4:	learn: 46.4339641	total: 8.7ms	remaining: 513ms
5:	learn: 46.2778225	total: 10.4ms	remaining: 508ms
6:	learn: 46.0643806	total: 12ms	remaining: 504ms
7:	learn: 45.8524408	total: 14ms	remaining: 511ms
8:	learn: 45.6292576	total: 15.8ms	remaining: 512ms
9:	learn: 45.4834191	total: 17.5ms	remaining: 506ms
10:	learn: 45.3051268	total: 19.1ms	remaining: 503ms
11:	learn: 45.0860123	total: 20.9ms	remaining: 502ms
12:	learn: 44.9244264	total: 22.6ms	remaining: 498ms
13:	learn: 44.7899028	total: 24.2ms	remaining: 494ms
14:	learn: 44.5722669	total: 25.8ms	remaining: 491ms
15:	learn: 44.4237842	total: 27.4ms	remaining: 486ms
16:	learn: 44.1884701	total: 29.2ms	remaining: 487ms
17:	learn: 43.9810393	total: 31ms	remaining: 485ms
18:	learn: 43.7615133	total: 32.8ms	remaining: 485ms
19:	learn: 43.6083532	total: 34.6ms	remaining: 484ms
20:	learn: 43.4027025	total: 36.4ms	remaining: 483ms
21:	learn: 43.1644638	total: 38.2ms	remaining: 483ms
22:	learn: 43.0374805	total: 40.1ms	remaining: 484ms
23:	learn: 42.9052784	total: 42ms	remaining: 483ms
24:	learn: 42.7752877	total: 43.8ms	remaining: 482ms
25:	learn: 42.5614346	total: 45.6ms	remaining: 480ms
26:	learn: 42.3835699	total: 47.4ms	remaining: 479ms
27:	learn: 42.2046841	total: 49.2ms	remaining: 478ms
28:	learn: 42.0587862	total: 50.9ms	remaining: 476ms
29:	learn: 41.8625203	total: 52.8ms	remaining: 475ms
30:	learn: 41.6884007	total: 55.1ms	remaining: 478ms
31:	learn: 41.5750265	total: 59.1ms	remaining: 495ms
32:	learn: 41.4625547	total: 61.7ms	remaining: 499ms
33:	learn: 41.3222654	total: 64.3ms	remaining: 503ms
34:	learn: 41.1920637	total: 68.6ms	remaining: 519ms
35:	learn: 41.0000509	total: 73.9ms	remaining: 542ms
36:	learn: 40.8354702	total: 77ms	remaining: 547ms
37:	learn: 40.7300355	total: 79.1ms	remaining: 545ms
38:	learn: 40.6241530	total: 81.5ms	remaining: 545ms
39:	learn: 40.5223631	total: 84.9ms	remaining: 552ms
40:	learn: 40.3965743	total: 87.2ms	remaining: 551ms
41:	learn: 40.2360082	total: 89.4ms	remaining: 549ms
42:	learn: 40.0637277	total: 91.4ms	remaining: 546ms
43:	learn: 39.9450923	total: 93.5ms	remaining: 544ms
44:	learn: 39.7948228	total: 95.5ms	remaining: 541ms
45:	learn: 39.6077939	total: 97.6ms	remaining: 539ms
46:	learn: 39.4925160	total: 99.7ms	remaining: 537ms
47:	learn: 39.3313511	total: 102ms	remaining: 534ms
48:	learn: 39.1679908	total: 104ms	remaining: 532ms
49:	learn: 39.0608626	total: 106ms	remaining: 531ms
50:	learn: 38.8594240	total: 109ms	remaining: 530ms
51:	learn: 38.6971572	total: 111ms	remaining: 528ms
52:	learn: 38.5462676	total: 113ms	remaining: 526ms
53:	learn: 38.3856244	total: 115ms	remaining: 525ms
54:	learn: 38.2480817	total: 117ms	remaining: 523ms
55:	learn: 38.1603701	total: 119ms	remaining: 520ms
56:	learn: 38.0318828	total: 122ms	remaining: 519ms
57:	learn: 37.8931939	total: 124ms	remaining: 517ms
58:	learn: 37.7602911	total: 126ms	remaining: 515ms
59:	learn: 37.6470644	total: 128ms	remaining: 512ms
60:	learn: 37.5204654	total: 130ms	remaining: 511ms
61:	learn: 37.3674965	total: 133ms	remaining: 509ms
62:	learn: 37.2833721	total: 135ms	remaining: 507ms
63:	learn: 37.1448751	total: 137ms	remaining: 505ms
64:	learn: 36.9854829	total: 139ms	remaining: 503ms
65:	learn: 36.8300761	total: 141ms	remaining: 501ms
66:	learn: 36.6929925	total: 143ms	remaining: 498ms
67:	learn: 36.5980491	total: 145ms	remaining: 494ms
68:	learn: 36.5129121	total: 146ms	remaining: 490ms
69:	learn: 36.3679545	total: 148ms	remaining: 487ms
70:	learn: 36.2177877	total: 150ms	remaining: 484ms
71:	learn: 36.1284249	total: 152ms	remaining: 481ms
72:	learn: 36.0006972	total: 153ms	remaining: 477ms
73:	learn: 35.8662383	total: 155ms	remaining: 474ms
74:	learn: 35.7550765	total: 157ms	remaining: 471ms
75:	learn: 35.6182362	total: 159ms	remaining: 468ms
76:	learn: 35.5269148	total: 161ms	remaining: 465ms
77:	learn: 35.4173631	total: 162ms	remaining: 462ms
78:	learn: 35.3151275	total: 164ms	remaining: 459ms
79:	learn: 35.1857990	total: 166ms	remaining: 456ms
80:	learn: 35.0761114	total: 168ms	remaining: 454ms
81:	learn: 34.9093171	total: 170ms	remaining: 451ms
82:	learn: 34.7653830	total: 172ms	remaining: 449ms
83:	learn: 34.6684928	total: 174ms	remaining: 446ms
84:	learn: 34.5433206	total: 175ms	remaining: 444ms
85:	learn: 34.4014290	total: 177ms	remaining: 441ms
86:	learn: 34.2658102	total: 179ms	remaining: 438ms
87:	learn: 34.1958424	total: 181ms	remaining: 435ms
88:	learn: 34.0738447	total: 182ms	remaining: 432ms
89:	learn: 33.9410395	total: 184ms	remaining: 429ms
90:	learn: 33.8118799	total: 186ms	remaining: 427ms
91:	learn: 33.7074790	total: 187ms	remaining: 424ms
92:	learn: 33.5786248	total: 189ms	remaining: 421ms
93:	learn: 33.5227692	total: 191ms	remaining: 418ms
94:	learn: 33.4029223	total: 192ms	remaining: 415ms
95:	learn: 33.3048722	total: 194ms	remaining: 413ms
96:	learn: 33.1884679	total: 196ms	remaining: 410ms
97:	learn: 33.1174014	total: 198ms	remaining: 407ms
98:	learn: 33.0069224	total: 199ms	remaining: 405ms
99:	learn: 32.9046646	total: 201ms	remaining: 402ms
100:	learn: 32.7946974	total: 203ms	remaining: 399ms
101:	learn: 32.6578038	total: 204ms	remaining: 397ms
102:	learn: 32.5634864	total: 206ms	remaining: 394ms
103:	learn: 32.4620919	total: 208ms	remaining: 392ms
104:	learn: 32.3801995	total: 210ms	remaining: 390ms
105:	learn: 32.2900031	total: 212ms	remaining: 387ms
106:	learn: 32.2281158	total: 213ms	remaining: 385ms
107:	learn: 32.1409170	total: 215ms	remaining: 383ms
108:	learn: 32.0603318	total: 217ms	remaining: 380ms
109:	learn: 32.0220925	total: 219ms	remaining: 378ms
110:	learn: 31.9252873	total: 220ms	remaining: 375ms
111:	learn: 31.8179420	total: 222ms	remaining: 373ms
112:	learn: 31.7764281	total: 224ms	remaining: 371ms
113:	learn: 31.6711444	total: 226ms	remaining: 368ms
114:	learn: 31.6130960	total: 228ms	remaining: 366ms
115:	learn: 31.5406778	total: 230ms	remaining: 364ms
116:	learn: 31.4243038	total: 232ms	remaining: 362ms
117:	learn: 31.3073581	total: 233ms	remaining: 360ms
118:	learn: 31.2286920	total: 235ms	remaining: 358ms
119:	learn: 31.1662999	total: 237ms	remaining: 355ms
120:	learn: 31.0767949	total: 239ms	remaining: 353ms
121:	learn: 30.9848147	total: 241ms	remaining: 351ms
122:	learn: 30.9168386	total: 243ms	remaining: 349ms
123:	learn: 30.8335426	total: 244ms	remaining: 347ms
124:	learn: 30.7845778	total: 246ms	remaining: 345ms
125:	learn: 30.6961948	total: 248ms	remaining: 343ms
126:	learn: 30.6318978	total: 250ms	remaining: 341ms
127:	learn: 30.5365462	total: 254ms	remaining: 341ms
128:	learn: 30.4473322	total: 257ms	remaining: 340ms
129:	learn: 30.3488215	total: 259ms	remaining: 339ms
130:	learn: 30.2516670	total: 262ms	remaining: 339ms
131:	learn: 30.1824873	total: 265ms	remaining: 337ms
132:	learn: 30.1407551	total: 267ms	remaining: 336ms
133:	learn: 30.0842716	total: 270ms	remaining: 334ms
134:	learn: 30.0453812	total: 272ms	remaining: 333ms
135:	learn: 29.9056675	total: 274ms	remaining: 330ms
136:	learn: 29.8562344	total: 277ms	remaining: 329ms
137:	learn: 29.7800438	total: 279ms	remaining: 328ms
138:	learn: 29.6893267	total: 281ms	remaining: 326ms
139:	learn: 29.6519883	total: 283ms	remaining: 323ms
140:	learn: 29.5933039	total: 285ms	remaining: 321ms
141:	learn: 29.5319814	total: 286ms	remaining: 319ms
142:	learn: 29.4478987	total: 288ms	remaining: 316ms
143:	learn: 29.3781781	total: 290ms	remaining: 314ms
144:	learn: 29.3156644	total: 292ms	remaining: 312ms
145:	learn: 29.2451972	total: 293ms	remaining: 309ms
146:	learn: 29.1340679	total: 295ms	remaining: 307ms
147:	learn: 29.0829388	total: 297ms	remaining: 305ms
148:	learn: 29.0075584	total: 299ms	remaining: 303ms
149:	learn: 28.9538516	total: 300ms	remaining: 300ms
150:	learn: 28.8841092	total: 302ms	remaining: 298ms
151:	learn: 28.7866514	total: 304ms	remaining: 296ms
152:	learn: 28.7050862	total: 305ms	remaining: 293ms
153:	learn: 28.6337898	total: 307ms	remaining: 291ms
154:	learn: 28.5928684	total: 309ms	remaining: 289ms
155:	learn: 28.5309727	total: 310ms	remaining: 286ms
156:	learn: 28.4893902	total: 312ms	remaining: 284ms
157:	learn: 28.4067126	total: 314ms	remaining: 282ms
158:	learn: 28.3512868	total: 315ms	remaining: 280ms
159:	learn: 28.2822639	total: 317ms	remaining: 277ms
160:	learn: 28.1903447	total: 319ms	remaining: 275ms
161:	learn: 28.1061944	total: 321ms	remaining: 273ms
162:	learn: 28.0590331	total: 322ms	remaining: 271ms
163:	learn: 27.9911252	total: 324ms	remaining: 269ms
164:	learn: 27.9445189	total: 326ms	remaining: 266ms
165:	learn: 27.8789384	total: 327ms	remaining: 264ms
166:	learn: 27.8444192	total: 329ms	remaining: 262ms
167:	learn: 27.7708732	total: 331ms	remaining: 260ms
168:	learn: 27.7247816	total: 333ms	remaining: 258ms
169:	learn: 27.6658306	total: 335ms	remaining: 256ms
170:	learn: 27.5914257	total: 336ms	remaining: 254ms
171:	learn: 27.5674108	total: 338ms	remaining: 252ms
172:	learn: 27.4976481	total: 340ms	remaining: 250ms
173:	learn: 27.4323842	total: 342ms	remaining: 247ms
174:	learn: 27.3827045	total: 343ms	remaining: 245ms
175:	learn: 27.3073099	total: 345ms	remaining: 243ms
176:	learn: 27.2425594	total: 347ms	remaining: 241ms
177:	learn: 27.1848653	total: 348ms	remaining: 239ms
178:	learn: 27.1081049	total: 350ms	remaining: 237ms
179:	learn: 27.0387445	total: 352ms	remaining: 235ms
180:	learn: 26.9210144	total: 353ms	remaining: 232ms
181:	learn: 26.8593297	total: 355ms	remaining: 230ms
182:	learn: 26.8114278	total: 357ms	remaining: 228ms
183:	learn: 26.7506449	total: 358ms	remaining: 226ms
184:	learn: 26.6976297	total: 360ms	remaining: 224ms
185:	learn: 26.6697229	total: 362ms	remaining: 222ms
186:	learn: 26.6016064	total: 364ms	remaining: 220ms
187:	learn: 26.5626343	total: 366ms	remaining: 218ms
188:	learn: 26.5317809	total: 367ms	remaining: 216ms
189:	learn: 26.4716674	total: 369ms	remaining: 214ms
190:	learn: 26.4207132	total: 371ms	remaining: 212ms
191:	learn: 26.3463564	total: 373ms	remaining: 210ms
192:	learn: 26.2699392	total: 375ms	remaining: 208ms
193:	learn: 26.2216394	total: 376ms	remaining: 206ms
194:	learn: 26.1542065	total: 379ms	remaining: 204ms
195:	learn: 26.1091427	total: 381ms	remaining: 202ms
196:	learn: 26.0497565	total: 383ms	remaining: 200ms
197:	learn: 26.0061280	total: 385ms	remaining: 198ms
198:	learn: 25.9378688	total: 386ms	remaining: 196ms
199:	learn: 25.9133859	total: 388ms	remaining: 194ms
200:	learn: 25.8417997	total: 390ms	remaining: 192ms
201:	learn: 25.7367859	total: 392ms	remaining: 190ms
202:	learn: 25.7066067	total: 394ms	remaining: 188ms
203:	learn: 25.6583951	total: 396ms	remaining: 186ms
204:	learn: 25.5769220	total: 398ms	remaining: 184ms
205:	learn: 25.4873171	total: 399ms	remaining: 182ms
206:	learn: 25.4369613	total: 401ms	remaining: 180ms
207:	learn: 25.3880595	total: 403ms	remaining: 178ms
208:	learn: 25.3358394	total: 405ms	remaining: 176ms
209:	learn: 25.3075209	total: 407ms	remaining: 174ms
210:	learn: 25.2772773	total: 408ms	remaining: 172ms
211:	learn: 25.2105870	total: 410ms	remaining: 170ms
212:	learn: 25.1342999	total: 412ms	remaining: 168ms
213:	learn: 25.0713395	total: 413ms	remaining: 166ms
214:	learn: 25.0320379	total: 415ms	remaining: 164ms
215:	learn: 24.9622500	total: 417ms	remaining: 162ms
216:	learn: 24.9199382	total: 418ms	remaining: 160ms
217:	learn: 24.8688670	total: 420ms	remaining: 158ms
218:	learn: 24.8211525	total: 422ms	remaining: 156ms
219:	learn: 24.7578300	total: 424ms	remaining: 154ms
220:	learn: 24.7309943	total: 425ms	remaining: 152ms
221:	learn: 24.7109299	total: 427ms	remaining: 150ms
222:	learn: 24.6447364	total: 429ms	remaining: 148ms
223:	learn: 24.5975071	total: 431ms	remaining: 146ms
224:	learn: 24.5428251	total: 433ms	remaining: 144ms
225:	learn: 24.5160218	total: 434ms	remaining: 142ms
226:	learn: 24.4506317	total: 436ms	remaining: 140ms
227:	learn: 24.4214121	total: 438ms	remaining: 138ms
228:	learn: 24.3745490	total: 440ms	remaining: 136ms
229:	learn: 24.3115589	total: 441ms	remaining: 134ms
230:	learn: 24.2576173	total: 443ms	remaining: 132ms
231:	learn: 24.2147187	total: 447ms	remaining: 131ms
232:	learn: 24.1794147	total: 450ms	remaining: 129ms
233:	learn: 24.1266786	total: 453ms	remaining: 128ms
234:	learn: 24.0804986	total: 456ms	remaining: 126ms
235:	learn: 24.0305450	total: 460ms	remaining: 125ms
236:	learn: 23.9862710	total: 465ms	remaining: 123ms
237:	learn: 23.9475906	total: 468ms	remaining: 122ms
238:	learn: 23.9106790	total: 470ms	remaining: 120ms
239:	learn: 23.8496178	total: 473ms	remaining: 118ms
240:	learn: 23.8300036	total: 475ms	remaining: 116ms
241:	learn: 23.7700921	total: 477ms	remaining: 114ms
242:	learn: 23.7514159	total: 480ms	remaining: 112ms
243:	learn: 23.7130162	total: 482ms	remaining: 111ms
244:	learn: 23.6912246	total: 484ms	remaining: 109ms
245:	learn: 23.6445985	total: 486ms	remaining: 107ms
246:	learn: 23.6160278	total: 489ms	remaining: 105ms
247:	learn: 23.5538477	total: 490ms	remaining: 103ms
248:	learn: 23.5045377	total: 492ms	remaining: 101ms
249:	learn: 23.4785220	total: 495ms	remaining: 98.9ms
250:	learn: 23.4354616	total: 496ms	remaining: 96.9ms
251:	learn: 23.3736592	total: 499ms	remaining: 95ms
252:	learn: 23.3232991	total: 501ms	remaining: 93ms
253:	learn: 23.3066182	total: 503ms	remaining: 91.1ms
254:	learn: 23.2785320	total: 505ms	remaining: 89.1ms
255:	learn: 23.2478441	total: 507ms	remaining: 87.1ms
256:	learn: 23.2041791	total: 509ms	remaining: 85.2ms
257:	learn: 23.1853184	total: 511ms	remaining: 83.2ms
258:	learn: 23.1242501	total: 513ms	remaining: 81.2ms
259:	learn: 23.1063176	total: 515ms	remaining: 79.2ms
260:	learn: 23.0744755	total: 517ms	remaining: 77.3ms
261:	learn: 23.0276198	total: 519ms	remaining: 75.3ms
262:	learn: 23.0003213	total: 521ms	remaining: 73.3ms
263:	learn: 22.9571747	total: 523ms	remaining: 71.4ms
264:	learn: 22.9403656	total: 525ms	remaining: 69.4ms
265:	learn: 22.9078376	total: 527ms	remaining: 67.4ms
266:	learn: 22.8937476	total: 529ms	remaining: 65.4ms
267:	learn: 22.8770947	total: 531ms	remaining: 63.4ms
268:	learn: 22.8569677	total: 534ms	remaining: 61.5ms
269:	learn: 22.8395432	total: 536ms	remaining: 59.5ms
270:	learn: 22.8183584	total: 538ms	remaining: 57.6ms
271:	learn: 22.7737614	total: 540ms	remaining: 55.6ms
272:	learn: 22.7307578	total: 542ms	remaining: 53.6ms
273:	learn: 22.7013944	total: 543ms	remaining: 51.6ms
274:	learn: 22.6726739	total: 545ms	remaining: 49.6ms
275:	learn: 22.6536608	total: 547ms	remaining: 47.6ms
276:	learn: 22.6028710	total: 548ms	remaining: 45.5ms
277:	learn: 22.5452835	total: 550ms	remaining: 43.5ms
278:	learn: 22.5071253	total: 552ms	remaining: 41.5ms
279:	learn: 22.4871356	total: 554ms	remaining: 39.5ms
280:	learn: 22.4592523	total: 555ms	remaining: 37.5ms
281:	learn: 22.4162232	total: 557ms	remaining: 35.6ms
282:	learn: 22.3638485	total: 559ms	remaining: 33.6ms
283:	learn: 22.3197880	total: 560ms	remaining: 31.6ms
284:	learn: 22.3036913	total: 562ms	remaining: 29.6ms
285:	learn: 22.2740687	total: 564ms	remaining: 27.6ms
286:	learn: 22.2547318	total: 565ms	remaining: 25.6ms
287:	learn: 22.2270474	total: 567ms	remaining: 23.6ms
288:	learn: 22.1922834	total: 569ms	remaining: 21.7ms
289:	learn: 22.1719978	total: 571ms	remaining: 19.7ms
290:	learn: 22.1457516	total: 572ms	remaining: 17.7ms
291:	learn: 22.1129213	total: 574ms	remaining: 15.7ms
292:	learn: 22.0701540	total: 576ms	remaining: 13.8ms
293:	learn: 22.0494017	total: 578ms	remaining: 11.8ms
294:	learn: 22.0019180	total: 579ms	remaining: 9.82ms
295:	learn: 21.9718082	total: 581ms	remaining: 7.85ms
296:	learn: 21.9326253	total: 583ms	remaining: 5.88ms
297:	learn: 21.9010347	total: 584ms	remaining: 3.92ms
298:	learn: 21.8630511	total: 586ms	remaining: 1.96ms
299:	learn: 21.8498785	total: 588ms	remaining: 0us
0:	learn: 46.8022812	total: 1.94ms	remaining: 581ms
1:	learn: 46.6654641	total: 3.72ms	remaining: 555ms
2:	learn: 46.4740664	total: 6.16ms	remaining: 610ms
3:	learn: 46.2992338	total: 9.55ms	remaining: 707ms
4:	learn: 46.0891706	total: 12.2ms	remaining: 718ms
5:	learn: 45.8814494	total: 14.9ms	remaining: 732ms
6:	learn: 45.7440096	total: 17.4ms	remaining: 726ms
7:	learn: 45.5142389	total: 19.7ms	remaining: 719ms
8:	learn: 45.3726763	total: 22.1ms	remaining: 713ms
9:	learn: 45.2161478	total: 24.6ms	remaining: 714ms
10:	learn: 44.9916539	total: 26.6ms	remaining: 699ms
11:	learn: 44.7835000	total: 28.4ms	remaining: 681ms
12:	learn: 44.6134174	total: 30.6ms	remaining: 676ms
13:	learn: 44.5007355	total: 33.1ms	remaining: 676ms
14:	learn: 44.3191784	total: 34.9ms	remaining: 663ms
15:	learn: 44.1243444	total: 36.6ms	remaining: 650ms
16:	learn: 43.9007423	total: 38.2ms	remaining: 636ms
17:	learn: 43.7015567	total: 39.8ms	remaining: 623ms
18:	learn: 43.4924581	total: 41.6ms	remaining: 616ms
19:	learn: 43.3200127	total: 43.3ms	remaining: 607ms
20:	learn: 43.1148527	total: 45ms	remaining: 598ms
21:	learn: 42.9081654	total: 46.7ms	remaining: 590ms
22:	learn: 42.7881111	total: 48.3ms	remaining: 581ms
23:	learn: 42.6089468	total: 49.8ms	remaining: 573ms
24:	learn: 42.4512711	total: 51.5ms	remaining: 566ms
25:	learn: 42.2596523	total: 53.1ms	remaining: 559ms
26:	learn: 42.0704067	total: 54.7ms	remaining: 553ms
27:	learn: 41.9683928	total: 56.3ms	remaining: 547ms
28:	learn: 41.8315908	total: 58.2ms	remaining: 544ms
29:	learn: 41.6531400	total: 59.9ms	remaining: 539ms
30:	learn: 41.5075024	total: 61.6ms	remaining: 535ms
31:	learn: 41.3723894	total: 63.4ms	remaining: 531ms
32:	learn: 41.2059622	total: 65.2ms	remaining: 528ms
33:	learn: 41.0733830	total: 66.8ms	remaining: 522ms
34:	learn: 40.9541471	total: 68.4ms	remaining: 518ms
35:	learn: 40.8004732	total: 69.8ms	remaining: 512ms
36:	learn: 40.6348730	total: 71.5ms	remaining: 509ms
37:	learn: 40.4621902	total: 73.2ms	remaining: 505ms
38:	learn: 40.2989558	total: 74.8ms	remaining: 501ms
39:	learn: 40.1934780	total: 76.4ms	remaining: 497ms
40:	learn: 39.9912000	total: 78.1ms	remaining: 493ms
41:	learn: 39.8534734	total: 79.7ms	remaining: 490ms
42:	learn: 39.6853720	total: 81.4ms	remaining: 486ms
43:	learn: 39.5288445	total: 83ms	remaining: 483ms
44:	learn: 39.3905742	total: 84.7ms	remaining: 480ms
45:	learn: 39.2349558	total: 86.4ms	remaining: 477ms
46:	learn: 39.0971455	total: 88ms	remaining: 474ms
47:	learn: 39.0024650	total: 89.6ms	remaining: 471ms
48:	learn: 38.8486854	total: 91.3ms	remaining: 468ms
49:	learn: 38.6933441	total: 93ms	remaining: 465ms
50:	learn: 38.5256373	total: 94.7ms	remaining: 462ms
51:	learn: 38.3757709	total: 96.3ms	remaining: 459ms
52:	learn: 38.2345101	total: 97.8ms	remaining: 456ms
53:	learn: 38.0805297	total: 99.4ms	remaining: 453ms
54:	learn: 37.9683931	total: 101ms	remaining: 450ms
55:	learn: 37.8613152	total: 103ms	remaining: 448ms
56:	learn: 37.7276368	total: 105ms	remaining: 446ms
57:	learn: 37.6357292	total: 106ms	remaining: 443ms
58:	learn: 37.4965166	total: 108ms	remaining: 440ms
59:	learn: 37.3775088	total: 110ms	remaining: 438ms
60:	learn: 37.2694079	total: 111ms	remaining: 436ms
61:	learn: 37.1266739	total: 113ms	remaining: 434ms
62:	learn: 37.0108994	total: 115ms	remaining: 431ms
63:	learn: 36.9132899	total: 116ms	remaining: 429ms
64:	learn: 36.7686870	total: 118ms	remaining: 426ms
65:	learn: 36.6507898	total: 120ms	remaining: 424ms
66:	learn: 36.5145585	total: 121ms	remaining: 421ms
67:	learn: 36.4273308	total: 123ms	remaining: 419ms
68:	learn: 36.3346139	total: 124ms	remaining: 416ms
69:	learn: 36.2665704	total: 126ms	remaining: 414ms
70:	learn: 36.1558457	total: 128ms	remaining: 412ms
71:	learn: 36.0192175	total: 130ms	remaining: 410ms
72:	learn: 35.8649856	total: 131ms	remaining: 408ms
73:	learn: 35.7617973	total: 133ms	remaining: 406ms
74:	learn: 35.6596519	total: 134ms	remaining: 403ms
75:	learn: 35.5245435	total: 136ms	remaining: 401ms
76:	learn: 35.4537556	total: 138ms	remaining: 398ms
77:	learn: 35.3780375	total: 139ms	remaining: 396ms
78:	learn: 35.2833791	total: 141ms	remaining: 394ms
79:	learn: 35.1452834	total: 143ms	remaining: 392ms
80:	learn: 35.0592434	total: 144ms	remaining: 391ms
81:	learn: 34.9669906	total: 146ms	remaining: 388ms
82:	learn: 34.8296901	total: 148ms	remaining: 386ms
83:	learn: 34.7326991	total: 149ms	remaining: 384ms
84:	learn: 34.6684697	total: 151ms	remaining: 382ms
85:	learn: 34.5428975	total: 153ms	remaining: 380ms
86:	learn: 34.4195245	total: 154ms	remaining: 378ms
87:	learn: 34.3392865	total: 156ms	remaining: 376ms
88:	learn: 34.2529322	total: 157ms	remaining: 373ms
89:	learn: 34.1448751	total: 159ms	remaining: 371ms
90:	learn: 34.0216141	total: 161ms	remaining: 370ms
91:	learn: 33.8915739	total: 163ms	remaining: 368ms
92:	learn: 33.7935768	total: 165ms	remaining: 366ms
93:	learn: 33.7266850	total: 167ms	remaining: 365ms
94:	learn: 33.6432974	total: 168ms	remaining: 363ms
95:	learn: 33.5771748	total: 170ms	remaining: 362ms
96:	learn: 33.4617173	total: 172ms	remaining: 360ms
97:	learn: 33.3995208	total: 174ms	remaining: 358ms
98:	learn: 33.3107973	total: 175ms	remaining: 356ms
99:	learn: 33.2293538	total: 177ms	remaining: 354ms
100:	learn: 33.1137639	total: 179ms	remaining: 352ms
101:	learn: 33.0104538	total: 180ms	remaining: 350ms
102:	learn: 32.9053061	total: 182ms	remaining: 348ms
103:	learn: 32.8181618	total: 184ms	remaining: 347ms
104:	learn: 32.7335172	total: 186ms	remaining: 345ms
105:	learn: 32.6844665	total: 187ms	remaining: 343ms
106:	learn: 32.5991038	total: 189ms	remaining: 340ms
107:	learn: 32.5344266	total: 190ms	remaining: 338ms
108:	learn: 32.4163296	total: 192ms	remaining: 337ms
109:	learn: 32.3642916	total: 194ms	remaining: 334ms
110:	learn: 32.2606372	total: 195ms	remaining: 333ms
111:	learn: 32.1667073	total: 197ms	remaining: 331ms
112:	learn: 32.1151894	total: 199ms	remaining: 329ms
113:	learn: 32.0335697	total: 200ms	remaining: 327ms
114:	learn: 31.9193995	total: 202ms	remaining: 325ms
115:	learn: 31.8539862	total: 204ms	remaining: 323ms
116:	learn: 31.8120778	total: 206ms	remaining: 322ms
117:	learn: 31.7051866	total: 207ms	remaining: 320ms
118:	learn: 31.6418317	total: 209ms	remaining: 318ms
119:	learn: 31.5777432	total: 211ms	remaining: 316ms
120:	learn: 31.4879841	total: 213ms	remaining: 315ms
121:	learn: 31.4251267	total: 214ms	remaining: 313ms
122:	learn: 31.3192433	total: 216ms	remaining: 311ms
123:	learn: 31.2561359	total: 218ms	remaining: 309ms
124:	learn: 31.1687750	total: 219ms	remaining: 307ms
125:	learn: 31.1087060	total: 221ms	remaining: 306ms
126:	learn: 31.0223746	total: 223ms	remaining: 304ms
127:	learn: 30.9195056	total: 225ms	remaining: 302ms
128:	learn: 30.8649912	total: 227ms	remaining: 301ms
129:	learn: 30.8157448	total: 229ms	remaining: 299ms
130:	learn: 30.7281289	total: 230ms	remaining: 297ms
131:	learn: 30.6649265	total: 232ms	remaining: 296ms
132:	learn: 30.6233894	total: 234ms	remaining: 294ms
133:	learn: 30.5808010	total: 236ms	remaining: 292ms
134:	learn: 30.4835334	total: 238ms	remaining: 290ms
135:	learn: 30.3998922	total: 239ms	remaining: 289ms
136:	learn: 30.3032450	total: 241ms	remaining: 287ms
137:	learn: 30.2440426	total: 243ms	remaining: 285ms
138:	learn: 30.1492421	total: 245ms	remaining: 283ms
139:	learn: 30.1022196	total: 247ms	remaining: 282ms
140:	learn: 30.0269087	total: 251ms	remaining: 283ms
141:	learn: 29.9620226	total: 254ms	remaining: 282ms
142:	learn: 29.9009743	total: 257ms	remaining: 282ms
143:	learn: 29.8502133	total: 260ms	remaining: 282ms
144:	learn: 29.7916646	total: 265ms	remaining: 283ms
145:	learn: 29.7316719	total: 268ms	remaining: 283ms
146:	learn: 29.6865510	total: 271ms	remaining: 282ms
147:	learn: 29.6452820	total: 273ms	remaining: 281ms
148:	learn: 29.5678148	total: 276ms	remaining: 280ms
149:	learn: 29.4908965	total: 278ms	remaining: 278ms
150:	learn: 29.4465126	total: 281ms	remaining: 277ms
151:	learn: 29.3691764	total: 283ms	remaining: 275ms
152:	learn: 29.2908371	total: 285ms	remaining: 274ms
153:	learn: 29.1822080	total: 287ms	remaining: 272ms
154:	learn: 29.1166238	total: 289ms	remaining: 270ms
155:	learn: 29.0319403	total: 291ms	remaining: 268ms
156:	learn: 28.9745770	total: 293ms	remaining: 266ms
157:	learn: 28.9111321	total: 295ms	remaining: 265ms
158:	learn: 28.8339565	total: 297ms	remaining: 263ms
159:	learn: 28.7553531	total: 299ms	remaining: 261ms
160:	learn: 28.6825705	total: 301ms	remaining: 260ms
161:	learn: 28.6068000	total: 303ms	remaining: 258ms
162:	learn: 28.5730586	total: 305ms	remaining: 256ms
163:	learn: 28.4980155	total: 307ms	remaining: 254ms
164:	learn: 28.4358809	total: 309ms	remaining: 252ms
165:	learn: 28.3725887	total: 311ms	remaining: 251ms
166:	learn: 28.3091487	total: 313ms	remaining: 249ms
167:	learn: 28.2286087	total: 325ms	remaining: 256ms
168:	learn: 28.1828160	total: 327ms	remaining: 254ms
169:	learn: 28.1417236	total: 330ms	remaining: 252ms
170:	learn: 28.0892848	total: 332ms	remaining: 250ms
171:	learn: 28.0166485	total: 334ms	remaining: 249ms
172:	learn: 27.9655036	total: 336ms	remaining: 246ms
173:	learn: 27.9210384	total: 337ms	remaining: 244ms
174:	learn: 27.8389682	total: 339ms	remaining: 242ms
175:	learn: 27.7676715	total: 340ms	remaining: 240ms
176:	learn: 27.6902349	total: 342ms	remaining: 238ms
177:	learn: 27.6486420	total: 344ms	remaining: 236ms
178:	learn: 27.5718928	total: 345ms	remaining: 233ms
179:	learn: 27.5262081	total: 347ms	remaining: 231ms
180:	learn: 27.4422858	total: 349ms	remaining: 229ms
181:	learn: 27.3773349	total: 351ms	remaining: 227ms
182:	learn: 27.3393259	total: 352ms	remaining: 225ms
183:	learn: 27.2647726	total: 354ms	remaining: 223ms
184:	learn: 27.2427257	total: 356ms	remaining: 221ms
185:	learn: 27.1691053	total: 357ms	remaining: 219ms
186:	learn: 27.1437576	total: 359ms	remaining: 217ms
187:	learn: 27.0783959	total: 361ms	remaining: 215ms
188:	learn: 27.0535819	total: 362ms	remaining: 213ms
189:	learn: 27.0178987	total: 364ms	remaining: 211ms
190:	learn: 26.9591416	total: 366ms	remaining: 209ms
191:	learn: 26.8995329	total: 367ms	remaining: 207ms
192:	learn: 26.8676050	total: 369ms	remaining: 204ms
193:	learn: 26.8541422	total: 370ms	remaining: 202ms
194:	learn: 26.7924939	total: 372ms	remaining: 200ms
195:	learn: 26.7146030	total: 374ms	remaining: 198ms
196:	learn: 26.6532268	total: 376ms	remaining: 197ms
197:	learn: 26.6185179	total: 378ms	remaining: 195ms
198:	learn: 26.5811036	total: 379ms	remaining: 193ms
199:	learn: 26.5629160	total: 381ms	remaining: 191ms
200:	learn: 26.5229339	total: 383ms	remaining: 189ms
201:	learn: 26.4216200	total: 384ms	remaining: 187ms
202:	learn: 26.3880299	total: 386ms	remaining: 184ms
203:	learn: 26.3312892	total: 388ms	remaining: 182ms
204:	learn: 26.3054679	total: 389ms	remaining: 180ms
205:	learn: 26.2473354	total: 391ms	remaining: 178ms
206:	learn: 26.1868611	total: 393ms	remaining: 176ms
207:	learn: 26.1262892	total: 394ms	remaining: 174ms
208:	learn: 26.0803173	total: 396ms	remaining: 172ms
209:	learn: 26.0503216	total: 397ms	remaining: 170ms
210:	learn: 26.0052977	total: 399ms	remaining: 168ms
211:	learn: 25.9438350	total: 401ms	remaining: 167ms
212:	learn: 25.9090289	total: 403ms	remaining: 165ms
213:	learn: 25.8571238	total: 405ms	remaining: 163ms
214:	learn: 25.8203910	total: 406ms	remaining: 161ms
215:	learn: 25.7785845	total: 408ms	remaining: 159ms
216:	learn: 25.7545342	total: 409ms	remaining: 157ms
217:	learn: 25.7154022	total: 411ms	remaining: 155ms
218:	learn: 25.6513011	total: 413ms	remaining: 153ms
219:	learn: 25.6069821	total: 414ms	remaining: 151ms
220:	learn: 25.5835433	total: 416ms	remaining: 149ms
221:	learn: 25.5085326	total: 418ms	remaining: 147ms
222:	learn: 25.4500766	total: 420ms	remaining: 145ms
223:	learn: 25.4092535	total: 422ms	remaining: 143ms
224:	learn: 25.3680123	total: 424ms	remaining: 141ms
225:	learn: 25.3316979	total: 426ms	remaining: 139ms
226:	learn: 25.2673219	total: 427ms	remaining: 137ms
227:	learn: 25.2519501	total: 429ms	remaining: 136ms
228:	learn: 25.1910995	total: 431ms	remaining: 134ms
229:	learn: 25.1466161	total: 433ms	remaining: 132ms
230:	learn: 25.0967414	total: 435ms	remaining: 130ms
231:	learn: 25.0537614	total: 436ms	remaining: 128ms
232:	learn: 25.0252974	total: 438ms	remaining: 126ms
233:	learn: 24.9896464	total: 440ms	remaining: 124ms
234:	learn: 24.9654783	total: 445ms	remaining: 123ms
235:	learn: 24.9382337	total: 447ms	remaining: 121ms
236:	learn: 24.9162174	total: 450ms	remaining: 120ms
237:	learn: 24.8997954	total: 453ms	remaining: 118ms
238:	learn: 24.8625340	total: 456ms	remaining: 116ms
239:	learn: 24.8354920	total: 458ms	remaining: 115ms
240:	learn: 24.8205774	total: 461ms	remaining: 113ms
241:	learn: 24.7655509	total: 463ms	remaining: 111ms
242:	learn: 24.7456314	total: 465ms	remaining: 109ms
243:	learn: 24.7029663	total: 468ms	remaining: 107ms
244:	learn: 24.6851747	total: 470ms	remaining: 106ms
245:	learn: 24.6550496	total: 472ms	remaining: 104ms
246:	learn: 24.6014400	total: 474ms	remaining: 102ms
247:	learn: 24.5851286	total: 476ms	remaining: 99.8ms
248:	learn: 24.5497482	total: 478ms	remaining: 97.9ms
249:	learn: 24.5137301	total: 480ms	remaining: 96ms
250:	learn: 24.4953136	total: 482ms	remaining: 94ms
251:	learn: 24.4766292	total: 483ms	remaining: 92.1ms
252:	learn: 24.4232903	total: 485ms	remaining: 90.2ms
253:	learn: 24.4048087	total: 487ms	remaining: 88.2ms
254:	learn: 24.3882134	total: 489ms	remaining: 86.3ms
255:	learn: 24.3590124	total: 491ms	remaining: 84.4ms
256:	learn: 24.3225138	total: 493ms	remaining: 82.4ms
257:	learn: 24.2760507	total: 494ms	remaining: 80.5ms
258:	learn: 24.2195837	total: 496ms	remaining: 78.5ms
259:	learn: 24.2102442	total: 498ms	remaining: 76.6ms
260:	learn: 24.1895873	total: 499ms	remaining: 74.6ms
261:	learn: 24.1501028	total: 501ms	remaining: 72.7ms
262:	learn: 24.1236915	total: 503ms	remaining: 70.7ms
263:	learn: 24.0851938	total: 505ms	remaining: 68.8ms
264:	learn: 24.0525404	total: 506ms	remaining: 66.9ms
265:	learn: 24.0138053	total: 508ms	remaining: 64.9ms
266:	learn: 23.9974641	total: 510ms	remaining: 63ms
267:	learn: 23.9827536	total: 511ms	remaining: 61.1ms
268:	learn: 23.9585269	total: 513ms	remaining: 59.1ms
269:	learn: 23.9420259	total: 515ms	remaining: 57.2ms
270:	learn: 23.9259725	total: 517ms	remaining: 55.3ms
271:	learn: 23.8898213	total: 518ms	remaining: 53.4ms
272:	learn: 23.8394970	total: 520ms	remaining: 51.4ms
273:	learn: 23.7828184	total: 522ms	remaining: 49.5ms
274:	learn: 23.7686364	total: 523ms	remaining: 47.6ms
275:	learn: 23.7468262	total: 525ms	remaining: 45.7ms
276:	learn: 23.7131736	total: 527ms	remaining: 43.8ms
277:	learn: 23.6652740	total: 529ms	remaining: 41.8ms
278:	learn: 23.6519654	total: 530ms	remaining: 39.9ms
279:	learn: 23.6222370	total: 532ms	remaining: 38ms
280:	learn: 23.5973672	total: 534ms	remaining: 36.1ms
281:	learn: 23.5529270	total: 536ms	remaining: 34.2ms
282:	learn: 23.5402250	total: 537ms	remaining: 32.3ms
283:	learn: 23.4909972	total: 539ms	remaining: 30.4ms
284:	learn: 23.4483865	total: 541ms	remaining: 28.5ms
285:	learn: 23.4306944	total: 542ms	remaining: 26.6ms
286:	learn: 23.4132212	total: 544ms	remaining: 24.6ms
287:	learn: 23.3845343	total: 546ms	remaining: 22.7ms
288:	learn: 23.3782629	total: 547ms	remaining: 20.8ms
289:	learn: 23.3688992	total: 549ms	remaining: 18.9ms
290:	learn: 23.3277968	total: 551ms	remaining: 17ms
291:	learn: 23.3078531	total: 552ms	remaining: 15.1ms
292:	learn: 23.2937328	total: 554ms	remaining: 13.2ms
293:	learn: 23.2612980	total: 556ms	remaining: 11.3ms
294:	learn: 23.2304367	total: 557ms	remaining: 9.44ms
295:	learn: 23.2202924	total: 559ms	remaining: 7.55ms
296:	learn: 23.1761901	total: 560ms	remaining: 5.66ms
297:	learn: 23.1452893	total: 562ms	remaining: 3.77ms
298:	learn: 23.1255058	total: 564ms	remaining: 1.88ms
299:	learn: 23.0889488	total: 565ms	remaining: 0us
0:	learn: 47.4529218	total: 1.93ms	remaining: 578ms
1:	learn: 47.2900688	total: 3.86ms	remaining: 575ms
2:	learn: 47.1096773	total: 5.87ms	remaining: 582ms
3:	learn: 46.9458017	total: 7.8ms	remaining: 578ms
4:	learn: 46.7394545	total: 9.8ms	remaining: 578ms
5:	learn: 46.6010938	total: 11.7ms	remaining: 575ms
6:	learn: 46.4630993	total: 13.6ms	remaining: 569ms
7:	learn: 46.2448951	total: 15.5ms	remaining: 565ms
8:	learn: 46.1043010	total: 17.3ms	remaining: 558ms
9:	learn: 45.8810190	total: 19.1ms	remaining: 554ms
10:	learn: 45.7420054	total: 20.9ms	remaining: 550ms
11:	learn: 45.5149331	total: 22.6ms	remaining: 544ms
12:	learn: 45.3382407	total: 24.4ms	remaining: 538ms
13:	learn: 45.2161570	total: 26.1ms	remaining: 534ms
14:	learn: 45.0926790	total: 27.9ms	remaining: 530ms
15:	learn: 44.9545530	total: 29.7ms	remaining: 527ms
16:	learn: 44.7287772	total: 32.6ms	remaining: 543ms
17:	learn: 44.5551144	total: 35.5ms	remaining: 556ms
18:	learn: 44.3448999	total: 38.2ms	remaining: 566ms
19:	learn: 44.1711445	total: 40.9ms	remaining: 572ms
20:	learn: 43.9621637	total: 44ms	remaining: 585ms
21:	learn: 43.7529661	total: 48.3ms	remaining: 610ms
22:	learn: 43.5464717	total: 51.8ms	remaining: 624ms
23:	learn: 43.3729361	total: 54.1ms	remaining: 622ms
24:	learn: 43.2801557	total: 56.2ms	remaining: 619ms
25:	learn: 43.1473718	total: 60.2ms	remaining: 635ms
26:	learn: 42.9705994	total: 62.4ms	remaining: 631ms
27:	learn: 42.7734822	total: 64.4ms	remaining: 626ms
28:	learn: 42.6504897	total: 66.5ms	remaining: 621ms
29:	learn: 42.4668368	total: 68.5ms	remaining: 616ms
30:	learn: 42.2613418	total: 70.5ms	remaining: 612ms
31:	learn: 42.1791761	total: 72.5ms	remaining: 607ms
32:	learn: 42.0764566	total: 74.5ms	remaining: 603ms
33:	learn: 41.9496825	total: 76.5ms	remaining: 598ms
34:	learn: 41.8376663	total: 78.5ms	remaining: 594ms
35:	learn: 41.7000601	total: 80.7ms	remaining: 592ms
36:	learn: 41.5533640	total: 83ms	remaining: 590ms
37:	learn: 41.4400883	total: 85.3ms	remaining: 588ms
38:	learn: 41.3175278	total: 87.6ms	remaining: 586ms
39:	learn: 41.2043083	total: 89.8ms	remaining: 584ms
40:	learn: 41.0738969	total: 91.9ms	remaining: 580ms
41:	learn: 40.9179876	total: 94.1ms	remaining: 578ms
42:	learn: 40.7436927	total: 96.2ms	remaining: 575ms
43:	learn: 40.6435369	total: 98.2ms	remaining: 571ms
44:	learn: 40.5383948	total: 101ms	remaining: 570ms
45:	learn: 40.3815403	total: 103ms	remaining: 567ms
46:	learn: 40.2441051	total: 105ms	remaining: 563ms
47:	learn: 40.1381318	total: 107ms	remaining: 560ms
48:	learn: 39.9795363	total: 109ms	remaining: 556ms
49:	learn: 39.8203576	total: 111ms	remaining: 554ms
50:	learn: 39.6474502	total: 113ms	remaining: 553ms
51:	learn: 39.5253122	total: 115ms	remaining: 551ms
52:	learn: 39.3737000	total: 117ms	remaining: 547ms
53:	learn: 39.2005360	total: 120ms	remaining: 545ms
54:	learn: 39.0989021	total: 122ms	remaining: 542ms
55:	learn: 38.9447803	total: 123ms	remaining: 538ms
56:	learn: 38.8313837	total: 125ms	remaining: 533ms
57:	learn: 38.6796993	total: 127ms	remaining: 528ms
58:	learn: 38.5148443	total: 128ms	remaining: 524ms
59:	learn: 38.3923692	total: 130ms	remaining: 519ms
60:	learn: 38.2489732	total: 131ms	remaining: 515ms
61:	learn: 38.1269866	total: 133ms	remaining: 511ms
62:	learn: 37.9760246	total: 135ms	remaining: 507ms
63:	learn: 37.8956062	total: 136ms	remaining: 503ms
64:	learn: 37.7450645	total: 138ms	remaining: 499ms
65:	learn: 37.6054180	total: 140ms	remaining: 495ms
66:	learn: 37.4811656	total: 141ms	remaining: 492ms
67:	learn: 37.3914857	total: 143ms	remaining: 488ms
68:	learn: 37.2806889	total: 144ms	remaining: 484ms
69:	learn: 37.1811123	total: 146ms	remaining: 480ms
70:	learn: 37.0594326	total: 148ms	remaining: 477ms
71:	learn: 36.9800074	total: 150ms	remaining: 473ms
72:	learn: 36.8190210	total: 151ms	remaining: 471ms
73:	learn: 36.6952228	total: 153ms	remaining: 467ms
74:	learn: 36.5654681	total: 155ms	remaining: 464ms
75:	learn: 36.4771903	total: 156ms	remaining: 460ms
76:	learn: 36.3838644	total: 158ms	remaining: 457ms
77:	learn: 36.2631705	total: 159ms	remaining: 454ms
78:	learn: 36.1879983	total: 161ms	remaining: 450ms
79:	learn: 36.0504743	total: 163ms	remaining: 447ms
80:	learn: 35.9655347	total: 164ms	remaining: 444ms
81:	learn: 35.8573006	total: 166ms	remaining: 441ms
82:	learn: 35.7184368	total: 168ms	remaining: 439ms
83:	learn: 35.6094378	total: 170ms	remaining: 436ms
84:	learn: 35.4649870	total: 171ms	remaining: 433ms
85:	learn: 35.3496452	total: 173ms	remaining: 430ms
86:	learn: 35.2159176	total: 175ms	remaining: 427ms
87:	learn: 35.0924611	total: 176ms	remaining: 425ms
88:	learn: 34.9916941	total: 178ms	remaining: 422ms
89:	learn: 34.9121739	total: 180ms	remaining: 419ms
90:	learn: 34.7794714	total: 181ms	remaining: 417ms
91:	learn: 34.6841457	total: 183ms	remaining: 414ms
92:	learn: 34.5722030	total: 185ms	remaining: 412ms
93:	learn: 34.5110825	total: 187ms	remaining: 409ms
94:	learn: 34.4487249	total: 189ms	remaining: 407ms
95:	learn: 34.3866516	total: 190ms	remaining: 405ms
96:	learn: 34.2677284	total: 192ms	remaining: 402ms
97:	learn: 34.2228038	total: 194ms	remaining: 399ms
98:	learn: 34.1034411	total: 195ms	remaining: 397ms
99:	learn: 34.0193655	total: 198ms	remaining: 395ms
100:	learn: 33.9137683	total: 199ms	remaining: 393ms
101:	learn: 33.8142570	total: 201ms	remaining: 390ms
102:	learn: 33.7490761	total: 203ms	remaining: 388ms
103:	learn: 33.6382695	total: 205ms	remaining: 386ms
104:	learn: 33.5526613	total: 206ms	remaining: 383ms
105:	learn: 33.4965005	total: 208ms	remaining: 381ms
106:	learn: 33.4454172	total: 210ms	remaining: 378ms
107:	learn: 33.3329578	total: 211ms	remaining: 375ms
108:	learn: 33.2151118	total: 213ms	remaining: 373ms
109:	learn: 33.1585276	total: 215ms	remaining: 371ms
110:	learn: 33.0449093	total: 217ms	remaining: 369ms
111:	learn: 32.9309427	total: 219ms	remaining: 367ms
112:	learn: 32.8937849	total: 222ms	remaining: 367ms
113:	learn: 32.8204081	total: 224ms	remaining: 366ms
114:	learn: 32.7042691	total: 227ms	remaining: 365ms
115:	learn: 32.6479509	total: 229ms	remaining: 364ms
116:	learn: 32.5596934	total: 232ms	remaining: 363ms
117:	learn: 32.4589530	total: 234ms	remaining: 362ms
118:	learn: 32.3952440	total: 237ms	remaining: 361ms
119:	learn: 32.3319275	total: 240ms	remaining: 360ms
120:	learn: 32.2776024	total: 242ms	remaining: 358ms
121:	learn: 32.2093836	total: 244ms	remaining: 356ms
122:	learn: 32.1375148	total: 246ms	remaining: 354ms
123:	learn: 32.0456001	total: 248ms	remaining: 352ms
124:	learn: 31.9373057	total: 250ms	remaining: 350ms
125:	learn: 31.8782587	total: 253ms	remaining: 349ms
126:	learn: 31.8086865	total: 255ms	remaining: 348ms
127:	learn: 31.7040622	total: 257ms	remaining: 345ms
128:	learn: 31.6464991	total: 259ms	remaining: 343ms
129:	learn: 31.5890453	total: 260ms	remaining: 341ms
130:	learn: 31.4920061	total: 262ms	remaining: 338ms
131:	learn: 31.4127596	total: 264ms	remaining: 336ms
132:	learn: 31.3583999	total: 265ms	remaining: 333ms
133:	learn: 31.3057304	total: 267ms	remaining: 331ms
134:	learn: 31.2117547	total: 269ms	remaining: 328ms
135:	learn: 31.0761735	total: 271ms	remaining: 326ms
136:	learn: 31.0112024	total: 273ms	remaining: 324ms
137:	learn: 30.9652181	total: 274ms	remaining: 322ms
138:	learn: 30.8894262	total: 276ms	remaining: 319ms
139:	learn: 30.8406920	total: 277ms	remaining: 317ms
140:	learn: 30.7933885	total: 279ms	remaining: 315ms
141:	learn: 30.7327144	total: 281ms	remaining: 312ms
142:	learn: 30.6596945	total: 282ms	remaining: 310ms
143:	learn: 30.5895052	total: 284ms	remaining: 308ms
144:	learn: 30.5439364	total: 286ms	remaining: 305ms
145:	learn: 30.4854180	total: 288ms	remaining: 303ms
146:	learn: 30.3945592	total: 289ms	remaining: 301ms
147:	learn: 30.3455971	total: 291ms	remaining: 299ms
148:	learn: 30.2758435	total: 293ms	remaining: 297ms
149:	learn: 30.1952049	total: 295ms	remaining: 295ms
150:	learn: 30.1115419	total: 296ms	remaining: 292ms
151:	learn: 30.0279563	total: 298ms	remaining: 290ms
152:	learn: 29.9403128	total: 300ms	remaining: 288ms
153:	learn: 29.8585848	total: 301ms	remaining: 286ms
154:	learn: 29.8173549	total: 303ms	remaining: 283ms
155:	learn: 29.7606479	total: 305ms	remaining: 281ms
156:	learn: 29.7192661	total: 306ms	remaining: 279ms
157:	learn: 29.6573867	total: 308ms	remaining: 277ms
158:	learn: 29.6011198	total: 310ms	remaining: 274ms
159:	learn: 29.5208614	total: 311ms	remaining: 272ms
160:	learn: 29.4263192	total: 313ms	remaining: 270ms
161:	learn: 29.3434737	total: 314ms	remaining: 268ms
162:	learn: 29.3098673	total: 316ms	remaining: 266ms
163:	learn: 29.2327943	total: 318ms	remaining: 264ms
164:	learn: 29.1601635	total: 320ms	remaining: 262ms
165:	learn: 29.1069048	total: 322ms	remaining: 260ms
166:	learn: 29.0382275	total: 323ms	remaining: 257ms
167:	learn: 28.9582253	total: 325ms	remaining: 255ms
168:	learn: 28.9064607	total: 327ms	remaining: 253ms
169:	learn: 28.8488541	total: 328ms	remaining: 251ms
170:	learn: 28.7995516	total: 330ms	remaining: 249ms
171:	learn: 28.7242521	total: 332ms	remaining: 247ms
172:	learn: 28.6426156	total: 334ms	remaining: 245ms
173:	learn: 28.5980046	total: 335ms	remaining: 243ms
174:	learn: 28.5198386	total: 337ms	remaining: 241ms
175:	learn: 28.4439630	total: 338ms	remaining: 238ms
176:	learn: 28.3655079	total: 340ms	remaining: 236ms
177:	learn: 28.3232157	total: 342ms	remaining: 234ms
178:	learn: 28.2364006	total: 343ms	remaining: 232ms
179:	learn: 28.1861183	total: 345ms	remaining: 230ms
180:	learn: 28.1227462	total: 347ms	remaining: 228ms
181:	learn: 28.0565946	total: 348ms	remaining: 226ms
182:	learn: 27.9984664	total: 350ms	remaining: 224ms
183:	learn: 27.9221997	total: 352ms	remaining: 222ms
184:	learn: 27.8748109	total: 353ms	remaining: 220ms
185:	learn: 27.8294375	total: 355ms	remaining: 218ms
186:	learn: 27.7745003	total: 357ms	remaining: 216ms
187:	learn: 27.7130989	total: 359ms	remaining: 214ms
188:	learn: 27.6722982	total: 360ms	remaining: 212ms
189:	learn: 27.6280830	total: 362ms	remaining: 209ms
190:	learn: 27.6020224	total: 363ms	remaining: 207ms
191:	learn: 27.5645462	total: 365ms	remaining: 205ms
192:	learn: 27.5082921	total: 367ms	remaining: 203ms
193:	learn: 27.4518307	total: 369ms	remaining: 201ms
194:	learn: 27.3891047	total: 370ms	remaining: 199ms
195:	learn: 27.3261929	total: 372ms	remaining: 197ms
196:	learn: 27.2777364	total: 374ms	remaining: 195ms
197:	learn: 27.2483200	total: 375ms	remaining: 193ms
198:	learn: 27.1940095	total: 377ms	remaining: 191ms
199:	learn: 27.1503379	total: 379ms	remaining: 189ms
200:	learn: 27.0980574	total: 380ms	remaining: 187ms
201:	learn: 27.0429416	total: 382ms	remaining: 185ms
202:	learn: 26.9803241	total: 384ms	remaining: 183ms
203:	learn: 26.9237002	total: 385ms	remaining: 181ms
204:	learn: 26.9012109	total: 387ms	remaining: 179ms
205:	learn: 26.8440446	total: 389ms	remaining: 177ms
206:	learn: 26.7801142	total: 391ms	remaining: 176ms
207:	learn: 26.7470260	total: 393ms	remaining: 174ms
208:	learn: 26.6972971	total: 395ms	remaining: 172ms
209:	learn: 26.6624251	total: 396ms	remaining: 170ms
210:	learn: 26.6063236	total: 398ms	remaining: 168ms
211:	learn: 26.5450022	total: 400ms	remaining: 166ms
212:	learn: 26.5243817	total: 401ms	remaining: 164ms
213:	learn: 26.4613009	total: 403ms	remaining: 162ms
214:	learn: 26.4170161	total: 405ms	remaining: 160ms
215:	learn: 26.3893390	total: 406ms	remaining: 158ms
216:	learn: 26.3599471	total: 408ms	remaining: 156ms
217:	learn: 26.3222168	total: 410ms	remaining: 154ms
218:	learn: 26.2590534	total: 412ms	remaining: 152ms
219:	learn: 26.2012713	total: 414ms	remaining: 150ms
220:	learn: 26.1663094	total: 415ms	remaining: 148ms
221:	learn: 26.1126423	total: 417ms	remaining: 147ms
222:	learn: 26.0864833	total: 419ms	remaining: 145ms
223:	learn: 26.0542856	total: 421ms	remaining: 143ms
224:	learn: 26.0126247	total: 423ms	remaining: 141ms
225:	learn: 25.9809537	total: 424ms	remaining: 139ms
226:	learn: 25.9490282	total: 426ms	remaining: 137ms
227:	learn: 25.9134622	total: 428ms	remaining: 135ms
228:	learn: 25.8527036	total: 430ms	remaining: 133ms
229:	learn: 25.8066425	total: 432ms	remaining: 131ms
230:	learn: 25.7720796	total: 434ms	remaining: 130ms
231:	learn: 25.7164417	total: 437ms	remaining: 128ms
232:	learn: 25.6880569	total: 440ms	remaining: 126ms
233:	learn: 25.6302446	total: 442ms	remaining: 125ms
234:	learn: 25.5872478	total: 446ms	remaining: 123ms
235:	learn: 25.5700163	total: 449ms	remaining: 122ms
236:	learn: 25.5123262	total: 453ms	remaining: 120ms
237:	learn: 25.4789989	total: 455ms	remaining: 119ms
238:	learn: 25.4275461	total: 457ms	remaining: 117ms
239:	learn: 25.3920584	total: 461ms	remaining: 115ms
240:	learn: 25.3347766	total: 463ms	remaining: 113ms
241:	learn: 25.3086652	total: 465ms	remaining: 112ms
242:	learn: 25.2950007	total: 467ms	remaining: 110ms
243:	learn: 25.2621794	total: 469ms	remaining: 108ms
244:	learn: 25.2456596	total: 471ms	remaining: 106ms
245:	learn: 25.1988578	total: 473ms	remaining: 104ms
246:	learn: 25.1451425	total: 475ms	remaining: 102ms
247:	learn: 25.1034817	total: 477ms	remaining: 100ms
248:	learn: 25.0604438	total: 479ms	remaining: 98.1ms
249:	learn: 25.0330185	total: 481ms	remaining: 96.2ms
250:	learn: 24.9921584	total: 484ms	remaining: 94.4ms
251:	learn: 24.9712889	total: 486ms	remaining: 92.5ms
252:	learn: 24.9577581	total: 488ms	remaining: 90.6ms
253:	learn: 24.9151686	total: 490ms	remaining: 88.7ms
254:	learn: 24.8772301	total: 492ms	remaining: 86.8ms
255:	learn: 24.8574403	total: 494ms	remaining: 84.9ms
256:	learn: 24.8251919	total: 496ms	remaining: 83.1ms
257:	learn: 24.8084011	total: 499ms	remaining: 81.2ms
258:	learn: 24.7530560	total: 501ms	remaining: 79.3ms
259:	learn: 24.7334451	total: 503ms	remaining: 77.4ms
260:	learn: 24.7042894	total: 505ms	remaining: 75.5ms
261:	learn: 24.6921083	total: 507ms	remaining: 73.5ms
262:	learn: 24.6576527	total: 509ms	remaining: 71.6ms
263:	learn: 24.6137766	total: 511ms	remaining: 69.6ms
264:	learn: 24.5924478	total: 513ms	remaining: 67.7ms
265:	learn: 24.5779194	total: 515ms	remaining: 65.8ms
266:	learn: 24.5619442	total: 517ms	remaining: 63.9ms
267:	learn: 24.5205212	total: 519ms	remaining: 62ms
268:	learn: 24.4986837	total: 521ms	remaining: 60ms
269:	learn: 24.4670566	total: 523ms	remaining: 58.1ms
270:	learn: 24.4429993	total: 525ms	remaining: 56.1ms
271:	learn: 24.4147988	total: 527ms	remaining: 54.2ms
272:	learn: 24.3864204	total: 528ms	remaining: 52.3ms
273:	learn: 24.3460285	total: 530ms	remaining: 50.3ms
274:	learn: 24.3213876	total: 532ms	remaining: 48.4ms
275:	learn: 24.3020446	total: 534ms	remaining: 46.4ms
276:	learn: 24.2891819	total: 535ms	remaining: 44.5ms
277:	learn: 24.2565439	total: 537ms	remaining: 42.5ms
278:	learn: 24.2427798	total: 539ms	remaining: 40.5ms
279:	learn: 24.2143497	total: 540ms	remaining: 38.6ms
280:	learn: 24.1963193	total: 542ms	remaining: 36.6ms
281:	learn: 24.1523840	total: 544ms	remaining: 34.7ms
282:	learn: 24.1368294	total: 545ms	remaining: 32.8ms
283:	learn: 24.1011272	total: 547ms	remaining: 30.8ms
284:	learn: 24.0608022	total: 549ms	remaining: 28.9ms
285:	learn: 24.0372181	total: 550ms	remaining: 26.9ms
286:	learn: 24.0248565	total: 552ms	remaining: 25ms
287:	learn: 24.0126120	total: 553ms	remaining: 23.1ms
288:	learn: 23.9812062	total: 555ms	remaining: 21.1ms
289:	learn: 23.9651260	total: 557ms	remaining: 19.2ms
290:	learn: 23.9400298	total: 558ms	remaining: 17.3ms
291:	learn: 23.9295523	total: 560ms	remaining: 15.3ms
292:	learn: 23.9102905	total: 562ms	remaining: 13.4ms
293:	learn: 23.8843705	total: 563ms	remaining: 11.5ms
294:	learn: 23.8596235	total: 565ms	remaining: 9.57ms
295:	learn: 23.8328176	total: 566ms	remaining: 7.66ms
296:	learn: 23.7800948	total: 568ms	remaining: 5.74ms
297:	learn: 23.7568958	total: 570ms	remaining: 3.82ms
298:	learn: 23.7334216	total: 571ms	remaining: 1.91ms
299:	learn: 23.7188754	total: 573ms	remaining: 0us
0:	learn: 27.6242191	total: 31.7ms	remaining: 9.47s
1:	learn: 27.3247973	total: 56.1ms	remaining: 8.35s
2:	learn: 26.9048262	total: 79.6ms	remaining: 7.88s
3:	learn: 26.6094870	total: 103ms	remaining: 7.59s
4:	learn: 26.2335903	total: 126ms	remaining: 7.46s
5:	learn: 25.9065752	total: 150ms	remaining: 7.33s
6:	learn: 25.6303453	total: 174ms	remaining: 7.28s
7:	learn: 25.2422673	total: 199ms	remaining: 7.26s
8:	learn: 24.9092185	total: 223ms	remaining: 7.21s
9:	learn: 24.6380278	total: 249ms	remaining: 7.21s
10:	learn: 24.2990126	total: 276ms	remaining: 7.25s
11:	learn: 24.0194492	total: 308ms	remaining: 7.39s
12:	learn: 23.7720807	total: 338ms	remaining: 7.47s
13:	learn: 23.4419462	total: 365ms	remaining: 7.46s
14:	learn: 23.2366857	total: 390ms	remaining: 7.42s
15:	learn: 22.9901263	total: 394ms	remaining: 6.99s
16:	learn: 22.7775050	total: 419ms	remaining: 6.97s
17:	learn: 22.5290799	total: 443ms	remaining: 6.94s
18:	learn: 22.2427201	total: 468ms	remaining: 6.92s
19:	learn: 21.9766361	total: 493ms	remaining: 6.89s
20:	learn: 21.7608475	total: 517ms	remaining: 6.87s
21:	learn: 21.5756818	total: 552ms	remaining: 6.97s
22:	learn: 21.3753018	total: 576ms	remaining: 6.93s
23:	learn: 21.1715384	total: 600ms	remaining: 6.9s
24:	learn: 20.9557317	total: 623ms	remaining: 6.86s
25:	learn: 20.7653390	total: 647ms	remaining: 6.82s
26:	learn: 20.5688623	total: 671ms	remaining: 6.78s
27:	learn: 20.3753201	total: 695ms	remaining: 6.75s
28:	learn: 20.2087140	total: 720ms	remaining: 6.72s
29:	learn: 20.0437127	total: 754ms	remaining: 6.79s
30:	learn: 19.7939404	total: 782ms	remaining: 6.79s
31:	learn: 19.6135511	total: 808ms	remaining: 6.76s
32:	learn: 19.4223949	total: 832ms	remaining: 6.73s
33:	learn: 19.3099062	total: 857ms	remaining: 6.71s
34:	learn: 19.1471296	total: 880ms	remaining: 6.67s
35:	learn: 18.9602406	total: 905ms	remaining: 6.63s
36:	learn: 18.8463205	total: 928ms	remaining: 6.6s
37:	learn: 18.5993654	total: 954ms	remaining: 6.58s
38:	learn: 18.4547850	total: 983ms	remaining: 6.58s
39:	learn: 18.3265698	total: 1.01s	remaining: 6.54s
40:	learn: 18.1552052	total: 1.03s	remaining: 6.52s
41:	learn: 17.9969729	total: 1.06s	remaining: 6.49s
42:	learn: 17.8420506	total: 1.08s	remaining: 6.46s
43:	learn: 17.7314471	total: 1.1s	remaining: 6.42s
44:	learn: 17.6037885	total: 1.13s	remaining: 6.39s
45:	learn: 17.4911598	total: 1.16s	remaining: 6.38s
46:	learn: 17.3334650	total: 1.2s	remaining: 6.44s
47:	learn: 17.1964435	total: 1.22s	remaining: 6.43s
48:	learn: 17.0705369	total: 1.25s	remaining: 6.41s
49:	learn: 16.9282293	total: 1.28s	remaining: 6.39s
50:	learn: 16.7996947	total: 1.3s	remaining: 6.37s
51:	learn: 16.6978905	total: 1.33s	remaining: 6.35s
52:	learn: 16.5793323	total: 1.36s	remaining: 6.32s
53:	learn: 16.4770669	total: 1.38s	remaining: 6.29s
54:	learn: 16.3655624	total: 1.41s	remaining: 6.3s
55:	learn: 16.2604369	total: 1.44s	remaining: 6.27s
56:	learn: 16.1431440	total: 1.46s	remaining: 6.25s
57:	learn: 16.0326605	total: 1.49s	remaining: 6.22s
58:	learn: 15.9323014	total: 1.51s	remaining: 6.19s
59:	learn: 15.8025601	total: 1.54s	remaining: 6.16s
60:	learn: 15.6963178	total: 1.56s	remaining: 6.13s
61:	learn: 15.6270773	total: 1.59s	remaining: 6.11s
62:	learn: 15.5313112	total: 1.62s	remaining: 6.1s
63:	learn: 15.4399515	total: 1.65s	remaining: 6.09s
64:	learn: 15.3597117	total: 1.68s	remaining: 6.06s
65:	learn: 15.2697176	total: 1.7s	remaining: 6.04s
66:	learn: 15.1828907	total: 1.73s	remaining: 6.01s
67:	learn: 15.0961490	total: 1.75s	remaining: 5.99s
68:	learn: 15.0128613	total: 1.78s	remaining: 5.95s
69:	learn: 14.9098281	total: 1.8s	remaining: 5.93s
70:	learn: 14.8290802	total: 1.83s	remaining: 5.9s
71:	learn: 14.7354294	total: 1.85s	remaining: 5.87s
72:	learn: 14.6593235	total: 1.89s	remaining: 5.87s
73:	learn: 14.5723402	total: 1.91s	remaining: 5.84s
74:	learn: 14.4986819	total: 1.94s	remaining: 5.82s
75:	learn: 14.4087447	total: 1.96s	remaining: 5.79s
76:	learn: 14.3357763	total: 1.99s	remaining: 5.76s
77:	learn: 14.2423286	total: 2.01s	remaining: 5.73s
78:	learn: 14.1791552	total: 2.04s	remaining: 5.7s
79:	learn: 14.0970307	total: 2.07s	remaining: 5.69s
80:	learn: 14.0336692	total: 2.1s	remaining: 5.68s
81:	learn: 13.9758100	total: 2.13s	remaining: 5.65s
82:	learn: 13.9111969	total: 2.15s	remaining: 5.63s
83:	learn: 13.8350945	total: 2.18s	remaining: 5.61s
84:	learn: 13.7593569	total: 2.21s	remaining: 5.58s
85:	learn: 13.6953120	total: 2.23s	remaining: 5.55s
86:	learn: 13.6352452	total: 2.25s	remaining: 5.52s
87:	learn: 13.5794275	total: 2.28s	remaining: 5.5s
88:	learn: 13.4880894	total: 2.31s	remaining: 5.48s
89:	learn: 13.4305792	total: 2.34s	remaining: 5.45s
90:	learn: 13.3569291	total: 2.36s	remaining: 5.42s
91:	learn: 13.2958628	total: 2.38s	remaining: 5.39s
92:	learn: 13.2338079	total: 2.41s	remaining: 5.36s
93:	learn: 13.1821114	total: 2.43s	remaining: 5.33s
94:	learn: 13.1082697	total: 2.46s	remaining: 5.3s
95:	learn: 13.0475619	total: 2.48s	remaining: 5.27s
96:	learn: 12.9878324	total: 2.51s	remaining: 5.26s
97:	learn: 12.9294785	total: 2.54s	remaining: 5.23s
98:	learn: 12.8646231	total: 2.56s	remaining: 5.21s
99:	learn: 12.8003027	total: 2.59s	remaining: 5.18s
100:	learn: 12.6741024	total: 2.61s	remaining: 5.15s
101:	learn: 12.5871778	total: 2.64s	remaining: 5.12s
102:	learn: 12.5199785	total: 2.66s	remaining: 5.09s
103:	learn: 12.4533348	total: 2.69s	remaining: 5.06s
104:	learn: 12.4014303	total: 2.71s	remaining: 5.04s
105:	learn: 12.3404648	total: 2.74s	remaining: 5.02s
106:	learn: 12.2853908	total: 2.77s	remaining: 4.99s
107:	learn: 12.2113131	total: 2.79s	remaining: 4.96s
108:	learn: 12.1443818	total: 2.82s	remaining: 4.93s
109:	learn: 12.0782972	total: 2.84s	remaining: 4.91s
110:	learn: 12.0242888	total: 2.86s	remaining: 4.88s
111:	learn: 11.9606186	total: 2.89s	remaining: 4.85s
112:	learn: 11.8840123	total: 2.91s	remaining: 4.82s
113:	learn: 11.8362234	total: 2.94s	remaining: 4.8s
114:	learn: 11.7798600	total: 2.97s	remaining: 4.78s
115:	learn: 11.7205583	total: 2.99s	remaining: 4.75s
116:	learn: 11.6703154	total: 3.02s	remaining: 4.72s
117:	learn: 11.5906207	total: 3.04s	remaining: 4.7s
118:	learn: 11.5392300	total: 3.07s	remaining: 4.67s
119:	learn: 11.5009891	total: 3.09s	remaining: 4.64s
120:	learn: 11.4496613	total: 3.12s	remaining: 4.61s
121:	learn: 11.3880593	total: 3.14s	remaining: 4.58s
122:	learn: 11.3343840	total: 3.17s	remaining: 4.56s
123:	learn: 11.2903777	total: 3.2s	remaining: 4.54s
124:	learn: 11.2226066	total: 3.22s	remaining: 4.51s
125:	learn: 11.1756503	total: 3.25s	remaining: 4.48s
126:	learn: 11.1266674	total: 3.27s	remaining: 4.46s
127:	learn: 11.0542744	total: 3.3s	remaining: 4.43s
128:	learn: 11.0132226	total: 3.32s	remaining: 4.4s
129:	learn: 10.9545179	total: 3.35s	remaining: 4.38s
130:	learn: 10.9167977	total: 3.37s	remaining: 4.35s
131:	learn: 10.8607094	total: 3.41s	remaining: 4.33s
132:	learn: 10.8081246	total: 3.44s	remaining: 4.31s
133:	learn: 10.7595004	total: 3.46s	remaining: 4.29s
134:	learn: 10.6949228	total: 3.49s	remaining: 4.27s
135:	learn: 10.6549608	total: 3.52s	remaining: 4.24s
136:	learn: 10.6085016	total: 3.54s	remaining: 4.21s
137:	learn: 10.5530774	total: 3.56s	remaining: 4.18s
138:	learn: 10.5146132	total: 3.59s	remaining: 4.16s
139:	learn: 10.4804263	total: 3.62s	remaining: 4.14s
140:	learn: 10.4469935	total: 3.65s	remaining: 4.11s
141:	learn: 10.4083597	total: 3.67s	remaining: 4.08s
142:	learn: 10.3700272	total: 3.7s	remaining: 4.06s
143:	learn: 10.3240531	total: 3.72s	remaining: 4.03s
144:	learn: 10.2838387	total: 3.74s	remaining: 4s
145:	learn: 10.2237396	total: 3.77s	remaining: 3.98s
146:	learn: 10.1677493	total: 3.79s	remaining: 3.95s
147:	learn: 10.1289528	total: 3.82s	remaining: 3.92s
148:	learn: 10.0918869	total: 3.85s	remaining: 3.91s
149:	learn: 10.0599014	total: 3.88s	remaining: 3.88s
150:	learn: 9.9817438	total: 3.91s	remaining: 3.86s
151:	learn: 9.9410469	total: 3.94s	remaining: 3.84s
152:	learn: 9.8790383	total: 3.97s	remaining: 3.81s
153:	learn: 9.8489714	total: 4s	remaining: 3.79s
154:	learn: 9.8192539	total: 4.03s	remaining: 3.77s
155:	learn: 9.7595292	total: 4.06s	remaining: 3.75s
156:	learn: 9.7305132	total: 4.09s	remaining: 3.73s
157:	learn: 9.6946431	total: 4.12s	remaining: 3.7s
158:	learn: 9.6382391	total: 4.14s	remaining: 3.67s
159:	learn: 9.5932080	total: 4.17s	remaining: 3.65s
160:	learn: 9.5528662	total: 4.2s	remaining: 3.62s
161:	learn: 9.5112954	total: 4.22s	remaining: 3.6s
162:	learn: 9.4782229	total: 4.25s	remaining: 3.57s
163:	learn: 9.4469139	total: 4.28s	remaining: 3.55s
164:	learn: 9.4073553	total: 4.31s	remaining: 3.52s
165:	learn: 9.3658459	total: 4.33s	remaining: 3.5s
166:	learn: 9.3331509	total: 4.36s	remaining: 3.47s
167:	learn: 9.3022193	total: 4.38s	remaining: 3.45s
168:	learn: 9.2687355	total: 4.41s	remaining: 3.42s
169:	learn: 9.2347395	total: 4.44s	remaining: 3.39s
170:	learn: 9.1946963	total: 4.46s	remaining: 3.37s
171:	learn: 9.1669467	total: 4.49s	remaining: 3.34s
172:	learn: 9.1174548	total: 4.52s	remaining: 3.32s
173:	learn: 9.0578865	total: 4.55s	remaining: 3.29s
174:	learn: 9.0242697	total: 4.57s	remaining: 3.27s
175:	learn: 8.9812385	total: 4.6s	remaining: 3.24s
176:	learn: 8.9394173	total: 4.62s	remaining: 3.21s
177:	learn: 8.8954630	total: 4.65s	remaining: 3.19s
178:	learn: 8.8650625	total: 4.67s	remaining: 3.16s
179:	learn: 8.8128518	total: 4.7s	remaining: 3.14s
180:	learn: 8.7713941	total: 4.73s	remaining: 3.11s
181:	learn: 8.7271373	total: 4.76s	remaining: 3.09s
182:	learn: 8.6827020	total: 4.79s	remaining: 3.06s
183:	learn: 8.6411197	total: 4.81s	remaining: 3.03s
184:	learn: 8.6161231	total: 4.84s	remaining: 3.01s
185:	learn: 8.5812975	total: 4.86s	remaining: 2.98s
186:	learn: 8.5494363	total: 4.89s	remaining: 2.95s
187:	learn: 8.5121894	total: 4.92s	remaining: 2.93s
188:	learn: 8.4769543	total: 4.95s	remaining: 2.9s
189:	learn: 8.4285766	total: 4.97s	remaining: 2.88s
190:	learn: 8.4032474	total: 4.99s	remaining: 2.85s
191:	learn: 8.3791298	total: 5.02s	remaining: 2.82s
192:	learn: 8.3494894	total: 5.04s	remaining: 2.8s
193:	learn: 8.3153327	total: 5.07s	remaining: 2.77s
194:	learn: 8.2823004	total: 5.09s	remaining: 2.74s
195:	learn: 8.2449482	total: 5.13s	remaining: 2.72s
196:	learn: 8.2013567	total: 5.16s	remaining: 2.7s
197:	learn: 8.1697337	total: 5.19s	remaining: 2.67s
198:	learn: 8.1265833	total: 5.21s	remaining: 2.65s
199:	learn: 8.0905433	total: 5.24s	remaining: 2.62s
200:	learn: 8.0669552	total: 5.26s	remaining: 2.59s
201:	learn: 8.0258330	total: 5.29s	remaining: 2.56s
202:	learn: 8.0026168	total: 5.32s	remaining: 2.54s
203:	learn: 7.9482286	total: 5.35s	remaining: 2.52s
204:	learn: 7.9105233	total: 5.37s	remaining: 2.49s
205:	learn: 7.8966891	total: 5.4s	remaining: 2.46s
206:	learn: 7.8575063	total: 5.42s	remaining: 2.44s
207:	learn: 7.8147335	total: 5.45s	remaining: 2.41s
208:	learn: 7.7917140	total: 5.47s	remaining: 2.38s
209:	learn: 7.7607147	total: 5.5s	remaining: 2.36s
210:	learn: 7.7425727	total: 5.52s	remaining: 2.33s
211:	learn: 7.7238288	total: 5.55s	remaining: 2.3s
212:	learn: 7.6985896	total: 5.59s	remaining: 2.28s
213:	learn: 7.6752745	total: 5.61s	remaining: 2.25s
214:	learn: 7.6442259	total: 5.64s	remaining: 2.23s
215:	learn: 7.6325331	total: 5.67s	remaining: 2.2s
216:	learn: 7.6063316	total: 5.69s	remaining: 2.18s
217:	learn: 7.5831832	total: 5.72s	remaining: 2.15s
218:	learn: 7.5672234	total: 5.74s	remaining: 2.12s
219:	learn: 7.5331936	total: 5.77s	remaining: 2.1s
220:	learn: 7.4920831	total: 5.79s	remaining: 2.07s
221:	learn: 7.4737554	total: 5.83s	remaining: 2.05s
222:	learn: 7.4270074	total: 5.85s	remaining: 2.02s
223:	learn: 7.4017600	total: 5.88s	remaining: 1.99s
224:	learn: 7.3806959	total: 5.9s	remaining: 1.97s
225:	learn: 7.3554017	total: 5.92s	remaining: 1.94s
226:	learn: 7.3409799	total: 5.95s	remaining: 1.91s
227:	learn: 7.3212923	total: 5.98s	remaining: 1.89s
228:	learn: 7.3105787	total: 6s	remaining: 1.86s
229:	learn: 7.2892883	total: 6.04s	remaining: 1.84s
230:	learn: 7.2744332	total: 6.06s	remaining: 1.81s
231:	learn: 7.2520263	total: 6.09s	remaining: 1.78s
232:	learn: 7.2282060	total: 6.12s	remaining: 1.76s
233:	learn: 7.2079652	total: 6.14s	remaining: 1.73s
234:	learn: 7.1916393	total: 6.17s	remaining: 1.71s
235:	learn: 7.1701919	total: 6.19s	remaining: 1.68s
236:	learn: 7.1568798	total: 6.22s	remaining: 1.65s
237:	learn: 7.1311171	total: 6.25s	remaining: 1.63s
238:	learn: 7.1241442	total: 6.28s	remaining: 1.6s
239:	learn: 7.1023502	total: 6.31s	remaining: 1.58s
240:	learn: 7.0871109	total: 6.33s	remaining: 1.55s
241:	learn: 7.0717340	total: 6.36s	remaining: 1.52s
242:	learn: 7.0574975	total: 6.38s	remaining: 1.5s
243:	learn: 7.0489270	total: 6.4s	remaining: 1.47s
244:	learn: 7.0279173	total: 6.43s	remaining: 1.44s
245:	learn: 6.9967234	total: 6.45s	remaining: 1.42s
246:	learn: 6.9827176	total: 6.49s	remaining: 1.39s
247:	learn: 6.9632381	total: 6.51s	remaining: 1.36s
248:	learn: 6.9490747	total: 6.54s	remaining: 1.34s
249:	learn: 6.9350226	total: 6.56s	remaining: 1.31s
250:	learn: 6.9203338	total: 6.59s	remaining: 1.28s
251:	learn: 6.9078713	total: 6.61s	remaining: 1.26s
252:	learn: 6.8997471	total: 6.63s	remaining: 1.23s
253:	learn: 6.8786784	total: 6.66s	remaining: 1.21s
254:	learn: 6.8629866	total: 6.69s	remaining: 1.18s
255:	learn: 6.8497530	total: 6.72s	remaining: 1.16s
256:	learn: 6.8363263	total: 6.75s	remaining: 1.13s
257:	learn: 6.8232778	total: 6.78s	remaining: 1.1s
258:	learn: 6.7952234	total: 6.8s	remaining: 1.08s
259:	learn: 6.7671952	total: 6.82s	remaining: 1.05s
260:	learn: 6.7545126	total: 6.85s	remaining: 1.02s
261:	learn: 6.7414039	total: 6.87s	remaining: 997ms
262:	learn: 6.7307423	total: 6.9s	remaining: 970ms
263:	learn: 6.6887074	total: 6.92s	remaining: 944ms
264:	learn: 6.6786482	total: 6.96s	remaining: 919ms
265:	learn: 6.6520387	total: 6.99s	remaining: 893ms
266:	learn: 6.6371511	total: 7.01s	remaining: 866ms
267:	learn: 6.6139304	total: 7.04s	remaining: 840ms
268:	learn: 6.6024854	total: 7.06s	remaining: 813ms
269:	learn: 6.5811216	total: 7.08s	remaining: 787ms
270:	learn: 6.5396874	total: 7.11s	remaining: 761ms
271:	learn: 6.5260569	total: 7.14s	remaining: 735ms
272:	learn: 6.5161555	total: 7.16s	remaining: 708ms
273:	learn: 6.5055568	total: 7.18s	remaining: 682ms
274:	learn: 6.4955852	total: 7.21s	remaining: 655ms
275:	learn: 6.4768059	total: 7.23s	remaining: 629ms
276:	learn: 6.4526678	total: 7.26s	remaining: 603ms
277:	learn: 6.4407932	total: 7.28s	remaining: 576ms
278:	learn: 6.4229786	total: 7.3s	remaining: 550ms
279:	learn: 6.4143528	total: 7.33s	remaining: 524ms
280:	learn: 6.3939760	total: 7.36s	remaining: 498ms
281:	learn: 6.3821368	total: 7.38s	remaining: 471ms
282:	learn: 6.3733999	total: 7.41s	remaining: 445ms
283:	learn: 6.3506155	total: 7.43s	remaining: 419ms
284:	learn: 6.3456374	total: 7.46s	remaining: 393ms
285:	learn: 6.3423150	total: 7.48s	remaining: 366ms
286:	learn: 6.3323118	total: 7.51s	remaining: 340ms
287:	learn: 6.3209916	total: 7.53s	remaining: 314ms
288:	learn: 6.3017754	total: 7.55s	remaining: 288ms
289:	learn: 6.2738210	total: 7.59s	remaining: 262ms
290:	learn: 6.2684358	total: 7.61s	remaining: 235ms
291:	learn: 6.2546793	total: 7.63s	remaining: 209ms
292:	learn: 6.2441498	total: 7.66s	remaining: 183ms
293:	learn: 6.2406001	total: 7.68s	remaining: 157ms
294:	learn: 6.2308638	total: 7.71s	remaining: 131ms
295:	learn: 6.2166524	total: 7.73s	remaining: 104ms
296:	learn: 6.2029239	total: 7.75s	remaining: 78.3ms
297:	learn: 6.1930984	total: 7.78s	remaining: 52.2ms
298:	learn: 6.1787666	total: 7.81s	remaining: 26.1ms
299:	learn: 6.1715886	total: 7.84s	remaining: 0us
0:	learn: 43.0189040	total: 23.6ms	remaining: 7.05s
1:	learn: 42.1913120	total: 47.9ms	remaining: 7.14s
2:	learn: 41.2381785	total: 71.2ms	remaining: 7.04s
3:	learn: 40.3733911	total: 112ms	remaining: 8.28s
4:	learn: 39.7420433	total: 144ms	remaining: 8.47s
5:	learn: 38.9384932	total: 171ms	remaining: 8.37s
6:	learn: 38.2027180	total: 198ms	remaining: 8.27s
7:	learn: 37.5736018	total: 224ms	remaining: 8.17s
8:	learn: 36.9042368	total: 250ms	remaining: 8.1s
9:	learn: 36.1138721	total: 277ms	remaining: 8.04s
10:	learn: 35.4444268	total: 280ms	remaining: 7.36s
11:	learn: 34.7889997	total: 294ms	remaining: 7.05s
12:	learn: 34.3622266	total: 321ms	remaining: 7.1s
13:	learn: 33.6999120	total: 359ms	remaining: 7.34s
14:	learn: 32.9955576	total: 396ms	remaining: 7.53s
15:	learn: 32.3475617	total: 424ms	remaining: 7.52s
16:	learn: 31.9028750	total: 451ms	remaining: 7.51s
17:	learn: 31.3786390	total: 477ms	remaining: 7.47s
18:	learn: 30.9731314	total: 504ms	remaining: 7.46s
19:	learn: 30.5397110	total: 532ms	remaining: 7.45s
20:	learn: 30.0650165	total: 563ms	remaining: 7.48s
21:	learn: 29.4732599	total: 592ms	remaining: 7.48s
22:	learn: 29.0746185	total: 627ms	remaining: 7.55s
23:	learn: 28.5839328	total: 653ms	remaining: 7.51s
24:	learn: 28.2894974	total: 680ms	remaining: 7.48s
25:	learn: 27.7954367	total: 707ms	remaining: 7.45s
26:	learn: 27.3542996	total: 734ms	remaining: 7.42s
27:	learn: 27.0838564	total: 763ms	remaining: 7.41s
28:	learn: 26.7019509	total: 799ms	remaining: 7.46s
29:	learn: 26.3607640	total: 827ms	remaining: 7.44s
30:	learn: 25.9174899	total: 863ms	remaining: 7.48s
31:	learn: 25.5590328	total: 891ms	remaining: 7.46s
32:	learn: 25.1682834	total: 918ms	remaining: 7.42s
33:	learn: 24.8123558	total: 945ms	remaining: 7.39s
34:	learn: 24.5841473	total: 972ms	remaining: 7.36s
35:	learn: 24.2224307	total: 1s	remaining: 7.35s
36:	learn: 23.9745715	total: 1.03s	remaining: 7.36s
37:	learn: 23.6958493	total: 1.06s	remaining: 7.31s
38:	learn: 23.3890143	total: 1.09s	remaining: 7.32s
39:	learn: 23.1113968	total: 1.12s	remaining: 7.28s
40:	learn: 22.8519880	total: 1.15s	remaining: 7.24s
41:	learn: 22.5944697	total: 1.17s	remaining: 7.21s
42:	learn: 22.3853418	total: 1.2s	remaining: 7.18s
43:	learn: 22.1827007	total: 1.23s	remaining: 7.16s
44:	learn: 22.0186852	total: 1.27s	remaining: 7.18s
45:	learn: 21.7686773	total: 1.29s	remaining: 7.15s
46:	learn: 21.5978489	total: 1.32s	remaining: 7.12s
47:	learn: 21.3542004	total: 1.36s	remaining: 7.14s
48:	learn: 21.1752073	total: 1.39s	remaining: 7.1s
49:	learn: 21.0415246	total: 1.41s	remaining: 7.06s
50:	learn: 20.8441081	total: 1.44s	remaining: 7.03s
51:	learn: 20.5918001	total: 1.47s	remaining: 7.03s
52:	learn: 20.4441208	total: 1.5s	remaining: 7s
53:	learn: 20.2679633	total: 1.53s	remaining: 6.97s
54:	learn: 20.1163092	total: 1.56s	remaining: 6.93s
55:	learn: 19.9714704	total: 1.59s	remaining: 6.92s
56:	learn: 19.8249765	total: 1.61s	remaining: 6.88s
57:	learn: 19.6607355	total: 1.64s	remaining: 6.85s
58:	learn: 19.4877956	total: 1.67s	remaining: 6.81s
59:	learn: 19.3053072	total: 1.69s	remaining: 6.78s
60:	learn: 19.1885738	total: 1.73s	remaining: 6.78s
61:	learn: 19.0346503	total: 1.76s	remaining: 6.75s
62:	learn: 18.8347986	total: 1.79s	remaining: 6.72s
63:	learn: 18.6814926	total: 1.82s	remaining: 6.72s
64:	learn: 18.5382672	total: 1.85s	remaining: 6.69s
65:	learn: 18.3895833	total: 1.88s	remaining: 6.65s
66:	learn: 18.2694672	total: 1.9s	remaining: 6.62s
67:	learn: 18.1196051	total: 1.94s	remaining: 6.61s
68:	learn: 17.9925317	total: 1.97s	remaining: 6.58s
69:	learn: 17.8749679	total: 1.99s	remaining: 6.55s
70:	learn: 17.7225935	total: 2.02s	remaining: 6.51s
71:	learn: 17.5806906	total: 2.05s	remaining: 6.48s
72:	learn: 17.4922570	total: 2.08s	remaining: 6.47s
73:	learn: 17.3984999	total: 2.1s	remaining: 6.43s
74:	learn: 17.3128227	total: 2.13s	remaining: 6.4s
75:	learn: 17.2165163	total: 2.17s	remaining: 6.39s
76:	learn: 17.0889232	total: 2.2s	remaining: 6.37s
77:	learn: 16.9583567	total: 2.23s	remaining: 6.34s
78:	learn: 16.8340539	total: 2.25s	remaining: 6.31s
79:	learn: 16.7346257	total: 2.28s	remaining: 6.27s
80:	learn: 16.6446663	total: 2.32s	remaining: 6.26s
81:	learn: 16.5218155	total: 2.34s	remaining: 6.23s
82:	learn: 16.4054583	total: 2.38s	remaining: 6.21s
83:	learn: 16.2803558	total: 2.4s	remaining: 6.18s
84:	learn: 16.1516324	total: 2.43s	remaining: 6.15s
85:	learn: 16.0643357	total: 2.46s	remaining: 6.12s
86:	learn: 15.9817265	total: 2.48s	remaining: 6.08s
87:	learn: 15.9144474	total: 2.51s	remaining: 6.05s
88:	learn: 15.8380424	total: 2.54s	remaining: 6.04s
89:	learn: 15.7453770	total: 2.57s	remaining: 6s
90:	learn: 15.6720653	total: 2.61s	remaining: 5.99s
91:	learn: 15.5626839	total: 2.64s	remaining: 5.96s
92:	learn: 15.4727375	total: 2.67s	remaining: 5.93s
93:	learn: 15.3655885	total: 2.69s	remaining: 5.9s
94:	learn: 15.2496762	total: 2.72s	remaining: 5.87s
95:	learn: 15.1773522	total: 2.75s	remaining: 5.84s
96:	learn: 15.0924366	total: 2.78s	remaining: 5.82s
97:	learn: 15.0082209	total: 2.81s	remaining: 5.8s
98:	learn: 14.9178437	total: 2.84s	remaining: 5.77s
99:	learn: 14.8149449	total: 2.87s	remaining: 5.74s
100:	learn: 14.7450303	total: 2.9s	remaining: 5.71s
101:	learn: 14.6462390	total: 2.92s	remaining: 5.67s
102:	learn: 14.5348825	total: 2.95s	remaining: 5.64s
103:	learn: 14.4483847	total: 2.98s	remaining: 5.61s
104:	learn: 14.4006573	total: 3.01s	remaining: 5.58s
105:	learn: 14.3322113	total: 3.05s	remaining: 5.58s
106:	learn: 14.2471466	total: 3.08s	remaining: 5.55s
107:	learn: 14.1788249	total: 3.1s	remaining: 5.52s
108:	learn: 14.1033594	total: 3.13s	remaining: 5.49s
109:	learn: 14.0161080	total: 3.16s	remaining: 5.46s
110:	learn: 13.9710960	total: 3.19s	remaining: 5.43s
111:	learn: 13.8941529	total: 3.22s	remaining: 5.41s
112:	learn: 13.8246456	total: 3.25s	remaining: 5.38s
113:	learn: 13.7518933	total: 3.28s	remaining: 5.36s
114:	learn: 13.7003709	total: 3.31s	remaining: 5.32s
115:	learn: 13.6359576	total: 3.33s	remaining: 5.29s
116:	learn: 13.6039211	total: 3.36s	remaining: 5.26s
117:	learn: 13.5361545	total: 3.39s	remaining: 5.22s
118:	learn: 13.4554429	total: 3.42s	remaining: 5.2s
119:	learn: 13.3922439	total: 3.45s	remaining: 5.17s
120:	learn: 13.2895862	total: 3.48s	remaining: 5.14s
121:	learn: 13.1749097	total: 3.51s	remaining: 5.12s
122:	learn: 13.1167631	total: 3.54s	remaining: 5.09s
123:	learn: 13.0410984	total: 3.57s	remaining: 5.06s
124:	learn: 12.9506234	total: 3.59s	remaining: 5.03s
125:	learn: 12.8890045	total: 3.62s	remaining: 5s
126:	learn: 12.8295606	total: 3.65s	remaining: 4.97s
127:	learn: 12.7634290	total: 3.69s	remaining: 4.95s
128:	learn: 12.6891923	total: 3.71s	remaining: 4.92s
129:	learn: 12.6312306	total: 3.75s	remaining: 4.9s
130:	learn: 12.5802486	total: 3.77s	remaining: 4.87s
131:	learn: 12.5246529	total: 3.8s	remaining: 4.83s
132:	learn: 12.4479017	total: 3.83s	remaining: 4.8s
133:	learn: 12.3930818	total: 3.86s	remaining: 4.78s
134:	learn: 12.3373247	total: 3.89s	remaining: 4.76s
135:	learn: 12.3039291	total: 3.92s	remaining: 4.73s
136:	learn: 12.2583784	total: 3.95s	remaining: 4.7s
137:	learn: 12.1902920	total: 3.98s	remaining: 4.67s
138:	learn: 12.1515651	total: 4.01s	remaining: 4.65s
139:	learn: 12.1008468	total: 4.04s	remaining: 4.62s
140:	learn: 12.0752080	total: 4.07s	remaining: 4.59s
141:	learn: 12.0263787	total: 4.1s	remaining: 4.56s
142:	learn: 11.9709736	total: 4.13s	remaining: 4.53s
143:	learn: 11.9295822	total: 4.16s	remaining: 4.5s
144:	learn: 11.8867911	total: 4.18s	remaining: 4.47s
145:	learn: 11.8179180	total: 4.21s	remaining: 4.44s
146:	learn: 11.7448446	total: 4.24s	remaining: 4.42s
147:	learn: 11.7332909	total: 4.27s	remaining: 4.39s
148:	learn: 11.6907270	total: 4.31s	remaining: 4.36s
149:	learn: 11.6628056	total: 4.33s	remaining: 4.33s
150:	learn: 11.6039432	total: 4.36s	remaining: 4.3s
151:	learn: 11.5752331	total: 4.39s	remaining: 4.27s
152:	learn: 11.5376476	total: 4.42s	remaining: 4.24s
153:	learn: 11.4947632	total: 4.45s	remaining: 4.21s
154:	learn: 11.4484147	total: 4.48s	remaining: 4.19s
155:	learn: 11.3925819	total: 4.52s	remaining: 4.17s
156:	learn: 11.3287384	total: 4.54s	remaining: 4.14s
157:	learn: 11.2566623	total: 4.57s	remaining: 4.11s
158:	learn: 11.2000227	total: 4.6s	remaining: 4.08s
159:	learn: 11.1023408	total: 4.63s	remaining: 4.05s
160:	learn: 11.0489770	total: 4.65s	remaining: 4.02s
161:	learn: 11.0026542	total: 4.68s	remaining: 3.99s
162:	learn: 10.9309626	total: 4.71s	remaining: 3.96s
163:	learn: 10.8844157	total: 4.74s	remaining: 3.93s
164:	learn: 10.8292008	total: 4.78s	remaining: 3.91s
165:	learn: 10.7365612	total: 4.81s	remaining: 3.88s
166:	learn: 10.6948804	total: 4.83s	remaining: 3.85s
167:	learn: 10.6566665	total: 4.86s	remaining: 3.82s
168:	learn: 10.6219222	total: 4.89s	remaining: 3.79s
169:	learn: 10.5930877	total: 4.92s	remaining: 3.76s
170:	learn: 10.5520362	total: 4.94s	remaining: 3.73s
171:	learn: 10.5160879	total: 4.98s	remaining: 3.71s
172:	learn: 10.4653972	total: 5.01s	remaining: 3.68s
173:	learn: 10.4164242	total: 5.04s	remaining: 3.65s
174:	learn: 10.3821629	total: 5.07s	remaining: 3.62s
175:	learn: 10.3623975	total: 5.09s	remaining: 3.59s
176:	learn: 10.3095845	total: 5.12s	remaining: 3.56s
177:	learn: 10.2501576	total: 5.15s	remaining: 3.53s
178:	learn: 10.2276060	total: 5.17s	remaining: 3.5s
179:	learn: 10.2052696	total: 5.21s	remaining: 3.47s
180:	learn: 10.1685156	total: 5.25s	remaining: 3.45s
181:	learn: 10.1443775	total: 5.27s	remaining: 3.42s
182:	learn: 10.0531518	total: 5.3s	remaining: 3.39s
183:	learn: 10.0052361	total: 5.33s	remaining: 3.36s
184:	learn: 9.9598299	total: 5.36s	remaining: 3.33s
185:	learn: 9.9062881	total: 5.38s	remaining: 3.3s
186:	learn: 9.8476621	total: 5.41s	remaining: 3.27s
187:	learn: 9.7943755	total: 5.45s	remaining: 3.25s
188:	learn: 9.7545158	total: 5.48s	remaining: 3.22s
189:	learn: 9.7325928	total: 5.51s	remaining: 3.19s
190:	learn: 9.6597076	total: 5.53s	remaining: 3.16s
191:	learn: 9.6049808	total: 5.56s	remaining: 3.13s
192:	learn: 9.5210539	total: 5.59s	remaining: 3.1s
193:	learn: 9.4839833	total: 5.61s	remaining: 3.07s
194:	learn: 9.4030810	total: 5.64s	remaining: 3.04s
195:	learn: 9.3610011	total: 5.69s	remaining: 3.02s
196:	learn: 9.3194779	total: 5.71s	remaining: 2.99s
197:	learn: 9.2866867	total: 5.74s	remaining: 2.96s
198:	learn: 9.2508142	total: 5.77s	remaining: 2.93s
199:	learn: 9.2271576	total: 5.8s	remaining: 2.9s
200:	learn: 9.1740668	total: 5.82s	remaining: 2.87s
201:	learn: 9.1586477	total: 5.85s	remaining: 2.84s
202:	learn: 9.1429015	total: 5.88s	remaining: 2.81s
203:	learn: 9.1133248	total: 5.91s	remaining: 2.78s
204:	learn: 9.0711331	total: 5.95s	remaining: 2.75s
205:	learn: 9.0093562	total: 5.97s	remaining: 2.73s
206:	learn: 8.9859881	total: 6s	remaining: 2.69s
207:	learn: 8.9419294	total: 6.03s	remaining: 2.67s
208:	learn: 8.8732493	total: 6.05s	remaining: 2.64s
209:	learn: 8.8186181	total: 6.08s	remaining: 2.61s
210:	learn: 8.7860222	total: 6.12s	remaining: 2.58s
211:	learn: 8.7597312	total: 6.15s	remaining: 2.55s
212:	learn: 8.7305431	total: 6.19s	remaining: 2.53s
213:	learn: 8.6620534	total: 6.21s	remaining: 2.5s
214:	learn: 8.6317582	total: 6.24s	remaining: 2.47s
215:	learn: 8.6021758	total: 6.27s	remaining: 2.44s
216:	learn: 8.5696515	total: 6.29s	remaining: 2.41s
217:	learn: 8.5267761	total: 6.32s	remaining: 2.38s
218:	learn: 8.5135802	total: 6.35s	remaining: 2.35s
219:	learn: 8.4762506	total: 6.38s	remaining: 2.32s
220:	learn: 8.4462181	total: 6.42s	remaining: 2.29s
221:	learn: 8.4167253	total: 6.44s	remaining: 2.26s
222:	learn: 8.3867332	total: 6.47s	remaining: 2.23s
223:	learn: 8.3527829	total: 6.5s	remaining: 2.2s
224:	learn: 8.3221175	total: 6.52s	remaining: 2.17s
225:	learn: 8.3149566	total: 6.56s	remaining: 2.15s
226:	learn: 8.3023601	total: 6.59s	remaining: 2.12s
227:	learn: 8.2720745	total: 6.62s	remaining: 2.09s
228:	learn: 8.2581250	total: 6.65s	remaining: 2.06s
229:	learn: 8.2207983	total: 6.68s	remaining: 2.03s
230:	learn: 8.2083228	total: 6.71s	remaining: 2s
231:	learn: 8.1774734	total: 6.74s	remaining: 1.97s
232:	learn: 8.1280317	total: 6.76s	remaining: 1.95s
233:	learn: 8.0969454	total: 6.8s	remaining: 1.92s
234:	learn: 8.0653906	total: 6.82s	remaining: 1.89s
235:	learn: 8.0403548	total: 6.85s	remaining: 1.86s
236:	learn: 8.0309296	total: 6.88s	remaining: 1.83s
237:	learn: 7.9802761	total: 6.91s	remaining: 1.8s
238:	learn: 7.9595062	total: 6.94s	remaining: 1.77s
239:	learn: 7.9560132	total: 6.97s	remaining: 1.74s
240:	learn: 7.9188077	total: 7.01s	remaining: 1.72s
241:	learn: 7.9129376	total: 7.03s	remaining: 1.69s
242:	learn: 7.8845382	total: 7.06s	remaining: 1.66s
243:	learn: 7.8699627	total: 7.09s	remaining: 1.63s
244:	learn: 7.8332493	total: 7.12s	remaining: 1.6s
245:	learn: 7.7807468	total: 7.15s	remaining: 1.57s
246:	learn: 7.7739426	total: 7.19s	remaining: 1.54s
247:	learn: 7.7384141	total: 7.21s	remaining: 1.51s
248:	learn: 7.7066380	total: 7.24s	remaining: 1.48s
249:	learn: 7.7001271	total: 7.27s	remaining: 1.45s
250:	learn: 7.6846399	total: 7.29s	remaining: 1.42s
251:	learn: 7.6791814	total: 7.32s	remaining: 1.39s
252:	learn: 7.6451688	total: 7.35s	remaining: 1.36s
253:	learn: 7.6117158	total: 7.38s	remaining: 1.34s
254:	learn: 7.6012012	total: 7.41s	remaining: 1.31s
255:	learn: 7.5729959	total: 7.43s	remaining: 1.28s
256:	learn: 7.5370997	total: 7.46s	remaining: 1.25s
257:	learn: 7.5099776	total: 7.49s	remaining: 1.22s
258:	learn: 7.4860975	total: 7.51s	remaining: 1.19s
259:	learn: 7.4566817	total: 7.54s	remaining: 1.16s
260:	learn: 7.4269980	total: 7.56s	remaining: 1.13s
261:	learn: 7.3923465	total: 7.59s	remaining: 1.1s
262:	learn: 7.3675376	total: 7.62s	remaining: 1.07s
263:	learn: 7.3392461	total: 7.65s	remaining: 1.04s
264:	learn: 7.3102490	total: 7.67s	remaining: 1.01s
265:	learn: 7.3010635	total: 7.7s	remaining: 984ms
266:	learn: 7.2733113	total: 7.72s	remaining: 954ms
267:	learn: 7.2683610	total: 7.75s	remaining: 925ms
268:	learn: 7.2532714	total: 7.77s	remaining: 896ms
269:	learn: 7.2444185	total: 7.8s	remaining: 867ms
270:	learn: 7.2300953	total: 7.83s	remaining: 838ms
271:	learn: 7.2077357	total: 7.86s	remaining: 809ms
272:	learn: 7.1843423	total: 7.88s	remaining: 780ms
273:	learn: 7.1754867	total: 7.91s	remaining: 751ms
274:	learn: 7.1395344	total: 7.94s	remaining: 721ms
275:	learn: 7.1342567	total: 7.96s	remaining: 692ms
276:	learn: 7.1116057	total: 7.99s	remaining: 663ms
277:	learn: 7.0822569	total: 8.01s	remaining: 634ms
278:	learn: 7.0731958	total: 8.04s	remaining: 605ms
279:	learn: 7.0576479	total: 8.07s	remaining: 576ms
280:	learn: 7.0354817	total: 8.09s	remaining: 547ms
281:	learn: 7.0277403	total: 8.12s	remaining: 518ms
282:	learn: 7.0028621	total: 8.14s	remaining: 489ms
283:	learn: 6.9820607	total: 8.17s	remaining: 460ms
284:	learn: 6.9645494	total: 8.2s	remaining: 431ms
285:	learn: 6.9563224	total: 8.22s	remaining: 402ms
286:	learn: 6.9482036	total: 8.26s	remaining: 374ms
287:	learn: 6.9116066	total: 8.29s	remaining: 345ms
288:	learn: 6.8884274	total: 8.31s	remaining: 316ms
289:	learn: 6.8632506	total: 8.34s	remaining: 288ms
290:	learn: 6.8447357	total: 8.37s	remaining: 259ms
291:	learn: 6.8242972	total: 8.39s	remaining: 230ms
292:	learn: 6.8012643	total: 8.41s	remaining: 201ms
293:	learn: 6.7800583	total: 8.44s	remaining: 172ms
294:	learn: 6.7687042	total: 8.47s	remaining: 144ms
295:	learn: 6.7454529	total: 8.5s	remaining: 115ms
296:	learn: 6.7227229	total: 8.52s	remaining: 86.1ms
297:	learn: 6.7004834	total: 8.55s	remaining: 57.4ms
298:	learn: 6.6931313	total: 8.57s	remaining: 28.7ms
299:	learn: 6.6604653	total: 8.6s	remaining: 0us
0:	learn: 46.4449485	total: 26.2ms	remaining: 7.83s
1:	learn: 45.6641003	total: 52.9ms	remaining: 7.88s
2:	learn: 44.9322182	total: 79.1ms	remaining: 7.83s
3:	learn: 44.1111890	total: 104ms	remaining: 7.73s
4:	learn: 43.2956452	total: 129ms	remaining: 7.6s
5:	learn: 42.6298126	total: 155ms	remaining: 7.58s
6:	learn: 42.0896057	total: 180ms	remaining: 7.53s
7:	learn: 41.2698632	total: 206ms	remaining: 7.52s
8:	learn: 40.4846232	total: 233ms	remaining: 7.53s
9:	learn: 39.7069009	total: 259ms	remaining: 7.5s
10:	learn: 38.9656593	total: 263ms	remaining: 6.91s
11:	learn: 38.5069229	total: 294ms	remaining: 7.06s
12:	learn: 37.8073380	total: 326ms	remaining: 7.2s
13:	learn: 37.3882967	total: 353ms	remaining: 7.21s
14:	learn: 36.8180964	total: 378ms	remaining: 7.18s
15:	learn: 36.2948556	total: 404ms	remaining: 7.17s
16:	learn: 35.6877194	total: 429ms	remaining: 7.14s
17:	learn: 35.3344416	total: 452ms	remaining: 7.09s
18:	learn: 34.8793907	total: 476ms	remaining: 7.04s
19:	learn: 34.3129264	total: 505ms	remaining: 7.08s
20:	learn: 34.0804390	total: 535ms	remaining: 7.1s
21:	learn: 33.4413882	total: 560ms	remaining: 7.07s
22:	learn: 32.9936060	total: 585ms	remaining: 7.04s
23:	learn: 32.6458868	total: 609ms	remaining: 7.01s
24:	learn: 32.3273431	total: 635ms	remaining: 6.99s
25:	learn: 31.8309940	total: 660ms	remaining: 6.96s
26:	learn: 31.4310003	total: 684ms	remaining: 6.91s
27:	learn: 31.1804602	total: 708ms	remaining: 6.88s
28:	learn: 30.8535447	total: 733ms	remaining: 6.85s
29:	learn: 30.4063180	total: 765ms	remaining: 6.89s
30:	learn: 30.1876699	total: 791ms	remaining: 6.86s
31:	learn: 29.8778033	total: 815ms	remaining: 6.83s
32:	learn: 29.6371470	total: 839ms	remaining: 6.79s
33:	learn: 29.3801255	total: 863ms	remaining: 6.75s
34:	learn: 29.1426244	total: 887ms	remaining: 6.72s
35:	learn: 28.9166951	total: 911ms	remaining: 6.68s
36:	learn: 28.6597815	total: 936ms	remaining: 6.66s
37:	learn: 28.3844706	total: 961ms	remaining: 6.63s
38:	learn: 28.0894923	total: 996ms	remaining: 6.67s
39:	learn: 27.7571740	total: 1.02s	remaining: 6.63s
40:	learn: 27.4609127	total: 1.04s	remaining: 6.6s
41:	learn: 27.1948352	total: 1.07s	remaining: 6.57s
42:	learn: 26.9507594	total: 1.09s	remaining: 6.54s
43:	learn: 26.6347229	total: 1.12s	remaining: 6.5s
44:	learn: 26.3479735	total: 1.14s	remaining: 6.47s
45:	learn: 26.1335817	total: 1.17s	remaining: 6.45s
46:	learn: 25.8868210	total: 1.2s	remaining: 6.45s
47:	learn: 25.6881647	total: 1.22s	remaining: 6.42s
48:	learn: 25.4764814	total: 1.25s	remaining: 6.38s
49:	learn: 25.2279851	total: 1.27s	remaining: 6.35s
50:	learn: 24.9914875	total: 1.29s	remaining: 6.32s
51:	learn: 24.7951252	total: 1.32s	remaining: 6.29s
52:	learn: 24.6181712	total: 1.34s	remaining: 6.26s
53:	learn: 24.3711141	total: 1.37s	remaining: 6.23s
54:	learn: 24.1983381	total: 1.4s	remaining: 6.25s
55:	learn: 24.0518193	total: 1.43s	remaining: 6.23s
56:	learn: 23.8035754	total: 1.45s	remaining: 6.2s
57:	learn: 23.5891443	total: 1.48s	remaining: 6.17s
58:	learn: 23.3650788	total: 1.5s	remaining: 6.14s
59:	learn: 23.1423622	total: 1.53s	remaining: 6.11s
60:	learn: 22.9562061	total: 1.55s	remaining: 6.08s
61:	learn: 22.7841608	total: 1.58s	remaining: 6.05s
62:	learn: 22.5259611	total: 1.6s	remaining: 6.03s
63:	learn: 22.3959565	total: 1.63s	remaining: 6.02s
64:	learn: 22.2695041	total: 1.66s	remaining: 5.99s
65:	learn: 22.0116444	total: 1.68s	remaining: 5.96s
66:	learn: 21.8636416	total: 1.71s	remaining: 5.93s
67:	learn: 21.7170816	total: 1.73s	remaining: 5.9s
68:	learn: 21.6130887	total: 1.75s	remaining: 5.87s
69:	learn: 21.4107735	total: 1.78s	remaining: 5.84s
70:	learn: 21.2682184	total: 1.8s	remaining: 5.81s
71:	learn: 21.0421124	total: 1.83s	remaining: 5.81s
72:	learn: 20.8829831	total: 1.86s	remaining: 5.79s
73:	learn: 20.7916905	total: 1.89s	remaining: 5.76s
74:	learn: 20.6572110	total: 1.91s	remaining: 5.73s
75:	learn: 20.4683201	total: 1.94s	remaining: 5.7s
76:	learn: 20.3387806	total: 1.96s	remaining: 5.67s
77:	learn: 20.2301442	total: 2s	remaining: 5.68s
78:	learn: 20.1399739	total: 2.03s	remaining: 5.68s
79:	learn: 20.0395988	total: 2.06s	remaining: 5.66s
80:	learn: 19.9529190	total: 2.09s	remaining: 5.64s
81:	learn: 19.8285498	total: 2.11s	remaining: 5.62s
82:	learn: 19.6862504	total: 2.14s	remaining: 5.6s
83:	learn: 19.5764172	total: 2.17s	remaining: 5.58s
84:	learn: 19.4499650	total: 2.19s	remaining: 5.55s
85:	learn: 19.3449362	total: 2.22s	remaining: 5.53s
86:	learn: 19.1854254	total: 2.25s	remaining: 5.52s
87:	learn: 19.0850074	total: 2.28s	remaining: 5.49s
88:	learn: 18.9724934	total: 2.31s	remaining: 5.46s
89:	learn: 18.8778956	total: 2.33s	remaining: 5.44s
90:	learn: 18.7370373	total: 2.36s	remaining: 5.41s
91:	learn: 18.6192464	total: 2.38s	remaining: 5.39s
92:	learn: 18.5100314	total: 2.41s	remaining: 5.36s
93:	learn: 18.4275820	total: 2.44s	remaining: 5.35s
94:	learn: 18.3242001	total: 2.47s	remaining: 5.32s
95:	learn: 18.2110620	total: 2.49s	remaining: 5.29s
96:	learn: 18.0955256	total: 2.52s	remaining: 5.27s
97:	learn: 17.9941571	total: 2.54s	remaining: 5.24s
98:	learn: 17.8973235	total: 2.57s	remaining: 5.21s
99:	learn: 17.8100972	total: 2.59s	remaining: 5.18s
100:	learn: 17.7386244	total: 2.62s	remaining: 5.16s
101:	learn: 17.6310903	total: 2.65s	remaining: 5.14s
102:	learn: 17.5516996	total: 2.68s	remaining: 5.12s
103:	learn: 17.4617467	total: 2.7s	remaining: 5.09s
104:	learn: 17.3666766	total: 2.73s	remaining: 5.07s
105:	learn: 17.2221165	total: 2.75s	remaining: 5.04s
106:	learn: 17.0790059	total: 2.78s	remaining: 5.02s
107:	learn: 16.9698310	total: 2.81s	remaining: 4.99s
108:	learn: 16.8969362	total: 2.83s	remaining: 4.96s
109:	learn: 16.7819942	total: 2.86s	remaining: 4.93s
110:	learn: 16.6911902	total: 2.88s	remaining: 4.91s
111:	learn: 16.5519175	total: 2.92s	remaining: 4.89s
112:	learn: 16.3906885	total: 2.94s	remaining: 4.87s
113:	learn: 16.3090927	total: 2.96s	remaining: 4.84s
114:	learn: 16.2205215	total: 2.99s	remaining: 4.81s
115:	learn: 16.1233780	total: 3.01s	remaining: 4.78s
116:	learn: 16.0321663	total: 3.04s	remaining: 4.75s
117:	learn: 15.9579011	total: 3.06s	remaining: 4.72s
118:	learn: 15.8593485	total: 3.09s	remaining: 4.7s
119:	learn: 15.7788251	total: 3.12s	remaining: 4.68s
120:	learn: 15.7287407	total: 3.15s	remaining: 4.66s
121:	learn: 15.5788208	total: 3.17s	remaining: 4.63s
122:	learn: 15.5086549	total: 3.2s	remaining: 4.6s
123:	learn: 15.4364731	total: 3.23s	remaining: 4.58s
124:	learn: 15.3549185	total: 3.25s	remaining: 4.55s
125:	learn: 15.2967084	total: 3.27s	remaining: 4.52s
126:	learn: 15.1872607	total: 3.3s	remaining: 4.5s
127:	learn: 15.0932023	total: 3.33s	remaining: 4.48s
128:	learn: 15.0097364	total: 3.36s	remaining: 4.45s
129:	learn: 14.9463156	total: 3.38s	remaining: 4.43s
130:	learn: 14.8900172	total: 3.41s	remaining: 4.4s
131:	learn: 14.8358826	total: 3.43s	remaining: 4.37s
132:	learn: 14.7553997	total: 3.46s	remaining: 4.34s
133:	learn: 14.6821554	total: 3.48s	remaining: 4.32s
134:	learn: 14.5304879	total: 3.51s	remaining: 4.29s
135:	learn: 14.4324442	total: 3.54s	remaining: 4.26s
136:	learn: 14.3331494	total: 3.57s	remaining: 4.25s
137:	learn: 14.2753055	total: 3.6s	remaining: 4.23s
138:	learn: 14.1937968	total: 3.63s	remaining: 4.2s
139:	learn: 14.1149360	total: 3.65s	remaining: 4.17s
140:	learn: 14.0475961	total: 3.68s	remaining: 4.15s
141:	learn: 13.9679410	total: 3.7s	remaining: 4.12s
142:	learn: 13.8728976	total: 3.73s	remaining: 4.1s
143:	learn: 13.8088340	total: 3.76s	remaining: 4.08s
144:	learn: 13.7225802	total: 3.79s	remaining: 4.05s
145:	learn: 13.6027859	total: 3.81s	remaining: 4.02s
146:	learn: 13.5360562	total: 3.84s	remaining: 4s
147:	learn: 13.4527264	total: 3.86s	remaining: 3.97s
148:	learn: 13.3905685	total: 3.89s	remaining: 3.94s
149:	learn: 13.3231120	total: 3.91s	remaining: 3.91s
150:	learn: 13.2748277	total: 3.94s	remaining: 3.89s
151:	learn: 13.2011042	total: 3.96s	remaining: 3.86s
152:	learn: 13.1113158	total: 4s	remaining: 3.84s
153:	learn: 13.0630373	total: 4.03s	remaining: 3.82s
154:	learn: 12.9877054	total: 4.05s	remaining: 3.79s
155:	learn: 12.8975618	total: 4.08s	remaining: 3.77s
156:	learn: 12.8226873	total: 4.11s	remaining: 3.74s
157:	learn: 12.7653176	total: 4.13s	remaining: 3.71s
158:	learn: 12.7032259	total: 4.16s	remaining: 3.69s
159:	learn: 12.6413414	total: 4.19s	remaining: 3.67s
160:	learn: 12.5418162	total: 4.22s	remaining: 3.64s
161:	learn: 12.4761943	total: 4.24s	remaining: 3.61s
162:	learn: 12.4099277	total: 4.27s	remaining: 3.58s
163:	learn: 12.3393405	total: 4.29s	remaining: 3.56s
164:	learn: 12.2429002	total: 4.32s	remaining: 3.53s
165:	learn: 12.1931336	total: 4.34s	remaining: 3.5s
166:	learn: 12.0509054	total: 4.37s	remaining: 3.48s
167:	learn: 11.9940166	total: 4.4s	remaining: 3.45s
168:	learn: 11.9267615	total: 4.42s	remaining: 3.43s
169:	learn: 11.8595898	total: 4.45s	remaining: 3.4s
170:	learn: 11.7291128	total: 4.47s	remaining: 3.38s
171:	learn: 11.6574232	total: 4.5s	remaining: 3.35s
172:	learn: 11.5771876	total: 4.52s	remaining: 3.32s
173:	learn: 11.4934307	total: 4.55s	remaining: 3.29s
174:	learn: 11.4454134	total: 4.57s	remaining: 3.27s
175:	learn: 11.3829392	total: 4.6s	remaining: 3.24s
176:	learn: 11.2971903	total: 4.63s	remaining: 3.22s
177:	learn: 11.2515029	total: 4.65s	remaining: 3.19s
178:	learn: 11.2046889	total: 4.68s	remaining: 3.16s
179:	learn: 11.1528497	total: 4.7s	remaining: 3.13s
180:	learn: 11.0691294	total: 4.73s	remaining: 3.11s
181:	learn: 11.0191173	total: 4.75s	remaining: 3.08s
182:	learn: 10.9046058	total: 4.77s	remaining: 3.05s
183:	learn: 10.8625890	total: 4.8s	remaining: 3.02s
184:	learn: 10.7913928	total: 4.82s	remaining: 3s
185:	learn: 10.7366315	total: 4.86s	remaining: 2.98s
186:	learn: 10.6583458	total: 4.88s	remaining: 2.95s
187:	learn: 10.5955649	total: 4.91s	remaining: 2.92s
188:	learn: 10.5456969	total: 4.93s	remaining: 2.9s
189:	learn: 10.4582108	total: 4.96s	remaining: 2.87s
190:	learn: 10.4226930	total: 4.98s	remaining: 2.84s
191:	learn: 10.3469793	total: 5s	remaining: 2.81s
192:	learn: 10.2680286	total: 5.03s	remaining: 2.79s
193:	learn: 10.2210599	total: 5.05s	remaining: 2.76s
194:	learn: 10.1575919	total: 5.08s	remaining: 2.74s
195:	learn: 10.0996054	total: 5.11s	remaining: 2.71s
196:	learn: 10.0503671	total: 5.13s	remaining: 2.68s
197:	learn: 9.9976825	total: 5.16s	remaining: 2.66s
198:	learn: 9.9452535	total: 5.18s	remaining: 2.63s
199:	learn: 9.8825415	total: 5.2s	remaining: 2.6s
200:	learn: 9.8064134	total: 5.23s	remaining: 2.58s
201:	learn: 9.7572174	total: 5.25s	remaining: 2.55s
202:	learn: 9.6993413	total: 5.29s	remaining: 2.53s
203:	learn: 9.6645937	total: 5.31s	remaining: 2.5s
204:	learn: 9.6261766	total: 5.33s	remaining: 2.47s
205:	learn: 9.5819475	total: 5.36s	remaining: 2.44s
206:	learn: 9.5366280	total: 5.38s	remaining: 2.42s
207:	learn: 9.4813538	total: 5.41s	remaining: 2.39s
208:	learn: 9.4246671	total: 5.43s	remaining: 2.37s
209:	learn: 9.3787991	total: 5.46s	remaining: 2.34s
210:	learn: 9.3261932	total: 5.49s	remaining: 2.31s
211:	learn: 9.2979373	total: 5.51s	remaining: 2.29s
212:	learn: 9.2466040	total: 5.54s	remaining: 2.26s
213:	learn: 9.1990809	total: 5.56s	remaining: 2.24s
214:	learn: 9.1630306	total: 5.59s	remaining: 2.21s
215:	learn: 9.1266975	total: 5.61s	remaining: 2.18s
216:	learn: 9.0846374	total: 5.63s	remaining: 2.15s
217:	learn: 9.0341002	total: 5.66s	remaining: 2.13s
218:	learn: 8.9874070	total: 5.68s	remaining: 2.1s
219:	learn: 8.9478524	total: 5.73s	remaining: 2.08s
220:	learn: 8.8970642	total: 5.75s	remaining: 2.06s
221:	learn: 8.8605945	total: 5.78s	remaining: 2.03s
222:	learn: 8.8261863	total: 5.8s	remaining: 2s
223:	learn: 8.7821922	total: 5.83s	remaining: 1.98s
224:	learn: 8.7517706	total: 5.85s	remaining: 1.95s
225:	learn: 8.7149517	total: 5.87s	remaining: 1.92s
226:	learn: 8.6766707	total: 5.9s	remaining: 1.9s
227:	learn: 8.6372492	total: 5.93s	remaining: 1.87s
228:	learn: 8.6002129	total: 5.95s	remaining: 1.84s
229:	learn: 8.5595754	total: 5.98s	remaining: 1.82s
230:	learn: 8.5342774	total: 6.01s	remaining: 1.79s
231:	learn: 8.4991734	total: 6.04s	remaining: 1.77s
232:	learn: 8.4735361	total: 6.07s	remaining: 1.74s
233:	learn: 8.4328577	total: 6.09s	remaining: 1.72s
234:	learn: 8.3929232	total: 6.13s	remaining: 1.7s
235:	learn: 8.3611534	total: 6.16s	remaining: 1.67s
236:	learn: 8.3469261	total: 6.19s	remaining: 1.64s
237:	learn: 8.3082592	total: 6.21s	remaining: 1.62s
238:	learn: 8.2724422	total: 6.24s	remaining: 1.59s
239:	learn: 8.2378713	total: 6.27s	remaining: 1.57s
240:	learn: 8.2054002	total: 6.31s	remaining: 1.54s
241:	learn: 8.1726213	total: 6.34s	remaining: 1.52s
242:	learn: 8.1385919	total: 6.37s	remaining: 1.49s
243:	learn: 8.1113159	total: 6.39s	remaining: 1.47s
244:	learn: 8.0740264	total: 6.42s	remaining: 1.44s
245:	learn: 8.0399614	total: 6.45s	remaining: 1.41s
246:	learn: 8.0179358	total: 6.47s	remaining: 1.39s
247:	learn: 7.9896565	total: 6.5s	remaining: 1.36s
248:	learn: 7.9644186	total: 6.53s	remaining: 1.34s
249:	learn: 7.9305923	total: 6.56s	remaining: 1.31s
250:	learn: 7.9007851	total: 6.59s	remaining: 1.29s
251:	learn: 7.8740137	total: 6.62s	remaining: 1.26s
252:	learn: 7.8448288	total: 6.65s	remaining: 1.24s
253:	learn: 7.8020074	total: 6.68s	remaining: 1.21s
254:	learn: 7.7748874	total: 6.71s	remaining: 1.18s
255:	learn: 7.7553198	total: 6.73s	remaining: 1.16s
256:	learn: 7.7327191	total: 6.76s	remaining: 1.13s
257:	learn: 7.7021253	total: 6.8s	remaining: 1.11s
258:	learn: 7.6760024	total: 6.83s	remaining: 1.08s
259:	learn: 7.6569353	total: 6.86s	remaining: 1.05s
260:	learn: 7.6304716	total: 6.88s	remaining: 1.03s
261:	learn: 7.6011855	total: 6.91s	remaining: 1s
262:	learn: 7.5732109	total: 6.94s	remaining: 976ms
263:	learn: 7.5502359	total: 6.96s	remaining: 950ms
264:	learn: 7.5240021	total: 7s	remaining: 924ms
265:	learn: 7.4977154	total: 7.04s	remaining: 900ms
266:	learn: 7.4679226	total: 7.07s	remaining: 873ms
267:	learn: 7.4445035	total: 7.09s	remaining: 847ms
268:	learn: 7.4246251	total: 7.12s	remaining: 820ms
269:	learn: 7.4029554	total: 7.15s	remaining: 794ms
270:	learn: 7.3712662	total: 7.17s	remaining: 768ms
271:	learn: 7.3355870	total: 7.21s	remaining: 742ms
272:	learn: 7.3198771	total: 7.23s	remaining: 716ms
273:	learn: 7.3050151	total: 7.27s	remaining: 690ms
274:	learn: 7.2910043	total: 7.3s	remaining: 663ms
275:	learn: 7.2783385	total: 7.32s	remaining: 637ms
276:	learn: 7.2559473	total: 7.35s	remaining: 610ms
277:	learn: 7.2185655	total: 7.38s	remaining: 584ms
278:	learn: 7.1965563	total: 7.41s	remaining: 558ms
279:	learn: 7.1773705	total: 7.45s	remaining: 532ms
280:	learn: 7.1541341	total: 7.47s	remaining: 505ms
281:	learn: 7.1355109	total: 7.5s	remaining: 479ms
282:	learn: 7.1129308	total: 7.53s	remaining: 453ms
283:	learn: 7.0886063	total: 7.56s	remaining: 426ms
284:	learn: 7.0673363	total: 7.59s	remaining: 399ms
285:	learn: 7.0518651	total: 7.62s	remaining: 373ms
286:	learn: 7.0312280	total: 7.65s	remaining: 346ms
287:	learn: 7.0065712	total: 7.67s	remaining: 320ms
288:	learn: 6.9851465	total: 7.7s	remaining: 293ms
289:	learn: 6.9652208	total: 7.73s	remaining: 267ms
290:	learn: 6.9480340	total: 7.76s	remaining: 240ms
291:	learn: 6.9293725	total: 7.79s	remaining: 213ms
292:	learn: 6.8953713	total: 7.82s	remaining: 187ms
293:	learn: 6.8800761	total: 7.84s	remaining: 160ms
294:	learn: 6.8674172	total: 7.88s	remaining: 134ms
295:	learn: 6.8461255	total: 7.91s	remaining: 107ms
296:	learn: 6.8284246	total: 7.94s	remaining: 80.2ms
297:	learn: 6.8028742	total: 7.96s	remaining: 53.4ms
298:	learn: 6.7865169	total: 8s	remaining: 26.7ms
299:	learn: 6.7677918	total: 8.02s	remaining: 0us
0:	learn: 46.0177610	total: 26.5ms	remaining: 7.92s
1:	learn: 45.2171004	total: 52.5ms	remaining: 7.82s
2:	learn: 44.5194217	total: 79.1ms	remaining: 7.83s
3:	learn: 43.6812696	total: 106ms	remaining: 7.81s
4:	learn: 42.8831305	total: 132ms	remaining: 7.8s
5:	learn: 42.1262412	total: 160ms	remaining: 7.82s
6:	learn: 41.6465602	total: 204ms	remaining: 8.52s
7:	learn: 41.2399751	total: 231ms	remaining: 8.45s
8:	learn: 40.7217059	total: 259ms	remaining: 8.38s
9:	learn: 40.1802193	total: 287ms	remaining: 8.31s
10:	learn: 39.7286629	total: 314ms	remaining: 8.25s
11:	learn: 39.1775230	total: 341ms	remaining: 8.18s
12:	learn: 38.7477788	total: 367ms	remaining: 8.11s
13:	learn: 38.2296808	total: 394ms	remaining: 8.05s
14:	learn: 37.7069865	total: 424ms	remaining: 8.05s
15:	learn: 37.1535735	total: 463ms	remaining: 8.23s
16:	learn: 36.7900064	total: 490ms	remaining: 8.16s
17:	learn: 36.4049038	total: 517ms	remaining: 8.09s
18:	learn: 35.9640324	total: 544ms	remaining: 8.04s
19:	learn: 35.5778526	total: 571ms	remaining: 8s
20:	learn: 35.2480134	total: 598ms	remaining: 7.94s
21:	learn: 34.8576668	total: 626ms	remaining: 7.91s
22:	learn: 34.3332571	total: 666ms	remaining: 8.03s
23:	learn: 34.0285781	total: 702ms	remaining: 8.08s
24:	learn: 33.6137780	total: 729ms	remaining: 8.02s
25:	learn: 33.1018374	total: 757ms	remaining: 7.98s
26:	learn: 32.7865924	total: 783ms	remaining: 7.92s
27:	learn: 32.5376779	total: 811ms	remaining: 7.88s
28:	learn: 32.0718213	total: 838ms	remaining: 7.83s
29:	learn: 31.7440177	total: 867ms	remaining: 7.8s
30:	learn: 31.4767615	total: 899ms	remaining: 7.8s
31:	learn: 31.0939292	total: 934ms	remaining: 7.82s
32:	learn: 30.7679414	total: 961ms	remaining: 7.78s
33:	learn: 30.3318976	total: 988ms	remaining: 7.73s
34:	learn: 30.0098409	total: 1.01s	remaining: 7.67s
35:	learn: 29.7328439	total: 1.04s	remaining: 7.63s
36:	learn: 29.3793676	total: 1.07s	remaining: 7.59s
37:	learn: 29.1027021	total: 1.1s	remaining: 7.6s
38:	learn: 28.7995895	total: 1.13s	remaining: 7.57s
39:	learn: 28.5217760	total: 1.16s	remaining: 7.53s
40:	learn: 28.1682840	total: 1.19s	remaining: 7.54s
41:	learn: 27.7960176	total: 1.22s	remaining: 7.5s
42:	learn: 27.5479541	total: 1.25s	remaining: 7.45s
43:	learn: 27.1865306	total: 1.27s	remaining: 7.41s
44:	learn: 26.9937460	total: 1.3s	remaining: 7.37s
45:	learn: 26.8442463	total: 1.33s	remaining: 7.37s
46:	learn: 26.4960149	total: 1.36s	remaining: 7.32s
47:	learn: 26.3705169	total: 1.39s	remaining: 7.29s
48:	learn: 26.1706608	total: 1.42s	remaining: 7.29s
49:	learn: 25.9554127	total: 1.45s	remaining: 7.24s
50:	learn: 25.7460625	total: 1.48s	remaining: 7.21s
51:	learn: 25.5382801	total: 1.5s	remaining: 7.17s
52:	learn: 25.3702316	total: 1.54s	remaining: 7.18s
53:	learn: 25.1895507	total: 1.57s	remaining: 7.15s
54:	learn: 24.9547189	total: 1.6s	remaining: 7.11s
55:	learn: 24.7774266	total: 1.62s	remaining: 7.07s
56:	learn: 24.5983576	total: 1.65s	remaining: 7.04s
57:	learn: 24.4350851	total: 1.69s	remaining: 7.04s
58:	learn: 24.1821816	total: 1.72s	remaining: 7.02s
59:	learn: 24.0194176	total: 1.75s	remaining: 6.99s
60:	learn: 23.8268698	total: 1.77s	remaining: 6.95s
61:	learn: 23.6797713	total: 1.8s	remaining: 6.91s
62:	learn: 23.5016295	total: 1.83s	remaining: 6.88s
63:	learn: 23.3337406	total: 1.85s	remaining: 6.84s
64:	learn: 23.1777686	total: 1.88s	remaining: 6.81s
65:	learn: 22.9885995	total: 1.92s	remaining: 6.81s
66:	learn: 22.8371180	total: 1.95s	remaining: 6.78s
67:	learn: 22.6795513	total: 1.98s	remaining: 6.75s
68:	learn: 22.5161365	total: 2s	remaining: 6.71s
69:	learn: 22.3361211	total: 2.03s	remaining: 6.67s
70:	learn: 22.1434717	total: 2.06s	remaining: 6.63s
71:	learn: 21.9717466	total: 2.08s	remaining: 6.59s
72:	learn: 21.7799255	total: 2.11s	remaining: 6.57s
73:	learn: 21.5806287	total: 2.14s	remaining: 6.54s
74:	learn: 21.4515659	total: 2.17s	remaining: 6.5s
75:	learn: 21.3438173	total: 2.19s	remaining: 6.46s
76:	learn: 21.2141855	total: 2.22s	remaining: 6.42s
77:	learn: 20.9791139	total: 2.24s	remaining: 6.39s
78:	learn: 20.8731109	total: 2.27s	remaining: 6.35s
79:	learn: 20.7356152	total: 2.3s	remaining: 6.32s
80:	learn: 20.6794518	total: 2.32s	remaining: 6.28s
81:	learn: 20.5703504	total: 2.36s	remaining: 6.28s
82:	learn: 20.4542622	total: 2.39s	remaining: 6.25s
83:	learn: 20.3436005	total: 2.42s	remaining: 6.21s
84:	learn: 20.2213634	total: 2.44s	remaining: 6.18s
85:	learn: 20.0231006	total: 2.47s	remaining: 6.14s
86:	learn: 19.9066413	total: 2.49s	remaining: 6.11s
87:	learn: 19.8018072	total: 2.52s	remaining: 6.07s
88:	learn: 19.7018716	total: 2.55s	remaining: 6.04s
89:	learn: 19.5924764	total: 2.58s	remaining: 6.01s
90:	learn: 19.4563722	total: 2.6s	remaining: 5.98s
91:	learn: 19.3246547	total: 2.63s	remaining: 5.94s
92:	learn: 19.2157682	total: 2.65s	remaining: 5.91s
93:	learn: 19.1488443	total: 2.68s	remaining: 5.87s
94:	learn: 19.0557445	total: 2.71s	remaining: 5.84s
95:	learn: 18.9599358	total: 2.73s	remaining: 5.8s
96:	learn: 18.8626100	total: 2.76s	remaining: 5.77s
97:	learn: 18.7583061	total: 2.78s	remaining: 5.74s
98:	learn: 18.6544146	total: 2.82s	remaining: 5.72s
99:	learn: 18.5451742	total: 2.84s	remaining: 5.69s
100:	learn: 18.4189953	total: 2.87s	remaining: 5.66s
101:	learn: 18.3438186	total: 2.9s	remaining: 5.63s
102:	learn: 18.3162367	total: 2.92s	remaining: 5.59s
103:	learn: 18.2040313	total: 2.95s	remaining: 5.55s
104:	learn: 18.0312740	total: 2.97s	remaining: 5.52s
105:	learn: 17.9372951	total: 3s	remaining: 5.49s
106:	learn: 17.8724695	total: 3.03s	remaining: 5.46s
107:	learn: 17.7720982	total: 3.06s	remaining: 5.43s
108:	learn: 17.6847197	total: 3.08s	remaining: 5.4s
109:	learn: 17.5739155	total: 3.1s	remaining: 5.36s
110:	learn: 17.5071512	total: 3.13s	remaining: 5.33s
111:	learn: 17.4284339	total: 3.15s	remaining: 5.29s
112:	learn: 17.3333136	total: 3.18s	remaining: 5.26s
113:	learn: 17.2854017	total: 3.21s	remaining: 5.23s
114:	learn: 17.2580292	total: 3.23s	remaining: 5.2s
115:	learn: 17.1942005	total: 3.26s	remaining: 5.18s
116:	learn: 17.1180771	total: 3.29s	remaining: 5.15s
117:	learn: 17.0881080	total: 3.32s	remaining: 5.12s
118:	learn: 16.9946379	total: 3.34s	remaining: 5.08s
119:	learn: 16.9347009	total: 3.37s	remaining: 5.05s
120:	learn: 16.8550523	total: 3.39s	remaining: 5.02s
121:	learn: 16.8167084	total: 3.42s	remaining: 4.99s
122:	learn: 16.7431121	total: 3.44s	remaining: 4.96s
123:	learn: 16.6790079	total: 3.47s	remaining: 4.93s
124:	learn: 16.6544185	total: 3.5s	remaining: 4.9s
125:	learn: 16.5758961	total: 3.53s	remaining: 4.87s
126:	learn: 16.4736355	total: 3.55s	remaining: 4.84s
127:	learn: 16.3424410	total: 3.58s	remaining: 4.81s
128:	learn: 16.2679660	total: 3.6s	remaining: 4.78s
129:	learn: 16.2258039	total: 3.63s	remaining: 4.74s
130:	learn: 16.1516799	total: 3.65s	remaining: 4.71s
131:	learn: 16.1254438	total: 3.68s	remaining: 4.68s
132:	learn: 16.0304106	total: 3.71s	remaining: 4.66s
133:	learn: 15.9690721	total: 3.74s	remaining: 4.63s
134:	learn: 15.8475301	total: 3.76s	remaining: 4.6s
135:	learn: 15.7923044	total: 3.79s	remaining: 4.57s
136:	learn: 15.7122364	total: 3.82s	remaining: 4.54s
137:	learn: 15.6328785	total: 3.84s	remaining: 4.51s
138:	learn: 15.5626000	total: 3.87s	remaining: 4.48s
139:	learn: 15.4322531	total: 3.89s	remaining: 4.45s
140:	learn: 15.3057121	total: 3.93s	remaining: 4.43s
141:	learn: 15.2355698	total: 3.96s	remaining: 4.4s
142:	learn: 15.1858129	total: 3.98s	remaining: 4.37s
143:	learn: 15.1459442	total: 4s	remaining: 4.34s
144:	learn: 15.1011230	total: 4.03s	remaining: 4.31s
145:	learn: 15.0379234	total: 4.05s	remaining: 4.27s
146:	learn: 14.9606955	total: 4.08s	remaining: 4.24s
147:	learn: 14.8537869	total: 4.1s	remaining: 4.21s
148:	learn: 14.7978827	total: 4.13s	remaining: 4.18s
149:	learn: 14.7340183	total: 4.15s	remaining: 4.15s
150:	learn: 14.6973812	total: 4.18s	remaining: 4.12s
151:	learn: 14.6682787	total: 4.2s	remaining: 4.09s
152:	learn: 14.5210539	total: 4.23s	remaining: 4.06s
153:	learn: 14.4733148	total: 4.25s	remaining: 4.03s
154:	learn: 14.4119567	total: 4.28s	remaining: 4s
155:	learn: 14.3464330	total: 4.3s	remaining: 3.97s
156:	learn: 14.2314719	total: 4.33s	remaining: 3.94s
157:	learn: 14.1827121	total: 4.36s	remaining: 3.92s
158:	learn: 14.0860528	total: 4.38s	remaining: 3.89s
159:	learn: 14.0216499	total: 4.41s	remaining: 3.86s
160:	learn: 13.9788508	total: 4.43s	remaining: 3.82s
161:	learn: 13.9341942	total: 4.45s	remaining: 3.79s
162:	learn: 13.8689437	total: 4.48s	remaining: 3.76s
163:	learn: 13.8152354	total: 4.5s	remaining: 3.73s
164:	learn: 13.7979613	total: 4.53s	remaining: 3.7s
165:	learn: 13.7124340	total: 4.55s	remaining: 3.67s
166:	learn: 13.6328571	total: 4.58s	remaining: 3.65s
167:	learn: 13.6179483	total: 4.61s	remaining: 3.62s
168:	learn: 13.5737505	total: 4.64s	remaining: 3.59s
169:	learn: 13.5185652	total: 4.66s	remaining: 3.56s
170:	learn: 13.3621411	total: 4.69s	remaining: 3.54s
171:	learn: 13.3431787	total: 4.71s	remaining: 3.5s
172:	learn: 13.2661742	total: 4.73s	remaining: 3.48s
173:	learn: 13.2029526	total: 4.76s	remaining: 3.45s
174:	learn: 13.1457507	total: 4.78s	remaining: 3.42s
175:	learn: 13.0041277	total: 4.81s	remaining: 3.39s
176:	learn: 12.9565895	total: 4.84s	remaining: 3.36s
177:	learn: 12.8225368	total: 4.86s	remaining: 3.33s
178:	learn: 12.8073526	total: 4.89s	remaining: 3.3s
179:	learn: 12.7432577	total: 4.91s	remaining: 3.27s
180:	learn: 12.6894062	total: 4.94s	remaining: 3.25s
181:	learn: 12.6115430	total: 4.96s	remaining: 3.22s
182:	learn: 12.4884510	total: 4.99s	remaining: 3.19s
183:	learn: 12.4670071	total: 5.01s	remaining: 3.16s
184:	learn: 12.3586840	total: 5.05s	remaining: 3.14s
185:	learn: 12.3314465	total: 5.07s	remaining: 3.11s
186:	learn: 12.2898986	total: 5.09s	remaining: 3.08s
187:	learn: 12.2444848	total: 5.12s	remaining: 3.05s
188:	learn: 12.1286912	total: 5.14s	remaining: 3.02s
189:	learn: 12.0913051	total: 5.17s	remaining: 2.99s
190:	learn: 12.0412425	total: 5.19s	remaining: 2.96s
191:	learn: 11.9806235	total: 5.22s	remaining: 2.94s
192:	learn: 11.9166183	total: 5.25s	remaining: 2.91s
193:	learn: 11.8779218	total: 5.27s	remaining: 2.88s
194:	learn: 11.8179532	total: 5.3s	remaining: 2.85s
195:	learn: 11.7640239	total: 5.32s	remaining: 2.82s
196:	learn: 11.7071262	total: 5.35s	remaining: 2.79s
197:	learn: 11.6536293	total: 5.37s	remaining: 2.77s
198:	learn: 11.6065018	total: 5.39s	remaining: 2.74s
199:	learn: 11.5499607	total: 5.42s	remaining: 2.71s
200:	learn: 11.5040185	total: 5.44s	remaining: 2.68s
201:	learn: 11.4742990	total: 5.48s	remaining: 2.66s
202:	learn: 11.4464612	total: 5.5s	remaining: 2.63s
203:	learn: 11.3967352	total: 5.53s	remaining: 2.6s
204:	learn: 11.3773630	total: 5.55s	remaining: 2.57s
205:	learn: 11.3369897	total: 5.58s	remaining: 2.54s
206:	learn: 11.2785610	total: 5.6s	remaining: 2.52s
207:	learn: 11.2570903	total: 5.63s	remaining: 2.49s
208:	learn: 11.1959469	total: 5.66s	remaining: 2.46s
209:	learn: 11.1698664	total: 5.69s	remaining: 2.44s
210:	learn: 11.1452100	total: 5.71s	remaining: 2.41s
211:	learn: 11.1074115	total: 5.74s	remaining: 2.38s
212:	learn: 11.0813756	total: 5.77s	remaining: 2.35s
213:	learn: 11.0519307	total: 5.79s	remaining: 2.33s
214:	learn: 11.0155685	total: 5.82s	remaining: 2.3s
215:	learn: 10.9871406	total: 5.86s	remaining: 2.28s
216:	learn: 10.9693068	total: 5.89s	remaining: 2.25s
217:	learn: 10.9576767	total: 5.92s	remaining: 2.23s
218:	learn: 10.8594320	total: 5.94s	remaining: 2.2s
219:	learn: 10.8272954	total: 5.97s	remaining: 2.17s
220:	learn: 10.8038867	total: 6s	remaining: 2.15s
221:	learn: 10.7088853	total: 6.03s	remaining: 2.12s
222:	learn: 10.6887411	total: 6.05s	remaining: 2.09s
223:	learn: 10.6649574	total: 6.09s	remaining: 2.07s
224:	learn: 10.6194908	total: 6.12s	remaining: 2.04s
225:	learn: 10.5685522	total: 6.15s	remaining: 2.01s
226:	learn: 10.5537435	total: 6.17s	remaining: 1.99s
227:	learn: 10.5121708	total: 6.2s	remaining: 1.96s
228:	learn: 10.4691452	total: 6.23s	remaining: 1.93s
229:	learn: 10.4484099	total: 6.25s	remaining: 1.9s
230:	learn: 10.4377373	total: 6.28s	remaining: 1.88s
231:	learn: 10.4270601	total: 6.31s	remaining: 1.85s
232:	learn: 10.4051968	total: 6.35s	remaining: 1.83s
233:	learn: 10.3483300	total: 6.38s	remaining: 1.8s
234:	learn: 10.2865834	total: 6.41s	remaining: 1.77s
235:	learn: 10.2610314	total: 6.44s	remaining: 1.75s
236:	learn: 10.2388990	total: 6.46s	remaining: 1.72s
237:	learn: 10.1965393	total: 6.49s	remaining: 1.69s
238:	learn: 10.1800849	total: 6.52s	remaining: 1.66s
239:	learn: 10.1604400	total: 6.55s	remaining: 1.64s
240:	learn: 10.1302668	total: 6.59s	remaining: 1.61s
241:	learn: 10.1241338	total: 6.61s	remaining: 1.58s
242:	learn: 10.0835529	total: 6.64s	remaining: 1.56s
243:	learn: 10.0154507	total: 6.67s	remaining: 1.53s
244:	learn: 10.0024905	total: 6.69s	remaining: 1.5s
245:	learn: 9.9669119	total: 6.72s	remaining: 1.48s
246:	learn: 9.9325711	total: 6.75s	remaining: 1.45s
247:	learn: 9.8981230	total: 6.78s	remaining: 1.42s
248:	learn: 9.8660554	total: 6.81s	remaining: 1.4s
249:	learn: 9.8506587	total: 6.85s	remaining: 1.37s
250:	learn: 9.8080866	total: 6.88s	remaining: 1.34s
251:	learn: 9.7747070	total: 6.91s	remaining: 1.31s
252:	learn: 9.7589720	total: 6.93s	remaining: 1.29s
253:	learn: 9.7308058	total: 6.96s	remaining: 1.26s
254:	learn: 9.7157610	total: 6.99s	remaining: 1.23s
255:	learn: 9.6979675	total: 7.02s	remaining: 1.21s
256:	learn: 9.6657809	total: 7.05s	remaining: 1.18s
257:	learn: 9.6522187	total: 7.08s	remaining: 1.15s
258:	learn: 9.6375034	total: 7.11s	remaining: 1.13s
259:	learn: 9.6023653	total: 7.14s	remaining: 1.1s
260:	learn: 9.5760582	total: 7.16s	remaining: 1.07s
261:	learn: 9.5288913	total: 7.19s	remaining: 1.04s
262:	learn: 9.5151986	total: 7.22s	remaining: 1.01s
263:	learn: 9.4814503	total: 7.26s	remaining: 990ms
264:	learn: 9.4635791	total: 7.29s	remaining: 962ms
265:	learn: 9.4364856	total: 7.32s	remaining: 936ms
266:	learn: 9.4013439	total: 7.35s	remaining: 908ms
267:	learn: 9.3638018	total: 7.38s	remaining: 881ms
268:	learn: 9.3558171	total: 7.41s	remaining: 853ms
269:	learn: 9.3065751	total: 7.44s	remaining: 826ms
270:	learn: 9.2964146	total: 7.46s	remaining: 799ms
271:	learn: 9.2625670	total: 7.49s	remaining: 771ms
272:	learn: 9.2356760	total: 7.52s	remaining: 744ms
273:	learn: 9.2046550	total: 7.54s	remaining: 716ms
274:	learn: 9.1931591	total: 7.58s	remaining: 689ms
275:	learn: 9.1692863	total: 7.61s	remaining: 661ms
276:	learn: 9.1358490	total: 7.64s	remaining: 634ms
277:	learn: 9.1007511	total: 7.67s	remaining: 607ms
278:	learn: 9.0946236	total: 7.7s	remaining: 580ms
279:	learn: 9.0731587	total: 7.73s	remaining: 552ms
280:	learn: 9.0466446	total: 7.76s	remaining: 524ms
281:	learn: 9.0262027	total: 7.78s	remaining: 497ms
282:	learn: 8.9958148	total: 7.82s	remaining: 470ms
283:	learn: 8.9904119	total: 7.84s	remaining: 442ms
284:	learn: 8.9723234	total: 7.88s	remaining: 415ms
285:	learn: 8.9368256	total: 7.91s	remaining: 387ms
286:	learn: 8.8960967	total: 7.93s	remaining: 359ms
287:	learn: 8.8813638	total: 7.96s	remaining: 332ms
288:	learn: 8.8766445	total: 7.99s	remaining: 304ms
289:	learn: 8.8483604	total: 8.01s	remaining: 276ms
290:	learn: 8.8220559	total: 8.05s	remaining: 249ms
291:	learn: 8.7918301	total: 8.07s	remaining: 221ms
292:	learn: 8.7574504	total: 8.1s	remaining: 194ms
293:	learn: 8.7490725	total: 8.14s	remaining: 166ms
294:	learn: 8.7293377	total: 8.17s	remaining: 138ms
295:	learn: 8.7202847	total: 8.19s	remaining: 111ms
296:	learn: 8.6918465	total: 8.22s	remaining: 83ms
297:	learn: 8.6665828	total: 8.25s	remaining: 55.4ms
298:	learn: 8.6541683	total: 8.28s	remaining: 27.7ms
299:	learn: 8.6494740	total: 8.31s	remaining: 0us
0:	learn: 46.8012202	total: 26.2ms	remaining: 7.85s
1:	learn: 46.0273912	total: 51.1ms	remaining: 7.61s
2:	learn: 45.3733493	total: 75.7ms	remaining: 7.49s
3:	learn: 44.7109449	total: 101ms	remaining: 7.45s
4:	learn: 43.9430491	total: 126ms	remaining: 7.46s
5:	learn: 43.2536304	total: 154ms	remaining: 7.55s
6:	learn: 42.5901366	total: 190ms	remaining: 7.97s
7:	learn: 42.0362841	total: 217ms	remaining: 7.92s
8:	learn: 41.4655769	total: 243ms	remaining: 7.84s
9:	learn: 40.7617374	total: 269ms	remaining: 7.79s
10:	learn: 40.1467911	total: 294ms	remaining: 7.71s
11:	learn: 39.5322002	total: 318ms	remaining: 7.63s
12:	learn: 39.2369496	total: 344ms	remaining: 7.6s
13:	learn: 38.8730340	total: 372ms	remaining: 7.6s
14:	learn: 38.4661592	total: 402ms	remaining: 7.64s
15:	learn: 37.8483750	total: 406ms	remaining: 7.2s
16:	learn: 37.2598064	total: 430ms	remaining: 7.17s
17:	learn: 36.6878531	total: 455ms	remaining: 7.13s
18:	learn: 36.1765878	total: 481ms	remaining: 7.11s
19:	learn: 35.6111928	total: 504ms	remaining: 7.06s
20:	learn: 35.2113326	total: 529ms	remaining: 7.03s
21:	learn: 34.5754750	total: 554ms	remaining: 7s
22:	learn: 34.0844300	total: 580ms	remaining: 6.98s
23:	learn: 33.6434482	total: 616ms	remaining: 7.08s
24:	learn: 33.3578327	total: 641ms	remaining: 7.05s
25:	learn: 32.9883035	total: 667ms	remaining: 7.02s
26:	learn: 32.6325583	total: 693ms	remaining: 7.01s
27:	learn: 32.1886629	total: 718ms	remaining: 6.98s
28:	learn: 31.8587417	total: 743ms	remaining: 6.94s
29:	learn: 31.4999044	total: 768ms	remaining: 6.91s
30:	learn: 31.1903935	total: 795ms	remaining: 6.89s
31:	learn: 30.8877054	total: 821ms	remaining: 6.88s
32:	learn: 30.6421813	total: 850ms	remaining: 6.88s
33:	learn: 30.3687742	total: 876ms	remaining: 6.85s
34:	learn: 30.0972944	total: 900ms	remaining: 6.81s
35:	learn: 29.6026977	total: 925ms	remaining: 6.78s
36:	learn: 29.3412855	total: 949ms	remaining: 6.75s
37:	learn: 29.0138869	total: 974ms	remaining: 6.72s
38:	learn: 28.6424952	total: 999ms	remaining: 6.68s
39:	learn: 28.4408572	total: 1.02s	remaining: 6.67s
40:	learn: 28.0554435	total: 1.06s	remaining: 6.69s
41:	learn: 27.8389274	total: 1.08s	remaining: 6.67s
42:	learn: 27.5339353	total: 1.11s	remaining: 6.64s
43:	learn: 27.3640594	total: 1.14s	remaining: 6.62s
44:	learn: 27.1330981	total: 1.16s	remaining: 6.6s
45:	learn: 26.9507132	total: 1.19s	remaining: 6.57s
46:	learn: 26.7285619	total: 1.21s	remaining: 6.54s
47:	learn: 26.3518482	total: 1.24s	remaining: 6.51s
48:	learn: 26.0543584	total: 1.27s	remaining: 6.52s
49:	learn: 25.8251945	total: 1.3s	remaining: 6.5s
50:	learn: 25.5436752	total: 1.32s	remaining: 6.47s
51:	learn: 25.3250332	total: 1.35s	remaining: 6.44s
52:	learn: 25.1688504	total: 1.38s	remaining: 6.42s
53:	learn: 24.9813407	total: 1.4s	remaining: 6.39s
54:	learn: 24.7384847	total: 1.43s	remaining: 6.36s
55:	learn: 24.5163023	total: 1.46s	remaining: 6.35s
56:	learn: 24.2729235	total: 1.49s	remaining: 6.34s
57:	learn: 24.1318061	total: 1.51s	remaining: 6.32s
58:	learn: 23.9701754	total: 1.54s	remaining: 6.29s
59:	learn: 23.8112940	total: 1.57s	remaining: 6.27s
60:	learn: 23.6723877	total: 1.59s	remaining: 6.25s
61:	learn: 23.5289336	total: 1.62s	remaining: 6.21s
62:	learn: 23.4106679	total: 1.64s	remaining: 6.18s
63:	learn: 23.2082280	total: 1.67s	remaining: 6.15s
64:	learn: 23.0959607	total: 1.7s	remaining: 6.14s
65:	learn: 22.9890902	total: 1.73s	remaining: 6.13s
66:	learn: 22.8516666	total: 1.75s	remaining: 6.1s
67:	learn: 22.7282575	total: 1.78s	remaining: 6.08s
68:	learn: 22.5991392	total: 1.8s	remaining: 6.04s
69:	learn: 22.3825348	total: 1.83s	remaining: 6.02s
70:	learn: 22.2284455	total: 1.86s	remaining: 5.99s
71:	learn: 22.0431735	total: 1.88s	remaining: 5.96s
72:	learn: 21.8930406	total: 1.91s	remaining: 5.93s
73:	learn: 21.7459390	total: 1.94s	remaining: 5.94s
74:	learn: 21.6277633	total: 1.97s	remaining: 5.91s
75:	learn: 21.4144047	total: 2s	remaining: 5.88s
76:	learn: 21.2747440	total: 2.02s	remaining: 5.86s
77:	learn: 21.1153657	total: 2.05s	remaining: 5.83s
78:	learn: 21.0445825	total: 2.07s	remaining: 5.8s
79:	learn: 20.9348935	total: 2.1s	remaining: 5.77s
80:	learn: 20.7685253	total: 2.13s	remaining: 5.77s
81:	learn: 20.6539889	total: 2.16s	remaining: 5.74s
82:	learn: 20.4538530	total: 2.18s	remaining: 5.71s
83:	learn: 20.3461251	total: 2.21s	remaining: 5.68s
84:	learn: 20.1992221	total: 2.23s	remaining: 5.65s
85:	learn: 20.0842190	total: 2.26s	remaining: 5.62s
86:	learn: 19.9903250	total: 2.28s	remaining: 5.59s
87:	learn: 19.9084171	total: 2.31s	remaining: 5.57s
88:	learn: 19.7929727	total: 2.35s	remaining: 5.56s
89:	learn: 19.7205230	total: 2.37s	remaining: 5.54s
90:	learn: 19.6075486	total: 2.4s	remaining: 5.51s
91:	learn: 19.5309964	total: 2.42s	remaining: 5.48s
92:	learn: 19.4363684	total: 2.45s	remaining: 5.45s
93:	learn: 19.3378127	total: 2.48s	remaining: 5.43s
94:	learn: 19.2292896	total: 2.5s	remaining: 5.4s
95:	learn: 19.1011370	total: 2.53s	remaining: 5.37s
96:	learn: 18.9974491	total: 2.56s	remaining: 5.35s
97:	learn: 18.8636531	total: 2.58s	remaining: 5.32s
98:	learn: 18.7739910	total: 2.6s	remaining: 5.29s
99:	learn: 18.6948867	total: 2.63s	remaining: 5.26s
100:	learn: 18.5747433	total: 2.65s	remaining: 5.23s
101:	learn: 18.5307499	total: 2.68s	remaining: 5.2s
102:	learn: 18.4248127	total: 2.7s	remaining: 5.17s
103:	learn: 18.3301727	total: 2.72s	remaining: 5.13s
104:	learn: 18.2579998	total: 2.75s	remaining: 5.11s
105:	learn: 18.1614231	total: 2.79s	remaining: 5.1s
106:	learn: 18.0748134	total: 2.81s	remaining: 5.07s
107:	learn: 17.9862898	total: 2.83s	remaining: 5.04s
108:	learn: 17.9368507	total: 2.86s	remaining: 5.01s
109:	learn: 17.8058561	total: 2.88s	remaining: 4.98s
110:	learn: 17.7371383	total: 2.91s	remaining: 4.95s
111:	learn: 17.6303538	total: 2.93s	remaining: 4.92s
112:	learn: 17.5449989	total: 2.96s	remaining: 4.89s
113:	learn: 17.4776008	total: 2.98s	remaining: 4.86s
114:	learn: 17.3648029	total: 3.01s	remaining: 4.84s
115:	learn: 17.2618916	total: 3.04s	remaining: 4.82s
116:	learn: 17.2111539	total: 3.06s	remaining: 4.78s
117:	learn: 17.1018870	total: 3.08s	remaining: 4.75s
118:	learn: 17.0024931	total: 3.11s	remaining: 4.73s
119:	learn: 16.9743860	total: 3.13s	remaining: 4.7s
120:	learn: 16.9130305	total: 3.15s	remaining: 4.67s
121:	learn: 16.8016712	total: 3.18s	remaining: 4.64s
122:	learn: 16.7261518	total: 3.21s	remaining: 4.61s
123:	learn: 16.6593504	total: 3.24s	remaining: 4.6s
124:	learn: 16.5732663	total: 3.26s	remaining: 4.57s
125:	learn: 16.4947922	total: 3.29s	remaining: 4.54s
126:	learn: 16.3991688	total: 3.31s	remaining: 4.51s
127:	learn: 16.3086895	total: 3.34s	remaining: 4.49s
128:	learn: 16.2101210	total: 3.36s	remaining: 4.46s
129:	learn: 16.1541963	total: 3.39s	remaining: 4.43s
130:	learn: 16.0790764	total: 3.42s	remaining: 4.41s
131:	learn: 16.0139723	total: 3.44s	remaining: 4.38s
132:	learn: 15.8906448	total: 3.47s	remaining: 4.35s
133:	learn: 15.8064421	total: 3.49s	remaining: 4.33s
134:	learn: 15.7265305	total: 3.52s	remaining: 4.3s
135:	learn: 15.6621677	total: 3.54s	remaining: 4.27s
136:	learn: 15.5922471	total: 3.56s	remaining: 4.24s
137:	learn: 15.5550517	total: 3.59s	remaining: 4.21s
138:	learn: 15.5278059	total: 3.61s	remaining: 4.19s
139:	learn: 15.4494043	total: 3.65s	remaining: 4.17s
140:	learn: 15.3765788	total: 3.67s	remaining: 4.14s
141:	learn: 15.3158598	total: 3.7s	remaining: 4.12s
142:	learn: 15.2121980	total: 3.72s	remaining: 4.09s
143:	learn: 15.0893974	total: 3.75s	remaining: 4.06s
144:	learn: 15.0074795	total: 3.77s	remaining: 4.03s
145:	learn: 14.9489574	total: 3.8s	remaining: 4s
146:	learn: 14.9258844	total: 3.82s	remaining: 3.98s
147:	learn: 14.8471123	total: 3.85s	remaining: 3.95s
148:	learn: 14.7745818	total: 3.88s	remaining: 3.93s
149:	learn: 14.6905246	total: 3.9s	remaining: 3.9s
150:	learn: 14.5873644	total: 3.93s	remaining: 3.88s
151:	learn: 14.5337902	total: 3.95s	remaining: 3.85s
152:	learn: 14.4749040	total: 3.98s	remaining: 3.82s
153:	learn: 14.3890824	total: 4s	remaining: 3.79s
154:	learn: 14.3259009	total: 4.03s	remaining: 3.77s
155:	learn: 14.2113192	total: 4.05s	remaining: 3.74s
156:	learn: 14.1718909	total: 4.09s	remaining: 3.73s
157:	learn: 14.1110356	total: 4.12s	remaining: 3.71s
158:	learn: 14.0362591	total: 4.15s	remaining: 3.68s
159:	learn: 13.9188238	total: 4.18s	remaining: 3.66s
160:	learn: 13.7740452	total: 4.21s	remaining: 3.63s
161:	learn: 13.7228642	total: 4.23s	remaining: 3.61s
162:	learn: 13.6648536	total: 4.26s	remaining: 3.58s
163:	learn: 13.5724722	total: 4.3s	remaining: 3.56s
164:	learn: 13.5141405	total: 4.33s	remaining: 3.54s
165:	learn: 13.4267305	total: 4.35s	remaining: 3.51s
166:	learn: 13.3370179	total: 4.38s	remaining: 3.49s
167:	learn: 13.2503127	total: 4.41s	remaining: 3.46s
168:	learn: 13.1743816	total: 4.43s	remaining: 3.44s
169:	learn: 13.1087726	total: 4.46s	remaining: 3.41s
170:	learn: 13.0426739	total: 4.49s	remaining: 3.39s
171:	learn: 12.9968745	total: 4.53s	remaining: 3.37s
172:	learn: 12.9301422	total: 4.56s	remaining: 3.35s
173:	learn: 12.9104864	total: 4.59s	remaining: 3.32s
174:	learn: 12.8199271	total: 4.62s	remaining: 3.3s
175:	learn: 12.7796485	total: 4.64s	remaining: 3.27s
176:	learn: 12.6883779	total: 4.67s	remaining: 3.25s
177:	learn: 12.5869619	total: 4.7s	remaining: 3.22s
178:	learn: 12.5397815	total: 4.73s	remaining: 3.2s
179:	learn: 12.4692676	total: 4.76s	remaining: 3.17s
180:	learn: 12.4433237	total: 4.8s	remaining: 3.15s
181:	learn: 12.3985342	total: 4.82s	remaining: 3.13s
182:	learn: 12.3635932	total: 4.85s	remaining: 3.1s
183:	learn: 12.2512719	total: 4.88s	remaining: 3.07s
184:	learn: 12.1558647	total: 4.9s	remaining: 3.05s
185:	learn: 12.1369112	total: 4.93s	remaining: 3.02s
186:	learn: 12.0798700	total: 4.97s	remaining: 3s
187:	learn: 12.0010668	total: 5s	remaining: 2.98s
188:	learn: 11.9442666	total: 5.03s	remaining: 2.95s
189:	learn: 11.8628888	total: 5.07s	remaining: 2.93s
190:	learn: 11.7616769	total: 5.09s	remaining: 2.91s
191:	learn: 11.6699926	total: 5.12s	remaining: 2.88s
192:	learn: 11.6392816	total: 5.15s	remaining: 2.86s
193:	learn: 11.5955244	total: 5.18s	remaining: 2.83s
194:	learn: 11.5772160	total: 5.21s	remaining: 2.8s
195:	learn: 11.5465581	total: 5.24s	remaining: 2.78s
196:	learn: 11.4564641	total: 5.26s	remaining: 2.75s
197:	learn: 11.3978031	total: 5.29s	remaining: 2.73s
198:	learn: 11.3460158	total: 5.32s	remaining: 2.7s
199:	learn: 11.2627720	total: 5.35s	remaining: 2.68s
200:	learn: 11.2162738	total: 5.38s	remaining: 2.65s
201:	learn: 11.1905894	total: 5.41s	remaining: 2.63s
202:	learn: 11.1639946	total: 5.44s	remaining: 2.6s
203:	learn: 11.0885906	total: 5.47s	remaining: 2.57s
204:	learn: 11.0284516	total: 5.5s	remaining: 2.55s
205:	learn: 10.9731416	total: 5.53s	remaining: 2.52s
206:	learn: 10.9378121	total: 5.56s	remaining: 2.5s
207:	learn: 10.8935640	total: 5.58s	remaining: 2.47s
208:	learn: 10.8572901	total: 5.62s	remaining: 2.44s
209:	learn: 10.8037961	total: 5.64s	remaining: 2.42s
210:	learn: 10.7458107	total: 5.67s	remaining: 2.39s
211:	learn: 10.7082447	total: 5.7s	remaining: 2.36s
212:	learn: 10.6599173	total: 5.72s	remaining: 2.34s
213:	learn: 10.6028419	total: 5.75s	remaining: 2.31s
214:	learn: 10.5627192	total: 5.78s	remaining: 2.29s
215:	learn: 10.5213774	total: 5.81s	remaining: 2.26s
216:	learn: 10.4732429	total: 5.84s	remaining: 2.23s
217:	learn: 10.4188551	total: 5.87s	remaining: 2.21s
218:	learn: 10.3740622	total: 5.9s	remaining: 2.18s
219:	learn: 10.3399349	total: 5.93s	remaining: 2.15s
220:	learn: 10.2824635	total: 5.96s	remaining: 2.13s
221:	learn: 10.2458277	total: 5.98s	remaining: 2.1s
222:	learn: 10.2341252	total: 6.02s	remaining: 2.08s
223:	learn: 10.1392287	total: 6.05s	remaining: 2.05s
224:	learn: 10.1088124	total: 6.08s	remaining: 2.03s
225:	learn: 10.0471375	total: 6.11s	remaining: 2s
226:	learn: 9.9852333	total: 6.13s	remaining: 1.97s
227:	learn: 9.9292294	total: 6.16s	remaining: 1.95s
228:	learn: 9.9015453	total: 6.18s	remaining: 1.92s
229:	learn: 9.8905067	total: 6.21s	remaining: 1.89s
230:	learn: 9.8507503	total: 6.25s	remaining: 1.87s
231:	learn: 9.7964411	total: 6.29s	remaining: 1.84s
232:	learn: 9.7540779	total: 6.31s	remaining: 1.81s
233:	learn: 9.7051776	total: 6.34s	remaining: 1.79s
234:	learn: 9.6539147	total: 6.37s	remaining: 1.76s
235:	learn: 9.6073112	total: 6.39s	remaining: 1.73s
236:	learn: 9.5975483	total: 6.42s	remaining: 1.71s
237:	learn: 9.5489561	total: 6.45s	remaining: 1.68s
238:	learn: 9.5160122	total: 6.48s	remaining: 1.65s
239:	learn: 9.4620416	total: 6.51s	remaining: 1.63s
240:	learn: 9.4463510	total: 6.54s	remaining: 1.6s
241:	learn: 9.4389200	total: 6.57s	remaining: 1.57s
242:	learn: 9.4078400	total: 6.6s	remaining: 1.55s
243:	learn: 9.3866265	total: 6.62s	remaining: 1.52s
244:	learn: 9.3473501	total: 6.65s	remaining: 1.49s
245:	learn: 9.2861016	total: 6.69s	remaining: 1.47s
246:	learn: 9.2734740	total: 6.71s	remaining: 1.44s
247:	learn: 9.2343522	total: 6.75s	remaining: 1.42s
248:	learn: 9.2223405	total: 6.78s	remaining: 1.39s
249:	learn: 9.2140074	total: 6.8s	remaining: 1.36s
250:	learn: 9.2046313	total: 6.83s	remaining: 1.33s
251:	learn: 9.1705343	total: 6.86s	remaining: 1.31s
252:	learn: 9.1635400	total: 6.89s	remaining: 1.28s
253:	learn: 9.1201103	total: 6.92s	remaining: 1.25s
254:	learn: 9.0874222	total: 6.95s	remaining: 1.23s
255:	learn: 9.0546404	total: 6.97s	remaining: 1.2s
256:	learn: 9.0294210	total: 7s	remaining: 1.17s
257:	learn: 8.9918549	total: 7.03s	remaining: 1.14s
258:	learn: 8.9860821	total: 7.06s	remaining: 1.12s
259:	learn: 8.9445721	total: 7.09s	remaining: 1.09s
260:	learn: 8.9204013	total: 7.12s	remaining: 1.06s
261:	learn: 8.8802796	total: 7.15s	remaining: 1.04s
262:	learn: 8.8319848	total: 7.18s	remaining: 1.01s
263:	learn: 8.8040786	total: 7.21s	remaining: 983ms
264:	learn: 8.7674300	total: 7.24s	remaining: 957ms
265:	learn: 8.7486932	total: 7.27s	remaining: 929ms
266:	learn: 8.7223059	total: 7.3s	remaining: 903ms
267:	learn: 8.7108992	total: 7.33s	remaining: 875ms
268:	learn: 8.7026068	total: 7.36s	remaining: 848ms
269:	learn: 8.6836280	total: 7.38s	remaining: 820ms
270:	learn: 8.6467938	total: 7.41s	remaining: 793ms
271:	learn: 8.6111555	total: 7.44s	remaining: 766ms
272:	learn: 8.5824973	total: 7.47s	remaining: 739ms
273:	learn: 8.5682745	total: 7.5s	remaining: 711ms
274:	learn: 8.5416779	total: 7.52s	remaining: 684ms
275:	learn: 8.5066950	total: 7.56s	remaining: 658ms
276:	learn: 8.4970713	total: 7.59s	remaining: 630ms
277:	learn: 8.4596116	total: 7.62s	remaining: 603ms
278:	learn: 8.4475857	total: 7.65s	remaining: 576ms
279:	learn: 8.4267482	total: 7.67s	remaining: 548ms
280:	learn: 8.4095246	total: 7.7s	remaining: 521ms
281:	learn: 8.3674941	total: 7.74s	remaining: 494ms
282:	learn: 8.3151248	total: 7.77s	remaining: 467ms
283:	learn: 8.2823195	total: 7.8s	remaining: 439ms
284:	learn: 8.2593854	total: 7.83s	remaining: 412ms
285:	learn: 8.2331325	total: 7.85s	remaining: 384ms
286:	learn: 8.1912221	total: 7.88s	remaining: 357ms
287:	learn: 8.1688810	total: 7.91s	remaining: 329ms
288:	learn: 8.1497193	total: 7.93s	remaining: 302ms
289:	learn: 8.1293205	total: 7.97s	remaining: 275ms
290:	learn: 8.1107539	total: 8s	remaining: 248ms
291:	learn: 8.0849956	total: 8.03s	remaining: 220ms
292:	learn: 8.0440544	total: 8.06s	remaining: 193ms
293:	learn: 8.0183325	total: 8.09s	remaining: 165ms
294:	learn: 7.9783905	total: 8.12s	remaining: 138ms
295:	learn: 7.9644989	total: 8.14s	remaining: 110ms
296:	learn: 7.9392598	total: 8.18s	remaining: 82.6ms
297:	learn: 7.9167538	total: 8.21s	remaining: 55.1ms
298:	learn: 7.8751558	total: 8.24s	remaining: 27.6ms
299:	learn: 7.8630471	total: 8.27s	remaining: 0us
0:	learn: 27.2098005	total: 1.18ms	remaining: 235ms
1:	learn: 26.3343827	total: 2.08ms	remaining: 206ms
2:	learn: 25.6574052	total: 3.07ms	remaining: 201ms
3:	learn: 24.9562825	total: 4.06ms	remaining: 199ms
4:	learn: 24.4317699	total: 5.02ms	remaining: 196ms
5:	learn: 23.7320689	total: 6.01ms	remaining: 194ms
6:	learn: 23.3827801	total: 6.92ms	remaining: 191ms
7:	learn: 22.7888606	total: 7.77ms	remaining: 186ms
8:	learn: 22.4669531	total: 8.73ms	remaining: 185ms
9:	learn: 22.2055034	total: 9.78ms	remaining: 186ms
10:	learn: 21.8570874	total: 10.7ms	remaining: 185ms
11:	learn: 21.5043513	total: 11.7ms	remaining: 183ms
12:	learn: 21.2543673	total: 12.9ms	remaining: 186ms
13:	learn: 21.0521696	total: 15.9ms	remaining: 212ms
14:	learn: 20.7543959	total: 17.2ms	remaining: 213ms
15:	learn: 20.4439240	total: 18.7ms	remaining: 215ms
16:	learn: 20.1992431	total: 20.5ms	remaining: 221ms
17:	learn: 20.0638774	total: 22.8ms	remaining: 231ms
18:	learn: 19.7614893	total: 24.9ms	remaining: 237ms
19:	learn: 19.4549829	total: 27.2ms	remaining: 245ms
20:	learn: 19.2969790	total: 29.1ms	remaining: 248ms
21:	learn: 19.2377413	total: 30.8ms	remaining: 249ms
22:	learn: 19.1413322	total: 32.9ms	remaining: 253ms
23:	learn: 19.0898736	total: 34ms	remaining: 250ms
24:	learn: 18.9125043	total: 35.1ms	remaining: 246ms
25:	learn: 18.8580056	total: 36.2ms	remaining: 242ms
26:	learn: 18.7027921	total: 38ms	remaining: 243ms
27:	learn: 18.4581085	total: 39.4ms	remaining: 242ms
28:	learn: 18.2744442	total: 40.8ms	remaining: 241ms
29:	learn: 18.2413017	total: 41.9ms	remaining: 237ms
30:	learn: 18.1373470	total: 42.9ms	remaining: 234ms
31:	learn: 18.1034471	total: 44ms	remaining: 231ms
32:	learn: 17.9300374	total: 45.1ms	remaining: 228ms
33:	learn: 17.7887903	total: 46.2ms	remaining: 226ms
34:	learn: 17.7093050	total: 47.3ms	remaining: 223ms
35:	learn: 17.6643057	total: 48.5ms	remaining: 221ms
36:	learn: 17.5712827	total: 49.6ms	remaining: 218ms
37:	learn: 17.5313653	total: 50.6ms	remaining: 216ms
38:	learn: 17.4725144	total: 51.7ms	remaining: 213ms
39:	learn: 17.4182357	total: 52.8ms	remaining: 211ms
40:	learn: 17.2681647	total: 53.8ms	remaining: 209ms
41:	learn: 17.2206572	total: 54.9ms	remaining: 206ms
42:	learn: 17.0402321	total: 56.2ms	remaining: 205ms
43:	learn: 16.9839166	total: 57.3ms	remaining: 203ms
44:	learn: 16.9116414	total: 58.4ms	remaining: 201ms
45:	learn: 16.7802140	total: 59.4ms	remaining: 199ms
46:	learn: 16.6821396	total: 60.4ms	remaining: 197ms
47:	learn: 16.6370601	total: 61.5ms	remaining: 195ms
48:	learn: 16.5310125	total: 62.6ms	remaining: 193ms
49:	learn: 16.4962621	total: 63.7ms	remaining: 191ms
50:	learn: 16.4466663	total: 64.8ms	remaining: 189ms
51:	learn: 16.3887055	total: 65.9ms	remaining: 188ms
52:	learn: 16.3434793	total: 66.9ms	remaining: 186ms
53:	learn: 16.2814651	total: 68ms	remaining: 184ms
54:	learn: 16.2060157	total: 69.5ms	remaining: 183ms
55:	learn: 16.1340288	total: 70.6ms	remaining: 182ms
56:	learn: 16.0726882	total: 76.5ms	remaining: 192ms
57:	learn: 15.9930999	total: 77.5ms	remaining: 190ms
58:	learn: 15.8689364	total: 78.4ms	remaining: 187ms
59:	learn: 15.8130924	total: 79.4ms	remaining: 185ms
60:	learn: 15.7895967	total: 80.3ms	remaining: 183ms
61:	learn: 15.6640340	total: 81.3ms	remaining: 181ms
62:	learn: 15.6177669	total: 82.7ms	remaining: 180ms
63:	learn: 15.5090870	total: 83.9ms	remaining: 178ms
64:	learn: 15.4761522	total: 85.1ms	remaining: 177ms
65:	learn: 15.4287462	total: 86.3ms	remaining: 175ms
66:	learn: 15.3888538	total: 87.4ms	remaining: 173ms
67:	learn: 15.3440609	total: 88.4ms	remaining: 172ms
68:	learn: 15.3201311	total: 89.8ms	remaining: 170ms
69:	learn: 15.3079114	total: 91.1ms	remaining: 169ms
70:	learn: 15.2159640	total: 92.3ms	remaining: 168ms
71:	learn: 15.1112749	total: 93.2ms	remaining: 166ms
72:	learn: 15.0596912	total: 94.1ms	remaining: 164ms
73:	learn: 14.9952809	total: 95.1ms	remaining: 162ms
74:	learn: 14.9128812	total: 96ms	remaining: 160ms
75:	learn: 14.8761824	total: 96.9ms	remaining: 158ms
76:	learn: 14.8293903	total: 97.9ms	remaining: 156ms
77:	learn: 14.7845132	total: 98.9ms	remaining: 155ms
78:	learn: 14.7347895	total: 99.8ms	remaining: 153ms
79:	learn: 14.6942607	total: 101ms	remaining: 151ms
80:	learn: 14.5997662	total: 102ms	remaining: 149ms
81:	learn: 14.5782796	total: 103ms	remaining: 148ms
82:	learn: 14.5097324	total: 104ms	remaining: 146ms
83:	learn: 14.4594549	total: 104ms	remaining: 144ms
84:	learn: 14.3700903	total: 105ms	remaining: 143ms
85:	learn: 14.2967114	total: 106ms	remaining: 141ms
86:	learn: 14.2477778	total: 107ms	remaining: 139ms
87:	learn: 14.2229719	total: 108ms	remaining: 138ms
88:	learn: 14.1534477	total: 109ms	remaining: 136ms
89:	learn: 14.0762949	total: 110ms	remaining: 134ms
90:	learn: 14.0123553	total: 111ms	remaining: 133ms
91:	learn: 13.9603280	total: 112ms	remaining: 131ms
92:	learn: 13.9002227	total: 113ms	remaining: 130ms
93:	learn: 13.8719854	total: 113ms	remaining: 128ms
94:	learn: 13.8348742	total: 114ms	remaining: 126ms
95:	learn: 13.8153499	total: 115ms	remaining: 125ms
96:	learn: 13.7569162	total: 116ms	remaining: 124ms
97:	learn: 13.7360893	total: 117ms	remaining: 122ms
98:	learn: 13.6752128	total: 118ms	remaining: 121ms
99:	learn: 13.6103165	total: 119ms	remaining: 119ms
100:	learn: 13.5527615	total: 120ms	remaining: 118ms
101:	learn: 13.5004011	total: 121ms	remaining: 116ms
102:	learn: 13.4335179	total: 122ms	remaining: 115ms
103:	learn: 13.3687362	total: 123ms	remaining: 113ms
104:	learn: 13.3043781	total: 124ms	remaining: 112ms
105:	learn: 13.2849717	total: 124ms	remaining: 110ms
106:	learn: 13.2526590	total: 125ms	remaining: 109ms
107:	learn: 13.2267137	total: 126ms	remaining: 108ms
108:	learn: 13.1819637	total: 127ms	remaining: 106ms
109:	learn: 13.1796765	total: 128ms	remaining: 105ms
110:	learn: 13.1605610	total: 129ms	remaining: 104ms
111:	learn: 13.1226709	total: 130ms	remaining: 102ms
112:	learn: 13.0665776	total: 131ms	remaining: 101ms
113:	learn: 13.0159115	total: 132ms	remaining: 99.7ms
114:	learn: 12.9566195	total: 133ms	remaining: 98.3ms
115:	learn: 12.9445833	total: 134ms	remaining: 97ms
116:	learn: 12.9257179	total: 135ms	remaining: 95.7ms
117:	learn: 12.8740419	total: 136ms	remaining: 94.4ms
118:	learn: 12.8151072	total: 137ms	remaining: 93.2ms
119:	learn: 12.7722999	total: 138ms	remaining: 92ms
120:	learn: 12.7357186	total: 139ms	remaining: 90.7ms
121:	learn: 12.7259232	total: 140ms	remaining: 89.4ms
122:	learn: 12.6951038	total: 141ms	remaining: 88.2ms
123:	learn: 12.6803516	total: 142ms	remaining: 86.9ms
124:	learn: 12.6533951	total: 143ms	remaining: 85.6ms
125:	learn: 12.6378921	total: 144ms	remaining: 84.3ms
126:	learn: 12.5920985	total: 144ms	remaining: 83ms
127:	learn: 12.5756200	total: 145ms	remaining: 81.7ms
128:	learn: 12.5672381	total: 146ms	remaining: 80.5ms
129:	learn: 12.5384815	total: 147ms	remaining: 79.2ms
130:	learn: 12.5292471	total: 148ms	remaining: 78ms
131:	learn: 12.4764701	total: 149ms	remaining: 76.8ms
132:	learn: 12.4280495	total: 150ms	remaining: 75.6ms
133:	learn: 12.3532545	total: 151ms	remaining: 74.4ms
134:	learn: 12.3267684	total: 152ms	remaining: 73.2ms
135:	learn: 12.2702669	total: 153ms	remaining: 72ms
136:	learn: 12.2040302	total: 154ms	remaining: 70.8ms
137:	learn: 12.1737311	total: 155ms	remaining: 69.6ms
138:	learn: 12.1686551	total: 156ms	remaining: 68.4ms
139:	learn: 12.1587600	total: 157ms	remaining: 67.1ms
140:	learn: 12.1470325	total: 158ms	remaining: 65.9ms
141:	learn: 12.1357223	total: 158ms	remaining: 64.7ms
142:	learn: 12.0994748	total: 159ms	remaining: 63.5ms
143:	learn: 12.0775514	total: 160ms	remaining: 62.3ms
144:	learn: 12.0674975	total: 161ms	remaining: 61.1ms
145:	learn: 12.0307414	total: 162ms	remaining: 59.9ms
146:	learn: 12.0251842	total: 163ms	remaining: 58.7ms
147:	learn: 12.0066431	total: 164ms	remaining: 57.5ms
148:	learn: 11.9888229	total: 165ms	remaining: 56.4ms
149:	learn: 11.9291047	total: 166ms	remaining: 55.2ms
150:	learn: 11.9266163	total: 167ms	remaining: 54ms
151:	learn: 11.8920246	total: 167ms	remaining: 52.9ms
152:	learn: 11.8626800	total: 168ms	remaining: 51.7ms
153:	learn: 11.8193888	total: 169ms	remaining: 50.6ms
154:	learn: 11.7925225	total: 170ms	remaining: 49.4ms
155:	learn: 11.7874661	total: 171ms	remaining: 48.3ms
156:	learn: 11.7861494	total: 172ms	remaining: 47.2ms
157:	learn: 11.7430931	total: 173ms	remaining: 46ms
158:	learn: 11.7366462	total: 174ms	remaining: 44.9ms
159:	learn: 11.6981704	total: 175ms	remaining: 43.8ms
160:	learn: 11.6506279	total: 176ms	remaining: 42.7ms
161:	learn: 11.6196206	total: 177ms	remaining: 41.6ms
162:	learn: 11.5823435	total: 178ms	remaining: 40.4ms
163:	learn: 11.5505083	total: 179ms	remaining: 39.3ms
164:	learn: 11.5403261	total: 180ms	remaining: 38.2ms
165:	learn: 11.5264917	total: 181ms	remaining: 37.1ms
166:	learn: 11.4987585	total: 182ms	remaining: 36ms
167:	learn: 11.4950795	total: 183ms	remaining: 34.8ms
168:	learn: 11.4783420	total: 184ms	remaining: 33.7ms
169:	learn: 11.4677279	total: 185ms	remaining: 32.6ms
170:	learn: 11.4659536	total: 186ms	remaining: 31.5ms
171:	learn: 11.4534216	total: 186ms	remaining: 30.4ms
172:	learn: 11.4245927	total: 187ms	remaining: 29.2ms
173:	learn: 11.3978034	total: 188ms	remaining: 28.1ms
174:	learn: 11.3859183	total: 189ms	remaining: 27ms
175:	learn: 11.3531419	total: 190ms	remaining: 25.9ms
176:	learn: 11.3141195	total: 191ms	remaining: 24.8ms
177:	learn: 11.2880690	total: 192ms	remaining: 23.7ms
178:	learn: 11.2771619	total: 193ms	remaining: 22.7ms
179:	learn: 11.2705445	total: 194ms	remaining: 21.6ms
180:	learn: 11.2550546	total: 195ms	remaining: 20.5ms
181:	learn: 11.2402205	total: 196ms	remaining: 19.4ms
182:	learn: 11.2109113	total: 197ms	remaining: 18.3ms
183:	learn: 11.2100213	total: 198ms	remaining: 17.2ms
184:	learn: 11.2075766	total: 199ms	remaining: 16.1ms
185:	learn: 11.2013252	total: 200ms	remaining: 15ms
186:	learn: 11.1953713	total: 201ms	remaining: 14ms
187:	learn: 11.1894718	total: 202ms	remaining: 12.9ms
188:	learn: 11.1837453	total: 203ms	remaining: 11.8ms
189:	learn: 11.1781835	total: 203ms	remaining: 10.7ms
190:	learn: 11.1727790	total: 204ms	remaining: 9.63ms
191:	learn: 11.1451811	total: 205ms	remaining: 8.55ms
192:	learn: 11.1039476	total: 206ms	remaining: 7.48ms
193:	learn: 11.0665613	total: 207ms	remaining: 6.4ms
194:	learn: 11.0567694	total: 208ms	remaining: 5.33ms
195:	learn: 11.0283937	total: 209ms	remaining: 4.26ms
196:	learn: 11.0250363	total: 210ms	remaining: 3.2ms
197:	learn: 11.0027907	total: 211ms	remaining: 2.13ms
198:	learn: 10.9841284	total: 212ms	remaining: 1.06ms
199:	learn: 10.9586799	total: 213ms	remaining: 0us
0:	learn: 41.8399605	total: 1.08ms	remaining: 215ms
1:	learn: 39.8395245	total: 2.05ms	remaining: 203ms
2:	learn: 38.1671235	total: 2.92ms	remaining: 192ms
3:	learn: 37.0670986	total: 3.86ms	remaining: 189ms
4:	learn: 36.0387813	total: 4.85ms	remaining: 189ms
5:	learn: 34.5265459	total: 5.84ms	remaining: 189ms
6:	learn: 33.0715315	total: 6.73ms	remaining: 186ms
7:	learn: 31.8808916	total: 7.58ms	remaining: 182ms
8:	learn: 31.2512994	total: 8.45ms	remaining: 179ms
9:	learn: 30.4893398	total: 9.34ms	remaining: 177ms
10:	learn: 29.4834649	total: 10.2ms	remaining: 176ms
11:	learn: 28.5128380	total: 11.2ms	remaining: 175ms
12:	learn: 27.6335700	total: 12.2ms	remaining: 175ms
13:	learn: 27.0319750	total: 13.1ms	remaining: 174ms
14:	learn: 26.2458582	total: 14.1ms	remaining: 174ms
15:	learn: 25.9281584	total: 15.2ms	remaining: 175ms
16:	learn: 25.5262964	total: 16.4ms	remaining: 176ms
17:	learn: 24.9203741	total: 17.3ms	remaining: 175ms
18:	learn: 24.5918814	total: 18.2ms	remaining: 173ms
19:	learn: 24.4119288	total: 19.1ms	remaining: 172ms
20:	learn: 24.1090477	total: 20.1ms	remaining: 171ms
21:	learn: 23.7056648	total: 21ms	remaining: 170ms
22:	learn: 23.5124674	total: 22.1ms	remaining: 170ms
23:	learn: 23.2386385	total: 23.1ms	remaining: 170ms
24:	learn: 23.1258198	total: 24ms	remaining: 168ms
25:	learn: 23.0302334	total: 24.9ms	remaining: 167ms
26:	learn: 22.9101035	total: 25.8ms	remaining: 165ms
27:	learn: 22.8003999	total: 26.7ms	remaining: 164ms
28:	learn: 22.5351620	total: 27.6ms	remaining: 163ms
29:	learn: 22.2539274	total: 28.6ms	remaining: 162ms
30:	learn: 22.1398507	total: 29.5ms	remaining: 161ms
31:	learn: 21.6820010	total: 30.4ms	remaining: 159ms
32:	learn: 21.5252543	total: 31.2ms	remaining: 158ms
33:	learn: 21.4370215	total: 32.1ms	remaining: 157ms
34:	learn: 21.3473723	total: 32.9ms	remaining: 155ms
35:	learn: 21.2921732	total: 33.8ms	remaining: 154ms
36:	learn: 21.1853093	total: 34.7ms	remaining: 153ms
37:	learn: 21.1054246	total: 35.6ms	remaining: 152ms
38:	learn: 21.0922990	total: 36.4ms	remaining: 150ms
39:	learn: 20.9578071	total: 37.3ms	remaining: 149ms
40:	learn: 20.8720350	total: 38.2ms	remaining: 148ms
41:	learn: 20.7978022	total: 39.3ms	remaining: 148ms
42:	learn: 20.7373973	total: 40.1ms	remaining: 147ms
43:	learn: 20.4878486	total: 41ms	remaining: 146ms
44:	learn: 20.4578479	total: 41.9ms	remaining: 144ms
45:	learn: 20.3634465	total: 42.9ms	remaining: 144ms
46:	learn: 20.3080237	total: 43.8ms	remaining: 143ms
47:	learn: 20.2271363	total: 44.6ms	remaining: 141ms
48:	learn: 20.0373064	total: 45.5ms	remaining: 140ms
49:	learn: 19.9912068	total: 46.5ms	remaining: 139ms
50:	learn: 19.8928950	total: 47.4ms	remaining: 139ms
51:	learn: 19.7876830	total: 48.3ms	remaining: 138ms
52:	learn: 19.7651180	total: 49.2ms	remaining: 137ms
53:	learn: 19.6813527	total: 50.1ms	remaining: 135ms
54:	learn: 19.5975589	total: 51ms	remaining: 134ms
55:	learn: 19.5478200	total: 51.9ms	remaining: 133ms
56:	learn: 19.3740847	total: 52.8ms	remaining: 132ms
57:	learn: 19.3662692	total: 53.6ms	remaining: 131ms
58:	learn: 19.2651964	total: 54.6ms	remaining: 130ms
59:	learn: 19.1392018	total: 55.6ms	remaining: 130ms
60:	learn: 19.1023492	total: 56.8ms	remaining: 130ms
61:	learn: 19.0748934	total: 57.8ms	remaining: 129ms
62:	learn: 19.0233897	total: 58.7ms	remaining: 128ms
63:	learn: 18.9164481	total: 59.6ms	remaining: 127ms
64:	learn: 18.8465411	total: 60.6ms	remaining: 126ms
65:	learn: 18.8043102	total: 61.5ms	remaining: 125ms
66:	learn: 18.7650830	total: 62.3ms	remaining: 124ms
67:	learn: 18.7271477	total: 63.3ms	remaining: 123ms
68:	learn: 18.5376883	total: 64.2ms	remaining: 122ms
69:	learn: 18.4564755	total: 65.1ms	remaining: 121ms
70:	learn: 18.3732756	total: 66ms	remaining: 120ms
71:	learn: 18.2872627	total: 66.9ms	remaining: 119ms
72:	learn: 18.1886808	total: 67.9ms	remaining: 118ms
73:	learn: 18.1041972	total: 68.8ms	remaining: 117ms
74:	learn: 18.0429272	total: 69.8ms	remaining: 116ms
75:	learn: 17.9595045	total: 70.6ms	remaining: 115ms
76:	learn: 17.9086262	total: 71.6ms	remaining: 114ms
77:	learn: 17.8460171	total: 72.6ms	remaining: 114ms
78:	learn: 17.7896667	total: 73.6ms	remaining: 113ms
79:	learn: 17.7371316	total: 74.5ms	remaining: 112ms
80:	learn: 17.6103533	total: 75.4ms	remaining: 111ms
81:	learn: 17.5698713	total: 76.3ms	remaining: 110ms
82:	learn: 17.5266322	total: 77.2ms	remaining: 109ms
83:	learn: 17.2655920	total: 78.1ms	remaining: 108ms
84:	learn: 17.2575650	total: 79ms	remaining: 107ms
85:	learn: 17.1664785	total: 80.1ms	remaining: 106ms
86:	learn: 16.9209435	total: 81.1ms	remaining: 105ms
87:	learn: 16.8316744	total: 82.1ms	remaining: 104ms
88:	learn: 16.7588828	total: 83ms	remaining: 104ms
89:	learn: 16.5509772	total: 84.1ms	remaining: 103ms
90:	learn: 16.4804665	total: 85ms	remaining: 102ms
91:	learn: 16.4442784	total: 86ms	remaining: 101ms
92:	learn: 16.3784172	total: 87ms	remaining: 100ms
93:	learn: 16.2804018	total: 88ms	remaining: 99.2ms
94:	learn: 16.2439906	total: 89ms	remaining: 98.4ms
95:	learn: 16.2110795	total: 89.9ms	remaining: 97.4ms
96:	learn: 16.1715562	total: 90.9ms	remaining: 96.5ms
97:	learn: 16.0669024	total: 91.9ms	remaining: 95.6ms
98:	learn: 15.8722132	total: 92.9ms	remaining: 94.8ms
99:	learn: 15.8486533	total: 94ms	remaining: 94ms
100:	learn: 15.8165655	total: 94.9ms	remaining: 93.1ms
101:	learn: 15.7949298	total: 96ms	remaining: 92.2ms
102:	learn: 15.7201286	total: 96.9ms	remaining: 91.3ms
103:	learn: 15.6755371	total: 98ms	remaining: 90.5ms
104:	learn: 15.6405255	total: 99ms	remaining: 89.5ms
105:	learn: 15.6117943	total: 100ms	remaining: 88.7ms
106:	learn: 15.5793622	total: 101ms	remaining: 87.8ms
107:	learn: 15.5402277	total: 102ms	remaining: 87ms
108:	learn: 15.4630827	total: 103ms	remaining: 86.1ms
109:	learn: 15.4065161	total: 104ms	remaining: 85.2ms
110:	learn: 15.3699228	total: 105ms	remaining: 84.4ms
111:	learn: 15.2947040	total: 107ms	remaining: 83.7ms
112:	learn: 15.2833895	total: 108ms	remaining: 82.8ms
113:	learn: 15.2249854	total: 109ms	remaining: 81.9ms
114:	learn: 15.1836455	total: 110ms	remaining: 81ms
115:	learn: 15.1523562	total: 111ms	remaining: 80.2ms
116:	learn: 15.1125302	total: 112ms	remaining: 79.3ms
117:	learn: 15.0713590	total: 113ms	remaining: 78.5ms
118:	learn: 15.0134383	total: 114ms	remaining: 77.7ms
119:	learn: 14.9678232	total: 115ms	remaining: 76.8ms
120:	learn: 14.9332348	total: 116ms	remaining: 75.9ms
121:	learn: 14.8952479	total: 117ms	remaining: 74.9ms
122:	learn: 14.8451629	total: 118ms	remaining: 73.9ms
123:	learn: 14.8122591	total: 119ms	remaining: 72.9ms
124:	learn: 14.8059710	total: 120ms	remaining: 71.9ms
125:	learn: 14.7875208	total: 121ms	remaining: 70.9ms
126:	learn: 14.7239849	total: 122ms	remaining: 70.1ms
127:	learn: 14.7029419	total: 123ms	remaining: 69.2ms
128:	learn: 14.6633912	total: 124ms	remaining: 68.5ms
129:	learn: 14.6443330	total: 125ms	remaining: 67.4ms
130:	learn: 14.5974847	total: 126ms	remaining: 66.4ms
131:	learn: 14.5479805	total: 127ms	remaining: 65.5ms
132:	learn: 14.5134226	total: 128ms	remaining: 64.5ms
133:	learn: 14.4909207	total: 129ms	remaining: 63.5ms
134:	learn: 14.2973404	total: 130ms	remaining: 62.5ms
135:	learn: 14.2837051	total: 131ms	remaining: 61.5ms
136:	learn: 14.2518953	total: 132ms	remaining: 60.5ms
137:	learn: 14.2142342	total: 132ms	remaining: 59.5ms
138:	learn: 14.1815533	total: 133ms	remaining: 58.5ms
139:	learn: 14.1787829	total: 134ms	remaining: 57.5ms
140:	learn: 14.1736615	total: 135ms	remaining: 56.5ms
141:	learn: 14.1478939	total: 136ms	remaining: 55.5ms
142:	learn: 14.0693243	total: 137ms	remaining: 54.5ms
143:	learn: 14.0493752	total: 138ms	remaining: 53.5ms
144:	learn: 14.0073520	total: 139ms	remaining: 52.6ms
145:	learn: 13.9992690	total: 140ms	remaining: 51.6ms
146:	learn: 13.9826951	total: 140ms	remaining: 50.7ms
147:	learn: 13.9355206	total: 141ms	remaining: 49.7ms
148:	learn: 13.8866829	total: 142ms	remaining: 48.8ms
149:	learn: 13.8116862	total: 144ms	remaining: 47.8ms
150:	learn: 13.7917979	total: 145ms	remaining: 46.9ms
151:	learn: 13.7656086	total: 146ms	remaining: 46ms
152:	learn: 13.7544547	total: 147ms	remaining: 45.1ms
153:	learn: 13.7143754	total: 148ms	remaining: 44.1ms
154:	learn: 13.6940602	total: 149ms	remaining: 43.2ms
155:	learn: 13.6895644	total: 150ms	remaining: 42.2ms
156:	learn: 13.6676083	total: 151ms	remaining: 41.3ms
157:	learn: 13.6351956	total: 152ms	remaining: 40.3ms
158:	learn: 13.6030803	total: 153ms	remaining: 39.4ms
159:	learn: 13.5945618	total: 154ms	remaining: 38.4ms
160:	learn: 13.5695407	total: 155ms	remaining: 37.5ms
161:	learn: 13.5265094	total: 156ms	remaining: 36.6ms
162:	learn: 13.5035584	total: 157ms	remaining: 35.7ms
163:	learn: 13.4960504	total: 158ms	remaining: 34.7ms
164:	learn: 13.4734059	total: 159ms	remaining: 33.8ms
165:	learn: 13.4449073	total: 160ms	remaining: 32.8ms
166:	learn: 13.3719784	total: 161ms	remaining: 31.9ms
167:	learn: 13.3612519	total: 162ms	remaining: 30.9ms
168:	learn: 13.3166457	total: 164ms	remaining: 30ms
169:	learn: 13.2650631	total: 166ms	remaining: 29.4ms
170:	learn: 13.2613924	total: 168ms	remaining: 28.5ms
171:	learn: 13.2301308	total: 169ms	remaining: 27.5ms
172:	learn: 13.1981807	total: 171ms	remaining: 26.6ms
173:	learn: 13.1820083	total: 172ms	remaining: 25.7ms
174:	learn: 13.1486084	total: 173ms	remaining: 24.8ms
175:	learn: 13.1306816	total: 175ms	remaining: 23.8ms
176:	learn: 13.0921081	total: 176ms	remaining: 22.9ms
177:	learn: 13.0716664	total: 178ms	remaining: 22ms
178:	learn: 13.0116426	total: 179ms	remaining: 21ms
179:	learn: 13.0035937	total: 181ms	remaining: 20.1ms
180:	learn: 12.9959191	total: 183ms	remaining: 19.2ms
181:	learn: 12.9799372	total: 184ms	remaining: 18.2ms
182:	learn: 12.9651183	total: 185ms	remaining: 17.2ms
183:	learn: 12.9313512	total: 186ms	remaining: 16.2ms
184:	learn: 12.8921355	total: 188ms	remaining: 15.2ms
185:	learn: 12.8468364	total: 189ms	remaining: 14.2ms
186:	learn: 12.8397824	total: 191ms	remaining: 13.3ms
187:	learn: 12.8033368	total: 192ms	remaining: 12.3ms
188:	learn: 12.7922578	total: 193ms	remaining: 11.2ms
189:	learn: 12.7851006	total: 194ms	remaining: 10.2ms
190:	learn: 12.7465417	total: 195ms	remaining: 9.21ms
191:	learn: 12.7206730	total: 196ms	remaining: 8.18ms
192:	learn: 12.6917382	total: 197ms	remaining: 7.16ms
193:	learn: 12.6844838	total: 198ms	remaining: 6.14ms
194:	learn: 12.6725723	total: 200ms	remaining: 5.12ms
195:	learn: 12.6348524	total: 201ms	remaining: 4.09ms
196:	learn: 12.5954867	total: 202ms	remaining: 3.07ms
197:	learn: 12.5564179	total: 203ms	remaining: 2.05ms
198:	learn: 12.5135119	total: 204ms	remaining: 1.02ms
199:	learn: 12.4922679	total: 205ms	remaining: 0us
0:	learn: 45.6319620	total: 1.21ms	remaining: 241ms
1:	learn: 44.3043392	total: 2.21ms	remaining: 219ms
2:	learn: 43.1283328	total: 3.09ms	remaining: 203ms
3:	learn: 42.1165182	total: 4ms	remaining: 196ms
4:	learn: 40.7081197	total: 4.86ms	remaining: 189ms
5:	learn: 39.1683248	total: 5.71ms	remaining: 185ms
6:	learn: 38.5039040	total: 6.66ms	remaining: 184ms
7:	learn: 37.7350474	total: 7.58ms	remaining: 182ms
8:	learn: 37.4046794	total: 8.51ms	remaining: 181ms
9:	learn: 37.0169556	total: 9.46ms	remaining: 180ms
10:	learn: 36.5795069	total: 10.4ms	remaining: 179ms
11:	learn: 35.5800530	total: 11.4ms	remaining: 178ms
12:	learn: 34.5521399	total: 12.3ms	remaining: 177ms
13:	learn: 33.5582170	total: 13.2ms	remaining: 176ms
14:	learn: 32.9976975	total: 14.2ms	remaining: 176ms
15:	learn: 32.7608602	total: 15.2ms	remaining: 175ms
16:	learn: 31.9106700	total: 16.2ms	remaining: 175ms
17:	learn: 31.7005703	total: 17.1ms	remaining: 173ms
18:	learn: 31.4912900	total: 18.1ms	remaining: 172ms
19:	learn: 30.9522447	total: 18.9ms	remaining: 170ms
20:	learn: 30.7380451	total: 19.8ms	remaining: 169ms
21:	learn: 30.3813894	total: 20.8ms	remaining: 168ms
22:	learn: 29.5720326	total: 21.7ms	remaining: 167ms
23:	learn: 28.8863059	total: 22.7ms	remaining: 166ms
24:	learn: 28.2766241	total: 23.6ms	remaining: 165ms
25:	learn: 27.9580003	total: 24.5ms	remaining: 164ms
26:	learn: 27.7731218	total: 25.5ms	remaining: 163ms
27:	learn: 27.3275009	total: 26.4ms	remaining: 162ms
28:	learn: 27.0312604	total: 27.3ms	remaining: 161ms
29:	learn: 26.8675371	total: 28.2ms	remaining: 160ms
30:	learn: 26.7948952	total: 29.1ms	remaining: 159ms
31:	learn: 26.2581075	total: 30ms	remaining: 157ms
32:	learn: 25.8681938	total: 30.9ms	remaining: 156ms
33:	learn: 25.6546902	total: 31.9ms	remaining: 156ms
34:	learn: 25.5311297	total: 33ms	remaining: 155ms
35:	learn: 25.3876780	total: 33.9ms	remaining: 154ms
36:	learn: 25.2840107	total: 34.8ms	remaining: 153ms
37:	learn: 25.1389723	total: 35.8ms	remaining: 152ms
38:	learn: 25.0393739	total: 36.7ms	remaining: 152ms
39:	learn: 24.9347083	total: 37.7ms	remaining: 151ms
40:	learn: 24.8003584	total: 38.6ms	remaining: 150ms
41:	learn: 24.7123645	total: 39.6ms	remaining: 149ms
42:	learn: 24.6180734	total: 40.5ms	remaining: 148ms
43:	learn: 24.3480769	total: 41.4ms	remaining: 147ms
44:	learn: 24.1730959	total: 42.3ms	remaining: 146ms
45:	learn: 24.0893664	total: 43.2ms	remaining: 145ms
46:	learn: 24.0002718	total: 44.1ms	remaining: 144ms
47:	learn: 23.9417882	total: 45ms	remaining: 143ms
48:	learn: 23.7430851	total: 45.9ms	remaining: 142ms
49:	learn: 23.6783500	total: 46.8ms	remaining: 140ms
50:	learn: 23.5548971	total: 47.8ms	remaining: 140ms
51:	learn: 23.5050161	total: 48.7ms	remaining: 139ms
52:	learn: 23.3133504	total: 49.7ms	remaining: 138ms
53:	learn: 23.2137338	total: 50.6ms	remaining: 137ms
54:	learn: 22.9382603	total: 51.6ms	remaining: 136ms
55:	learn: 22.8697860	total: 52.5ms	remaining: 135ms
56:	learn: 22.7549872	total: 53.4ms	remaining: 134ms
57:	learn: 22.5714124	total: 54.4ms	remaining: 133ms
58:	learn: 22.5247798	total: 55.3ms	remaining: 132ms
59:	learn: 22.3343607	total: 56.2ms	remaining: 131ms
60:	learn: 22.2762248	total: 57.2ms	remaining: 130ms
61:	learn: 22.2233450	total: 58.1ms	remaining: 129ms
62:	learn: 22.1435755	total: 59ms	remaining: 128ms
63:	learn: 22.0165239	total: 59.9ms	remaining: 127ms
64:	learn: 21.7645707	total: 61.4ms	remaining: 127ms
65:	learn: 21.4460607	total: 62.7ms	remaining: 127ms
66:	learn: 21.3715305	total: 63.9ms	remaining: 127ms
67:	learn: 21.3182268	total: 65.1ms	remaining: 126ms
68:	learn: 21.2436484	total: 66.2ms	remaining: 126ms
69:	learn: 21.1666993	total: 67.1ms	remaining: 125ms
70:	learn: 21.0851372	total: 68.1ms	remaining: 124ms
71:	learn: 20.8723719	total: 69ms	remaining: 123ms
72:	learn: 20.6321846	total: 69.9ms	remaining: 122ms
73:	learn: 20.4748023	total: 70.9ms	remaining: 121ms
74:	learn: 20.3227461	total: 71.7ms	remaining: 120ms
75:	learn: 20.2768617	total: 72.6ms	remaining: 118ms
76:	learn: 20.2066773	total: 73.6ms	remaining: 118ms
77:	learn: 19.9735308	total: 74.5ms	remaining: 117ms
78:	learn: 19.8733222	total: 75.4ms	remaining: 116ms
79:	learn: 19.8392313	total: 76.3ms	remaining: 115ms
80:	learn: 19.7079948	total: 77.3ms	remaining: 113ms
81:	learn: 19.6793430	total: 78.2ms	remaining: 113ms
82:	learn: 19.5027408	total: 79.3ms	remaining: 112ms
83:	learn: 19.4478712	total: 80.3ms	remaining: 111ms
84:	learn: 19.2261699	total: 81.4ms	remaining: 110ms
85:	learn: 19.0442767	total: 82.5ms	remaining: 109ms
86:	learn: 18.9740619	total: 83.5ms	remaining: 108ms
87:	learn: 18.9028166	total: 84.4ms	remaining: 107ms
88:	learn: 18.7887701	total: 85.4ms	remaining: 106ms
89:	learn: 18.6586954	total: 86.3ms	remaining: 106ms
90:	learn: 18.6037610	total: 87.3ms	remaining: 105ms
91:	learn: 18.5307810	total: 88.2ms	remaining: 104ms
92:	learn: 18.4319734	total: 89.2ms	remaining: 103ms
93:	learn: 18.2412652	total: 90.2ms	remaining: 102ms
94:	learn: 18.1850108	total: 91.2ms	remaining: 101ms
95:	learn: 18.0580961	total: 92.1ms	remaining: 99.8ms
96:	learn: 17.9469331	total: 93.2ms	remaining: 98.9ms
97:	learn: 17.7233371	total: 94.1ms	remaining: 97.9ms
98:	learn: 17.6691253	total: 95ms	remaining: 96.9ms
99:	learn: 17.5896117	total: 96ms	remaining: 96ms
100:	learn: 17.4929820	total: 97ms	remaining: 95ms
101:	learn: 17.4415284	total: 97.9ms	remaining: 94.1ms
102:	learn: 17.4027713	total: 99ms	remaining: 93.2ms
103:	learn: 17.3608480	total: 99.9ms	remaining: 92.3ms
104:	learn: 17.2231397	total: 101ms	remaining: 91.6ms
105:	learn: 17.2013305	total: 102ms	remaining: 90.6ms
106:	learn: 17.0949226	total: 104ms	remaining: 90.8ms
107:	learn: 17.0524045	total: 106ms	remaining: 90.1ms
108:	learn: 16.9598589	total: 107ms	remaining: 89.4ms
109:	learn: 16.9168343	total: 108ms	remaining: 88.6ms
110:	learn: 16.8959679	total: 110ms	remaining: 87.9ms
111:	learn: 16.7302824	total: 111ms	remaining: 87.1ms
112:	learn: 16.5980747	total: 112ms	remaining: 86.3ms
113:	learn: 16.5590019	total: 113ms	remaining: 85.5ms
114:	learn: 16.4877109	total: 115ms	remaining: 84.7ms
115:	learn: 16.4574907	total: 116ms	remaining: 84.2ms
116:	learn: 16.3070639	total: 118ms	remaining: 83.5ms
117:	learn: 16.2614840	total: 119ms	remaining: 82.6ms
118:	learn: 16.1657457	total: 120ms	remaining: 81.8ms
119:	learn: 16.0790650	total: 121ms	remaining: 81ms
120:	learn: 16.0001607	total: 123ms	remaining: 80.1ms
121:	learn: 15.9521882	total: 124ms	remaining: 79.1ms
122:	learn: 15.8118538	total: 125ms	remaining: 78ms
123:	learn: 15.7486251	total: 126ms	remaining: 77ms
124:	learn: 15.6859804	total: 127ms	remaining: 76.1ms
125:	learn: 15.6699779	total: 128ms	remaining: 75.3ms
126:	learn: 15.6307957	total: 129ms	remaining: 74.3ms
127:	learn: 15.5336410	total: 131ms	remaining: 73.5ms
128:	learn: 15.5044466	total: 132ms	remaining: 72.6ms
129:	learn: 15.4275538	total: 133ms	remaining: 71.6ms
130:	learn: 15.3808711	total: 134ms	remaining: 70.7ms
131:	learn: 15.3491239	total: 135ms	remaining: 69.7ms
132:	learn: 15.3087062	total: 136ms	remaining: 68.6ms
133:	learn: 15.2554858	total: 137ms	remaining: 67.6ms
134:	learn: 15.2204703	total: 138ms	remaining: 66.5ms
135:	learn: 15.1844824	total: 139ms	remaining: 65.5ms
136:	learn: 15.1224259	total: 140ms	remaining: 64.5ms
137:	learn: 15.1090267	total: 141ms	remaining: 63.4ms
138:	learn: 15.0871697	total: 142ms	remaining: 62.4ms
139:	learn: 15.0326035	total: 143ms	remaining: 61.4ms
140:	learn: 14.9595766	total: 144ms	remaining: 60.4ms
141:	learn: 14.9126505	total: 145ms	remaining: 59.3ms
142:	learn: 14.8762130	total: 146ms	remaining: 58.2ms
143:	learn: 14.8118319	total: 147ms	remaining: 57.2ms
144:	learn: 14.7748808	total: 148ms	remaining: 56.2ms
145:	learn: 14.7434799	total: 149ms	remaining: 55.2ms
146:	learn: 14.6922172	total: 150ms	remaining: 54.1ms
147:	learn: 14.6704760	total: 151ms	remaining: 53.1ms
148:	learn: 14.6455543	total: 152ms	remaining: 52.1ms
149:	learn: 14.6018164	total: 153ms	remaining: 51ms
150:	learn: 14.5826847	total: 154ms	remaining: 50ms
151:	learn: 14.5423604	total: 155ms	remaining: 49ms
152:	learn: 14.5132633	total: 156ms	remaining: 48ms
153:	learn: 14.4870430	total: 157ms	remaining: 46.9ms
154:	learn: 14.4526168	total: 158ms	remaining: 45.9ms
155:	learn: 14.3910798	total: 159ms	remaining: 44.8ms
156:	learn: 14.3783939	total: 160ms	remaining: 43.8ms
157:	learn: 14.3521778	total: 161ms	remaining: 42.7ms
158:	learn: 14.3144171	total: 162ms	remaining: 41.7ms
159:	learn: 14.3092817	total: 162ms	remaining: 40.6ms
160:	learn: 14.2902165	total: 163ms	remaining: 39.6ms
161:	learn: 14.2639661	total: 165ms	remaining: 38.6ms
162:	learn: 14.2479958	total: 166ms	remaining: 37.7ms
163:	learn: 14.2396704	total: 167ms	remaining: 36.7ms
164:	learn: 14.2139643	total: 168ms	remaining: 35.7ms
165:	learn: 14.2104344	total: 169ms	remaining: 34.6ms
166:	learn: 14.1738092	total: 170ms	remaining: 33.6ms
167:	learn: 14.1358066	total: 171ms	remaining: 32.6ms
168:	learn: 14.0959328	total: 172ms	remaining: 31.5ms
169:	learn: 14.0045648	total: 173ms	remaining: 30.5ms
170:	learn: 13.9744324	total: 174ms	remaining: 29.4ms
171:	learn: 13.9665835	total: 174ms	remaining: 28.4ms
172:	learn: 13.9514606	total: 175ms	remaining: 27.4ms
173:	learn: 13.9422037	total: 176ms	remaining: 26.3ms
174:	learn: 13.9332975	total: 177ms	remaining: 25.3ms
175:	learn: 13.8447726	total: 178ms	remaining: 24.3ms
176:	learn: 13.8314865	total: 179ms	remaining: 23.3ms
177:	learn: 13.8230164	total: 180ms	remaining: 22.3ms
178:	learn: 13.8155236	total: 181ms	remaining: 21.2ms
179:	learn: 13.8050153	total: 182ms	remaining: 20.2ms
180:	learn: 13.7696070	total: 183ms	remaining: 19.2ms
181:	learn: 13.7501626	total: 184ms	remaining: 18.2ms
182:	learn: 13.7177497	total: 185ms	remaining: 17.2ms
183:	learn: 13.6917237	total: 186ms	remaining: 16.2ms
184:	learn: 13.6512282	total: 187ms	remaining: 15.2ms
185:	learn: 13.6372034	total: 188ms	remaining: 14.1ms
186:	learn: 13.5753658	total: 189ms	remaining: 13.1ms
187:	learn: 13.5580785	total: 190ms	remaining: 12.1ms
188:	learn: 13.5283840	total: 191ms	remaining: 11.1ms
189:	learn: 13.4969701	total: 191ms	remaining: 10.1ms
190:	learn: 13.4502166	total: 192ms	remaining: 9.07ms
191:	learn: 13.4410658	total: 193ms	remaining: 8.06ms
192:	learn: 13.4278834	total: 194ms	remaining: 7.05ms
193:	learn: 13.4115427	total: 195ms	remaining: 6.04ms
194:	learn: 13.3746813	total: 196ms	remaining: 5.03ms
195:	learn: 13.3633774	total: 197ms	remaining: 4.02ms
196:	learn: 13.3410937	total: 198ms	remaining: 3.02ms
197:	learn: 13.3068766	total: 199ms	remaining: 2.01ms
198:	learn: 13.3029216	total: 200ms	remaining: 1ms
199:	learn: 13.2902084	total: 201ms	remaining: 0us
0:	learn: 45.2801187	total: 1.34ms	remaining: 267ms
1:	learn: 43.9022061	total: 2.39ms	remaining: 237ms
2:	learn: 42.8472409	total: 3.44ms	remaining: 226ms
3:	learn: 42.0460877	total: 4.69ms	remaining: 230ms
4:	learn: 40.7691303	total: 5.84ms	remaining: 228ms
5:	learn: 39.3047018	total: 6.85ms	remaining: 221ms
6:	learn: 37.9509978	total: 7.84ms	remaining: 216ms
7:	learn: 37.2300301	total: 8.82ms	remaining: 212ms
8:	learn: 36.9380307	total: 9.85ms	remaining: 209ms
9:	learn: 36.5186385	total: 10.9ms	remaining: 208ms
10:	learn: 36.0483073	total: 11.9ms	remaining: 205ms
11:	learn: 35.5277262	total: 12.9ms	remaining: 202ms
12:	learn: 34.5707792	total: 13.8ms	remaining: 199ms
13:	learn: 33.5448438	total: 14.8ms	remaining: 197ms
14:	learn: 32.9394722	total: 15.8ms	remaining: 195ms
15:	learn: 32.2224784	total: 17ms	remaining: 196ms
16:	learn: 31.4949215	total: 18ms	remaining: 194ms
17:	learn: 30.9766308	total: 18.9ms	remaining: 191ms
18:	learn: 30.6876128	total: 19.9ms	remaining: 189ms
19:	learn: 30.3382699	total: 21ms	remaining: 189ms
20:	learn: 30.0778090	total: 22ms	remaining: 188ms
21:	learn: 29.7890105	total: 22.9ms	remaining: 186ms
22:	learn: 29.3294067	total: 23.9ms	remaining: 184ms
23:	learn: 29.1058633	total: 24.8ms	remaining: 182ms
24:	learn: 28.5254965	total: 25.8ms	remaining: 181ms
25:	learn: 28.3947826	total: 26.7ms	remaining: 179ms
26:	learn: 27.9729009	total: 27.6ms	remaining: 177ms
27:	learn: 27.7762599	total: 28.5ms	remaining: 175ms
28:	learn: 27.5912160	total: 29.5ms	remaining: 174ms
29:	learn: 27.4382348	total: 30.4ms	remaining: 172ms
30:	learn: 27.0973697	total: 31.4ms	remaining: 171ms
31:	learn: 26.9004200	total: 32.5ms	remaining: 171ms
32:	learn: 26.6129021	total: 33.6ms	remaining: 170ms
33:	learn: 26.3660493	total: 34.8ms	remaining: 170ms
34:	learn: 26.2635529	total: 36.1ms	remaining: 170ms
35:	learn: 26.1916283	total: 37.2ms	remaining: 170ms
36:	learn: 26.0985291	total: 38.3ms	remaining: 169ms
37:	learn: 25.9659404	total: 39.3ms	remaining: 168ms
38:	learn: 25.7262377	total: 40.4ms	remaining: 167ms
39:	learn: 25.4809954	total: 41.5ms	remaining: 166ms
40:	learn: 25.3440060	total: 42.8ms	remaining: 166ms
41:	learn: 25.3112549	total: 44ms	remaining: 166ms
42:	learn: 25.2564550	total: 45.3ms	remaining: 165ms
43:	learn: 25.1739692	total: 46.4ms	remaining: 165ms
44:	learn: 25.1384274	total: 47.6ms	remaining: 164ms
45:	learn: 25.0447663	total: 48.9ms	remaining: 164ms
46:	learn: 24.8201340	total: 50.6ms	remaining: 165ms
47:	learn: 24.7574334	total: 51.8ms	remaining: 164ms
48:	learn: 24.5706548	total: 53ms	remaining: 163ms
49:	learn: 24.5183966	total: 54.2ms	remaining: 163ms
50:	learn: 24.4414337	total: 55.4ms	remaining: 162ms
51:	learn: 24.3357028	total: 56.6ms	remaining: 161ms
52:	learn: 24.3247113	total: 57.7ms	remaining: 160ms
53:	learn: 24.2725465	total: 58.9ms	remaining: 159ms
54:	learn: 23.9983847	total: 60.2ms	remaining: 159ms
55:	learn: 23.9627559	total: 61.4ms	remaining: 158ms
56:	learn: 23.9145553	total: 62.7ms	remaining: 157ms
57:	learn: 23.7757531	total: 63.8ms	remaining: 156ms
58:	learn: 23.7216584	total: 65ms	remaining: 155ms
59:	learn: 23.6699105	total: 66.2ms	remaining: 154ms
60:	learn: 23.6011146	total: 67.4ms	remaining: 154ms
61:	learn: 23.5650176	total: 68.7ms	remaining: 153ms
62:	learn: 23.5284638	total: 69.8ms	remaining: 152ms
63:	learn: 23.4690695	total: 70.8ms	remaining: 150ms
64:	learn: 23.3940631	total: 71.8ms	remaining: 149ms
65:	learn: 23.3662453	total: 72.9ms	remaining: 148ms
66:	learn: 23.3190940	total: 74.3ms	remaining: 148ms
67:	learn: 23.2986584	total: 75.6ms	remaining: 147ms
68:	learn: 23.2529912	total: 77ms	remaining: 146ms
69:	learn: 23.1094133	total: 78.1ms	remaining: 145ms
70:	learn: 22.9184242	total: 79.1ms	remaining: 144ms
71:	learn: 22.6866759	total: 80.2ms	remaining: 143ms
72:	learn: 22.6057583	total: 81.3ms	remaining: 141ms
73:	learn: 22.4838393	total: 82.5ms	remaining: 141ms
74:	learn: 22.2333236	total: 83.6ms	remaining: 139ms
75:	learn: 22.1120753	total: 84.6ms	remaining: 138ms
76:	learn: 22.0765287	total: 85.8ms	remaining: 137ms
77:	learn: 22.0304924	total: 86.8ms	remaining: 136ms
78:	learn: 22.0230993	total: 87.8ms	remaining: 134ms
79:	learn: 22.0042415	total: 89ms	remaining: 134ms
80:	learn: 21.8795389	total: 90.1ms	remaining: 132ms
81:	learn: 21.8456202	total: 91.2ms	remaining: 131ms
82:	learn: 21.7733275	total: 92.4ms	remaining: 130ms
83:	learn: 21.6806247	total: 93.6ms	remaining: 129ms
84:	learn: 21.6624486	total: 94.8ms	remaining: 128ms
85:	learn: 21.6498044	total: 95.9ms	remaining: 127ms
86:	learn: 21.5835353	total: 96.9ms	remaining: 126ms
87:	learn: 21.4017716	total: 98.1ms	remaining: 125ms
88:	learn: 21.2529610	total: 99.2ms	remaining: 124ms
89:	learn: 21.1279531	total: 101ms	remaining: 123ms
90:	learn: 21.0466260	total: 102ms	remaining: 122ms
91:	learn: 20.8952066	total: 103ms	remaining: 121ms
92:	learn: 20.8772971	total: 104ms	remaining: 119ms
93:	learn: 20.6741999	total: 105ms	remaining: 118ms
94:	learn: 20.6378157	total: 106ms	remaining: 117ms
95:	learn: 20.5962306	total: 107ms	remaining: 116ms
96:	learn: 20.5629829	total: 108ms	remaining: 115ms
97:	learn: 20.5448506	total: 109ms	remaining: 113ms
98:	learn: 20.5226524	total: 110ms	remaining: 112ms
99:	learn: 20.4312112	total: 111ms	remaining: 111ms
100:	learn: 20.4048452	total: 112ms	remaining: 110ms
101:	learn: 20.3752038	total: 113ms	remaining: 109ms
102:	learn: 20.3590112	total: 115ms	remaining: 108ms
103:	learn: 20.2680349	total: 116ms	remaining: 107ms
104:	learn: 20.1362314	total: 117ms	remaining: 106ms
105:	learn: 20.0802285	total: 118ms	remaining: 105ms
106:	learn: 19.9232838	total: 119ms	remaining: 104ms
107:	learn: 19.8193773	total: 120ms	remaining: 102ms
108:	learn: 19.7943631	total: 121ms	remaining: 101ms
109:	learn: 19.7229289	total: 122ms	remaining: 100ms
110:	learn: 19.5907909	total: 124ms	remaining: 99.1ms
111:	learn: 19.4546155	total: 125ms	remaining: 97.9ms
112:	learn: 19.4375942	total: 126ms	remaining: 96.7ms
113:	learn: 19.4151076	total: 127ms	remaining: 95.9ms
114:	learn: 19.4000766	total: 128ms	remaining: 94.8ms
115:	learn: 19.2875957	total: 129ms	remaining: 93.6ms
116:	learn: 19.2735673	total: 130ms	remaining: 92.5ms
117:	learn: 19.2081889	total: 132ms	remaining: 91.5ms
118:	learn: 19.1672137	total: 133ms	remaining: 90.5ms
119:	learn: 19.0968083	total: 134ms	remaining: 89.3ms
120:	learn: 18.9984559	total: 135ms	remaining: 88.4ms
121:	learn: 18.9275960	total: 137ms	remaining: 87.5ms
122:	learn: 18.8217056	total: 138ms	remaining: 86.5ms
123:	learn: 18.7014433	total: 139ms	remaining: 85.4ms
124:	learn: 18.6728637	total: 141ms	remaining: 84.3ms
125:	learn: 18.6598352	total: 142ms	remaining: 83.3ms
126:	learn: 18.5993266	total: 143ms	remaining: 82.2ms
127:	learn: 18.5852342	total: 144ms	remaining: 81.2ms
128:	learn: 18.5146543	total: 145ms	remaining: 80ms
129:	learn: 18.4801605	total: 147ms	remaining: 78.9ms
130:	learn: 18.2676408	total: 148ms	remaining: 77.8ms
131:	learn: 18.2494973	total: 149ms	remaining: 76.8ms
132:	learn: 18.1697048	total: 150ms	remaining: 75.7ms
133:	learn: 18.1389286	total: 151ms	remaining: 74.5ms
134:	learn: 18.0973904	total: 152ms	remaining: 73.4ms
135:	learn: 17.9996290	total: 153ms	remaining: 72.2ms
136:	learn: 17.9626363	total: 155ms	remaining: 71.1ms
137:	learn: 17.9496087	total: 156ms	remaining: 70ms
138:	learn: 17.9042024	total: 157ms	remaining: 68.9ms
139:	learn: 17.8927765	total: 158ms	remaining: 67.8ms
140:	learn: 17.8660122	total: 159ms	remaining: 66.6ms
141:	learn: 17.7475656	total: 160ms	remaining: 65.5ms
142:	learn: 17.6944334	total: 161ms	remaining: 64.3ms
143:	learn: 17.6797405	total: 162ms	remaining: 63.2ms
144:	learn: 17.6664132	total: 163ms	remaining: 62ms
145:	learn: 17.5997144	total: 165ms	remaining: 60.9ms
146:	learn: 17.4108683	total: 166ms	remaining: 59.7ms
147:	learn: 17.3406530	total: 167ms	remaining: 58.5ms
148:	learn: 17.3181477	total: 168ms	remaining: 57.4ms
149:	learn: 17.2702006	total: 169ms	remaining: 56.2ms
150:	learn: 17.1530569	total: 170ms	remaining: 55.1ms
151:	learn: 17.0874260	total: 171ms	remaining: 53.9ms
152:	learn: 17.0267677	total: 172ms	remaining: 52.8ms
153:	learn: 16.9793208	total: 173ms	remaining: 51.6ms
154:	learn: 16.9182291	total: 174ms	remaining: 50.5ms
155:	learn: 16.8962600	total: 175ms	remaining: 49.3ms
156:	learn: 16.8395104	total: 176ms	remaining: 48.2ms
157:	learn: 16.8007079	total: 177ms	remaining: 47.1ms
158:	learn: 16.7557320	total: 178ms	remaining: 45.9ms
159:	learn: 16.7450052	total: 179ms	remaining: 44.8ms
160:	learn: 16.7345445	total: 181ms	remaining: 43.7ms
161:	learn: 16.6817314	total: 182ms	remaining: 42.6ms
162:	learn: 16.6248358	total: 183ms	remaining: 41.4ms
163:	learn: 16.5789020	total: 184ms	remaining: 40.3ms
164:	learn: 16.5353886	total: 185ms	remaining: 39.1ms
165:	learn: 16.4952445	total: 186ms	remaining: 38ms
166:	learn: 16.4850501	total: 187ms	remaining: 36.9ms
167:	learn: 16.3843856	total: 188ms	remaining: 35.7ms
168:	learn: 16.3592728	total: 188ms	remaining: 34.6ms
169:	learn: 16.2861928	total: 189ms	remaining: 33.4ms
170:	learn: 16.2649911	total: 190ms	remaining: 32.3ms
171:	learn: 16.1977575	total: 191ms	remaining: 31.1ms
172:	learn: 16.1847998	total: 192ms	remaining: 30ms
173:	learn: 16.1812852	total: 193ms	remaining: 28.8ms
174:	learn: 16.1468297	total: 194ms	remaining: 27.7ms
175:	learn: 16.1436294	total: 195ms	remaining: 26.6ms
176:	learn: 16.1305002	total: 196ms	remaining: 25.4ms
177:	learn: 16.1077000	total: 197ms	remaining: 24.3ms
178:	learn: 16.0694944	total: 198ms	remaining: 23.2ms
179:	learn: 15.9938398	total: 199ms	remaining: 22.1ms
180:	learn: 15.9567876	total: 200ms	remaining: 21ms
181:	learn: 15.9454118	total: 201ms	remaining: 19.9ms
182:	learn: 15.9434230	total: 202ms	remaining: 18.8ms
183:	learn: 15.8906948	total: 203ms	remaining: 17.7ms
184:	learn: 15.8211938	total: 204ms	remaining: 16.6ms
185:	learn: 15.8148102	total: 205ms	remaining: 15.4ms
186:	learn: 15.7887930	total: 206ms	remaining: 14.3ms
187:	learn: 15.7843667	total: 207ms	remaining: 13.2ms
188:	learn: 15.7417983	total: 209ms	remaining: 12.2ms
189:	learn: 15.6930618	total: 210ms	remaining: 11ms
190:	learn: 15.6489770	total: 211ms	remaining: 9.93ms
191:	learn: 15.6467712	total: 212ms	remaining: 8.82ms
192:	learn: 15.5534080	total: 213ms	remaining: 7.71ms
193:	learn: 15.5089178	total: 214ms	remaining: 6.61ms
194:	learn: 15.4898722	total: 214ms	remaining: 5.5ms
195:	learn: 15.4852691	total: 215ms	remaining: 4.4ms
196:	learn: 15.4802710	total: 216ms	remaining: 3.29ms
197:	learn: 15.4352188	total: 217ms	remaining: 2.19ms
198:	learn: 15.3851395	total: 218ms	remaining: 1.1ms
199:	learn: 15.3749774	total: 219ms	remaining: 0us
0:	learn: 46.2699959	total: 1.31ms	remaining: 262ms
1:	learn: 44.8854743	total: 2.43ms	remaining: 240ms
2:	learn: 43.4874731	total: 3.56ms	remaining: 234ms
3:	learn: 42.6584064	total: 4.94ms	remaining: 242ms
4:	learn: 42.1224094	total: 6.08ms	remaining: 237ms
5:	learn: 40.9459501	total: 7.08ms	remaining: 229ms
6:	learn: 39.4763483	total: 8.06ms	remaining: 222ms
7:	learn: 38.6090144	total: 9.16ms	remaining: 220ms
8:	learn: 38.2791057	total: 10.3ms	remaining: 218ms
9:	learn: 37.7813487	total: 11.2ms	remaining: 213ms
10:	learn: 37.4242408	total: 12.1ms	remaining: 208ms
11:	learn: 36.3484663	total: 13ms	remaining: 204ms
12:	learn: 35.3827565	total: 14ms	remaining: 201ms
13:	learn: 34.4315777	total: 14.8ms	remaining: 197ms
14:	learn: 33.5788252	total: 15.7ms	remaining: 194ms
15:	learn: 33.3125662	total: 16.7ms	remaining: 192ms
16:	learn: 32.5306907	total: 17.5ms	remaining: 189ms
17:	learn: 31.9688285	total: 18.4ms	remaining: 186ms
18:	learn: 31.7709834	total: 19.4ms	remaining: 184ms
19:	learn: 31.4927785	total: 20.2ms	remaining: 182ms
20:	learn: 31.2468916	total: 21.1ms	remaining: 180ms
21:	learn: 30.9125421	total: 22.1ms	remaining: 179ms
22:	learn: 30.2429233	total: 23ms	remaining: 177ms
23:	learn: 29.7659375	total: 24ms	remaining: 176ms
24:	learn: 29.4369976	total: 25ms	remaining: 175ms
25:	learn: 29.1267715	total: 25.9ms	remaining: 173ms
26:	learn: 28.9739320	total: 26.8ms	remaining: 172ms
27:	learn: 28.7871325	total: 27.7ms	remaining: 170ms
28:	learn: 28.6059752	total: 28.6ms	remaining: 169ms
29:	learn: 28.3471120	total: 29.6ms	remaining: 168ms
30:	learn: 28.2221955	total: 30.6ms	remaining: 167ms
31:	learn: 28.1174912	total: 31.5ms	remaining: 165ms
32:	learn: 27.7591371	total: 32.4ms	remaining: 164ms
33:	learn: 27.4545561	total: 33.2ms	remaining: 162ms
34:	learn: 27.3651817	total: 34.1ms	remaining: 161ms
35:	learn: 27.2720165	total: 35ms	remaining: 159ms
36:	learn: 27.1708405	total: 35.9ms	remaining: 158ms
37:	learn: 27.0126718	total: 36.8ms	remaining: 157ms
38:	learn: 26.9252742	total: 37.7ms	remaining: 156ms
39:	learn: 26.7619975	total: 38.6ms	remaining: 154ms
40:	learn: 26.5083292	total: 39.5ms	remaining: 153ms
41:	learn: 26.4789513	total: 40.4ms	remaining: 152ms
42:	learn: 26.4229710	total: 41.2ms	remaining: 151ms
43:	learn: 26.3645871	total: 42.1ms	remaining: 149ms
44:	learn: 26.2712363	total: 43.1ms	remaining: 148ms
45:	learn: 26.2241641	total: 44ms	remaining: 147ms
46:	learn: 26.1544475	total: 44.9ms	remaining: 146ms
47:	learn: 26.1134536	total: 45.8ms	remaining: 145ms
48:	learn: 25.9054241	total: 46.8ms	remaining: 144ms
49:	learn: 25.6874164	total: 47.7ms	remaining: 143ms
50:	learn: 25.5631575	total: 48.6ms	remaining: 142ms
51:	learn: 25.3809224	total: 49.5ms	remaining: 141ms
52:	learn: 25.1902631	total: 50.4ms	remaining: 140ms
53:	learn: 25.0273906	total: 51.4ms	remaining: 139ms
54:	learn: 24.9158305	total: 52.3ms	remaining: 138ms
55:	learn: 24.8514780	total: 53.1ms	remaining: 137ms
56:	learn: 24.7697643	total: 54.1ms	remaining: 136ms
57:	learn: 24.7115651	total: 55ms	remaining: 135ms
58:	learn: 24.6618184	total: 55.9ms	remaining: 133ms
59:	learn: 24.5267592	total: 56.8ms	remaining: 133ms
60:	learn: 24.4741026	total: 57.7ms	remaining: 131ms
61:	learn: 24.4277839	total: 58.6ms	remaining: 130ms
62:	learn: 24.2760324	total: 59.5ms	remaining: 129ms
63:	learn: 24.2315657	total: 60.4ms	remaining: 128ms
64:	learn: 24.0886786	total: 61.4ms	remaining: 127ms
65:	learn: 23.9247244	total: 62.3ms	remaining: 126ms
66:	learn: 23.7841338	total: 63.3ms	remaining: 126ms
67:	learn: 23.7559864	total: 64.3ms	remaining: 125ms
68:	learn: 23.7077371	total: 65.3ms	remaining: 124ms
69:	learn: 23.6649534	total: 66.2ms	remaining: 123ms
70:	learn: 23.6270368	total: 67.2ms	remaining: 122ms
71:	learn: 23.4636827	total: 68.3ms	remaining: 121ms
72:	learn: 23.1870361	total: 69.2ms	remaining: 120ms
73:	learn: 23.0968477	total: 70.2ms	remaining: 120ms
74:	learn: 22.9887973	total: 71.3ms	remaining: 119ms
75:	learn: 22.8838469	total: 72.4ms	remaining: 118ms
76:	learn: 22.8216257	total: 73.3ms	remaining: 117ms
77:	learn: 22.7837153	total: 74.3ms	remaining: 116ms
78:	learn: 22.7145905	total: 75.3ms	remaining: 115ms
79:	learn: 22.6907223	total: 76.3ms	remaining: 114ms
80:	learn: 22.5764438	total: 77.2ms	remaining: 113ms
81:	learn: 22.4800392	total: 78.1ms	remaining: 112ms
82:	learn: 22.4328644	total: 79.1ms	remaining: 111ms
83:	learn: 22.1728982	total: 80.1ms	remaining: 111ms
84:	learn: 22.0670578	total: 81.2ms	remaining: 110ms
85:	learn: 21.9684094	total: 82.1ms	remaining: 109ms
86:	learn: 21.8766732	total: 83ms	remaining: 108ms
87:	learn: 21.7803745	total: 83.8ms	remaining: 107ms
88:	learn: 21.6375981	total: 84.8ms	remaining: 106ms
89:	learn: 21.5730326	total: 85.7ms	remaining: 105ms
90:	learn: 21.4939746	total: 86.6ms	remaining: 104ms
91:	learn: 21.3218945	total: 87.4ms	remaining: 103ms
92:	learn: 21.2510601	total: 88.4ms	remaining: 102ms
93:	learn: 21.1757048	total: 89.3ms	remaining: 101ms
94:	learn: 21.1180091	total: 90.2ms	remaining: 99.7ms
95:	learn: 20.9964494	total: 91.1ms	remaining: 98.7ms
96:	learn: 20.9045719	total: 92ms	remaining: 97.7ms
97:	learn: 20.8193882	total: 92.9ms	remaining: 96.7ms
98:	learn: 20.7598774	total: 93.8ms	remaining: 95.7ms
99:	learn: 20.6397878	total: 94.7ms	remaining: 94.7ms
100:	learn: 20.5736765	total: 95.5ms	remaining: 93.7ms
101:	learn: 20.4913909	total: 96.4ms	remaining: 92.7ms
102:	learn: 20.3960154	total: 97.4ms	remaining: 91.8ms
103:	learn: 20.3224826	total: 98.3ms	remaining: 90.7ms
104:	learn: 20.2564899	total: 99.2ms	remaining: 89.7ms
105:	learn: 20.1325674	total: 100ms	remaining: 88.8ms
106:	learn: 20.0574015	total: 101ms	remaining: 87.8ms
107:	learn: 19.8072271	total: 102ms	remaining: 86.8ms
108:	learn: 19.7112510	total: 103ms	remaining: 85.8ms
109:	learn: 19.6509125	total: 104ms	remaining: 84.9ms
110:	learn: 19.5954385	total: 105ms	remaining: 84ms
111:	learn: 19.5448318	total: 106ms	remaining: 83.1ms
112:	learn: 19.4593526	total: 107ms	remaining: 82.1ms
113:	learn: 19.3743000	total: 108ms	remaining: 81.2ms
114:	learn: 19.3302381	total: 109ms	remaining: 80.2ms
115:	learn: 19.2860380	total: 109ms	remaining: 79.3ms
116:	learn: 19.0615175	total: 110ms	remaining: 78.3ms
117:	learn: 19.0185047	total: 111ms	remaining: 77.3ms
118:	learn: 18.9377922	total: 112ms	remaining: 76.3ms
119:	learn: 18.9028029	total: 113ms	remaining: 75.4ms
120:	learn: 18.8683850	total: 114ms	remaining: 74.5ms
121:	learn: 18.8548977	total: 115ms	remaining: 73.5ms
122:	learn: 18.7914127	total: 116ms	remaining: 72.5ms
123:	learn: 18.6896914	total: 117ms	remaining: 71.5ms
124:	learn: 18.6654429	total: 118ms	remaining: 70.6ms
125:	learn: 18.5726017	total: 119ms	remaining: 69.6ms
126:	learn: 18.4784282	total: 119ms	remaining: 68.6ms
127:	learn: 18.4297613	total: 120ms	remaining: 67.7ms
128:	learn: 18.3776109	total: 121ms	remaining: 66.7ms
129:	learn: 18.3645936	total: 122ms	remaining: 65.7ms
130:	learn: 18.3253364	total: 123ms	remaining: 64.8ms
131:	learn: 18.2658023	total: 124ms	remaining: 63.8ms
132:	learn: 18.2062697	total: 125ms	remaining: 62.9ms
133:	learn: 18.1527061	total: 126ms	remaining: 61.9ms
134:	learn: 18.1316305	total: 126ms	remaining: 60.9ms
135:	learn: 18.0646103	total: 127ms	remaining: 60ms
136:	learn: 18.0530383	total: 128ms	remaining: 59ms
137:	learn: 18.0250659	total: 129ms	remaining: 58ms
138:	learn: 18.0131252	total: 130ms	remaining: 57.1ms
139:	learn: 17.9494983	total: 131ms	remaining: 56.1ms
140:	learn: 17.9252869	total: 132ms	remaining: 55.2ms
141:	learn: 17.8953732	total: 133ms	remaining: 54.4ms
142:	learn: 17.8514183	total: 134ms	remaining: 53.4ms
143:	learn: 17.7802266	total: 135ms	remaining: 52.5ms
144:	learn: 17.6903795	total: 136ms	remaining: 51.5ms
145:	learn: 17.6576104	total: 137ms	remaining: 50.6ms
146:	learn: 17.5872369	total: 138ms	remaining: 49.6ms
147:	learn: 17.5581149	total: 139ms	remaining: 48.7ms
148:	learn: 17.5216630	total: 139ms	remaining: 47.7ms
149:	learn: 17.4728428	total: 140ms	remaining: 46.8ms
150:	learn: 17.4594283	total: 141ms	remaining: 45.8ms
151:	learn: 17.3879828	total: 142ms	remaining: 44.9ms
152:	learn: 17.3189338	total: 143ms	remaining: 43.9ms
153:	learn: 17.3035591	total: 144ms	remaining: 43ms
154:	learn: 17.2389162	total: 145ms	remaining: 42ms
155:	learn: 17.2246577	total: 146ms	remaining: 41.1ms
156:	learn: 17.1810974	total: 147ms	remaining: 40.2ms
157:	learn: 17.1426611	total: 148ms	remaining: 39.3ms
158:	learn: 17.1333268	total: 149ms	remaining: 38.3ms
159:	learn: 17.0347736	total: 150ms	remaining: 37.4ms
160:	learn: 16.9935040	total: 151ms	remaining: 36.5ms
161:	learn: 16.9042551	total: 152ms	remaining: 35.6ms
162:	learn: 16.8766477	total: 153ms	remaining: 34.6ms
163:	learn: 16.8511556	total: 153ms	remaining: 33.7ms
164:	learn: 16.8395866	total: 154ms	remaining: 32.8ms
165:	learn: 16.7994908	total: 155ms	remaining: 31.8ms
166:	learn: 16.7403781	total: 156ms	remaining: 30.9ms
167:	learn: 16.6991563	total: 157ms	remaining: 30ms
168:	learn: 16.6449540	total: 158ms	remaining: 29ms
169:	learn: 16.6233722	total: 159ms	remaining: 28.1ms
170:	learn: 16.5779656	total: 160ms	remaining: 27.1ms
171:	learn: 16.5549539	total: 161ms	remaining: 26.2ms
172:	learn: 16.5033403	total: 162ms	remaining: 25.3ms
173:	learn: 16.4277637	total: 163ms	remaining: 24.3ms
174:	learn: 16.4021748	total: 164ms	remaining: 23.4ms
175:	learn: 16.3498665	total: 165ms	remaining: 22.5ms
176:	learn: 16.3064470	total: 166ms	remaining: 21.5ms
177:	learn: 16.2702973	total: 167ms	remaining: 20.6ms
178:	learn: 16.2549298	total: 168ms	remaining: 19.7ms
179:	learn: 16.2189636	total: 169ms	remaining: 18.7ms
180:	learn: 16.1674264	total: 170ms	remaining: 17.8ms
181:	learn: 16.1179352	total: 171ms	remaining: 16.9ms
182:	learn: 16.0976349	total: 172ms	remaining: 16ms
183:	learn: 16.0376148	total: 173ms	remaining: 15ms
184:	learn: 16.0211743	total: 174ms	remaining: 14.1ms
185:	learn: 15.9811708	total: 177ms	remaining: 13.3ms
186:	learn: 15.9341211	total: 178ms	remaining: 12.4ms
187:	learn: 15.9125573	total: 179ms	remaining: 11.4ms
188:	learn: 15.8988890	total: 181ms	remaining: 10.5ms
189:	learn: 15.8516321	total: 182ms	remaining: 9.6ms
190:	learn: 15.7935432	total: 184ms	remaining: 8.65ms
191:	learn: 15.7495219	total: 186ms	remaining: 7.73ms
192:	learn: 15.7258412	total: 187ms	remaining: 6.79ms
193:	learn: 15.6504316	total: 189ms	remaining: 5.86ms
194:	learn: 15.6036074	total: 191ms	remaining: 4.91ms
195:	learn: 15.5525994	total: 193ms	remaining: 3.94ms
196:	learn: 15.5392575	total: 195ms	remaining: 2.96ms
197:	learn: 15.5020674	total: 196ms	remaining: 1.98ms
198:	learn: 15.4360789	total: 197ms	remaining: 990us
199:	learn: 15.3901879	total: 198ms	remaining: 0us
0:	learn: 27.6506730	total: 4.99ms	remaining: 494ms
1:	learn: 27.1638793	total: 10.4ms	remaining: 511ms
2:	learn: 26.8000665	total: 16.1ms	remaining: 522ms
3:	learn: 26.4256132	total: 20.9ms	remaining: 501ms
4:	learn: 26.0088351	total: 25.7ms	remaining: 489ms
5:	learn: 25.7558298	total: 30.5ms	remaining: 477ms
6:	learn: 25.3380711	total: 34.9ms	remaining: 464ms
7:	learn: 25.0571611	total: 39.7ms	remaining: 456ms
8:	learn: 24.6790148	total: 44.1ms	remaining: 446ms
9:	learn: 24.3600941	total: 48.8ms	remaining: 439ms
10:	learn: 24.1105667	total: 52.9ms	remaining: 428ms
11:	learn: 23.7736542	total: 57ms	remaining: 418ms
12:	learn: 23.5824429	total: 61.3ms	remaining: 410ms
13:	learn: 23.2658303	total: 65.6ms	remaining: 403ms
14:	learn: 23.0061886	total: 69.7ms	remaining: 395ms
15:	learn: 22.8060389	total: 73.9ms	remaining: 388ms
16:	learn: 22.5899735	total: 78ms	remaining: 381ms
17:	learn: 22.3625048	total: 82.4ms	remaining: 375ms
18:	learn: 22.0706477	total: 86.5ms	remaining: 369ms
19:	learn: 21.8739394	total: 91.1ms	remaining: 365ms
20:	learn: 21.6143650	total: 95.5ms	remaining: 359ms
21:	learn: 21.4571623	total: 99.9ms	remaining: 354ms
22:	learn: 21.2395769	total: 104ms	remaining: 348ms
23:	learn: 20.9801795	total: 109ms	remaining: 344ms
24:	learn: 20.8036808	total: 114ms	remaining: 341ms
25:	learn: 20.6387539	total: 118ms	remaining: 336ms
26:	learn: 20.4401427	total: 123ms	remaining: 332ms
27:	learn: 20.2879575	total: 127ms	remaining: 328ms
28:	learn: 20.0538664	total: 133ms	remaining: 326ms
29:	learn: 19.8363102	total: 144ms	remaining: 337ms
30:	learn: 19.7015446	total: 151ms	remaining: 337ms
31:	learn: 19.5483114	total: 157ms	remaining: 333ms
32:	learn: 19.4163053	total: 163ms	remaining: 330ms
33:	learn: 19.2880625	total: 168ms	remaining: 326ms
34:	learn: 19.1303389	total: 172ms	remaining: 319ms
35:	learn: 18.9237448	total: 176ms	remaining: 314ms
36:	learn: 18.8142925	total: 181ms	remaining: 308ms
37:	learn: 18.6994696	total: 185ms	remaining: 302ms
38:	learn: 18.5629211	total: 190ms	remaining: 297ms
39:	learn: 18.4600917	total: 194ms	remaining: 290ms
40:	learn: 18.3567139	total: 198ms	remaining: 285ms
41:	learn: 18.2120527	total: 202ms	remaining: 280ms
42:	learn: 18.0688062	total: 206ms	remaining: 274ms
43:	learn: 17.9250181	total: 210ms	remaining: 268ms
44:	learn: 17.8399138	total: 215ms	remaining: 263ms
45:	learn: 17.6720713	total: 219ms	remaining: 257ms
46:	learn: 17.5273091	total: 223ms	remaining: 252ms
47:	learn: 17.4232814	total: 228ms	remaining: 247ms
48:	learn: 17.2957579	total: 232ms	remaining: 242ms
49:	learn: 17.1892874	total: 237ms	remaining: 237ms
50:	learn: 17.0490355	total: 241ms	remaining: 231ms
51:	learn: 16.9666450	total: 245ms	remaining: 226ms
52:	learn: 16.8600056	total: 250ms	remaining: 221ms
53:	learn: 16.7542588	total: 254ms	remaining: 216ms
54:	learn: 16.6316077	total: 259ms	remaining: 212ms
55:	learn: 16.5588112	total: 263ms	remaining: 207ms
56:	learn: 16.5010186	total: 267ms	remaining: 201ms
57:	learn: 16.4081540	total: 272ms	remaining: 197ms
58:	learn: 16.3040451	total: 276ms	remaining: 192ms
59:	learn: 16.1890564	total: 280ms	remaining: 187ms
60:	learn: 16.0977103	total: 285ms	remaining: 182ms
61:	learn: 15.9627607	total: 289ms	remaining: 177ms
62:	learn: 15.9022248	total: 294ms	remaining: 172ms
63:	learn: 15.8151881	total: 298ms	remaining: 168ms
64:	learn: 15.7353125	total: 302ms	remaining: 163ms
65:	learn: 15.6312897	total: 307ms	remaining: 158ms
66:	learn: 15.5330927	total: 312ms	remaining: 154ms
67:	learn: 15.4698681	total: 316ms	remaining: 149ms
68:	learn: 15.4108571	total: 321ms	remaining: 144ms
69:	learn: 15.3492945	total: 326ms	remaining: 140ms
70:	learn: 15.3036540	total: 331ms	remaining: 135ms
71:	learn: 15.2390833	total: 341ms	remaining: 133ms
72:	learn: 15.1556327	total: 351ms	remaining: 130ms
73:	learn: 15.1016315	total: 360ms	remaining: 127ms
74:	learn: 15.0287076	total: 369ms	remaining: 123ms
75:	learn: 14.9530572	total: 374ms	remaining: 118ms
76:	learn: 14.8965517	total: 379ms	remaining: 113ms
77:	learn: 14.8125426	total: 385ms	remaining: 109ms
78:	learn: 14.7435359	total: 390ms	remaining: 104ms
79:	learn: 14.6963163	total: 396ms	remaining: 99ms
80:	learn: 14.6200060	total: 401ms	remaining: 94.1ms
81:	learn: 14.5707760	total: 407ms	remaining: 89.2ms
82:	learn: 14.5053651	total: 412ms	remaining: 84.4ms
83:	learn: 14.4115458	total: 417ms	remaining: 79.5ms
84:	learn: 14.3117159	total: 422ms	remaining: 74.6ms
85:	learn: 14.2511326	total: 428ms	remaining: 69.6ms
86:	learn: 14.1372486	total: 433ms	remaining: 64.7ms
87:	learn: 14.0992301	total: 439ms	remaining: 59.8ms
88:	learn: 14.0228331	total: 443ms	remaining: 54.8ms
89:	learn: 13.9249836	total: 448ms	remaining: 49.8ms
90:	learn: 13.8679364	total: 453ms	remaining: 44.8ms
91:	learn: 13.8405578	total: 457ms	remaining: 39.8ms
92:	learn: 13.7711325	total: 462ms	remaining: 34.8ms
93:	learn: 13.7357019	total: 467ms	remaining: 29.8ms
94:	learn: 13.6735271	total: 471ms	remaining: 24.8ms
95:	learn: 13.5682393	total: 476ms	remaining: 19.8ms
96:	learn: 13.5342610	total: 481ms	remaining: 14.9ms
97:	learn: 13.4710034	total: 485ms	remaining: 9.9ms
98:	learn: 13.4022402	total: 489ms	remaining: 4.94ms
99:	learn: 13.3351238	total: 494ms	remaining: 0us
0:	learn: 42.9181702	total: 6.17ms	remaining: 610ms
1:	learn: 42.0286736	total: 12.5ms	remaining: 610ms
2:	learn: 41.2764568	total: 16.9ms	remaining: 547ms
3:	learn: 40.4721918	total: 20.9ms	remaining: 503ms
4:	learn: 39.8518928	total: 25.8ms	remaining: 490ms
5:	learn: 39.2645479	total: 30.2ms	remaining: 473ms
6:	learn: 38.4453704	total: 34.4ms	remaining: 457ms
7:	learn: 37.7122059	total: 38.6ms	remaining: 444ms
8:	learn: 36.9185796	total: 43ms	remaining: 435ms
9:	learn: 36.1668427	total: 47.3ms	remaining: 426ms
10:	learn: 35.5639029	total: 51.8ms	remaining: 419ms
11:	learn: 34.7724193	total: 56ms	remaining: 410ms
12:	learn: 34.3053433	total: 60.7ms	remaining: 406ms
13:	learn: 33.6561327	total: 62ms	remaining: 381ms
14:	learn: 33.0134042	total: 66.1ms	remaining: 374ms
15:	learn: 32.4483300	total: 70.4ms	remaining: 369ms
16:	learn: 31.8581144	total: 74.6ms	remaining: 364ms
17:	learn: 31.2858301	total: 78.7ms	remaining: 359ms
18:	learn: 30.8483018	total: 83.1ms	remaining: 354ms
19:	learn: 30.4174622	total: 87.6ms	remaining: 350ms
20:	learn: 29.8994411	total: 91.7ms	remaining: 345ms
21:	learn: 29.5045355	total: 96.2ms	remaining: 341ms
22:	learn: 28.9923519	total: 100ms	remaining: 336ms
23:	learn: 28.4255717	total: 105ms	remaining: 331ms
24:	learn: 28.0283139	total: 109ms	remaining: 327ms
25:	learn: 27.7434814	total: 114ms	remaining: 323ms
26:	learn: 27.2770731	total: 118ms	remaining: 319ms
27:	learn: 26.8928270	total: 122ms	remaining: 314ms
28:	learn: 26.4282671	total: 127ms	remaining: 310ms
29:	learn: 26.0272764	total: 131ms	remaining: 306ms
30:	learn: 25.7579312	total: 135ms	remaining: 302ms
31:	learn: 25.4542434	total: 140ms	remaining: 297ms
32:	learn: 25.1232564	total: 144ms	remaining: 293ms
33:	learn: 24.8110795	total: 149ms	remaining: 289ms
34:	learn: 24.5077579	total: 154ms	remaining: 285ms
35:	learn: 24.1909000	total: 158ms	remaining: 280ms
36:	learn: 23.8719468	total: 161ms	remaining: 275ms
37:	learn: 23.5764366	total: 163ms	remaining: 266ms
38:	learn: 23.3468086	total: 168ms	remaining: 262ms
39:	learn: 23.0908771	total: 172ms	remaining: 258ms
40:	learn: 22.8580876	total: 177ms	remaining: 255ms
41:	learn: 22.6060825	total: 182ms	remaining: 251ms
42:	learn: 22.4125407	total: 187ms	remaining: 248ms
43:	learn: 22.1990617	total: 194ms	remaining: 247ms
44:	learn: 21.9716164	total: 202ms	remaining: 247ms
45:	learn: 21.8360935	total: 212ms	remaining: 249ms
46:	learn: 21.6169256	total: 218ms	remaining: 246ms
47:	learn: 21.4620612	total: 225ms	remaining: 243ms
48:	learn: 21.2894194	total: 230ms	remaining: 239ms
49:	learn: 21.1066266	total: 235ms	remaining: 235ms
50:	learn: 20.9484898	total: 241ms	remaining: 232ms
51:	learn: 20.7195338	total: 246ms	remaining: 227ms
52:	learn: 20.4899740	total: 252ms	remaining: 224ms
53:	learn: 20.3356583	total: 258ms	remaining: 219ms
54:	learn: 20.0754393	total: 263ms	remaining: 215ms
55:	learn: 19.9199159	total: 268ms	remaining: 211ms
56:	learn: 19.7761128	total: 273ms	remaining: 206ms
57:	learn: 19.6533060	total: 279ms	remaining: 202ms
58:	learn: 19.5113942	total: 285ms	remaining: 198ms
59:	learn: 19.3985022	total: 289ms	remaining: 193ms
60:	learn: 19.2683443	total: 294ms	remaining: 188ms
61:	learn: 19.1460824	total: 298ms	remaining: 183ms
62:	learn: 19.0042655	total: 302ms	remaining: 178ms
63:	learn: 18.8720873	total: 307ms	remaining: 172ms
64:	learn: 18.7183888	total: 311ms	remaining: 167ms
65:	learn: 18.5472360	total: 315ms	remaining: 162ms
66:	learn: 18.3976642	total: 319ms	remaining: 157ms
67:	learn: 18.2282851	total: 323ms	remaining: 152ms
68:	learn: 18.1469157	total: 328ms	remaining: 147ms
69:	learn: 18.0649494	total: 332ms	remaining: 142ms
70:	learn: 17.9485405	total: 337ms	remaining: 138ms
71:	learn: 17.8460261	total: 341ms	remaining: 133ms
72:	learn: 17.7679843	total: 346ms	remaining: 128ms
73:	learn: 17.5989290	total: 350ms	remaining: 123ms
74:	learn: 17.4381322	total: 354ms	remaining: 118ms
75:	learn: 17.3370886	total: 359ms	remaining: 113ms
76:	learn: 17.2675308	total: 364ms	remaining: 109ms
77:	learn: 17.1946430	total: 369ms	remaining: 104ms
78:	learn: 17.0923725	total: 373ms	remaining: 99.3ms
79:	learn: 17.0537265	total: 378ms	remaining: 94.6ms
80:	learn: 16.9456831	total: 383ms	remaining: 89.9ms
81:	learn: 16.8457353	total: 388ms	remaining: 85.2ms
82:	learn: 16.7469310	total: 396ms	remaining: 81.2ms
83:	learn: 16.6679953	total: 403ms	remaining: 76.8ms
84:	learn: 16.6274189	total: 410ms	remaining: 72.4ms
85:	learn: 16.5516530	total: 415ms	remaining: 67.6ms
86:	learn: 16.4886066	total: 421ms	remaining: 62.9ms
87:	learn: 16.3947859	total: 426ms	remaining: 58ms
88:	learn: 16.3406495	total: 430ms	remaining: 53.1ms
89:	learn: 16.3019195	total: 434ms	remaining: 48.2ms
90:	learn: 16.1860681	total: 438ms	remaining: 43.4ms
91:	learn: 16.1282812	total: 443ms	remaining: 38.5ms
92:	learn: 16.0303652	total: 447ms	remaining: 33.7ms
93:	learn: 15.9561692	total: 452ms	remaining: 28.9ms
94:	learn: 15.8733994	total: 457ms	remaining: 24ms
95:	learn: 15.8108833	total: 462ms	remaining: 19.2ms
96:	learn: 15.7606004	total: 466ms	remaining: 14.4ms
97:	learn: 15.6984664	total: 470ms	remaining: 9.6ms
98:	learn: 15.6223632	total: 475ms	remaining: 4.79ms
99:	learn: 15.5671136	total: 479ms	remaining: 0us
0:	learn: 46.4788614	total: 1.93ms	remaining: 191ms
1:	learn: 45.7608372	total: 6.76ms	remaining: 331ms
2:	learn: 44.8825004	total: 10.9ms	remaining: 353ms
3:	learn: 44.0362738	total: 15.2ms	remaining: 365ms
4:	learn: 43.2086374	total: 19.4ms	remaining: 369ms
5:	learn: 42.5835773	total: 24ms	remaining: 377ms
6:	learn: 41.9673269	total: 28.3ms	remaining: 376ms
7:	learn: 41.4748717	total: 32.3ms	remaining: 372ms
8:	learn: 40.7129183	total: 37.2ms	remaining: 376ms
9:	learn: 39.8900884	total: 42ms	remaining: 378ms
10:	learn: 39.4142193	total: 48.6ms	remaining: 393ms
11:	learn: 38.8645613	total: 55ms	remaining: 404ms
12:	learn: 38.2394731	total: 61.9ms	remaining: 414ms
13:	learn: 37.6834515	total: 67.9ms	remaining: 417ms
14:	learn: 37.0673507	total: 73.3ms	remaining: 415ms
15:	learn: 36.4728340	total: 78.7ms	remaining: 413ms
16:	learn: 36.0489086	total: 85.1ms	remaining: 416ms
17:	learn: 35.4744141	total: 90.4ms	remaining: 412ms
18:	learn: 35.0106021	total: 96ms	remaining: 409ms
19:	learn: 34.5586053	total: 101ms	remaining: 405ms
20:	learn: 34.1308223	total: 107ms	remaining: 401ms
21:	learn: 33.7701450	total: 112ms	remaining: 396ms
22:	learn: 33.4425444	total: 117ms	remaining: 391ms
23:	learn: 33.0296412	total: 122ms	remaining: 387ms
24:	learn: 32.6359803	total: 128ms	remaining: 383ms
25:	learn: 32.1846182	total: 133ms	remaining: 379ms
26:	learn: 31.7620230	total: 138ms	remaining: 374ms
27:	learn: 31.4669337	total: 144ms	remaining: 370ms
28:	learn: 31.0792062	total: 149ms	remaining: 365ms
29:	learn: 30.7970537	total: 154ms	remaining: 359ms
30:	learn: 30.4952215	total: 159ms	remaining: 354ms
31:	learn: 30.2845344	total: 165ms	remaining: 350ms
32:	learn: 29.9592732	total: 170ms	remaining: 344ms
33:	learn: 29.6798596	total: 174ms	remaining: 338ms
34:	learn: 29.3368905	total: 178ms	remaining: 331ms
35:	learn: 29.0621238	total: 183ms	remaining: 325ms
36:	learn: 28.6445375	total: 187ms	remaining: 319ms
37:	learn: 28.2418096	total: 192ms	remaining: 313ms
38:	learn: 27.9495390	total: 196ms	remaining: 306ms
39:	learn: 27.6958160	total: 201ms	remaining: 301ms
40:	learn: 27.4811189	total: 205ms	remaining: 294ms
41:	learn: 27.1494420	total: 209ms	remaining: 289ms
42:	learn: 26.8388873	total: 213ms	remaining: 283ms
43:	learn: 26.5721300	total: 218ms	remaining: 278ms
44:	learn: 26.3384738	total: 222ms	remaining: 272ms
45:	learn: 26.1894781	total: 226ms	remaining: 266ms
46:	learn: 25.9580198	total: 231ms	remaining: 260ms
47:	learn: 25.7897985	total: 236ms	remaining: 256ms
48:	learn: 25.6000271	total: 241ms	remaining: 251ms
49:	learn: 25.4130873	total: 246ms	remaining: 246ms
50:	learn: 25.1699061	total: 251ms	remaining: 241ms
51:	learn: 24.9324449	total: 256ms	remaining: 236ms
52:	learn: 24.7729152	total: 261ms	remaining: 232ms
53:	learn: 24.5026563	total: 266ms	remaining: 227ms
54:	learn: 24.2332627	total: 272ms	remaining: 222ms
55:	learn: 23.9611984	total: 276ms	remaining: 217ms
56:	learn: 23.7862603	total: 295ms	remaining: 222ms
57:	learn: 23.6318154	total: 300ms	remaining: 217ms
58:	learn: 23.4443306	total: 306ms	remaining: 213ms
59:	learn: 23.2581425	total: 311ms	remaining: 207ms
60:	learn: 23.0549901	total: 316ms	remaining: 202ms
61:	learn: 22.8666218	total: 320ms	remaining: 196ms
62:	learn: 22.6956739	total: 324ms	remaining: 191ms
63:	learn: 22.5068544	total: 329ms	remaining: 185ms
64:	learn: 22.1859147	total: 333ms	remaining: 179ms
65:	learn: 22.0462043	total: 337ms	remaining: 174ms
66:	learn: 21.9329563	total: 341ms	remaining: 168ms
67:	learn: 21.8029736	total: 346ms	remaining: 163ms
68:	learn: 21.6861091	total: 350ms	remaining: 157ms
69:	learn: 21.4838140	total: 354ms	remaining: 152ms
70:	learn: 21.3548921	total: 359ms	remaining: 147ms
71:	learn: 21.2244517	total: 363ms	remaining: 141ms
72:	learn: 21.0702958	total: 367ms	remaining: 136ms
73:	learn: 20.9224662	total: 371ms	remaining: 130ms
74:	learn: 20.8150357	total: 376ms	remaining: 125ms
75:	learn: 20.6962739	total: 380ms	remaining: 120ms
76:	learn: 20.5809258	total: 385ms	remaining: 115ms
77:	learn: 20.4735470	total: 389ms	remaining: 110ms
78:	learn: 20.3778167	total: 394ms	remaining: 105ms
79:	learn: 20.2211268	total: 398ms	remaining: 99.5ms
80:	learn: 20.1478678	total: 403ms	remaining: 94.5ms
81:	learn: 20.1032967	total: 407ms	remaining: 89.4ms
82:	learn: 19.9236300	total: 412ms	remaining: 84.4ms
83:	learn: 19.8151745	total: 417ms	remaining: 79.4ms
84:	learn: 19.7099856	total: 421ms	remaining: 74.3ms
85:	learn: 19.6264833	total: 426ms	remaining: 69.3ms
86:	learn: 19.4916361	total: 430ms	remaining: 64.3ms
87:	learn: 19.4050529	total: 435ms	remaining: 59.3ms
88:	learn: 19.2547065	total: 439ms	remaining: 54.2ms
89:	learn: 19.1610225	total: 443ms	remaining: 49.2ms
90:	learn: 19.0898958	total: 448ms	remaining: 44.3ms
91:	learn: 19.0489664	total: 452ms	remaining: 39.3ms
92:	learn: 18.9206240	total: 457ms	remaining: 34.4ms
93:	learn: 18.8636239	total: 462ms	remaining: 29.5ms
94:	learn: 18.8126187	total: 467ms	remaining: 24.6ms
95:	learn: 18.7579275	total: 471ms	remaining: 19.6ms
96:	learn: 18.6382753	total: 479ms	remaining: 14.8ms
97:	learn: 18.5397334	total: 487ms	remaining: 9.94ms
98:	learn: 18.4375951	total: 498ms	remaining: 5.03ms
99:	learn: 18.4033755	total: 504ms	remaining: 0us
0:	learn: 46.1068821	total: 2.55ms	remaining: 252ms
1:	learn: 45.3970261	total: 7.34ms	remaining: 360ms
2:	learn: 44.8732696	total: 11.7ms	remaining: 378ms
3:	learn: 44.1290184	total: 20.1ms	remaining: 483ms
4:	learn: 43.3290271	total: 24.5ms	remaining: 465ms
5:	learn: 42.7069090	total: 28.8ms	remaining: 452ms
6:	learn: 42.0572971	total: 33.4ms	remaining: 444ms
7:	learn: 41.4797924	total: 37.7ms	remaining: 434ms
8:	learn: 41.0023122	total: 42.3ms	remaining: 428ms
9:	learn: 40.5330570	total: 46.3ms	remaining: 416ms
10:	learn: 39.9726545	total: 50.7ms	remaining: 410ms
11:	learn: 39.3044053	total: 55ms	remaining: 404ms
12:	learn: 38.8169735	total: 59.1ms	remaining: 396ms
13:	learn: 38.2458761	total: 63.2ms	remaining: 388ms
14:	learn: 37.6280321	total: 67.8ms	remaining: 384ms
15:	learn: 37.0800610	total: 71.8ms	remaining: 377ms
16:	learn: 36.5489363	total: 75.9ms	remaining: 371ms
17:	learn: 36.0981456	total: 80ms	remaining: 364ms
18:	learn: 35.6956274	total: 84.7ms	remaining: 361ms
19:	learn: 35.1471999	total: 89ms	remaining: 356ms
20:	learn: 34.6235408	total: 93ms	remaining: 350ms
21:	learn: 34.1987018	total: 98ms	remaining: 348ms
22:	learn: 33.8985062	total: 103ms	remaining: 345ms
23:	learn: 33.3869017	total: 108ms	remaining: 342ms
24:	learn: 32.9100550	total: 113ms	remaining: 338ms
25:	learn: 32.4156208	total: 117ms	remaining: 334ms
26:	learn: 31.9320493	total: 123ms	remaining: 331ms
27:	learn: 31.5711468	total: 131ms	remaining: 336ms
28:	learn: 31.2404433	total: 138ms	remaining: 339ms
29:	learn: 30.8807946	total: 145ms	remaining: 339ms
30:	learn: 30.5948438	total: 150ms	remaining: 335ms
31:	learn: 30.3885560	total: 157ms	remaining: 333ms
32:	learn: 30.0625101	total: 161ms	remaining: 326ms
33:	learn: 29.9113114	total: 165ms	remaining: 321ms
34:	learn: 29.6983470	total: 169ms	remaining: 314ms
35:	learn: 29.4775849	total: 174ms	remaining: 309ms
36:	learn: 29.0538055	total: 178ms	remaining: 303ms
37:	learn: 28.6792318	total: 183ms	remaining: 298ms
38:	learn: 28.4231383	total: 187ms	remaining: 293ms
39:	learn: 28.1078565	total: 192ms	remaining: 287ms
40:	learn: 27.9079179	total: 196ms	remaining: 282ms
41:	learn: 27.6721506	total: 200ms	remaining: 277ms
42:	learn: 27.4228033	total: 204ms	remaining: 271ms
43:	learn: 27.1740534	total: 209ms	remaining: 266ms
44:	learn: 26.8584071	total: 214ms	remaining: 261ms
45:	learn: 26.6902083	total: 218ms	remaining: 256ms
46:	learn: 26.4855335	total: 222ms	remaining: 250ms
47:	learn: 26.2730822	total: 226ms	remaining: 245ms
48:	learn: 26.1058689	total: 231ms	remaining: 240ms
49:	learn: 25.8587318	total: 235ms	remaining: 235ms
50:	learn: 25.7558005	total: 240ms	remaining: 230ms
51:	learn: 25.5846925	total: 244ms	remaining: 225ms
52:	learn: 25.4249887	total: 248ms	remaining: 220ms
53:	learn: 25.1911054	total: 253ms	remaining: 215ms
54:	learn: 25.0544755	total: 257ms	remaining: 210ms
55:	learn: 24.8874006	total: 261ms	remaining: 205ms
56:	learn: 24.7736279	total: 266ms	remaining: 201ms
57:	learn: 24.6156255	total: 270ms	remaining: 196ms
58:	learn: 24.3962421	total: 275ms	remaining: 191ms
59:	learn: 24.2685129	total: 279ms	remaining: 186ms
60:	learn: 24.1874096	total: 284ms	remaining: 181ms
61:	learn: 24.0394287	total: 288ms	remaining: 177ms
62:	learn: 23.9281768	total: 293ms	remaining: 172ms
63:	learn: 23.7423900	total: 297ms	remaining: 167ms
64:	learn: 23.6015209	total: 302ms	remaining: 163ms
65:	learn: 23.4677943	total: 306ms	remaining: 158ms
66:	learn: 23.3215256	total: 311ms	remaining: 153ms
67:	learn: 23.1869360	total: 316ms	remaining: 149ms
68:	learn: 22.9691180	total: 320ms	remaining: 144ms
69:	learn: 22.7531657	total: 329ms	remaining: 141ms
70:	learn: 22.6133477	total: 337ms	remaining: 138ms
71:	learn: 22.3452758	total: 346ms	remaining: 135ms
72:	learn: 22.2065350	total: 353ms	remaining: 131ms
73:	learn: 22.1071155	total: 360ms	remaining: 126ms
74:	learn: 21.9740686	total: 366ms	remaining: 122ms
75:	learn: 21.8892033	total: 371ms	remaining: 117ms
76:	learn: 21.8267882	total: 376ms	remaining: 112ms
77:	learn: 21.7423479	total: 382ms	remaining: 108ms
78:	learn: 21.6242075	total: 387ms	remaining: 103ms
79:	learn: 21.5016910	total: 392ms	remaining: 98.1ms
80:	learn: 21.4806623	total: 393ms	remaining: 92.3ms
81:	learn: 21.3166637	total: 399ms	remaining: 87.6ms
82:	learn: 21.2222534	total: 404ms	remaining: 82.7ms
83:	learn: 21.1535708	total: 409ms	remaining: 77.9ms
84:	learn: 21.0858902	total: 414ms	remaining: 73.1ms
85:	learn: 20.9206003	total: 420ms	remaining: 68.4ms
86:	learn: 20.8674695	total: 424ms	remaining: 63.4ms
87:	learn: 20.8089875	total: 429ms	remaining: 58.5ms
88:	learn: 20.7085401	total: 433ms	remaining: 53.6ms
89:	learn: 20.5513468	total: 438ms	remaining: 48.6ms
90:	learn: 20.4586742	total: 442ms	remaining: 43.7ms
91:	learn: 20.3932149	total: 447ms	remaining: 38.8ms
92:	learn: 20.3000895	total: 452ms	remaining: 34ms
93:	learn: 20.2254009	total: 456ms	remaining: 29.1ms
94:	learn: 20.1750050	total: 460ms	remaining: 24.2ms
95:	learn: 20.0715579	total: 465ms	remaining: 19.4ms
96:	learn: 19.9920082	total: 469ms	remaining: 14.5ms
97:	learn: 19.9664401	total: 474ms	remaining: 9.67ms
98:	learn: 19.8689673	total: 478ms	remaining: 4.83ms
99:	learn: 19.7537356	total: 483ms	remaining: 0us
0:	learn: 46.8832143	total: 5.09ms	remaining: 504ms
1:	learn: 45.8700349	total: 9.64ms	remaining: 473ms
2:	learn: 45.0546867	total: 14.3ms	remaining: 461ms
3:	learn: 44.2829439	total: 19.1ms	remaining: 458ms
4:	learn: 43.4609042	total: 26.5ms	remaining: 504ms
5:	learn: 42.6754991	total: 34.4ms	remaining: 539ms
6:	learn: 41.9234935	total: 41.7ms	remaining: 553ms
7:	learn: 41.3987518	total: 47.2ms	remaining: 543ms
8:	learn: 40.6625066	total: 53.3ms	remaining: 539ms
9:	learn: 40.0029561	total: 57.8ms	remaining: 520ms
10:	learn: 39.3897033	total: 62ms	remaining: 502ms
11:	learn: 38.7741453	total: 66.5ms	remaining: 488ms
12:	learn: 38.1201100	total: 70.1ms	remaining: 469ms
13:	learn: 37.5129454	total: 74.3ms	remaining: 457ms
14:	learn: 37.2062206	total: 78.6ms	remaining: 445ms
15:	learn: 36.6831741	total: 82.8ms	remaining: 435ms
16:	learn: 36.2902788	total: 87.1ms	remaining: 425ms
17:	learn: 35.7639930	total: 91.5ms	remaining: 417ms
18:	learn: 35.2580953	total: 95.8ms	remaining: 408ms
19:	learn: 34.7809739	total: 100ms	remaining: 400ms
20:	learn: 34.1330433	total: 104ms	remaining: 392ms
21:	learn: 33.7302219	total: 109ms	remaining: 385ms
22:	learn: 33.3502495	total: 113ms	remaining: 377ms
23:	learn: 33.0067804	total: 117ms	remaining: 371ms
24:	learn: 32.6897855	total: 121ms	remaining: 364ms
25:	learn: 32.4361119	total: 126ms	remaining: 357ms
26:	learn: 32.1278981	total: 130ms	remaining: 352ms
27:	learn: 31.7863721	total: 134ms	remaining: 345ms
28:	learn: 31.4791450	total: 139ms	remaining: 339ms
29:	learn: 31.1760161	total: 143ms	remaining: 334ms
30:	learn: 30.9238888	total: 148ms	remaining: 329ms
31:	learn: 30.5500905	total: 153ms	remaining: 325ms
32:	learn: 30.3078126	total: 158ms	remaining: 320ms
33:	learn: 30.0480921	total: 162ms	remaining: 315ms
34:	learn: 29.8623884	total: 167ms	remaining: 310ms
35:	learn: 29.5991038	total: 172ms	remaining: 305ms
36:	learn: 29.4061161	total: 176ms	remaining: 300ms
37:	learn: 29.0269515	total: 181ms	remaining: 295ms
38:	learn: 28.8224959	total: 185ms	remaining: 289ms
39:	learn: 28.6417843	total: 189ms	remaining: 284ms
40:	learn: 28.3633368	total: 194ms	remaining: 279ms
41:	learn: 28.0200246	total: 198ms	remaining: 274ms
42:	learn: 27.7221254	total: 203ms	remaining: 269ms
43:	learn: 27.5105818	total: 207ms	remaining: 263ms
44:	learn: 27.3551010	total: 211ms	remaining: 258ms
45:	learn: 27.0787522	total: 216ms	remaining: 253ms
46:	learn: 26.8726317	total: 220ms	remaining: 248ms
47:	learn: 26.8003277	total: 225ms	remaining: 243ms
48:	learn: 26.5493785	total: 229ms	remaining: 239ms
49:	learn: 26.3699550	total: 234ms	remaining: 234ms
50:	learn: 26.1519631	total: 239ms	remaining: 229ms
51:	learn: 25.9277325	total: 244ms	remaining: 225ms
52:	learn: 25.7286035	total: 248ms	remaining: 220ms
53:	learn: 25.4999193	total: 257ms	remaining: 219ms
54:	learn: 25.3434703	total: 266ms	remaining: 218ms
55:	learn: 25.1497545	total: 274ms	remaining: 215ms
56:	learn: 24.9498143	total: 282ms	remaining: 213ms
57:	learn: 24.6509390	total: 287ms	remaining: 208ms
58:	learn: 24.5576144	total: 293ms	remaining: 203ms
59:	learn: 24.4265144	total: 298ms	remaining: 199ms
60:	learn: 24.3100706	total: 303ms	remaining: 194ms
61:	learn: 24.1727952	total: 309ms	remaining: 189ms
62:	learn: 24.0478558	total: 314ms	remaining: 184ms
63:	learn: 23.9124577	total: 319ms	remaining: 179ms
64:	learn: 23.7703718	total: 324ms	remaining: 174ms
65:	learn: 23.5975027	total: 329ms	remaining: 170ms
66:	learn: 23.4318077	total: 334ms	remaining: 165ms
67:	learn: 23.3099691	total: 340ms	remaining: 160ms
68:	learn: 23.1947982	total: 346ms	remaining: 155ms
69:	learn: 23.0260174	total: 350ms	remaining: 150ms
70:	learn: 22.8523100	total: 355ms	remaining: 145ms
71:	learn: 22.8028534	total: 360ms	remaining: 140ms
72:	learn: 22.6880658	total: 365ms	remaining: 135ms
73:	learn: 22.5956809	total: 370ms	remaining: 130ms
74:	learn: 22.4692932	total: 375ms	remaining: 125ms
75:	learn: 22.2863504	total: 379ms	remaining: 120ms
76:	learn: 22.1911237	total: 383ms	remaining: 114ms
77:	learn: 22.1098391	total: 387ms	remaining: 109ms
78:	learn: 22.0182738	total: 391ms	remaining: 104ms
79:	learn: 21.9306746	total: 395ms	remaining: 98.9ms
80:	learn: 21.7508233	total: 400ms	remaining: 93.7ms
81:	learn: 21.7108446	total: 404ms	remaining: 88.7ms
82:	learn: 21.5931852	total: 408ms	remaining: 83.7ms
83:	learn: 21.4480361	total: 412ms	remaining: 78.5ms
84:	learn: 21.3092119	total: 416ms	remaining: 73.5ms
85:	learn: 21.2605557	total: 421ms	remaining: 68.6ms
86:	learn: 21.1123597	total: 426ms	remaining: 63.6ms
87:	learn: 21.0115642	total: 430ms	remaining: 58.7ms
88:	learn: 20.9389040	total: 435ms	remaining: 53.8ms
89:	learn: 20.8300300	total: 440ms	remaining: 48.9ms
90:	learn: 20.7159733	total: 444ms	remaining: 43.9ms
91:	learn: 20.6282090	total: 452ms	remaining: 39.3ms
92:	learn: 20.5164529	total: 461ms	remaining: 34.7ms
93:	learn: 20.4692032	total: 467ms	remaining: 29.8ms
94:	learn: 20.3768451	total: 472ms	remaining: 24.8ms
95:	learn: 20.2808056	total: 478ms	remaining: 19.9ms
96:	learn: 20.2082089	total: 482ms	remaining: 14.9ms
97:	learn: 20.1698768	total: 487ms	remaining: 9.93ms
98:	learn: 20.1048816	total: 491ms	remaining: 4.96ms
99:	learn: 20.0086159	total: 495ms	remaining: 0us
0:	learn: 27.6242191	total: 23.9ms	remaining: 7.15s
1:	learn: 27.3247973	total: 47.7ms	remaining: 7.11s
2:	learn: 26.9048262	total: 70.7ms	remaining: 7s
3:	learn: 26.6094870	total: 93.7ms	remaining: 6.93s
4:	learn: 26.2335903	total: 119ms	remaining: 7s
5:	learn: 25.9065752	total: 152ms	remaining: 7.46s
6:	learn: 25.6303453	total: 177ms	remaining: 7.39s
7:	learn: 25.2422673	total: 201ms	remaining: 7.35s
8:	learn: 24.9092185	total: 226ms	remaining: 7.3s
9:	learn: 24.6380278	total: 250ms	remaining: 7.25s
10:	learn: 24.2990126	total: 275ms	remaining: 7.22s
11:	learn: 24.0194492	total: 300ms	remaining: 7.21s
12:	learn: 23.7720807	total: 331ms	remaining: 7.32s
13:	learn: 23.4419462	total: 359ms	remaining: 7.34s
14:	learn: 23.2366857	total: 383ms	remaining: 7.28s
15:	learn: 22.9901263	total: 387ms	remaining: 6.86s
16:	learn: 22.7775050	total: 412ms	remaining: 6.85s
17:	learn: 22.5290799	total: 437ms	remaining: 6.85s
18:	learn: 22.2427201	total: 461ms	remaining: 6.83s
19:	learn: 21.9766361	total: 486ms	remaining: 6.81s
20:	learn: 21.7608475	total: 511ms	remaining: 6.79s
21:	learn: 21.5756818	total: 537ms	remaining: 6.78s
22:	learn: 21.3753018	total: 567ms	remaining: 6.82s
23:	learn: 21.1715384	total: 597ms	remaining: 6.86s
24:	learn: 20.9557317	total: 622ms	remaining: 6.84s
25:	learn: 20.7653390	total: 648ms	remaining: 6.83s
26:	learn: 20.5688623	total: 674ms	remaining: 6.81s
27:	learn: 20.3753201	total: 700ms	remaining: 6.8s
28:	learn: 20.2087140	total: 723ms	remaining: 6.76s
29:	learn: 20.0437127	total: 747ms	remaining: 6.72s
30:	learn: 19.7939404	total: 772ms	remaining: 6.7s
31:	learn: 19.6135511	total: 801ms	remaining: 6.71s
32:	learn: 19.4223949	total: 825ms	remaining: 6.68s
33:	learn: 19.3099062	total: 850ms	remaining: 6.65s
34:	learn: 19.1471296	total: 874ms	remaining: 6.61s
35:	learn: 18.9602406	total: 898ms	remaining: 6.58s
36:	learn: 18.8463205	total: 922ms	remaining: 6.55s
37:	learn: 18.5993654	total: 946ms	remaining: 6.52s
38:	learn: 18.4547850	total: 971ms	remaining: 6.5s
39:	learn: 18.3265698	total: 1s	remaining: 6.51s
40:	learn: 18.1552052	total: 1.03s	remaining: 6.5s
41:	learn: 17.9969729	total: 1.05s	remaining: 6.48s
42:	learn: 17.8420506	total: 1.08s	remaining: 6.45s
43:	learn: 17.7314471	total: 1.1s	remaining: 6.42s
44:	learn: 17.6037885	total: 1.13s	remaining: 6.39s
45:	learn: 17.4911598	total: 1.15s	remaining: 6.36s
46:	learn: 17.3334650	total: 1.18s	remaining: 6.33s
47:	learn: 17.1964435	total: 1.2s	remaining: 6.3s
48:	learn: 17.0705369	total: 1.23s	remaining: 6.3s
49:	learn: 16.9282293	total: 1.26s	remaining: 6.28s
50:	learn: 16.7996947	total: 1.28s	remaining: 6.25s
51:	learn: 16.6978905	total: 1.3s	remaining: 6.22s
52:	learn: 16.5793323	total: 1.33s	remaining: 6.19s
53:	learn: 16.4770669	total: 1.35s	remaining: 6.16s
54:	learn: 16.3655624	total: 1.38s	remaining: 6.13s
55:	learn: 16.2604369	total: 1.4s	remaining: 6.1s
56:	learn: 16.1431440	total: 1.42s	remaining: 6.07s
57:	learn: 16.0326605	total: 1.46s	remaining: 6.08s
58:	learn: 15.9323014	total: 1.48s	remaining: 6.05s
59:	learn: 15.8025601	total: 1.51s	remaining: 6.03s
60:	learn: 15.6963178	total: 1.53s	remaining: 6s
61:	learn: 15.6270773	total: 1.56s	remaining: 5.98s
62:	learn: 15.5313112	total: 1.58s	remaining: 5.96s
63:	learn: 15.4399515	total: 1.61s	remaining: 5.94s
64:	learn: 15.3597117	total: 1.64s	remaining: 5.93s
65:	learn: 15.2697176	total: 1.67s	remaining: 5.93s
66:	learn: 15.1828907	total: 1.7s	remaining: 5.91s
67:	learn: 15.0961490	total: 1.73s	remaining: 5.88s
68:	learn: 15.0128613	total: 1.75s	remaining: 5.87s
69:	learn: 14.9098281	total: 1.78s	remaining: 5.84s
70:	learn: 14.8290802	total: 1.8s	remaining: 5.81s
71:	learn: 14.7354294	total: 1.83s	remaining: 5.79s
72:	learn: 14.6593235	total: 1.86s	remaining: 5.77s
73:	learn: 14.5723402	total: 1.89s	remaining: 5.78s
74:	learn: 14.4986819	total: 1.92s	remaining: 5.75s
75:	learn: 14.4087447	total: 1.94s	remaining: 5.72s
76:	learn: 14.3357763	total: 1.97s	remaining: 5.7s
77:	learn: 14.2423286	total: 1.99s	remaining: 5.68s
78:	learn: 14.1791552	total: 2.02s	remaining: 5.65s
79:	learn: 14.0970307	total: 2.04s	remaining: 5.62s
80:	learn: 14.0336692	total: 2.07s	remaining: 5.61s
81:	learn: 13.9758100	total: 2.1s	remaining: 5.59s
82:	learn: 13.9111969	total: 2.13s	remaining: 5.56s
83:	learn: 13.8350945	total: 2.15s	remaining: 5.54s
84:	learn: 13.7593569	total: 2.18s	remaining: 5.51s
85:	learn: 13.6953120	total: 2.2s	remaining: 5.48s
86:	learn: 13.6352452	total: 2.23s	remaining: 5.46s
87:	learn: 13.5794275	total: 2.26s	remaining: 5.44s
88:	learn: 13.4880894	total: 2.29s	remaining: 5.43s
89:	learn: 13.4305792	total: 2.31s	remaining: 5.4s
90:	learn: 13.3569291	total: 2.34s	remaining: 5.38s
91:	learn: 13.2958628	total: 2.37s	remaining: 5.35s
92:	learn: 13.2338079	total: 2.39s	remaining: 5.33s
93:	learn: 13.1821114	total: 2.42s	remaining: 5.3s
94:	learn: 13.1082697	total: 2.44s	remaining: 5.27s
95:	learn: 13.0475619	total: 2.47s	remaining: 5.25s
96:	learn: 12.9878324	total: 2.5s	remaining: 5.22s
97:	learn: 12.9294785	total: 2.53s	remaining: 5.21s
98:	learn: 12.8646231	total: 2.55s	remaining: 5.18s
99:	learn: 12.8003027	total: 2.58s	remaining: 5.16s
100:	learn: 12.6741024	total: 2.6s	remaining: 5.13s
101:	learn: 12.5871778	total: 2.63s	remaining: 5.1s
102:	learn: 12.5199785	total: 2.65s	remaining: 5.08s
103:	learn: 12.4533348	total: 2.68s	remaining: 5.05s
104:	learn: 12.4014303	total: 2.71s	remaining: 5.03s
105:	learn: 12.3404648	total: 2.74s	remaining: 5.02s
106:	learn: 12.2853908	total: 2.77s	remaining: 5s
107:	learn: 12.2113131	total: 2.79s	remaining: 4.97s
108:	learn: 12.1443818	total: 2.82s	remaining: 4.94s
109:	learn: 12.0782972	total: 2.85s	remaining: 4.91s
110:	learn: 12.0242888	total: 2.87s	remaining: 4.89s
111:	learn: 11.9606186	total: 2.89s	remaining: 4.86s
112:	learn: 11.8840123	total: 2.93s	remaining: 4.84s
113:	learn: 11.8362234	total: 2.95s	remaining: 4.82s
114:	learn: 11.7798600	total: 2.98s	remaining: 4.79s
115:	learn: 11.7205583	total: 3s	remaining: 4.76s
116:	learn: 11.6703154	total: 3.02s	remaining: 4.73s
117:	learn: 11.5906207	total: 3.05s	remaining: 4.7s
118:	learn: 11.5392300	total: 3.07s	remaining: 4.67s
119:	learn: 11.5009891	total: 3.09s	remaining: 4.64s
120:	learn: 11.4496613	total: 3.12s	remaining: 4.61s
121:	learn: 11.3880593	total: 3.16s	remaining: 4.6s
122:	learn: 11.3343840	total: 3.18s	remaining: 4.58s
123:	learn: 11.2903777	total: 3.21s	remaining: 4.55s
124:	learn: 11.2226066	total: 3.23s	remaining: 4.52s
125:	learn: 11.1756503	total: 3.25s	remaining: 4.49s
126:	learn: 11.1266674	total: 3.28s	remaining: 4.47s
127:	learn: 11.0542744	total: 3.3s	remaining: 4.44s
128:	learn: 11.0132226	total: 3.33s	remaining: 4.41s
129:	learn: 10.9545179	total: 3.35s	remaining: 4.38s
130:	learn: 10.9167977	total: 3.38s	remaining: 4.37s
131:	learn: 10.8607094	total: 3.41s	remaining: 4.34s
132:	learn: 10.8081246	total: 3.43s	remaining: 4.31s
133:	learn: 10.7595004	total: 3.46s	remaining: 4.28s
134:	learn: 10.6949228	total: 3.48s	remaining: 4.25s
135:	learn: 10.6549608	total: 3.5s	remaining: 4.23s
136:	learn: 10.6085016	total: 3.53s	remaining: 4.2s
137:	learn: 10.5530774	total: 3.55s	remaining: 4.17s
138:	learn: 10.5146132	total: 3.59s	remaining: 4.16s
139:	learn: 10.4804263	total: 3.62s	remaining: 4.13s
140:	learn: 10.4469935	total: 3.64s	remaining: 4.11s
141:	learn: 10.4083597	total: 3.67s	remaining: 4.08s
142:	learn: 10.3700272	total: 3.69s	remaining: 4.05s
143:	learn: 10.3240531	total: 3.71s	remaining: 4.02s
144:	learn: 10.2838387	total: 3.74s	remaining: 4s
145:	learn: 10.2237396	total: 3.76s	remaining: 3.97s
146:	learn: 10.1677493	total: 3.79s	remaining: 3.94s
147:	learn: 10.1289528	total: 3.82s	remaining: 3.92s
148:	learn: 10.0918869	total: 3.84s	remaining: 3.89s
149:	learn: 10.0599014	total: 3.86s	remaining: 3.86s
150:	learn: 9.9817438	total: 3.89s	remaining: 3.84s
151:	learn: 9.9410469	total: 3.91s	remaining: 3.81s
152:	learn: 9.8790383	total: 3.94s	remaining: 3.78s
153:	learn: 9.8489714	total: 3.96s	remaining: 3.75s
154:	learn: 9.8192539	total: 3.98s	remaining: 3.73s
155:	learn: 9.7595292	total: 4.01s	remaining: 3.7s
156:	learn: 9.7305132	total: 4.04s	remaining: 3.69s
157:	learn: 9.6946431	total: 4.07s	remaining: 3.66s
158:	learn: 9.6382391	total: 4.09s	remaining: 3.63s
159:	learn: 9.5932080	total: 4.12s	remaining: 3.6s
160:	learn: 9.5528662	total: 4.14s	remaining: 3.58s
161:	learn: 9.5112954	total: 4.17s	remaining: 3.55s
162:	learn: 9.4782229	total: 4.19s	remaining: 3.52s
163:	learn: 9.4469139	total: 4.22s	remaining: 3.5s
164:	learn: 9.4073553	total: 4.25s	remaining: 3.48s
165:	learn: 9.3658459	total: 4.28s	remaining: 3.45s
166:	learn: 9.3331509	total: 4.3s	remaining: 3.42s
167:	learn: 9.3022193	total: 4.33s	remaining: 3.4s
168:	learn: 9.2687355	total: 4.35s	remaining: 3.37s
169:	learn: 9.2347395	total: 4.38s	remaining: 3.35s
170:	learn: 9.1946963	total: 4.4s	remaining: 3.32s
171:	learn: 9.1669467	total: 4.43s	remaining: 3.29s
172:	learn: 9.1174548	total: 4.46s	remaining: 3.27s
173:	learn: 9.0578865	total: 4.49s	remaining: 3.25s
174:	learn: 9.0242697	total: 4.51s	remaining: 3.23s
175:	learn: 8.9812385	total: 4.54s	remaining: 3.2s
176:	learn: 8.9394173	total: 4.57s	remaining: 3.17s
177:	learn: 8.8954630	total: 4.59s	remaining: 3.15s
178:	learn: 8.8650625	total: 4.62s	remaining: 3.12s
179:	learn: 8.8128518	total: 4.64s	remaining: 3.1s
180:	learn: 8.7713941	total: 4.67s	remaining: 3.07s
181:	learn: 8.7271373	total: 4.7s	remaining: 3.05s
182:	learn: 8.6827020	total: 4.73s	remaining: 3.02s
183:	learn: 8.6411197	total: 4.75s	remaining: 3s
184:	learn: 8.6161231	total: 4.78s	remaining: 2.97s
185:	learn: 8.5812975	total: 4.8s	remaining: 2.94s
186:	learn: 8.5494363	total: 4.83s	remaining: 2.92s
187:	learn: 8.5121894	total: 4.85s	remaining: 2.89s
188:	learn: 8.4769543	total: 4.88s	remaining: 2.86s
189:	learn: 8.4285766	total: 4.9s	remaining: 2.84s
190:	learn: 8.4032474	total: 4.94s	remaining: 2.82s
191:	learn: 8.3791298	total: 4.97s	remaining: 2.79s
192:	learn: 8.3494894	total: 4.99s	remaining: 2.77s
193:	learn: 8.3153327	total: 5.02s	remaining: 2.74s
194:	learn: 8.2823004	total: 5.05s	remaining: 2.72s
195:	learn: 8.2449482	total: 5.07s	remaining: 2.69s
196:	learn: 8.2013567	total: 5.1s	remaining: 2.66s
197:	learn: 8.1697337	total: 5.12s	remaining: 2.64s
198:	learn: 8.1265833	total: 5.16s	remaining: 2.62s
199:	learn: 8.0905433	total: 5.18s	remaining: 2.59s
200:	learn: 8.0669552	total: 5.21s	remaining: 2.56s
201:	learn: 8.0258330	total: 5.23s	remaining: 2.54s
202:	learn: 8.0026168	total: 5.25s	remaining: 2.51s
203:	learn: 7.9482286	total: 5.28s	remaining: 2.48s
204:	learn: 7.9105233	total: 5.3s	remaining: 2.46s
205:	learn: 7.8966891	total: 5.33s	remaining: 2.43s
206:	learn: 7.8575063	total: 5.36s	remaining: 2.41s
207:	learn: 7.8147335	total: 5.39s	remaining: 2.38s
208:	learn: 7.7917140	total: 5.42s	remaining: 2.36s
209:	learn: 7.7607147	total: 5.44s	remaining: 2.33s
210:	learn: 7.7425727	total: 5.47s	remaining: 2.31s
211:	learn: 7.7238288	total: 5.5s	remaining: 2.28s
212:	learn: 7.6985896	total: 5.52s	remaining: 2.25s
213:	learn: 7.6752745	total: 5.55s	remaining: 2.23s
214:	learn: 7.6442259	total: 5.58s	remaining: 2.2s
215:	learn: 7.6325331	total: 5.6s	remaining: 2.18s
216:	learn: 7.6063316	total: 5.63s	remaining: 2.15s
217:	learn: 7.5831832	total: 5.65s	remaining: 2.13s
218:	learn: 7.5672234	total: 5.68s	remaining: 2.1s
219:	learn: 7.5331936	total: 5.7s	remaining: 2.07s
220:	learn: 7.4920831	total: 5.73s	remaining: 2.05s
221:	learn: 7.4737554	total: 5.75s	remaining: 2.02s
222:	learn: 7.4270074	total: 5.78s	remaining: 2s
223:	learn: 7.4017600	total: 5.81s	remaining: 1.97s
224:	learn: 7.3806959	total: 5.84s	remaining: 1.95s
225:	learn: 7.3554017	total: 5.87s	remaining: 1.92s
226:	learn: 7.3409799	total: 5.89s	remaining: 1.89s
227:	learn: 7.3212923	total: 5.92s	remaining: 1.87s
228:	learn: 7.3105787	total: 5.94s	remaining: 1.84s
229:	learn: 7.2892883	total: 5.97s	remaining: 1.81s
230:	learn: 7.2744332	total: 5.99s	remaining: 1.79s
231:	learn: 7.2520263	total: 6.02s	remaining: 1.76s
232:	learn: 7.2282060	total: 6.05s	remaining: 1.74s
233:	learn: 7.2079652	total: 6.08s	remaining: 1.71s
234:	learn: 7.1916393	total: 6.1s	remaining: 1.69s
235:	learn: 7.1701919	total: 6.12s	remaining: 1.66s
236:	learn: 7.1568798	total: 6.15s	remaining: 1.63s
237:	learn: 7.1311171	total: 6.17s	remaining: 1.61s
238:	learn: 7.1241442	total: 6.2s	remaining: 1.58s
239:	learn: 7.1023502	total: 6.23s	remaining: 1.56s
240:	learn: 7.0871109	total: 6.25s	remaining: 1.53s
241:	learn: 7.0717340	total: 6.28s	remaining: 1.5s
242:	learn: 7.0574975	total: 6.3s	remaining: 1.48s
243:	learn: 7.0489270	total: 6.33s	remaining: 1.45s
244:	learn: 7.0279173	total: 6.35s	remaining: 1.43s
245:	learn: 6.9967234	total: 6.38s	remaining: 1.4s
246:	learn: 6.9827176	total: 6.4s	remaining: 1.37s
247:	learn: 6.9632381	total: 6.42s	remaining: 1.35s
248:	learn: 6.9490747	total: 6.45s	remaining: 1.32s
249:	learn: 6.9350226	total: 6.48s	remaining: 1.3s
250:	learn: 6.9203338	total: 6.51s	remaining: 1.27s
251:	learn: 6.9078713	total: 6.53s	remaining: 1.24s
252:	learn: 6.8997471	total: 6.55s	remaining: 1.22s
253:	learn: 6.8786784	total: 6.58s	remaining: 1.19s
254:	learn: 6.8629866	total: 6.6s	remaining: 1.17s
255:	learn: 6.8497530	total: 6.63s	remaining: 1.14s
256:	learn: 6.8363263	total: 6.65s	remaining: 1.11s
257:	learn: 6.8232778	total: 6.68s	remaining: 1.09s
258:	learn: 6.7952234	total: 6.71s	remaining: 1.06s
259:	learn: 6.7671952	total: 6.74s	remaining: 1.04s
260:	learn: 6.7545126	total: 6.76s	remaining: 1.01s
261:	learn: 6.7414039	total: 6.79s	remaining: 984ms
262:	learn: 6.7307423	total: 6.81s	remaining: 958ms
263:	learn: 6.6887074	total: 6.83s	remaining: 932ms
264:	learn: 6.6786482	total: 6.86s	remaining: 906ms
265:	learn: 6.6520387	total: 6.88s	remaining: 880ms
266:	learn: 6.6371511	total: 6.91s	remaining: 854ms
267:	learn: 6.6139304	total: 6.94s	remaining: 829ms
268:	learn: 6.6024854	total: 6.96s	remaining: 803ms
269:	learn: 6.5811216	total: 6.99s	remaining: 776ms
270:	learn: 6.5396874	total: 7.01s	remaining: 750ms
271:	learn: 6.5260569	total: 7.04s	remaining: 724ms
272:	learn: 6.5161555	total: 7.06s	remaining: 698ms
273:	learn: 6.5055568	total: 7.08s	remaining: 672ms
274:	learn: 6.4955852	total: 7.11s	remaining: 646ms
275:	learn: 6.4768059	total: 7.13s	remaining: 620ms
276:	learn: 6.4526678	total: 7.17s	remaining: 595ms
277:	learn: 6.4407932	total: 7.19s	remaining: 569ms
278:	learn: 6.4229786	total: 7.22s	remaining: 543ms
279:	learn: 6.4143528	total: 7.24s	remaining: 517ms
280:	learn: 6.3939760	total: 7.27s	remaining: 491ms
281:	learn: 6.3821368	total: 7.29s	remaining: 465ms
282:	learn: 6.3733999	total: 7.31s	remaining: 439ms
283:	learn: 6.3506155	total: 7.34s	remaining: 413ms
284:	learn: 6.3456374	total: 7.37s	remaining: 388ms
285:	learn: 6.3423150	total: 7.39s	remaining: 362ms
286:	learn: 6.3323118	total: 7.42s	remaining: 336ms
287:	learn: 6.3209916	total: 7.44s	remaining: 310ms
288:	learn: 6.3017754	total: 7.47s	remaining: 284ms
289:	learn: 6.2738210	total: 7.49s	remaining: 258ms
290:	learn: 6.2684358	total: 7.51s	remaining: 232ms
291:	learn: 6.2546793	total: 7.54s	remaining: 207ms
292:	learn: 6.2441498	total: 7.56s	remaining: 181ms
293:	learn: 6.2406001	total: 7.6s	remaining: 155ms
294:	learn: 6.2308638	total: 7.63s	remaining: 129ms
295:	learn: 6.2166524	total: 7.66s	remaining: 103ms
296:	learn: 6.2029239	total: 7.68s	remaining: 77.6ms
297:	learn: 6.1930984	total: 7.71s	remaining: 51.8ms
298:	learn: 6.1787666	total: 7.74s	remaining: 25.9ms
299:	learn: 6.1715886	total: 7.78s	remaining: 0us
0:	learn: 43.0189040	total: 23.8ms	remaining: 7.11s
1:	learn: 42.1913120	total: 47.3ms	remaining: 7.05s
2:	learn: 41.2381785	total: 72.4ms	remaining: 7.16s
3:	learn: 40.3733911	total: 96.2ms	remaining: 7.12s
4:	learn: 39.7420433	total: 122ms	remaining: 7.18s
5:	learn: 38.9384932	total: 149ms	remaining: 7.28s
6:	learn: 38.2027180	total: 184ms	remaining: 7.7s
7:	learn: 37.5736018	total: 210ms	remaining: 7.67s
8:	learn: 36.9042368	total: 236ms	remaining: 7.63s
9:	learn: 36.1138721	total: 262ms	remaining: 7.61s
10:	learn: 35.4444268	total: 266ms	remaining: 7s
11:	learn: 34.7889997	total: 282ms	remaining: 6.77s
12:	learn: 34.3622266	total: 308ms	remaining: 6.8s
13:	learn: 33.6999120	total: 334ms	remaining: 6.82s
14:	learn: 32.9955576	total: 367ms	remaining: 6.97s
15:	learn: 32.3475617	total: 395ms	remaining: 7s
16:	learn: 31.9028750	total: 419ms	remaining: 6.97s
17:	learn: 31.3786390	total: 443ms	remaining: 6.94s
18:	learn: 30.9731314	total: 467ms	remaining: 6.91s
19:	learn: 30.5397110	total: 491ms	remaining: 6.88s
20:	learn: 30.0650165	total: 516ms	remaining: 6.85s
21:	learn: 29.4732599	total: 541ms	remaining: 6.83s
22:	learn: 29.0746185	total: 567ms	remaining: 6.83s
23:	learn: 28.5839328	total: 603ms	remaining: 6.93s
24:	learn: 28.2894974	total: 629ms	remaining: 6.92s
25:	learn: 27.7954367	total: 654ms	remaining: 6.9s
26:	learn: 27.3542996	total: 680ms	remaining: 6.88s
27:	learn: 27.0838564	total: 706ms	remaining: 6.86s
28:	learn: 26.7019509	total: 732ms	remaining: 6.84s
29:	learn: 26.3607640	total: 757ms	remaining: 6.82s
30:	learn: 25.9174899	total: 790ms	remaining: 6.85s
31:	learn: 25.5590328	total: 816ms	remaining: 6.83s
32:	learn: 25.1682834	total: 841ms	remaining: 6.8s
33:	learn: 24.8123558	total: 866ms	remaining: 6.77s
34:	learn: 24.5841473	total: 891ms	remaining: 6.75s
35:	learn: 24.2224307	total: 916ms	remaining: 6.71s
36:	learn: 23.9745715	total: 941ms	remaining: 6.68s
37:	learn: 23.6958493	total: 966ms	remaining: 6.66s
38:	learn: 23.3890143	total: 999ms	remaining: 6.68s
39:	learn: 23.1113968	total: 1.02s	remaining: 6.66s
40:	learn: 22.8519880	total: 1.05s	remaining: 6.64s
41:	learn: 22.5944697	total: 1.08s	remaining: 6.61s
42:	learn: 22.3853418	total: 1.1s	remaining: 6.6s
43:	learn: 22.1827007	total: 1.13s	remaining: 6.58s
44:	learn: 22.0186852	total: 1.15s	remaining: 6.54s
45:	learn: 21.7686773	total: 1.18s	remaining: 6.52s
46:	learn: 21.5978489	total: 1.21s	remaining: 6.51s
47:	learn: 21.3542004	total: 1.24s	remaining: 6.5s
48:	learn: 21.1752073	total: 1.26s	remaining: 6.47s
49:	learn: 21.0415246	total: 1.29s	remaining: 6.45s
50:	learn: 20.8441081	total: 1.31s	remaining: 6.42s
51:	learn: 20.5918001	total: 1.34s	remaining: 6.39s
52:	learn: 20.4441208	total: 1.36s	remaining: 6.36s
53:	learn: 20.2679633	total: 1.39s	remaining: 6.34s
54:	learn: 20.1163092	total: 1.42s	remaining: 6.32s
55:	learn: 19.9714704	total: 1.45s	remaining: 6.34s
56:	learn: 19.8249765	total: 1.48s	remaining: 6.31s
57:	learn: 19.6607355	total: 1.5s	remaining: 6.28s
58:	learn: 19.4877956	total: 1.53s	remaining: 6.26s
59:	learn: 19.3053072	total: 1.56s	remaining: 6.24s
60:	learn: 19.1885738	total: 1.58s	remaining: 6.21s
61:	learn: 19.0346503	total: 1.61s	remaining: 6.18s
62:	learn: 18.8347986	total: 1.64s	remaining: 6.16s
63:	learn: 18.6814926	total: 1.67s	remaining: 6.15s
64:	learn: 18.5382672	total: 1.69s	remaining: 6.13s
65:	learn: 18.3895833	total: 1.72s	remaining: 6.1s
66:	learn: 18.2694672	total: 1.75s	remaining: 6.07s
67:	learn: 18.1196051	total: 1.77s	remaining: 6.04s
68:	learn: 17.9925317	total: 1.79s	remaining: 6.01s
69:	learn: 17.8749679	total: 1.82s	remaining: 5.98s
70:	learn: 17.7225935	total: 1.84s	remaining: 5.95s
71:	learn: 17.5806906	total: 1.88s	remaining: 5.95s
72:	learn: 17.4922570	total: 1.91s	remaining: 5.93s
73:	learn: 17.3984999	total: 1.93s	remaining: 5.9s
74:	learn: 17.3128227	total: 1.96s	remaining: 5.88s
75:	learn: 17.2165163	total: 1.99s	remaining: 5.85s
76:	learn: 17.0889232	total: 2.01s	remaining: 5.82s
77:	learn: 16.9583567	total: 2.04s	remaining: 5.79s
78:	learn: 16.8340539	total: 2.06s	remaining: 5.76s
79:	learn: 16.7346257	total: 2.09s	remaining: 5.74s
80:	learn: 16.6446663	total: 2.12s	remaining: 5.72s
81:	learn: 16.5218155	total: 2.14s	remaining: 5.7s
82:	learn: 16.4054583	total: 2.17s	remaining: 5.67s
83:	learn: 16.2803558	total: 2.19s	remaining: 5.63s
84:	learn: 16.1516324	total: 2.21s	remaining: 5.6s
85:	learn: 16.0643357	total: 2.24s	remaining: 5.57s
86:	learn: 15.9817265	total: 2.26s	remaining: 5.54s
87:	learn: 15.9144474	total: 2.29s	remaining: 5.53s
88:	learn: 15.8380424	total: 2.32s	remaining: 5.51s
89:	learn: 15.7453770	total: 2.35s	remaining: 5.48s
90:	learn: 15.6720653	total: 2.37s	remaining: 5.45s
91:	learn: 15.5626839	total: 2.4s	remaining: 5.42s
92:	learn: 15.4727375	total: 2.42s	remaining: 5.39s
93:	learn: 15.3655885	total: 2.44s	remaining: 5.36s
94:	learn: 15.2496762	total: 2.47s	remaining: 5.33s
95:	learn: 15.1773522	total: 2.49s	remaining: 5.3s
96:	learn: 15.0924366	total: 2.52s	remaining: 5.27s
97:	learn: 15.0082209	total: 2.55s	remaining: 5.26s
98:	learn: 14.9178437	total: 2.57s	remaining: 5.23s
99:	learn: 14.8149449	total: 2.6s	remaining: 5.2s
100:	learn: 14.7450303	total: 2.62s	remaining: 5.17s
101:	learn: 14.6462390	total: 2.65s	remaining: 5.14s
102:	learn: 14.5348825	total: 2.67s	remaining: 5.11s
103:	learn: 14.4483847	total: 2.69s	remaining: 5.08s
104:	learn: 14.4006573	total: 2.72s	remaining: 5.05s
105:	learn: 14.3322113	total: 2.74s	remaining: 5.02s
106:	learn: 14.2471466	total: 2.78s	remaining: 5.01s
107:	learn: 14.1788249	total: 2.8s	remaining: 4.99s
108:	learn: 14.1033594	total: 2.83s	remaining: 4.96s
109:	learn: 14.0161080	total: 2.85s	remaining: 4.93s
110:	learn: 13.9710960	total: 2.88s	remaining: 4.9s
111:	learn: 13.8941529	total: 2.9s	remaining: 4.87s
112:	learn: 13.8246456	total: 2.93s	remaining: 4.84s
113:	learn: 13.7518933	total: 2.95s	remaining: 4.82s
114:	learn: 13.7003709	total: 2.98s	remaining: 4.79s
115:	learn: 13.6359576	total: 3.01s	remaining: 4.77s
116:	learn: 13.6039211	total: 3.03s	remaining: 4.74s
117:	learn: 13.5361545	total: 3.06s	remaining: 4.71s
118:	learn: 13.4554429	total: 3.08s	remaining: 4.68s
119:	learn: 13.3922439	total: 3.1s	remaining: 4.66s
120:	learn: 13.2895862	total: 3.13s	remaining: 4.63s
121:	learn: 13.1749097	total: 3.15s	remaining: 4.6s
122:	learn: 13.1167631	total: 3.17s	remaining: 4.57s
123:	learn: 13.0410984	total: 3.2s	remaining: 4.54s
124:	learn: 12.9506234	total: 3.23s	remaining: 4.53s
125:	learn: 12.8890045	total: 3.26s	remaining: 4.5s
126:	learn: 12.8295606	total: 3.29s	remaining: 4.48s
127:	learn: 12.7634290	total: 3.31s	remaining: 4.45s
128:	learn: 12.6891923	total: 3.34s	remaining: 4.42s
129:	learn: 12.6312306	total: 3.36s	remaining: 4.39s
130:	learn: 12.5802486	total: 3.38s	remaining: 4.37s
131:	learn: 12.5246529	total: 3.41s	remaining: 4.34s
132:	learn: 12.4479017	total: 3.43s	remaining: 4.31s
133:	learn: 12.3930818	total: 3.46s	remaining: 4.29s
134:	learn: 12.3373247	total: 3.48s	remaining: 4.26s
135:	learn: 12.3039291	total: 3.51s	remaining: 4.23s
136:	learn: 12.2583784	total: 3.53s	remaining: 4.2s
137:	learn: 12.1902920	total: 3.56s	remaining: 4.18s
138:	learn: 12.1515651	total: 3.58s	remaining: 4.15s
139:	learn: 12.1008468	total: 3.61s	remaining: 4.12s
140:	learn: 12.0752080	total: 3.63s	remaining: 4.1s
141:	learn: 12.0263787	total: 3.67s	remaining: 4.08s
142:	learn: 11.9709736	total: 3.69s	remaining: 4.05s
143:	learn: 11.9295822	total: 3.72s	remaining: 4.03s
144:	learn: 11.8867911	total: 3.75s	remaining: 4.01s
145:	learn: 11.8179180	total: 3.77s	remaining: 3.98s
146:	learn: 11.7448446	total: 3.8s	remaining: 3.96s
147:	learn: 11.7332909	total: 3.83s	remaining: 3.93s
148:	learn: 11.6907270	total: 3.86s	remaining: 3.91s
149:	learn: 11.6628056	total: 3.9s	remaining: 3.9s
150:	learn: 11.6039432	total: 3.92s	remaining: 3.87s
151:	learn: 11.5752331	total: 3.95s	remaining: 3.85s
152:	learn: 11.5376476	total: 3.99s	remaining: 3.83s
153:	learn: 11.4947632	total: 4.01s	remaining: 3.81s
154:	learn: 11.4484147	total: 4.04s	remaining: 3.78s
155:	learn: 11.3925819	total: 4.08s	remaining: 3.76s
156:	learn: 11.3287384	total: 4.11s	remaining: 3.74s
157:	learn: 11.2566623	total: 4.13s	remaining: 3.72s
158:	learn: 11.2000227	total: 4.16s	remaining: 3.69s
159:	learn: 11.1023408	total: 4.19s	remaining: 3.67s
160:	learn: 11.0489770	total: 4.23s	remaining: 3.65s
161:	learn: 11.0026542	total: 4.25s	remaining: 3.62s
162:	learn: 10.9309626	total: 4.28s	remaining: 3.6s
163:	learn: 10.8844157	total: 4.31s	remaining: 3.57s
164:	learn: 10.8292008	total: 4.34s	remaining: 3.55s
165:	learn: 10.7365612	total: 4.37s	remaining: 3.53s
166:	learn: 10.6948804	total: 4.4s	remaining: 3.5s
167:	learn: 10.6566665	total: 4.42s	remaining: 3.48s
168:	learn: 10.6219222	total: 4.46s	remaining: 3.46s
169:	learn: 10.5930877	total: 4.49s	remaining: 3.43s
170:	learn: 10.5520362	total: 4.51s	remaining: 3.4s
171:	learn: 10.5160879	total: 4.55s	remaining: 3.39s
172:	learn: 10.4653972	total: 4.58s	remaining: 3.36s
173:	learn: 10.4164242	total: 4.61s	remaining: 3.33s
174:	learn: 10.3821629	total: 4.63s	remaining: 3.31s
175:	learn: 10.3623975	total: 4.66s	remaining: 3.28s
176:	learn: 10.3095845	total: 4.7s	remaining: 3.26s
177:	learn: 10.2501576	total: 4.73s	remaining: 3.24s
178:	learn: 10.2276060	total: 4.76s	remaining: 3.22s
179:	learn: 10.2052696	total: 4.79s	remaining: 3.19s
180:	learn: 10.1685156	total: 4.81s	remaining: 3.16s
181:	learn: 10.1443775	total: 4.84s	remaining: 3.14s
182:	learn: 10.0531518	total: 4.87s	remaining: 3.11s
183:	learn: 10.0052361	total: 4.89s	remaining: 3.08s
184:	learn: 9.9598299	total: 4.92s	remaining: 3.06s
185:	learn: 9.9062881	total: 4.96s	remaining: 3.04s
186:	learn: 9.8476621	total: 5s	remaining: 3.02s
187:	learn: 9.7943755	total: 5.02s	remaining: 2.99s
188:	learn: 9.7545158	total: 5.05s	remaining: 2.97s
189:	learn: 9.7325928	total: 5.08s	remaining: 2.94s
190:	learn: 9.6597076	total: 5.1s	remaining: 2.91s
191:	learn: 9.6049808	total: 5.13s	remaining: 2.89s
192:	learn: 9.5210539	total: 5.16s	remaining: 2.86s
193:	learn: 9.4839833	total: 5.2s	remaining: 2.84s
194:	learn: 9.4030810	total: 5.23s	remaining: 2.81s
195:	learn: 9.3610011	total: 5.25s	remaining: 2.79s
196:	learn: 9.3194779	total: 5.28s	remaining: 2.76s
197:	learn: 9.2866867	total: 5.31s	remaining: 2.73s
198:	learn: 9.2508142	total: 5.33s	remaining: 2.71s
199:	learn: 9.2271576	total: 5.36s	remaining: 2.68s
200:	learn: 9.1740668	total: 5.39s	remaining: 2.65s
201:	learn: 9.1586477	total: 5.43s	remaining: 2.64s
202:	learn: 9.1429015	total: 5.46s	remaining: 2.61s
203:	learn: 9.1133248	total: 5.49s	remaining: 2.58s
204:	learn: 9.0711331	total: 5.52s	remaining: 2.56s
205:	learn: 9.0093562	total: 5.54s	remaining: 2.53s
206:	learn: 8.9859881	total: 5.57s	remaining: 2.5s
207:	learn: 8.9419294	total: 5.6s	remaining: 2.48s
208:	learn: 8.8732493	total: 5.63s	remaining: 2.45s
209:	learn: 8.8186181	total: 5.67s	remaining: 2.43s
210:	learn: 8.7860222	total: 5.69s	remaining: 2.4s
211:	learn: 8.7597312	total: 5.72s	remaining: 2.37s
212:	learn: 8.7305431	total: 5.75s	remaining: 2.35s
213:	learn: 8.6620534	total: 5.77s	remaining: 2.32s
214:	learn: 8.6317582	total: 5.8s	remaining: 2.29s
215:	learn: 8.6021758	total: 5.83s	remaining: 2.27s
216:	learn: 8.5696515	total: 5.86s	remaining: 2.24s
217:	learn: 8.5267761	total: 5.89s	remaining: 2.22s
218:	learn: 8.5135802	total: 5.93s	remaining: 2.19s
219:	learn: 8.4762506	total: 5.95s	remaining: 2.17s
220:	learn: 8.4462181	total: 5.98s	remaining: 2.14s
221:	learn: 8.4167253	total: 6.01s	remaining: 2.11s
222:	learn: 8.3867332	total: 6.04s	remaining: 2.08s
223:	learn: 8.3527829	total: 6.06s	remaining: 2.06s
224:	learn: 8.3221175	total: 6.1s	remaining: 2.03s
225:	learn: 8.3149566	total: 6.13s	remaining: 2s
226:	learn: 8.3023601	total: 6.16s	remaining: 1.98s
227:	learn: 8.2720745	total: 6.19s	remaining: 1.95s
228:	learn: 8.2581250	total: 6.21s	remaining: 1.93s
229:	learn: 8.2207983	total: 6.24s	remaining: 1.9s
230:	learn: 8.2083228	total: 6.27s	remaining: 1.87s
231:	learn: 8.1774734	total: 6.29s	remaining: 1.84s
232:	learn: 8.1280317	total: 6.32s	remaining: 1.82s
233:	learn: 8.0969454	total: 6.36s	remaining: 1.79s
234:	learn: 8.0653906	total: 6.39s	remaining: 1.77s
235:	learn: 8.0403548	total: 6.42s	remaining: 1.74s
236:	learn: 8.0309296	total: 6.45s	remaining: 1.72s
237:	learn: 7.9802761	total: 6.48s	remaining: 1.69s
238:	learn: 7.9595062	total: 6.5s	remaining: 1.66s
239:	learn: 7.9560132	total: 6.53s	remaining: 1.63s
240:	learn: 7.9188077	total: 6.57s	remaining: 1.61s
241:	learn: 7.9129376	total: 6.59s	remaining: 1.58s
242:	learn: 7.8845382	total: 6.63s	remaining: 1.55s
243:	learn: 7.8699627	total: 6.66s	remaining: 1.53s
244:	learn: 7.8332493	total: 6.68s	remaining: 1.5s
245:	learn: 7.7807468	total: 6.71s	remaining: 1.47s
246:	learn: 7.7739426	total: 6.74s	remaining: 1.45s
247:	learn: 7.7384141	total: 6.77s	remaining: 1.42s
248:	learn: 7.7066380	total: 6.81s	remaining: 1.39s
249:	learn: 7.7001271	total: 6.84s	remaining: 1.37s
250:	learn: 7.6846399	total: 6.86s	remaining: 1.34s
251:	learn: 7.6791814	total: 6.9s	remaining: 1.31s
252:	learn: 7.6451688	total: 6.93s	remaining: 1.29s
253:	learn: 7.6117158	total: 6.95s	remaining: 1.26s
254:	learn: 7.6012012	total: 6.98s	remaining: 1.23s
255:	learn: 7.5729959	total: 7.01s	remaining: 1.2s
256:	learn: 7.5370997	total: 7.04s	remaining: 1.18s
257:	learn: 7.5099776	total: 7.07s	remaining: 1.15s
258:	learn: 7.4860975	total: 7.1s	remaining: 1.12s
259:	learn: 7.4566817	total: 7.13s	remaining: 1.1s
260:	learn: 7.4269980	total: 7.16s	remaining: 1.07s
261:	learn: 7.3923465	total: 7.18s	remaining: 1.04s
262:	learn: 7.3675376	total: 7.21s	remaining: 1.01s
263:	learn: 7.3392461	total: 7.25s	remaining: 989ms
264:	learn: 7.3102490	total: 7.28s	remaining: 962ms
265:	learn: 7.3010635	total: 7.31s	remaining: 934ms
266:	learn: 7.2733113	total: 7.34s	remaining: 907ms
267:	learn: 7.2683610	total: 7.37s	remaining: 880ms
268:	learn: 7.2532714	total: 7.4s	remaining: 853ms
269:	learn: 7.2444185	total: 7.43s	remaining: 826ms
270:	learn: 7.2300953	total: 7.46s	remaining: 799ms
271:	learn: 7.2077357	total: 7.49s	remaining: 771ms
272:	learn: 7.1843423	total: 7.52s	remaining: 744ms
273:	learn: 7.1754867	total: 7.55s	remaining: 716ms
274:	learn: 7.1395344	total: 7.58s	remaining: 689ms
275:	learn: 7.1342567	total: 7.61s	remaining: 662ms
276:	learn: 7.1116057	total: 7.64s	remaining: 634ms
277:	learn: 7.0822569	total: 7.67s	remaining: 607ms
278:	learn: 7.0731958	total: 7.71s	remaining: 580ms
279:	learn: 7.0576479	total: 7.73s	remaining: 552ms
280:	learn: 7.0354817	total: 7.76s	remaining: 525ms
281:	learn: 7.0277403	total: 7.79s	remaining: 497ms
282:	learn: 7.0028621	total: 7.82s	remaining: 469ms
283:	learn: 6.9820607	total: 7.84s	remaining: 442ms
284:	learn: 6.9645494	total: 7.88s	remaining: 415ms
285:	learn: 6.9563224	total: 7.91s	remaining: 387ms
286:	learn: 6.9482036	total: 7.93s	remaining: 359ms
287:	learn: 6.9116066	total: 7.96s	remaining: 332ms
288:	learn: 6.8884274	total: 7.99s	remaining: 304ms
289:	learn: 6.8632506	total: 8.02s	remaining: 276ms
290:	learn: 6.8447357	total: 8.04s	remaining: 249ms
291:	learn: 6.8242972	total: 8.07s	remaining: 221ms
292:	learn: 6.8012643	total: 8.11s	remaining: 194ms
293:	learn: 6.7800583	total: 8.14s	remaining: 166ms
294:	learn: 6.7687042	total: 8.17s	remaining: 138ms
295:	learn: 6.7454529	total: 8.19s	remaining: 111ms
296:	learn: 6.7227229	total: 8.22s	remaining: 83.1ms
297:	learn: 6.7004834	total: 8.25s	remaining: 55.4ms
298:	learn: 6.6931313	total: 8.28s	remaining: 27.7ms
299:	learn: 6.6604653	total: 8.3s	remaining: 0us
0:	learn: 46.4449485	total: 25.3ms	remaining: 7.56s
1:	learn: 45.6641003	total: 50.3ms	remaining: 7.49s
2:	learn: 44.9322182	total: 74.7ms	remaining: 7.4s
3:	learn: 44.1111890	total: 99.6ms	remaining: 7.37s
4:	learn: 43.2956452	total: 124ms	remaining: 7.3s
5:	learn: 42.6298126	total: 150ms	remaining: 7.35s
6:	learn: 42.0896057	total: 178ms	remaining: 7.45s
7:	learn: 41.2698632	total: 213ms	remaining: 7.77s
8:	learn: 40.4846232	total: 239ms	remaining: 7.73s
9:	learn: 39.7069009	total: 265ms	remaining: 7.69s
10:	learn: 38.9656593	total: 269ms	remaining: 7.07s
11:	learn: 38.5069229	total: 296ms	remaining: 7.1s
12:	learn: 37.8073380	total: 321ms	remaining: 7.09s
13:	learn: 37.3882967	total: 347ms	remaining: 7.08s
14:	learn: 36.8180964	total: 371ms	remaining: 7.05s
15:	learn: 36.2948556	total: 397ms	remaining: 7.05s
16:	learn: 35.6877194	total: 428ms	remaining: 7.12s
17:	learn: 35.3344416	total: 455ms	remaining: 7.13s
18:	learn: 34.8793907	total: 480ms	remaining: 7.1s
19:	learn: 34.3129264	total: 505ms	remaining: 7.07s
20:	learn: 34.0804390	total: 529ms	remaining: 7.02s
21:	learn: 33.4413882	total: 552ms	remaining: 6.98s
22:	learn: 32.9936060	total: 577ms	remaining: 6.96s
23:	learn: 32.6458868	total: 604ms	remaining: 6.95s
24:	learn: 32.3273431	total: 631ms	remaining: 6.94s
25:	learn: 31.8309940	total: 667ms	remaining: 7.03s
26:	learn: 31.4310003	total: 691ms	remaining: 6.99s
27:	learn: 31.1804602	total: 718ms	remaining: 6.97s
28:	learn: 30.8535447	total: 744ms	remaining: 6.96s
29:	learn: 30.4063180	total: 769ms	remaining: 6.92s
30:	learn: 30.1876699	total: 794ms	remaining: 6.89s
31:	learn: 29.8778033	total: 819ms	remaining: 6.86s
32:	learn: 29.6371470	total: 845ms	remaining: 6.83s
33:	learn: 29.3801255	total: 870ms	remaining: 6.8s
34:	learn: 29.1426244	total: 901ms	remaining: 6.82s
35:	learn: 28.9166951	total: 927ms	remaining: 6.8s
36:	learn: 28.6597815	total: 953ms	remaining: 6.78s
37:	learn: 28.3844706	total: 979ms	remaining: 6.75s
38:	learn: 28.0894923	total: 1s	remaining: 6.72s
39:	learn: 27.7571740	total: 1.03s	remaining: 6.68s
40:	learn: 27.4609127	total: 1.05s	remaining: 6.66s
41:	learn: 27.1948352	total: 1.08s	remaining: 6.63s
42:	learn: 26.9507594	total: 1.11s	remaining: 6.66s
43:	learn: 26.6347229	total: 1.14s	remaining: 6.64s
44:	learn: 26.3479735	total: 1.17s	remaining: 6.63s
45:	learn: 26.1335817	total: 1.2s	remaining: 6.6s
46:	learn: 25.8868210	total: 1.22s	remaining: 6.57s
47:	learn: 25.6881647	total: 1.25s	remaining: 6.54s
48:	learn: 25.4764814	total: 1.27s	remaining: 6.52s
49:	learn: 25.2279851	total: 1.3s	remaining: 6.49s
50:	learn: 24.9914875	total: 1.33s	remaining: 6.5s
51:	learn: 24.7951252	total: 1.36s	remaining: 6.48s
52:	learn: 24.6181712	total: 1.38s	remaining: 6.45s
53:	learn: 24.3711141	total: 1.41s	remaining: 6.41s
54:	learn: 24.1983381	total: 1.43s	remaining: 6.38s
55:	learn: 24.0518193	total: 1.46s	remaining: 6.35s
56:	learn: 23.8035754	total: 1.48s	remaining: 6.32s
57:	learn: 23.5891443	total: 1.51s	remaining: 6.3s
58:	learn: 23.3650788	total: 1.54s	remaining: 6.28s
59:	learn: 23.1423622	total: 1.57s	remaining: 6.28s
60:	learn: 22.9562061	total: 1.6s	remaining: 6.26s
61:	learn: 22.7841608	total: 1.62s	remaining: 6.23s
62:	learn: 22.5259611	total: 1.65s	remaining: 6.21s
63:	learn: 22.3959565	total: 1.68s	remaining: 6.18s
64:	learn: 22.2695041	total: 1.7s	remaining: 6.15s
65:	learn: 22.0116444	total: 1.73s	remaining: 6.14s
66:	learn: 21.8636416	total: 1.76s	remaining: 6.13s
67:	learn: 21.7170816	total: 1.79s	remaining: 6.1s
68:	learn: 21.6130887	total: 1.81s	remaining: 6.06s
69:	learn: 21.4107735	total: 1.84s	remaining: 6.03s
70:	learn: 21.2682184	total: 1.86s	remaining: 6s
71:	learn: 21.0421124	total: 1.89s	remaining: 5.97s
72:	learn: 20.8829831	total: 1.91s	remaining: 5.94s
73:	learn: 20.7916905	total: 1.94s	remaining: 5.91s
74:	learn: 20.6572110	total: 1.97s	remaining: 5.9s
75:	learn: 20.4683201	total: 1.99s	remaining: 5.88s
76:	learn: 20.3387806	total: 2.02s	remaining: 5.85s
77:	learn: 20.2301442	total: 2.04s	remaining: 5.82s
78:	learn: 20.1399739	total: 2.07s	remaining: 5.79s
79:	learn: 20.0395988	total: 2.1s	remaining: 5.76s
80:	learn: 19.9529190	total: 2.12s	remaining: 5.73s
81:	learn: 19.8285498	total: 2.14s	remaining: 5.7s
82:	learn: 19.6862504	total: 2.17s	remaining: 5.67s
83:	learn: 19.5764172	total: 2.2s	remaining: 5.66s
84:	learn: 19.4499650	total: 2.22s	remaining: 5.63s
85:	learn: 19.3449362	total: 2.25s	remaining: 5.6s
86:	learn: 19.1854254	total: 2.27s	remaining: 5.56s
87:	learn: 19.0850074	total: 2.3s	remaining: 5.53s
88:	learn: 18.9724934	total: 2.32s	remaining: 5.5s
89:	learn: 18.8778956	total: 2.35s	remaining: 5.47s
90:	learn: 18.7370373	total: 2.37s	remaining: 5.44s
91:	learn: 18.6192464	total: 2.4s	remaining: 5.43s
92:	learn: 18.5100314	total: 2.43s	remaining: 5.41s
93:	learn: 18.4275820	total: 2.45s	remaining: 5.38s
94:	learn: 18.3242001	total: 2.48s	remaining: 5.35s
95:	learn: 18.2110620	total: 2.5s	remaining: 5.32s
96:	learn: 18.0955256	total: 2.53s	remaining: 5.29s
97:	learn: 17.9941571	total: 2.55s	remaining: 5.26s
98:	learn: 17.8973235	total: 2.58s	remaining: 5.23s
99:	learn: 17.8100972	total: 2.6s	remaining: 5.2s
100:	learn: 17.7386244	total: 2.63s	remaining: 5.19s
101:	learn: 17.6310903	total: 2.66s	remaining: 5.16s
102:	learn: 17.5516996	total: 2.68s	remaining: 5.13s
103:	learn: 17.4617467	total: 2.71s	remaining: 5.1s
104:	learn: 17.3666766	total: 2.73s	remaining: 5.07s
105:	learn: 17.2221165	total: 2.75s	remaining: 5.04s
106:	learn: 17.0790059	total: 2.78s	remaining: 5.01s
107:	learn: 16.9698310	total: 2.8s	remaining: 4.98s
108:	learn: 16.8969362	total: 2.83s	remaining: 4.95s
109:	learn: 16.7819942	total: 2.86s	remaining: 4.94s
110:	learn: 16.6911902	total: 2.89s	remaining: 4.91s
111:	learn: 16.5519175	total: 2.91s	remaining: 4.88s
112:	learn: 16.3906885	total: 2.93s	remaining: 4.86s
113:	learn: 16.3090927	total: 2.96s	remaining: 4.83s
114:	learn: 16.2205215	total: 2.98s	remaining: 4.8s
115:	learn: 16.1233780	total: 3.01s	remaining: 4.77s
116:	learn: 16.0321663	total: 3.04s	remaining: 4.75s
117:	learn: 15.9579011	total: 3.06s	remaining: 4.72s
118:	learn: 15.8593485	total: 3.09s	remaining: 4.7s
119:	learn: 15.7788251	total: 3.11s	remaining: 4.67s
120:	learn: 15.7287407	total: 3.13s	remaining: 4.64s
121:	learn: 15.5788208	total: 3.16s	remaining: 4.61s
122:	learn: 15.5086549	total: 3.18s	remaining: 4.58s
123:	learn: 15.4364731	total: 3.21s	remaining: 4.55s
124:	learn: 15.3549185	total: 3.23s	remaining: 4.53s
125:	learn: 15.2967084	total: 3.27s	remaining: 4.52s
126:	learn: 15.1872607	total: 3.3s	remaining: 4.49s
127:	learn: 15.0932023	total: 3.32s	remaining: 4.46s
128:	learn: 15.0097364	total: 3.35s	remaining: 4.43s
129:	learn: 14.9463156	total: 3.37s	remaining: 4.41s
130:	learn: 14.8900172	total: 3.39s	remaining: 4.38s
131:	learn: 14.8358826	total: 3.42s	remaining: 4.35s
132:	learn: 14.7553997	total: 3.44s	remaining: 4.32s
133:	learn: 14.6821554	total: 3.47s	remaining: 4.3s
134:	learn: 14.5304879	total: 3.5s	remaining: 4.28s
135:	learn: 14.4324442	total: 3.52s	remaining: 4.25s
136:	learn: 14.3331494	total: 3.55s	remaining: 4.22s
137:	learn: 14.2753055	total: 3.57s	remaining: 4.19s
138:	learn: 14.1937968	total: 3.59s	remaining: 4.16s
139:	learn: 14.1149360	total: 3.62s	remaining: 4.13s
140:	learn: 14.0475961	total: 3.65s	remaining: 4.12s
141:	learn: 13.9679410	total: 3.68s	remaining: 4.09s
142:	learn: 13.8728976	total: 3.71s	remaining: 4.07s
143:	learn: 13.8088340	total: 3.75s	remaining: 4.06s
144:	learn: 13.7225802	total: 3.78s	remaining: 4.04s
145:	learn: 13.6027859	total: 3.8s	remaining: 4.01s
146:	learn: 13.5360562	total: 3.83s	remaining: 3.99s
147:	learn: 13.4527264	total: 3.86s	remaining: 3.96s
148:	learn: 13.3905685	total: 3.89s	remaining: 3.94s
149:	learn: 13.3231120	total: 3.93s	remaining: 3.93s
150:	learn: 13.2748277	total: 3.96s	remaining: 3.9s
151:	learn: 13.2011042	total: 3.98s	remaining: 3.88s
152:	learn: 13.1113158	total: 4.01s	remaining: 3.85s
153:	learn: 13.0630373	total: 4.04s	remaining: 3.83s
154:	learn: 12.9877054	total: 4.07s	remaining: 3.8s
155:	learn: 12.8975618	total: 4.09s	remaining: 3.78s
156:	learn: 12.8226873	total: 4.12s	remaining: 3.75s
157:	learn: 12.7653176	total: 4.17s	remaining: 3.75s
158:	learn: 12.7032259	total: 4.2s	remaining: 3.72s
159:	learn: 12.6413414	total: 4.22s	remaining: 3.69s
160:	learn: 12.5418162	total: 4.25s	remaining: 3.67s
161:	learn: 12.4761943	total: 4.28s	remaining: 3.65s
162:	learn: 12.4099277	total: 4.31s	remaining: 3.62s
163:	learn: 12.3393405	total: 4.34s	remaining: 3.6s
164:	learn: 12.2429002	total: 4.37s	remaining: 3.58s
165:	learn: 12.1931336	total: 4.41s	remaining: 3.56s
166:	learn: 12.0509054	total: 4.43s	remaining: 3.53s
167:	learn: 11.9940166	total: 4.46s	remaining: 3.51s
168:	learn: 11.9267615	total: 4.49s	remaining: 3.48s
169:	learn: 11.8595898	total: 4.52s	remaining: 3.45s
170:	learn: 11.7291128	total: 4.54s	remaining: 3.43s
171:	learn: 11.6574232	total: 4.57s	remaining: 3.4s
172:	learn: 11.5771876	total: 4.61s	remaining: 3.38s
173:	learn: 11.4934307	total: 4.65s	remaining: 3.36s
174:	learn: 11.4454134	total: 4.67s	remaining: 3.34s
175:	learn: 11.3829392	total: 4.7s	remaining: 3.31s
176:	learn: 11.2971903	total: 4.73s	remaining: 3.29s
177:	learn: 11.2515029	total: 4.76s	remaining: 3.26s
178:	learn: 11.2046889	total: 4.79s	remaining: 3.23s
179:	learn: 11.1528497	total: 4.81s	remaining: 3.21s
180:	learn: 11.0691294	total: 4.84s	remaining: 3.19s
181:	learn: 11.0191173	total: 4.87s	remaining: 3.16s
182:	learn: 10.9046058	total: 4.91s	remaining: 3.14s
183:	learn: 10.8625890	total: 4.93s	remaining: 3.11s
184:	learn: 10.7913928	total: 4.96s	remaining: 3.08s
185:	learn: 10.7366315	total: 4.99s	remaining: 3.06s
186:	learn: 10.6583458	total: 5.02s	remaining: 3.03s
187:	learn: 10.5955649	total: 5.05s	remaining: 3.01s
188:	learn: 10.5456969	total: 5.08s	remaining: 2.98s
189:	learn: 10.4582108	total: 5.11s	remaining: 2.96s
190:	learn: 10.4226930	total: 5.14s	remaining: 2.94s
191:	learn: 10.3469793	total: 5.17s	remaining: 2.91s
192:	learn: 10.2680286	total: 5.2s	remaining: 2.88s
193:	learn: 10.2210599	total: 5.23s	remaining: 2.86s
194:	learn: 10.1575919	total: 5.26s	remaining: 2.83s
195:	learn: 10.0996054	total: 5.29s	remaining: 2.81s
196:	learn: 10.0503671	total: 5.32s	remaining: 2.78s
197:	learn: 9.9976825	total: 5.34s	remaining: 2.75s
198:	learn: 9.9452535	total: 5.38s	remaining: 2.73s
199:	learn: 9.8825415	total: 5.41s	remaining: 2.7s
200:	learn: 9.8064134	total: 5.43s	remaining: 2.68s
201:	learn: 9.7572174	total: 5.47s	remaining: 2.65s
202:	learn: 9.6993413	total: 5.5s	remaining: 2.63s
203:	learn: 9.6645937	total: 5.53s	remaining: 2.6s
204:	learn: 9.6261766	total: 5.56s	remaining: 2.58s
205:	learn: 9.5819475	total: 5.59s	remaining: 2.55s
206:	learn: 9.5366280	total: 5.62s	remaining: 2.53s
207:	learn: 9.4813538	total: 5.65s	remaining: 2.5s
208:	learn: 9.4246671	total: 5.69s	remaining: 2.48s
209:	learn: 9.3787991	total: 5.72s	remaining: 2.45s
210:	learn: 9.3261932	total: 5.75s	remaining: 2.42s
211:	learn: 9.2979373	total: 5.77s	remaining: 2.4s
212:	learn: 9.2466040	total: 5.8s	remaining: 2.37s
213:	learn: 9.1990809	total: 5.83s	remaining: 2.34s
214:	learn: 9.1630306	total: 5.85s	remaining: 2.31s
215:	learn: 9.1266975	total: 5.89s	remaining: 2.29s
216:	learn: 9.0846374	total: 5.92s	remaining: 2.27s
217:	learn: 9.0341002	total: 5.95s	remaining: 2.24s
218:	learn: 8.9874070	total: 5.98s	remaining: 2.21s
219:	learn: 8.9478524	total: 6.01s	remaining: 2.18s
220:	learn: 8.8970642	total: 6.03s	remaining: 2.16s
221:	learn: 8.8605945	total: 6.06s	remaining: 2.13s
222:	learn: 8.8261863	total: 6.09s	remaining: 2.1s
223:	learn: 8.7821922	total: 6.13s	remaining: 2.08s
224:	learn: 8.7517706	total: 6.16s	remaining: 2.05s
225:	learn: 8.7149517	total: 6.18s	remaining: 2.02s
226:	learn: 8.6766707	total: 6.21s	remaining: 2s
227:	learn: 8.6372492	total: 6.24s	remaining: 1.97s
228:	learn: 8.6002129	total: 6.26s	remaining: 1.94s
229:	learn: 8.5595754	total: 6.29s	remaining: 1.91s
230:	learn: 8.5342774	total: 6.32s	remaining: 1.89s
231:	learn: 8.4991734	total: 6.36s	remaining: 1.86s
232:	learn: 8.4735361	total: 6.39s	remaining: 1.84s
233:	learn: 8.4328577	total: 6.42s	remaining: 1.81s
234:	learn: 8.3929232	total: 6.45s	remaining: 1.78s
235:	learn: 8.3611534	total: 6.47s	remaining: 1.75s
236:	learn: 8.3469261	total: 6.5s	remaining: 1.73s
237:	learn: 8.3082592	total: 6.52s	remaining: 1.7s
238:	learn: 8.2724422	total: 6.55s	remaining: 1.67s
239:	learn: 8.2378713	total: 6.59s	remaining: 1.65s
240:	learn: 8.2054002	total: 6.62s	remaining: 1.62s
241:	learn: 8.1726213	total: 6.65s	remaining: 1.59s
242:	learn: 8.1385919	total: 6.67s	remaining: 1.56s
243:	learn: 8.1113159	total: 6.7s	remaining: 1.54s
244:	learn: 8.0740264	total: 6.73s	remaining: 1.51s
245:	learn: 8.0399614	total: 6.76s	remaining: 1.48s
246:	learn: 8.0179358	total: 6.79s	remaining: 1.46s
247:	learn: 7.9896565	total: 6.82s	remaining: 1.43s
248:	learn: 7.9644186	total: 6.86s	remaining: 1.4s
249:	learn: 7.9305923	total: 6.88s	remaining: 1.38s
250:	learn: 7.9007851	total: 6.91s	remaining: 1.35s
251:	learn: 7.8740137	total: 6.94s	remaining: 1.32s
252:	learn: 7.8448288	total: 6.96s	remaining: 1.29s
253:	learn: 7.8020074	total: 6.99s	remaining: 1.27s
254:	learn: 7.7748874	total: 7.02s	remaining: 1.24s
255:	learn: 7.7553198	total: 7.05s	remaining: 1.21s
256:	learn: 7.7327191	total: 7.09s	remaining: 1.19s
257:	learn: 7.7021253	total: 7.11s	remaining: 1.16s
258:	learn: 7.6760024	total: 7.14s	remaining: 1.13s
259:	learn: 7.6569353	total: 7.17s	remaining: 1.1s
260:	learn: 7.6304716	total: 7.19s	remaining: 1.07s
261:	learn: 7.6011855	total: 7.22s	remaining: 1.05s
262:	learn: 7.5732109	total: 7.25s	remaining: 1.02s
263:	learn: 7.5502359	total: 7.29s	remaining: 994ms
264:	learn: 7.5240021	total: 7.32s	remaining: 967ms
265:	learn: 7.4977154	total: 7.35s	remaining: 940ms
266:	learn: 7.4679226	total: 7.38s	remaining: 912ms
267:	learn: 7.4445035	total: 7.41s	remaining: 884ms
268:	learn: 7.4246251	total: 7.43s	remaining: 857ms
269:	learn: 7.4029554	total: 7.46s	remaining: 829ms
270:	learn: 7.3712662	total: 7.49s	remaining: 801ms
271:	learn: 7.3355870	total: 7.52s	remaining: 774ms
272:	learn: 7.3198771	total: 7.56s	remaining: 747ms
273:	learn: 7.3050151	total: 7.58s	remaining: 720ms
274:	learn: 7.2910043	total: 7.61s	remaining: 692ms
275:	learn: 7.2783385	total: 7.64s	remaining: 664ms
276:	learn: 7.2559473	total: 7.67s	remaining: 637ms
277:	learn: 7.2185655	total: 7.7s	remaining: 609ms
278:	learn: 7.1965563	total: 7.73s	remaining: 582ms
279:	learn: 7.1773705	total: 7.76s	remaining: 554ms
280:	learn: 7.1541341	total: 7.78s	remaining: 526ms
281:	learn: 7.1355109	total: 7.82s	remaining: 499ms
282:	learn: 7.1129308	total: 7.85s	remaining: 471ms
283:	learn: 7.0886063	total: 7.88s	remaining: 444ms
284:	learn: 7.0673363	total: 7.91s	remaining: 416ms
285:	learn: 7.0518651	total: 7.94s	remaining: 389ms
286:	learn: 7.0312280	total: 7.96s	remaining: 361ms
287:	learn: 7.0065712	total: 7.99s	remaining: 333ms
288:	learn: 6.9851465	total: 8.02s	remaining: 305ms
289:	learn: 6.9652208	total: 8.05s	remaining: 278ms
290:	learn: 6.9480340	total: 8.08s	remaining: 250ms
291:	learn: 6.9293725	total: 8.11s	remaining: 222ms
292:	learn: 6.8953713	total: 8.14s	remaining: 194ms
293:	learn: 6.8800761	total: 8.17s	remaining: 167ms
294:	learn: 6.8674172	total: 8.2s	remaining: 139ms
295:	learn: 6.8461255	total: 8.23s	remaining: 111ms
296:	learn: 6.8284246	total: 8.25s	remaining: 83.4ms
297:	learn: 6.8028742	total: 8.29s	remaining: 55.6ms
298:	learn: 6.7865169	total: 8.31s	remaining: 27.8ms
299:	learn: 6.7677918	total: 8.34s	remaining: 0us
0:	learn: 46.0177610	total: 26.8ms	remaining: 8.02s
1:	learn: 45.2171004	total: 53.4ms	remaining: 7.95s
2:	learn: 44.5194217	total: 80.6ms	remaining: 7.97s
3:	learn: 43.6812696	total: 108ms	remaining: 8s
4:	learn: 42.8831305	total: 138ms	remaining: 8.12s
5:	learn: 42.1262412	total: 180ms	remaining: 8.84s
6:	learn: 41.6465602	total: 208ms	remaining: 8.72s
7:	learn: 41.2399751	total: 237ms	remaining: 8.66s
8:	learn: 40.7217059	total: 265ms	remaining: 8.56s
9:	learn: 40.1802193	total: 290ms	remaining: 8.4s
10:	learn: 39.7286629	total: 315ms	remaining: 8.27s
11:	learn: 39.1775230	total: 343ms	remaining: 8.24s
12:	learn: 38.7477788	total: 376ms	remaining: 8.3s
13:	learn: 38.2296808	total: 402ms	remaining: 8.22s
14:	learn: 37.7069865	total: 428ms	remaining: 8.13s
15:	learn: 37.1535735	total: 453ms	remaining: 8.04s
16:	learn: 36.7900064	total: 478ms	remaining: 7.96s
17:	learn: 36.4049038	total: 503ms	remaining: 7.89s
18:	learn: 35.9640324	total: 529ms	remaining: 7.82s
19:	learn: 35.5778526	total: 555ms	remaining: 7.77s
20:	learn: 35.2480134	total: 583ms	remaining: 7.75s
21:	learn: 34.8576668	total: 618ms	remaining: 7.81s
22:	learn: 34.3332571	total: 644ms	remaining: 7.75s
23:	learn: 34.0285781	total: 669ms	remaining: 7.7s
24:	learn: 33.6137780	total: 696ms	remaining: 7.65s
25:	learn: 33.1018374	total: 721ms	remaining: 7.59s
26:	learn: 32.7865924	total: 746ms	remaining: 7.54s
27:	learn: 32.5376779	total: 772ms	remaining: 7.5s
28:	learn: 32.0718213	total: 807ms	remaining: 7.54s
29:	learn: 31.7440177	total: 834ms	remaining: 7.5s
30:	learn: 31.4767615	total: 859ms	remaining: 7.45s
31:	learn: 31.0939292	total: 884ms	remaining: 7.41s
32:	learn: 30.7679414	total: 909ms	remaining: 7.36s
33:	learn: 30.3318976	total: 934ms	remaining: 7.31s
34:	learn: 30.0098409	total: 959ms	remaining: 7.26s
35:	learn: 29.7328439	total: 984ms	remaining: 7.22s
36:	learn: 29.3793676	total: 1.02s	remaining: 7.24s
37:	learn: 29.1027021	total: 1.05s	remaining: 7.21s
38:	learn: 28.7995895	total: 1.07s	remaining: 7.17s
39:	learn: 28.5217760	total: 1.1s	remaining: 7.13s
40:	learn: 28.1682840	total: 1.12s	remaining: 7.1s
41:	learn: 27.7960176	total: 1.15s	remaining: 7.05s
42:	learn: 27.5479541	total: 1.17s	remaining: 7s
43:	learn: 27.1865306	total: 1.2s	remaining: 6.97s
44:	learn: 26.9937460	total: 1.23s	remaining: 6.97s
45:	learn: 26.8442463	total: 1.25s	remaining: 6.93s
46:	learn: 26.4960149	total: 1.28s	remaining: 6.9s
47:	learn: 26.3705169	total: 1.31s	remaining: 6.86s
48:	learn: 26.1706608	total: 1.33s	remaining: 6.82s
49:	learn: 25.9554127	total: 1.36s	remaining: 6.78s
50:	learn: 25.7460625	total: 1.38s	remaining: 6.74s
51:	learn: 25.5382801	total: 1.41s	remaining: 6.71s
52:	learn: 25.3702316	total: 1.43s	remaining: 6.68s
53:	learn: 25.1895507	total: 1.47s	remaining: 6.68s
54:	learn: 24.9547189	total: 1.49s	remaining: 6.65s
55:	learn: 24.7774266	total: 1.52s	remaining: 6.62s
56:	learn: 24.5983576	total: 1.54s	remaining: 6.59s
57:	learn: 24.4350851	total: 1.57s	remaining: 6.56s
58:	learn: 24.1821816	total: 1.6s	remaining: 6.52s
59:	learn: 24.0194176	total: 1.62s	remaining: 6.48s
60:	learn: 23.8268698	total: 1.65s	remaining: 6.45s
61:	learn: 23.6797713	total: 1.67s	remaining: 6.43s
62:	learn: 23.5016295	total: 1.7s	remaining: 6.41s
63:	learn: 23.3337406	total: 1.73s	remaining: 6.38s
64:	learn: 23.1777686	total: 1.75s	remaining: 6.34s
65:	learn: 22.9885995	total: 1.78s	remaining: 6.31s
66:	learn: 22.8371180	total: 1.8s	remaining: 6.28s
67:	learn: 22.6795513	total: 1.83s	remaining: 6.25s
68:	learn: 22.5161365	total: 1.86s	remaining: 6.22s
69:	learn: 22.3361211	total: 1.89s	remaining: 6.21s
70:	learn: 22.1434717	total: 1.92s	remaining: 6.2s
71:	learn: 21.9717466	total: 1.95s	remaining: 6.17s
72:	learn: 21.7799255	total: 1.97s	remaining: 6.14s
73:	learn: 21.5806287	total: 2s	remaining: 6.11s
74:	learn: 21.4515659	total: 2.02s	remaining: 6.08s
75:	learn: 21.3438173	total: 2.05s	remaining: 6.04s
76:	learn: 21.2141855	total: 2.08s	remaining: 6.01s
77:	learn: 20.9791139	total: 2.11s	remaining: 6s
78:	learn: 20.8731109	total: 2.13s	remaining: 5.97s
79:	learn: 20.7356152	total: 2.16s	remaining: 5.94s
80:	learn: 20.6794518	total: 2.19s	remaining: 5.91s
81:	learn: 20.5703504	total: 2.21s	remaining: 5.88s
82:	learn: 20.4542622	total: 2.24s	remaining: 5.85s
83:	learn: 20.3436005	total: 2.26s	remaining: 5.82s
84:	learn: 20.2213634	total: 2.29s	remaining: 5.78s
85:	learn: 20.0231006	total: 2.31s	remaining: 5.76s
86:	learn: 19.9066413	total: 2.35s	remaining: 5.75s
87:	learn: 19.8018072	total: 2.38s	remaining: 5.72s
88:	learn: 19.7018716	total: 2.4s	remaining: 5.69s
89:	learn: 19.5924764	total: 2.42s	remaining: 5.66s
90:	learn: 19.4563722	total: 2.45s	remaining: 5.62s
91:	learn: 19.3246547	total: 2.47s	remaining: 5.59s
92:	learn: 19.2157682	total: 2.5s	remaining: 5.55s
93:	learn: 19.1488443	total: 2.52s	remaining: 5.53s
94:	learn: 19.0557445	total: 2.55s	remaining: 5.5s
95:	learn: 18.9599358	total: 2.57s	remaining: 5.47s
96:	learn: 18.8626100	total: 2.6s	remaining: 5.44s
97:	learn: 18.7583061	total: 2.62s	remaining: 5.41s
98:	learn: 18.6544146	total: 2.65s	remaining: 5.37s
99:	learn: 18.5451742	total: 2.67s	remaining: 5.34s
100:	learn: 18.4189953	total: 2.69s	remaining: 5.31s
101:	learn: 18.3438186	total: 2.72s	remaining: 5.28s
102:	learn: 18.3162367	total: 2.75s	remaining: 5.26s
103:	learn: 18.2040313	total: 2.78s	remaining: 5.24s
104:	learn: 18.0312740	total: 2.81s	remaining: 5.21s
105:	learn: 17.9372951	total: 2.83s	remaining: 5.18s
106:	learn: 17.8724695	total: 2.85s	remaining: 5.15s
107:	learn: 17.7720982	total: 2.88s	remaining: 5.12s
108:	learn: 17.6847197	total: 2.9s	remaining: 5.09s
109:	learn: 17.5739155	total: 2.93s	remaining: 5.06s
110:	learn: 17.5071512	total: 2.95s	remaining: 5.03s
111:	learn: 17.4284339	total: 2.98s	remaining: 5.01s
112:	learn: 17.3333136	total: 3.01s	remaining: 4.98s
113:	learn: 17.2854017	total: 3.03s	remaining: 4.94s
114:	learn: 17.2580292	total: 3.05s	remaining: 4.91s
115:	learn: 17.1942005	total: 3.08s	remaining: 4.88s
116:	learn: 17.1180771	total: 3.1s	remaining: 4.85s
117:	learn: 17.0881080	total: 3.13s	remaining: 4.82s
118:	learn: 16.9946379	total: 3.15s	remaining: 4.79s
119:	learn: 16.9347009	total: 3.18s	remaining: 4.77s
120:	learn: 16.8550523	total: 3.21s	remaining: 4.75s
121:	learn: 16.8167084	total: 3.23s	remaining: 4.72s
122:	learn: 16.7431121	total: 3.26s	remaining: 4.69s
123:	learn: 16.6790079	total: 3.28s	remaining: 4.66s
124:	learn: 16.6544185	total: 3.31s	remaining: 4.63s
125:	learn: 16.5758961	total: 3.33s	remaining: 4.6s
126:	learn: 16.4736355	total: 3.36s	remaining: 4.57s
127:	learn: 16.3424410	total: 3.38s	remaining: 4.54s
128:	learn: 16.2679660	total: 3.41s	remaining: 4.52s
129:	learn: 16.2258039	total: 3.44s	remaining: 4.49s
130:	learn: 16.1516799	total: 3.46s	remaining: 4.46s
131:	learn: 16.1254438	total: 3.48s	remaining: 4.43s
132:	learn: 16.0304106	total: 3.51s	remaining: 4.4s
133:	learn: 15.9690721	total: 3.53s	remaining: 4.37s
134:	learn: 15.8475301	total: 3.56s	remaining: 4.34s
135:	learn: 15.7923044	total: 3.58s	remaining: 4.32s
136:	learn: 15.7122364	total: 3.6s	remaining: 4.29s
137:	learn: 15.6328785	total: 3.63s	remaining: 4.26s
138:	learn: 15.5626000	total: 3.66s	remaining: 4.24s
139:	learn: 15.4322531	total: 3.69s	remaining: 4.21s
140:	learn: 15.3057121	total: 3.71s	remaining: 4.19s
141:	learn: 15.2355698	total: 3.74s	remaining: 4.16s
142:	learn: 15.1858129	total: 3.76s	remaining: 4.13s
143:	learn: 15.1459442	total: 3.79s	remaining: 4.1s
144:	learn: 15.1011230	total: 3.81s	remaining: 4.07s
145:	learn: 15.0379234	total: 3.84s	remaining: 4.05s
146:	learn: 14.9606955	total: 3.87s	remaining: 4.03s
147:	learn: 14.8537869	total: 3.9s	remaining: 4.01s
148:	learn: 14.7978827	total: 3.93s	remaining: 3.98s
149:	learn: 14.7340183	total: 3.95s	remaining: 3.95s
150:	learn: 14.6973812	total: 3.98s	remaining: 3.93s
151:	learn: 14.6682787	total: 4.01s	remaining: 3.9s
152:	learn: 14.5210539	total: 4.04s	remaining: 3.88s
153:	learn: 14.4733148	total: 4.07s	remaining: 3.86s
154:	learn: 14.4119567	total: 4.11s	remaining: 3.84s
155:	learn: 14.3464330	total: 4.13s	remaining: 3.81s
156:	learn: 14.2314719	total: 4.16s	remaining: 3.79s
157:	learn: 14.1827121	total: 4.19s	remaining: 3.76s
158:	learn: 14.0860528	total: 4.21s	remaining: 3.74s
159:	learn: 14.0216499	total: 4.24s	remaining: 3.71s
160:	learn: 13.9788508	total: 4.28s	remaining: 3.69s
161:	learn: 13.9341942	total: 4.31s	remaining: 3.67s
162:	learn: 13.8689437	total: 4.34s	remaining: 3.65s
163:	learn: 13.8152354	total: 4.36s	remaining: 3.62s
164:	learn: 13.7979613	total: 4.39s	remaining: 3.59s
165:	learn: 13.7124340	total: 4.42s	remaining: 3.57s
166:	learn: 13.6328571	total: 4.45s	remaining: 3.54s
167:	learn: 13.6179483	total: 4.47s	remaining: 3.51s
168:	learn: 13.5737505	total: 4.5s	remaining: 3.49s
169:	learn: 13.5185652	total: 4.55s	remaining: 3.48s
170:	learn: 13.3621411	total: 4.57s	remaining: 3.45s
171:	learn: 13.3431787	total: 4.6s	remaining: 3.42s
172:	learn: 13.2661742	total: 4.63s	remaining: 3.4s
173:	learn: 13.2029526	total: 4.66s	remaining: 3.37s
174:	learn: 13.1457507	total: 4.68s	remaining: 3.35s
175:	learn: 13.0041277	total: 4.72s	remaining: 3.32s
176:	learn: 12.9565895	total: 4.75s	remaining: 3.3s
177:	learn: 12.8225368	total: 4.78s	remaining: 3.28s
178:	learn: 12.8073526	total: 4.81s	remaining: 3.25s
179:	learn: 12.7432577	total: 4.83s	remaining: 3.22s
180:	learn: 12.6894062	total: 4.86s	remaining: 3.2s
181:	learn: 12.6115430	total: 4.89s	remaining: 3.17s
182:	learn: 12.4884510	total: 4.92s	remaining: 3.14s
183:	learn: 12.4670071	total: 4.95s	remaining: 3.12s
184:	learn: 12.3586840	total: 4.98s	remaining: 3.1s
185:	learn: 12.3314465	total: 5.02s	remaining: 3.08s
186:	learn: 12.2898986	total: 5.04s	remaining: 3.05s
187:	learn: 12.2444848	total: 5.07s	remaining: 3.02s
188:	learn: 12.1286912	total: 5.1s	remaining: 2.99s
189:	learn: 12.0913051	total: 5.13s	remaining: 2.97s
190:	learn: 12.0412425	total: 5.16s	remaining: 2.94s
191:	learn: 11.9806235	total: 5.19s	remaining: 2.92s
192:	learn: 11.9166183	total: 5.21s	remaining: 2.89s
193:	learn: 11.8779218	total: 5.24s	remaining: 2.86s
194:	learn: 11.8179532	total: 5.27s	remaining: 2.84s
195:	learn: 11.7640239	total: 5.3s	remaining: 2.81s
196:	learn: 11.7071262	total: 5.33s	remaining: 2.79s
197:	learn: 11.6536293	total: 5.36s	remaining: 2.76s
198:	learn: 11.6065018	total: 5.39s	remaining: 2.74s
199:	learn: 11.5499607	total: 5.42s	remaining: 2.71s
200:	learn: 11.5040185	total: 5.45s	remaining: 2.68s
201:	learn: 11.4742990	total: 5.47s	remaining: 2.66s
202:	learn: 11.4464612	total: 5.51s	remaining: 2.63s
203:	learn: 11.3967352	total: 5.53s	remaining: 2.6s
204:	learn: 11.3773630	total: 5.56s	remaining: 2.58s
205:	learn: 11.3369897	total: 5.59s	remaining: 2.55s
206:	learn: 11.2785610	total: 5.62s	remaining: 2.52s
207:	learn: 11.2570903	total: 5.65s	remaining: 2.5s
208:	learn: 11.1959469	total: 5.67s	remaining: 2.47s
209:	learn: 11.1698664	total: 5.7s	remaining: 2.44s
210:	learn: 11.1452100	total: 5.74s	remaining: 2.42s
211:	learn: 11.1074115	total: 5.76s	remaining: 2.39s
212:	learn: 11.0813756	total: 5.79s	remaining: 2.37s
213:	learn: 11.0519307	total: 5.82s	remaining: 2.34s
214:	learn: 11.0155685	total: 5.86s	remaining: 2.32s
215:	learn: 10.9871406	total: 5.89s	remaining: 2.29s
216:	learn: 10.9693068	total: 5.91s	remaining: 2.26s
217:	learn: 10.9576767	total: 5.94s	remaining: 2.23s
218:	learn: 10.8594320	total: 5.97s	remaining: 2.21s
219:	learn: 10.8272954	total: 6s	remaining: 2.18s
220:	learn: 10.8038867	total: 6.03s	remaining: 2.16s
221:	learn: 10.7088853	total: 6.07s	remaining: 2.13s
222:	learn: 10.6887411	total: 6.09s	remaining: 2.1s
223:	learn: 10.6649574	total: 6.12s	remaining: 2.08s
224:	learn: 10.6194908	total: 6.15s	remaining: 2.05s
225:	learn: 10.5685522	total: 6.17s	remaining: 2.02s
226:	learn: 10.5537435	total: 6.2s	remaining: 1.99s
227:	learn: 10.5121708	total: 6.23s	remaining: 1.97s
228:	learn: 10.4691452	total: 6.26s	remaining: 1.94s
229:	learn: 10.4484099	total: 6.3s	remaining: 1.92s
230:	learn: 10.4377373	total: 6.33s	remaining: 1.89s
231:	learn: 10.4270601	total: 6.36s	remaining: 1.86s
232:	learn: 10.4051968	total: 6.38s	remaining: 1.83s
233:	learn: 10.3483300	total: 6.41s	remaining: 1.81s
234:	learn: 10.2865834	total: 6.43s	remaining: 1.78s
235:	learn: 10.2610314	total: 6.46s	remaining: 1.75s
236:	learn: 10.2388990	total: 6.5s	remaining: 1.73s
237:	learn: 10.1965393	total: 6.53s	remaining: 1.7s
238:	learn: 10.1800849	total: 6.56s	remaining: 1.67s
239:	learn: 10.1604400	total: 6.59s	remaining: 1.65s
240:	learn: 10.1302668	total: 6.61s	remaining: 1.62s
241:	learn: 10.1241338	total: 6.64s	remaining: 1.59s
242:	learn: 10.0835529	total: 6.67s	remaining: 1.56s
243:	learn: 10.0154507	total: 6.69s	remaining: 1.54s
244:	learn: 10.0024905	total: 6.72s	remaining: 1.51s
245:	learn: 9.9669119	total: 6.76s	remaining: 1.48s
246:	learn: 9.9325711	total: 6.78s	remaining: 1.46s
247:	learn: 9.8981230	total: 6.81s	remaining: 1.43s
248:	learn: 9.8660554	total: 6.84s	remaining: 1.4s
249:	learn: 9.8506587	total: 6.86s	remaining: 1.37s
250:	learn: 9.8080866	total: 6.89s	remaining: 1.34s
251:	learn: 9.7747070	total: 6.91s	remaining: 1.32s
252:	learn: 9.7589720	total: 6.94s	remaining: 1.29s
253:	learn: 9.7308058	total: 6.97s	remaining: 1.26s
254:	learn: 9.7157610	total: 6.99s	remaining: 1.23s
255:	learn: 9.6979675	total: 7.02s	remaining: 1.21s
256:	learn: 9.6657809	total: 7.04s	remaining: 1.18s
257:	learn: 9.6522187	total: 7.07s	remaining: 1.15s
258:	learn: 9.6375034	total: 7.09s	remaining: 1.12s
259:	learn: 9.6023653	total: 7.12s	remaining: 1.09s
260:	learn: 9.5760582	total: 7.15s	remaining: 1.07s
261:	learn: 9.5288913	total: 7.18s	remaining: 1.04s
262:	learn: 9.5151986	total: 7.21s	remaining: 1.01s
263:	learn: 9.4814503	total: 7.24s	remaining: 987ms
264:	learn: 9.4635791	total: 7.26s	remaining: 959ms
265:	learn: 9.4364856	total: 7.29s	remaining: 932ms
266:	learn: 9.4013439	total: 7.32s	remaining: 904ms
267:	learn: 9.3638018	total: 7.34s	remaining: 877ms
268:	learn: 9.3558171	total: 7.37s	remaining: 849ms
269:	learn: 9.3065751	total: 7.4s	remaining: 823ms
270:	learn: 9.2964146	total: 7.43s	remaining: 795ms
271:	learn: 9.2625670	total: 7.45s	remaining: 767ms
272:	learn: 9.2356760	total: 7.48s	remaining: 740ms
273:	learn: 9.2046550	total: 7.51s	remaining: 712ms
274:	learn: 9.1931591	total: 7.53s	remaining: 685ms
275:	learn: 9.1692863	total: 7.56s	remaining: 657ms
276:	learn: 9.1358490	total: 7.58s	remaining: 630ms
277:	learn: 9.1007511	total: 7.62s	remaining: 603ms
278:	learn: 9.0946236	total: 7.65s	remaining: 576ms
279:	learn: 9.0731587	total: 7.67s	remaining: 548ms
280:	learn: 9.0466446	total: 7.7s	remaining: 521ms
281:	learn: 9.0262027	total: 7.73s	remaining: 493ms
282:	learn: 8.9958148	total: 7.75s	remaining: 466ms
283:	learn: 8.9904119	total: 7.78s	remaining: 438ms
284:	learn: 8.9723234	total: 7.8s	remaining: 411ms
285:	learn: 8.9368256	total: 7.84s	remaining: 384ms
286:	learn: 8.8960967	total: 7.86s	remaining: 356ms
287:	learn: 8.8813638	total: 7.89s	remaining: 329ms
288:	learn: 8.8766445	total: 7.91s	remaining: 301ms
289:	learn: 8.8483604	total: 7.94s	remaining: 274ms
290:	learn: 8.8220559	total: 7.96s	remaining: 246ms
291:	learn: 8.7918301	total: 7.99s	remaining: 219ms
292:	learn: 8.7574504	total: 8.01s	remaining: 191ms
293:	learn: 8.7490725	total: 8.04s	remaining: 164ms
294:	learn: 8.7293377	total: 8.07s	remaining: 137ms
295:	learn: 8.7202847	total: 8.1s	remaining: 109ms
296:	learn: 8.6918465	total: 8.13s	remaining: 82.1ms
297:	learn: 8.6665828	total: 8.15s	remaining: 54.7ms
298:	learn: 8.6541683	total: 8.18s	remaining: 27.4ms
299:	learn: 8.6494740	total: 8.21s	remaining: 0us
0:	learn: 46.8012202	total: 24.2ms	remaining: 7.24s
1:	learn: 46.0273912	total: 51ms	remaining: 7.61s
2:	learn: 45.3733493	total: 75.8ms	remaining: 7.5s
3:	learn: 44.7109449	total: 100ms	remaining: 7.4s
4:	learn: 43.9430491	total: 126ms	remaining: 7.42s
5:	learn: 43.2536304	total: 153ms	remaining: 7.5s
6:	learn: 42.5901366	total: 188ms	remaining: 7.88s
7:	learn: 42.0362841	total: 214ms	remaining: 7.82s
8:	learn: 41.4655769	total: 239ms	remaining: 7.74s
9:	learn: 40.7617374	total: 266ms	remaining: 7.71s
10:	learn: 40.1467911	total: 294ms	remaining: 7.72s
11:	learn: 39.5322002	total: 319ms	remaining: 7.65s
12:	learn: 39.2369496	total: 342ms	remaining: 7.56s
13:	learn: 38.8730340	total: 367ms	remaining: 7.49s
14:	learn: 38.4661592	total: 399ms	remaining: 7.57s
15:	learn: 37.8483750	total: 402ms	remaining: 7.14s
16:	learn: 37.2598064	total: 428ms	remaining: 7.13s
17:	learn: 36.6878531	total: 453ms	remaining: 7.09s
18:	learn: 36.1765878	total: 477ms	remaining: 7.05s
19:	learn: 35.6111928	total: 502ms	remaining: 7.03s
20:	learn: 35.2113326	total: 526ms	remaining: 6.99s
21:	learn: 34.5754750	total: 550ms	remaining: 6.94s
22:	learn: 34.0844300	total: 574ms	remaining: 6.92s
23:	learn: 33.6434482	total: 599ms	remaining: 6.88s
24:	learn: 33.3578327	total: 634ms	remaining: 6.98s
25:	learn: 32.9883035	total: 659ms	remaining: 6.95s
26:	learn: 32.6325583	total: 684ms	remaining: 6.92s
27:	learn: 32.1886629	total: 709ms	remaining: 6.88s
28:	learn: 31.8587417	total: 733ms	remaining: 6.84s
29:	learn: 31.4999044	total: 757ms	remaining: 6.81s
30:	learn: 31.1903935	total: 782ms	remaining: 6.78s
31:	learn: 30.8877054	total: 813ms	remaining: 6.81s
32:	learn: 30.6421813	total: 837ms	remaining: 6.77s
33:	learn: 30.3687742	total: 861ms	remaining: 6.74s
34:	learn: 30.0972944	total: 886ms	remaining: 6.7s
35:	learn: 29.6026977	total: 910ms	remaining: 6.67s
36:	learn: 29.3412855	total: 933ms	remaining: 6.63s
37:	learn: 29.0138869	total: 957ms	remaining: 6.6s
38:	learn: 28.6424952	total: 981ms	remaining: 6.57s
39:	learn: 28.4408572	total: 1s	remaining: 6.54s
40:	learn: 28.0554435	total: 1.04s	remaining: 6.56s
41:	learn: 27.8389274	total: 1.07s	remaining: 6.55s
42:	learn: 27.5339353	total: 1.09s	remaining: 6.52s
43:	learn: 27.3640594	total: 1.12s	remaining: 6.5s
44:	learn: 27.1330981	total: 1.14s	remaining: 6.47s
45:	learn: 26.9507132	total: 1.17s	remaining: 6.44s
46:	learn: 26.7285619	total: 1.19s	remaining: 6.41s
47:	learn: 26.3518482	total: 1.21s	remaining: 6.38s
48:	learn: 26.0543584	total: 1.24s	remaining: 6.36s
49:	learn: 25.8251945	total: 1.27s	remaining: 6.35s
50:	learn: 25.5436752	total: 1.29s	remaining: 6.32s
51:	learn: 25.3250332	total: 1.32s	remaining: 6.28s
52:	learn: 25.1688504	total: 1.34s	remaining: 6.25s
53:	learn: 24.9813407	total: 1.36s	remaining: 6.22s
54:	learn: 24.7384847	total: 1.39s	remaining: 6.19s
55:	learn: 24.5163023	total: 1.41s	remaining: 6.16s
56:	learn: 24.2729235	total: 1.44s	remaining: 6.14s
57:	learn: 24.1318061	total: 1.47s	remaining: 6.15s
58:	learn: 23.9701754	total: 1.5s	remaining: 6.12s
59:	learn: 23.8112940	total: 1.52s	remaining: 6.09s
60:	learn: 23.6723877	total: 1.55s	remaining: 6.06s
61:	learn: 23.5289336	total: 1.57s	remaining: 6.03s
62:	learn: 23.4106679	total: 1.6s	remaining: 6s
63:	learn: 23.2082280	total: 1.62s	remaining: 5.98s
64:	learn: 23.0959607	total: 1.65s	remaining: 5.97s
65:	learn: 22.9890902	total: 1.68s	remaining: 5.94s
66:	learn: 22.8516666	total: 1.7s	remaining: 5.91s
67:	learn: 22.7282575	total: 1.72s	remaining: 5.88s
68:	learn: 22.5991392	total: 1.75s	remaining: 5.85s
69:	learn: 22.3825348	total: 1.77s	remaining: 5.82s
70:	learn: 22.2284455	total: 1.79s	remaining: 5.79s
71:	learn: 22.0431735	total: 1.82s	remaining: 5.76s
72:	learn: 21.8930406	total: 1.84s	remaining: 5.74s
73:	learn: 21.7459390	total: 1.88s	remaining: 5.74s
74:	learn: 21.6277633	total: 1.91s	remaining: 5.74s
75:	learn: 21.4144047	total: 1.94s	remaining: 5.72s
76:	learn: 21.2747440	total: 1.97s	remaining: 5.7s
77:	learn: 21.1153657	total: 2s	remaining: 5.68s
78:	learn: 21.0445825	total: 2.02s	remaining: 5.66s
79:	learn: 20.9348935	total: 2.05s	remaining: 5.64s
80:	learn: 20.7685253	total: 2.08s	remaining: 5.62s
81:	learn: 20.6539889	total: 2.11s	remaining: 5.61s
82:	learn: 20.4538530	total: 2.14s	remaining: 5.59s
83:	learn: 20.3461251	total: 2.17s	remaining: 5.59s
84:	learn: 20.1992221	total: 2.2s	remaining: 5.57s
85:	learn: 20.0842190	total: 2.23s	remaining: 5.54s
86:	learn: 19.9903250	total: 2.25s	remaining: 5.52s
87:	learn: 19.9084171	total: 2.28s	remaining: 5.5s
88:	learn: 19.7929727	total: 2.31s	remaining: 5.48s
89:	learn: 19.7205230	total: 2.35s	remaining: 5.48s
90:	learn: 19.6075486	total: 2.38s	remaining: 5.46s
91:	learn: 19.5309964	total: 2.41s	remaining: 5.46s
92:	learn: 19.4363684	total: 2.44s	remaining: 5.43s
93:	learn: 19.3378127	total: 2.47s	remaining: 5.41s
94:	learn: 19.2292896	total: 2.5s	remaining: 5.39s
95:	learn: 19.1011370	total: 2.53s	remaining: 5.38s
96:	learn: 18.9974491	total: 2.56s	remaining: 5.35s
97:	learn: 18.8636531	total: 2.58s	remaining: 5.33s
98:	learn: 18.7739910	total: 2.61s	remaining: 5.3s
99:	learn: 18.6948867	total: 2.64s	remaining: 5.28s
100:	learn: 18.5747433	total: 2.67s	remaining: 5.26s
101:	learn: 18.5307499	total: 2.7s	remaining: 5.24s
102:	learn: 18.4248127	total: 2.73s	remaining: 5.22s
103:	learn: 18.3301727	total: 2.76s	remaining: 5.2s
104:	learn: 18.2579998	total: 2.79s	remaining: 5.18s
105:	learn: 18.1614231	total: 2.82s	remaining: 5.15s
106:	learn: 18.0748134	total: 2.84s	remaining: 5.13s
107:	learn: 17.9862898	total: 2.87s	remaining: 5.1s
108:	learn: 17.9368507	total: 2.9s	remaining: 5.09s
109:	learn: 17.8058561	total: 2.93s	remaining: 5.06s
110:	learn: 17.7371383	total: 2.96s	remaining: 5.04s
111:	learn: 17.6303538	total: 2.99s	remaining: 5.03s
112:	learn: 17.5449989	total: 3.02s	remaining: 5s
113:	learn: 17.4776008	total: 3.05s	remaining: 4.97s
114:	learn: 17.3648029	total: 3.07s	remaining: 4.94s
115:	learn: 17.2618916	total: 3.1s	remaining: 4.92s
116:	learn: 17.2111539	total: 3.13s	remaining: 4.89s
117:	learn: 17.1018870	total: 3.16s	remaining: 4.88s
118:	learn: 17.0024931	total: 3.2s	remaining: 4.87s
119:	learn: 16.9743860	total: 3.23s	remaining: 4.84s
120:	learn: 16.9130305	total: 3.25s	remaining: 4.82s
121:	learn: 16.8016712	total: 3.28s	remaining: 4.79s
122:	learn: 16.7261518	total: 3.31s	remaining: 4.76s
123:	learn: 16.6593504	total: 3.34s	remaining: 4.74s
124:	learn: 16.5732663	total: 3.36s	remaining: 4.71s
125:	learn: 16.4947922	total: 3.4s	remaining: 4.7s
126:	learn: 16.3991688	total: 3.43s	remaining: 4.68s
127:	learn: 16.3086895	total: 3.46s	remaining: 4.65s
128:	learn: 16.2101210	total: 3.49s	remaining: 4.63s
129:	learn: 16.1541963	total: 3.52s	remaining: 4.6s
130:	learn: 16.0790764	total: 3.54s	remaining: 4.57s
131:	learn: 16.0139723	total: 3.57s	remaining: 4.54s
132:	learn: 15.8906448	total: 3.6s	remaining: 4.52s
133:	learn: 15.8064421	total: 3.64s	remaining: 4.51s
134:	learn: 15.7265305	total: 3.67s	remaining: 4.48s
135:	learn: 15.6621677	total: 3.7s	remaining: 4.46s
136:	learn: 15.5922471	total: 3.72s	remaining: 4.43s
137:	learn: 15.5550517	total: 3.75s	remaining: 4.4s
138:	learn: 15.5278059	total: 3.78s	remaining: 4.38s
139:	learn: 15.4494043	total: 3.8s	remaining: 4.35s
140:	learn: 15.3765788	total: 3.83s	remaining: 4.32s
141:	learn: 15.3158598	total: 3.87s	remaining: 4.3s
142:	learn: 15.2121980	total: 3.9s	remaining: 4.28s
143:	learn: 15.0893974	total: 3.92s	remaining: 4.25s
144:	learn: 15.0074795	total: 3.95s	remaining: 4.22s
145:	learn: 14.9489574	total: 3.98s	remaining: 4.2s
146:	learn: 14.9258844	total: 4.01s	remaining: 4.17s
147:	learn: 14.8471123	total: 4.03s	remaining: 4.14s
148:	learn: 14.7745818	total: 4.06s	remaining: 4.12s
149:	learn: 14.6905246	total: 4.1s	remaining: 4.1s
150:	learn: 14.5873644	total: 4.13s	remaining: 4.08s
151:	learn: 14.5337902	total: 4.16s	remaining: 4.05s
152:	learn: 14.4749040	total: 4.19s	remaining: 4.03s
153:	learn: 14.3890824	total: 4.22s	remaining: 4s
154:	learn: 14.3259009	total: 4.25s	remaining: 3.97s
155:	learn: 14.2113192	total: 4.27s	remaining: 3.94s
156:	learn: 14.1718909	total: 4.3s	remaining: 3.92s
157:	learn: 14.1110356	total: 4.33s	remaining: 3.89s
158:	learn: 14.0362591	total: 4.37s	remaining: 3.87s
159:	learn: 13.9188238	total: 4.39s	remaining: 3.85s
160:	learn: 13.7740452	total: 4.42s	remaining: 3.82s
161:	learn: 13.7228642	total: 4.45s	remaining: 3.79s
162:	learn: 13.6648536	total: 4.48s	remaining: 3.76s
163:	learn: 13.5724722	total: 4.51s	remaining: 3.74s
164:	learn: 13.5141405	total: 4.54s	remaining: 3.71s
165:	learn: 13.4267305	total: 4.57s	remaining: 3.69s
166:	learn: 13.3370179	total: 4.6s	remaining: 3.66s
167:	learn: 13.2503127	total: 4.63s	remaining: 3.64s
168:	learn: 13.1743816	total: 4.66s	remaining: 3.61s
169:	learn: 13.1087726	total: 4.69s	remaining: 3.58s
170:	learn: 13.0426739	total: 4.72s	remaining: 3.56s
171:	learn: 12.9968745	total: 4.75s	remaining: 3.54s
172:	learn: 12.9301422	total: 4.78s	remaining: 3.51s
173:	learn: 12.9104864	total: 4.8s	remaining: 3.48s
174:	learn: 12.8199271	total: 4.83s	remaining: 3.45s
175:	learn: 12.7796485	total: 4.87s	remaining: 3.43s
176:	learn: 12.6883779	total: 4.89s	remaining: 3.4s
177:	learn: 12.5869619	total: 4.92s	remaining: 3.37s
178:	learn: 12.5397815	total: 4.96s	remaining: 3.35s
179:	learn: 12.4692676	total: 4.99s	remaining: 3.32s
180:	learn: 12.4433237	total: 5.01s	remaining: 3.3s
181:	learn: 12.3985342	total: 5.04s	remaining: 3.27s
182:	learn: 12.3635932	total: 5.07s	remaining: 3.24s
183:	learn: 12.2512719	total: 5.1s	remaining: 3.21s
184:	learn: 12.1558647	total: 5.13s	remaining: 3.19s
185:	learn: 12.1369112	total: 5.16s	remaining: 3.16s
186:	learn: 12.0798700	total: 5.19s	remaining: 3.14s
187:	learn: 12.0010668	total: 5.22s	remaining: 3.11s
188:	learn: 11.9442666	total: 5.24s	remaining: 3.08s
189:	learn: 11.8628888	total: 5.27s	remaining: 3.05s
190:	learn: 11.7616769	total: 5.3s	remaining: 3.02s
191:	learn: 11.6699926	total: 5.32s	remaining: 2.99s
192:	learn: 11.6392816	total: 5.36s	remaining: 2.97s
193:	learn: 11.5955244	total: 5.39s	remaining: 2.94s
194:	learn: 11.5772160	total: 5.43s	remaining: 2.92s
195:	learn: 11.5465581	total: 5.46s	remaining: 2.89s
196:	learn: 11.4564641	total: 5.48s	remaining: 2.87s
197:	learn: 11.3978031	total: 5.51s	remaining: 2.84s
198:	learn: 11.3460158	total: 5.54s	remaining: 2.81s
199:	learn: 11.2627720	total: 5.57s	remaining: 2.78s
200:	learn: 11.2162738	total: 5.6s	remaining: 2.76s
201:	learn: 11.1905894	total: 5.63s	remaining: 2.73s
202:	learn: 11.1639946	total: 5.66s	remaining: 2.71s
203:	learn: 11.0885906	total: 5.69s	remaining: 2.68s
204:	learn: 11.0284516	total: 5.71s	remaining: 2.65s
205:	learn: 10.9731416	total: 5.74s	remaining: 2.62s
206:	learn: 10.9378121	total: 5.77s	remaining: 2.59s
207:	learn: 10.8935640	total: 5.79s	remaining: 2.56s
208:	learn: 10.8572901	total: 5.82s	remaining: 2.54s
209:	learn: 10.8037961	total: 5.87s	remaining: 2.51s
210:	learn: 10.7458107	total: 5.89s	remaining: 2.49s
211:	learn: 10.7082447	total: 5.92s	remaining: 2.46s
212:	learn: 10.6599173	total: 5.95s	remaining: 2.43s
213:	learn: 10.6028419	total: 5.98s	remaining: 2.4s
214:	learn: 10.5627192	total: 6s	remaining: 2.37s
215:	learn: 10.5213774	total: 6.03s	remaining: 2.35s
216:	learn: 10.4732429	total: 6.06s	remaining: 2.32s
217:	learn: 10.4188551	total: 6.1s	remaining: 2.29s
218:	learn: 10.3740622	total: 6.13s	remaining: 2.27s
219:	learn: 10.3399349	total: 6.15s	remaining: 2.24s
220:	learn: 10.2824635	total: 6.18s	remaining: 2.21s
221:	learn: 10.2458277	total: 6.21s	remaining: 2.18s
222:	learn: 10.2341252	total: 6.24s	remaining: 2.15s
223:	learn: 10.1392287	total: 6.26s	remaining: 2.12s
224:	learn: 10.1088124	total: 6.3s	remaining: 2.1s
225:	learn: 10.0471375	total: 6.32s	remaining: 2.07s
226:	learn: 9.9852333	total: 6.35s	remaining: 2.04s
227:	learn: 9.9292294	total: 6.37s	remaining: 2.01s
228:	learn: 9.9015453	total: 6.4s	remaining: 1.98s
229:	learn: 9.8905067	total: 6.43s	remaining: 1.96s
230:	learn: 9.8507503	total: 6.46s	remaining: 1.93s
231:	learn: 9.7964411	total: 6.49s	remaining: 1.9s
232:	learn: 9.7540779	total: 6.51s	remaining: 1.87s
233:	learn: 9.7051776	total: 6.54s	remaining: 1.84s
234:	learn: 9.6539147	total: 6.56s	remaining: 1.81s
235:	learn: 9.6073112	total: 6.59s	remaining: 1.79s
236:	learn: 9.5975483	total: 6.61s	remaining: 1.76s
237:	learn: 9.5489561	total: 6.64s	remaining: 1.73s
238:	learn: 9.5160122	total: 6.66s	remaining: 1.7s
239:	learn: 9.4620416	total: 6.69s	remaining: 1.67s
240:	learn: 9.4463510	total: 6.72s	remaining: 1.65s
241:	learn: 9.4389200	total: 6.75s	remaining: 1.62s
242:	learn: 9.4078400	total: 6.77s	remaining: 1.59s
243:	learn: 9.3866265	total: 6.8s	remaining: 1.56s
244:	learn: 9.3473501	total: 6.82s	remaining: 1.53s
245:	learn: 9.2861016	total: 6.85s	remaining: 1.5s
246:	learn: 9.2734740	total: 6.88s	remaining: 1.48s
247:	learn: 9.2343522	total: 6.9s	remaining: 1.45s
248:	learn: 9.2223405	total: 6.93s	remaining: 1.42s
249:	learn: 9.2140074	total: 6.96s	remaining: 1.39s
250:	learn: 9.2046313	total: 6.98s	remaining: 1.36s
251:	learn: 9.1705343	total: 7.01s	remaining: 1.33s
252:	learn: 9.1635400	total: 7.03s	remaining: 1.31s
253:	learn: 9.1201103	total: 7.05s	remaining: 1.28s
254:	learn: 9.0874222	total: 7.08s	remaining: 1.25s
255:	learn: 9.0546404	total: 7.11s	remaining: 1.22s
256:	learn: 9.0294210	total: 7.14s	remaining: 1.2s
257:	learn: 8.9918549	total: 7.17s	remaining: 1.17s
258:	learn: 8.9860821	total: 7.2s	remaining: 1.14s
259:	learn: 8.9445721	total: 7.22s	remaining: 1.11s
260:	learn: 8.9204013	total: 7.25s	remaining: 1.08s
261:	learn: 8.8802796	total: 7.27s	remaining: 1.05s
262:	learn: 8.8319848	total: 7.3s	remaining: 1.03s
263:	learn: 8.8040786	total: 7.33s	remaining: 999ms
264:	learn: 8.7674300	total: 7.36s	remaining: 972ms
265:	learn: 8.7486932	total: 7.38s	remaining: 944ms
266:	learn: 8.7223059	total: 7.41s	remaining: 916ms
267:	learn: 8.7108992	total: 7.43s	remaining: 888ms
268:	learn: 8.7026068	total: 7.46s	remaining: 860ms
269:	learn: 8.6836280	total: 7.49s	remaining: 832ms
270:	learn: 8.6467938	total: 7.51s	remaining: 804ms
271:	learn: 8.6111555	total: 7.54s	remaining: 776ms
272:	learn: 8.5824973	total: 7.57s	remaining: 749ms
273:	learn: 8.5682745	total: 7.6s	remaining: 721ms
274:	learn: 8.5416779	total: 7.63s	remaining: 693ms
275:	learn: 8.5066950	total: 7.65s	remaining: 666ms
276:	learn: 8.4970713	total: 7.68s	remaining: 638ms
277:	learn: 8.4596116	total: 7.7s	remaining: 610ms
278:	learn: 8.4475857	total: 7.74s	remaining: 582ms
279:	learn: 8.4267482	total: 7.76s	remaining: 555ms
280:	learn: 8.4095246	total: 7.79s	remaining: 527ms
281:	learn: 8.3674941	total: 7.82s	remaining: 499ms
282:	learn: 8.3151248	total: 7.84s	remaining: 471ms
283:	learn: 8.2823195	total: 7.87s	remaining: 443ms
284:	learn: 8.2593854	total: 7.89s	remaining: 415ms
285:	learn: 8.2331325	total: 7.92s	remaining: 387ms
286:	learn: 8.1912221	total: 7.94s	remaining: 360ms
287:	learn: 8.1688810	total: 7.97s	remaining: 332ms
288:	learn: 8.1497193	total: 8s	remaining: 305ms
289:	learn: 8.1293205	total: 8.03s	remaining: 277ms
290:	learn: 8.1107539	total: 8.06s	remaining: 249ms
291:	learn: 8.0849956	total: 8.09s	remaining: 222ms
292:	learn: 8.0440544	total: 8.11s	remaining: 194ms
293:	learn: 8.0183325	total: 8.14s	remaining: 166ms
294:	learn: 7.9783905	total: 8.16s	remaining: 138ms
295:	learn: 7.9644989	total: 8.19s	remaining: 111ms
296:	learn: 7.9392598	total: 8.22s	remaining: 83ms
297:	learn: 7.9167538	total: 8.25s	remaining: 55.3ms
298:	learn: 7.8751558	total: 8.27s	remaining: 27.7ms
299:	learn: 7.8630471	total: 8.3s	remaining: 0us
0:	learn: 27.6973511	total: 24.5ms	remaining: 7.32s
1:	learn: 27.2958182	total: 53.8ms	remaining: 8.02s
2:	learn: 26.8950527	total: 82.8ms	remaining: 8.2s
3:	learn: 26.4489170	total: 108ms	remaining: 8.03s
4:	learn: 26.1800349	total: 133ms	remaining: 7.86s
5:	learn: 25.7917141	total: 158ms	remaining: 7.75s
6:	learn: 25.5263958	total: 184ms	remaining: 7.7s
7:	learn: 25.2345461	total: 208ms	remaining: 7.58s
8:	learn: 24.8337785	total: 232ms	remaining: 7.51s
9:	learn: 24.5131550	total: 257ms	remaining: 7.44s
10:	learn: 24.2257656	total: 283ms	remaining: 7.44s
11:	learn: 23.9792781	total: 315ms	remaining: 7.55s
12:	learn: 23.6676478	total: 339ms	remaining: 7.49s
13:	learn: 23.4355824	total: 364ms	remaining: 7.43s
14:	learn: 23.2062795	total: 388ms	remaining: 7.37s
15:	learn: 22.9749556	total: 411ms	remaining: 7.3s
16:	learn: 22.7388336	total: 435ms	remaining: 7.24s
17:	learn: 22.5065141	total: 459ms	remaining: 7.19s
18:	learn: 22.2263730	total: 488ms	remaining: 7.21s
19:	learn: 21.9969137	total: 523ms	remaining: 7.32s
20:	learn: 21.7654035	total: 548ms	remaining: 7.28s
21:	learn: 21.5672959	total: 573ms	remaining: 7.25s
22:	learn: 21.3699131	total: 599ms	remaining: 7.21s
23:	learn: 21.1320132	total: 623ms	remaining: 7.16s
24:	learn: 20.8360475	total: 648ms	remaining: 7.12s
25:	learn: 20.6216430	total: 673ms	remaining: 7.09s
26:	learn: 20.4442023	total: 698ms	remaining: 7.05s
27:	learn: 20.2452126	total: 736ms	remaining: 7.15s
28:	learn: 19.9551543	total: 760ms	remaining: 7.11s
29:	learn: 19.7874909	total: 785ms	remaining: 7.07s
30:	learn: 19.6541244	total: 809ms	remaining: 7.02s
31:	learn: 19.4769528	total: 834ms	remaining: 6.98s
32:	learn: 19.2916254	total: 858ms	remaining: 6.94s
33:	learn: 19.1524478	total: 883ms	remaining: 6.91s
34:	learn: 19.0152836	total: 907ms	remaining: 6.87s
35:	learn: 18.7761219	total: 935ms	remaining: 6.85s
36:	learn: 18.6266045	total: 971ms	remaining: 6.9s
37:	learn: 18.4382424	total: 996ms	remaining: 6.87s
38:	learn: 18.3276487	total: 1.02s	remaining: 6.84s
39:	learn: 18.1728115	total: 1.05s	remaining: 6.81s
40:	learn: 18.0412668	total: 1.07s	remaining: 6.77s
41:	learn: 17.8927154	total: 1.1s	remaining: 6.74s
42:	learn: 17.6796203	total: 1.12s	remaining: 6.7s
43:	learn: 17.5396182	total: 1.15s	remaining: 6.69s
44:	learn: 17.3897332	total: 1.18s	remaining: 6.67s
45:	learn: 17.2677742	total: 1.2s	remaining: 6.63s
46:	learn: 17.1204742	total: 1.22s	remaining: 6.59s
47:	learn: 16.9890701	total: 1.25s	remaining: 6.55s
48:	learn: 16.8827846	total: 1.27s	remaining: 6.51s
49:	learn: 16.7657376	total: 1.29s	remaining: 6.47s
50:	learn: 16.6624511	total: 1.32s	remaining: 6.44s
51:	learn: 16.5486117	total: 1.34s	remaining: 6.41s
52:	learn: 16.4000940	total: 1.38s	remaining: 6.44s
53:	learn: 16.3029344	total: 1.41s	remaining: 6.41s
54:	learn: 16.2035733	total: 1.43s	remaining: 6.38s
55:	learn: 16.0437589	total: 1.46s	remaining: 6.35s
56:	learn: 15.9522262	total: 1.48s	remaining: 6.31s
57:	learn: 15.8358267	total: 1.5s	remaining: 6.28s
58:	learn: 15.7214027	total: 1.53s	remaining: 6.24s
59:	learn: 15.5996313	total: 1.55s	remaining: 6.21s
60:	learn: 15.4720290	total: 1.58s	remaining: 6.17s
61:	learn: 15.3836272	total: 1.62s	remaining: 6.21s
62:	learn: 15.2874597	total: 1.65s	remaining: 6.19s
63:	learn: 15.1976492	total: 1.67s	remaining: 6.17s
64:	learn: 15.0909229	total: 1.7s	remaining: 6.15s
65:	learn: 15.0152553	total: 1.73s	remaining: 6.13s
66:	learn: 14.9383045	total: 1.75s	remaining: 6.1s
67:	learn: 14.8359454	total: 1.78s	remaining: 6.08s
68:	learn: 14.7292481	total: 1.81s	remaining: 6.06s
69:	learn: 14.6260226	total: 1.85s	remaining: 6.08s
70:	learn: 14.4936289	total: 1.88s	remaining: 6.06s
71:	learn: 14.4124866	total: 1.92s	remaining: 6.07s
72:	learn: 14.3506411	total: 1.94s	remaining: 6.05s
73:	learn: 14.3003606	total: 1.97s	remaining: 6.02s
74:	learn: 14.2329960	total: 2s	remaining: 6.01s
75:	learn: 14.1623742	total: 2.04s	remaining: 6s
76:	learn: 14.0963112	total: 2.06s	remaining: 5.98s
77:	learn: 14.0129265	total: 2.09s	remaining: 5.95s
78:	learn: 13.9069448	total: 2.12s	remaining: 5.92s
79:	learn: 13.8583745	total: 2.15s	remaining: 5.92s
80:	learn: 13.8036276	total: 2.18s	remaining: 5.89s
81:	learn: 13.7294653	total: 2.21s	remaining: 5.86s
82:	learn: 13.6421548	total: 2.23s	remaining: 5.84s
83:	learn: 13.5544027	total: 2.27s	remaining: 5.84s
84:	learn: 13.4962426	total: 2.3s	remaining: 5.82s
85:	learn: 13.4236501	total: 2.33s	remaining: 5.79s
86:	learn: 13.3553655	total: 2.35s	remaining: 5.77s
87:	learn: 13.2833189	total: 2.38s	remaining: 5.74s
88:	learn: 13.2153279	total: 2.42s	remaining: 5.73s
89:	learn: 13.1595818	total: 2.45s	remaining: 5.72s
90:	learn: 13.0790280	total: 2.48s	remaining: 5.69s
91:	learn: 13.0059101	total: 2.5s	remaining: 5.67s
92:	learn: 12.9563936	total: 2.53s	remaining: 5.64s
93:	learn: 12.8795347	total: 2.56s	remaining: 5.61s
94:	learn: 12.8232219	total: 2.59s	remaining: 5.58s
95:	learn: 12.7614070	total: 2.61s	remaining: 5.56s
96:	learn: 12.7102421	total: 2.66s	remaining: 5.56s
97:	learn: 12.6436653	total: 2.69s	remaining: 5.54s
98:	learn: 12.5913696	total: 2.71s	remaining: 5.51s
99:	learn: 12.5367726	total: 2.74s	remaining: 5.48s
100:	learn: 12.4852419	total: 2.77s	remaining: 5.45s
101:	learn: 12.4385597	total: 2.79s	remaining: 5.42s
102:	learn: 12.3736476	total: 2.82s	remaining: 5.4s
103:	learn: 12.3247110	total: 2.85s	remaining: 5.38s
104:	learn: 12.2766720	total: 2.89s	remaining: 5.37s
105:	learn: 12.1952428	total: 2.92s	remaining: 5.34s
106:	learn: 12.1331617	total: 2.94s	remaining: 5.31s
107:	learn: 12.0512166	total: 2.97s	remaining: 5.28s
108:	learn: 11.9992209	total: 3s	remaining: 5.25s
109:	learn: 11.9475776	total: 3.02s	remaining: 5.23s
110:	learn: 11.9014821	total: 3.05s	remaining: 5.2s
111:	learn: 11.8707288	total: 3.08s	remaining: 5.17s
112:	learn: 11.8094965	total: 3.13s	remaining: 5.18s
113:	learn: 11.7463043	total: 3.16s	remaining: 5.15s
114:	learn: 11.7007710	total: 3.18s	remaining: 5.12s
115:	learn: 11.6615587	total: 3.21s	remaining: 5.09s
116:	learn: 11.6237977	total: 3.24s	remaining: 5.07s
117:	learn: 11.5616902	total: 3.27s	remaining: 5.04s
118:	learn: 11.4975486	total: 3.29s	remaining: 5.01s
119:	learn: 11.4545682	total: 3.32s	remaining: 4.98s
120:	learn: 11.4025940	total: 3.35s	remaining: 4.96s
121:	learn: 11.3457331	total: 3.39s	remaining: 4.94s
122:	learn: 11.3052810	total: 3.41s	remaining: 4.91s
123:	learn: 11.2420518	total: 3.44s	remaining: 4.89s
124:	learn: 11.1980267	total: 3.47s	remaining: 4.86s
125:	learn: 11.1471837	total: 3.5s	remaining: 4.83s
126:	learn: 11.0933514	total: 3.52s	remaining: 4.8s
127:	learn: 11.0387232	total: 3.55s	remaining: 4.77s
128:	learn: 10.9882800	total: 3.59s	remaining: 4.76s
129:	learn: 10.9217831	total: 3.62s	remaining: 4.74s
130:	learn: 10.8638073	total: 3.65s	remaining: 4.71s
131:	learn: 10.8405452	total: 3.68s	remaining: 4.68s
132:	learn: 10.7843152	total: 3.71s	remaining: 4.66s
133:	learn: 10.7215416	total: 3.73s	remaining: 4.63s
134:	learn: 10.6848770	total: 3.76s	remaining: 4.6s
135:	learn: 10.6386232	total: 3.79s	remaining: 4.57s
136:	learn: 10.5833324	total: 3.82s	remaining: 4.55s
137:	learn: 10.5552164	total: 3.85s	remaining: 4.53s
138:	learn: 10.5095592	total: 3.88s	remaining: 4.5s
139:	learn: 10.4652541	total: 3.91s	remaining: 4.47s
140:	learn: 10.4181327	total: 3.94s	remaining: 4.44s
141:	learn: 10.3570489	total: 3.96s	remaining: 4.41s
142:	learn: 10.3155806	total: 3.99s	remaining: 4.38s
143:	learn: 10.2935116	total: 4.03s	remaining: 4.36s
144:	learn: 10.2490396	total: 4.06s	remaining: 4.34s
145:	learn: 10.2175010	total: 4.09s	remaining: 4.32s
146:	learn: 10.1861611	total: 4.12s	remaining: 4.29s
147:	learn: 10.1464010	total: 4.15s	remaining: 4.26s
148:	learn: 10.1109588	total: 4.18s	remaining: 4.24s
149:	learn: 10.0820993	total: 4.21s	remaining: 4.21s
150:	learn: 10.0459417	total: 4.23s	remaining: 4.18s
151:	learn: 10.0150499	total: 4.27s	remaining: 4.16s
152:	learn: 9.9616104	total: 4.3s	remaining: 4.13s
153:	learn: 9.9370092	total: 4.32s	remaining: 4.1s
154:	learn: 9.8880669	total: 4.36s	remaining: 4.08s
155:	learn: 9.8035082	total: 4.39s	remaining: 4.05s
156:	learn: 9.7562049	total: 4.41s	remaining: 4.02s
157:	learn: 9.7188558	total: 4.44s	remaining: 3.99s
158:	learn: 9.6455036	total: 4.47s	remaining: 3.96s
159:	learn: 9.6138052	total: 4.51s	remaining: 3.95s
160:	learn: 9.5876598	total: 4.54s	remaining: 3.92s
161:	learn: 9.5617205	total: 4.56s	remaining: 3.89s
162:	learn: 9.5136300	total: 4.6s	remaining: 3.87s
163:	learn: 9.4854261	total: 4.63s	remaining: 3.84s
164:	learn: 9.4413089	total: 4.66s	remaining: 3.81s
165:	learn: 9.4301555	total: 4.69s	remaining: 3.79s
166:	learn: 9.3696661	total: 4.72s	remaining: 3.76s
167:	learn: 9.3197847	total: 4.75s	remaining: 3.73s
168:	learn: 9.2932309	total: 4.77s	remaining: 3.7s
169:	learn: 9.2622589	total: 4.8s	remaining: 3.67s
170:	learn: 9.2248534	total: 4.83s	remaining: 3.64s
171:	learn: 9.2022003	total: 4.86s	remaining: 3.62s
172:	learn: 9.1580241	total: 4.89s	remaining: 3.59s
173:	learn: 9.1260167	total: 4.92s	remaining: 3.57s
174:	learn: 9.0878209	total: 4.95s	remaining: 3.54s
175:	learn: 9.0321761	total: 4.98s	remaining: 3.51s
176:	learn: 9.0083249	total: 5.01s	remaining: 3.48s
177:	learn: 8.9787673	total: 5.04s	remaining: 3.45s
178:	learn: 8.9601410	total: 5.07s	remaining: 3.43s
179:	learn: 8.9127704	total: 5.1s	remaining: 3.4s
180:	learn: 8.8972409	total: 5.13s	remaining: 3.37s
181:	learn: 8.8794861	total: 5.16s	remaining: 3.35s
182:	learn: 8.8500542	total: 5.18s	remaining: 3.31s
183:	learn: 8.8141901	total: 5.21s	remaining: 3.29s
184:	learn: 8.7581473	total: 5.24s	remaining: 3.26s
185:	learn: 8.7253122	total: 5.27s	remaining: 3.23s
186:	learn: 8.6834052	total: 5.29s	remaining: 3.2s
187:	learn: 8.6566031	total: 5.33s	remaining: 3.17s
188:	learn: 8.6185765	total: 5.36s	remaining: 3.15s
189:	learn: 8.5835114	total: 5.39s	remaining: 3.12s
190:	learn: 8.5300510	total: 5.42s	remaining: 3.09s
191:	learn: 8.5135771	total: 5.45s	remaining: 3.06s
192:	learn: 8.4829013	total: 5.48s	remaining: 3.04s
193:	learn: 8.4533553	total: 5.5s	remaining: 3.01s
194:	learn: 8.4023227	total: 5.53s	remaining: 2.98s
195:	learn: 8.3643349	total: 5.57s	remaining: 2.95s
196:	learn: 8.3359260	total: 5.6s	remaining: 2.93s
197:	learn: 8.3049442	total: 5.63s	remaining: 2.9s
198:	learn: 8.2787682	total: 5.65s	remaining: 2.87s
199:	learn: 8.2447974	total: 5.68s	remaining: 2.84s
200:	learn: 8.1921213	total: 5.71s	remaining: 2.81s
201:	learn: 8.1368756	total: 5.73s	remaining: 2.78s
202:	learn: 8.1199237	total: 5.76s	remaining: 2.75s
203:	learn: 8.1017969	total: 5.8s	remaining: 2.73s
204:	learn: 8.0671173	total: 5.82s	remaining: 2.7s
205:	learn: 8.0319971	total: 5.86s	remaining: 2.67s
206:	learn: 8.0103044	total: 5.89s	remaining: 2.65s
207:	learn: 7.9967444	total: 5.92s	remaining: 2.62s
208:	learn: 7.9828258	total: 5.95s	remaining: 2.59s
209:	learn: 7.9515046	total: 5.98s	remaining: 2.56s
210:	learn: 7.9227280	total: 6s	remaining: 2.53s
211:	learn: 7.8910798	total: 6.04s	remaining: 2.51s
212:	learn: 7.8631592	total: 6.07s	remaining: 2.48s
213:	learn: 7.8233678	total: 6.1s	remaining: 2.45s
214:	learn: 7.8019668	total: 6.12s	remaining: 2.42s
215:	learn: 7.7692506	total: 6.15s	remaining: 2.39s
216:	learn: 7.7490031	total: 6.18s	remaining: 2.36s
217:	learn: 7.7321355	total: 6.21s	remaining: 2.33s
218:	learn: 7.7098665	total: 6.23s	remaining: 2.31s
219:	learn: 7.6731807	total: 6.26s	remaining: 2.28s
220:	learn: 7.6504773	total: 6.3s	remaining: 2.25s
221:	learn: 7.6249824	total: 6.34s	remaining: 2.23s
222:	learn: 7.6041649	total: 6.37s	remaining: 2.2s
223:	learn: 7.5490806	total: 6.39s	remaining: 2.17s
224:	learn: 7.5192127	total: 6.42s	remaining: 2.14s
225:	learn: 7.5025279	total: 6.45s	remaining: 2.11s
226:	learn: 7.4929920	total: 6.48s	remaining: 2.08s
227:	learn: 7.4778779	total: 6.5s	remaining: 2.05s
228:	learn: 7.4483660	total: 6.54s	remaining: 2.03s
229:	learn: 7.4291956	total: 6.58s	remaining: 2s
230:	learn: 7.4142087	total: 6.6s	remaining: 1.97s
231:	learn: 7.3986246	total: 6.63s	remaining: 1.94s
232:	learn: 7.3551309	total: 6.65s	remaining: 1.91s
233:	learn: 7.3005723	total: 6.68s	remaining: 1.88s
234:	learn: 7.2744519	total: 6.71s	remaining: 1.85s
235:	learn: 7.2477126	total: 6.74s	remaining: 1.83s
236:	learn: 7.2363537	total: 6.78s	remaining: 1.8s
237:	learn: 7.2243670	total: 6.81s	remaining: 1.77s
238:	learn: 7.2006057	total: 6.84s	remaining: 1.75s
239:	learn: 7.1770175	total: 6.87s	remaining: 1.72s
240:	learn: 7.1608454	total: 6.89s	remaining: 1.69s
241:	learn: 7.1347778	total: 6.92s	remaining: 1.66s
242:	learn: 7.1201448	total: 6.96s	remaining: 1.63s
243:	learn: 7.0954331	total: 6.99s	remaining: 1.6s
244:	learn: 7.0788027	total: 7.02s	remaining: 1.57s
245:	learn: 7.0587521	total: 7.05s	remaining: 1.55s
246:	learn: 7.0403295	total: 7.07s	remaining: 1.52s
247:	learn: 7.0149142	total: 7.1s	remaining: 1.49s
248:	learn: 7.0058503	total: 7.13s	remaining: 1.46s
249:	learn: 6.9872119	total: 7.16s	remaining: 1.43s
250:	learn: 6.9784378	total: 7.2s	remaining: 1.4s
251:	learn: 6.9401511	total: 7.22s	remaining: 1.38s
252:	learn: 6.9119575	total: 7.25s	remaining: 1.35s
253:	learn: 6.8791967	total: 7.29s	remaining: 1.32s
254:	learn: 6.8591065	total: 7.32s	remaining: 1.29s
255:	learn: 6.8466643	total: 7.34s	remaining: 1.26s
256:	learn: 6.8336092	total: 7.38s	remaining: 1.23s
257:	learn: 6.7969563	total: 7.41s	remaining: 1.21s
258:	learn: 6.7696422	total: 7.43s	remaining: 1.18s
259:	learn: 6.7495271	total: 7.46s	remaining: 1.15s
260:	learn: 6.7360935	total: 7.49s	remaining: 1.12s
261:	learn: 6.7206472	total: 7.52s	remaining: 1.09s
262:	learn: 6.7069436	total: 7.55s	remaining: 1.06s
263:	learn: 6.6808851	total: 7.58s	remaining: 1.03s
264:	learn: 6.6465468	total: 7.62s	remaining: 1s
265:	learn: 6.6275745	total: 7.64s	remaining: 977ms
266:	learn: 6.6154560	total: 7.67s	remaining: 948ms
267:	learn: 6.5939280	total: 7.7s	remaining: 920ms
268:	learn: 6.5711370	total: 7.73s	remaining: 891ms
269:	learn: 6.5613012	total: 7.76s	remaining: 862ms
270:	learn: 6.5376183	total: 7.79s	remaining: 834ms
271:	learn: 6.5139963	total: 7.82s	remaining: 805ms
272:	learn: 6.5040754	total: 7.85s	remaining: 776ms
273:	learn: 6.4975901	total: 7.87s	remaining: 747ms
274:	learn: 6.4904306	total: 7.9s	remaining: 718ms
275:	learn: 6.4771827	total: 7.93s	remaining: 689ms
276:	learn: 6.4640077	total: 7.95s	remaining: 660ms
277:	learn: 6.4479524	total: 8s	remaining: 633ms
278:	learn: 6.4378265	total: 8.03s	remaining: 604ms
279:	learn: 6.3945577	total: 8.05s	remaining: 575ms
280:	learn: 6.3799486	total: 8.08s	remaining: 547ms
281:	learn: 6.3522615	total: 8.11s	remaining: 518ms
282:	learn: 6.3442235	total: 8.14s	remaining: 489ms
283:	learn: 6.3211858	total: 8.16s	remaining: 460ms
284:	learn: 6.3144146	total: 8.19s	remaining: 431ms
285:	learn: 6.2952523	total: 8.22s	remaining: 402ms
286:	learn: 6.2759215	total: 8.26s	remaining: 374ms
287:	learn: 6.2573928	total: 8.29s	remaining: 345ms
288:	learn: 6.2171188	total: 8.32s	remaining: 317ms
289:	learn: 6.2047704	total: 8.34s	remaining: 288ms
290:	learn: 6.1958409	total: 8.37s	remaining: 259ms
291:	learn: 6.1687670	total: 8.4s	remaining: 230ms
292:	learn: 6.1534078	total: 8.43s	remaining: 201ms
293:	learn: 6.1501440	total: 8.46s	remaining: 173ms
294:	learn: 6.1433714	total: 8.5s	remaining: 144ms
295:	learn: 6.1307498	total: 8.53s	remaining: 115ms
296:	learn: 6.0959885	total: 8.56s	remaining: 86.4ms
297:	learn: 6.0797899	total: 8.58s	remaining: 57.6ms
298:	learn: 6.0558136	total: 8.61s	remaining: 28.8ms
299:	learn: 6.0496478	total: 8.64s	remaining: 0us
0:	learn: 42.9665907	total: 23.9ms	remaining: 7.14s
1:	learn: 42.0749580	total: 50.4ms	remaining: 7.52s
2:	learn: 41.2364372	total: 75ms	remaining: 7.42s
3:	learn: 40.2791940	total: 100ms	remaining: 7.4s
4:	learn: 39.4774740	total: 126ms	remaining: 7.46s
5:	learn: 38.5996840	total: 130ms	remaining: 6.37s
6:	learn: 37.8316211	total: 162ms	remaining: 6.78s
7:	learn: 37.1628850	total: 191ms	remaining: 6.96s
8:	learn: 36.4156466	total: 217ms	remaining: 7.01s
9:	learn: 35.6588758	total: 244ms	remaining: 7.07s
10:	learn: 35.0884345	total: 270ms	remaining: 7.08s
11:	learn: 34.5488461	total: 295ms	remaining: 7.07s
12:	learn: 34.0111283	total: 321ms	remaining: 7.08s
13:	learn: 33.3032373	total: 348ms	remaining: 7.11s
14:	learn: 32.6944492	total: 381ms	remaining: 7.24s
15:	learn: 32.1392985	total: 408ms	remaining: 7.23s
16:	learn: 31.5189724	total: 432ms	remaining: 7.19s
17:	learn: 31.1349319	total: 456ms	remaining: 7.15s
18:	learn: 30.6327993	total: 461ms	remaining: 6.82s
19:	learn: 30.1244237	total: 486ms	remaining: 6.8s
20:	learn: 29.6203476	total: 511ms	remaining: 6.79s
21:	learn: 29.1948722	total: 537ms	remaining: 6.79s
22:	learn: 28.7806338	total: 562ms	remaining: 6.77s
23:	learn: 28.4090304	total: 595ms	remaining: 6.84s
24:	learn: 27.8808639	total: 625ms	remaining: 6.88s
25:	learn: 27.4873995	total: 651ms	remaining: 6.86s
26:	learn: 27.1508867	total: 678ms	remaining: 6.85s
27:	learn: 26.8736886	total: 705ms	remaining: 6.84s
28:	learn: 26.5573453	total: 729ms	remaining: 6.82s
29:	learn: 26.1377013	total: 754ms	remaining: 6.79s
30:	learn: 25.8646447	total: 780ms	remaining: 6.77s
31:	learn: 25.5102956	total: 812ms	remaining: 6.8s
32:	learn: 25.1125832	total: 816ms	remaining: 6.6s
33:	learn: 24.7834335	total: 841ms	remaining: 6.58s
34:	learn: 24.4107155	total: 867ms	remaining: 6.56s
35:	learn: 24.1257227	total: 891ms	remaining: 6.54s
36:	learn: 23.7885363	total: 916ms	remaining: 6.51s
37:	learn: 23.4172762	total: 940ms	remaining: 6.48s
38:	learn: 23.1811741	total: 966ms	remaining: 6.46s
39:	learn: 23.0203552	total: 997ms	remaining: 6.48s
40:	learn: 22.7568385	total: 1.03s	remaining: 6.5s
41:	learn: 22.5575054	total: 1.05s	remaining: 6.48s
42:	learn: 22.3627317	total: 1.08s	remaining: 6.46s
43:	learn: 22.1148033	total: 1.1s	remaining: 6.43s
44:	learn: 21.8764654	total: 1.13s	remaining: 6.42s
45:	learn: 21.6507751	total: 1.16s	remaining: 6.4s
46:	learn: 21.5071770	total: 1.18s	remaining: 6.37s
47:	learn: 21.2905641	total: 1.21s	remaining: 6.36s
48:	learn: 21.0236680	total: 1.25s	remaining: 6.39s
49:	learn: 20.8525654	total: 1.28s	remaining: 6.39s
50:	learn: 20.7238361	total: 1.3s	remaining: 6.37s
51:	learn: 20.5196846	total: 1.33s	remaining: 6.35s
52:	learn: 20.4023709	total: 1.36s	remaining: 6.32s
53:	learn: 20.2251544	total: 1.38s	remaining: 6.29s
54:	learn: 20.0165126	total: 1.41s	remaining: 6.26s
55:	learn: 19.8473022	total: 1.43s	remaining: 6.24s
56:	learn: 19.6453942	total: 1.47s	remaining: 6.26s
57:	learn: 19.4414519	total: 1.5s	remaining: 6.24s
58:	learn: 19.2841809	total: 1.52s	remaining: 6.21s
59:	learn: 19.1094988	total: 1.55s	remaining: 6.19s
60:	learn: 18.9071492	total: 1.57s	remaining: 6.16s
61:	learn: 18.8142448	total: 1.6s	remaining: 6.13s
62:	learn: 18.7155916	total: 1.62s	remaining: 6.1s
63:	learn: 18.5713989	total: 1.65s	remaining: 6.08s
64:	learn: 18.4435949	total: 1.68s	remaining: 6.07s
65:	learn: 18.3154060	total: 1.71s	remaining: 6.06s
66:	learn: 18.1763969	total: 1.73s	remaining: 6.03s
67:	learn: 18.0520004	total: 1.76s	remaining: 5.99s
68:	learn: 17.9256535	total: 1.78s	remaining: 5.97s
69:	learn: 17.8001190	total: 1.81s	remaining: 5.94s
70:	learn: 17.7046336	total: 1.83s	remaining: 5.91s
71:	learn: 17.5727695	total: 1.86s	remaining: 5.88s
72:	learn: 17.4690371	total: 1.88s	remaining: 5.86s
73:	learn: 17.3464529	total: 1.92s	remaining: 5.86s
74:	learn: 17.2490723	total: 1.95s	remaining: 5.84s
75:	learn: 17.1387598	total: 1.97s	remaining: 5.81s
76:	learn: 17.0249827	total: 2s	remaining: 5.79s
77:	learn: 16.8957417	total: 2.02s	remaining: 5.76s
78:	learn: 16.8509294	total: 2.05s	remaining: 5.73s
79:	learn: 16.7606789	total: 2.08s	remaining: 5.71s
80:	learn: 16.6451525	total: 2.11s	remaining: 5.71s
81:	learn: 16.5535417	total: 2.14s	remaining: 5.69s
82:	learn: 16.4573626	total: 2.17s	remaining: 5.67s
83:	learn: 16.3815139	total: 2.19s	remaining: 5.64s
84:	learn: 16.2757371	total: 2.22s	remaining: 5.62s
85:	learn: 16.1610261	total: 2.25s	remaining: 5.59s
86:	learn: 16.0576382	total: 2.27s	remaining: 5.56s
87:	learn: 15.9864012	total: 2.3s	remaining: 5.54s
88:	learn: 15.8595556	total: 2.33s	remaining: 5.54s
89:	learn: 15.7835777	total: 2.36s	remaining: 5.51s
90:	learn: 15.6644813	total: 2.39s	remaining: 5.48s
91:	learn: 15.5703568	total: 2.41s	remaining: 5.46s
92:	learn: 15.5149519	total: 2.44s	remaining: 5.43s
93:	learn: 15.4388698	total: 2.46s	remaining: 5.4s
94:	learn: 15.3748348	total: 2.49s	remaining: 5.37s
95:	learn: 15.2653364	total: 2.52s	remaining: 5.34s
96:	learn: 15.1811031	total: 2.55s	remaining: 5.34s
97:	learn: 15.1048666	total: 2.58s	remaining: 5.31s
98:	learn: 14.9482659	total: 2.6s	remaining: 5.28s
99:	learn: 14.8677279	total: 2.63s	remaining: 5.25s
100:	learn: 14.7725994	total: 2.65s	remaining: 5.22s
101:	learn: 14.7029290	total: 2.67s	remaining: 5.19s
102:	learn: 14.6496411	total: 2.7s	remaining: 5.16s
103:	learn: 14.5777257	total: 2.72s	remaining: 5.13s
104:	learn: 14.5216984	total: 2.75s	remaining: 5.1s
105:	learn: 14.4547829	total: 2.78s	remaining: 5.09s
106:	learn: 14.3711083	total: 2.81s	remaining: 5.06s
107:	learn: 14.2912634	total: 2.83s	remaining: 5.04s
108:	learn: 14.2095515	total: 2.86s	remaining: 5.01s
109:	learn: 14.1126833	total: 2.88s	remaining: 4.98s
110:	learn: 14.0289467	total: 2.91s	remaining: 4.95s
111:	learn: 13.9815748	total: 2.94s	remaining: 4.93s
112:	learn: 13.8835790	total: 2.96s	remaining: 4.91s
113:	learn: 13.8212214	total: 2.99s	remaining: 4.88s
114:	learn: 13.7640007	total: 3.01s	remaining: 4.85s
115:	learn: 13.7267519	total: 3.04s	remaining: 4.82s
116:	learn: 13.6599610	total: 3.06s	remaining: 4.79s
117:	learn: 13.5793132	total: 3.09s	remaining: 4.76s
118:	learn: 13.4925503	total: 3.11s	remaining: 4.73s
119:	learn: 13.4190945	total: 3.13s	remaining: 4.7s
120:	learn: 13.3466705	total: 3.16s	remaining: 4.67s
121:	learn: 13.2924496	total: 3.2s	remaining: 4.67s
122:	learn: 13.2085622	total: 3.22s	remaining: 4.64s
123:	learn: 13.1162372	total: 3.25s	remaining: 4.61s
124:	learn: 13.0410713	total: 3.27s	remaining: 4.58s
125:	learn: 12.9609613	total: 3.3s	remaining: 4.55s
126:	learn: 12.8983994	total: 3.32s	remaining: 4.53s
127:	learn: 12.8474128	total: 3.35s	remaining: 4.5s
128:	learn: 12.7868331	total: 3.37s	remaining: 4.47s
129:	learn: 12.7309355	total: 3.4s	remaining: 4.45s
130:	learn: 12.6294977	total: 3.43s	remaining: 4.42s
131:	learn: 12.5179424	total: 3.45s	remaining: 4.39s
132:	learn: 12.4808285	total: 3.48s	remaining: 4.37s
133:	learn: 12.4263439	total: 3.5s	remaining: 4.34s
134:	learn: 12.3735545	total: 3.52s	remaining: 4.31s
135:	learn: 12.3307713	total: 3.55s	remaining: 4.28s
136:	learn: 12.2519866	total: 3.57s	remaining: 4.25s
137:	learn: 12.1999454	total: 3.6s	remaining: 4.22s
138:	learn: 12.1615470	total: 3.63s	remaining: 4.21s
139:	learn: 12.1069953	total: 3.66s	remaining: 4.18s
140:	learn: 12.0901368	total: 3.68s	remaining: 4.15s
141:	learn: 12.0479705	total: 3.71s	remaining: 4.13s
142:	learn: 12.0053457	total: 3.73s	remaining: 4.1s
143:	learn: 11.9659408	total: 3.76s	remaining: 4.07s
144:	learn: 11.8554732	total: 3.78s	remaining: 4.04s
145:	learn: 11.8187196	total: 3.81s	remaining: 4.01s
146:	learn: 11.7800675	total: 3.83s	remaining: 3.98s
147:	learn: 11.7386309	total: 3.86s	remaining: 3.96s
148:	learn: 11.6839216	total: 3.88s	remaining: 3.94s
149:	learn: 11.6001114	total: 3.91s	remaining: 3.91s
150:	learn: 11.5294641	total: 3.93s	remaining: 3.88s
151:	learn: 11.4688507	total: 3.95s	remaining: 3.85s
152:	learn: 11.4036255	total: 3.98s	remaining: 3.82s
153:	learn: 11.3539311	total: 4s	remaining: 3.79s
154:	learn: 11.2810182	total: 4.03s	remaining: 3.77s
155:	learn: 11.2291051	total: 4.05s	remaining: 3.74s
156:	learn: 11.1684511	total: 4.09s	remaining: 3.73s
157:	learn: 11.0820909	total: 4.12s	remaining: 3.7s
158:	learn: 11.0151771	total: 4.14s	remaining: 3.67s
159:	learn: 10.9854451	total: 4.16s	remaining: 3.64s
160:	learn: 10.9538428	total: 4.19s	remaining: 3.62s
161:	learn: 10.9071380	total: 4.22s	remaining: 3.6s
162:	learn: 10.8506541	total: 4.25s	remaining: 3.57s
163:	learn: 10.7895632	total: 4.28s	remaining: 3.55s
164:	learn: 10.7104166	total: 4.31s	remaining: 3.53s
165:	learn: 10.6713716	total: 4.34s	remaining: 3.5s
166:	learn: 10.6075628	total: 4.37s	remaining: 3.48s
167:	learn: 10.5513657	total: 4.39s	remaining: 3.45s
168:	learn: 10.5308283	total: 4.42s	remaining: 3.42s
169:	learn: 10.5023957	total: 4.45s	remaining: 3.4s
170:	learn: 10.4435313	total: 4.47s	remaining: 3.38s
171:	learn: 10.4072323	total: 4.51s	remaining: 3.36s
172:	learn: 10.3655510	total: 4.55s	remaining: 3.34s
173:	learn: 10.3243121	total: 4.58s	remaining: 3.31s
174:	learn: 10.2931771	total: 4.61s	remaining: 3.29s
175:	learn: 10.2558381	total: 4.63s	remaining: 3.26s
176:	learn: 10.2092526	total: 4.66s	remaining: 3.24s
177:	learn: 10.1711544	total: 4.68s	remaining: 3.21s
178:	learn: 10.1456963	total: 4.71s	remaining: 3.19s
179:	learn: 10.0920598	total: 4.75s	remaining: 3.16s
180:	learn: 10.0733859	total: 4.78s	remaining: 3.14s
181:	learn: 10.0472528	total: 4.81s	remaining: 3.12s
182:	learn: 10.0011592	total: 4.83s	remaining: 3.09s
183:	learn: 9.9794945	total: 4.86s	remaining: 3.06s
184:	learn: 9.9585906	total: 4.89s	remaining: 3.04s
185:	learn: 9.9399622	total: 4.92s	remaining: 3.02s
186:	learn: 9.9029023	total: 4.95s	remaining: 2.99s
187:	learn: 9.8554746	total: 4.98s	remaining: 2.97s
188:	learn: 9.8238680	total: 5.01s	remaining: 2.94s
189:	learn: 9.7666554	total: 5.04s	remaining: 2.92s
190:	learn: 9.7207381	total: 5.07s	remaining: 2.89s
191:	learn: 9.6569385	total: 5.1s	remaining: 2.87s
192:	learn: 9.6385185	total: 5.12s	remaining: 2.84s
193:	learn: 9.6202811	total: 5.16s	remaining: 2.82s
194:	learn: 9.5971883	total: 5.19s	remaining: 2.79s
195:	learn: 9.5799642	total: 5.21s	remaining: 2.77s
196:	learn: 9.5177746	total: 5.25s	remaining: 2.74s
197:	learn: 9.4886409	total: 5.28s	remaining: 2.72s
198:	learn: 9.4664307	total: 5.3s	remaining: 2.69s
199:	learn: 9.4000552	total: 5.33s	remaining: 2.67s
200:	learn: 9.3423940	total: 5.36s	remaining: 2.64s
201:	learn: 9.2917605	total: 5.4s	remaining: 2.62s
202:	learn: 9.2787639	total: 5.42s	remaining: 2.59s
203:	learn: 9.2348560	total: 5.45s	remaining: 2.56s
204:	learn: 9.2163272	total: 5.48s	remaining: 2.54s
205:	learn: 9.1475795	total: 5.51s	remaining: 2.52s
206:	learn: 9.1152705	total: 5.54s	remaining: 2.49s
207:	learn: 9.0832275	total: 5.57s	remaining: 2.46s
208:	learn: 9.0497331	total: 5.6s	remaining: 2.44s
209:	learn: 8.9884684	total: 5.63s	remaining: 2.41s
210:	learn: 8.9704690	total: 5.66s	remaining: 2.39s
211:	learn: 8.9489198	total: 5.68s	remaining: 2.36s
212:	learn: 8.9309060	total: 5.71s	remaining: 2.33s
213:	learn: 8.8812512	total: 5.74s	remaining: 2.31s
214:	learn: 8.8596725	total: 5.77s	remaining: 2.28s
215:	learn: 8.8300852	total: 5.8s	remaining: 2.25s
216:	learn: 8.7882493	total: 5.83s	remaining: 2.23s
217:	learn: 8.7527024	total: 5.86s	remaining: 2.21s
218:	learn: 8.7373901	total: 5.89s	remaining: 2.18s
219:	learn: 8.6853084	total: 5.92s	remaining: 2.15s
220:	learn: 8.6700353	total: 5.95s	remaining: 2.13s
221:	learn: 8.6488354	total: 5.98s	remaining: 2.1s
222:	learn: 8.6245087	total: 6s	remaining: 2.07s
223:	learn: 8.5803127	total: 6.04s	remaining: 2.05s
224:	learn: 8.5687287	total: 6.07s	remaining: 2.02s
225:	learn: 8.5524159	total: 6.09s	remaining: 2s
226:	learn: 8.5363118	total: 6.12s	remaining: 1.97s
227:	learn: 8.5173117	total: 6.15s	remaining: 1.94s
228:	learn: 8.5023907	total: 6.18s	remaining: 1.91s
229:	learn: 8.4758786	total: 6.21s	remaining: 1.89s
230:	learn: 8.4589042	total: 6.24s	remaining: 1.86s
231:	learn: 8.4178675	total: 6.27s	remaining: 1.84s
232:	learn: 8.4015768	total: 6.31s	remaining: 1.81s
233:	learn: 8.3538784	total: 6.34s	remaining: 1.79s
234:	learn: 8.3197095	total: 6.37s	remaining: 1.76s
235:	learn: 8.3012561	total: 6.39s	remaining: 1.73s
236:	learn: 8.2676774	total: 6.42s	remaining: 1.71s
237:	learn: 8.2345097	total: 6.45s	remaining: 1.68s
238:	learn: 8.1918901	total: 6.48s	remaining: 1.65s
239:	learn: 8.1628985	total: 6.52s	remaining: 1.63s
240:	learn: 8.1474180	total: 6.55s	remaining: 1.6s
241:	learn: 8.1325534	total: 6.57s	remaining: 1.57s
242:	learn: 8.1037771	total: 6.6s	remaining: 1.55s
243:	learn: 8.0648232	total: 6.63s	remaining: 1.52s
244:	learn: 8.0292260	total: 6.65s	remaining: 1.49s
245:	learn: 7.9979887	total: 6.68s	remaining: 1.47s
246:	learn: 7.9749906	total: 6.72s	remaining: 1.44s
247:	learn: 7.9536857	total: 6.75s	remaining: 1.42s
248:	learn: 7.9369033	total: 6.78s	remaining: 1.39s
249:	learn: 7.9041314	total: 6.81s	remaining: 1.36s
250:	learn: 7.8700779	total: 6.84s	remaining: 1.33s
251:	learn: 7.8589815	total: 6.87s	remaining: 1.31s
252:	learn: 7.8461408	total: 6.9s	remaining: 1.28s
253:	learn: 7.8203908	total: 6.93s	remaining: 1.25s
254:	learn: 7.8115877	total: 6.96s	remaining: 1.23s
255:	learn: 7.7972851	total: 6.99s	remaining: 1.2s
256:	learn: 7.7592777	total: 7.02s	remaining: 1.17s
257:	learn: 7.7415378	total: 7.05s	remaining: 1.15s
258:	learn: 7.7066130	total: 7.07s	remaining: 1.12s
259:	learn: 7.6688277	total: 7.1s	remaining: 1.09s
260:	learn: 7.6399303	total: 7.13s	remaining: 1.06s
261:	learn: 7.6294434	total: 7.16s	remaining: 1.04s
262:	learn: 7.5974222	total: 7.2s	remaining: 1.01s
263:	learn: 7.5614717	total: 7.23s	remaining: 986ms
264:	learn: 7.5393196	total: 7.26s	remaining: 959ms
265:	learn: 7.5304428	total: 7.29s	remaining: 931ms
266:	learn: 7.5005082	total: 7.31s	remaining: 904ms
267:	learn: 7.4930881	total: 7.34s	remaining: 877ms
268:	learn: 7.4618806	total: 7.37s	remaining: 850ms
269:	learn: 7.4324630	total: 7.4s	remaining: 822ms
270:	learn: 7.4024922	total: 7.43s	remaining: 795ms
271:	learn: 7.3795771	total: 7.46s	remaining: 768ms
272:	learn: 7.3582401	total: 7.49s	remaining: 741ms
273:	learn: 7.3332320	total: 7.52s	remaining: 713ms
274:	learn: 7.3134158	total: 7.54s	remaining: 686ms
275:	learn: 7.3047177	total: 7.58s	remaining: 660ms
276:	learn: 7.2835686	total: 7.61s	remaining: 632ms
277:	learn: 7.2590706	total: 7.64s	remaining: 605ms
278:	learn: 7.2389798	total: 7.67s	remaining: 577ms
279:	learn: 7.2238047	total: 7.7s	remaining: 550ms
280:	learn: 7.2091121	total: 7.73s	remaining: 523ms
281:	learn: 7.1841389	total: 7.76s	remaining: 496ms
282:	learn: 7.1551478	total: 7.79s	remaining: 468ms
283:	learn: 7.1417039	total: 7.82s	remaining: 441ms
284:	learn: 7.1149018	total: 7.85s	remaining: 413ms
285:	learn: 7.0940299	total: 7.87s	remaining: 385ms
286:	learn: 7.0642807	total: 7.9s	remaining: 358ms
287:	learn: 7.0578276	total: 7.93s	remaining: 331ms
288:	learn: 7.0282409	total: 7.96s	remaining: 303ms
289:	learn: 7.0175655	total: 8s	remaining: 276ms
290:	learn: 7.0117776	total: 8.03s	remaining: 248ms
291:	learn: 7.0065809	total: 8.05s	remaining: 221ms
292:	learn: 6.9844003	total: 8.08s	remaining: 193ms
293:	learn: 6.9588520	total: 8.11s	remaining: 166ms
294:	learn: 6.9319651	total: 8.14s	remaining: 138ms
295:	learn: 6.9184996	total: 8.17s	remaining: 110ms
296:	learn: 6.9089387	total: 8.2s	remaining: 82.9ms
297:	learn: 6.8834263	total: 8.23s	remaining: 55.3ms
298:	learn: 6.8646725	total: 8.26s	remaining: 27.6ms
299:	learn: 6.8583069	total: 8.29s	remaining: 0us
0:	learn: 46.4920187	total: 26.8ms	remaining: 8.02s
1:	learn: 45.6433575	total: 54.9ms	remaining: 8.18s
2:	learn: 44.9081373	total: 92.3ms	remaining: 9.13s
3:	learn: 44.2007033	total: 122ms	remaining: 9s
4:	learn: 43.6170398	total: 159ms	remaining: 9.35s
5:	learn: 42.9324480	total: 187ms	remaining: 9.18s
6:	learn: 42.1711446	total: 215ms	remaining: 8.98s
7:	learn: 41.4804333	total: 242ms	remaining: 8.82s
8:	learn: 40.7785369	total: 270ms	remaining: 8.74s
9:	learn: 40.1652912	total: 301ms	remaining: 8.74s
10:	learn: 39.7932467	total: 332ms	remaining: 8.73s
11:	learn: 39.1996124	total: 361ms	remaining: 8.66s
12:	learn: 38.7184015	total: 396ms	remaining: 8.74s
13:	learn: 38.2978784	total: 422ms	remaining: 8.62s
14:	learn: 37.9153936	total: 448ms	remaining: 8.52s
15:	learn: 37.4724861	total: 476ms	remaining: 8.45s
16:	learn: 36.9897929	total: 511ms	remaining: 8.5s
17:	learn: 36.5310822	total: 540ms	remaining: 8.46s
18:	learn: 35.8591207	total: 567ms	remaining: 8.39s
19:	learn: 35.3264196	total: 595ms	remaining: 8.32s
20:	learn: 34.9815543	total: 631ms	remaining: 8.38s
21:	learn: 34.5242647	total: 659ms	remaining: 8.32s
22:	learn: 34.0838298	total: 685ms	remaining: 8.24s
23:	learn: 33.5132614	total: 712ms	remaining: 8.18s
24:	learn: 33.1682884	total: 741ms	remaining: 8.15s
25:	learn: 32.6809656	total: 773ms	remaining: 8.15s
26:	learn: 32.2976643	total: 800ms	remaining: 8.09s
27:	learn: 31.8377309	total: 827ms	remaining: 8.03s
28:	learn: 31.4757870	total: 862ms	remaining: 8.05s
29:	learn: 31.1346090	total: 889ms	remaining: 8s
30:	learn: 30.8895702	total: 916ms	remaining: 7.94s
31:	learn: 30.4184979	total: 942ms	remaining: 7.89s
32:	learn: 30.1250221	total: 970ms	remaining: 7.85s
33:	learn: 29.7407593	total: 1.01s	remaining: 7.88s
34:	learn: 29.4737622	total: 1.04s	remaining: 7.85s
35:	learn: 29.0366253	total: 1.06s	remaining: 7.8s
36:	learn: 28.5395737	total: 1.09s	remaining: 7.76s
37:	learn: 28.2499036	total: 1.13s	remaining: 7.77s
38:	learn: 28.0302095	total: 1.15s	remaining: 7.73s
39:	learn: 27.7630415	total: 1.18s	remaining: 7.68s
40:	learn: 27.5060679	total: 1.22s	remaining: 7.68s
41:	learn: 27.1860580	total: 1.24s	remaining: 7.64s
42:	learn: 26.9497401	total: 1.27s	remaining: 7.6s
43:	learn: 26.5636809	total: 1.3s	remaining: 7.55s
44:	learn: 26.3527818	total: 1.32s	remaining: 7.51s
45:	learn: 26.0947487	total: 1.33s	remaining: 7.36s
46:	learn: 25.8964846	total: 1.37s	remaining: 7.37s
47:	learn: 25.7357069	total: 1.4s	remaining: 7.33s
48:	learn: 25.4371960	total: 1.42s	remaining: 7.3s
49:	learn: 25.2603655	total: 1.46s	remaining: 7.31s
50:	learn: 25.0858697	total: 1.49s	remaining: 7.27s
51:	learn: 24.8939288	total: 1.52s	remaining: 7.23s
52:	learn: 24.6820962	total: 1.54s	remaining: 7.2s
53:	learn: 24.4191077	total: 1.57s	remaining: 7.16s
54:	learn: 24.2285108	total: 1.61s	remaining: 7.15s
55:	learn: 24.0237019	total: 1.64s	remaining: 7.15s
56:	learn: 23.8723096	total: 1.67s	remaining: 7.12s
57:	learn: 23.6426757	total: 1.7s	remaining: 7.08s
58:	learn: 23.3573717	total: 1.72s	remaining: 7.04s
59:	learn: 23.2066882	total: 1.75s	remaining: 7s
60:	learn: 23.0766272	total: 1.78s	remaining: 6.96s
61:	learn: 22.8991718	total: 1.8s	remaining: 6.92s
62:	learn: 22.7894335	total: 1.84s	remaining: 6.92s
63:	learn: 22.6367500	total: 1.88s	remaining: 6.92s
64:	learn: 22.4138205	total: 1.9s	remaining: 6.88s
65:	learn: 22.2650450	total: 1.93s	remaining: 6.85s
66:	learn: 22.1323603	total: 1.96s	remaining: 6.82s
67:	learn: 22.0038344	total: 1.99s	remaining: 6.78s
68:	learn: 21.8540317	total: 2.01s	remaining: 6.74s
69:	learn: 21.6608789	total: 2.04s	remaining: 6.7s
70:	learn: 21.4853082	total: 2.07s	remaining: 6.68s
71:	learn: 21.3715617	total: 2.11s	remaining: 6.68s
72:	learn: 21.2631638	total: 2.14s	remaining: 6.65s
73:	learn: 21.0630270	total: 2.16s	remaining: 6.61s
74:	learn: 20.9295137	total: 2.19s	remaining: 6.58s
75:	learn: 20.7587846	total: 2.22s	remaining: 6.54s
76:	learn: 20.6341259	total: 2.25s	remaining: 6.5s
77:	learn: 20.4852416	total: 2.27s	remaining: 6.47s
78:	learn: 20.3364151	total: 2.31s	remaining: 6.47s
79:	learn: 20.1513667	total: 2.35s	remaining: 6.45s
80:	learn: 20.0363336	total: 2.37s	remaining: 6.42s
81:	learn: 19.8984761	total: 2.4s	remaining: 6.39s
82:	learn: 19.7196215	total: 2.43s	remaining: 6.35s
83:	learn: 19.6326171	total: 2.46s	remaining: 6.32s
84:	learn: 19.5192244	total: 2.48s	remaining: 6.28s
85:	learn: 19.3415480	total: 2.51s	remaining: 6.26s
86:	learn: 19.1977806	total: 2.54s	remaining: 6.23s
87:	learn: 19.0755247	total: 2.58s	remaining: 6.21s
88:	learn: 18.9651152	total: 2.6s	remaining: 6.18s
89:	learn: 18.8207893	total: 2.63s	remaining: 6.14s
90:	learn: 18.6727740	total: 2.66s	remaining: 6.11s
91:	learn: 18.5581545	total: 2.69s	remaining: 6.07s
92:	learn: 18.3991083	total: 2.71s	remaining: 6.04s
93:	learn: 18.2684705	total: 2.75s	remaining: 6.03s
94:	learn: 18.1617452	total: 2.78s	remaining: 6s
95:	learn: 18.0459371	total: 2.81s	remaining: 5.98s
96:	learn: 17.9276342	total: 2.84s	remaining: 5.95s
97:	learn: 17.8174578	total: 2.87s	remaining: 5.92s
98:	learn: 17.7243604	total: 2.9s	remaining: 5.88s
99:	learn: 17.5858933	total: 2.92s	remaining: 5.85s
100:	learn: 17.4987099	total: 2.96s	remaining: 5.83s
101:	learn: 17.4074669	total: 2.99s	remaining: 5.8s
102:	learn: 17.3061897	total: 3.01s	remaining: 5.76s
103:	learn: 17.2198386	total: 3.04s	remaining: 5.73s
104:	learn: 17.1413444	total: 3.08s	remaining: 5.71s
105:	learn: 17.0254611	total: 3.1s	remaining: 5.68s
106:	learn: 16.8532099	total: 3.13s	remaining: 5.65s
107:	learn: 16.7502658	total: 3.16s	remaining: 5.62s
108:	learn: 16.6620525	total: 3.2s	remaining: 5.6s
109:	learn: 16.5150565	total: 3.23s	remaining: 5.57s
110:	learn: 16.3807346	total: 3.25s	remaining: 5.54s
111:	learn: 16.2864111	total: 3.28s	remaining: 5.51s
112:	learn: 16.2093028	total: 3.32s	remaining: 5.49s
113:	learn: 16.1230989	total: 3.34s	remaining: 5.46s
114:	learn: 16.0202012	total: 3.37s	remaining: 5.42s
115:	learn: 15.8709211	total: 3.4s	remaining: 5.4s
116:	learn: 15.8000542	total: 3.43s	remaining: 5.37s
117:	learn: 15.7243590	total: 3.46s	remaining: 5.33s
118:	learn: 15.6838028	total: 3.48s	remaining: 5.3s
119:	learn: 15.5999055	total: 3.51s	remaining: 5.27s
120:	learn: 15.4847533	total: 3.54s	remaining: 5.24s
121:	learn: 15.3935164	total: 3.57s	remaining: 5.21s
122:	learn: 15.3296377	total: 3.61s	remaining: 5.2s
123:	learn: 15.2519510	total: 3.64s	remaining: 5.17s
124:	learn: 15.1230133	total: 3.67s	remaining: 5.13s
125:	learn: 15.0423019	total: 3.69s	remaining: 5.1s
126:	learn: 14.9651901	total: 3.72s	remaining: 5.07s
127:	learn: 14.8934123	total: 3.75s	remaining: 5.04s
128:	learn: 14.7751491	total: 3.79s	remaining: 5.02s
129:	learn: 14.6892078	total: 3.82s	remaining: 5s
130:	learn: 14.5672638	total: 3.85s	remaining: 4.97s
131:	learn: 14.4952938	total: 3.88s	remaining: 4.94s
132:	learn: 14.4180105	total: 3.91s	remaining: 4.91s
133:	learn: 14.3259063	total: 3.94s	remaining: 4.88s
134:	learn: 14.2345804	total: 3.96s	remaining: 4.84s
135:	learn: 14.1483357	total: 3.99s	remaining: 4.81s
136:	learn: 14.0736010	total: 4.02s	remaining: 4.78s
137:	learn: 13.9937119	total: 4.06s	remaining: 4.77s
138:	learn: 13.8959716	total: 4.09s	remaining: 4.74s
139:	learn: 13.8412567	total: 4.12s	remaining: 4.71s
140:	learn: 13.7154644	total: 4.15s	remaining: 4.68s
141:	learn: 13.6297829	total: 4.17s	remaining: 4.64s
142:	learn: 13.5739671	total: 4.2s	remaining: 4.61s
143:	learn: 13.4995340	total: 4.24s	remaining: 4.59s
144:	learn: 13.4419790	total: 4.26s	remaining: 4.56s
145:	learn: 13.3537206	total: 4.3s	remaining: 4.54s
146:	learn: 13.2933505	total: 4.33s	remaining: 4.5s
147:	learn: 13.2556145	total: 4.35s	remaining: 4.47s
148:	learn: 13.1895569	total: 4.38s	remaining: 4.44s
149:	learn: 13.0743749	total: 4.41s	remaining: 4.41s
150:	learn: 12.9866329	total: 4.44s	remaining: 4.38s
151:	learn: 12.9104275	total: 4.47s	remaining: 4.35s
152:	learn: 12.8577271	total: 4.5s	remaining: 4.32s
153:	learn: 12.8256294	total: 4.53s	remaining: 4.29s
154:	learn: 12.7696590	total: 4.56s	remaining: 4.26s
155:	learn: 12.7209084	total: 4.58s	remaining: 4.23s
156:	learn: 12.6674046	total: 4.61s	remaining: 4.2s
157:	learn: 12.5958375	total: 4.64s	remaining: 4.17s
158:	learn: 12.5324216	total: 4.67s	remaining: 4.14s
159:	learn: 12.4750343	total: 4.7s	remaining: 4.12s
160:	learn: 12.4460476	total: 4.73s	remaining: 4.08s
161:	learn: 12.3931726	total: 4.76s	remaining: 4.06s
162:	learn: 12.3423679	total: 4.79s	remaining: 4.03s
163:	learn: 12.2404837	total: 4.82s	remaining: 4s
164:	learn: 12.1393154	total: 4.85s	remaining: 3.97s
165:	learn: 12.0493899	total: 4.88s	remaining: 3.94s
166:	learn: 11.9978027	total: 4.91s	remaining: 3.91s
167:	learn: 11.9099690	total: 4.94s	remaining: 3.88s
168:	learn: 11.8102813	total: 4.97s	remaining: 3.85s
169:	learn: 11.7900460	total: 5s	remaining: 3.82s
170:	learn: 11.6614467	total: 5.04s	remaining: 3.8s
171:	learn: 11.6131631	total: 5.06s	remaining: 3.77s
172:	learn: 11.5629996	total: 5.09s	remaining: 3.74s
173:	learn: 11.5169908	total: 5.12s	remaining: 3.71s
174:	learn: 11.4660439	total: 5.15s	remaining: 3.68s
175:	learn: 11.3919483	total: 5.18s	remaining: 3.65s
176:	learn: 11.3145316	total: 5.21s	remaining: 3.62s
177:	learn: 11.2776601	total: 5.24s	remaining: 3.59s
178:	learn: 11.2271053	total: 5.27s	remaining: 3.56s
179:	learn: 11.1499719	total: 5.3s	remaining: 3.53s
180:	learn: 11.0826417	total: 5.32s	remaining: 3.5s
181:	learn: 11.0345062	total: 5.35s	remaining: 3.47s
182:	learn: 10.9747957	total: 5.39s	remaining: 3.44s
183:	learn: 10.9504835	total: 5.42s	remaining: 3.41s
184:	learn: 10.8920732	total: 5.44s	remaining: 3.38s
185:	learn: 10.8332793	total: 5.47s	remaining: 3.35s
186:	learn: 10.7563237	total: 5.51s	remaining: 3.33s
187:	learn: 10.6822868	total: 5.53s	remaining: 3.3s
188:	learn: 10.6056324	total: 5.56s	remaining: 3.27s
189:	learn: 10.5266557	total: 5.59s	remaining: 3.23s
190:	learn: 10.4930964	total: 5.62s	remaining: 3.21s
191:	learn: 10.4201879	total: 5.65s	remaining: 3.18s
192:	learn: 10.3397888	total: 5.67s	remaining: 3.15s
193:	learn: 10.2865417	total: 5.7s	remaining: 3.12s
194:	learn: 10.2334779	total: 5.74s	remaining: 3.09s
195:	learn: 10.1692880	total: 5.76s	remaining: 3.06s
196:	learn: 10.0710712	total: 5.79s	remaining: 3.03s
197:	learn: 10.0112189	total: 5.83s	remaining: 3s
198:	learn: 9.9312531	total: 5.86s	remaining: 2.97s
199:	learn: 9.8522991	total: 5.89s	remaining: 2.94s
200:	learn: 9.8089200	total: 5.92s	remaining: 2.91s
201:	learn: 9.7508922	total: 5.94s	remaining: 2.88s
202:	learn: 9.7146850	total: 5.97s	remaining: 2.85s
203:	learn: 9.6641129	total: 6s	remaining: 2.83s
204:	learn: 9.6327075	total: 6.03s	remaining: 2.79s
205:	learn: 9.5932487	total: 6.07s	remaining: 2.77s
206:	learn: 9.5445036	total: 6.09s	remaining: 2.74s
207:	learn: 9.4948826	total: 6.12s	remaining: 2.71s
208:	learn: 9.4535103	total: 6.15s	remaining: 2.68s
209:	learn: 9.4123413	total: 6.17s	remaining: 2.65s
210:	learn: 9.3702571	total: 6.2s	remaining: 2.62s
211:	learn: 9.3376174	total: 6.24s	remaining: 2.59s
212:	learn: 9.2978132	total: 6.27s	remaining: 2.56s
213:	learn: 9.2585597	total: 6.3s	remaining: 2.53s
214:	learn: 9.2229218	total: 6.33s	remaining: 2.5s
215:	learn: 9.1931978	total: 6.36s	remaining: 2.47s
216:	learn: 9.1391962	total: 6.38s	remaining: 2.44s
217:	learn: 9.1177140	total: 6.41s	remaining: 2.41s
218:	learn: 9.0779325	total: 6.44s	remaining: 2.38s
219:	learn: 9.0291866	total: 6.48s	remaining: 2.35s
220:	learn: 9.0063703	total: 6.51s	remaining: 2.33s
221:	learn: 8.9747579	total: 6.53s	remaining: 2.29s
222:	learn: 8.9452822	total: 6.56s	remaining: 2.27s
223:	learn: 8.8954806	total: 6.59s	remaining: 2.23s
224:	learn: 8.8756565	total: 6.61s	remaining: 2.2s
225:	learn: 8.8362862	total: 6.64s	remaining: 2.17s
226:	learn: 8.7994104	total: 6.67s	remaining: 2.14s
227:	learn: 8.7388797	total: 6.71s	remaining: 2.12s
228:	learn: 8.7011029	total: 6.74s	remaining: 2.09s
229:	learn: 8.6617377	total: 6.77s	remaining: 2.06s
230:	learn: 8.6134302	total: 6.79s	remaining: 2.03s
231:	learn: 8.5572452	total: 6.82s	remaining: 2s
232:	learn: 8.5450933	total: 6.85s	remaining: 1.97s
233:	learn: 8.5296821	total: 6.88s	remaining: 1.94s
234:	learn: 8.4941428	total: 6.91s	remaining: 1.91s
235:	learn: 8.4682542	total: 6.94s	remaining: 1.88s
236:	learn: 8.4334184	total: 6.98s	remaining: 1.85s
237:	learn: 8.3841236	total: 7s	remaining: 1.82s
238:	learn: 8.3495185	total: 7.03s	remaining: 1.79s
239:	learn: 8.3255533	total: 7.06s	remaining: 1.76s
240:	learn: 8.2769513	total: 7.08s	remaining: 1.73s
241:	learn: 8.2392608	total: 7.11s	remaining: 1.7s
242:	learn: 8.2075977	total: 7.14s	remaining: 1.68s
243:	learn: 8.1675762	total: 7.18s	remaining: 1.65s
244:	learn: 8.1426498	total: 7.21s	remaining: 1.62s
245:	learn: 8.1212492	total: 7.24s	remaining: 1.59s
246:	learn: 8.1085819	total: 7.27s	remaining: 1.56s
247:	learn: 8.0970063	total: 7.3s	remaining: 1.53s
248:	learn: 8.0831142	total: 7.32s	remaining: 1.5s
249:	learn: 8.0682674	total: 7.35s	remaining: 1.47s
250:	learn: 8.0255439	total: 7.38s	remaining: 1.44s
251:	learn: 7.9910040	total: 7.41s	remaining: 1.41s
252:	learn: 7.9689255	total: 7.45s	remaining: 1.38s
253:	learn: 7.9472704	total: 7.47s	remaining: 1.35s
254:	learn: 7.9223583	total: 7.5s	remaining: 1.32s
255:	learn: 7.9037436	total: 7.53s	remaining: 1.29s
256:	learn: 7.8699909	total: 7.55s	remaining: 1.26s
257:	learn: 7.8368335	total: 7.59s	remaining: 1.24s
258:	learn: 7.8236324	total: 7.62s	remaining: 1.21s
259:	learn: 7.8036203	total: 7.65s	remaining: 1.18s
260:	learn: 7.7785106	total: 7.68s	remaining: 1.15s
261:	learn: 7.7378238	total: 7.71s	remaining: 1.12s
262:	learn: 7.7076815	total: 7.74s	remaining: 1.09s
263:	learn: 7.6857233	total: 7.77s	remaining: 1.06s
264:	learn: 7.6580317	total: 7.8s	remaining: 1.03s
265:	learn: 7.6172020	total: 7.83s	remaining: 1s
266:	learn: 7.5867081	total: 7.86s	remaining: 971ms
267:	learn: 7.5596902	total: 7.88s	remaining: 942ms
268:	learn: 7.5299019	total: 7.91s	remaining: 912ms
269:	learn: 7.5009508	total: 7.95s	remaining: 883ms
270:	learn: 7.4926172	total: 7.97s	remaining: 853ms
271:	learn: 7.4658986	total: 8s	remaining: 824ms
272:	learn: 7.4522698	total: 8.04s	remaining: 795ms
273:	learn: 7.4302812	total: 8.06s	remaining: 765ms
274:	learn: 7.3941731	total: 8.09s	remaining: 736ms
275:	learn: 7.3799563	total: 8.12s	remaining: 706ms
276:	learn: 7.3656377	total: 8.15s	remaining: 677ms
277:	learn: 7.3315754	total: 8.18s	remaining: 648ms
278:	learn: 7.3180067	total: 8.22s	remaining: 618ms
279:	learn: 7.2955359	total: 8.24s	remaining: 589ms
280:	learn: 7.2752011	total: 8.27s	remaining: 559ms
281:	learn: 7.2453396	total: 8.3s	remaining: 530ms
282:	learn: 7.2349607	total: 8.33s	remaining: 500ms
283:	learn: 7.2063896	total: 8.36s	remaining: 471ms
284:	learn: 7.1899919	total: 8.38s	remaining: 441ms
285:	learn: 7.1788740	total: 8.41s	remaining: 412ms
286:	learn: 7.1567240	total: 8.45s	remaining: 383ms
287:	learn: 7.1370331	total: 8.48s	remaining: 353ms
288:	learn: 7.1180486	total: 8.51s	remaining: 324ms
289:	learn: 7.0971315	total: 8.53s	remaining: 294ms
290:	learn: 7.0784398	total: 8.56s	remaining: 265ms
291:	learn: 7.0605330	total: 8.59s	remaining: 235ms
292:	learn: 7.0273458	total: 8.62s	remaining: 206ms
293:	learn: 7.0133663	total: 8.65s	remaining: 177ms
294:	learn: 6.9946693	total: 8.68s	remaining: 147ms
295:	learn: 6.9685770	total: 8.71s	remaining: 118ms
296:	learn: 6.9527470	total: 8.74s	remaining: 88.3ms
297:	learn: 6.9305615	total: 8.77s	remaining: 58.8ms
298:	learn: 6.9039647	total: 8.79s	remaining: 29.4ms
299:	learn: 6.8927522	total: 8.82s	remaining: 0us
0:	learn: 46.2361874	total: 40.7ms	remaining: 12.2s
1:	learn: 45.3982106	total: 68.5ms	remaining: 10.2s
2:	learn: 44.6777488	total: 104ms	remaining: 10.3s
3:	learn: 43.7409965	total: 133ms	remaining: 9.82s
4:	learn: 43.2513213	total: 160ms	remaining: 9.45s
5:	learn: 42.4947195	total: 187ms	remaining: 9.14s
6:	learn: 41.9697708	total: 214ms	remaining: 8.95s
7:	learn: 41.2445289	total: 241ms	remaining: 8.79s
8:	learn: 40.5360490	total: 268ms	remaining: 8.66s
9:	learn: 39.9370297	total: 295ms	remaining: 8.56s
10:	learn: 39.1060281	total: 335ms	remaining: 8.81s
11:	learn: 38.6733181	total: 363ms	remaining: 8.71s
12:	learn: 38.3760896	total: 389ms	remaining: 8.59s
13:	learn: 37.9842684	total: 416ms	remaining: 8.49s
14:	learn: 37.4860092	total: 442ms	remaining: 8.41s
15:	learn: 36.9450018	total: 470ms	remaining: 8.35s
16:	learn: 36.5144396	total: 498ms	remaining: 8.29s
17:	learn: 36.0168729	total: 525ms	remaining: 8.22s
18:	learn: 35.4748970	total: 564ms	remaining: 8.34s
19:	learn: 35.0390482	total: 590ms	remaining: 8.26s
20:	learn: 34.6776156	total: 616ms	remaining: 8.18s
21:	learn: 34.3978384	total: 643ms	remaining: 8.12s
22:	learn: 34.0289970	total: 668ms	remaining: 8.04s
23:	learn: 33.6138883	total: 694ms	remaining: 7.97s
24:	learn: 33.2279106	total: 717ms	remaining: 7.89s
25:	learn: 32.8252468	total: 743ms	remaining: 7.83s
26:	learn: 32.4666371	total: 774ms	remaining: 7.83s
27:	learn: 32.1644689	total: 800ms	remaining: 7.77s
28:	learn: 31.6892888	total: 826ms	remaining: 7.71s
29:	learn: 31.4013853	total: 851ms	remaining: 7.66s
30:	learn: 31.0918470	total: 877ms	remaining: 7.61s
31:	learn: 30.7382925	total: 902ms	remaining: 7.55s
32:	learn: 30.3837621	total: 928ms	remaining: 7.5s
33:	learn: 29.9818772	total: 954ms	remaining: 7.46s
34:	learn: 29.7173064	total: 983ms	remaining: 7.45s
35:	learn: 29.2164083	total: 1.01s	remaining: 7.44s
36:	learn: 28.9131554	total: 1.04s	remaining: 7.39s
37:	learn: 28.5257233	total: 1.07s	remaining: 7.35s
38:	learn: 28.2965944	total: 1.09s	remaining: 7.31s
39:	learn: 28.0804622	total: 1.11s	remaining: 7.25s
40:	learn: 27.8304426	total: 1.14s	remaining: 7.2s
41:	learn: 27.4453684	total: 1.17s	remaining: 7.17s
42:	learn: 27.3017075	total: 1.2s	remaining: 7.16s
43:	learn: 27.0701323	total: 1.23s	remaining: 7.13s
44:	learn: 26.8649692	total: 1.25s	remaining: 7.09s
45:	learn: 26.6301705	total: 1.26s	remaining: 6.96s
46:	learn: 26.4341772	total: 1.28s	remaining: 6.92s
47:	learn: 26.2192154	total: 1.31s	remaining: 6.88s
48:	learn: 25.9631071	total: 1.33s	remaining: 6.84s
49:	learn: 25.5792340	total: 1.36s	remaining: 6.8s
50:	learn: 25.3916810	total: 1.39s	remaining: 6.78s
51:	learn: 25.2370365	total: 1.42s	remaining: 6.76s
52:	learn: 24.9965355	total: 1.45s	remaining: 6.74s
53:	learn: 24.8178278	total: 1.47s	remaining: 6.7s
54:	learn: 24.6443095	total: 1.5s	remaining: 6.67s
55:	learn: 24.4870683	total: 1.53s	remaining: 6.65s
56:	learn: 24.2978173	total: 1.55s	remaining: 6.62s
57:	learn: 24.1340740	total: 1.58s	remaining: 6.58s
58:	learn: 23.8586489	total: 1.6s	remaining: 6.55s
59:	learn: 23.6035925	total: 1.63s	remaining: 6.54s
60:	learn: 23.4530593	total: 1.66s	remaining: 6.51s
61:	learn: 23.2783421	total: 1.69s	remaining: 6.47s
62:	learn: 23.1030553	total: 1.71s	remaining: 6.43s
63:	learn: 22.9659704	total: 1.73s	remaining: 6.4s
64:	learn: 22.8283407	total: 1.76s	remaining: 6.36s
65:	learn: 22.7134955	total: 1.78s	remaining: 6.33s
66:	learn: 22.5782888	total: 1.81s	remaining: 6.29s
67:	learn: 22.4557438	total: 1.84s	remaining: 6.28s
68:	learn: 22.3316398	total: 1.88s	remaining: 6.28s
69:	learn: 22.1161650	total: 1.9s	remaining: 6.25s
70:	learn: 21.9806112	total: 1.93s	remaining: 6.22s
71:	learn: 21.8705364	total: 1.95s	remaining: 6.18s
72:	learn: 21.7450899	total: 1.98s	remaining: 6.15s
73:	learn: 21.5593132	total: 2s	remaining: 6.11s
74:	learn: 21.4206323	total: 2.03s	remaining: 6.08s
75:	learn: 21.2904965	total: 2.06s	remaining: 6.06s
76:	learn: 21.1898852	total: 2.09s	remaining: 6.04s
77:	learn: 21.0582226	total: 2.11s	remaining: 6.01s
78:	learn: 20.9414763	total: 2.14s	remaining: 5.98s
79:	learn: 20.7847655	total: 2.16s	remaining: 5.95s
80:	learn: 20.6413634	total: 2.19s	remaining: 5.92s
81:	learn: 20.5314598	total: 2.21s	remaining: 5.88s
82:	learn: 20.3298485	total: 2.24s	remaining: 5.85s
83:	learn: 20.2197693	total: 2.27s	remaining: 5.83s
84:	learn: 20.1021239	total: 2.31s	remaining: 5.83s
85:	learn: 20.0001932	total: 2.33s	remaining: 5.8s
86:	learn: 19.8813166	total: 2.36s	remaining: 5.77s
87:	learn: 19.7335638	total: 2.38s	remaining: 5.75s
88:	learn: 19.6116984	total: 2.41s	remaining: 5.71s
89:	learn: 19.4739468	total: 2.43s	remaining: 5.68s
90:	learn: 19.3561691	total: 2.46s	remaining: 5.65s
91:	learn: 19.2462168	total: 2.5s	remaining: 5.64s
92:	learn: 19.1423750	total: 2.52s	remaining: 5.61s
93:	learn: 19.0313643	total: 2.54s	remaining: 5.58s
94:	learn: 18.9323468	total: 2.57s	remaining: 5.55s
95:	learn: 18.8504682	total: 2.59s	remaining: 5.51s
96:	learn: 18.7831778	total: 2.62s	remaining: 5.48s
97:	learn: 18.6811943	total: 2.64s	remaining: 5.45s
98:	learn: 18.5908821	total: 2.67s	remaining: 5.42s
99:	learn: 18.4714725	total: 2.69s	remaining: 5.39s
100:	learn: 18.4186226	total: 2.73s	remaining: 5.38s
101:	learn: 18.3174294	total: 2.75s	remaining: 5.34s
102:	learn: 18.2499823	total: 2.78s	remaining: 5.31s
103:	learn: 18.1797568	total: 2.8s	remaining: 5.28s
104:	learn: 18.0633880	total: 2.83s	remaining: 5.25s
105:	learn: 17.9230666	total: 2.85s	remaining: 5.22s
106:	learn: 17.8255078	total: 2.88s	remaining: 5.19s
107:	learn: 17.7301999	total: 2.9s	remaining: 5.16s
108:	learn: 17.6643624	total: 2.92s	remaining: 5.13s
109:	learn: 17.5888284	total: 2.96s	remaining: 5.11s
110:	learn: 17.4829166	total: 2.98s	remaining: 5.08s
111:	learn: 17.3884998	total: 3s	remaining: 5.04s
112:	learn: 17.3190040	total: 3.03s	remaining: 5.01s
113:	learn: 17.2327089	total: 3.05s	remaining: 4.98s
114:	learn: 17.1647683	total: 3.08s	remaining: 4.95s
115:	learn: 17.0566172	total: 3.1s	remaining: 4.92s
116:	learn: 16.9678905	total: 3.12s	remaining: 4.89s
117:	learn: 16.8708649	total: 3.15s	remaining: 4.86s
118:	learn: 16.8044407	total: 3.17s	remaining: 4.83s
119:	learn: 16.7826952	total: 3.21s	remaining: 4.81s
120:	learn: 16.6904252	total: 3.23s	remaining: 4.78s
121:	learn: 16.6389060	total: 3.26s	remaining: 4.75s
122:	learn: 16.6175863	total: 3.28s	remaining: 4.72s
123:	learn: 16.5491464	total: 3.31s	remaining: 4.7s
124:	learn: 16.4907928	total: 3.33s	remaining: 4.67s
125:	learn: 16.4498651	total: 3.36s	remaining: 4.64s
126:	learn: 16.3775502	total: 3.39s	remaining: 4.62s
127:	learn: 16.3075622	total: 3.42s	remaining: 4.59s
128:	learn: 16.2141203	total: 3.44s	remaining: 4.56s
129:	learn: 16.1287920	total: 3.46s	remaining: 4.53s
130:	learn: 15.9776702	total: 3.49s	remaining: 4.5s
131:	learn: 15.8957114	total: 3.51s	remaining: 4.47s
132:	learn: 15.8623913	total: 3.54s	remaining: 4.44s
133:	learn: 15.7410770	total: 3.56s	remaining: 4.41s
134:	learn: 15.6800520	total: 3.58s	remaining: 4.38s
135:	learn: 15.6327751	total: 3.62s	remaining: 4.37s
136:	learn: 15.5499724	total: 3.65s	remaining: 4.34s
137:	learn: 15.4431979	total: 3.67s	remaining: 4.31s
138:	learn: 15.3542910	total: 3.7s	remaining: 4.29s
139:	learn: 15.3024922	total: 3.72s	remaining: 4.26s
140:	learn: 15.2729651	total: 3.75s	remaining: 4.22s
141:	learn: 15.1606911	total: 3.77s	remaining: 4.2s
142:	learn: 15.0979047	total: 3.8s	remaining: 4.17s
143:	learn: 15.0141377	total: 3.83s	remaining: 4.15s
144:	learn: 14.9689028	total: 3.85s	remaining: 4.12s
145:	learn: 14.8925843	total: 3.88s	remaining: 4.09s
146:	learn: 14.8587722	total: 3.9s	remaining: 4.06s
147:	learn: 14.8360363	total: 3.92s	remaining: 4.03s
148:	learn: 14.7676016	total: 3.95s	remaining: 4s
149:	learn: 14.6736810	total: 3.97s	remaining: 3.97s
150:	learn: 14.6261132	total: 4s	remaining: 3.94s
151:	learn: 14.5723176	total: 4.03s	remaining: 3.93s
152:	learn: 14.5100088	total: 4.06s	remaining: 3.9s
153:	learn: 14.4025427	total: 4.08s	remaining: 3.87s
154:	learn: 14.3282038	total: 4.11s	remaining: 3.84s
155:	learn: 14.2672601	total: 4.13s	remaining: 3.81s
156:	learn: 14.1558952	total: 4.17s	remaining: 3.8s
157:	learn: 14.0328502	total: 4.2s	remaining: 3.77s
158:	learn: 13.9769510	total: 4.22s	remaining: 3.75s
159:	learn: 13.9259386	total: 4.25s	remaining: 3.72s
160:	learn: 13.8712208	total: 4.28s	remaining: 3.7s
161:	learn: 13.8553696	total: 4.31s	remaining: 3.67s
162:	learn: 13.7500608	total: 4.33s	remaining: 3.64s
163:	learn: 13.7258160	total: 4.36s	remaining: 3.62s
164:	learn: 13.6125019	total: 4.4s	remaining: 3.6s
165:	learn: 13.5681577	total: 4.42s	remaining: 3.57s
166:	learn: 13.5101392	total: 4.45s	remaining: 3.54s
167:	learn: 13.4944170	total: 4.49s	remaining: 3.53s
168:	learn: 13.4758510	total: 4.52s	remaining: 3.5s
169:	learn: 13.4513818	total: 4.54s	remaining: 3.48s
170:	learn: 13.3378793	total: 4.57s	remaining: 3.45s
171:	learn: 13.2934120	total: 4.6s	remaining: 3.42s
172:	learn: 13.2442661	total: 4.63s	remaining: 3.4s
173:	learn: 13.1852300	total: 4.66s	remaining: 3.38s
174:	learn: 13.0772632	total: 4.7s	remaining: 3.35s
175:	learn: 13.0402354	total: 4.73s	remaining: 3.33s
176:	learn: 13.0047433	total: 4.75s	remaining: 3.3s
177:	learn: 12.9303834	total: 4.78s	remaining: 3.28s
178:	learn: 12.8598436	total: 4.81s	remaining: 3.25s
179:	learn: 12.7990665	total: 4.83s	remaining: 3.22s
180:	learn: 12.7095636	total: 4.86s	remaining: 3.19s
181:	learn: 12.6340644	total: 4.9s	remaining: 3.17s
182:	learn: 12.5621624	total: 4.92s	remaining: 3.15s
183:	learn: 12.5354249	total: 4.96s	remaining: 3.13s
184:	learn: 12.4829336	total: 4.99s	remaining: 3.1s
185:	learn: 12.4529388	total: 5.02s	remaining: 3.08s
186:	learn: 12.3788317	total: 5.05s	remaining: 3.05s
187:	learn: 12.3037316	total: 5.08s	remaining: 3.02s
188:	learn: 12.1983493	total: 5.11s	remaining: 3s
189:	learn: 12.1711675	total: 5.13s	remaining: 2.97s
190:	learn: 12.1217733	total: 5.17s	remaining: 2.95s
191:	learn: 12.0832600	total: 5.2s	remaining: 2.93s
192:	learn: 12.0127028	total: 5.23s	remaining: 2.9s
193:	learn: 11.9255354	total: 5.26s	remaining: 2.87s
194:	learn: 11.8908213	total: 5.29s	remaining: 2.85s
195:	learn: 11.8443328	total: 5.31s	remaining: 2.82s
196:	learn: 11.8103191	total: 5.34s	remaining: 2.79s
197:	learn: 11.7696031	total: 5.38s	remaining: 2.77s
198:	learn: 11.7200811	total: 5.42s	remaining: 2.75s
199:	learn: 11.6551205	total: 5.44s	remaining: 2.72s
200:	learn: 11.6238265	total: 5.47s	remaining: 2.69s
201:	learn: 11.5225634	total: 5.5s	remaining: 2.67s
202:	learn: 11.4468078	total: 5.53s	remaining: 2.64s
203:	learn: 11.4143074	total: 5.55s	remaining: 2.61s
204:	learn: 11.3831537	total: 5.58s	remaining: 2.59s
205:	learn: 11.3559117	total: 5.61s	remaining: 2.56s
206:	learn: 11.3453635	total: 5.65s	remaining: 2.54s
207:	learn: 11.3023110	total: 5.68s	remaining: 2.51s
208:	learn: 11.2751825	total: 5.71s	remaining: 2.48s
209:	learn: 11.2454377	total: 5.73s	remaining: 2.46s
210:	learn: 11.2300814	total: 5.76s	remaining: 2.43s
211:	learn: 11.1739504	total: 5.79s	remaining: 2.4s
212:	learn: 11.1388920	total: 5.82s	remaining: 2.38s
213:	learn: 11.0933003	total: 5.86s	remaining: 2.35s
214:	learn: 11.0336421	total: 5.88s	remaining: 2.33s
215:	learn: 11.0041887	total: 5.92s	remaining: 2.3s
216:	learn: 10.9756683	total: 5.95s	remaining: 2.27s
217:	learn: 10.9622324	total: 5.97s	remaining: 2.25s
218:	learn: 10.9400379	total: 6s	remaining: 2.22s
219:	learn: 10.9122171	total: 6.04s	remaining: 2.19s
220:	learn: 10.8702127	total: 6.06s	remaining: 2.17s
221:	learn: 10.8384354	total: 6.09s	remaining: 2.14s
222:	learn: 10.8064597	total: 6.12s	remaining: 2.11s
223:	learn: 10.7753840	total: 6.15s	remaining: 2.09s
224:	learn: 10.7500544	total: 6.18s	remaining: 2.06s
225:	learn: 10.7000854	total: 6.21s	remaining: 2.03s
226:	learn: 10.6788968	total: 6.24s	remaining: 2s
227:	learn: 10.6541308	total: 6.27s	remaining: 1.98s
228:	learn: 10.6163808	total: 6.3s	remaining: 1.95s
229:	learn: 10.5664491	total: 6.33s	remaining: 1.93s
230:	learn: 10.5384259	total: 6.36s	remaining: 1.9s
231:	learn: 10.5168722	total: 6.39s	remaining: 1.87s
232:	learn: 10.4880672	total: 6.42s	remaining: 1.84s
233:	learn: 10.4528880	total: 6.45s	remaining: 1.82s
234:	learn: 10.4358848	total: 6.48s	remaining: 1.79s
235:	learn: 10.4043764	total: 6.51s	remaining: 1.76s
236:	learn: 10.3835177	total: 6.53s	remaining: 1.74s
237:	learn: 10.3564621	total: 6.56s	remaining: 1.71s
238:	learn: 10.3300698	total: 6.59s	remaining: 1.68s
239:	learn: 10.3072404	total: 6.61s	remaining: 1.65s
240:	learn: 10.2885220	total: 6.65s	remaining: 1.63s
241:	learn: 10.2801250	total: 6.69s	remaining: 1.6s
242:	learn: 10.2598176	total: 6.71s	remaining: 1.57s
243:	learn: 10.2300900	total: 6.74s	remaining: 1.55s
244:	learn: 10.2013001	total: 6.77s	remaining: 1.52s
245:	learn: 10.1581217	total: 6.8s	remaining: 1.49s
246:	learn: 10.1499441	total: 6.83s	remaining: 1.46s
247:	learn: 10.1216778	total: 6.85s	remaining: 1.44s
248:	learn: 10.0802136	total: 6.89s	remaining: 1.41s
249:	learn: 10.0644908	total: 6.92s	remaining: 1.38s
250:	learn: 10.0271888	total: 6.95s	remaining: 1.36s
251:	learn: 9.9585656	total: 6.98s	remaining: 1.33s
252:	learn: 9.9156424	total: 7s	remaining: 1.3s
253:	learn: 9.9015845	total: 7.03s	remaining: 1.27s
254:	learn: 9.8802631	total: 7.06s	remaining: 1.25s
255:	learn: 9.8637488	total: 7.09s	remaining: 1.22s
256:	learn: 9.8431359	total: 7.13s	remaining: 1.19s
257:	learn: 9.8100809	total: 7.16s	remaining: 1.17s
258:	learn: 9.7856290	total: 7.19s	remaining: 1.14s
259:	learn: 9.7684665	total: 7.21s	remaining: 1.11s
260:	learn: 9.7491274	total: 7.24s	remaining: 1.08s
261:	learn: 9.7290952	total: 7.27s	remaining: 1.05s
262:	learn: 9.6988988	total: 7.3s	remaining: 1.03s
263:	learn: 9.6731295	total: 7.33s	remaining: 999ms
264:	learn: 9.6511532	total: 7.36s	remaining: 972ms
265:	learn: 9.6215242	total: 7.39s	remaining: 945ms
266:	learn: 9.6028004	total: 7.42s	remaining: 918ms
267:	learn: 9.5849636	total: 7.45s	remaining: 890ms
268:	learn: 9.5537664	total: 7.48s	remaining: 862ms
269:	learn: 9.5330605	total: 7.51s	remaining: 834ms
270:	learn: 9.5181912	total: 7.53s	remaining: 806ms
271:	learn: 9.5123758	total: 7.57s	remaining: 779ms
272:	learn: 9.4832216	total: 7.6s	remaining: 751ms
273:	learn: 9.4638778	total: 7.63s	remaining: 724ms
274:	learn: 9.4456890	total: 7.66s	remaining: 696ms
275:	learn: 9.4163159	total: 7.69s	remaining: 668ms
276:	learn: 9.3823442	total: 7.71s	remaining: 640ms
277:	learn: 9.3549677	total: 7.74s	remaining: 613ms
278:	learn: 9.3386790	total: 7.77s	remaining: 585ms
279:	learn: 9.3273180	total: 7.8s	remaining: 557ms
280:	learn: 9.2861700	total: 7.83s	remaining: 529ms
281:	learn: 9.2564421	total: 7.86s	remaining: 502ms
282:	learn: 9.2362960	total: 7.89s	remaining: 474ms
283:	learn: 9.2213087	total: 7.92s	remaining: 446ms
284:	learn: 9.2137366	total: 7.95s	remaining: 418ms
285:	learn: 9.2036812	total: 7.98s	remaining: 391ms
286:	learn: 9.1880212	total: 8.01s	remaining: 363ms
287:	learn: 9.1753952	total: 8.04s	remaining: 335ms
288:	learn: 9.1502121	total: 8.06s	remaining: 307ms
289:	learn: 9.1346178	total: 8.09s	remaining: 279ms
290:	learn: 9.1221911	total: 8.13s	remaining: 251ms
291:	learn: 9.0950561	total: 8.15s	remaining: 223ms
292:	learn: 9.0742575	total: 8.19s	remaining: 196ms
293:	learn: 9.0466144	total: 8.22s	remaining: 168ms
294:	learn: 8.9886202	total: 8.25s	remaining: 140ms
295:	learn: 8.9467069	total: 8.27s	remaining: 112ms
296:	learn: 8.9265029	total: 8.3s	remaining: 83.8ms
297:	learn: 8.8995921	total: 8.33s	remaining: 55.9ms
298:	learn: 8.8813384	total: 8.36s	remaining: 28ms
299:	learn: 8.8736256	total: 8.39s	remaining: 0us
0:	learn: 46.8188846	total: 27.4ms	remaining: 8.2s
1:	learn: 45.9726402	total: 53.6ms	remaining: 7.98s
2:	learn: 45.2144460	total: 80ms	remaining: 7.92s
3:	learn: 44.2563351	total: 107ms	remaining: 7.93s
4:	learn: 43.5408994	total: 135ms	remaining: 7.97s
5:	learn: 42.8364810	total: 169ms	remaining: 8.27s
6:	learn: 42.0153804	total: 194ms	remaining: 8.14s
7:	learn: 41.5473671	total: 219ms	remaining: 7.98s
8:	learn: 40.7744756	total: 244ms	remaining: 7.88s
9:	learn: 40.1702554	total: 268ms	remaining: 7.78s
10:	learn: 39.4636842	total: 292ms	remaining: 7.67s
11:	learn: 38.8831049	total: 306ms	remaining: 7.34s
12:	learn: 38.5197723	total: 331ms	remaining: 7.31s
13:	learn: 38.1990585	total: 358ms	remaining: 7.31s
14:	learn: 37.6657989	total: 391ms	remaining: 7.42s
15:	learn: 37.2969732	total: 417ms	remaining: 7.41s
16:	learn: 36.8221350	total: 444ms	remaining: 7.4s
17:	learn: 36.2123369	total: 471ms	remaining: 7.37s
18:	learn: 35.8755271	total: 497ms	remaining: 7.35s
19:	learn: 35.4739707	total: 522ms	remaining: 7.3s
20:	learn: 35.0012472	total: 547ms	remaining: 7.27s
21:	learn: 34.6477631	total: 572ms	remaining: 7.23s
22:	learn: 34.2247055	total: 600ms	remaining: 7.22s
23:	learn: 33.8047150	total: 630ms	remaining: 7.24s
24:	learn: 33.3972078	total: 655ms	remaining: 7.21s
25:	learn: 32.8076440	total: 680ms	remaining: 7.17s
26:	learn: 32.4957574	total: 705ms	remaining: 7.13s
27:	learn: 32.1823910	total: 731ms	remaining: 7.1s
28:	learn: 31.8761156	total: 757ms	remaining: 7.07s
29:	learn: 31.6118984	total: 782ms	remaining: 7.04s
30:	learn: 31.2041248	total: 814ms	remaining: 7.06s
31:	learn: 30.9798718	total: 843ms	remaining: 7.06s
32:	learn: 30.6632137	total: 868ms	remaining: 7.02s
33:	learn: 30.3572185	total: 894ms	remaining: 6.99s
34:	learn: 30.0045459	total: 919ms	remaining: 6.96s
35:	learn: 29.7559980	total: 946ms	remaining: 6.94s
36:	learn: 29.3862349	total: 971ms	remaining: 6.9s
37:	learn: 29.1066177	total: 996ms	remaining: 6.86s
38:	learn: 28.8253904	total: 1.02s	remaining: 6.83s
39:	learn: 28.4917320	total: 1.05s	remaining: 6.82s
40:	learn: 28.2730169	total: 1.08s	remaining: 6.82s
41:	learn: 28.0652338	total: 1.1s	remaining: 6.78s
42:	learn: 27.8025307	total: 1.13s	remaining: 6.75s
43:	learn: 27.5627117	total: 1.15s	remaining: 6.72s
44:	learn: 27.3217632	total: 1.18s	remaining: 6.69s
45:	learn: 27.0112958	total: 1.21s	remaining: 6.65s
46:	learn: 26.8300808	total: 1.23s	remaining: 6.63s
47:	learn: 26.5816136	total: 1.26s	remaining: 6.6s
48:	learn: 26.3838749	total: 1.29s	remaining: 6.63s
49:	learn: 26.2191374	total: 1.32s	remaining: 6.6s
50:	learn: 26.0298048	total: 1.34s	remaining: 6.57s
51:	learn: 25.8685966	total: 1.37s	remaining: 6.54s
52:	learn: 25.5853885	total: 1.4s	remaining: 6.52s
53:	learn: 25.2325006	total: 1.42s	remaining: 6.49s
54:	learn: 25.0294895	total: 1.45s	remaining: 6.46s
55:	learn: 24.8123194	total: 1.48s	remaining: 6.44s
56:	learn: 24.6175769	total: 1.51s	remaining: 6.44s
57:	learn: 24.4799104	total: 1.53s	remaining: 6.41s
58:	learn: 24.2874293	total: 1.56s	remaining: 6.37s
59:	learn: 24.0996038	total: 1.58s	remaining: 6.34s
60:	learn: 23.8568310	total: 1.61s	remaining: 6.31s
61:	learn: 23.6508912	total: 1.63s	remaining: 6.27s
62:	learn: 23.4201097	total: 1.66s	remaining: 6.24s
63:	learn: 23.1941561	total: 1.69s	remaining: 6.22s
64:	learn: 23.0619226	total: 1.72s	remaining: 6.22s
65:	learn: 22.9049921	total: 1.75s	remaining: 6.2s
66:	learn: 22.7833057	total: 1.77s	remaining: 6.17s
67:	learn: 22.6428922	total: 1.8s	remaining: 6.14s
68:	learn: 22.4738494	total: 1.82s	remaining: 6.11s
69:	learn: 22.3126837	total: 1.85s	remaining: 6.08s
70:	learn: 22.1934569	total: 1.88s	remaining: 6.06s
71:	learn: 21.9921513	total: 1.91s	remaining: 6.04s
72:	learn: 21.7966100	total: 1.93s	remaining: 6.02s
73:	learn: 21.6703669	total: 1.96s	remaining: 5.98s
74:	learn: 21.5517108	total: 1.99s	remaining: 5.96s
75:	learn: 21.3795499	total: 2.01s	remaining: 5.92s
76:	learn: 21.2321877	total: 2.03s	remaining: 5.89s
77:	learn: 21.0921581	total: 2.06s	remaining: 5.86s
78:	learn: 20.9204877	total: 2.08s	remaining: 5.83s
79:	learn: 20.7078986	total: 2.11s	remaining: 5.8s
80:	learn: 20.6069210	total: 2.14s	remaining: 5.79s
81:	learn: 20.3718639	total: 2.17s	remaining: 5.76s
82:	learn: 20.2660046	total: 2.19s	remaining: 5.73s
83:	learn: 20.1453571	total: 2.22s	remaining: 5.71s
84:	learn: 20.0303912	total: 2.24s	remaining: 5.67s
85:	learn: 19.9530417	total: 2.27s	remaining: 5.64s
86:	learn: 19.8719239	total: 2.29s	remaining: 5.61s
87:	learn: 19.8051193	total: 2.32s	remaining: 5.58s
88:	learn: 19.6390791	total: 2.34s	remaining: 5.56s
89:	learn: 19.5163125	total: 2.35s	remaining: 5.48s
90:	learn: 19.3820098	total: 2.38s	remaining: 5.46s
91:	learn: 19.2634584	total: 2.4s	remaining: 5.43s
92:	learn: 19.1877570	total: 2.42s	remaining: 5.4s
93:	learn: 19.1136222	total: 2.45s	remaining: 5.37s
94:	learn: 19.0378846	total: 2.47s	remaining: 5.33s
95:	learn: 18.9699092	total: 2.5s	remaining: 5.31s
96:	learn: 18.8750815	total: 2.52s	remaining: 5.28s
97:	learn: 18.7851544	total: 2.54s	remaining: 5.25s
98:	learn: 18.6886359	total: 2.58s	remaining: 5.23s
99:	learn: 18.5967562	total: 2.6s	remaining: 5.2s
100:	learn: 18.5134464	total: 2.63s	remaining: 5.17s
101:	learn: 18.4449133	total: 2.65s	remaining: 5.14s
102:	learn: 18.3604967	total: 2.67s	remaining: 5.12s
103:	learn: 18.2256969	total: 2.7s	remaining: 5.09s
104:	learn: 18.1523158	total: 2.72s	remaining: 5.06s
105:	learn: 18.0374485	total: 2.75s	remaining: 5.03s
106:	learn: 17.9731649	total: 2.77s	remaining: 5s
107:	learn: 17.9251416	total: 2.79s	remaining: 4.97s
108:	learn: 17.8617656	total: 2.83s	remaining: 4.95s
109:	learn: 17.7727167	total: 2.85s	remaining: 4.92s
110:	learn: 17.6826822	total: 2.87s	remaining: 4.89s
111:	learn: 17.5769208	total: 2.9s	remaining: 4.86s
112:	learn: 17.4884222	total: 2.92s	remaining: 4.83s
113:	learn: 17.3765888	total: 2.95s	remaining: 4.81s
114:	learn: 17.3037030	total: 2.97s	remaining: 4.78s
115:	learn: 17.2153950	total: 3s	remaining: 4.75s
116:	learn: 17.1490540	total: 3.02s	remaining: 4.72s
117:	learn: 17.0634815	total: 3.05s	remaining: 4.71s
118:	learn: 16.9513537	total: 3.08s	remaining: 4.68s
119:	learn: 16.8224657	total: 3.1s	remaining: 4.66s
120:	learn: 16.7342682	total: 3.13s	remaining: 4.63s
121:	learn: 16.6438712	total: 3.15s	remaining: 4.6s
122:	learn: 16.5473010	total: 3.18s	remaining: 4.57s
123:	learn: 16.4734305	total: 3.2s	remaining: 4.54s
124:	learn: 16.3442257	total: 3.23s	remaining: 4.51s
125:	learn: 16.2501040	total: 3.25s	remaining: 4.49s
126:	learn: 16.1413869	total: 3.28s	remaining: 4.47s
127:	learn: 16.0650386	total: 3.3s	remaining: 4.44s
128:	learn: 15.9654002	total: 3.33s	remaining: 4.41s
129:	learn: 15.9016632	total: 3.35s	remaining: 4.38s
130:	learn: 15.8386094	total: 3.38s	remaining: 4.36s
131:	learn: 15.7695128	total: 3.4s	remaining: 4.33s
132:	learn: 15.6863810	total: 3.43s	remaining: 4.3s
133:	learn: 15.6014453	total: 3.45s	remaining: 4.27s
134:	learn: 15.5533660	total: 3.48s	remaining: 4.26s
135:	learn: 15.4234281	total: 3.51s	remaining: 4.23s
136:	learn: 15.3971004	total: 3.54s	remaining: 4.21s
137:	learn: 15.3398975	total: 3.56s	remaining: 4.18s
138:	learn: 15.2689760	total: 3.58s	remaining: 4.15s
139:	learn: 15.1651925	total: 3.61s	remaining: 4.13s
140:	learn: 15.1125683	total: 3.63s	remaining: 4.1s
141:	learn: 15.0573442	total: 3.66s	remaining: 4.07s
142:	learn: 15.0129880	total: 3.69s	remaining: 4.05s
143:	learn: 14.9597237	total: 3.71s	remaining: 4.02s
144:	learn: 14.9235224	total: 3.74s	remaining: 4s
145:	learn: 14.8333558	total: 3.76s	remaining: 3.97s
146:	learn: 14.7273903	total: 3.79s	remaining: 3.94s
147:	learn: 14.6622611	total: 3.81s	remaining: 3.91s
148:	learn: 14.5908471	total: 3.83s	remaining: 3.88s
149:	learn: 14.5076303	total: 3.87s	remaining: 3.87s
150:	learn: 14.4133074	total: 3.9s	remaining: 3.85s
151:	learn: 14.3479884	total: 3.94s	remaining: 3.83s
152:	learn: 14.2884168	total: 3.96s	remaining: 3.81s
153:	learn: 14.2238756	total: 3.99s	remaining: 3.78s
154:	learn: 14.1598526	total: 4.02s	remaining: 3.76s
155:	learn: 14.1006242	total: 4.04s	remaining: 3.73s
156:	learn: 14.0116182	total: 4.07s	remaining: 3.71s
157:	learn: 13.9456796	total: 4.1s	remaining: 3.68s
158:	learn: 13.8579899	total: 4.13s	remaining: 3.66s
159:	learn: 13.8094183	total: 4.17s	remaining: 3.65s
160:	learn: 13.6558280	total: 4.2s	remaining: 3.62s
161:	learn: 13.5837377	total: 4.22s	remaining: 3.6s
162:	learn: 13.5105749	total: 4.25s	remaining: 3.57s
163:	learn: 13.3959486	total: 4.27s	remaining: 3.54s
164:	learn: 13.3427701	total: 4.3s	remaining: 3.52s
165:	learn: 13.2742960	total: 4.33s	remaining: 3.5s
166:	learn: 13.2232946	total: 4.36s	remaining: 3.47s
167:	learn: 13.1639434	total: 4.4s	remaining: 3.46s
168:	learn: 13.1001998	total: 4.43s	remaining: 3.44s
169:	learn: 13.0187776	total: 4.46s	remaining: 3.41s
170:	learn: 12.9284509	total: 4.49s	remaining: 3.39s
171:	learn: 12.8564085	total: 4.51s	remaining: 3.36s
172:	learn: 12.7786756	total: 4.54s	remaining: 3.33s
173:	learn: 12.7404900	total: 4.57s	remaining: 3.31s
174:	learn: 12.6844545	total: 4.6s	remaining: 3.29s
175:	learn: 12.6021043	total: 4.63s	remaining: 3.26s
176:	learn: 12.5809817	total: 4.66s	remaining: 3.24s
177:	learn: 12.5380271	total: 4.69s	remaining: 3.21s
178:	learn: 12.5044811	total: 4.72s	remaining: 3.19s
179:	learn: 12.3824039	total: 4.74s	remaining: 3.16s
180:	learn: 12.3163074	total: 4.77s	remaining: 3.14s
181:	learn: 12.2260642	total: 4.81s	remaining: 3.12s
182:	learn: 12.1962262	total: 4.84s	remaining: 3.09s
183:	learn: 12.1075043	total: 4.87s	remaining: 3.07s
184:	learn: 12.0299051	total: 4.9s	remaining: 3.05s
185:	learn: 11.9750127	total: 4.93s	remaining: 3.02s
186:	learn: 11.9007112	total: 4.96s	remaining: 3s
187:	learn: 11.8169703	total: 4.99s	remaining: 2.97s
188:	learn: 11.7451722	total: 5.02s	remaining: 2.95s
189:	learn: 11.6844013	total: 5.04s	remaining: 2.92s
190:	learn: 11.5844322	total: 5.07s	remaining: 2.89s
191:	learn: 11.5389707	total: 5.1s	remaining: 2.87s
192:	learn: 11.4989050	total: 5.13s	remaining: 2.84s
193:	learn: 11.4305771	total: 5.16s	remaining: 2.82s
194:	learn: 11.3188820	total: 5.19s	remaining: 2.79s
195:	learn: 11.2915156	total: 5.22s	remaining: 2.77s
196:	learn: 11.2329580	total: 5.25s	remaining: 2.75s
197:	learn: 11.1759941	total: 5.28s	remaining: 2.72s
198:	learn: 11.1562433	total: 5.31s	remaining: 2.69s
199:	learn: 11.1118627	total: 5.34s	remaining: 2.67s
200:	learn: 11.0908712	total: 5.36s	remaining: 2.64s
201:	learn: 11.0365972	total: 5.4s	remaining: 2.62s
202:	learn: 10.9633932	total: 5.43s	remaining: 2.59s
203:	learn: 10.8837891	total: 5.46s	remaining: 2.57s
204:	learn: 10.8038584	total: 5.49s	remaining: 2.54s
205:	learn: 10.7729034	total: 5.51s	remaining: 2.52s
206:	learn: 10.7289468	total: 5.54s	remaining: 2.49s
207:	learn: 10.6734340	total: 5.57s	remaining: 2.46s
208:	learn: 10.6482350	total: 5.59s	remaining: 2.44s
209:	learn: 10.5975506	total: 5.63s	remaining: 2.41s
210:	learn: 10.5528228	total: 5.66s	remaining: 2.39s
211:	learn: 10.5370360	total: 5.7s	remaining: 2.36s
212:	learn: 10.5230215	total: 5.72s	remaining: 2.34s
213:	learn: 10.4857244	total: 5.75s	remaining: 2.31s
214:	learn: 10.4212276	total: 5.78s	remaining: 2.28s
215:	learn: 10.4085529	total: 5.8s	remaining: 2.26s
216:	learn: 10.3355719	total: 5.83s	remaining: 2.23s
217:	learn: 10.2785284	total: 5.86s	remaining: 2.2s
218:	learn: 10.2125565	total: 5.89s	remaining: 2.18s
219:	learn: 10.1797782	total: 5.93s	remaining: 2.15s
220:	learn: 10.1530157	total: 5.95s	remaining: 2.13s
221:	learn: 10.1300360	total: 5.98s	remaining: 2.1s
222:	learn: 10.1168807	total: 6.01s	remaining: 2.07s
223:	learn: 10.0969154	total: 6.03s	remaining: 2.05s
224:	learn: 10.0800220	total: 6.06s	remaining: 2.02s
225:	learn: 10.0495195	total: 6.09s	remaining: 1.99s
226:	learn: 10.0130864	total: 6.12s	remaining: 1.97s
227:	learn: 9.9733051	total: 6.16s	remaining: 1.95s
228:	learn: 9.9186624	total: 6.19s	remaining: 1.92s
229:	learn: 9.8408517	total: 6.21s	remaining: 1.89s
230:	learn: 9.8020626	total: 6.25s	remaining: 1.86s
231:	learn: 9.7754447	total: 6.27s	remaining: 1.84s
232:	learn: 9.7642804	total: 6.3s	remaining: 1.81s
233:	learn: 9.7368568	total: 6.33s	remaining: 1.78s
234:	learn: 9.7056387	total: 6.37s	remaining: 1.76s
235:	learn: 9.6936392	total: 6.39s	remaining: 1.73s
236:	learn: 9.6470411	total: 6.42s	remaining: 1.71s
237:	learn: 9.5906698	total: 6.45s	remaining: 1.68s
238:	learn: 9.5416290	total: 6.47s	remaining: 1.65s
239:	learn: 9.5255228	total: 6.5s	remaining: 1.63s
240:	learn: 9.4529465	total: 6.53s	remaining: 1.6s
241:	learn: 9.4106807	total: 6.56s	remaining: 1.57s
242:	learn: 9.3728828	total: 6.59s	remaining: 1.55s
243:	learn: 9.3399456	total: 6.63s	remaining: 1.52s
244:	learn: 9.3118951	total: 6.66s	remaining: 1.5s
245:	learn: 9.3005486	total: 6.7s	remaining: 1.47s
246:	learn: 9.2903549	total: 6.73s	remaining: 1.44s
247:	learn: 9.2453982	total: 6.75s	remaining: 1.42s
248:	learn: 9.2340791	total: 6.78s	remaining: 1.39s
249:	learn: 9.2022569	total: 6.82s	remaining: 1.36s
250:	learn: 9.1782703	total: 6.85s	remaining: 1.34s
251:	learn: 9.1383043	total: 6.88s	remaining: 1.31s
252:	learn: 9.1021623	total: 6.91s	remaining: 1.28s
253:	learn: 9.0892727	total: 6.94s	remaining: 1.26s
254:	learn: 9.0521468	total: 6.97s	remaining: 1.23s
255:	learn: 9.0384933	total: 7s	remaining: 1.2s
256:	learn: 9.0063168	total: 7.02s	remaining: 1.18s
257:	learn: 8.9956277	total: 7.06s	remaining: 1.15s
258:	learn: 8.9496921	total: 7.09s	remaining: 1.12s
259:	learn: 8.9036568	total: 7.12s	remaining: 1.1s
260:	learn: 8.8936773	total: 7.15s	remaining: 1.07s
261:	learn: 8.8516187	total: 7.18s	remaining: 1.04s
262:	learn: 8.8136929	total: 7.21s	remaining: 1.01s
263:	learn: 8.7857931	total: 7.24s	remaining: 987ms
264:	learn: 8.7542759	total: 7.27s	remaining: 960ms
265:	learn: 8.7388965	total: 7.3s	remaining: 933ms
266:	learn: 8.7298188	total: 7.32s	remaining: 905ms
267:	learn: 8.7213757	total: 7.35s	remaining: 878ms
268:	learn: 8.6906438	total: 7.38s	remaining: 851ms
269:	learn: 8.6693053	total: 7.41s	remaining: 823ms
270:	learn: 8.6470936	total: 7.44s	remaining: 796ms
271:	learn: 8.6096396	total: 7.48s	remaining: 770ms
272:	learn: 8.5746539	total: 7.51s	remaining: 742ms
273:	learn: 8.5560630	total: 7.53s	remaining: 715ms
274:	learn: 8.5399246	total: 7.56s	remaining: 688ms
275:	learn: 8.4986755	total: 7.59s	remaining: 660ms
276:	learn: 8.4692322	total: 7.62s	remaining: 633ms
277:	learn: 8.4447901	total: 7.65s	remaining: 605ms
278:	learn: 8.4280272	total: 7.68s	remaining: 578ms
279:	learn: 8.3947119	total: 7.71s	remaining: 551ms
280:	learn: 8.3554975	total: 7.74s	remaining: 523ms
281:	learn: 8.3221566	total: 7.76s	remaining: 496ms
282:	learn: 8.3131827	total: 7.79s	remaining: 468ms
283:	learn: 8.2891313	total: 7.82s	remaining: 441ms
284:	learn: 8.2839105	total: 7.84s	remaining: 413ms
285:	learn: 8.2757450	total: 7.88s	remaining: 386ms
286:	learn: 8.2388411	total: 7.92s	remaining: 359ms
287:	learn: 8.2074603	total: 7.95s	remaining: 331ms
288:	learn: 8.1701839	total: 7.98s	remaining: 304ms
289:	learn: 8.1498646	total: 8s	remaining: 276ms
290:	learn: 8.1195237	total: 8.03s	remaining: 248ms
291:	learn: 8.0995089	total: 8.06s	remaining: 221ms
292:	learn: 8.0775287	total: 8.09s	remaining: 193ms
293:	learn: 8.0527267	total: 8.13s	remaining: 166ms
294:	learn: 8.0201604	total: 8.15s	remaining: 138ms
295:	learn: 8.0106207	total: 8.18s	remaining: 111ms
296:	learn: 7.9693660	total: 8.21s	remaining: 82.9ms
297:	learn: 7.9463481	total: 8.23s	remaining: 55.3ms
298:	learn: 7.9254902	total: 8.26s	remaining: 27.6ms
299:	learn: 7.9210391	total: 8.28s	remaining: 0us
0:	learn: 27.6737479	total: 25.1ms	remaining: 7.51s
1:	learn: 27.3204154	total: 49.4ms	remaining: 7.37s
2:	learn: 26.9091890	total: 81.6ms	remaining: 8.08s
3:	learn: 26.4875027	total: 104ms	remaining: 7.71s
4:	learn: 26.1185303	total: 106ms	remaining: 6.27s
5:	learn: 25.8552625	total: 128ms	remaining: 6.29s
6:	learn: 25.5259340	total: 157ms	remaining: 6.57s
7:	learn: 25.1594330	total: 186ms	remaining: 6.78s
8:	learn: 24.8131787	total: 209ms	remaining: 6.76s
9:	learn: 24.5107101	total: 233ms	remaining: 6.77s
10:	learn: 24.1382533	total: 256ms	remaining: 6.72s
11:	learn: 23.9059068	total: 278ms	remaining: 6.67s
12:	learn: 23.5820314	total: 302ms	remaining: 6.66s
13:	learn: 23.2566481	total: 332ms	remaining: 6.79s
14:	learn: 22.9720100	total: 356ms	remaining: 6.77s
15:	learn: 22.6458045	total: 382ms	remaining: 6.77s
16:	learn: 22.3310792	total: 417ms	remaining: 6.94s
17:	learn: 22.0614254	total: 444ms	remaining: 6.96s
18:	learn: 21.8674093	total: 469ms	remaining: 6.94s
19:	learn: 21.6777228	total: 495ms	remaining: 6.92s
20:	learn: 21.4758843	total: 519ms	remaining: 6.89s
21:	learn: 21.2015722	total: 541ms	remaining: 6.83s
22:	learn: 20.9741180	total: 565ms	remaining: 6.81s
23:	learn: 20.8103315	total: 602ms	remaining: 6.92s
24:	learn: 20.6059519	total: 628ms	remaining: 6.9s
25:	learn: 20.3003482	total: 651ms	remaining: 6.87s
26:	learn: 20.1047051	total: 674ms	remaining: 6.82s
27:	learn: 19.9117545	total: 697ms	remaining: 6.77s
28:	learn: 19.7508802	total: 720ms	remaining: 6.73s
29:	learn: 19.5995500	total: 743ms	remaining: 6.68s
30:	learn: 19.4265011	total: 767ms	remaining: 6.66s
31:	learn: 19.2507253	total: 793ms	remaining: 6.64s
32:	learn: 19.0780638	total: 833ms	remaining: 6.74s
33:	learn: 18.8739495	total: 858ms	remaining: 6.71s
34:	learn: 18.6951687	total: 883ms	remaining: 6.69s
35:	learn: 18.5423419	total: 910ms	remaining: 6.67s
36:	learn: 18.3650169	total: 934ms	remaining: 6.64s
37:	learn: 18.1741271	total: 958ms	remaining: 6.6s
38:	learn: 18.0512035	total: 982ms	remaining: 6.57s
39:	learn: 17.9045476	total: 1.01s	remaining: 6.56s
40:	learn: 17.7669779	total: 1.04s	remaining: 6.56s
41:	learn: 17.6440484	total: 1.06s	remaining: 6.52s
42:	learn: 17.4832065	total: 1.09s	remaining: 6.53s
43:	learn: 17.3307814	total: 1.11s	remaining: 6.49s
44:	learn: 17.1968371	total: 1.14s	remaining: 6.46s
45:	learn: 17.0551367	total: 1.16s	remaining: 6.42s
46:	learn: 16.9663187	total: 1.19s	remaining: 6.38s
47:	learn: 16.8379611	total: 1.21s	remaining: 6.36s
48:	learn: 16.7219020	total: 1.24s	remaining: 6.37s
49:	learn: 16.6155465	total: 1.27s	remaining: 6.35s
50:	learn: 16.5139205	total: 1.29s	remaining: 6.33s
51:	learn: 16.3531147	total: 1.3s	remaining: 6.21s
52:	learn: 16.2763831	total: 1.33s	remaining: 6.18s
53:	learn: 16.1694133	total: 1.36s	remaining: 6.19s
54:	learn: 16.0589004	total: 1.38s	remaining: 6.16s
55:	learn: 15.9660704	total: 1.41s	remaining: 6.13s
56:	learn: 15.8765659	total: 1.44s	remaining: 6.14s
57:	learn: 15.7724924	total: 1.47s	remaining: 6.11s
58:	learn: 15.6865252	total: 1.49s	remaining: 6.09s
59:	learn: 15.6055417	total: 1.51s	remaining: 6.06s
60:	learn: 15.5264778	total: 1.54s	remaining: 6.03s
61:	learn: 15.4370145	total: 1.56s	remaining: 6s
62:	learn: 15.3562945	total: 1.58s	remaining: 5.96s
63:	learn: 15.2817484	total: 1.61s	remaining: 5.95s
64:	learn: 15.1941732	total: 1.64s	remaining: 5.93s
65:	learn: 15.1049991	total: 1.67s	remaining: 5.93s
66:	learn: 15.0359663	total: 1.7s	remaining: 5.91s
67:	learn: 14.9351417	total: 1.72s	remaining: 5.88s
68:	learn: 14.8495497	total: 1.75s	remaining: 5.86s
69:	learn: 14.7623093	total: 1.78s	remaining: 5.83s
70:	learn: 14.6771574	total: 1.8s	remaining: 5.8s
71:	learn: 14.5978140	total: 1.82s	remaining: 5.77s
72:	learn: 14.5375886	total: 1.85s	remaining: 5.77s
73:	learn: 14.4649353	total: 1.88s	remaining: 5.75s
74:	learn: 14.4009644	total: 1.91s	remaining: 5.74s
75:	learn: 14.3287275	total: 1.94s	remaining: 5.7s
76:	learn: 14.2318571	total: 1.96s	remaining: 5.68s
77:	learn: 14.1625701	total: 1.98s	remaining: 5.64s
78:	learn: 14.0644282	total: 2.01s	remaining: 5.62s
79:	learn: 13.9762883	total: 2.03s	remaining: 5.58s
80:	learn: 13.9042920	total: 2.05s	remaining: 5.55s
81:	learn: 13.8176535	total: 2.08s	remaining: 5.53s
82:	learn: 13.6910849	total: 2.11s	remaining: 5.53s
83:	learn: 13.5737570	total: 2.14s	remaining: 5.51s
84:	learn: 13.5049845	total: 2.17s	remaining: 5.48s
85:	learn: 13.4341145	total: 2.19s	remaining: 5.46s
86:	learn: 13.3796196	total: 2.22s	remaining: 5.43s
87:	learn: 13.3024352	total: 2.24s	remaining: 5.4s
88:	learn: 13.2435566	total: 2.27s	remaining: 5.37s
89:	learn: 13.1910369	total: 2.29s	remaining: 5.34s
90:	learn: 13.1471565	total: 2.31s	remaining: 5.31s
91:	learn: 13.0611063	total: 2.34s	remaining: 5.29s
92:	learn: 12.9909112	total: 2.38s	remaining: 5.29s
93:	learn: 12.9355316	total: 2.4s	remaining: 5.26s
94:	learn: 12.8561480	total: 2.42s	remaining: 5.23s
95:	learn: 12.7929803	total: 2.45s	remaining: 5.2s
96:	learn: 12.7262412	total: 2.47s	remaining: 5.17s
97:	learn: 12.6739210	total: 2.5s	remaining: 5.14s
98:	learn: 12.6265593	total: 2.52s	remaining: 5.11s
99:	learn: 12.5594247	total: 2.54s	remaining: 5.09s
100:	learn: 12.4986691	total: 2.57s	remaining: 5.06s
101:	learn: 12.4471027	total: 2.6s	remaining: 5.05s
102:	learn: 12.3962782	total: 2.64s	remaining: 5.05s
103:	learn: 12.3424090	total: 2.66s	remaining: 5.02s
104:	learn: 12.2660971	total: 2.69s	remaining: 4.99s
105:	learn: 12.2042689	total: 2.71s	remaining: 4.97s
106:	learn: 12.1363044	total: 2.74s	remaining: 4.94s
107:	learn: 12.1022229	total: 2.76s	remaining: 4.91s
108:	learn: 12.0491052	total: 2.79s	remaining: 4.88s
109:	learn: 11.9900598	total: 2.81s	remaining: 4.86s
110:	learn: 11.9411055	total: 2.84s	remaining: 4.84s
111:	learn: 11.8782485	total: 2.87s	remaining: 4.83s
112:	learn: 11.8248797	total: 2.9s	remaining: 4.8s
113:	learn: 11.7750338	total: 2.92s	remaining: 4.77s
114:	learn: 11.7390791	total: 2.94s	remaining: 4.74s
115:	learn: 11.6795857	total: 2.97s	remaining: 4.71s
116:	learn: 11.5948258	total: 2.99s	remaining: 4.68s
117:	learn: 11.5598943	total: 3.02s	remaining: 4.65s
118:	learn: 11.4992434	total: 3.05s	remaining: 4.64s
119:	learn: 11.4491317	total: 3.07s	remaining: 4.61s
120:	learn: 11.3929630	total: 3.1s	remaining: 4.58s
121:	learn: 11.3373664	total: 3.13s	remaining: 4.57s
122:	learn: 11.2805890	total: 3.15s	remaining: 4.54s
123:	learn: 11.2341228	total: 3.18s	remaining: 4.51s
124:	learn: 11.1615505	total: 3.2s	remaining: 4.48s
125:	learn: 11.1024523	total: 3.23s	remaining: 4.46s
126:	learn: 11.0710084	total: 3.25s	remaining: 4.43s
127:	learn: 11.0251377	total: 3.28s	remaining: 4.41s
128:	learn: 10.9884605	total: 3.31s	remaining: 4.38s
129:	learn: 10.9584488	total: 3.33s	remaining: 4.35s
130:	learn: 10.8995848	total: 3.35s	remaining: 4.32s
131:	learn: 10.8549250	total: 3.38s	remaining: 4.3s
132:	learn: 10.8113067	total: 3.41s	remaining: 4.28s
133:	learn: 10.7553419	total: 3.43s	remaining: 4.25s
134:	learn: 10.7096544	total: 3.45s	remaining: 4.22s
135:	learn: 10.6757190	total: 3.49s	remaining: 4.2s
136:	learn: 10.6327685	total: 3.51s	remaining: 4.18s
137:	learn: 10.5902988	total: 3.54s	remaining: 4.15s
138:	learn: 10.5467376	total: 3.56s	remaining: 4.13s
139:	learn: 10.5163592	total: 3.59s	remaining: 4.1s
140:	learn: 10.4694138	total: 3.61s	remaining: 4.07s
141:	learn: 10.4359855	total: 3.64s	remaining: 4.05s
142:	learn: 10.4057439	total: 3.67s	remaining: 4.03s
143:	learn: 10.3729240	total: 3.69s	remaining: 4s
144:	learn: 10.3359301	total: 3.72s	remaining: 3.98s
145:	learn: 10.2697670	total: 3.75s	remaining: 3.95s
146:	learn: 10.2094154	total: 3.77s	remaining: 3.92s
147:	learn: 10.1600330	total: 3.8s	remaining: 3.9s
148:	learn: 10.1308425	total: 3.82s	remaining: 3.87s
149:	learn: 10.0855107	total: 3.84s	remaining: 3.84s
150:	learn: 10.0385460	total: 3.88s	remaining: 3.83s
151:	learn: 10.0087773	total: 3.9s	remaining: 3.8s
152:	learn: 9.9793744	total: 3.94s	remaining: 3.78s
153:	learn: 9.9525485	total: 3.96s	remaining: 3.75s
154:	learn: 9.9079941	total: 3.98s	remaining: 3.73s
155:	learn: 9.8778723	total: 4.01s	remaining: 3.7s
156:	learn: 9.8246060	total: 4.04s	remaining: 3.68s
157:	learn: 9.7894878	total: 4.06s	remaining: 3.65s
158:	learn: 9.7484967	total: 4.08s	remaining: 3.62s
159:	learn: 9.7248391	total: 4.11s	remaining: 3.59s
160:	learn: 9.7014264	total: 4.14s	remaining: 3.58s
161:	learn: 9.6583834	total: 4.17s	remaining: 3.55s
162:	learn: 9.6144299	total: 4.19s	remaining: 3.52s
163:	learn: 9.5794995	total: 4.21s	remaining: 3.49s
164:	learn: 9.5550633	total: 4.24s	remaining: 3.47s
165:	learn: 9.5026632	total: 4.26s	remaining: 3.44s
166:	learn: 9.4633969	total: 4.29s	remaining: 3.41s
167:	learn: 9.4104818	total: 4.31s	remaining: 3.38s
168:	learn: 9.3845831	total: 4.34s	remaining: 3.36s
169:	learn: 9.3337722	total: 4.37s	remaining: 3.34s
170:	learn: 9.2837197	total: 4.4s	remaining: 3.32s
171:	learn: 9.2466766	total: 4.42s	remaining: 3.29s
172:	learn: 9.2085127	total: 4.45s	remaining: 3.27s
173:	learn: 9.1694480	total: 4.47s	remaining: 3.24s
174:	learn: 9.1448907	total: 4.5s	remaining: 3.21s
175:	learn: 9.1013106	total: 4.52s	remaining: 3.19s
176:	learn: 9.0696815	total: 4.55s	remaining: 3.16s
177:	learn: 9.0279616	total: 4.58s	remaining: 3.14s
178:	learn: 9.0008978	total: 4.6s	remaining: 3.11s
179:	learn: 8.9449905	total: 4.63s	remaining: 3.08s
180:	learn: 8.9263735	total: 4.66s	remaining: 3.06s
181:	learn: 8.9082117	total: 4.68s	remaining: 3.04s
182:	learn: 8.8590211	total: 4.71s	remaining: 3.01s
183:	learn: 8.8398014	total: 4.73s	remaining: 2.98s
184:	learn: 8.7991374	total: 4.75s	remaining: 2.96s
185:	learn: 8.7574091	total: 4.78s	remaining: 2.93s
186:	learn: 8.7075149	total: 4.82s	remaining: 2.91s
187:	learn: 8.6651276	total: 4.84s	remaining: 2.88s
188:	learn: 8.6299124	total: 4.87s	remaining: 2.86s
189:	learn: 8.6039208	total: 4.89s	remaining: 2.83s
190:	learn: 8.5623097	total: 4.92s	remaining: 2.81s
191:	learn: 8.5109100	total: 4.95s	remaining: 2.78s
192:	learn: 8.4793653	total: 4.97s	remaining: 2.76s
193:	learn: 8.4481462	total: 5s	remaining: 2.73s
194:	learn: 8.4315766	total: 5.03s	remaining: 2.71s
195:	learn: 8.3834417	total: 5.05s	remaining: 2.68s
196:	learn: 8.3680774	total: 5.07s	remaining: 2.65s
197:	learn: 8.3496623	total: 5.09s	remaining: 2.62s
198:	learn: 8.3148580	total: 5.12s	remaining: 2.6s
199:	learn: 8.3052914	total: 5.15s	remaining: 2.57s
200:	learn: 8.2594410	total: 5.17s	remaining: 2.55s
201:	learn: 8.2470590	total: 5.19s	remaining: 2.52s
202:	learn: 8.2316760	total: 5.22s	remaining: 2.49s
203:	learn: 8.2041569	total: 5.25s	remaining: 2.47s
204:	learn: 8.1708835	total: 5.28s	remaining: 2.45s
205:	learn: 8.1301413	total: 5.3s	remaining: 2.42s
206:	learn: 8.0986826	total: 5.33s	remaining: 2.39s
207:	learn: 8.0741059	total: 5.35s	remaining: 2.37s
208:	learn: 8.0244528	total: 5.38s	remaining: 2.34s
209:	learn: 7.9989744	total: 5.41s	remaining: 2.32s
210:	learn: 7.9696573	total: 5.44s	remaining: 2.29s
211:	learn: 7.9396203	total: 5.46s	remaining: 2.27s
212:	learn: 7.9111124	total: 5.49s	remaining: 2.24s
213:	learn: 7.9007758	total: 5.51s	remaining: 2.21s
214:	learn: 7.8856958	total: 5.53s	remaining: 2.19s
215:	learn: 7.8685173	total: 5.56s	remaining: 2.16s
216:	learn: 7.8488503	total: 5.58s	remaining: 2.13s
217:	learn: 7.8127011	total: 5.6s	remaining: 2.11s
218:	learn: 7.7610464	total: 5.63s	remaining: 2.08s
219:	learn: 7.7371633	total: 5.65s	remaining: 2.06s
220:	learn: 7.7075772	total: 5.69s	remaining: 2.03s
221:	learn: 7.6862440	total: 5.71s	remaining: 2.01s
222:	learn: 7.6387389	total: 5.74s	remaining: 1.98s
223:	learn: 7.6039931	total: 5.76s	remaining: 1.95s
224:	learn: 7.5780873	total: 5.78s	remaining: 1.93s
225:	learn: 7.5366573	total: 5.8s	remaining: 1.9s
226:	learn: 7.5117065	total: 5.83s	remaining: 1.87s
227:	learn: 7.4849508	total: 5.85s	remaining: 1.85s
228:	learn: 7.4536731	total: 5.87s	remaining: 1.82s
229:	learn: 7.4238760	total: 5.9s	remaining: 1.79s
230:	learn: 7.4054602	total: 5.92s	remaining: 1.77s
231:	learn: 7.3841419	total: 5.95s	remaining: 1.74s
232:	learn: 7.3712995	total: 5.97s	remaining: 1.72s
233:	learn: 7.3403269	total: 5.99s	remaining: 1.69s
234:	learn: 7.3293521	total: 6.01s	remaining: 1.66s
235:	learn: 7.2977701	total: 6.03s	remaining: 1.64s
236:	learn: 7.2879483	total: 6.06s	remaining: 1.61s
237:	learn: 7.2651195	total: 6.08s	remaining: 1.58s
238:	learn: 7.2349887	total: 6.11s	remaining: 1.56s
239:	learn: 7.1998166	total: 6.13s	remaining: 1.53s
240:	learn: 7.1916439	total: 6.16s	remaining: 1.51s
241:	learn: 7.1651373	total: 6.18s	remaining: 1.48s
242:	learn: 7.1381913	total: 6.21s	remaining: 1.46s
243:	learn: 7.1196857	total: 6.23s	remaining: 1.43s
244:	learn: 7.1129330	total: 6.25s	remaining: 1.4s
245:	learn: 7.0917288	total: 6.27s	remaining: 1.38s
246:	learn: 7.0643221	total: 6.3s	remaining: 1.35s
247:	learn: 7.0355381	total: 6.32s	remaining: 1.32s
248:	learn: 7.0175711	total: 6.35s	remaining: 1.3s
249:	learn: 6.9969066	total: 6.37s	remaining: 1.27s
250:	learn: 6.9647213	total: 6.39s	remaining: 1.25s
251:	learn: 6.9543141	total: 6.42s	remaining: 1.22s
252:	learn: 6.9265098	total: 6.44s	remaining: 1.2s
253:	learn: 6.9022725	total: 6.46s	remaining: 1.17s
254:	learn: 6.8497254	total: 6.48s	remaining: 1.14s
255:	learn: 6.8285154	total: 6.5s	remaining: 1.12s
256:	learn: 6.8011995	total: 6.53s	remaining: 1.09s
257:	learn: 6.7933719	total: 6.56s	remaining: 1.07s
258:	learn: 6.7690265	total: 6.58s	remaining: 1.04s
259:	learn: 6.7470688	total: 6.61s	remaining: 1.02s
260:	learn: 6.7282782	total: 6.63s	remaining: 991ms
261:	learn: 6.6980892	total: 6.66s	remaining: 965ms
262:	learn: 6.6788044	total: 6.68s	remaining: 940ms
263:	learn: 6.6507208	total: 6.7s	remaining: 914ms
264:	learn: 6.6299738	total: 6.72s	remaining: 888ms
265:	learn: 6.6146145	total: 6.75s	remaining: 863ms
266:	learn: 6.5960711	total: 6.77s	remaining: 837ms
267:	learn: 6.5601064	total: 6.8s	remaining: 812ms
268:	learn: 6.5439209	total: 6.82s	remaining: 786ms
269:	learn: 6.5302107	total: 6.84s	remaining: 760ms
270:	learn: 6.5075739	total: 6.86s	remaining: 734ms
271:	learn: 6.4875851	total: 6.88s	remaining: 709ms
272:	learn: 6.4779171	total: 6.91s	remaining: 683ms
273:	learn: 6.4677739	total: 6.93s	remaining: 658ms
274:	learn: 6.4375131	total: 6.95s	remaining: 632ms
275:	learn: 6.4223197	total: 6.98s	remaining: 607ms
276:	learn: 6.4163633	total: 7.01s	remaining: 582ms
277:	learn: 6.4084438	total: 7.03s	remaining: 556ms
278:	learn: 6.3795757	total: 7.05s	remaining: 531ms
279:	learn: 6.3670166	total: 7.08s	remaining: 505ms
280:	learn: 6.3426010	total: 7.1s	remaining: 480ms
281:	learn: 6.3363177	total: 7.12s	remaining: 455ms
282:	learn: 6.3138385	total: 7.14s	remaining: 429ms
283:	learn: 6.2894060	total: 7.17s	remaining: 404ms
284:	learn: 6.2767007	total: 7.2s	remaining: 379ms
285:	learn: 6.2607815	total: 7.22s	remaining: 354ms
286:	learn: 6.2368751	total: 7.24s	remaining: 328ms
287:	learn: 6.2218151	total: 7.27s	remaining: 303ms
288:	learn: 6.2147193	total: 7.29s	remaining: 277ms
289:	learn: 6.1817002	total: 7.31s	remaining: 252ms
290:	learn: 6.1531900	total: 7.33s	remaining: 227ms
291:	learn: 6.1438157	total: 7.35s	remaining: 201ms
292:	learn: 6.1311550	total: 7.38s	remaining: 176ms
293:	learn: 6.1171744	total: 7.4s	remaining: 151ms
294:	learn: 6.1079932	total: 7.43s	remaining: 126ms
295:	learn: 6.0989063	total: 7.46s	remaining: 101ms
296:	learn: 6.0740401	total: 7.48s	remaining: 75.6ms
297:	learn: 6.0685711	total: 7.5s	remaining: 50.4ms
298:	learn: 6.0601135	total: 7.53s	remaining: 25.2ms
299:	learn: 6.0486579	total: 7.55s	remaining: 0us
0:	learn: 43.1728564	total: 19.4ms	remaining: 5.81s
1:	learn: 42.4479145	total: 41.8ms	remaining: 6.23s
2:	learn: 41.7618107	total: 62ms	remaining: 6.14s
3:	learn: 40.9535516	total: 83.5ms	remaining: 6.18s
4:	learn: 40.0184714	total: 103ms	remaining: 6.1s
5:	learn: 39.3975364	total: 123ms	remaining: 6.01s
6:	learn: 38.5285936	total: 145ms	remaining: 6.05s
7:	learn: 37.7229272	total: 165ms	remaining: 6.02s
8:	learn: 37.0918758	total: 186ms	remaining: 6.01s
9:	learn: 36.3564673	total: 208ms	remaining: 6.03s
10:	learn: 35.6811958	total: 231ms	remaining: 6.06s
11:	learn: 35.0050014	total: 252ms	remaining: 6.05s
12:	learn: 34.2960554	total: 279ms	remaining: 6.16s
13:	learn: 33.5236859	total: 302ms	remaining: 6.18s
14:	learn: 32.9402676	total: 305ms	remaining: 5.79s
15:	learn: 32.4523166	total: 328ms	remaining: 5.82s
16:	learn: 31.8840373	total: 349ms	remaining: 5.81s
17:	learn: 31.3075678	total: 371ms	remaining: 5.81s
18:	learn: 30.8876354	total: 394ms	remaining: 5.82s
19:	learn: 30.3498359	total: 414ms	remaining: 5.8s
20:	learn: 29.9235491	total: 434ms	remaining: 5.77s
21:	learn: 29.3980753	total: 454ms	remaining: 5.74s
22:	learn: 28.8855360	total: 476ms	remaining: 5.73s
23:	learn: 28.4464905	total: 502ms	remaining: 5.78s
24:	learn: 28.0340761	total: 515ms	remaining: 5.67s
25:	learn: 27.6857355	total: 537ms	remaining: 5.66s
26:	learn: 27.3334889	total: 558ms	remaining: 5.64s
27:	learn: 26.8330294	total: 577ms	remaining: 5.61s
28:	learn: 26.4299332	total: 599ms	remaining: 5.6s
29:	learn: 26.0045444	total: 620ms	remaining: 5.58s
30:	learn: 25.6006582	total: 639ms	remaining: 5.54s
31:	learn: 25.2312981	total: 660ms	remaining: 5.53s
32:	learn: 25.0083092	total: 681ms	remaining: 5.51s
33:	learn: 24.6611713	total: 704ms	remaining: 5.51s
34:	learn: 24.4598997	total: 742ms	remaining: 5.62s
35:	learn: 24.2341422	total: 767ms	remaining: 5.62s
36:	learn: 23.9210171	total: 792ms	remaining: 5.63s
37:	learn: 23.5299198	total: 815ms	remaining: 5.62s
38:	learn: 23.1652368	total: 839ms	remaining: 5.61s
39:	learn: 22.8941103	total: 862ms	remaining: 5.6s
40:	learn: 22.7084206	total: 885ms	remaining: 5.59s
41:	learn: 22.4654978	total: 907ms	remaining: 5.57s
42:	learn: 22.2302580	total: 938ms	remaining: 5.61s
43:	learn: 21.9408933	total: 963ms	remaining: 5.6s
44:	learn: 21.6779272	total: 986ms	remaining: 5.59s
45:	learn: 21.5124883	total: 1.01s	remaining: 5.56s
46:	learn: 21.3803106	total: 1.03s	remaining: 5.54s
47:	learn: 21.2298916	total: 1.05s	remaining: 5.52s
48:	learn: 21.0336901	total: 1.08s	remaining: 5.51s
49:	learn: 20.7943434	total: 1.1s	remaining: 5.5s
50:	learn: 20.5676348	total: 1.13s	remaining: 5.51s
51:	learn: 20.3427273	total: 1.15s	remaining: 5.46s
52:	learn: 20.1024296	total: 1.17s	remaining: 5.45s
53:	learn: 19.9885265	total: 1.19s	remaining: 5.44s
54:	learn: 19.8413355	total: 1.22s	remaining: 5.43s
55:	learn: 19.7099619	total: 1.24s	remaining: 5.42s
56:	learn: 19.5311747	total: 1.26s	remaining: 5.39s
57:	learn: 19.3665040	total: 1.28s	remaining: 5.37s
58:	learn: 19.2281415	total: 1.31s	remaining: 5.34s
59:	learn: 19.1106495	total: 1.33s	remaining: 5.33s
60:	learn: 18.9927263	total: 1.36s	remaining: 5.33s
61:	learn: 18.7654626	total: 1.38s	remaining: 5.3s
62:	learn: 18.6108661	total: 1.4s	remaining: 5.27s
63:	learn: 18.4817806	total: 1.42s	remaining: 5.25s
64:	learn: 18.3632402	total: 1.45s	remaining: 5.23s
65:	learn: 18.2653457	total: 1.47s	remaining: 5.21s
66:	learn: 18.1378819	total: 1.49s	remaining: 5.18s
67:	learn: 18.0459629	total: 1.51s	remaining: 5.16s
68:	learn: 17.9001044	total: 1.54s	remaining: 5.14s
69:	learn: 17.7073203	total: 1.56s	remaining: 5.14s
70:	learn: 17.5276628	total: 1.59s	remaining: 5.13s
71:	learn: 17.4386086	total: 1.61s	remaining: 5.11s
72:	learn: 17.2890096	total: 1.64s	remaining: 5.09s
73:	learn: 17.1904631	total: 1.66s	remaining: 5.08s
74:	learn: 17.0955197	total: 1.68s	remaining: 5.05s
75:	learn: 16.9924303	total: 1.7s	remaining: 5.02s
76:	learn: 16.8972682	total: 1.73s	remaining: 5s
77:	learn: 16.7957864	total: 1.75s	remaining: 4.99s
78:	learn: 16.6405248	total: 1.78s	remaining: 4.98s
79:	learn: 16.5463991	total: 1.8s	remaining: 4.96s
80:	learn: 16.4622871	total: 1.82s	remaining: 4.93s
81:	learn: 16.3624916	total: 1.84s	remaining: 4.91s
82:	learn: 16.2073706	total: 1.86s	remaining: 4.88s
83:	learn: 16.0716875	total: 1.89s	remaining: 4.85s
84:	learn: 15.9336151	total: 1.91s	remaining: 4.83s
85:	learn: 15.8451501	total: 1.93s	remaining: 4.8s
86:	learn: 15.7200917	total: 1.95s	remaining: 4.78s
87:	learn: 15.6236971	total: 1.98s	remaining: 4.78s
88:	learn: 15.5479129	total: 2.01s	remaining: 4.76s
89:	learn: 15.4975079	total: 2.03s	remaining: 4.73s
90:	learn: 15.4083433	total: 2.05s	remaining: 4.71s
91:	learn: 15.3169327	total: 2.08s	remaining: 4.69s
92:	learn: 15.2207992	total: 2.1s	remaining: 4.67s
93:	learn: 15.1430327	total: 2.12s	remaining: 4.64s
94:	learn: 15.0665711	total: 2.14s	remaining: 4.61s
95:	learn: 14.9903534	total: 2.16s	remaining: 4.59s
96:	learn: 14.9054346	total: 2.19s	remaining: 4.58s
97:	learn: 14.7940457	total: 2.21s	remaining: 4.55s
98:	learn: 14.7008915	total: 2.23s	remaining: 4.53s
99:	learn: 14.6142673	total: 2.25s	remaining: 4.5s
100:	learn: 14.5337996	total: 2.27s	remaining: 4.48s
101:	learn: 14.4571728	total: 2.29s	remaining: 4.45s
102:	learn: 14.3898956	total: 2.31s	remaining: 4.43s
103:	learn: 14.3189412	total: 2.33s	remaining: 4.4s
104:	learn: 14.2525935	total: 2.35s	remaining: 4.37s
105:	learn: 14.1772436	total: 2.38s	remaining: 4.35s
106:	learn: 14.1059305	total: 2.41s	remaining: 4.35s
107:	learn: 14.0232782	total: 2.43s	remaining: 4.33s
108:	learn: 13.9368806	total: 2.46s	remaining: 4.3s
109:	learn: 13.8491229	total: 2.48s	remaining: 4.28s
110:	learn: 13.7685490	total: 2.5s	remaining: 4.25s
111:	learn: 13.6836750	total: 2.52s	remaining: 4.23s
112:	learn: 13.6202897	total: 2.54s	remaining: 4.2s
113:	learn: 13.5688904	total: 2.56s	remaining: 4.17s
114:	learn: 13.5145238	total: 2.58s	remaining: 4.15s
115:	learn: 13.4247466	total: 2.61s	remaining: 4.14s
116:	learn: 13.3307114	total: 2.63s	remaining: 4.12s
117:	learn: 13.2545184	total: 2.65s	remaining: 4.09s
118:	learn: 13.1996548	total: 2.67s	remaining: 4.07s
119:	learn: 13.1205307	total: 2.69s	remaining: 4.04s
120:	learn: 13.0479027	total: 2.71s	remaining: 4.01s
121:	learn: 12.9970441	total: 2.74s	remaining: 3.99s
122:	learn: 12.9295209	total: 2.76s	remaining: 3.97s
123:	learn: 12.8673524	total: 2.78s	remaining: 3.94s
124:	learn: 12.7786245	total: 2.8s	remaining: 3.92s
125:	learn: 12.7348929	total: 2.83s	remaining: 3.9s
126:	learn: 12.6858554	total: 2.85s	remaining: 3.89s
127:	learn: 12.6189787	total: 2.88s	remaining: 3.87s
128:	learn: 12.5864827	total: 2.9s	remaining: 3.84s
129:	learn: 12.5478404	total: 2.92s	remaining: 3.82s
130:	learn: 12.5017820	total: 2.94s	remaining: 3.8s
131:	learn: 12.4491462	total: 2.96s	remaining: 3.77s
132:	learn: 12.3822056	total: 2.98s	remaining: 3.75s
133:	learn: 12.3098651	total: 3.01s	remaining: 3.73s
134:	learn: 12.2531700	total: 3.03s	remaining: 3.7s
135:	learn: 12.2119331	total: 3.06s	remaining: 3.69s
136:	learn: 12.1571278	total: 3.08s	remaining: 3.67s
137:	learn: 12.0976094	total: 3.1s	remaining: 3.64s
138:	learn: 12.0025352	total: 3.12s	remaining: 3.62s
139:	learn: 11.9019074	total: 3.15s	remaining: 3.6s
140:	learn: 11.7854852	total: 3.17s	remaining: 3.57s
141:	learn: 11.7104078	total: 3.19s	remaining: 3.55s
142:	learn: 11.6741366	total: 3.21s	remaining: 3.52s
143:	learn: 11.6077195	total: 3.23s	remaining: 3.5s
144:	learn: 11.5496695	total: 3.26s	remaining: 3.49s
145:	learn: 11.4568800	total: 3.29s	remaining: 3.47s
146:	learn: 11.4368150	total: 3.31s	remaining: 3.44s
147:	learn: 11.3955813	total: 3.33s	remaining: 3.42s
148:	learn: 11.3565385	total: 3.36s	remaining: 3.4s
149:	learn: 11.3020845	total: 3.38s	remaining: 3.38s
150:	learn: 11.2130390	total: 3.41s	remaining: 3.36s
151:	learn: 11.1401745	total: 3.43s	remaining: 3.34s
152:	learn: 11.1048934	total: 3.46s	remaining: 3.33s
153:	learn: 11.0709933	total: 3.49s	remaining: 3.31s
154:	learn: 11.0212519	total: 3.51s	remaining: 3.28s
155:	learn: 10.9258762	total: 3.53s	remaining: 3.26s
156:	learn: 10.8429657	total: 3.56s	remaining: 3.24s
157:	learn: 10.8061370	total: 3.58s	remaining: 3.21s
158:	learn: 10.7571211	total: 3.6s	remaining: 3.19s
159:	learn: 10.6698987	total: 3.63s	remaining: 3.17s
160:	learn: 10.6228772	total: 3.66s	remaining: 3.16s
161:	learn: 10.5368796	total: 3.68s	remaining: 3.14s
162:	learn: 10.4841450	total: 3.72s	remaining: 3.12s
163:	learn: 10.4012317	total: 3.74s	remaining: 3.1s
164:	learn: 10.3588701	total: 3.77s	remaining: 3.08s
165:	learn: 10.2816720	total: 3.79s	remaining: 3.06s
166:	learn: 10.2259651	total: 3.82s	remaining: 3.04s
167:	learn: 10.1792554	total: 3.84s	remaining: 3.02s
168:	learn: 10.1604671	total: 3.86s	remaining: 2.99s
169:	learn: 10.1318986	total: 3.89s	remaining: 2.97s
170:	learn: 10.0948065	total: 3.92s	remaining: 2.96s
171:	learn: 10.0521191	total: 3.95s	remaining: 2.94s
172:	learn: 9.9946157	total: 3.97s	remaining: 2.91s
173:	learn: 9.9313678	total: 3.99s	remaining: 2.89s
174:	learn: 9.9156434	total: 4.02s	remaining: 2.87s
175:	learn: 9.8749788	total: 4.04s	remaining: 2.85s
176:	learn: 9.8485079	total: 4.06s	remaining: 2.82s
177:	learn: 9.8134329	total: 4.09s	remaining: 2.8s
178:	learn: 9.7880107	total: 4.11s	remaining: 2.78s
179:	learn: 9.7587885	total: 4.14s	remaining: 2.76s
180:	learn: 9.6939238	total: 4.17s	remaining: 2.75s
181:	learn: 9.6447939	total: 4.2s	remaining: 2.72s
182:	learn: 9.6136022	total: 4.23s	remaining: 2.7s
183:	learn: 9.5885675	total: 4.25s	remaining: 2.68s
184:	learn: 9.5271670	total: 4.27s	remaining: 2.66s
185:	learn: 9.4616988	total: 4.3s	remaining: 2.63s
186:	learn: 9.4287637	total: 4.33s	remaining: 2.61s
187:	learn: 9.3948177	total: 4.36s	remaining: 2.6s
188:	learn: 9.3767726	total: 4.38s	remaining: 2.57s
189:	learn: 9.3473555	total: 4.4s	remaining: 2.55s
190:	learn: 9.3099572	total: 4.43s	remaining: 2.53s
191:	learn: 9.2799642	total: 4.46s	remaining: 2.51s
192:	learn: 9.2505323	total: 4.48s	remaining: 2.48s
193:	learn: 9.2173510	total: 4.5s	remaining: 2.46s
194:	learn: 9.1746531	total: 4.53s	remaining: 2.44s
195:	learn: 9.1354668	total: 4.56s	remaining: 2.42s
196:	learn: 9.0983547	total: 4.59s	remaining: 2.4s
197:	learn: 9.0615111	total: 4.61s	remaining: 2.38s
198:	learn: 9.0239666	total: 4.64s	remaining: 2.35s
199:	learn: 8.9906083	total: 4.66s	remaining: 2.33s
200:	learn: 8.9458694	total: 4.69s	remaining: 2.31s
201:	learn: 8.9040783	total: 4.71s	remaining: 2.29s
202:	learn: 8.8495189	total: 4.74s	remaining: 2.26s
203:	learn: 8.8243403	total: 4.77s	remaining: 2.24s
204:	learn: 8.7930532	total: 4.79s	remaining: 2.22s
205:	learn: 8.7587095	total: 4.82s	remaining: 2.2s
206:	learn: 8.7177051	total: 4.84s	remaining: 2.17s
207:	learn: 8.6879684	total: 4.86s	remaining: 2.15s
208:	learn: 8.6681622	total: 4.88s	remaining: 2.13s
209:	learn: 8.6299257	total: 4.92s	remaining: 2.11s
210:	learn: 8.5728096	total: 4.94s	remaining: 2.08s
211:	learn: 8.5456345	total: 4.96s	remaining: 2.06s
212:	learn: 8.5000514	total: 5s	remaining: 2.04s
213:	learn: 8.4814393	total: 5.02s	remaining: 2.02s
214:	learn: 8.4512752	total: 5.05s	remaining: 2s
215:	learn: 8.4144221	total: 5.07s	remaining: 1.97s
216:	learn: 8.3817886	total: 5.1s	remaining: 1.95s
217:	learn: 8.3392143	total: 5.12s	remaining: 1.93s
218:	learn: 8.3102751	total: 5.14s	remaining: 1.9s
219:	learn: 8.2963441	total: 5.18s	remaining: 1.88s
220:	learn: 8.2666907	total: 5.21s	remaining: 1.86s
221:	learn: 8.2470955	total: 5.24s	remaining: 1.84s
222:	learn: 8.2352635	total: 5.26s	remaining: 1.82s
223:	learn: 8.2046605	total: 5.28s	remaining: 1.79s
224:	learn: 8.1746742	total: 5.31s	remaining: 1.77s
225:	learn: 8.1466704	total: 5.33s	remaining: 1.74s
226:	learn: 8.1113762	total: 5.35s	remaining: 1.72s
227:	learn: 8.0842520	total: 5.38s	remaining: 1.7s
228:	learn: 8.0619499	total: 5.4s	remaining: 1.67s
229:	learn: 8.0391421	total: 5.44s	remaining: 1.66s
230:	learn: 8.0082460	total: 5.47s	remaining: 1.63s
231:	learn: 7.9894454	total: 5.49s	remaining: 1.61s
232:	learn: 7.9567828	total: 5.52s	remaining: 1.59s
233:	learn: 7.9394710	total: 5.54s	remaining: 1.56s
234:	learn: 7.9171371	total: 5.57s	remaining: 1.54s
235:	learn: 7.9062197	total: 5.59s	remaining: 1.51s
236:	learn: 7.8803505	total: 5.61s	remaining: 1.49s
237:	learn: 7.8508624	total: 5.64s	remaining: 1.47s
238:	learn: 7.8107215	total: 5.67s	remaining: 1.45s
239:	learn: 7.7758588	total: 5.7s	remaining: 1.43s
240:	learn: 7.7403137	total: 5.72s	remaining: 1.4s
241:	learn: 7.7146933	total: 5.75s	remaining: 1.38s
242:	learn: 7.6876053	total: 5.77s	remaining: 1.35s
243:	learn: 7.6631332	total: 5.79s	remaining: 1.33s
244:	learn: 7.6340717	total: 5.81s	remaining: 1.3s
245:	learn: 7.5835394	total: 5.84s	remaining: 1.28s
246:	learn: 7.5572808	total: 5.86s	remaining: 1.26s
247:	learn: 7.5477260	total: 5.89s	remaining: 1.24s
248:	learn: 7.5230961	total: 5.92s	remaining: 1.21s
249:	learn: 7.4926278	total: 5.95s	remaining: 1.19s
250:	learn: 7.4663059	total: 5.98s	remaining: 1.17s
251:	learn: 7.4439231	total: 6s	remaining: 1.14s
252:	learn: 7.4147104	total: 6.03s	remaining: 1.12s
253:	learn: 7.3910399	total: 6.05s	remaining: 1.09s
254:	learn: 7.3694309	total: 6.08s	remaining: 1.07s
255:	learn: 7.3357705	total: 6.11s	remaining: 1.05s
256:	learn: 7.3063747	total: 6.13s	remaining: 1.02s
257:	learn: 7.2838572	total: 6.16s	remaining: 1s
258:	learn: 7.2589764	total: 6.18s	remaining: 979ms
259:	learn: 7.2389253	total: 6.21s	remaining: 955ms
260:	learn: 7.2138913	total: 6.23s	remaining: 931ms
261:	learn: 7.1886917	total: 6.26s	remaining: 907ms
262:	learn: 7.1772908	total: 6.28s	remaining: 884ms
263:	learn: 7.1578726	total: 6.3s	remaining: 860ms
264:	learn: 7.1353133	total: 6.34s	remaining: 837ms
265:	learn: 7.1102477	total: 6.36s	remaining: 814ms
266:	learn: 7.0828702	total: 6.39s	remaining: 790ms
267:	learn: 7.0597237	total: 6.41s	remaining: 766ms
268:	learn: 7.0365630	total: 6.45s	remaining: 743ms
269:	learn: 7.0146208	total: 6.47s	remaining: 719ms
270:	learn: 6.9967242	total: 6.5s	remaining: 695ms
271:	learn: 6.9790909	total: 6.52s	remaining: 671ms
272:	learn: 6.9693113	total: 6.54s	remaining: 647ms
273:	learn: 6.9594319	total: 6.57s	remaining: 624ms
274:	learn: 6.9391890	total: 6.6s	remaining: 600ms
275:	learn: 6.9254505	total: 6.62s	remaining: 576ms
276:	learn: 6.9024357	total: 6.65s	remaining: 552ms
277:	learn: 6.8754442	total: 6.67s	remaining: 528ms
278:	learn: 6.8502029	total: 6.7s	remaining: 505ms
279:	learn: 6.8142453	total: 6.73s	remaining: 480ms
280:	learn: 6.7927649	total: 6.75s	remaining: 457ms
281:	learn: 6.7640814	total: 6.78s	remaining: 433ms
282:	learn: 6.7463937	total: 6.81s	remaining: 409ms
283:	learn: 6.7403516	total: 6.84s	remaining: 385ms
284:	learn: 6.7206013	total: 6.86s	remaining: 361ms
285:	learn: 6.6875183	total: 6.88s	remaining: 337ms
286:	learn: 6.6609083	total: 6.91s	remaining: 313ms
287:	learn: 6.6545230	total: 6.93s	remaining: 289ms
288:	learn: 6.6358351	total: 6.96s	remaining: 265ms
289:	learn: 6.6175009	total: 7s	remaining: 241ms
290:	learn: 6.6067729	total: 7.02s	remaining: 217ms
291:	learn: 6.5970320	total: 7.04s	remaining: 193ms
292:	learn: 6.5837751	total: 7.07s	remaining: 169ms
293:	learn: 6.5625028	total: 7.09s	remaining: 145ms
294:	learn: 6.5530621	total: 7.11s	remaining: 121ms
295:	learn: 6.5478680	total: 7.14s	remaining: 96.5ms
296:	learn: 6.5241879	total: 7.16s	remaining: 72.4ms
297:	learn: 6.5118159	total: 7.2s	remaining: 48.3ms
298:	learn: 6.4919631	total: 7.23s	remaining: 24.2ms
299:	learn: 6.4739124	total: 7.26s	remaining: 0us
0:	learn: 46.4788614	total: 2.65ms	remaining: 792ms
1:	learn: 45.7710608	total: 26.3ms	remaining: 3.92s
2:	learn: 45.1565849	total: 49ms	remaining: 4.85s
3:	learn: 44.4030902	total: 72.9ms	remaining: 5.39s
4:	learn: 43.7256714	total: 99.8ms	remaining: 5.88s
5:	learn: 43.0846764	total: 130ms	remaining: 6.37s
6:	learn: 42.3050249	total: 155ms	remaining: 6.48s
7:	learn: 41.5523343	total: 180ms	remaining: 6.56s
8:	learn: 40.7548041	total: 211ms	remaining: 6.84s
9:	learn: 39.8798087	total: 235ms	remaining: 6.82s
10:	learn: 39.3807548	total: 257ms	remaining: 6.75s
11:	learn: 38.6353297	total: 281ms	remaining: 6.75s
12:	learn: 38.0252968	total: 312ms	remaining: 6.9s
13:	learn: 37.4584814	total: 340ms	remaining: 6.95s
14:	learn: 36.9766267	total: 366ms	remaining: 6.94s
15:	learn: 36.4351844	total: 391ms	remaining: 6.95s
16:	learn: 35.8711532	total: 416ms	remaining: 6.92s
17:	learn: 35.5046170	total: 441ms	remaining: 6.91s
18:	learn: 34.9410561	total: 472ms	remaining: 6.97s
19:	learn: 34.5414688	total: 497ms	remaining: 6.96s
20:	learn: 34.1994877	total: 528ms	remaining: 7.02s
21:	learn: 33.8105873	total: 555ms	remaining: 7.01s
22:	learn: 33.2767379	total: 578ms	remaining: 6.96s
23:	learn: 32.9293305	total: 603ms	remaining: 6.93s
24:	learn: 32.5563171	total: 626ms	remaining: 6.89s
25:	learn: 32.0312705	total: 648ms	remaining: 6.83s
26:	learn: 31.5549663	total: 671ms	remaining: 6.79s
27:	learn: 31.2152408	total: 695ms	remaining: 6.75s
28:	learn: 30.8335992	total: 731ms	remaining: 6.83s
29:	learn: 30.4437650	total: 758ms	remaining: 6.82s
30:	learn: 30.1139865	total: 783ms	remaining: 6.79s
31:	learn: 29.6348886	total: 809ms	remaining: 6.77s
32:	learn: 29.4374411	total: 834ms	remaining: 6.75s
33:	learn: 29.1774552	total: 858ms	remaining: 6.71s
34:	learn: 28.9121068	total: 882ms	remaining: 6.68s
35:	learn: 28.6291033	total: 905ms	remaining: 6.64s
36:	learn: 28.3365166	total: 929ms	remaining: 6.6s
37:	learn: 28.0654213	total: 963ms	remaining: 6.64s
38:	learn: 27.7120990	total: 991ms	remaining: 6.63s
39:	learn: 27.4700227	total: 1.01s	remaining: 6.6s
40:	learn: 27.2052722	total: 1.04s	remaining: 6.56s
41:	learn: 26.9401129	total: 1.06s	remaining: 6.52s
42:	learn: 26.6081493	total: 1.08s	remaining: 6.49s
43:	learn: 26.3847138	total: 1.11s	remaining: 6.45s
44:	learn: 26.2201660	total: 1.13s	remaining: 6.41s
45:	learn: 26.0513425	total: 1.16s	remaining: 6.38s
46:	learn: 25.8609437	total: 1.18s	remaining: 6.38s
47:	learn: 25.6040252	total: 1.23s	remaining: 6.43s
48:	learn: 25.4235507	total: 1.25s	remaining: 6.41s
49:	learn: 25.2896788	total: 1.28s	remaining: 6.38s
50:	learn: 25.1208197	total: 1.3s	remaining: 6.36s
51:	learn: 24.8660258	total: 1.31s	remaining: 6.23s
52:	learn: 24.6165133	total: 1.33s	remaining: 6.2s
53:	learn: 24.3828983	total: 1.35s	remaining: 6.16s
54:	learn: 24.1841624	total: 1.38s	remaining: 6.13s
55:	learn: 24.0006316	total: 1.41s	remaining: 6.14s
56:	learn: 23.7695363	total: 1.43s	remaining: 6.11s
57:	learn: 23.6284017	total: 1.46s	remaining: 6.08s
58:	learn: 23.4125305	total: 1.49s	remaining: 6.08s
59:	learn: 23.2250456	total: 1.51s	remaining: 6.04s
60:	learn: 23.0467385	total: 1.53s	remaining: 6s
61:	learn: 22.7033792	total: 1.56s	remaining: 5.97s
62:	learn: 22.5334580	total: 1.58s	remaining: 5.94s
63:	learn: 22.3638971	total: 1.6s	remaining: 5.92s
64:	learn: 22.1384904	total: 1.64s	remaining: 5.92s
65:	learn: 22.0135698	total: 1.66s	remaining: 5.89s
66:	learn: 21.8734424	total: 1.69s	remaining: 5.86s
67:	learn: 21.7496417	total: 1.71s	remaining: 5.83s
68:	learn: 21.5374284	total: 1.73s	remaining: 5.81s
69:	learn: 21.3371276	total: 1.76s	remaining: 5.77s
70:	learn: 21.0990139	total: 1.78s	remaining: 5.74s
71:	learn: 20.9642590	total: 1.8s	remaining: 5.71s
72:	learn: 20.8049721	total: 1.83s	remaining: 5.68s
73:	learn: 20.7124973	total: 1.86s	remaining: 5.67s
74:	learn: 20.6049930	total: 1.88s	remaining: 5.64s
75:	learn: 20.4963737	total: 1.9s	remaining: 5.6s
76:	learn: 20.3645418	total: 1.92s	remaining: 5.57s
77:	learn: 20.2519924	total: 1.95s	remaining: 5.54s
78:	learn: 20.0505831	total: 1.97s	remaining: 5.51s
79:	learn: 19.9272769	total: 1.99s	remaining: 5.47s
80:	learn: 19.8219589	total: 2.01s	remaining: 5.44s
81:	learn: 19.7098289	total: 2.04s	remaining: 5.42s
82:	learn: 19.4383686	total: 2.07s	remaining: 5.41s
83:	learn: 19.3315372	total: 2.09s	remaining: 5.39s
84:	learn: 19.2144697	total: 2.12s	remaining: 5.36s
85:	learn: 19.0849701	total: 2.14s	remaining: 5.33s
86:	learn: 18.9769215	total: 2.16s	remaining: 5.3s
87:	learn: 18.8581283	total: 2.19s	remaining: 5.27s
88:	learn: 18.7414069	total: 2.21s	remaining: 5.23s
89:	learn: 18.6649642	total: 2.23s	remaining: 5.21s
90:	learn: 18.5127864	total: 2.25s	remaining: 5.18s
91:	learn: 18.3629102	total: 2.28s	remaining: 5.16s
92:	learn: 18.2624941	total: 2.31s	remaining: 5.13s
93:	learn: 18.1645836	total: 2.33s	remaining: 5.1s
94:	learn: 18.0717273	total: 2.35s	remaining: 5.07s
95:	learn: 17.9594520	total: 2.37s	remaining: 5.04s
96:	learn: 17.8692648	total: 2.39s	remaining: 5.01s
97:	learn: 17.7758009	total: 2.41s	remaining: 4.98s
98:	learn: 17.6633350	total: 2.44s	remaining: 4.95s
99:	learn: 17.5393236	total: 2.46s	remaining: 4.92s
100:	learn: 17.4441841	total: 2.49s	remaining: 4.91s
101:	learn: 17.3636497	total: 2.52s	remaining: 4.89s
102:	learn: 17.2836586	total: 2.54s	remaining: 4.86s
103:	learn: 17.1666480	total: 2.57s	remaining: 4.84s
104:	learn: 17.0603123	total: 2.59s	remaining: 4.81s
105:	learn: 16.9701019	total: 2.61s	remaining: 4.78s
106:	learn: 16.8819325	total: 2.63s	remaining: 4.75s
107:	learn: 16.7800721	total: 2.66s	remaining: 4.72s
108:	learn: 16.6575687	total: 2.69s	remaining: 4.71s
109:	learn: 16.5621285	total: 2.71s	remaining: 4.68s
110:	learn: 16.4805668	total: 2.73s	remaining: 4.65s
111:	learn: 16.3664491	total: 2.75s	remaining: 4.62s
112:	learn: 16.2921576	total: 2.78s	remaining: 4.6s
113:	learn: 16.2123714	total: 2.8s	remaining: 4.57s
114:	learn: 16.1305926	total: 2.82s	remaining: 4.54s
115:	learn: 16.0452681	total: 2.85s	remaining: 4.52s
116:	learn: 15.9356767	total: 2.87s	remaining: 4.49s
117:	learn: 15.8492426	total: 2.89s	remaining: 4.46s
118:	learn: 15.7699169	total: 2.92s	remaining: 4.45s
119:	learn: 15.6746719	total: 2.95s	remaining: 4.42s
120:	learn: 15.5370189	total: 2.97s	remaining: 4.4s
121:	learn: 15.4445148	total: 3s	remaining: 4.37s
122:	learn: 15.3396325	total: 3.02s	remaining: 4.35s
123:	learn: 15.2450802	total: 3.04s	remaining: 4.32s
124:	learn: 15.1203998	total: 3.06s	remaining: 4.29s
125:	learn: 15.0601453	total: 3.08s	remaining: 4.26s
126:	learn: 14.9882312	total: 3.11s	remaining: 4.23s
127:	learn: 14.9180283	total: 3.14s	remaining: 4.21s
128:	learn: 14.8526915	total: 3.16s	remaining: 4.19s
129:	learn: 14.7657162	total: 3.18s	remaining: 4.16s
130:	learn: 14.6698595	total: 3.2s	remaining: 4.13s
131:	learn: 14.6346566	total: 3.21s	remaining: 4.08s
132:	learn: 14.5756096	total: 3.23s	remaining: 4.05s
133:	learn: 14.5030739	total: 3.25s	remaining: 4.03s
134:	learn: 14.3943441	total: 3.27s	remaining: 4s
135:	learn: 14.2404537	total: 3.3s	remaining: 3.97s
136:	learn: 14.1761228	total: 3.32s	remaining: 3.95s
137:	learn: 14.1077833	total: 3.34s	remaining: 3.92s
138:	learn: 14.0413537	total: 3.38s	remaining: 3.91s
139:	learn: 13.9757428	total: 3.4s	remaining: 3.88s
140:	learn: 13.8921768	total: 3.42s	remaining: 3.86s
141:	learn: 13.8110381	total: 3.45s	remaining: 3.83s
142:	learn: 13.7257676	total: 3.47s	remaining: 3.81s
143:	learn: 13.6518439	total: 3.5s	remaining: 3.79s
144:	learn: 13.4950736	total: 3.52s	remaining: 3.76s
145:	learn: 13.3977428	total: 3.54s	remaining: 3.74s
146:	learn: 13.3368539	total: 3.57s	remaining: 3.72s
147:	learn: 13.2559100	total: 3.6s	remaining: 3.69s
148:	learn: 13.1574001	total: 3.62s	remaining: 3.67s
149:	learn: 13.0006095	total: 3.64s	remaining: 3.64s
150:	learn: 12.9451554	total: 3.66s	remaining: 3.61s
151:	learn: 12.8348904	total: 3.68s	remaining: 3.59s
152:	learn: 12.7505428	total: 3.71s	remaining: 3.56s
153:	learn: 12.6269434	total: 3.73s	remaining: 3.53s
154:	learn: 12.5693272	total: 3.75s	remaining: 3.51s
155:	learn: 12.5049023	total: 3.77s	remaining: 3.48s
156:	learn: 12.4144067	total: 3.81s	remaining: 3.47s
157:	learn: 12.3672108	total: 3.83s	remaining: 3.44s
158:	learn: 12.2988713	total: 3.85s	remaining: 3.42s
159:	learn: 12.2500411	total: 3.88s	remaining: 3.39s
160:	learn: 12.2002550	total: 3.9s	remaining: 3.37s
161:	learn: 12.0921756	total: 3.92s	remaining: 3.34s
162:	learn: 12.0261456	total: 3.94s	remaining: 3.31s
163:	learn: 11.9595478	total: 3.96s	remaining: 3.29s
164:	learn: 11.9040826	total: 3.99s	remaining: 3.26s
165:	learn: 11.8185631	total: 4.01s	remaining: 3.24s
166:	learn: 11.7394422	total: 4.04s	remaining: 3.21s
167:	learn: 11.6639319	total: 4.06s	remaining: 3.19s
168:	learn: 11.6147181	total: 4.08s	remaining: 3.16s
169:	learn: 11.5761586	total: 4.1s	remaining: 3.13s
170:	learn: 11.4910059	total: 4.12s	remaining: 3.11s
171:	learn: 11.4181227	total: 4.14s	remaining: 3.08s
172:	learn: 11.3626035	total: 4.16s	remaining: 3.06s
173:	learn: 11.2507892	total: 4.18s	remaining: 3.03s
174:	learn: 11.1798403	total: 4.22s	remaining: 3.01s
175:	learn: 11.1190643	total: 4.24s	remaining: 2.99s
176:	learn: 11.0620102	total: 4.26s	remaining: 2.96s
177:	learn: 10.9793884	total: 4.29s	remaining: 2.94s
178:	learn: 10.8968370	total: 4.31s	remaining: 2.91s
179:	learn: 10.8122733	total: 4.33s	remaining: 2.89s
180:	learn: 10.7545856	total: 4.35s	remaining: 2.86s
181:	learn: 10.6836395	total: 4.37s	remaining: 2.83s
182:	learn: 10.6441863	total: 4.39s	remaining: 2.81s
183:	learn: 10.5944997	total: 4.42s	remaining: 2.79s
184:	learn: 10.5161755	total: 4.45s	remaining: 2.77s
185:	learn: 10.4705995	total: 4.47s	remaining: 2.74s
186:	learn: 10.4187076	total: 4.49s	remaining: 2.71s
187:	learn: 10.3683730	total: 4.51s	remaining: 2.69s
188:	learn: 10.3150620	total: 4.54s	remaining: 2.67s
189:	learn: 10.2691155	total: 4.56s	remaining: 2.64s
190:	learn: 10.2272718	total: 4.58s	remaining: 2.61s
191:	learn: 10.1871331	total: 4.6s	remaining: 2.59s
192:	learn: 10.1443128	total: 4.62s	remaining: 2.56s
193:	learn: 10.0668189	total: 4.64s	remaining: 2.54s
194:	learn: 10.0256380	total: 4.67s	remaining: 2.51s
195:	learn: 9.9787956	total: 4.7s	remaining: 2.49s
196:	learn: 9.9322122	total: 4.72s	remaining: 2.47s
197:	learn: 9.8850093	total: 4.74s	remaining: 2.44s
198:	learn: 9.8380140	total: 4.77s	remaining: 2.42s
199:	learn: 9.8106296	total: 4.79s	remaining: 2.39s
200:	learn: 9.7585749	total: 4.81s	remaining: 2.37s
201:	learn: 9.7182879	total: 4.83s	remaining: 2.34s
202:	learn: 9.6821771	total: 4.85s	remaining: 2.32s
203:	learn: 9.6399101	total: 4.88s	remaining: 2.29s
204:	learn: 9.6048849	total: 4.9s	remaining: 2.27s
205:	learn: 9.5638590	total: 4.92s	remaining: 2.25s
206:	learn: 9.5142374	total: 4.95s	remaining: 2.22s
207:	learn: 9.4695144	total: 4.97s	remaining: 2.2s
208:	learn: 9.4331939	total: 4.99s	remaining: 2.17s
209:	learn: 9.3833838	total: 5.01s	remaining: 2.15s
210:	learn: 9.3517645	total: 5.03s	remaining: 2.12s
211:	learn: 9.3163444	total: 5.05s	remaining: 2.1s
212:	learn: 9.2788352	total: 5.07s	remaining: 2.07s
213:	learn: 9.2459289	total: 5.09s	remaining: 2.05s
214:	learn: 9.2104536	total: 5.12s	remaining: 2.02s
215:	learn: 9.1729420	total: 5.15s	remaining: 2s
216:	learn: 9.1364121	total: 5.17s	remaining: 1.98s
217:	learn: 9.0970859	total: 5.19s	remaining: 1.95s
218:	learn: 9.0611146	total: 5.21s	remaining: 1.93s
219:	learn: 9.0276741	total: 5.23s	remaining: 1.9s
220:	learn: 8.9977644	total: 5.25s	remaining: 1.88s
221:	learn: 8.9633156	total: 5.28s	remaining: 1.85s
222:	learn: 8.9313136	total: 5.3s	remaining: 1.83s
223:	learn: 8.9023504	total: 5.33s	remaining: 1.81s
224:	learn: 8.8741668	total: 5.36s	remaining: 1.78s
225:	learn: 8.8402639	total: 5.38s	remaining: 1.76s
226:	learn: 8.8061090	total: 5.4s	remaining: 1.74s
227:	learn: 8.7767795	total: 5.43s	remaining: 1.71s
228:	learn: 8.7514356	total: 5.45s	remaining: 1.69s
229:	learn: 8.7118727	total: 5.48s	remaining: 1.67s
230:	learn: 8.6759132	total: 5.5s	remaining: 1.64s
231:	learn: 8.6447220	total: 5.53s	remaining: 1.62s
232:	learn: 8.6102503	total: 5.56s	remaining: 1.6s
233:	learn: 8.5858738	total: 5.59s	remaining: 1.57s
234:	learn: 8.5595561	total: 5.61s	remaining: 1.55s
235:	learn: 8.5313778	total: 5.64s	remaining: 1.53s
236:	learn: 8.5053234	total: 5.66s	remaining: 1.5s
237:	learn: 8.4737268	total: 5.69s	remaining: 1.48s
238:	learn: 8.4414991	total: 5.72s	remaining: 1.46s
239:	learn: 8.4168374	total: 5.75s	remaining: 1.44s
240:	learn: 8.3862136	total: 5.77s	remaining: 1.41s
241:	learn: 8.3454081	total: 5.8s	remaining: 1.39s
242:	learn: 8.3145638	total: 5.82s	remaining: 1.36s
243:	learn: 8.3007136	total: 5.84s	remaining: 1.34s
244:	learn: 8.2708676	total: 5.87s	remaining: 1.32s
245:	learn: 8.2454265	total: 5.89s	remaining: 1.29s
246:	learn: 8.2117256	total: 5.92s	remaining: 1.27s
247:	learn: 8.1846870	total: 5.95s	remaining: 1.25s
248:	learn: 8.1602441	total: 5.98s	remaining: 1.22s
249:	learn: 8.1410728	total: 6s	remaining: 1.2s
250:	learn: 8.1138413	total: 6.03s	remaining: 1.18s
251:	learn: 8.0824887	total: 6.05s	remaining: 1.15s
252:	learn: 8.0557089	total: 6.08s	remaining: 1.13s
253:	learn: 8.0378239	total: 6.1s	remaining: 1.1s
254:	learn: 8.0018329	total: 6.13s	remaining: 1.08s
255:	learn: 7.9776523	total: 6.15s	remaining: 1.06s
256:	learn: 7.9437470	total: 6.18s	remaining: 1.03s
257:	learn: 7.9170545	total: 6.21s	remaining: 1.01s
258:	learn: 7.9065923	total: 6.24s	remaining: 988ms
259:	learn: 7.8777123	total: 6.26s	remaining: 963ms
260:	learn: 7.8495349	total: 6.28s	remaining: 939ms
261:	learn: 7.8238648	total: 6.31s	remaining: 915ms
262:	learn: 7.8001134	total: 6.33s	remaining: 891ms
263:	learn: 7.7619007	total: 6.36s	remaining: 867ms
264:	learn: 7.7370130	total: 6.39s	remaining: 844ms
265:	learn: 7.7109084	total: 6.41s	remaining: 820ms
266:	learn: 7.6914677	total: 6.44s	remaining: 796ms
267:	learn: 7.6883177	total: 6.46s	remaining: 772ms
268:	learn: 7.6603652	total: 6.49s	remaining: 748ms
269:	learn: 7.6441569	total: 6.51s	remaining: 723ms
270:	learn: 7.6236642	total: 6.53s	remaining: 699ms
271:	learn: 7.5954955	total: 6.56s	remaining: 675ms
272:	learn: 7.5722024	total: 6.58s	remaining: 651ms
273:	learn: 7.5424505	total: 6.61s	remaining: 627ms
274:	learn: 7.5242764	total: 6.63s	remaining: 603ms
275:	learn: 7.4998291	total: 6.65s	remaining: 579ms
276:	learn: 7.4835526	total: 6.68s	remaining: 554ms
277:	learn: 7.4492474	total: 6.7s	remaining: 530ms
278:	learn: 7.4246335	total: 6.72s	remaining: 506ms
279:	learn: 7.4104530	total: 6.74s	remaining: 481ms
280:	learn: 7.4016977	total: 6.76s	remaining: 457ms
281:	learn: 7.3964367	total: 6.79s	remaining: 433ms
282:	learn: 7.3818806	total: 6.82s	remaining: 410ms
283:	learn: 7.3577327	total: 6.84s	remaining: 385ms
284:	learn: 7.3346564	total: 6.87s	remaining: 361ms
285:	learn: 7.3215898	total: 6.89s	remaining: 337ms
286:	learn: 7.3070161	total: 6.91s	remaining: 313ms
287:	learn: 7.2839231	total: 6.94s	remaining: 289ms
288:	learn: 7.2664252	total: 6.96s	remaining: 265ms
289:	learn: 7.2505303	total: 6.98s	remaining: 241ms
290:	learn: 7.2286141	total: 7.01s	remaining: 217ms
291:	learn: 7.2008212	total: 7.04s	remaining: 193ms
292:	learn: 7.1800203	total: 7.06s	remaining: 169ms
293:	learn: 7.1485097	total: 7.08s	remaining: 145ms
294:	learn: 7.1283191	total: 7.1s	remaining: 120ms
295:	learn: 7.1112866	total: 7.12s	remaining: 96.3ms
296:	learn: 7.0786679	total: 7.14s	remaining: 72.2ms
297:	learn: 7.0685798	total: 7.17s	remaining: 48.1ms
298:	learn: 7.0633802	total: 7.19s	remaining: 24.1ms
299:	learn: 7.0504357	total: 7.22s	remaining: 0us
0:	learn: 46.1068821	total: 3.01ms	remaining: 900ms
1:	learn: 45.5186259	total: 25.7ms	remaining: 3.84s
2:	learn: 44.8982427	total: 47.6ms	remaining: 4.72s
3:	learn: 44.0813314	total: 70.8ms	remaining: 5.24s
4:	learn: 43.3256787	total: 94ms	remaining: 5.54s
5:	learn: 42.5989163	total: 123ms	remaining: 6.03s
6:	learn: 41.8412255	total: 146ms	remaining: 6.13s
7:	learn: 41.1629605	total: 168ms	remaining: 6.15s
8:	learn: 40.6649568	total: 190ms	remaining: 6.15s
9:	learn: 40.1755647	total: 212ms	remaining: 6.14s
10:	learn: 39.7843303	total: 232ms	remaining: 6.09s
11:	learn: 39.1263454	total: 252ms	remaining: 6.04s
12:	learn: 38.5049650	total: 272ms	remaining: 6s
13:	learn: 37.8816934	total: 296ms	remaining: 6.04s
14:	learn: 37.3925567	total: 328ms	remaining: 6.23s
15:	learn: 36.8080381	total: 355ms	remaining: 6.3s
16:	learn: 36.1363624	total: 379ms	remaining: 6.31s
17:	learn: 35.8171279	total: 402ms	remaining: 6.3s
18:	learn: 35.2225026	total: 426ms	remaining: 6.29s
19:	learn: 34.7373286	total: 446ms	remaining: 6.25s
20:	learn: 34.2563365	total: 469ms	remaining: 6.23s
21:	learn: 33.9368110	total: 491ms	remaining: 6.2s
22:	learn: 33.5339596	total: 514ms	remaining: 6.19s
23:	learn: 33.2090930	total: 543ms	remaining: 6.24s
24:	learn: 32.8232733	total: 566ms	remaining: 6.22s
25:	learn: 32.5065756	total: 587ms	remaining: 6.19s
26:	learn: 32.0091556	total: 608ms	remaining: 6.14s
27:	learn: 31.5901880	total: 629ms	remaining: 6.11s
28:	learn: 31.2602719	total: 651ms	remaining: 6.08s
29:	learn: 30.9824864	total: 671ms	remaining: 6.04s
30:	learn: 30.6837776	total: 693ms	remaining: 6.01s
31:	learn: 30.3784738	total: 714ms	remaining: 5.98s
32:	learn: 29.9551890	total: 736ms	remaining: 5.95s
33:	learn: 29.6880796	total: 766ms	remaining: 5.99s
34:	learn: 29.3535204	total: 791ms	remaining: 5.99s
35:	learn: 29.0983115	total: 814ms	remaining: 5.97s
36:	learn: 28.8227016	total: 836ms	remaining: 5.94s
37:	learn: 28.5948966	total: 859ms	remaining: 5.92s
38:	learn: 28.2092747	total: 878ms	remaining: 5.88s
39:	learn: 27.9292918	total: 899ms	remaining: 5.84s
40:	learn: 27.6917466	total: 921ms	remaining: 5.82s
41:	learn: 27.3898320	total: 942ms	remaining: 5.78s
42:	learn: 27.1423506	total: 967ms	remaining: 5.78s
43:	learn: 26.9143906	total: 993ms	remaining: 5.77s
44:	learn: 26.6628354	total: 1.01s	remaining: 5.74s
45:	learn: 26.4436459	total: 1.03s	remaining: 5.72s
46:	learn: 26.2699511	total: 1.06s	remaining: 5.69s
47:	learn: 26.0687332	total: 1.08s	remaining: 5.66s
48:	learn: 25.8813257	total: 1.1s	remaining: 5.63s
49:	learn: 25.6417147	total: 1.12s	remaining: 5.6s
50:	learn: 25.4978473	total: 1.13s	remaining: 5.52s
51:	learn: 25.2508826	total: 1.15s	remaining: 5.5s
52:	learn: 24.9957667	total: 1.18s	remaining: 5.48s
53:	learn: 24.7897869	total: 1.2s	remaining: 5.45s
54:	learn: 24.6276395	total: 1.23s	remaining: 5.46s
55:	learn: 24.4484009	total: 1.25s	remaining: 5.44s
56:	learn: 24.2064871	total: 1.27s	remaining: 5.42s
57:	learn: 24.0355794	total: 1.29s	remaining: 5.4s
58:	learn: 23.8623034	total: 1.32s	remaining: 5.38s
59:	learn: 23.6009245	total: 1.34s	remaining: 5.35s
60:	learn: 23.4408382	total: 1.36s	remaining: 5.32s
61:	learn: 23.2362900	total: 1.38s	remaining: 5.29s
62:	learn: 23.0767254	total: 1.4s	remaining: 5.27s
63:	learn: 22.9370310	total: 1.43s	remaining: 5.27s
64:	learn: 22.7482690	total: 1.45s	remaining: 5.25s
65:	learn: 22.5740357	total: 1.47s	remaining: 5.23s
66:	learn: 22.4132876	total: 1.5s	remaining: 5.2s
67:	learn: 22.2551850	total: 1.52s	remaining: 5.18s
68:	learn: 22.0648127	total: 1.54s	remaining: 5.14s
69:	learn: 21.9204326	total: 1.56s	remaining: 5.11s
70:	learn: 21.8002567	total: 1.58s	remaining: 5.08s
71:	learn: 21.6545032	total: 1.6s	remaining: 5.06s
72:	learn: 21.5274427	total: 1.62s	remaining: 5.04s
73:	learn: 21.4235402	total: 1.65s	remaining: 5.03s
74:	learn: 21.2403786	total: 1.67s	remaining: 5.02s
75:	learn: 21.1019776	total: 1.7s	remaining: 5s
76:	learn: 20.9047503	total: 1.72s	remaining: 4.98s
77:	learn: 20.8140012	total: 1.74s	remaining: 4.96s
78:	learn: 20.7064981	total: 1.76s	remaining: 4.93s
79:	learn: 20.6033857	total: 1.78s	remaining: 4.9s
80:	learn: 20.4743532	total: 1.8s	remaining: 4.87s
81:	learn: 20.3272514	total: 1.82s	remaining: 4.85s
82:	learn: 20.2402909	total: 1.85s	remaining: 4.83s
83:	learn: 20.1344566	total: 1.88s	remaining: 4.82s
84:	learn: 19.9630804	total: 1.9s	remaining: 4.8s
85:	learn: 19.8196483	total: 1.92s	remaining: 4.77s
86:	learn: 19.6861323	total: 1.94s	remaining: 4.74s
87:	learn: 19.5689921	total: 1.96s	remaining: 4.72s
88:	learn: 19.4766099	total: 1.98s	remaining: 4.69s
89:	learn: 19.3523859	total: 2s	remaining: 4.67s
90:	learn: 19.2512307	total: 2.02s	remaining: 4.65s
91:	learn: 19.1541965	total: 2.05s	remaining: 4.63s
92:	learn: 18.9980138	total: 2.08s	remaining: 4.63s
93:	learn: 18.8241638	total: 2.1s	remaining: 4.61s
94:	learn: 18.6982820	total: 2.13s	remaining: 4.59s
95:	learn: 18.6170939	total: 2.15s	remaining: 4.57s
96:	learn: 18.5216398	total: 2.17s	remaining: 4.55s
97:	learn: 18.4188891	total: 2.19s	remaining: 4.52s
98:	learn: 18.3473321	total: 2.22s	remaining: 4.5s
99:	learn: 18.2744582	total: 2.24s	remaining: 4.48s
100:	learn: 18.1064776	total: 2.26s	remaining: 4.46s
101:	learn: 18.0564103	total: 2.28s	remaining: 4.43s
102:	learn: 17.9684931	total: 2.31s	remaining: 4.43s
103:	learn: 17.8577080	total: 2.34s	remaining: 4.41s
104:	learn: 17.7557863	total: 2.36s	remaining: 4.38s
105:	learn: 17.6830354	total: 2.38s	remaining: 4.36s
106:	learn: 17.5928641	total: 2.4s	remaining: 4.33s
107:	learn: 17.5447625	total: 2.42s	remaining: 4.31s
108:	learn: 17.4830060	total: 2.45s	remaining: 4.29s
109:	learn: 17.3760969	total: 2.47s	remaining: 4.27s
110:	learn: 17.2990516	total: 2.5s	remaining: 4.26s
111:	learn: 17.2626219	total: 2.53s	remaining: 4.25s
112:	learn: 17.1610712	total: 2.55s	remaining: 4.22s
113:	learn: 17.1129518	total: 2.58s	remaining: 4.2s
114:	learn: 16.9637799	total: 2.6s	remaining: 4.18s
115:	learn: 16.8724617	total: 2.62s	remaining: 4.16s
116:	learn: 16.7990982	total: 2.64s	remaining: 4.13s
117:	learn: 16.7354572	total: 2.67s	remaining: 4.11s
118:	learn: 16.6225750	total: 2.69s	remaining: 4.09s
119:	learn: 16.5778971	total: 2.72s	remaining: 4.08s
120:	learn: 16.5383915	total: 2.74s	remaining: 4.05s
121:	learn: 16.4801189	total: 2.76s	remaining: 4.03s
122:	learn: 16.3909340	total: 2.78s	remaining: 4s
123:	learn: 16.3129754	total: 2.8s	remaining: 3.98s
124:	learn: 16.2430907	total: 2.82s	remaining: 3.95s
125:	learn: 16.1779646	total: 2.85s	remaining: 3.93s
126:	learn: 16.1162194	total: 2.87s	remaining: 3.9s
127:	learn: 16.0084749	total: 2.89s	remaining: 3.88s
128:	learn: 15.9268705	total: 2.92s	remaining: 3.87s
129:	learn: 15.8770194	total: 2.94s	remaining: 3.85s
130:	learn: 15.8445342	total: 2.97s	remaining: 3.83s
131:	learn: 15.7799082	total: 2.99s	remaining: 3.81s
132:	learn: 15.7225612	total: 3.01s	remaining: 3.79s
133:	learn: 15.6327986	total: 3.04s	remaining: 3.76s
134:	learn: 15.5560479	total: 3.06s	remaining: 3.74s
135:	learn: 15.4650063	total: 3.08s	remaining: 3.72s
136:	learn: 15.4439565	total: 3.1s	remaining: 3.69s
137:	learn: 15.3723683	total: 3.13s	remaining: 3.67s
138:	learn: 15.2867520	total: 3.15s	remaining: 3.65s
139:	learn: 15.2008060	total: 3.18s	remaining: 3.63s
140:	learn: 15.1226253	total: 3.2s	remaining: 3.61s
141:	learn: 15.0392603	total: 3.22s	remaining: 3.59s
142:	learn: 15.0209441	total: 3.25s	remaining: 3.56s
143:	learn: 14.9691162	total: 3.27s	remaining: 3.54s
144:	learn: 14.8809723	total: 3.29s	remaining: 3.52s
145:	learn: 14.7790501	total: 3.31s	remaining: 3.5s
146:	learn: 14.7124707	total: 3.34s	remaining: 3.47s
147:	learn: 14.6505409	total: 3.36s	remaining: 3.45s
148:	learn: 14.5977957	total: 3.39s	remaining: 3.44s
149:	learn: 14.4563773	total: 3.42s	remaining: 3.42s
150:	learn: 14.3903954	total: 3.44s	remaining: 3.4s
151:	learn: 14.3677191	total: 3.46s	remaining: 3.37s
152:	learn: 14.3170088	total: 3.49s	remaining: 3.35s
153:	learn: 14.2212460	total: 3.51s	remaining: 3.33s
154:	learn: 14.1865067	total: 3.53s	remaining: 3.3s
155:	learn: 14.1133763	total: 3.56s	remaining: 3.28s
156:	learn: 14.0632935	total: 3.58s	remaining: 3.26s
157:	learn: 14.0317962	total: 3.6s	remaining: 3.24s
158:	learn: 13.9531527	total: 3.62s	remaining: 3.21s
159:	learn: 13.9361664	total: 3.64s	remaining: 3.19s
160:	learn: 13.8152344	total: 3.66s	remaining: 3.16s
161:	learn: 13.7794016	total: 3.68s	remaining: 3.14s
162:	learn: 13.7554484	total: 3.7s	remaining: 3.11s
163:	learn: 13.6786599	total: 3.73s	remaining: 3.09s
164:	learn: 13.6580934	total: 3.75s	remaining: 3.07s
165:	learn: 13.6135467	total: 3.77s	remaining: 3.04s
166:	learn: 13.5774402	total: 3.8s	remaining: 3.02s
167:	learn: 13.4665364	total: 3.82s	remaining: 3s
168:	learn: 13.4457745	total: 3.84s	remaining: 2.98s
169:	learn: 13.4313272	total: 3.87s	remaining: 2.96s
170:	learn: 13.3740130	total: 3.89s	remaining: 2.93s
171:	learn: 13.3012082	total: 3.91s	remaining: 2.91s
172:	learn: 13.2580888	total: 3.93s	remaining: 2.89s
173:	learn: 13.2260963	total: 3.95s	remaining: 2.86s
174:	learn: 13.1934687	total: 3.97s	remaining: 2.84s
175:	learn: 13.1567898	total: 4s	remaining: 2.81s
176:	learn: 13.1207167	total: 4.02s	remaining: 2.8s
177:	learn: 13.0453975	total: 4.04s	remaining: 2.77s
178:	learn: 12.9667806	total: 4.07s	remaining: 2.75s
179:	learn: 12.9050987	total: 4.09s	remaining: 2.73s
180:	learn: 12.7877614	total: 4.11s	remaining: 2.7s
181:	learn: 12.7246635	total: 4.13s	remaining: 2.68s
182:	learn: 12.6649785	total: 4.15s	remaining: 2.65s
183:	learn: 12.5966292	total: 4.17s	remaining: 2.63s
184:	learn: 12.5791866	total: 4.19s	remaining: 2.61s
185:	learn: 12.5265550	total: 4.23s	remaining: 2.59s
186:	learn: 12.4747790	total: 4.25s	remaining: 2.57s
187:	learn: 12.3639334	total: 4.27s	remaining: 2.54s
188:	learn: 12.3060104	total: 4.29s	remaining: 2.52s
189:	learn: 12.2108815	total: 4.32s	remaining: 2.5s
190:	learn: 12.1295363	total: 4.34s	remaining: 2.48s
191:	learn: 12.0828143	total: 4.36s	remaining: 2.45s
192:	learn: 12.0650770	total: 4.38s	remaining: 2.43s
193:	learn: 11.9979395	total: 4.41s	remaining: 2.41s
194:	learn: 11.9754814	total: 4.43s	remaining: 2.38s
195:	learn: 11.9328555	total: 4.45s	remaining: 2.36s
196:	learn: 11.9122042	total: 4.47s	remaining: 2.34s
197:	learn: 11.8518842	total: 4.49s	remaining: 2.31s
198:	learn: 11.8304153	total: 4.52s	remaining: 2.29s
199:	learn: 11.8121741	total: 4.54s	remaining: 2.27s
200:	learn: 11.7411942	total: 4.56s	remaining: 2.24s
201:	learn: 11.7329288	total: 4.58s	remaining: 2.22s
202:	learn: 11.7074830	total: 4.6s	remaining: 2.2s
203:	learn: 11.6479110	total: 4.62s	remaining: 2.17s
204:	learn: 11.6341037	total: 4.64s	remaining: 2.15s
205:	learn: 11.5703505	total: 4.67s	remaining: 2.13s
206:	learn: 11.5415491	total: 4.69s	remaining: 2.11s
207:	learn: 11.5016416	total: 4.72s	remaining: 2.09s
208:	learn: 11.4843453	total: 4.74s	remaining: 2.06s
209:	learn: 11.4556878	total: 4.76s	remaining: 2.04s
210:	learn: 11.3953637	total: 4.78s	remaining: 2.02s
211:	learn: 11.3640248	total: 4.8s	remaining: 1.99s
212:	learn: 11.3189656	total: 4.83s	remaining: 1.97s
213:	learn: 11.3023318	total: 4.85s	remaining: 1.95s
214:	learn: 11.2812809	total: 4.88s	remaining: 1.93s
215:	learn: 11.2649164	total: 4.9s	remaining: 1.91s
216:	learn: 11.2249674	total: 4.92s	remaining: 1.88s
217:	learn: 11.1694593	total: 4.94s	remaining: 1.86s
218:	learn: 11.1504747	total: 4.96s	remaining: 1.84s
219:	learn: 11.1099205	total: 4.98s	remaining: 1.81s
220:	learn: 11.0946598	total: 5.01s	remaining: 1.79s
221:	learn: 11.0335988	total: 5.03s	remaining: 1.77s
222:	learn: 11.0096492	total: 5.05s	remaining: 1.74s
223:	learn: 10.9672501	total: 5.07s	remaining: 1.72s
224:	learn: 10.9507570	total: 5.1s	remaining: 1.7s
225:	learn: 10.9314289	total: 5.13s	remaining: 1.68s
226:	learn: 10.8670947	total: 5.15s	remaining: 1.66s
227:	learn: 10.8529443	total: 5.17s	remaining: 1.63s
228:	learn: 10.8318645	total: 5.2s	remaining: 1.61s
229:	learn: 10.8156588	total: 5.22s	remaining: 1.59s
230:	learn: 10.7951131	total: 5.24s	remaining: 1.56s
231:	learn: 10.7795677	total: 5.26s	remaining: 1.54s
232:	learn: 10.7366028	total: 5.29s	remaining: 1.52s
233:	learn: 10.7193612	total: 5.32s	remaining: 1.5s
234:	learn: 10.6990737	total: 5.34s	remaining: 1.48s
235:	learn: 10.6205495	total: 5.36s	remaining: 1.45s
236:	learn: 10.5976748	total: 5.39s	remaining: 1.43s
237:	learn: 10.5212017	total: 5.41s	remaining: 1.41s
238:	learn: 10.4839783	total: 5.43s	remaining: 1.39s
239:	learn: 10.4723193	total: 5.46s	remaining: 1.36s
240:	learn: 10.4438944	total: 5.48s	remaining: 1.34s
241:	learn: 10.4068644	total: 5.5s	remaining: 1.32s
242:	learn: 10.3777867	total: 5.54s	remaining: 1.3s
243:	learn: 10.3633196	total: 5.56s	remaining: 1.28s
244:	learn: 10.3508529	total: 5.58s	remaining: 1.25s
245:	learn: 10.3391285	total: 5.61s	remaining: 1.23s
246:	learn: 10.3202046	total: 5.63s	remaining: 1.21s
247:	learn: 10.2679507	total: 5.65s	remaining: 1.18s
248:	learn: 10.2444411	total: 5.67s	remaining: 1.16s
249:	learn: 10.1978707	total: 5.69s	remaining: 1.14s
250:	learn: 10.1746210	total: 5.71s	remaining: 1.11s
251:	learn: 10.1455445	total: 5.74s	remaining: 1.09s
252:	learn: 10.1234292	total: 5.77s	remaining: 1.07s
253:	learn: 10.1009263	total: 5.79s	remaining: 1.05s
254:	learn: 10.0506537	total: 5.81s	remaining: 1.02s
255:	learn: 9.9973799	total: 5.83s	remaining: 1s
256:	learn: 9.9923793	total: 5.86s	remaining: 980ms
257:	learn: 9.9592135	total: 5.88s	remaining: 957ms
258:	learn: 9.9455912	total: 5.9s	remaining: 934ms
259:	learn: 9.9351881	total: 5.92s	remaining: 911ms
260:	learn: 9.8843396	total: 5.95s	remaining: 889ms
261:	learn: 9.8732841	total: 5.98s	remaining: 867ms
262:	learn: 9.8530402	total: 6s	remaining: 844ms
263:	learn: 9.8379209	total: 6.02s	remaining: 821ms
264:	learn: 9.8012657	total: 6.05s	remaining: 799ms
265:	learn: 9.7881742	total: 6.07s	remaining: 776ms
266:	learn: 9.7723933	total: 6.09s	remaining: 753ms
267:	learn: 9.7613461	total: 6.11s	remaining: 730ms
268:	learn: 9.7214417	total: 6.14s	remaining: 707ms
269:	learn: 9.6976897	total: 6.17s	remaining: 685ms
270:	learn: 9.6919786	total: 6.19s	remaining: 663ms
271:	learn: 9.6263135	total: 6.22s	remaining: 640ms
272:	learn: 9.6175527	total: 6.24s	remaining: 617ms
273:	learn: 9.6110661	total: 6.26s	remaining: 594ms
274:	learn: 9.5992549	total: 6.29s	remaining: 571ms
275:	learn: 9.5709079	total: 6.31s	remaining: 549ms
276:	learn: 9.5584595	total: 6.33s	remaining: 526ms
277:	learn: 9.5492847	total: 6.37s	remaining: 504ms
278:	learn: 9.5261231	total: 6.39s	remaining: 481ms
279:	learn: 9.5160964	total: 6.42s	remaining: 458ms
280:	learn: 9.4945891	total: 6.44s	remaining: 435ms
281:	learn: 9.4659751	total: 6.46s	remaining: 413ms
282:	learn: 9.4474987	total: 6.48s	remaining: 390ms
283:	learn: 9.4369109	total: 6.51s	remaining: 367ms
284:	learn: 9.4285200	total: 6.53s	remaining: 344ms
285:	learn: 9.4124421	total: 6.55s	remaining: 321ms
286:	learn: 9.3903730	total: 6.58s	remaining: 298ms
287:	learn: 9.3240575	total: 6.6s	remaining: 275ms
288:	learn: 9.3124220	total: 6.62s	remaining: 252ms
289:	learn: 9.2881271	total: 6.64s	remaining: 229ms
290:	learn: 9.2713655	total: 6.67s	remaining: 206ms
291:	learn: 9.2641531	total: 6.69s	remaining: 183ms
292:	learn: 9.2524129	total: 6.71s	remaining: 160ms
293:	learn: 9.2343575	total: 6.73s	remaining: 137ms
294:	learn: 9.1973322	total: 6.75s	remaining: 114ms
295:	learn: 9.1565802	total: 6.78s	remaining: 91.6ms
296:	learn: 9.1428051	total: 6.8s	remaining: 68.7ms
297:	learn: 9.1293653	total: 6.83s	remaining: 45.8ms
298:	learn: 9.1105879	total: 6.85s	remaining: 22.9ms
299:	learn: 9.1005583	total: 6.87s	remaining: 0us
0:	learn: 46.9033478	total: 20.3ms	remaining: 6.07s
1:	learn: 46.0879122	total: 42.3ms	remaining: 6.31s
2:	learn: 45.6500716	total: 64.3ms	remaining: 6.36s
3:	learn: 44.8037484	total: 91ms	remaining: 6.73s
4:	learn: 44.1513690	total: 113ms	remaining: 6.65s
5:	learn: 43.6033150	total: 135ms	remaining: 6.64s
6:	learn: 43.0669517	total: 155ms	remaining: 6.48s
7:	learn: 42.4011723	total: 175ms	remaining: 6.38s
8:	learn: 41.7060291	total: 194ms	remaining: 6.27s
9:	learn: 41.0058676	total: 216ms	remaining: 6.28s
10:	learn: 40.5518615	total: 238ms	remaining: 6.26s
11:	learn: 39.9452722	total: 262ms	remaining: 6.28s
12:	learn: 39.2539405	total: 287ms	remaining: 6.34s
13:	learn: 38.6690449	total: 320ms	remaining: 6.53s
14:	learn: 38.2389829	total: 342ms	remaining: 6.5s
15:	learn: 37.6795608	total: 365ms	remaining: 6.48s
16:	learn: 37.2562038	total: 388ms	remaining: 6.45s
17:	learn: 36.9516174	total: 414ms	remaining: 6.49s
18:	learn: 36.6189442	total: 437ms	remaining: 6.46s
19:	learn: 36.0530153	total: 460ms	remaining: 6.43s
20:	learn: 35.6536993	total: 490ms	remaining: 6.51s
21:	learn: 35.3616790	total: 514ms	remaining: 6.5s
22:	learn: 35.0627472	total: 537ms	remaining: 6.46s
23:	learn: 34.5889995	total: 559ms	remaining: 6.43s
24:	learn: 34.0395768	total: 579ms	remaining: 6.37s
25:	learn: 33.6846146	total: 602ms	remaining: 6.34s
26:	learn: 33.2581583	total: 624ms	remaining: 6.3s
27:	learn: 32.9043599	total: 647ms	remaining: 6.28s
28:	learn: 32.4603681	total: 670ms	remaining: 6.26s
29:	learn: 32.0784225	total: 698ms	remaining: 6.29s
30:	learn: 31.6654390	total: 728ms	remaining: 6.32s
31:	learn: 31.3473625	total: 752ms	remaining: 6.3s
32:	learn: 30.9124340	total: 776ms	remaining: 6.28s
33:	learn: 30.6354683	total: 800ms	remaining: 6.26s
34:	learn: 30.4404098	total: 824ms	remaining: 6.24s
35:	learn: 30.1914372	total: 849ms	remaining: 6.22s
36:	learn: 29.8249863	total: 870ms	remaining: 6.18s
37:	learn: 29.5196757	total: 893ms	remaining: 6.16s
38:	learn: 29.2605473	total: 921ms	remaining: 6.16s
39:	learn: 28.9803384	total: 947ms	remaining: 6.15s
40:	learn: 28.7535173	total: 969ms	remaining: 6.12s
41:	learn: 28.3888690	total: 990ms	remaining: 6.08s
42:	learn: 28.1381916	total: 1.01s	remaining: 6.04s
43:	learn: 27.9181568	total: 1.03s	remaining: 6.01s
44:	learn: 27.6047071	total: 1.05s	remaining: 5.98s
45:	learn: 27.4164606	total: 1.07s	remaining: 5.94s
46:	learn: 27.0321668	total: 1.1s	remaining: 5.91s
47:	learn: 26.7987572	total: 1.12s	remaining: 5.89s
48:	learn: 26.6235810	total: 1.15s	remaining: 5.91s
49:	learn: 26.4084368	total: 1.18s	remaining: 5.89s
50:	learn: 26.1773159	total: 1.2s	remaining: 5.87s
51:	learn: 26.0200665	total: 1.23s	remaining: 5.84s
52:	learn: 25.8168330	total: 1.25s	remaining: 5.82s
53:	learn: 25.6154150	total: 1.27s	remaining: 5.78s
54:	learn: 25.2351738	total: 1.29s	remaining: 5.75s
55:	learn: 24.9587143	total: 1.31s	remaining: 5.72s
56:	learn: 24.7682982	total: 1.34s	remaining: 5.7s
57:	learn: 24.4602191	total: 1.36s	remaining: 5.68s
58:	learn: 24.3002094	total: 1.38s	remaining: 5.65s
59:	learn: 24.1509360	total: 1.41s	remaining: 5.63s
60:	learn: 23.9855802	total: 1.43s	remaining: 5.59s
61:	learn: 23.7747817	total: 1.45s	remaining: 5.55s
62:	learn: 23.5415832	total: 1.47s	remaining: 5.52s
63:	learn: 23.3540053	total: 1.49s	remaining: 5.48s
64:	learn: 23.1213752	total: 1.51s	remaining: 5.45s
65:	learn: 22.9729934	total: 1.53s	remaining: 5.43s
66:	learn: 22.8237351	total: 1.56s	remaining: 5.42s
67:	learn: 22.6716691	total: 1.59s	remaining: 5.42s
68:	learn: 22.5296861	total: 1.61s	remaining: 5.39s
69:	learn: 22.3725425	total: 1.63s	remaining: 5.37s
70:	learn: 22.2639328	total: 1.66s	remaining: 5.35s
71:	learn: 22.1174316	total: 1.68s	remaining: 5.33s
72:	learn: 21.9916264	total: 1.7s	remaining: 5.29s
73:	learn: 21.7797959	total: 1.72s	remaining: 5.26s
74:	learn: 21.6350589	total: 1.75s	remaining: 5.24s
75:	learn: 21.4910112	total: 1.77s	remaining: 5.22s
76:	learn: 21.3068682	total: 1.79s	remaining: 5.2s
77:	learn: 21.1725772	total: 1.82s	remaining: 5.17s
78:	learn: 21.0526496	total: 1.84s	remaining: 5.14s
79:	learn: 20.9534374	total: 1.86s	remaining: 5.12s
80:	learn: 20.8168422	total: 1.88s	remaining: 5.09s
81:	learn: 20.7138006	total: 1.91s	remaining: 5.07s
82:	learn: 20.5259907	total: 1.93s	remaining: 5.04s
83:	learn: 20.3881958	total: 1.95s	remaining: 5.01s
84:	learn: 20.2702350	total: 1.97s	remaining: 4.98s
85:	learn: 20.1185381	total: 2s	remaining: 4.99s
86:	learn: 19.9815763	total: 2.03s	remaining: 4.97s
87:	learn: 19.8563040	total: 2.05s	remaining: 4.94s
88:	learn: 19.7629932	total: 2.08s	remaining: 4.92s
89:	learn: 19.6361676	total: 2.1s	remaining: 4.9s
90:	learn: 19.5189179	total: 2.12s	remaining: 4.87s
91:	learn: 19.4368807	total: 2.14s	remaining: 4.84s
92:	learn: 19.3491759	total: 2.16s	remaining: 4.81s
93:	learn: 19.2441781	total: 2.19s	remaining: 4.79s
94:	learn: 19.1595312	total: 2.21s	remaining: 4.78s
95:	learn: 19.0732186	total: 2.24s	remaining: 4.75s
96:	learn: 18.9664261	total: 2.26s	remaining: 4.72s
97:	learn: 18.8752837	total: 2.28s	remaining: 4.7s
98:	learn: 18.7884732	total: 2.3s	remaining: 4.67s
99:	learn: 18.6638300	total: 2.32s	remaining: 4.64s
100:	learn: 18.5456185	total: 2.34s	remaining: 4.61s
101:	learn: 18.4491938	total: 2.36s	remaining: 4.58s
102:	learn: 18.3712210	total: 2.38s	remaining: 4.55s
103:	learn: 18.2907426	total: 2.4s	remaining: 4.53s
104:	learn: 18.2393122	total: 2.43s	remaining: 4.51s
105:	learn: 18.1493295	total: 2.46s	remaining: 4.49s
106:	learn: 18.0741996	total: 2.48s	remaining: 4.47s
107:	learn: 17.9763617	total: 2.5s	remaining: 4.44s
108:	learn: 17.8511711	total: 2.52s	remaining: 4.42s
109:	learn: 17.7975521	total: 2.54s	remaining: 4.4s
110:	learn: 17.7280526	total: 2.56s	remaining: 4.37s
111:	learn: 17.6960456	total: 2.58s	remaining: 4.34s
112:	learn: 17.6209638	total: 2.6s	remaining: 4.31s
113:	learn: 17.5389165	total: 2.63s	remaining: 4.29s
114:	learn: 17.4874967	total: 2.66s	remaining: 4.28s
115:	learn: 17.3744401	total: 2.68s	remaining: 4.25s
116:	learn: 17.2762107	total: 2.7s	remaining: 4.22s
117:	learn: 17.1930198	total: 2.72s	remaining: 4.2s
118:	learn: 17.0804375	total: 2.74s	remaining: 4.17s
119:	learn: 17.0100383	total: 2.76s	remaining: 4.14s
120:	learn: 16.9515165	total: 2.78s	remaining: 4.12s
121:	learn: 16.8221030	total: 2.81s	remaining: 4.09s
122:	learn: 16.7270258	total: 2.83s	remaining: 4.07s
123:	learn: 16.6537882	total: 2.86s	remaining: 4.06s
124:	learn: 16.5324707	total: 2.88s	remaining: 4.04s
125:	learn: 16.4705263	total: 2.91s	remaining: 4.01s
126:	learn: 16.4130833	total: 2.93s	remaining: 3.99s
127:	learn: 16.3480615	total: 2.95s	remaining: 3.97s
128:	learn: 16.2228205	total: 2.97s	remaining: 3.94s
129:	learn: 16.1299284	total: 2.99s	remaining: 3.91s
130:	learn: 16.0593548	total: 3.01s	remaining: 3.89s
131:	learn: 15.9926308	total: 3.03s	remaining: 3.86s
132:	learn: 15.9351137	total: 3.06s	remaining: 3.84s
133:	learn: 15.8301951	total: 3.08s	remaining: 3.82s
134:	learn: 15.7606319	total: 3.1s	remaining: 3.79s
135:	learn: 15.6217872	total: 3.13s	remaining: 3.77s
136:	learn: 15.5200572	total: 3.15s	remaining: 3.75s
137:	learn: 15.4565615	total: 3.17s	remaining: 3.72s
138:	learn: 15.3854906	total: 3.19s	remaining: 3.69s
139:	learn: 15.3407126	total: 3.21s	remaining: 3.67s
140:	learn: 15.2532536	total: 3.23s	remaining: 3.64s
141:	learn: 15.2129349	total: 3.25s	remaining: 3.62s
142:	learn: 15.1732289	total: 3.27s	remaining: 3.59s
143:	learn: 15.1138929	total: 3.3s	remaining: 3.57s
144:	learn: 15.0326156	total: 3.32s	remaining: 3.55s
145:	learn: 14.9309324	total: 3.35s	remaining: 3.53s
146:	learn: 14.8657435	total: 3.37s	remaining: 3.51s
147:	learn: 14.8314609	total: 3.39s	remaining: 3.49s
148:	learn: 14.7431116	total: 3.42s	remaining: 3.46s
149:	learn: 14.6590351	total: 3.44s	remaining: 3.44s
150:	learn: 14.5339193	total: 3.46s	remaining: 3.41s
151:	learn: 14.4639900	total: 3.48s	remaining: 3.39s
152:	learn: 14.3967135	total: 3.51s	remaining: 3.37s
153:	learn: 14.3077714	total: 3.54s	remaining: 3.35s
154:	learn: 14.2227051	total: 3.56s	remaining: 3.33s
155:	learn: 14.1541051	total: 3.58s	remaining: 3.31s
156:	learn: 14.1099666	total: 3.6s	remaining: 3.28s
157:	learn: 14.0474387	total: 3.62s	remaining: 3.25s
158:	learn: 13.9402729	total: 3.64s	remaining: 3.23s
159:	learn: 13.8714208	total: 3.67s	remaining: 3.21s
160:	learn: 13.7798180	total: 3.69s	remaining: 3.19s
161:	learn: 13.6785277	total: 3.71s	remaining: 3.16s
162:	learn: 13.5985050	total: 3.74s	remaining: 3.15s
163:	learn: 13.5743583	total: 3.77s	remaining: 3.13s
164:	learn: 13.4271067	total: 3.79s	remaining: 3.1s
165:	learn: 13.3787394	total: 3.81s	remaining: 3.08s
166:	learn: 13.3132605	total: 3.84s	remaining: 3.06s
167:	learn: 13.2185878	total: 3.86s	remaining: 3.03s
168:	learn: 13.2025287	total: 3.88s	remaining: 3.01s
169:	learn: 13.1393556	total: 3.9s	remaining: 2.98s
170:	learn: 13.0898086	total: 3.93s	remaining: 2.96s
171:	learn: 12.9970587	total: 3.95s	remaining: 2.94s
172:	learn: 12.8778568	total: 3.98s	remaining: 2.92s
173:	learn: 12.7715298	total: 4s	remaining: 2.9s
174:	learn: 12.7109534	total: 4.02s	remaining: 2.87s
175:	learn: 12.6499951	total: 4.04s	remaining: 2.85s
176:	learn: 12.5781341	total: 4.06s	remaining: 2.82s
177:	learn: 12.5302935	total: 4.08s	remaining: 2.8s
178:	learn: 12.4570172	total: 4.1s	remaining: 2.77s
179:	learn: 12.3852468	total: 4.13s	remaining: 2.75s
180:	learn: 12.3218479	total: 4.15s	remaining: 2.73s
181:	learn: 12.2146968	total: 4.18s	remaining: 2.71s
182:	learn: 12.0872854	total: 4.21s	remaining: 2.69s
183:	learn: 12.0609707	total: 4.23s	remaining: 2.67s
184:	learn: 11.9443946	total: 4.25s	remaining: 2.64s
185:	learn: 11.8745310	total: 4.28s	remaining: 2.62s
186:	learn: 11.7895958	total: 4.3s	remaining: 2.6s
187:	learn: 11.7497478	total: 4.32s	remaining: 2.57s
188:	learn: 11.6831548	total: 4.34s	remaining: 2.55s
189:	learn: 11.6608564	total: 4.36s	remaining: 2.53s
190:	learn: 11.6399052	total: 4.39s	remaining: 2.51s
191:	learn: 11.5714004	total: 4.42s	remaining: 2.48s
192:	learn: 11.5427662	total: 4.44s	remaining: 2.46s
193:	learn: 11.4806208	total: 4.46s	remaining: 2.43s
194:	learn: 11.4691327	total: 4.48s	remaining: 2.41s
195:	learn: 11.4134172	total: 4.5s	remaining: 2.39s
196:	learn: 11.3438004	total: 4.52s	remaining: 2.36s
197:	learn: 11.3015149	total: 4.54s	remaining: 2.34s
198:	learn: 11.2493782	total: 4.56s	remaining: 2.31s
199:	learn: 11.1895539	total: 4.59s	remaining: 2.29s
200:	learn: 11.1683522	total: 4.62s	remaining: 2.27s
201:	learn: 11.1466698	total: 4.64s	remaining: 2.25s
202:	learn: 11.0701090	total: 4.67s	remaining: 2.23s
203:	learn: 11.0293322	total: 4.69s	remaining: 2.21s
204:	learn: 10.9637933	total: 4.71s	remaining: 2.18s
205:	learn: 10.9171875	total: 4.74s	remaining: 2.16s
206:	learn: 10.8620107	total: 4.76s	remaining: 2.14s
207:	learn: 10.8411017	total: 4.78s	remaining: 2.11s
208:	learn: 10.8219871	total: 4.8s	remaining: 2.09s
209:	learn: 10.7790684	total: 4.83s	remaining: 2.07s
210:	learn: 10.7460005	total: 4.86s	remaining: 2.05s
211:	learn: 10.6884581	total: 4.88s	remaining: 2.02s
212:	learn: 10.6215835	total: 4.9s	remaining: 2s
213:	learn: 10.6112487	total: 4.92s	remaining: 1.98s
214:	learn: 10.5515861	total: 4.94s	remaining: 1.95s
215:	learn: 10.5005611	total: 4.96s	remaining: 1.93s
216:	learn: 10.4827029	total: 4.98s	remaining: 1.91s
217:	learn: 10.4671266	total: 5s	remaining: 1.88s
218:	learn: 10.4471117	total: 5.03s	remaining: 1.86s
219:	learn: 10.4286227	total: 5.06s	remaining: 1.84s
220:	learn: 10.4102334	total: 5.08s	remaining: 1.82s
221:	learn: 10.3587364	total: 5.11s	remaining: 1.79s
222:	learn: 10.3185900	total: 5.13s	remaining: 1.77s
223:	learn: 10.3047695	total: 5.15s	remaining: 1.75s
224:	learn: 10.2861237	total: 5.17s	remaining: 1.72s
225:	learn: 10.2723077	total: 5.19s	remaining: 1.7s
226:	learn: 10.2566131	total: 5.22s	remaining: 1.68s
227:	learn: 10.2444076	total: 5.24s	remaining: 1.66s
228:	learn: 10.2035037	total: 5.27s	remaining: 1.63s
229:	learn: 10.1151548	total: 5.29s	remaining: 1.61s
230:	learn: 10.0952083	total: 5.31s	remaining: 1.59s
231:	learn: 10.0785525	total: 5.33s	remaining: 1.56s
232:	learn: 10.0582314	total: 5.35s	remaining: 1.54s
233:	learn: 10.0399370	total: 5.38s	remaining: 1.52s
234:	learn: 10.0277451	total: 5.4s	remaining: 1.49s
235:	learn: 9.9732252	total: 5.42s	remaining: 1.47s
236:	learn: 9.9602566	total: 5.45s	remaining: 1.45s
237:	learn: 9.9117022	total: 5.47s	remaining: 1.43s
238:	learn: 9.8771993	total: 5.49s	remaining: 1.4s
239:	learn: 9.8360533	total: 5.51s	remaining: 1.38s
240:	learn: 9.8228622	total: 5.54s	remaining: 1.35s
241:	learn: 9.7831566	total: 5.56s	remaining: 1.33s
242:	learn: 9.7238030	total: 5.58s	remaining: 1.31s
243:	learn: 9.6756010	total: 5.6s	remaining: 1.28s
244:	learn: 9.6573706	total: 5.62s	remaining: 1.26s
245:	learn: 9.6190420	total: 5.64s	remaining: 1.24s
246:	learn: 9.5963929	total: 5.67s	remaining: 1.22s
247:	learn: 9.5838279	total: 5.69s	remaining: 1.19s
248:	learn: 9.5516337	total: 5.71s	remaining: 1.17s
249:	learn: 9.5319568	total: 5.74s	remaining: 1.15s
250:	learn: 9.5009733	total: 5.76s	remaining: 1.12s
251:	learn: 9.4738909	total: 5.78s	remaining: 1.1s
252:	learn: 9.4573897	total: 5.8s	remaining: 1.08s
253:	learn: 9.4238859	total: 5.82s	remaining: 1.05s
254:	learn: 9.3792324	total: 5.84s	remaining: 1.03s
255:	learn: 9.3552571	total: 5.87s	remaining: 1.01s
256:	learn: 9.3036260	total: 5.9s	remaining: 987ms
257:	learn: 9.2868142	total: 5.92s	remaining: 964ms
258:	learn: 9.2740504	total: 5.94s	remaining: 940ms
259:	learn: 9.2329336	total: 5.96s	remaining: 917ms
260:	learn: 9.2190698	total: 5.98s	remaining: 894ms
261:	learn: 9.2074817	total: 6.01s	remaining: 871ms
262:	learn: 9.1724174	total: 6.03s	remaining: 848ms
263:	learn: 9.1293699	total: 6.05s	remaining: 825ms
264:	learn: 9.1025091	total: 6.07s	remaining: 802ms
265:	learn: 9.0893697	total: 6.1s	remaining: 779ms
266:	learn: 9.0733581	total: 6.12s	remaining: 756ms
267:	learn: 9.0599268	total: 6.14s	remaining: 733ms
268:	learn: 9.0277334	total: 6.16s	remaining: 710ms
269:	learn: 8.9860960	total: 6.18s	remaining: 686ms
270:	learn: 8.9478404	total: 6.2s	remaining: 663ms
271:	learn: 8.9074990	total: 6.22s	remaining: 640ms
272:	learn: 8.8851827	total: 6.24s	remaining: 617ms
273:	learn: 8.8741463	total: 6.26s	remaining: 594ms
274:	learn: 8.8422813	total: 6.29s	remaining: 572ms
275:	learn: 8.7887362	total: 6.32s	remaining: 549ms
276:	learn: 8.7766205	total: 6.34s	remaining: 526ms
277:	learn: 8.7606125	total: 6.36s	remaining: 503ms
278:	learn: 8.7302098	total: 6.38s	remaining: 481ms
279:	learn: 8.7180658	total: 6.4s	remaining: 457ms
280:	learn: 8.6784364	total: 6.42s	remaining: 434ms
281:	learn: 8.6341139	total: 6.44s	remaining: 411ms
282:	learn: 8.6092132	total: 6.46s	remaining: 388ms
283:	learn: 8.5723040	total: 6.49s	remaining: 366ms
284:	learn: 8.5318798	total: 6.52s	remaining: 343ms
285:	learn: 8.5051575	total: 6.54s	remaining: 320ms
286:	learn: 8.4896135	total: 6.56s	remaining: 297ms
287:	learn: 8.4665233	total: 6.58s	remaining: 274ms
288:	learn: 8.4563622	total: 6.6s	remaining: 251ms
289:	learn: 8.4221661	total: 6.62s	remaining: 228ms
290:	learn: 8.3953479	total: 6.64s	remaining: 206ms
291:	learn: 8.3735779	total: 6.67s	remaining: 183ms
292:	learn: 8.3452844	total: 6.69s	remaining: 160ms
293:	learn: 8.3141538	total: 6.72s	remaining: 137ms
294:	learn: 8.3014432	total: 6.75s	remaining: 114ms
295:	learn: 8.2802794	total: 6.77s	remaining: 91.5ms
296:	learn: 8.2485275	total: 6.79s	remaining: 68.6ms
297:	learn: 8.2239488	total: 6.82s	remaining: 45.8ms
298:	learn: 8.1877191	total: 6.84s	remaining: 22.9ms
299:	learn: 8.1551355	total: 6.86s	remaining: 0us
0:	learn: 27.2098005	total: 1.35ms	remaining: 269ms
1:	learn: 26.3343827	total: 2.2ms	remaining: 218ms
2:	learn: 25.6574052	total: 3.05ms	remaining: 200ms
3:	learn: 24.9562825	total: 3.95ms	remaining: 194ms
4:	learn: 24.4317699	total: 4.96ms	remaining: 193ms
5:	learn: 23.7320689	total: 5.9ms	remaining: 191ms
6:	learn: 23.3827801	total: 6.86ms	remaining: 189ms
7:	learn: 22.7888606	total: 7.85ms	remaining: 188ms
8:	learn: 22.4669531	total: 8.75ms	remaining: 186ms
9:	learn: 22.2055034	total: 9.69ms	remaining: 184ms
10:	learn: 21.8570874	total: 10.6ms	remaining: 181ms
11:	learn: 21.5043513	total: 11.4ms	remaining: 179ms
12:	learn: 21.2543673	total: 12.3ms	remaining: 177ms
13:	learn: 21.0521696	total: 13.3ms	remaining: 176ms
14:	learn: 20.7543959	total: 14.3ms	remaining: 177ms
15:	learn: 20.4439240	total: 15.6ms	remaining: 179ms
16:	learn: 20.1992431	total: 16.6ms	remaining: 179ms
17:	learn: 20.0638774	total: 17.6ms	remaining: 178ms
18:	learn: 19.7614893	total: 18.5ms	remaining: 176ms
19:	learn: 19.4549829	total: 19.5ms	remaining: 175ms
20:	learn: 19.2969790	total: 20.5ms	remaining: 175ms
21:	learn: 19.2377413	total: 21.7ms	remaining: 175ms
22:	learn: 19.1413322	total: 22.8ms	remaining: 176ms
23:	learn: 19.0898736	total: 24ms	remaining: 176ms
24:	learn: 18.9125043	total: 25ms	remaining: 175ms
25:	learn: 18.8580056	total: 26ms	remaining: 174ms
26:	learn: 18.7027921	total: 27.1ms	remaining: 173ms
27:	learn: 18.4581085	total: 28ms	remaining: 172ms
28:	learn: 18.2744442	total: 29ms	remaining: 171ms
29:	learn: 18.2413017	total: 30.1ms	remaining: 171ms
30:	learn: 18.1373470	total: 31.1ms	remaining: 170ms
31:	learn: 18.1034471	total: 32ms	remaining: 168ms
32:	learn: 17.9300374	total: 32.9ms	remaining: 166ms
33:	learn: 17.7887903	total: 33.9ms	remaining: 165ms
34:	learn: 17.7093050	total: 34.8ms	remaining: 164ms
35:	learn: 17.6643057	total: 35.7ms	remaining: 163ms
36:	learn: 17.5712827	total: 36.7ms	remaining: 162ms
37:	learn: 17.5313653	total: 37.6ms	remaining: 160ms
38:	learn: 17.4725144	total: 38.5ms	remaining: 159ms
39:	learn: 17.4182357	total: 39.6ms	remaining: 158ms
40:	learn: 17.2681647	total: 40.6ms	remaining: 157ms
41:	learn: 17.2206572	total: 41.7ms	remaining: 157ms
42:	learn: 17.0402321	total: 42.8ms	remaining: 156ms
43:	learn: 16.9839166	total: 43.8ms	remaining: 155ms
44:	learn: 16.9116414	total: 44.7ms	remaining: 154ms
45:	learn: 16.7802140	total: 45.6ms	remaining: 153ms
46:	learn: 16.6821396	total: 46.6ms	remaining: 152ms
47:	learn: 16.6370601	total: 47.5ms	remaining: 150ms
48:	learn: 16.5310125	total: 48.4ms	remaining: 149ms
49:	learn: 16.4962621	total: 49.3ms	remaining: 148ms
50:	learn: 16.4466663	total: 50.2ms	remaining: 147ms
51:	learn: 16.3887055	total: 51.2ms	remaining: 146ms
52:	learn: 16.3434793	total: 52.1ms	remaining: 144ms
53:	learn: 16.2814651	total: 53.3ms	remaining: 144ms
54:	learn: 16.2060157	total: 54.4ms	remaining: 143ms
55:	learn: 16.1340288	total: 55.6ms	remaining: 143ms
56:	learn: 16.0726882	total: 56.6ms	remaining: 142ms
57:	learn: 15.9930999	total: 57.6ms	remaining: 141ms
58:	learn: 15.8689364	total: 58.7ms	remaining: 140ms
59:	learn: 15.8130924	total: 59.7ms	remaining: 139ms
60:	learn: 15.7895967	total: 60.8ms	remaining: 138ms
61:	learn: 15.6640340	total: 61.7ms	remaining: 137ms
62:	learn: 15.6177669	total: 62.8ms	remaining: 137ms
63:	learn: 15.5090870	total: 63.8ms	remaining: 136ms
64:	learn: 15.4761522	total: 64.8ms	remaining: 135ms
65:	learn: 15.4287462	total: 65.9ms	remaining: 134ms
66:	learn: 15.3888538	total: 66.9ms	remaining: 133ms
67:	learn: 15.3440609	total: 68ms	remaining: 132ms
68:	learn: 15.3201311	total: 69.1ms	remaining: 131ms
69:	learn: 15.3079114	total: 70.1ms	remaining: 130ms
70:	learn: 15.2159640	total: 71.2ms	remaining: 129ms
71:	learn: 15.1112749	total: 72.3ms	remaining: 129ms
72:	learn: 15.0596912	total: 73.2ms	remaining: 127ms
73:	learn: 14.9952809	total: 74.2ms	remaining: 126ms
74:	learn: 14.9128812	total: 75.3ms	remaining: 125ms
75:	learn: 14.8761824	total: 76.3ms	remaining: 124ms
76:	learn: 14.8293903	total: 77.3ms	remaining: 123ms
77:	learn: 14.7845132	total: 78.4ms	remaining: 123ms
78:	learn: 14.7347895	total: 79.5ms	remaining: 122ms
79:	learn: 14.6942607	total: 80.7ms	remaining: 121ms
80:	learn: 14.5997662	total: 81.7ms	remaining: 120ms
81:	learn: 14.5782796	total: 82.9ms	remaining: 119ms
82:	learn: 14.5097324	total: 83.9ms	remaining: 118ms
83:	learn: 14.4594549	total: 85ms	remaining: 117ms
84:	learn: 14.3700903	total: 86ms	remaining: 116ms
85:	learn: 14.2967114	total: 87.1ms	remaining: 115ms
86:	learn: 14.2477778	total: 88.2ms	remaining: 114ms
87:	learn: 14.2229719	total: 89.2ms	remaining: 114ms
88:	learn: 14.1534477	total: 90.2ms	remaining: 113ms
89:	learn: 14.0762949	total: 91.3ms	remaining: 112ms
90:	learn: 14.0123553	total: 92.4ms	remaining: 111ms
91:	learn: 13.9603280	total: 93.5ms	remaining: 110ms
92:	learn: 13.9002227	total: 94.6ms	remaining: 109ms
93:	learn: 13.8719854	total: 95.7ms	remaining: 108ms
94:	learn: 13.8348742	total: 96.8ms	remaining: 107ms
95:	learn: 13.8153499	total: 98ms	remaining: 106ms
96:	learn: 13.7569162	total: 99ms	remaining: 105ms
97:	learn: 13.7360893	total: 100ms	remaining: 104ms
98:	learn: 13.6752128	total: 101ms	remaining: 103ms
99:	learn: 13.6103165	total: 102ms	remaining: 102ms
100:	learn: 13.5527615	total: 103ms	remaining: 101ms
101:	learn: 13.5004011	total: 104ms	remaining: 100ms
102:	learn: 13.4335179	total: 105ms	remaining: 99.2ms
103:	learn: 13.3687362	total: 106ms	remaining: 98.2ms
104:	learn: 13.3043781	total: 107ms	remaining: 97.2ms
105:	learn: 13.2849717	total: 108ms	remaining: 96.2ms
106:	learn: 13.2526590	total: 110ms	remaining: 95.2ms
107:	learn: 13.2267137	total: 111ms	remaining: 94.2ms
108:	learn: 13.1819637	total: 112ms	remaining: 93.2ms
109:	learn: 13.1796765	total: 113ms	remaining: 92.2ms
110:	learn: 13.1605610	total: 114ms	remaining: 91.2ms
111:	learn: 13.1226709	total: 115ms	remaining: 90.2ms
112:	learn: 13.0665776	total: 116ms	remaining: 89.2ms
113:	learn: 13.0159115	total: 117ms	remaining: 88.1ms
114:	learn: 12.9566195	total: 118ms	remaining: 87ms
115:	learn: 12.9445833	total: 119ms	remaining: 86ms
116:	learn: 12.9257179	total: 120ms	remaining: 84.9ms
117:	learn: 12.8740419	total: 121ms	remaining: 83.9ms
118:	learn: 12.8151072	total: 122ms	remaining: 82.9ms
119:	learn: 12.7722999	total: 123ms	remaining: 81.9ms
120:	learn: 12.7357186	total: 124ms	remaining: 80.8ms
121:	learn: 12.7259232	total: 125ms	remaining: 79.8ms
122:	learn: 12.6951038	total: 126ms	remaining: 78.8ms
123:	learn: 12.6803516	total: 127ms	remaining: 77.8ms
124:	learn: 12.6533951	total: 128ms	remaining: 76.7ms
125:	learn: 12.6378921	total: 129ms	remaining: 75.7ms
126:	learn: 12.5920985	total: 130ms	remaining: 74.7ms
127:	learn: 12.5756200	total: 131ms	remaining: 73.6ms
128:	learn: 12.5672381	total: 132ms	remaining: 72.5ms
129:	learn: 12.5384815	total: 133ms	remaining: 71.4ms
130:	learn: 12.5292471	total: 133ms	remaining: 70.3ms
131:	learn: 12.4764701	total: 134ms	remaining: 69.2ms
132:	learn: 12.4280495	total: 135ms	remaining: 68.2ms
133:	learn: 12.3532545	total: 136ms	remaining: 67.1ms
134:	learn: 12.3267684	total: 137ms	remaining: 66ms
135:	learn: 12.2702669	total: 138ms	remaining: 65ms
136:	learn: 12.2040302	total: 139ms	remaining: 63.9ms
137:	learn: 12.1737311	total: 140ms	remaining: 62.9ms
138:	learn: 12.1686551	total: 141ms	remaining: 61.9ms
139:	learn: 12.1587600	total: 142ms	remaining: 61ms
140:	learn: 12.1470325	total: 143ms	remaining: 60ms
141:	learn: 12.1357223	total: 144ms	remaining: 59ms
142:	learn: 12.0994748	total: 145ms	remaining: 57.9ms
143:	learn: 12.0775514	total: 146ms	remaining: 56.9ms
144:	learn: 12.0674975	total: 147ms	remaining: 55.8ms
145:	learn: 12.0307414	total: 148ms	remaining: 54.8ms
146:	learn: 12.0251842	total: 149ms	remaining: 53.7ms
147:	learn: 12.0066431	total: 150ms	remaining: 52.7ms
148:	learn: 11.9888229	total: 151ms	remaining: 51.6ms
149:	learn: 11.9291047	total: 152ms	remaining: 50.6ms
150:	learn: 11.9266163	total: 153ms	remaining: 49.5ms
151:	learn: 11.8920246	total: 154ms	remaining: 48.5ms
152:	learn: 11.8626800	total: 155ms	remaining: 47.5ms
153:	learn: 11.8193888	total: 155ms	remaining: 46.4ms
154:	learn: 11.7925225	total: 156ms	remaining: 45.4ms
155:	learn: 11.7874661	total: 157ms	remaining: 44.4ms
156:	learn: 11.7861494	total: 158ms	remaining: 43.4ms
157:	learn: 11.7430931	total: 159ms	remaining: 42.3ms
158:	learn: 11.7366462	total: 160ms	remaining: 41.3ms
159:	learn: 11.6981704	total: 161ms	remaining: 40.3ms
160:	learn: 11.6506279	total: 162ms	remaining: 39.3ms
161:	learn: 11.6196206	total: 163ms	remaining: 38.4ms
162:	learn: 11.5823435	total: 165ms	remaining: 37.4ms
163:	learn: 11.5505083	total: 166ms	remaining: 36.3ms
164:	learn: 11.5403261	total: 167ms	remaining: 35.4ms
165:	learn: 11.5264917	total: 168ms	remaining: 34.4ms
166:	learn: 11.4987585	total: 169ms	remaining: 33.3ms
167:	learn: 11.4950795	total: 170ms	remaining: 32.3ms
168:	learn: 11.4783420	total: 171ms	remaining: 31.3ms
169:	learn: 11.4677279	total: 172ms	remaining: 30.3ms
170:	learn: 11.4659536	total: 173ms	remaining: 29.3ms
171:	learn: 11.4534216	total: 174ms	remaining: 28.3ms
172:	learn: 11.4245927	total: 175ms	remaining: 27.3ms
173:	learn: 11.3978034	total: 176ms	remaining: 26.3ms
174:	learn: 11.3859183	total: 177ms	remaining: 25.2ms
175:	learn: 11.3531419	total: 178ms	remaining: 24.2ms
176:	learn: 11.3141195	total: 179ms	remaining: 23.2ms
177:	learn: 11.2880690	total: 180ms	remaining: 22.2ms
178:	learn: 11.2771619	total: 181ms	remaining: 21.2ms
179:	learn: 11.2705445	total: 182ms	remaining: 20.2ms
180:	learn: 11.2550546	total: 183ms	remaining: 19.2ms
181:	learn: 11.2402205	total: 184ms	remaining: 18.2ms
182:	learn: 11.2109113	total: 185ms	remaining: 17.2ms
183:	learn: 11.2100213	total: 186ms	remaining: 16.2ms
184:	learn: 11.2075766	total: 187ms	remaining: 15.1ms
185:	learn: 11.2013252	total: 188ms	remaining: 14.1ms
186:	learn: 11.1953713	total: 188ms	remaining: 13.1ms
187:	learn: 11.1894718	total: 189ms	remaining: 12.1ms
188:	learn: 11.1837453	total: 190ms	remaining: 11.1ms
189:	learn: 11.1781835	total: 191ms	remaining: 10.1ms
190:	learn: 11.1727790	total: 192ms	remaining: 9.05ms
191:	learn: 11.1451811	total: 193ms	remaining: 8.04ms
192:	learn: 11.1039476	total: 194ms	remaining: 7.03ms
193:	learn: 11.0665613	total: 195ms	remaining: 6.03ms
194:	learn: 11.0567694	total: 197ms	remaining: 5.04ms
195:	learn: 11.0283937	total: 197ms	remaining: 4.03ms
196:	learn: 11.0250363	total: 198ms	remaining: 3.02ms
197:	learn: 11.0027907	total: 199ms	remaining: 2.01ms
198:	learn: 10.9841284	total: 200ms	remaining: 1.01ms
199:	learn: 10.9586799	total: 201ms	remaining: 0us
0:	learn: 41.8399605	total: 1.42ms	remaining: 283ms
1:	learn: 39.8395245	total: 2.75ms	remaining: 272ms
2:	learn: 38.1671235	total: 3.79ms	remaining: 249ms
3:	learn: 37.0670986	total: 4.78ms	remaining: 234ms
4:	learn: 36.0387813	total: 5.79ms	remaining: 226ms
5:	learn: 34.5265459	total: 6.8ms	remaining: 220ms
6:	learn: 33.0715315	total: 7.87ms	remaining: 217ms
7:	learn: 31.8808916	total: 8.98ms	remaining: 216ms
8:	learn: 31.2512994	total: 10ms	remaining: 212ms
9:	learn: 30.4893398	total: 11.1ms	remaining: 210ms
10:	learn: 29.4834649	total: 12.1ms	remaining: 209ms
11:	learn: 28.5128380	total: 13.2ms	remaining: 207ms
12:	learn: 27.6335700	total: 14.2ms	remaining: 205ms
13:	learn: 27.0319750	total: 15.3ms	remaining: 204ms
14:	learn: 26.2458582	total: 16.4ms	remaining: 202ms
15:	learn: 25.9281584	total: 17.4ms	remaining: 200ms
16:	learn: 25.5262964	total: 18.5ms	remaining: 199ms
17:	learn: 24.9203741	total: 19.6ms	remaining: 198ms
18:	learn: 24.5918814	total: 20.6ms	remaining: 196ms
19:	learn: 24.4119288	total: 21.6ms	remaining: 195ms
20:	learn: 24.1090477	total: 22.8ms	remaining: 194ms
21:	learn: 23.7056648	total: 23.8ms	remaining: 193ms
22:	learn: 23.5124674	total: 24.9ms	remaining: 192ms
23:	learn: 23.2386385	total: 26.3ms	remaining: 193ms
24:	learn: 23.1258198	total: 27.5ms	remaining: 192ms
25:	learn: 23.0302334	total: 28.5ms	remaining: 191ms
26:	learn: 22.9101035	total: 29.6ms	remaining: 189ms
27:	learn: 22.8003999	total: 30.6ms	remaining: 188ms
28:	learn: 22.5351620	total: 31.6ms	remaining: 187ms
29:	learn: 22.2539274	total: 32.7ms	remaining: 186ms
30:	learn: 22.1398507	total: 33.8ms	remaining: 184ms
31:	learn: 21.6820010	total: 34.9ms	remaining: 183ms
32:	learn: 21.5252543	total: 36.1ms	remaining: 183ms
33:	learn: 21.4370215	total: 37.2ms	remaining: 182ms
34:	learn: 21.3473723	total: 38.2ms	remaining: 180ms
35:	learn: 21.2921732	total: 39.3ms	remaining: 179ms
36:	learn: 21.1853093	total: 40.3ms	remaining: 178ms
37:	learn: 21.1054246	total: 41.5ms	remaining: 177ms
38:	learn: 21.0922990	total: 42.8ms	remaining: 177ms
39:	learn: 20.9578071	total: 44ms	remaining: 176ms
40:	learn: 20.8720350	total: 45.1ms	remaining: 175ms
41:	learn: 20.7978022	total: 46.1ms	remaining: 173ms
42:	learn: 20.7373973	total: 47.2ms	remaining: 172ms
43:	learn: 20.4878486	total: 48.4ms	remaining: 171ms
44:	learn: 20.4578479	total: 49.4ms	remaining: 170ms
45:	learn: 20.3634465	total: 50.4ms	remaining: 169ms
46:	learn: 20.3080237	total: 51.4ms	remaining: 167ms
47:	learn: 20.2271363	total: 52.4ms	remaining: 166ms
48:	learn: 20.0373064	total: 53.4ms	remaining: 164ms
49:	learn: 19.9912068	total: 54.3ms	remaining: 163ms
50:	learn: 19.8928950	total: 55.4ms	remaining: 162ms
51:	learn: 19.7876830	total: 56.4ms	remaining: 161ms
52:	learn: 19.7651180	total: 57.3ms	remaining: 159ms
53:	learn: 19.6813527	total: 58.3ms	remaining: 158ms
54:	learn: 19.5975589	total: 59.3ms	remaining: 156ms
55:	learn: 19.5478200	total: 60.2ms	remaining: 155ms
56:	learn: 19.3740847	total: 61.2ms	remaining: 154ms
57:	learn: 19.3662692	total: 62.2ms	remaining: 152ms
58:	learn: 19.2651964	total: 63.3ms	remaining: 151ms
59:	learn: 19.1392018	total: 64.4ms	remaining: 150ms
60:	learn: 19.1023492	total: 65.7ms	remaining: 150ms
61:	learn: 19.0748934	total: 66.9ms	remaining: 149ms
62:	learn: 19.0233897	total: 68.2ms	remaining: 148ms
63:	learn: 18.9164481	total: 69.5ms	remaining: 148ms
64:	learn: 18.8465411	total: 70.6ms	remaining: 147ms
65:	learn: 18.8043102	total: 71.8ms	remaining: 146ms
66:	learn: 18.7650830	total: 72.8ms	remaining: 144ms
67:	learn: 18.7271477	total: 73.7ms	remaining: 143ms
68:	learn: 18.5376883	total: 74.8ms	remaining: 142ms
69:	learn: 18.4564755	total: 75.7ms	remaining: 141ms
70:	learn: 18.3732756	total: 76.6ms	remaining: 139ms
71:	learn: 18.2872627	total: 77.5ms	remaining: 138ms
72:	learn: 18.1886808	total: 78.3ms	remaining: 136ms
73:	learn: 18.1041972	total: 79.2ms	remaining: 135ms
74:	learn: 18.0429272	total: 80.1ms	remaining: 133ms
75:	learn: 17.9595045	total: 80.9ms	remaining: 132ms
76:	learn: 17.9086262	total: 81.8ms	remaining: 131ms
77:	learn: 17.8460171	total: 82.7ms	remaining: 129ms
78:	learn: 17.7896667	total: 83.6ms	remaining: 128ms
79:	learn: 17.7371316	total: 84.4ms	remaining: 127ms
80:	learn: 17.6103533	total: 85.3ms	remaining: 125ms
81:	learn: 17.5698713	total: 86.2ms	remaining: 124ms
82:	learn: 17.5266322	total: 87ms	remaining: 123ms
83:	learn: 17.2655920	total: 87.9ms	remaining: 121ms
84:	learn: 17.2575650	total: 88.8ms	remaining: 120ms
85:	learn: 17.1664785	total: 89.8ms	remaining: 119ms
86:	learn: 16.9209435	total: 91ms	remaining: 118ms
87:	learn: 16.8316744	total: 92.1ms	remaining: 117ms
88:	learn: 16.7588828	total: 93.1ms	remaining: 116ms
89:	learn: 16.5509772	total: 94.2ms	remaining: 115ms
90:	learn: 16.4804665	total: 95.1ms	remaining: 114ms
91:	learn: 16.4442784	total: 96ms	remaining: 113ms
92:	learn: 16.3784172	total: 96.8ms	remaining: 111ms
93:	learn: 16.2804018	total: 97.7ms	remaining: 110ms
94:	learn: 16.2439906	total: 98.6ms	remaining: 109ms
95:	learn: 16.2110795	total: 99.6ms	remaining: 108ms
96:	learn: 16.1715562	total: 101ms	remaining: 107ms
97:	learn: 16.0669024	total: 102ms	remaining: 106ms
98:	learn: 15.8722132	total: 103ms	remaining: 105ms
99:	learn: 15.8486533	total: 104ms	remaining: 104ms
100:	learn: 15.8165655	total: 105ms	remaining: 102ms
101:	learn: 15.7949298	total: 105ms	remaining: 101ms
102:	learn: 15.7201286	total: 106ms	remaining: 100ms
103:	learn: 15.6755371	total: 108ms	remaining: 99.3ms
104:	learn: 15.6405255	total: 109ms	remaining: 98.2ms
105:	learn: 15.6117943	total: 110ms	remaining: 97.1ms
106:	learn: 15.5793622	total: 110ms	remaining: 95.9ms
107:	learn: 15.5402277	total: 111ms	remaining: 94.9ms
108:	learn: 15.4630827	total: 112ms	remaining: 93.8ms
109:	learn: 15.4065161	total: 113ms	remaining: 92.8ms
110:	learn: 15.3699228	total: 114ms	remaining: 91.7ms
111:	learn: 15.2947040	total: 115ms	remaining: 90.6ms
112:	learn: 15.2833895	total: 116ms	remaining: 89.5ms
113:	learn: 15.2249854	total: 117ms	remaining: 88.5ms
114:	learn: 15.1836455	total: 118ms	remaining: 87.5ms
115:	learn: 15.1523562	total: 119ms	remaining: 86.4ms
116:	learn: 15.1125302	total: 120ms	remaining: 85.3ms
117:	learn: 15.0713590	total: 121ms	remaining: 84.3ms
118:	learn: 15.0134383	total: 122ms	remaining: 83.2ms
119:	learn: 14.9678232	total: 123ms	remaining: 82.1ms
120:	learn: 14.9332348	total: 124ms	remaining: 81ms
121:	learn: 14.8952479	total: 125ms	remaining: 80ms
122:	learn: 14.8451629	total: 126ms	remaining: 78.9ms
123:	learn: 14.8122591	total: 127ms	remaining: 77.8ms
124:	learn: 14.8059710	total: 128ms	remaining: 76.7ms
125:	learn: 14.7875208	total: 129ms	remaining: 75.6ms
126:	learn: 14.7239849	total: 130ms	remaining: 74.5ms
127:	learn: 14.7029419	total: 130ms	remaining: 73.4ms
128:	learn: 14.6633912	total: 132ms	remaining: 72.5ms
129:	learn: 14.6443330	total: 133ms	remaining: 71.5ms
130:	learn: 14.5974847	total: 134ms	remaining: 70.4ms
131:	learn: 14.5479805	total: 135ms	remaining: 69.4ms
132:	learn: 14.5134226	total: 136ms	remaining: 68.3ms
133:	learn: 14.4909207	total: 137ms	remaining: 67.2ms
134:	learn: 14.2973404	total: 138ms	remaining: 66.2ms
135:	learn: 14.2837051	total: 138ms	remaining: 65.2ms
136:	learn: 14.2518953	total: 139ms	remaining: 64.1ms
137:	learn: 14.2142342	total: 140ms	remaining: 63.1ms
138:	learn: 14.1815533	total: 141ms	remaining: 62.1ms
139:	learn: 14.1787829	total: 142ms	remaining: 61ms
140:	learn: 14.1736615	total: 143ms	remaining: 59.9ms
141:	learn: 14.1478939	total: 144ms	remaining: 58.9ms
142:	learn: 14.0693243	total: 145ms	remaining: 57.8ms
143:	learn: 14.0493752	total: 146ms	remaining: 56.8ms
144:	learn: 14.0073520	total: 147ms	remaining: 55.8ms
145:	learn: 13.9992690	total: 148ms	remaining: 54.8ms
146:	learn: 13.9826951	total: 149ms	remaining: 53.8ms
147:	learn: 13.9355206	total: 150ms	remaining: 52.8ms
148:	learn: 13.8866829	total: 151ms	remaining: 51.7ms
149:	learn: 13.8116862	total: 152ms	remaining: 50.7ms
150:	learn: 13.7917979	total: 153ms	remaining: 49.8ms
151:	learn: 13.7656086	total: 155ms	remaining: 48.9ms
152:	learn: 13.7544547	total: 156ms	remaining: 48ms
153:	learn: 13.7143754	total: 158ms	remaining: 47.2ms
154:	learn: 13.6940602	total: 159ms	remaining: 46.2ms
155:	learn: 13.6895644	total: 160ms	remaining: 45.3ms
156:	learn: 13.6676083	total: 162ms	remaining: 44.3ms
157:	learn: 13.6351956	total: 163ms	remaining: 43.4ms
158:	learn: 13.6030803	total: 164ms	remaining: 42.4ms
159:	learn: 13.5945618	total: 166ms	remaining: 41.4ms
160:	learn: 13.5695407	total: 167ms	remaining: 40.4ms
161:	learn: 13.5265094	total: 168ms	remaining: 39.4ms
162:	learn: 13.5035584	total: 169ms	remaining: 38.4ms
163:	learn: 13.4960504	total: 170ms	remaining: 37.4ms
164:	learn: 13.4734059	total: 172ms	remaining: 36.4ms
165:	learn: 13.4449073	total: 173ms	remaining: 35.4ms
166:	learn: 13.3719784	total: 174ms	remaining: 34.4ms
167:	learn: 13.3612519	total: 175ms	remaining: 33.4ms
168:	learn: 13.3166457	total: 176ms	remaining: 32.4ms
169:	learn: 13.2650631	total: 177ms	remaining: 31.3ms
170:	learn: 13.2613924	total: 179ms	remaining: 30.3ms
171:	learn: 13.2301308	total: 180ms	remaining: 29.3ms
172:	learn: 13.1981807	total: 181ms	remaining: 28.2ms
173:	learn: 13.1820083	total: 182ms	remaining: 27.2ms
174:	learn: 13.1486084	total: 183ms	remaining: 26.1ms
175:	learn: 13.1306816	total: 184ms	remaining: 25.1ms
176:	learn: 13.0921081	total: 185ms	remaining: 24.1ms
177:	learn: 13.0716664	total: 186ms	remaining: 23ms
178:	learn: 13.0116426	total: 188ms	remaining: 22ms
179:	learn: 13.0035937	total: 189ms	remaining: 21ms
180:	learn: 12.9959191	total: 190ms	remaining: 19.9ms
181:	learn: 12.9799372	total: 191ms	remaining: 18.9ms
182:	learn: 12.9651183	total: 192ms	remaining: 17.8ms
183:	learn: 12.9313512	total: 193ms	remaining: 16.8ms
184:	learn: 12.8921355	total: 194ms	remaining: 15.7ms
185:	learn: 12.8468364	total: 195ms	remaining: 14.7ms
186:	learn: 12.8397824	total: 196ms	remaining: 13.6ms
187:	learn: 12.8033368	total: 197ms	remaining: 12.6ms
188:	learn: 12.7922578	total: 198ms	remaining: 11.5ms
189:	learn: 12.7851006	total: 199ms	remaining: 10.5ms
190:	learn: 12.7465417	total: 200ms	remaining: 9.41ms
191:	learn: 12.7206730	total: 201ms	remaining: 8.36ms
192:	learn: 12.6917382	total: 201ms	remaining: 7.31ms
193:	learn: 12.6844838	total: 202ms	remaining: 6.26ms
194:	learn: 12.6725723	total: 203ms	remaining: 5.21ms
195:	learn: 12.6348524	total: 204ms	remaining: 4.17ms
196:	learn: 12.5954867	total: 205ms	remaining: 3.13ms
197:	learn: 12.5564179	total: 206ms	remaining: 2.08ms
198:	learn: 12.5135119	total: 207ms	remaining: 1.04ms
199:	learn: 12.4922679	total: 208ms	remaining: 0us
0:	learn: 45.6319620	total: 1.06ms	remaining: 212ms
1:	learn: 44.3043392	total: 2.04ms	remaining: 202ms
2:	learn: 43.1283328	total: 2.98ms	remaining: 196ms
3:	learn: 42.1165182	total: 3.91ms	remaining: 191ms
4:	learn: 40.7081197	total: 4.86ms	remaining: 189ms
5:	learn: 39.1683248	total: 5.76ms	remaining: 186ms
6:	learn: 38.5039040	total: 6.66ms	remaining: 184ms
7:	learn: 37.7350474	total: 7.55ms	remaining: 181ms
8:	learn: 37.4046794	total: 8.51ms	remaining: 181ms
9:	learn: 37.0169556	total: 9.45ms	remaining: 180ms
10:	learn: 36.5795069	total: 10.4ms	remaining: 178ms
11:	learn: 35.5800530	total: 11.3ms	remaining: 177ms
12:	learn: 34.5521399	total: 12.2ms	remaining: 176ms
13:	learn: 33.5582170	total: 13.1ms	remaining: 174ms
14:	learn: 32.9976975	total: 14ms	remaining: 173ms
15:	learn: 32.7608602	total: 14.9ms	remaining: 171ms
16:	learn: 31.9106700	total: 15.8ms	remaining: 170ms
17:	learn: 31.7005703	total: 16.7ms	remaining: 169ms
18:	learn: 31.4912900	total: 17.7ms	remaining: 168ms
19:	learn: 30.9522447	total: 18.6ms	remaining: 168ms
20:	learn: 30.7380451	total: 19.5ms	remaining: 167ms
21:	learn: 30.3813894	total: 20.4ms	remaining: 165ms
22:	learn: 29.5720326	total: 21.3ms	remaining: 164ms
23:	learn: 28.8863059	total: 22.1ms	remaining: 162ms
24:	learn: 28.2766241	total: 23ms	remaining: 161ms
25:	learn: 27.9580003	total: 23.9ms	remaining: 160ms
26:	learn: 27.7731218	total: 24.7ms	remaining: 158ms
27:	learn: 27.3275009	total: 25.6ms	remaining: 157ms
28:	learn: 27.0312604	total: 26.4ms	remaining: 156ms
29:	learn: 26.8675371	total: 27.3ms	remaining: 155ms
30:	learn: 26.7948952	total: 28.3ms	remaining: 154ms
31:	learn: 26.2581075	total: 29.3ms	remaining: 154ms
32:	learn: 25.8681938	total: 30.2ms	remaining: 153ms
33:	learn: 25.6546902	total: 31.1ms	remaining: 152ms
34:	learn: 25.5311297	total: 32.1ms	remaining: 151ms
35:	learn: 25.3876780	total: 33ms	remaining: 150ms
36:	learn: 25.2840107	total: 33.9ms	remaining: 149ms
37:	learn: 25.1389723	total: 34.8ms	remaining: 148ms
38:	learn: 25.0393739	total: 35.6ms	remaining: 147ms
39:	learn: 24.9347083	total: 36.5ms	remaining: 146ms
40:	learn: 24.8003584	total: 37.3ms	remaining: 145ms
41:	learn: 24.7123645	total: 38.2ms	remaining: 144ms
42:	learn: 24.6180734	total: 39ms	remaining: 143ms
43:	learn: 24.3480769	total: 39.9ms	remaining: 141ms
44:	learn: 24.1730959	total: 40.8ms	remaining: 140ms
45:	learn: 24.0893664	total: 41.6ms	remaining: 139ms
46:	learn: 24.0002718	total: 42.5ms	remaining: 138ms
47:	learn: 23.9417882	total: 43.3ms	remaining: 137ms
48:	learn: 23.7430851	total: 44.3ms	remaining: 136ms
49:	learn: 23.6783500	total: 45.3ms	remaining: 136ms
50:	learn: 23.5548971	total: 46.3ms	remaining: 135ms
51:	learn: 23.5050161	total: 47.3ms	remaining: 134ms
52:	learn: 23.3133504	total: 48.3ms	remaining: 134ms
53:	learn: 23.2137338	total: 49.3ms	remaining: 133ms
54:	learn: 22.9382603	total: 50.3ms	remaining: 132ms
55:	learn: 22.8697860	total: 51.1ms	remaining: 132ms
56:	learn: 22.7549872	total: 52ms	remaining: 131ms
57:	learn: 22.5714124	total: 52.9ms	remaining: 130ms
58:	learn: 22.5247798	total: 53.8ms	remaining: 128ms
59:	learn: 22.3343607	total: 54.6ms	remaining: 128ms
60:	learn: 22.2762248	total: 55.6ms	remaining: 127ms
61:	learn: 22.2233450	total: 56.4ms	remaining: 126ms
62:	learn: 22.1435755	total: 57.3ms	remaining: 125ms
63:	learn: 22.0165239	total: 58.1ms	remaining: 124ms
64:	learn: 21.7645707	total: 59.2ms	remaining: 123ms
65:	learn: 21.4460607	total: 60.2ms	remaining: 122ms
66:	learn: 21.3715305	total: 61.1ms	remaining: 121ms
67:	learn: 21.3182268	total: 62.1ms	remaining: 121ms
68:	learn: 21.2436484	total: 63ms	remaining: 120ms
69:	learn: 21.1666993	total: 64ms	remaining: 119ms
70:	learn: 21.0851372	total: 64.8ms	remaining: 118ms
71:	learn: 20.8723719	total: 65.7ms	remaining: 117ms
72:	learn: 20.6321846	total: 66.5ms	remaining: 116ms
73:	learn: 20.4748023	total: 67.4ms	remaining: 115ms
74:	learn: 20.3227461	total: 68.3ms	remaining: 114ms
75:	learn: 20.2768617	total: 69.2ms	remaining: 113ms
76:	learn: 20.2066773	total: 70.1ms	remaining: 112ms
77:	learn: 19.9735308	total: 71ms	remaining: 111ms
78:	learn: 19.8733222	total: 71.8ms	remaining: 110ms
79:	learn: 19.8392313	total: 72.9ms	remaining: 109ms
80:	learn: 19.7079948	total: 74.1ms	remaining: 109ms
81:	learn: 19.6793430	total: 75ms	remaining: 108ms
82:	learn: 19.5027408	total: 76ms	remaining: 107ms
83:	learn: 19.4478712	total: 76.8ms	remaining: 106ms
84:	learn: 19.2261699	total: 77.8ms	remaining: 105ms
85:	learn: 19.0442767	total: 78.8ms	remaining: 104ms
86:	learn: 18.9740619	total: 79.6ms	remaining: 103ms
87:	learn: 18.9028166	total: 80.6ms	remaining: 103ms
88:	learn: 18.7887701	total: 81.5ms	remaining: 102ms
89:	learn: 18.6586954	total: 82.4ms	remaining: 101ms
90:	learn: 18.6037610	total: 83.3ms	remaining: 99.8ms
91:	learn: 18.5307810	total: 84.2ms	remaining: 98.8ms
92:	learn: 18.4319734	total: 85.1ms	remaining: 97.9ms
93:	learn: 18.2412652	total: 86ms	remaining: 97ms
94:	learn: 18.1850108	total: 86.8ms	remaining: 96ms
95:	learn: 18.0580961	total: 87.8ms	remaining: 95.1ms
96:	learn: 17.9469331	total: 88.8ms	remaining: 94.3ms
97:	learn: 17.7233371	total: 89.7ms	remaining: 93.4ms
98:	learn: 17.6691253	total: 90.7ms	remaining: 92.5ms
99:	learn: 17.5896117	total: 91.5ms	remaining: 91.5ms
100:	learn: 17.4929820	total: 92.4ms	remaining: 90.6ms
101:	learn: 17.4415284	total: 93.3ms	remaining: 89.7ms
102:	learn: 17.4027713	total: 94.3ms	remaining: 88.8ms
103:	learn: 17.3608480	total: 95.3ms	remaining: 88ms
104:	learn: 17.2231397	total: 96.2ms	remaining: 87.1ms
105:	learn: 17.2013305	total: 97.2ms	remaining: 86.2ms
106:	learn: 17.0949226	total: 98.1ms	remaining: 85.2ms
107:	learn: 17.0524045	total: 99ms	remaining: 84.3ms
108:	learn: 16.9598589	total: 99.8ms	remaining: 83.3ms
109:	learn: 16.9168343	total: 101ms	remaining: 82.4ms
110:	learn: 16.8959679	total: 102ms	remaining: 81.5ms
111:	learn: 16.7302824	total: 103ms	remaining: 80.7ms
112:	learn: 16.5980747	total: 104ms	remaining: 79.9ms
113:	learn: 16.5590019	total: 105ms	remaining: 79ms
114:	learn: 16.4877109	total: 106ms	remaining: 78.2ms
115:	learn: 16.4574907	total: 107ms	remaining: 77.3ms
116:	learn: 16.3070639	total: 108ms	remaining: 76.5ms
117:	learn: 16.2614840	total: 109ms	remaining: 75.6ms
118:	learn: 16.1657457	total: 110ms	remaining: 74.7ms
119:	learn: 16.0790650	total: 111ms	remaining: 73.9ms
120:	learn: 16.0001607	total: 112ms	remaining: 73.1ms
121:	learn: 15.9521882	total: 113ms	remaining: 72.2ms
122:	learn: 15.8118538	total: 114ms	remaining: 71.4ms
123:	learn: 15.7486251	total: 117ms	remaining: 71.5ms
124:	learn: 15.6859804	total: 118ms	remaining: 71ms
125:	learn: 15.6699779	total: 119ms	remaining: 70.2ms
126:	learn: 15.6307957	total: 121ms	remaining: 69.4ms
127:	learn: 15.5336410	total: 122ms	remaining: 68.6ms
128:	learn: 15.5044466	total: 123ms	remaining: 67.8ms
129:	learn: 15.4275538	total: 125ms	remaining: 67.4ms
130:	learn: 15.3808711	total: 127ms	remaining: 66.8ms
131:	learn: 15.3491239	total: 129ms	remaining: 66.3ms
132:	learn: 15.3087062	total: 130ms	remaining: 65.7ms
133:	learn: 15.2554858	total: 132ms	remaining: 65.1ms
134:	learn: 15.2204703	total: 134ms	remaining: 64.4ms
135:	learn: 15.1844824	total: 135ms	remaining: 63.6ms
136:	learn: 15.1224259	total: 136ms	remaining: 62.6ms
137:	learn: 15.1090267	total: 137ms	remaining: 61.7ms
138:	learn: 15.0871697	total: 138ms	remaining: 60.8ms
139:	learn: 15.0326035	total: 140ms	remaining: 60.2ms
140:	learn: 14.9595766	total: 142ms	remaining: 59.3ms
141:	learn: 14.9126505	total: 143ms	remaining: 58.4ms
142:	learn: 14.8762130	total: 144ms	remaining: 57.4ms
143:	learn: 14.8118319	total: 145ms	remaining: 56.5ms
144:	learn: 14.7748808	total: 146ms	remaining: 55.5ms
145:	learn: 14.7434799	total: 148ms	remaining: 54.6ms
146:	learn: 14.6922172	total: 149ms	remaining: 53.6ms
147:	learn: 14.6704760	total: 150ms	remaining: 52.7ms
148:	learn: 14.6455543	total: 151ms	remaining: 51.7ms
149:	learn: 14.6018164	total: 152ms	remaining: 50.7ms
150:	learn: 14.5826847	total: 153ms	remaining: 49.6ms
151:	learn: 14.5423604	total: 154ms	remaining: 48.6ms
152:	learn: 14.5132633	total: 155ms	remaining: 47.7ms
153:	learn: 14.4870430	total: 156ms	remaining: 46.7ms
154:	learn: 14.4526168	total: 158ms	remaining: 45.8ms
155:	learn: 14.3910798	total: 159ms	remaining: 44.9ms
156:	learn: 14.3783939	total: 160ms	remaining: 43.9ms
157:	learn: 14.3521778	total: 162ms	remaining: 43ms
158:	learn: 14.3144171	total: 163ms	remaining: 41.9ms
159:	learn: 14.3092817	total: 164ms	remaining: 40.9ms
160:	learn: 14.2902165	total: 165ms	remaining: 39.9ms
161:	learn: 14.2639661	total: 166ms	remaining: 38.9ms
162:	learn: 14.2479958	total: 167ms	remaining: 37.8ms
163:	learn: 14.2396704	total: 168ms	remaining: 36.8ms
164:	learn: 14.2139643	total: 169ms	remaining: 35.8ms
165:	learn: 14.2104344	total: 170ms	remaining: 34.8ms
166:	learn: 14.1738092	total: 171ms	remaining: 33.7ms
167:	learn: 14.1358066	total: 172ms	remaining: 32.7ms
168:	learn: 14.0959328	total: 173ms	remaining: 31.7ms
169:	learn: 14.0045648	total: 174ms	remaining: 30.7ms
170:	learn: 13.9744324	total: 175ms	remaining: 29.7ms
171:	learn: 13.9665835	total: 176ms	remaining: 28.6ms
172:	learn: 13.9514606	total: 177ms	remaining: 27.6ms
173:	learn: 13.9422037	total: 178ms	remaining: 26.6ms
174:	learn: 13.9332975	total: 179ms	remaining: 25.6ms
175:	learn: 13.8447726	total: 180ms	remaining: 24.6ms
176:	learn: 13.8314865	total: 181ms	remaining: 23.6ms
177:	learn: 13.8230164	total: 183ms	remaining: 22.6ms
178:	learn: 13.8155236	total: 183ms	remaining: 21.5ms
179:	learn: 13.8050153	total: 184ms	remaining: 20.5ms
180:	learn: 13.7696070	total: 185ms	remaining: 19.5ms
181:	learn: 13.7501626	total: 186ms	remaining: 18.4ms
182:	learn: 13.7177497	total: 187ms	remaining: 17.4ms
183:	learn: 13.6917237	total: 188ms	remaining: 16.4ms
184:	learn: 13.6512282	total: 189ms	remaining: 15.3ms
185:	learn: 13.6372034	total: 190ms	remaining: 14.3ms
186:	learn: 13.5753658	total: 191ms	remaining: 13.3ms
187:	learn: 13.5580785	total: 192ms	remaining: 12.3ms
188:	learn: 13.5283840	total: 193ms	remaining: 11.3ms
189:	learn: 13.4969701	total: 194ms	remaining: 10.2ms
190:	learn: 13.4502166	total: 196ms	remaining: 9.21ms
191:	learn: 13.4410658	total: 196ms	remaining: 8.19ms
192:	learn: 13.4278834	total: 198ms	remaining: 7.16ms
193:	learn: 13.4115427	total: 199ms	remaining: 6.14ms
194:	learn: 13.3746813	total: 200ms	remaining: 5.12ms
195:	learn: 13.3633774	total: 201ms	remaining: 4.09ms
196:	learn: 13.3410937	total: 201ms	remaining: 3.07ms
197:	learn: 13.3068766	total: 202ms	remaining: 2.04ms
198:	learn: 13.3029216	total: 203ms	remaining: 1.02ms
199:	learn: 13.2902084	total: 204ms	remaining: 0us
0:	learn: 45.2801187	total: 1.04ms	remaining: 207ms
1:	learn: 43.9022061	total: 1.94ms	remaining: 192ms
2:	learn: 42.8472409	total: 3.02ms	remaining: 198ms
3:	learn: 42.0460877	total: 3.96ms	remaining: 194ms
4:	learn: 40.7691303	total: 4.87ms	remaining: 190ms
5:	learn: 39.3047018	total: 5.71ms	remaining: 185ms
6:	learn: 37.9509978	total: 6.57ms	remaining: 181ms
7:	learn: 37.2300301	total: 7.49ms	remaining: 180ms
8:	learn: 36.9380307	total: 8.46ms	remaining: 180ms
9:	learn: 36.5186385	total: 9.32ms	remaining: 177ms
10:	learn: 36.0483073	total: 10.2ms	remaining: 176ms
11:	learn: 35.5277262	total: 11.2ms	remaining: 175ms
12:	learn: 34.5707792	total: 12.2ms	remaining: 175ms
13:	learn: 33.5448438	total: 13.1ms	remaining: 174ms
14:	learn: 32.9394722	total: 13.9ms	remaining: 171ms
15:	learn: 32.2224784	total: 14.8ms	remaining: 170ms
16:	learn: 31.4949215	total: 15.7ms	remaining: 169ms
17:	learn: 30.9766308	total: 16.7ms	remaining: 169ms
18:	learn: 30.6876128	total: 17.8ms	remaining: 170ms
19:	learn: 30.3382699	total: 18.8ms	remaining: 169ms
20:	learn: 30.0778090	total: 19.7ms	remaining: 168ms
21:	learn: 29.7890105	total: 20.6ms	remaining: 167ms
22:	learn: 29.3294067	total: 21.6ms	remaining: 166ms
23:	learn: 29.1058633	total: 22.6ms	remaining: 165ms
24:	learn: 28.5254965	total: 23.4ms	remaining: 164ms
25:	learn: 28.3947826	total: 24.4ms	remaining: 164ms
26:	learn: 27.9729009	total: 25.3ms	remaining: 162ms
27:	learn: 27.7762599	total: 26.2ms	remaining: 161ms
28:	learn: 27.5912160	total: 27ms	remaining: 159ms
29:	learn: 27.4382348	total: 28ms	remaining: 159ms
30:	learn: 27.0973697	total: 29ms	remaining: 158ms
31:	learn: 26.9004200	total: 29.8ms	remaining: 157ms
32:	learn: 26.6129021	total: 31ms	remaining: 157ms
33:	learn: 26.3660493	total: 32ms	remaining: 156ms
34:	learn: 26.2635529	total: 32.9ms	remaining: 155ms
35:	learn: 26.1916283	total: 33.7ms	remaining: 153ms
36:	learn: 26.0985291	total: 34.6ms	remaining: 152ms
37:	learn: 25.9659404	total: 35.4ms	remaining: 151ms
38:	learn: 25.7262377	total: 36.3ms	remaining: 150ms
39:	learn: 25.4809954	total: 37.1ms	remaining: 149ms
40:	learn: 25.3440060	total: 38ms	remaining: 148ms
41:	learn: 25.3112549	total: 38.8ms	remaining: 146ms
42:	learn: 25.2564550	total: 39.7ms	remaining: 145ms
43:	learn: 25.1739692	total: 40.5ms	remaining: 144ms
44:	learn: 25.1384274	total: 41.4ms	remaining: 143ms
45:	learn: 25.0447663	total: 42.2ms	remaining: 141ms
46:	learn: 24.8201340	total: 43.1ms	remaining: 140ms
47:	learn: 24.7574334	total: 43.9ms	remaining: 139ms
48:	learn: 24.5706548	total: 44.9ms	remaining: 138ms
49:	learn: 24.5183966	total: 46.1ms	remaining: 138ms
50:	learn: 24.4414337	total: 47ms	remaining: 137ms
51:	learn: 24.3357028	total: 48ms	remaining: 137ms
52:	learn: 24.3247113	total: 48.9ms	remaining: 136ms
53:	learn: 24.2725465	total: 49.8ms	remaining: 135ms
54:	learn: 23.9983847	total: 50.9ms	remaining: 134ms
55:	learn: 23.9627559	total: 51.8ms	remaining: 133ms
56:	learn: 23.9145553	total: 52.6ms	remaining: 132ms
57:	learn: 23.7757531	total: 53.6ms	remaining: 131ms
58:	learn: 23.7216584	total: 54.6ms	remaining: 130ms
59:	learn: 23.6699105	total: 55.5ms	remaining: 129ms
60:	learn: 23.6011146	total: 56.4ms	remaining: 129ms
61:	learn: 23.5650176	total: 57.3ms	remaining: 128ms
62:	learn: 23.5284638	total: 58.2ms	remaining: 127ms
63:	learn: 23.4690695	total: 59.1ms	remaining: 126ms
64:	learn: 23.3940631	total: 60.1ms	remaining: 125ms
65:	learn: 23.3662453	total: 61.1ms	remaining: 124ms
66:	learn: 23.3190940	total: 62.1ms	remaining: 123ms
67:	learn: 23.2986584	total: 63.1ms	remaining: 122ms
68:	learn: 23.2529912	total: 64.1ms	remaining: 122ms
69:	learn: 23.1094133	total: 65ms	remaining: 121ms
70:	learn: 22.9184242	total: 65.9ms	remaining: 120ms
71:	learn: 22.6866759	total: 66.8ms	remaining: 119ms
72:	learn: 22.6057583	total: 67.6ms	remaining: 118ms
73:	learn: 22.4838393	total: 68.5ms	remaining: 117ms
74:	learn: 22.2333236	total: 69.4ms	remaining: 116ms
75:	learn: 22.1120753	total: 70.5ms	remaining: 115ms
76:	learn: 22.0765287	total: 72.9ms	remaining: 116ms
77:	learn: 22.0304924	total: 74.6ms	remaining: 117ms
78:	learn: 22.0230993	total: 76.2ms	remaining: 117ms
79:	learn: 22.0042415	total: 78ms	remaining: 117ms
80:	learn: 21.8795389	total: 79.7ms	remaining: 117ms
81:	learn: 21.8456202	total: 81ms	remaining: 117ms
82:	learn: 21.7733275	total: 82.5ms	remaining: 116ms
83:	learn: 21.6806247	total: 83.8ms	remaining: 116ms
84:	learn: 21.6624486	total: 85ms	remaining: 115ms
85:	learn: 21.6498044	total: 86.2ms	remaining: 114ms
86:	learn: 21.5835353	total: 87.4ms	remaining: 114ms
87:	learn: 21.4017716	total: 88.6ms	remaining: 113ms
88:	learn: 21.2529610	total: 89.7ms	remaining: 112ms
89:	learn: 21.1279531	total: 90.7ms	remaining: 111ms
90:	learn: 21.0466260	total: 91.7ms	remaining: 110ms
91:	learn: 20.8952066	total: 92.7ms	remaining: 109ms
92:	learn: 20.8772971	total: 93.7ms	remaining: 108ms
93:	learn: 20.6741999	total: 95.3ms	remaining: 107ms
94:	learn: 20.6378157	total: 96.5ms	remaining: 107ms
95:	learn: 20.5962306	total: 97.5ms	remaining: 106ms
96:	learn: 20.5629829	total: 98.5ms	remaining: 105ms
97:	learn: 20.5448506	total: 99.3ms	remaining: 103ms
98:	learn: 20.5226524	total: 100ms	remaining: 102ms
99:	learn: 20.4312112	total: 101ms	remaining: 101ms
100:	learn: 20.4048452	total: 102ms	remaining: 100ms
101:	learn: 20.3752038	total: 103ms	remaining: 99.1ms
102:	learn: 20.3590112	total: 104ms	remaining: 98.1ms
103:	learn: 20.2680349	total: 105ms	remaining: 97ms
104:	learn: 20.1362314	total: 106ms	remaining: 95.9ms
105:	learn: 20.0802285	total: 107ms	remaining: 94.8ms
106:	learn: 19.9232838	total: 108ms	remaining: 93.7ms
107:	learn: 19.8193773	total: 109ms	remaining: 92.6ms
108:	learn: 19.7943631	total: 110ms	remaining: 91.5ms
109:	learn: 19.7229289	total: 110ms	remaining: 90.4ms
110:	learn: 19.5907909	total: 112ms	remaining: 89.4ms
111:	learn: 19.4546155	total: 113ms	remaining: 88.4ms
112:	learn: 19.4375942	total: 114ms	remaining: 87.4ms
113:	learn: 19.4151076	total: 115ms	remaining: 86.4ms
114:	learn: 19.4000766	total: 115ms	remaining: 85.3ms
115:	learn: 19.2875957	total: 116ms	remaining: 84.3ms
116:	learn: 19.2735673	total: 117ms	remaining: 83.2ms
117:	learn: 19.2081889	total: 118ms	remaining: 82.3ms
118:	learn: 19.1672137	total: 120ms	remaining: 81.3ms
119:	learn: 19.0968083	total: 121ms	remaining: 80.3ms
120:	learn: 18.9984559	total: 122ms	remaining: 79.4ms
121:	learn: 18.9275960	total: 123ms	remaining: 78.5ms
122:	learn: 18.8217056	total: 124ms	remaining: 77.5ms
123:	learn: 18.7014433	total: 125ms	remaining: 76.5ms
124:	learn: 18.6728637	total: 126ms	remaining: 75.5ms
125:	learn: 18.6598352	total: 127ms	remaining: 74.4ms
126:	learn: 18.5993266	total: 128ms	remaining: 73.4ms
127:	learn: 18.5852342	total: 129ms	remaining: 72.3ms
128:	learn: 18.5146543	total: 129ms	remaining: 71.2ms
129:	learn: 18.4801605	total: 130ms	remaining: 70.2ms
130:	learn: 18.2676408	total: 131ms	remaining: 69.1ms
131:	learn: 18.2494973	total: 132ms	remaining: 68ms
132:	learn: 18.1697048	total: 133ms	remaining: 67ms
133:	learn: 18.1389286	total: 134ms	remaining: 65.9ms
134:	learn: 18.0973904	total: 135ms	remaining: 64.9ms
135:	learn: 17.9996290	total: 136ms	remaining: 63.9ms
136:	learn: 17.9626363	total: 137ms	remaining: 62.9ms
137:	learn: 17.9496087	total: 138ms	remaining: 61.8ms
138:	learn: 17.9042024	total: 139ms	remaining: 60.8ms
139:	learn: 17.8927765	total: 140ms	remaining: 59.8ms
140:	learn: 17.8660122	total: 141ms	remaining: 58.8ms
141:	learn: 17.7475656	total: 141ms	remaining: 57.8ms
142:	learn: 17.6944334	total: 142ms	remaining: 56.8ms
143:	learn: 17.6797405	total: 143ms	remaining: 55.7ms
144:	learn: 17.6664132	total: 144ms	remaining: 54.7ms
145:	learn: 17.5997144	total: 145ms	remaining: 53.8ms
146:	learn: 17.4108683	total: 146ms	remaining: 52.8ms
147:	learn: 17.3406530	total: 147ms	remaining: 51.8ms
148:	learn: 17.3181477	total: 148ms	remaining: 50.8ms
149:	learn: 17.2702006	total: 149ms	remaining: 49.8ms
150:	learn: 17.1530569	total: 150ms	remaining: 48.8ms
151:	learn: 17.0874260	total: 151ms	remaining: 47.7ms
152:	learn: 17.0267677	total: 152ms	remaining: 46.7ms
153:	learn: 16.9793208	total: 153ms	remaining: 45.7ms
154:	learn: 16.9182291	total: 154ms	remaining: 44.7ms
155:	learn: 16.8962600	total: 155ms	remaining: 43.7ms
156:	learn: 16.8395104	total: 156ms	remaining: 42.7ms
157:	learn: 16.8007079	total: 157ms	remaining: 41.7ms
158:	learn: 16.7557320	total: 158ms	remaining: 40.6ms
159:	learn: 16.7450052	total: 159ms	remaining: 39.6ms
160:	learn: 16.7345445	total: 159ms	remaining: 38.6ms
161:	learn: 16.6817314	total: 160ms	remaining: 37.6ms
162:	learn: 16.6248358	total: 161ms	remaining: 36.6ms
163:	learn: 16.5789020	total: 162ms	remaining: 35.6ms
164:	learn: 16.5353886	total: 163ms	remaining: 34.6ms
165:	learn: 16.4952445	total: 164ms	remaining: 33.6ms
166:	learn: 16.4850501	total: 165ms	remaining: 32.6ms
167:	learn: 16.3843856	total: 166ms	remaining: 31.6ms
168:	learn: 16.3592728	total: 167ms	remaining: 30.6ms
169:	learn: 16.2861928	total: 167ms	remaining: 29.6ms
170:	learn: 16.2649911	total: 168ms	remaining: 28.5ms
171:	learn: 16.1977575	total: 169ms	remaining: 27.5ms
172:	learn: 16.1847998	total: 170ms	remaining: 26.5ms
173:	learn: 16.1812852	total: 171ms	remaining: 25.5ms
174:	learn: 16.1468297	total: 172ms	remaining: 24.5ms
175:	learn: 16.1436294	total: 173ms	remaining: 23.5ms
176:	learn: 16.1305002	total: 174ms	remaining: 22.5ms
177:	learn: 16.1077000	total: 174ms	remaining: 21.6ms
178:	learn: 16.0694944	total: 175ms	remaining: 20.6ms
179:	learn: 15.9938398	total: 176ms	remaining: 19.6ms
180:	learn: 15.9567876	total: 177ms	remaining: 18.6ms
181:	learn: 15.9454118	total: 178ms	remaining: 17.6ms
182:	learn: 15.9434230	total: 179ms	remaining: 16.6ms
183:	learn: 15.8906948	total: 180ms	remaining: 15.6ms
184:	learn: 15.8211938	total: 181ms	remaining: 14.7ms
185:	learn: 15.8148102	total: 182ms	remaining: 13.7ms
186:	learn: 15.7887930	total: 182ms	remaining: 12.7ms
187:	learn: 15.7843667	total: 183ms	remaining: 11.7ms
188:	learn: 15.7417983	total: 184ms	remaining: 10.7ms
189:	learn: 15.6930618	total: 185ms	remaining: 9.75ms
190:	learn: 15.6489770	total: 186ms	remaining: 8.77ms
191:	learn: 15.6467712	total: 187ms	remaining: 7.79ms
192:	learn: 15.5534080	total: 188ms	remaining: 6.82ms
193:	learn: 15.5089178	total: 189ms	remaining: 5.84ms
194:	learn: 15.4898722	total: 190ms	remaining: 4.86ms
195:	learn: 15.4852691	total: 191ms	remaining: 3.89ms
196:	learn: 15.4802710	total: 191ms	remaining: 2.91ms
197:	learn: 15.4352188	total: 192ms	remaining: 1.94ms
198:	learn: 15.3851395	total: 193ms	remaining: 970us
199:	learn: 15.3749774	total: 194ms	remaining: 0us
0:	learn: 46.2699959	total: 1.16ms	remaining: 231ms
1:	learn: 44.8854743	total: 1.99ms	remaining: 197ms
2:	learn: 43.4874731	total: 2.87ms	remaining: 189ms
3:	learn: 42.6584064	total: 3.89ms	remaining: 191ms
4:	learn: 42.1224094	total: 4.87ms	remaining: 190ms
5:	learn: 40.9459501	total: 5.81ms	remaining: 188ms
6:	learn: 39.4763483	total: 6.71ms	remaining: 185ms
7:	learn: 38.6090144	total: 7.76ms	remaining: 186ms
8:	learn: 38.2791057	total: 8.77ms	remaining: 186ms
9:	learn: 37.7813487	total: 9.66ms	remaining: 184ms
10:	learn: 37.4242408	total: 10.6ms	remaining: 181ms
11:	learn: 36.3484663	total: 11.5ms	remaining: 180ms
12:	learn: 35.3827565	total: 12.4ms	remaining: 179ms
13:	learn: 34.4315777	total: 13.4ms	remaining: 179ms
14:	learn: 33.5788252	total: 14.3ms	remaining: 177ms
15:	learn: 33.3125662	total: 15.3ms	remaining: 176ms
16:	learn: 32.5306907	total: 16.3ms	remaining: 175ms
17:	learn: 31.9688285	total: 17.2ms	remaining: 174ms
18:	learn: 31.7709834	total: 18.2ms	remaining: 173ms
19:	learn: 31.4927785	total: 19.2ms	remaining: 173ms
20:	learn: 31.2468916	total: 20.2ms	remaining: 172ms
21:	learn: 30.9125421	total: 21.2ms	remaining: 172ms
22:	learn: 30.2429233	total: 22.1ms	remaining: 170ms
23:	learn: 29.7659375	total: 23.1ms	remaining: 169ms
24:	learn: 29.4369976	total: 24.1ms	remaining: 169ms
25:	learn: 29.1267715	total: 25.1ms	remaining: 168ms
26:	learn: 28.9739320	total: 26.5ms	remaining: 170ms
27:	learn: 28.7871325	total: 27.8ms	remaining: 171ms
28:	learn: 28.6059752	total: 29.9ms	remaining: 176ms
29:	learn: 28.3471120	total: 31.2ms	remaining: 177ms
30:	learn: 28.2221955	total: 32.4ms	remaining: 177ms
31:	learn: 28.1174912	total: 33.7ms	remaining: 177ms
32:	learn: 27.7591371	total: 35ms	remaining: 177ms
33:	learn: 27.4545561	total: 36.2ms	remaining: 177ms
34:	learn: 27.3651817	total: 37.7ms	remaining: 178ms
35:	learn: 27.2720165	total: 39.5ms	remaining: 180ms
36:	learn: 27.1708405	total: 41.2ms	remaining: 181ms
37:	learn: 27.0126718	total: 43.2ms	remaining: 184ms
38:	learn: 26.9252742	total: 45ms	remaining: 186ms
39:	learn: 26.7619975	total: 46.8ms	remaining: 187ms
40:	learn: 26.5083292	total: 48ms	remaining: 186ms
41:	learn: 26.4789513	total: 49.2ms	remaining: 185ms
42:	learn: 26.4229710	total: 50.3ms	remaining: 184ms
43:	learn: 26.3645871	total: 51.4ms	remaining: 182ms
44:	learn: 26.2712363	total: 53.1ms	remaining: 183ms
45:	learn: 26.2241641	total: 54.5ms	remaining: 182ms
46:	learn: 26.1544475	total: 56ms	remaining: 182ms
47:	learn: 26.1134536	total: 56.9ms	remaining: 180ms
48:	learn: 25.9054241	total: 58.1ms	remaining: 179ms
49:	learn: 25.6874164	total: 59.2ms	remaining: 178ms
50:	learn: 25.5631575	total: 60.2ms	remaining: 176ms
51:	learn: 25.3809224	total: 61.2ms	remaining: 174ms
52:	learn: 25.1902631	total: 62.2ms	remaining: 172ms
53:	learn: 25.0273906	total: 63.1ms	remaining: 171ms
54:	learn: 24.9158305	total: 64.1ms	remaining: 169ms
55:	learn: 24.8514780	total: 65.1ms	remaining: 167ms
56:	learn: 24.7697643	total: 66.1ms	remaining: 166ms
57:	learn: 24.7115651	total: 67.1ms	remaining: 164ms
58:	learn: 24.6618184	total: 68.1ms	remaining: 163ms
59:	learn: 24.5267592	total: 69ms	remaining: 161ms
60:	learn: 24.4741026	total: 70.2ms	remaining: 160ms
61:	learn: 24.4277839	total: 71.3ms	remaining: 159ms
62:	learn: 24.2760324	total: 72.5ms	remaining: 158ms
63:	learn: 24.2315657	total: 73.7ms	remaining: 157ms
64:	learn: 24.0886786	total: 74.9ms	remaining: 156ms
65:	learn: 23.9247244	total: 76.1ms	remaining: 155ms
66:	learn: 23.7841338	total: 77.1ms	remaining: 153ms
67:	learn: 23.7559864	total: 78.1ms	remaining: 152ms
68:	learn: 23.7077371	total: 79.2ms	remaining: 150ms
69:	learn: 23.6649534	total: 80.2ms	remaining: 149ms
70:	learn: 23.6270368	total: 81.4ms	remaining: 148ms
71:	learn: 23.4636827	total: 82.4ms	remaining: 146ms
72:	learn: 23.1870361	total: 83.3ms	remaining: 145ms
73:	learn: 23.0968477	total: 84.5ms	remaining: 144ms
74:	learn: 22.9887973	total: 85.6ms	remaining: 143ms
75:	learn: 22.8838469	total: 86.8ms	remaining: 142ms
76:	learn: 22.8216257	total: 87.8ms	remaining: 140ms
77:	learn: 22.7837153	total: 88.8ms	remaining: 139ms
78:	learn: 22.7145905	total: 89.8ms	remaining: 138ms
79:	learn: 22.6907223	total: 90.7ms	remaining: 136ms
80:	learn: 22.5764438	total: 91.7ms	remaining: 135ms
81:	learn: 22.4800392	total: 92.7ms	remaining: 133ms
82:	learn: 22.4328644	total: 93.6ms	remaining: 132ms
83:	learn: 22.1728982	total: 94.5ms	remaining: 130ms
84:	learn: 22.0670578	total: 95.4ms	remaining: 129ms
85:	learn: 21.9684094	total: 96.3ms	remaining: 128ms
86:	learn: 21.8766732	total: 97.2ms	remaining: 126ms
87:	learn: 21.7803745	total: 98.1ms	remaining: 125ms
88:	learn: 21.6375981	total: 99.1ms	remaining: 124ms
89:	learn: 21.5730326	total: 100ms	remaining: 122ms
90:	learn: 21.4939746	total: 101ms	remaining: 121ms
91:	learn: 21.3218945	total: 102ms	remaining: 120ms
92:	learn: 21.2510601	total: 103ms	remaining: 118ms
93:	learn: 21.1757048	total: 104ms	remaining: 117ms
94:	learn: 21.1180091	total: 105ms	remaining: 116ms
95:	learn: 20.9964494	total: 106ms	remaining: 115ms
96:	learn: 20.9045719	total: 107ms	remaining: 113ms
97:	learn: 20.8193882	total: 108ms	remaining: 112ms
98:	learn: 20.7598774	total: 109ms	remaining: 111ms
99:	learn: 20.6397878	total: 110ms	remaining: 110ms
100:	learn: 20.5736765	total: 111ms	remaining: 109ms
101:	learn: 20.4913909	total: 112ms	remaining: 108ms
102:	learn: 20.3960154	total: 113ms	remaining: 107ms
103:	learn: 20.3224826	total: 114ms	remaining: 106ms
104:	learn: 20.2564899	total: 116ms	remaining: 105ms
105:	learn: 20.1325674	total: 116ms	remaining: 103ms
106:	learn: 20.0574015	total: 117ms	remaining: 102ms
107:	learn: 19.8072271	total: 118ms	remaining: 101ms
108:	learn: 19.7112510	total: 119ms	remaining: 99.5ms
109:	learn: 19.6509125	total: 120ms	remaining: 98.2ms
110:	learn: 19.5954385	total: 121ms	remaining: 97ms
111:	learn: 19.5448318	total: 122ms	remaining: 95.8ms
112:	learn: 19.4593526	total: 123ms	remaining: 94.5ms
113:	learn: 19.3743000	total: 124ms	remaining: 93.3ms
114:	learn: 19.3302381	total: 125ms	remaining: 92.1ms
115:	learn: 19.2860380	total: 126ms	remaining: 90.9ms
116:	learn: 19.0615175	total: 126ms	remaining: 89.7ms
117:	learn: 19.0185047	total: 127ms	remaining: 88.5ms
118:	learn: 18.9377922	total: 128ms	remaining: 87.3ms
119:	learn: 18.9028029	total: 129ms	remaining: 86.1ms
120:	learn: 18.8683850	total: 130ms	remaining: 84.9ms
121:	learn: 18.8548977	total: 131ms	remaining: 83.7ms
122:	learn: 18.7914127	total: 132ms	remaining: 82.5ms
123:	learn: 18.6896914	total: 133ms	remaining: 81.3ms
124:	learn: 18.6654429	total: 134ms	remaining: 80.1ms
125:	learn: 18.5726017	total: 134ms	remaining: 79ms
126:	learn: 18.4784282	total: 135ms	remaining: 77.8ms
127:	learn: 18.4297613	total: 136ms	remaining: 76.6ms
128:	learn: 18.3776109	total: 137ms	remaining: 75.5ms
129:	learn: 18.3645936	total: 138ms	remaining: 74.3ms
130:	learn: 18.3253364	total: 139ms	remaining: 73.2ms
131:	learn: 18.2658023	total: 140ms	remaining: 72ms
132:	learn: 18.2062697	total: 141ms	remaining: 70.9ms
133:	learn: 18.1527061	total: 142ms	remaining: 69.8ms
134:	learn: 18.1316305	total: 143ms	remaining: 68.6ms
135:	learn: 18.0646103	total: 143ms	remaining: 67.5ms
136:	learn: 18.0530383	total: 144ms	remaining: 66.4ms
137:	learn: 18.0250659	total: 145ms	remaining: 65.3ms
138:	learn: 18.0131252	total: 146ms	remaining: 64.1ms
139:	learn: 17.9494983	total: 147ms	remaining: 63ms
140:	learn: 17.9252869	total: 148ms	remaining: 61.9ms
141:	learn: 17.8953732	total: 149ms	remaining: 60.8ms
142:	learn: 17.8514183	total: 150ms	remaining: 59.7ms
143:	learn: 17.7802266	total: 151ms	remaining: 58.6ms
144:	learn: 17.6903795	total: 152ms	remaining: 57.5ms
145:	learn: 17.6576104	total: 152ms	remaining: 56.4ms
146:	learn: 17.5872369	total: 153ms	remaining: 55.3ms
147:	learn: 17.5581149	total: 154ms	remaining: 54.2ms
148:	learn: 17.5216630	total: 155ms	remaining: 53.1ms
149:	learn: 17.4728428	total: 156ms	remaining: 52ms
150:	learn: 17.4594283	total: 157ms	remaining: 50.9ms
151:	learn: 17.3879828	total: 158ms	remaining: 49.8ms
152:	learn: 17.3189338	total: 159ms	remaining: 48.8ms
153:	learn: 17.3035591	total: 160ms	remaining: 47.7ms
154:	learn: 17.2389162	total: 161ms	remaining: 46.6ms
155:	learn: 17.2246577	total: 161ms	remaining: 45.5ms
156:	learn: 17.1810974	total: 162ms	remaining: 44.5ms
157:	learn: 17.1426611	total: 163ms	remaining: 43.4ms
158:	learn: 17.1333268	total: 164ms	remaining: 42.3ms
159:	learn: 17.0347736	total: 165ms	remaining: 41.3ms
160:	learn: 16.9935040	total: 166ms	remaining: 40.2ms
161:	learn: 16.9042551	total: 167ms	remaining: 39.1ms
162:	learn: 16.8766477	total: 168ms	remaining: 38.1ms
163:	learn: 16.8511556	total: 169ms	remaining: 37ms
164:	learn: 16.8395866	total: 169ms	remaining: 35.9ms
165:	learn: 16.7994908	total: 170ms	remaining: 34.9ms
166:	learn: 16.7403781	total: 171ms	remaining: 33.8ms
167:	learn: 16.6991563	total: 172ms	remaining: 32.8ms
168:	learn: 16.6449540	total: 173ms	remaining: 31.7ms
169:	learn: 16.6233722	total: 174ms	remaining: 30.7ms
170:	learn: 16.5779656	total: 175ms	remaining: 29.6ms
171:	learn: 16.5549539	total: 176ms	remaining: 28.6ms
172:	learn: 16.5033403	total: 177ms	remaining: 27.6ms
173:	learn: 16.4277637	total: 178ms	remaining: 26.6ms
174:	learn: 16.4021748	total: 179ms	remaining: 25.5ms
175:	learn: 16.3498665	total: 179ms	remaining: 24.5ms
176:	learn: 16.3064470	total: 180ms	remaining: 23.4ms
177:	learn: 16.2702973	total: 181ms	remaining: 22.4ms
178:	learn: 16.2549298	total: 182ms	remaining: 21.4ms
179:	learn: 16.2189636	total: 183ms	remaining: 20.3ms
180:	learn: 16.1674264	total: 184ms	remaining: 19.3ms
181:	learn: 16.1179352	total: 185ms	remaining: 18.3ms
182:	learn: 16.0976349	total: 186ms	remaining: 17.3ms
183:	learn: 16.0376148	total: 187ms	remaining: 16.3ms
184:	learn: 16.0211743	total: 188ms	remaining: 15.3ms
185:	learn: 15.9811708	total: 189ms	remaining: 14.3ms
186:	learn: 15.9341211	total: 191ms	remaining: 13.2ms
187:	learn: 15.9125573	total: 191ms	remaining: 12.2ms
188:	learn: 15.8988890	total: 192ms	remaining: 11.2ms
189:	learn: 15.8516321	total: 193ms	remaining: 10.2ms
190:	learn: 15.7935432	total: 194ms	remaining: 9.15ms
191:	learn: 15.7495219	total: 195ms	remaining: 8.13ms
192:	learn: 15.7258412	total: 196ms	remaining: 7.11ms
193:	learn: 15.6504316	total: 197ms	remaining: 6.09ms
194:	learn: 15.6036074	total: 198ms	remaining: 5.07ms
195:	learn: 15.5525994	total: 199ms	remaining: 4.05ms
196:	learn: 15.5392575	total: 200ms	remaining: 3.04ms
197:	learn: 15.5020674	total: 200ms	remaining: 2.02ms
198:	learn: 15.4360789	total: 201ms	remaining: 1.01ms
199:	learn: 15.3901879	total: 202ms	remaining: 0us
0:	learn: 27.6737479	total: 24.1ms	remaining: 7.2s
1:	learn: 27.3204154	total: 42.7ms	remaining: 6.37s
2:	learn: 26.9091890	total: 61.7ms	remaining: 6.11s
3:	learn: 26.4875027	total: 82.2ms	remaining: 6.08s
4:	learn: 26.1185303	total: 84.3ms	remaining: 4.97s
5:	learn: 25.8552625	total: 105ms	remaining: 5.16s
6:	learn: 25.5259340	total: 125ms	remaining: 5.25s
7:	learn: 25.1594330	total: 145ms	remaining: 5.28s
8:	learn: 24.8131787	total: 165ms	remaining: 5.34s
9:	learn: 24.5107101	total: 187ms	remaining: 5.44s
10:	learn: 24.1382533	total: 213ms	remaining: 5.58s
11:	learn: 23.9059068	total: 241ms	remaining: 5.77s
12:	learn: 23.5820314	total: 263ms	remaining: 5.82s
13:	learn: 23.2566481	total: 286ms	remaining: 5.84s
14:	learn: 22.9720100	total: 309ms	remaining: 5.86s
15:	learn: 22.6458045	total: 328ms	remaining: 5.82s
16:	learn: 22.3310792	total: 349ms	remaining: 5.81s
17:	learn: 22.0614254	total: 371ms	remaining: 5.81s
18:	learn: 21.8674093	total: 394ms	remaining: 5.82s
19:	learn: 21.6777228	total: 415ms	remaining: 5.81s
20:	learn: 21.4758843	total: 444ms	remaining: 5.9s
21:	learn: 21.2015722	total: 467ms	remaining: 5.9s
22:	learn: 20.9741180	total: 486ms	remaining: 5.86s
23:	learn: 20.8103315	total: 506ms	remaining: 5.81s
24:	learn: 20.6059519	total: 525ms	remaining: 5.77s
25:	learn: 20.3003482	total: 545ms	remaining: 5.74s
26:	learn: 20.1047051	total: 565ms	remaining: 5.71s
27:	learn: 19.9117545	total: 586ms	remaining: 5.69s
28:	learn: 19.7508802	total: 609ms	remaining: 5.69s
29:	learn: 19.5995500	total: 643ms	remaining: 5.78s
30:	learn: 19.4265011	total: 667ms	remaining: 5.79s
31:	learn: 19.2507253	total: 690ms	remaining: 5.78s
32:	learn: 19.0780638	total: 714ms	remaining: 5.77s
33:	learn: 18.8739495	total: 736ms	remaining: 5.76s
34:	learn: 18.6951687	total: 756ms	remaining: 5.73s
35:	learn: 18.5423419	total: 779ms	remaining: 5.71s
36:	learn: 18.3650169	total: 801ms	remaining: 5.7s
37:	learn: 18.1741271	total: 824ms	remaining: 5.68s
38:	learn: 18.0512035	total: 854ms	remaining: 5.72s
39:	learn: 17.9045476	total: 877ms	remaining: 5.7s
40:	learn: 17.7669779	total: 899ms	remaining: 5.68s
41:	learn: 17.6440484	total: 919ms	remaining: 5.65s
42:	learn: 17.4832065	total: 941ms	remaining: 5.63s
43:	learn: 17.3307814	total: 963ms	remaining: 5.6s
44:	learn: 17.1968371	total: 984ms	remaining: 5.58s
45:	learn: 17.0551367	total: 1.01s	remaining: 5.56s
46:	learn: 16.9663187	total: 1.03s	remaining: 5.57s
47:	learn: 16.8379611	total: 1.06s	remaining: 5.57s
48:	learn: 16.7219020	total: 1.08s	remaining: 5.55s
49:	learn: 16.6155465	total: 1.11s	remaining: 5.54s
50:	learn: 16.5139205	total: 1.13s	remaining: 5.52s
51:	learn: 16.3531147	total: 1.14s	remaining: 5.43s
52:	learn: 16.2763831	total: 1.16s	remaining: 5.42s
53:	learn: 16.1694133	total: 1.19s	remaining: 5.4s
54:	learn: 16.0589004	total: 1.21s	remaining: 5.39s
55:	learn: 15.9660704	total: 1.23s	remaining: 5.37s
56:	learn: 15.8765659	total: 1.26s	remaining: 5.39s
57:	learn: 15.7724924	total: 1.29s	remaining: 5.38s
58:	learn: 15.6865252	total: 1.31s	remaining: 5.36s
59:	learn: 15.6055417	total: 1.33s	remaining: 5.34s
60:	learn: 15.5264778	total: 1.36s	remaining: 5.32s
61:	learn: 15.4370145	total: 1.38s	remaining: 5.3s
62:	learn: 15.3562945	total: 1.4s	remaining: 5.27s
63:	learn: 15.2817484	total: 1.42s	remaining: 5.24s
64:	learn: 15.1941732	total: 1.44s	remaining: 5.22s
65:	learn: 15.1049991	total: 1.47s	remaining: 5.2s
66:	learn: 15.0359663	total: 1.5s	remaining: 5.21s
67:	learn: 14.9351417	total: 1.52s	remaining: 5.19s
68:	learn: 14.8495497	total: 1.54s	remaining: 5.17s
69:	learn: 14.7623093	total: 1.57s	remaining: 5.14s
70:	learn: 14.6771574	total: 1.59s	remaining: 5.13s
71:	learn: 14.5978140	total: 1.61s	remaining: 5.1s
72:	learn: 14.5375886	total: 1.63s	remaining: 5.07s
73:	learn: 14.4649353	total: 1.65s	remaining: 5.04s
74:	learn: 14.4009644	total: 1.67s	remaining: 5.02s
75:	learn: 14.3287275	total: 1.71s	remaining: 5.03s
76:	learn: 14.2318571	total: 1.73s	remaining: 5.01s
77:	learn: 14.1625701	total: 1.75s	remaining: 4.98s
78:	learn: 14.0644282	total: 1.77s	remaining: 4.95s
79:	learn: 13.9762883	total: 1.79s	remaining: 4.92s
80:	learn: 13.9042920	total: 1.81s	remaining: 4.9s
81:	learn: 13.8176535	total: 1.83s	remaining: 4.87s
82:	learn: 13.6910849	total: 1.85s	remaining: 4.85s
83:	learn: 13.5737570	total: 1.88s	remaining: 4.82s
84:	learn: 13.5049845	total: 1.9s	remaining: 4.8s
85:	learn: 13.4341145	total: 1.93s	remaining: 4.8s
86:	learn: 13.3796196	total: 1.95s	remaining: 4.78s
87:	learn: 13.3024352	total: 1.97s	remaining: 4.76s
88:	learn: 13.2435566	total: 2s	remaining: 4.74s
89:	learn: 13.1910369	total: 2.02s	remaining: 4.71s
90:	learn: 13.1471565	total: 2.04s	remaining: 4.69s
91:	learn: 13.0611063	total: 2.06s	remaining: 4.67s
92:	learn: 12.9909112	total: 2.09s	remaining: 4.64s
93:	learn: 12.9355316	total: 2.11s	remaining: 4.62s
94:	learn: 12.8561480	total: 2.13s	remaining: 4.61s
95:	learn: 12.7929803	total: 2.15s	remaining: 4.58s
96:	learn: 12.7262412	total: 2.18s	remaining: 4.55s
97:	learn: 12.6739210	total: 2.2s	remaining: 4.53s
98:	learn: 12.6265593	total: 2.22s	remaining: 4.5s
99:	learn: 12.5594247	total: 2.24s	remaining: 4.47s
100:	learn: 12.4986691	total: 2.26s	remaining: 4.45s
101:	learn: 12.4471027	total: 2.28s	remaining: 4.43s
102:	learn: 12.3962782	total: 2.3s	remaining: 4.4s
103:	learn: 12.3424090	total: 2.33s	remaining: 4.39s
104:	learn: 12.2660971	total: 2.36s	remaining: 4.38s
105:	learn: 12.2042689	total: 2.38s	remaining: 4.36s
106:	learn: 12.1363044	total: 2.4s	remaining: 4.34s
107:	learn: 12.1022229	total: 2.43s	remaining: 4.32s
108:	learn: 12.0491052	total: 2.45s	remaining: 4.29s
109:	learn: 11.9900598	total: 2.47s	remaining: 4.26s
110:	learn: 11.9411055	total: 2.49s	remaining: 4.24s
111:	learn: 11.8782485	total: 2.51s	remaining: 4.22s
112:	learn: 11.8248797	total: 2.54s	remaining: 4.2s
113:	learn: 11.7750338	total: 2.56s	remaining: 4.18s
114:	learn: 11.7390791	total: 2.58s	remaining: 4.16s
115:	learn: 11.6795857	total: 2.61s	remaining: 4.13s
116:	learn: 11.5948258	total: 2.63s	remaining: 4.11s
117:	learn: 11.5598943	total: 2.65s	remaining: 4.08s
118:	learn: 11.4992434	total: 2.67s	remaining: 4.06s
119:	learn: 11.4491317	total: 2.69s	remaining: 4.04s
120:	learn: 11.3929630	total: 2.71s	remaining: 4.02s
121:	learn: 11.3373664	total: 2.74s	remaining: 4s
122:	learn: 11.2805890	total: 2.77s	remaining: 3.98s
123:	learn: 11.2341228	total: 2.79s	remaining: 3.97s
124:	learn: 11.1615505	total: 2.82s	remaining: 3.94s
125:	learn: 11.1024523	total: 2.84s	remaining: 3.92s
126:	learn: 11.0710084	total: 2.87s	remaining: 3.9s
127:	learn: 11.0251377	total: 2.89s	remaining: 3.88s
128:	learn: 10.9884605	total: 2.91s	remaining: 3.86s
129:	learn: 10.9584488	total: 2.93s	remaining: 3.84s
130:	learn: 10.8995848	total: 2.96s	remaining: 3.82s
131:	learn: 10.8549250	total: 2.99s	remaining: 3.8s
132:	learn: 10.8113067	total: 3.01s	remaining: 3.78s
133:	learn: 10.7553419	total: 3.03s	remaining: 3.75s
134:	learn: 10.7096544	total: 3.05s	remaining: 3.73s
135:	learn: 10.6757190	total: 3.08s	remaining: 3.71s
136:	learn: 10.6327685	total: 3.1s	remaining: 3.69s
137:	learn: 10.5902988	total: 3.12s	remaining: 3.66s
138:	learn: 10.5467376	total: 3.14s	remaining: 3.64s
139:	learn: 10.5163592	total: 3.16s	remaining: 3.62s
140:	learn: 10.4694138	total: 3.19s	remaining: 3.59s
141:	learn: 10.4359855	total: 3.22s	remaining: 3.58s
142:	learn: 10.4057439	total: 3.24s	remaining: 3.56s
143:	learn: 10.3729240	total: 3.27s	remaining: 3.54s
144:	learn: 10.3359301	total: 3.29s	remaining: 3.52s
145:	learn: 10.2697670	total: 3.31s	remaining: 3.5s
146:	learn: 10.2094154	total: 3.34s	remaining: 3.47s
147:	learn: 10.1600330	total: 3.36s	remaining: 3.45s
148:	learn: 10.1308425	total: 3.38s	remaining: 3.43s
149:	learn: 10.0855107	total: 3.41s	remaining: 3.41s
150:	learn: 10.0385460	total: 3.43s	remaining: 3.39s
151:	learn: 10.0087773	total: 3.45s	remaining: 3.36s
152:	learn: 9.9793744	total: 3.48s	remaining: 3.34s
153:	learn: 9.9525485	total: 3.5s	remaining: 3.32s
154:	learn: 9.9079941	total: 3.52s	remaining: 3.29s
155:	learn: 9.8778723	total: 3.54s	remaining: 3.27s
156:	learn: 9.8246060	total: 3.56s	remaining: 3.25s
157:	learn: 9.7894878	total: 3.59s	remaining: 3.22s
158:	learn: 9.7484967	total: 3.61s	remaining: 3.2s
159:	learn: 9.7248391	total: 3.64s	remaining: 3.18s
160:	learn: 9.7014264	total: 3.66s	remaining: 3.16s
161:	learn: 9.6583834	total: 3.69s	remaining: 3.14s
162:	learn: 9.6144299	total: 3.71s	remaining: 3.12s
163:	learn: 9.5794995	total: 3.74s	remaining: 3.1s
164:	learn: 9.5550633	total: 3.76s	remaining: 3.07s
165:	learn: 9.5026632	total: 3.78s	remaining: 3.05s
166:	learn: 9.4633969	total: 3.8s	remaining: 3.03s
167:	learn: 9.4104818	total: 3.83s	remaining: 3.01s
168:	learn: 9.3845831	total: 3.86s	remaining: 2.99s
169:	learn: 9.3337722	total: 3.88s	remaining: 2.96s
170:	learn: 9.2837197	total: 3.9s	remaining: 2.94s
171:	learn: 9.2466766	total: 3.92s	remaining: 2.92s
172:	learn: 9.2085127	total: 3.94s	remaining: 2.89s
173:	learn: 9.1694480	total: 3.96s	remaining: 2.87s
174:	learn: 9.1448907	total: 3.98s	remaining: 2.85s
175:	learn: 9.1013106	total: 4.01s	remaining: 2.82s
176:	learn: 9.0696815	total: 4.03s	remaining: 2.8s
177:	learn: 9.0279616	total: 4.06s	remaining: 2.78s
178:	learn: 9.0008978	total: 4.08s	remaining: 2.76s
179:	learn: 8.9449905	total: 4.11s	remaining: 2.74s
180:	learn: 8.9263735	total: 4.13s	remaining: 2.72s
181:	learn: 8.9082117	total: 4.16s	remaining: 2.69s
182:	learn: 8.8590211	total: 4.18s	remaining: 2.67s
183:	learn: 8.8398014	total: 4.2s	remaining: 2.65s
184:	learn: 8.7991374	total: 4.22s	remaining: 2.63s
185:	learn: 8.7574091	total: 4.25s	remaining: 2.6s
186:	learn: 8.7075149	total: 4.27s	remaining: 2.58s
187:	learn: 8.6651276	total: 4.3s	remaining: 2.56s
188:	learn: 8.6299124	total: 4.32s	remaining: 2.54s
189:	learn: 8.6039208	total: 4.34s	remaining: 2.51s
190:	learn: 8.5623097	total: 4.36s	remaining: 2.49s
191:	learn: 8.5109100	total: 4.38s	remaining: 2.46s
192:	learn: 8.4793653	total: 4.4s	remaining: 2.44s
193:	learn: 8.4481462	total: 4.42s	remaining: 2.42s
194:	learn: 8.4315766	total: 4.44s	remaining: 2.39s
195:	learn: 8.3834417	total: 4.47s	remaining: 2.37s
196:	learn: 8.3680774	total: 4.5s	remaining: 2.35s
197:	learn: 8.3496623	total: 4.52s	remaining: 2.33s
198:	learn: 8.3148580	total: 4.54s	remaining: 2.31s
199:	learn: 8.3052914	total: 4.57s	remaining: 2.28s
200:	learn: 8.2594410	total: 4.59s	remaining: 2.26s
201:	learn: 8.2470590	total: 4.61s	remaining: 2.24s
202:	learn: 8.2316760	total: 4.63s	remaining: 2.21s
203:	learn: 8.2041569	total: 4.65s	remaining: 2.19s
204:	learn: 8.1708835	total: 4.67s	remaining: 2.17s
205:	learn: 8.1301413	total: 4.7s	remaining: 2.14s
206:	learn: 8.0986826	total: 4.72s	remaining: 2.12s
207:	learn: 8.0741059	total: 4.74s	remaining: 2.1s
208:	learn: 8.0244528	total: 4.76s	remaining: 2.07s
209:	learn: 7.9989744	total: 4.78s	remaining: 2.05s
210:	learn: 7.9696573	total: 4.81s	remaining: 2.03s
211:	learn: 7.9396203	total: 4.83s	remaining: 2s
212:	learn: 7.9111124	total: 4.85s	remaining: 1.98s
213:	learn: 7.9007758	total: 4.88s	remaining: 1.96s
214:	learn: 7.8856958	total: 4.9s	remaining: 1.94s
215:	learn: 7.8685173	total: 4.92s	remaining: 1.92s
216:	learn: 7.8488503	total: 4.95s	remaining: 1.89s
217:	learn: 7.8127011	total: 4.97s	remaining: 1.87s
218:	learn: 7.7610464	total: 4.99s	remaining: 1.85s
219:	learn: 7.7371633	total: 5.01s	remaining: 1.82s
220:	learn: 7.7075772	total: 5.03s	remaining: 1.8s
221:	learn: 7.6862440	total: 5.05s	remaining: 1.77s
222:	learn: 7.6387389	total: 5.08s	remaining: 1.75s
223:	learn: 7.6039931	total: 5.1s	remaining: 1.73s
224:	learn: 7.5780873	total: 5.13s	remaining: 1.71s
225:	learn: 7.5366573	total: 5.15s	remaining: 1.69s
226:	learn: 7.5117065	total: 5.17s	remaining: 1.66s
227:	learn: 7.4849508	total: 5.19s	remaining: 1.64s
228:	learn: 7.4536731	total: 5.21s	remaining: 1.61s
229:	learn: 7.4238760	total: 5.23s	remaining: 1.59s
230:	learn: 7.4054602	total: 5.25s	remaining: 1.57s
231:	learn: 7.3841419	total: 5.27s	remaining: 1.54s
232:	learn: 7.3712995	total: 5.29s	remaining: 1.52s
233:	learn: 7.3403269	total: 5.33s	remaining: 1.5s
234:	learn: 7.3293521	total: 5.35s	remaining: 1.48s
235:	learn: 7.2977701	total: 5.37s	remaining: 1.46s
236:	learn: 7.2879483	total: 5.4s	remaining: 1.43s
237:	learn: 7.2651195	total: 5.42s	remaining: 1.41s
238:	learn: 7.2349887	total: 5.44s	remaining: 1.39s
239:	learn: 7.1998166	total: 5.46s	remaining: 1.36s
240:	learn: 7.1916439	total: 5.48s	remaining: 1.34s
241:	learn: 7.1651373	total: 5.5s	remaining: 1.32s
242:	learn: 7.1381913	total: 5.52s	remaining: 1.29s
243:	learn: 7.1196857	total: 5.55s	remaining: 1.27s
244:	learn: 7.1129330	total: 5.57s	remaining: 1.25s
245:	learn: 7.0917288	total: 5.59s	remaining: 1.23s
246:	learn: 7.0643221	total: 5.61s	remaining: 1.2s
247:	learn: 7.0355381	total: 5.63s	remaining: 1.18s
248:	learn: 7.0175711	total: 5.65s	remaining: 1.16s
249:	learn: 6.9969066	total: 5.68s	remaining: 1.14s
250:	learn: 6.9647213	total: 5.7s	remaining: 1.11s
251:	learn: 6.9543141	total: 5.72s	remaining: 1.09s
252:	learn: 6.9265098	total: 5.75s	remaining: 1.07s
253:	learn: 6.9022725	total: 5.78s	remaining: 1.05s
254:	learn: 6.8497254	total: 5.8s	remaining: 1.02s
255:	learn: 6.8285154	total: 5.83s	remaining: 1s
256:	learn: 6.8011995	total: 5.85s	remaining: 979ms
257:	learn: 6.7933719	total: 5.87s	remaining: 956ms
258:	learn: 6.7690265	total: 5.9s	remaining: 933ms
259:	learn: 6.7470688	total: 5.92s	remaining: 911ms
260:	learn: 6.7282782	total: 5.94s	remaining: 888ms
261:	learn: 6.6980892	total: 5.97s	remaining: 866ms
262:	learn: 6.6788044	total: 6s	remaining: 844ms
263:	learn: 6.6507208	total: 6.02s	remaining: 821ms
264:	learn: 6.6299738	total: 6.04s	remaining: 798ms
265:	learn: 6.6146145	total: 6.06s	remaining: 775ms
266:	learn: 6.5960711	total: 6.09s	remaining: 752ms
267:	learn: 6.5601064	total: 6.11s	remaining: 729ms
268:	learn: 6.5439209	total: 6.13s	remaining: 707ms
269:	learn: 6.5302107	total: 6.15s	remaining: 684ms
270:	learn: 6.5075739	total: 6.19s	remaining: 662ms
271:	learn: 6.4875851	total: 6.21s	remaining: 639ms
272:	learn: 6.4779171	total: 6.23s	remaining: 617ms
273:	learn: 6.4677739	total: 6.26s	remaining: 594ms
274:	learn: 6.4375131	total: 6.28s	remaining: 571ms
275:	learn: 6.4223197	total: 6.3s	remaining: 548ms
276:	learn: 6.4163633	total: 6.33s	remaining: 525ms
277:	learn: 6.4084438	total: 6.35s	remaining: 502ms
278:	learn: 6.3795757	total: 6.37s	remaining: 480ms
279:	learn: 6.3670166	total: 6.39s	remaining: 457ms
280:	learn: 6.3426010	total: 6.42s	remaining: 434ms
281:	learn: 6.3363177	total: 6.44s	remaining: 411ms
282:	learn: 6.3138385	total: 6.47s	remaining: 388ms
283:	learn: 6.2894060	total: 6.49s	remaining: 366ms
284:	learn: 6.2767007	total: 6.51s	remaining: 343ms
285:	learn: 6.2607815	total: 6.53s	remaining: 320ms
286:	learn: 6.2368751	total: 6.55s	remaining: 297ms
287:	learn: 6.2218151	total: 6.58s	remaining: 274ms
288:	learn: 6.2147193	total: 6.6s	remaining: 251ms
289:	learn: 6.1817002	total: 6.63s	remaining: 229ms
290:	learn: 6.1531900	total: 6.65s	remaining: 206ms
291:	learn: 6.1438157	total: 6.68s	remaining: 183ms
292:	learn: 6.1311550	total: 6.7s	remaining: 160ms
293:	learn: 6.1171744	total: 6.72s	remaining: 137ms
294:	learn: 6.1079932	total: 6.75s	remaining: 114ms
295:	learn: 6.0989063	total: 6.77s	remaining: 91.5ms
296:	learn: 6.0740401	total: 6.79s	remaining: 68.6ms
297:	learn: 6.0685711	total: 6.82s	remaining: 45.8ms
298:	learn: 6.0601135	total: 6.84s	remaining: 22.9ms
299:	learn: 6.0486579	total: 6.87s	remaining: 0us
0:	learn: 43.1728564	total: 23ms	remaining: 6.87s
1:	learn: 42.4479145	total: 44.7ms	remaining: 6.66s
2:	learn: 41.7618107	total: 68.4ms	remaining: 6.78s
3:	learn: 40.9535516	total: 97.4ms	remaining: 7.21s
4:	learn: 40.0184714	total: 126ms	remaining: 7.42s
5:	learn: 39.3975364	total: 149ms	remaining: 7.29s
6:	learn: 38.5285936	total: 172ms	remaining: 7.19s
7:	learn: 37.7229272	total: 194ms	remaining: 7.09s
8:	learn: 37.0918758	total: 215ms	remaining: 6.93s
9:	learn: 36.3564673	total: 237ms	remaining: 6.87s
10:	learn: 35.6811958	total: 257ms	remaining: 6.74s
11:	learn: 35.0050014	total: 279ms	remaining: 6.7s
12:	learn: 34.2960554	total: 302ms	remaining: 6.67s
13:	learn: 33.5236859	total: 329ms	remaining: 6.73s
14:	learn: 32.9402676	total: 332ms	remaining: 6.31s
15:	learn: 32.4523166	total: 353ms	remaining: 6.27s
16:	learn: 31.8840373	total: 374ms	remaining: 6.22s
17:	learn: 31.3075678	total: 395ms	remaining: 6.19s
18:	learn: 30.8876354	total: 417ms	remaining: 6.17s
19:	learn: 30.3498359	total: 439ms	remaining: 6.14s
20:	learn: 29.9235491	total: 460ms	remaining: 6.12s
21:	learn: 29.3980753	total: 483ms	remaining: 6.1s
22:	learn: 28.8855360	total: 507ms	remaining: 6.1s
23:	learn: 28.4464905	total: 539ms	remaining: 6.2s
24:	learn: 28.0340761	total: 552ms	remaining: 6.08s
25:	learn: 27.6857355	total: 575ms	remaining: 6.05s
26:	learn: 27.3334889	total: 597ms	remaining: 6.04s
27:	learn: 26.8330294	total: 620ms	remaining: 6.02s
28:	learn: 26.4299332	total: 641ms	remaining: 5.99s
29:	learn: 26.0045444	total: 663ms	remaining: 5.96s
30:	learn: 25.6006582	total: 682ms	remaining: 5.92s
31:	learn: 25.2312981	total: 703ms	remaining: 5.89s
32:	learn: 25.0083092	total: 725ms	remaining: 5.87s
33:	learn: 24.6611713	total: 752ms	remaining: 5.88s
34:	learn: 24.4598997	total: 772ms	remaining: 5.84s
35:	learn: 24.2341422	total: 792ms	remaining: 5.8s
36:	learn: 23.9210171	total: 813ms	remaining: 5.78s
37:	learn: 23.5299198	total: 833ms	remaining: 5.75s
38:	learn: 23.1652368	total: 853ms	remaining: 5.71s
39:	learn: 22.8941103	total: 874ms	remaining: 5.68s
40:	learn: 22.7084206	total: 894ms	remaining: 5.65s
41:	learn: 22.4654978	total: 916ms	remaining: 5.63s
42:	learn: 22.2302580	total: 940ms	remaining: 5.62s
43:	learn: 21.9408933	total: 974ms	remaining: 5.67s
44:	learn: 21.6779272	total: 998ms	remaining: 5.65s
45:	learn: 21.5124883	total: 1.02s	remaining: 5.63s
46:	learn: 21.3803106	total: 1.04s	remaining: 5.62s
47:	learn: 21.2298916	total: 1.07s	remaining: 5.6s
48:	learn: 21.0336901	total: 1.09s	remaining: 5.58s
49:	learn: 20.7943434	total: 1.11s	remaining: 5.55s
50:	learn: 20.5676348	total: 1.13s	remaining: 5.53s
51:	learn: 20.3427273	total: 1.14s	remaining: 5.46s
52:	learn: 20.1024296	total: 1.17s	remaining: 5.46s
53:	learn: 19.9885265	total: 1.19s	remaining: 5.44s
54:	learn: 19.8413355	total: 1.21s	remaining: 5.41s
55:	learn: 19.7099619	total: 1.24s	remaining: 5.39s
56:	learn: 19.5311747	total: 1.26s	remaining: 5.37s
57:	learn: 19.3665040	total: 1.28s	remaining: 5.34s
58:	learn: 19.2281415	total: 1.3s	remaining: 5.32s
59:	learn: 19.1106495	total: 1.32s	remaining: 5.3s
60:	learn: 18.9927263	total: 1.35s	remaining: 5.28s
61:	learn: 18.7654626	total: 1.37s	remaining: 5.26s
62:	learn: 18.6108661	total: 1.4s	remaining: 5.28s
63:	learn: 18.4817806	total: 1.43s	remaining: 5.26s
64:	learn: 18.3632402	total: 1.45s	remaining: 5.25s
65:	learn: 18.2653457	total: 1.47s	remaining: 5.23s
66:	learn: 18.1378819	total: 1.5s	remaining: 5.21s
67:	learn: 18.0459629	total: 1.52s	remaining: 5.19s
68:	learn: 17.9001044	total: 1.54s	remaining: 5.17s
69:	learn: 17.7073203	total: 1.57s	remaining: 5.15s
70:	learn: 17.5276628	total: 1.59s	remaining: 5.14s
71:	learn: 17.4386086	total: 1.62s	remaining: 5.12s
72:	learn: 17.2890096	total: 1.64s	remaining: 5.09s
73:	learn: 17.1904631	total: 1.66s	remaining: 5.07s
74:	learn: 17.0955197	total: 1.68s	remaining: 5.05s
75:	learn: 16.9924303	total: 1.7s	remaining: 5.02s
76:	learn: 16.8972682	total: 1.73s	remaining: 5s
77:	learn: 16.7957864	total: 1.75s	remaining: 4.98s
78:	learn: 16.6405248	total: 1.77s	remaining: 4.96s
79:	learn: 16.5463991	total: 1.79s	remaining: 4.94s
80:	learn: 16.4622871	total: 1.83s	remaining: 4.94s
81:	learn: 16.3624916	total: 1.85s	remaining: 4.93s
82:	learn: 16.2073706	total: 1.88s	remaining: 4.91s
83:	learn: 16.0716875	total: 1.9s	remaining: 4.89s
84:	learn: 15.9336151	total: 1.92s	remaining: 4.87s
85:	learn: 15.8451501	total: 1.94s	remaining: 4.84s
86:	learn: 15.7200917	total: 1.97s	remaining: 4.81s
87:	learn: 15.6236971	total: 1.99s	remaining: 4.79s
88:	learn: 15.5479129	total: 2.01s	remaining: 4.77s
89:	learn: 15.4975079	total: 2.04s	remaining: 4.75s
90:	learn: 15.4083433	total: 2.06s	remaining: 4.74s
91:	learn: 15.3169327	total: 2.09s	remaining: 4.72s
92:	learn: 15.2207992	total: 2.11s	remaining: 4.69s
93:	learn: 15.1430327	total: 2.13s	remaining: 4.67s
94:	learn: 15.0665711	total: 2.15s	remaining: 4.65s
95:	learn: 14.9903534	total: 2.18s	remaining: 4.63s
96:	learn: 14.9054346	total: 2.2s	remaining: 4.6s
97:	learn: 14.7940457	total: 2.22s	remaining: 4.58s
98:	learn: 14.7008915	total: 2.24s	remaining: 4.55s
99:	learn: 14.6142673	total: 2.27s	remaining: 4.54s
100:	learn: 14.5337996	total: 2.3s	remaining: 4.53s
101:	learn: 14.4571728	total: 2.32s	remaining: 4.51s
102:	learn: 14.3898956	total: 2.35s	remaining: 4.49s
103:	learn: 14.3189412	total: 2.37s	remaining: 4.47s
104:	learn: 14.2525935	total: 2.39s	remaining: 4.45s
105:	learn: 14.1772436	total: 2.41s	remaining: 4.42s
106:	learn: 14.1059305	total: 2.44s	remaining: 4.39s
107:	learn: 14.0232782	total: 2.46s	remaining: 4.38s
108:	learn: 13.9368806	total: 2.49s	remaining: 4.36s
109:	learn: 13.8491229	total: 2.51s	remaining: 4.34s
110:	learn: 13.7685490	total: 2.53s	remaining: 4.32s
111:	learn: 13.6836750	total: 2.56s	remaining: 4.29s
112:	learn: 13.6202897	total: 2.58s	remaining: 4.26s
113:	learn: 13.5688904	total: 2.6s	remaining: 4.24s
114:	learn: 13.5145238	total: 2.62s	remaining: 4.22s
115:	learn: 13.4247466	total: 2.64s	remaining: 4.19s
116:	learn: 13.3307114	total: 2.67s	remaining: 4.17s
117:	learn: 13.2545184	total: 2.69s	remaining: 4.15s
118:	learn: 13.1996548	total: 2.72s	remaining: 4.14s
119:	learn: 13.1205307	total: 2.74s	remaining: 4.12s
120:	learn: 13.0479027	total: 2.77s	remaining: 4.1s
121:	learn: 12.9970441	total: 2.79s	remaining: 4.07s
122:	learn: 12.9295209	total: 2.82s	remaining: 4.05s
123:	learn: 12.8673524	total: 2.84s	remaining: 4.03s
124:	learn: 12.7786245	total: 2.86s	remaining: 4s
125:	learn: 12.7348929	total: 2.88s	remaining: 3.98s
126:	learn: 12.6858554	total: 2.9s	remaining: 3.96s
127:	learn: 12.6189787	total: 2.93s	remaining: 3.94s
128:	learn: 12.5864827	total: 2.95s	remaining: 3.92s
129:	learn: 12.5478404	total: 2.97s	remaining: 3.89s
130:	learn: 12.5017820	total: 2.99s	remaining: 3.86s
131:	learn: 12.4491462	total: 3.02s	remaining: 3.84s
132:	learn: 12.3822056	total: 3.04s	remaining: 3.81s
133:	learn: 12.3098651	total: 3.06s	remaining: 3.79s
134:	learn: 12.2531700	total: 3.08s	remaining: 3.77s
135:	learn: 12.2119331	total: 3.1s	remaining: 3.74s
136:	learn: 12.1571278	total: 3.13s	remaining: 3.72s
137:	learn: 12.0976094	total: 3.16s	remaining: 3.71s
138:	learn: 12.0025352	total: 3.18s	remaining: 3.69s
139:	learn: 11.9019074	total: 3.21s	remaining: 3.66s
140:	learn: 11.7854852	total: 3.23s	remaining: 3.64s
141:	learn: 11.7104078	total: 3.25s	remaining: 3.62s
142:	learn: 11.6741366	total: 3.27s	remaining: 3.59s
143:	learn: 11.6077195	total: 3.29s	remaining: 3.57s
144:	learn: 11.5496695	total: 3.31s	remaining: 3.54s
145:	learn: 11.4568800	total: 3.34s	remaining: 3.52s
146:	learn: 11.4368150	total: 3.36s	remaining: 3.5s
147:	learn: 11.3955813	total: 3.38s	remaining: 3.48s
148:	learn: 11.3565385	total: 3.41s	remaining: 3.45s
149:	learn: 11.3020845	total: 3.43s	remaining: 3.43s
150:	learn: 11.2130390	total: 3.45s	remaining: 3.4s
151:	learn: 11.1401745	total: 3.47s	remaining: 3.38s
152:	learn: 11.1048934	total: 3.49s	remaining: 3.35s
153:	learn: 11.0709933	total: 3.51s	remaining: 3.33s
154:	learn: 11.0212519	total: 3.54s	remaining: 3.31s
155:	learn: 10.9258762	total: 3.56s	remaining: 3.29s
156:	learn: 10.8429657	total: 3.58s	remaining: 3.27s
157:	learn: 10.8061370	total: 3.61s	remaining: 3.24s
158:	learn: 10.7571211	total: 3.63s	remaining: 3.22s
159:	learn: 10.6698987	total: 3.65s	remaining: 3.2s
160:	learn: 10.6228772	total: 3.67s	remaining: 3.17s
161:	learn: 10.5368796	total: 3.69s	remaining: 3.15s
162:	learn: 10.4841450	total: 3.71s	remaining: 3.12s
163:	learn: 10.4012317	total: 3.73s	remaining: 3.1s
164:	learn: 10.3588701	total: 3.76s	remaining: 3.08s
165:	learn: 10.2816720	total: 3.79s	remaining: 3.06s
166:	learn: 10.2259651	total: 3.81s	remaining: 3.03s
167:	learn: 10.1792554	total: 3.83s	remaining: 3.01s
168:	learn: 10.1604671	total: 3.85s	remaining: 2.98s
169:	learn: 10.1318986	total: 3.87s	remaining: 2.96s
170:	learn: 10.0948065	total: 3.89s	remaining: 2.93s
171:	learn: 10.0521191	total: 3.91s	remaining: 2.91s
172:	learn: 9.9946157	total: 3.93s	remaining: 2.88s
173:	learn: 9.9313678	total: 3.95s	remaining: 2.86s
174:	learn: 9.9156434	total: 3.98s	remaining: 2.84s
175:	learn: 9.8749788	total: 4.01s	remaining: 2.82s
176:	learn: 9.8485079	total: 4.03s	remaining: 2.8s
177:	learn: 9.8134329	total: 4.05s	remaining: 2.78s
178:	learn: 9.7880107	total: 4.08s	remaining: 2.76s
179:	learn: 9.7587885	total: 4.1s	remaining: 2.73s
180:	learn: 9.6939238	total: 4.12s	remaining: 2.71s
181:	learn: 9.6447939	total: 4.14s	remaining: 2.69s
182:	learn: 9.6136022	total: 4.17s	remaining: 2.66s
183:	learn: 9.5885675	total: 4.19s	remaining: 2.64s
184:	learn: 9.5271670	total: 4.22s	remaining: 2.62s
185:	learn: 9.4616988	total: 4.24s	remaining: 2.6s
186:	learn: 9.4287637	total: 4.26s	remaining: 2.58s
187:	learn: 9.3948177	total: 4.29s	remaining: 2.55s
188:	learn: 9.3767726	total: 4.31s	remaining: 2.53s
189:	learn: 9.3473555	total: 4.33s	remaining: 2.51s
190:	learn: 9.3099572	total: 4.35s	remaining: 2.48s
191:	learn: 9.2799642	total: 4.38s	remaining: 2.46s
192:	learn: 9.2505323	total: 4.4s	remaining: 2.44s
193:	learn: 9.2173510	total: 4.43s	remaining: 2.42s
194:	learn: 9.1746531	total: 4.46s	remaining: 2.4s
195:	learn: 9.1354668	total: 4.48s	remaining: 2.38s
196:	learn: 9.0983547	total: 4.51s	remaining: 2.36s
197:	learn: 9.0615111	total: 4.53s	remaining: 2.33s
198:	learn: 9.0239666	total: 4.55s	remaining: 2.31s
199:	learn: 8.9906083	total: 4.58s	remaining: 2.29s
200:	learn: 8.9458694	total: 4.6s	remaining: 2.26s
201:	learn: 8.9040783	total: 4.62s	remaining: 2.24s
202:	learn: 8.8495189	total: 4.65s	remaining: 2.22s
203:	learn: 8.8243403	total: 4.67s	remaining: 2.2s
204:	learn: 8.7930532	total: 4.69s	remaining: 2.17s
205:	learn: 8.7587095	total: 4.71s	remaining: 2.15s
206:	learn: 8.7177051	total: 4.74s	remaining: 2.13s
207:	learn: 8.6879684	total: 4.76s	remaining: 2.1s
208:	learn: 8.6681622	total: 4.78s	remaining: 2.08s
209:	learn: 8.6299257	total: 4.8s	remaining: 2.06s
210:	learn: 8.5728096	total: 4.83s	remaining: 2.04s
211:	learn: 8.5456345	total: 4.86s	remaining: 2.02s
212:	learn: 8.5000514	total: 4.88s	remaining: 2s
213:	learn: 8.4814393	total: 4.91s	remaining: 1.97s
214:	learn: 8.4512752	total: 4.93s	remaining: 1.95s
215:	learn: 8.4144221	total: 4.96s	remaining: 1.93s
216:	learn: 8.3817886	total: 4.97s	remaining: 1.9s
217:	learn: 8.3392143	total: 5s	remaining: 1.88s
218:	learn: 8.3102751	total: 5.02s	remaining: 1.86s
219:	learn: 8.2963441	total: 5.04s	remaining: 1.83s
220:	learn: 8.2666907	total: 5.07s	remaining: 1.81s
221:	learn: 8.2470955	total: 5.1s	remaining: 1.79s
222:	learn: 8.2352635	total: 5.12s	remaining: 1.77s
223:	learn: 8.2046605	total: 5.14s	remaining: 1.75s
224:	learn: 8.1746742	total: 5.17s	remaining: 1.72s
225:	learn: 8.1466704	total: 5.19s	remaining: 1.7s
226:	learn: 8.1113762	total: 5.21s	remaining: 1.67s
227:	learn: 8.0842520	total: 5.23s	remaining: 1.65s
228:	learn: 8.0619499	total: 5.26s	remaining: 1.63s
229:	learn: 8.0391421	total: 5.29s	remaining: 1.61s
230:	learn: 8.0082460	total: 5.31s	remaining: 1.59s
231:	learn: 7.9894454	total: 5.34s	remaining: 1.56s
232:	learn: 7.9567828	total: 5.36s	remaining: 1.54s
233:	learn: 7.9394710	total: 5.38s	remaining: 1.52s
234:	learn: 7.9171371	total: 5.41s	remaining: 1.5s
235:	learn: 7.9062197	total: 5.43s	remaining: 1.47s
236:	learn: 7.8803505	total: 5.46s	remaining: 1.45s
237:	learn: 7.8508624	total: 5.49s	remaining: 1.43s
238:	learn: 7.8107215	total: 5.51s	remaining: 1.41s
239:	learn: 7.7758588	total: 5.54s	remaining: 1.38s
240:	learn: 7.7403137	total: 5.56s	remaining: 1.36s
241:	learn: 7.7146933	total: 5.58s	remaining: 1.34s
242:	learn: 7.6876053	total: 5.6s	remaining: 1.31s
243:	learn: 7.6631332	total: 5.62s	remaining: 1.29s
244:	learn: 7.6340717	total: 5.65s	remaining: 1.27s
245:	learn: 7.5835394	total: 5.67s	remaining: 1.24s
246:	learn: 7.5572808	total: 5.7s	remaining: 1.22s
247:	learn: 7.5477260	total: 5.72s	remaining: 1.2s
248:	learn: 7.5230961	total: 5.75s	remaining: 1.18s
249:	learn: 7.4926278	total: 5.77s	remaining: 1.15s
250:	learn: 7.4663059	total: 5.79s	remaining: 1.13s
251:	learn: 7.4439231	total: 5.82s	remaining: 1.11s
252:	learn: 7.4147104	total: 5.84s	remaining: 1.08s
253:	learn: 7.3910399	total: 5.86s	remaining: 1.06s
254:	learn: 7.3694309	total: 5.88s	remaining: 1.04s
255:	learn: 7.3357705	total: 5.91s	remaining: 1.01s
256:	learn: 7.3063747	total: 5.93s	remaining: 993ms
257:	learn: 7.2838572	total: 5.96s	remaining: 970ms
258:	learn: 7.2589764	total: 5.98s	remaining: 947ms
259:	learn: 7.2389253	total: 6s	remaining: 923ms
260:	learn: 7.2138913	total: 6.02s	remaining: 900ms
261:	learn: 7.1886917	total: 6.05s	remaining: 877ms
262:	learn: 7.1772908	total: 6.07s	remaining: 854ms
263:	learn: 7.1578726	total: 6.09s	remaining: 831ms
264:	learn: 7.1353133	total: 6.12s	remaining: 808ms
265:	learn: 7.1102477	total: 6.15s	remaining: 786ms
266:	learn: 7.0828702	total: 6.17s	remaining: 763ms
267:	learn: 7.0597237	total: 6.2s	remaining: 740ms
268:	learn: 7.0365630	total: 6.22s	remaining: 717ms
269:	learn: 7.0146208	total: 6.24s	remaining: 694ms
270:	learn: 6.9967242	total: 6.27s	remaining: 671ms
271:	learn: 6.9790909	total: 6.29s	remaining: 647ms
272:	learn: 6.9693113	total: 6.31s	remaining: 624ms
273:	learn: 6.9594319	total: 6.33s	remaining: 601ms
274:	learn: 6.9391890	total: 6.36s	remaining: 578ms
275:	learn: 6.9254505	total: 6.38s	remaining: 555ms
276:	learn: 6.9024357	total: 6.4s	remaining: 531ms
277:	learn: 6.8754442	total: 6.42s	remaining: 508ms
278:	learn: 6.8502029	total: 6.44s	remaining: 485ms
279:	learn: 6.8142453	total: 6.46s	remaining: 462ms
280:	learn: 6.7927649	total: 6.49s	remaining: 439ms
281:	learn: 6.7640814	total: 6.51s	remaining: 415ms
282:	learn: 6.7463937	total: 6.53s	remaining: 392ms
283:	learn: 6.7403516	total: 6.55s	remaining: 369ms
284:	learn: 6.7206013	total: 6.58s	remaining: 346ms
285:	learn: 6.6875183	total: 6.6s	remaining: 323ms
286:	learn: 6.6609083	total: 6.63s	remaining: 300ms
287:	learn: 6.6545230	total: 6.65s	remaining: 277ms
288:	learn: 6.6358351	total: 6.67s	remaining: 254ms
289:	learn: 6.6175009	total: 6.69s	remaining: 231ms
290:	learn: 6.6067729	total: 6.71s	remaining: 208ms
291:	learn: 6.5970320	total: 6.74s	remaining: 185ms
292:	learn: 6.5837751	total: 6.76s	remaining: 161ms
293:	learn: 6.5625028	total: 6.79s	remaining: 139ms
294:	learn: 6.5530621	total: 6.81s	remaining: 115ms
295:	learn: 6.5478680	total: 6.83s	remaining: 92.3ms
296:	learn: 6.5241879	total: 6.85s	remaining: 69.2ms
297:	learn: 6.5118159	total: 6.87s	remaining: 46.1ms
298:	learn: 6.4919631	total: 6.89s	remaining: 23.1ms
299:	learn: 6.4739124	total: 6.91s	remaining: 0us
0:	learn: 46.4788614	total: 3.25ms	remaining: 971ms
1:	learn: 45.7710608	total: 26.6ms	remaining: 3.97s
2:	learn: 45.1565849	total: 50.1ms	remaining: 4.96s
3:	learn: 44.4030902	total: 73.2ms	remaining: 5.42s
4:	learn: 43.7256714	total: 93.6ms	remaining: 5.53s
5:	learn: 43.0846764	total: 113ms	remaining: 5.55s
6:	learn: 42.3050249	total: 133ms	remaining: 5.55s
7:	learn: 41.5523343	total: 154ms	remaining: 5.62s
8:	learn: 40.7548041	total: 173ms	remaining: 5.61s
9:	learn: 39.8798087	total: 193ms	remaining: 5.61s
10:	learn: 39.3807548	total: 214ms	remaining: 5.63s
11:	learn: 38.6353297	total: 237ms	remaining: 5.69s
12:	learn: 38.0252968	total: 260ms	remaining: 5.74s
13:	learn: 37.4584814	total: 290ms	remaining: 5.92s
14:	learn: 36.9766267	total: 311ms	remaining: 5.91s
15:	learn: 36.4351844	total: 332ms	remaining: 5.9s
16:	learn: 35.8711532	total: 354ms	remaining: 5.89s
17:	learn: 35.5046170	total: 374ms	remaining: 5.86s
18:	learn: 34.9410561	total: 395ms	remaining: 5.84s
19:	learn: 34.5414688	total: 415ms	remaining: 5.81s
20:	learn: 34.1994877	total: 437ms	remaining: 5.8s
21:	learn: 33.8105873	total: 459ms	remaining: 5.8s
22:	learn: 33.2767379	total: 488ms	remaining: 5.87s
23:	learn: 32.9293305	total: 512ms	remaining: 5.89s
24:	learn: 32.5563171	total: 535ms	remaining: 5.88s
25:	learn: 32.0312705	total: 557ms	remaining: 5.87s
26:	learn: 31.5549663	total: 580ms	remaining: 5.86s
27:	learn: 31.2152408	total: 602ms	remaining: 5.85s
28:	learn: 30.8335992	total: 623ms	remaining: 5.82s
29:	learn: 30.4437650	total: 644ms	remaining: 5.8s
30:	learn: 30.1139865	total: 665ms	remaining: 5.77s
31:	learn: 29.6348886	total: 686ms	remaining: 5.75s
32:	learn: 29.4374411	total: 708ms	remaining: 5.73s
33:	learn: 29.1774552	total: 736ms	remaining: 5.76s
34:	learn: 28.9121068	total: 761ms	remaining: 5.76s
35:	learn: 28.6291033	total: 783ms	remaining: 5.74s
36:	learn: 28.3365166	total: 804ms	remaining: 5.71s
37:	learn: 28.0654213	total: 826ms	remaining: 5.69s
38:	learn: 27.7120990	total: 848ms	remaining: 5.68s
39:	learn: 27.4700227	total: 869ms	remaining: 5.65s
40:	learn: 27.2052722	total: 892ms	remaining: 5.64s
41:	learn: 26.9401129	total: 915ms	remaining: 5.62s
42:	learn: 26.6081493	total: 939ms	remaining: 5.61s
43:	learn: 26.3847138	total: 969ms	remaining: 5.64s
44:	learn: 26.2201660	total: 993ms	remaining: 5.63s
45:	learn: 26.0513425	total: 1.02s	remaining: 5.62s
46:	learn: 25.8609437	total: 1.04s	remaining: 5.6s
47:	learn: 25.6040252	total: 1.06s	remaining: 5.59s
48:	learn: 25.4235507	total: 1.09s	remaining: 5.58s
49:	learn: 25.2896788	total: 1.11s	remaining: 5.55s
50:	learn: 25.1208197	total: 1.13s	remaining: 5.53s
51:	learn: 24.8660258	total: 1.14s	remaining: 5.43s
52:	learn: 24.6165133	total: 1.16s	remaining: 5.41s
53:	learn: 24.3828983	total: 1.19s	remaining: 5.41s
54:	learn: 24.1841624	total: 1.21s	remaining: 5.38s
55:	learn: 24.0006316	total: 1.23s	remaining: 5.36s
56:	learn: 23.7695363	total: 1.25s	remaining: 5.34s
57:	learn: 23.6284017	total: 1.27s	remaining: 5.32s
58:	learn: 23.4125305	total: 1.3s	remaining: 5.3s
59:	learn: 23.2250456	total: 1.32s	remaining: 5.28s
60:	learn: 23.0467385	total: 1.34s	remaining: 5.25s
61:	learn: 22.7033792	total: 1.36s	remaining: 5.23s
62:	learn: 22.5334580	total: 1.39s	remaining: 5.25s
63:	learn: 22.3638971	total: 1.42s	remaining: 5.24s
64:	learn: 22.1384904	total: 1.44s	remaining: 5.22s
65:	learn: 22.0135698	total: 1.47s	remaining: 5.2s
66:	learn: 21.8734424	total: 1.49s	remaining: 5.18s
67:	learn: 21.7496417	total: 1.51s	remaining: 5.16s
68:	learn: 21.5374284	total: 1.54s	remaining: 5.14s
69:	learn: 21.3371276	total: 1.56s	remaining: 5.12s
70:	learn: 21.0990139	total: 1.58s	remaining: 5.11s
71:	learn: 20.9642590	total: 1.61s	remaining: 5.11s
72:	learn: 20.8049721	total: 1.64s	remaining: 5.09s
73:	learn: 20.7124973	total: 1.66s	remaining: 5.07s
74:	learn: 20.6049930	total: 1.68s	remaining: 5.04s
75:	learn: 20.4963737	total: 1.7s	remaining: 5.01s
76:	learn: 20.3645418	total: 1.72s	remaining: 4.99s
77:	learn: 20.2519924	total: 1.74s	remaining: 4.96s
78:	learn: 20.0505831	total: 1.76s	remaining: 4.93s
79:	learn: 19.9272769	total: 1.79s	remaining: 4.91s
80:	learn: 19.8219589	total: 1.81s	remaining: 4.89s
81:	learn: 19.7098289	total: 1.84s	remaining: 4.89s
82:	learn: 19.4383686	total: 1.86s	remaining: 4.88s
83:	learn: 19.3315372	total: 1.89s	remaining: 4.86s
84:	learn: 19.2144697	total: 1.91s	remaining: 4.83s
85:	learn: 19.0849701	total: 1.93s	remaining: 4.81s
86:	learn: 18.9769215	total: 1.96s	remaining: 4.79s
87:	learn: 18.8581283	total: 1.98s	remaining: 4.76s
88:	learn: 18.7414069	total: 2s	remaining: 4.74s
89:	learn: 18.6649642	total: 2.03s	remaining: 4.74s
90:	learn: 18.5127864	total: 2.05s	remaining: 4.72s
91:	learn: 18.3629102	total: 2.08s	remaining: 4.7s
92:	learn: 18.2624941	total: 2.1s	remaining: 4.68s
93:	learn: 18.1645836	total: 2.12s	remaining: 4.65s
94:	learn: 18.0717273	total: 2.14s	remaining: 4.62s
95:	learn: 17.9594520	total: 2.16s	remaining: 4.6s
96:	learn: 17.8692648	total: 2.19s	remaining: 4.58s
97:	learn: 17.7758009	total: 2.21s	remaining: 4.56s
98:	learn: 17.6633350	total: 2.23s	remaining: 4.53s
99:	learn: 17.5393236	total: 2.27s	remaining: 4.54s
100:	learn: 17.4441841	total: 2.29s	remaining: 4.52s
101:	learn: 17.3636497	total: 2.32s	remaining: 4.5s
102:	learn: 17.2836586	total: 2.34s	remaining: 4.48s
103:	learn: 17.1666480	total: 2.37s	remaining: 4.46s
104:	learn: 17.0603123	total: 2.39s	remaining: 4.43s
105:	learn: 16.9701019	total: 2.41s	remaining: 4.41s
106:	learn: 16.8819325	total: 2.43s	remaining: 4.39s
107:	learn: 16.7800721	total: 2.46s	remaining: 4.37s
108:	learn: 16.6575687	total: 2.48s	remaining: 4.34s
109:	learn: 16.5621285	total: 2.5s	remaining: 4.31s
110:	learn: 16.4805668	total: 2.52s	remaining: 4.29s
111:	learn: 16.3664491	total: 2.54s	remaining: 4.26s
112:	learn: 16.2921576	total: 2.56s	remaining: 4.23s
113:	learn: 16.2123714	total: 2.58s	remaining: 4.21s
114:	learn: 16.1305926	total: 2.6s	remaining: 4.18s
115:	learn: 16.0452681	total: 2.62s	remaining: 4.16s
116:	learn: 15.9356767	total: 2.64s	remaining: 4.13s
117:	learn: 15.8492426	total: 2.66s	remaining: 4.11s
118:	learn: 15.7699169	total: 2.7s	remaining: 4.1s
119:	learn: 15.6746719	total: 2.72s	remaining: 4.08s
120:	learn: 15.5370189	total: 2.74s	remaining: 4.05s
121:	learn: 15.4445148	total: 2.76s	remaining: 4.03s
122:	learn: 15.3396325	total: 2.79s	remaining: 4.01s
123:	learn: 15.2450802	total: 2.81s	remaining: 3.98s
124:	learn: 15.1203998	total: 2.83s	remaining: 3.96s
125:	learn: 15.0601453	total: 2.85s	remaining: 3.94s
126:	learn: 14.9882312	total: 2.87s	remaining: 3.91s
127:	learn: 14.9180283	total: 2.9s	remaining: 3.9s
128:	learn: 14.8526915	total: 2.92s	remaining: 3.88s
129:	learn: 14.7657162	total: 2.94s	remaining: 3.85s
130:	learn: 14.6698595	total: 2.96s	remaining: 3.83s
131:	learn: 14.6346566	total: 2.97s	remaining: 3.78s
132:	learn: 14.5756096	total: 2.99s	remaining: 3.75s
133:	learn: 14.5030739	total: 3.01s	remaining: 3.73s
134:	learn: 14.3943441	total: 3.03s	remaining: 3.71s
135:	learn: 14.2404537	total: 3.06s	remaining: 3.69s
136:	learn: 14.1761228	total: 3.08s	remaining: 3.66s
137:	learn: 14.1077833	total: 3.1s	remaining: 3.64s
138:	learn: 14.0413537	total: 3.13s	remaining: 3.63s
139:	learn: 13.9757428	total: 3.16s	remaining: 3.61s
140:	learn: 13.8921768	total: 3.18s	remaining: 3.58s
141:	learn: 13.8110381	total: 3.2s	remaining: 3.56s
142:	learn: 13.7257676	total: 3.22s	remaining: 3.54s
143:	learn: 13.6518439	total: 3.24s	remaining: 3.51s
144:	learn: 13.4950736	total: 3.27s	remaining: 3.49s
145:	learn: 13.3977428	total: 3.29s	remaining: 3.47s
146:	learn: 13.3368539	total: 3.31s	remaining: 3.44s
147:	learn: 13.2559100	total: 3.34s	remaining: 3.43s
148:	learn: 13.1574001	total: 3.36s	remaining: 3.41s
149:	learn: 13.0006095	total: 3.38s	remaining: 3.38s
150:	learn: 12.9451554	total: 3.4s	remaining: 3.36s
151:	learn: 12.8348904	total: 3.43s	remaining: 3.34s
152:	learn: 12.7505428	total: 3.45s	remaining: 3.31s
153:	learn: 12.6269434	total: 3.47s	remaining: 3.29s
154:	learn: 12.5693272	total: 3.49s	remaining: 3.27s
155:	learn: 12.5049023	total: 3.51s	remaining: 3.24s
156:	learn: 12.4144067	total: 3.53s	remaining: 3.22s
157:	learn: 12.3672108	total: 3.57s	remaining: 3.21s
158:	learn: 12.2988713	total: 3.59s	remaining: 3.19s
159:	learn: 12.2500411	total: 3.61s	remaining: 3.16s
160:	learn: 12.2002550	total: 3.63s	remaining: 3.14s
161:	learn: 12.0921756	total: 3.66s	remaining: 3.12s
162:	learn: 12.0261456	total: 3.68s	remaining: 3.09s
163:	learn: 11.9595478	total: 3.7s	remaining: 3.07s
164:	learn: 11.9040826	total: 3.72s	remaining: 3.04s
165:	learn: 11.8185631	total: 3.75s	remaining: 3.02s
166:	learn: 11.7394422	total: 3.77s	remaining: 3s
167:	learn: 11.6639319	total: 3.79s	remaining: 2.98s
168:	learn: 11.6147181	total: 3.81s	remaining: 2.95s
169:	learn: 11.5761586	total: 3.83s	remaining: 2.93s
170:	learn: 11.4910059	total: 3.85s	remaining: 2.91s
171:	learn: 11.4181227	total: 3.87s	remaining: 2.88s
172:	learn: 11.3626035	total: 3.9s	remaining: 2.86s
173:	learn: 11.2507892	total: 3.92s	remaining: 2.84s
174:	learn: 11.1798403	total: 3.94s	remaining: 2.81s
175:	learn: 11.1190643	total: 3.96s	remaining: 2.79s
176:	learn: 11.0620102	total: 3.99s	remaining: 2.77s
177:	learn: 10.9793884	total: 4.02s	remaining: 2.75s
178:	learn: 10.8968370	total: 4.04s	remaining: 2.73s
179:	learn: 10.8122733	total: 4.07s	remaining: 2.71s
180:	learn: 10.7545856	total: 4.09s	remaining: 2.69s
181:	learn: 10.6836395	total: 4.11s	remaining: 2.67s
182:	learn: 10.6441863	total: 4.13s	remaining: 2.64s
183:	learn: 10.5944997	total: 4.16s	remaining: 2.62s
184:	learn: 10.5161755	total: 4.18s	remaining: 2.6s
185:	learn: 10.4705995	total: 4.21s	remaining: 2.58s
186:	learn: 10.4187076	total: 4.23s	remaining: 2.56s
187:	learn: 10.3683730	total: 4.25s	remaining: 2.53s
188:	learn: 10.3150620	total: 4.27s	remaining: 2.51s
189:	learn: 10.2691155	total: 4.29s	remaining: 2.49s
190:	learn: 10.2272718	total: 4.32s	remaining: 2.46s
191:	learn: 10.1871331	total: 4.34s	remaining: 2.44s
192:	learn: 10.1443128	total: 4.37s	remaining: 2.42s
193:	learn: 10.0668189	total: 4.39s	remaining: 2.4s
194:	learn: 10.0256380	total: 4.42s	remaining: 2.38s
195:	learn: 9.9787956	total: 4.44s	remaining: 2.36s
196:	learn: 9.9322122	total: 4.46s	remaining: 2.33s
197:	learn: 9.8850093	total: 4.49s	remaining: 2.31s
198:	learn: 9.8380140	total: 4.51s	remaining: 2.29s
199:	learn: 9.8106296	total: 4.53s	remaining: 2.27s
200:	learn: 9.7585749	total: 4.56s	remaining: 2.24s
201:	learn: 9.7182879	total: 4.58s	remaining: 2.22s
202:	learn: 9.6821771	total: 4.61s	remaining: 2.2s
203:	learn: 9.6399101	total: 4.64s	remaining: 2.18s
204:	learn: 9.6048849	total: 4.66s	remaining: 2.16s
205:	learn: 9.5638590	total: 4.68s	remaining: 2.14s
206:	learn: 9.5142374	total: 4.71s	remaining: 2.11s
207:	learn: 9.4695144	total: 4.73s	remaining: 2.09s
208:	learn: 9.4331939	total: 4.75s	remaining: 2.07s
209:	learn: 9.3833838	total: 4.77s	remaining: 2.04s
210:	learn: 9.3517645	total: 4.8s	remaining: 2.02s
211:	learn: 9.3163444	total: 4.82s	remaining: 2s
212:	learn: 9.2788352	total: 4.85s	remaining: 1.98s
213:	learn: 9.2459289	total: 4.88s	remaining: 1.96s
214:	learn: 9.2104536	total: 4.9s	remaining: 1.94s
215:	learn: 9.1729420	total: 4.92s	remaining: 1.91s
216:	learn: 9.1364121	total: 4.95s	remaining: 1.89s
217:	learn: 9.0970859	total: 4.97s	remaining: 1.87s
218:	learn: 9.0611146	total: 4.99s	remaining: 1.85s
219:	learn: 9.0276741	total: 5.02s	remaining: 1.82s
220:	learn: 8.9977644	total: 5.04s	remaining: 1.8s
221:	learn: 8.9633156	total: 5.07s	remaining: 1.78s
222:	learn: 8.9313136	total: 5.09s	remaining: 1.76s
223:	learn: 8.9023504	total: 5.11s	remaining: 1.73s
224:	learn: 8.8741668	total: 5.13s	remaining: 1.71s
225:	learn: 8.8402639	total: 5.16s	remaining: 1.69s
226:	learn: 8.8061090	total: 5.18s	remaining: 1.67s
227:	learn: 8.7767795	total: 5.2s	remaining: 1.64s
228:	learn: 8.7514356	total: 5.22s	remaining: 1.62s
229:	learn: 8.7118727	total: 5.25s	remaining: 1.6s
230:	learn: 8.6759132	total: 5.28s	remaining: 1.58s
231:	learn: 8.6447220	total: 5.3s	remaining: 1.55s
232:	learn: 8.6102503	total: 5.33s	remaining: 1.53s
233:	learn: 8.5858738	total: 5.35s	remaining: 1.51s
234:	learn: 8.5595561	total: 5.37s	remaining: 1.49s
235:	learn: 8.5313778	total: 5.39s	remaining: 1.46s
236:	learn: 8.5053234	total: 5.42s	remaining: 1.44s
237:	learn: 8.4737268	total: 5.44s	remaining: 1.42s
238:	learn: 8.4414991	total: 5.47s	remaining: 1.4s
239:	learn: 8.4168374	total: 5.5s	remaining: 1.37s
240:	learn: 8.3862136	total: 5.52s	remaining: 1.35s
241:	learn: 8.3454081	total: 5.54s	remaining: 1.33s
242:	learn: 8.3145638	total: 5.56s	remaining: 1.3s
243:	learn: 8.3007136	total: 5.58s	remaining: 1.28s
244:	learn: 8.2708676	total: 5.6s	remaining: 1.26s
245:	learn: 8.2454265	total: 5.62s	remaining: 1.23s
246:	learn: 8.2117256	total: 5.64s	remaining: 1.21s
247:	learn: 8.1846870	total: 5.67s	remaining: 1.19s
248:	learn: 8.1602441	total: 5.7s	remaining: 1.17s
249:	learn: 8.1410728	total: 5.72s	remaining: 1.14s
250:	learn: 8.1138413	total: 5.74s	remaining: 1.12s
251:	learn: 8.0824887	total: 5.76s	remaining: 1.1s
252:	learn: 8.0557089	total: 5.79s	remaining: 1.07s
253:	learn: 8.0378239	total: 5.81s	remaining: 1.05s
254:	learn: 8.0018329	total: 5.83s	remaining: 1.03s
255:	learn: 7.9776523	total: 5.85s	remaining: 1s
256:	learn: 7.9437470	total: 5.87s	remaining: 983ms
257:	learn: 7.9170545	total: 5.9s	remaining: 960ms
258:	learn: 7.9065923	total: 5.92s	remaining: 938ms
259:	learn: 7.8777123	total: 5.94s	remaining: 915ms
260:	learn: 7.8495349	total: 5.96s	remaining: 891ms
261:	learn: 7.8238648	total: 5.99s	remaining: 868ms
262:	learn: 7.8001134	total: 6.01s	remaining: 845ms
263:	learn: 7.7619007	total: 6.03s	remaining: 822ms
264:	learn: 7.7370130	total: 6.05s	remaining: 799ms
265:	learn: 7.7109084	total: 6.07s	remaining: 776ms
266:	learn: 7.6914677	total: 6.1s	remaining: 754ms
267:	learn: 7.6883177	total: 6.13s	remaining: 732ms
268:	learn: 7.6603652	total: 6.15s	remaining: 709ms
269:	learn: 7.6441569	total: 6.17s	remaining: 686ms
270:	learn: 7.6236642	total: 6.2s	remaining: 663ms
271:	learn: 7.5954955	total: 6.22s	remaining: 640ms
272:	learn: 7.5722024	total: 6.24s	remaining: 617ms
273:	learn: 7.5424505	total: 6.26s	remaining: 594ms
274:	learn: 7.5242764	total: 6.28s	remaining: 571ms
275:	learn: 7.4998291	total: 6.31s	remaining: 549ms
276:	learn: 7.4835526	total: 6.33s	remaining: 526ms
277:	learn: 7.4492474	total: 6.35s	remaining: 503ms
278:	learn: 7.4246335	total: 6.37s	remaining: 480ms
279:	learn: 7.4104530	total: 6.39s	remaining: 457ms
280:	learn: 7.4016977	total: 6.41s	remaining: 434ms
281:	learn: 7.3964367	total: 6.44s	remaining: 411ms
282:	learn: 7.3818806	total: 6.46s	remaining: 388ms
283:	learn: 7.3577327	total: 6.48s	remaining: 365ms
284:	learn: 7.3346564	total: 6.5s	remaining: 342ms
285:	learn: 7.3215898	total: 6.53s	remaining: 320ms
286:	learn: 7.3070161	total: 6.55s	remaining: 297ms
287:	learn: 7.2839231	total: 6.58s	remaining: 274ms
288:	learn: 7.2664252	total: 6.6s	remaining: 251ms
289:	learn: 7.2505303	total: 6.62s	remaining: 228ms
290:	learn: 7.2286141	total: 6.64s	remaining: 206ms
291:	learn: 7.2008212	total: 6.67s	remaining: 183ms
292:	learn: 7.1800203	total: 6.68s	remaining: 160ms
293:	learn: 7.1485097	total: 6.71s	remaining: 137ms
294:	learn: 7.1283191	total: 6.73s	remaining: 114ms
295:	learn: 7.1112866	total: 6.76s	remaining: 91.3ms
296:	learn: 7.0786679	total: 6.78s	remaining: 68.5ms
297:	learn: 7.0685798	total: 6.8s	remaining: 45.6ms
298:	learn: 7.0633802	total: 6.82s	remaining: 22.8ms
299:	learn: 7.0504357	total: 6.84s	remaining: 0us
0:	learn: 46.1068821	total: 3.19ms	remaining: 954ms
1:	learn: 45.5186259	total: 31.8ms	remaining: 4.74s
2:	learn: 44.8982427	total: 63.2ms	remaining: 6.25s
3:	learn: 44.0813314	total: 86.4ms	remaining: 6.39s
4:	learn: 43.3256787	total: 111ms	remaining: 6.57s
5:	learn: 42.5989163	total: 136ms	remaining: 6.67s
6:	learn: 41.8412255	total: 157ms	remaining: 6.57s
7:	learn: 41.1629605	total: 178ms	remaining: 6.5s
8:	learn: 40.6649568	total: 199ms	remaining: 6.44s
9:	learn: 40.1755647	total: 220ms	remaining: 6.39s
10:	learn: 39.7843303	total: 244ms	remaining: 6.41s
11:	learn: 39.1263454	total: 267ms	remaining: 6.41s
12:	learn: 38.5049650	total: 295ms	remaining: 6.51s
13:	learn: 37.8816934	total: 318ms	remaining: 6.49s
14:	learn: 37.3925567	total: 341ms	remaining: 6.47s
15:	learn: 36.8080381	total: 364ms	remaining: 6.46s
16:	learn: 36.1363624	total: 387ms	remaining: 6.44s
17:	learn: 35.8171279	total: 410ms	remaining: 6.42s
18:	learn: 35.2225026	total: 434ms	remaining: 6.41s
19:	learn: 34.7373286	total: 458ms	remaining: 6.41s
20:	learn: 34.2563365	total: 493ms	remaining: 6.55s
21:	learn: 33.9368110	total: 521ms	remaining: 6.58s
22:	learn: 33.5339596	total: 545ms	remaining: 6.57s
23:	learn: 33.2090930	total: 569ms	remaining: 6.54s
24:	learn: 32.8232733	total: 594ms	remaining: 6.53s
25:	learn: 32.5065756	total: 617ms	remaining: 6.5s
26:	learn: 32.0091556	total: 638ms	remaining: 6.45s
27:	learn: 31.5901880	total: 662ms	remaining: 6.43s
28:	learn: 31.2602719	total: 687ms	remaining: 6.42s
29:	learn: 30.9824864	total: 714ms	remaining: 6.42s
30:	learn: 30.6837776	total: 737ms	remaining: 6.39s
31:	learn: 30.3784738	total: 758ms	remaining: 6.35s
32:	learn: 29.9551890	total: 778ms	remaining: 6.29s
33:	learn: 29.6880796	total: 799ms	remaining: 6.25s
34:	learn: 29.3535204	total: 821ms	remaining: 6.22s
35:	learn: 29.0983115	total: 842ms	remaining: 6.17s
36:	learn: 28.8227016	total: 865ms	remaining: 6.14s
37:	learn: 28.5948966	total: 888ms	remaining: 6.12s
38:	learn: 28.2092747	total: 917ms	remaining: 6.14s
39:	learn: 27.9292918	total: 941ms	remaining: 6.12s
40:	learn: 27.6917466	total: 965ms	remaining: 6.09s
41:	learn: 27.3898320	total: 988ms	remaining: 6.07s
42:	learn: 27.1423506	total: 1.01s	remaining: 6.05s
43:	learn: 26.9143906	total: 1.03s	remaining: 6.01s
44:	learn: 26.6628354	total: 1.05s	remaining: 5.98s
45:	learn: 26.4436459	total: 1.08s	remaining: 5.95s
46:	learn: 26.2699511	total: 1.11s	remaining: 5.95s
47:	learn: 26.0687332	total: 1.13s	remaining: 5.93s
48:	learn: 25.8813257	total: 1.15s	remaining: 5.9s
49:	learn: 25.6417147	total: 1.17s	remaining: 5.86s
50:	learn: 25.4978473	total: 1.18s	remaining: 5.78s
51:	learn: 25.2508826	total: 1.2s	remaining: 5.74s
52:	learn: 24.9957667	total: 1.23s	remaining: 5.72s
53:	learn: 24.7897869	total: 1.25s	remaining: 5.69s
54:	learn: 24.6276395	total: 1.27s	remaining: 5.66s
55:	learn: 24.4484009	total: 1.29s	remaining: 5.62s
56:	learn: 24.2064871	total: 1.31s	remaining: 5.6s
57:	learn: 24.0355794	total: 1.34s	remaining: 5.61s
58:	learn: 23.8623034	total: 1.37s	remaining: 5.6s
59:	learn: 23.6009245	total: 1.39s	remaining: 5.58s
60:	learn: 23.4408382	total: 1.42s	remaining: 5.55s
61:	learn: 23.2362900	total: 1.44s	remaining: 5.54s
62:	learn: 23.0767254	total: 1.47s	remaining: 5.51s
63:	learn: 22.9370310	total: 1.49s	remaining: 5.48s
64:	learn: 22.7482690	total: 1.51s	remaining: 5.45s
65:	learn: 22.5740357	total: 1.54s	remaining: 5.45s
66:	learn: 22.4132876	total: 1.56s	remaining: 5.43s
67:	learn: 22.2551850	total: 1.58s	remaining: 5.41s
68:	learn: 22.0648127	total: 1.6s	remaining: 5.38s
69:	learn: 21.9204326	total: 1.63s	remaining: 5.35s
70:	learn: 21.8002567	total: 1.65s	remaining: 5.31s
71:	learn: 21.6545032	total: 1.67s	remaining: 5.27s
72:	learn: 21.5274427	total: 1.69s	remaining: 5.24s
73:	learn: 21.4235402	total: 1.71s	remaining: 5.21s
74:	learn: 21.2403786	total: 1.73s	remaining: 5.19s
75:	learn: 21.1019776	total: 1.76s	remaining: 5.19s
76:	learn: 20.9047503	total: 1.78s	remaining: 5.17s
77:	learn: 20.8140012	total: 1.81s	remaining: 5.14s
78:	learn: 20.7064981	total: 1.83s	remaining: 5.11s
79:	learn: 20.6033857	total: 1.85s	remaining: 5.09s
80:	learn: 20.4743532	total: 1.87s	remaining: 5.06s
81:	learn: 20.3272514	total: 1.89s	remaining: 5.03s
82:	learn: 20.2402909	total: 1.91s	remaining: 5s
83:	learn: 20.1344566	total: 1.94s	remaining: 4.97s
84:	learn: 19.9630804	total: 1.96s	remaining: 4.97s
85:	learn: 19.8196483	total: 1.99s	remaining: 4.94s
86:	learn: 19.6861323	total: 2.01s	remaining: 4.92s
87:	learn: 19.5689921	total: 2.03s	remaining: 4.89s
88:	learn: 19.4766099	total: 2.05s	remaining: 4.86s
89:	learn: 19.3523859	total: 2.07s	remaining: 4.83s
90:	learn: 19.2512307	total: 2.09s	remaining: 4.8s
91:	learn: 19.1541965	total: 2.11s	remaining: 4.77s
92:	learn: 18.9980138	total: 2.13s	remaining: 4.75s
93:	learn: 18.8241638	total: 2.16s	remaining: 4.74s
94:	learn: 18.6982820	total: 2.19s	remaining: 4.72s
95:	learn: 18.6170939	total: 2.21s	remaining: 4.7s
96:	learn: 18.5216398	total: 2.23s	remaining: 4.68s
97:	learn: 18.4188891	total: 2.26s	remaining: 4.66s
98:	learn: 18.3473321	total: 2.28s	remaining: 4.63s
99:	learn: 18.2744582	total: 2.3s	remaining: 4.61s
100:	learn: 18.1064776	total: 2.33s	remaining: 4.58s
101:	learn: 18.0564103	total: 2.35s	remaining: 4.56s
102:	learn: 17.9684931	total: 2.38s	remaining: 4.55s
103:	learn: 17.8577080	total: 2.4s	remaining: 4.53s
104:	learn: 17.7557863	total: 2.42s	remaining: 4.5s
105:	learn: 17.6830354	total: 2.45s	remaining: 4.48s
106:	learn: 17.5928641	total: 2.47s	remaining: 4.45s
107:	learn: 17.5447625	total: 2.49s	remaining: 4.42s
108:	learn: 17.4830060	total: 2.51s	remaining: 4.4s
109:	learn: 17.3760969	total: 2.53s	remaining: 4.38s
110:	learn: 17.2990516	total: 2.56s	remaining: 4.35s
111:	learn: 17.2626219	total: 2.59s	remaining: 4.35s
112:	learn: 17.1610712	total: 2.62s	remaining: 4.33s
113:	learn: 17.1129518	total: 2.64s	remaining: 4.31s
114:	learn: 16.9637799	total: 2.66s	remaining: 4.28s
115:	learn: 16.8724617	total: 2.69s	remaining: 4.26s
116:	learn: 16.7990982	total: 2.71s	remaining: 4.24s
117:	learn: 16.7354572	total: 2.73s	remaining: 4.21s
118:	learn: 16.6225750	total: 2.75s	remaining: 4.18s
119:	learn: 16.5778971	total: 2.77s	remaining: 4.15s
120:	learn: 16.5383915	total: 2.79s	remaining: 4.13s
121:	learn: 16.4801189	total: 2.82s	remaining: 4.12s
122:	learn: 16.3909340	total: 2.84s	remaining: 4.09s
123:	learn: 16.3129754	total: 2.86s	remaining: 4.07s
124:	learn: 16.2430907	total: 2.88s	remaining: 4.04s
125:	learn: 16.1779646	total: 2.9s	remaining: 4.01s
126:	learn: 16.1162194	total: 2.92s	remaining: 3.98s
127:	learn: 16.0084749	total: 2.95s	remaining: 3.96s
128:	learn: 15.9268705	total: 2.97s	remaining: 3.93s
129:	learn: 15.8770194	total: 2.99s	remaining: 3.91s
130:	learn: 15.8445342	total: 3.02s	remaining: 3.9s
131:	learn: 15.7799082	total: 3.04s	remaining: 3.88s
132:	learn: 15.7225612	total: 3.07s	remaining: 3.85s
133:	learn: 15.6327986	total: 3.09s	remaining: 3.83s
134:	learn: 15.5560479	total: 3.11s	remaining: 3.8s
135:	learn: 15.4650063	total: 3.13s	remaining: 3.78s
136:	learn: 15.4439565	total: 3.15s	remaining: 3.75s
137:	learn: 15.3723683	total: 3.17s	remaining: 3.73s
138:	learn: 15.2867520	total: 3.2s	remaining: 3.7s
139:	learn: 15.2008060	total: 3.22s	remaining: 3.68s
140:	learn: 15.1226253	total: 3.24s	remaining: 3.66s
141:	learn: 15.0392603	total: 3.27s	remaining: 3.63s
142:	learn: 15.0209441	total: 3.3s	remaining: 3.62s
143:	learn: 14.9691162	total: 3.32s	remaining: 3.6s
144:	learn: 14.8809723	total: 3.34s	remaining: 3.57s
145:	learn: 14.7790501	total: 3.36s	remaining: 3.55s
146:	learn: 14.7124707	total: 3.38s	remaining: 3.52s
147:	learn: 14.6505409	total: 3.41s	remaining: 3.5s
148:	learn: 14.5977957	total: 3.44s	remaining: 3.48s
149:	learn: 14.4563773	total: 3.47s	remaining: 3.47s
150:	learn: 14.3903954	total: 3.49s	remaining: 3.45s
151:	learn: 14.3677191	total: 3.52s	remaining: 3.43s
152:	learn: 14.3170088	total: 3.54s	remaining: 3.4s
153:	learn: 14.2212460	total: 3.56s	remaining: 3.38s
154:	learn: 14.1865067	total: 3.59s	remaining: 3.35s
155:	learn: 14.1133763	total: 3.61s	remaining: 3.33s
156:	learn: 14.0632935	total: 3.63s	remaining: 3.31s
157:	learn: 14.0317962	total: 3.66s	remaining: 3.29s
158:	learn: 13.9531527	total: 3.68s	remaining: 3.27s
159:	learn: 13.9361664	total: 3.71s	remaining: 3.24s
160:	learn: 13.8152344	total: 3.73s	remaining: 3.22s
161:	learn: 13.7794016	total: 3.75s	remaining: 3.19s
162:	learn: 13.7554484	total: 3.77s	remaining: 3.17s
163:	learn: 13.6786599	total: 3.79s	remaining: 3.15s
164:	learn: 13.6580934	total: 3.81s	remaining: 3.12s
165:	learn: 13.6135467	total: 3.84s	remaining: 3.1s
166:	learn: 13.5774402	total: 3.86s	remaining: 3.07s
167:	learn: 13.4665364	total: 3.89s	remaining: 3.06s
168:	learn: 13.4457745	total: 3.92s	remaining: 3.04s
169:	learn: 13.4313272	total: 3.94s	remaining: 3.01s
170:	learn: 13.3740130	total: 3.96s	remaining: 2.99s
171:	learn: 13.3012082	total: 3.99s	remaining: 2.97s
172:	learn: 13.2580888	total: 4.01s	remaining: 2.94s
173:	learn: 13.2260963	total: 4.03s	remaining: 2.92s
174:	learn: 13.1934687	total: 4.05s	remaining: 2.9s
175:	learn: 13.1567898	total: 4.08s	remaining: 2.87s
176:	learn: 13.1207167	total: 4.11s	remaining: 2.85s
177:	learn: 13.0453975	total: 4.13s	remaining: 2.83s
178:	learn: 12.9667806	total: 4.15s	remaining: 2.81s
179:	learn: 12.9050987	total: 4.17s	remaining: 2.78s
180:	learn: 12.7877614	total: 4.2s	remaining: 2.76s
181:	learn: 12.7246635	total: 4.21s	remaining: 2.73s
182:	learn: 12.6649785	total: 4.24s	remaining: 2.71s
183:	learn: 12.5966292	total: 4.26s	remaining: 2.69s
184:	learn: 12.5791866	total: 4.29s	remaining: 2.67s
185:	learn: 12.5265550	total: 4.32s	remaining: 2.65s
186:	learn: 12.4747790	total: 4.34s	remaining: 2.62s
187:	learn: 12.3639334	total: 4.37s	remaining: 2.6s
188:	learn: 12.3060104	total: 4.39s	remaining: 2.58s
189:	learn: 12.2108815	total: 4.41s	remaining: 2.56s
190:	learn: 12.1295363	total: 4.43s	remaining: 2.53s
191:	learn: 12.0828143	total: 4.46s	remaining: 2.51s
192:	learn: 12.0650770	total: 4.48s	remaining: 2.48s
193:	learn: 11.9979395	total: 4.5s	remaining: 2.46s
194:	learn: 11.9754814	total: 4.53s	remaining: 2.44s
195:	learn: 11.9328555	total: 4.55s	remaining: 2.42s
196:	learn: 11.9122042	total: 4.57s	remaining: 2.39s
197:	learn: 11.8518842	total: 4.59s	remaining: 2.37s
198:	learn: 11.8304153	total: 4.61s	remaining: 2.34s
199:	learn: 11.8121741	total: 4.63s	remaining: 2.32s
200:	learn: 11.7411942	total: 4.66s	remaining: 2.29s
201:	learn: 11.7329288	total: 4.67s	remaining: 2.27s
202:	learn: 11.7074830	total: 4.7s	remaining: 2.24s
203:	learn: 11.6479110	total: 4.72s	remaining: 2.22s
204:	learn: 11.6341037	total: 4.75s	remaining: 2.2s
205:	learn: 11.5703505	total: 4.78s	remaining: 2.18s
206:	learn: 11.5415491	total: 4.8s	remaining: 2.16s
207:	learn: 11.5016416	total: 4.82s	remaining: 2.13s
208:	learn: 11.4843453	total: 4.85s	remaining: 2.11s
209:	learn: 11.4556878	total: 4.87s	remaining: 2.09s
210:	learn: 11.3953637	total: 4.89s	remaining: 2.06s
211:	learn: 11.3640248	total: 4.91s	remaining: 2.04s
212:	learn: 11.3189656	total: 4.94s	remaining: 2.02s
213:	learn: 11.3023318	total: 4.96s	remaining: 1.99s
214:	learn: 11.2812809	total: 4.98s	remaining: 1.97s
215:	learn: 11.2649164	total: 5s	remaining: 1.95s
216:	learn: 11.2249674	total: 5.03s	remaining: 1.92s
217:	learn: 11.1694593	total: 5.05s	remaining: 1.9s
218:	learn: 11.1504747	total: 5.07s	remaining: 1.88s
219:	learn: 11.1099205	total: 5.09s	remaining: 1.85s
220:	learn: 11.0946598	total: 5.11s	remaining: 1.83s
221:	learn: 11.0335988	total: 5.13s	remaining: 1.8s
222:	learn: 11.0096492	total: 5.17s	remaining: 1.78s
223:	learn: 10.9672501	total: 5.19s	remaining: 1.76s
224:	learn: 10.9507570	total: 5.21s	remaining: 1.74s
225:	learn: 10.9314289	total: 5.24s	remaining: 1.71s
226:	learn: 10.8670947	total: 5.26s	remaining: 1.69s
227:	learn: 10.8529443	total: 5.28s	remaining: 1.67s
228:	learn: 10.8318645	total: 5.3s	remaining: 1.65s
229:	learn: 10.8156588	total: 5.33s	remaining: 1.62s
230:	learn: 10.7951131	total: 5.36s	remaining: 1.6s
231:	learn: 10.7795677	total: 5.38s	remaining: 1.58s
232:	learn: 10.7366028	total: 5.4s	remaining: 1.55s
233:	learn: 10.7193612	total: 5.42s	remaining: 1.53s
234:	learn: 10.6990737	total: 5.45s	remaining: 1.51s
235:	learn: 10.6205495	total: 5.47s	remaining: 1.48s
236:	learn: 10.5976748	total: 5.49s	remaining: 1.46s
237:	learn: 10.5212017	total: 5.51s	remaining: 1.44s
238:	learn: 10.4839783	total: 5.53s	remaining: 1.41s
239:	learn: 10.4723193	total: 5.55s	remaining: 1.39s
240:	learn: 10.4438944	total: 5.58s	remaining: 1.37s
241:	learn: 10.4068644	total: 5.61s	remaining: 1.34s
242:	learn: 10.3777867	total: 5.63s	remaining: 1.32s
243:	learn: 10.3633196	total: 5.66s	remaining: 1.3s
244:	learn: 10.3508529	total: 5.68s	remaining: 1.27s
245:	learn: 10.3391285	total: 5.7s	remaining: 1.25s
246:	learn: 10.3202046	total: 5.72s	remaining: 1.23s
247:	learn: 10.2679507	total: 5.74s	remaining: 1.2s
248:	learn: 10.2444411	total: 5.76s	remaining: 1.18s
249:	learn: 10.1978707	total: 5.78s	remaining: 1.16s
250:	learn: 10.1746210	total: 5.81s	remaining: 1.13s
251:	learn: 10.1455445	total: 5.83s	remaining: 1.11s
252:	learn: 10.1234292	total: 5.85s	remaining: 1.09s
253:	learn: 10.1009263	total: 5.87s	remaining: 1.06s
254:	learn: 10.0506537	total: 5.89s	remaining: 1.04s
255:	learn: 9.9973799	total: 5.91s	remaining: 1.02s
256:	learn: 9.9923793	total: 5.93s	remaining: 993ms
257:	learn: 9.9592135	total: 5.95s	remaining: 969ms
258:	learn: 9.9455912	total: 5.97s	remaining: 946ms
259:	learn: 9.9351881	total: 6s	remaining: 923ms
260:	learn: 9.8843396	total: 6.03s	remaining: 901ms
261:	learn: 9.8732841	total: 6.05s	remaining: 878ms
262:	learn: 9.8530402	total: 6.08s	remaining: 855ms
263:	learn: 9.8379209	total: 6.1s	remaining: 832ms
264:	learn: 9.8012657	total: 6.12s	remaining: 808ms
265:	learn: 9.7881742	total: 6.14s	remaining: 785ms
266:	learn: 9.7723933	total: 6.17s	remaining: 762ms
267:	learn: 9.7613461	total: 6.19s	remaining: 739ms
268:	learn: 9.7214417	total: 6.21s	remaining: 716ms
269:	learn: 9.6976897	total: 6.24s	remaining: 693ms
270:	learn: 9.6919786	total: 6.26s	remaining: 670ms
271:	learn: 9.6263135	total: 6.28s	remaining: 646ms
272:	learn: 9.6175527	total: 6.3s	remaining: 623ms
273:	learn: 9.6110661	total: 6.32s	remaining: 600ms
274:	learn: 9.5992549	total: 6.34s	remaining: 577ms
275:	learn: 9.5709079	total: 6.36s	remaining: 553ms
276:	learn: 9.5584595	total: 6.38s	remaining: 530ms
277:	learn: 9.5492847	total: 6.4s	remaining: 507ms
278:	learn: 9.5261231	total: 6.43s	remaining: 484ms
279:	learn: 9.5160964	total: 6.46s	remaining: 461ms
280:	learn: 9.4945891	total: 6.48s	remaining: 438ms
281:	learn: 9.4659751	total: 6.51s	remaining: 415ms
282:	learn: 9.4474987	total: 6.53s	remaining: 392ms
283:	learn: 9.4369109	total: 6.55s	remaining: 369ms
284:	learn: 9.4285200	total: 6.57s	remaining: 346ms
285:	learn: 9.4124421	total: 6.59s	remaining: 323ms
286:	learn: 9.3903730	total: 6.61s	remaining: 300ms
287:	learn: 9.3240575	total: 6.64s	remaining: 277ms
288:	learn: 9.3124220	total: 6.67s	remaining: 254ms
289:	learn: 9.2881271	total: 6.69s	remaining: 231ms
290:	learn: 9.2713655	total: 6.71s	remaining: 207ms
291:	learn: 9.2641531	total: 6.73s	remaining: 184ms
292:	learn: 9.2524129	total: 6.75s	remaining: 161ms
293:	learn: 9.2343575	total: 6.77s	remaining: 138ms
294:	learn: 9.1973322	total: 6.79s	remaining: 115ms
295:	learn: 9.1565802	total: 6.81s	remaining: 92ms
296:	learn: 9.1428051	total: 6.84s	remaining: 69.1ms
297:	learn: 9.1293653	total: 6.86s	remaining: 46.1ms
298:	learn: 9.1105879	total: 6.89s	remaining: 23ms
299:	learn: 9.1005583	total: 6.91s	remaining: 0us
0:	learn: 46.9033478	total: 22.5ms	remaining: 6.73s
1:	learn: 46.0879122	total: 48.9ms	remaining: 7.29s
2:	learn: 45.6500716	total: 72.8ms	remaining: 7.2s
3:	learn: 44.8037484	total: 94.2ms	remaining: 6.97s
4:	learn: 44.1513690	total: 115ms	remaining: 6.78s
5:	learn: 43.6033150	total: 134ms	remaining: 6.57s
6:	learn: 43.0669517	total: 153ms	remaining: 6.39s
7:	learn: 42.4011723	total: 173ms	remaining: 6.3s
8:	learn: 41.7060291	total: 195ms	remaining: 6.3s
9:	learn: 41.0058676	total: 216ms	remaining: 6.25s
10:	learn: 40.5518615	total: 238ms	remaining: 6.25s
11:	learn: 39.9452722	total: 261ms	remaining: 6.25s
12:	learn: 39.2539405	total: 285ms	remaining: 6.28s
13:	learn: 38.6690449	total: 316ms	remaining: 6.45s
14:	learn: 38.2389829	total: 339ms	remaining: 6.43s
15:	learn: 37.6795608	total: 362ms	remaining: 6.43s
16:	learn: 37.2562038	total: 386ms	remaining: 6.42s
17:	learn: 36.9516174	total: 410ms	remaining: 6.43s
18:	learn: 36.6189442	total: 432ms	remaining: 6.39s
19:	learn: 36.0530153	total: 453ms	remaining: 6.35s
20:	learn: 35.6536993	total: 476ms	remaining: 6.32s
21:	learn: 35.3616790	total: 504ms	remaining: 6.37s
22:	learn: 35.0627472	total: 528ms	remaining: 6.36s
23:	learn: 34.5889995	total: 548ms	remaining: 6.3s
24:	learn: 34.0395768	total: 568ms	remaining: 6.25s
25:	learn: 33.6846146	total: 590ms	remaining: 6.21s
26:	learn: 33.2581583	total: 611ms	remaining: 6.18s
27:	learn: 32.9043599	total: 632ms	remaining: 6.13s
28:	learn: 32.4603681	total: 654ms	remaining: 6.11s
29:	learn: 32.0784225	total: 675ms	remaining: 6.08s
30:	learn: 31.6654390	total: 699ms	remaining: 6.07s
31:	learn: 31.3473625	total: 730ms	remaining: 6.12s
32:	learn: 30.9124340	total: 756ms	remaining: 6.11s
33:	learn: 30.6354683	total: 779ms	remaining: 6.1s
34:	learn: 30.4404098	total: 802ms	remaining: 6.08s
35:	learn: 30.1914372	total: 826ms	remaining: 6.06s
36:	learn: 29.8249863	total: 848ms	remaining: 6.03s
37:	learn: 29.5196757	total: 870ms	remaining: 6s
38:	learn: 29.2605473	total: 893ms	remaining: 5.98s
39:	learn: 28.9803384	total: 917ms	remaining: 5.96s
40:	learn: 28.7535173	total: 948ms	remaining: 5.99s
41:	learn: 28.3888690	total: 972ms	remaining: 5.97s
42:	learn: 28.1381916	total: 994ms	remaining: 5.94s
43:	learn: 27.9181568	total: 1.01s	remaining: 5.91s
44:	learn: 27.6047071	total: 1.03s	remaining: 5.87s
45:	learn: 27.4164606	total: 1.06s	remaining: 5.84s
46:	learn: 27.0321668	total: 1.08s	remaining: 5.81s
47:	learn: 26.7987572	total: 1.1s	remaining: 5.79s
48:	learn: 26.6235810	total: 1.12s	remaining: 5.76s
49:	learn: 26.4084368	total: 1.15s	remaining: 5.73s
50:	learn: 26.1773159	total: 1.18s	remaining: 5.76s
51:	learn: 26.0200665	total: 1.21s	remaining: 5.75s
52:	learn: 25.8168330	total: 1.23s	remaining: 5.73s
53:	learn: 25.6154150	total: 1.25s	remaining: 5.71s
54:	learn: 25.2351738	total: 1.28s	remaining: 5.69s
55:	learn: 24.9587143	total: 1.3s	remaining: 5.66s
56:	learn: 24.7682982	total: 1.32s	remaining: 5.62s
57:	learn: 24.4602191	total: 1.34s	remaining: 5.6s
58:	learn: 24.3002094	total: 1.37s	remaining: 5.59s
59:	learn: 24.1509360	total: 1.4s	remaining: 5.58s
60:	learn: 23.9855802	total: 1.42s	remaining: 5.55s
61:	learn: 23.7747817	total: 1.44s	remaining: 5.52s
62:	learn: 23.5415832	total: 1.46s	remaining: 5.49s
63:	learn: 23.3540053	total: 1.48s	remaining: 5.46s
64:	learn: 23.1213752	total: 1.5s	remaining: 5.43s
65:	learn: 22.9729934	total: 1.52s	remaining: 5.39s
66:	learn: 22.8237351	total: 1.54s	remaining: 5.36s
67:	learn: 22.6716691	total: 1.56s	remaining: 5.34s
68:	learn: 22.5296861	total: 1.59s	remaining: 5.32s
69:	learn: 22.3725425	total: 1.62s	remaining: 5.33s
70:	learn: 22.2639328	total: 1.65s	remaining: 5.31s
71:	learn: 22.1174316	total: 1.67s	remaining: 5.29s
72:	learn: 21.9916264	total: 1.69s	remaining: 5.26s
73:	learn: 21.7797959	total: 1.71s	remaining: 5.24s
74:	learn: 21.6350589	total: 1.74s	remaining: 5.21s
75:	learn: 21.4910112	total: 1.76s	remaining: 5.18s
76:	learn: 21.3068682	total: 1.78s	remaining: 5.15s
77:	learn: 21.1725772	total: 1.81s	remaining: 5.15s
78:	learn: 21.0526496	total: 1.83s	remaining: 5.13s
79:	learn: 20.9534374	total: 1.85s	remaining: 5.1s
80:	learn: 20.8168422	total: 1.88s	remaining: 5.07s
81:	learn: 20.7138006	total: 1.9s	remaining: 5.05s
82:	learn: 20.5259907	total: 1.92s	remaining: 5.02s
83:	learn: 20.3881958	total: 1.94s	remaining: 5s
84:	learn: 20.2702350	total: 1.97s	remaining: 4.97s
85:	learn: 20.1185381	total: 1.99s	remaining: 4.95s
86:	learn: 19.9815763	total: 2.01s	remaining: 4.92s
87:	learn: 19.8563040	total: 2.04s	remaining: 4.92s
88:	learn: 19.7629932	total: 2.06s	remaining: 4.89s
89:	learn: 19.6361676	total: 2.09s	remaining: 4.87s
90:	learn: 19.5189179	total: 2.11s	remaining: 4.84s
91:	learn: 19.4368807	total: 2.13s	remaining: 4.82s
92:	learn: 19.3491759	total: 2.15s	remaining: 4.79s
93:	learn: 19.2441781	total: 2.17s	remaining: 4.76s
94:	learn: 19.1595312	total: 2.19s	remaining: 4.73s
95:	learn: 19.0732186	total: 2.21s	remaining: 4.71s
96:	learn: 18.9664261	total: 2.24s	remaining: 4.69s
97:	learn: 18.8752837	total: 2.26s	remaining: 4.67s
98:	learn: 18.7884732	total: 2.29s	remaining: 4.64s
99:	learn: 18.6638300	total: 2.31s	remaining: 4.61s
100:	learn: 18.5456185	total: 2.33s	remaining: 4.58s
101:	learn: 18.4491938	total: 2.35s	remaining: 4.56s
102:	learn: 18.3712210	total: 2.37s	remaining: 4.53s
103:	learn: 18.2907426	total: 2.39s	remaining: 4.5s
104:	learn: 18.2393122	total: 2.41s	remaining: 4.48s
105:	learn: 18.1493295	total: 2.43s	remaining: 4.45s
106:	learn: 18.0741996	total: 2.46s	remaining: 4.45s
107:	learn: 17.9763617	total: 2.49s	remaining: 4.42s
108:	learn: 17.8511711	total: 2.51s	remaining: 4.4s
109:	learn: 17.7975521	total: 2.53s	remaining: 4.37s
110:	learn: 17.7280526	total: 2.55s	remaining: 4.35s
111:	learn: 17.6960456	total: 2.58s	remaining: 4.32s
112:	learn: 17.6209638	total: 2.6s	remaining: 4.3s
113:	learn: 17.5389165	total: 2.62s	remaining: 4.27s
114:	learn: 17.4874967	total: 2.64s	remaining: 4.25s
115:	learn: 17.3744401	total: 2.66s	remaining: 4.22s
116:	learn: 17.2762107	total: 2.69s	remaining: 4.21s
117:	learn: 17.1930198	total: 2.71s	remaining: 4.18s
118:	learn: 17.0804375	total: 2.73s	remaining: 4.15s
119:	learn: 17.0100383	total: 2.75s	remaining: 4.13s
120:	learn: 16.9515165	total: 2.77s	remaining: 4.1s
121:	learn: 16.8221030	total: 2.79s	remaining: 4.08s
122:	learn: 16.7270258	total: 2.82s	remaining: 4.05s
123:	learn: 16.6537882	total: 2.83s	remaining: 4.03s
124:	learn: 16.5324707	total: 2.86s	remaining: 4.01s
125:	learn: 16.4705263	total: 2.89s	remaining: 3.99s
126:	learn: 16.4130833	total: 2.91s	remaining: 3.96s
127:	learn: 16.3480615	total: 2.93s	remaining: 3.94s
128:	learn: 16.2228205	total: 2.96s	remaining: 3.92s
129:	learn: 16.1299284	total: 2.98s	remaining: 3.9s
130:	learn: 16.0593548	total: 3s	remaining: 3.87s
131:	learn: 15.9926308	total: 3.02s	remaining: 3.84s
132:	learn: 15.9351137	total: 3.04s	remaining: 3.82s
133:	learn: 15.8301951	total: 3.06s	remaining: 3.79s
134:	learn: 15.7606319	total: 3.08s	remaining: 3.77s
135:	learn: 15.6217872	total: 3.11s	remaining: 3.75s
136:	learn: 15.5200572	total: 3.13s	remaining: 3.73s
137:	learn: 15.4565615	total: 3.15s	remaining: 3.7s
138:	learn: 15.3854906	total: 3.17s	remaining: 3.67s
139:	learn: 15.3407126	total: 3.19s	remaining: 3.65s
140:	learn: 15.2532536	total: 3.21s	remaining: 3.62s
141:	learn: 15.2129349	total: 3.23s	remaining: 3.6s
142:	learn: 15.1732289	total: 3.25s	remaining: 3.57s
143:	learn: 15.1138929	total: 3.28s	remaining: 3.55s
144:	learn: 15.0326156	total: 3.3s	remaining: 3.53s
145:	learn: 14.9309324	total: 3.33s	remaining: 3.51s
146:	learn: 14.8657435	total: 3.35s	remaining: 3.49s
147:	learn: 14.8314609	total: 3.38s	remaining: 3.47s
148:	learn: 14.7431116	total: 3.4s	remaining: 3.45s
149:	learn: 14.6590351	total: 3.42s	remaining: 3.42s
150:	learn: 14.5339193	total: 3.44s	remaining: 3.4s
151:	learn: 14.4639900	total: 3.47s	remaining: 3.37s
152:	learn: 14.3967135	total: 3.49s	remaining: 3.35s
153:	learn: 14.3077714	total: 3.51s	remaining: 3.33s
154:	learn: 14.2227051	total: 3.54s	remaining: 3.31s
155:	learn: 14.1541051	total: 3.56s	remaining: 3.29s
156:	learn: 14.1099666	total: 3.59s	remaining: 3.27s
157:	learn: 14.0474387	total: 3.61s	remaining: 3.24s
158:	learn: 13.9402729	total: 3.63s	remaining: 3.22s
159:	learn: 13.8714208	total: 3.65s	remaining: 3.19s
160:	learn: 13.7798180	total: 3.67s	remaining: 3.17s
161:	learn: 13.6785277	total: 3.69s	remaining: 3.15s
162:	learn: 13.5985050	total: 3.72s	remaining: 3.13s
163:	learn: 13.5743583	total: 3.75s	remaining: 3.11s
164:	learn: 13.4271067	total: 3.77s	remaining: 3.09s
165:	learn: 13.3787394	total: 3.8s	remaining: 3.06s
166:	learn: 13.3132605	total: 3.82s	remaining: 3.04s
167:	learn: 13.2185878	total: 3.84s	remaining: 3.02s
168:	learn: 13.2025287	total: 3.87s	remaining: 3s
169:	learn: 13.1393556	total: 3.89s	remaining: 2.97s
170:	learn: 13.0898086	total: 3.91s	remaining: 2.95s
171:	learn: 12.9970587	total: 3.93s	remaining: 2.93s
172:	learn: 12.8778568	total: 3.96s	remaining: 2.91s
173:	learn: 12.7715298	total: 3.99s	remaining: 2.89s
174:	learn: 12.7109534	total: 4.01s	remaining: 2.86s
175:	learn: 12.6499951	total: 4.03s	remaining: 2.84s
176:	learn: 12.5781341	total: 4.05s	remaining: 2.82s
177:	learn: 12.5302935	total: 4.07s	remaining: 2.79s
178:	learn: 12.4570172	total: 4.09s	remaining: 2.77s
179:	learn: 12.3852468	total: 4.12s	remaining: 2.74s
180:	learn: 12.3218479	total: 4.14s	remaining: 2.72s
181:	learn: 12.2146968	total: 4.17s	remaining: 2.7s
182:	learn: 12.0872854	total: 4.19s	remaining: 2.68s
183:	learn: 12.0609707	total: 4.22s	remaining: 2.66s
184:	learn: 11.9443946	total: 4.24s	remaining: 2.64s
185:	learn: 11.8745310	total: 4.26s	remaining: 2.61s
186:	learn: 11.7895958	total: 4.29s	remaining: 2.59s
187:	learn: 11.7497478	total: 4.31s	remaining: 2.57s
188:	learn: 11.6831548	total: 4.33s	remaining: 2.54s
189:	learn: 11.6608564	total: 4.35s	remaining: 2.52s
190:	learn: 11.6399052	total: 4.38s	remaining: 2.5s
191:	learn: 11.5714004	total: 4.41s	remaining: 2.48s
192:	learn: 11.5427662	total: 4.43s	remaining: 2.45s
193:	learn: 11.4806208	total: 4.45s	remaining: 2.43s
194:	learn: 11.4691327	total: 4.47s	remaining: 2.41s
195:	learn: 11.4134172	total: 4.49s	remaining: 2.38s
196:	learn: 11.3438004	total: 4.51s	remaining: 2.36s
197:	learn: 11.3015149	total: 4.53s	remaining: 2.33s
198:	learn: 11.2493782	total: 4.55s	remaining: 2.31s
199:	learn: 11.1895539	total: 4.58s	remaining: 2.29s
200:	learn: 11.1683522	total: 4.6s	remaining: 2.26s
201:	learn: 11.1466698	total: 4.62s	remaining: 2.24s
202:	learn: 11.0701090	total: 4.66s	remaining: 2.22s
203:	learn: 11.0293322	total: 4.68s	remaining: 2.2s
204:	learn: 10.9637933	total: 4.7s	remaining: 2.18s
205:	learn: 10.9171875	total: 4.73s	remaining: 2.16s
206:	learn: 10.8620107	total: 4.75s	remaining: 2.13s
207:	learn: 10.8411017	total: 4.77s	remaining: 2.11s
208:	learn: 10.8219871	total: 4.79s	remaining: 2.09s
209:	learn: 10.7790684	total: 4.81s	remaining: 2.06s
210:	learn: 10.7460005	total: 4.84s	remaining: 2.04s
211:	learn: 10.6884581	total: 4.86s	remaining: 2.02s
212:	learn: 10.6215835	total: 4.89s	remaining: 2s
213:	learn: 10.6112487	total: 4.91s	remaining: 1.97s
214:	learn: 10.5515861	total: 4.93s	remaining: 1.95s
215:	learn: 10.5005611	total: 4.95s	remaining: 1.93s
216:	learn: 10.4827029	total: 4.97s	remaining: 1.9s
217:	learn: 10.4671266	total: 4.99s	remaining: 1.88s
218:	learn: 10.4471117	total: 5.01s	remaining: 1.85s
219:	learn: 10.4286227	total: 5.04s	remaining: 1.83s
220:	learn: 10.4102334	total: 5.07s	remaining: 1.81s
221:	learn: 10.3587364	total: 5.1s	remaining: 1.79s
222:	learn: 10.3185900	total: 5.12s	remaining: 1.77s
223:	learn: 10.3047695	total: 5.14s	remaining: 1.75s
224:	learn: 10.2861237	total: 5.17s	remaining: 1.72s
225:	learn: 10.2723077	total: 5.19s	remaining: 1.7s
226:	learn: 10.2566131	total: 5.21s	remaining: 1.68s
227:	learn: 10.2444076	total: 5.23s	remaining: 1.65s
228:	learn: 10.2035037	total: 5.26s	remaining: 1.63s
229:	learn: 10.1151548	total: 5.29s	remaining: 1.61s
230:	learn: 10.0952083	total: 5.31s	remaining: 1.58s
231:	learn: 10.0785525	total: 5.33s	remaining: 1.56s
232:	learn: 10.0582314	total: 5.35s	remaining: 1.54s
233:	learn: 10.0399370	total: 5.38s	remaining: 1.52s
234:	learn: 10.0277451	total: 5.4s	remaining: 1.49s
235:	learn: 9.9732252	total: 5.42s	remaining: 1.47s
236:	learn: 9.9602566	total: 5.44s	remaining: 1.45s
237:	learn: 9.9117022	total: 5.46s	remaining: 1.42s
238:	learn: 9.8771993	total: 5.48s	remaining: 1.4s
239:	learn: 9.8360533	total: 5.51s	remaining: 1.38s
240:	learn: 9.8228622	total: 5.54s	remaining: 1.35s
241:	learn: 9.7831566	total: 5.56s	remaining: 1.33s
242:	learn: 9.7238030	total: 5.58s	remaining: 1.31s
243:	learn: 9.6756010	total: 5.61s	remaining: 1.29s
244:	learn: 9.6573706	total: 5.63s	remaining: 1.26s
245:	learn: 9.6190420	total: 5.65s	remaining: 1.24s
246:	learn: 9.5963929	total: 5.67s	remaining: 1.22s
247:	learn: 9.5838279	total: 5.7s	remaining: 1.19s
248:	learn: 9.5516337	total: 5.72s	remaining: 1.17s
249:	learn: 9.5319568	total: 5.74s	remaining: 1.15s
250:	learn: 9.5009733	total: 5.76s	remaining: 1.12s
251:	learn: 9.4738909	total: 5.78s	remaining: 1.1s
252:	learn: 9.4573897	total: 5.8s	remaining: 1.08s
253:	learn: 9.4238859	total: 5.82s	remaining: 1.05s
254:	learn: 9.3792324	total: 5.84s	remaining: 1.03s
255:	learn: 9.3552571	total: 5.86s	remaining: 1.01s
256:	learn: 9.3036260	total: 5.88s	remaining: 983ms
257:	learn: 9.2868142	total: 5.9s	remaining: 960ms
258:	learn: 9.2740504	total: 5.93s	remaining: 939ms
259:	learn: 9.2329336	total: 5.96s	remaining: 917ms
260:	learn: 9.2190698	total: 5.98s	remaining: 894ms
261:	learn: 9.2074817	total: 6s	remaining: 871ms
262:	learn: 9.1724174	total: 6.03s	remaining: 848ms
263:	learn: 9.1293699	total: 6.05s	remaining: 825ms
264:	learn: 9.1025091	total: 6.07s	remaining: 801ms
265:	learn: 9.0893697	total: 6.09s	remaining: 778ms
266:	learn: 9.0733581	total: 6.11s	remaining: 755ms
267:	learn: 9.0599268	total: 6.14s	remaining: 733ms
268:	learn: 9.0277334	total: 6.16s	remaining: 710ms
269:	learn: 8.9860960	total: 6.18s	remaining: 687ms
270:	learn: 8.9478404	total: 6.2s	remaining: 664ms
271:	learn: 8.9074990	total: 6.22s	remaining: 641ms
272:	learn: 8.8851827	total: 6.24s	remaining: 618ms
273:	learn: 8.8741463	total: 6.26s	remaining: 594ms
274:	learn: 8.8422813	total: 6.28s	remaining: 571ms
275:	learn: 8.7887362	total: 6.3s	remaining: 548ms
276:	learn: 8.7766205	total: 6.32s	remaining: 525ms
277:	learn: 8.7606125	total: 6.35s	remaining: 502ms
278:	learn: 8.7302098	total: 6.38s	remaining: 480ms
279:	learn: 8.7180658	total: 6.4s	remaining: 457ms
280:	learn: 8.6784364	total: 6.42s	remaining: 434ms
281:	learn: 8.6341139	total: 6.45s	remaining: 411ms
282:	learn: 8.6092132	total: 6.47s	remaining: 389ms
283:	learn: 8.5723040	total: 6.49s	remaining: 366ms
284:	learn: 8.5318798	total: 6.51s	remaining: 343ms
285:	learn: 8.5051575	total: 6.53s	remaining: 320ms
286:	learn: 8.4896135	total: 6.55s	remaining: 297ms
287:	learn: 8.4665233	total: 6.58s	remaining: 274ms
288:	learn: 8.4563622	total: 6.6s	remaining: 251ms
289:	learn: 8.4221661	total: 6.62s	remaining: 228ms
290:	learn: 8.3953479	total: 6.64s	remaining: 205ms
291:	learn: 8.3735779	total: 6.66s	remaining: 183ms
292:	learn: 8.3452844	total: 6.69s	remaining: 160ms
293:	learn: 8.3141538	total: 6.71s	remaining: 137ms
294:	learn: 8.3014432	total: 6.73s	remaining: 114ms
295:	learn: 8.2802794	total: 6.75s	remaining: 91.2ms
296:	learn: 8.2485275	total: 6.77s	remaining: 68.4ms
297:	learn: 8.2239488	total: 6.8s	remaining: 45.7ms
298:	learn: 8.1877191	total: 6.83s	remaining: 22.8ms
299:	learn: 8.1551355	total: 6.85s	remaining: 0us
0:	learn: 27.6165091	total: 5.11ms	remaining: 506ms
1:	learn: 27.2156009	total: 10.4ms	remaining: 510ms
2:	learn: 26.8744169	total: 15.8ms	remaining: 510ms
3:	learn: 26.5530473	total: 20.6ms	remaining: 495ms
4:	learn: 26.1200739	total: 25.9ms	remaining: 491ms
5:	learn: 25.7559063	total: 31.3ms	remaining: 490ms
6:	learn: 25.3817459	total: 36.4ms	remaining: 483ms
7:	learn: 25.0780231	total: 41.7ms	remaining: 479ms
8:	learn: 24.7908836	total: 47.2ms	remaining: 477ms
9:	learn: 24.5023726	total: 52.4ms	remaining: 472ms
10:	learn: 24.2430447	total: 57.9ms	remaining: 468ms
11:	learn: 24.0150987	total: 66.5ms	remaining: 487ms
12:	learn: 23.6832732	total: 74.6ms	remaining: 499ms
13:	learn: 23.4512462	total: 82.2ms	remaining: 505ms
14:	learn: 23.2300808	total: 87.8ms	remaining: 497ms
15:	learn: 23.0198192	total: 94.1ms	remaining: 494ms
16:	learn: 22.7757356	total: 99.7ms	remaining: 487ms
17:	learn: 22.4962727	total: 105ms	remaining: 477ms
18:	learn: 22.2131794	total: 110ms	remaining: 467ms
19:	learn: 21.9844087	total: 115ms	remaining: 459ms
20:	learn: 21.6467820	total: 120ms	remaining: 451ms
21:	learn: 21.4458045	total: 125ms	remaining: 442ms
22:	learn: 21.2706627	total: 130ms	remaining: 435ms
23:	learn: 21.0770166	total: 135ms	remaining: 428ms
24:	learn: 20.8871491	total: 140ms	remaining: 421ms
25:	learn: 20.7151270	total: 145ms	remaining: 414ms
26:	learn: 20.5585218	total: 151ms	remaining: 408ms
27:	learn: 20.4091128	total: 156ms	remaining: 401ms
28:	learn: 20.2343121	total: 161ms	remaining: 395ms
29:	learn: 20.0685862	total: 166ms	remaining: 388ms
30:	learn: 19.8339661	total: 172ms	remaining: 382ms
31:	learn: 19.6811138	total: 177ms	remaining: 375ms
32:	learn: 19.4881999	total: 182ms	remaining: 369ms
33:	learn: 19.3473429	total: 187ms	remaining: 363ms
34:	learn: 19.1087185	total: 193ms	remaining: 358ms
35:	learn: 18.9817724	total: 198ms	remaining: 352ms
36:	learn: 18.8465124	total: 204ms	remaining: 347ms
37:	learn: 18.6998182	total: 209ms	remaining: 342ms
38:	learn: 18.5534881	total: 215ms	remaining: 336ms
39:	learn: 18.4221213	total: 220ms	remaining: 330ms
40:	learn: 18.3262428	total: 225ms	remaining: 324ms
41:	learn: 18.2018519	total: 231ms	remaining: 319ms
42:	learn: 18.0704402	total: 237ms	remaining: 314ms
43:	learn: 17.9674737	total: 243ms	remaining: 309ms
44:	learn: 17.8092746	total: 248ms	remaining: 303ms
45:	learn: 17.7036671	total: 254ms	remaining: 298ms
46:	learn: 17.5636023	total: 259ms	remaining: 292ms
47:	learn: 17.3922671	total: 264ms	remaining: 286ms
48:	learn: 17.2777727	total: 272ms	remaining: 283ms
49:	learn: 17.1901866	total: 280ms	remaining: 280ms
50:	learn: 17.0799264	total: 291ms	remaining: 280ms
51:	learn: 17.0022808	total: 298ms	remaining: 275ms
52:	learn: 16.9193737	total: 306ms	remaining: 272ms
53:	learn: 16.8349324	total: 312ms	remaining: 266ms
54:	learn: 16.7122802	total: 318ms	remaining: 260ms
55:	learn: 16.5736462	total: 325ms	remaining: 255ms
56:	learn: 16.4576798	total: 332ms	remaining: 250ms
57:	learn: 16.3336075	total: 338ms	remaining: 245ms
58:	learn: 16.2578113	total: 344ms	remaining: 239ms
59:	learn: 16.1586938	total: 349ms	remaining: 233ms
60:	learn: 16.0827831	total: 355ms	remaining: 227ms
61:	learn: 16.0030150	total: 361ms	remaining: 221ms
62:	learn: 15.8741662	total: 367ms	remaining: 216ms
63:	learn: 15.7533897	total: 373ms	remaining: 210ms
64:	learn: 15.6743804	total: 379ms	remaining: 204ms
65:	learn: 15.6291324	total: 384ms	remaining: 198ms
66:	learn: 15.5363523	total: 389ms	remaining: 191ms
67:	learn: 15.4675550	total: 394ms	remaining: 186ms
68:	learn: 15.3959873	total: 400ms	remaining: 180ms
69:	learn: 15.3222045	total: 404ms	remaining: 173ms
70:	learn: 15.2343883	total: 410ms	remaining: 167ms
71:	learn: 15.1891070	total: 415ms	remaining: 161ms
72:	learn: 15.1320798	total: 420ms	remaining: 155ms
73:	learn: 15.0590468	total: 426ms	remaining: 150ms
74:	learn: 14.9682726	total: 431ms	remaining: 144ms
75:	learn: 14.8868528	total: 436ms	remaining: 138ms
76:	learn: 14.8046328	total: 442ms	remaining: 132ms
77:	learn: 14.7253152	total: 447ms	remaining: 126ms
78:	learn: 14.6438207	total: 455ms	remaining: 121ms
79:	learn: 14.5350651	total: 462ms	remaining: 115ms
80:	learn: 14.4301800	total: 469ms	remaining: 110ms
81:	learn: 14.3716251	total: 476ms	remaining: 105ms
82:	learn: 14.3127586	total: 482ms	remaining: 98.8ms
83:	learn: 14.2685086	total: 490ms	remaining: 93.4ms
84:	learn: 14.1936111	total: 496ms	remaining: 87.5ms
85:	learn: 14.1488261	total: 501ms	remaining: 81.6ms
86:	learn: 14.0654602	total: 506ms	remaining: 75.7ms
87:	learn: 14.0026195	total: 512ms	remaining: 69.8ms
88:	learn: 13.9498697	total: 517ms	remaining: 63.9ms
89:	learn: 13.9002477	total: 522ms	remaining: 58ms
90:	learn: 13.8429017	total: 527ms	remaining: 52.1ms
91:	learn: 13.7892130	total: 532ms	remaining: 46.2ms
92:	learn: 13.7122418	total: 537ms	remaining: 40.4ms
93:	learn: 13.6752324	total: 542ms	remaining: 34.6ms
94:	learn: 13.6186680	total: 549ms	remaining: 28.9ms
95:	learn: 13.5578384	total: 554ms	remaining: 23.1ms
96:	learn: 13.5028120	total: 559ms	remaining: 17.3ms
97:	learn: 13.4306895	total: 564ms	remaining: 11.5ms
98:	learn: 13.3955813	total: 569ms	remaining: 5.75ms
99:	learn: 13.3380095	total: 574ms	remaining: 0us
0:	learn: 42.9675374	total: 5.34ms	remaining: 528ms
1:	learn: 42.2542078	total: 10.5ms	remaining: 516ms
2:	learn: 41.5532166	total: 15.6ms	remaining: 506ms
3:	learn: 40.7812113	total: 21.5ms	remaining: 515ms
4:	learn: 39.8819601	total: 27ms	remaining: 513ms
5:	learn: 39.0997229	total: 29.1ms	remaining: 455ms
6:	learn: 38.2185623	total: 34.7ms	remaining: 461ms
7:	learn: 37.5465645	total: 40ms	remaining: 460ms
8:	learn: 36.8449555	total: 45.4ms	remaining: 459ms
9:	learn: 36.0912815	total: 54.3ms	remaining: 488ms
10:	learn: 35.5776470	total: 64.6ms	remaining: 522ms
11:	learn: 34.7845329	total: 73.1ms	remaining: 536ms
12:	learn: 34.1574031	total: 81.9ms	remaining: 548ms
13:	learn: 33.4950652	total: 94.1ms	remaining: 578ms
14:	learn: 32.9343881	total: 100ms	remaining: 568ms
15:	learn: 32.4356238	total: 106ms	remaining: 558ms
16:	learn: 31.8370592	total: 113ms	remaining: 550ms
17:	learn: 31.2122644	total: 118ms	remaining: 537ms
18:	learn: 30.7195190	total: 124ms	remaining: 530ms
19:	learn: 30.1548478	total: 130ms	remaining: 520ms
20:	learn: 29.6521001	total: 133ms	remaining: 500ms
21:	learn: 29.1746988	total: 139ms	remaining: 494ms
22:	learn: 28.6492690	total: 146ms	remaining: 487ms
23:	learn: 28.1958339	total: 151ms	remaining: 479ms
24:	learn: 27.9126674	total: 157ms	remaining: 471ms
25:	learn: 27.5059508	total: 162ms	remaining: 462ms
26:	learn: 27.0869176	total: 167ms	remaining: 453ms
27:	learn: 26.6545277	total: 173ms	remaining: 445ms
28:	learn: 26.2388575	total: 178ms	remaining: 436ms
29:	learn: 25.8957708	total: 183ms	remaining: 428ms
30:	learn: 25.5045901	total: 188ms	remaining: 419ms
31:	learn: 25.2559530	total: 194ms	remaining: 411ms
32:	learn: 24.9012566	total: 199ms	remaining: 404ms
33:	learn: 24.5601820	total: 204ms	remaining: 396ms
34:	learn: 24.2407285	total: 209ms	remaining: 389ms
35:	learn: 23.9481769	total: 214ms	remaining: 381ms
36:	learn: 23.6746994	total: 219ms	remaining: 373ms
37:	learn: 23.4470352	total: 224ms	remaining: 365ms
38:	learn: 23.1678305	total: 229ms	remaining: 359ms
39:	learn: 22.9660692	total: 234ms	remaining: 352ms
40:	learn: 22.7102548	total: 240ms	remaining: 345ms
41:	learn: 22.5152447	total: 245ms	remaining: 339ms
42:	learn: 22.2967100	total: 250ms	remaining: 332ms
43:	learn: 22.0869517	total: 256ms	remaining: 325ms
44:	learn: 21.8556497	total: 264ms	remaining: 322ms
45:	learn: 21.7036804	total: 272ms	remaining: 319ms
46:	learn: 21.4792011	total: 280ms	remaining: 316ms
47:	learn: 21.2830384	total: 286ms	remaining: 310ms
48:	learn: 21.0771837	total: 291ms	remaining: 303ms
49:	learn: 20.8824468	total: 296ms	remaining: 296ms
50:	learn: 20.7250875	total: 301ms	remaining: 289ms
51:	learn: 20.5564423	total: 306ms	remaining: 282ms
52:	learn: 20.4067403	total: 311ms	remaining: 276ms
53:	learn: 20.2674808	total: 316ms	remaining: 269ms
54:	learn: 20.1394249	total: 321ms	remaining: 263ms
55:	learn: 19.9748016	total: 327ms	remaining: 257ms
56:	learn: 19.8159522	total: 332ms	remaining: 250ms
57:	learn: 19.6811073	total: 337ms	remaining: 244ms
58:	learn: 19.5083232	total: 342ms	remaining: 238ms
59:	learn: 19.3949390	total: 345ms	remaining: 230ms
60:	learn: 19.2485728	total: 350ms	remaining: 224ms
61:	learn: 19.1255523	total: 355ms	remaining: 218ms
62:	learn: 18.9423320	total: 360ms	remaining: 211ms
63:	learn: 18.7794545	total: 365ms	remaining: 205ms
64:	learn: 18.6339033	total: 370ms	remaining: 199ms
65:	learn: 18.5188724	total: 374ms	remaining: 193ms
66:	learn: 18.3398412	total: 379ms	remaining: 187ms
67:	learn: 18.2873427	total: 384ms	remaining: 181ms
68:	learn: 18.1287092	total: 389ms	remaining: 175ms
69:	learn: 18.0163474	total: 393ms	remaining: 169ms
70:	learn: 17.9428395	total: 398ms	remaining: 163ms
71:	learn: 17.7906087	total: 403ms	remaining: 157ms
72:	learn: 17.6121088	total: 408ms	remaining: 151ms
73:	learn: 17.5136572	total: 413ms	remaining: 145ms
74:	learn: 17.3837993	total: 418ms	remaining: 139ms
75:	learn: 17.3015647	total: 423ms	remaining: 133ms
76:	learn: 17.1991252	total: 428ms	remaining: 128ms
77:	learn: 17.0854777	total: 433ms	remaining: 122ms
78:	learn: 17.0308269	total: 438ms	remaining: 116ms
79:	learn: 16.9754807	total: 443ms	remaining: 111ms
80:	learn: 16.9174907	total: 448ms	remaining: 105ms
81:	learn: 16.7962603	total: 455ms	remaining: 99.8ms
82:	learn: 16.6685446	total: 463ms	remaining: 94.9ms
83:	learn: 16.5812672	total: 476ms	remaining: 90.7ms
84:	learn: 16.4896026	total: 484ms	remaining: 85.3ms
85:	learn: 16.4023414	total: 490ms	remaining: 79.8ms
86:	learn: 16.3093718	total: 496ms	remaining: 74ms
87:	learn: 16.2409040	total: 501ms	remaining: 68.4ms
88:	learn: 16.1616213	total: 507ms	remaining: 62.7ms
89:	learn: 16.0825203	total: 514ms	remaining: 57.1ms
90:	learn: 16.0204931	total: 520ms	remaining: 51.4ms
91:	learn: 15.9741267	total: 526ms	remaining: 45.7ms
92:	learn: 15.9413725	total: 531ms	remaining: 40ms
93:	learn: 15.8762295	total: 537ms	remaining: 34.3ms
94:	learn: 15.8165812	total: 543ms	remaining: 28.6ms
95:	learn: 15.7244343	total: 550ms	remaining: 22.9ms
96:	learn: 15.6537033	total: 555ms	remaining: 17.2ms
97:	learn: 15.6052320	total: 560ms	remaining: 11.4ms
98:	learn: 15.5434930	total: 565ms	remaining: 5.7ms
99:	learn: 15.4452106	total: 569ms	remaining: 0us
0:	learn: 46.5387280	total: 5.23ms	remaining: 518ms
1:	learn: 45.8605074	total: 10.1ms	remaining: 496ms
2:	learn: 45.2237152	total: 15.1ms	remaining: 488ms
3:	learn: 44.4158454	total: 20.4ms	remaining: 489ms
4:	learn: 43.7177384	total: 28.8ms	remaining: 546ms
5:	learn: 42.9896372	total: 36.9ms	remaining: 578ms
6:	learn: 42.3639431	total: 44.5ms	remaining: 591ms
7:	learn: 41.6648406	total: 50.1ms	remaining: 577ms
8:	learn: 41.0681442	total: 56.4ms	remaining: 570ms
9:	learn: 40.4478745	total: 63.1ms	remaining: 568ms
10:	learn: 40.0398470	total: 68.2ms	remaining: 552ms
11:	learn: 39.3300888	total: 73ms	remaining: 535ms
12:	learn: 38.9198991	total: 78ms	remaining: 522ms
13:	learn: 38.4022666	total: 83.1ms	remaining: 510ms
14:	learn: 37.9124629	total: 87.8ms	remaining: 498ms
15:	learn: 37.3846174	total: 92.7ms	remaining: 486ms
16:	learn: 36.8502348	total: 97.4ms	remaining: 475ms
17:	learn: 36.5079755	total: 102ms	remaining: 465ms
18:	learn: 36.1239339	total: 107ms	remaining: 455ms
19:	learn: 35.8388688	total: 112ms	remaining: 447ms
20:	learn: 35.4915710	total: 117ms	remaining: 439ms
21:	learn: 34.9483623	total: 121ms	remaining: 430ms
22:	learn: 34.6033866	total: 126ms	remaining: 422ms
23:	learn: 34.1483341	total: 131ms	remaining: 415ms
24:	learn: 33.7626484	total: 136ms	remaining: 408ms
25:	learn: 33.4160820	total: 141ms	remaining: 402ms
26:	learn: 33.0421483	total: 146ms	remaining: 395ms
27:	learn: 32.6573469	total: 151ms	remaining: 388ms
28:	learn: 32.2672417	total: 156ms	remaining: 383ms
29:	learn: 31.8257441	total: 162ms	remaining: 377ms
30:	learn: 31.3394923	total: 167ms	remaining: 371ms
31:	learn: 30.9472894	total: 172ms	remaining: 365ms
32:	learn: 30.6961423	total: 177ms	remaining: 359ms
33:	learn: 30.4670615	total: 182ms	remaining: 352ms
34:	learn: 30.1495001	total: 187ms	remaining: 347ms
35:	learn: 29.8071763	total: 192ms	remaining: 341ms
36:	learn: 29.5255984	total: 196ms	remaining: 334ms
37:	learn: 29.2236758	total: 202ms	remaining: 329ms
38:	learn: 28.9199699	total: 206ms	remaining: 323ms
39:	learn: 28.7003989	total: 211ms	remaining: 317ms
40:	learn: 28.4681160	total: 216ms	remaining: 311ms
41:	learn: 28.2692668	total: 222ms	remaining: 306ms
42:	learn: 27.9327254	total: 227ms	remaining: 301ms
43:	learn: 27.7193597	total: 232ms	remaining: 295ms
44:	learn: 27.4061006	total: 237ms	remaining: 289ms
45:	learn: 27.1840910	total: 242ms	remaining: 284ms
46:	learn: 26.8943816	total: 247ms	remaining: 278ms
47:	learn: 26.6576617	total: 251ms	remaining: 272ms
48:	learn: 26.3230094	total: 258ms	remaining: 268ms
49:	learn: 26.0488483	total: 267ms	remaining: 267ms
50:	learn: 25.7795537	total: 280ms	remaining: 269ms
51:	learn: 25.6103781	total: 288ms	remaining: 266ms
52:	learn: 25.4107383	total: 294ms	remaining: 261ms
53:	learn: 25.1757211	total: 299ms	remaining: 255ms
54:	learn: 24.8949842	total: 305ms	remaining: 250ms
55:	learn: 24.7028694	total: 311ms	remaining: 244ms
56:	learn: 24.4033555	total: 316ms	remaining: 239ms
57:	learn: 24.2109268	total: 322ms	remaining: 233ms
58:	learn: 24.0697623	total: 328ms	remaining: 228ms
59:	learn: 23.8291672	total: 333ms	remaining: 222ms
60:	learn: 23.5972471	total: 339ms	remaining: 216ms
61:	learn: 23.4241182	total: 344ms	remaining: 211ms
62:	learn: 23.2617022	total: 350ms	remaining: 206ms
63:	learn: 23.0329448	total: 356ms	remaining: 200ms
64:	learn: 22.9108081	total: 361ms	remaining: 194ms
65:	learn: 22.8001962	total: 366ms	remaining: 188ms
66:	learn: 22.6861907	total: 371ms	remaining: 183ms
67:	learn: 22.5152895	total: 376ms	remaining: 177ms
68:	learn: 22.3734214	total: 380ms	remaining: 171ms
69:	learn: 22.1840754	total: 385ms	remaining: 165ms
70:	learn: 22.0732908	total: 389ms	remaining: 159ms
71:	learn: 21.8880456	total: 394ms	remaining: 153ms
72:	learn: 21.7838784	total: 399ms	remaining: 148ms
73:	learn: 21.5532885	total: 404ms	remaining: 142ms
74:	learn: 21.3998735	total: 408ms	remaining: 136ms
75:	learn: 21.2699824	total: 413ms	remaining: 130ms
76:	learn: 21.1077652	total: 418ms	remaining: 125ms
77:	learn: 20.9759102	total: 423ms	remaining: 119ms
78:	learn: 20.7531342	total: 428ms	remaining: 114ms
79:	learn: 20.6729631	total: 432ms	remaining: 108ms
80:	learn: 20.4903474	total: 437ms	remaining: 103ms
81:	learn: 20.3708622	total: 442ms	remaining: 97.1ms
82:	learn: 20.2627857	total: 448ms	remaining: 91.7ms
83:	learn: 20.1335464	total: 453ms	remaining: 86.2ms
84:	learn: 20.0100864	total: 458ms	remaining: 80.8ms
85:	learn: 19.9374357	total: 463ms	remaining: 75.3ms
86:	learn: 19.8383097	total: 469ms	remaining: 70.1ms
87:	learn: 19.7804443	total: 479ms	remaining: 65.3ms
88:	learn: 19.7225631	total: 487ms	remaining: 60.2ms
89:	learn: 19.5851849	total: 493ms	remaining: 54.8ms
90:	learn: 19.5115923	total: 500ms	remaining: 49.4ms
91:	learn: 19.3986485	total: 505ms	remaining: 43.9ms
92:	learn: 19.2465728	total: 510ms	remaining: 38.4ms
93:	learn: 19.2033796	total: 514ms	remaining: 32.8ms
94:	learn: 19.1234096	total: 519ms	remaining: 27.3ms
95:	learn: 19.0080161	total: 524ms	remaining: 21.8ms
96:	learn: 18.9048698	total: 529ms	remaining: 16.3ms
97:	learn: 18.7901500	total: 533ms	remaining: 10.9ms
98:	learn: 18.6759882	total: 538ms	remaining: 5.43ms
99:	learn: 18.6254590	total: 543ms	remaining: 0us
0:	learn: 46.0359105	total: 5.32ms	remaining: 527ms
1:	learn: 45.4503059	total: 10.2ms	remaining: 501ms
2:	learn: 44.6478680	total: 15.1ms	remaining: 489ms
3:	learn: 43.7932387	total: 20.1ms	remaining: 482ms
4:	learn: 43.2236036	total: 24.8ms	remaining: 472ms
5:	learn: 42.4339181	total: 29.5ms	remaining: 463ms
6:	learn: 41.8906461	total: 34ms	remaining: 452ms
7:	learn: 41.2248707	total: 38.8ms	remaining: 446ms
8:	learn: 40.5934570	total: 43.5ms	remaining: 440ms
9:	learn: 39.9204661	total: 48.1ms	remaining: 433ms
10:	learn: 39.3972458	total: 53.5ms	remaining: 433ms
11:	learn: 38.9220493	total: 58.3ms	remaining: 427ms
12:	learn: 38.2358406	total: 62.9ms	remaining: 421ms
13:	learn: 37.7089336	total: 68.2ms	remaining: 419ms
14:	learn: 37.3714255	total: 73.6ms	remaining: 417ms
15:	learn: 36.8098537	total: 78.5ms	remaining: 412ms
16:	learn: 36.2818695	total: 83.3ms	remaining: 407ms
17:	learn: 35.8807734	total: 88.3ms	remaining: 402ms
18:	learn: 35.3850720	total: 94.6ms	remaining: 403ms
19:	learn: 35.0622365	total: 107ms	remaining: 428ms
20:	learn: 34.7088655	total: 119ms	remaining: 448ms
21:	learn: 34.2869861	total: 128ms	remaining: 455ms
22:	learn: 33.9798756	total: 134ms	remaining: 449ms
23:	learn: 33.6933850	total: 140ms	remaining: 442ms
24:	learn: 33.3542725	total: 146ms	remaining: 437ms
25:	learn: 33.1531104	total: 151ms	remaining: 430ms
26:	learn: 32.7581499	total: 157ms	remaining: 424ms
27:	learn: 32.4953289	total: 162ms	remaining: 417ms
28:	learn: 32.1636511	total: 168ms	remaining: 411ms
29:	learn: 31.7179908	total: 173ms	remaining: 404ms
30:	learn: 31.2828971	total: 178ms	remaining: 396ms
31:	learn: 30.8954632	total: 183ms	remaining: 389ms
32:	learn: 30.6156466	total: 189ms	remaining: 383ms
33:	learn: 30.4325331	total: 195ms	remaining: 379ms
34:	learn: 30.1680270	total: 201ms	remaining: 373ms
35:	learn: 29.8372162	total: 206ms	remaining: 366ms
36:	learn: 29.5018241	total: 211ms	remaining: 359ms
37:	learn: 29.2660228	total: 216ms	remaining: 352ms
38:	learn: 28.9172883	total: 221ms	remaining: 345ms
39:	learn: 28.7004790	total: 225ms	remaining: 338ms
40:	learn: 28.5188438	total: 231ms	remaining: 332ms
41:	learn: 28.3064887	total: 236ms	remaining: 326ms
42:	learn: 27.9584462	total: 241ms	remaining: 319ms
43:	learn: 27.6654603	total: 246ms	remaining: 313ms
44:	learn: 27.3698139	total: 251ms	remaining: 306ms
45:	learn: 27.1825629	total: 255ms	remaining: 300ms
46:	learn: 26.9938719	total: 260ms	remaining: 294ms
47:	learn: 26.7385850	total: 265ms	remaining: 287ms
48:	learn: 26.5055251	total: 270ms	remaining: 281ms
49:	learn: 26.3264840	total: 275ms	remaining: 275ms
50:	learn: 26.1314307	total: 280ms	remaining: 269ms
51:	learn: 25.9514770	total: 285ms	remaining: 264ms
52:	learn: 25.7272663	total: 291ms	remaining: 258ms
53:	learn: 25.4554234	total: 296ms	remaining: 252ms
54:	learn: 25.2133674	total: 301ms	remaining: 246ms
55:	learn: 24.9612149	total: 310ms	remaining: 244ms
56:	learn: 24.6788780	total: 319ms	remaining: 241ms
57:	learn: 24.4504703	total: 326ms	remaining: 236ms
58:	learn: 24.3261542	total: 332ms	remaining: 230ms
59:	learn: 24.1217621	total: 338ms	remaining: 225ms
60:	learn: 23.9495725	total: 343ms	remaining: 219ms
61:	learn: 23.7848565	total: 347ms	remaining: 213ms
62:	learn: 23.6627081	total: 352ms	remaining: 207ms
63:	learn: 23.4390407	total: 357ms	remaining: 201ms
64:	learn: 23.2556312	total: 361ms	remaining: 195ms
65:	learn: 23.1796337	total: 366ms	remaining: 189ms
66:	learn: 23.0431987	total: 372ms	remaining: 183ms
67:	learn: 22.9300366	total: 377ms	remaining: 177ms
68:	learn: 22.8321895	total: 381ms	remaining: 171ms
69:	learn: 22.7825840	total: 387ms	remaining: 166ms
70:	learn: 22.6907764	total: 391ms	remaining: 160ms
71:	learn: 22.5080460	total: 396ms	remaining: 154ms
72:	learn: 22.4053282	total: 402ms	remaining: 149ms
73:	learn: 22.2698085	total: 407ms	remaining: 143ms
74:	learn: 22.0951825	total: 412ms	remaining: 137ms
75:	learn: 21.9933994	total: 417ms	remaining: 132ms
76:	learn: 21.8043413	total: 422ms	remaining: 126ms
77:	learn: 21.7259032	total: 427ms	remaining: 120ms
78:	learn: 21.5625358	total: 432ms	remaining: 115ms
79:	learn: 21.4316837	total: 436ms	remaining: 109ms
80:	learn: 21.2270985	total: 441ms	remaining: 104ms
81:	learn: 21.1248573	total: 446ms	remaining: 97.9ms
82:	learn: 21.0879584	total: 451ms	remaining: 92.3ms
83:	learn: 20.9810177	total: 456ms	remaining: 86.8ms
84:	learn: 20.8986744	total: 460ms	remaining: 81.2ms
85:	learn: 20.8427245	total: 465ms	remaining: 75.7ms
86:	learn: 20.7158681	total: 470ms	remaining: 70.2ms
87:	learn: 20.6055502	total: 474ms	remaining: 64.7ms
88:	learn: 20.5302059	total: 479ms	remaining: 59.3ms
89:	learn: 20.3936827	total: 486ms	remaining: 54ms
90:	learn: 20.2756993	total: 494ms	remaining: 48.9ms
91:	learn: 20.1882826	total: 501ms	remaining: 43.6ms
92:	learn: 20.0346875	total: 508ms	remaining: 38.2ms
93:	learn: 19.9798652	total: 514ms	remaining: 32.8ms
94:	learn: 19.9020384	total: 520ms	remaining: 27.4ms
95:	learn: 19.8463755	total: 526ms	remaining: 21.9ms
96:	learn: 19.7426458	total: 533ms	remaining: 16.5ms
97:	learn: 19.6728655	total: 539ms	remaining: 11ms
98:	learn: 19.6355104	total: 545ms	remaining: 5.5ms
99:	learn: 19.6074086	total: 550ms	remaining: 0us
0:	learn: 46.7817285	total: 6.61ms	remaining: 654ms
1:	learn: 45.9551634	total: 13.1ms	remaining: 644ms
2:	learn: 45.0274369	total: 18ms	remaining: 582ms
3:	learn: 44.5000950	total: 22.7ms	remaining: 545ms
4:	learn: 43.8963632	total: 27.6ms	remaining: 525ms
5:	learn: 43.2314124	total: 32.4ms	remaining: 508ms
6:	learn: 42.5780140	total: 37.1ms	remaining: 493ms
7:	learn: 41.9033077	total: 42ms	remaining: 483ms
8:	learn: 41.3161907	total: 47.3ms	remaining: 478ms
9:	learn: 40.7747000	total: 52.7ms	remaining: 474ms
10:	learn: 40.2728122	total: 57.6ms	remaining: 466ms
11:	learn: 39.7786608	total: 62.8ms	remaining: 461ms
12:	learn: 39.0812090	total: 67.8ms	remaining: 454ms
13:	learn: 38.6205762	total: 72.7ms	remaining: 447ms
14:	learn: 38.2894236	total: 77.7ms	remaining: 440ms
15:	learn: 37.6906364	total: 82.4ms	remaining: 433ms
16:	learn: 37.3014849	total: 87.3ms	remaining: 426ms
17:	learn: 36.9268494	total: 92.4ms	remaining: 421ms
18:	learn: 36.6348717	total: 98.1ms	remaining: 418ms
19:	learn: 36.1567831	total: 103ms	remaining: 413ms
20:	learn: 35.8080754	total: 108ms	remaining: 407ms
21:	learn: 35.4288913	total: 113ms	remaining: 402ms
22:	learn: 35.0910168	total: 122ms	remaining: 408ms
23:	learn: 34.7483277	total: 130ms	remaining: 412ms
24:	learn: 34.5077203	total: 138ms	remaining: 413ms
25:	learn: 34.1830247	total: 143ms	remaining: 407ms
26:	learn: 33.7943837	total: 149ms	remaining: 404ms
27:	learn: 33.3736582	total: 154ms	remaining: 397ms
28:	learn: 32.9133996	total: 159ms	remaining: 390ms
29:	learn: 32.4361653	total: 164ms	remaining: 383ms
30:	learn: 31.9630085	total: 169ms	remaining: 377ms
31:	learn: 31.5994894	total: 174ms	remaining: 370ms
32:	learn: 31.3120059	total: 179ms	remaining: 363ms
33:	learn: 31.0991187	total: 184ms	remaining: 356ms
34:	learn: 30.8055118	total: 188ms	remaining: 350ms
35:	learn: 30.5197359	total: 193ms	remaining: 343ms
36:	learn: 30.1975315	total: 198ms	remaining: 337ms
37:	learn: 29.9797615	total: 203ms	remaining: 331ms
38:	learn: 29.6874864	total: 208ms	remaining: 325ms
39:	learn: 29.4139907	total: 212ms	remaining: 318ms
40:	learn: 29.0472151	total: 217ms	remaining: 312ms
41:	learn: 28.8356285	total: 222ms	remaining: 306ms
42:	learn: 28.5099349	total: 227ms	remaining: 301ms
43:	learn: 28.2009716	total: 231ms	remaining: 294ms
44:	learn: 27.8947534	total: 236ms	remaining: 289ms
45:	learn: 27.6149698	total: 241ms	remaining: 283ms
46:	learn: 27.4780860	total: 246ms	remaining: 277ms
47:	learn: 27.2859119	total: 250ms	remaining: 271ms
48:	learn: 27.0572191	total: 255ms	remaining: 266ms
49:	learn: 26.8916263	total: 260ms	remaining: 260ms
50:	learn: 26.6791967	total: 265ms	remaining: 255ms
51:	learn: 26.4917307	total: 270ms	remaining: 249ms
52:	learn: 26.2957036	total: 275ms	remaining: 244ms
53:	learn: 26.1116543	total: 279ms	remaining: 238ms
54:	learn: 25.8593319	total: 284ms	remaining: 232ms
55:	learn: 25.6957296	total: 289ms	remaining: 227ms
56:	learn: 25.5065213	total: 294ms	remaining: 222ms
57:	learn: 25.3525337	total: 299ms	remaining: 217ms
58:	learn: 25.2197494	total: 304ms	remaining: 211ms
59:	learn: 25.0583799	total: 309ms	remaining: 206ms
60:	learn: 24.8432659	total: 314ms	remaining: 201ms
61:	learn: 24.6585337	total: 324ms	remaining: 199ms
62:	learn: 24.5382571	total: 333ms	remaining: 196ms
63:	learn: 24.3596337	total: 342ms	remaining: 192ms
64:	learn: 24.2009033	total: 350ms	remaining: 188ms
65:	learn: 24.0964080	total: 356ms	remaining: 183ms
66:	learn: 23.9765920	total: 362ms	remaining: 178ms
67:	learn: 23.8638384	total: 367ms	remaining: 173ms
68:	learn: 23.7381861	total: 374ms	remaining: 168ms
69:	learn: 23.5620129	total: 379ms	remaining: 163ms
70:	learn: 23.4494830	total: 385ms	remaining: 157ms
71:	learn: 23.3095806	total: 391ms	remaining: 152ms
72:	learn: 23.1441767	total: 397ms	remaining: 147ms
73:	learn: 22.9983446	total: 402ms	remaining: 141ms
74:	learn: 22.8464764	total: 408ms	remaining: 136ms
75:	learn: 22.7606423	total: 414ms	remaining: 131ms
76:	learn: 22.6095905	total: 419ms	remaining: 125ms
77:	learn: 22.4430506	total: 424ms	remaining: 120ms
78:	learn: 22.2925872	total: 429ms	remaining: 114ms
79:	learn: 22.1806286	total: 434ms	remaining: 108ms
80:	learn: 22.0070525	total: 439ms	remaining: 103ms
81:	learn: 21.9114201	total: 443ms	remaining: 97.3ms
82:	learn: 21.7742884	total: 448ms	remaining: 91.8ms
83:	learn: 21.6372857	total: 453ms	remaining: 86.3ms
84:	learn: 21.5380397	total: 458ms	remaining: 80.8ms
85:	learn: 21.4730146	total: 463ms	remaining: 75.3ms
86:	learn: 21.3236516	total: 467ms	remaining: 69.8ms
87:	learn: 21.2512101	total: 472ms	remaining: 64.4ms
88:	learn: 21.2192883	total: 478ms	remaining: 59ms
89:	learn: 21.0457926	total: 483ms	remaining: 53.7ms
90:	learn: 20.9986980	total: 489ms	remaining: 48.4ms
91:	learn: 20.9040032	total: 494ms	remaining: 43ms
92:	learn: 20.7178547	total: 500ms	remaining: 37.7ms
93:	learn: 20.6535030	total: 506ms	remaining: 32.3ms
94:	learn: 20.5641982	total: 512ms	remaining: 26.9ms
95:	learn: 20.5355409	total: 517ms	remaining: 21.5ms
96:	learn: 20.4496493	total: 522ms	remaining: 16.1ms
97:	learn: 20.3579862	total: 527ms	remaining: 10.8ms
98:	learn: 20.2442476	total: 537ms	remaining: 5.42ms
99:	learn: 20.1075813	total: 545ms	remaining: 0us
0:	learn: 27.6165091	total: 5.63ms	remaining: 558ms
1:	learn: 27.2156009	total: 10.3ms	remaining: 506ms
2:	learn: 26.8744169	total: 15ms	remaining: 486ms
3:	learn: 26.5530473	total: 19.7ms	remaining: 472ms
4:	learn: 26.1200739	total: 24.5ms	remaining: 465ms
5:	learn: 25.7559063	total: 29.3ms	remaining: 458ms
6:	learn: 25.3817459	total: 33.9ms	remaining: 450ms
7:	learn: 25.0780231	total: 38.8ms	remaining: 446ms
8:	learn: 24.7908836	total: 43.7ms	remaining: 442ms
9:	learn: 24.5023726	total: 48.7ms	remaining: 438ms
10:	learn: 24.2430447	total: 53.2ms	remaining: 431ms
11:	learn: 24.0150987	total: 58.4ms	remaining: 428ms
12:	learn: 23.6832732	total: 63.2ms	remaining: 423ms
13:	learn: 23.4512462	total: 67.8ms	remaining: 416ms
14:	learn: 23.2300808	total: 72.4ms	remaining: 410ms
15:	learn: 23.0198192	total: 77.3ms	remaining: 406ms
16:	learn: 22.7757356	total: 82ms	remaining: 400ms
17:	learn: 22.4962727	total: 86.7ms	remaining: 395ms
18:	learn: 22.2131794	total: 91.6ms	remaining: 390ms
19:	learn: 21.9844087	total: 96.5ms	remaining: 386ms
20:	learn: 21.6467820	total: 101ms	remaining: 380ms
21:	learn: 21.4458045	total: 106ms	remaining: 375ms
22:	learn: 21.2706627	total: 111ms	remaining: 372ms
23:	learn: 21.0770166	total: 116ms	remaining: 367ms
24:	learn: 20.8871491	total: 121ms	remaining: 362ms
25:	learn: 20.7151270	total: 126ms	remaining: 357ms
26:	learn: 20.5585218	total: 130ms	remaining: 352ms
27:	learn: 20.4091128	total: 135ms	remaining: 348ms
28:	learn: 20.2343121	total: 140ms	remaining: 343ms
29:	learn: 20.0685862	total: 145ms	remaining: 339ms
30:	learn: 19.8339661	total: 150ms	remaining: 335ms
31:	learn: 19.6811138	total: 155ms	remaining: 330ms
32:	learn: 19.4881999	total: 161ms	remaining: 327ms
33:	learn: 19.3473429	total: 171ms	remaining: 331ms
34:	learn: 19.1087185	total: 182ms	remaining: 338ms
35:	learn: 18.9817724	total: 188ms	remaining: 335ms
36:	learn: 18.8465124	total: 196ms	remaining: 334ms
37:	learn: 18.6998182	total: 202ms	remaining: 329ms
38:	learn: 18.5534881	total: 207ms	remaining: 324ms
39:	learn: 18.4221213	total: 212ms	remaining: 318ms
40:	learn: 18.3262428	total: 218ms	remaining: 314ms
41:	learn: 18.2018519	total: 224ms	remaining: 309ms
42:	learn: 18.0704402	total: 230ms	remaining: 305ms
43:	learn: 17.9674737	total: 236ms	remaining: 301ms
44:	learn: 17.8092746	total: 242ms	remaining: 296ms
45:	learn: 17.7036671	total: 248ms	remaining: 291ms
46:	learn: 17.5636023	total: 254ms	remaining: 286ms
47:	learn: 17.3922671	total: 261ms	remaining: 282ms
48:	learn: 17.2777727	total: 266ms	remaining: 276ms
49:	learn: 17.1901866	total: 271ms	remaining: 271ms
50:	learn: 17.0799264	total: 276ms	remaining: 265ms
51:	learn: 17.0022808	total: 280ms	remaining: 259ms
52:	learn: 16.9193737	total: 285ms	remaining: 253ms
53:	learn: 16.8349324	total: 290ms	remaining: 247ms
54:	learn: 16.7122802	total: 295ms	remaining: 241ms
55:	learn: 16.5736462	total: 299ms	remaining: 235ms
56:	learn: 16.4576798	total: 304ms	remaining: 230ms
57:	learn: 16.3336075	total: 309ms	remaining: 224ms
58:	learn: 16.2578113	total: 313ms	remaining: 218ms
59:	learn: 16.1586938	total: 318ms	remaining: 212ms
60:	learn: 16.0827831	total: 323ms	remaining: 207ms
61:	learn: 16.0030150	total: 328ms	remaining: 201ms
62:	learn: 15.8741662	total: 333ms	remaining: 196ms
63:	learn: 15.7533897	total: 348ms	remaining: 196ms
64:	learn: 15.6743804	total: 353ms	remaining: 190ms
65:	learn: 15.6291324	total: 358ms	remaining: 185ms
66:	learn: 15.5363523	total: 363ms	remaining: 179ms
67:	learn: 15.4675550	total: 368ms	remaining: 173ms
68:	learn: 15.3959873	total: 374ms	remaining: 168ms
69:	learn: 15.3222045	total: 384ms	remaining: 164ms
70:	learn: 15.2343883	total: 392ms	remaining: 160ms
71:	learn: 15.1891070	total: 399ms	remaining: 155ms
72:	learn: 15.1320798	total: 404ms	remaining: 149ms
73:	learn: 15.0590468	total: 410ms	remaining: 144ms
74:	learn: 14.9682726	total: 415ms	remaining: 138ms
75:	learn: 14.8868528	total: 420ms	remaining: 133ms
76:	learn: 14.8046328	total: 425ms	remaining: 127ms
77:	learn: 14.7253152	total: 430ms	remaining: 121ms
78:	learn: 14.6438207	total: 435ms	remaining: 116ms
79:	learn: 14.5350651	total: 440ms	remaining: 110ms
80:	learn: 14.4301800	total: 445ms	remaining: 104ms
81:	learn: 14.3716251	total: 450ms	remaining: 98.8ms
82:	learn: 14.3127586	total: 455ms	remaining: 93.2ms
83:	learn: 14.2685086	total: 461ms	remaining: 87.7ms
84:	learn: 14.1936111	total: 466ms	remaining: 82.2ms
85:	learn: 14.1488261	total: 471ms	remaining: 76.6ms
86:	learn: 14.0654602	total: 475ms	remaining: 71ms
87:	learn: 14.0026195	total: 481ms	remaining: 65.5ms
88:	learn: 13.9498697	total: 485ms	remaining: 60ms
89:	learn: 13.9002477	total: 490ms	remaining: 54.4ms
90:	learn: 13.8429017	total: 495ms	remaining: 48.9ms
91:	learn: 13.7892130	total: 499ms	remaining: 43.4ms
92:	learn: 13.7122418	total: 504ms	remaining: 37.9ms
93:	learn: 13.6752324	total: 509ms	remaining: 32.5ms
94:	learn: 13.6186680	total: 514ms	remaining: 27ms
95:	learn: 13.5578384	total: 519ms	remaining: 21.6ms
96:	learn: 13.5028120	total: 523ms	remaining: 16.2ms
97:	learn: 13.4306895	total: 528ms	remaining: 10.8ms
98:	learn: 13.3955813	total: 533ms	remaining: 5.38ms
99:	learn: 13.3380095	total: 538ms	remaining: 0us
0:	learn: 42.9675374	total: 9.71ms	remaining: 962ms
1:	learn: 42.2542078	total: 19.3ms	remaining: 944ms
2:	learn: 41.5532166	total: 27ms	remaining: 873ms
3:	learn: 40.7812113	total: 35.2ms	remaining: 844ms
4:	learn: 39.8819601	total: 41ms	remaining: 780ms
5:	learn: 39.0997229	total: 43.4ms	remaining: 681ms
6:	learn: 38.2185623	total: 49ms	remaining: 651ms
7:	learn: 37.5465645	total: 54.7ms	remaining: 629ms
8:	learn: 36.8449555	total: 60.8ms	remaining: 615ms
9:	learn: 36.0912815	total: 66.4ms	remaining: 597ms
10:	learn: 35.5776470	total: 72.4ms	remaining: 586ms
11:	learn: 34.7845329	total: 77.9ms	remaining: 571ms
12:	learn: 34.1574031	total: 83.3ms	remaining: 558ms
13:	learn: 33.4950652	total: 88.9ms	remaining: 546ms
14:	learn: 32.9343881	total: 94.8ms	remaining: 537ms
15:	learn: 32.4356238	total: 101ms	remaining: 529ms
16:	learn: 31.8370592	total: 106ms	remaining: 516ms
17:	learn: 31.2122644	total: 110ms	remaining: 502ms
18:	learn: 30.7195190	total: 115ms	remaining: 490ms
19:	learn: 30.1548478	total: 120ms	remaining: 479ms
20:	learn: 29.6521001	total: 123ms	remaining: 461ms
21:	learn: 29.1746988	total: 127ms	remaining: 450ms
22:	learn: 28.6492690	total: 132ms	remaining: 441ms
23:	learn: 28.1958339	total: 137ms	remaining: 432ms
24:	learn: 27.9126674	total: 141ms	remaining: 424ms
25:	learn: 27.5059508	total: 146ms	remaining: 416ms
26:	learn: 27.0869176	total: 151ms	remaining: 408ms
27:	learn: 26.6545277	total: 156ms	remaining: 401ms
28:	learn: 26.2388575	total: 161ms	remaining: 393ms
29:	learn: 25.8957708	total: 166ms	remaining: 386ms
30:	learn: 25.5045901	total: 171ms	remaining: 380ms
31:	learn: 25.2559530	total: 176ms	remaining: 373ms
32:	learn: 24.9012566	total: 180ms	remaining: 366ms
33:	learn: 24.5601820	total: 185ms	remaining: 359ms
34:	learn: 24.2407285	total: 189ms	remaining: 352ms
35:	learn: 23.9481769	total: 195ms	remaining: 346ms
36:	learn: 23.6746994	total: 199ms	remaining: 339ms
37:	learn: 23.4470352	total: 204ms	remaining: 333ms
38:	learn: 23.1678305	total: 210ms	remaining: 328ms
39:	learn: 22.9660692	total: 214ms	remaining: 321ms
40:	learn: 22.7102548	total: 219ms	remaining: 315ms
41:	learn: 22.5152447	total: 225ms	remaining: 310ms
42:	learn: 22.2967100	total: 230ms	remaining: 305ms
43:	learn: 22.0869517	total: 236ms	remaining: 300ms
44:	learn: 21.8556497	total: 241ms	remaining: 295ms
45:	learn: 21.7036804	total: 247ms	remaining: 290ms
46:	learn: 21.4792011	total: 255ms	remaining: 288ms
47:	learn: 21.2830384	total: 264ms	remaining: 286ms
48:	learn: 21.0771837	total: 273ms	remaining: 284ms
49:	learn: 20.8824468	total: 278ms	remaining: 278ms
50:	learn: 20.7250875	total: 285ms	remaining: 273ms
51:	learn: 20.5564423	total: 290ms	remaining: 267ms
52:	learn: 20.4067403	total: 295ms	remaining: 262ms
53:	learn: 20.2674808	total: 300ms	remaining: 256ms
54:	learn: 20.1394249	total: 306ms	remaining: 250ms
55:	learn: 19.9748016	total: 311ms	remaining: 244ms
56:	learn: 19.8159522	total: 316ms	remaining: 239ms
57:	learn: 19.6811073	total: 321ms	remaining: 233ms
58:	learn: 19.5083232	total: 327ms	remaining: 227ms
59:	learn: 19.3949390	total: 329ms	remaining: 219ms
60:	learn: 19.2485728	total: 334ms	remaining: 213ms
61:	learn: 19.1255523	total: 338ms	remaining: 207ms
62:	learn: 18.9423320	total: 343ms	remaining: 202ms
63:	learn: 18.7794545	total: 348ms	remaining: 196ms
64:	learn: 18.6339033	total: 353ms	remaining: 190ms
65:	learn: 18.5188724	total: 357ms	remaining: 184ms
66:	learn: 18.3398412	total: 362ms	remaining: 178ms
67:	learn: 18.2873427	total: 367ms	remaining: 173ms
68:	learn: 18.1287092	total: 372ms	remaining: 167ms
69:	learn: 18.0163474	total: 376ms	remaining: 161ms
70:	learn: 17.9428395	total: 381ms	remaining: 156ms
71:	learn: 17.7906087	total: 386ms	remaining: 150ms
72:	learn: 17.6121088	total: 391ms	remaining: 144ms
73:	learn: 17.5136572	total: 395ms	remaining: 139ms
74:	learn: 17.3837993	total: 400ms	remaining: 133ms
75:	learn: 17.3015647	total: 405ms	remaining: 128ms
76:	learn: 17.1991252	total: 410ms	remaining: 123ms
77:	learn: 17.0854777	total: 415ms	remaining: 117ms
78:	learn: 17.0308269	total: 420ms	remaining: 112ms
79:	learn: 16.9754807	total: 425ms	remaining: 106ms
80:	learn: 16.9174907	total: 429ms	remaining: 101ms
81:	learn: 16.7962603	total: 435ms	remaining: 95.4ms
82:	learn: 16.6685446	total: 440ms	remaining: 90.1ms
83:	learn: 16.5812672	total: 445ms	remaining: 84.7ms
84:	learn: 16.4896026	total: 450ms	remaining: 79.4ms
85:	learn: 16.4023414	total: 455ms	remaining: 74ms
86:	learn: 16.3093718	total: 460ms	remaining: 68.7ms
87:	learn: 16.2409040	total: 470ms	remaining: 64.1ms
88:	learn: 16.1616213	total: 480ms	remaining: 59.4ms
89:	learn: 16.0825203	total: 488ms	remaining: 54.3ms
90:	learn: 16.0204931	total: 497ms	remaining: 49.1ms
91:	learn: 15.9741267	total: 503ms	remaining: 43.7ms
92:	learn: 15.9413725	total: 508ms	remaining: 38.3ms
93:	learn: 15.8762295	total: 514ms	remaining: 32.8ms
94:	learn: 15.8165812	total: 520ms	remaining: 27.4ms
95:	learn: 15.7244343	total: 526ms	remaining: 21.9ms
96:	learn: 15.6537033	total: 532ms	remaining: 16.4ms
97:	learn: 15.6052320	total: 537ms	remaining: 11ms
98:	learn: 15.5434930	total: 542ms	remaining: 5.48ms
99:	learn: 15.4452106	total: 548ms	remaining: 0us
0:	learn: 46.5387280	total: 5.45ms	remaining: 539ms
1:	learn: 45.8605074	total: 10.3ms	remaining: 506ms
2:	learn: 45.2237152	total: 15.2ms	remaining: 493ms
3:	learn: 44.4158454	total: 20.2ms	remaining: 486ms
4:	learn: 43.7177384	total: 25.6ms	remaining: 486ms
5:	learn: 42.9896372	total: 30.6ms	remaining: 480ms
6:	learn: 42.3639431	total: 35.3ms	remaining: 469ms
7:	learn: 41.6648406	total: 40.5ms	remaining: 465ms
8:	learn: 41.0681442	total: 47.1ms	remaining: 476ms
9:	learn: 40.4478745	total: 54.9ms	remaining: 494ms
10:	learn: 40.0398470	total: 62.5ms	remaining: 506ms
11:	learn: 39.3300888	total: 69.3ms	remaining: 508ms
12:	learn: 38.9198991	total: 75.4ms	remaining: 505ms
13:	learn: 38.4022666	total: 81.4ms	remaining: 500ms
14:	learn: 37.9124629	total: 87.8ms	remaining: 498ms
15:	learn: 37.3846174	total: 93ms	remaining: 488ms
16:	learn: 36.8502348	total: 98ms	remaining: 479ms
17:	learn: 36.5079755	total: 103ms	remaining: 469ms
18:	learn: 36.1239339	total: 108ms	remaining: 461ms
19:	learn: 35.8388688	total: 113ms	remaining: 453ms
20:	learn: 35.4915710	total: 118ms	remaining: 444ms
21:	learn: 34.9483623	total: 123ms	remaining: 436ms
22:	learn: 34.6033866	total: 128ms	remaining: 428ms
23:	learn: 34.1483341	total: 133ms	remaining: 421ms
24:	learn: 33.7626484	total: 138ms	remaining: 415ms
25:	learn: 33.4160820	total: 143ms	remaining: 408ms
26:	learn: 33.0421483	total: 148ms	remaining: 401ms
27:	learn: 32.6573469	total: 153ms	remaining: 394ms
28:	learn: 32.2672417	total: 158ms	remaining: 387ms
29:	learn: 31.8257441	total: 163ms	remaining: 380ms
30:	learn: 31.3394923	total: 168ms	remaining: 374ms
31:	learn: 30.9472894	total: 173ms	remaining: 367ms
32:	learn: 30.6961423	total: 178ms	remaining: 361ms
33:	learn: 30.4670615	total: 183ms	remaining: 355ms
34:	learn: 30.1495001	total: 188ms	remaining: 349ms
35:	learn: 29.8071763	total: 193ms	remaining: 343ms
36:	learn: 29.5255984	total: 198ms	remaining: 337ms
37:	learn: 29.2236758	total: 203ms	remaining: 331ms
38:	learn: 28.9199699	total: 208ms	remaining: 325ms
39:	learn: 28.7003989	total: 213ms	remaining: 320ms
40:	learn: 28.4681160	total: 218ms	remaining: 313ms
41:	learn: 28.2692668	total: 223ms	remaining: 308ms
42:	learn: 27.9327254	total: 228ms	remaining: 302ms
43:	learn: 27.7193597	total: 233ms	remaining: 296ms
44:	learn: 27.4061006	total: 238ms	remaining: 290ms
45:	learn: 27.1840910	total: 243ms	remaining: 285ms
46:	learn: 26.8943816	total: 251ms	remaining: 283ms
47:	learn: 26.6576617	total: 259ms	remaining: 280ms
48:	learn: 26.3230094	total: 266ms	remaining: 277ms
49:	learn: 26.0488483	total: 274ms	remaining: 274ms
50:	learn: 25.7795537	total: 282ms	remaining: 271ms
51:	learn: 25.6103781	total: 288ms	remaining: 266ms
52:	learn: 25.4107383	total: 294ms	remaining: 260ms
53:	learn: 25.1757211	total: 299ms	remaining: 255ms
54:	learn: 24.8949842	total: 305ms	remaining: 249ms
55:	learn: 24.7028694	total: 310ms	remaining: 244ms
56:	learn: 24.4033555	total: 316ms	remaining: 239ms
57:	learn: 24.2109268	total: 322ms	remaining: 234ms
58:	learn: 24.0697623	total: 328ms	remaining: 228ms
59:	learn: 23.8291672	total: 333ms	remaining: 222ms
60:	learn: 23.5972471	total: 339ms	remaining: 217ms
61:	learn: 23.4241182	total: 345ms	remaining: 211ms
62:	learn: 23.2617022	total: 350ms	remaining: 206ms
63:	learn: 23.0329448	total: 356ms	remaining: 200ms
64:	learn: 22.9108081	total: 362ms	remaining: 195ms
65:	learn: 22.8001962	total: 368ms	remaining: 189ms
66:	learn: 22.6861907	total: 373ms	remaining: 183ms
67:	learn: 22.5152895	total: 377ms	remaining: 178ms
68:	learn: 22.3734214	total: 382ms	remaining: 172ms
69:	learn: 22.1840754	total: 387ms	remaining: 166ms
70:	learn: 22.0732908	total: 391ms	remaining: 160ms
71:	learn: 21.8880456	total: 396ms	remaining: 154ms
72:	learn: 21.7838784	total: 401ms	remaining: 148ms
73:	learn: 21.5532885	total: 405ms	remaining: 142ms
74:	learn: 21.3998735	total: 410ms	remaining: 137ms
75:	learn: 21.2699824	total: 415ms	remaining: 131ms
76:	learn: 21.1077652	total: 419ms	remaining: 125ms
77:	learn: 20.9759102	total: 424ms	remaining: 120ms
78:	learn: 20.7531342	total: 429ms	remaining: 114ms
79:	learn: 20.6729631	total: 434ms	remaining: 109ms
80:	learn: 20.4903474	total: 439ms	remaining: 103ms
81:	learn: 20.3708622	total: 444ms	remaining: 97.5ms
82:	learn: 20.2627857	total: 449ms	remaining: 92ms
83:	learn: 20.1335464	total: 455ms	remaining: 86.6ms
84:	learn: 20.0100864	total: 460ms	remaining: 81.2ms
85:	learn: 19.9374357	total: 465ms	remaining: 75.7ms
86:	learn: 19.8383097	total: 474ms	remaining: 70.9ms
87:	learn: 19.7804443	total: 483ms	remaining: 65.9ms
88:	learn: 19.7225631	total: 490ms	remaining: 60.6ms
89:	learn: 19.5851849	total: 496ms	remaining: 55.1ms
90:	learn: 19.5115923	total: 502ms	remaining: 49.7ms
91:	learn: 19.3986485	total: 507ms	remaining: 44.1ms
92:	learn: 19.2465728	total: 512ms	remaining: 38.5ms
93:	learn: 19.2033796	total: 517ms	remaining: 33ms
94:	learn: 19.1234096	total: 521ms	remaining: 27.4ms
95:	learn: 19.0080161	total: 526ms	remaining: 21.9ms
96:	learn: 18.9048698	total: 531ms	remaining: 16.4ms
97:	learn: 18.7901500	total: 536ms	remaining: 10.9ms
98:	learn: 18.6759882	total: 541ms	remaining: 5.46ms
99:	learn: 18.6254590	total: 546ms	remaining: 0us
0:	learn: 46.0359105	total: 5.26ms	remaining: 521ms
1:	learn: 45.4503059	total: 10.2ms	remaining: 500ms
2:	learn: 44.6478680	total: 14.9ms	remaining: 482ms
3:	learn: 43.7932387	total: 19.5ms	remaining: 469ms
4:	learn: 43.2236036	total: 24.3ms	remaining: 463ms
5:	learn: 42.4339181	total: 29.1ms	remaining: 456ms
6:	learn: 41.8906461	total: 33.8ms	remaining: 448ms
7:	learn: 41.2248707	total: 38.6ms	remaining: 443ms
8:	learn: 40.5934570	total: 43.4ms	remaining: 439ms
9:	learn: 39.9204661	total: 48.5ms	remaining: 436ms
10:	learn: 39.3972458	total: 53.9ms	remaining: 436ms
11:	learn: 38.9220493	total: 59.1ms	remaining: 433ms
12:	learn: 38.2358406	total: 64.1ms	remaining: 429ms
13:	learn: 37.7089336	total: 69ms	remaining: 424ms
14:	learn: 37.3714255	total: 74ms	remaining: 419ms
15:	learn: 36.8098537	total: 82.1ms	remaining: 431ms
16:	learn: 36.2818695	total: 93.3ms	remaining: 456ms
17:	learn: 35.8807734	total: 105ms	remaining: 477ms
18:	learn: 35.3850720	total: 114ms	remaining: 484ms
19:	learn: 35.0622365	total: 120ms	remaining: 479ms
20:	learn: 34.7088655	total: 126ms	remaining: 473ms
21:	learn: 34.2869861	total: 132ms	remaining: 466ms
22:	learn: 33.9798756	total: 137ms	remaining: 459ms
23:	learn: 33.6933850	total: 156ms	remaining: 495ms
24:	learn: 33.3542725	total: 162ms	remaining: 487ms
25:	learn: 33.1531104	total: 168ms	remaining: 479ms
26:	learn: 32.7581499	total: 173ms	remaining: 469ms
27:	learn: 32.4953289	total: 178ms	remaining: 458ms
28:	learn: 32.1636511	total: 183ms	remaining: 448ms
29:	learn: 31.7179908	total: 188ms	remaining: 438ms
30:	learn: 31.2828971	total: 193ms	remaining: 429ms
31:	learn: 30.8954632	total: 197ms	remaining: 419ms
32:	learn: 30.6156466	total: 202ms	remaining: 410ms
33:	learn: 30.4325331	total: 207ms	remaining: 402ms
34:	learn: 30.1680270	total: 212ms	remaining: 393ms
35:	learn: 29.8372162	total: 217ms	remaining: 385ms
36:	learn: 29.5018241	total: 221ms	remaining: 377ms
37:	learn: 29.2660228	total: 226ms	remaining: 369ms
38:	learn: 28.9172883	total: 231ms	remaining: 362ms
39:	learn: 28.7004790	total: 236ms	remaining: 354ms
40:	learn: 28.5188438	total: 241ms	remaining: 346ms
41:	learn: 28.3064887	total: 246ms	remaining: 339ms
42:	learn: 27.9584462	total: 251ms	remaining: 332ms
43:	learn: 27.6654603	total: 256ms	remaining: 325ms
44:	learn: 27.3698139	total: 261ms	remaining: 319ms
45:	learn: 27.1825629	total: 266ms	remaining: 313ms
46:	learn: 26.9938719	total: 271ms	remaining: 306ms
47:	learn: 26.7385850	total: 276ms	remaining: 299ms
48:	learn: 26.5055251	total: 286ms	remaining: 297ms
49:	learn: 26.3264840	total: 294ms	remaining: 294ms
50:	learn: 26.1314307	total: 301ms	remaining: 289ms
51:	learn: 25.9514770	total: 306ms	remaining: 283ms
52:	learn: 25.7272663	total: 313ms	remaining: 277ms
53:	learn: 25.4554234	total: 317ms	remaining: 270ms
54:	learn: 25.2133674	total: 323ms	remaining: 264ms
55:	learn: 24.9612149	total: 327ms	remaining: 257ms
56:	learn: 24.6788780	total: 332ms	remaining: 250ms
57:	learn: 24.4504703	total: 337ms	remaining: 244ms
58:	learn: 24.3261542	total: 341ms	remaining: 237ms
59:	learn: 24.1217621	total: 346ms	remaining: 231ms
60:	learn: 23.9495725	total: 351ms	remaining: 224ms
61:	learn: 23.7848565	total: 355ms	remaining: 218ms
62:	learn: 23.6627081	total: 360ms	remaining: 212ms
63:	learn: 23.4390407	total: 365ms	remaining: 205ms
64:	learn: 23.2556312	total: 370ms	remaining: 199ms
65:	learn: 23.1796337	total: 375ms	remaining: 193ms
66:	learn: 23.0431987	total: 380ms	remaining: 187ms
67:	learn: 22.9300366	total: 385ms	remaining: 181ms
68:	learn: 22.8321895	total: 389ms	remaining: 175ms
69:	learn: 22.7825840	total: 394ms	remaining: 169ms
70:	learn: 22.6907764	total: 398ms	remaining: 163ms
71:	learn: 22.5080460	total: 403ms	remaining: 157ms
72:	learn: 22.4053282	total: 408ms	remaining: 151ms
73:	learn: 22.2698085	total: 413ms	remaining: 145ms
74:	learn: 22.0951825	total: 418ms	remaining: 139ms
75:	learn: 21.9933994	total: 423ms	remaining: 133ms
76:	learn: 21.8043413	total: 428ms	remaining: 128ms
77:	learn: 21.7259032	total: 433ms	remaining: 122ms
78:	learn: 21.5625358	total: 438ms	remaining: 116ms
79:	learn: 21.4316837	total: 443ms	remaining: 111ms
80:	learn: 21.2270985	total: 448ms	remaining: 105ms
81:	learn: 21.1248573	total: 454ms	remaining: 99.6ms
82:	learn: 21.0879584	total: 459ms	remaining: 94ms
83:	learn: 20.9810177	total: 464ms	remaining: 88.5ms
84:	learn: 20.8986744	total: 469ms	remaining: 82.8ms
85:	learn: 20.8427245	total: 475ms	remaining: 77.3ms
86:	learn: 20.7158681	total: 483ms	remaining: 72.1ms
87:	learn: 20.6055502	total: 495ms	remaining: 67.5ms
88:	learn: 20.5302059	total: 506ms	remaining: 62.6ms
89:	learn: 20.3936827	total: 516ms	remaining: 57.3ms
90:	learn: 20.2756993	total: 523ms	remaining: 51.7ms
91:	learn: 20.1882826	total: 530ms	remaining: 46ms
92:	learn: 20.0346875	total: 536ms	remaining: 40.3ms
93:	learn: 19.9798652	total: 541ms	remaining: 34.6ms
94:	learn: 19.9020384	total: 547ms	remaining: 28.8ms
95:	learn: 19.8463755	total: 552ms	remaining: 23ms
96:	learn: 19.7426458	total: 557ms	remaining: 17.2ms
97:	learn: 19.6728655	total: 563ms	remaining: 11.5ms
98:	learn: 19.6355104	total: 569ms	remaining: 5.74ms
99:	learn: 19.6074086	total: 575ms	remaining: 0us
0:	learn: 46.7817285	total: 5.2ms	remaining: 515ms
1:	learn: 45.9551634	total: 10.1ms	remaining: 493ms
2:	learn: 45.0274369	total: 14.8ms	remaining: 477ms
3:	learn: 44.5000950	total: 19.8ms	remaining: 475ms
4:	learn: 43.8963632	total: 24.5ms	remaining: 465ms
5:	learn: 43.2314124	total: 29.5ms	remaining: 463ms
6:	learn: 42.5780140	total: 34.8ms	remaining: 462ms
7:	learn: 41.9033077	total: 39.9ms	remaining: 459ms
8:	learn: 41.3161907	total: 44.8ms	remaining: 453ms
9:	learn: 40.7747000	total: 50.1ms	remaining: 451ms
10:	learn: 40.2728122	total: 55.5ms	remaining: 449ms
11:	learn: 39.7786608	total: 66ms	remaining: 484ms
12:	learn: 39.0812090	total: 76ms	remaining: 509ms
13:	learn: 38.6205762	total: 82ms	remaining: 504ms
14:	learn: 38.2894236	total: 88.7ms	remaining: 502ms
15:	learn: 37.6906364	total: 93.2ms	remaining: 489ms
16:	learn: 37.3014849	total: 97.9ms	remaining: 478ms
17:	learn: 36.9268494	total: 103ms	remaining: 467ms
18:	learn: 36.6348717	total: 108ms	remaining: 459ms
19:	learn: 36.1567831	total: 113ms	remaining: 451ms
20:	learn: 35.8080754	total: 118ms	remaining: 443ms
21:	learn: 35.4288913	total: 123ms	remaining: 436ms
22:	learn: 35.0910168	total: 128ms	remaining: 428ms
23:	learn: 34.7483277	total: 133ms	remaining: 420ms
24:	learn: 34.5077203	total: 138ms	remaining: 413ms
25:	learn: 34.1830247	total: 143ms	remaining: 406ms
26:	learn: 33.7943837	total: 147ms	remaining: 398ms
27:	learn: 33.3736582	total: 152ms	remaining: 391ms
28:	learn: 32.9133996	total: 157ms	remaining: 384ms
29:	learn: 32.4361653	total: 161ms	remaining: 377ms
30:	learn: 31.9630085	total: 166ms	remaining: 370ms
31:	learn: 31.5994894	total: 171ms	remaining: 363ms
32:	learn: 31.3120059	total: 176ms	remaining: 357ms
33:	learn: 31.0991187	total: 181ms	remaining: 351ms
34:	learn: 30.8055118	total: 186ms	remaining: 345ms
35:	learn: 30.5197359	total: 190ms	remaining: 338ms
36:	learn: 30.1975315	total: 195ms	remaining: 332ms
37:	learn: 29.9797615	total: 200ms	remaining: 326ms
38:	learn: 29.6874864	total: 204ms	remaining: 320ms
39:	learn: 29.4139907	total: 209ms	remaining: 314ms
40:	learn: 29.0472151	total: 214ms	remaining: 308ms
41:	learn: 28.8356285	total: 219ms	remaining: 302ms
42:	learn: 28.5099349	total: 223ms	remaining: 296ms
43:	learn: 28.2009716	total: 228ms	remaining: 290ms
44:	learn: 27.8947534	total: 233ms	remaining: 285ms
45:	learn: 27.6149698	total: 238ms	remaining: 279ms
46:	learn: 27.4780860	total: 243ms	remaining: 274ms
47:	learn: 27.2859119	total: 248ms	remaining: 269ms
48:	learn: 27.0572191	total: 253ms	remaining: 263ms
49:	learn: 26.8916263	total: 261ms	remaining: 261ms
50:	learn: 26.6791967	total: 269ms	remaining: 258ms
51:	learn: 26.4917307	total: 280ms	remaining: 259ms
52:	learn: 26.2957036	total: 289ms	remaining: 256ms
53:	learn: 26.1116543	total: 294ms	remaining: 251ms
54:	learn: 25.8593319	total: 300ms	remaining: 246ms
55:	learn: 25.6957296	total: 306ms	remaining: 240ms
56:	learn: 25.5065213	total: 311ms	remaining: 235ms
57:	learn: 25.3525337	total: 317ms	remaining: 229ms
58:	learn: 25.2197494	total: 322ms	remaining: 224ms
59:	learn: 25.0583799	total: 328ms	remaining: 219ms
60:	learn: 24.8432659	total: 334ms	remaining: 213ms
61:	learn: 24.6585337	total: 338ms	remaining: 207ms
62:	learn: 24.5382571	total: 343ms	remaining: 202ms
63:	learn: 24.3596337	total: 348ms	remaining: 196ms
64:	learn: 24.2009033	total: 354ms	remaining: 191ms
65:	learn: 24.0964080	total: 360ms	remaining: 185ms
66:	learn: 23.9765920	total: 366ms	remaining: 180ms
67:	learn: 23.8638384	total: 370ms	remaining: 174ms
68:	learn: 23.7381861	total: 375ms	remaining: 168ms
69:	learn: 23.5620129	total: 380ms	remaining: 163ms
70:	learn: 23.4494830	total: 385ms	remaining: 157ms
71:	learn: 23.3095806	total: 389ms	remaining: 151ms
72:	learn: 23.1441767	total: 394ms	remaining: 146ms
73:	learn: 22.9983446	total: 399ms	remaining: 140ms
74:	learn: 22.8464764	total: 404ms	remaining: 135ms
75:	learn: 22.7606423	total: 409ms	remaining: 129ms
76:	learn: 22.6095905	total: 414ms	remaining: 124ms
77:	learn: 22.4430506	total: 419ms	remaining: 118ms
78:	learn: 22.2925872	total: 424ms	remaining: 113ms
79:	learn: 22.1806286	total: 429ms	remaining: 107ms
80:	learn: 22.0070525	total: 434ms	remaining: 102ms
81:	learn: 21.9114201	total: 439ms	remaining: 96.4ms
82:	learn: 21.7742884	total: 444ms	remaining: 91ms
83:	learn: 21.6372857	total: 450ms	remaining: 85.7ms
84:	learn: 21.5380397	total: 456ms	remaining: 80.5ms
85:	learn: 21.4730146	total: 467ms	remaining: 76ms
86:	learn: 21.3236516	total: 476ms	remaining: 71.1ms
87:	learn: 21.2512101	total: 481ms	remaining: 65.6ms
88:	learn: 21.2192883	total: 488ms	remaining: 60.3ms
89:	learn: 21.0457926	total: 493ms	remaining: 54.8ms
90:	learn: 20.9986980	total: 498ms	remaining: 49.2ms
91:	learn: 20.9040032	total: 502ms	remaining: 43.7ms
92:	learn: 20.7178547	total: 507ms	remaining: 38.2ms
93:	learn: 20.6535030	total: 512ms	remaining: 32.7ms
94:	learn: 20.5641982	total: 517ms	remaining: 27.2ms
95:	learn: 20.5355409	total: 522ms	remaining: 21.7ms
96:	learn: 20.4496493	total: 526ms	remaining: 16.3ms
97:	learn: 20.3579862	total: 531ms	remaining: 10.8ms
98:	learn: 20.2442476	total: 536ms	remaining: 5.41ms
99:	learn: 20.1075813	total: 540ms	remaining: 0us
0:	learn: 27.6506730	total: 4.81ms	remaining: 476ms
1:	learn: 27.1638793	total: 9.08ms	remaining: 445ms
2:	learn: 26.8000665	total: 13.5ms	remaining: 437ms
3:	learn: 26.4256132	total: 18.2ms	remaining: 436ms
4:	learn: 26.0088351	total: 22.5ms	remaining: 428ms
5:	learn: 25.7558298	total: 26.9ms	remaining: 422ms
6:	learn: 25.3380711	total: 31.2ms	remaining: 415ms
7:	learn: 25.0571611	total: 35.6ms	remaining: 409ms
8:	learn: 24.6790148	total: 40.1ms	remaining: 405ms
9:	learn: 24.3600941	total: 44.9ms	remaining: 404ms
10:	learn: 24.1105667	total: 49.4ms	remaining: 400ms
11:	learn: 23.7736542	total: 53.8ms	remaining: 394ms
12:	learn: 23.5824429	total: 58.5ms	remaining: 391ms
13:	learn: 23.2658303	total: 64ms	remaining: 393ms
14:	learn: 23.0061886	total: 70.5ms	remaining: 399ms
15:	learn: 22.8060389	total: 77.4ms	remaining: 407ms
16:	learn: 22.5899735	total: 84.3ms	remaining: 412ms
17:	learn: 22.3625048	total: 89.7ms	remaining: 409ms
18:	learn: 22.0706477	total: 95ms	remaining: 405ms
19:	learn: 21.8739394	total: 101ms	remaining: 406ms
20:	learn: 21.6143650	total: 107ms	remaining: 403ms
21:	learn: 21.4571623	total: 112ms	remaining: 398ms
22:	learn: 21.2395769	total: 117ms	remaining: 393ms
23:	learn: 20.9801795	total: 123ms	remaining: 390ms
24:	learn: 20.8036808	total: 129ms	remaining: 387ms
25:	learn: 20.6387539	total: 134ms	remaining: 382ms
26:	learn: 20.4401427	total: 139ms	remaining: 376ms
27:	learn: 20.2879575	total: 144ms	remaining: 371ms
28:	learn: 20.0538664	total: 150ms	remaining: 367ms
29:	learn: 19.8363102	total: 155ms	remaining: 362ms
30:	learn: 19.7015446	total: 160ms	remaining: 356ms
31:	learn: 19.5483114	total: 165ms	remaining: 351ms
32:	learn: 19.4163053	total: 170ms	remaining: 345ms
33:	learn: 19.2880625	total: 175ms	remaining: 340ms
34:	learn: 19.1303389	total: 181ms	remaining: 335ms
35:	learn: 18.9237448	total: 186ms	remaining: 331ms
36:	learn: 18.8142925	total: 191ms	remaining: 324ms
37:	learn: 18.6994696	total: 195ms	remaining: 318ms
38:	learn: 18.5629211	total: 200ms	remaining: 312ms
39:	learn: 18.4600917	total: 204ms	remaining: 306ms
40:	learn: 18.3567139	total: 208ms	remaining: 300ms
41:	learn: 18.2120527	total: 212ms	remaining: 293ms
42:	learn: 18.0688062	total: 217ms	remaining: 287ms
43:	learn: 17.9250181	total: 221ms	remaining: 281ms
44:	learn: 17.8399138	total: 225ms	remaining: 276ms
45:	learn: 17.6720713	total: 230ms	remaining: 270ms
46:	learn: 17.5273091	total: 235ms	remaining: 265ms
47:	learn: 17.4232814	total: 239ms	remaining: 259ms
48:	learn: 17.2957579	total: 243ms	remaining: 253ms
49:	learn: 17.1892874	total: 247ms	remaining: 247ms
50:	learn: 17.0490355	total: 252ms	remaining: 242ms
51:	learn: 16.9666450	total: 256ms	remaining: 237ms
52:	learn: 16.8600056	total: 264ms	remaining: 234ms
53:	learn: 16.7542588	total: 271ms	remaining: 231ms
54:	learn: 16.6316077	total: 278ms	remaining: 227ms
55:	learn: 16.5588112	total: 284ms	remaining: 223ms
56:	learn: 16.5010186	total: 290ms	remaining: 218ms
57:	learn: 16.4081540	total: 297ms	remaining: 215ms
58:	learn: 16.3040451	total: 301ms	remaining: 209ms
59:	learn: 16.1890564	total: 306ms	remaining: 204ms
60:	learn: 16.0977103	total: 310ms	remaining: 198ms
61:	learn: 15.9627607	total: 315ms	remaining: 193ms
62:	learn: 15.9022248	total: 320ms	remaining: 188ms
63:	learn: 15.8151881	total: 325ms	remaining: 183ms
64:	learn: 15.7353125	total: 329ms	remaining: 177ms
65:	learn: 15.6312897	total: 334ms	remaining: 172ms
66:	learn: 15.5330927	total: 339ms	remaining: 167ms
67:	learn: 15.4698681	total: 343ms	remaining: 161ms
68:	learn: 15.4108571	total: 348ms	remaining: 156ms
69:	learn: 15.3492945	total: 352ms	remaining: 151ms
70:	learn: 15.3036540	total: 357ms	remaining: 146ms
71:	learn: 15.2390833	total: 362ms	remaining: 141ms
72:	learn: 15.1556327	total: 366ms	remaining: 135ms
73:	learn: 15.1016315	total: 371ms	remaining: 130ms
74:	learn: 15.0287076	total: 376ms	remaining: 125ms
75:	learn: 14.9530572	total: 381ms	remaining: 120ms
76:	learn: 14.8965517	total: 385ms	remaining: 115ms
77:	learn: 14.8125426	total: 390ms	remaining: 110ms
78:	learn: 14.7435359	total: 394ms	remaining: 105ms
79:	learn: 14.6963163	total: 398ms	remaining: 99.5ms
80:	learn: 14.6200060	total: 402ms	remaining: 94.4ms
81:	learn: 14.5707760	total: 407ms	remaining: 89.4ms
82:	learn: 14.5053651	total: 411ms	remaining: 84.2ms
83:	learn: 14.4115458	total: 416ms	remaining: 79.2ms
84:	learn: 14.3117159	total: 420ms	remaining: 74.2ms
85:	learn: 14.2511326	total: 425ms	remaining: 69.2ms
86:	learn: 14.1372486	total: 430ms	remaining: 64.2ms
87:	learn: 14.0992301	total: 434ms	remaining: 59.2ms
88:	learn: 14.0228331	total: 439ms	remaining: 54.3ms
89:	learn: 13.9249836	total: 444ms	remaining: 49.3ms
90:	learn: 13.8679364	total: 448ms	remaining: 44.3ms
91:	learn: 13.8405578	total: 453ms	remaining: 39.4ms
92:	learn: 13.7711325	total: 458ms	remaining: 34.5ms
93:	learn: 13.7357019	total: 463ms	remaining: 29.6ms
94:	learn: 13.6735271	total: 468ms	remaining: 24.6ms
95:	learn: 13.5682393	total: 473ms	remaining: 19.7ms
96:	learn: 13.5342610	total: 480ms	remaining: 14.8ms
97:	learn: 13.4710034	total: 488ms	remaining: 9.96ms
98:	learn: 13.4022402	total: 501ms	remaining: 5.06ms
99:	learn: 13.3351238	total: 506ms	remaining: 0us
0:	learn: 42.9181702	total: 6.47ms	remaining: 641ms
1:	learn: 42.0286736	total: 11.6ms	remaining: 567ms
2:	learn: 41.2764568	total: 16.1ms	remaining: 522ms
3:	learn: 40.4721918	total: 20.8ms	remaining: 500ms
4:	learn: 39.8518928	total: 25.4ms	remaining: 482ms
5:	learn: 39.2645479	total: 30.2ms	remaining: 472ms
6:	learn: 38.4453704	total: 34.7ms	remaining: 460ms
7:	learn: 37.7122059	total: 39.5ms	remaining: 455ms
8:	learn: 36.9185796	total: 44.3ms	remaining: 448ms
9:	learn: 36.1668427	total: 48.9ms	remaining: 440ms
10:	learn: 35.5639029	total: 53.4ms	remaining: 432ms
11:	learn: 34.7724193	total: 58ms	remaining: 425ms
12:	learn: 34.3053433	total: 62.8ms	remaining: 420ms
13:	learn: 33.6561327	total: 64ms	remaining: 393ms
14:	learn: 33.0134042	total: 68.4ms	remaining: 388ms
15:	learn: 32.4483300	total: 73.1ms	remaining: 384ms
16:	learn: 31.8581144	total: 77.8ms	remaining: 380ms
17:	learn: 31.2858301	total: 82.7ms	remaining: 377ms
18:	learn: 30.8483018	total: 86.9ms	remaining: 370ms
19:	learn: 30.4174622	total: 91.2ms	remaining: 365ms
20:	learn: 29.8994411	total: 96.1ms	remaining: 361ms
21:	learn: 29.5045355	total: 101ms	remaining: 357ms
22:	learn: 28.9923519	total: 105ms	remaining: 352ms
23:	learn: 28.4255717	total: 110ms	remaining: 349ms
24:	learn: 28.0283139	total: 115ms	remaining: 345ms
25:	learn: 27.7434814	total: 120ms	remaining: 340ms
26:	learn: 27.2770731	total: 126ms	remaining: 339ms
27:	learn: 26.8928270	total: 133ms	remaining: 343ms
28:	learn: 26.4282671	total: 140ms	remaining: 344ms
29:	learn: 26.0272764	total: 147ms	remaining: 342ms
30:	learn: 25.7579312	total: 152ms	remaining: 338ms
31:	learn: 25.4542434	total: 157ms	remaining: 334ms
32:	learn: 25.1232564	total: 162ms	remaining: 328ms
33:	learn: 24.8110795	total: 166ms	remaining: 322ms
34:	learn: 24.5077579	total: 170ms	remaining: 316ms
35:	learn: 24.1909000	total: 174ms	remaining: 310ms
36:	learn: 23.8719468	total: 178ms	remaining: 304ms
37:	learn: 23.5764366	total: 180ms	remaining: 293ms
38:	learn: 23.3468086	total: 184ms	remaining: 288ms
39:	learn: 23.0908771	total: 188ms	remaining: 283ms
40:	learn: 22.8580876	total: 193ms	remaining: 278ms
41:	learn: 22.6060825	total: 197ms	remaining: 272ms
42:	learn: 22.4125407	total: 202ms	remaining: 268ms
43:	learn: 22.1990617	total: 207ms	remaining: 264ms
44:	learn: 21.9716164	total: 212ms	remaining: 259ms
45:	learn: 21.8360935	total: 216ms	remaining: 254ms
46:	learn: 21.6169256	total: 221ms	remaining: 249ms
47:	learn: 21.4620612	total: 226ms	remaining: 244ms
48:	learn: 21.2894194	total: 230ms	remaining: 240ms
49:	learn: 21.1066266	total: 235ms	remaining: 235ms
50:	learn: 20.9484898	total: 240ms	remaining: 230ms
51:	learn: 20.7195338	total: 244ms	remaining: 225ms
52:	learn: 20.4899740	total: 249ms	remaining: 221ms
53:	learn: 20.3356583	total: 253ms	remaining: 216ms
54:	learn: 20.0754393	total: 258ms	remaining: 211ms
55:	learn: 19.9199159	total: 263ms	remaining: 206ms
56:	learn: 19.7761128	total: 267ms	remaining: 202ms
57:	learn: 19.6533060	total: 272ms	remaining: 197ms
58:	learn: 19.5113942	total: 277ms	remaining: 193ms
59:	learn: 19.3985022	total: 283ms	remaining: 189ms
60:	learn: 19.2683443	total: 288ms	remaining: 184ms
61:	learn: 19.1460824	total: 293ms	remaining: 180ms
62:	learn: 19.0042655	total: 298ms	remaining: 175ms
63:	learn: 18.8720873	total: 303ms	remaining: 171ms
64:	learn: 18.7183888	total: 309ms	remaining: 166ms
65:	learn: 18.5472360	total: 314ms	remaining: 162ms
66:	learn: 18.3976642	total: 319ms	remaining: 157ms
67:	learn: 18.2282851	total: 329ms	remaining: 155ms
68:	learn: 18.1469157	total: 339ms	remaining: 152ms
69:	learn: 18.0649494	total: 345ms	remaining: 148ms
70:	learn: 17.9485405	total: 353ms	remaining: 144ms
71:	learn: 17.8460261	total: 358ms	remaining: 139ms
72:	learn: 17.7679843	total: 363ms	remaining: 134ms
73:	learn: 17.5989290	total: 369ms	remaining: 130ms
74:	learn: 17.4381322	total: 374ms	remaining: 125ms
75:	learn: 17.3370886	total: 383ms	remaining: 121ms
76:	learn: 17.2675308	total: 388ms	remaining: 116ms
77:	learn: 17.1946430	total: 393ms	remaining: 111ms
78:	learn: 17.0923725	total: 398ms	remaining: 106ms
79:	learn: 17.0537265	total: 403ms	remaining: 101ms
80:	learn: 16.9456831	total: 409ms	remaining: 95.9ms
81:	learn: 16.8457353	total: 415ms	remaining: 91ms
82:	learn: 16.7469310	total: 419ms	remaining: 85.8ms
83:	learn: 16.6679953	total: 423ms	remaining: 80.6ms
84:	learn: 16.6274189	total: 428ms	remaining: 75.5ms
85:	learn: 16.5516530	total: 432ms	remaining: 70.3ms
86:	learn: 16.4886066	total: 436ms	remaining: 65.1ms
87:	learn: 16.3947859	total: 440ms	remaining: 60ms
88:	learn: 16.3406495	total: 445ms	remaining: 55ms
89:	learn: 16.3019195	total: 449ms	remaining: 49.9ms
90:	learn: 16.1860681	total: 453ms	remaining: 44.8ms
91:	learn: 16.1282812	total: 457ms	remaining: 39.8ms
92:	learn: 16.0303652	total: 462ms	remaining: 34.8ms
93:	learn: 15.9561692	total: 467ms	remaining: 29.8ms
94:	learn: 15.8733994	total: 471ms	remaining: 24.8ms
95:	learn: 15.8108833	total: 475ms	remaining: 19.8ms
96:	learn: 15.7606004	total: 480ms	remaining: 14.8ms
97:	learn: 15.6984664	total: 484ms	remaining: 9.87ms
98:	learn: 15.6223632	total: 488ms	remaining: 4.93ms
99:	learn: 15.5671136	total: 493ms	remaining: 0us
0:	learn: 46.4788614	total: 2.38ms	remaining: 235ms
1:	learn: 45.7608372	total: 7.74ms	remaining: 379ms
2:	learn: 44.8825004	total: 13ms	remaining: 420ms
3:	learn: 44.0362738	total: 17.4ms	remaining: 417ms
4:	learn: 43.2086374	total: 21.9ms	remaining: 415ms
5:	learn: 42.5835773	total: 26.1ms	remaining: 410ms
6:	learn: 41.9673269	total: 30.5ms	remaining: 405ms
7:	learn: 41.4748717	total: 34.8ms	remaining: 400ms
8:	learn: 40.7129183	total: 39ms	remaining: 394ms
9:	learn: 39.8900884	total: 43.7ms	remaining: 393ms
10:	learn: 39.4142193	total: 48ms	remaining: 388ms
11:	learn: 38.8645613	total: 52.1ms	remaining: 382ms
12:	learn: 38.2394731	total: 56.4ms	remaining: 377ms
13:	learn: 37.6834515	total: 60.9ms	remaining: 374ms
14:	learn: 37.0673507	total: 65ms	remaining: 368ms
15:	learn: 36.4728340	total: 69.6ms	remaining: 366ms
16:	learn: 36.0489086	total: 73.8ms	remaining: 360ms
17:	learn: 35.4744141	total: 78.2ms	remaining: 356ms
18:	learn: 35.0106021	total: 82.4ms	remaining: 351ms
19:	learn: 34.5586053	total: 87ms	remaining: 348ms
20:	learn: 34.1308223	total: 91.5ms	remaining: 344ms
21:	learn: 33.7701450	total: 96.1ms	remaining: 341ms
22:	learn: 33.4425444	total: 101ms	remaining: 336ms
23:	learn: 33.0296412	total: 105ms	remaining: 332ms
24:	learn: 32.6359803	total: 109ms	remaining: 327ms
25:	learn: 32.1846182	total: 113ms	remaining: 323ms
26:	learn: 31.7620230	total: 118ms	remaining: 318ms
27:	learn: 31.4669337	total: 122ms	remaining: 313ms
28:	learn: 31.0792062	total: 126ms	remaining: 308ms
29:	learn: 30.7970537	total: 130ms	remaining: 304ms
30:	learn: 30.4952215	total: 135ms	remaining: 300ms
31:	learn: 30.2845344	total: 139ms	remaining: 295ms
32:	learn: 29.9592732	total: 143ms	remaining: 291ms
33:	learn: 29.6798596	total: 148ms	remaining: 287ms
34:	learn: 29.3368905	total: 152ms	remaining: 282ms
35:	learn: 29.0621238	total: 156ms	remaining: 278ms
36:	learn: 28.6445375	total: 161ms	remaining: 275ms
37:	learn: 28.2418096	total: 167ms	remaining: 272ms
38:	learn: 27.9495390	total: 172ms	remaining: 269ms
39:	learn: 27.6958160	total: 177ms	remaining: 265ms
40:	learn: 27.4811189	total: 182ms	remaining: 262ms
41:	learn: 27.1494420	total: 188ms	remaining: 259ms
42:	learn: 26.8388873	total: 197ms	remaining: 261ms
43:	learn: 26.5721300	total: 207ms	remaining: 263ms
44:	learn: 26.3384738	total: 214ms	remaining: 261ms
45:	learn: 26.1894781	total: 222ms	remaining: 260ms
46:	learn: 25.9580198	total: 227ms	remaining: 256ms
47:	learn: 25.7897985	total: 233ms	remaining: 253ms
48:	learn: 25.6000271	total: 239ms	remaining: 248ms
49:	learn: 25.4130873	total: 244ms	remaining: 244ms
50:	learn: 25.1699061	total: 250ms	remaining: 240ms
51:	learn: 24.9324449	total: 255ms	remaining: 235ms
52:	learn: 24.7729152	total: 261ms	remaining: 231ms
53:	learn: 24.5026563	total: 266ms	remaining: 227ms
54:	learn: 24.2332627	total: 272ms	remaining: 222ms
55:	learn: 23.9611984	total: 277ms	remaining: 217ms
56:	learn: 23.7862603	total: 282ms	remaining: 213ms
57:	learn: 23.6318154	total: 288ms	remaining: 208ms
58:	learn: 23.4443306	total: 292ms	remaining: 203ms
59:	learn: 23.2581425	total: 297ms	remaining: 198ms
60:	learn: 23.0549901	total: 302ms	remaining: 193ms
61:	learn: 22.8666218	total: 306ms	remaining: 188ms
62:	learn: 22.6956739	total: 310ms	remaining: 182ms
63:	learn: 22.5068544	total: 315ms	remaining: 177ms
64:	learn: 22.1859147	total: 320ms	remaining: 172ms
65:	learn: 22.0462043	total: 324ms	remaining: 167ms
66:	learn: 21.9329563	total: 328ms	remaining: 162ms
67:	learn: 21.8029736	total: 333ms	remaining: 157ms
68:	learn: 21.6861091	total: 337ms	remaining: 151ms
69:	learn: 21.4838140	total: 342ms	remaining: 147ms
70:	learn: 21.3548921	total: 346ms	remaining: 141ms
71:	learn: 21.2244517	total: 351ms	remaining: 136ms
72:	learn: 21.0702958	total: 355ms	remaining: 131ms
73:	learn: 20.9224662	total: 360ms	remaining: 126ms
74:	learn: 20.8150357	total: 365ms	remaining: 122ms
75:	learn: 20.6962739	total: 370ms	remaining: 117ms
76:	learn: 20.5809258	total: 375ms	remaining: 112ms
77:	learn: 20.4735470	total: 379ms	remaining: 107ms
78:	learn: 20.3778167	total: 384ms	remaining: 102ms
79:	learn: 20.2211268	total: 392ms	remaining: 98.1ms
80:	learn: 20.1478678	total: 399ms	remaining: 93.7ms
81:	learn: 20.1032967	total: 407ms	remaining: 89.4ms
82:	learn: 19.9236300	total: 412ms	remaining: 84.5ms
83:	learn: 19.8151745	total: 419ms	remaining: 79.7ms
84:	learn: 19.7099856	total: 423ms	remaining: 74.7ms
85:	learn: 19.6264833	total: 428ms	remaining: 69.6ms
86:	learn: 19.4916361	total: 432ms	remaining: 64.5ms
87:	learn: 19.4050529	total: 436ms	remaining: 59.5ms
88:	learn: 19.2547065	total: 441ms	remaining: 54.5ms
89:	learn: 19.1610225	total: 445ms	remaining: 49.5ms
90:	learn: 19.0898958	total: 449ms	remaining: 44.4ms
91:	learn: 19.0489664	total: 453ms	remaining: 39.4ms
92:	learn: 18.9206240	total: 458ms	remaining: 34.5ms
93:	learn: 18.8636239	total: 462ms	remaining: 29.5ms
94:	learn: 18.8126187	total: 466ms	remaining: 24.5ms
95:	learn: 18.7579275	total: 470ms	remaining: 19.6ms
96:	learn: 18.6382753	total: 475ms	remaining: 14.7ms
97:	learn: 18.5397334	total: 479ms	remaining: 9.77ms
98:	learn: 18.4375951	total: 483ms	remaining: 4.88ms
99:	learn: 18.4033755	total: 488ms	remaining: 0us
0:	learn: 46.1068821	total: 1.97ms	remaining: 195ms
1:	learn: 45.3970261	total: 6.37ms	remaining: 312ms
2:	learn: 44.8732696	total: 10.4ms	remaining: 338ms
3:	learn: 44.1290184	total: 14.7ms	remaining: 354ms
4:	learn: 43.3290271	total: 19.6ms	remaining: 373ms
5:	learn: 42.7069090	total: 23.7ms	remaining: 371ms
6:	learn: 42.0572971	total: 28ms	remaining: 372ms
7:	learn: 41.4797924	total: 32.1ms	remaining: 369ms
8:	learn: 41.0023122	total: 37.1ms	remaining: 375ms
9:	learn: 40.5330570	total: 41.7ms	remaining: 375ms
10:	learn: 39.9726545	total: 46.2ms	remaining: 374ms
11:	learn: 39.3044053	total: 50.8ms	remaining: 372ms
12:	learn: 38.8169735	total: 55.6ms	remaining: 372ms
13:	learn: 38.2458761	total: 60.5ms	remaining: 372ms
14:	learn: 37.6280321	total: 68.7ms	remaining: 389ms
15:	learn: 37.0800610	total: 78.2ms	remaining: 411ms
16:	learn: 36.5489363	total: 85.1ms	remaining: 415ms
17:	learn: 36.0981456	total: 93ms	remaining: 424ms
18:	learn: 35.6956274	total: 98.6ms	remaining: 420ms
19:	learn: 35.1471999	total: 104ms	remaining: 416ms
20:	learn: 34.6235408	total: 110ms	remaining: 412ms
21:	learn: 34.1987018	total: 115ms	remaining: 407ms
22:	learn: 33.8985062	total: 120ms	remaining: 403ms
23:	learn: 33.3869017	total: 126ms	remaining: 399ms
24:	learn: 32.9100550	total: 131ms	remaining: 392ms
25:	learn: 32.4156208	total: 136ms	remaining: 387ms
26:	learn: 31.9320493	total: 141ms	remaining: 380ms
27:	learn: 31.5711468	total: 146ms	remaining: 374ms
28:	learn: 31.2404433	total: 151ms	remaining: 369ms
29:	learn: 30.8807946	total: 156ms	remaining: 365ms
30:	learn: 30.5948438	total: 161ms	remaining: 358ms
31:	learn: 30.3885560	total: 165ms	remaining: 350ms
32:	learn: 30.0625101	total: 169ms	remaining: 343ms
33:	learn: 29.9113114	total: 174ms	remaining: 337ms
34:	learn: 29.6983470	total: 179ms	remaining: 332ms
35:	learn: 29.4775849	total: 184ms	remaining: 326ms
36:	learn: 29.0538055	total: 188ms	remaining: 321ms
37:	learn: 28.6792318	total: 193ms	remaining: 315ms
38:	learn: 28.4231383	total: 198ms	remaining: 310ms
39:	learn: 28.1078565	total: 203ms	remaining: 304ms
40:	learn: 27.9079179	total: 208ms	remaining: 299ms
41:	learn: 27.6721506	total: 212ms	remaining: 293ms
42:	learn: 27.4228033	total: 216ms	remaining: 286ms
43:	learn: 27.1740534	total: 221ms	remaining: 281ms
44:	learn: 26.8584071	total: 225ms	remaining: 275ms
45:	learn: 26.6902083	total: 229ms	remaining: 269ms
46:	learn: 26.4855335	total: 234ms	remaining: 264ms
47:	learn: 26.2730822	total: 238ms	remaining: 258ms
48:	learn: 26.1058689	total: 246ms	remaining: 256ms
49:	learn: 25.8587318	total: 253ms	remaining: 253ms
50:	learn: 25.7558005	total: 260ms	remaining: 249ms
51:	learn: 25.5846925	total: 266ms	remaining: 245ms
52:	learn: 25.4249887	total: 271ms	remaining: 240ms
53:	learn: 25.1911054	total: 276ms	remaining: 235ms
54:	learn: 25.0544755	total: 282ms	remaining: 231ms
55:	learn: 24.8874006	total: 286ms	remaining: 225ms
56:	learn: 24.7736279	total: 290ms	remaining: 219ms
57:	learn: 24.6156255	total: 295ms	remaining: 213ms
58:	learn: 24.3962421	total: 299ms	remaining: 208ms
59:	learn: 24.2685129	total: 303ms	remaining: 202ms
60:	learn: 24.1874096	total: 308ms	remaining: 197ms
61:	learn: 24.0394287	total: 312ms	remaining: 191ms
62:	learn: 23.9281768	total: 316ms	remaining: 186ms
63:	learn: 23.7423900	total: 320ms	remaining: 180ms
64:	learn: 23.6015209	total: 325ms	remaining: 175ms
65:	learn: 23.4677943	total: 329ms	remaining: 169ms
66:	learn: 23.3215256	total: 333ms	remaining: 164ms
67:	learn: 23.1869360	total: 337ms	remaining: 159ms
68:	learn: 22.9691180	total: 341ms	remaining: 153ms
69:	learn: 22.7531657	total: 346ms	remaining: 148ms
70:	learn: 22.6133477	total: 350ms	remaining: 143ms
71:	learn: 22.3452758	total: 354ms	remaining: 138ms
72:	learn: 22.2065350	total: 359ms	remaining: 133ms
73:	learn: 22.1071155	total: 363ms	remaining: 127ms
74:	learn: 21.9740686	total: 367ms	remaining: 122ms
75:	learn: 21.8892033	total: 371ms	remaining: 117ms
76:	learn: 21.8267882	total: 376ms	remaining: 112ms
77:	learn: 21.7423479	total: 379ms	remaining: 107ms
78:	learn: 21.6242075	total: 384ms	remaining: 102ms
79:	learn: 21.5016910	total: 388ms	remaining: 97.1ms
80:	learn: 21.4806623	total: 389ms	remaining: 91.2ms
81:	learn: 21.3166637	total: 393ms	remaining: 86.3ms
82:	learn: 21.2222534	total: 397ms	remaining: 81.4ms
83:	learn: 21.1535708	total: 402ms	remaining: 76.5ms
84:	learn: 21.0858902	total: 406ms	remaining: 71.6ms
85:	learn: 20.9206003	total: 410ms	remaining: 66.8ms
86:	learn: 20.8674695	total: 415ms	remaining: 62ms
87:	learn: 20.8089875	total: 419ms	remaining: 57.2ms
88:	learn: 20.7085401	total: 423ms	remaining: 52.3ms
89:	learn: 20.5513468	total: 428ms	remaining: 47.5ms
90:	learn: 20.4586742	total: 432ms	remaining: 42.8ms
91:	learn: 20.3932149	total: 437ms	remaining: 38ms
92:	learn: 20.3000895	total: 442ms	remaining: 33.3ms
93:	learn: 20.2254009	total: 447ms	remaining: 28.5ms
94:	learn: 20.1750050	total: 451ms	remaining: 23.7ms
95:	learn: 20.0715579	total: 456ms	remaining: 19ms
96:	learn: 19.9920082	total: 465ms	remaining: 14.4ms
97:	learn: 19.9664401	total: 473ms	remaining: 9.66ms
98:	learn: 19.8689673	total: 481ms	remaining: 4.86ms
99:	learn: 19.7537356	total: 490ms	remaining: 0us
0:	learn: 46.8832143	total: 5.64ms	remaining: 558ms
1:	learn: 45.8700349	total: 10.6ms	remaining: 518ms
2:	learn: 45.0546867	total: 14.8ms	remaining: 479ms
3:	learn: 44.2829439	total: 19.1ms	remaining: 459ms
4:	learn: 43.4609042	total: 23.4ms	remaining: 445ms
5:	learn: 42.6754991	total: 27.9ms	remaining: 438ms
6:	learn: 41.9234935	total: 32.2ms	remaining: 428ms
7:	learn: 41.3987518	total: 36.5ms	remaining: 420ms
8:	learn: 40.6625066	total: 40.8ms	remaining: 413ms
9:	learn: 40.0029561	total: 45ms	remaining: 405ms
10:	learn: 39.3897033	total: 49.3ms	remaining: 399ms
11:	learn: 38.7741453	total: 53.4ms	remaining: 392ms
12:	learn: 38.1201100	total: 57.5ms	remaining: 385ms
13:	learn: 37.5129454	total: 62.3ms	remaining: 383ms
14:	learn: 37.2062206	total: 66.9ms	remaining: 379ms
15:	learn: 36.6831741	total: 70.8ms	remaining: 372ms
16:	learn: 36.2902788	total: 75.3ms	remaining: 368ms
17:	learn: 35.7639930	total: 80ms	remaining: 364ms
18:	learn: 35.2580953	total: 84.7ms	remaining: 361ms
19:	learn: 34.7809739	total: 89.3ms	remaining: 357ms
20:	learn: 34.1330433	total: 93.8ms	remaining: 353ms
21:	learn: 33.7302219	total: 98.5ms	remaining: 349ms
22:	learn: 33.3502495	total: 103ms	remaining: 346ms
23:	learn: 33.0067804	total: 108ms	remaining: 342ms
24:	learn: 32.6897855	total: 113ms	remaining: 339ms
25:	learn: 32.4361119	total: 118ms	remaining: 335ms
26:	learn: 32.1278981	total: 123ms	remaining: 331ms
27:	learn: 31.7863721	total: 130ms	remaining: 335ms
28:	learn: 31.4791450	total: 138ms	remaining: 337ms
29:	learn: 31.1760161	total: 144ms	remaining: 337ms
30:	learn: 30.9238888	total: 150ms	remaining: 334ms
31:	learn: 30.5500905	total: 156ms	remaining: 332ms
32:	learn: 30.3078126	total: 161ms	remaining: 326ms
33:	learn: 30.0480921	total: 165ms	remaining: 321ms
34:	learn: 29.8623884	total: 170ms	remaining: 315ms
35:	learn: 29.5991038	total: 174ms	remaining: 310ms
36:	learn: 29.4061161	total: 179ms	remaining: 305ms
37:	learn: 29.0269515	total: 184ms	remaining: 300ms
38:	learn: 28.8224959	total: 188ms	remaining: 295ms
39:	learn: 28.6417843	total: 193ms	remaining: 290ms
40:	learn: 28.3633368	total: 198ms	remaining: 285ms
41:	learn: 28.0200246	total: 203ms	remaining: 280ms
42:	learn: 27.7221254	total: 207ms	remaining: 275ms
43:	learn: 27.5105818	total: 212ms	remaining: 270ms
44:	learn: 27.3551010	total: 216ms	remaining: 264ms
45:	learn: 27.0787522	total: 221ms	remaining: 259ms
46:	learn: 26.8726317	total: 225ms	remaining: 254ms
47:	learn: 26.8003277	total: 229ms	remaining: 248ms
48:	learn: 26.5493785	total: 233ms	remaining: 243ms
49:	learn: 26.3699550	total: 237ms	remaining: 237ms
50:	learn: 26.1519631	total: 241ms	remaining: 232ms
51:	learn: 25.9277325	total: 246ms	remaining: 227ms
52:	learn: 25.7286035	total: 250ms	remaining: 221ms
53:	learn: 25.4999193	total: 254ms	remaining: 217ms
54:	learn: 25.3434703	total: 258ms	remaining: 211ms
55:	learn: 25.1497545	total: 262ms	remaining: 206ms
56:	learn: 24.9498143	total: 267ms	remaining: 201ms
57:	learn: 24.6509390	total: 271ms	remaining: 196ms
58:	learn: 24.5576144	total: 275ms	remaining: 191ms
59:	learn: 24.4265144	total: 279ms	remaining: 186ms
60:	learn: 24.3100706	total: 283ms	remaining: 181ms
61:	learn: 24.1727952	total: 287ms	remaining: 176ms
62:	learn: 24.0478558	total: 292ms	remaining: 171ms
63:	learn: 23.9124577	total: 296ms	remaining: 167ms
64:	learn: 23.7703718	total: 301ms	remaining: 162ms
65:	learn: 23.5975027	total: 306ms	remaining: 157ms
66:	learn: 23.4318077	total: 310ms	remaining: 153ms
67:	learn: 23.3099691	total: 315ms	remaining: 148ms
68:	learn: 23.1947982	total: 320ms	remaining: 144ms
69:	learn: 23.0260174	total: 324ms	remaining: 139ms
70:	learn: 22.8523100	total: 329ms	remaining: 134ms
71:	learn: 22.8028534	total: 333ms	remaining: 130ms
72:	learn: 22.6880658	total: 339ms	remaining: 125ms
73:	learn: 22.5956809	total: 347ms	remaining: 122ms
74:	learn: 22.4692932	total: 357ms	remaining: 119ms
75:	learn: 22.2863504	total: 364ms	remaining: 115ms
76:	learn: 22.1911237	total: 372ms	remaining: 111ms
77:	learn: 22.1098391	total: 377ms	remaining: 106ms
78:	learn: 22.0182738	total: 382ms	remaining: 102ms
79:	learn: 21.9306746	total: 388ms	remaining: 96.9ms
80:	learn: 21.7508233	total: 393ms	remaining: 92.3ms
81:	learn: 21.7108446	total: 398ms	remaining: 87.4ms
82:	learn: 21.5931852	total: 404ms	remaining: 82.7ms
83:	learn: 21.4480361	total: 409ms	remaining: 77.9ms
84:	learn: 21.3092119	total: 414ms	remaining: 73.1ms
85:	learn: 21.2605557	total: 419ms	remaining: 68.2ms
86:	learn: 21.1123597	total: 424ms	remaining: 63.4ms
87:	learn: 21.0115642	total: 430ms	remaining: 58.7ms
88:	learn: 20.9389040	total: 435ms	remaining: 53.7ms
89:	learn: 20.8300300	total: 439ms	remaining: 48.7ms
90:	learn: 20.7159733	total: 443ms	remaining: 43.8ms
91:	learn: 20.6282090	total: 447ms	remaining: 38.9ms
92:	learn: 20.5164529	total: 452ms	remaining: 34ms
93:	learn: 20.4692032	total: 456ms	remaining: 29.1ms
94:	learn: 20.3768451	total: 460ms	remaining: 24.2ms
95:	learn: 20.2808056	total: 464ms	remaining: 19.4ms
96:	learn: 20.2082089	total: 469ms	remaining: 14.5ms
97:	learn: 20.1698768	total: 473ms	remaining: 9.65ms
98:	learn: 20.1048816	total: 477ms	remaining: 4.82ms
99:	learn: 20.0086159	total: 481ms	remaining: 0us
0:	learn: 27.6871645	total: 5.43ms	remaining: 538ms
1:	learn: 27.3312003	total: 12ms	remaining: 586ms
2:	learn: 26.9359558	total: 20.5ms	remaining: 661ms
3:	learn: 26.6055364	total: 27.7ms	remaining: 664ms
4:	learn: 26.1664924	total: 34.1ms	remaining: 649ms
5:	learn: 25.8515393	total: 39.5ms	remaining: 619ms
6:	learn: 25.4620036	total: 45.2ms	remaining: 601ms
7:	learn: 25.1669741	total: 49.8ms	remaining: 573ms
8:	learn: 24.8455454	total: 54.5ms	remaining: 551ms
9:	learn: 24.5106323	total: 59.3ms	remaining: 534ms
10:	learn: 24.1915228	total: 63.9ms	remaining: 517ms
11:	learn: 23.9076053	total: 68.5ms	remaining: 502ms
12:	learn: 23.6692445	total: 73.1ms	remaining: 490ms
13:	learn: 23.4343504	total: 78.2ms	remaining: 480ms
14:	learn: 23.2425280	total: 83ms	remaining: 470ms
15:	learn: 22.9254142	total: 87.6ms	remaining: 460ms
16:	learn: 22.6495489	total: 92.9ms	remaining: 454ms
17:	learn: 22.4343705	total: 98.7ms	remaining: 450ms
18:	learn: 22.2154202	total: 104ms	remaining: 441ms
19:	learn: 22.0592712	total: 109ms	remaining: 434ms
20:	learn: 21.7971944	total: 114ms	remaining: 429ms
21:	learn: 21.6128930	total: 119ms	remaining: 421ms
22:	learn: 21.3882946	total: 124ms	remaining: 415ms
23:	learn: 21.0912570	total: 128ms	remaining: 407ms
24:	learn: 20.8922857	total: 133ms	remaining: 399ms
25:	learn: 20.7150574	total: 138ms	remaining: 391ms
26:	learn: 20.5673183	total: 142ms	remaining: 385ms
27:	learn: 20.4331275	total: 147ms	remaining: 379ms
28:	learn: 20.2782866	total: 152ms	remaining: 372ms
29:	learn: 20.1061525	total: 157ms	remaining: 366ms
30:	learn: 19.9225948	total: 161ms	remaining: 359ms
31:	learn: 19.7809193	total: 166ms	remaining: 353ms
32:	learn: 19.6057771	total: 171ms	remaining: 347ms
33:	learn: 19.4391243	total: 176ms	remaining: 341ms
34:	learn: 19.2234365	total: 180ms	remaining: 335ms
35:	learn: 19.0214424	total: 185ms	remaining: 329ms
36:	learn: 18.8990643	total: 190ms	remaining: 323ms
37:	learn: 18.7473635	total: 194ms	remaining: 317ms
38:	learn: 18.6125192	total: 199ms	remaining: 312ms
39:	learn: 18.4977949	total: 204ms	remaining: 306ms
40:	learn: 18.3914568	total: 209ms	remaining: 300ms
41:	learn: 18.2541544	total: 214ms	remaining: 295ms
42:	learn: 18.1038984	total: 218ms	remaining: 290ms
43:	learn: 17.9706172	total: 223ms	remaining: 284ms
44:	learn: 17.8198810	total: 227ms	remaining: 278ms
45:	learn: 17.7102597	total: 233ms	remaining: 273ms
46:	learn: 17.6148228	total: 238ms	remaining: 268ms
47:	learn: 17.5115365	total: 243ms	remaining: 263ms
48:	learn: 17.3884162	total: 248ms	remaining: 258ms
49:	learn: 17.2857632	total: 253ms	remaining: 253ms
50:	learn: 17.1618843	total: 258ms	remaining: 248ms
51:	learn: 17.0529601	total: 268ms	remaining: 248ms
52:	learn: 16.9330273	total: 280ms	remaining: 249ms
53:	learn: 16.8206672	total: 288ms	remaining: 245ms
54:	learn: 16.7080356	total: 294ms	remaining: 241ms
55:	learn: 16.5874354	total: 299ms	remaining: 235ms
56:	learn: 16.4929860	total: 305ms	remaining: 230ms
57:	learn: 16.4269419	total: 312ms	remaining: 226ms
58:	learn: 16.3474026	total: 318ms	remaining: 221ms
59:	learn: 16.2515784	total: 324ms	remaining: 216ms
60:	learn: 16.1743901	total: 330ms	remaining: 211ms
61:	learn: 16.0389930	total: 336ms	remaining: 206ms
62:	learn: 15.9671636	total: 341ms	remaining: 200ms
63:	learn: 15.8928486	total: 352ms	remaining: 198ms
64:	learn: 15.8303841	total: 357ms	remaining: 192ms
65:	learn: 15.7612266	total: 362ms	remaining: 186ms
66:	learn: 15.6811172	total: 366ms	remaining: 180ms
67:	learn: 15.6262138	total: 371ms	remaining: 175ms
68:	learn: 15.5662508	total: 376ms	remaining: 169ms
69:	learn: 15.4804354	total: 381ms	remaining: 163ms
70:	learn: 15.4054915	total: 385ms	remaining: 157ms
71:	learn: 15.3271396	total: 390ms	remaining: 152ms
72:	learn: 15.2828359	total: 395ms	remaining: 146ms
73:	learn: 15.2197404	total: 400ms	remaining: 140ms
74:	learn: 15.1315902	total: 404ms	remaining: 135ms
75:	learn: 15.0780523	total: 409ms	remaining: 129ms
76:	learn: 14.9959155	total: 414ms	remaining: 124ms
77:	learn: 14.9265008	total: 419ms	remaining: 118ms
78:	learn: 14.8570189	total: 424ms	remaining: 113ms
79:	learn: 14.8060372	total: 429ms	remaining: 107ms
80:	learn: 14.7294676	total: 434ms	remaining: 102ms
81:	learn: 14.6708309	total: 439ms	remaining: 96.3ms
82:	learn: 14.5765370	total: 444ms	remaining: 90.9ms
83:	learn: 14.5312713	total: 449ms	remaining: 85.5ms
84:	learn: 14.4830327	total: 454ms	remaining: 80.1ms
85:	learn: 14.4296247	total: 463ms	remaining: 75.5ms
86:	learn: 14.3381470	total: 471ms	remaining: 70.4ms
87:	learn: 14.2638093	total: 479ms	remaining: 65.3ms
88:	learn: 14.2288435	total: 484ms	remaining: 59.8ms
89:	learn: 14.1489273	total: 490ms	remaining: 54.4ms
90:	learn: 14.0937923	total: 495ms	remaining: 48.9ms
91:	learn: 14.0334062	total: 499ms	remaining: 43.4ms
92:	learn: 13.9854696	total: 504ms	remaining: 37.9ms
93:	learn: 13.9444203	total: 509ms	remaining: 32.5ms
94:	learn: 13.9101523	total: 513ms	remaining: 27ms
95:	learn: 13.8460655	total: 518ms	remaining: 21.6ms
96:	learn: 13.7809420	total: 523ms	remaining: 16.2ms
97:	learn: 13.7270532	total: 528ms	remaining: 10.8ms
98:	learn: 13.6891300	total: 533ms	remaining: 5.38ms
99:	learn: 13.6569696	total: 538ms	remaining: 0us
0:	learn: 42.9754370	total: 5.53ms	remaining: 547ms
1:	learn: 42.2613272	total: 10.4ms	remaining: 507ms
2:	learn: 41.4729969	total: 14.9ms	remaining: 481ms
3:	learn: 40.7127004	total: 19.5ms	remaining: 469ms
4:	learn: 39.7775109	total: 24.1ms	remaining: 459ms
5:	learn: 39.1736663	total: 28.9ms	remaining: 454ms
6:	learn: 38.2981109	total: 33.9ms	remaining: 450ms
7:	learn: 37.5352984	total: 38.8ms	remaining: 446ms
8:	learn: 36.7771474	total: 43.6ms	remaining: 440ms
9:	learn: 36.0581366	total: 48.8ms	remaining: 439ms
10:	learn: 35.3542706	total: 54.1ms	remaining: 438ms
11:	learn: 34.6937007	total: 59ms	remaining: 432ms
12:	learn: 34.0408035	total: 64.1ms	remaining: 429ms
13:	learn: 33.3460240	total: 69.2ms	remaining: 425ms
14:	learn: 32.8086243	total: 74.6ms	remaining: 423ms
15:	learn: 32.1934462	total: 84.8ms	remaining: 445ms
16:	learn: 31.6465519	total: 99.1ms	remaining: 484ms
17:	learn: 31.2161293	total: 106ms	remaining: 484ms
18:	learn: 30.6730548	total: 114ms	remaining: 484ms
19:	learn: 30.3153659	total: 119ms	remaining: 478ms
20:	learn: 29.7661420	total: 125ms	remaining: 471ms
21:	learn: 29.2095664	total: 131ms	remaining: 464ms
22:	learn: 28.7509592	total: 136ms	remaining: 456ms
23:	learn: 28.4347528	total: 142ms	remaining: 450ms
24:	learn: 28.0551654	total: 148ms	remaining: 443ms
25:	learn: 27.7295952	total: 153ms	remaining: 436ms
26:	learn: 27.2329225	total: 159ms	remaining: 430ms
27:	learn: 26.9970607	total: 165ms	remaining: 425ms
28:	learn: 26.6596544	total: 171ms	remaining: 420ms
29:	learn: 26.2633576	total: 176ms	remaining: 412ms
30:	learn: 25.9761623	total: 181ms	remaining: 403ms
31:	learn: 25.6177371	total: 186ms	remaining: 395ms
32:	learn: 25.2165933	total: 191ms	remaining: 387ms
33:	learn: 24.8012870	total: 196ms	remaining: 380ms
34:	learn: 24.4772532	total: 201ms	remaining: 373ms
35:	learn: 24.1560359	total: 206ms	remaining: 366ms
36:	learn: 23.9688812	total: 210ms	remaining: 358ms
37:	learn: 23.6907607	total: 215ms	remaining: 351ms
38:	learn: 23.3885772	total: 220ms	remaining: 344ms
39:	learn: 23.2234939	total: 224ms	remaining: 337ms
40:	learn: 22.9785026	total: 230ms	remaining: 330ms
41:	learn: 22.6827268	total: 234ms	remaining: 324ms
42:	learn: 22.4564360	total: 239ms	remaining: 317ms
43:	learn: 22.2517827	total: 244ms	remaining: 310ms
44:	learn: 21.9858709	total: 249ms	remaining: 305ms
45:	learn: 21.7595870	total: 254ms	remaining: 298ms
46:	learn: 21.5929957	total: 259ms	remaining: 292ms
47:	learn: 21.4071752	total: 265ms	remaining: 287ms
48:	learn: 21.2186470	total: 270ms	remaining: 281ms
49:	learn: 21.0691824	total: 275ms	remaining: 275ms
50:	learn: 20.8921347	total: 283ms	remaining: 272ms
51:	learn: 20.6834229	total: 291ms	remaining: 269ms
52:	learn: 20.4718988	total: 299ms	remaining: 265ms
53:	learn: 20.3413889	total: 304ms	remaining: 259ms
54:	learn: 20.1785464	total: 310ms	remaining: 254ms
55:	learn: 19.9824314	total: 315ms	remaining: 248ms
56:	learn: 19.8217596	total: 320ms	remaining: 241ms
57:	learn: 19.6318474	total: 325ms	remaining: 235ms
58:	learn: 19.4962236	total: 330ms	remaining: 229ms
59:	learn: 19.3114985	total: 335ms	remaining: 223ms
60:	learn: 19.2181156	total: 340ms	remaining: 217ms
61:	learn: 19.0689614	total: 344ms	remaining: 211ms
62:	learn: 18.9563267	total: 349ms	remaining: 205ms
63:	learn: 18.8343083	total: 354ms	remaining: 199ms
64:	learn: 18.7050033	total: 358ms	remaining: 193ms
65:	learn: 18.6014163	total: 363ms	remaining: 187ms
66:	learn: 18.4910692	total: 368ms	remaining: 181ms
67:	learn: 18.3935194	total: 372ms	remaining: 175ms
68:	learn: 18.2825842	total: 377ms	remaining: 169ms
69:	learn: 18.1519267	total: 382ms	remaining: 164ms
70:	learn: 18.0527651	total: 387ms	remaining: 158ms
71:	learn: 17.9770106	total: 392ms	remaining: 152ms
72:	learn: 17.9151628	total: 396ms	remaining: 146ms
73:	learn: 17.7957486	total: 401ms	remaining: 141ms
74:	learn: 17.7025765	total: 406ms	remaining: 135ms
75:	learn: 17.5957242	total: 411ms	remaining: 130ms
76:	learn: 17.4683244	total: 415ms	remaining: 124ms
77:	learn: 17.3415729	total: 420ms	remaining: 119ms
78:	learn: 17.2886896	total: 425ms	remaining: 113ms
79:	learn: 17.2280922	total: 430ms	remaining: 107ms
80:	learn: 17.1188996	total: 434ms	remaining: 102ms
81:	learn: 17.0236450	total: 439ms	remaining: 96.4ms
82:	learn: 16.9046661	total: 444ms	remaining: 90.9ms
83:	learn: 16.7930633	total: 449ms	remaining: 85.5ms
84:	learn: 16.6870100	total: 456ms	remaining: 80.5ms
85:	learn: 16.5512107	total: 463ms	remaining: 75.4ms
86:	learn: 16.4353400	total: 470ms	remaining: 70.3ms
87:	learn: 16.3256461	total: 477ms	remaining: 65.1ms
88:	learn: 16.2968057	total: 483ms	remaining: 59.8ms
89:	learn: 16.2136078	total: 490ms	remaining: 54.5ms
90:	learn: 16.1596096	total: 498ms	remaining: 49.3ms
91:	learn: 16.1164050	total: 505ms	remaining: 43.9ms
92:	learn: 16.0660454	total: 512ms	remaining: 38.5ms
93:	learn: 16.0380611	total: 517ms	remaining: 33ms
94:	learn: 15.9494441	total: 524ms	remaining: 27.6ms
95:	learn: 15.8874840	total: 530ms	remaining: 22.1ms
96:	learn: 15.8288234	total: 535ms	remaining: 16.5ms
97:	learn: 15.7562787	total: 541ms	remaining: 11ms
98:	learn: 15.6822678	total: 546ms	remaining: 5.52ms
99:	learn: 15.5901500	total: 552ms	remaining: 0us
0:	learn: 46.4504871	total: 5.09ms	remaining: 504ms
1:	learn: 45.7240114	total: 9.69ms	remaining: 475ms
2:	learn: 45.0308025	total: 14.3ms	remaining: 464ms
3:	learn: 44.1111169	total: 19.1ms	remaining: 458ms
4:	learn: 43.3925352	total: 23.8ms	remaining: 452ms
5:	learn: 42.7856354	total: 28.5ms	remaining: 447ms
6:	learn: 42.1998170	total: 33.8ms	remaining: 449ms
7:	learn: 41.3532708	total: 39ms	remaining: 448ms
8:	learn: 40.7314571	total: 43.8ms	remaining: 442ms
9:	learn: 39.9838066	total: 48.7ms	remaining: 438ms
10:	learn: 39.4168243	total: 54ms	remaining: 437ms
11:	learn: 39.0148769	total: 59.1ms	remaining: 433ms
12:	learn: 38.3055855	total: 64ms	remaining: 428ms
13:	learn: 37.7343198	total: 69.5ms	remaining: 427ms
14:	learn: 37.4177463	total: 74.6ms	remaining: 423ms
15:	learn: 36.9043298	total: 82.3ms	remaining: 432ms
16:	learn: 36.3139174	total: 90.6ms	remaining: 442ms
17:	learn: 35.7200448	total: 98.4ms	remaining: 448ms
18:	learn: 35.3763394	total: 104ms	remaining: 445ms
19:	learn: 34.7666728	total: 111ms	remaining: 444ms
20:	learn: 34.2642890	total: 116ms	remaining: 436ms
21:	learn: 33.8196936	total: 121ms	remaining: 427ms
22:	learn: 33.4205669	total: 125ms	remaining: 419ms
23:	learn: 32.8565493	total: 130ms	remaining: 412ms
24:	learn: 32.5287132	total: 134ms	remaining: 403ms
25:	learn: 32.2142064	total: 139ms	remaining: 396ms
26:	learn: 31.9258854	total: 144ms	remaining: 390ms
27:	learn: 31.4083665	total: 149ms	remaining: 384ms
28:	learn: 31.1615620	total: 155ms	remaining: 378ms
29:	learn: 30.6948867	total: 159ms	remaining: 372ms
30:	learn: 30.3185108	total: 164ms	remaining: 366ms
31:	learn: 29.9245223	total: 169ms	remaining: 359ms
32:	learn: 29.6683643	total: 174ms	remaining: 353ms
33:	learn: 29.3868143	total: 179ms	remaining: 347ms
34:	learn: 29.1105699	total: 183ms	remaining: 340ms
35:	learn: 28.8274848	total: 188ms	remaining: 334ms
36:	learn: 28.5478288	total: 193ms	remaining: 328ms
37:	learn: 28.2355121	total: 198ms	remaining: 323ms
38:	learn: 28.0182564	total: 203ms	remaining: 317ms
39:	learn: 27.7654405	total: 207ms	remaining: 311ms
40:	learn: 27.5720477	total: 213ms	remaining: 306ms
41:	learn: 27.3182782	total: 217ms	remaining: 300ms
42:	learn: 26.9504431	total: 222ms	remaining: 294ms
43:	learn: 26.7281906	total: 227ms	remaining: 288ms
44:	learn: 26.5390008	total: 231ms	remaining: 283ms
45:	learn: 26.3781338	total: 236ms	remaining: 277ms
46:	learn: 26.1763177	total: 241ms	remaining: 272ms
47:	learn: 25.9417647	total: 246ms	remaining: 266ms
48:	learn: 25.7528045	total: 251ms	remaining: 262ms
49:	learn: 25.6336897	total: 256ms	remaining: 256ms
50:	learn: 25.4800426	total: 261ms	remaining: 251ms
51:	learn: 25.2895681	total: 266ms	remaining: 246ms
52:	learn: 25.0827111	total: 271ms	remaining: 241ms
53:	learn: 24.7987678	total: 276ms	remaining: 235ms
54:	learn: 24.6309982	total: 285ms	remaining: 233ms
55:	learn: 24.3526776	total: 297ms	remaining: 234ms
56:	learn: 24.1689125	total: 304ms	remaining: 230ms
57:	learn: 23.9802039	total: 312ms	remaining: 226ms
58:	learn: 23.8059432	total: 319ms	remaining: 222ms
59:	learn: 23.6006403	total: 325ms	remaining: 217ms
60:	learn: 23.2948382	total: 331ms	remaining: 212ms
61:	learn: 23.1338922	total: 337ms	remaining: 207ms
62:	learn: 22.9581269	total: 343ms	remaining: 202ms
63:	learn: 22.8263127	total: 349ms	remaining: 196ms
64:	learn: 22.6966006	total: 355ms	remaining: 191ms
65:	learn: 22.6012389	total: 361ms	remaining: 186ms
66:	learn: 22.4220244	total: 367ms	remaining: 181ms
67:	learn: 22.3148342	total: 373ms	remaining: 175ms
68:	learn: 22.1543592	total: 378ms	remaining: 170ms
69:	learn: 22.0614050	total: 383ms	remaining: 164ms
70:	learn: 21.9134025	total: 388ms	remaining: 158ms
71:	learn: 21.8198101	total: 393ms	remaining: 153ms
72:	learn: 21.6944173	total: 398ms	remaining: 147ms
73:	learn: 21.4727420	total: 403ms	remaining: 141ms
74:	learn: 21.3000560	total: 407ms	remaining: 136ms
75:	learn: 21.1884740	total: 412ms	remaining: 130ms
76:	learn: 21.0321317	total: 417ms	remaining: 125ms
77:	learn: 20.9371793	total: 422ms	remaining: 119ms
78:	learn: 20.6800341	total: 427ms	remaining: 113ms
79:	learn: 20.5629904	total: 432ms	remaining: 108ms
80:	learn: 20.4098217	total: 437ms	remaining: 103ms
81:	learn: 20.2139261	total: 442ms	remaining: 97ms
82:	learn: 20.1024260	total: 448ms	remaining: 91.7ms
83:	learn: 19.9835855	total: 453ms	remaining: 86.2ms
84:	learn: 19.9018880	total: 458ms	remaining: 80.8ms
85:	learn: 19.7819843	total: 463ms	remaining: 75.4ms
86:	learn: 19.6352780	total: 469ms	remaining: 70ms
87:	learn: 19.4888328	total: 479ms	remaining: 65.3ms
88:	learn: 19.4365121	total: 487ms	remaining: 60.1ms
89:	learn: 19.3427430	total: 493ms	remaining: 54.8ms
90:	learn: 19.2884907	total: 501ms	remaining: 49.5ms
91:	learn: 19.1898932	total: 506ms	remaining: 44ms
92:	learn: 19.0775661	total: 511ms	remaining: 38.5ms
93:	learn: 19.0334055	total: 516ms	remaining: 33ms
94:	learn: 18.9381916	total: 522ms	remaining: 27.5ms
95:	learn: 18.8471198	total: 527ms	remaining: 21.9ms
96:	learn: 18.7136478	total: 532ms	remaining: 16.4ms
97:	learn: 18.6633102	total: 537ms	remaining: 11ms
98:	learn: 18.5887516	total: 542ms	remaining: 5.47ms
99:	learn: 18.4841597	total: 546ms	remaining: 0us
0:	learn: 46.2172336	total: 5.33ms	remaining: 528ms
1:	learn: 45.4248871	total: 10.5ms	remaining: 515ms
2:	learn: 44.8702937	total: 15.5ms	remaining: 500ms
3:	learn: 44.2019212	total: 20.3ms	remaining: 488ms
4:	learn: 43.4805210	total: 25.1ms	remaining: 477ms
5:	learn: 42.7336269	total: 29.7ms	remaining: 466ms
6:	learn: 42.0396670	total: 34.5ms	remaining: 458ms
7:	learn: 41.5668459	total: 39.3ms	remaining: 452ms
8:	learn: 40.8999125	total: 44.4ms	remaining: 449ms
9:	learn: 40.3358512	total: 49.4ms	remaining: 444ms
10:	learn: 39.7511489	total: 54ms	remaining: 437ms
11:	learn: 39.0775416	total: 59.1ms	remaining: 433ms
12:	learn: 38.5204735	total: 64ms	remaining: 428ms
13:	learn: 38.2087509	total: 69.1ms	remaining: 425ms
14:	learn: 37.7259552	total: 74.1ms	remaining: 420ms
15:	learn: 37.1646397	total: 79.3ms	remaining: 416ms
16:	learn: 36.7093520	total: 84ms	remaining: 410ms
17:	learn: 36.2212308	total: 91.5ms	remaining: 417ms
18:	learn: 35.8682156	total: 99.7ms	remaining: 425ms
19:	learn: 35.6026383	total: 110ms	remaining: 441ms
20:	learn: 35.1739725	total: 117ms	remaining: 438ms
21:	learn: 34.5938003	total: 124ms	remaining: 439ms
22:	learn: 34.1479056	total: 130ms	remaining: 434ms
23:	learn: 33.8759356	total: 135ms	remaining: 428ms
24:	learn: 33.2898426	total: 141ms	remaining: 422ms
25:	learn: 32.9220237	total: 147ms	remaining: 418ms
26:	learn: 32.4324374	total: 152ms	remaining: 412ms
27:	learn: 32.1726327	total: 158ms	remaining: 407ms
28:	learn: 31.8020879	total: 164ms	remaining: 403ms
29:	learn: 31.4329781	total: 170ms	remaining: 397ms
30:	learn: 30.9995282	total: 175ms	remaining: 390ms
31:	learn: 30.6815978	total: 182ms	remaining: 386ms
32:	learn: 30.2991029	total: 188ms	remaining: 381ms
33:	learn: 30.0354202	total: 192ms	remaining: 373ms
34:	learn: 29.7620535	total: 197ms	remaining: 366ms
35:	learn: 29.4552589	total: 202ms	remaining: 359ms
36:	learn: 29.2634399	total: 206ms	remaining: 351ms
37:	learn: 28.8345135	total: 211ms	remaining: 345ms
38:	learn: 28.5551142	total: 216ms	remaining: 338ms
39:	learn: 28.3258809	total: 220ms	remaining: 331ms
40:	learn: 28.0835564	total: 225ms	remaining: 324ms
41:	learn: 27.7517159	total: 230ms	remaining: 318ms
42:	learn: 27.5427595	total: 235ms	remaining: 311ms
43:	learn: 27.3925105	total: 239ms	remaining: 305ms
44:	learn: 27.2377120	total: 244ms	remaining: 299ms
45:	learn: 26.9930398	total: 249ms	remaining: 292ms
46:	learn: 26.7748687	total: 254ms	remaining: 286ms
47:	learn: 26.5856986	total: 259ms	remaining: 281ms
48:	learn: 26.4344153	total: 264ms	remaining: 275ms
49:	learn: 26.3263456	total: 269ms	remaining: 269ms
50:	learn: 26.2048412	total: 275ms	remaining: 264ms
51:	learn: 26.0608546	total: 280ms	remaining: 258ms
52:	learn: 25.9428146	total: 286ms	remaining: 254ms
53:	learn: 25.7578029	total: 298ms	remaining: 254ms
54:	learn: 25.5696792	total: 308ms	remaining: 252ms
55:	learn: 25.3291935	total: 314ms	remaining: 246ms
56:	learn: 25.1388942	total: 320ms	remaining: 242ms
57:	learn: 24.9853945	total: 325ms	remaining: 236ms
58:	learn: 24.8037785	total: 330ms	remaining: 229ms
59:	learn: 24.5326704	total: 334ms	remaining: 223ms
60:	learn: 24.2208240	total: 339ms	remaining: 217ms
61:	learn: 24.0774015	total: 343ms	remaining: 211ms
62:	learn: 23.9705824	total: 348ms	remaining: 204ms
63:	learn: 23.8877665	total: 353ms	remaining: 198ms
64:	learn: 23.7309043	total: 358ms	remaining: 193ms
65:	learn: 23.5820140	total: 362ms	remaining: 187ms
66:	learn: 23.3762012	total: 367ms	remaining: 181ms
67:	learn: 23.2317502	total: 372ms	remaining: 175ms
68:	learn: 23.0868331	total: 377ms	remaining: 169ms
69:	learn: 22.9642758	total: 381ms	remaining: 163ms
70:	learn: 22.8085341	total: 386ms	remaining: 158ms
71:	learn: 22.6834294	total: 391ms	remaining: 152ms
72:	learn: 22.6152922	total: 396ms	remaining: 146ms
73:	learn: 22.3675145	total: 401ms	remaining: 141ms
74:	learn: 22.3023338	total: 405ms	remaining: 135ms
75:	learn: 22.1866833	total: 410ms	remaining: 129ms
76:	learn: 22.0163130	total: 415ms	remaining: 124ms
77:	learn: 21.9691306	total: 419ms	remaining: 118ms
78:	learn: 21.9004647	total: 424ms	remaining: 113ms
79:	learn: 21.7931869	total: 429ms	remaining: 107ms
80:	learn: 21.6747916	total: 433ms	remaining: 102ms
81:	learn: 21.5187568	total: 438ms	remaining: 96.1ms
82:	learn: 21.3124880	total: 443ms	remaining: 90.8ms
83:	learn: 21.1979524	total: 448ms	remaining: 85.3ms
84:	learn: 21.1311130	total: 452ms	remaining: 79.8ms
85:	learn: 21.0606062	total: 457ms	remaining: 74.4ms
86:	learn: 20.9900935	total: 463ms	remaining: 69.1ms
87:	learn: 20.8908054	total: 468ms	remaining: 63.8ms
88:	learn: 20.8088525	total: 473ms	remaining: 58.4ms
89:	learn: 20.7300955	total: 478ms	remaining: 53.1ms
90:	learn: 20.6130276	total: 483ms	remaining: 47.8ms
91:	learn: 20.5437508	total: 492ms	remaining: 42.8ms
92:	learn: 20.5029426	total: 501ms	remaining: 37.7ms
93:	learn: 20.4416708	total: 509ms	remaining: 32.5ms
94:	learn: 20.3917812	total: 518ms	remaining: 27.2ms
95:	learn: 20.3305024	total: 523ms	remaining: 21.8ms
96:	learn: 20.2375704	total: 529ms	remaining: 16.4ms
97:	learn: 20.1835197	total: 534ms	remaining: 10.9ms
98:	learn: 20.1246834	total: 540ms	remaining: 5.45ms
99:	learn: 20.0506334	total: 545ms	remaining: 0us
0:	learn: 46.7334648	total: 4.94ms	remaining: 489ms
1:	learn: 46.2069876	total: 9.82ms	remaining: 481ms
2:	learn: 45.3699967	total: 14.5ms	remaining: 468ms
3:	learn: 44.6866787	total: 19.1ms	remaining: 459ms
4:	learn: 43.8536031	total: 23.7ms	remaining: 451ms
5:	learn: 43.4716853	total: 28.6ms	remaining: 448ms
6:	learn: 42.9929637	total: 33.2ms	remaining: 441ms
7:	learn: 42.4952169	total: 37.8ms	remaining: 435ms
8:	learn: 41.7548337	total: 42.4ms	remaining: 429ms
9:	learn: 41.1054415	total: 47.4ms	remaining: 426ms
10:	learn: 40.4827492	total: 52.1ms	remaining: 421ms
11:	learn: 39.7605907	total: 56.7ms	remaining: 416ms
12:	learn: 39.2532558	total: 61.8ms	remaining: 414ms
13:	learn: 38.6572753	total: 66.4ms	remaining: 408ms
14:	learn: 38.2886959	total: 71ms	remaining: 402ms
15:	learn: 37.7816612	total: 75.8ms	remaining: 398ms
16:	learn: 37.1680589	total: 81ms	remaining: 395ms
17:	learn: 36.5753004	total: 86.2ms	remaining: 393ms
18:	learn: 36.2339458	total: 91.5ms	remaining: 390ms
19:	learn: 35.9159716	total: 97ms	remaining: 388ms
20:	learn: 35.4591743	total: 102ms	remaining: 385ms
21:	learn: 34.8726070	total: 112ms	remaining: 396ms
22:	learn: 34.3903591	total: 121ms	remaining: 406ms
23:	learn: 34.1236827	total: 128ms	remaining: 406ms
24:	learn: 33.8026540	total: 134ms	remaining: 403ms
25:	learn: 33.4594822	total: 140ms	remaining: 398ms
26:	learn: 33.1338910	total: 145ms	remaining: 391ms
27:	learn: 32.8527106	total: 149ms	remaining: 384ms
28:	learn: 32.4923829	total: 154ms	remaining: 378ms
29:	learn: 32.0560533	total: 159ms	remaining: 372ms
30:	learn: 31.6614408	total: 164ms	remaining: 365ms
31:	learn: 31.2796040	total: 169ms	remaining: 359ms
32:	learn: 30.8214741	total: 174ms	remaining: 353ms
33:	learn: 30.5908694	total: 179ms	remaining: 347ms
34:	learn: 30.3637356	total: 183ms	remaining: 341ms
35:	learn: 30.0446511	total: 188ms	remaining: 335ms
36:	learn: 29.8792549	total: 193ms	remaining: 329ms
37:	learn: 29.5488457	total: 198ms	remaining: 323ms
38:	learn: 29.2808568	total: 203ms	remaining: 318ms
39:	learn: 29.0603765	total: 208ms	remaining: 312ms
40:	learn: 28.8272425	total: 213ms	remaining: 306ms
41:	learn: 28.4753580	total: 218ms	remaining: 301ms
42:	learn: 28.2963614	total: 223ms	remaining: 295ms
43:	learn: 28.1054768	total: 228ms	remaining: 290ms
44:	learn: 27.9038093	total: 233ms	remaining: 284ms
45:	learn: 27.6305487	total: 238ms	remaining: 279ms
46:	learn: 27.4457907	total: 243ms	remaining: 274ms
47:	learn: 27.1855957	total: 248ms	remaining: 268ms
48:	learn: 26.9987934	total: 253ms	remaining: 263ms
49:	learn: 26.7881067	total: 257ms	remaining: 257ms
50:	learn: 26.6385231	total: 262ms	remaining: 252ms
51:	learn: 26.4661755	total: 266ms	remaining: 246ms
52:	learn: 26.3331868	total: 271ms	remaining: 240ms
53:	learn: 26.0353476	total: 276ms	remaining: 235ms
54:	learn: 25.8257147	total: 281ms	remaining: 230ms
55:	learn: 25.5924383	total: 289ms	remaining: 227ms
56:	learn: 25.4082209	total: 296ms	remaining: 223ms
57:	learn: 25.2350104	total: 304ms	remaining: 220ms
58:	learn: 25.1789867	total: 309ms	remaining: 215ms
59:	learn: 24.9111359	total: 315ms	remaining: 210ms
60:	learn: 24.6314503	total: 322ms	remaining: 206ms
61:	learn: 24.4297999	total: 328ms	remaining: 201ms
62:	learn: 24.3126171	total: 333ms	remaining: 196ms
63:	learn: 24.1544005	total: 340ms	remaining: 191ms
64:	learn: 24.0197950	total: 346ms	remaining: 186ms
65:	learn: 23.8483087	total: 352ms	remaining: 181ms
66:	learn: 23.6624915	total: 357ms	remaining: 176ms
67:	learn: 23.5068105	total: 363ms	remaining: 171ms
68:	learn: 23.4266187	total: 369ms	remaining: 166ms
69:	learn: 23.3535388	total: 375ms	remaining: 161ms
70:	learn: 23.2477190	total: 381ms	remaining: 156ms
71:	learn: 23.1877634	total: 387ms	remaining: 150ms
72:	learn: 23.1344720	total: 392ms	remaining: 145ms
73:	learn: 22.9498234	total: 398ms	remaining: 140ms
74:	learn: 22.9068295	total: 404ms	remaining: 135ms
75:	learn: 22.7368434	total: 410ms	remaining: 129ms
76:	learn: 22.6084901	total: 415ms	remaining: 124ms
77:	learn: 22.4690295	total: 420ms	remaining: 118ms
78:	learn: 22.3970100	total: 424ms	remaining: 113ms
79:	learn: 22.3025537	total: 429ms	remaining: 107ms
80:	learn: 22.2089293	total: 434ms	remaining: 102ms
81:	learn: 22.0522107	total: 438ms	remaining: 96.2ms
82:	learn: 21.9368213	total: 443ms	remaining: 90.8ms
83:	learn: 21.7968322	total: 448ms	remaining: 85.4ms
84:	learn: 21.7416164	total: 453ms	remaining: 79.9ms
85:	learn: 21.6031099	total: 457ms	remaining: 74.5ms
86:	learn: 21.4530627	total: 462ms	remaining: 69.1ms
87:	learn: 21.3118417	total: 467ms	remaining: 63.7ms
88:	learn: 21.2760431	total: 472ms	remaining: 58.3ms
89:	learn: 21.2071350	total: 477ms	remaining: 53ms
90:	learn: 21.1051001	total: 482ms	remaining: 47.7ms
91:	learn: 21.0246142	total: 487ms	remaining: 42.4ms
92:	learn: 20.9834999	total: 492ms	remaining: 37.1ms
93:	learn: 20.8989393	total: 497ms	remaining: 31.7ms
94:	learn: 20.8262231	total: 506ms	remaining: 26.6ms
95:	learn: 20.7369110	total: 513ms	remaining: 21.4ms
96:	learn: 20.6409587	total: 521ms	remaining: 16.1ms
97:	learn: 20.5553641	total: 527ms	remaining: 10.8ms
98:	learn: 20.4317232	total: 532ms	remaining: 5.37ms
99:	learn: 20.3708681	total: 537ms	remaining: 0us
0:	learn: 27.6737479	total: 20.4ms	remaining: 6.1s
1:	learn: 27.3204154	total: 40.2ms	remaining: 6s
2:	learn: 26.9091890	total: 60.8ms	remaining: 6.02s
3:	learn: 26.4875027	total: 81.3ms	remaining: 6.01s
4:	learn: 26.1185303	total: 83.4ms	remaining: 4.92s
5:	learn: 25.8552625	total: 104ms	remaining: 5.11s
6:	learn: 25.5259340	total: 127ms	remaining: 5.31s
7:	learn: 25.1594330	total: 160ms	remaining: 5.84s
8:	learn: 24.8131787	total: 183ms	remaining: 5.92s
9:	learn: 24.5107101	total: 206ms	remaining: 5.96s
10:	learn: 24.1382533	total: 228ms	remaining: 5.98s
11:	learn: 23.9059068	total: 250ms	remaining: 5.99s
12:	learn: 23.5820314	total: 269ms	remaining: 5.93s
13:	learn: 23.2566481	total: 290ms	remaining: 5.93s
14:	learn: 22.9720100	total: 311ms	remaining: 5.91s
15:	learn: 22.6458045	total: 334ms	remaining: 5.93s
16:	learn: 22.3310792	total: 362ms	remaining: 6.02s
17:	learn: 22.0614254	total: 382ms	remaining: 5.98s
18:	learn: 21.8674093	total: 402ms	remaining: 5.95s
19:	learn: 21.6777228	total: 421ms	remaining: 5.9s
20:	learn: 21.4758843	total: 440ms	remaining: 5.85s
21:	learn: 21.2015722	total: 461ms	remaining: 5.82s
22:	learn: 20.9741180	total: 481ms	remaining: 5.79s
23:	learn: 20.8103315	total: 500ms	remaining: 5.75s
24:	learn: 20.6059519	total: 520ms	remaining: 5.72s
25:	learn: 20.3003482	total: 542ms	remaining: 5.71s
26:	learn: 20.1047051	total: 576ms	remaining: 5.82s
27:	learn: 19.9117545	total: 601ms	remaining: 5.84s
28:	learn: 19.7508802	total: 625ms	remaining: 5.84s
29:	learn: 19.5995500	total: 649ms	remaining: 5.84s
30:	learn: 19.4265011	total: 674ms	remaining: 5.84s
31:	learn: 19.2507253	total: 695ms	remaining: 5.82s
32:	learn: 19.0780638	total: 718ms	remaining: 5.8s
33:	learn: 18.8739495	total: 740ms	remaining: 5.79s
34:	learn: 18.6951687	total: 764ms	remaining: 5.78s
35:	learn: 18.5423419	total: 795ms	remaining: 5.83s
36:	learn: 18.3650169	total: 818ms	remaining: 5.82s
37:	learn: 18.1741271	total: 840ms	remaining: 5.79s
38:	learn: 18.0512035	total: 861ms	remaining: 5.76s
39:	learn: 17.9045476	total: 882ms	remaining: 5.74s
40:	learn: 17.7669779	total: 905ms	remaining: 5.71s
41:	learn: 17.6440484	total: 927ms	remaining: 5.69s
42:	learn: 17.4832065	total: 948ms	remaining: 5.66s
43:	learn: 17.3307814	total: 970ms	remaining: 5.64s
44:	learn: 17.1968371	total: 994ms	remaining: 5.63s
45:	learn: 17.0551367	total: 1.03s	remaining: 5.67s
46:	learn: 16.9663187	total: 1.05s	remaining: 5.66s
47:	learn: 16.8379611	total: 1.07s	remaining: 5.64s
48:	learn: 16.7219020	total: 1.1s	remaining: 5.62s
49:	learn: 16.6155465	total: 1.12s	remaining: 5.61s
50:	learn: 16.5139205	total: 1.14s	remaining: 5.59s
51:	learn: 16.3531147	total: 1.15s	remaining: 5.49s
52:	learn: 16.2763831	total: 1.17s	remaining: 5.46s
53:	learn: 16.1694133	total: 1.19s	remaining: 5.44s
54:	learn: 16.0589004	total: 1.22s	remaining: 5.42s
55:	learn: 15.9660704	total: 1.24s	remaining: 5.41s
56:	learn: 15.8765659	total: 1.26s	remaining: 5.39s
57:	learn: 15.7724924	total: 1.28s	remaining: 5.35s
58:	learn: 15.6865252	total: 1.3s	remaining: 5.33s
59:	learn: 15.6055417	total: 1.32s	remaining: 5.3s
60:	learn: 15.5264778	total: 1.35s	remaining: 5.28s
61:	learn: 15.4370145	total: 1.37s	remaining: 5.25s
62:	learn: 15.3562945	total: 1.39s	remaining: 5.22s
63:	learn: 15.2817484	total: 1.41s	remaining: 5.2s
64:	learn: 15.1941732	total: 1.44s	remaining: 5.21s
65:	learn: 15.1049991	total: 1.46s	remaining: 5.19s
66:	learn: 15.0359663	total: 1.49s	remaining: 5.17s
67:	learn: 14.9351417	total: 1.51s	remaining: 5.15s
68:	learn: 14.8495497	total: 1.53s	remaining: 5.13s
69:	learn: 14.7623093	total: 1.55s	remaining: 5.1s
70:	learn: 14.6771574	total: 1.57s	remaining: 5.07s
71:	learn: 14.5978140	total: 1.59s	remaining: 5.05s
72:	learn: 14.5375886	total: 1.61s	remaining: 5.02s
73:	learn: 14.4649353	total: 1.64s	remaining: 5.01s
74:	learn: 14.4009644	total: 1.67s	remaining: 5s
75:	learn: 14.3287275	total: 1.69s	remaining: 4.97s
76:	learn: 14.2318571	total: 1.71s	remaining: 4.94s
77:	learn: 14.1625701	total: 1.73s	remaining: 4.92s
78:	learn: 14.0644282	total: 1.75s	remaining: 4.89s
79:	learn: 13.9762883	total: 1.77s	remaining: 4.87s
80:	learn: 13.9042920	total: 1.79s	remaining: 4.84s
81:	learn: 13.8176535	total: 1.81s	remaining: 4.82s
82:	learn: 13.6910849	total: 1.83s	remaining: 4.8s
83:	learn: 13.5737570	total: 1.86s	remaining: 4.78s
84:	learn: 13.5049845	total: 1.9s	remaining: 4.79s
85:	learn: 13.4341145	total: 1.92s	remaining: 4.77s
86:	learn: 13.3796196	total: 1.94s	remaining: 4.75s
87:	learn: 13.3024352	total: 1.96s	remaining: 4.73s
88:	learn: 13.2435566	total: 1.99s	remaining: 4.71s
89:	learn: 13.1910369	total: 2s	remaining: 4.68s
90:	learn: 13.1471565	total: 2.03s	remaining: 4.65s
91:	learn: 13.0611063	total: 2.05s	remaining: 4.63s
92:	learn: 12.9909112	total: 2.07s	remaining: 4.61s
93:	learn: 12.9355316	total: 2.1s	remaining: 4.6s
94:	learn: 12.8561480	total: 2.12s	remaining: 4.58s
95:	learn: 12.7929803	total: 2.14s	remaining: 4.56s
96:	learn: 12.7262412	total: 2.17s	remaining: 4.53s
97:	learn: 12.6739210	total: 2.19s	remaining: 4.51s
98:	learn: 12.6265593	total: 2.21s	remaining: 4.48s
99:	learn: 12.5594247	total: 2.23s	remaining: 4.45s
100:	learn: 12.4986691	total: 2.25s	remaining: 4.43s
101:	learn: 12.4471027	total: 2.27s	remaining: 4.41s
102:	learn: 12.3962782	total: 2.29s	remaining: 4.39s
103:	learn: 12.3424090	total: 2.32s	remaining: 4.38s
104:	learn: 12.2660971	total: 2.35s	remaining: 4.36s
105:	learn: 12.2042689	total: 2.37s	remaining: 4.33s
106:	learn: 12.1363044	total: 2.39s	remaining: 4.31s
107:	learn: 12.1022229	total: 2.41s	remaining: 4.29s
108:	learn: 12.0491052	total: 2.43s	remaining: 4.26s
109:	learn: 11.9900598	total: 2.45s	remaining: 4.24s
110:	learn: 11.9411055	total: 2.47s	remaining: 4.21s
111:	learn: 11.8782485	total: 2.5s	remaining: 4.19s
112:	learn: 11.8248797	total: 2.53s	remaining: 4.18s
113:	learn: 11.7750338	total: 2.55s	remaining: 4.16s
114:	learn: 11.7390791	total: 2.57s	remaining: 4.14s
115:	learn: 11.6795857	total: 2.59s	remaining: 4.11s
116:	learn: 11.5948258	total: 2.61s	remaining: 4.09s
117:	learn: 11.5598943	total: 2.63s	remaining: 4.06s
118:	learn: 11.4992434	total: 2.65s	remaining: 4.04s
119:	learn: 11.4491317	total: 2.68s	remaining: 4.02s
120:	learn: 11.3929630	total: 2.7s	remaining: 3.99s
121:	learn: 11.3373664	total: 2.72s	remaining: 3.97s
122:	learn: 11.2805890	total: 2.75s	remaining: 3.96s
123:	learn: 11.2341228	total: 2.78s	remaining: 3.94s
124:	learn: 11.1615505	total: 2.8s	remaining: 3.93s
125:	learn: 11.1024523	total: 2.83s	remaining: 3.91s
126:	learn: 11.0710084	total: 2.85s	remaining: 3.88s
127:	learn: 11.0251377	total: 2.87s	remaining: 3.86s
128:	learn: 10.9884605	total: 2.9s	remaining: 3.84s
129:	learn: 10.9584488	total: 2.92s	remaining: 3.82s
130:	learn: 10.8995848	total: 2.95s	remaining: 3.81s
131:	learn: 10.8549250	total: 2.98s	remaining: 3.79s
132:	learn: 10.8113067	total: 3s	remaining: 3.76s
133:	learn: 10.7553419	total: 3.02s	remaining: 3.74s
134:	learn: 10.7096544	total: 3.04s	remaining: 3.72s
135:	learn: 10.6757190	total: 3.06s	remaining: 3.69s
136:	learn: 10.6327685	total: 3.09s	remaining: 3.67s
137:	learn: 10.5902988	total: 3.11s	remaining: 3.65s
138:	learn: 10.5467376	total: 3.13s	remaining: 3.63s
139:	learn: 10.5163592	total: 3.16s	remaining: 3.62s
140:	learn: 10.4694138	total: 3.19s	remaining: 3.6s
141:	learn: 10.4359855	total: 3.21s	remaining: 3.58s
142:	learn: 10.4057439	total: 3.24s	remaining: 3.55s
143:	learn: 10.3729240	total: 3.26s	remaining: 3.53s
144:	learn: 10.3359301	total: 3.28s	remaining: 3.51s
145:	learn: 10.2697670	total: 3.3s	remaining: 3.48s
146:	learn: 10.2094154	total: 3.32s	remaining: 3.46s
147:	learn: 10.1600330	total: 3.35s	remaining: 3.44s
148:	learn: 10.1308425	total: 3.37s	remaining: 3.42s
149:	learn: 10.0855107	total: 3.4s	remaining: 3.4s
150:	learn: 10.0385460	total: 3.42s	remaining: 3.38s
151:	learn: 10.0087773	total: 3.44s	remaining: 3.35s
152:	learn: 9.9793744	total: 3.47s	remaining: 3.33s
153:	learn: 9.9525485	total: 3.49s	remaining: 3.31s
154:	learn: 9.9079941	total: 3.51s	remaining: 3.28s
155:	learn: 9.8778723	total: 3.53s	remaining: 3.26s
156:	learn: 9.8246060	total: 3.55s	remaining: 3.23s
157:	learn: 9.7894878	total: 3.58s	remaining: 3.22s
158:	learn: 9.7484967	total: 3.61s	remaining: 3.2s
159:	learn: 9.7248391	total: 3.63s	remaining: 3.18s
160:	learn: 9.7014264	total: 3.65s	remaining: 3.15s
161:	learn: 9.6583834	total: 3.68s	remaining: 3.13s
162:	learn: 9.6144299	total: 3.7s	remaining: 3.11s
163:	learn: 9.5794995	total: 3.72s	remaining: 3.09s
164:	learn: 9.5550633	total: 3.75s	remaining: 3.06s
165:	learn: 9.5026632	total: 3.77s	remaining: 3.04s
166:	learn: 9.4633969	total: 3.79s	remaining: 3.02s
167:	learn: 9.4104818	total: 3.82s	remaining: 3s
168:	learn: 9.3845831	total: 3.84s	remaining: 2.98s
169:	learn: 9.3337722	total: 3.87s	remaining: 2.96s
170:	learn: 9.2837197	total: 3.89s	remaining: 2.93s
171:	learn: 9.2466766	total: 3.91s	remaining: 2.91s
172:	learn: 9.2085127	total: 3.93s	remaining: 2.88s
173:	learn: 9.1694480	total: 3.95s	remaining: 2.86s
174:	learn: 9.1448907	total: 3.97s	remaining: 2.84s
175:	learn: 9.1013106	total: 3.99s	remaining: 2.81s
176:	learn: 9.0696815	total: 4.02s	remaining: 2.79s
177:	learn: 9.0279616	total: 4.05s	remaining: 2.77s
178:	learn: 9.0008978	total: 4.07s	remaining: 2.75s
179:	learn: 8.9449905	total: 4.09s	remaining: 2.73s
180:	learn: 8.9263735	total: 4.12s	remaining: 2.71s
181:	learn: 8.9082117	total: 4.14s	remaining: 2.68s
182:	learn: 8.8590211	total: 4.16s	remaining: 2.66s
183:	learn: 8.8398014	total: 4.18s	remaining: 2.64s
184:	learn: 8.7991374	total: 4.2s	remaining: 2.61s
185:	learn: 8.7574091	total: 4.23s	remaining: 2.59s
186:	learn: 8.7075149	total: 4.25s	remaining: 2.57s
187:	learn: 8.6651276	total: 4.27s	remaining: 2.54s
188:	learn: 8.6299124	total: 4.29s	remaining: 2.52s
189:	learn: 8.6039208	total: 4.31s	remaining: 2.5s
190:	learn: 8.5623097	total: 4.33s	remaining: 2.47s
191:	learn: 8.5109100	total: 4.35s	remaining: 2.45s
192:	learn: 8.4793653	total: 4.38s	remaining: 2.42s
193:	learn: 8.4481462	total: 4.39s	remaining: 2.4s
194:	learn: 8.4315766	total: 4.42s	remaining: 2.38s
195:	learn: 8.3834417	total: 4.44s	remaining: 2.35s
196:	learn: 8.3680774	total: 4.47s	remaining: 2.34s
197:	learn: 8.3496623	total: 4.49s	remaining: 2.31s
198:	learn: 8.3148580	total: 4.51s	remaining: 2.29s
199:	learn: 8.3052914	total: 4.54s	remaining: 2.27s
200:	learn: 8.2594410	total: 4.56s	remaining: 2.25s
201:	learn: 8.2470590	total: 4.58s	remaining: 2.22s
202:	learn: 8.2316760	total: 4.6s	remaining: 2.2s
203:	learn: 8.2041569	total: 4.62s	remaining: 2.17s
204:	learn: 8.1708835	total: 4.64s	remaining: 2.15s
205:	learn: 8.1301413	total: 4.67s	remaining: 2.13s
206:	learn: 8.0986826	total: 4.7s	remaining: 2.11s
207:	learn: 8.0741059	total: 4.72s	remaining: 2.09s
208:	learn: 8.0244528	total: 4.74s	remaining: 2.06s
209:	learn: 7.9989744	total: 4.76s	remaining: 2.04s
210:	learn: 7.9696573	total: 4.78s	remaining: 2.02s
211:	learn: 7.9396203	total: 4.8s	remaining: 1.99s
212:	learn: 7.9111124	total: 4.82s	remaining: 1.97s
213:	learn: 7.9007758	total: 4.85s	remaining: 1.95s
214:	learn: 7.8856958	total: 4.88s	remaining: 1.93s
215:	learn: 7.8685173	total: 4.9s	remaining: 1.91s
216:	learn: 7.8488503	total: 4.93s	remaining: 1.88s
217:	learn: 7.8127011	total: 4.95s	remaining: 1.86s
218:	learn: 7.7610464	total: 4.97s	remaining: 1.84s
219:	learn: 7.7371633	total: 5s	remaining: 1.82s
220:	learn: 7.7075772	total: 5.02s	remaining: 1.79s
221:	learn: 7.6862440	total: 5.04s	remaining: 1.77s
222:	learn: 7.6387389	total: 5.06s	remaining: 1.75s
223:	learn: 7.6039931	total: 5.09s	remaining: 1.73s
224:	learn: 7.5780873	total: 5.11s	remaining: 1.7s
225:	learn: 7.5366573	total: 5.13s	remaining: 1.68s
226:	learn: 7.5117065	total: 5.16s	remaining: 1.66s
227:	learn: 7.4849508	total: 5.18s	remaining: 1.64s
228:	learn: 7.4536731	total: 5.2s	remaining: 1.61s
229:	learn: 7.4238760	total: 5.22s	remaining: 1.59s
230:	learn: 7.4054602	total: 5.24s	remaining: 1.57s
231:	learn: 7.3841419	total: 5.26s	remaining: 1.54s
232:	learn: 7.3712995	total: 5.29s	remaining: 1.52s
233:	learn: 7.3403269	total: 5.32s	remaining: 1.5s
234:	learn: 7.3293521	total: 5.34s	remaining: 1.48s
235:	learn: 7.2977701	total: 5.37s	remaining: 1.46s
236:	learn: 7.2879483	total: 5.39s	remaining: 1.43s
237:	learn: 7.2651195	total: 5.41s	remaining: 1.41s
238:	learn: 7.2349887	total: 5.43s	remaining: 1.39s
239:	learn: 7.1998166	total: 5.46s	remaining: 1.36s
240:	learn: 7.1916439	total: 5.48s	remaining: 1.34s
241:	learn: 7.1651373	total: 5.51s	remaining: 1.32s
242:	learn: 7.1381913	total: 5.53s	remaining: 1.3s
243:	learn: 7.1196857	total: 5.55s	remaining: 1.27s
244:	learn: 7.1129330	total: 5.57s	remaining: 1.25s
245:	learn: 7.0917288	total: 5.6s	remaining: 1.23s
246:	learn: 7.0643221	total: 5.62s	remaining: 1.21s
247:	learn: 7.0355381	total: 5.64s	remaining: 1.18s
248:	learn: 7.0175711	total: 5.66s	remaining: 1.16s
249:	learn: 6.9969066	total: 5.69s	remaining: 1.14s
250:	learn: 6.9647213	total: 5.71s	remaining: 1.11s
251:	learn: 6.9543141	total: 5.74s	remaining: 1.09s
252:	learn: 6.9265098	total: 5.76s	remaining: 1.07s
253:	learn: 6.9022725	total: 5.79s	remaining: 1.05s
254:	learn: 6.8497254	total: 5.81s	remaining: 1.02s
255:	learn: 6.8285154	total: 5.83s	remaining: 1s
256:	learn: 6.8011995	total: 5.86s	remaining: 980ms
257:	learn: 6.7933719	total: 5.88s	remaining: 957ms
258:	learn: 6.7690265	total: 5.9s	remaining: 934ms
259:	learn: 6.7470688	total: 5.92s	remaining: 911ms
260:	learn: 6.7282782	total: 5.95s	remaining: 890ms
261:	learn: 6.6980892	total: 5.98s	remaining: 867ms
262:	learn: 6.6788044	total: 6s	remaining: 844ms
263:	learn: 6.6507208	total: 6.02s	remaining: 821ms
264:	learn: 6.6299738	total: 6.04s	remaining: 798ms
265:	learn: 6.6146145	total: 6.07s	remaining: 775ms
266:	learn: 6.5960711	total: 6.09s	remaining: 752ms
267:	learn: 6.5601064	total: 6.11s	remaining: 730ms
268:	learn: 6.5439209	total: 6.13s	remaining: 707ms
269:	learn: 6.5302107	total: 6.17s	remaining: 685ms
270:	learn: 6.5075739	total: 6.19s	remaining: 662ms
271:	learn: 6.4875851	total: 6.21s	remaining: 640ms
272:	learn: 6.4779171	total: 6.24s	remaining: 617ms
273:	learn: 6.4677739	total: 6.26s	remaining: 594ms
274:	learn: 6.4375131	total: 6.28s	remaining: 571ms
275:	learn: 6.4223197	total: 6.3s	remaining: 548ms
276:	learn: 6.4163633	total: 6.33s	remaining: 525ms
277:	learn: 6.4084438	total: 6.35s	remaining: 503ms
278:	learn: 6.3795757	total: 6.38s	remaining: 480ms
279:	learn: 6.3670166	total: 6.4s	remaining: 457ms
280:	learn: 6.3426010	total: 6.42s	remaining: 434ms
281:	learn: 6.3363177	total: 6.44s	remaining: 411ms
282:	learn: 6.3138385	total: 6.47s	remaining: 388ms
283:	learn: 6.2894060	total: 6.49s	remaining: 366ms
284:	learn: 6.2767007	total: 6.51s	remaining: 343ms
285:	learn: 6.2607815	total: 6.53s	remaining: 320ms
286:	learn: 6.2368751	total: 6.55s	remaining: 297ms
287:	learn: 6.2218151	total: 6.59s	remaining: 274ms
288:	learn: 6.2147193	total: 6.61s	remaining: 252ms
289:	learn: 6.1817002	total: 6.64s	remaining: 229ms
290:	learn: 6.1531900	total: 6.66s	remaining: 206ms
291:	learn: 6.1438157	total: 6.68s	remaining: 183ms
292:	learn: 6.1311550	total: 6.7s	remaining: 160ms
293:	learn: 6.1171744	total: 6.72s	remaining: 137ms
294:	learn: 6.1079932	total: 6.75s	remaining: 114ms
295:	learn: 6.0989063	total: 6.77s	remaining: 91.5ms
296:	learn: 6.0740401	total: 6.8s	remaining: 68.7ms
297:	learn: 6.0685711	total: 6.82s	remaining: 45.8ms
298:	learn: 6.0601135	total: 6.84s	remaining: 22.9ms
299:	learn: 6.0486579	total: 6.87s	remaining: 0us
0:	learn: 43.1728564	total: 21.9ms	remaining: 6.55s
1:	learn: 42.4479145	total: 44.9ms	remaining: 6.69s
2:	learn: 41.7618107	total: 75.6ms	remaining: 7.48s
3:	learn: 40.9535516	total: 100ms	remaining: 7.4s
4:	learn: 40.0184714	total: 125ms	remaining: 7.36s
5:	learn: 39.3975364	total: 148ms	remaining: 7.25s
6:	learn: 38.5285936	total: 170ms	remaining: 7.1s
7:	learn: 37.7229272	total: 191ms	remaining: 6.97s
8:	learn: 37.0918758	total: 212ms	remaining: 6.85s
9:	learn: 36.3564673	total: 231ms	remaining: 6.71s
10:	learn: 35.6811958	total: 252ms	remaining: 6.63s
11:	learn: 35.0050014	total: 273ms	remaining: 6.55s
12:	learn: 34.2960554	total: 303ms	remaining: 6.69s
13:	learn: 33.5236859	total: 326ms	remaining: 6.66s
14:	learn: 32.9402676	total: 328ms	remaining: 6.23s
15:	learn: 32.4523166	total: 349ms	remaining: 6.2s
16:	learn: 31.8840373	total: 368ms	remaining: 6.12s
17:	learn: 31.3075678	total: 387ms	remaining: 6.06s
18:	learn: 30.8876354	total: 409ms	remaining: 6.05s
19:	learn: 30.3498359	total: 430ms	remaining: 6.02s
20:	learn: 29.9235491	total: 452ms	remaining: 6s
21:	learn: 29.3980753	total: 480ms	remaining: 6.06s
22:	learn: 28.8855360	total: 505ms	remaining: 6.08s
23:	learn: 28.4464905	total: 528ms	remaining: 6.07s
24:	learn: 28.0340761	total: 541ms	remaining: 5.95s
25:	learn: 27.6857355	total: 564ms	remaining: 5.94s
26:	learn: 27.3334889	total: 586ms	remaining: 5.92s
27:	learn: 26.8330294	total: 609ms	remaining: 5.92s
28:	learn: 26.4299332	total: 630ms	remaining: 5.88s
29:	learn: 26.0045444	total: 651ms	remaining: 5.86s
30:	learn: 25.6006582	total: 673ms	remaining: 5.84s
31:	learn: 25.2312981	total: 695ms	remaining: 5.82s
32:	learn: 25.0083092	total: 726ms	remaining: 5.88s
33:	learn: 24.6611713	total: 750ms	remaining: 5.87s
34:	learn: 24.4598997	total: 771ms	remaining: 5.83s
35:	learn: 24.2341422	total: 791ms	remaining: 5.8s
36:	learn: 23.9210171	total: 813ms	remaining: 5.78s
37:	learn: 23.5299198	total: 836ms	remaining: 5.76s
38:	learn: 23.1652368	total: 858ms	remaining: 5.74s
39:	learn: 22.8941103	total: 879ms	remaining: 5.72s
40:	learn: 22.7084206	total: 901ms	remaining: 5.69s
41:	learn: 22.4654978	total: 924ms	remaining: 5.68s
42:	learn: 22.2302580	total: 959ms	remaining: 5.73s
43:	learn: 21.9408933	total: 982ms	remaining: 5.71s
44:	learn: 21.6779272	total: 1s	remaining: 5.69s
45:	learn: 21.5124883	total: 1.03s	remaining: 5.67s
46:	learn: 21.3803106	total: 1.05s	remaining: 5.65s
47:	learn: 21.2298916	total: 1.07s	remaining: 5.62s
48:	learn: 21.0336901	total: 1.09s	remaining: 5.6s
49:	learn: 20.7943434	total: 1.11s	remaining: 5.57s
50:	learn: 20.5676348	total: 1.14s	remaining: 5.55s
51:	learn: 20.3427273	total: 1.15s	remaining: 5.5s
52:	learn: 20.1024296	total: 1.18s	remaining: 5.48s
53:	learn: 19.9885265	total: 1.2s	remaining: 5.46s
54:	learn: 19.8413355	total: 1.22s	remaining: 5.43s
55:	learn: 19.7099619	total: 1.24s	remaining: 5.4s
56:	learn: 19.5311747	total: 1.26s	remaining: 5.38s
57:	learn: 19.3665040	total: 1.28s	remaining: 5.35s
58:	learn: 19.2281415	total: 1.3s	remaining: 5.32s
59:	learn: 19.1106495	total: 1.32s	remaining: 5.29s
60:	learn: 18.9927263	total: 1.34s	remaining: 5.27s
61:	learn: 18.7654626	total: 1.38s	remaining: 5.28s
62:	learn: 18.6108661	total: 1.4s	remaining: 5.26s
63:	learn: 18.4817806	total: 1.42s	remaining: 5.24s
64:	learn: 18.3632402	total: 1.44s	remaining: 5.22s
65:	learn: 18.2653457	total: 1.47s	remaining: 5.2s
66:	learn: 18.1378819	total: 1.49s	remaining: 5.17s
67:	learn: 18.0459629	total: 1.51s	remaining: 5.15s
68:	learn: 17.9001044	total: 1.53s	remaining: 5.12s
69:	learn: 17.7073203	total: 1.55s	remaining: 5.1s
70:	learn: 17.5276628	total: 1.58s	remaining: 5.11s
71:	learn: 17.4386086	total: 1.61s	remaining: 5.09s
72:	learn: 17.2890096	total: 1.63s	remaining: 5.06s
73:	learn: 17.1904631	total: 1.65s	remaining: 5.04s
74:	learn: 17.0955197	total: 1.67s	remaining: 5.02s
75:	learn: 16.9924303	total: 1.7s	remaining: 5s
76:	learn: 16.8972682	total: 1.72s	remaining: 4.97s
77:	learn: 16.7957864	total: 1.74s	remaining: 4.95s
78:	learn: 16.6405248	total: 1.76s	remaining: 4.93s
79:	learn: 16.5463991	total: 1.79s	remaining: 4.93s
80:	learn: 16.4622871	total: 1.82s	remaining: 4.91s
81:	learn: 16.3624916	total: 1.84s	remaining: 4.89s
82:	learn: 16.2073706	total: 1.86s	remaining: 4.87s
83:	learn: 16.0716875	total: 1.89s	remaining: 4.86s
84:	learn: 15.9336151	total: 1.91s	remaining: 4.83s
85:	learn: 15.8451501	total: 1.93s	remaining: 4.81s
86:	learn: 15.7200917	total: 1.95s	remaining: 4.78s
87:	learn: 15.6236971	total: 1.98s	remaining: 4.76s
88:	learn: 15.5479129	total: 2.01s	remaining: 4.76s
89:	learn: 15.4975079	total: 2.03s	remaining: 4.74s
90:	learn: 15.4083433	total: 2.05s	remaining: 4.71s
91:	learn: 15.3169327	total: 2.07s	remaining: 4.69s
92:	learn: 15.2207992	total: 2.1s	remaining: 4.66s
93:	learn: 15.1430327	total: 2.12s	remaining: 4.64s
94:	learn: 15.0665711	total: 2.14s	remaining: 4.62s
95:	learn: 14.9903534	total: 2.16s	remaining: 4.59s
96:	learn: 14.9054346	total: 2.19s	remaining: 4.58s
97:	learn: 14.7940457	total: 2.21s	remaining: 4.57s
98:	learn: 14.7008915	total: 2.24s	remaining: 4.55s
99:	learn: 14.6142673	total: 2.26s	remaining: 4.53s
100:	learn: 14.5337996	total: 2.29s	remaining: 4.51s
101:	learn: 14.4571728	total: 2.31s	remaining: 4.49s
102:	learn: 14.3898956	total: 2.33s	remaining: 4.46s
103:	learn: 14.3189412	total: 2.35s	remaining: 4.44s
104:	learn: 14.2525935	total: 2.38s	remaining: 4.41s
105:	learn: 14.1772436	total: 2.4s	remaining: 4.4s
106:	learn: 14.1059305	total: 2.43s	remaining: 4.38s
107:	learn: 14.0232782	total: 2.45s	remaining: 4.36s
108:	learn: 13.9368806	total: 2.47s	remaining: 4.33s
109:	learn: 13.8491229	total: 2.5s	remaining: 4.31s
110:	learn: 13.7685490	total: 2.52s	remaining: 4.29s
111:	learn: 13.6836750	total: 2.54s	remaining: 4.26s
112:	learn: 13.6202897	total: 2.56s	remaining: 4.24s
113:	learn: 13.5688904	total: 2.58s	remaining: 4.22s
114:	learn: 13.5145238	total: 2.61s	remaining: 4.2s
115:	learn: 13.4247466	total: 2.64s	remaining: 4.19s
116:	learn: 13.3307114	total: 2.66s	remaining: 4.17s
117:	learn: 13.2545184	total: 2.69s	remaining: 4.15s
118:	learn: 13.1996548	total: 2.71s	remaining: 4.13s
119:	learn: 13.1205307	total: 2.73s	remaining: 4.1s
120:	learn: 13.0479027	total: 2.76s	remaining: 4.08s
121:	learn: 12.9970441	total: 2.78s	remaining: 4.06s
122:	learn: 12.9295209	total: 2.8s	remaining: 4.03s
123:	learn: 12.8673524	total: 2.83s	remaining: 4.01s
124:	learn: 12.7786245	total: 2.85s	remaining: 4s
125:	learn: 12.7348929	total: 2.88s	remaining: 3.97s
126:	learn: 12.6858554	total: 2.9s	remaining: 3.95s
127:	learn: 12.6189787	total: 2.92s	remaining: 3.92s
128:	learn: 12.5864827	total: 2.94s	remaining: 3.9s
129:	learn: 12.5478404	total: 2.96s	remaining: 3.87s
130:	learn: 12.5017820	total: 2.98s	remaining: 3.85s
131:	learn: 12.4491462	total: 3s	remaining: 3.82s
132:	learn: 12.3822056	total: 3.03s	remaining: 3.8s
133:	learn: 12.3098651	total: 3.06s	remaining: 3.79s
134:	learn: 12.2531700	total: 3.08s	remaining: 3.77s
135:	learn: 12.2119331	total: 3.11s	remaining: 3.75s
136:	learn: 12.1571278	total: 3.13s	remaining: 3.73s
137:	learn: 12.0976094	total: 3.15s	remaining: 3.7s
138:	learn: 12.0025352	total: 3.18s	remaining: 3.68s
139:	learn: 11.9019074	total: 3.2s	remaining: 3.66s
140:	learn: 11.7854852	total: 3.22s	remaining: 3.63s
141:	learn: 11.7104078	total: 3.25s	remaining: 3.61s
142:	learn: 11.6741366	total: 3.28s	remaining: 3.6s
143:	learn: 11.6077195	total: 3.3s	remaining: 3.58s
144:	learn: 11.5496695	total: 3.32s	remaining: 3.55s
145:	learn: 11.4568800	total: 3.34s	remaining: 3.53s
146:	learn: 11.4368150	total: 3.37s	remaining: 3.5s
147:	learn: 11.3955813	total: 3.39s	remaining: 3.48s
148:	learn: 11.3565385	total: 3.41s	remaining: 3.45s
149:	learn: 11.3020845	total: 3.43s	remaining: 3.43s
150:	learn: 11.2130390	total: 3.45s	remaining: 3.4s
151:	learn: 11.1401745	total: 3.47s	remaining: 3.38s
152:	learn: 11.1048934	total: 3.5s	remaining: 3.37s
153:	learn: 11.0709933	total: 3.53s	remaining: 3.35s
154:	learn: 11.0212519	total: 3.55s	remaining: 3.32s
155:	learn: 10.9258762	total: 3.57s	remaining: 3.3s
156:	learn: 10.8429657	total: 3.6s	remaining: 3.28s
157:	learn: 10.8061370	total: 3.62s	remaining: 3.25s
158:	learn: 10.7571211	total: 3.64s	remaining: 3.23s
159:	learn: 10.6698987	total: 3.66s	remaining: 3.2s
160:	learn: 10.6228772	total: 3.68s	remaining: 3.18s
161:	learn: 10.5368796	total: 3.7s	remaining: 3.15s
162:	learn: 10.4841450	total: 3.73s	remaining: 3.13s
163:	learn: 10.4012317	total: 3.75s	remaining: 3.11s
164:	learn: 10.3588701	total: 3.77s	remaining: 3.09s
165:	learn: 10.2816720	total: 3.79s	remaining: 3.06s
166:	learn: 10.2259651	total: 3.81s	remaining: 3.04s
167:	learn: 10.1792554	total: 3.84s	remaining: 3.01s
168:	learn: 10.1604671	total: 3.86s	remaining: 2.99s
169:	learn: 10.1318986	total: 3.88s	remaining: 2.96s
170:	learn: 10.0948065	total: 3.9s	remaining: 2.94s
171:	learn: 10.0521191	total: 3.92s	remaining: 2.92s
172:	learn: 9.9946157	total: 3.95s	remaining: 2.9s
173:	learn: 9.9313678	total: 3.98s	remaining: 2.88s
174:	learn: 9.9156434	total: 4s	remaining: 2.86s
175:	learn: 9.8749788	total: 4.02s	remaining: 2.83s
176:	learn: 9.8485079	total: 4.04s	remaining: 2.81s
177:	learn: 9.8134329	total: 4.06s	remaining: 2.78s
178:	learn: 9.7880107	total: 4.08s	remaining: 2.76s
179:	learn: 9.7587885	total: 4.11s	remaining: 2.74s
180:	learn: 9.6939238	total: 4.13s	remaining: 2.71s
181:	learn: 9.6447939	total: 4.15s	remaining: 2.69s
182:	learn: 9.6136022	total: 4.18s	remaining: 2.67s
183:	learn: 9.5885675	total: 4.2s	remaining: 2.65s
184:	learn: 9.5271670	total: 4.22s	remaining: 2.62s
185:	learn: 9.4616988	total: 4.24s	remaining: 2.6s
186:	learn: 9.4287637	total: 4.26s	remaining: 2.58s
187:	learn: 9.3948177	total: 4.28s	remaining: 2.55s
188:	learn: 9.3767726	total: 4.3s	remaining: 2.53s
189:	learn: 9.3473555	total: 4.32s	remaining: 2.5s
190:	learn: 9.3099572	total: 4.35s	remaining: 2.48s
191:	learn: 9.2799642	total: 4.38s	remaining: 2.46s
192:	learn: 9.2505323	total: 4.4s	remaining: 2.44s
193:	learn: 9.2173510	total: 4.42s	remaining: 2.42s
194:	learn: 9.1746531	total: 4.45s	remaining: 2.39s
195:	learn: 9.1354668	total: 4.47s	remaining: 2.37s
196:	learn: 9.0983547	total: 4.49s	remaining: 2.35s
197:	learn: 9.0615111	total: 4.51s	remaining: 2.32s
198:	learn: 9.0239666	total: 4.53s	remaining: 2.3s
199:	learn: 8.9906083	total: 4.55s	remaining: 2.28s
200:	learn: 8.9458694	total: 4.57s	remaining: 2.25s
201:	learn: 8.9040783	total: 4.6s	remaining: 2.23s
202:	learn: 8.8495189	total: 4.62s	remaining: 2.21s
203:	learn: 8.8243403	total: 4.64s	remaining: 2.19s
204:	learn: 8.7930532	total: 4.67s	remaining: 2.16s
205:	learn: 8.7587095	total: 4.69s	remaining: 2.14s
206:	learn: 8.7177051	total: 4.71s	remaining: 2.11s
207:	learn: 8.6879684	total: 4.73s	remaining: 2.09s
208:	learn: 8.6681622	total: 4.75s	remaining: 2.07s
209:	learn: 8.6299257	total: 4.77s	remaining: 2.04s
210:	learn: 8.5728096	total: 4.8s	remaining: 2.02s
211:	learn: 8.5456345	total: 4.82s	remaining: 2s
212:	learn: 8.5000514	total: 4.85s	remaining: 1.98s
213:	learn: 8.4814393	total: 4.87s	remaining: 1.96s
214:	learn: 8.4512752	total: 4.89s	remaining: 1.93s
215:	learn: 8.4144221	total: 4.92s	remaining: 1.91s
216:	learn: 8.3817886	total: 4.93s	remaining: 1.89s
217:	learn: 8.3392143	total: 4.95s	remaining: 1.86s
218:	learn: 8.3102751	total: 4.98s	remaining: 1.84s
219:	learn: 8.2963441	total: 5s	remaining: 1.82s
220:	learn: 8.2666907	total: 5.03s	remaining: 1.8s
221:	learn: 8.2470955	total: 5.05s	remaining: 1.77s
222:	learn: 8.2352635	total: 5.07s	remaining: 1.75s
223:	learn: 8.2046605	total: 5.09s	remaining: 1.73s
224:	learn: 8.1746742	total: 5.13s	remaining: 1.71s
225:	learn: 8.1466704	total: 5.15s	remaining: 1.69s
226:	learn: 8.1113762	total: 5.17s	remaining: 1.66s
227:	learn: 8.0842520	total: 5.2s	remaining: 1.64s
228:	learn: 8.0619499	total: 5.22s	remaining: 1.62s
229:	learn: 8.0391421	total: 5.26s	remaining: 1.6s
230:	learn: 8.0082460	total: 5.28s	remaining: 1.58s
231:	learn: 7.9894454	total: 5.31s	remaining: 1.55s
232:	learn: 7.9567828	total: 5.33s	remaining: 1.53s
233:	learn: 7.9394710	total: 5.36s	remaining: 1.51s
234:	learn: 7.9171371	total: 5.39s	remaining: 1.49s
235:	learn: 7.9062197	total: 5.41s	remaining: 1.47s
236:	learn: 7.8803505	total: 5.44s	remaining: 1.45s
237:	learn: 7.8508624	total: 5.47s	remaining: 1.42s
238:	learn: 7.8107215	total: 5.49s	remaining: 1.4s
239:	learn: 7.7758588	total: 5.52s	remaining: 1.38s
240:	learn: 7.7403137	total: 5.54s	remaining: 1.36s
241:	learn: 7.7146933	total: 5.56s	remaining: 1.33s
242:	learn: 7.6876053	total: 5.58s	remaining: 1.31s
243:	learn: 7.6631332	total: 5.6s	remaining: 1.29s
244:	learn: 7.6340717	total: 5.63s	remaining: 1.26s
245:	learn: 7.5835394	total: 5.65s	remaining: 1.24s
246:	learn: 7.5572808	total: 5.68s	remaining: 1.22s
247:	learn: 7.5477260	total: 5.71s	remaining: 1.2s
248:	learn: 7.5230961	total: 5.73s	remaining: 1.17s
249:	learn: 7.4926278	total: 5.75s	remaining: 1.15s
250:	learn: 7.4663059	total: 5.78s	remaining: 1.13s
251:	learn: 7.4439231	total: 5.8s	remaining: 1.1s
252:	learn: 7.4147104	total: 5.82s	remaining: 1.08s
253:	learn: 7.3910399	total: 5.84s	remaining: 1.06s
254:	learn: 7.3694309	total: 5.87s	remaining: 1.04s
255:	learn: 7.3357705	total: 5.89s	remaining: 1.01s
256:	learn: 7.3063747	total: 5.92s	remaining: 990ms
257:	learn: 7.2838572	total: 5.94s	remaining: 967ms
258:	learn: 7.2589764	total: 5.96s	remaining: 943ms
259:	learn: 7.2389253	total: 5.98s	remaining: 920ms
260:	learn: 7.2138913	total: 6s	remaining: 897ms
261:	learn: 7.1886917	total: 6.02s	remaining: 873ms
262:	learn: 7.1772908	total: 6.04s	remaining: 850ms
263:	learn: 7.1578726	total: 6.07s	remaining: 828ms
264:	learn: 7.1353133	total: 6.1s	remaining: 806ms
265:	learn: 7.1102477	total: 6.13s	remaining: 783ms
266:	learn: 7.0828702	total: 6.15s	remaining: 760ms
267:	learn: 7.0597237	total: 6.17s	remaining: 737ms
268:	learn: 7.0365630	total: 6.2s	remaining: 714ms
269:	learn: 7.0146208	total: 6.22s	remaining: 691ms
270:	learn: 6.9967242	total: 6.24s	remaining: 668ms
271:	learn: 6.9790909	total: 6.26s	remaining: 645ms
272:	learn: 6.9693113	total: 6.29s	remaining: 622ms
273:	learn: 6.9594319	total: 6.31s	remaining: 599ms
274:	learn: 6.9391890	total: 6.34s	remaining: 576ms
275:	learn: 6.9254505	total: 6.36s	remaining: 553ms
276:	learn: 6.9024357	total: 6.38s	remaining: 530ms
277:	learn: 6.8754442	total: 6.41s	remaining: 507ms
278:	learn: 6.8502029	total: 6.43s	remaining: 484ms
279:	learn: 6.8142453	total: 6.45s	remaining: 461ms
280:	learn: 6.7927649	total: 6.47s	remaining: 438ms
281:	learn: 6.7640814	total: 6.49s	remaining: 414ms
282:	learn: 6.7463937	total: 6.51s	remaining: 391ms
283:	learn: 6.7403516	total: 6.55s	remaining: 369ms
284:	learn: 6.7206013	total: 6.57s	remaining: 346ms
285:	learn: 6.6875183	total: 6.6s	remaining: 323ms
286:	learn: 6.6609083	total: 6.62s	remaining: 300ms
287:	learn: 6.6545230	total: 6.64s	remaining: 277ms
288:	learn: 6.6358351	total: 6.67s	remaining: 254ms
289:	learn: 6.6175009	total: 6.69s	remaining: 231ms
290:	learn: 6.6067729	total: 6.71s	remaining: 208ms
291:	learn: 6.5970320	total: 6.74s	remaining: 185ms
292:	learn: 6.5837751	total: 6.76s	remaining: 162ms
293:	learn: 6.5625028	total: 6.78s	remaining: 138ms
294:	learn: 6.5530621	total: 6.8s	remaining: 115ms
295:	learn: 6.5478680	total: 6.83s	remaining: 92.3ms
296:	learn: 6.5241879	total: 6.85s	remaining: 69.2ms
297:	learn: 6.5118159	total: 6.87s	remaining: 46.1ms
298:	learn: 6.4919631	total: 6.89s	remaining: 23ms
299:	learn: 6.4739124	total: 6.91s	remaining: 0us
0:	learn: 46.4788614	total: 3.4ms	remaining: 1.02s
1:	learn: 45.7710608	total: 27.2ms	remaining: 4.05s
2:	learn: 45.1565849	total: 50.7ms	remaining: 5.02s
3:	learn: 44.4030902	total: 73ms	remaining: 5.41s
4:	learn: 43.7256714	total: 93.5ms	remaining: 5.51s
5:	learn: 43.0846764	total: 113ms	remaining: 5.56s
6:	learn: 42.3050249	total: 135ms	remaining: 5.64s
7:	learn: 41.5523343	total: 158ms	remaining: 5.76s
8:	learn: 40.7548041	total: 187ms	remaining: 6.04s
9:	learn: 39.8798087	total: 209ms	remaining: 6.05s
10:	learn: 39.3807548	total: 228ms	remaining: 6s
11:	learn: 38.6353297	total: 250ms	remaining: 5.99s
12:	learn: 38.0252968	total: 271ms	remaining: 5.99s
13:	learn: 37.4584814	total: 292ms	remaining: 5.96s
14:	learn: 36.9766267	total: 312ms	remaining: 5.94s
15:	learn: 36.4351844	total: 334ms	remaining: 5.93s
16:	learn: 35.8711532	total: 357ms	remaining: 5.94s
17:	learn: 35.5046170	total: 383ms	remaining: 6s
18:	learn: 34.9410561	total: 410ms	remaining: 6.06s
19:	learn: 34.5414688	total: 433ms	remaining: 6.06s
20:	learn: 34.1994877	total: 456ms	remaining: 6.05s
21:	learn: 33.8105873	total: 478ms	remaining: 6.04s
22:	learn: 33.2767379	total: 497ms	remaining: 5.99s
23:	learn: 32.9293305	total: 518ms	remaining: 5.96s
24:	learn: 32.5563171	total: 540ms	remaining: 5.94s
25:	learn: 32.0312705	total: 561ms	remaining: 5.91s
26:	learn: 31.5549663	total: 584ms	remaining: 5.9s
27:	learn: 31.2152408	total: 611ms	remaining: 5.94s
28:	learn: 30.8335992	total: 632ms	remaining: 5.91s
29:	learn: 30.4437650	total: 653ms	remaining: 5.88s
30:	learn: 30.1139865	total: 674ms	remaining: 5.85s
31:	learn: 29.6348886	total: 695ms	remaining: 5.82s
32:	learn: 29.4374411	total: 717ms	remaining: 5.8s
33:	learn: 29.1774552	total: 736ms	remaining: 5.76s
34:	learn: 28.9121068	total: 757ms	remaining: 5.73s
35:	learn: 28.6291033	total: 780ms	remaining: 5.72s
36:	learn: 28.3365166	total: 803ms	remaining: 5.71s
37:	learn: 28.0654213	total: 833ms	remaining: 5.75s
38:	learn: 27.7120990	total: 857ms	remaining: 5.73s
39:	learn: 27.4700227	total: 879ms	remaining: 5.71s
40:	learn: 27.2052722	total: 902ms	remaining: 5.7s
41:	learn: 26.9401129	total: 925ms	remaining: 5.68s
42:	learn: 26.6081493	total: 947ms	remaining: 5.66s
43:	learn: 26.3847138	total: 969ms	remaining: 5.64s
44:	learn: 26.2201660	total: 992ms	remaining: 5.62s
45:	learn: 26.0513425	total: 1.02s	remaining: 5.66s
46:	learn: 25.8609437	total: 1.05s	remaining: 5.65s
47:	learn: 25.6040252	total: 1.07s	remaining: 5.63s
48:	learn: 25.4235507	total: 1.09s	remaining: 5.61s
49:	learn: 25.2896788	total: 1.12s	remaining: 5.59s
50:	learn: 25.1208197	total: 1.14s	remaining: 5.55s
51:	learn: 24.8660258	total: 1.14s	remaining: 5.45s
52:	learn: 24.6165133	total: 1.16s	remaining: 5.42s
53:	learn: 24.3828983	total: 1.18s	remaining: 5.38s
54:	learn: 24.1841624	total: 1.2s	remaining: 5.36s
55:	learn: 24.0006316	total: 1.23s	remaining: 5.35s
56:	learn: 23.7695363	total: 1.26s	remaining: 5.37s
57:	learn: 23.6284017	total: 1.28s	remaining: 5.36s
58:	learn: 23.4125305	total: 1.31s	remaining: 5.34s
59:	learn: 23.2250456	total: 1.33s	remaining: 5.32s
60:	learn: 23.0467385	total: 1.35s	remaining: 5.3s
61:	learn: 22.7033792	total: 1.38s	remaining: 5.28s
62:	learn: 22.5334580	total: 1.4s	remaining: 5.25s
63:	learn: 22.3638971	total: 1.42s	remaining: 5.22s
64:	learn: 22.1384904	total: 1.44s	remaining: 5.21s
65:	learn: 22.0135698	total: 1.47s	remaining: 5.2s
66:	learn: 21.8734424	total: 1.49s	remaining: 5.18s
67:	learn: 21.7496417	total: 1.51s	remaining: 5.15s
68:	learn: 21.5374284	total: 1.53s	remaining: 5.12s
69:	learn: 21.3371276	total: 1.55s	remaining: 5.1s
70:	learn: 21.0990139	total: 1.57s	remaining: 5.08s
71:	learn: 20.9642590	total: 1.59s	remaining: 5.05s
72:	learn: 20.8049721	total: 1.62s	remaining: 5.03s
73:	learn: 20.7124973	total: 1.64s	remaining: 5s
74:	learn: 20.6049930	total: 1.66s	remaining: 4.98s
75:	learn: 20.4963737	total: 1.69s	remaining: 4.98s
76:	learn: 20.3645418	total: 1.72s	remaining: 4.97s
77:	learn: 20.2519924	total: 1.74s	remaining: 4.95s
78:	learn: 20.0505831	total: 1.76s	remaining: 4.93s
79:	learn: 19.9272769	total: 1.78s	remaining: 4.91s
80:	learn: 19.8219589	total: 1.81s	remaining: 4.89s
81:	learn: 19.7098289	total: 1.83s	remaining: 4.86s
82:	learn: 19.4383686	total: 1.85s	remaining: 4.84s
83:	learn: 19.3315372	total: 1.87s	remaining: 4.82s
84:	learn: 19.2144697	total: 1.9s	remaining: 4.79s
85:	learn: 19.0849701	total: 1.92s	remaining: 4.79s
86:	learn: 18.9769215	total: 1.95s	remaining: 4.77s
87:	learn: 18.8581283	total: 1.97s	remaining: 4.74s
88:	learn: 18.7414069	total: 1.99s	remaining: 4.71s
89:	learn: 18.6649642	total: 2.01s	remaining: 4.69s
90:	learn: 18.5127864	total: 2.03s	remaining: 4.67s
91:	learn: 18.3629102	total: 2.06s	remaining: 4.65s
92:	learn: 18.2624941	total: 2.08s	remaining: 4.63s
93:	learn: 18.1645836	total: 2.1s	remaining: 4.61s
94:	learn: 18.0717273	total: 2.13s	remaining: 4.6s
95:	learn: 17.9594520	total: 2.16s	remaining: 4.59s
96:	learn: 17.8692648	total: 2.18s	remaining: 4.57s
97:	learn: 17.7758009	total: 2.21s	remaining: 4.55s
98:	learn: 17.6633350	total: 2.23s	remaining: 4.53s
99:	learn: 17.5393236	total: 2.25s	remaining: 4.5s
100:	learn: 17.4441841	total: 2.27s	remaining: 4.48s
101:	learn: 17.3636497	total: 2.3s	remaining: 4.46s
102:	learn: 17.2836586	total: 2.32s	remaining: 4.44s
103:	learn: 17.1666480	total: 2.35s	remaining: 4.42s
104:	learn: 17.0603123	total: 2.37s	remaining: 4.41s
105:	learn: 16.9701019	total: 2.39s	remaining: 4.38s
106:	learn: 16.8819325	total: 2.41s	remaining: 4.35s
107:	learn: 16.7800721	total: 2.44s	remaining: 4.33s
108:	learn: 16.6575687	total: 2.46s	remaining: 4.31s
109:	learn: 16.5621285	total: 2.48s	remaining: 4.28s
110:	learn: 16.4805668	total: 2.5s	remaining: 4.26s
111:	learn: 16.3664491	total: 2.52s	remaining: 4.24s
112:	learn: 16.2921576	total: 2.55s	remaining: 4.22s
113:	learn: 16.2123714	total: 2.58s	remaining: 4.21s
114:	learn: 16.1305926	total: 2.6s	remaining: 4.19s
115:	learn: 16.0452681	total: 2.63s	remaining: 4.17s
116:	learn: 15.9356767	total: 2.65s	remaining: 4.14s
117:	learn: 15.8492426	total: 2.67s	remaining: 4.12s
118:	learn: 15.7699169	total: 2.69s	remaining: 4.1s
119:	learn: 15.6746719	total: 2.72s	remaining: 4.07s
120:	learn: 15.5370189	total: 2.74s	remaining: 4.05s
121:	learn: 15.4445148	total: 2.77s	remaining: 4.04s
122:	learn: 15.3396325	total: 2.79s	remaining: 4.02s
123:	learn: 15.2450802	total: 2.81s	remaining: 3.99s
124:	learn: 15.1203998	total: 2.83s	remaining: 3.97s
125:	learn: 15.0601453	total: 2.85s	remaining: 3.94s
126:	learn: 14.9882312	total: 2.88s	remaining: 3.92s
127:	learn: 14.9180283	total: 2.9s	remaining: 3.89s
128:	learn: 14.8526915	total: 2.92s	remaining: 3.87s
129:	learn: 14.7657162	total: 2.95s	remaining: 3.85s
130:	learn: 14.6698595	total: 2.97s	remaining: 3.84s
131:	learn: 14.6346566	total: 2.98s	remaining: 3.79s
132:	learn: 14.5756096	total: 3s	remaining: 3.77s
133:	learn: 14.5030739	total: 3.02s	remaining: 3.75s
134:	learn: 14.3943441	total: 3.05s	remaining: 3.73s
135:	learn: 14.2404537	total: 3.07s	remaining: 3.71s
136:	learn: 14.1761228	total: 3.1s	remaining: 3.68s
137:	learn: 14.1077833	total: 3.12s	remaining: 3.66s
138:	learn: 14.0413537	total: 3.14s	remaining: 3.64s
139:	learn: 13.9757428	total: 3.16s	remaining: 3.62s
140:	learn: 13.8921768	total: 3.19s	remaining: 3.6s
141:	learn: 13.8110381	total: 3.22s	remaining: 3.58s
142:	learn: 13.7257676	total: 3.24s	remaining: 3.56s
143:	learn: 13.6518439	total: 3.26s	remaining: 3.53s
144:	learn: 13.4950736	total: 3.28s	remaining: 3.51s
145:	learn: 13.3977428	total: 3.31s	remaining: 3.49s
146:	learn: 13.3368539	total: 3.33s	remaining: 3.46s
147:	learn: 13.2559100	total: 3.35s	remaining: 3.44s
148:	learn: 13.1574001	total: 3.37s	remaining: 3.42s
149:	learn: 13.0006095	total: 3.4s	remaining: 3.4s
150:	learn: 12.9451554	total: 3.42s	remaining: 3.38s
151:	learn: 12.8348904	total: 3.45s	remaining: 3.36s
152:	learn: 12.7505428	total: 3.47s	remaining: 3.33s
153:	learn: 12.6269434	total: 3.49s	remaining: 3.31s
154:	learn: 12.5693272	total: 3.51s	remaining: 3.29s
155:	learn: 12.5049023	total: 3.53s	remaining: 3.26s
156:	learn: 12.4144067	total: 3.56s	remaining: 3.24s
157:	learn: 12.3672108	total: 3.58s	remaining: 3.22s
158:	learn: 12.2988713	total: 3.61s	remaining: 3.2s
159:	learn: 12.2500411	total: 3.63s	remaining: 3.18s
160:	learn: 12.2002550	total: 3.65s	remaining: 3.15s
161:	learn: 12.0921756	total: 3.67s	remaining: 3.13s
162:	learn: 12.0261456	total: 3.69s	remaining: 3.1s
163:	learn: 11.9595478	total: 3.71s	remaining: 3.08s
164:	learn: 11.9040826	total: 3.73s	remaining: 3.06s
165:	learn: 11.8185631	total: 3.75s	remaining: 3.03s
166:	learn: 11.7394422	total: 3.78s	remaining: 3.01s
167:	learn: 11.6639319	total: 3.8s	remaining: 2.99s
168:	learn: 11.6147181	total: 3.83s	remaining: 2.97s
169:	learn: 11.5761586	total: 3.85s	remaining: 2.95s
170:	learn: 11.4910059	total: 3.88s	remaining: 2.92s
171:	learn: 11.4181227	total: 3.9s	remaining: 2.9s
172:	learn: 11.3626035	total: 3.92s	remaining: 2.88s
173:	learn: 11.2507892	total: 3.94s	remaining: 2.85s
174:	learn: 11.1798403	total: 3.96s	remaining: 2.83s
175:	learn: 11.1190643	total: 3.98s	remaining: 2.81s
176:	learn: 11.0620102	total: 4.01s	remaining: 2.78s
177:	learn: 10.9793884	total: 4.04s	remaining: 2.77s
178:	learn: 10.8968370	total: 4.06s	remaining: 2.74s
179:	learn: 10.8122733	total: 4.08s	remaining: 2.72s
180:	learn: 10.7545856	total: 4.1s	remaining: 2.69s
181:	learn: 10.6836395	total: 4.12s	remaining: 2.67s
182:	learn: 10.6441863	total: 4.14s	remaining: 2.65s
183:	learn: 10.5944997	total: 4.16s	remaining: 2.63s
184:	learn: 10.5161755	total: 4.18s	remaining: 2.6s
185:	learn: 10.4705995	total: 4.21s	remaining: 2.58s
186:	learn: 10.4187076	total: 4.23s	remaining: 2.56s
187:	learn: 10.3683730	total: 4.26s	remaining: 2.54s
188:	learn: 10.3150620	total: 4.28s	remaining: 2.52s
189:	learn: 10.2691155	total: 4.3s	remaining: 2.49s
190:	learn: 10.2272718	total: 4.33s	remaining: 2.47s
191:	learn: 10.1871331	total: 4.35s	remaining: 2.45s
192:	learn: 10.1443128	total: 4.37s	remaining: 2.42s
193:	learn: 10.0668189	total: 4.39s	remaining: 2.4s
194:	learn: 10.0256380	total: 4.41s	remaining: 2.38s
195:	learn: 9.9787956	total: 4.44s	remaining: 2.35s
196:	learn: 9.9322122	total: 4.46s	remaining: 2.33s
197:	learn: 9.8850093	total: 4.49s	remaining: 2.31s
198:	learn: 9.8380140	total: 4.51s	remaining: 2.29s
199:	learn: 9.8106296	total: 4.53s	remaining: 2.26s
200:	learn: 9.7585749	total: 4.55s	remaining: 2.24s
201:	learn: 9.7182879	total: 4.57s	remaining: 2.22s
202:	learn: 9.6821771	total: 4.59s	remaining: 2.19s
203:	learn: 9.6399101	total: 4.61s	remaining: 2.17s
204:	learn: 9.6048849	total: 4.63s	remaining: 2.15s
205:	learn: 9.5638590	total: 4.67s	remaining: 2.13s
206:	learn: 9.5142374	total: 4.69s	remaining: 2.11s
207:	learn: 9.4695144	total: 4.71s	remaining: 2.08s
208:	learn: 9.4331939	total: 4.74s	remaining: 2.06s
209:	learn: 9.3833838	total: 4.76s	remaining: 2.04s
210:	learn: 9.3517645	total: 4.78s	remaining: 2.02s
211:	learn: 9.3163444	total: 4.8s	remaining: 1.99s
212:	learn: 9.2788352	total: 4.82s	remaining: 1.97s
213:	learn: 9.2459289	total: 4.84s	remaining: 1.95s
214:	learn: 9.2104536	total: 4.87s	remaining: 1.93s
215:	learn: 9.1729420	total: 4.89s	remaining: 1.9s
216:	learn: 9.1364121	total: 4.92s	remaining: 1.88s
217:	learn: 9.0970859	total: 4.94s	remaining: 1.86s
218:	learn: 9.0611146	total: 4.96s	remaining: 1.83s
219:	learn: 9.0276741	total: 4.98s	remaining: 1.81s
220:	learn: 8.9977644	total: 5.01s	remaining: 1.79s
221:	learn: 8.9633156	total: 5.03s	remaining: 1.77s
222:	learn: 8.9313136	total: 5.05s	remaining: 1.74s
223:	learn: 8.9023504	total: 5.07s	remaining: 1.72s
224:	learn: 8.8741668	total: 5.11s	remaining: 1.7s
225:	learn: 8.8402639	total: 5.13s	remaining: 1.68s
226:	learn: 8.8061090	total: 5.16s	remaining: 1.66s
227:	learn: 8.7767795	total: 5.18s	remaining: 1.64s
228:	learn: 8.7514356	total: 5.2s	remaining: 1.61s
229:	learn: 8.7118727	total: 5.23s	remaining: 1.59s
230:	learn: 8.6759132	total: 5.25s	remaining: 1.57s
231:	learn: 8.6447220	total: 5.27s	remaining: 1.54s
232:	learn: 8.6102503	total: 5.3s	remaining: 1.52s
233:	learn: 8.5858738	total: 5.32s	remaining: 1.5s
234:	learn: 8.5595561	total: 5.35s	remaining: 1.48s
235:	learn: 8.5313778	total: 5.37s	remaining: 1.46s
236:	learn: 8.5053234	total: 5.4s	remaining: 1.43s
237:	learn: 8.4737268	total: 5.42s	remaining: 1.41s
238:	learn: 8.4414991	total: 5.44s	remaining: 1.39s
239:	learn: 8.4168374	total: 5.46s	remaining: 1.36s
240:	learn: 8.3862136	total: 5.48s	remaining: 1.34s
241:	learn: 8.3454081	total: 5.5s	remaining: 1.32s
242:	learn: 8.3145638	total: 5.53s	remaining: 1.3s
243:	learn: 8.3007136	total: 5.56s	remaining: 1.27s
244:	learn: 8.2708676	total: 5.58s	remaining: 1.25s
245:	learn: 8.2454265	total: 5.61s	remaining: 1.23s
246:	learn: 8.2117256	total: 5.63s	remaining: 1.21s
247:	learn: 8.1846870	total: 5.66s	remaining: 1.19s
248:	learn: 8.1602441	total: 5.68s	remaining: 1.16s
249:	learn: 8.1410728	total: 5.7s	remaining: 1.14s
250:	learn: 8.1138413	total: 5.72s	remaining: 1.12s
251:	learn: 8.0824887	total: 5.75s	remaining: 1.09s
252:	learn: 8.0557089	total: 5.78s	remaining: 1.07s
253:	learn: 8.0378239	total: 5.8s	remaining: 1.05s
254:	learn: 8.0018329	total: 5.82s	remaining: 1.03s
255:	learn: 7.9776523	total: 5.84s	remaining: 1s
256:	learn: 7.9437470	total: 5.86s	remaining: 981ms
257:	learn: 7.9170545	total: 5.88s	remaining: 958ms
258:	learn: 7.9065923	total: 5.9s	remaining: 935ms
259:	learn: 7.8777123	total: 5.93s	remaining: 912ms
260:	learn: 7.8495349	total: 5.95s	remaining: 889ms
261:	learn: 7.8238648	total: 5.98s	remaining: 867ms
262:	learn: 7.8001134	total: 6s	remaining: 845ms
263:	learn: 7.7619007	total: 6.03s	remaining: 822ms
264:	learn: 7.7370130	total: 6.05s	remaining: 799ms
265:	learn: 7.7109084	total: 6.07s	remaining: 776ms
266:	learn: 7.6914677	total: 6.1s	remaining: 754ms
267:	learn: 7.6883177	total: 6.12s	remaining: 731ms
268:	learn: 7.6603652	total: 6.14s	remaining: 708ms
269:	learn: 7.6441569	total: 6.17s	remaining: 686ms
270:	learn: 7.6236642	total: 6.2s	remaining: 663ms
271:	learn: 7.5954955	total: 6.22s	remaining: 640ms
272:	learn: 7.5722024	total: 6.24s	remaining: 617ms
273:	learn: 7.5424505	total: 6.26s	remaining: 594ms
274:	learn: 7.5242764	total: 6.28s	remaining: 571ms
275:	learn: 7.4998291	total: 6.3s	remaining: 548ms
276:	learn: 7.4835526	total: 6.32s	remaining: 525ms
277:	learn: 7.4492474	total: 6.34s	remaining: 502ms
278:	learn: 7.4246335	total: 6.37s	remaining: 479ms
279:	learn: 7.4104530	total: 6.4s	remaining: 457ms
280:	learn: 7.4016977	total: 6.43s	remaining: 435ms
281:	learn: 7.3964367	total: 6.45s	remaining: 412ms
282:	learn: 7.3818806	total: 6.47s	remaining: 389ms
283:	learn: 7.3577327	total: 6.5s	remaining: 366ms
284:	learn: 7.3346564	total: 6.52s	remaining: 343ms
285:	learn: 7.3215898	total: 6.54s	remaining: 320ms
286:	learn: 7.3070161	total: 6.57s	remaining: 297ms
287:	learn: 7.2839231	total: 6.6s	remaining: 275ms
288:	learn: 7.2664252	total: 6.62s	remaining: 252ms
289:	learn: 7.2505303	total: 6.64s	remaining: 229ms
290:	learn: 7.2286141	total: 6.66s	remaining: 206ms
291:	learn: 7.2008212	total: 6.69s	remaining: 183ms
292:	learn: 7.1800203	total: 6.71s	remaining: 160ms
293:	learn: 7.1485097	total: 6.73s	remaining: 137ms
294:	learn: 7.1283191	total: 6.75s	remaining: 114ms
295:	learn: 7.1112866	total: 6.77s	remaining: 91.5ms
296:	learn: 7.0786679	total: 6.8s	remaining: 68.7ms
297:	learn: 7.0685798	total: 6.82s	remaining: 45.8ms
298:	learn: 7.0633802	total: 6.85s	remaining: 22.9ms
299:	learn: 7.0504357	total: 6.87s	remaining: 0us
0:	learn: 46.1068821	total: 2.7ms	remaining: 808ms
1:	learn: 45.5186259	total: 21.9ms	remaining: 3.26s
2:	learn: 44.8982427	total: 44.1ms	remaining: 4.37s
3:	learn: 44.0813314	total: 72.3ms	remaining: 5.35s
4:	learn: 43.3256787	total: 95.4ms	remaining: 5.63s
5:	learn: 42.5989163	total: 115ms	remaining: 5.65s
6:	learn: 41.8412255	total: 137ms	remaining: 5.74s
7:	learn: 41.1629605	total: 157ms	remaining: 5.72s
8:	learn: 40.6649568	total: 177ms	remaining: 5.73s
9:	learn: 40.1755647	total: 198ms	remaining: 5.74s
10:	learn: 39.7843303	total: 218ms	remaining: 5.72s
11:	learn: 39.1263454	total: 239ms	remaining: 5.73s
12:	learn: 38.5049650	total: 261ms	remaining: 5.76s
13:	learn: 37.8816934	total: 289ms	remaining: 5.91s
14:	learn: 37.3925567	total: 316ms	remaining: 6.01s
15:	learn: 36.8080381	total: 338ms	remaining: 6s
16:	learn: 36.1363624	total: 361ms	remaining: 6.01s
17:	learn: 35.8171279	total: 382ms	remaining: 5.99s
18:	learn: 35.2225026	total: 404ms	remaining: 5.97s
19:	learn: 34.7373286	total: 425ms	remaining: 5.95s
20:	learn: 34.2563365	total: 445ms	remaining: 5.91s
21:	learn: 33.9368110	total: 464ms	remaining: 5.87s
22:	learn: 33.5339596	total: 486ms	remaining: 5.85s
23:	learn: 33.2090930	total: 513ms	remaining: 5.9s
24:	learn: 32.8232733	total: 536ms	remaining: 5.9s
25:	learn: 32.5065756	total: 557ms	remaining: 5.87s
26:	learn: 32.0091556	total: 579ms	remaining: 5.85s
27:	learn: 31.5901880	total: 601ms	remaining: 5.84s
28:	learn: 31.2602719	total: 620ms	remaining: 5.79s
29:	learn: 30.9824864	total: 642ms	remaining: 5.78s
30:	learn: 30.6837776	total: 662ms	remaining: 5.74s
31:	learn: 30.3784738	total: 684ms	remaining: 5.73s
32:	learn: 29.9551890	total: 712ms	remaining: 5.76s
33:	learn: 29.6880796	total: 739ms	remaining: 5.78s
34:	learn: 29.3535204	total: 763ms	remaining: 5.77s
35:	learn: 29.0983115	total: 785ms	remaining: 5.76s
36:	learn: 28.8227016	total: 808ms	remaining: 5.74s
37:	learn: 28.5948966	total: 830ms	remaining: 5.72s
38:	learn: 28.2092747	total: 851ms	remaining: 5.7s
39:	learn: 27.9292918	total: 871ms	remaining: 5.66s
40:	learn: 27.6917466	total: 894ms	remaining: 5.64s
41:	learn: 27.3898320	total: 914ms	remaining: 5.61s
42:	learn: 27.1423506	total: 944ms	remaining: 5.64s
43:	learn: 26.9143906	total: 967ms	remaining: 5.63s
44:	learn: 26.6628354	total: 986ms	remaining: 5.59s
45:	learn: 26.4436459	total: 1s	remaining: 5.55s
46:	learn: 26.2699511	total: 1.03s	remaining: 5.54s
47:	learn: 26.0687332	total: 1.05s	remaining: 5.52s
48:	learn: 25.8813257	total: 1.07s	remaining: 5.5s
49:	learn: 25.6417147	total: 1.09s	remaining: 5.48s
50:	learn: 25.4978473	total: 1.11s	remaining: 5.41s
51:	learn: 25.2508826	total: 1.13s	remaining: 5.41s
52:	learn: 24.9957667	total: 1.16s	remaining: 5.42s
53:	learn: 24.7897869	total: 1.19s	remaining: 5.41s
54:	learn: 24.6276395	total: 1.21s	remaining: 5.39s
55:	learn: 24.4484009	total: 1.23s	remaining: 5.37s
56:	learn: 24.2064871	total: 1.25s	remaining: 5.34s
57:	learn: 24.0355794	total: 1.27s	remaining: 5.32s
58:	learn: 23.8623034	total: 1.29s	remaining: 5.29s
59:	learn: 23.6009245	total: 1.32s	remaining: 5.27s
60:	learn: 23.4408382	total: 1.35s	remaining: 5.29s
61:	learn: 23.2362900	total: 1.37s	remaining: 5.26s
62:	learn: 23.0767254	total: 1.39s	remaining: 5.24s
63:	learn: 22.9370310	total: 1.41s	remaining: 5.21s
64:	learn: 22.7482690	total: 1.44s	remaining: 5.2s
65:	learn: 22.5740357	total: 1.46s	remaining: 5.17s
66:	learn: 22.4132876	total: 1.48s	remaining: 5.14s
67:	learn: 22.2551850	total: 1.5s	remaining: 5.13s
68:	learn: 22.0648127	total: 1.52s	remaining: 5.11s
69:	learn: 21.9204326	total: 1.56s	remaining: 5.12s
70:	learn: 21.8002567	total: 1.58s	remaining: 5.1s
71:	learn: 21.6545032	total: 1.6s	remaining: 5.08s
72:	learn: 21.5274427	total: 1.63s	remaining: 5.07s
73:	learn: 21.4235402	total: 1.65s	remaining: 5.05s
74:	learn: 21.2403786	total: 1.67s	remaining: 5.02s
75:	learn: 21.1019776	total: 1.69s	remaining: 5s
76:	learn: 20.9047503	total: 1.72s	remaining: 4.99s
77:	learn: 20.8140012	total: 1.75s	remaining: 4.98s
78:	learn: 20.7064981	total: 1.77s	remaining: 4.96s
79:	learn: 20.6033857	total: 1.79s	remaining: 4.94s
80:	learn: 20.4743532	total: 1.82s	remaining: 4.91s
81:	learn: 20.3272514	total: 1.84s	remaining: 4.89s
82:	learn: 20.2402909	total: 1.86s	remaining: 4.86s
83:	learn: 20.1344566	total: 1.88s	remaining: 4.84s
84:	learn: 19.9630804	total: 1.9s	remaining: 4.82s
85:	learn: 19.8196483	total: 1.93s	remaining: 4.8s
86:	learn: 19.6861323	total: 1.95s	remaining: 4.78s
87:	learn: 19.5689921	total: 1.98s	remaining: 4.78s
88:	learn: 19.4766099	total: 2.01s	remaining: 4.76s
89:	learn: 19.3523859	total: 2.03s	remaining: 4.74s
90:	learn: 19.2512307	total: 2.05s	remaining: 4.72s
91:	learn: 19.1541965	total: 2.08s	remaining: 4.69s
92:	learn: 18.9980138	total: 2.1s	remaining: 4.67s
93:	learn: 18.8241638	total: 2.12s	remaining: 4.66s
94:	learn: 18.6982820	total: 2.15s	remaining: 4.64s
95:	learn: 18.6170939	total: 2.19s	remaining: 4.64s
96:	learn: 18.5216398	total: 2.21s	remaining: 4.63s
97:	learn: 18.4188891	total: 2.23s	remaining: 4.61s
98:	learn: 18.3473321	total: 2.26s	remaining: 4.58s
99:	learn: 18.2744582	total: 2.28s	remaining: 4.56s
100:	learn: 18.1064776	total: 2.31s	remaining: 4.54s
101:	learn: 18.0564103	total: 2.33s	remaining: 4.52s
102:	learn: 17.9684931	total: 2.35s	remaining: 4.5s
103:	learn: 17.8577080	total: 2.38s	remaining: 4.48s
104:	learn: 17.7557863	total: 2.42s	remaining: 4.49s
105:	learn: 17.6830354	total: 2.44s	remaining: 4.47s
106:	learn: 17.5928641	total: 2.47s	remaining: 4.45s
107:	learn: 17.5447625	total: 2.49s	remaining: 4.43s
108:	learn: 17.4830060	total: 2.51s	remaining: 4.41s
109:	learn: 17.3760969	total: 2.54s	remaining: 4.38s
110:	learn: 17.2990516	total: 2.56s	remaining: 4.36s
111:	learn: 17.2626219	total: 2.59s	remaining: 4.34s
112:	learn: 17.1610712	total: 2.62s	remaining: 4.33s
113:	learn: 17.1129518	total: 2.64s	remaining: 4.31s
114:	learn: 16.9637799	total: 2.67s	remaining: 4.29s
115:	learn: 16.8724617	total: 2.69s	remaining: 4.27s
116:	learn: 16.7990982	total: 2.71s	remaining: 4.24s
117:	learn: 16.7354572	total: 2.73s	remaining: 4.22s
118:	learn: 16.6225750	total: 2.75s	remaining: 4.19s
119:	learn: 16.5778971	total: 2.78s	remaining: 4.16s
120:	learn: 16.5383915	total: 2.82s	remaining: 4.17s
121:	learn: 16.4801189	total: 2.85s	remaining: 4.15s
122:	learn: 16.3909340	total: 2.87s	remaining: 4.13s
123:	learn: 16.3129754	total: 2.89s	remaining: 4.11s
124:	learn: 16.2430907	total: 2.92s	remaining: 4.08s
125:	learn: 16.1779646	total: 2.94s	remaining: 4.06s
126:	learn: 16.1162194	total: 2.96s	remaining: 4.03s
127:	learn: 16.0084749	total: 2.98s	remaining: 4.01s
128:	learn: 15.9268705	total: 3s	remaining: 3.98s
129:	learn: 15.8770194	total: 3.03s	remaining: 3.97s
130:	learn: 15.8445342	total: 3.06s	remaining: 3.94s
131:	learn: 15.7799082	total: 3.08s	remaining: 3.92s
132:	learn: 15.7225612	total: 3.1s	remaining: 3.89s
133:	learn: 15.6327986	total: 3.12s	remaining: 3.87s
134:	learn: 15.5560479	total: 3.14s	remaining: 3.84s
135:	learn: 15.4650063	total: 3.17s	remaining: 3.82s
136:	learn: 15.4439565	total: 3.19s	remaining: 3.79s
137:	learn: 15.3723683	total: 3.21s	remaining: 3.77s
138:	learn: 15.2867520	total: 3.23s	remaining: 3.74s
139:	learn: 15.2008060	total: 3.26s	remaining: 3.73s
140:	learn: 15.1226253	total: 3.28s	remaining: 3.7s
141:	learn: 15.0392603	total: 3.31s	remaining: 3.68s
142:	learn: 15.0209441	total: 3.33s	remaining: 3.65s
143:	learn: 14.9691162	total: 3.35s	remaining: 3.63s
144:	learn: 14.8809723	total: 3.37s	remaining: 3.6s
145:	learn: 14.7790501	total: 3.39s	remaining: 3.58s
146:	learn: 14.7124707	total: 3.41s	remaining: 3.55s
147:	learn: 14.6505409	total: 3.43s	remaining: 3.53s
148:	learn: 14.5977957	total: 3.45s	remaining: 3.5s
149:	learn: 14.4563773	total: 3.48s	remaining: 3.48s
150:	learn: 14.3903954	total: 3.5s	remaining: 3.46s
151:	learn: 14.3677191	total: 3.52s	remaining: 3.43s
152:	learn: 14.3170088	total: 3.54s	remaining: 3.4s
153:	learn: 14.2212460	total: 3.56s	remaining: 3.38s
154:	learn: 14.1865067	total: 3.58s	remaining: 3.35s
155:	learn: 14.1133763	total: 3.6s	remaining: 3.33s
156:	learn: 14.0632935	total: 3.63s	remaining: 3.3s
157:	learn: 14.0317962	total: 3.65s	remaining: 3.28s
158:	learn: 13.9531527	total: 3.67s	remaining: 3.26s
159:	learn: 13.9361664	total: 3.7s	remaining: 3.24s
160:	learn: 13.8152344	total: 3.72s	remaining: 3.21s
161:	learn: 13.7794016	total: 3.74s	remaining: 3.19s
162:	learn: 13.7554484	total: 3.77s	remaining: 3.17s
163:	learn: 13.6786599	total: 3.79s	remaining: 3.14s
164:	learn: 13.6580934	total: 3.81s	remaining: 3.12s
165:	learn: 13.6135467	total: 3.83s	remaining: 3.09s
166:	learn: 13.5774402	total: 3.85s	remaining: 3.07s
167:	learn: 13.4665364	total: 3.87s	remaining: 3.04s
168:	learn: 13.4457745	total: 3.9s	remaining: 3.02s
169:	learn: 13.4313272	total: 3.92s	remaining: 3s
170:	learn: 13.3740130	total: 3.94s	remaining: 2.97s
171:	learn: 13.3012082	total: 3.96s	remaining: 2.95s
172:	learn: 13.2580888	total: 3.98s	remaining: 2.92s
173:	learn: 13.2260963	total: 4s	remaining: 2.9s
174:	learn: 13.1934687	total: 4.03s	remaining: 2.88s
175:	learn: 13.1567898	total: 4.05s	remaining: 2.85s
176:	learn: 13.1207167	total: 4.07s	remaining: 2.83s
177:	learn: 13.0453975	total: 4.09s	remaining: 2.8s
178:	learn: 12.9667806	total: 4.12s	remaining: 2.78s
179:	learn: 12.9050987	total: 4.15s	remaining: 2.77s
180:	learn: 12.7877614	total: 4.17s	remaining: 2.74s
181:	learn: 12.7246635	total: 4.2s	remaining: 2.72s
182:	learn: 12.6649785	total: 4.22s	remaining: 2.7s
183:	learn: 12.5966292	total: 4.24s	remaining: 2.67s
184:	learn: 12.5791866	total: 4.26s	remaining: 2.65s
185:	learn: 12.5265550	total: 4.29s	remaining: 2.63s
186:	learn: 12.4747790	total: 4.31s	remaining: 2.6s
187:	learn: 12.3639334	total: 4.34s	remaining: 2.58s
188:	learn: 12.3060104	total: 4.36s	remaining: 2.56s
189:	learn: 12.2108815	total: 4.38s	remaining: 2.54s
190:	learn: 12.1295363	total: 4.41s	remaining: 2.52s
191:	learn: 12.0828143	total: 4.43s	remaining: 2.49s
192:	learn: 12.0650770	total: 4.45s	remaining: 2.47s
193:	learn: 11.9979395	total: 4.48s	remaining: 2.44s
194:	learn: 11.9754814	total: 4.5s	remaining: 2.42s
195:	learn: 11.9328555	total: 4.52s	remaining: 2.4s
196:	learn: 11.9122042	total: 4.54s	remaining: 2.37s
197:	learn: 11.8518842	total: 4.57s	remaining: 2.35s
198:	learn: 11.8304153	total: 4.59s	remaining: 2.33s
199:	learn: 11.8121741	total: 4.62s	remaining: 2.31s
200:	learn: 11.7411942	total: 4.64s	remaining: 2.29s
201:	learn: 11.7329288	total: 4.66s	remaining: 2.26s
202:	learn: 11.7074830	total: 4.68s	remaining: 2.24s
203:	learn: 11.6479110	total: 4.7s	remaining: 2.21s
204:	learn: 11.6341037	total: 4.72s	remaining: 2.19s
205:	learn: 11.5703505	total: 4.75s	remaining: 2.17s
206:	learn: 11.5415491	total: 4.77s	remaining: 2.14s
207:	learn: 11.5016416	total: 4.79s	remaining: 2.12s
208:	learn: 11.4843453	total: 4.82s	remaining: 2.1s
209:	learn: 11.4556878	total: 4.84s	remaining: 2.08s
210:	learn: 11.3953637	total: 4.87s	remaining: 2.05s
211:	learn: 11.3640248	total: 4.89s	remaining: 2.03s
212:	learn: 11.3189656	total: 4.91s	remaining: 2.01s
213:	learn: 11.3023318	total: 4.94s	remaining: 1.99s
214:	learn: 11.2812809	total: 4.96s	remaining: 1.96s
215:	learn: 11.2649164	total: 5s	remaining: 1.94s
216:	learn: 11.2249674	total: 5.02s	remaining: 1.92s
217:	learn: 11.1694593	total: 5.05s	remaining: 1.9s
218:	learn: 11.1504747	total: 5.07s	remaining: 1.88s
219:	learn: 11.1099205	total: 5.1s	remaining: 1.85s
220:	learn: 11.0946598	total: 5.12s	remaining: 1.83s
221:	learn: 11.0335988	total: 5.15s	remaining: 1.81s
222:	learn: 11.0096492	total: 5.17s	remaining: 1.78s
223:	learn: 10.9672501	total: 5.21s	remaining: 1.77s
224:	learn: 10.9507570	total: 5.23s	remaining: 1.74s
225:	learn: 10.9314289	total: 5.25s	remaining: 1.72s
226:	learn: 10.8670947	total: 5.28s	remaining: 1.7s
227:	learn: 10.8529443	total: 5.3s	remaining: 1.67s
228:	learn: 10.8318645	total: 5.33s	remaining: 1.65s
229:	learn: 10.8156588	total: 5.35s	remaining: 1.63s
230:	learn: 10.7951131	total: 5.37s	remaining: 1.6s
231:	learn: 10.7795677	total: 5.4s	remaining: 1.58s
232:	learn: 10.7366028	total: 5.43s	remaining: 1.56s
233:	learn: 10.7193612	total: 5.46s	remaining: 1.54s
234:	learn: 10.6990737	total: 5.49s	remaining: 1.52s
235:	learn: 10.6205495	total: 5.51s	remaining: 1.49s
236:	learn: 10.5976748	total: 5.54s	remaining: 1.47s
237:	learn: 10.5212017	total: 5.56s	remaining: 1.45s
238:	learn: 10.4839783	total: 5.58s	remaining: 1.42s
239:	learn: 10.4723193	total: 5.61s	remaining: 1.4s
240:	learn: 10.4438944	total: 5.64s	remaining: 1.38s
241:	learn: 10.4068644	total: 5.66s	remaining: 1.36s
242:	learn: 10.3777867	total: 5.69s	remaining: 1.33s
243:	learn: 10.3633196	total: 5.71s	remaining: 1.31s
244:	learn: 10.3508529	total: 5.74s	remaining: 1.29s
245:	learn: 10.3391285	total: 5.76s	remaining: 1.26s
246:	learn: 10.3202046	total: 5.79s	remaining: 1.24s
247:	learn: 10.2679507	total: 5.81s	remaining: 1.22s
248:	learn: 10.2444411	total: 5.83s	remaining: 1.19s
249:	learn: 10.1978707	total: 5.86s	remaining: 1.17s
250:	learn: 10.1746210	total: 5.89s	remaining: 1.15s
251:	learn: 10.1455445	total: 5.92s	remaining: 1.13s
252:	learn: 10.1234292	total: 5.95s	remaining: 1.1s
253:	learn: 10.1009263	total: 5.97s	remaining: 1.08s
254:	learn: 10.0506537	total: 6s	remaining: 1.06s
255:	learn: 9.9973799	total: 6.02s	remaining: 1.03s
256:	learn: 9.9923793	total: 6.05s	remaining: 1.01s
257:	learn: 9.9592135	total: 6.08s	remaining: 989ms
258:	learn: 9.9455912	total: 6.1s	remaining: 966ms
259:	learn: 9.9351881	total: 6.12s	remaining: 942ms
260:	learn: 9.8843396	total: 6.14s	remaining: 918ms
261:	learn: 9.8732841	total: 6.17s	remaining: 895ms
262:	learn: 9.8530402	total: 6.2s	remaining: 872ms
263:	learn: 9.8379209	total: 6.22s	remaining: 848ms
264:	learn: 9.8012657	total: 6.25s	remaining: 825ms
265:	learn: 9.7881742	total: 6.28s	remaining: 803ms
266:	learn: 9.7723933	total: 6.31s	remaining: 779ms
267:	learn: 9.7613461	total: 6.33s	remaining: 756ms
268:	learn: 9.7214417	total: 6.36s	remaining: 732ms
269:	learn: 9.6976897	total: 6.38s	remaining: 709ms
270:	learn: 9.6919786	total: 6.4s	remaining: 685ms
271:	learn: 9.6263135	total: 6.43s	remaining: 662ms
272:	learn: 9.6175527	total: 6.46s	remaining: 639ms
273:	learn: 9.6110661	total: 6.49s	remaining: 616ms
274:	learn: 9.5992549	total: 6.52s	remaining: 592ms
275:	learn: 9.5709079	total: 6.54s	remaining: 569ms
276:	learn: 9.5584595	total: 6.56s	remaining: 545ms
277:	learn: 9.5492847	total: 6.58s	remaining: 521ms
278:	learn: 9.5261231	total: 6.61s	remaining: 497ms
279:	learn: 9.5160964	total: 6.63s	remaining: 474ms
280:	learn: 9.4945891	total: 6.66s	remaining: 450ms
281:	learn: 9.4659751	total: 6.68s	remaining: 427ms
282:	learn: 9.4474987	total: 6.72s	remaining: 404ms
283:	learn: 9.4369109	total: 6.75s	remaining: 380ms
284:	learn: 9.4285200	total: 6.77s	remaining: 357ms
285:	learn: 9.4124421	total: 6.8s	remaining: 333ms
286:	learn: 9.3903730	total: 6.82s	remaining: 309ms
287:	learn: 9.3240575	total: 6.84s	remaining: 285ms
288:	learn: 9.3124220	total: 6.87s	remaining: 261ms
289:	learn: 9.2881271	total: 6.9s	remaining: 238ms
290:	learn: 9.2713655	total: 6.92s	remaining: 214ms
291:	learn: 9.2641531	total: 6.95s	remaining: 190ms
292:	learn: 9.2524129	total: 6.98s	remaining: 167ms
293:	learn: 9.2343575	total: 7s	remaining: 143ms
294:	learn: 9.1973322	total: 7.02s	remaining: 119ms
295:	learn: 9.1565802	total: 7.05s	remaining: 95.2ms
296:	learn: 9.1428051	total: 7.07s	remaining: 71.4ms
297:	learn: 9.1293653	total: 7.1s	remaining: 47.6ms
298:	learn: 9.1105879	total: 7.13s	remaining: 23.8ms
299:	learn: 9.1005583	total: 7.16s	remaining: 0us
0:	learn: 46.9033478	total: 20.7ms	remaining: 6.17s
1:	learn: 46.0879122	total: 42.5ms	remaining: 6.33s
2:	learn: 45.6500716	total: 65.7ms	remaining: 6.51s
3:	learn: 44.8037484	total: 93.6ms	remaining: 6.93s
4:	learn: 44.1513690	total: 119ms	remaining: 7.03s
5:	learn: 43.6033150	total: 139ms	remaining: 6.83s
6:	learn: 43.0669517	total: 161ms	remaining: 6.75s
7:	learn: 42.4011723	total: 181ms	remaining: 6.62s
8:	learn: 41.7060291	total: 201ms	remaining: 6.51s
9:	learn: 41.0058676	total: 222ms	remaining: 6.43s
10:	learn: 40.5518615	total: 243ms	remaining: 6.39s
11:	learn: 39.9452722	total: 264ms	remaining: 6.35s
12:	learn: 39.2539405	total: 285ms	remaining: 6.28s
13:	learn: 38.6690449	total: 307ms	remaining: 6.28s
14:	learn: 38.2389829	total: 335ms	remaining: 6.37s
15:	learn: 37.6795608	total: 361ms	remaining: 6.41s
16:	learn: 37.2562038	total: 386ms	remaining: 6.43s
17:	learn: 36.9516174	total: 411ms	remaining: 6.44s
18:	learn: 36.6189442	total: 435ms	remaining: 6.43s
19:	learn: 36.0530153	total: 457ms	remaining: 6.4s
20:	learn: 35.6536993	total: 479ms	remaining: 6.37s
21:	learn: 35.3616790	total: 501ms	remaining: 6.33s
22:	learn: 35.0627472	total: 523ms	remaining: 6.3s
23:	learn: 34.5889995	total: 551ms	remaining: 6.33s
24:	learn: 34.0395768	total: 576ms	remaining: 6.34s
25:	learn: 33.6846146	total: 598ms	remaining: 6.3s
26:	learn: 33.2581583	total: 619ms	remaining: 6.26s
27:	learn: 32.9043599	total: 639ms	remaining: 6.21s
28:	learn: 32.4603681	total: 660ms	remaining: 6.17s
29:	learn: 32.0784225	total: 681ms	remaining: 6.13s
30:	learn: 31.6654390	total: 704ms	remaining: 6.11s
31:	learn: 31.3473625	total: 724ms	remaining: 6.07s
32:	learn: 30.9124340	total: 748ms	remaining: 6.05s
33:	learn: 30.6354683	total: 782ms	remaining: 6.12s
34:	learn: 30.4404098	total: 807ms	remaining: 6.11s
35:	learn: 30.1914372	total: 831ms	remaining: 6.09s
36:	learn: 29.8249863	total: 855ms	remaining: 6.07s
37:	learn: 29.5196757	total: 879ms	remaining: 6.06s
38:	learn: 29.2605473	total: 901ms	remaining: 6.03s
39:	learn: 28.9803384	total: 922ms	remaining: 5.99s
40:	learn: 28.7535173	total: 944ms	remaining: 5.96s
41:	learn: 28.3888690	total: 967ms	remaining: 5.94s
42:	learn: 28.1381916	total: 998ms	remaining: 5.97s
43:	learn: 27.9181568	total: 1.02s	remaining: 5.95s
44:	learn: 27.6047071	total: 1.04s	remaining: 5.91s
45:	learn: 27.4164606	total: 1.06s	remaining: 5.88s
46:	learn: 27.0321668	total: 1.08s	remaining: 5.84s
47:	learn: 26.7987572	total: 1.1s	remaining: 5.8s
48:	learn: 26.6235810	total: 1.13s	remaining: 5.77s
49:	learn: 26.4084368	total: 1.15s	remaining: 5.74s
50:	learn: 26.1773159	total: 1.17s	remaining: 5.71s
51:	learn: 26.0200665	total: 1.19s	remaining: 5.69s
52:	learn: 25.8168330	total: 1.22s	remaining: 5.69s
53:	learn: 25.6154150	total: 1.25s	remaining: 5.68s
54:	learn: 25.2351738	total: 1.27s	remaining: 5.66s
55:	learn: 24.9587143	total: 1.29s	remaining: 5.64s
56:	learn: 24.7682982	total: 1.32s	remaining: 5.61s
57:	learn: 24.4602191	total: 1.34s	remaining: 5.58s
58:	learn: 24.3002094	total: 1.36s	remaining: 5.55s
59:	learn: 24.1509360	total: 1.38s	remaining: 5.52s
60:	learn: 23.9855802	total: 1.4s	remaining: 5.5s
61:	learn: 23.7747817	total: 1.43s	remaining: 5.48s
62:	learn: 23.5415832	total: 1.45s	remaining: 5.47s
63:	learn: 23.3540053	total: 1.48s	remaining: 5.44s
64:	learn: 23.1213752	total: 1.5s	remaining: 5.42s
65:	learn: 22.9729934	total: 1.52s	remaining: 5.39s
66:	learn: 22.8237351	total: 1.54s	remaining: 5.36s
67:	learn: 22.6716691	total: 1.56s	remaining: 5.33s
68:	learn: 22.5296861	total: 1.58s	remaining: 5.29s
69:	learn: 22.3725425	total: 1.6s	remaining: 5.26s
70:	learn: 22.2639328	total: 1.63s	remaining: 5.24s
71:	learn: 22.1174316	total: 1.65s	remaining: 5.23s
72:	learn: 21.9916264	total: 1.68s	remaining: 5.23s
73:	learn: 21.7797959	total: 1.7s	remaining: 5.2s
74:	learn: 21.6350589	total: 1.73s	remaining: 5.17s
75:	learn: 21.4910112	total: 1.75s	remaining: 5.15s
76:	learn: 21.3068682	total: 1.77s	remaining: 5.13s
77:	learn: 21.1725772	total: 1.79s	remaining: 5.1s
78:	learn: 21.0526496	total: 1.81s	remaining: 5.07s
79:	learn: 20.9534374	total: 1.83s	remaining: 5.05s
80:	learn: 20.8168422	total: 1.86s	remaining: 5.02s
81:	learn: 20.7138006	total: 1.89s	remaining: 5.01s
82:	learn: 20.5259907	total: 1.91s	remaining: 5s
83:	learn: 20.3881958	total: 1.93s	remaining: 4.96s
84:	learn: 20.2702350	total: 1.95s	remaining: 4.93s
85:	learn: 20.1185381	total: 1.97s	remaining: 4.91s
86:	learn: 19.9815763	total: 1.99s	remaining: 4.88s
87:	learn: 19.8563040	total: 2.01s	remaining: 4.85s
88:	learn: 19.7629932	total: 2.04s	remaining: 4.83s
89:	learn: 19.6361676	total: 2.06s	remaining: 4.81s
90:	learn: 19.5189179	total: 2.09s	remaining: 4.79s
91:	learn: 19.4368807	total: 2.11s	remaining: 4.77s
92:	learn: 19.3491759	total: 2.13s	remaining: 4.75s
93:	learn: 19.2441781	total: 2.15s	remaining: 4.72s
94:	learn: 19.1595312	total: 2.18s	remaining: 4.7s
95:	learn: 19.0732186	total: 2.2s	remaining: 4.67s
96:	learn: 18.9664261	total: 2.22s	remaining: 4.64s
97:	learn: 18.8752837	total: 2.24s	remaining: 4.62s
98:	learn: 18.7884732	total: 2.26s	remaining: 4.59s
99:	learn: 18.6638300	total: 2.29s	remaining: 4.57s
100:	learn: 18.5456185	total: 2.31s	remaining: 4.55s
101:	learn: 18.4491938	total: 2.33s	remaining: 4.53s
102:	learn: 18.3712210	total: 2.35s	remaining: 4.5s
103:	learn: 18.2907426	total: 2.37s	remaining: 4.47s
104:	learn: 18.2393122	total: 2.39s	remaining: 4.45s
105:	learn: 18.1493295	total: 2.41s	remaining: 4.42s
106:	learn: 18.0741996	total: 2.43s	remaining: 4.39s
107:	learn: 17.9763617	total: 2.45s	remaining: 4.36s
108:	learn: 17.8511711	total: 2.48s	remaining: 4.34s
109:	learn: 17.7975521	total: 2.5s	remaining: 4.31s
110:	learn: 17.7280526	total: 2.53s	remaining: 4.3s
111:	learn: 17.6960456	total: 2.55s	remaining: 4.28s
112:	learn: 17.6209638	total: 2.57s	remaining: 4.26s
113:	learn: 17.5389165	total: 2.6s	remaining: 4.24s
114:	learn: 17.4874967	total: 2.62s	remaining: 4.21s
115:	learn: 17.3744401	total: 2.64s	remaining: 4.18s
116:	learn: 17.2762107	total: 2.66s	remaining: 4.16s
117:	learn: 17.1930198	total: 2.68s	remaining: 4.13s
118:	learn: 17.0804375	total: 2.7s	remaining: 4.11s
119:	learn: 17.0100383	total: 2.73s	remaining: 4.09s
120:	learn: 16.9515165	total: 2.75s	remaining: 4.07s
121:	learn: 16.8221030	total: 2.77s	remaining: 4.05s
122:	learn: 16.7270258	total: 2.79s	remaining: 4.02s
123:	learn: 16.6537882	total: 2.81s	remaining: 4s
124:	learn: 16.5324707	total: 2.84s	remaining: 3.97s
125:	learn: 16.4705263	total: 2.86s	remaining: 3.94s
126:	learn: 16.4130833	total: 2.88s	remaining: 3.92s
127:	learn: 16.3480615	total: 2.9s	remaining: 3.9s
128:	learn: 16.2228205	total: 2.92s	remaining: 3.87s
129:	learn: 16.1299284	total: 2.96s	remaining: 3.87s
130:	learn: 16.0593548	total: 2.98s	remaining: 3.84s
131:	learn: 15.9926308	total: 3s	remaining: 3.82s
132:	learn: 15.9351137	total: 3.02s	remaining: 3.79s
133:	learn: 15.8301951	total: 3.04s	remaining: 3.77s
134:	learn: 15.7606319	total: 3.06s	remaining: 3.75s
135:	learn: 15.6217872	total: 3.08s	remaining: 3.72s
136:	learn: 15.5200572	total: 3.11s	remaining: 3.69s
137:	learn: 15.4565615	total: 3.13s	remaining: 3.67s
138:	learn: 15.3854906	total: 3.16s	remaining: 3.66s
139:	learn: 15.3407126	total: 3.18s	remaining: 3.63s
140:	learn: 15.2532536	total: 3.2s	remaining: 3.61s
141:	learn: 15.2129349	total: 3.22s	remaining: 3.58s
142:	learn: 15.1732289	total: 3.24s	remaining: 3.56s
143:	learn: 15.1138929	total: 3.27s	remaining: 3.54s
144:	learn: 15.0326156	total: 3.29s	remaining: 3.52s
145:	learn: 14.9309324	total: 3.31s	remaining: 3.49s
146:	learn: 14.8657435	total: 3.33s	remaining: 3.47s
147:	learn: 14.8314609	total: 3.36s	remaining: 3.45s
148:	learn: 14.7431116	total: 3.39s	remaining: 3.43s
149:	learn: 14.6590351	total: 3.41s	remaining: 3.41s
150:	learn: 14.5339193	total: 3.44s	remaining: 3.39s
151:	learn: 14.4639900	total: 3.46s	remaining: 3.37s
152:	learn: 14.3967135	total: 3.48s	remaining: 3.35s
153:	learn: 14.3077714	total: 3.5s	remaining: 3.32s
154:	learn: 14.2227051	total: 3.53s	remaining: 3.3s
155:	learn: 14.1541051	total: 3.55s	remaining: 3.28s
156:	learn: 14.1099666	total: 3.58s	remaining: 3.26s
157:	learn: 14.0474387	total: 3.6s	remaining: 3.24s
158:	learn: 13.9402729	total: 3.62s	remaining: 3.21s
159:	learn: 13.8714208	total: 3.65s	remaining: 3.19s
160:	learn: 13.7798180	total: 3.67s	remaining: 3.16s
161:	learn: 13.6785277	total: 3.69s	remaining: 3.14s
162:	learn: 13.5985050	total: 3.71s	remaining: 3.12s
163:	learn: 13.5743583	total: 3.73s	remaining: 3.09s
164:	learn: 13.4271067	total: 3.75s	remaining: 3.07s
165:	learn: 13.3787394	total: 3.77s	remaining: 3.05s
166:	learn: 13.3132605	total: 3.8s	remaining: 3.03s
167:	learn: 13.2185878	total: 3.83s	remaining: 3.01s
168:	learn: 13.2025287	total: 3.85s	remaining: 2.99s
169:	learn: 13.1393556	total: 3.88s	remaining: 2.97s
170:	learn: 13.0898086	total: 3.9s	remaining: 2.94s
171:	learn: 12.9970587	total: 3.92s	remaining: 2.92s
172:	learn: 12.8778568	total: 3.94s	remaining: 2.9s
173:	learn: 12.7715298	total: 3.97s	remaining: 2.87s
174:	learn: 12.7109534	total: 4s	remaining: 2.86s
175:	learn: 12.6499951	total: 4.03s	remaining: 2.83s
176:	learn: 12.5781341	total: 4.05s	remaining: 2.81s
177:	learn: 12.5302935	total: 4.07s	remaining: 2.79s
178:	learn: 12.4570172	total: 4.09s	remaining: 2.76s
179:	learn: 12.3852468	total: 4.11s	remaining: 2.74s
180:	learn: 12.3218479	total: 4.13s	remaining: 2.72s
181:	learn: 12.2146968	total: 4.15s	remaining: 2.69s
182:	learn: 12.0872854	total: 4.18s	remaining: 2.67s
183:	learn: 12.0609707	total: 4.2s	remaining: 2.65s
184:	learn: 11.9443946	total: 4.22s	remaining: 2.62s
185:	learn: 11.8745310	total: 4.25s	remaining: 2.61s
186:	learn: 11.7895958	total: 4.28s	remaining: 2.58s
187:	learn: 11.7497478	total: 4.3s	remaining: 2.56s
188:	learn: 11.6831548	total: 4.32s	remaining: 2.54s
189:	learn: 11.6608564	total: 4.34s	remaining: 2.52s
190:	learn: 11.6399052	total: 4.37s	remaining: 2.49s
191:	learn: 11.5714004	total: 4.39s	remaining: 2.47s
192:	learn: 11.5427662	total: 4.41s	remaining: 2.45s
193:	learn: 11.4806208	total: 4.44s	remaining: 2.42s
194:	learn: 11.4691327	total: 4.46s	remaining: 2.4s
195:	learn: 11.4134172	total: 4.49s	remaining: 2.38s
196:	learn: 11.3438004	total: 4.51s	remaining: 2.36s
197:	learn: 11.3015149	total: 4.53s	remaining: 2.33s
198:	learn: 11.2493782	total: 4.55s	remaining: 2.31s
199:	learn: 11.1895539	total: 4.57s	remaining: 2.29s
200:	learn: 11.1683522	total: 4.59s	remaining: 2.26s
201:	learn: 11.1466698	total: 4.61s	remaining: 2.24s
202:	learn: 11.0701090	total: 4.64s	remaining: 2.21s
203:	learn: 11.0293322	total: 4.66s	remaining: 2.19s
204:	learn: 10.9637933	total: 4.69s	remaining: 2.17s
205:	learn: 10.9171875	total: 4.72s	remaining: 2.15s
206:	learn: 10.8620107	total: 4.74s	remaining: 2.13s
207:	learn: 10.8411017	total: 4.76s	remaining: 2.11s
208:	learn: 10.8219871	total: 4.79s	remaining: 2.08s
209:	learn: 10.7790684	total: 4.81s	remaining: 2.06s
210:	learn: 10.7460005	total: 4.83s	remaining: 2.04s
211:	learn: 10.6884581	total: 4.85s	remaining: 2.01s
212:	learn: 10.6215835	total: 4.88s	remaining: 1.99s
213:	learn: 10.6112487	total: 4.9s	remaining: 1.97s
214:	learn: 10.5515861	total: 4.92s	remaining: 1.95s
215:	learn: 10.5005611	total: 4.94s	remaining: 1.92s
216:	learn: 10.4827029	total: 4.96s	remaining: 1.9s
217:	learn: 10.4671266	total: 4.98s	remaining: 1.87s
218:	learn: 10.4471117	total: 5s	remaining: 1.85s
219:	learn: 10.4286227	total: 5.02s	remaining: 1.83s
220:	learn: 10.4102334	total: 5.04s	remaining: 1.8s
221:	learn: 10.3587364	total: 5.07s	remaining: 1.78s
222:	learn: 10.3185900	total: 5.09s	remaining: 1.76s
223:	learn: 10.3047695	total: 5.12s	remaining: 1.74s
224:	learn: 10.2861237	total: 5.14s	remaining: 1.71s
225:	learn: 10.2723077	total: 5.16s	remaining: 1.69s
226:	learn: 10.2566131	total: 5.18s	remaining: 1.67s
227:	learn: 10.2444076	total: 5.21s	remaining: 1.64s
228:	learn: 10.2035037	total: 5.23s	remaining: 1.62s
229:	learn: 10.1151548	total: 5.25s	remaining: 1.6s
230:	learn: 10.0952083	total: 5.27s	remaining: 1.57s
231:	learn: 10.0785525	total: 5.29s	remaining: 1.55s
232:	learn: 10.0582314	total: 5.32s	remaining: 1.53s
233:	learn: 10.0399370	total: 5.34s	remaining: 1.51s
234:	learn: 10.0277451	total: 5.36s	remaining: 1.48s
235:	learn: 9.9732252	total: 5.38s	remaining: 1.46s
236:	learn: 9.9602566	total: 5.41s	remaining: 1.44s
237:	learn: 9.9117022	total: 5.42s	remaining: 1.41s
238:	learn: 9.8771993	total: 5.45s	remaining: 1.39s
239:	learn: 9.8360533	total: 5.47s	remaining: 1.37s
240:	learn: 9.8228622	total: 5.49s	remaining: 1.34s
241:	learn: 9.7831566	total: 5.51s	remaining: 1.32s
242:	learn: 9.7238030	total: 5.54s	remaining: 1.3s
243:	learn: 9.6756010	total: 5.56s	remaining: 1.28s
244:	learn: 9.6573706	total: 5.59s	remaining: 1.25s
245:	learn: 9.6190420	total: 5.61s	remaining: 1.23s
246:	learn: 9.5963929	total: 5.63s	remaining: 1.21s
247:	learn: 9.5838279	total: 5.65s	remaining: 1.19s
248:	learn: 9.5516337	total: 5.67s	remaining: 1.16s
249:	learn: 9.5319568	total: 5.69s	remaining: 1.14s
250:	learn: 9.5009733	total: 5.71s	remaining: 1.11s
251:	learn: 9.4738909	total: 5.73s	remaining: 1.09s
252:	learn: 9.4573897	total: 5.76s	remaining: 1.07s
253:	learn: 9.4238859	total: 5.79s	remaining: 1.05s
254:	learn: 9.3792324	total: 5.81s	remaining: 1.02s
255:	learn: 9.3552571	total: 5.83s	remaining: 1s
256:	learn: 9.3036260	total: 5.85s	remaining: 978ms
257:	learn: 9.2868142	total: 5.87s	remaining: 955ms
258:	learn: 9.2740504	total: 5.89s	remaining: 932ms
259:	learn: 9.2329336	total: 5.91s	remaining: 909ms
260:	learn: 9.2190698	total: 5.93s	remaining: 886ms
261:	learn: 9.2074817	total: 5.96s	remaining: 864ms
262:	learn: 9.1724174	total: 5.98s	remaining: 841ms
263:	learn: 9.1293699	total: 6s	remaining: 819ms
264:	learn: 9.1025091	total: 6.03s	remaining: 796ms
265:	learn: 9.0893697	total: 6.05s	remaining: 773ms
266:	learn: 9.0733581	total: 6.07s	remaining: 750ms
267:	learn: 9.0599268	total: 6.09s	remaining: 727ms
268:	learn: 9.0277334	total: 6.11s	remaining: 705ms
269:	learn: 8.9860960	total: 6.13s	remaining: 682ms
270:	learn: 8.9478404	total: 6.16s	remaining: 659ms
271:	learn: 8.9074990	total: 6.19s	remaining: 637ms
272:	learn: 8.8851827	total: 6.21s	remaining: 614ms
273:	learn: 8.8741463	total: 6.23s	remaining: 591ms
274:	learn: 8.8422813	total: 6.25s	remaining: 568ms
275:	learn: 8.7887362	total: 6.27s	remaining: 545ms
276:	learn: 8.7766205	total: 6.29s	remaining: 522ms
277:	learn: 8.7606125	total: 6.31s	remaining: 500ms
278:	learn: 8.7302098	total: 6.33s	remaining: 477ms
279:	learn: 8.7180658	total: 6.36s	remaining: 454ms
280:	learn: 8.6784364	total: 6.39s	remaining: 432ms
281:	learn: 8.6341139	total: 6.41s	remaining: 409ms
282:	learn: 8.6092132	total: 6.44s	remaining: 387ms
283:	learn: 8.5723040	total: 6.46s	remaining: 364ms
284:	learn: 8.5318798	total: 6.48s	remaining: 341ms
285:	learn: 8.5051575	total: 6.5s	remaining: 318ms
286:	learn: 8.4896135	total: 6.52s	remaining: 296ms
287:	learn: 8.4665233	total: 6.55s	remaining: 273ms
288:	learn: 8.4563622	total: 6.57s	remaining: 250ms
289:	learn: 8.4221661	total: 6.6s	remaining: 227ms
290:	learn: 8.3953479	total: 6.62s	remaining: 205ms
291:	learn: 8.3735779	total: 6.64s	remaining: 182ms
292:	learn: 8.3452844	total: 6.66s	remaining: 159ms
293:	learn: 8.3141538	total: 6.68s	remaining: 136ms
294:	learn: 8.3014432	total: 6.71s	remaining: 114ms
295:	learn: 8.2802794	total: 6.73s	remaining: 90.9ms
296:	learn: 8.2485275	total: 6.75s	remaining: 68.2ms
297:	learn: 8.2239488	total: 6.78s	remaining: 45.5ms
298:	learn: 8.1877191	total: 6.81s	remaining: 22.8ms
299:	learn: 8.1551355	total: 6.83s	remaining: 0us
avg_Mae_val de la población en la generación 2: 18.63466115221517 con std media = 9.078175059423923
Mae_val del Mejor modelo en la generación 2: 18.0783 con std = 8.9607
0:	learn: 27.2098005	total: 1.41ms	remaining: 281ms
1:	learn: 26.3343827	total: 2.45ms	remaining: 242ms
2:	learn: 25.6574052	total: 3.67ms	remaining: 241ms
3:	learn: 24.9562825	total: 4.77ms	remaining: 234ms
4:	learn: 24.4317699	total: 5.72ms	remaining: 223ms
5:	learn: 23.7320689	total: 6.68ms	remaining: 216ms
6:	learn: 23.3827801	total: 7.64ms	remaining: 211ms
7:	learn: 22.7888606	total: 8.47ms	remaining: 203ms
8:	learn: 22.4669531	total: 9.51ms	remaining: 202ms
9:	learn: 22.2055034	total: 10.4ms	remaining: 198ms
10:	learn: 21.8570874	total: 11.5ms	remaining: 197ms
11:	learn: 21.5043513	total: 12.5ms	remaining: 196ms
12:	learn: 21.2543673	total: 13.8ms	remaining: 199ms
13:	learn: 21.0521696	total: 14.9ms	remaining: 199ms
14:	learn: 20.7543959	total: 16.1ms	remaining: 198ms
15:	learn: 20.4439240	total: 17.2ms	remaining: 198ms
16:	learn: 20.1992431	total: 18.4ms	remaining: 198ms
17:	learn: 20.0638774	total: 19.4ms	remaining: 196ms
18:	learn: 19.7614893	total: 20.4ms	remaining: 194ms
19:	learn: 19.4549829	total: 21.4ms	remaining: 192ms
20:	learn: 19.2969790	total: 22.4ms	remaining: 191ms
21:	learn: 19.2377413	total: 23.4ms	remaining: 189ms
22:	learn: 19.1413322	total: 24.5ms	remaining: 188ms
23:	learn: 19.0898736	total: 25.5ms	remaining: 187ms
24:	learn: 18.9125043	total: 26.5ms	remaining: 186ms
25:	learn: 18.8580056	total: 27.6ms	remaining: 185ms
26:	learn: 18.7027921	total: 28.6ms	remaining: 183ms
27:	learn: 18.4581085	total: 29.7ms	remaining: 183ms
28:	learn: 18.2744442	total: 30.7ms	remaining: 181ms
29:	learn: 18.2413017	total: 31.9ms	remaining: 181ms
30:	learn: 18.1373470	total: 33ms	remaining: 180ms
31:	learn: 18.1034471	total: 34ms	remaining: 179ms
32:	learn: 17.9300374	total: 35ms	remaining: 177ms
33:	learn: 17.7887903	total: 36.1ms	remaining: 176ms
34:	learn: 17.7093050	total: 37.1ms	remaining: 175ms
35:	learn: 17.6643057	total: 38.1ms	remaining: 173ms
36:	learn: 17.5712827	total: 39ms	remaining: 172ms
37:	learn: 17.5313653	total: 40.1ms	remaining: 171ms
38:	learn: 17.4725144	total: 41ms	remaining: 169ms
39:	learn: 17.4182357	total: 42ms	remaining: 168ms
40:	learn: 17.2681647	total: 43.1ms	remaining: 167ms
41:	learn: 17.2206572	total: 44.1ms	remaining: 166ms
42:	learn: 17.0402321	total: 45.1ms	remaining: 165ms
43:	learn: 16.9839166	total: 46ms	remaining: 163ms
44:	learn: 16.9116414	total: 47.1ms	remaining: 162ms
45:	learn: 16.7802140	total: 48.3ms	remaining: 162ms
46:	learn: 16.6821396	total: 49.4ms	remaining: 161ms
47:	learn: 16.6370601	total: 50.4ms	remaining: 160ms
48:	learn: 16.5310125	total: 51.4ms	remaining: 158ms
49:	learn: 16.4962621	total: 52.4ms	remaining: 157ms
50:	learn: 16.4466663	total: 53.5ms	remaining: 156ms
51:	learn: 16.3887055	total: 54.5ms	remaining: 155ms
52:	learn: 16.3434793	total: 55.5ms	remaining: 154ms
53:	learn: 16.2814651	total: 56.5ms	remaining: 153ms
54:	learn: 16.2060157	total: 57.5ms	remaining: 152ms
55:	learn: 16.1340288	total: 59.1ms	remaining: 152ms
56:	learn: 16.0726882	total: 60.4ms	remaining: 152ms
57:	learn: 15.9930999	total: 62.9ms	remaining: 154ms
58:	learn: 15.8689364	total: 64.5ms	remaining: 154ms
59:	learn: 15.8130924	total: 66.7ms	remaining: 156ms
60:	learn: 15.7895967	total: 68.2ms	remaining: 155ms
61:	learn: 15.6640340	total: 69.6ms	remaining: 155ms
62:	learn: 15.6177669	total: 71.2ms	remaining: 155ms
63:	learn: 15.5090870	total: 72.7ms	remaining: 155ms
64:	learn: 15.4761522	total: 74.1ms	remaining: 154ms
65:	learn: 15.4287462	total: 75.4ms	remaining: 153ms
66:	learn: 15.3888538	total: 76.9ms	remaining: 153ms
67:	learn: 15.3440609	total: 78.2ms	remaining: 152ms
68:	learn: 15.3201311	total: 79.6ms	remaining: 151ms
69:	learn: 15.3079114	total: 81ms	remaining: 150ms
70:	learn: 15.2159640	total: 82.1ms	remaining: 149ms
71:	learn: 15.1112749	total: 83.3ms	remaining: 148ms
72:	learn: 15.0596912	total: 84.2ms	remaining: 146ms
73:	learn: 14.9952809	total: 85.2ms	remaining: 145ms
74:	learn: 14.9128812	total: 86.7ms	remaining: 145ms
75:	learn: 14.8761824	total: 88ms	remaining: 144ms
76:	learn: 14.8293903	total: 89.2ms	remaining: 143ms
77:	learn: 14.7845132	total: 90.4ms	remaining: 141ms
78:	learn: 14.7347895	total: 91.5ms	remaining: 140ms
79:	learn: 14.6942607	total: 92.7ms	remaining: 139ms
80:	learn: 14.5997662	total: 93.8ms	remaining: 138ms
81:	learn: 14.5782796	total: 94.8ms	remaining: 136ms
82:	learn: 14.5097324	total: 95.9ms	remaining: 135ms
83:	learn: 14.4594549	total: 96.9ms	remaining: 134ms
84:	learn: 14.3700903	total: 98.1ms	remaining: 133ms
85:	learn: 14.2967114	total: 99.3ms	remaining: 132ms
86:	learn: 14.2477778	total: 100ms	remaining: 130ms
87:	learn: 14.2229719	total: 101ms	remaining: 129ms
88:	learn: 14.1534477	total: 103ms	remaining: 128ms
89:	learn: 14.0762949	total: 104ms	remaining: 127ms
90:	learn: 14.0123553	total: 105ms	remaining: 126ms
91:	learn: 13.9603280	total: 106ms	remaining: 124ms
92:	learn: 13.9002227	total: 107ms	remaining: 123ms
93:	learn: 13.8719854	total: 108ms	remaining: 122ms
94:	learn: 13.8348742	total: 109ms	remaining: 121ms
95:	learn: 13.8153499	total: 111ms	remaining: 120ms
96:	learn: 13.7569162	total: 112ms	remaining: 119ms
97:	learn: 13.7360893	total: 113ms	remaining: 117ms
98:	learn: 13.6752128	total: 114ms	remaining: 116ms
99:	learn: 13.6103165	total: 115ms	remaining: 115ms
100:	learn: 13.5527615	total: 116ms	remaining: 114ms
101:	learn: 13.5004011	total: 117ms	remaining: 112ms
102:	learn: 13.4335179	total: 118ms	remaining: 111ms
103:	learn: 13.3687362	total: 119ms	remaining: 110ms
104:	learn: 13.3043781	total: 120ms	remaining: 109ms
105:	learn: 13.2849717	total: 121ms	remaining: 107ms
106:	learn: 13.2526590	total: 122ms	remaining: 106ms
107:	learn: 13.2267137	total: 123ms	remaining: 105ms
108:	learn: 13.1819637	total: 124ms	remaining: 104ms
109:	learn: 13.1796765	total: 125ms	remaining: 102ms
110:	learn: 13.1605610	total: 126ms	remaining: 101ms
111:	learn: 13.1226709	total: 127ms	remaining: 99.9ms
112:	learn: 13.0665776	total: 128ms	remaining: 98.6ms
113:	learn: 13.0159115	total: 129ms	remaining: 97.3ms
114:	learn: 12.9566195	total: 130ms	remaining: 96ms
115:	learn: 12.9445833	total: 131ms	remaining: 94.8ms
116:	learn: 12.9257179	total: 132ms	remaining: 93.5ms
117:	learn: 12.8740419	total: 133ms	remaining: 92.3ms
118:	learn: 12.8151072	total: 134ms	remaining: 91.1ms
119:	learn: 12.7722999	total: 135ms	remaining: 89.9ms
120:	learn: 12.7357186	total: 136ms	remaining: 88.7ms
121:	learn: 12.7259232	total: 137ms	remaining: 87.5ms
122:	learn: 12.6951038	total: 138ms	remaining: 86.3ms
123:	learn: 12.6803516	total: 139ms	remaining: 85.1ms
124:	learn: 12.6533951	total: 140ms	remaining: 83.9ms
125:	learn: 12.6378921	total: 141ms	remaining: 82.7ms
126:	learn: 12.5920985	total: 142ms	remaining: 81.5ms
127:	learn: 12.5756200	total: 143ms	remaining: 80.3ms
128:	learn: 12.5672381	total: 144ms	remaining: 79.2ms
129:	learn: 12.5384815	total: 145ms	remaining: 78ms
130:	learn: 12.5292471	total: 146ms	remaining: 76.8ms
131:	learn: 12.4764701	total: 147ms	remaining: 75.6ms
132:	learn: 12.4280495	total: 148ms	remaining: 74.5ms
133:	learn: 12.3532545	total: 149ms	remaining: 73.4ms
134:	learn: 12.3267684	total: 150ms	remaining: 72.3ms
135:	learn: 12.2702669	total: 151ms	remaining: 71.2ms
136:	learn: 12.2040302	total: 152ms	remaining: 70.1ms
137:	learn: 12.1737311	total: 154ms	remaining: 69ms
138:	learn: 12.1686551	total: 155ms	remaining: 67.9ms
139:	learn: 12.1587600	total: 156ms	remaining: 66.7ms
140:	learn: 12.1470325	total: 157ms	remaining: 65.5ms
141:	learn: 12.1357223	total: 158ms	remaining: 64.4ms
142:	learn: 12.0994748	total: 159ms	remaining: 63.2ms
143:	learn: 12.0775514	total: 160ms	remaining: 62ms
144:	learn: 12.0674975	total: 161ms	remaining: 60.9ms
145:	learn: 12.0307414	total: 161ms	remaining: 59.7ms
146:	learn: 12.0251842	total: 163ms	remaining: 58.6ms
147:	learn: 12.0066431	total: 164ms	remaining: 57.5ms
148:	learn: 11.9888229	total: 165ms	remaining: 56.5ms
149:	learn: 11.9291047	total: 166ms	remaining: 55.4ms
150:	learn: 11.9266163	total: 167ms	remaining: 54.3ms
151:	learn: 11.8920246	total: 168ms	remaining: 53.2ms
152:	learn: 11.8626800	total: 169ms	remaining: 52ms
153:	learn: 11.8193888	total: 170ms	remaining: 50.9ms
154:	learn: 11.7925225	total: 171ms	remaining: 49.8ms
155:	learn: 11.7874661	total: 172ms	remaining: 48.6ms
156:	learn: 11.7861494	total: 173ms	remaining: 47.5ms
157:	learn: 11.7430931	total: 174ms	remaining: 46.3ms
158:	learn: 11.7366462	total: 175ms	remaining: 45.2ms
159:	learn: 11.6981704	total: 176ms	remaining: 44.1ms
160:	learn: 11.6506279	total: 177ms	remaining: 42.9ms
161:	learn: 11.6196206	total: 178ms	remaining: 41.8ms
162:	learn: 11.5823435	total: 179ms	remaining: 40.7ms
163:	learn: 11.5505083	total: 180ms	remaining: 39.6ms
164:	learn: 11.5403261	total: 181ms	remaining: 38.5ms
165:	learn: 11.5264917	total: 182ms	remaining: 37.4ms
166:	learn: 11.4987585	total: 183ms	remaining: 36.2ms
167:	learn: 11.4950795	total: 184ms	remaining: 35.1ms
168:	learn: 11.4783420	total: 185ms	remaining: 34ms
169:	learn: 11.4677279	total: 186ms	remaining: 32.9ms
170:	learn: 11.4659536	total: 187ms	remaining: 31.7ms
171:	learn: 11.4534216	total: 188ms	remaining: 30.6ms
172:	learn: 11.4245927	total: 189ms	remaining: 29.5ms
173:	learn: 11.3978034	total: 190ms	remaining: 28.4ms
174:	learn: 11.3859183	total: 191ms	remaining: 27.2ms
175:	learn: 11.3531419	total: 192ms	remaining: 26.1ms
176:	learn: 11.3141195	total: 193ms	remaining: 25ms
177:	learn: 11.2880690	total: 193ms	remaining: 23.9ms
178:	learn: 11.2771619	total: 194ms	remaining: 22.8ms
179:	learn: 11.2705445	total: 195ms	remaining: 21.7ms
180:	learn: 11.2550546	total: 196ms	remaining: 20.6ms
181:	learn: 11.2402205	total: 197ms	remaining: 19.5ms
182:	learn: 11.2109113	total: 198ms	remaining: 18.4ms
183:	learn: 11.2100213	total: 199ms	remaining: 17.3ms
184:	learn: 11.2075766	total: 200ms	remaining: 16.2ms
185:	learn: 11.2013252	total: 201ms	remaining: 15.1ms
186:	learn: 11.1953713	total: 202ms	remaining: 14ms
187:	learn: 11.1894718	total: 203ms	remaining: 12.9ms
188:	learn: 11.1837453	total: 203ms	remaining: 11.8ms
189:	learn: 11.1781835	total: 204ms	remaining: 10.8ms
190:	learn: 11.1727790	total: 205ms	remaining: 9.67ms
191:	learn: 11.1451811	total: 207ms	remaining: 8.62ms
192:	learn: 11.1039476	total: 208ms	remaining: 7.54ms
193:	learn: 11.0665613	total: 209ms	remaining: 6.46ms
194:	learn: 11.0567694	total: 210ms	remaining: 5.38ms
195:	learn: 11.0283937	total: 211ms	remaining: 4.3ms
196:	learn: 11.0250363	total: 212ms	remaining: 3.22ms
197:	learn: 11.0027907	total: 213ms	remaining: 2.15ms
198:	learn: 10.9841284	total: 214ms	remaining: 1.07ms
199:	learn: 10.9586799	total: 215ms	remaining: 0us
0:	learn: 41.8399605	total: 2.22ms	remaining: 443ms
1:	learn: 39.8395245	total: 3.74ms	remaining: 370ms
2:	learn: 38.1671235	total: 5.52ms	remaining: 363ms
3:	learn: 37.0670986	total: 6.78ms	remaining: 332ms
4:	learn: 36.0387813	total: 7.94ms	remaining: 310ms
5:	learn: 34.5265459	total: 9.02ms	remaining: 292ms
6:	learn: 33.0715315	total: 10ms	remaining: 276ms
7:	learn: 31.8808916	total: 11.7ms	remaining: 280ms
8:	learn: 31.2512994	total: 13ms	remaining: 275ms
9:	learn: 30.4893398	total: 14.2ms	remaining: 269ms
10:	learn: 29.4834649	total: 15.1ms	remaining: 260ms
11:	learn: 28.5128380	total: 16.1ms	remaining: 252ms
12:	learn: 27.6335700	total: 17.4ms	remaining: 251ms
13:	learn: 27.0319750	total: 18.7ms	remaining: 249ms
14:	learn: 26.2458582	total: 20.1ms	remaining: 248ms
15:	learn: 25.9281584	total: 21.5ms	remaining: 247ms
16:	learn: 25.5262964	total: 22.9ms	remaining: 247ms
17:	learn: 24.9203741	total: 24.1ms	remaining: 243ms
18:	learn: 24.5918814	total: 25.1ms	remaining: 239ms
19:	learn: 24.4119288	total: 26.5ms	remaining: 238ms
20:	learn: 24.1090477	total: 27.5ms	remaining: 234ms
21:	learn: 23.7056648	total: 28.7ms	remaining: 232ms
22:	learn: 23.5124674	total: 29.8ms	remaining: 229ms
23:	learn: 23.2386385	total: 30.8ms	remaining: 226ms
24:	learn: 23.1258198	total: 31.8ms	remaining: 223ms
25:	learn: 23.0302334	total: 32.8ms	remaining: 220ms
26:	learn: 22.9101035	total: 33.9ms	remaining: 217ms
27:	learn: 22.8003999	total: 34.9ms	remaining: 214ms
28:	learn: 22.5351620	total: 36ms	remaining: 212ms
29:	learn: 22.2539274	total: 37.1ms	remaining: 210ms
30:	learn: 22.1398507	total: 38.4ms	remaining: 209ms
31:	learn: 21.6820010	total: 39.5ms	remaining: 207ms
32:	learn: 21.5252543	total: 40.5ms	remaining: 205ms
33:	learn: 21.4370215	total: 41.5ms	remaining: 203ms
34:	learn: 21.3473723	total: 42.6ms	remaining: 201ms
35:	learn: 21.2921732	total: 43.8ms	remaining: 199ms
36:	learn: 21.1853093	total: 44.9ms	remaining: 198ms
37:	learn: 21.1054246	total: 46.3ms	remaining: 197ms
38:	learn: 21.0922990	total: 47.5ms	remaining: 196ms
39:	learn: 20.9578071	total: 48.9ms	remaining: 196ms
40:	learn: 20.8720350	total: 50ms	remaining: 194ms
41:	learn: 20.7978022	total: 51ms	remaining: 192ms
42:	learn: 20.7373973	total: 52.2ms	remaining: 191ms
43:	learn: 20.4878486	total: 53.6ms	remaining: 190ms
44:	learn: 20.4578479	total: 55.3ms	remaining: 191ms
45:	learn: 20.3634465	total: 56.4ms	remaining: 189ms
46:	learn: 20.3080237	total: 57.9ms	remaining: 188ms
47:	learn: 20.2271363	total: 58.8ms	remaining: 186ms
48:	learn: 20.0373064	total: 59.9ms	remaining: 184ms
49:	learn: 19.9912068	total: 60.9ms	remaining: 183ms
50:	learn: 19.8928950	total: 62.1ms	remaining: 181ms
51:	learn: 19.7876830	total: 63.1ms	remaining: 179ms
52:	learn: 19.7651180	total: 64.1ms	remaining: 178ms
53:	learn: 19.6813527	total: 65.2ms	remaining: 176ms
54:	learn: 19.5975589	total: 66.2ms	remaining: 175ms
55:	learn: 19.5478200	total: 67.4ms	remaining: 173ms
56:	learn: 19.3740847	total: 68.5ms	remaining: 172ms
57:	learn: 19.3662692	total: 69.6ms	remaining: 170ms
58:	learn: 19.2651964	total: 70.8ms	remaining: 169ms
59:	learn: 19.1392018	total: 72.2ms	remaining: 168ms
60:	learn: 19.1023492	total: 73.9ms	remaining: 168ms
61:	learn: 19.0748934	total: 75.2ms	remaining: 167ms
62:	learn: 19.0233897	total: 76.3ms	remaining: 166ms
63:	learn: 18.9164481	total: 77.2ms	remaining: 164ms
64:	learn: 18.8465411	total: 78.2ms	remaining: 162ms
65:	learn: 18.8043102	total: 79.1ms	remaining: 161ms
66:	learn: 18.7650830	total: 80ms	remaining: 159ms
67:	learn: 18.7271477	total: 81ms	remaining: 157ms
68:	learn: 18.5376883	total: 81.9ms	remaining: 156ms
69:	learn: 18.4564755	total: 82.8ms	remaining: 154ms
70:	learn: 18.3732756	total: 83.7ms	remaining: 152ms
71:	learn: 18.2872627	total: 84.6ms	remaining: 150ms
72:	learn: 18.1886808	total: 85.5ms	remaining: 149ms
73:	learn: 18.1041972	total: 86.5ms	remaining: 147ms
74:	learn: 18.0429272	total: 87.6ms	remaining: 146ms
75:	learn: 17.9595045	total: 88.8ms	remaining: 145ms
76:	learn: 17.9086262	total: 89.8ms	remaining: 144ms
77:	learn: 17.8460171	total: 91ms	remaining: 142ms
78:	learn: 17.7896667	total: 92.2ms	remaining: 141ms
79:	learn: 17.7371316	total: 93.3ms	remaining: 140ms
80:	learn: 17.6103533	total: 94.5ms	remaining: 139ms
81:	learn: 17.5698713	total: 95.5ms	remaining: 137ms
82:	learn: 17.5266322	total: 96.5ms	remaining: 136ms
83:	learn: 17.2655920	total: 97.6ms	remaining: 135ms
84:	learn: 17.2575650	total: 98.6ms	remaining: 133ms
85:	learn: 17.1664785	total: 99.5ms	remaining: 132ms
86:	learn: 16.9209435	total: 100ms	remaining: 130ms
87:	learn: 16.8316744	total: 101ms	remaining: 129ms
88:	learn: 16.7588828	total: 102ms	remaining: 128ms
89:	learn: 16.5509772	total: 103ms	remaining: 126ms
90:	learn: 16.4804665	total: 105ms	remaining: 125ms
91:	learn: 16.4442784	total: 106ms	remaining: 124ms
92:	learn: 16.3784172	total: 107ms	remaining: 123ms
93:	learn: 16.2804018	total: 108ms	remaining: 122ms
94:	learn: 16.2439906	total: 109ms	remaining: 120ms
95:	learn: 16.2110795	total: 110ms	remaining: 119ms
96:	learn: 16.1715562	total: 111ms	remaining: 118ms
97:	learn: 16.0669024	total: 112ms	remaining: 116ms
98:	learn: 15.8722132	total: 113ms	remaining: 115ms
99:	learn: 15.8486533	total: 114ms	remaining: 114ms
100:	learn: 15.8165655	total: 115ms	remaining: 113ms
101:	learn: 15.7949298	total: 116ms	remaining: 111ms
102:	learn: 15.7201286	total: 117ms	remaining: 110ms
103:	learn: 15.6755371	total: 118ms	remaining: 109ms
104:	learn: 15.6405255	total: 119ms	remaining: 108ms
105:	learn: 15.6117943	total: 120ms	remaining: 107ms
106:	learn: 15.5793622	total: 121ms	remaining: 105ms
107:	learn: 15.5402277	total: 122ms	remaining: 104ms
108:	learn: 15.4630827	total: 123ms	remaining: 103ms
109:	learn: 15.4065161	total: 124ms	remaining: 102ms
110:	learn: 15.3699228	total: 125ms	remaining: 100ms
111:	learn: 15.2947040	total: 126ms	remaining: 99.2ms
112:	learn: 15.2833895	total: 127ms	remaining: 98ms
113:	learn: 15.2249854	total: 128ms	remaining: 96.8ms
114:	learn: 15.1836455	total: 130ms	remaining: 95.7ms
115:	learn: 15.1523562	total: 131ms	remaining: 94.6ms
116:	learn: 15.1125302	total: 132ms	remaining: 93.8ms
117:	learn: 15.0713590	total: 133ms	remaining: 92.5ms
118:	learn: 15.0134383	total: 134ms	remaining: 91.3ms
119:	learn: 14.9678232	total: 135ms	remaining: 90.1ms
120:	learn: 14.9332348	total: 136ms	remaining: 88.9ms
121:	learn: 14.8952479	total: 137ms	remaining: 87.7ms
122:	learn: 14.8451629	total: 138ms	remaining: 86.4ms
123:	learn: 14.8122591	total: 139ms	remaining: 85.2ms
124:	learn: 14.8059710	total: 140ms	remaining: 83.9ms
125:	learn: 14.7875208	total: 141ms	remaining: 82.6ms
126:	learn: 14.7239849	total: 142ms	remaining: 81.4ms
127:	learn: 14.7029419	total: 143ms	remaining: 80.2ms
128:	learn: 14.6633912	total: 144ms	remaining: 79ms
129:	learn: 14.6443330	total: 144ms	remaining: 77.7ms
130:	learn: 14.5974847	total: 145ms	remaining: 76.5ms
131:	learn: 14.5479805	total: 146ms	remaining: 75.3ms
132:	learn: 14.5134226	total: 147ms	remaining: 74.1ms
133:	learn: 14.4909207	total: 148ms	remaining: 72.9ms
134:	learn: 14.2973404	total: 149ms	remaining: 71.8ms
135:	learn: 14.2837051	total: 150ms	remaining: 70.7ms
136:	learn: 14.2518953	total: 151ms	remaining: 69.5ms
137:	learn: 14.2142342	total: 152ms	remaining: 68.4ms
138:	learn: 14.1815533	total: 153ms	remaining: 67.2ms
139:	learn: 14.1787829	total: 154ms	remaining: 66.1ms
140:	learn: 14.1736615	total: 155ms	remaining: 65ms
141:	learn: 14.1478939	total: 156ms	remaining: 63.8ms
142:	learn: 14.0693243	total: 157ms	remaining: 62.7ms
143:	learn: 14.0493752	total: 158ms	remaining: 61.5ms
144:	learn: 14.0073520	total: 159ms	remaining: 60.4ms
145:	learn: 13.9992690	total: 160ms	remaining: 59.2ms
146:	learn: 13.9826951	total: 161ms	remaining: 58.1ms
147:	learn: 13.9355206	total: 162ms	remaining: 56.9ms
148:	learn: 13.8866829	total: 163ms	remaining: 55.8ms
149:	learn: 13.8116862	total: 164ms	remaining: 54.7ms
150:	learn: 13.7917979	total: 165ms	remaining: 53.5ms
151:	learn: 13.7656086	total: 166ms	remaining: 52.4ms
152:	learn: 13.7544547	total: 167ms	remaining: 51.3ms
153:	learn: 13.7143754	total: 168ms	remaining: 50.1ms
154:	learn: 13.6940602	total: 169ms	remaining: 49ms
155:	learn: 13.6895644	total: 170ms	remaining: 47.9ms
156:	learn: 13.6676083	total: 171ms	remaining: 46.8ms
157:	learn: 13.6351956	total: 172ms	remaining: 45.6ms
158:	learn: 13.6030803	total: 173ms	remaining: 44.5ms
159:	learn: 13.5945618	total: 174ms	remaining: 43.5ms
160:	learn: 13.5695407	total: 177ms	remaining: 42.8ms
161:	learn: 13.5265094	total: 178ms	remaining: 41.7ms
162:	learn: 13.5035584	total: 179ms	remaining: 40.7ms
163:	learn: 13.4960504	total: 180ms	remaining: 39.6ms
164:	learn: 13.4734059	total: 182ms	remaining: 38.5ms
165:	learn: 13.4449073	total: 183ms	remaining: 37.4ms
166:	learn: 13.3719784	total: 184ms	remaining: 36.4ms
167:	learn: 13.3612519	total: 185ms	remaining: 35.3ms
168:	learn: 13.3166457	total: 187ms	remaining: 34.3ms
169:	learn: 13.2650631	total: 188ms	remaining: 33.2ms
170:	learn: 13.2613924	total: 189ms	remaining: 32.1ms
171:	learn: 13.2301308	total: 190ms	remaining: 31ms
172:	learn: 13.1981807	total: 192ms	remaining: 30ms
173:	learn: 13.1820083	total: 193ms	remaining: 28.9ms
174:	learn: 13.1486084	total: 194ms	remaining: 27.8ms
175:	learn: 13.1306816	total: 195ms	remaining: 26.6ms
176:	learn: 13.0921081	total: 196ms	remaining: 25.5ms
177:	learn: 13.0716664	total: 197ms	remaining: 24.4ms
178:	learn: 13.0116426	total: 199ms	remaining: 23.3ms
179:	learn: 13.0035937	total: 200ms	remaining: 22.2ms
180:	learn: 12.9959191	total: 201ms	remaining: 21.1ms
181:	learn: 12.9799372	total: 202ms	remaining: 19.9ms
182:	learn: 12.9651183	total: 203ms	remaining: 18.8ms
183:	learn: 12.9313512	total: 204ms	remaining: 17.7ms
184:	learn: 12.8921355	total: 205ms	remaining: 16.6ms
185:	learn: 12.8468364	total: 205ms	remaining: 15.5ms
186:	learn: 12.8397824	total: 206ms	remaining: 14.3ms
187:	learn: 12.8033368	total: 207ms	remaining: 13.2ms
188:	learn: 12.7922578	total: 208ms	remaining: 12.1ms
189:	learn: 12.7851006	total: 209ms	remaining: 11ms
190:	learn: 12.7465417	total: 210ms	remaining: 9.88ms
191:	learn: 12.7206730	total: 211ms	remaining: 8.77ms
192:	learn: 12.6917382	total: 211ms	remaining: 7.67ms
193:	learn: 12.6844838	total: 212ms	remaining: 6.56ms
194:	learn: 12.6725723	total: 213ms	remaining: 5.46ms
195:	learn: 12.6348524	total: 214ms	remaining: 4.37ms
196:	learn: 12.5954867	total: 215ms	remaining: 3.27ms
197:	learn: 12.5564179	total: 216ms	remaining: 2.18ms
198:	learn: 12.5135119	total: 216ms	remaining: 1.09ms
199:	learn: 12.4922679	total: 217ms	remaining: 0us
0:	learn: 45.6319620	total: 1.06ms	remaining: 211ms
1:	learn: 44.3043392	total: 2.03ms	remaining: 201ms
2:	learn: 43.1283328	total: 2.92ms	remaining: 192ms
3:	learn: 42.1165182	total: 3.82ms	remaining: 187ms
4:	learn: 40.7081197	total: 4.72ms	remaining: 184ms
5:	learn: 39.1683248	total: 5.64ms	remaining: 182ms
6:	learn: 38.5039040	total: 6.53ms	remaining: 180ms
7:	learn: 37.7350474	total: 7.43ms	remaining: 178ms
8:	learn: 37.4046794	total: 8.26ms	remaining: 175ms
9:	learn: 37.0169556	total: 9.21ms	remaining: 175ms
10:	learn: 36.5795069	total: 10.1ms	remaining: 174ms
11:	learn: 35.5800530	total: 11ms	remaining: 173ms
12:	learn: 34.5521399	total: 11.9ms	remaining: 172ms
13:	learn: 33.5582170	total: 12.9ms	remaining: 171ms
14:	learn: 32.9976975	total: 13.9ms	remaining: 171ms
15:	learn: 32.7608602	total: 14.9ms	remaining: 171ms
16:	learn: 31.9106700	total: 15.8ms	remaining: 170ms
17:	learn: 31.7005703	total: 16.7ms	remaining: 169ms
18:	learn: 31.4912900	total: 17.6ms	remaining: 168ms
19:	learn: 30.9522447	total: 18.4ms	remaining: 166ms
20:	learn: 30.7380451	total: 19.4ms	remaining: 165ms
21:	learn: 30.3813894	total: 20.3ms	remaining: 164ms
22:	learn: 29.5720326	total: 21.2ms	remaining: 163ms
23:	learn: 28.8863059	total: 22.2ms	remaining: 163ms
24:	learn: 28.2766241	total: 23.1ms	remaining: 162ms
25:	learn: 27.9580003	total: 24.1ms	remaining: 161ms
26:	learn: 27.7731218	total: 25ms	remaining: 160ms
27:	learn: 27.3275009	total: 25.9ms	remaining: 159ms
28:	learn: 27.0312604	total: 26.8ms	remaining: 158ms
29:	learn: 26.8675371	total: 27.7ms	remaining: 157ms
30:	learn: 26.7948952	total: 28.6ms	remaining: 156ms
31:	learn: 26.2581075	total: 29.5ms	remaining: 155ms
32:	learn: 25.8681938	total: 30.5ms	remaining: 154ms
33:	learn: 25.6546902	total: 31.5ms	remaining: 154ms
34:	learn: 25.5311297	total: 32.5ms	remaining: 153ms
35:	learn: 25.3876780	total: 33.3ms	remaining: 152ms
36:	learn: 25.2840107	total: 34.3ms	remaining: 151ms
37:	learn: 25.1389723	total: 35.2ms	remaining: 150ms
38:	learn: 25.0393739	total: 36.1ms	remaining: 149ms
39:	learn: 24.9347083	total: 37ms	remaining: 148ms
40:	learn: 24.8003584	total: 37.9ms	remaining: 147ms
41:	learn: 24.7123645	total: 38.9ms	remaining: 146ms
42:	learn: 24.6180734	total: 39.7ms	remaining: 145ms
43:	learn: 24.3480769	total: 40.6ms	remaining: 144ms
44:	learn: 24.1730959	total: 41.4ms	remaining: 143ms
45:	learn: 24.0893664	total: 42.3ms	remaining: 142ms
46:	learn: 24.0002718	total: 43.3ms	remaining: 141ms
47:	learn: 23.9417882	total: 44.3ms	remaining: 140ms
48:	learn: 23.7430851	total: 45.2ms	remaining: 139ms
49:	learn: 23.6783500	total: 46.2ms	remaining: 139ms
50:	learn: 23.5548971	total: 47.3ms	remaining: 138ms
51:	learn: 23.5050161	total: 48.2ms	remaining: 137ms
52:	learn: 23.3133504	total: 49.3ms	remaining: 137ms
53:	learn: 23.2137338	total: 50.3ms	remaining: 136ms
54:	learn: 22.9382603	total: 51.3ms	remaining: 135ms
55:	learn: 22.8697860	total: 52.2ms	remaining: 134ms
56:	learn: 22.7549872	total: 53.2ms	remaining: 133ms
57:	learn: 22.5714124	total: 54.2ms	remaining: 133ms
58:	learn: 22.5247798	total: 55.2ms	remaining: 132ms
59:	learn: 22.3343607	total: 56.2ms	remaining: 131ms
60:	learn: 22.2762248	total: 57.1ms	remaining: 130ms
61:	learn: 22.2233450	total: 58.1ms	remaining: 129ms
62:	learn: 22.1435755	total: 59ms	remaining: 128ms
63:	learn: 22.0165239	total: 59.9ms	remaining: 127ms
64:	learn: 21.7645707	total: 60.9ms	remaining: 126ms
65:	learn: 21.4460607	total: 61.8ms	remaining: 125ms
66:	learn: 21.3715305	total: 62.6ms	remaining: 124ms
67:	learn: 21.3182268	total: 63.5ms	remaining: 123ms
68:	learn: 21.2436484	total: 64.4ms	remaining: 122ms
69:	learn: 21.1666993	total: 65.3ms	remaining: 121ms
70:	learn: 21.0851372	total: 66.5ms	remaining: 121ms
71:	learn: 20.8723719	total: 67.5ms	remaining: 120ms
72:	learn: 20.6321846	total: 68.4ms	remaining: 119ms
73:	learn: 20.4748023	total: 69.3ms	remaining: 118ms
74:	learn: 20.3227461	total: 70.2ms	remaining: 117ms
75:	learn: 20.2768617	total: 71.2ms	remaining: 116ms
76:	learn: 20.2066773	total: 72.1ms	remaining: 115ms
77:	learn: 19.9735308	total: 73.1ms	remaining: 114ms
78:	learn: 19.8733222	total: 74ms	remaining: 113ms
79:	learn: 19.8392313	total: 74.8ms	remaining: 112ms
80:	learn: 19.7079948	total: 75.7ms	remaining: 111ms
81:	learn: 19.6793430	total: 76.6ms	remaining: 110ms
82:	learn: 19.5027408	total: 77.5ms	remaining: 109ms
83:	learn: 19.4478712	total: 78.5ms	remaining: 108ms
84:	learn: 19.2261699	total: 79.4ms	remaining: 107ms
85:	learn: 19.0442767	total: 80.3ms	remaining: 106ms
86:	learn: 18.9740619	total: 81.4ms	remaining: 106ms
87:	learn: 18.9028166	total: 82.5ms	remaining: 105ms
88:	learn: 18.7887701	total: 83.5ms	remaining: 104ms
89:	learn: 18.6586954	total: 84.4ms	remaining: 103ms
90:	learn: 18.6037610	total: 85.3ms	remaining: 102ms
91:	learn: 18.5307810	total: 86.3ms	remaining: 101ms
92:	learn: 18.4319734	total: 87.3ms	remaining: 100ms
93:	learn: 18.2412652	total: 88.3ms	remaining: 99.5ms
94:	learn: 18.1850108	total: 89.2ms	remaining: 98.5ms
95:	learn: 18.0580961	total: 90.1ms	remaining: 97.6ms
96:	learn: 17.9469331	total: 91ms	remaining: 96.6ms
97:	learn: 17.7233371	total: 91.9ms	remaining: 95.6ms
98:	learn: 17.6691253	total: 92.8ms	remaining: 94.7ms
99:	learn: 17.5896117	total: 93.8ms	remaining: 93.8ms
100:	learn: 17.4929820	total: 94.7ms	remaining: 92.8ms
101:	learn: 17.4415284	total: 95.6ms	remaining: 91.9ms
102:	learn: 17.4027713	total: 96.5ms	remaining: 90.9ms
103:	learn: 17.3608480	total: 97.6ms	remaining: 90.1ms
104:	learn: 17.2231397	total: 98.6ms	remaining: 89.2ms
105:	learn: 17.2013305	total: 99.5ms	remaining: 88.2ms
106:	learn: 17.0949226	total: 100ms	remaining: 87.3ms
107:	learn: 17.0524045	total: 101ms	remaining: 86.4ms
108:	learn: 16.9598589	total: 102ms	remaining: 85.5ms
109:	learn: 16.9168343	total: 104ms	remaining: 84.8ms
110:	learn: 16.8959679	total: 105ms	remaining: 84ms
111:	learn: 16.7302824	total: 106ms	remaining: 83.2ms
112:	learn: 16.5980747	total: 107ms	remaining: 82.3ms
113:	learn: 16.5590019	total: 108ms	remaining: 81.6ms
114:	learn: 16.4877109	total: 110ms	remaining: 81.2ms
115:	learn: 16.4574907	total: 112ms	remaining: 80.9ms
116:	learn: 16.3070639	total: 113ms	remaining: 80.3ms
117:	learn: 16.2614840	total: 115ms	remaining: 80ms
118:	learn: 16.1657457	total: 116ms	remaining: 79.3ms
119:	learn: 16.0790650	total: 118ms	remaining: 78.5ms
120:	learn: 16.0001607	total: 119ms	remaining: 77.9ms
121:	learn: 15.9521882	total: 121ms	remaining: 77.5ms
122:	learn: 15.8118538	total: 123ms	remaining: 76.9ms
123:	learn: 15.7486251	total: 124ms	remaining: 76.2ms
124:	learn: 15.6859804	total: 126ms	remaining: 75.5ms
125:	learn: 15.6699779	total: 127ms	remaining: 74.8ms
126:	learn: 15.6307957	total: 129ms	remaining: 74ms
127:	learn: 15.5336410	total: 130ms	remaining: 73.2ms
128:	learn: 15.5044466	total: 132ms	remaining: 72.4ms
129:	learn: 15.4275538	total: 133ms	remaining: 71.6ms
130:	learn: 15.3808711	total: 135ms	remaining: 71.2ms
131:	learn: 15.3491239	total: 137ms	remaining: 70.3ms
132:	learn: 15.3087062	total: 138ms	remaining: 69.3ms
133:	learn: 15.2554858	total: 139ms	remaining: 68.3ms
134:	learn: 15.2204703	total: 140ms	remaining: 67.3ms
135:	learn: 15.1844824	total: 141ms	remaining: 66.3ms
136:	learn: 15.1224259	total: 142ms	remaining: 65.3ms
137:	learn: 15.1090267	total: 143ms	remaining: 64.3ms
138:	learn: 15.0871697	total: 144ms	remaining: 63.3ms
139:	learn: 15.0326035	total: 145ms	remaining: 62.3ms
140:	learn: 14.9595766	total: 147ms	remaining: 61.3ms
141:	learn: 14.9126505	total: 148ms	remaining: 60.3ms
142:	learn: 14.8762130	total: 149ms	remaining: 59.4ms
143:	learn: 14.8118319	total: 150ms	remaining: 58.3ms
144:	learn: 14.7748808	total: 151ms	remaining: 57.3ms
145:	learn: 14.7434799	total: 152ms	remaining: 56.3ms
146:	learn: 14.6922172	total: 153ms	remaining: 55.3ms
147:	learn: 14.6704760	total: 155ms	remaining: 54.3ms
148:	learn: 14.6455543	total: 156ms	remaining: 53.3ms
149:	learn: 14.6018164	total: 157ms	remaining: 52.3ms
150:	learn: 14.5826847	total: 158ms	remaining: 51.3ms
151:	learn: 14.5423604	total: 159ms	remaining: 50.2ms
152:	learn: 14.5132633	total: 160ms	remaining: 49.2ms
153:	learn: 14.4870430	total: 161ms	remaining: 48.2ms
154:	learn: 14.4526168	total: 162ms	remaining: 47.2ms
155:	learn: 14.3910798	total: 163ms	remaining: 46.1ms
156:	learn: 14.3783939	total: 165ms	remaining: 45.1ms
157:	learn: 14.3521778	total: 166ms	remaining: 44ms
158:	learn: 14.3144171	total: 167ms	remaining: 43ms
159:	learn: 14.3092817	total: 168ms	remaining: 41.9ms
160:	learn: 14.2902165	total: 169ms	remaining: 40.9ms
161:	learn: 14.2639661	total: 170ms	remaining: 39.8ms
162:	learn: 14.2479958	total: 171ms	remaining: 38.8ms
163:	learn: 14.2396704	total: 172ms	remaining: 37.7ms
164:	learn: 14.2139643	total: 173ms	remaining: 36.7ms
165:	learn: 14.2104344	total: 174ms	remaining: 35.7ms
166:	learn: 14.1738092	total: 175ms	remaining: 34.6ms
167:	learn: 14.1358066	total: 177ms	remaining: 33.6ms
168:	learn: 14.0959328	total: 178ms	remaining: 32.6ms
169:	learn: 14.0045648	total: 179ms	remaining: 31.5ms
170:	learn: 13.9744324	total: 180ms	remaining: 30.5ms
171:	learn: 13.9665835	total: 181ms	remaining: 29.4ms
172:	learn: 13.9514606	total: 182ms	remaining: 28.4ms
173:	learn: 13.9422037	total: 183ms	remaining: 27.3ms
174:	learn: 13.9332975	total: 184ms	remaining: 26.2ms
175:	learn: 13.8447726	total: 185ms	remaining: 25.2ms
176:	learn: 13.8314865	total: 186ms	remaining: 24.1ms
177:	learn: 13.8230164	total: 187ms	remaining: 23.1ms
178:	learn: 13.8155236	total: 188ms	remaining: 22ms
179:	learn: 13.8050153	total: 189ms	remaining: 21ms
180:	learn: 13.7696070	total: 190ms	remaining: 19.9ms
181:	learn: 13.7501626	total: 191ms	remaining: 18.9ms
182:	learn: 13.7177497	total: 192ms	remaining: 17.8ms
183:	learn: 13.6917237	total: 193ms	remaining: 16.8ms
184:	learn: 13.6512282	total: 194ms	remaining: 15.7ms
185:	learn: 13.6372034	total: 195ms	remaining: 14.7ms
186:	learn: 13.5753658	total: 196ms	remaining: 13.6ms
187:	learn: 13.5580785	total: 197ms	remaining: 12.6ms
188:	learn: 13.5283840	total: 198ms	remaining: 11.5ms
189:	learn: 13.4969701	total: 199ms	remaining: 10.5ms
190:	learn: 13.4502166	total: 200ms	remaining: 9.44ms
191:	learn: 13.4410658	total: 201ms	remaining: 8.39ms
192:	learn: 13.4278834	total: 202ms	remaining: 7.34ms
193:	learn: 13.4115427	total: 203ms	remaining: 6.29ms
194:	learn: 13.3746813	total: 204ms	remaining: 5.24ms
195:	learn: 13.3633774	total: 205ms	remaining: 4.19ms
196:	learn: 13.3410937	total: 206ms	remaining: 3.14ms
197:	learn: 13.3068766	total: 208ms	remaining: 2.1ms
198:	learn: 13.3029216	total: 209ms	remaining: 1.05ms
199:	learn: 13.2902084	total: 210ms	remaining: 0us
0:	learn: 45.2801187	total: 1.03ms	remaining: 206ms
1:	learn: 43.9022061	total: 1.92ms	remaining: 190ms
2:	learn: 42.8472409	total: 2.84ms	remaining: 186ms
3:	learn: 42.0460877	total: 3.73ms	remaining: 183ms
4:	learn: 40.7691303	total: 4.7ms	remaining: 183ms
5:	learn: 39.3047018	total: 5.74ms	remaining: 185ms
6:	learn: 37.9509978	total: 6.67ms	remaining: 184ms
7:	learn: 37.2300301	total: 7.58ms	remaining: 182ms
8:	learn: 36.9380307	total: 8.43ms	remaining: 179ms
9:	learn: 36.5186385	total: 9.36ms	remaining: 178ms
10:	learn: 36.0483073	total: 10.2ms	remaining: 176ms
11:	learn: 35.5277262	total: 11.2ms	remaining: 175ms
12:	learn: 34.5707792	total: 12.1ms	remaining: 174ms
13:	learn: 33.5448438	total: 13ms	remaining: 173ms
14:	learn: 32.9394722	total: 14.3ms	remaining: 176ms
15:	learn: 32.2224784	total: 15.2ms	remaining: 175ms
16:	learn: 31.4949215	total: 16.1ms	remaining: 174ms
17:	learn: 30.9766308	total: 17ms	remaining: 172ms
18:	learn: 30.6876128	total: 18ms	remaining: 171ms
19:	learn: 30.3382699	total: 18.9ms	remaining: 170ms
20:	learn: 30.0778090	total: 19.8ms	remaining: 169ms
21:	learn: 29.7890105	total: 20.7ms	remaining: 168ms
22:	learn: 29.3294067	total: 21.7ms	remaining: 167ms
23:	learn: 29.1058633	total: 22.7ms	remaining: 166ms
24:	learn: 28.5254965	total: 23.6ms	remaining: 165ms
25:	learn: 28.3947826	total: 24.5ms	remaining: 164ms
26:	learn: 27.9729009	total: 25.4ms	remaining: 163ms
27:	learn: 27.7762599	total: 26.4ms	remaining: 162ms
28:	learn: 27.5912160	total: 27.2ms	remaining: 161ms
29:	learn: 27.4382348	total: 28.2ms	remaining: 160ms
30:	learn: 27.0973697	total: 29.2ms	remaining: 159ms
31:	learn: 26.9004200	total: 30.2ms	remaining: 158ms
32:	learn: 26.6129021	total: 31.1ms	remaining: 157ms
33:	learn: 26.3660493	total: 32.1ms	remaining: 157ms
34:	learn: 26.2635529	total: 33.1ms	remaining: 156ms
35:	learn: 26.1916283	total: 33.9ms	remaining: 155ms
36:	learn: 26.0985291	total: 35.2ms	remaining: 155ms
37:	learn: 25.9659404	total: 36.5ms	remaining: 156ms
38:	learn: 25.7262377	total: 37.7ms	remaining: 155ms
39:	learn: 25.4809954	total: 39.2ms	remaining: 157ms
40:	learn: 25.3440060	total: 40.4ms	remaining: 156ms
41:	learn: 25.3112549	total: 41.5ms	remaining: 156ms
42:	learn: 25.2564550	total: 42.5ms	remaining: 155ms
43:	learn: 25.1739692	total: 43.7ms	remaining: 155ms
44:	learn: 25.1384274	total: 44.8ms	remaining: 154ms
45:	learn: 25.0447663	total: 45.9ms	remaining: 154ms
46:	learn: 24.8201340	total: 47.1ms	remaining: 153ms
47:	learn: 24.7574334	total: 48.2ms	remaining: 153ms
48:	learn: 24.5706548	total: 49.5ms	remaining: 152ms
49:	learn: 24.5183966	total: 50.7ms	remaining: 152ms
50:	learn: 24.4414337	total: 51.9ms	remaining: 152ms
51:	learn: 24.3357028	total: 53ms	remaining: 151ms
52:	learn: 24.3247113	total: 54.2ms	remaining: 150ms
53:	learn: 24.2725465	total: 55.5ms	remaining: 150ms
54:	learn: 23.9983847	total: 56.6ms	remaining: 149ms
55:	learn: 23.9627559	total: 57.5ms	remaining: 148ms
56:	learn: 23.9145553	total: 58.4ms	remaining: 147ms
57:	learn: 23.7757531	total: 59.3ms	remaining: 145ms
58:	learn: 23.7216584	total: 60.3ms	remaining: 144ms
59:	learn: 23.6699105	total: 61.4ms	remaining: 143ms
60:	learn: 23.6011146	total: 62.5ms	remaining: 142ms
61:	learn: 23.5650176	total: 63.6ms	remaining: 142ms
62:	learn: 23.5284638	total: 64.9ms	remaining: 141ms
63:	learn: 23.4690695	total: 66.4ms	remaining: 141ms
64:	learn: 23.3940631	total: 68ms	remaining: 141ms
65:	learn: 23.3662453	total: 69.3ms	remaining: 141ms
66:	learn: 23.3190940	total: 70.2ms	remaining: 139ms
67:	learn: 23.2986584	total: 71.2ms	remaining: 138ms
68:	learn: 23.2529912	total: 72.3ms	remaining: 137ms
69:	learn: 23.1094133	total: 73.1ms	remaining: 136ms
70:	learn: 22.9184242	total: 74ms	remaining: 134ms
71:	learn: 22.6866759	total: 74.9ms	remaining: 133ms
72:	learn: 22.6057583	total: 75.8ms	remaining: 132ms
73:	learn: 22.4838393	total: 76.7ms	remaining: 131ms
74:	learn: 22.2333236	total: 77.5ms	remaining: 129ms
75:	learn: 22.1120753	total: 78.4ms	remaining: 128ms
76:	learn: 22.0765287	total: 79.3ms	remaining: 127ms
77:	learn: 22.0304924	total: 80.1ms	remaining: 125ms
78:	learn: 22.0230993	total: 81ms	remaining: 124ms
79:	learn: 22.0042415	total: 81.9ms	remaining: 123ms
80:	learn: 21.8795389	total: 82.8ms	remaining: 122ms
81:	learn: 21.8456202	total: 83.7ms	remaining: 120ms
82:	learn: 21.7733275	total: 84.6ms	remaining: 119ms
83:	learn: 21.6806247	total: 85.5ms	remaining: 118ms
84:	learn: 21.6624486	total: 86.5ms	remaining: 117ms
85:	learn: 21.6498044	total: 87.5ms	remaining: 116ms
86:	learn: 21.5835353	total: 88.4ms	remaining: 115ms
87:	learn: 21.4017716	total: 89.2ms	remaining: 114ms
88:	learn: 21.2529610	total: 90ms	remaining: 112ms
89:	learn: 21.1279531	total: 90.9ms	remaining: 111ms
90:	learn: 21.0466260	total: 91.7ms	remaining: 110ms
91:	learn: 20.8952066	total: 92.6ms	remaining: 109ms
92:	learn: 20.8772971	total: 93.5ms	remaining: 108ms
93:	learn: 20.6741999	total: 94.3ms	remaining: 106ms
94:	learn: 20.6378157	total: 95.2ms	remaining: 105ms
95:	learn: 20.5962306	total: 96.1ms	remaining: 104ms
96:	learn: 20.5629829	total: 97ms	remaining: 103ms
97:	learn: 20.5448506	total: 97.9ms	remaining: 102ms
98:	learn: 20.5226524	total: 98.7ms	remaining: 101ms
99:	learn: 20.4312112	total: 99.6ms	remaining: 99.6ms
100:	learn: 20.4048452	total: 100ms	remaining: 98.5ms
101:	learn: 20.3752038	total: 101ms	remaining: 97.4ms
102:	learn: 20.3590112	total: 102ms	remaining: 96.4ms
103:	learn: 20.2680349	total: 103ms	remaining: 95.3ms
104:	learn: 20.1362314	total: 104ms	remaining: 94.3ms
105:	learn: 20.0802285	total: 105ms	remaining: 93.3ms
106:	learn: 19.9232838	total: 106ms	remaining: 92.3ms
107:	learn: 19.8193773	total: 107ms	remaining: 91.3ms
108:	learn: 19.7943631	total: 108ms	remaining: 90.2ms
109:	learn: 19.7229289	total: 109ms	remaining: 89.2ms
110:	learn: 19.5907909	total: 110ms	remaining: 88.2ms
111:	learn: 19.4546155	total: 111ms	remaining: 87.1ms
112:	learn: 19.4375942	total: 112ms	remaining: 86.1ms
113:	learn: 19.4151076	total: 113ms	remaining: 85ms
114:	learn: 19.4000766	total: 114ms	remaining: 84ms
115:	learn: 19.2875957	total: 115ms	remaining: 83ms
116:	learn: 19.2735673	total: 115ms	remaining: 81.9ms
117:	learn: 19.2081889	total: 116ms	remaining: 80.9ms
118:	learn: 19.1672137	total: 117ms	remaining: 79.9ms
119:	learn: 19.0968083	total: 118ms	remaining: 78.9ms
120:	learn: 18.9984559	total: 119ms	remaining: 77.9ms
121:	learn: 18.9275960	total: 120ms	remaining: 76.8ms
122:	learn: 18.8217056	total: 121ms	remaining: 75.9ms
123:	learn: 18.7014433	total: 122ms	remaining: 74.8ms
124:	learn: 18.6728637	total: 123ms	remaining: 73.8ms
125:	learn: 18.6598352	total: 124ms	remaining: 72.7ms
126:	learn: 18.5993266	total: 125ms	remaining: 71.7ms
127:	learn: 18.5852342	total: 126ms	remaining: 70.6ms
128:	learn: 18.5146543	total: 126ms	remaining: 69.6ms
129:	learn: 18.4801605	total: 127ms	remaining: 68.5ms
130:	learn: 18.2676408	total: 128ms	remaining: 67.5ms
131:	learn: 18.2494973	total: 129ms	remaining: 66.5ms
132:	learn: 18.1697048	total: 130ms	remaining: 65.4ms
133:	learn: 18.1389286	total: 131ms	remaining: 64.4ms
134:	learn: 18.0973904	total: 132ms	remaining: 63.4ms
135:	learn: 17.9996290	total: 133ms	remaining: 62.4ms
136:	learn: 17.9626363	total: 133ms	remaining: 61.4ms
137:	learn: 17.9496087	total: 134ms	remaining: 60.4ms
138:	learn: 17.9042024	total: 135ms	remaining: 59.3ms
139:	learn: 17.8927765	total: 136ms	remaining: 58.3ms
140:	learn: 17.8660122	total: 137ms	remaining: 57.3ms
141:	learn: 17.7475656	total: 138ms	remaining: 56.4ms
142:	learn: 17.6944334	total: 139ms	remaining: 55.4ms
143:	learn: 17.6797405	total: 140ms	remaining: 54.4ms
144:	learn: 17.6664132	total: 141ms	remaining: 53.4ms
145:	learn: 17.5997144	total: 142ms	remaining: 52.4ms
146:	learn: 17.4108683	total: 142ms	remaining: 51.4ms
147:	learn: 17.3406530	total: 143ms	remaining: 50.4ms
148:	learn: 17.3181477	total: 144ms	remaining: 49.4ms
149:	learn: 17.2702006	total: 145ms	remaining: 48.3ms
150:	learn: 17.1530569	total: 146ms	remaining: 47.3ms
151:	learn: 17.0874260	total: 147ms	remaining: 46.3ms
152:	learn: 17.0267677	total: 148ms	remaining: 45.3ms
153:	learn: 16.9793208	total: 148ms	remaining: 44.4ms
154:	learn: 16.9182291	total: 149ms	remaining: 43.4ms
155:	learn: 16.8962600	total: 150ms	remaining: 42.4ms
156:	learn: 16.8395104	total: 151ms	remaining: 41.4ms
157:	learn: 16.8007079	total: 152ms	remaining: 40.4ms
158:	learn: 16.7557320	total: 153ms	remaining: 39.4ms
159:	learn: 16.7450052	total: 154ms	remaining: 38.5ms
160:	learn: 16.7345445	total: 155ms	remaining: 37.5ms
161:	learn: 16.6817314	total: 156ms	remaining: 36.5ms
162:	learn: 16.6248358	total: 157ms	remaining: 35.6ms
163:	learn: 16.5789020	total: 158ms	remaining: 34.6ms
164:	learn: 16.5353886	total: 158ms	remaining: 33.6ms
165:	learn: 16.4952445	total: 159ms	remaining: 32.6ms
166:	learn: 16.4850501	total: 160ms	remaining: 31.7ms
167:	learn: 16.3843856	total: 161ms	remaining: 30.7ms
168:	learn: 16.3592728	total: 162ms	remaining: 29.8ms
169:	learn: 16.2861928	total: 163ms	remaining: 28.8ms
170:	learn: 16.2649911	total: 164ms	remaining: 27.9ms
171:	learn: 16.1977575	total: 165ms	remaining: 26.9ms
172:	learn: 16.1847998	total: 166ms	remaining: 26ms
173:	learn: 16.1812852	total: 167ms	remaining: 25ms
174:	learn: 16.1468297	total: 168ms	remaining: 24ms
175:	learn: 16.1436294	total: 169ms	remaining: 23.1ms
176:	learn: 16.1305002	total: 170ms	remaining: 22.1ms
177:	learn: 16.1077000	total: 171ms	remaining: 21.1ms
178:	learn: 16.0694944	total: 172ms	remaining: 20.2ms
179:	learn: 15.9938398	total: 173ms	remaining: 19.2ms
180:	learn: 15.9567876	total: 174ms	remaining: 18.2ms
181:	learn: 15.9454118	total: 175ms	remaining: 17.3ms
182:	learn: 15.9434230	total: 176ms	remaining: 16.3ms
183:	learn: 15.8906948	total: 176ms	remaining: 15.3ms
184:	learn: 15.8211938	total: 177ms	remaining: 14.4ms
185:	learn: 15.8148102	total: 178ms	remaining: 13.4ms
186:	learn: 15.7887930	total: 179ms	remaining: 12.4ms
187:	learn: 15.7843667	total: 180ms	remaining: 11.5ms
188:	learn: 15.7417983	total: 181ms	remaining: 10.5ms
189:	learn: 15.6930618	total: 182ms	remaining: 9.56ms
190:	learn: 15.6489770	total: 183ms	remaining: 8.6ms
191:	learn: 15.6467712	total: 183ms	remaining: 7.64ms
192:	learn: 15.5534080	total: 184ms	remaining: 6.69ms
193:	learn: 15.5089178	total: 185ms	remaining: 5.73ms
194:	learn: 15.4898722	total: 186ms	remaining: 4.77ms
195:	learn: 15.4852691	total: 187ms	remaining: 3.82ms
196:	learn: 15.4802710	total: 188ms	remaining: 2.86ms
197:	learn: 15.4352188	total: 189ms	remaining: 1.91ms
198:	learn: 15.3851395	total: 190ms	remaining: 954us
199:	learn: 15.3749774	total: 191ms	remaining: 0us
0:	learn: 46.2699959	total: 1.16ms	remaining: 230ms
1:	learn: 44.8854743	total: 2.14ms	remaining: 212ms
2:	learn: 43.4874731	total: 3.14ms	remaining: 206ms
3:	learn: 42.6584064	total: 4.03ms	remaining: 197ms
4:	learn: 42.1224094	total: 4.96ms	remaining: 193ms
5:	learn: 40.9459501	total: 5.79ms	remaining: 187ms
6:	learn: 39.4763483	total: 6.77ms	remaining: 187ms
7:	learn: 38.6090144	total: 7.67ms	remaining: 184ms
8:	learn: 38.2791057	total: 8.58ms	remaining: 182ms
9:	learn: 37.7813487	total: 9.5ms	remaining: 181ms
10:	learn: 37.4242408	total: 10.5ms	remaining: 180ms
11:	learn: 36.3484663	total: 11.4ms	remaining: 178ms
12:	learn: 35.3827565	total: 12.3ms	remaining: 177ms
13:	learn: 34.4315777	total: 13.2ms	remaining: 176ms
14:	learn: 33.5788252	total: 14.1ms	remaining: 174ms
15:	learn: 33.3125662	total: 15ms	remaining: 173ms
16:	learn: 32.5306907	total: 16ms	remaining: 172ms
17:	learn: 31.9688285	total: 16.9ms	remaining: 171ms
18:	learn: 31.7709834	total: 18ms	remaining: 172ms
19:	learn: 31.4927785	total: 19.1ms	remaining: 172ms
20:	learn: 31.2468916	total: 20.1ms	remaining: 171ms
21:	learn: 30.9125421	total: 21.5ms	remaining: 174ms
22:	learn: 30.2429233	total: 23.9ms	remaining: 184ms
23:	learn: 29.7659375	total: 25.3ms	remaining: 186ms
24:	learn: 29.4369976	total: 26.5ms	remaining: 186ms
25:	learn: 29.1267715	total: 27.8ms	remaining: 186ms
26:	learn: 28.9739320	total: 29.1ms	remaining: 186ms
27:	learn: 28.7871325	total: 30.5ms	remaining: 187ms
28:	learn: 28.6059752	total: 32ms	remaining: 188ms
29:	learn: 28.3471120	total: 33.8ms	remaining: 191ms
30:	learn: 28.2221955	total: 36ms	remaining: 196ms
31:	learn: 28.1174912	total: 37.9ms	remaining: 199ms
32:	learn: 27.7591371	total: 39.4ms	remaining: 200ms
33:	learn: 27.4545561	total: 40.9ms	remaining: 200ms
34:	learn: 27.3651817	total: 42ms	remaining: 198ms
35:	learn: 27.2720165	total: 43.1ms	remaining: 197ms
36:	learn: 27.1708405	total: 44.2ms	remaining: 195ms
37:	learn: 27.0126718	total: 45.3ms	remaining: 193ms
38:	learn: 26.9252742	total: 47.3ms	remaining: 195ms
39:	learn: 26.7619975	total: 49.4ms	remaining: 198ms
40:	learn: 26.5083292	total: 50.7ms	remaining: 197ms
41:	learn: 26.4789513	total: 52ms	remaining: 196ms
42:	learn: 26.4229710	total: 53ms	remaining: 194ms
43:	learn: 26.3645871	total: 54.1ms	remaining: 192ms
44:	learn: 26.2712363	total: 55.1ms	remaining: 190ms
45:	learn: 26.2241641	total: 56.1ms	remaining: 188ms
46:	learn: 26.1544475	total: 57.2ms	remaining: 186ms
47:	learn: 26.1134536	total: 58.3ms	remaining: 185ms
48:	learn: 25.9054241	total: 59.4ms	remaining: 183ms
49:	learn: 25.6874164	total: 60.7ms	remaining: 182ms
50:	learn: 25.5631575	total: 61.8ms	remaining: 181ms
51:	learn: 25.3809224	total: 62.9ms	remaining: 179ms
52:	learn: 25.1902631	total: 63.9ms	remaining: 177ms
53:	learn: 25.0273906	total: 64.8ms	remaining: 175ms
54:	learn: 24.9158305	total: 66ms	remaining: 174ms
55:	learn: 24.8514780	total: 67.3ms	remaining: 173ms
56:	learn: 24.7697643	total: 68.3ms	remaining: 171ms
57:	learn: 24.7115651	total: 69.3ms	remaining: 170ms
58:	learn: 24.6618184	total: 70.3ms	remaining: 168ms
59:	learn: 24.5267592	total: 71.3ms	remaining: 166ms
60:	learn: 24.4741026	total: 72.6ms	remaining: 165ms
61:	learn: 24.4277839	total: 73.9ms	remaining: 165ms
62:	learn: 24.2760324	total: 75ms	remaining: 163ms
63:	learn: 24.2315657	total: 76.1ms	remaining: 162ms
64:	learn: 24.0886786	total: 77.1ms	remaining: 160ms
65:	learn: 23.9247244	total: 78.2ms	remaining: 159ms
66:	learn: 23.7841338	total: 79.2ms	remaining: 157ms
67:	learn: 23.7559864	total: 80.3ms	remaining: 156ms
68:	learn: 23.7077371	total: 81.3ms	remaining: 154ms
69:	learn: 23.6649534	total: 82.3ms	remaining: 153ms
70:	learn: 23.6270368	total: 83.3ms	remaining: 151ms
71:	learn: 23.4636827	total: 84.6ms	remaining: 150ms
72:	learn: 23.1870361	total: 85.7ms	remaining: 149ms
73:	learn: 23.0968477	total: 86.8ms	remaining: 148ms
74:	learn: 22.9887973	total: 87.8ms	remaining: 146ms
75:	learn: 22.8838469	total: 88.9ms	remaining: 145ms
76:	learn: 22.8216257	total: 89.9ms	remaining: 144ms
77:	learn: 22.7837153	total: 91ms	remaining: 142ms
78:	learn: 22.7145905	total: 92ms	remaining: 141ms
79:	learn: 22.6907223	total: 92.9ms	remaining: 139ms
80:	learn: 22.5764438	total: 93.9ms	remaining: 138ms
81:	learn: 22.4800392	total: 94.8ms	remaining: 136ms
82:	learn: 22.4328644	total: 95.7ms	remaining: 135ms
83:	learn: 22.1728982	total: 96.7ms	remaining: 134ms
84:	learn: 22.0670578	total: 97.9ms	remaining: 132ms
85:	learn: 21.9684094	total: 99ms	remaining: 131ms
86:	learn: 21.8766732	total: 100ms	remaining: 130ms
87:	learn: 21.7803745	total: 101ms	remaining: 129ms
88:	learn: 21.6375981	total: 102ms	remaining: 128ms
89:	learn: 21.5730326	total: 103ms	remaining: 126ms
90:	learn: 21.4939746	total: 105ms	remaining: 125ms
91:	learn: 21.3218945	total: 106ms	remaining: 124ms
92:	learn: 21.2510601	total: 107ms	remaining: 123ms
93:	learn: 21.1757048	total: 108ms	remaining: 122ms
94:	learn: 21.1180091	total: 109ms	remaining: 121ms
95:	learn: 20.9964494	total: 110ms	remaining: 119ms
96:	learn: 20.9045719	total: 111ms	remaining: 118ms
97:	learn: 20.8193882	total: 112ms	remaining: 116ms
98:	learn: 20.7598774	total: 113ms	remaining: 115ms
99:	learn: 20.6397878	total: 114ms	remaining: 114ms
100:	learn: 20.5736765	total: 115ms	remaining: 112ms
101:	learn: 20.4913909	total: 116ms	remaining: 111ms
102:	learn: 20.3960154	total: 116ms	remaining: 110ms
103:	learn: 20.3224826	total: 117ms	remaining: 108ms
104:	learn: 20.2564899	total: 118ms	remaining: 107ms
105:	learn: 20.1325674	total: 119ms	remaining: 106ms
106:	learn: 20.0574015	total: 120ms	remaining: 105ms
107:	learn: 19.8072271	total: 121ms	remaining: 103ms
108:	learn: 19.7112510	total: 122ms	remaining: 102ms
109:	learn: 19.6509125	total: 123ms	remaining: 101ms
110:	learn: 19.5954385	total: 124ms	remaining: 99.5ms
111:	learn: 19.5448318	total: 125ms	remaining: 98.3ms
112:	learn: 19.4593526	total: 126ms	remaining: 97.1ms
113:	learn: 19.3743000	total: 127ms	remaining: 95.9ms
114:	learn: 19.3302381	total: 128ms	remaining: 94.6ms
115:	learn: 19.2860380	total: 129ms	remaining: 93.5ms
116:	learn: 19.0615175	total: 130ms	remaining: 92.2ms
117:	learn: 19.0185047	total: 131ms	remaining: 91ms
118:	learn: 18.9377922	total: 132ms	remaining: 89.8ms
119:	learn: 18.9028029	total: 133ms	remaining: 88.6ms
120:	learn: 18.8683850	total: 134ms	remaining: 87.4ms
121:	learn: 18.8548977	total: 135ms	remaining: 86.2ms
122:	learn: 18.7914127	total: 136ms	remaining: 85ms
123:	learn: 18.6896914	total: 137ms	remaining: 83.9ms
124:	learn: 18.6654429	total: 138ms	remaining: 82.6ms
125:	learn: 18.5726017	total: 139ms	remaining: 81.4ms
126:	learn: 18.4784282	total: 140ms	remaining: 80.2ms
127:	learn: 18.4297613	total: 141ms	remaining: 79ms
128:	learn: 18.3776109	total: 142ms	remaining: 77.9ms
129:	learn: 18.3645936	total: 143ms	remaining: 76.8ms
130:	learn: 18.3253364	total: 144ms	remaining: 75.6ms
131:	learn: 18.2658023	total: 145ms	remaining: 74.5ms
132:	learn: 18.2062697	total: 146ms	remaining: 73.4ms
133:	learn: 18.1527061	total: 147ms	remaining: 72.2ms
134:	learn: 18.1316305	total: 148ms	remaining: 71.1ms
135:	learn: 18.0646103	total: 149ms	remaining: 70ms
136:	learn: 18.0530383	total: 150ms	remaining: 68.8ms
137:	learn: 18.0250659	total: 151ms	remaining: 67.8ms
138:	learn: 18.0131252	total: 152ms	remaining: 66.7ms
139:	learn: 17.9494983	total: 153ms	remaining: 65.5ms
140:	learn: 17.9252869	total: 154ms	remaining: 64.4ms
141:	learn: 17.8953732	total: 155ms	remaining: 63.2ms
142:	learn: 17.8514183	total: 156ms	remaining: 62.1ms
143:	learn: 17.7802266	total: 157ms	remaining: 60.9ms
144:	learn: 17.6903795	total: 158ms	remaining: 59.8ms
145:	learn: 17.6576104	total: 159ms	remaining: 58.6ms
146:	learn: 17.5872369	total: 159ms	remaining: 57.5ms
147:	learn: 17.5581149	total: 160ms	remaining: 56.4ms
148:	learn: 17.5216630	total: 161ms	remaining: 55.2ms
149:	learn: 17.4728428	total: 162ms	remaining: 54.1ms
150:	learn: 17.4594283	total: 163ms	remaining: 53ms
151:	learn: 17.3879828	total: 164ms	remaining: 51.9ms
152:	learn: 17.3189338	total: 165ms	remaining: 50.8ms
153:	learn: 17.3035591	total: 166ms	remaining: 49.7ms
154:	learn: 17.2389162	total: 168ms	remaining: 48.6ms
155:	learn: 17.2246577	total: 169ms	remaining: 47.5ms
156:	learn: 17.1810974	total: 170ms	remaining: 46.4ms
157:	learn: 17.1426611	total: 170ms	remaining: 45.3ms
158:	learn: 17.1333268	total: 171ms	remaining: 44.2ms
159:	learn: 17.0347736	total: 172ms	remaining: 43.1ms
160:	learn: 16.9935040	total: 173ms	remaining: 42ms
161:	learn: 16.9042551	total: 174ms	remaining: 40.9ms
162:	learn: 16.8766477	total: 175ms	remaining: 39.8ms
163:	learn: 16.8511556	total: 176ms	remaining: 38.7ms
164:	learn: 16.8395866	total: 177ms	remaining: 37.6ms
165:	learn: 16.7994908	total: 178ms	remaining: 36.5ms
166:	learn: 16.7403781	total: 179ms	remaining: 35.4ms
167:	learn: 16.6991563	total: 180ms	remaining: 34.3ms
168:	learn: 16.6449540	total: 181ms	remaining: 33.2ms
169:	learn: 16.6233722	total: 182ms	remaining: 32.1ms
170:	learn: 16.5779656	total: 183ms	remaining: 31ms
171:	learn: 16.5549539	total: 184ms	remaining: 29.9ms
172:	learn: 16.5033403	total: 185ms	remaining: 28.8ms
173:	learn: 16.4277637	total: 186ms	remaining: 27.7ms
174:	learn: 16.4021748	total: 187ms	remaining: 26.7ms
175:	learn: 16.3498665	total: 188ms	remaining: 25.6ms
176:	learn: 16.3064470	total: 188ms	remaining: 24.5ms
177:	learn: 16.2702973	total: 189ms	remaining: 23.4ms
178:	learn: 16.2549298	total: 190ms	remaining: 22.3ms
179:	learn: 16.2189636	total: 191ms	remaining: 21.2ms
180:	learn: 16.1674264	total: 192ms	remaining: 20.1ms
181:	learn: 16.1179352	total: 193ms	remaining: 19.1ms
182:	learn: 16.0976349	total: 194ms	remaining: 18ms
183:	learn: 16.0376148	total: 195ms	remaining: 16.9ms
184:	learn: 16.0211743	total: 196ms	remaining: 15.9ms
185:	learn: 15.9811708	total: 196ms	remaining: 14.8ms
186:	learn: 15.9341211	total: 197ms	remaining: 13.7ms
187:	learn: 15.9125573	total: 198ms	remaining: 12.7ms
188:	learn: 15.8988890	total: 199ms	remaining: 11.6ms
189:	learn: 15.8516321	total: 201ms	remaining: 10.6ms
190:	learn: 15.7935432	total: 201ms	remaining: 9.49ms
191:	learn: 15.7495219	total: 202ms	remaining: 8.43ms
192:	learn: 15.7258412	total: 203ms	remaining: 7.37ms
193:	learn: 15.6504316	total: 204ms	remaining: 6.31ms
194:	learn: 15.6036074	total: 205ms	remaining: 5.25ms
195:	learn: 15.5525994	total: 206ms	remaining: 4.2ms
196:	learn: 15.5392575	total: 207ms	remaining: 3.15ms
197:	learn: 15.5020674	total: 208ms	remaining: 2.1ms
198:	learn: 15.4360789	total: 208ms	remaining: 1.05ms
199:	learn: 15.3901879	total: 209ms	remaining: 0us
0:	learn: 27.6506730	total: 4.52ms	remaining: 447ms
1:	learn: 27.1638793	total: 8.66ms	remaining: 424ms
2:	learn: 26.8000665	total: 13.2ms	remaining: 426ms
3:	learn: 26.4256132	total: 17.3ms	remaining: 416ms
4:	learn: 26.0088351	total: 22.1ms	remaining: 420ms
5:	learn: 25.7558298	total: 26.8ms	remaining: 420ms
6:	learn: 25.3380711	total: 31.3ms	remaining: 415ms
7:	learn: 25.0571611	total: 35.7ms	remaining: 410ms
8:	learn: 24.6790148	total: 39.7ms	remaining: 402ms
9:	learn: 24.3600941	total: 43.8ms	remaining: 395ms
10:	learn: 24.1105667	total: 48.2ms	remaining: 390ms
11:	learn: 23.7736542	total: 52.8ms	remaining: 388ms
12:	learn: 23.5824429	total: 57ms	remaining: 382ms
13:	learn: 23.2658303	total: 61.1ms	remaining: 375ms
14:	learn: 23.0061886	total: 65.7ms	remaining: 373ms
15:	learn: 22.8060389	total: 70.2ms	remaining: 368ms
16:	learn: 22.5899735	total: 74.5ms	remaining: 364ms
17:	learn: 22.3625048	total: 78.6ms	remaining: 358ms
18:	learn: 22.0706477	total: 83.1ms	remaining: 354ms
19:	learn: 21.8739394	total: 87.2ms	remaining: 349ms
20:	learn: 21.6143650	total: 91.4ms	remaining: 344ms
21:	learn: 21.4571623	total: 95.7ms	remaining: 339ms
22:	learn: 21.2395769	total: 100ms	remaining: 335ms
23:	learn: 20.9801795	total: 105ms	remaining: 331ms
24:	learn: 20.8036808	total: 109ms	remaining: 327ms
25:	learn: 20.6387539	total: 114ms	remaining: 324ms
26:	learn: 20.4401427	total: 118ms	remaining: 320ms
27:	learn: 20.2879575	total: 122ms	remaining: 314ms
28:	learn: 20.0538664	total: 127ms	remaining: 310ms
29:	learn: 19.8363102	total: 131ms	remaining: 305ms
30:	learn: 19.7015446	total: 135ms	remaining: 301ms
31:	learn: 19.5483114	total: 140ms	remaining: 297ms
32:	learn: 19.4163053	total: 144ms	remaining: 293ms
33:	learn: 19.2880625	total: 148ms	remaining: 288ms
34:	learn: 19.1303389	total: 153ms	remaining: 284ms
35:	learn: 18.9237448	total: 157ms	remaining: 280ms
36:	learn: 18.8142925	total: 162ms	remaining: 276ms
37:	learn: 18.6994696	total: 166ms	remaining: 271ms
38:	learn: 18.5629211	total: 171ms	remaining: 268ms
39:	learn: 18.4600917	total: 176ms	remaining: 264ms
40:	learn: 18.3567139	total: 180ms	remaining: 260ms
41:	learn: 18.2120527	total: 187ms	remaining: 258ms
42:	learn: 18.0688062	total: 194ms	remaining: 258ms
43:	learn: 17.9250181	total: 206ms	remaining: 262ms
44:	learn: 17.8399138	total: 212ms	remaining: 259ms
45:	learn: 17.6720713	total: 219ms	remaining: 258ms
46:	learn: 17.5273091	total: 225ms	remaining: 253ms
47:	learn: 17.4232814	total: 230ms	remaining: 249ms
48:	learn: 17.2957579	total: 235ms	remaining: 244ms
49:	learn: 17.1892874	total: 240ms	remaining: 240ms
50:	learn: 17.0490355	total: 245ms	remaining: 235ms
51:	learn: 16.9666450	total: 250ms	remaining: 231ms
52:	learn: 16.8600056	total: 256ms	remaining: 227ms
53:	learn: 16.7542588	total: 262ms	remaining: 223ms
54:	learn: 16.6316077	total: 267ms	remaining: 218ms
55:	learn: 16.5588112	total: 272ms	remaining: 214ms
56:	learn: 16.5010186	total: 277ms	remaining: 209ms
57:	learn: 16.4081540	total: 283ms	remaining: 205ms
58:	learn: 16.3040451	total: 287ms	remaining: 199ms
59:	learn: 16.1890564	total: 291ms	remaining: 194ms
60:	learn: 16.0977103	total: 296ms	remaining: 189ms
61:	learn: 15.9627607	total: 300ms	remaining: 184ms
62:	learn: 15.9022248	total: 304ms	remaining: 178ms
63:	learn: 15.8151881	total: 308ms	remaining: 173ms
64:	learn: 15.7353125	total: 313ms	remaining: 168ms
65:	learn: 15.6312897	total: 317ms	remaining: 163ms
66:	learn: 15.5330927	total: 322ms	remaining: 159ms
67:	learn: 15.4698681	total: 327ms	remaining: 154ms
68:	learn: 15.4108571	total: 331ms	remaining: 149ms
69:	learn: 15.3492945	total: 336ms	remaining: 144ms
70:	learn: 15.3036540	total: 341ms	remaining: 139ms
71:	learn: 15.2390833	total: 345ms	remaining: 134ms
72:	learn: 15.1556327	total: 349ms	remaining: 129ms
73:	learn: 15.1016315	total: 353ms	remaining: 124ms
74:	learn: 15.0287076	total: 358ms	remaining: 119ms
75:	learn: 14.9530572	total: 363ms	remaining: 115ms
76:	learn: 14.8965517	total: 367ms	remaining: 110ms
77:	learn: 14.8125426	total: 372ms	remaining: 105ms
78:	learn: 14.7435359	total: 377ms	remaining: 100ms
79:	learn: 14.6963163	total: 382ms	remaining: 95.5ms
80:	learn: 14.6200060	total: 390ms	remaining: 91.5ms
81:	learn: 14.5707760	total: 397ms	remaining: 87.2ms
82:	learn: 14.5053651	total: 403ms	remaining: 82.6ms
83:	learn: 14.4115458	total: 408ms	remaining: 77.8ms
84:	learn: 14.3117159	total: 414ms	remaining: 73.1ms
85:	learn: 14.2511326	total: 419ms	remaining: 68.2ms
86:	learn: 14.1372486	total: 423ms	remaining: 63.2ms
87:	learn: 14.0992301	total: 428ms	remaining: 58.3ms
88:	learn: 14.0228331	total: 433ms	remaining: 53.5ms
89:	learn: 13.9249836	total: 438ms	remaining: 48.6ms
90:	learn: 13.8679364	total: 442ms	remaining: 43.8ms
91:	learn: 13.8405578	total: 447ms	remaining: 38.9ms
92:	learn: 13.7711325	total: 452ms	remaining: 34ms
93:	learn: 13.7357019	total: 456ms	remaining: 29.1ms
94:	learn: 13.6735271	total: 461ms	remaining: 24.3ms
95:	learn: 13.5682393	total: 466ms	remaining: 19.4ms
96:	learn: 13.5342610	total: 470ms	remaining: 14.5ms
97:	learn: 13.4710034	total: 474ms	remaining: 9.67ms
98:	learn: 13.4022402	total: 478ms	remaining: 4.83ms
99:	learn: 13.3351238	total: 483ms	remaining: 0us
0:	learn: 42.9181702	total: 5.03ms	remaining: 498ms
1:	learn: 42.0286736	total: 9.11ms	remaining: 446ms
2:	learn: 41.2764568	total: 13.7ms	remaining: 442ms
3:	learn: 40.4721918	total: 18ms	remaining: 431ms
4:	learn: 39.8518928	total: 22.5ms	remaining: 428ms
5:	learn: 39.2645479	total: 27ms	remaining: 422ms
6:	learn: 38.4453704	total: 31.2ms	remaining: 415ms
7:	learn: 37.7122059	total: 35.6ms	remaining: 409ms
8:	learn: 36.9185796	total: 40.9ms	remaining: 414ms
9:	learn: 36.1668427	total: 45.6ms	remaining: 410ms
10:	learn: 35.5639029	total: 50.5ms	remaining: 409ms
11:	learn: 34.7724193	total: 55.6ms	remaining: 408ms
12:	learn: 34.3053433	total: 60.5ms	remaining: 405ms
13:	learn: 33.6561327	total: 61.7ms	remaining: 379ms
14:	learn: 33.0134042	total: 66.5ms	remaining: 377ms
15:	learn: 32.4483300	total: 74.7ms	remaining: 392ms
16:	learn: 31.8581144	total: 81.8ms	remaining: 399ms
17:	learn: 31.2858301	total: 91.3ms	remaining: 416ms
18:	learn: 30.8483018	total: 98.6ms	remaining: 421ms
19:	learn: 30.4174622	total: 104ms	remaining: 417ms
20:	learn: 29.8994411	total: 110ms	remaining: 413ms
21:	learn: 29.5045355	total: 115ms	remaining: 408ms
22:	learn: 28.9923519	total: 120ms	remaining: 402ms
23:	learn: 28.4255717	total: 126ms	remaining: 398ms
24:	learn: 28.0283139	total: 131ms	remaining: 393ms
25:	learn: 27.7434814	total: 137ms	remaining: 389ms
26:	learn: 27.2770731	total: 142ms	remaining: 385ms
27:	learn: 26.8928270	total: 147ms	remaining: 379ms
28:	learn: 26.4282671	total: 152ms	remaining: 373ms
29:	learn: 26.0272764	total: 158ms	remaining: 368ms
30:	learn: 25.7579312	total: 163ms	remaining: 363ms
31:	learn: 25.4542434	total: 167ms	remaining: 356ms
32:	learn: 25.1232564	total: 172ms	remaining: 349ms
33:	learn: 24.8110795	total: 191ms	remaining: 370ms
34:	learn: 24.5077579	total: 195ms	remaining: 362ms
35:	learn: 24.1909000	total: 199ms	remaining: 354ms
36:	learn: 23.8719468	total: 203ms	remaining: 346ms
37:	learn: 23.5764366	total: 205ms	remaining: 334ms
38:	learn: 23.3468086	total: 209ms	remaining: 327ms
39:	learn: 23.0908771	total: 213ms	remaining: 320ms
40:	learn: 22.8580876	total: 218ms	remaining: 313ms
41:	learn: 22.6060825	total: 222ms	remaining: 307ms
42:	learn: 22.4125407	total: 227ms	remaining: 301ms
43:	learn: 22.1990617	total: 232ms	remaining: 295ms
44:	learn: 21.9716164	total: 236ms	remaining: 288ms
45:	learn: 21.8360935	total: 240ms	remaining: 282ms
46:	learn: 21.6169256	total: 245ms	remaining: 276ms
47:	learn: 21.4620612	total: 250ms	remaining: 270ms
48:	learn: 21.2894194	total: 254ms	remaining: 265ms
49:	learn: 21.1066266	total: 259ms	remaining: 259ms
50:	learn: 20.9484898	total: 264ms	remaining: 253ms
51:	learn: 20.7195338	total: 272ms	remaining: 251ms
52:	learn: 20.4899740	total: 279ms	remaining: 248ms
53:	learn: 20.3356583	total: 287ms	remaining: 245ms
54:	learn: 20.0754393	total: 292ms	remaining: 239ms
55:	learn: 19.9199159	total: 298ms	remaining: 234ms
56:	learn: 19.7761128	total: 302ms	remaining: 228ms
57:	learn: 19.6533060	total: 307ms	remaining: 222ms
58:	learn: 19.5113942	total: 311ms	remaining: 216ms
59:	learn: 19.3985022	total: 316ms	remaining: 211ms
60:	learn: 19.2683443	total: 321ms	remaining: 205ms
61:	learn: 19.1460824	total: 325ms	remaining: 199ms
62:	learn: 19.0042655	total: 329ms	remaining: 193ms
63:	learn: 18.8720873	total: 334ms	remaining: 188ms
64:	learn: 18.7183888	total: 339ms	remaining: 183ms
65:	learn: 18.5472360	total: 343ms	remaining: 177ms
66:	learn: 18.3976642	total: 348ms	remaining: 171ms
67:	learn: 18.2282851	total: 353ms	remaining: 166ms
68:	learn: 18.1469157	total: 358ms	remaining: 161ms
69:	learn: 18.0649494	total: 363ms	remaining: 155ms
70:	learn: 17.9485405	total: 367ms	remaining: 150ms
71:	learn: 17.8460261	total: 372ms	remaining: 145ms
72:	learn: 17.7679843	total: 377ms	remaining: 139ms
73:	learn: 17.5989290	total: 382ms	remaining: 134ms
74:	learn: 17.4381322	total: 386ms	remaining: 129ms
75:	learn: 17.3370886	total: 391ms	remaining: 123ms
76:	learn: 17.2675308	total: 395ms	remaining: 118ms
77:	learn: 17.1946430	total: 399ms	remaining: 113ms
78:	learn: 17.0923725	total: 404ms	remaining: 107ms
79:	learn: 17.0537265	total: 409ms	remaining: 102ms
80:	learn: 16.9456831	total: 413ms	remaining: 97ms
81:	learn: 16.8457353	total: 417ms	remaining: 91.6ms
82:	learn: 16.7469310	total: 422ms	remaining: 86.5ms
83:	learn: 16.6679953	total: 427ms	remaining: 81.3ms
84:	learn: 16.6274189	total: 431ms	remaining: 76.1ms
85:	learn: 16.5516530	total: 436ms	remaining: 70.9ms
86:	learn: 16.4886066	total: 441ms	remaining: 65.9ms
87:	learn: 16.3947859	total: 446ms	remaining: 60.8ms
88:	learn: 16.3406495	total: 450ms	remaining: 55.7ms
89:	learn: 16.3019195	total: 455ms	remaining: 50.5ms
90:	learn: 16.1860681	total: 459ms	remaining: 45.4ms
91:	learn: 16.1282812	total: 464ms	remaining: 40.4ms
92:	learn: 16.0303652	total: 473ms	remaining: 35.6ms
93:	learn: 15.9561692	total: 481ms	remaining: 30.7ms
94:	learn: 15.8733994	total: 489ms	remaining: 25.8ms
95:	learn: 15.8108833	total: 496ms	remaining: 20.7ms
96:	learn: 15.7606004	total: 502ms	remaining: 15.5ms
97:	learn: 15.6984664	total: 508ms	remaining: 10.4ms
98:	learn: 15.6223632	total: 513ms	remaining: 5.18ms
99:	learn: 15.5671136	total: 518ms	remaining: 0us
0:	learn: 46.4788614	total: 1.95ms	remaining: 193ms
1:	learn: 45.7608372	total: 6.74ms	remaining: 330ms
2:	learn: 44.8825004	total: 11ms	remaining: 355ms
3:	learn: 44.0362738	total: 15ms	remaining: 359ms
4:	learn: 43.2086374	total: 19.3ms	remaining: 366ms
5:	learn: 42.5835773	total: 23.9ms	remaining: 374ms
6:	learn: 41.9673269	total: 28.3ms	remaining: 376ms
7:	learn: 41.4748717	total: 32.6ms	remaining: 375ms
8:	learn: 40.7129183	total: 37.2ms	remaining: 376ms
9:	learn: 39.8900884	total: 41.8ms	remaining: 376ms
10:	learn: 39.4142193	total: 46.1ms	remaining: 373ms
11:	learn: 38.8645613	total: 50.6ms	remaining: 371ms
12:	learn: 38.2394731	total: 54.9ms	remaining: 367ms
13:	learn: 37.6834515	total: 59.1ms	remaining: 363ms
14:	learn: 37.0673507	total: 63.3ms	remaining: 359ms
15:	learn: 36.4728340	total: 68.2ms	remaining: 358ms
16:	learn: 36.0489086	total: 72.7ms	remaining: 355ms
17:	learn: 35.4744141	total: 77.3ms	remaining: 352ms
18:	learn: 35.0106021	total: 82.2ms	remaining: 350ms
19:	learn: 34.5586053	total: 87.1ms	remaining: 349ms
20:	learn: 34.1308223	total: 92ms	remaining: 346ms
21:	learn: 33.7701450	total: 96.7ms	remaining: 343ms
22:	learn: 33.4425444	total: 101ms	remaining: 339ms
23:	learn: 33.0296412	total: 106ms	remaining: 336ms
24:	learn: 32.6359803	total: 116ms	remaining: 347ms
25:	learn: 32.1846182	total: 123ms	remaining: 350ms
26:	learn: 31.7620230	total: 130ms	remaining: 350ms
27:	learn: 31.4669337	total: 135ms	remaining: 347ms
28:	learn: 31.0792062	total: 140ms	remaining: 344ms
29:	learn: 30.7970537	total: 145ms	remaining: 338ms
30:	learn: 30.4952215	total: 149ms	remaining: 332ms
31:	learn: 30.2845344	total: 154ms	remaining: 326ms
32:	learn: 29.9592732	total: 158ms	remaining: 320ms
33:	learn: 29.6798596	total: 163ms	remaining: 316ms
34:	learn: 29.3368905	total: 167ms	remaining: 310ms
35:	learn: 29.0621238	total: 171ms	remaining: 304ms
36:	learn: 28.6445375	total: 175ms	remaining: 298ms
37:	learn: 28.2418096	total: 180ms	remaining: 293ms
38:	learn: 27.9495390	total: 184ms	remaining: 288ms
39:	learn: 27.6958160	total: 189ms	remaining: 283ms
40:	learn: 27.4811189	total: 193ms	remaining: 278ms
41:	learn: 27.1494420	total: 198ms	remaining: 273ms
42:	learn: 26.8388873	total: 202ms	remaining: 268ms
43:	learn: 26.5721300	total: 206ms	remaining: 263ms
44:	learn: 26.3384738	total: 211ms	remaining: 258ms
45:	learn: 26.1894781	total: 215ms	remaining: 253ms
46:	learn: 25.9580198	total: 220ms	remaining: 248ms
47:	learn: 25.7897985	total: 224ms	remaining: 242ms
48:	learn: 25.6000271	total: 228ms	remaining: 237ms
49:	learn: 25.4130873	total: 232ms	remaining: 232ms
50:	learn: 25.1699061	total: 237ms	remaining: 228ms
51:	learn: 24.9324449	total: 241ms	remaining: 222ms
52:	learn: 24.7729152	total: 245ms	remaining: 217ms
53:	learn: 24.5026563	total: 249ms	remaining: 212ms
54:	learn: 24.2332627	total: 254ms	remaining: 208ms
55:	learn: 23.9611984	total: 258ms	remaining: 203ms
56:	learn: 23.7862603	total: 263ms	remaining: 198ms
57:	learn: 23.6318154	total: 267ms	remaining: 193ms
58:	learn: 23.4443306	total: 271ms	remaining: 188ms
59:	learn: 23.2581425	total: 275ms	remaining: 183ms
60:	learn: 23.0549901	total: 280ms	remaining: 179ms
61:	learn: 22.8666218	total: 285ms	remaining: 175ms
62:	learn: 22.6956739	total: 292ms	remaining: 172ms
63:	learn: 22.5068544	total: 299ms	remaining: 168ms
64:	learn: 22.1859147	total: 306ms	remaining: 165ms
65:	learn: 22.0462043	total: 312ms	remaining: 161ms
66:	learn: 21.9329563	total: 318ms	remaining: 157ms
67:	learn: 21.8029736	total: 323ms	remaining: 152ms
68:	learn: 21.6861091	total: 329ms	remaining: 148ms
69:	learn: 21.4838140	total: 335ms	remaining: 143ms
70:	learn: 21.3548921	total: 340ms	remaining: 139ms
71:	learn: 21.2244517	total: 346ms	remaining: 134ms
72:	learn: 21.0702958	total: 351ms	remaining: 130ms
73:	learn: 20.9224662	total: 357ms	remaining: 125ms
74:	learn: 20.8150357	total: 362ms	remaining: 121ms
75:	learn: 20.6962739	total: 368ms	remaining: 116ms
76:	learn: 20.5809258	total: 374ms	remaining: 112ms
77:	learn: 20.4735470	total: 379ms	remaining: 107ms
78:	learn: 20.3778167	total: 384ms	remaining: 102ms
79:	learn: 20.2211268	total: 389ms	remaining: 97.2ms
80:	learn: 20.1478678	total: 394ms	remaining: 92.5ms
81:	learn: 20.1032967	total: 400ms	remaining: 87.8ms
82:	learn: 19.9236300	total: 404ms	remaining: 82.8ms
83:	learn: 19.8151745	total: 409ms	remaining: 78ms
84:	learn: 19.7099856	total: 414ms	remaining: 73ms
85:	learn: 19.6264833	total: 418ms	remaining: 68.1ms
86:	learn: 19.4916361	total: 423ms	remaining: 63.2ms
87:	learn: 19.4050529	total: 427ms	remaining: 58.3ms
88:	learn: 19.2547065	total: 431ms	remaining: 53.3ms
89:	learn: 19.1610225	total: 436ms	remaining: 48.5ms
90:	learn: 19.0898958	total: 440ms	remaining: 43.6ms
91:	learn: 19.0489664	total: 445ms	remaining: 38.7ms
92:	learn: 18.9206240	total: 449ms	remaining: 33.8ms
93:	learn: 18.8636239	total: 454ms	remaining: 29ms
94:	learn: 18.8126187	total: 458ms	remaining: 24.1ms
95:	learn: 18.7579275	total: 463ms	remaining: 19.3ms
96:	learn: 18.6382753	total: 467ms	remaining: 14.4ms
97:	learn: 18.5397334	total: 471ms	remaining: 9.62ms
98:	learn: 18.4375951	total: 476ms	remaining: 4.8ms
99:	learn: 18.4033755	total: 482ms	remaining: 0us
0:	learn: 46.1068821	total: 1.99ms	remaining: 197ms
1:	learn: 45.3970261	total: 6.66ms	remaining: 326ms
2:	learn: 44.8732696	total: 11.1ms	remaining: 360ms
3:	learn: 44.1290184	total: 15.5ms	remaining: 372ms
4:	learn: 43.3290271	total: 20ms	remaining: 380ms
5:	learn: 42.7069090	total: 24.1ms	remaining: 377ms
6:	learn: 42.0572971	total: 28.5ms	remaining: 379ms
7:	learn: 41.4797924	total: 32.8ms	remaining: 377ms
8:	learn: 41.0023122	total: 37.2ms	remaining: 376ms
9:	learn: 40.5330570	total: 41.3ms	remaining: 372ms
10:	learn: 39.9726545	total: 45.5ms	remaining: 368ms
11:	learn: 39.3044053	total: 49.4ms	remaining: 362ms
12:	learn: 38.8169735	total: 53.5ms	remaining: 358ms
13:	learn: 38.2458761	total: 57.8ms	remaining: 355ms
14:	learn: 37.6280321	total: 61.6ms	remaining: 349ms
15:	learn: 37.0800610	total: 66.2ms	remaining: 347ms
16:	learn: 36.5489363	total: 70.4ms	remaining: 344ms
17:	learn: 36.0981456	total: 74.5ms	remaining: 339ms
18:	learn: 35.6956274	total: 78.8ms	remaining: 336ms
19:	learn: 35.1471999	total: 82.9ms	remaining: 331ms
20:	learn: 34.6235408	total: 87.1ms	remaining: 328ms
21:	learn: 34.1987018	total: 91.7ms	remaining: 325ms
22:	learn: 33.8985062	total: 96.1ms	remaining: 322ms
23:	learn: 33.3869017	total: 100ms	remaining: 318ms
24:	learn: 32.9100550	total: 105ms	remaining: 315ms
25:	learn: 32.4156208	total: 110ms	remaining: 312ms
26:	learn: 31.9320493	total: 114ms	remaining: 308ms
27:	learn: 31.5711468	total: 118ms	remaining: 303ms
28:	learn: 31.2404433	total: 122ms	remaining: 299ms
29:	learn: 30.8807946	total: 127ms	remaining: 295ms
30:	learn: 30.5948438	total: 131ms	remaining: 291ms
31:	learn: 30.3885560	total: 135ms	remaining: 288ms
32:	learn: 30.0625101	total: 140ms	remaining: 285ms
33:	learn: 29.9113114	total: 145ms	remaining: 281ms
34:	learn: 29.6983470	total: 149ms	remaining: 277ms
35:	learn: 29.4775849	total: 154ms	remaining: 273ms
36:	learn: 29.0538055	total: 158ms	remaining: 269ms
37:	learn: 28.6792318	total: 163ms	remaining: 266ms
38:	learn: 28.4231383	total: 168ms	remaining: 262ms
39:	learn: 28.1078565	total: 172ms	remaining: 258ms
40:	learn: 27.9079179	total: 177ms	remaining: 255ms
41:	learn: 27.6721506	total: 185ms	remaining: 255ms
42:	learn: 27.4228033	total: 193ms	remaining: 255ms
43:	learn: 27.1740534	total: 204ms	remaining: 259ms
44:	learn: 26.8584071	total: 210ms	remaining: 257ms
45:	learn: 26.6902083	total: 217ms	remaining: 255ms
46:	learn: 26.4855335	total: 222ms	remaining: 251ms
47:	learn: 26.2730822	total: 228ms	remaining: 247ms
48:	learn: 26.1058689	total: 234ms	remaining: 243ms
49:	learn: 25.8587318	total: 239ms	remaining: 239ms
50:	learn: 25.7558005	total: 244ms	remaining: 235ms
51:	learn: 25.5846925	total: 250ms	remaining: 230ms
52:	learn: 25.4249887	total: 255ms	remaining: 226ms
53:	learn: 25.1911054	total: 260ms	remaining: 222ms
54:	learn: 25.0544755	total: 277ms	remaining: 227ms
55:	learn: 24.8874006	total: 282ms	remaining: 221ms
56:	learn: 24.7736279	total: 287ms	remaining: 216ms
57:	learn: 24.6156255	total: 291ms	remaining: 211ms
58:	learn: 24.3962421	total: 296ms	remaining: 206ms
59:	learn: 24.2685129	total: 300ms	remaining: 200ms
60:	learn: 24.1874096	total: 305ms	remaining: 195ms
61:	learn: 24.0394287	total: 310ms	remaining: 190ms
62:	learn: 23.9281768	total: 314ms	remaining: 184ms
63:	learn: 23.7423900	total: 319ms	remaining: 179ms
64:	learn: 23.6015209	total: 323ms	remaining: 174ms
65:	learn: 23.4677943	total: 328ms	remaining: 169ms
66:	learn: 23.3215256	total: 332ms	remaining: 164ms
67:	learn: 23.1869360	total: 337ms	remaining: 159ms
68:	learn: 22.9691180	total: 341ms	remaining: 153ms
69:	learn: 22.7531657	total: 346ms	remaining: 148ms
70:	learn: 22.6133477	total: 351ms	remaining: 143ms
71:	learn: 22.3452758	total: 355ms	remaining: 138ms
72:	learn: 22.2065350	total: 359ms	remaining: 133ms
73:	learn: 22.1071155	total: 363ms	remaining: 128ms
74:	learn: 21.9740686	total: 368ms	remaining: 123ms
75:	learn: 21.8892033	total: 373ms	remaining: 118ms
76:	learn: 21.8267882	total: 378ms	remaining: 113ms
77:	learn: 21.7423479	total: 383ms	remaining: 108ms
78:	learn: 21.6242075	total: 388ms	remaining: 103ms
79:	learn: 21.5016910	total: 394ms	remaining: 98.4ms
80:	learn: 21.4806623	total: 395ms	remaining: 92.6ms
81:	learn: 21.3166637	total: 403ms	remaining: 88.4ms
82:	learn: 21.2222534	total: 410ms	remaining: 83.9ms
83:	learn: 21.1535708	total: 416ms	remaining: 79.3ms
84:	learn: 21.0858902	total: 421ms	remaining: 74.3ms
85:	learn: 20.9206003	total: 428ms	remaining: 69.6ms
86:	learn: 20.8674695	total: 432ms	remaining: 64.5ms
87:	learn: 20.8089875	total: 436ms	remaining: 59.5ms
88:	learn: 20.7085401	total: 441ms	remaining: 54.5ms
89:	learn: 20.5513468	total: 445ms	remaining: 49.4ms
90:	learn: 20.4586742	total: 449ms	remaining: 44.4ms
91:	learn: 20.3932149	total: 454ms	remaining: 39.4ms
92:	learn: 20.3000895	total: 458ms	remaining: 34.5ms
93:	learn: 20.2254009	total: 462ms	remaining: 29.5ms
94:	learn: 20.1750050	total: 466ms	remaining: 24.5ms
95:	learn: 20.0715579	total: 471ms	remaining: 19.6ms
96:	learn: 19.9920082	total: 476ms	remaining: 14.7ms
97:	learn: 19.9664401	total: 481ms	remaining: 9.81ms
98:	learn: 19.8689673	total: 485ms	remaining: 4.9ms
99:	learn: 19.7537356	total: 490ms	remaining: 0us
0:	learn: 46.8832143	total: 4.53ms	remaining: 449ms
1:	learn: 45.8700349	total: 8.96ms	remaining: 439ms
2:	learn: 45.0546867	total: 13.5ms	remaining: 437ms
3:	learn: 44.2829439	total: 17.8ms	remaining: 427ms
4:	learn: 43.4609042	total: 22ms	remaining: 417ms
5:	learn: 42.6754991	total: 26.4ms	remaining: 414ms
6:	learn: 41.9234935	total: 31.1ms	remaining: 414ms
7:	learn: 41.3987518	total: 35.8ms	remaining: 412ms
8:	learn: 40.6625066	total: 40.6ms	remaining: 411ms
9:	learn: 40.0029561	total: 45.3ms	remaining: 408ms
10:	learn: 39.3897033	total: 49.8ms	remaining: 403ms
11:	learn: 38.7741453	total: 54.4ms	remaining: 399ms
12:	learn: 38.1201100	total: 62.1ms	remaining: 416ms
13:	learn: 37.5129454	total: 70.1ms	remaining: 431ms
14:	learn: 37.2062206	total: 79.4ms	remaining: 450ms
15:	learn: 36.6831741	total: 85.3ms	remaining: 448ms
16:	learn: 36.2902788	total: 92.4ms	remaining: 451ms
17:	learn: 35.7639930	total: 97.9ms	remaining: 446ms
18:	learn: 35.2580953	total: 103ms	remaining: 441ms
19:	learn: 34.7809739	total: 109ms	remaining: 436ms
20:	learn: 34.1330433	total: 114ms	remaining: 430ms
21:	learn: 33.7302219	total: 119ms	remaining: 423ms
22:	learn: 33.3502495	total: 124ms	remaining: 416ms
23:	learn: 33.0067804	total: 129ms	remaining: 410ms
24:	learn: 32.6897855	total: 135ms	remaining: 405ms
25:	learn: 32.4361119	total: 140ms	remaining: 398ms
26:	learn: 32.1278981	total: 145ms	remaining: 392ms
27:	learn: 31.7863721	total: 150ms	remaining: 387ms
28:	learn: 31.4791450	total: 156ms	remaining: 382ms
29:	learn: 31.1760161	total: 160ms	remaining: 374ms
30:	learn: 30.9238888	total: 165ms	remaining: 366ms
31:	learn: 30.5500905	total: 169ms	remaining: 359ms
32:	learn: 30.3078126	total: 173ms	remaining: 352ms
33:	learn: 30.0480921	total: 177ms	remaining: 344ms
34:	learn: 29.8623884	total: 182ms	remaining: 339ms
35:	learn: 29.5991038	total: 187ms	remaining: 333ms
36:	learn: 29.4061161	total: 192ms	remaining: 326ms
37:	learn: 29.0269515	total: 197ms	remaining: 321ms
38:	learn: 28.8224959	total: 202ms	remaining: 315ms
39:	learn: 28.6417843	total: 206ms	remaining: 309ms
40:	learn: 28.3633368	total: 211ms	remaining: 304ms
41:	learn: 28.0200246	total: 216ms	remaining: 298ms
42:	learn: 27.7221254	total: 220ms	remaining: 292ms
43:	learn: 27.5105818	total: 226ms	remaining: 287ms
44:	learn: 27.3551010	total: 231ms	remaining: 282ms
45:	learn: 27.0787522	total: 236ms	remaining: 277ms
46:	learn: 26.8726317	total: 241ms	remaining: 271ms
47:	learn: 26.8003277	total: 246ms	remaining: 266ms
48:	learn: 26.5493785	total: 252ms	remaining: 262ms
49:	learn: 26.3699550	total: 266ms	remaining: 266ms
50:	learn: 26.1519631	total: 277ms	remaining: 266ms
51:	learn: 25.9277325	total: 283ms	remaining: 261ms
52:	learn: 25.7286035	total: 289ms	remaining: 257ms
53:	learn: 25.4999193	total: 295ms	remaining: 251ms
54:	learn: 25.3434703	total: 300ms	remaining: 245ms
55:	learn: 25.1497545	total: 305ms	remaining: 239ms
56:	learn: 24.9498143	total: 309ms	remaining: 233ms
57:	learn: 24.6509390	total: 314ms	remaining: 228ms
58:	learn: 24.5576144	total: 319ms	remaining: 222ms
59:	learn: 24.4265144	total: 324ms	remaining: 216ms
60:	learn: 24.3100706	total: 329ms	remaining: 211ms
61:	learn: 24.1727952	total: 334ms	remaining: 205ms
62:	learn: 24.0478558	total: 339ms	remaining: 199ms
63:	learn: 23.9124577	total: 345ms	remaining: 194ms
64:	learn: 23.7703718	total: 350ms	remaining: 188ms
65:	learn: 23.5975027	total: 355ms	remaining: 183ms
66:	learn: 23.4318077	total: 360ms	remaining: 177ms
67:	learn: 23.3099691	total: 366ms	remaining: 172ms
68:	learn: 23.1947982	total: 371ms	remaining: 167ms
69:	learn: 23.0260174	total: 376ms	remaining: 161ms
70:	learn: 22.8523100	total: 381ms	remaining: 155ms
71:	learn: 22.8028534	total: 385ms	remaining: 150ms
72:	learn: 22.6880658	total: 390ms	remaining: 144ms
73:	learn: 22.5956809	total: 395ms	remaining: 139ms
74:	learn: 22.4692932	total: 399ms	remaining: 133ms
75:	learn: 22.2863504	total: 404ms	remaining: 128ms
76:	learn: 22.1911237	total: 408ms	remaining: 122ms
77:	learn: 22.1098391	total: 413ms	remaining: 117ms
78:	learn: 22.0182738	total: 418ms	remaining: 111ms
79:	learn: 21.9306746	total: 423ms	remaining: 106ms
80:	learn: 21.7508233	total: 428ms	remaining: 100ms
81:	learn: 21.7108446	total: 432ms	remaining: 94.9ms
82:	learn: 21.5931852	total: 437ms	remaining: 89.6ms
83:	learn: 21.4480361	total: 442ms	remaining: 84.2ms
84:	learn: 21.3092119	total: 447ms	remaining: 78.9ms
85:	learn: 21.2605557	total: 452ms	remaining: 73.6ms
86:	learn: 21.1123597	total: 457ms	remaining: 68.3ms
87:	learn: 21.0115642	total: 462ms	remaining: 63.1ms
88:	learn: 20.9389040	total: 472ms	remaining: 58.3ms
89:	learn: 20.8300300	total: 482ms	remaining: 53.6ms
90:	learn: 20.7159733	total: 488ms	remaining: 48.3ms
91:	learn: 20.6282090	total: 496ms	remaining: 43.2ms
92:	learn: 20.5164529	total: 501ms	remaining: 37.7ms
93:	learn: 20.4692032	total: 507ms	remaining: 32.3ms
94:	learn: 20.3768451	total: 512ms	remaining: 26.9ms
95:	learn: 20.2808056	total: 517ms	remaining: 21.6ms
96:	learn: 20.2082089	total: 523ms	remaining: 16.2ms
97:	learn: 20.1698768	total: 528ms	remaining: 10.8ms
98:	learn: 20.1048816	total: 533ms	remaining: 5.38ms
99:	learn: 20.0086159	total: 538ms	remaining: 0us
0:	learn: 27.6242191	total: 23.9ms	remaining: 7.15s
1:	learn: 27.3247973	total: 48.1ms	remaining: 7.17s
2:	learn: 26.9048262	total: 75.8ms	remaining: 7.5s
3:	learn: 26.6094870	total: 107ms	remaining: 7.95s
4:	learn: 26.2335903	total: 134ms	remaining: 7.88s
5:	learn: 25.9065752	total: 158ms	remaining: 7.76s
6:	learn: 25.6303453	total: 183ms	remaining: 7.66s
7:	learn: 25.2422673	total: 207ms	remaining: 7.55s
8:	learn: 24.9092185	total: 231ms	remaining: 7.47s
9:	learn: 24.6380278	total: 255ms	remaining: 7.4s
10:	learn: 24.2990126	total: 279ms	remaining: 7.33s
11:	learn: 24.0194492	total: 311ms	remaining: 7.46s
12:	learn: 23.7720807	total: 337ms	remaining: 7.44s
13:	learn: 23.4419462	total: 361ms	remaining: 7.38s
14:	learn: 23.2366857	total: 387ms	remaining: 7.34s
15:	learn: 22.9901263	total: 390ms	remaining: 6.91s
16:	learn: 22.7775050	total: 415ms	remaining: 6.91s
17:	learn: 22.5290799	total: 439ms	remaining: 6.88s
18:	learn: 22.2427201	total: 464ms	remaining: 6.86s
19:	learn: 21.9766361	total: 488ms	remaining: 6.83s
20:	learn: 21.7608475	total: 512ms	remaining: 6.8s
21:	learn: 21.5756818	total: 537ms	remaining: 6.78s
22:	learn: 21.3753018	total: 566ms	remaining: 6.82s
23:	learn: 21.1715384	total: 590ms	remaining: 6.79s
24:	learn: 20.9557317	total: 615ms	remaining: 6.76s
25:	learn: 20.7653390	total: 637ms	remaining: 6.71s
26:	learn: 20.5688623	total: 661ms	remaining: 6.68s
27:	learn: 20.3753201	total: 685ms	remaining: 6.65s
28:	learn: 20.2087140	total: 708ms	remaining: 6.62s
29:	learn: 20.0437127	total: 732ms	remaining: 6.59s
30:	learn: 19.7939404	total: 757ms	remaining: 6.57s
31:	learn: 19.6135511	total: 788ms	remaining: 6.6s
32:	learn: 19.4223949	total: 816ms	remaining: 6.61s
33:	learn: 19.3099062	total: 841ms	remaining: 6.58s
34:	learn: 19.1471296	total: 866ms	remaining: 6.55s
35:	learn: 18.9602406	total: 890ms	remaining: 6.53s
36:	learn: 18.8463205	total: 917ms	remaining: 6.52s
37:	learn: 18.5993654	total: 943ms	remaining: 6.5s
38:	learn: 18.4547850	total: 968ms	remaining: 6.48s
39:	learn: 18.3265698	total: 995ms	remaining: 6.47s
40:	learn: 18.1552052	total: 1.03s	remaining: 6.48s
41:	learn: 17.9969729	total: 1.05s	remaining: 6.46s
42:	learn: 17.8420506	total: 1.08s	remaining: 6.44s
43:	learn: 17.7314471	total: 1.1s	remaining: 6.41s
44:	learn: 17.6037885	total: 1.13s	remaining: 6.39s
45:	learn: 17.4911598	total: 1.15s	remaining: 6.36s
46:	learn: 17.3334650	total: 1.18s	remaining: 6.34s
47:	learn: 17.1964435	total: 1.21s	remaining: 6.36s
48:	learn: 17.0705369	total: 1.24s	remaining: 6.36s
49:	learn: 16.9282293	total: 1.27s	remaining: 6.34s
50:	learn: 16.7996947	total: 1.29s	remaining: 6.32s
51:	learn: 16.6978905	total: 1.32s	remaining: 6.3s
52:	learn: 16.5793323	total: 1.35s	remaining: 6.28s
53:	learn: 16.4770669	total: 1.38s	remaining: 6.26s
54:	learn: 16.3655624	total: 1.4s	remaining: 6.24s
55:	learn: 16.2604369	total: 1.43s	remaining: 6.24s
56:	learn: 16.1431440	total: 1.46s	remaining: 6.21s
57:	learn: 16.0326605	total: 1.48s	remaining: 6.19s
58:	learn: 15.9323014	total: 1.51s	remaining: 6.16s
59:	learn: 15.8025601	total: 1.53s	remaining: 6.13s
60:	learn: 15.6963178	total: 1.56s	remaining: 6.1s
61:	learn: 15.6270773	total: 1.58s	remaining: 6.08s
62:	learn: 15.5313112	total: 1.61s	remaining: 6.05s
63:	learn: 15.4399515	total: 1.63s	remaining: 6.03s
64:	learn: 15.3597117	total: 1.67s	remaining: 6.05s
65:	learn: 15.2697176	total: 1.7s	remaining: 6.03s
66:	learn: 15.1828907	total: 1.73s	remaining: 6s
67:	learn: 15.0961490	total: 1.75s	remaining: 5.98s
68:	learn: 15.0128613	total: 1.78s	remaining: 5.95s
69:	learn: 14.9098281	total: 1.8s	remaining: 5.93s
70:	learn: 14.8290802	total: 1.83s	remaining: 5.9s
71:	learn: 14.7354294	total: 1.85s	remaining: 5.87s
72:	learn: 14.6593235	total: 1.88s	remaining: 5.84s
73:	learn: 14.5723402	total: 1.91s	remaining: 5.83s
74:	learn: 14.4986819	total: 1.93s	remaining: 5.8s
75:	learn: 14.4087447	total: 1.96s	remaining: 5.77s
76:	learn: 14.3357763	total: 1.98s	remaining: 5.74s
77:	learn: 14.2423286	total: 2s	remaining: 5.71s
78:	learn: 14.1791552	total: 2.03s	remaining: 5.68s
79:	learn: 14.0970307	total: 2.05s	remaining: 5.65s
80:	learn: 14.0336692	total: 2.08s	remaining: 5.62s
81:	learn: 13.9758100	total: 2.11s	remaining: 5.62s
82:	learn: 13.9111969	total: 2.14s	remaining: 5.6s
83:	learn: 13.8350945	total: 2.17s	remaining: 5.57s
84:	learn: 13.7593569	total: 2.19s	remaining: 5.54s
85:	learn: 13.6953120	total: 2.21s	remaining: 5.51s
86:	learn: 13.6352452	total: 2.24s	remaining: 5.48s
87:	learn: 13.5794275	total: 2.26s	remaining: 5.45s
88:	learn: 13.4880894	total: 2.3s	remaining: 5.45s
89:	learn: 13.4305792	total: 2.32s	remaining: 5.42s
90:	learn: 13.3569291	total: 2.35s	remaining: 5.39s
91:	learn: 13.2958628	total: 2.37s	remaining: 5.36s
92:	learn: 13.2338079	total: 2.39s	remaining: 5.33s
93:	learn: 13.1821114	total: 2.42s	remaining: 5.3s
94:	learn: 13.1082697	total: 2.44s	remaining: 5.27s
95:	learn: 13.0475619	total: 2.47s	remaining: 5.24s
96:	learn: 12.9878324	total: 2.49s	remaining: 5.21s
97:	learn: 12.9294785	total: 2.52s	remaining: 5.18s
98:	learn: 12.8646231	total: 2.55s	remaining: 5.17s
99:	learn: 12.8003027	total: 2.57s	remaining: 5.15s
100:	learn: 12.6741024	total: 2.6s	remaining: 5.12s
101:	learn: 12.5871778	total: 2.62s	remaining: 5.09s
102:	learn: 12.5199785	total: 2.65s	remaining: 5.07s
103:	learn: 12.4533348	total: 2.67s	remaining: 5.04s
104:	learn: 12.4014303	total: 2.7s	remaining: 5.01s
105:	learn: 12.3404648	total: 2.72s	remaining: 4.98s
106:	learn: 12.2853908	total: 2.75s	remaining: 4.96s
107:	learn: 12.2113131	total: 2.78s	remaining: 4.94s
108:	learn: 12.1443818	total: 2.8s	remaining: 4.91s
109:	learn: 12.0782972	total: 2.82s	remaining: 4.88s
110:	learn: 12.0242888	total: 2.85s	remaining: 4.85s
111:	learn: 11.9606186	total: 2.87s	remaining: 4.82s
112:	learn: 11.8840123	total: 2.9s	remaining: 4.8s
113:	learn: 11.8362234	total: 2.92s	remaining: 4.77s
114:	learn: 11.7798600	total: 2.95s	remaining: 4.74s
115:	learn: 11.7205583	total: 2.98s	remaining: 4.73s
116:	learn: 11.6703154	total: 3.01s	remaining: 4.71s
117:	learn: 11.5906207	total: 3.04s	remaining: 4.68s
118:	learn: 11.5392300	total: 3.06s	remaining: 4.66s
119:	learn: 11.5009891	total: 3.09s	remaining: 4.63s
120:	learn: 11.4496613	total: 3.12s	remaining: 4.61s
121:	learn: 11.3880593	total: 3.14s	remaining: 4.58s
122:	learn: 11.3343840	total: 3.17s	remaining: 4.56s
123:	learn: 11.2903777	total: 3.2s	remaining: 4.54s
124:	learn: 11.2226066	total: 3.22s	remaining: 4.51s
125:	learn: 11.1756503	total: 3.25s	remaining: 4.49s
126:	learn: 11.1266674	total: 3.27s	remaining: 4.46s
127:	learn: 11.0542744	total: 3.3s	remaining: 4.43s
128:	learn: 11.0132226	total: 3.32s	remaining: 4.4s
129:	learn: 10.9545179	total: 3.35s	remaining: 4.38s
130:	learn: 10.9167977	total: 3.37s	remaining: 4.35s
131:	learn: 10.8607094	total: 3.4s	remaining: 4.33s
132:	learn: 10.8081246	total: 3.44s	remaining: 4.32s
133:	learn: 10.7595004	total: 3.46s	remaining: 4.29s
134:	learn: 10.6949228	total: 3.49s	remaining: 4.26s
135:	learn: 10.6549608	total: 3.52s	remaining: 4.24s
136:	learn: 10.6085016	total: 3.54s	remaining: 4.21s
137:	learn: 10.5530774	total: 3.56s	remaining: 4.18s
138:	learn: 10.5146132	total: 3.59s	remaining: 4.16s
139:	learn: 10.4804263	total: 3.62s	remaining: 4.13s
140:	learn: 10.4469935	total: 3.65s	remaining: 4.12s
141:	learn: 10.4083597	total: 3.68s	remaining: 4.09s
142:	learn: 10.3700272	total: 3.7s	remaining: 4.06s
143:	learn: 10.3240531	total: 3.73s	remaining: 4.04s
144:	learn: 10.2838387	total: 3.75s	remaining: 4.01s
145:	learn: 10.2237396	total: 3.78s	remaining: 3.98s
146:	learn: 10.1677493	total: 3.8s	remaining: 3.96s
147:	learn: 10.1289528	total: 3.83s	remaining: 3.93s
148:	learn: 10.0918869	total: 3.86s	remaining: 3.91s
149:	learn: 10.0599014	total: 3.89s	remaining: 3.89s
150:	learn: 9.9817438	total: 3.91s	remaining: 3.86s
151:	learn: 9.9410469	total: 3.94s	remaining: 3.84s
152:	learn: 9.8790383	total: 3.96s	remaining: 3.81s
153:	learn: 9.8489714	total: 3.99s	remaining: 3.78s
154:	learn: 9.8192539	total: 4.01s	remaining: 3.76s
155:	learn: 9.7595292	total: 4.04s	remaining: 3.73s
156:	learn: 9.7305132	total: 4.07s	remaining: 3.71s
157:	learn: 9.6946431	total: 4.1s	remaining: 3.68s
158:	learn: 9.6382391	total: 4.12s	remaining: 3.66s
159:	learn: 9.5932080	total: 4.15s	remaining: 3.63s
160:	learn: 9.5528662	total: 4.17s	remaining: 3.6s
161:	learn: 9.5112954	total: 4.2s	remaining: 3.58s
162:	learn: 9.4782229	total: 4.23s	remaining: 3.55s
163:	learn: 9.4469139	total: 4.25s	remaining: 3.53s
164:	learn: 9.4073553	total: 4.28s	remaining: 3.5s
165:	learn: 9.3658459	total: 4.31s	remaining: 3.48s
166:	learn: 9.3331509	total: 4.34s	remaining: 3.45s
167:	learn: 9.3022193	total: 4.36s	remaining: 3.43s
168:	learn: 9.2687355	total: 4.39s	remaining: 3.4s
169:	learn: 9.2347395	total: 4.42s	remaining: 3.38s
170:	learn: 9.1946963	total: 4.44s	remaining: 3.35s
171:	learn: 9.1669467	total: 4.46s	remaining: 3.32s
172:	learn: 9.1174548	total: 4.49s	remaining: 3.3s
173:	learn: 9.0578865	total: 4.52s	remaining: 3.27s
174:	learn: 9.0242697	total: 4.54s	remaining: 3.25s
175:	learn: 8.9812385	total: 4.57s	remaining: 3.22s
176:	learn: 8.9394173	total: 4.59s	remaining: 3.19s
177:	learn: 8.8954630	total: 4.62s	remaining: 3.16s
178:	learn: 8.8650625	total: 4.64s	remaining: 3.14s
179:	learn: 8.8128518	total: 4.66s	remaining: 3.11s
180:	learn: 8.7713941	total: 4.69s	remaining: 3.08s
181:	learn: 8.7271373	total: 4.72s	remaining: 3.06s
182:	learn: 8.6827020	total: 4.75s	remaining: 3.04s
183:	learn: 8.6411197	total: 4.78s	remaining: 3.01s
184:	learn: 8.6161231	total: 4.8s	remaining: 2.98s
185:	learn: 8.5812975	total: 4.83s	remaining: 2.96s
186:	learn: 8.5494363	total: 4.85s	remaining: 2.93s
187:	learn: 8.5121894	total: 4.88s	remaining: 2.9s
188:	learn: 8.4769543	total: 4.9s	remaining: 2.88s
189:	learn: 8.4285766	total: 4.93s	remaining: 2.85s
190:	learn: 8.4032474	total: 4.96s	remaining: 2.83s
191:	learn: 8.3791298	total: 4.98s	remaining: 2.8s
192:	learn: 8.3494894	total: 5s	remaining: 2.77s
193:	learn: 8.3153327	total: 5.03s	remaining: 2.75s
194:	learn: 8.2823004	total: 5.05s	remaining: 2.72s
195:	learn: 8.2449482	total: 5.08s	remaining: 2.69s
196:	learn: 8.2013567	total: 5.1s	remaining: 2.67s
197:	learn: 8.1697337	total: 5.13s	remaining: 2.64s
198:	learn: 8.1265833	total: 5.16s	remaining: 2.62s
199:	learn: 8.0905433	total: 5.18s	remaining: 2.59s
200:	learn: 8.0669552	total: 5.21s	remaining: 2.57s
201:	learn: 8.0258330	total: 5.24s	remaining: 2.54s
202:	learn: 8.0026168	total: 5.26s	remaining: 2.51s
203:	learn: 7.9482286	total: 5.28s	remaining: 2.49s
204:	learn: 7.9105233	total: 5.31s	remaining: 2.46s
205:	learn: 7.8966891	total: 5.33s	remaining: 2.43s
206:	learn: 7.8575063	total: 5.36s	remaining: 2.41s
207:	learn: 7.8147335	total: 5.39s	remaining: 2.38s
208:	learn: 7.7917140	total: 5.41s	remaining: 2.36s
209:	learn: 7.7607147	total: 5.43s	remaining: 2.33s
210:	learn: 7.7425727	total: 5.46s	remaining: 2.3s
211:	learn: 7.7238288	total: 5.48s	remaining: 2.27s
212:	learn: 7.6985896	total: 5.51s	remaining: 2.25s
213:	learn: 7.6752745	total: 5.53s	remaining: 2.22s
214:	learn: 7.6442259	total: 5.56s	remaining: 2.2s
215:	learn: 7.6325331	total: 5.59s	remaining: 2.17s
216:	learn: 7.6063316	total: 5.62s	remaining: 2.15s
217:	learn: 7.5831832	total: 5.64s	remaining: 2.12s
218:	learn: 7.5672234	total: 5.67s	remaining: 2.1s
219:	learn: 7.5331936	total: 5.69s	remaining: 2.07s
220:	learn: 7.4920831	total: 5.72s	remaining: 2.04s
221:	learn: 7.4737554	total: 5.74s	remaining: 2.02s
222:	learn: 7.4270074	total: 5.77s	remaining: 1.99s
223:	learn: 7.4017600	total: 5.8s	remaining: 1.97s
224:	learn: 7.3806959	total: 5.82s	remaining: 1.94s
225:	learn: 7.3554017	total: 5.84s	remaining: 1.91s
226:	learn: 7.3409799	total: 5.87s	remaining: 1.89s
227:	learn: 7.3212923	total: 5.89s	remaining: 1.86s
228:	learn: 7.3105787	total: 5.92s	remaining: 1.83s
229:	learn: 7.2892883	total: 5.95s	remaining: 1.81s
230:	learn: 7.2744332	total: 5.97s	remaining: 1.78s
231:	learn: 7.2520263	total: 6.01s	remaining: 1.76s
232:	learn: 7.2282060	total: 6.04s	remaining: 1.74s
233:	learn: 7.2079652	total: 6.07s	remaining: 1.71s
234:	learn: 7.1916393	total: 6.09s	remaining: 1.69s
235:	learn: 7.1701919	total: 6.12s	remaining: 1.66s
236:	learn: 7.1568798	total: 6.14s	remaining: 1.63s
237:	learn: 7.1311171	total: 6.17s	remaining: 1.61s
238:	learn: 7.1241442	total: 6.21s	remaining: 1.58s
239:	learn: 7.1023502	total: 6.23s	remaining: 1.56s
240:	learn: 7.0871109	total: 6.26s	remaining: 1.53s
241:	learn: 7.0717340	total: 6.28s	remaining: 1.5s
242:	learn: 7.0574975	total: 6.31s	remaining: 1.48s
243:	learn: 7.0489270	total: 6.33s	remaining: 1.45s
244:	learn: 7.0279173	total: 6.36s	remaining: 1.43s
245:	learn: 6.9967234	total: 6.38s	remaining: 1.4s
246:	learn: 6.9827176	total: 6.41s	remaining: 1.38s
247:	learn: 6.9632381	total: 6.45s	remaining: 1.35s
248:	learn: 6.9490747	total: 6.48s	remaining: 1.33s
249:	learn: 6.9350226	total: 6.5s	remaining: 1.3s
250:	learn: 6.9203338	total: 6.53s	remaining: 1.27s
251:	learn: 6.9078713	total: 6.55s	remaining: 1.25s
252:	learn: 6.8997471	total: 6.58s	remaining: 1.22s
253:	learn: 6.8786784	total: 6.61s	remaining: 1.2s
254:	learn: 6.8629866	total: 6.63s	remaining: 1.17s
255:	learn: 6.8497530	total: 6.66s	remaining: 1.15s
256:	learn: 6.8363263	total: 6.69s	remaining: 1.12s
257:	learn: 6.8232778	total: 6.71s	remaining: 1.09s
258:	learn: 6.7952234	total: 6.74s	remaining: 1.07s
259:	learn: 6.7671952	total: 6.76s	remaining: 1.04s
260:	learn: 6.7545126	total: 6.79s	remaining: 1.01s
261:	learn: 6.7414039	total: 6.82s	remaining: 988ms
262:	learn: 6.7307423	total: 6.84s	remaining: 963ms
263:	learn: 6.6887074	total: 6.88s	remaining: 938ms
264:	learn: 6.6786482	total: 6.9s	remaining: 912ms
265:	learn: 6.6520387	total: 6.93s	remaining: 886ms
266:	learn: 6.6371511	total: 6.96s	remaining: 860ms
267:	learn: 6.6139304	total: 6.98s	remaining: 834ms
268:	learn: 6.6024854	total: 7.01s	remaining: 807ms
269:	learn: 6.5811216	total: 7.03s	remaining: 781ms
270:	learn: 6.5396874	total: 7.07s	remaining: 756ms
271:	learn: 6.5260569	total: 7.09s	remaining: 730ms
272:	learn: 6.5161555	total: 7.12s	remaining: 704ms
273:	learn: 6.5055568	total: 7.14s	remaining: 678ms
274:	learn: 6.4955852	total: 7.17s	remaining: 652ms
275:	learn: 6.4768059	total: 7.19s	remaining: 626ms
276:	learn: 6.4526678	total: 7.22s	remaining: 599ms
277:	learn: 6.4407932	total: 7.25s	remaining: 573ms
278:	learn: 6.4229786	total: 7.28s	remaining: 548ms
279:	learn: 6.4143528	total: 7.31s	remaining: 522ms
280:	learn: 6.3939760	total: 7.33s	remaining: 496ms
281:	learn: 6.3821368	total: 7.36s	remaining: 470ms
282:	learn: 6.3733999	total: 7.39s	remaining: 444ms
283:	learn: 6.3506155	total: 7.41s	remaining: 418ms
284:	learn: 6.3456374	total: 7.44s	remaining: 391ms
285:	learn: 6.3423150	total: 7.46s	remaining: 365ms
286:	learn: 6.3323118	total: 7.49s	remaining: 339ms
287:	learn: 6.3209916	total: 7.52s	remaining: 313ms
288:	learn: 6.3017754	total: 7.55s	remaining: 287ms
289:	learn: 6.2738210	total: 7.57s	remaining: 261ms
290:	learn: 6.2684358	total: 7.6s	remaining: 235ms
291:	learn: 6.2546793	total: 7.62s	remaining: 209ms
292:	learn: 6.2441498	total: 7.65s	remaining: 183ms
293:	learn: 6.2406001	total: 7.67s	remaining: 157ms
294:	learn: 6.2308638	total: 7.7s	remaining: 131ms
295:	learn: 6.2166524	total: 7.73s	remaining: 104ms
296:	learn: 6.2029239	total: 7.76s	remaining: 78.4ms
297:	learn: 6.1930984	total: 7.78s	remaining: 52.2ms
298:	learn: 6.1787666	total: 7.81s	remaining: 26.1ms
299:	learn: 6.1715886	total: 7.83s	remaining: 0us
0:	learn: 43.0189040	total: 27.7ms	remaining: 8.3s
1:	learn: 42.1913120	total: 51.1ms	remaining: 7.61s
2:	learn: 41.2381785	total: 75.2ms	remaining: 7.44s
3:	learn: 40.3733911	total: 99.5ms	remaining: 7.36s
4:	learn: 39.7420433	total: 123ms	remaining: 7.27s
5:	learn: 38.9384932	total: 147ms	remaining: 7.19s
6:	learn: 38.2027180	total: 171ms	remaining: 7.15s
7:	learn: 37.5736018	total: 196ms	remaining: 7.14s
8:	learn: 36.9042368	total: 220ms	remaining: 7.11s
9:	learn: 36.1138721	total: 243ms	remaining: 7.05s
10:	learn: 35.4444268	total: 246ms	remaining: 6.47s
11:	learn: 34.7889997	total: 261ms	remaining: 6.27s
12:	learn: 34.3622266	total: 293ms	remaining: 6.46s
13:	learn: 33.6999120	total: 317ms	remaining: 6.48s
14:	learn: 32.9955576	total: 342ms	remaining: 6.5s
15:	learn: 32.3475617	total: 367ms	remaining: 6.51s
16:	learn: 31.9028750	total: 391ms	remaining: 6.51s
17:	learn: 31.3786390	total: 416ms	remaining: 6.52s
18:	learn: 30.9731314	total: 440ms	remaining: 6.51s
19:	learn: 30.5397110	total: 465ms	remaining: 6.51s
20:	learn: 30.0650165	total: 490ms	remaining: 6.51s
21:	learn: 29.4732599	total: 523ms	remaining: 6.61s
22:	learn: 29.0746185	total: 549ms	remaining: 6.61s
23:	learn: 28.5839328	total: 573ms	remaining: 6.59s
24:	learn: 28.2894974	total: 597ms	remaining: 6.57s
25:	learn: 27.7954367	total: 622ms	remaining: 6.55s
26:	learn: 27.3542996	total: 646ms	remaining: 6.53s
27:	learn: 27.0838564	total: 670ms	remaining: 6.5s
28:	learn: 26.7019509	total: 694ms	remaining: 6.49s
29:	learn: 26.3607640	total: 721ms	remaining: 6.49s
30:	learn: 25.9174899	total: 756ms	remaining: 6.55s
31:	learn: 25.5590328	total: 780ms	remaining: 6.53s
32:	learn: 25.1682834	total: 805ms	remaining: 6.51s
33:	learn: 24.8123558	total: 831ms	remaining: 6.5s
34:	learn: 24.5841473	total: 854ms	remaining: 6.47s
35:	learn: 24.2224307	total: 878ms	remaining: 6.44s
36:	learn: 23.9745715	total: 903ms	remaining: 6.42s
37:	learn: 23.6958493	total: 928ms	remaining: 6.39s
38:	learn: 23.3890143	total: 957ms	remaining: 6.4s
39:	learn: 23.1113968	total: 982ms	remaining: 6.38s
40:	learn: 22.8519880	total: 1.01s	remaining: 6.36s
41:	learn: 22.5944697	total: 1.03s	remaining: 6.33s
42:	learn: 22.3853418	total: 1.05s	remaining: 6.3s
43:	learn: 22.1827007	total: 1.08s	remaining: 6.27s
44:	learn: 22.0186852	total: 1.1s	remaining: 6.24s
45:	learn: 21.7686773	total: 1.13s	remaining: 6.21s
46:	learn: 21.5978489	total: 1.16s	remaining: 6.25s
47:	learn: 21.3542004	total: 1.19s	remaining: 6.23s
48:	learn: 21.1752073	total: 1.21s	remaining: 6.21s
49:	learn: 21.0415246	total: 1.24s	remaining: 6.19s
50:	learn: 20.8441081	total: 1.26s	remaining: 6.16s
51:	learn: 20.5918001	total: 1.28s	remaining: 6.13s
52:	learn: 20.4441208	total: 1.31s	remaining: 6.1s
53:	learn: 20.2679633	total: 1.33s	remaining: 6.08s
54:	learn: 20.1163092	total: 1.36s	remaining: 6.06s
55:	learn: 19.9714704	total: 1.39s	remaining: 6.05s
56:	learn: 19.8249765	total: 1.41s	remaining: 6.03s
57:	learn: 19.6607355	total: 1.44s	remaining: 6s
58:	learn: 19.4877956	total: 1.46s	remaining: 5.97s
59:	learn: 19.3053072	total: 1.48s	remaining: 5.93s
60:	learn: 19.1885738	total: 1.51s	remaining: 5.91s
61:	learn: 19.0346503	total: 1.53s	remaining: 5.88s
62:	learn: 18.8347986	total: 1.57s	remaining: 5.9s
63:	learn: 18.6814926	total: 1.6s	remaining: 5.91s
64:	learn: 18.5382672	total: 1.64s	remaining: 5.91s
65:	learn: 18.3895833	total: 1.66s	remaining: 5.9s
66:	learn: 18.2694672	total: 1.69s	remaining: 5.88s
67:	learn: 18.1196051	total: 1.72s	remaining: 5.87s
68:	learn: 17.9925317	total: 1.75s	remaining: 5.85s
69:	learn: 17.8749679	total: 1.77s	remaining: 5.83s
70:	learn: 17.7225935	total: 1.8s	remaining: 5.82s
71:	learn: 17.5806906	total: 1.83s	remaining: 5.81s
72:	learn: 17.4922570	total: 1.86s	remaining: 5.79s
73:	learn: 17.3984999	total: 1.89s	remaining: 5.79s
74:	learn: 17.3128227	total: 1.92s	remaining: 5.76s
75:	learn: 17.2165163	total: 1.95s	remaining: 5.74s
76:	learn: 17.0889232	total: 1.97s	remaining: 5.72s
77:	learn: 16.9583567	total: 2s	remaining: 5.7s
78:	learn: 16.8340539	total: 2.04s	remaining: 5.7s
79:	learn: 16.7346257	total: 2.07s	remaining: 5.68s
80:	learn: 16.6446663	total: 2.1s	remaining: 5.66s
81:	learn: 16.5218155	total: 2.13s	remaining: 5.66s
82:	learn: 16.4054583	total: 2.16s	remaining: 5.64s
83:	learn: 16.2803558	total: 2.18s	remaining: 5.61s
84:	learn: 16.1516324	total: 2.21s	remaining: 5.59s
85:	learn: 16.0643357	total: 2.25s	remaining: 5.59s
86:	learn: 15.9817265	total: 2.27s	remaining: 5.57s
87:	learn: 15.9144474	total: 2.3s	remaining: 5.54s
88:	learn: 15.8380424	total: 2.33s	remaining: 5.51s
89:	learn: 15.7453770	total: 2.36s	remaining: 5.51s
90:	learn: 15.6720653	total: 2.39s	remaining: 5.49s
91:	learn: 15.5626839	total: 2.42s	remaining: 5.46s
92:	learn: 15.4727375	total: 2.45s	remaining: 5.45s
93:	learn: 15.3655885	total: 2.48s	remaining: 5.44s
94:	learn: 15.2496762	total: 2.51s	remaining: 5.42s
95:	learn: 15.1773522	total: 2.54s	remaining: 5.39s
96:	learn: 15.0924366	total: 2.56s	remaining: 5.37s
97:	learn: 15.0082209	total: 2.6s	remaining: 5.36s
98:	learn: 14.9178437	total: 2.63s	remaining: 5.34s
99:	learn: 14.8149449	total: 2.66s	remaining: 5.32s
100:	learn: 14.7450303	total: 2.69s	remaining: 5.31s
101:	learn: 14.6462390	total: 2.72s	remaining: 5.28s
102:	learn: 14.5348825	total: 2.75s	remaining: 5.26s
103:	learn: 14.4483847	total: 2.77s	remaining: 5.23s
104:	learn: 14.4006573	total: 2.8s	remaining: 5.2s
105:	learn: 14.3322113	total: 2.83s	remaining: 5.18s
106:	learn: 14.2471466	total: 2.86s	remaining: 5.16s
107:	learn: 14.1788249	total: 2.89s	remaining: 5.14s
108:	learn: 14.1033594	total: 2.93s	remaining: 5.13s
109:	learn: 14.0161080	total: 2.95s	remaining: 5.1s
110:	learn: 13.9710960	total: 2.98s	remaining: 5.08s
111:	learn: 13.8941529	total: 3.01s	remaining: 5.05s
112:	learn: 13.8246456	total: 3.04s	remaining: 5.03s
113:	learn: 13.7518933	total: 3.06s	remaining: 5s
114:	learn: 13.7003709	total: 3.1s	remaining: 4.99s
115:	learn: 13.6359576	total: 3.13s	remaining: 4.96s
116:	learn: 13.6039211	total: 3.16s	remaining: 4.94s
117:	learn: 13.5361545	total: 3.19s	remaining: 4.92s
118:	learn: 13.4554429	total: 3.21s	remaining: 4.89s
119:	learn: 13.3922439	total: 3.24s	remaining: 4.86s
120:	learn: 13.2895862	total: 3.27s	remaining: 4.83s
121:	learn: 13.1749097	total: 3.29s	remaining: 4.81s
122:	learn: 13.1167631	total: 3.32s	remaining: 4.78s
123:	learn: 13.0410984	total: 3.35s	remaining: 4.75s
124:	learn: 12.9506234	total: 3.38s	remaining: 4.73s
125:	learn: 12.8890045	total: 3.41s	remaining: 4.71s
126:	learn: 12.8295606	total: 3.43s	remaining: 4.68s
127:	learn: 12.7634290	total: 3.46s	remaining: 4.65s
128:	learn: 12.6891923	total: 3.49s	remaining: 4.62s
129:	learn: 12.6312306	total: 3.51s	remaining: 4.59s
130:	learn: 12.5802486	total: 3.54s	remaining: 4.56s
131:	learn: 12.5246529	total: 3.56s	remaining: 4.53s
132:	learn: 12.4479017	total: 3.59s	remaining: 4.51s
133:	learn: 12.3930818	total: 3.62s	remaining: 4.48s
134:	learn: 12.3373247	total: 3.65s	remaining: 4.46s
135:	learn: 12.3039291	total: 3.67s	remaining: 4.43s
136:	learn: 12.2583784	total: 3.69s	remaining: 4.4s
137:	learn: 12.1902920	total: 3.72s	remaining: 4.37s
138:	learn: 12.1515651	total: 3.74s	remaining: 4.34s
139:	learn: 12.1008468	total: 3.77s	remaining: 4.31s
140:	learn: 12.0752080	total: 3.8s	remaining: 4.28s
141:	learn: 12.0263787	total: 3.83s	remaining: 4.27s
142:	learn: 11.9709736	total: 3.86s	remaining: 4.24s
143:	learn: 11.9295822	total: 3.89s	remaining: 4.21s
144:	learn: 11.8867911	total: 3.91s	remaining: 4.18s
145:	learn: 11.8179180	total: 3.94s	remaining: 4.15s
146:	learn: 11.7448446	total: 3.96s	remaining: 4.13s
147:	learn: 11.7332909	total: 3.99s	remaining: 4.1s
148:	learn: 11.6907270	total: 4.01s	remaining: 4.07s
149:	learn: 11.6628056	total: 4.04s	remaining: 4.04s
150:	learn: 11.6039432	total: 4.07s	remaining: 4.02s
151:	learn: 11.5752331	total: 4.1s	remaining: 3.99s
152:	learn: 11.5376476	total: 4.12s	remaining: 3.96s
153:	learn: 11.4947632	total: 4.15s	remaining: 3.93s
154:	learn: 11.4484147	total: 4.17s	remaining: 3.9s
155:	learn: 11.3925819	total: 4.2s	remaining: 3.88s
156:	learn: 11.3287384	total: 4.22s	remaining: 3.85s
157:	learn: 11.2566623	total: 4.25s	remaining: 3.82s
158:	learn: 11.2000227	total: 4.28s	remaining: 3.8s
159:	learn: 11.1023408	total: 4.31s	remaining: 3.77s
160:	learn: 11.0489770	total: 4.33s	remaining: 3.74s
161:	learn: 11.0026542	total: 4.36s	remaining: 3.71s
162:	learn: 10.9309626	total: 4.38s	remaining: 3.69s
163:	learn: 10.8844157	total: 4.41s	remaining: 3.66s
164:	learn: 10.8292008	total: 4.44s	remaining: 3.63s
165:	learn: 10.7365612	total: 4.46s	remaining: 3.6s
166:	learn: 10.6948804	total: 4.49s	remaining: 3.58s
167:	learn: 10.6566665	total: 4.52s	remaining: 3.55s
168:	learn: 10.6219222	total: 4.54s	remaining: 3.52s
169:	learn: 10.5930877	total: 4.57s	remaining: 3.49s
170:	learn: 10.5520362	total: 4.59s	remaining: 3.47s
171:	learn: 10.5160879	total: 4.62s	remaining: 3.44s
172:	learn: 10.4653972	total: 4.65s	remaining: 3.41s
173:	learn: 10.4164242	total: 4.68s	remaining: 3.39s
174:	learn: 10.3821629	total: 4.71s	remaining: 3.36s
175:	learn: 10.3623975	total: 4.74s	remaining: 3.34s
176:	learn: 10.3095845	total: 4.76s	remaining: 3.31s
177:	learn: 10.2501576	total: 4.79s	remaining: 3.28s
178:	learn: 10.2276060	total: 4.81s	remaining: 3.25s
179:	learn: 10.2052696	total: 4.84s	remaining: 3.23s
180:	learn: 10.1685156	total: 4.87s	remaining: 3.2s
181:	learn: 10.1443775	total: 4.9s	remaining: 3.17s
182:	learn: 10.0531518	total: 4.92s	remaining: 3.15s
183:	learn: 10.0052361	total: 4.95s	remaining: 3.12s
184:	learn: 9.9598299	total: 4.97s	remaining: 3.09s
185:	learn: 9.9062881	total: 5s	remaining: 3.06s
186:	learn: 9.8476621	total: 5.03s	remaining: 3.04s
187:	learn: 9.7943755	total: 5.05s	remaining: 3.01s
188:	learn: 9.7545158	total: 5.08s	remaining: 2.98s
189:	learn: 9.7325928	total: 5.1s	remaining: 2.95s
190:	learn: 9.6597076	total: 5.14s	remaining: 2.93s
191:	learn: 9.6049808	total: 5.17s	remaining: 2.9s
192:	learn: 9.5210539	total: 5.19s	remaining: 2.88s
193:	learn: 9.4839833	total: 5.22s	remaining: 2.85s
194:	learn: 9.4030810	total: 5.24s	remaining: 2.82s
195:	learn: 9.3610011	total: 5.27s	remaining: 2.79s
196:	learn: 9.3194779	total: 5.29s	remaining: 2.77s
197:	learn: 9.2866867	total: 5.33s	remaining: 2.74s
198:	learn: 9.2508142	total: 5.35s	remaining: 2.72s
199:	learn: 9.2271576	total: 5.38s	remaining: 2.69s
200:	learn: 9.1740668	total: 5.4s	remaining: 2.66s
201:	learn: 9.1586477	total: 5.43s	remaining: 2.63s
202:	learn: 9.1429015	total: 5.45s	remaining: 2.6s
203:	learn: 9.1133248	total: 5.48s	remaining: 2.58s
204:	learn: 9.0711331	total: 5.5s	remaining: 2.55s
205:	learn: 9.0093562	total: 5.53s	remaining: 2.52s
206:	learn: 8.9859881	total: 5.56s	remaining: 2.5s
207:	learn: 8.9419294	total: 5.59s	remaining: 2.47s
208:	learn: 8.8732493	total: 5.61s	remaining: 2.44s
209:	learn: 8.8186181	total: 5.64s	remaining: 2.42s
210:	learn: 8.7860222	total: 5.66s	remaining: 2.39s
211:	learn: 8.7597312	total: 5.68s	remaining: 2.36s
212:	learn: 8.7305431	total: 5.71s	remaining: 2.33s
213:	learn: 8.6620534	total: 5.73s	remaining: 2.3s
214:	learn: 8.6317582	total: 5.77s	remaining: 2.28s
215:	learn: 8.6021758	total: 5.79s	remaining: 2.25s
216:	learn: 8.5696515	total: 5.82s	remaining: 2.22s
217:	learn: 8.5267761	total: 5.84s	remaining: 2.2s
218:	learn: 8.5135802	total: 5.86s	remaining: 2.17s
219:	learn: 8.4762506	total: 5.89s	remaining: 2.14s
220:	learn: 8.4462181	total: 5.91s	remaining: 2.11s
221:	learn: 8.4167253	total: 5.94s	remaining: 2.09s
222:	learn: 8.3867332	total: 5.97s	remaining: 2.06s
223:	learn: 8.3527829	total: 6s	remaining: 2.03s
224:	learn: 8.3221175	total: 6.02s	remaining: 2.01s
225:	learn: 8.3149566	total: 6.04s	remaining: 1.98s
226:	learn: 8.3023601	total: 6.07s	remaining: 1.95s
227:	learn: 8.2720745	total: 6.09s	remaining: 1.92s
228:	learn: 8.2581250	total: 6.12s	remaining: 1.9s
229:	learn: 8.2207983	total: 6.14s	remaining: 1.87s
230:	learn: 8.2083228	total: 6.17s	remaining: 1.84s
231:	learn: 8.1774734	total: 6.2s	remaining: 1.82s
232:	learn: 8.1280317	total: 6.22s	remaining: 1.79s
233:	learn: 8.0969454	total: 6.25s	remaining: 1.76s
234:	learn: 8.0653906	total: 6.27s	remaining: 1.73s
235:	learn: 8.0403548	total: 6.29s	remaining: 1.71s
236:	learn: 8.0309296	total: 6.32s	remaining: 1.68s
237:	learn: 7.9802761	total: 6.34s	remaining: 1.65s
238:	learn: 7.9595062	total: 6.38s	remaining: 1.63s
239:	learn: 7.9560132	total: 6.4s	remaining: 1.6s
240:	learn: 7.9188077	total: 6.43s	remaining: 1.57s
241:	learn: 7.9129376	total: 6.45s	remaining: 1.55s
242:	learn: 7.8845382	total: 6.48s	remaining: 1.52s
243:	learn: 7.8699627	total: 6.5s	remaining: 1.49s
244:	learn: 7.8332493	total: 6.52s	remaining: 1.46s
245:	learn: 7.7807468	total: 6.55s	remaining: 1.44s
246:	learn: 7.7739426	total: 6.57s	remaining: 1.41s
247:	learn: 7.7384141	total: 6.61s	remaining: 1.39s
248:	learn: 7.7066380	total: 6.63s	remaining: 1.36s
249:	learn: 7.7001271	total: 6.66s	remaining: 1.33s
250:	learn: 7.6846399	total: 6.68s	remaining: 1.3s
251:	learn: 7.6791814	total: 6.7s	remaining: 1.28s
252:	learn: 7.6451688	total: 6.73s	remaining: 1.25s
253:	learn: 7.6117158	total: 6.75s	remaining: 1.22s
254:	learn: 7.6012012	total: 6.77s	remaining: 1.2s
255:	learn: 7.5729959	total: 6.8s	remaining: 1.17s
256:	learn: 7.5370997	total: 6.83s	remaining: 1.14s
257:	learn: 7.5099776	total: 6.86s	remaining: 1.12s
258:	learn: 7.4860975	total: 6.88s	remaining: 1.09s
259:	learn: 7.4566817	total: 6.91s	remaining: 1.06s
260:	learn: 7.4269980	total: 6.93s	remaining: 1.04s
261:	learn: 7.3923465	total: 6.96s	remaining: 1.01s
262:	learn: 7.3675376	total: 6.98s	remaining: 982ms
263:	learn: 7.3392461	total: 7.02s	remaining: 958ms
264:	learn: 7.3102490	total: 7.05s	remaining: 932ms
265:	learn: 7.3010635	total: 7.08s	remaining: 905ms
266:	learn: 7.2733113	total: 7.11s	remaining: 879ms
267:	learn: 7.2683610	total: 7.13s	remaining: 852ms
268:	learn: 7.2532714	total: 7.16s	remaining: 825ms
269:	learn: 7.2444185	total: 7.19s	remaining: 799ms
270:	learn: 7.2300953	total: 7.21s	remaining: 772ms
271:	learn: 7.2077357	total: 7.25s	remaining: 747ms
272:	learn: 7.1843423	total: 7.29s	remaining: 721ms
273:	learn: 7.1754867	total: 7.32s	remaining: 694ms
274:	learn: 7.1395344	total: 7.34s	remaining: 668ms
275:	learn: 7.1342567	total: 7.37s	remaining: 641ms
276:	learn: 7.1116057	total: 7.4s	remaining: 614ms
277:	learn: 7.0822569	total: 7.42s	remaining: 587ms
278:	learn: 7.0731958	total: 7.45s	remaining: 561ms
279:	learn: 7.0576479	total: 7.48s	remaining: 534ms
280:	learn: 7.0354817	total: 7.52s	remaining: 509ms
281:	learn: 7.0277403	total: 7.55s	remaining: 482ms
282:	learn: 7.0028621	total: 7.58s	remaining: 455ms
283:	learn: 6.9820607	total: 7.6s	remaining: 428ms
284:	learn: 6.9645494	total: 7.63s	remaining: 402ms
285:	learn: 6.9563224	total: 7.66s	remaining: 375ms
286:	learn: 6.9482036	total: 7.68s	remaining: 348ms
287:	learn: 6.9116066	total: 7.71s	remaining: 321ms
288:	learn: 6.8884274	total: 7.76s	remaining: 295ms
289:	learn: 6.8632506	total: 7.78s	remaining: 268ms
290:	learn: 6.8447357	total: 7.81s	remaining: 242ms
291:	learn: 6.8242972	total: 7.84s	remaining: 215ms
292:	learn: 6.8012643	total: 7.87s	remaining: 188ms
293:	learn: 6.7800583	total: 7.89s	remaining: 161ms
294:	learn: 6.7687042	total: 7.92s	remaining: 134ms
295:	learn: 6.7454529	total: 7.96s	remaining: 108ms
296:	learn: 6.7227229	total: 8s	remaining: 80.8ms
297:	learn: 6.7004834	total: 8.02s	remaining: 53.9ms
298:	learn: 6.6931313	total: 8.05s	remaining: 26.9ms
299:	learn: 6.6604653	total: 8.08s	remaining: 0us
0:	learn: 46.4449485	total: 41.4ms	remaining: 12.4s
1:	learn: 45.6641003	total: 71.3ms	remaining: 10.6s
2:	learn: 44.9322182	total: 100ms	remaining: 9.93s
3:	learn: 44.1111890	total: 127ms	remaining: 9.42s
4:	learn: 43.2956452	total: 165ms	remaining: 9.72s
5:	learn: 42.6298126	total: 192ms	remaining: 9.39s
6:	learn: 42.0896057	total: 218ms	remaining: 9.14s
7:	learn: 41.2698632	total: 246ms	remaining: 8.98s
8:	learn: 40.4846232	total: 273ms	remaining: 8.83s
9:	learn: 39.7069009	total: 302ms	remaining: 8.77s
10:	learn: 38.9656593	total: 307ms	remaining: 8.06s
11:	learn: 38.5069229	total: 341ms	remaining: 8.17s
12:	learn: 37.8073380	total: 367ms	remaining: 8.1s
13:	learn: 37.3882967	total: 394ms	remaining: 8.04s
14:	learn: 36.8180964	total: 428ms	remaining: 8.13s
15:	learn: 36.2948556	total: 455ms	remaining: 8.08s
16:	learn: 35.6877194	total: 482ms	remaining: 8.02s
17:	learn: 35.3344416	total: 510ms	remaining: 7.99s
18:	learn: 34.8793907	total: 539ms	remaining: 7.97s
19:	learn: 34.3129264	total: 574ms	remaining: 8.03s
20:	learn: 34.0804390	total: 602ms	remaining: 8s
21:	learn: 33.4413882	total: 629ms	remaining: 7.95s
22:	learn: 32.9936060	total: 666ms	remaining: 8.02s
23:	learn: 32.6458868	total: 694ms	remaining: 7.98s
24:	learn: 32.3273431	total: 721ms	remaining: 7.93s
25:	learn: 31.8309940	total: 748ms	remaining: 7.88s
26:	learn: 31.4310003	total: 778ms	remaining: 7.86s
27:	learn: 31.1804602	total: 809ms	remaining: 7.86s
28:	learn: 30.8535447	total: 835ms	remaining: 7.8s
29:	learn: 30.4063180	total: 862ms	remaining: 7.76s
30:	learn: 30.1876699	total: 896ms	remaining: 7.78s
31:	learn: 29.8778033	total: 923ms	remaining: 7.73s
32:	learn: 29.6371470	total: 951ms	remaining: 7.69s
33:	learn: 29.3801255	total: 982ms	remaining: 7.68s
34:	learn: 29.1426244	total: 1.02s	remaining: 7.71s
35:	learn: 28.9166951	total: 1.04s	remaining: 7.67s
36:	learn: 28.6597815	total: 1.07s	remaining: 7.62s
37:	learn: 28.3844706	total: 1.1s	remaining: 7.59s
38:	learn: 28.0894923	total: 1.13s	remaining: 7.59s
39:	learn: 27.7571740	total: 1.16s	remaining: 7.55s
40:	learn: 27.4609127	total: 1.19s	remaining: 7.54s
41:	learn: 27.1948352	total: 1.22s	remaining: 7.5s
42:	learn: 26.9507594	total: 1.25s	remaining: 7.45s
43:	learn: 26.6347229	total: 1.27s	remaining: 7.4s
44:	learn: 26.3479735	total: 1.3s	remaining: 7.35s
45:	learn: 26.1335817	total: 1.32s	remaining: 7.3s
46:	learn: 25.8868210	total: 1.35s	remaining: 7.25s
47:	learn: 25.6881647	total: 1.37s	remaining: 7.21s
48:	learn: 25.4764814	total: 1.4s	remaining: 7.17s
49:	learn: 25.2279851	total: 1.43s	remaining: 7.17s
50:	learn: 24.9914875	total: 1.46s	remaining: 7.13s
51:	learn: 24.7951252	total: 1.49s	remaining: 7.09s
52:	learn: 24.6181712	total: 1.51s	remaining: 7.05s
53:	learn: 24.3711141	total: 1.54s	remaining: 7.01s
54:	learn: 24.1983381	total: 1.56s	remaining: 6.96s
55:	learn: 24.0518193	total: 1.59s	remaining: 6.93s
56:	learn: 23.8035754	total: 1.62s	remaining: 6.92s
57:	learn: 23.5891443	total: 1.65s	remaining: 6.88s
58:	learn: 23.3650788	total: 1.67s	remaining: 6.83s
59:	learn: 23.1423622	total: 1.7s	remaining: 6.79s
60:	learn: 22.9562061	total: 1.72s	remaining: 6.75s
61:	learn: 22.7841608	total: 1.75s	remaining: 6.71s
62:	learn: 22.5259611	total: 1.77s	remaining: 6.67s
63:	learn: 22.3959565	total: 1.8s	remaining: 6.64s
64:	learn: 22.2695041	total: 1.83s	remaining: 6.63s
65:	learn: 22.0116444	total: 1.86s	remaining: 6.59s
66:	learn: 21.8636416	total: 1.89s	remaining: 6.56s
67:	learn: 21.7170816	total: 1.91s	remaining: 6.52s
68:	learn: 21.6130887	total: 1.94s	remaining: 6.5s
69:	learn: 21.4107735	total: 1.97s	remaining: 6.46s
70:	learn: 21.2682184	total: 1.99s	remaining: 6.42s
71:	learn: 21.0421124	total: 2.02s	remaining: 6.39s
72:	learn: 20.8829831	total: 2.04s	remaining: 6.36s
73:	learn: 20.7916905	total: 2.07s	remaining: 6.34s
74:	learn: 20.6572110	total: 2.1s	remaining: 6.3s
75:	learn: 20.4683201	total: 2.13s	remaining: 6.26s
76:	learn: 20.3387806	total: 2.15s	remaining: 6.22s
77:	learn: 20.2301442	total: 2.17s	remaining: 6.19s
78:	learn: 20.1399739	total: 2.2s	remaining: 6.15s
79:	learn: 20.0395988	total: 2.23s	remaining: 6.12s
80:	learn: 19.9529190	total: 2.26s	remaining: 6.1s
81:	learn: 19.8285498	total: 2.29s	remaining: 6.09s
82:	learn: 19.6862504	total: 2.31s	remaining: 6.05s
83:	learn: 19.5764172	total: 2.34s	remaining: 6.02s
84:	learn: 19.4499650	total: 2.37s	remaining: 5.99s
85:	learn: 19.3449362	total: 2.39s	remaining: 5.96s
86:	learn: 19.1854254	total: 2.42s	remaining: 5.92s
87:	learn: 19.0850074	total: 2.44s	remaining: 5.89s
88:	learn: 18.9724934	total: 2.48s	remaining: 5.88s
89:	learn: 18.8778956	total: 2.5s	remaining: 5.84s
90:	learn: 18.7370373	total: 2.53s	remaining: 5.81s
91:	learn: 18.6192464	total: 2.55s	remaining: 5.78s
92:	learn: 18.5100314	total: 2.58s	remaining: 5.74s
93:	learn: 18.4275820	total: 2.6s	remaining: 5.71s
94:	learn: 18.3242001	total: 2.63s	remaining: 5.67s
95:	learn: 18.2110620	total: 2.65s	remaining: 5.64s
96:	learn: 18.0955256	total: 2.68s	remaining: 5.62s
97:	learn: 17.9941571	total: 2.72s	remaining: 5.61s
98:	learn: 17.8973235	total: 2.75s	remaining: 5.57s
99:	learn: 17.8100972	total: 2.77s	remaining: 5.54s
100:	learn: 17.7386244	total: 2.8s	remaining: 5.51s
101:	learn: 17.6310903	total: 2.82s	remaining: 5.48s
102:	learn: 17.5516996	total: 2.85s	remaining: 5.45s
103:	learn: 17.4617467	total: 2.88s	remaining: 5.42s
104:	learn: 17.3666766	total: 2.9s	remaining: 5.39s
105:	learn: 17.2221165	total: 2.93s	remaining: 5.37s
106:	learn: 17.0790059	total: 2.96s	remaining: 5.33s
107:	learn: 16.9698310	total: 2.98s	remaining: 5.3s
108:	learn: 16.8969362	total: 3.01s	remaining: 5.27s
109:	learn: 16.7819942	total: 3.03s	remaining: 5.24s
110:	learn: 16.6911902	total: 3.06s	remaining: 5.21s
111:	learn: 16.5519175	total: 3.08s	remaining: 5.18s
112:	learn: 16.3906885	total: 3.11s	remaining: 5.15s
113:	learn: 16.3090927	total: 3.15s	remaining: 5.14s
114:	learn: 16.2205215	total: 3.17s	remaining: 5.11s
115:	learn: 16.1233780	total: 3.2s	remaining: 5.08s
116:	learn: 16.0321663	total: 3.23s	remaining: 5.05s
117:	learn: 15.9579011	total: 3.25s	remaining: 5.02s
118:	learn: 15.8593485	total: 3.28s	remaining: 4.98s
119:	learn: 15.7788251	total: 3.3s	remaining: 4.95s
120:	learn: 15.7287407	total: 3.34s	remaining: 4.94s
121:	learn: 15.5788208	total: 3.36s	remaining: 4.91s
122:	learn: 15.5086549	total: 3.39s	remaining: 4.87s
123:	learn: 15.4364731	total: 3.41s	remaining: 4.84s
124:	learn: 15.3549185	total: 3.43s	remaining: 4.81s
125:	learn: 15.2967084	total: 3.46s	remaining: 4.78s
126:	learn: 15.1872607	total: 3.48s	remaining: 4.74s
127:	learn: 15.0932023	total: 3.51s	remaining: 4.71s
128:	learn: 15.0097364	total: 3.54s	remaining: 4.69s
129:	learn: 14.9463156	total: 3.57s	remaining: 4.66s
130:	learn: 14.8900172	total: 3.59s	remaining: 4.63s
131:	learn: 14.8358826	total: 3.62s	remaining: 4.6s
132:	learn: 14.7553997	total: 3.64s	remaining: 4.57s
133:	learn: 14.6821554	total: 3.67s	remaining: 4.54s
134:	learn: 14.5304879	total: 3.69s	remaining: 4.51s
135:	learn: 14.4324442	total: 3.71s	remaining: 4.48s
136:	learn: 14.3331494	total: 3.75s	remaining: 4.46s
137:	learn: 14.2753055	total: 3.77s	remaining: 4.43s
138:	learn: 14.1937968	total: 3.79s	remaining: 4.39s
139:	learn: 14.1149360	total: 3.82s	remaining: 4.36s
140:	learn: 14.0475961	total: 3.84s	remaining: 4.33s
141:	learn: 13.9679410	total: 3.87s	remaining: 4.3s
142:	learn: 13.8728976	total: 3.89s	remaining: 4.27s
143:	learn: 13.8088340	total: 3.92s	remaining: 4.24s
144:	learn: 13.7225802	total: 3.94s	remaining: 4.21s
145:	learn: 13.6027859	total: 3.98s	remaining: 4.19s
146:	learn: 13.5360562	total: 4s	remaining: 4.17s
147:	learn: 13.4527264	total: 4.03s	remaining: 4.13s
148:	learn: 13.3905685	total: 4.05s	remaining: 4.11s
149:	learn: 13.3231120	total: 4.08s	remaining: 4.08s
150:	learn: 13.2748277	total: 4.1s	remaining: 4.05s
151:	learn: 13.2011042	total: 4.13s	remaining: 4.02s
152:	learn: 13.1113158	total: 4.15s	remaining: 3.99s
153:	learn: 13.0630373	total: 4.18s	remaining: 3.96s
154:	learn: 12.9877054	total: 4.21s	remaining: 3.93s
155:	learn: 12.8975618	total: 4.23s	remaining: 3.9s
156:	learn: 12.8226873	total: 4.25s	remaining: 3.87s
157:	learn: 12.7653176	total: 4.28s	remaining: 3.84s
158:	learn: 12.7032259	total: 4.3s	remaining: 3.81s
159:	learn: 12.6413414	total: 4.33s	remaining: 3.79s
160:	learn: 12.5418162	total: 4.35s	remaining: 3.76s
161:	learn: 12.4761943	total: 4.38s	remaining: 3.73s
162:	learn: 12.4099277	total: 4.41s	remaining: 3.7s
163:	learn: 12.3393405	total: 4.44s	remaining: 3.68s
164:	learn: 12.2429002	total: 4.46s	remaining: 3.65s
165:	learn: 12.1931336	total: 4.49s	remaining: 3.62s
166:	learn: 12.0509054	total: 4.51s	remaining: 3.59s
167:	learn: 11.9940166	total: 4.53s	remaining: 3.56s
168:	learn: 11.9267615	total: 4.56s	remaining: 3.53s
169:	learn: 11.8595898	total: 4.58s	remaining: 3.5s
170:	learn: 11.7291128	total: 4.61s	remaining: 3.48s
171:	learn: 11.6574232	total: 4.64s	remaining: 3.45s
172:	learn: 11.5771876	total: 4.66s	remaining: 3.42s
173:	learn: 11.4934307	total: 4.69s	remaining: 3.39s
174:	learn: 11.4454134	total: 4.71s	remaining: 3.36s
175:	learn: 11.3829392	total: 4.73s	remaining: 3.33s
176:	learn: 11.2971903	total: 4.76s	remaining: 3.31s
177:	learn: 11.2515029	total: 4.78s	remaining: 3.28s
178:	learn: 11.2046889	total: 4.81s	remaining: 3.25s
179:	learn: 11.1528497	total: 4.84s	remaining: 3.22s
180:	learn: 11.0691294	total: 4.87s	remaining: 3.2s
181:	learn: 11.0191173	total: 4.9s	remaining: 3.18s
182:	learn: 10.9046058	total: 4.93s	remaining: 3.15s
183:	learn: 10.8625890	total: 4.96s	remaining: 3.12s
184:	learn: 10.7913928	total: 4.98s	remaining: 3.1s
185:	learn: 10.7366315	total: 5.01s	remaining: 3.07s
186:	learn: 10.6583458	total: 5.04s	remaining: 3.04s
187:	learn: 10.5955649	total: 5.08s	remaining: 3.02s
188:	learn: 10.5456969	total: 5.11s	remaining: 3s
189:	learn: 10.4582108	total: 5.13s	remaining: 2.97s
190:	learn: 10.4226930	total: 5.16s	remaining: 2.94s
191:	learn: 10.3469793	total: 5.19s	remaining: 2.92s
192:	learn: 10.2680286	total: 5.21s	remaining: 2.89s
193:	learn: 10.2210599	total: 5.24s	remaining: 2.86s
194:	learn: 10.1575919	total: 5.27s	remaining: 2.84s
195:	learn: 10.0996054	total: 5.31s	remaining: 2.81s
196:	learn: 10.0503671	total: 5.34s	remaining: 2.79s
197:	learn: 9.9976825	total: 5.37s	remaining: 2.77s
198:	learn: 9.9452535	total: 5.4s	remaining: 2.74s
199:	learn: 9.8825415	total: 5.42s	remaining: 2.71s
200:	learn: 9.8064134	total: 5.45s	remaining: 2.69s
201:	learn: 9.7572174	total: 5.49s	remaining: 2.66s
202:	learn: 9.6993413	total: 5.51s	remaining: 2.63s
203:	learn: 9.6645937	total: 5.54s	remaining: 2.61s
204:	learn: 9.6261766	total: 5.58s	remaining: 2.58s
205:	learn: 9.5819475	total: 5.6s	remaining: 2.56s
206:	learn: 9.5366280	total: 5.63s	remaining: 2.53s
207:	learn: 9.4813538	total: 5.66s	remaining: 2.5s
208:	learn: 9.4246671	total: 5.69s	remaining: 2.48s
209:	learn: 9.3787991	total: 5.72s	remaining: 2.45s
210:	learn: 9.3261932	total: 5.75s	remaining: 2.42s
211:	learn: 9.2979373	total: 5.78s	remaining: 2.4s
212:	learn: 9.2466040	total: 5.81s	remaining: 2.37s
213:	learn: 9.1990809	total: 5.84s	remaining: 2.35s
214:	learn: 9.1630306	total: 5.87s	remaining: 2.32s
215:	learn: 9.1266975	total: 5.9s	remaining: 2.29s
216:	learn: 9.0846374	total: 5.93s	remaining: 2.27s
217:	learn: 9.0341002	total: 5.96s	remaining: 2.24s
218:	learn: 8.9874070	total: 5.98s	remaining: 2.21s
219:	learn: 8.9478524	total: 6.01s	remaining: 2.18s
220:	learn: 8.8970642	total: 6.04s	remaining: 2.16s
221:	learn: 8.8605945	total: 6.07s	remaining: 2.13s
222:	learn: 8.8261863	total: 6.1s	remaining: 2.1s
223:	learn: 8.7821922	total: 6.14s	remaining: 2.08s
224:	learn: 8.7517706	total: 6.16s	remaining: 2.05s
225:	learn: 8.7149517	total: 6.19s	remaining: 2.03s
226:	learn: 8.6766707	total: 6.22s	remaining: 2s
227:	learn: 8.6372492	total: 6.25s	remaining: 1.97s
228:	learn: 8.6002129	total: 6.28s	remaining: 1.95s
229:	learn: 8.5595754	total: 6.31s	remaining: 1.92s
230:	learn: 8.5342774	total: 6.34s	remaining: 1.9s
231:	learn: 8.4991734	total: 6.37s	remaining: 1.87s
232:	learn: 8.4735361	total: 6.4s	remaining: 1.84s
233:	learn: 8.4328577	total: 6.43s	remaining: 1.81s
234:	learn: 8.3929232	total: 6.45s	remaining: 1.78s
235:	learn: 8.3611534	total: 6.48s	remaining: 1.76s
236:	learn: 8.3469261	total: 6.51s	remaining: 1.73s
237:	learn: 8.3082592	total: 6.54s	remaining: 1.71s
238:	learn: 8.2724422	total: 6.58s	remaining: 1.68s
239:	learn: 8.2378713	total: 6.61s	remaining: 1.65s
240:	learn: 8.2054002	total: 6.64s	remaining: 1.63s
241:	learn: 8.1726213	total: 6.67s	remaining: 1.6s
242:	learn: 8.1385919	total: 6.69s	remaining: 1.57s
243:	learn: 8.1113159	total: 6.72s	remaining: 1.54s
244:	learn: 8.0740264	total: 6.75s	remaining: 1.51s
245:	learn: 8.0399614	total: 6.79s	remaining: 1.49s
246:	learn: 8.0179358	total: 6.82s	remaining: 1.46s
247:	learn: 7.9896565	total: 6.84s	remaining: 1.44s
248:	learn: 7.9644186	total: 6.87s	remaining: 1.41s
249:	learn: 7.9305923	total: 6.9s	remaining: 1.38s
250:	learn: 7.9007851	total: 6.92s	remaining: 1.35s
251:	learn: 7.8740137	total: 6.95s	remaining: 1.32s
252:	learn: 7.8448288	total: 6.98s	remaining: 1.3s
253:	learn: 7.8020074	total: 7.02s	remaining: 1.27s
254:	learn: 7.7748874	total: 7.05s	remaining: 1.24s
255:	learn: 7.7553198	total: 7.08s	remaining: 1.22s
256:	learn: 7.7327191	total: 7.11s	remaining: 1.19s
257:	learn: 7.7021253	total: 7.13s	remaining: 1.16s
258:	learn: 7.6760024	total: 7.16s	remaining: 1.13s
259:	learn: 7.6569353	total: 7.19s	remaining: 1.1s
260:	learn: 7.6304716	total: 7.22s	remaining: 1.08s
261:	learn: 7.6011855	total: 7.25s	remaining: 1.05s
262:	learn: 7.5732109	total: 7.29s	remaining: 1.02s
263:	learn: 7.5502359	total: 7.31s	remaining: 997ms
264:	learn: 7.5240021	total: 7.34s	remaining: 969ms
265:	learn: 7.4977154	total: 7.36s	remaining: 941ms
266:	learn: 7.4679226	total: 7.39s	remaining: 914ms
267:	learn: 7.4445035	total: 7.42s	remaining: 886ms
268:	learn: 7.4246251	total: 7.45s	remaining: 858ms
269:	learn: 7.4029554	total: 7.48s	remaining: 832ms
270:	learn: 7.3712662	total: 7.52s	remaining: 805ms
271:	learn: 7.3355870	total: 7.54s	remaining: 777ms
272:	learn: 7.3198771	total: 7.57s	remaining: 749ms
273:	learn: 7.3050151	total: 7.6s	remaining: 721ms
274:	learn: 7.2910043	total: 7.63s	remaining: 693ms
275:	learn: 7.2783385	total: 7.66s	remaining: 666ms
276:	learn: 7.2559473	total: 7.69s	remaining: 638ms
277:	learn: 7.2185655	total: 7.72s	remaining: 611ms
278:	learn: 7.1965563	total: 7.75s	remaining: 584ms
279:	learn: 7.1773705	total: 7.78s	remaining: 556ms
280:	learn: 7.1541341	total: 7.81s	remaining: 528ms
281:	learn: 7.1355109	total: 7.83s	remaining: 500ms
282:	learn: 7.1129308	total: 7.86s	remaining: 472ms
283:	learn: 7.0886063	total: 7.89s	remaining: 444ms
284:	learn: 7.0673363	total: 7.92s	remaining: 417ms
285:	learn: 7.0518651	total: 7.95s	remaining: 389ms
286:	learn: 7.0312280	total: 7.99s	remaining: 362ms
287:	learn: 7.0065712	total: 8.02s	remaining: 334ms
288:	learn: 6.9851465	total: 8.04s	remaining: 306ms
289:	learn: 6.9652208	total: 8.07s	remaining: 278ms
290:	learn: 6.9480340	total: 8.1s	remaining: 251ms
291:	learn: 6.9293725	total: 8.13s	remaining: 223ms
292:	learn: 6.8953713	total: 8.16s	remaining: 195ms
293:	learn: 6.8800761	total: 8.19s	remaining: 167ms
294:	learn: 6.8674172	total: 8.21s	remaining: 139ms
295:	learn: 6.8461255	total: 8.25s	remaining: 111ms
296:	learn: 6.8284246	total: 8.27s	remaining: 83.6ms
297:	learn: 6.8028742	total: 8.3s	remaining: 55.7ms
298:	learn: 6.7865169	total: 8.33s	remaining: 27.9ms
299:	learn: 6.7677918	total: 8.36s	remaining: 0us
0:	learn: 46.0177610	total: 26.8ms	remaining: 8.01s
1:	learn: 45.2171004	total: 53ms	remaining: 7.9s
2:	learn: 44.5194217	total: 80ms	remaining: 7.92s
3:	learn: 43.6812696	total: 115ms	remaining: 8.52s
4:	learn: 42.8831305	total: 149ms	remaining: 8.81s
5:	learn: 42.1262412	total: 174ms	remaining: 8.53s
6:	learn: 41.6465602	total: 198ms	remaining: 8.29s
7:	learn: 41.2399751	total: 223ms	remaining: 8.15s
8:	learn: 40.7217059	total: 248ms	remaining: 8.01s
9:	learn: 40.1802193	total: 273ms	remaining: 7.91s
10:	learn: 39.7286629	total: 299ms	remaining: 7.84s
11:	learn: 39.1775230	total: 325ms	remaining: 7.79s
12:	learn: 38.7477788	total: 357ms	remaining: 7.88s
13:	learn: 38.2296808	total: 386ms	remaining: 7.88s
14:	learn: 37.7069865	total: 412ms	remaining: 7.83s
15:	learn: 37.1535735	total: 439ms	remaining: 7.78s
16:	learn: 36.7900064	total: 464ms	remaining: 7.73s
17:	learn: 36.4049038	total: 489ms	remaining: 7.67s
18:	learn: 35.9640324	total: 514ms	remaining: 7.6s
19:	learn: 35.5778526	total: 540ms	remaining: 7.56s
20:	learn: 35.2480134	total: 572ms	remaining: 7.6s
21:	learn: 34.8576668	total: 598ms	remaining: 7.56s
22:	learn: 34.3332571	total: 623ms	remaining: 7.51s
23:	learn: 34.0285781	total: 648ms	remaining: 7.45s
24:	learn: 33.6137780	total: 674ms	remaining: 7.41s
25:	learn: 33.1018374	total: 698ms	remaining: 7.35s
26:	learn: 32.7865924	total: 723ms	remaining: 7.31s
27:	learn: 32.5376779	total: 748ms	remaining: 7.27s
28:	learn: 32.0718213	total: 776ms	remaining: 7.25s
29:	learn: 31.7440177	total: 814ms	remaining: 7.33s
30:	learn: 31.4767615	total: 841ms	remaining: 7.3s
31:	learn: 31.0939292	total: 868ms	remaining: 7.27s
32:	learn: 30.7679414	total: 894ms	remaining: 7.23s
33:	learn: 30.3318976	total: 919ms	remaining: 7.19s
34:	learn: 30.0098409	total: 944ms	remaining: 7.15s
35:	learn: 29.7328439	total: 973ms	remaining: 7.13s
36:	learn: 29.3793676	total: 1s	remaining: 7.14s
37:	learn: 29.1027021	total: 1.03s	remaining: 7.11s
38:	learn: 28.7995895	total: 1.05s	remaining: 7.07s
39:	learn: 28.5217760	total: 1.08s	remaining: 7.02s
40:	learn: 28.1682840	total: 1.11s	remaining: 6.99s
41:	learn: 27.7960176	total: 1.13s	remaining: 6.95s
42:	learn: 27.5479541	total: 1.16s	remaining: 6.92s
43:	learn: 27.1865306	total: 1.18s	remaining: 6.88s
44:	learn: 26.9937460	total: 1.22s	remaining: 6.9s
45:	learn: 26.8442463	total: 1.25s	remaining: 6.88s
46:	learn: 26.4960149	total: 1.27s	remaining: 6.85s
47:	learn: 26.3705169	total: 1.3s	remaining: 6.81s
48:	learn: 26.1706608	total: 1.32s	remaining: 6.78s
49:	learn: 25.9554127	total: 1.35s	remaining: 6.75s
50:	learn: 25.7460625	total: 1.37s	remaining: 6.71s
51:	learn: 25.5382801	total: 1.4s	remaining: 6.67s
52:	learn: 25.3702316	total: 1.43s	remaining: 6.67s
53:	learn: 25.1895507	total: 1.46s	remaining: 6.64s
54:	learn: 24.9547189	total: 1.48s	remaining: 6.61s
55:	learn: 24.7774266	total: 1.51s	remaining: 6.57s
56:	learn: 24.5983576	total: 1.53s	remaining: 6.54s
57:	learn: 24.4350851	total: 1.56s	remaining: 6.5s
58:	learn: 24.1821816	total: 1.58s	remaining: 6.47s
59:	learn: 24.0194176	total: 1.61s	remaining: 6.44s
60:	learn: 23.8268698	total: 1.64s	remaining: 6.42s
61:	learn: 23.6797713	total: 1.68s	remaining: 6.43s
62:	learn: 23.5016295	total: 1.7s	remaining: 6.4s
63:	learn: 23.3337406	total: 1.73s	remaining: 6.37s
64:	learn: 23.1777686	total: 1.75s	remaining: 6.33s
65:	learn: 22.9885995	total: 1.78s	remaining: 6.31s
66:	learn: 22.8371180	total: 1.8s	remaining: 6.28s
67:	learn: 22.6795513	total: 1.83s	remaining: 6.25s
68:	learn: 22.5161365	total: 1.87s	remaining: 6.25s
69:	learn: 22.3361211	total: 1.89s	remaining: 6.22s
70:	learn: 22.1434717	total: 1.92s	remaining: 6.18s
71:	learn: 21.9717466	total: 1.94s	remaining: 6.15s
72:	learn: 21.7799255	total: 1.97s	remaining: 6.12s
73:	learn: 21.5806287	total: 1.99s	remaining: 6.09s
74:	learn: 21.4515659	total: 2.02s	remaining: 6.06s
75:	learn: 21.3438173	total: 2.04s	remaining: 6.02s
76:	learn: 21.2141855	total: 2.08s	remaining: 6.01s
77:	learn: 20.9791139	total: 2.11s	remaining: 6s
78:	learn: 20.8731109	total: 2.13s	remaining: 5.97s
79:	learn: 20.7356152	total: 2.16s	remaining: 5.94s
80:	learn: 20.6794518	total: 2.19s	remaining: 5.91s
81:	learn: 20.5703504	total: 2.21s	remaining: 5.88s
82:	learn: 20.4542622	total: 2.23s	remaining: 5.84s
83:	learn: 20.3436005	total: 2.26s	remaining: 5.82s
84:	learn: 20.2213634	total: 2.29s	remaining: 5.8s
85:	learn: 20.0231006	total: 2.32s	remaining: 5.77s
86:	learn: 19.9066413	total: 2.34s	remaining: 5.73s
87:	learn: 19.8018072	total: 2.37s	remaining: 5.7s
88:	learn: 19.7018716	total: 2.39s	remaining: 5.67s
89:	learn: 19.5924764	total: 2.41s	remaining: 5.63s
90:	learn: 19.4563722	total: 2.44s	remaining: 5.6s
91:	learn: 19.3246547	total: 2.46s	remaining: 5.57s
92:	learn: 19.2157682	total: 2.49s	remaining: 5.54s
93:	learn: 19.1488443	total: 2.52s	remaining: 5.53s
94:	learn: 19.0557445	total: 2.55s	remaining: 5.5s
95:	learn: 18.9599358	total: 2.57s	remaining: 5.47s
96:	learn: 18.8626100	total: 2.6s	remaining: 5.44s
97:	learn: 18.7583061	total: 2.62s	remaining: 5.41s
98:	learn: 18.6544146	total: 2.65s	remaining: 5.37s
99:	learn: 18.5451742	total: 2.67s	remaining: 5.34s
100:	learn: 18.4189953	total: 2.69s	remaining: 5.31s
101:	learn: 18.3438186	total: 2.72s	remaining: 5.28s
102:	learn: 18.3162367	total: 2.75s	remaining: 5.26s
103:	learn: 18.2040313	total: 2.77s	remaining: 5.23s
104:	learn: 18.0312740	total: 2.8s	remaining: 5.2s
105:	learn: 17.9372951	total: 2.82s	remaining: 5.17s
106:	learn: 17.8724695	total: 2.85s	remaining: 5.14s
107:	learn: 17.7720982	total: 2.87s	remaining: 5.11s
108:	learn: 17.6847197	total: 2.9s	remaining: 5.08s
109:	learn: 17.5739155	total: 2.92s	remaining: 5.05s
110:	learn: 17.5071512	total: 2.96s	remaining: 5.03s
111:	learn: 17.4284339	total: 2.98s	remaining: 5s
112:	learn: 17.3333136	total: 3.01s	remaining: 4.97s
113:	learn: 17.2854017	total: 3.03s	remaining: 4.94s
114:	learn: 17.2580292	total: 3.06s	remaining: 4.92s
115:	learn: 17.1942005	total: 3.08s	remaining: 4.88s
116:	learn: 17.1180771	total: 3.1s	remaining: 4.85s
117:	learn: 17.0881080	total: 3.13s	remaining: 4.82s
118:	learn: 16.9946379	total: 3.15s	remaining: 4.79s
119:	learn: 16.9347009	total: 3.18s	remaining: 4.77s
120:	learn: 16.8550523	total: 3.21s	remaining: 4.75s
121:	learn: 16.8167084	total: 3.23s	remaining: 4.71s
122:	learn: 16.7431121	total: 3.25s	remaining: 4.68s
123:	learn: 16.6790079	total: 3.28s	remaining: 4.65s
124:	learn: 16.6544185	total: 3.3s	remaining: 4.62s
125:	learn: 16.5758961	total: 3.33s	remaining: 4.59s
126:	learn: 16.4736355	total: 3.35s	remaining: 4.57s
127:	learn: 16.3424410	total: 3.38s	remaining: 4.55s
128:	learn: 16.2679660	total: 3.41s	remaining: 4.52s
129:	learn: 16.2258039	total: 3.44s	remaining: 4.49s
130:	learn: 16.1516799	total: 3.46s	remaining: 4.46s
131:	learn: 16.1254438	total: 3.48s	remaining: 4.43s
132:	learn: 16.0304106	total: 3.51s	remaining: 4.41s
133:	learn: 15.9690721	total: 3.53s	remaining: 4.38s
134:	learn: 15.8475301	total: 3.56s	remaining: 4.35s
135:	learn: 15.7923044	total: 3.59s	remaining: 4.33s
136:	learn: 15.7122364	total: 3.61s	remaining: 4.3s
137:	learn: 15.6328785	total: 3.63s	remaining: 4.27s
138:	learn: 15.5626000	total: 3.66s	remaining: 4.24s
139:	learn: 15.4322531	total: 3.68s	remaining: 4.21s
140:	learn: 15.3057121	total: 3.71s	remaining: 4.18s
141:	learn: 15.2355698	total: 3.73s	remaining: 4.15s
142:	learn: 15.1858129	total: 3.75s	remaining: 4.12s
143:	learn: 15.1459442	total: 3.79s	remaining: 4.1s
144:	learn: 15.1011230	total: 3.81s	remaining: 4.08s
145:	learn: 15.0379234	total: 3.84s	remaining: 4.05s
146:	learn: 14.9606955	total: 3.87s	remaining: 4.03s
147:	learn: 14.8537869	total: 3.9s	remaining: 4s
148:	learn: 14.7978827	total: 3.92s	remaining: 3.97s
149:	learn: 14.7340183	total: 3.95s	remaining: 3.95s
150:	learn: 14.6973812	total: 3.98s	remaining: 3.93s
151:	learn: 14.6682787	total: 4.01s	remaining: 3.9s
152:	learn: 14.5210539	total: 4.04s	remaining: 3.88s
153:	learn: 14.4733148	total: 4.07s	remaining: 3.86s
154:	learn: 14.4119567	total: 4.1s	remaining: 3.83s
155:	learn: 14.3464330	total: 4.13s	remaining: 3.81s
156:	learn: 14.2314719	total: 4.15s	remaining: 3.78s
157:	learn: 14.1827121	total: 4.18s	remaining: 3.75s
158:	learn: 14.0860528	total: 4.21s	remaining: 3.73s
159:	learn: 14.0216499	total: 4.24s	remaining: 3.71s
160:	learn: 13.9788508	total: 4.27s	remaining: 3.69s
161:	learn: 13.9341942	total: 4.3s	remaining: 3.66s
162:	learn: 13.8689437	total: 4.34s	remaining: 3.65s
163:	learn: 13.8152354	total: 4.36s	remaining: 3.62s
164:	learn: 13.7979613	total: 4.39s	remaining: 3.59s
165:	learn: 13.7124340	total: 4.42s	remaining: 3.56s
166:	learn: 13.6328571	total: 4.45s	remaining: 3.54s
167:	learn: 13.6179483	total: 4.48s	remaining: 3.52s
168:	learn: 13.5737505	total: 4.51s	remaining: 3.49s
169:	learn: 13.5185652	total: 4.53s	remaining: 3.47s
170:	learn: 13.3621411	total: 4.57s	remaining: 3.44s
171:	learn: 13.3431787	total: 4.59s	remaining: 3.42s
172:	learn: 13.2661742	total: 4.62s	remaining: 3.39s
173:	learn: 13.2029526	total: 4.65s	remaining: 3.37s
174:	learn: 13.1457507	total: 4.68s	remaining: 3.34s
175:	learn: 13.0041277	total: 4.71s	remaining: 3.32s
176:	learn: 12.9565895	total: 4.74s	remaining: 3.29s
177:	learn: 12.8225368	total: 4.76s	remaining: 3.27s
178:	learn: 12.8073526	total: 4.8s	remaining: 3.25s
179:	learn: 12.7432577	total: 4.83s	remaining: 3.22s
180:	learn: 12.6894062	total: 4.86s	remaining: 3.19s
181:	learn: 12.6115430	total: 4.89s	remaining: 3.17s
182:	learn: 12.4884510	total: 4.92s	remaining: 3.15s
183:	learn: 12.4670071	total: 4.95s	remaining: 3.12s
184:	learn: 12.3586840	total: 4.97s	remaining: 3.09s
185:	learn: 12.3314465	total: 5s	remaining: 3.06s
186:	learn: 12.2898986	total: 5.03s	remaining: 3.04s
187:	learn: 12.2444848	total: 5.06s	remaining: 3.02s
188:	learn: 12.1286912	total: 5.09s	remaining: 2.99s
189:	learn: 12.0913051	total: 5.13s	remaining: 2.97s
190:	learn: 12.0412425	total: 5.15s	remaining: 2.94s
191:	learn: 11.9806235	total: 5.18s	remaining: 2.91s
192:	learn: 11.9166183	total: 5.21s	remaining: 2.89s
193:	learn: 11.8779218	total: 5.24s	remaining: 2.86s
194:	learn: 11.8179532	total: 5.26s	remaining: 2.83s
195:	learn: 11.7640239	total: 5.3s	remaining: 2.81s
196:	learn: 11.7071262	total: 5.33s	remaining: 2.79s
197:	learn: 11.6536293	total: 5.36s	remaining: 2.76s
198:	learn: 11.6065018	total: 5.38s	remaining: 2.73s
199:	learn: 11.5499607	total: 5.41s	remaining: 2.71s
200:	learn: 11.5040185	total: 5.44s	remaining: 2.68s
201:	learn: 11.4742990	total: 5.46s	remaining: 2.65s
202:	learn: 11.4464612	total: 5.49s	remaining: 2.62s
203:	learn: 11.3967352	total: 5.52s	remaining: 2.6s
204:	learn: 11.3773630	total: 5.56s	remaining: 2.58s
205:	learn: 11.3369897	total: 5.59s	remaining: 2.55s
206:	learn: 11.2785610	total: 5.62s	remaining: 2.52s
207:	learn: 11.2570903	total: 5.64s	remaining: 2.5s
208:	learn: 11.1959469	total: 5.67s	remaining: 2.47s
209:	learn: 11.1698664	total: 5.7s	remaining: 2.44s
210:	learn: 11.1452100	total: 5.73s	remaining: 2.42s
211:	learn: 11.1074115	total: 5.76s	remaining: 2.39s
212:	learn: 11.0813756	total: 5.79s	remaining: 2.37s
213:	learn: 11.0519307	total: 5.82s	remaining: 2.34s
214:	learn: 11.0155685	total: 5.85s	remaining: 2.31s
215:	learn: 10.9871406	total: 5.87s	remaining: 2.28s
216:	learn: 10.9693068	total: 5.9s	remaining: 2.26s
217:	learn: 10.9576767	total: 5.93s	remaining: 2.23s
218:	learn: 10.8594320	total: 5.97s	remaining: 2.21s
219:	learn: 10.8272954	total: 6s	remaining: 2.18s
220:	learn: 10.8038867	total: 6.03s	remaining: 2.15s
221:	learn: 10.7088853	total: 6.06s	remaining: 2.13s
222:	learn: 10.6887411	total: 6.08s	remaining: 2.1s
223:	learn: 10.6649574	total: 6.11s	remaining: 2.07s
224:	learn: 10.6194908	total: 6.14s	remaining: 2.05s
225:	learn: 10.5685522	total: 6.17s	remaining: 2.02s
226:	learn: 10.5537435	total: 6.2s	remaining: 1.99s
227:	learn: 10.5121708	total: 6.23s	remaining: 1.97s
228:	learn: 10.4691452	total: 6.25s	remaining: 1.94s
229:	learn: 10.4484099	total: 6.29s	remaining: 1.91s
230:	learn: 10.4377373	total: 6.32s	remaining: 1.89s
231:	learn: 10.4270601	total: 6.35s	remaining: 1.86s
232:	learn: 10.4051968	total: 6.38s	remaining: 1.83s
233:	learn: 10.3483300	total: 6.42s	remaining: 1.81s
234:	learn: 10.2865834	total: 6.45s	remaining: 1.78s
235:	learn: 10.2610314	total: 6.47s	remaining: 1.75s
236:	learn: 10.2388990	total: 6.5s	remaining: 1.73s
237:	learn: 10.1965393	total: 6.54s	remaining: 1.7s
238:	learn: 10.1800849	total: 6.57s	remaining: 1.68s
239:	learn: 10.1604400	total: 6.59s	remaining: 1.65s
240:	learn: 10.1302668	total: 6.63s	remaining: 1.62s
241:	learn: 10.1241338	total: 6.65s	remaining: 1.59s
242:	learn: 10.0835529	total: 6.68s	remaining: 1.57s
243:	learn: 10.0154507	total: 6.71s	remaining: 1.54s
244:	learn: 10.0024905	total: 6.74s	remaining: 1.51s
245:	learn: 9.9669119	total: 6.77s	remaining: 1.49s
246:	learn: 9.9325711	total: 6.8s	remaining: 1.46s
247:	learn: 9.8981230	total: 6.83s	remaining: 1.43s
248:	learn: 9.8660554	total: 6.86s	remaining: 1.41s
249:	learn: 9.8506587	total: 6.89s	remaining: 1.38s
250:	learn: 9.8080866	total: 6.92s	remaining: 1.35s
251:	learn: 9.7747070	total: 6.94s	remaining: 1.32s
252:	learn: 9.7589720	total: 6.97s	remaining: 1.29s
253:	learn: 9.7308058	total: 7s	remaining: 1.27s
254:	learn: 9.7157610	total: 7.03s	remaining: 1.24s
255:	learn: 9.6979675	total: 7.06s	remaining: 1.21s
256:	learn: 9.6657809	total: 7.09s	remaining: 1.19s
257:	learn: 9.6522187	total: 7.12s	remaining: 1.16s
258:	learn: 9.6375034	total: 7.15s	remaining: 1.13s
259:	learn: 9.6023653	total: 7.18s	remaining: 1.1s
260:	learn: 9.5760582	total: 7.2s	remaining: 1.08s
261:	learn: 9.5288913	total: 7.23s	remaining: 1.05s
262:	learn: 9.5151986	total: 7.27s	remaining: 1.02s
263:	learn: 9.4814503	total: 7.29s	remaining: 995ms
264:	learn: 9.4635791	total: 7.33s	remaining: 968ms
265:	learn: 9.4364856	total: 7.36s	remaining: 941ms
266:	learn: 9.4013439	total: 7.39s	remaining: 913ms
267:	learn: 9.3638018	total: 7.42s	remaining: 886ms
268:	learn: 9.3558171	total: 7.45s	remaining: 858ms
269:	learn: 9.3065751	total: 7.47s	remaining: 830ms
270:	learn: 9.2964146	total: 7.51s	remaining: 803ms
271:	learn: 9.2625670	total: 7.54s	remaining: 776ms
272:	learn: 9.2356760	total: 7.57s	remaining: 748ms
273:	learn: 9.2046550	total: 7.59s	remaining: 721ms
274:	learn: 9.1931591	total: 7.62s	remaining: 693ms
275:	learn: 9.1692863	total: 7.65s	remaining: 665ms
276:	learn: 9.1358490	total: 7.67s	remaining: 637ms
277:	learn: 9.1007511	total: 7.7s	remaining: 609ms
278:	learn: 9.0946236	total: 7.73s	remaining: 582ms
279:	learn: 9.0731587	total: 7.76s	remaining: 555ms
280:	learn: 9.0466446	total: 7.8s	remaining: 528ms
281:	learn: 9.0262027	total: 7.83s	remaining: 500ms
282:	learn: 8.9958148	total: 7.86s	remaining: 472ms
283:	learn: 8.9904119	total: 7.89s	remaining: 444ms
284:	learn: 8.9723234	total: 7.91s	remaining: 417ms
285:	learn: 8.9368256	total: 7.94s	remaining: 389ms
286:	learn: 8.8960967	total: 7.97s	remaining: 361ms
287:	learn: 8.8813638	total: 8.01s	remaining: 334ms
288:	learn: 8.8766445	total: 8.04s	remaining: 306ms
289:	learn: 8.8483604	total: 8.06s	remaining: 278ms
290:	learn: 8.8220559	total: 8.09s	remaining: 250ms
291:	learn: 8.7918301	total: 8.12s	remaining: 222ms
292:	learn: 8.7574504	total: 8.14s	remaining: 195ms
293:	learn: 8.7490725	total: 8.17s	remaining: 167ms
294:	learn: 8.7293377	total: 8.2s	remaining: 139ms
295:	learn: 8.7202847	total: 8.25s	remaining: 111ms
296:	learn: 8.6918465	total: 8.28s	remaining: 83.6ms
297:	learn: 8.6665828	total: 8.3s	remaining: 55.7ms
298:	learn: 8.6541683	total: 8.33s	remaining: 27.9ms
299:	learn: 8.6494740	total: 8.36s	remaining: 0us
0:	learn: 46.8012202	total: 28.8ms	remaining: 8.62s
1:	learn: 46.0273912	total: 56.9ms	remaining: 8.48s
2:	learn: 45.3733493	total: 83.7ms	remaining: 8.29s
3:	learn: 44.7109449	total: 111ms	remaining: 8.21s
4:	learn: 43.9430491	total: 146ms	remaining: 8.61s
5:	learn: 43.2536304	total: 173ms	remaining: 8.47s
6:	learn: 42.5901366	total: 199ms	remaining: 8.34s
7:	learn: 42.0362841	total: 226ms	remaining: 8.24s
8:	learn: 41.4655769	total: 253ms	remaining: 8.19s
9:	learn: 40.7617374	total: 281ms	remaining: 8.15s
10:	learn: 40.1467911	total: 316ms	remaining: 8.3s
11:	learn: 39.5322002	total: 344ms	remaining: 8.25s
12:	learn: 39.2369496	total: 379ms	remaining: 8.37s
13:	learn: 38.8730340	total: 408ms	remaining: 8.33s
14:	learn: 38.4661592	total: 435ms	remaining: 8.26s
15:	learn: 37.8483750	total: 438ms	remaining: 7.77s
16:	learn: 37.2598064	total: 464ms	remaining: 7.72s
17:	learn: 36.6878531	total: 492ms	remaining: 7.71s
18:	learn: 36.1765878	total: 526ms	remaining: 7.77s
19:	learn: 35.6111928	total: 553ms	remaining: 7.75s
20:	learn: 35.2113326	total: 580ms	remaining: 7.71s
21:	learn: 34.5754750	total: 615ms	remaining: 7.77s
22:	learn: 34.0844300	total: 642ms	remaining: 7.73s
23:	learn: 33.6434482	total: 668ms	remaining: 7.68s
24:	learn: 33.3578327	total: 696ms	remaining: 7.65s
25:	learn: 32.9883035	total: 724ms	remaining: 7.63s
26:	learn: 32.6325583	total: 761ms	remaining: 7.69s
27:	learn: 32.1886629	total: 788ms	remaining: 7.65s
28:	learn: 31.8587417	total: 816ms	remaining: 7.62s
29:	learn: 31.4999044	total: 845ms	remaining: 7.6s
30:	learn: 31.1903935	total: 870ms	remaining: 7.55s
31:	learn: 30.8877054	total: 898ms	remaining: 7.52s
32:	learn: 30.6421813	total: 923ms	remaining: 7.47s
33:	learn: 30.3687742	total: 955ms	remaining: 7.47s
34:	learn: 30.0972944	total: 981ms	remaining: 7.43s
35:	learn: 29.6026977	total: 1s	remaining: 7.37s
36:	learn: 29.3412855	total: 1.03s	remaining: 7.33s
37:	learn: 29.0138869	total: 1.06s	remaining: 7.28s
38:	learn: 28.6424952	total: 1.08s	remaining: 7.23s
39:	learn: 28.4408572	total: 1.1s	remaining: 7.18s
40:	learn: 28.0554435	total: 1.13s	remaining: 7.15s
41:	learn: 27.8389274	total: 1.16s	remaining: 7.12s
42:	learn: 27.5339353	total: 1.19s	remaining: 7.13s
43:	learn: 27.3640594	total: 1.22s	remaining: 7.09s
44:	learn: 27.1330981	total: 1.25s	remaining: 7.06s
45:	learn: 26.9507132	total: 1.27s	remaining: 7.02s
46:	learn: 26.7285619	total: 1.3s	remaining: 6.98s
47:	learn: 26.3518482	total: 1.32s	remaining: 6.94s
48:	learn: 26.0543584	total: 1.35s	remaining: 6.91s
49:	learn: 25.8251945	total: 1.38s	remaining: 6.91s
50:	learn: 25.5436752	total: 1.41s	remaining: 6.88s
51:	learn: 25.3250332	total: 1.43s	remaining: 6.83s
52:	learn: 25.1688504	total: 1.46s	remaining: 6.79s
53:	learn: 24.9813407	total: 1.48s	remaining: 6.76s
54:	learn: 24.7384847	total: 1.51s	remaining: 6.73s
55:	learn: 24.5163023	total: 1.53s	remaining: 6.69s
56:	learn: 24.2729235	total: 1.56s	remaining: 6.65s
57:	learn: 24.1318061	total: 1.58s	remaining: 6.61s
58:	learn: 23.9701754	total: 1.62s	remaining: 6.61s
59:	learn: 23.8112940	total: 1.65s	remaining: 6.58s
60:	learn: 23.6723877	total: 1.67s	remaining: 6.55s
61:	learn: 23.5289336	total: 1.7s	remaining: 6.52s
62:	learn: 23.4106679	total: 1.72s	remaining: 6.49s
63:	learn: 23.2082280	total: 1.75s	remaining: 6.45s
64:	learn: 23.0959607	total: 1.77s	remaining: 6.42s
65:	learn: 22.9890902	total: 1.8s	remaining: 6.38s
66:	learn: 22.8516666	total: 1.83s	remaining: 6.35s
67:	learn: 22.7282575	total: 1.85s	remaining: 6.33s
68:	learn: 22.5991392	total: 1.88s	remaining: 6.3s
69:	learn: 22.3825348	total: 1.91s	remaining: 6.27s
70:	learn: 22.2284455	total: 1.93s	remaining: 6.24s
71:	learn: 22.0431735	total: 1.96s	remaining: 6.2s
72:	learn: 21.8930406	total: 1.98s	remaining: 6.17s
73:	learn: 21.7459390	total: 2.01s	remaining: 6.13s
74:	learn: 21.6277633	total: 2.04s	remaining: 6.12s
75:	learn: 21.4144047	total: 2.07s	remaining: 6.1s
76:	learn: 21.2747440	total: 2.1s	remaining: 6.07s
77:	learn: 21.1153657	total: 2.12s	remaining: 6.04s
78:	learn: 21.0445825	total: 2.15s	remaining: 6.01s
79:	learn: 20.9348935	total: 2.17s	remaining: 5.98s
80:	learn: 20.7685253	total: 2.2s	remaining: 5.94s
81:	learn: 20.6539889	total: 2.22s	remaining: 5.91s
82:	learn: 20.4538530	total: 2.26s	remaining: 5.91s
83:	learn: 20.3461251	total: 2.29s	remaining: 5.88s
84:	learn: 20.1992221	total: 2.31s	remaining: 5.84s
85:	learn: 20.0842190	total: 2.33s	remaining: 5.81s
86:	learn: 19.9903250	total: 2.36s	remaining: 5.78s
87:	learn: 19.9084171	total: 2.39s	remaining: 5.75s
88:	learn: 19.7929727	total: 2.41s	remaining: 5.71s
89:	learn: 19.7205230	total: 2.44s	remaining: 5.68s
90:	learn: 19.6075486	total: 2.47s	remaining: 5.67s
91:	learn: 19.5309964	total: 2.5s	remaining: 5.65s
92:	learn: 19.4363684	total: 2.52s	remaining: 5.62s
93:	learn: 19.3378127	total: 2.55s	remaining: 5.59s
94:	learn: 19.2292896	total: 2.58s	remaining: 5.56s
95:	learn: 19.1011370	total: 2.6s	remaining: 5.53s
96:	learn: 18.9974491	total: 2.63s	remaining: 5.5s
97:	learn: 18.8636531	total: 2.65s	remaining: 5.47s
98:	learn: 18.7739910	total: 2.69s	remaining: 5.46s
99:	learn: 18.6948867	total: 2.71s	remaining: 5.43s
100:	learn: 18.5747433	total: 2.74s	remaining: 5.4s
101:	learn: 18.5307499	total: 2.76s	remaining: 5.37s
102:	learn: 18.4248127	total: 2.79s	remaining: 5.33s
103:	learn: 18.3301727	total: 2.81s	remaining: 5.3s
104:	learn: 18.2579998	total: 2.84s	remaining: 5.27s
105:	learn: 18.1614231	total: 2.86s	remaining: 5.24s
106:	learn: 18.0748134	total: 2.89s	remaining: 5.21s
107:	learn: 17.9862898	total: 2.92s	remaining: 5.2s
108:	learn: 17.9368507	total: 2.95s	remaining: 5.17s
109:	learn: 17.8058561	total: 2.97s	remaining: 5.13s
110:	learn: 17.7371383	total: 3s	remaining: 5.1s
111:	learn: 17.6303538	total: 3.02s	remaining: 5.07s
112:	learn: 17.5449989	total: 3.04s	remaining: 5.04s
113:	learn: 17.4776008	total: 3.07s	remaining: 5.01s
114:	learn: 17.3648029	total: 3.1s	remaining: 4.98s
115:	learn: 17.2618916	total: 3.13s	remaining: 4.96s
116:	learn: 17.2111539	total: 3.15s	remaining: 4.92s
117:	learn: 17.1018870	total: 3.17s	remaining: 4.89s
118:	learn: 17.0024931	total: 3.2s	remaining: 4.86s
119:	learn: 16.9743860	total: 3.22s	remaining: 4.83s
120:	learn: 16.9130305	total: 3.25s	remaining: 4.8s
121:	learn: 16.8016712	total: 3.27s	remaining: 4.77s
122:	learn: 16.7261518	total: 3.29s	remaining: 4.74s
123:	learn: 16.6593504	total: 3.33s	remaining: 4.73s
124:	learn: 16.5732663	total: 3.36s	remaining: 4.7s
125:	learn: 16.4947922	total: 3.39s	remaining: 4.68s
126:	learn: 16.3991688	total: 3.41s	remaining: 4.65s
127:	learn: 16.3086895	total: 3.44s	remaining: 4.62s
128:	learn: 16.2101210	total: 3.46s	remaining: 4.59s
129:	learn: 16.1541963	total: 3.49s	remaining: 4.56s
130:	learn: 16.0790764	total: 3.51s	remaining: 4.53s
131:	learn: 16.0139723	total: 3.54s	remaining: 4.51s
132:	learn: 15.8906448	total: 3.57s	remaining: 4.48s
133:	learn: 15.8064421	total: 3.59s	remaining: 4.45s
134:	learn: 15.7265305	total: 3.62s	remaining: 4.42s
135:	learn: 15.6621677	total: 3.64s	remaining: 4.39s
136:	learn: 15.5922471	total: 3.67s	remaining: 4.36s
137:	learn: 15.5550517	total: 3.69s	remaining: 4.33s
138:	learn: 15.5278059	total: 3.71s	remaining: 4.3s
139:	learn: 15.4494043	total: 3.74s	remaining: 4.27s
140:	learn: 15.3765788	total: 3.77s	remaining: 4.26s
141:	learn: 15.3158598	total: 3.8s	remaining: 4.23s
142:	learn: 15.2121980	total: 3.83s	remaining: 4.2s
143:	learn: 15.0893974	total: 3.85s	remaining: 4.17s
144:	learn: 15.0074795	total: 3.88s	remaining: 4.14s
145:	learn: 14.9489574	total: 3.9s	remaining: 4.12s
146:	learn: 14.9258844	total: 3.92s	remaining: 4.08s
147:	learn: 14.8471123	total: 3.95s	remaining: 4.06s
148:	learn: 14.7745818	total: 3.98s	remaining: 4.03s
149:	learn: 14.6905246	total: 4s	remaining: 4s
150:	learn: 14.5873644	total: 4.03s	remaining: 3.98s
151:	learn: 14.5337902	total: 4.05s	remaining: 3.95s
152:	learn: 14.4749040	total: 4.08s	remaining: 3.92s
153:	learn: 14.3890824	total: 4.1s	remaining: 3.89s
154:	learn: 14.3259009	total: 4.13s	remaining: 3.86s
155:	learn: 14.2113192	total: 4.15s	remaining: 3.83s
156:	learn: 14.1718909	total: 4.17s	remaining: 3.8s
157:	learn: 14.1110356	total: 4.2s	remaining: 3.77s
158:	learn: 14.0362591	total: 4.23s	remaining: 3.75s
159:	learn: 13.9188238	total: 4.26s	remaining: 3.73s
160:	learn: 13.7740452	total: 4.29s	remaining: 3.7s
161:	learn: 13.7228642	total: 4.31s	remaining: 3.67s
162:	learn: 13.6648536	total: 4.33s	remaining: 3.64s
163:	learn: 13.5724722	total: 4.36s	remaining: 3.61s
164:	learn: 13.5141405	total: 4.38s	remaining: 3.58s
165:	learn: 13.4267305	total: 4.41s	remaining: 3.56s
166:	learn: 13.3370179	total: 4.45s	remaining: 3.54s
167:	learn: 13.2503127	total: 4.48s	remaining: 3.52s
168:	learn: 13.1743816	total: 4.5s	remaining: 3.49s
169:	learn: 13.1087726	total: 4.53s	remaining: 3.46s
170:	learn: 13.0426739	total: 4.56s	remaining: 3.44s
171:	learn: 12.9968745	total: 4.58s	remaining: 3.41s
172:	learn: 12.9301422	total: 4.61s	remaining: 3.38s
173:	learn: 12.9104864	total: 4.64s	remaining: 3.36s
174:	learn: 12.8199271	total: 4.68s	remaining: 3.34s
175:	learn: 12.7796485	total: 4.71s	remaining: 3.32s
176:	learn: 12.6883779	total: 4.74s	remaining: 3.29s
177:	learn: 12.5869619	total: 4.76s	remaining: 3.27s
178:	learn: 12.5397815	total: 4.79s	remaining: 3.24s
179:	learn: 12.4692676	total: 4.82s	remaining: 3.21s
180:	learn: 12.4433237	total: 4.84s	remaining: 3.19s
181:	learn: 12.3985342	total: 4.87s	remaining: 3.16s
182:	learn: 12.3635932	total: 4.91s	remaining: 3.14s
183:	learn: 12.2512719	total: 4.94s	remaining: 3.12s
184:	learn: 12.1558647	total: 4.97s	remaining: 3.09s
185:	learn: 12.1369112	total: 5s	remaining: 3.06s
186:	learn: 12.0798700	total: 5.02s	remaining: 3.03s
187:	learn: 12.0010668	total: 5.05s	remaining: 3.01s
188:	learn: 11.9442666	total: 5.08s	remaining: 2.98s
189:	learn: 11.8628888	total: 5.12s	remaining: 2.96s
190:	learn: 11.7616769	total: 5.14s	remaining: 2.93s
191:	learn: 11.6699926	total: 5.18s	remaining: 2.91s
192:	learn: 11.6392816	total: 5.2s	remaining: 2.88s
193:	learn: 11.5955244	total: 5.23s	remaining: 2.86s
194:	learn: 11.5772160	total: 5.26s	remaining: 2.83s
195:	learn: 11.5465581	total: 5.29s	remaining: 2.81s
196:	learn: 11.4564641	total: 5.32s	remaining: 2.78s
197:	learn: 11.3978031	total: 5.34s	remaining: 2.75s
198:	learn: 11.3460158	total: 5.37s	remaining: 2.73s
199:	learn: 11.2627720	total: 5.41s	remaining: 2.7s
200:	learn: 11.2162738	total: 5.43s	remaining: 2.68s
201:	learn: 11.1905894	total: 5.46s	remaining: 2.65s
202:	learn: 11.1639946	total: 5.49s	remaining: 2.62s
203:	learn: 11.0885906	total: 5.53s	remaining: 2.6s
204:	learn: 11.0284516	total: 5.56s	remaining: 2.58s
205:	learn: 10.9731416	total: 5.58s	remaining: 2.55s
206:	learn: 10.9378121	total: 5.61s	remaining: 2.52s
207:	learn: 10.8935640	total: 5.64s	remaining: 2.49s
208:	learn: 10.8572901	total: 5.67s	remaining: 2.47s
209:	learn: 10.8037961	total: 5.7s	remaining: 2.44s
210:	learn: 10.7458107	total: 5.73s	remaining: 2.42s
211:	learn: 10.7082447	total: 5.76s	remaining: 2.39s
212:	learn: 10.6599173	total: 5.79s	remaining: 2.36s
213:	learn: 10.6028419	total: 5.81s	remaining: 2.34s
214:	learn: 10.5627192	total: 5.84s	remaining: 2.31s
215:	learn: 10.5213774	total: 5.87s	remaining: 2.28s
216:	learn: 10.4732429	total: 5.9s	remaining: 2.26s
217:	learn: 10.4188551	total: 5.93s	remaining: 2.23s
218:	learn: 10.3740622	total: 5.96s	remaining: 2.2s
219:	learn: 10.3399349	total: 5.99s	remaining: 2.18s
220:	learn: 10.2824635	total: 6.02s	remaining: 2.15s
221:	learn: 10.2458277	total: 6.05s	remaining: 2.13s
222:	learn: 10.2341252	total: 6.08s	remaining: 2.1s
223:	learn: 10.1392287	total: 6.11s	remaining: 2.07s
224:	learn: 10.1088124	total: 6.13s	remaining: 2.04s
225:	learn: 10.0471375	total: 6.18s	remaining: 2.02s
226:	learn: 9.9852333	total: 6.21s	remaining: 2s
227:	learn: 9.9292294	total: 6.23s	remaining: 1.97s
228:	learn: 9.9015453	total: 6.26s	remaining: 1.94s
229:	learn: 9.8905067	total: 6.29s	remaining: 1.91s
230:	learn: 9.8507503	total: 6.31s	remaining: 1.89s
231:	learn: 9.7964411	total: 6.34s	remaining: 1.86s
232:	learn: 9.7540779	total: 6.36s	remaining: 1.83s
233:	learn: 9.7051776	total: 6.39s	remaining: 1.8s
234:	learn: 9.6539147	total: 6.43s	remaining: 1.78s
235:	learn: 9.6073112	total: 6.45s	remaining: 1.75s
236:	learn: 9.5975483	total: 6.48s	remaining: 1.72s
237:	learn: 9.5489561	total: 6.5s	remaining: 1.69s
238:	learn: 9.5160122	total: 6.53s	remaining: 1.67s
239:	learn: 9.4620416	total: 6.55s	remaining: 1.64s
240:	learn: 9.4463510	total: 6.58s	remaining: 1.61s
241:	learn: 9.4389200	total: 6.61s	remaining: 1.58s
242:	learn: 9.4078400	total: 6.64s	remaining: 1.56s
243:	learn: 9.3866265	total: 6.66s	remaining: 1.53s
244:	learn: 9.3473501	total: 6.69s	remaining: 1.5s
245:	learn: 9.2861016	total: 6.71s	remaining: 1.47s
246:	learn: 9.2734740	total: 6.74s	remaining: 1.45s
247:	learn: 9.2343522	total: 6.76s	remaining: 1.42s
248:	learn: 9.2223405	total: 6.79s	remaining: 1.39s
249:	learn: 9.2140074	total: 6.82s	remaining: 1.36s
250:	learn: 9.2046313	total: 6.85s	remaining: 1.34s
251:	learn: 9.1705343	total: 6.88s	remaining: 1.31s
252:	learn: 9.1635400	total: 6.9s	remaining: 1.28s
253:	learn: 9.1201103	total: 6.93s	remaining: 1.25s
254:	learn: 9.0874222	total: 6.95s	remaining: 1.23s
255:	learn: 9.0546404	total: 6.98s	remaining: 1.2s
256:	learn: 9.0294210	total: 7.01s	remaining: 1.17s
257:	learn: 8.9918549	total: 7.04s	remaining: 1.15s
258:	learn: 8.9860821	total: 7.06s	remaining: 1.12s
259:	learn: 8.9445721	total: 7.09s	remaining: 1.09s
260:	learn: 8.9204013	total: 7.12s	remaining: 1.06s
261:	learn: 8.8802796	total: 7.14s	remaining: 1.03s
262:	learn: 8.8319848	total: 7.17s	remaining: 1.01s
263:	learn: 8.8040786	total: 7.19s	remaining: 981ms
264:	learn: 8.7674300	total: 7.22s	remaining: 953ms
265:	learn: 8.7486932	total: 7.25s	remaining: 927ms
266:	learn: 8.7223059	total: 7.28s	remaining: 900ms
267:	learn: 8.7108992	total: 7.31s	remaining: 872ms
268:	learn: 8.7026068	total: 7.33s	remaining: 845ms
269:	learn: 8.6836280	total: 7.36s	remaining: 818ms
270:	learn: 8.6467938	total: 7.38s	remaining: 790ms
271:	learn: 8.6111555	total: 7.41s	remaining: 763ms
272:	learn: 8.5824973	total: 7.44s	remaining: 736ms
273:	learn: 8.5682745	total: 7.47s	remaining: 709ms
274:	learn: 8.5416779	total: 7.5s	remaining: 681ms
275:	learn: 8.5066950	total: 7.52s	remaining: 654ms
276:	learn: 8.4970713	total: 7.54s	remaining: 627ms
277:	learn: 8.4596116	total: 7.57s	remaining: 599ms
278:	learn: 8.4475857	total: 7.59s	remaining: 572ms
279:	learn: 8.4267482	total: 7.62s	remaining: 544ms
280:	learn: 8.4095246	total: 7.65s	remaining: 517ms
281:	learn: 8.3674941	total: 7.67s	remaining: 490ms
282:	learn: 8.3151248	total: 7.71s	remaining: 463ms
283:	learn: 8.2823195	total: 7.74s	remaining: 436ms
284:	learn: 8.2593854	total: 7.76s	remaining: 408ms
285:	learn: 8.2331325	total: 7.79s	remaining: 381ms
286:	learn: 8.1912221	total: 7.81s	remaining: 354ms
287:	learn: 8.1688810	total: 7.84s	remaining: 327ms
288:	learn: 8.1497193	total: 7.87s	remaining: 299ms
289:	learn: 8.1293205	total: 7.89s	remaining: 272ms
290:	learn: 8.1107539	total: 7.92s	remaining: 245ms
291:	learn: 8.0849956	total: 7.95s	remaining: 218ms
292:	learn: 8.0440544	total: 7.97s	remaining: 190ms
293:	learn: 8.0183325	total: 8s	remaining: 163ms
294:	learn: 7.9783905	total: 8.02s	remaining: 136ms
295:	learn: 7.9644989	total: 8.05s	remaining: 109ms
296:	learn: 7.9392598	total: 8.07s	remaining: 81.5ms
297:	learn: 7.9167538	total: 8.1s	remaining: 54.4ms
298:	learn: 7.8751558	total: 8.13s	remaining: 27.2ms
299:	learn: 7.8630471	total: 8.16s	remaining: 0us
0:	learn: 27.6973511	total: 24.2ms	remaining: 7.24s
1:	learn: 27.2958182	total: 47.3ms	remaining: 7.05s
2:	learn: 26.8950527	total: 72.3ms	remaining: 7.16s
3:	learn: 26.4489170	total: 103ms	remaining: 7.64s
4:	learn: 26.1800349	total: 128ms	remaining: 7.58s
5:	learn: 25.7917141	total: 153ms	remaining: 7.49s
6:	learn: 25.5263958	total: 177ms	remaining: 7.41s
7:	learn: 25.2345461	total: 201ms	remaining: 7.34s
8:	learn: 24.8337785	total: 225ms	remaining: 7.27s
9:	learn: 24.5131550	total: 248ms	remaining: 7.2s
10:	learn: 24.2257656	total: 273ms	remaining: 7.16s
11:	learn: 23.9792781	total: 298ms	remaining: 7.15s
12:	learn: 23.6676478	total: 333ms	remaining: 7.35s
13:	learn: 23.4355824	total: 358ms	remaining: 7.32s
14:	learn: 23.2062795	total: 383ms	remaining: 7.28s
15:	learn: 22.9749556	total: 408ms	remaining: 7.25s
16:	learn: 22.7388336	total: 433ms	remaining: 7.21s
17:	learn: 22.5065141	total: 457ms	remaining: 7.16s
18:	learn: 22.2263730	total: 481ms	remaining: 7.12s
19:	learn: 21.9969137	total: 504ms	remaining: 7.06s
20:	learn: 21.7654035	total: 529ms	remaining: 7.03s
21:	learn: 21.5672959	total: 558ms	remaining: 7.05s
22:	learn: 21.3699131	total: 584ms	remaining: 7.04s
23:	learn: 21.1320132	total: 608ms	remaining: 7s
24:	learn: 20.8360475	total: 632ms	remaining: 6.95s
25:	learn: 20.6216430	total: 656ms	remaining: 6.92s
26:	learn: 20.4442023	total: 681ms	remaining: 6.88s
27:	learn: 20.2452126	total: 705ms	remaining: 6.85s
28:	learn: 19.9551543	total: 730ms	remaining: 6.82s
29:	learn: 19.7874909	total: 763ms	remaining: 6.87s
30:	learn: 19.6541244	total: 790ms	remaining: 6.86s
31:	learn: 19.4769528	total: 814ms	remaining: 6.82s
32:	learn: 19.2916254	total: 839ms	remaining: 6.79s
33:	learn: 19.1524478	total: 864ms	remaining: 6.76s
34:	learn: 19.0152836	total: 888ms	remaining: 6.72s
35:	learn: 18.7761219	total: 912ms	remaining: 6.69s
36:	learn: 18.6266045	total: 937ms	remaining: 6.66s
37:	learn: 18.4382424	total: 963ms	remaining: 6.64s
38:	learn: 18.3276487	total: 994ms	remaining: 6.65s
39:	learn: 18.1728115	total: 1.02s	remaining: 6.63s
40:	learn: 18.0412668	total: 1.04s	remaining: 6.59s
41:	learn: 17.8927154	total: 1.07s	remaining: 6.56s
42:	learn: 17.6796203	total: 1.09s	remaining: 6.52s
43:	learn: 17.5396182	total: 1.11s	remaining: 6.49s
44:	learn: 17.3897332	total: 1.14s	remaining: 6.46s
45:	learn: 17.2677742	total: 1.16s	remaining: 6.42s
46:	learn: 17.1204742	total: 1.19s	remaining: 6.4s
47:	learn: 16.9890701	total: 1.22s	remaining: 6.42s
48:	learn: 16.8827846	total: 1.25s	remaining: 6.39s
49:	learn: 16.7657376	total: 1.27s	remaining: 6.36s
50:	learn: 16.6624511	total: 1.3s	remaining: 6.33s
51:	learn: 16.5486117	total: 1.32s	remaining: 6.31s
52:	learn: 16.4000940	total: 1.35s	remaining: 6.28s
53:	learn: 16.3029344	total: 1.37s	remaining: 6.25s
54:	learn: 16.2035733	total: 1.4s	remaining: 6.22s
55:	learn: 16.0437589	total: 1.42s	remaining: 6.19s
56:	learn: 15.9522262	total: 1.45s	remaining: 6.18s
57:	learn: 15.8358267	total: 1.48s	remaining: 6.16s
58:	learn: 15.7214027	total: 1.5s	remaining: 6.13s
59:	learn: 15.5996313	total: 1.52s	remaining: 6.09s
60:	learn: 15.4720290	total: 1.55s	remaining: 6.07s
61:	learn: 15.3836272	total: 1.58s	remaining: 6.07s
62:	learn: 15.2874597	total: 1.61s	remaining: 6.05s
63:	learn: 15.1976492	total: 1.64s	remaining: 6.03s
64:	learn: 15.0909229	total: 1.67s	remaining: 6.05s
65:	learn: 15.0152553	total: 1.7s	remaining: 6.04s
66:	learn: 14.9383045	total: 1.73s	remaining: 6.02s
67:	learn: 14.8359454	total: 1.76s	remaining: 6s
68:	learn: 14.7292481	total: 1.78s	remaining: 5.98s
69:	learn: 14.6260226	total: 1.81s	remaining: 5.96s
70:	learn: 14.4936289	total: 1.84s	remaining: 5.93s
71:	learn: 14.4124866	total: 1.87s	remaining: 5.92s
72:	learn: 14.3506411	total: 1.9s	remaining: 5.9s
73:	learn: 14.3003606	total: 1.92s	remaining: 5.87s
74:	learn: 14.2329960	total: 1.95s	remaining: 5.84s
75:	learn: 14.1623742	total: 1.97s	remaining: 5.82s
76:	learn: 14.0963112	total: 2s	remaining: 5.79s
77:	learn: 14.0129265	total: 2.02s	remaining: 5.76s
78:	learn: 13.9069448	total: 2.05s	remaining: 5.73s
79:	learn: 13.8583745	total: 2.09s	remaining: 5.74s
80:	learn: 13.8036276	total: 2.11s	remaining: 5.71s
81:	learn: 13.7294653	total: 2.14s	remaining: 5.69s
82:	learn: 13.6421548	total: 2.16s	remaining: 5.66s
83:	learn: 13.5544027	total: 2.19s	remaining: 5.63s
84:	learn: 13.4962426	total: 2.21s	remaining: 5.6s
85:	learn: 13.4236501	total: 2.24s	remaining: 5.57s
86:	learn: 13.3553655	total: 2.26s	remaining: 5.54s
87:	learn: 13.2833189	total: 2.3s	remaining: 5.54s
88:	learn: 13.2153279	total: 2.32s	remaining: 5.51s
89:	learn: 13.1595818	total: 2.35s	remaining: 5.48s
90:	learn: 13.0790280	total: 2.38s	remaining: 5.46s
91:	learn: 13.0059101	total: 2.4s	remaining: 5.43s
92:	learn: 12.9563936	total: 2.43s	remaining: 5.4s
93:	learn: 12.8795347	total: 2.45s	remaining: 5.37s
94:	learn: 12.8232219	total: 2.48s	remaining: 5.35s
95:	learn: 12.7614070	total: 2.5s	remaining: 5.32s
96:	learn: 12.7102421	total: 2.54s	remaining: 5.32s
97:	learn: 12.6436653	total: 2.57s	remaining: 5.29s
98:	learn: 12.5913696	total: 2.59s	remaining: 5.26s
99:	learn: 12.5367726	total: 2.62s	remaining: 5.23s
100:	learn: 12.4852419	total: 2.64s	remaining: 5.21s
101:	learn: 12.4385597	total: 2.67s	remaining: 5.18s
102:	learn: 12.3736476	total: 2.69s	remaining: 5.15s
103:	learn: 12.3247110	total: 2.72s	remaining: 5.13s
104:	learn: 12.2766720	total: 2.75s	remaining: 5.11s
105:	learn: 12.1952428	total: 2.78s	remaining: 5.08s
106:	learn: 12.1331617	total: 2.8s	remaining: 5.05s
107:	learn: 12.0512166	total: 2.83s	remaining: 5.03s
108:	learn: 11.9992209	total: 2.85s	remaining: 5s
109:	learn: 11.9475776	total: 2.88s	remaining: 4.97s
110:	learn: 11.9014821	total: 2.9s	remaining: 4.94s
111:	learn: 11.8707288	total: 2.93s	remaining: 4.92s
112:	learn: 11.8094965	total: 2.96s	remaining: 4.9s
113:	learn: 11.7463043	total: 2.99s	remaining: 4.87s
114:	learn: 11.7007710	total: 3.01s	remaining: 4.85s
115:	learn: 11.6615587	total: 3.04s	remaining: 4.82s
116:	learn: 11.6237977	total: 3.07s	remaining: 4.79s
117:	learn: 11.5616902	total: 3.09s	remaining: 4.77s
118:	learn: 11.4975486	total: 3.12s	remaining: 4.74s
119:	learn: 11.4545682	total: 3.14s	remaining: 4.71s
120:	learn: 11.4025940	total: 3.17s	remaining: 4.69s
121:	learn: 11.3457331	total: 3.2s	remaining: 4.67s
122:	learn: 11.3052810	total: 3.23s	remaining: 4.64s
123:	learn: 11.2420518	total: 3.25s	remaining: 4.61s
124:	learn: 11.1980267	total: 3.27s	remaining: 4.58s
125:	learn: 11.1471837	total: 3.3s	remaining: 4.56s
126:	learn: 11.0933514	total: 3.33s	remaining: 4.53s
127:	learn: 11.0387232	total: 3.35s	remaining: 4.5s
128:	learn: 10.9882800	total: 3.38s	remaining: 4.48s
129:	learn: 10.9217831	total: 3.41s	remaining: 4.46s
130:	learn: 10.8638073	total: 3.44s	remaining: 4.43s
131:	learn: 10.8405452	total: 3.46s	remaining: 4.41s
132:	learn: 10.7843152	total: 3.49s	remaining: 4.38s
133:	learn: 10.7215416	total: 3.52s	remaining: 4.35s
134:	learn: 10.6848770	total: 3.54s	remaining: 4.33s
135:	learn: 10.6386232	total: 3.56s	remaining: 4.3s
136:	learn: 10.5833324	total: 3.59s	remaining: 4.27s
137:	learn: 10.5552164	total: 3.62s	remaining: 4.25s
138:	learn: 10.5095592	total: 3.65s	remaining: 4.22s
139:	learn: 10.4652541	total: 3.67s	remaining: 4.2s
140:	learn: 10.4181327	total: 3.7s	remaining: 4.17s
141:	learn: 10.3570489	total: 3.72s	remaining: 4.14s
142:	learn: 10.3155806	total: 3.75s	remaining: 4.11s
143:	learn: 10.2935116	total: 3.77s	remaining: 4.09s
144:	learn: 10.2490396	total: 3.8s	remaining: 4.06s
145:	learn: 10.2175010	total: 3.83s	remaining: 4.04s
146:	learn: 10.1861611	total: 3.85s	remaining: 4.01s
147:	learn: 10.1464010	total: 3.88s	remaining: 3.98s
148:	learn: 10.1109588	total: 3.9s	remaining: 3.96s
149:	learn: 10.0820993	total: 3.93s	remaining: 3.93s
150:	learn: 10.0459417	total: 3.96s	remaining: 3.91s
151:	learn: 10.0150499	total: 3.98s	remaining: 3.88s
152:	learn: 9.9616104	total: 4.01s	remaining: 3.85s
153:	learn: 9.9370092	total: 4.04s	remaining: 3.83s
154:	learn: 9.8880669	total: 4.07s	remaining: 3.81s
155:	learn: 9.8035082	total: 4.1s	remaining: 3.78s
156:	learn: 9.7562049	total: 4.12s	remaining: 3.75s
157:	learn: 9.7188558	total: 4.15s	remaining: 3.73s
158:	learn: 9.6455036	total: 4.17s	remaining: 3.7s
159:	learn: 9.6138052	total: 4.2s	remaining: 3.67s
160:	learn: 9.5876598	total: 4.22s	remaining: 3.65s
161:	learn: 9.5617205	total: 4.25s	remaining: 3.62s
162:	learn: 9.5136300	total: 4.28s	remaining: 3.59s
163:	learn: 9.4854261	total: 4.31s	remaining: 3.57s
164:	learn: 9.4413089	total: 4.33s	remaining: 3.54s
165:	learn: 9.4301555	total: 4.36s	remaining: 3.52s
166:	learn: 9.3696661	total: 4.38s	remaining: 3.49s
167:	learn: 9.3197847	total: 4.41s	remaining: 3.46s
168:	learn: 9.2932309	total: 4.43s	remaining: 3.43s
169:	learn: 9.2622589	total: 4.46s	remaining: 3.41s
170:	learn: 9.2248534	total: 4.48s	remaining: 3.38s
171:	learn: 9.2022003	total: 4.51s	remaining: 3.36s
172:	learn: 9.1580241	total: 4.54s	remaining: 3.33s
173:	learn: 9.1260167	total: 4.56s	remaining: 3.3s
174:	learn: 9.0878209	total: 4.59s	remaining: 3.28s
175:	learn: 9.0321761	total: 4.61s	remaining: 3.25s
176:	learn: 9.0083249	total: 4.63s	remaining: 3.22s
177:	learn: 8.9787673	total: 4.66s	remaining: 3.19s
178:	learn: 8.9601410	total: 4.68s	remaining: 3.17s
179:	learn: 8.9127704	total: 4.72s	remaining: 3.15s
180:	learn: 8.8972409	total: 4.75s	remaining: 3.12s
181:	learn: 8.8794861	total: 4.77s	remaining: 3.09s
182:	learn: 8.8500542	total: 4.79s	remaining: 3.07s
183:	learn: 8.8141901	total: 4.82s	remaining: 3.04s
184:	learn: 8.7581473	total: 4.84s	remaining: 3.01s
185:	learn: 8.7253122	total: 4.87s	remaining: 2.98s
186:	learn: 8.6834052	total: 4.89s	remaining: 2.96s
187:	learn: 8.6566031	total: 4.93s	remaining: 2.93s
188:	learn: 8.6185765	total: 4.95s	remaining: 2.91s
189:	learn: 8.5835114	total: 4.97s	remaining: 2.88s
190:	learn: 8.5300510	total: 5s	remaining: 2.85s
191:	learn: 8.5135771	total: 5.02s	remaining: 2.83s
192:	learn: 8.4829013	total: 5.05s	remaining: 2.8s
193:	learn: 8.4533553	total: 5.07s	remaining: 2.77s
194:	learn: 8.4023227	total: 5.09s	remaining: 2.74s
195:	learn: 8.3643349	total: 5.12s	remaining: 2.72s
196:	learn: 8.3359260	total: 5.17s	remaining: 2.7s
197:	learn: 8.3049442	total: 5.19s	remaining: 2.67s
198:	learn: 8.2787682	total: 5.22s	remaining: 2.65s
199:	learn: 8.2447974	total: 5.24s	remaining: 2.62s
200:	learn: 8.1921213	total: 5.27s	remaining: 2.6s
201:	learn: 8.1368756	total: 5.29s	remaining: 2.57s
202:	learn: 8.1199237	total: 5.32s	remaining: 2.54s
203:	learn: 8.1017969	total: 5.35s	remaining: 2.52s
204:	learn: 8.0671173	total: 5.38s	remaining: 2.49s
205:	learn: 8.0319971	total: 5.4s	remaining: 2.46s
206:	learn: 8.0103044	total: 5.42s	remaining: 2.44s
207:	learn: 7.9967444	total: 5.45s	remaining: 2.41s
208:	learn: 7.9828258	total: 5.47s	remaining: 2.38s
209:	learn: 7.9515046	total: 5.5s	remaining: 2.36s
210:	learn: 7.9227280	total: 5.52s	remaining: 2.33s
211:	learn: 7.8910798	total: 5.55s	remaining: 2.3s
212:	learn: 7.8631592	total: 5.58s	remaining: 2.28s
213:	learn: 7.8233678	total: 5.61s	remaining: 2.25s
214:	learn: 7.8019668	total: 5.63s	remaining: 2.23s
215:	learn: 7.7692506	total: 5.66s	remaining: 2.2s
216:	learn: 7.7490031	total: 5.68s	remaining: 2.17s
217:	learn: 7.7321355	total: 5.71s	remaining: 2.15s
218:	learn: 7.7098665	total: 5.73s	remaining: 2.12s
219:	learn: 7.6731807	total: 5.76s	remaining: 2.1s
220:	learn: 7.6504773	total: 5.8s	remaining: 2.07s
221:	learn: 7.6249824	total: 5.83s	remaining: 2.05s
222:	learn: 7.6041649	total: 5.86s	remaining: 2.02s
223:	learn: 7.5490806	total: 5.88s	remaining: 2s
224:	learn: 7.5192127	total: 5.91s	remaining: 1.97s
225:	learn: 7.5025279	total: 5.94s	remaining: 1.94s
226:	learn: 7.4929920	total: 5.96s	remaining: 1.92s
227:	learn: 7.4778779	total: 6s	remaining: 1.89s
228:	learn: 7.4483660	total: 6.03s	remaining: 1.87s
229:	learn: 7.4291956	total: 6.07s	remaining: 1.85s
230:	learn: 7.4142087	total: 6.1s	remaining: 1.82s
231:	learn: 7.3986246	total: 6.13s	remaining: 1.79s
232:	learn: 7.3551309	total: 6.15s	remaining: 1.77s
233:	learn: 7.3005723	total: 6.18s	remaining: 1.74s
234:	learn: 7.2744519	total: 6.21s	remaining: 1.72s
235:	learn: 7.2477126	total: 6.24s	remaining: 1.69s
236:	learn: 7.2363537	total: 6.27s	remaining: 1.67s
237:	learn: 7.2243670	total: 6.3s	remaining: 1.64s
238:	learn: 7.2006057	total: 6.33s	remaining: 1.61s
239:	learn: 7.1770175	total: 6.36s	remaining: 1.59s
240:	learn: 7.1608454	total: 6.38s	remaining: 1.56s
241:	learn: 7.1347778	total: 6.41s	remaining: 1.54s
242:	learn: 7.1201448	total: 6.45s	remaining: 1.51s
243:	learn: 7.0954331	total: 6.48s	remaining: 1.49s
244:	learn: 7.0788027	total: 6.51s	remaining: 1.46s
245:	learn: 7.0587521	total: 6.54s	remaining: 1.44s
246:	learn: 7.0403295	total: 6.57s	remaining: 1.41s
247:	learn: 7.0149142	total: 6.6s	remaining: 1.38s
248:	learn: 7.0058503	total: 6.63s	remaining: 1.36s
249:	learn: 6.9872119	total: 6.66s	remaining: 1.33s
250:	learn: 6.9784378	total: 6.68s	remaining: 1.3s
251:	learn: 6.9401511	total: 6.71s	remaining: 1.28s
252:	learn: 6.9119575	total: 6.74s	remaining: 1.25s
253:	learn: 6.8791967	total: 6.77s	remaining: 1.23s
254:	learn: 6.8591065	total: 6.8s	remaining: 1.2s
255:	learn: 6.8466643	total: 6.83s	remaining: 1.17s
256:	learn: 6.8336092	total: 6.87s	remaining: 1.15s
257:	learn: 6.7969563	total: 6.9s	remaining: 1.12s
258:	learn: 6.7696422	total: 6.92s	remaining: 1.1s
259:	learn: 6.7495271	total: 6.95s	remaining: 1.07s
260:	learn: 6.7360935	total: 6.98s	remaining: 1.04s
261:	learn: 6.7206472	total: 7.01s	remaining: 1.02s
262:	learn: 6.7069436	total: 7.04s	remaining: 991ms
263:	learn: 6.6808851	total: 7.07s	remaining: 964ms
264:	learn: 6.6465468	total: 7.11s	remaining: 938ms
265:	learn: 6.6275745	total: 7.13s	remaining: 912ms
266:	learn: 6.6154560	total: 7.16s	remaining: 885ms
267:	learn: 6.5939280	total: 7.19s	remaining: 858ms
268:	learn: 6.5711370	total: 7.21s	remaining: 831ms
269:	learn: 6.5613012	total: 7.24s	remaining: 805ms
270:	learn: 6.5376183	total: 7.28s	remaining: 779ms
271:	learn: 6.5139963	total: 7.31s	remaining: 753ms
272:	learn: 6.5040754	total: 7.34s	remaining: 726ms
273:	learn: 6.4975901	total: 7.37s	remaining: 699ms
274:	learn: 6.4904306	total: 7.4s	remaining: 673ms
275:	learn: 6.4771827	total: 7.42s	remaining: 646ms
276:	learn: 6.4640077	total: 7.45s	remaining: 619ms
277:	learn: 6.4479524	total: 7.48s	remaining: 592ms
278:	learn: 6.4378265	total: 7.51s	remaining: 566ms
279:	learn: 6.3945577	total: 7.55s	remaining: 539ms
280:	learn: 6.3799486	total: 7.58s	remaining: 512ms
281:	learn: 6.3522615	total: 7.6s	remaining: 485ms
282:	learn: 6.3442235	total: 7.63s	remaining: 458ms
283:	learn: 6.3211858	total: 7.66s	remaining: 431ms
284:	learn: 6.3144146	total: 7.68s	remaining: 404ms
285:	learn: 6.2952523	total: 7.71s	remaining: 377ms
286:	learn: 6.2759215	total: 7.74s	remaining: 351ms
287:	learn: 6.2573928	total: 7.78s	remaining: 324ms
288:	learn: 6.2171188	total: 7.81s	remaining: 297ms
289:	learn: 6.2047704	total: 7.83s	remaining: 270ms
290:	learn: 6.1958409	total: 7.86s	remaining: 243ms
291:	learn: 6.1687670	total: 7.89s	remaining: 216ms
292:	learn: 6.1534078	total: 7.92s	remaining: 189ms
293:	learn: 6.1501440	total: 7.95s	remaining: 162ms
294:	learn: 6.1433714	total: 7.98s	remaining: 135ms
295:	learn: 6.1307498	total: 8.02s	remaining: 108ms
296:	learn: 6.0959885	total: 8.04s	remaining: 81.3ms
297:	learn: 6.0797899	total: 8.07s	remaining: 54.2ms
298:	learn: 6.0558136	total: 8.1s	remaining: 27.1ms
299:	learn: 6.0496478	total: 8.13s	remaining: 0us
0:	learn: 42.9665907	total: 27.5ms	remaining: 8.21s
1:	learn: 42.0749580	total: 55ms	remaining: 8.2s
2:	learn: 41.2364372	total: 82ms	remaining: 8.11s
3:	learn: 40.2791940	total: 119ms	remaining: 8.79s
4:	learn: 39.4774740	total: 147ms	remaining: 8.65s
5:	learn: 38.5996840	total: 149ms	remaining: 7.28s
6:	learn: 37.8316211	total: 176ms	remaining: 7.36s
7:	learn: 37.1628850	total: 203ms	remaining: 7.4s
8:	learn: 36.4156466	total: 230ms	remaining: 7.44s
9:	learn: 35.6588758	total: 259ms	remaining: 7.5s
10:	learn: 35.0884345	total: 288ms	remaining: 7.55s
11:	learn: 34.5488461	total: 321ms	remaining: 7.7s
12:	learn: 34.0111283	total: 354ms	remaining: 7.82s
13:	learn: 33.3032373	total: 381ms	remaining: 7.79s
14:	learn: 32.6944492	total: 409ms	remaining: 7.76s
15:	learn: 32.1392985	total: 435ms	remaining: 7.72s
16:	learn: 31.5189724	total: 461ms	remaining: 7.67s
17:	learn: 31.1349319	total: 487ms	remaining: 7.63s
18:	learn: 30.6327993	total: 492ms	remaining: 7.27s
19:	learn: 30.1244237	total: 520ms	remaining: 7.28s
20:	learn: 29.6203476	total: 556ms	remaining: 7.39s
21:	learn: 29.1948722	total: 592ms	remaining: 7.49s
22:	learn: 28.7806338	total: 619ms	remaining: 7.46s
23:	learn: 28.4090304	total: 648ms	remaining: 7.45s
24:	learn: 27.8808639	total: 675ms	remaining: 7.42s
25:	learn: 27.4873995	total: 702ms	remaining: 7.39s
26:	learn: 27.1508867	total: 729ms	remaining: 7.37s
27:	learn: 26.8736886	total: 763ms	remaining: 7.42s
28:	learn: 26.5573453	total: 791ms	remaining: 7.39s
29:	learn: 26.1377013	total: 818ms	remaining: 7.36s
30:	learn: 25.8646447	total: 853ms	remaining: 7.4s
31:	learn: 25.5102956	total: 880ms	remaining: 7.37s
32:	learn: 25.1125832	total: 884ms	remaining: 7.15s
33:	learn: 24.7834335	total: 911ms	remaining: 7.13s
34:	learn: 24.4107155	total: 938ms	remaining: 7.1s
35:	learn: 24.1257227	total: 967ms	remaining: 7.09s
36:	learn: 23.7885363	total: 1s	remaining: 7.11s
37:	learn: 23.4172762	total: 1.03s	remaining: 7.09s
38:	learn: 23.1811741	total: 1.06s	remaining: 7.08s
39:	learn: 23.0203552	total: 1.09s	remaining: 7.11s
40:	learn: 22.7568385	total: 1.12s	remaining: 7.08s
41:	learn: 22.5575054	total: 1.15s	remaining: 7.05s
42:	learn: 22.3627317	total: 1.18s	remaining: 7.06s
43:	learn: 22.1148033	total: 1.21s	remaining: 7.04s
44:	learn: 21.8764654	total: 1.24s	remaining: 7.02s
45:	learn: 21.6507751	total: 1.26s	remaining: 6.98s
46:	learn: 21.5071770	total: 1.29s	remaining: 6.95s
47:	learn: 21.2905641	total: 1.32s	remaining: 6.96s
48:	learn: 21.0236680	total: 1.35s	remaining: 6.93s
49:	learn: 20.8525654	total: 1.39s	remaining: 6.94s
50:	learn: 20.7238361	total: 1.42s	remaining: 6.92s
51:	learn: 20.5196846	total: 1.44s	remaining: 6.89s
52:	learn: 20.4023709	total: 1.47s	remaining: 6.86s
53:	learn: 20.2251544	total: 1.5s	remaining: 6.84s
54:	learn: 20.0165126	total: 1.53s	remaining: 6.81s
55:	learn: 19.8473022	total: 1.55s	remaining: 6.77s
56:	learn: 19.6453942	total: 1.59s	remaining: 6.77s
57:	learn: 19.4414519	total: 1.62s	remaining: 6.76s
58:	learn: 19.2841809	total: 1.65s	remaining: 6.74s
59:	learn: 19.1094988	total: 1.68s	remaining: 6.71s
60:	learn: 18.9071492	total: 1.7s	remaining: 6.67s
61:	learn: 18.8142448	total: 1.73s	remaining: 6.64s
62:	learn: 18.7155916	total: 1.75s	remaining: 6.6s
63:	learn: 18.5713989	total: 1.78s	remaining: 6.57s
64:	learn: 18.4435949	total: 1.82s	remaining: 6.57s
65:	learn: 18.3154060	total: 1.84s	remaining: 6.54s
66:	learn: 18.1763969	total: 1.89s	remaining: 6.56s
67:	learn: 18.0520004	total: 1.92s	remaining: 6.53s
68:	learn: 17.9256535	total: 1.94s	remaining: 6.5s
69:	learn: 17.8001190	total: 1.97s	remaining: 6.47s
70:	learn: 17.7046336	total: 2s	remaining: 6.44s
71:	learn: 17.5727695	total: 2.02s	remaining: 6.41s
72:	learn: 17.4690371	total: 2.06s	remaining: 6.41s
73:	learn: 17.3464529	total: 2.09s	remaining: 6.39s
74:	learn: 17.2490723	total: 2.12s	remaining: 6.36s
75:	learn: 17.1387598	total: 2.15s	remaining: 6.33s
76:	learn: 17.0249827	total: 2.17s	remaining: 6.3s
77:	learn: 16.8957417	total: 2.2s	remaining: 6.27s
78:	learn: 16.8509294	total: 2.23s	remaining: 6.24s
79:	learn: 16.7606789	total: 2.26s	remaining: 6.21s
80:	learn: 16.6451525	total: 2.3s	remaining: 6.21s
81:	learn: 16.5535417	total: 2.33s	remaining: 6.19s
82:	learn: 16.4573626	total: 2.36s	remaining: 6.16s
83:	learn: 16.3815139	total: 2.38s	remaining: 6.13s
84:	learn: 16.2757371	total: 2.41s	remaining: 6.1s
85:	learn: 16.1610261	total: 2.44s	remaining: 6.07s
86:	learn: 16.0576382	total: 2.46s	remaining: 6.04s
87:	learn: 15.9864012	total: 2.49s	remaining: 6s
88:	learn: 15.8595556	total: 2.52s	remaining: 5.99s
89:	learn: 15.7835777	total: 2.56s	remaining: 5.98s
90:	learn: 15.6644813	total: 2.59s	remaining: 5.94s
91:	learn: 15.5703568	total: 2.61s	remaining: 5.91s
92:	learn: 15.5149519	total: 2.64s	remaining: 5.88s
93:	learn: 15.4388698	total: 2.67s	remaining: 5.86s
94:	learn: 15.3748348	total: 2.7s	remaining: 5.83s
95:	learn: 15.2653364	total: 2.74s	remaining: 5.83s
96:	learn: 15.1811031	total: 2.77s	remaining: 5.8s
97:	learn: 15.1048666	total: 2.8s	remaining: 5.78s
98:	learn: 14.9482659	total: 2.83s	remaining: 5.75s
99:	learn: 14.8677279	total: 2.86s	remaining: 5.72s
100:	learn: 14.7725994	total: 2.89s	remaining: 5.69s
101:	learn: 14.7029290	total: 2.91s	remaining: 5.66s
102:	learn: 14.6496411	total: 2.94s	remaining: 5.63s
103:	learn: 14.5777257	total: 2.97s	remaining: 5.6s
104:	learn: 14.5216984	total: 3s	remaining: 5.57s
105:	learn: 14.4547829	total: 3.03s	remaining: 5.55s
106:	learn: 14.3711083	total: 3.06s	remaining: 5.52s
107:	learn: 14.2912634	total: 3.09s	remaining: 5.49s
108:	learn: 14.2095515	total: 3.12s	remaining: 5.46s
109:	learn: 14.1126833	total: 3.15s	remaining: 5.43s
110:	learn: 14.0289467	total: 3.18s	remaining: 5.42s
111:	learn: 13.9815748	total: 3.21s	remaining: 5.39s
112:	learn: 13.8835790	total: 3.24s	remaining: 5.36s
113:	learn: 13.8212214	total: 3.27s	remaining: 5.34s
114:	learn: 13.7640007	total: 3.3s	remaining: 5.31s
115:	learn: 13.7267519	total: 3.33s	remaining: 5.28s
116:	learn: 13.6599610	total: 3.36s	remaining: 5.26s
117:	learn: 13.5793132	total: 3.39s	remaining: 5.23s
118:	learn: 13.4925503	total: 3.42s	remaining: 5.2s
119:	learn: 13.4190945	total: 3.44s	remaining: 5.17s
120:	learn: 13.3466705	total: 3.47s	remaining: 5.14s
121:	learn: 13.2924496	total: 3.5s	remaining: 5.11s
122:	learn: 13.2085622	total: 3.53s	remaining: 5.08s
123:	learn: 13.1162372	total: 3.56s	remaining: 5.06s
124:	learn: 13.0410713	total: 3.6s	remaining: 5.04s
125:	learn: 12.9609613	total: 3.63s	remaining: 5.01s
126:	learn: 12.8983994	total: 3.65s	remaining: 4.98s
127:	learn: 12.8474128	total: 3.68s	remaining: 4.95s
128:	learn: 12.7868331	total: 3.71s	remaining: 4.92s
129:	learn: 12.7309355	total: 3.74s	remaining: 4.89s
130:	learn: 12.6294977	total: 3.77s	remaining: 4.87s
131:	learn: 12.5179424	total: 3.8s	remaining: 4.84s
132:	learn: 12.4808285	total: 3.83s	remaining: 4.81s
133:	learn: 12.4263439	total: 3.86s	remaining: 4.78s
134:	learn: 12.3735545	total: 3.89s	remaining: 4.75s
135:	learn: 12.3307713	total: 3.92s	remaining: 4.72s
136:	learn: 12.2519866	total: 3.94s	remaining: 4.69s
137:	learn: 12.1999454	total: 3.97s	remaining: 4.66s
138:	learn: 12.1615470	total: 4s	remaining: 4.64s
139:	learn: 12.1069953	total: 4.03s	remaining: 4.61s
140:	learn: 12.0901368	total: 4.07s	remaining: 4.59s
141:	learn: 12.0479705	total: 4.1s	remaining: 4.56s
142:	learn: 12.0053457	total: 4.13s	remaining: 4.53s
143:	learn: 11.9659408	total: 4.15s	remaining: 4.5s
144:	learn: 11.8554732	total: 4.18s	remaining: 4.47s
145:	learn: 11.8187196	total: 4.21s	remaining: 4.44s
146:	learn: 11.7800675	total: 4.24s	remaining: 4.42s
147:	learn: 11.7386309	total: 4.27s	remaining: 4.38s
148:	learn: 11.6839216	total: 4.3s	remaining: 4.36s
149:	learn: 11.6001114	total: 4.33s	remaining: 4.33s
150:	learn: 11.5294641	total: 4.36s	remaining: 4.3s
151:	learn: 11.4688507	total: 4.39s	remaining: 4.27s
152:	learn: 11.4036255	total: 4.41s	remaining: 4.24s
153:	learn: 11.3539311	total: 4.44s	remaining: 4.21s
154:	learn: 11.2810182	total: 4.47s	remaining: 4.18s
155:	learn: 11.2291051	total: 4.51s	remaining: 4.16s
156:	learn: 11.1684511	total: 4.54s	remaining: 4.14s
157:	learn: 11.0820909	total: 4.57s	remaining: 4.11s
158:	learn: 11.0151771	total: 4.6s	remaining: 4.08s
159:	learn: 10.9854451	total: 4.63s	remaining: 4.05s
160:	learn: 10.9538428	total: 4.65s	remaining: 4.02s
161:	learn: 10.9071380	total: 4.68s	remaining: 3.99s
162:	learn: 10.8506541	total: 4.71s	remaining: 3.96s
163:	learn: 10.7895632	total: 4.74s	remaining: 3.93s
164:	learn: 10.7104166	total: 4.78s	remaining: 3.91s
165:	learn: 10.6713716	total: 4.8s	remaining: 3.88s
166:	learn: 10.6075628	total: 4.83s	remaining: 3.85s
167:	learn: 10.5513657	total: 4.86s	remaining: 3.82s
168:	learn: 10.5308283	total: 4.89s	remaining: 3.79s
169:	learn: 10.5023957	total: 4.91s	remaining: 3.76s
170:	learn: 10.4435313	total: 4.94s	remaining: 3.73s
171:	learn: 10.4072323	total: 4.99s	remaining: 3.71s
172:	learn: 10.3655510	total: 5.01s	remaining: 3.68s
173:	learn: 10.3243121	total: 5.04s	remaining: 3.65s
174:	learn: 10.2931771	total: 5.07s	remaining: 3.62s
175:	learn: 10.2558381	total: 5.1s	remaining: 3.59s
176:	learn: 10.2092526	total: 5.13s	remaining: 3.56s
177:	learn: 10.1711544	total: 5.16s	remaining: 3.53s
178:	learn: 10.1456963	total: 5.19s	remaining: 3.51s
179:	learn: 10.0920598	total: 5.22s	remaining: 3.48s
180:	learn: 10.0733859	total: 5.25s	remaining: 3.45s
181:	learn: 10.0472528	total: 5.28s	remaining: 3.42s
182:	learn: 10.0011592	total: 5.3s	remaining: 3.39s
183:	learn: 9.9794945	total: 5.33s	remaining: 3.36s
184:	learn: 9.9585906	total: 5.36s	remaining: 3.33s
185:	learn: 9.9399622	total: 5.39s	remaining: 3.3s
186:	learn: 9.9029023	total: 5.42s	remaining: 3.27s
187:	learn: 9.8554746	total: 5.45s	remaining: 3.24s
188:	learn: 9.8238680	total: 5.48s	remaining: 3.22s
189:	learn: 9.7666554	total: 5.51s	remaining: 3.19s
190:	learn: 9.7207381	total: 5.54s	remaining: 3.16s
191:	learn: 9.6569385	total: 5.56s	remaining: 3.13s
192:	learn: 9.6385185	total: 5.59s	remaining: 3.1s
193:	learn: 9.6202811	total: 5.63s	remaining: 3.07s
194:	learn: 9.5971883	total: 5.65s	remaining: 3.04s
195:	learn: 9.5799642	total: 5.68s	remaining: 3.01s
196:	learn: 9.5177746	total: 5.71s	remaining: 2.99s
197:	learn: 9.4886409	total: 5.74s	remaining: 2.96s
198:	learn: 9.4664307	total: 5.77s	remaining: 2.93s
199:	learn: 9.4000552	total: 5.8s	remaining: 2.9s
200:	learn: 9.3423940	total: 5.83s	remaining: 2.87s
201:	learn: 9.2917605	total: 5.87s	remaining: 2.85s
202:	learn: 9.2787639	total: 5.89s	remaining: 2.82s
203:	learn: 9.2348560	total: 5.92s	remaining: 2.79s
204:	learn: 9.2163272	total: 5.96s	remaining: 2.76s
205:	learn: 9.1475795	total: 5.99s	remaining: 2.73s
206:	learn: 9.1152705	total: 6.01s	remaining: 2.7s
207:	learn: 9.0832275	total: 6.04s	remaining: 2.67s
208:	learn: 9.0497331	total: 6.07s	remaining: 2.64s
209:	learn: 8.9884684	total: 6.1s	remaining: 2.62s
210:	learn: 8.9704690	total: 6.13s	remaining: 2.58s
211:	learn: 8.9489198	total: 6.16s	remaining: 2.56s
212:	learn: 8.9309060	total: 6.19s	remaining: 2.53s
213:	learn: 8.8812512	total: 6.22s	remaining: 2.5s
214:	learn: 8.8596725	total: 6.25s	remaining: 2.47s
215:	learn: 8.8300852	total: 6.27s	remaining: 2.44s
216:	learn: 8.7882493	total: 6.31s	remaining: 2.41s
217:	learn: 8.7527024	total: 6.34s	remaining: 2.38s
218:	learn: 8.7373901	total: 6.37s	remaining: 2.35s
219:	learn: 8.6853084	total: 6.39s	remaining: 2.33s
220:	learn: 8.6700353	total: 6.42s	remaining: 2.29s
221:	learn: 8.6488354	total: 6.46s	remaining: 2.27s
222:	learn: 8.6245087	total: 6.48s	remaining: 2.24s
223:	learn: 8.5803127	total: 6.51s	remaining: 2.21s
224:	learn: 8.5687287	total: 6.54s	remaining: 2.18s
225:	learn: 8.5524159	total: 6.57s	remaining: 2.15s
226:	learn: 8.5363118	total: 6.6s	remaining: 2.12s
227:	learn: 8.5173117	total: 6.62s	remaining: 2.09s
228:	learn: 8.5023907	total: 6.65s	remaining: 2.06s
229:	learn: 8.4758786	total: 6.69s	remaining: 2.04s
230:	learn: 8.4589042	total: 6.72s	remaining: 2.01s
231:	learn: 8.4178675	total: 6.75s	remaining: 1.98s
232:	learn: 8.4015768	total: 6.78s	remaining: 1.95s
233:	learn: 8.3538784	total: 6.81s	remaining: 1.92s
234:	learn: 8.3197095	total: 6.84s	remaining: 1.89s
235:	learn: 8.3012561	total: 6.87s	remaining: 1.86s
236:	learn: 8.2676774	total: 6.89s	remaining: 1.83s
237:	learn: 8.2345097	total: 6.93s	remaining: 1.8s
238:	learn: 8.1918901	total: 6.97s	remaining: 1.78s
239:	learn: 8.1628985	total: 7s	remaining: 1.75s
240:	learn: 8.1474180	total: 7.02s	remaining: 1.72s
241:	learn: 8.1325534	total: 7.05s	remaining: 1.69s
242:	learn: 8.1037771	total: 7.08s	remaining: 1.66s
243:	learn: 8.0648232	total: 7.11s	remaining: 1.63s
244:	learn: 8.0292260	total: 7.13s	remaining: 1.6s
245:	learn: 7.9979887	total: 7.17s	remaining: 1.57s
246:	learn: 7.9749906	total: 7.21s	remaining: 1.55s
247:	learn: 7.9536857	total: 7.24s	remaining: 1.52s
248:	learn: 7.9369033	total: 7.26s	remaining: 1.49s
249:	learn: 7.9041314	total: 7.29s	remaining: 1.46s
250:	learn: 7.8700779	total: 7.32s	remaining: 1.43s
251:	learn: 7.8589815	total: 7.35s	remaining: 1.4s
252:	learn: 7.8461408	total: 7.38s	remaining: 1.37s
253:	learn: 7.8203908	total: 7.41s	remaining: 1.34s
254:	learn: 7.8115877	total: 7.45s	remaining: 1.31s
255:	learn: 7.7972851	total: 7.47s	remaining: 1.28s
256:	learn: 7.7592777	total: 7.5s	remaining: 1.25s
257:	learn: 7.7415378	total: 7.53s	remaining: 1.23s
258:	learn: 7.7066130	total: 7.56s	remaining: 1.2s
259:	learn: 7.6688277	total: 7.59s	remaining: 1.17s
260:	learn: 7.6399303	total: 7.62s	remaining: 1.14s
261:	learn: 7.6294434	total: 7.65s	remaining: 1.11s
262:	learn: 7.5974222	total: 7.68s	remaining: 1.08s
263:	learn: 7.5614717	total: 7.71s	remaining: 1.05s
264:	learn: 7.5393196	total: 7.74s	remaining: 1.02s
265:	learn: 7.5304428	total: 7.77s	remaining: 993ms
266:	learn: 7.5005082	total: 7.8s	remaining: 964ms
267:	learn: 7.4930881	total: 7.83s	remaining: 935ms
268:	learn: 7.4618806	total: 7.86s	remaining: 906ms
269:	learn: 7.4324630	total: 7.89s	remaining: 876ms
270:	learn: 7.4024922	total: 7.92s	remaining: 848ms
271:	learn: 7.3795771	total: 7.95s	remaining: 818ms
272:	learn: 7.3582401	total: 7.97s	remaining: 789ms
273:	learn: 7.3332320	total: 8s	remaining: 759ms
274:	learn: 7.3134158	total: 8.04s	remaining: 731ms
275:	learn: 7.3047177	total: 8.07s	remaining: 701ms
276:	learn: 7.2835686	total: 8.09s	remaining: 672ms
277:	learn: 7.2590706	total: 8.12s	remaining: 643ms
278:	learn: 7.2389798	total: 8.16s	remaining: 614ms
279:	learn: 7.2238047	total: 8.18s	remaining: 585ms
280:	learn: 7.2091121	total: 8.21s	remaining: 555ms
281:	learn: 7.1841389	total: 8.24s	remaining: 526ms
282:	learn: 7.1551478	total: 8.27s	remaining: 497ms
283:	learn: 7.1417039	total: 8.3s	remaining: 468ms
284:	learn: 7.1149018	total: 8.33s	remaining: 438ms
285:	learn: 7.0940299	total: 8.35s	remaining: 409ms
286:	learn: 7.0642807	total: 8.38s	remaining: 380ms
287:	learn: 7.0578276	total: 8.41s	remaining: 351ms
288:	learn: 7.0282409	total: 8.45s	remaining: 321ms
289:	learn: 7.0175655	total: 8.48s	remaining: 293ms
290:	learn: 7.0117776	total: 8.51s	remaining: 263ms
291:	learn: 7.0065809	total: 8.54s	remaining: 234ms
292:	learn: 6.9844003	total: 8.57s	remaining: 205ms
293:	learn: 6.9588520	total: 8.6s	remaining: 175ms
294:	learn: 6.9319651	total: 8.62s	remaining: 146ms
295:	learn: 6.9184996	total: 8.66s	remaining: 117ms
296:	learn: 6.9089387	total: 8.69s	remaining: 87.8ms
297:	learn: 6.8834263	total: 8.72s	remaining: 58.5ms
298:	learn: 6.8646725	total: 8.75s	remaining: 29.3ms
299:	learn: 6.8583069	total: 8.77s	remaining: 0us
0:	learn: 46.4920187	total: 26.3ms	remaining: 7.86s
1:	learn: 45.6433575	total: 60.1ms	remaining: 8.95s
2:	learn: 44.9081373	total: 87.2ms	remaining: 8.63s
3:	learn: 44.2007033	total: 115ms	remaining: 8.5s
4:	learn: 43.6170398	total: 141ms	remaining: 8.34s
5:	learn: 42.9324480	total: 168ms	remaining: 8.23s
6:	learn: 42.1711446	total: 194ms	remaining: 8.11s
7:	learn: 41.4804333	total: 219ms	remaining: 8s
8:	learn: 40.7785369	total: 244ms	remaining: 7.88s
9:	learn: 40.1652912	total: 269ms	remaining: 7.8s
10:	learn: 39.7932467	total: 302ms	remaining: 7.92s
11:	learn: 39.1996124	total: 329ms	remaining: 7.9s
12:	learn: 38.7184015	total: 354ms	remaining: 7.82s
13:	learn: 38.2978784	total: 381ms	remaining: 7.79s
14:	learn: 37.9153936	total: 406ms	remaining: 7.72s
15:	learn: 37.4724861	total: 431ms	remaining: 7.65s
16:	learn: 36.9897929	total: 455ms	remaining: 7.58s
17:	learn: 36.5310822	total: 480ms	remaining: 7.53s
18:	learn: 35.8591207	total: 511ms	remaining: 7.56s
19:	learn: 35.3264196	total: 540ms	remaining: 7.56s
20:	learn: 34.9815543	total: 566ms	remaining: 7.52s
21:	learn: 34.5242647	total: 592ms	remaining: 7.48s
22:	learn: 34.0838298	total: 618ms	remaining: 7.44s
23:	learn: 33.5132614	total: 645ms	remaining: 7.42s
24:	learn: 33.1682884	total: 669ms	remaining: 7.36s
25:	learn: 32.6809656	total: 696ms	remaining: 7.33s
26:	learn: 32.2976643	total: 731ms	remaining: 7.39s
27:	learn: 31.8377309	total: 758ms	remaining: 7.36s
28:	learn: 31.4757870	total: 783ms	remaining: 7.31s
29:	learn: 31.1346090	total: 808ms	remaining: 7.27s
30:	learn: 30.8895702	total: 834ms	remaining: 7.24s
31:	learn: 30.4184979	total: 859ms	remaining: 7.19s
32:	learn: 30.1250221	total: 885ms	remaining: 7.16s
33:	learn: 29.7407593	total: 911ms	remaining: 7.12s
34:	learn: 29.4737622	total: 946ms	remaining: 7.16s
35:	learn: 29.0366253	total: 975ms	remaining: 7.15s
36:	learn: 28.5395737	total: 1s	remaining: 7.11s
37:	learn: 28.2499036	total: 1.02s	remaining: 7.07s
38:	learn: 28.0302095	total: 1.05s	remaining: 7.05s
39:	learn: 27.7630415	total: 1.08s	remaining: 7s
40:	learn: 27.5060679	total: 1.1s	remaining: 6.97s
41:	learn: 27.1860580	total: 1.13s	remaining: 6.94s
42:	learn: 26.9497401	total: 1.17s	remaining: 6.97s
43:	learn: 26.5636809	total: 1.19s	remaining: 6.94s
44:	learn: 26.3527818	total: 1.22s	remaining: 6.91s
45:	learn: 26.0947487	total: 1.23s	remaining: 6.78s
46:	learn: 25.8964846	total: 1.25s	remaining: 6.74s
47:	learn: 25.7357069	total: 1.28s	remaining: 6.7s
48:	learn: 25.4371960	total: 1.3s	remaining: 6.67s
49:	learn: 25.2603655	total: 1.33s	remaining: 6.63s
50:	learn: 25.0858697	total: 1.35s	remaining: 6.62s
51:	learn: 24.8939288	total: 1.39s	remaining: 6.62s
52:	learn: 24.6820962	total: 1.41s	remaining: 6.59s
53:	learn: 24.4191077	total: 1.44s	remaining: 6.56s
54:	learn: 24.2285108	total: 1.47s	remaining: 6.53s
55:	learn: 24.0237019	total: 1.49s	remaining: 6.5s
56:	learn: 23.8723096	total: 1.52s	remaining: 6.46s
57:	learn: 23.6426757	total: 1.54s	remaining: 6.43s
58:	learn: 23.3573717	total: 1.56s	remaining: 6.4s
59:	learn: 23.2066882	total: 1.59s	remaining: 6.38s
60:	learn: 23.0766272	total: 1.62s	remaining: 6.36s
61:	learn: 22.8991718	total: 1.65s	remaining: 6.33s
62:	learn: 22.7894335	total: 1.67s	remaining: 6.3s
63:	learn: 22.6367500	total: 1.7s	remaining: 6.27s
64:	learn: 22.4138205	total: 1.72s	remaining: 6.24s
65:	learn: 22.2650450	total: 1.75s	remaining: 6.21s
66:	learn: 22.1323603	total: 1.78s	remaining: 6.18s
67:	learn: 22.0038344	total: 1.8s	remaining: 6.16s
68:	learn: 21.8540317	total: 1.84s	remaining: 6.15s
69:	learn: 21.6608789	total: 1.86s	remaining: 6.12s
70:	learn: 21.4853082	total: 1.89s	remaining: 6.09s
71:	learn: 21.3715617	total: 1.92s	remaining: 6.07s
72:	learn: 21.2631638	total: 1.94s	remaining: 6.04s
73:	learn: 21.0630270	total: 1.97s	remaining: 6.01s
74:	learn: 20.9295137	total: 2s	remaining: 5.99s
75:	learn: 20.7587846	total: 2.02s	remaining: 5.96s
76:	learn: 20.6341259	total: 2.05s	remaining: 5.95s
77:	learn: 20.4852416	total: 2.08s	remaining: 5.91s
78:	learn: 20.3364151	total: 2.1s	remaining: 5.88s
79:	learn: 20.1513667	total: 2.13s	remaining: 5.85s
80:	learn: 20.0363336	total: 2.15s	remaining: 5.82s
81:	learn: 19.8984761	total: 2.17s	remaining: 5.78s
82:	learn: 19.7196215	total: 2.2s	remaining: 5.75s
83:	learn: 19.6326171	total: 2.23s	remaining: 5.73s
84:	learn: 19.5192244	total: 2.26s	remaining: 5.72s
85:	learn: 19.3415480	total: 2.29s	remaining: 5.69s
86:	learn: 19.1977806	total: 2.31s	remaining: 5.66s
87:	learn: 19.0755247	total: 2.34s	remaining: 5.63s
88:	learn: 18.9651152	total: 2.36s	remaining: 5.6s
89:	learn: 18.8207893	total: 2.38s	remaining: 5.57s
90:	learn: 18.6727740	total: 2.41s	remaining: 5.54s
91:	learn: 18.5581545	total: 2.44s	remaining: 5.52s
92:	learn: 18.3991083	total: 2.47s	remaining: 5.49s
93:	learn: 18.2684705	total: 2.49s	remaining: 5.46s
94:	learn: 18.1617452	total: 2.52s	remaining: 5.43s
95:	learn: 18.0459371	total: 2.54s	remaining: 5.4s
96:	learn: 17.9276342	total: 2.56s	remaining: 5.37s
97:	learn: 17.8174578	total: 2.59s	remaining: 5.34s
98:	learn: 17.7243604	total: 2.61s	remaining: 5.31s
99:	learn: 17.5858933	total: 2.64s	remaining: 5.27s
100:	learn: 17.4987099	total: 2.66s	remaining: 5.24s
101:	learn: 17.4074669	total: 2.69s	remaining: 5.23s
102:	learn: 17.3061897	total: 2.72s	remaining: 5.2s
103:	learn: 17.2198386	total: 2.75s	remaining: 5.17s
104:	learn: 17.1413444	total: 2.77s	remaining: 5.14s
105:	learn: 17.0254611	total: 2.79s	remaining: 5.12s
106:	learn: 16.8532099	total: 2.82s	remaining: 5.09s
107:	learn: 16.7502658	total: 2.84s	remaining: 5.06s
108:	learn: 16.6620525	total: 2.87s	remaining: 5.03s
109:	learn: 16.5150565	total: 2.89s	remaining: 5s
110:	learn: 16.3807346	total: 2.92s	remaining: 4.98s
111:	learn: 16.2864111	total: 2.95s	remaining: 4.95s
112:	learn: 16.2093028	total: 2.98s	remaining: 4.92s
113:	learn: 16.1230989	total: 3s	remaining: 4.89s
114:	learn: 16.0202012	total: 3.02s	remaining: 4.87s
115:	learn: 15.8709211	total: 3.05s	remaining: 4.84s
116:	learn: 15.8000542	total: 3.07s	remaining: 4.8s
117:	learn: 15.7243590	total: 3.1s	remaining: 4.77s
118:	learn: 15.6838028	total: 3.12s	remaining: 4.75s
119:	learn: 15.5999055	total: 3.15s	remaining: 4.73s
120:	learn: 15.4847533	total: 3.18s	remaining: 4.7s
121:	learn: 15.3935164	total: 3.2s	remaining: 4.67s
122:	learn: 15.3296377	total: 3.23s	remaining: 4.65s
123:	learn: 15.2519510	total: 3.25s	remaining: 4.62s
124:	learn: 15.1230133	total: 3.28s	remaining: 4.59s
125:	learn: 15.0423019	total: 3.3s	remaining: 4.56s
126:	learn: 14.9651901	total: 3.33s	remaining: 4.54s
127:	learn: 14.8934123	total: 3.36s	remaining: 4.51s
128:	learn: 14.7751491	total: 3.38s	remaining: 4.49s
129:	learn: 14.6892078	total: 3.41s	remaining: 4.46s
130:	learn: 14.5672638	total: 3.43s	remaining: 4.43s
131:	learn: 14.4952938	total: 3.46s	remaining: 4.4s
132:	learn: 14.4180105	total: 3.48s	remaining: 4.37s
133:	learn: 14.3259063	total: 3.5s	remaining: 4.34s
134:	learn: 14.2345804	total: 3.53s	remaining: 4.31s
135:	learn: 14.1483357	total: 3.56s	remaining: 4.29s
136:	learn: 14.0736010	total: 3.58s	remaining: 4.26s
137:	learn: 13.9937119	total: 3.61s	remaining: 4.24s
138:	learn: 13.8959716	total: 3.63s	remaining: 4.21s
139:	learn: 13.8412567	total: 3.66s	remaining: 4.18s
140:	learn: 13.7154644	total: 3.68s	remaining: 4.15s
141:	learn: 13.6297829	total: 3.71s	remaining: 4.13s
142:	learn: 13.5739671	total: 3.75s	remaining: 4.11s
143:	learn: 13.4995340	total: 3.78s	remaining: 4.1s
144:	learn: 13.4419790	total: 3.81s	remaining: 4.08s
145:	learn: 13.3537206	total: 3.84s	remaining: 4.05s
146:	learn: 13.2933505	total: 3.87s	remaining: 4.03s
147:	learn: 13.2556145	total: 3.9s	remaining: 4s
148:	learn: 13.1895569	total: 3.92s	remaining: 3.98s
149:	learn: 13.0743749	total: 3.95s	remaining: 3.95s
150:	learn: 12.9866329	total: 3.98s	remaining: 3.93s
151:	learn: 12.9104275	total: 4.01s	remaining: 3.91s
152:	learn: 12.8577271	total: 4.04s	remaining: 3.88s
153:	learn: 12.8256294	total: 4.08s	remaining: 3.87s
154:	learn: 12.7696590	total: 4.11s	remaining: 3.84s
155:	learn: 12.7209084	total: 4.14s	remaining: 3.82s
156:	learn: 12.6674046	total: 4.16s	remaining: 3.79s
157:	learn: 12.5958375	total: 4.2s	remaining: 3.77s
158:	learn: 12.5324216	total: 4.22s	remaining: 3.75s
159:	learn: 12.4750343	total: 4.25s	remaining: 3.72s
160:	learn: 12.4460476	total: 4.28s	remaining: 3.69s
161:	learn: 12.3931726	total: 4.3s	remaining: 3.67s
162:	learn: 12.3423679	total: 4.34s	remaining: 3.65s
163:	learn: 12.2404837	total: 4.37s	remaining: 3.62s
164:	learn: 12.1393154	total: 4.4s	remaining: 3.6s
165:	learn: 12.0493899	total: 4.43s	remaining: 3.58s
166:	learn: 11.9978027	total: 4.46s	remaining: 3.55s
167:	learn: 11.9099690	total: 4.48s	remaining: 3.52s
168:	learn: 11.8102813	total: 4.51s	remaining: 3.5s
169:	learn: 11.7900460	total: 4.54s	remaining: 3.47s
170:	learn: 11.6614467	total: 4.57s	remaining: 3.45s
171:	learn: 11.6131631	total: 4.6s	remaining: 3.42s
172:	learn: 11.5629996	total: 4.63s	remaining: 3.4s
173:	learn: 11.5169908	total: 4.66s	remaining: 3.38s
174:	learn: 11.4660439	total: 4.69s	remaining: 3.35s
175:	learn: 11.3919483	total: 4.72s	remaining: 3.32s
176:	learn: 11.3145316	total: 4.74s	remaining: 3.3s
177:	learn: 11.2776601	total: 4.77s	remaining: 3.27s
178:	learn: 11.2271053	total: 4.8s	remaining: 3.25s
179:	learn: 11.1499719	total: 4.83s	remaining: 3.22s
180:	learn: 11.0826417	total: 4.86s	remaining: 3.19s
181:	learn: 11.0345062	total: 4.9s	remaining: 3.18s
182:	learn: 10.9747957	total: 4.93s	remaining: 3.15s
183:	learn: 10.9504835	total: 4.96s	remaining: 3.13s
184:	learn: 10.8920732	total: 4.99s	remaining: 3.1s
185:	learn: 10.8332793	total: 5.01s	remaining: 3.07s
186:	learn: 10.7563237	total: 5.05s	remaining: 3.05s
187:	learn: 10.6822868	total: 5.08s	remaining: 3.03s
188:	learn: 10.6056324	total: 5.11s	remaining: 3s
189:	learn: 10.5266557	total: 5.14s	remaining: 2.97s
190:	learn: 10.4930964	total: 5.16s	remaining: 2.95s
191:	learn: 10.4201879	total: 5.19s	remaining: 2.92s
192:	learn: 10.3397888	total: 5.22s	remaining: 2.89s
193:	learn: 10.2865417	total: 5.25s	remaining: 2.87s
194:	learn: 10.2334779	total: 5.28s	remaining: 2.84s
195:	learn: 10.1692880	total: 5.32s	remaining: 2.82s
196:	learn: 10.0710712	total: 5.35s	remaining: 2.79s
197:	learn: 10.0112189	total: 5.37s	remaining: 2.77s
198:	learn: 9.9312531	total: 5.4s	remaining: 2.74s
199:	learn: 9.8522991	total: 5.43s	remaining: 2.71s
200:	learn: 9.8089200	total: 5.46s	remaining: 2.69s
201:	learn: 9.7508922	total: 5.48s	remaining: 2.66s
202:	learn: 9.7146850	total: 5.52s	remaining: 2.64s
203:	learn: 9.6641129	total: 5.55s	remaining: 2.61s
204:	learn: 9.6327075	total: 5.58s	remaining: 2.58s
205:	learn: 9.5932487	total: 5.61s	remaining: 2.56s
206:	learn: 9.5445036	total: 5.63s	remaining: 2.53s
207:	learn: 9.4948826	total: 5.66s	remaining: 2.5s
208:	learn: 9.4535103	total: 5.69s	remaining: 2.48s
209:	learn: 9.4123413	total: 5.71s	remaining: 2.45s
210:	learn: 9.3702571	total: 5.75s	remaining: 2.43s
211:	learn: 9.3376174	total: 5.79s	remaining: 2.4s
212:	learn: 9.2978132	total: 5.82s	remaining: 2.38s
213:	learn: 9.2585597	total: 5.84s	remaining: 2.35s
214:	learn: 9.2229218	total: 5.87s	remaining: 2.32s
215:	learn: 9.1931978	total: 5.9s	remaining: 2.29s
216:	learn: 9.1391962	total: 5.93s	remaining: 2.27s
217:	learn: 9.1177140	total: 5.96s	remaining: 2.24s
218:	learn: 9.0779325	total: 5.99s	remaining: 2.22s
219:	learn: 9.0291866	total: 6.03s	remaining: 2.19s
220:	learn: 9.0063703	total: 6.05s	remaining: 2.16s
221:	learn: 8.9747579	total: 6.08s	remaining: 2.14s
222:	learn: 8.9452822	total: 6.11s	remaining: 2.11s
223:	learn: 8.8954806	total: 6.14s	remaining: 2.08s
224:	learn: 8.8756565	total: 6.17s	remaining: 2.06s
225:	learn: 8.8362862	total: 6.2s	remaining: 2.03s
226:	learn: 8.7994104	total: 6.23s	remaining: 2s
227:	learn: 8.7388797	total: 6.26s	remaining: 1.98s
228:	learn: 8.7011029	total: 6.29s	remaining: 1.95s
229:	learn: 8.6617377	total: 6.32s	remaining: 1.92s
230:	learn: 8.6134302	total: 6.35s	remaining: 1.9s
231:	learn: 8.5572452	total: 6.38s	remaining: 1.87s
232:	learn: 8.5450933	total: 6.41s	remaining: 1.84s
233:	learn: 8.5296821	total: 6.43s	remaining: 1.81s
234:	learn: 8.4941428	total: 6.46s	remaining: 1.79s
235:	learn: 8.4682542	total: 6.49s	remaining: 1.76s
236:	learn: 8.4334184	total: 6.52s	remaining: 1.73s
237:	learn: 8.3841236	total: 6.55s	remaining: 1.71s
238:	learn: 8.3495185	total: 6.58s	remaining: 1.68s
239:	learn: 8.3255533	total: 6.61s	remaining: 1.65s
240:	learn: 8.2769513	total: 6.64s	remaining: 1.63s
241:	learn: 8.2392608	total: 6.67s	remaining: 1.6s
242:	learn: 8.2075977	total: 6.7s	remaining: 1.57s
243:	learn: 8.1675762	total: 6.72s	remaining: 1.54s
244:	learn: 8.1426498	total: 6.76s	remaining: 1.52s
245:	learn: 8.1212492	total: 6.79s	remaining: 1.49s
246:	learn: 8.1085819	total: 6.82s	remaining: 1.46s
247:	learn: 8.0970063	total: 6.85s	remaining: 1.44s
248:	learn: 8.0831142	total: 6.88s	remaining: 1.41s
249:	learn: 8.0682674	total: 6.9s	remaining: 1.38s
250:	learn: 8.0255439	total: 6.93s	remaining: 1.35s
251:	learn: 7.9910040	total: 6.96s	remaining: 1.32s
252:	learn: 7.9689255	total: 7.01s	remaining: 1.3s
253:	learn: 7.9472704	total: 7.04s	remaining: 1.27s
254:	learn: 7.9223583	total: 7.07s	remaining: 1.25s
255:	learn: 7.9037436	total: 7.09s	remaining: 1.22s
256:	learn: 7.8699909	total: 7.12s	remaining: 1.19s
257:	learn: 7.8368335	total: 7.15s	remaining: 1.16s
258:	learn: 7.8236324	total: 7.17s	remaining: 1.14s
259:	learn: 7.8036203	total: 7.21s	remaining: 1.11s
260:	learn: 7.7785106	total: 7.24s	remaining: 1.08s
261:	learn: 7.7378238	total: 7.27s	remaining: 1.05s
262:	learn: 7.7076815	total: 7.3s	remaining: 1.03s
263:	learn: 7.6857233	total: 7.32s	remaining: 999ms
264:	learn: 7.6580317	total: 7.35s	remaining: 971ms
265:	learn: 7.6172020	total: 7.38s	remaining: 943ms
266:	learn: 7.5867081	total: 7.41s	remaining: 915ms
267:	learn: 7.5596902	total: 7.44s	remaining: 888ms
268:	learn: 7.5299019	total: 7.47s	remaining: 861ms
269:	learn: 7.5009508	total: 7.5s	remaining: 834ms
270:	learn: 7.4926172	total: 7.53s	remaining: 806ms
271:	learn: 7.4658986	total: 7.56s	remaining: 778ms
272:	learn: 7.4522698	total: 7.59s	remaining: 750ms
273:	learn: 7.4302812	total: 7.62s	remaining: 723ms
274:	learn: 7.3941731	total: 7.64s	remaining: 695ms
275:	learn: 7.3799563	total: 7.68s	remaining: 668ms
276:	learn: 7.3656377	total: 7.7s	remaining: 640ms
277:	learn: 7.3315754	total: 7.74s	remaining: 612ms
278:	learn: 7.3180067	total: 7.76s	remaining: 584ms
279:	learn: 7.2955359	total: 7.79s	remaining: 556ms
280:	learn: 7.2752011	total: 7.82s	remaining: 529ms
281:	learn: 7.2453396	total: 7.84s	remaining: 501ms
282:	learn: 7.2349607	total: 7.87s	remaining: 473ms
283:	learn: 7.2063896	total: 7.91s	remaining: 446ms
284:	learn: 7.1899919	total: 7.94s	remaining: 418ms
285:	learn: 7.1788740	total: 7.97s	remaining: 390ms
286:	learn: 7.1567240	total: 8s	remaining: 363ms
287:	learn: 7.1370331	total: 8.03s	remaining: 335ms
288:	learn: 7.1180486	total: 8.06s	remaining: 307ms
289:	learn: 7.0971315	total: 8.09s	remaining: 279ms
290:	learn: 7.0784398	total: 8.12s	remaining: 251ms
291:	learn: 7.0605330	total: 8.15s	remaining: 223ms
292:	learn: 7.0273458	total: 8.18s	remaining: 195ms
293:	learn: 7.0133663	total: 8.2s	remaining: 167ms
294:	learn: 6.9946693	total: 8.24s	remaining: 140ms
295:	learn: 6.9685770	total: 8.27s	remaining: 112ms
296:	learn: 6.9527470	total: 8.29s	remaining: 83.8ms
297:	learn: 6.9305615	total: 8.32s	remaining: 55.8ms
298:	learn: 6.9039647	total: 8.36s	remaining: 28ms
299:	learn: 6.8927522	total: 8.39s	remaining: 0us
0:	learn: 46.2361874	total: 26.2ms	remaining: 7.82s
1:	learn: 45.3982106	total: 53.4ms	remaining: 7.95s
2:	learn: 44.6777488	total: 93.9ms	remaining: 9.3s
3:	learn: 43.7409965	total: 120ms	remaining: 8.89s
4:	learn: 43.2513213	total: 147ms	remaining: 8.68s
5:	learn: 42.4947195	total: 174ms	remaining: 8.51s
6:	learn: 41.9697708	total: 201ms	remaining: 8.41s
7:	learn: 41.2445289	total: 228ms	remaining: 8.33s
8:	learn: 40.5360490	total: 255ms	remaining: 8.24s
9:	learn: 39.9370297	total: 283ms	remaining: 8.21s
10:	learn: 39.1060281	total: 331ms	remaining: 8.7s
11:	learn: 38.6733181	total: 360ms	remaining: 8.63s
12:	learn: 38.3760896	total: 388ms	remaining: 8.57s
13:	learn: 37.9842684	total: 416ms	remaining: 8.49s
14:	learn: 37.4860092	total: 442ms	remaining: 8.4s
15:	learn: 36.9450018	total: 470ms	remaining: 8.35s
16:	learn: 36.5144396	total: 498ms	remaining: 8.3s
17:	learn: 36.0168729	total: 527ms	remaining: 8.25s
18:	learn: 35.4748970	total: 557ms	remaining: 8.24s
19:	learn: 35.0390482	total: 593ms	remaining: 8.3s
20:	learn: 34.6776156	total: 620ms	remaining: 8.24s
21:	learn: 34.3978384	total: 648ms	remaining: 8.19s
22:	learn: 34.0289970	total: 675ms	remaining: 8.12s
23:	learn: 33.6138883	total: 700ms	remaining: 8.05s
24:	learn: 33.2279106	total: 728ms	remaining: 8.01s
25:	learn: 32.8252468	total: 765ms	remaining: 8.06s
26:	learn: 32.4666371	total: 793ms	remaining: 8.02s
27:	learn: 32.1644689	total: 828ms	remaining: 8.05s
28:	learn: 31.6892888	total: 858ms	remaining: 8.02s
29:	learn: 31.4013853	total: 886ms	remaining: 7.97s
30:	learn: 31.0918470	total: 913ms	remaining: 7.92s
31:	learn: 30.7382925	total: 940ms	remaining: 7.87s
32:	learn: 30.3837621	total: 968ms	remaining: 7.83s
33:	learn: 29.9818772	total: 1s	remaining: 7.83s
34:	learn: 29.7173064	total: 1.03s	remaining: 7.79s
35:	learn: 29.2164083	total: 1.06s	remaining: 7.8s
36:	learn: 28.9131554	total: 1.09s	remaining: 7.75s
37:	learn: 28.5257233	total: 1.12s	remaining: 7.7s
38:	learn: 28.2965944	total: 1.14s	remaining: 7.65s
39:	learn: 28.0804622	total: 1.17s	remaining: 7.61s
40:	learn: 27.8304426	total: 1.2s	remaining: 7.61s
41:	learn: 27.4453684	total: 1.23s	remaining: 7.57s
42:	learn: 27.3017075	total: 1.26s	remaining: 7.53s
43:	learn: 27.0701323	total: 1.29s	remaining: 7.49s
44:	learn: 26.8649692	total: 1.32s	remaining: 7.5s
45:	learn: 26.6301705	total: 1.33s	remaining: 7.35s
46:	learn: 26.4341772	total: 1.36s	remaining: 7.31s
47:	learn: 26.2192154	total: 1.39s	remaining: 7.27s
48:	learn: 25.9631071	total: 1.42s	remaining: 7.25s
49:	learn: 25.5792340	total: 1.45s	remaining: 7.25s
50:	learn: 25.3916810	total: 1.48s	remaining: 7.21s
51:	learn: 25.2370365	total: 1.5s	remaining: 7.17s
52:	learn: 24.9965355	total: 1.53s	remaining: 7.13s
53:	learn: 24.8178278	total: 1.56s	remaining: 7.13s
54:	learn: 24.6443095	total: 1.59s	remaining: 7.09s
55:	learn: 24.4870683	total: 1.62s	remaining: 7.07s
56:	learn: 24.2978173	total: 1.65s	remaining: 7.04s
57:	learn: 24.1340740	total: 1.68s	remaining: 7.01s
58:	learn: 23.8586489	total: 1.71s	remaining: 6.98s
59:	learn: 23.6035925	total: 1.74s	remaining: 6.95s
60:	learn: 23.4530593	total: 1.76s	remaining: 6.91s
61:	learn: 23.2783421	total: 1.8s	remaining: 6.9s
62:	learn: 23.1030553	total: 1.83s	remaining: 6.87s
63:	learn: 22.9659704	total: 1.86s	remaining: 6.86s
64:	learn: 22.8283407	total: 1.89s	remaining: 6.82s
65:	learn: 22.7134955	total: 1.91s	remaining: 6.79s
66:	learn: 22.5782888	total: 1.94s	remaining: 6.75s
67:	learn: 22.4557438	total: 1.97s	remaining: 6.71s
68:	learn: 22.3316398	total: 1.99s	remaining: 6.67s
69:	learn: 22.1161650	total: 2.02s	remaining: 6.64s
70:	learn: 21.9806112	total: 2.06s	remaining: 6.63s
71:	learn: 21.8705364	total: 2.1s	remaining: 6.64s
72:	learn: 21.7450899	total: 2.12s	remaining: 6.6s
73:	learn: 21.5593132	total: 2.15s	remaining: 6.57s
74:	learn: 21.4206323	total: 2.18s	remaining: 6.54s
75:	learn: 21.2904965	total: 2.21s	remaining: 6.5s
76:	learn: 21.1898852	total: 2.23s	remaining: 6.47s
77:	learn: 21.0582226	total: 2.26s	remaining: 6.43s
78:	learn: 20.9414763	total: 2.3s	remaining: 6.43s
79:	learn: 20.7847655	total: 2.33s	remaining: 6.4s
80:	learn: 20.6413634	total: 2.35s	remaining: 6.37s
81:	learn: 20.5314598	total: 2.38s	remaining: 6.33s
82:	learn: 20.3298485	total: 2.41s	remaining: 6.3s
83:	learn: 20.2197693	total: 2.44s	remaining: 6.26s
84:	learn: 20.1021239	total: 2.46s	remaining: 6.23s
85:	learn: 20.0001932	total: 2.49s	remaining: 6.19s
86:	learn: 19.8813166	total: 2.54s	remaining: 6.21s
87:	learn: 19.7335638	total: 2.56s	remaining: 6.18s
88:	learn: 19.6116984	total: 2.59s	remaining: 6.14s
89:	learn: 19.4739468	total: 2.62s	remaining: 6.11s
90:	learn: 19.3561691	total: 2.65s	remaining: 6.08s
91:	learn: 19.2462168	total: 2.67s	remaining: 6.04s
92:	learn: 19.1423750	total: 2.7s	remaining: 6.01s
93:	learn: 19.0313643	total: 2.73s	remaining: 5.98s
94:	learn: 18.9323468	total: 2.76s	remaining: 5.97s
95:	learn: 18.8504682	total: 2.8s	remaining: 5.95s
96:	learn: 18.7831778	total: 2.83s	remaining: 5.92s
97:	learn: 18.6811943	total: 2.85s	remaining: 5.88s
98:	learn: 18.5908821	total: 2.88s	remaining: 5.85s
99:	learn: 18.4714725	total: 2.91s	remaining: 5.82s
100:	learn: 18.4186226	total: 2.94s	remaining: 5.79s
101:	learn: 18.3174294	total: 2.97s	remaining: 5.77s
102:	learn: 18.2499823	total: 3s	remaining: 5.74s
103:	learn: 18.1797568	total: 3.03s	remaining: 5.72s
104:	learn: 18.0633880	total: 3.06s	remaining: 5.69s
105:	learn: 17.9230666	total: 3.09s	remaining: 5.65s
106:	learn: 17.8255078	total: 3.12s	remaining: 5.62s
107:	learn: 17.7301999	total: 3.14s	remaining: 5.59s
108:	learn: 17.6643624	total: 3.17s	remaining: 5.56s
109:	learn: 17.5888284	total: 3.2s	remaining: 5.53s
110:	learn: 17.4829166	total: 3.23s	remaining: 5.5s
111:	learn: 17.3884998	total: 3.27s	remaining: 5.48s
112:	learn: 17.3190040	total: 3.29s	remaining: 5.45s
113:	learn: 17.2327089	total: 3.32s	remaining: 5.42s
114:	learn: 17.1647683	total: 3.35s	remaining: 5.38s
115:	learn: 17.0566172	total: 3.37s	remaining: 5.35s
116:	learn: 16.9678905	total: 3.4s	remaining: 5.32s
117:	learn: 16.8708649	total: 3.44s	remaining: 5.31s
118:	learn: 16.8044407	total: 3.47s	remaining: 5.28s
119:	learn: 16.7826952	total: 3.5s	remaining: 5.25s
120:	learn: 16.6904252	total: 3.53s	remaining: 5.23s
121:	learn: 16.6389060	total: 3.56s	remaining: 5.2s
122:	learn: 16.6175863	total: 3.59s	remaining: 5.16s
123:	learn: 16.5491464	total: 3.62s	remaining: 5.14s
124:	learn: 16.4907928	total: 3.65s	remaining: 5.11s
125:	learn: 16.4498651	total: 3.68s	remaining: 5.08s
126:	learn: 16.3775502	total: 3.7s	remaining: 5.04s
127:	learn: 16.3075622	total: 3.73s	remaining: 5.01s
128:	learn: 16.2141203	total: 3.77s	remaining: 4.99s
129:	learn: 16.1287920	total: 3.79s	remaining: 4.96s
130:	learn: 15.9776702	total: 3.82s	remaining: 4.93s
131:	learn: 15.8957114	total: 3.85s	remaining: 4.9s
132:	learn: 15.8623913	total: 3.89s	remaining: 4.88s
133:	learn: 15.7410770	total: 3.92s	remaining: 4.85s
134:	learn: 15.6800520	total: 3.94s	remaining: 4.82s
135:	learn: 15.6327751	total: 3.97s	remaining: 4.79s
136:	learn: 15.5499724	total: 4s	remaining: 4.76s
137:	learn: 15.4431979	total: 4.03s	remaining: 4.74s
138:	learn: 15.3542910	total: 4.07s	remaining: 4.71s
139:	learn: 15.3024922	total: 4.09s	remaining: 4.68s
140:	learn: 15.2729651	total: 4.12s	remaining: 4.65s
141:	learn: 15.1606911	total: 4.15s	remaining: 4.62s
142:	learn: 15.0979047	total: 4.18s	remaining: 4.58s
143:	learn: 15.0141377	total: 4.2s	remaining: 4.55s
144:	learn: 14.9689028	total: 4.23s	remaining: 4.52s
145:	learn: 14.8925843	total: 4.27s	remaining: 4.5s
146:	learn: 14.8587722	total: 4.31s	remaining: 4.48s
147:	learn: 14.8360363	total: 4.33s	remaining: 4.45s
148:	learn: 14.7676016	total: 4.36s	remaining: 4.42s
149:	learn: 14.6736810	total: 4.39s	remaining: 4.39s
150:	learn: 14.6261132	total: 4.42s	remaining: 4.36s
151:	learn: 14.5723176	total: 4.44s	remaining: 4.33s
152:	learn: 14.5100088	total: 4.47s	remaining: 4.3s
153:	learn: 14.4025427	total: 4.51s	remaining: 4.28s
154:	learn: 14.3282038	total: 4.54s	remaining: 4.25s
155:	learn: 14.2672601	total: 4.57s	remaining: 4.22s
156:	learn: 14.1558952	total: 4.59s	remaining: 4.18s
157:	learn: 14.0328502	total: 4.62s	remaining: 4.15s
158:	learn: 13.9769510	total: 4.65s	remaining: 4.12s
159:	learn: 13.9259386	total: 4.67s	remaining: 4.09s
160:	learn: 13.8712208	total: 4.7s	remaining: 4.06s
161:	learn: 13.8553696	total: 4.74s	remaining: 4.04s
162:	learn: 13.7500608	total: 4.78s	remaining: 4.02s
163:	learn: 13.7258160	total: 4.81s	remaining: 3.99s
164:	learn: 13.6125019	total: 4.83s	remaining: 3.96s
165:	learn: 13.5681577	total: 4.86s	remaining: 3.92s
166:	learn: 13.5101392	total: 4.89s	remaining: 3.9s
167:	learn: 13.4944170	total: 4.92s	remaining: 3.87s
168:	learn: 13.4758510	total: 4.95s	remaining: 3.84s
169:	learn: 13.4513818	total: 4.98s	remaining: 3.81s
170:	learn: 13.3378793	total: 5.01s	remaining: 3.78s
171:	learn: 13.2934120	total: 5.04s	remaining: 3.75s
172:	learn: 13.2442661	total: 5.07s	remaining: 3.72s
173:	learn: 13.1852300	total: 5.09s	remaining: 3.69s
174:	learn: 13.0772632	total: 5.12s	remaining: 3.66s
175:	learn: 13.0402354	total: 5.16s	remaining: 3.64s
176:	learn: 13.0047433	total: 5.19s	remaining: 3.6s
177:	learn: 12.9303834	total: 5.22s	remaining: 3.58s
178:	learn: 12.8598436	total: 5.25s	remaining: 3.55s
179:	learn: 12.7990665	total: 5.28s	remaining: 3.52s
180:	learn: 12.7095636	total: 5.31s	remaining: 3.49s
181:	learn: 12.6340644	total: 5.34s	remaining: 3.46s
182:	learn: 12.5621624	total: 5.37s	remaining: 3.43s
183:	learn: 12.5354249	total: 5.4s	remaining: 3.4s
184:	learn: 12.4829336	total: 5.42s	remaining: 3.37s
185:	learn: 12.4529388	total: 5.45s	remaining: 3.34s
186:	learn: 12.3788317	total: 5.48s	remaining: 3.31s
187:	learn: 12.3037316	total: 5.51s	remaining: 3.28s
188:	learn: 12.1983493	total: 5.55s	remaining: 3.26s
189:	learn: 12.1711675	total: 5.58s	remaining: 3.23s
190:	learn: 12.1217733	total: 5.6s	remaining: 3.2s
191:	learn: 12.0832600	total: 5.63s	remaining: 3.17s
192:	learn: 12.0127028	total: 5.66s	remaining: 3.14s
193:	learn: 11.9255354	total: 5.69s	remaining: 3.11s
194:	learn: 11.8908213	total: 5.71s	remaining: 3.08s
195:	learn: 11.8443328	total: 5.75s	remaining: 3.05s
196:	learn: 11.8103191	total: 5.78s	remaining: 3.02s
197:	learn: 11.7696031	total: 5.81s	remaining: 2.99s
198:	learn: 11.7200811	total: 5.83s	remaining: 2.96s
199:	learn: 11.6551205	total: 5.86s	remaining: 2.93s
200:	learn: 11.6238265	total: 5.89s	remaining: 2.9s
201:	learn: 11.5225634	total: 5.92s	remaining: 2.87s
202:	learn: 11.4468078	total: 5.94s	remaining: 2.84s
203:	learn: 11.4143074	total: 5.98s	remaining: 2.81s
204:	learn: 11.3831537	total: 6.02s	remaining: 2.79s
205:	learn: 11.3559117	total: 6.04s	remaining: 2.76s
206:	learn: 11.3453635	total: 6.07s	remaining: 2.73s
207:	learn: 11.3023110	total: 6.1s	remaining: 2.7s
208:	learn: 11.2751825	total: 6.13s	remaining: 2.67s
209:	learn: 11.2454377	total: 6.15s	remaining: 2.64s
210:	learn: 11.2300814	total: 6.18s	remaining: 2.61s
211:	learn: 11.1739504	total: 6.21s	remaining: 2.58s
212:	learn: 11.1388920	total: 6.25s	remaining: 2.55s
213:	learn: 11.0933003	total: 6.28s	remaining: 2.52s
214:	learn: 11.0336421	total: 6.3s	remaining: 2.49s
215:	learn: 11.0041887	total: 6.33s	remaining: 2.46s
216:	learn: 10.9756683	total: 6.36s	remaining: 2.43s
217:	learn: 10.9622324	total: 6.38s	remaining: 2.4s
218:	learn: 10.9400379	total: 6.41s	remaining: 2.37s
219:	learn: 10.9122171	total: 6.45s	remaining: 2.35s
220:	learn: 10.8702127	total: 6.49s	remaining: 2.32s
221:	learn: 10.8384354	total: 6.51s	remaining: 2.29s
222:	learn: 10.8064597	total: 6.54s	remaining: 2.26s
223:	learn: 10.7753840	total: 6.57s	remaining: 2.23s
224:	learn: 10.7500544	total: 6.59s	remaining: 2.2s
225:	learn: 10.7000854	total: 6.62s	remaining: 2.17s
226:	learn: 10.6788968	total: 6.65s	remaining: 2.14s
227:	learn: 10.6541308	total: 6.68s	remaining: 2.11s
228:	learn: 10.6163808	total: 6.72s	remaining: 2.08s
229:	learn: 10.5664491	total: 6.75s	remaining: 2.05s
230:	learn: 10.5384259	total: 6.78s	remaining: 2.02s
231:	learn: 10.5168722	total: 6.8s	remaining: 1.99s
232:	learn: 10.4880672	total: 6.83s	remaining: 1.96s
233:	learn: 10.4528880	total: 6.86s	remaining: 1.93s
234:	learn: 10.4358848	total: 6.89s	remaining: 1.91s
235:	learn: 10.4043764	total: 6.92s	remaining: 1.88s
236:	learn: 10.3835177	total: 6.95s	remaining: 1.85s
237:	learn: 10.3564621	total: 6.99s	remaining: 1.82s
238:	learn: 10.3300698	total: 7.01s	remaining: 1.79s
239:	learn: 10.3072404	total: 7.04s	remaining: 1.76s
240:	learn: 10.2885220	total: 7.08s	remaining: 1.73s
241:	learn: 10.2801250	total: 7.11s	remaining: 1.7s
242:	learn: 10.2598176	total: 7.13s	remaining: 1.67s
243:	learn: 10.2300900	total: 7.16s	remaining: 1.64s
244:	learn: 10.2013001	total: 7.18s	remaining: 1.61s
245:	learn: 10.1581217	total: 7.22s	remaining: 1.58s
246:	learn: 10.1499441	total: 7.25s	remaining: 1.55s
247:	learn: 10.1216778	total: 7.27s	remaining: 1.52s
248:	learn: 10.0802136	total: 7.31s	remaining: 1.5s
249:	learn: 10.0644908	total: 7.34s	remaining: 1.47s
250:	learn: 10.0271888	total: 7.37s	remaining: 1.44s
251:	learn: 9.9585656	total: 7.39s	remaining: 1.41s
252:	learn: 9.9156424	total: 7.42s	remaining: 1.38s
253:	learn: 9.9015845	total: 7.45s	remaining: 1.35s
254:	learn: 9.8802631	total: 7.49s	remaining: 1.32s
255:	learn: 9.8637488	total: 7.52s	remaining: 1.29s
256:	learn: 9.8431359	total: 7.55s	remaining: 1.26s
257:	learn: 9.8100809	total: 7.58s	remaining: 1.23s
258:	learn: 9.7856290	total: 7.6s	remaining: 1.2s
259:	learn: 9.7684665	total: 7.63s	remaining: 1.17s
260:	learn: 9.7491274	total: 7.66s	remaining: 1.14s
261:	learn: 9.7290952	total: 7.68s	remaining: 1.11s
262:	learn: 9.6988988	total: 7.72s	remaining: 1.08s
263:	learn: 9.6731295	total: 7.75s	remaining: 1.06s
264:	learn: 9.6511532	total: 7.78s	remaining: 1.03s
265:	learn: 9.6215242	total: 7.81s	remaining: 999ms
266:	learn: 9.6028004	total: 7.84s	remaining: 969ms
267:	learn: 9.5849636	total: 7.87s	remaining: 940ms
268:	learn: 9.5537664	total: 7.9s	remaining: 910ms
269:	learn: 9.5330605	total: 7.92s	remaining: 880ms
270:	learn: 9.5181912	total: 7.96s	remaining: 852ms
271:	learn: 9.5123758	total: 7.99s	remaining: 822ms
272:	learn: 9.4832216	total: 8.02s	remaining: 793ms
273:	learn: 9.4638778	total: 8.05s	remaining: 764ms
274:	learn: 9.4456890	total: 8.08s	remaining: 734ms
275:	learn: 9.4163159	total: 8.1s	remaining: 705ms
276:	learn: 9.3823442	total: 8.13s	remaining: 675ms
277:	learn: 9.3549677	total: 8.16s	remaining: 646ms
278:	learn: 9.3386790	total: 8.18s	remaining: 616ms
279:	learn: 9.3273180	total: 8.22s	remaining: 587ms
280:	learn: 9.2861700	total: 8.26s	remaining: 558ms
281:	learn: 9.2564421	total: 8.29s	remaining: 529ms
282:	learn: 9.2362960	total: 8.31s	remaining: 499ms
283:	learn: 9.2213087	total: 8.34s	remaining: 470ms
284:	learn: 9.2137366	total: 8.37s	remaining: 440ms
285:	learn: 9.2036812	total: 8.39s	remaining: 411ms
286:	learn: 9.1880212	total: 8.42s	remaining: 382ms
287:	learn: 9.1753952	total: 8.46s	remaining: 353ms
288:	learn: 9.1502121	total: 8.49s	remaining: 323ms
289:	learn: 9.1346178	total: 8.52s	remaining: 294ms
290:	learn: 9.1221911	total: 8.54s	remaining: 264ms
291:	learn: 9.0950561	total: 8.57s	remaining: 235ms
292:	learn: 9.0742575	total: 8.6s	remaining: 205ms
293:	learn: 9.0466144	total: 8.63s	remaining: 176ms
294:	learn: 8.9886202	total: 8.65s	remaining: 147ms
295:	learn: 8.9467069	total: 8.7s	remaining: 118ms
296:	learn: 8.9265029	total: 8.72s	remaining: 88.1ms
297:	learn: 8.8995921	total: 8.75s	remaining: 58.7ms
298:	learn: 8.8813384	total: 8.78s	remaining: 29.4ms
299:	learn: 8.8736256	total: 8.81s	remaining: 0us
0:	learn: 46.8188846	total: 33.9ms	remaining: 10.1s
1:	learn: 45.9726402	total: 61.1ms	remaining: 9.1s
2:	learn: 45.2144460	total: 86ms	remaining: 8.51s
3:	learn: 44.2563351	total: 113ms	remaining: 8.34s
4:	learn: 43.5408994	total: 139ms	remaining: 8.22s
5:	learn: 42.8364810	total: 166ms	remaining: 8.11s
6:	learn: 42.0153804	total: 190ms	remaining: 7.97s
7:	learn: 41.5473671	total: 216ms	remaining: 7.88s
8:	learn: 40.7744756	total: 241ms	remaining: 7.78s
9:	learn: 40.1702554	total: 267ms	remaining: 7.74s
10:	learn: 39.4636842	total: 293ms	remaining: 7.69s
11:	learn: 38.8831049	total: 313ms	remaining: 7.5s
12:	learn: 38.5197723	total: 340ms	remaining: 7.51s
13:	learn: 38.1990585	total: 366ms	remaining: 7.48s
14:	learn: 37.6657989	total: 391ms	remaining: 7.43s
15:	learn: 37.2969732	total: 418ms	remaining: 7.41s
16:	learn: 36.8221350	total: 443ms	remaining: 7.38s
17:	learn: 36.2123369	total: 467ms	remaining: 7.32s
18:	learn: 35.8755271	total: 493ms	remaining: 7.29s
19:	learn: 35.4739707	total: 520ms	remaining: 7.28s
20:	learn: 35.0012472	total: 554ms	remaining: 7.35s
21:	learn: 34.6477631	total: 579ms	remaining: 7.32s
22:	learn: 34.2247055	total: 605ms	remaining: 7.28s
23:	learn: 33.8047150	total: 629ms	remaining: 7.24s
24:	learn: 33.3972078	total: 654ms	remaining: 7.19s
25:	learn: 32.8076440	total: 678ms	remaining: 7.15s
26:	learn: 32.4957574	total: 703ms	remaining: 7.11s
27:	learn: 32.1823910	total: 734ms	remaining: 7.13s
28:	learn: 31.8761156	total: 762ms	remaining: 7.12s
29:	learn: 31.6118984	total: 788ms	remaining: 7.09s
30:	learn: 31.2041248	total: 814ms	remaining: 7.07s
31:	learn: 30.9798718	total: 842ms	remaining: 7.05s
32:	learn: 30.6632137	total: 869ms	remaining: 7.03s
33:	learn: 30.3572185	total: 894ms	remaining: 7s
34:	learn: 30.0045459	total: 919ms	remaining: 6.96s
35:	learn: 29.7559980	total: 945ms	remaining: 6.93s
36:	learn: 29.3862349	total: 977ms	remaining: 6.95s
37:	learn: 29.1066177	total: 1.01s	remaining: 6.94s
38:	learn: 28.8253904	total: 1.03s	remaining: 6.91s
39:	learn: 28.4917320	total: 1.06s	remaining: 6.88s
40:	learn: 28.2730169	total: 1.08s	remaining: 6.85s
41:	learn: 28.0652338	total: 1.11s	remaining: 6.82s
42:	learn: 27.8025307	total: 1.13s	remaining: 6.78s
43:	learn: 27.5627117	total: 1.16s	remaining: 6.75s
44:	learn: 27.3217632	total: 1.19s	remaining: 6.75s
45:	learn: 27.0112958	total: 1.23s	remaining: 6.78s
46:	learn: 26.8300808	total: 1.25s	remaining: 6.76s
47:	learn: 26.5816136	total: 1.28s	remaining: 6.73s
48:	learn: 26.3838749	total: 1.31s	remaining: 6.71s
49:	learn: 26.2191374	total: 1.33s	remaining: 6.67s
50:	learn: 26.0298048	total: 1.36s	remaining: 6.63s
51:	learn: 25.8685966	total: 1.38s	remaining: 6.6s
52:	learn: 25.5853885	total: 1.41s	remaining: 6.58s
53:	learn: 25.2325006	total: 1.44s	remaining: 6.56s
54:	learn: 25.0294895	total: 1.47s	remaining: 6.53s
55:	learn: 24.8123194	total: 1.49s	remaining: 6.51s
56:	learn: 24.6175769	total: 1.52s	remaining: 6.47s
57:	learn: 24.4799104	total: 1.54s	remaining: 6.44s
58:	learn: 24.2874293	total: 1.57s	remaining: 6.4s
59:	learn: 24.0996038	total: 1.59s	remaining: 6.37s
60:	learn: 23.8568310	total: 1.63s	remaining: 6.38s
61:	learn: 23.6508912	total: 1.66s	remaining: 6.36s
62:	learn: 23.4201097	total: 1.68s	remaining: 6.33s
63:	learn: 23.1941561	total: 1.71s	remaining: 6.31s
64:	learn: 23.0619226	total: 1.74s	remaining: 6.28s
65:	learn: 22.9049921	total: 1.76s	remaining: 6.24s
66:	learn: 22.7833057	total: 1.79s	remaining: 6.21s
67:	learn: 22.6428922	total: 1.81s	remaining: 6.18s
68:	learn: 22.4738494	total: 1.84s	remaining: 6.18s
69:	learn: 22.3126837	total: 1.87s	remaining: 6.15s
70:	learn: 22.1934569	total: 1.9s	remaining: 6.11s
71:	learn: 21.9921513	total: 1.92s	remaining: 6.08s
72:	learn: 21.7966100	total: 1.94s	remaining: 6.05s
73:	learn: 21.6703669	total: 1.97s	remaining: 6.01s
74:	learn: 21.5517108	total: 2s	remaining: 5.99s
75:	learn: 21.3795499	total: 2.02s	remaining: 5.95s
76:	learn: 21.2321877	total: 2.05s	remaining: 5.93s
77:	learn: 21.0921581	total: 2.08s	remaining: 5.92s
78:	learn: 20.9204877	total: 2.11s	remaining: 5.89s
79:	learn: 20.7078986	total: 2.13s	remaining: 5.87s
80:	learn: 20.6069210	total: 2.16s	remaining: 5.84s
81:	learn: 20.3718639	total: 2.18s	remaining: 5.81s
82:	learn: 20.2660046	total: 2.21s	remaining: 5.78s
83:	learn: 20.1453571	total: 2.23s	remaining: 5.75s
84:	learn: 20.0303912	total: 2.26s	remaining: 5.72s
85:	learn: 19.9530417	total: 2.29s	remaining: 5.7s
86:	learn: 19.8719239	total: 2.31s	remaining: 5.67s
87:	learn: 19.8051193	total: 2.34s	remaining: 5.63s
88:	learn: 19.6390791	total: 2.36s	remaining: 5.6s
89:	learn: 19.5163125	total: 2.37s	remaining: 5.52s
90:	learn: 19.3820098	total: 2.39s	remaining: 5.49s
91:	learn: 19.2634584	total: 2.41s	remaining: 5.46s
92:	learn: 19.1877570	total: 2.44s	remaining: 5.43s
93:	learn: 19.1136222	total: 2.46s	remaining: 5.4s
94:	learn: 19.0378846	total: 2.5s	remaining: 5.4s
95:	learn: 18.9699092	total: 2.52s	remaining: 5.37s
96:	learn: 18.8750815	total: 2.55s	remaining: 5.33s
97:	learn: 18.7851544	total: 2.57s	remaining: 5.3s
98:	learn: 18.6886359	total: 2.6s	remaining: 5.28s
99:	learn: 18.5967562	total: 2.62s	remaining: 5.25s
100:	learn: 18.5134464	total: 2.65s	remaining: 5.21s
101:	learn: 18.4449133	total: 2.67s	remaining: 5.19s
102:	learn: 18.3604967	total: 2.7s	remaining: 5.17s
103:	learn: 18.2256969	total: 2.72s	remaining: 5.13s
104:	learn: 18.1523158	total: 2.75s	remaining: 5.11s
105:	learn: 18.0374485	total: 2.77s	remaining: 5.08s
106:	learn: 17.9731649	total: 2.8s	remaining: 5.04s
107:	learn: 17.9251416	total: 2.82s	remaining: 5.01s
108:	learn: 17.8617656	total: 2.85s	remaining: 4.99s
109:	learn: 17.7727167	total: 2.87s	remaining: 4.96s
110:	learn: 17.6826822	total: 2.9s	remaining: 4.94s
111:	learn: 17.5769208	total: 2.93s	remaining: 4.92s
112:	learn: 17.4884222	total: 2.95s	remaining: 4.89s
113:	learn: 17.3765888	total: 2.98s	remaining: 4.86s
114:	learn: 17.3037030	total: 3s	remaining: 4.83s
115:	learn: 17.2153950	total: 3.03s	remaining: 4.8s
116:	learn: 17.1490540	total: 3.05s	remaining: 4.77s
117:	learn: 17.0634815	total: 3.08s	remaining: 4.75s
118:	learn: 16.9513537	total: 3.1s	remaining: 4.72s
119:	learn: 16.8224657	total: 3.13s	remaining: 4.7s
120:	learn: 16.7342682	total: 3.15s	remaining: 4.67s
121:	learn: 16.6438712	total: 3.18s	remaining: 4.64s
122:	learn: 16.5473010	total: 3.2s	remaining: 4.61s
123:	learn: 16.4734305	total: 3.23s	remaining: 4.58s
124:	learn: 16.3442257	total: 3.25s	remaining: 4.55s
125:	learn: 16.2501040	total: 3.28s	remaining: 4.53s
126:	learn: 16.1413869	total: 3.3s	remaining: 4.5s
127:	learn: 16.0650386	total: 3.34s	remaining: 4.49s
128:	learn: 15.9654002	total: 3.36s	remaining: 4.46s
129:	learn: 15.9016632	total: 3.39s	remaining: 4.43s
130:	learn: 15.8386094	total: 3.41s	remaining: 4.4s
131:	learn: 15.7695128	total: 3.44s	remaining: 4.37s
132:	learn: 15.6863810	total: 3.46s	remaining: 4.34s
133:	learn: 15.6014453	total: 3.48s	remaining: 4.32s
134:	learn: 15.5533660	total: 3.51s	remaining: 4.29s
135:	learn: 15.4234281	total: 3.53s	remaining: 4.26s
136:	learn: 15.3971004	total: 3.56s	remaining: 4.24s
137:	learn: 15.3398975	total: 3.59s	remaining: 4.21s
138:	learn: 15.2689760	total: 3.61s	remaining: 4.18s
139:	learn: 15.1651925	total: 3.63s	remaining: 4.15s
140:	learn: 15.1125683	total: 3.66s	remaining: 4.13s
141:	learn: 15.0573442	total: 3.68s	remaining: 4.1s
142:	learn: 15.0129880	total: 3.71s	remaining: 4.07s
143:	learn: 14.9597237	total: 3.74s	remaining: 4.05s
144:	learn: 14.9235224	total: 3.77s	remaining: 4.03s
145:	learn: 14.8333558	total: 3.8s	remaining: 4.01s
146:	learn: 14.7273903	total: 3.83s	remaining: 3.99s
147:	learn: 14.6622611	total: 3.86s	remaining: 3.96s
148:	learn: 14.5908471	total: 3.89s	remaining: 3.94s
149:	learn: 14.5076303	total: 3.92s	remaining: 3.92s
150:	learn: 14.4133074	total: 3.94s	remaining: 3.89s
151:	learn: 14.3479884	total: 3.97s	remaining: 3.86s
152:	learn: 14.2884168	total: 4s	remaining: 3.84s
153:	learn: 14.2238756	total: 4.03s	remaining: 3.82s
154:	learn: 14.1598526	total: 4.06s	remaining: 3.79s
155:	learn: 14.1006242	total: 4.09s	remaining: 3.78s
156:	learn: 14.0116182	total: 4.12s	remaining: 3.75s
157:	learn: 13.9456796	total: 4.14s	remaining: 3.72s
158:	learn: 13.8579899	total: 4.17s	remaining: 3.7s
159:	learn: 13.8094183	total: 4.2s	remaining: 3.67s
160:	learn: 13.6558280	total: 4.23s	remaining: 3.65s
161:	learn: 13.5837377	total: 4.26s	remaining: 3.63s
162:	learn: 13.5105749	total: 4.29s	remaining: 3.61s
163:	learn: 13.3959486	total: 4.33s	remaining: 3.59s
164:	learn: 13.3427701	total: 4.36s	remaining: 3.56s
165:	learn: 13.2742960	total: 4.38s	remaining: 3.54s
166:	learn: 13.2232946	total: 4.41s	remaining: 3.51s
167:	learn: 13.1639434	total: 4.43s	remaining: 3.48s
168:	learn: 13.1001998	total: 4.47s	remaining: 3.46s
169:	learn: 13.0187776	total: 4.5s	remaining: 3.44s
170:	learn: 12.9284509	total: 4.53s	remaining: 3.41s
171:	learn: 12.8564085	total: 4.56s	remaining: 3.39s
172:	learn: 12.7786756	total: 4.59s	remaining: 3.37s
173:	learn: 12.7404900	total: 4.61s	remaining: 3.34s
174:	learn: 12.6844545	total: 4.64s	remaining: 3.31s
175:	learn: 12.6021043	total: 4.67s	remaining: 3.29s
176:	learn: 12.5809817	total: 4.71s	remaining: 3.27s
177:	learn: 12.5380271	total: 4.74s	remaining: 3.25s
178:	learn: 12.5044811	total: 4.76s	remaining: 3.22s
179:	learn: 12.3824039	total: 4.79s	remaining: 3.19s
180:	learn: 12.3163074	total: 4.83s	remaining: 3.17s
181:	learn: 12.2260642	total: 4.86s	remaining: 3.15s
182:	learn: 12.1962262	total: 4.88s	remaining: 3.12s
183:	learn: 12.1075043	total: 4.92s	remaining: 3.1s
184:	learn: 12.0299051	total: 4.94s	remaining: 3.07s
185:	learn: 11.9750127	total: 4.97s	remaining: 3.04s
186:	learn: 11.9007112	total: 5s	remaining: 3.02s
187:	learn: 11.8169703	total: 5.02s	remaining: 2.99s
188:	learn: 11.7451722	total: 5.06s	remaining: 2.97s
189:	learn: 11.6844013	total: 5.09s	remaining: 2.95s
190:	learn: 11.5844322	total: 5.13s	remaining: 2.92s
191:	learn: 11.5389707	total: 5.15s	remaining: 2.9s
192:	learn: 11.4989050	total: 5.18s	remaining: 2.87s
193:	learn: 11.4305771	total: 5.21s	remaining: 2.85s
194:	learn: 11.3188820	total: 5.24s	remaining: 2.82s
195:	learn: 11.2915156	total: 5.26s	remaining: 2.79s
196:	learn: 11.2329580	total: 5.3s	remaining: 2.77s
197:	learn: 11.1759941	total: 5.33s	remaining: 2.74s
198:	learn: 11.1562433	total: 5.36s	remaining: 2.72s
199:	learn: 11.1118627	total: 5.39s	remaining: 2.69s
200:	learn: 11.0908712	total: 5.41s	remaining: 2.67s
201:	learn: 11.0365972	total: 5.44s	remaining: 2.64s
202:	learn: 10.9633932	total: 5.47s	remaining: 2.61s
203:	learn: 10.8837891	total: 5.5s	remaining: 2.59s
204:	learn: 10.8038584	total: 5.52s	remaining: 2.56s
205:	learn: 10.7729034	total: 5.56s	remaining: 2.54s
206:	learn: 10.7289468	total: 5.6s	remaining: 2.52s
207:	learn: 10.6734340	total: 5.63s	remaining: 2.49s
208:	learn: 10.6482350	total: 5.65s	remaining: 2.46s
209:	learn: 10.5975506	total: 5.68s	remaining: 2.44s
210:	learn: 10.5528228	total: 5.71s	remaining: 2.41s
211:	learn: 10.5370360	total: 5.74s	remaining: 2.38s
212:	learn: 10.5230215	total: 5.76s	remaining: 2.35s
213:	learn: 10.4857244	total: 5.8s	remaining: 2.33s
214:	learn: 10.4212276	total: 5.83s	remaining: 2.3s
215:	learn: 10.4085529	total: 5.86s	remaining: 2.28s
216:	learn: 10.3355719	total: 5.88s	remaining: 2.25s
217:	learn: 10.2785284	total: 5.91s	remaining: 2.22s
218:	learn: 10.2125565	total: 5.94s	remaining: 2.19s
219:	learn: 10.1797782	total: 5.96s	remaining: 2.17s
220:	learn: 10.1530157	total: 5.99s	remaining: 2.14s
221:	learn: 10.1300360	total: 6.03s	remaining: 2.12s
222:	learn: 10.1168807	total: 6.06s	remaining: 2.09s
223:	learn: 10.0969154	total: 6.09s	remaining: 2.07s
224:	learn: 10.0800220	total: 6.12s	remaining: 2.04s
225:	learn: 10.0495195	total: 6.15s	remaining: 2.01s
226:	learn: 10.0130864	total: 6.17s	remaining: 1.99s
227:	learn: 9.9733051	total: 6.2s	remaining: 1.96s
228:	learn: 9.9186624	total: 6.23s	remaining: 1.93s
229:	learn: 9.8408517	total: 6.26s	remaining: 1.91s
230:	learn: 9.8020626	total: 6.3s	remaining: 1.88s
231:	learn: 9.7754447	total: 6.33s	remaining: 1.85s
232:	learn: 9.7642804	total: 6.35s	remaining: 1.83s
233:	learn: 9.7368568	total: 6.38s	remaining: 1.8s
234:	learn: 9.7056387	total: 6.41s	remaining: 1.77s
235:	learn: 9.6936392	total: 6.44s	remaining: 1.75s
236:	learn: 9.6470411	total: 6.47s	remaining: 1.72s
237:	learn: 9.5906698	total: 6.5s	remaining: 1.69s
238:	learn: 9.5416290	total: 6.53s	remaining: 1.67s
239:	learn: 9.5255228	total: 6.56s	remaining: 1.64s
240:	learn: 9.4529465	total: 6.59s	remaining: 1.61s
241:	learn: 9.4106807	total: 6.62s	remaining: 1.58s
242:	learn: 9.3728828	total: 6.64s	remaining: 1.56s
243:	learn: 9.3399456	total: 6.68s	remaining: 1.53s
244:	learn: 9.3118951	total: 6.7s	remaining: 1.5s
245:	learn: 9.3005486	total: 6.73s	remaining: 1.48s
246:	learn: 9.2903549	total: 6.76s	remaining: 1.45s
247:	learn: 9.2453982	total: 6.79s	remaining: 1.42s
248:	learn: 9.2340791	total: 6.82s	remaining: 1.4s
249:	learn: 9.2022569	total: 6.84s	remaining: 1.37s
250:	learn: 9.1782703	total: 6.88s	remaining: 1.34s
251:	learn: 9.1383043	total: 6.91s	remaining: 1.32s
252:	learn: 9.1021623	total: 6.94s	remaining: 1.29s
253:	learn: 9.0892727	total: 6.97s	remaining: 1.26s
254:	learn: 9.0521468	total: 7s	remaining: 1.23s
255:	learn: 9.0384933	total: 7.03s	remaining: 1.21s
256:	learn: 9.0063168	total: 7.06s	remaining: 1.18s
257:	learn: 8.9956277	total: 7.08s	remaining: 1.15s
258:	learn: 8.9496921	total: 7.11s	remaining: 1.13s
259:	learn: 8.9036568	total: 7.14s	remaining: 1.1s
260:	learn: 8.8936773	total: 7.17s	remaining: 1.07s
261:	learn: 8.8516187	total: 7.2s	remaining: 1.04s
262:	learn: 8.8136929	total: 7.22s	remaining: 1.02s
263:	learn: 8.7857931	total: 7.26s	remaining: 990ms
264:	learn: 8.7542759	total: 7.29s	remaining: 962ms
265:	learn: 8.7388965	total: 7.31s	remaining: 935ms
266:	learn: 8.7298188	total: 7.35s	remaining: 909ms
267:	learn: 8.7213757	total: 7.38s	remaining: 881ms
268:	learn: 8.6906438	total: 7.41s	remaining: 854ms
269:	learn: 8.6693053	total: 7.44s	remaining: 826ms
270:	learn: 8.6470936	total: 7.46s	remaining: 799ms
271:	learn: 8.6096396	total: 7.49s	remaining: 771ms
272:	learn: 8.5746539	total: 7.54s	remaining: 745ms
273:	learn: 8.5560630	total: 7.56s	remaining: 718ms
274:	learn: 8.5399246	total: 7.59s	remaining: 690ms
275:	learn: 8.4986755	total: 7.62s	remaining: 662ms
276:	learn: 8.4692322	total: 7.64s	remaining: 635ms
277:	learn: 8.4447901	total: 7.67s	remaining: 607ms
278:	learn: 8.4280272	total: 7.7s	remaining: 579ms
279:	learn: 8.3947119	total: 7.72s	remaining: 552ms
280:	learn: 8.3554975	total: 7.76s	remaining: 525ms
281:	learn: 8.3221566	total: 7.8s	remaining: 498ms
282:	learn: 8.3131827	total: 7.83s	remaining: 470ms
283:	learn: 8.2891313	total: 7.85s	remaining: 442ms
284:	learn: 8.2839105	total: 7.88s	remaining: 415ms
285:	learn: 8.2757450	total: 7.91s	remaining: 387ms
286:	learn: 8.2388411	total: 7.93s	remaining: 359ms
287:	learn: 8.2074603	total: 7.96s	remaining: 332ms
288:	learn: 8.1701839	total: 7.99s	remaining: 304ms
289:	learn: 8.1498646	total: 8.03s	remaining: 277ms
290:	learn: 8.1195237	total: 8.06s	remaining: 249ms
291:	learn: 8.0995089	total: 8.09s	remaining: 222ms
292:	learn: 8.0775287	total: 8.11s	remaining: 194ms
293:	learn: 8.0527267	total: 8.14s	remaining: 166ms
294:	learn: 8.0201604	total: 8.16s	remaining: 138ms
295:	learn: 8.0106207	total: 8.2s	remaining: 111ms
296:	learn: 7.9693660	total: 8.23s	remaining: 83.1ms
297:	learn: 7.9463481	total: 8.27s	remaining: 55.5ms
298:	learn: 7.9254902	total: 8.29s	remaining: 27.7ms
299:	learn: 7.9210391	total: 8.31s	remaining: 0us
0:	learn: 27.6737479	total: 23.4ms	remaining: 6.99s
1:	learn: 27.3204154	total: 48.9ms	remaining: 7.28s
2:	learn: 26.9091890	total: 79.1ms	remaining: 7.83s
3:	learn: 26.4875027	total: 103ms	remaining: 7.65s
4:	learn: 26.1185303	total: 105ms	remaining: 6.22s
5:	learn: 25.8552625	total: 128ms	remaining: 6.29s
6:	learn: 25.5259340	total: 150ms	remaining: 6.28s
7:	learn: 25.1594330	total: 173ms	remaining: 6.33s
8:	learn: 24.8131787	total: 196ms	remaining: 6.34s
9:	learn: 24.5107101	total: 218ms	remaining: 6.32s
10:	learn: 24.1382533	total: 239ms	remaining: 6.28s
11:	learn: 23.9059068	total: 263ms	remaining: 6.31s
12:	learn: 23.5820314	total: 288ms	remaining: 6.37s
13:	learn: 23.2566481	total: 320ms	remaining: 6.54s
14:	learn: 22.9720100	total: 344ms	remaining: 6.53s
15:	learn: 22.6458045	total: 367ms	remaining: 6.51s
16:	learn: 22.3310792	total: 390ms	remaining: 6.49s
17:	learn: 22.0614254	total: 413ms	remaining: 6.47s
18:	learn: 21.8674093	total: 434ms	remaining: 6.42s
19:	learn: 21.6777228	total: 456ms	remaining: 6.38s
20:	learn: 21.4758843	total: 478ms	remaining: 6.36s
21:	learn: 21.2015722	total: 501ms	remaining: 6.33s
22:	learn: 20.9741180	total: 529ms	remaining: 6.37s
23:	learn: 20.8103315	total: 551ms	remaining: 6.34s
24:	learn: 20.6059519	total: 574ms	remaining: 6.31s
25:	learn: 20.3003482	total: 595ms	remaining: 6.27s
26:	learn: 20.1047051	total: 618ms	remaining: 6.25s
27:	learn: 19.9117545	total: 639ms	remaining: 6.21s
28:	learn: 19.7508802	total: 659ms	remaining: 6.16s
29:	learn: 19.5995500	total: 682ms	remaining: 6.14s
30:	learn: 19.4265011	total: 706ms	remaining: 6.12s
31:	learn: 19.2507253	total: 734ms	remaining: 6.14s
32:	learn: 19.0780638	total: 762ms	remaining: 6.16s
33:	learn: 18.8739495	total: 785ms	remaining: 6.14s
34:	learn: 18.6951687	total: 809ms	remaining: 6.12s
35:	learn: 18.5423419	total: 830ms	remaining: 6.09s
36:	learn: 18.3650169	total: 853ms	remaining: 6.06s
37:	learn: 18.1741271	total: 877ms	remaining: 6.04s
38:	learn: 18.0512035	total: 900ms	remaining: 6.02s
39:	learn: 17.9045476	total: 924ms	remaining: 6.01s
40:	learn: 17.7669779	total: 955ms	remaining: 6.03s
41:	learn: 17.6440484	total: 979ms	remaining: 6.01s
42:	learn: 17.4832065	total: 1s	remaining: 5.98s
43:	learn: 17.3307814	total: 1.02s	remaining: 5.95s
44:	learn: 17.1968371	total: 1.04s	remaining: 5.91s
45:	learn: 17.0551367	total: 1.06s	remaining: 5.88s
46:	learn: 16.9663187	total: 1.09s	remaining: 5.85s
47:	learn: 16.8379611	total: 1.11s	remaining: 5.82s
48:	learn: 16.7219020	total: 1.13s	remaining: 5.8s
49:	learn: 16.6155465	total: 1.16s	remaining: 5.78s
50:	learn: 16.5139205	total: 1.19s	remaining: 5.8s
51:	learn: 16.3531147	total: 1.2s	remaining: 5.71s
52:	learn: 16.2763831	total: 1.22s	remaining: 5.69s
53:	learn: 16.1694133	total: 1.25s	remaining: 5.68s
54:	learn: 16.0589004	total: 1.27s	remaining: 5.65s
55:	learn: 15.9660704	total: 1.29s	remaining: 5.62s
56:	learn: 15.8765659	total: 1.31s	remaining: 5.59s
57:	learn: 15.7724924	total: 1.33s	remaining: 5.57s
58:	learn: 15.6865252	total: 1.36s	remaining: 5.55s
59:	learn: 15.6055417	total: 1.39s	remaining: 5.54s
60:	learn: 15.5264778	total: 1.41s	remaining: 5.51s
61:	learn: 15.4370145	total: 1.43s	remaining: 5.48s
62:	learn: 15.3562945	total: 1.45s	remaining: 5.46s
63:	learn: 15.2817484	total: 1.47s	remaining: 5.43s
64:	learn: 15.1941732	total: 1.5s	remaining: 5.41s
65:	learn: 15.1049991	total: 1.52s	remaining: 5.38s
66:	learn: 15.0359663	total: 1.54s	remaining: 5.35s
67:	learn: 14.9351417	total: 1.56s	remaining: 5.32s
68:	learn: 14.8495497	total: 1.59s	remaining: 5.31s
69:	learn: 14.7623093	total: 1.62s	remaining: 5.32s
70:	learn: 14.6771574	total: 1.64s	remaining: 5.29s
71:	learn: 14.5978140	total: 1.67s	remaining: 5.27s
72:	learn: 14.5375886	total: 1.69s	remaining: 5.25s
73:	learn: 14.4649353	total: 1.71s	remaining: 5.23s
74:	learn: 14.4009644	total: 1.73s	remaining: 5.2s
75:	learn: 14.3287275	total: 1.76s	remaining: 5.18s
76:	learn: 14.2318571	total: 1.78s	remaining: 5.16s
77:	learn: 14.1625701	total: 1.81s	remaining: 5.15s
78:	learn: 14.0644282	total: 1.83s	remaining: 5.13s
79:	learn: 13.9762883	total: 1.86s	remaining: 5.11s
80:	learn: 13.9042920	total: 1.88s	remaining: 5.08s
81:	learn: 13.8176535	total: 1.9s	remaining: 5.05s
82:	learn: 13.6910849	total: 1.92s	remaining: 5.02s
83:	learn: 13.5737570	total: 1.94s	remaining: 5s
84:	learn: 13.5049845	total: 1.96s	remaining: 4.97s
85:	learn: 13.4341145	total: 1.99s	remaining: 4.95s
86:	learn: 13.3796196	total: 2.02s	remaining: 4.93s
87:	learn: 13.3024352	total: 2.04s	remaining: 4.92s
88:	learn: 13.2435566	total: 2.06s	remaining: 4.89s
89:	learn: 13.1910369	total: 2.09s	remaining: 4.87s
90:	learn: 13.1471565	total: 2.11s	remaining: 4.84s
91:	learn: 13.0611063	total: 2.13s	remaining: 4.82s
92:	learn: 12.9909112	total: 2.15s	remaining: 4.79s
93:	learn: 12.9355316	total: 2.17s	remaining: 4.76s
94:	learn: 12.8561480	total: 2.19s	remaining: 4.74s
95:	learn: 12.7929803	total: 2.22s	remaining: 4.71s
96:	learn: 12.7262412	total: 2.25s	remaining: 4.7s
97:	learn: 12.6739210	total: 2.27s	remaining: 4.68s
98:	learn: 12.6265593	total: 2.29s	remaining: 4.65s
99:	learn: 12.5594247	total: 2.31s	remaining: 4.62s
100:	learn: 12.4986691	total: 2.33s	remaining: 4.6s
101:	learn: 12.4471027	total: 2.35s	remaining: 4.57s
102:	learn: 12.3962782	total: 2.37s	remaining: 4.54s
103:	learn: 12.3424090	total: 2.4s	remaining: 4.52s
104:	learn: 12.2660971	total: 2.42s	remaining: 4.49s
105:	learn: 12.2042689	total: 2.44s	remaining: 4.46s
106:	learn: 12.1363044	total: 2.46s	remaining: 4.44s
107:	learn: 12.1022229	total: 2.49s	remaining: 4.43s
108:	learn: 12.0491052	total: 2.51s	remaining: 4.4s
109:	learn: 11.9900598	total: 2.54s	remaining: 4.38s
110:	learn: 11.9411055	total: 2.56s	remaining: 4.35s
111:	learn: 11.8782485	total: 2.58s	remaining: 4.33s
112:	learn: 11.8248797	total: 2.6s	remaining: 4.3s
113:	learn: 11.7750338	total: 2.62s	remaining: 4.28s
114:	learn: 11.7390791	total: 2.64s	remaining: 4.25s
115:	learn: 11.6795857	total: 2.66s	remaining: 4.22s
116:	learn: 11.5948258	total: 2.7s	remaining: 4.22s
117:	learn: 11.5598943	total: 2.72s	remaining: 4.2s
118:	learn: 11.4992434	total: 2.75s	remaining: 4.18s
119:	learn: 11.4491317	total: 2.77s	remaining: 4.15s
120:	learn: 11.3929630	total: 2.79s	remaining: 4.13s
121:	learn: 11.3373664	total: 2.81s	remaining: 4.1s
122:	learn: 11.2805890	total: 2.83s	remaining: 4.08s
123:	learn: 11.2341228	total: 2.85s	remaining: 4.05s
124:	learn: 11.1615505	total: 2.88s	remaining: 4.03s
125:	learn: 11.1024523	total: 2.9s	remaining: 4.01s
126:	learn: 11.0710084	total: 2.93s	remaining: 3.99s
127:	learn: 11.0251377	total: 2.95s	remaining: 3.97s
128:	learn: 10.9884605	total: 2.98s	remaining: 3.95s
129:	learn: 10.9584488	total: 3s	remaining: 3.92s
130:	learn: 10.8995848	total: 3.02s	remaining: 3.9s
131:	learn: 10.8549250	total: 3.04s	remaining: 3.87s
132:	learn: 10.8113067	total: 3.06s	remaining: 3.85s
133:	learn: 10.7553419	total: 3.09s	remaining: 3.83s
134:	learn: 10.7096544	total: 3.11s	remaining: 3.8s
135:	learn: 10.6757190	total: 3.14s	remaining: 3.78s
136:	learn: 10.6327685	total: 3.16s	remaining: 3.76s
137:	learn: 10.5902988	total: 3.18s	remaining: 3.74s
138:	learn: 10.5467376	total: 3.2s	remaining: 3.71s
139:	learn: 10.5163592	total: 3.23s	remaining: 3.69s
140:	learn: 10.4694138	total: 3.25s	remaining: 3.66s
141:	learn: 10.4359855	total: 3.27s	remaining: 3.64s
142:	learn: 10.4057439	total: 3.29s	remaining: 3.61s
143:	learn: 10.3729240	total: 3.31s	remaining: 3.59s
144:	learn: 10.3359301	total: 3.35s	remaining: 3.58s
145:	learn: 10.2697670	total: 3.37s	remaining: 3.55s
146:	learn: 10.2094154	total: 3.39s	remaining: 3.53s
147:	learn: 10.1600330	total: 3.41s	remaining: 3.5s
148:	learn: 10.1308425	total: 3.44s	remaining: 3.48s
149:	learn: 10.0855107	total: 3.46s	remaining: 3.46s
150:	learn: 10.0385460	total: 3.48s	remaining: 3.43s
151:	learn: 10.0087773	total: 3.5s	remaining: 3.4s
152:	learn: 9.9793744	total: 3.52s	remaining: 3.38s
153:	learn: 9.9525485	total: 3.54s	remaining: 3.35s
154:	learn: 9.9079941	total: 3.57s	remaining: 3.34s
155:	learn: 9.8778723	total: 3.59s	remaining: 3.31s
156:	learn: 9.8246060	total: 3.62s	remaining: 3.29s
157:	learn: 9.7894878	total: 3.64s	remaining: 3.27s
158:	learn: 9.7484967	total: 3.66s	remaining: 3.25s
159:	learn: 9.7248391	total: 3.69s	remaining: 3.23s
160:	learn: 9.7014264	total: 3.71s	remaining: 3.2s
161:	learn: 9.6583834	total: 3.73s	remaining: 3.18s
162:	learn: 9.6144299	total: 3.76s	remaining: 3.16s
163:	learn: 9.5794995	total: 3.79s	remaining: 3.15s
164:	learn: 9.5550633	total: 3.82s	remaining: 3.12s
165:	learn: 9.5026632	total: 3.84s	remaining: 3.1s
166:	learn: 9.4633969	total: 3.87s	remaining: 3.08s
167:	learn: 9.4104818	total: 3.89s	remaining: 3.06s
168:	learn: 9.3845831	total: 3.91s	remaining: 3.03s
169:	learn: 9.3337722	total: 3.93s	remaining: 3s
170:	learn: 9.2837197	total: 3.95s	remaining: 2.98s
171:	learn: 9.2466766	total: 3.98s	remaining: 2.96s
172:	learn: 9.2085127	total: 4.01s	remaining: 2.94s
173:	learn: 9.1694480	total: 4.03s	remaining: 2.92s
174:	learn: 9.1448907	total: 4.05s	remaining: 2.89s
175:	learn: 9.1013106	total: 4.07s	remaining: 2.87s
176:	learn: 9.0696815	total: 4.09s	remaining: 2.85s
177:	learn: 9.0279616	total: 4.12s	remaining: 2.82s
178:	learn: 9.0008978	total: 4.14s	remaining: 2.8s
179:	learn: 8.9449905	total: 4.16s	remaining: 2.77s
180:	learn: 8.9263735	total: 4.18s	remaining: 2.75s
181:	learn: 8.9082117	total: 4.21s	remaining: 2.73s
182:	learn: 8.8590211	total: 4.24s	remaining: 2.71s
183:	learn: 8.8398014	total: 4.27s	remaining: 2.69s
184:	learn: 8.7991374	total: 4.29s	remaining: 2.67s
185:	learn: 8.7574091	total: 4.31s	remaining: 2.64s
186:	learn: 8.7075149	total: 4.33s	remaining: 2.62s
187:	learn: 8.6651276	total: 4.36s	remaining: 2.6s
188:	learn: 8.6299124	total: 4.38s	remaining: 2.57s
189:	learn: 8.6039208	total: 4.4s	remaining: 2.55s
190:	learn: 8.5623097	total: 4.43s	remaining: 2.53s
191:	learn: 8.5109100	total: 4.46s	remaining: 2.51s
192:	learn: 8.4793653	total: 4.48s	remaining: 2.48s
193:	learn: 8.4481462	total: 4.5s	remaining: 2.46s
194:	learn: 8.4315766	total: 4.52s	remaining: 2.44s
195:	learn: 8.3834417	total: 4.54s	remaining: 2.41s
196:	learn: 8.3680774	total: 4.56s	remaining: 2.39s
197:	learn: 8.3496623	total: 4.59s	remaining: 2.36s
198:	learn: 8.3148580	total: 4.61s	remaining: 2.34s
199:	learn: 8.3052914	total: 4.63s	remaining: 2.32s
200:	learn: 8.2594410	total: 4.67s	remaining: 2.3s
201:	learn: 8.2470590	total: 4.69s	remaining: 2.27s
202:	learn: 8.2316760	total: 4.71s	remaining: 2.25s
203:	learn: 8.2041569	total: 4.74s	remaining: 2.23s
204:	learn: 8.1708835	total: 4.76s	remaining: 2.21s
205:	learn: 8.1301413	total: 4.78s	remaining: 2.18s
206:	learn: 8.0986826	total: 4.8s	remaining: 2.16s
207:	learn: 8.0741059	total: 4.83s	remaining: 2.13s
208:	learn: 8.0244528	total: 4.85s	remaining: 2.11s
209:	learn: 7.9989744	total: 4.88s	remaining: 2.09s
210:	learn: 7.9696573	total: 4.9s	remaining: 2.07s
211:	learn: 7.9396203	total: 4.92s	remaining: 2.04s
212:	learn: 7.9111124	total: 4.95s	remaining: 2.02s
213:	learn: 7.9007758	total: 4.97s	remaining: 2s
214:	learn: 7.8856958	total: 4.99s	remaining: 1.97s
215:	learn: 7.8685173	total: 5.01s	remaining: 1.95s
216:	learn: 7.8488503	total: 5.03s	remaining: 1.92s
217:	learn: 7.8127011	total: 5.05s	remaining: 1.9s
218:	learn: 7.7610464	total: 5.08s	remaining: 1.88s
219:	learn: 7.7371633	total: 5.11s	remaining: 1.86s
220:	learn: 7.7075772	total: 5.13s	remaining: 1.83s
221:	learn: 7.6862440	total: 5.16s	remaining: 1.81s
222:	learn: 7.6387389	total: 5.18s	remaining: 1.79s
223:	learn: 7.6039931	total: 5.2s	remaining: 1.76s
224:	learn: 7.5780873	total: 5.22s	remaining: 1.74s
225:	learn: 7.5366573	total: 5.25s	remaining: 1.72s
226:	learn: 7.5117065	total: 5.27s	remaining: 1.69s
227:	learn: 7.4849508	total: 5.29s	remaining: 1.67s
228:	learn: 7.4536731	total: 5.32s	remaining: 1.65s
229:	learn: 7.4238760	total: 5.34s	remaining: 1.63s
230:	learn: 7.4054602	total: 5.36s	remaining: 1.6s
231:	learn: 7.3841419	total: 5.39s	remaining: 1.58s
232:	learn: 7.3712995	total: 5.41s	remaining: 1.55s
233:	learn: 7.3403269	total: 5.43s	remaining: 1.53s
234:	learn: 7.3293521	total: 5.46s	remaining: 1.51s
235:	learn: 7.2977701	total: 5.48s	remaining: 1.49s
236:	learn: 7.2879483	total: 5.5s	remaining: 1.46s
237:	learn: 7.2651195	total: 5.53s	remaining: 1.44s
238:	learn: 7.2349887	total: 5.56s	remaining: 1.42s
239:	learn: 7.1998166	total: 5.58s	remaining: 1.4s
240:	learn: 7.1916439	total: 5.61s	remaining: 1.37s
241:	learn: 7.1651373	total: 5.63s	remaining: 1.35s
242:	learn: 7.1381913	total: 5.65s	remaining: 1.32s
243:	learn: 7.1196857	total: 5.67s	remaining: 1.3s
244:	learn: 7.1129330	total: 5.7s	remaining: 1.28s
245:	learn: 7.0917288	total: 5.72s	remaining: 1.26s
246:	learn: 7.0643221	total: 5.75s	remaining: 1.23s
247:	learn: 7.0355381	total: 5.77s	remaining: 1.21s
248:	learn: 7.0175711	total: 5.79s	remaining: 1.19s
249:	learn: 6.9969066	total: 5.82s	remaining: 1.16s
250:	learn: 6.9647213	total: 5.84s	remaining: 1.14s
251:	learn: 6.9543141	total: 5.86s	remaining: 1.11s
252:	learn: 6.9265098	total: 5.88s	remaining: 1.09s
253:	learn: 6.9022725	total: 5.9s	remaining: 1.07s
254:	learn: 6.8497254	total: 5.92s	remaining: 1.04s
255:	learn: 6.8285154	total: 5.95s	remaining: 1.02s
256:	learn: 6.8011995	total: 5.98s	remaining: 1000ms
257:	learn: 6.7933719	total: 6s	remaining: 977ms
258:	learn: 6.7690265	total: 6.02s	remaining: 954ms
259:	learn: 6.7470688	total: 6.05s	remaining: 930ms
260:	learn: 6.7282782	total: 6.07s	remaining: 907ms
261:	learn: 6.6980892	total: 6.09s	remaining: 883ms
262:	learn: 6.6788044	total: 6.11s	remaining: 859ms
263:	learn: 6.6507208	total: 6.13s	remaining: 836ms
264:	learn: 6.6299738	total: 6.15s	remaining: 813ms
265:	learn: 6.6146145	total: 6.18s	remaining: 790ms
266:	learn: 6.5960711	total: 6.2s	remaining: 766ms
267:	learn: 6.5601064	total: 6.22s	remaining: 743ms
268:	learn: 6.5439209	total: 6.24s	remaining: 720ms
269:	learn: 6.5302107	total: 6.27s	remaining: 696ms
270:	learn: 6.5075739	total: 6.29s	remaining: 673ms
271:	learn: 6.4875851	total: 6.31s	remaining: 649ms
272:	learn: 6.4779171	total: 6.33s	remaining: 626ms
273:	learn: 6.4677739	total: 6.35s	remaining: 603ms
274:	learn: 6.4375131	total: 6.38s	remaining: 580ms
275:	learn: 6.4223197	total: 6.41s	remaining: 557ms
276:	learn: 6.4163633	total: 6.43s	remaining: 534ms
277:	learn: 6.4084438	total: 6.45s	remaining: 511ms
278:	learn: 6.3795757	total: 6.48s	remaining: 488ms
279:	learn: 6.3670166	total: 6.5s	remaining: 464ms
280:	learn: 6.3426010	total: 6.52s	remaining: 441ms
281:	learn: 6.3363177	total: 6.54s	remaining: 417ms
282:	learn: 6.3138385	total: 6.56s	remaining: 394ms
283:	learn: 6.2894060	total: 6.58s	remaining: 371ms
284:	learn: 6.2767007	total: 6.61s	remaining: 348ms
285:	learn: 6.2607815	total: 6.64s	remaining: 325ms
286:	learn: 6.2368751	total: 6.66s	remaining: 302ms
287:	learn: 6.2218151	total: 6.68s	remaining: 278ms
288:	learn: 6.2147193	total: 6.7s	remaining: 255ms
289:	learn: 6.1817002	total: 6.72s	remaining: 232ms
290:	learn: 6.1531900	total: 6.74s	remaining: 209ms
291:	learn: 6.1438157	total: 6.76s	remaining: 185ms
292:	learn: 6.1311550	total: 6.79s	remaining: 162ms
293:	learn: 6.1171744	total: 6.81s	remaining: 139ms
294:	learn: 6.1079932	total: 6.83s	remaining: 116ms
295:	learn: 6.0989063	total: 6.86s	remaining: 92.7ms
296:	learn: 6.0740401	total: 6.88s	remaining: 69.5ms
297:	learn: 6.0685711	total: 6.91s	remaining: 46.4ms
298:	learn: 6.0601135	total: 6.93s	remaining: 23.2ms
299:	learn: 6.0486579	total: 6.95s	remaining: 0us
0:	learn: 43.1728564	total: 23.9ms	remaining: 7.13s
1:	learn: 42.4479145	total: 45.7ms	remaining: 6.8s
2:	learn: 41.7618107	total: 67.5ms	remaining: 6.68s
3:	learn: 40.9535516	total: 89.6ms	remaining: 6.63s
4:	learn: 40.0184714	total: 111ms	remaining: 6.53s
5:	learn: 39.3975364	total: 132ms	remaining: 6.46s
6:	learn: 38.5285936	total: 152ms	remaining: 6.36s
7:	learn: 37.7229272	total: 174ms	remaining: 6.34s
8:	learn: 37.0918758	total: 193ms	remaining: 6.25s
9:	learn: 36.3564673	total: 214ms	remaining: 6.2s
10:	learn: 35.6811958	total: 234ms	remaining: 6.16s
11:	learn: 35.0050014	total: 258ms	remaining: 6.18s
12:	learn: 34.2960554	total: 281ms	remaining: 6.2s
13:	learn: 33.5236859	total: 311ms	remaining: 6.35s
14:	learn: 32.9402676	total: 314ms	remaining: 5.96s
15:	learn: 32.4523166	total: 337ms	remaining: 5.99s
16:	learn: 31.8840373	total: 360ms	remaining: 6s
17:	learn: 31.3075678	total: 383ms	remaining: 6s
18:	learn: 30.8876354	total: 407ms	remaining: 6.02s
19:	learn: 30.3498359	total: 429ms	remaining: 6s
20:	learn: 29.9235491	total: 451ms	remaining: 6s
21:	learn: 29.3980753	total: 473ms	remaining: 5.98s
22:	learn: 28.8855360	total: 498ms	remaining: 6s
23:	learn: 28.4464905	total: 521ms	remaining: 5.99s
24:	learn: 28.0340761	total: 539ms	remaining: 5.92s
25:	learn: 27.6857355	total: 561ms	remaining: 5.91s
26:	learn: 27.3334889	total: 582ms	remaining: 5.89s
27:	learn: 26.8330294	total: 604ms	remaining: 5.86s
28:	learn: 26.4299332	total: 627ms	remaining: 5.86s
29:	learn: 26.0045444	total: 649ms	remaining: 5.84s
30:	learn: 25.6006582	total: 670ms	remaining: 5.82s
31:	learn: 25.2312981	total: 699ms	remaining: 5.85s
32:	learn: 25.0083092	total: 725ms	remaining: 5.87s
33:	learn: 24.6611713	total: 749ms	remaining: 5.86s
34:	learn: 24.4598997	total: 773ms	remaining: 5.85s
35:	learn: 24.2341422	total: 796ms	remaining: 5.84s
36:	learn: 23.9210171	total: 819ms	remaining: 5.82s
37:	learn: 23.5299198	total: 844ms	remaining: 5.82s
38:	learn: 23.1652368	total: 866ms	remaining: 5.8s
39:	learn: 22.8941103	total: 887ms	remaining: 5.77s
40:	learn: 22.7084206	total: 911ms	remaining: 5.75s
41:	learn: 22.4654978	total: 936ms	remaining: 5.75s
42:	learn: 22.2302580	total: 966ms	remaining: 5.77s
43:	learn: 21.9408933	total: 989ms	remaining: 5.75s
44:	learn: 21.6779272	total: 1.01s	remaining: 5.74s
45:	learn: 21.5124883	total: 1.03s	remaining: 5.7s
46:	learn: 21.3803106	total: 1.05s	remaining: 5.67s
47:	learn: 21.2298916	total: 1.07s	remaining: 5.64s
48:	learn: 21.0336901	total: 1.1s	remaining: 5.62s
49:	learn: 20.7943434	total: 1.12s	remaining: 5.58s
50:	learn: 20.5676348	total: 1.14s	remaining: 5.57s
51:	learn: 20.3427273	total: 1.16s	remaining: 5.52s
52:	learn: 20.1024296	total: 1.19s	remaining: 5.53s
53:	learn: 19.9885265	total: 1.21s	remaining: 5.51s
54:	learn: 19.8413355	total: 1.23s	remaining: 5.5s
55:	learn: 19.7099619	total: 1.26s	remaining: 5.48s
56:	learn: 19.5311747	total: 1.28s	remaining: 5.46s
57:	learn: 19.3665040	total: 1.3s	remaining: 5.44s
58:	learn: 19.2281415	total: 1.32s	remaining: 5.41s
59:	learn: 19.1106495	total: 1.35s	remaining: 5.39s
60:	learn: 18.9927263	total: 1.38s	remaining: 5.4s
61:	learn: 18.7654626	total: 1.4s	remaining: 5.38s
62:	learn: 18.6108661	total: 1.42s	remaining: 5.36s
63:	learn: 18.4817806	total: 1.45s	remaining: 5.33s
64:	learn: 18.3632402	total: 1.47s	remaining: 5.31s
65:	learn: 18.2653457	total: 1.49s	remaining: 5.29s
66:	learn: 18.1378819	total: 1.51s	remaining: 5.26s
67:	learn: 18.0459629	total: 1.53s	remaining: 5.24s
68:	learn: 17.9001044	total: 1.56s	remaining: 5.22s
69:	learn: 17.7073203	total: 1.59s	remaining: 5.23s
70:	learn: 17.5276628	total: 1.62s	remaining: 5.22s
71:	learn: 17.4386086	total: 1.64s	remaining: 5.2s
72:	learn: 17.2890096	total: 1.66s	remaining: 5.18s
73:	learn: 17.1904631	total: 1.69s	remaining: 5.15s
74:	learn: 17.0955197	total: 1.71s	remaining: 5.13s
75:	learn: 16.9924303	total: 1.73s	remaining: 5.11s
76:	learn: 16.8972682	total: 1.75s	remaining: 5.08s
77:	learn: 16.7957864	total: 1.78s	remaining: 5.06s
78:	learn: 16.6405248	total: 1.81s	remaining: 5.05s
79:	learn: 16.5463991	total: 1.83s	remaining: 5.03s
80:	learn: 16.4622871	total: 1.85s	remaining: 5s
81:	learn: 16.3624916	total: 1.87s	remaining: 4.97s
82:	learn: 16.2073706	total: 1.89s	remaining: 4.94s
83:	learn: 16.0716875	total: 1.91s	remaining: 4.92s
84:	learn: 15.9336151	total: 1.93s	remaining: 4.89s
85:	learn: 15.8451501	total: 1.95s	remaining: 4.86s
86:	learn: 15.7200917	total: 1.98s	remaining: 4.84s
87:	learn: 15.6236971	total: 2s	remaining: 4.82s
88:	learn: 15.5479129	total: 2.02s	remaining: 4.79s
89:	learn: 15.4975079	total: 2.05s	remaining: 4.79s
90:	learn: 15.4083433	total: 2.08s	remaining: 4.77s
91:	learn: 15.3169327	total: 2.1s	remaining: 4.75s
92:	learn: 15.2207992	total: 2.12s	remaining: 4.72s
93:	learn: 15.1430327	total: 2.15s	remaining: 4.7s
94:	learn: 15.0665711	total: 2.17s	remaining: 4.68s
95:	learn: 14.9903534	total: 2.19s	remaining: 4.65s
96:	learn: 14.9054346	total: 2.21s	remaining: 4.63s
97:	learn: 14.7940457	total: 2.23s	remaining: 4.6s
98:	learn: 14.7008915	total: 2.26s	remaining: 4.59s
99:	learn: 14.6142673	total: 2.29s	remaining: 4.57s
100:	learn: 14.5337996	total: 2.31s	remaining: 4.54s
101:	learn: 14.4571728	total: 2.33s	remaining: 4.52s
102:	learn: 14.3898956	total: 2.35s	remaining: 4.49s
103:	learn: 14.3189412	total: 2.37s	remaining: 4.47s
104:	learn: 14.2525935	total: 2.39s	remaining: 4.44s
105:	learn: 14.1772436	total: 2.41s	remaining: 4.42s
106:	learn: 14.1059305	total: 2.43s	remaining: 4.39s
107:	learn: 14.0232782	total: 2.46s	remaining: 4.38s
108:	learn: 13.9368806	total: 2.49s	remaining: 4.36s
109:	learn: 13.8491229	total: 2.51s	remaining: 4.34s
110:	learn: 13.7685490	total: 2.54s	remaining: 4.32s
111:	learn: 13.6836750	total: 2.56s	remaining: 4.3s
112:	learn: 13.6202897	total: 2.58s	remaining: 4.27s
113:	learn: 13.5688904	total: 2.6s	remaining: 4.25s
114:	learn: 13.5145238	total: 2.62s	remaining: 4.22s
115:	learn: 13.4247466	total: 2.65s	remaining: 4.21s
116:	learn: 13.3307114	total: 2.67s	remaining: 4.18s
117:	learn: 13.2545184	total: 2.69s	remaining: 4.16s
118:	learn: 13.1996548	total: 2.72s	remaining: 4.13s
119:	learn: 13.1205307	total: 2.74s	remaining: 4.11s
120:	learn: 13.0479027	total: 2.76s	remaining: 4.08s
121:	learn: 12.9970441	total: 2.78s	remaining: 4.05s
122:	learn: 12.9295209	total: 2.8s	remaining: 4.03s
123:	learn: 12.8673524	total: 2.82s	remaining: 4s
124:	learn: 12.7786245	total: 2.84s	remaining: 3.98s
125:	learn: 12.7348929	total: 2.86s	remaining: 3.95s
126:	learn: 12.6858554	total: 2.89s	remaining: 3.94s
127:	learn: 12.6189787	total: 2.92s	remaining: 3.92s
128:	learn: 12.5864827	total: 2.94s	remaining: 3.89s
129:	learn: 12.5478404	total: 2.96s	remaining: 3.87s
130:	learn: 12.5017820	total: 2.98s	remaining: 3.85s
131:	learn: 12.4491462	total: 3.01s	remaining: 3.83s
132:	learn: 12.3822056	total: 3.03s	remaining: 3.8s
133:	learn: 12.3098651	total: 3.05s	remaining: 3.78s
134:	learn: 12.2531700	total: 3.07s	remaining: 3.75s
135:	learn: 12.2119331	total: 3.09s	remaining: 3.73s
136:	learn: 12.1571278	total: 3.12s	remaining: 3.71s
137:	learn: 12.0976094	total: 3.14s	remaining: 3.69s
138:	learn: 12.0025352	total: 3.16s	remaining: 3.66s
139:	learn: 11.9019074	total: 3.18s	remaining: 3.64s
140:	learn: 11.7854852	total: 3.2s	remaining: 3.61s
141:	learn: 11.7104078	total: 3.22s	remaining: 3.59s
142:	learn: 11.6741366	total: 3.25s	remaining: 3.56s
143:	learn: 11.6077195	total: 3.27s	remaining: 3.54s
144:	learn: 11.5496695	total: 3.29s	remaining: 3.51s
145:	learn: 11.4568800	total: 3.31s	remaining: 3.5s
146:	learn: 11.4368150	total: 3.34s	remaining: 3.48s
147:	learn: 11.3955813	total: 3.36s	remaining: 3.45s
148:	learn: 11.3565385	total: 3.39s	remaining: 3.43s
149:	learn: 11.3020845	total: 3.42s	remaining: 3.42s
150:	learn: 11.2130390	total: 3.44s	remaining: 3.4s
151:	learn: 11.1401745	total: 3.46s	remaining: 3.37s
152:	learn: 11.1048934	total: 3.49s	remaining: 3.35s
153:	learn: 11.0709933	total: 3.52s	remaining: 3.33s
154:	learn: 11.0212519	total: 3.55s	remaining: 3.32s
155:	learn: 10.9258762	total: 3.57s	remaining: 3.3s
156:	learn: 10.8429657	total: 3.6s	remaining: 3.27s
157:	learn: 10.8061370	total: 3.62s	remaining: 3.25s
158:	learn: 10.7571211	total: 3.64s	remaining: 3.23s
159:	learn: 10.6698987	total: 3.67s	remaining: 3.21s
160:	learn: 10.6228772	total: 3.69s	remaining: 3.19s
161:	learn: 10.5368796	total: 3.72s	remaining: 3.17s
162:	learn: 10.4841450	total: 3.74s	remaining: 3.15s
163:	learn: 10.4012317	total: 3.77s	remaining: 3.13s
164:	learn: 10.3588701	total: 3.8s	remaining: 3.11s
165:	learn: 10.2816720	total: 3.83s	remaining: 3.09s
166:	learn: 10.2259651	total: 3.85s	remaining: 3.06s
167:	learn: 10.1792554	total: 3.88s	remaining: 3.04s
168:	learn: 10.1604671	total: 3.9s	remaining: 3.02s
169:	learn: 10.1318986	total: 3.92s	remaining: 3s
170:	learn: 10.0948065	total: 3.95s	remaining: 2.98s
171:	learn: 10.0521191	total: 3.98s	remaining: 2.97s
172:	learn: 9.9946157	total: 4.01s	remaining: 2.94s
173:	learn: 9.9313678	total: 4.03s	remaining: 2.92s
174:	learn: 9.9156434	total: 4.06s	remaining: 2.9s
175:	learn: 9.8749788	total: 4.08s	remaining: 2.88s
176:	learn: 9.8485079	total: 4.11s	remaining: 2.85s
177:	learn: 9.8134329	total: 4.13s	remaining: 2.83s
178:	learn: 9.7880107	total: 4.15s	remaining: 2.81s
179:	learn: 9.7587885	total: 4.18s	remaining: 2.79s
180:	learn: 9.6939238	total: 4.21s	remaining: 2.77s
181:	learn: 9.6447939	total: 4.24s	remaining: 2.75s
182:	learn: 9.6136022	total: 4.27s	remaining: 2.73s
183:	learn: 9.5885675	total: 4.29s	remaining: 2.71s
184:	learn: 9.5271670	total: 4.32s	remaining: 2.68s
185:	learn: 9.4616988	total: 4.34s	remaining: 2.66s
186:	learn: 9.4287637	total: 4.36s	remaining: 2.64s
187:	learn: 9.3948177	total: 4.39s	remaining: 2.61s
188:	learn: 9.3767726	total: 4.42s	remaining: 2.6s
189:	learn: 9.3473555	total: 4.45s	remaining: 2.57s
190:	learn: 9.3099572	total: 4.47s	remaining: 2.55s
191:	learn: 9.2799642	total: 4.5s	remaining: 2.53s
192:	learn: 9.2505323	total: 4.52s	remaining: 2.51s
193:	learn: 9.2173510	total: 4.55s	remaining: 2.48s
194:	learn: 9.1746531	total: 4.57s	remaining: 2.46s
195:	learn: 9.1354668	total: 4.59s	remaining: 2.44s
196:	learn: 9.0983547	total: 4.62s	remaining: 2.42s
197:	learn: 9.0615111	total: 4.65s	remaining: 2.4s
198:	learn: 9.0239666	total: 4.67s	remaining: 2.37s
199:	learn: 8.9906083	total: 4.7s	remaining: 2.35s
200:	learn: 8.9458694	total: 4.73s	remaining: 2.33s
201:	learn: 8.9040783	total: 4.76s	remaining: 2.31s
202:	learn: 8.8495189	total: 4.78s	remaining: 2.29s
203:	learn: 8.8243403	total: 4.8s	remaining: 2.26s
204:	learn: 8.7930532	total: 4.83s	remaining: 2.24s
205:	learn: 8.7587095	total: 4.85s	remaining: 2.21s
206:	learn: 8.7177051	total: 4.88s	remaining: 2.19s
207:	learn: 8.6879684	total: 4.91s	remaining: 2.17s
208:	learn: 8.6681622	total: 4.93s	remaining: 2.15s
209:	learn: 8.6299257	total: 4.96s	remaining: 2.12s
210:	learn: 8.5728096	total: 4.98s	remaining: 2.1s
211:	learn: 8.5456345	total: 5s	remaining: 2.07s
212:	learn: 8.5000514	total: 5.02s	remaining: 2.05s
213:	learn: 8.4814393	total: 5.04s	remaining: 2.02s
214:	learn: 8.4512752	total: 5.06s	remaining: 2s
215:	learn: 8.4144221	total: 5.09s	remaining: 1.98s
216:	learn: 8.3817886	total: 5.12s	remaining: 1.96s
217:	learn: 8.3392143	total: 5.14s	remaining: 1.93s
218:	learn: 8.3102751	total: 5.17s	remaining: 1.91s
219:	learn: 8.2963441	total: 5.19s	remaining: 1.89s
220:	learn: 8.2666907	total: 5.21s	remaining: 1.86s
221:	learn: 8.2470955	total: 5.24s	remaining: 1.84s
222:	learn: 8.2352635	total: 5.26s	remaining: 1.82s
223:	learn: 8.2046605	total: 5.28s	remaining: 1.79s
224:	learn: 8.1746742	total: 5.31s	remaining: 1.77s
225:	learn: 8.1466704	total: 5.33s	remaining: 1.75s
226:	learn: 8.1113762	total: 5.35s	remaining: 1.72s
227:	learn: 8.0842520	total: 5.37s	remaining: 1.7s
228:	learn: 8.0619499	total: 5.39s	remaining: 1.67s
229:	learn: 8.0391421	total: 5.41s	remaining: 1.65s
230:	learn: 8.0082460	total: 5.44s	remaining: 1.62s
231:	learn: 7.9894454	total: 5.46s	remaining: 1.6s
232:	learn: 7.9567828	total: 5.48s	remaining: 1.57s
233:	learn: 7.9394710	total: 5.5s	remaining: 1.55s
234:	learn: 7.9171371	total: 5.53s	remaining: 1.53s
235:	learn: 7.9062197	total: 5.56s	remaining: 1.51s
236:	learn: 7.8803505	total: 5.58s	remaining: 1.48s
237:	learn: 7.8508624	total: 5.6s	remaining: 1.46s
238:	learn: 7.8107215	total: 5.63s	remaining: 1.44s
239:	learn: 7.7758588	total: 5.65s	remaining: 1.41s
240:	learn: 7.7403137	total: 5.67s	remaining: 1.39s
241:	learn: 7.7146933	total: 5.69s	remaining: 1.36s
242:	learn: 7.6876053	total: 5.72s	remaining: 1.34s
243:	learn: 7.6631332	total: 5.75s	remaining: 1.32s
244:	learn: 7.6340717	total: 5.77s	remaining: 1.29s
245:	learn: 7.5835394	total: 5.79s	remaining: 1.27s
246:	learn: 7.5572808	total: 5.82s	remaining: 1.25s
247:	learn: 7.5477260	total: 5.84s	remaining: 1.22s
248:	learn: 7.5230961	total: 5.86s	remaining: 1.2s
249:	learn: 7.4926278	total: 5.88s	remaining: 1.18s
250:	learn: 7.4663059	total: 5.91s	remaining: 1.15s
251:	learn: 7.4439231	total: 5.93s	remaining: 1.13s
252:	learn: 7.4147104	total: 5.97s	remaining: 1.11s
253:	learn: 7.3910399	total: 6s	remaining: 1.08s
254:	learn: 7.3694309	total: 6.02s	remaining: 1.06s
255:	learn: 7.3357705	total: 6.04s	remaining: 1.04s
256:	learn: 7.3063747	total: 6.07s	remaining: 1.01s
257:	learn: 7.2838572	total: 6.09s	remaining: 991ms
258:	learn: 7.2589764	total: 6.11s	remaining: 967ms
259:	learn: 7.2389253	total: 6.13s	remaining: 944ms
260:	learn: 7.2138913	total: 6.16s	remaining: 921ms
261:	learn: 7.1886917	total: 6.19s	remaining: 898ms
262:	learn: 7.1772908	total: 6.21s	remaining: 874ms
263:	learn: 7.1578726	total: 6.23s	remaining: 850ms
264:	learn: 7.1353133	total: 6.25s	remaining: 826ms
265:	learn: 7.1102477	total: 6.28s	remaining: 803ms
266:	learn: 7.0828702	total: 6.3s	remaining: 779ms
267:	learn: 7.0597237	total: 6.33s	remaining: 755ms
268:	learn: 7.0365630	total: 6.35s	remaining: 732ms
269:	learn: 7.0146208	total: 6.38s	remaining: 709ms
270:	learn: 6.9967242	total: 6.41s	remaining: 685ms
271:	learn: 6.9790909	total: 6.43s	remaining: 662ms
272:	learn: 6.9693113	total: 6.45s	remaining: 638ms
273:	learn: 6.9594319	total: 6.48s	remaining: 615ms
274:	learn: 6.9391890	total: 6.5s	remaining: 591ms
275:	learn: 6.9254505	total: 6.52s	remaining: 567ms
276:	learn: 6.9024357	total: 6.54s	remaining: 543ms
277:	learn: 6.8754442	total: 6.57s	remaining: 520ms
278:	learn: 6.8502029	total: 6.59s	remaining: 496ms
279:	learn: 6.8142453	total: 6.61s	remaining: 472ms
280:	learn: 6.7927649	total: 6.63s	remaining: 448ms
281:	learn: 6.7640814	total: 6.66s	remaining: 425ms
282:	learn: 6.7463937	total: 6.68s	remaining: 401ms
283:	learn: 6.7403516	total: 6.7s	remaining: 378ms
284:	learn: 6.7206013	total: 6.72s	remaining: 354ms
285:	learn: 6.6875183	total: 6.75s	remaining: 330ms
286:	learn: 6.6609083	total: 6.77s	remaining: 307ms
287:	learn: 6.6545230	total: 6.8s	remaining: 283ms
288:	learn: 6.6358351	total: 6.83s	remaining: 260ms
289:	learn: 6.6175009	total: 6.85s	remaining: 236ms
290:	learn: 6.6067729	total: 6.87s	remaining: 213ms
291:	learn: 6.5970320	total: 6.9s	remaining: 189ms
292:	learn: 6.5837751	total: 6.92s	remaining: 165ms
293:	learn: 6.5625028	total: 6.94s	remaining: 142ms
294:	learn: 6.5530621	total: 6.96s	remaining: 118ms
295:	learn: 6.5478680	total: 6.99s	remaining: 94.4ms
296:	learn: 6.5241879	total: 7.02s	remaining: 70.9ms
297:	learn: 6.5118159	total: 7.04s	remaining: 47.3ms
298:	learn: 6.4919631	total: 7.06s	remaining: 23.6ms
299:	learn: 6.4739124	total: 7.08s	remaining: 0us
0:	learn: 46.4788614	total: 2.52ms	remaining: 754ms
1:	learn: 45.7710608	total: 22.4ms	remaining: 3.34s
2:	learn: 45.1565849	total: 44.6ms	remaining: 4.41s
3:	learn: 44.4030902	total: 71.7ms	remaining: 5.3s
4:	learn: 43.7256714	total: 96.8ms	remaining: 5.71s
5:	learn: 43.0846764	total: 120ms	remaining: 5.88s
6:	learn: 42.3050249	total: 143ms	remaining: 5.98s
7:	learn: 41.5523343	total: 166ms	remaining: 6.06s
8:	learn: 40.7548041	total: 187ms	remaining: 6.05s
9:	learn: 39.8798087	total: 209ms	remaining: 6.07s
10:	learn: 39.3807548	total: 231ms	remaining: 6.06s
11:	learn: 38.6353297	total: 252ms	remaining: 6.05s
12:	learn: 38.0252968	total: 275ms	remaining: 6.07s
13:	learn: 37.4584814	total: 301ms	remaining: 6.15s
14:	learn: 36.9766267	total: 322ms	remaining: 6.11s
15:	learn: 36.4351844	total: 341ms	remaining: 6.06s
16:	learn: 35.8711532	total: 364ms	remaining: 6.05s
17:	learn: 35.5046170	total: 385ms	remaining: 6.03s
18:	learn: 34.9410561	total: 405ms	remaining: 5.99s
19:	learn: 34.5414688	total: 425ms	remaining: 5.95s
20:	learn: 34.1994877	total: 446ms	remaining: 5.93s
21:	learn: 33.8105873	total: 467ms	remaining: 5.9s
22:	learn: 33.2767379	total: 496ms	remaining: 5.97s
23:	learn: 32.9293305	total: 520ms	remaining: 5.98s
24:	learn: 32.5563171	total: 543ms	remaining: 5.97s
25:	learn: 32.0312705	total: 564ms	remaining: 5.94s
26:	learn: 31.5549663	total: 587ms	remaining: 5.93s
27:	learn: 31.2152408	total: 609ms	remaining: 5.92s
28:	learn: 30.8335992	total: 631ms	remaining: 5.9s
29:	learn: 30.4437650	total: 653ms	remaining: 5.88s
30:	learn: 30.1139865	total: 672ms	remaining: 5.83s
31:	learn: 29.6348886	total: 694ms	remaining: 5.82s
32:	learn: 29.4374411	total: 721ms	remaining: 5.84s
33:	learn: 29.1774552	total: 746ms	remaining: 5.83s
34:	learn: 28.9121068	total: 768ms	remaining: 5.82s
35:	learn: 28.6291033	total: 790ms	remaining: 5.8s
36:	learn: 28.3365166	total: 812ms	remaining: 5.77s
37:	learn: 28.0654213	total: 833ms	remaining: 5.75s
38:	learn: 27.7120990	total: 854ms	remaining: 5.71s
39:	learn: 27.4700227	total: 873ms	remaining: 5.67s
40:	learn: 27.2052722	total: 894ms	remaining: 5.64s
41:	learn: 26.9401129	total: 916ms	remaining: 5.63s
42:	learn: 26.6081493	total: 948ms	remaining: 5.67s
43:	learn: 26.3847138	total: 973ms	remaining: 5.66s
44:	learn: 26.2201660	total: 995ms	remaining: 5.64s
45:	learn: 26.0513425	total: 1.02s	remaining: 5.61s
46:	learn: 25.8609437	total: 1.04s	remaining: 5.59s
47:	learn: 25.6040252	total: 1.06s	remaining: 5.57s
48:	learn: 25.4235507	total: 1.08s	remaining: 5.54s
49:	learn: 25.2896788	total: 1.1s	remaining: 5.51s
50:	learn: 25.1208197	total: 1.12s	remaining: 5.49s
51:	learn: 24.8660258	total: 1.13s	remaining: 5.39s
52:	learn: 24.6165133	total: 1.16s	remaining: 5.38s
53:	learn: 24.3828983	total: 1.18s	remaining: 5.36s
54:	learn: 24.1841624	total: 1.2s	remaining: 5.34s
55:	learn: 24.0006316	total: 1.22s	remaining: 5.32s
56:	learn: 23.7695363	total: 1.24s	remaining: 5.29s
57:	learn: 23.6284017	total: 1.26s	remaining: 5.25s
58:	learn: 23.4125305	total: 1.28s	remaining: 5.23s
59:	learn: 23.2250456	total: 1.3s	remaining: 5.2s
60:	learn: 23.0467385	total: 1.32s	remaining: 5.18s
61:	learn: 22.7033792	total: 1.35s	remaining: 5.18s
62:	learn: 22.5334580	total: 1.37s	remaining: 5.17s
63:	learn: 22.3638971	total: 1.39s	remaining: 5.14s
64:	learn: 22.1384904	total: 1.42s	remaining: 5.12s
65:	learn: 22.0135698	total: 1.44s	remaining: 5.1s
66:	learn: 21.8734424	total: 1.46s	remaining: 5.08s
67:	learn: 21.7496417	total: 1.48s	remaining: 5.06s
68:	learn: 21.5374284	total: 1.5s	remaining: 5.03s
69:	learn: 21.3371276	total: 1.52s	remaining: 5s
70:	learn: 21.0990139	total: 1.54s	remaining: 4.98s
71:	learn: 20.9642590	total: 1.58s	remaining: 5.01s
72:	learn: 20.8049721	total: 1.6s	remaining: 4.99s
73:	learn: 20.7124973	total: 1.63s	remaining: 4.98s
74:	learn: 20.6049930	total: 1.65s	remaining: 4.96s
75:	learn: 20.4963737	total: 1.68s	remaining: 4.94s
76:	learn: 20.3645418	total: 1.7s	remaining: 4.92s
77:	learn: 20.2519924	total: 1.72s	remaining: 4.9s
78:	learn: 20.0505831	total: 1.74s	remaining: 4.88s
79:	learn: 19.9272769	total: 1.77s	remaining: 4.87s
80:	learn: 19.8219589	total: 1.8s	remaining: 4.88s
81:	learn: 19.7098289	total: 1.83s	remaining: 4.86s
82:	learn: 19.4383686	total: 1.85s	remaining: 4.84s
83:	learn: 19.3315372	total: 1.87s	remaining: 4.82s
84:	learn: 19.2144697	total: 1.9s	remaining: 4.8s
85:	learn: 19.0849701	total: 1.92s	remaining: 4.78s
86:	learn: 18.9769215	total: 1.94s	remaining: 4.75s
87:	learn: 18.8581283	total: 1.96s	remaining: 4.73s
88:	learn: 18.7414069	total: 1.99s	remaining: 4.71s
89:	learn: 18.6649642	total: 2.01s	remaining: 4.68s
90:	learn: 18.5127864	total: 2.04s	remaining: 4.68s
91:	learn: 18.3629102	total: 2.06s	remaining: 4.66s
92:	learn: 18.2624941	total: 2.08s	remaining: 4.63s
93:	learn: 18.1645836	total: 2.1s	remaining: 4.61s
94:	learn: 18.0717273	total: 2.12s	remaining: 4.58s
95:	learn: 17.9594520	total: 2.14s	remaining: 4.55s
96:	learn: 17.8692648	total: 2.16s	remaining: 4.53s
97:	learn: 17.7758009	total: 2.19s	remaining: 4.51s
98:	learn: 17.6633350	total: 2.21s	remaining: 4.49s
99:	learn: 17.5393236	total: 2.24s	remaining: 4.49s
100:	learn: 17.4441841	total: 2.27s	remaining: 4.47s
101:	learn: 17.3636497	total: 2.29s	remaining: 4.45s
102:	learn: 17.2836586	total: 2.32s	remaining: 4.43s
103:	learn: 17.1666480	total: 2.34s	remaining: 4.41s
104:	learn: 17.0603123	total: 2.36s	remaining: 4.39s
105:	learn: 16.9701019	total: 2.38s	remaining: 4.36s
106:	learn: 16.8819325	total: 2.41s	remaining: 4.34s
107:	learn: 16.7800721	total: 2.43s	remaining: 4.32s
108:	learn: 16.6575687	total: 2.46s	remaining: 4.31s
109:	learn: 16.5621285	total: 2.48s	remaining: 4.29s
110:	learn: 16.4805668	total: 2.5s	remaining: 4.26s
111:	learn: 16.3664491	total: 2.53s	remaining: 4.24s
112:	learn: 16.2921576	total: 2.55s	remaining: 4.22s
113:	learn: 16.2123714	total: 2.57s	remaining: 4.19s
114:	learn: 16.1305926	total: 2.59s	remaining: 4.17s
115:	learn: 16.0452681	total: 2.61s	remaining: 4.15s
116:	learn: 15.9356767	total: 2.64s	remaining: 4.12s
117:	learn: 15.8492426	total: 2.66s	remaining: 4.1s
118:	learn: 15.7699169	total: 2.7s	remaining: 4.1s
119:	learn: 15.6746719	total: 2.72s	remaining: 4.08s
120:	learn: 15.5370189	total: 2.74s	remaining: 4.06s
121:	learn: 15.4445148	total: 2.77s	remaining: 4.04s
122:	learn: 15.3396325	total: 2.79s	remaining: 4.01s
123:	learn: 15.2450802	total: 2.81s	remaining: 3.99s
124:	learn: 15.1203998	total: 2.83s	remaining: 3.96s
125:	learn: 15.0601453	total: 2.86s	remaining: 3.94s
126:	learn: 14.9882312	total: 2.88s	remaining: 3.92s
127:	learn: 14.9180283	total: 2.9s	remaining: 3.9s
128:	learn: 14.8526915	total: 2.93s	remaining: 3.88s
129:	learn: 14.7657162	total: 2.95s	remaining: 3.86s
130:	learn: 14.6698595	total: 2.97s	remaining: 3.83s
131:	learn: 14.6346566	total: 2.98s	remaining: 3.79s
132:	learn: 14.5756096	total: 3s	remaining: 3.76s
133:	learn: 14.5030739	total: 3.02s	remaining: 3.74s
134:	learn: 14.3943441	total: 3.04s	remaining: 3.71s
135:	learn: 14.2404537	total: 3.06s	remaining: 3.69s
136:	learn: 14.1761228	total: 3.08s	remaining: 3.67s
137:	learn: 14.1077833	total: 3.12s	remaining: 3.66s
138:	learn: 14.0413537	total: 3.14s	remaining: 3.64s
139:	learn: 13.9757428	total: 3.17s	remaining: 3.62s
140:	learn: 13.8921768	total: 3.19s	remaining: 3.59s
141:	learn: 13.8110381	total: 3.21s	remaining: 3.57s
142:	learn: 13.7257676	total: 3.23s	remaining: 3.55s
143:	learn: 13.6518439	total: 3.25s	remaining: 3.53s
144:	learn: 13.4950736	total: 3.28s	remaining: 3.5s
145:	learn: 13.3977428	total: 3.3s	remaining: 3.48s
146:	learn: 13.3368539	total: 3.33s	remaining: 3.47s
147:	learn: 13.2559100	total: 3.35s	remaining: 3.44s
148:	learn: 13.1574001	total: 3.37s	remaining: 3.42s
149:	learn: 13.0006095	total: 3.4s	remaining: 3.4s
150:	learn: 12.9451554	total: 3.42s	remaining: 3.37s
151:	learn: 12.8348904	total: 3.44s	remaining: 3.35s
152:	learn: 12.7505428	total: 3.46s	remaining: 3.33s
153:	learn: 12.6269434	total: 3.48s	remaining: 3.3s
154:	learn: 12.5693272	total: 3.51s	remaining: 3.28s
155:	learn: 12.5049023	total: 3.54s	remaining: 3.27s
156:	learn: 12.4144067	total: 3.56s	remaining: 3.25s
157:	learn: 12.3672108	total: 3.59s	remaining: 3.22s
158:	learn: 12.2988713	total: 3.61s	remaining: 3.2s
159:	learn: 12.2500411	total: 3.63s	remaining: 3.18s
160:	learn: 12.2002550	total: 3.66s	remaining: 3.16s
161:	learn: 12.0921756	total: 3.68s	remaining: 3.13s
162:	learn: 12.0261456	total: 3.7s	remaining: 3.11s
163:	learn: 11.9595478	total: 3.73s	remaining: 3.09s
164:	learn: 11.9040826	total: 3.76s	remaining: 3.08s
165:	learn: 11.8185631	total: 3.78s	remaining: 3.05s
166:	learn: 11.7394422	total: 3.8s	remaining: 3.03s
167:	learn: 11.6639319	total: 3.82s	remaining: 3s
168:	learn: 11.6147181	total: 3.85s	remaining: 2.98s
169:	learn: 11.5761586	total: 3.87s	remaining: 2.96s
170:	learn: 11.4910059	total: 3.89s	remaining: 2.93s
171:	learn: 11.4181227	total: 3.91s	remaining: 2.91s
172:	learn: 11.3626035	total: 3.93s	remaining: 2.89s
173:	learn: 11.2507892	total: 3.96s	remaining: 2.87s
174:	learn: 11.1798403	total: 3.98s	remaining: 2.85s
175:	learn: 11.1190643	total: 4.01s	remaining: 2.82s
176:	learn: 11.0620102	total: 4.03s	remaining: 2.8s
177:	learn: 10.9793884	total: 4.05s	remaining: 2.78s
178:	learn: 10.8968370	total: 4.08s	remaining: 2.75s
179:	learn: 10.8122733	total: 4.1s	remaining: 2.73s
180:	learn: 10.7545856	total: 4.12s	remaining: 2.71s
181:	learn: 10.6836395	total: 4.14s	remaining: 2.68s
182:	learn: 10.6441863	total: 4.16s	remaining: 2.66s
183:	learn: 10.5944997	total: 4.19s	remaining: 2.64s
184:	learn: 10.5161755	total: 4.21s	remaining: 2.62s
185:	learn: 10.4705995	total: 4.23s	remaining: 2.59s
186:	learn: 10.4187076	total: 4.25s	remaining: 2.57s
187:	learn: 10.3683730	total: 4.27s	remaining: 2.54s
188:	learn: 10.3150620	total: 4.29s	remaining: 2.52s
189:	learn: 10.2691155	total: 4.31s	remaining: 2.5s
190:	learn: 10.2272718	total: 4.33s	remaining: 2.47s
191:	learn: 10.1871331	total: 4.36s	remaining: 2.45s
192:	learn: 10.1443128	total: 4.38s	remaining: 2.43s
193:	learn: 10.0668189	total: 4.41s	remaining: 2.41s
194:	learn: 10.0256380	total: 4.43s	remaining: 2.39s
195:	learn: 9.9787956	total: 4.46s	remaining: 2.37s
196:	learn: 9.9322122	total: 4.48s	remaining: 2.34s
197:	learn: 9.8850093	total: 4.5s	remaining: 2.32s
198:	learn: 9.8380140	total: 4.52s	remaining: 2.29s
199:	learn: 9.8106296	total: 4.54s	remaining: 2.27s
200:	learn: 9.7585749	total: 4.57s	remaining: 2.25s
201:	learn: 9.7182879	total: 4.59s	remaining: 2.23s
202:	learn: 9.6821771	total: 4.61s	remaining: 2.2s
203:	learn: 9.6399101	total: 4.64s	remaining: 2.18s
204:	learn: 9.6048849	total: 4.66s	remaining: 2.16s
205:	learn: 9.5638590	total: 4.68s	remaining: 2.13s
206:	learn: 9.5142374	total: 4.7s	remaining: 2.11s
207:	learn: 9.4695144	total: 4.72s	remaining: 2.09s
208:	learn: 9.4331939	total: 4.74s	remaining: 2.06s
209:	learn: 9.3833838	total: 4.76s	remaining: 2.04s
210:	learn: 9.3517645	total: 4.78s	remaining: 2.02s
211:	learn: 9.3163444	total: 4.8s	remaining: 1.99s
212:	learn: 9.2788352	total: 4.84s	remaining: 1.98s
213:	learn: 9.2459289	total: 4.86s	remaining: 1.95s
214:	learn: 9.2104536	total: 4.88s	remaining: 1.93s
215:	learn: 9.1729420	total: 4.91s	remaining: 1.91s
216:	learn: 9.1364121	total: 4.93s	remaining: 1.89s
217:	learn: 9.0970859	total: 4.95s	remaining: 1.86s
218:	learn: 9.0611146	total: 4.97s	remaining: 1.84s
219:	learn: 9.0276741	total: 4.99s	remaining: 1.82s
220:	learn: 8.9977644	total: 5.02s	remaining: 1.79s
221:	learn: 8.9633156	total: 5.04s	remaining: 1.77s
222:	learn: 8.9313136	total: 5.07s	remaining: 1.75s
223:	learn: 8.9023504	total: 5.09s	remaining: 1.73s
224:	learn: 8.8741668	total: 5.11s	remaining: 1.7s
225:	learn: 8.8402639	total: 5.13s	remaining: 1.68s
226:	learn: 8.8061090	total: 5.15s	remaining: 1.66s
227:	learn: 8.7767795	total: 5.17s	remaining: 1.63s
228:	learn: 8.7514356	total: 5.2s	remaining: 1.61s
229:	learn: 8.7118727	total: 5.22s	remaining: 1.59s
230:	learn: 8.6759132	total: 5.24s	remaining: 1.57s
231:	learn: 8.6447220	total: 5.27s	remaining: 1.54s
232:	learn: 8.6102503	total: 5.29s	remaining: 1.52s
233:	learn: 8.5858738	total: 5.31s	remaining: 1.5s
234:	learn: 8.5595561	total: 5.34s	remaining: 1.48s
235:	learn: 8.5313778	total: 5.36s	remaining: 1.45s
236:	learn: 8.5053234	total: 5.38s	remaining: 1.43s
237:	learn: 8.4737268	total: 5.4s	remaining: 1.41s
238:	learn: 8.4414991	total: 5.42s	remaining: 1.38s
239:	learn: 8.4168374	total: 5.44s	remaining: 1.36s
240:	learn: 8.3862136	total: 5.46s	remaining: 1.34s
241:	learn: 8.3454081	total: 5.51s	remaining: 1.32s
242:	learn: 8.3145638	total: 5.53s	remaining: 1.3s
243:	learn: 8.3007136	total: 5.55s	remaining: 1.27s
244:	learn: 8.2708676	total: 5.58s	remaining: 1.25s
245:	learn: 8.2454265	total: 5.6s	remaining: 1.23s
246:	learn: 8.2117256	total: 5.63s	remaining: 1.21s
247:	learn: 8.1846870	total: 5.65s	remaining: 1.18s
248:	learn: 8.1602441	total: 5.67s	remaining: 1.16s
249:	learn: 8.1410728	total: 5.71s	remaining: 1.14s
250:	learn: 8.1138413	total: 5.73s	remaining: 1.12s
251:	learn: 8.0824887	total: 5.76s	remaining: 1.1s
252:	learn: 8.0557089	total: 5.79s	remaining: 1.08s
253:	learn: 8.0378239	total: 5.82s	remaining: 1.05s
254:	learn: 8.0018329	total: 5.84s	remaining: 1.03s
255:	learn: 7.9776523	total: 5.87s	remaining: 1.01s
256:	learn: 7.9437470	total: 5.9s	remaining: 987ms
257:	learn: 7.9170545	total: 5.92s	remaining: 964ms
258:	learn: 7.9065923	total: 5.94s	remaining: 941ms
259:	learn: 7.8777123	total: 5.97s	remaining: 918ms
260:	learn: 7.8495349	total: 5.99s	remaining: 895ms
261:	learn: 7.8238648	total: 6.01s	remaining: 872ms
262:	learn: 7.8001134	total: 6.04s	remaining: 850ms
263:	learn: 7.7619007	total: 6.07s	remaining: 827ms
264:	learn: 7.7370130	total: 6.09s	remaining: 805ms
265:	learn: 7.7109084	total: 6.12s	remaining: 783ms
266:	learn: 7.6914677	total: 6.15s	remaining: 760ms
267:	learn: 7.6883177	total: 6.17s	remaining: 737ms
268:	learn: 7.6603652	total: 6.2s	remaining: 715ms
269:	learn: 7.6441569	total: 6.23s	remaining: 692ms
270:	learn: 7.6236642	total: 6.25s	remaining: 669ms
271:	learn: 7.5954955	total: 6.28s	remaining: 646ms
272:	learn: 7.5722024	total: 6.31s	remaining: 624ms
273:	learn: 7.5424505	total: 6.34s	remaining: 601ms
274:	learn: 7.5242764	total: 6.36s	remaining: 578ms
275:	learn: 7.4998291	total: 6.38s	remaining: 555ms
276:	learn: 7.4835526	total: 6.41s	remaining: 532ms
277:	learn: 7.4492474	total: 6.43s	remaining: 509ms
278:	learn: 7.4246335	total: 6.45s	remaining: 486ms
279:	learn: 7.4104530	total: 6.48s	remaining: 463ms
280:	learn: 7.4016977	total: 6.51s	remaining: 440ms
281:	learn: 7.3964367	total: 6.53s	remaining: 417ms
282:	learn: 7.3818806	total: 6.57s	remaining: 395ms
283:	learn: 7.3577327	total: 6.59s	remaining: 371ms
284:	learn: 7.3346564	total: 6.62s	remaining: 348ms
285:	learn: 7.3215898	total: 6.64s	remaining: 325ms
286:	learn: 7.3070161	total: 6.67s	remaining: 302ms
287:	learn: 7.2839231	total: 6.69s	remaining: 279ms
288:	learn: 7.2664252	total: 6.71s	remaining: 256ms
289:	learn: 7.2505303	total: 6.74s	remaining: 232ms
290:	learn: 7.2286141	total: 6.77s	remaining: 209ms
291:	learn: 7.2008212	total: 6.8s	remaining: 186ms
292:	learn: 7.1800203	total: 6.83s	remaining: 163ms
293:	learn: 7.1485097	total: 6.85s	remaining: 140ms
294:	learn: 7.1283191	total: 6.88s	remaining: 117ms
295:	learn: 7.1112866	total: 6.9s	remaining: 93.3ms
296:	learn: 7.0786679	total: 6.93s	remaining: 70ms
297:	learn: 7.0685798	total: 6.96s	remaining: 46.7ms
298:	learn: 7.0633802	total: 6.99s	remaining: 23.4ms
299:	learn: 7.0504357	total: 7.02s	remaining: 0us
0:	learn: 46.1068821	total: 3.23ms	remaining: 967ms
1:	learn: 45.5186259	total: 24.6ms	remaining: 3.66s
2:	learn: 44.8982427	total: 48.1ms	remaining: 4.76s
3:	learn: 44.0813314	total: 71.9ms	remaining: 5.32s
4:	learn: 43.3256787	total: 99.4ms	remaining: 5.86s
5:	learn: 42.5989163	total: 121ms	remaining: 5.91s
6:	learn: 41.8412255	total: 142ms	remaining: 5.95s
7:	learn: 41.1629605	total: 163ms	remaining: 5.95s
8:	learn: 40.6649568	total: 184ms	remaining: 5.95s
9:	learn: 40.1755647	total: 205ms	remaining: 5.96s
10:	learn: 39.7843303	total: 227ms	remaining: 5.97s
11:	learn: 39.1263454	total: 250ms	remaining: 6s
12:	learn: 38.5049650	total: 273ms	remaining: 6.02s
13:	learn: 37.8816934	total: 302ms	remaining: 6.17s
14:	learn: 37.3925567	total: 326ms	remaining: 6.2s
15:	learn: 36.8080381	total: 350ms	remaining: 6.21s
16:	learn: 36.1363624	total: 373ms	remaining: 6.21s
17:	learn: 35.8171279	total: 397ms	remaining: 6.21s
18:	learn: 35.2225026	total: 419ms	remaining: 6.19s
19:	learn: 34.7373286	total: 441ms	remaining: 6.18s
20:	learn: 34.2563365	total: 464ms	remaining: 6.16s
21:	learn: 33.9368110	total: 486ms	remaining: 6.15s
22:	learn: 33.5339596	total: 517ms	remaining: 6.23s
23:	learn: 33.2090930	total: 540ms	remaining: 6.2s
24:	learn: 32.8232733	total: 560ms	remaining: 6.16s
25:	learn: 32.5065756	total: 581ms	remaining: 6.12s
26:	learn: 32.0091556	total: 603ms	remaining: 6.1s
27:	learn: 31.5901880	total: 626ms	remaining: 6.08s
28:	learn: 31.2602719	total: 648ms	remaining: 6.05s
29:	learn: 30.9824864	total: 670ms	remaining: 6.03s
30:	learn: 30.6837776	total: 694ms	remaining: 6.02s
31:	learn: 30.3784738	total: 725ms	remaining: 6.07s
32:	learn: 29.9551890	total: 749ms	remaining: 6.06s
33:	learn: 29.6880796	total: 771ms	remaining: 6.04s
34:	learn: 29.3535204	total: 794ms	remaining: 6.01s
35:	learn: 29.0983115	total: 819ms	remaining: 6s
36:	learn: 28.8227016	total: 839ms	remaining: 5.96s
37:	learn: 28.5948966	total: 861ms	remaining: 5.94s
38:	learn: 28.2092747	total: 886ms	remaining: 5.93s
39:	learn: 27.9292918	total: 910ms	remaining: 5.92s
40:	learn: 27.6917466	total: 939ms	remaining: 5.93s
41:	learn: 27.3898320	total: 962ms	remaining: 5.91s
42:	learn: 27.1423506	total: 984ms	remaining: 5.88s
43:	learn: 26.9143906	total: 1.01s	remaining: 5.86s
44:	learn: 26.6628354	total: 1.03s	remaining: 5.82s
45:	learn: 26.4436459	total: 1.05s	remaining: 5.79s
46:	learn: 26.2699511	total: 1.07s	remaining: 5.76s
47:	learn: 26.0687332	total: 1.09s	remaining: 5.75s
48:	learn: 25.8813257	total: 1.12s	remaining: 5.73s
49:	learn: 25.6417147	total: 1.15s	remaining: 5.75s
50:	learn: 25.4978473	total: 1.17s	remaining: 5.69s
51:	learn: 25.2508826	total: 1.19s	remaining: 5.67s
52:	learn: 24.9957667	total: 1.21s	remaining: 5.65s
53:	learn: 24.7897869	total: 1.23s	remaining: 5.62s
54:	learn: 24.6276395	total: 1.26s	remaining: 5.6s
55:	learn: 24.4484009	total: 1.28s	remaining: 5.57s
56:	learn: 24.2064871	total: 1.3s	remaining: 5.54s
57:	learn: 24.0355794	total: 1.32s	remaining: 5.51s
58:	learn: 23.8623034	total: 1.34s	remaining: 5.49s
59:	learn: 23.6009245	total: 1.38s	remaining: 5.5s
60:	learn: 23.4408382	total: 1.4s	remaining: 5.47s
61:	learn: 23.2362900	total: 1.42s	remaining: 5.44s
62:	learn: 23.0767254	total: 1.44s	remaining: 5.42s
63:	learn: 22.9370310	total: 1.46s	remaining: 5.4s
64:	learn: 22.7482690	total: 1.48s	remaining: 5.37s
65:	learn: 22.5740357	total: 1.5s	remaining: 5.33s
66:	learn: 22.4132876	total: 1.53s	remaining: 5.31s
67:	learn: 22.2551850	total: 1.55s	remaining: 5.28s
68:	learn: 22.0648127	total: 1.57s	remaining: 5.26s
69:	learn: 21.9204326	total: 1.61s	remaining: 5.28s
70:	learn: 21.8002567	total: 1.63s	remaining: 5.26s
71:	learn: 21.6545032	total: 1.66s	remaining: 5.25s
72:	learn: 21.5274427	total: 1.68s	remaining: 5.23s
73:	learn: 21.4235402	total: 1.71s	remaining: 5.21s
74:	learn: 21.2403786	total: 1.73s	remaining: 5.19s
75:	learn: 21.1019776	total: 1.75s	remaining: 5.17s
76:	learn: 20.9047503	total: 1.78s	remaining: 5.16s
77:	learn: 20.8140012	total: 1.81s	remaining: 5.14s
78:	learn: 20.7064981	total: 1.83s	remaining: 5.12s
79:	learn: 20.6033857	total: 1.85s	remaining: 5.09s
80:	learn: 20.4743532	total: 1.87s	remaining: 5.06s
81:	learn: 20.3272514	total: 1.89s	remaining: 5.04s
82:	learn: 20.2402909	total: 1.92s	remaining: 5.01s
83:	learn: 20.1344566	total: 1.94s	remaining: 4.98s
84:	learn: 19.9630804	total: 1.96s	remaining: 4.95s
85:	learn: 19.8196483	total: 1.98s	remaining: 4.93s
86:	learn: 19.6861323	total: 2s	remaining: 4.91s
87:	learn: 19.5689921	total: 2.04s	remaining: 4.9s
88:	learn: 19.4766099	total: 2.06s	remaining: 4.88s
89:	learn: 19.3523859	total: 2.08s	remaining: 4.86s
90:	learn: 19.2512307	total: 2.11s	remaining: 4.84s
91:	learn: 19.1541965	total: 2.13s	remaining: 4.81s
92:	learn: 18.9980138	total: 2.15s	remaining: 4.79s
93:	learn: 18.8241638	total: 2.17s	remaining: 4.76s
94:	learn: 18.6982820	total: 2.19s	remaining: 4.73s
95:	learn: 18.6170939	total: 2.21s	remaining: 4.71s
96:	learn: 18.5216398	total: 2.24s	remaining: 4.68s
97:	learn: 18.4188891	total: 2.27s	remaining: 4.67s
98:	learn: 18.3473321	total: 2.29s	remaining: 4.64s
99:	learn: 18.2744582	total: 2.3s	remaining: 4.61s
100:	learn: 18.1064776	total: 2.33s	remaining: 4.58s
101:	learn: 18.0564103	total: 2.35s	remaining: 4.56s
102:	learn: 17.9684931	total: 2.37s	remaining: 4.53s
103:	learn: 17.8577080	total: 2.39s	remaining: 4.5s
104:	learn: 17.7557863	total: 2.41s	remaining: 4.47s
105:	learn: 17.6830354	total: 2.43s	remaining: 4.45s
106:	learn: 17.5928641	total: 2.45s	remaining: 4.42s
107:	learn: 17.5447625	total: 2.48s	remaining: 4.41s
108:	learn: 17.4830060	total: 2.51s	remaining: 4.39s
109:	learn: 17.3760969	total: 2.53s	remaining: 4.37s
110:	learn: 17.2990516	total: 2.55s	remaining: 4.35s
111:	learn: 17.2626219	total: 2.58s	remaining: 4.32s
112:	learn: 17.1610712	total: 2.6s	remaining: 4.3s
113:	learn: 17.1129518	total: 2.62s	remaining: 4.27s
114:	learn: 16.9637799	total: 2.64s	remaining: 4.25s
115:	learn: 16.8724617	total: 2.66s	remaining: 4.22s
116:	learn: 16.7990982	total: 2.69s	remaining: 4.21s
117:	learn: 16.7354572	total: 2.71s	remaining: 4.18s
118:	learn: 16.6225750	total: 2.73s	remaining: 4.16s
119:	learn: 16.5778971	total: 2.75s	remaining: 4.13s
120:	learn: 16.5383915	total: 2.77s	remaining: 4.1s
121:	learn: 16.4801189	total: 2.79s	remaining: 4.08s
122:	learn: 16.3909340	total: 2.81s	remaining: 4.05s
123:	learn: 16.3129754	total: 2.83s	remaining: 4.02s
124:	learn: 16.2430907	total: 2.85s	remaining: 4s
125:	learn: 16.1779646	total: 2.88s	remaining: 3.97s
126:	learn: 16.1162194	total: 2.9s	remaining: 3.96s
127:	learn: 16.0084749	total: 2.93s	remaining: 3.94s
128:	learn: 15.9268705	total: 2.96s	remaining: 3.92s
129:	learn: 15.8770194	total: 2.98s	remaining: 3.9s
130:	learn: 15.8445342	total: 3s	remaining: 3.87s
131:	learn: 15.7799082	total: 3.02s	remaining: 3.85s
132:	learn: 15.7225612	total: 3.04s	remaining: 3.82s
133:	learn: 15.6327986	total: 3.06s	remaining: 3.79s
134:	learn: 15.5560479	total: 3.08s	remaining: 3.77s
135:	learn: 15.4650063	total: 3.11s	remaining: 3.75s
136:	learn: 15.4439565	total: 3.13s	remaining: 3.73s
137:	learn: 15.3723683	total: 3.15s	remaining: 3.7s
138:	learn: 15.2867520	total: 3.18s	remaining: 3.68s
139:	learn: 15.2008060	total: 3.2s	remaining: 3.65s
140:	learn: 15.1226253	total: 3.22s	remaining: 3.63s
141:	learn: 15.0392603	total: 3.24s	remaining: 3.6s
142:	learn: 15.0209441	total: 3.26s	remaining: 3.58s
143:	learn: 14.9691162	total: 3.28s	remaining: 3.56s
144:	learn: 14.8809723	total: 3.3s	remaining: 3.53s
145:	learn: 14.7790501	total: 3.33s	remaining: 3.52s
146:	learn: 14.7124707	total: 3.36s	remaining: 3.5s
147:	learn: 14.6505409	total: 3.38s	remaining: 3.47s
148:	learn: 14.5977957	total: 3.4s	remaining: 3.45s
149:	learn: 14.4563773	total: 3.43s	remaining: 3.43s
150:	learn: 14.3903954	total: 3.45s	remaining: 3.4s
151:	learn: 14.3677191	total: 3.47s	remaining: 3.38s
152:	learn: 14.3170088	total: 3.49s	remaining: 3.35s
153:	learn: 14.2212460	total: 3.51s	remaining: 3.33s
154:	learn: 14.1865067	total: 3.54s	remaining: 3.31s
155:	learn: 14.1133763	total: 3.56s	remaining: 3.29s
156:	learn: 14.0632935	total: 3.58s	remaining: 3.26s
157:	learn: 14.0317962	total: 3.61s	remaining: 3.24s
158:	learn: 13.9531527	total: 3.63s	remaining: 3.22s
159:	learn: 13.9361664	total: 3.65s	remaining: 3.19s
160:	learn: 13.8152344	total: 3.67s	remaining: 3.17s
161:	learn: 13.7794016	total: 3.7s	remaining: 3.15s
162:	learn: 13.7554484	total: 3.73s	remaining: 3.13s
163:	learn: 13.6786599	total: 3.75s	remaining: 3.11s
164:	learn: 13.6580934	total: 3.78s	remaining: 3.09s
165:	learn: 13.6135467	total: 3.8s	remaining: 3.07s
166:	learn: 13.5774402	total: 3.82s	remaining: 3.04s
167:	learn: 13.4665364	total: 3.85s	remaining: 3.02s
168:	learn: 13.4457745	total: 3.87s	remaining: 3s
169:	learn: 13.4313272	total: 3.89s	remaining: 2.98s
170:	learn: 13.3740130	total: 3.91s	remaining: 2.95s
171:	learn: 13.3012082	total: 3.94s	remaining: 2.93s
172:	learn: 13.2580888	total: 3.96s	remaining: 2.91s
173:	learn: 13.2260963	total: 3.99s	remaining: 2.89s
174:	learn: 13.1934687	total: 4.01s	remaining: 2.87s
175:	learn: 13.1567898	total: 4.03s	remaining: 2.84s
176:	learn: 13.1207167	total: 4.06s	remaining: 2.82s
177:	learn: 13.0453975	total: 4.08s	remaining: 2.79s
178:	learn: 12.9667806	total: 4.1s	remaining: 2.77s
179:	learn: 12.9050987	total: 4.12s	remaining: 2.75s
180:	learn: 12.7877614	total: 4.14s	remaining: 2.72s
181:	learn: 12.7246635	total: 4.17s	remaining: 2.71s
182:	learn: 12.6649785	total: 4.2s	remaining: 2.69s
183:	learn: 12.5966292	total: 4.22s	remaining: 2.66s
184:	learn: 12.5791866	total: 4.25s	remaining: 2.64s
185:	learn: 12.5265550	total: 4.27s	remaining: 2.62s
186:	learn: 12.4747790	total: 4.29s	remaining: 2.59s
187:	learn: 12.3639334	total: 4.31s	remaining: 2.57s
188:	learn: 12.3060104	total: 4.34s	remaining: 2.55s
189:	learn: 12.2108815	total: 4.37s	remaining: 2.53s
190:	learn: 12.1295363	total: 4.39s	remaining: 2.51s
191:	learn: 12.0828143	total: 4.41s	remaining: 2.48s
192:	learn: 12.0650770	total: 4.43s	remaining: 2.46s
193:	learn: 11.9979395	total: 4.45s	remaining: 2.43s
194:	learn: 11.9754814	total: 4.47s	remaining: 2.41s
195:	learn: 11.9328555	total: 4.49s	remaining: 2.38s
196:	learn: 11.9122042	total: 4.51s	remaining: 2.36s
197:	learn: 11.8518842	total: 4.53s	remaining: 2.34s
198:	learn: 11.8304153	total: 4.56s	remaining: 2.31s
199:	learn: 11.8121741	total: 4.59s	remaining: 2.29s
200:	learn: 11.7411942	total: 4.62s	remaining: 2.27s
201:	learn: 11.7329288	total: 4.64s	remaining: 2.25s
202:	learn: 11.7074830	total: 4.67s	remaining: 2.23s
203:	learn: 11.6479110	total: 4.69s	remaining: 2.21s
204:	learn: 11.6341037	total: 4.71s	remaining: 2.18s
205:	learn: 11.5703505	total: 4.73s	remaining: 2.16s
206:	learn: 11.5415491	total: 4.75s	remaining: 2.14s
207:	learn: 11.5016416	total: 4.78s	remaining: 2.11s
208:	learn: 11.4843453	total: 4.8s	remaining: 2.09s
209:	learn: 11.4556878	total: 4.83s	remaining: 2.07s
210:	learn: 11.3953637	total: 4.85s	remaining: 2.04s
211:	learn: 11.3640248	total: 4.87s	remaining: 2.02s
212:	learn: 11.3189656	total: 4.89s	remaining: 2s
213:	learn: 11.3023318	total: 4.91s	remaining: 1.97s
214:	learn: 11.2812809	total: 4.94s	remaining: 1.95s
215:	learn: 11.2649164	total: 4.96s	remaining: 1.93s
216:	learn: 11.2249674	total: 4.98s	remaining: 1.9s
217:	learn: 11.1694593	total: 5s	remaining: 1.88s
218:	learn: 11.1504747	total: 5.04s	remaining: 1.86s
219:	learn: 11.1099205	total: 5.07s	remaining: 1.84s
220:	learn: 11.0946598	total: 5.09s	remaining: 1.82s
221:	learn: 11.0335988	total: 5.11s	remaining: 1.8s
222:	learn: 11.0096492	total: 5.14s	remaining: 1.77s
223:	learn: 10.9672501	total: 5.16s	remaining: 1.75s
224:	learn: 10.9507570	total: 5.18s	remaining: 1.73s
225:	learn: 10.9314289	total: 5.2s	remaining: 1.7s
226:	learn: 10.8670947	total: 5.23s	remaining: 1.68s
227:	learn: 10.8529443	total: 5.25s	remaining: 1.66s
228:	learn: 10.8318645	total: 5.28s	remaining: 1.64s
229:	learn: 10.8156588	total: 5.3s	remaining: 1.61s
230:	learn: 10.7951131	total: 5.32s	remaining: 1.59s
231:	learn: 10.7795677	total: 5.34s	remaining: 1.56s
232:	learn: 10.7366028	total: 5.36s	remaining: 1.54s
233:	learn: 10.7193612	total: 5.38s	remaining: 1.52s
234:	learn: 10.6990737	total: 5.41s	remaining: 1.5s
235:	learn: 10.6205495	total: 5.44s	remaining: 1.47s
236:	learn: 10.5976748	total: 5.46s	remaining: 1.45s
237:	learn: 10.5212017	total: 5.48s	remaining: 1.43s
238:	learn: 10.4839783	total: 5.5s	remaining: 1.4s
239:	learn: 10.4723193	total: 5.53s	remaining: 1.38s
240:	learn: 10.4438944	total: 5.55s	remaining: 1.36s
241:	learn: 10.4068644	total: 5.57s	remaining: 1.33s
242:	learn: 10.3777867	total: 5.59s	remaining: 1.31s
243:	learn: 10.3633196	total: 5.62s	remaining: 1.29s
244:	learn: 10.3508529	total: 5.64s	remaining: 1.27s
245:	learn: 10.3391285	total: 5.66s	remaining: 1.24s
246:	learn: 10.3202046	total: 5.68s	remaining: 1.22s
247:	learn: 10.2679507	total: 5.7s	remaining: 1.2s
248:	learn: 10.2444411	total: 5.72s	remaining: 1.17s
249:	learn: 10.1978707	total: 5.74s	remaining: 1.15s
250:	learn: 10.1746210	total: 5.76s	remaining: 1.13s
251:	learn: 10.1455445	total: 5.79s	remaining: 1.1s
252:	learn: 10.1234292	total: 5.81s	remaining: 1.08s
253:	learn: 10.1009263	total: 5.83s	remaining: 1.06s
254:	learn: 10.0506537	total: 5.86s	remaining: 1.03s
255:	learn: 9.9973799	total: 5.88s	remaining: 1.01s
256:	learn: 9.9923793	total: 5.91s	remaining: 988ms
257:	learn: 9.9592135	total: 5.93s	remaining: 965ms
258:	learn: 9.9455912	total: 5.95s	remaining: 942ms
259:	learn: 9.9351881	total: 5.97s	remaining: 919ms
260:	learn: 9.8843396	total: 5.99s	remaining: 895ms
261:	learn: 9.8732841	total: 6.01s	remaining: 872ms
262:	learn: 9.8530402	total: 6.04s	remaining: 849ms
263:	learn: 9.8379209	total: 6.07s	remaining: 827ms
264:	learn: 9.8012657	total: 6.09s	remaining: 804ms
265:	learn: 9.7881742	total: 6.11s	remaining: 781ms
266:	learn: 9.7723933	total: 6.13s	remaining: 758ms
267:	learn: 9.7613461	total: 6.15s	remaining: 734ms
268:	learn: 9.7214417	total: 6.17s	remaining: 711ms
269:	learn: 9.6976897	total: 6.19s	remaining: 688ms
270:	learn: 9.6919786	total: 6.21s	remaining: 665ms
271:	learn: 9.6263135	total: 6.24s	remaining: 642ms
272:	learn: 9.6175527	total: 6.26s	remaining: 619ms
273:	learn: 9.6110661	total: 6.29s	remaining: 597ms
274:	learn: 9.5992549	total: 6.31s	remaining: 574ms
275:	learn: 9.5709079	total: 6.33s	remaining: 551ms
276:	learn: 9.5584595	total: 6.36s	remaining: 528ms
277:	learn: 9.5492847	total: 6.38s	remaining: 505ms
278:	learn: 9.5261231	total: 6.4s	remaining: 482ms
279:	learn: 9.5160964	total: 6.42s	remaining: 459ms
280:	learn: 9.4945891	total: 6.45s	remaining: 436ms
281:	learn: 9.4659751	total: 6.47s	remaining: 413ms
282:	learn: 9.4474987	total: 6.5s	remaining: 390ms
283:	learn: 9.4369109	total: 6.52s	remaining: 367ms
284:	learn: 9.4285200	total: 6.54s	remaining: 344ms
285:	learn: 9.4124421	total: 6.56s	remaining: 321ms
286:	learn: 9.3903730	total: 6.58s	remaining: 298ms
287:	learn: 9.3240575	total: 6.61s	remaining: 275ms
288:	learn: 9.3124220	total: 6.63s	remaining: 252ms
289:	learn: 9.2881271	total: 6.65s	remaining: 229ms
290:	learn: 9.2713655	total: 6.67s	remaining: 206ms
291:	learn: 9.2641531	total: 6.7s	remaining: 184ms
292:	learn: 9.2524129	total: 6.73s	remaining: 161ms
293:	learn: 9.2343575	total: 6.75s	remaining: 138ms
294:	learn: 9.1973322	total: 6.77s	remaining: 115ms
295:	learn: 9.1565802	total: 6.8s	remaining: 91.9ms
296:	learn: 9.1428051	total: 6.82s	remaining: 68.9ms
297:	learn: 9.1293653	total: 6.84s	remaining: 45.9ms
298:	learn: 9.1105879	total: 6.86s	remaining: 22.9ms
299:	learn: 9.1005583	total: 6.88s	remaining: 0us
0:	learn: 46.9033478	total: 19.8ms	remaining: 5.91s
1:	learn: 46.0879122	total: 41.5ms	remaining: 6.19s
2:	learn: 45.6500716	total: 62.8ms	remaining: 6.21s
3:	learn: 44.8037484	total: 83.6ms	remaining: 6.19s
4:	learn: 44.1513690	total: 105ms	remaining: 6.17s
5:	learn: 43.6033150	total: 127ms	remaining: 6.23s
6:	learn: 43.0669517	total: 149ms	remaining: 6.23s
7:	learn: 42.4011723	total: 172ms	remaining: 6.26s
8:	learn: 41.7060291	total: 204ms	remaining: 6.61s
9:	learn: 41.0058676	total: 230ms	remaining: 6.68s
10:	learn: 40.5518615	total: 255ms	remaining: 6.7s
11:	learn: 39.9452722	total: 277ms	remaining: 6.65s
12:	learn: 39.2539405	total: 301ms	remaining: 6.66s
13:	learn: 38.6690449	total: 323ms	remaining: 6.6s
14:	learn: 38.2389829	total: 343ms	remaining: 6.52s
15:	learn: 37.6795608	total: 365ms	remaining: 6.48s
16:	learn: 37.2562038	total: 389ms	remaining: 6.47s
17:	learn: 36.9516174	total: 413ms	remaining: 6.47s
18:	learn: 36.6189442	total: 441ms	remaining: 6.52s
19:	learn: 36.0530153	total: 462ms	remaining: 6.47s
20:	learn: 35.6536993	total: 483ms	remaining: 6.42s
21:	learn: 35.3616790	total: 505ms	remaining: 6.38s
22:	learn: 35.0627472	total: 526ms	remaining: 6.33s
23:	learn: 34.5889995	total: 546ms	remaining: 6.28s
24:	learn: 34.0395768	total: 566ms	remaining: 6.22s
25:	learn: 33.6846146	total: 587ms	remaining: 6.18s
26:	learn: 33.2581583	total: 610ms	remaining: 6.17s
27:	learn: 32.9043599	total: 640ms	remaining: 6.22s
28:	learn: 32.4603681	total: 665ms	remaining: 6.21s
29:	learn: 32.0784225	total: 689ms	remaining: 6.2s
30:	learn: 31.6654390	total: 713ms	remaining: 6.19s
31:	learn: 31.3473625	total: 736ms	remaining: 6.16s
32:	learn: 30.9124340	total: 759ms	remaining: 6.14s
33:	learn: 30.6354683	total: 781ms	remaining: 6.11s
34:	learn: 30.4404098	total: 802ms	remaining: 6.07s
35:	learn: 30.1914372	total: 826ms	remaining: 6.06s
36:	learn: 29.8249863	total: 849ms	remaining: 6.04s
37:	learn: 29.5196757	total: 877ms	remaining: 6.05s
38:	learn: 29.2605473	total: 900ms	remaining: 6.02s
39:	learn: 28.9803384	total: 922ms	remaining: 5.99s
40:	learn: 28.7535173	total: 943ms	remaining: 5.96s
41:	learn: 28.3888690	total: 966ms	remaining: 5.93s
42:	learn: 28.1381916	total: 986ms	remaining: 5.89s
43:	learn: 27.9181568	total: 1.01s	remaining: 5.87s
44:	learn: 27.6047071	total: 1.03s	remaining: 5.83s
45:	learn: 27.4164606	total: 1.05s	remaining: 5.81s
46:	learn: 27.0321668	total: 1.08s	remaining: 5.8s
47:	learn: 26.7987572	total: 1.1s	remaining: 5.8s
48:	learn: 26.6235810	total: 1.13s	remaining: 5.79s
49:	learn: 26.4084368	total: 1.15s	remaining: 5.76s
50:	learn: 26.1773159	total: 1.18s	remaining: 5.74s
51:	learn: 26.0200665	total: 1.2s	remaining: 5.72s
52:	learn: 25.8168330	total: 1.22s	remaining: 5.7s
53:	learn: 25.6154150	total: 1.24s	remaining: 5.66s
54:	learn: 25.2351738	total: 1.27s	remaining: 5.64s
55:	learn: 24.9587143	total: 1.29s	remaining: 5.63s
56:	learn: 24.7682982	total: 1.32s	remaining: 5.61s
57:	learn: 24.4602191	total: 1.34s	remaining: 5.59s
58:	learn: 24.3002094	total: 1.36s	remaining: 5.56s
59:	learn: 24.1509360	total: 1.38s	remaining: 5.53s
60:	learn: 23.9855802	total: 1.4s	remaining: 5.5s
61:	learn: 23.7747817	total: 1.43s	remaining: 5.47s
62:	learn: 23.5415832	total: 1.45s	remaining: 5.44s
63:	learn: 23.3540053	total: 1.47s	remaining: 5.42s
64:	learn: 23.1213752	total: 1.49s	remaining: 5.39s
65:	learn: 22.9729934	total: 1.52s	remaining: 5.39s
66:	learn: 22.8237351	total: 1.54s	remaining: 5.37s
67:	learn: 22.6716691	total: 1.57s	remaining: 5.35s
68:	learn: 22.5296861	total: 1.59s	remaining: 5.33s
69:	learn: 22.3725425	total: 1.61s	remaining: 5.31s
70:	learn: 22.2639328	total: 1.64s	remaining: 5.29s
71:	learn: 22.1174316	total: 1.66s	remaining: 5.26s
72:	learn: 21.9916264	total: 1.68s	remaining: 5.23s
73:	learn: 21.7797959	total: 1.7s	remaining: 5.2s
74:	learn: 21.6350589	total: 1.73s	remaining: 5.2s
75:	learn: 21.4910112	total: 1.76s	remaining: 5.18s
76:	learn: 21.3068682	total: 1.78s	remaining: 5.14s
77:	learn: 21.1725772	total: 1.8s	remaining: 5.11s
78:	learn: 21.0526496	total: 1.82s	remaining: 5.08s
79:	learn: 20.9534374	total: 1.84s	remaining: 5.06s
80:	learn: 20.8168422	total: 1.86s	remaining: 5.03s
81:	learn: 20.7138006	total: 1.88s	remaining: 5s
82:	learn: 20.5259907	total: 1.9s	remaining: 4.98s
83:	learn: 20.3881958	total: 1.93s	remaining: 4.96s
84:	learn: 20.2702350	total: 1.96s	remaining: 4.95s
85:	learn: 20.1185381	total: 1.98s	remaining: 4.92s
86:	learn: 19.9815763	total: 2s	remaining: 4.9s
87:	learn: 19.8563040	total: 2.02s	remaining: 4.88s
88:	learn: 19.7629932	total: 2.05s	remaining: 4.85s
89:	learn: 19.6361676	total: 2.07s	remaining: 4.82s
90:	learn: 19.5189179	total: 2.09s	remaining: 4.79s
91:	learn: 19.4368807	total: 2.11s	remaining: 4.77s
92:	learn: 19.3491759	total: 2.13s	remaining: 4.75s
93:	learn: 19.2441781	total: 2.16s	remaining: 4.74s
94:	learn: 19.1595312	total: 2.18s	remaining: 4.71s
95:	learn: 19.0732186	total: 2.2s	remaining: 4.68s
96:	learn: 18.9664261	total: 2.23s	remaining: 4.66s
97:	learn: 18.8752837	total: 2.25s	remaining: 4.63s
98:	learn: 18.7884732	total: 2.27s	remaining: 4.61s
99:	learn: 18.6638300	total: 2.29s	remaining: 4.58s
100:	learn: 18.5456185	total: 2.31s	remaining: 4.55s
101:	learn: 18.4491938	total: 2.33s	remaining: 4.53s
102:	learn: 18.3712210	total: 2.35s	remaining: 4.5s
103:	learn: 18.2907426	total: 2.38s	remaining: 4.48s
104:	learn: 18.2393122	total: 2.41s	remaining: 4.47s
105:	learn: 18.1493295	total: 2.43s	remaining: 4.45s
106:	learn: 18.0741996	total: 2.45s	remaining: 4.42s
107:	learn: 17.9763617	total: 2.47s	remaining: 4.4s
108:	learn: 17.8511711	total: 2.5s	remaining: 4.37s
109:	learn: 17.7975521	total: 2.52s	remaining: 4.35s
110:	learn: 17.7280526	total: 2.54s	remaining: 4.32s
111:	learn: 17.6960456	total: 2.56s	remaining: 4.29s
112:	learn: 17.6209638	total: 2.59s	remaining: 4.28s
113:	learn: 17.5389165	total: 2.61s	remaining: 4.26s
114:	learn: 17.4874967	total: 2.63s	remaining: 4.23s
115:	learn: 17.3744401	total: 2.65s	remaining: 4.21s
116:	learn: 17.2762107	total: 2.67s	remaining: 4.18s
117:	learn: 17.1930198	total: 2.69s	remaining: 4.15s
118:	learn: 17.0804375	total: 2.71s	remaining: 4.13s
119:	learn: 17.0100383	total: 2.73s	remaining: 4.1s
120:	learn: 16.9515165	total: 2.75s	remaining: 4.08s
121:	learn: 16.8221030	total: 2.78s	remaining: 4.05s
122:	learn: 16.7270258	total: 2.8s	remaining: 4.03s
123:	learn: 16.6537882	total: 2.83s	remaining: 4.02s
124:	learn: 16.5324707	total: 2.86s	remaining: 4s
125:	learn: 16.4705263	total: 2.88s	remaining: 3.98s
126:	learn: 16.4130833	total: 2.9s	remaining: 3.95s
127:	learn: 16.3480615	total: 2.92s	remaining: 3.93s
128:	learn: 16.2228205	total: 2.94s	remaining: 3.9s
129:	learn: 16.1299284	total: 2.96s	remaining: 3.88s
130:	learn: 16.0593548	total: 2.99s	remaining: 3.85s
131:	learn: 15.9926308	total: 3.02s	remaining: 3.84s
132:	learn: 15.9351137	total: 3.04s	remaining: 3.81s
133:	learn: 15.8301951	total: 3.06s	remaining: 3.79s
134:	learn: 15.7606319	total: 3.08s	remaining: 3.76s
135:	learn: 15.6217872	total: 3.1s	remaining: 3.74s
136:	learn: 15.5200572	total: 3.12s	remaining: 3.71s
137:	learn: 15.4565615	total: 3.14s	remaining: 3.69s
138:	learn: 15.3854906	total: 3.16s	remaining: 3.67s
139:	learn: 15.3407126	total: 3.19s	remaining: 3.64s
140:	learn: 15.2532536	total: 3.21s	remaining: 3.62s
141:	learn: 15.2129349	total: 3.24s	remaining: 3.61s
142:	learn: 15.1732289	total: 3.27s	remaining: 3.59s
143:	learn: 15.1138929	total: 3.29s	remaining: 3.57s
144:	learn: 15.0326156	total: 3.32s	remaining: 3.55s
145:	learn: 14.9309324	total: 3.34s	remaining: 3.52s
146:	learn: 14.8657435	total: 3.37s	remaining: 3.5s
147:	learn: 14.8314609	total: 3.39s	remaining: 3.48s
148:	learn: 14.7431116	total: 3.41s	remaining: 3.45s
149:	learn: 14.6590351	total: 3.43s	remaining: 3.43s
150:	learn: 14.5339193	total: 3.45s	remaining: 3.41s
151:	learn: 14.4639900	total: 3.48s	remaining: 3.39s
152:	learn: 14.3967135	total: 3.5s	remaining: 3.36s
153:	learn: 14.3077714	total: 3.52s	remaining: 3.34s
154:	learn: 14.2227051	total: 3.54s	remaining: 3.32s
155:	learn: 14.1541051	total: 3.57s	remaining: 3.29s
156:	learn: 14.1099666	total: 3.59s	remaining: 3.27s
157:	learn: 14.0474387	total: 3.61s	remaining: 3.24s
158:	learn: 13.9402729	total: 3.63s	remaining: 3.22s
159:	learn: 13.8714208	total: 3.66s	remaining: 3.2s
160:	learn: 13.7798180	total: 3.69s	remaining: 3.19s
161:	learn: 13.6785277	total: 3.72s	remaining: 3.17s
162:	learn: 13.5985050	total: 3.74s	remaining: 3.14s
163:	learn: 13.5743583	total: 3.76s	remaining: 3.12s
164:	learn: 13.4271067	total: 3.79s	remaining: 3.1s
165:	learn: 13.3787394	total: 3.81s	remaining: 3.07s
166:	learn: 13.3132605	total: 3.83s	remaining: 3.05s
167:	learn: 13.2185878	total: 3.85s	remaining: 3.03s
168:	learn: 13.2025287	total: 3.88s	remaining: 3s
169:	learn: 13.1393556	total: 3.91s	remaining: 2.99s
170:	learn: 13.0898086	total: 3.93s	remaining: 2.97s
171:	learn: 12.9970587	total: 3.95s	remaining: 2.94s
172:	learn: 12.8778568	total: 3.97s	remaining: 2.92s
173:	learn: 12.7715298	total: 3.99s	remaining: 2.89s
174:	learn: 12.7109534	total: 4.01s	remaining: 2.87s
175:	learn: 12.6499951	total: 4.04s	remaining: 2.84s
176:	learn: 12.5781341	total: 4.06s	remaining: 2.82s
177:	learn: 12.5302935	total: 4.08s	remaining: 2.8s
178:	learn: 12.4570172	total: 4.1s	remaining: 2.77s
179:	learn: 12.3852468	total: 4.13s	remaining: 2.75s
180:	learn: 12.3218479	total: 4.16s	remaining: 2.73s
181:	learn: 12.2146968	total: 4.18s	remaining: 2.71s
182:	learn: 12.0872854	total: 4.2s	remaining: 2.69s
183:	learn: 12.0609707	total: 4.22s	remaining: 2.66s
184:	learn: 11.9443946	total: 4.25s	remaining: 2.64s
185:	learn: 11.8745310	total: 4.27s	remaining: 2.62s
186:	learn: 11.7895958	total: 4.29s	remaining: 2.59s
187:	learn: 11.7497478	total: 4.31s	remaining: 2.57s
188:	learn: 11.6831548	total: 4.34s	remaining: 2.55s
189:	learn: 11.6608564	total: 4.37s	remaining: 2.53s
190:	learn: 11.6399052	total: 4.39s	remaining: 2.5s
191:	learn: 11.5714004	total: 4.41s	remaining: 2.48s
192:	learn: 11.5427662	total: 4.43s	remaining: 2.46s
193:	learn: 11.4806208	total: 4.45s	remaining: 2.43s
194:	learn: 11.4691327	total: 4.47s	remaining: 2.41s
195:	learn: 11.4134172	total: 4.5s	remaining: 2.38s
196:	learn: 11.3438004	total: 4.52s	remaining: 2.36s
197:	learn: 11.3015149	total: 4.54s	remaining: 2.34s
198:	learn: 11.2493782	total: 4.57s	remaining: 2.32s
199:	learn: 11.1895539	total: 4.59s	remaining: 2.3s
200:	learn: 11.1683522	total: 4.62s	remaining: 2.27s
201:	learn: 11.1466698	total: 4.64s	remaining: 2.25s
202:	learn: 11.0701090	total: 4.67s	remaining: 2.23s
203:	learn: 11.0293322	total: 4.69s	remaining: 2.21s
204:	learn: 10.9637933	total: 4.71s	remaining: 2.18s
205:	learn: 10.9171875	total: 4.73s	remaining: 2.16s
206:	learn: 10.8620107	total: 4.76s	remaining: 2.14s
207:	learn: 10.8411017	total: 4.79s	remaining: 2.12s
208:	learn: 10.8219871	total: 4.82s	remaining: 2.1s
209:	learn: 10.7790684	total: 4.84s	remaining: 2.07s
210:	learn: 10.7460005	total: 4.86s	remaining: 2.05s
211:	learn: 10.6884581	total: 4.89s	remaining: 2.03s
212:	learn: 10.6215835	total: 4.91s	remaining: 2s
213:	learn: 10.6112487	total: 4.93s	remaining: 1.98s
214:	learn: 10.5515861	total: 4.95s	remaining: 1.96s
215:	learn: 10.5005611	total: 4.98s	remaining: 1.94s
216:	learn: 10.4827029	total: 5.01s	remaining: 1.92s
217:	learn: 10.4671266	total: 5.03s	remaining: 1.89s
218:	learn: 10.4471117	total: 5.05s	remaining: 1.87s
219:	learn: 10.4286227	total: 5.07s	remaining: 1.84s
220:	learn: 10.4102334	total: 5.09s	remaining: 1.82s
221:	learn: 10.3587364	total: 5.11s	remaining: 1.8s
222:	learn: 10.3185900	total: 5.13s	remaining: 1.77s
223:	learn: 10.3047695	total: 5.16s	remaining: 1.75s
224:	learn: 10.2861237	total: 5.18s	remaining: 1.73s
225:	learn: 10.2723077	total: 5.21s	remaining: 1.71s
226:	learn: 10.2566131	total: 5.23s	remaining: 1.68s
227:	learn: 10.2444076	total: 5.25s	remaining: 1.66s
228:	learn: 10.2035037	total: 5.27s	remaining: 1.63s
229:	learn: 10.1151548	total: 5.29s	remaining: 1.61s
230:	learn: 10.0952083	total: 5.31s	remaining: 1.59s
231:	learn: 10.0785525	total: 5.33s	remaining: 1.56s
232:	learn: 10.0582314	total: 5.36s	remaining: 1.54s
233:	learn: 10.0399370	total: 5.38s	remaining: 1.52s
234:	learn: 10.0277451	total: 5.41s	remaining: 1.5s
235:	learn: 9.9732252	total: 5.43s	remaining: 1.47s
236:	learn: 9.9602566	total: 5.46s	remaining: 1.45s
237:	learn: 9.9117022	total: 5.48s	remaining: 1.43s
238:	learn: 9.8771993	total: 5.5s	remaining: 1.4s
239:	learn: 9.8360533	total: 5.52s	remaining: 1.38s
240:	learn: 9.8228622	total: 5.54s	remaining: 1.36s
241:	learn: 9.7831566	total: 5.57s	remaining: 1.33s
242:	learn: 9.7238030	total: 5.59s	remaining: 1.31s
243:	learn: 9.6756010	total: 5.62s	remaining: 1.29s
244:	learn: 9.6573706	total: 5.64s	remaining: 1.26s
245:	learn: 9.6190420	total: 5.66s	remaining: 1.24s
246:	learn: 9.5963929	total: 5.68s	remaining: 1.22s
247:	learn: 9.5838279	total: 5.7s	remaining: 1.2s
248:	learn: 9.5516337	total: 5.72s	remaining: 1.17s
249:	learn: 9.5319568	total: 5.74s	remaining: 1.15s
250:	learn: 9.5009733	total: 5.76s	remaining: 1.12s
251:	learn: 9.4738909	total: 5.78s	remaining: 1.1s
252:	learn: 9.4573897	total: 5.81s	remaining: 1.08s
253:	learn: 9.4238859	total: 5.84s	remaining: 1.06s
254:	learn: 9.3792324	total: 5.86s	remaining: 1.03s
255:	learn: 9.3552571	total: 5.88s	remaining: 1.01s
256:	learn: 9.3036260	total: 5.91s	remaining: 988ms
257:	learn: 9.2868142	total: 5.93s	remaining: 965ms
258:	learn: 9.2740504	total: 5.95s	remaining: 942ms
259:	learn: 9.2329336	total: 5.97s	remaining: 918ms
260:	learn: 9.2190698	total: 5.99s	remaining: 895ms
261:	learn: 9.2074817	total: 6.01s	remaining: 872ms
262:	learn: 9.1724174	total: 6.04s	remaining: 850ms
263:	learn: 9.1293699	total: 6.07s	remaining: 827ms
264:	learn: 9.1025091	total: 6.08s	remaining: 804ms
265:	learn: 9.0893697	total: 6.11s	remaining: 781ms
266:	learn: 9.0733581	total: 6.13s	remaining: 757ms
267:	learn: 9.0599268	total: 6.15s	remaining: 734ms
268:	learn: 9.0277334	total: 6.17s	remaining: 711ms
269:	learn: 8.9860960	total: 6.19s	remaining: 688ms
270:	learn: 8.9478404	total: 6.21s	remaining: 665ms
271:	learn: 8.9074990	total: 6.24s	remaining: 642ms
272:	learn: 8.8851827	total: 6.26s	remaining: 620ms
273:	learn: 8.8741463	total: 6.29s	remaining: 597ms
274:	learn: 8.8422813	total: 6.31s	remaining: 574ms
275:	learn: 8.7887362	total: 6.33s	remaining: 551ms
276:	learn: 8.7766205	total: 6.35s	remaining: 527ms
277:	learn: 8.7606125	total: 6.37s	remaining: 504ms
278:	learn: 8.7302098	total: 6.39s	remaining: 481ms
279:	learn: 8.7180658	total: 6.42s	remaining: 458ms
280:	learn: 8.6784364	total: 6.44s	remaining: 436ms
281:	learn: 8.6341139	total: 6.47s	remaining: 413ms
282:	learn: 8.6092132	total: 6.49s	remaining: 390ms
283:	learn: 8.5723040	total: 6.51s	remaining: 367ms
284:	learn: 8.5318798	total: 6.53s	remaining: 344ms
285:	learn: 8.5051575	total: 6.55s	remaining: 321ms
286:	learn: 8.4896135	total: 6.57s	remaining: 298ms
287:	learn: 8.4665233	total: 6.59s	remaining: 275ms
288:	learn: 8.4563622	total: 6.62s	remaining: 252ms
289:	learn: 8.4221661	total: 6.64s	remaining: 229ms
290:	learn: 8.3953479	total: 6.68s	remaining: 207ms
291:	learn: 8.3735779	total: 6.7s	remaining: 184ms
292:	learn: 8.3452844	total: 6.73s	remaining: 161ms
293:	learn: 8.3141538	total: 6.75s	remaining: 138ms
294:	learn: 8.3014432	total: 6.78s	remaining: 115ms
295:	learn: 8.2802794	total: 6.8s	remaining: 91.9ms
296:	learn: 8.2485275	total: 6.82s	remaining: 68.9ms
297:	learn: 8.2239488	total: 6.85s	remaining: 46ms
298:	learn: 8.1877191	total: 6.87s	remaining: 23ms
299:	learn: 8.1551355	total: 6.9s	remaining: 0us
0:	learn: 27.2098005	total: 1.17ms	remaining: 234ms
1:	learn: 26.3343827	total: 1.97ms	remaining: 195ms
2:	learn: 25.6574052	total: 2.91ms	remaining: 191ms
3:	learn: 24.9562825	total: 3.77ms	remaining: 185ms
4:	learn: 24.4317699	total: 4.67ms	remaining: 182ms
5:	learn: 23.7320689	total: 5.53ms	remaining: 179ms
6:	learn: 23.3827801	total: 6.45ms	remaining: 178ms
7:	learn: 22.7888606	total: 7.39ms	remaining: 177ms
8:	learn: 22.4669531	total: 8.25ms	remaining: 175ms
9:	learn: 22.2055034	total: 9.15ms	remaining: 174ms
10:	learn: 21.8570874	total: 10ms	remaining: 172ms
11:	learn: 21.5043513	total: 11.1ms	remaining: 174ms
12:	learn: 21.2543673	total: 12.3ms	remaining: 178ms
13:	learn: 21.0521696	total: 13.6ms	remaining: 181ms
14:	learn: 20.7543959	total: 14.8ms	remaining: 183ms
15:	learn: 20.4439240	total: 16ms	remaining: 184ms
16:	learn: 20.1992431	total: 17.2ms	remaining: 185ms
17:	learn: 20.0638774	total: 18.3ms	remaining: 186ms
18:	learn: 19.7614893	total: 19.6ms	remaining: 186ms
19:	learn: 19.4549829	total: 20.6ms	remaining: 185ms
20:	learn: 19.2969790	total: 21.8ms	remaining: 185ms
21:	learn: 19.2377413	total: 22.9ms	remaining: 185ms
22:	learn: 19.1413322	total: 24.1ms	remaining: 185ms
23:	learn: 19.0898736	total: 25ms	remaining: 183ms
24:	learn: 18.9125043	total: 26ms	remaining: 182ms
25:	learn: 18.8580056	total: 27ms	remaining: 181ms
26:	learn: 18.7027921	total: 28.2ms	remaining: 181ms
27:	learn: 18.4581085	total: 29.4ms	remaining: 181ms
28:	learn: 18.2744442	total: 30.6ms	remaining: 180ms
29:	learn: 18.2413017	total: 31.8ms	remaining: 180ms
30:	learn: 18.1373470	total: 32.9ms	remaining: 179ms
31:	learn: 18.1034471	total: 33.9ms	remaining: 178ms
32:	learn: 17.9300374	total: 34.8ms	remaining: 176ms
33:	learn: 17.7887903	total: 35.8ms	remaining: 175ms
34:	learn: 17.7093050	total: 36.8ms	remaining: 174ms
35:	learn: 17.6643057	total: 37.9ms	remaining: 173ms
36:	learn: 17.5712827	total: 39ms	remaining: 172ms
37:	learn: 17.5313653	total: 39.9ms	remaining: 170ms
38:	learn: 17.4725144	total: 40.7ms	remaining: 168ms
39:	learn: 17.4182357	total: 41.7ms	remaining: 167ms
40:	learn: 17.2681647	total: 42.6ms	remaining: 165ms
41:	learn: 17.2206572	total: 43.6ms	remaining: 164ms
42:	learn: 17.0402321	total: 44.5ms	remaining: 163ms
43:	learn: 16.9839166	total: 45.5ms	remaining: 161ms
44:	learn: 16.9116414	total: 46.4ms	remaining: 160ms
45:	learn: 16.7802140	total: 47.3ms	remaining: 158ms
46:	learn: 16.6821396	total: 48.2ms	remaining: 157ms
47:	learn: 16.6370601	total: 49.2ms	remaining: 156ms
48:	learn: 16.5310125	total: 50.1ms	remaining: 154ms
49:	learn: 16.4962621	total: 51ms	remaining: 153ms
50:	learn: 16.4466663	total: 52ms	remaining: 152ms
51:	learn: 16.3887055	total: 53ms	remaining: 151ms
52:	learn: 16.3434793	total: 54ms	remaining: 150ms
53:	learn: 16.2814651	total: 54.9ms	remaining: 148ms
54:	learn: 16.2060157	total: 55.8ms	remaining: 147ms
55:	learn: 16.1340288	total: 56.8ms	remaining: 146ms
56:	learn: 16.0726882	total: 57.6ms	remaining: 145ms
57:	learn: 15.9930999	total: 58.6ms	remaining: 144ms
58:	learn: 15.8689364	total: 59.5ms	remaining: 142ms
59:	learn: 15.8130924	total: 60.4ms	remaining: 141ms
60:	learn: 15.7895967	total: 61.3ms	remaining: 140ms
61:	learn: 15.6640340	total: 62.2ms	remaining: 139ms
62:	learn: 15.6177669	total: 63.1ms	remaining: 137ms
63:	learn: 15.5090870	total: 64ms	remaining: 136ms
64:	learn: 15.4761522	total: 65ms	remaining: 135ms
65:	learn: 15.4287462	total: 65.9ms	remaining: 134ms
66:	learn: 15.3888538	total: 66.8ms	remaining: 133ms
67:	learn: 15.3440609	total: 67.7ms	remaining: 131ms
68:	learn: 15.3201311	total: 68.5ms	remaining: 130ms
69:	learn: 15.3079114	total: 69.4ms	remaining: 129ms
70:	learn: 15.2159640	total: 70.9ms	remaining: 129ms
71:	learn: 15.1112749	total: 71.9ms	remaining: 128ms
72:	learn: 15.0596912	total: 72.8ms	remaining: 127ms
73:	learn: 14.9952809	total: 73.8ms	remaining: 126ms
74:	learn: 14.9128812	total: 74.7ms	remaining: 125ms
75:	learn: 14.8761824	total: 75.6ms	remaining: 123ms
76:	learn: 14.8293903	total: 76.6ms	remaining: 122ms
77:	learn: 14.7845132	total: 77.4ms	remaining: 121ms
78:	learn: 14.7347895	total: 78.4ms	remaining: 120ms
79:	learn: 14.6942607	total: 79.3ms	remaining: 119ms
80:	learn: 14.5997662	total: 80.2ms	remaining: 118ms
81:	learn: 14.5782796	total: 81.1ms	remaining: 117ms
82:	learn: 14.5097324	total: 82ms	remaining: 116ms
83:	learn: 14.4594549	total: 83.3ms	remaining: 115ms
84:	learn: 14.3700903	total: 84.3ms	remaining: 114ms
85:	learn: 14.2967114	total: 85.4ms	remaining: 113ms
86:	learn: 14.2477778	total: 86.6ms	remaining: 112ms
87:	learn: 14.2229719	total: 87.8ms	remaining: 112ms
88:	learn: 14.1534477	total: 89ms	remaining: 111ms
89:	learn: 14.0762949	total: 90.1ms	remaining: 110ms
90:	learn: 14.0123553	total: 91.3ms	remaining: 109ms
91:	learn: 13.9603280	total: 92.5ms	remaining: 109ms
92:	learn: 13.9002227	total: 93.6ms	remaining: 108ms
93:	learn: 13.8719854	total: 94.7ms	remaining: 107ms
94:	learn: 13.8348742	total: 95.8ms	remaining: 106ms
95:	learn: 13.8153499	total: 96.9ms	remaining: 105ms
96:	learn: 13.7569162	total: 97.9ms	remaining: 104ms
97:	learn: 13.7360893	total: 99.1ms	remaining: 103ms
98:	learn: 13.6752128	total: 100ms	remaining: 102ms
99:	learn: 13.6103165	total: 101ms	remaining: 101ms
100:	learn: 13.5527615	total: 102ms	remaining: 100ms
101:	learn: 13.5004011	total: 103ms	remaining: 99.1ms
102:	learn: 13.4335179	total: 104ms	remaining: 98.1ms
103:	learn: 13.3687362	total: 105ms	remaining: 97.1ms
104:	learn: 13.3043781	total: 106ms	remaining: 96ms
105:	learn: 13.2849717	total: 107ms	remaining: 95ms
106:	learn: 13.2526590	total: 108ms	remaining: 93.9ms
107:	learn: 13.2267137	total: 109ms	remaining: 92.9ms
108:	learn: 13.1819637	total: 110ms	remaining: 92ms
109:	learn: 13.1796765	total: 112ms	remaining: 91.4ms
110:	learn: 13.1605610	total: 116ms	remaining: 92.9ms
111:	learn: 13.1226709	total: 117ms	remaining: 92.2ms
112:	learn: 13.0665776	total: 119ms	remaining: 91.5ms
113:	learn: 13.0159115	total: 120ms	remaining: 90.7ms
114:	learn: 12.9566195	total: 122ms	remaining: 89.9ms
115:	learn: 12.9445833	total: 123ms	remaining: 89.3ms
116:	learn: 12.9257179	total: 126ms	remaining: 89.1ms
117:	learn: 12.8740419	total: 128ms	remaining: 88.9ms
118:	learn: 12.8151072	total: 130ms	remaining: 88.5ms
119:	learn: 12.7722999	total: 141ms	remaining: 94.3ms
120:	learn: 12.7357186	total: 143ms	remaining: 93.6ms
121:	learn: 12.7259232	total: 145ms	remaining: 92.4ms
122:	learn: 12.6951038	total: 146ms	remaining: 91.1ms
123:	learn: 12.6803516	total: 147ms	remaining: 89.8ms
124:	learn: 12.6533951	total: 148ms	remaining: 88.6ms
125:	learn: 12.6378921	total: 149ms	remaining: 87.5ms
126:	learn: 12.5920985	total: 150ms	remaining: 86.3ms
127:	learn: 12.5756200	total: 151ms	remaining: 85.1ms
128:	learn: 12.5672381	total: 152ms	remaining: 83.8ms
129:	learn: 12.5384815	total: 153ms	remaining: 82.5ms
130:	learn: 12.5292471	total: 155ms	remaining: 81.4ms
131:	learn: 12.4764701	total: 156ms	remaining: 80.3ms
132:	learn: 12.4280495	total: 157ms	remaining: 79.1ms
133:	learn: 12.3532545	total: 158ms	remaining: 78ms
134:	learn: 12.3267684	total: 159ms	remaining: 76.7ms
135:	learn: 12.2702669	total: 160ms	remaining: 75.5ms
136:	learn: 12.2040302	total: 161ms	remaining: 74.2ms
137:	learn: 12.1737311	total: 162ms	remaining: 73ms
138:	learn: 12.1686551	total: 164ms	remaining: 71.9ms
139:	learn: 12.1587600	total: 165ms	remaining: 70.7ms
140:	learn: 12.1470325	total: 166ms	remaining: 69.5ms
141:	learn: 12.1357223	total: 167ms	remaining: 68.3ms
142:	learn: 12.0994748	total: 168ms	remaining: 67.1ms
143:	learn: 12.0775514	total: 170ms	remaining: 65.9ms
144:	learn: 12.0674975	total: 171ms	remaining: 64.7ms
145:	learn: 12.0307414	total: 172ms	remaining: 63.6ms
146:	learn: 12.0251842	total: 173ms	remaining: 62.4ms
147:	learn: 12.0066431	total: 174ms	remaining: 61.1ms
148:	learn: 11.9888229	total: 175ms	remaining: 59.9ms
149:	learn: 11.9291047	total: 176ms	remaining: 58.6ms
150:	learn: 11.9266163	total: 177ms	remaining: 57.4ms
151:	learn: 11.8920246	total: 178ms	remaining: 56.2ms
152:	learn: 11.8626800	total: 179ms	remaining: 55ms
153:	learn: 11.8193888	total: 180ms	remaining: 53.7ms
154:	learn: 11.7925225	total: 181ms	remaining: 52.5ms
155:	learn: 11.7874661	total: 182ms	remaining: 51.3ms
156:	learn: 11.7861494	total: 183ms	remaining: 50.1ms
157:	learn: 11.7430931	total: 184ms	remaining: 48.9ms
158:	learn: 11.7366462	total: 185ms	remaining: 47.7ms
159:	learn: 11.6981704	total: 186ms	remaining: 46.5ms
160:	learn: 11.6506279	total: 187ms	remaining: 45.3ms
161:	learn: 11.6196206	total: 188ms	remaining: 44ms
162:	learn: 11.5823435	total: 189ms	remaining: 42.8ms
163:	learn: 11.5505083	total: 190ms	remaining: 41.6ms
164:	learn: 11.5403261	total: 191ms	remaining: 40.4ms
165:	learn: 11.5264917	total: 192ms	remaining: 39.2ms
166:	learn: 11.4987585	total: 192ms	remaining: 38ms
167:	learn: 11.4950795	total: 193ms	remaining: 36.8ms
168:	learn: 11.4783420	total: 194ms	remaining: 35.6ms
169:	learn: 11.4677279	total: 195ms	remaining: 34.4ms
170:	learn: 11.4659536	total: 196ms	remaining: 33.2ms
171:	learn: 11.4534216	total: 197ms	remaining: 32.1ms
172:	learn: 11.4245927	total: 198ms	remaining: 30.9ms
173:	learn: 11.3978034	total: 199ms	remaining: 29.8ms
174:	learn: 11.3859183	total: 200ms	remaining: 28.6ms
175:	learn: 11.3531419	total: 202ms	remaining: 27.5ms
176:	learn: 11.3141195	total: 203ms	remaining: 26.3ms
177:	learn: 11.2880690	total: 204ms	remaining: 25.2ms
178:	learn: 11.2771619	total: 205ms	remaining: 24ms
179:	learn: 11.2705445	total: 207ms	remaining: 23ms
180:	learn: 11.2550546	total: 208ms	remaining: 21.8ms
181:	learn: 11.2402205	total: 209ms	remaining: 20.7ms
182:	learn: 11.2109113	total: 211ms	remaining: 19.6ms
183:	learn: 11.2100213	total: 212ms	remaining: 18.4ms
184:	learn: 11.2075766	total: 213ms	remaining: 17.2ms
185:	learn: 11.2013252	total: 214ms	remaining: 16.1ms
186:	learn: 11.1953713	total: 215ms	remaining: 15ms
187:	learn: 11.1894718	total: 216ms	remaining: 13.8ms
188:	learn: 11.1837453	total: 217ms	remaining: 12.6ms
189:	learn: 11.1781835	total: 218ms	remaining: 11.5ms
190:	learn: 11.1727790	total: 219ms	remaining: 10.3ms
191:	learn: 11.1451811	total: 220ms	remaining: 9.16ms
192:	learn: 11.1039476	total: 221ms	remaining: 8.01ms
193:	learn: 11.0665613	total: 222ms	remaining: 6.86ms
194:	learn: 11.0567694	total: 223ms	remaining: 5.71ms
195:	learn: 11.0283937	total: 224ms	remaining: 4.56ms
196:	learn: 11.0250363	total: 225ms	remaining: 3.42ms
197:	learn: 11.0027907	total: 225ms	remaining: 2.28ms
198:	learn: 10.9841284	total: 226ms	remaining: 1.14ms
199:	learn: 10.9586799	total: 227ms	remaining: 0us
0:	learn: 41.8399605	total: 1.07ms	remaining: 212ms
1:	learn: 39.8395245	total: 2.01ms	remaining: 199ms
2:	learn: 38.1671235	total: 2.94ms	remaining: 193ms
3:	learn: 37.0670986	total: 3.89ms	remaining: 191ms
4:	learn: 36.0387813	total: 4.78ms	remaining: 186ms
5:	learn: 34.5265459	total: 5.62ms	remaining: 182ms
6:	learn: 33.0715315	total: 6.53ms	remaining: 180ms
7:	learn: 31.8808916	total: 7.42ms	remaining: 178ms
8:	learn: 31.2512994	total: 8.32ms	remaining: 177ms
9:	learn: 30.4893398	total: 9.28ms	remaining: 176ms
10:	learn: 29.4834649	total: 10.2ms	remaining: 175ms
11:	learn: 28.5128380	total: 11.3ms	remaining: 177ms
12:	learn: 27.6335700	total: 12.2ms	remaining: 176ms
13:	learn: 27.0319750	total: 13.2ms	remaining: 175ms
14:	learn: 26.2458582	total: 14.2ms	remaining: 175ms
15:	learn: 25.9281584	total: 15.2ms	remaining: 174ms
16:	learn: 25.5262964	total: 16.1ms	remaining: 174ms
17:	learn: 24.9203741	total: 17.1ms	remaining: 173ms
18:	learn: 24.5918814	total: 18.1ms	remaining: 172ms
19:	learn: 24.4119288	total: 19ms	remaining: 171ms
20:	learn: 24.1090477	total: 19.9ms	remaining: 169ms
21:	learn: 23.7056648	total: 20.8ms	remaining: 169ms
22:	learn: 23.5124674	total: 21.7ms	remaining: 167ms
23:	learn: 23.2386385	total: 22.7ms	remaining: 166ms
24:	learn: 23.1258198	total: 23.6ms	remaining: 165ms
25:	learn: 23.0302334	total: 24.6ms	remaining: 164ms
26:	learn: 22.9101035	total: 25.6ms	remaining: 164ms
27:	learn: 22.8003999	total: 26.7ms	remaining: 164ms
28:	learn: 22.5351620	total: 27.7ms	remaining: 163ms
29:	learn: 22.2539274	total: 28.6ms	remaining: 162ms
30:	learn: 22.1398507	total: 29.5ms	remaining: 161ms
31:	learn: 21.6820010	total: 30.5ms	remaining: 160ms
32:	learn: 21.5252543	total: 31.4ms	remaining: 159ms
33:	learn: 21.4370215	total: 32.4ms	remaining: 158ms
34:	learn: 21.3473723	total: 33.3ms	remaining: 157ms
35:	learn: 21.2921732	total: 34.3ms	remaining: 156ms
36:	learn: 21.1853093	total: 35.2ms	remaining: 155ms
37:	learn: 21.1054246	total: 36.3ms	remaining: 155ms
38:	learn: 21.0922990	total: 37.3ms	remaining: 154ms
39:	learn: 20.9578071	total: 38.3ms	remaining: 153ms
40:	learn: 20.8720350	total: 39.7ms	remaining: 154ms
41:	learn: 20.7978022	total: 41.6ms	remaining: 157ms
42:	learn: 20.7373973	total: 43.8ms	remaining: 160ms
43:	learn: 20.4878486	total: 45.4ms	remaining: 161ms
44:	learn: 20.4578479	total: 47ms	remaining: 162ms
45:	learn: 20.3634465	total: 48.3ms	remaining: 162ms
46:	learn: 20.3080237	total: 49.7ms	remaining: 162ms
47:	learn: 20.2271363	total: 50.9ms	remaining: 161ms
48:	learn: 20.0373064	total: 52.1ms	remaining: 160ms
49:	learn: 19.9912068	total: 53.3ms	remaining: 160ms
50:	learn: 19.8928950	total: 54.6ms	remaining: 159ms
51:	learn: 19.7876830	total: 55.8ms	remaining: 159ms
52:	learn: 19.7651180	total: 57ms	remaining: 158ms
53:	learn: 19.6813527	total: 58.3ms	remaining: 158ms
54:	learn: 19.5975589	total: 59.5ms	remaining: 157ms
55:	learn: 19.5478200	total: 60.8ms	remaining: 156ms
56:	learn: 19.3740847	total: 61.7ms	remaining: 155ms
57:	learn: 19.3662692	total: 62.7ms	remaining: 154ms
58:	learn: 19.2651964	total: 63.8ms	remaining: 152ms
59:	learn: 19.1392018	total: 65.1ms	remaining: 152ms
60:	learn: 19.1023492	total: 66.4ms	remaining: 151ms
61:	learn: 19.0748934	total: 67.4ms	remaining: 150ms
62:	learn: 19.0233897	total: 68.6ms	remaining: 149ms
63:	learn: 18.9164481	total: 69.6ms	remaining: 148ms
64:	learn: 18.8465411	total: 70.5ms	remaining: 146ms
65:	learn: 18.8043102	total: 71.4ms	remaining: 145ms
66:	learn: 18.7650830	total: 72.4ms	remaining: 144ms
67:	learn: 18.7271477	total: 73.2ms	remaining: 142ms
68:	learn: 18.5376883	total: 74.2ms	remaining: 141ms
69:	learn: 18.4564755	total: 75.1ms	remaining: 139ms
70:	learn: 18.3732756	total: 76.1ms	remaining: 138ms
71:	learn: 18.2872627	total: 77.2ms	remaining: 137ms
72:	learn: 18.1886808	total: 78.2ms	remaining: 136ms
73:	learn: 18.1041972	total: 79.1ms	remaining: 135ms
74:	learn: 18.0429272	total: 80ms	remaining: 133ms
75:	learn: 17.9595045	total: 80.9ms	remaining: 132ms
76:	learn: 17.9086262	total: 81.8ms	remaining: 131ms
77:	learn: 17.8460171	total: 82.8ms	remaining: 130ms
78:	learn: 17.7896667	total: 83.8ms	remaining: 128ms
79:	learn: 17.7371316	total: 84.7ms	remaining: 127ms
80:	learn: 17.6103533	total: 85.6ms	remaining: 126ms
81:	learn: 17.5698713	total: 86.5ms	remaining: 124ms
82:	learn: 17.5266322	total: 87.3ms	remaining: 123ms
83:	learn: 17.2655920	total: 88.2ms	remaining: 122ms
84:	learn: 17.2575650	total: 89.2ms	remaining: 121ms
85:	learn: 17.1664785	total: 90.2ms	remaining: 120ms
86:	learn: 16.9209435	total: 91.1ms	remaining: 118ms
87:	learn: 16.8316744	total: 92.1ms	remaining: 117ms
88:	learn: 16.7588828	total: 93.1ms	remaining: 116ms
89:	learn: 16.5509772	total: 94ms	remaining: 115ms
90:	learn: 16.4804665	total: 94.9ms	remaining: 114ms
91:	learn: 16.4442784	total: 95.8ms	remaining: 112ms
92:	learn: 16.3784172	total: 96.7ms	remaining: 111ms
93:	learn: 16.2804018	total: 97.6ms	remaining: 110ms
94:	learn: 16.2439906	total: 98.5ms	remaining: 109ms
95:	learn: 16.2110795	total: 99.5ms	remaining: 108ms
96:	learn: 16.1715562	total: 100ms	remaining: 107ms
97:	learn: 16.0669024	total: 101ms	remaining: 105ms
98:	learn: 15.8722132	total: 102ms	remaining: 104ms
99:	learn: 15.8486533	total: 103ms	remaining: 103ms
100:	learn: 15.8165655	total: 104ms	remaining: 102ms
101:	learn: 15.7949298	total: 105ms	remaining: 101ms
102:	learn: 15.7201286	total: 106ms	remaining: 99.7ms
103:	learn: 15.6755371	total: 107ms	remaining: 98.6ms
104:	learn: 15.6405255	total: 108ms	remaining: 97.5ms
105:	learn: 15.6117943	total: 109ms	remaining: 96.4ms
106:	learn: 15.5793622	total: 110ms	remaining: 95.4ms
107:	learn: 15.5402277	total: 111ms	remaining: 94.3ms
108:	learn: 15.4630827	total: 112ms	remaining: 93.2ms
109:	learn: 15.4065161	total: 113ms	remaining: 92.1ms
110:	learn: 15.3699228	total: 114ms	remaining: 91.1ms
111:	learn: 15.2947040	total: 114ms	remaining: 89.9ms
112:	learn: 15.2833895	total: 115ms	remaining: 88.8ms
113:	learn: 15.2249854	total: 116ms	remaining: 87.7ms
114:	learn: 15.1836455	total: 117ms	remaining: 86.6ms
115:	learn: 15.1523562	total: 118ms	remaining: 85.5ms
116:	learn: 15.1125302	total: 119ms	remaining: 84.4ms
117:	learn: 15.0713590	total: 120ms	remaining: 83.4ms
118:	learn: 15.0134383	total: 121ms	remaining: 82.3ms
119:	learn: 14.9678232	total: 122ms	remaining: 81.2ms
120:	learn: 14.9332348	total: 123ms	remaining: 80.2ms
121:	learn: 14.8952479	total: 124ms	remaining: 79.1ms
122:	learn: 14.8451629	total: 125ms	remaining: 78.1ms
123:	learn: 14.8122591	total: 126ms	remaining: 77ms
124:	learn: 14.8059710	total: 127ms	remaining: 76ms
125:	learn: 14.7875208	total: 128ms	remaining: 75ms
126:	learn: 14.7239849	total: 129ms	remaining: 73.9ms
127:	learn: 14.7029419	total: 129ms	remaining: 72.8ms
128:	learn: 14.6633912	total: 130ms	remaining: 71.8ms
129:	learn: 14.6443330	total: 131ms	remaining: 70.7ms
130:	learn: 14.5974847	total: 132ms	remaining: 69.7ms
131:	learn: 14.5479805	total: 133ms	remaining: 68.6ms
132:	learn: 14.5134226	total: 134ms	remaining: 67.6ms
133:	learn: 14.4909207	total: 135ms	remaining: 66.6ms
134:	learn: 14.2973404	total: 136ms	remaining: 65.5ms
135:	learn: 14.2837051	total: 137ms	remaining: 64.5ms
136:	learn: 14.2518953	total: 138ms	remaining: 63.5ms
137:	learn: 14.2142342	total: 139ms	remaining: 62.4ms
138:	learn: 14.1815533	total: 140ms	remaining: 61.4ms
139:	learn: 14.1787829	total: 141ms	remaining: 60.4ms
140:	learn: 14.1736615	total: 142ms	remaining: 59.3ms
141:	learn: 14.1478939	total: 143ms	remaining: 58.3ms
142:	learn: 14.0693243	total: 144ms	remaining: 57.3ms
143:	learn: 14.0493752	total: 145ms	remaining: 56.3ms
144:	learn: 14.0073520	total: 146ms	remaining: 55.4ms
145:	learn: 13.9992690	total: 147ms	remaining: 54.4ms
146:	learn: 13.9826951	total: 148ms	remaining: 53.4ms
147:	learn: 13.9355206	total: 149ms	remaining: 52.4ms
148:	learn: 13.8866829	total: 150ms	remaining: 51.5ms
149:	learn: 13.8116862	total: 151ms	remaining: 50.5ms
150:	learn: 13.7917979	total: 153ms	remaining: 49.5ms
151:	learn: 13.7656086	total: 154ms	remaining: 48.5ms
152:	learn: 13.7544547	total: 155ms	remaining: 47.5ms
153:	learn: 13.7143754	total: 156ms	remaining: 46.5ms
154:	learn: 13.6940602	total: 157ms	remaining: 45.5ms
155:	learn: 13.6895644	total: 158ms	remaining: 44.5ms
156:	learn: 13.6676083	total: 159ms	remaining: 43.5ms
157:	learn: 13.6351956	total: 160ms	remaining: 42.5ms
158:	learn: 13.6030803	total: 161ms	remaining: 41.5ms
159:	learn: 13.5945618	total: 162ms	remaining: 40.5ms
160:	learn: 13.5695407	total: 163ms	remaining: 39.4ms
161:	learn: 13.5265094	total: 164ms	remaining: 38.4ms
162:	learn: 13.5035584	total: 165ms	remaining: 37.4ms
163:	learn: 13.4960504	total: 166ms	remaining: 36.4ms
164:	learn: 13.4734059	total: 167ms	remaining: 35.3ms
165:	learn: 13.4449073	total: 167ms	remaining: 34.3ms
166:	learn: 13.3719784	total: 168ms	remaining: 33.3ms
167:	learn: 13.3612519	total: 169ms	remaining: 32.2ms
168:	learn: 13.3166457	total: 170ms	remaining: 31.2ms
169:	learn: 13.2650631	total: 171ms	remaining: 30.2ms
170:	learn: 13.2613924	total: 172ms	remaining: 29.2ms
171:	learn: 13.2301308	total: 173ms	remaining: 28.2ms
172:	learn: 13.1981807	total: 174ms	remaining: 27.2ms
173:	learn: 13.1820083	total: 175ms	remaining: 26.2ms
174:	learn: 13.1486084	total: 177ms	remaining: 25.2ms
175:	learn: 13.1306816	total: 178ms	remaining: 24.2ms
176:	learn: 13.0921081	total: 179ms	remaining: 23.2ms
177:	learn: 13.0716664	total: 180ms	remaining: 22.2ms
178:	learn: 13.0116426	total: 181ms	remaining: 21.2ms
179:	learn: 13.0035937	total: 182ms	remaining: 20.2ms
180:	learn: 12.9959191	total: 183ms	remaining: 19.2ms
181:	learn: 12.9799372	total: 184ms	remaining: 18.2ms
182:	learn: 12.9651183	total: 185ms	remaining: 17.2ms
183:	learn: 12.9313512	total: 186ms	remaining: 16.2ms
184:	learn: 12.8921355	total: 187ms	remaining: 15.2ms
185:	learn: 12.8468364	total: 188ms	remaining: 14.2ms
186:	learn: 12.8397824	total: 189ms	remaining: 13.2ms
187:	learn: 12.8033368	total: 191ms	remaining: 12.2ms
188:	learn: 12.7922578	total: 192ms	remaining: 11.2ms
189:	learn: 12.7851006	total: 193ms	remaining: 10.2ms
190:	learn: 12.7465417	total: 194ms	remaining: 9.14ms
191:	learn: 12.7206730	total: 195ms	remaining: 8.12ms
192:	learn: 12.6917382	total: 196ms	remaining: 7.1ms
193:	learn: 12.6844838	total: 197ms	remaining: 6.08ms
194:	learn: 12.6725723	total: 198ms	remaining: 5.07ms
195:	learn: 12.6348524	total: 198ms	remaining: 4.05ms
196:	learn: 12.5954867	total: 200ms	remaining: 3.04ms
197:	learn: 12.5564179	total: 201ms	remaining: 2.03ms
198:	learn: 12.5135119	total: 202ms	remaining: 1.01ms
199:	learn: 12.4922679	total: 203ms	remaining: 0us
0:	learn: 45.6319620	total: 1.35ms	remaining: 268ms
1:	learn: 44.3043392	total: 2.56ms	remaining: 253ms
2:	learn: 43.1283328	total: 3.76ms	remaining: 247ms
3:	learn: 42.1165182	total: 5.05ms	remaining: 248ms
4:	learn: 40.7081197	total: 6.25ms	remaining: 244ms
5:	learn: 39.1683248	total: 7.3ms	remaining: 236ms
6:	learn: 38.5039040	total: 8.33ms	remaining: 230ms
7:	learn: 37.7350474	total: 9.35ms	remaining: 224ms
8:	learn: 37.4046794	total: 10.4ms	remaining: 221ms
9:	learn: 37.0169556	total: 11.4ms	remaining: 217ms
10:	learn: 36.5795069	total: 12.7ms	remaining: 218ms
11:	learn: 35.5800530	total: 13.8ms	remaining: 215ms
12:	learn: 34.5521399	total: 14.9ms	remaining: 214ms
13:	learn: 33.5582170	total: 15.8ms	remaining: 210ms
14:	learn: 32.9976975	total: 17ms	remaining: 210ms
15:	learn: 32.7608602	total: 18.2ms	remaining: 209ms
16:	learn: 31.9106700	total: 19.5ms	remaining: 210ms
17:	learn: 31.7005703	total: 20.6ms	remaining: 209ms
18:	learn: 31.4912900	total: 21.7ms	remaining: 207ms
19:	learn: 30.9522447	total: 22.8ms	remaining: 206ms
20:	learn: 30.7380451	total: 23.9ms	remaining: 204ms
21:	learn: 30.3813894	total: 24.9ms	remaining: 202ms
22:	learn: 29.5720326	total: 26.1ms	remaining: 201ms
23:	learn: 28.8863059	total: 27.1ms	remaining: 199ms
24:	learn: 28.2766241	total: 28.3ms	remaining: 198ms
25:	learn: 27.9580003	total: 29.3ms	remaining: 196ms
26:	learn: 27.7731218	total: 30.3ms	remaining: 194ms
27:	learn: 27.3275009	total: 31.2ms	remaining: 192ms
28:	learn: 27.0312604	total: 32.1ms	remaining: 189ms
29:	learn: 26.8675371	total: 33.1ms	remaining: 187ms
30:	learn: 26.7948952	total: 34.1ms	remaining: 186ms
31:	learn: 26.2581075	total: 35.1ms	remaining: 184ms
32:	learn: 25.8681938	total: 36.1ms	remaining: 183ms
33:	learn: 25.6546902	total: 37.1ms	remaining: 181ms
34:	learn: 25.5311297	total: 38ms	remaining: 179ms
35:	learn: 25.3876780	total: 38.9ms	remaining: 177ms
36:	learn: 25.2840107	total: 40ms	remaining: 176ms
37:	learn: 25.1389723	total: 41ms	remaining: 175ms
38:	learn: 25.0393739	total: 42ms	remaining: 173ms
39:	learn: 24.9347083	total: 42.9ms	remaining: 172ms
40:	learn: 24.8003584	total: 43.9ms	remaining: 170ms
41:	learn: 24.7123645	total: 44.9ms	remaining: 169ms
42:	learn: 24.6180734	total: 45.9ms	remaining: 168ms
43:	learn: 24.3480769	total: 46.8ms	remaining: 166ms
44:	learn: 24.1730959	total: 47.8ms	remaining: 165ms
45:	learn: 24.0893664	total: 48.8ms	remaining: 163ms
46:	learn: 24.0002718	total: 49.9ms	remaining: 162ms
47:	learn: 23.9417882	total: 51ms	remaining: 162ms
48:	learn: 23.7430851	total: 52.3ms	remaining: 161ms
49:	learn: 23.6783500	total: 53.5ms	remaining: 161ms
50:	learn: 23.5548971	total: 54.6ms	remaining: 160ms
51:	learn: 23.5050161	total: 55.6ms	remaining: 158ms
52:	learn: 23.3133504	total: 56.7ms	remaining: 157ms
53:	learn: 23.2137338	total: 58ms	remaining: 157ms
54:	learn: 22.9382603	total: 59.1ms	remaining: 156ms
55:	learn: 22.8697860	total: 60.2ms	remaining: 155ms
56:	learn: 22.7549872	total: 61.1ms	remaining: 153ms
57:	learn: 22.5714124	total: 62ms	remaining: 152ms
58:	learn: 22.5247798	total: 62.9ms	remaining: 150ms
59:	learn: 22.3343607	total: 63.8ms	remaining: 149ms
60:	learn: 22.2762248	total: 64.7ms	remaining: 148ms
61:	learn: 22.2233450	total: 65.6ms	remaining: 146ms
62:	learn: 22.1435755	total: 66.6ms	remaining: 145ms
63:	learn: 22.0165239	total: 67.6ms	remaining: 144ms
64:	learn: 21.7645707	total: 68.5ms	remaining: 142ms
65:	learn: 21.4460607	total: 69.4ms	remaining: 141ms
66:	learn: 21.3715305	total: 70.2ms	remaining: 139ms
67:	learn: 21.3182268	total: 71.3ms	remaining: 138ms
68:	learn: 21.2436484	total: 72.3ms	remaining: 137ms
69:	learn: 21.1666993	total: 73.4ms	remaining: 136ms
70:	learn: 21.0851372	total: 74.3ms	remaining: 135ms
71:	learn: 20.8723719	total: 75.3ms	remaining: 134ms
72:	learn: 20.6321846	total: 76.4ms	remaining: 133ms
73:	learn: 20.4748023	total: 77.4ms	remaining: 132ms
74:	learn: 20.3227461	total: 78.3ms	remaining: 130ms
75:	learn: 20.2768617	total: 79.2ms	remaining: 129ms
76:	learn: 20.2066773	total: 80.1ms	remaining: 128ms
77:	learn: 19.9735308	total: 81.1ms	remaining: 127ms
78:	learn: 19.8733222	total: 81.9ms	remaining: 126ms
79:	learn: 19.8392313	total: 82.9ms	remaining: 124ms
80:	learn: 19.7079948	total: 83.9ms	remaining: 123ms
81:	learn: 19.6793430	total: 84.8ms	remaining: 122ms
82:	learn: 19.5027408	total: 85.7ms	remaining: 121ms
83:	learn: 19.4478712	total: 86.6ms	remaining: 120ms
84:	learn: 19.2261699	total: 87.6ms	remaining: 118ms
85:	learn: 19.0442767	total: 88.5ms	remaining: 117ms
86:	learn: 18.9740619	total: 89.4ms	remaining: 116ms
87:	learn: 18.9028166	total: 90.3ms	remaining: 115ms
88:	learn: 18.7887701	total: 91.2ms	remaining: 114ms
89:	learn: 18.6586954	total: 92.1ms	remaining: 113ms
90:	learn: 18.6037610	total: 92.9ms	remaining: 111ms
91:	learn: 18.5307810	total: 93.9ms	remaining: 110ms
92:	learn: 18.4319734	total: 94.8ms	remaining: 109ms
93:	learn: 18.2412652	total: 95.7ms	remaining: 108ms
94:	learn: 18.1850108	total: 96.5ms	remaining: 107ms
95:	learn: 18.0580961	total: 97.5ms	remaining: 106ms
96:	learn: 17.9469331	total: 98.3ms	remaining: 104ms
97:	learn: 17.7233371	total: 99.3ms	remaining: 103ms
98:	learn: 17.6691253	total: 100ms	remaining: 102ms
99:	learn: 17.5896117	total: 101ms	remaining: 101ms
100:	learn: 17.4929820	total: 102ms	remaining: 100ms
101:	learn: 17.4415284	total: 103ms	remaining: 99.1ms
102:	learn: 17.4027713	total: 104ms	remaining: 98ms
103:	learn: 17.3608480	total: 105ms	remaining: 96.9ms
104:	learn: 17.2231397	total: 106ms	remaining: 95.9ms
105:	learn: 17.2013305	total: 107ms	remaining: 94.7ms
106:	learn: 17.0949226	total: 108ms	remaining: 93.6ms
107:	learn: 17.0524045	total: 109ms	remaining: 92.5ms
108:	learn: 16.9598589	total: 110ms	remaining: 91.4ms
109:	learn: 16.9168343	total: 110ms	remaining: 90.3ms
110:	learn: 16.8959679	total: 111ms	remaining: 89.2ms
111:	learn: 16.7302824	total: 112ms	remaining: 88.2ms
112:	learn: 16.5980747	total: 113ms	remaining: 87.1ms
113:	learn: 16.5590019	total: 114ms	remaining: 86ms
114:	learn: 16.4877109	total: 115ms	remaining: 85.2ms
115:	learn: 16.4574907	total: 116ms	remaining: 84.2ms
116:	learn: 16.3070639	total: 117ms	remaining: 83.1ms
117:	learn: 16.2614840	total: 118ms	remaining: 82ms
118:	learn: 16.1657457	total: 119ms	remaining: 81ms
119:	learn: 16.0790650	total: 120ms	remaining: 80ms
120:	learn: 16.0001607	total: 121ms	remaining: 78.9ms
121:	learn: 15.9521882	total: 122ms	remaining: 77.8ms
122:	learn: 15.8118538	total: 123ms	remaining: 76.8ms
123:	learn: 15.7486251	total: 124ms	remaining: 75.7ms
124:	learn: 15.6859804	total: 124ms	remaining: 74.7ms
125:	learn: 15.6699779	total: 125ms	remaining: 73.6ms
126:	learn: 15.6307957	total: 126ms	remaining: 72.6ms
127:	learn: 15.5336410	total: 127ms	remaining: 71.5ms
128:	learn: 15.5044466	total: 128ms	remaining: 70.5ms
129:	learn: 15.4275538	total: 129ms	remaining: 69.4ms
130:	learn: 15.3808711	total: 130ms	remaining: 68.5ms
131:	learn: 15.3491239	total: 131ms	remaining: 67.5ms
132:	learn: 15.3087062	total: 132ms	remaining: 66.5ms
133:	learn: 15.2554858	total: 133ms	remaining: 65.5ms
134:	learn: 15.2204703	total: 134ms	remaining: 64.5ms
135:	learn: 15.1844824	total: 135ms	remaining: 63.5ms
136:	learn: 15.1224259	total: 136ms	remaining: 62.5ms
137:	learn: 15.1090267	total: 137ms	remaining: 61.4ms
138:	learn: 15.0871697	total: 138ms	remaining: 60.4ms
139:	learn: 15.0326035	total: 139ms	remaining: 59.4ms
140:	learn: 14.9595766	total: 140ms	remaining: 58.4ms
141:	learn: 14.9126505	total: 141ms	remaining: 57.4ms
142:	learn: 14.8762130	total: 142ms	remaining: 56.4ms
143:	learn: 14.8118319	total: 143ms	remaining: 55.4ms
144:	learn: 14.7748808	total: 144ms	remaining: 54.5ms
145:	learn: 14.7434799	total: 145ms	remaining: 53.5ms
146:	learn: 14.6922172	total: 146ms	remaining: 52.5ms
147:	learn: 14.6704760	total: 147ms	remaining: 51.5ms
148:	learn: 14.6455543	total: 148ms	remaining: 50.5ms
149:	learn: 14.6018164	total: 148ms	remaining: 49.5ms
150:	learn: 14.5826847	total: 149ms	remaining: 48.5ms
151:	learn: 14.5423604	total: 150ms	remaining: 47.5ms
152:	learn: 14.5132633	total: 151ms	remaining: 46.5ms
153:	learn: 14.4870430	total: 152ms	remaining: 45.5ms
154:	learn: 14.4526168	total: 153ms	remaining: 44.5ms
155:	learn: 14.3910798	total: 154ms	remaining: 43.5ms
156:	learn: 14.3783939	total: 155ms	remaining: 42.5ms
157:	learn: 14.3521778	total: 156ms	remaining: 41.5ms
158:	learn: 14.3144171	total: 157ms	remaining: 40.6ms
159:	learn: 14.3092817	total: 159ms	remaining: 39.7ms
160:	learn: 14.2902165	total: 161ms	remaining: 38.9ms
161:	learn: 14.2639661	total: 162ms	remaining: 38ms
162:	learn: 14.2479958	total: 163ms	remaining: 37.1ms
163:	learn: 14.2396704	total: 165ms	remaining: 36.2ms
164:	learn: 14.2139643	total: 166ms	remaining: 35.3ms
165:	learn: 14.2104344	total: 168ms	remaining: 34.4ms
166:	learn: 14.1738092	total: 169ms	remaining: 33.4ms
167:	learn: 14.1358066	total: 170ms	remaining: 32.5ms
168:	learn: 14.0959328	total: 172ms	remaining: 31.5ms
169:	learn: 14.0045648	total: 173ms	remaining: 30.5ms
170:	learn: 13.9744324	total: 175ms	remaining: 29.6ms
171:	learn: 13.9665835	total: 176ms	remaining: 28.7ms
172:	learn: 13.9514606	total: 177ms	remaining: 27.7ms
173:	learn: 13.9422037	total: 178ms	remaining: 26.6ms
174:	learn: 13.9332975	total: 179ms	remaining: 25.6ms
175:	learn: 13.8447726	total: 180ms	remaining: 24.6ms
176:	learn: 13.8314865	total: 182ms	remaining: 23.6ms
177:	learn: 13.8230164	total: 183ms	remaining: 22.6ms
178:	learn: 13.8155236	total: 184ms	remaining: 21.6ms
179:	learn: 13.8050153	total: 185ms	remaining: 20.5ms
180:	learn: 13.7696070	total: 186ms	remaining: 19.5ms
181:	learn: 13.7501626	total: 187ms	remaining: 18.5ms
182:	learn: 13.7177497	total: 188ms	remaining: 17.4ms
183:	learn: 13.6917237	total: 189ms	remaining: 16.4ms
184:	learn: 13.6512282	total: 190ms	remaining: 15.4ms
185:	learn: 13.6372034	total: 190ms	remaining: 14.3ms
186:	learn: 13.5753658	total: 191ms	remaining: 13.3ms
187:	learn: 13.5580785	total: 192ms	remaining: 12.3ms
188:	learn: 13.5283840	total: 193ms	remaining: 11.2ms
189:	learn: 13.4969701	total: 194ms	remaining: 10.2ms
190:	learn: 13.4502166	total: 195ms	remaining: 9.19ms
191:	learn: 13.4410658	total: 196ms	remaining: 8.16ms
192:	learn: 13.4278834	total: 197ms	remaining: 7.13ms
193:	learn: 13.4115427	total: 198ms	remaining: 6.11ms
194:	learn: 13.3746813	total: 198ms	remaining: 5.09ms
195:	learn: 13.3633774	total: 199ms	remaining: 4.07ms
196:	learn: 13.3410937	total: 200ms	remaining: 3.05ms
197:	learn: 13.3068766	total: 201ms	remaining: 2.03ms
198:	learn: 13.3029216	total: 202ms	remaining: 1.01ms
199:	learn: 13.2902084	total: 203ms	remaining: 0us
0:	learn: 45.2801187	total: 1.03ms	remaining: 205ms
1:	learn: 43.9022061	total: 1.96ms	remaining: 194ms
2:	learn: 42.8472409	total: 2.84ms	remaining: 187ms
3:	learn: 42.0460877	total: 3.75ms	remaining: 184ms
4:	learn: 40.7691303	total: 4.59ms	remaining: 179ms
5:	learn: 39.3047018	total: 5.51ms	remaining: 178ms
6:	learn: 37.9509978	total: 6.35ms	remaining: 175ms
7:	learn: 37.2300301	total: 7.25ms	remaining: 174ms
8:	learn: 36.9380307	total: 8.28ms	remaining: 176ms
9:	learn: 36.5186385	total: 9.26ms	remaining: 176ms
10:	learn: 36.0483073	total: 10.1ms	remaining: 174ms
11:	learn: 35.5277262	total: 11.1ms	remaining: 173ms
12:	learn: 34.5707792	total: 11.9ms	remaining: 172ms
13:	learn: 33.5448438	total: 12.8ms	remaining: 170ms
14:	learn: 32.9394722	total: 13.7ms	remaining: 169ms
15:	learn: 32.2224784	total: 14.6ms	remaining: 168ms
16:	learn: 31.4949215	total: 15.6ms	remaining: 168ms
17:	learn: 30.9766308	total: 16.6ms	remaining: 167ms
18:	learn: 30.6876128	total: 17.6ms	remaining: 167ms
19:	learn: 30.3382699	total: 18.5ms	remaining: 166ms
20:	learn: 30.0778090	total: 19.3ms	remaining: 165ms
21:	learn: 29.7890105	total: 20.3ms	remaining: 164ms
22:	learn: 29.3294067	total: 21.2ms	remaining: 163ms
23:	learn: 29.1058633	total: 22.1ms	remaining: 162ms
24:	learn: 28.5254965	total: 23ms	remaining: 161ms
25:	learn: 28.3947826	total: 23.9ms	remaining: 160ms
26:	learn: 27.9729009	total: 24.9ms	remaining: 159ms
27:	learn: 27.7762599	total: 25.8ms	remaining: 159ms
28:	learn: 27.5912160	total: 26.7ms	remaining: 158ms
29:	learn: 27.4382348	total: 27.6ms	remaining: 156ms
30:	learn: 27.0973697	total: 28.4ms	remaining: 155ms
31:	learn: 26.9004200	total: 29.4ms	remaining: 154ms
32:	learn: 26.6129021	total: 30.3ms	remaining: 153ms
33:	learn: 26.3660493	total: 31.2ms	remaining: 152ms
34:	learn: 26.2635529	total: 32.1ms	remaining: 151ms
35:	learn: 26.1916283	total: 33ms	remaining: 150ms
36:	learn: 26.0985291	total: 33.9ms	remaining: 149ms
37:	learn: 25.9659404	total: 34.9ms	remaining: 149ms
38:	learn: 25.7262377	total: 35.9ms	remaining: 148ms
39:	learn: 25.4809954	total: 36.9ms	remaining: 148ms
40:	learn: 25.3440060	total: 38ms	remaining: 147ms
41:	learn: 25.3112549	total: 38.9ms	remaining: 146ms
42:	learn: 25.2564550	total: 39.8ms	remaining: 145ms
43:	learn: 25.1739692	total: 40.7ms	remaining: 144ms
44:	learn: 25.1384274	total: 41.7ms	remaining: 144ms
45:	learn: 25.0447663	total: 42.6ms	remaining: 143ms
46:	learn: 24.8201340	total: 43.5ms	remaining: 142ms
47:	learn: 24.7574334	total: 44.4ms	remaining: 141ms
48:	learn: 24.5706548	total: 45.3ms	remaining: 140ms
49:	learn: 24.5183966	total: 46.2ms	remaining: 139ms
50:	learn: 24.4414337	total: 47.2ms	remaining: 138ms
51:	learn: 24.3357028	total: 48.1ms	remaining: 137ms
52:	learn: 24.3247113	total: 49ms	remaining: 136ms
53:	learn: 24.2725465	total: 49.9ms	remaining: 135ms
54:	learn: 23.9983847	total: 50.8ms	remaining: 134ms
55:	learn: 23.9627559	total: 51.7ms	remaining: 133ms
56:	learn: 23.9145553	total: 52.6ms	remaining: 132ms
57:	learn: 23.7757531	total: 53.5ms	remaining: 131ms
58:	learn: 23.7216584	total: 54.4ms	remaining: 130ms
59:	learn: 23.6699105	total: 55.3ms	remaining: 129ms
60:	learn: 23.6011146	total: 56.2ms	remaining: 128ms
61:	learn: 23.5650176	total: 57.1ms	remaining: 127ms
62:	learn: 23.5284638	total: 58.3ms	remaining: 127ms
63:	learn: 23.4690695	total: 59.2ms	remaining: 126ms
64:	learn: 23.3940631	total: 60.2ms	remaining: 125ms
65:	learn: 23.3662453	total: 61.4ms	remaining: 125ms
66:	learn: 23.3190940	total: 62.4ms	remaining: 124ms
67:	learn: 23.2986584	total: 63.3ms	remaining: 123ms
68:	learn: 23.2529912	total: 64.2ms	remaining: 122ms
69:	learn: 23.1094133	total: 65.1ms	remaining: 121ms
70:	learn: 22.9184242	total: 66ms	remaining: 120ms
71:	learn: 22.6866759	total: 66.8ms	remaining: 119ms
72:	learn: 22.6057583	total: 67.7ms	remaining: 118ms
73:	learn: 22.4838393	total: 68.6ms	remaining: 117ms
74:	learn: 22.2333236	total: 69.5ms	remaining: 116ms
75:	learn: 22.1120753	total: 70.3ms	remaining: 115ms
76:	learn: 22.0765287	total: 71.2ms	remaining: 114ms
77:	learn: 22.0304924	total: 72.1ms	remaining: 113ms
78:	learn: 22.0230993	total: 72.9ms	remaining: 112ms
79:	learn: 22.0042415	total: 73.7ms	remaining: 111ms
80:	learn: 21.8795389	total: 74.7ms	remaining: 110ms
81:	learn: 21.8456202	total: 75.7ms	remaining: 109ms
82:	learn: 21.7733275	total: 76.7ms	remaining: 108ms
83:	learn: 21.6806247	total: 77.6ms	remaining: 107ms
84:	learn: 21.6624486	total: 78.6ms	remaining: 106ms
85:	learn: 21.6498044	total: 79.6ms	remaining: 106ms
86:	learn: 21.5835353	total: 80.5ms	remaining: 105ms
87:	learn: 21.4017716	total: 81.5ms	remaining: 104ms
88:	learn: 21.2529610	total: 82.4ms	remaining: 103ms
89:	learn: 21.1279531	total: 83.3ms	remaining: 102ms
90:	learn: 21.0466260	total: 84.2ms	remaining: 101ms
91:	learn: 20.8952066	total: 85.1ms	remaining: 100ms
92:	learn: 20.8772971	total: 86ms	remaining: 99ms
93:	learn: 20.6741999	total: 87ms	remaining: 98.1ms
94:	learn: 20.6378157	total: 87.9ms	remaining: 97.1ms
95:	learn: 20.5962306	total: 88.7ms	remaining: 96.1ms
96:	learn: 20.5629829	total: 89.6ms	remaining: 95.2ms
97:	learn: 20.5448506	total: 90.6ms	remaining: 94.3ms
98:	learn: 20.5226524	total: 91.7ms	remaining: 93.5ms
99:	learn: 20.4312112	total: 92.6ms	remaining: 92.6ms
100:	learn: 20.4048452	total: 93.5ms	remaining: 91.6ms
101:	learn: 20.3752038	total: 94.4ms	remaining: 90.7ms
102:	learn: 20.3590112	total: 95.3ms	remaining: 89.8ms
103:	learn: 20.2680349	total: 96.3ms	remaining: 88.9ms
104:	learn: 20.1362314	total: 97.2ms	remaining: 87.9ms
105:	learn: 20.0802285	total: 98.1ms	remaining: 87ms
106:	learn: 19.9232838	total: 99ms	remaining: 86ms
107:	learn: 19.8193773	total: 99.9ms	remaining: 85.1ms
108:	learn: 19.7943631	total: 101ms	remaining: 84.2ms
109:	learn: 19.7229289	total: 102ms	remaining: 83.3ms
110:	learn: 19.5907909	total: 103ms	remaining: 82.5ms
111:	learn: 19.4546155	total: 104ms	remaining: 81.8ms
112:	learn: 19.4375942	total: 106ms	remaining: 81.6ms
113:	learn: 19.4151076	total: 108ms	remaining: 81.2ms
114:	learn: 19.4000766	total: 109ms	remaining: 80.6ms
115:	learn: 19.2875957	total: 110ms	remaining: 79.9ms
116:	learn: 19.2735673	total: 112ms	remaining: 79.2ms
117:	learn: 19.2081889	total: 113ms	remaining: 78.5ms
118:	learn: 19.1672137	total: 114ms	remaining: 77.7ms
119:	learn: 19.0968083	total: 117ms	remaining: 77.8ms
120:	learn: 18.9984559	total: 119ms	remaining: 77.4ms
121:	learn: 18.9275960	total: 121ms	remaining: 77.2ms
122:	learn: 18.8217056	total: 123ms	remaining: 76.7ms
123:	learn: 18.7014433	total: 124ms	remaining: 76.1ms
124:	learn: 18.6728637	total: 125ms	remaining: 75.3ms
125:	learn: 18.6598352	total: 127ms	remaining: 74.4ms
126:	learn: 18.5993266	total: 128ms	remaining: 73.4ms
127:	learn: 18.5852342	total: 129ms	remaining: 72.5ms
128:	learn: 18.5146543	total: 131ms	remaining: 72ms
129:	learn: 18.4801605	total: 132ms	remaining: 71.2ms
130:	learn: 18.2676408	total: 133ms	remaining: 70.2ms
131:	learn: 18.2494973	total: 134ms	remaining: 69.2ms
132:	learn: 18.1697048	total: 136ms	remaining: 68.3ms
133:	learn: 18.1389286	total: 137ms	remaining: 67.3ms
134:	learn: 18.0973904	total: 138ms	remaining: 66.5ms
135:	learn: 17.9996290	total: 139ms	remaining: 65.6ms
136:	learn: 17.9626363	total: 141ms	remaining: 64.7ms
137:	learn: 17.9496087	total: 142ms	remaining: 63.6ms
138:	learn: 17.9042024	total: 143ms	remaining: 62.6ms
139:	learn: 17.8927765	total: 144ms	remaining: 61.6ms
140:	learn: 17.8660122	total: 145ms	remaining: 60.6ms
141:	learn: 17.7475656	total: 146ms	remaining: 59.5ms
142:	learn: 17.6944334	total: 147ms	remaining: 58.5ms
143:	learn: 17.6797405	total: 148ms	remaining: 57.5ms
144:	learn: 17.6664132	total: 149ms	remaining: 56.4ms
145:	learn: 17.5997144	total: 150ms	remaining: 55.4ms
146:	learn: 17.4108683	total: 151ms	remaining: 54.4ms
147:	learn: 17.3406530	total: 152ms	remaining: 53.4ms
148:	learn: 17.3181477	total: 153ms	remaining: 52.4ms
149:	learn: 17.2702006	total: 154ms	remaining: 51.4ms
150:	learn: 17.1530569	total: 155ms	remaining: 50.3ms
151:	learn: 17.0874260	total: 156ms	remaining: 49.3ms
152:	learn: 17.0267677	total: 157ms	remaining: 48.3ms
153:	learn: 16.9793208	total: 158ms	remaining: 47.3ms
154:	learn: 16.9182291	total: 159ms	remaining: 46.3ms
155:	learn: 16.8962600	total: 160ms	remaining: 45.3ms
156:	learn: 16.8395104	total: 162ms	remaining: 44.2ms
157:	learn: 16.8007079	total: 163ms	remaining: 43.3ms
158:	learn: 16.7557320	total: 164ms	remaining: 42.3ms
159:	learn: 16.7450052	total: 165ms	remaining: 41.2ms
160:	learn: 16.7345445	total: 166ms	remaining: 40.2ms
161:	learn: 16.6817314	total: 167ms	remaining: 39.1ms
162:	learn: 16.6248358	total: 168ms	remaining: 38.1ms
163:	learn: 16.5789020	total: 169ms	remaining: 37ms
164:	learn: 16.5353886	total: 169ms	remaining: 35.9ms
165:	learn: 16.4952445	total: 170ms	remaining: 34.9ms
166:	learn: 16.4850501	total: 171ms	remaining: 33.8ms
167:	learn: 16.3843856	total: 172ms	remaining: 32.8ms
168:	learn: 16.3592728	total: 173ms	remaining: 31.8ms
169:	learn: 16.2861928	total: 174ms	remaining: 30.7ms
170:	learn: 16.2649911	total: 175ms	remaining: 29.7ms
171:	learn: 16.1977575	total: 176ms	remaining: 28.7ms
172:	learn: 16.1847998	total: 177ms	remaining: 27.7ms
173:	learn: 16.1812852	total: 178ms	remaining: 26.6ms
174:	learn: 16.1468297	total: 179ms	remaining: 25.6ms
175:	learn: 16.1436294	total: 180ms	remaining: 24.6ms
176:	learn: 16.1305002	total: 181ms	remaining: 23.5ms
177:	learn: 16.1077000	total: 182ms	remaining: 22.5ms
178:	learn: 16.0694944	total: 183ms	remaining: 21.5ms
179:	learn: 15.9938398	total: 184ms	remaining: 20.4ms
180:	learn: 15.9567876	total: 185ms	remaining: 19.4ms
181:	learn: 15.9454118	total: 186ms	remaining: 18.4ms
182:	learn: 15.9434230	total: 187ms	remaining: 17.3ms
183:	learn: 15.8906948	total: 188ms	remaining: 16.3ms
184:	learn: 15.8211938	total: 189ms	remaining: 15.3ms
185:	learn: 15.8148102	total: 190ms	remaining: 14.3ms
186:	learn: 15.7887930	total: 192ms	remaining: 13.3ms
187:	learn: 15.7843667	total: 193ms	remaining: 12.3ms
188:	learn: 15.7417983	total: 194ms	remaining: 11.3ms
189:	learn: 15.6930618	total: 195ms	remaining: 10.3ms
190:	learn: 15.6489770	total: 196ms	remaining: 9.24ms
191:	learn: 15.6467712	total: 197ms	remaining: 8.22ms
192:	learn: 15.5534080	total: 198ms	remaining: 7.19ms
193:	learn: 15.5089178	total: 199ms	remaining: 6.16ms
194:	learn: 15.4898722	total: 200ms	remaining: 5.13ms
195:	learn: 15.4852691	total: 201ms	remaining: 4.1ms
196:	learn: 15.4802710	total: 202ms	remaining: 3.07ms
197:	learn: 15.4352188	total: 202ms	remaining: 2.04ms
198:	learn: 15.3851395	total: 203ms	remaining: 1.02ms
199:	learn: 15.3749774	total: 204ms	remaining: 0us
0:	learn: 46.2699959	total: 1.23ms	remaining: 246ms
1:	learn: 44.8854743	total: 2.32ms	remaining: 229ms
2:	learn: 43.4874731	total: 3.51ms	remaining: 231ms
3:	learn: 42.6584064	total: 4.5ms	remaining: 220ms
4:	learn: 42.1224094	total: 5.44ms	remaining: 212ms
5:	learn: 40.9459501	total: 6.34ms	remaining: 205ms
6:	learn: 39.4763483	total: 7.24ms	remaining: 200ms
7:	learn: 38.6090144	total: 8.12ms	remaining: 195ms
8:	learn: 38.2791057	total: 8.97ms	remaining: 190ms
9:	learn: 37.7813487	total: 9.88ms	remaining: 188ms
10:	learn: 37.4242408	total: 10.8ms	remaining: 185ms
11:	learn: 36.3484663	total: 11.6ms	remaining: 182ms
12:	learn: 35.3827565	total: 12.5ms	remaining: 180ms
13:	learn: 34.4315777	total: 13.5ms	remaining: 179ms
14:	learn: 33.5788252	total: 14.4ms	remaining: 177ms
15:	learn: 33.3125662	total: 15.6ms	remaining: 180ms
16:	learn: 32.5306907	total: 16.6ms	remaining: 178ms
17:	learn: 31.9688285	total: 17.5ms	remaining: 177ms
18:	learn: 31.7709834	total: 18.4ms	remaining: 175ms
19:	learn: 31.4927785	total: 19.4ms	remaining: 174ms
20:	learn: 31.2468916	total: 20.3ms	remaining: 173ms
21:	learn: 30.9125421	total: 21.2ms	remaining: 171ms
22:	learn: 30.2429233	total: 22ms	remaining: 169ms
23:	learn: 29.7659375	total: 22.9ms	remaining: 168ms
24:	learn: 29.4369976	total: 23.8ms	remaining: 167ms
25:	learn: 29.1267715	total: 24.8ms	remaining: 166ms
26:	learn: 28.9739320	total: 25.6ms	remaining: 164ms
27:	learn: 28.7871325	total: 26.5ms	remaining: 163ms
28:	learn: 28.6059752	total: 27.4ms	remaining: 161ms
29:	learn: 28.3471120	total: 28.3ms	remaining: 160ms
30:	learn: 28.2221955	total: 29.3ms	remaining: 160ms
31:	learn: 28.1174912	total: 30.3ms	remaining: 159ms
32:	learn: 27.7591371	total: 31.2ms	remaining: 158ms
33:	learn: 27.4545561	total: 32.2ms	remaining: 157ms
34:	learn: 27.3651817	total: 33.2ms	remaining: 156ms
35:	learn: 27.2720165	total: 34.1ms	remaining: 155ms
36:	learn: 27.1708405	total: 35.1ms	remaining: 155ms
37:	learn: 27.0126718	total: 36.1ms	remaining: 154ms
38:	learn: 26.9252742	total: 37ms	remaining: 153ms
39:	learn: 26.7619975	total: 38ms	remaining: 152ms
40:	learn: 26.5083292	total: 39ms	remaining: 151ms
41:	learn: 26.4789513	total: 40ms	remaining: 150ms
42:	learn: 26.4229710	total: 40.9ms	remaining: 149ms
43:	learn: 26.3645871	total: 41.8ms	remaining: 148ms
44:	learn: 26.2712363	total: 42.9ms	remaining: 148ms
45:	learn: 26.2241641	total: 43.9ms	remaining: 147ms
46:	learn: 26.1544475	total: 44.8ms	remaining: 146ms
47:	learn: 26.1134536	total: 45.8ms	remaining: 145ms
48:	learn: 25.9054241	total: 46.6ms	remaining: 144ms
49:	learn: 25.6874164	total: 47.6ms	remaining: 143ms
50:	learn: 25.5631575	total: 48.6ms	remaining: 142ms
51:	learn: 25.3809224	total: 49.5ms	remaining: 141ms
52:	learn: 25.1902631	total: 50.4ms	remaining: 140ms
53:	learn: 25.0273906	total: 51.3ms	remaining: 139ms
54:	learn: 24.9158305	total: 52.4ms	remaining: 138ms
55:	learn: 24.8514780	total: 53.5ms	remaining: 138ms
56:	learn: 24.7697643	total: 54.5ms	remaining: 137ms
57:	learn: 24.7115651	total: 55.6ms	remaining: 136ms
58:	learn: 24.6618184	total: 58.1ms	remaining: 139ms
59:	learn: 24.5267592	total: 59.4ms	remaining: 139ms
60:	learn: 24.4741026	total: 60.7ms	remaining: 138ms
61:	learn: 24.4277839	total: 62ms	remaining: 138ms
62:	learn: 24.2760324	total: 63.3ms	remaining: 138ms
63:	learn: 24.2315657	total: 64.5ms	remaining: 137ms
64:	learn: 24.0886786	total: 65.9ms	remaining: 137ms
65:	learn: 23.9247244	total: 67.3ms	remaining: 137ms
66:	learn: 23.7841338	total: 68.5ms	remaining: 136ms
67:	learn: 23.7559864	total: 70ms	remaining: 136ms
68:	learn: 23.7077371	total: 71.3ms	remaining: 135ms
69:	learn: 23.6649534	total: 72.6ms	remaining: 135ms
70:	learn: 23.6270368	total: 73.7ms	remaining: 134ms
71:	learn: 23.4636827	total: 75ms	remaining: 133ms
72:	learn: 23.1870361	total: 76ms	remaining: 132ms
73:	learn: 23.0968477	total: 77ms	remaining: 131ms
74:	learn: 22.9887973	total: 78ms	remaining: 130ms
75:	learn: 22.8838469	total: 79.1ms	remaining: 129ms
76:	learn: 22.8216257	total: 80.4ms	remaining: 128ms
77:	learn: 22.7837153	total: 81.5ms	remaining: 127ms
78:	learn: 22.7145905	total: 82.6ms	remaining: 127ms
79:	learn: 22.6907223	total: 83.5ms	remaining: 125ms
80:	learn: 22.5764438	total: 84.4ms	remaining: 124ms
81:	learn: 22.4800392	total: 85.3ms	remaining: 123ms
82:	learn: 22.4328644	total: 86.2ms	remaining: 122ms
83:	learn: 22.1728982	total: 87.2ms	remaining: 120ms
84:	learn: 22.0670578	total: 88.1ms	remaining: 119ms
85:	learn: 21.9684094	total: 89ms	remaining: 118ms
86:	learn: 21.8766732	total: 89.9ms	remaining: 117ms
87:	learn: 21.7803745	total: 90.8ms	remaining: 116ms
88:	learn: 21.6375981	total: 91.7ms	remaining: 114ms
89:	learn: 21.5730326	total: 92.6ms	remaining: 113ms
90:	learn: 21.4939746	total: 93.5ms	remaining: 112ms
91:	learn: 21.3218945	total: 94.5ms	remaining: 111ms
92:	learn: 21.2510601	total: 95.3ms	remaining: 110ms
93:	learn: 21.1757048	total: 96.2ms	remaining: 108ms
94:	learn: 21.1180091	total: 97.1ms	remaining: 107ms
95:	learn: 20.9964494	total: 98ms	remaining: 106ms
96:	learn: 20.9045719	total: 98.9ms	remaining: 105ms
97:	learn: 20.8193882	total: 100ms	remaining: 104ms
98:	learn: 20.7598774	total: 101ms	remaining: 103ms
99:	learn: 20.6397878	total: 102ms	remaining: 102ms
100:	learn: 20.5736765	total: 103ms	remaining: 101ms
101:	learn: 20.4913909	total: 104ms	remaining: 100ms
102:	learn: 20.3960154	total: 105ms	remaining: 99.2ms
103:	learn: 20.3224826	total: 106ms	remaining: 98ms
104:	learn: 20.2564899	total: 107ms	remaining: 96.9ms
105:	learn: 20.1325674	total: 108ms	remaining: 95.8ms
106:	learn: 20.0574015	total: 109ms	remaining: 94.6ms
107:	learn: 19.8072271	total: 110ms	remaining: 93.5ms
108:	learn: 19.7112510	total: 111ms	remaining: 92.4ms
109:	learn: 19.6509125	total: 112ms	remaining: 91.3ms
110:	learn: 19.5954385	total: 113ms	remaining: 90.2ms
111:	learn: 19.5448318	total: 113ms	remaining: 89.2ms
112:	learn: 19.4593526	total: 114ms	remaining: 88.1ms
113:	learn: 19.3743000	total: 115ms	remaining: 87ms
114:	learn: 19.3302381	total: 116ms	remaining: 85.9ms
115:	learn: 19.2860380	total: 117ms	remaining: 84.8ms
116:	learn: 19.0615175	total: 118ms	remaining: 83.7ms
117:	learn: 19.0185047	total: 119ms	remaining: 82.6ms
118:	learn: 18.9377922	total: 120ms	remaining: 81.6ms
119:	learn: 18.9028029	total: 121ms	remaining: 80.5ms
120:	learn: 18.8683850	total: 122ms	remaining: 79.4ms
121:	learn: 18.8548977	total: 123ms	remaining: 78.4ms
122:	learn: 18.7914127	total: 123ms	remaining: 77.3ms
123:	learn: 18.6896914	total: 124ms	remaining: 76.2ms
124:	learn: 18.6654429	total: 125ms	remaining: 75.1ms
125:	learn: 18.5726017	total: 126ms	remaining: 74ms
126:	learn: 18.4784282	total: 127ms	remaining: 72.9ms
127:	learn: 18.4297613	total: 128ms	remaining: 71.9ms
128:	learn: 18.3776109	total: 129ms	remaining: 70.9ms
129:	learn: 18.3645936	total: 130ms	remaining: 69.8ms
130:	learn: 18.3253364	total: 131ms	remaining: 68.8ms
131:	learn: 18.2658023	total: 131ms	remaining: 67.7ms
132:	learn: 18.2062697	total: 132ms	remaining: 66.7ms
133:	learn: 18.1527061	total: 133ms	remaining: 65.6ms
134:	learn: 18.1316305	total: 134ms	remaining: 64.6ms
135:	learn: 18.0646103	total: 135ms	remaining: 63.5ms
136:	learn: 18.0530383	total: 136ms	remaining: 62.5ms
137:	learn: 18.0250659	total: 137ms	remaining: 61.5ms
138:	learn: 18.0131252	total: 138ms	remaining: 60.5ms
139:	learn: 17.9494983	total: 139ms	remaining: 59.5ms
140:	learn: 17.9252869	total: 140ms	remaining: 58.4ms
141:	learn: 17.8953732	total: 141ms	remaining: 57.4ms
142:	learn: 17.8514183	total: 142ms	remaining: 56.4ms
143:	learn: 17.7802266	total: 142ms	remaining: 55.4ms
144:	learn: 17.6903795	total: 143ms	remaining: 54.4ms
145:	learn: 17.6576104	total: 144ms	remaining: 53.4ms
146:	learn: 17.5872369	total: 145ms	remaining: 52.3ms
147:	learn: 17.5581149	total: 146ms	remaining: 51.3ms
148:	learn: 17.5216630	total: 147ms	remaining: 50.3ms
149:	learn: 17.4728428	total: 148ms	remaining: 49.3ms
150:	learn: 17.4594283	total: 149ms	remaining: 48.3ms
151:	learn: 17.3879828	total: 150ms	remaining: 47.2ms
152:	learn: 17.3189338	total: 150ms	remaining: 46.2ms
153:	learn: 17.3035591	total: 151ms	remaining: 45.2ms
154:	learn: 17.2389162	total: 152ms	remaining: 44.2ms
155:	learn: 17.2246577	total: 153ms	remaining: 43.3ms
156:	learn: 17.1810974	total: 154ms	remaining: 42.3ms
157:	learn: 17.1426611	total: 155ms	remaining: 41.2ms
158:	learn: 17.1333268	total: 156ms	remaining: 40.2ms
159:	learn: 17.0347736	total: 157ms	remaining: 39.2ms
160:	learn: 16.9935040	total: 158ms	remaining: 38.2ms
161:	learn: 16.9042551	total: 159ms	remaining: 37.3ms
162:	learn: 16.8766477	total: 160ms	remaining: 36.3ms
163:	learn: 16.8511556	total: 161ms	remaining: 35.3ms
164:	learn: 16.8395866	total: 161ms	remaining: 34.2ms
165:	learn: 16.7994908	total: 162ms	remaining: 33.2ms
166:	learn: 16.7403781	total: 163ms	remaining: 32.3ms
167:	learn: 16.6991563	total: 164ms	remaining: 31.3ms
168:	learn: 16.6449540	total: 165ms	remaining: 30.3ms
169:	learn: 16.6233722	total: 166ms	remaining: 29.3ms
170:	learn: 16.5779656	total: 167ms	remaining: 28.3ms
171:	learn: 16.5549539	total: 168ms	remaining: 27.3ms
172:	learn: 16.5033403	total: 169ms	remaining: 26.3ms
173:	learn: 16.4277637	total: 169ms	remaining: 25.3ms
174:	learn: 16.4021748	total: 171ms	remaining: 24.4ms
175:	learn: 16.3498665	total: 172ms	remaining: 23.4ms
176:	learn: 16.3064470	total: 172ms	remaining: 22.4ms
177:	learn: 16.2702973	total: 173ms	remaining: 21.4ms
178:	learn: 16.2549298	total: 174ms	remaining: 20.5ms
179:	learn: 16.2189636	total: 175ms	remaining: 19.5ms
180:	learn: 16.1674264	total: 176ms	remaining: 18.5ms
181:	learn: 16.1179352	total: 177ms	remaining: 17.5ms
182:	learn: 16.0976349	total: 178ms	remaining: 16.6ms
183:	learn: 16.0376148	total: 179ms	remaining: 15.6ms
184:	learn: 16.0211743	total: 180ms	remaining: 14.6ms
185:	learn: 15.9811708	total: 181ms	remaining: 13.7ms
186:	learn: 15.9341211	total: 182ms	remaining: 12.7ms
187:	learn: 15.9125573	total: 183ms	remaining: 11.7ms
188:	learn: 15.8988890	total: 184ms	remaining: 10.7ms
189:	learn: 15.8516321	total: 185ms	remaining: 9.74ms
190:	learn: 15.7935432	total: 186ms	remaining: 8.76ms
191:	learn: 15.7495219	total: 187ms	remaining: 7.79ms
192:	learn: 15.7258412	total: 188ms	remaining: 6.81ms
193:	learn: 15.6504316	total: 189ms	remaining: 5.84ms
194:	learn: 15.6036074	total: 190ms	remaining: 4.86ms
195:	learn: 15.5525994	total: 191ms	remaining: 3.89ms
196:	learn: 15.5392575	total: 192ms	remaining: 2.92ms
197:	learn: 15.5020674	total: 192ms	remaining: 1.94ms
198:	learn: 15.4360789	total: 193ms	remaining: 971us
199:	learn: 15.3901879	total: 194ms	remaining: 0us
0:	learn: 27.6737479	total: 28.7ms	remaining: 8.58s
1:	learn: 27.3204154	total: 52.4ms	remaining: 7.8s
2:	learn: 26.9091890	total: 75.4ms	remaining: 7.46s
3:	learn: 26.4875027	total: 98.8ms	remaining: 7.31s
4:	learn: 26.1185303	total: 101ms	remaining: 5.96s
5:	learn: 25.8552625	total: 123ms	remaining: 6.03s
6:	learn: 25.5259340	total: 146ms	remaining: 6.13s
7:	learn: 25.1594330	total: 167ms	remaining: 6.11s
8:	learn: 24.8131787	total: 187ms	remaining: 6.04s
9:	learn: 24.5107101	total: 208ms	remaining: 6.04s
10:	learn: 24.1382533	total: 231ms	remaining: 6.06s
11:	learn: 23.9059068	total: 252ms	remaining: 6.04s
12:	learn: 23.5820314	total: 274ms	remaining: 6.06s
13:	learn: 23.2566481	total: 303ms	remaining: 6.19s
14:	learn: 22.9720100	total: 325ms	remaining: 6.17s
15:	learn: 22.6458045	total: 344ms	remaining: 6.11s
16:	learn: 22.3310792	total: 364ms	remaining: 6.07s
17:	learn: 22.0614254	total: 384ms	remaining: 6.01s
18:	learn: 21.8674093	total: 403ms	remaining: 5.96s
19:	learn: 21.6777228	total: 422ms	remaining: 5.91s
20:	learn: 21.4758843	total: 442ms	remaining: 5.87s
21:	learn: 21.2015722	total: 462ms	remaining: 5.83s
22:	learn: 20.9741180	total: 485ms	remaining: 5.84s
23:	learn: 20.8103315	total: 508ms	remaining: 5.85s
24:	learn: 20.6059519	total: 537ms	remaining: 5.91s
25:	learn: 20.3003482	total: 562ms	remaining: 5.93s
26:	learn: 20.1047051	total: 587ms	remaining: 5.93s
27:	learn: 19.9117545	total: 610ms	remaining: 5.93s
28:	learn: 19.7508802	total: 634ms	remaining: 5.93s
29:	learn: 19.5995500	total: 656ms	remaining: 5.9s
30:	learn: 19.4265011	total: 678ms	remaining: 5.88s
31:	learn: 19.2507253	total: 701ms	remaining: 5.87s
32:	learn: 19.0780638	total: 724ms	remaining: 5.86s
33:	learn: 18.8739495	total: 752ms	remaining: 5.88s
34:	learn: 18.6951687	total: 774ms	remaining: 5.86s
35:	learn: 18.5423419	total: 795ms	remaining: 5.83s
36:	learn: 18.3650169	total: 817ms	remaining: 5.8s
37:	learn: 18.1741271	total: 839ms	remaining: 5.78s
38:	learn: 18.0512035	total: 862ms	remaining: 5.77s
39:	learn: 17.9045476	total: 884ms	remaining: 5.74s
40:	learn: 17.7669779	total: 903ms	remaining: 5.71s
41:	learn: 17.6440484	total: 927ms	remaining: 5.69s
42:	learn: 17.4832065	total: 956ms	remaining: 5.71s
43:	learn: 17.3307814	total: 983ms	remaining: 5.72s
44:	learn: 17.1968371	total: 1.01s	remaining: 5.71s
45:	learn: 17.0551367	total: 1.03s	remaining: 5.69s
46:	learn: 16.9663187	total: 1.05s	remaining: 5.66s
47:	learn: 16.8379611	total: 1.07s	remaining: 5.64s
48:	learn: 16.7219020	total: 1.09s	remaining: 5.61s
49:	learn: 16.6155465	total: 1.11s	remaining: 5.58s
50:	learn: 16.5139205	total: 1.14s	remaining: 5.56s
51:	learn: 16.3531147	total: 1.15s	remaining: 5.46s
52:	learn: 16.2763831	total: 1.18s	remaining: 5.48s
53:	learn: 16.1694133	total: 1.2s	remaining: 5.47s
54:	learn: 16.0589004	total: 1.22s	remaining: 5.44s
55:	learn: 15.9660704	total: 1.24s	remaining: 5.42s
56:	learn: 15.8765659	total: 1.26s	remaining: 5.39s
57:	learn: 15.7724924	total: 1.29s	remaining: 5.37s
58:	learn: 15.6865252	total: 1.31s	remaining: 5.34s
59:	learn: 15.6055417	total: 1.33s	remaining: 5.32s
60:	learn: 15.5264778	total: 1.35s	remaining: 5.29s
61:	learn: 15.4370145	total: 1.37s	remaining: 5.27s
62:	learn: 15.3562945	total: 1.4s	remaining: 5.28s
63:	learn: 15.2817484	total: 1.43s	remaining: 5.26s
64:	learn: 15.1941732	total: 1.45s	remaining: 5.25s
65:	learn: 15.1049991	total: 1.47s	remaining: 5.22s
66:	learn: 15.0359663	total: 1.5s	remaining: 5.2s
67:	learn: 14.9351417	total: 1.51s	remaining: 5.17s
68:	learn: 14.8495497	total: 1.54s	remaining: 5.14s
69:	learn: 14.7623093	total: 1.56s	remaining: 5.12s
70:	learn: 14.6771574	total: 1.58s	remaining: 5.1s
71:	learn: 14.5978140	total: 1.61s	remaining: 5.09s
72:	learn: 14.5375886	total: 1.63s	remaining: 5.07s
73:	learn: 14.4649353	total: 1.65s	remaining: 5.04s
74:	learn: 14.4009644	total: 1.67s	remaining: 5.01s
75:	learn: 14.3287275	total: 1.69s	remaining: 4.99s
76:	learn: 14.2318571	total: 1.71s	remaining: 4.96s
77:	learn: 14.1625701	total: 1.73s	remaining: 4.93s
78:	learn: 14.0644282	total: 1.75s	remaining: 4.9s
79:	learn: 13.9762883	total: 1.77s	remaining: 4.88s
80:	learn: 13.9042920	total: 1.8s	remaining: 4.87s
81:	learn: 13.8176535	total: 1.83s	remaining: 4.86s
82:	learn: 13.6910849	total: 1.85s	remaining: 4.84s
83:	learn: 13.5737570	total: 1.87s	remaining: 4.82s
84:	learn: 13.5049845	total: 1.9s	remaining: 4.8s
85:	learn: 13.4341145	total: 1.92s	remaining: 4.78s
86:	learn: 13.3796196	total: 1.94s	remaining: 4.75s
87:	learn: 13.3024352	total: 1.96s	remaining: 4.72s
88:	learn: 13.2435566	total: 1.98s	remaining: 4.7s
89:	learn: 13.1910369	total: 2.01s	remaining: 4.69s
90:	learn: 13.1471565	total: 2.03s	remaining: 4.67s
91:	learn: 13.0611063	total: 2.05s	remaining: 4.64s
92:	learn: 12.9909112	total: 2.08s	remaining: 4.62s
93:	learn: 12.9355316	total: 2.1s	remaining: 4.59s
94:	learn: 12.8561480	total: 2.12s	remaining: 4.57s
95:	learn: 12.7929803	total: 2.13s	remaining: 4.54s
96:	learn: 12.7262412	total: 2.16s	remaining: 4.51s
97:	learn: 12.6739210	total: 2.17s	remaining: 4.48s
98:	learn: 12.6265593	total: 2.2s	remaining: 4.46s
99:	learn: 12.5594247	total: 2.22s	remaining: 4.44s
100:	learn: 12.4986691	total: 2.24s	remaining: 4.42s
101:	learn: 12.4471027	total: 2.28s	remaining: 4.43s
102:	learn: 12.3962782	total: 2.3s	remaining: 4.41s
103:	learn: 12.3424090	total: 2.33s	remaining: 4.39s
104:	learn: 12.2660971	total: 2.35s	remaining: 4.37s
105:	learn: 12.2042689	total: 2.37s	remaining: 4.35s
106:	learn: 12.1363044	total: 2.4s	remaining: 4.32s
107:	learn: 12.1022229	total: 2.42s	remaining: 4.3s
108:	learn: 12.0491052	total: 2.44s	remaining: 4.28s
109:	learn: 11.9900598	total: 2.46s	remaining: 4.26s
110:	learn: 11.9411055	total: 2.49s	remaining: 4.24s
111:	learn: 11.8782485	total: 2.52s	remaining: 4.22s
112:	learn: 11.8248797	total: 2.54s	remaining: 4.2s
113:	learn: 11.7750338	total: 2.56s	remaining: 4.17s
114:	learn: 11.7390791	total: 2.58s	remaining: 4.15s
115:	learn: 11.6795857	total: 2.6s	remaining: 4.13s
116:	learn: 11.5948258	total: 2.62s	remaining: 4.1s
117:	learn: 11.5598943	total: 2.65s	remaining: 4.08s
118:	learn: 11.4992434	total: 2.67s	remaining: 4.06s
119:	learn: 11.4491317	total: 2.7s	remaining: 4.05s
120:	learn: 11.3929630	total: 2.73s	remaining: 4.03s
121:	learn: 11.3373664	total: 2.75s	remaining: 4.01s
122:	learn: 11.2805890	total: 2.77s	remaining: 3.99s
123:	learn: 11.2341228	total: 2.8s	remaining: 3.97s
124:	learn: 11.1615505	total: 2.82s	remaining: 3.95s
125:	learn: 11.1024523	total: 2.84s	remaining: 3.92s
126:	learn: 11.0710084	total: 2.86s	remaining: 3.9s
127:	learn: 11.0251377	total: 2.88s	remaining: 3.88s
128:	learn: 10.9884605	total: 2.92s	remaining: 3.87s
129:	learn: 10.9584488	total: 2.94s	remaining: 3.84s
130:	learn: 10.8995848	total: 2.96s	remaining: 3.82s
131:	learn: 10.8549250	total: 2.98s	remaining: 3.79s
132:	learn: 10.8113067	total: 3s	remaining: 3.77s
133:	learn: 10.7553419	total: 3.02s	remaining: 3.75s
134:	learn: 10.7096544	total: 3.05s	remaining: 3.72s
135:	learn: 10.6757190	total: 3.07s	remaining: 3.7s
136:	learn: 10.6327685	total: 3.09s	remaining: 3.68s
137:	learn: 10.5902988	total: 3.11s	remaining: 3.65s
138:	learn: 10.5467376	total: 3.15s	remaining: 3.64s
139:	learn: 10.5163592	total: 3.17s	remaining: 3.62s
140:	learn: 10.4694138	total: 3.19s	remaining: 3.6s
141:	learn: 10.4359855	total: 3.22s	remaining: 3.58s
142:	learn: 10.4057439	total: 3.24s	remaining: 3.56s
143:	learn: 10.3729240	total: 3.26s	remaining: 3.54s
144:	learn: 10.3359301	total: 3.29s	remaining: 3.52s
145:	learn: 10.2697670	total: 3.31s	remaining: 3.5s
146:	learn: 10.2094154	total: 3.34s	remaining: 3.48s
147:	learn: 10.1600330	total: 3.36s	remaining: 3.45s
148:	learn: 10.1308425	total: 3.38s	remaining: 3.43s
149:	learn: 10.0855107	total: 3.41s	remaining: 3.41s
150:	learn: 10.0385460	total: 3.43s	remaining: 3.38s
151:	learn: 10.0087773	total: 3.45s	remaining: 3.36s
152:	learn: 9.9793744	total: 3.47s	remaining: 3.33s
153:	learn: 9.9525485	total: 3.49s	remaining: 3.31s
154:	learn: 9.9079941	total: 3.51s	remaining: 3.29s
155:	learn: 9.8778723	total: 3.55s	remaining: 3.27s
156:	learn: 9.8246060	total: 3.57s	remaining: 3.25s
157:	learn: 9.7894878	total: 3.59s	remaining: 3.23s
158:	learn: 9.7484967	total: 3.62s	remaining: 3.21s
159:	learn: 9.7248391	total: 3.64s	remaining: 3.19s
160:	learn: 9.7014264	total: 3.66s	remaining: 3.16s
161:	learn: 9.6583834	total: 3.68s	remaining: 3.14s
162:	learn: 9.6144299	total: 3.71s	remaining: 3.12s
163:	learn: 9.5794995	total: 3.74s	remaining: 3.1s
164:	learn: 9.5550633	total: 3.77s	remaining: 3.08s
165:	learn: 9.5026632	total: 3.79s	remaining: 3.06s
166:	learn: 9.4633969	total: 3.81s	remaining: 3.04s
167:	learn: 9.4104818	total: 3.83s	remaining: 3.01s
168:	learn: 9.3845831	total: 3.86s	remaining: 2.99s
169:	learn: 9.3337722	total: 3.88s	remaining: 2.96s
170:	learn: 9.2837197	total: 3.9s	remaining: 2.94s
171:	learn: 9.2466766	total: 3.92s	remaining: 2.92s
172:	learn: 9.2085127	total: 3.95s	remaining: 2.9s
173:	learn: 9.1694480	total: 3.97s	remaining: 2.88s
174:	learn: 9.1448907	total: 4s	remaining: 2.85s
175:	learn: 9.1013106	total: 4.02s	remaining: 2.83s
176:	learn: 9.0696815	total: 4.04s	remaining: 2.81s
177:	learn: 9.0279616	total: 4.06s	remaining: 2.79s
178:	learn: 9.0008978	total: 4.09s	remaining: 2.76s
179:	learn: 8.9449905	total: 4.11s	remaining: 2.74s
180:	learn: 8.9263735	total: 4.13s	remaining: 2.71s
181:	learn: 8.9082117	total: 4.15s	remaining: 2.69s
182:	learn: 8.8590211	total: 4.18s	remaining: 2.67s
183:	learn: 8.8398014	total: 4.21s	remaining: 2.65s
184:	learn: 8.7991374	total: 4.23s	remaining: 2.63s
185:	learn: 8.7574091	total: 4.25s	remaining: 2.6s
186:	learn: 8.7075149	total: 4.27s	remaining: 2.58s
187:	learn: 8.6651276	total: 4.29s	remaining: 2.56s
188:	learn: 8.6299124	total: 4.31s	remaining: 2.53s
189:	learn: 8.6039208	total: 4.34s	remaining: 2.51s
190:	learn: 8.5623097	total: 4.36s	remaining: 2.49s
191:	learn: 8.5109100	total: 4.39s	remaining: 2.47s
192:	learn: 8.4793653	total: 4.41s	remaining: 2.45s
193:	learn: 8.4481462	total: 4.43s	remaining: 2.42s
194:	learn: 8.4315766	total: 4.46s	remaining: 2.4s
195:	learn: 8.3834417	total: 4.48s	remaining: 2.38s
196:	learn: 8.3680774	total: 4.5s	remaining: 2.35s
197:	learn: 8.3496623	total: 4.52s	remaining: 2.33s
198:	learn: 8.3148580	total: 4.54s	remaining: 2.31s
199:	learn: 8.3052914	total: 4.56s	remaining: 2.28s
200:	learn: 8.2594410	total: 4.59s	remaining: 2.26s
201:	learn: 8.2470590	total: 4.61s	remaining: 2.24s
202:	learn: 8.2316760	total: 4.63s	remaining: 2.21s
203:	learn: 8.2041569	total: 4.65s	remaining: 2.19s
204:	learn: 8.1708835	total: 4.67s	remaining: 2.17s
205:	learn: 8.1301413	total: 4.69s	remaining: 2.14s
206:	learn: 8.0986826	total: 4.72s	remaining: 2.12s
207:	learn: 8.0741059	total: 4.74s	remaining: 2.1s
208:	learn: 8.0244528	total: 4.76s	remaining: 2.07s
209:	learn: 7.9989744	total: 4.78s	remaining: 2.05s
210:	learn: 7.9696573	total: 4.81s	remaining: 2.03s
211:	learn: 7.9396203	total: 4.83s	remaining: 2.01s
212:	learn: 7.9111124	total: 4.86s	remaining: 1.98s
213:	learn: 7.9007758	total: 4.88s	remaining: 1.96s
214:	learn: 7.8856958	total: 4.9s	remaining: 1.94s
215:	learn: 7.8685173	total: 4.92s	remaining: 1.92s
216:	learn: 7.8488503	total: 4.95s	remaining: 1.89s
217:	learn: 7.8127011	total: 4.97s	remaining: 1.87s
218:	learn: 7.7610464	total: 4.99s	remaining: 1.84s
219:	learn: 7.7371633	total: 5.02s	remaining: 1.82s
220:	learn: 7.7075772	total: 5.04s	remaining: 1.8s
221:	learn: 7.6862440	total: 5.06s	remaining: 1.78s
222:	learn: 7.6387389	total: 5.08s	remaining: 1.75s
223:	learn: 7.6039931	total: 5.1s	remaining: 1.73s
224:	learn: 7.5780873	total: 5.12s	remaining: 1.71s
225:	learn: 7.5366573	total: 5.14s	remaining: 1.68s
226:	learn: 7.5117065	total: 5.16s	remaining: 1.66s
227:	learn: 7.4849508	total: 5.18s	remaining: 1.64s
228:	learn: 7.4536731	total: 5.21s	remaining: 1.61s
229:	learn: 7.4238760	total: 5.24s	remaining: 1.59s
230:	learn: 7.4054602	total: 5.26s	remaining: 1.57s
231:	learn: 7.3841419	total: 5.28s	remaining: 1.55s
232:	learn: 7.3712995	total: 5.3s	remaining: 1.52s
233:	learn: 7.3403269	total: 5.33s	remaining: 1.5s
234:	learn: 7.3293521	total: 5.35s	remaining: 1.48s
235:	learn: 7.2977701	total: 5.37s	remaining: 1.46s
236:	learn: 7.2879483	total: 5.39s	remaining: 1.43s
237:	learn: 7.2651195	total: 5.41s	remaining: 1.41s
238:	learn: 7.2349887	total: 5.45s	remaining: 1.39s
239:	learn: 7.1998166	total: 5.48s	remaining: 1.37s
240:	learn: 7.1916439	total: 5.5s	remaining: 1.35s
241:	learn: 7.1651373	total: 5.52s	remaining: 1.32s
242:	learn: 7.1381913	total: 5.55s	remaining: 1.3s
243:	learn: 7.1196857	total: 5.57s	remaining: 1.28s
244:	learn: 7.1129330	total: 5.59s	remaining: 1.25s
245:	learn: 7.0917288	total: 5.62s	remaining: 1.23s
246:	learn: 7.0643221	total: 5.65s	remaining: 1.21s
247:	learn: 7.0355381	total: 5.68s	remaining: 1.19s
248:	learn: 7.0175711	total: 5.7s	remaining: 1.17s
249:	learn: 6.9969066	total: 5.73s	remaining: 1.15s
250:	learn: 6.9647213	total: 5.76s	remaining: 1.12s
251:	learn: 6.9543141	total: 5.79s	remaining: 1.1s
252:	learn: 6.9265098	total: 5.81s	remaining: 1.08s
253:	learn: 6.9022725	total: 5.83s	remaining: 1.06s
254:	learn: 6.8497254	total: 5.86s	remaining: 1.03s
255:	learn: 6.8285154	total: 5.89s	remaining: 1.01s
256:	learn: 6.8011995	total: 5.91s	remaining: 989ms
257:	learn: 6.7933719	total: 5.93s	remaining: 966ms
258:	learn: 6.7690265	total: 5.96s	remaining: 943ms
259:	learn: 6.7470688	total: 5.98s	remaining: 920ms
260:	learn: 6.7282782	total: 6.01s	remaining: 898ms
261:	learn: 6.6980892	total: 6.03s	remaining: 875ms
262:	learn: 6.6788044	total: 6.06s	remaining: 852ms
263:	learn: 6.6507208	total: 6.09s	remaining: 831ms
264:	learn: 6.6299738	total: 6.12s	remaining: 808ms
265:	learn: 6.6146145	total: 6.14s	remaining: 785ms
266:	learn: 6.5960711	total: 6.17s	remaining: 762ms
267:	learn: 6.5601064	total: 6.19s	remaining: 739ms
268:	learn: 6.5439209	total: 6.22s	remaining: 716ms
269:	learn: 6.5302107	total: 6.24s	remaining: 693ms
270:	learn: 6.5075739	total: 6.27s	remaining: 671ms
271:	learn: 6.4875851	total: 6.3s	remaining: 649ms
272:	learn: 6.4779171	total: 6.33s	remaining: 626ms
273:	learn: 6.4677739	total: 6.36s	remaining: 603ms
274:	learn: 6.4375131	total: 6.38s	remaining: 580ms
275:	learn: 6.4223197	total: 6.4s	remaining: 557ms
276:	learn: 6.4163633	total: 6.43s	remaining: 534ms
277:	learn: 6.4084438	total: 6.45s	remaining: 511ms
278:	learn: 6.3795757	total: 6.47s	remaining: 487ms
279:	learn: 6.3670166	total: 6.51s	remaining: 465ms
280:	learn: 6.3426010	total: 6.54s	remaining: 443ms
281:	learn: 6.3363177	total: 6.57s	remaining: 419ms
282:	learn: 6.3138385	total: 6.59s	remaining: 396ms
283:	learn: 6.2894060	total: 6.62s	remaining: 373ms
284:	learn: 6.2767007	total: 6.65s	remaining: 350ms
285:	learn: 6.2607815	total: 6.67s	remaining: 327ms
286:	learn: 6.2368751	total: 6.7s	remaining: 303ms
287:	learn: 6.2218151	total: 6.73s	remaining: 280ms
288:	learn: 6.2147193	total: 6.75s	remaining: 257ms
289:	learn: 6.1817002	total: 6.78s	remaining: 234ms
290:	learn: 6.1531900	total: 6.81s	remaining: 211ms
291:	learn: 6.1438157	total: 6.83s	remaining: 187ms
292:	learn: 6.1311550	total: 6.85s	remaining: 164ms
293:	learn: 6.1171744	total: 6.88s	remaining: 140ms
294:	learn: 6.1079932	total: 6.9s	remaining: 117ms
295:	learn: 6.0989063	total: 6.93s	remaining: 93.6ms
296:	learn: 6.0740401	total: 6.96s	remaining: 70.3ms
297:	learn: 6.0685711	total: 6.99s	remaining: 46.9ms
298:	learn: 6.0601135	total: 7.01s	remaining: 23.5ms
299:	learn: 6.0486579	total: 7.04s	remaining: 0us
0:	learn: 43.1728564	total: 30.4ms	remaining: 9.1s
1:	learn: 42.4479145	total: 56.9ms	remaining: 8.48s
2:	learn: 41.7618107	total: 79.9ms	remaining: 7.91s
3:	learn: 40.9535516	total: 101ms	remaining: 7.44s
4:	learn: 40.0184714	total: 122ms	remaining: 7.2s
5:	learn: 39.3975364	total: 144ms	remaining: 7.06s
6:	learn: 38.5285936	total: 166ms	remaining: 6.94s
7:	learn: 37.7229272	total: 189ms	remaining: 6.89s
8:	learn: 37.0918758	total: 210ms	remaining: 6.78s
9:	learn: 36.3564673	total: 231ms	remaining: 6.71s
10:	learn: 35.6811958	total: 254ms	remaining: 6.66s
11:	learn: 35.0050014	total: 277ms	remaining: 6.64s
12:	learn: 34.2960554	total: 307ms	remaining: 6.78s
13:	learn: 33.5236859	total: 334ms	remaining: 6.83s
14:	learn: 32.9402676	total: 337ms	remaining: 6.4s
15:	learn: 32.4523166	total: 362ms	remaining: 6.43s
16:	learn: 31.8840373	total: 386ms	remaining: 6.42s
17:	learn: 31.3075678	total: 409ms	remaining: 6.42s
18:	learn: 30.8876354	total: 430ms	remaining: 6.36s
19:	learn: 30.3498359	total: 452ms	remaining: 6.32s
20:	learn: 29.9235491	total: 474ms	remaining: 6.29s
21:	learn: 29.3980753	total: 496ms	remaining: 6.26s
22:	learn: 28.8855360	total: 518ms	remaining: 6.24s
23:	learn: 28.4464905	total: 546ms	remaining: 6.28s
24:	learn: 28.0340761	total: 559ms	remaining: 6.14s
25:	learn: 27.6857355	total: 581ms	remaining: 6.12s
26:	learn: 27.3334889	total: 602ms	remaining: 6.08s
27:	learn: 26.8330294	total: 624ms	remaining: 6.06s
28:	learn: 26.4299332	total: 644ms	remaining: 6.01s
29:	learn: 26.0045444	total: 665ms	remaining: 5.98s
30:	learn: 25.6006582	total: 685ms	remaining: 5.94s
31:	learn: 25.2312981	total: 707ms	remaining: 5.92s
32:	learn: 25.0083092	total: 738ms	remaining: 5.97s
33:	learn: 24.6611713	total: 763ms	remaining: 5.97s
34:	learn: 24.4598997	total: 786ms	remaining: 5.95s
35:	learn: 24.2341422	total: 809ms	remaining: 5.93s
36:	learn: 23.9210171	total: 834ms	remaining: 5.92s
37:	learn: 23.5299198	total: 856ms	remaining: 5.9s
38:	learn: 23.1652368	total: 882ms	remaining: 5.9s
39:	learn: 22.8941103	total: 902ms	remaining: 5.86s
40:	learn: 22.7084206	total: 923ms	remaining: 5.83s
41:	learn: 22.4654978	total: 946ms	remaining: 5.81s
42:	learn: 22.2302580	total: 980ms	remaining: 5.86s
43:	learn: 21.9408933	total: 1s	remaining: 5.84s
44:	learn: 21.6779272	total: 1.02s	remaining: 5.81s
45:	learn: 21.5124883	total: 1.05s	remaining: 5.79s
46:	learn: 21.3803106	total: 1.07s	remaining: 5.76s
47:	learn: 21.2298916	total: 1.09s	remaining: 5.73s
48:	learn: 21.0336901	total: 1.11s	remaining: 5.7s
49:	learn: 20.7943434	total: 1.14s	remaining: 5.68s
50:	learn: 20.5676348	total: 1.16s	remaining: 5.66s
51:	learn: 20.3427273	total: 1.17s	remaining: 5.59s
52:	learn: 20.1024296	total: 1.2s	remaining: 5.61s
53:	learn: 19.9885265	total: 1.23s	remaining: 5.59s
54:	learn: 19.8413355	total: 1.25s	remaining: 5.57s
55:	learn: 19.7099619	total: 1.27s	remaining: 5.55s
56:	learn: 19.5311747	total: 1.3s	remaining: 5.53s
57:	learn: 19.3665040	total: 1.32s	remaining: 5.5s
58:	learn: 19.2281415	total: 1.34s	remaining: 5.48s
59:	learn: 19.1106495	total: 1.36s	remaining: 5.46s
60:	learn: 18.9927263	total: 1.39s	remaining: 5.43s
61:	learn: 18.7654626	total: 1.42s	remaining: 5.45s
62:	learn: 18.6108661	total: 1.44s	remaining: 5.43s
63:	learn: 18.4817806	total: 1.46s	remaining: 5.4s
64:	learn: 18.3632402	total: 1.49s	remaining: 5.37s
65:	learn: 18.2653457	total: 1.51s	remaining: 5.35s
66:	learn: 18.1378819	total: 1.53s	remaining: 5.31s
67:	learn: 18.0459629	total: 1.55s	remaining: 5.29s
68:	learn: 17.9001044	total: 1.57s	remaining: 5.25s
69:	learn: 17.7073203	total: 1.59s	remaining: 5.23s
70:	learn: 17.5276628	total: 1.62s	remaining: 5.23s
71:	learn: 17.4386086	total: 1.65s	remaining: 5.22s
72:	learn: 17.2890096	total: 1.67s	remaining: 5.2s
73:	learn: 17.1904631	total: 1.7s	remaining: 5.18s
74:	learn: 17.0955197	total: 1.72s	remaining: 5.16s
75:	learn: 16.9924303	total: 1.74s	remaining: 5.13s
76:	learn: 16.8972682	total: 1.76s	remaining: 5.11s
77:	learn: 16.7957864	total: 1.78s	remaining: 5.08s
78:	learn: 16.6405248	total: 1.81s	remaining: 5.06s
79:	learn: 16.5463991	total: 1.84s	remaining: 5.05s
80:	learn: 16.4622871	total: 1.86s	remaining: 5.03s
81:	learn: 16.3624916	total: 1.88s	remaining: 5s
82:	learn: 16.2073706	total: 1.9s	remaining: 4.97s
83:	learn: 16.0716875	total: 1.92s	remaining: 4.95s
84:	learn: 15.9336151	total: 1.95s	remaining: 4.92s
85:	learn: 15.8451501	total: 1.97s	remaining: 4.89s
86:	learn: 15.7200917	total: 1.99s	remaining: 4.87s
87:	learn: 15.6236971	total: 2.01s	remaining: 4.84s
88:	learn: 15.5479129	total: 2.04s	remaining: 4.84s
89:	learn: 15.4975079	total: 2.07s	remaining: 4.82s
90:	learn: 15.4083433	total: 2.09s	remaining: 4.8s
91:	learn: 15.3169327	total: 2.11s	remaining: 4.77s
92:	learn: 15.2207992	total: 2.13s	remaining: 4.75s
93:	learn: 15.1430327	total: 2.16s	remaining: 4.72s
94:	learn: 15.0665711	total: 2.18s	remaining: 4.7s
95:	learn: 14.9903534	total: 2.2s	remaining: 4.68s
96:	learn: 14.9054346	total: 2.22s	remaining: 4.65s
97:	learn: 14.7940457	total: 2.25s	remaining: 4.64s
98:	learn: 14.7008915	total: 2.27s	remaining: 4.61s
99:	learn: 14.6142673	total: 2.29s	remaining: 4.59s
100:	learn: 14.5337996	total: 2.31s	remaining: 4.56s
101:	learn: 14.4571728	total: 2.34s	remaining: 4.54s
102:	learn: 14.3898956	total: 2.36s	remaining: 4.51s
103:	learn: 14.3189412	total: 2.38s	remaining: 4.48s
104:	learn: 14.2525935	total: 2.4s	remaining: 4.46s
105:	learn: 14.1772436	total: 2.42s	remaining: 4.43s
106:	learn: 14.1059305	total: 2.46s	remaining: 4.43s
107:	learn: 14.0232782	total: 2.48s	remaining: 4.41s
108:	learn: 13.9368806	total: 2.5s	remaining: 4.39s
109:	learn: 13.8491229	total: 2.53s	remaining: 4.37s
110:	learn: 13.7685490	total: 2.55s	remaining: 4.34s
111:	learn: 13.6836750	total: 2.57s	remaining: 4.32s
112:	learn: 13.6202897	total: 2.59s	remaining: 4.29s
113:	learn: 13.5688904	total: 2.61s	remaining: 4.26s
114:	learn: 13.5145238	total: 2.64s	remaining: 4.25s
115:	learn: 13.4247466	total: 2.67s	remaining: 4.23s
116:	learn: 13.3307114	total: 2.69s	remaining: 4.2s
117:	learn: 13.2545184	total: 2.71s	remaining: 4.17s
118:	learn: 13.1996548	total: 2.73s	remaining: 4.15s
119:	learn: 13.1205307	total: 2.75s	remaining: 4.12s
120:	learn: 13.0479027	total: 2.77s	remaining: 4.09s
121:	learn: 12.9970441	total: 2.79s	remaining: 4.07s
122:	learn: 12.9295209	total: 2.81s	remaining: 4.04s
123:	learn: 12.8673524	total: 2.83s	remaining: 4.02s
124:	learn: 12.7786245	total: 2.85s	remaining: 3.99s
125:	learn: 12.7348929	total: 2.88s	remaining: 3.97s
126:	learn: 12.6858554	total: 2.91s	remaining: 3.96s
127:	learn: 12.6189787	total: 2.93s	remaining: 3.94s
128:	learn: 12.5864827	total: 2.95s	remaining: 3.91s
129:	learn: 12.5478404	total: 2.97s	remaining: 3.89s
130:	learn: 12.5017820	total: 3s	remaining: 3.86s
131:	learn: 12.4491462	total: 3.02s	remaining: 3.84s
132:	learn: 12.3822056	total: 3.04s	remaining: 3.81s
133:	learn: 12.3098651	total: 3.06s	remaining: 3.79s
134:	learn: 12.2531700	total: 3.08s	remaining: 3.77s
135:	learn: 12.2119331	total: 3.11s	remaining: 3.75s
136:	learn: 12.1571278	total: 3.13s	remaining: 3.73s
137:	learn: 12.0976094	total: 3.15s	remaining: 3.7s
138:	learn: 12.0025352	total: 3.17s	remaining: 3.67s
139:	learn: 11.9019074	total: 3.19s	remaining: 3.65s
140:	learn: 11.7854852	total: 3.21s	remaining: 3.62s
141:	learn: 11.7104078	total: 3.23s	remaining: 3.6s
142:	learn: 11.6741366	total: 3.25s	remaining: 3.57s
143:	learn: 11.6077195	total: 3.27s	remaining: 3.55s
144:	learn: 11.5496695	total: 3.3s	remaining: 3.52s
145:	learn: 11.4568800	total: 3.33s	remaining: 3.51s
146:	learn: 11.4368150	total: 3.35s	remaining: 3.49s
147:	learn: 11.3955813	total: 3.38s	remaining: 3.47s
148:	learn: 11.3565385	total: 3.4s	remaining: 3.44s
149:	learn: 11.3020845	total: 3.42s	remaining: 3.42s
150:	learn: 11.2130390	total: 3.44s	remaining: 3.4s
151:	learn: 11.1401745	total: 3.46s	remaining: 3.37s
152:	learn: 11.1048934	total: 3.49s	remaining: 3.35s
153:	learn: 11.0709933	total: 3.51s	remaining: 3.33s
154:	learn: 11.0212519	total: 3.54s	remaining: 3.31s
155:	learn: 10.9258762	total: 3.56s	remaining: 3.28s
156:	learn: 10.8429657	total: 3.58s	remaining: 3.26s
157:	learn: 10.8061370	total: 3.6s	remaining: 3.23s
158:	learn: 10.7571211	total: 3.63s	remaining: 3.22s
159:	learn: 10.6698987	total: 3.65s	remaining: 3.19s
160:	learn: 10.6228772	total: 3.67s	remaining: 3.17s
161:	learn: 10.5368796	total: 3.69s	remaining: 3.15s
162:	learn: 10.4841450	total: 3.72s	remaining: 3.13s
163:	learn: 10.4012317	total: 3.75s	remaining: 3.11s
164:	learn: 10.3588701	total: 3.78s	remaining: 3.09s
165:	learn: 10.2816720	total: 3.8s	remaining: 3.07s
166:	learn: 10.2259651	total: 3.83s	remaining: 3.05s
167:	learn: 10.1792554	total: 3.85s	remaining: 3.02s
168:	learn: 10.1604671	total: 3.87s	remaining: 3s
169:	learn: 10.1318986	total: 3.9s	remaining: 2.98s
170:	learn: 10.0948065	total: 3.92s	remaining: 2.95s
171:	learn: 10.0521191	total: 3.94s	remaining: 2.93s
172:	learn: 9.9946157	total: 3.96s	remaining: 2.91s
173:	learn: 9.9313678	total: 3.99s	remaining: 2.89s
174:	learn: 9.9156434	total: 4.01s	remaining: 2.87s
175:	learn: 9.8749788	total: 4.04s	remaining: 2.84s
176:	learn: 9.8485079	total: 4.05s	remaining: 2.82s
177:	learn: 9.8134329	total: 4.08s	remaining: 2.79s
178:	learn: 9.7880107	total: 4.1s	remaining: 2.77s
179:	learn: 9.7587885	total: 4.12s	remaining: 2.75s
180:	learn: 9.6939238	total: 4.14s	remaining: 2.72s
181:	learn: 9.6447939	total: 4.16s	remaining: 2.7s
182:	learn: 9.6136022	total: 4.19s	remaining: 2.68s
183:	learn: 9.5885675	total: 4.22s	remaining: 2.66s
184:	learn: 9.5271670	total: 4.24s	remaining: 2.64s
185:	learn: 9.4616988	total: 4.27s	remaining: 2.62s
186:	learn: 9.4287637	total: 4.29s	remaining: 2.59s
187:	learn: 9.3948177	total: 4.31s	remaining: 2.57s
188:	learn: 9.3767726	total: 4.33s	remaining: 2.54s
189:	learn: 9.3473555	total: 4.35s	remaining: 2.52s
190:	learn: 9.3099572	total: 4.38s	remaining: 2.5s
191:	learn: 9.2799642	total: 4.41s	remaining: 2.48s
192:	learn: 9.2505323	total: 4.43s	remaining: 2.46s
193:	learn: 9.2173510	total: 4.45s	remaining: 2.43s
194:	learn: 9.1746531	total: 4.47s	remaining: 2.41s
195:	learn: 9.1354668	total: 4.5s	remaining: 2.38s
196:	learn: 9.0983547	total: 4.52s	remaining: 2.36s
197:	learn: 9.0615111	total: 4.54s	remaining: 2.34s
198:	learn: 9.0239666	total: 4.56s	remaining: 2.31s
199:	learn: 8.9906083	total: 4.58s	remaining: 2.29s
200:	learn: 8.9458694	total: 4.61s	remaining: 2.27s
201:	learn: 8.9040783	total: 4.64s	remaining: 2.25s
202:	learn: 8.8495189	total: 4.66s	remaining: 2.23s
203:	learn: 8.8243403	total: 4.69s	remaining: 2.21s
204:	learn: 8.7930532	total: 4.71s	remaining: 2.18s
205:	learn: 8.7587095	total: 4.74s	remaining: 2.16s
206:	learn: 8.7177051	total: 4.76s	remaining: 2.14s
207:	learn: 8.6879684	total: 4.78s	remaining: 2.11s
208:	learn: 8.6681622	total: 4.8s	remaining: 2.09s
209:	learn: 8.6299257	total: 4.82s	remaining: 2.07s
210:	learn: 8.5728096	total: 4.85s	remaining: 2.05s
211:	learn: 8.5456345	total: 4.88s	remaining: 2.02s
212:	learn: 8.5000514	total: 4.9s	remaining: 2s
213:	learn: 8.4814393	total: 4.92s	remaining: 1.98s
214:	learn: 8.4512752	total: 4.94s	remaining: 1.95s
215:	learn: 8.4144221	total: 4.96s	remaining: 1.93s
216:	learn: 8.3817886	total: 4.99s	remaining: 1.91s
217:	learn: 8.3392143	total: 5.01s	remaining: 1.88s
218:	learn: 8.3102751	total: 5.03s	remaining: 1.86s
219:	learn: 8.2963441	total: 5.05s	remaining: 1.84s
220:	learn: 8.2666907	total: 5.09s	remaining: 1.82s
221:	learn: 8.2470955	total: 5.11s	remaining: 1.8s
222:	learn: 8.2352635	total: 5.14s	remaining: 1.77s
223:	learn: 8.2046605	total: 5.16s	remaining: 1.75s
224:	learn: 8.1746742	total: 5.18s	remaining: 1.73s
225:	learn: 8.1466704	total: 5.2s	remaining: 1.7s
226:	learn: 8.1113762	total: 5.22s	remaining: 1.68s
227:	learn: 8.0842520	total: 5.25s	remaining: 1.66s
228:	learn: 8.0619499	total: 5.27s	remaining: 1.63s
229:	learn: 8.0391421	total: 5.3s	remaining: 1.61s
230:	learn: 8.0082460	total: 5.32s	remaining: 1.59s
231:	learn: 7.9894454	total: 5.34s	remaining: 1.57s
232:	learn: 7.9567828	total: 5.37s	remaining: 1.54s
233:	learn: 7.9394710	total: 5.39s	remaining: 1.52s
234:	learn: 7.9171371	total: 5.41s	remaining: 1.5s
235:	learn: 7.9062197	total: 5.43s	remaining: 1.47s
236:	learn: 7.8803505	total: 5.45s	remaining: 1.45s
237:	learn: 7.8508624	total: 5.47s	remaining: 1.43s
238:	learn: 7.8107215	total: 5.5s	remaining: 1.41s
239:	learn: 7.7758588	total: 5.53s	remaining: 1.38s
240:	learn: 7.7403137	total: 5.55s	remaining: 1.36s
241:	learn: 7.7146933	total: 5.58s	remaining: 1.34s
242:	learn: 7.6876053	total: 5.6s	remaining: 1.31s
243:	learn: 7.6631332	total: 5.62s	remaining: 1.29s
244:	learn: 7.6340717	total: 5.65s	remaining: 1.27s
245:	learn: 7.5835394	total: 5.67s	remaining: 1.24s
246:	learn: 7.5572808	total: 5.7s	remaining: 1.22s
247:	learn: 7.5477260	total: 5.72s	remaining: 1.2s
248:	learn: 7.5230961	total: 5.74s	remaining: 1.18s
249:	learn: 7.4926278	total: 5.76s	remaining: 1.15s
250:	learn: 7.4663059	total: 5.79s	remaining: 1.13s
251:	learn: 7.4439231	total: 5.81s	remaining: 1.11s
252:	learn: 7.4147104	total: 5.83s	remaining: 1.08s
253:	learn: 7.3910399	total: 5.85s	remaining: 1.06s
254:	learn: 7.3694309	total: 5.87s	remaining: 1.03s
255:	learn: 7.3357705	total: 5.89s	remaining: 1.01s
256:	learn: 7.3063747	total: 5.92s	remaining: 991ms
257:	learn: 7.2838572	total: 5.95s	remaining: 968ms
258:	learn: 7.2589764	total: 5.97s	remaining: 945ms
259:	learn: 7.2389253	total: 5.99s	remaining: 922ms
260:	learn: 7.2138913	total: 6.02s	remaining: 899ms
261:	learn: 7.1886917	total: 6.04s	remaining: 876ms
262:	learn: 7.1772908	total: 6.06s	remaining: 853ms
263:	learn: 7.1578726	total: 6.08s	remaining: 829ms
264:	learn: 7.1353133	total: 6.1s	remaining: 806ms
265:	learn: 7.1102477	total: 6.13s	remaining: 784ms
266:	learn: 7.0828702	total: 6.16s	remaining: 761ms
267:	learn: 7.0597237	total: 6.18s	remaining: 737ms
268:	learn: 7.0365630	total: 6.2s	remaining: 714ms
269:	learn: 7.0146208	total: 6.22s	remaining: 691ms
270:	learn: 6.9967242	total: 6.24s	remaining: 667ms
271:	learn: 6.9790909	total: 6.26s	remaining: 644ms
272:	learn: 6.9693113	total: 6.28s	remaining: 621ms
273:	learn: 6.9594319	total: 6.3s	remaining: 598ms
274:	learn: 6.9391890	total: 6.33s	remaining: 575ms
275:	learn: 6.9254505	total: 6.35s	remaining: 552ms
276:	learn: 6.9024357	total: 6.37s	remaining: 529ms
277:	learn: 6.8754442	total: 6.4s	remaining: 506ms
278:	learn: 6.8502029	total: 6.42s	remaining: 483ms
279:	learn: 6.8142453	total: 6.44s	remaining: 460ms
280:	learn: 6.7927649	total: 6.46s	remaining: 437ms
281:	learn: 6.7640814	total: 6.48s	remaining: 414ms
282:	learn: 6.7463937	total: 6.5s	remaining: 391ms
283:	learn: 6.7403516	total: 6.52s	remaining: 368ms
284:	learn: 6.7206013	total: 6.55s	remaining: 345ms
285:	learn: 6.6875183	total: 6.58s	remaining: 322ms
286:	learn: 6.6609083	total: 6.6s	remaining: 299ms
287:	learn: 6.6545230	total: 6.62s	remaining: 276ms
288:	learn: 6.6358351	total: 6.64s	remaining: 253ms
289:	learn: 6.6175009	total: 6.67s	remaining: 230ms
290:	learn: 6.6067729	total: 6.69s	remaining: 207ms
291:	learn: 6.5970320	total: 6.71s	remaining: 184ms
292:	learn: 6.5837751	total: 6.73s	remaining: 161ms
293:	learn: 6.5625028	total: 6.75s	remaining: 138ms
294:	learn: 6.5530621	total: 6.78s	remaining: 115ms
295:	learn: 6.5478680	total: 6.81s	remaining: 92ms
296:	learn: 6.5241879	total: 6.83s	remaining: 69ms
297:	learn: 6.5118159	total: 6.85s	remaining: 46ms
298:	learn: 6.4919631	total: 6.88s	remaining: 23ms
299:	learn: 6.4739124	total: 6.89s	remaining: 0us
0:	learn: 46.4788614	total: 2.72ms	remaining: 815ms
1:	learn: 45.7710608	total: 22.8ms	remaining: 3.4s
2:	learn: 45.1565849	total: 44.6ms	remaining: 4.41s
3:	learn: 44.4030902	total: 64.6ms	remaining: 4.78s
4:	learn: 43.7256714	total: 86ms	remaining: 5.07s
5:	learn: 43.0846764	total: 108ms	remaining: 5.31s
6:	learn: 42.3050249	total: 128ms	remaining: 5.37s
7:	learn: 41.5523343	total: 149ms	remaining: 5.42s
8:	learn: 40.7548041	total: 169ms	remaining: 5.47s
9:	learn: 39.8798087	total: 192ms	remaining: 5.56s
10:	learn: 39.3807548	total: 214ms	remaining: 5.62s
11:	learn: 38.6353297	total: 237ms	remaining: 5.7s
12:	learn: 38.0252968	total: 262ms	remaining: 5.77s
13:	learn: 37.4584814	total: 294ms	remaining: 6s
14:	learn: 36.9766267	total: 318ms	remaining: 6.04s
15:	learn: 36.4351844	total: 343ms	remaining: 6.08s
16:	learn: 35.8711532	total: 365ms	remaining: 6.08s
17:	learn: 35.5046170	total: 389ms	remaining: 6.09s
18:	learn: 34.9410561	total: 410ms	remaining: 6.07s
19:	learn: 34.5414688	total: 433ms	remaining: 6.06s
20:	learn: 34.1994877	total: 457ms	remaining: 6.07s
21:	learn: 33.8105873	total: 481ms	remaining: 6.08s
22:	learn: 33.2767379	total: 508ms	remaining: 6.12s
23:	learn: 32.9293305	total: 531ms	remaining: 6.1s
24:	learn: 32.5563171	total: 554ms	remaining: 6.09s
25:	learn: 32.0312705	total: 575ms	remaining: 6.06s
26:	learn: 31.5549663	total: 597ms	remaining: 6.04s
27:	learn: 31.2152408	total: 620ms	remaining: 6.02s
28:	learn: 30.8335992	total: 645ms	remaining: 6.02s
29:	learn: 30.4437650	total: 670ms	remaining: 6.03s
30:	learn: 30.1139865	total: 694ms	remaining: 6.03s
31:	learn: 29.6348886	total: 726ms	remaining: 6.08s
32:	learn: 29.4374411	total: 750ms	remaining: 6.07s
33:	learn: 29.1774552	total: 774ms	remaining: 6.05s
34:	learn: 28.9121068	total: 798ms	remaining: 6.04s
35:	learn: 28.6291033	total: 820ms	remaining: 6.02s
36:	learn: 28.3365166	total: 843ms	remaining: 5.99s
37:	learn: 28.0654213	total: 864ms	remaining: 5.96s
38:	learn: 27.7120990	total: 888ms	remaining: 5.94s
39:	learn: 27.4700227	total: 920ms	remaining: 5.98s
40:	learn: 27.2052722	total: 944ms	remaining: 5.96s
41:	learn: 26.9401129	total: 967ms	remaining: 5.94s
42:	learn: 26.6081493	total: 990ms	remaining: 5.92s
43:	learn: 26.3847138	total: 1.01s	remaining: 5.89s
44:	learn: 26.2201660	total: 1.03s	remaining: 5.86s
45:	learn: 26.0513425	total: 1.06s	remaining: 5.84s
46:	learn: 25.8609437	total: 1.08s	remaining: 5.81s
47:	learn: 25.6040252	total: 1.1s	remaining: 5.78s
48:	learn: 25.4235507	total: 1.12s	remaining: 5.76s
49:	learn: 25.2896788	total: 1.16s	remaining: 5.78s
50:	learn: 25.1208197	total: 1.18s	remaining: 5.76s
51:	learn: 24.8660258	total: 1.18s	remaining: 5.65s
52:	learn: 24.6165133	total: 1.21s	remaining: 5.63s
53:	learn: 24.3828983	total: 1.23s	remaining: 5.61s
54:	learn: 24.1841624	total: 1.25s	remaining: 5.59s
55:	learn: 24.0006316	total: 1.28s	remaining: 5.57s
56:	learn: 23.7695363	total: 1.3s	remaining: 5.54s
57:	learn: 23.6284017	total: 1.33s	remaining: 5.54s
58:	learn: 23.4125305	total: 1.35s	remaining: 5.53s
59:	learn: 23.2250456	total: 1.38s	remaining: 5.5s
60:	learn: 23.0467385	total: 1.4s	remaining: 5.48s
61:	learn: 22.7033792	total: 1.42s	remaining: 5.45s
62:	learn: 22.5334580	total: 1.44s	remaining: 5.42s
63:	learn: 22.3638971	total: 1.46s	remaining: 5.4s
64:	learn: 22.1384904	total: 1.49s	remaining: 5.38s
65:	learn: 22.0135698	total: 1.51s	remaining: 5.35s
66:	learn: 21.8734424	total: 1.53s	remaining: 5.34s
67:	learn: 21.7496417	total: 1.56s	remaining: 5.33s
68:	learn: 21.5374284	total: 1.59s	remaining: 5.32s
69:	learn: 21.3371276	total: 1.61s	remaining: 5.3s
70:	learn: 21.0990139	total: 1.64s	remaining: 5.28s
71:	learn: 20.9642590	total: 1.66s	remaining: 5.26s
72:	learn: 20.8049721	total: 1.68s	remaining: 5.23s
73:	learn: 20.7124973	total: 1.71s	remaining: 5.21s
74:	learn: 20.6049930	total: 1.73s	remaining: 5.18s
75:	learn: 20.4963737	total: 1.75s	remaining: 5.16s
76:	learn: 20.3645418	total: 1.78s	remaining: 5.14s
77:	learn: 20.2519924	total: 1.8s	remaining: 5.12s
78:	learn: 20.0505831	total: 1.82s	remaining: 5.09s
79:	learn: 19.9272769	total: 1.84s	remaining: 5.07s
80:	learn: 19.8219589	total: 1.86s	remaining: 5.04s
81:	learn: 19.7098289	total: 1.88s	remaining: 5.01s
82:	learn: 19.4383686	total: 1.91s	remaining: 4.98s
83:	learn: 19.3315372	total: 1.93s	remaining: 4.96s
84:	learn: 19.2144697	total: 1.95s	remaining: 4.94s
85:	learn: 19.0849701	total: 1.98s	remaining: 4.92s
86:	learn: 18.9769215	total: 2.01s	remaining: 4.92s
87:	learn: 18.8581283	total: 2.03s	remaining: 4.9s
88:	learn: 18.7414069	total: 2.06s	remaining: 4.88s
89:	learn: 18.6649642	total: 2.08s	remaining: 4.86s
90:	learn: 18.5127864	total: 2.1s	remaining: 4.83s
91:	learn: 18.3629102	total: 2.13s	remaining: 4.81s
92:	learn: 18.2624941	total: 2.15s	remaining: 4.78s
93:	learn: 18.1645836	total: 2.17s	remaining: 4.75s
94:	learn: 18.0717273	total: 2.19s	remaining: 4.74s
95:	learn: 17.9594520	total: 2.22s	remaining: 4.72s
96:	learn: 17.8692648	total: 2.24s	remaining: 4.69s
97:	learn: 17.7758009	total: 2.26s	remaining: 4.67s
98:	learn: 17.6633350	total: 2.28s	remaining: 4.63s
99:	learn: 17.5393236	total: 2.3s	remaining: 4.61s
100:	learn: 17.4441841	total: 2.32s	remaining: 4.58s
101:	learn: 17.3636497	total: 2.35s	remaining: 4.55s
102:	learn: 17.2836586	total: 2.37s	remaining: 4.53s
103:	learn: 17.1666480	total: 2.39s	remaining: 4.5s
104:	learn: 17.0603123	total: 2.41s	remaining: 4.48s
105:	learn: 16.9701019	total: 2.44s	remaining: 4.47s
106:	learn: 16.8819325	total: 2.47s	remaining: 4.45s
107:	learn: 16.7800721	total: 2.49s	remaining: 4.43s
108:	learn: 16.6575687	total: 2.51s	remaining: 4.4s
109:	learn: 16.5621285	total: 2.54s	remaining: 4.38s
110:	learn: 16.4805668	total: 2.56s	remaining: 4.36s
111:	learn: 16.3664491	total: 2.58s	remaining: 4.33s
112:	learn: 16.2921576	total: 2.6s	remaining: 4.3s
113:	learn: 16.2123714	total: 2.63s	remaining: 4.28s
114:	learn: 16.1305926	total: 2.65s	remaining: 4.27s
115:	learn: 16.0452681	total: 2.68s	remaining: 4.25s
116:	learn: 15.9356767	total: 2.7s	remaining: 4.22s
117:	learn: 15.8492426	total: 2.72s	remaining: 4.19s
118:	learn: 15.7699169	total: 2.74s	remaining: 4.17s
119:	learn: 15.6746719	total: 2.76s	remaining: 4.14s
120:	learn: 15.5370189	total: 2.78s	remaining: 4.12s
121:	learn: 15.4445148	total: 2.81s	remaining: 4.09s
122:	learn: 15.3396325	total: 2.83s	remaining: 4.07s
123:	learn: 15.2450802	total: 2.85s	remaining: 4.04s
124:	learn: 15.1203998	total: 2.88s	remaining: 4.04s
125:	learn: 15.0601453	total: 2.91s	remaining: 4.02s
126:	learn: 14.9882312	total: 2.93s	remaining: 3.99s
127:	learn: 14.9180283	total: 2.96s	remaining: 3.97s
128:	learn: 14.8526915	total: 2.98s	remaining: 3.95s
129:	learn: 14.7657162	total: 3s	remaining: 3.92s
130:	learn: 14.6698595	total: 3.02s	remaining: 3.9s
131:	learn: 14.6346566	total: 3.02s	remaining: 3.85s
132:	learn: 14.5756096	total: 3.05s	remaining: 3.83s
133:	learn: 14.5030739	total: 3.07s	remaining: 3.8s
134:	learn: 14.3943441	total: 3.1s	remaining: 3.79s
135:	learn: 14.2404537	total: 3.12s	remaining: 3.76s
136:	learn: 14.1761228	total: 3.14s	remaining: 3.74s
137:	learn: 14.1077833	total: 3.16s	remaining: 3.71s
138:	learn: 14.0413537	total: 3.18s	remaining: 3.69s
139:	learn: 13.9757428	total: 3.2s	remaining: 3.66s
140:	learn: 13.8921768	total: 3.23s	remaining: 3.64s
141:	learn: 13.8110381	total: 3.25s	remaining: 3.61s
142:	learn: 13.7257676	total: 3.27s	remaining: 3.59s
143:	learn: 13.6518439	total: 3.29s	remaining: 3.56s
144:	learn: 13.4950736	total: 3.32s	remaining: 3.54s
145:	learn: 13.3977428	total: 3.34s	remaining: 3.52s
146:	learn: 13.3368539	total: 3.36s	remaining: 3.5s
147:	learn: 13.2559100	total: 3.39s	remaining: 3.48s
148:	learn: 13.1574001	total: 3.41s	remaining: 3.46s
149:	learn: 13.0006095	total: 3.43s	remaining: 3.43s
150:	learn: 12.9451554	total: 3.45s	remaining: 3.41s
151:	learn: 12.8348904	total: 3.48s	remaining: 3.38s
152:	learn: 12.7505428	total: 3.5s	remaining: 3.36s
153:	learn: 12.6269434	total: 3.52s	remaining: 3.34s
154:	learn: 12.5693272	total: 3.55s	remaining: 3.32s
155:	learn: 12.5049023	total: 3.57s	remaining: 3.29s
156:	learn: 12.4144067	total: 3.59s	remaining: 3.27s
157:	learn: 12.3672108	total: 3.61s	remaining: 3.25s
158:	learn: 12.2988713	total: 3.63s	remaining: 3.22s
159:	learn: 12.2500411	total: 3.66s	remaining: 3.2s
160:	learn: 12.2002550	total: 3.68s	remaining: 3.18s
161:	learn: 12.0921756	total: 3.71s	remaining: 3.16s
162:	learn: 12.0261456	total: 3.73s	remaining: 3.13s
163:	learn: 11.9595478	total: 3.75s	remaining: 3.11s
164:	learn: 11.9040826	total: 3.78s	remaining: 3.1s
165:	learn: 11.8185631	total: 3.81s	remaining: 3.08s
166:	learn: 11.7394422	total: 3.83s	remaining: 3.05s
167:	learn: 11.6639319	total: 3.86s	remaining: 3.03s
168:	learn: 11.6147181	total: 3.89s	remaining: 3.01s
169:	learn: 11.5761586	total: 3.91s	remaining: 2.99s
170:	learn: 11.4910059	total: 3.94s	remaining: 2.97s
171:	learn: 11.4181227	total: 3.96s	remaining: 2.95s
172:	learn: 11.3626035	total: 4s	remaining: 2.93s
173:	learn: 11.2507892	total: 4.02s	remaining: 2.91s
174:	learn: 11.1798403	total: 4.04s	remaining: 2.89s
175:	learn: 11.1190643	total: 4.07s	remaining: 2.86s
176:	learn: 11.0620102	total: 4.09s	remaining: 2.84s
177:	learn: 10.9793884	total: 4.11s	remaining: 2.82s
178:	learn: 10.8968370	total: 4.13s	remaining: 2.79s
179:	learn: 10.8122733	total: 4.16s	remaining: 2.78s
180:	learn: 10.7545856	total: 4.19s	remaining: 2.75s
181:	learn: 10.6836395	total: 4.21s	remaining: 2.73s
182:	learn: 10.6441863	total: 4.24s	remaining: 2.71s
183:	learn: 10.5944997	total: 4.27s	remaining: 2.69s
184:	learn: 10.5161755	total: 4.29s	remaining: 2.67s
185:	learn: 10.4705995	total: 4.32s	remaining: 2.65s
186:	learn: 10.4187076	total: 4.34s	remaining: 2.63s
187:	learn: 10.3683730	total: 4.37s	remaining: 2.6s
188:	learn: 10.3150620	total: 4.39s	remaining: 2.58s
189:	learn: 10.2691155	total: 4.43s	remaining: 2.56s
190:	learn: 10.2272718	total: 4.46s	remaining: 2.54s
191:	learn: 10.1871331	total: 4.48s	remaining: 2.52s
192:	learn: 10.1443128	total: 4.5s	remaining: 2.5s
193:	learn: 10.0668189	total: 4.53s	remaining: 2.47s
194:	learn: 10.0256380	total: 4.55s	remaining: 2.45s
195:	learn: 9.9787956	total: 4.57s	remaining: 2.43s
196:	learn: 9.9322122	total: 4.59s	remaining: 2.4s
197:	learn: 9.8850093	total: 4.62s	remaining: 2.38s
198:	learn: 9.8380140	total: 4.64s	remaining: 2.36s
199:	learn: 9.8106296	total: 4.68s	remaining: 2.34s
200:	learn: 9.7585749	total: 4.71s	remaining: 2.32s
201:	learn: 9.7182879	total: 4.74s	remaining: 2.3s
202:	learn: 9.6821771	total: 4.76s	remaining: 2.27s
203:	learn: 9.6399101	total: 4.78s	remaining: 2.25s
204:	learn: 9.6048849	total: 4.81s	remaining: 2.23s
205:	learn: 9.5638590	total: 4.83s	remaining: 2.21s
206:	learn: 9.5142374	total: 4.86s	remaining: 2.18s
207:	learn: 9.4695144	total: 4.88s	remaining: 2.16s
208:	learn: 9.4331939	total: 4.91s	remaining: 2.14s
209:	learn: 9.3833838	total: 4.95s	remaining: 2.12s
210:	learn: 9.3517645	total: 4.97s	remaining: 2.1s
211:	learn: 9.3163444	total: 4.99s	remaining: 2.07s
212:	learn: 9.2788352	total: 5.01s	remaining: 2.05s
213:	learn: 9.2459289	total: 5.04s	remaining: 2.02s
214:	learn: 9.2104536	total: 5.06s	remaining: 2s
215:	learn: 9.1729420	total: 5.09s	remaining: 1.98s
216:	learn: 9.1364121	total: 5.12s	remaining: 1.96s
217:	learn: 9.0970859	total: 5.15s	remaining: 1.94s
218:	learn: 9.0611146	total: 5.17s	remaining: 1.91s
219:	learn: 9.0276741	total: 5.21s	remaining: 1.89s
220:	learn: 8.9977644	total: 5.23s	remaining: 1.87s
221:	learn: 8.9633156	total: 5.25s	remaining: 1.85s
222:	learn: 8.9313136	total: 5.28s	remaining: 1.82s
223:	learn: 8.9023504	total: 5.31s	remaining: 1.8s
224:	learn: 8.8741668	total: 5.34s	remaining: 1.78s
225:	learn: 8.8402639	total: 5.36s	remaining: 1.75s
226:	learn: 8.8061090	total: 5.39s	remaining: 1.73s
227:	learn: 8.7767795	total: 5.41s	remaining: 1.71s
228:	learn: 8.7514356	total: 5.44s	remaining: 1.69s
229:	learn: 8.7118727	total: 5.46s	remaining: 1.66s
230:	learn: 8.6759132	total: 5.49s	remaining: 1.64s
231:	learn: 8.6447220	total: 5.51s	remaining: 1.61s
232:	learn: 8.6102503	total: 5.54s	remaining: 1.59s
233:	learn: 8.5858738	total: 5.57s	remaining: 1.57s
234:	learn: 8.5595561	total: 5.59s	remaining: 1.55s
235:	learn: 8.5313778	total: 5.61s	remaining: 1.52s
236:	learn: 8.5053234	total: 5.64s	remaining: 1.5s
237:	learn: 8.4737268	total: 5.66s	remaining: 1.47s
238:	learn: 8.4414991	total: 5.68s	remaining: 1.45s
239:	learn: 8.4168374	total: 5.7s	remaining: 1.43s
240:	learn: 8.3862136	total: 5.73s	remaining: 1.4s
241:	learn: 8.3454081	total: 5.75s	remaining: 1.38s
242:	learn: 8.3145638	total: 5.78s	remaining: 1.35s
243:	learn: 8.3007136	total: 5.8s	remaining: 1.33s
244:	learn: 8.2708676	total: 5.82s	remaining: 1.31s
245:	learn: 8.2454265	total: 5.84s	remaining: 1.28s
246:	learn: 8.2117256	total: 5.87s	remaining: 1.26s
247:	learn: 8.1846870	total: 5.89s	remaining: 1.23s
248:	learn: 8.1602441	total: 5.91s	remaining: 1.21s
249:	learn: 8.1410728	total: 5.93s	remaining: 1.19s
250:	learn: 8.1138413	total: 5.96s	remaining: 1.16s
251:	learn: 8.0824887	total: 5.99s	remaining: 1.14s
252:	learn: 8.0557089	total: 6.02s	remaining: 1.12s
253:	learn: 8.0378239	total: 6.04s	remaining: 1.09s
254:	learn: 8.0018329	total: 6.07s	remaining: 1.07s
255:	learn: 7.9776523	total: 6.09s	remaining: 1.05s
256:	learn: 7.9437470	total: 6.11s	remaining: 1.02s
257:	learn: 7.9170545	total: 6.13s	remaining: 999ms
258:	learn: 7.9065923	total: 6.16s	remaining: 975ms
259:	learn: 7.8777123	total: 6.19s	remaining: 952ms
260:	learn: 7.8495349	total: 6.21s	remaining: 928ms
261:	learn: 7.8238648	total: 6.23s	remaining: 904ms
262:	learn: 7.8001134	total: 6.26s	remaining: 880ms
263:	learn: 7.7619007	total: 6.28s	remaining: 856ms
264:	learn: 7.7370130	total: 6.3s	remaining: 832ms
265:	learn: 7.7109084	total: 6.32s	remaining: 808ms
266:	learn: 7.6914677	total: 6.34s	remaining: 784ms
267:	learn: 7.6883177	total: 6.37s	remaining: 760ms
268:	learn: 7.6603652	total: 6.4s	remaining: 737ms
269:	learn: 7.6441569	total: 6.42s	remaining: 713ms
270:	learn: 7.6236642	total: 6.44s	remaining: 690ms
271:	learn: 7.5954955	total: 6.47s	remaining: 666ms
272:	learn: 7.5722024	total: 6.49s	remaining: 642ms
273:	learn: 7.5424505	total: 6.51s	remaining: 618ms
274:	learn: 7.5242764	total: 6.54s	remaining: 594ms
275:	learn: 7.4998291	total: 6.56s	remaining: 570ms
276:	learn: 7.4835526	total: 6.58s	remaining: 546ms
277:	learn: 7.4492474	total: 6.61s	remaining: 523ms
278:	learn: 7.4246335	total: 6.63s	remaining: 499ms
279:	learn: 7.4104530	total: 6.66s	remaining: 475ms
280:	learn: 7.4016977	total: 6.68s	remaining: 451ms
281:	learn: 7.3964367	total: 6.7s	remaining: 428ms
282:	learn: 7.3818806	total: 6.72s	remaining: 404ms
283:	learn: 7.3577327	total: 6.74s	remaining: 380ms
284:	learn: 7.3346564	total: 6.76s	remaining: 356ms
285:	learn: 7.3215898	total: 6.79s	remaining: 332ms
286:	learn: 7.3070161	total: 6.82s	remaining: 309ms
287:	learn: 7.2839231	total: 6.84s	remaining: 285ms
288:	learn: 7.2664252	total: 6.87s	remaining: 261ms
289:	learn: 7.2505303	total: 6.89s	remaining: 238ms
290:	learn: 7.2286141	total: 6.91s	remaining: 214ms
291:	learn: 7.2008212	total: 6.94s	remaining: 190ms
292:	learn: 7.1800203	total: 6.96s	remaining: 166ms
293:	learn: 7.1485097	total: 6.98s	remaining: 142ms
294:	learn: 7.1283191	total: 7.01s	remaining: 119ms
295:	learn: 7.1112866	total: 7.04s	remaining: 95.1ms
296:	learn: 7.0786679	total: 7.06s	remaining: 71.3ms
297:	learn: 7.0685798	total: 7.08s	remaining: 47.5ms
298:	learn: 7.0633802	total: 7.11s	remaining: 23.8ms
299:	learn: 7.0504357	total: 7.13s	remaining: 0us
0:	learn: 46.1068821	total: 3.38ms	remaining: 1.01s
1:	learn: 45.5186259	total: 25.2ms	remaining: 3.75s
2:	learn: 44.8982427	total: 47.8ms	remaining: 4.73s
3:	learn: 44.0813314	total: 70.6ms	remaining: 5.22s
4:	learn: 43.3256787	total: 93.3ms	remaining: 5.5s
5:	learn: 42.5989163	total: 115ms	remaining: 5.62s
6:	learn: 41.8412255	total: 136ms	remaining: 5.68s
7:	learn: 41.1629605	total: 156ms	remaining: 5.7s
8:	learn: 40.6649568	total: 176ms	remaining: 5.69s
9:	learn: 40.1755647	total: 197ms	remaining: 5.72s
10:	learn: 39.7843303	total: 218ms	remaining: 5.73s
11:	learn: 39.1263454	total: 240ms	remaining: 5.75s
12:	learn: 38.5049650	total: 263ms	remaining: 5.81s
13:	learn: 37.8816934	total: 290ms	remaining: 5.92s
14:	learn: 37.3925567	total: 310ms	remaining: 5.89s
15:	learn: 36.8080381	total: 330ms	remaining: 5.87s
16:	learn: 36.1363624	total: 351ms	remaining: 5.84s
17:	learn: 35.8171279	total: 372ms	remaining: 5.83s
18:	learn: 35.2225026	total: 392ms	remaining: 5.79s
19:	learn: 34.7373286	total: 412ms	remaining: 5.76s
20:	learn: 34.2563365	total: 433ms	remaining: 5.75s
21:	learn: 33.9368110	total: 454ms	remaining: 5.74s
22:	learn: 33.5339596	total: 476ms	remaining: 5.74s
23:	learn: 33.2090930	total: 506ms	remaining: 5.82s
24:	learn: 32.8232733	total: 530ms	remaining: 5.83s
25:	learn: 32.5065756	total: 552ms	remaining: 5.82s
26:	learn: 32.0091556	total: 574ms	remaining: 5.8s
27:	learn: 31.5901880	total: 595ms	remaining: 5.78s
28:	learn: 31.2602719	total: 616ms	remaining: 5.76s
29:	learn: 30.9824864	total: 639ms	remaining: 5.75s
30:	learn: 30.6837776	total: 659ms	remaining: 5.72s
31:	learn: 30.3784738	total: 682ms	remaining: 5.71s
32:	learn: 29.9551890	total: 712ms	remaining: 5.76s
33:	learn: 29.6880796	total: 736ms	remaining: 5.76s
34:	learn: 29.3535204	total: 756ms	remaining: 5.73s
35:	learn: 29.0983115	total: 777ms	remaining: 5.7s
36:	learn: 28.8227016	total: 798ms	remaining: 5.67s
37:	learn: 28.5948966	total: 818ms	remaining: 5.64s
38:	learn: 28.2092747	total: 839ms	remaining: 5.61s
39:	learn: 27.9292918	total: 862ms	remaining: 5.6s
40:	learn: 27.6917466	total: 883ms	remaining: 5.58s
41:	learn: 27.3898320	total: 906ms	remaining: 5.56s
42:	learn: 27.1423506	total: 938ms	remaining: 5.61s
43:	learn: 26.9143906	total: 962ms	remaining: 5.6s
44:	learn: 26.6628354	total: 986ms	remaining: 5.58s
45:	learn: 26.4436459	total: 1.01s	remaining: 5.56s
46:	learn: 26.2699511	total: 1.03s	remaining: 5.55s
47:	learn: 26.0687332	total: 1.05s	remaining: 5.52s
48:	learn: 25.8813257	total: 1.07s	remaining: 5.48s
49:	learn: 25.6417147	total: 1.09s	remaining: 5.45s
50:	learn: 25.4978473	total: 1.1s	remaining: 5.38s
51:	learn: 25.2508826	total: 1.12s	remaining: 5.36s
52:	learn: 24.9957667	total: 1.15s	remaining: 5.37s
53:	learn: 24.7897869	total: 1.17s	remaining: 5.34s
54:	learn: 24.6276395	total: 1.19s	remaining: 5.3s
55:	learn: 24.4484009	total: 1.21s	remaining: 5.28s
56:	learn: 24.2064871	total: 1.23s	remaining: 5.25s
57:	learn: 24.0355794	total: 1.25s	remaining: 5.22s
58:	learn: 23.8623034	total: 1.27s	remaining: 5.19s
59:	learn: 23.6009245	total: 1.29s	remaining: 5.17s
60:	learn: 23.4408382	total: 1.31s	remaining: 5.14s
61:	learn: 23.2362900	total: 1.33s	remaining: 5.13s
62:	learn: 23.0767254	total: 1.37s	remaining: 5.14s
63:	learn: 22.9370310	total: 1.39s	remaining: 5.13s
64:	learn: 22.7482690	total: 1.41s	remaining: 5.12s
65:	learn: 22.5740357	total: 1.44s	remaining: 5.09s
66:	learn: 22.4132876	total: 1.46s	remaining: 5.07s
67:	learn: 22.2551850	total: 1.48s	remaining: 5.04s
68:	learn: 22.0648127	total: 1.5s	remaining: 5.02s
69:	learn: 21.9204326	total: 1.52s	remaining: 5s
70:	learn: 21.8002567	total: 1.54s	remaining: 4.98s
71:	learn: 21.6545032	total: 1.57s	remaining: 4.97s
72:	learn: 21.5274427	total: 1.59s	remaining: 4.96s
73:	learn: 21.4235402	total: 1.61s	remaining: 4.93s
74:	learn: 21.2403786	total: 1.64s	remaining: 4.91s
75:	learn: 21.1019776	total: 1.66s	remaining: 4.88s
76:	learn: 20.9047503	total: 1.68s	remaining: 4.86s
77:	learn: 20.8140012	total: 1.7s	remaining: 4.84s
78:	learn: 20.7064981	total: 1.72s	remaining: 4.82s
79:	learn: 20.6033857	total: 1.75s	remaining: 4.81s
80:	learn: 20.4743532	total: 1.77s	remaining: 4.79s
81:	learn: 20.3272514	total: 1.8s	remaining: 4.8s
82:	learn: 20.2402909	total: 1.83s	remaining: 4.78s
83:	learn: 20.1344566	total: 1.85s	remaining: 4.76s
84:	learn: 19.9630804	total: 1.87s	remaining: 4.74s
85:	learn: 19.8196483	total: 1.9s	remaining: 4.72s
86:	learn: 19.6861323	total: 1.92s	remaining: 4.7s
87:	learn: 19.5689921	total: 1.94s	remaining: 4.67s
88:	learn: 19.4766099	total: 1.96s	remaining: 4.65s
89:	learn: 19.3523859	total: 1.99s	remaining: 4.65s
90:	learn: 19.2512307	total: 2.01s	remaining: 4.63s
91:	learn: 19.1541965	total: 2.04s	remaining: 4.6s
92:	learn: 18.9980138	total: 2.06s	remaining: 4.58s
93:	learn: 18.8241638	total: 2.08s	remaining: 4.55s
94:	learn: 18.6982820	total: 2.1s	remaining: 4.53s
95:	learn: 18.6170939	total: 2.12s	remaining: 4.51s
96:	learn: 18.5216398	total: 2.14s	remaining: 4.48s
97:	learn: 18.4188891	total: 2.16s	remaining: 4.46s
98:	learn: 18.3473321	total: 2.18s	remaining: 4.43s
99:	learn: 18.2744582	total: 2.21s	remaining: 4.42s
100:	learn: 18.1064776	total: 2.24s	remaining: 4.41s
101:	learn: 18.0564103	total: 2.26s	remaining: 4.39s
102:	learn: 17.9684931	total: 2.29s	remaining: 4.37s
103:	learn: 17.8577080	total: 2.31s	remaining: 4.35s
104:	learn: 17.7557863	total: 2.33s	remaining: 4.33s
105:	learn: 17.6830354	total: 2.35s	remaining: 4.3s
106:	learn: 17.5928641	total: 2.37s	remaining: 4.28s
107:	learn: 17.5447625	total: 2.4s	remaining: 4.26s
108:	learn: 17.4830060	total: 2.42s	remaining: 4.24s
109:	learn: 17.3760969	total: 2.45s	remaining: 4.23s
110:	learn: 17.2990516	total: 2.47s	remaining: 4.21s
111:	learn: 17.2626219	total: 2.49s	remaining: 4.18s
112:	learn: 17.1610712	total: 2.51s	remaining: 4.16s
113:	learn: 17.1129518	total: 2.53s	remaining: 4.13s
114:	learn: 16.9637799	total: 2.56s	remaining: 4.11s
115:	learn: 16.8724617	total: 2.58s	remaining: 4.09s
116:	learn: 16.7990982	total: 2.6s	remaining: 4.06s
117:	learn: 16.7354572	total: 2.62s	remaining: 4.04s
118:	learn: 16.6225750	total: 2.65s	remaining: 4.03s
119:	learn: 16.5778971	total: 2.68s	remaining: 4.02s
120:	learn: 16.5383915	total: 2.7s	remaining: 4s
121:	learn: 16.4801189	total: 2.73s	remaining: 3.98s
122:	learn: 16.3909340	total: 2.75s	remaining: 3.96s
123:	learn: 16.3129754	total: 2.77s	remaining: 3.94s
124:	learn: 16.2430907	total: 2.8s	remaining: 3.92s
125:	learn: 16.1779646	total: 2.82s	remaining: 3.9s
126:	learn: 16.1162194	total: 2.85s	remaining: 3.88s
127:	learn: 16.0084749	total: 2.87s	remaining: 3.86s
128:	learn: 15.9268705	total: 2.89s	remaining: 3.84s
129:	learn: 15.8770194	total: 2.92s	remaining: 3.81s
130:	learn: 15.8445342	total: 2.94s	remaining: 3.79s
131:	learn: 15.7799082	total: 2.96s	remaining: 3.77s
132:	learn: 15.7225612	total: 2.98s	remaining: 3.74s
133:	learn: 15.6327986	total: 3s	remaining: 3.72s
134:	learn: 15.5560479	total: 3.02s	remaining: 3.7s
135:	learn: 15.4650063	total: 3.05s	remaining: 3.68s
136:	learn: 15.4439565	total: 3.08s	remaining: 3.66s
137:	learn: 15.3723683	total: 3.1s	remaining: 3.65s
138:	learn: 15.2867520	total: 3.13s	remaining: 3.62s
139:	learn: 15.2008060	total: 3.15s	remaining: 3.6s
140:	learn: 15.1226253	total: 3.17s	remaining: 3.58s
141:	learn: 15.0392603	total: 3.2s	remaining: 3.56s
142:	learn: 15.0209441	total: 3.22s	remaining: 3.53s
143:	learn: 14.9691162	total: 3.24s	remaining: 3.51s
144:	learn: 14.8809723	total: 3.26s	remaining: 3.48s
145:	learn: 14.7790501	total: 3.28s	remaining: 3.46s
146:	learn: 14.7124707	total: 3.31s	remaining: 3.44s
147:	learn: 14.6505409	total: 3.33s	remaining: 3.42s
148:	learn: 14.5977957	total: 3.35s	remaining: 3.4s
149:	learn: 14.4563773	total: 3.37s	remaining: 3.37s
150:	learn: 14.3903954	total: 3.4s	remaining: 3.35s
151:	learn: 14.3677191	total: 3.42s	remaining: 3.33s
152:	learn: 14.3170088	total: 3.44s	remaining: 3.31s
153:	learn: 14.2212460	total: 3.46s	remaining: 3.28s
154:	learn: 14.1865067	total: 3.48s	remaining: 3.26s
155:	learn: 14.1133763	total: 3.51s	remaining: 3.24s
156:	learn: 14.0632935	total: 3.54s	remaining: 3.22s
157:	learn: 14.0317962	total: 3.56s	remaining: 3.2s
158:	learn: 13.9531527	total: 3.58s	remaining: 3.18s
159:	learn: 13.9361664	total: 3.6s	remaining: 3.15s
160:	learn: 13.8152344	total: 3.63s	remaining: 3.13s
161:	learn: 13.7794016	total: 3.65s	remaining: 3.11s
162:	learn: 13.7554484	total: 3.67s	remaining: 3.08s
163:	learn: 13.6786599	total: 3.69s	remaining: 3.06s
164:	learn: 13.6580934	total: 3.72s	remaining: 3.04s
165:	learn: 13.6135467	total: 3.74s	remaining: 3.02s
166:	learn: 13.5774402	total: 3.76s	remaining: 3s
167:	learn: 13.4665364	total: 3.79s	remaining: 2.97s
168:	learn: 13.4457745	total: 3.81s	remaining: 2.95s
169:	learn: 13.4313272	total: 3.83s	remaining: 2.93s
170:	learn: 13.3740130	total: 3.85s	remaining: 2.9s
171:	learn: 13.3012082	total: 3.87s	remaining: 2.88s
172:	learn: 13.2580888	total: 3.89s	remaining: 2.85s
173:	learn: 13.2260963	total: 3.91s	remaining: 2.83s
174:	learn: 13.1934687	total: 3.94s	remaining: 2.81s
175:	learn: 13.1567898	total: 3.96s	remaining: 2.79s
176:	learn: 13.1207167	total: 3.99s	remaining: 2.77s
177:	learn: 13.0453975	total: 4.01s	remaining: 2.75s
178:	learn: 12.9667806	total: 4.03s	remaining: 2.73s
179:	learn: 12.9050987	total: 4.05s	remaining: 2.7s
180:	learn: 12.7877614	total: 4.08s	remaining: 2.68s
181:	learn: 12.7246635	total: 4.1s	remaining: 2.65s
182:	learn: 12.6649785	total: 4.12s	remaining: 2.63s
183:	learn: 12.5966292	total: 4.15s	remaining: 2.61s
184:	learn: 12.5791866	total: 4.17s	remaining: 2.59s
185:	learn: 12.5265550	total: 4.19s	remaining: 2.57s
186:	learn: 12.4747790	total: 4.21s	remaining: 2.54s
187:	learn: 12.3639334	total: 4.23s	remaining: 2.52s
188:	learn: 12.3060104	total: 4.25s	remaining: 2.5s
189:	learn: 12.2108815	total: 4.27s	remaining: 2.47s
190:	learn: 12.1295363	total: 4.29s	remaining: 2.45s
191:	learn: 12.0828143	total: 4.31s	remaining: 2.43s
192:	learn: 12.0650770	total: 4.33s	remaining: 2.4s
193:	learn: 11.9979395	total: 4.36s	remaining: 2.38s
194:	learn: 11.9754814	total: 4.39s	remaining: 2.36s
195:	learn: 11.9328555	total: 4.41s	remaining: 2.34s
196:	learn: 11.9122042	total: 4.43s	remaining: 2.32s
197:	learn: 11.8518842	total: 4.45s	remaining: 2.29s
198:	learn: 11.8304153	total: 4.48s	remaining: 2.27s
199:	learn: 11.8121741	total: 4.5s	remaining: 2.25s
200:	learn: 11.7411942	total: 4.52s	remaining: 2.22s
201:	learn: 11.7329288	total: 4.54s	remaining: 2.2s
202:	learn: 11.7074830	total: 4.56s	remaining: 2.18s
203:	learn: 11.6479110	total: 4.59s	remaining: 2.16s
204:	learn: 11.6341037	total: 4.61s	remaining: 2.14s
205:	learn: 11.5703505	total: 4.63s	remaining: 2.11s
206:	learn: 11.5415491	total: 4.65s	remaining: 2.09s
207:	learn: 11.5016416	total: 4.68s	remaining: 2.07s
208:	learn: 11.4843453	total: 4.7s	remaining: 2.04s
209:	learn: 11.4556878	total: 4.72s	remaining: 2.02s
210:	learn: 11.3953637	total: 4.74s	remaining: 2s
211:	learn: 11.3640248	total: 4.76s	remaining: 1.97s
212:	learn: 11.3189656	total: 4.78s	remaining: 1.95s
213:	learn: 11.3023318	total: 4.8s	remaining: 1.93s
214:	learn: 11.2812809	total: 4.83s	remaining: 1.91s
215:	learn: 11.2649164	total: 4.85s	remaining: 1.89s
216:	learn: 11.2249674	total: 4.88s	remaining: 1.86s
217:	learn: 11.1694593	total: 4.9s	remaining: 1.84s
218:	learn: 11.1504747	total: 4.92s	remaining: 1.82s
219:	learn: 11.1099205	total: 4.94s	remaining: 1.8s
220:	learn: 11.0946598	total: 4.96s	remaining: 1.77s
221:	learn: 11.0335988	total: 4.98s	remaining: 1.75s
222:	learn: 11.0096492	total: 5s	remaining: 1.73s
223:	learn: 10.9672501	total: 5.03s	remaining: 1.71s
224:	learn: 10.9507570	total: 5.05s	remaining: 1.69s
225:	learn: 10.9314289	total: 5.08s	remaining: 1.66s
226:	learn: 10.8670947	total: 5.1s	remaining: 1.64s
227:	learn: 10.8529443	total: 5.13s	remaining: 1.62s
228:	learn: 10.8318645	total: 5.15s	remaining: 1.6s
229:	learn: 10.8156588	total: 5.17s	remaining: 1.57s
230:	learn: 10.7951131	total: 5.19s	remaining: 1.55s
231:	learn: 10.7795677	total: 5.22s	remaining: 1.53s
232:	learn: 10.7366028	total: 5.25s	remaining: 1.51s
233:	learn: 10.7193612	total: 5.28s	remaining: 1.49s
234:	learn: 10.6990737	total: 5.3s	remaining: 1.47s
235:	learn: 10.6205495	total: 5.33s	remaining: 1.44s
236:	learn: 10.5976748	total: 5.35s	remaining: 1.42s
237:	learn: 10.5212017	total: 5.38s	remaining: 1.4s
238:	learn: 10.4839783	total: 5.4s	remaining: 1.38s
239:	learn: 10.4723193	total: 5.43s	remaining: 1.36s
240:	learn: 10.4438944	total: 5.46s	remaining: 1.33s
241:	learn: 10.4068644	total: 5.49s	remaining: 1.32s
242:	learn: 10.3777867	total: 5.52s	remaining: 1.29s
243:	learn: 10.3633196	total: 5.54s	remaining: 1.27s
244:	learn: 10.3508529	total: 5.56s	remaining: 1.25s
245:	learn: 10.3391285	total: 5.58s	remaining: 1.23s
246:	learn: 10.3202046	total: 5.61s	remaining: 1.2s
247:	learn: 10.2679507	total: 5.63s	remaining: 1.18s
248:	learn: 10.2444411	total: 5.66s	remaining: 1.16s
249:	learn: 10.1978707	total: 5.68s	remaining: 1.14s
250:	learn: 10.1746210	total: 5.71s	remaining: 1.11s
251:	learn: 10.1455445	total: 5.75s	remaining: 1.09s
252:	learn: 10.1234292	total: 5.77s	remaining: 1.07s
253:	learn: 10.1009263	total: 5.8s	remaining: 1.05s
254:	learn: 10.0506537	total: 5.82s	remaining: 1.03s
255:	learn: 9.9973799	total: 5.84s	remaining: 1s
256:	learn: 9.9923793	total: 5.88s	remaining: 983ms
257:	learn: 9.9592135	total: 5.9s	remaining: 961ms
258:	learn: 9.9455912	total: 5.93s	remaining: 939ms
259:	learn: 9.9351881	total: 5.95s	remaining: 916ms
260:	learn: 9.8843396	total: 5.97s	remaining: 893ms
261:	learn: 9.8732841	total: 6s	remaining: 871ms
262:	learn: 9.8530402	total: 6.03s	remaining: 848ms
263:	learn: 9.8379209	total: 6.05s	remaining: 825ms
264:	learn: 9.8012657	total: 6.08s	remaining: 803ms
265:	learn: 9.7881742	total: 6.1s	remaining: 780ms
266:	learn: 9.7723933	total: 6.13s	remaining: 758ms
267:	learn: 9.7613461	total: 6.16s	remaining: 735ms
268:	learn: 9.7214417	total: 6.18s	remaining: 713ms
269:	learn: 9.6976897	total: 6.21s	remaining: 690ms
270:	learn: 9.6919786	total: 6.23s	remaining: 667ms
271:	learn: 9.6263135	total: 6.26s	remaining: 645ms
272:	learn: 9.6175527	total: 6.29s	remaining: 622ms
273:	learn: 9.6110661	total: 6.31s	remaining: 599ms
274:	learn: 9.5992549	total: 6.34s	remaining: 577ms
275:	learn: 9.5709079	total: 6.37s	remaining: 554ms
276:	learn: 9.5584595	total: 6.39s	remaining: 531ms
277:	learn: 9.5492847	total: 6.41s	remaining: 507ms
278:	learn: 9.5261231	total: 6.43s	remaining: 484ms
279:	learn: 9.5160964	total: 6.46s	remaining: 461ms
280:	learn: 9.4945891	total: 6.48s	remaining: 438ms
281:	learn: 9.4659751	total: 6.5s	remaining: 415ms
282:	learn: 9.4474987	total: 6.54s	remaining: 393ms
283:	learn: 9.4369109	total: 6.56s	remaining: 370ms
284:	learn: 9.4285200	total: 6.58s	remaining: 347ms
285:	learn: 9.4124421	total: 6.61s	remaining: 324ms
286:	learn: 9.3903730	total: 6.63s	remaining: 300ms
287:	learn: 9.3240575	total: 6.66s	remaining: 277ms
288:	learn: 9.3124220	total: 6.68s	remaining: 254ms
289:	learn: 9.2881271	total: 6.7s	remaining: 231ms
290:	learn: 9.2713655	total: 6.72s	remaining: 208ms
291:	learn: 9.2641531	total: 6.75s	remaining: 185ms
292:	learn: 9.2524129	total: 6.78s	remaining: 162ms
293:	learn: 9.2343575	total: 6.8s	remaining: 139ms
294:	learn: 9.1973322	total: 6.82s	remaining: 116ms
295:	learn: 9.1565802	total: 6.84s	remaining: 92.5ms
296:	learn: 9.1428051	total: 6.86s	remaining: 69.3ms
297:	learn: 9.1293653	total: 6.88s	remaining: 46.2ms
298:	learn: 9.1105879	total: 6.91s	remaining: 23.1ms
299:	learn: 9.1005583	total: 6.93s	remaining: 0us
0:	learn: 46.9033478	total: 24.1ms	remaining: 7.2s
1:	learn: 46.0879122	total: 49ms	remaining: 7.3s
2:	learn: 45.6500716	total: 70ms	remaining: 6.93s
3:	learn: 44.8037484	total: 92.8ms	remaining: 6.86s
4:	learn: 44.1513690	total: 115ms	remaining: 6.8s
5:	learn: 43.6033150	total: 139ms	remaining: 6.83s
6:	learn: 43.0669517	total: 168ms	remaining: 7.02s
7:	learn: 42.4011723	total: 193ms	remaining: 7.06s
8:	learn: 41.7060291	total: 215ms	remaining: 6.94s
9:	learn: 41.0058676	total: 237ms	remaining: 6.87s
10:	learn: 40.5518615	total: 259ms	remaining: 6.81s
11:	learn: 39.9452722	total: 279ms	remaining: 6.7s
12:	learn: 39.2539405	total: 300ms	remaining: 6.63s
13:	learn: 38.6690449	total: 323ms	remaining: 6.59s
14:	learn: 38.2389829	total: 346ms	remaining: 6.57s
15:	learn: 37.6795608	total: 368ms	remaining: 6.54s
16:	learn: 37.2562038	total: 403ms	remaining: 6.71s
17:	learn: 36.9516174	total: 428ms	remaining: 6.7s
18:	learn: 36.6189442	total: 452ms	remaining: 6.68s
19:	learn: 36.0530153	total: 475ms	remaining: 6.65s
20:	learn: 35.6536993	total: 499ms	remaining: 6.63s
21:	learn: 35.3616790	total: 520ms	remaining: 6.57s
22:	learn: 35.0627472	total: 541ms	remaining: 6.52s
23:	learn: 34.5889995	total: 563ms	remaining: 6.47s
24:	learn: 34.0395768	total: 593ms	remaining: 6.52s
25:	learn: 33.6846146	total: 617ms	remaining: 6.51s
26:	learn: 33.2581583	total: 639ms	remaining: 6.46s
27:	learn: 32.9043599	total: 663ms	remaining: 6.44s
28:	learn: 32.4603681	total: 684ms	remaining: 6.39s
29:	learn: 32.0784225	total: 705ms	remaining: 6.34s
30:	learn: 31.6654390	total: 726ms	remaining: 6.29s
31:	learn: 31.3473625	total: 747ms	remaining: 6.25s
32:	learn: 30.9124340	total: 769ms	remaining: 6.22s
33:	learn: 30.6354683	total: 792ms	remaining: 6.19s
34:	learn: 30.4404098	total: 816ms	remaining: 6.18s
35:	learn: 30.1914372	total: 847ms	remaining: 6.21s
36:	learn: 29.8249863	total: 870ms	remaining: 6.18s
37:	learn: 29.5196757	total: 895ms	remaining: 6.17s
38:	learn: 29.2605473	total: 918ms	remaining: 6.14s
39:	learn: 28.9803384	total: 943ms	remaining: 6.13s
40:	learn: 28.7535173	total: 964ms	remaining: 6.09s
41:	learn: 28.3888690	total: 986ms	remaining: 6.06s
42:	learn: 28.1381916	total: 1.01s	remaining: 6.03s
43:	learn: 27.9181568	total: 1.03s	remaining: 6.01s
44:	learn: 27.6047071	total: 1.06s	remaining: 6s
45:	learn: 27.4164606	total: 1.08s	remaining: 5.97s
46:	learn: 27.0321668	total: 1.1s	remaining: 5.94s
47:	learn: 26.7987572	total: 1.12s	remaining: 5.9s
48:	learn: 26.6235810	total: 1.15s	remaining: 5.87s
49:	learn: 26.4084368	total: 1.17s	remaining: 5.83s
50:	learn: 26.1773159	total: 1.19s	remaining: 5.79s
51:	learn: 26.0200665	total: 1.21s	remaining: 5.76s
52:	learn: 25.8168330	total: 1.23s	remaining: 5.73s
53:	learn: 25.6154150	total: 1.25s	remaining: 5.71s
54:	learn: 25.2351738	total: 1.28s	remaining: 5.7s
55:	learn: 24.9587143	total: 1.3s	remaining: 5.69s
56:	learn: 24.7682982	total: 1.33s	remaining: 5.66s
57:	learn: 24.4602191	total: 1.35s	remaining: 5.63s
58:	learn: 24.3002094	total: 1.37s	remaining: 5.6s
59:	learn: 24.1509360	total: 1.39s	remaining: 5.56s
60:	learn: 23.9855802	total: 1.41s	remaining: 5.53s
61:	learn: 23.7747817	total: 1.43s	remaining: 5.49s
62:	learn: 23.5415832	total: 1.45s	remaining: 5.47s
63:	learn: 23.3540053	total: 1.48s	remaining: 5.45s
64:	learn: 23.1213752	total: 1.5s	remaining: 5.44s
65:	learn: 22.9729934	total: 1.52s	remaining: 5.41s
66:	learn: 22.8237351	total: 1.55s	remaining: 5.38s
67:	learn: 22.6716691	total: 1.57s	remaining: 5.35s
68:	learn: 22.5296861	total: 1.59s	remaining: 5.32s
69:	learn: 22.3725425	total: 1.61s	remaining: 5.29s
70:	learn: 22.2639328	total: 1.63s	remaining: 5.26s
71:	learn: 22.1174316	total: 1.65s	remaining: 5.23s
72:	learn: 21.9916264	total: 1.68s	remaining: 5.21s
73:	learn: 21.7797959	total: 1.7s	remaining: 5.2s
74:	learn: 21.6350589	total: 1.73s	remaining: 5.19s
75:	learn: 21.4910112	total: 1.75s	remaining: 5.16s
76:	learn: 21.3068682	total: 1.77s	remaining: 5.14s
77:	learn: 21.1725772	total: 1.8s	remaining: 5.11s
78:	learn: 21.0526496	total: 1.82s	remaining: 5.08s
79:	learn: 20.9534374	total: 1.84s	remaining: 5.05s
80:	learn: 20.8168422	total: 1.86s	remaining: 5.03s
81:	learn: 20.7138006	total: 1.88s	remaining: 5s
82:	learn: 20.5259907	total: 1.9s	remaining: 4.97s
83:	learn: 20.3881958	total: 1.93s	remaining: 4.97s
84:	learn: 20.2702350	total: 1.96s	remaining: 4.95s
85:	learn: 20.1185381	total: 1.98s	remaining: 4.92s
86:	learn: 19.9815763	total: 2s	remaining: 4.89s
87:	learn: 19.8563040	total: 2.02s	remaining: 4.86s
88:	learn: 19.7629932	total: 2.04s	remaining: 4.83s
89:	learn: 19.6361676	total: 2.06s	remaining: 4.8s
90:	learn: 19.5189179	total: 2.08s	remaining: 4.78s
91:	learn: 19.4368807	total: 2.1s	remaining: 4.76s
92:	learn: 19.3491759	total: 2.14s	remaining: 4.76s
93:	learn: 19.2441781	total: 2.16s	remaining: 4.74s
94:	learn: 19.1595312	total: 2.18s	remaining: 4.71s
95:	learn: 19.0732186	total: 2.21s	remaining: 4.69s
96:	learn: 18.9664261	total: 2.23s	remaining: 4.67s
97:	learn: 18.8752837	total: 2.25s	remaining: 4.64s
98:	learn: 18.7884732	total: 2.27s	remaining: 4.61s
99:	learn: 18.6638300	total: 2.29s	remaining: 4.58s
100:	learn: 18.5456185	total: 2.31s	remaining: 4.55s
101:	learn: 18.4491938	total: 2.33s	remaining: 4.53s
102:	learn: 18.3712210	total: 2.36s	remaining: 4.51s
103:	learn: 18.2907426	total: 2.38s	remaining: 4.48s
104:	learn: 18.2393122	total: 2.4s	remaining: 4.46s
105:	learn: 18.1493295	total: 2.42s	remaining: 4.43s
106:	learn: 18.0741996	total: 2.44s	remaining: 4.4s
107:	learn: 17.9763617	total: 2.46s	remaining: 4.38s
108:	learn: 17.8511711	total: 2.48s	remaining: 4.35s
109:	learn: 17.7975521	total: 2.5s	remaining: 4.32s
110:	learn: 17.7280526	total: 2.52s	remaining: 4.29s
111:	learn: 17.6960456	total: 2.55s	remaining: 4.28s
112:	learn: 17.6209638	total: 2.57s	remaining: 4.26s
113:	learn: 17.5389165	total: 2.6s	remaining: 4.23s
114:	learn: 17.4874967	total: 2.62s	remaining: 4.21s
115:	learn: 17.3744401	total: 2.64s	remaining: 4.19s
116:	learn: 17.2762107	total: 2.66s	remaining: 4.17s
117:	learn: 17.1930198	total: 2.69s	remaining: 4.14s
118:	learn: 17.0804375	total: 2.71s	remaining: 4.12s
119:	learn: 17.0100383	total: 2.73s	remaining: 4.09s
120:	learn: 16.9515165	total: 2.75s	remaining: 4.07s
121:	learn: 16.8221030	total: 2.78s	remaining: 4.05s
122:	learn: 16.7270258	total: 2.8s	remaining: 4.03s
123:	learn: 16.6537882	total: 2.83s	remaining: 4.02s
124:	learn: 16.5324707	total: 2.85s	remaining: 4s
125:	learn: 16.4705263	total: 2.88s	remaining: 3.98s
126:	learn: 16.4130833	total: 2.9s	remaining: 3.95s
127:	learn: 16.3480615	total: 2.92s	remaining: 3.93s
128:	learn: 16.2228205	total: 2.95s	remaining: 3.91s
129:	learn: 16.1299284	total: 2.97s	remaining: 3.89s
130:	learn: 16.0593548	total: 3s	remaining: 3.87s
131:	learn: 15.9926308	total: 3.03s	remaining: 3.85s
132:	learn: 15.9351137	total: 3.05s	remaining: 3.83s
133:	learn: 15.8301951	total: 3.08s	remaining: 3.81s
134:	learn: 15.7606319	total: 3.1s	remaining: 3.79s
135:	learn: 15.6217872	total: 3.12s	remaining: 3.76s
136:	learn: 15.5200572	total: 3.14s	remaining: 3.74s
137:	learn: 15.4565615	total: 3.16s	remaining: 3.71s
138:	learn: 15.3854906	total: 3.19s	remaining: 3.69s
139:	learn: 15.3407126	total: 3.21s	remaining: 3.67s
140:	learn: 15.2532536	total: 3.24s	remaining: 3.65s
141:	learn: 15.2129349	total: 3.26s	remaining: 3.63s
142:	learn: 15.1732289	total: 3.28s	remaining: 3.6s
143:	learn: 15.1138929	total: 3.31s	remaining: 3.58s
144:	learn: 15.0326156	total: 3.33s	remaining: 3.56s
145:	learn: 14.9309324	total: 3.35s	remaining: 3.53s
146:	learn: 14.8657435	total: 3.37s	remaining: 3.51s
147:	learn: 14.8314609	total: 3.39s	remaining: 3.48s
148:	learn: 14.7431116	total: 3.42s	remaining: 3.47s
149:	learn: 14.6590351	total: 3.45s	remaining: 3.45s
150:	learn: 14.5339193	total: 3.47s	remaining: 3.43s
151:	learn: 14.4639900	total: 3.5s	remaining: 3.4s
152:	learn: 14.3967135	total: 3.52s	remaining: 3.38s
153:	learn: 14.3077714	total: 3.54s	remaining: 3.36s
154:	learn: 14.2227051	total: 3.56s	remaining: 3.33s
155:	learn: 14.1541051	total: 3.58s	remaining: 3.31s
156:	learn: 14.1099666	total: 3.6s	remaining: 3.28s
157:	learn: 14.0474387	total: 3.64s	remaining: 3.27s
158:	learn: 13.9402729	total: 3.66s	remaining: 3.25s
159:	learn: 13.8714208	total: 3.68s	remaining: 3.22s
160:	learn: 13.7798180	total: 3.71s	remaining: 3.2s
161:	learn: 13.6785277	total: 3.73s	remaining: 3.17s
162:	learn: 13.5985050	total: 3.75s	remaining: 3.15s
163:	learn: 13.5743583	total: 3.77s	remaining: 3.13s
164:	learn: 13.4271067	total: 3.79s	remaining: 3.1s
165:	learn: 13.3787394	total: 3.81s	remaining: 3.08s
166:	learn: 13.3132605	total: 3.84s	remaining: 3.06s
167:	learn: 13.2185878	total: 3.87s	remaining: 3.04s
168:	learn: 13.2025287	total: 3.89s	remaining: 3.02s
169:	learn: 13.1393556	total: 3.92s	remaining: 3s
170:	learn: 13.0898086	total: 3.94s	remaining: 2.97s
171:	learn: 12.9970587	total: 3.96s	remaining: 2.95s
172:	learn: 12.8778568	total: 3.98s	remaining: 2.92s
173:	learn: 12.7715298	total: 4.01s	remaining: 2.9s
174:	learn: 12.7109534	total: 4.03s	remaining: 2.88s
175:	learn: 12.6499951	total: 4.06s	remaining: 2.86s
176:	learn: 12.5781341	total: 4.08s	remaining: 2.84s
177:	learn: 12.5302935	total: 4.11s	remaining: 2.81s
178:	learn: 12.4570172	total: 4.13s	remaining: 2.79s
179:	learn: 12.3852468	total: 4.15s	remaining: 2.77s
180:	learn: 12.3218479	total: 4.17s	remaining: 2.74s
181:	learn: 12.2146968	total: 4.2s	remaining: 2.72s
182:	learn: 12.0872854	total: 4.22s	remaining: 2.7s
183:	learn: 12.0609707	total: 4.24s	remaining: 2.67s
184:	learn: 11.9443946	total: 4.26s	remaining: 2.65s
185:	learn: 11.8745310	total: 4.3s	remaining: 2.63s
186:	learn: 11.7895958	total: 4.32s	remaining: 2.61s
187:	learn: 11.7497478	total: 4.34s	remaining: 2.59s
188:	learn: 11.6831548	total: 4.37s	remaining: 2.56s
189:	learn: 11.6608564	total: 4.39s	remaining: 2.54s
190:	learn: 11.6399052	total: 4.41s	remaining: 2.52s
191:	learn: 11.5714004	total: 4.43s	remaining: 2.49s
192:	learn: 11.5427662	total: 4.46s	remaining: 2.47s
193:	learn: 11.4806208	total: 4.49s	remaining: 2.45s
194:	learn: 11.4691327	total: 4.51s	remaining: 2.43s
195:	learn: 11.4134172	total: 4.53s	remaining: 2.4s
196:	learn: 11.3438004	total: 4.55s	remaining: 2.38s
197:	learn: 11.3015149	total: 4.57s	remaining: 2.36s
198:	learn: 11.2493782	total: 4.59s	remaining: 2.33s
199:	learn: 11.1895539	total: 4.62s	remaining: 2.31s
200:	learn: 11.1683522	total: 4.64s	remaining: 2.29s
201:	learn: 11.1466698	total: 4.66s	remaining: 2.26s
202:	learn: 11.0701090	total: 4.68s	remaining: 2.24s
203:	learn: 11.0293322	total: 4.71s	remaining: 2.22s
204:	learn: 10.9637933	total: 4.74s	remaining: 2.2s
205:	learn: 10.9171875	total: 4.76s	remaining: 2.17s
206:	learn: 10.8620107	total: 4.79s	remaining: 2.15s
207:	learn: 10.8411017	total: 4.81s	remaining: 2.13s
208:	learn: 10.8219871	total: 4.83s	remaining: 2.1s
209:	learn: 10.7790684	total: 4.85s	remaining: 2.08s
210:	learn: 10.7460005	total: 4.87s	remaining: 2.06s
211:	learn: 10.6884581	total: 4.9s	remaining: 2.03s
212:	learn: 10.6215835	total: 4.92s	remaining: 2.01s
213:	learn: 10.6112487	total: 4.95s	remaining: 1.99s
214:	learn: 10.5515861	total: 4.97s	remaining: 1.96s
215:	learn: 10.5005611	total: 4.99s	remaining: 1.94s
216:	learn: 10.4827029	total: 5.01s	remaining: 1.92s
217:	learn: 10.4671266	total: 5.03s	remaining: 1.89s
218:	learn: 10.4471117	total: 5.05s	remaining: 1.87s
219:	learn: 10.4286227	total: 5.07s	remaining: 1.84s
220:	learn: 10.4102334	total: 5.09s	remaining: 1.82s
221:	learn: 10.3587364	total: 5.12s	remaining: 1.8s
222:	learn: 10.3185900	total: 5.14s	remaining: 1.77s
223:	learn: 10.3047695	total: 5.17s	remaining: 1.75s
224:	learn: 10.2861237	total: 5.19s	remaining: 1.73s
225:	learn: 10.2723077	total: 5.21s	remaining: 1.71s
226:	learn: 10.2566131	total: 5.24s	remaining: 1.68s
227:	learn: 10.2444076	total: 5.26s	remaining: 1.66s
228:	learn: 10.2035037	total: 5.28s	remaining: 1.64s
229:	learn: 10.1151548	total: 5.3s	remaining: 1.61s
230:	learn: 10.0952083	total: 5.32s	remaining: 1.59s
231:	learn: 10.0785525	total: 5.34s	remaining: 1.57s
232:	learn: 10.0582314	total: 5.37s	remaining: 1.54s
233:	learn: 10.0399370	total: 5.39s	remaining: 1.52s
234:	learn: 10.0277451	total: 5.42s	remaining: 1.5s
235:	learn: 9.9732252	total: 5.44s	remaining: 1.47s
236:	learn: 9.9602566	total: 5.46s	remaining: 1.45s
237:	learn: 9.9117022	total: 5.48s	remaining: 1.43s
238:	learn: 9.8771993	total: 5.5s	remaining: 1.4s
239:	learn: 9.8360533	total: 5.52s	remaining: 1.38s
240:	learn: 9.8228622	total: 5.54s	remaining: 1.36s
241:	learn: 9.7831566	total: 5.56s	remaining: 1.33s
242:	learn: 9.7238030	total: 5.58s	remaining: 1.31s
243:	learn: 9.6756010	total: 5.62s	remaining: 1.29s
244:	learn: 9.6573706	total: 5.64s	remaining: 1.27s
245:	learn: 9.6190420	total: 5.67s	remaining: 1.24s
246:	learn: 9.5963929	total: 5.69s	remaining: 1.22s
247:	learn: 9.5838279	total: 5.71s	remaining: 1.2s
248:	learn: 9.5516337	total: 5.73s	remaining: 1.17s
249:	learn: 9.5319568	total: 5.75s	remaining: 1.15s
250:	learn: 9.5009733	total: 5.77s	remaining: 1.13s
251:	learn: 9.4738909	total: 5.79s	remaining: 1.1s
252:	learn: 9.4573897	total: 5.82s	remaining: 1.08s
253:	learn: 9.4238859	total: 5.84s	remaining: 1.06s
254:	learn: 9.3792324	total: 5.86s	remaining: 1.03s
255:	learn: 9.3552571	total: 5.88s	remaining: 1.01s
256:	learn: 9.3036260	total: 5.91s	remaining: 988ms
257:	learn: 9.2868142	total: 5.92s	remaining: 965ms
258:	learn: 9.2740504	total: 5.95s	remaining: 941ms
259:	learn: 9.2329336	total: 5.96s	remaining: 918ms
260:	learn: 9.2190698	total: 5.99s	remaining: 894ms
261:	learn: 9.2074817	total: 6.01s	remaining: 872ms
262:	learn: 9.1724174	total: 6.04s	remaining: 849ms
263:	learn: 9.1293699	total: 6.06s	remaining: 827ms
264:	learn: 9.1025091	total: 6.08s	remaining: 804ms
265:	learn: 9.0893697	total: 6.11s	remaining: 781ms
266:	learn: 9.0733581	total: 6.13s	remaining: 758ms
267:	learn: 9.0599268	total: 6.15s	remaining: 734ms
268:	learn: 9.0277334	total: 6.17s	remaining: 711ms
269:	learn: 8.9860960	total: 6.19s	remaining: 688ms
270:	learn: 8.9478404	total: 6.21s	remaining: 665ms
271:	learn: 8.9074990	total: 6.23s	remaining: 642ms
272:	learn: 8.8851827	total: 6.26s	remaining: 619ms
273:	learn: 8.8741463	total: 6.28s	remaining: 596ms
274:	learn: 8.8422813	total: 6.3s	remaining: 573ms
275:	learn: 8.7887362	total: 6.32s	remaining: 550ms
276:	learn: 8.7766205	total: 6.34s	remaining: 527ms
277:	learn: 8.7606125	total: 6.37s	remaining: 504ms
278:	learn: 8.7302098	total: 6.39s	remaining: 481ms
279:	learn: 8.7180658	total: 6.41s	remaining: 458ms
280:	learn: 8.6784364	total: 6.43s	remaining: 435ms
281:	learn: 8.6341139	total: 6.46s	remaining: 412ms
282:	learn: 8.6092132	total: 6.48s	remaining: 389ms
283:	learn: 8.5723040	total: 6.51s	remaining: 367ms
284:	learn: 8.5318798	total: 6.53s	remaining: 344ms
285:	learn: 8.5051575	total: 6.55s	remaining: 321ms
286:	learn: 8.4896135	total: 6.58s	remaining: 298ms
287:	learn: 8.4665233	total: 6.61s	remaining: 275ms
288:	learn: 8.4563622	total: 6.63s	remaining: 252ms
289:	learn: 8.4221661	total: 6.66s	remaining: 230ms
290:	learn: 8.3953479	total: 6.69s	remaining: 207ms
291:	learn: 8.3735779	total: 6.72s	remaining: 184ms
292:	learn: 8.3452844	total: 6.75s	remaining: 161ms
293:	learn: 8.3141538	total: 6.77s	remaining: 138ms
294:	learn: 8.3014432	total: 6.79s	remaining: 115ms
295:	learn: 8.2802794	total: 6.82s	remaining: 92.1ms
296:	learn: 8.2485275	total: 6.84s	remaining: 69.1ms
297:	learn: 8.2239488	total: 6.86s	remaining: 46.1ms
298:	learn: 8.1877191	total: 6.89s	remaining: 23ms
299:	learn: 8.1551355	total: 6.92s	remaining: 0us
0:	learn: 27.6165091	total: 5.53ms	remaining: 547ms
1:	learn: 27.2156009	total: 10.3ms	remaining: 504ms
2:	learn: 26.8744169	total: 15.1ms	remaining: 489ms
3:	learn: 26.5530473	total: 19.8ms	remaining: 476ms
4:	learn: 26.1200739	total: 24.8ms	remaining: 471ms
5:	learn: 25.7559063	total: 29.4ms	remaining: 460ms
6:	learn: 25.3817459	total: 34ms	remaining: 452ms
7:	learn: 25.0780231	total: 39.3ms	remaining: 453ms
8:	learn: 24.7908836	total: 44.2ms	remaining: 446ms
9:	learn: 24.5023726	total: 48.7ms	remaining: 438ms
10:	learn: 24.2430447	total: 53.9ms	remaining: 436ms
11:	learn: 24.0150987	total: 59.2ms	remaining: 434ms
12:	learn: 23.6832732	total: 64ms	remaining: 428ms
13:	learn: 23.4512462	total: 69.9ms	remaining: 429ms
14:	learn: 23.2300808	total: 75.2ms	remaining: 426ms
15:	learn: 23.0198192	total: 81.6ms	remaining: 428ms
16:	learn: 22.7757356	total: 90.9ms	remaining: 444ms
17:	learn: 22.4962727	total: 98.9ms	remaining: 451ms
18:	learn: 22.2131794	total: 106ms	remaining: 450ms
19:	learn: 21.9844087	total: 112ms	remaining: 447ms
20:	learn: 21.6467820	total: 118ms	remaining: 442ms
21:	learn: 21.4458045	total: 122ms	remaining: 434ms
22:	learn: 21.2706627	total: 128ms	remaining: 428ms
23:	learn: 21.0770166	total: 133ms	remaining: 422ms
24:	learn: 20.8871491	total: 138ms	remaining: 415ms
25:	learn: 20.7151270	total: 144ms	remaining: 409ms
26:	learn: 20.5585218	total: 149ms	remaining: 403ms
27:	learn: 20.4091128	total: 154ms	remaining: 397ms
28:	learn: 20.2343121	total: 160ms	remaining: 392ms
29:	learn: 20.0685862	total: 166ms	remaining: 386ms
30:	learn: 19.8339661	total: 171ms	remaining: 380ms
31:	learn: 19.6811138	total: 176ms	remaining: 374ms
32:	learn: 19.4881999	total: 181ms	remaining: 367ms
33:	learn: 19.3473429	total: 186ms	remaining: 362ms
34:	learn: 19.1087185	total: 192ms	remaining: 356ms
35:	learn: 18.9817724	total: 197ms	remaining: 350ms
36:	learn: 18.8465124	total: 202ms	remaining: 344ms
37:	learn: 18.6998182	total: 208ms	remaining: 339ms
38:	learn: 18.5534881	total: 213ms	remaining: 333ms
39:	learn: 18.4221213	total: 218ms	remaining: 327ms
40:	learn: 18.3262428	total: 223ms	remaining: 321ms
41:	learn: 18.2018519	total: 228ms	remaining: 315ms
42:	learn: 18.0704402	total: 234ms	remaining: 310ms
43:	learn: 17.9674737	total: 239ms	remaining: 304ms
44:	learn: 17.8092746	total: 244ms	remaining: 299ms
45:	learn: 17.7036671	total: 250ms	remaining: 293ms
46:	learn: 17.5636023	total: 255ms	remaining: 288ms
47:	learn: 17.3922671	total: 261ms	remaining: 282ms
48:	learn: 17.2777727	total: 267ms	remaining: 278ms
49:	learn: 17.1901866	total: 272ms	remaining: 272ms
50:	learn: 17.0799264	total: 278ms	remaining: 267ms
51:	learn: 17.0022808	total: 283ms	remaining: 261ms
52:	learn: 16.9193737	total: 288ms	remaining: 256ms
53:	learn: 16.8349324	total: 296ms	remaining: 252ms
54:	learn: 16.7122802	total: 305ms	remaining: 249ms
55:	learn: 16.5736462	total: 317ms	remaining: 249ms
56:	learn: 16.4576798	total: 324ms	remaining: 244ms
57:	learn: 16.3336075	total: 330ms	remaining: 239ms
58:	learn: 16.2578113	total: 336ms	remaining: 233ms
59:	learn: 16.1586938	total: 341ms	remaining: 228ms
60:	learn: 16.0827831	total: 347ms	remaining: 222ms
61:	learn: 16.0030150	total: 353ms	remaining: 216ms
62:	learn: 15.8741662	total: 359ms	remaining: 211ms
63:	learn: 15.7533897	total: 365ms	remaining: 205ms
64:	learn: 15.6743804	total: 371ms	remaining: 200ms
65:	learn: 15.6291324	total: 376ms	remaining: 194ms
66:	learn: 15.5363523	total: 382ms	remaining: 188ms
67:	learn: 15.4675550	total: 389ms	remaining: 183ms
68:	learn: 15.3959873	total: 395ms	remaining: 178ms
69:	learn: 15.3222045	total: 401ms	remaining: 172ms
70:	learn: 15.2343883	total: 406ms	remaining: 166ms
71:	learn: 15.1891070	total: 411ms	remaining: 160ms
72:	learn: 15.1320798	total: 416ms	remaining: 154ms
73:	learn: 15.0590468	total: 421ms	remaining: 148ms
74:	learn: 14.9682726	total: 426ms	remaining: 142ms
75:	learn: 14.8868528	total: 431ms	remaining: 136ms
76:	learn: 14.8046328	total: 436ms	remaining: 130ms
77:	learn: 14.7253152	total: 441ms	remaining: 124ms
78:	learn: 14.6438207	total: 446ms	remaining: 119ms
79:	learn: 14.5350651	total: 451ms	remaining: 113ms
80:	learn: 14.4301800	total: 457ms	remaining: 107ms
81:	learn: 14.3716251	total: 463ms	remaining: 102ms
82:	learn: 14.3127586	total: 468ms	remaining: 95.9ms
83:	learn: 14.2685086	total: 474ms	remaining: 90.3ms
84:	learn: 14.1936111	total: 480ms	remaining: 84.7ms
85:	learn: 14.1488261	total: 485ms	remaining: 79ms
86:	learn: 14.0654602	total: 491ms	remaining: 73.3ms
87:	learn: 14.0026195	total: 496ms	remaining: 67.6ms
88:	learn: 13.9498697	total: 501ms	remaining: 62ms
89:	learn: 13.9002477	total: 511ms	remaining: 56.8ms
90:	learn: 13.8429017	total: 520ms	remaining: 51.4ms
91:	learn: 13.7892130	total: 527ms	remaining: 45.8ms
92:	learn: 13.7122418	total: 532ms	remaining: 40.1ms
93:	learn: 13.6752324	total: 539ms	remaining: 34.4ms
94:	learn: 13.6186680	total: 544ms	remaining: 28.6ms
95:	learn: 13.5578384	total: 549ms	remaining: 22.9ms
96:	learn: 13.5028120	total: 554ms	remaining: 17.1ms
97:	learn: 13.4306895	total: 559ms	remaining: 11.4ms
98:	learn: 13.3955813	total: 564ms	remaining: 5.7ms
99:	learn: 13.3380095	total: 570ms	remaining: 0us
0:	learn: 42.9675374	total: 5.52ms	remaining: 547ms
1:	learn: 42.2542078	total: 10.3ms	remaining: 504ms
2:	learn: 41.5532166	total: 15.6ms	remaining: 504ms
3:	learn: 40.7812113	total: 20.8ms	remaining: 499ms
4:	learn: 39.8819601	total: 25.6ms	remaining: 486ms
5:	learn: 39.0997229	total: 27.5ms	remaining: 431ms
6:	learn: 38.2185623	total: 32.7ms	remaining: 434ms
7:	learn: 37.5465645	total: 37.9ms	remaining: 435ms
8:	learn: 36.8449555	total: 42.5ms	remaining: 430ms
9:	learn: 36.0912815	total: 47.9ms	remaining: 432ms
10:	learn: 35.5776470	total: 53.2ms	remaining: 431ms
11:	learn: 34.7845329	total: 58ms	remaining: 426ms
12:	learn: 34.1574031	total: 63.6ms	remaining: 425ms
13:	learn: 33.4950652	total: 68.5ms	remaining: 421ms
14:	learn: 32.9343881	total: 74.1ms	remaining: 420ms
15:	learn: 32.4356238	total: 79.4ms	remaining: 417ms
16:	learn: 31.8370592	total: 85ms	remaining: 415ms
17:	learn: 31.2122644	total: 90.1ms	remaining: 411ms
18:	learn: 30.7195190	total: 96.9ms	remaining: 413ms
19:	learn: 30.1548478	total: 107ms	remaining: 426ms
20:	learn: 29.6521001	total: 115ms	remaining: 432ms
21:	learn: 29.1746988	total: 122ms	remaining: 433ms
22:	learn: 28.6492690	total: 130ms	remaining: 435ms
23:	learn: 28.1958339	total: 136ms	remaining: 430ms
24:	learn: 27.9126674	total: 142ms	remaining: 425ms
25:	learn: 27.5059508	total: 147ms	remaining: 420ms
26:	learn: 27.0869176	total: 153ms	remaining: 414ms
27:	learn: 26.6545277	total: 159ms	remaining: 410ms
28:	learn: 26.2388575	total: 165ms	remaining: 404ms
29:	learn: 25.8957708	total: 172ms	remaining: 401ms
30:	learn: 25.5045901	total: 178ms	remaining: 396ms
31:	learn: 25.2559530	total: 183ms	remaining: 390ms
32:	learn: 24.9012566	total: 190ms	remaining: 385ms
33:	learn: 24.5601820	total: 196ms	remaining: 381ms
34:	learn: 24.2407285	total: 201ms	remaining: 374ms
35:	learn: 23.9481769	total: 206ms	remaining: 367ms
36:	learn: 23.6746994	total: 212ms	remaining: 360ms
37:	learn: 23.4470352	total: 217ms	remaining: 354ms
38:	learn: 23.1678305	total: 223ms	remaining: 348ms
39:	learn: 22.9660692	total: 228ms	remaining: 342ms
40:	learn: 22.7102548	total: 234ms	remaining: 336ms
41:	learn: 22.5152447	total: 239ms	remaining: 330ms
42:	learn: 22.2967100	total: 244ms	remaining: 323ms
43:	learn: 22.0869517	total: 249ms	remaining: 317ms
44:	learn: 21.8556497	total: 255ms	remaining: 311ms
45:	learn: 21.7036804	total: 260ms	remaining: 305ms
46:	learn: 21.4792011	total: 265ms	remaining: 299ms
47:	learn: 21.2830384	total: 271ms	remaining: 293ms
48:	learn: 21.0771837	total: 276ms	remaining: 287ms
49:	learn: 20.8824468	total: 282ms	remaining: 282ms
50:	learn: 20.7250875	total: 287ms	remaining: 276ms
51:	learn: 20.5564423	total: 297ms	remaining: 274ms
52:	learn: 20.4067403	total: 305ms	remaining: 271ms
53:	learn: 20.2674808	total: 312ms	remaining: 266ms
54:	learn: 20.1394249	total: 319ms	remaining: 261ms
55:	learn: 19.9748016	total: 324ms	remaining: 255ms
56:	learn: 19.8159522	total: 329ms	remaining: 248ms
57:	learn: 19.6811073	total: 334ms	remaining: 242ms
58:	learn: 19.5083232	total: 339ms	remaining: 236ms
59:	learn: 19.3949390	total: 341ms	remaining: 227ms
60:	learn: 19.2485728	total: 347ms	remaining: 222ms
61:	learn: 19.1255523	total: 352ms	remaining: 216ms
62:	learn: 18.9423320	total: 357ms	remaining: 210ms
63:	learn: 18.7794545	total: 362ms	remaining: 204ms
64:	learn: 18.6339033	total: 368ms	remaining: 198ms
65:	learn: 18.5188724	total: 373ms	remaining: 192ms
66:	learn: 18.3398412	total: 378ms	remaining: 186ms
67:	learn: 18.2873427	total: 383ms	remaining: 180ms
68:	learn: 18.1287092	total: 388ms	remaining: 174ms
69:	learn: 18.0163474	total: 393ms	remaining: 169ms
70:	learn: 17.9428395	total: 398ms	remaining: 163ms
71:	learn: 17.7906087	total: 403ms	remaining: 157ms
72:	learn: 17.6121088	total: 408ms	remaining: 151ms
73:	learn: 17.5136572	total: 414ms	remaining: 145ms
74:	learn: 17.3837993	total: 419ms	remaining: 140ms
75:	learn: 17.3015647	total: 425ms	remaining: 134ms
76:	learn: 17.1991252	total: 430ms	remaining: 128ms
77:	learn: 17.0854777	total: 435ms	remaining: 123ms
78:	learn: 17.0308269	total: 439ms	remaining: 117ms
79:	learn: 16.9754807	total: 445ms	remaining: 111ms
80:	learn: 16.9174907	total: 449ms	remaining: 105ms
81:	learn: 16.7962603	total: 455ms	remaining: 99.8ms
82:	learn: 16.6685446	total: 460ms	remaining: 94.3ms
83:	learn: 16.5812672	total: 467ms	remaining: 88.9ms
84:	learn: 16.4896026	total: 475ms	remaining: 83.8ms
85:	learn: 16.4023414	total: 482ms	remaining: 78.4ms
86:	learn: 16.3093718	total: 489ms	remaining: 73.1ms
87:	learn: 16.2409040	total: 495ms	remaining: 67.5ms
88:	learn: 16.1616213	total: 502ms	remaining: 62.1ms
89:	learn: 16.0825203	total: 509ms	remaining: 56.5ms
90:	learn: 16.0204931	total: 514ms	remaining: 50.9ms
91:	learn: 15.9741267	total: 521ms	remaining: 45.3ms
92:	learn: 15.9413725	total: 527ms	remaining: 39.7ms
93:	learn: 15.8762295	total: 534ms	remaining: 34.1ms
94:	learn: 15.8165812	total: 540ms	remaining: 28.4ms
95:	learn: 15.7244343	total: 546ms	remaining: 22.8ms
96:	learn: 15.6537033	total: 552ms	remaining: 17.1ms
97:	learn: 15.6052320	total: 558ms	remaining: 11.4ms
98:	learn: 15.5434930	total: 563ms	remaining: 5.69ms
99:	learn: 15.4452106	total: 569ms	remaining: 0us
0:	learn: 46.5387280	total: 5.33ms	remaining: 528ms
1:	learn: 45.8605074	total: 10.1ms	remaining: 494ms
2:	learn: 45.2237152	total: 14.9ms	remaining: 482ms
3:	learn: 44.4158454	total: 19.8ms	remaining: 475ms
4:	learn: 43.7177384	total: 24.7ms	remaining: 470ms
5:	learn: 42.9896372	total: 29.6ms	remaining: 464ms
6:	learn: 42.3639431	total: 34.7ms	remaining: 461ms
7:	learn: 41.6648406	total: 39.2ms	remaining: 451ms
8:	learn: 41.0681442	total: 44.5ms	remaining: 450ms
9:	learn: 40.4478745	total: 49.8ms	remaining: 448ms
10:	learn: 40.0398470	total: 55ms	remaining: 445ms
11:	learn: 39.3300888	total: 60.3ms	remaining: 442ms
12:	learn: 38.9198991	total: 65.5ms	remaining: 438ms
13:	learn: 38.4022666	total: 73.7ms	remaining: 453ms
14:	learn: 37.9124629	total: 82.1ms	remaining: 465ms
15:	learn: 37.3846174	total: 90.2ms	remaining: 474ms
16:	learn: 36.8502348	total: 96ms	remaining: 469ms
17:	learn: 36.5079755	total: 103ms	remaining: 468ms
18:	learn: 36.1239339	total: 108ms	remaining: 460ms
19:	learn: 35.8388688	total: 113ms	remaining: 451ms
20:	learn: 35.4915710	total: 118ms	remaining: 444ms
21:	learn: 34.9483623	total: 123ms	remaining: 436ms
22:	learn: 34.6033866	total: 128ms	remaining: 430ms
23:	learn: 34.1483341	total: 134ms	remaining: 423ms
24:	learn: 33.7626484	total: 139ms	remaining: 417ms
25:	learn: 33.4160820	total: 144ms	remaining: 410ms
26:	learn: 33.0421483	total: 149ms	remaining: 403ms
27:	learn: 32.6573469	total: 154ms	remaining: 397ms
28:	learn: 32.2672417	total: 160ms	remaining: 391ms
29:	learn: 31.8257441	total: 165ms	remaining: 384ms
30:	learn: 31.3394923	total: 170ms	remaining: 378ms
31:	learn: 30.9472894	total: 175ms	remaining: 373ms
32:	learn: 30.6961423	total: 181ms	remaining: 367ms
33:	learn: 30.4670615	total: 186ms	remaining: 361ms
34:	learn: 30.1495001	total: 191ms	remaining: 355ms
35:	learn: 29.8071763	total: 196ms	remaining: 349ms
36:	learn: 29.5255984	total: 202ms	remaining: 344ms
37:	learn: 29.2236758	total: 207ms	remaining: 338ms
38:	learn: 28.9199699	total: 213ms	remaining: 333ms
39:	learn: 28.7003989	total: 218ms	remaining: 327ms
40:	learn: 28.4681160	total: 223ms	remaining: 322ms
41:	learn: 28.2692668	total: 229ms	remaining: 316ms
42:	learn: 27.9327254	total: 234ms	remaining: 311ms
43:	learn: 27.7193597	total: 240ms	remaining: 305ms
44:	learn: 27.4061006	total: 245ms	remaining: 300ms
45:	learn: 27.1840910	total: 251ms	remaining: 294ms
46:	learn: 26.8943816	total: 256ms	remaining: 289ms
47:	learn: 26.6576617	total: 262ms	remaining: 284ms
48:	learn: 26.3230094	total: 270ms	remaining: 281ms
49:	learn: 26.0488483	total: 280ms	remaining: 280ms
50:	learn: 25.7795537	total: 292ms	remaining: 281ms
51:	learn: 25.6103781	total: 301ms	remaining: 278ms
52:	learn: 25.4107383	total: 307ms	remaining: 272ms
53:	learn: 25.1757211	total: 314ms	remaining: 268ms
54:	learn: 24.8949842	total: 321ms	remaining: 263ms
55:	learn: 24.7028694	total: 328ms	remaining: 258ms
56:	learn: 24.4033555	total: 335ms	remaining: 253ms
57:	learn: 24.2109268	total: 341ms	remaining: 247ms
58:	learn: 24.0697623	total: 348ms	remaining: 242ms
59:	learn: 23.8291672	total: 353ms	remaining: 235ms
60:	learn: 23.5972471	total: 359ms	remaining: 229ms
61:	learn: 23.4241182	total: 365ms	remaining: 224ms
62:	learn: 23.2617022	total: 371ms	remaining: 218ms
63:	learn: 23.0329448	total: 376ms	remaining: 211ms
64:	learn: 22.9108081	total: 381ms	remaining: 205ms
65:	learn: 22.8001962	total: 385ms	remaining: 199ms
66:	learn: 22.6861907	total: 390ms	remaining: 192ms
67:	learn: 22.5152895	total: 395ms	remaining: 186ms
68:	learn: 22.3734214	total: 400ms	remaining: 180ms
69:	learn: 22.1840754	total: 405ms	remaining: 173ms
70:	learn: 22.0732908	total: 409ms	remaining: 167ms
71:	learn: 21.8880456	total: 414ms	remaining: 161ms
72:	learn: 21.7838784	total: 419ms	remaining: 155ms
73:	learn: 21.5532885	total: 424ms	remaining: 149ms
74:	learn: 21.3998735	total: 429ms	remaining: 143ms
75:	learn: 21.2699824	total: 434ms	remaining: 137ms
76:	learn: 21.1077652	total: 438ms	remaining: 131ms
77:	learn: 20.9759102	total: 443ms	remaining: 125ms
78:	learn: 20.7531342	total: 452ms	remaining: 120ms
79:	learn: 20.6729631	total: 460ms	remaining: 115ms
80:	learn: 20.4903474	total: 467ms	remaining: 110ms
81:	learn: 20.3708622	total: 473ms	remaining: 104ms
82:	learn: 20.2627857	total: 479ms	remaining: 98.2ms
83:	learn: 20.1335464	total: 487ms	remaining: 92.7ms
84:	learn: 20.0100864	total: 492ms	remaining: 86.8ms
85:	learn: 19.9374357	total: 496ms	remaining: 80.8ms
86:	learn: 19.8383097	total: 501ms	remaining: 74.9ms
87:	learn: 19.7804443	total: 506ms	remaining: 69ms
88:	learn: 19.7225631	total: 511ms	remaining: 63.2ms
89:	learn: 19.5851849	total: 516ms	remaining: 57.3ms
90:	learn: 19.5115923	total: 521ms	remaining: 51.5ms
91:	learn: 19.3986485	total: 525ms	remaining: 45.7ms
92:	learn: 19.2465728	total: 530ms	remaining: 39.9ms
93:	learn: 19.2033796	total: 536ms	remaining: 34.2ms
94:	learn: 19.1234096	total: 541ms	remaining: 28.5ms
95:	learn: 19.0080161	total: 546ms	remaining: 22.7ms
96:	learn: 18.9048698	total: 550ms	remaining: 17ms
97:	learn: 18.7901500	total: 556ms	remaining: 11.3ms
98:	learn: 18.6759882	total: 561ms	remaining: 5.66ms
99:	learn: 18.6254590	total: 566ms	remaining: 0us
0:	learn: 46.0359105	total: 5.4ms	remaining: 535ms
1:	learn: 45.4503059	total: 10.6ms	remaining: 518ms
2:	learn: 44.6478680	total: 16.1ms	remaining: 521ms
3:	learn: 43.7932387	total: 21ms	remaining: 503ms
4:	learn: 43.2236036	total: 25.9ms	remaining: 492ms
5:	learn: 42.4339181	total: 31.2ms	remaining: 489ms
6:	learn: 41.8906461	total: 36.5ms	remaining: 485ms
7:	learn: 41.2248707	total: 41.7ms	remaining: 479ms
8:	learn: 40.5934570	total: 46.9ms	remaining: 474ms
9:	learn: 39.9204661	total: 52.2ms	remaining: 470ms
10:	learn: 39.3972458	total: 60.8ms	remaining: 492ms
11:	learn: 38.9220493	total: 69.9ms	remaining: 513ms
12:	learn: 38.2358406	total: 80.3ms	remaining: 538ms
13:	learn: 37.7089336	total: 89.1ms	remaining: 548ms
14:	learn: 37.3714255	total: 94.9ms	remaining: 538ms
15:	learn: 36.8098537	total: 101ms	remaining: 528ms
16:	learn: 36.2818695	total: 106ms	remaining: 519ms
17:	learn: 35.8807734	total: 112ms	remaining: 509ms
18:	learn: 35.3850720	total: 118ms	remaining: 502ms
19:	learn: 35.0622365	total: 123ms	remaining: 494ms
20:	learn: 34.7088655	total: 129ms	remaining: 485ms
21:	learn: 34.2869861	total: 134ms	remaining: 476ms
22:	learn: 33.9798756	total: 140ms	remaining: 467ms
23:	learn: 33.6933850	total: 145ms	remaining: 460ms
24:	learn: 33.3542725	total: 151ms	remaining: 453ms
25:	learn: 33.1531104	total: 156ms	remaining: 444ms
26:	learn: 32.7581499	total: 161ms	remaining: 435ms
27:	learn: 32.4953289	total: 166ms	remaining: 426ms
28:	learn: 32.1636511	total: 170ms	remaining: 417ms
29:	learn: 31.7179908	total: 175ms	remaining: 408ms
30:	learn: 31.2828971	total: 180ms	remaining: 400ms
31:	learn: 30.8954632	total: 185ms	remaining: 392ms
32:	learn: 30.6156466	total: 190ms	remaining: 385ms
33:	learn: 30.4325331	total: 194ms	remaining: 377ms
34:	learn: 30.1680270	total: 199ms	remaining: 370ms
35:	learn: 29.8372162	total: 204ms	remaining: 362ms
36:	learn: 29.5018241	total: 208ms	remaining: 355ms
37:	learn: 29.2660228	total: 213ms	remaining: 348ms
38:	learn: 28.9172883	total: 218ms	remaining: 341ms
39:	learn: 28.7004790	total: 223ms	remaining: 334ms
40:	learn: 28.5188438	total: 228ms	remaining: 328ms
41:	learn: 28.3064887	total: 233ms	remaining: 322ms
42:	learn: 27.9584462	total: 238ms	remaining: 315ms
43:	learn: 27.6654603	total: 243ms	remaining: 309ms
44:	learn: 27.3698139	total: 248ms	remaining: 303ms
45:	learn: 27.1825629	total: 253ms	remaining: 297ms
46:	learn: 26.9938719	total: 258ms	remaining: 291ms
47:	learn: 26.7385850	total: 263ms	remaining: 285ms
48:	learn: 26.5055251	total: 269ms	remaining: 280ms
49:	learn: 26.3264840	total: 278ms	remaining: 278ms
50:	learn: 26.1314307	total: 286ms	remaining: 275ms
51:	learn: 25.9514770	total: 293ms	remaining: 271ms
52:	learn: 25.7272663	total: 299ms	remaining: 265ms
53:	learn: 25.4554234	total: 305ms	remaining: 260ms
54:	learn: 25.2133674	total: 310ms	remaining: 253ms
55:	learn: 24.9612149	total: 315ms	remaining: 247ms
56:	learn: 24.6788780	total: 320ms	remaining: 241ms
57:	learn: 24.4504703	total: 324ms	remaining: 235ms
58:	learn: 24.3261542	total: 329ms	remaining: 228ms
59:	learn: 24.1217621	total: 334ms	remaining: 222ms
60:	learn: 23.9495725	total: 339ms	remaining: 217ms
61:	learn: 23.7848565	total: 344ms	remaining: 211ms
62:	learn: 23.6627081	total: 349ms	remaining: 205ms
63:	learn: 23.4390407	total: 354ms	remaining: 199ms
64:	learn: 23.2556312	total: 359ms	remaining: 193ms
65:	learn: 23.1796337	total: 364ms	remaining: 187ms
66:	learn: 23.0431987	total: 369ms	remaining: 182ms
67:	learn: 22.9300366	total: 373ms	remaining: 176ms
68:	learn: 22.8321895	total: 378ms	remaining: 170ms
69:	learn: 22.7825840	total: 383ms	remaining: 164ms
70:	learn: 22.6907764	total: 387ms	remaining: 158ms
71:	learn: 22.5080460	total: 392ms	remaining: 153ms
72:	learn: 22.4053282	total: 397ms	remaining: 147ms
73:	learn: 22.2698085	total: 402ms	remaining: 141ms
74:	learn: 22.0951825	total: 407ms	remaining: 136ms
75:	learn: 21.9933994	total: 411ms	remaining: 130ms
76:	learn: 21.8043413	total: 416ms	remaining: 124ms
77:	learn: 21.7259032	total: 420ms	remaining: 119ms
78:	learn: 21.5625358	total: 426ms	remaining: 113ms
79:	learn: 21.4316837	total: 430ms	remaining: 108ms
80:	learn: 21.2270985	total: 435ms	remaining: 102ms
81:	learn: 21.1248573	total: 440ms	remaining: 96.6ms
82:	learn: 21.0879584	total: 445ms	remaining: 91.1ms
83:	learn: 20.9810177	total: 450ms	remaining: 85.7ms
84:	learn: 20.8986744	total: 455ms	remaining: 80.3ms
85:	learn: 20.8427245	total: 460ms	remaining: 74.9ms
86:	learn: 20.7158681	total: 465ms	remaining: 69.5ms
87:	learn: 20.6055502	total: 472ms	remaining: 64.3ms
88:	learn: 20.5302059	total: 481ms	remaining: 59.4ms
89:	learn: 20.3936827	total: 491ms	remaining: 54.5ms
90:	learn: 20.2756993	total: 498ms	remaining: 49.3ms
91:	learn: 20.1882826	total: 506ms	remaining: 44ms
92:	learn: 20.0346875	total: 511ms	remaining: 38.5ms
93:	learn: 19.9798652	total: 517ms	remaining: 33ms
94:	learn: 19.9020384	total: 523ms	remaining: 27.5ms
95:	learn: 19.8463755	total: 528ms	remaining: 22ms
96:	learn: 19.7426458	total: 534ms	remaining: 16.5ms
97:	learn: 19.6728655	total: 539ms	remaining: 11ms
98:	learn: 19.6355104	total: 545ms	remaining: 5.5ms
99:	learn: 19.6074086	total: 551ms	remaining: 0us
0:	learn: 46.7817285	total: 5.04ms	remaining: 499ms
1:	learn: 45.9551634	total: 9.72ms	remaining: 476ms
2:	learn: 45.0274369	total: 14.8ms	remaining: 479ms
3:	learn: 44.5000950	total: 19.4ms	remaining: 466ms
4:	learn: 43.8963632	total: 24.1ms	remaining: 457ms
5:	learn: 43.2314124	total: 29.1ms	remaining: 456ms
6:	learn: 42.5780140	total: 33.8ms	remaining: 449ms
7:	learn: 41.9033077	total: 38.7ms	remaining: 445ms
8:	learn: 41.3161907	total: 43.6ms	remaining: 441ms
9:	learn: 40.7747000	total: 48.3ms	remaining: 435ms
10:	learn: 40.2728122	total: 52.9ms	remaining: 428ms
11:	learn: 39.7786608	total: 58.2ms	remaining: 427ms
12:	learn: 39.0812090	total: 63.3ms	remaining: 423ms
13:	learn: 38.6205762	total: 68.4ms	remaining: 420ms
14:	learn: 38.2894236	total: 73.3ms	remaining: 415ms
15:	learn: 37.6906364	total: 78.4ms	remaining: 412ms
16:	learn: 37.3014849	total: 86.6ms	remaining: 423ms
17:	learn: 36.9268494	total: 97.2ms	remaining: 443ms
18:	learn: 36.6348717	total: 107ms	remaining: 456ms
19:	learn: 36.1567831	total: 113ms	remaining: 450ms
20:	learn: 35.8080754	total: 119ms	remaining: 449ms
21:	learn: 35.4288913	total: 124ms	remaining: 440ms
22:	learn: 35.0910168	total: 129ms	remaining: 431ms
23:	learn: 34.7483277	total: 133ms	remaining: 422ms
24:	learn: 34.5077203	total: 138ms	remaining: 414ms
25:	learn: 34.1830247	total: 143ms	remaining: 406ms
26:	learn: 33.7943837	total: 147ms	remaining: 399ms
27:	learn: 33.3736582	total: 152ms	remaining: 391ms
28:	learn: 32.9133996	total: 157ms	remaining: 384ms
29:	learn: 32.4361653	total: 162ms	remaining: 377ms
30:	learn: 31.9630085	total: 166ms	remaining: 370ms
31:	learn: 31.5994894	total: 171ms	remaining: 364ms
32:	learn: 31.3120059	total: 176ms	remaining: 357ms
33:	learn: 31.0991187	total: 180ms	remaining: 350ms
34:	learn: 30.8055118	total: 185ms	remaining: 344ms
35:	learn: 30.5197359	total: 190ms	remaining: 338ms
36:	learn: 30.1975315	total: 195ms	remaining: 332ms
37:	learn: 29.9797615	total: 200ms	remaining: 326ms
38:	learn: 29.6874864	total: 205ms	remaining: 320ms
39:	learn: 29.4139907	total: 210ms	remaining: 315ms
40:	learn: 29.0472151	total: 214ms	remaining: 309ms
41:	learn: 28.8356285	total: 219ms	remaining: 303ms
42:	learn: 28.5099349	total: 224ms	remaining: 297ms
43:	learn: 28.2009716	total: 229ms	remaining: 291ms
44:	learn: 27.8947534	total: 234ms	remaining: 286ms
45:	learn: 27.6149698	total: 238ms	remaining: 280ms
46:	learn: 27.4780860	total: 243ms	remaining: 274ms
47:	learn: 27.2859119	total: 247ms	remaining: 268ms
48:	learn: 27.0572191	total: 252ms	remaining: 262ms
49:	learn: 26.8916263	total: 257ms	remaining: 257ms
50:	learn: 26.6791967	total: 262ms	remaining: 252ms
51:	learn: 26.4917307	total: 267ms	remaining: 247ms
52:	learn: 26.2957036	total: 272ms	remaining: 241ms
53:	learn: 26.1116543	total: 277ms	remaining: 236ms
54:	learn: 25.8593319	total: 283ms	remaining: 231ms
55:	learn: 25.6957296	total: 292ms	remaining: 230ms
56:	learn: 25.5065213	total: 303ms	remaining: 229ms
57:	learn: 25.3525337	total: 311ms	remaining: 225ms
58:	learn: 25.2197494	total: 318ms	remaining: 221ms
59:	learn: 25.0583799	total: 324ms	remaining: 216ms
60:	learn: 24.8432659	total: 330ms	remaining: 211ms
61:	learn: 24.6585337	total: 335ms	remaining: 205ms
62:	learn: 24.5382571	total: 341ms	remaining: 200ms
63:	learn: 24.3596337	total: 347ms	remaining: 195ms
64:	learn: 24.2009033	total: 352ms	remaining: 190ms
65:	learn: 24.0964080	total: 358ms	remaining: 184ms
66:	learn: 23.9765920	total: 364ms	remaining: 179ms
67:	learn: 23.8638384	total: 369ms	remaining: 174ms
68:	learn: 23.7381861	total: 375ms	remaining: 168ms
69:	learn: 23.5620129	total: 381ms	remaining: 163ms
70:	learn: 23.4494830	total: 386ms	remaining: 158ms
71:	learn: 23.3095806	total: 391ms	remaining: 152ms
72:	learn: 23.1441767	total: 396ms	remaining: 147ms
73:	learn: 22.9983446	total: 401ms	remaining: 141ms
74:	learn: 22.8464764	total: 406ms	remaining: 135ms
75:	learn: 22.7606423	total: 411ms	remaining: 130ms
76:	learn: 22.6095905	total: 416ms	remaining: 124ms
77:	learn: 22.4430506	total: 421ms	remaining: 119ms
78:	learn: 22.2925872	total: 426ms	remaining: 113ms
79:	learn: 22.1806286	total: 430ms	remaining: 108ms
80:	learn: 22.0070525	total: 436ms	remaining: 102ms
81:	learn: 21.9114201	total: 441ms	remaining: 96.8ms
82:	learn: 21.7742884	total: 446ms	remaining: 91.3ms
83:	learn: 21.6372857	total: 451ms	remaining: 85.9ms
84:	learn: 21.5380397	total: 456ms	remaining: 80.4ms
85:	learn: 21.4730146	total: 461ms	remaining: 75ms
86:	learn: 21.3236516	total: 469ms	remaining: 70.1ms
87:	learn: 21.2512101	total: 476ms	remaining: 65ms
88:	learn: 21.2192883	total: 483ms	remaining: 59.7ms
89:	learn: 21.0457926	total: 491ms	remaining: 54.5ms
90:	learn: 20.9986980	total: 497ms	remaining: 49.2ms
91:	learn: 20.9040032	total: 503ms	remaining: 43.7ms
92:	learn: 20.7178547	total: 508ms	remaining: 38.2ms
93:	learn: 20.6535030	total: 513ms	remaining: 32.7ms
94:	learn: 20.5641982	total: 518ms	remaining: 27.3ms
95:	learn: 20.5355409	total: 523ms	remaining: 21.8ms
96:	learn: 20.4496493	total: 527ms	remaining: 16.3ms
97:	learn: 20.3579862	total: 532ms	remaining: 10.9ms
98:	learn: 20.2442476	total: 537ms	remaining: 5.42ms
99:	learn: 20.1075813	total: 542ms	remaining: 0us
0:	learn: 27.6165091	total: 12.1ms	remaining: 1.19s
1:	learn: 27.2156009	total: 16.7ms	remaining: 816ms
2:	learn: 26.8744169	total: 22ms	remaining: 710ms
3:	learn: 26.5530473	total: 26.6ms	remaining: 638ms
4:	learn: 26.1200739	total: 31.2ms	remaining: 594ms
5:	learn: 25.7559063	total: 36.1ms	remaining: 566ms
6:	learn: 25.3817459	total: 41.5ms	remaining: 551ms
7:	learn: 25.0780231	total: 46.4ms	remaining: 534ms
8:	learn: 24.7908836	total: 51.3ms	remaining: 519ms
9:	learn: 24.5023726	total: 56.7ms	remaining: 511ms
10:	learn: 24.2430447	total: 61.9ms	remaining: 501ms
11:	learn: 24.0150987	total: 66.8ms	remaining: 490ms
12:	learn: 23.6832732	total: 72.3ms	remaining: 484ms
13:	learn: 23.4512462	total: 77.5ms	remaining: 476ms
14:	learn: 23.2300808	total: 82.9ms	remaining: 470ms
15:	learn: 23.0198192	total: 88.6ms	remaining: 465ms
16:	learn: 22.7757356	total: 93.7ms	remaining: 458ms
17:	learn: 22.4962727	total: 98.9ms	remaining: 451ms
18:	learn: 22.2131794	total: 108ms	remaining: 462ms
19:	learn: 21.9844087	total: 119ms	remaining: 475ms
20:	learn: 21.6467820	total: 128ms	remaining: 480ms
21:	learn: 21.4458045	total: 136ms	remaining: 482ms
22:	learn: 21.2706627	total: 142ms	remaining: 475ms
23:	learn: 21.0770166	total: 148ms	remaining: 469ms
24:	learn: 20.8871491	total: 154ms	remaining: 461ms
25:	learn: 20.7151270	total: 160ms	remaining: 455ms
26:	learn: 20.5585218	total: 166ms	remaining: 448ms
27:	learn: 20.4091128	total: 172ms	remaining: 442ms
28:	learn: 20.2343121	total: 178ms	remaining: 436ms
29:	learn: 20.0685862	total: 184ms	remaining: 428ms
30:	learn: 19.8339661	total: 189ms	remaining: 420ms
31:	learn: 19.6811138	total: 195ms	remaining: 414ms
32:	learn: 19.4881999	total: 201ms	remaining: 407ms
33:	learn: 19.3473429	total: 205ms	remaining: 399ms
34:	learn: 19.1087185	total: 210ms	remaining: 391ms
35:	learn: 18.9817724	total: 215ms	remaining: 383ms
36:	learn: 18.8465124	total: 220ms	remaining: 374ms
37:	learn: 18.6998182	total: 225ms	remaining: 366ms
38:	learn: 18.5534881	total: 230ms	remaining: 359ms
39:	learn: 18.4221213	total: 234ms	remaining: 351ms
40:	learn: 18.3262428	total: 239ms	remaining: 344ms
41:	learn: 18.2018519	total: 244ms	remaining: 337ms
42:	learn: 18.0704402	total: 249ms	remaining: 330ms
43:	learn: 17.9674737	total: 254ms	remaining: 323ms
44:	learn: 17.8092746	total: 259ms	remaining: 316ms
45:	learn: 17.7036671	total: 264ms	remaining: 309ms
46:	learn: 17.5636023	total: 268ms	remaining: 303ms
47:	learn: 17.3922671	total: 273ms	remaining: 296ms
48:	learn: 17.2777727	total: 278ms	remaining: 290ms
49:	learn: 17.1901866	total: 284ms	remaining: 284ms
50:	learn: 17.0799264	total: 289ms	remaining: 277ms
51:	learn: 17.0022808	total: 294ms	remaining: 271ms
52:	learn: 16.9193737	total: 299ms	remaining: 265ms
53:	learn: 16.8349324	total: 308ms	remaining: 263ms
54:	learn: 16.7122802	total: 316ms	remaining: 259ms
55:	learn: 16.5736462	total: 322ms	remaining: 253ms
56:	learn: 16.4576798	total: 329ms	remaining: 248ms
57:	learn: 16.3336075	total: 334ms	remaining: 242ms
58:	learn: 16.2578113	total: 339ms	remaining: 235ms
59:	learn: 16.1586938	total: 343ms	remaining: 229ms
60:	learn: 16.0827831	total: 348ms	remaining: 222ms
61:	learn: 16.0030150	total: 353ms	remaining: 216ms
62:	learn: 15.8741662	total: 358ms	remaining: 210ms
63:	learn: 15.7533897	total: 362ms	remaining: 204ms
64:	learn: 15.6743804	total: 367ms	remaining: 198ms
65:	learn: 15.6291324	total: 372ms	remaining: 192ms
66:	learn: 15.5363523	total: 377ms	remaining: 185ms
67:	learn: 15.4675550	total: 382ms	remaining: 180ms
68:	learn: 15.3959873	total: 387ms	remaining: 174ms
69:	learn: 15.3222045	total: 392ms	remaining: 168ms
70:	learn: 15.2343883	total: 397ms	remaining: 162ms
71:	learn: 15.1891070	total: 402ms	remaining: 156ms
72:	learn: 15.1320798	total: 407ms	remaining: 150ms
73:	learn: 15.0590468	total: 412ms	remaining: 145ms
74:	learn: 14.9682726	total: 417ms	remaining: 139ms
75:	learn: 14.8868528	total: 422ms	remaining: 133ms
76:	learn: 14.8046328	total: 426ms	remaining: 127ms
77:	learn: 14.7253152	total: 431ms	remaining: 122ms
78:	learn: 14.6438207	total: 436ms	remaining: 116ms
79:	learn: 14.5350651	total: 441ms	remaining: 110ms
80:	learn: 14.4301800	total: 445ms	remaining: 104ms
81:	learn: 14.3716251	total: 450ms	remaining: 98.9ms
82:	learn: 14.3127586	total: 456ms	remaining: 93.3ms
83:	learn: 14.2685086	total: 461ms	remaining: 87.7ms
84:	learn: 14.1936111	total: 466ms	remaining: 82.2ms
85:	learn: 14.1488261	total: 472ms	remaining: 76.8ms
86:	learn: 14.0654602	total: 477ms	remaining: 71.3ms
87:	learn: 14.0026195	total: 483ms	remaining: 65.9ms
88:	learn: 13.9498697	total: 489ms	remaining: 60.4ms
89:	learn: 13.9002477	total: 494ms	remaining: 54.9ms
90:	learn: 13.8429017	total: 504ms	remaining: 49.9ms
91:	learn: 13.7892130	total: 514ms	remaining: 44.7ms
92:	learn: 13.7122418	total: 523ms	remaining: 39.4ms
93:	learn: 13.6752324	total: 531ms	remaining: 33.9ms
94:	learn: 13.6186680	total: 537ms	remaining: 28.3ms
95:	learn: 13.5578384	total: 543ms	remaining: 22.6ms
96:	learn: 13.5028120	total: 548ms	remaining: 17ms
97:	learn: 13.4306895	total: 554ms	remaining: 11.3ms
98:	learn: 13.3955813	total: 560ms	remaining: 5.65ms
99:	learn: 13.3380095	total: 565ms	remaining: 0us
0:	learn: 42.9675374	total: 5.15ms	remaining: 510ms
1:	learn: 42.2542078	total: 9.81ms	remaining: 481ms
2:	learn: 41.5532166	total: 14.9ms	remaining: 480ms
3:	learn: 40.7812113	total: 19.5ms	remaining: 468ms
4:	learn: 39.8819601	total: 24.3ms	remaining: 462ms
5:	learn: 39.0997229	total: 26.2ms	remaining: 410ms
6:	learn: 38.2185623	total: 30.9ms	remaining: 410ms
7:	learn: 37.5465645	total: 35.5ms	remaining: 409ms
8:	learn: 36.8449555	total: 40.2ms	remaining: 407ms
9:	learn: 36.0912815	total: 44.8ms	remaining: 403ms
10:	learn: 35.5776470	total: 49.7ms	remaining: 402ms
11:	learn: 34.7845329	total: 54.4ms	remaining: 399ms
12:	learn: 34.1574031	total: 59.3ms	remaining: 397ms
13:	learn: 33.4950652	total: 64.1ms	remaining: 394ms
14:	learn: 32.9343881	total: 68.8ms	remaining: 390ms
15:	learn: 32.4356238	total: 73.9ms	remaining: 388ms
16:	learn: 31.8370592	total: 80ms	remaining: 390ms
17:	learn: 31.2122644	total: 85.5ms	remaining: 389ms
18:	learn: 30.7195190	total: 90.6ms	remaining: 386ms
19:	learn: 30.1548478	total: 95.7ms	remaining: 383ms
20:	learn: 29.6521001	total: 102ms	remaining: 383ms
21:	learn: 29.1746988	total: 110ms	remaining: 388ms
22:	learn: 28.6492690	total: 117ms	remaining: 391ms
23:	learn: 28.1958339	total: 123ms	remaining: 389ms
24:	learn: 27.9126674	total: 129ms	remaining: 388ms
25:	learn: 27.5059508	total: 135ms	remaining: 384ms
26:	learn: 27.0869176	total: 140ms	remaining: 377ms
27:	learn: 26.6545277	total: 144ms	remaining: 371ms
28:	learn: 26.2388575	total: 149ms	remaining: 365ms
29:	learn: 25.8957708	total: 154ms	remaining: 360ms
30:	learn: 25.5045901	total: 159ms	remaining: 353ms
31:	learn: 25.2559530	total: 164ms	remaining: 348ms
32:	learn: 24.9012566	total: 169ms	remaining: 342ms
33:	learn: 24.5601820	total: 174ms	remaining: 337ms
34:	learn: 24.2407285	total: 179ms	remaining: 332ms
35:	learn: 23.9481769	total: 183ms	remaining: 326ms
36:	learn: 23.6746994	total: 189ms	remaining: 321ms
37:	learn: 23.4470352	total: 193ms	remaining: 316ms
38:	learn: 23.1678305	total: 199ms	remaining: 311ms
39:	learn: 22.9660692	total: 203ms	remaining: 305ms
40:	learn: 22.7102548	total: 208ms	remaining: 300ms
41:	learn: 22.5152447	total: 213ms	remaining: 294ms
42:	learn: 22.2967100	total: 218ms	remaining: 289ms
43:	learn: 22.0869517	total: 223ms	remaining: 283ms
44:	learn: 21.8556497	total: 228ms	remaining: 278ms
45:	learn: 21.7036804	total: 232ms	remaining: 273ms
46:	learn: 21.4792011	total: 237ms	remaining: 267ms
47:	learn: 21.2830384	total: 242ms	remaining: 262ms
48:	learn: 21.0771837	total: 247ms	remaining: 257ms
49:	learn: 20.8824468	total: 252ms	remaining: 252ms
50:	learn: 20.7250875	total: 257ms	remaining: 247ms
51:	learn: 20.5564423	total: 262ms	remaining: 242ms
52:	learn: 20.4067403	total: 267ms	remaining: 236ms
53:	learn: 20.2674808	total: 272ms	remaining: 232ms
54:	learn: 20.1394249	total: 277ms	remaining: 227ms
55:	learn: 19.9748016	total: 282ms	remaining: 222ms
56:	learn: 19.8159522	total: 288ms	remaining: 217ms
57:	learn: 19.6811073	total: 294ms	remaining: 213ms
58:	learn: 19.5083232	total: 302ms	remaining: 210ms
59:	learn: 19.3949390	total: 305ms	remaining: 204ms
60:	learn: 19.2485728	total: 317ms	remaining: 203ms
61:	learn: 19.1255523	total: 324ms	remaining: 198ms
62:	learn: 18.9423320	total: 332ms	remaining: 195ms
63:	learn: 18.7794545	total: 337ms	remaining: 190ms
64:	learn: 18.6339033	total: 343ms	remaining: 185ms
65:	learn: 18.5188724	total: 349ms	remaining: 180ms
66:	learn: 18.3398412	total: 354ms	remaining: 174ms
67:	learn: 18.2873427	total: 360ms	remaining: 169ms
68:	learn: 18.1287092	total: 366ms	remaining: 164ms
69:	learn: 18.0163474	total: 371ms	remaining: 159ms
70:	learn: 17.9428395	total: 376ms	remaining: 154ms
71:	learn: 17.7906087	total: 382ms	remaining: 149ms
72:	learn: 17.6121088	total: 388ms	remaining: 143ms
73:	learn: 17.5136572	total: 393ms	remaining: 138ms
74:	learn: 17.3837993	total: 398ms	remaining: 133ms
75:	learn: 17.3015647	total: 403ms	remaining: 127ms
76:	learn: 17.1991252	total: 408ms	remaining: 122ms
77:	learn: 17.0854777	total: 413ms	remaining: 116ms
78:	learn: 17.0308269	total: 418ms	remaining: 111ms
79:	learn: 16.9754807	total: 422ms	remaining: 106ms
80:	learn: 16.9174907	total: 427ms	remaining: 100ms
81:	learn: 16.7962603	total: 432ms	remaining: 94.8ms
82:	learn: 16.6685446	total: 437ms	remaining: 89.4ms
83:	learn: 16.5812672	total: 441ms	remaining: 84ms
84:	learn: 16.4896026	total: 446ms	remaining: 78.7ms
85:	learn: 16.4023414	total: 451ms	remaining: 73.4ms
86:	learn: 16.3093718	total: 456ms	remaining: 68.1ms
87:	learn: 16.2409040	total: 460ms	remaining: 62.8ms
88:	learn: 16.1616213	total: 466ms	remaining: 57.6ms
89:	learn: 16.0825203	total: 471ms	remaining: 52.3ms
90:	learn: 16.0204931	total: 476ms	remaining: 47.1ms
91:	learn: 15.9741267	total: 481ms	remaining: 41.8ms
92:	learn: 15.9413725	total: 486ms	remaining: 36.6ms
93:	learn: 15.8762295	total: 491ms	remaining: 31.3ms
94:	learn: 15.8165812	total: 498ms	remaining: 26.2ms
95:	learn: 15.7244343	total: 509ms	remaining: 21.2ms
96:	learn: 15.6537033	total: 516ms	remaining: 16ms
97:	learn: 15.6052320	total: 522ms	remaining: 10.6ms
98:	learn: 15.5434930	total: 529ms	remaining: 5.34ms
99:	learn: 15.4452106	total: 534ms	remaining: 0us
0:	learn: 46.5387280	total: 5.2ms	remaining: 515ms
1:	learn: 45.8605074	total: 9.91ms	remaining: 485ms
2:	learn: 45.2237152	total: 14.9ms	remaining: 482ms
3:	learn: 44.4158454	total: 19.5ms	remaining: 468ms
4:	learn: 43.7177384	total: 24.2ms	remaining: 460ms
5:	learn: 42.9896372	total: 29.2ms	remaining: 457ms
6:	learn: 42.3639431	total: 34.1ms	remaining: 453ms
7:	learn: 41.6648406	total: 38.7ms	remaining: 444ms
8:	learn: 41.0681442	total: 43.3ms	remaining: 438ms
9:	learn: 40.4478745	total: 48.2ms	remaining: 433ms
10:	learn: 40.0398470	total: 52.8ms	remaining: 427ms
11:	learn: 39.3300888	total: 57.5ms	remaining: 421ms
12:	learn: 38.9198991	total: 62.2ms	remaining: 416ms
13:	learn: 38.4022666	total: 67ms	remaining: 412ms
14:	learn: 37.9124629	total: 71.9ms	remaining: 407ms
15:	learn: 37.3846174	total: 76.8ms	remaining: 403ms
16:	learn: 36.8502348	total: 81.8ms	remaining: 399ms
17:	learn: 36.5079755	total: 86.4ms	remaining: 394ms
18:	learn: 36.1239339	total: 91.7ms	remaining: 391ms
19:	learn: 35.8388688	total: 96.8ms	remaining: 387ms
20:	learn: 35.4915710	total: 102ms	remaining: 384ms
21:	learn: 34.9483623	total: 107ms	remaining: 379ms
22:	learn: 34.6033866	total: 112ms	remaining: 375ms
23:	learn: 34.1483341	total: 120ms	remaining: 379ms
24:	learn: 33.7626484	total: 129ms	remaining: 386ms
25:	learn: 33.4160820	total: 152ms	remaining: 432ms
26:	learn: 33.0421483	total: 158ms	remaining: 426ms
27:	learn: 32.6573469	total: 163ms	remaining: 419ms
28:	learn: 32.2672417	total: 169ms	remaining: 414ms
29:	learn: 31.8257441	total: 175ms	remaining: 409ms
30:	learn: 31.3394923	total: 182ms	remaining: 404ms
31:	learn: 30.9472894	total: 187ms	remaining: 398ms
32:	learn: 30.6961423	total: 193ms	remaining: 392ms
33:	learn: 30.4670615	total: 199ms	remaining: 385ms
34:	learn: 30.1495001	total: 204ms	remaining: 379ms
35:	learn: 29.8071763	total: 210ms	remaining: 374ms
36:	learn: 29.5255984	total: 216ms	remaining: 368ms
37:	learn: 29.2236758	total: 221ms	remaining: 361ms
38:	learn: 28.9199699	total: 226ms	remaining: 354ms
39:	learn: 28.7003989	total: 231ms	remaining: 347ms
40:	learn: 28.4681160	total: 236ms	remaining: 340ms
41:	learn: 28.2692668	total: 242ms	remaining: 334ms
42:	learn: 27.9327254	total: 247ms	remaining: 327ms
43:	learn: 27.7193597	total: 252ms	remaining: 321ms
44:	learn: 27.4061006	total: 257ms	remaining: 314ms
45:	learn: 27.1840910	total: 276ms	remaining: 324ms
46:	learn: 26.8943816	total: 281ms	remaining: 316ms
47:	learn: 26.6576617	total: 285ms	remaining: 309ms
48:	learn: 26.3230094	total: 291ms	remaining: 303ms
49:	learn: 26.0488483	total: 296ms	remaining: 296ms
50:	learn: 25.7795537	total: 301ms	remaining: 289ms
51:	learn: 25.6103781	total: 306ms	remaining: 283ms
52:	learn: 25.4107383	total: 311ms	remaining: 276ms
53:	learn: 25.1757211	total: 317ms	remaining: 270ms
54:	learn: 24.8949842	total: 326ms	remaining: 267ms
55:	learn: 24.7028694	total: 334ms	remaining: 262ms
56:	learn: 24.4033555	total: 340ms	remaining: 257ms
57:	learn: 24.2109268	total: 346ms	remaining: 250ms
58:	learn: 24.0697623	total: 352ms	remaining: 244ms
59:	learn: 23.8291672	total: 356ms	remaining: 238ms
60:	learn: 23.5972471	total: 361ms	remaining: 231ms
61:	learn: 23.4241182	total: 366ms	remaining: 224ms
62:	learn: 23.2617022	total: 371ms	remaining: 218ms
63:	learn: 23.0329448	total: 376ms	remaining: 211ms
64:	learn: 22.9108081	total: 381ms	remaining: 205ms
65:	learn: 22.8001962	total: 386ms	remaining: 199ms
66:	learn: 22.6861907	total: 390ms	remaining: 192ms
67:	learn: 22.5152895	total: 395ms	remaining: 186ms
68:	learn: 22.3734214	total: 400ms	remaining: 180ms
69:	learn: 22.1840754	total: 405ms	remaining: 173ms
70:	learn: 22.0732908	total: 410ms	remaining: 167ms
71:	learn: 21.8880456	total: 414ms	remaining: 161ms
72:	learn: 21.7838784	total: 419ms	remaining: 155ms
73:	learn: 21.5532885	total: 424ms	remaining: 149ms
74:	learn: 21.3998735	total: 429ms	remaining: 143ms
75:	learn: 21.2699824	total: 433ms	remaining: 137ms
76:	learn: 21.1077652	total: 438ms	remaining: 131ms
77:	learn: 20.9759102	total: 443ms	remaining: 125ms
78:	learn: 20.7531342	total: 448ms	remaining: 119ms
79:	learn: 20.6729631	total: 453ms	remaining: 113ms
80:	learn: 20.4903474	total: 458ms	remaining: 107ms
81:	learn: 20.3708622	total: 463ms	remaining: 102ms
82:	learn: 20.2627857	total: 468ms	remaining: 95.8ms
83:	learn: 20.1335464	total: 473ms	remaining: 90ms
84:	learn: 20.0100864	total: 478ms	remaining: 84.3ms
85:	learn: 19.9374357	total: 483ms	remaining: 78.6ms
86:	learn: 19.8383097	total: 488ms	remaining: 72.9ms
87:	learn: 19.7804443	total: 493ms	remaining: 67.2ms
88:	learn: 19.7225631	total: 498ms	remaining: 61.5ms
89:	learn: 19.5851849	total: 504ms	remaining: 56ms
90:	learn: 19.5115923	total: 509ms	remaining: 50.3ms
91:	learn: 19.3986485	total: 517ms	remaining: 45ms
92:	learn: 19.2465728	total: 524ms	remaining: 39.5ms
93:	learn: 19.2033796	total: 532ms	remaining: 33.9ms
94:	learn: 19.1234096	total: 538ms	remaining: 28.3ms
95:	learn: 19.0080161	total: 544ms	remaining: 22.6ms
96:	learn: 18.9048698	total: 551ms	remaining: 17ms
97:	learn: 18.7901500	total: 557ms	remaining: 11.4ms
98:	learn: 18.6759882	total: 564ms	remaining: 5.69ms
99:	learn: 18.6254590	total: 570ms	remaining: 0us
0:	learn: 46.0359105	total: 5.59ms	remaining: 553ms
1:	learn: 45.4503059	total: 10.7ms	remaining: 522ms
2:	learn: 44.6478680	total: 16.8ms	remaining: 545ms
3:	learn: 43.7932387	total: 22.8ms	remaining: 547ms
4:	learn: 43.2236036	total: 27.7ms	remaining: 525ms
5:	learn: 42.4339181	total: 32.3ms	remaining: 506ms
6:	learn: 41.8906461	total: 37ms	remaining: 491ms
7:	learn: 41.2248707	total: 41.7ms	remaining: 479ms
8:	learn: 40.5934570	total: 46.5ms	remaining: 470ms
9:	learn: 39.9204661	total: 51.3ms	remaining: 462ms
10:	learn: 39.3972458	total: 56.8ms	remaining: 460ms
11:	learn: 38.9220493	total: 61.6ms	remaining: 451ms
12:	learn: 38.2358406	total: 66.2ms	remaining: 443ms
13:	learn: 37.7089336	total: 71.1ms	remaining: 437ms
14:	learn: 37.3714255	total: 76.1ms	remaining: 432ms
15:	learn: 36.8098537	total: 80.9ms	remaining: 425ms
16:	learn: 36.2818695	total: 85.7ms	remaining: 419ms
17:	learn: 35.8807734	total: 90.8ms	remaining: 414ms
18:	learn: 35.3850720	total: 96ms	remaining: 409ms
19:	learn: 35.0622365	total: 101ms	remaining: 404ms
20:	learn: 34.7088655	total: 106ms	remaining: 398ms
21:	learn: 34.2869861	total: 111ms	remaining: 393ms
22:	learn: 33.9798756	total: 119ms	remaining: 400ms
23:	learn: 33.6933850	total: 128ms	remaining: 404ms
24:	learn: 33.3542725	total: 135ms	remaining: 405ms
25:	learn: 33.1531104	total: 141ms	remaining: 400ms
26:	learn: 32.7581499	total: 147ms	remaining: 399ms
27:	learn: 32.4953289	total: 152ms	remaining: 391ms
28:	learn: 32.1636511	total: 157ms	remaining: 384ms
29:	learn: 31.7179908	total: 165ms	remaining: 384ms
30:	learn: 31.2828971	total: 169ms	remaining: 377ms
31:	learn: 30.8954632	total: 174ms	remaining: 370ms
32:	learn: 30.6156466	total: 179ms	remaining: 363ms
33:	learn: 30.4325331	total: 184ms	remaining: 356ms
34:	learn: 30.1680270	total: 188ms	remaining: 349ms
35:	learn: 29.8372162	total: 193ms	remaining: 343ms
36:	learn: 29.5018241	total: 198ms	remaining: 337ms
37:	learn: 29.2660228	total: 202ms	remaining: 330ms
38:	learn: 28.9172883	total: 207ms	remaining: 324ms
39:	learn: 28.7004790	total: 212ms	remaining: 318ms
40:	learn: 28.5188438	total: 217ms	remaining: 312ms
41:	learn: 28.3064887	total: 222ms	remaining: 306ms
42:	learn: 27.9584462	total: 227ms	remaining: 301ms
43:	learn: 27.6654603	total: 232ms	remaining: 295ms
44:	learn: 27.3698139	total: 236ms	remaining: 289ms
45:	learn: 27.1825629	total: 241ms	remaining: 283ms
46:	learn: 26.9938719	total: 246ms	remaining: 277ms
47:	learn: 26.7385850	total: 251ms	remaining: 271ms
48:	learn: 26.5055251	total: 255ms	remaining: 266ms
49:	learn: 26.3264840	total: 260ms	remaining: 260ms
50:	learn: 26.1314307	total: 265ms	remaining: 255ms
51:	learn: 25.9514770	total: 270ms	remaining: 250ms
52:	learn: 25.7272663	total: 275ms	remaining: 244ms
53:	learn: 25.4554234	total: 280ms	remaining: 238ms
54:	learn: 25.2133674	total: 285ms	remaining: 233ms
55:	learn: 24.9612149	total: 290ms	remaining: 227ms
56:	learn: 24.6788780	total: 295ms	remaining: 222ms
57:	learn: 24.4504703	total: 300ms	remaining: 217ms
58:	learn: 24.3261542	total: 305ms	remaining: 212ms
59:	learn: 24.1217621	total: 310ms	remaining: 207ms
60:	learn: 23.9495725	total: 318ms	remaining: 203ms
61:	learn: 23.7848565	total: 326ms	remaining: 200ms
62:	learn: 23.6627081	total: 337ms	remaining: 198ms
63:	learn: 23.4390407	total: 346ms	remaining: 194ms
64:	learn: 23.2556312	total: 352ms	remaining: 189ms
65:	learn: 23.1796337	total: 357ms	remaining: 184ms
66:	learn: 23.0431987	total: 363ms	remaining: 179ms
67:	learn: 22.9300366	total: 369ms	remaining: 174ms
68:	learn: 22.8321895	total: 375ms	remaining: 169ms
69:	learn: 22.7825840	total: 381ms	remaining: 163ms
70:	learn: 22.6907764	total: 386ms	remaining: 158ms
71:	learn: 22.5080460	total: 393ms	remaining: 153ms
72:	learn: 22.4053282	total: 398ms	remaining: 147ms
73:	learn: 22.2698085	total: 403ms	remaining: 142ms
74:	learn: 22.0951825	total: 410ms	remaining: 137ms
75:	learn: 21.9933994	total: 415ms	remaining: 131ms
76:	learn: 21.8043413	total: 420ms	remaining: 125ms
77:	learn: 21.7259032	total: 424ms	remaining: 120ms
78:	learn: 21.5625358	total: 429ms	remaining: 114ms
79:	learn: 21.4316837	total: 434ms	remaining: 108ms
80:	learn: 21.2270985	total: 438ms	remaining: 103ms
81:	learn: 21.1248573	total: 443ms	remaining: 97.3ms
82:	learn: 21.0879584	total: 448ms	remaining: 91.8ms
83:	learn: 20.9810177	total: 453ms	remaining: 86.3ms
84:	learn: 20.8986744	total: 458ms	remaining: 80.7ms
85:	learn: 20.8427245	total: 462ms	remaining: 75.3ms
86:	learn: 20.7158681	total: 467ms	remaining: 69.8ms
87:	learn: 20.6055502	total: 472ms	remaining: 64.3ms
88:	learn: 20.5302059	total: 477ms	remaining: 58.9ms
89:	learn: 20.3936827	total: 497ms	remaining: 55.2ms
90:	learn: 20.2756993	total: 502ms	remaining: 49.7ms
91:	learn: 20.1882826	total: 507ms	remaining: 44.1ms
92:	learn: 20.0346875	total: 513ms	remaining: 38.6ms
93:	learn: 19.9798652	total: 518ms	remaining: 33ms
94:	learn: 19.9020384	total: 523ms	remaining: 27.5ms
95:	learn: 19.8463755	total: 531ms	remaining: 22.1ms
96:	learn: 19.7426458	total: 539ms	remaining: 16.7ms
97:	learn: 19.6728655	total: 546ms	remaining: 11.1ms
98:	learn: 19.6355104	total: 553ms	remaining: 5.58ms
99:	learn: 19.6074086	total: 559ms	remaining: 0us
0:	learn: 46.7817285	total: 5.12ms	remaining: 507ms
1:	learn: 45.9551634	total: 10ms	remaining: 490ms
2:	learn: 45.0274369	total: 15.4ms	remaining: 498ms
3:	learn: 44.5000950	total: 20.9ms	remaining: 503ms
4:	learn: 43.8963632	total: 26.3ms	remaining: 499ms
5:	learn: 43.2314124	total: 31.7ms	remaining: 497ms
6:	learn: 42.5780140	total: 37.1ms	remaining: 493ms
7:	learn: 41.9033077	total: 42ms	remaining: 483ms
8:	learn: 41.3161907	total: 47.4ms	remaining: 480ms
9:	learn: 40.7747000	total: 52.8ms	remaining: 475ms
10:	learn: 40.2728122	total: 57.8ms	remaining: 468ms
11:	learn: 39.7786608	total: 62.9ms	remaining: 461ms
12:	learn: 39.0812090	total: 68.1ms	remaining: 456ms
13:	learn: 38.6205762	total: 73.1ms	remaining: 449ms
14:	learn: 38.2894236	total: 77.9ms	remaining: 442ms
15:	learn: 37.6906364	total: 82.6ms	remaining: 434ms
16:	learn: 37.3014849	total: 87.5ms	remaining: 427ms
17:	learn: 36.9268494	total: 92.3ms	remaining: 421ms
18:	learn: 36.6348717	total: 96.9ms	remaining: 413ms
19:	learn: 36.1567831	total: 102ms	remaining: 407ms
20:	learn: 35.8080754	total: 107ms	remaining: 403ms
21:	learn: 35.4288913	total: 112ms	remaining: 396ms
22:	learn: 35.0910168	total: 116ms	remaining: 390ms
23:	learn: 34.7483277	total: 121ms	remaining: 385ms
24:	learn: 34.5077203	total: 126ms	remaining: 379ms
25:	learn: 34.1830247	total: 131ms	remaining: 374ms
26:	learn: 33.7943837	total: 136ms	remaining: 368ms
27:	learn: 33.3736582	total: 141ms	remaining: 363ms
28:	learn: 32.9133996	total: 146ms	remaining: 358ms
29:	learn: 32.4361653	total: 156ms	remaining: 364ms
30:	learn: 31.9630085	total: 166ms	remaining: 370ms
31:	learn: 31.5994894	total: 175ms	remaining: 371ms
32:	learn: 31.3120059	total: 183ms	remaining: 371ms
33:	learn: 31.0991187	total: 188ms	remaining: 365ms
34:	learn: 30.8055118	total: 194ms	remaining: 361ms
35:	learn: 30.5197359	total: 200ms	remaining: 356ms
36:	learn: 30.1975315	total: 206ms	remaining: 350ms
37:	learn: 29.9797615	total: 211ms	remaining: 345ms
38:	learn: 29.6874864	total: 217ms	remaining: 339ms
39:	learn: 29.4139907	total: 222ms	remaining: 333ms
40:	learn: 29.0472151	total: 229ms	remaining: 329ms
41:	learn: 28.8356285	total: 234ms	remaining: 323ms
42:	learn: 28.5099349	total: 239ms	remaining: 317ms
43:	learn: 28.2009716	total: 245ms	remaining: 312ms
44:	learn: 27.8947534	total: 251ms	remaining: 307ms
45:	learn: 27.6149698	total: 256ms	remaining: 301ms
46:	learn: 27.4780860	total: 261ms	remaining: 295ms
47:	learn: 27.2859119	total: 266ms	remaining: 289ms
48:	learn: 27.0572191	total: 271ms	remaining: 282ms
49:	learn: 26.8916263	total: 276ms	remaining: 276ms
50:	learn: 26.6791967	total: 281ms	remaining: 270ms
51:	learn: 26.4917307	total: 286ms	remaining: 264ms
52:	learn: 26.2957036	total: 291ms	remaining: 258ms
53:	learn: 26.1116543	total: 296ms	remaining: 252ms
54:	learn: 25.8593319	total: 301ms	remaining: 246ms
55:	learn: 25.6957296	total: 306ms	remaining: 241ms
56:	learn: 25.5065213	total: 311ms	remaining: 235ms
57:	learn: 25.3525337	total: 316ms	remaining: 229ms
58:	learn: 25.2197494	total: 321ms	remaining: 223ms
59:	learn: 25.0583799	total: 327ms	remaining: 218ms
60:	learn: 24.8432659	total: 332ms	remaining: 212ms
61:	learn: 24.6585337	total: 337ms	remaining: 206ms
62:	learn: 24.5382571	total: 342ms	remaining: 201ms
63:	learn: 24.3596337	total: 348ms	remaining: 196ms
64:	learn: 24.2009033	total: 356ms	remaining: 192ms
65:	learn: 24.0964080	total: 364ms	remaining: 187ms
66:	learn: 23.9765920	total: 371ms	remaining: 183ms
67:	learn: 23.8638384	total: 376ms	remaining: 177ms
68:	learn: 23.7381861	total: 383ms	remaining: 172ms
69:	learn: 23.5620129	total: 389ms	remaining: 167ms
70:	learn: 23.4494830	total: 394ms	remaining: 161ms
71:	learn: 23.3095806	total: 399ms	remaining: 155ms
72:	learn: 23.1441767	total: 404ms	remaining: 150ms
73:	learn: 22.9983446	total: 410ms	remaining: 144ms
74:	learn: 22.8464764	total: 416ms	remaining: 139ms
75:	learn: 22.7606423	total: 421ms	remaining: 133ms
76:	learn: 22.6095905	total: 426ms	remaining: 127ms
77:	learn: 22.4430506	total: 432ms	remaining: 122ms
78:	learn: 22.2925872	total: 437ms	remaining: 116ms
79:	learn: 22.1806286	total: 442ms	remaining: 110ms
80:	learn: 22.0070525	total: 447ms	remaining: 105ms
81:	learn: 21.9114201	total: 452ms	remaining: 99.3ms
82:	learn: 21.7742884	total: 457ms	remaining: 93.6ms
83:	learn: 21.6372857	total: 462ms	remaining: 88.1ms
84:	learn: 21.5380397	total: 467ms	remaining: 82.5ms
85:	learn: 21.4730146	total: 472ms	remaining: 76.9ms
86:	learn: 21.3236516	total: 477ms	remaining: 71.3ms
87:	learn: 21.2512101	total: 482ms	remaining: 65.7ms
88:	learn: 21.2192883	total: 487ms	remaining: 60.2ms
89:	learn: 21.0457926	total: 492ms	remaining: 54.7ms
90:	learn: 20.9986980	total: 497ms	remaining: 49.1ms
91:	learn: 20.9040032	total: 501ms	remaining: 43.6ms
92:	learn: 20.7178547	total: 506ms	remaining: 38.1ms
93:	learn: 20.6535030	total: 511ms	remaining: 32.6ms
94:	learn: 20.5641982	total: 516ms	remaining: 27.2ms
95:	learn: 20.5355409	total: 521ms	remaining: 21.7ms
96:	learn: 20.4496493	total: 526ms	remaining: 16.3ms
97:	learn: 20.3579862	total: 531ms	remaining: 10.8ms
98:	learn: 20.2442476	total: 537ms	remaining: 5.42ms
99:	learn: 20.1075813	total: 542ms	remaining: 0us
0:	learn: 27.6506730	total: 4.73ms	remaining: 469ms
1:	learn: 27.1638793	total: 9.23ms	remaining: 452ms
2:	learn: 26.8000665	total: 13.8ms	remaining: 446ms
3:	learn: 26.4256132	total: 18.3ms	remaining: 439ms
4:	learn: 26.0088351	total: 22.9ms	remaining: 436ms
5:	learn: 25.7558298	total: 27.6ms	remaining: 432ms
6:	learn: 25.3380711	total: 32.5ms	remaining: 431ms
7:	learn: 25.0571611	total: 37.2ms	remaining: 428ms
8:	learn: 24.6790148	total: 41.6ms	remaining: 421ms
9:	learn: 24.3600941	total: 46.3ms	remaining: 416ms
10:	learn: 24.1105667	total: 51.2ms	remaining: 414ms
11:	learn: 23.7736542	total: 55.8ms	remaining: 409ms
12:	learn: 23.5824429	total: 60.3ms	remaining: 403ms
13:	learn: 23.2658303	total: 64.8ms	remaining: 398ms
14:	learn: 23.0061886	total: 69.5ms	remaining: 394ms
15:	learn: 22.8060389	total: 74.2ms	remaining: 390ms
16:	learn: 22.5899735	total: 78.7ms	remaining: 384ms
17:	learn: 22.3625048	total: 83.1ms	remaining: 379ms
18:	learn: 22.0706477	total: 87.9ms	remaining: 375ms
19:	learn: 21.8739394	total: 92.5ms	remaining: 370ms
20:	learn: 21.6143650	total: 96.9ms	remaining: 365ms
21:	learn: 21.4571623	total: 101ms	remaining: 360ms
22:	learn: 21.2395769	total: 106ms	remaining: 356ms
23:	learn: 20.9801795	total: 111ms	remaining: 352ms
24:	learn: 20.8036808	total: 116ms	remaining: 348ms
25:	learn: 20.6387539	total: 121ms	remaining: 344ms
26:	learn: 20.4401427	total: 126ms	remaining: 339ms
27:	learn: 20.2879575	total: 130ms	remaining: 335ms
28:	learn: 20.0538664	total: 135ms	remaining: 332ms
29:	learn: 19.8363102	total: 141ms	remaining: 329ms
30:	learn: 19.7015446	total: 146ms	remaining: 325ms
31:	learn: 19.5483114	total: 151ms	remaining: 321ms
32:	learn: 19.4163053	total: 158ms	remaining: 322ms
33:	learn: 19.2880625	total: 166ms	remaining: 323ms
34:	learn: 19.1303389	total: 174ms	remaining: 322ms
35:	learn: 18.9237448	total: 180ms	remaining: 320ms
36:	learn: 18.8142925	total: 185ms	remaining: 314ms
37:	learn: 18.6994696	total: 191ms	remaining: 311ms
38:	learn: 18.5629211	total: 196ms	remaining: 306ms
39:	learn: 18.4600917	total: 200ms	remaining: 300ms
40:	learn: 18.3567139	total: 205ms	remaining: 295ms
41:	learn: 18.2120527	total: 209ms	remaining: 289ms
42:	learn: 18.0688062	total: 214ms	remaining: 284ms
43:	learn: 17.9250181	total: 218ms	remaining: 278ms
44:	learn: 17.8399138	total: 223ms	remaining: 272ms
45:	learn: 17.6720713	total: 228ms	remaining: 267ms
46:	learn: 17.5273091	total: 232ms	remaining: 262ms
47:	learn: 17.4232814	total: 237ms	remaining: 256ms
48:	learn: 17.2957579	total: 241ms	remaining: 251ms
49:	learn: 17.1892874	total: 246ms	remaining: 246ms
50:	learn: 17.0490355	total: 250ms	remaining: 240ms
51:	learn: 16.9666450	total: 254ms	remaining: 235ms
52:	learn: 16.8600056	total: 259ms	remaining: 229ms
53:	learn: 16.7542588	total: 263ms	remaining: 224ms
54:	learn: 16.6316077	total: 267ms	remaining: 218ms
55:	learn: 16.5588112	total: 271ms	remaining: 213ms
56:	learn: 16.5010186	total: 275ms	remaining: 208ms
57:	learn: 16.4081540	total: 280ms	remaining: 203ms
58:	learn: 16.3040451	total: 284ms	remaining: 197ms
59:	learn: 16.1890564	total: 289ms	remaining: 193ms
60:	learn: 16.0977103	total: 293ms	remaining: 187ms
61:	learn: 15.9627607	total: 298ms	remaining: 182ms
62:	learn: 15.9022248	total: 302ms	remaining: 177ms
63:	learn: 15.8151881	total: 306ms	remaining: 172ms
64:	learn: 15.7353125	total: 311ms	remaining: 168ms
65:	learn: 15.6312897	total: 315ms	remaining: 162ms
66:	learn: 15.5330927	total: 319ms	remaining: 157ms
67:	learn: 15.4698681	total: 324ms	remaining: 152ms
68:	learn: 15.4108571	total: 329ms	remaining: 148ms
69:	learn: 15.3492945	total: 333ms	remaining: 143ms
70:	learn: 15.3036540	total: 338ms	remaining: 138ms
71:	learn: 15.2390833	total: 342ms	remaining: 133ms
72:	learn: 15.1556327	total: 347ms	remaining: 128ms
73:	learn: 15.1016315	total: 352ms	remaining: 124ms
74:	learn: 15.0287076	total: 369ms	remaining: 123ms
75:	learn: 14.9530572	total: 378ms	remaining: 119ms
76:	learn: 14.8965517	total: 386ms	remaining: 115ms
77:	learn: 14.8125426	total: 391ms	remaining: 110ms
78:	learn: 14.7435359	total: 396ms	remaining: 105ms
79:	learn: 14.6963163	total: 402ms	remaining: 101ms
80:	learn: 14.6200060	total: 408ms	remaining: 95.7ms
81:	learn: 14.5707760	total: 414ms	remaining: 90.8ms
82:	learn: 14.5053651	total: 420ms	remaining: 86ms
83:	learn: 14.4115458	total: 425ms	remaining: 81ms
84:	learn: 14.3117159	total: 431ms	remaining: 76ms
85:	learn: 14.2511326	total: 436ms	remaining: 71ms
86:	learn: 14.1372486	total: 442ms	remaining: 66ms
87:	learn: 14.0992301	total: 447ms	remaining: 61ms
88:	learn: 14.0228331	total: 452ms	remaining: 55.9ms
89:	learn: 13.9249836	total: 457ms	remaining: 50.8ms
90:	learn: 13.8679364	total: 462ms	remaining: 45.7ms
91:	learn: 13.8405578	total: 467ms	remaining: 40.6ms
92:	learn: 13.7711325	total: 471ms	remaining: 35.5ms
93:	learn: 13.7357019	total: 476ms	remaining: 30.4ms
94:	learn: 13.6735271	total: 480ms	remaining: 25.3ms
95:	learn: 13.5682393	total: 485ms	remaining: 20.2ms
96:	learn: 13.5342610	total: 489ms	remaining: 15.1ms
97:	learn: 13.4710034	total: 493ms	remaining: 10.1ms
98:	learn: 13.4022402	total: 498ms	remaining: 5.03ms
99:	learn: 13.3351238	total: 502ms	remaining: 0us
0:	learn: 42.9181702	total: 7.42ms	remaining: 734ms
1:	learn: 42.0286736	total: 12.1ms	remaining: 593ms
2:	learn: 41.2764568	total: 16.2ms	remaining: 524ms
3:	learn: 40.4721918	total: 20.6ms	remaining: 496ms
4:	learn: 39.8518928	total: 25.1ms	remaining: 476ms
5:	learn: 39.2645479	total: 29.6ms	remaining: 464ms
6:	learn: 38.4453704	total: 34.2ms	remaining: 455ms
7:	learn: 37.7122059	total: 38.5ms	remaining: 443ms
8:	learn: 36.9185796	total: 42.7ms	remaining: 432ms
9:	learn: 36.1668427	total: 46.9ms	remaining: 422ms
10:	learn: 35.5639029	total: 51.2ms	remaining: 414ms
11:	learn: 34.7724193	total: 56.3ms	remaining: 413ms
12:	learn: 34.3053433	total: 60.9ms	remaining: 408ms
13:	learn: 33.6561327	total: 62.2ms	remaining: 382ms
14:	learn: 33.0134042	total: 66.6ms	remaining: 377ms
15:	learn: 32.4483300	total: 70.6ms	remaining: 371ms
16:	learn: 31.8581144	total: 75.2ms	remaining: 367ms
17:	learn: 31.2858301	total: 79.7ms	remaining: 363ms
18:	learn: 30.8483018	total: 84.3ms	remaining: 359ms
19:	learn: 30.4174622	total: 88.9ms	remaining: 356ms
20:	learn: 29.8994411	total: 93.5ms	remaining: 352ms
21:	learn: 29.5045355	total: 98ms	remaining: 347ms
22:	learn: 28.9923519	total: 102ms	remaining: 343ms
23:	learn: 28.4255717	total: 106ms	remaining: 337ms
24:	learn: 28.0283139	total: 111ms	remaining: 333ms
25:	learn: 27.7434814	total: 116ms	remaining: 329ms
26:	learn: 27.2770731	total: 120ms	remaining: 325ms
27:	learn: 26.8928270	total: 125ms	remaining: 320ms
28:	learn: 26.4282671	total: 129ms	remaining: 316ms
29:	learn: 26.0272764	total: 133ms	remaining: 311ms
30:	learn: 25.7579312	total: 138ms	remaining: 308ms
31:	learn: 25.4542434	total: 143ms	remaining: 303ms
32:	learn: 25.1232564	total: 147ms	remaining: 298ms
33:	learn: 24.8110795	total: 151ms	remaining: 294ms
34:	learn: 24.5077579	total: 156ms	remaining: 289ms
35:	learn: 24.1909000	total: 160ms	remaining: 285ms
36:	learn: 23.8719468	total: 164ms	remaining: 280ms
37:	learn: 23.5764366	total: 166ms	remaining: 270ms
38:	learn: 23.3468086	total: 170ms	remaining: 266ms
39:	learn: 23.0908771	total: 174ms	remaining: 261ms
40:	learn: 22.8580876	total: 179ms	remaining: 257ms
41:	learn: 22.6060825	total: 183ms	remaining: 253ms
42:	learn: 22.4125407	total: 187ms	remaining: 248ms
43:	learn: 22.1990617	total: 191ms	remaining: 243ms
44:	learn: 21.9716164	total: 196ms	remaining: 239ms
45:	learn: 21.8360935	total: 200ms	remaining: 235ms
46:	learn: 21.6169256	total: 204ms	remaining: 230ms
47:	learn: 21.4620612	total: 208ms	remaining: 225ms
48:	learn: 21.2894194	total: 212ms	remaining: 221ms
49:	learn: 21.1066266	total: 217ms	remaining: 217ms
50:	learn: 20.9484898	total: 222ms	remaining: 213ms
51:	learn: 20.7195338	total: 226ms	remaining: 209ms
52:	learn: 20.4899740	total: 231ms	remaining: 204ms
53:	learn: 20.3356583	total: 236ms	remaining: 201ms
54:	learn: 20.0754393	total: 240ms	remaining: 196ms
55:	learn: 19.9199159	total: 245ms	remaining: 192ms
56:	learn: 19.7761128	total: 250ms	remaining: 188ms
57:	learn: 19.6533060	total: 254ms	remaining: 184ms
58:	learn: 19.5113942	total: 259ms	remaining: 180ms
59:	learn: 19.3985022	total: 267ms	remaining: 178ms
60:	learn: 19.2683443	total: 276ms	remaining: 177ms
61:	learn: 19.1460824	total: 285ms	remaining: 175ms
62:	learn: 19.0042655	total: 292ms	remaining: 171ms
63:	learn: 18.8720873	total: 297ms	remaining: 167ms
64:	learn: 18.7183888	total: 302ms	remaining: 163ms
65:	learn: 18.5472360	total: 307ms	remaining: 158ms
66:	learn: 18.3976642	total: 313ms	remaining: 154ms
67:	learn: 18.2282851	total: 318ms	remaining: 150ms
68:	learn: 18.1469157	total: 323ms	remaining: 145ms
69:	learn: 18.0649494	total: 329ms	remaining: 141ms
70:	learn: 17.9485405	total: 334ms	remaining: 137ms
71:	learn: 17.8460261	total: 340ms	remaining: 132ms
72:	learn: 17.7679843	total: 345ms	remaining: 127ms
73:	learn: 17.5989290	total: 350ms	remaining: 123ms
74:	learn: 17.4381322	total: 355ms	remaining: 118ms
75:	learn: 17.3370886	total: 361ms	remaining: 114ms
76:	learn: 17.2675308	total: 366ms	remaining: 109ms
77:	learn: 17.1946430	total: 370ms	remaining: 104ms
78:	learn: 17.0923725	total: 374ms	remaining: 99.5ms
79:	learn: 17.0537265	total: 378ms	remaining: 94.6ms
80:	learn: 16.9456831	total: 383ms	remaining: 89.7ms
81:	learn: 16.8457353	total: 387ms	remaining: 85ms
82:	learn: 16.7469310	total: 391ms	remaining: 80.1ms
83:	learn: 16.6679953	total: 395ms	remaining: 75.3ms
84:	learn: 16.6274189	total: 400ms	remaining: 70.5ms
85:	learn: 16.5516530	total: 404ms	remaining: 65.7ms
86:	learn: 16.4886066	total: 408ms	remaining: 60.9ms
87:	learn: 16.3947859	total: 412ms	remaining: 56.2ms
88:	learn: 16.3406495	total: 417ms	remaining: 51.5ms
89:	learn: 16.3019195	total: 421ms	remaining: 46.8ms
90:	learn: 16.1860681	total: 426ms	remaining: 42.1ms
91:	learn: 16.1282812	total: 430ms	remaining: 37.4ms
92:	learn: 16.0303652	total: 435ms	remaining: 32.8ms
93:	learn: 15.9561692	total: 440ms	remaining: 28.1ms
94:	learn: 15.8733994	total: 445ms	remaining: 23.4ms
95:	learn: 15.8108833	total: 450ms	remaining: 18.7ms
96:	learn: 15.7606004	total: 454ms	remaining: 14.1ms
97:	learn: 15.6984664	total: 460ms	remaining: 9.38ms
98:	learn: 15.6223632	total: 468ms	remaining: 4.73ms
99:	learn: 15.5671136	total: 475ms	remaining: 0us
0:	learn: 46.4788614	total: 1.84ms	remaining: 182ms
1:	learn: 45.7608372	total: 6.29ms	remaining: 308ms
2:	learn: 44.8825004	total: 10.8ms	remaining: 349ms
3:	learn: 44.0362738	total: 15.1ms	remaining: 363ms
4:	learn: 43.2086374	total: 19.4ms	remaining: 369ms
5:	learn: 42.5835773	total: 23.7ms	remaining: 372ms
6:	learn: 41.9673269	total: 28.3ms	remaining: 377ms
7:	learn: 41.4748717	total: 32.5ms	remaining: 373ms
8:	learn: 40.7129183	total: 36.8ms	remaining: 372ms
9:	learn: 39.8900884	total: 41ms	remaining: 369ms
10:	learn: 39.4142193	total: 45.3ms	remaining: 366ms
11:	learn: 38.8645613	total: 49.6ms	remaining: 364ms
12:	learn: 38.2394731	total: 53.9ms	remaining: 361ms
13:	learn: 37.6834515	total: 57.8ms	remaining: 355ms
14:	learn: 37.0673507	total: 62.1ms	remaining: 352ms
15:	learn: 36.4728340	total: 66.7ms	remaining: 350ms
16:	learn: 36.0489086	total: 71.2ms	remaining: 347ms
17:	learn: 35.4744141	total: 75.9ms	remaining: 346ms
18:	learn: 35.0106021	total: 80.5ms	remaining: 343ms
19:	learn: 34.5586053	total: 84.9ms	remaining: 339ms
20:	learn: 34.1308223	total: 89.3ms	remaining: 336ms
21:	learn: 33.7701450	total: 93.5ms	remaining: 332ms
22:	learn: 33.4425444	total: 98.1ms	remaining: 329ms
23:	learn: 33.0296412	total: 103ms	remaining: 325ms
24:	learn: 32.6359803	total: 107ms	remaining: 321ms
25:	learn: 32.1846182	total: 111ms	remaining: 316ms
26:	learn: 31.7620230	total: 116ms	remaining: 314ms
27:	learn: 31.4669337	total: 121ms	remaining: 310ms
28:	learn: 31.0792062	total: 125ms	remaining: 307ms
29:	learn: 30.7970537	total: 130ms	remaining: 304ms
30:	learn: 30.4952215	total: 136ms	remaining: 302ms
31:	learn: 30.2845344	total: 140ms	remaining: 298ms
32:	learn: 29.9592732	total: 147ms	remaining: 298ms
33:	learn: 29.6798596	total: 154ms	remaining: 299ms
34:	learn: 29.3368905	total: 163ms	remaining: 302ms
35:	learn: 29.0621238	total: 170ms	remaining: 303ms
36:	learn: 28.6445375	total: 177ms	remaining: 302ms
37:	learn: 28.2418096	total: 183ms	remaining: 298ms
38:	learn: 27.9495390	total: 188ms	remaining: 294ms
39:	learn: 27.6958160	total: 194ms	remaining: 290ms
40:	learn: 27.4811189	total: 199ms	remaining: 286ms
41:	learn: 27.1494420	total: 204ms	remaining: 282ms
42:	learn: 26.8388873	total: 210ms	remaining: 278ms
43:	learn: 26.5721300	total: 215ms	remaining: 273ms
44:	learn: 26.3384738	total: 220ms	remaining: 269ms
45:	learn: 26.1894781	total: 225ms	remaining: 264ms
46:	learn: 25.9580198	total: 231ms	remaining: 260ms
47:	learn: 25.7897985	total: 236ms	remaining: 256ms
48:	learn: 25.6000271	total: 242ms	remaining: 252ms
49:	learn: 25.4130873	total: 246ms	remaining: 246ms
50:	learn: 25.1699061	total: 250ms	remaining: 241ms
51:	learn: 24.9324449	total: 255ms	remaining: 235ms
52:	learn: 24.7729152	total: 260ms	remaining: 230ms
53:	learn: 24.5026563	total: 264ms	remaining: 225ms
54:	learn: 24.2332627	total: 268ms	remaining: 219ms
55:	learn: 23.9611984	total: 272ms	remaining: 214ms
56:	learn: 23.7862603	total: 276ms	remaining: 209ms
57:	learn: 23.6318154	total: 281ms	remaining: 203ms
58:	learn: 23.4443306	total: 285ms	remaining: 198ms
59:	learn: 23.2581425	total: 289ms	remaining: 193ms
60:	learn: 23.0549901	total: 294ms	remaining: 188ms
61:	learn: 22.8666218	total: 298ms	remaining: 183ms
62:	learn: 22.6956739	total: 304ms	remaining: 178ms
63:	learn: 22.5068544	total: 309ms	remaining: 174ms
64:	learn: 22.1859147	total: 315ms	remaining: 169ms
65:	learn: 22.0462043	total: 320ms	remaining: 165ms
66:	learn: 21.9329563	total: 325ms	remaining: 160ms
67:	learn: 21.8029736	total: 330ms	remaining: 155ms
68:	learn: 21.6861091	total: 335ms	remaining: 151ms
69:	learn: 21.4838140	total: 340ms	remaining: 146ms
70:	learn: 21.3548921	total: 347ms	remaining: 142ms
71:	learn: 21.2244517	total: 354ms	remaining: 138ms
72:	learn: 21.0702958	total: 361ms	remaining: 134ms
73:	learn: 20.9224662	total: 367ms	remaining: 129ms
74:	learn: 20.8150357	total: 372ms	remaining: 124ms
75:	learn: 20.6962739	total: 378ms	remaining: 119ms
76:	learn: 20.5809258	total: 382ms	remaining: 114ms
77:	learn: 20.4735470	total: 387ms	remaining: 109ms
78:	learn: 20.3778167	total: 392ms	remaining: 104ms
79:	learn: 20.2211268	total: 396ms	remaining: 99.1ms
80:	learn: 20.1478678	total: 401ms	remaining: 94ms
81:	learn: 20.1032967	total: 405ms	remaining: 89ms
82:	learn: 19.9236300	total: 410ms	remaining: 84ms
83:	learn: 19.8151745	total: 415ms	remaining: 79.1ms
84:	learn: 19.7099856	total: 420ms	remaining: 74.1ms
85:	learn: 19.6264833	total: 424ms	remaining: 69.1ms
86:	learn: 19.4916361	total: 429ms	remaining: 64.1ms
87:	learn: 19.4050529	total: 434ms	remaining: 59.2ms
88:	learn: 19.2547065	total: 438ms	remaining: 54.2ms
89:	learn: 19.1610225	total: 443ms	remaining: 49.2ms
90:	learn: 19.0898958	total: 448ms	remaining: 44.3ms
91:	learn: 19.0489664	total: 452ms	remaining: 39.3ms
92:	learn: 18.9206240	total: 457ms	remaining: 34.4ms
93:	learn: 18.8636239	total: 461ms	remaining: 29.4ms
94:	learn: 18.8126187	total: 465ms	remaining: 24.5ms
95:	learn: 18.7579275	total: 470ms	remaining: 19.6ms
96:	learn: 18.6382753	total: 474ms	remaining: 14.7ms
97:	learn: 18.5397334	total: 478ms	remaining: 9.75ms
98:	learn: 18.4375951	total: 482ms	remaining: 4.87ms
99:	learn: 18.4033755	total: 486ms	remaining: 0us
0:	learn: 46.1068821	total: 1.99ms	remaining: 197ms
1:	learn: 45.3970261	total: 6.95ms	remaining: 340ms
2:	learn: 44.8732696	total: 11.7ms	remaining: 379ms
3:	learn: 44.1290184	total: 16.7ms	remaining: 401ms
4:	learn: 43.3290271	total: 22.3ms	remaining: 423ms
5:	learn: 42.7069090	total: 31.5ms	remaining: 494ms
6:	learn: 42.0572971	total: 43ms	remaining: 571ms
7:	learn: 41.4797924	total: 49.1ms	remaining: 565ms
8:	learn: 41.0023122	total: 56.7ms	remaining: 573ms
9:	learn: 40.5330570	total: 61.9ms	remaining: 557ms
10:	learn: 39.9726545	total: 67.2ms	remaining: 544ms
11:	learn: 39.3044053	total: 72.4ms	remaining: 531ms
12:	learn: 38.8169735	total: 77.6ms	remaining: 520ms
13:	learn: 38.2458761	total: 82.7ms	remaining: 508ms
14:	learn: 37.6280321	total: 88.2ms	remaining: 500ms
15:	learn: 37.0800610	total: 93.5ms	remaining: 491ms
16:	learn: 36.5489363	total: 98.7ms	remaining: 482ms
17:	learn: 36.0981456	total: 104ms	remaining: 472ms
18:	learn: 35.6956274	total: 109ms	remaining: 465ms
19:	learn: 35.1471999	total: 114ms	remaining: 458ms
20:	learn: 34.6235408	total: 120ms	remaining: 452ms
21:	learn: 34.1987018	total: 125ms	remaining: 442ms
22:	learn: 33.8985062	total: 129ms	remaining: 432ms
23:	learn: 33.3869017	total: 133ms	remaining: 422ms
24:	learn: 32.9100550	total: 138ms	remaining: 414ms
25:	learn: 32.4156208	total: 143ms	remaining: 406ms
26:	learn: 31.9320493	total: 147ms	remaining: 397ms
27:	learn: 31.5711468	total: 151ms	remaining: 390ms
28:	learn: 31.2404433	total: 156ms	remaining: 382ms
29:	learn: 30.8807946	total: 160ms	remaining: 374ms
30:	learn: 30.5948438	total: 165ms	remaining: 368ms
31:	learn: 30.3885560	total: 170ms	remaining: 360ms
32:	learn: 30.0625101	total: 174ms	remaining: 354ms
33:	learn: 29.9113114	total: 179ms	remaining: 347ms
34:	learn: 29.6983470	total: 183ms	remaining: 340ms
35:	learn: 29.4775849	total: 187ms	remaining: 333ms
36:	learn: 29.0538055	total: 191ms	remaining: 326ms
37:	learn: 28.6792318	total: 196ms	remaining: 319ms
38:	learn: 28.4231383	total: 200ms	remaining: 313ms
39:	learn: 28.1078565	total: 204ms	remaining: 306ms
40:	learn: 27.9079179	total: 209ms	remaining: 300ms
41:	learn: 27.6721506	total: 213ms	remaining: 294ms
42:	learn: 27.4228033	total: 218ms	remaining: 288ms
43:	learn: 27.1740534	total: 222ms	remaining: 283ms
44:	learn: 26.8584071	total: 227ms	remaining: 277ms
45:	learn: 26.6902083	total: 232ms	remaining: 272ms
46:	learn: 26.4855335	total: 236ms	remaining: 266ms
47:	learn: 26.2730822	total: 241ms	remaining: 261ms
48:	learn: 26.1058689	total: 245ms	remaining: 255ms
49:	learn: 25.8587318	total: 250ms	remaining: 250ms
50:	learn: 25.7558005	total: 256ms	remaining: 246ms
51:	learn: 25.5846925	total: 264ms	remaining: 243ms
52:	learn: 25.4249887	total: 270ms	remaining: 240ms
53:	learn: 25.1911054	total: 277ms	remaining: 236ms
54:	learn: 25.0544755	total: 282ms	remaining: 231ms
55:	learn: 24.8874006	total: 288ms	remaining: 227ms
56:	learn: 24.7736279	total: 292ms	remaining: 221ms
57:	learn: 24.6156255	total: 297ms	remaining: 215ms
58:	learn: 24.3962421	total: 301ms	remaining: 209ms
59:	learn: 24.2685129	total: 305ms	remaining: 203ms
60:	learn: 24.1874096	total: 309ms	remaining: 198ms
61:	learn: 24.0394287	total: 313ms	remaining: 192ms
62:	learn: 23.9281768	total: 317ms	remaining: 186ms
63:	learn: 23.7423900	total: 321ms	remaining: 181ms
64:	learn: 23.6015209	total: 326ms	remaining: 175ms
65:	learn: 23.4677943	total: 330ms	remaining: 170ms
66:	learn: 23.3215256	total: 334ms	remaining: 165ms
67:	learn: 23.1869360	total: 339ms	remaining: 159ms
68:	learn: 22.9691180	total: 343ms	remaining: 154ms
69:	learn: 22.7531657	total: 347ms	remaining: 149ms
70:	learn: 22.6133477	total: 351ms	remaining: 144ms
71:	learn: 22.3452758	total: 356ms	remaining: 138ms
72:	learn: 22.2065350	total: 361ms	remaining: 133ms
73:	learn: 22.1071155	total: 365ms	remaining: 128ms
74:	learn: 21.9740686	total: 369ms	remaining: 123ms
75:	learn: 21.8892033	total: 373ms	remaining: 118ms
76:	learn: 21.8267882	total: 377ms	remaining: 113ms
77:	learn: 21.7423479	total: 381ms	remaining: 108ms
78:	learn: 21.6242075	total: 385ms	remaining: 102ms
79:	learn: 21.5016910	total: 390ms	remaining: 97.4ms
80:	learn: 21.4806623	total: 390ms	remaining: 91.6ms
81:	learn: 21.3166637	total: 395ms	remaining: 86.7ms
82:	learn: 21.2222534	total: 399ms	remaining: 81.8ms
83:	learn: 21.1535708	total: 404ms	remaining: 76.9ms
84:	learn: 21.0858902	total: 408ms	remaining: 72ms
85:	learn: 20.9206003	total: 412ms	remaining: 67.1ms
86:	learn: 20.8674695	total: 417ms	remaining: 62.3ms
87:	learn: 20.8089875	total: 421ms	remaining: 57.5ms
88:	learn: 20.7085401	total: 426ms	remaining: 52.7ms
89:	learn: 20.5513468	total: 431ms	remaining: 47.9ms
90:	learn: 20.4586742	total: 435ms	remaining: 43.1ms
91:	learn: 20.3932149	total: 440ms	remaining: 38.3ms
92:	learn: 20.3000895	total: 445ms	remaining: 33.5ms
93:	learn: 20.2254009	total: 450ms	remaining: 28.7ms
94:	learn: 20.1750050	total: 458ms	remaining: 24.1ms
95:	learn: 20.0715579	total: 466ms	remaining: 19.4ms
96:	learn: 19.9920082	total: 474ms	remaining: 14.7ms
97:	learn: 19.9664401	total: 482ms	remaining: 9.84ms
98:	learn: 19.8689673	total: 488ms	remaining: 4.93ms
99:	learn: 19.7537356	total: 493ms	remaining: 0us
0:	learn: 46.8832143	total: 5.91ms	remaining: 585ms
1:	learn: 45.8700349	total: 11.6ms	remaining: 571ms
2:	learn: 45.0546867	total: 15.9ms	remaining: 514ms
3:	learn: 44.2829439	total: 20.6ms	remaining: 493ms
4:	learn: 43.4609042	total: 25.2ms	remaining: 478ms
5:	learn: 42.6754991	total: 29.7ms	remaining: 466ms
6:	learn: 41.9234935	total: 33.9ms	remaining: 450ms
7:	learn: 41.3987518	total: 38ms	remaining: 437ms
8:	learn: 40.6625066	total: 42.5ms	remaining: 430ms
9:	learn: 40.0029561	total: 47.1ms	remaining: 424ms
10:	learn: 39.3897033	total: 51.3ms	remaining: 415ms
11:	learn: 38.7741453	total: 55.6ms	remaining: 408ms
12:	learn: 38.1201100	total: 60.1ms	remaining: 402ms
13:	learn: 37.5129454	total: 64.5ms	remaining: 396ms
14:	learn: 37.2062206	total: 68.9ms	remaining: 390ms
15:	learn: 36.6831741	total: 72.9ms	remaining: 383ms
16:	learn: 36.2902788	total: 77ms	remaining: 376ms
17:	learn: 35.7639930	total: 81.5ms	remaining: 371ms
18:	learn: 35.2580953	total: 85.6ms	remaining: 365ms
19:	learn: 34.7809739	total: 90.2ms	remaining: 361ms
20:	learn: 34.1330433	total: 94.3ms	remaining: 355ms
21:	learn: 33.7302219	total: 99.6ms	remaining: 353ms
22:	learn: 33.3502495	total: 105ms	remaining: 350ms
23:	learn: 33.0067804	total: 110ms	remaining: 347ms
24:	learn: 32.6897855	total: 115ms	remaining: 345ms
25:	learn: 32.4361119	total: 120ms	remaining: 342ms
26:	learn: 32.1278981	total: 125ms	remaining: 339ms
27:	learn: 31.7863721	total: 135ms	remaining: 347ms
28:	learn: 31.4791450	total: 143ms	remaining: 350ms
29:	learn: 31.1760161	total: 150ms	remaining: 351ms
30:	learn: 30.9238888	total: 156ms	remaining: 347ms
31:	learn: 30.5500905	total: 162ms	remaining: 344ms
32:	learn: 30.3078126	total: 166ms	remaining: 338ms
33:	learn: 30.0480921	total: 171ms	remaining: 331ms
34:	learn: 29.8623884	total: 176ms	remaining: 326ms
35:	learn: 29.5991038	total: 180ms	remaining: 320ms
36:	learn: 29.4061161	total: 185ms	remaining: 315ms
37:	learn: 29.0269515	total: 189ms	remaining: 309ms
38:	learn: 28.8224959	total: 194ms	remaining: 303ms
39:	learn: 28.6417843	total: 198ms	remaining: 297ms
40:	learn: 28.3633368	total: 202ms	remaining: 291ms
41:	learn: 28.0200246	total: 206ms	remaining: 285ms
42:	learn: 27.7221254	total: 210ms	remaining: 279ms
43:	learn: 27.5105818	total: 214ms	remaining: 272ms
44:	learn: 27.3551010	total: 218ms	remaining: 267ms
45:	learn: 27.0787522	total: 222ms	remaining: 261ms
46:	learn: 26.8726317	total: 227ms	remaining: 256ms
47:	learn: 26.8003277	total: 232ms	remaining: 251ms
48:	learn: 26.5493785	total: 237ms	remaining: 246ms
49:	learn: 26.3699550	total: 242ms	remaining: 242ms
50:	learn: 26.1519631	total: 247ms	remaining: 237ms
51:	learn: 25.9277325	total: 252ms	remaining: 232ms
52:	learn: 25.7286035	total: 257ms	remaining: 228ms
53:	learn: 25.4999193	total: 261ms	remaining: 222ms
54:	learn: 25.3434703	total: 265ms	remaining: 217ms
55:	learn: 25.1497545	total: 269ms	remaining: 211ms
56:	learn: 24.9498143	total: 274ms	remaining: 206ms
57:	learn: 24.6509390	total: 278ms	remaining: 201ms
58:	learn: 24.5576144	total: 283ms	remaining: 197ms
59:	learn: 24.4265144	total: 288ms	remaining: 192ms
60:	learn: 24.3100706	total: 294ms	remaining: 188ms
61:	learn: 24.1727952	total: 299ms	remaining: 183ms
62:	learn: 24.0478558	total: 307ms	remaining: 180ms
63:	learn: 23.9124577	total: 314ms	remaining: 177ms
64:	learn: 23.7703718	total: 322ms	remaining: 173ms
65:	learn: 23.5975027	total: 328ms	remaining: 169ms
66:	learn: 23.4318077	total: 334ms	remaining: 164ms
67:	learn: 23.3099691	total: 341ms	remaining: 161ms
68:	learn: 23.1947982	total: 346ms	remaining: 156ms
69:	learn: 23.0260174	total: 352ms	remaining: 151ms
70:	learn: 22.8523100	total: 357ms	remaining: 146ms
71:	learn: 22.8028534	total: 364ms	remaining: 142ms
72:	learn: 22.6880658	total: 369ms	remaining: 137ms
73:	learn: 22.5956809	total: 375ms	remaining: 132ms
74:	learn: 22.4692932	total: 381ms	remaining: 127ms
75:	learn: 22.2863504	total: 387ms	remaining: 122ms
76:	learn: 22.1911237	total: 393ms	remaining: 117ms
77:	learn: 22.1098391	total: 399ms	remaining: 112ms
78:	learn: 22.0182738	total: 405ms	remaining: 108ms
79:	learn: 21.9306746	total: 410ms	remaining: 102ms
80:	learn: 21.7508233	total: 415ms	remaining: 97.3ms
81:	learn: 21.7108446	total: 421ms	remaining: 92.5ms
82:	learn: 21.5931852	total: 427ms	remaining: 87.4ms
83:	learn: 21.4480361	total: 431ms	remaining: 82.2ms
84:	learn: 21.3092119	total: 436ms	remaining: 77ms
85:	learn: 21.2605557	total: 441ms	remaining: 71.8ms
86:	learn: 21.1123597	total: 446ms	remaining: 66.7ms
87:	learn: 21.0115642	total: 452ms	remaining: 61.6ms
88:	learn: 20.9389040	total: 458ms	remaining: 56.6ms
89:	learn: 20.8300300	total: 463ms	remaining: 51.5ms
90:	learn: 20.7159733	total: 469ms	remaining: 46.4ms
91:	learn: 20.6282090	total: 474ms	remaining: 41.3ms
92:	learn: 20.5164529	total: 480ms	remaining: 36.1ms
93:	learn: 20.4692032	total: 485ms	remaining: 31ms
94:	learn: 20.3768451	total: 490ms	remaining: 25.8ms
95:	learn: 20.2808056	total: 495ms	remaining: 20.6ms
96:	learn: 20.2082089	total: 500ms	remaining: 15.5ms
97:	learn: 20.1698768	total: 504ms	remaining: 10.3ms
98:	learn: 20.1048816	total: 509ms	remaining: 5.14ms
99:	learn: 20.0086159	total: 514ms	remaining: 0us
0:	learn: 27.6871645	total: 6.72ms	remaining: 665ms
1:	learn: 27.3312003	total: 11.7ms	remaining: 575ms
2:	learn: 26.9359558	total: 16.9ms	remaining: 546ms
3:	learn: 26.6055364	total: 21.7ms	remaining: 520ms
4:	learn: 26.1664924	total: 26.4ms	remaining: 502ms
5:	learn: 25.8515393	total: 31.9ms	remaining: 499ms
6:	learn: 25.4620036	total: 36.5ms	remaining: 485ms
7:	learn: 25.1669741	total: 41.1ms	remaining: 472ms
8:	learn: 24.8455454	total: 46.1ms	remaining: 466ms
9:	learn: 24.5106323	total: 50.8ms	remaining: 457ms
10:	learn: 24.1915228	total: 55.3ms	remaining: 448ms
11:	learn: 23.9076053	total: 60.1ms	remaining: 441ms
12:	learn: 23.6692445	total: 65.2ms	remaining: 436ms
13:	learn: 23.4343504	total: 69.8ms	remaining: 429ms
14:	learn: 23.2425280	total: 74.4ms	remaining: 421ms
15:	learn: 22.9254142	total: 79.1ms	remaining: 415ms
16:	learn: 22.6495489	total: 84ms	remaining: 410ms
17:	learn: 22.4343705	total: 88.6ms	remaining: 404ms
18:	learn: 22.2154202	total: 93.4ms	remaining: 398ms
19:	learn: 22.0592712	total: 98.5ms	remaining: 394ms
20:	learn: 21.7971944	total: 103ms	remaining: 389ms
21:	learn: 21.6128930	total: 108ms	remaining: 383ms
22:	learn: 21.3882946	total: 113ms	remaining: 377ms
23:	learn: 21.0912570	total: 118ms	remaining: 372ms
24:	learn: 20.8922857	total: 122ms	remaining: 367ms
25:	learn: 20.7150574	total: 127ms	remaining: 362ms
26:	learn: 20.5673183	total: 132ms	remaining: 357ms
27:	learn: 20.4331275	total: 137ms	remaining: 352ms
28:	learn: 20.2782866	total: 141ms	remaining: 346ms
29:	learn: 20.1061525	total: 146ms	remaining: 341ms
30:	learn: 19.9225948	total: 151ms	remaining: 336ms
31:	learn: 19.7809193	total: 156ms	remaining: 331ms
32:	learn: 19.6057771	total: 161ms	remaining: 326ms
33:	learn: 19.4391243	total: 165ms	remaining: 320ms
34:	learn: 19.2234365	total: 170ms	remaining: 316ms
35:	learn: 19.0214424	total: 175ms	remaining: 312ms
36:	learn: 18.8990643	total: 180ms	remaining: 307ms
37:	learn: 18.7473635	total: 185ms	remaining: 302ms
38:	learn: 18.6125192	total: 190ms	remaining: 298ms
39:	learn: 18.4977949	total: 196ms	remaining: 294ms
40:	learn: 18.3914568	total: 205ms	remaining: 295ms
41:	learn: 18.2541544	total: 216ms	remaining: 298ms
42:	learn: 18.1038984	total: 224ms	remaining: 296ms
43:	learn: 17.9706172	total: 232ms	remaining: 295ms
44:	learn: 17.8198810	total: 238ms	remaining: 291ms
45:	learn: 17.7102597	total: 244ms	remaining: 286ms
46:	learn: 17.6148228	total: 249ms	remaining: 281ms
47:	learn: 17.5115365	total: 255ms	remaining: 277ms
48:	learn: 17.3884162	total: 261ms	remaining: 272ms
49:	learn: 17.2857632	total: 267ms	remaining: 267ms
50:	learn: 17.1618843	total: 272ms	remaining: 261ms
51:	learn: 17.0529601	total: 277ms	remaining: 256ms
52:	learn: 16.9330273	total: 283ms	remaining: 251ms
53:	learn: 16.8206672	total: 288ms	remaining: 246ms
54:	learn: 16.7080356	total: 294ms	remaining: 241ms
55:	learn: 16.5874354	total: 299ms	remaining: 235ms
56:	learn: 16.4929860	total: 304ms	remaining: 229ms
57:	learn: 16.4269419	total: 309ms	remaining: 224ms
58:	learn: 16.3474026	total: 314ms	remaining: 218ms
59:	learn: 16.2515784	total: 318ms	remaining: 212ms
60:	learn: 16.1743901	total: 323ms	remaining: 207ms
61:	learn: 16.0389930	total: 328ms	remaining: 201ms
62:	learn: 15.9671636	total: 333ms	remaining: 195ms
63:	learn: 15.8928486	total: 337ms	remaining: 190ms
64:	learn: 15.8303841	total: 343ms	remaining: 185ms
65:	learn: 15.7612266	total: 348ms	remaining: 179ms
66:	learn: 15.6811172	total: 352ms	remaining: 174ms
67:	learn: 15.6262138	total: 357ms	remaining: 168ms
68:	learn: 15.5662508	total: 362ms	remaining: 163ms
69:	learn: 15.4804354	total: 367ms	remaining: 157ms
70:	learn: 15.4054915	total: 372ms	remaining: 152ms
71:	learn: 15.3271396	total: 378ms	remaining: 147ms
72:	learn: 15.2828359	total: 383ms	remaining: 142ms
73:	learn: 15.2197404	total: 388ms	remaining: 136ms
74:	learn: 15.1315902	total: 393ms	remaining: 131ms
75:	learn: 15.0780523	total: 401ms	remaining: 126ms
76:	learn: 14.9959155	total: 409ms	remaining: 122ms
77:	learn: 14.9265008	total: 418ms	remaining: 118ms
78:	learn: 14.8570189	total: 423ms	remaining: 112ms
79:	learn: 14.8060372	total: 430ms	remaining: 108ms
80:	learn: 14.7294676	total: 436ms	remaining: 102ms
81:	learn: 14.6708309	total: 440ms	remaining: 96.7ms
82:	learn: 14.5765370	total: 445ms	remaining: 91.2ms
83:	learn: 14.5312713	total: 450ms	remaining: 85.7ms
84:	learn: 14.4830327	total: 455ms	remaining: 80.2ms
85:	learn: 14.4296247	total: 460ms	remaining: 74.8ms
86:	learn: 14.3381470	total: 465ms	remaining: 69.4ms
87:	learn: 14.2638093	total: 470ms	remaining: 64ms
88:	learn: 14.2288435	total: 474ms	remaining: 58.6ms
89:	learn: 14.1489273	total: 479ms	remaining: 53.2ms
90:	learn: 14.0937923	total: 484ms	remaining: 47.8ms
91:	learn: 14.0334062	total: 488ms	remaining: 42.5ms
92:	learn: 13.9854696	total: 493ms	remaining: 37.1ms
93:	learn: 13.9444203	total: 498ms	remaining: 31.8ms
94:	learn: 13.9101523	total: 503ms	remaining: 26.5ms
95:	learn: 13.8460655	total: 507ms	remaining: 21.1ms
96:	learn: 13.7809420	total: 512ms	remaining: 15.8ms
97:	learn: 13.7270532	total: 517ms	remaining: 10.5ms
98:	learn: 13.6891300	total: 522ms	remaining: 5.27ms
99:	learn: 13.6569696	total: 526ms	remaining: 0us
0:	learn: 42.9754370	total: 5.33ms	remaining: 528ms
1:	learn: 42.2613272	total: 10.3ms	remaining: 505ms
2:	learn: 41.4729969	total: 15.2ms	remaining: 492ms
3:	learn: 40.7127004	total: 20.2ms	remaining: 484ms
4:	learn: 39.7775109	total: 27.5ms	remaining: 522ms
5:	learn: 39.1736663	total: 46.8ms	remaining: 733ms
6:	learn: 38.2981109	total: 53.3ms	remaining: 709ms
7:	learn: 37.5352984	total: 60ms	remaining: 690ms
8:	learn: 36.7771474	total: 65.7ms	remaining: 664ms
9:	learn: 36.0581366	total: 71.5ms	remaining: 644ms
10:	learn: 35.3542706	total: 77.5ms	remaining: 627ms
11:	learn: 34.6937007	total: 83.9ms	remaining: 615ms
12:	learn: 34.0408035	total: 90.4ms	remaining: 605ms
13:	learn: 33.3460240	total: 96.6ms	remaining: 593ms
14:	learn: 32.8086243	total: 103ms	remaining: 581ms
15:	learn: 32.1934462	total: 108ms	remaining: 569ms
16:	learn: 31.6465519	total: 114ms	remaining: 559ms
17:	learn: 31.2161293	total: 121ms	remaining: 550ms
18:	learn: 30.6730548	total: 126ms	remaining: 536ms
19:	learn: 30.3153659	total: 130ms	remaining: 521ms
20:	learn: 29.7661420	total: 135ms	remaining: 508ms
21:	learn: 29.2095664	total: 140ms	remaining: 496ms
22:	learn: 28.7509592	total: 145ms	remaining: 485ms
23:	learn: 28.4347528	total: 149ms	remaining: 473ms
24:	learn: 28.0551654	total: 154ms	remaining: 462ms
25:	learn: 27.7295952	total: 159ms	remaining: 453ms
26:	learn: 27.2329225	total: 164ms	remaining: 442ms
27:	learn: 26.9970607	total: 168ms	remaining: 433ms
28:	learn: 26.6596544	total: 173ms	remaining: 424ms
29:	learn: 26.2633576	total: 178ms	remaining: 415ms
30:	learn: 25.9761623	total: 183ms	remaining: 407ms
31:	learn: 25.6177371	total: 187ms	remaining: 398ms
32:	learn: 25.2165933	total: 192ms	remaining: 390ms
33:	learn: 24.8012870	total: 197ms	remaining: 383ms
34:	learn: 24.4772532	total: 202ms	remaining: 375ms
35:	learn: 24.1560359	total: 206ms	remaining: 367ms
36:	learn: 23.9688812	total: 212ms	remaining: 360ms
37:	learn: 23.6907607	total: 216ms	remaining: 353ms
38:	learn: 23.3885772	total: 221ms	remaining: 345ms
39:	learn: 23.2234939	total: 225ms	remaining: 338ms
40:	learn: 22.9785026	total: 231ms	remaining: 332ms
41:	learn: 22.6827268	total: 236ms	remaining: 326ms
42:	learn: 22.4564360	total: 241ms	remaining: 319ms
43:	learn: 22.2517827	total: 246ms	remaining: 313ms
44:	learn: 21.9858709	total: 251ms	remaining: 307ms
45:	learn: 21.7595870	total: 258ms	remaining: 303ms
46:	learn: 21.5929957	total: 268ms	remaining: 302ms
47:	learn: 21.4071752	total: 276ms	remaining: 299ms
48:	learn: 21.2186470	total: 283ms	remaining: 294ms
49:	learn: 21.0691824	total: 290ms	remaining: 290ms
50:	learn: 20.8921347	total: 295ms	remaining: 284ms
51:	learn: 20.6834229	total: 300ms	remaining: 277ms
52:	learn: 20.4718988	total: 306ms	remaining: 271ms
53:	learn: 20.3413889	total: 311ms	remaining: 265ms
54:	learn: 20.1785464	total: 315ms	remaining: 258ms
55:	learn: 19.9824314	total: 320ms	remaining: 252ms
56:	learn: 19.8217596	total: 325ms	remaining: 245ms
57:	learn: 19.6318474	total: 330ms	remaining: 239ms
58:	learn: 19.4962236	total: 335ms	remaining: 232ms
59:	learn: 19.3114985	total: 340ms	remaining: 226ms
60:	learn: 19.2181156	total: 345ms	remaining: 220ms
61:	learn: 19.0689614	total: 349ms	remaining: 214ms
62:	learn: 18.9563267	total: 354ms	remaining: 208ms
63:	learn: 18.8343083	total: 359ms	remaining: 202ms
64:	learn: 18.7050033	total: 364ms	remaining: 196ms
65:	learn: 18.6014163	total: 369ms	remaining: 190ms
66:	learn: 18.4910692	total: 374ms	remaining: 184ms
67:	learn: 18.3935194	total: 379ms	remaining: 178ms
68:	learn: 18.2825842	total: 383ms	remaining: 172ms
69:	learn: 18.1519267	total: 389ms	remaining: 167ms
70:	learn: 18.0527651	total: 394ms	remaining: 161ms
71:	learn: 17.9770106	total: 398ms	remaining: 155ms
72:	learn: 17.9151628	total: 403ms	remaining: 149ms
73:	learn: 17.7957486	total: 408ms	remaining: 143ms
74:	learn: 17.7025765	total: 414ms	remaining: 138ms
75:	learn: 17.5957242	total: 419ms	remaining: 132ms
76:	learn: 17.4683244	total: 424ms	remaining: 127ms
77:	learn: 17.3415729	total: 429ms	remaining: 121ms
78:	learn: 17.2886896	total: 434ms	remaining: 115ms
79:	learn: 17.2280922	total: 439ms	remaining: 110ms
80:	learn: 17.1188996	total: 444ms	remaining: 104ms
81:	learn: 17.0236450	total: 449ms	remaining: 98.7ms
82:	learn: 16.9046661	total: 456ms	remaining: 93.4ms
83:	learn: 16.7930633	total: 466ms	remaining: 88.7ms
84:	learn: 16.6870100	total: 478ms	remaining: 84.3ms
85:	learn: 16.5512107	total: 484ms	remaining: 78.7ms
86:	learn: 16.4353400	total: 490ms	remaining: 73.3ms
87:	learn: 16.3256461	total: 496ms	remaining: 67.6ms
88:	learn: 16.2968057	total: 502ms	remaining: 62.1ms
89:	learn: 16.2136078	total: 508ms	remaining: 56.4ms
90:	learn: 16.1596096	total: 513ms	remaining: 50.8ms
91:	learn: 16.1164050	total: 520ms	remaining: 45.2ms
92:	learn: 16.0660454	total: 525ms	remaining: 39.5ms
93:	learn: 16.0380611	total: 531ms	remaining: 33.9ms
94:	learn: 15.9494441	total: 536ms	remaining: 28.2ms
95:	learn: 15.8874840	total: 541ms	remaining: 22.5ms
96:	learn: 15.8288234	total: 547ms	remaining: 16.9ms
97:	learn: 15.7562787	total: 552ms	remaining: 11.3ms
98:	learn: 15.6822678	total: 558ms	remaining: 5.63ms
99:	learn: 15.5901500	total: 563ms	remaining: 0us
0:	learn: 46.4504871	total: 5.06ms	remaining: 501ms
1:	learn: 45.7240114	total: 10.1ms	remaining: 497ms
2:	learn: 45.0308025	total: 14.9ms	remaining: 481ms
3:	learn: 44.1111169	total: 19.7ms	remaining: 474ms
4:	learn: 43.3925352	total: 24.9ms	remaining: 474ms
5:	learn: 42.7856354	total: 30.1ms	remaining: 472ms
6:	learn: 42.1998170	total: 35.1ms	remaining: 466ms
7:	learn: 41.3532708	total: 40ms	remaining: 460ms
8:	learn: 40.7314571	total: 45.4ms	remaining: 459ms
9:	learn: 39.9838066	total: 54ms	remaining: 486ms
10:	learn: 39.4168243	total: 62.3ms	remaining: 504ms
11:	learn: 39.0148769	total: 70ms	remaining: 513ms
12:	learn: 38.3055855	total: 75.2ms	remaining: 503ms
13:	learn: 37.7343198	total: 82ms	remaining: 504ms
14:	learn: 37.4177463	total: 86.9ms	remaining: 492ms
15:	learn: 36.9043298	total: 91.6ms	remaining: 481ms
16:	learn: 36.3139174	total: 96.4ms	remaining: 471ms
17:	learn: 35.7200448	total: 101ms	remaining: 461ms
18:	learn: 35.3763394	total: 106ms	remaining: 451ms
19:	learn: 34.7666728	total: 111ms	remaining: 442ms
20:	learn: 34.2642890	total: 115ms	remaining: 434ms
21:	learn: 33.8196936	total: 120ms	remaining: 427ms
22:	learn: 33.4205669	total: 126ms	remaining: 421ms
23:	learn: 32.8565493	total: 131ms	remaining: 416ms
24:	learn: 32.5287132	total: 136ms	remaining: 408ms
25:	learn: 32.2142064	total: 141ms	remaining: 401ms
26:	learn: 31.9258854	total: 146ms	remaining: 394ms
27:	learn: 31.4083665	total: 150ms	remaining: 387ms
28:	learn: 31.1615620	total: 155ms	remaining: 380ms
29:	learn: 30.6948867	total: 160ms	remaining: 373ms
30:	learn: 30.3185108	total: 165ms	remaining: 367ms
31:	learn: 29.9245223	total: 170ms	remaining: 360ms
32:	learn: 29.6683643	total: 174ms	remaining: 354ms
33:	learn: 29.3868143	total: 179ms	remaining: 347ms
34:	learn: 29.1105699	total: 184ms	remaining: 341ms
35:	learn: 28.8274848	total: 188ms	remaining: 335ms
36:	learn: 28.5478288	total: 193ms	remaining: 328ms
37:	learn: 28.2355121	total: 198ms	remaining: 323ms
38:	learn: 28.0182564	total: 203ms	remaining: 317ms
39:	learn: 27.7654405	total: 207ms	remaining: 311ms
40:	learn: 27.5720477	total: 212ms	remaining: 305ms
41:	learn: 27.3182782	total: 217ms	remaining: 299ms
42:	learn: 26.9504431	total: 222ms	remaining: 294ms
43:	learn: 26.7281906	total: 227ms	remaining: 289ms
44:	learn: 26.5390008	total: 232ms	remaining: 284ms
45:	learn: 26.3781338	total: 237ms	remaining: 278ms
46:	learn: 26.1763177	total: 242ms	remaining: 273ms
47:	learn: 25.9417647	total: 249ms	remaining: 270ms
48:	learn: 25.7528045	total: 258ms	remaining: 269ms
49:	learn: 25.6336897	total: 271ms	remaining: 271ms
50:	learn: 25.4800426	total: 278ms	remaining: 267ms
51:	learn: 25.2895681	total: 285ms	remaining: 263ms
52:	learn: 25.0827111	total: 290ms	remaining: 257ms
53:	learn: 24.7987678	total: 296ms	remaining: 252ms
54:	learn: 24.6309982	total: 302ms	remaining: 247ms
55:	learn: 24.3526776	total: 308ms	remaining: 242ms
56:	learn: 24.1689125	total: 313ms	remaining: 236ms
57:	learn: 23.9802039	total: 319ms	remaining: 231ms
58:	learn: 23.8059432	total: 324ms	remaining: 225ms
59:	learn: 23.6006403	total: 330ms	remaining: 220ms
60:	learn: 23.2948382	total: 336ms	remaining: 215ms
61:	learn: 23.1338922	total: 342ms	remaining: 210ms
62:	learn: 22.9581269	total: 347ms	remaining: 204ms
63:	learn: 22.8263127	total: 352ms	remaining: 198ms
64:	learn: 22.6966006	total: 356ms	remaining: 192ms
65:	learn: 22.6012389	total: 361ms	remaining: 186ms
66:	learn: 22.4220244	total: 366ms	remaining: 180ms
67:	learn: 22.3148342	total: 371ms	remaining: 175ms
68:	learn: 22.1543592	total: 376ms	remaining: 169ms
69:	learn: 22.0614050	total: 381ms	remaining: 163ms
70:	learn: 21.9134025	total: 385ms	remaining: 157ms
71:	learn: 21.8198101	total: 390ms	remaining: 152ms
72:	learn: 21.6944173	total: 395ms	remaining: 146ms
73:	learn: 21.4727420	total: 400ms	remaining: 140ms
74:	learn: 21.3000560	total: 405ms	remaining: 135ms
75:	learn: 21.1884740	total: 410ms	remaining: 129ms
76:	learn: 21.0321317	total: 415ms	remaining: 124ms
77:	learn: 20.9371793	total: 420ms	remaining: 118ms
78:	learn: 20.6800341	total: 427ms	remaining: 114ms
79:	learn: 20.5629904	total: 435ms	remaining: 109ms
80:	learn: 20.4098217	total: 445ms	remaining: 104ms
81:	learn: 20.2139261	total: 451ms	remaining: 99.1ms
82:	learn: 20.1024260	total: 458ms	remaining: 93.8ms
83:	learn: 19.9835855	total: 466ms	remaining: 88.7ms
84:	learn: 19.9018880	total: 471ms	remaining: 83.1ms
85:	learn: 19.7819843	total: 476ms	remaining: 77.5ms
86:	learn: 19.6352780	total: 481ms	remaining: 71.9ms
87:	learn: 19.4888328	total: 486ms	remaining: 66.2ms
88:	learn: 19.4365121	total: 490ms	remaining: 60.6ms
89:	learn: 19.3427430	total: 496ms	remaining: 55.1ms
90:	learn: 19.2884907	total: 501ms	remaining: 49.5ms
91:	learn: 19.1898932	total: 505ms	remaining: 43.9ms
92:	learn: 19.0775661	total: 510ms	remaining: 38.4ms
93:	learn: 19.0334055	total: 514ms	remaining: 32.8ms
94:	learn: 18.9381916	total: 519ms	remaining: 27.3ms
95:	learn: 18.8471198	total: 524ms	remaining: 21.8ms
96:	learn: 18.7136478	total: 529ms	remaining: 16.4ms
97:	learn: 18.6633102	total: 534ms	remaining: 10.9ms
98:	learn: 18.5887516	total: 538ms	remaining: 5.44ms
99:	learn: 18.4841597	total: 544ms	remaining: 0us
0:	learn: 46.2172336	total: 5.08ms	remaining: 503ms
1:	learn: 45.4248871	total: 9.88ms	remaining: 484ms
2:	learn: 44.8702937	total: 15.4ms	remaining: 497ms
3:	learn: 44.2019212	total: 20.1ms	remaining: 482ms
4:	learn: 43.4805210	total: 24.7ms	remaining: 469ms
5:	learn: 42.7336269	total: 30.2ms	remaining: 473ms
6:	learn: 42.0396670	total: 35.4ms	remaining: 470ms
7:	learn: 41.5668459	total: 40.5ms	remaining: 466ms
8:	learn: 40.8999125	total: 45.9ms	remaining: 464ms
9:	learn: 40.3358512	total: 51.1ms	remaining: 460ms
10:	learn: 39.7511489	total: 58.3ms	remaining: 472ms
11:	learn: 39.0775416	total: 69ms	remaining: 506ms
12:	learn: 38.5204735	total: 81.4ms	remaining: 545ms
13:	learn: 38.2087509	total: 89.4ms	remaining: 549ms
14:	learn: 37.7259552	total: 96.2ms	remaining: 545ms
15:	learn: 37.1646397	total: 102ms	remaining: 537ms
16:	learn: 36.7093520	total: 108ms	remaining: 528ms
17:	learn: 36.2212308	total: 114ms	remaining: 520ms
18:	learn: 35.8682156	total: 120ms	remaining: 513ms
19:	learn: 35.6026383	total: 126ms	remaining: 503ms
20:	learn: 35.1739725	total: 132ms	remaining: 495ms
21:	learn: 34.5938003	total: 138ms	remaining: 488ms
22:	learn: 34.1479056	total: 143ms	remaining: 479ms
23:	learn: 33.8759356	total: 149ms	remaining: 472ms
24:	learn: 33.2898426	total: 155ms	remaining: 466ms
25:	learn: 32.9220237	total: 160ms	remaining: 456ms
26:	learn: 32.4324374	total: 165ms	remaining: 446ms
27:	learn: 32.1726327	total: 170ms	remaining: 438ms
28:	learn: 31.8020879	total: 175ms	remaining: 429ms
29:	learn: 31.4329781	total: 180ms	remaining: 420ms
30:	learn: 30.9995282	total: 185ms	remaining: 412ms
31:	learn: 30.6815978	total: 190ms	remaining: 404ms
32:	learn: 30.2991029	total: 195ms	remaining: 396ms
33:	learn: 30.0354202	total: 200ms	remaining: 388ms
34:	learn: 29.7620535	total: 205ms	remaining: 381ms
35:	learn: 29.4552589	total: 210ms	remaining: 373ms
36:	learn: 29.2634399	total: 215ms	remaining: 366ms
37:	learn: 28.8345135	total: 220ms	remaining: 359ms
38:	learn: 28.5551142	total: 225ms	remaining: 351ms
39:	learn: 28.3258809	total: 230ms	remaining: 344ms
40:	learn: 28.0835564	total: 235ms	remaining: 338ms
41:	learn: 27.7517159	total: 240ms	remaining: 331ms
42:	learn: 27.5427595	total: 245ms	remaining: 325ms
43:	learn: 27.3925105	total: 250ms	remaining: 318ms
44:	learn: 27.2377120	total: 255ms	remaining: 312ms
45:	learn: 26.9930398	total: 264ms	remaining: 310ms
46:	learn: 26.7748687	total: 272ms	remaining: 307ms
47:	learn: 26.5856986	total: 280ms	remaining: 304ms
48:	learn: 26.4344153	total: 286ms	remaining: 298ms
49:	learn: 26.3263456	total: 293ms	remaining: 293ms
50:	learn: 26.2048412	total: 297ms	remaining: 286ms
51:	learn: 26.0608546	total: 302ms	remaining: 279ms
52:	learn: 25.9428146	total: 307ms	remaining: 272ms
53:	learn: 25.7578029	total: 311ms	remaining: 265ms
54:	learn: 25.5696792	total: 316ms	remaining: 259ms
55:	learn: 25.3291935	total: 321ms	remaining: 252ms
56:	learn: 25.1388942	total: 326ms	remaining: 246ms
57:	learn: 24.9853945	total: 331ms	remaining: 240ms
58:	learn: 24.8037785	total: 336ms	remaining: 233ms
59:	learn: 24.5326704	total: 340ms	remaining: 227ms
60:	learn: 24.2208240	total: 345ms	remaining: 221ms
61:	learn: 24.0774015	total: 349ms	remaining: 214ms
62:	learn: 23.9705824	total: 354ms	remaining: 208ms
63:	learn: 23.8877665	total: 359ms	remaining: 202ms
64:	learn: 23.7309043	total: 363ms	remaining: 196ms
65:	learn: 23.5820140	total: 368ms	remaining: 190ms
66:	learn: 23.3762012	total: 373ms	remaining: 184ms
67:	learn: 23.2317502	total: 379ms	remaining: 178ms
68:	learn: 23.0868331	total: 384ms	remaining: 173ms
69:	learn: 22.9642758	total: 389ms	remaining: 167ms
70:	learn: 22.8085341	total: 394ms	remaining: 161ms
71:	learn: 22.6834294	total: 399ms	remaining: 155ms
72:	learn: 22.6152922	total: 403ms	remaining: 149ms
73:	learn: 22.3675145	total: 408ms	remaining: 143ms
74:	learn: 22.3023338	total: 413ms	remaining: 138ms
75:	learn: 22.1866833	total: 418ms	remaining: 132ms
76:	learn: 22.0163130	total: 422ms	remaining: 126ms
77:	learn: 21.9691306	total: 427ms	remaining: 120ms
78:	learn: 21.9004647	total: 432ms	remaining: 115ms
79:	learn: 21.7931869	total: 437ms	remaining: 109ms
80:	learn: 21.6747916	total: 442ms	remaining: 104ms
81:	learn: 21.5187568	total: 447ms	remaining: 98.1ms
82:	learn: 21.3124880	total: 452ms	remaining: 92.6ms
83:	learn: 21.1979524	total: 458ms	remaining: 87.2ms
84:	learn: 21.1311130	total: 466ms	remaining: 82.3ms
85:	learn: 21.0606062	total: 477ms	remaining: 77.7ms
86:	learn: 20.9900935	total: 493ms	remaining: 73.7ms
87:	learn: 20.8908054	total: 499ms	remaining: 68.1ms
88:	learn: 20.8088525	total: 505ms	remaining: 62.4ms
89:	learn: 20.7300955	total: 511ms	remaining: 56.8ms
90:	learn: 20.6130276	total: 517ms	remaining: 51.1ms
91:	learn: 20.5437508	total: 523ms	remaining: 45.5ms
92:	learn: 20.5029426	total: 529ms	remaining: 39.8ms
93:	learn: 20.4416708	total: 534ms	remaining: 34.1ms
94:	learn: 20.3917812	total: 540ms	remaining: 28.4ms
95:	learn: 20.3305024	total: 545ms	remaining: 22.7ms
96:	learn: 20.2375704	total: 551ms	remaining: 17ms
97:	learn: 20.1835197	total: 556ms	remaining: 11.3ms
98:	learn: 20.1246834	total: 561ms	remaining: 5.66ms
99:	learn: 20.0506334	total: 565ms	remaining: 0us
0:	learn: 46.7334648	total: 5.18ms	remaining: 513ms
1:	learn: 46.2069876	total: 10ms	remaining: 491ms
2:	learn: 45.3699967	total: 14.9ms	remaining: 482ms
3:	learn: 44.6866787	total: 19.8ms	remaining: 475ms
4:	learn: 43.8536031	total: 24.6ms	remaining: 468ms
5:	learn: 43.4716853	total: 29.6ms	remaining: 464ms
6:	learn: 42.9929637	total: 34.7ms	remaining: 461ms
7:	learn: 42.4952169	total: 39.8ms	remaining: 458ms
8:	learn: 41.7548337	total: 45ms	remaining: 455ms
9:	learn: 41.1054415	total: 49.7ms	remaining: 448ms
10:	learn: 40.4827492	total: 54.9ms	remaining: 444ms
11:	learn: 39.7605907	total: 60.5ms	remaining: 444ms
12:	learn: 39.2532558	total: 70ms	remaining: 469ms
13:	learn: 38.6572753	total: 78ms	remaining: 479ms
14:	learn: 38.2886959	total: 84.7ms	remaining: 480ms
15:	learn: 37.7816612	total: 90.7ms	remaining: 476ms
16:	learn: 37.1680589	total: 96.6ms	remaining: 471ms
17:	learn: 36.5753004	total: 102ms	remaining: 463ms
18:	learn: 36.2339458	total: 107ms	remaining: 454ms
19:	learn: 35.9159716	total: 112ms	remaining: 447ms
20:	learn: 35.4591743	total: 117ms	remaining: 439ms
21:	learn: 34.8726070	total: 121ms	remaining: 431ms
22:	learn: 34.3903591	total: 126ms	remaining: 423ms
23:	learn: 34.1236827	total: 131ms	remaining: 416ms
24:	learn: 33.8026540	total: 136ms	remaining: 408ms
25:	learn: 33.4594822	total: 141ms	remaining: 400ms
26:	learn: 33.1338910	total: 145ms	remaining: 393ms
27:	learn: 32.8527106	total: 150ms	remaining: 386ms
28:	learn: 32.4923829	total: 154ms	remaining: 378ms
29:	learn: 32.0560533	total: 159ms	remaining: 371ms
30:	learn: 31.6614408	total: 164ms	remaining: 365ms
31:	learn: 31.2796040	total: 169ms	remaining: 358ms
32:	learn: 30.8214741	total: 173ms	remaining: 351ms
33:	learn: 30.5908694	total: 178ms	remaining: 345ms
34:	learn: 30.3637356	total: 183ms	remaining: 339ms
35:	learn: 30.0446511	total: 187ms	remaining: 333ms
36:	learn: 29.8792549	total: 192ms	remaining: 327ms
37:	learn: 29.5488457	total: 197ms	remaining: 321ms
38:	learn: 29.2808568	total: 202ms	remaining: 316ms
39:	learn: 29.0603765	total: 207ms	remaining: 311ms
40:	learn: 28.8272425	total: 212ms	remaining: 305ms
41:	learn: 28.4753580	total: 218ms	remaining: 301ms
42:	learn: 28.2963614	total: 223ms	remaining: 295ms
43:	learn: 28.1054768	total: 228ms	remaining: 290ms
44:	learn: 27.9038093	total: 233ms	remaining: 285ms
45:	learn: 27.6305487	total: 239ms	remaining: 281ms
46:	learn: 27.4457907	total: 245ms	remaining: 276ms
47:	learn: 27.1855957	total: 250ms	remaining: 271ms
48:	learn: 26.9987934	total: 257ms	remaining: 267ms
49:	learn: 26.7881067	total: 279ms	remaining: 279ms
50:	learn: 26.6385231	total: 287ms	remaining: 275ms
51:	learn: 26.4661755	total: 296ms	remaining: 274ms
52:	learn: 26.3331868	total: 303ms	remaining: 268ms
53:	learn: 26.0353476	total: 310ms	remaining: 264ms
54:	learn: 25.8257147	total: 316ms	remaining: 259ms
55:	learn: 25.5924383	total: 323ms	remaining: 254ms
56:	learn: 25.4082209	total: 330ms	remaining: 249ms
57:	learn: 25.2350104	total: 336ms	remaining: 243ms
58:	learn: 25.1789867	total: 341ms	remaining: 237ms
59:	learn: 24.9111359	total: 350ms	remaining: 233ms
60:	learn: 24.6314503	total: 355ms	remaining: 227ms
61:	learn: 24.4297999	total: 361ms	remaining: 221ms
62:	learn: 24.3126171	total: 367ms	remaining: 216ms
63:	learn: 24.1544005	total: 373ms	remaining: 210ms
64:	learn: 24.0197950	total: 378ms	remaining: 203ms
65:	learn: 23.8483087	total: 383ms	remaining: 197ms
66:	learn: 23.6624915	total: 388ms	remaining: 191ms
67:	learn: 23.5068105	total: 393ms	remaining: 185ms
68:	learn: 23.4266187	total: 398ms	remaining: 179ms
69:	learn: 23.3535388	total: 403ms	remaining: 173ms
70:	learn: 23.2477190	total: 408ms	remaining: 167ms
71:	learn: 23.1877634	total: 413ms	remaining: 161ms
72:	learn: 23.1344720	total: 418ms	remaining: 154ms
73:	learn: 22.9498234	total: 422ms	remaining: 148ms
74:	learn: 22.9068295	total: 428ms	remaining: 143ms
75:	learn: 22.7368434	total: 433ms	remaining: 137ms
76:	learn: 22.6084901	total: 438ms	remaining: 131ms
77:	learn: 22.4690295	total: 444ms	remaining: 125ms
78:	learn: 22.3970100	total: 449ms	remaining: 119ms
79:	learn: 22.3025537	total: 454ms	remaining: 113ms
80:	learn: 22.2089293	total: 464ms	remaining: 109ms
81:	learn: 22.0522107	total: 472ms	remaining: 104ms
82:	learn: 21.9368213	total: 478ms	remaining: 98ms
83:	learn: 21.7968322	total: 485ms	remaining: 92.3ms
84:	learn: 21.7416164	total: 490ms	remaining: 86.5ms
85:	learn: 21.6031099	total: 495ms	remaining: 80.5ms
86:	learn: 21.4530627	total: 500ms	remaining: 74.7ms
87:	learn: 21.3118417	total: 505ms	remaining: 68.9ms
88:	learn: 21.2760431	total: 511ms	remaining: 63.1ms
89:	learn: 21.2071350	total: 516ms	remaining: 57.3ms
90:	learn: 21.1051001	total: 521ms	remaining: 51.6ms
91:	learn: 21.0246142	total: 526ms	remaining: 45.8ms
92:	learn: 20.9834999	total: 531ms	remaining: 40ms
93:	learn: 20.8989393	total: 536ms	remaining: 34.2ms
94:	learn: 20.8262231	total: 541ms	remaining: 28.5ms
95:	learn: 20.7369110	total: 546ms	remaining: 22.7ms
96:	learn: 20.6409587	total: 551ms	remaining: 17ms
97:	learn: 20.5553641	total: 556ms	remaining: 11.3ms
98:	learn: 20.4317232	total: 561ms	remaining: 5.66ms
99:	learn: 20.3708681	total: 565ms	remaining: 0us
0:	learn: 27.6737479	total: 21.8ms	remaining: 6.51s
1:	learn: 27.3204154	total: 47.2ms	remaining: 7.03s
2:	learn: 26.9091890	total: 73.1ms	remaining: 7.23s
3:	learn: 26.4875027	total: 96.1ms	remaining: 7.11s
4:	learn: 26.1185303	total: 98.2ms	remaining: 5.79s
5:	learn: 25.8552625	total: 122ms	remaining: 5.96s
6:	learn: 25.5259340	total: 145ms	remaining: 6.05s
7:	learn: 25.1594330	total: 167ms	remaining: 6.08s
8:	learn: 24.8131787	total: 189ms	remaining: 6.11s
9:	learn: 24.5107101	total: 209ms	remaining: 6.05s
10:	learn: 24.1382533	total: 227ms	remaining: 5.97s
11:	learn: 23.9059068	total: 247ms	remaining: 5.93s
12:	learn: 23.5820314	total: 268ms	remaining: 5.91s
13:	learn: 23.2566481	total: 294ms	remaining: 6.01s
14:	learn: 22.9720100	total: 316ms	remaining: 6.01s
15:	learn: 22.6458045	total: 335ms	remaining: 5.94s
16:	learn: 22.3310792	total: 355ms	remaining: 5.92s
17:	learn: 22.0614254	total: 374ms	remaining: 5.86s
18:	learn: 21.8674093	total: 394ms	remaining: 5.83s
19:	learn: 21.6777228	total: 414ms	remaining: 5.8s
20:	learn: 21.4758843	total: 434ms	remaining: 5.76s
21:	learn: 21.2015722	total: 453ms	remaining: 5.72s
22:	learn: 20.9741180	total: 473ms	remaining: 5.69s
23:	learn: 20.8103315	total: 502ms	remaining: 5.77s
24:	learn: 20.6059519	total: 526ms	remaining: 5.78s
25:	learn: 20.3003482	total: 548ms	remaining: 5.77s
26:	learn: 20.1047051	total: 571ms	remaining: 5.77s
27:	learn: 19.9117545	total: 593ms	remaining: 5.76s
28:	learn: 19.7508802	total: 616ms	remaining: 5.76s
29:	learn: 19.5995500	total: 638ms	remaining: 5.74s
30:	learn: 19.4265011	total: 659ms	remaining: 5.72s
31:	learn: 19.2507253	total: 679ms	remaining: 5.68s
32:	learn: 19.0780638	total: 701ms	remaining: 5.67s
33:	learn: 18.8739495	total: 727ms	remaining: 5.68s
34:	learn: 18.6951687	total: 751ms	remaining: 5.69s
35:	learn: 18.5423419	total: 772ms	remaining: 5.66s
36:	learn: 18.3650169	total: 794ms	remaining: 5.64s
37:	learn: 18.1741271	total: 815ms	remaining: 5.62s
38:	learn: 18.0512035	total: 836ms	remaining: 5.59s
39:	learn: 17.9045476	total: 858ms	remaining: 5.57s
40:	learn: 17.7669779	total: 878ms	remaining: 5.55s
41:	learn: 17.6440484	total: 901ms	remaining: 5.53s
42:	learn: 17.4832065	total: 924ms	remaining: 5.52s
43:	learn: 17.3307814	total: 955ms	remaining: 5.56s
44:	learn: 17.1968371	total: 982ms	remaining: 5.57s
45:	learn: 17.0551367	total: 1.01s	remaining: 5.55s
46:	learn: 16.9663187	total: 1.03s	remaining: 5.54s
47:	learn: 16.8379611	total: 1.05s	remaining: 5.54s
48:	learn: 16.7219020	total: 1.08s	remaining: 5.52s
49:	learn: 16.6155465	total: 1.1s	remaining: 5.49s
50:	learn: 16.5139205	total: 1.12s	remaining: 5.47s
51:	learn: 16.3531147	total: 1.13s	remaining: 5.38s
52:	learn: 16.2763831	total: 1.15s	remaining: 5.37s
53:	learn: 16.1694133	total: 1.18s	remaining: 5.38s
54:	learn: 16.0589004	total: 1.2s	remaining: 5.36s
55:	learn: 15.9660704	total: 1.22s	remaining: 5.34s
56:	learn: 15.8765659	total: 1.25s	remaining: 5.31s
57:	learn: 15.7724924	total: 1.27s	remaining: 5.29s
58:	learn: 15.6865252	total: 1.29s	remaining: 5.27s
59:	learn: 15.6055417	total: 1.31s	remaining: 5.25s
60:	learn: 15.5264778	total: 1.33s	remaining: 5.23s
61:	learn: 15.4370145	total: 1.36s	remaining: 5.21s
62:	learn: 15.3562945	total: 1.38s	remaining: 5.19s
63:	learn: 15.2817484	total: 1.41s	remaining: 5.2s
64:	learn: 15.1941732	total: 1.43s	remaining: 5.19s
65:	learn: 15.1049991	total: 1.46s	remaining: 5.16s
66:	learn: 15.0359663	total: 1.48s	remaining: 5.15s
67:	learn: 14.9351417	total: 1.5s	remaining: 5.13s
68:	learn: 14.8495497	total: 1.53s	remaining: 5.11s
69:	learn: 14.7623093	total: 1.55s	remaining: 5.09s
70:	learn: 14.6771574	total: 1.57s	remaining: 5.07s
71:	learn: 14.5978140	total: 1.59s	remaining: 5.05s
72:	learn: 14.5375886	total: 1.62s	remaining: 5.04s
73:	learn: 14.4649353	total: 1.64s	remaining: 5.02s
74:	learn: 14.4009644	total: 1.67s	remaining: 5s
75:	learn: 14.3287275	total: 1.69s	remaining: 4.97s
76:	learn: 14.2318571	total: 1.71s	remaining: 4.95s
77:	learn: 14.1625701	total: 1.73s	remaining: 4.92s
78:	learn: 14.0644282	total: 1.75s	remaining: 4.9s
79:	learn: 13.9762883	total: 1.77s	remaining: 4.87s
80:	learn: 13.9042920	total: 1.79s	remaining: 4.84s
81:	learn: 13.8176535	total: 1.81s	remaining: 4.82s
82:	learn: 13.6910849	total: 1.84s	remaining: 4.82s
83:	learn: 13.5737570	total: 1.87s	remaining: 4.8s
84:	learn: 13.5049845	total: 1.89s	remaining: 4.78s
85:	learn: 13.4341145	total: 1.91s	remaining: 4.75s
86:	learn: 13.3796196	total: 1.93s	remaining: 4.73s
87:	learn: 13.3024352	total: 1.95s	remaining: 4.71s
88:	learn: 13.2435566	total: 1.98s	remaining: 4.68s
89:	learn: 13.1910369	total: 2s	remaining: 4.66s
90:	learn: 13.1471565	total: 2.02s	remaining: 4.64s
91:	learn: 13.0611063	total: 2.05s	remaining: 4.63s
92:	learn: 12.9909112	total: 2.07s	remaining: 4.61s
93:	learn: 12.9355316	total: 2.09s	remaining: 4.58s
94:	learn: 12.8561480	total: 2.11s	remaining: 4.55s
95:	learn: 12.7929803	total: 2.13s	remaining: 4.53s
96:	learn: 12.7262412	total: 2.15s	remaining: 4.5s
97:	learn: 12.6739210	total: 2.17s	remaining: 4.48s
98:	learn: 12.6265593	total: 2.19s	remaining: 4.45s
99:	learn: 12.5594247	total: 2.22s	remaining: 4.44s
100:	learn: 12.4986691	total: 2.24s	remaining: 4.42s
101:	learn: 12.4471027	total: 2.27s	remaining: 4.4s
102:	learn: 12.3962782	total: 2.29s	remaining: 4.37s
103:	learn: 12.3424090	total: 2.3s	remaining: 4.34s
104:	learn: 12.2660971	total: 2.32s	remaining: 4.32s
105:	learn: 12.2042689	total: 2.35s	remaining: 4.29s
106:	learn: 12.1363044	total: 2.37s	remaining: 4.27s
107:	learn: 12.1022229	total: 2.39s	remaining: 4.25s
108:	learn: 12.0491052	total: 2.41s	remaining: 4.22s
109:	learn: 11.9900598	total: 2.43s	remaining: 4.2s
110:	learn: 11.9411055	total: 2.45s	remaining: 4.18s
111:	learn: 11.8782485	total: 2.48s	remaining: 4.16s
112:	learn: 11.8248797	total: 2.5s	remaining: 4.13s
113:	learn: 11.7750338	total: 2.52s	remaining: 4.11s
114:	learn: 11.7390791	total: 2.54s	remaining: 4.09s
115:	learn: 11.6795857	total: 2.56s	remaining: 4.06s
116:	learn: 11.5948258	total: 2.58s	remaining: 4.04s
117:	learn: 11.5598943	total: 2.6s	remaining: 4.02s
118:	learn: 11.4992434	total: 2.63s	remaining: 4s
119:	learn: 11.4491317	total: 2.65s	remaining: 3.97s
120:	learn: 11.3929630	total: 2.67s	remaining: 3.95s
121:	learn: 11.3373664	total: 2.7s	remaining: 3.94s
122:	learn: 11.2805890	total: 2.72s	remaining: 3.92s
123:	learn: 11.2341228	total: 2.75s	remaining: 3.9s
124:	learn: 11.1615505	total: 2.77s	remaining: 3.88s
125:	learn: 11.1024523	total: 2.79s	remaining: 3.86s
126:	learn: 11.0710084	total: 2.81s	remaining: 3.83s
127:	learn: 11.0251377	total: 2.83s	remaining: 3.81s
128:	learn: 10.9884605	total: 2.85s	remaining: 3.78s
129:	learn: 10.9584488	total: 2.88s	remaining: 3.76s
130:	learn: 10.8995848	total: 2.9s	remaining: 3.75s
131:	learn: 10.8549250	total: 2.93s	remaining: 3.73s
132:	learn: 10.8113067	total: 2.95s	remaining: 3.7s
133:	learn: 10.7553419	total: 2.97s	remaining: 3.68s
134:	learn: 10.7096544	total: 2.99s	remaining: 3.65s
135:	learn: 10.6757190	total: 3.01s	remaining: 3.63s
136:	learn: 10.6327685	total: 3.03s	remaining: 3.61s
137:	learn: 10.5902988	total: 3.05s	remaining: 3.58s
138:	learn: 10.5467376	total: 3.08s	remaining: 3.56s
139:	learn: 10.5163592	total: 3.1s	remaining: 3.54s
140:	learn: 10.4694138	total: 3.13s	remaining: 3.53s
141:	learn: 10.4359855	total: 3.15s	remaining: 3.51s
142:	learn: 10.4057439	total: 3.18s	remaining: 3.49s
143:	learn: 10.3729240	total: 3.2s	remaining: 3.47s
144:	learn: 10.3359301	total: 3.22s	remaining: 3.44s
145:	learn: 10.2697670	total: 3.24s	remaining: 3.42s
146:	learn: 10.2094154	total: 3.26s	remaining: 3.39s
147:	learn: 10.1600330	total: 3.29s	remaining: 3.38s
148:	learn: 10.1308425	total: 3.31s	remaining: 3.36s
149:	learn: 10.0855107	total: 3.34s	remaining: 3.34s
150:	learn: 10.0385460	total: 3.37s	remaining: 3.32s
151:	learn: 10.0087773	total: 3.39s	remaining: 3.3s
152:	learn: 9.9793744	total: 3.42s	remaining: 3.28s
153:	learn: 9.9525485	total: 3.44s	remaining: 3.26s
154:	learn: 9.9079941	total: 3.46s	remaining: 3.24s
155:	learn: 9.8778723	total: 3.48s	remaining: 3.21s
156:	learn: 9.8246060	total: 3.5s	remaining: 3.19s
157:	learn: 9.7894878	total: 3.53s	remaining: 3.17s
158:	learn: 9.7484967	total: 3.55s	remaining: 3.15s
159:	learn: 9.7248391	total: 3.59s	remaining: 3.14s
160:	learn: 9.7014264	total: 3.61s	remaining: 3.12s
161:	learn: 9.6583834	total: 3.64s	remaining: 3.1s
162:	learn: 9.6144299	total: 3.66s	remaining: 3.08s
163:	learn: 9.5794995	total: 3.69s	remaining: 3.06s
164:	learn: 9.5550633	total: 3.71s	remaining: 3.04s
165:	learn: 9.5026632	total: 3.73s	remaining: 3.01s
166:	learn: 9.4633969	total: 3.75s	remaining: 2.99s
167:	learn: 9.4104818	total: 3.78s	remaining: 2.97s
168:	learn: 9.3845831	total: 3.81s	remaining: 2.95s
169:	learn: 9.3337722	total: 3.83s	remaining: 2.93s
170:	learn: 9.2837197	total: 3.85s	remaining: 2.9s
171:	learn: 9.2466766	total: 3.87s	remaining: 2.88s
172:	learn: 9.2085127	total: 3.89s	remaining: 2.86s
173:	learn: 9.1694480	total: 3.91s	remaining: 2.83s
174:	learn: 9.1448907	total: 3.93s	remaining: 2.81s
175:	learn: 9.1013106	total: 3.96s	remaining: 2.79s
176:	learn: 9.0696815	total: 3.98s	remaining: 2.76s
177:	learn: 9.0279616	total: 4s	remaining: 2.74s
178:	learn: 9.0008978	total: 4.03s	remaining: 2.73s
179:	learn: 8.9449905	total: 4.06s	remaining: 2.7s
180:	learn: 8.9263735	total: 4.08s	remaining: 2.68s
181:	learn: 8.9082117	total: 4.11s	remaining: 2.66s
182:	learn: 8.8590211	total: 4.13s	remaining: 2.64s
183:	learn: 8.8398014	total: 4.15s	remaining: 2.62s
184:	learn: 8.7991374	total: 4.17s	remaining: 2.59s
185:	learn: 8.7574091	total: 4.19s	remaining: 2.57s
186:	learn: 8.7075149	total: 4.22s	remaining: 2.55s
187:	learn: 8.6651276	total: 4.25s	remaining: 2.53s
188:	learn: 8.6299124	total: 4.27s	remaining: 2.51s
189:	learn: 8.6039208	total: 4.29s	remaining: 2.48s
190:	learn: 8.5623097	total: 4.31s	remaining: 2.46s
191:	learn: 8.5109100	total: 4.33s	remaining: 2.44s
192:	learn: 8.4793653	total: 4.36s	remaining: 2.42s
193:	learn: 8.4481462	total: 4.38s	remaining: 2.39s
194:	learn: 8.4315766	total: 4.4s	remaining: 2.37s
195:	learn: 8.3834417	total: 4.42s	remaining: 2.35s
196:	learn: 8.3680774	total: 4.45s	remaining: 2.33s
197:	learn: 8.3496623	total: 4.48s	remaining: 2.31s
198:	learn: 8.3148580	total: 4.5s	remaining: 2.28s
199:	learn: 8.3052914	total: 4.52s	remaining: 2.26s
200:	learn: 8.2594410	total: 4.55s	remaining: 2.24s
201:	learn: 8.2470590	total: 4.57s	remaining: 2.22s
202:	learn: 8.2316760	total: 4.59s	remaining: 2.19s
203:	learn: 8.2041569	total: 4.61s	remaining: 2.17s
204:	learn: 8.1708835	total: 4.64s	remaining: 2.15s
205:	learn: 8.1301413	total: 4.66s	remaining: 2.13s
206:	learn: 8.0986826	total: 4.69s	remaining: 2.11s
207:	learn: 8.0741059	total: 4.71s	remaining: 2.08s
208:	learn: 8.0244528	total: 4.73s	remaining: 2.06s
209:	learn: 7.9989744	total: 4.75s	remaining: 2.04s
210:	learn: 7.9696573	total: 4.77s	remaining: 2.01s
211:	learn: 7.9396203	total: 4.79s	remaining: 1.99s
212:	learn: 7.9111124	total: 4.82s	remaining: 1.97s
213:	learn: 7.9007758	total: 4.84s	remaining: 1.94s
214:	learn: 7.8856958	total: 4.86s	remaining: 1.92s
215:	learn: 7.8685173	total: 4.88s	remaining: 1.9s
216:	learn: 7.8488503	total: 4.92s	remaining: 1.88s
217:	learn: 7.8127011	total: 4.94s	remaining: 1.86s
218:	learn: 7.7610464	total: 4.96s	remaining: 1.83s
219:	learn: 7.7371633	total: 4.99s	remaining: 1.81s
220:	learn: 7.7075772	total: 5.01s	remaining: 1.79s
221:	learn: 7.6862440	total: 5.03s	remaining: 1.77s
222:	learn: 7.6387389	total: 5.05s	remaining: 1.74s
223:	learn: 7.6039931	total: 5.07s	remaining: 1.72s
224:	learn: 7.5780873	total: 5.1s	remaining: 1.7s
225:	learn: 7.5366573	total: 5.13s	remaining: 1.68s
226:	learn: 7.5117065	total: 5.15s	remaining: 1.66s
227:	learn: 7.4849508	total: 5.17s	remaining: 1.63s
228:	learn: 7.4536731	total: 5.19s	remaining: 1.61s
229:	learn: 7.4238760	total: 5.21s	remaining: 1.59s
230:	learn: 7.4054602	total: 5.24s	remaining: 1.56s
231:	learn: 7.3841419	total: 5.26s	remaining: 1.54s
232:	learn: 7.3712995	total: 5.28s	remaining: 1.52s
233:	learn: 7.3403269	total: 5.3s	remaining: 1.5s
234:	learn: 7.3293521	total: 5.33s	remaining: 1.48s
235:	learn: 7.2977701	total: 5.36s	remaining: 1.45s
236:	learn: 7.2879483	total: 5.38s	remaining: 1.43s
237:	learn: 7.2651195	total: 5.41s	remaining: 1.41s
238:	learn: 7.2349887	total: 5.43s	remaining: 1.39s
239:	learn: 7.1998166	total: 5.45s	remaining: 1.36s
240:	learn: 7.1916439	total: 5.47s	remaining: 1.34s
241:	learn: 7.1651373	total: 5.49s	remaining: 1.32s
242:	learn: 7.1381913	total: 5.52s	remaining: 1.29s
243:	learn: 7.1196857	total: 5.55s	remaining: 1.27s
244:	learn: 7.1129330	total: 5.57s	remaining: 1.25s
245:	learn: 7.0917288	total: 5.59s	remaining: 1.23s
246:	learn: 7.0643221	total: 5.61s	remaining: 1.2s
247:	learn: 7.0355381	total: 5.63s	remaining: 1.18s
248:	learn: 7.0175711	total: 5.66s	remaining: 1.16s
249:	learn: 6.9969066	total: 5.68s	remaining: 1.14s
250:	learn: 6.9647213	total: 5.7s	remaining: 1.11s
251:	learn: 6.9543141	total: 5.73s	remaining: 1.09s
252:	learn: 6.9265098	total: 5.76s	remaining: 1.07s
253:	learn: 6.9022725	total: 5.79s	remaining: 1.05s
254:	learn: 6.8497254	total: 5.81s	remaining: 1.02s
255:	learn: 6.8285154	total: 5.83s	remaining: 1s
256:	learn: 6.8011995	total: 5.85s	remaining: 979ms
257:	learn: 6.7933719	total: 5.88s	remaining: 956ms
258:	learn: 6.7690265	total: 5.9s	remaining: 933ms
259:	learn: 6.7470688	total: 5.92s	remaining: 911ms
260:	learn: 6.7282782	total: 5.94s	remaining: 888ms
261:	learn: 6.6980892	total: 5.97s	remaining: 866ms
262:	learn: 6.6788044	total: 5.99s	remaining: 843ms
263:	learn: 6.6507208	total: 6.01s	remaining: 820ms
264:	learn: 6.6299738	total: 6.04s	remaining: 797ms
265:	learn: 6.6146145	total: 6.06s	remaining: 774ms
266:	learn: 6.5960711	total: 6.08s	remaining: 751ms
267:	learn: 6.5601064	total: 6.1s	remaining: 728ms
268:	learn: 6.5439209	total: 6.12s	remaining: 705ms
269:	learn: 6.5302107	total: 6.15s	remaining: 683ms
270:	learn: 6.5075739	total: 6.17s	remaining: 660ms
271:	learn: 6.4875851	total: 6.2s	remaining: 638ms
272:	learn: 6.4779171	total: 6.22s	remaining: 615ms
273:	learn: 6.4677739	total: 6.24s	remaining: 592ms
274:	learn: 6.4375131	total: 6.26s	remaining: 569ms
275:	learn: 6.4223197	total: 6.29s	remaining: 547ms
276:	learn: 6.4163633	total: 6.31s	remaining: 524ms
277:	learn: 6.4084438	total: 6.33s	remaining: 501ms
278:	learn: 6.3795757	total: 6.35s	remaining: 478ms
279:	learn: 6.3670166	total: 6.38s	remaining: 456ms
280:	learn: 6.3426010	total: 6.4s	remaining: 433ms
281:	learn: 6.3363177	total: 6.42s	remaining: 410ms
282:	learn: 6.3138385	total: 6.44s	remaining: 387ms
283:	learn: 6.2894060	total: 6.46s	remaining: 364ms
284:	learn: 6.2767007	total: 6.48s	remaining: 341ms
285:	learn: 6.2607815	total: 6.5s	remaining: 318ms
286:	learn: 6.2368751	total: 6.52s	remaining: 296ms
287:	learn: 6.2218151	total: 6.54s	remaining: 273ms
288:	learn: 6.2147193	total: 6.57s	remaining: 250ms
289:	learn: 6.1817002	total: 6.61s	remaining: 228ms
290:	learn: 6.1531900	total: 6.63s	remaining: 205ms
291:	learn: 6.1438157	total: 6.65s	remaining: 182ms
292:	learn: 6.1311550	total: 6.67s	remaining: 159ms
293:	learn: 6.1171744	total: 6.7s	remaining: 137ms
294:	learn: 6.1079932	total: 6.72s	remaining: 114ms
295:	learn: 6.0989063	total: 6.74s	remaining: 91.1ms
296:	learn: 6.0740401	total: 6.76s	remaining: 68.3ms
297:	learn: 6.0685711	total: 6.79s	remaining: 45.6ms
298:	learn: 6.0601135	total: 6.81s	remaining: 22.8ms
299:	learn: 6.0486579	total: 6.84s	remaining: 0us
0:	learn: 43.1728564	total: 20.5ms	remaining: 6.13s
1:	learn: 42.4479145	total: 41.9ms	remaining: 6.24s
2:	learn: 41.7618107	total: 63.8ms	remaining: 6.32s
3:	learn: 40.9535516	total: 86.2ms	remaining: 6.38s
4:	learn: 40.0184714	total: 109ms	remaining: 6.41s
5:	learn: 39.3975364	total: 138ms	remaining: 6.78s
6:	learn: 38.5285936	total: 161ms	remaining: 6.74s
7:	learn: 37.7229272	total: 185ms	remaining: 6.74s
8:	learn: 37.0918758	total: 207ms	remaining: 6.71s
9:	learn: 36.3564673	total: 230ms	remaining: 6.66s
10:	learn: 35.6811958	total: 251ms	remaining: 6.6s
11:	learn: 35.0050014	total: 273ms	remaining: 6.55s
12:	learn: 34.2960554	total: 294ms	remaining: 6.48s
13:	learn: 33.5236859	total: 316ms	remaining: 6.46s
14:	learn: 32.9402676	total: 318ms	remaining: 6.04s
15:	learn: 32.4523166	total: 348ms	remaining: 6.17s
16:	learn: 31.8840373	total: 369ms	remaining: 6.13s
17:	learn: 31.3075678	total: 389ms	remaining: 6.1s
18:	learn: 30.8876354	total: 409ms	remaining: 6.05s
19:	learn: 30.3498359	total: 430ms	remaining: 6.02s
20:	learn: 29.9235491	total: 452ms	remaining: 6.01s
21:	learn: 29.3980753	total: 472ms	remaining: 5.97s
22:	learn: 28.8855360	total: 493ms	remaining: 5.94s
23:	learn: 28.4464905	total: 515ms	remaining: 5.92s
24:	learn: 28.0340761	total: 530ms	remaining: 5.83s
25:	learn: 27.6857355	total: 559ms	remaining: 5.89s
26:	learn: 27.3334889	total: 581ms	remaining: 5.87s
27:	learn: 26.8330294	total: 612ms	remaining: 5.95s
28:	learn: 26.4299332	total: 637ms	remaining: 5.96s
29:	learn: 26.0045444	total: 660ms	remaining: 5.94s
30:	learn: 25.6006582	total: 685ms	remaining: 5.94s
31:	learn: 25.2312981	total: 713ms	remaining: 5.97s
32:	learn: 25.0083092	total: 737ms	remaining: 5.96s
33:	learn: 24.6611713	total: 765ms	remaining: 5.98s
34:	learn: 24.4598997	total: 795ms	remaining: 6.02s
35:	learn: 24.2341422	total: 820ms	remaining: 6.01s
36:	learn: 23.9210171	total: 842ms	remaining: 5.99s
37:	learn: 23.5299198	total: 865ms	remaining: 5.96s
38:	learn: 23.1652368	total: 889ms	remaining: 5.95s
39:	learn: 22.8941103	total: 913ms	remaining: 5.93s
40:	learn: 22.7084206	total: 937ms	remaining: 5.92s
41:	learn: 22.4654978	total: 969ms	remaining: 5.95s
42:	learn: 22.2302580	total: 1s	remaining: 5.99s
43:	learn: 21.9408933	total: 1.03s	remaining: 5.99s
44:	learn: 21.6779272	total: 1.05s	remaining: 5.98s
45:	learn: 21.5124883	total: 1.08s	remaining: 5.96s
46:	learn: 21.3803106	total: 1.1s	remaining: 5.94s
47:	learn: 21.2298916	total: 1.13s	remaining: 5.92s
48:	learn: 21.0336901	total: 1.15s	remaining: 5.89s
49:	learn: 20.7943434	total: 1.17s	remaining: 5.87s
50:	learn: 20.5676348	total: 1.21s	remaining: 5.92s
51:	learn: 20.3427273	total: 1.22s	remaining: 5.84s
52:	learn: 20.1024296	total: 1.25s	remaining: 5.82s
53:	learn: 19.9885265	total: 1.27s	remaining: 5.79s
54:	learn: 19.8413355	total: 1.29s	remaining: 5.77s
55:	learn: 19.7099619	total: 1.32s	remaining: 5.75s
56:	learn: 19.5311747	total: 1.34s	remaining: 5.72s
57:	learn: 19.3665040	total: 1.36s	remaining: 5.68s
58:	learn: 19.2281415	total: 1.39s	remaining: 5.66s
59:	learn: 19.1106495	total: 1.41s	remaining: 5.64s
60:	learn: 18.9927263	total: 1.44s	remaining: 5.65s
61:	learn: 18.7654626	total: 1.47s	remaining: 5.63s
62:	learn: 18.6108661	total: 1.49s	remaining: 5.61s
63:	learn: 18.4817806	total: 1.51s	remaining: 5.58s
64:	learn: 18.3632402	total: 1.54s	remaining: 5.56s
65:	learn: 18.2653457	total: 1.56s	remaining: 5.53s
66:	learn: 18.1378819	total: 1.58s	remaining: 5.5s
67:	learn: 18.0459629	total: 1.6s	remaining: 5.47s
68:	learn: 17.9001044	total: 1.63s	remaining: 5.47s
69:	learn: 17.7073203	total: 1.66s	remaining: 5.45s
70:	learn: 17.5276628	total: 1.68s	remaining: 5.42s
71:	learn: 17.4386086	total: 1.7s	remaining: 5.39s
72:	learn: 17.2890096	total: 1.72s	remaining: 5.36s
73:	learn: 17.1904631	total: 1.75s	remaining: 5.33s
74:	learn: 17.0955197	total: 1.77s	remaining: 5.3s
75:	learn: 16.9924303	total: 1.79s	remaining: 5.28s
76:	learn: 16.8972682	total: 1.81s	remaining: 5.25s
77:	learn: 16.7957864	total: 1.84s	remaining: 5.23s
78:	learn: 16.6405248	total: 1.87s	remaining: 5.23s
79:	learn: 16.5463991	total: 1.9s	remaining: 5.21s
80:	learn: 16.4622871	total: 1.92s	remaining: 5.19s
81:	learn: 16.3624916	total: 1.94s	remaining: 5.17s
82:	learn: 16.2073706	total: 1.97s	remaining: 5.14s
83:	learn: 16.0716875	total: 1.99s	remaining: 5.11s
84:	learn: 15.9336151	total: 2.01s	remaining: 5.08s
85:	learn: 15.8451501	total: 2.03s	remaining: 5.06s
86:	learn: 15.7200917	total: 2.06s	remaining: 5.04s
87:	learn: 15.6236971	total: 2.08s	remaining: 5.02s
88:	learn: 15.5479129	total: 2.1s	remaining: 4.99s
89:	learn: 15.4975079	total: 2.13s	remaining: 4.96s
90:	learn: 15.4083433	total: 2.15s	remaining: 4.93s
91:	learn: 15.3169327	total: 2.17s	remaining: 4.91s
92:	learn: 15.2207992	total: 2.19s	remaining: 4.88s
93:	learn: 15.1430327	total: 2.21s	remaining: 4.85s
94:	learn: 15.0665711	total: 2.23s	remaining: 4.82s
95:	learn: 14.9903534	total: 2.25s	remaining: 4.79s
96:	learn: 14.9054346	total: 2.28s	remaining: 4.78s
97:	learn: 14.7940457	total: 2.31s	remaining: 4.76s
98:	learn: 14.7008915	total: 2.33s	remaining: 4.74s
99:	learn: 14.6142673	total: 2.36s	remaining: 4.71s
100:	learn: 14.5337996	total: 2.38s	remaining: 4.69s
101:	learn: 14.4571728	total: 2.4s	remaining: 4.67s
102:	learn: 14.3898956	total: 2.43s	remaining: 4.64s
103:	learn: 14.3189412	total: 2.45s	remaining: 4.61s
104:	learn: 14.2525935	total: 2.47s	remaining: 4.58s
105:	learn: 14.1772436	total: 2.49s	remaining: 4.56s
106:	learn: 14.1059305	total: 2.52s	remaining: 4.54s
107:	learn: 14.0232782	total: 2.54s	remaining: 4.52s
108:	learn: 13.9368806	total: 2.56s	remaining: 4.49s
109:	learn: 13.8491229	total: 2.58s	remaining: 4.46s
110:	learn: 13.7685490	total: 2.6s	remaining: 4.43s
111:	learn: 13.6836750	total: 2.63s	remaining: 4.41s
112:	learn: 13.6202897	total: 2.65s	remaining: 4.38s
113:	learn: 13.5688904	total: 2.67s	remaining: 4.36s
114:	learn: 13.5145238	total: 2.69s	remaining: 4.33s
115:	learn: 13.4247466	total: 2.73s	remaining: 4.33s
116:	learn: 13.3307114	total: 2.75s	remaining: 4.31s
117:	learn: 13.2545184	total: 2.78s	remaining: 4.29s
118:	learn: 13.1996548	total: 2.8s	remaining: 4.26s
119:	learn: 13.1205307	total: 2.83s	remaining: 4.24s
120:	learn: 13.0479027	total: 2.85s	remaining: 4.22s
121:	learn: 12.9970441	total: 2.88s	remaining: 4.19s
122:	learn: 12.9295209	total: 2.9s	remaining: 4.17s
123:	learn: 12.8673524	total: 2.92s	remaining: 4.15s
124:	learn: 12.7786245	total: 2.95s	remaining: 4.13s
125:	learn: 12.7348929	total: 2.98s	remaining: 4.11s
126:	learn: 12.6858554	total: 3s	remaining: 4.08s
127:	learn: 12.6189787	total: 3.02s	remaining: 4.06s
128:	learn: 12.5864827	total: 3.04s	remaining: 4.03s
129:	learn: 12.5478404	total: 3.06s	remaining: 4s
130:	learn: 12.5017820	total: 3.08s	remaining: 3.97s
131:	learn: 12.4491462	total: 3.1s	remaining: 3.95s
132:	learn: 12.3822056	total: 3.13s	remaining: 3.93s
133:	learn: 12.3098651	total: 3.16s	remaining: 3.91s
134:	learn: 12.2531700	total: 3.18s	remaining: 3.89s
135:	learn: 12.2119331	total: 3.2s	remaining: 3.86s
136:	learn: 12.1571278	total: 3.23s	remaining: 3.84s
137:	learn: 12.0976094	total: 3.25s	remaining: 3.82s
138:	learn: 12.0025352	total: 3.27s	remaining: 3.79s
139:	learn: 11.9019074	total: 3.3s	remaining: 3.77s
140:	learn: 11.7854852	total: 3.32s	remaining: 3.74s
141:	learn: 11.7104078	total: 3.34s	remaining: 3.72s
142:	learn: 11.6741366	total: 3.37s	remaining: 3.7s
143:	learn: 11.6077195	total: 3.4s	remaining: 3.68s
144:	learn: 11.5496695	total: 3.42s	remaining: 3.65s
145:	learn: 11.4568800	total: 3.44s	remaining: 3.63s
146:	learn: 11.4368150	total: 3.46s	remaining: 3.6s
147:	learn: 11.3955813	total: 3.48s	remaining: 3.58s
148:	learn: 11.3565385	total: 3.5s	remaining: 3.55s
149:	learn: 11.3020845	total: 3.52s	remaining: 3.52s
150:	learn: 11.2130390	total: 3.54s	remaining: 3.5s
151:	learn: 11.1401745	total: 3.57s	remaining: 3.47s
152:	learn: 11.1048934	total: 3.6s	remaining: 3.46s
153:	learn: 11.0709933	total: 3.62s	remaining: 3.43s
154:	learn: 11.0212519	total: 3.64s	remaining: 3.41s
155:	learn: 10.9258762	total: 3.67s	remaining: 3.38s
156:	learn: 10.8429657	total: 3.69s	remaining: 3.36s
157:	learn: 10.8061370	total: 3.71s	remaining: 3.33s
158:	learn: 10.7571211	total: 3.73s	remaining: 3.31s
159:	learn: 10.6698987	total: 3.75s	remaining: 3.28s
160:	learn: 10.6228772	total: 3.78s	remaining: 3.26s
161:	learn: 10.5368796	total: 3.8s	remaining: 3.24s
162:	learn: 10.4841450	total: 3.82s	remaining: 3.21s
163:	learn: 10.4012317	total: 3.85s	remaining: 3.19s
164:	learn: 10.3588701	total: 3.87s	remaining: 3.16s
165:	learn: 10.2816720	total: 3.88s	remaining: 3.14s
166:	learn: 10.2259651	total: 3.9s	remaining: 3.11s
167:	learn: 10.1792554	total: 3.92s	remaining: 3.08s
168:	learn: 10.1604671	total: 3.94s	remaining: 3.06s
169:	learn: 10.1318986	total: 3.97s	remaining: 3.03s
170:	learn: 10.0948065	total: 3.99s	remaining: 3.01s
171:	learn: 10.0521191	total: 4.02s	remaining: 2.99s
172:	learn: 9.9946157	total: 4.04s	remaining: 2.97s
173:	learn: 9.9313678	total: 4.06s	remaining: 2.94s
174:	learn: 9.9156434	total: 4.08s	remaining: 2.92s
175:	learn: 9.8749788	total: 4.11s	remaining: 2.89s
176:	learn: 9.8485079	total: 4.13s	remaining: 2.87s
177:	learn: 9.8134329	total: 4.15s	remaining: 2.85s
178:	learn: 9.7880107	total: 4.17s	remaining: 2.82s
179:	learn: 9.7587885	total: 4.19s	remaining: 2.79s
180:	learn: 9.6939238	total: 4.22s	remaining: 2.77s
181:	learn: 9.6447939	total: 4.24s	remaining: 2.75s
182:	learn: 9.6136022	total: 4.26s	remaining: 2.73s
183:	learn: 9.5885675	total: 4.29s	remaining: 2.7s
184:	learn: 9.5271670	total: 4.31s	remaining: 2.68s
185:	learn: 9.4616988	total: 4.33s	remaining: 2.65s
186:	learn: 9.4287637	total: 4.35s	remaining: 2.63s
187:	learn: 9.3948177	total: 4.37s	remaining: 2.6s
188:	learn: 9.3767726	total: 4.39s	remaining: 2.58s
189:	learn: 9.3473555	total: 4.41s	remaining: 2.56s
190:	learn: 9.3099572	total: 4.44s	remaining: 2.53s
191:	learn: 9.2799642	total: 4.47s	remaining: 2.52s
192:	learn: 9.2505323	total: 4.49s	remaining: 2.49s
193:	learn: 9.2173510	total: 4.52s	remaining: 2.47s
194:	learn: 9.1746531	total: 4.54s	remaining: 2.44s
195:	learn: 9.1354668	total: 4.56s	remaining: 2.42s
196:	learn: 9.0983547	total: 4.58s	remaining: 2.4s
197:	learn: 9.0615111	total: 4.6s	remaining: 2.37s
198:	learn: 9.0239666	total: 4.63s	remaining: 2.35s
199:	learn: 8.9906083	total: 4.65s	remaining: 2.33s
200:	learn: 8.9458694	total: 4.68s	remaining: 2.31s
201:	learn: 8.9040783	total: 4.7s	remaining: 2.28s
202:	learn: 8.8495189	total: 4.72s	remaining: 2.26s
203:	learn: 8.8243403	total: 4.74s	remaining: 2.23s
204:	learn: 8.7930532	total: 4.76s	remaining: 2.21s
205:	learn: 8.7587095	total: 4.79s	remaining: 2.18s
206:	learn: 8.7177051	total: 4.81s	remaining: 2.16s
207:	learn: 8.6879684	total: 4.83s	remaining: 2.13s
208:	learn: 8.6681622	total: 4.85s	remaining: 2.11s
209:	learn: 8.6299257	total: 4.88s	remaining: 2.09s
210:	learn: 8.5728096	total: 4.91s	remaining: 2.07s
211:	learn: 8.5456345	total: 4.93s	remaining: 2.04s
212:	learn: 8.5000514	total: 4.95s	remaining: 2.02s
213:	learn: 8.4814393	total: 4.97s	remaining: 2s
214:	learn: 8.4512752	total: 4.99s	remaining: 1.97s
215:	learn: 8.4144221	total: 5.01s	remaining: 1.95s
216:	learn: 8.3817886	total: 5.04s	remaining: 1.93s
217:	learn: 8.3392143	total: 5.07s	remaining: 1.91s
218:	learn: 8.3102751	total: 5.1s	remaining: 1.89s
219:	learn: 8.2963441	total: 5.13s	remaining: 1.86s
220:	learn: 8.2666907	total: 5.15s	remaining: 1.84s
221:	learn: 8.2470955	total: 5.17s	remaining: 1.82s
222:	learn: 8.2352635	total: 5.2s	remaining: 1.79s
223:	learn: 8.2046605	total: 5.22s	remaining: 1.77s
224:	learn: 8.1746742	total: 5.24s	remaining: 1.75s
225:	learn: 8.1466704	total: 5.27s	remaining: 1.72s
226:	learn: 8.1113762	total: 5.29s	remaining: 1.7s
227:	learn: 8.0842520	total: 5.33s	remaining: 1.68s
228:	learn: 8.0619499	total: 5.35s	remaining: 1.66s
229:	learn: 8.0391421	total: 5.38s	remaining: 1.64s
230:	learn: 8.0082460	total: 5.41s	remaining: 1.62s
231:	learn: 7.9894454	total: 5.43s	remaining: 1.59s
232:	learn: 7.9567828	total: 5.46s	remaining: 1.57s
233:	learn: 7.9394710	total: 5.48s	remaining: 1.54s
234:	learn: 7.9171371	total: 5.5s	remaining: 1.52s
235:	learn: 7.9062197	total: 5.53s	remaining: 1.5s
236:	learn: 7.8803505	total: 5.56s	remaining: 1.48s
237:	learn: 7.8508624	total: 5.58s	remaining: 1.45s
238:	learn: 7.8107215	total: 5.61s	remaining: 1.43s
239:	learn: 7.7758588	total: 5.63s	remaining: 1.41s
240:	learn: 7.7403137	total: 5.66s	remaining: 1.39s
241:	learn: 7.7146933	total: 5.68s	remaining: 1.36s
242:	learn: 7.6876053	total: 5.71s	remaining: 1.34s
243:	learn: 7.6631332	total: 5.73s	remaining: 1.31s
244:	learn: 7.6340717	total: 5.77s	remaining: 1.29s
245:	learn: 7.5835394	total: 5.79s	remaining: 1.27s
246:	learn: 7.5572808	total: 5.82s	remaining: 1.25s
247:	learn: 7.5477260	total: 5.84s	remaining: 1.23s
248:	learn: 7.5230961	total: 5.87s	remaining: 1.2s
249:	learn: 7.4926278	total: 5.89s	remaining: 1.18s
250:	learn: 7.4663059	total: 5.92s	remaining: 1.16s
251:	learn: 7.4439231	total: 5.95s	remaining: 1.13s
252:	learn: 7.4147104	total: 5.97s	remaining: 1.11s
253:	learn: 7.3910399	total: 6s	remaining: 1.09s
254:	learn: 7.3694309	total: 6.02s	remaining: 1.06s
255:	learn: 7.3357705	total: 6.04s	remaining: 1.04s
256:	learn: 7.3063747	total: 6.07s	remaining: 1.01s
257:	learn: 7.2838572	total: 6.09s	remaining: 991ms
258:	learn: 7.2589764	total: 6.11s	remaining: 968ms
259:	learn: 7.2389253	total: 6.14s	remaining: 945ms
260:	learn: 7.2138913	total: 6.17s	remaining: 922ms
261:	learn: 7.1886917	total: 6.19s	remaining: 898ms
262:	learn: 7.1772908	total: 6.22s	remaining: 876ms
263:	learn: 7.1578726	total: 6.25s	remaining: 853ms
264:	learn: 7.1353133	total: 6.28s	remaining: 829ms
265:	learn: 7.1102477	total: 6.3s	remaining: 806ms
266:	learn: 7.0828702	total: 6.33s	remaining: 782ms
267:	learn: 7.0597237	total: 6.35s	remaining: 758ms
268:	learn: 7.0365630	total: 6.38s	remaining: 735ms
269:	learn: 7.0146208	total: 6.41s	remaining: 712ms
270:	learn: 6.9967242	total: 6.44s	remaining: 689ms
271:	learn: 6.9790909	total: 6.46s	remaining: 665ms
272:	learn: 6.9693113	total: 6.49s	remaining: 641ms
273:	learn: 6.9594319	total: 6.51s	remaining: 617ms
274:	learn: 6.9391890	total: 6.53s	remaining: 594ms
275:	learn: 6.9254505	total: 6.55s	remaining: 570ms
276:	learn: 6.9024357	total: 6.58s	remaining: 546ms
277:	learn: 6.8754442	total: 6.6s	remaining: 523ms
278:	learn: 6.8502029	total: 6.64s	remaining: 500ms
279:	learn: 6.8142453	total: 6.67s	remaining: 476ms
280:	learn: 6.7927649	total: 6.7s	remaining: 453ms
281:	learn: 6.7640814	total: 6.72s	remaining: 429ms
282:	learn: 6.7463937	total: 6.74s	remaining: 405ms
283:	learn: 6.7403516	total: 6.77s	remaining: 381ms
284:	learn: 6.7206013	total: 6.79s	remaining: 357ms
285:	learn: 6.6875183	total: 6.82s	remaining: 334ms
286:	learn: 6.6609083	total: 6.85s	remaining: 310ms
287:	learn: 6.6545230	total: 6.87s	remaining: 286ms
288:	learn: 6.6358351	total: 6.89s	remaining: 262ms
289:	learn: 6.6175009	total: 6.93s	remaining: 239ms
290:	learn: 6.6067729	total: 6.95s	remaining: 215ms
291:	learn: 6.5970320	total: 6.97s	remaining: 191ms
292:	learn: 6.5837751	total: 7s	remaining: 167ms
293:	learn: 6.5625028	total: 7.03s	remaining: 143ms
294:	learn: 6.5530621	total: 7.05s	remaining: 120ms
295:	learn: 6.5478680	total: 7.08s	remaining: 95.7ms
296:	learn: 6.5241879	total: 7.1s	remaining: 71.8ms
297:	learn: 6.5118159	total: 7.13s	remaining: 47.8ms
298:	learn: 6.4919631	total: 7.16s	remaining: 24ms
299:	learn: 6.4739124	total: 7.19s	remaining: 0us
0:	learn: 46.4788614	total: 3.29ms	remaining: 984ms
1:	learn: 45.7710608	total: 26.6ms	remaining: 3.97s
2:	learn: 45.1565849	total: 47.2ms	remaining: 4.68s
3:	learn: 44.4030902	total: 68.6ms	remaining: 5.08s
4:	learn: 43.7256714	total: 89.7ms	remaining: 5.29s
5:	learn: 43.0846764	total: 112ms	remaining: 5.49s
6:	learn: 42.3050249	total: 134ms	remaining: 5.59s
7:	learn: 41.5523343	total: 154ms	remaining: 5.64s
8:	learn: 40.7548041	total: 177ms	remaining: 5.71s
9:	learn: 39.8798087	total: 197ms	remaining: 5.71s
10:	learn: 39.3807548	total: 221ms	remaining: 5.79s
11:	learn: 38.6353297	total: 244ms	remaining: 5.87s
12:	learn: 38.0252968	total: 269ms	remaining: 5.95s
13:	learn: 37.4584814	total: 301ms	remaining: 6.15s
14:	learn: 36.9766267	total: 324ms	remaining: 6.16s
15:	learn: 36.4351844	total: 347ms	remaining: 6.16s
16:	learn: 35.8711532	total: 372ms	remaining: 6.2s
17:	learn: 35.5046170	total: 396ms	remaining: 6.2s
18:	learn: 34.9410561	total: 419ms	remaining: 6.2s
19:	learn: 34.5414688	total: 440ms	remaining: 6.16s
20:	learn: 34.1994877	total: 462ms	remaining: 6.14s
21:	learn: 33.8105873	total: 487ms	remaining: 6.16s
22:	learn: 33.2767379	total: 514ms	remaining: 6.19s
23:	learn: 32.9293305	total: 536ms	remaining: 6.16s
24:	learn: 32.5563171	total: 558ms	remaining: 6.13s
25:	learn: 32.0312705	total: 580ms	remaining: 6.11s
26:	learn: 31.5549663	total: 603ms	remaining: 6.09s
27:	learn: 31.2152408	total: 624ms	remaining: 6.07s
28:	learn: 30.8335992	total: 645ms	remaining: 6.03s
29:	learn: 30.4437650	total: 666ms	remaining: 5.99s
30:	learn: 30.1139865	total: 690ms	remaining: 5.98s
31:	learn: 29.6348886	total: 722ms	remaining: 6.05s
32:	learn: 29.4374411	total: 748ms	remaining: 6.05s
33:	learn: 29.1774552	total: 771ms	remaining: 6.04s
34:	learn: 28.9121068	total: 795ms	remaining: 6.02s
35:	learn: 28.6291033	total: 817ms	remaining: 5.99s
36:	learn: 28.3365166	total: 840ms	remaining: 5.97s
37:	learn: 28.0654213	total: 861ms	remaining: 5.94s
38:	learn: 27.7120990	total: 884ms	remaining: 5.91s
39:	learn: 27.4700227	total: 907ms	remaining: 5.89s
40:	learn: 27.2052722	total: 935ms	remaining: 5.91s
41:	learn: 26.9401129	total: 957ms	remaining: 5.88s
42:	learn: 26.6081493	total: 979ms	remaining: 5.85s
43:	learn: 26.3847138	total: 1s	remaining: 5.82s
44:	learn: 26.2201660	total: 1.02s	remaining: 5.79s
45:	learn: 26.0513425	total: 1.04s	remaining: 5.76s
46:	learn: 25.8609437	total: 1.06s	remaining: 5.72s
47:	learn: 25.6040252	total: 1.08s	remaining: 5.7s
48:	learn: 25.4235507	total: 1.11s	remaining: 5.68s
49:	learn: 25.2896788	total: 1.14s	remaining: 5.7s
50:	learn: 25.1208197	total: 1.16s	remaining: 5.68s
51:	learn: 24.8660258	total: 1.17s	remaining: 5.57s
52:	learn: 24.6165133	total: 1.19s	remaining: 5.56s
53:	learn: 24.3828983	total: 1.21s	remaining: 5.53s
54:	learn: 24.1841624	total: 1.24s	remaining: 5.51s
55:	learn: 24.0006316	total: 1.26s	remaining: 5.48s
56:	learn: 23.7695363	total: 1.28s	remaining: 5.45s
57:	learn: 23.6284017	total: 1.3s	remaining: 5.44s
58:	learn: 23.4125305	total: 1.33s	remaining: 5.44s
59:	learn: 23.2250456	total: 1.36s	remaining: 5.42s
60:	learn: 23.0467385	total: 1.38s	remaining: 5.4s
61:	learn: 22.7033792	total: 1.4s	remaining: 5.37s
62:	learn: 22.5334580	total: 1.42s	remaining: 5.35s
63:	learn: 22.3638971	total: 1.44s	remaining: 5.33s
64:	learn: 22.1384904	total: 1.47s	remaining: 5.3s
65:	learn: 22.0135698	total: 1.49s	remaining: 5.27s
66:	learn: 21.8734424	total: 1.51s	remaining: 5.25s
67:	learn: 21.7496417	total: 1.54s	remaining: 5.25s
68:	learn: 21.5374284	total: 1.57s	remaining: 5.24s
69:	learn: 21.3371276	total: 1.59s	remaining: 5.22s
70:	learn: 21.0990139	total: 1.61s	remaining: 5.2s
71:	learn: 20.9642590	total: 1.64s	remaining: 5.18s
72:	learn: 20.8049721	total: 1.66s	remaining: 5.16s
73:	learn: 20.7124973	total: 1.68s	remaining: 5.14s
74:	learn: 20.6049930	total: 1.7s	remaining: 5.11s
75:	learn: 20.4963737	total: 1.73s	remaining: 5.08s
76:	learn: 20.3645418	total: 1.75s	remaining: 5.07s
77:	learn: 20.2519924	total: 1.78s	remaining: 5.06s
78:	learn: 20.0505831	total: 1.8s	remaining: 5.04s
79:	learn: 19.9272769	total: 1.82s	remaining: 5.01s
80:	learn: 19.8219589	total: 1.84s	remaining: 4.98s
81:	learn: 19.7098289	total: 1.87s	remaining: 4.96s
82:	learn: 19.4383686	total: 1.89s	remaining: 4.94s
83:	learn: 19.3315372	total: 1.91s	remaining: 4.91s
84:	learn: 19.2144697	total: 1.93s	remaining: 4.88s
85:	learn: 19.0849701	total: 1.95s	remaining: 4.86s
86:	learn: 18.9769215	total: 1.98s	remaining: 4.84s
87:	learn: 18.8581283	total: 2s	remaining: 4.83s
88:	learn: 18.7414069	total: 2.03s	remaining: 4.8s
89:	learn: 18.6649642	total: 2.05s	remaining: 4.78s
90:	learn: 18.5127864	total: 2.07s	remaining: 4.76s
91:	learn: 18.3629102	total: 2.09s	remaining: 4.73s
92:	learn: 18.2624941	total: 2.12s	remaining: 4.71s
93:	learn: 18.1645836	total: 2.13s	remaining: 4.68s
94:	learn: 18.0717273	total: 2.15s	remaining: 4.65s
95:	learn: 17.9594520	total: 2.18s	remaining: 4.63s
96:	learn: 17.8692648	total: 2.2s	remaining: 4.6s
97:	learn: 17.7758009	total: 2.23s	remaining: 4.59s
98:	learn: 17.6633350	total: 2.25s	remaining: 4.56s
99:	learn: 17.5393236	total: 2.27s	remaining: 4.53s
100:	learn: 17.4441841	total: 2.29s	remaining: 4.5s
101:	learn: 17.3636497	total: 2.31s	remaining: 4.48s
102:	learn: 17.2836586	total: 2.33s	remaining: 4.45s
103:	learn: 17.1666480	total: 2.35s	remaining: 4.43s
104:	learn: 17.0603123	total: 2.37s	remaining: 4.4s
105:	learn: 16.9701019	total: 2.39s	remaining: 4.38s
106:	learn: 16.8819325	total: 2.42s	remaining: 4.37s
107:	learn: 16.7800721	total: 2.45s	remaining: 4.35s
108:	learn: 16.6575687	total: 2.47s	remaining: 4.33s
109:	learn: 16.5621285	total: 2.49s	remaining: 4.31s
110:	learn: 16.4805668	total: 2.52s	remaining: 4.29s
111:	learn: 16.3664491	total: 2.54s	remaining: 4.26s
112:	learn: 16.2921576	total: 2.56s	remaining: 4.24s
113:	learn: 16.2123714	total: 2.58s	remaining: 4.21s
114:	learn: 16.1305926	total: 2.6s	remaining: 4.19s
115:	learn: 16.0452681	total: 2.63s	remaining: 4.17s
116:	learn: 15.9356767	total: 2.65s	remaining: 4.15s
117:	learn: 15.8492426	total: 2.67s	remaining: 4.13s
118:	learn: 15.7699169	total: 2.7s	remaining: 4.1s
119:	learn: 15.6746719	total: 2.72s	remaining: 4.08s
120:	learn: 15.5370189	total: 2.74s	remaining: 4.05s
121:	learn: 15.4445148	total: 2.76s	remaining: 4.02s
122:	learn: 15.3396325	total: 2.78s	remaining: 4s
123:	learn: 15.2450802	total: 2.8s	remaining: 3.97s
124:	learn: 15.1203998	total: 2.82s	remaining: 3.95s
125:	learn: 15.0601453	total: 2.85s	remaining: 3.93s
126:	learn: 14.9882312	total: 2.87s	remaining: 3.91s
127:	learn: 14.9180283	total: 2.9s	remaining: 3.89s
128:	learn: 14.8526915	total: 2.92s	remaining: 3.87s
129:	learn: 14.7657162	total: 2.94s	remaining: 3.85s
130:	learn: 14.6698595	total: 2.96s	remaining: 3.82s
131:	learn: 14.6346566	total: 2.96s	remaining: 3.77s
132:	learn: 14.5756096	total: 2.99s	remaining: 3.75s
133:	learn: 14.5030739	total: 3.01s	remaining: 3.73s
134:	learn: 14.3943441	total: 3.03s	remaining: 3.7s
135:	learn: 14.2404537	total: 3.06s	remaining: 3.69s
136:	learn: 14.1761228	total: 3.08s	remaining: 3.67s
137:	learn: 14.1077833	total: 3.1s	remaining: 3.64s
138:	learn: 14.0413537	total: 3.12s	remaining: 3.62s
139:	learn: 13.9757428	total: 3.15s	remaining: 3.59s
140:	learn: 13.8921768	total: 3.16s	remaining: 3.57s
141:	learn: 13.8110381	total: 3.19s	remaining: 3.54s
142:	learn: 13.7257676	total: 3.21s	remaining: 3.52s
143:	learn: 13.6518439	total: 3.23s	remaining: 3.5s
144:	learn: 13.4950736	total: 3.25s	remaining: 3.47s
145:	learn: 13.3977428	total: 3.27s	remaining: 3.46s
146:	learn: 13.3368539	total: 3.3s	remaining: 3.44s
147:	learn: 13.2559100	total: 3.33s	remaining: 3.42s
148:	learn: 13.1574001	total: 3.35s	remaining: 3.4s
149:	learn: 13.0006095	total: 3.37s	remaining: 3.37s
150:	learn: 12.9451554	total: 3.39s	remaining: 3.35s
151:	learn: 12.8348904	total: 3.42s	remaining: 3.33s
152:	learn: 12.7505428	total: 3.44s	remaining: 3.3s
153:	learn: 12.6269434	total: 3.46s	remaining: 3.28s
154:	learn: 12.5693272	total: 3.49s	remaining: 3.26s
155:	learn: 12.5049023	total: 3.51s	remaining: 3.24s
156:	learn: 12.4144067	total: 3.54s	remaining: 3.22s
157:	learn: 12.3672108	total: 3.56s	remaining: 3.2s
158:	learn: 12.2988713	total: 3.58s	remaining: 3.18s
159:	learn: 12.2500411	total: 3.61s	remaining: 3.16s
160:	learn: 12.2002550	total: 3.63s	remaining: 3.13s
161:	learn: 12.0921756	total: 3.65s	remaining: 3.11s
162:	learn: 12.0261456	total: 3.68s	remaining: 3.09s
163:	learn: 11.9595478	total: 3.71s	remaining: 3.07s
164:	learn: 11.9040826	total: 3.74s	remaining: 3.06s
165:	learn: 11.8185631	total: 3.76s	remaining: 3.04s
166:	learn: 11.7394422	total: 3.8s	remaining: 3.02s
167:	learn: 11.6639319	total: 3.82s	remaining: 3s
168:	learn: 11.6147181	total: 3.85s	remaining: 2.98s
169:	learn: 11.5761586	total: 3.87s	remaining: 2.96s
170:	learn: 11.4910059	total: 3.9s	remaining: 2.94s
171:	learn: 11.4181227	total: 3.92s	remaining: 2.92s
172:	learn: 11.3626035	total: 3.95s	remaining: 2.9s
173:	learn: 11.2507892	total: 3.97s	remaining: 2.88s
174:	learn: 11.1798403	total: 4s	remaining: 2.85s
175:	learn: 11.1190643	total: 4.02s	remaining: 2.83s
176:	learn: 11.0620102	total: 4.05s	remaining: 2.81s
177:	learn: 10.9793884	total: 4.07s	remaining: 2.79s
178:	learn: 10.8968370	total: 4.1s	remaining: 2.77s
179:	learn: 10.8122733	total: 4.12s	remaining: 2.75s
180:	learn: 10.7545856	total: 4.15s	remaining: 2.73s
181:	learn: 10.6836395	total: 4.18s	remaining: 2.71s
182:	learn: 10.6441863	total: 4.2s	remaining: 2.69s
183:	learn: 10.5944997	total: 4.23s	remaining: 2.67s
184:	learn: 10.5161755	total: 4.25s	remaining: 2.64s
185:	learn: 10.4705995	total: 4.28s	remaining: 2.63s
186:	learn: 10.4187076	total: 4.31s	remaining: 2.6s
187:	learn: 10.3683730	total: 4.33s	remaining: 2.58s
188:	learn: 10.3150620	total: 4.36s	remaining: 2.56s
189:	learn: 10.2691155	total: 4.39s	remaining: 2.54s
190:	learn: 10.2272718	total: 4.41s	remaining: 2.52s
191:	learn: 10.1871331	total: 4.43s	remaining: 2.49s
192:	learn: 10.1443128	total: 4.46s	remaining: 2.47s
193:	learn: 10.0668189	total: 4.48s	remaining: 2.45s
194:	learn: 10.0256380	total: 4.5s	remaining: 2.42s
195:	learn: 9.9787956	total: 4.53s	remaining: 2.4s
196:	learn: 9.9322122	total: 4.56s	remaining: 2.38s
197:	learn: 9.8850093	total: 4.58s	remaining: 2.36s
198:	learn: 9.8380140	total: 4.62s	remaining: 2.35s
199:	learn: 9.8106296	total: 4.65s	remaining: 2.32s
200:	learn: 9.7585749	total: 4.67s	remaining: 2.3s
201:	learn: 9.7182879	total: 4.7s	remaining: 2.28s
202:	learn: 9.6821771	total: 4.73s	remaining: 2.26s
203:	learn: 9.6399101	total: 4.75s	remaining: 2.24s
204:	learn: 9.6048849	total: 4.78s	remaining: 2.21s
205:	learn: 9.5638590	total: 4.81s	remaining: 2.19s
206:	learn: 9.5142374	total: 4.84s	remaining: 2.17s
207:	learn: 9.4695144	total: 4.86s	remaining: 2.15s
208:	learn: 9.4331939	total: 4.89s	remaining: 2.13s
209:	learn: 9.3833838	total: 4.91s	remaining: 2.11s
210:	learn: 9.3517645	total: 4.94s	remaining: 2.08s
211:	learn: 9.3163444	total: 4.96s	remaining: 2.06s
212:	learn: 9.2788352	total: 4.98s	remaining: 2.04s
213:	learn: 9.2459289	total: 5.01s	remaining: 2.01s
214:	learn: 9.2104536	total: 5.04s	remaining: 1.99s
215:	learn: 9.1729420	total: 5.08s	remaining: 1.97s
216:	learn: 9.1364121	total: 5.1s	remaining: 1.95s
217:	learn: 9.0970859	total: 5.13s	remaining: 1.93s
218:	learn: 9.0611146	total: 5.15s	remaining: 1.91s
219:	learn: 9.0276741	total: 5.18s	remaining: 1.88s
220:	learn: 8.9977644	total: 5.2s	remaining: 1.86s
221:	learn: 8.9633156	total: 5.23s	remaining: 1.84s
222:	learn: 8.9313136	total: 5.26s	remaining: 1.81s
223:	learn: 8.9023504	total: 5.28s	remaining: 1.79s
224:	learn: 8.8741668	total: 5.3s	remaining: 1.77s
225:	learn: 8.8402639	total: 5.34s	remaining: 1.75s
226:	learn: 8.8061090	total: 5.36s	remaining: 1.72s
227:	learn: 8.7767795	total: 5.38s	remaining: 1.7s
228:	learn: 8.7514356	total: 5.41s	remaining: 1.68s
229:	learn: 8.7118727	total: 5.44s	remaining: 1.66s
230:	learn: 8.6759132	total: 5.46s	remaining: 1.63s
231:	learn: 8.6447220	total: 5.49s	remaining: 1.61s
232:	learn: 8.6102503	total: 5.51s	remaining: 1.58s
233:	learn: 8.5858738	total: 5.54s	remaining: 1.56s
234:	learn: 8.5595561	total: 5.57s	remaining: 1.54s
235:	learn: 8.5313778	total: 5.6s	remaining: 1.52s
236:	learn: 8.5053234	total: 5.62s	remaining: 1.49s
237:	learn: 8.4737268	total: 5.65s	remaining: 1.47s
238:	learn: 8.4414991	total: 5.69s	remaining: 1.45s
239:	learn: 8.4168374	total: 5.71s	remaining: 1.43s
240:	learn: 8.3862136	total: 5.74s	remaining: 1.4s
241:	learn: 8.3454081	total: 5.76s	remaining: 1.38s
242:	learn: 8.3145638	total: 5.79s	remaining: 1.36s
243:	learn: 8.3007136	total: 5.81s	remaining: 1.33s
244:	learn: 8.2708676	total: 5.84s	remaining: 1.31s
245:	learn: 8.2454265	total: 5.86s	remaining: 1.29s
246:	learn: 8.2117256	total: 5.89s	remaining: 1.26s
247:	learn: 8.1846870	total: 5.92s	remaining: 1.24s
248:	learn: 8.1602441	total: 5.95s	remaining: 1.22s
249:	learn: 8.1410728	total: 5.97s	remaining: 1.19s
250:	learn: 8.1138413	total: 6s	remaining: 1.17s
251:	learn: 8.0824887	total: 6.02s	remaining: 1.15s
252:	learn: 8.0557089	total: 6.04s	remaining: 1.12s
253:	learn: 8.0378239	total: 6.07s	remaining: 1.1s
254:	learn: 8.0018329	total: 6.11s	remaining: 1.08s
255:	learn: 7.9776523	total: 6.13s	remaining: 1.05s
256:	learn: 7.9437470	total: 6.16s	remaining: 1.03s
257:	learn: 7.9170545	total: 6.18s	remaining: 1.01s
258:	learn: 7.9065923	total: 6.2s	remaining: 982ms
259:	learn: 7.8777123	total: 6.23s	remaining: 958ms
260:	learn: 7.8495349	total: 6.25s	remaining: 934ms
261:	learn: 7.8238648	total: 6.27s	remaining: 910ms
262:	learn: 7.8001134	total: 6.3s	remaining: 886ms
263:	learn: 7.7619007	total: 6.33s	remaining: 864ms
264:	learn: 7.7370130	total: 6.37s	remaining: 841ms
265:	learn: 7.7109084	total: 6.39s	remaining: 817ms
266:	learn: 7.6914677	total: 6.42s	remaining: 793ms
267:	learn: 7.6883177	total: 6.44s	remaining: 769ms
268:	learn: 7.6603652	total: 6.46s	remaining: 745ms
269:	learn: 7.6441569	total: 6.49s	remaining: 721ms
270:	learn: 7.6236642	total: 6.51s	remaining: 697ms
271:	learn: 7.5954955	total: 6.54s	remaining: 673ms
272:	learn: 7.5722024	total: 6.57s	remaining: 650ms
273:	learn: 7.5424505	total: 6.6s	remaining: 626ms
274:	learn: 7.5242764	total: 6.62s	remaining: 602ms
275:	learn: 7.4998291	total: 6.64s	remaining: 578ms
276:	learn: 7.4835526	total: 6.67s	remaining: 554ms
277:	learn: 7.4492474	total: 6.69s	remaining: 530ms
278:	learn: 7.4246335	total: 6.72s	remaining: 506ms
279:	learn: 7.4104530	total: 6.74s	remaining: 482ms
280:	learn: 7.4016977	total: 6.78s	remaining: 458ms
281:	learn: 7.3964367	total: 6.8s	remaining: 434ms
282:	learn: 7.3818806	total: 6.83s	remaining: 410ms
283:	learn: 7.3577327	total: 6.86s	remaining: 386ms
284:	learn: 7.3346564	total: 6.88s	remaining: 362ms
285:	learn: 7.3215898	total: 6.91s	remaining: 338ms
286:	learn: 7.3070161	total: 6.93s	remaining: 314ms
287:	learn: 7.2839231	total: 6.96s	remaining: 290ms
288:	learn: 7.2664252	total: 6.99s	remaining: 266ms
289:	learn: 7.2505303	total: 7.01s	remaining: 242ms
290:	learn: 7.2286141	total: 7.03s	remaining: 218ms
291:	learn: 7.2008212	total: 7.06s	remaining: 193ms
292:	learn: 7.1800203	total: 7.08s	remaining: 169ms
293:	learn: 7.1485097	total: 7.11s	remaining: 145ms
294:	learn: 7.1283191	total: 7.13s	remaining: 121ms
295:	learn: 7.1112866	total: 7.16s	remaining: 96.7ms
296:	learn: 7.0786679	total: 7.19s	remaining: 72.6ms
297:	learn: 7.0685798	total: 7.21s	remaining: 48.4ms
298:	learn: 7.0633802	total: 7.24s	remaining: 24.2ms
299:	learn: 7.0504357	total: 7.26s	remaining: 0us
0:	learn: 46.1068821	total: 2.76ms	remaining: 827ms
1:	learn: 45.5186259	total: 25.4ms	remaining: 3.78s
2:	learn: 44.8982427	total: 52.7ms	remaining: 5.22s
3:	learn: 44.0813314	total: 76.5ms	remaining: 5.66s
4:	learn: 43.3256787	total: 97.4ms	remaining: 5.74s
5:	learn: 42.5989163	total: 117ms	remaining: 5.74s
6:	learn: 41.8412255	total: 140ms	remaining: 5.86s
7:	learn: 41.1629605	total: 163ms	remaining: 5.94s
8:	learn: 40.6649568	total: 184ms	remaining: 5.96s
9:	learn: 40.1755647	total: 205ms	remaining: 5.95s
10:	learn: 39.7843303	total: 228ms	remaining: 5.98s
11:	learn: 39.1263454	total: 251ms	remaining: 6.03s
12:	learn: 38.5049650	total: 278ms	remaining: 6.14s
13:	learn: 37.8816934	total: 305ms	remaining: 6.24s
14:	learn: 37.3925567	total: 328ms	remaining: 6.24s
15:	learn: 36.8080381	total: 351ms	remaining: 6.23s
16:	learn: 36.1363624	total: 375ms	remaining: 6.23s
17:	learn: 35.8171279	total: 398ms	remaining: 6.24s
18:	learn: 35.2225026	total: 419ms	remaining: 6.19s
19:	learn: 34.7373286	total: 441ms	remaining: 6.17s
20:	learn: 34.2563365	total: 464ms	remaining: 6.16s
21:	learn: 33.9368110	total: 488ms	remaining: 6.17s
22:	learn: 33.5339596	total: 516ms	remaining: 6.21s
23:	learn: 33.2090930	total: 538ms	remaining: 6.19s
24:	learn: 32.8232733	total: 560ms	remaining: 6.15s
25:	learn: 32.5065756	total: 581ms	remaining: 6.12s
26:	learn: 32.0091556	total: 602ms	remaining: 6.09s
27:	learn: 31.5901880	total: 624ms	remaining: 6.06s
28:	learn: 31.2602719	total: 646ms	remaining: 6.04s
29:	learn: 30.9824864	total: 669ms	remaining: 6.02s
30:	learn: 30.6837776	total: 691ms	remaining: 6s
31:	learn: 30.3784738	total: 722ms	remaining: 6.05s
32:	learn: 29.9551890	total: 746ms	remaining: 6.04s
33:	learn: 29.6880796	total: 770ms	remaining: 6.02s
34:	learn: 29.3535204	total: 793ms	remaining: 6s
35:	learn: 29.0983115	total: 817ms	remaining: 5.99s
36:	learn: 28.8227016	total: 838ms	remaining: 5.96s
37:	learn: 28.5948966	total: 861ms	remaining: 5.94s
38:	learn: 28.2092747	total: 883ms	remaining: 5.91s
39:	learn: 27.9292918	total: 905ms	remaining: 5.88s
40:	learn: 27.6917466	total: 928ms	remaining: 5.86s
41:	learn: 27.3898320	total: 959ms	remaining: 5.89s
42:	learn: 27.1423506	total: 981ms	remaining: 5.87s
43:	learn: 26.9143906	total: 1s	remaining: 5.84s
44:	learn: 26.6628354	total: 1.02s	remaining: 5.8s
45:	learn: 26.4436459	total: 1.05s	remaining: 5.78s
46:	learn: 26.2699511	total: 1.07s	remaining: 5.74s
47:	learn: 26.0687332	total: 1.09s	remaining: 5.71s
48:	learn: 25.8813257	total: 1.11s	remaining: 5.68s
49:	learn: 25.6417147	total: 1.13s	remaining: 5.67s
50:	learn: 25.4978473	total: 1.15s	remaining: 5.63s
51:	learn: 25.2508826	total: 1.18s	remaining: 5.62s
52:	learn: 24.9957667	total: 1.2s	remaining: 5.61s
53:	learn: 24.7897869	total: 1.23s	remaining: 5.59s
54:	learn: 24.6276395	total: 1.25s	remaining: 5.57s
55:	learn: 24.4484009	total: 1.27s	remaining: 5.54s
56:	learn: 24.2064871	total: 1.29s	remaining: 5.51s
57:	learn: 24.0355794	total: 1.31s	remaining: 5.49s
58:	learn: 23.8623034	total: 1.34s	remaining: 5.47s
59:	learn: 23.6009245	total: 1.37s	remaining: 5.48s
60:	learn: 23.4408382	total: 1.39s	remaining: 5.46s
61:	learn: 23.2362900	total: 1.42s	remaining: 5.43s
62:	learn: 23.0767254	total: 1.44s	remaining: 5.41s
63:	learn: 22.9370310	total: 1.46s	remaining: 5.38s
64:	learn: 22.7482690	total: 1.48s	remaining: 5.35s
65:	learn: 22.5740357	total: 1.5s	remaining: 5.32s
66:	learn: 22.4132876	total: 1.52s	remaining: 5.3s
67:	learn: 22.2551850	total: 1.55s	remaining: 5.28s
68:	learn: 22.0648127	total: 1.57s	remaining: 5.26s
69:	learn: 21.9204326	total: 1.6s	remaining: 5.27s
70:	learn: 21.8002567	total: 1.63s	remaining: 5.25s
71:	learn: 21.6545032	total: 1.65s	remaining: 5.23s
72:	learn: 21.5274427	total: 1.67s	remaining: 5.21s
73:	learn: 21.4235402	total: 1.7s	remaining: 5.19s
74:	learn: 21.2403786	total: 1.72s	remaining: 5.16s
75:	learn: 21.1019776	total: 1.74s	remaining: 5.13s
76:	learn: 20.9047503	total: 1.76s	remaining: 5.11s
77:	learn: 20.8140012	total: 1.79s	remaining: 5.09s
78:	learn: 20.7064981	total: 1.82s	remaining: 5.09s
79:	learn: 20.6033857	total: 1.84s	remaining: 5.06s
80:	learn: 20.4743532	total: 1.86s	remaining: 5.03s
81:	learn: 20.3272514	total: 1.88s	remaining: 5.01s
82:	learn: 20.2402909	total: 1.91s	remaining: 4.98s
83:	learn: 20.1344566	total: 1.93s	remaining: 4.96s
84:	learn: 19.9630804	total: 1.95s	remaining: 4.93s
85:	learn: 19.8196483	total: 1.97s	remaining: 4.9s
86:	learn: 19.6861323	total: 2s	remaining: 4.89s
87:	learn: 19.5689921	total: 2.02s	remaining: 4.87s
88:	learn: 19.4766099	total: 2.04s	remaining: 4.85s
89:	learn: 19.3523859	total: 2.07s	remaining: 4.82s
90:	learn: 19.2512307	total: 2.09s	remaining: 4.8s
91:	learn: 19.1541965	total: 2.11s	remaining: 4.77s
92:	learn: 18.9980138	total: 2.13s	remaining: 4.75s
93:	learn: 18.8241638	total: 2.15s	remaining: 4.72s
94:	learn: 18.6982820	total: 2.18s	remaining: 4.7s
95:	learn: 18.6170939	total: 2.2s	remaining: 4.67s
96:	learn: 18.5216398	total: 2.23s	remaining: 4.66s
97:	learn: 18.4188891	total: 2.25s	remaining: 4.64s
98:	learn: 18.3473321	total: 2.27s	remaining: 4.62s
99:	learn: 18.2744582	total: 2.29s	remaining: 4.59s
100:	learn: 18.1064776	total: 2.31s	remaining: 4.56s
101:	learn: 18.0564103	total: 2.33s	remaining: 4.53s
102:	learn: 17.9684931	total: 2.35s	remaining: 4.5s
103:	learn: 17.8577080	total: 2.37s	remaining: 4.47s
104:	learn: 17.7557863	total: 2.39s	remaining: 4.45s
105:	learn: 17.6830354	total: 2.42s	remaining: 4.43s
106:	learn: 17.5928641	total: 2.45s	remaining: 4.42s
107:	learn: 17.5447625	total: 2.48s	remaining: 4.4s
108:	learn: 17.4830060	total: 2.5s	remaining: 4.38s
109:	learn: 17.3760969	total: 2.52s	remaining: 4.35s
110:	learn: 17.2990516	total: 2.54s	remaining: 4.33s
111:	learn: 17.2626219	total: 2.56s	remaining: 4.3s
112:	learn: 17.1610712	total: 2.58s	remaining: 4.27s
113:	learn: 17.1129518	total: 2.6s	remaining: 4.25s
114:	learn: 16.9637799	total: 2.63s	remaining: 4.23s
115:	learn: 16.8724617	total: 2.65s	remaining: 4.21s
116:	learn: 16.7990982	total: 2.68s	remaining: 4.19s
117:	learn: 16.7354572	total: 2.7s	remaining: 4.16s
118:	learn: 16.6225750	total: 2.72s	remaining: 4.13s
119:	learn: 16.5778971	total: 2.74s	remaining: 4.11s
120:	learn: 16.5383915	total: 2.76s	remaining: 4.08s
121:	learn: 16.4801189	total: 2.78s	remaining: 4.06s
122:	learn: 16.3909340	total: 2.8s	remaining: 4.03s
123:	learn: 16.3129754	total: 2.82s	remaining: 4s
124:	learn: 16.2430907	total: 2.85s	remaining: 3.98s
125:	learn: 16.1779646	total: 2.87s	remaining: 3.97s
126:	learn: 16.1162194	total: 2.9s	remaining: 3.95s
127:	learn: 16.0084749	total: 2.92s	remaining: 3.92s
128:	learn: 15.9268705	total: 2.94s	remaining: 3.9s
129:	learn: 15.8770194	total: 2.97s	remaining: 3.88s
130:	learn: 15.8445342	total: 2.99s	remaining: 3.85s
131:	learn: 15.7799082	total: 3.01s	remaining: 3.83s
132:	learn: 15.7225612	total: 3.03s	remaining: 3.8s
133:	learn: 15.6327986	total: 3.05s	remaining: 3.77s
134:	learn: 15.5560479	total: 3.07s	remaining: 3.75s
135:	learn: 15.4650063	total: 3.1s	remaining: 3.74s
136:	learn: 15.4439565	total: 3.12s	remaining: 3.71s
137:	learn: 15.3723683	total: 3.14s	remaining: 3.69s
138:	learn: 15.2867520	total: 3.16s	remaining: 3.66s
139:	learn: 15.2008060	total: 3.18s	remaining: 3.64s
140:	learn: 15.1226253	total: 3.2s	remaining: 3.61s
141:	learn: 15.0392603	total: 3.22s	remaining: 3.59s
142:	learn: 15.0209441	total: 3.24s	remaining: 3.56s
143:	learn: 14.9691162	total: 3.26s	remaining: 3.54s
144:	learn: 14.8809723	total: 3.29s	remaining: 3.51s
145:	learn: 14.7790501	total: 3.32s	remaining: 3.5s
146:	learn: 14.7124707	total: 3.34s	remaining: 3.48s
147:	learn: 14.6505409	total: 3.36s	remaining: 3.45s
148:	learn: 14.5977957	total: 3.38s	remaining: 3.43s
149:	learn: 14.4563773	total: 3.41s	remaining: 3.41s
150:	learn: 14.3903954	total: 3.43s	remaining: 3.38s
151:	learn: 14.3677191	total: 3.45s	remaining: 3.36s
152:	learn: 14.3170088	total: 3.47s	remaining: 3.33s
153:	learn: 14.2212460	total: 3.49s	remaining: 3.31s
154:	learn: 14.1865067	total: 3.52s	remaining: 3.29s
155:	learn: 14.1133763	total: 3.54s	remaining: 3.27s
156:	learn: 14.0632935	total: 3.56s	remaining: 3.25s
157:	learn: 14.0317962	total: 3.58s	remaining: 3.22s
158:	learn: 13.9531527	total: 3.61s	remaining: 3.21s
159:	learn: 13.9361664	total: 3.64s	remaining: 3.18s
160:	learn: 13.8152344	total: 3.66s	remaining: 3.16s
161:	learn: 13.7794016	total: 3.69s	remaining: 3.14s
162:	learn: 13.7554484	total: 3.71s	remaining: 3.12s
163:	learn: 13.6786599	total: 3.75s	remaining: 3.11s
164:	learn: 13.6580934	total: 3.77s	remaining: 3.08s
165:	learn: 13.6135467	total: 3.79s	remaining: 3.06s
166:	learn: 13.5774402	total: 3.82s	remaining: 3.04s
167:	learn: 13.4665364	total: 3.84s	remaining: 3.02s
168:	learn: 13.4457745	total: 3.87s	remaining: 3s
169:	learn: 13.4313272	total: 3.89s	remaining: 2.97s
170:	learn: 13.3740130	total: 3.92s	remaining: 2.96s
171:	learn: 13.3012082	total: 3.95s	remaining: 2.94s
172:	learn: 13.2580888	total: 3.98s	remaining: 2.92s
173:	learn: 13.2260963	total: 4s	remaining: 2.9s
174:	learn: 13.1934687	total: 4.02s	remaining: 2.87s
175:	learn: 13.1567898	total: 4.05s	remaining: 2.85s
176:	learn: 13.1207167	total: 4.07s	remaining: 2.83s
177:	learn: 13.0453975	total: 4.09s	remaining: 2.81s
178:	learn: 12.9667806	total: 4.12s	remaining: 2.78s
179:	learn: 12.9050987	total: 4.14s	remaining: 2.76s
180:	learn: 12.7877614	total: 4.17s	remaining: 2.74s
181:	learn: 12.7246635	total: 4.2s	remaining: 2.72s
182:	learn: 12.6649785	total: 4.22s	remaining: 2.7s
183:	learn: 12.5966292	total: 4.24s	remaining: 2.68s
184:	learn: 12.5791866	total: 4.27s	remaining: 2.65s
185:	learn: 12.5265550	total: 4.29s	remaining: 2.63s
186:	learn: 12.4747790	total: 4.31s	remaining: 2.61s
187:	learn: 12.3639334	total: 4.34s	remaining: 2.58s
188:	learn: 12.3060104	total: 4.36s	remaining: 2.56s
189:	learn: 12.2108815	total: 4.39s	remaining: 2.54s
190:	learn: 12.1295363	total: 4.41s	remaining: 2.52s
191:	learn: 12.0828143	total: 4.43s	remaining: 2.49s
192:	learn: 12.0650770	total: 4.46s	remaining: 2.47s
193:	learn: 11.9979395	total: 4.48s	remaining: 2.45s
194:	learn: 11.9754814	total: 4.5s	remaining: 2.42s
195:	learn: 11.9328555	total: 4.52s	remaining: 2.4s
196:	learn: 11.9122042	total: 4.55s	remaining: 2.38s
197:	learn: 11.8518842	total: 4.57s	remaining: 2.35s
198:	learn: 11.8304153	total: 4.6s	remaining: 2.33s
199:	learn: 11.8121741	total: 4.62s	remaining: 2.31s
200:	learn: 11.7411942	total: 4.65s	remaining: 2.29s
201:	learn: 11.7329288	total: 4.67s	remaining: 2.27s
202:	learn: 11.7074830	total: 4.69s	remaining: 2.24s
203:	learn: 11.6479110	total: 4.71s	remaining: 2.22s
204:	learn: 11.6341037	total: 4.74s	remaining: 2.19s
205:	learn: 11.5703505	total: 4.76s	remaining: 2.17s
206:	learn: 11.5415491	total: 4.78s	remaining: 2.15s
207:	learn: 11.5016416	total: 4.8s	remaining: 2.12s
208:	learn: 11.4843453	total: 4.83s	remaining: 2.1s
209:	learn: 11.4556878	total: 4.86s	remaining: 2.08s
210:	learn: 11.3953637	total: 4.88s	remaining: 2.06s
211:	learn: 11.3640248	total: 4.9s	remaining: 2.03s
212:	learn: 11.3189656	total: 4.92s	remaining: 2.01s
213:	learn: 11.3023318	total: 4.95s	remaining: 1.99s
214:	learn: 11.2812809	total: 4.97s	remaining: 1.96s
215:	learn: 11.2649164	total: 4.99s	remaining: 1.94s
216:	learn: 11.2249674	total: 5.01s	remaining: 1.92s
217:	learn: 11.1694593	total: 5.04s	remaining: 1.89s
218:	learn: 11.1504747	total: 5.07s	remaining: 1.88s
219:	learn: 11.1099205	total: 5.09s	remaining: 1.85s
220:	learn: 11.0946598	total: 5.12s	remaining: 1.83s
221:	learn: 11.0335988	total: 5.14s	remaining: 1.81s
222:	learn: 11.0096492	total: 5.17s	remaining: 1.78s
223:	learn: 10.9672501	total: 5.18s	remaining: 1.76s
224:	learn: 10.9507570	total: 5.21s	remaining: 1.74s
225:	learn: 10.9314289	total: 5.23s	remaining: 1.71s
226:	learn: 10.8670947	total: 5.25s	remaining: 1.69s
227:	learn: 10.8529443	total: 5.28s	remaining: 1.67s
228:	learn: 10.8318645	total: 5.31s	remaining: 1.65s
229:	learn: 10.8156588	total: 5.33s	remaining: 1.62s
230:	learn: 10.7951131	total: 5.35s	remaining: 1.6s
231:	learn: 10.7795677	total: 5.37s	remaining: 1.57s
232:	learn: 10.7366028	total: 5.39s	remaining: 1.55s
233:	learn: 10.7193612	total: 5.42s	remaining: 1.53s
234:	learn: 10.6990737	total: 5.43s	remaining: 1.5s
235:	learn: 10.6205495	total: 5.46s	remaining: 1.48s
236:	learn: 10.5976748	total: 5.49s	remaining: 1.46s
237:	learn: 10.5212017	total: 5.51s	remaining: 1.44s
238:	learn: 10.4839783	total: 5.54s	remaining: 1.41s
239:	learn: 10.4723193	total: 5.56s	remaining: 1.39s
240:	learn: 10.4438944	total: 5.58s	remaining: 1.37s
241:	learn: 10.4068644	total: 5.61s	remaining: 1.34s
242:	learn: 10.3777867	total: 5.63s	remaining: 1.32s
243:	learn: 10.3633196	total: 5.65s	remaining: 1.3s
244:	learn: 10.3508529	total: 5.67s	remaining: 1.27s
245:	learn: 10.3391285	total: 5.7s	remaining: 1.25s
246:	learn: 10.3202046	total: 5.73s	remaining: 1.23s
247:	learn: 10.2679507	total: 5.75s	remaining: 1.21s
248:	learn: 10.2444411	total: 5.77s	remaining: 1.18s
249:	learn: 10.1978707	total: 5.79s	remaining: 1.16s
250:	learn: 10.1746210	total: 5.82s	remaining: 1.14s
251:	learn: 10.1455445	total: 5.84s	remaining: 1.11s
252:	learn: 10.1234292	total: 5.86s	remaining: 1.09s
253:	learn: 10.1009263	total: 5.88s	remaining: 1.06s
254:	learn: 10.0506537	total: 5.91s	remaining: 1.04s
255:	learn: 9.9973799	total: 5.93s	remaining: 1.02s
256:	learn: 9.9923793	total: 5.96s	remaining: 997ms
257:	learn: 9.9592135	total: 5.98s	remaining: 974ms
258:	learn: 9.9455912	total: 6.01s	remaining: 951ms
259:	learn: 9.9351881	total: 6.03s	remaining: 928ms
260:	learn: 9.8843396	total: 6.05s	remaining: 904ms
261:	learn: 9.8732841	total: 6.08s	remaining: 881ms
262:	learn: 9.8530402	total: 6.1s	remaining: 858ms
263:	learn: 9.8379209	total: 6.13s	remaining: 835ms
264:	learn: 9.8012657	total: 6.15s	remaining: 812ms
265:	learn: 9.7881742	total: 6.17s	remaining: 788ms
266:	learn: 9.7723933	total: 6.19s	remaining: 765ms
267:	learn: 9.7613461	total: 6.21s	remaining: 742ms
268:	learn: 9.7214417	total: 6.23s	remaining: 718ms
269:	learn: 9.6976897	total: 6.25s	remaining: 695ms
270:	learn: 9.6919786	total: 6.27s	remaining: 671ms
271:	learn: 9.6263135	total: 6.29s	remaining: 648ms
272:	learn: 9.6175527	total: 6.32s	remaining: 625ms
273:	learn: 9.6110661	total: 6.34s	remaining: 602ms
274:	learn: 9.5992549	total: 6.37s	remaining: 579ms
275:	learn: 9.5709079	total: 6.39s	remaining: 556ms
276:	learn: 9.5584595	total: 6.42s	remaining: 533ms
277:	learn: 9.5492847	total: 6.44s	remaining: 510ms
278:	learn: 9.5261231	total: 6.46s	remaining: 486ms
279:	learn: 9.5160964	total: 6.48s	remaining: 463ms
280:	learn: 9.4945891	total: 6.5s	remaining: 440ms
281:	learn: 9.4659751	total: 6.52s	remaining: 416ms
282:	learn: 9.4474987	total: 6.54s	remaining: 393ms
283:	learn: 9.4369109	total: 6.57s	remaining: 370ms
284:	learn: 9.4285200	total: 6.59s	remaining: 347ms
285:	learn: 9.4124421	total: 6.62s	remaining: 324ms
286:	learn: 9.3903730	total: 6.64s	remaining: 301ms
287:	learn: 9.3240575	total: 6.66s	remaining: 277ms
288:	learn: 9.3124220	total: 6.68s	remaining: 254ms
289:	learn: 9.2881271	total: 6.7s	remaining: 231ms
290:	learn: 9.2713655	total: 6.72s	remaining: 208ms
291:	learn: 9.2641531	total: 6.74s	remaining: 185ms
292:	learn: 9.2524129	total: 6.77s	remaining: 162ms
293:	learn: 9.2343575	total: 6.8s	remaining: 139ms
294:	learn: 9.1973322	total: 6.82s	remaining: 116ms
295:	learn: 9.1565802	total: 6.84s	remaining: 92.5ms
296:	learn: 9.1428051	total: 6.86s	remaining: 69.3ms
297:	learn: 9.1293653	total: 6.88s	remaining: 46.2ms
298:	learn: 9.1105879	total: 6.9s	remaining: 23.1ms
299:	learn: 9.1005583	total: 6.92s	remaining: 0us
0:	learn: 46.9033478	total: 20.4ms	remaining: 6.11s
1:	learn: 46.0879122	total: 41.6ms	remaining: 6.2s
2:	learn: 45.6500716	total: 60.3ms	remaining: 5.97s
3:	learn: 44.8037484	total: 82.4ms	remaining: 6.1s
4:	learn: 44.1513690	total: 104ms	remaining: 6.12s
5:	learn: 43.6033150	total: 125ms	remaining: 6.1s
6:	learn: 43.0669517	total: 147ms	remaining: 6.16s
7:	learn: 42.4011723	total: 173ms	remaining: 6.32s
8:	learn: 41.7060291	total: 196ms	remaining: 6.35s
9:	learn: 41.0058676	total: 219ms	remaining: 6.34s
10:	learn: 40.5518615	total: 242ms	remaining: 6.36s
11:	learn: 39.9452722	total: 264ms	remaining: 6.35s
12:	learn: 39.2539405	total: 287ms	remaining: 6.33s
13:	learn: 38.6690449	total: 308ms	remaining: 6.29s
14:	learn: 38.2389829	total: 328ms	remaining: 6.23s
15:	learn: 37.6795608	total: 349ms	remaining: 6.19s
16:	learn: 37.2562038	total: 370ms	remaining: 6.17s
17:	learn: 36.9516174	total: 398ms	remaining: 6.24s
18:	learn: 36.6189442	total: 422ms	remaining: 6.24s
19:	learn: 36.0530153	total: 443ms	remaining: 6.2s
20:	learn: 35.6536993	total: 463ms	remaining: 6.14s
21:	learn: 35.3616790	total: 482ms	remaining: 6.09s
22:	learn: 35.0627472	total: 501ms	remaining: 6.03s
23:	learn: 34.5889995	total: 523ms	remaining: 6.01s
24:	learn: 34.0395768	total: 543ms	remaining: 5.97s
25:	learn: 33.6846146	total: 562ms	remaining: 5.93s
26:	learn: 33.2581583	total: 589ms	remaining: 5.96s
27:	learn: 32.9043599	total: 614ms	remaining: 5.96s
28:	learn: 32.4603681	total: 636ms	remaining: 5.94s
29:	learn: 32.0784225	total: 659ms	remaining: 5.93s
30:	learn: 31.6654390	total: 681ms	remaining: 5.91s
31:	learn: 31.3473625	total: 702ms	remaining: 5.88s
32:	learn: 30.9124340	total: 724ms	remaining: 5.86s
33:	learn: 30.6354683	total: 745ms	remaining: 5.83s
34:	learn: 30.4404098	total: 766ms	remaining: 5.8s
35:	learn: 30.1914372	total: 789ms	remaining: 5.78s
36:	learn: 29.8249863	total: 810ms	remaining: 5.76s
37:	learn: 29.5196757	total: 839ms	remaining: 5.78s
38:	learn: 29.2605473	total: 863ms	remaining: 5.77s
39:	learn: 28.9803384	total: 884ms	remaining: 5.75s
40:	learn: 28.7535173	total: 905ms	remaining: 5.72s
41:	learn: 28.3888690	total: 927ms	remaining: 5.7s
42:	learn: 28.1381916	total: 948ms	remaining: 5.67s
43:	learn: 27.9181568	total: 970ms	remaining: 5.64s
44:	learn: 27.6047071	total: 990ms	remaining: 5.61s
45:	learn: 27.4164606	total: 1.01s	remaining: 5.59s
46:	learn: 27.0321668	total: 1.03s	remaining: 5.57s
47:	learn: 26.7987572	total: 1.07s	remaining: 5.61s
48:	learn: 26.6235810	total: 1.09s	remaining: 5.61s
49:	learn: 26.4084368	total: 1.12s	remaining: 5.6s
50:	learn: 26.1773159	total: 1.14s	remaining: 5.58s
51:	learn: 26.0200665	total: 1.17s	remaining: 5.57s
52:	learn: 25.8168330	total: 1.19s	remaining: 5.54s
53:	learn: 25.6154150	total: 1.21s	remaining: 5.52s
54:	learn: 25.2351738	total: 1.23s	remaining: 5.49s
55:	learn: 24.9587143	total: 1.25s	remaining: 5.47s
56:	learn: 24.7682982	total: 1.28s	remaining: 5.47s
57:	learn: 24.4602191	total: 1.31s	remaining: 5.46s
58:	learn: 24.3002094	total: 1.33s	remaining: 5.43s
59:	learn: 24.1509360	total: 1.35s	remaining: 5.41s
60:	learn: 23.9855802	total: 1.37s	remaining: 5.38s
61:	learn: 23.7747817	total: 1.4s	remaining: 5.36s
62:	learn: 23.5415832	total: 1.42s	remaining: 5.34s
63:	learn: 23.3540053	total: 1.44s	remaining: 5.32s
64:	learn: 23.1213752	total: 1.47s	remaining: 5.3s
65:	learn: 22.9729934	total: 1.5s	remaining: 5.33s
66:	learn: 22.8237351	total: 1.53s	remaining: 5.32s
67:	learn: 22.6716691	total: 1.55s	remaining: 5.3s
68:	learn: 22.5296861	total: 1.58s	remaining: 5.28s
69:	learn: 22.3725425	total: 1.6s	remaining: 5.26s
70:	learn: 22.2639328	total: 1.62s	remaining: 5.23s
71:	learn: 22.1174316	total: 1.64s	remaining: 5.2s
72:	learn: 21.9916264	total: 1.66s	remaining: 5.18s
73:	learn: 21.7797959	total: 1.69s	remaining: 5.17s
74:	learn: 21.6350589	total: 1.72s	remaining: 5.16s
75:	learn: 21.4910112	total: 1.74s	remaining: 5.14s
76:	learn: 21.3068682	total: 1.76s	remaining: 5.11s
77:	learn: 21.1725772	total: 1.78s	remaining: 5.08s
78:	learn: 21.0526496	total: 1.81s	remaining: 5.05s
79:	learn: 20.9534374	total: 1.83s	remaining: 5.03s
80:	learn: 20.8168422	total: 1.85s	remaining: 5s
81:	learn: 20.7138006	total: 1.87s	remaining: 4.97s
82:	learn: 20.5259907	total: 1.89s	remaining: 4.95s
83:	learn: 20.3881958	total: 1.93s	remaining: 4.97s
84:	learn: 20.2702350	total: 1.96s	remaining: 4.95s
85:	learn: 20.1185381	total: 1.98s	remaining: 4.93s
86:	learn: 19.9815763	total: 2s	remaining: 4.9s
87:	learn: 19.8563040	total: 2.02s	remaining: 4.88s
88:	learn: 19.7629932	total: 2.05s	remaining: 4.85s
89:	learn: 19.6361676	total: 2.07s	remaining: 4.83s
90:	learn: 19.5189179	total: 2.09s	remaining: 4.8s
91:	learn: 19.4368807	total: 2.11s	remaining: 4.77s
92:	learn: 19.3491759	total: 2.14s	remaining: 4.77s
93:	learn: 19.2441781	total: 2.17s	remaining: 4.75s
94:	learn: 19.1595312	total: 2.19s	remaining: 4.72s
95:	learn: 19.0732186	total: 2.21s	remaining: 4.69s
96:	learn: 18.9664261	total: 2.23s	remaining: 4.66s
97:	learn: 18.8752837	total: 2.25s	remaining: 4.63s
98:	learn: 18.7884732	total: 2.27s	remaining: 4.61s
99:	learn: 18.6638300	total: 2.29s	remaining: 4.58s
100:	learn: 18.5456185	total: 2.31s	remaining: 4.56s
101:	learn: 18.4491938	total: 2.33s	remaining: 4.53s
102:	learn: 18.3712210	total: 2.37s	remaining: 4.53s
103:	learn: 18.2907426	total: 2.39s	remaining: 4.51s
104:	learn: 18.2393122	total: 2.41s	remaining: 4.48s
105:	learn: 18.1493295	total: 2.44s	remaining: 4.46s
106:	learn: 18.0741996	total: 2.46s	remaining: 4.44s
107:	learn: 17.9763617	total: 2.48s	remaining: 4.42s
108:	learn: 17.8511711	total: 2.51s	remaining: 4.39s
109:	learn: 17.7975521	total: 2.53s	remaining: 4.37s
110:	learn: 17.7280526	total: 2.56s	remaining: 4.35s
111:	learn: 17.6960456	total: 2.58s	remaining: 4.33s
112:	learn: 17.6209638	total: 2.6s	remaining: 4.3s
113:	learn: 17.5389165	total: 2.62s	remaining: 4.28s
114:	learn: 17.4874967	total: 2.64s	remaining: 4.25s
115:	learn: 17.3744401	total: 2.67s	remaining: 4.23s
116:	learn: 17.2762107	total: 2.69s	remaining: 4.2s
117:	learn: 17.1930198	total: 2.71s	remaining: 4.17s
118:	learn: 17.0804375	total: 2.73s	remaining: 4.15s
119:	learn: 17.0100383	total: 2.75s	remaining: 4.13s
120:	learn: 16.9515165	total: 2.78s	remaining: 4.11s
121:	learn: 16.8221030	total: 2.81s	remaining: 4.09s
122:	learn: 16.7270258	total: 2.83s	remaining: 4.07s
123:	learn: 16.6537882	total: 2.85s	remaining: 4.04s
124:	learn: 16.5324707	total: 2.87s	remaining: 4.02s
125:	learn: 16.4705263	total: 2.89s	remaining: 4s
126:	learn: 16.4130833	total: 2.92s	remaining: 3.97s
127:	learn: 16.3480615	total: 2.94s	remaining: 3.95s
128:	learn: 16.2228205	total: 2.96s	remaining: 3.92s
129:	learn: 16.1299284	total: 2.98s	remaining: 3.9s
130:	learn: 16.0593548	total: 3.01s	remaining: 3.88s
131:	learn: 15.9926308	total: 3.03s	remaining: 3.86s
132:	learn: 15.9351137	total: 3.05s	remaining: 3.83s
133:	learn: 15.8301951	total: 3.07s	remaining: 3.81s
134:	learn: 15.7606319	total: 3.09s	remaining: 3.78s
135:	learn: 15.6217872	total: 3.11s	remaining: 3.76s
136:	learn: 15.5200572	total: 3.13s	remaining: 3.73s
137:	learn: 15.4565615	total: 3.15s	remaining: 3.7s
138:	learn: 15.3854906	total: 3.18s	remaining: 3.68s
139:	learn: 15.3407126	total: 3.21s	remaining: 3.67s
140:	learn: 15.2532536	total: 3.23s	remaining: 3.65s
141:	learn: 15.2129349	total: 3.25s	remaining: 3.62s
142:	learn: 15.1732289	total: 3.28s	remaining: 3.6s
143:	learn: 15.1138929	total: 3.3s	remaining: 3.57s
144:	learn: 15.0326156	total: 3.32s	remaining: 3.55s
145:	learn: 14.9309324	total: 3.34s	remaining: 3.52s
146:	learn: 14.8657435	total: 3.36s	remaining: 3.5s
147:	learn: 14.8314609	total: 3.38s	remaining: 3.48s
148:	learn: 14.7431116	total: 3.41s	remaining: 3.45s
149:	learn: 14.6590351	total: 3.43s	remaining: 3.43s
150:	learn: 14.5339193	total: 3.45s	remaining: 3.41s
151:	learn: 14.4639900	total: 3.47s	remaining: 3.38s
152:	learn: 14.3967135	total: 3.49s	remaining: 3.36s
153:	learn: 14.3077714	total: 3.51s	remaining: 3.33s
154:	learn: 14.2227051	total: 3.53s	remaining: 3.3s
155:	learn: 14.1541051	total: 3.55s	remaining: 3.28s
156:	learn: 14.1099666	total: 3.57s	remaining: 3.25s
157:	learn: 14.0474387	total: 3.59s	remaining: 3.23s
158:	learn: 13.9402729	total: 3.61s	remaining: 3.2s
159:	learn: 13.8714208	total: 3.64s	remaining: 3.19s
160:	learn: 13.7798180	total: 3.67s	remaining: 3.17s
161:	learn: 13.6785277	total: 3.69s	remaining: 3.14s
162:	learn: 13.5985050	total: 3.71s	remaining: 3.12s
163:	learn: 13.5743583	total: 3.73s	remaining: 3.1s
164:	learn: 13.4271067	total: 3.75s	remaining: 3.07s
165:	learn: 13.3787394	total: 3.77s	remaining: 3.05s
166:	learn: 13.3132605	total: 3.8s	remaining: 3.02s
167:	learn: 13.2185878	total: 3.82s	remaining: 3s
168:	learn: 13.2025287	total: 3.85s	remaining: 2.98s
169:	learn: 13.1393556	total: 3.87s	remaining: 2.96s
170:	learn: 13.0898086	total: 3.89s	remaining: 2.94s
171:	learn: 12.9970587	total: 3.91s	remaining: 2.91s
172:	learn: 12.8778568	total: 3.93s	remaining: 2.89s
173:	learn: 12.7715298	total: 3.95s	remaining: 2.86s
174:	learn: 12.7109534	total: 3.97s	remaining: 2.84s
175:	learn: 12.6499951	total: 3.99s	remaining: 2.81s
176:	learn: 12.5781341	total: 4.01s	remaining: 2.79s
177:	learn: 12.5302935	total: 4.04s	remaining: 2.77s
178:	learn: 12.4570172	total: 4.07s	remaining: 2.75s
179:	learn: 12.3852468	total: 4.09s	remaining: 2.73s
180:	learn: 12.3218479	total: 4.12s	remaining: 2.71s
181:	learn: 12.2146968	total: 4.14s	remaining: 2.68s
182:	learn: 12.0872854	total: 4.16s	remaining: 2.66s
183:	learn: 12.0609707	total: 4.18s	remaining: 2.63s
184:	learn: 11.9443946	total: 4.2s	remaining: 2.61s
185:	learn: 11.8745310	total: 4.22s	remaining: 2.59s
186:	learn: 11.7895958	total: 4.24s	remaining: 2.56s
187:	learn: 11.7497478	total: 4.27s	remaining: 2.54s
188:	learn: 11.6831548	total: 4.29s	remaining: 2.52s
189:	learn: 11.6608564	total: 4.31s	remaining: 2.5s
190:	learn: 11.6399052	total: 4.33s	remaining: 2.47s
191:	learn: 11.5714004	total: 4.35s	remaining: 2.45s
192:	learn: 11.5427662	total: 4.38s	remaining: 2.43s
193:	learn: 11.4806208	total: 4.41s	remaining: 2.41s
194:	learn: 11.4691327	total: 4.43s	remaining: 2.38s
195:	learn: 11.4134172	total: 4.45s	remaining: 2.36s
196:	learn: 11.3438004	total: 4.48s	remaining: 2.34s
197:	learn: 11.3015149	total: 4.51s	remaining: 2.32s
198:	learn: 11.2493782	total: 4.54s	remaining: 2.3s
199:	learn: 11.1895539	total: 4.56s	remaining: 2.28s
200:	learn: 11.1683522	total: 4.59s	remaining: 2.26s
201:	learn: 11.1466698	total: 4.61s	remaining: 2.24s
202:	learn: 11.0701090	total: 4.63s	remaining: 2.21s
203:	learn: 11.0293322	total: 4.66s	remaining: 2.19s
204:	learn: 10.9637933	total: 4.68s	remaining: 2.17s
205:	learn: 10.9171875	total: 4.71s	remaining: 2.15s
206:	learn: 10.8620107	total: 4.74s	remaining: 2.13s
207:	learn: 10.8411017	total: 4.77s	remaining: 2.11s
208:	learn: 10.8219871	total: 4.79s	remaining: 2.08s
209:	learn: 10.7790684	total: 4.81s	remaining: 2.06s
210:	learn: 10.7460005	total: 4.83s	remaining: 2.04s
211:	learn: 10.6884581	total: 4.86s	remaining: 2.02s
212:	learn: 10.6215835	total: 4.88s	remaining: 1.99s
213:	learn: 10.6112487	total: 4.91s	remaining: 1.97s
214:	learn: 10.5515861	total: 4.94s	remaining: 1.95s
215:	learn: 10.5005611	total: 4.97s	remaining: 1.93s
216:	learn: 10.4827029	total: 5s	remaining: 1.91s
217:	learn: 10.4671266	total: 5.02s	remaining: 1.89s
218:	learn: 10.4471117	total: 5.05s	remaining: 1.87s
219:	learn: 10.4286227	total: 5.07s	remaining: 1.84s
220:	learn: 10.4102334	total: 5.1s	remaining: 1.82s
221:	learn: 10.3587364	total: 5.12s	remaining: 1.8s
222:	learn: 10.3185900	total: 5.14s	remaining: 1.77s
223:	learn: 10.3047695	total: 5.17s	remaining: 1.75s
224:	learn: 10.2861237	total: 5.2s	remaining: 1.73s
225:	learn: 10.2723077	total: 5.23s	remaining: 1.71s
226:	learn: 10.2566131	total: 5.25s	remaining: 1.69s
227:	learn: 10.2444076	total: 5.27s	remaining: 1.66s
228:	learn: 10.2035037	total: 5.29s	remaining: 1.64s
229:	learn: 10.1151548	total: 5.31s	remaining: 1.62s
230:	learn: 10.0952083	total: 5.34s	remaining: 1.59s
231:	learn: 10.0785525	total: 5.36s	remaining: 1.57s
232:	learn: 10.0582314	total: 5.38s	remaining: 1.55s
233:	learn: 10.0399370	total: 5.42s	remaining: 1.53s
234:	learn: 10.0277451	total: 5.45s	remaining: 1.51s
235:	learn: 9.9732252	total: 5.47s	remaining: 1.48s
236:	learn: 9.9602566	total: 5.5s	remaining: 1.46s
237:	learn: 9.9117022	total: 5.52s	remaining: 1.44s
238:	learn: 9.8771993	total: 5.54s	remaining: 1.42s
239:	learn: 9.8360533	total: 5.57s	remaining: 1.39s
240:	learn: 9.8228622	total: 5.59s	remaining: 1.37s
241:	learn: 9.7831566	total: 5.63s	remaining: 1.35s
242:	learn: 9.7238030	total: 5.65s	remaining: 1.32s
243:	learn: 9.6756010	total: 5.67s	remaining: 1.3s
244:	learn: 9.6573706	total: 5.7s	remaining: 1.28s
245:	learn: 9.6190420	total: 5.72s	remaining: 1.26s
246:	learn: 9.5963929	total: 5.75s	remaining: 1.23s
247:	learn: 9.5838279	total: 5.77s	remaining: 1.21s
248:	learn: 9.5516337	total: 5.79s	remaining: 1.19s
249:	learn: 9.5319568	total: 5.82s	remaining: 1.16s
250:	learn: 9.5009733	total: 5.85s	remaining: 1.14s
251:	learn: 9.4738909	total: 5.88s	remaining: 1.12s
252:	learn: 9.4573897	total: 5.91s	remaining: 1.1s
253:	learn: 9.4238859	total: 5.93s	remaining: 1.07s
254:	learn: 9.3792324	total: 5.97s	remaining: 1.05s
255:	learn: 9.3552571	total: 5.99s	remaining: 1.03s
256:	learn: 9.3036260	total: 6.01s	remaining: 1s
257:	learn: 9.2868142	total: 6.04s	remaining: 983ms
258:	learn: 9.2740504	total: 6.06s	remaining: 960ms
259:	learn: 9.2329336	total: 6.09s	remaining: 937ms
260:	learn: 9.2190698	total: 6.11s	remaining: 914ms
261:	learn: 9.2074817	total: 6.14s	remaining: 890ms
262:	learn: 9.1724174	total: 6.16s	remaining: 867ms
263:	learn: 9.1293699	total: 6.18s	remaining: 843ms
264:	learn: 9.1025091	total: 6.2s	remaining: 819ms
265:	learn: 9.0893697	total: 6.22s	remaining: 796ms
266:	learn: 9.0733581	total: 6.25s	remaining: 772ms
267:	learn: 9.0599268	total: 6.27s	remaining: 748ms
268:	learn: 9.0277334	total: 6.3s	remaining: 726ms
269:	learn: 8.9860960	total: 6.33s	remaining: 703ms
270:	learn: 8.9478404	total: 6.35s	remaining: 679ms
271:	learn: 8.9074990	total: 6.37s	remaining: 656ms
272:	learn: 8.8851827	total: 6.39s	remaining: 632ms
273:	learn: 8.8741463	total: 6.42s	remaining: 609ms
274:	learn: 8.8422813	total: 6.44s	remaining: 585ms
275:	learn: 8.7887362	total: 6.46s	remaining: 562ms
276:	learn: 8.7766205	total: 6.49s	remaining: 539ms
277:	learn: 8.7606125	total: 6.51s	remaining: 515ms
278:	learn: 8.7302098	total: 6.53s	remaining: 492ms
279:	learn: 8.7180658	total: 6.55s	remaining: 468ms
280:	learn: 8.6784364	total: 6.57s	remaining: 444ms
281:	learn: 8.6341139	total: 6.59s	remaining: 421ms
282:	learn: 8.6092132	total: 6.62s	remaining: 397ms
283:	learn: 8.5723040	total: 6.64s	remaining: 374ms
284:	learn: 8.5318798	total: 6.66s	remaining: 350ms
285:	learn: 8.5051575	total: 6.68s	remaining: 327ms
286:	learn: 8.4896135	total: 6.71s	remaining: 304ms
287:	learn: 8.4665233	total: 6.74s	remaining: 281ms
288:	learn: 8.4563622	total: 6.76s	remaining: 257ms
289:	learn: 8.4221661	total: 6.78s	remaining: 234ms
290:	learn: 8.3953479	total: 6.81s	remaining: 211ms
291:	learn: 8.3735779	total: 6.83s	remaining: 187ms
292:	learn: 8.3452844	total: 6.85s	remaining: 164ms
293:	learn: 8.3141538	total: 6.87s	remaining: 140ms
294:	learn: 8.3014432	total: 6.9s	remaining: 117ms
295:	learn: 8.2802794	total: 6.92s	remaining: 93.5ms
296:	learn: 8.2485275	total: 6.95s	remaining: 70.2ms
297:	learn: 8.2239488	total: 6.97s	remaining: 46.8ms
298:	learn: 8.1877191	total: 7s	remaining: 23.4ms
299:	learn: 8.1551355	total: 7.02s	remaining: 0us
0:	learn: 27.6506730	total: 4.85ms	remaining: 480ms
1:	learn: 27.1638793	total: 9.79ms	remaining: 480ms
2:	learn: 26.8000665	total: 15.1ms	remaining: 489ms
3:	learn: 26.4256132	total: 20.5ms	remaining: 492ms
4:	learn: 26.0088351	total: 25.8ms	remaining: 489ms
5:	learn: 25.7558298	total: 30.9ms	remaining: 484ms
6:	learn: 25.3380711	total: 37.7ms	remaining: 501ms
7:	learn: 25.0571611	total: 44.8ms	remaining: 515ms
8:	learn: 24.6790148	total: 54.3ms	remaining: 549ms
9:	learn: 24.3600941	total: 61.7ms	remaining: 555ms
10:	learn: 24.1105667	total: 69.9ms	remaining: 566ms
11:	learn: 23.7736542	total: 75.5ms	remaining: 554ms
12:	learn: 23.5824429	total: 80.8ms	remaining: 541ms
13:	learn: 23.2658303	total: 86.1ms	remaining: 529ms
14:	learn: 23.0061886	total: 91.8ms	remaining: 520ms
15:	learn: 22.8060389	total: 96.8ms	remaining: 508ms
16:	learn: 22.5899735	total: 102ms	remaining: 499ms
17:	learn: 22.3625048	total: 108ms	remaining: 490ms
18:	learn: 22.0706477	total: 113ms	remaining: 482ms
19:	learn: 21.8739394	total: 118ms	remaining: 473ms
20:	learn: 21.6143650	total: 123ms	remaining: 464ms
21:	learn: 21.4571623	total: 129ms	remaining: 457ms
22:	learn: 21.2395769	total: 135ms	remaining: 451ms
23:	learn: 20.9801795	total: 139ms	remaining: 442ms
24:	learn: 20.8036808	total: 144ms	remaining: 432ms
25:	learn: 20.6387539	total: 149ms	remaining: 424ms
26:	learn: 20.4401427	total: 153ms	remaining: 414ms
27:	learn: 20.2879575	total: 158ms	remaining: 405ms
28:	learn: 20.0538664	total: 162ms	remaining: 398ms
29:	learn: 19.8363102	total: 167ms	remaining: 389ms
30:	learn: 19.7015446	total: 171ms	remaining: 381ms
31:	learn: 19.5483114	total: 176ms	remaining: 374ms
32:	learn: 19.4163053	total: 180ms	remaining: 366ms
33:	learn: 19.2880625	total: 185ms	remaining: 359ms
34:	learn: 19.1303389	total: 190ms	remaining: 352ms
35:	learn: 18.9237448	total: 194ms	remaining: 345ms
36:	learn: 18.8142925	total: 199ms	remaining: 339ms
37:	learn: 18.6994696	total: 203ms	remaining: 332ms
38:	learn: 18.5629211	total: 208ms	remaining: 326ms
39:	learn: 18.4600917	total: 213ms	remaining: 320ms
40:	learn: 18.3567139	total: 218ms	remaining: 314ms
41:	learn: 18.2120527	total: 223ms	remaining: 308ms
42:	learn: 18.0688062	total: 228ms	remaining: 302ms
43:	learn: 17.9250181	total: 233ms	remaining: 297ms
44:	learn: 17.8399138	total: 238ms	remaining: 291ms
45:	learn: 17.6720713	total: 243ms	remaining: 285ms
46:	learn: 17.5273091	total: 250ms	remaining: 282ms
47:	learn: 17.4232814	total: 258ms	remaining: 279ms
48:	learn: 17.2957579	total: 265ms	remaining: 275ms
49:	learn: 17.1892874	total: 271ms	remaining: 271ms
50:	learn: 17.0490355	total: 276ms	remaining: 266ms
51:	learn: 16.9666450	total: 282ms	remaining: 261ms
52:	learn: 16.8600056	total: 287ms	remaining: 255ms
53:	learn: 16.7542588	total: 292ms	remaining: 249ms
54:	learn: 16.6316077	total: 297ms	remaining: 243ms
55:	learn: 16.5588112	total: 302ms	remaining: 237ms
56:	learn: 16.5010186	total: 307ms	remaining: 231ms
57:	learn: 16.4081540	total: 311ms	remaining: 225ms
58:	learn: 16.3040451	total: 316ms	remaining: 220ms
59:	learn: 16.1890564	total: 321ms	remaining: 214ms
60:	learn: 16.0977103	total: 325ms	remaining: 208ms
61:	learn: 15.9627607	total: 331ms	remaining: 203ms
62:	learn: 15.9022248	total: 335ms	remaining: 197ms
63:	learn: 15.8151881	total: 340ms	remaining: 191ms
64:	learn: 15.7353125	total: 345ms	remaining: 186ms
65:	learn: 15.6312897	total: 349ms	remaining: 180ms
66:	learn: 15.5330927	total: 354ms	remaining: 174ms
67:	learn: 15.4698681	total: 358ms	remaining: 168ms
68:	learn: 15.4108571	total: 363ms	remaining: 163ms
69:	learn: 15.3492945	total: 367ms	remaining: 157ms
70:	learn: 15.3036540	total: 372ms	remaining: 152ms
71:	learn: 15.2390833	total: 376ms	remaining: 146ms
72:	learn: 15.1556327	total: 381ms	remaining: 141ms
73:	learn: 15.1016315	total: 385ms	remaining: 135ms
74:	learn: 15.0287076	total: 389ms	remaining: 130ms
75:	learn: 14.9530572	total: 394ms	remaining: 124ms
76:	learn: 14.8965517	total: 398ms	remaining: 119ms
77:	learn: 14.8125426	total: 403ms	remaining: 114ms
78:	learn: 14.7435359	total: 408ms	remaining: 108ms
79:	learn: 14.6963163	total: 412ms	remaining: 103ms
80:	learn: 14.6200060	total: 417ms	remaining: 97.9ms
81:	learn: 14.5707760	total: 422ms	remaining: 92.7ms
82:	learn: 14.5053651	total: 427ms	remaining: 87.5ms
83:	learn: 14.4115458	total: 432ms	remaining: 82.4ms
84:	learn: 14.3117159	total: 437ms	remaining: 77.2ms
85:	learn: 14.2511326	total: 442ms	remaining: 72ms
86:	learn: 14.1372486	total: 466ms	remaining: 69.6ms
87:	learn: 14.0992301	total: 471ms	remaining: 64.3ms
88:	learn: 14.0228331	total: 478ms	remaining: 59.1ms
89:	learn: 13.9249836	total: 483ms	remaining: 53.7ms
90:	learn: 13.8679364	total: 489ms	remaining: 48.4ms
91:	learn: 13.8405578	total: 495ms	remaining: 43ms
92:	learn: 13.7711325	total: 500ms	remaining: 37.6ms
93:	learn: 13.7357019	total: 506ms	remaining: 32.3ms
94:	learn: 13.6735271	total: 511ms	remaining: 26.9ms
95:	learn: 13.5682393	total: 517ms	remaining: 21.5ms
96:	learn: 13.5342610	total: 522ms	remaining: 16.1ms
97:	learn: 13.4710034	total: 527ms	remaining: 10.7ms
98:	learn: 13.4022402	total: 532ms	remaining: 5.37ms
99:	learn: 13.3351238	total: 538ms	remaining: 0us
0:	learn: 42.9181702	total: 5.11ms	remaining: 506ms
1:	learn: 42.0286736	total: 9.78ms	remaining: 479ms
2:	learn: 41.2764568	total: 14.2ms	remaining: 459ms
3:	learn: 40.4721918	total: 18.8ms	remaining: 452ms
4:	learn: 39.8518928	total: 23.2ms	remaining: 440ms
5:	learn: 39.2645479	total: 27.6ms	remaining: 433ms
6:	learn: 38.4453704	total: 32ms	remaining: 425ms
7:	learn: 37.7122059	total: 36.9ms	remaining: 425ms
8:	learn: 36.9185796	total: 41.9ms	remaining: 423ms
9:	learn: 36.1668427	total: 46.8ms	remaining: 421ms
10:	learn: 35.5639029	total: 51.5ms	remaining: 416ms
11:	learn: 34.7724193	total: 56.4ms	remaining: 414ms
12:	learn: 34.3053433	total: 61.4ms	remaining: 411ms
13:	learn: 33.6561327	total: 64ms	remaining: 393ms
14:	learn: 33.0134042	total: 71ms	remaining: 403ms
15:	learn: 32.4483300	total: 78.2ms	remaining: 411ms
16:	learn: 31.8581144	total: 84.8ms	remaining: 414ms
17:	learn: 31.2858301	total: 89.5ms	remaining: 408ms
18:	learn: 30.8483018	total: 95.5ms	remaining: 407ms
19:	learn: 30.4174622	total: 100ms	remaining: 401ms
20:	learn: 29.8994411	total: 105ms	remaining: 394ms
21:	learn: 29.5045355	total: 109ms	remaining: 386ms
22:	learn: 28.9923519	total: 113ms	remaining: 380ms
23:	learn: 28.4255717	total: 118ms	remaining: 374ms
24:	learn: 28.0283139	total: 123ms	remaining: 368ms
25:	learn: 27.7434814	total: 127ms	remaining: 362ms
26:	learn: 27.2770731	total: 132ms	remaining: 357ms
27:	learn: 26.8928270	total: 137ms	remaining: 352ms
28:	learn: 26.4282671	total: 142ms	remaining: 348ms
29:	learn: 26.0272764	total: 147ms	remaining: 343ms
30:	learn: 25.7579312	total: 152ms	remaining: 338ms
31:	learn: 25.4542434	total: 157ms	remaining: 333ms
32:	learn: 25.1232564	total: 162ms	remaining: 328ms
33:	learn: 24.8110795	total: 166ms	remaining: 323ms
34:	learn: 24.5077579	total: 171ms	remaining: 317ms
35:	learn: 24.1909000	total: 175ms	remaining: 312ms
36:	learn: 23.8719468	total: 180ms	remaining: 306ms
37:	learn: 23.5764366	total: 181ms	remaining: 296ms
38:	learn: 23.3468086	total: 186ms	remaining: 291ms
39:	learn: 23.0908771	total: 190ms	remaining: 285ms
40:	learn: 22.8580876	total: 195ms	remaining: 280ms
41:	learn: 22.6060825	total: 199ms	remaining: 275ms
42:	learn: 22.4125407	total: 204ms	remaining: 271ms
43:	learn: 22.1990617	total: 208ms	remaining: 265ms
44:	learn: 21.9716164	total: 213ms	remaining: 260ms
45:	learn: 21.8360935	total: 217ms	remaining: 255ms
46:	learn: 21.6169256	total: 222ms	remaining: 250ms
47:	learn: 21.4620612	total: 226ms	remaining: 245ms
48:	learn: 21.2894194	total: 231ms	remaining: 240ms
49:	learn: 21.1066266	total: 235ms	remaining: 235ms
50:	learn: 20.9484898	total: 240ms	remaining: 231ms
51:	learn: 20.7195338	total: 245ms	remaining: 226ms
52:	learn: 20.4899740	total: 250ms	remaining: 222ms
53:	learn: 20.3356583	total: 255ms	remaining: 218ms
54:	learn: 20.0754393	total: 260ms	remaining: 213ms
55:	learn: 19.9199159	total: 268ms	remaining: 211ms
56:	learn: 19.7761128	total: 277ms	remaining: 209ms
57:	learn: 19.6533060	total: 287ms	remaining: 208ms
58:	learn: 19.5113942	total: 295ms	remaining: 205ms
59:	learn: 19.3985022	total: 301ms	remaining: 201ms
60:	learn: 19.2683443	total: 307ms	remaining: 196ms
61:	learn: 19.1460824	total: 312ms	remaining: 192ms
62:	learn: 19.0042655	total: 318ms	remaining: 187ms
63:	learn: 18.8720873	total: 324ms	remaining: 182ms
64:	learn: 18.7183888	total: 329ms	remaining: 177ms
65:	learn: 18.5472360	total: 335ms	remaining: 173ms
66:	learn: 18.3976642	total: 340ms	remaining: 168ms
67:	learn: 18.2282851	total: 345ms	remaining: 162ms
68:	learn: 18.1469157	total: 350ms	remaining: 157ms
69:	learn: 18.0649494	total: 356ms	remaining: 152ms
70:	learn: 17.9485405	total: 362ms	remaining: 148ms
71:	learn: 17.8460261	total: 367ms	remaining: 143ms
72:	learn: 17.7679843	total: 371ms	remaining: 137ms
73:	learn: 17.5989290	total: 376ms	remaining: 132ms
74:	learn: 17.4381322	total: 380ms	remaining: 127ms
75:	learn: 17.3370886	total: 385ms	remaining: 122ms
76:	learn: 17.2675308	total: 390ms	remaining: 116ms
77:	learn: 17.1946430	total: 394ms	remaining: 111ms
78:	learn: 17.0923725	total: 398ms	remaining: 106ms
79:	learn: 17.0537265	total: 402ms	remaining: 101ms
80:	learn: 16.9456831	total: 407ms	remaining: 95.5ms
81:	learn: 16.8457353	total: 411ms	remaining: 90.3ms
82:	learn: 16.7469310	total: 416ms	remaining: 85.1ms
83:	learn: 16.6679953	total: 420ms	remaining: 80ms
84:	learn: 16.6274189	total: 424ms	remaining: 74.8ms
85:	learn: 16.5516530	total: 428ms	remaining: 69.7ms
86:	learn: 16.4886066	total: 433ms	remaining: 64.7ms
87:	learn: 16.3947859	total: 438ms	remaining: 59.7ms
88:	learn: 16.3406495	total: 443ms	remaining: 54.7ms
89:	learn: 16.3019195	total: 448ms	remaining: 49.7ms
90:	learn: 16.1860681	total: 453ms	remaining: 44.8ms
91:	learn: 16.1282812	total: 457ms	remaining: 39.8ms
92:	learn: 16.0303652	total: 467ms	remaining: 35.2ms
93:	learn: 15.9561692	total: 475ms	remaining: 30.3ms
94:	learn: 15.8733994	total: 482ms	remaining: 25.4ms
95:	learn: 15.8108833	total: 487ms	remaining: 20.3ms
96:	learn: 15.7606004	total: 492ms	remaining: 15.2ms
97:	learn: 15.6984664	total: 497ms	remaining: 10.1ms
98:	learn: 15.6223632	total: 501ms	remaining: 5.06ms
99:	learn: 15.5671136	total: 505ms	remaining: 0us
0:	learn: 46.4788614	total: 1.8ms	remaining: 179ms
1:	learn: 45.7608372	total: 6.29ms	remaining: 308ms
2:	learn: 44.8825004	total: 10.3ms	remaining: 335ms
3:	learn: 44.0362738	total: 14.5ms	remaining: 349ms
4:	learn: 43.2086374	total: 18.9ms	remaining: 360ms
5:	learn: 42.5835773	total: 23.5ms	remaining: 367ms
6:	learn: 41.9673269	total: 28ms	remaining: 372ms
7:	learn: 41.4748717	total: 32ms	remaining: 368ms
8:	learn: 40.7129183	total: 36.3ms	remaining: 367ms
9:	learn: 39.8900884	total: 40.7ms	remaining: 366ms
10:	learn: 39.4142193	total: 44.8ms	remaining: 363ms
11:	learn: 38.8645613	total: 48.8ms	remaining: 358ms
12:	learn: 38.2394731	total: 53.2ms	remaining: 356ms
13:	learn: 37.6834515	total: 57.3ms	remaining: 352ms
14:	learn: 37.0673507	total: 61.4ms	remaining: 348ms
15:	learn: 36.4728340	total: 65.6ms	remaining: 345ms
16:	learn: 36.0489086	total: 69.8ms	remaining: 341ms
17:	learn: 35.4744141	total: 74.4ms	remaining: 339ms
18:	learn: 35.0106021	total: 78.8ms	remaining: 336ms
19:	learn: 34.5586053	total: 83.3ms	remaining: 333ms
20:	learn: 34.1308223	total: 88ms	remaining: 331ms
21:	learn: 33.7701450	total: 93.1ms	remaining: 330ms
22:	learn: 33.4425444	total: 100ms	remaining: 335ms
23:	learn: 33.0296412	total: 108ms	remaining: 341ms
24:	learn: 32.6359803	total: 114ms	remaining: 343ms
25:	learn: 32.1846182	total: 120ms	remaining: 343ms
26:	learn: 31.7620230	total: 126ms	remaining: 342ms
27:	learn: 31.4669337	total: 133ms	remaining: 341ms
28:	learn: 31.0792062	total: 138ms	remaining: 337ms
29:	learn: 30.7970537	total: 143ms	remaining: 334ms
30:	learn: 30.4952215	total: 148ms	remaining: 330ms
31:	learn: 30.2845344	total: 153ms	remaining: 326ms
32:	learn: 29.9592732	total: 159ms	remaining: 322ms
33:	learn: 29.6798596	total: 164ms	remaining: 319ms
34:	learn: 29.3368905	total: 170ms	remaining: 315ms
35:	learn: 29.0621238	total: 175ms	remaining: 311ms
36:	learn: 28.6445375	total: 180ms	remaining: 307ms
37:	learn: 28.2418096	total: 186ms	remaining: 303ms
38:	learn: 27.9495390	total: 191ms	remaining: 299ms
39:	learn: 27.6958160	total: 197ms	remaining: 295ms
40:	learn: 27.4811189	total: 201ms	remaining: 290ms
41:	learn: 27.1494420	total: 207ms	remaining: 286ms
42:	learn: 26.8388873	total: 214ms	remaining: 283ms
43:	learn: 26.5721300	total: 218ms	remaining: 277ms
44:	learn: 26.3384738	total: 222ms	remaining: 272ms
45:	learn: 26.1894781	total: 227ms	remaining: 266ms
46:	learn: 25.9580198	total: 231ms	remaining: 261ms
47:	learn: 25.7897985	total: 236ms	remaining: 255ms
48:	learn: 25.6000271	total: 240ms	remaining: 250ms
49:	learn: 25.4130873	total: 245ms	remaining: 245ms
50:	learn: 25.1699061	total: 249ms	remaining: 239ms
51:	learn: 24.9324449	total: 253ms	remaining: 234ms
52:	learn: 24.7729152	total: 258ms	remaining: 229ms
53:	learn: 24.5026563	total: 262ms	remaining: 223ms
54:	learn: 24.2332627	total: 267ms	remaining: 218ms
55:	learn: 23.9611984	total: 271ms	remaining: 213ms
56:	learn: 23.7862603	total: 275ms	remaining: 208ms
57:	learn: 23.6318154	total: 279ms	remaining: 202ms
58:	learn: 23.4443306	total: 284ms	remaining: 197ms
59:	learn: 23.2581425	total: 289ms	remaining: 193ms
60:	learn: 23.0549901	total: 294ms	remaining: 188ms
61:	learn: 22.8666218	total: 301ms	remaining: 185ms
62:	learn: 22.6956739	total: 308ms	remaining: 181ms
63:	learn: 22.5068544	total: 315ms	remaining: 177ms
64:	learn: 22.1859147	total: 320ms	remaining: 173ms
65:	learn: 22.0462043	total: 326ms	remaining: 168ms
66:	learn: 21.9329563	total: 333ms	remaining: 164ms
67:	learn: 21.8029736	total: 338ms	remaining: 159ms
68:	learn: 21.6861091	total: 342ms	remaining: 154ms
69:	learn: 21.4838140	total: 347ms	remaining: 149ms
70:	learn: 21.3548921	total: 351ms	remaining: 143ms
71:	learn: 21.2244517	total: 355ms	remaining: 138ms
72:	learn: 21.0702958	total: 359ms	remaining: 133ms
73:	learn: 20.9224662	total: 364ms	remaining: 128ms
74:	learn: 20.8150357	total: 369ms	remaining: 123ms
75:	learn: 20.6962739	total: 373ms	remaining: 118ms
76:	learn: 20.5809258	total: 377ms	remaining: 113ms
77:	learn: 20.4735470	total: 381ms	remaining: 108ms
78:	learn: 20.3778167	total: 386ms	remaining: 103ms
79:	learn: 20.2211268	total: 390ms	remaining: 97.5ms
80:	learn: 20.1478678	total: 394ms	remaining: 92.5ms
81:	learn: 20.1032967	total: 399ms	remaining: 87.5ms
82:	learn: 19.9236300	total: 403ms	remaining: 82.6ms
83:	learn: 19.8151745	total: 408ms	remaining: 77.6ms
84:	learn: 19.7099856	total: 412ms	remaining: 72.7ms
85:	learn: 19.6264833	total: 416ms	remaining: 67.7ms
86:	learn: 19.4916361	total: 421ms	remaining: 62.9ms
87:	learn: 19.4050529	total: 425ms	remaining: 58ms
88:	learn: 19.2547065	total: 429ms	remaining: 53.1ms
89:	learn: 19.1610225	total: 433ms	remaining: 48.2ms
90:	learn: 19.0898958	total: 438ms	remaining: 43.3ms
91:	learn: 19.0489664	total: 442ms	remaining: 38.5ms
92:	learn: 18.9206240	total: 447ms	remaining: 33.6ms
93:	learn: 18.8636239	total: 452ms	remaining: 28.8ms
94:	learn: 18.8126187	total: 456ms	remaining: 24ms
95:	learn: 18.7579275	total: 461ms	remaining: 19.2ms
96:	learn: 18.6382753	total: 465ms	remaining: 14.4ms
97:	learn: 18.5397334	total: 470ms	remaining: 9.59ms
98:	learn: 18.4375951	total: 474ms	remaining: 4.79ms
99:	learn: 18.4033755	total: 479ms	remaining: 0us
0:	learn: 46.1068821	total: 3.74ms	remaining: 370ms
1:	learn: 45.3970261	total: 9.16ms	remaining: 449ms
2:	learn: 44.8732696	total: 14.5ms	remaining: 468ms
3:	learn: 44.1290184	total: 19.8ms	remaining: 474ms
4:	learn: 43.3290271	total: 25.1ms	remaining: 478ms
5:	learn: 42.7069090	total: 31.6ms	remaining: 495ms
6:	learn: 42.0572971	total: 37.7ms	remaining: 501ms
7:	learn: 41.4797924	total: 43.2ms	remaining: 497ms
8:	learn: 41.0023122	total: 49.3ms	remaining: 498ms
9:	learn: 40.5330570	total: 54.4ms	remaining: 490ms
10:	learn: 39.9726545	total: 59.7ms	remaining: 483ms
11:	learn: 39.3044053	total: 66ms	remaining: 484ms
12:	learn: 38.8169735	total: 71.2ms	remaining: 477ms
13:	learn: 38.2458761	total: 75.7ms	remaining: 465ms
14:	learn: 37.6280321	total: 80.2ms	remaining: 455ms
15:	learn: 37.0800610	total: 85ms	remaining: 446ms
16:	learn: 36.5489363	total: 89.7ms	remaining: 438ms
17:	learn: 36.0981456	total: 94.2ms	remaining: 429ms
18:	learn: 35.6956274	total: 98.4ms	remaining: 420ms
19:	learn: 35.1471999	total: 103ms	remaining: 411ms
20:	learn: 34.6235408	total: 107ms	remaining: 403ms
21:	learn: 34.1987018	total: 111ms	remaining: 394ms
22:	learn: 33.8985062	total: 116ms	remaining: 387ms
23:	learn: 33.3869017	total: 120ms	remaining: 379ms
24:	learn: 32.9100550	total: 124ms	remaining: 372ms
25:	learn: 32.4156208	total: 128ms	remaining: 364ms
26:	learn: 31.9320493	total: 132ms	remaining: 358ms
27:	learn: 31.5711468	total: 137ms	remaining: 353ms
28:	learn: 31.2404433	total: 141ms	remaining: 346ms
29:	learn: 30.8807946	total: 146ms	remaining: 340ms
30:	learn: 30.5948438	total: 150ms	remaining: 334ms
31:	learn: 30.3885560	total: 155ms	remaining: 329ms
32:	learn: 30.0625101	total: 160ms	remaining: 324ms
33:	learn: 29.9113114	total: 164ms	remaining: 319ms
34:	learn: 29.6983470	total: 169ms	remaining: 313ms
35:	learn: 29.4775849	total: 173ms	remaining: 308ms
36:	learn: 29.0538055	total: 178ms	remaining: 303ms
37:	learn: 28.6792318	total: 185ms	remaining: 302ms
38:	learn: 28.4231383	total: 193ms	remaining: 302ms
39:	learn: 28.1078565	total: 201ms	remaining: 301ms
40:	learn: 27.9079179	total: 207ms	remaining: 297ms
41:	learn: 27.6721506	total: 212ms	remaining: 292ms
42:	learn: 27.4228033	total: 217ms	remaining: 288ms
43:	learn: 27.1740534	total: 222ms	remaining: 283ms
44:	learn: 26.8584071	total: 227ms	remaining: 277ms
45:	learn: 26.6902083	total: 232ms	remaining: 272ms
46:	learn: 26.4855335	total: 237ms	remaining: 267ms
47:	learn: 26.2730822	total: 242ms	remaining: 262ms
48:	learn: 26.1058689	total: 246ms	remaining: 256ms
49:	learn: 25.8587318	total: 251ms	remaining: 251ms
50:	learn: 25.7558005	total: 255ms	remaining: 245ms
51:	learn: 25.5846925	total: 260ms	remaining: 240ms
52:	learn: 25.4249887	total: 264ms	remaining: 234ms
53:	learn: 25.1911054	total: 269ms	remaining: 229ms
54:	learn: 25.0544755	total: 273ms	remaining: 224ms
55:	learn: 24.8874006	total: 278ms	remaining: 218ms
56:	learn: 24.7736279	total: 282ms	remaining: 213ms
57:	learn: 24.6156255	total: 287ms	remaining: 208ms
58:	learn: 24.3962421	total: 291ms	remaining: 202ms
59:	learn: 24.2685129	total: 295ms	remaining: 197ms
60:	learn: 24.1874096	total: 300ms	remaining: 192ms
61:	learn: 24.0394287	total: 304ms	remaining: 186ms
62:	learn: 23.9281768	total: 308ms	remaining: 181ms
63:	learn: 23.7423900	total: 313ms	remaining: 176ms
64:	learn: 23.6015209	total: 317ms	remaining: 171ms
65:	learn: 23.4677943	total: 322ms	remaining: 166ms
66:	learn: 23.3215256	total: 326ms	remaining: 161ms
67:	learn: 23.1869360	total: 331ms	remaining: 156ms
68:	learn: 22.9691180	total: 335ms	remaining: 151ms
69:	learn: 22.7531657	total: 340ms	remaining: 146ms
70:	learn: 22.6133477	total: 345ms	remaining: 141ms
71:	learn: 22.3452758	total: 349ms	remaining: 136ms
72:	learn: 22.2065350	total: 354ms	remaining: 131ms
73:	learn: 22.1071155	total: 359ms	remaining: 126ms
74:	learn: 21.9740686	total: 363ms	remaining: 121ms
75:	learn: 21.8892033	total: 368ms	remaining: 116ms
76:	learn: 21.8267882	total: 372ms	remaining: 111ms
77:	learn: 21.7423479	total: 377ms	remaining: 106ms
78:	learn: 21.6242075	total: 385ms	remaining: 102ms
79:	learn: 21.5016910	total: 393ms	remaining: 98.3ms
80:	learn: 21.4806623	total: 395ms	remaining: 92.7ms
81:	learn: 21.3166637	total: 403ms	remaining: 88.4ms
82:	learn: 21.2222534	total: 410ms	remaining: 84ms
83:	learn: 21.1535708	total: 415ms	remaining: 79.1ms
84:	learn: 21.0858902	total: 421ms	remaining: 74.2ms
85:	learn: 20.9206003	total: 426ms	remaining: 69.3ms
86:	learn: 20.8674695	total: 431ms	remaining: 64.4ms
87:	learn: 20.8089875	total: 436ms	remaining: 59.5ms
88:	learn: 20.7085401	total: 442ms	remaining: 54.6ms
89:	learn: 20.5513468	total: 447ms	remaining: 49.6ms
90:	learn: 20.4586742	total: 452ms	remaining: 44.7ms
91:	learn: 20.3932149	total: 457ms	remaining: 39.8ms
92:	learn: 20.3000895	total: 462ms	remaining: 34.8ms
93:	learn: 20.2254009	total: 467ms	remaining: 29.8ms
94:	learn: 20.1750050	total: 473ms	remaining: 24.9ms
95:	learn: 20.0715579	total: 478ms	remaining: 19.9ms
96:	learn: 19.9920082	total: 483ms	remaining: 14.9ms
97:	learn: 19.9664401	total: 487ms	remaining: 9.94ms
98:	learn: 19.8689673	total: 491ms	remaining: 4.96ms
99:	learn: 19.7537356	total: 495ms	remaining: 0us
0:	learn: 46.8832143	total: 5.09ms	remaining: 504ms
1:	learn: 45.8700349	total: 9.84ms	remaining: 482ms
2:	learn: 45.0546867	total: 14.3ms	remaining: 461ms
3:	learn: 44.2829439	total: 18.6ms	remaining: 446ms
4:	learn: 43.4609042	total: 22.9ms	remaining: 436ms
5:	learn: 42.6754991	total: 27.9ms	remaining: 437ms
6:	learn: 41.9234935	total: 32.7ms	remaining: 435ms
7:	learn: 41.3987518	total: 37.2ms	remaining: 427ms
8:	learn: 40.6625066	total: 41.7ms	remaining: 422ms
9:	learn: 40.0029561	total: 46.3ms	remaining: 417ms
10:	learn: 39.3897033	total: 52.9ms	remaining: 428ms
11:	learn: 38.7741453	total: 60.7ms	remaining: 445ms
12:	learn: 38.1201100	total: 67.7ms	remaining: 453ms
13:	learn: 37.5129454	total: 73.5ms	remaining: 452ms
14:	learn: 37.2062206	total: 79.2ms	remaining: 449ms
15:	learn: 36.6831741	total: 83.9ms	remaining: 440ms
16:	learn: 36.2902788	total: 88.4ms	remaining: 432ms
17:	learn: 35.7639930	total: 93.1ms	remaining: 424ms
18:	learn: 35.2580953	total: 97.7ms	remaining: 417ms
19:	learn: 34.7809739	total: 102ms	remaining: 406ms
20:	learn: 34.1330433	total: 106ms	remaining: 399ms
21:	learn: 33.7302219	total: 110ms	remaining: 389ms
22:	learn: 33.3502495	total: 114ms	remaining: 382ms
23:	learn: 33.0067804	total: 119ms	remaining: 375ms
24:	learn: 32.6897855	total: 123ms	remaining: 369ms
25:	learn: 32.4361119	total: 127ms	remaining: 362ms
26:	learn: 32.1278981	total: 131ms	remaining: 355ms
27:	learn: 31.7863721	total: 136ms	remaining: 349ms
28:	learn: 31.4791450	total: 140ms	remaining: 344ms
29:	learn: 31.1760161	total: 144ms	remaining: 337ms
30:	learn: 30.9238888	total: 149ms	remaining: 332ms
31:	learn: 30.5500905	total: 153ms	remaining: 326ms
32:	learn: 30.3078126	total: 158ms	remaining: 320ms
33:	learn: 30.0480921	total: 162ms	remaining: 314ms
34:	learn: 29.8623884	total: 166ms	remaining: 308ms
35:	learn: 29.5991038	total: 171ms	remaining: 303ms
36:	learn: 29.4061161	total: 175ms	remaining: 297ms
37:	learn: 29.0269515	total: 179ms	remaining: 292ms
38:	learn: 28.8224959	total: 183ms	remaining: 287ms
39:	learn: 28.6417843	total: 187ms	remaining: 281ms
40:	learn: 28.3633368	total: 191ms	remaining: 275ms
41:	learn: 28.0200246	total: 196ms	remaining: 270ms
42:	learn: 27.7221254	total: 200ms	remaining: 265ms
43:	learn: 27.5105818	total: 204ms	remaining: 260ms
44:	learn: 27.3551010	total: 208ms	remaining: 255ms
45:	learn: 27.0787522	total: 212ms	remaining: 249ms
46:	learn: 26.8726317	total: 217ms	remaining: 245ms
47:	learn: 26.8003277	total: 221ms	remaining: 240ms
48:	learn: 26.5493785	total: 226ms	remaining: 235ms
49:	learn: 26.3699550	total: 231ms	remaining: 231ms
50:	learn: 26.1519631	total: 236ms	remaining: 227ms
51:	learn: 25.9277325	total: 240ms	remaining: 222ms
52:	learn: 25.7286035	total: 245ms	remaining: 217ms
53:	learn: 25.4999193	total: 251ms	remaining: 214ms
54:	learn: 25.3434703	total: 259ms	remaining: 212ms
55:	learn: 25.1497545	total: 268ms	remaining: 210ms
56:	learn: 24.9498143	total: 275ms	remaining: 207ms
57:	learn: 24.6509390	total: 283ms	remaining: 205ms
58:	learn: 24.5576144	total: 288ms	remaining: 200ms
59:	learn: 24.4265144	total: 293ms	remaining: 195ms
60:	learn: 24.3100706	total: 298ms	remaining: 191ms
61:	learn: 24.1727952	total: 304ms	remaining: 186ms
62:	learn: 24.0478558	total: 310ms	remaining: 182ms
63:	learn: 23.9124577	total: 315ms	remaining: 177ms
64:	learn: 23.7703718	total: 320ms	remaining: 172ms
65:	learn: 23.5975027	total: 325ms	remaining: 168ms
66:	learn: 23.4318077	total: 330ms	remaining: 163ms
67:	learn: 23.3099691	total: 335ms	remaining: 158ms
68:	learn: 23.1947982	total: 341ms	remaining: 153ms
69:	learn: 23.0260174	total: 346ms	remaining: 148ms
70:	learn: 22.8523100	total: 351ms	remaining: 143ms
71:	learn: 22.8028534	total: 355ms	remaining: 138ms
72:	learn: 22.6880658	total: 359ms	remaining: 133ms
73:	learn: 22.5956809	total: 363ms	remaining: 128ms
74:	learn: 22.4692932	total: 367ms	remaining: 122ms
75:	learn: 22.2863504	total: 372ms	remaining: 117ms
76:	learn: 22.1911237	total: 376ms	remaining: 112ms
77:	learn: 22.1098391	total: 381ms	remaining: 107ms
78:	learn: 22.0182738	total: 386ms	remaining: 102ms
79:	learn: 21.9306746	total: 391ms	remaining: 97.7ms
80:	learn: 21.7508233	total: 395ms	remaining: 92.6ms
81:	learn: 21.7108446	total: 399ms	remaining: 87.5ms
82:	learn: 21.5931852	total: 403ms	remaining: 82.6ms
83:	learn: 21.4480361	total: 408ms	remaining: 77.7ms
84:	learn: 21.3092119	total: 412ms	remaining: 72.7ms
85:	learn: 21.2605557	total: 416ms	remaining: 67.7ms
86:	learn: 21.1123597	total: 421ms	remaining: 62.9ms
87:	learn: 21.0115642	total: 426ms	remaining: 58ms
88:	learn: 20.9389040	total: 430ms	remaining: 53.1ms
89:	learn: 20.8300300	total: 435ms	remaining: 48.3ms
90:	learn: 20.7159733	total: 439ms	remaining: 43.4ms
91:	learn: 20.6282090	total: 444ms	remaining: 38.6ms
92:	learn: 20.5164529	total: 452ms	remaining: 34ms
93:	learn: 20.4692032	total: 460ms	remaining: 29.4ms
94:	learn: 20.3768451	total: 467ms	remaining: 24.6ms
95:	learn: 20.2808056	total: 472ms	remaining: 19.7ms
96:	learn: 20.2082089	total: 479ms	remaining: 14.8ms
97:	learn: 20.1698768	total: 484ms	remaining: 9.88ms
98:	learn: 20.1048816	total: 489ms	remaining: 4.94ms
99:	learn: 20.0086159	total: 493ms	remaining: 0us
0:	learn: 27.6506730	total: 4.72ms	remaining: 468ms
1:	learn: 27.1638793	total: 9.11ms	remaining: 446ms
2:	learn: 26.8000665	total: 13.8ms	remaining: 445ms
3:	learn: 26.4256132	total: 17.9ms	remaining: 431ms
4:	learn: 26.0088351	total: 22.2ms	remaining: 422ms
5:	learn: 25.7558298	total: 27ms	remaining: 423ms
6:	learn: 25.3380711	total: 31.4ms	remaining: 417ms
7:	learn: 25.0571611	total: 35.6ms	remaining: 410ms
8:	learn: 24.6790148	total: 39.8ms	remaining: 402ms
9:	learn: 24.3600941	total: 44.2ms	remaining: 398ms
10:	learn: 24.1105667	total: 48.8ms	remaining: 394ms
11:	learn: 23.7736542	total: 53ms	remaining: 388ms
12:	learn: 23.5824429	total: 57.4ms	remaining: 384ms
13:	learn: 23.2658303	total: 61.6ms	remaining: 378ms
14:	learn: 23.0061886	total: 66.3ms	remaining: 376ms
15:	learn: 22.8060389	total: 70.4ms	remaining: 370ms
16:	learn: 22.5899735	total: 74.6ms	remaining: 364ms
17:	learn: 22.3625048	total: 78.7ms	remaining: 359ms
18:	learn: 22.0706477	total: 83.5ms	remaining: 356ms
19:	learn: 21.8739394	total: 88.3ms	remaining: 353ms
20:	learn: 21.6143650	total: 92.7ms	remaining: 349ms
21:	learn: 21.4571623	total: 97.5ms	remaining: 346ms
22:	learn: 21.2395769	total: 102ms	remaining: 343ms
23:	learn: 20.9801795	total: 107ms	remaining: 340ms
24:	learn: 20.8036808	total: 114ms	remaining: 342ms
25:	learn: 20.6387539	total: 122ms	remaining: 346ms
26:	learn: 20.4401427	total: 131ms	remaining: 354ms
27:	learn: 20.2879575	total: 138ms	remaining: 355ms
28:	learn: 20.0538664	total: 146ms	remaining: 358ms
29:	learn: 19.8363102	total: 151ms	remaining: 353ms
30:	learn: 19.7015446	total: 157ms	remaining: 349ms
31:	learn: 19.5483114	total: 162ms	remaining: 345ms
32:	learn: 19.4163053	total: 168ms	remaining: 342ms
33:	learn: 19.2880625	total: 174ms	remaining: 337ms
34:	learn: 19.1303389	total: 179ms	remaining: 333ms
35:	learn: 18.9237448	total: 185ms	remaining: 329ms
36:	learn: 18.8142925	total: 191ms	remaining: 325ms
37:	learn: 18.6994696	total: 196ms	remaining: 319ms
38:	learn: 18.5629211	total: 201ms	remaining: 314ms
39:	learn: 18.4600917	total: 207ms	remaining: 310ms
40:	learn: 18.3567139	total: 212ms	remaining: 306ms
41:	learn: 18.2120527	total: 217ms	remaining: 299ms
42:	learn: 18.0688062	total: 221ms	remaining: 293ms
43:	learn: 17.9250181	total: 225ms	remaining: 287ms
44:	learn: 17.8399138	total: 230ms	remaining: 281ms
45:	learn: 17.6720713	total: 234ms	remaining: 275ms
46:	learn: 17.5273091	total: 239ms	remaining: 269ms
47:	learn: 17.4232814	total: 243ms	remaining: 264ms
48:	learn: 17.2957579	total: 248ms	remaining: 258ms
49:	learn: 17.1892874	total: 252ms	remaining: 252ms
50:	learn: 17.0490355	total: 257ms	remaining: 247ms
51:	learn: 16.9666450	total: 261ms	remaining: 241ms
52:	learn: 16.8600056	total: 266ms	remaining: 236ms
53:	learn: 16.7542588	total: 271ms	remaining: 231ms
54:	learn: 16.6316077	total: 275ms	remaining: 225ms
55:	learn: 16.5588112	total: 280ms	remaining: 220ms
56:	learn: 16.5010186	total: 285ms	remaining: 215ms
57:	learn: 16.4081540	total: 290ms	remaining: 210ms
58:	learn: 16.3040451	total: 297ms	remaining: 206ms
59:	learn: 16.1890564	total: 304ms	remaining: 202ms
60:	learn: 16.0977103	total: 311ms	remaining: 199ms
61:	learn: 15.9627607	total: 317ms	remaining: 194ms
62:	learn: 15.9022248	total: 322ms	remaining: 189ms
63:	learn: 15.8151881	total: 327ms	remaining: 184ms
64:	learn: 15.7353125	total: 334ms	remaining: 180ms
65:	learn: 15.6312897	total: 338ms	remaining: 174ms
66:	learn: 15.5330927	total: 342ms	remaining: 169ms
67:	learn: 15.4698681	total: 347ms	remaining: 163ms
68:	learn: 15.4108571	total: 352ms	remaining: 158ms
69:	learn: 15.3492945	total: 356ms	remaining: 153ms
70:	learn: 15.3036540	total: 361ms	remaining: 147ms
71:	learn: 15.2390833	total: 365ms	remaining: 142ms
72:	learn: 15.1556327	total: 369ms	remaining: 137ms
73:	learn: 15.1016315	total: 374ms	remaining: 131ms
74:	learn: 15.0287076	total: 378ms	remaining: 126ms
75:	learn: 14.9530572	total: 383ms	remaining: 121ms
76:	learn: 14.8965517	total: 387ms	remaining: 116ms
77:	learn: 14.8125426	total: 391ms	remaining: 110ms
78:	learn: 14.7435359	total: 396ms	remaining: 105ms
79:	learn: 14.6963163	total: 400ms	remaining: 100ms
80:	learn: 14.6200060	total: 404ms	remaining: 94.8ms
81:	learn: 14.5707760	total: 409ms	remaining: 89.7ms
82:	learn: 14.5053651	total: 413ms	remaining: 84.6ms
83:	learn: 14.4115458	total: 418ms	remaining: 79.6ms
84:	learn: 14.3117159	total: 422ms	remaining: 74.5ms
85:	learn: 14.2511326	total: 426ms	remaining: 69.4ms
86:	learn: 14.1372486	total: 431ms	remaining: 64.3ms
87:	learn: 14.0992301	total: 435ms	remaining: 59.3ms
88:	learn: 14.0228331	total: 440ms	remaining: 54.3ms
89:	learn: 13.9249836	total: 444ms	remaining: 49.3ms
90:	learn: 13.8679364	total: 448ms	remaining: 44.3ms
91:	learn: 13.8405578	total: 453ms	remaining: 39.4ms
92:	learn: 13.7711325	total: 458ms	remaining: 34.4ms
93:	learn: 13.7357019	total: 462ms	remaining: 29.5ms
94:	learn: 13.6735271	total: 466ms	remaining: 24.5ms
95:	learn: 13.5682393	total: 471ms	remaining: 19.6ms
96:	learn: 13.5342610	total: 475ms	remaining: 14.7ms
97:	learn: 13.4710034	total: 479ms	remaining: 9.78ms
98:	learn: 13.4022402	total: 484ms	remaining: 4.88ms
99:	learn: 13.3351238	total: 488ms	remaining: 0us
0:	learn: 42.9181702	total: 5.74ms	remaining: 569ms
1:	learn: 42.0286736	total: 11ms	remaining: 539ms
2:	learn: 41.2764568	total: 16.5ms	remaining: 532ms
3:	learn: 40.4721918	total: 21.8ms	remaining: 522ms
4:	learn: 39.8518928	total: 26.9ms	remaining: 511ms
5:	learn: 39.2645479	total: 32.6ms	remaining: 510ms
6:	learn: 38.4453704	total: 37.9ms	remaining: 504ms
7:	learn: 37.7122059	total: 43ms	remaining: 495ms
8:	learn: 36.9185796	total: 48.1ms	remaining: 487ms
9:	learn: 36.1668427	total: 53.4ms	remaining: 480ms
10:	learn: 35.5639029	total: 58.9ms	remaining: 476ms
11:	learn: 34.7724193	total: 63.4ms	remaining: 465ms
12:	learn: 34.3053433	total: 68.2ms	remaining: 456ms
13:	learn: 33.6561327	total: 69.4ms	remaining: 426ms
14:	learn: 33.0134042	total: 73.8ms	remaining: 418ms
15:	learn: 32.4483300	total: 77.7ms	remaining: 408ms
16:	learn: 31.8581144	total: 82.1ms	remaining: 401ms
17:	learn: 31.2858301	total: 86.2ms	remaining: 393ms
18:	learn: 30.8483018	total: 90.8ms	remaining: 387ms
19:	learn: 30.4174622	total: 95.1ms	remaining: 380ms
20:	learn: 29.8994411	total: 99.4ms	remaining: 374ms
21:	learn: 29.5045355	total: 103ms	remaining: 367ms
22:	learn: 28.9923519	total: 107ms	remaining: 359ms
23:	learn: 28.4255717	total: 112ms	remaining: 353ms
24:	learn: 28.0283139	total: 116ms	remaining: 347ms
25:	learn: 27.7434814	total: 120ms	remaining: 342ms
26:	learn: 27.2770731	total: 125ms	remaining: 339ms
27:	learn: 26.8928270	total: 130ms	remaining: 333ms
28:	learn: 26.4282671	total: 134ms	remaining: 328ms
29:	learn: 26.0272764	total: 139ms	remaining: 325ms
30:	learn: 25.7579312	total: 144ms	remaining: 320ms
31:	learn: 25.4542434	total: 148ms	remaining: 315ms
32:	learn: 25.1232564	total: 153ms	remaining: 311ms
33:	learn: 24.8110795	total: 158ms	remaining: 306ms
34:	learn: 24.5077579	total: 162ms	remaining: 301ms
35:	learn: 24.1909000	total: 168ms	remaining: 298ms
36:	learn: 23.8719468	total: 176ms	remaining: 300ms
37:	learn: 23.5764366	total: 178ms	remaining: 290ms
38:	learn: 23.3468086	total: 186ms	remaining: 290ms
39:	learn: 23.0908771	total: 191ms	remaining: 287ms
40:	learn: 22.8580876	total: 198ms	remaining: 284ms
41:	learn: 22.6060825	total: 203ms	remaining: 280ms
42:	learn: 22.4125407	total: 207ms	remaining: 275ms
43:	learn: 22.1990617	total: 212ms	remaining: 270ms
44:	learn: 21.9716164	total: 217ms	remaining: 265ms
45:	learn: 21.8360935	total: 221ms	remaining: 260ms
46:	learn: 21.6169256	total: 226ms	remaining: 255ms
47:	learn: 21.4620612	total: 231ms	remaining: 250ms
48:	learn: 21.2894194	total: 235ms	remaining: 245ms
49:	learn: 21.1066266	total: 240ms	remaining: 240ms
50:	learn: 20.9484898	total: 244ms	remaining: 234ms
51:	learn: 20.7195338	total: 248ms	remaining: 229ms
52:	learn: 20.4899740	total: 252ms	remaining: 223ms
53:	learn: 20.3356583	total: 257ms	remaining: 219ms
54:	learn: 20.0754393	total: 261ms	remaining: 213ms
55:	learn: 19.9199159	total: 265ms	remaining: 208ms
56:	learn: 19.7761128	total: 269ms	remaining: 203ms
57:	learn: 19.6533060	total: 274ms	remaining: 198ms
58:	learn: 19.5113942	total: 278ms	remaining: 193ms
59:	learn: 19.3985022	total: 282ms	remaining: 188ms
60:	learn: 19.2683443	total: 286ms	remaining: 183ms
61:	learn: 19.1460824	total: 291ms	remaining: 178ms
62:	learn: 19.0042655	total: 295ms	remaining: 173ms
63:	learn: 18.8720873	total: 299ms	remaining: 168ms
64:	learn: 18.7183888	total: 303ms	remaining: 163ms
65:	learn: 18.5472360	total: 307ms	remaining: 158ms
66:	learn: 18.3976642	total: 312ms	remaining: 154ms
67:	learn: 18.2282851	total: 316ms	remaining: 149ms
68:	learn: 18.1469157	total: 320ms	remaining: 144ms
69:	learn: 18.0649494	total: 325ms	remaining: 139ms
70:	learn: 17.9485405	total: 329ms	remaining: 134ms
71:	learn: 17.8460261	total: 333ms	remaining: 130ms
72:	learn: 17.7679843	total: 338ms	remaining: 125ms
73:	learn: 17.5989290	total: 343ms	remaining: 120ms
74:	learn: 17.4381322	total: 347ms	remaining: 116ms
75:	learn: 17.3370886	total: 351ms	remaining: 111ms
76:	learn: 17.2675308	total: 356ms	remaining: 106ms
77:	learn: 17.1946430	total: 361ms	remaining: 102ms
78:	learn: 17.0923725	total: 365ms	remaining: 97.1ms
79:	learn: 17.0537265	total: 371ms	remaining: 92.6ms
80:	learn: 16.9456831	total: 376ms	remaining: 88.1ms
81:	learn: 16.8457353	total: 382ms	remaining: 83.9ms
82:	learn: 16.7469310	total: 390ms	remaining: 80ms
83:	learn: 16.6679953	total: 403ms	remaining: 76.7ms
84:	learn: 16.6274189	total: 409ms	remaining: 72.1ms
85:	learn: 16.5516530	total: 416ms	remaining: 67.7ms
86:	learn: 16.4886066	total: 421ms	remaining: 62.8ms
87:	learn: 16.3947859	total: 426ms	remaining: 58ms
88:	learn: 16.3406495	total: 431ms	remaining: 53.3ms
89:	learn: 16.3019195	total: 436ms	remaining: 48.5ms
90:	learn: 16.1860681	total: 442ms	remaining: 43.7ms
91:	learn: 16.1282812	total: 448ms	remaining: 38.9ms
92:	learn: 16.0303652	total: 453ms	remaining: 34.1ms
93:	learn: 15.9561692	total: 458ms	remaining: 29.2ms
94:	learn: 15.8733994	total: 463ms	remaining: 24.4ms
95:	learn: 15.8108833	total: 468ms	remaining: 19.5ms
96:	learn: 15.7606004	total: 473ms	remaining: 14.6ms
97:	learn: 15.6984664	total: 479ms	remaining: 9.78ms
98:	learn: 15.6223632	total: 484ms	remaining: 4.88ms
99:	learn: 15.5671136	total: 488ms	remaining: 0us
0:	learn: 46.4788614	total: 2.08ms	remaining: 206ms
1:	learn: 45.7608372	total: 7.55ms	remaining: 370ms
2:	learn: 44.8825004	total: 12ms	remaining: 388ms
3:	learn: 44.0362738	total: 16.5ms	remaining: 395ms
4:	learn: 43.2086374	total: 21.3ms	remaining: 405ms
5:	learn: 42.5835773	total: 26.6ms	remaining: 417ms
6:	learn: 41.9673269	total: 31.1ms	remaining: 414ms
7:	learn: 41.4748717	total: 35.6ms	remaining: 410ms
8:	learn: 40.7129183	total: 40.5ms	remaining: 409ms
9:	learn: 39.8900884	total: 45.5ms	remaining: 410ms
10:	learn: 39.4142193	total: 51.6ms	remaining: 418ms
11:	learn: 38.8645613	total: 59.3ms	remaining: 435ms
12:	learn: 38.2394731	total: 66.2ms	remaining: 443ms
13:	learn: 37.6834515	total: 72.2ms	remaining: 444ms
14:	learn: 37.0673507	total: 77.4ms	remaining: 438ms
15:	learn: 36.4728340	total: 83.1ms	remaining: 436ms
16:	learn: 36.0489086	total: 87.3ms	remaining: 426ms
17:	learn: 35.4744141	total: 92.2ms	remaining: 420ms
18:	learn: 35.0106021	total: 96.9ms	remaining: 413ms
19:	learn: 34.5586053	total: 102ms	remaining: 407ms
20:	learn: 34.1308223	total: 106ms	remaining: 401ms
21:	learn: 33.7701450	total: 111ms	remaining: 395ms
22:	learn: 33.4425444	total: 117ms	remaining: 390ms
23:	learn: 33.0296412	total: 122ms	remaining: 385ms
24:	learn: 32.6359803	total: 127ms	remaining: 381ms
25:	learn: 32.1846182	total: 131ms	remaining: 374ms
26:	learn: 31.7620230	total: 136ms	remaining: 368ms
27:	learn: 31.4669337	total: 141ms	remaining: 362ms
28:	learn: 31.0792062	total: 145ms	remaining: 356ms
29:	learn: 30.7970537	total: 149ms	remaining: 349ms
30:	learn: 30.4952215	total: 154ms	remaining: 343ms
31:	learn: 30.2845344	total: 158ms	remaining: 336ms
32:	learn: 29.9592732	total: 163ms	remaining: 330ms
33:	learn: 29.6798596	total: 167ms	remaining: 324ms
34:	learn: 29.3368905	total: 171ms	remaining: 318ms
35:	learn: 29.0621238	total: 176ms	remaining: 313ms
36:	learn: 28.6445375	total: 180ms	remaining: 307ms
37:	learn: 28.2418096	total: 185ms	remaining: 301ms
38:	learn: 27.9495390	total: 189ms	remaining: 296ms
39:	learn: 27.6958160	total: 193ms	remaining: 290ms
40:	learn: 27.4811189	total: 198ms	remaining: 285ms
41:	learn: 27.1494420	total: 202ms	remaining: 280ms
42:	learn: 26.8388873	total: 207ms	remaining: 274ms
43:	learn: 26.5721300	total: 211ms	remaining: 268ms
44:	learn: 26.3384738	total: 215ms	remaining: 263ms
45:	learn: 26.1894781	total: 220ms	remaining: 258ms
46:	learn: 25.9580198	total: 225ms	remaining: 254ms
47:	learn: 25.7897985	total: 230ms	remaining: 249ms
48:	learn: 25.6000271	total: 235ms	remaining: 244ms
49:	learn: 25.4130873	total: 239ms	remaining: 239ms
50:	learn: 25.1699061	total: 244ms	remaining: 234ms
51:	learn: 24.9324449	total: 251ms	remaining: 231ms
52:	learn: 24.7729152	total: 258ms	remaining: 229ms
53:	learn: 24.5026563	total: 271ms	remaining: 231ms
54:	learn: 24.2332627	total: 277ms	remaining: 227ms
55:	learn: 23.9611984	total: 283ms	remaining: 223ms
56:	learn: 23.7862603	total: 289ms	remaining: 218ms
57:	learn: 23.6318154	total: 294ms	remaining: 213ms
58:	learn: 23.4443306	total: 299ms	remaining: 208ms
59:	learn: 23.2581425	total: 304ms	remaining: 203ms
60:	learn: 23.0549901	total: 309ms	remaining: 198ms
61:	learn: 22.8666218	total: 315ms	remaining: 193ms
62:	learn: 22.6956739	total: 320ms	remaining: 188ms
63:	learn: 22.5068544	total: 325ms	remaining: 183ms
64:	learn: 22.1859147	total: 330ms	remaining: 178ms
65:	learn: 22.0462043	total: 335ms	remaining: 173ms
66:	learn: 21.9329563	total: 341ms	remaining: 168ms
67:	learn: 21.8029736	total: 346ms	remaining: 163ms
68:	learn: 21.6861091	total: 350ms	remaining: 157ms
69:	learn: 21.4838140	total: 354ms	remaining: 152ms
70:	learn: 21.3548921	total: 359ms	remaining: 147ms
71:	learn: 21.2244517	total: 363ms	remaining: 141ms
72:	learn: 21.0702958	total: 367ms	remaining: 136ms
73:	learn: 20.9224662	total: 372ms	remaining: 131ms
74:	learn: 20.8150357	total: 376ms	remaining: 125ms
75:	learn: 20.6962739	total: 381ms	remaining: 120ms
76:	learn: 20.5809258	total: 385ms	remaining: 115ms
77:	learn: 20.4735470	total: 389ms	remaining: 110ms
78:	learn: 20.3778167	total: 394ms	remaining: 105ms
79:	learn: 20.2211268	total: 398ms	remaining: 99.4ms
80:	learn: 20.1478678	total: 402ms	remaining: 94.2ms
81:	learn: 20.1032967	total: 407ms	remaining: 89.2ms
82:	learn: 19.9236300	total: 411ms	remaining: 84.2ms
83:	learn: 19.8151745	total: 416ms	remaining: 79.2ms
84:	learn: 19.7099856	total: 420ms	remaining: 74.2ms
85:	learn: 19.6264833	total: 425ms	remaining: 69.2ms
86:	learn: 19.4916361	total: 430ms	remaining: 64.2ms
87:	learn: 19.4050529	total: 434ms	remaining: 59.2ms
88:	learn: 19.2547065	total: 439ms	remaining: 54.3ms
89:	learn: 19.1610225	total: 444ms	remaining: 49.4ms
90:	learn: 19.0898958	total: 452ms	remaining: 44.7ms
91:	learn: 19.0489664	total: 461ms	remaining: 40.1ms
92:	learn: 18.9206240	total: 468ms	remaining: 35.2ms
93:	learn: 18.8636239	total: 473ms	remaining: 30.2ms
94:	learn: 18.8126187	total: 480ms	remaining: 25.3ms
95:	learn: 18.7579275	total: 485ms	remaining: 20.2ms
96:	learn: 18.6382753	total: 490ms	remaining: 15.1ms
97:	learn: 18.5397334	total: 495ms	remaining: 10.1ms
98:	learn: 18.4375951	total: 499ms	remaining: 5.04ms
99:	learn: 18.4033755	total: 504ms	remaining: 0us
0:	learn: 46.1068821	total: 2.14ms	remaining: 212ms
1:	learn: 45.3970261	total: 7.35ms	remaining: 360ms
2:	learn: 44.8732696	total: 12.5ms	remaining: 403ms
3:	learn: 44.1290184	total: 17.1ms	remaining: 410ms
4:	learn: 43.3290271	total: 21.8ms	remaining: 415ms
5:	learn: 42.7069090	total: 26.5ms	remaining: 415ms
6:	learn: 42.0572971	total: 31.2ms	remaining: 414ms
7:	learn: 41.4797924	total: 36ms	remaining: 414ms
8:	learn: 41.0023122	total: 40.9ms	remaining: 413ms
9:	learn: 40.5330570	total: 45ms	remaining: 405ms
10:	learn: 39.9726545	total: 49.5ms	remaining: 400ms
11:	learn: 39.3044053	total: 53.8ms	remaining: 395ms
12:	learn: 38.8169735	total: 58.2ms	remaining: 390ms
13:	learn: 38.2458761	total: 62.6ms	remaining: 385ms
14:	learn: 37.6280321	total: 66.9ms	remaining: 379ms
15:	learn: 37.0800610	total: 71.3ms	remaining: 374ms
16:	learn: 36.5489363	total: 75.9ms	remaining: 371ms
17:	learn: 36.0981456	total: 80.6ms	remaining: 367ms
18:	learn: 35.6956274	total: 85.3ms	remaining: 363ms
19:	learn: 35.1471999	total: 89.9ms	remaining: 360ms
20:	learn: 34.6235408	total: 94.2ms	remaining: 355ms
21:	learn: 34.1987018	total: 98.7ms	remaining: 350ms
22:	learn: 33.8985062	total: 121ms	remaining: 404ms
23:	learn: 33.3869017	total: 126ms	remaining: 401ms
24:	learn: 32.9100550	total: 134ms	remaining: 401ms
25:	learn: 32.4156208	total: 140ms	remaining: 398ms
26:	learn: 31.9320493	total: 145ms	remaining: 392ms
27:	learn: 31.5711468	total: 150ms	remaining: 386ms
28:	learn: 31.2404433	total: 155ms	remaining: 380ms
29:	learn: 30.8807946	total: 160ms	remaining: 374ms
30:	learn: 30.5948438	total: 166ms	remaining: 369ms
31:	learn: 30.3885560	total: 171ms	remaining: 363ms
32:	learn: 30.0625101	total: 176ms	remaining: 358ms
33:	learn: 29.9113114	total: 181ms	remaining: 352ms
34:	learn: 29.6983470	total: 186ms	remaining: 345ms
35:	learn: 29.4775849	total: 192ms	remaining: 341ms
36:	learn: 29.0538055	total: 197ms	remaining: 336ms
37:	learn: 28.6792318	total: 202ms	remaining: 330ms
38:	learn: 28.4231383	total: 207ms	remaining: 324ms
39:	learn: 28.1078565	total: 211ms	remaining: 317ms
40:	learn: 27.9079179	total: 216ms	remaining: 310ms
41:	learn: 27.6721506	total: 220ms	remaining: 304ms
42:	learn: 27.4228033	total: 225ms	remaining: 298ms
43:	learn: 27.1740534	total: 229ms	remaining: 292ms
44:	learn: 26.8584071	total: 234ms	remaining: 286ms
45:	learn: 26.6902083	total: 238ms	remaining: 279ms
46:	learn: 26.4855335	total: 242ms	remaining: 273ms
47:	learn: 26.2730822	total: 247ms	remaining: 267ms
48:	learn: 26.1058689	total: 251ms	remaining: 261ms
49:	learn: 25.8587318	total: 256ms	remaining: 256ms
50:	learn: 25.7558005	total: 260ms	remaining: 250ms
51:	learn: 25.5846925	total: 265ms	remaining: 244ms
52:	learn: 25.4249887	total: 269ms	remaining: 239ms
53:	learn: 25.1911054	total: 275ms	remaining: 234ms
54:	learn: 25.0544755	total: 279ms	remaining: 229ms
55:	learn: 24.8874006	total: 284ms	remaining: 223ms
56:	learn: 24.7736279	total: 289ms	remaining: 218ms
57:	learn: 24.6156255	total: 294ms	remaining: 213ms
58:	learn: 24.3962421	total: 299ms	remaining: 208ms
59:	learn: 24.2685129	total: 308ms	remaining: 205ms
60:	learn: 24.1874096	total: 315ms	remaining: 202ms
61:	learn: 24.0394287	total: 323ms	remaining: 198ms
62:	learn: 23.9281768	total: 328ms	remaining: 193ms
63:	learn: 23.7423900	total: 333ms	remaining: 188ms
64:	learn: 23.6015209	total: 338ms	remaining: 182ms
65:	learn: 23.4677943	total: 342ms	remaining: 176ms
66:	learn: 23.3215256	total: 347ms	remaining: 171ms
67:	learn: 23.1869360	total: 352ms	remaining: 165ms
68:	learn: 22.9691180	total: 356ms	remaining: 160ms
69:	learn: 22.7531657	total: 361ms	remaining: 155ms
70:	learn: 22.6133477	total: 365ms	remaining: 149ms
71:	learn: 22.3452758	total: 370ms	remaining: 144ms
72:	learn: 22.2065350	total: 375ms	remaining: 139ms
73:	learn: 22.1071155	total: 380ms	remaining: 133ms
74:	learn: 21.9740686	total: 384ms	remaining: 128ms
75:	learn: 21.8892033	total: 388ms	remaining: 123ms
76:	learn: 21.8267882	total: 393ms	remaining: 117ms
77:	learn: 21.7423479	total: 398ms	remaining: 112ms
78:	learn: 21.6242075	total: 402ms	remaining: 107ms
79:	learn: 21.5016910	total: 407ms	remaining: 102ms
80:	learn: 21.4806623	total: 407ms	remaining: 95.6ms
81:	learn: 21.3166637	total: 412ms	remaining: 90.4ms
82:	learn: 21.2222534	total: 417ms	remaining: 85.3ms
83:	learn: 21.1535708	total: 421ms	remaining: 80.2ms
84:	learn: 21.0858902	total: 426ms	remaining: 75.1ms
85:	learn: 20.9206003	total: 431ms	remaining: 70.2ms
86:	learn: 20.8674695	total: 436ms	remaining: 65.2ms
87:	learn: 20.8089875	total: 441ms	remaining: 60.1ms
88:	learn: 20.7085401	total: 445ms	remaining: 55ms
89:	learn: 20.5513468	total: 450ms	remaining: 50ms
90:	learn: 20.4586742	total: 455ms	remaining: 45ms
91:	learn: 20.3932149	total: 459ms	remaining: 39.9ms
92:	learn: 20.3000895	total: 463ms	remaining: 34.9ms
93:	learn: 20.2254009	total: 468ms	remaining: 29.9ms
94:	learn: 20.1750050	total: 473ms	remaining: 24.9ms
95:	learn: 20.0715579	total: 480ms	remaining: 20ms
96:	learn: 19.9920082	total: 487ms	remaining: 15ms
97:	learn: 19.9664401	total: 493ms	remaining: 10.1ms
98:	learn: 19.8689673	total: 500ms	remaining: 5.05ms
99:	learn: 19.7537356	total: 506ms	remaining: 0us
0:	learn: 46.8832143	total: 5.41ms	remaining: 536ms
1:	learn: 45.8700349	total: 10.7ms	remaining: 522ms
2:	learn: 45.0546867	total: 16.3ms	remaining: 527ms
3:	learn: 44.2829439	total: 22ms	remaining: 527ms
4:	learn: 43.4609042	total: 27.2ms	remaining: 516ms
5:	learn: 42.6754991	total: 32.6ms	remaining: 510ms
6:	learn: 41.9234935	total: 38.6ms	remaining: 512ms
7:	learn: 41.3987518	total: 44.4ms	remaining: 511ms
8:	learn: 40.6625066	total: 49ms	remaining: 496ms
9:	learn: 40.0029561	total: 53.6ms	remaining: 483ms
10:	learn: 39.3897033	total: 58ms	remaining: 470ms
11:	learn: 38.7741453	total: 62.8ms	remaining: 461ms
12:	learn: 38.1201100	total: 67.3ms	remaining: 450ms
13:	learn: 37.5129454	total: 71.5ms	remaining: 439ms
14:	learn: 37.2062206	total: 76ms	remaining: 431ms
15:	learn: 36.6831741	total: 80.2ms	remaining: 421ms
16:	learn: 36.2902788	total: 84.5ms	remaining: 413ms
17:	learn: 35.7639930	total: 88.9ms	remaining: 405ms
18:	learn: 35.2580953	total: 93.3ms	remaining: 398ms
19:	learn: 34.7809739	total: 97.9ms	remaining: 392ms
20:	learn: 34.1330433	total: 102ms	remaining: 385ms
21:	learn: 33.7302219	total: 106ms	remaining: 378ms
22:	learn: 33.3502495	total: 111ms	remaining: 371ms
23:	learn: 33.0067804	total: 115ms	remaining: 364ms
24:	learn: 32.6897855	total: 119ms	remaining: 357ms
25:	learn: 32.4361119	total: 123ms	remaining: 351ms
26:	learn: 32.1278981	total: 128ms	remaining: 346ms
27:	learn: 31.7863721	total: 132ms	remaining: 340ms
28:	learn: 31.4791450	total: 137ms	remaining: 336ms
29:	learn: 31.1760161	total: 142ms	remaining: 331ms
30:	learn: 30.9238888	total: 147ms	remaining: 326ms
31:	learn: 30.5500905	total: 151ms	remaining: 322ms
32:	learn: 30.3078126	total: 156ms	remaining: 317ms
33:	learn: 30.0480921	total: 161ms	remaining: 312ms
34:	learn: 29.8623884	total: 168ms	remaining: 312ms
35:	learn: 29.5991038	total: 176ms	remaining: 312ms
36:	learn: 29.4061161	total: 182ms	remaining: 311ms
37:	learn: 29.0269515	total: 188ms	remaining: 307ms
38:	learn: 28.8224959	total: 194ms	remaining: 304ms
39:	learn: 28.6417843	total: 199ms	remaining: 298ms
40:	learn: 28.3633368	total: 204ms	remaining: 293ms
41:	learn: 28.0200246	total: 208ms	remaining: 287ms
42:	learn: 27.7221254	total: 212ms	remaining: 281ms
43:	learn: 27.5105818	total: 216ms	remaining: 275ms
44:	learn: 27.3551010	total: 221ms	remaining: 270ms
45:	learn: 27.0787522	total: 225ms	remaining: 264ms
46:	learn: 26.8726317	total: 229ms	remaining: 258ms
47:	learn: 26.8003277	total: 233ms	remaining: 253ms
48:	learn: 26.5493785	total: 238ms	remaining: 247ms
49:	learn: 26.3699550	total: 242ms	remaining: 242ms
50:	learn: 26.1519631	total: 246ms	remaining: 236ms
51:	learn: 25.9277325	total: 250ms	remaining: 231ms
52:	learn: 25.7286035	total: 255ms	remaining: 226ms
53:	learn: 25.4999193	total: 259ms	remaining: 221ms
54:	learn: 25.3434703	total: 263ms	remaining: 215ms
55:	learn: 25.1497545	total: 267ms	remaining: 210ms
56:	learn: 24.9498143	total: 272ms	remaining: 205ms
57:	learn: 24.6509390	total: 276ms	remaining: 200ms
58:	learn: 24.5576144	total: 280ms	remaining: 195ms
59:	learn: 24.4265144	total: 285ms	remaining: 190ms
60:	learn: 24.3100706	total: 289ms	remaining: 185ms
61:	learn: 24.1727952	total: 293ms	remaining: 180ms
62:	learn: 24.0478558	total: 297ms	remaining: 175ms
63:	learn: 23.9124577	total: 301ms	remaining: 170ms
64:	learn: 23.7703718	total: 305ms	remaining: 164ms
65:	learn: 23.5975027	total: 310ms	remaining: 160ms
66:	learn: 23.4318077	total: 314ms	remaining: 155ms
67:	learn: 23.3099691	total: 319ms	remaining: 150ms
68:	learn: 23.1947982	total: 323ms	remaining: 145ms
69:	learn: 23.0260174	total: 327ms	remaining: 140ms
70:	learn: 22.8523100	total: 332ms	remaining: 136ms
71:	learn: 22.8028534	total: 337ms	remaining: 131ms
72:	learn: 22.6880658	total: 342ms	remaining: 126ms
73:	learn: 22.5956809	total: 347ms	remaining: 122ms
74:	learn: 22.4692932	total: 351ms	remaining: 117ms
75:	learn: 22.2863504	total: 356ms	remaining: 113ms
76:	learn: 22.1911237	total: 362ms	remaining: 108ms
77:	learn: 22.1098391	total: 370ms	remaining: 104ms
78:	learn: 22.0182738	total: 379ms	remaining: 101ms
79:	learn: 21.9306746	total: 386ms	remaining: 96.6ms
80:	learn: 21.7508233	total: 392ms	remaining: 92ms
81:	learn: 21.7108446	total: 399ms	remaining: 87.6ms
82:	learn: 21.5931852	total: 404ms	remaining: 82.7ms
83:	learn: 21.4480361	total: 409ms	remaining: 77.9ms
84:	learn: 21.3092119	total: 414ms	remaining: 73.1ms
85:	learn: 21.2605557	total: 420ms	remaining: 68.4ms
86:	learn: 21.1123597	total: 425ms	remaining: 63.5ms
87:	learn: 21.0115642	total: 431ms	remaining: 58.7ms
88:	learn: 20.9389040	total: 436ms	remaining: 53.8ms
89:	learn: 20.8300300	total: 441ms	remaining: 49ms
90:	learn: 20.7159733	total: 446ms	remaining: 44.1ms
91:	learn: 20.6282090	total: 451ms	remaining: 39.2ms
92:	learn: 20.5164529	total: 456ms	remaining: 34.3ms
93:	learn: 20.4692032	total: 462ms	remaining: 29.5ms
94:	learn: 20.3768451	total: 467ms	remaining: 24.6ms
95:	learn: 20.2808056	total: 472ms	remaining: 19.7ms
96:	learn: 20.2082089	total: 476ms	remaining: 14.7ms
97:	learn: 20.1698768	total: 480ms	remaining: 9.8ms
98:	learn: 20.1048816	total: 485ms	remaining: 4.9ms
99:	learn: 20.0086159	total: 489ms	remaining: 0us
0:	learn: 27.6871645	total: 5.49ms	remaining: 544ms
1:	learn: 27.3312003	total: 10.4ms	remaining: 510ms
2:	learn: 26.9359558	total: 15.4ms	remaining: 497ms
3:	learn: 26.6055364	total: 20.5ms	remaining: 491ms
4:	learn: 26.1664924	total: 25.4ms	remaining: 483ms
5:	learn: 25.8515393	total: 32.1ms	remaining: 503ms
6:	learn: 25.4620036	total: 40.6ms	remaining: 539ms
7:	learn: 25.1669741	total: 48.3ms	remaining: 555ms
8:	learn: 24.8455454	total: 55ms	remaining: 557ms
9:	learn: 24.5106323	total: 62.1ms	remaining: 559ms
10:	learn: 24.1915228	total: 66.8ms	remaining: 541ms
11:	learn: 23.9076053	total: 71.6ms	remaining: 525ms
12:	learn: 23.6692445	total: 76.4ms	remaining: 511ms
13:	learn: 23.4343504	total: 81ms	remaining: 498ms
14:	learn: 23.2425280	total: 85.8ms	remaining: 486ms
15:	learn: 22.9254142	total: 90.5ms	remaining: 475ms
16:	learn: 22.6495489	total: 95.4ms	remaining: 466ms
17:	learn: 22.4343705	total: 100ms	remaining: 457ms
18:	learn: 22.2154202	total: 105ms	remaining: 448ms
19:	learn: 22.0592712	total: 110ms	remaining: 439ms
20:	learn: 21.7971944	total: 114ms	remaining: 431ms
21:	learn: 21.6128930	total: 119ms	remaining: 422ms
22:	learn: 21.3882946	total: 124ms	remaining: 415ms
23:	learn: 21.0912570	total: 129ms	remaining: 407ms
24:	learn: 20.8922857	total: 133ms	remaining: 400ms
25:	learn: 20.7150574	total: 138ms	remaining: 393ms
26:	learn: 20.5673183	total: 143ms	remaining: 387ms
27:	learn: 20.4331275	total: 148ms	remaining: 380ms
28:	learn: 20.2782866	total: 152ms	remaining: 373ms
29:	learn: 20.1061525	total: 157ms	remaining: 366ms
30:	learn: 19.9225948	total: 162ms	remaining: 361ms
31:	learn: 19.7809193	total: 167ms	remaining: 356ms
32:	learn: 19.6057771	total: 173ms	remaining: 350ms
33:	learn: 19.4391243	total: 178ms	remaining: 346ms
34:	learn: 19.2234365	total: 183ms	remaining: 340ms
35:	learn: 19.0214424	total: 188ms	remaining: 335ms
36:	learn: 18.8990643	total: 194ms	remaining: 330ms
37:	learn: 18.7473635	total: 198ms	remaining: 324ms
38:	learn: 18.6125192	total: 203ms	remaining: 318ms
39:	learn: 18.4977949	total: 208ms	remaining: 312ms
40:	learn: 18.3914568	total: 213ms	remaining: 307ms
41:	learn: 18.2541544	total: 218ms	remaining: 301ms
42:	learn: 18.1038984	total: 222ms	remaining: 295ms
43:	learn: 17.9706172	total: 227ms	remaining: 289ms
44:	learn: 17.8198810	total: 232ms	remaining: 284ms
45:	learn: 17.7102597	total: 237ms	remaining: 279ms
46:	learn: 17.6148228	total: 242ms	remaining: 273ms
47:	learn: 17.5115365	total: 248ms	remaining: 268ms
48:	learn: 17.3884162	total: 253ms	remaining: 263ms
49:	learn: 17.2857632	total: 259ms	remaining: 259ms
50:	learn: 17.1618843	total: 268ms	remaining: 257ms
51:	learn: 17.0529601	total: 280ms	remaining: 258ms
52:	learn: 16.9330273	total: 289ms	remaining: 256ms
53:	learn: 16.8206672	total: 295ms	remaining: 251ms
54:	learn: 16.7080356	total: 300ms	remaining: 246ms
55:	learn: 16.5874354	total: 306ms	remaining: 240ms
56:	learn: 16.4929860	total: 312ms	remaining: 235ms
57:	learn: 16.4269419	total: 318ms	remaining: 230ms
58:	learn: 16.3474026	total: 324ms	remaining: 225ms
59:	learn: 16.2515784	total: 331ms	remaining: 221ms
60:	learn: 16.1743901	total: 337ms	remaining: 215ms
61:	learn: 16.0389930	total: 342ms	remaining: 210ms
62:	learn: 15.9671636	total: 348ms	remaining: 204ms
63:	learn: 15.8928486	total: 354ms	remaining: 199ms
64:	learn: 15.8303841	total: 360ms	remaining: 194ms
65:	learn: 15.7612266	total: 365ms	remaining: 188ms
66:	learn: 15.6811172	total: 370ms	remaining: 182ms
67:	learn: 15.6262138	total: 375ms	remaining: 177ms
68:	learn: 15.5662508	total: 380ms	remaining: 171ms
69:	learn: 15.4804354	total: 385ms	remaining: 165ms
70:	learn: 15.4054915	total: 390ms	remaining: 159ms
71:	learn: 15.3271396	total: 395ms	remaining: 154ms
72:	learn: 15.2828359	total: 401ms	remaining: 148ms
73:	learn: 15.2197404	total: 406ms	remaining: 143ms
74:	learn: 15.1315902	total: 411ms	remaining: 137ms
75:	learn: 15.0780523	total: 416ms	remaining: 131ms
76:	learn: 14.9959155	total: 422ms	remaining: 126ms
77:	learn: 14.9265008	total: 426ms	remaining: 120ms
78:	learn: 14.8570189	total: 432ms	remaining: 115ms
79:	learn: 14.8060372	total: 437ms	remaining: 109ms
80:	learn: 14.7294676	total: 443ms	remaining: 104ms
81:	learn: 14.6708309	total: 448ms	remaining: 98.3ms
82:	learn: 14.5765370	total: 453ms	remaining: 92.8ms
83:	learn: 14.5312713	total: 462ms	remaining: 88.1ms
84:	learn: 14.4830327	total: 471ms	remaining: 83.1ms
85:	learn: 14.4296247	total: 478ms	remaining: 77.9ms
86:	learn: 14.3381470	total: 484ms	remaining: 72.3ms
87:	learn: 14.2638093	total: 490ms	remaining: 66.8ms
88:	learn: 14.2288435	total: 495ms	remaining: 61.1ms
89:	learn: 14.1489273	total: 500ms	remaining: 55.5ms
90:	learn: 14.0937923	total: 505ms	remaining: 49.9ms
91:	learn: 14.0334062	total: 510ms	remaining: 44.4ms
92:	learn: 13.9854696	total: 515ms	remaining: 38.8ms
93:	learn: 13.9444203	total: 521ms	remaining: 33.2ms
94:	learn: 13.9101523	total: 526ms	remaining: 27.7ms
95:	learn: 13.8460655	total: 531ms	remaining: 22.1ms
96:	learn: 13.7809420	total: 536ms	remaining: 16.6ms
97:	learn: 13.7270532	total: 541ms	remaining: 11ms
98:	learn: 13.6891300	total: 545ms	remaining: 5.51ms
99:	learn: 13.6569696	total: 550ms	remaining: 0us
0:	learn: 42.9754370	total: 5.06ms	remaining: 501ms
1:	learn: 42.2613272	total: 9.84ms	remaining: 482ms
2:	learn: 41.4729969	total: 14.4ms	remaining: 465ms
3:	learn: 40.7127004	total: 19ms	remaining: 455ms
4:	learn: 39.7775109	total: 23.7ms	remaining: 450ms
5:	learn: 39.1736663	total: 28.6ms	remaining: 447ms
6:	learn: 38.2981109	total: 33.2ms	remaining: 442ms
7:	learn: 37.5352984	total: 38.7ms	remaining: 445ms
8:	learn: 36.7771474	total: 44ms	remaining: 445ms
9:	learn: 36.0581366	total: 48.9ms	remaining: 440ms
10:	learn: 35.3542706	total: 54.5ms	remaining: 441ms
11:	learn: 34.6937007	total: 59.9ms	remaining: 439ms
12:	learn: 34.0408035	total: 68ms	remaining: 455ms
13:	learn: 33.3460240	total: 78.3ms	remaining: 481ms
14:	learn: 32.8086243	total: 88.5ms	remaining: 501ms
15:	learn: 32.1934462	total: 96ms	remaining: 504ms
16:	learn: 31.6465519	total: 102ms	remaining: 500ms
17:	learn: 31.2161293	total: 109ms	remaining: 494ms
18:	learn: 30.6730548	total: 114ms	remaining: 486ms
19:	learn: 30.3153659	total: 120ms	remaining: 478ms
20:	learn: 29.7661420	total: 126ms	remaining: 473ms
21:	learn: 29.2095664	total: 131ms	remaining: 466ms
22:	learn: 28.7509592	total: 137ms	remaining: 460ms
23:	learn: 28.4347528	total: 143ms	remaining: 454ms
24:	learn: 28.0551654	total: 149ms	remaining: 448ms
25:	learn: 27.7295952	total: 154ms	remaining: 440ms
26:	learn: 27.2329225	total: 161ms	remaining: 435ms
27:	learn: 26.9970607	total: 167ms	remaining: 429ms
28:	learn: 26.6596544	total: 171ms	remaining: 420ms
29:	learn: 26.2633576	total: 176ms	remaining: 411ms
30:	learn: 25.9761623	total: 181ms	remaining: 402ms
31:	learn: 25.6177371	total: 186ms	remaining: 394ms
32:	learn: 25.2165933	total: 190ms	remaining: 386ms
33:	learn: 24.8012870	total: 195ms	remaining: 379ms
34:	learn: 24.4772532	total: 200ms	remaining: 371ms
35:	learn: 24.1560359	total: 205ms	remaining: 364ms
36:	learn: 23.9688812	total: 210ms	remaining: 357ms
37:	learn: 23.6907607	total: 214ms	remaining: 350ms
38:	learn: 23.3885772	total: 219ms	remaining: 343ms
39:	learn: 23.2234939	total: 224ms	remaining: 336ms
40:	learn: 22.9785026	total: 229ms	remaining: 329ms
41:	learn: 22.6827268	total: 234ms	remaining: 323ms
42:	learn: 22.4564360	total: 239ms	remaining: 316ms
43:	learn: 22.2517827	total: 244ms	remaining: 310ms
44:	learn: 21.9858709	total: 249ms	remaining: 304ms
45:	learn: 21.7595870	total: 254ms	remaining: 298ms
46:	learn: 21.5929957	total: 259ms	remaining: 292ms
47:	learn: 21.4071752	total: 268ms	remaining: 290ms
48:	learn: 21.2186470	total: 276ms	remaining: 287ms
49:	learn: 21.0691824	total: 283ms	remaining: 283ms
50:	learn: 20.8921347	total: 288ms	remaining: 277ms
51:	learn: 20.6834229	total: 295ms	remaining: 272ms
52:	learn: 20.4718988	total: 300ms	remaining: 266ms
53:	learn: 20.3413889	total: 304ms	remaining: 259ms
54:	learn: 20.1785464	total: 309ms	remaining: 253ms
55:	learn: 19.9824314	total: 314ms	remaining: 247ms
56:	learn: 19.8217596	total: 319ms	remaining: 241ms
57:	learn: 19.6318474	total: 324ms	remaining: 235ms
58:	learn: 19.4962236	total: 329ms	remaining: 228ms
59:	learn: 19.3114985	total: 333ms	remaining: 222ms
60:	learn: 19.2181156	total: 338ms	remaining: 216ms
61:	learn: 19.0689614	total: 343ms	remaining: 210ms
62:	learn: 18.9563267	total: 348ms	remaining: 204ms
63:	learn: 18.8343083	total: 352ms	remaining: 198ms
64:	learn: 18.7050033	total: 357ms	remaining: 192ms
65:	learn: 18.6014163	total: 362ms	remaining: 186ms
66:	learn: 18.4910692	total: 366ms	remaining: 180ms
67:	learn: 18.3935194	total: 371ms	remaining: 175ms
68:	learn: 18.2825842	total: 376ms	remaining: 169ms
69:	learn: 18.1519267	total: 381ms	remaining: 163ms
70:	learn: 18.0527651	total: 386ms	remaining: 158ms
71:	learn: 17.9770106	total: 391ms	remaining: 152ms
72:	learn: 17.9151628	total: 395ms	remaining: 146ms
73:	learn: 17.7957486	total: 400ms	remaining: 141ms
74:	learn: 17.7025765	total: 405ms	remaining: 135ms
75:	learn: 17.5957242	total: 409ms	remaining: 129ms
76:	learn: 17.4683244	total: 414ms	remaining: 124ms
77:	learn: 17.3415729	total: 419ms	remaining: 118ms
78:	learn: 17.2886896	total: 424ms	remaining: 113ms
79:	learn: 17.2280922	total: 428ms	remaining: 107ms
80:	learn: 17.1188996	total: 433ms	remaining: 102ms
81:	learn: 17.0236450	total: 438ms	remaining: 96.2ms
82:	learn: 16.9046661	total: 443ms	remaining: 90.7ms
83:	learn: 16.7930633	total: 448ms	remaining: 85.3ms
84:	learn: 16.6870100	total: 453ms	remaining: 80ms
85:	learn: 16.5512107	total: 462ms	remaining: 75.2ms
86:	learn: 16.4353400	total: 469ms	remaining: 70.1ms
87:	learn: 16.3256461	total: 477ms	remaining: 65ms
88:	learn: 16.2968057	total: 483ms	remaining: 59.7ms
89:	learn: 16.2136078	total: 493ms	remaining: 54.8ms
90:	learn: 16.1596096	total: 499ms	remaining: 49.3ms
91:	learn: 16.1164050	total: 504ms	remaining: 43.8ms
92:	learn: 16.0660454	total: 510ms	remaining: 38.4ms
93:	learn: 16.0380611	total: 515ms	remaining: 32.9ms
94:	learn: 15.9494441	total: 522ms	remaining: 27.4ms
95:	learn: 15.8874840	total: 527ms	remaining: 22ms
96:	learn: 15.8288234	total: 533ms	remaining: 16.5ms
97:	learn: 15.7562787	total: 539ms	remaining: 11ms
98:	learn: 15.6822678	total: 546ms	remaining: 5.51ms
99:	learn: 15.5901500	total: 552ms	remaining: 0us
0:	learn: 46.4504871	total: 4.96ms	remaining: 491ms
1:	learn: 45.7240114	total: 9.76ms	remaining: 478ms
2:	learn: 45.0308025	total: 14.4ms	remaining: 467ms
3:	learn: 44.1111169	total: 19.2ms	remaining: 461ms
4:	learn: 43.3925352	total: 23.7ms	remaining: 451ms
5:	learn: 42.7856354	total: 28.4ms	remaining: 446ms
6:	learn: 42.1998170	total: 33.3ms	remaining: 442ms
7:	learn: 41.3532708	total: 38.1ms	remaining: 439ms
8:	learn: 40.7314571	total: 43.1ms	remaining: 436ms
9:	learn: 39.9838066	total: 48.3ms	remaining: 435ms
10:	learn: 39.4168243	total: 53ms	remaining: 429ms
11:	learn: 39.0148769	total: 57.6ms	remaining: 423ms
12:	learn: 38.3055855	total: 62.8ms	remaining: 420ms
13:	learn: 37.7343198	total: 67.9ms	remaining: 417ms
14:	learn: 37.4177463	total: 73.1ms	remaining: 414ms
15:	learn: 36.9043298	total: 78.3ms	remaining: 411ms
16:	learn: 36.3139174	total: 83.3ms	remaining: 407ms
17:	learn: 35.7200448	total: 89.2ms	remaining: 406ms
18:	learn: 35.3763394	total: 97.7ms	remaining: 417ms
19:	learn: 34.7666728	total: 105ms	remaining: 422ms
20:	learn: 34.2642890	total: 113ms	remaining: 424ms
21:	learn: 33.8196936	total: 119ms	remaining: 423ms
22:	learn: 33.4205669	total: 125ms	remaining: 419ms
23:	learn: 32.8565493	total: 130ms	remaining: 412ms
24:	learn: 32.5287132	total: 135ms	remaining: 405ms
25:	learn: 32.2142064	total: 140ms	remaining: 398ms
26:	learn: 31.9258854	total: 145ms	remaining: 391ms
27:	learn: 31.4083665	total: 150ms	remaining: 385ms
28:	learn: 31.1615620	total: 155ms	remaining: 379ms
29:	learn: 30.6948867	total: 160ms	remaining: 373ms
30:	learn: 30.3185108	total: 165ms	remaining: 367ms
31:	learn: 29.9245223	total: 170ms	remaining: 361ms
32:	learn: 29.6683643	total: 175ms	remaining: 354ms
33:	learn: 29.3868143	total: 179ms	remaining: 348ms
34:	learn: 29.1105699	total: 184ms	remaining: 342ms
35:	learn: 28.8274848	total: 189ms	remaining: 336ms
36:	learn: 28.5478288	total: 194ms	remaining: 331ms
37:	learn: 28.2355121	total: 199ms	remaining: 325ms
38:	learn: 28.0182564	total: 204ms	remaining: 319ms
39:	learn: 27.7654405	total: 209ms	remaining: 313ms
40:	learn: 27.5720477	total: 214ms	remaining: 307ms
41:	learn: 27.3182782	total: 218ms	remaining: 302ms
42:	learn: 26.9504431	total: 223ms	remaining: 296ms
43:	learn: 26.7281906	total: 228ms	remaining: 291ms
44:	learn: 26.5390008	total: 233ms	remaining: 285ms
45:	learn: 26.3781338	total: 238ms	remaining: 279ms
46:	learn: 26.1763177	total: 243ms	remaining: 274ms
47:	learn: 25.9417647	total: 248ms	remaining: 268ms
48:	learn: 25.7528045	total: 252ms	remaining: 263ms
49:	learn: 25.6336897	total: 257ms	remaining: 257ms
50:	learn: 25.4800426	total: 262ms	remaining: 252ms
51:	learn: 25.2895681	total: 267ms	remaining: 247ms
52:	learn: 25.0827111	total: 272ms	remaining: 241ms
53:	learn: 24.7987678	total: 277ms	remaining: 236ms
54:	learn: 24.6309982	total: 282ms	remaining: 231ms
55:	learn: 24.3526776	total: 288ms	remaining: 226ms
56:	learn: 24.1689125	total: 300ms	remaining: 226ms
57:	learn: 23.9802039	total: 312ms	remaining: 226ms
58:	learn: 23.8059432	total: 322ms	remaining: 223ms
59:	learn: 23.6006403	total: 329ms	remaining: 219ms
60:	learn: 23.2948382	total: 336ms	remaining: 215ms
61:	learn: 23.1338922	total: 342ms	remaining: 210ms
62:	learn: 22.9581269	total: 349ms	remaining: 205ms
63:	learn: 22.8263127	total: 355ms	remaining: 200ms
64:	learn: 22.6966006	total: 361ms	remaining: 194ms
65:	learn: 22.6012389	total: 367ms	remaining: 189ms
66:	learn: 22.4220244	total: 372ms	remaining: 183ms
67:	learn: 22.3148342	total: 378ms	remaining: 178ms
68:	learn: 22.1543592	total: 384ms	remaining: 173ms
69:	learn: 22.0614050	total: 389ms	remaining: 167ms
70:	learn: 21.9134025	total: 394ms	remaining: 161ms
71:	learn: 21.8198101	total: 399ms	remaining: 155ms
72:	learn: 21.6944173	total: 404ms	remaining: 149ms
73:	learn: 21.4727420	total: 409ms	remaining: 144ms
74:	learn: 21.3000560	total: 414ms	remaining: 138ms
75:	learn: 21.1884740	total: 419ms	remaining: 132ms
76:	learn: 21.0321317	total: 423ms	remaining: 126ms
77:	learn: 20.9371793	total: 428ms	remaining: 121ms
78:	learn: 20.6800341	total: 433ms	remaining: 115ms
79:	learn: 20.5629904	total: 438ms	remaining: 109ms
80:	learn: 20.4098217	total: 443ms	remaining: 104ms
81:	learn: 20.2139261	total: 448ms	remaining: 98.2ms
82:	learn: 20.1024260	total: 452ms	remaining: 92.7ms
83:	learn: 19.9835855	total: 457ms	remaining: 87.1ms
84:	learn: 19.9018880	total: 463ms	remaining: 81.6ms
85:	learn: 19.7819843	total: 468ms	remaining: 76.1ms
86:	learn: 19.6352780	total: 473ms	remaining: 70.7ms
87:	learn: 19.4888328	total: 478ms	remaining: 65.2ms
88:	learn: 19.4365121	total: 483ms	remaining: 59.7ms
89:	learn: 19.3427430	total: 493ms	remaining: 54.7ms
90:	learn: 19.2884907	total: 502ms	remaining: 49.6ms
91:	learn: 19.1898932	total: 509ms	remaining: 44.3ms
92:	learn: 19.0775661	total: 515ms	remaining: 38.8ms
93:	learn: 19.0334055	total: 520ms	remaining: 33.2ms
94:	learn: 18.9381916	total: 525ms	remaining: 27.7ms
95:	learn: 18.8471198	total: 530ms	remaining: 22.1ms
96:	learn: 18.7136478	total: 535ms	remaining: 16.5ms
97:	learn: 18.6633102	total: 540ms	remaining: 11ms
98:	learn: 18.5887516	total: 545ms	remaining: 5.5ms
99:	learn: 18.4841597	total: 550ms	remaining: 0us
0:	learn: 46.2172336	total: 4.92ms	remaining: 487ms
1:	learn: 45.4248871	total: 9.75ms	remaining: 478ms
2:	learn: 44.8702937	total: 14.6ms	remaining: 471ms
3:	learn: 44.2019212	total: 19.7ms	remaining: 473ms
4:	learn: 43.4805210	total: 24.4ms	remaining: 464ms
5:	learn: 42.7336269	total: 29.3ms	remaining: 459ms
6:	learn: 42.0396670	total: 34ms	remaining: 452ms
7:	learn: 41.5668459	total: 38.6ms	remaining: 444ms
8:	learn: 40.8999125	total: 43.4ms	remaining: 439ms
9:	learn: 40.3358512	total: 48.2ms	remaining: 434ms
10:	learn: 39.7511489	total: 53.3ms	remaining: 431ms
11:	learn: 39.0775416	total: 58ms	remaining: 426ms
12:	learn: 38.5204735	total: 62.6ms	remaining: 419ms
13:	learn: 38.2087509	total: 67.6ms	remaining: 415ms
14:	learn: 37.7259552	total: 72.9ms	remaining: 413ms
15:	learn: 37.1646397	total: 77.8ms	remaining: 408ms
16:	learn: 36.7093520	total: 82.6ms	remaining: 403ms
17:	learn: 36.2212308	total: 87.9ms	remaining: 401ms
18:	learn: 35.8682156	total: 106ms	remaining: 451ms
19:	learn: 35.6026383	total: 115ms	remaining: 459ms
20:	learn: 35.1739725	total: 123ms	remaining: 462ms
21:	learn: 34.5938003	total: 130ms	remaining: 459ms
22:	learn: 34.1479056	total: 135ms	remaining: 453ms
23:	learn: 33.8759356	total: 141ms	remaining: 446ms
24:	learn: 33.2898426	total: 147ms	remaining: 440ms
25:	learn: 32.9220237	total: 152ms	remaining: 433ms
26:	learn: 32.4324374	total: 158ms	remaining: 427ms
27:	learn: 32.1726327	total: 163ms	remaining: 420ms
28:	learn: 31.8020879	total: 169ms	remaining: 413ms
29:	learn: 31.4329781	total: 174ms	remaining: 406ms
30:	learn: 30.9995282	total: 180ms	remaining: 400ms
31:	learn: 30.6815978	total: 186ms	remaining: 395ms
32:	learn: 30.2991029	total: 191ms	remaining: 387ms
33:	learn: 30.0354202	total: 196ms	remaining: 380ms
34:	learn: 29.7620535	total: 201ms	remaining: 373ms
35:	learn: 29.4552589	total: 205ms	remaining: 365ms
36:	learn: 29.2634399	total: 210ms	remaining: 358ms
37:	learn: 28.8345135	total: 215ms	remaining: 351ms
38:	learn: 28.5551142	total: 220ms	remaining: 344ms
39:	learn: 28.3258809	total: 224ms	remaining: 336ms
40:	learn: 28.0835564	total: 229ms	remaining: 330ms
41:	learn: 27.7517159	total: 234ms	remaining: 323ms
42:	learn: 27.5427595	total: 239ms	remaining: 317ms
43:	learn: 27.3925105	total: 244ms	remaining: 310ms
44:	learn: 27.2377120	total: 249ms	remaining: 304ms
45:	learn: 26.9930398	total: 253ms	remaining: 297ms
46:	learn: 26.7748687	total: 258ms	remaining: 291ms
47:	learn: 26.5856986	total: 264ms	remaining: 286ms
48:	learn: 26.4344153	total: 269ms	remaining: 280ms
49:	learn: 26.3263456	total: 275ms	remaining: 275ms
50:	learn: 26.2048412	total: 280ms	remaining: 269ms
51:	learn: 26.0608546	total: 285ms	remaining: 263ms
52:	learn: 25.9428146	total: 290ms	remaining: 257ms
53:	learn: 25.7578029	total: 296ms	remaining: 253ms
54:	learn: 25.5696792	total: 305ms	remaining: 249ms
55:	learn: 25.3291935	total: 312ms	remaining: 245ms
56:	learn: 25.1388942	total: 319ms	remaining: 240ms
57:	learn: 24.9853945	total: 325ms	remaining: 236ms
58:	learn: 24.8037785	total: 331ms	remaining: 230ms
59:	learn: 24.5326704	total: 336ms	remaining: 224ms
60:	learn: 24.2208240	total: 342ms	remaining: 218ms
61:	learn: 24.0774015	total: 347ms	remaining: 212ms
62:	learn: 23.9705824	total: 352ms	remaining: 207ms
63:	learn: 23.8877665	total: 357ms	remaining: 201ms
64:	learn: 23.7309043	total: 362ms	remaining: 195ms
65:	learn: 23.5820140	total: 367ms	remaining: 189ms
66:	learn: 23.3762012	total: 372ms	remaining: 183ms
67:	learn: 23.2317502	total: 377ms	remaining: 177ms
68:	learn: 23.0868331	total: 382ms	remaining: 171ms
69:	learn: 22.9642758	total: 387ms	remaining: 166ms
70:	learn: 22.8085341	total: 391ms	remaining: 160ms
71:	learn: 22.6834294	total: 396ms	remaining: 154ms
72:	learn: 22.6152922	total: 401ms	remaining: 148ms
73:	learn: 22.3675145	total: 406ms	remaining: 143ms
74:	learn: 22.3023338	total: 411ms	remaining: 137ms
75:	learn: 22.1866833	total: 415ms	remaining: 131ms
76:	learn: 22.0163130	total: 420ms	remaining: 125ms
77:	learn: 21.9691306	total: 424ms	remaining: 120ms
78:	learn: 21.9004647	total: 429ms	remaining: 114ms
79:	learn: 21.7931869	total: 434ms	remaining: 108ms
80:	learn: 21.6747916	total: 439ms	remaining: 103ms
81:	learn: 21.5187568	total: 443ms	remaining: 97.3ms
82:	learn: 21.3124880	total: 449ms	remaining: 92ms
83:	learn: 21.1979524	total: 454ms	remaining: 86.5ms
84:	learn: 21.1311130	total: 459ms	remaining: 81ms
85:	learn: 21.0606062	total: 464ms	remaining: 75.5ms
86:	learn: 20.9900935	total: 469ms	remaining: 70ms
87:	learn: 20.8908054	total: 474ms	remaining: 64.7ms
88:	learn: 20.8088525	total: 479ms	remaining: 59.2ms
89:	learn: 20.7300955	total: 484ms	remaining: 53.8ms
90:	learn: 20.6130276	total: 490ms	remaining: 48.5ms
91:	learn: 20.5437508	total: 500ms	remaining: 43.5ms
92:	learn: 20.5029426	total: 510ms	remaining: 38.4ms
93:	learn: 20.4416708	total: 517ms	remaining: 33ms
94:	learn: 20.3917812	total: 526ms	remaining: 27.7ms
95:	learn: 20.3305024	total: 532ms	remaining: 22.1ms
96:	learn: 20.2375704	total: 537ms	remaining: 16.6ms
97:	learn: 20.1835197	total: 543ms	remaining: 11.1ms
98:	learn: 20.1246834	total: 549ms	remaining: 5.55ms
99:	learn: 20.0506334	total: 556ms	remaining: 0us
0:	learn: 46.7334648	total: 5.14ms	remaining: 509ms
1:	learn: 46.2069876	total: 9.98ms	remaining: 489ms
2:	learn: 45.3699967	total: 14.9ms	remaining: 482ms
3:	learn: 44.6866787	total: 20.2ms	remaining: 486ms
4:	learn: 43.8536031	total: 25.4ms	remaining: 482ms
5:	learn: 43.4716853	total: 30.8ms	remaining: 482ms
6:	learn: 42.9929637	total: 35.9ms	remaining: 476ms
7:	learn: 42.4952169	total: 40.7ms	remaining: 468ms
8:	learn: 41.7548337	total: 45.5ms	remaining: 461ms
9:	learn: 41.1054415	total: 50.4ms	remaining: 454ms
10:	learn: 40.4827492	total: 55.2ms	remaining: 447ms
11:	learn: 39.7605907	total: 75.8ms	remaining: 556ms
12:	learn: 39.2532558	total: 80.9ms	remaining: 542ms
13:	learn: 38.6572753	total: 85.9ms	remaining: 528ms
14:	learn: 38.2886959	total: 90.8ms	remaining: 515ms
15:	learn: 37.7816612	total: 95.8ms	remaining: 503ms
16:	learn: 37.1680589	total: 103ms	remaining: 502ms
17:	learn: 36.5753004	total: 111ms	remaining: 505ms
18:	learn: 36.2339458	total: 119ms	remaining: 506ms
19:	learn: 35.9159716	total: 125ms	remaining: 502ms
20:	learn: 35.4591743	total: 132ms	remaining: 496ms
21:	learn: 34.8726070	total: 137ms	remaining: 485ms
22:	learn: 34.3903591	total: 142ms	remaining: 475ms
23:	learn: 34.1236827	total: 147ms	remaining: 465ms
24:	learn: 33.8026540	total: 152ms	remaining: 456ms
25:	learn: 33.4594822	total: 157ms	remaining: 446ms
26:	learn: 33.1338910	total: 162ms	remaining: 437ms
27:	learn: 32.8527106	total: 167ms	remaining: 430ms
28:	learn: 32.4923829	total: 172ms	remaining: 422ms
29:	learn: 32.0560533	total: 177ms	remaining: 414ms
30:	learn: 31.6614408	total: 182ms	remaining: 406ms
31:	learn: 31.2796040	total: 187ms	remaining: 398ms
32:	learn: 30.8214741	total: 192ms	remaining: 389ms
33:	learn: 30.5908694	total: 196ms	remaining: 381ms
34:	learn: 30.3637356	total: 201ms	remaining: 373ms
35:	learn: 30.0446511	total: 206ms	remaining: 366ms
36:	learn: 29.8792549	total: 211ms	remaining: 359ms
37:	learn: 29.5488457	total: 216ms	remaining: 352ms
38:	learn: 29.2808568	total: 220ms	remaining: 345ms
39:	learn: 29.0603765	total: 225ms	remaining: 338ms
40:	learn: 28.8272425	total: 230ms	remaining: 331ms
41:	learn: 28.4753580	total: 234ms	remaining: 324ms
42:	learn: 28.2963614	total: 239ms	remaining: 317ms
43:	learn: 28.1054768	total: 244ms	remaining: 310ms
44:	learn: 27.9038093	total: 248ms	remaining: 304ms
45:	learn: 27.6305487	total: 253ms	remaining: 297ms
46:	learn: 27.4457907	total: 258ms	remaining: 291ms
47:	learn: 27.1855957	total: 263ms	remaining: 284ms
48:	learn: 26.9987934	total: 267ms	remaining: 278ms
49:	learn: 26.7881067	total: 272ms	remaining: 272ms
50:	learn: 26.6385231	total: 277ms	remaining: 266ms
51:	learn: 26.4661755	total: 282ms	remaining: 260ms
52:	learn: 26.3331868	total: 287ms	remaining: 254ms
53:	learn: 26.0353476	total: 292ms	remaining: 249ms
54:	learn: 25.8257147	total: 297ms	remaining: 243ms
55:	learn: 25.5924383	total: 302ms	remaining: 237ms
56:	learn: 25.4082209	total: 307ms	remaining: 232ms
57:	learn: 25.2350104	total: 313ms	remaining: 227ms
58:	learn: 25.1789867	total: 322ms	remaining: 224ms
59:	learn: 24.9111359	total: 331ms	remaining: 221ms
60:	learn: 24.6314503	total: 339ms	remaining: 217ms
61:	learn: 24.4297999	total: 348ms	remaining: 213ms
62:	learn: 24.3126171	total: 353ms	remaining: 208ms
63:	learn: 24.1544005	total: 359ms	remaining: 202ms
64:	learn: 24.0197950	total: 364ms	remaining: 196ms
65:	learn: 23.8483087	total: 370ms	remaining: 191ms
66:	learn: 23.6624915	total: 376ms	remaining: 185ms
67:	learn: 23.5068105	total: 382ms	remaining: 180ms
68:	learn: 23.4266187	total: 387ms	remaining: 174ms
69:	learn: 23.3535388	total: 392ms	remaining: 168ms
70:	learn: 23.2477190	total: 397ms	remaining: 162ms
71:	learn: 23.1877634	total: 402ms	remaining: 156ms
72:	learn: 23.1344720	total: 407ms	remaining: 151ms
73:	learn: 22.9498234	total: 413ms	remaining: 145ms
74:	learn: 22.9068295	total: 419ms	remaining: 140ms
75:	learn: 22.7368434	total: 425ms	remaining: 134ms
76:	learn: 22.6084901	total: 430ms	remaining: 128ms
77:	learn: 22.4690295	total: 435ms	remaining: 123ms
78:	learn: 22.3970100	total: 439ms	remaining: 117ms
79:	learn: 22.3025537	total: 444ms	remaining: 111ms
80:	learn: 22.2089293	total: 449ms	remaining: 105ms
81:	learn: 22.0522107	total: 454ms	remaining: 99.6ms
82:	learn: 21.9368213	total: 458ms	remaining: 93.9ms
83:	learn: 21.7968322	total: 463ms	remaining: 88.2ms
84:	learn: 21.7416164	total: 468ms	remaining: 82.6ms
85:	learn: 21.6031099	total: 472ms	remaining: 76.9ms
86:	learn: 21.4530627	total: 477ms	remaining: 71.3ms
87:	learn: 21.3118417	total: 482ms	remaining: 65.8ms
88:	learn: 21.2760431	total: 487ms	remaining: 60.2ms
89:	learn: 21.2071350	total: 492ms	remaining: 54.7ms
90:	learn: 21.1051001	total: 500ms	remaining: 49.5ms
91:	learn: 21.0246142	total: 507ms	remaining: 44.1ms
92:	learn: 20.9834999	total: 514ms	remaining: 38.7ms
93:	learn: 20.8989393	total: 521ms	remaining: 33.2ms
94:	learn: 20.8262231	total: 526ms	remaining: 27.7ms
95:	learn: 20.7369110	total: 532ms	remaining: 22.2ms
96:	learn: 20.6409587	total: 539ms	remaining: 16.7ms
97:	learn: 20.5553641	total: 543ms	remaining: 11.1ms
98:	learn: 20.4317232	total: 548ms	remaining: 5.54ms
99:	learn: 20.3708681	total: 553ms	remaining: 0us
0:	learn: 27.6165091	total: 5.6ms	remaining: 554ms
1:	learn: 27.2156009	total: 10.1ms	remaining: 495ms
2:	learn: 26.8744169	total: 14.9ms	remaining: 481ms
3:	learn: 26.5530473	total: 19.9ms	remaining: 477ms
4:	learn: 26.1200739	total: 24.5ms	remaining: 465ms
5:	learn: 25.7559063	total: 29ms	remaining: 454ms
6:	learn: 25.3817459	total: 33.7ms	remaining: 447ms
7:	learn: 25.0780231	total: 38.8ms	remaining: 446ms
8:	learn: 24.7908836	total: 43.6ms	remaining: 441ms
9:	learn: 24.5023726	total: 48.4ms	remaining: 436ms
10:	learn: 24.2430447	total: 53.3ms	remaining: 432ms
11:	learn: 24.0150987	total: 58.2ms	remaining: 427ms
12:	learn: 23.6832732	total: 62.8ms	remaining: 420ms
13:	learn: 23.4512462	total: 67.6ms	remaining: 415ms
14:	learn: 23.2300808	total: 73.1ms	remaining: 414ms
15:	learn: 23.0198192	total: 78.2ms	remaining: 410ms
16:	learn: 22.7757356	total: 83.3ms	remaining: 406ms
17:	learn: 22.4962727	total: 88.2ms	remaining: 402ms
18:	learn: 22.2131794	total: 92.9ms	remaining: 396ms
19:	learn: 21.9844087	total: 97.8ms	remaining: 391ms
20:	learn: 21.6467820	total: 103ms	remaining: 387ms
21:	learn: 21.4458045	total: 108ms	remaining: 384ms
22:	learn: 21.2706627	total: 114ms	remaining: 382ms
23:	learn: 21.0770166	total: 120ms	remaining: 380ms
24:	learn: 20.8871491	total: 126ms	remaining: 377ms
25:	learn: 20.7151270	total: 135ms	remaining: 385ms
26:	learn: 20.5585218	total: 148ms	remaining: 401ms
27:	learn: 20.4091128	total: 156ms	remaining: 402ms
28:	learn: 20.2343121	total: 165ms	remaining: 404ms
29:	learn: 20.0685862	total: 170ms	remaining: 398ms
30:	learn: 19.8339661	total: 176ms	remaining: 392ms
31:	learn: 19.6811138	total: 182ms	remaining: 386ms
32:	learn: 19.4881999	total: 187ms	remaining: 380ms
33:	learn: 19.3473429	total: 194ms	remaining: 376ms
34:	learn: 19.1087185	total: 199ms	remaining: 370ms
35:	learn: 18.9817724	total: 205ms	remaining: 364ms
36:	learn: 18.8465124	total: 210ms	remaining: 358ms
37:	learn: 18.6998182	total: 216ms	remaining: 353ms
38:	learn: 18.5534881	total: 223ms	remaining: 348ms
39:	learn: 18.4221213	total: 228ms	remaining: 342ms
40:	learn: 18.3262428	total: 233ms	remaining: 335ms
41:	learn: 18.2018519	total: 238ms	remaining: 328ms
42:	learn: 18.0704402	total: 243ms	remaining: 322ms
43:	learn: 17.9674737	total: 248ms	remaining: 315ms
44:	learn: 17.8092746	total: 252ms	remaining: 308ms
45:	learn: 17.7036671	total: 257ms	remaining: 302ms
46:	learn: 17.5636023	total: 262ms	remaining: 296ms
47:	learn: 17.3922671	total: 267ms	remaining: 289ms
48:	learn: 17.2777727	total: 273ms	remaining: 284ms
49:	learn: 17.1901866	total: 278ms	remaining: 278ms
50:	learn: 17.0799264	total: 283ms	remaining: 272ms
51:	learn: 17.0022808	total: 288ms	remaining: 266ms
52:	learn: 16.9193737	total: 293ms	remaining: 260ms
53:	learn: 16.8349324	total: 300ms	remaining: 256ms
54:	learn: 16.7122802	total: 308ms	remaining: 252ms
55:	learn: 16.5736462	total: 315ms	remaining: 248ms
56:	learn: 16.4576798	total: 322ms	remaining: 243ms
57:	learn: 16.3336075	total: 328ms	remaining: 237ms
58:	learn: 16.2578113	total: 335ms	remaining: 233ms
59:	learn: 16.1586938	total: 340ms	remaining: 227ms
60:	learn: 16.0827831	total: 345ms	remaining: 220ms
61:	learn: 16.0030150	total: 349ms	remaining: 214ms
62:	learn: 15.8741662	total: 354ms	remaining: 208ms
63:	learn: 15.7533897	total: 359ms	remaining: 202ms
64:	learn: 15.6743804	total: 364ms	remaining: 196ms
65:	learn: 15.6291324	total: 368ms	remaining: 190ms
66:	learn: 15.5363523	total: 373ms	remaining: 184ms
67:	learn: 15.4675550	total: 378ms	remaining: 178ms
68:	learn: 15.3959873	total: 383ms	remaining: 172ms
69:	learn: 15.3222045	total: 388ms	remaining: 166ms
70:	learn: 15.2343883	total: 393ms	remaining: 160ms
71:	learn: 15.1891070	total: 398ms	remaining: 155ms
72:	learn: 15.1320798	total: 402ms	remaining: 149ms
73:	learn: 15.0590468	total: 407ms	remaining: 143ms
74:	learn: 14.9682726	total: 412ms	remaining: 137ms
75:	learn: 14.8868528	total: 417ms	remaining: 132ms
76:	learn: 14.8046328	total: 422ms	remaining: 126ms
77:	learn: 14.7253152	total: 427ms	remaining: 121ms
78:	learn: 14.6438207	total: 432ms	remaining: 115ms
79:	learn: 14.5350651	total: 437ms	remaining: 109ms
80:	learn: 14.4301800	total: 442ms	remaining: 104ms
81:	learn: 14.3716251	total: 447ms	remaining: 98.2ms
82:	learn: 14.3127586	total: 452ms	remaining: 92.5ms
83:	learn: 14.2685086	total: 457ms	remaining: 87ms
84:	learn: 14.1936111	total: 461ms	remaining: 81.4ms
85:	learn: 14.1488261	total: 466ms	remaining: 75.9ms
86:	learn: 14.0654602	total: 471ms	remaining: 70.4ms
87:	learn: 14.0026195	total: 476ms	remaining: 64.9ms
88:	learn: 13.9498697	total: 481ms	remaining: 59.4ms
89:	learn: 13.9002477	total: 485ms	remaining: 53.9ms
90:	learn: 13.8429017	total: 490ms	remaining: 48.5ms
91:	learn: 13.7892130	total: 495ms	remaining: 43ms
92:	learn: 13.7122418	total: 500ms	remaining: 37.6ms
93:	learn: 13.6752324	total: 505ms	remaining: 32.2ms
94:	learn: 13.6186680	total: 510ms	remaining: 26.8ms
95:	learn: 13.5578384	total: 515ms	remaining: 21.5ms
96:	learn: 13.5028120	total: 520ms	remaining: 16.1ms
97:	learn: 13.4306895	total: 525ms	remaining: 10.7ms
98:	learn: 13.3955813	total: 531ms	remaining: 5.36ms
99:	learn: 13.3380095	total: 539ms	remaining: 0us
0:	learn: 42.9675374	total: 6.54ms	remaining: 647ms
1:	learn: 42.2542078	total: 12.1ms	remaining: 592ms
2:	learn: 41.5532166	total: 17.8ms	remaining: 576ms
3:	learn: 40.7812113	total: 22.9ms	remaining: 551ms
4:	learn: 39.8819601	total: 28.9ms	remaining: 549ms
5:	learn: 39.0997229	total: 31.3ms	remaining: 491ms
6:	learn: 38.2185623	total: 36.6ms	remaining: 487ms
7:	learn: 37.5465645	total: 41.4ms	remaining: 476ms
8:	learn: 36.8449555	total: 46.2ms	remaining: 467ms
9:	learn: 36.0912815	total: 51ms	remaining: 459ms
10:	learn: 35.5776470	total: 55.8ms	remaining: 451ms
11:	learn: 34.7845329	total: 60.3ms	remaining: 442ms
12:	learn: 34.1574031	total: 65.2ms	remaining: 436ms
13:	learn: 33.4950652	total: 70.1ms	remaining: 431ms
14:	learn: 32.9343881	total: 75.1ms	remaining: 426ms
15:	learn: 32.4356238	total: 80ms	remaining: 420ms
16:	learn: 31.8370592	total: 84.7ms	remaining: 414ms
17:	learn: 31.2122644	total: 89.5ms	remaining: 408ms
18:	learn: 30.7195190	total: 94.2ms	remaining: 401ms
19:	learn: 30.1548478	total: 99ms	remaining: 396ms
20:	learn: 29.6521001	total: 102ms	remaining: 384ms
21:	learn: 29.1746988	total: 107ms	remaining: 378ms
22:	learn: 28.6492690	total: 111ms	remaining: 372ms
23:	learn: 28.1958339	total: 117ms	remaining: 369ms
24:	learn: 27.9126674	total: 122ms	remaining: 365ms
25:	learn: 27.5059508	total: 126ms	remaining: 360ms
26:	learn: 27.0869176	total: 132ms	remaining: 356ms
27:	learn: 26.6545277	total: 137ms	remaining: 352ms
28:	learn: 26.2388575	total: 142ms	remaining: 347ms
29:	learn: 25.8957708	total: 147ms	remaining: 343ms
30:	learn: 25.5045901	total: 152ms	remaining: 339ms
31:	learn: 25.2559530	total: 159ms	remaining: 339ms
32:	learn: 24.9012566	total: 168ms	remaining: 340ms
33:	learn: 24.5601820	total: 176ms	remaining: 341ms
34:	learn: 24.2407285	total: 182ms	remaining: 338ms
35:	learn: 23.9481769	total: 188ms	remaining: 334ms
36:	learn: 23.6746994	total: 193ms	remaining: 329ms
37:	learn: 23.4470352	total: 198ms	remaining: 324ms
38:	learn: 23.1678305	total: 203ms	remaining: 317ms
39:	learn: 22.9660692	total: 208ms	remaining: 312ms
40:	learn: 22.7102548	total: 213ms	remaining: 307ms
41:	learn: 22.5152447	total: 218ms	remaining: 301ms
42:	learn: 22.2967100	total: 223ms	remaining: 296ms
43:	learn: 22.0869517	total: 228ms	remaining: 290ms
44:	learn: 21.8556497	total: 233ms	remaining: 284ms
45:	learn: 21.7036804	total: 237ms	remaining: 279ms
46:	learn: 21.4792011	total: 242ms	remaining: 273ms
47:	learn: 21.2830384	total: 247ms	remaining: 267ms
48:	learn: 21.0771837	total: 251ms	remaining: 262ms
49:	learn: 20.8824468	total: 256ms	remaining: 256ms
50:	learn: 20.7250875	total: 261ms	remaining: 251ms
51:	learn: 20.5564423	total: 266ms	remaining: 246ms
52:	learn: 20.4067403	total: 271ms	remaining: 240ms
53:	learn: 20.2674808	total: 276ms	remaining: 235ms
54:	learn: 20.1394249	total: 281ms	remaining: 230ms
55:	learn: 19.9748016	total: 285ms	remaining: 224ms
56:	learn: 19.8159522	total: 290ms	remaining: 219ms
57:	learn: 19.6811073	total: 295ms	remaining: 214ms
58:	learn: 19.5083232	total: 300ms	remaining: 208ms
59:	learn: 19.3949390	total: 302ms	remaining: 201ms
60:	learn: 19.2485728	total: 306ms	remaining: 196ms
61:	learn: 19.1255523	total: 311ms	remaining: 191ms
62:	learn: 18.9423320	total: 316ms	remaining: 186ms
63:	learn: 18.7794545	total: 321ms	remaining: 180ms
64:	learn: 18.6339033	total: 325ms	remaining: 175ms
65:	learn: 18.5188724	total: 331ms	remaining: 170ms
66:	learn: 18.3398412	total: 336ms	remaining: 165ms
67:	learn: 18.2873427	total: 341ms	remaining: 160ms
68:	learn: 18.1287092	total: 346ms	remaining: 155ms
69:	learn: 18.0163474	total: 351ms	remaining: 150ms
70:	learn: 17.9428395	total: 356ms	remaining: 146ms
71:	learn: 17.7906087	total: 366ms	remaining: 142ms
72:	learn: 17.6121088	total: 377ms	remaining: 139ms
73:	learn: 17.5136572	total: 384ms	remaining: 135ms
74:	learn: 17.3837993	total: 392ms	remaining: 131ms
75:	learn: 17.3015647	total: 398ms	remaining: 126ms
76:	learn: 17.1991252	total: 404ms	remaining: 121ms
77:	learn: 17.0854777	total: 410ms	remaining: 116ms
78:	learn: 17.0308269	total: 415ms	remaining: 110ms
79:	learn: 16.9754807	total: 421ms	remaining: 105ms
80:	learn: 16.9174907	total: 427ms	remaining: 100ms
81:	learn: 16.7962603	total: 433ms	remaining: 95ms
82:	learn: 16.6685446	total: 438ms	remaining: 89.7ms
83:	learn: 16.5812672	total: 443ms	remaining: 84.4ms
84:	learn: 16.4896026	total: 449ms	remaining: 79.3ms
85:	learn: 16.4023414	total: 455ms	remaining: 74.1ms
86:	learn: 16.3093718	total: 460ms	remaining: 68.7ms
87:	learn: 16.2409040	total: 465ms	remaining: 63.4ms
88:	learn: 16.1616213	total: 470ms	remaining: 58.1ms
89:	learn: 16.0825203	total: 475ms	remaining: 52.8ms
90:	learn: 16.0204931	total: 480ms	remaining: 47.5ms
91:	learn: 15.9741267	total: 485ms	remaining: 42.2ms
92:	learn: 15.9413725	total: 490ms	remaining: 36.9ms
93:	learn: 15.8762295	total: 495ms	remaining: 31.6ms
94:	learn: 15.8165812	total: 501ms	remaining: 26.4ms
95:	learn: 15.7244343	total: 506ms	remaining: 21.1ms
96:	learn: 15.6537033	total: 511ms	remaining: 15.8ms
97:	learn: 15.6052320	total: 517ms	remaining: 10.5ms
98:	learn: 15.5434930	total: 522ms	remaining: 5.27ms
99:	learn: 15.4452106	total: 527ms	remaining: 0us
0:	learn: 46.5387280	total: 9.49ms	remaining: 940ms
1:	learn: 45.8605074	total: 18.2ms	remaining: 893ms
2:	learn: 45.2237152	total: 25.3ms	remaining: 818ms
3:	learn: 44.4158454	total: 30.9ms	remaining: 742ms
4:	learn: 43.7177384	total: 37.1ms	remaining: 705ms
5:	learn: 42.9896372	total: 42.6ms	remaining: 667ms
6:	learn: 42.3639431	total: 47.7ms	remaining: 634ms
7:	learn: 41.6648406	total: 52.6ms	remaining: 605ms
8:	learn: 41.0681442	total: 57.3ms	remaining: 580ms
9:	learn: 40.4478745	total: 62ms	remaining: 558ms
10:	learn: 40.0398470	total: 66.9ms	remaining: 541ms
11:	learn: 39.3300888	total: 71.8ms	remaining: 526ms
12:	learn: 38.9198991	total: 76.5ms	remaining: 512ms
13:	learn: 38.4022666	total: 81.1ms	remaining: 498ms
14:	learn: 37.9124629	total: 86.2ms	remaining: 489ms
15:	learn: 37.3846174	total: 91ms	remaining: 478ms
16:	learn: 36.8502348	total: 95.9ms	remaining: 468ms
17:	learn: 36.5079755	total: 101ms	remaining: 460ms
18:	learn: 36.1239339	total: 106ms	remaining: 451ms
19:	learn: 35.8388688	total: 111ms	remaining: 442ms
20:	learn: 35.4915710	total: 115ms	remaining: 434ms
21:	learn: 34.9483623	total: 121ms	remaining: 428ms
22:	learn: 34.6033866	total: 126ms	remaining: 421ms
23:	learn: 34.1483341	total: 131ms	remaining: 415ms
24:	learn: 33.7626484	total: 136ms	remaining: 409ms
25:	learn: 33.4160820	total: 141ms	remaining: 403ms
26:	learn: 33.0421483	total: 146ms	remaining: 396ms
27:	learn: 32.6573469	total: 151ms	remaining: 388ms
28:	learn: 32.2672417	total: 156ms	remaining: 382ms
29:	learn: 31.8257441	total: 161ms	remaining: 376ms
30:	learn: 31.3394923	total: 166ms	remaining: 370ms
31:	learn: 30.9472894	total: 171ms	remaining: 363ms
32:	learn: 30.6961423	total: 176ms	remaining: 357ms
33:	learn: 30.4670615	total: 182ms	remaining: 352ms
34:	learn: 30.1495001	total: 187ms	remaining: 347ms
35:	learn: 29.8071763	total: 192ms	remaining: 341ms
36:	learn: 29.5255984	total: 197ms	remaining: 335ms
37:	learn: 29.2236758	total: 202ms	remaining: 329ms
38:	learn: 28.9199699	total: 211ms	remaining: 329ms
39:	learn: 28.7003989	total: 219ms	remaining: 328ms
40:	learn: 28.4681160	total: 230ms	remaining: 331ms
41:	learn: 28.2692668	total: 238ms	remaining: 329ms
42:	learn: 27.9327254	total: 244ms	remaining: 324ms
43:	learn: 27.7193597	total: 250ms	remaining: 318ms
44:	learn: 27.4061006	total: 256ms	remaining: 312ms
45:	learn: 27.1840910	total: 261ms	remaining: 307ms
46:	learn: 26.8943816	total: 267ms	remaining: 301ms
47:	learn: 26.6576617	total: 273ms	remaining: 295ms
48:	learn: 26.3230094	total: 278ms	remaining: 290ms
49:	learn: 26.0488483	total: 284ms	remaining: 284ms
50:	learn: 25.7795537	total: 290ms	remaining: 278ms
51:	learn: 25.6103781	total: 295ms	remaining: 272ms
52:	learn: 25.4107383	total: 301ms	remaining: 267ms
53:	learn: 25.1757211	total: 307ms	remaining: 261ms
54:	learn: 24.8949842	total: 311ms	remaining: 255ms
55:	learn: 24.7028694	total: 316ms	remaining: 248ms
56:	learn: 24.4033555	total: 321ms	remaining: 242ms
57:	learn: 24.2109268	total: 325ms	remaining: 236ms
58:	learn: 24.0697623	total: 330ms	remaining: 229ms
59:	learn: 23.8291672	total: 335ms	remaining: 223ms
60:	learn: 23.5972471	total: 340ms	remaining: 218ms
61:	learn: 23.4241182	total: 345ms	remaining: 212ms
62:	learn: 23.2617022	total: 350ms	remaining: 205ms
63:	learn: 23.0329448	total: 355ms	remaining: 199ms
64:	learn: 22.9108081	total: 359ms	remaining: 194ms
65:	learn: 22.8001962	total: 364ms	remaining: 188ms
66:	learn: 22.6861907	total: 369ms	remaining: 182ms
67:	learn: 22.5152895	total: 374ms	remaining: 176ms
68:	learn: 22.3734214	total: 379ms	remaining: 170ms
69:	learn: 22.1840754	total: 384ms	remaining: 165ms
70:	learn: 22.0732908	total: 389ms	remaining: 159ms
71:	learn: 21.8880456	total: 394ms	remaining: 153ms
72:	learn: 21.7838784	total: 399ms	remaining: 148ms
73:	learn: 21.5532885	total: 408ms	remaining: 143ms
74:	learn: 21.3998735	total: 417ms	remaining: 139ms
75:	learn: 21.2699824	total: 422ms	remaining: 133ms
76:	learn: 21.1077652	total: 429ms	remaining: 128ms
77:	learn: 20.9759102	total: 434ms	remaining: 122ms
78:	learn: 20.7531342	total: 440ms	remaining: 117ms
79:	learn: 20.6729631	total: 445ms	remaining: 111ms
80:	learn: 20.4903474	total: 450ms	remaining: 106ms
81:	learn: 20.3708622	total: 455ms	remaining: 99.9ms
82:	learn: 20.2627857	total: 460ms	remaining: 94.2ms
83:	learn: 20.1335464	total: 465ms	remaining: 88.5ms
84:	learn: 20.0100864	total: 469ms	remaining: 82.8ms
85:	learn: 19.9374357	total: 474ms	remaining: 77.1ms
86:	learn: 19.8383097	total: 479ms	remaining: 71.5ms
87:	learn: 19.7804443	total: 484ms	remaining: 65.9ms
88:	learn: 19.7225631	total: 488ms	remaining: 60.3ms
89:	learn: 19.5851849	total: 493ms	remaining: 54.8ms
90:	learn: 19.5115923	total: 498ms	remaining: 49.3ms
91:	learn: 19.3986485	total: 503ms	remaining: 43.7ms
92:	learn: 19.2465728	total: 508ms	remaining: 38.2ms
93:	learn: 19.2033796	total: 512ms	remaining: 32.7ms
94:	learn: 19.1234096	total: 517ms	remaining: 27.2ms
95:	learn: 19.0080161	total: 522ms	remaining: 21.7ms
96:	learn: 18.9048698	total: 526ms	remaining: 16.3ms
97:	learn: 18.7901500	total: 531ms	remaining: 10.8ms
98:	learn: 18.6759882	total: 536ms	remaining: 5.42ms
99:	learn: 18.6254590	total: 541ms	remaining: 0us
0:	learn: 46.0359105	total: 8.59ms	remaining: 850ms
1:	learn: 45.4503059	total: 16.7ms	remaining: 820ms
2:	learn: 44.6478680	total: 23.9ms	remaining: 774ms
3:	learn: 43.7932387	total: 29.9ms	remaining: 717ms
4:	learn: 43.2236036	total: 35.4ms	remaining: 672ms
5:	learn: 42.4339181	total: 42.4ms	remaining: 665ms
6:	learn: 41.8906461	total: 48.3ms	remaining: 642ms
7:	learn: 41.2248707	total: 53.7ms	remaining: 618ms
8:	learn: 40.5934570	total: 59.7ms	remaining: 603ms
9:	learn: 39.9204661	total: 65.7ms	remaining: 592ms
10:	learn: 39.3972458	total: 71.4ms	remaining: 578ms
11:	learn: 38.9220493	total: 77.1ms	remaining: 566ms
12:	learn: 38.2358406	total: 82.9ms	remaining: 555ms
13:	learn: 37.7089336	total: 88.5ms	remaining: 544ms
14:	learn: 37.3714255	total: 94.1ms	remaining: 533ms
15:	learn: 36.8098537	total: 99.9ms	remaining: 525ms
16:	learn: 36.2818695	total: 105ms	remaining: 515ms
17:	learn: 35.8807734	total: 110ms	remaining: 503ms
18:	learn: 35.3850720	total: 115ms	remaining: 492ms
19:	learn: 35.0622365	total: 120ms	remaining: 482ms
20:	learn: 34.7088655	total: 126ms	remaining: 474ms
21:	learn: 34.2869861	total: 132ms	remaining: 468ms
22:	learn: 33.9798756	total: 138ms	remaining: 462ms
23:	learn: 33.6933850	total: 143ms	remaining: 452ms
24:	learn: 33.3542725	total: 147ms	remaining: 442ms
25:	learn: 33.1531104	total: 152ms	remaining: 434ms
26:	learn: 32.7581499	total: 157ms	remaining: 425ms
27:	learn: 32.4953289	total: 162ms	remaining: 417ms
28:	learn: 32.1636511	total: 167ms	remaining: 409ms
29:	learn: 31.7179908	total: 172ms	remaining: 400ms
30:	learn: 31.2828971	total: 176ms	remaining: 393ms
31:	learn: 30.8954632	total: 197ms	remaining: 419ms
32:	learn: 30.6156466	total: 202ms	remaining: 411ms
33:	learn: 30.4325331	total: 207ms	remaining: 402ms
34:	learn: 30.1680270	total: 212ms	remaining: 394ms
35:	learn: 29.8372162	total: 217ms	remaining: 385ms
36:	learn: 29.5018241	total: 222ms	remaining: 378ms
37:	learn: 29.2660228	total: 226ms	remaining: 370ms
38:	learn: 28.9172883	total: 232ms	remaining: 362ms
39:	learn: 28.7004790	total: 237ms	remaining: 355ms
40:	learn: 28.5188438	total: 242ms	remaining: 348ms
41:	learn: 28.3064887	total: 247ms	remaining: 341ms
42:	learn: 27.9584462	total: 252ms	remaining: 334ms
43:	learn: 27.6654603	total: 258ms	remaining: 328ms
44:	learn: 27.3698139	total: 267ms	remaining: 326ms
45:	learn: 27.1825629	total: 275ms	remaining: 323ms
46:	learn: 26.9938719	total: 282ms	remaining: 317ms
47:	learn: 26.7385850	total: 288ms	remaining: 312ms
48:	learn: 26.5055251	total: 294ms	remaining: 306ms
49:	learn: 26.3264840	total: 299ms	remaining: 299ms
50:	learn: 26.1314307	total: 304ms	remaining: 292ms
51:	learn: 25.9514770	total: 309ms	remaining: 285ms
52:	learn: 25.7272663	total: 313ms	remaining: 278ms
53:	learn: 25.4554234	total: 318ms	remaining: 271ms
54:	learn: 25.2133674	total: 323ms	remaining: 264ms
55:	learn: 24.9612149	total: 328ms	remaining: 258ms
56:	learn: 24.6788780	total: 334ms	remaining: 252ms
57:	learn: 24.4504703	total: 339ms	remaining: 245ms
58:	learn: 24.3261542	total: 344ms	remaining: 239ms
59:	learn: 24.1217621	total: 350ms	remaining: 233ms
60:	learn: 23.9495725	total: 355ms	remaining: 227ms
61:	learn: 23.7848565	total: 360ms	remaining: 221ms
62:	learn: 23.6627081	total: 365ms	remaining: 214ms
63:	learn: 23.4390407	total: 370ms	remaining: 208ms
64:	learn: 23.2556312	total: 374ms	remaining: 201ms
65:	learn: 23.1796337	total: 379ms	remaining: 195ms
66:	learn: 23.0431987	total: 384ms	remaining: 189ms
67:	learn: 22.9300366	total: 389ms	remaining: 183ms
68:	learn: 22.8321895	total: 393ms	remaining: 177ms
69:	learn: 22.7825840	total: 399ms	remaining: 171ms
70:	learn: 22.6907764	total: 403ms	remaining: 165ms
71:	learn: 22.5080460	total: 408ms	remaining: 159ms
72:	learn: 22.4053282	total: 413ms	remaining: 153ms
73:	learn: 22.2698085	total: 418ms	remaining: 147ms
74:	learn: 22.0951825	total: 423ms	remaining: 141ms
75:	learn: 21.9933994	total: 427ms	remaining: 135ms
76:	learn: 21.8043413	total: 433ms	remaining: 129ms
77:	learn: 21.7259032	total: 438ms	remaining: 124ms
78:	learn: 21.5625358	total: 443ms	remaining: 118ms
79:	learn: 21.4316837	total: 448ms	remaining: 112ms
80:	learn: 21.2270985	total: 453ms	remaining: 106ms
81:	learn: 21.1248573	total: 462ms	remaining: 101ms
82:	learn: 21.0879584	total: 470ms	remaining: 96.3ms
83:	learn: 20.9810177	total: 481ms	remaining: 91.6ms
84:	learn: 20.8986744	total: 489ms	remaining: 86.3ms
85:	learn: 20.8427245	total: 495ms	remaining: 80.6ms
86:	learn: 20.7158681	total: 501ms	remaining: 74.9ms
87:	learn: 20.6055502	total: 507ms	remaining: 69.1ms
88:	learn: 20.5302059	total: 513ms	remaining: 63.4ms
89:	learn: 20.3936827	total: 519ms	remaining: 57.7ms
90:	learn: 20.2756993	total: 525ms	remaining: 51.9ms
91:	learn: 20.1882826	total: 530ms	remaining: 46.1ms
92:	learn: 20.0346875	total: 536ms	remaining: 40.4ms
93:	learn: 19.9798652	total: 541ms	remaining: 34.6ms
94:	learn: 19.9020384	total: 546ms	remaining: 28.8ms
95:	learn: 19.8463755	total: 553ms	remaining: 23ms
96:	learn: 19.7426458	total: 559ms	remaining: 17.3ms
97:	learn: 19.6728655	total: 563ms	remaining: 11.5ms
98:	learn: 19.6355104	total: 568ms	remaining: 5.74ms
99:	learn: 19.6074086	total: 573ms	remaining: 0us
0:	learn: 46.7817285	total: 5.48ms	remaining: 543ms
1:	learn: 45.9551634	total: 10.3ms	remaining: 503ms
2:	learn: 45.0274369	total: 15.3ms	remaining: 495ms
3:	learn: 44.5000950	total: 20.4ms	remaining: 490ms
4:	learn: 43.8963632	total: 26ms	remaining: 493ms
5:	learn: 43.2314124	total: 31.3ms	remaining: 491ms
6:	learn: 42.5780140	total: 36.5ms	remaining: 485ms
7:	learn: 41.9033077	total: 43.3ms	remaining: 498ms
8:	learn: 41.3161907	total: 51.6ms	remaining: 522ms
9:	learn: 40.7747000	total: 59.4ms	remaining: 535ms
10:	learn: 40.2728122	total: 65.7ms	remaining: 531ms
11:	learn: 39.7786608	total: 72ms	remaining: 528ms
12:	learn: 39.0812090	total: 77.5ms	remaining: 518ms
13:	learn: 38.6205762	total: 82.2ms	remaining: 505ms
14:	learn: 38.2894236	total: 86.8ms	remaining: 492ms
15:	learn: 37.6906364	total: 91.7ms	remaining: 482ms
16:	learn: 37.3014849	total: 96.4ms	remaining: 471ms
17:	learn: 36.9268494	total: 102ms	remaining: 463ms
18:	learn: 36.6348717	total: 107ms	remaining: 455ms
19:	learn: 36.1567831	total: 111ms	remaining: 446ms
20:	learn: 35.8080754	total: 116ms	remaining: 437ms
21:	learn: 35.4288913	total: 121ms	remaining: 428ms
22:	learn: 35.0910168	total: 125ms	remaining: 420ms
23:	learn: 34.7483277	total: 130ms	remaining: 412ms
24:	learn: 34.5077203	total: 135ms	remaining: 405ms
25:	learn: 34.1830247	total: 140ms	remaining: 397ms
26:	learn: 33.7943837	total: 144ms	remaining: 390ms
27:	learn: 33.3736582	total: 149ms	remaining: 383ms
28:	learn: 32.9133996	total: 154ms	remaining: 377ms
29:	learn: 32.4361653	total: 159ms	remaining: 370ms
30:	learn: 31.9630085	total: 164ms	remaining: 365ms
31:	learn: 31.5994894	total: 169ms	remaining: 358ms
32:	learn: 31.3120059	total: 173ms	remaining: 352ms
33:	learn: 31.0991187	total: 178ms	remaining: 345ms
34:	learn: 30.8055118	total: 183ms	remaining: 340ms
35:	learn: 30.5197359	total: 188ms	remaining: 334ms
36:	learn: 30.1975315	total: 192ms	remaining: 328ms
37:	learn: 29.9797615	total: 197ms	remaining: 322ms
38:	learn: 29.6874864	total: 202ms	remaining: 316ms
39:	learn: 29.4139907	total: 207ms	remaining: 310ms
40:	learn: 29.0472151	total: 212ms	remaining: 305ms
41:	learn: 28.8356285	total: 217ms	remaining: 299ms
42:	learn: 28.5099349	total: 221ms	remaining: 293ms
43:	learn: 28.2009716	total: 226ms	remaining: 288ms
44:	learn: 27.8947534	total: 231ms	remaining: 282ms
45:	learn: 27.6149698	total: 236ms	remaining: 277ms
46:	learn: 27.4780860	total: 242ms	remaining: 272ms
47:	learn: 27.2859119	total: 247ms	remaining: 267ms
48:	learn: 27.0572191	total: 252ms	remaining: 262ms
49:	learn: 26.8916263	total: 262ms	remaining: 262ms
50:	learn: 26.6791967	total: 276ms	remaining: 265ms
51:	learn: 26.4917307	total: 284ms	remaining: 262ms
52:	learn: 26.2957036	total: 290ms	remaining: 257ms
53:	learn: 26.1116543	total: 295ms	remaining: 251ms
54:	learn: 25.8593319	total: 301ms	remaining: 246ms
55:	learn: 25.6957296	total: 307ms	remaining: 241ms
56:	learn: 25.5065213	total: 312ms	remaining: 236ms
57:	learn: 25.3525337	total: 318ms	remaining: 231ms
58:	learn: 25.2197494	total: 324ms	remaining: 225ms
59:	learn: 25.0583799	total: 329ms	remaining: 219ms
60:	learn: 24.8432659	total: 334ms	remaining: 214ms
61:	learn: 24.6585337	total: 339ms	remaining: 208ms
62:	learn: 24.5382571	total: 344ms	remaining: 202ms
63:	learn: 24.3596337	total: 350ms	remaining: 197ms
64:	learn: 24.2009033	total: 356ms	remaining: 192ms
65:	learn: 24.0964080	total: 361ms	remaining: 186ms
66:	learn: 23.9765920	total: 366ms	remaining: 180ms
67:	learn: 23.8638384	total: 370ms	remaining: 174ms
68:	learn: 23.7381861	total: 375ms	remaining: 169ms
69:	learn: 23.5620129	total: 380ms	remaining: 163ms
70:	learn: 23.4494830	total: 384ms	remaining: 157ms
71:	learn: 23.3095806	total: 389ms	remaining: 151ms
72:	learn: 23.1441767	total: 394ms	remaining: 146ms
73:	learn: 22.9983446	total: 399ms	remaining: 140ms
74:	learn: 22.8464764	total: 404ms	remaining: 135ms
75:	learn: 22.7606423	total: 408ms	remaining: 129ms
76:	learn: 22.6095905	total: 414ms	remaining: 124ms
77:	learn: 22.4430506	total: 418ms	remaining: 118ms
78:	learn: 22.2925872	total: 423ms	remaining: 113ms
79:	learn: 22.1806286	total: 428ms	remaining: 107ms
80:	learn: 22.0070525	total: 434ms	remaining: 102ms
81:	learn: 21.9114201	total: 439ms	remaining: 96.3ms
82:	learn: 21.7742884	total: 444ms	remaining: 90.9ms
83:	learn: 21.6372857	total: 449ms	remaining: 85.5ms
84:	learn: 21.5380397	total: 454ms	remaining: 80.1ms
85:	learn: 21.4730146	total: 464ms	remaining: 75.6ms
86:	learn: 21.3236516	total: 472ms	remaining: 70.5ms
87:	learn: 21.2512101	total: 478ms	remaining: 65.2ms
88:	learn: 21.2192883	total: 484ms	remaining: 59.8ms
89:	learn: 21.0457926	total: 489ms	remaining: 54.4ms
90:	learn: 20.9986980	total: 494ms	remaining: 48.9ms
91:	learn: 20.9040032	total: 499ms	remaining: 43.4ms
92:	learn: 20.7178547	total: 503ms	remaining: 37.9ms
93:	learn: 20.6535030	total: 508ms	remaining: 32.4ms
94:	learn: 20.5641982	total: 513ms	remaining: 27ms
95:	learn: 20.5355409	total: 517ms	remaining: 21.6ms
96:	learn: 20.4496493	total: 522ms	remaining: 16.2ms
97:	learn: 20.3579862	total: 527ms	remaining: 10.8ms
98:	learn: 20.2442476	total: 532ms	remaining: 5.37ms
99:	learn: 20.1075813	total: 537ms	remaining: 0us
0:	learn: 27.6737479	total: 21.4ms	remaining: 6.41s
1:	learn: 27.3204154	total: 43.5ms	remaining: 6.48s
2:	learn: 26.9091890	total: 64.1ms	remaining: 6.34s
3:	learn: 26.4875027	total: 86.1ms	remaining: 6.37s
4:	learn: 26.1185303	total: 88.5ms	remaining: 5.22s
5:	learn: 25.8552625	total: 116ms	remaining: 5.69s
6:	learn: 25.5259340	total: 142ms	remaining: 5.96s
7:	learn: 25.1594330	total: 166ms	remaining: 6.04s
8:	learn: 24.8131787	total: 188ms	remaining: 6.07s
9:	learn: 24.5107101	total: 210ms	remaining: 6.1s
10:	learn: 24.1382533	total: 229ms	remaining: 6.03s
11:	learn: 23.9059068	total: 250ms	remaining: 5.99s
12:	learn: 23.5820314	total: 269ms	remaining: 5.95s
13:	learn: 23.2566481	total: 291ms	remaining: 5.94s
14:	learn: 22.9720100	total: 318ms	remaining: 6.04s
15:	learn: 22.6458045	total: 341ms	remaining: 6.06s
16:	learn: 22.3310792	total: 364ms	remaining: 6.05s
17:	learn: 22.0614254	total: 386ms	remaining: 6.05s
18:	learn: 21.8674093	total: 408ms	remaining: 6.04s
19:	learn: 21.6777228	total: 429ms	remaining: 6.01s
20:	learn: 21.4758843	total: 452ms	remaining: 6s
21:	learn: 21.2015722	total: 474ms	remaining: 5.99s
22:	learn: 20.9741180	total: 497ms	remaining: 5.99s
23:	learn: 20.8103315	total: 520ms	remaining: 5.98s
24:	learn: 20.6059519	total: 549ms	remaining: 6.04s
25:	learn: 20.3003482	total: 574ms	remaining: 6.05s
26:	learn: 20.1047051	total: 598ms	remaining: 6.05s
27:	learn: 19.9117545	total: 621ms	remaining: 6.03s
28:	learn: 19.7508802	total: 645ms	remaining: 6.03s
29:	learn: 19.5995500	total: 667ms	remaining: 6.01s
30:	learn: 19.4265011	total: 690ms	remaining: 5.99s
31:	learn: 19.2507253	total: 720ms	remaining: 6.03s
32:	learn: 19.0780638	total: 744ms	remaining: 6.02s
33:	learn: 18.8739495	total: 766ms	remaining: 5.99s
34:	learn: 18.6951687	total: 786ms	remaining: 5.95s
35:	learn: 18.5423419	total: 805ms	remaining: 5.9s
36:	learn: 18.3650169	total: 824ms	remaining: 5.86s
37:	learn: 18.1741271	total: 844ms	remaining: 5.82s
38:	learn: 18.0512035	total: 864ms	remaining: 5.78s
39:	learn: 17.9045476	total: 884ms	remaining: 5.75s
40:	learn: 17.7669779	total: 904ms	remaining: 5.71s
41:	learn: 17.6440484	total: 926ms	remaining: 5.69s
42:	learn: 17.4832065	total: 948ms	remaining: 5.66s
43:	learn: 17.3307814	total: 981ms	remaining: 5.71s
44:	learn: 17.1968371	total: 1s	remaining: 5.69s
45:	learn: 17.0551367	total: 1.03s	remaining: 5.67s
46:	learn: 16.9663187	total: 1.05s	remaining: 5.65s
47:	learn: 16.8379611	total: 1.07s	remaining: 5.62s
48:	learn: 16.7219020	total: 1.09s	remaining: 5.58s
49:	learn: 16.6155465	total: 1.11s	remaining: 5.56s
50:	learn: 16.5139205	total: 1.13s	remaining: 5.53s
51:	learn: 16.3531147	total: 1.14s	remaining: 5.44s
52:	learn: 16.2763831	total: 1.16s	remaining: 5.42s
53:	learn: 16.1694133	total: 1.19s	remaining: 5.42s
54:	learn: 16.0589004	total: 1.21s	remaining: 5.4s
55:	learn: 15.9660704	total: 1.23s	remaining: 5.38s
56:	learn: 15.8765659	total: 1.25s	remaining: 5.34s
57:	learn: 15.7724924	total: 1.27s	remaining: 5.32s
58:	learn: 15.6865252	total: 1.29s	remaining: 5.29s
59:	learn: 15.6055417	total: 1.31s	remaining: 5.26s
60:	learn: 15.5264778	total: 1.33s	remaining: 5.23s
61:	learn: 15.4370145	total: 1.36s	remaining: 5.21s
62:	learn: 15.3562945	total: 1.39s	remaining: 5.23s
63:	learn: 15.2817484	total: 1.42s	remaining: 5.22s
64:	learn: 15.1941732	total: 1.44s	remaining: 5.2s
65:	learn: 15.1049991	total: 1.46s	remaining: 5.18s
66:	learn: 15.0359663	total: 1.48s	remaining: 5.16s
67:	learn: 14.9351417	total: 1.51s	remaining: 5.14s
68:	learn: 14.8495497	total: 1.53s	remaining: 5.12s
69:	learn: 14.7623093	total: 1.55s	remaining: 5.09s
70:	learn: 14.6771574	total: 1.57s	remaining: 5.07s
71:	learn: 14.5978140	total: 1.6s	remaining: 5.07s
72:	learn: 14.5375886	total: 1.62s	remaining: 5.05s
73:	learn: 14.4649353	total: 1.64s	remaining: 5.02s
74:	learn: 14.4009644	total: 1.67s	remaining: 5s
75:	learn: 14.3287275	total: 1.69s	remaining: 4.98s
76:	learn: 14.2318571	total: 1.71s	remaining: 4.96s
77:	learn: 14.1625701	total: 1.73s	remaining: 4.93s
78:	learn: 14.0644282	total: 1.75s	remaining: 4.91s
79:	learn: 13.9762883	total: 1.78s	remaining: 4.89s
80:	learn: 13.9042920	total: 1.81s	remaining: 4.9s
81:	learn: 13.8176535	total: 1.84s	remaining: 4.89s
82:	learn: 13.6910849	total: 1.86s	remaining: 4.87s
83:	learn: 13.5737570	total: 1.88s	remaining: 4.84s
84:	learn: 13.5049845	total: 1.91s	remaining: 4.82s
85:	learn: 13.4341145	total: 1.93s	remaining: 4.8s
86:	learn: 13.3796196	total: 1.95s	remaining: 4.78s
87:	learn: 13.3024352	total: 1.97s	remaining: 4.75s
88:	learn: 13.2435566	total: 2s	remaining: 4.73s
89:	learn: 13.1910369	total: 2.02s	remaining: 4.71s
90:	learn: 13.1471565	total: 2.05s	remaining: 4.7s
91:	learn: 13.0611063	total: 2.07s	remaining: 4.68s
92:	learn: 12.9909112	total: 2.09s	remaining: 4.65s
93:	learn: 12.9355316	total: 2.11s	remaining: 4.63s
94:	learn: 12.8561480	total: 2.14s	remaining: 4.61s
95:	learn: 12.7929803	total: 2.16s	remaining: 4.59s
96:	learn: 12.7262412	total: 2.18s	remaining: 4.56s
97:	learn: 12.6739210	total: 2.2s	remaining: 4.54s
98:	learn: 12.6265593	total: 2.23s	remaining: 4.52s
99:	learn: 12.5594247	total: 2.26s	remaining: 4.52s
100:	learn: 12.4986691	total: 2.29s	remaining: 4.5s
101:	learn: 12.4471027	total: 2.31s	remaining: 4.48s
102:	learn: 12.3962782	total: 2.33s	remaining: 4.45s
103:	learn: 12.3424090	total: 2.35s	remaining: 4.43s
104:	learn: 12.2660971	total: 2.37s	remaining: 4.41s
105:	learn: 12.2042689	total: 2.4s	remaining: 4.38s
106:	learn: 12.1363044	total: 2.42s	remaining: 4.36s
107:	learn: 12.1022229	total: 2.44s	remaining: 4.34s
108:	learn: 12.0491052	total: 2.47s	remaining: 4.33s
109:	learn: 11.9900598	total: 2.49s	remaining: 4.31s
110:	learn: 11.9411055	total: 2.51s	remaining: 4.28s
111:	learn: 11.8782485	total: 2.54s	remaining: 4.26s
112:	learn: 11.8248797	total: 2.56s	remaining: 4.23s
113:	learn: 11.7750338	total: 2.58s	remaining: 4.21s
114:	learn: 11.7390791	total: 2.6s	remaining: 4.18s
115:	learn: 11.6795857	total: 2.62s	remaining: 4.16s
116:	learn: 11.5948258	total: 2.65s	remaining: 4.14s
117:	learn: 11.5598943	total: 2.67s	remaining: 4.12s
118:	learn: 11.4992434	total: 2.69s	remaining: 4.1s
119:	learn: 11.4491317	total: 2.72s	remaining: 4.08s
120:	learn: 11.3929630	total: 2.74s	remaining: 4.05s
121:	learn: 11.3373664	total: 2.76s	remaining: 4.03s
122:	learn: 11.2805890	total: 2.78s	remaining: 4s
123:	learn: 11.2341228	total: 2.81s	remaining: 3.98s
124:	learn: 11.1615505	total: 2.83s	remaining: 3.96s
125:	learn: 11.1024523	total: 2.85s	remaining: 3.94s
126:	learn: 11.0710084	total: 2.88s	remaining: 3.93s
127:	learn: 11.0251377	total: 2.91s	remaining: 3.91s
128:	learn: 10.9884605	total: 2.93s	remaining: 3.89s
129:	learn: 10.9584488	total: 2.96s	remaining: 3.87s
130:	learn: 10.8995848	total: 2.98s	remaining: 3.85s
131:	learn: 10.8549250	total: 3s	remaining: 3.82s
132:	learn: 10.8113067	total: 3.03s	remaining: 3.8s
133:	learn: 10.7553419	total: 3.05s	remaining: 3.78s
134:	learn: 10.7096544	total: 3.07s	remaining: 3.76s
135:	learn: 10.6757190	total: 3.11s	remaining: 3.75s
136:	learn: 10.6327685	total: 3.13s	remaining: 3.73s
137:	learn: 10.5902988	total: 3.16s	remaining: 3.71s
138:	learn: 10.5467376	total: 3.18s	remaining: 3.68s
139:	learn: 10.5163592	total: 3.2s	remaining: 3.66s
140:	learn: 10.4694138	total: 3.22s	remaining: 3.63s
141:	learn: 10.4359855	total: 3.24s	remaining: 3.61s
142:	learn: 10.4057439	total: 3.27s	remaining: 3.58s
143:	learn: 10.3729240	total: 3.29s	remaining: 3.56s
144:	learn: 10.3359301	total: 3.32s	remaining: 3.55s
145:	learn: 10.2697670	total: 3.34s	remaining: 3.52s
146:	learn: 10.2094154	total: 3.36s	remaining: 3.5s
147:	learn: 10.1600330	total: 3.38s	remaining: 3.48s
148:	learn: 10.1308425	total: 3.41s	remaining: 3.45s
149:	learn: 10.0855107	total: 3.43s	remaining: 3.43s
150:	learn: 10.0385460	total: 3.45s	remaining: 3.4s
151:	learn: 10.0087773	total: 3.47s	remaining: 3.38s
152:	learn: 9.9793744	total: 3.49s	remaining: 3.36s
153:	learn: 9.9525485	total: 3.52s	remaining: 3.34s
154:	learn: 9.9079941	total: 3.55s	remaining: 3.32s
155:	learn: 9.8778723	total: 3.57s	remaining: 3.29s
156:	learn: 9.8246060	total: 3.59s	remaining: 3.27s
157:	learn: 9.7894878	total: 3.61s	remaining: 3.25s
158:	learn: 9.7484967	total: 3.64s	remaining: 3.23s
159:	learn: 9.7248391	total: 3.66s	remaining: 3.2s
160:	learn: 9.7014264	total: 3.68s	remaining: 3.18s
161:	learn: 9.6583834	total: 3.7s	remaining: 3.15s
162:	learn: 9.6144299	total: 3.72s	remaining: 3.13s
163:	learn: 9.5794995	total: 3.75s	remaining: 3.11s
164:	learn: 9.5550633	total: 3.77s	remaining: 3.09s
165:	learn: 9.5026632	total: 3.79s	remaining: 3.06s
166:	learn: 9.4633969	total: 3.81s	remaining: 3.04s
167:	learn: 9.4104818	total: 3.83s	remaining: 3.01s
168:	learn: 9.3845831	total: 3.85s	remaining: 2.99s
169:	learn: 9.3337722	total: 3.88s	remaining: 2.97s
170:	learn: 9.2837197	total: 3.9s	remaining: 2.94s
171:	learn: 9.2466766	total: 3.92s	remaining: 2.92s
172:	learn: 9.2085127	total: 3.95s	remaining: 2.9s
173:	learn: 9.1694480	total: 3.98s	remaining: 2.88s
174:	learn: 9.1448907	total: 4s	remaining: 2.86s
175:	learn: 9.1013106	total: 4.03s	remaining: 2.84s
176:	learn: 9.0696815	total: 4.05s	remaining: 2.81s
177:	learn: 9.0279616	total: 4.07s	remaining: 2.79s
178:	learn: 9.0008978	total: 4.1s	remaining: 2.77s
179:	learn: 8.9449905	total: 4.12s	remaining: 2.75s
180:	learn: 8.9263735	total: 4.15s	remaining: 2.73s
181:	learn: 8.9082117	total: 4.17s	remaining: 2.71s
182:	learn: 8.8590211	total: 4.2s	remaining: 2.68s
183:	learn: 8.8398014	total: 4.22s	remaining: 2.66s
184:	learn: 8.7991374	total: 4.24s	remaining: 2.64s
185:	learn: 8.7574091	total: 4.26s	remaining: 2.61s
186:	learn: 8.7075149	total: 4.29s	remaining: 2.59s
187:	learn: 8.6651276	total: 4.31s	remaining: 2.57s
188:	learn: 8.6299124	total: 4.33s	remaining: 2.54s
189:	learn: 8.6039208	total: 4.36s	remaining: 2.52s
190:	learn: 8.5623097	total: 4.39s	remaining: 2.5s
191:	learn: 8.5109100	total: 4.41s	remaining: 2.48s
192:	learn: 8.4793653	total: 4.43s	remaining: 2.46s
193:	learn: 8.4481462	total: 4.46s	remaining: 2.44s
194:	learn: 8.4315766	total: 4.48s	remaining: 2.41s
195:	learn: 8.3834417	total: 4.5s	remaining: 2.39s
196:	learn: 8.3680774	total: 4.53s	remaining: 2.37s
197:	learn: 8.3496623	total: 4.55s	remaining: 2.34s
198:	learn: 8.3148580	total: 4.57s	remaining: 2.32s
199:	learn: 8.3052914	total: 4.6s	remaining: 2.3s
200:	learn: 8.2594410	total: 4.62s	remaining: 2.28s
201:	learn: 8.2470590	total: 4.64s	remaining: 2.25s
202:	learn: 8.2316760	total: 4.67s	remaining: 2.23s
203:	learn: 8.2041569	total: 4.69s	remaining: 2.21s
204:	learn: 8.1708835	total: 4.71s	remaining: 2.18s
205:	learn: 8.1301413	total: 4.73s	remaining: 2.16s
206:	learn: 8.0986826	total: 4.75s	remaining: 2.13s
207:	learn: 8.0741059	total: 4.78s	remaining: 2.11s
208:	learn: 8.0244528	total: 4.8s	remaining: 2.09s
209:	learn: 7.9989744	total: 4.83s	remaining: 2.07s
210:	learn: 7.9696573	total: 4.85s	remaining: 2.05s
211:	learn: 7.9396203	total: 4.88s	remaining: 2.02s
212:	learn: 7.9111124	total: 4.9s	remaining: 2s
213:	learn: 7.9007758	total: 4.93s	remaining: 1.98s
214:	learn: 7.8856958	total: 4.95s	remaining: 1.96s
215:	learn: 7.8685173	total: 4.97s	remaining: 1.93s
216:	learn: 7.8488503	total: 5s	remaining: 1.91s
217:	learn: 7.8127011	total: 5.02s	remaining: 1.89s
218:	learn: 7.7610464	total: 5.05s	remaining: 1.87s
219:	learn: 7.7371633	total: 5.07s	remaining: 1.84s
220:	learn: 7.7075772	total: 5.09s	remaining: 1.82s
221:	learn: 7.6862440	total: 5.12s	remaining: 1.8s
222:	learn: 7.6387389	total: 5.14s	remaining: 1.77s
223:	learn: 7.6039931	total: 5.16s	remaining: 1.75s
224:	learn: 7.5780873	total: 5.18s	remaining: 1.73s
225:	learn: 7.5366573	total: 5.2s	remaining: 1.7s
226:	learn: 7.5117065	total: 5.23s	remaining: 1.68s
227:	learn: 7.4849508	total: 5.26s	remaining: 1.66s
228:	learn: 7.4536731	total: 5.28s	remaining: 1.64s
229:	learn: 7.4238760	total: 5.31s	remaining: 1.61s
230:	learn: 7.4054602	total: 5.33s	remaining: 1.59s
231:	learn: 7.3841419	total: 5.35s	remaining: 1.57s
232:	learn: 7.3712995	total: 5.37s	remaining: 1.54s
233:	learn: 7.3403269	total: 5.39s	remaining: 1.52s
234:	learn: 7.3293521	total: 5.42s	remaining: 1.5s
235:	learn: 7.2977701	total: 5.44s	remaining: 1.48s
236:	learn: 7.2879483	total: 5.46s	remaining: 1.45s
237:	learn: 7.2651195	total: 5.49s	remaining: 1.43s
238:	learn: 7.2349887	total: 5.51s	remaining: 1.41s
239:	learn: 7.1998166	total: 5.53s	remaining: 1.38s
240:	learn: 7.1916439	total: 5.55s	remaining: 1.36s
241:	learn: 7.1651373	total: 5.57s	remaining: 1.33s
242:	learn: 7.1381913	total: 5.59s	remaining: 1.31s
243:	learn: 7.1196857	total: 5.61s	remaining: 1.29s
244:	learn: 7.1129330	total: 5.63s	remaining: 1.26s
245:	learn: 7.0917288	total: 5.66s	remaining: 1.24s
246:	learn: 7.0643221	total: 5.69s	remaining: 1.22s
247:	learn: 7.0355381	total: 5.71s	remaining: 1.2s
248:	learn: 7.0175711	total: 5.73s	remaining: 1.17s
249:	learn: 6.9969066	total: 5.76s	remaining: 1.15s
250:	learn: 6.9647213	total: 5.78s	remaining: 1.13s
251:	learn: 6.9543141	total: 5.8s	remaining: 1.1s
252:	learn: 6.9265098	total: 5.82s	remaining: 1.08s
253:	learn: 6.9022725	total: 5.84s	remaining: 1.06s
254:	learn: 6.8497254	total: 5.86s	remaining: 1.03s
255:	learn: 6.8285154	total: 5.89s	remaining: 1.01s
256:	learn: 6.8011995	total: 5.91s	remaining: 989ms
257:	learn: 6.7933719	total: 5.93s	remaining: 966ms
258:	learn: 6.7690265	total: 5.95s	remaining: 943ms
259:	learn: 6.7470688	total: 5.97s	remaining: 919ms
260:	learn: 6.7282782	total: 5.99s	remaining: 896ms
261:	learn: 6.6980892	total: 6.01s	remaining: 872ms
262:	learn: 6.6788044	total: 6.04s	remaining: 849ms
263:	learn: 6.6507208	total: 6.06s	remaining: 826ms
264:	learn: 6.6299738	total: 6.08s	remaining: 803ms
265:	learn: 6.6146145	total: 6.11s	remaining: 782ms
266:	learn: 6.5960711	total: 6.14s	remaining: 759ms
267:	learn: 6.5601064	total: 6.16s	remaining: 736ms
268:	learn: 6.5439209	total: 6.18s	remaining: 713ms
269:	learn: 6.5302107	total: 6.21s	remaining: 690ms
270:	learn: 6.5075739	total: 6.23s	remaining: 667ms
271:	learn: 6.4875851	total: 6.25s	remaining: 643ms
272:	learn: 6.4779171	total: 6.27s	remaining: 620ms
273:	learn: 6.4677739	total: 6.29s	remaining: 597ms
274:	learn: 6.4375131	total: 6.32s	remaining: 574ms
275:	learn: 6.4223197	total: 6.34s	remaining: 551ms
276:	learn: 6.4163633	total: 6.36s	remaining: 528ms
277:	learn: 6.4084438	total: 6.38s	remaining: 505ms
278:	learn: 6.3795757	total: 6.4s	remaining: 482ms
279:	learn: 6.3670166	total: 6.42s	remaining: 459ms
280:	learn: 6.3426010	total: 6.44s	remaining: 436ms
281:	learn: 6.3363177	total: 6.46s	remaining: 413ms
282:	learn: 6.3138385	total: 6.49s	remaining: 390ms
283:	learn: 6.2894060	total: 6.51s	remaining: 367ms
284:	learn: 6.2767007	total: 6.54s	remaining: 344ms
285:	learn: 6.2607815	total: 6.56s	remaining: 321ms
286:	learn: 6.2368751	total: 6.58s	remaining: 298ms
287:	learn: 6.2218151	total: 6.6s	remaining: 275ms
288:	learn: 6.2147193	total: 6.63s	remaining: 252ms
289:	learn: 6.1817002	total: 6.65s	remaining: 229ms
290:	learn: 6.1531900	total: 6.67s	remaining: 206ms
291:	learn: 6.1438157	total: 6.69s	remaining: 183ms
292:	learn: 6.1311550	total: 6.71s	remaining: 160ms
293:	learn: 6.1171744	total: 6.74s	remaining: 138ms
294:	learn: 6.1079932	total: 6.76s	remaining: 115ms
295:	learn: 6.0989063	total: 6.78s	remaining: 91.7ms
296:	learn: 6.0740401	total: 6.8s	remaining: 68.7ms
297:	learn: 6.0685711	total: 6.83s	remaining: 45.8ms
298:	learn: 6.0601135	total: 6.85s	remaining: 22.9ms
299:	learn: 6.0486579	total: 6.87s	remaining: 0us
0:	learn: 43.1728564	total: 24.7ms	remaining: 7.4s
1:	learn: 42.4479145	total: 49.1ms	remaining: 7.31s
2:	learn: 41.7618107	total: 73.1ms	remaining: 7.24s
3:	learn: 40.9535516	total: 95ms	remaining: 7.03s
4:	learn: 40.0184714	total: 118ms	remaining: 6.95s
5:	learn: 39.3975364	total: 143ms	remaining: 6.99s
6:	learn: 38.5285936	total: 165ms	remaining: 6.93s
7:	learn: 37.7229272	total: 193ms	remaining: 7.05s
8:	learn: 37.0918758	total: 214ms	remaining: 6.91s
9:	learn: 36.3564673	total: 235ms	remaining: 6.82s
10:	learn: 35.6811958	total: 257ms	remaining: 6.75s
11:	learn: 35.0050014	total: 280ms	remaining: 6.71s
12:	learn: 34.2960554	total: 301ms	remaining: 6.65s
13:	learn: 33.5236859	total: 323ms	remaining: 6.61s
14:	learn: 32.9402676	total: 326ms	remaining: 6.18s
15:	learn: 32.4523166	total: 347ms	remaining: 6.17s
16:	learn: 31.8840373	total: 372ms	remaining: 6.19s
17:	learn: 31.3075678	total: 403ms	remaining: 6.31s
18:	learn: 30.8876354	total: 427ms	remaining: 6.32s
19:	learn: 30.3498359	total: 451ms	remaining: 6.32s
20:	learn: 29.9235491	total: 473ms	remaining: 6.29s
21:	learn: 29.3980753	total: 497ms	remaining: 6.29s
22:	learn: 28.8855360	total: 519ms	remaining: 6.25s
23:	learn: 28.4464905	total: 542ms	remaining: 6.23s
24:	learn: 28.0340761	total: 555ms	remaining: 6.1s
25:	learn: 27.6857355	total: 578ms	remaining: 6.09s
26:	learn: 27.3334889	total: 609ms	remaining: 6.16s
27:	learn: 26.8330294	total: 632ms	remaining: 6.14s
28:	learn: 26.4299332	total: 655ms	remaining: 6.12s
29:	learn: 26.0045444	total: 676ms	remaining: 6.09s
30:	learn: 25.6006582	total: 699ms	remaining: 6.06s
31:	learn: 25.2312981	total: 720ms	remaining: 6.03s
32:	learn: 25.0083092	total: 742ms	remaining: 6.01s
33:	learn: 24.6611713	total: 763ms	remaining: 5.97s
34:	learn: 24.4598997	total: 787ms	remaining: 5.96s
35:	learn: 24.2341422	total: 809ms	remaining: 5.93s
36:	learn: 23.9210171	total: 840ms	remaining: 5.97s
37:	learn: 23.5299198	total: 863ms	remaining: 5.95s
38:	learn: 23.1652368	total: 886ms	remaining: 5.93s
39:	learn: 22.8941103	total: 909ms	remaining: 5.91s
40:	learn: 22.7084206	total: 934ms	remaining: 5.9s
41:	learn: 22.4654978	total: 955ms	remaining: 5.87s
42:	learn: 22.2302580	total: 978ms	remaining: 5.84s
43:	learn: 21.9408933	total: 1s	remaining: 5.82s
44:	learn: 21.6779272	total: 1.02s	remaining: 5.81s
45:	learn: 21.5124883	total: 1.06s	remaining: 5.84s
46:	learn: 21.3803106	total: 1.08s	remaining: 5.81s
47:	learn: 21.2298916	total: 1.1s	remaining: 5.79s
48:	learn: 21.0336901	total: 1.12s	remaining: 5.76s
49:	learn: 20.7943434	total: 1.15s	remaining: 5.74s
50:	learn: 20.5676348	total: 1.17s	remaining: 5.7s
51:	learn: 20.3427273	total: 1.18s	remaining: 5.63s
52:	learn: 20.1024296	total: 1.2s	remaining: 5.61s
53:	learn: 19.9885265	total: 1.23s	remaining: 5.58s
54:	learn: 19.8413355	total: 1.25s	remaining: 5.59s
55:	learn: 19.7099619	total: 1.28s	remaining: 5.57s
56:	learn: 19.5311747	total: 1.3s	remaining: 5.55s
57:	learn: 19.3665040	total: 1.32s	remaining: 5.52s
58:	learn: 19.2281415	total: 1.34s	remaining: 5.49s
59:	learn: 19.1106495	total: 1.37s	remaining: 5.46s
60:	learn: 18.9927263	total: 1.39s	remaining: 5.43s
61:	learn: 18.7654626	total: 1.41s	remaining: 5.41s
62:	learn: 18.6108661	total: 1.44s	remaining: 5.4s
63:	learn: 18.4817806	total: 1.46s	remaining: 5.38s
64:	learn: 18.3632402	total: 1.48s	remaining: 5.36s
65:	learn: 18.2653457	total: 1.5s	remaining: 5.32s
66:	learn: 18.1378819	total: 1.52s	remaining: 5.29s
67:	learn: 18.0459629	total: 1.54s	remaining: 5.26s
68:	learn: 17.9001044	total: 1.56s	remaining: 5.23s
69:	learn: 17.7073203	total: 1.58s	remaining: 5.21s
70:	learn: 17.5276628	total: 1.61s	remaining: 5.19s
71:	learn: 17.4386086	total: 1.63s	remaining: 5.17s
72:	learn: 17.2890096	total: 1.66s	remaining: 5.17s
73:	learn: 17.1904631	total: 1.69s	remaining: 5.15s
74:	learn: 17.0955197	total: 1.71s	remaining: 5.12s
75:	learn: 16.9924303	total: 1.73s	remaining: 5.1s
76:	learn: 16.8972682	total: 1.75s	remaining: 5.08s
77:	learn: 16.7957864	total: 1.77s	remaining: 5.04s
78:	learn: 16.6405248	total: 1.79s	remaining: 5.01s
79:	learn: 16.5463991	total: 1.81s	remaining: 4.99s
80:	learn: 16.4622871	total: 1.83s	remaining: 4.96s
81:	learn: 16.3624916	total: 1.85s	remaining: 4.93s
82:	learn: 16.2073706	total: 1.88s	remaining: 4.92s
83:	learn: 16.0716875	total: 1.91s	remaining: 4.91s
84:	learn: 15.9336151	total: 1.93s	remaining: 4.88s
85:	learn: 15.8451501	total: 1.95s	remaining: 4.85s
86:	learn: 15.7200917	total: 1.97s	remaining: 4.82s
87:	learn: 15.6236971	total: 1.99s	remaining: 4.79s
88:	learn: 15.5479129	total: 2.01s	remaining: 4.76s
89:	learn: 15.4975079	total: 2.03s	remaining: 4.73s
90:	learn: 15.4083433	total: 2.05s	remaining: 4.71s
91:	learn: 15.3169327	total: 2.07s	remaining: 4.68s
92:	learn: 15.2207992	total: 2.1s	remaining: 4.67s
93:	learn: 15.1430327	total: 2.13s	remaining: 4.67s
94:	learn: 15.0665711	total: 2.16s	remaining: 4.66s
95:	learn: 14.9903534	total: 2.18s	remaining: 4.63s
96:	learn: 14.9054346	total: 2.2s	remaining: 4.61s
97:	learn: 14.7940457	total: 2.23s	remaining: 4.59s
98:	learn: 14.7008915	total: 2.25s	remaining: 4.56s
99:	learn: 14.6142673	total: 2.27s	remaining: 4.54s
100:	learn: 14.5337996	total: 2.29s	remaining: 4.51s
101:	learn: 14.4571728	total: 2.32s	remaining: 4.5s
102:	learn: 14.3898956	total: 2.35s	remaining: 4.5s
103:	learn: 14.3189412	total: 2.37s	remaining: 4.47s
104:	learn: 14.2525935	total: 2.4s	remaining: 4.45s
105:	learn: 14.1772436	total: 2.42s	remaining: 4.42s
106:	learn: 14.1059305	total: 2.44s	remaining: 4.4s
107:	learn: 14.0232782	total: 2.46s	remaining: 4.37s
108:	learn: 13.9368806	total: 2.48s	remaining: 4.35s
109:	learn: 13.8491229	total: 2.5s	remaining: 4.33s
110:	learn: 13.7685490	total: 2.53s	remaining: 4.31s
111:	learn: 13.6836750	total: 2.56s	remaining: 4.3s
112:	learn: 13.6202897	total: 2.58s	remaining: 4.28s
113:	learn: 13.5688904	total: 2.61s	remaining: 4.25s
114:	learn: 13.5145238	total: 2.63s	remaining: 4.23s
115:	learn: 13.4247466	total: 2.65s	remaining: 4.21s
116:	learn: 13.3307114	total: 2.67s	remaining: 4.18s
117:	learn: 13.2545184	total: 2.7s	remaining: 4.16s
118:	learn: 13.1996548	total: 2.72s	remaining: 4.14s
119:	learn: 13.1205307	total: 2.74s	remaining: 4.12s
120:	learn: 13.0479027	total: 2.77s	remaining: 4.1s
121:	learn: 12.9970441	total: 2.79s	remaining: 4.08s
122:	learn: 12.9295209	total: 2.81s	remaining: 4.05s
123:	learn: 12.8673524	total: 2.84s	remaining: 4.03s
124:	learn: 12.7786245	total: 2.86s	remaining: 4s
125:	learn: 12.7348929	total: 2.88s	remaining: 3.98s
126:	learn: 12.6858554	total: 2.9s	remaining: 3.95s
127:	learn: 12.6189787	total: 2.92s	remaining: 3.93s
128:	learn: 12.5864827	total: 2.95s	remaining: 3.91s
129:	learn: 12.5478404	total: 2.98s	remaining: 3.89s
130:	learn: 12.5017820	total: 3s	remaining: 3.87s
131:	learn: 12.4491462	total: 3.02s	remaining: 3.85s
132:	learn: 12.3822056	total: 3.05s	remaining: 3.83s
133:	learn: 12.3098651	total: 3.07s	remaining: 3.81s
134:	learn: 12.2531700	total: 3.1s	remaining: 3.78s
135:	learn: 12.2119331	total: 3.12s	remaining: 3.76s
136:	learn: 12.1571278	total: 3.14s	remaining: 3.74s
137:	learn: 12.0976094	total: 3.17s	remaining: 3.72s
138:	learn: 12.0025352	total: 3.2s	remaining: 3.7s
139:	learn: 11.9019074	total: 3.22s	remaining: 3.68s
140:	learn: 11.7854852	total: 3.24s	remaining: 3.66s
141:	learn: 11.7104078	total: 3.26s	remaining: 3.63s
142:	learn: 11.6741366	total: 3.29s	remaining: 3.61s
143:	learn: 11.6077195	total: 3.31s	remaining: 3.58s
144:	learn: 11.5496695	total: 3.33s	remaining: 3.56s
145:	learn: 11.4568800	total: 3.35s	remaining: 3.54s
146:	learn: 11.4368150	total: 3.38s	remaining: 3.52s
147:	learn: 11.3955813	total: 3.41s	remaining: 3.5s
148:	learn: 11.3565385	total: 3.43s	remaining: 3.48s
149:	learn: 11.3020845	total: 3.46s	remaining: 3.46s
150:	learn: 11.2130390	total: 3.48s	remaining: 3.43s
151:	learn: 11.1401745	total: 3.5s	remaining: 3.41s
152:	learn: 11.1048934	total: 3.52s	remaining: 3.39s
153:	learn: 11.0709933	total: 3.55s	remaining: 3.36s
154:	learn: 11.0212519	total: 3.57s	remaining: 3.34s
155:	learn: 10.9258762	total: 3.6s	remaining: 3.32s
156:	learn: 10.8429657	total: 3.62s	remaining: 3.3s
157:	learn: 10.8061370	total: 3.64s	remaining: 3.27s
158:	learn: 10.7571211	total: 3.66s	remaining: 3.25s
159:	learn: 10.6698987	total: 3.68s	remaining: 3.22s
160:	learn: 10.6228772	total: 3.71s	remaining: 3.2s
161:	learn: 10.5368796	total: 3.73s	remaining: 3.17s
162:	learn: 10.4841450	total: 3.75s	remaining: 3.15s
163:	learn: 10.4012317	total: 3.77s	remaining: 3.13s
164:	learn: 10.3588701	total: 3.79s	remaining: 3.1s
165:	learn: 10.2816720	total: 3.82s	remaining: 3.09s
166:	learn: 10.2259651	total: 3.85s	remaining: 3.06s
167:	learn: 10.1792554	total: 3.87s	remaining: 3.04s
168:	learn: 10.1604671	total: 3.89s	remaining: 3.02s
169:	learn: 10.1318986	total: 3.92s	remaining: 3s
170:	learn: 10.0948065	total: 3.94s	remaining: 2.97s
171:	learn: 10.0521191	total: 3.96s	remaining: 2.95s
172:	learn: 9.9946157	total: 3.98s	remaining: 2.92s
173:	learn: 9.9313678	total: 4.01s	remaining: 2.9s
174:	learn: 9.9156434	total: 4.03s	remaining: 2.88s
175:	learn: 9.8749788	total: 4.05s	remaining: 2.85s
176:	learn: 9.8485079	total: 4.08s	remaining: 2.83s
177:	learn: 9.8134329	total: 4.09s	remaining: 2.81s
178:	learn: 9.7880107	total: 4.12s	remaining: 2.78s
179:	learn: 9.7587885	total: 4.14s	remaining: 2.76s
180:	learn: 9.6939238	total: 4.16s	remaining: 2.73s
181:	learn: 9.6447939	total: 4.18s	remaining: 2.71s
182:	learn: 9.6136022	total: 4.21s	remaining: 2.69s
183:	learn: 9.5885675	total: 4.24s	remaining: 2.67s
184:	learn: 9.5271670	total: 4.26s	remaining: 2.65s
185:	learn: 9.4616988	total: 4.28s	remaining: 2.62s
186:	learn: 9.4287637	total: 4.3s	remaining: 2.6s
187:	learn: 9.3948177	total: 4.32s	remaining: 2.58s
188:	learn: 9.3767726	total: 4.34s	remaining: 2.55s
189:	learn: 9.3473555	total: 4.36s	remaining: 2.53s
190:	learn: 9.3099572	total: 4.38s	remaining: 2.5s
191:	learn: 9.2799642	total: 4.41s	remaining: 2.48s
192:	learn: 9.2505323	total: 4.44s	remaining: 2.46s
193:	learn: 9.2173510	total: 4.46s	remaining: 2.44s
194:	learn: 9.1746531	total: 4.48s	remaining: 2.41s
195:	learn: 9.1354668	total: 4.5s	remaining: 2.39s
196:	learn: 9.0983547	total: 4.52s	remaining: 2.36s
197:	learn: 9.0615111	total: 4.54s	remaining: 2.34s
198:	learn: 9.0239666	total: 4.57s	remaining: 2.32s
199:	learn: 8.9906083	total: 4.59s	remaining: 2.29s
200:	learn: 8.9458694	total: 4.61s	remaining: 2.27s
201:	learn: 8.9040783	total: 4.64s	remaining: 2.25s
202:	learn: 8.8495189	total: 4.66s	remaining: 2.23s
203:	learn: 8.8243403	total: 4.69s	remaining: 2.21s
204:	learn: 8.7930532	total: 4.71s	remaining: 2.18s
205:	learn: 8.7587095	total: 4.73s	remaining: 2.16s
206:	learn: 8.7177051	total: 4.75s	remaining: 2.14s
207:	learn: 8.6879684	total: 4.78s	remaining: 2.11s
208:	learn: 8.6681622	total: 4.8s	remaining: 2.09s
209:	learn: 8.6299257	total: 4.82s	remaining: 2.06s
210:	learn: 8.5728096	total: 4.85s	remaining: 2.04s
211:	learn: 8.5456345	total: 4.87s	remaining: 2.02s
212:	learn: 8.5000514	total: 4.89s	remaining: 2s
213:	learn: 8.4814393	total: 4.91s	remaining: 1.97s
214:	learn: 8.4512752	total: 4.93s	remaining: 1.95s
215:	learn: 8.4144221	total: 4.95s	remaining: 1.92s
216:	learn: 8.3817886	total: 4.97s	remaining: 1.9s
217:	learn: 8.3392143	total: 4.99s	remaining: 1.88s
218:	learn: 8.3102751	total: 5.01s	remaining: 1.85s
219:	learn: 8.2963441	total: 5.03s	remaining: 1.83s
220:	learn: 8.2666907	total: 5.06s	remaining: 1.81s
221:	learn: 8.2470955	total: 5.08s	remaining: 1.79s
222:	learn: 8.2352635	total: 5.11s	remaining: 1.76s
223:	learn: 8.2046605	total: 5.13s	remaining: 1.74s
224:	learn: 8.1746742	total: 5.15s	remaining: 1.72s
225:	learn: 8.1466704	total: 5.17s	remaining: 1.69s
226:	learn: 8.1113762	total: 5.2s	remaining: 1.67s
227:	learn: 8.0842520	total: 5.22s	remaining: 1.65s
228:	learn: 8.0619499	total: 5.25s	remaining: 1.63s
229:	learn: 8.0391421	total: 5.27s	remaining: 1.6s
230:	learn: 8.0082460	total: 5.29s	remaining: 1.58s
231:	learn: 7.9894454	total: 5.31s	remaining: 1.56s
232:	learn: 7.9567828	total: 5.33s	remaining: 1.53s
233:	learn: 7.9394710	total: 5.35s	remaining: 1.51s
234:	learn: 7.9171371	total: 5.37s	remaining: 1.49s
235:	learn: 7.9062197	total: 5.39s	remaining: 1.46s
236:	learn: 7.8803505	total: 5.41s	remaining: 1.44s
237:	learn: 7.8508624	total: 5.43s	remaining: 1.42s
238:	learn: 7.8107215	total: 5.46s	remaining: 1.39s
239:	learn: 7.7758588	total: 5.49s	remaining: 1.37s
240:	learn: 7.7403137	total: 5.51s	remaining: 1.35s
241:	learn: 7.7146933	total: 5.54s	remaining: 1.33s
242:	learn: 7.6876053	total: 5.56s	remaining: 1.3s
243:	learn: 7.6631332	total: 5.59s	remaining: 1.28s
244:	learn: 7.6340717	total: 5.61s	remaining: 1.26s
245:	learn: 7.5835394	total: 5.63s	remaining: 1.24s
246:	learn: 7.5572808	total: 5.66s	remaining: 1.21s
247:	learn: 7.5477260	total: 5.68s	remaining: 1.19s
248:	learn: 7.5230961	total: 5.71s	remaining: 1.17s
249:	learn: 7.4926278	total: 5.73s	remaining: 1.15s
250:	learn: 7.4663059	total: 5.75s	remaining: 1.12s
251:	learn: 7.4439231	total: 5.77s	remaining: 1.1s
252:	learn: 7.4147104	total: 5.79s	remaining: 1.08s
253:	learn: 7.3910399	total: 5.82s	remaining: 1.05s
254:	learn: 7.3694309	total: 5.84s	remaining: 1.03s
255:	learn: 7.3357705	total: 5.86s	remaining: 1.01s
256:	learn: 7.3063747	total: 5.88s	remaining: 985ms
257:	learn: 7.2838572	total: 5.91s	remaining: 962ms
258:	learn: 7.2589764	total: 5.94s	remaining: 940ms
259:	learn: 7.2389253	total: 5.96s	remaining: 918ms
260:	learn: 7.2138913	total: 5.99s	remaining: 895ms
261:	learn: 7.1886917	total: 6.01s	remaining: 872ms
262:	learn: 7.1772908	total: 6.04s	remaining: 849ms
263:	learn: 7.1578726	total: 6.06s	remaining: 826ms
264:	learn: 7.1353133	total: 6.08s	remaining: 804ms
265:	learn: 7.1102477	total: 6.11s	remaining: 781ms
266:	learn: 7.0828702	total: 6.14s	remaining: 759ms
267:	learn: 7.0597237	total: 6.17s	remaining: 737ms
268:	learn: 7.0365630	total: 6.19s	remaining: 713ms
269:	learn: 7.0146208	total: 6.21s	remaining: 690ms
270:	learn: 6.9967242	total: 6.23s	remaining: 667ms
271:	learn: 6.9790909	total: 6.25s	remaining: 644ms
272:	learn: 6.9693113	total: 6.27s	remaining: 621ms
273:	learn: 6.9594319	total: 6.3s	remaining: 598ms
274:	learn: 6.9391890	total: 6.33s	remaining: 575ms
275:	learn: 6.9254505	total: 6.36s	remaining: 553ms
276:	learn: 6.9024357	total: 6.38s	remaining: 530ms
277:	learn: 6.8754442	total: 6.4s	remaining: 507ms
278:	learn: 6.8502029	total: 6.43s	remaining: 484ms
279:	learn: 6.8142453	total: 6.45s	remaining: 461ms
280:	learn: 6.7927649	total: 6.47s	remaining: 438ms
281:	learn: 6.7640814	total: 6.5s	remaining: 415ms
282:	learn: 6.7463937	total: 6.52s	remaining: 392ms
283:	learn: 6.7403516	total: 6.55s	remaining: 369ms
284:	learn: 6.7206013	total: 6.58s	remaining: 346ms
285:	learn: 6.6875183	total: 6.6s	remaining: 323ms
286:	learn: 6.6609083	total: 6.62s	remaining: 300ms
287:	learn: 6.6545230	total: 6.64s	remaining: 277ms
288:	learn: 6.6358351	total: 6.66s	remaining: 254ms
289:	learn: 6.6175009	total: 6.68s	remaining: 230ms
290:	learn: 6.6067729	total: 6.7s	remaining: 207ms
291:	learn: 6.5970320	total: 6.73s	remaining: 184ms
292:	learn: 6.5837751	total: 6.75s	remaining: 161ms
293:	learn: 6.5625028	total: 6.78s	remaining: 138ms
294:	learn: 6.5530621	total: 6.8s	remaining: 115ms
295:	learn: 6.5478680	total: 6.83s	remaining: 92.2ms
296:	learn: 6.5241879	total: 6.85s	remaining: 69.2ms
297:	learn: 6.5118159	total: 6.87s	remaining: 46.1ms
298:	learn: 6.4919631	total: 6.89s	remaining: 23.1ms
299:	learn: 6.4739124	total: 6.92s	remaining: 0us
0:	learn: 46.4788614	total: 2.66ms	remaining: 796ms
1:	learn: 45.7710608	total: 22.9ms	remaining: 3.41s
2:	learn: 45.1565849	total: 44.4ms	remaining: 4.39s
3:	learn: 44.4030902	total: 65.3ms	remaining: 4.83s
4:	learn: 43.7256714	total: 87.8ms	remaining: 5.18s
5:	learn: 43.0846764	total: 108ms	remaining: 5.29s
6:	learn: 42.3050249	total: 128ms	remaining: 5.37s
7:	learn: 41.5523343	total: 151ms	remaining: 5.5s
8:	learn: 40.7548041	total: 178ms	remaining: 5.76s
9:	learn: 39.8798087	total: 203ms	remaining: 5.88s
10:	learn: 39.3807548	total: 226ms	remaining: 5.94s
11:	learn: 38.6353297	total: 249ms	remaining: 5.97s
12:	learn: 38.0252968	total: 271ms	remaining: 5.98s
13:	learn: 37.4584814	total: 294ms	remaining: 6s
14:	learn: 36.9766267	total: 314ms	remaining: 5.97s
15:	learn: 36.4351844	total: 334ms	remaining: 5.93s
16:	learn: 35.8711532	total: 356ms	remaining: 5.92s
17:	learn: 35.5046170	total: 379ms	remaining: 5.93s
18:	learn: 34.9410561	total: 402ms	remaining: 5.94s
19:	learn: 34.5414688	total: 427ms	remaining: 5.97s
20:	learn: 34.1994877	total: 448ms	remaining: 5.96s
21:	learn: 33.8105873	total: 470ms	remaining: 5.94s
22:	learn: 33.2767379	total: 490ms	remaining: 5.91s
23:	learn: 32.9293305	total: 511ms	remaining: 5.88s
24:	learn: 32.5563171	total: 532ms	remaining: 5.85s
25:	learn: 32.0312705	total: 554ms	remaining: 5.84s
26:	learn: 31.5549663	total: 573ms	remaining: 5.8s
27:	learn: 31.2152408	total: 596ms	remaining: 5.79s
28:	learn: 30.8335992	total: 622ms	remaining: 5.81s
29:	learn: 30.4437650	total: 650ms	remaining: 5.85s
30:	learn: 30.1139865	total: 672ms	remaining: 5.83s
31:	learn: 29.6348886	total: 694ms	remaining: 5.82s
32:	learn: 29.4374411	total: 717ms	remaining: 5.8s
33:	learn: 29.1774552	total: 739ms	remaining: 5.78s
34:	learn: 28.9121068	total: 761ms	remaining: 5.76s
35:	learn: 28.6291033	total: 783ms	remaining: 5.74s
36:	learn: 28.3365166	total: 805ms	remaining: 5.72s
37:	learn: 28.0654213	total: 833ms	remaining: 5.75s
38:	learn: 27.7120990	total: 854ms	remaining: 5.72s
39:	learn: 27.4700227	total: 875ms	remaining: 5.69s
40:	learn: 27.2052722	total: 896ms	remaining: 5.66s
41:	learn: 26.9401129	total: 917ms	remaining: 5.63s
42:	learn: 26.6081493	total: 938ms	remaining: 5.61s
43:	learn: 26.3847138	total: 959ms	remaining: 5.58s
44:	learn: 26.2201660	total: 980ms	remaining: 5.55s
45:	learn: 26.0513425	total: 1s	remaining: 5.52s
46:	learn: 25.8609437	total: 1.02s	remaining: 5.5s
47:	learn: 25.6040252	total: 1.05s	remaining: 5.51s
48:	learn: 25.4235507	total: 1.08s	remaining: 5.52s
49:	learn: 25.2896788	total: 1.1s	remaining: 5.5s
50:	learn: 25.1208197	total: 1.12s	remaining: 5.48s
51:	learn: 24.8660258	total: 1.13s	remaining: 5.37s
52:	learn: 24.6165133	total: 1.15s	remaining: 5.36s
53:	learn: 24.3828983	total: 1.17s	remaining: 5.33s
54:	learn: 24.1841624	total: 1.19s	remaining: 5.31s
55:	learn: 24.0006316	total: 1.21s	remaining: 5.28s
56:	learn: 23.7695363	total: 1.23s	remaining: 5.26s
57:	learn: 23.6284017	total: 1.26s	remaining: 5.25s
58:	learn: 23.4125305	total: 1.29s	remaining: 5.26s
59:	learn: 23.2250456	total: 1.31s	remaining: 5.23s
60:	learn: 23.0467385	total: 1.33s	remaining: 5.2s
61:	learn: 22.7033792	total: 1.35s	remaining: 5.18s
62:	learn: 22.5334580	total: 1.37s	remaining: 5.16s
63:	learn: 22.3638971	total: 1.39s	remaining: 5.14s
64:	learn: 22.1384904	total: 1.42s	remaining: 5.12s
65:	learn: 22.0135698	total: 1.44s	remaining: 5.1s
66:	learn: 21.8734424	total: 1.46s	remaining: 5.08s
67:	learn: 21.7496417	total: 1.49s	remaining: 5.07s
68:	learn: 21.5374284	total: 1.52s	remaining: 5.08s
69:	learn: 21.3371276	total: 1.54s	remaining: 5.06s
70:	learn: 21.0990139	total: 1.56s	remaining: 5.04s
71:	learn: 20.9642590	total: 1.58s	remaining: 5.02s
72:	learn: 20.8049721	total: 1.61s	remaining: 5s
73:	learn: 20.7124973	total: 1.63s	remaining: 4.99s
74:	learn: 20.6049930	total: 1.65s	remaining: 4.96s
75:	learn: 20.4963737	total: 1.68s	remaining: 4.95s
76:	learn: 20.3645418	total: 1.71s	remaining: 4.94s
77:	learn: 20.2519924	total: 1.73s	remaining: 4.93s
78:	learn: 20.0505831	total: 1.75s	remaining: 4.91s
79:	learn: 19.9272769	total: 1.77s	remaining: 4.88s
80:	learn: 19.8219589	total: 1.79s	remaining: 4.86s
81:	learn: 19.7098289	total: 1.82s	remaining: 4.83s
82:	learn: 19.4383686	total: 1.84s	remaining: 4.81s
83:	learn: 19.3315372	total: 1.86s	remaining: 4.79s
84:	learn: 19.2144697	total: 1.88s	remaining: 4.76s
85:	learn: 19.0849701	total: 1.91s	remaining: 4.76s
86:	learn: 18.9769215	total: 1.94s	remaining: 4.74s
87:	learn: 18.8581283	total: 1.96s	remaining: 4.72s
88:	learn: 18.7414069	total: 1.98s	remaining: 4.7s
89:	learn: 18.6649642	total: 2.01s	remaining: 4.68s
90:	learn: 18.5127864	total: 2.03s	remaining: 4.67s
91:	learn: 18.3629102	total: 2.06s	remaining: 4.65s
92:	learn: 18.2624941	total: 2.08s	remaining: 4.63s
93:	learn: 18.1645836	total: 2.11s	remaining: 4.62s
94:	learn: 18.0717273	total: 2.14s	remaining: 4.61s
95:	learn: 17.9594520	total: 2.16s	remaining: 4.59s
96:	learn: 17.8692648	total: 2.18s	remaining: 4.57s
97:	learn: 17.7758009	total: 2.2s	remaining: 4.54s
98:	learn: 17.6633350	total: 2.23s	remaining: 4.52s
99:	learn: 17.5393236	total: 2.25s	remaining: 4.49s
100:	learn: 17.4441841	total: 2.27s	remaining: 4.47s
101:	learn: 17.3636497	total: 2.29s	remaining: 4.44s
102:	learn: 17.2836586	total: 2.31s	remaining: 4.42s
103:	learn: 17.1666480	total: 2.33s	remaining: 4.4s
104:	learn: 17.0603123	total: 2.36s	remaining: 4.39s
105:	learn: 16.9701019	total: 2.39s	remaining: 4.37s
106:	learn: 16.8819325	total: 2.41s	remaining: 4.35s
107:	learn: 16.7800721	total: 2.44s	remaining: 4.33s
108:	learn: 16.6575687	total: 2.46s	remaining: 4.31s
109:	learn: 16.5621285	total: 2.48s	remaining: 4.29s
110:	learn: 16.4805668	total: 2.5s	remaining: 4.26s
111:	learn: 16.3664491	total: 2.52s	remaining: 4.24s
112:	learn: 16.2921576	total: 2.55s	remaining: 4.22s
113:	learn: 16.2123714	total: 2.58s	remaining: 4.21s
114:	learn: 16.1305926	total: 2.6s	remaining: 4.18s
115:	learn: 16.0452681	total: 2.62s	remaining: 4.16s
116:	learn: 15.9356767	total: 2.64s	remaining: 4.13s
117:	learn: 15.8492426	total: 2.66s	remaining: 4.11s
118:	learn: 15.7699169	total: 2.68s	remaining: 4.08s
119:	learn: 15.6746719	total: 2.71s	remaining: 4.06s
120:	learn: 15.5370189	total: 2.73s	remaining: 4.04s
121:	learn: 15.4445148	total: 2.75s	remaining: 4.02s
122:	learn: 15.3396325	total: 2.78s	remaining: 4.01s
123:	learn: 15.2450802	total: 2.81s	remaining: 3.99s
124:	learn: 15.1203998	total: 2.83s	remaining: 3.97s
125:	learn: 15.0601453	total: 2.86s	remaining: 3.94s
126:	learn: 14.9882312	total: 2.88s	remaining: 3.92s
127:	learn: 14.9180283	total: 2.9s	remaining: 3.9s
128:	learn: 14.8526915	total: 2.92s	remaining: 3.88s
129:	learn: 14.7657162	total: 2.95s	remaining: 3.85s
130:	learn: 14.6698595	total: 2.98s	remaining: 3.84s
131:	learn: 14.6346566	total: 2.98s	remaining: 3.79s
132:	learn: 14.5756096	total: 3s	remaining: 3.77s
133:	learn: 14.5030739	total: 3.02s	remaining: 3.75s
134:	learn: 14.3943441	total: 3.05s	remaining: 3.73s
135:	learn: 14.2404537	total: 3.07s	remaining: 3.7s
136:	learn: 14.1761228	total: 3.09s	remaining: 3.68s
137:	learn: 14.1077833	total: 3.11s	remaining: 3.65s
138:	learn: 14.0413537	total: 3.13s	remaining: 3.63s
139:	learn: 13.9757428	total: 3.15s	remaining: 3.6s
140:	learn: 13.8921768	total: 3.17s	remaining: 3.58s
141:	learn: 13.8110381	total: 3.19s	remaining: 3.55s
142:	learn: 13.7257676	total: 3.23s	remaining: 3.54s
143:	learn: 13.6518439	total: 3.25s	remaining: 3.52s
144:	learn: 13.4950736	total: 3.27s	remaining: 3.49s
145:	learn: 13.3977428	total: 3.29s	remaining: 3.47s
146:	learn: 13.3368539	total: 3.31s	remaining: 3.45s
147:	learn: 13.2559100	total: 3.33s	remaining: 3.42s
148:	learn: 13.1574001	total: 3.36s	remaining: 3.4s
149:	learn: 13.0006095	total: 3.38s	remaining: 3.38s
150:	learn: 12.9451554	total: 3.4s	remaining: 3.35s
151:	learn: 12.8348904	total: 3.43s	remaining: 3.34s
152:	learn: 12.7505428	total: 3.45s	remaining: 3.32s
153:	learn: 12.6269434	total: 3.48s	remaining: 3.29s
154:	learn: 12.5693272	total: 3.5s	remaining: 3.27s
155:	learn: 12.5049023	total: 3.52s	remaining: 3.25s
156:	learn: 12.4144067	total: 3.54s	remaining: 3.22s
157:	learn: 12.3672108	total: 3.56s	remaining: 3.2s
158:	learn: 12.2988713	total: 3.58s	remaining: 3.18s
159:	learn: 12.2500411	total: 3.6s	remaining: 3.15s
160:	learn: 12.2002550	total: 3.64s	remaining: 3.14s
161:	learn: 12.0921756	total: 3.66s	remaining: 3.12s
162:	learn: 12.0261456	total: 3.68s	remaining: 3.09s
163:	learn: 11.9595478	total: 3.7s	remaining: 3.07s
164:	learn: 11.9040826	total: 3.73s	remaining: 3.05s
165:	learn: 11.8185631	total: 3.75s	remaining: 3.02s
166:	learn: 11.7394422	total: 3.77s	remaining: 3s
167:	learn: 11.6639319	total: 3.79s	remaining: 2.98s
168:	learn: 11.6147181	total: 3.81s	remaining: 2.95s
169:	learn: 11.5761586	total: 3.84s	remaining: 2.93s
170:	learn: 11.4910059	total: 3.86s	remaining: 2.91s
171:	learn: 11.4181227	total: 3.88s	remaining: 2.89s
172:	learn: 11.3626035	total: 3.9s	remaining: 2.86s
173:	learn: 11.2507892	total: 3.92s	remaining: 2.84s
174:	learn: 11.1798403	total: 3.94s	remaining: 2.81s
175:	learn: 11.1190643	total: 3.96s	remaining: 2.79s
176:	learn: 11.0620102	total: 3.98s	remaining: 2.77s
177:	learn: 10.9793884	total: 4s	remaining: 2.74s
178:	learn: 10.8968370	total: 4.02s	remaining: 2.72s
179:	learn: 10.8122733	total: 4.05s	remaining: 2.7s
180:	learn: 10.7545856	total: 4.08s	remaining: 2.68s
181:	learn: 10.6836395	total: 4.1s	remaining: 2.66s
182:	learn: 10.6441863	total: 4.12s	remaining: 2.63s
183:	learn: 10.5944997	total: 4.14s	remaining: 2.61s
184:	learn: 10.5161755	total: 4.17s	remaining: 2.59s
185:	learn: 10.4705995	total: 4.19s	remaining: 2.57s
186:	learn: 10.4187076	total: 4.21s	remaining: 2.54s
187:	learn: 10.3683730	total: 4.23s	remaining: 2.52s
188:	learn: 10.3150620	total: 4.25s	remaining: 2.5s
189:	learn: 10.2691155	total: 4.28s	remaining: 2.48s
190:	learn: 10.2272718	total: 4.3s	remaining: 2.46s
191:	learn: 10.1871331	total: 4.32s	remaining: 2.43s
192:	learn: 10.1443128	total: 4.34s	remaining: 2.41s
193:	learn: 10.0668189	total: 4.36s	remaining: 2.38s
194:	learn: 10.0256380	total: 4.38s	remaining: 2.36s
195:	learn: 9.9787956	total: 4.41s	remaining: 2.34s
196:	learn: 9.9322122	total: 4.43s	remaining: 2.31s
197:	learn: 9.8850093	total: 4.45s	remaining: 2.29s
198:	learn: 9.8380140	total: 4.48s	remaining: 2.27s
199:	learn: 9.8106296	total: 4.51s	remaining: 2.25s
200:	learn: 9.7585749	total: 4.53s	remaining: 2.23s
201:	learn: 9.7182879	total: 4.55s	remaining: 2.21s
202:	learn: 9.6821771	total: 4.58s	remaining: 2.19s
203:	learn: 9.6399101	total: 4.6s	remaining: 2.16s
204:	learn: 9.6048849	total: 4.63s	remaining: 2.14s
205:	learn: 9.5638590	total: 4.65s	remaining: 2.12s
206:	learn: 9.5142374	total: 4.68s	remaining: 2.1s
207:	learn: 9.4695144	total: 4.71s	remaining: 2.08s
208:	learn: 9.4331939	total: 4.73s	remaining: 2.06s
209:	learn: 9.3833838	total: 4.75s	remaining: 2.04s
210:	learn: 9.3517645	total: 4.78s	remaining: 2.02s
211:	learn: 9.3163444	total: 4.8s	remaining: 1.99s
212:	learn: 9.2788352	total: 4.82s	remaining: 1.97s
213:	learn: 9.2459289	total: 4.84s	remaining: 1.95s
214:	learn: 9.2104536	total: 4.86s	remaining: 1.92s
215:	learn: 9.1729420	total: 4.89s	remaining: 1.9s
216:	learn: 9.1364121	total: 4.91s	remaining: 1.88s
217:	learn: 9.0970859	total: 4.94s	remaining: 1.86s
218:	learn: 9.0611146	total: 4.97s	remaining: 1.84s
219:	learn: 9.0276741	total: 4.99s	remaining: 1.81s
220:	learn: 8.9977644	total: 5.01s	remaining: 1.79s
221:	learn: 8.9633156	total: 5.04s	remaining: 1.77s
222:	learn: 8.9313136	total: 5.06s	remaining: 1.75s
223:	learn: 8.9023504	total: 5.08s	remaining: 1.72s
224:	learn: 8.8741668	total: 5.11s	remaining: 1.7s
225:	learn: 8.8402639	total: 5.13s	remaining: 1.68s
226:	learn: 8.8061090	total: 5.16s	remaining: 1.66s
227:	learn: 8.7767795	total: 5.18s	remaining: 1.64s
228:	learn: 8.7514356	total: 5.2s	remaining: 1.61s
229:	learn: 8.7118727	total: 5.22s	remaining: 1.59s
230:	learn: 8.6759132	total: 5.25s	remaining: 1.57s
231:	learn: 8.6447220	total: 5.27s	remaining: 1.54s
232:	learn: 8.6102503	total: 5.29s	remaining: 1.52s
233:	learn: 8.5858738	total: 5.31s	remaining: 1.5s
234:	learn: 8.5595561	total: 5.34s	remaining: 1.48s
235:	learn: 8.5313778	total: 5.37s	remaining: 1.46s
236:	learn: 8.5053234	total: 5.39s	remaining: 1.43s
237:	learn: 8.4737268	total: 5.42s	remaining: 1.41s
238:	learn: 8.4414991	total: 5.44s	remaining: 1.39s
239:	learn: 8.4168374	total: 5.47s	remaining: 1.37s
240:	learn: 8.3862136	total: 5.49s	remaining: 1.34s
241:	learn: 8.3454081	total: 5.51s	remaining: 1.32s
242:	learn: 8.3145638	total: 5.54s	remaining: 1.3s
243:	learn: 8.3007136	total: 5.57s	remaining: 1.28s
244:	learn: 8.2708676	total: 5.59s	remaining: 1.25s
245:	learn: 8.2454265	total: 5.62s	remaining: 1.23s
246:	learn: 8.2117256	total: 5.64s	remaining: 1.21s
247:	learn: 8.1846870	total: 5.66s	remaining: 1.19s
248:	learn: 8.1602441	total: 5.68s	remaining: 1.16s
249:	learn: 8.1410728	total: 5.7s	remaining: 1.14s
250:	learn: 8.1138413	total: 5.72s	remaining: 1.12s
251:	learn: 8.0824887	total: 5.75s	remaining: 1.09s
252:	learn: 8.0557089	total: 5.78s	remaining: 1.07s
253:	learn: 8.0378239	total: 5.8s	remaining: 1.05s
254:	learn: 8.0018329	total: 5.83s	remaining: 1.03s
255:	learn: 7.9776523	total: 5.85s	remaining: 1s
256:	learn: 7.9437470	total: 5.88s	remaining: 983ms
257:	learn: 7.9170545	total: 5.9s	remaining: 961ms
258:	learn: 7.9065923	total: 5.92s	remaining: 938ms
259:	learn: 7.8777123	total: 5.94s	remaining: 915ms
260:	learn: 7.8495349	total: 5.97s	remaining: 892ms
261:	learn: 7.8238648	total: 6s	remaining: 870ms
262:	learn: 7.8001134	total: 6.02s	remaining: 848ms
263:	learn: 7.7619007	total: 6.04s	remaining: 824ms
264:	learn: 7.7370130	total: 6.07s	remaining: 801ms
265:	learn: 7.7109084	total: 6.09s	remaining: 778ms
266:	learn: 7.6914677	total: 6.11s	remaining: 755ms
267:	learn: 7.6883177	total: 6.13s	remaining: 732ms
268:	learn: 7.6603652	total: 6.16s	remaining: 709ms
269:	learn: 7.6441569	total: 6.18s	remaining: 687ms
270:	learn: 7.6236642	total: 6.2s	remaining: 664ms
271:	learn: 7.5954955	total: 6.24s	remaining: 642ms
272:	learn: 7.5722024	total: 6.26s	remaining: 619ms
273:	learn: 7.5424505	total: 6.29s	remaining: 597ms
274:	learn: 7.5242764	total: 6.31s	remaining: 574ms
275:	learn: 7.4998291	total: 6.33s	remaining: 551ms
276:	learn: 7.4835526	total: 6.35s	remaining: 528ms
277:	learn: 7.4492474	total: 6.38s	remaining: 505ms
278:	learn: 7.4246335	total: 6.4s	remaining: 482ms
279:	learn: 7.4104530	total: 6.43s	remaining: 459ms
280:	learn: 7.4016977	total: 6.45s	remaining: 436ms
281:	learn: 7.3964367	total: 6.48s	remaining: 413ms
282:	learn: 7.3818806	total: 6.5s	remaining: 390ms
283:	learn: 7.3577327	total: 6.52s	remaining: 367ms
284:	learn: 7.3346564	total: 6.54s	remaining: 344ms
285:	learn: 7.3215898	total: 6.57s	remaining: 321ms
286:	learn: 7.3070161	total: 6.59s	remaining: 298ms
287:	learn: 7.2839231	total: 6.61s	remaining: 276ms
288:	learn: 7.2664252	total: 6.63s	remaining: 253ms
289:	learn: 7.2505303	total: 6.67s	remaining: 230ms
290:	learn: 7.2286141	total: 6.69s	remaining: 207ms
291:	learn: 7.2008212	total: 6.71s	remaining: 184ms
292:	learn: 7.1800203	total: 6.74s	remaining: 161ms
293:	learn: 7.1485097	total: 6.76s	remaining: 138ms
294:	learn: 7.1283191	total: 6.78s	remaining: 115ms
295:	learn: 7.1112866	total: 6.8s	remaining: 91.9ms
296:	learn: 7.0786679	total: 6.82s	remaining: 68.9ms
297:	learn: 7.0685798	total: 6.84s	remaining: 45.9ms
298:	learn: 7.0633802	total: 6.87s	remaining: 23ms
299:	learn: 7.0504357	total: 6.89s	remaining: 0us
0:	learn: 46.1068821	total: 2.73ms	remaining: 817ms
1:	learn: 45.5186259	total: 23.4ms	remaining: 3.49s
2:	learn: 44.8982427	total: 44.6ms	remaining: 4.42s
3:	learn: 44.0813314	total: 66.1ms	remaining: 4.89s
4:	learn: 43.3256787	total: 87.4ms	remaining: 5.16s
5:	learn: 42.5989163	total: 117ms	remaining: 5.71s
6:	learn: 41.8412255	total: 140ms	remaining: 5.87s
7:	learn: 41.1629605	total: 163ms	remaining: 5.94s
8:	learn: 40.6649568	total: 185ms	remaining: 6s
9:	learn: 40.1755647	total: 209ms	remaining: 6.06s
10:	learn: 39.7843303	total: 231ms	remaining: 6.06s
11:	learn: 39.1263454	total: 253ms	remaining: 6.07s
12:	learn: 38.5049650	total: 273ms	remaining: 6.02s
13:	learn: 37.8816934	total: 294ms	remaining: 6.01s
14:	learn: 37.3925567	total: 321ms	remaining: 6.1s
15:	learn: 36.8080381	total: 346ms	remaining: 6.15s
16:	learn: 36.1363624	total: 368ms	remaining: 6.12s
17:	learn: 35.8171279	total: 389ms	remaining: 6.09s
18:	learn: 35.2225026	total: 409ms	remaining: 6.05s
19:	learn: 34.7373286	total: 430ms	remaining: 6.01s
20:	learn: 34.2563365	total: 450ms	remaining: 5.97s
21:	learn: 33.9368110	total: 471ms	remaining: 5.95s
22:	learn: 33.5339596	total: 491ms	remaining: 5.91s
23:	learn: 33.2090930	total: 513ms	remaining: 5.9s
24:	learn: 32.8232733	total: 544ms	remaining: 5.99s
25:	learn: 32.5065756	total: 568ms	remaining: 5.99s
26:	learn: 32.0091556	total: 590ms	remaining: 5.97s
27:	learn: 31.5901880	total: 612ms	remaining: 5.95s
28:	learn: 31.2602719	total: 635ms	remaining: 5.93s
29:	learn: 30.9824864	total: 657ms	remaining: 5.92s
30:	learn: 30.6837776	total: 679ms	remaining: 5.89s
31:	learn: 30.3784738	total: 701ms	remaining: 5.87s
32:	learn: 29.9551890	total: 724ms	remaining: 5.86s
33:	learn: 29.6880796	total: 749ms	remaining: 5.86s
34:	learn: 29.3535204	total: 771ms	remaining: 5.84s
35:	learn: 29.0983115	total: 792ms	remaining: 5.81s
36:	learn: 28.8227016	total: 814ms	remaining: 5.78s
37:	learn: 28.5948966	total: 834ms	remaining: 5.75s
38:	learn: 28.2092747	total: 855ms	remaining: 5.72s
39:	learn: 27.9292918	total: 875ms	remaining: 5.69s
40:	learn: 27.6917466	total: 897ms	remaining: 5.66s
41:	learn: 27.3898320	total: 918ms	remaining: 5.64s
42:	learn: 27.1423506	total: 941ms	remaining: 5.62s
43:	learn: 26.9143906	total: 967ms	remaining: 5.63s
44:	learn: 26.6628354	total: 994ms	remaining: 5.63s
45:	learn: 26.4436459	total: 1.02s	remaining: 5.62s
46:	learn: 26.2699511	total: 1.04s	remaining: 5.6s
47:	learn: 26.0687332	total: 1.06s	remaining: 5.57s
48:	learn: 25.8813257	total: 1.08s	remaining: 5.54s
49:	learn: 25.6417147	total: 1.1s	remaining: 5.51s
50:	learn: 25.4978473	total: 1.11s	remaining: 5.44s
51:	learn: 25.2508826	total: 1.14s	remaining: 5.42s
52:	learn: 24.9957667	total: 1.16s	remaining: 5.4s
53:	learn: 24.7897869	total: 1.18s	remaining: 5.39s
54:	learn: 24.6276395	total: 1.21s	remaining: 5.38s
55:	learn: 24.4484009	total: 1.23s	remaining: 5.35s
56:	learn: 24.2064871	total: 1.25s	remaining: 5.32s
57:	learn: 24.0355794	total: 1.27s	remaining: 5.3s
58:	learn: 23.8623034	total: 1.29s	remaining: 5.28s
59:	learn: 23.6009245	total: 1.31s	remaining: 5.26s
60:	learn: 23.4408382	total: 1.33s	remaining: 5.23s
61:	learn: 23.2362900	total: 1.36s	remaining: 5.21s
62:	learn: 23.0767254	total: 1.38s	remaining: 5.19s
63:	learn: 22.9370310	total: 1.41s	remaining: 5.21s
64:	learn: 22.7482690	total: 1.44s	remaining: 5.2s
65:	learn: 22.5740357	total: 1.46s	remaining: 5.18s
66:	learn: 22.4132876	total: 1.48s	remaining: 5.16s
67:	learn: 22.2551850	total: 1.5s	remaining: 5.14s
68:	learn: 22.0648127	total: 1.53s	remaining: 5.12s
69:	learn: 21.9204326	total: 1.55s	remaining: 5.09s
70:	learn: 21.8002567	total: 1.57s	remaining: 5.07s
71:	learn: 21.6545032	total: 1.59s	remaining: 5.05s
72:	learn: 21.5274427	total: 1.62s	remaining: 5.04s
73:	learn: 21.4235402	total: 1.65s	remaining: 5.04s
74:	learn: 21.2403786	total: 1.67s	remaining: 5.02s
75:	learn: 21.1019776	total: 1.7s	remaining: 5s
76:	learn: 20.9047503	total: 1.72s	remaining: 4.97s
77:	learn: 20.8140012	total: 1.74s	remaining: 4.95s
78:	learn: 20.7064981	total: 1.76s	remaining: 4.92s
79:	learn: 20.6033857	total: 1.78s	remaining: 4.9s
80:	learn: 20.4743532	total: 1.8s	remaining: 4.88s
81:	learn: 20.3272514	total: 1.83s	remaining: 4.86s
82:	learn: 20.2402909	total: 1.86s	remaining: 4.86s
83:	learn: 20.1344566	total: 1.88s	remaining: 4.84s
84:	learn: 19.9630804	total: 1.91s	remaining: 4.82s
85:	learn: 19.8196483	total: 1.93s	remaining: 4.79s
86:	learn: 19.6861323	total: 1.95s	remaining: 4.78s
87:	learn: 19.5689921	total: 1.97s	remaining: 4.75s
88:	learn: 19.4766099	total: 1.99s	remaining: 4.73s
89:	learn: 19.3523859	total: 2.02s	remaining: 4.71s
90:	learn: 19.2512307	total: 2.04s	remaining: 4.69s
91:	learn: 19.1541965	total: 2.07s	remaining: 4.68s
92:	learn: 18.9980138	total: 2.09s	remaining: 4.66s
93:	learn: 18.8241638	total: 2.12s	remaining: 4.64s
94:	learn: 18.6982820	total: 2.14s	remaining: 4.62s
95:	learn: 18.6170939	total: 2.16s	remaining: 4.59s
96:	learn: 18.5216398	total: 2.19s	remaining: 4.57s
97:	learn: 18.4188891	total: 2.21s	remaining: 4.55s
98:	learn: 18.3473321	total: 2.23s	remaining: 4.54s
99:	learn: 18.2744582	total: 2.27s	remaining: 4.53s
100:	learn: 18.1064776	total: 2.29s	remaining: 4.51s
101:	learn: 18.0564103	total: 2.31s	remaining: 4.49s
102:	learn: 17.9684931	total: 2.34s	remaining: 4.47s
103:	learn: 17.8577080	total: 2.36s	remaining: 4.45s
104:	learn: 17.7557863	total: 2.38s	remaining: 4.43s
105:	learn: 17.6830354	total: 2.41s	remaining: 4.4s
106:	learn: 17.5928641	total: 2.43s	remaining: 4.38s
107:	learn: 17.5447625	total: 2.45s	remaining: 4.36s
108:	learn: 17.4830060	total: 2.48s	remaining: 4.34s
109:	learn: 17.3760969	total: 2.5s	remaining: 4.32s
110:	learn: 17.2990516	total: 2.52s	remaining: 4.3s
111:	learn: 17.2626219	total: 2.55s	remaining: 4.28s
112:	learn: 17.1610712	total: 2.57s	remaining: 4.25s
113:	learn: 17.1129518	total: 2.59s	remaining: 4.23s
114:	learn: 16.9637799	total: 2.62s	remaining: 4.21s
115:	learn: 16.8724617	total: 2.64s	remaining: 4.18s
116:	learn: 16.7990982	total: 2.66s	remaining: 4.16s
117:	learn: 16.7354572	total: 2.69s	remaining: 4.15s
118:	learn: 16.6225750	total: 2.72s	remaining: 4.13s
119:	learn: 16.5778971	total: 2.74s	remaining: 4.11s
120:	learn: 16.5383915	total: 2.77s	remaining: 4.09s
121:	learn: 16.4801189	total: 2.79s	remaining: 4.07s
122:	learn: 16.3909340	total: 2.81s	remaining: 4.05s
123:	learn: 16.3129754	total: 2.83s	remaining: 4.02s
124:	learn: 16.2430907	total: 2.85s	remaining: 4s
125:	learn: 16.1779646	total: 2.88s	remaining: 3.97s
126:	learn: 16.1162194	total: 2.9s	remaining: 3.95s
127:	learn: 16.0084749	total: 2.93s	remaining: 3.93s
128:	learn: 15.9268705	total: 2.95s	remaining: 3.91s
129:	learn: 15.8770194	total: 2.97s	remaining: 3.88s
130:	learn: 15.8445342	total: 2.99s	remaining: 3.86s
131:	learn: 15.7799082	total: 3.01s	remaining: 3.83s
132:	learn: 15.7225612	total: 3.03s	remaining: 3.81s
133:	learn: 15.6327986	total: 3.05s	remaining: 3.78s
134:	learn: 15.5560479	total: 3.08s	remaining: 3.76s
135:	learn: 15.4650063	total: 3.1s	remaining: 3.73s
136:	learn: 15.4439565	total: 3.13s	remaining: 3.72s
137:	learn: 15.3723683	total: 3.15s	remaining: 3.7s
138:	learn: 15.2867520	total: 3.18s	remaining: 3.68s
139:	learn: 15.2008060	total: 3.2s	remaining: 3.66s
140:	learn: 15.1226253	total: 3.22s	remaining: 3.63s
141:	learn: 15.0392603	total: 3.24s	remaining: 3.61s
142:	learn: 15.0209441	total: 3.26s	remaining: 3.58s
143:	learn: 14.9691162	total: 3.29s	remaining: 3.56s
144:	learn: 14.8809723	total: 3.31s	remaining: 3.54s
145:	learn: 14.7790501	total: 3.33s	remaining: 3.51s
146:	learn: 14.7124707	total: 3.36s	remaining: 3.49s
147:	learn: 14.6505409	total: 3.38s	remaining: 3.47s
148:	learn: 14.5977957	total: 3.4s	remaining: 3.44s
149:	learn: 14.4563773	total: 3.42s	remaining: 3.42s
150:	learn: 14.3903954	total: 3.44s	remaining: 3.4s
151:	learn: 14.3677191	total: 3.46s	remaining: 3.37s
152:	learn: 14.3170088	total: 3.48s	remaining: 3.34s
153:	learn: 14.2212460	total: 3.5s	remaining: 3.32s
154:	learn: 14.1865067	total: 3.52s	remaining: 3.3s
155:	learn: 14.1133763	total: 3.56s	remaining: 3.28s
156:	learn: 14.0632935	total: 3.58s	remaining: 3.26s
157:	learn: 14.0317962	total: 3.6s	remaining: 3.24s
158:	learn: 13.9531527	total: 3.62s	remaining: 3.21s
159:	learn: 13.9361664	total: 3.65s	remaining: 3.19s
160:	learn: 13.8152344	total: 3.67s	remaining: 3.17s
161:	learn: 13.7794016	total: 3.69s	remaining: 3.14s
162:	learn: 13.7554484	total: 3.71s	remaining: 3.12s
163:	learn: 13.6786599	total: 3.73s	remaining: 3.1s
164:	learn: 13.6580934	total: 3.76s	remaining: 3.08s
165:	learn: 13.6135467	total: 3.78s	remaining: 3.05s
166:	learn: 13.5774402	total: 3.8s	remaining: 3.03s
167:	learn: 13.4665364	total: 3.82s	remaining: 3s
168:	learn: 13.4457745	total: 3.84s	remaining: 2.98s
169:	learn: 13.4313272	total: 3.86s	remaining: 2.96s
170:	learn: 13.3740130	total: 3.88s	remaining: 2.93s
171:	learn: 13.3012082	total: 3.9s	remaining: 2.9s
172:	learn: 13.2580888	total: 3.92s	remaining: 2.88s
173:	learn: 13.2260963	total: 3.95s	remaining: 2.86s
174:	learn: 13.1934687	total: 3.98s	remaining: 2.84s
175:	learn: 13.1567898	total: 4s	remaining: 2.82s
176:	learn: 13.1207167	total: 4.03s	remaining: 2.8s
177:	learn: 13.0453975	total: 4.05s	remaining: 2.77s
178:	learn: 12.9667806	total: 4.07s	remaining: 2.75s
179:	learn: 12.9050987	total: 4.09s	remaining: 2.73s
180:	learn: 12.7877614	total: 4.11s	remaining: 2.7s
181:	learn: 12.7246635	total: 4.13s	remaining: 2.68s
182:	learn: 12.6649785	total: 4.16s	remaining: 2.66s
183:	learn: 12.5966292	total: 4.19s	remaining: 2.64s
184:	learn: 12.5791866	total: 4.21s	remaining: 2.62s
185:	learn: 12.5265550	total: 4.23s	remaining: 2.59s
186:	learn: 12.4747790	total: 4.25s	remaining: 2.57s
187:	learn: 12.3639334	total: 4.27s	remaining: 2.54s
188:	learn: 12.3060104	total: 4.29s	remaining: 2.52s
189:	learn: 12.2108815	total: 4.31s	remaining: 2.49s
190:	learn: 12.1295363	total: 4.33s	remaining: 2.47s
191:	learn: 12.0828143	total: 4.35s	remaining: 2.44s
192:	learn: 12.0650770	total: 4.37s	remaining: 2.42s
193:	learn: 11.9979395	total: 4.39s	remaining: 2.4s
194:	learn: 11.9754814	total: 4.42s	remaining: 2.38s
195:	learn: 11.9328555	total: 4.44s	remaining: 2.36s
196:	learn: 11.9122042	total: 4.47s	remaining: 2.33s
197:	learn: 11.8518842	total: 4.49s	remaining: 2.31s
198:	learn: 11.8304153	total: 4.51s	remaining: 2.29s
199:	learn: 11.8121741	total: 4.53s	remaining: 2.27s
200:	learn: 11.7411942	total: 4.55s	remaining: 2.24s
201:	learn: 11.7329288	total: 4.57s	remaining: 2.22s
202:	learn: 11.7074830	total: 4.6s	remaining: 2.2s
203:	learn: 11.6479110	total: 4.63s	remaining: 2.18s
204:	learn: 11.6341037	total: 4.65s	remaining: 2.15s
205:	learn: 11.5703505	total: 4.67s	remaining: 2.13s
206:	learn: 11.5415491	total: 4.69s	remaining: 2.1s
207:	learn: 11.5016416	total: 4.71s	remaining: 2.08s
208:	learn: 11.4843453	total: 4.73s	remaining: 2.06s
209:	learn: 11.4556878	total: 4.75s	remaining: 2.03s
210:	learn: 11.3953637	total: 4.77s	remaining: 2.01s
211:	learn: 11.3640248	total: 4.79s	remaining: 1.99s
212:	learn: 11.3189656	total: 4.81s	remaining: 1.97s
213:	learn: 11.3023318	total: 4.84s	remaining: 1.95s
214:	learn: 11.2812809	total: 4.88s	remaining: 1.93s
215:	learn: 11.2649164	total: 4.9s	remaining: 1.91s
216:	learn: 11.2249674	total: 4.93s	remaining: 1.89s
217:	learn: 11.1694593	total: 4.95s	remaining: 1.86s
218:	learn: 11.1504747	total: 4.98s	remaining: 1.84s
219:	learn: 11.1099205	total: 5.01s	remaining: 1.82s
220:	learn: 11.0946598	total: 5.03s	remaining: 1.8s
221:	learn: 11.0335988	total: 5.06s	remaining: 1.78s
222:	learn: 11.0096492	total: 5.08s	remaining: 1.75s
223:	learn: 10.9672501	total: 5.11s	remaining: 1.73s
224:	learn: 10.9507570	total: 5.13s	remaining: 1.71s
225:	learn: 10.9314289	total: 5.15s	remaining: 1.69s
226:	learn: 10.8670947	total: 5.17s	remaining: 1.66s
227:	learn: 10.8529443	total: 5.19s	remaining: 1.64s
228:	learn: 10.8318645	total: 5.22s	remaining: 1.62s
229:	learn: 10.8156588	total: 5.24s	remaining: 1.59s
230:	learn: 10.7951131	total: 5.27s	remaining: 1.57s
231:	learn: 10.7795677	total: 5.29s	remaining: 1.55s
232:	learn: 10.7366028	total: 5.32s	remaining: 1.53s
233:	learn: 10.7193612	total: 5.34s	remaining: 1.51s
234:	learn: 10.6990737	total: 5.37s	remaining: 1.48s
235:	learn: 10.6205495	total: 5.38s	remaining: 1.46s
236:	learn: 10.5976748	total: 5.41s	remaining: 1.44s
237:	learn: 10.5212017	total: 5.43s	remaining: 1.41s
238:	learn: 10.4839783	total: 5.45s	remaining: 1.39s
239:	learn: 10.4723193	total: 5.48s	remaining: 1.37s
240:	learn: 10.4438944	total: 5.5s	remaining: 1.35s
241:	learn: 10.4068644	total: 5.52s	remaining: 1.32s
242:	learn: 10.3777867	total: 5.54s	remaining: 1.3s
243:	learn: 10.3633196	total: 5.57s	remaining: 1.28s
244:	learn: 10.3508529	total: 5.59s	remaining: 1.25s
245:	learn: 10.3391285	total: 5.61s	remaining: 1.23s
246:	learn: 10.3202046	total: 5.63s	remaining: 1.21s
247:	learn: 10.2679507	total: 5.65s	remaining: 1.19s
248:	learn: 10.2444411	total: 5.68s	remaining: 1.16s
249:	learn: 10.1978707	total: 5.71s	remaining: 1.14s
250:	learn: 10.1746210	total: 5.74s	remaining: 1.12s
251:	learn: 10.1455445	total: 5.76s	remaining: 1.1s
252:	learn: 10.1234292	total: 5.78s	remaining: 1.07s
253:	learn: 10.1009263	total: 5.81s	remaining: 1.05s
254:	learn: 10.0506537	total: 5.83s	remaining: 1.03s
255:	learn: 9.9973799	total: 5.85s	remaining: 1s
256:	learn: 9.9923793	total: 5.88s	remaining: 983ms
257:	learn: 9.9592135	total: 5.9s	remaining: 961ms
258:	learn: 9.9455912	total: 5.93s	remaining: 938ms
259:	learn: 9.9351881	total: 5.95s	remaining: 915ms
260:	learn: 9.8843396	total: 5.97s	remaining: 892ms
261:	learn: 9.8732841	total: 5.99s	remaining: 869ms
262:	learn: 9.8530402	total: 6.02s	remaining: 846ms
263:	learn: 9.8379209	total: 6.04s	remaining: 823ms
264:	learn: 9.8012657	total: 6.06s	remaining: 800ms
265:	learn: 9.7881742	total: 6.08s	remaining: 777ms
266:	learn: 9.7723933	total: 6.1s	remaining: 754ms
267:	learn: 9.7613461	total: 6.14s	remaining: 733ms
268:	learn: 9.7214417	total: 6.16s	remaining: 710ms
269:	learn: 9.6976897	total: 6.18s	remaining: 687ms
270:	learn: 9.6919786	total: 6.21s	remaining: 664ms
271:	learn: 9.6263135	total: 6.23s	remaining: 642ms
272:	learn: 9.6175527	total: 6.25s	remaining: 618ms
273:	learn: 9.6110661	total: 6.28s	remaining: 596ms
274:	learn: 9.5992549	total: 6.3s	remaining: 573ms
275:	learn: 9.5709079	total: 6.33s	remaining: 550ms
276:	learn: 9.5584595	total: 6.35s	remaining: 528ms
277:	learn: 9.5492847	total: 6.38s	remaining: 505ms
278:	learn: 9.5261231	total: 6.4s	remaining: 482ms
279:	learn: 9.5160964	total: 6.42s	remaining: 458ms
280:	learn: 9.4945891	total: 6.44s	remaining: 435ms
281:	learn: 9.4659751	total: 6.46s	remaining: 412ms
282:	learn: 9.4474987	total: 6.48s	remaining: 389ms
283:	learn: 9.4369109	total: 6.5s	remaining: 366ms
284:	learn: 9.4285200	total: 6.53s	remaining: 344ms
285:	learn: 9.4124421	total: 6.56s	remaining: 321ms
286:	learn: 9.3903730	total: 6.58s	remaining: 298ms
287:	learn: 9.3240575	total: 6.61s	remaining: 275ms
288:	learn: 9.3124220	total: 6.63s	remaining: 252ms
289:	learn: 9.2881271	total: 6.65s	remaining: 229ms
290:	learn: 9.2713655	total: 6.67s	remaining: 206ms
291:	learn: 9.2641531	total: 6.69s	remaining: 183ms
292:	learn: 9.2524129	total: 6.72s	remaining: 160ms
293:	learn: 9.2343575	total: 6.74s	remaining: 138ms
294:	learn: 9.1973322	total: 6.77s	remaining: 115ms
295:	learn: 9.1565802	total: 6.79s	remaining: 91.8ms
296:	learn: 9.1428051	total: 6.81s	remaining: 68.8ms
297:	learn: 9.1293653	total: 6.83s	remaining: 45.9ms
298:	learn: 9.1105879	total: 6.86s	remaining: 22.9ms
299:	learn: 9.1005583	total: 6.88s	remaining: 0us
0:	learn: 46.9033478	total: 21.9ms	remaining: 6.54s
1:	learn: 46.0879122	total: 42.7ms	remaining: 6.37s
2:	learn: 45.6500716	total: 64ms	remaining: 6.34s
3:	learn: 44.8037484	total: 85.1ms	remaining: 6.29s
4:	learn: 44.1513690	total: 107ms	remaining: 6.31s
5:	learn: 43.6033150	total: 127ms	remaining: 6.23s
6:	learn: 43.0669517	total: 147ms	remaining: 6.14s
7:	learn: 42.4011723	total: 166ms	remaining: 6.06s
8:	learn: 41.7060291	total: 187ms	remaining: 6.03s
9:	learn: 41.0058676	total: 206ms	remaining: 5.97s
10:	learn: 40.5518615	total: 227ms	remaining: 5.96s
11:	learn: 39.9452722	total: 248ms	remaining: 5.96s
12:	learn: 39.2539405	total: 269ms	remaining: 5.95s
13:	learn: 38.6690449	total: 298ms	remaining: 6.09s
14:	learn: 38.2389829	total: 322ms	remaining: 6.11s
15:	learn: 37.6795608	total: 341ms	remaining: 6.06s
16:	learn: 37.2562038	total: 363ms	remaining: 6.04s
17:	learn: 36.9516174	total: 384ms	remaining: 6.01s
18:	learn: 36.6189442	total: 405ms	remaining: 5.99s
19:	learn: 36.0530153	total: 425ms	remaining: 5.95s
20:	learn: 35.6536993	total: 444ms	remaining: 5.9s
21:	learn: 35.3616790	total: 466ms	remaining: 5.88s
22:	learn: 35.0627472	total: 490ms	remaining: 5.89s
23:	learn: 34.5889995	total: 519ms	remaining: 5.97s
24:	learn: 34.0395768	total: 543ms	remaining: 5.97s
25:	learn: 33.6846146	total: 565ms	remaining: 5.96s
26:	learn: 33.2581583	total: 588ms	remaining: 5.95s
27:	learn: 32.9043599	total: 610ms	remaining: 5.93s
28:	learn: 32.4603681	total: 629ms	remaining: 5.88s
29:	learn: 32.0784225	total: 650ms	remaining: 5.85s
30:	learn: 31.6654390	total: 672ms	remaining: 5.83s
31:	learn: 31.3473625	total: 695ms	remaining: 5.82s
32:	learn: 30.9124340	total: 723ms	remaining: 5.85s
33:	learn: 30.6354683	total: 746ms	remaining: 5.83s
34:	learn: 30.4404098	total: 765ms	remaining: 5.79s
35:	learn: 30.1914372	total: 785ms	remaining: 5.76s
36:	learn: 29.8249863	total: 805ms	remaining: 5.72s
37:	learn: 29.5196757	total: 826ms	remaining: 5.7s
38:	learn: 29.2605473	total: 847ms	remaining: 5.67s
39:	learn: 28.9803384	total: 868ms	remaining: 5.64s
40:	learn: 28.7535173	total: 889ms	remaining: 5.61s
41:	learn: 28.3888690	total: 910ms	remaining: 5.59s
42:	learn: 28.1381916	total: 937ms	remaining: 5.6s
43:	learn: 27.9181568	total: 969ms	remaining: 5.64s
44:	learn: 27.6047071	total: 992ms	remaining: 5.62s
45:	learn: 27.4164606	total: 1.01s	remaining: 5.6s
46:	learn: 27.0321668	total: 1.04s	remaining: 5.59s
47:	learn: 26.7987572	total: 1.06s	remaining: 5.57s
48:	learn: 26.6235810	total: 1.08s	remaining: 5.54s
49:	learn: 26.4084368	total: 1.1s	remaining: 5.52s
50:	learn: 26.1773159	total: 1.13s	remaining: 5.49s
51:	learn: 26.0200665	total: 1.15s	remaining: 5.47s
52:	learn: 25.8168330	total: 1.17s	remaining: 5.47s
53:	learn: 25.6154150	total: 1.2s	remaining: 5.44s
54:	learn: 25.2351738	total: 1.21s	remaining: 5.41s
55:	learn: 24.9587143	total: 1.23s	remaining: 5.37s
56:	learn: 24.7682982	total: 1.25s	remaining: 5.35s
57:	learn: 24.4602191	total: 1.27s	remaining: 5.32s
58:	learn: 24.3002094	total: 1.3s	remaining: 5.29s
59:	learn: 24.1509360	total: 1.32s	remaining: 5.26s
60:	learn: 23.9855802	total: 1.34s	remaining: 5.24s
61:	learn: 23.7747817	total: 1.36s	remaining: 5.22s
62:	learn: 23.5415832	total: 1.39s	remaining: 5.24s
63:	learn: 23.3540053	total: 1.42s	remaining: 5.23s
64:	learn: 23.1213752	total: 1.44s	remaining: 5.22s
65:	learn: 22.9729934	total: 1.47s	remaining: 5.2s
66:	learn: 22.8237351	total: 1.49s	remaining: 5.19s
67:	learn: 22.6716691	total: 1.51s	remaining: 5.17s
68:	learn: 22.5296861	total: 1.54s	remaining: 5.14s
69:	learn: 22.3725425	total: 1.56s	remaining: 5.12s
70:	learn: 22.2639328	total: 1.59s	remaining: 5.12s
71:	learn: 22.1174316	total: 1.61s	remaining: 5.1s
72:	learn: 21.9916264	total: 1.63s	remaining: 5.08s
73:	learn: 21.7797959	total: 1.65s	remaining: 5.05s
74:	learn: 21.6350589	total: 1.67s	remaining: 5.02s
75:	learn: 21.4910112	total: 1.7s	remaining: 5s
76:	learn: 21.3068682	total: 1.72s	remaining: 4.98s
77:	learn: 21.1725772	total: 1.74s	remaining: 4.95s
78:	learn: 21.0526496	total: 1.76s	remaining: 4.93s
79:	learn: 20.9534374	total: 1.78s	remaining: 4.91s
80:	learn: 20.8168422	total: 1.81s	remaining: 4.91s
81:	learn: 20.7138006	total: 1.84s	remaining: 4.89s
82:	learn: 20.5259907	total: 1.86s	remaining: 4.88s
83:	learn: 20.3881958	total: 1.89s	remaining: 4.86s
84:	learn: 20.2702350	total: 1.91s	remaining: 4.84s
85:	learn: 20.1185381	total: 1.94s	remaining: 4.82s
86:	learn: 19.9815763	total: 1.96s	remaining: 4.79s
87:	learn: 19.8563040	total: 1.98s	remaining: 4.77s
88:	learn: 19.7629932	total: 2s	remaining: 4.75s
89:	learn: 19.6361676	total: 2.04s	remaining: 4.75s
90:	learn: 19.5189179	total: 2.06s	remaining: 4.73s
91:	learn: 19.4368807	total: 2.08s	remaining: 4.7s
92:	learn: 19.3491759	total: 2.1s	remaining: 4.68s
93:	learn: 19.2441781	total: 2.12s	remaining: 4.65s
94:	learn: 19.1595312	total: 2.15s	remaining: 4.63s
95:	learn: 19.0732186	total: 2.17s	remaining: 4.6s
96:	learn: 18.9664261	total: 2.19s	remaining: 4.58s
97:	learn: 18.8752837	total: 2.21s	remaining: 4.55s
98:	learn: 18.7884732	total: 2.23s	remaining: 4.54s
99:	learn: 18.6638300	total: 2.26s	remaining: 4.52s
100:	learn: 18.5456185	total: 2.29s	remaining: 4.5s
101:	learn: 18.4491938	total: 2.31s	remaining: 4.48s
102:	learn: 18.3712210	total: 2.33s	remaining: 4.46s
103:	learn: 18.2907426	total: 2.35s	remaining: 4.44s
104:	learn: 18.2393122	total: 2.38s	remaining: 4.42s
105:	learn: 18.1493295	total: 2.4s	remaining: 4.4s
106:	learn: 18.0741996	total: 2.42s	remaining: 4.37s
107:	learn: 17.9763617	total: 2.45s	remaining: 4.35s
108:	learn: 17.8511711	total: 2.48s	remaining: 4.34s
109:	learn: 17.7975521	total: 2.5s	remaining: 4.32s
110:	learn: 17.7280526	total: 2.52s	remaining: 4.29s
111:	learn: 17.6960456	total: 2.54s	remaining: 4.27s
112:	learn: 17.6209638	total: 2.56s	remaining: 4.25s
113:	learn: 17.5389165	total: 2.59s	remaining: 4.22s
114:	learn: 17.4874967	total: 2.61s	remaining: 4.2s
115:	learn: 17.3744401	total: 2.63s	remaining: 4.17s
116:	learn: 17.2762107	total: 2.65s	remaining: 4.15s
117:	learn: 17.1930198	total: 2.68s	remaining: 4.13s
118:	learn: 17.0804375	total: 2.71s	remaining: 4.12s
119:	learn: 17.0100383	total: 2.73s	remaining: 4.1s
120:	learn: 16.9515165	total: 2.75s	remaining: 4.08s
121:	learn: 16.8221030	total: 2.78s	remaining: 4.05s
122:	learn: 16.7270258	total: 2.8s	remaining: 4.03s
123:	learn: 16.6537882	total: 2.82s	remaining: 4.01s
124:	learn: 16.5324707	total: 2.85s	remaining: 3.98s
125:	learn: 16.4705263	total: 2.87s	remaining: 3.96s
126:	learn: 16.4130833	total: 2.89s	remaining: 3.94s
127:	learn: 16.3480615	total: 2.92s	remaining: 3.92s
128:	learn: 16.2228205	total: 2.94s	remaining: 3.9s
129:	learn: 16.1299284	total: 2.96s	remaining: 3.87s
130:	learn: 16.0593548	total: 2.98s	remaining: 3.85s
131:	learn: 15.9926308	total: 3s	remaining: 3.82s
132:	learn: 15.9351137	total: 3.02s	remaining: 3.8s
133:	learn: 15.8301951	total: 3.04s	remaining: 3.77s
134:	learn: 15.7606319	total: 3.07s	remaining: 3.75s
135:	learn: 15.6217872	total: 3.09s	remaining: 3.73s
136:	learn: 15.5200572	total: 3.12s	remaining: 3.71s
137:	learn: 15.4565615	total: 3.15s	remaining: 3.69s
138:	learn: 15.3854906	total: 3.17s	remaining: 3.67s
139:	learn: 15.3407126	total: 3.19s	remaining: 3.65s
140:	learn: 15.2532536	total: 3.21s	remaining: 3.62s
141:	learn: 15.2129349	total: 3.23s	remaining: 3.6s
142:	learn: 15.1732289	total: 3.25s	remaining: 3.57s
143:	learn: 15.1138929	total: 3.27s	remaining: 3.55s
144:	learn: 15.0326156	total: 3.3s	remaining: 3.52s
145:	learn: 14.9309324	total: 3.32s	remaining: 3.5s
146:	learn: 14.8657435	total: 3.35s	remaining: 3.48s
147:	learn: 14.8314609	total: 3.37s	remaining: 3.46s
148:	learn: 14.7431116	total: 3.39s	remaining: 3.43s
149:	learn: 14.6590351	total: 3.41s	remaining: 3.41s
150:	learn: 14.5339193	total: 3.43s	remaining: 3.38s
151:	learn: 14.4639900	total: 3.45s	remaining: 3.36s
152:	learn: 14.3967135	total: 3.47s	remaining: 3.33s
153:	learn: 14.3077714	total: 3.49s	remaining: 3.31s
154:	learn: 14.2227051	total: 3.52s	remaining: 3.29s
155:	learn: 14.1541051	total: 3.54s	remaining: 3.27s
156:	learn: 14.1099666	total: 3.56s	remaining: 3.25s
157:	learn: 14.0474387	total: 3.59s	remaining: 3.23s
158:	learn: 13.9402729	total: 3.61s	remaining: 3.2s
159:	learn: 13.8714208	total: 3.63s	remaining: 3.18s
160:	learn: 13.7798180	total: 3.65s	remaining: 3.16s
161:	learn: 13.6785277	total: 3.67s	remaining: 3.13s
162:	learn: 13.5985050	total: 3.69s	remaining: 3.1s
163:	learn: 13.5743583	total: 3.71s	remaining: 3.08s
164:	learn: 13.4271067	total: 3.74s	remaining: 3.06s
165:	learn: 13.3787394	total: 3.76s	remaining: 3.04s
166:	learn: 13.3132605	total: 3.79s	remaining: 3.02s
167:	learn: 13.2185878	total: 3.81s	remaining: 2.99s
168:	learn: 13.2025287	total: 3.83s	remaining: 2.97s
169:	learn: 13.1393556	total: 3.85s	remaining: 2.94s
170:	learn: 13.0898086	total: 3.87s	remaining: 2.92s
171:	learn: 12.9970587	total: 3.89s	remaining: 2.9s
172:	learn: 12.8778568	total: 3.91s	remaining: 2.87s
173:	learn: 12.7715298	total: 3.93s	remaining: 2.85s
174:	learn: 12.7109534	total: 3.96s	remaining: 2.83s
175:	learn: 12.6499951	total: 3.98s	remaining: 2.8s
176:	learn: 12.5781341	total: 4.01s	remaining: 2.79s
177:	learn: 12.5302935	total: 4.03s	remaining: 2.76s
178:	learn: 12.4570172	total: 4.06s	remaining: 2.74s
179:	learn: 12.3852468	total: 4.08s	remaining: 2.72s
180:	learn: 12.3218479	total: 4.1s	remaining: 2.7s
181:	learn: 12.2146968	total: 4.13s	remaining: 2.67s
182:	learn: 12.0872854	total: 4.15s	remaining: 2.65s
183:	learn: 12.0609707	total: 4.17s	remaining: 2.63s
184:	learn: 11.9443946	total: 4.19s	remaining: 2.6s
185:	learn: 11.8745310	total: 4.22s	remaining: 2.58s
186:	learn: 11.7895958	total: 4.24s	remaining: 2.56s
187:	learn: 11.7497478	total: 4.26s	remaining: 2.54s
188:	learn: 11.6831548	total: 4.28s	remaining: 2.51s
189:	learn: 11.6608564	total: 4.3s	remaining: 2.49s
190:	learn: 11.6399052	total: 4.32s	remaining: 2.46s
191:	learn: 11.5714004	total: 4.34s	remaining: 2.44s
192:	learn: 11.5427662	total: 4.36s	remaining: 2.42s
193:	learn: 11.4806208	total: 4.38s	remaining: 2.4s
194:	learn: 11.4691327	total: 4.41s	remaining: 2.37s
195:	learn: 11.4134172	total: 4.43s	remaining: 2.35s
196:	learn: 11.3438004	total: 4.46s	remaining: 2.33s
197:	learn: 11.3015149	total: 4.48s	remaining: 2.31s
198:	learn: 11.2493782	total: 4.51s	remaining: 2.29s
199:	learn: 11.1895539	total: 4.53s	remaining: 2.27s
200:	learn: 11.1683522	total: 4.55s	remaining: 2.24s
201:	learn: 11.1466698	total: 4.58s	remaining: 2.22s
202:	learn: 11.0701090	total: 4.6s	remaining: 2.2s
203:	learn: 11.0293322	total: 4.63s	remaining: 2.18s
204:	learn: 10.9637933	total: 4.65s	remaining: 2.15s
205:	learn: 10.9171875	total: 4.67s	remaining: 2.13s
206:	learn: 10.8620107	total: 4.69s	remaining: 2.11s
207:	learn: 10.8411017	total: 4.71s	remaining: 2.08s
208:	learn: 10.8219871	total: 4.73s	remaining: 2.06s
209:	learn: 10.7790684	total: 4.75s	remaining: 2.04s
210:	learn: 10.7460005	total: 4.78s	remaining: 2.02s
211:	learn: 10.6884581	total: 4.8s	remaining: 1.99s
212:	learn: 10.6215835	total: 4.83s	remaining: 1.97s
213:	learn: 10.6112487	total: 4.86s	remaining: 1.95s
214:	learn: 10.5515861	total: 4.88s	remaining: 1.93s
215:	learn: 10.5005611	total: 4.9s	remaining: 1.91s
216:	learn: 10.4827029	total: 4.93s	remaining: 1.89s
217:	learn: 10.4671266	total: 4.95s	remaining: 1.86s
218:	learn: 10.4471117	total: 4.97s	remaining: 1.84s
219:	learn: 10.4286227	total: 4.99s	remaining: 1.81s
220:	learn: 10.4102334	total: 5.02s	remaining: 1.79s
221:	learn: 10.3587364	total: 5.04s	remaining: 1.77s
222:	learn: 10.3185900	total: 5.07s	remaining: 1.75s
223:	learn: 10.3047695	total: 5.09s	remaining: 1.73s
224:	learn: 10.2861237	total: 5.11s	remaining: 1.7s
225:	learn: 10.2723077	total: 5.14s	remaining: 1.68s
226:	learn: 10.2566131	total: 5.16s	remaining: 1.66s
227:	learn: 10.2444076	total: 5.18s	remaining: 1.64s
228:	learn: 10.2035037	total: 5.2s	remaining: 1.61s
229:	learn: 10.1151548	total: 5.23s	remaining: 1.59s
230:	learn: 10.0952083	total: 5.26s	remaining: 1.57s
231:	learn: 10.0785525	total: 5.28s	remaining: 1.55s
232:	learn: 10.0582314	total: 5.31s	remaining: 1.53s
233:	learn: 10.0399370	total: 5.33s	remaining: 1.5s
234:	learn: 10.0277451	total: 5.36s	remaining: 1.48s
235:	learn: 9.9732252	total: 5.38s	remaining: 1.46s
236:	learn: 9.9602566	total: 5.4s	remaining: 1.44s
237:	learn: 9.9117022	total: 5.43s	remaining: 1.41s
238:	learn: 9.8771993	total: 5.45s	remaining: 1.39s
239:	learn: 9.8360533	total: 5.48s	remaining: 1.37s
240:	learn: 9.8228622	total: 5.5s	remaining: 1.35s
241:	learn: 9.7831566	total: 5.53s	remaining: 1.32s
242:	learn: 9.7238030	total: 5.55s	remaining: 1.3s
243:	learn: 9.6756010	total: 5.57s	remaining: 1.28s
244:	learn: 9.6573706	total: 5.59s	remaining: 1.25s
245:	learn: 9.6190420	total: 5.61s	remaining: 1.23s
246:	learn: 9.5963929	total: 5.63s	remaining: 1.21s
247:	learn: 9.5838279	total: 5.66s	remaining: 1.19s
248:	learn: 9.5516337	total: 5.69s	remaining: 1.17s
249:	learn: 9.5319568	total: 5.72s	remaining: 1.14s
250:	learn: 9.5009733	total: 5.74s	remaining: 1.12s
251:	learn: 9.4738909	total: 5.77s	remaining: 1.1s
252:	learn: 9.4573897	total: 5.79s	remaining: 1.07s
253:	learn: 9.4238859	total: 5.81s	remaining: 1.05s
254:	learn: 9.3792324	total: 5.84s	remaining: 1.03s
255:	learn: 9.3552571	total: 5.86s	remaining: 1.01s
256:	learn: 9.3036260	total: 5.88s	remaining: 984ms
257:	learn: 9.2868142	total: 5.91s	remaining: 962ms
258:	learn: 9.2740504	total: 5.93s	remaining: 940ms
259:	learn: 9.2329336	total: 5.96s	remaining: 916ms
260:	learn: 9.2190698	total: 5.98s	remaining: 893ms
261:	learn: 9.2074817	total: 6s	remaining: 870ms
262:	learn: 9.1724174	total: 6.02s	remaining: 847ms
263:	learn: 9.1293699	total: 6.04s	remaining: 824ms
264:	learn: 9.1025091	total: 6.07s	remaining: 801ms
265:	learn: 9.0893697	total: 6.09s	remaining: 778ms
266:	learn: 9.0733581	total: 6.13s	remaining: 757ms
267:	learn: 9.0599268	total: 6.15s	remaining: 734ms
268:	learn: 9.0277334	total: 6.17s	remaining: 712ms
269:	learn: 8.9860960	total: 6.2s	remaining: 689ms
270:	learn: 8.9478404	total: 6.22s	remaining: 666ms
271:	learn: 8.9074990	total: 6.25s	remaining: 643ms
272:	learn: 8.8851827	total: 6.27s	remaining: 620ms
273:	learn: 8.8741463	total: 6.29s	remaining: 597ms
274:	learn: 8.8422813	total: 6.32s	remaining: 575ms
275:	learn: 8.7887362	total: 6.35s	remaining: 552ms
276:	learn: 8.7766205	total: 6.37s	remaining: 529ms
277:	learn: 8.7606125	total: 6.39s	remaining: 506ms
278:	learn: 8.7302098	total: 6.41s	remaining: 483ms
279:	learn: 8.7180658	total: 6.43s	remaining: 460ms
280:	learn: 8.6784364	total: 6.46s	remaining: 436ms
281:	learn: 8.6341139	total: 6.48s	remaining: 413ms
282:	learn: 8.6092132	total: 6.5s	remaining: 390ms
283:	learn: 8.5723040	total: 6.53s	remaining: 368ms
284:	learn: 8.5318798	total: 6.55s	remaining: 345ms
285:	learn: 8.5051575	total: 6.58s	remaining: 322ms
286:	learn: 8.4896135	total: 6.6s	remaining: 299ms
287:	learn: 8.4665233	total: 6.62s	remaining: 276ms
288:	learn: 8.4563622	total: 6.64s	remaining: 253ms
289:	learn: 8.4221661	total: 6.67s	remaining: 230ms
290:	learn: 8.3953479	total: 6.69s	remaining: 207ms
291:	learn: 8.3735779	total: 6.71s	remaining: 184ms
292:	learn: 8.3452844	total: 6.74s	remaining: 161ms
293:	learn: 8.3141538	total: 6.76s	remaining: 138ms
294:	learn: 8.3014432	total: 6.78s	remaining: 115ms
295:	learn: 8.2802794	total: 6.8s	remaining: 92ms
296:	learn: 8.2485275	total: 6.82s	remaining: 68.9ms
297:	learn: 8.2239488	total: 6.85s	remaining: 46ms
298:	learn: 8.1877191	total: 6.87s	remaining: 23ms
299:	learn: 8.1551355	total: 6.89s	remaining: 0us
0:	learn: 27.6242191	total: 25.4ms	remaining: 7.59s
1:	learn: 27.3247973	total: 49ms	remaining: 7.31s
2:	learn: 26.9048262	total: 73.1ms	remaining: 7.24s
3:	learn: 26.6094870	total: 97.6ms	remaining: 7.22s
4:	learn: 26.2335903	total: 123ms	remaining: 7.28s
5:	learn: 25.9065752	total: 153ms	remaining: 7.48s
6:	learn: 25.6303453	total: 179ms	remaining: 7.51s
7:	learn: 25.2422673	total: 204ms	remaining: 7.43s
8:	learn: 24.9092185	total: 227ms	remaining: 7.34s
9:	learn: 24.6380278	total: 251ms	remaining: 7.27s
10:	learn: 24.2990126	total: 275ms	remaining: 7.21s
11:	learn: 24.0194492	total: 299ms	remaining: 7.18s
12:	learn: 23.7720807	total: 323ms	remaining: 7.13s
13:	learn: 23.4419462	total: 348ms	remaining: 7.11s
14:	learn: 23.2366857	total: 378ms	remaining: 7.18s
15:	learn: 22.9901263	total: 383ms	remaining: 6.81s
16:	learn: 22.7775050	total: 411ms	remaining: 6.85s
17:	learn: 22.5290799	total: 436ms	remaining: 6.83s
18:	learn: 22.2427201	total: 461ms	remaining: 6.81s
19:	learn: 21.9766361	total: 486ms	remaining: 6.81s
20:	learn: 21.7608475	total: 510ms	remaining: 6.78s
21:	learn: 21.5756818	total: 534ms	remaining: 6.75s
22:	learn: 21.3753018	total: 559ms	remaining: 6.73s
23:	learn: 21.1715384	total: 586ms	remaining: 6.74s
24:	learn: 20.9557317	total: 616ms	remaining: 6.77s
25:	learn: 20.7653390	total: 640ms	remaining: 6.74s
26:	learn: 20.5688623	total: 664ms	remaining: 6.71s
27:	learn: 20.3753201	total: 688ms	remaining: 6.68s
28:	learn: 20.2087140	total: 710ms	remaining: 6.64s
29:	learn: 20.0437127	total: 734ms	remaining: 6.61s
30:	learn: 19.7939404	total: 758ms	remaining: 6.57s
31:	learn: 19.6135511	total: 785ms	remaining: 6.58s
32:	learn: 19.4223949	total: 813ms	remaining: 6.58s
33:	learn: 19.3099062	total: 838ms	remaining: 6.56s
34:	learn: 19.1471296	total: 863ms	remaining: 6.53s
35:	learn: 18.9602406	total: 888ms	remaining: 6.51s
36:	learn: 18.8463205	total: 913ms	remaining: 6.49s
37:	learn: 18.5993654	total: 938ms	remaining: 6.47s
38:	learn: 18.4547850	total: 962ms	remaining: 6.44s
39:	learn: 18.3265698	total: 987ms	remaining: 6.41s
40:	learn: 18.1552052	total: 1.01s	remaining: 6.39s
41:	learn: 17.9969729	total: 1.04s	remaining: 6.41s
42:	learn: 17.8420506	total: 1.08s	remaining: 6.44s
43:	learn: 17.7314471	total: 1.1s	remaining: 6.42s
44:	learn: 17.6037885	total: 1.13s	remaining: 6.41s
45:	learn: 17.4911598	total: 1.16s	remaining: 6.41s
46:	learn: 17.3334650	total: 1.19s	remaining: 6.39s
47:	learn: 17.1964435	total: 1.22s	remaining: 6.39s
48:	learn: 17.0705369	total: 1.25s	remaining: 6.41s
49:	learn: 16.9282293	total: 1.28s	remaining: 6.4s
50:	learn: 16.7996947	total: 1.31s	remaining: 6.39s
51:	learn: 16.6978905	total: 1.34s	remaining: 6.37s
52:	learn: 16.5793323	total: 1.36s	remaining: 6.36s
53:	learn: 16.4770669	total: 1.4s	remaining: 6.37s
54:	learn: 16.3655624	total: 1.42s	remaining: 6.35s
55:	learn: 16.2604369	total: 1.45s	remaining: 6.33s
56:	learn: 16.1431440	total: 1.49s	remaining: 6.34s
57:	learn: 16.0326605	total: 1.51s	remaining: 6.32s
58:	learn: 15.9323014	total: 1.54s	remaining: 6.3s
59:	learn: 15.8025601	total: 1.57s	remaining: 6.27s
60:	learn: 15.6963178	total: 1.59s	remaining: 6.25s
61:	learn: 15.6270773	total: 1.63s	remaining: 6.25s
62:	learn: 15.5313112	total: 1.66s	remaining: 6.24s
63:	learn: 15.4399515	total: 1.7s	remaining: 6.25s
64:	learn: 15.3597117	total: 1.72s	remaining: 6.23s
65:	learn: 15.2697176	total: 1.75s	remaining: 6.21s
66:	learn: 15.1828907	total: 1.78s	remaining: 6.18s
67:	learn: 15.0961490	total: 1.8s	remaining: 6.15s
68:	learn: 15.0128613	total: 1.83s	remaining: 6.13s
69:	learn: 14.9098281	total: 1.87s	remaining: 6.13s
70:	learn: 14.8290802	total: 1.9s	remaining: 6.12s
71:	learn: 14.7354294	total: 1.93s	remaining: 6.11s
72:	learn: 14.6593235	total: 1.96s	remaining: 6.08s
73:	learn: 14.5723402	total: 1.98s	remaining: 6.05s
74:	learn: 14.4986819	total: 2.01s	remaining: 6.03s
75:	learn: 14.4087447	total: 2.04s	remaining: 6s
76:	learn: 14.3357763	total: 2.06s	remaining: 5.97s
77:	learn: 14.2423286	total: 2.09s	remaining: 5.95s
78:	learn: 14.1791552	total: 2.13s	remaining: 5.96s
79:	learn: 14.0970307	total: 2.16s	remaining: 5.93s
80:	learn: 14.0336692	total: 2.19s	remaining: 5.91s
81:	learn: 13.9758100	total: 2.21s	remaining: 5.88s
82:	learn: 13.9111969	total: 2.24s	remaining: 5.86s
83:	learn: 13.8350945	total: 2.27s	remaining: 5.83s
84:	learn: 13.7593569	total: 2.29s	remaining: 5.8s
85:	learn: 13.6953120	total: 2.32s	remaining: 5.78s
86:	learn: 13.6352452	total: 2.36s	remaining: 5.78s
87:	learn: 13.5794275	total: 2.39s	remaining: 5.76s
88:	learn: 13.4880894	total: 2.42s	remaining: 5.73s
89:	learn: 13.4305792	total: 2.44s	remaining: 5.7s
90:	learn: 13.3569291	total: 2.47s	remaining: 5.67s
91:	learn: 13.2958628	total: 2.5s	remaining: 5.64s
92:	learn: 13.2338079	total: 2.52s	remaining: 5.61s
93:	learn: 13.1821114	total: 2.55s	remaining: 5.59s
94:	learn: 13.1082697	total: 2.59s	remaining: 5.58s
95:	learn: 13.0475619	total: 2.62s	remaining: 5.57s
96:	learn: 12.9878324	total: 2.65s	remaining: 5.55s
97:	learn: 12.9294785	total: 2.68s	remaining: 5.52s
98:	learn: 12.8646231	total: 2.71s	remaining: 5.49s
99:	learn: 12.8003027	total: 2.73s	remaining: 5.47s
100:	learn: 12.6741024	total: 2.76s	remaining: 5.44s
101:	learn: 12.5871778	total: 2.79s	remaining: 5.42s
102:	learn: 12.5199785	total: 2.83s	remaining: 5.41s
103:	learn: 12.4533348	total: 2.86s	remaining: 5.38s
104:	learn: 12.4014303	total: 2.88s	remaining: 5.35s
105:	learn: 12.3404648	total: 2.91s	remaining: 5.32s
106:	learn: 12.2853908	total: 2.94s	remaining: 5.3s
107:	learn: 12.2113131	total: 2.96s	remaining: 5.27s
108:	learn: 12.1443818	total: 2.99s	remaining: 5.24s
109:	learn: 12.0782972	total: 3.03s	remaining: 5.23s
110:	learn: 12.0242888	total: 3.06s	remaining: 5.2s
111:	learn: 11.9606186	total: 3.09s	remaining: 5.19s
112:	learn: 11.8840123	total: 3.12s	remaining: 5.16s
113:	learn: 11.8362234	total: 3.15s	remaining: 5.14s
114:	learn: 11.7798600	total: 3.17s	remaining: 5.11s
115:	learn: 11.7205583	total: 3.2s	remaining: 5.08s
116:	learn: 11.6703154	total: 3.23s	remaining: 5.06s
117:	learn: 11.5906207	total: 3.26s	remaining: 5.03s
118:	learn: 11.5392300	total: 3.29s	remaining: 5s
119:	learn: 11.5009891	total: 3.32s	remaining: 4.99s
120:	learn: 11.4496613	total: 3.35s	remaining: 4.96s
121:	learn: 11.3880593	total: 3.38s	remaining: 4.93s
122:	learn: 11.3343840	total: 3.4s	remaining: 4.9s
123:	learn: 11.2903777	total: 3.43s	remaining: 4.87s
124:	learn: 11.2226066	total: 3.48s	remaining: 4.87s
125:	learn: 11.1756503	total: 3.5s	remaining: 4.84s
126:	learn: 11.1266674	total: 3.53s	remaining: 4.81s
127:	learn: 11.0542744	total: 3.57s	remaining: 4.79s
128:	learn: 11.0132226	total: 3.59s	remaining: 4.76s
129:	learn: 10.9545179	total: 3.62s	remaining: 4.74s
130:	learn: 10.9167977	total: 3.65s	remaining: 4.71s
131:	learn: 10.8607094	total: 3.68s	remaining: 4.68s
132:	learn: 10.8081246	total: 3.71s	remaining: 4.66s
133:	learn: 10.7595004	total: 3.73s	remaining: 4.63s
134:	learn: 10.6949228	total: 3.76s	remaining: 4.6s
135:	learn: 10.6549608	total: 3.79s	remaining: 4.58s
136:	learn: 10.6085016	total: 3.82s	remaining: 4.55s
137:	learn: 10.5530774	total: 3.85s	remaining: 4.52s
138:	learn: 10.5146132	total: 3.88s	remaining: 4.49s
139:	learn: 10.4804263	total: 3.91s	remaining: 4.47s
140:	learn: 10.4469935	total: 3.94s	remaining: 4.45s
141:	learn: 10.4083597	total: 3.97s	remaining: 4.42s
142:	learn: 10.3700272	total: 4s	remaining: 4.39s
143:	learn: 10.3240531	total: 4.03s	remaining: 4.36s
144:	learn: 10.2838387	total: 4.06s	remaining: 4.34s
145:	learn: 10.2237396	total: 4.09s	remaining: 4.32s
146:	learn: 10.1677493	total: 4.13s	remaining: 4.29s
147:	learn: 10.1289528	total: 4.15s	remaining: 4.26s
148:	learn: 10.0918869	total: 4.18s	remaining: 4.24s
149:	learn: 10.0599014	total: 4.21s	remaining: 4.21s
150:	learn: 9.9817438	total: 4.23s	remaining: 4.17s
151:	learn: 9.9410469	total: 4.26s	remaining: 4.15s
152:	learn: 9.8790383	total: 4.29s	remaining: 4.12s
153:	learn: 9.8489714	total: 4.32s	remaining: 4.09s
154:	learn: 9.8192539	total: 4.36s	remaining: 4.07s
155:	learn: 9.7595292	total: 4.38s	remaining: 4.05s
156:	learn: 9.7305132	total: 4.41s	remaining: 4.02s
157:	learn: 9.6946431	total: 4.44s	remaining: 3.99s
158:	learn: 9.6382391	total: 4.47s	remaining: 3.96s
159:	learn: 9.5932080	total: 4.5s	remaining: 3.93s
160:	learn: 9.5528662	total: 4.53s	remaining: 3.91s
161:	learn: 9.5112954	total: 4.56s	remaining: 3.89s
162:	learn: 9.4782229	total: 4.59s	remaining: 3.86s
163:	learn: 9.4469139	total: 4.62s	remaining: 3.83s
164:	learn: 9.4073553	total: 4.65s	remaining: 3.8s
165:	learn: 9.3658459	total: 4.67s	remaining: 3.77s
166:	learn: 9.3331509	total: 4.7s	remaining: 3.74s
167:	learn: 9.3022193	total: 4.73s	remaining: 3.71s
168:	learn: 9.2687355	total: 4.76s	remaining: 3.69s
169:	learn: 9.2347395	total: 4.79s	remaining: 3.67s
170:	learn: 9.1946963	total: 4.83s	remaining: 3.64s
171:	learn: 9.1669467	total: 4.86s	remaining: 3.61s
172:	learn: 9.1174548	total: 4.88s	remaining: 3.58s
173:	learn: 9.0578865	total: 4.91s	remaining: 3.56s
174:	learn: 9.0242697	total: 4.94s	remaining: 3.53s
175:	learn: 8.9812385	total: 4.97s	remaining: 3.5s
176:	learn: 8.9394173	total: 5s	remaining: 3.47s
177:	learn: 8.8954630	total: 5.03s	remaining: 3.45s
178:	learn: 8.8650625	total: 5.06s	remaining: 3.42s
179:	learn: 8.8128518	total: 5.09s	remaining: 3.39s
180:	learn: 8.7713941	total: 5.12s	remaining: 3.36s
181:	learn: 8.7271373	total: 5.14s	remaining: 3.33s
182:	learn: 8.6827020	total: 5.17s	remaining: 3.31s
183:	learn: 8.6411197	total: 5.2s	remaining: 3.28s
184:	learn: 8.6161231	total: 5.22s	remaining: 3.25s
185:	learn: 8.5812975	total: 5.26s	remaining: 3.23s
186:	learn: 8.5494363	total: 5.3s	remaining: 3.2s
187:	learn: 8.5121894	total: 5.33s	remaining: 3.17s
188:	learn: 8.4769543	total: 5.36s	remaining: 3.15s
189:	learn: 8.4285766	total: 5.38s	remaining: 3.12s
190:	learn: 8.4032474	total: 5.41s	remaining: 3.09s
191:	learn: 8.3791298	total: 5.43s	remaining: 3.06s
192:	learn: 8.3494894	total: 5.46s	remaining: 3.03s
193:	learn: 8.3153327	total: 5.5s	remaining: 3s
194:	learn: 8.2823004	total: 5.53s	remaining: 2.98s
195:	learn: 8.2449482	total: 5.56s	remaining: 2.95s
196:	learn: 8.2013567	total: 5.59s	remaining: 2.92s
197:	learn: 8.1697337	total: 5.61s	remaining: 2.89s
198:	learn: 8.1265833	total: 5.64s	remaining: 2.86s
199:	learn: 8.0905433	total: 5.67s	remaining: 2.83s
200:	learn: 8.0669552	total: 5.7s	remaining: 2.81s
201:	learn: 8.0258330	total: 5.74s	remaining: 2.79s
202:	learn: 8.0026168	total: 5.77s	remaining: 2.76s
203:	learn: 7.9482286	total: 5.8s	remaining: 2.73s
204:	learn: 7.9105233	total: 5.83s	remaining: 2.7s
205:	learn: 7.8966891	total: 5.85s	remaining: 2.67s
206:	learn: 7.8575063	total: 5.88s	remaining: 2.64s
207:	learn: 7.8147335	total: 5.91s	remaining: 2.62s
208:	learn: 7.7917140	total: 5.94s	remaining: 2.59s
209:	learn: 7.7607147	total: 5.97s	remaining: 2.56s
210:	learn: 7.7425727	total: 6s	remaining: 2.53s
211:	learn: 7.7238288	total: 6.03s	remaining: 2.5s
212:	learn: 7.6985896	total: 6.06s	remaining: 2.47s
213:	learn: 7.6752745	total: 6.08s	remaining: 2.44s
214:	learn: 7.6442259	total: 6.12s	remaining: 2.42s
215:	learn: 7.6325331	total: 6.15s	remaining: 2.39s
216:	learn: 7.6063316	total: 6.17s	remaining: 2.36s
217:	learn: 7.5831832	total: 6.2s	remaining: 2.33s
218:	learn: 7.5672234	total: 6.24s	remaining: 2.31s
219:	learn: 7.5331936	total: 6.26s	remaining: 2.28s
220:	learn: 7.4920831	total: 6.29s	remaining: 2.25s
221:	learn: 7.4737554	total: 6.32s	remaining: 2.22s
222:	learn: 7.4270074	total: 6.35s	remaining: 2.19s
223:	learn: 7.4017600	total: 6.38s	remaining: 2.17s
224:	learn: 7.3806959	total: 6.41s	remaining: 2.14s
225:	learn: 7.3554017	total: 6.44s	remaining: 2.11s
226:	learn: 7.3409799	total: 6.47s	remaining: 2.08s
227:	learn: 7.3212923	total: 6.5s	remaining: 2.05s
228:	learn: 7.3105787	total: 6.52s	remaining: 2.02s
229:	learn: 7.2892883	total: 6.55s	remaining: 1.99s
230:	learn: 7.2744332	total: 6.59s	remaining: 1.97s
231:	learn: 7.2520263	total: 6.62s	remaining: 1.94s
232:	learn: 7.2282060	total: 6.65s	remaining: 1.91s
233:	learn: 7.2079652	total: 6.67s	remaining: 1.88s
234:	learn: 7.1916393	total: 6.71s	remaining: 1.85s
235:	learn: 7.1701919	total: 6.74s	remaining: 1.83s
236:	learn: 7.1568798	total: 6.77s	remaining: 1.8s
237:	learn: 7.1311171	total: 6.8s	remaining: 1.77s
238:	learn: 7.1241442	total: 6.83s	remaining: 1.74s
239:	learn: 7.1023502	total: 6.85s	remaining: 1.71s
240:	learn: 7.0871109	total: 6.88s	remaining: 1.68s
241:	learn: 7.0717340	total: 6.91s	remaining: 1.66s
242:	learn: 7.0574975	total: 6.93s	remaining: 1.63s
243:	learn: 7.0489270	total: 6.97s	remaining: 1.6s
244:	learn: 7.0279173	total: 7.01s	remaining: 1.57s
245:	learn: 6.9967234	total: 7.04s	remaining: 1.54s
246:	learn: 6.9827176	total: 7.07s	remaining: 1.52s
247:	learn: 6.9632381	total: 7.09s	remaining: 1.49s
248:	learn: 6.9490747	total: 7.12s	remaining: 1.46s
249:	learn: 6.9350226	total: 7.15s	remaining: 1.43s
250:	learn: 6.9203338	total: 7.17s	remaining: 1.4s
251:	learn: 6.9078713	total: 7.21s	remaining: 1.37s
252:	learn: 6.8997471	total: 7.24s	remaining: 1.34s
253:	learn: 6.8786784	total: 7.27s	remaining: 1.32s
254:	learn: 6.8629866	total: 7.29s	remaining: 1.29s
255:	learn: 6.8497530	total: 7.32s	remaining: 1.26s
256:	learn: 6.8363263	total: 7.35s	remaining: 1.23s
257:	learn: 6.8232778	total: 7.38s	remaining: 1.2s
258:	learn: 6.7952234	total: 7.4s	remaining: 1.17s
259:	learn: 6.7671952	total: 7.45s	remaining: 1.15s
260:	learn: 6.7545126	total: 7.47s	remaining: 1.12s
261:	learn: 6.7414039	total: 7.5s	remaining: 1.09s
262:	learn: 6.7307423	total: 7.53s	remaining: 1.06s
263:	learn: 6.6887074	total: 7.56s	remaining: 1.03s
264:	learn: 6.6786482	total: 7.58s	remaining: 1s
265:	learn: 6.6520387	total: 7.61s	remaining: 973ms
266:	learn: 6.6371511	total: 7.64s	remaining: 944ms
267:	learn: 6.6139304	total: 7.68s	remaining: 918ms
268:	learn: 6.6024854	total: 7.71s	remaining: 889ms
269:	learn: 6.5811216	total: 7.74s	remaining: 860ms
270:	learn: 6.5396874	total: 7.76s	remaining: 831ms
271:	learn: 6.5260569	total: 7.79s	remaining: 802ms
272:	learn: 6.5161555	total: 7.82s	remaining: 773ms
273:	learn: 6.5055568	total: 7.85s	remaining: 745ms
274:	learn: 6.4955852	total: 7.87s	remaining: 716ms
275:	learn: 6.4768059	total: 7.91s	remaining: 688ms
276:	learn: 6.4526678	total: 7.95s	remaining: 660ms
277:	learn: 6.4407932	total: 7.98s	remaining: 631ms
278:	learn: 6.4229786	total: 8.01s	remaining: 603ms
279:	learn: 6.4143528	total: 8.03s	remaining: 574ms
280:	learn: 6.3939760	total: 8.06s	remaining: 545ms
281:	learn: 6.3821368	total: 8.09s	remaining: 516ms
282:	learn: 6.3733999	total: 8.12s	remaining: 488ms
283:	learn: 6.3506155	total: 8.15s	remaining: 459ms
284:	learn: 6.3456374	total: 8.18s	remaining: 431ms
285:	learn: 6.3423150	total: 8.21s	remaining: 402ms
286:	learn: 6.3323118	total: 8.24s	remaining: 373ms
287:	learn: 6.3209916	total: 8.26s	remaining: 344ms
288:	learn: 6.3017754	total: 8.29s	remaining: 316ms
289:	learn: 6.2738210	total: 8.32s	remaining: 287ms
290:	learn: 6.2684358	total: 8.36s	remaining: 258ms
291:	learn: 6.2546793	total: 8.39s	remaining: 230ms
292:	learn: 6.2441498	total: 8.43s	remaining: 201ms
293:	learn: 6.2406001	total: 8.46s	remaining: 173ms
294:	learn: 6.2308638	total: 8.48s	remaining: 144ms
295:	learn: 6.2166524	total: 8.51s	remaining: 115ms
296:	learn: 6.2029239	total: 8.54s	remaining: 86.3ms
297:	learn: 6.1930984	total: 8.57s	remaining: 57.5ms
298:	learn: 6.1787666	total: 8.6s	remaining: 28.8ms
299:	learn: 6.1715886	total: 8.63s	remaining: 0us
0:	learn: 43.0189040	total: 25.3ms	remaining: 7.55s
1:	learn: 42.1913120	total: 49.7ms	remaining: 7.4s
2:	learn: 41.2381785	total: 77.9ms	remaining: 7.71s
3:	learn: 40.3733911	total: 114ms	remaining: 8.42s
4:	learn: 39.7420433	total: 140ms	remaining: 8.23s
5:	learn: 38.9384932	total: 165ms	remaining: 8.06s
6:	learn: 38.2027180	total: 191ms	remaining: 8s
7:	learn: 37.5736018	total: 218ms	remaining: 7.97s
8:	learn: 36.9042368	total: 245ms	remaining: 7.93s
9:	learn: 36.1138721	total: 273ms	remaining: 7.91s
10:	learn: 35.4444268	total: 277ms	remaining: 7.28s
11:	learn: 34.7889997	total: 297ms	remaining: 7.12s
12:	learn: 34.3622266	total: 323ms	remaining: 7.14s
13:	learn: 33.6999120	total: 348ms	remaining: 7.11s
14:	learn: 32.9955576	total: 373ms	remaining: 7.08s
15:	learn: 32.3475617	total: 398ms	remaining: 7.06s
16:	learn: 31.9028750	total: 424ms	remaining: 7.06s
17:	learn: 31.3786390	total: 448ms	remaining: 7.03s
18:	learn: 30.9731314	total: 473ms	remaining: 7s
19:	learn: 30.5397110	total: 498ms	remaining: 6.97s
20:	learn: 30.0650165	total: 528ms	remaining: 7.02s
21:	learn: 29.4732599	total: 557ms	remaining: 7.04s
22:	learn: 29.0746185	total: 582ms	remaining: 7.01s
23:	learn: 28.5839328	total: 609ms	remaining: 7s
24:	learn: 28.2894974	total: 635ms	remaining: 6.99s
25:	learn: 27.7954367	total: 660ms	remaining: 6.96s
26:	learn: 27.3542996	total: 685ms	remaining: 6.92s
27:	learn: 27.0838564	total: 711ms	remaining: 6.9s
28:	learn: 26.7019509	total: 737ms	remaining: 6.89s
29:	learn: 26.3607640	total: 766ms	remaining: 6.89s
30:	learn: 25.9174899	total: 791ms	remaining: 6.87s
31:	learn: 25.5590328	total: 817ms	remaining: 6.84s
32:	learn: 25.1682834	total: 842ms	remaining: 6.81s
33:	learn: 24.8123558	total: 866ms	remaining: 6.78s
34:	learn: 24.5841473	total: 890ms	remaining: 6.74s
35:	learn: 24.2224307	total: 915ms	remaining: 6.71s
36:	learn: 23.9745715	total: 941ms	remaining: 6.69s
37:	learn: 23.6958493	total: 976ms	remaining: 6.73s
38:	learn: 23.3890143	total: 1s	remaining: 6.71s
39:	learn: 23.1113968	total: 1.03s	remaining: 6.69s
40:	learn: 22.8519880	total: 1.05s	remaining: 6.66s
41:	learn: 22.5944697	total: 1.08s	remaining: 6.63s
42:	learn: 22.3853418	total: 1.1s	remaining: 6.61s
43:	learn: 22.1827007	total: 1.13s	remaining: 6.58s
44:	learn: 22.0186852	total: 1.16s	remaining: 6.55s
45:	learn: 21.7686773	total: 1.19s	remaining: 6.58s
46:	learn: 21.5978489	total: 1.22s	remaining: 6.56s
47:	learn: 21.3542004	total: 1.24s	remaining: 6.53s
48:	learn: 21.1752073	total: 1.27s	remaining: 6.49s
49:	learn: 21.0415246	total: 1.29s	remaining: 6.47s
50:	learn: 20.8441081	total: 1.32s	remaining: 6.44s
51:	learn: 20.5918001	total: 1.34s	remaining: 6.4s
52:	learn: 20.4441208	total: 1.37s	remaining: 6.39s
53:	learn: 20.2679633	total: 1.4s	remaining: 6.39s
54:	learn: 20.1163092	total: 1.43s	remaining: 6.36s
55:	learn: 19.9714704	total: 1.45s	remaining: 6.34s
56:	learn: 19.8249765	total: 1.48s	remaining: 6.31s
57:	learn: 19.6607355	total: 1.51s	remaining: 6.28s
58:	learn: 19.4877956	total: 1.53s	remaining: 6.26s
59:	learn: 19.3053072	total: 1.56s	remaining: 6.22s
60:	learn: 19.1885738	total: 1.58s	remaining: 6.2s
61:	learn: 19.0346503	total: 1.61s	remaining: 6.19s
62:	learn: 18.8347986	total: 1.64s	remaining: 6.17s
63:	learn: 18.6814926	total: 1.67s	remaining: 6.14s
64:	learn: 18.5382672	total: 1.69s	remaining: 6.11s
65:	learn: 18.3895833	total: 1.72s	remaining: 6.08s
66:	learn: 18.2694672	total: 1.74s	remaining: 6.05s
67:	learn: 18.1196051	total: 1.76s	remaining: 6.02s
68:	learn: 17.9925317	total: 1.79s	remaining: 5.99s
69:	learn: 17.8749679	total: 1.82s	remaining: 5.97s
70:	learn: 17.7225935	total: 1.85s	remaining: 5.96s
71:	learn: 17.5806906	total: 1.88s	remaining: 5.94s
72:	learn: 17.4922570	total: 1.9s	remaining: 5.92s
73:	learn: 17.3984999	total: 1.93s	remaining: 5.89s
74:	learn: 17.3128227	total: 1.96s	remaining: 5.87s
75:	learn: 17.2165163	total: 1.98s	remaining: 5.84s
76:	learn: 17.0889232	total: 2.01s	remaining: 5.81s
77:	learn: 16.9583567	total: 2.03s	remaining: 5.78s
78:	learn: 16.8340539	total: 2.06s	remaining: 5.76s
79:	learn: 16.7346257	total: 2.09s	remaining: 5.75s
80:	learn: 16.6446663	total: 2.12s	remaining: 5.72s
81:	learn: 16.5218155	total: 2.14s	remaining: 5.69s
82:	learn: 16.4054583	total: 2.16s	remaining: 5.66s
83:	learn: 16.2803558	total: 2.19s	remaining: 5.63s
84:	learn: 16.1516324	total: 2.21s	remaining: 5.6s
85:	learn: 16.0643357	total: 2.24s	remaining: 5.57s
86:	learn: 15.9817265	total: 2.26s	remaining: 5.54s
87:	learn: 15.9144474	total: 2.3s	remaining: 5.54s
88:	learn: 15.8380424	total: 2.32s	remaining: 5.51s
89:	learn: 15.7453770	total: 2.35s	remaining: 5.48s
90:	learn: 15.6720653	total: 2.37s	remaining: 5.45s
91:	learn: 15.5626839	total: 2.4s	remaining: 5.42s
92:	learn: 15.4727375	total: 2.42s	remaining: 5.39s
93:	learn: 15.3655885	total: 2.45s	remaining: 5.36s
94:	learn: 15.2496762	total: 2.47s	remaining: 5.33s
95:	learn: 15.1773522	total: 2.5s	remaining: 5.32s
96:	learn: 15.0924366	total: 2.53s	remaining: 5.29s
97:	learn: 15.0082209	total: 2.55s	remaining: 5.26s
98:	learn: 14.9178437	total: 2.58s	remaining: 5.23s
99:	learn: 14.8149449	total: 2.6s	remaining: 5.2s
100:	learn: 14.7450303	total: 2.62s	remaining: 5.17s
101:	learn: 14.6462390	total: 2.65s	remaining: 5.14s
102:	learn: 14.5348825	total: 2.67s	remaining: 5.11s
103:	learn: 14.4483847	total: 2.71s	remaining: 5.1s
104:	learn: 14.4006573	total: 2.73s	remaining: 5.07s
105:	learn: 14.3322113	total: 2.76s	remaining: 5.04s
106:	learn: 14.2471466	total: 2.78s	remaining: 5.02s
107:	learn: 14.1788249	total: 2.81s	remaining: 4.99s
108:	learn: 14.1033594	total: 2.83s	remaining: 4.96s
109:	learn: 14.0161080	total: 2.85s	remaining: 4.93s
110:	learn: 13.9710960	total: 2.88s	remaining: 4.9s
111:	learn: 13.8941529	total: 2.9s	remaining: 4.87s
112:	learn: 13.8246456	total: 2.93s	remaining: 4.85s
113:	learn: 13.7518933	total: 2.96s	remaining: 4.83s
114:	learn: 13.7003709	total: 2.98s	remaining: 4.8s
115:	learn: 13.6359576	total: 3.01s	remaining: 4.77s
116:	learn: 13.6039211	total: 3.03s	remaining: 4.74s
117:	learn: 13.5361545	total: 3.05s	remaining: 4.71s
118:	learn: 13.4554429	total: 3.08s	remaining: 4.68s
119:	learn: 13.3922439	total: 3.1s	remaining: 4.65s
120:	learn: 13.2895862	total: 3.13s	remaining: 4.64s
121:	learn: 13.1749097	total: 3.16s	remaining: 4.61s
122:	learn: 13.1167631	total: 3.19s	remaining: 4.58s
123:	learn: 13.0410984	total: 3.21s	remaining: 4.56s
124:	learn: 12.9506234	total: 3.24s	remaining: 4.53s
125:	learn: 12.8890045	total: 3.26s	remaining: 4.5s
126:	learn: 12.8295606	total: 3.29s	remaining: 4.48s
127:	learn: 12.7634290	total: 3.31s	remaining: 4.45s
128:	learn: 12.6891923	total: 3.33s	remaining: 4.42s
129:	learn: 12.6312306	total: 3.36s	remaining: 4.39s
130:	learn: 12.5802486	total: 3.39s	remaining: 4.37s
131:	learn: 12.5246529	total: 3.42s	remaining: 4.35s
132:	learn: 12.4479017	total: 3.44s	remaining: 4.32s
133:	learn: 12.3930818	total: 3.46s	remaining: 4.29s
134:	learn: 12.3373247	total: 3.48s	remaining: 4.26s
135:	learn: 12.3039291	total: 3.51s	remaining: 4.23s
136:	learn: 12.2583784	total: 3.53s	remaining: 4.2s
137:	learn: 12.1902920	total: 3.56s	remaining: 4.18s
138:	learn: 12.1515651	total: 3.58s	remaining: 4.15s
139:	learn: 12.1008468	total: 3.62s	remaining: 4.13s
140:	learn: 12.0752080	total: 3.64s	remaining: 4.11s
141:	learn: 12.0263787	total: 3.67s	remaining: 4.08s
142:	learn: 11.9709736	total: 3.7s	remaining: 4.06s
143:	learn: 11.9295822	total: 3.73s	remaining: 4.04s
144:	learn: 11.8867911	total: 3.76s	remaining: 4.02s
145:	learn: 11.8179180	total: 3.78s	remaining: 3.99s
146:	learn: 11.7448446	total: 3.82s	remaining: 3.97s
147:	learn: 11.7332909	total: 3.85s	remaining: 3.95s
148:	learn: 11.6907270	total: 3.87s	remaining: 3.92s
149:	learn: 11.6628056	total: 3.9s	remaining: 3.9s
150:	learn: 11.6039432	total: 3.93s	remaining: 3.87s
151:	learn: 11.5752331	total: 3.96s	remaining: 3.85s
152:	learn: 11.5376476	total: 3.99s	remaining: 3.83s
153:	learn: 11.4947632	total: 4.01s	remaining: 3.81s
154:	learn: 11.4484147	total: 4.05s	remaining: 3.79s
155:	learn: 11.3925819	total: 4.08s	remaining: 3.77s
156:	learn: 11.3287384	total: 4.11s	remaining: 3.74s
157:	learn: 11.2566623	total: 4.14s	remaining: 3.72s
158:	learn: 11.2000227	total: 4.17s	remaining: 3.69s
159:	learn: 11.1023408	total: 4.19s	remaining: 3.67s
160:	learn: 11.0489770	total: 4.23s	remaining: 3.65s
161:	learn: 11.0026542	total: 4.26s	remaining: 3.63s
162:	learn: 10.9309626	total: 4.29s	remaining: 3.61s
163:	learn: 10.8844157	total: 4.32s	remaining: 3.58s
164:	learn: 10.8292008	total: 4.34s	remaining: 3.56s
165:	learn: 10.7365612	total: 4.37s	remaining: 3.53s
166:	learn: 10.6948804	total: 4.4s	remaining: 3.5s
167:	learn: 10.6566665	total: 4.42s	remaining: 3.48s
168:	learn: 10.6219222	total: 4.47s	remaining: 3.46s
169:	learn: 10.5930877	total: 4.5s	remaining: 3.44s
170:	learn: 10.5520362	total: 4.52s	remaining: 3.41s
171:	learn: 10.5160879	total: 4.55s	remaining: 3.39s
172:	learn: 10.4653972	total: 4.58s	remaining: 3.36s
173:	learn: 10.4164242	total: 4.61s	remaining: 3.33s
174:	learn: 10.3821629	total: 4.63s	remaining: 3.31s
175:	learn: 10.3623975	total: 4.66s	remaining: 3.28s
176:	learn: 10.3095845	total: 4.7s	remaining: 3.27s
177:	learn: 10.2501576	total: 4.73s	remaining: 3.24s
178:	learn: 10.2276060	total: 4.75s	remaining: 3.21s
179:	learn: 10.2052696	total: 4.78s	remaining: 3.19s
180:	learn: 10.1685156	total: 4.81s	remaining: 3.16s
181:	learn: 10.1443775	total: 4.83s	remaining: 3.13s
182:	learn: 10.0531518	total: 4.86s	remaining: 3.11s
183:	learn: 10.0052361	total: 4.9s	remaining: 3.09s
184:	learn: 9.9598299	total: 4.94s	remaining: 3.07s
185:	learn: 9.9062881	total: 4.96s	remaining: 3.04s
186:	learn: 9.8476621	total: 4.99s	remaining: 3.02s
187:	learn: 9.7943755	total: 5.02s	remaining: 2.99s
188:	learn: 9.7545158	total: 5.05s	remaining: 2.96s
189:	learn: 9.7325928	total: 5.07s	remaining: 2.94s
190:	learn: 9.6597076	total: 5.11s	remaining: 2.92s
191:	learn: 9.6049808	total: 5.14s	remaining: 2.89s
192:	learn: 9.5210539	total: 5.16s	remaining: 2.86s
193:	learn: 9.4839833	total: 5.2s	remaining: 2.84s
194:	learn: 9.4030810	total: 5.22s	remaining: 2.81s
195:	learn: 9.3610011	total: 5.25s	remaining: 2.79s
196:	learn: 9.3194779	total: 5.28s	remaining: 2.76s
197:	learn: 9.2866867	total: 5.31s	remaining: 2.73s
198:	learn: 9.2508142	total: 5.34s	remaining: 2.71s
199:	learn: 9.2271576	total: 5.37s	remaining: 2.69s
200:	learn: 9.1740668	total: 5.4s	remaining: 2.66s
201:	learn: 9.1586477	total: 5.44s	remaining: 2.64s
202:	learn: 9.1429015	total: 5.46s	remaining: 2.61s
203:	learn: 9.1133248	total: 5.49s	remaining: 2.58s
204:	learn: 9.0711331	total: 5.52s	remaining: 2.56s
205:	learn: 9.0093562	total: 5.55s	remaining: 2.53s
206:	learn: 8.9859881	total: 5.58s	remaining: 2.51s
207:	learn: 8.9419294	total: 5.61s	remaining: 2.48s
208:	learn: 8.8732493	total: 5.63s	remaining: 2.45s
209:	learn: 8.8186181	total: 5.67s	remaining: 2.43s
210:	learn: 8.7860222	total: 5.69s	remaining: 2.4s
211:	learn: 8.7597312	total: 5.72s	remaining: 2.38s
212:	learn: 8.7305431	total: 5.75s	remaining: 2.35s
213:	learn: 8.6620534	total: 5.79s	remaining: 2.32s
214:	learn: 8.6317582	total: 5.81s	remaining: 2.3s
215:	learn: 8.6021758	total: 5.84s	remaining: 2.27s
216:	learn: 8.5696515	total: 5.87s	remaining: 2.24s
217:	learn: 8.5267761	total: 5.91s	remaining: 2.22s
218:	learn: 8.5135802	total: 5.93s	remaining: 2.19s
219:	learn: 8.4762506	total: 5.96s	remaining: 2.17s
220:	learn: 8.4462181	total: 5.99s	remaining: 2.14s
221:	learn: 8.4167253	total: 6.02s	remaining: 2.12s
222:	learn: 8.3867332	total: 6.05s	remaining: 2.09s
223:	learn: 8.3527829	total: 6.07s	remaining: 2.06s
224:	learn: 8.3221175	total: 6.1s	remaining: 2.03s
225:	learn: 8.3149566	total: 6.13s	remaining: 2.01s
226:	learn: 8.3023601	total: 6.16s	remaining: 1.98s
227:	learn: 8.2720745	total: 6.2s	remaining: 1.96s
228:	learn: 8.2581250	total: 6.23s	remaining: 1.93s
229:	learn: 8.2207983	total: 6.26s	remaining: 1.91s
230:	learn: 8.2083228	total: 6.29s	remaining: 1.88s
231:	learn: 8.1774734	total: 6.32s	remaining: 1.85s
232:	learn: 8.1280317	total: 6.34s	remaining: 1.82s
233:	learn: 8.0969454	total: 6.37s	remaining: 1.8s
234:	learn: 8.0653906	total: 6.41s	remaining: 1.77s
235:	learn: 8.0403548	total: 6.44s	remaining: 1.75s
236:	learn: 8.0309296	total: 6.46s	remaining: 1.72s
237:	learn: 7.9802761	total: 6.49s	remaining: 1.69s
238:	learn: 7.9595062	total: 6.52s	remaining: 1.66s
239:	learn: 7.9560132	total: 6.54s	remaining: 1.64s
240:	learn: 7.9188077	total: 6.57s	remaining: 1.61s
241:	learn: 7.9129376	total: 6.6s	remaining: 1.58s
242:	learn: 7.8845382	total: 6.64s	remaining: 1.56s
243:	learn: 7.8699627	total: 6.67s	remaining: 1.53s
244:	learn: 7.8332493	total: 6.7s	remaining: 1.5s
245:	learn: 7.7807468	total: 6.72s	remaining: 1.48s
246:	learn: 7.7739426	total: 6.75s	remaining: 1.45s
247:	learn: 7.7384141	total: 6.78s	remaining: 1.42s
248:	learn: 7.7066380	total: 6.81s	remaining: 1.39s
249:	learn: 7.7001271	total: 6.83s	remaining: 1.37s
250:	learn: 7.6846399	total: 6.88s	remaining: 1.34s
251:	learn: 7.6791814	total: 6.9s	remaining: 1.31s
252:	learn: 7.6451688	total: 6.93s	remaining: 1.29s
253:	learn: 7.6117158	total: 6.96s	remaining: 1.26s
254:	learn: 7.6012012	total: 6.98s	remaining: 1.23s
255:	learn: 7.5729959	total: 7.01s	remaining: 1.2s
256:	learn: 7.5370997	total: 7.04s	remaining: 1.18s
257:	learn: 7.5099776	total: 7.07s	remaining: 1.15s
258:	learn: 7.4860975	total: 7.1s	remaining: 1.12s
259:	learn: 7.4566817	total: 7.13s	remaining: 1.1s
260:	learn: 7.4269980	total: 7.16s	remaining: 1.07s
261:	learn: 7.3923465	total: 7.19s	remaining: 1.04s
262:	learn: 7.3675376	total: 7.22s	remaining: 1.01s
263:	learn: 7.3392461	total: 7.24s	remaining: 988ms
264:	learn: 7.3102490	total: 7.27s	remaining: 960ms
265:	learn: 7.3010635	total: 7.3s	remaining: 933ms
266:	learn: 7.2733113	total: 7.33s	remaining: 906ms
267:	learn: 7.2683610	total: 7.37s	remaining: 880ms
268:	learn: 7.2532714	total: 7.4s	remaining: 852ms
269:	learn: 7.2444185	total: 7.42s	remaining: 825ms
270:	learn: 7.2300953	total: 7.45s	remaining: 797ms
271:	learn: 7.2077357	total: 7.48s	remaining: 770ms
272:	learn: 7.1843423	total: 7.5s	remaining: 742ms
273:	learn: 7.1754867	total: 7.53s	remaining: 715ms
274:	learn: 7.1395344	total: 7.57s	remaining: 688ms
275:	learn: 7.1342567	total: 7.6s	remaining: 661ms
276:	learn: 7.1116057	total: 7.63s	remaining: 634ms
277:	learn: 7.0822569	total: 7.66s	remaining: 606ms
278:	learn: 7.0731958	total: 7.69s	remaining: 579ms
279:	learn: 7.0576479	total: 7.71s	remaining: 551ms
280:	learn: 7.0354817	total: 7.74s	remaining: 523ms
281:	learn: 7.0277403	total: 7.77s	remaining: 496ms
282:	learn: 7.0028621	total: 7.8s	remaining: 469ms
283:	learn: 6.9820607	total: 7.84s	remaining: 442ms
284:	learn: 6.9645494	total: 7.86s	remaining: 414ms
285:	learn: 6.9563224	total: 7.89s	remaining: 386ms
286:	learn: 6.9482036	total: 7.92s	remaining: 359ms
287:	learn: 6.9116066	total: 7.94s	remaining: 331ms
288:	learn: 6.8884274	total: 7.97s	remaining: 303ms
289:	learn: 6.8632506	total: 8s	remaining: 276ms
290:	learn: 6.8447357	total: 8.03s	remaining: 248ms
291:	learn: 6.8242972	total: 8.06s	remaining: 221ms
292:	learn: 6.8012643	total: 8.09s	remaining: 193ms
293:	learn: 6.7800583	total: 8.12s	remaining: 166ms
294:	learn: 6.7687042	total: 8.15s	remaining: 138ms
295:	learn: 6.7454529	total: 8.17s	remaining: 110ms
296:	learn: 6.7227229	total: 8.2s	remaining: 82.8ms
297:	learn: 6.7004834	total: 8.23s	remaining: 55.3ms
298:	learn: 6.6931313	total: 8.26s	remaining: 27.6ms
299:	learn: 6.6604653	total: 8.29s	remaining: 0us
0:	learn: 46.4449485	total: 25ms	remaining: 7.49s
1:	learn: 45.6641003	total: 51ms	remaining: 7.6s
2:	learn: 44.9322182	total: 85.9ms	remaining: 8.5s
3:	learn: 44.1111890	total: 116ms	remaining: 8.55s
4:	learn: 43.2956452	total: 141ms	remaining: 8.31s
5:	learn: 42.6298126	total: 167ms	remaining: 8.17s
6:	learn: 42.0896057	total: 192ms	remaining: 8.03s
7:	learn: 41.2698632	total: 216ms	remaining: 7.88s
8:	learn: 40.4846232	total: 242ms	remaining: 7.82s
9:	learn: 39.7069009	total: 267ms	remaining: 7.76s
10:	learn: 38.9656593	total: 271ms	remaining: 7.13s
11:	learn: 38.5069229	total: 301ms	remaining: 7.22s
12:	learn: 37.8073380	total: 328ms	remaining: 7.24s
13:	learn: 37.3882967	total: 354ms	remaining: 7.22s
14:	learn: 36.8180964	total: 378ms	remaining: 7.19s
15:	learn: 36.2948556	total: 404ms	remaining: 7.16s
16:	learn: 35.6877194	total: 428ms	remaining: 7.13s
17:	learn: 35.3344416	total: 453ms	remaining: 7.09s
18:	learn: 34.8793907	total: 478ms	remaining: 7.07s
19:	learn: 34.3129264	total: 506ms	remaining: 7.08s
20:	learn: 34.0804390	total: 541ms	remaining: 7.18s
21:	learn: 33.4413882	total: 566ms	remaining: 7.15s
22:	learn: 32.9936060	total: 592ms	remaining: 7.13s
23:	learn: 32.6458868	total: 618ms	remaining: 7.11s
24:	learn: 32.3273431	total: 644ms	remaining: 7.08s
25:	learn: 31.8309940	total: 668ms	remaining: 7.04s
26:	learn: 31.4310003	total: 694ms	remaining: 7.01s
27:	learn: 31.1804602	total: 726ms	remaining: 7.05s
28:	learn: 30.8535447	total: 753ms	remaining: 7.03s
29:	learn: 30.4063180	total: 780ms	remaining: 7.02s
30:	learn: 30.1876699	total: 806ms	remaining: 6.99s
31:	learn: 29.8778033	total: 831ms	remaining: 6.96s
32:	learn: 29.6371470	total: 855ms	remaining: 6.92s
33:	learn: 29.3801255	total: 881ms	remaining: 6.89s
34:	learn: 29.1426244	total: 907ms	remaining: 6.86s
35:	learn: 28.9166951	total: 933ms	remaining: 6.84s
36:	learn: 28.6597815	total: 970ms	remaining: 6.9s
37:	learn: 28.3844706	total: 996ms	remaining: 6.87s
38:	learn: 28.0894923	total: 1.02s	remaining: 6.83s
39:	learn: 27.7571740	total: 1.05s	remaining: 6.81s
40:	learn: 27.4609127	total: 1.07s	remaining: 6.78s
41:	learn: 27.1948352	total: 1.1s	remaining: 6.75s
42:	learn: 26.9507594	total: 1.12s	remaining: 6.72s
43:	learn: 26.6347229	total: 1.15s	remaining: 6.69s
44:	learn: 26.3479735	total: 1.18s	remaining: 6.67s
45:	learn: 26.1335817	total: 1.21s	remaining: 6.67s
46:	learn: 25.8868210	total: 1.23s	remaining: 6.64s
47:	learn: 25.6881647	total: 1.26s	remaining: 6.61s
48:	learn: 25.4764814	total: 1.28s	remaining: 6.57s
49:	learn: 25.2279851	total: 1.31s	remaining: 6.53s
50:	learn: 24.9914875	total: 1.33s	remaining: 6.5s
51:	learn: 24.7951252	total: 1.35s	remaining: 6.46s
52:	learn: 24.6181712	total: 1.38s	remaining: 6.45s
53:	learn: 24.3711141	total: 1.42s	remaining: 6.47s
54:	learn: 24.1983381	total: 1.45s	remaining: 6.45s
55:	learn: 24.0518193	total: 1.47s	remaining: 6.42s
56:	learn: 23.8035754	total: 1.5s	remaining: 6.4s
57:	learn: 23.5891443	total: 1.53s	remaining: 6.37s
58:	learn: 23.3650788	total: 1.55s	remaining: 6.35s
59:	learn: 23.1423622	total: 1.58s	remaining: 6.32s
60:	learn: 22.9562061	total: 1.61s	remaining: 6.31s
61:	learn: 22.7841608	total: 1.64s	remaining: 6.29s
62:	learn: 22.5259611	total: 1.66s	remaining: 6.26s
63:	learn: 22.3959565	total: 1.69s	remaining: 6.23s
64:	learn: 22.2695041	total: 1.71s	remaining: 6.19s
65:	learn: 22.0116444	total: 1.74s	remaining: 6.16s
66:	learn: 21.8636416	total: 1.76s	remaining: 6.13s
67:	learn: 21.7170816	total: 1.79s	remaining: 6.11s
68:	learn: 21.6130887	total: 1.82s	remaining: 6.09s
69:	learn: 21.4107735	total: 1.85s	remaining: 6.09s
70:	learn: 21.2682184	total: 1.88s	remaining: 6.07s
71:	learn: 21.0421124	total: 1.91s	remaining: 6.04s
72:	learn: 20.8829831	total: 1.93s	remaining: 6.01s
73:	learn: 20.7916905	total: 1.96s	remaining: 5.98s
74:	learn: 20.6572110	total: 1.98s	remaining: 5.95s
75:	learn: 20.4683201	total: 2.01s	remaining: 5.93s
76:	learn: 20.3387806	total: 2.04s	remaining: 5.92s
77:	learn: 20.2301442	total: 2.07s	remaining: 5.89s
78:	learn: 20.1399739	total: 2.09s	remaining: 5.86s
79:	learn: 20.0395988	total: 2.12s	remaining: 5.83s
80:	learn: 19.9529190	total: 2.15s	remaining: 5.8s
81:	learn: 19.8285498	total: 2.17s	remaining: 5.77s
82:	learn: 19.6862504	total: 2.2s	remaining: 5.74s
83:	learn: 19.5764172	total: 2.22s	remaining: 5.71s
84:	learn: 19.4499650	total: 2.25s	remaining: 5.68s
85:	learn: 19.3449362	total: 2.28s	remaining: 5.67s
86:	learn: 19.1854254	total: 2.31s	remaining: 5.65s
87:	learn: 19.0850074	total: 2.33s	remaining: 5.62s
88:	learn: 18.9724934	total: 2.36s	remaining: 5.59s
89:	learn: 18.8778956	total: 2.39s	remaining: 5.57s
90:	learn: 18.7370373	total: 2.41s	remaining: 5.54s
91:	learn: 18.6192464	total: 2.44s	remaining: 5.51s
92:	learn: 18.5100314	total: 2.46s	remaining: 5.48s
93:	learn: 18.4275820	total: 2.49s	remaining: 5.45s
94:	learn: 18.3242001	total: 2.52s	remaining: 5.43s
95:	learn: 18.2110620	total: 2.54s	remaining: 5.4s
96:	learn: 18.0955256	total: 2.57s	remaining: 5.37s
97:	learn: 17.9941571	total: 2.59s	remaining: 5.34s
98:	learn: 17.8973235	total: 2.62s	remaining: 5.31s
99:	learn: 17.8100972	total: 2.64s	remaining: 5.28s
100:	learn: 17.7386244	total: 2.66s	remaining: 5.25s
101:	learn: 17.6310903	total: 2.69s	remaining: 5.23s
102:	learn: 17.5516996	total: 2.72s	remaining: 5.2s
103:	learn: 17.4617467	total: 2.74s	remaining: 5.17s
104:	learn: 17.3666766	total: 2.77s	remaining: 5.14s
105:	learn: 17.2221165	total: 2.79s	remaining: 5.11s
106:	learn: 17.0790059	total: 2.82s	remaining: 5.08s
107:	learn: 16.9698310	total: 2.84s	remaining: 5.05s
108:	learn: 16.8969362	total: 2.87s	remaining: 5.02s
109:	learn: 16.7819942	total: 2.89s	remaining: 5s
110:	learn: 16.6911902	total: 2.92s	remaining: 4.98s
111:	learn: 16.5519175	total: 2.95s	remaining: 4.95s
112:	learn: 16.3906885	total: 2.97s	remaining: 4.92s
113:	learn: 16.3090927	total: 3s	remaining: 4.89s
114:	learn: 16.2205215	total: 3.02s	remaining: 4.86s
115:	learn: 16.1233780	total: 3.04s	remaining: 4.83s
116:	learn: 16.0321663	total: 3.07s	remaining: 4.8s
117:	learn: 15.9579011	total: 3.09s	remaining: 4.77s
118:	learn: 15.8593485	total: 3.12s	remaining: 4.75s
119:	learn: 15.7788251	total: 3.16s	remaining: 4.74s
120:	learn: 15.7287407	total: 3.18s	remaining: 4.71s
121:	learn: 15.5788208	total: 3.21s	remaining: 4.68s
122:	learn: 15.5086549	total: 3.23s	remaining: 4.65s
123:	learn: 15.4364731	total: 3.26s	remaining: 4.62s
124:	learn: 15.3549185	total: 3.28s	remaining: 4.59s
125:	learn: 15.2967084	total: 3.31s	remaining: 4.57s
126:	learn: 15.1872607	total: 3.33s	remaining: 4.54s
127:	learn: 15.0932023	total: 3.36s	remaining: 4.52s
128:	learn: 15.0097364	total: 3.39s	remaining: 4.49s
129:	learn: 14.9463156	total: 3.41s	remaining: 4.46s
130:	learn: 14.8900172	total: 3.43s	remaining: 4.43s
131:	learn: 14.8358826	total: 3.46s	remaining: 4.4s
132:	learn: 14.7553997	total: 3.48s	remaining: 4.37s
133:	learn: 14.6821554	total: 3.5s	remaining: 4.34s
134:	learn: 14.5304879	total: 3.53s	remaining: 4.31s
135:	learn: 14.4324442	total: 3.56s	remaining: 4.3s
136:	learn: 14.3331494	total: 3.59s	remaining: 4.27s
137:	learn: 14.2753055	total: 3.62s	remaining: 4.24s
138:	learn: 14.1937968	total: 3.64s	remaining: 4.21s
139:	learn: 14.1149360	total: 3.66s	remaining: 4.19s
140:	learn: 14.0475961	total: 3.69s	remaining: 4.16s
141:	learn: 13.9679410	total: 3.71s	remaining: 4.13s
142:	learn: 13.8728976	total: 3.73s	remaining: 4.1s
143:	learn: 13.8088340	total: 3.76s	remaining: 4.07s
144:	learn: 13.7225802	total: 3.79s	remaining: 4.05s
145:	learn: 13.6027859	total: 3.82s	remaining: 4.03s
146:	learn: 13.5360562	total: 3.84s	remaining: 4s
147:	learn: 13.4527264	total: 3.87s	remaining: 3.97s
148:	learn: 13.3905685	total: 3.89s	remaining: 3.94s
149:	learn: 13.3231120	total: 3.91s	remaining: 3.91s
150:	learn: 13.2748277	total: 3.94s	remaining: 3.88s
151:	learn: 13.2011042	total: 3.96s	remaining: 3.86s
152:	learn: 13.1113158	total: 3.99s	remaining: 3.83s
153:	learn: 13.0630373	total: 4.02s	remaining: 3.81s
154:	learn: 12.9877054	total: 4.06s	remaining: 3.8s
155:	learn: 12.8975618	total: 4.09s	remaining: 3.77s
156:	learn: 12.8226873	total: 4.12s	remaining: 3.75s
157:	learn: 12.7653176	total: 4.14s	remaining: 3.72s
158:	learn: 12.7032259	total: 4.17s	remaining: 3.7s
159:	learn: 12.6413414	total: 4.2s	remaining: 3.68s
160:	learn: 12.5418162	total: 4.23s	remaining: 3.66s
161:	learn: 12.4761943	total: 4.26s	remaining: 3.63s
162:	learn: 12.4099277	total: 4.29s	remaining: 3.61s
163:	learn: 12.3393405	total: 4.32s	remaining: 3.58s
164:	learn: 12.2429002	total: 4.35s	remaining: 3.56s
165:	learn: 12.1931336	total: 4.37s	remaining: 3.53s
166:	learn: 12.0509054	total: 4.4s	remaining: 3.51s
167:	learn: 11.9940166	total: 4.44s	remaining: 3.49s
168:	learn: 11.9267615	total: 4.47s	remaining: 3.46s
169:	learn: 11.8595898	total: 4.49s	remaining: 3.44s
170:	learn: 11.7291128	total: 4.53s	remaining: 3.42s
171:	learn: 11.6574232	total: 4.56s	remaining: 3.39s
172:	learn: 11.5771876	total: 4.58s	remaining: 3.37s
173:	learn: 11.4934307	total: 4.61s	remaining: 3.34s
174:	learn: 11.4454134	total: 4.64s	remaining: 3.32s
175:	learn: 11.3829392	total: 4.67s	remaining: 3.29s
176:	learn: 11.2971903	total: 4.7s	remaining: 3.27s
177:	learn: 11.2515029	total: 4.73s	remaining: 3.24s
178:	learn: 11.2046889	total: 4.75s	remaining: 3.21s
179:	learn: 11.1528497	total: 4.79s	remaining: 3.19s
180:	learn: 11.0691294	total: 4.82s	remaining: 3.17s
181:	learn: 11.0191173	total: 4.84s	remaining: 3.14s
182:	learn: 10.9046058	total: 4.87s	remaining: 3.11s
183:	learn: 10.8625890	total: 4.9s	remaining: 3.09s
184:	learn: 10.7913928	total: 4.93s	remaining: 3.07s
185:	learn: 10.7366315	total: 4.96s	remaining: 3.04s
186:	learn: 10.6583458	total: 4.99s	remaining: 3.01s
187:	learn: 10.5955649	total: 5.02s	remaining: 2.99s
188:	learn: 10.5456969	total: 5.05s	remaining: 2.96s
189:	learn: 10.4582108	total: 5.07s	remaining: 2.94s
190:	learn: 10.4226930	total: 5.1s	remaining: 2.91s
191:	learn: 10.3469793	total: 5.13s	remaining: 2.89s
192:	learn: 10.2680286	total: 5.16s	remaining: 2.86s
193:	learn: 10.2210599	total: 5.19s	remaining: 2.83s
194:	learn: 10.1575919	total: 5.21s	remaining: 2.81s
195:	learn: 10.0996054	total: 5.25s	remaining: 2.79s
196:	learn: 10.0503671	total: 5.28s	remaining: 2.76s
197:	learn: 9.9976825	total: 5.31s	remaining: 2.73s
198:	learn: 9.9452535	total: 5.33s	remaining: 2.71s
199:	learn: 9.8825415	total: 5.37s	remaining: 2.68s
200:	learn: 9.8064134	total: 5.4s	remaining: 2.66s
201:	learn: 9.7572174	total: 5.42s	remaining: 2.63s
202:	learn: 9.6993413	total: 5.45s	remaining: 2.6s
203:	learn: 9.6645937	total: 5.49s	remaining: 2.58s
204:	learn: 9.6261766	total: 5.51s	remaining: 2.56s
205:	learn: 9.5819475	total: 5.54s	remaining: 2.53s
206:	learn: 9.5366280	total: 5.57s	remaining: 2.5s
207:	learn: 9.4813538	total: 5.6s	remaining: 2.48s
208:	learn: 9.4246671	total: 5.63s	remaining: 2.45s
209:	learn: 9.3787991	total: 5.66s	remaining: 2.42s
210:	learn: 9.3261932	total: 5.68s	remaining: 2.4s
211:	learn: 9.2979373	total: 5.71s	remaining: 2.37s
212:	learn: 9.2466040	total: 5.75s	remaining: 2.35s
213:	learn: 9.1990809	total: 5.77s	remaining: 2.32s
214:	learn: 9.1630306	total: 5.8s	remaining: 2.29s
215:	learn: 9.1266975	total: 5.84s	remaining: 2.27s
216:	learn: 9.0846374	total: 5.87s	remaining: 2.24s
217:	learn: 9.0341002	total: 5.9s	remaining: 2.22s
218:	learn: 8.9874070	total: 5.92s	remaining: 2.19s
219:	learn: 8.9478524	total: 5.95s	remaining: 2.16s
220:	learn: 8.8970642	total: 5.99s	remaining: 2.14s
221:	learn: 8.8605945	total: 6.01s	remaining: 2.11s
222:	learn: 8.8261863	total: 6.05s	remaining: 2.09s
223:	learn: 8.7821922	total: 6.08s	remaining: 2.06s
224:	learn: 8.7517706	total: 6.11s	remaining: 2.04s
225:	learn: 8.7149517	total: 6.13s	remaining: 2.01s
226:	learn: 8.6766707	total: 6.16s	remaining: 1.98s
227:	learn: 8.6372492	total: 6.19s	remaining: 1.95s
228:	learn: 8.6002129	total: 6.22s	remaining: 1.93s
229:	learn: 8.5595754	total: 6.25s	remaining: 1.9s
230:	learn: 8.5342774	total: 6.29s	remaining: 1.88s
231:	learn: 8.4991734	total: 6.32s	remaining: 1.85s
232:	learn: 8.4735361	total: 6.35s	remaining: 1.82s
233:	learn: 8.4328577	total: 6.37s	remaining: 1.8s
234:	learn: 8.3929232	total: 6.4s	remaining: 1.77s
235:	learn: 8.3611534	total: 6.43s	remaining: 1.74s
236:	learn: 8.3469261	total: 6.46s	remaining: 1.72s
237:	learn: 8.3082592	total: 6.5s	remaining: 1.69s
238:	learn: 8.2724422	total: 6.52s	remaining: 1.67s
239:	learn: 8.2378713	total: 6.55s	remaining: 1.64s
240:	learn: 8.2054002	total: 6.58s	remaining: 1.61s
241:	learn: 8.1726213	total: 6.6s	remaining: 1.58s
242:	learn: 8.1385919	total: 6.63s	remaining: 1.55s
243:	learn: 8.1113159	total: 6.66s	remaining: 1.53s
244:	learn: 8.0740264	total: 6.69s	remaining: 1.5s
245:	learn: 8.0399614	total: 6.73s	remaining: 1.48s
246:	learn: 8.0179358	total: 6.76s	remaining: 1.45s
247:	learn: 7.9896565	total: 6.79s	remaining: 1.42s
248:	learn: 7.9644186	total: 6.81s	remaining: 1.4s
249:	learn: 7.9305923	total: 6.84s	remaining: 1.37s
250:	learn: 7.9007851	total: 6.87s	remaining: 1.34s
251:	learn: 7.8740137	total: 6.9s	remaining: 1.31s
252:	learn: 7.8448288	total: 6.93s	remaining: 1.29s
253:	learn: 7.8020074	total: 6.96s	remaining: 1.26s
254:	learn: 7.7748874	total: 6.99s	remaining: 1.23s
255:	learn: 7.7553198	total: 7.01s	remaining: 1.21s
256:	learn: 7.7327191	total: 7.04s	remaining: 1.18s
257:	learn: 7.7021253	total: 7.07s	remaining: 1.15s
258:	learn: 7.6760024	total: 7.09s	remaining: 1.12s
259:	learn: 7.6569353	total: 7.13s	remaining: 1.1s
260:	learn: 7.6304716	total: 7.16s	remaining: 1.07s
261:	learn: 7.6011855	total: 7.19s	remaining: 1.04s
262:	learn: 7.5732109	total: 7.22s	remaining: 1.01s
263:	learn: 7.5502359	total: 7.25s	remaining: 989ms
264:	learn: 7.5240021	total: 7.28s	remaining: 961ms
265:	learn: 7.4977154	total: 7.3s	remaining: 934ms
266:	learn: 7.4679226	total: 7.33s	remaining: 906ms
267:	learn: 7.4445035	total: 7.37s	remaining: 880ms
268:	learn: 7.4246251	total: 7.39s	remaining: 852ms
269:	learn: 7.4029554	total: 7.43s	remaining: 825ms
270:	learn: 7.3712662	total: 7.45s	remaining: 798ms
271:	learn: 7.3355870	total: 7.48s	remaining: 770ms
272:	learn: 7.3198771	total: 7.51s	remaining: 743ms
273:	learn: 7.3050151	total: 7.54s	remaining: 715ms
274:	learn: 7.2910043	total: 7.57s	remaining: 689ms
275:	learn: 7.2783385	total: 7.6s	remaining: 661ms
276:	learn: 7.2559473	total: 7.63s	remaining: 634ms
277:	learn: 7.2185655	total: 7.66s	remaining: 606ms
278:	learn: 7.1965563	total: 7.69s	remaining: 579ms
279:	learn: 7.1773705	total: 7.72s	remaining: 551ms
280:	learn: 7.1541341	total: 7.75s	remaining: 524ms
281:	learn: 7.1355109	total: 7.78s	remaining: 496ms
282:	learn: 7.1129308	total: 7.81s	remaining: 469ms
283:	learn: 7.0886063	total: 7.84s	remaining: 442ms
284:	learn: 7.0673363	total: 7.86s	remaining: 414ms
285:	learn: 7.0518651	total: 7.89s	remaining: 386ms
286:	learn: 7.0312280	total: 7.93s	remaining: 359ms
287:	learn: 7.0065712	total: 7.95s	remaining: 331ms
288:	learn: 6.9851465	total: 7.99s	remaining: 304ms
289:	learn: 6.9652208	total: 8.02s	remaining: 277ms
290:	learn: 6.9480340	total: 8.05s	remaining: 249ms
291:	learn: 6.9293725	total: 8.08s	remaining: 221ms
292:	learn: 6.8953713	total: 8.11s	remaining: 194ms
293:	learn: 6.8800761	total: 8.13s	remaining: 166ms
294:	learn: 6.8674172	total: 8.17s	remaining: 138ms
295:	learn: 6.8461255	total: 8.19s	remaining: 111ms
296:	learn: 6.8284246	total: 8.23s	remaining: 83.1ms
297:	learn: 6.8028742	total: 8.25s	remaining: 55.4ms
298:	learn: 6.7865169	total: 8.28s	remaining: 27.7ms
299:	learn: 6.7677918	total: 8.31s	remaining: 0us
0:	learn: 46.0177610	total: 29.6ms	remaining: 8.86s
1:	learn: 45.2171004	total: 62.7ms	remaining: 9.34s
2:	learn: 44.5194217	total: 100ms	remaining: 9.95s
3:	learn: 43.6812696	total: 127ms	remaining: 9.43s
4:	learn: 42.8831305	total: 156ms	remaining: 9.18s
5:	learn: 42.1262412	total: 184ms	remaining: 9.02s
6:	learn: 41.6465602	total: 210ms	remaining: 8.78s
7:	learn: 41.2399751	total: 236ms	remaining: 8.62s
8:	learn: 40.7217059	total: 263ms	remaining: 8.5s
9:	learn: 40.1802193	total: 291ms	remaining: 8.43s
10:	learn: 39.7286629	total: 324ms	remaining: 8.5s
11:	learn: 39.1775230	total: 360ms	remaining: 8.65s
12:	learn: 38.7477788	total: 386ms	remaining: 8.52s
13:	learn: 38.2296808	total: 413ms	remaining: 8.43s
14:	learn: 37.7069865	total: 439ms	remaining: 8.33s
15:	learn: 37.1535735	total: 465ms	remaining: 8.25s
16:	learn: 36.7900064	total: 491ms	remaining: 8.18s
17:	learn: 36.4049038	total: 519ms	remaining: 8.13s
18:	learn: 35.9640324	total: 556ms	remaining: 8.22s
19:	learn: 35.5778526	total: 592ms	remaining: 8.28s
20:	learn: 35.2480134	total: 619ms	remaining: 8.22s
21:	learn: 34.8576668	total: 647ms	remaining: 8.17s
22:	learn: 34.3332571	total: 674ms	remaining: 8.11s
23:	learn: 34.0285781	total: 700ms	remaining: 8.05s
24:	learn: 33.6137780	total: 728ms	remaining: 8.01s
25:	learn: 33.1018374	total: 757ms	remaining: 7.98s
26:	learn: 32.7865924	total: 789ms	remaining: 7.98s
27:	learn: 32.5376779	total: 823ms	remaining: 8s
28:	learn: 32.0718213	total: 850ms	remaining: 7.95s
29:	learn: 31.7440177	total: 878ms	remaining: 7.9s
30:	learn: 31.4767615	total: 905ms	remaining: 7.85s
31:	learn: 31.0939292	total: 932ms	remaining: 7.8s
32:	learn: 30.7679414	total: 961ms	remaining: 7.78s
33:	learn: 30.3318976	total: 1s	remaining: 7.83s
34:	learn: 30.0098409	total: 1.03s	remaining: 7.79s
35:	learn: 29.7328439	total: 1.06s	remaining: 7.75s
36:	learn: 29.3793676	total: 1.09s	remaining: 7.79s
37:	learn: 29.1027021	total: 1.12s	remaining: 7.74s
38:	learn: 28.7995895	total: 1.15s	remaining: 7.69s
39:	learn: 28.5217760	total: 1.18s	remaining: 7.65s
40:	learn: 28.1682840	total: 1.2s	remaining: 7.61s
41:	learn: 27.7960176	total: 1.24s	remaining: 7.6s
42:	learn: 27.5479541	total: 1.26s	remaining: 7.55s
43:	learn: 27.1865306	total: 1.29s	remaining: 7.51s
44:	learn: 26.9937460	total: 1.32s	remaining: 7.51s
45:	learn: 26.8442463	total: 1.35s	remaining: 7.46s
46:	learn: 26.4960149	total: 1.38s	remaining: 7.42s
47:	learn: 26.3705169	total: 1.41s	remaining: 7.38s
48:	learn: 26.1706608	total: 1.45s	remaining: 7.4s
49:	learn: 25.9554127	total: 1.47s	remaining: 7.36s
50:	learn: 25.7460625	total: 1.5s	remaining: 7.32s
51:	learn: 25.5382801	total: 1.53s	remaining: 7.28s
52:	learn: 25.3702316	total: 1.56s	remaining: 7.29s
53:	learn: 25.1895507	total: 1.59s	remaining: 7.25s
54:	learn: 24.9547189	total: 1.62s	remaining: 7.21s
55:	learn: 24.7774266	total: 1.65s	remaining: 7.17s
56:	learn: 24.5983576	total: 1.68s	remaining: 7.16s
57:	learn: 24.4350851	total: 1.71s	remaining: 7.12s
58:	learn: 24.1821816	total: 1.73s	remaining: 7.08s
59:	learn: 24.0194176	total: 1.76s	remaining: 7.04s
60:	learn: 23.8268698	total: 1.79s	remaining: 7s
61:	learn: 23.6797713	total: 1.82s	remaining: 6.98s
62:	learn: 23.5016295	total: 1.85s	remaining: 6.94s
63:	learn: 23.3337406	total: 1.87s	remaining: 6.91s
64:	learn: 23.1777686	total: 1.91s	remaining: 6.9s
65:	learn: 22.9885995	total: 1.94s	remaining: 6.87s
66:	learn: 22.8371180	total: 1.96s	remaining: 6.83s
67:	learn: 22.6795513	total: 1.99s	remaining: 6.8s
68:	learn: 22.5161365	total: 2.02s	remaining: 6.76s
69:	learn: 22.3361211	total: 2.05s	remaining: 6.75s
70:	learn: 22.1434717	total: 2.08s	remaining: 6.71s
71:	learn: 21.9717466	total: 2.12s	remaining: 6.7s
72:	learn: 21.7799255	total: 2.15s	remaining: 6.67s
73:	learn: 21.5806287	total: 2.17s	remaining: 6.63s
74:	learn: 21.4515659	total: 2.2s	remaining: 6.6s
75:	learn: 21.3438173	total: 2.23s	remaining: 6.56s
76:	learn: 21.2141855	total: 2.25s	remaining: 6.52s
77:	learn: 20.9791139	total: 2.29s	remaining: 6.51s
78:	learn: 20.8731109	total: 2.31s	remaining: 6.47s
79:	learn: 20.7356152	total: 2.34s	remaining: 6.44s
80:	learn: 20.6794518	total: 2.38s	remaining: 6.43s
81:	learn: 20.5703504	total: 2.41s	remaining: 6.4s
82:	learn: 20.4542622	total: 2.44s	remaining: 6.37s
83:	learn: 20.3436005	total: 2.46s	remaining: 6.33s
84:	learn: 20.2213634	total: 2.49s	remaining: 6.3s
85:	learn: 20.0231006	total: 2.52s	remaining: 6.27s
86:	learn: 19.9066413	total: 2.55s	remaining: 6.25s
87:	learn: 19.8018072	total: 2.58s	remaining: 6.22s
88:	learn: 19.7018716	total: 2.61s	remaining: 6.2s
89:	learn: 19.5924764	total: 2.64s	remaining: 6.16s
90:	learn: 19.4563722	total: 2.67s	remaining: 6.13s
91:	learn: 19.3246547	total: 2.69s	remaining: 6.09s
92:	learn: 19.2157682	total: 2.72s	remaining: 6.06s
93:	learn: 19.1488443	total: 2.75s	remaining: 6.02s
94:	learn: 19.0557445	total: 2.78s	remaining: 6s
95:	learn: 18.9599358	total: 2.81s	remaining: 5.97s
96:	learn: 18.8626100	total: 2.84s	remaining: 5.95s
97:	learn: 18.7583061	total: 2.87s	remaining: 5.92s
98:	learn: 18.6544146	total: 2.9s	remaining: 5.89s
99:	learn: 18.5451742	total: 2.93s	remaining: 5.86s
100:	learn: 18.4189953	total: 2.96s	remaining: 5.83s
101:	learn: 18.3438186	total: 2.98s	remaining: 5.79s
102:	learn: 18.3162367	total: 3.01s	remaining: 5.76s
103:	learn: 18.2040313	total: 3.05s	remaining: 5.75s
104:	learn: 18.0312740	total: 3.08s	remaining: 5.72s
105:	learn: 17.9372951	total: 3.11s	remaining: 5.69s
106:	learn: 17.8724695	total: 3.13s	remaining: 5.66s
107:	learn: 17.7720982	total: 3.16s	remaining: 5.62s
108:	learn: 17.6847197	total: 3.19s	remaining: 5.59s
109:	learn: 17.5739155	total: 3.22s	remaining: 5.56s
110:	learn: 17.5071512	total: 3.25s	remaining: 5.53s
111:	learn: 17.4284339	total: 3.3s	remaining: 5.53s
112:	learn: 17.3333136	total: 3.32s	remaining: 5.5s
113:	learn: 17.2854017	total: 3.35s	remaining: 5.47s
114:	learn: 17.2580292	total: 3.38s	remaining: 5.44s
115:	learn: 17.1942005	total: 3.41s	remaining: 5.4s
116:	learn: 17.1180771	total: 3.43s	remaining: 5.37s
117:	learn: 17.0881080	total: 3.46s	remaining: 5.34s
118:	learn: 16.9946379	total: 3.5s	remaining: 5.32s
119:	learn: 16.9347009	total: 3.53s	remaining: 5.3s
120:	learn: 16.8550523	total: 3.56s	remaining: 5.26s
121:	learn: 16.8167084	total: 3.58s	remaining: 5.23s
122:	learn: 16.7431121	total: 3.61s	remaining: 5.19s
123:	learn: 16.6790079	total: 3.63s	remaining: 5.16s
124:	learn: 16.6544185	total: 3.66s	remaining: 5.13s
125:	learn: 16.5758961	total: 3.7s	remaining: 5.11s
126:	learn: 16.4736355	total: 3.73s	remaining: 5.08s
127:	learn: 16.3424410	total: 3.76s	remaining: 5.05s
128:	learn: 16.2679660	total: 3.8s	remaining: 5.03s
129:	learn: 16.2258039	total: 3.82s	remaining: 5s
130:	learn: 16.1516799	total: 3.85s	remaining: 4.96s
131:	learn: 16.1254438	total: 3.87s	remaining: 4.93s
132:	learn: 16.0304106	total: 3.9s	remaining: 4.9s
133:	learn: 15.9690721	total: 3.94s	remaining: 4.87s
134:	learn: 15.8475301	total: 3.96s	remaining: 4.84s
135:	learn: 15.7923044	total: 3.99s	remaining: 4.81s
136:	learn: 15.7122364	total: 4.02s	remaining: 4.79s
137:	learn: 15.6328785	total: 4.05s	remaining: 4.75s
138:	learn: 15.5626000	total: 4.08s	remaining: 4.72s
139:	learn: 15.4322531	total: 4.11s	remaining: 4.7s
140:	learn: 15.3057121	total: 4.14s	remaining: 4.67s
141:	learn: 15.2355698	total: 4.17s	remaining: 4.64s
142:	learn: 15.1858129	total: 4.2s	remaining: 4.61s
143:	learn: 15.1459442	total: 4.22s	remaining: 4.58s
144:	learn: 15.1011230	total: 4.26s	remaining: 4.55s
145:	learn: 15.0379234	total: 4.29s	remaining: 4.52s
146:	learn: 14.9606955	total: 4.31s	remaining: 4.49s
147:	learn: 14.8537869	total: 4.34s	remaining: 4.46s
148:	learn: 14.7978827	total: 4.38s	remaining: 4.43s
149:	learn: 14.7340183	total: 4.4s	remaining: 4.4s
150:	learn: 14.6973812	total: 4.43s	remaining: 4.37s
151:	learn: 14.6682787	total: 4.46s	remaining: 4.34s
152:	learn: 14.5210539	total: 4.48s	remaining: 4.31s
153:	learn: 14.4733148	total: 4.52s	remaining: 4.28s
154:	learn: 14.4119567	total: 4.54s	remaining: 4.25s
155:	learn: 14.3464330	total: 4.57s	remaining: 4.22s
156:	learn: 14.2314719	total: 4.61s	remaining: 4.2s
157:	learn: 14.1827121	total: 4.63s	remaining: 4.17s
158:	learn: 14.0860528	total: 4.66s	remaining: 4.13s
159:	learn: 14.0216499	total: 4.69s	remaining: 4.1s
160:	learn: 13.9788508	total: 4.72s	remaining: 4.07s
161:	learn: 13.9341942	total: 4.75s	remaining: 4.05s
162:	learn: 13.8689437	total: 4.78s	remaining: 4.02s
163:	learn: 13.8152354	total: 4.81s	remaining: 3.99s
164:	learn: 13.7979613	total: 4.84s	remaining: 3.96s
165:	learn: 13.7124340	total: 4.87s	remaining: 3.93s
166:	learn: 13.6328571	total: 4.89s	remaining: 3.9s
167:	learn: 13.6179483	total: 4.92s	remaining: 3.87s
168:	learn: 13.5737505	total: 4.95s	remaining: 3.84s
169:	learn: 13.5185652	total: 4.99s	remaining: 3.81s
170:	learn: 13.3621411	total: 5.02s	remaining: 3.79s
171:	learn: 13.3431787	total: 5.05s	remaining: 3.76s
172:	learn: 13.2661742	total: 5.08s	remaining: 3.73s
173:	learn: 13.2029526	total: 5.11s	remaining: 3.7s
174:	learn: 13.1457507	total: 5.14s	remaining: 3.67s
175:	learn: 13.0041277	total: 5.17s	remaining: 3.64s
176:	learn: 12.9565895	total: 5.19s	remaining: 3.61s
177:	learn: 12.8225368	total: 5.22s	remaining: 3.58s
178:	learn: 12.8073526	total: 5.26s	remaining: 3.56s
179:	learn: 12.7432577	total: 5.29s	remaining: 3.53s
180:	learn: 12.6894062	total: 5.32s	remaining: 3.5s
181:	learn: 12.6115430	total: 5.35s	remaining: 3.47s
182:	learn: 12.4884510	total: 5.38s	remaining: 3.44s
183:	learn: 12.4670071	total: 5.41s	remaining: 3.41s
184:	learn: 12.3586840	total: 5.43s	remaining: 3.38s
185:	learn: 12.3314465	total: 5.46s	remaining: 3.35s
186:	learn: 12.2898986	total: 5.5s	remaining: 3.32s
187:	learn: 12.2444848	total: 5.54s	remaining: 3.3s
188:	learn: 12.1286912	total: 5.57s	remaining: 3.27s
189:	learn: 12.0913051	total: 5.59s	remaining: 3.24s
190:	learn: 12.0412425	total: 5.62s	remaining: 3.21s
191:	learn: 11.9806235	total: 5.65s	remaining: 3.18s
192:	learn: 11.9166183	total: 5.67s	remaining: 3.15s
193:	learn: 11.8779218	total: 5.7s	remaining: 3.12s
194:	learn: 11.8179532	total: 5.74s	remaining: 3.09s
195:	learn: 11.7640239	total: 5.77s	remaining: 3.06s
196:	learn: 11.7071262	total: 5.79s	remaining: 3.03s
197:	learn: 11.6536293	total: 5.82s	remaining: 3s
198:	learn: 11.6065018	total: 5.85s	remaining: 2.97s
199:	learn: 11.5499607	total: 5.87s	remaining: 2.94s
200:	learn: 11.5040185	total: 5.9s	remaining: 2.91s
201:	learn: 11.4742990	total: 5.94s	remaining: 2.88s
202:	learn: 11.4464612	total: 5.97s	remaining: 2.85s
203:	learn: 11.3967352	total: 6s	remaining: 2.83s
204:	learn: 11.3773630	total: 6.03s	remaining: 2.79s
205:	learn: 11.3369897	total: 6.06s	remaining: 2.76s
206:	learn: 11.2785610	total: 6.08s	remaining: 2.73s
207:	learn: 11.2570903	total: 6.11s	remaining: 2.7s
208:	learn: 11.1959469	total: 6.14s	remaining: 2.67s
209:	learn: 11.1698664	total: 6.17s	remaining: 2.65s
210:	learn: 11.1452100	total: 6.2s	remaining: 2.61s
211:	learn: 11.1074115	total: 6.23s	remaining: 2.59s
212:	learn: 11.0813756	total: 6.26s	remaining: 2.56s
213:	learn: 11.0519307	total: 6.29s	remaining: 2.53s
214:	learn: 11.0155685	total: 6.31s	remaining: 2.5s
215:	learn: 10.9871406	total: 6.34s	remaining: 2.47s
216:	learn: 10.9693068	total: 6.38s	remaining: 2.44s
217:	learn: 10.9576767	total: 6.41s	remaining: 2.41s
218:	learn: 10.8594320	total: 6.44s	remaining: 2.38s
219:	learn: 10.8272954	total: 6.47s	remaining: 2.35s
220:	learn: 10.8038867	total: 6.5s	remaining: 2.32s
221:	learn: 10.7088853	total: 6.53s	remaining: 2.29s
222:	learn: 10.6887411	total: 6.55s	remaining: 2.26s
223:	learn: 10.6649574	total: 6.58s	remaining: 2.23s
224:	learn: 10.6194908	total: 6.62s	remaining: 2.21s
225:	learn: 10.5685522	total: 6.64s	remaining: 2.17s
226:	learn: 10.5537435	total: 6.67s	remaining: 2.14s
227:	learn: 10.5121708	total: 6.69s	remaining: 2.11s
228:	learn: 10.4691452	total: 6.73s	remaining: 2.09s
229:	learn: 10.4484099	total: 6.75s	remaining: 2.06s
230:	learn: 10.4377373	total: 6.78s	remaining: 2.03s
231:	learn: 10.4270601	total: 6.82s	remaining: 2s
232:	learn: 10.4051968	total: 6.85s	remaining: 1.97s
233:	learn: 10.3483300	total: 6.87s	remaining: 1.94s
234:	learn: 10.2865834	total: 6.9s	remaining: 1.91s
235:	learn: 10.2610314	total: 6.93s	remaining: 1.88s
236:	learn: 10.2388990	total: 6.96s	remaining: 1.85s
237:	learn: 10.1965393	total: 6.99s	remaining: 1.82s
238:	learn: 10.1800849	total: 7.02s	remaining: 1.79s
239:	learn: 10.1604400	total: 7.05s	remaining: 1.76s
240:	learn: 10.1302668	total: 7.08s	remaining: 1.73s
241:	learn: 10.1241338	total: 7.11s	remaining: 1.7s
242:	learn: 10.0835529	total: 7.13s	remaining: 1.67s
243:	learn: 10.0154507	total: 7.16s	remaining: 1.64s
244:	learn: 10.0024905	total: 7.18s	remaining: 1.61s
245:	learn: 9.9669119	total: 7.22s	remaining: 1.58s
246:	learn: 9.9325711	total: 7.26s	remaining: 1.56s
247:	learn: 9.8981230	total: 7.29s	remaining: 1.53s
248:	learn: 9.8660554	total: 7.32s	remaining: 1.5s
249:	learn: 9.8506587	total: 7.34s	remaining: 1.47s
250:	learn: 9.8080866	total: 7.37s	remaining: 1.44s
251:	learn: 9.7747070	total: 7.4s	remaining: 1.41s
252:	learn: 9.7589720	total: 7.43s	remaining: 1.38s
253:	learn: 9.7308058	total: 7.46s	remaining: 1.35s
254:	learn: 9.7157610	total: 7.49s	remaining: 1.32s
255:	learn: 9.6979675	total: 7.52s	remaining: 1.29s
256:	learn: 9.6657809	total: 7.54s	remaining: 1.26s
257:	learn: 9.6522187	total: 7.57s	remaining: 1.23s
258:	learn: 9.6375034	total: 7.6s	remaining: 1.2s
259:	learn: 9.6023653	total: 7.63s	remaining: 1.17s
260:	learn: 9.5760582	total: 7.65s	remaining: 1.14s
261:	learn: 9.5288913	total: 7.7s	remaining: 1.12s
262:	learn: 9.5151986	total: 7.72s	remaining: 1.09s
263:	learn: 9.4814503	total: 7.75s	remaining: 1.06s
264:	learn: 9.4635791	total: 7.78s	remaining: 1.03s
265:	learn: 9.4364856	total: 7.81s	remaining: 998ms
266:	learn: 9.4013439	total: 7.83s	remaining: 968ms
267:	learn: 9.3638018	total: 7.86s	remaining: 939ms
268:	learn: 9.3558171	total: 7.9s	remaining: 910ms
269:	learn: 9.3065751	total: 7.92s	remaining: 880ms
270:	learn: 9.2964146	total: 7.96s	remaining: 852ms
271:	learn: 9.2625670	total: 7.99s	remaining: 822ms
272:	learn: 9.2356760	total: 8.01s	remaining: 792ms
273:	learn: 9.2046550	total: 8.04s	remaining: 763ms
274:	learn: 9.1931591	total: 8.07s	remaining: 734ms
275:	learn: 9.1692863	total: 8.1s	remaining: 705ms
276:	learn: 9.1358490	total: 8.13s	remaining: 675ms
277:	learn: 9.1007511	total: 8.16s	remaining: 646ms
278:	learn: 9.0946236	total: 8.2s	remaining: 617ms
279:	learn: 9.0731587	total: 8.22s	remaining: 587ms
280:	learn: 9.0466446	total: 8.25s	remaining: 558ms
281:	learn: 9.0262027	total: 8.28s	remaining: 528ms
282:	learn: 8.9958148	total: 8.3s	remaining: 499ms
283:	learn: 8.9904119	total: 8.34s	remaining: 470ms
284:	learn: 8.9723234	total: 8.37s	remaining: 441ms
285:	learn: 8.9368256	total: 8.4s	remaining: 411ms
286:	learn: 8.8960967	total: 8.44s	remaining: 382ms
287:	learn: 8.8813638	total: 8.46s	remaining: 353ms
288:	learn: 8.8766445	total: 8.49s	remaining: 323ms
289:	learn: 8.8483604	total: 8.52s	remaining: 294ms
290:	learn: 8.8220559	total: 8.55s	remaining: 265ms
291:	learn: 8.7918301	total: 8.58s	remaining: 235ms
292:	learn: 8.7574504	total: 8.61s	remaining: 206ms
293:	learn: 8.7490725	total: 8.64s	remaining: 176ms
294:	learn: 8.7293377	total: 8.66s	remaining: 147ms
295:	learn: 8.7202847	total: 8.7s	remaining: 118ms
296:	learn: 8.6918465	total: 8.72s	remaining: 88.1ms
297:	learn: 8.6665828	total: 8.76s	remaining: 58.8ms
298:	learn: 8.6541683	total: 8.79s	remaining: 29.4ms
299:	learn: 8.6494740	total: 8.81s	remaining: 0us
0:	learn: 46.8012202	total: 26.4ms	remaining: 7.88s
1:	learn: 46.0273912	total: 53.4ms	remaining: 7.96s
2:	learn: 45.3733493	total: 81.4ms	remaining: 8.06s
3:	learn: 44.7109449	total: 125ms	remaining: 9.25s
4:	learn: 43.9430491	total: 152ms	remaining: 8.98s
5:	learn: 43.2536304	total: 181ms	remaining: 8.85s
6:	learn: 42.5901366	total: 210ms	remaining: 8.79s
7:	learn: 42.0362841	total: 237ms	remaining: 8.67s
8:	learn: 41.4655769	total: 265ms	remaining: 8.56s
9:	learn: 40.7617374	total: 293ms	remaining: 8.49s
10:	learn: 40.1467911	total: 324ms	remaining: 8.51s
11:	learn: 39.5322002	total: 358ms	remaining: 8.6s
12:	learn: 39.2369496	total: 384ms	remaining: 8.49s
13:	learn: 38.8730340	total: 412ms	remaining: 8.41s
14:	learn: 38.4661592	total: 439ms	remaining: 8.34s
15:	learn: 37.8483750	total: 442ms	remaining: 7.84s
16:	learn: 37.2598064	total: 468ms	remaining: 7.79s
17:	learn: 36.6878531	total: 495ms	remaining: 7.75s
18:	learn: 36.1765878	total: 527ms	remaining: 7.8s
19:	learn: 35.6111928	total: 557ms	remaining: 7.8s
20:	learn: 35.2113326	total: 585ms	remaining: 7.78s
21:	learn: 34.5754750	total: 622ms	remaining: 7.85s
22:	learn: 34.0844300	total: 650ms	remaining: 7.83s
23:	learn: 33.6434482	total: 677ms	remaining: 7.79s
24:	learn: 33.3578327	total: 703ms	remaining: 7.73s
25:	learn: 32.9883035	total: 730ms	remaining: 7.69s
26:	learn: 32.6325583	total: 758ms	remaining: 7.66s
27:	learn: 32.1886629	total: 791ms	remaining: 7.68s
28:	learn: 31.8587417	total: 817ms	remaining: 7.64s
29:	learn: 31.4999044	total: 851ms	remaining: 7.66s
30:	learn: 31.1903935	total: 878ms	remaining: 7.62s
31:	learn: 30.8877054	total: 904ms	remaining: 7.57s
32:	learn: 30.6421813	total: 930ms	remaining: 7.53s
33:	learn: 30.3687742	total: 957ms	remaining: 7.49s
34:	learn: 30.0972944	total: 996ms	remaining: 7.54s
35:	learn: 29.6026977	total: 1.02s	remaining: 7.5s
36:	learn: 29.3412855	total: 1.05s	remaining: 7.46s
37:	learn: 29.0138869	total: 1.09s	remaining: 7.5s
38:	learn: 28.6424952	total: 1.11s	remaining: 7.45s
39:	learn: 28.4408572	total: 1.14s	remaining: 7.41s
40:	learn: 28.0554435	total: 1.17s	remaining: 7.4s
41:	learn: 27.8389274	total: 1.2s	remaining: 7.37s
42:	learn: 27.5339353	total: 1.23s	remaining: 7.33s
43:	learn: 27.3640594	total: 1.25s	remaining: 7.29s
44:	learn: 27.1330981	total: 1.28s	remaining: 7.25s
45:	learn: 26.9507132	total: 1.31s	remaining: 7.22s
46:	learn: 26.7285619	total: 1.34s	remaining: 7.22s
47:	learn: 26.3518482	total: 1.37s	remaining: 7.18s
48:	learn: 26.0543584	total: 1.4s	remaining: 7.2s
49:	learn: 25.8251945	total: 1.44s	remaining: 7.18s
50:	learn: 25.5436752	total: 1.46s	remaining: 7.15s
51:	learn: 25.3250332	total: 1.49s	remaining: 7.11s
52:	learn: 25.1688504	total: 1.52s	remaining: 7.08s
53:	learn: 24.9813407	total: 1.54s	remaining: 7.04s
54:	learn: 24.7384847	total: 1.58s	remaining: 7.04s
55:	learn: 24.5163023	total: 1.61s	remaining: 7.02s
56:	learn: 24.2729235	total: 1.64s	remaining: 7s
57:	learn: 24.1318061	total: 1.67s	remaining: 6.96s
58:	learn: 23.9701754	total: 1.7s	remaining: 6.93s
59:	learn: 23.8112940	total: 1.72s	remaining: 6.89s
60:	learn: 23.6723877	total: 1.75s	remaining: 6.85s
61:	learn: 23.5289336	total: 1.77s	remaining: 6.82s
62:	learn: 23.4106679	total: 1.8s	remaining: 6.78s
63:	learn: 23.2082280	total: 1.84s	remaining: 6.8s
64:	learn: 23.0959607	total: 1.87s	remaining: 6.76s
65:	learn: 22.9890902	total: 1.9s	remaining: 6.73s
66:	learn: 22.8516666	total: 1.93s	remaining: 6.7s
67:	learn: 22.7282575	total: 1.95s	remaining: 6.67s
68:	learn: 22.5991392	total: 1.98s	remaining: 6.63s
69:	learn: 22.3825348	total: 2.01s	remaining: 6.61s
70:	learn: 22.2284455	total: 2.04s	remaining: 6.59s
71:	learn: 22.0431735	total: 2.08s	remaining: 6.58s
72:	learn: 21.8930406	total: 2.1s	remaining: 6.54s
73:	learn: 21.7459390	total: 2.13s	remaining: 6.5s
74:	learn: 21.6277633	total: 2.15s	remaining: 6.46s
75:	learn: 21.4144047	total: 2.18s	remaining: 6.43s
76:	learn: 21.2747440	total: 2.21s	remaining: 6.41s
77:	learn: 21.1153657	total: 2.25s	remaining: 6.41s
78:	learn: 21.0445825	total: 2.28s	remaining: 6.37s
79:	learn: 20.9348935	total: 2.31s	remaining: 6.36s
80:	learn: 20.7685253	total: 2.34s	remaining: 6.33s
81:	learn: 20.6539889	total: 2.37s	remaining: 6.3s
82:	learn: 20.4538530	total: 2.4s	remaining: 6.27s
83:	learn: 20.3461251	total: 2.43s	remaining: 6.25s
84:	learn: 20.1992221	total: 2.46s	remaining: 6.22s
85:	learn: 20.0842190	total: 2.48s	remaining: 6.18s
86:	learn: 19.9903250	total: 2.51s	remaining: 6.15s
87:	learn: 19.9084171	total: 2.54s	remaining: 6.12s
88:	learn: 19.7929727	total: 2.57s	remaining: 6.1s
89:	learn: 19.7205230	total: 2.6s	remaining: 6.06s
90:	learn: 19.6075486	total: 2.63s	remaining: 6.04s
91:	learn: 19.5309964	total: 2.67s	remaining: 6.03s
92:	learn: 19.4363684	total: 2.69s	remaining: 6s
93:	learn: 19.3378127	total: 2.72s	remaining: 5.96s
94:	learn: 19.2292896	total: 2.75s	remaining: 5.94s
95:	learn: 19.1011370	total: 2.78s	remaining: 5.9s
96:	learn: 18.9974491	total: 2.81s	remaining: 5.88s
97:	learn: 18.8636531	total: 2.84s	remaining: 5.85s
98:	learn: 18.7739910	total: 2.87s	remaining: 5.83s
99:	learn: 18.6948867	total: 2.9s	remaining: 5.8s
100:	learn: 18.5747433	total: 2.93s	remaining: 5.77s
101:	learn: 18.5307499	total: 2.95s	remaining: 5.73s
102:	learn: 18.4248127	total: 2.98s	remaining: 5.7s
103:	learn: 18.3301727	total: 3.01s	remaining: 5.67s
104:	learn: 18.2579998	total: 3.04s	remaining: 5.65s
105:	learn: 18.1614231	total: 3.07s	remaining: 5.61s
106:	learn: 18.0748134	total: 3.1s	remaining: 5.6s
107:	learn: 17.9862898	total: 3.13s	remaining: 5.57s
108:	learn: 17.9368507	total: 3.16s	remaining: 5.54s
109:	learn: 17.8058561	total: 3.19s	remaining: 5.5s
110:	learn: 17.7371383	total: 3.21s	remaining: 5.47s
111:	learn: 17.6303538	total: 3.24s	remaining: 5.44s
112:	learn: 17.5449989	total: 3.27s	remaining: 5.41s
113:	learn: 17.4776008	total: 3.31s	remaining: 5.39s
114:	learn: 17.3648029	total: 3.34s	remaining: 5.37s
115:	learn: 17.2618916	total: 3.36s	remaining: 5.33s
116:	learn: 17.2111539	total: 3.39s	remaining: 5.3s
117:	learn: 17.1018870	total: 3.42s	remaining: 5.27s
118:	learn: 17.0024931	total: 3.44s	remaining: 5.24s
119:	learn: 16.9743860	total: 3.47s	remaining: 5.2s
120:	learn: 16.9130305	total: 3.5s	remaining: 5.17s
121:	learn: 16.8016712	total: 3.54s	remaining: 5.16s
122:	learn: 16.7261518	total: 3.57s	remaining: 5.14s
123:	learn: 16.6593504	total: 3.6s	remaining: 5.11s
124:	learn: 16.5732663	total: 3.63s	remaining: 5.08s
125:	learn: 16.4947922	total: 3.65s	remaining: 5.05s
126:	learn: 16.3991688	total: 3.68s	remaining: 5.01s
127:	learn: 16.3086895	total: 3.71s	remaining: 4.98s
128:	learn: 16.2101210	total: 3.74s	remaining: 4.95s
129:	learn: 16.1541963	total: 3.78s	remaining: 4.94s
130:	learn: 16.0790764	total: 3.81s	remaining: 4.91s
131:	learn: 16.0139723	total: 3.83s	remaining: 4.88s
132:	learn: 15.8906448	total: 3.86s	remaining: 4.84s
133:	learn: 15.8064421	total: 3.88s	remaining: 4.81s
134:	learn: 15.7265305	total: 3.91s	remaining: 4.78s
135:	learn: 15.6621677	total: 3.94s	remaining: 4.75s
136:	learn: 15.5922471	total: 3.97s	remaining: 4.72s
137:	learn: 15.5550517	total: 4s	remaining: 4.7s
138:	learn: 15.5278059	total: 4.04s	remaining: 4.68s
139:	learn: 15.4494043	total: 4.07s	remaining: 4.65s
140:	learn: 15.3765788	total: 4.09s	remaining: 4.62s
141:	learn: 15.3158598	total: 4.12s	remaining: 4.59s
142:	learn: 15.2121980	total: 4.15s	remaining: 4.55s
143:	learn: 15.0893974	total: 4.18s	remaining: 4.53s
144:	learn: 15.0074795	total: 4.21s	remaining: 4.5s
145:	learn: 14.9489574	total: 4.24s	remaining: 4.47s
146:	learn: 14.9258844	total: 4.27s	remaining: 4.44s
147:	learn: 14.8471123	total: 4.3s	remaining: 4.41s
148:	learn: 14.7745818	total: 4.32s	remaining: 4.38s
149:	learn: 14.6905246	total: 4.35s	remaining: 4.35s
150:	learn: 14.5873644	total: 4.38s	remaining: 4.32s
151:	learn: 14.5337902	total: 4.42s	remaining: 4.31s
152:	learn: 14.4749040	total: 4.45s	remaining: 4.28s
153:	learn: 14.3890824	total: 4.48s	remaining: 4.25s
154:	learn: 14.3259009	total: 4.51s	remaining: 4.22s
155:	learn: 14.2113192	total: 4.54s	remaining: 4.2s
156:	learn: 14.1718909	total: 4.57s	remaining: 4.16s
157:	learn: 14.1110356	total: 4.6s	remaining: 4.13s
158:	learn: 14.0362591	total: 4.63s	remaining: 4.11s
159:	learn: 13.9188238	total: 4.66s	remaining: 4.08s
160:	learn: 13.7740452	total: 4.69s	remaining: 4.05s
161:	learn: 13.7228642	total: 4.71s	remaining: 4.02s
162:	learn: 13.6648536	total: 4.74s	remaining: 3.98s
163:	learn: 13.5724722	total: 4.78s	remaining: 3.96s
164:	learn: 13.5141405	total: 4.8s	remaining: 3.93s
165:	learn: 13.4267305	total: 4.84s	remaining: 3.9s
166:	learn: 13.3370179	total: 4.87s	remaining: 3.88s
167:	learn: 13.2503127	total: 4.89s	remaining: 3.85s
168:	learn: 13.1743816	total: 4.92s	remaining: 3.81s
169:	learn: 13.1087726	total: 4.95s	remaining: 3.79s
170:	learn: 13.0426739	total: 4.98s	remaining: 3.76s
171:	learn: 12.9968745	total: 5.01s	remaining: 3.73s
172:	learn: 12.9301422	total: 5.04s	remaining: 3.7s
173:	learn: 12.9104864	total: 5.07s	remaining: 3.67s
174:	learn: 12.8199271	total: 5.1s	remaining: 3.64s
175:	learn: 12.7796485	total: 5.13s	remaining: 3.61s
176:	learn: 12.6883779	total: 5.16s	remaining: 3.58s
177:	learn: 12.5869619	total: 5.18s	remaining: 3.55s
178:	learn: 12.5397815	total: 5.21s	remaining: 3.52s
179:	learn: 12.4692676	total: 5.24s	remaining: 3.49s
180:	learn: 12.4433237	total: 5.27s	remaining: 3.47s
181:	learn: 12.3985342	total: 5.31s	remaining: 3.44s
182:	learn: 12.3635932	total: 5.34s	remaining: 3.41s
183:	learn: 12.2512719	total: 5.36s	remaining: 3.38s
184:	learn: 12.1558647	total: 5.39s	remaining: 3.35s
185:	learn: 12.1369112	total: 5.42s	remaining: 3.32s
186:	learn: 12.0798700	total: 5.45s	remaining: 3.29s
187:	learn: 12.0010668	total: 5.47s	remaining: 3.26s
188:	learn: 11.9442666	total: 5.51s	remaining: 3.24s
189:	learn: 11.8628888	total: 5.54s	remaining: 3.21s
190:	learn: 11.7616769	total: 5.57s	remaining: 3.18s
191:	learn: 11.6699926	total: 5.6s	remaining: 3.15s
192:	learn: 11.6392816	total: 5.62s	remaining: 3.12s
193:	learn: 11.5955244	total: 5.65s	remaining: 3.09s
194:	learn: 11.5772160	total: 5.67s	remaining: 3.06s
195:	learn: 11.5465581	total: 5.7s	remaining: 3.02s
196:	learn: 11.4564641	total: 5.74s	remaining: 3s
197:	learn: 11.3978031	total: 5.77s	remaining: 2.97s
198:	learn: 11.3460158	total: 5.8s	remaining: 2.94s
199:	learn: 11.2627720	total: 5.83s	remaining: 2.91s
200:	learn: 11.2162738	total: 5.86s	remaining: 2.88s
201:	learn: 11.1905894	total: 5.88s	remaining: 2.85s
202:	learn: 11.1639946	total: 5.91s	remaining: 2.82s
203:	learn: 11.0885906	total: 5.94s	remaining: 2.79s
204:	learn: 11.0284516	total: 5.96s	remaining: 2.76s
205:	learn: 10.9731416	total: 6s	remaining: 2.74s
206:	learn: 10.9378121	total: 6.03s	remaining: 2.71s
207:	learn: 10.8935640	total: 6.06s	remaining: 2.68s
208:	learn: 10.8572901	total: 6.08s	remaining: 2.65s
209:	learn: 10.8037961	total: 6.11s	remaining: 2.62s
210:	learn: 10.7458107	total: 6.14s	remaining: 2.59s
211:	learn: 10.7082447	total: 6.17s	remaining: 2.56s
212:	learn: 10.6599173	total: 6.19s	remaining: 2.53s
213:	learn: 10.6028419	total: 6.24s	remaining: 2.5s
214:	learn: 10.5627192	total: 6.26s	remaining: 2.48s
215:	learn: 10.5213774	total: 6.29s	remaining: 2.45s
216:	learn: 10.4732429	total: 6.32s	remaining: 2.42s
217:	learn: 10.4188551	total: 6.35s	remaining: 2.39s
218:	learn: 10.3740622	total: 6.38s	remaining: 2.36s
219:	learn: 10.3399349	total: 6.4s	remaining: 2.33s
220:	learn: 10.2824635	total: 6.43s	remaining: 2.3s
221:	learn: 10.2458277	total: 6.47s	remaining: 2.27s
222:	learn: 10.2341252	total: 6.5s	remaining: 2.25s
223:	learn: 10.1392287	total: 6.53s	remaining: 2.21s
224:	learn: 10.1088124	total: 6.56s	remaining: 2.19s
225:	learn: 10.0471375	total: 6.58s	remaining: 2.16s
226:	learn: 9.9852333	total: 6.61s	remaining: 2.13s
227:	learn: 9.9292294	total: 6.64s	remaining: 2.1s
228:	learn: 9.9015453	total: 6.68s	remaining: 2.07s
229:	learn: 9.8905067	total: 6.7s	remaining: 2.04s
230:	learn: 9.8507503	total: 6.74s	remaining: 2.01s
231:	learn: 9.7964411	total: 6.77s	remaining: 1.98s
232:	learn: 9.7540779	total: 6.79s	remaining: 1.95s
233:	learn: 9.7051776	total: 6.82s	remaining: 1.92s
234:	learn: 9.6539147	total: 6.85s	remaining: 1.89s
235:	learn: 9.6073112	total: 6.88s	remaining: 1.87s
236:	learn: 9.5975483	total: 6.91s	remaining: 1.84s
237:	learn: 9.5489561	total: 6.94s	remaining: 1.81s
238:	learn: 9.5160122	total: 6.97s	remaining: 1.78s
239:	learn: 9.4620416	total: 7s	remaining: 1.75s
240:	learn: 9.4463510	total: 7.02s	remaining: 1.72s
241:	learn: 9.4389200	total: 7.05s	remaining: 1.69s
242:	learn: 9.4078400	total: 7.08s	remaining: 1.66s
243:	learn: 9.3866265	total: 7.11s	remaining: 1.63s
244:	learn: 9.3473501	total: 7.14s	remaining: 1.6s
245:	learn: 9.2861016	total: 7.17s	remaining: 1.57s
246:	learn: 9.2734740	total: 7.19s	remaining: 1.54s
247:	learn: 9.2343522	total: 7.23s	remaining: 1.51s
248:	learn: 9.2223405	total: 7.25s	remaining: 1.49s
249:	learn: 9.2140074	total: 7.29s	remaining: 1.46s
250:	learn: 9.2046313	total: 7.32s	remaining: 1.43s
251:	learn: 9.1705343	total: 7.34s	remaining: 1.4s
252:	learn: 9.1635400	total: 7.37s	remaining: 1.37s
253:	learn: 9.1201103	total: 7.4s	remaining: 1.34s
254:	learn: 9.0874222	total: 7.42s	remaining: 1.31s
255:	learn: 9.0546404	total: 7.46s	remaining: 1.28s
256:	learn: 9.0294210	total: 7.49s	remaining: 1.25s
257:	learn: 8.9918549	total: 7.52s	remaining: 1.22s
258:	learn: 8.9860821	total: 7.55s	remaining: 1.2s
259:	learn: 8.9445721	total: 7.58s	remaining: 1.17s
260:	learn: 8.9204013	total: 7.61s	remaining: 1.14s
261:	learn: 8.8802796	total: 7.63s	remaining: 1.11s
262:	learn: 8.8319848	total: 7.66s	remaining: 1.08s
263:	learn: 8.8040786	total: 7.7s	remaining: 1.05s
264:	learn: 8.7674300	total: 7.73s	remaining: 1.02s
265:	learn: 8.7486932	total: 7.76s	remaining: 992ms
266:	learn: 8.7223059	total: 7.78s	remaining: 962ms
267:	learn: 8.7108992	total: 7.81s	remaining: 933ms
268:	learn: 8.7026068	total: 7.84s	remaining: 903ms
269:	learn: 8.6836280	total: 7.86s	remaining: 874ms
270:	learn: 8.6467938	total: 7.89s	remaining: 844ms
271:	learn: 8.6111555	total: 7.92s	remaining: 815ms
272:	learn: 8.5824973	total: 7.96s	remaining: 787ms
273:	learn: 8.5682745	total: 7.99s	remaining: 758ms
274:	learn: 8.5416779	total: 8.02s	remaining: 729ms
275:	learn: 8.5066950	total: 8.04s	remaining: 699ms
276:	learn: 8.4970713	total: 8.07s	remaining: 670ms
277:	learn: 8.4596116	total: 8.1s	remaining: 641ms
278:	learn: 8.4475857	total: 8.13s	remaining: 612ms
279:	learn: 8.4267482	total: 8.15s	remaining: 582ms
280:	learn: 8.4095246	total: 8.19s	remaining: 554ms
281:	learn: 8.3674941	total: 8.22s	remaining: 525ms
282:	learn: 8.3151248	total: 8.25s	remaining: 495ms
283:	learn: 8.2823195	total: 8.27s	remaining: 466ms
284:	learn: 8.2593854	total: 8.3s	remaining: 437ms
285:	learn: 8.2331325	total: 8.33s	remaining: 408ms
286:	learn: 8.1912221	total: 8.35s	remaining: 378ms
287:	learn: 8.1688810	total: 8.39s	remaining: 350ms
288:	learn: 8.1497193	total: 8.43s	remaining: 321ms
289:	learn: 8.1293205	total: 8.46s	remaining: 292ms
290:	learn: 8.1107539	total: 8.48s	remaining: 262ms
291:	learn: 8.0849956	total: 8.51s	remaining: 233ms
292:	learn: 8.0440544	total: 8.54s	remaining: 204ms
293:	learn: 8.0183325	total: 8.56s	remaining: 175ms
294:	learn: 7.9783905	total: 8.59s	remaining: 146ms
295:	learn: 7.9644989	total: 8.63s	remaining: 117ms
296:	learn: 7.9392598	total: 8.65s	remaining: 87.4ms
297:	learn: 7.9167538	total: 8.69s	remaining: 58.3ms
298:	learn: 7.8751558	total: 8.72s	remaining: 29.2ms
299:	learn: 7.8630471	total: 8.74s	remaining: 0us
0:	learn: 27.6506730	total: 7.29ms	remaining: 722ms
1:	learn: 27.1638793	total: 12.5ms	remaining: 611ms
2:	learn: 26.8000665	total: 17.9ms	remaining: 579ms
3:	learn: 26.4256132	total: 23.1ms	remaining: 555ms
4:	learn: 26.0088351	total: 28.3ms	remaining: 537ms
5:	learn: 25.7558298	total: 33.9ms	remaining: 530ms
6:	learn: 25.3380711	total: 39.1ms	remaining: 519ms
7:	learn: 25.0571611	total: 44.4ms	remaining: 511ms
8:	learn: 24.6790148	total: 49.5ms	remaining: 500ms
9:	learn: 24.3600941	total: 54.9ms	remaining: 494ms
10:	learn: 24.1105667	total: 60.1ms	remaining: 486ms
11:	learn: 23.7736542	total: 64.8ms	remaining: 475ms
12:	learn: 23.5824429	total: 69.5ms	remaining: 465ms
13:	learn: 23.2658303	total: 74.3ms	remaining: 457ms
14:	learn: 23.0061886	total: 79.1ms	remaining: 448ms
15:	learn: 22.8060389	total: 83.7ms	remaining: 440ms
16:	learn: 22.5899735	total: 89.1ms	remaining: 435ms
17:	learn: 22.3625048	total: 94.8ms	remaining: 432ms
18:	learn: 22.0706477	total: 100ms	remaining: 427ms
19:	learn: 21.8739394	total: 105ms	remaining: 420ms
20:	learn: 21.6143650	total: 110ms	remaining: 412ms
21:	learn: 21.4571623	total: 114ms	remaining: 404ms
22:	learn: 21.2395769	total: 118ms	remaining: 397ms
23:	learn: 20.9801795	total: 123ms	remaining: 390ms
24:	learn: 20.8036808	total: 128ms	remaining: 383ms
25:	learn: 20.6387539	total: 132ms	remaining: 376ms
26:	learn: 20.4401427	total: 136ms	remaining: 368ms
27:	learn: 20.2879575	total: 141ms	remaining: 362ms
28:	learn: 20.0538664	total: 145ms	remaining: 355ms
29:	learn: 19.8363102	total: 149ms	remaining: 349ms
30:	learn: 19.7015446	total: 154ms	remaining: 343ms
31:	learn: 19.5483114	total: 159ms	remaining: 338ms
32:	learn: 19.4163053	total: 164ms	remaining: 333ms
33:	learn: 19.2880625	total: 169ms	remaining: 328ms
34:	learn: 19.1303389	total: 174ms	remaining: 323ms
35:	learn: 18.9237448	total: 178ms	remaining: 317ms
36:	learn: 18.8142925	total: 183ms	remaining: 312ms
37:	learn: 18.6994696	total: 187ms	remaining: 306ms
38:	learn: 18.5629211	total: 192ms	remaining: 301ms
39:	learn: 18.4600917	total: 197ms	remaining: 295ms
40:	learn: 18.3567139	total: 201ms	remaining: 290ms
41:	learn: 18.2120527	total: 205ms	remaining: 284ms
42:	learn: 18.0688062	total: 210ms	remaining: 278ms
43:	learn: 17.9250181	total: 215ms	remaining: 274ms
44:	learn: 17.8399138	total: 220ms	remaining: 269ms
45:	learn: 17.6720713	total: 224ms	remaining: 263ms
46:	learn: 17.5273091	total: 229ms	remaining: 258ms
47:	learn: 17.4232814	total: 234ms	remaining: 253ms
48:	learn: 17.2957579	total: 241ms	remaining: 251ms
49:	learn: 17.1892874	total: 248ms	remaining: 248ms
50:	learn: 17.0490355	total: 255ms	remaining: 245ms
51:	learn: 16.9666450	total: 261ms	remaining: 241ms
52:	learn: 16.8600056	total: 266ms	remaining: 236ms
53:	learn: 16.7542588	total: 271ms	remaining: 231ms
54:	learn: 16.6316077	total: 279ms	remaining: 228ms
55:	learn: 16.5588112	total: 283ms	remaining: 223ms
56:	learn: 16.5010186	total: 288ms	remaining: 217ms
57:	learn: 16.4081540	total: 293ms	remaining: 212ms
58:	learn: 16.3040451	total: 297ms	remaining: 207ms
59:	learn: 16.1890564	total: 302ms	remaining: 201ms
60:	learn: 16.0977103	total: 307ms	remaining: 196ms
61:	learn: 15.9627607	total: 312ms	remaining: 191ms
62:	learn: 15.9022248	total: 316ms	remaining: 186ms
63:	learn: 15.8151881	total: 321ms	remaining: 181ms
64:	learn: 15.7353125	total: 326ms	remaining: 175ms
65:	learn: 15.6312897	total: 330ms	remaining: 170ms
66:	learn: 15.5330927	total: 335ms	remaining: 165ms
67:	learn: 15.4698681	total: 339ms	remaining: 159ms
68:	learn: 15.4108571	total: 344ms	remaining: 154ms
69:	learn: 15.3492945	total: 348ms	remaining: 149ms
70:	learn: 15.3036540	total: 353ms	remaining: 144ms
71:	learn: 15.2390833	total: 358ms	remaining: 139ms
72:	learn: 15.1556327	total: 362ms	remaining: 134ms
73:	learn: 15.1016315	total: 367ms	remaining: 129ms
74:	learn: 15.0287076	total: 371ms	remaining: 124ms
75:	learn: 14.9530572	total: 376ms	remaining: 119ms
76:	learn: 14.8965517	total: 381ms	remaining: 114ms
77:	learn: 14.8125426	total: 386ms	remaining: 109ms
78:	learn: 14.7435359	total: 391ms	remaining: 104ms
79:	learn: 14.6963163	total: 395ms	remaining: 98.8ms
80:	learn: 14.6200060	total: 399ms	remaining: 93.7ms
81:	learn: 14.5707760	total: 404ms	remaining: 88.7ms
82:	learn: 14.5053651	total: 409ms	remaining: 83.8ms
83:	learn: 14.4115458	total: 414ms	remaining: 78.8ms
84:	learn: 14.3117159	total: 418ms	remaining: 73.8ms
85:	learn: 14.2511326	total: 424ms	remaining: 69ms
86:	learn: 14.1372486	total: 429ms	remaining: 64.1ms
87:	learn: 14.0992301	total: 434ms	remaining: 59.2ms
88:	learn: 14.0228331	total: 439ms	remaining: 54.2ms
89:	learn: 13.9249836	total: 443ms	remaining: 49.2ms
90:	learn: 13.8679364	total: 449ms	remaining: 44.4ms
91:	learn: 13.8405578	total: 457ms	remaining: 39.7ms
92:	learn: 13.7711325	total: 467ms	remaining: 35.1ms
93:	learn: 13.7357019	total: 474ms	remaining: 30.3ms
94:	learn: 13.6735271	total: 482ms	remaining: 25.4ms
95:	learn: 13.5682393	total: 488ms	remaining: 20.3ms
96:	learn: 13.5342610	total: 494ms	remaining: 15.3ms
97:	learn: 13.4710034	total: 500ms	remaining: 10.2ms
98:	learn: 13.4022402	total: 507ms	remaining: 5.12ms
99:	learn: 13.3351238	total: 514ms	remaining: 0us
0:	learn: 42.9181702	total: 5.01ms	remaining: 496ms
1:	learn: 42.0286736	total: 9.85ms	remaining: 483ms
2:	learn: 41.2764568	total: 14.6ms	remaining: 473ms
3:	learn: 40.4721918	total: 19.6ms	remaining: 470ms
4:	learn: 39.8518928	total: 24.2ms	remaining: 460ms
5:	learn: 39.2645479	total: 28.7ms	remaining: 450ms
6:	learn: 38.4453704	total: 33.1ms	remaining: 440ms
7:	learn: 37.7122059	total: 37.8ms	remaining: 435ms
8:	learn: 36.9185796	total: 42.4ms	remaining: 429ms
9:	learn: 36.1668427	total: 47.4ms	remaining: 426ms
10:	learn: 35.5639029	total: 52.5ms	remaining: 425ms
11:	learn: 34.7724193	total: 57.4ms	remaining: 421ms
12:	learn: 34.3053433	total: 62.6ms	remaining: 419ms
13:	learn: 33.6561327	total: 64ms	remaining: 393ms
14:	learn: 33.0134042	total: 68.9ms	remaining: 390ms
15:	learn: 32.4483300	total: 74.5ms	remaining: 391ms
16:	learn: 31.8581144	total: 79.7ms	remaining: 389ms
17:	learn: 31.2858301	total: 85.5ms	remaining: 389ms
18:	learn: 30.8483018	total: 94.7ms	remaining: 404ms
19:	learn: 30.4174622	total: 102ms	remaining: 408ms
20:	learn: 29.8994411	total: 109ms	remaining: 409ms
21:	learn: 29.5045355	total: 114ms	remaining: 403ms
22:	learn: 28.9923519	total: 120ms	remaining: 401ms
23:	learn: 28.4255717	total: 125ms	remaining: 394ms
24:	learn: 28.0283139	total: 129ms	remaining: 388ms
25:	learn: 27.7434814	total: 134ms	remaining: 381ms
26:	learn: 27.2770731	total: 138ms	remaining: 374ms
27:	learn: 26.8928270	total: 143ms	remaining: 368ms
28:	learn: 26.4282671	total: 148ms	remaining: 362ms
29:	learn: 26.0272764	total: 153ms	remaining: 356ms
30:	learn: 25.7579312	total: 157ms	remaining: 349ms
31:	learn: 25.4542434	total: 161ms	remaining: 343ms
32:	learn: 25.1232564	total: 166ms	remaining: 338ms
33:	learn: 24.8110795	total: 171ms	remaining: 332ms
34:	learn: 24.5077579	total: 176ms	remaining: 327ms
35:	learn: 24.1909000	total: 180ms	remaining: 320ms
36:	learn: 23.8719468	total: 185ms	remaining: 315ms
37:	learn: 23.5764366	total: 186ms	remaining: 304ms
38:	learn: 23.3468086	total: 191ms	remaining: 298ms
39:	learn: 23.0908771	total: 195ms	remaining: 293ms
40:	learn: 22.8580876	total: 200ms	remaining: 288ms
41:	learn: 22.6060825	total: 205ms	remaining: 283ms
42:	learn: 22.4125407	total: 210ms	remaining: 278ms
43:	learn: 22.1990617	total: 214ms	remaining: 273ms
44:	learn: 21.9716164	total: 219ms	remaining: 267ms
45:	learn: 21.8360935	total: 224ms	remaining: 262ms
46:	learn: 21.6169256	total: 228ms	remaining: 257ms
47:	learn: 21.4620612	total: 234ms	remaining: 253ms
48:	learn: 21.2894194	total: 239ms	remaining: 248ms
49:	learn: 21.1066266	total: 243ms	remaining: 243ms
50:	learn: 20.9484898	total: 248ms	remaining: 238ms
51:	learn: 20.7195338	total: 252ms	remaining: 233ms
52:	learn: 20.4899740	total: 257ms	remaining: 228ms
53:	learn: 20.3356583	total: 262ms	remaining: 223ms
54:	learn: 20.0754393	total: 266ms	remaining: 218ms
55:	learn: 19.9199159	total: 272ms	remaining: 214ms
56:	learn: 19.7761128	total: 277ms	remaining: 209ms
57:	learn: 19.6533060	total: 282ms	remaining: 204ms
58:	learn: 19.5113942	total: 287ms	remaining: 199ms
59:	learn: 19.3985022	total: 292ms	remaining: 195ms
60:	learn: 19.2683443	total: 300ms	remaining: 192ms
61:	learn: 19.1460824	total: 307ms	remaining: 188ms
62:	learn: 19.0042655	total: 317ms	remaining: 186ms
63:	learn: 18.8720873	total: 323ms	remaining: 182ms
64:	learn: 18.7183888	total: 332ms	remaining: 179ms
65:	learn: 18.5472360	total: 337ms	remaining: 173ms
66:	learn: 18.3976642	total: 342ms	remaining: 168ms
67:	learn: 18.2282851	total: 347ms	remaining: 163ms
68:	learn: 18.1469157	total: 353ms	remaining: 159ms
69:	learn: 18.0649494	total: 359ms	remaining: 154ms
70:	learn: 17.9485405	total: 364ms	remaining: 149ms
71:	learn: 17.8460261	total: 370ms	remaining: 144ms
72:	learn: 17.7679843	total: 375ms	remaining: 139ms
73:	learn: 17.5989290	total: 381ms	remaining: 134ms
74:	learn: 17.4381322	total: 385ms	remaining: 128ms
75:	learn: 17.3370886	total: 390ms	remaining: 123ms
76:	learn: 17.2675308	total: 396ms	remaining: 118ms
77:	learn: 17.1946430	total: 401ms	remaining: 113ms
78:	learn: 17.0923725	total: 406ms	remaining: 108ms
79:	learn: 17.0537265	total: 411ms	remaining: 103ms
80:	learn: 16.9456831	total: 416ms	remaining: 97.6ms
81:	learn: 16.8457353	total: 421ms	remaining: 92.3ms
82:	learn: 16.7469310	total: 426ms	remaining: 87.2ms
83:	learn: 16.6679953	total: 430ms	remaining: 82ms
84:	learn: 16.6274189	total: 435ms	remaining: 76.7ms
85:	learn: 16.5516530	total: 439ms	remaining: 71.5ms
86:	learn: 16.4886066	total: 444ms	remaining: 66.3ms
87:	learn: 16.3947859	total: 449ms	remaining: 61.2ms
88:	learn: 16.3406495	total: 454ms	remaining: 56.2ms
89:	learn: 16.3019195	total: 459ms	remaining: 51ms
90:	learn: 16.1860681	total: 464ms	remaining: 45.8ms
91:	learn: 16.1282812	total: 468ms	remaining: 40.7ms
92:	learn: 16.0303652	total: 473ms	remaining: 35.6ms
93:	learn: 15.9561692	total: 478ms	remaining: 30.5ms
94:	learn: 15.8733994	total: 483ms	remaining: 25.4ms
95:	learn: 15.8108833	total: 488ms	remaining: 20.3ms
96:	learn: 15.7606004	total: 493ms	remaining: 15.3ms
97:	learn: 15.6984664	total: 501ms	remaining: 10.2ms
98:	learn: 15.6223632	total: 508ms	remaining: 5.13ms
99:	learn: 15.5671136	total: 516ms	remaining: 0us
0:	learn: 46.4788614	total: 1.99ms	remaining: 197ms
1:	learn: 45.7608372	total: 6.7ms	remaining: 328ms
2:	learn: 44.8825004	total: 11.3ms	remaining: 366ms
3:	learn: 44.0362738	total: 15.6ms	remaining: 376ms
4:	learn: 43.2086374	total: 20.1ms	remaining: 383ms
5:	learn: 42.5835773	total: 24.8ms	remaining: 388ms
6:	learn: 41.9673269	total: 29.3ms	remaining: 389ms
7:	learn: 41.4748717	total: 34ms	remaining: 391ms
8:	learn: 40.7129183	total: 38.6ms	remaining: 390ms
9:	learn: 39.8900884	total: 43.9ms	remaining: 395ms
10:	learn: 39.4142193	total: 48.5ms	remaining: 392ms
11:	learn: 38.8645613	total: 53.1ms	remaining: 390ms
12:	learn: 38.2394731	total: 57.8ms	remaining: 387ms
13:	learn: 37.6834515	total: 62.4ms	remaining: 383ms
14:	learn: 37.0673507	total: 66.9ms	remaining: 379ms
15:	learn: 36.4728340	total: 71.6ms	remaining: 376ms
16:	learn: 36.0489086	total: 75.9ms	remaining: 371ms
17:	learn: 35.4744141	total: 80.5ms	remaining: 367ms
18:	learn: 35.0106021	total: 84.7ms	remaining: 361ms
19:	learn: 34.5586053	total: 89.2ms	remaining: 357ms
20:	learn: 34.1308223	total: 94.1ms	remaining: 354ms
21:	learn: 33.7701450	total: 98.7ms	remaining: 350ms
22:	learn: 33.4425444	total: 103ms	remaining: 345ms
23:	learn: 33.0296412	total: 108ms	remaining: 341ms
24:	learn: 32.6359803	total: 113ms	remaining: 338ms
25:	learn: 32.1846182	total: 117ms	remaining: 334ms
26:	learn: 31.7620230	total: 122ms	remaining: 331ms
27:	learn: 31.4669337	total: 127ms	remaining: 326ms
28:	learn: 31.0792062	total: 132ms	remaining: 322ms
29:	learn: 30.7970537	total: 139ms	remaining: 323ms
30:	learn: 30.4952215	total: 146ms	remaining: 326ms
31:	learn: 30.2845344	total: 158ms	remaining: 335ms
32:	learn: 29.9592732	total: 164ms	remaining: 333ms
33:	learn: 29.6798596	total: 171ms	remaining: 332ms
34:	learn: 29.3368905	total: 176ms	remaining: 328ms
35:	learn: 29.0621238	total: 182ms	remaining: 323ms
36:	learn: 28.6445375	total: 187ms	remaining: 318ms
37:	learn: 28.2418096	total: 192ms	remaining: 314ms
38:	learn: 27.9495390	total: 198ms	remaining: 310ms
39:	learn: 27.6958160	total: 204ms	remaining: 305ms
40:	learn: 27.4811189	total: 209ms	remaining: 301ms
41:	learn: 27.1494420	total: 214ms	remaining: 296ms
42:	learn: 26.8388873	total: 219ms	remaining: 291ms
43:	learn: 26.5721300	total: 225ms	remaining: 286ms
44:	learn: 26.3384738	total: 230ms	remaining: 282ms
45:	learn: 26.1894781	total: 235ms	remaining: 276ms
46:	learn: 25.9580198	total: 240ms	remaining: 271ms
47:	learn: 25.7897985	total: 245ms	remaining: 265ms
48:	learn: 25.6000271	total: 250ms	remaining: 260ms
49:	learn: 25.4130873	total: 254ms	remaining: 254ms
50:	learn: 25.1699061	total: 259ms	remaining: 249ms
51:	learn: 24.9324449	total: 264ms	remaining: 243ms
52:	learn: 24.7729152	total: 268ms	remaining: 238ms
53:	learn: 24.5026563	total: 272ms	remaining: 232ms
54:	learn: 24.2332627	total: 276ms	remaining: 226ms
55:	learn: 23.9611984	total: 281ms	remaining: 221ms
56:	learn: 23.7862603	total: 285ms	remaining: 215ms
57:	learn: 23.6318154	total: 289ms	remaining: 209ms
58:	learn: 23.4443306	total: 294ms	remaining: 204ms
59:	learn: 23.2581425	total: 298ms	remaining: 199ms
60:	learn: 23.0549901	total: 302ms	remaining: 193ms
61:	learn: 22.8666218	total: 307ms	remaining: 188ms
62:	learn: 22.6956739	total: 311ms	remaining: 183ms
63:	learn: 22.5068544	total: 316ms	remaining: 178ms
64:	learn: 22.1859147	total: 321ms	remaining: 173ms
65:	learn: 22.0462043	total: 325ms	remaining: 168ms
66:	learn: 21.9329563	total: 330ms	remaining: 163ms
67:	learn: 21.8029736	total: 337ms	remaining: 159ms
68:	learn: 21.6861091	total: 347ms	remaining: 156ms
69:	learn: 21.4838140	total: 356ms	remaining: 153ms
70:	learn: 21.3548921	total: 361ms	remaining: 147ms
71:	learn: 21.2244517	total: 368ms	remaining: 143ms
72:	learn: 21.0702958	total: 372ms	remaining: 138ms
73:	learn: 20.9224662	total: 377ms	remaining: 132ms
74:	learn: 20.8150357	total: 381ms	remaining: 127ms
75:	learn: 20.6962739	total: 386ms	remaining: 122ms
76:	learn: 20.5809258	total: 390ms	remaining: 117ms
77:	learn: 20.4735470	total: 395ms	remaining: 111ms
78:	learn: 20.3778167	total: 399ms	remaining: 106ms
79:	learn: 20.2211268	total: 403ms	remaining: 101ms
80:	learn: 20.1478678	total: 408ms	remaining: 95.7ms
81:	learn: 20.1032967	total: 413ms	remaining: 90.6ms
82:	learn: 19.9236300	total: 418ms	remaining: 85.5ms
83:	learn: 19.8151745	total: 422ms	remaining: 80.5ms
84:	learn: 19.7099856	total: 427ms	remaining: 75.3ms
85:	learn: 19.6264833	total: 432ms	remaining: 70.3ms
86:	learn: 19.4916361	total: 436ms	remaining: 65.2ms
87:	learn: 19.4050529	total: 441ms	remaining: 60.1ms
88:	learn: 19.2547065	total: 446ms	remaining: 55.1ms
89:	learn: 19.1610225	total: 450ms	remaining: 50.1ms
90:	learn: 19.0898958	total: 455ms	remaining: 45ms
91:	learn: 19.0489664	total: 460ms	remaining: 40ms
92:	learn: 18.9206240	total: 465ms	remaining: 35ms
93:	learn: 18.8636239	total: 470ms	remaining: 30ms
94:	learn: 18.8126187	total: 475ms	remaining: 25ms
95:	learn: 18.7579275	total: 479ms	remaining: 20ms
96:	learn: 18.6382753	total: 484ms	remaining: 15ms
97:	learn: 18.5397334	total: 488ms	remaining: 9.96ms
98:	learn: 18.4375951	total: 493ms	remaining: 4.98ms
99:	learn: 18.4033755	total: 497ms	remaining: 0us
0:	learn: 46.1068821	total: 3.93ms	remaining: 389ms
1:	learn: 45.3970261	total: 11.5ms	remaining: 565ms
2:	learn: 44.8732696	total: 25.6ms	remaining: 826ms
3:	learn: 44.1290184	total: 39ms	remaining: 936ms
4:	learn: 43.3290271	total: 45.1ms	remaining: 858ms
5:	learn: 42.7069090	total: 50.6ms	remaining: 792ms
6:	learn: 42.0572971	total: 56.3ms	remaining: 749ms
7:	learn: 41.4797924	total: 62ms	remaining: 713ms
8:	learn: 41.0023122	total: 67.4ms	remaining: 681ms
9:	learn: 40.5330570	total: 72.6ms	remaining: 654ms
10:	learn: 39.9726545	total: 77.3ms	remaining: 626ms
11:	learn: 39.3044053	total: 82.3ms	remaining: 603ms
12:	learn: 38.8169735	total: 100ms	remaining: 671ms
13:	learn: 38.2458761	total: 105ms	remaining: 643ms
14:	learn: 37.6280321	total: 109ms	remaining: 617ms
15:	learn: 37.0800610	total: 113ms	remaining: 593ms
16:	learn: 36.5489363	total: 117ms	remaining: 573ms
17:	learn: 36.0981456	total: 121ms	remaining: 552ms
18:	learn: 35.6956274	total: 126ms	remaining: 537ms
19:	learn: 35.1471999	total: 130ms	remaining: 521ms
20:	learn: 34.6235408	total: 134ms	remaining: 505ms
21:	learn: 34.1987018	total: 139ms	remaining: 491ms
22:	learn: 33.8985062	total: 143ms	remaining: 480ms
23:	learn: 33.3869017	total: 148ms	remaining: 468ms
24:	learn: 32.9100550	total: 152ms	remaining: 457ms
25:	learn: 32.4156208	total: 156ms	remaining: 445ms
26:	learn: 31.9320493	total: 161ms	remaining: 435ms
27:	learn: 31.5711468	total: 165ms	remaining: 424ms
28:	learn: 31.2404433	total: 169ms	remaining: 414ms
29:	learn: 30.8807946	total: 173ms	remaining: 404ms
30:	learn: 30.5948438	total: 178ms	remaining: 397ms
31:	learn: 30.3885560	total: 183ms	remaining: 390ms
32:	learn: 30.0625101	total: 190ms	remaining: 386ms
33:	learn: 29.9113114	total: 197ms	remaining: 383ms
34:	learn: 29.6983470	total: 204ms	remaining: 379ms
35:	learn: 29.4775849	total: 210ms	remaining: 373ms
36:	learn: 29.0538055	total: 215ms	remaining: 366ms
37:	learn: 28.6792318	total: 222ms	remaining: 362ms
38:	learn: 28.4231383	total: 227ms	remaining: 355ms
39:	learn: 28.1078565	total: 231ms	remaining: 346ms
40:	learn: 27.9079179	total: 235ms	remaining: 339ms
41:	learn: 27.6721506	total: 240ms	remaining: 331ms
42:	learn: 27.4228033	total: 244ms	remaining: 323ms
43:	learn: 27.1740534	total: 248ms	remaining: 316ms
44:	learn: 26.8584071	total: 252ms	remaining: 308ms
45:	learn: 26.6902083	total: 257ms	remaining: 301ms
46:	learn: 26.4855335	total: 261ms	remaining: 294ms
47:	learn: 26.2730822	total: 266ms	remaining: 288ms
48:	learn: 26.1058689	total: 270ms	remaining: 281ms
49:	learn: 25.8587318	total: 274ms	remaining: 274ms
50:	learn: 25.7558005	total: 279ms	remaining: 268ms
51:	learn: 25.5846925	total: 283ms	remaining: 261ms
52:	learn: 25.4249887	total: 287ms	remaining: 255ms
53:	learn: 25.1911054	total: 291ms	remaining: 248ms
54:	learn: 25.0544755	total: 296ms	remaining: 242ms
55:	learn: 24.8874006	total: 300ms	remaining: 236ms
56:	learn: 24.7736279	total: 305ms	remaining: 230ms
57:	learn: 24.6156255	total: 309ms	remaining: 223ms
58:	learn: 24.3962421	total: 313ms	remaining: 217ms
59:	learn: 24.2685129	total: 317ms	remaining: 211ms
60:	learn: 24.1874096	total: 321ms	remaining: 205ms
61:	learn: 24.0394287	total: 325ms	remaining: 199ms
62:	learn: 23.9281768	total: 330ms	remaining: 194ms
63:	learn: 23.7423900	total: 334ms	remaining: 188ms
64:	learn: 23.6015209	total: 338ms	remaining: 182ms
65:	learn: 23.4677943	total: 342ms	remaining: 176ms
66:	learn: 23.3215256	total: 347ms	remaining: 171ms
67:	learn: 23.1869360	total: 351ms	remaining: 165ms
68:	learn: 22.9691180	total: 355ms	remaining: 160ms
69:	learn: 22.7531657	total: 360ms	remaining: 154ms
70:	learn: 22.6133477	total: 365ms	remaining: 149ms
71:	learn: 22.3452758	total: 369ms	remaining: 144ms
72:	learn: 22.2065350	total: 374ms	remaining: 138ms
73:	learn: 22.1071155	total: 378ms	remaining: 133ms
74:	learn: 21.9740686	total: 383ms	remaining: 128ms
75:	learn: 21.8892033	total: 388ms	remaining: 122ms
76:	learn: 21.8267882	total: 392ms	remaining: 117ms
77:	learn: 21.7423479	total: 397ms	remaining: 112ms
78:	learn: 21.6242075	total: 401ms	remaining: 107ms
79:	learn: 21.5016910	total: 409ms	remaining: 102ms
80:	learn: 21.4806623	total: 410ms	remaining: 96.1ms
81:	learn: 21.3166637	total: 417ms	remaining: 91.5ms
82:	learn: 21.2222534	total: 427ms	remaining: 87.4ms
83:	learn: 21.1535708	total: 432ms	remaining: 82.3ms
84:	learn: 21.0858902	total: 440ms	remaining: 77.6ms
85:	learn: 20.9206003	total: 445ms	remaining: 72.4ms
86:	learn: 20.8674695	total: 450ms	remaining: 67.2ms
87:	learn: 20.8089875	total: 455ms	remaining: 62.1ms
88:	learn: 20.7085401	total: 460ms	remaining: 56.9ms
89:	learn: 20.5513468	total: 465ms	remaining: 51.7ms
90:	learn: 20.4586742	total: 471ms	remaining: 46.6ms
91:	learn: 20.3932149	total: 476ms	remaining: 41.4ms
92:	learn: 20.3000895	total: 481ms	remaining: 36.2ms
93:	learn: 20.2254009	total: 486ms	remaining: 31ms
94:	learn: 20.1750050	total: 491ms	remaining: 25.9ms
95:	learn: 20.0715579	total: 497ms	remaining: 20.7ms
96:	learn: 19.9920082	total: 502ms	remaining: 15.5ms
97:	learn: 19.9664401	total: 507ms	remaining: 10.3ms
98:	learn: 19.8689673	total: 511ms	remaining: 5.16ms
99:	learn: 19.7537356	total: 516ms	remaining: 0us
0:	learn: 46.8832143	total: 4.98ms	remaining: 493ms
1:	learn: 45.8700349	total: 9.2ms	remaining: 451ms
2:	learn: 45.0546867	total: 13.4ms	remaining: 434ms
3:	learn: 44.2829439	total: 18.2ms	remaining: 438ms
4:	learn: 43.4609042	total: 24.6ms	remaining: 467ms
5:	learn: 42.6754991	total: 31.4ms	remaining: 492ms
6:	learn: 41.9234935	total: 38.5ms	remaining: 511ms
7:	learn: 41.3987518	total: 45ms	remaining: 518ms
8:	learn: 40.6625066	total: 50.2ms	remaining: 508ms
9:	learn: 40.0029561	total: 56.1ms	remaining: 505ms
10:	learn: 39.3897033	total: 61.5ms	remaining: 498ms
11:	learn: 38.7741453	total: 66.1ms	remaining: 485ms
12:	learn: 38.1201100	total: 70.4ms	remaining: 471ms
13:	learn: 37.5129454	total: 75ms	remaining: 461ms
14:	learn: 37.2062206	total: 79.1ms	remaining: 448ms
15:	learn: 36.6831741	total: 83.3ms	remaining: 438ms
16:	learn: 36.2902788	total: 87.7ms	remaining: 428ms
17:	learn: 35.7639930	total: 92.4ms	remaining: 421ms
18:	learn: 35.2580953	total: 96.5ms	remaining: 411ms
19:	learn: 34.7809739	total: 101ms	remaining: 403ms
20:	learn: 34.1330433	total: 105ms	remaining: 394ms
21:	learn: 33.7302219	total: 109ms	remaining: 387ms
22:	learn: 33.3502495	total: 113ms	remaining: 379ms
23:	learn: 33.0067804	total: 117ms	remaining: 372ms
24:	learn: 32.6897855	total: 122ms	remaining: 366ms
25:	learn: 32.4361119	total: 127ms	remaining: 361ms
26:	learn: 32.1278981	total: 131ms	remaining: 353ms
27:	learn: 31.7863721	total: 135ms	remaining: 348ms
28:	learn: 31.4791450	total: 140ms	remaining: 342ms
29:	learn: 31.1760161	total: 144ms	remaining: 335ms
30:	learn: 30.9238888	total: 148ms	remaining: 329ms
31:	learn: 30.5500905	total: 152ms	remaining: 323ms
32:	learn: 30.3078126	total: 156ms	remaining: 318ms
33:	learn: 30.0480921	total: 161ms	remaining: 312ms
34:	learn: 29.8623884	total: 165ms	remaining: 306ms
35:	learn: 29.5991038	total: 169ms	remaining: 301ms
36:	learn: 29.4061161	total: 173ms	remaining: 295ms
37:	learn: 29.0269515	total: 177ms	remaining: 290ms
38:	learn: 28.8224959	total: 182ms	remaining: 284ms
39:	learn: 28.6417843	total: 186ms	remaining: 278ms
40:	learn: 28.3633368	total: 190ms	remaining: 273ms
41:	learn: 28.0200246	total: 194ms	remaining: 268ms
42:	learn: 27.7221254	total: 198ms	remaining: 263ms
43:	learn: 27.5105818	total: 202ms	remaining: 258ms
44:	learn: 27.3551010	total: 207ms	remaining: 253ms
45:	learn: 27.0787522	total: 211ms	remaining: 247ms
46:	learn: 26.8726317	total: 215ms	remaining: 243ms
47:	learn: 26.8003277	total: 219ms	remaining: 237ms
48:	learn: 26.5493785	total: 224ms	remaining: 233ms
49:	learn: 26.3699550	total: 230ms	remaining: 230ms
50:	learn: 26.1519631	total: 235ms	remaining: 226ms
51:	learn: 25.9277325	total: 240ms	remaining: 222ms
52:	learn: 25.7286035	total: 245ms	remaining: 217ms
53:	learn: 25.4999193	total: 250ms	remaining: 213ms
54:	learn: 25.3434703	total: 260ms	remaining: 213ms
55:	learn: 25.1497545	total: 270ms	remaining: 212ms
56:	learn: 24.9498143	total: 278ms	remaining: 210ms
57:	learn: 24.6509390	total: 286ms	remaining: 207ms
58:	learn: 24.5576144	total: 291ms	remaining: 202ms
59:	learn: 24.4265144	total: 297ms	remaining: 198ms
60:	learn: 24.3100706	total: 302ms	remaining: 193ms
61:	learn: 24.1727952	total: 308ms	remaining: 189ms
62:	learn: 24.0478558	total: 314ms	remaining: 184ms
63:	learn: 23.9124577	total: 320ms	remaining: 180ms
64:	learn: 23.7703718	total: 325ms	remaining: 175ms
65:	learn: 23.5975027	total: 331ms	remaining: 170ms
66:	learn: 23.4318077	total: 336ms	remaining: 165ms
67:	learn: 23.3099691	total: 341ms	remaining: 160ms
68:	learn: 23.1947982	total: 346ms	remaining: 156ms
69:	learn: 23.0260174	total: 352ms	remaining: 151ms
70:	learn: 22.8523100	total: 356ms	remaining: 146ms
71:	learn: 22.8028534	total: 361ms	remaining: 140ms
72:	learn: 22.6880658	total: 366ms	remaining: 135ms
73:	learn: 22.5956809	total: 370ms	remaining: 130ms
74:	learn: 22.4692932	total: 375ms	remaining: 125ms
75:	learn: 22.2863504	total: 379ms	remaining: 120ms
76:	learn: 22.1911237	total: 384ms	remaining: 115ms
77:	learn: 22.1098391	total: 388ms	remaining: 110ms
78:	learn: 22.0182738	total: 393ms	remaining: 104ms
79:	learn: 21.9306746	total: 397ms	remaining: 99.3ms
80:	learn: 21.7508233	total: 402ms	remaining: 94.2ms
81:	learn: 21.7108446	total: 407ms	remaining: 89.3ms
82:	learn: 21.5931852	total: 412ms	remaining: 84.3ms
83:	learn: 21.4480361	total: 416ms	remaining: 79.2ms
84:	learn: 21.3092119	total: 420ms	remaining: 74.1ms
85:	learn: 21.2605557	total: 425ms	remaining: 69.2ms
86:	learn: 21.1123597	total: 430ms	remaining: 64.2ms
87:	learn: 21.0115642	total: 435ms	remaining: 59.3ms
88:	learn: 20.9389040	total: 439ms	remaining: 54.3ms
89:	learn: 20.8300300	total: 444ms	remaining: 49.4ms
90:	learn: 20.7159733	total: 451ms	remaining: 44.6ms
91:	learn: 20.6282090	total: 459ms	remaining: 40ms
92:	learn: 20.5164529	total: 467ms	remaining: 35.1ms
93:	learn: 20.4692032	total: 472ms	remaining: 30.1ms
94:	learn: 20.3768451	total: 478ms	remaining: 25.2ms
95:	learn: 20.2808056	total: 483ms	remaining: 20.1ms
96:	learn: 20.2082089	total: 487ms	remaining: 15.1ms
97:	learn: 20.1698768	total: 492ms	remaining: 10ms
98:	learn: 20.1048816	total: 496ms	remaining: 5.01ms
99:	learn: 20.0086159	total: 501ms	remaining: 0us
0:	learn: 27.6165091	total: 5.09ms	remaining: 504ms
1:	learn: 27.2156009	total: 9.97ms	remaining: 488ms
2:	learn: 26.8744169	total: 14.8ms	remaining: 477ms
3:	learn: 26.5530473	total: 19.7ms	remaining: 474ms
4:	learn: 26.1200739	total: 24.4ms	remaining: 463ms
5:	learn: 25.7559063	total: 29.1ms	remaining: 457ms
6:	learn: 25.3817459	total: 34ms	remaining: 452ms
7:	learn: 25.0780231	total: 39.1ms	remaining: 449ms
8:	learn: 24.7908836	total: 44.2ms	remaining: 447ms
9:	learn: 24.5023726	total: 48.9ms	remaining: 440ms
10:	learn: 24.2430447	total: 53.9ms	remaining: 436ms
11:	learn: 24.0150987	total: 58.8ms	remaining: 431ms
12:	learn: 23.6832732	total: 63.8ms	remaining: 427ms
13:	learn: 23.4512462	total: 68.5ms	remaining: 421ms
14:	learn: 23.2300808	total: 73.4ms	remaining: 416ms
15:	learn: 23.0198192	total: 78.9ms	remaining: 414ms
16:	learn: 22.7757356	total: 84ms	remaining: 410ms
17:	learn: 22.4962727	total: 89.3ms	remaining: 407ms
18:	learn: 22.2131794	total: 94.2ms	remaining: 402ms
19:	learn: 21.9844087	total: 99.3ms	remaining: 397ms
20:	learn: 21.6467820	total: 105ms	remaining: 394ms
21:	learn: 21.4458045	total: 114ms	remaining: 405ms
22:	learn: 21.2706627	total: 126ms	remaining: 422ms
23:	learn: 21.0770166	total: 132ms	remaining: 419ms
24:	learn: 20.8871491	total: 140ms	remaining: 421ms
25:	learn: 20.7151270	total: 146ms	remaining: 415ms
26:	learn: 20.5585218	total: 151ms	remaining: 409ms
27:	learn: 20.4091128	total: 157ms	remaining: 404ms
28:	learn: 20.2343121	total: 163ms	remaining: 400ms
29:	learn: 20.0685862	total: 169ms	remaining: 394ms
30:	learn: 19.8339661	total: 175ms	remaining: 389ms
31:	learn: 19.6811138	total: 181ms	remaining: 384ms
32:	learn: 19.4881999	total: 186ms	remaining: 378ms
33:	learn: 19.3473429	total: 191ms	remaining: 372ms
34:	learn: 19.1087185	total: 198ms	remaining: 367ms
35:	learn: 18.9817724	total: 203ms	remaining: 361ms
36:	learn: 18.8465124	total: 209ms	remaining: 355ms
37:	learn: 18.6998182	total: 214ms	remaining: 349ms
38:	learn: 18.5534881	total: 218ms	remaining: 342ms
39:	learn: 18.4221213	total: 223ms	remaining: 335ms
40:	learn: 18.3262428	total: 228ms	remaining: 328ms
41:	learn: 18.2018519	total: 233ms	remaining: 321ms
42:	learn: 18.0704402	total: 238ms	remaining: 315ms
43:	learn: 17.9674737	total: 243ms	remaining: 309ms
44:	learn: 17.8092746	total: 247ms	remaining: 302ms
45:	learn: 17.7036671	total: 252ms	remaining: 296ms
46:	learn: 17.5636023	total: 257ms	remaining: 290ms
47:	learn: 17.3922671	total: 262ms	remaining: 284ms
48:	learn: 17.2777727	total: 267ms	remaining: 278ms
49:	learn: 17.1901866	total: 271ms	remaining: 271ms
50:	learn: 17.0799264	total: 277ms	remaining: 266ms
51:	learn: 17.0022808	total: 282ms	remaining: 260ms
52:	learn: 16.9193737	total: 287ms	remaining: 254ms
53:	learn: 16.8349324	total: 292ms	remaining: 248ms
54:	learn: 16.7122802	total: 297ms	remaining: 243ms
55:	learn: 16.5736462	total: 303ms	remaining: 238ms
56:	learn: 16.4576798	total: 311ms	remaining: 234ms
57:	learn: 16.3336075	total: 319ms	remaining: 231ms
58:	learn: 16.2578113	total: 326ms	remaining: 226ms
59:	learn: 16.1586938	total: 331ms	remaining: 221ms
60:	learn: 16.0827831	total: 337ms	remaining: 215ms
61:	learn: 16.0030150	total: 342ms	remaining: 209ms
62:	learn: 15.8741662	total: 347ms	remaining: 204ms
63:	learn: 15.7533897	total: 351ms	remaining: 198ms
64:	learn: 15.6743804	total: 356ms	remaining: 192ms
65:	learn: 15.6291324	total: 361ms	remaining: 186ms
66:	learn: 15.5363523	total: 366ms	remaining: 180ms
67:	learn: 15.4675550	total: 371ms	remaining: 174ms
68:	learn: 15.3959873	total: 375ms	remaining: 169ms
69:	learn: 15.3222045	total: 380ms	remaining: 163ms
70:	learn: 15.2343883	total: 384ms	remaining: 157ms
71:	learn: 15.1891070	total: 389ms	remaining: 151ms
72:	learn: 15.1320798	total: 394ms	remaining: 146ms
73:	learn: 15.0590468	total: 398ms	remaining: 140ms
74:	learn: 14.9682726	total: 403ms	remaining: 134ms
75:	learn: 14.8868528	total: 408ms	remaining: 129ms
76:	learn: 14.8046328	total: 413ms	remaining: 123ms
77:	learn: 14.7253152	total: 418ms	remaining: 118ms
78:	learn: 14.6438207	total: 423ms	remaining: 112ms
79:	learn: 14.5350651	total: 428ms	remaining: 107ms
80:	learn: 14.4301800	total: 433ms	remaining: 102ms
81:	learn: 14.3716251	total: 438ms	remaining: 96.2ms
82:	learn: 14.3127586	total: 443ms	remaining: 90.8ms
83:	learn: 14.2685086	total: 449ms	remaining: 85.4ms
84:	learn: 14.1936111	total: 453ms	remaining: 80ms
85:	learn: 14.1488261	total: 458ms	remaining: 74.6ms
86:	learn: 14.0654602	total: 463ms	remaining: 69.2ms
87:	learn: 14.0026195	total: 468ms	remaining: 63.8ms
88:	learn: 13.9498697	total: 473ms	remaining: 58.4ms
89:	learn: 13.9002477	total: 478ms	remaining: 53.1ms
90:	learn: 13.8429017	total: 483ms	remaining: 47.8ms
91:	learn: 13.7892130	total: 488ms	remaining: 42.4ms
92:	learn: 13.7122418	total: 493ms	remaining: 37.1ms
93:	learn: 13.6752324	total: 498ms	remaining: 31.8ms
94:	learn: 13.6186680	total: 504ms	remaining: 26.5ms
95:	learn: 13.5578384	total: 514ms	remaining: 21.4ms
96:	learn: 13.5028120	total: 524ms	remaining: 16.2ms
97:	learn: 13.4306895	total: 531ms	remaining: 10.8ms
98:	learn: 13.3955813	total: 539ms	remaining: 5.45ms
99:	learn: 13.3380095	total: 545ms	remaining: 0us
0:	learn: 42.9675374	total: 6.25ms	remaining: 619ms
1:	learn: 42.2542078	total: 12.3ms	remaining: 605ms
2:	learn: 41.5532166	total: 17.5ms	remaining: 566ms
3:	learn: 40.7812113	total: 22.2ms	remaining: 532ms
4:	learn: 39.8819601	total: 27ms	remaining: 513ms
5:	learn: 39.0997229	total: 28.9ms	remaining: 452ms
6:	learn: 38.2185623	total: 33.8ms	remaining: 449ms
7:	learn: 37.5465645	total: 38.4ms	remaining: 441ms
8:	learn: 36.8449555	total: 43.1ms	remaining: 435ms
9:	learn: 36.0912815	total: 47.7ms	remaining: 430ms
10:	learn: 35.5776470	total: 52.5ms	remaining: 425ms
11:	learn: 34.7845329	total: 57ms	remaining: 418ms
12:	learn: 34.1574031	total: 61.7ms	remaining: 413ms
13:	learn: 33.4950652	total: 66.8ms	remaining: 411ms
14:	learn: 32.9343881	total: 71.8ms	remaining: 407ms
15:	learn: 32.4356238	total: 77.3ms	remaining: 406ms
16:	learn: 31.8370592	total: 83ms	remaining: 405ms
17:	learn: 31.2122644	total: 88.2ms	remaining: 402ms
18:	learn: 30.7195190	total: 93.9ms	remaining: 400ms
19:	learn: 30.1548478	total: 99.6ms	remaining: 398ms
20:	learn: 29.6521001	total: 103ms	remaining: 387ms
21:	learn: 29.1746988	total: 108ms	remaining: 384ms
22:	learn: 28.6492690	total: 114ms	remaining: 380ms
23:	learn: 28.1958339	total: 120ms	remaining: 379ms
24:	learn: 27.9126674	total: 129ms	remaining: 386ms
25:	learn: 27.5059508	total: 137ms	remaining: 390ms
26:	learn: 27.0869176	total: 145ms	remaining: 392ms
27:	learn: 26.6545277	total: 152ms	remaining: 390ms
28:	learn: 26.2388575	total: 157ms	remaining: 386ms
29:	learn: 25.8957708	total: 162ms	remaining: 379ms
30:	learn: 25.5045901	total: 167ms	remaining: 372ms
31:	learn: 25.2559530	total: 172ms	remaining: 366ms
32:	learn: 24.9012566	total: 177ms	remaining: 360ms
33:	learn: 24.5601820	total: 182ms	remaining: 354ms
34:	learn: 24.2407285	total: 187ms	remaining: 348ms
35:	learn: 23.9481769	total: 192ms	remaining: 342ms
36:	learn: 23.6746994	total: 197ms	remaining: 336ms
37:	learn: 23.4470352	total: 202ms	remaining: 330ms
38:	learn: 23.1678305	total: 208ms	remaining: 325ms
39:	learn: 22.9660692	total: 213ms	remaining: 319ms
40:	learn: 22.7102548	total: 218ms	remaining: 313ms
41:	learn: 22.5152447	total: 223ms	remaining: 307ms
42:	learn: 22.2967100	total: 228ms	remaining: 302ms
43:	learn: 22.0869517	total: 232ms	remaining: 296ms
44:	learn: 21.8556497	total: 237ms	remaining: 290ms
45:	learn: 21.7036804	total: 242ms	remaining: 285ms
46:	learn: 21.4792011	total: 247ms	remaining: 279ms
47:	learn: 21.2830384	total: 252ms	remaining: 273ms
48:	learn: 21.0771837	total: 257ms	remaining: 268ms
49:	learn: 20.8824468	total: 262ms	remaining: 262ms
50:	learn: 20.7250875	total: 267ms	remaining: 256ms
51:	learn: 20.5564423	total: 272ms	remaining: 251ms
52:	learn: 20.4067403	total: 277ms	remaining: 245ms
53:	learn: 20.2674808	total: 282ms	remaining: 240ms
54:	learn: 20.1394249	total: 287ms	remaining: 235ms
55:	learn: 19.9748016	total: 292ms	remaining: 230ms
56:	learn: 19.8159522	total: 297ms	remaining: 224ms
57:	learn: 19.6811073	total: 302ms	remaining: 218ms
58:	learn: 19.5083232	total: 307ms	remaining: 213ms
59:	learn: 19.3949390	total: 309ms	remaining: 206ms
60:	learn: 19.2485728	total: 317ms	remaining: 203ms
61:	learn: 19.1255523	total: 324ms	remaining: 199ms
62:	learn: 18.9423320	total: 332ms	remaining: 195ms
63:	learn: 18.7794545	total: 337ms	remaining: 190ms
64:	learn: 18.6339033	total: 343ms	remaining: 185ms
65:	learn: 18.5188724	total: 350ms	remaining: 180ms
66:	learn: 18.3398412	total: 355ms	remaining: 175ms
67:	learn: 18.2873427	total: 361ms	remaining: 170ms
68:	learn: 18.1287092	total: 367ms	remaining: 165ms
69:	learn: 18.0163474	total: 372ms	remaining: 160ms
70:	learn: 17.9428395	total: 378ms	remaining: 154ms
71:	learn: 17.7906087	total: 383ms	remaining: 149ms
72:	learn: 17.6121088	total: 389ms	remaining: 144ms
73:	learn: 17.5136572	total: 395ms	remaining: 139ms
74:	learn: 17.3837993	total: 401ms	remaining: 134ms
75:	learn: 17.3015647	total: 406ms	remaining: 128ms
76:	learn: 17.1991252	total: 412ms	remaining: 123ms
77:	learn: 17.0854777	total: 418ms	remaining: 118ms
78:	learn: 17.0308269	total: 423ms	remaining: 112ms
79:	learn: 16.9754807	total: 429ms	remaining: 107ms
80:	learn: 16.9174907	total: 435ms	remaining: 102ms
81:	learn: 16.7962603	total: 441ms	remaining: 96.8ms
82:	learn: 16.6685446	total: 446ms	remaining: 91.3ms
83:	learn: 16.5812672	total: 450ms	remaining: 85.8ms
84:	learn: 16.4896026	total: 455ms	remaining: 80.3ms
85:	learn: 16.4023414	total: 460ms	remaining: 74.9ms
86:	learn: 16.3093718	total: 465ms	remaining: 69.4ms
87:	learn: 16.2409040	total: 470ms	remaining: 64ms
88:	learn: 16.1616213	total: 474ms	remaining: 58.6ms
89:	learn: 16.0825203	total: 479ms	remaining: 53.2ms
90:	learn: 16.0204931	total: 484ms	remaining: 47.9ms
91:	learn: 15.9741267	total: 489ms	remaining: 42.5ms
92:	learn: 15.9413725	total: 494ms	remaining: 37.2ms
93:	learn: 15.8762295	total: 498ms	remaining: 31.8ms
94:	learn: 15.8165812	total: 504ms	remaining: 26.5ms
95:	learn: 15.7244343	total: 509ms	remaining: 21.2ms
96:	learn: 15.6537033	total: 514ms	remaining: 15.9ms
97:	learn: 15.6052320	total: 519ms	remaining: 10.6ms
98:	learn: 15.5434930	total: 524ms	remaining: 5.29ms
99:	learn: 15.4452106	total: 530ms	remaining: 0us
0:	learn: 46.5387280	total: 5.23ms	remaining: 518ms
1:	learn: 45.8605074	total: 9.9ms	remaining: 485ms
2:	learn: 45.2237152	total: 15ms	remaining: 484ms
3:	learn: 44.4158454	total: 19.8ms	remaining: 474ms
4:	learn: 43.7177384	total: 24.4ms	remaining: 464ms
5:	learn: 42.9896372	total: 29.2ms	remaining: 457ms
6:	learn: 42.3639431	total: 34ms	remaining: 452ms
7:	learn: 41.6648406	total: 38.6ms	remaining: 444ms
8:	learn: 41.0681442	total: 43.4ms	remaining: 439ms
9:	learn: 40.4478745	total: 48ms	remaining: 432ms
10:	learn: 40.0398470	total: 53.2ms	remaining: 430ms
11:	learn: 39.3300888	total: 58.2ms	remaining: 427ms
12:	learn: 38.9198991	total: 63.2ms	remaining: 423ms
13:	learn: 38.4022666	total: 68.2ms	remaining: 419ms
14:	learn: 37.9124629	total: 73.1ms	remaining: 414ms
15:	learn: 37.3846174	total: 77.7ms	remaining: 408ms
16:	learn: 36.8502348	total: 82.9ms	remaining: 405ms
17:	learn: 36.5079755	total: 87.7ms	remaining: 399ms
18:	learn: 36.1239339	total: 92.4ms	remaining: 394ms
19:	learn: 35.8388688	total: 97ms	remaining: 388ms
20:	learn: 35.4915710	total: 102ms	remaining: 383ms
21:	learn: 34.9483623	total: 106ms	remaining: 377ms
22:	learn: 34.6033866	total: 111ms	remaining: 373ms
23:	learn: 34.1483341	total: 116ms	remaining: 368ms
24:	learn: 33.7626484	total: 121ms	remaining: 364ms
25:	learn: 33.4160820	total: 126ms	remaining: 360ms
26:	learn: 33.0421483	total: 132ms	remaining: 356ms
27:	learn: 32.6573469	total: 136ms	remaining: 350ms
28:	learn: 32.2672417	total: 142ms	remaining: 347ms
29:	learn: 31.8257441	total: 147ms	remaining: 342ms
30:	learn: 31.3394923	total: 151ms	remaining: 337ms
31:	learn: 30.9472894	total: 157ms	remaining: 333ms
32:	learn: 30.6961423	total: 162ms	remaining: 329ms
33:	learn: 30.4670615	total: 167ms	remaining: 324ms
34:	learn: 30.1495001	total: 177ms	remaining: 329ms
35:	learn: 29.8071763	total: 187ms	remaining: 333ms
36:	learn: 29.5255984	total: 195ms	remaining: 332ms
37:	learn: 29.2236758	total: 203ms	remaining: 332ms
38:	learn: 28.9199699	total: 209ms	remaining: 327ms
39:	learn: 28.7003989	total: 215ms	remaining: 322ms
40:	learn: 28.4681160	total: 221ms	remaining: 318ms
41:	learn: 28.2692668	total: 227ms	remaining: 313ms
42:	learn: 27.9327254	total: 233ms	remaining: 308ms
43:	learn: 27.7193597	total: 239ms	remaining: 304ms
44:	learn: 27.4061006	total: 245ms	remaining: 299ms
45:	learn: 27.1840910	total: 251ms	remaining: 294ms
46:	learn: 26.8943816	total: 256ms	remaining: 288ms
47:	learn: 26.6576617	total: 262ms	remaining: 284ms
48:	learn: 26.3230094	total: 268ms	remaining: 279ms
49:	learn: 26.0488483	total: 273ms	remaining: 273ms
50:	learn: 25.7795537	total: 278ms	remaining: 267ms
51:	learn: 25.6103781	total: 283ms	remaining: 261ms
52:	learn: 25.4107383	total: 288ms	remaining: 255ms
53:	learn: 25.1757211	total: 293ms	remaining: 250ms
54:	learn: 24.8949842	total: 298ms	remaining: 244ms
55:	learn: 24.7028694	total: 303ms	remaining: 238ms
56:	learn: 24.4033555	total: 308ms	remaining: 232ms
57:	learn: 24.2109268	total: 313ms	remaining: 227ms
58:	learn: 24.0697623	total: 318ms	remaining: 221ms
59:	learn: 23.8291672	total: 323ms	remaining: 215ms
60:	learn: 23.5972471	total: 328ms	remaining: 209ms
61:	learn: 23.4241182	total: 332ms	remaining: 204ms
62:	learn: 23.2617022	total: 337ms	remaining: 198ms
63:	learn: 23.0329448	total: 343ms	remaining: 193ms
64:	learn: 22.9108081	total: 348ms	remaining: 187ms
65:	learn: 22.8001962	total: 353ms	remaining: 182ms
66:	learn: 22.6861907	total: 359ms	remaining: 177ms
67:	learn: 22.5152895	total: 364ms	remaining: 171ms
68:	learn: 22.3734214	total: 369ms	remaining: 166ms
69:	learn: 22.1840754	total: 374ms	remaining: 160ms
70:	learn: 22.0732908	total: 379ms	remaining: 155ms
71:	learn: 21.8880456	total: 388ms	remaining: 151ms
72:	learn: 21.7838784	total: 396ms	remaining: 146ms
73:	learn: 21.5532885	total: 402ms	remaining: 141ms
74:	learn: 21.3998735	total: 408ms	remaining: 136ms
75:	learn: 21.2699824	total: 414ms	remaining: 131ms
76:	learn: 21.1077652	total: 419ms	remaining: 125ms
77:	learn: 20.9759102	total: 423ms	remaining: 119ms
78:	learn: 20.7531342	total: 428ms	remaining: 114ms
79:	learn: 20.6729631	total: 433ms	remaining: 108ms
80:	learn: 20.4903474	total: 438ms	remaining: 103ms
81:	learn: 20.3708622	total: 443ms	remaining: 97.3ms
82:	learn: 20.2627857	total: 448ms	remaining: 91.8ms
83:	learn: 20.1335464	total: 453ms	remaining: 86.3ms
84:	learn: 20.0100864	total: 458ms	remaining: 80.8ms
85:	learn: 19.9374357	total: 463ms	remaining: 75.3ms
86:	learn: 19.8383097	total: 467ms	remaining: 69.8ms
87:	learn: 19.7804443	total: 472ms	remaining: 64.4ms
88:	learn: 19.7225631	total: 478ms	remaining: 59ms
89:	learn: 19.5851849	total: 483ms	remaining: 53.6ms
90:	learn: 19.5115923	total: 488ms	remaining: 48.3ms
91:	learn: 19.3986485	total: 493ms	remaining: 42.9ms
92:	learn: 19.2465728	total: 498ms	remaining: 37.5ms
93:	learn: 19.2033796	total: 504ms	remaining: 32.1ms
94:	learn: 19.1234096	total: 509ms	remaining: 26.8ms
95:	learn: 19.0080161	total: 513ms	remaining: 21.4ms
96:	learn: 18.9048698	total: 518ms	remaining: 16ms
97:	learn: 18.7901500	total: 523ms	remaining: 10.7ms
98:	learn: 18.6759882	total: 528ms	remaining: 5.33ms
99:	learn: 18.6254590	total: 532ms	remaining: 0us
0:	learn: 46.0359105	total: 5.63ms	remaining: 558ms
1:	learn: 45.4503059	total: 14.5ms	remaining: 710ms
2:	learn: 44.6478680	total: 22.7ms	remaining: 734ms
3:	learn: 43.7932387	total: 33.1ms	remaining: 794ms
4:	learn: 43.2236036	total: 41.2ms	remaining: 782ms
5:	learn: 42.4339181	total: 47.3ms	remaining: 741ms
6:	learn: 41.8906461	total: 52.9ms	remaining: 702ms
7:	learn: 41.2248707	total: 58.9ms	remaining: 677ms
8:	learn: 40.5934570	total: 64.3ms	remaining: 650ms
9:	learn: 39.9204661	total: 70ms	remaining: 630ms
10:	learn: 39.3972458	total: 76ms	remaining: 615ms
11:	learn: 38.9220493	total: 81.6ms	remaining: 599ms
12:	learn: 38.2358406	total: 87.6ms	remaining: 586ms
13:	learn: 37.7089336	total: 93.6ms	remaining: 575ms
14:	learn: 37.3714255	total: 99ms	remaining: 561ms
15:	learn: 36.8098537	total: 105ms	remaining: 551ms
16:	learn: 36.2818695	total: 111ms	remaining: 543ms
17:	learn: 35.8807734	total: 116ms	remaining: 529ms
18:	learn: 35.3850720	total: 121ms	remaining: 516ms
19:	learn: 35.0622365	total: 126ms	remaining: 503ms
20:	learn: 34.7088655	total: 131ms	remaining: 492ms
21:	learn: 34.2869861	total: 135ms	remaining: 480ms
22:	learn: 33.9798756	total: 140ms	remaining: 469ms
23:	learn: 33.6933850	total: 145ms	remaining: 459ms
24:	learn: 33.3542725	total: 150ms	remaining: 449ms
25:	learn: 33.1531104	total: 154ms	remaining: 440ms
26:	learn: 32.7581499	total: 159ms	remaining: 431ms
27:	learn: 32.4953289	total: 164ms	remaining: 423ms
28:	learn: 32.1636511	total: 169ms	remaining: 414ms
29:	learn: 31.7179908	total: 174ms	remaining: 406ms
30:	learn: 31.2828971	total: 179ms	remaining: 398ms
31:	learn: 30.8954632	total: 184ms	remaining: 391ms
32:	learn: 30.6156466	total: 189ms	remaining: 384ms
33:	learn: 30.4325331	total: 194ms	remaining: 377ms
34:	learn: 30.1680270	total: 200ms	remaining: 371ms
35:	learn: 29.8372162	total: 205ms	remaining: 364ms
36:	learn: 29.5018241	total: 214ms	remaining: 364ms
37:	learn: 29.2660228	total: 222ms	remaining: 361ms
38:	learn: 28.9172883	total: 229ms	remaining: 358ms
39:	learn: 28.7004790	total: 235ms	remaining: 352ms
40:	learn: 28.5188438	total: 241ms	remaining: 347ms
41:	learn: 28.3064887	total: 246ms	remaining: 340ms
42:	learn: 27.9584462	total: 251ms	remaining: 333ms
43:	learn: 27.6654603	total: 256ms	remaining: 326ms
44:	learn: 27.3698139	total: 261ms	remaining: 319ms
45:	learn: 27.1825629	total: 266ms	remaining: 312ms
46:	learn: 26.9938719	total: 270ms	remaining: 305ms
47:	learn: 26.7385850	total: 275ms	remaining: 298ms
48:	learn: 26.5055251	total: 280ms	remaining: 291ms
49:	learn: 26.3264840	total: 285ms	remaining: 285ms
50:	learn: 26.1314307	total: 289ms	remaining: 278ms
51:	learn: 25.9514770	total: 294ms	remaining: 271ms
52:	learn: 25.7272663	total: 299ms	remaining: 265ms
53:	learn: 25.4554234	total: 304ms	remaining: 259ms
54:	learn: 25.2133674	total: 308ms	remaining: 252ms
55:	learn: 24.9612149	total: 313ms	remaining: 246ms
56:	learn: 24.6788780	total: 318ms	remaining: 240ms
57:	learn: 24.4504703	total: 323ms	remaining: 234ms
58:	learn: 24.3261542	total: 327ms	remaining: 228ms
59:	learn: 24.1217621	total: 332ms	remaining: 222ms
60:	learn: 23.9495725	total: 337ms	remaining: 216ms
61:	learn: 23.7848565	total: 342ms	remaining: 209ms
62:	learn: 23.6627081	total: 347ms	remaining: 204ms
63:	learn: 23.4390407	total: 351ms	remaining: 198ms
64:	learn: 23.2556312	total: 356ms	remaining: 192ms
65:	learn: 23.1796337	total: 361ms	remaining: 186ms
66:	learn: 23.0431987	total: 366ms	remaining: 180ms
67:	learn: 22.9300366	total: 371ms	remaining: 174ms
68:	learn: 22.8321895	total: 376ms	remaining: 169ms
69:	learn: 22.7825840	total: 380ms	remaining: 163ms
70:	learn: 22.6907764	total: 385ms	remaining: 157ms
71:	learn: 22.5080460	total: 390ms	remaining: 152ms
72:	learn: 22.4053282	total: 395ms	remaining: 146ms
73:	learn: 22.2698085	total: 400ms	remaining: 141ms
74:	learn: 22.0951825	total: 405ms	remaining: 135ms
75:	learn: 21.9933994	total: 410ms	remaining: 130ms
76:	learn: 21.8043413	total: 415ms	remaining: 124ms
77:	learn: 21.7259032	total: 424ms	remaining: 120ms
78:	learn: 21.5625358	total: 434ms	remaining: 115ms
79:	learn: 21.4316837	total: 443ms	remaining: 111ms
80:	learn: 21.2270985	total: 451ms	remaining: 106ms
81:	learn: 21.1248573	total: 457ms	remaining: 100ms
82:	learn: 21.0879584	total: 462ms	remaining: 94.7ms
83:	learn: 20.9810177	total: 468ms	remaining: 89.1ms
84:	learn: 20.8986744	total: 474ms	remaining: 83.6ms
85:	learn: 20.8427245	total: 479ms	remaining: 78ms
86:	learn: 20.7158681	total: 484ms	remaining: 72.4ms
87:	learn: 20.6055502	total: 490ms	remaining: 66.8ms
88:	learn: 20.5302059	total: 496ms	remaining: 61.3ms
89:	learn: 20.3936827	total: 501ms	remaining: 55.7ms
90:	learn: 20.2756993	total: 507ms	remaining: 50.1ms
91:	learn: 20.1882826	total: 513ms	remaining: 44.6ms
92:	learn: 20.0346875	total: 518ms	remaining: 39ms
93:	learn: 19.9798652	total: 523ms	remaining: 33.4ms
94:	learn: 19.9020384	total: 527ms	remaining: 27.8ms
95:	learn: 19.8463755	total: 532ms	remaining: 22.2ms
96:	learn: 19.7426458	total: 537ms	remaining: 16.6ms
97:	learn: 19.6728655	total: 541ms	remaining: 11ms
98:	learn: 19.6355104	total: 546ms	remaining: 5.51ms
99:	learn: 19.6074086	total: 551ms	remaining: 0us
0:	learn: 46.7817285	total: 5.47ms	remaining: 541ms
1:	learn: 45.9551634	total: 10.2ms	remaining: 501ms
2:	learn: 45.0274369	total: 15.3ms	remaining: 496ms
3:	learn: 44.5000950	total: 20.7ms	remaining: 497ms
4:	learn: 43.8963632	total: 27.3ms	remaining: 518ms
5:	learn: 43.2314124	total: 38.7ms	remaining: 606ms
6:	learn: 42.5780140	total: 47.1ms	remaining: 626ms
7:	learn: 41.9033077	total: 52.8ms	remaining: 607ms
8:	learn: 41.3161907	total: 59.5ms	remaining: 601ms
9:	learn: 40.7747000	total: 64.3ms	remaining: 579ms
10:	learn: 40.2728122	total: 68.8ms	remaining: 557ms
11:	learn: 39.7786608	total: 73.8ms	remaining: 541ms
12:	learn: 39.0812090	total: 78.7ms	remaining: 527ms
13:	learn: 38.6205762	total: 83.3ms	remaining: 512ms
14:	learn: 38.2894236	total: 88.1ms	remaining: 499ms
15:	learn: 37.6906364	total: 93ms	remaining: 488ms
16:	learn: 37.3014849	total: 97.7ms	remaining: 477ms
17:	learn: 36.9268494	total: 102ms	remaining: 467ms
18:	learn: 36.6348717	total: 107ms	remaining: 458ms
19:	learn: 36.1567831	total: 112ms	remaining: 449ms
20:	learn: 35.8080754	total: 117ms	remaining: 440ms
21:	learn: 35.4288913	total: 122ms	remaining: 431ms
22:	learn: 35.0910168	total: 127ms	remaining: 424ms
23:	learn: 34.7483277	total: 131ms	remaining: 416ms
24:	learn: 34.5077203	total: 136ms	remaining: 408ms
25:	learn: 34.1830247	total: 141ms	remaining: 402ms
26:	learn: 33.7943837	total: 146ms	remaining: 395ms
27:	learn: 33.3736582	total: 151ms	remaining: 389ms
28:	learn: 32.9133996	total: 156ms	remaining: 382ms
29:	learn: 32.4361653	total: 161ms	remaining: 376ms
30:	learn: 31.9630085	total: 166ms	remaining: 369ms
31:	learn: 31.5994894	total: 171ms	remaining: 363ms
32:	learn: 31.3120059	total: 175ms	remaining: 356ms
33:	learn: 31.0991187	total: 180ms	remaining: 350ms
34:	learn: 30.8055118	total: 185ms	remaining: 344ms
35:	learn: 30.5197359	total: 190ms	remaining: 337ms
36:	learn: 30.1975315	total: 195ms	remaining: 332ms
37:	learn: 29.9797615	total: 200ms	remaining: 326ms
38:	learn: 29.6874864	total: 204ms	remaining: 319ms
39:	learn: 29.4139907	total: 209ms	remaining: 313ms
40:	learn: 29.0472151	total: 213ms	remaining: 307ms
41:	learn: 28.8356285	total: 218ms	remaining: 301ms
42:	learn: 28.5099349	total: 223ms	remaining: 296ms
43:	learn: 28.2009716	total: 229ms	remaining: 291ms
44:	learn: 27.8947534	total: 234ms	remaining: 286ms
45:	learn: 27.6149698	total: 239ms	remaining: 280ms
46:	learn: 27.4780860	total: 244ms	remaining: 275ms
47:	learn: 27.2859119	total: 254ms	remaining: 275ms
48:	learn: 27.0572191	total: 262ms	remaining: 272ms
49:	learn: 26.8916263	total: 274ms	remaining: 274ms
50:	learn: 26.6791967	total: 280ms	remaining: 269ms
51:	learn: 26.4917307	total: 288ms	remaining: 266ms
52:	learn: 26.2957036	total: 294ms	remaining: 261ms
53:	learn: 26.1116543	total: 301ms	remaining: 256ms
54:	learn: 25.8593319	total: 307ms	remaining: 251ms
55:	learn: 25.6957296	total: 313ms	remaining: 246ms
56:	learn: 25.5065213	total: 319ms	remaining: 241ms
57:	learn: 25.3525337	total: 325ms	remaining: 235ms
58:	learn: 25.2197494	total: 331ms	remaining: 230ms
59:	learn: 25.0583799	total: 336ms	remaining: 224ms
60:	learn: 24.8432659	total: 341ms	remaining: 218ms
61:	learn: 24.6585337	total: 347ms	remaining: 213ms
62:	learn: 24.5382571	total: 354ms	remaining: 208ms
63:	learn: 24.3596337	total: 359ms	remaining: 202ms
64:	learn: 24.2009033	total: 363ms	remaining: 196ms
65:	learn: 24.0964080	total: 368ms	remaining: 190ms
66:	learn: 23.9765920	total: 373ms	remaining: 184ms
67:	learn: 23.8638384	total: 378ms	remaining: 178ms
68:	learn: 23.7381861	total: 383ms	remaining: 172ms
69:	learn: 23.5620129	total: 388ms	remaining: 166ms
70:	learn: 23.4494830	total: 393ms	remaining: 161ms
71:	learn: 23.3095806	total: 398ms	remaining: 155ms
72:	learn: 23.1441767	total: 403ms	remaining: 149ms
73:	learn: 22.9983446	total: 408ms	remaining: 143ms
74:	learn: 22.8464764	total: 413ms	remaining: 138ms
75:	learn: 22.7606423	total: 418ms	remaining: 132ms
76:	learn: 22.6095905	total: 423ms	remaining: 126ms
77:	learn: 22.4430506	total: 429ms	remaining: 121ms
78:	learn: 22.2925872	total: 436ms	remaining: 116ms
79:	learn: 22.1806286	total: 446ms	remaining: 111ms
80:	learn: 22.0070525	total: 453ms	remaining: 106ms
81:	learn: 21.9114201	total: 459ms	remaining: 101ms
82:	learn: 21.7742884	total: 466ms	remaining: 95.4ms
83:	learn: 21.6372857	total: 473ms	remaining: 90.1ms
84:	learn: 21.5380397	total: 479ms	remaining: 84.5ms
85:	learn: 21.4730146	total: 484ms	remaining: 78.8ms
86:	learn: 21.3236516	total: 489ms	remaining: 73.1ms
87:	learn: 21.2512101	total: 495ms	remaining: 67.4ms
88:	learn: 21.2192883	total: 500ms	remaining: 61.8ms
89:	learn: 21.0457926	total: 505ms	remaining: 56.1ms
90:	learn: 20.9986980	total: 510ms	remaining: 50.5ms
91:	learn: 20.9040032	total: 515ms	remaining: 44.8ms
92:	learn: 20.7178547	total: 521ms	remaining: 39.2ms
93:	learn: 20.6535030	total: 526ms	remaining: 33.6ms
94:	learn: 20.5641982	total: 547ms	remaining: 28.8ms
95:	learn: 20.5355409	total: 552ms	remaining: 23ms
96:	learn: 20.4496493	total: 557ms	remaining: 17.2ms
97:	learn: 20.3579862	total: 562ms	remaining: 11.5ms
98:	learn: 20.2442476	total: 567ms	remaining: 5.73ms
99:	learn: 20.1075813	total: 572ms	remaining: 0us
0:	learn: 27.6165091	total: 5.26ms	remaining: 521ms
1:	learn: 27.2156009	total: 10.1ms	remaining: 495ms
2:	learn: 26.8744169	total: 15.2ms	remaining: 492ms
3:	learn: 26.5530473	total: 20.4ms	remaining: 490ms
4:	learn: 26.1200739	total: 25.6ms	remaining: 486ms
5:	learn: 25.7559063	total: 30.7ms	remaining: 481ms
6:	learn: 25.3817459	total: 35.9ms	remaining: 477ms
7:	learn: 25.0780231	total: 42.9ms	remaining: 493ms
8:	learn: 24.7908836	total: 51.4ms	remaining: 520ms
9:	learn: 24.5023726	total: 64.6ms	remaining: 581ms
10:	learn: 24.2430447	total: 73.5ms	remaining: 594ms
11:	learn: 24.0150987	total: 79.1ms	remaining: 580ms
12:	learn: 23.6832732	total: 84.5ms	remaining: 566ms
13:	learn: 23.4512462	total: 90.1ms	remaining: 553ms
14:	learn: 23.2300808	total: 95.8ms	remaining: 543ms
15:	learn: 23.0198192	total: 102ms	remaining: 535ms
16:	learn: 22.7757356	total: 108ms	remaining: 527ms
17:	learn: 22.4962727	total: 114ms	remaining: 518ms
18:	learn: 22.2131794	total: 119ms	remaining: 509ms
19:	learn: 21.9844087	total: 125ms	remaining: 499ms
20:	learn: 21.6467820	total: 131ms	remaining: 492ms
21:	learn: 21.4458045	total: 137ms	remaining: 485ms
22:	learn: 21.2706627	total: 142ms	remaining: 476ms
23:	learn: 21.0770166	total: 147ms	remaining: 465ms
24:	learn: 20.8871491	total: 152ms	remaining: 455ms
25:	learn: 20.7151270	total: 156ms	remaining: 445ms
26:	learn: 20.5585218	total: 161ms	remaining: 436ms
27:	learn: 20.4091128	total: 166ms	remaining: 427ms
28:	learn: 20.2343121	total: 171ms	remaining: 418ms
29:	learn: 20.0685862	total: 176ms	remaining: 410ms
30:	learn: 19.8339661	total: 180ms	remaining: 402ms
31:	learn: 19.6811138	total: 185ms	remaining: 393ms
32:	learn: 19.4881999	total: 190ms	remaining: 385ms
33:	learn: 19.3473429	total: 195ms	remaining: 378ms
34:	learn: 19.1087185	total: 200ms	remaining: 371ms
35:	learn: 18.9817724	total: 204ms	remaining: 363ms
36:	learn: 18.8465124	total: 209ms	remaining: 356ms
37:	learn: 18.6998182	total: 214ms	remaining: 349ms
38:	learn: 18.5534881	total: 219ms	remaining: 342ms
39:	learn: 18.4221213	total: 224ms	remaining: 335ms
40:	learn: 18.3262428	total: 229ms	remaining: 329ms
41:	learn: 18.2018519	total: 234ms	remaining: 324ms
42:	learn: 18.0704402	total: 240ms	remaining: 318ms
43:	learn: 17.9674737	total: 245ms	remaining: 312ms
44:	learn: 17.8092746	total: 251ms	remaining: 306ms
45:	learn: 17.7036671	total: 258ms	remaining: 303ms
46:	learn: 17.5636023	total: 266ms	remaining: 300ms
47:	learn: 17.3922671	total: 274ms	remaining: 297ms
48:	learn: 17.2777727	total: 280ms	remaining: 292ms
49:	learn: 17.1901866	total: 287ms	remaining: 287ms
50:	learn: 17.0799264	total: 292ms	remaining: 281ms
51:	learn: 17.0022808	total: 297ms	remaining: 274ms
52:	learn: 16.9193737	total: 302ms	remaining: 267ms
53:	learn: 16.8349324	total: 306ms	remaining: 261ms
54:	learn: 16.7122802	total: 311ms	remaining: 254ms
55:	learn: 16.5736462	total: 316ms	remaining: 248ms
56:	learn: 16.4576798	total: 321ms	remaining: 242ms
57:	learn: 16.3336075	total: 326ms	remaining: 236ms
58:	learn: 16.2578113	total: 330ms	remaining: 230ms
59:	learn: 16.1586938	total: 335ms	remaining: 223ms
60:	learn: 16.0827831	total: 340ms	remaining: 217ms
61:	learn: 16.0030150	total: 344ms	remaining: 211ms
62:	learn: 15.8741662	total: 349ms	remaining: 205ms
63:	learn: 15.7533897	total: 354ms	remaining: 199ms
64:	learn: 15.6743804	total: 359ms	remaining: 193ms
65:	learn: 15.6291324	total: 364ms	remaining: 188ms
66:	learn: 15.5363523	total: 369ms	remaining: 182ms
67:	learn: 15.4675550	total: 374ms	remaining: 176ms
68:	learn: 15.3959873	total: 379ms	remaining: 170ms
69:	learn: 15.3222045	total: 385ms	remaining: 165ms
70:	learn: 15.2343883	total: 390ms	remaining: 159ms
71:	learn: 15.1891070	total: 395ms	remaining: 154ms
72:	learn: 15.1320798	total: 400ms	remaining: 148ms
73:	learn: 15.0590468	total: 405ms	remaining: 142ms
74:	learn: 14.9682726	total: 410ms	remaining: 137ms
75:	learn: 14.8868528	total: 415ms	remaining: 131ms
76:	learn: 14.8046328	total: 420ms	remaining: 126ms
77:	learn: 14.7253152	total: 426ms	remaining: 120ms
78:	learn: 14.6438207	total: 431ms	remaining: 115ms
79:	learn: 14.5350651	total: 437ms	remaining: 109ms
80:	learn: 14.4301800	total: 442ms	remaining: 104ms
81:	learn: 14.3716251	total: 447ms	remaining: 98.2ms
82:	learn: 14.3127586	total: 453ms	remaining: 92.8ms
83:	learn: 14.2685086	total: 464ms	remaining: 88.3ms
84:	learn: 14.1936111	total: 477ms	remaining: 84.2ms
85:	learn: 14.1488261	total: 486ms	remaining: 79.1ms
86:	learn: 14.0654602	total: 492ms	remaining: 73.5ms
87:	learn: 14.0026195	total: 498ms	remaining: 67.9ms
88:	learn: 13.9498697	total: 504ms	remaining: 62.3ms
89:	learn: 13.9002477	total: 510ms	remaining: 56.7ms
90:	learn: 13.8429017	total: 516ms	remaining: 51ms
91:	learn: 13.7892130	total: 522ms	remaining: 45.4ms
92:	learn: 13.7122418	total: 529ms	remaining: 39.8ms
93:	learn: 13.6752324	total: 535ms	remaining: 34.1ms
94:	learn: 13.6186680	total: 540ms	remaining: 28.4ms
95:	learn: 13.5578384	total: 547ms	remaining: 22.8ms
96:	learn: 13.5028120	total: 554ms	remaining: 17.1ms
97:	learn: 13.4306895	total: 559ms	remaining: 11.4ms
98:	learn: 13.3955813	total: 565ms	remaining: 5.7ms
99:	learn: 13.3380095	total: 570ms	remaining: 0us
0:	learn: 42.9675374	total: 5.38ms	remaining: 532ms
1:	learn: 42.2542078	total: 10.3ms	remaining: 504ms
2:	learn: 41.5532166	total: 15.2ms	remaining: 492ms
3:	learn: 40.7812113	total: 19.9ms	remaining: 477ms
4:	learn: 39.8819601	total: 24.9ms	remaining: 472ms
5:	learn: 39.0997229	total: 26.7ms	remaining: 418ms
6:	learn: 38.2185623	total: 31.8ms	remaining: 423ms
7:	learn: 37.5465645	total: 37.3ms	remaining: 429ms
8:	learn: 36.8449555	total: 42.7ms	remaining: 432ms
9:	learn: 36.0912815	total: 47.9ms	remaining: 431ms
10:	learn: 35.5776470	total: 53.5ms	remaining: 433ms
11:	learn: 34.7845329	total: 63.5ms	remaining: 466ms
12:	learn: 34.1574031	total: 72.2ms	remaining: 483ms
13:	learn: 33.4950652	total: 79.1ms	remaining: 486ms
14:	learn: 32.9343881	total: 84.9ms	remaining: 481ms
15:	learn: 32.4356238	total: 91.2ms	remaining: 479ms
16:	learn: 31.8370592	total: 95.9ms	remaining: 468ms
17:	learn: 31.2122644	total: 101ms	remaining: 458ms
18:	learn: 30.7195190	total: 105ms	remaining: 450ms
19:	learn: 30.1548478	total: 111ms	remaining: 443ms
20:	learn: 29.6521001	total: 114ms	remaining: 427ms
21:	learn: 29.1746988	total: 118ms	remaining: 420ms
22:	learn: 28.6492690	total: 123ms	remaining: 413ms
23:	learn: 28.1958339	total: 128ms	remaining: 406ms
24:	learn: 27.9126674	total: 133ms	remaining: 400ms
25:	learn: 27.5059508	total: 138ms	remaining: 393ms
26:	learn: 27.0869176	total: 144ms	remaining: 388ms
27:	learn: 26.6545277	total: 149ms	remaining: 382ms
28:	learn: 26.2388575	total: 154ms	remaining: 376ms
29:	learn: 25.8957708	total: 159ms	remaining: 370ms
30:	learn: 25.5045901	total: 164ms	remaining: 364ms
31:	learn: 25.2559530	total: 169ms	remaining: 358ms
32:	learn: 24.9012566	total: 173ms	remaining: 352ms
33:	learn: 24.5601820	total: 178ms	remaining: 346ms
34:	learn: 24.2407285	total: 183ms	remaining: 340ms
35:	learn: 23.9481769	total: 188ms	remaining: 334ms
36:	learn: 23.6746994	total: 193ms	remaining: 328ms
37:	learn: 23.4470352	total: 198ms	remaining: 323ms
38:	learn: 23.1678305	total: 203ms	remaining: 317ms
39:	learn: 22.9660692	total: 208ms	remaining: 312ms
40:	learn: 22.7102548	total: 213ms	remaining: 307ms
41:	learn: 22.5152447	total: 218ms	remaining: 302ms
42:	learn: 22.2967100	total: 223ms	remaining: 296ms
43:	learn: 22.0869517	total: 228ms	remaining: 291ms
44:	learn: 21.8556497	total: 234ms	remaining: 286ms
45:	learn: 21.7036804	total: 239ms	remaining: 280ms
46:	learn: 21.4792011	total: 244ms	remaining: 275ms
47:	learn: 21.2830384	total: 249ms	remaining: 270ms
48:	learn: 21.0771837	total: 254ms	remaining: 264ms
49:	learn: 20.8824468	total: 263ms	remaining: 263ms
50:	learn: 20.7250875	total: 274ms	remaining: 264ms
51:	learn: 20.5564423	total: 282ms	remaining: 261ms
52:	learn: 20.4067403	total: 291ms	remaining: 258ms
53:	learn: 20.2674808	total: 296ms	remaining: 252ms
54:	learn: 20.1394249	total: 303ms	remaining: 248ms
55:	learn: 19.9748016	total: 308ms	remaining: 242ms
56:	learn: 19.8159522	total: 314ms	remaining: 237ms
57:	learn: 19.6811073	total: 319ms	remaining: 231ms
58:	learn: 19.5083232	total: 325ms	remaining: 226ms
59:	learn: 19.3949390	total: 327ms	remaining: 218ms
60:	learn: 19.2485728	total: 333ms	remaining: 213ms
61:	learn: 19.1255523	total: 338ms	remaining: 207ms
62:	learn: 18.9423320	total: 344ms	remaining: 202ms
63:	learn: 18.7794545	total: 350ms	remaining: 197ms
64:	learn: 18.6339033	total: 355ms	remaining: 191ms
65:	learn: 18.5188724	total: 360ms	remaining: 185ms
66:	learn: 18.3398412	total: 365ms	remaining: 180ms
67:	learn: 18.2873427	total: 369ms	remaining: 174ms
68:	learn: 18.1287092	total: 374ms	remaining: 168ms
69:	learn: 18.0163474	total: 379ms	remaining: 163ms
70:	learn: 17.9428395	total: 384ms	remaining: 157ms
71:	learn: 17.7906087	total: 389ms	remaining: 151ms
72:	learn: 17.6121088	total: 394ms	remaining: 146ms
73:	learn: 17.5136572	total: 399ms	remaining: 140ms
74:	learn: 17.3837993	total: 404ms	remaining: 135ms
75:	learn: 17.3015647	total: 409ms	remaining: 129ms
76:	learn: 17.1991252	total: 414ms	remaining: 124ms
77:	learn: 17.0854777	total: 418ms	remaining: 118ms
78:	learn: 17.0308269	total: 423ms	remaining: 112ms
79:	learn: 16.9754807	total: 428ms	remaining: 107ms
80:	learn: 16.9174907	total: 433ms	remaining: 102ms
81:	learn: 16.7962603	total: 438ms	remaining: 96ms
82:	learn: 16.6685446	total: 443ms	remaining: 90.7ms
83:	learn: 16.5812672	total: 448ms	remaining: 85.3ms
84:	learn: 16.4896026	total: 453ms	remaining: 79.9ms
85:	learn: 16.4023414	total: 458ms	remaining: 74.5ms
86:	learn: 16.3093718	total: 463ms	remaining: 69.1ms
87:	learn: 16.2409040	total: 469ms	remaining: 63.9ms
88:	learn: 16.1616213	total: 478ms	remaining: 59.1ms
89:	learn: 16.0825203	total: 487ms	remaining: 54.1ms
90:	learn: 16.0204931	total: 493ms	remaining: 48.8ms
91:	learn: 15.9741267	total: 499ms	remaining: 43.4ms
92:	learn: 15.9413725	total: 504ms	remaining: 38ms
93:	learn: 15.8762295	total: 509ms	remaining: 32.5ms
94:	learn: 15.8165812	total: 514ms	remaining: 27.1ms
95:	learn: 15.7244343	total: 520ms	remaining: 21.7ms
96:	learn: 15.6537033	total: 525ms	remaining: 16.2ms
97:	learn: 15.6052320	total: 530ms	remaining: 10.8ms
98:	learn: 15.5434930	total: 535ms	remaining: 5.41ms
99:	learn: 15.4452106	total: 540ms	remaining: 0us
0:	learn: 46.5387280	total: 5.21ms	remaining: 516ms
1:	learn: 45.8605074	total: 9.97ms	remaining: 488ms
2:	learn: 45.2237152	total: 15ms	remaining: 484ms
3:	learn: 44.4158454	total: 19.6ms	remaining: 470ms
4:	learn: 43.7177384	total: 24.4ms	remaining: 463ms
5:	learn: 42.9896372	total: 29.2ms	remaining: 457ms
6:	learn: 42.3639431	total: 34.3ms	remaining: 456ms
7:	learn: 41.6648406	total: 39.4ms	remaining: 453ms
8:	learn: 41.0681442	total: 44.6ms	remaining: 451ms
9:	learn: 40.4478745	total: 49.4ms	remaining: 445ms
10:	learn: 40.0398470	total: 54.1ms	remaining: 438ms
11:	learn: 39.3300888	total: 59.3ms	remaining: 435ms
12:	learn: 38.9198991	total: 64.6ms	remaining: 432ms
13:	learn: 38.4022666	total: 69.9ms	remaining: 429ms
14:	learn: 37.9124629	total: 75.1ms	remaining: 426ms
15:	learn: 37.3846174	total: 80.1ms	remaining: 421ms
16:	learn: 36.8502348	total: 87.1ms	remaining: 425ms
17:	learn: 36.5079755	total: 95.2ms	remaining: 434ms
18:	learn: 36.1239339	total: 105ms	remaining: 447ms
19:	learn: 35.8388688	total: 112ms	remaining: 448ms
20:	learn: 35.4915710	total: 121ms	remaining: 453ms
21:	learn: 34.9483623	total: 126ms	remaining: 447ms
22:	learn: 34.6033866	total: 132ms	remaining: 442ms
23:	learn: 34.1483341	total: 138ms	remaining: 438ms
24:	learn: 33.7626484	total: 144ms	remaining: 433ms
25:	learn: 33.4160820	total: 150ms	remaining: 427ms
26:	learn: 33.0421483	total: 156ms	remaining: 421ms
27:	learn: 32.6573469	total: 162ms	remaining: 415ms
28:	learn: 32.2672417	total: 167ms	remaining: 409ms
29:	learn: 31.8257441	total: 172ms	remaining: 402ms
30:	learn: 31.3394923	total: 178ms	remaining: 397ms
31:	learn: 30.9472894	total: 184ms	remaining: 392ms
32:	learn: 30.6961423	total: 190ms	remaining: 385ms
33:	learn: 30.4670615	total: 194ms	remaining: 377ms
34:	learn: 30.1495001	total: 199ms	remaining: 370ms
35:	learn: 29.8071763	total: 204ms	remaining: 363ms
36:	learn: 29.5255984	total: 209ms	remaining: 356ms
37:	learn: 29.2236758	total: 214ms	remaining: 349ms
38:	learn: 28.9199699	total: 218ms	remaining: 342ms
39:	learn: 28.7003989	total: 223ms	remaining: 335ms
40:	learn: 28.4681160	total: 228ms	remaining: 328ms
41:	learn: 28.2692668	total: 232ms	remaining: 321ms
42:	learn: 27.9327254	total: 237ms	remaining: 314ms
43:	learn: 27.7193597	total: 243ms	remaining: 309ms
44:	learn: 27.4061006	total: 247ms	remaining: 302ms
45:	learn: 27.1840910	total: 252ms	remaining: 296ms
46:	learn: 26.8943816	total: 257ms	remaining: 290ms
47:	learn: 26.6576617	total: 263ms	remaining: 285ms
48:	learn: 26.3230094	total: 271ms	remaining: 282ms
49:	learn: 26.0488483	total: 278ms	remaining: 278ms
50:	learn: 25.7795537	total: 285ms	remaining: 274ms
51:	learn: 25.6103781	total: 290ms	remaining: 268ms
52:	learn: 25.4107383	total: 296ms	remaining: 263ms
53:	learn: 25.1757211	total: 304ms	remaining: 259ms
54:	learn: 24.8949842	total: 308ms	remaining: 252ms
55:	learn: 24.7028694	total: 313ms	remaining: 246ms
56:	learn: 24.4033555	total: 318ms	remaining: 240ms
57:	learn: 24.2109268	total: 323ms	remaining: 234ms
58:	learn: 24.0697623	total: 327ms	remaining: 227ms
59:	learn: 23.8291672	total: 332ms	remaining: 221ms
60:	learn: 23.5972471	total: 337ms	remaining: 215ms
61:	learn: 23.4241182	total: 341ms	remaining: 209ms
62:	learn: 23.2617022	total: 346ms	remaining: 203ms
63:	learn: 23.0329448	total: 351ms	remaining: 198ms
64:	learn: 22.9108081	total: 356ms	remaining: 192ms
65:	learn: 22.8001962	total: 362ms	remaining: 186ms
66:	learn: 22.6861907	total: 367ms	remaining: 181ms
67:	learn: 22.5152895	total: 372ms	remaining: 175ms
68:	learn: 22.3734214	total: 377ms	remaining: 169ms
69:	learn: 22.1840754	total: 382ms	remaining: 164ms
70:	learn: 22.0732908	total: 387ms	remaining: 158ms
71:	learn: 21.8880456	total: 392ms	remaining: 153ms
72:	learn: 21.7838784	total: 397ms	remaining: 147ms
73:	learn: 21.5532885	total: 402ms	remaining: 141ms
74:	learn: 21.3998735	total: 407ms	remaining: 136ms
75:	learn: 21.2699824	total: 412ms	remaining: 130ms
76:	learn: 21.1077652	total: 416ms	remaining: 124ms
77:	learn: 20.9759102	total: 421ms	remaining: 119ms
78:	learn: 20.7531342	total: 426ms	remaining: 113ms
79:	learn: 20.6729631	total: 431ms	remaining: 108ms
80:	learn: 20.4903474	total: 436ms	remaining: 102ms
81:	learn: 20.3708622	total: 442ms	remaining: 97ms
82:	learn: 20.2627857	total: 447ms	remaining: 91.6ms
83:	learn: 20.1335464	total: 457ms	remaining: 87.1ms
84:	learn: 20.0100864	total: 463ms	remaining: 81.7ms
85:	learn: 19.9374357	total: 468ms	remaining: 76.3ms
86:	learn: 19.8383097	total: 474ms	remaining: 70.8ms
87:	learn: 19.7804443	total: 479ms	remaining: 65.3ms
88:	learn: 19.7225631	total: 486ms	remaining: 60ms
89:	learn: 19.5851849	total: 495ms	remaining: 55ms
90:	learn: 19.5115923	total: 507ms	remaining: 50.2ms
91:	learn: 19.3986485	total: 515ms	remaining: 44.8ms
92:	learn: 19.2465728	total: 521ms	remaining: 39.2ms
93:	learn: 19.2033796	total: 527ms	remaining: 33.6ms
94:	learn: 19.1234096	total: 533ms	remaining: 28ms
95:	learn: 19.0080161	total: 538ms	remaining: 22.4ms
96:	learn: 18.9048698	total: 544ms	remaining: 16.8ms
97:	learn: 18.7901500	total: 550ms	remaining: 11.2ms
98:	learn: 18.6759882	total: 556ms	remaining: 5.61ms
99:	learn: 18.6254590	total: 561ms	remaining: 0us
0:	learn: 46.0359105	total: 5.32ms	remaining: 527ms
1:	learn: 45.4503059	total: 10.3ms	remaining: 504ms
2:	learn: 44.6478680	total: 15.2ms	remaining: 491ms
3:	learn: 43.7932387	total: 20ms	remaining: 481ms
4:	learn: 43.2236036	total: 24.8ms	remaining: 471ms
5:	learn: 42.4339181	total: 30.2ms	remaining: 473ms
6:	learn: 41.8906461	total: 35.1ms	remaining: 466ms
7:	learn: 41.2248707	total: 40ms	remaining: 460ms
8:	learn: 40.5934570	total: 44.8ms	remaining: 453ms
9:	learn: 39.9204661	total: 49.8ms	remaining: 448ms
10:	learn: 39.3972458	total: 54.7ms	remaining: 442ms
11:	learn: 38.9220493	total: 59.6ms	remaining: 437ms
12:	learn: 38.2358406	total: 64.4ms	remaining: 431ms
13:	learn: 37.7089336	total: 69.4ms	remaining: 426ms
14:	learn: 37.3714255	total: 74.6ms	remaining: 423ms
15:	learn: 36.8098537	total: 79.8ms	remaining: 419ms
16:	learn: 36.2818695	total: 85.3ms	remaining: 416ms
17:	learn: 35.8807734	total: 90.4ms	remaining: 412ms
18:	learn: 35.3850720	total: 95.3ms	remaining: 406ms
19:	learn: 35.0622365	total: 101ms	remaining: 404ms
20:	learn: 34.7088655	total: 111ms	remaining: 416ms
21:	learn: 34.2869861	total: 119ms	remaining: 421ms
22:	learn: 33.9798756	total: 125ms	remaining: 419ms
23:	learn: 33.6933850	total: 130ms	remaining: 412ms
24:	learn: 33.3542725	total: 136ms	remaining: 409ms
25:	learn: 33.1531104	total: 141ms	remaining: 401ms
26:	learn: 32.7581499	total: 145ms	remaining: 393ms
27:	learn: 32.4953289	total: 150ms	remaining: 386ms
28:	learn: 32.1636511	total: 155ms	remaining: 379ms
29:	learn: 31.7179908	total: 159ms	remaining: 372ms
30:	learn: 31.2828971	total: 164ms	remaining: 366ms
31:	learn: 30.8954632	total: 169ms	remaining: 359ms
32:	learn: 30.6156466	total: 174ms	remaining: 353ms
33:	learn: 30.4325331	total: 179ms	remaining: 347ms
34:	learn: 30.1680270	total: 183ms	remaining: 340ms
35:	learn: 29.8372162	total: 189ms	remaining: 336ms
36:	learn: 29.5018241	total: 194ms	remaining: 330ms
37:	learn: 29.2660228	total: 198ms	remaining: 324ms
38:	learn: 28.9172883	total: 203ms	remaining: 318ms
39:	learn: 28.7004790	total: 208ms	remaining: 312ms
40:	learn: 28.5188438	total: 213ms	remaining: 306ms
41:	learn: 28.3064887	total: 218ms	remaining: 301ms
42:	learn: 27.9584462	total: 223ms	remaining: 295ms
43:	learn: 27.6654603	total: 228ms	remaining: 290ms
44:	learn: 27.3698139	total: 233ms	remaining: 284ms
45:	learn: 27.1825629	total: 237ms	remaining: 279ms
46:	learn: 26.9938719	total: 242ms	remaining: 273ms
47:	learn: 26.7385850	total: 247ms	remaining: 268ms
48:	learn: 26.5055251	total: 252ms	remaining: 262ms
49:	learn: 26.3264840	total: 257ms	remaining: 257ms
50:	learn: 26.1314307	total: 261ms	remaining: 251ms
51:	learn: 25.9514770	total: 266ms	remaining: 246ms
52:	learn: 25.7272663	total: 272ms	remaining: 241ms
53:	learn: 25.4554234	total: 277ms	remaining: 236ms
54:	learn: 25.2133674	total: 282ms	remaining: 231ms
55:	learn: 24.9612149	total: 288ms	remaining: 226ms
56:	learn: 24.6788780	total: 293ms	remaining: 221ms
57:	learn: 24.4504703	total: 298ms	remaining: 216ms
58:	learn: 24.3261542	total: 305ms	remaining: 212ms
59:	learn: 24.1217621	total: 314ms	remaining: 209ms
60:	learn: 23.9495725	total: 322ms	remaining: 206ms
61:	learn: 23.7848565	total: 330ms	remaining: 202ms
62:	learn: 23.6627081	total: 338ms	remaining: 198ms
63:	learn: 23.4390407	total: 344ms	remaining: 193ms
64:	learn: 23.2556312	total: 349ms	remaining: 188ms
65:	learn: 23.1796337	total: 355ms	remaining: 183ms
66:	learn: 23.0431987	total: 361ms	remaining: 178ms
67:	learn: 22.9300366	total: 367ms	remaining: 173ms
68:	learn: 22.8321895	total: 373ms	remaining: 168ms
69:	learn: 22.7825840	total: 379ms	remaining: 162ms
70:	learn: 22.6907764	total: 384ms	remaining: 157ms
71:	learn: 22.5080460	total: 389ms	remaining: 151ms
72:	learn: 22.4053282	total: 395ms	remaining: 146ms
73:	learn: 22.2698085	total: 401ms	remaining: 141ms
74:	learn: 22.0951825	total: 406ms	remaining: 135ms
75:	learn: 21.9933994	total: 411ms	remaining: 130ms
76:	learn: 21.8043413	total: 416ms	remaining: 124ms
77:	learn: 21.7259032	total: 421ms	remaining: 119ms
78:	learn: 21.5625358	total: 426ms	remaining: 113ms
79:	learn: 21.4316837	total: 430ms	remaining: 108ms
80:	learn: 21.2270985	total: 435ms	remaining: 102ms
81:	learn: 21.1248573	total: 440ms	remaining: 96.6ms
82:	learn: 21.0879584	total: 444ms	remaining: 91ms
83:	learn: 20.9810177	total: 450ms	remaining: 85.6ms
84:	learn: 20.8986744	total: 455ms	remaining: 80.2ms
85:	learn: 20.8427245	total: 459ms	remaining: 74.8ms
86:	learn: 20.7158681	total: 464ms	remaining: 69.4ms
87:	learn: 20.6055502	total: 469ms	remaining: 64ms
88:	learn: 20.5302059	total: 474ms	remaining: 58.6ms
89:	learn: 20.3936827	total: 479ms	remaining: 53.2ms
90:	learn: 20.2756993	total: 485ms	remaining: 47.9ms
91:	learn: 20.1882826	total: 489ms	remaining: 42.6ms
92:	learn: 20.0346875	total: 494ms	remaining: 37.2ms
93:	learn: 19.9798652	total: 501ms	remaining: 32ms
94:	learn: 19.9020384	total: 511ms	remaining: 26.9ms
95:	learn: 19.8463755	total: 519ms	remaining: 21.6ms
96:	learn: 19.7426458	total: 524ms	remaining: 16.2ms
97:	learn: 19.6728655	total: 531ms	remaining: 10.8ms
98:	learn: 19.6355104	total: 536ms	remaining: 5.41ms
99:	learn: 19.6074086	total: 541ms	remaining: 0us
0:	learn: 46.7817285	total: 5.12ms	remaining: 507ms
1:	learn: 45.9551634	total: 9.8ms	remaining: 480ms
2:	learn: 45.0274369	total: 14.6ms	remaining: 472ms
3:	learn: 44.5000950	total: 19.2ms	remaining: 461ms
4:	learn: 43.8963632	total: 23.9ms	remaining: 453ms
5:	learn: 43.2314124	total: 28.7ms	remaining: 449ms
6:	learn: 42.5780140	total: 33.5ms	remaining: 444ms
7:	learn: 41.9033077	total: 38.1ms	remaining: 439ms
8:	learn: 41.3161907	total: 43ms	remaining: 435ms
9:	learn: 40.7747000	total: 47.8ms	remaining: 430ms
10:	learn: 40.2728122	total: 52.4ms	remaining: 424ms
11:	learn: 39.7786608	total: 57.6ms	remaining: 422ms
12:	learn: 39.0812090	total: 62.6ms	remaining: 419ms
13:	learn: 38.6205762	total: 67.6ms	remaining: 416ms
14:	learn: 38.2894236	total: 72.9ms	remaining: 413ms
15:	learn: 37.6906364	total: 77.6ms	remaining: 407ms
16:	learn: 37.3014849	total: 82.4ms	remaining: 403ms
17:	learn: 36.9268494	total: 87.6ms	remaining: 399ms
18:	learn: 36.6348717	total: 93.1ms	remaining: 397ms
19:	learn: 36.1567831	total: 98.3ms	remaining: 393ms
20:	learn: 35.8080754	total: 103ms	remaining: 389ms
21:	learn: 35.4288913	total: 109ms	remaining: 386ms
22:	learn: 35.0910168	total: 114ms	remaining: 383ms
23:	learn: 34.7483277	total: 125ms	remaining: 395ms
24:	learn: 34.5077203	total: 139ms	remaining: 418ms
25:	learn: 34.1830247	total: 148ms	remaining: 422ms
26:	learn: 33.7943837	total: 155ms	remaining: 419ms
27:	learn: 33.3736582	total: 162ms	remaining: 416ms
28:	learn: 32.9133996	total: 168ms	remaining: 413ms
29:	learn: 32.4361653	total: 174ms	remaining: 407ms
30:	learn: 31.9630085	total: 182ms	remaining: 404ms
31:	learn: 31.5994894	total: 189ms	remaining: 402ms
32:	learn: 31.3120059	total: 196ms	remaining: 398ms
33:	learn: 31.0991187	total: 202ms	remaining: 392ms
34:	learn: 30.8055118	total: 209ms	remaining: 388ms
35:	learn: 30.5197359	total: 216ms	remaining: 383ms
36:	learn: 30.1975315	total: 221ms	remaining: 377ms
37:	learn: 29.9797615	total: 227ms	remaining: 371ms
38:	learn: 29.6874864	total: 233ms	remaining: 365ms
39:	learn: 29.4139907	total: 239ms	remaining: 359ms
40:	learn: 29.0472151	total: 245ms	remaining: 353ms
41:	learn: 28.8356285	total: 251ms	remaining: 346ms
42:	learn: 28.5099349	total: 256ms	remaining: 340ms
43:	learn: 28.2009716	total: 262ms	remaining: 334ms
44:	learn: 27.8947534	total: 268ms	remaining: 327ms
45:	learn: 27.6149698	total: 274ms	remaining: 321ms
46:	learn: 27.4780860	total: 279ms	remaining: 315ms
47:	learn: 27.2859119	total: 285ms	remaining: 308ms
48:	learn: 27.0572191	total: 291ms	remaining: 302ms
49:	learn: 26.8916263	total: 296ms	remaining: 296ms
50:	learn: 26.6791967	total: 302ms	remaining: 290ms
51:	learn: 26.4917307	total: 307ms	remaining: 284ms
52:	learn: 26.2957036	total: 313ms	remaining: 278ms
53:	learn: 26.1116543	total: 322ms	remaining: 274ms
54:	learn: 25.8593319	total: 331ms	remaining: 271ms
55:	learn: 25.6957296	total: 341ms	remaining: 268ms
56:	learn: 25.5065213	total: 346ms	remaining: 261ms
57:	learn: 25.3525337	total: 353ms	remaining: 255ms
58:	learn: 25.2197494	total: 358ms	remaining: 249ms
59:	learn: 25.0583799	total: 363ms	remaining: 242ms
60:	learn: 24.8432659	total: 368ms	remaining: 235ms
61:	learn: 24.6585337	total: 374ms	remaining: 229ms
62:	learn: 24.5382571	total: 379ms	remaining: 222ms
63:	learn: 24.3596337	total: 384ms	remaining: 216ms
64:	learn: 24.2009033	total: 389ms	remaining: 210ms
65:	learn: 24.0964080	total: 394ms	remaining: 203ms
66:	learn: 23.9765920	total: 399ms	remaining: 197ms
67:	learn: 23.8638384	total: 405ms	remaining: 190ms
68:	learn: 23.7381861	total: 410ms	remaining: 184ms
69:	learn: 23.5620129	total: 415ms	remaining: 178ms
70:	learn: 23.4494830	total: 420ms	remaining: 172ms
71:	learn: 23.3095806	total: 425ms	remaining: 165ms
72:	learn: 23.1441767	total: 430ms	remaining: 159ms
73:	learn: 22.9983446	total: 435ms	remaining: 153ms
74:	learn: 22.8464764	total: 440ms	remaining: 147ms
75:	learn: 22.7606423	total: 445ms	remaining: 140ms
76:	learn: 22.6095905	total: 450ms	remaining: 134ms
77:	learn: 22.4430506	total: 455ms	remaining: 128ms
78:	learn: 22.2925872	total: 460ms	remaining: 122ms
79:	learn: 22.1806286	total: 465ms	remaining: 116ms
80:	learn: 22.0070525	total: 470ms	remaining: 110ms
81:	learn: 21.9114201	total: 475ms	remaining: 104ms
82:	learn: 21.7742884	total: 479ms	remaining: 98.2ms
83:	learn: 21.6372857	total: 484ms	remaining: 92.2ms
84:	learn: 21.5380397	total: 489ms	remaining: 86.3ms
85:	learn: 21.4730146	total: 494ms	remaining: 80.4ms
86:	learn: 21.3236516	total: 498ms	remaining: 74.5ms
87:	learn: 21.2512101	total: 504ms	remaining: 68.7ms
88:	learn: 21.2192883	total: 509ms	remaining: 63ms
89:	learn: 21.0457926	total: 515ms	remaining: 57.2ms
90:	learn: 20.9986980	total: 520ms	remaining: 51.4ms
91:	learn: 20.9040032	total: 525ms	remaining: 45.7ms
92:	learn: 20.7178547	total: 532ms	remaining: 40ms
93:	learn: 20.6535030	total: 540ms	remaining: 34.5ms
94:	learn: 20.5641982	total: 552ms	remaining: 29.1ms
95:	learn: 20.5355409	total: 559ms	remaining: 23.3ms
96:	learn: 20.4496493	total: 567ms	remaining: 17.5ms
97:	learn: 20.3579862	total: 573ms	remaining: 11.7ms
98:	learn: 20.2442476	total: 579ms	remaining: 5.85ms
99:	learn: 20.1075813	total: 585ms	remaining: 0us
0:	learn: 27.6506730	total: 4.91ms	remaining: 486ms
1:	learn: 27.1638793	total: 9.03ms	remaining: 443ms
2:	learn: 26.8000665	total: 13.7ms	remaining: 443ms
3:	learn: 26.4256132	total: 18.8ms	remaining: 451ms
4:	learn: 26.0088351	total: 23.6ms	remaining: 448ms
5:	learn: 25.7558298	total: 28.5ms	remaining: 447ms
6:	learn: 25.3380711	total: 33.1ms	remaining: 440ms
7:	learn: 25.0571611	total: 38.1ms	remaining: 438ms
8:	learn: 24.6790148	total: 42.4ms	remaining: 429ms
9:	learn: 24.3600941	total: 46.9ms	remaining: 422ms
10:	learn: 24.1105667	total: 51.3ms	remaining: 415ms
11:	learn: 23.7736542	total: 55.9ms	remaining: 410ms
12:	learn: 23.5824429	total: 60.1ms	remaining: 402ms
13:	learn: 23.2658303	total: 64.1ms	remaining: 394ms
14:	learn: 23.0061886	total: 68.9ms	remaining: 391ms
15:	learn: 22.8060389	total: 73.8ms	remaining: 388ms
16:	learn: 22.5899735	total: 78.6ms	remaining: 384ms
17:	learn: 22.3625048	total: 83.8ms	remaining: 382ms
18:	learn: 22.0706477	total: 88.5ms	remaining: 377ms
19:	learn: 21.8739394	total: 93.4ms	remaining: 373ms
20:	learn: 21.6143650	total: 102ms	remaining: 382ms
21:	learn: 21.4571623	total: 108ms	remaining: 385ms
22:	learn: 21.2395769	total: 115ms	remaining: 385ms
23:	learn: 20.9801795	total: 120ms	remaining: 380ms
24:	learn: 20.8036808	total: 126ms	remaining: 379ms
25:	learn: 20.6387539	total: 131ms	remaining: 371ms
26:	learn: 20.4401427	total: 135ms	remaining: 364ms
27:	learn: 20.2879575	total: 139ms	remaining: 357ms
28:	learn: 20.0538664	total: 144ms	remaining: 352ms
29:	learn: 19.8363102	total: 148ms	remaining: 346ms
30:	learn: 19.7015446	total: 153ms	remaining: 340ms
31:	learn: 19.5483114	total: 157ms	remaining: 334ms
32:	learn: 19.4163053	total: 161ms	remaining: 328ms
33:	learn: 19.2880625	total: 166ms	remaining: 322ms
34:	learn: 19.1303389	total: 170ms	remaining: 316ms
35:	learn: 18.9237448	total: 174ms	remaining: 310ms
36:	learn: 18.8142925	total: 179ms	remaining: 304ms
37:	learn: 18.6994696	total: 183ms	remaining: 298ms
38:	learn: 18.5629211	total: 187ms	remaining: 293ms
39:	learn: 18.4600917	total: 191ms	remaining: 287ms
40:	learn: 18.3567139	total: 196ms	remaining: 282ms
41:	learn: 18.2120527	total: 200ms	remaining: 276ms
42:	learn: 18.0688062	total: 204ms	remaining: 270ms
43:	learn: 17.9250181	total: 208ms	remaining: 265ms
44:	learn: 17.8399138	total: 213ms	remaining: 260ms
45:	learn: 17.6720713	total: 217ms	remaining: 255ms
46:	learn: 17.5273091	total: 223ms	remaining: 251ms
47:	learn: 17.4232814	total: 228ms	remaining: 247ms
48:	learn: 17.2957579	total: 232ms	remaining: 242ms
49:	learn: 17.1892874	total: 237ms	remaining: 237ms
50:	learn: 17.0490355	total: 242ms	remaining: 232ms
51:	learn: 16.9666450	total: 247ms	remaining: 228ms
52:	learn: 16.8600056	total: 252ms	remaining: 223ms
53:	learn: 16.7542588	total: 258ms	remaining: 219ms
54:	learn: 16.6316077	total: 263ms	remaining: 215ms
55:	learn: 16.5588112	total: 269ms	remaining: 211ms
56:	learn: 16.5010186	total: 274ms	remaining: 207ms
57:	learn: 16.4081540	total: 286ms	remaining: 207ms
58:	learn: 16.3040451	total: 295ms	remaining: 205ms
59:	learn: 16.1890564	total: 301ms	remaining: 201ms
60:	learn: 16.0977103	total: 307ms	remaining: 196ms
61:	learn: 15.9627607	total: 314ms	remaining: 192ms
62:	learn: 15.9022248	total: 319ms	remaining: 188ms
63:	learn: 15.8151881	total: 325ms	remaining: 183ms
64:	learn: 15.7353125	total: 330ms	remaining: 178ms
65:	learn: 15.6312897	total: 335ms	remaining: 173ms
66:	learn: 15.5330927	total: 340ms	remaining: 168ms
67:	learn: 15.4698681	total: 346ms	remaining: 163ms
68:	learn: 15.4108571	total: 351ms	remaining: 158ms
69:	learn: 15.3492945	total: 356ms	remaining: 153ms
70:	learn: 15.3036540	total: 362ms	remaining: 148ms
71:	learn: 15.2390833	total: 367ms	remaining: 143ms
72:	learn: 15.1556327	total: 372ms	remaining: 138ms
73:	learn: 15.1016315	total: 378ms	remaining: 133ms
74:	learn: 15.0287076	total: 383ms	remaining: 128ms
75:	learn: 14.9530572	total: 388ms	remaining: 122ms
76:	learn: 14.8965517	total: 393ms	remaining: 117ms
77:	learn: 14.8125426	total: 398ms	remaining: 112ms
78:	learn: 14.7435359	total: 403ms	remaining: 107ms
79:	learn: 14.6963163	total: 407ms	remaining: 102ms
80:	learn: 14.6200060	total: 411ms	remaining: 96.4ms
81:	learn: 14.5707760	total: 415ms	remaining: 91.2ms
82:	learn: 14.5053651	total: 420ms	remaining: 86ms
83:	learn: 14.4115458	total: 424ms	remaining: 80.8ms
84:	learn: 14.3117159	total: 429ms	remaining: 75.7ms
85:	learn: 14.2511326	total: 433ms	remaining: 70.5ms
86:	learn: 14.1372486	total: 438ms	remaining: 65.4ms
87:	learn: 14.0992301	total: 442ms	remaining: 60.3ms
88:	learn: 14.0228331	total: 446ms	remaining: 55.2ms
89:	learn: 13.9249836	total: 450ms	remaining: 50ms
90:	learn: 13.8679364	total: 455ms	remaining: 45ms
91:	learn: 13.8405578	total: 460ms	remaining: 40ms
92:	learn: 13.7711325	total: 464ms	remaining: 34.9ms
93:	learn: 13.7357019	total: 469ms	remaining: 29.9ms
94:	learn: 13.6735271	total: 474ms	remaining: 24.9ms
95:	learn: 13.5682393	total: 478ms	remaining: 19.9ms
96:	learn: 13.5342610	total: 483ms	remaining: 14.9ms
97:	learn: 13.4710034	total: 487ms	remaining: 9.94ms
98:	learn: 13.4022402	total: 492ms	remaining: 4.97ms
99:	learn: 13.3351238	total: 497ms	remaining: 0us
0:	learn: 42.9181702	total: 4.57ms	remaining: 453ms
1:	learn: 42.0286736	total: 9ms	remaining: 441ms
2:	learn: 41.2764568	total: 13ms	remaining: 420ms
3:	learn: 40.4721918	total: 16.9ms	remaining: 407ms
4:	learn: 39.8518928	total: 21.2ms	remaining: 403ms
5:	learn: 39.2645479	total: 25.8ms	remaining: 404ms
6:	learn: 38.4453704	total: 30.3ms	remaining: 402ms
7:	learn: 37.7122059	total: 35.3ms	remaining: 406ms
8:	learn: 36.9185796	total: 40.3ms	remaining: 407ms
9:	learn: 36.1668427	total: 45.4ms	remaining: 408ms
10:	learn: 35.5639029	total: 50.3ms	remaining: 407ms
11:	learn: 34.7724193	total: 55.2ms	remaining: 405ms
12:	learn: 34.3053433	total: 60.4ms	remaining: 404ms
13:	learn: 33.6561327	total: 61.6ms	remaining: 379ms
14:	learn: 33.0134042	total: 66.3ms	remaining: 376ms
15:	learn: 32.4483300	total: 70.5ms	remaining: 370ms
16:	learn: 31.8581144	total: 74.5ms	remaining: 364ms
17:	learn: 31.2858301	total: 78.8ms	remaining: 359ms
18:	learn: 30.8483018	total: 83.2ms	remaining: 355ms
19:	learn: 30.4174622	total: 87.5ms	remaining: 350ms
20:	learn: 29.8994411	total: 91.8ms	remaining: 345ms
21:	learn: 29.5045355	total: 96.4ms	remaining: 342ms
22:	learn: 28.9923519	total: 101ms	remaining: 338ms
23:	learn: 28.4255717	total: 105ms	remaining: 333ms
24:	learn: 28.0283139	total: 110ms	remaining: 329ms
25:	learn: 27.7434814	total: 115ms	remaining: 326ms
26:	learn: 27.2770731	total: 120ms	remaining: 323ms
27:	learn: 26.8928270	total: 124ms	remaining: 319ms
28:	learn: 26.4282671	total: 129ms	remaining: 315ms
29:	learn: 26.0272764	total: 133ms	remaining: 311ms
30:	learn: 25.7579312	total: 138ms	remaining: 308ms
31:	learn: 25.4542434	total: 143ms	remaining: 304ms
32:	learn: 25.1232564	total: 148ms	remaining: 301ms
33:	learn: 24.8110795	total: 153ms	remaining: 297ms
34:	learn: 24.5077579	total: 158ms	remaining: 293ms
35:	learn: 24.1909000	total: 163ms	remaining: 289ms
36:	learn: 23.8719468	total: 167ms	remaining: 285ms
37:	learn: 23.5764366	total: 169ms	remaining: 275ms
38:	learn: 23.3468086	total: 173ms	remaining: 271ms
39:	learn: 23.0908771	total: 180ms	remaining: 270ms
40:	learn: 22.8580876	total: 189ms	remaining: 272ms
41:	learn: 22.6060825	total: 200ms	remaining: 276ms
42:	learn: 22.4125407	total: 207ms	remaining: 275ms
43:	learn: 22.1990617	total: 213ms	remaining: 271ms
44:	learn: 21.9716164	total: 218ms	remaining: 267ms
45:	learn: 21.8360935	total: 224ms	remaining: 262ms
46:	learn: 21.6169256	total: 229ms	remaining: 258ms
47:	learn: 21.4620612	total: 234ms	remaining: 253ms
48:	learn: 21.2894194	total: 239ms	remaining: 249ms
49:	learn: 21.1066266	total: 244ms	remaining: 244ms
50:	learn: 20.9484898	total: 250ms	remaining: 240ms
51:	learn: 20.7195338	total: 255ms	remaining: 236ms
52:	learn: 20.4899740	total: 260ms	remaining: 231ms
53:	learn: 20.3356583	total: 266ms	remaining: 227ms
54:	learn: 20.0754393	total: 273ms	remaining: 223ms
55:	learn: 19.9199159	total: 278ms	remaining: 218ms
56:	learn: 19.7761128	total: 283ms	remaining: 213ms
57:	learn: 19.6533060	total: 287ms	remaining: 208ms
58:	learn: 19.5113942	total: 292ms	remaining: 203ms
59:	learn: 19.3985022	total: 296ms	remaining: 197ms
60:	learn: 19.2683443	total: 301ms	remaining: 192ms
61:	learn: 19.1460824	total: 305ms	remaining: 187ms
62:	learn: 19.0042655	total: 310ms	remaining: 182ms
63:	learn: 18.8720873	total: 314ms	remaining: 177ms
64:	learn: 18.7183888	total: 319ms	remaining: 172ms
65:	learn: 18.5472360	total: 324ms	remaining: 167ms
66:	learn: 18.3976642	total: 328ms	remaining: 162ms
67:	learn: 18.2282851	total: 332ms	remaining: 156ms
68:	learn: 18.1469157	total: 337ms	remaining: 151ms
69:	learn: 18.0649494	total: 341ms	remaining: 146ms
70:	learn: 17.9485405	total: 346ms	remaining: 141ms
71:	learn: 17.8460261	total: 351ms	remaining: 136ms
72:	learn: 17.7679843	total: 356ms	remaining: 132ms
73:	learn: 17.5989290	total: 361ms	remaining: 127ms
74:	learn: 17.4381322	total: 365ms	remaining: 122ms
75:	learn: 17.3370886	total: 370ms	remaining: 117ms
76:	learn: 17.2675308	total: 374ms	remaining: 112ms
77:	learn: 17.1946430	total: 381ms	remaining: 107ms
78:	learn: 17.0923725	total: 388ms	remaining: 103ms
79:	learn: 17.0537265	total: 399ms	remaining: 99.6ms
80:	learn: 16.9456831	total: 404ms	remaining: 94.8ms
81:	learn: 16.8457353	total: 410ms	remaining: 90.1ms
82:	learn: 16.7469310	total: 414ms	remaining: 84.9ms
83:	learn: 16.6679953	total: 419ms	remaining: 79.8ms
84:	learn: 16.6274189	total: 423ms	remaining: 74.6ms
85:	learn: 16.5516530	total: 428ms	remaining: 69.6ms
86:	learn: 16.4886066	total: 432ms	remaining: 64.5ms
87:	learn: 16.3947859	total: 436ms	remaining: 59.5ms
88:	learn: 16.3406495	total: 440ms	remaining: 54.4ms
89:	learn: 16.3019195	total: 445ms	remaining: 49.4ms
90:	learn: 16.1860681	total: 449ms	remaining: 44.4ms
91:	learn: 16.1282812	total: 453ms	remaining: 39.4ms
92:	learn: 16.0303652	total: 458ms	remaining: 34.5ms
93:	learn: 15.9561692	total: 462ms	remaining: 29.5ms
94:	learn: 15.8733994	total: 467ms	remaining: 24.6ms
95:	learn: 15.8108833	total: 471ms	remaining: 19.6ms
96:	learn: 15.7606004	total: 475ms	remaining: 14.7ms
97:	learn: 15.6984664	total: 480ms	remaining: 9.79ms
98:	learn: 15.6223632	total: 484ms	remaining: 4.89ms
99:	learn: 15.5671136	total: 489ms	remaining: 0us
0:	learn: 46.4788614	total: 1.8ms	remaining: 179ms
1:	learn: 45.7608372	total: 6.11ms	remaining: 299ms
2:	learn: 44.8825004	total: 10.6ms	remaining: 342ms
3:	learn: 44.0362738	total: 15ms	remaining: 359ms
4:	learn: 43.2086374	total: 19.3ms	remaining: 366ms
5:	learn: 42.5835773	total: 23.6ms	remaining: 370ms
6:	learn: 41.9673269	total: 28.2ms	remaining: 375ms
7:	learn: 41.4748717	total: 32.8ms	remaining: 377ms
8:	learn: 40.7129183	total: 37.5ms	remaining: 379ms
9:	learn: 39.8900884	total: 42.2ms	remaining: 380ms
10:	learn: 39.4142193	total: 46.8ms	remaining: 379ms
11:	learn: 38.8645613	total: 51.5ms	remaining: 378ms
12:	learn: 38.2394731	total: 56.4ms	remaining: 377ms
13:	learn: 37.6834515	total: 64.8ms	remaining: 398ms
14:	learn: 37.0673507	total: 71.5ms	remaining: 405ms
15:	learn: 36.4728340	total: 81.5ms	remaining: 428ms
16:	learn: 36.0489086	total: 87ms	remaining: 425ms
17:	learn: 35.4744141	total: 93.4ms	remaining: 426ms
18:	learn: 35.0106021	total: 98.7ms	remaining: 421ms
19:	learn: 34.5586053	total: 104ms	remaining: 416ms
20:	learn: 34.1308223	total: 109ms	remaining: 411ms
21:	learn: 33.7701450	total: 114ms	remaining: 406ms
22:	learn: 33.4425444	total: 120ms	remaining: 401ms
23:	learn: 33.0296412	total: 125ms	remaining: 396ms
24:	learn: 32.6359803	total: 130ms	remaining: 390ms
25:	learn: 32.1846182	total: 136ms	remaining: 386ms
26:	learn: 31.7620230	total: 141ms	remaining: 380ms
27:	learn: 31.4669337	total: 145ms	remaining: 374ms
28:	learn: 31.0792062	total: 151ms	remaining: 370ms
29:	learn: 30.7970537	total: 157ms	remaining: 365ms
30:	learn: 30.4952215	total: 161ms	remaining: 358ms
31:	learn: 30.2845344	total: 165ms	remaining: 350ms
32:	learn: 29.9592732	total: 169ms	remaining: 344ms
33:	learn: 29.6798596	total: 174ms	remaining: 337ms
34:	learn: 29.3368905	total: 178ms	remaining: 331ms
35:	learn: 29.0621238	total: 182ms	remaining: 324ms
36:	learn: 28.6445375	total: 187ms	remaining: 318ms
37:	learn: 28.2418096	total: 191ms	remaining: 312ms
38:	learn: 27.9495390	total: 195ms	remaining: 305ms
39:	learn: 27.6958160	total: 200ms	remaining: 299ms
40:	learn: 27.4811189	total: 204ms	remaining: 294ms
41:	learn: 27.1494420	total: 208ms	remaining: 288ms
42:	learn: 26.8388873	total: 213ms	remaining: 282ms
43:	learn: 26.5721300	total: 217ms	remaining: 276ms
44:	learn: 26.3384738	total: 221ms	remaining: 270ms
45:	learn: 26.1894781	total: 226ms	remaining: 265ms
46:	learn: 25.9580198	total: 230ms	remaining: 260ms
47:	learn: 25.7897985	total: 235ms	remaining: 255ms
48:	learn: 25.6000271	total: 240ms	remaining: 250ms
49:	learn: 25.4130873	total: 245ms	remaining: 245ms
50:	learn: 25.1699061	total: 249ms	remaining: 239ms
51:	learn: 24.9324449	total: 254ms	remaining: 235ms
52:	learn: 24.7729152	total: 264ms	remaining: 234ms
53:	learn: 24.5026563	total: 271ms	remaining: 231ms
54:	learn: 24.2332627	total: 277ms	remaining: 227ms
55:	learn: 23.9611984	total: 282ms	remaining: 222ms
56:	learn: 23.7862603	total: 288ms	remaining: 217ms
57:	learn: 23.6318154	total: 292ms	remaining: 212ms
58:	learn: 23.4443306	total: 296ms	remaining: 206ms
59:	learn: 23.2581425	total: 301ms	remaining: 201ms
60:	learn: 23.0549901	total: 305ms	remaining: 195ms
61:	learn: 22.8666218	total: 310ms	remaining: 190ms
62:	learn: 22.6956739	total: 314ms	remaining: 184ms
63:	learn: 22.5068544	total: 319ms	remaining: 179ms
64:	learn: 22.1859147	total: 323ms	remaining: 174ms
65:	learn: 22.0462043	total: 327ms	remaining: 169ms
66:	learn: 21.9329563	total: 331ms	remaining: 163ms
67:	learn: 21.8029736	total: 335ms	remaining: 158ms
68:	learn: 21.6861091	total: 340ms	remaining: 153ms
69:	learn: 21.4838140	total: 344ms	remaining: 148ms
70:	learn: 21.3548921	total: 349ms	remaining: 142ms
71:	learn: 21.2244517	total: 353ms	remaining: 137ms
72:	learn: 21.0702958	total: 357ms	remaining: 132ms
73:	learn: 20.9224662	total: 361ms	remaining: 127ms
74:	learn: 20.8150357	total: 366ms	remaining: 122ms
75:	learn: 20.6962739	total: 371ms	remaining: 117ms
76:	learn: 20.5809258	total: 375ms	remaining: 112ms
77:	learn: 20.4735470	total: 379ms	remaining: 107ms
78:	learn: 20.3778167	total: 384ms	remaining: 102ms
79:	learn: 20.2211268	total: 388ms	remaining: 97.1ms
80:	learn: 20.1478678	total: 393ms	remaining: 92.1ms
81:	learn: 20.1032967	total: 397ms	remaining: 87.1ms
82:	learn: 19.9236300	total: 401ms	remaining: 82.1ms
83:	learn: 19.8151745	total: 406ms	remaining: 77.2ms
84:	learn: 19.7099856	total: 410ms	remaining: 72.4ms
85:	learn: 19.6264833	total: 415ms	remaining: 67.5ms
86:	learn: 19.4916361	total: 419ms	remaining: 62.6ms
87:	learn: 19.4050529	total: 423ms	remaining: 57.7ms
88:	learn: 19.2547065	total: 428ms	remaining: 52.9ms
89:	learn: 19.1610225	total: 433ms	remaining: 48.1ms
90:	learn: 19.0898958	total: 437ms	remaining: 43.3ms
91:	learn: 19.0489664	total: 442ms	remaining: 38.5ms
92:	learn: 18.9206240	total: 447ms	remaining: 33.6ms
93:	learn: 18.8636239	total: 452ms	remaining: 28.8ms
94:	learn: 18.8126187	total: 459ms	remaining: 24.2ms
95:	learn: 18.7579275	total: 467ms	remaining: 19.4ms
96:	learn: 18.6382753	total: 479ms	remaining: 14.8ms
97:	learn: 18.5397334	total: 486ms	remaining: 9.93ms
98:	learn: 18.4375951	total: 492ms	remaining: 4.97ms
99:	learn: 18.4033755	total: 499ms	remaining: 0us
0:	learn: 46.1068821	total: 3.12ms	remaining: 309ms
1:	learn: 45.3970261	total: 7.93ms	remaining: 388ms
2:	learn: 44.8732696	total: 12.4ms	remaining: 401ms
3:	learn: 44.1290184	total: 17ms	remaining: 407ms
4:	learn: 43.3290271	total: 21.5ms	remaining: 409ms
5:	learn: 42.7069090	total: 25.9ms	remaining: 406ms
6:	learn: 42.0572971	total: 30.2ms	remaining: 402ms
7:	learn: 41.4797924	total: 34.9ms	remaining: 401ms
8:	learn: 41.0023122	total: 39.5ms	remaining: 399ms
9:	learn: 40.5330570	total: 44.1ms	remaining: 397ms
10:	learn: 39.9726545	total: 48.6ms	remaining: 393ms
11:	learn: 39.3044053	total: 52.8ms	remaining: 387ms
12:	learn: 38.8169735	total: 57.2ms	remaining: 383ms
13:	learn: 38.2458761	total: 61.9ms	remaining: 380ms
14:	learn: 37.6280321	total: 67ms	remaining: 380ms
15:	learn: 37.0800610	total: 71.8ms	remaining: 377ms
16:	learn: 36.5489363	total: 76.6ms	remaining: 374ms
17:	learn: 36.0981456	total: 81.4ms	remaining: 371ms
18:	learn: 35.6956274	total: 86.5ms	remaining: 369ms
19:	learn: 35.1471999	total: 91.5ms	remaining: 366ms
20:	learn: 34.6235408	total: 96.6ms	remaining: 363ms
21:	learn: 34.1987018	total: 101ms	remaining: 359ms
22:	learn: 33.8985062	total: 106ms	remaining: 355ms
23:	learn: 33.3869017	total: 116ms	remaining: 369ms
24:	learn: 32.9100550	total: 124ms	remaining: 371ms
25:	learn: 32.4156208	total: 130ms	remaining: 371ms
26:	learn: 31.9320493	total: 135ms	remaining: 365ms
27:	learn: 31.5711468	total: 141ms	remaining: 362ms
28:	learn: 31.2404433	total: 145ms	remaining: 356ms
29:	learn: 30.8807946	total: 150ms	remaining: 350ms
30:	learn: 30.5948438	total: 154ms	remaining: 344ms
31:	learn: 30.3885560	total: 159ms	remaining: 338ms
32:	learn: 30.0625101	total: 163ms	remaining: 332ms
33:	learn: 29.9113114	total: 168ms	remaining: 326ms
34:	learn: 29.6983470	total: 172ms	remaining: 320ms
35:	learn: 29.4775849	total: 176ms	remaining: 313ms
36:	learn: 29.0538055	total: 180ms	remaining: 307ms
37:	learn: 28.6792318	total: 185ms	remaining: 301ms
38:	learn: 28.4231383	total: 189ms	remaining: 296ms
39:	learn: 28.1078565	total: 193ms	remaining: 290ms
40:	learn: 27.9079179	total: 197ms	remaining: 284ms
41:	learn: 27.6721506	total: 201ms	remaining: 278ms
42:	learn: 27.4228033	total: 206ms	remaining: 273ms
43:	learn: 27.1740534	total: 211ms	remaining: 268ms
44:	learn: 26.8584071	total: 215ms	remaining: 263ms
45:	learn: 26.6902083	total: 219ms	remaining: 257ms
46:	learn: 26.4855335	total: 224ms	remaining: 252ms
47:	learn: 26.2730822	total: 228ms	remaining: 247ms
48:	learn: 26.1058689	total: 232ms	remaining: 242ms
49:	learn: 25.8587318	total: 236ms	remaining: 236ms
50:	learn: 25.7558005	total: 241ms	remaining: 231ms
51:	learn: 25.5846925	total: 245ms	remaining: 226ms
52:	learn: 25.4249887	total: 250ms	remaining: 221ms
53:	learn: 25.1911054	total: 254ms	remaining: 216ms
54:	learn: 25.0544755	total: 258ms	remaining: 211ms
55:	learn: 24.8874006	total: 262ms	remaining: 206ms
56:	learn: 24.7736279	total: 266ms	remaining: 201ms
57:	learn: 24.6156255	total: 271ms	remaining: 196ms
58:	learn: 24.3962421	total: 275ms	remaining: 191ms
59:	learn: 24.2685129	total: 279ms	remaining: 186ms
60:	learn: 24.1874096	total: 284ms	remaining: 182ms
61:	learn: 24.0394287	total: 289ms	remaining: 177ms
62:	learn: 23.9281768	total: 294ms	remaining: 172ms
63:	learn: 23.7423900	total: 298ms	remaining: 168ms
64:	learn: 23.6015209	total: 303ms	remaining: 163ms
65:	learn: 23.4677943	total: 307ms	remaining: 158ms
66:	learn: 23.3215256	total: 316ms	remaining: 156ms
67:	learn: 23.1869360	total: 324ms	remaining: 152ms
68:	learn: 22.9691180	total: 334ms	remaining: 150ms
69:	learn: 22.7531657	total: 342ms	remaining: 146ms
70:	learn: 22.6133477	total: 347ms	remaining: 142ms
71:	learn: 22.3452758	total: 352ms	remaining: 137ms
72:	learn: 22.2065350	total: 357ms	remaining: 132ms
73:	learn: 22.1071155	total: 363ms	remaining: 127ms
74:	learn: 21.9740686	total: 368ms	remaining: 123ms
75:	learn: 21.8892033	total: 373ms	remaining: 118ms
76:	learn: 21.8267882	total: 378ms	remaining: 113ms
77:	learn: 21.7423479	total: 383ms	remaining: 108ms
78:	learn: 21.6242075	total: 387ms	remaining: 103ms
79:	learn: 21.5016910	total: 392ms	remaining: 98.1ms
80:	learn: 21.4806623	total: 393ms	remaining: 92.2ms
81:	learn: 21.3166637	total: 398ms	remaining: 87.3ms
82:	learn: 21.2222534	total: 404ms	remaining: 82.7ms
83:	learn: 21.1535708	total: 409ms	remaining: 78ms
84:	learn: 21.0858902	total: 414ms	remaining: 73ms
85:	learn: 20.9206003	total: 418ms	remaining: 68ms
86:	learn: 20.8674695	total: 422ms	remaining: 63.1ms
87:	learn: 20.8089875	total: 426ms	remaining: 58.1ms
88:	learn: 20.7085401	total: 431ms	remaining: 53.2ms
89:	learn: 20.5513468	total: 435ms	remaining: 48.3ms
90:	learn: 20.4586742	total: 439ms	remaining: 43.4ms
91:	learn: 20.3932149	total: 443ms	remaining: 38.5ms
92:	learn: 20.3000895	total: 447ms	remaining: 33.7ms
93:	learn: 20.2254009	total: 451ms	remaining: 28.8ms
94:	learn: 20.1750050	total: 456ms	remaining: 24ms
95:	learn: 20.0715579	total: 460ms	remaining: 19.2ms
96:	learn: 19.9920082	total: 465ms	remaining: 14.4ms
97:	learn: 19.9664401	total: 469ms	remaining: 9.57ms
98:	learn: 19.8689673	total: 473ms	remaining: 4.78ms
99:	learn: 19.7537356	total: 477ms	remaining: 0us
0:	learn: 46.8832143	total: 4.9ms	remaining: 485ms
1:	learn: 45.8700349	total: 9.22ms	remaining: 452ms
2:	learn: 45.0546867	total: 13.3ms	remaining: 429ms
3:	learn: 44.2829439	total: 17.4ms	remaining: 419ms
4:	learn: 43.4609042	total: 21.6ms	remaining: 411ms
5:	learn: 42.6754991	total: 26.1ms	remaining: 409ms
6:	learn: 41.9234935	total: 30.2ms	remaining: 401ms
7:	learn: 41.3987518	total: 34.3ms	remaining: 394ms
8:	learn: 40.6625066	total: 38.5ms	remaining: 389ms
9:	learn: 40.0029561	total: 43.1ms	remaining: 388ms
10:	learn: 39.3897033	total: 47.6ms	remaining: 385ms
11:	learn: 38.7741453	total: 52ms	remaining: 381ms
12:	learn: 38.1201100	total: 56ms	remaining: 375ms
13:	learn: 37.5129454	total: 60.3ms	remaining: 371ms
14:	learn: 37.2062206	total: 64.7ms	remaining: 366ms
15:	learn: 36.6831741	total: 68.8ms	remaining: 361ms
16:	learn: 36.2902788	total: 73ms	remaining: 356ms
17:	learn: 35.7639930	total: 77.5ms	remaining: 353ms
18:	learn: 35.2580953	total: 81.9ms	remaining: 349ms
19:	learn: 34.7809739	total: 85.8ms	remaining: 343ms
20:	learn: 34.1330433	total: 89.9ms	remaining: 338ms
21:	learn: 33.7302219	total: 94.1ms	remaining: 334ms
22:	learn: 33.3502495	total: 98.3ms	remaining: 329ms
23:	learn: 33.0067804	total: 102ms	remaining: 325ms
24:	learn: 32.6897855	total: 107ms	remaining: 320ms
25:	learn: 32.4361119	total: 111ms	remaining: 316ms
26:	learn: 32.1278981	total: 115ms	remaining: 312ms
27:	learn: 31.7863721	total: 120ms	remaining: 308ms
28:	learn: 31.4791450	total: 124ms	remaining: 304ms
29:	learn: 31.1760161	total: 128ms	remaining: 300ms
30:	learn: 30.9238888	total: 133ms	remaining: 296ms
31:	learn: 30.5500905	total: 138ms	remaining: 293ms
32:	learn: 30.3078126	total: 142ms	remaining: 288ms
33:	learn: 30.0480921	total: 146ms	remaining: 284ms
34:	learn: 29.8623884	total: 151ms	remaining: 280ms
35:	learn: 29.5991038	total: 156ms	remaining: 277ms
36:	learn: 29.4061161	total: 160ms	remaining: 273ms
37:	learn: 29.0269515	total: 165ms	remaining: 269ms
38:	learn: 28.8224959	total: 170ms	remaining: 265ms
39:	learn: 28.6417843	total: 174ms	remaining: 261ms
40:	learn: 28.3633368	total: 178ms	remaining: 257ms
41:	learn: 28.0200246	total: 187ms	remaining: 259ms
42:	learn: 27.7221254	total: 194ms	remaining: 258ms
43:	learn: 27.5105818	total: 205ms	remaining: 261ms
44:	learn: 27.3551010	total: 210ms	remaining: 257ms
45:	learn: 27.0787522	total: 218ms	remaining: 255ms
46:	learn: 26.8726317	total: 223ms	remaining: 251ms
47:	learn: 26.8003277	total: 228ms	remaining: 247ms
48:	learn: 26.5493785	total: 233ms	remaining: 242ms
49:	learn: 26.3699550	total: 238ms	remaining: 238ms
50:	learn: 26.1519631	total: 244ms	remaining: 234ms
51:	learn: 25.9277325	total: 249ms	remaining: 230ms
52:	learn: 25.7286035	total: 254ms	remaining: 226ms
53:	learn: 25.4999193	total: 260ms	remaining: 221ms
54:	learn: 25.3434703	total: 264ms	remaining: 216ms
55:	learn: 25.1497545	total: 268ms	remaining: 211ms
56:	learn: 24.9498143	total: 273ms	remaining: 206ms
57:	learn: 24.6509390	total: 278ms	remaining: 201ms
58:	learn: 24.5576144	total: 283ms	remaining: 197ms
59:	learn: 24.4265144	total: 288ms	remaining: 192ms
60:	learn: 24.3100706	total: 292ms	remaining: 187ms
61:	learn: 24.1727952	total: 297ms	remaining: 182ms
62:	learn: 24.0478558	total: 301ms	remaining: 177ms
63:	learn: 23.9124577	total: 305ms	remaining: 172ms
64:	learn: 23.7703718	total: 309ms	remaining: 167ms
65:	learn: 23.5975027	total: 322ms	remaining: 166ms
66:	learn: 23.4318077	total: 326ms	remaining: 160ms
67:	learn: 23.3099691	total: 330ms	remaining: 155ms
68:	learn: 23.1947982	total: 334ms	remaining: 150ms
69:	learn: 23.0260174	total: 338ms	remaining: 145ms
70:	learn: 22.8523100	total: 343ms	remaining: 140ms
71:	learn: 22.8028534	total: 347ms	remaining: 135ms
72:	learn: 22.6880658	total: 351ms	remaining: 130ms
73:	learn: 22.5956809	total: 356ms	remaining: 125ms
74:	learn: 22.4692932	total: 362ms	remaining: 121ms
75:	learn: 22.2863504	total: 367ms	remaining: 116ms
76:	learn: 22.1911237	total: 372ms	remaining: 111ms
77:	learn: 22.1098391	total: 377ms	remaining: 106ms
78:	learn: 22.0182738	total: 382ms	remaining: 101ms
79:	learn: 21.9306746	total: 390ms	remaining: 97.6ms
80:	learn: 21.7508233	total: 399ms	remaining: 93.6ms
81:	learn: 21.7108446	total: 406ms	remaining: 89ms
82:	learn: 21.5931852	total: 411ms	remaining: 84.1ms
83:	learn: 21.4480361	total: 417ms	remaining: 79.4ms
84:	learn: 21.3092119	total: 422ms	remaining: 74.4ms
85:	learn: 21.2605557	total: 427ms	remaining: 69.5ms
86:	learn: 21.1123597	total: 432ms	remaining: 64.5ms
87:	learn: 21.0115642	total: 436ms	remaining: 59.4ms
88:	learn: 20.9389040	total: 440ms	remaining: 54.3ms
89:	learn: 20.8300300	total: 444ms	remaining: 49.3ms
90:	learn: 20.7159733	total: 448ms	remaining: 44.3ms
91:	learn: 20.6282090	total: 453ms	remaining: 39.4ms
92:	learn: 20.5164529	total: 457ms	remaining: 34.4ms
93:	learn: 20.4692032	total: 462ms	remaining: 29.5ms
94:	learn: 20.3768451	total: 467ms	remaining: 24.6ms
95:	learn: 20.2808056	total: 471ms	remaining: 19.6ms
96:	learn: 20.2082089	total: 476ms	remaining: 14.7ms
97:	learn: 20.1698768	total: 480ms	remaining: 9.8ms
98:	learn: 20.1048816	total: 485ms	remaining: 4.9ms
99:	learn: 20.0086159	total: 489ms	remaining: 0us
0:	learn: 27.6242191	total: 23.4ms	remaining: 6.99s
1:	learn: 27.3247973	total: 47.9ms	remaining: 7.14s
2:	learn: 26.9048262	total: 74ms	remaining: 7.33s
3:	learn: 26.6094870	total: 108ms	remaining: 7.98s
4:	learn: 26.2335903	total: 132ms	remaining: 7.79s
5:	learn: 25.9065752	total: 156ms	remaining: 7.65s
6:	learn: 25.6303453	total: 181ms	remaining: 7.57s
7:	learn: 25.2422673	total: 205ms	remaining: 7.49s
8:	learn: 24.9092185	total: 229ms	remaining: 7.4s
9:	learn: 24.6380278	total: 253ms	remaining: 7.32s
10:	learn: 24.2990126	total: 277ms	remaining: 7.27s
11:	learn: 24.0194492	total: 309ms	remaining: 7.4s
12:	learn: 23.7720807	total: 333ms	remaining: 7.35s
13:	learn: 23.4419462	total: 356ms	remaining: 7.27s
14:	learn: 23.2366857	total: 379ms	remaining: 7.21s
15:	learn: 22.9901263	total: 382ms	remaining: 6.78s
16:	learn: 22.7775050	total: 405ms	remaining: 6.74s
17:	learn: 22.5290799	total: 428ms	remaining: 6.71s
18:	learn: 22.2427201	total: 451ms	remaining: 6.68s
19:	learn: 21.9766361	total: 476ms	remaining: 6.67s
20:	learn: 21.7608475	total: 500ms	remaining: 6.64s
21:	learn: 21.5756818	total: 534ms	remaining: 6.74s
22:	learn: 21.3753018	total: 560ms	remaining: 6.74s
23:	learn: 21.1715384	total: 584ms	remaining: 6.72s
24:	learn: 20.9557317	total: 608ms	remaining: 6.69s
25:	learn: 20.7653390	total: 632ms	remaining: 6.66s
26:	learn: 20.5688623	total: 656ms	remaining: 6.64s
27:	learn: 20.3753201	total: 680ms	remaining: 6.6s
28:	learn: 20.2087140	total: 704ms	remaining: 6.58s
29:	learn: 20.0437127	total: 729ms	remaining: 6.56s
30:	learn: 19.7939404	total: 761ms	remaining: 6.6s
31:	learn: 19.6135511	total: 787ms	remaining: 6.59s
32:	learn: 19.4223949	total: 811ms	remaining: 6.57s
33:	learn: 19.3099062	total: 836ms	remaining: 6.54s
34:	learn: 19.1471296	total: 861ms	remaining: 6.52s
35:	learn: 18.9602406	total: 887ms	remaining: 6.5s
36:	learn: 18.8463205	total: 912ms	remaining: 6.48s
37:	learn: 18.5993654	total: 939ms	remaining: 6.47s
38:	learn: 18.4547850	total: 968ms	remaining: 6.48s
39:	learn: 18.3265698	total: 996ms	remaining: 6.47s
40:	learn: 18.1552052	total: 1.02s	remaining: 6.45s
41:	learn: 17.9969729	total: 1.05s	remaining: 6.43s
42:	learn: 17.8420506	total: 1.07s	remaining: 6.41s
43:	learn: 17.7314471	total: 1.1s	remaining: 6.4s
44:	learn: 17.6037885	total: 1.13s	remaining: 6.38s
45:	learn: 17.4911598	total: 1.15s	remaining: 6.36s
46:	learn: 17.3334650	total: 1.18s	remaining: 6.34s
47:	learn: 17.1964435	total: 1.21s	remaining: 6.35s
48:	learn: 17.0705369	total: 1.24s	remaining: 6.34s
49:	learn: 16.9282293	total: 1.26s	remaining: 6.31s
50:	learn: 16.7996947	total: 1.28s	remaining: 6.28s
51:	learn: 16.6978905	total: 1.31s	remaining: 6.25s
52:	learn: 16.5793323	total: 1.34s	remaining: 6.23s
53:	learn: 16.4770669	total: 1.36s	remaining: 6.21s
54:	learn: 16.3655624	total: 1.39s	remaining: 6.21s
55:	learn: 16.2604369	total: 1.42s	remaining: 6.19s
56:	learn: 16.1431440	total: 1.45s	remaining: 6.17s
57:	learn: 16.0326605	total: 1.47s	remaining: 6.14s
58:	learn: 15.9323014	total: 1.5s	remaining: 6.12s
59:	learn: 15.8025601	total: 1.52s	remaining: 6.1s
60:	learn: 15.6963178	total: 1.55s	remaining: 6.07s
61:	learn: 15.6270773	total: 1.58s	remaining: 6.05s
62:	learn: 15.5313112	total: 1.61s	remaining: 6.04s
63:	learn: 15.4399515	total: 1.64s	remaining: 6.04s
64:	learn: 15.3597117	total: 1.66s	remaining: 6.01s
65:	learn: 15.2697176	total: 1.69s	remaining: 5.98s
66:	learn: 15.1828907	total: 1.71s	remaining: 5.95s
67:	learn: 15.0961490	total: 1.74s	remaining: 5.92s
68:	learn: 15.0128613	total: 1.76s	remaining: 5.9s
69:	learn: 14.9098281	total: 1.79s	remaining: 5.87s
70:	learn: 14.8290802	total: 1.81s	remaining: 5.84s
71:	learn: 14.7354294	total: 1.84s	remaining: 5.84s
72:	learn: 14.6593235	total: 1.87s	remaining: 5.81s
73:	learn: 14.5723402	total: 1.89s	remaining: 5.78s
74:	learn: 14.4986819	total: 1.92s	remaining: 5.76s
75:	learn: 14.4087447	total: 1.94s	remaining: 5.73s
76:	learn: 14.3357763	total: 1.97s	remaining: 5.7s
77:	learn: 14.2423286	total: 1.99s	remaining: 5.67s
78:	learn: 14.1791552	total: 2.02s	remaining: 5.64s
79:	learn: 14.0970307	total: 2.04s	remaining: 5.61s
80:	learn: 14.0336692	total: 2.07s	remaining: 5.6s
81:	learn: 13.9758100	total: 2.1s	remaining: 5.57s
82:	learn: 13.9111969	total: 2.12s	remaining: 5.54s
83:	learn: 13.8350945	total: 2.15s	remaining: 5.51s
84:	learn: 13.7593569	total: 2.17s	remaining: 5.49s
85:	learn: 13.6953120	total: 2.19s	remaining: 5.46s
86:	learn: 13.6352452	total: 2.22s	remaining: 5.43s
87:	learn: 13.5794275	total: 2.24s	remaining: 5.4s
88:	learn: 13.4880894	total: 2.27s	remaining: 5.37s
89:	learn: 13.4305792	total: 2.3s	remaining: 5.36s
90:	learn: 13.3569291	total: 2.32s	remaining: 5.34s
91:	learn: 13.2958628	total: 2.35s	remaining: 5.31s
92:	learn: 13.2338079	total: 2.37s	remaining: 5.28s
93:	learn: 13.1821114	total: 2.4s	remaining: 5.25s
94:	learn: 13.1082697	total: 2.42s	remaining: 5.23s
95:	learn: 13.0475619	total: 2.44s	remaining: 5.2s
96:	learn: 12.9878324	total: 2.47s	remaining: 5.17s
97:	learn: 12.9294785	total: 2.5s	remaining: 5.14s
98:	learn: 12.8646231	total: 2.52s	remaining: 5.13s
99:	learn: 12.8003027	total: 2.55s	remaining: 5.1s
100:	learn: 12.6741024	total: 2.57s	remaining: 5.07s
101:	learn: 12.5871778	total: 2.6s	remaining: 5.04s
102:	learn: 12.5199785	total: 2.62s	remaining: 5.01s
103:	learn: 12.4533348	total: 2.64s	remaining: 4.98s
104:	learn: 12.4014303	total: 2.67s	remaining: 4.95s
105:	learn: 12.3404648	total: 2.69s	remaining: 4.92s
106:	learn: 12.2853908	total: 2.72s	remaining: 4.91s
107:	learn: 12.2113131	total: 2.75s	remaining: 4.89s
108:	learn: 12.1443818	total: 2.78s	remaining: 4.86s
109:	learn: 12.0782972	total: 2.8s	remaining: 4.84s
110:	learn: 12.0242888	total: 2.82s	remaining: 4.81s
111:	learn: 11.9606186	total: 2.85s	remaining: 4.78s
112:	learn: 11.8840123	total: 2.87s	remaining: 4.75s
113:	learn: 11.8362234	total: 2.9s	remaining: 4.73s
114:	learn: 11.7798600	total: 2.92s	remaining: 4.7s
115:	learn: 11.7205583	total: 2.96s	remaining: 4.69s
116:	learn: 11.6703154	total: 2.98s	remaining: 4.66s
117:	learn: 11.5906207	total: 3s	remaining: 4.63s
118:	learn: 11.5392300	total: 3.03s	remaining: 4.6s
119:	learn: 11.5009891	total: 3.05s	remaining: 4.58s
120:	learn: 11.4496613	total: 3.07s	remaining: 4.55s
121:	learn: 11.3880593	total: 3.1s	remaining: 4.52s
122:	learn: 11.3343840	total: 3.13s	remaining: 4.5s
123:	learn: 11.2903777	total: 3.16s	remaining: 4.49s
124:	learn: 11.2226066	total: 3.19s	remaining: 4.46s
125:	learn: 11.1756503	total: 3.21s	remaining: 4.43s
126:	learn: 11.1266674	total: 3.23s	remaining: 4.41s
127:	learn: 11.0542744	total: 3.26s	remaining: 4.38s
128:	learn: 11.0132226	total: 3.28s	remaining: 4.35s
129:	learn: 10.9545179	total: 3.31s	remaining: 4.33s
130:	learn: 10.9167977	total: 3.35s	remaining: 4.32s
131:	learn: 10.8607094	total: 3.38s	remaining: 4.29s
132:	learn: 10.8081246	total: 3.4s	remaining: 4.27s
133:	learn: 10.7595004	total: 3.43s	remaining: 4.25s
134:	learn: 10.6949228	total: 3.46s	remaining: 4.23s
135:	learn: 10.6549608	total: 3.49s	remaining: 4.2s
136:	learn: 10.6085016	total: 3.51s	remaining: 4.18s
137:	learn: 10.5530774	total: 3.54s	remaining: 4.16s
138:	learn: 10.5146132	total: 3.58s	remaining: 4.14s
139:	learn: 10.4804263	total: 3.61s	remaining: 4.12s
140:	learn: 10.4469935	total: 3.63s	remaining: 4.1s
141:	learn: 10.4083597	total: 3.66s	remaining: 4.07s
142:	learn: 10.3700272	total: 3.7s	remaining: 4.06s
143:	learn: 10.3240531	total: 3.72s	remaining: 4.03s
144:	learn: 10.2838387	total: 3.75s	remaining: 4.01s
145:	learn: 10.2237396	total: 3.78s	remaining: 3.99s
146:	learn: 10.1677493	total: 3.81s	remaining: 3.97s
147:	learn: 10.1289528	total: 3.84s	remaining: 3.94s
148:	learn: 10.0918869	total: 3.87s	remaining: 3.92s
149:	learn: 10.0599014	total: 3.89s	remaining: 3.89s
150:	learn: 9.9817438	total: 3.92s	remaining: 3.87s
151:	learn: 9.9410469	total: 3.95s	remaining: 3.85s
152:	learn: 9.8790383	total: 3.98s	remaining: 3.83s
153:	learn: 9.8489714	total: 4.02s	remaining: 3.81s
154:	learn: 9.8192539	total: 4.05s	remaining: 3.79s
155:	learn: 9.7595292	total: 4.07s	remaining: 3.76s
156:	learn: 9.7305132	total: 4.1s	remaining: 3.74s
157:	learn: 9.6946431	total: 4.13s	remaining: 3.71s
158:	learn: 9.6382391	total: 4.16s	remaining: 3.69s
159:	learn: 9.5932080	total: 4.2s	remaining: 3.67s
160:	learn: 9.5528662	total: 4.24s	remaining: 3.66s
161:	learn: 9.5112954	total: 4.27s	remaining: 3.63s
162:	learn: 9.4782229	total: 4.29s	remaining: 3.61s
163:	learn: 9.4469139	total: 4.32s	remaining: 3.58s
164:	learn: 9.4073553	total: 4.35s	remaining: 3.56s
165:	learn: 9.3658459	total: 4.38s	remaining: 3.53s
166:	learn: 9.3331509	total: 4.4s	remaining: 3.51s
167:	learn: 9.3022193	total: 4.44s	remaining: 3.49s
168:	learn: 9.2687355	total: 4.48s	remaining: 3.47s
169:	learn: 9.2347395	total: 4.51s	remaining: 3.45s
170:	learn: 9.1946963	total: 4.54s	remaining: 3.42s
171:	learn: 9.1669467	total: 4.56s	remaining: 3.4s
172:	learn: 9.1174548	total: 4.59s	remaining: 3.37s
173:	learn: 9.0578865	total: 4.62s	remaining: 3.34s
174:	learn: 9.0242697	total: 4.65s	remaining: 3.32s
175:	learn: 8.9812385	total: 4.69s	remaining: 3.3s
176:	learn: 8.9394173	total: 4.71s	remaining: 3.28s
177:	learn: 8.8954630	total: 4.74s	remaining: 3.25s
178:	learn: 8.8650625	total: 4.77s	remaining: 3.22s
179:	learn: 8.8128518	total: 4.8s	remaining: 3.2s
180:	learn: 8.7713941	total: 4.82s	remaining: 3.17s
181:	learn: 8.7271373	total: 4.85s	remaining: 3.15s
182:	learn: 8.6827020	total: 4.89s	remaining: 3.13s
183:	learn: 8.6411197	total: 4.92s	remaining: 3.1s
184:	learn: 8.6161231	total: 4.96s	remaining: 3.08s
185:	learn: 8.5812975	total: 4.98s	remaining: 3.05s
186:	learn: 8.5494363	total: 5.01s	remaining: 3.03s
187:	learn: 8.5121894	total: 5.04s	remaining: 3s
188:	learn: 8.4769543	total: 5.07s	remaining: 2.98s
189:	learn: 8.4285766	total: 5.1s	remaining: 2.95s
190:	learn: 8.4032474	total: 5.13s	remaining: 2.92s
191:	learn: 8.3791298	total: 5.15s	remaining: 2.9s
192:	learn: 8.3494894	total: 5.19s	remaining: 2.88s
193:	learn: 8.3153327	total: 5.21s	remaining: 2.85s
194:	learn: 8.2823004	total: 5.24s	remaining: 2.82s
195:	learn: 8.2449482	total: 5.28s	remaining: 2.8s
196:	learn: 8.2013567	total: 5.31s	remaining: 2.77s
197:	learn: 8.1697337	total: 5.33s	remaining: 2.75s
198:	learn: 8.1265833	total: 5.36s	remaining: 2.72s
199:	learn: 8.0905433	total: 5.39s	remaining: 2.69s
200:	learn: 8.0669552	total: 5.42s	remaining: 2.67s
201:	learn: 8.0258330	total: 5.45s	remaining: 2.65s
202:	learn: 8.0026168	total: 5.48s	remaining: 2.62s
203:	learn: 7.9482286	total: 5.51s	remaining: 2.59s
204:	learn: 7.9105233	total: 5.54s	remaining: 2.57s
205:	learn: 7.8966891	total: 5.57s	remaining: 2.54s
206:	learn: 7.8575063	total: 5.59s	remaining: 2.51s
207:	learn: 7.8147335	total: 5.62s	remaining: 2.48s
208:	learn: 7.7917140	total: 5.65s	remaining: 2.46s
209:	learn: 7.7607147	total: 5.68s	remaining: 2.43s
210:	learn: 7.7425727	total: 5.71s	remaining: 2.41s
211:	learn: 7.7238288	total: 5.74s	remaining: 2.38s
212:	learn: 7.6985896	total: 5.77s	remaining: 2.36s
213:	learn: 7.6752745	total: 5.8s	remaining: 2.33s
214:	learn: 7.6442259	total: 5.83s	remaining: 2.3s
215:	learn: 7.6325331	total: 5.86s	remaining: 2.28s
216:	learn: 7.6063316	total: 5.88s	remaining: 2.25s
217:	learn: 7.5831832	total: 5.92s	remaining: 2.23s
218:	learn: 7.5672234	total: 5.95s	remaining: 2.2s
219:	learn: 7.5331936	total: 5.98s	remaining: 2.17s
220:	learn: 7.4920831	total: 6.01s	remaining: 2.15s
221:	learn: 7.4737554	total: 6.03s	remaining: 2.12s
222:	learn: 7.4270074	total: 6.06s	remaining: 2.09s
223:	learn: 7.4017600	total: 6.09s	remaining: 2.06s
224:	learn: 7.3806959	total: 6.11s	remaining: 2.04s
225:	learn: 7.3554017	total: 6.15s	remaining: 2.01s
226:	learn: 7.3409799	total: 6.17s	remaining: 1.99s
227:	learn: 7.3212923	total: 6.21s	remaining: 1.96s
228:	learn: 7.3105787	total: 6.24s	remaining: 1.93s
229:	learn: 7.2892883	total: 6.27s	remaining: 1.91s
230:	learn: 7.2744332	total: 6.3s	remaining: 1.88s
231:	learn: 7.2520263	total: 6.33s	remaining: 1.85s
232:	learn: 7.2282060	total: 6.35s	remaining: 1.83s
233:	learn: 7.2079652	total: 6.38s	remaining: 1.8s
234:	learn: 7.1916393	total: 6.42s	remaining: 1.77s
235:	learn: 7.1701919	total: 6.45s	remaining: 1.75s
236:	learn: 7.1568798	total: 6.48s	remaining: 1.72s
237:	learn: 7.1311171	total: 6.5s	remaining: 1.69s
238:	learn: 7.1241442	total: 6.53s	remaining: 1.67s
239:	learn: 7.1023502	total: 6.56s	remaining: 1.64s
240:	learn: 7.0871109	total: 6.58s	remaining: 1.61s
241:	learn: 7.0717340	total: 6.62s	remaining: 1.59s
242:	learn: 7.0574975	total: 6.65s	remaining: 1.56s
243:	learn: 7.0489270	total: 6.68s	remaining: 1.53s
244:	learn: 7.0279173	total: 6.71s	remaining: 1.51s
245:	learn: 6.9967234	total: 6.74s	remaining: 1.48s
246:	learn: 6.9827176	total: 6.77s	remaining: 1.45s
247:	learn: 6.9632381	total: 6.79s	remaining: 1.42s
248:	learn: 6.9490747	total: 6.82s	remaining: 1.4s
249:	learn: 6.9350226	total: 6.85s	remaining: 1.37s
250:	learn: 6.9203338	total: 6.9s	remaining: 1.35s
251:	learn: 6.9078713	total: 6.92s	remaining: 1.32s
252:	learn: 6.8997471	total: 6.95s	remaining: 1.29s
253:	learn: 6.8786784	total: 6.98s	remaining: 1.26s
254:	learn: 6.8629866	total: 7.01s	remaining: 1.24s
255:	learn: 6.8497530	total: 7.03s	remaining: 1.21s
256:	learn: 6.8363263	total: 7.06s	remaining: 1.18s
257:	learn: 6.8232778	total: 7.09s	remaining: 1.15s
258:	learn: 6.7952234	total: 7.13s	remaining: 1.13s
259:	learn: 6.7671952	total: 7.16s	remaining: 1.1s
260:	learn: 6.7545126	total: 7.19s	remaining: 1.07s
261:	learn: 6.7414039	total: 7.22s	remaining: 1.05s
262:	learn: 6.7307423	total: 7.25s	remaining: 1.02s
263:	learn: 6.6887074	total: 7.27s	remaining: 992ms
264:	learn: 6.6786482	total: 7.31s	remaining: 965ms
265:	learn: 6.6520387	total: 7.34s	remaining: 938ms
266:	learn: 6.6371511	total: 7.37s	remaining: 911ms
267:	learn: 6.6139304	total: 7.4s	remaining: 884ms
268:	learn: 6.6024854	total: 7.43s	remaining: 856ms
269:	learn: 6.5811216	total: 7.45s	remaining: 828ms
270:	learn: 6.5396874	total: 7.48s	remaining: 800ms
271:	learn: 6.5260569	total: 7.51s	remaining: 773ms
272:	learn: 6.5161555	total: 7.54s	remaining: 745ms
273:	learn: 6.5055568	total: 7.57s	remaining: 719ms
274:	learn: 6.4955852	total: 7.61s	remaining: 692ms
275:	learn: 6.4768059	total: 7.63s	remaining: 664ms
276:	learn: 6.4526678	total: 7.66s	remaining: 636ms
277:	learn: 6.4407932	total: 7.69s	remaining: 609ms
278:	learn: 6.4229786	total: 7.72s	remaining: 581ms
279:	learn: 6.4143528	total: 7.75s	remaining: 553ms
280:	learn: 6.3939760	total: 7.77s	remaining: 526ms
281:	learn: 6.3821368	total: 7.81s	remaining: 498ms
282:	learn: 6.3733999	total: 7.83s	remaining: 471ms
283:	learn: 6.3506155	total: 7.87s	remaining: 443ms
284:	learn: 6.3456374	total: 7.9s	remaining: 416ms
285:	learn: 6.3423150	total: 7.92s	remaining: 388ms
286:	learn: 6.3323118	total: 7.95s	remaining: 360ms
287:	learn: 6.3209916	total: 7.98s	remaining: 332ms
288:	learn: 6.3017754	total: 8.02s	remaining: 305ms
289:	learn: 6.2738210	total: 8.04s	remaining: 277ms
290:	learn: 6.2684358	total: 8.07s	remaining: 250ms
291:	learn: 6.2546793	total: 8.11s	remaining: 222ms
292:	learn: 6.2441498	total: 8.14s	remaining: 194ms
293:	learn: 6.2406001	total: 8.16s	remaining: 167ms
294:	learn: 6.2308638	total: 8.19s	remaining: 139ms
295:	learn: 6.2166524	total: 8.22s	remaining: 111ms
296:	learn: 6.2029239	total: 8.25s	remaining: 83.4ms
297:	learn: 6.1930984	total: 8.28s	remaining: 55.6ms
298:	learn: 6.1787666	total: 8.3s	remaining: 27.8ms
299:	learn: 6.1715886	total: 8.34s	remaining: 0us
0:	learn: 43.0189040	total: 28.2ms	remaining: 8.42s
1:	learn: 42.1913120	total: 56.8ms	remaining: 8.46s
2:	learn: 41.2381785	total: 83.7ms	remaining: 8.28s
3:	learn: 40.3733911	total: 110ms	remaining: 8.14s
4:	learn: 39.7420433	total: 137ms	remaining: 8.07s
5:	learn: 38.9384932	total: 164ms	remaining: 8.03s
6:	learn: 38.2027180	total: 197ms	remaining: 8.23s
7:	learn: 37.5736018	total: 231ms	remaining: 8.44s
8:	learn: 36.9042368	total: 258ms	remaining: 8.34s
9:	learn: 36.1138721	total: 284ms	remaining: 8.25s
10:	learn: 35.4444268	total: 287ms	remaining: 7.55s
11:	learn: 34.7889997	total: 302ms	remaining: 7.24s
12:	learn: 34.3622266	total: 330ms	remaining: 7.28s
13:	learn: 33.6999120	total: 357ms	remaining: 7.29s
14:	learn: 32.9955576	total: 385ms	remaining: 7.31s
15:	learn: 32.3475617	total: 423ms	remaining: 7.5s
16:	learn: 31.9028750	total: 453ms	remaining: 7.55s
17:	learn: 31.3786390	total: 488ms	remaining: 7.65s
18:	learn: 30.9731314	total: 516ms	remaining: 7.63s
19:	learn: 30.5397110	total: 544ms	remaining: 7.61s
20:	learn: 30.0650165	total: 571ms	remaining: 7.58s
21:	learn: 29.4732599	total: 598ms	remaining: 7.55s
22:	learn: 29.0746185	total: 633ms	remaining: 7.62s
23:	learn: 28.5839328	total: 661ms	remaining: 7.6s
24:	learn: 28.2894974	total: 688ms	remaining: 7.56s
25:	learn: 27.7954367	total: 720ms	remaining: 7.59s
26:	learn: 27.3542996	total: 747ms	remaining: 7.55s
27:	learn: 27.0838564	total: 774ms	remaining: 7.52s
28:	learn: 26.7019509	total: 801ms	remaining: 7.48s
29:	learn: 26.3607640	total: 829ms	remaining: 7.46s
30:	learn: 25.9174899	total: 863ms	remaining: 7.48s
31:	learn: 25.5590328	total: 890ms	remaining: 7.46s
32:	learn: 25.1682834	total: 918ms	remaining: 7.43s
33:	learn: 24.8123558	total: 947ms	remaining: 7.41s
34:	learn: 24.5841473	total: 984ms	remaining: 7.45s
35:	learn: 24.2224307	total: 1.01s	remaining: 7.41s
36:	learn: 23.9745715	total: 1.04s	remaining: 7.38s
37:	learn: 23.6958493	total: 1.07s	remaining: 7.35s
38:	learn: 23.3890143	total: 1.1s	remaining: 7.36s
39:	learn: 23.1113968	total: 1.13s	remaining: 7.33s
40:	learn: 22.8519880	total: 1.15s	remaining: 7.29s
41:	learn: 22.5944697	total: 1.18s	remaining: 7.25s
42:	learn: 22.3853418	total: 1.21s	remaining: 7.25s
43:	learn: 22.1827007	total: 1.24s	remaining: 7.22s
44:	learn: 22.0186852	total: 1.27s	remaining: 7.19s
45:	learn: 21.7686773	total: 1.3s	remaining: 7.2s
46:	learn: 21.5978489	total: 1.33s	remaining: 7.17s
47:	learn: 21.3542004	total: 1.36s	remaining: 7.14s
48:	learn: 21.1752073	total: 1.39s	remaining: 7.12s
49:	learn: 21.0415246	total: 1.42s	remaining: 7.1s
50:	learn: 20.8441081	total: 1.45s	remaining: 7.1s
51:	learn: 20.5918001	total: 1.49s	remaining: 7.09s
52:	learn: 20.4441208	total: 1.51s	remaining: 7.06s
53:	learn: 20.2679633	total: 1.54s	remaining: 7.02s
54:	learn: 20.1163092	total: 1.57s	remaining: 6.99s
55:	learn: 19.9714704	total: 1.59s	remaining: 6.95s
56:	learn: 19.8249765	total: 1.62s	remaining: 6.91s
57:	learn: 19.6607355	total: 1.65s	remaining: 6.88s
58:	learn: 19.4877956	total: 1.69s	remaining: 6.9s
59:	learn: 19.3053072	total: 1.72s	remaining: 6.88s
60:	learn: 19.1885738	total: 1.75s	remaining: 6.85s
61:	learn: 19.0346503	total: 1.78s	remaining: 6.82s
62:	learn: 18.8347986	total: 1.8s	remaining: 6.79s
63:	learn: 18.6814926	total: 1.83s	remaining: 6.75s
64:	learn: 18.5382672	total: 1.86s	remaining: 6.72s
65:	learn: 18.3895833	total: 1.88s	remaining: 6.68s
66:	learn: 18.2694672	total: 1.91s	remaining: 6.65s
67:	learn: 18.1196051	total: 1.95s	remaining: 6.66s
68:	learn: 17.9925317	total: 1.98s	remaining: 6.63s
69:	learn: 17.8749679	total: 2s	remaining: 6.59s
70:	learn: 17.7225935	total: 2.03s	remaining: 6.55s
71:	learn: 17.5806906	total: 2.06s	remaining: 6.52s
72:	learn: 17.4922570	total: 2.08s	remaining: 6.49s
73:	learn: 17.3984999	total: 2.11s	remaining: 6.45s
74:	learn: 17.3128227	total: 2.15s	remaining: 6.46s
75:	learn: 17.2165163	total: 2.19s	remaining: 6.45s
76:	learn: 17.0889232	total: 2.22s	remaining: 6.42s
77:	learn: 16.9583567	total: 2.24s	remaining: 6.39s
78:	learn: 16.8340539	total: 2.27s	remaining: 6.36s
79:	learn: 16.7346257	total: 2.3s	remaining: 6.32s
80:	learn: 16.6446663	total: 2.33s	remaining: 6.29s
81:	learn: 16.5218155	total: 2.36s	remaining: 6.26s
82:	learn: 16.4054583	total: 2.39s	remaining: 6.25s
83:	learn: 16.2803558	total: 2.42s	remaining: 6.23s
84:	learn: 16.1516324	total: 2.45s	remaining: 6.2s
85:	learn: 16.0643357	total: 2.48s	remaining: 6.16s
86:	learn: 15.9817265	total: 2.5s	remaining: 6.13s
87:	learn: 15.9144474	total: 2.53s	remaining: 6.09s
88:	learn: 15.8380424	total: 2.56s	remaining: 6.08s
89:	learn: 15.7453770	total: 2.59s	remaining: 6.05s
90:	learn: 15.6720653	total: 2.62s	remaining: 6.02s
91:	learn: 15.5626839	total: 2.66s	remaining: 6s
92:	learn: 15.4727375	total: 2.69s	remaining: 5.98s
93:	learn: 15.3655885	total: 2.71s	remaining: 5.94s
94:	learn: 15.2496762	total: 2.74s	remaining: 5.91s
95:	learn: 15.1773522	total: 2.77s	remaining: 5.88s
96:	learn: 15.0924366	total: 2.8s	remaining: 5.86s
97:	learn: 15.0082209	total: 2.83s	remaining: 5.83s
98:	learn: 14.9178437	total: 2.85s	remaining: 5.8s
99:	learn: 14.8149449	total: 2.88s	remaining: 5.76s
100:	learn: 14.7450303	total: 2.92s	remaining: 5.75s
101:	learn: 14.6462390	total: 2.94s	remaining: 5.71s
102:	learn: 14.5348825	total: 2.97s	remaining: 5.68s
103:	learn: 14.4483847	total: 3.01s	remaining: 5.67s
104:	learn: 14.4006573	total: 3.04s	remaining: 5.64s
105:	learn: 14.3322113	total: 3.06s	remaining: 5.61s
106:	learn: 14.2471466	total: 3.09s	remaining: 5.58s
107:	learn: 14.1788249	total: 3.12s	remaining: 5.55s
108:	learn: 14.1033594	total: 3.15s	remaining: 5.53s
109:	learn: 14.0161080	total: 3.18s	remaining: 5.5s
110:	learn: 13.9710960	total: 3.21s	remaining: 5.47s
111:	learn: 13.8941529	total: 3.24s	remaining: 5.44s
112:	learn: 13.8246456	total: 3.27s	remaining: 5.41s
113:	learn: 13.7518933	total: 3.3s	remaining: 5.38s
114:	learn: 13.7003709	total: 3.32s	remaining: 5.34s
115:	learn: 13.6359576	total: 3.35s	remaining: 5.31s
116:	learn: 13.6039211	total: 3.38s	remaining: 5.3s
117:	learn: 13.5361545	total: 3.41s	remaining: 5.26s
118:	learn: 13.4554429	total: 3.44s	remaining: 5.24s
119:	learn: 13.3922439	total: 3.48s	remaining: 5.21s
120:	learn: 13.2895862	total: 3.5s	remaining: 5.19s
121:	learn: 13.1749097	total: 3.53s	remaining: 5.16s
122:	learn: 13.1167631	total: 3.56s	remaining: 5.12s
123:	learn: 13.0410984	total: 3.59s	remaining: 5.09s
124:	learn: 12.9506234	total: 3.62s	remaining: 5.07s
125:	learn: 12.8890045	total: 3.65s	remaining: 5.05s
126:	learn: 12.8295606	total: 3.68s	remaining: 5.02s
127:	learn: 12.7634290	total: 3.71s	remaining: 4.99s
128:	learn: 12.6891923	total: 3.73s	remaining: 4.95s
129:	learn: 12.6312306	total: 3.76s	remaining: 4.92s
130:	learn: 12.5802486	total: 3.79s	remaining: 4.89s
131:	learn: 12.5246529	total: 3.81s	remaining: 4.86s
132:	learn: 12.4479017	total: 3.84s	remaining: 4.83s
133:	learn: 12.3930818	total: 3.89s	remaining: 4.82s
134:	learn: 12.3373247	total: 3.92s	remaining: 4.79s
135:	learn: 12.3039291	total: 3.94s	remaining: 4.75s
136:	learn: 12.2583784	total: 3.97s	remaining: 4.73s
137:	learn: 12.1902920	total: 4s	remaining: 4.69s
138:	learn: 12.1515651	total: 4.03s	remaining: 4.66s
139:	learn: 12.1008468	total: 4.05s	remaining: 4.63s
140:	learn: 12.0752080	total: 4.08s	remaining: 4.6s
141:	learn: 12.0263787	total: 4.12s	remaining: 4.58s
142:	learn: 11.9709736	total: 4.15s	remaining: 4.55s
143:	learn: 11.9295822	total: 4.18s	remaining: 4.52s
144:	learn: 11.8867911	total: 4.2s	remaining: 4.49s
145:	learn: 11.8179180	total: 4.23s	remaining: 4.46s
146:	learn: 11.7448446	total: 4.26s	remaining: 4.43s
147:	learn: 11.7332909	total: 4.28s	remaining: 4.4s
148:	learn: 11.6907270	total: 4.31s	remaining: 4.37s
149:	learn: 11.6628056	total: 4.36s	remaining: 4.36s
150:	learn: 11.6039432	total: 4.38s	remaining: 4.33s
151:	learn: 11.5752331	total: 4.41s	remaining: 4.29s
152:	learn: 11.5376476	total: 4.44s	remaining: 4.26s
153:	learn: 11.4947632	total: 4.46s	remaining: 4.23s
154:	learn: 11.4484147	total: 4.49s	remaining: 4.2s
155:	learn: 11.3925819	total: 4.52s	remaining: 4.17s
156:	learn: 11.3287384	total: 4.55s	remaining: 4.15s
157:	learn: 11.2566623	total: 4.59s	remaining: 4.12s
158:	learn: 11.2000227	total: 4.62s	remaining: 4.09s
159:	learn: 11.1023408	total: 4.64s	remaining: 4.06s
160:	learn: 11.0489770	total: 4.67s	remaining: 4.03s
161:	learn: 11.0026542	total: 4.7s	remaining: 4s
162:	learn: 10.9309626	total: 4.72s	remaining: 3.97s
163:	learn: 10.8844157	total: 4.75s	remaining: 3.94s
164:	learn: 10.8292008	total: 4.78s	remaining: 3.91s
165:	learn: 10.7365612	total: 4.81s	remaining: 3.89s
166:	learn: 10.6948804	total: 4.85s	remaining: 3.86s
167:	learn: 10.6566665	total: 4.88s	remaining: 3.83s
168:	learn: 10.6219222	total: 4.91s	remaining: 3.8s
169:	learn: 10.5930877	total: 4.93s	remaining: 3.77s
170:	learn: 10.5520362	total: 4.96s	remaining: 3.74s
171:	learn: 10.5160879	total: 4.99s	remaining: 3.71s
172:	learn: 10.4653972	total: 5.02s	remaining: 3.69s
173:	learn: 10.4164242	total: 5.05s	remaining: 3.65s
174:	learn: 10.3821629	total: 5.08s	remaining: 3.63s
175:	learn: 10.3623975	total: 5.11s	remaining: 3.6s
176:	learn: 10.3095845	total: 5.13s	remaining: 3.57s
177:	learn: 10.2501576	total: 5.16s	remaining: 3.54s
178:	learn: 10.2276060	total: 5.18s	remaining: 3.5s
179:	learn: 10.2052696	total: 5.22s	remaining: 3.48s
180:	learn: 10.1685156	total: 5.25s	remaining: 3.45s
181:	learn: 10.1443775	total: 5.28s	remaining: 3.42s
182:	learn: 10.0531518	total: 5.3s	remaining: 3.39s
183:	learn: 10.0052361	total: 5.33s	remaining: 3.36s
184:	learn: 9.9598299	total: 5.36s	remaining: 3.33s
185:	learn: 9.9062881	total: 5.38s	remaining: 3.3s
186:	learn: 9.8476621	total: 5.41s	remaining: 3.27s
187:	learn: 9.7943755	total: 5.44s	remaining: 3.24s
188:	learn: 9.7545158	total: 5.46s	remaining: 3.21s
189:	learn: 9.7325928	total: 5.49s	remaining: 3.18s
190:	learn: 9.6597076	total: 5.51s	remaining: 3.15s
191:	learn: 9.6049808	total: 5.54s	remaining: 3.12s
192:	learn: 9.5210539	total: 5.56s	remaining: 3.08s
193:	learn: 9.4839833	total: 5.59s	remaining: 3.05s
194:	learn: 9.4030810	total: 5.62s	remaining: 3.03s
195:	learn: 9.3610011	total: 5.65s	remaining: 3s
196:	learn: 9.3194779	total: 5.67s	remaining: 2.97s
197:	learn: 9.2866867	total: 5.7s	remaining: 2.94s
198:	learn: 9.2508142	total: 5.73s	remaining: 2.91s
199:	learn: 9.2271576	total: 5.75s	remaining: 2.88s
200:	learn: 9.1740668	total: 5.78s	remaining: 2.85s
201:	learn: 9.1586477	total: 5.8s	remaining: 2.81s
202:	learn: 9.1429015	total: 5.84s	remaining: 2.79s
203:	learn: 9.1133248	total: 5.87s	remaining: 2.76s
204:	learn: 9.0711331	total: 5.89s	remaining: 2.73s
205:	learn: 9.0093562	total: 5.92s	remaining: 2.7s
206:	learn: 8.9859881	total: 5.94s	remaining: 2.67s
207:	learn: 8.9419294	total: 5.97s	remaining: 2.64s
208:	learn: 8.8732493	total: 6s	remaining: 2.61s
209:	learn: 8.8186181	total: 6.02s	remaining: 2.58s
210:	learn: 8.7860222	total: 6.05s	remaining: 2.55s
211:	learn: 8.7597312	total: 6.08s	remaining: 2.52s
212:	learn: 8.7305431	total: 6.11s	remaining: 2.5s
213:	learn: 8.6620534	total: 6.13s	remaining: 2.46s
214:	learn: 8.6317582	total: 6.16s	remaining: 2.44s
215:	learn: 8.6021758	total: 6.19s	remaining: 2.41s
216:	learn: 8.5696515	total: 6.21s	remaining: 2.38s
217:	learn: 8.5267761	total: 6.24s	remaining: 2.35s
218:	learn: 8.5135802	total: 6.28s	remaining: 2.32s
219:	learn: 8.4762506	total: 6.3s	remaining: 2.29s
220:	learn: 8.4462181	total: 6.33s	remaining: 2.26s
221:	learn: 8.4167253	total: 6.35s	remaining: 2.23s
222:	learn: 8.3867332	total: 6.38s	remaining: 2.2s
223:	learn: 8.3527829	total: 6.4s	remaining: 2.17s
224:	learn: 8.3221175	total: 6.43s	remaining: 2.14s
225:	learn: 8.3149566	total: 6.46s	remaining: 2.12s
226:	learn: 8.3023601	total: 6.49s	remaining: 2.09s
227:	learn: 8.2720745	total: 6.52s	remaining: 2.06s
228:	learn: 8.2581250	total: 6.54s	remaining: 2.03s
229:	learn: 8.2207983	total: 6.57s	remaining: 2s
230:	learn: 8.2083228	total: 6.6s	remaining: 1.97s
231:	learn: 8.1774734	total: 6.62s	remaining: 1.94s
232:	learn: 8.1280317	total: 6.65s	remaining: 1.91s
233:	learn: 8.0969454	total: 6.67s	remaining: 1.88s
234:	learn: 8.0653906	total: 6.71s	remaining: 1.85s
235:	learn: 8.0403548	total: 6.74s	remaining: 1.83s
236:	learn: 8.0309296	total: 6.76s	remaining: 1.8s
237:	learn: 7.9802761	total: 6.79s	remaining: 1.77s
238:	learn: 7.9595062	total: 6.81s	remaining: 1.74s
239:	learn: 7.9560132	total: 6.83s	remaining: 1.71s
240:	learn: 7.9188077	total: 6.86s	remaining: 1.68s
241:	learn: 7.9129376	total: 6.89s	remaining: 1.65s
242:	learn: 7.8845382	total: 6.91s	remaining: 1.62s
243:	learn: 7.8699627	total: 6.95s	remaining: 1.59s
244:	learn: 7.8332493	total: 6.97s	remaining: 1.56s
245:	learn: 7.7807468	total: 7s	remaining: 1.54s
246:	learn: 7.7739426	total: 7.02s	remaining: 1.51s
247:	learn: 7.7384141	total: 7.05s	remaining: 1.48s
248:	learn: 7.7066380	total: 7.08s	remaining: 1.45s
249:	learn: 7.7001271	total: 7.1s	remaining: 1.42s
250:	learn: 7.6846399	total: 7.13s	remaining: 1.39s
251:	learn: 7.6791814	total: 7.16s	remaining: 1.36s
252:	learn: 7.6451688	total: 7.18s	remaining: 1.33s
253:	learn: 7.6117158	total: 7.21s	remaining: 1.3s
254:	learn: 7.6012012	total: 7.23s	remaining: 1.28s
255:	learn: 7.5729959	total: 7.26s	remaining: 1.25s
256:	learn: 7.5370997	total: 7.28s	remaining: 1.22s
257:	learn: 7.5099776	total: 7.3s	remaining: 1.19s
258:	learn: 7.4860975	total: 7.33s	remaining: 1.16s
259:	learn: 7.4566817	total: 7.37s	remaining: 1.13s
260:	learn: 7.4269980	total: 7.39s	remaining: 1.1s
261:	learn: 7.3923465	total: 7.42s	remaining: 1.08s
262:	learn: 7.3675376	total: 7.45s	remaining: 1.05s
263:	learn: 7.3392461	total: 7.47s	remaining: 1.02s
264:	learn: 7.3102490	total: 7.49s	remaining: 990ms
265:	learn: 7.3010635	total: 7.52s	remaining: 961ms
266:	learn: 7.2733113	total: 7.54s	remaining: 932ms
267:	learn: 7.2683610	total: 7.57s	remaining: 904ms
268:	learn: 7.2532714	total: 7.6s	remaining: 876ms
269:	learn: 7.2444185	total: 7.62s	remaining: 847ms
270:	learn: 7.2300953	total: 7.64s	remaining: 818ms
271:	learn: 7.2077357	total: 7.67s	remaining: 789ms
272:	learn: 7.1843423	total: 7.69s	remaining: 761ms
273:	learn: 7.1754867	total: 7.72s	remaining: 732ms
274:	learn: 7.1395344	total: 7.74s	remaining: 704ms
275:	learn: 7.1342567	total: 7.78s	remaining: 676ms
276:	learn: 7.1116057	total: 7.8s	remaining: 648ms
277:	learn: 7.0822569	total: 7.83s	remaining: 619ms
278:	learn: 7.0731958	total: 7.85s	remaining: 591ms
279:	learn: 7.0576479	total: 7.88s	remaining: 563ms
280:	learn: 7.0354817	total: 7.9s	remaining: 534ms
281:	learn: 7.0277403	total: 7.92s	remaining: 506ms
282:	learn: 7.0028621	total: 7.95s	remaining: 478ms
283:	learn: 6.9820607	total: 7.97s	remaining: 449ms
284:	learn: 6.9645494	total: 8s	remaining: 421ms
285:	learn: 6.9563224	total: 8.03s	remaining: 393ms
286:	learn: 6.9482036	total: 8.05s	remaining: 365ms
287:	learn: 6.9116066	total: 8.08s	remaining: 337ms
288:	learn: 6.8884274	total: 8.1s	remaining: 308ms
289:	learn: 6.8632506	total: 8.13s	remaining: 280ms
290:	learn: 6.8447357	total: 8.15s	remaining: 252ms
291:	learn: 6.8242972	total: 8.17s	remaining: 224ms
292:	learn: 6.8012643	total: 8.2s	remaining: 196ms
293:	learn: 6.7800583	total: 8.23s	remaining: 168ms
294:	learn: 6.7687042	total: 8.26s	remaining: 140ms
295:	learn: 6.7454529	total: 8.28s	remaining: 112ms
296:	learn: 6.7227229	total: 8.31s	remaining: 83.9ms
297:	learn: 6.7004834	total: 8.33s	remaining: 55.9ms
298:	learn: 6.6931313	total: 8.36s	remaining: 28ms
299:	learn: 6.6604653	total: 8.38s	remaining: 0us
0:	learn: 46.4449485	total: 23.2ms	remaining: 6.94s
1:	learn: 45.6641003	total: 47.5ms	remaining: 7.07s
2:	learn: 44.9322182	total: 71.5ms	remaining: 7.08s
3:	learn: 44.1111890	total: 94.2ms	remaining: 6.97s
4:	learn: 43.2956452	total: 118ms	remaining: 6.96s
5:	learn: 42.6298126	total: 142ms	remaining: 6.95s
6:	learn: 42.0896057	total: 167ms	remaining: 6.99s
7:	learn: 41.2698632	total: 200ms	remaining: 7.31s
8:	learn: 40.4846232	total: 228ms	remaining: 7.38s
9:	learn: 39.7069009	total: 252ms	remaining: 7.31s
10:	learn: 38.9656593	total: 255ms	remaining: 6.7s
11:	learn: 38.5069229	total: 280ms	remaining: 6.71s
12:	learn: 37.8073380	total: 304ms	remaining: 6.72s
13:	learn: 37.3882967	total: 329ms	remaining: 6.71s
14:	learn: 36.8180964	total: 353ms	remaining: 6.71s
15:	learn: 36.2948556	total: 380ms	remaining: 6.74s
16:	learn: 35.6877194	total: 408ms	remaining: 6.79s
17:	learn: 35.3344416	total: 440ms	remaining: 6.9s
18:	learn: 34.8793907	total: 467ms	remaining: 6.91s
19:	learn: 34.3129264	total: 493ms	remaining: 6.91s
20:	learn: 34.0804390	total: 519ms	remaining: 6.9s
21:	learn: 33.4413882	total: 545ms	remaining: 6.89s
22:	learn: 32.9936060	total: 572ms	remaining: 6.89s
23:	learn: 32.6458868	total: 609ms	remaining: 7.01s
24:	learn: 32.3273431	total: 646ms	remaining: 7.11s
25:	learn: 31.8309940	total: 674ms	remaining: 7.1s
26:	learn: 31.4310003	total: 702ms	remaining: 7.09s
27:	learn: 31.1804602	total: 730ms	remaining: 7.09s
28:	learn: 30.8535447	total: 757ms	remaining: 7.08s
29:	learn: 30.4063180	total: 784ms	remaining: 7.06s
30:	learn: 30.1876699	total: 812ms	remaining: 7.04s
31:	learn: 29.8778033	total: 853ms	remaining: 7.14s
32:	learn: 29.6371470	total: 882ms	remaining: 7.13s
33:	learn: 29.3801255	total: 910ms	remaining: 7.12s
34:	learn: 29.1426244	total: 937ms	remaining: 7.1s
35:	learn: 28.9166951	total: 965ms	remaining: 7.08s
36:	learn: 28.6597815	total: 991ms	remaining: 7.05s
37:	learn: 28.3844706	total: 1.02s	remaining: 7.02s
38:	learn: 28.0894923	total: 1.05s	remaining: 7s
39:	learn: 27.7571740	total: 1.09s	remaining: 7.09s
40:	learn: 27.4609127	total: 1.12s	remaining: 7.07s
41:	learn: 27.1948352	total: 1.14s	remaining: 7.03s
42:	learn: 26.9507594	total: 1.17s	remaining: 7s
43:	learn: 26.6347229	total: 1.2s	remaining: 6.96s
44:	learn: 26.3479735	total: 1.22s	remaining: 6.92s
45:	learn: 26.1335817	total: 1.25s	remaining: 6.88s
46:	learn: 25.8868210	total: 1.27s	remaining: 6.85s
47:	learn: 25.6881647	total: 1.3s	remaining: 6.85s
48:	learn: 25.4764814	total: 1.33s	remaining: 6.82s
49:	learn: 25.2279851	total: 1.36s	remaining: 6.78s
50:	learn: 24.9914875	total: 1.38s	remaining: 6.74s
51:	learn: 24.7951252	total: 1.41s	remaining: 6.71s
52:	learn: 24.6181712	total: 1.43s	remaining: 6.67s
53:	learn: 24.3711141	total: 1.46s	remaining: 6.63s
54:	learn: 24.1983381	total: 1.48s	remaining: 6.59s
55:	learn: 24.0518193	total: 1.5s	remaining: 6.56s
56:	learn: 23.8035754	total: 1.54s	remaining: 6.56s
57:	learn: 23.5891443	total: 1.56s	remaining: 6.53s
58:	learn: 23.3650788	total: 1.59s	remaining: 6.5s
59:	learn: 23.1423622	total: 1.62s	remaining: 6.46s
60:	learn: 22.9562061	total: 1.64s	remaining: 6.43s
61:	learn: 22.7841608	total: 1.67s	remaining: 6.4s
62:	learn: 22.5259611	total: 1.69s	remaining: 6.37s
63:	learn: 22.3959565	total: 1.72s	remaining: 6.33s
64:	learn: 22.2695041	total: 1.75s	remaining: 6.32s
65:	learn: 22.0116444	total: 1.78s	remaining: 6.3s
66:	learn: 21.8636416	total: 1.8s	remaining: 6.27s
67:	learn: 21.7170816	total: 1.83s	remaining: 6.23s
68:	learn: 21.6130887	total: 1.85s	remaining: 6.2s
69:	learn: 21.4107735	total: 1.88s	remaining: 6.17s
70:	learn: 21.2682184	total: 1.9s	remaining: 6.14s
71:	learn: 21.0421124	total: 1.93s	remaining: 6.11s
72:	learn: 20.8829831	total: 1.96s	remaining: 6.09s
73:	learn: 20.7916905	total: 1.99s	remaining: 6.07s
74:	learn: 20.6572110	total: 2.02s	remaining: 6.04s
75:	learn: 20.4683201	total: 2.04s	remaining: 6.01s
76:	learn: 20.3387806	total: 2.07s	remaining: 5.98s
77:	learn: 20.2301442	total: 2.09s	remaining: 5.96s
78:	learn: 20.1399739	total: 2.12s	remaining: 5.92s
79:	learn: 20.0395988	total: 2.14s	remaining: 5.9s
80:	learn: 19.9529190	total: 2.17s	remaining: 5.87s
81:	learn: 19.8285498	total: 2.2s	remaining: 5.85s
82:	learn: 19.6862504	total: 2.23s	remaining: 5.82s
83:	learn: 19.5764172	total: 2.25s	remaining: 5.79s
84:	learn: 19.4499650	total: 2.27s	remaining: 5.76s
85:	learn: 19.3449362	total: 2.3s	remaining: 5.72s
86:	learn: 19.1854254	total: 2.32s	remaining: 5.69s
87:	learn: 19.0850074	total: 2.35s	remaining: 5.66s
88:	learn: 18.9724934	total: 2.38s	remaining: 5.63s
89:	learn: 18.8778956	total: 2.41s	remaining: 5.62s
90:	learn: 18.7370373	total: 2.44s	remaining: 5.6s
91:	learn: 18.6192464	total: 2.46s	remaining: 5.57s
92:	learn: 18.5100314	total: 2.49s	remaining: 5.54s
93:	learn: 18.4275820	total: 2.51s	remaining: 5.51s
94:	learn: 18.3242001	total: 2.54s	remaining: 5.48s
95:	learn: 18.2110620	total: 2.56s	remaining: 5.45s
96:	learn: 18.0955256	total: 2.59s	remaining: 5.42s
97:	learn: 17.9941571	total: 2.62s	remaining: 5.4s
98:	learn: 17.8973235	total: 2.65s	remaining: 5.38s
99:	learn: 17.8100972	total: 2.67s	remaining: 5.35s
100:	learn: 17.7386244	total: 2.7s	remaining: 5.31s
101:	learn: 17.6310903	total: 2.72s	remaining: 5.28s
102:	learn: 17.5516996	total: 2.75s	remaining: 5.25s
103:	learn: 17.4617467	total: 2.77s	remaining: 5.22s
104:	learn: 17.3666766	total: 2.8s	remaining: 5.2s
105:	learn: 17.2221165	total: 2.83s	remaining: 5.18s
106:	learn: 17.0790059	total: 2.86s	remaining: 5.15s
107:	learn: 16.9698310	total: 2.88s	remaining: 5.12s
108:	learn: 16.8969362	total: 2.91s	remaining: 5.1s
109:	learn: 16.7819942	total: 2.93s	remaining: 5.07s
110:	learn: 16.6911902	total: 2.96s	remaining: 5.04s
111:	learn: 16.5519175	total: 2.98s	remaining: 5.01s
112:	learn: 16.3906885	total: 3.01s	remaining: 4.98s
113:	learn: 16.3090927	total: 3.04s	remaining: 4.96s
114:	learn: 16.2205215	total: 3.07s	remaining: 4.94s
115:	learn: 16.1233780	total: 3.09s	remaining: 4.91s
116:	learn: 16.0321663	total: 3.12s	remaining: 4.88s
117:	learn: 15.9579011	total: 3.14s	remaining: 4.85s
118:	learn: 15.8593485	total: 3.17s	remaining: 4.82s
119:	learn: 15.7788251	total: 3.19s	remaining: 4.79s
120:	learn: 15.7287407	total: 3.22s	remaining: 4.76s
121:	learn: 15.5788208	total: 3.24s	remaining: 4.73s
122:	learn: 15.5086549	total: 3.28s	remaining: 4.72s
123:	learn: 15.4364731	total: 3.3s	remaining: 4.69s
124:	learn: 15.3549185	total: 3.33s	remaining: 4.66s
125:	learn: 15.2967084	total: 3.35s	remaining: 4.63s
126:	learn: 15.1872607	total: 3.38s	remaining: 4.6s
127:	learn: 15.0932023	total: 3.4s	remaining: 4.57s
128:	learn: 15.0097364	total: 3.42s	remaining: 4.54s
129:	learn: 14.9463156	total: 3.45s	remaining: 4.51s
130:	learn: 14.8900172	total: 3.48s	remaining: 4.49s
131:	learn: 14.8358826	total: 3.5s	remaining: 4.46s
132:	learn: 14.7553997	total: 3.53s	remaining: 4.43s
133:	learn: 14.6821554	total: 3.55s	remaining: 4.4s
134:	learn: 14.5304879	total: 3.58s	remaining: 4.37s
135:	learn: 14.4324442	total: 3.6s	remaining: 4.34s
136:	learn: 14.3331494	total: 3.63s	remaining: 4.31s
137:	learn: 14.2753055	total: 3.65s	remaining: 4.28s
138:	learn: 14.1937968	total: 3.68s	remaining: 4.27s
139:	learn: 14.1149360	total: 3.71s	remaining: 4.24s
140:	learn: 14.0475961	total: 3.73s	remaining: 4.21s
141:	learn: 13.9679410	total: 3.76s	remaining: 4.18s
142:	learn: 13.8728976	total: 3.78s	remaining: 4.15s
143:	learn: 13.8088340	total: 3.81s	remaining: 4.12s
144:	learn: 13.7225802	total: 3.83s	remaining: 4.09s
145:	learn: 13.6027859	total: 3.85s	remaining: 4.07s
146:	learn: 13.5360562	total: 3.89s	remaining: 4.04s
147:	learn: 13.4527264	total: 3.91s	remaining: 4.02s
148:	learn: 13.3905685	total: 3.94s	remaining: 3.99s
149:	learn: 13.3231120	total: 3.96s	remaining: 3.96s
150:	learn: 13.2748277	total: 3.98s	remaining: 3.93s
151:	learn: 13.2011042	total: 4.01s	remaining: 3.9s
152:	learn: 13.1113158	total: 4.03s	remaining: 3.87s
153:	learn: 13.0630373	total: 4.06s	remaining: 3.85s
154:	learn: 12.9877054	total: 4.08s	remaining: 3.82s
155:	learn: 12.8975618	total: 4.11s	remaining: 3.79s
156:	learn: 12.8226873	total: 4.14s	remaining: 3.77s
157:	learn: 12.7653176	total: 4.17s	remaining: 3.75s
158:	learn: 12.7032259	total: 4.19s	remaining: 3.72s
159:	learn: 12.6413414	total: 4.22s	remaining: 3.69s
160:	learn: 12.5418162	total: 4.24s	remaining: 3.66s
161:	learn: 12.4761943	total: 4.27s	remaining: 3.63s
162:	learn: 12.4099277	total: 4.29s	remaining: 3.61s
163:	learn: 12.3393405	total: 4.32s	remaining: 3.58s
164:	learn: 12.2429002	total: 4.34s	remaining: 3.56s
165:	learn: 12.1931336	total: 4.37s	remaining: 3.53s
166:	learn: 12.0509054	total: 4.39s	remaining: 3.5s
167:	learn: 11.9940166	total: 4.42s	remaining: 3.47s
168:	learn: 11.9267615	total: 4.44s	remaining: 3.44s
169:	learn: 11.8595898	total: 4.47s	remaining: 3.42s
170:	learn: 11.7291128	total: 4.49s	remaining: 3.39s
171:	learn: 11.6574232	total: 4.51s	remaining: 3.36s
172:	learn: 11.5771876	total: 4.55s	remaining: 3.34s
173:	learn: 11.4934307	total: 4.58s	remaining: 3.31s
174:	learn: 11.4454134	total: 4.6s	remaining: 3.29s
175:	learn: 11.3829392	total: 4.62s	remaining: 3.26s
176:	learn: 11.2971903	total: 4.65s	remaining: 3.23s
177:	learn: 11.2515029	total: 4.67s	remaining: 3.2s
178:	learn: 11.2046889	total: 4.7s	remaining: 3.17s
179:	learn: 11.1528497	total: 4.72s	remaining: 3.15s
180:	learn: 11.0691294	total: 4.75s	remaining: 3.12s
181:	learn: 11.0191173	total: 4.78s	remaining: 3.1s
182:	learn: 10.9046058	total: 4.81s	remaining: 3.07s
183:	learn: 10.8625890	total: 4.83s	remaining: 3.05s
184:	learn: 10.7913928	total: 4.86s	remaining: 3.02s
185:	learn: 10.7366315	total: 4.89s	remaining: 3s
186:	learn: 10.6583458	total: 4.91s	remaining: 2.97s
187:	learn: 10.5955649	total: 4.94s	remaining: 2.94s
188:	learn: 10.5456969	total: 4.98s	remaining: 2.92s
189:	learn: 10.4582108	total: 5.01s	remaining: 2.9s
190:	learn: 10.4226930	total: 5.04s	remaining: 2.88s
191:	learn: 10.3469793	total: 5.07s	remaining: 2.85s
192:	learn: 10.2680286	total: 5.1s	remaining: 2.83s
193:	learn: 10.2210599	total: 5.12s	remaining: 2.8s
194:	learn: 10.1575919	total: 5.15s	remaining: 2.77s
195:	learn: 10.0996054	total: 5.18s	remaining: 2.75s
196:	learn: 10.0503671	total: 5.21s	remaining: 2.73s
197:	learn: 9.9976825	total: 5.24s	remaining: 2.7s
198:	learn: 9.9452535	total: 5.28s	remaining: 2.68s
199:	learn: 9.8825415	total: 5.3s	remaining: 2.65s
200:	learn: 9.8064134	total: 5.33s	remaining: 2.62s
201:	learn: 9.7572174	total: 5.35s	remaining: 2.6s
202:	learn: 9.6993413	total: 5.39s	remaining: 2.57s
203:	learn: 9.6645937	total: 5.42s	remaining: 2.55s
204:	learn: 9.6261766	total: 5.45s	remaining: 2.52s
205:	learn: 9.5819475	total: 5.47s	remaining: 2.5s
206:	learn: 9.5366280	total: 5.51s	remaining: 2.47s
207:	learn: 9.4813538	total: 5.54s	remaining: 2.45s
208:	learn: 9.4246671	total: 5.56s	remaining: 2.42s
209:	learn: 9.3787991	total: 5.59s	remaining: 2.4s
210:	learn: 9.3261932	total: 5.63s	remaining: 2.37s
211:	learn: 9.2979373	total: 5.65s	remaining: 2.35s
212:	learn: 9.2466040	total: 5.68s	remaining: 2.32s
213:	learn: 9.1990809	total: 5.71s	remaining: 2.29s
214:	learn: 9.1630306	total: 5.74s	remaining: 2.27s
215:	learn: 9.1266975	total: 5.77s	remaining: 2.24s
216:	learn: 9.0846374	total: 5.79s	remaining: 2.22s
217:	learn: 9.0341002	total: 5.82s	remaining: 2.19s
218:	learn: 8.9874070	total: 5.86s	remaining: 2.17s
219:	learn: 8.9478524	total: 5.89s	remaining: 2.14s
220:	learn: 8.8970642	total: 5.92s	remaining: 2.12s
221:	learn: 8.8605945	total: 5.95s	remaining: 2.09s
222:	learn: 8.8261863	total: 5.98s	remaining: 2.06s
223:	learn: 8.7821922	total: 6.01s	remaining: 2.04s
224:	learn: 8.7517706	total: 6.04s	remaining: 2.01s
225:	learn: 8.7149517	total: 6.07s	remaining: 1.99s
226:	learn: 8.6766707	total: 6.1s	remaining: 1.96s
227:	learn: 8.6372492	total: 6.13s	remaining: 1.93s
228:	learn: 8.6002129	total: 6.15s	remaining: 1.91s
229:	learn: 8.5595754	total: 6.18s	remaining: 1.88s
230:	learn: 8.5342774	total: 6.21s	remaining: 1.85s
231:	learn: 8.4991734	total: 6.24s	remaining: 1.83s
232:	learn: 8.4735361	total: 6.28s	remaining: 1.81s
233:	learn: 8.4328577	total: 6.31s	remaining: 1.78s
234:	learn: 8.3929232	total: 6.34s	remaining: 1.75s
235:	learn: 8.3611534	total: 6.37s	remaining: 1.73s
236:	learn: 8.3469261	total: 6.39s	remaining: 1.7s
237:	learn: 8.3082592	total: 6.42s	remaining: 1.67s
238:	learn: 8.2724422	total: 6.45s	remaining: 1.65s
239:	learn: 8.2378713	total: 6.49s	remaining: 1.62s
240:	learn: 8.2054002	total: 6.51s	remaining: 1.59s
241:	learn: 8.1726213	total: 6.54s	remaining: 1.57s
242:	learn: 8.1385919	total: 6.57s	remaining: 1.54s
243:	learn: 8.1113159	total: 6.59s	remaining: 1.51s
244:	learn: 8.0740264	total: 6.62s	remaining: 1.49s
245:	learn: 8.0399614	total: 6.65s	remaining: 1.46s
246:	learn: 8.0179358	total: 6.68s	remaining: 1.43s
247:	learn: 7.9896565	total: 6.72s	remaining: 1.41s
248:	learn: 7.9644186	total: 6.75s	remaining: 1.38s
249:	learn: 7.9305923	total: 6.78s	remaining: 1.35s
250:	learn: 7.9007851	total: 6.8s	remaining: 1.33s
251:	learn: 7.8740137	total: 6.83s	remaining: 1.3s
252:	learn: 7.8448288	total: 6.86s	remaining: 1.27s
253:	learn: 7.8020074	total: 6.88s	remaining: 1.25s
254:	learn: 7.7748874	total: 6.91s	remaining: 1.22s
255:	learn: 7.7553198	total: 6.96s	remaining: 1.2s
256:	learn: 7.7327191	total: 6.98s	remaining: 1.17s
257:	learn: 7.7021253	total: 7.01s	remaining: 1.14s
258:	learn: 7.6760024	total: 7.04s	remaining: 1.11s
259:	learn: 7.6569353	total: 7.06s	remaining: 1.09s
260:	learn: 7.6304716	total: 7.09s	remaining: 1.06s
261:	learn: 7.6011855	total: 7.11s	remaining: 1.03s
262:	learn: 7.5732109	total: 7.14s	remaining: 1s
263:	learn: 7.5502359	total: 7.18s	remaining: 979ms
264:	learn: 7.5240021	total: 7.22s	remaining: 953ms
265:	learn: 7.4977154	total: 7.25s	remaining: 926ms
266:	learn: 7.4679226	total: 7.27s	remaining: 899ms
267:	learn: 7.4445035	total: 7.3s	remaining: 872ms
268:	learn: 7.4246251	total: 7.33s	remaining: 844ms
269:	learn: 7.4029554	total: 7.35s	remaining: 817ms
270:	learn: 7.3712662	total: 7.38s	remaining: 790ms
271:	learn: 7.3355870	total: 7.41s	remaining: 763ms
272:	learn: 7.3198771	total: 7.45s	remaining: 737ms
273:	learn: 7.3050151	total: 7.47s	remaining: 709ms
274:	learn: 7.2910043	total: 7.5s	remaining: 682ms
275:	learn: 7.2783385	total: 7.53s	remaining: 655ms
276:	learn: 7.2559473	total: 7.56s	remaining: 628ms
277:	learn: 7.2185655	total: 7.6s	remaining: 601ms
278:	learn: 7.1965563	total: 7.63s	remaining: 574ms
279:	learn: 7.1773705	total: 7.65s	remaining: 547ms
280:	learn: 7.1541341	total: 7.69s	remaining: 520ms
281:	learn: 7.1355109	total: 7.72s	remaining: 493ms
282:	learn: 7.1129308	total: 7.75s	remaining: 465ms
283:	learn: 7.0886063	total: 7.77s	remaining: 438ms
284:	learn: 7.0673363	total: 7.8s	remaining: 410ms
285:	learn: 7.0518651	total: 7.83s	remaining: 383ms
286:	learn: 7.0312280	total: 7.87s	remaining: 356ms
287:	learn: 7.0065712	total: 7.89s	remaining: 329ms
288:	learn: 6.9851465	total: 7.93s	remaining: 302ms
289:	learn: 6.9652208	total: 7.95s	remaining: 274ms
290:	learn: 6.9480340	total: 7.98s	remaining: 247ms
291:	learn: 6.9293725	total: 8.01s	remaining: 219ms
292:	learn: 6.8953713	total: 8.05s	remaining: 192ms
293:	learn: 6.8800761	total: 8.08s	remaining: 165ms
294:	learn: 6.8674172	total: 8.11s	remaining: 137ms
295:	learn: 6.8461255	total: 8.14s	remaining: 110ms
296:	learn: 6.8284246	total: 8.17s	remaining: 82.5ms
297:	learn: 6.8028742	total: 8.2s	remaining: 55ms
298:	learn: 6.7865169	total: 8.23s	remaining: 27.5ms
299:	learn: 6.7677918	total: 8.27s	remaining: 0us
0:	learn: 46.0177610	total: 26.8ms	remaining: 8.02s
1:	learn: 45.2171004	total: 53.6ms	remaining: 7.99s
2:	learn: 44.5194217	total: 80.2ms	remaining: 7.94s
3:	learn: 43.6812696	total: 108ms	remaining: 8.03s
4:	learn: 42.8831305	total: 145ms	remaining: 8.56s
5:	learn: 42.1262412	total: 184ms	remaining: 9.01s
6:	learn: 41.6465602	total: 211ms	remaining: 8.83s
7:	learn: 41.2399751	total: 238ms	remaining: 8.7s
8:	learn: 40.7217059	total: 266ms	remaining: 8.61s
9:	learn: 40.1802193	total: 293ms	remaining: 8.51s
10:	learn: 39.7286629	total: 321ms	remaining: 8.42s
11:	learn: 39.1775230	total: 350ms	remaining: 8.39s
12:	learn: 38.7477788	total: 382ms	remaining: 8.43s
13:	learn: 38.2296808	total: 417ms	remaining: 8.51s
14:	learn: 37.7069865	total: 443ms	remaining: 8.42s
15:	learn: 37.1535735	total: 471ms	remaining: 8.35s
16:	learn: 36.7900064	total: 498ms	remaining: 8.29s
17:	learn: 36.4049038	total: 525ms	remaining: 8.23s
18:	learn: 35.9640324	total: 554ms	remaining: 8.19s
19:	learn: 35.5778526	total: 589ms	remaining: 8.24s
20:	learn: 35.2480134	total: 617ms	remaining: 8.2s
21:	learn: 34.8576668	total: 654ms	remaining: 8.26s
22:	learn: 34.3332571	total: 682ms	remaining: 8.21s
23:	learn: 34.0285781	total: 709ms	remaining: 8.15s
24:	learn: 33.6137780	total: 735ms	remaining: 8.08s
25:	learn: 33.1018374	total: 762ms	remaining: 8.03s
26:	learn: 32.7865924	total: 791ms	remaining: 8s
27:	learn: 32.5376779	total: 823ms	remaining: 7.99s
28:	learn: 32.0718213	total: 850ms	remaining: 7.94s
29:	learn: 31.7440177	total: 876ms	remaining: 7.88s
30:	learn: 31.4767615	total: 910ms	remaining: 7.9s
31:	learn: 31.0939292	total: 938ms	remaining: 7.86s
32:	learn: 30.7679414	total: 965ms	remaining: 7.81s
33:	learn: 30.3318976	total: 992ms	remaining: 7.76s
34:	learn: 30.0098409	total: 1.03s	remaining: 7.79s
35:	learn: 29.7328439	total: 1.06s	remaining: 7.75s
36:	learn: 29.3793676	total: 1.08s	remaining: 7.71s
37:	learn: 29.1027021	total: 1.11s	remaining: 7.66s
38:	learn: 28.7995895	total: 1.15s	remaining: 7.67s
39:	learn: 28.5217760	total: 1.17s	remaining: 7.62s
40:	learn: 28.1682840	total: 1.2s	remaining: 7.58s
41:	learn: 27.7960176	total: 1.23s	remaining: 7.58s
42:	learn: 27.5479541	total: 1.26s	remaining: 7.56s
43:	learn: 27.1865306	total: 1.29s	remaining: 7.51s
44:	learn: 26.9937460	total: 1.32s	remaining: 7.47s
45:	learn: 26.8442463	total: 1.34s	remaining: 7.42s
46:	learn: 26.4960149	total: 1.37s	remaining: 7.38s
47:	learn: 26.3705169	total: 1.41s	remaining: 7.38s
48:	learn: 26.1706608	total: 1.43s	remaining: 7.33s
49:	learn: 25.9554127	total: 1.46s	remaining: 7.29s
50:	learn: 25.7460625	total: 1.5s	remaining: 7.33s
51:	learn: 25.5382801	total: 1.53s	remaining: 7.3s
52:	learn: 25.3702316	total: 1.56s	remaining: 7.26s
53:	learn: 25.1895507	total: 1.59s	remaining: 7.23s
54:	learn: 24.9547189	total: 1.61s	remaining: 7.19s
55:	learn: 24.7774266	total: 1.65s	remaining: 7.18s
56:	learn: 24.5983576	total: 1.68s	remaining: 7.14s
57:	learn: 24.4350851	total: 1.71s	remaining: 7.14s
58:	learn: 24.1821816	total: 1.74s	remaining: 7.1s
59:	learn: 24.0194176	total: 1.76s	remaining: 7.05s
60:	learn: 23.8268698	total: 1.79s	remaining: 7.01s
61:	learn: 23.6797713	total: 1.82s	remaining: 6.97s
62:	learn: 23.5016295	total: 1.84s	remaining: 6.93s
63:	learn: 23.3337406	total: 1.88s	remaining: 6.92s
64:	learn: 23.1777686	total: 1.9s	remaining: 6.89s
65:	learn: 22.9885995	total: 1.94s	remaining: 6.89s
66:	learn: 22.8371180	total: 1.97s	remaining: 6.86s
67:	learn: 22.6795513	total: 2s	remaining: 6.82s
68:	learn: 22.5161365	total: 2.03s	remaining: 6.79s
69:	learn: 22.3361211	total: 2.06s	remaining: 6.76s
70:	learn: 22.1434717	total: 2.08s	remaining: 6.72s
71:	learn: 21.9717466	total: 2.11s	remaining: 6.68s
72:	learn: 21.7799255	total: 2.15s	remaining: 6.67s
73:	learn: 21.5806287	total: 2.18s	remaining: 6.65s
74:	learn: 21.4515659	total: 2.2s	remaining: 6.61s
75:	learn: 21.3438173	total: 2.23s	remaining: 6.58s
76:	learn: 21.2141855	total: 2.26s	remaining: 6.54s
77:	learn: 20.9791139	total: 2.28s	remaining: 6.5s
78:	learn: 20.8731109	total: 2.31s	remaining: 6.46s
79:	learn: 20.7356152	total: 2.34s	remaining: 6.43s
80:	learn: 20.6794518	total: 2.37s	remaining: 6.42s
81:	learn: 20.5703504	total: 2.41s	remaining: 6.41s
82:	learn: 20.4542622	total: 2.44s	remaining: 6.37s
83:	learn: 20.3436005	total: 2.46s	remaining: 6.34s
84:	learn: 20.2213634	total: 2.49s	remaining: 6.31s
85:	learn: 20.0231006	total: 2.52s	remaining: 6.27s
86:	learn: 19.9066413	total: 2.55s	remaining: 6.24s
87:	learn: 19.8018072	total: 2.58s	remaining: 6.2s
88:	learn: 19.7018716	total: 2.61s	remaining: 6.2s
89:	learn: 19.5924764	total: 2.64s	remaining: 6.17s
90:	learn: 19.4563722	total: 2.67s	remaining: 6.13s
91:	learn: 19.3246547	total: 2.7s	remaining: 6.1s
92:	learn: 19.2157682	total: 2.72s	remaining: 6.06s
93:	learn: 19.1488443	total: 2.75s	remaining: 6.03s
94:	learn: 19.0557445	total: 2.78s	remaining: 5.99s
95:	learn: 18.9599358	total: 2.8s	remaining: 5.96s
96:	learn: 18.8626100	total: 2.83s	remaining: 5.92s
97:	learn: 18.7583061	total: 2.87s	remaining: 5.92s
98:	learn: 18.6544146	total: 2.9s	remaining: 5.89s
99:	learn: 18.5451742	total: 2.93s	remaining: 5.86s
100:	learn: 18.4189953	total: 2.96s	remaining: 5.82s
101:	learn: 18.3438186	total: 2.98s	remaining: 5.79s
102:	learn: 18.3162367	total: 3.01s	remaining: 5.76s
103:	learn: 18.2040313	total: 3.04s	remaining: 5.72s
104:	learn: 18.0312740	total: 3.07s	remaining: 5.7s
105:	learn: 17.9372951	total: 3.11s	remaining: 5.69s
106:	learn: 17.8724695	total: 3.13s	remaining: 5.65s
107:	learn: 17.7720982	total: 3.16s	remaining: 5.62s
108:	learn: 17.6847197	total: 3.19s	remaining: 5.58s
109:	learn: 17.5739155	total: 3.21s	remaining: 5.55s
110:	learn: 17.5071512	total: 3.24s	remaining: 5.52s
111:	learn: 17.4284339	total: 3.27s	remaining: 5.49s
112:	learn: 17.3333136	total: 3.3s	remaining: 5.46s
113:	learn: 17.2854017	total: 3.34s	remaining: 5.45s
114:	learn: 17.2580292	total: 3.37s	remaining: 5.41s
115:	learn: 17.1942005	total: 3.39s	remaining: 5.38s
116:	learn: 17.1180771	total: 3.42s	remaining: 5.35s
117:	learn: 17.0881080	total: 3.45s	remaining: 5.32s
118:	learn: 16.9946379	total: 3.48s	remaining: 5.29s
119:	learn: 16.9347009	total: 3.51s	remaining: 5.27s
120:	learn: 16.8550523	total: 3.54s	remaining: 5.23s
121:	learn: 16.8167084	total: 3.56s	remaining: 5.2s
122:	learn: 16.7431121	total: 3.6s	remaining: 5.18s
123:	learn: 16.6790079	total: 3.63s	remaining: 5.14s
124:	learn: 16.6544185	total: 3.65s	remaining: 5.11s
125:	learn: 16.5758961	total: 3.68s	remaining: 5.08s
126:	learn: 16.4736355	total: 3.72s	remaining: 5.06s
127:	learn: 16.3424410	total: 3.74s	remaining: 5.03s
128:	learn: 16.2679660	total: 3.77s	remaining: 5s
129:	learn: 16.2258039	total: 3.8s	remaining: 4.97s
130:	learn: 16.1516799	total: 3.83s	remaining: 4.95s
131:	learn: 16.1254438	total: 3.86s	remaining: 4.91s
132:	learn: 16.0304106	total: 3.89s	remaining: 4.88s
133:	learn: 15.9690721	total: 3.92s	remaining: 4.86s
134:	learn: 15.8475301	total: 3.95s	remaining: 4.83s
135:	learn: 15.7923044	total: 3.98s	remaining: 4.79s
136:	learn: 15.7122364	total: 4s	remaining: 4.76s
137:	learn: 15.6328785	total: 4.03s	remaining: 4.73s
138:	learn: 15.5626000	total: 4.07s	remaining: 4.71s
139:	learn: 15.4322531	total: 4.09s	remaining: 4.68s
140:	learn: 15.3057121	total: 4.12s	remaining: 4.65s
141:	learn: 15.2355698	total: 4.16s	remaining: 4.63s
142:	learn: 15.1858129	total: 4.19s	remaining: 4.6s
143:	learn: 15.1459442	total: 4.21s	remaining: 4.56s
144:	learn: 15.1011230	total: 4.24s	remaining: 4.53s
145:	learn: 15.0379234	total: 4.27s	remaining: 4.5s
146:	learn: 14.9606955	total: 4.29s	remaining: 4.47s
147:	learn: 14.8537869	total: 4.33s	remaining: 4.45s
148:	learn: 14.7978827	total: 4.36s	remaining: 4.41s
149:	learn: 14.7340183	total: 4.39s	remaining: 4.39s
150:	learn: 14.6973812	total: 4.42s	remaining: 4.36s
151:	learn: 14.6682787	total: 4.44s	remaining: 4.33s
152:	learn: 14.5210539	total: 4.47s	remaining: 4.29s
153:	learn: 14.4733148	total: 4.5s	remaining: 4.26s
154:	learn: 14.4119567	total: 4.52s	remaining: 4.23s
155:	learn: 14.3464330	total: 4.56s	remaining: 4.21s
156:	learn: 14.2314719	total: 4.58s	remaining: 4.17s
157:	learn: 14.1827121	total: 4.62s	remaining: 4.15s
158:	learn: 14.0860528	total: 4.65s	remaining: 4.12s
159:	learn: 14.0216499	total: 4.68s	remaining: 4.09s
160:	learn: 13.9788508	total: 4.7s	remaining: 4.06s
161:	learn: 13.9341942	total: 4.73s	remaining: 4.03s
162:	learn: 13.8689437	total: 4.76s	remaining: 4s
163:	learn: 13.8152354	total: 4.78s	remaining: 3.97s
164:	learn: 13.7979613	total: 4.82s	remaining: 3.94s
165:	learn: 13.7124340	total: 4.85s	remaining: 3.92s
166:	learn: 13.6328571	total: 4.88s	remaining: 3.89s
167:	learn: 13.6179483	total: 4.91s	remaining: 3.85s
168:	learn: 13.5737505	total: 4.93s	remaining: 3.82s
169:	learn: 13.5185652	total: 4.96s	remaining: 3.79s
170:	learn: 13.3621411	total: 4.99s	remaining: 3.76s
171:	learn: 13.3431787	total: 5.01s	remaining: 3.73s
172:	learn: 13.2661742	total: 5.05s	remaining: 3.71s
173:	learn: 13.2029526	total: 5.09s	remaining: 3.68s
174:	learn: 13.1457507	total: 5.11s	remaining: 3.65s
175:	learn: 13.0041277	total: 5.14s	remaining: 3.62s
176:	learn: 12.9565895	total: 5.17s	remaining: 3.59s
177:	learn: 12.8225368	total: 5.2s	remaining: 3.56s
178:	learn: 12.8073526	total: 5.22s	remaining: 3.53s
179:	learn: 12.7432577	total: 5.25s	remaining: 3.5s
180:	learn: 12.6894062	total: 5.29s	remaining: 3.48s
181:	learn: 12.6115430	total: 5.32s	remaining: 3.45s
182:	learn: 12.4884510	total: 5.35s	remaining: 3.42s
183:	learn: 12.4670071	total: 5.38s	remaining: 3.39s
184:	learn: 12.3586840	total: 5.4s	remaining: 3.36s
185:	learn: 12.3314465	total: 5.43s	remaining: 3.33s
186:	learn: 12.2898986	total: 5.46s	remaining: 3.3s
187:	learn: 12.2444848	total: 5.49s	remaining: 3.27s
188:	learn: 12.1286912	total: 5.52s	remaining: 3.24s
189:	learn: 12.0913051	total: 5.56s	remaining: 3.22s
190:	learn: 12.0412425	total: 5.58s	remaining: 3.19s
191:	learn: 11.9806235	total: 5.61s	remaining: 3.16s
192:	learn: 11.9166183	total: 5.64s	remaining: 3.13s
193:	learn: 11.8779218	total: 5.67s	remaining: 3.1s
194:	learn: 11.8179532	total: 5.7s	remaining: 3.07s
195:	learn: 11.7640239	total: 5.73s	remaining: 3.04s
196:	learn: 11.7071262	total: 5.76s	remaining: 3.01s
197:	learn: 11.6536293	total: 5.79s	remaining: 2.98s
198:	learn: 11.6065018	total: 5.82s	remaining: 2.95s
199:	learn: 11.5499607	total: 5.84s	remaining: 2.92s
200:	learn: 11.5040185	total: 5.87s	remaining: 2.89s
201:	learn: 11.4742990	total: 5.9s	remaining: 2.86s
202:	learn: 11.4464612	total: 5.93s	remaining: 2.83s
203:	learn: 11.3967352	total: 5.96s	remaining: 2.8s
204:	learn: 11.3773630	total: 5.99s	remaining: 2.77s
205:	learn: 11.3369897	total: 6.02s	remaining: 2.75s
206:	learn: 11.2785610	total: 6.05s	remaining: 2.72s
207:	learn: 11.2570903	total: 6.08s	remaining: 2.69s
208:	learn: 11.1959469	total: 6.1s	remaining: 2.66s
209:	learn: 11.1698664	total: 6.13s	remaining: 2.63s
210:	learn: 11.1452100	total: 6.16s	remaining: 2.6s
211:	learn: 11.1074115	total: 6.19s	remaining: 2.57s
212:	learn: 11.0813756	total: 6.22s	remaining: 2.54s
213:	learn: 11.0519307	total: 6.25s	remaining: 2.51s
214:	learn: 11.0155685	total: 6.28s	remaining: 2.48s
215:	learn: 10.9871406	total: 6.3s	remaining: 2.45s
216:	learn: 10.9693068	total: 6.33s	remaining: 2.42s
217:	learn: 10.9576767	total: 6.36s	remaining: 2.39s
218:	learn: 10.8594320	total: 6.39s	remaining: 2.37s
219:	learn: 10.8272954	total: 6.42s	remaining: 2.34s
220:	learn: 10.8038867	total: 6.45s	remaining: 2.31s
221:	learn: 10.7088853	total: 6.48s	remaining: 2.28s
222:	learn: 10.6887411	total: 6.52s	remaining: 2.25s
223:	learn: 10.6649574	total: 6.54s	remaining: 2.22s
224:	learn: 10.6194908	total: 6.57s	remaining: 2.19s
225:	learn: 10.5685522	total: 6.6s	remaining: 2.16s
226:	learn: 10.5537435	total: 6.63s	remaining: 2.13s
227:	learn: 10.5121708	total: 6.66s	remaining: 2.1s
228:	learn: 10.4691452	total: 6.68s	remaining: 2.07s
229:	learn: 10.4484099	total: 6.71s	remaining: 2.04s
230:	learn: 10.4377373	total: 6.75s	remaining: 2.01s
231:	learn: 10.4270601	total: 6.77s	remaining: 1.99s
232:	learn: 10.4051968	total: 6.8s	remaining: 1.96s
233:	learn: 10.3483300	total: 6.84s	remaining: 1.93s
234:	learn: 10.2865834	total: 6.87s	remaining: 1.9s
235:	learn: 10.2610314	total: 6.89s	remaining: 1.87s
236:	learn: 10.2388990	total: 6.92s	remaining: 1.84s
237:	learn: 10.1965393	total: 6.95s	remaining: 1.81s
238:	learn: 10.1800849	total: 6.97s	remaining: 1.78s
239:	learn: 10.1604400	total: 7.01s	remaining: 1.75s
240:	learn: 10.1302668	total: 7.04s	remaining: 1.72s
241:	learn: 10.1241338	total: 7.07s	remaining: 1.7s
242:	learn: 10.0835529	total: 7.1s	remaining: 1.67s
243:	learn: 10.0154507	total: 7.13s	remaining: 1.64s
244:	learn: 10.0024905	total: 7.15s	remaining: 1.61s
245:	learn: 9.9669119	total: 7.18s	remaining: 1.58s
246:	learn: 9.9325711	total: 7.21s	remaining: 1.55s
247:	learn: 9.8981230	total: 7.24s	remaining: 1.52s
248:	learn: 9.8660554	total: 7.28s	remaining: 1.49s
249:	learn: 9.8506587	total: 7.31s	remaining: 1.46s
250:	learn: 9.8080866	total: 7.33s	remaining: 1.43s
251:	learn: 9.7747070	total: 7.36s	remaining: 1.4s
252:	learn: 9.7589720	total: 7.39s	remaining: 1.37s
253:	learn: 9.7308058	total: 7.42s	remaining: 1.34s
254:	learn: 9.7157610	total: 7.45s	remaining: 1.31s
255:	learn: 9.6979675	total: 7.48s	remaining: 1.29s
256:	learn: 9.6657809	total: 7.52s	remaining: 1.26s
257:	learn: 9.6522187	total: 7.54s	remaining: 1.23s
258:	learn: 9.6375034	total: 7.57s	remaining: 1.2s
259:	learn: 9.6023653	total: 7.6s	remaining: 1.17s
260:	learn: 9.5760582	total: 7.63s	remaining: 1.14s
261:	learn: 9.5288913	total: 7.65s	remaining: 1.11s
262:	learn: 9.5151986	total: 7.68s	remaining: 1.08s
263:	learn: 9.4814503	total: 7.71s	remaining: 1.05s
264:	learn: 9.4635791	total: 7.75s	remaining: 1.02s
265:	learn: 9.4364856	total: 7.78s	remaining: 994ms
266:	learn: 9.4013439	total: 7.8s	remaining: 965ms
267:	learn: 9.3638018	total: 7.83s	remaining: 935ms
268:	learn: 9.3558171	total: 7.86s	remaining: 906ms
269:	learn: 9.3065751	total: 7.89s	remaining: 876ms
270:	learn: 9.2964146	total: 7.91s	remaining: 847ms
271:	learn: 9.2625670	total: 7.95s	remaining: 818ms
272:	learn: 9.2356760	total: 7.99s	remaining: 790ms
273:	learn: 9.2046550	total: 8.01s	remaining: 760ms
274:	learn: 9.1931591	total: 8.04s	remaining: 731ms
275:	learn: 9.1692863	total: 8.07s	remaining: 701ms
276:	learn: 9.1358490	total: 8.09s	remaining: 672ms
277:	learn: 9.1007511	total: 8.12s	remaining: 643ms
278:	learn: 9.0946236	total: 8.15s	remaining: 613ms
279:	learn: 9.0731587	total: 8.18s	remaining: 584ms
280:	learn: 9.0466446	total: 8.22s	remaining: 556ms
281:	learn: 9.0262027	total: 8.25s	remaining: 527ms
282:	learn: 8.9958148	total: 8.28s	remaining: 497ms
283:	learn: 8.9904119	total: 8.31s	remaining: 468ms
284:	learn: 8.9723234	total: 8.34s	remaining: 439ms
285:	learn: 8.9368256	total: 8.37s	remaining: 410ms
286:	learn: 8.8960967	total: 8.39s	remaining: 380ms
287:	learn: 8.8813638	total: 8.42s	remaining: 351ms
288:	learn: 8.8766445	total: 8.46s	remaining: 322ms
289:	learn: 8.8483604	total: 8.49s	remaining: 293ms
290:	learn: 8.8220559	total: 8.52s	remaining: 263ms
291:	learn: 8.7918301	total: 8.54s	remaining: 234ms
292:	learn: 8.7574504	total: 8.57s	remaining: 205ms
293:	learn: 8.7490725	total: 8.6s	remaining: 176ms
294:	learn: 8.7293377	total: 8.63s	remaining: 146ms
295:	learn: 8.7202847	total: 8.66s	remaining: 117ms
296:	learn: 8.6918465	total: 8.69s	remaining: 87.8ms
297:	learn: 8.6665828	total: 8.73s	remaining: 58.6ms
298:	learn: 8.6541683	total: 8.76s	remaining: 29.3ms
299:	learn: 8.6494740	total: 8.78s	remaining: 0us
0:	learn: 46.8012202	total: 30.2ms	remaining: 9.02s
1:	learn: 46.0273912	total: 56.3ms	remaining: 8.39s
2:	learn: 45.3733493	total: 83.2ms	remaining: 8.23s
3:	learn: 44.7109449	total: 108ms	remaining: 8.02s
4:	learn: 43.9430491	total: 133ms	remaining: 7.86s
5:	learn: 43.2536304	total: 158ms	remaining: 7.76s
6:	learn: 42.5901366	total: 184ms	remaining: 7.7s
7:	learn: 42.0362841	total: 209ms	remaining: 7.63s
8:	learn: 41.4655769	total: 234ms	remaining: 7.57s
9:	learn: 40.7617374	total: 260ms	remaining: 7.53s
10:	learn: 40.1467911	total: 287ms	remaining: 7.53s
11:	learn: 39.5322002	total: 323ms	remaining: 7.75s
12:	learn: 39.2369496	total: 348ms	remaining: 7.69s
13:	learn: 38.8730340	total: 376ms	remaining: 7.68s
14:	learn: 38.4661592	total: 403ms	remaining: 7.67s
15:	learn: 37.8483750	total: 407ms	remaining: 7.23s
16:	learn: 37.2598064	total: 435ms	remaining: 7.24s
17:	learn: 36.6878531	total: 461ms	remaining: 7.23s
18:	learn: 36.1765878	total: 499ms	remaining: 7.38s
19:	learn: 35.6111928	total: 528ms	remaining: 7.39s
20:	learn: 35.2113326	total: 554ms	remaining: 7.36s
21:	learn: 34.5754750	total: 581ms	remaining: 7.34s
22:	learn: 34.0844300	total: 606ms	remaining: 7.3s
23:	learn: 33.6434482	total: 631ms	remaining: 7.25s
24:	learn: 33.3578327	total: 656ms	remaining: 7.22s
25:	learn: 32.9883035	total: 682ms	remaining: 7.19s
26:	learn: 32.6325583	total: 721ms	remaining: 7.29s
27:	learn: 32.1886629	total: 746ms	remaining: 7.25s
28:	learn: 31.8587417	total: 773ms	remaining: 7.22s
29:	learn: 31.4999044	total: 799ms	remaining: 7.19s
30:	learn: 31.1903935	total: 825ms	remaining: 7.16s
31:	learn: 30.8877054	total: 851ms	remaining: 7.13s
32:	learn: 30.6421813	total: 876ms	remaining: 7.09s
33:	learn: 30.3687742	total: 901ms	remaining: 7.05s
34:	learn: 30.0972944	total: 928ms	remaining: 7.02s
35:	learn: 29.6026977	total: 959ms	remaining: 7.04s
36:	learn: 29.3412855	total: 986ms	remaining: 7.01s
37:	learn: 29.0138869	total: 1.01s	remaining: 6.98s
38:	learn: 28.6424952	total: 1.04s	remaining: 6.95s
39:	learn: 28.4408572	total: 1.06s	remaining: 6.92s
40:	learn: 28.0554435	total: 1.09s	remaining: 6.88s
41:	learn: 27.8389274	total: 1.11s	remaining: 6.85s
42:	learn: 27.5339353	total: 1.14s	remaining: 6.81s
43:	learn: 27.3640594	total: 1.17s	remaining: 6.83s
44:	learn: 27.1330981	total: 1.2s	remaining: 6.8s
45:	learn: 26.9507132	total: 1.23s	remaining: 6.77s
46:	learn: 26.7285619	total: 1.25s	remaining: 6.75s
47:	learn: 26.3518482	total: 1.28s	remaining: 6.72s
48:	learn: 26.0543584	total: 1.3s	remaining: 6.69s
49:	learn: 25.8251945	total: 1.33s	remaining: 6.66s
50:	learn: 25.5436752	total: 1.36s	remaining: 6.64s
51:	learn: 25.3250332	total: 1.39s	remaining: 6.64s
52:	learn: 25.1688504	total: 1.42s	remaining: 6.6s
53:	learn: 24.9813407	total: 1.44s	remaining: 6.57s
54:	learn: 24.7384847	total: 1.47s	remaining: 6.53s
55:	learn: 24.5163023	total: 1.49s	remaining: 6.5s
56:	learn: 24.2729235	total: 1.52s	remaining: 6.47s
57:	learn: 24.1318061	total: 1.54s	remaining: 6.44s
58:	learn: 23.9701754	total: 1.58s	remaining: 6.44s
59:	learn: 23.8112940	total: 1.61s	remaining: 6.46s
60:	learn: 23.6723877	total: 1.64s	remaining: 6.43s
61:	learn: 23.5289336	total: 1.67s	remaining: 6.4s
62:	learn: 23.4106679	total: 1.69s	remaining: 6.37s
63:	learn: 23.2082280	total: 1.72s	remaining: 6.33s
64:	learn: 23.0959607	total: 1.74s	remaining: 6.3s
65:	learn: 22.9890902	total: 1.77s	remaining: 6.28s
66:	learn: 22.8516666	total: 1.8s	remaining: 6.26s
67:	learn: 22.7282575	total: 1.83s	remaining: 6.24s
68:	learn: 22.5991392	total: 1.85s	remaining: 6.2s
69:	learn: 22.3825348	total: 1.88s	remaining: 6.17s
70:	learn: 22.2284455	total: 1.9s	remaining: 6.14s
71:	learn: 22.0431735	total: 1.93s	remaining: 6.11s
72:	learn: 21.8930406	total: 1.95s	remaining: 6.07s
73:	learn: 21.7459390	total: 1.98s	remaining: 6.04s
74:	learn: 21.6277633	total: 2s	remaining: 6.01s
75:	learn: 21.4144047	total: 2.04s	remaining: 6.01s
76:	learn: 21.2747440	total: 2.07s	remaining: 5.98s
77:	learn: 21.1153657	total: 2.09s	remaining: 5.96s
78:	learn: 21.0445825	total: 2.12s	remaining: 5.93s
79:	learn: 20.9348935	total: 2.15s	remaining: 5.9s
80:	learn: 20.7685253	total: 2.17s	remaining: 5.87s
81:	learn: 20.6539889	total: 2.19s	remaining: 5.83s
82:	learn: 20.4538530	total: 2.22s	remaining: 5.81s
83:	learn: 20.3461251	total: 2.25s	remaining: 5.79s
84:	learn: 20.1992221	total: 2.28s	remaining: 5.77s
85:	learn: 20.0842190	total: 2.3s	remaining: 5.73s
86:	learn: 19.9903250	total: 2.33s	remaining: 5.71s
87:	learn: 19.9084171	total: 2.36s	remaining: 5.68s
88:	learn: 19.7929727	total: 2.38s	remaining: 5.65s
89:	learn: 19.7205230	total: 2.4s	remaining: 5.61s
90:	learn: 19.6075486	total: 2.43s	remaining: 5.58s
91:	learn: 19.5309964	total: 2.46s	remaining: 5.57s
92:	learn: 19.4363684	total: 2.49s	remaining: 5.54s
93:	learn: 19.3378127	total: 2.52s	remaining: 5.52s
94:	learn: 19.2292896	total: 2.54s	remaining: 5.49s
95:	learn: 19.1011370	total: 2.57s	remaining: 5.46s
96:	learn: 18.9974491	total: 2.6s	remaining: 5.43s
97:	learn: 18.8636531	total: 2.62s	remaining: 5.4s
98:	learn: 18.7739910	total: 2.65s	remaining: 5.38s
99:	learn: 18.6948867	total: 2.68s	remaining: 5.36s
100:	learn: 18.5747433	total: 2.71s	remaining: 5.33s
101:	learn: 18.5307499	total: 2.73s	remaining: 5.3s
102:	learn: 18.4248127	total: 2.76s	remaining: 5.27s
103:	learn: 18.3301727	total: 2.78s	remaining: 5.24s
104:	learn: 18.2579998	total: 2.81s	remaining: 5.21s
105:	learn: 18.1614231	total: 2.83s	remaining: 5.18s
106:	learn: 18.0748134	total: 2.85s	remaining: 5.14s
107:	learn: 17.9862898	total: 2.88s	remaining: 5.12s
108:	learn: 17.9368507	total: 2.91s	remaining: 5.1s
109:	learn: 17.8058561	total: 2.94s	remaining: 5.07s
110:	learn: 17.7371383	total: 2.96s	remaining: 5.04s
111:	learn: 17.6303538	total: 2.98s	remaining: 5.01s
112:	learn: 17.5449989	total: 3.01s	remaining: 4.98s
113:	learn: 17.4776008	total: 3.03s	remaining: 4.95s
114:	learn: 17.3648029	total: 3.06s	remaining: 4.92s
115:	learn: 17.2618916	total: 3.08s	remaining: 4.89s
116:	learn: 17.2111539	total: 3.11s	remaining: 4.87s
117:	learn: 17.1018870	total: 3.14s	remaining: 4.84s
118:	learn: 17.0024931	total: 3.16s	remaining: 4.81s
119:	learn: 16.9743860	total: 3.18s	remaining: 4.78s
120:	learn: 16.9130305	total: 3.21s	remaining: 4.75s
121:	learn: 16.8016712	total: 3.23s	remaining: 4.72s
122:	learn: 16.7261518	total: 3.26s	remaining: 4.69s
123:	learn: 16.6593504	total: 3.28s	remaining: 4.66s
124:	learn: 16.5732663	total: 3.31s	remaining: 4.64s
125:	learn: 16.4947922	total: 3.34s	remaining: 4.61s
126:	learn: 16.3991688	total: 3.37s	remaining: 4.58s
127:	learn: 16.3086895	total: 3.39s	remaining: 4.55s
128:	learn: 16.2101210	total: 3.42s	remaining: 4.53s
129:	learn: 16.1541963	total: 3.44s	remaining: 4.5s
130:	learn: 16.0790764	total: 3.46s	remaining: 4.47s
131:	learn: 16.0139723	total: 3.49s	remaining: 4.44s
132:	learn: 15.8906448	total: 3.51s	remaining: 4.41s
133:	learn: 15.8064421	total: 3.54s	remaining: 4.39s
134:	learn: 15.7265305	total: 3.57s	remaining: 4.36s
135:	learn: 15.6621677	total: 3.59s	remaining: 4.33s
136:	learn: 15.5922471	total: 3.62s	remaining: 4.3s
137:	learn: 15.5550517	total: 3.64s	remaining: 4.27s
138:	learn: 15.5278059	total: 3.66s	remaining: 4.24s
139:	learn: 15.4494043	total: 3.69s	remaining: 4.21s
140:	learn: 15.3765788	total: 3.71s	remaining: 4.19s
141:	learn: 15.3158598	total: 3.74s	remaining: 4.16s
142:	learn: 15.2121980	total: 3.78s	remaining: 4.15s
143:	learn: 15.0893974	total: 3.8s	remaining: 4.12s
144:	learn: 15.0074795	total: 3.83s	remaining: 4.09s
145:	learn: 14.9489574	total: 3.85s	remaining: 4.06s
146:	learn: 14.9258844	total: 3.88s	remaining: 4.04s
147:	learn: 14.8471123	total: 3.9s	remaining: 4.01s
148:	learn: 14.7745818	total: 3.93s	remaining: 3.98s
149:	learn: 14.6905246	total: 3.95s	remaining: 3.95s
150:	learn: 14.5873644	total: 3.98s	remaining: 3.93s
151:	learn: 14.5337902	total: 4.01s	remaining: 3.9s
152:	learn: 14.4749040	total: 4.03s	remaining: 3.87s
153:	learn: 14.3890824	total: 4.06s	remaining: 3.85s
154:	learn: 14.3259009	total: 4.08s	remaining: 3.82s
155:	learn: 14.2113192	total: 4.11s	remaining: 3.79s
156:	learn: 14.1718909	total: 4.13s	remaining: 3.76s
157:	learn: 14.1110356	total: 4.16s	remaining: 3.74s
158:	learn: 14.0362591	total: 4.19s	remaining: 3.71s
159:	learn: 13.9188238	total: 4.21s	remaining: 3.69s
160:	learn: 13.7740452	total: 4.24s	remaining: 3.66s
161:	learn: 13.7228642	total: 4.26s	remaining: 3.63s
162:	learn: 13.6648536	total: 4.3s	remaining: 3.61s
163:	learn: 13.5724722	total: 4.33s	remaining: 3.59s
164:	learn: 13.5141405	total: 4.35s	remaining: 3.56s
165:	learn: 13.4267305	total: 4.38s	remaining: 3.54s
166:	learn: 13.3370179	total: 4.42s	remaining: 3.52s
167:	learn: 13.2503127	total: 4.45s	remaining: 3.49s
168:	learn: 13.1743816	total: 4.47s	remaining: 3.47s
169:	learn: 13.1087726	total: 4.5s	remaining: 3.44s
170:	learn: 13.0426739	total: 4.53s	remaining: 3.42s
171:	learn: 12.9968745	total: 4.56s	remaining: 3.39s
172:	learn: 12.9301422	total: 4.59s	remaining: 3.37s
173:	learn: 12.9104864	total: 4.63s	remaining: 3.35s
174:	learn: 12.8199271	total: 4.66s	remaining: 3.33s
175:	learn: 12.7796485	total: 4.69s	remaining: 3.3s
176:	learn: 12.6883779	total: 4.71s	remaining: 3.28s
177:	learn: 12.5869619	total: 4.74s	remaining: 3.25s
178:	learn: 12.5397815	total: 4.77s	remaining: 3.23s
179:	learn: 12.4692676	total: 4.8s	remaining: 3.2s
180:	learn: 12.4433237	total: 4.83s	remaining: 3.17s
181:	learn: 12.3985342	total: 4.87s	remaining: 3.15s
182:	learn: 12.3635932	total: 4.89s	remaining: 3.13s
183:	learn: 12.2512719	total: 4.92s	remaining: 3.1s
184:	learn: 12.1558647	total: 4.95s	remaining: 3.08s
185:	learn: 12.1369112	total: 4.97s	remaining: 3.05s
186:	learn: 12.0798700	total: 5s	remaining: 3.02s
187:	learn: 12.0010668	total: 5.03s	remaining: 3s
188:	learn: 11.9442666	total: 5.06s	remaining: 2.97s
189:	learn: 11.8628888	total: 5.09s	remaining: 2.95s
190:	learn: 11.7616769	total: 5.13s	remaining: 2.93s
191:	learn: 11.6699926	total: 5.16s	remaining: 2.9s
192:	learn: 11.6392816	total: 5.18s	remaining: 2.87s
193:	learn: 11.5955244	total: 5.21s	remaining: 2.85s
194:	learn: 11.5772160	total: 5.24s	remaining: 2.82s
195:	learn: 11.5465581	total: 5.27s	remaining: 2.79s
196:	learn: 11.4564641	total: 5.3s	remaining: 2.77s
197:	learn: 11.3978031	total: 5.32s	remaining: 2.74s
198:	learn: 11.3460158	total: 5.36s	remaining: 2.72s
199:	learn: 11.2627720	total: 5.38s	remaining: 2.69s
200:	learn: 11.2162738	total: 5.41s	remaining: 2.66s
201:	learn: 11.1905894	total: 5.44s	remaining: 2.64s
202:	learn: 11.1639946	total: 5.46s	remaining: 2.61s
203:	learn: 11.0885906	total: 5.5s	remaining: 2.59s
204:	learn: 11.0284516	total: 5.53s	remaining: 2.56s
205:	learn: 10.9731416	total: 5.56s	remaining: 2.54s
206:	learn: 10.9378121	total: 5.6s	remaining: 2.51s
207:	learn: 10.8935640	total: 5.62s	remaining: 2.49s
208:	learn: 10.8572901	total: 5.65s	remaining: 2.46s
209:	learn: 10.8037961	total: 5.68s	remaining: 2.43s
210:	learn: 10.7458107	total: 5.71s	remaining: 2.41s
211:	learn: 10.7082447	total: 5.74s	remaining: 2.38s
212:	learn: 10.6599173	total: 5.77s	remaining: 2.36s
213:	learn: 10.6028419	total: 5.8s	remaining: 2.33s
214:	learn: 10.5627192	total: 5.82s	remaining: 2.3s
215:	learn: 10.5213774	total: 5.86s	remaining: 2.28s
216:	learn: 10.4732429	total: 5.88s	remaining: 2.25s
217:	learn: 10.4188551	total: 5.91s	remaining: 2.22s
218:	learn: 10.3740622	total: 5.95s	remaining: 2.2s
219:	learn: 10.3399349	total: 5.98s	remaining: 2.17s
220:	learn: 10.2824635	total: 6s	remaining: 2.15s
221:	learn: 10.2458277	total: 6.03s	remaining: 2.12s
222:	learn: 10.2341252	total: 6.06s	remaining: 2.09s
223:	learn: 10.1392287	total: 6.09s	remaining: 2.07s
224:	learn: 10.1088124	total: 6.12s	remaining: 2.04s
225:	learn: 10.0471375	total: 6.16s	remaining: 2.02s
226:	learn: 9.9852333	total: 6.18s	remaining: 1.99s
227:	learn: 9.9292294	total: 6.21s	remaining: 1.96s
228:	learn: 9.9015453	total: 6.24s	remaining: 1.93s
229:	learn: 9.8905067	total: 6.26s	remaining: 1.91s
230:	learn: 9.8507503	total: 6.29s	remaining: 1.88s
231:	learn: 9.7964411	total: 6.33s	remaining: 1.85s
232:	learn: 9.7540779	total: 6.36s	remaining: 1.83s
233:	learn: 9.7051776	total: 6.39s	remaining: 1.8s
234:	learn: 9.6539147	total: 6.42s	remaining: 1.77s
235:	learn: 9.6073112	total: 6.45s	remaining: 1.75s
236:	learn: 9.5975483	total: 6.48s	remaining: 1.72s
237:	learn: 9.5489561	total: 6.5s	remaining: 1.69s
238:	learn: 9.5160122	total: 6.53s	remaining: 1.67s
239:	learn: 9.4620416	total: 6.56s	remaining: 1.64s
240:	learn: 9.4463510	total: 6.6s	remaining: 1.61s
241:	learn: 9.4389200	total: 6.63s	remaining: 1.59s
242:	learn: 9.4078400	total: 6.65s	remaining: 1.56s
243:	learn: 9.3866265	total: 6.68s	remaining: 1.53s
244:	learn: 9.3473501	total: 6.71s	remaining: 1.5s
245:	learn: 9.2861016	total: 6.73s	remaining: 1.48s
246:	learn: 9.2734740	total: 6.76s	remaining: 1.45s
247:	learn: 9.2343522	total: 6.79s	remaining: 1.42s
248:	learn: 9.2223405	total: 6.82s	remaining: 1.4s
249:	learn: 9.2140074	total: 6.86s	remaining: 1.37s
250:	learn: 9.2046313	total: 6.89s	remaining: 1.34s
251:	learn: 9.1705343	total: 6.92s	remaining: 1.32s
252:	learn: 9.1635400	total: 6.94s	remaining: 1.29s
253:	learn: 9.1201103	total: 6.97s	remaining: 1.26s
254:	learn: 9.0874222	total: 6.99s	remaining: 1.23s
255:	learn: 9.0546404	total: 7.02s	remaining: 1.21s
256:	learn: 9.0294210	total: 7.05s	remaining: 1.18s
257:	learn: 8.9918549	total: 7.09s	remaining: 1.15s
258:	learn: 8.9860821	total: 7.12s	remaining: 1.13s
259:	learn: 8.9445721	total: 7.14s	remaining: 1.1s
260:	learn: 8.9204013	total: 7.17s	remaining: 1.07s
261:	learn: 8.8802796	total: 7.2s	remaining: 1.04s
262:	learn: 8.8319848	total: 7.22s	remaining: 1.02s
263:	learn: 8.8040786	total: 7.25s	remaining: 989ms
264:	learn: 8.7674300	total: 7.29s	remaining: 963ms
265:	learn: 8.7486932	total: 7.33s	remaining: 937ms
266:	learn: 8.7223059	total: 7.35s	remaining: 909ms
267:	learn: 8.7108992	total: 7.38s	remaining: 882ms
268:	learn: 8.7026068	total: 7.41s	remaining: 854ms
269:	learn: 8.6836280	total: 7.43s	remaining: 826ms
270:	learn: 8.6467938	total: 7.46s	remaining: 799ms
271:	learn: 8.6111555	total: 7.5s	remaining: 772ms
272:	learn: 8.5824973	total: 7.53s	remaining: 744ms
273:	learn: 8.5682745	total: 7.56s	remaining: 717ms
274:	learn: 8.5416779	total: 7.59s	remaining: 690ms
275:	learn: 8.5066950	total: 7.61s	remaining: 662ms
276:	learn: 8.4970713	total: 7.64s	remaining: 634ms
277:	learn: 8.4596116	total: 7.67s	remaining: 607ms
278:	learn: 8.4475857	total: 7.7s	remaining: 579ms
279:	learn: 8.4267482	total: 7.73s	remaining: 552ms
280:	learn: 8.4095246	total: 7.76s	remaining: 524ms
281:	learn: 8.3674941	total: 7.78s	remaining: 497ms
282:	learn: 8.3151248	total: 7.82s	remaining: 470ms
283:	learn: 8.2823195	total: 7.84s	remaining: 442ms
284:	learn: 8.2593854	total: 7.87s	remaining: 414ms
285:	learn: 8.2331325	total: 7.9s	remaining: 387ms
286:	learn: 8.1912221	total: 7.93s	remaining: 359ms
287:	learn: 8.1688810	total: 7.96s	remaining: 332ms
288:	learn: 8.1497193	total: 7.99s	remaining: 304ms
289:	learn: 8.1293205	total: 8.01s	remaining: 276ms
290:	learn: 8.1107539	total: 8.05s	remaining: 249ms
291:	learn: 8.0849956	total: 8.07s	remaining: 221ms
292:	learn: 8.0440544	total: 8.1s	remaining: 194ms
293:	learn: 8.0183325	total: 8.13s	remaining: 166ms
294:	learn: 7.9783905	total: 8.16s	remaining: 138ms
295:	learn: 7.9644989	total: 8.19s	remaining: 111ms
296:	learn: 7.9392598	total: 8.22s	remaining: 83ms
297:	learn: 7.9167538	total: 8.24s	remaining: 55.3ms
298:	learn: 7.8751558	total: 8.28s	remaining: 27.7ms
299:	learn: 7.8630471	total: 8.31s	remaining: 0us
0:	learn: 27.6506730	total: 5.94ms	remaining: 588ms
1:	learn: 27.1638793	total: 10.5ms	remaining: 512ms
2:	learn: 26.8000665	total: 15.1ms	remaining: 487ms
3:	learn: 26.4256132	total: 19.7ms	remaining: 472ms
4:	learn: 26.0088351	total: 24.7ms	remaining: 470ms
5:	learn: 25.7558298	total: 29ms	remaining: 454ms
6:	learn: 25.3380711	total: 33.4ms	remaining: 444ms
7:	learn: 25.0571611	total: 38ms	remaining: 437ms
8:	learn: 24.6790148	total: 42.6ms	remaining: 431ms
9:	learn: 24.3600941	total: 47.3ms	remaining: 426ms
10:	learn: 24.1105667	total: 52ms	remaining: 421ms
11:	learn: 23.7736542	total: 56.8ms	remaining: 416ms
12:	learn: 23.5824429	total: 61.2ms	remaining: 410ms
13:	learn: 23.2658303	total: 65.6ms	remaining: 403ms
14:	learn: 23.0061886	total: 69.9ms	remaining: 396ms
15:	learn: 22.8060389	total: 74.3ms	remaining: 390ms
16:	learn: 22.5899735	total: 78.8ms	remaining: 385ms
17:	learn: 22.3625048	total: 83.4ms	remaining: 380ms
18:	learn: 22.0706477	total: 88.3ms	remaining: 377ms
19:	learn: 21.8739394	total: 93.4ms	remaining: 374ms
20:	learn: 21.6143650	total: 98.3ms	remaining: 370ms
21:	learn: 21.4571623	total: 103ms	remaining: 367ms
22:	learn: 21.2395769	total: 108ms	remaining: 363ms
23:	learn: 20.9801795	total: 113ms	remaining: 359ms
24:	learn: 20.8036808	total: 118ms	remaining: 354ms
25:	learn: 20.6387539	total: 123ms	remaining: 350ms
26:	learn: 20.4401427	total: 128ms	remaining: 345ms
27:	learn: 20.2879575	total: 132ms	remaining: 340ms
28:	learn: 20.0538664	total: 137ms	remaining: 335ms
29:	learn: 19.8363102	total: 141ms	remaining: 329ms
30:	learn: 19.7015446	total: 146ms	remaining: 325ms
31:	learn: 19.5483114	total: 150ms	remaining: 320ms
32:	learn: 19.4163053	total: 155ms	remaining: 315ms
33:	learn: 19.2880625	total: 159ms	remaining: 309ms
34:	learn: 19.1303389	total: 164ms	remaining: 305ms
35:	learn: 18.9237448	total: 169ms	remaining: 300ms
36:	learn: 18.8142925	total: 173ms	remaining: 295ms
37:	learn: 18.6994696	total: 178ms	remaining: 290ms
38:	learn: 18.5629211	total: 182ms	remaining: 285ms
39:	learn: 18.4600917	total: 186ms	remaining: 279ms
40:	learn: 18.3567139	total: 191ms	remaining: 274ms
41:	learn: 18.2120527	total: 195ms	remaining: 270ms
42:	learn: 18.0688062	total: 199ms	remaining: 264ms
43:	learn: 17.9250181	total: 204ms	remaining: 260ms
44:	learn: 17.8399138	total: 209ms	remaining: 255ms
45:	learn: 17.6720713	total: 213ms	remaining: 250ms
46:	learn: 17.5273091	total: 217ms	remaining: 245ms
47:	learn: 17.4232814	total: 222ms	remaining: 240ms
48:	learn: 17.2957579	total: 227ms	remaining: 236ms
49:	learn: 17.1892874	total: 231ms	remaining: 231ms
50:	learn: 17.0490355	total: 236ms	remaining: 227ms
51:	learn: 16.9666450	total: 241ms	remaining: 222ms
52:	learn: 16.8600056	total: 246ms	remaining: 218ms
53:	learn: 16.7542588	total: 251ms	remaining: 214ms
54:	learn: 16.6316077	total: 258ms	remaining: 211ms
55:	learn: 16.5588112	total: 266ms	remaining: 209ms
56:	learn: 16.5010186	total: 276ms	remaining: 208ms
57:	learn: 16.4081540	total: 282ms	remaining: 204ms
58:	learn: 16.3040451	total: 289ms	remaining: 201ms
59:	learn: 16.1890564	total: 294ms	remaining: 196ms
60:	learn: 16.0977103	total: 300ms	remaining: 192ms
61:	learn: 15.9627607	total: 305ms	remaining: 187ms
62:	learn: 15.9022248	total: 310ms	remaining: 182ms
63:	learn: 15.8151881	total: 316ms	remaining: 178ms
64:	learn: 15.7353125	total: 321ms	remaining: 173ms
65:	learn: 15.6312897	total: 327ms	remaining: 168ms
66:	learn: 15.5330927	total: 332ms	remaining: 163ms
67:	learn: 15.4698681	total: 337ms	remaining: 159ms
68:	learn: 15.4108571	total: 342ms	remaining: 154ms
69:	learn: 15.3492945	total: 348ms	remaining: 149ms
70:	learn: 15.3036540	total: 353ms	remaining: 144ms
71:	learn: 15.2390833	total: 358ms	remaining: 139ms
72:	learn: 15.1556327	total: 363ms	remaining: 134ms
73:	learn: 15.1016315	total: 367ms	remaining: 129ms
74:	learn: 15.0287076	total: 372ms	remaining: 124ms
75:	learn: 14.9530572	total: 376ms	remaining: 119ms
76:	learn: 14.8965517	total: 381ms	remaining: 114ms
77:	learn: 14.8125426	total: 385ms	remaining: 109ms
78:	learn: 14.7435359	total: 390ms	remaining: 104ms
79:	learn: 14.6963163	total: 394ms	remaining: 98.4ms
80:	learn: 14.6200060	total: 398ms	remaining: 93.4ms
81:	learn: 14.5707760	total: 403ms	remaining: 88.6ms
82:	learn: 14.5053651	total: 408ms	remaining: 83.6ms
83:	learn: 14.4115458	total: 413ms	remaining: 78.6ms
84:	learn: 14.3117159	total: 418ms	remaining: 73.7ms
85:	learn: 14.2511326	total: 422ms	remaining: 68.8ms
86:	learn: 14.1372486	total: 427ms	remaining: 63.9ms
87:	learn: 14.0992301	total: 432ms	remaining: 59ms
88:	learn: 14.0228331	total: 437ms	remaining: 54ms
89:	learn: 13.9249836	total: 442ms	remaining: 49.1ms
90:	learn: 13.8679364	total: 450ms	remaining: 44.5ms
91:	learn: 13.8405578	total: 457ms	remaining: 39.8ms
92:	learn: 13.7711325	total: 464ms	remaining: 34.9ms
93:	learn: 13.7357019	total: 470ms	remaining: 30ms
94:	learn: 13.6735271	total: 476ms	remaining: 25.1ms
95:	learn: 13.5682393	total: 481ms	remaining: 20ms
96:	learn: 13.5342610	total: 486ms	remaining: 15ms
97:	learn: 13.4710034	total: 490ms	remaining: 10ms
98:	learn: 13.4022402	total: 495ms	remaining: 5ms
99:	learn: 13.3351238	total: 499ms	remaining: 0us
0:	learn: 42.9181702	total: 5.5ms	remaining: 544ms
1:	learn: 42.0286736	total: 9.85ms	remaining: 483ms
2:	learn: 41.2764568	total: 14.1ms	remaining: 455ms
3:	learn: 40.4721918	total: 18.4ms	remaining: 442ms
4:	learn: 39.8518928	total: 23ms	remaining: 437ms
5:	learn: 39.2645479	total: 28ms	remaining: 438ms
6:	learn: 38.4453704	total: 32.6ms	remaining: 433ms
7:	learn: 37.7122059	total: 37.5ms	remaining: 431ms
8:	learn: 36.9185796	total: 42.4ms	remaining: 428ms
9:	learn: 36.1668427	total: 46.9ms	remaining: 422ms
10:	learn: 35.5639029	total: 52.2ms	remaining: 422ms
11:	learn: 34.7724193	total: 57.1ms	remaining: 419ms
12:	learn: 34.3053433	total: 61.7ms	remaining: 413ms
13:	learn: 33.6561327	total: 63.2ms	remaining: 388ms
14:	learn: 33.0134042	total: 67.5ms	remaining: 382ms
15:	learn: 32.4483300	total: 72ms	remaining: 378ms
16:	learn: 31.8581144	total: 76.6ms	remaining: 374ms
17:	learn: 31.2858301	total: 81.2ms	remaining: 370ms
18:	learn: 30.8483018	total: 86ms	remaining: 366ms
19:	learn: 30.4174622	total: 90.8ms	remaining: 363ms
20:	learn: 29.8994411	total: 95.3ms	remaining: 359ms
21:	learn: 29.5045355	total: 100ms	remaining: 355ms
22:	learn: 28.9923519	total: 105ms	remaining: 351ms
23:	learn: 28.4255717	total: 110ms	remaining: 348ms
24:	learn: 28.0283139	total: 115ms	remaining: 344ms
25:	learn: 27.7434814	total: 120ms	remaining: 341ms
26:	learn: 27.2770731	total: 125ms	remaining: 338ms
27:	learn: 26.8928270	total: 132ms	remaining: 340ms
28:	learn: 26.4282671	total: 140ms	remaining: 342ms
29:	learn: 26.0272764	total: 151ms	remaining: 352ms
30:	learn: 25.7579312	total: 158ms	remaining: 352ms
31:	learn: 25.4542434	total: 164ms	remaining: 349ms
32:	learn: 25.1232564	total: 169ms	remaining: 344ms
33:	learn: 24.8110795	total: 175ms	remaining: 340ms
34:	learn: 24.5077579	total: 180ms	remaining: 335ms
35:	learn: 24.1909000	total: 186ms	remaining: 330ms
36:	learn: 23.8719468	total: 191ms	remaining: 325ms
37:	learn: 23.5764366	total: 192ms	remaining: 314ms
38:	learn: 23.3468086	total: 205ms	remaining: 320ms
39:	learn: 23.0908771	total: 209ms	remaining: 314ms
40:	learn: 22.8580876	total: 215ms	remaining: 310ms
41:	learn: 22.6060825	total: 221ms	remaining: 305ms
42:	learn: 22.4125407	total: 226ms	remaining: 300ms
43:	learn: 22.1990617	total: 231ms	remaining: 294ms
44:	learn: 21.9716164	total: 235ms	remaining: 288ms
45:	learn: 21.8360935	total: 240ms	remaining: 282ms
46:	learn: 21.6169256	total: 245ms	remaining: 276ms
47:	learn: 21.4620612	total: 249ms	remaining: 270ms
48:	learn: 21.2894194	total: 254ms	remaining: 265ms
49:	learn: 21.1066266	total: 259ms	remaining: 259ms
50:	learn: 20.9484898	total: 264ms	remaining: 254ms
51:	learn: 20.7195338	total: 269ms	remaining: 248ms
52:	learn: 20.4899740	total: 273ms	remaining: 242ms
53:	learn: 20.3356583	total: 279ms	remaining: 238ms
54:	learn: 20.0754393	total: 284ms	remaining: 232ms
55:	learn: 19.9199159	total: 289ms	remaining: 227ms
56:	learn: 19.7761128	total: 293ms	remaining: 221ms
57:	learn: 19.6533060	total: 299ms	remaining: 216ms
58:	learn: 19.5113942	total: 304ms	remaining: 211ms
59:	learn: 19.3985022	total: 309ms	remaining: 206ms
60:	learn: 19.2683443	total: 314ms	remaining: 201ms
61:	learn: 19.1460824	total: 319ms	remaining: 196ms
62:	learn: 19.0042655	total: 324ms	remaining: 190ms
63:	learn: 18.8720873	total: 334ms	remaining: 188ms
64:	learn: 18.7183888	total: 341ms	remaining: 183ms
65:	learn: 18.5472360	total: 348ms	remaining: 179ms
66:	learn: 18.3976642	total: 353ms	remaining: 174ms
67:	learn: 18.2282851	total: 359ms	remaining: 169ms
68:	learn: 18.1469157	total: 364ms	remaining: 163ms
69:	learn: 18.0649494	total: 369ms	remaining: 158ms
70:	learn: 17.9485405	total: 374ms	remaining: 153ms
71:	learn: 17.8460261	total: 379ms	remaining: 147ms
72:	learn: 17.7679843	total: 384ms	remaining: 142ms
73:	learn: 17.5989290	total: 389ms	remaining: 137ms
74:	learn: 17.4381322	total: 393ms	remaining: 131ms
75:	learn: 17.3370886	total: 398ms	remaining: 126ms
76:	learn: 17.2675308	total: 403ms	remaining: 120ms
77:	learn: 17.1946430	total: 408ms	remaining: 115ms
78:	learn: 17.0923725	total: 412ms	remaining: 110ms
79:	learn: 17.0537265	total: 417ms	remaining: 104ms
80:	learn: 16.9456831	total: 422ms	remaining: 99ms
81:	learn: 16.8457353	total: 427ms	remaining: 93.6ms
82:	learn: 16.7469310	total: 431ms	remaining: 88.3ms
83:	learn: 16.6679953	total: 436ms	remaining: 83ms
84:	learn: 16.6274189	total: 441ms	remaining: 77.8ms
85:	learn: 16.5516530	total: 445ms	remaining: 72.5ms
86:	learn: 16.4886066	total: 450ms	remaining: 67.2ms
87:	learn: 16.3947859	total: 454ms	remaining: 61.9ms
88:	learn: 16.3406495	total: 459ms	remaining: 56.7ms
89:	learn: 16.3019195	total: 464ms	remaining: 51.5ms
90:	learn: 16.1860681	total: 468ms	remaining: 46.3ms
91:	learn: 16.1282812	total: 473ms	remaining: 41.2ms
92:	learn: 16.0303652	total: 478ms	remaining: 36ms
93:	learn: 15.9561692	total: 483ms	remaining: 30.8ms
94:	learn: 15.8733994	total: 487ms	remaining: 25.7ms
95:	learn: 15.8108833	total: 492ms	remaining: 20.5ms
96:	learn: 15.7606004	total: 497ms	remaining: 15.4ms
97:	learn: 15.6984664	total: 502ms	remaining: 10.2ms
98:	learn: 15.6223632	total: 507ms	remaining: 5.12ms
99:	learn: 15.5671136	total: 513ms	remaining: 0us
0:	learn: 46.4788614	total: 2.23ms	remaining: 221ms
1:	learn: 45.7608372	total: 7.7ms	remaining: 377ms
2:	learn: 44.8825004	total: 12.5ms	remaining: 405ms
3:	learn: 44.0362738	total: 17.2ms	remaining: 413ms
4:	learn: 43.2086374	total: 21.9ms	remaining: 417ms
5:	learn: 42.5835773	total: 26.7ms	remaining: 419ms
6:	learn: 41.9673269	total: 31.7ms	remaining: 421ms
7:	learn: 41.4748717	total: 37.3ms	remaining: 428ms
8:	learn: 40.7129183	total: 56ms	remaining: 566ms
9:	learn: 39.8900884	total: 60.8ms	remaining: 547ms
10:	learn: 39.4142193	total: 65.6ms	remaining: 531ms
11:	learn: 38.8645613	total: 70ms	remaining: 513ms
12:	learn: 38.2394731	total: 74.9ms	remaining: 501ms
13:	learn: 37.6834515	total: 79.7ms	remaining: 490ms
14:	learn: 37.0673507	total: 84.5ms	remaining: 479ms
15:	learn: 36.4728340	total: 89.5ms	remaining: 470ms
16:	learn: 36.0489086	total: 94ms	remaining: 459ms
17:	learn: 35.4744141	total: 98.4ms	remaining: 448ms
18:	learn: 35.0106021	total: 104ms	remaining: 442ms
19:	learn: 34.5586053	total: 108ms	remaining: 433ms
20:	learn: 34.1308223	total: 113ms	remaining: 424ms
21:	learn: 33.7701450	total: 118ms	remaining: 417ms
22:	learn: 33.4425444	total: 123ms	remaining: 411ms
23:	learn: 33.0296412	total: 130ms	remaining: 413ms
24:	learn: 32.6359803	total: 137ms	remaining: 411ms
25:	learn: 32.1846182	total: 144ms	remaining: 411ms
26:	learn: 31.7620230	total: 151ms	remaining: 408ms
27:	learn: 31.4669337	total: 156ms	remaining: 402ms
28:	learn: 31.0792062	total: 162ms	remaining: 397ms
29:	learn: 30.7970537	total: 167ms	remaining: 390ms
30:	learn: 30.4952215	total: 172ms	remaining: 383ms
31:	learn: 30.2845344	total: 177ms	remaining: 376ms
32:	learn: 29.9592732	total: 181ms	remaining: 368ms
33:	learn: 29.6798596	total: 186ms	remaining: 362ms
34:	learn: 29.3368905	total: 191ms	remaining: 355ms
35:	learn: 29.0621238	total: 196ms	remaining: 348ms
36:	learn: 28.6445375	total: 200ms	remaining: 341ms
37:	learn: 28.2418096	total: 205ms	remaining: 334ms
38:	learn: 27.9495390	total: 209ms	remaining: 327ms
39:	learn: 27.6958160	total: 214ms	remaining: 320ms
40:	learn: 27.4811189	total: 218ms	remaining: 314ms
41:	learn: 27.1494420	total: 223ms	remaining: 308ms
42:	learn: 26.8388873	total: 228ms	remaining: 302ms
43:	learn: 26.5721300	total: 232ms	remaining: 295ms
44:	learn: 26.3384738	total: 237ms	remaining: 289ms
45:	learn: 26.1894781	total: 241ms	remaining: 283ms
46:	learn: 25.9580198	total: 246ms	remaining: 277ms
47:	learn: 25.7897985	total: 251ms	remaining: 272ms
48:	learn: 25.6000271	total: 256ms	remaining: 266ms
49:	learn: 25.4130873	total: 260ms	remaining: 260ms
50:	learn: 25.1699061	total: 265ms	remaining: 255ms
51:	learn: 24.9324449	total: 270ms	remaining: 249ms
52:	learn: 24.7729152	total: 275ms	remaining: 244ms
53:	learn: 24.5026563	total: 280ms	remaining: 239ms
54:	learn: 24.2332627	total: 285ms	remaining: 233ms
55:	learn: 23.9611984	total: 290ms	remaining: 227ms
56:	learn: 23.7862603	total: 295ms	remaining: 222ms
57:	learn: 23.6318154	total: 299ms	remaining: 217ms
58:	learn: 23.4443306	total: 304ms	remaining: 211ms
59:	learn: 23.2581425	total: 309ms	remaining: 206ms
60:	learn: 23.0549901	total: 314ms	remaining: 201ms
61:	learn: 22.8666218	total: 319ms	remaining: 196ms
62:	learn: 22.6956739	total: 324ms	remaining: 190ms
63:	learn: 22.5068544	total: 331ms	remaining: 186ms
64:	learn: 22.1859147	total: 338ms	remaining: 182ms
65:	learn: 22.0462043	total: 345ms	remaining: 178ms
66:	learn: 21.9329563	total: 351ms	remaining: 173ms
67:	learn: 21.8029736	total: 356ms	remaining: 168ms
68:	learn: 21.6861091	total: 363ms	remaining: 163ms
69:	learn: 21.4838140	total: 369ms	remaining: 158ms
70:	learn: 21.3548921	total: 375ms	remaining: 153ms
71:	learn: 21.2244517	total: 380ms	remaining: 148ms
72:	learn: 21.0702958	total: 385ms	remaining: 143ms
73:	learn: 20.9224662	total: 391ms	remaining: 137ms
74:	learn: 20.8150357	total: 396ms	remaining: 132ms
75:	learn: 20.6962739	total: 402ms	remaining: 127ms
76:	learn: 20.5809258	total: 407ms	remaining: 122ms
77:	learn: 20.4735470	total: 413ms	remaining: 116ms
78:	learn: 20.3778167	total: 418ms	remaining: 111ms
79:	learn: 20.2211268	total: 424ms	remaining: 106ms
80:	learn: 20.1478678	total: 430ms	remaining: 101ms
81:	learn: 20.1032967	total: 435ms	remaining: 95.5ms
82:	learn: 19.9236300	total: 440ms	remaining: 90.1ms
83:	learn: 19.8151745	total: 445ms	remaining: 84.8ms
84:	learn: 19.7099856	total: 451ms	remaining: 79.6ms
85:	learn: 19.6264833	total: 457ms	remaining: 74.3ms
86:	learn: 19.4916361	total: 462ms	remaining: 69ms
87:	learn: 19.4050529	total: 467ms	remaining: 63.6ms
88:	learn: 19.2547065	total: 472ms	remaining: 58.3ms
89:	learn: 19.1610225	total: 476ms	remaining: 52.9ms
90:	learn: 19.0898958	total: 481ms	remaining: 47.6ms
91:	learn: 19.0489664	total: 486ms	remaining: 42.3ms
92:	learn: 18.9206240	total: 491ms	remaining: 37ms
93:	learn: 18.8636239	total: 496ms	remaining: 31.6ms
94:	learn: 18.8126187	total: 501ms	remaining: 26.3ms
95:	learn: 18.7579275	total: 505ms	remaining: 21.1ms
96:	learn: 18.6382753	total: 510ms	remaining: 15.8ms
97:	learn: 18.5397334	total: 514ms	remaining: 10.5ms
98:	learn: 18.4375951	total: 519ms	remaining: 5.24ms
99:	learn: 18.4033755	total: 524ms	remaining: 0us
0:	learn: 46.1068821	total: 2.21ms	remaining: 219ms
1:	learn: 45.3970261	total: 6.87ms	remaining: 337ms
2:	learn: 44.8732696	total: 11.3ms	remaining: 364ms
3:	learn: 44.1290184	total: 15.8ms	remaining: 380ms
4:	learn: 43.3290271	total: 20.3ms	remaining: 387ms
5:	learn: 42.7069090	total: 24.8ms	remaining: 388ms
6:	learn: 42.0572971	total: 29.3ms	remaining: 389ms
7:	learn: 41.4797924	total: 33.8ms	remaining: 388ms
8:	learn: 41.0023122	total: 38.5ms	remaining: 389ms
9:	learn: 40.5330570	total: 42.8ms	remaining: 385ms
10:	learn: 39.9726545	total: 46.9ms	remaining: 380ms
11:	learn: 39.3044053	total: 50.8ms	remaining: 373ms
12:	learn: 38.8169735	total: 55.3ms	remaining: 370ms
13:	learn: 38.2458761	total: 60.1ms	remaining: 369ms
14:	learn: 37.6280321	total: 64.3ms	remaining: 364ms
15:	learn: 37.0800610	total: 68.7ms	remaining: 361ms
16:	learn: 36.5489363	total: 73.5ms	remaining: 359ms
17:	learn: 36.0981456	total: 77.9ms	remaining: 355ms
18:	learn: 35.6956274	total: 81.9ms	remaining: 349ms
19:	learn: 35.1471999	total: 86.3ms	remaining: 345ms
20:	learn: 34.6235408	total: 90.7ms	remaining: 341ms
21:	learn: 34.1987018	total: 94.7ms	remaining: 336ms
22:	learn: 33.8985062	total: 99.4ms	remaining: 333ms
23:	learn: 33.3869017	total: 104ms	remaining: 328ms
24:	learn: 32.9100550	total: 108ms	remaining: 325ms
25:	learn: 32.4156208	total: 112ms	remaining: 320ms
26:	learn: 31.9320493	total: 116ms	remaining: 314ms
27:	learn: 31.5711468	total: 120ms	remaining: 309ms
28:	learn: 31.2404433	total: 125ms	remaining: 305ms
29:	learn: 30.8807946	total: 129ms	remaining: 301ms
30:	learn: 30.5948438	total: 134ms	remaining: 297ms
31:	learn: 30.3885560	total: 138ms	remaining: 293ms
32:	learn: 30.0625101	total: 142ms	remaining: 289ms
33:	learn: 29.9113114	total: 147ms	remaining: 285ms
34:	learn: 29.6983470	total: 152ms	remaining: 281ms
35:	learn: 29.4775849	total: 156ms	remaining: 278ms
36:	learn: 29.0538055	total: 161ms	remaining: 274ms
37:	learn: 28.6792318	total: 166ms	remaining: 270ms
38:	learn: 28.4231383	total: 170ms	remaining: 266ms
39:	learn: 28.1078565	total: 177ms	remaining: 266ms
40:	learn: 27.9079179	total: 184ms	remaining: 265ms
41:	learn: 27.6721506	total: 195ms	remaining: 269ms
42:	learn: 27.4228033	total: 201ms	remaining: 267ms
43:	learn: 27.1740534	total: 209ms	remaining: 265ms
44:	learn: 26.8584071	total: 214ms	remaining: 262ms
45:	learn: 26.6902083	total: 219ms	remaining: 257ms
46:	learn: 26.4855335	total: 235ms	remaining: 265ms
47:	learn: 26.2730822	total: 240ms	remaining: 260ms
48:	learn: 26.1058689	total: 245ms	remaining: 255ms
49:	learn: 25.8587318	total: 250ms	remaining: 250ms
50:	learn: 25.7558005	total: 255ms	remaining: 245ms
51:	learn: 25.5846925	total: 261ms	remaining: 241ms
52:	learn: 25.4249887	total: 267ms	remaining: 236ms
53:	learn: 25.1911054	total: 271ms	remaining: 231ms
54:	learn: 25.0544755	total: 275ms	remaining: 225ms
55:	learn: 24.8874006	total: 279ms	remaining: 220ms
56:	learn: 24.7736279	total: 284ms	remaining: 214ms
57:	learn: 24.6156255	total: 288ms	remaining: 209ms
58:	learn: 24.3962421	total: 292ms	remaining: 203ms
59:	learn: 24.2685129	total: 297ms	remaining: 198ms
60:	learn: 24.1874096	total: 301ms	remaining: 192ms
61:	learn: 24.0394287	total: 305ms	remaining: 187ms
62:	learn: 23.9281768	total: 309ms	remaining: 181ms
63:	learn: 23.7423900	total: 313ms	remaining: 176ms
64:	learn: 23.6015209	total: 318ms	remaining: 171ms
65:	learn: 23.4677943	total: 322ms	remaining: 166ms
66:	learn: 23.3215256	total: 327ms	remaining: 161ms
67:	learn: 23.1869360	total: 332ms	remaining: 156ms
68:	learn: 22.9691180	total: 337ms	remaining: 151ms
69:	learn: 22.7531657	total: 342ms	remaining: 147ms
70:	learn: 22.6133477	total: 348ms	remaining: 142ms
71:	learn: 22.3452758	total: 353ms	remaining: 137ms
72:	learn: 22.2065350	total: 358ms	remaining: 133ms
73:	learn: 22.1071155	total: 364ms	remaining: 128ms
74:	learn: 21.9740686	total: 369ms	remaining: 123ms
75:	learn: 21.8892033	total: 377ms	remaining: 119ms
76:	learn: 21.8267882	total: 386ms	remaining: 115ms
77:	learn: 21.7423479	total: 394ms	remaining: 111ms
78:	learn: 21.6242075	total: 400ms	remaining: 106ms
79:	learn: 21.5016910	total: 407ms	remaining: 102ms
80:	learn: 21.4806623	total: 408ms	remaining: 95.7ms
81:	learn: 21.3166637	total: 413ms	remaining: 90.7ms
82:	learn: 21.2222534	total: 418ms	remaining: 85.6ms
83:	learn: 21.1535708	total: 423ms	remaining: 80.5ms
84:	learn: 21.0858902	total: 428ms	remaining: 75.5ms
85:	learn: 20.9206003	total: 433ms	remaining: 70.4ms
86:	learn: 20.8674695	total: 438ms	remaining: 65.4ms
87:	learn: 20.8089875	total: 443ms	remaining: 60.4ms
88:	learn: 20.7085401	total: 448ms	remaining: 55.3ms
89:	learn: 20.5513468	total: 453ms	remaining: 50.3ms
90:	learn: 20.4586742	total: 458ms	remaining: 45.3ms
91:	learn: 20.3932149	total: 463ms	remaining: 40.3ms
92:	learn: 20.3000895	total: 468ms	remaining: 35.2ms
93:	learn: 20.2254009	total: 473ms	remaining: 30.2ms
94:	learn: 20.1750050	total: 478ms	remaining: 25.1ms
95:	learn: 20.0715579	total: 482ms	remaining: 20.1ms
96:	learn: 19.9920082	total: 487ms	remaining: 15.1ms
97:	learn: 19.9664401	total: 492ms	remaining: 10ms
98:	learn: 19.8689673	total: 496ms	remaining: 5.01ms
99:	learn: 19.7537356	total: 501ms	remaining: 0us
0:	learn: 46.8832143	total: 4.96ms	remaining: 491ms
1:	learn: 45.8700349	total: 9.41ms	remaining: 461ms
2:	learn: 45.0546867	total: 14.1ms	remaining: 457ms
3:	learn: 44.2829439	total: 18.8ms	remaining: 452ms
4:	learn: 43.4609042	total: 23.4ms	remaining: 445ms
5:	learn: 42.6754991	total: 32.5ms	remaining: 509ms
6:	learn: 41.9234935	total: 41ms	remaining: 545ms
7:	learn: 41.3987518	total: 48.4ms	remaining: 556ms
8:	learn: 40.6625066	total: 55.8ms	remaining: 564ms
9:	learn: 40.0029561	total: 61.2ms	remaining: 551ms
10:	learn: 39.3897033	total: 66.4ms	remaining: 537ms
11:	learn: 38.7741453	total: 72.1ms	remaining: 528ms
12:	learn: 38.1201100	total: 77.4ms	remaining: 518ms
13:	learn: 37.5129454	total: 82.4ms	remaining: 506ms
14:	learn: 37.2062206	total: 88ms	remaining: 499ms
15:	learn: 36.6831741	total: 93.6ms	remaining: 491ms
16:	learn: 36.2902788	total: 99.2ms	remaining: 484ms
17:	learn: 35.7639930	total: 105ms	remaining: 476ms
18:	learn: 35.2580953	total: 110ms	remaining: 467ms
19:	learn: 34.7809739	total: 115ms	remaining: 460ms
20:	learn: 34.1330433	total: 121ms	remaining: 455ms
21:	learn: 33.7302219	total: 125ms	remaining: 445ms
22:	learn: 33.3502495	total: 129ms	remaining: 433ms
23:	learn: 33.0067804	total: 134ms	remaining: 423ms
24:	learn: 32.6897855	total: 138ms	remaining: 414ms
25:	learn: 32.4361119	total: 143ms	remaining: 406ms
26:	learn: 32.1278981	total: 147ms	remaining: 398ms
27:	learn: 31.7863721	total: 151ms	remaining: 389ms
28:	learn: 31.4791450	total: 156ms	remaining: 381ms
29:	learn: 31.1760161	total: 160ms	remaining: 374ms
30:	learn: 30.9238888	total: 165ms	remaining: 366ms
31:	learn: 30.5500905	total: 169ms	remaining: 359ms
32:	learn: 30.3078126	total: 173ms	remaining: 351ms
33:	learn: 30.0480921	total: 177ms	remaining: 344ms
34:	learn: 29.8623884	total: 182ms	remaining: 337ms
35:	learn: 29.5991038	total: 186ms	remaining: 330ms
36:	learn: 29.4061161	total: 190ms	remaining: 323ms
37:	learn: 29.0269515	total: 194ms	remaining: 317ms
38:	learn: 28.8224959	total: 199ms	remaining: 311ms
39:	learn: 28.6417843	total: 203ms	remaining: 304ms
40:	learn: 28.3633368	total: 208ms	remaining: 299ms
41:	learn: 28.0200246	total: 212ms	remaining: 293ms
42:	learn: 27.7221254	total: 217ms	remaining: 287ms
43:	learn: 27.5105818	total: 221ms	remaining: 281ms
44:	learn: 27.3551010	total: 226ms	remaining: 276ms
45:	learn: 27.0787522	total: 230ms	remaining: 270ms
46:	learn: 26.8726317	total: 235ms	remaining: 265ms
47:	learn: 26.8003277	total: 240ms	remaining: 260ms
48:	learn: 26.5493785	total: 245ms	remaining: 255ms
49:	learn: 26.3699550	total: 249ms	remaining: 249ms
50:	learn: 26.1519631	total: 259ms	remaining: 249ms
51:	learn: 25.9277325	total: 267ms	remaining: 246ms
52:	learn: 25.7286035	total: 273ms	remaining: 242ms
53:	learn: 25.4999193	total: 279ms	remaining: 237ms
54:	learn: 25.3434703	total: 284ms	remaining: 232ms
55:	learn: 25.1497545	total: 288ms	remaining: 226ms
56:	learn: 24.9498143	total: 293ms	remaining: 221ms
57:	learn: 24.6509390	total: 297ms	remaining: 215ms
58:	learn: 24.5576144	total: 301ms	remaining: 209ms
59:	learn: 24.4265144	total: 306ms	remaining: 204ms
60:	learn: 24.3100706	total: 310ms	remaining: 198ms
61:	learn: 24.1727952	total: 315ms	remaining: 193ms
62:	learn: 24.0478558	total: 319ms	remaining: 187ms
63:	learn: 23.9124577	total: 323ms	remaining: 182ms
64:	learn: 23.7703718	total: 328ms	remaining: 177ms
65:	learn: 23.5975027	total: 332ms	remaining: 171ms
66:	learn: 23.4318077	total: 336ms	remaining: 166ms
67:	learn: 23.3099691	total: 341ms	remaining: 160ms
68:	learn: 23.1947982	total: 345ms	remaining: 155ms
69:	learn: 23.0260174	total: 350ms	remaining: 150ms
70:	learn: 22.8523100	total: 355ms	remaining: 145ms
71:	learn: 22.8028534	total: 360ms	remaining: 140ms
72:	learn: 22.6880658	total: 365ms	remaining: 135ms
73:	learn: 22.5956809	total: 370ms	remaining: 130ms
74:	learn: 22.4692932	total: 375ms	remaining: 125ms
75:	learn: 22.2863504	total: 380ms	remaining: 120ms
76:	learn: 22.1911237	total: 384ms	remaining: 115ms
77:	learn: 22.1098391	total: 389ms	remaining: 110ms
78:	learn: 22.0182738	total: 394ms	remaining: 105ms
79:	learn: 21.9306746	total: 399ms	remaining: 99.7ms
80:	learn: 21.7508233	total: 404ms	remaining: 94.7ms
81:	learn: 21.7108446	total: 408ms	remaining: 89.7ms
82:	learn: 21.5931852	total: 413ms	remaining: 84.6ms
83:	learn: 21.4480361	total: 418ms	remaining: 79.7ms
84:	learn: 21.3092119	total: 423ms	remaining: 74.6ms
85:	learn: 21.2605557	total: 427ms	remaining: 69.5ms
86:	learn: 21.1123597	total: 432ms	remaining: 64.5ms
87:	learn: 21.0115642	total: 437ms	remaining: 59.5ms
88:	learn: 20.9389040	total: 442ms	remaining: 54.6ms
89:	learn: 20.8300300	total: 446ms	remaining: 49.6ms
90:	learn: 20.7159733	total: 451ms	remaining: 44.6ms
91:	learn: 20.6282090	total: 456ms	remaining: 39.7ms
92:	learn: 20.5164529	total: 461ms	remaining: 34.7ms
93:	learn: 20.4692032	total: 471ms	remaining: 30.1ms
94:	learn: 20.3768451	total: 481ms	remaining: 25.3ms
95:	learn: 20.2808056	total: 489ms	remaining: 20.4ms
96:	learn: 20.2082089	total: 497ms	remaining: 15.4ms
97:	learn: 20.1698768	total: 502ms	remaining: 10.2ms
98:	learn: 20.1048816	total: 507ms	remaining: 5.12ms
99:	learn: 20.0086159	total: 512ms	remaining: 0us
avg_Mae_val de la población en la generación 3: 18.22517146010445 con std media = 9.05258297149202
Mae_val del Mejor modelo en la generación 3: 18.0783 con std = 8.9607
0:	learn: 27.6506730	total: 4.65ms	remaining: 460ms
1:	learn: 27.1638793	total: 8.8ms	remaining: 431ms
2:	learn: 26.8000665	total: 13.3ms	remaining: 430ms
3:	learn: 26.4256132	total: 17.7ms	remaining: 425ms
4:	learn: 26.0088351	total: 22.1ms	remaining: 419ms
5:	learn: 25.7558298	total: 26.2ms	remaining: 410ms
6:	learn: 25.3380711	total: 30.6ms	remaining: 407ms
7:	learn: 25.0571611	total: 34.9ms	remaining: 402ms
8:	learn: 24.6790148	total: 39.2ms	remaining: 396ms
9:	learn: 24.3600941	total: 43.4ms	remaining: 390ms
10:	learn: 24.1105667	total: 47.6ms	remaining: 385ms
11:	learn: 23.7736542	total: 52.1ms	remaining: 382ms
12:	learn: 23.5824429	total: 56.5ms	remaining: 378ms
13:	learn: 23.2658303	total: 61.2ms	remaining: 376ms
14:	learn: 23.0061886	total: 65.6ms	remaining: 372ms
15:	learn: 22.8060389	total: 70.5ms	remaining: 370ms
16:	learn: 22.5899735	total: 74.9ms	remaining: 366ms
17:	learn: 22.3625048	total: 79.8ms	remaining: 363ms
18:	learn: 22.0706477	total: 84.5ms	remaining: 360ms
19:	learn: 21.8739394	total: 89ms	remaining: 356ms
20:	learn: 21.6143650	total: 93.5ms	remaining: 352ms
21:	learn: 21.4571623	total: 98ms	remaining: 347ms
22:	learn: 21.2395769	total: 103ms	remaining: 346ms
23:	learn: 20.9801795	total: 111ms	remaining: 351ms
24:	learn: 20.8036808	total: 118ms	remaining: 353ms
25:	learn: 20.6387539	total: 125ms	remaining: 354ms
26:	learn: 20.4401427	total: 129ms	remaining: 350ms
27:	learn: 20.2879575	total: 135ms	remaining: 348ms
28:	learn: 20.0538664	total: 140ms	remaining: 343ms
29:	learn: 19.8363102	total: 144ms	remaining: 336ms
30:	learn: 19.7015446	total: 148ms	remaining: 330ms
31:	learn: 19.5483114	total: 153ms	remaining: 325ms
32:	learn: 19.4163053	total: 158ms	remaining: 320ms
33:	learn: 19.2880625	total: 163ms	remaining: 316ms
34:	learn: 19.1303389	total: 168ms	remaining: 312ms
35:	learn: 18.9237448	total: 172ms	remaining: 306ms
36:	learn: 18.8142925	total: 177ms	remaining: 302ms
37:	learn: 18.6994696	total: 182ms	remaining: 297ms
38:	learn: 18.5629211	total: 186ms	remaining: 291ms
39:	learn: 18.4600917	total: 191ms	remaining: 286ms
40:	learn: 18.3567139	total: 195ms	remaining: 281ms
41:	learn: 18.2120527	total: 200ms	remaining: 276ms
42:	learn: 18.0688062	total: 204ms	remaining: 271ms
43:	learn: 17.9250181	total: 209ms	remaining: 266ms
44:	learn: 17.8399138	total: 214ms	remaining: 262ms
45:	learn: 17.6720713	total: 220ms	remaining: 258ms
46:	learn: 17.5273091	total: 224ms	remaining: 253ms
47:	learn: 17.4232814	total: 229ms	remaining: 249ms
48:	learn: 17.2957579	total: 235ms	remaining: 244ms
49:	learn: 17.1892874	total: 239ms	remaining: 239ms
50:	learn: 17.0490355	total: 244ms	remaining: 235ms
51:	learn: 16.9666450	total: 249ms	remaining: 230ms
52:	learn: 16.8600056	total: 254ms	remaining: 225ms
53:	learn: 16.7542588	total: 259ms	remaining: 220ms
54:	learn: 16.6316077	total: 263ms	remaining: 215ms
55:	learn: 16.5588112	total: 268ms	remaining: 210ms
56:	learn: 16.5010186	total: 272ms	remaining: 205ms
57:	learn: 16.4081540	total: 277ms	remaining: 201ms
58:	learn: 16.3040451	total: 283ms	remaining: 196ms
59:	learn: 16.1890564	total: 287ms	remaining: 192ms
60:	learn: 16.0977103	total: 292ms	remaining: 187ms
61:	learn: 15.9627607	total: 297ms	remaining: 182ms
62:	learn: 15.9022248	total: 302ms	remaining: 177ms
63:	learn: 15.8151881	total: 310ms	remaining: 175ms
64:	learn: 15.7353125	total: 321ms	remaining: 173ms
65:	learn: 15.6312897	total: 328ms	remaining: 169ms
66:	learn: 15.5330927	total: 336ms	remaining: 165ms
67:	learn: 15.4698681	total: 341ms	remaining: 161ms
68:	learn: 15.4108571	total: 347ms	remaining: 156ms
69:	learn: 15.3492945	total: 352ms	remaining: 151ms
70:	learn: 15.3036540	total: 357ms	remaining: 146ms
71:	learn: 15.2390833	total: 362ms	remaining: 141ms
72:	learn: 15.1556327	total: 368ms	remaining: 136ms
73:	learn: 15.1016315	total: 373ms	remaining: 131ms
74:	learn: 15.0287076	total: 378ms	remaining: 126ms
75:	learn: 14.9530572	total: 384ms	remaining: 121ms
76:	learn: 14.8965517	total: 390ms	remaining: 116ms
77:	learn: 14.8125426	total: 396ms	remaining: 112ms
78:	learn: 14.7435359	total: 402ms	remaining: 107ms
79:	learn: 14.6963163	total: 407ms	remaining: 102ms
80:	learn: 14.6200060	total: 412ms	remaining: 96.6ms
81:	learn: 14.5707760	total: 417ms	remaining: 91.5ms
82:	learn: 14.5053651	total: 422ms	remaining: 86.4ms
83:	learn: 14.4115458	total: 427ms	remaining: 81.3ms
84:	learn: 14.3117159	total: 432ms	remaining: 76.2ms
85:	learn: 14.2511326	total: 437ms	remaining: 71.1ms
86:	learn: 14.1372486	total: 442ms	remaining: 66ms
87:	learn: 14.0992301	total: 447ms	remaining: 60.9ms
88:	learn: 14.0228331	total: 452ms	remaining: 55.8ms
89:	learn: 13.9249836	total: 457ms	remaining: 50.8ms
90:	learn: 13.8679364	total: 462ms	remaining: 45.6ms
91:	learn: 13.8405578	total: 466ms	remaining: 40.5ms
92:	learn: 13.7711325	total: 471ms	remaining: 35.5ms
93:	learn: 13.7357019	total: 476ms	remaining: 30.4ms
94:	learn: 13.6735271	total: 482ms	remaining: 25.4ms
95:	learn: 13.5682393	total: 487ms	remaining: 20.3ms
96:	learn: 13.5342610	total: 491ms	remaining: 15.2ms
97:	learn: 13.4710034	total: 496ms	remaining: 10.1ms
98:	learn: 13.4022402	total: 500ms	remaining: 5.05ms
99:	learn: 13.3351238	total: 505ms	remaining: 0us
0:	learn: 42.9181702	total: 5.01ms	remaining: 497ms
1:	learn: 42.0286736	total: 9.41ms	remaining: 461ms
2:	learn: 41.2764568	total: 13.5ms	remaining: 435ms
3:	learn: 40.4721918	total: 17.4ms	remaining: 418ms
4:	learn: 39.8518928	total: 21.7ms	remaining: 412ms
5:	learn: 39.2645479	total: 26.1ms	remaining: 408ms
6:	learn: 38.4453704	total: 30.4ms	remaining: 404ms
7:	learn: 37.7122059	total: 34.5ms	remaining: 397ms
8:	learn: 36.9185796	total: 38.6ms	remaining: 390ms
9:	learn: 36.1668427	total: 43ms	remaining: 387ms
10:	learn: 35.5639029	total: 47.2ms	remaining: 381ms
11:	learn: 34.7724193	total: 51.4ms	remaining: 377ms
12:	learn: 34.3053433	total: 55.7ms	remaining: 373ms
13:	learn: 33.6561327	total: 56.9ms	remaining: 350ms
14:	learn: 33.0134042	total: 61ms	remaining: 346ms
15:	learn: 32.4483300	total: 65.3ms	remaining: 343ms
16:	learn: 31.8581144	total: 69.7ms	remaining: 340ms
17:	learn: 31.2858301	total: 73.9ms	remaining: 337ms
18:	learn: 30.8483018	total: 78.5ms	remaining: 335ms
19:	learn: 30.4174622	total: 82.8ms	remaining: 331ms
20:	learn: 29.8994411	total: 86.9ms	remaining: 327ms
21:	learn: 29.5045355	total: 91.3ms	remaining: 324ms
22:	learn: 28.9923519	total: 95.7ms	remaining: 321ms
23:	learn: 28.4255717	total: 100ms	remaining: 317ms
24:	learn: 28.0283139	total: 104ms	remaining: 313ms
25:	learn: 27.7434814	total: 108ms	remaining: 309ms
26:	learn: 27.2770731	total: 113ms	remaining: 306ms
27:	learn: 26.8928270	total: 117ms	remaining: 301ms
28:	learn: 26.4282671	total: 121ms	remaining: 297ms
29:	learn: 26.0272764	total: 126ms	remaining: 294ms
30:	learn: 25.7579312	total: 131ms	remaining: 291ms
31:	learn: 25.4542434	total: 135ms	remaining: 288ms
32:	learn: 25.1232564	total: 140ms	remaining: 285ms
33:	learn: 24.8110795	total: 145ms	remaining: 282ms
34:	learn: 24.5077579	total: 150ms	remaining: 278ms
35:	learn: 24.1909000	total: 157ms	remaining: 278ms
36:	learn: 23.8719468	total: 164ms	remaining: 279ms
37:	learn: 23.5764366	total: 165ms	remaining: 270ms
38:	learn: 23.3468086	total: 172ms	remaining: 269ms
39:	learn: 23.0908771	total: 178ms	remaining: 267ms
40:	learn: 22.8580876	total: 184ms	remaining: 265ms
41:	learn: 22.6060825	total: 189ms	remaining: 262ms
42:	learn: 22.4125407	total: 196ms	remaining: 259ms
43:	learn: 22.1990617	total: 201ms	remaining: 256ms
44:	learn: 21.9716164	total: 206ms	remaining: 252ms
45:	learn: 21.8360935	total: 211ms	remaining: 248ms
46:	learn: 21.6169256	total: 217ms	remaining: 244ms
47:	learn: 21.4620612	total: 222ms	remaining: 240ms
48:	learn: 21.2894194	total: 227ms	remaining: 236ms
49:	learn: 21.1066266	total: 232ms	remaining: 232ms
50:	learn: 20.9484898	total: 237ms	remaining: 228ms
51:	learn: 20.7195338	total: 243ms	remaining: 224ms
52:	learn: 20.4899740	total: 248ms	remaining: 220ms
53:	learn: 20.3356583	total: 253ms	remaining: 216ms
54:	learn: 20.0754393	total: 259ms	remaining: 212ms
55:	learn: 19.9199159	total: 264ms	remaining: 207ms
56:	learn: 19.7761128	total: 270ms	remaining: 203ms
57:	learn: 19.6533060	total: 276ms	remaining: 200ms
58:	learn: 19.5113942	total: 281ms	remaining: 195ms
59:	learn: 19.3985022	total: 286ms	remaining: 190ms
60:	learn: 19.2683443	total: 290ms	remaining: 185ms
61:	learn: 19.1460824	total: 295ms	remaining: 181ms
62:	learn: 19.0042655	total: 299ms	remaining: 176ms
63:	learn: 18.8720873	total: 303ms	remaining: 171ms
64:	learn: 18.7183888	total: 308ms	remaining: 166ms
65:	learn: 18.5472360	total: 312ms	remaining: 161ms
66:	learn: 18.3976642	total: 316ms	remaining: 156ms
67:	learn: 18.2282851	total: 321ms	remaining: 151ms
68:	learn: 18.1469157	total: 325ms	remaining: 146ms
69:	learn: 18.0649494	total: 329ms	remaining: 141ms
70:	learn: 17.9485405	total: 334ms	remaining: 136ms
71:	learn: 17.8460261	total: 338ms	remaining: 131ms
72:	learn: 17.7679843	total: 342ms	remaining: 127ms
73:	learn: 17.5989290	total: 347ms	remaining: 122ms
74:	learn: 17.4381322	total: 351ms	remaining: 117ms
75:	learn: 17.3370886	total: 356ms	remaining: 112ms
76:	learn: 17.2675308	total: 361ms	remaining: 108ms
77:	learn: 17.1946430	total: 365ms	remaining: 103ms
78:	learn: 17.0923725	total: 370ms	remaining: 98.4ms
79:	learn: 17.0537265	total: 379ms	remaining: 94.8ms
80:	learn: 16.9456831	total: 386ms	remaining: 90.6ms
81:	learn: 16.8457353	total: 393ms	remaining: 86.3ms
82:	learn: 16.7469310	total: 398ms	remaining: 81.5ms
83:	learn: 16.6679953	total: 404ms	remaining: 77ms
84:	learn: 16.6274189	total: 409ms	remaining: 72.1ms
85:	learn: 16.5516530	total: 413ms	remaining: 67.3ms
86:	learn: 16.4886066	total: 417ms	remaining: 62.4ms
87:	learn: 16.3947859	total: 422ms	remaining: 57.5ms
88:	learn: 16.3406495	total: 426ms	remaining: 52.7ms
89:	learn: 16.3019195	total: 431ms	remaining: 47.8ms
90:	learn: 16.1860681	total: 435ms	remaining: 43ms
91:	learn: 16.1282812	total: 439ms	remaining: 38.2ms
92:	learn: 16.0303652	total: 444ms	remaining: 33.4ms
93:	learn: 15.9561692	total: 448ms	remaining: 28.6ms
94:	learn: 15.8733994	total: 452ms	remaining: 23.8ms
95:	learn: 15.8108833	total: 456ms	remaining: 19ms
96:	learn: 15.7606004	total: 461ms	remaining: 14.3ms
97:	learn: 15.6984664	total: 465ms	remaining: 9.49ms
98:	learn: 15.6223632	total: 469ms	remaining: 4.74ms
99:	learn: 15.5671136	total: 474ms	remaining: 0us
0:	learn: 46.4788614	total: 1.81ms	remaining: 179ms
1:	learn: 45.7608372	total: 6.44ms	remaining: 316ms
2:	learn: 44.8825004	total: 11ms	remaining: 357ms
3:	learn: 44.0362738	total: 15.4ms	remaining: 370ms
4:	learn: 43.2086374	total: 19.9ms	remaining: 378ms
5:	learn: 42.5835773	total: 24.3ms	remaining: 380ms
6:	learn: 41.9673269	total: 29.2ms	remaining: 388ms
7:	learn: 41.4748717	total: 33.9ms	remaining: 390ms
8:	learn: 40.7129183	total: 38.8ms	remaining: 392ms
9:	learn: 39.8900884	total: 43.6ms	remaining: 392ms
10:	learn: 39.4142193	total: 48.4ms	remaining: 391ms
11:	learn: 38.8645613	total: 53ms	remaining: 389ms
12:	learn: 38.2394731	total: 61.1ms	remaining: 409ms
13:	learn: 37.6834515	total: 70.5ms	remaining: 433ms
14:	learn: 37.0673507	total: 78.2ms	remaining: 443ms
15:	learn: 36.4728340	total: 85.9ms	remaining: 451ms
16:	learn: 36.0489086	total: 91.3ms	remaining: 446ms
17:	learn: 35.4744141	total: 96.3ms	remaining: 439ms
18:	learn: 35.0106021	total: 102ms	remaining: 434ms
19:	learn: 34.5586053	total: 107ms	remaining: 430ms
20:	learn: 34.1308223	total: 113ms	remaining: 424ms
21:	learn: 33.7701450	total: 119ms	remaining: 422ms
22:	learn: 33.4425444	total: 124ms	remaining: 417ms
23:	learn: 33.0296412	total: 130ms	remaining: 412ms
24:	learn: 32.6359803	total: 136ms	remaining: 409ms
25:	learn: 32.1846182	total: 142ms	remaining: 403ms
26:	learn: 31.7620230	total: 148ms	remaining: 399ms
27:	learn: 31.4669337	total: 153ms	remaining: 395ms
28:	learn: 31.0792062	total: 158ms	remaining: 387ms
29:	learn: 30.7970537	total: 163ms	remaining: 379ms
30:	learn: 30.4952215	total: 167ms	remaining: 372ms
31:	learn: 30.2845344	total: 172ms	remaining: 366ms
32:	learn: 29.9592732	total: 177ms	remaining: 358ms
33:	learn: 29.6798596	total: 181ms	remaining: 352ms
34:	learn: 29.3368905	total: 186ms	remaining: 346ms
35:	learn: 29.0621238	total: 190ms	remaining: 339ms
36:	learn: 28.6445375	total: 195ms	remaining: 332ms
37:	learn: 28.2418096	total: 199ms	remaining: 325ms
38:	learn: 27.9495390	total: 203ms	remaining: 318ms
39:	learn: 27.6958160	total: 208ms	remaining: 312ms
40:	learn: 27.4811189	total: 212ms	remaining: 306ms
41:	learn: 27.1494420	total: 217ms	remaining: 300ms
42:	learn: 26.8388873	total: 221ms	remaining: 294ms
43:	learn: 26.5721300	total: 226ms	remaining: 288ms
44:	learn: 26.3384738	total: 230ms	remaining: 282ms
45:	learn: 26.1894781	total: 235ms	remaining: 276ms
46:	learn: 25.9580198	total: 240ms	remaining: 271ms
47:	learn: 25.7897985	total: 245ms	remaining: 266ms
48:	learn: 25.6000271	total: 250ms	remaining: 260ms
49:	learn: 25.4130873	total: 255ms	remaining: 255ms
50:	learn: 25.1699061	total: 260ms	remaining: 250ms
51:	learn: 24.9324449	total: 265ms	remaining: 244ms
52:	learn: 24.7729152	total: 274ms	remaining: 243ms
53:	learn: 24.5026563	total: 282ms	remaining: 240ms
54:	learn: 24.2332627	total: 289ms	remaining: 236ms
55:	learn: 23.9611984	total: 294ms	remaining: 231ms
56:	learn: 23.7862603	total: 300ms	remaining: 226ms
57:	learn: 23.6318154	total: 304ms	remaining: 220ms
58:	learn: 23.4443306	total: 309ms	remaining: 214ms
59:	learn: 23.2581425	total: 313ms	remaining: 209ms
60:	learn: 23.0549901	total: 318ms	remaining: 203ms
61:	learn: 22.8666218	total: 322ms	remaining: 197ms
62:	learn: 22.6956739	total: 327ms	remaining: 192ms
63:	learn: 22.5068544	total: 331ms	remaining: 186ms
64:	learn: 22.1859147	total: 335ms	remaining: 180ms
65:	learn: 22.0462043	total: 339ms	remaining: 175ms
66:	learn: 21.9329563	total: 344ms	remaining: 169ms
67:	learn: 21.8029736	total: 348ms	remaining: 164ms
68:	learn: 21.6861091	total: 352ms	remaining: 158ms
69:	learn: 21.4838140	total: 357ms	remaining: 153ms
70:	learn: 21.3548921	total: 361ms	remaining: 148ms
71:	learn: 21.2244517	total: 365ms	remaining: 142ms
72:	learn: 21.0702958	total: 370ms	remaining: 137ms
73:	learn: 20.9224662	total: 374ms	remaining: 131ms
74:	learn: 20.8150357	total: 378ms	remaining: 126ms
75:	learn: 20.6962739	total: 383ms	remaining: 121ms
76:	learn: 20.5809258	total: 387ms	remaining: 116ms
77:	learn: 20.4735470	total: 392ms	remaining: 110ms
78:	learn: 20.3778167	total: 396ms	remaining: 105ms
79:	learn: 20.2211268	total: 401ms	remaining: 100ms
80:	learn: 20.1478678	total: 406ms	remaining: 95.1ms
81:	learn: 20.1032967	total: 410ms	remaining: 90.1ms
82:	learn: 19.9236300	total: 415ms	remaining: 85ms
83:	learn: 19.8151745	total: 420ms	remaining: 79.9ms
84:	learn: 19.7099856	total: 424ms	remaining: 74.9ms
85:	learn: 19.6264833	total: 429ms	remaining: 69.8ms
86:	learn: 19.4916361	total: 433ms	remaining: 64.7ms
87:	learn: 19.4050529	total: 438ms	remaining: 59.7ms
88:	learn: 19.2547065	total: 443ms	remaining: 54.8ms
89:	learn: 19.1610225	total: 448ms	remaining: 49.7ms
90:	learn: 19.0898958	total: 452ms	remaining: 44.7ms
91:	learn: 19.0489664	total: 457ms	remaining: 39.8ms
92:	learn: 18.9206240	total: 462ms	remaining: 34.8ms
93:	learn: 18.8636239	total: 469ms	remaining: 29.9ms
94:	learn: 18.8126187	total: 476ms	remaining: 25ms
95:	learn: 18.7579275	total: 487ms	remaining: 20.3ms
96:	learn: 18.6382753	total: 494ms	remaining: 15.3ms
97:	learn: 18.5397334	total: 500ms	remaining: 10.2ms
98:	learn: 18.4375951	total: 506ms	remaining: 5.11ms
99:	learn: 18.4033755	total: 511ms	remaining: 0us
0:	learn: 46.1068821	total: 2.39ms	remaining: 237ms
1:	learn: 45.3970261	total: 7.62ms	remaining: 373ms
2:	learn: 44.8732696	total: 11.8ms	remaining: 381ms
3:	learn: 44.1290184	total: 16ms	remaining: 385ms
4:	learn: 43.3290271	total: 20ms	remaining: 380ms
5:	learn: 42.7069090	total: 24.6ms	remaining: 386ms
6:	learn: 42.0572971	total: 29ms	remaining: 386ms
7:	learn: 41.4797924	total: 33.2ms	remaining: 382ms
8:	learn: 41.0023122	total: 37.5ms	remaining: 379ms
9:	learn: 40.5330570	total: 41.5ms	remaining: 373ms
10:	learn: 39.9726545	total: 45.7ms	remaining: 369ms
11:	learn: 39.3044053	total: 50.1ms	remaining: 367ms
12:	learn: 38.8169735	total: 54.2ms	remaining: 363ms
13:	learn: 38.2458761	total: 58.6ms	remaining: 360ms
14:	learn: 37.6280321	total: 63.1ms	remaining: 357ms
15:	learn: 37.0800610	total: 67.7ms	remaining: 355ms
16:	learn: 36.5489363	total: 72.3ms	remaining: 353ms
17:	learn: 36.0981456	total: 76.6ms	remaining: 349ms
18:	learn: 35.6956274	total: 81.1ms	remaining: 346ms
19:	learn: 35.1471999	total: 85.5ms	remaining: 342ms
20:	learn: 34.6235408	total: 89.4ms	remaining: 336ms
21:	learn: 34.1987018	total: 94.1ms	remaining: 334ms
22:	learn: 33.8985062	total: 99ms	remaining: 332ms
23:	learn: 33.3869017	total: 104ms	remaining: 329ms
24:	learn: 32.9100550	total: 108ms	remaining: 325ms
25:	learn: 32.4156208	total: 113ms	remaining: 322ms
26:	learn: 31.9320493	total: 118ms	remaining: 319ms
27:	learn: 31.5711468	total: 126ms	remaining: 323ms
28:	learn: 31.2404433	total: 133ms	remaining: 326ms
29:	learn: 30.8807946	total: 141ms	remaining: 328ms
30:	learn: 30.5948438	total: 146ms	remaining: 325ms
31:	learn: 30.3885560	total: 152ms	remaining: 323ms
32:	learn: 30.0625101	total: 157ms	remaining: 319ms
33:	learn: 29.9113114	total: 162ms	remaining: 314ms
34:	learn: 29.6983470	total: 166ms	remaining: 308ms
35:	learn: 29.4775849	total: 170ms	remaining: 303ms
36:	learn: 29.0538055	total: 174ms	remaining: 297ms
37:	learn: 28.6792318	total: 179ms	remaining: 292ms
38:	learn: 28.4231383	total: 183ms	remaining: 286ms
39:	learn: 28.1078565	total: 187ms	remaining: 281ms
40:	learn: 27.9079179	total: 192ms	remaining: 276ms
41:	learn: 27.6721506	total: 196ms	remaining: 270ms
42:	learn: 27.4228033	total: 200ms	remaining: 266ms
43:	learn: 27.1740534	total: 205ms	remaining: 261ms
44:	learn: 26.8584071	total: 209ms	remaining: 256ms
45:	learn: 26.6902083	total: 214ms	remaining: 251ms
46:	learn: 26.4855335	total: 218ms	remaining: 246ms
47:	learn: 26.2730822	total: 223ms	remaining: 241ms
48:	learn: 26.1058689	total: 228ms	remaining: 237ms
49:	learn: 25.8587318	total: 232ms	remaining: 232ms
50:	learn: 25.7558005	total: 237ms	remaining: 228ms
51:	learn: 25.5846925	total: 242ms	remaining: 224ms
52:	learn: 25.4249887	total: 247ms	remaining: 219ms
53:	learn: 25.1911054	total: 250ms	remaining: 213ms
54:	learn: 25.0544755	total: 255ms	remaining: 209ms
55:	learn: 24.8874006	total: 259ms	remaining: 204ms
56:	learn: 24.7736279	total: 264ms	remaining: 199ms
57:	learn: 24.6156255	total: 267ms	remaining: 194ms
58:	learn: 24.3962421	total: 272ms	remaining: 189ms
59:	learn: 24.2685129	total: 276ms	remaining: 184ms
60:	learn: 24.1874096	total: 281ms	remaining: 179ms
61:	learn: 24.0394287	total: 285ms	remaining: 175ms
62:	learn: 23.9281768	total: 289ms	remaining: 170ms
63:	learn: 23.7423900	total: 294ms	remaining: 165ms
64:	learn: 23.6015209	total: 299ms	remaining: 161ms
65:	learn: 23.4677943	total: 303ms	remaining: 156ms
66:	learn: 23.3215256	total: 308ms	remaining: 152ms
67:	learn: 23.1869360	total: 313ms	remaining: 147ms
68:	learn: 22.9691180	total: 318ms	remaining: 143ms
69:	learn: 22.7531657	total: 327ms	remaining: 140ms
70:	learn: 22.6133477	total: 337ms	remaining: 137ms
71:	learn: 22.3452758	total: 344ms	remaining: 134ms
72:	learn: 22.2065350	total: 352ms	remaining: 130ms
73:	learn: 22.1071155	total: 357ms	remaining: 126ms
74:	learn: 21.9740686	total: 363ms	remaining: 121ms
75:	learn: 21.8892033	total: 368ms	remaining: 116ms
76:	learn: 21.8267882	total: 373ms	remaining: 111ms
77:	learn: 21.7423479	total: 378ms	remaining: 107ms
78:	learn: 21.6242075	total: 384ms	remaining: 102ms
79:	learn: 21.5016910	total: 389ms	remaining: 97.2ms
80:	learn: 21.4806623	total: 390ms	remaining: 91.5ms
81:	learn: 21.3166637	total: 396ms	remaining: 86.9ms
82:	learn: 21.2222534	total: 401ms	remaining: 82.1ms
83:	learn: 21.1535708	total: 406ms	remaining: 77.3ms
84:	learn: 21.0858902	total: 412ms	remaining: 72.7ms
85:	learn: 20.9206003	total: 417ms	remaining: 67.9ms
86:	learn: 20.8674695	total: 421ms	remaining: 62.9ms
87:	learn: 20.8089875	total: 426ms	remaining: 58.1ms
88:	learn: 20.7085401	total: 430ms	remaining: 53.1ms
89:	learn: 20.5513468	total: 434ms	remaining: 48.2ms
90:	learn: 20.4586742	total: 438ms	remaining: 43.3ms
91:	learn: 20.3932149	total: 443ms	remaining: 38.5ms
92:	learn: 20.3000895	total: 447ms	remaining: 33.7ms
93:	learn: 20.2254009	total: 452ms	remaining: 28.8ms
94:	learn: 20.1750050	total: 456ms	remaining: 24ms
95:	learn: 20.0715579	total: 460ms	remaining: 19.2ms
96:	learn: 19.9920082	total: 465ms	remaining: 14.4ms
97:	learn: 19.9664401	total: 469ms	remaining: 9.56ms
98:	learn: 19.8689673	total: 473ms	remaining: 4.78ms
99:	learn: 19.7537356	total: 478ms	remaining: 0us
0:	learn: 46.8832143	total: 7ms	remaining: 693ms
1:	learn: 45.8700349	total: 11.9ms	remaining: 585ms
2:	learn: 45.0546867	total: 17.9ms	remaining: 580ms
3:	learn: 44.2829439	total: 23.3ms	remaining: 558ms
4:	learn: 43.4609042	total: 27.8ms	remaining: 529ms
5:	learn: 42.6754991	total: 32.6ms	remaining: 511ms
6:	learn: 41.9234935	total: 37.5ms	remaining: 498ms
7:	learn: 41.3987518	total: 42.5ms	remaining: 489ms
8:	learn: 40.6625066	total: 47.2ms	remaining: 477ms
9:	learn: 40.0029561	total: 51.6ms	remaining: 465ms
10:	learn: 39.3897033	total: 57ms	remaining: 461ms
11:	learn: 38.7741453	total: 61.4ms	remaining: 450ms
12:	learn: 38.1201100	total: 65.8ms	remaining: 441ms
13:	learn: 37.5129454	total: 70.3ms	remaining: 432ms
14:	learn: 37.2062206	total: 74.8ms	remaining: 424ms
15:	learn: 36.6831741	total: 79.1ms	remaining: 415ms
16:	learn: 36.2902788	total: 83.3ms	remaining: 407ms
17:	learn: 35.7639930	total: 87.5ms	remaining: 399ms
18:	learn: 35.2580953	total: 92.3ms	remaining: 393ms
19:	learn: 34.7809739	total: 96.7ms	remaining: 387ms
20:	learn: 34.1330433	total: 101ms	remaining: 380ms
21:	learn: 33.7302219	total: 105ms	remaining: 374ms
22:	learn: 33.3502495	total: 110ms	remaining: 369ms
23:	learn: 33.0067804	total: 114ms	remaining: 363ms
24:	learn: 32.6897855	total: 119ms	remaining: 356ms
25:	learn: 32.4361119	total: 123ms	remaining: 351ms
26:	learn: 32.1278981	total: 128ms	remaining: 345ms
27:	learn: 31.7863721	total: 132ms	remaining: 339ms
28:	learn: 31.4791450	total: 137ms	remaining: 335ms
29:	learn: 31.1760161	total: 141ms	remaining: 329ms
30:	learn: 30.9238888	total: 146ms	remaining: 325ms
31:	learn: 30.5500905	total: 151ms	remaining: 320ms
32:	learn: 30.3078126	total: 155ms	remaining: 314ms
33:	learn: 30.0480921	total: 159ms	remaining: 310ms
34:	learn: 29.8623884	total: 164ms	remaining: 305ms
35:	learn: 29.5991038	total: 172ms	remaining: 305ms
36:	learn: 29.4061161	total: 178ms	remaining: 304ms
37:	learn: 29.0269515	total: 185ms	remaining: 302ms
38:	learn: 28.8224959	total: 191ms	remaining: 299ms
39:	learn: 28.6417843	total: 196ms	remaining: 294ms
40:	learn: 28.3633368	total: 201ms	remaining: 290ms
41:	learn: 28.0200246	total: 208ms	remaining: 288ms
42:	learn: 27.7221254	total: 213ms	remaining: 283ms
43:	learn: 27.5105818	total: 219ms	remaining: 278ms
44:	learn: 27.3551010	total: 224ms	remaining: 274ms
45:	learn: 27.0787522	total: 229ms	remaining: 269ms
46:	learn: 26.8726317	total: 235ms	remaining: 265ms
47:	learn: 26.8003277	total: 240ms	remaining: 260ms
48:	learn: 26.5493785	total: 246ms	remaining: 256ms
49:	learn: 26.3699550	total: 252ms	remaining: 252ms
50:	learn: 26.1519631	total: 257ms	remaining: 247ms
51:	learn: 25.9277325	total: 262ms	remaining: 242ms
52:	learn: 25.7286035	total: 268ms	remaining: 238ms
53:	learn: 25.4999193	total: 273ms	remaining: 233ms
54:	learn: 25.3434703	total: 278ms	remaining: 227ms
55:	learn: 25.1497545	total: 284ms	remaining: 223ms
56:	learn: 24.9498143	total: 289ms	remaining: 218ms
57:	learn: 24.6509390	total: 294ms	remaining: 213ms
58:	learn: 24.5576144	total: 298ms	remaining: 207ms
59:	learn: 24.4265144	total: 302ms	remaining: 202ms
60:	learn: 24.3100706	total: 306ms	remaining: 196ms
61:	learn: 24.1727952	total: 311ms	remaining: 190ms
62:	learn: 24.0478558	total: 315ms	remaining: 185ms
63:	learn: 23.9124577	total: 319ms	remaining: 180ms
64:	learn: 23.7703718	total: 323ms	remaining: 174ms
65:	learn: 23.5975027	total: 328ms	remaining: 169ms
66:	learn: 23.4318077	total: 332ms	remaining: 163ms
67:	learn: 23.3099691	total: 336ms	remaining: 158ms
68:	learn: 23.1947982	total: 340ms	remaining: 153ms
69:	learn: 23.0260174	total: 344ms	remaining: 147ms
70:	learn: 22.8523100	total: 348ms	remaining: 142ms
71:	learn: 22.8028534	total: 353ms	remaining: 137ms
72:	learn: 22.6880658	total: 357ms	remaining: 132ms
73:	learn: 22.5956809	total: 362ms	remaining: 127ms
74:	learn: 22.4692932	total: 366ms	remaining: 122ms
75:	learn: 22.2863504	total: 371ms	remaining: 117ms
76:	learn: 22.1911237	total: 376ms	remaining: 112ms
77:	learn: 22.1098391	total: 380ms	remaining: 107ms
78:	learn: 22.0182738	total: 385ms	remaining: 102ms
79:	learn: 21.9306746	total: 390ms	remaining: 97.5ms
80:	learn: 21.7508233	total: 395ms	remaining: 92.6ms
81:	learn: 21.7108446	total: 399ms	remaining: 87.6ms
82:	learn: 21.5931852	total: 407ms	remaining: 83.3ms
83:	learn: 21.4480361	total: 414ms	remaining: 78.8ms
84:	learn: 21.3092119	total: 420ms	remaining: 74.2ms
85:	learn: 21.2605557	total: 426ms	remaining: 69.4ms
86:	learn: 21.1123597	total: 432ms	remaining: 64.5ms
87:	learn: 21.0115642	total: 437ms	remaining: 59.6ms
88:	learn: 20.9389040	total: 441ms	remaining: 54.6ms
89:	learn: 20.8300300	total: 445ms	remaining: 49.5ms
90:	learn: 20.7159733	total: 449ms	remaining: 44.5ms
91:	learn: 20.6282090	total: 454ms	remaining: 39.5ms
92:	learn: 20.5164529	total: 458ms	remaining: 34.5ms
93:	learn: 20.4692032	total: 462ms	remaining: 29.5ms
94:	learn: 20.3768451	total: 467ms	remaining: 24.6ms
95:	learn: 20.2808056	total: 471ms	remaining: 19.6ms
96:	learn: 20.2082089	total: 475ms	remaining: 14.7ms
97:	learn: 20.1698768	total: 480ms	remaining: 9.79ms
98:	learn: 20.1048816	total: 484ms	remaining: 4.89ms
99:	learn: 20.0086159	total: 488ms	remaining: 0us
0:	learn: 27.6506730	total: 4.65ms	remaining: 460ms
1:	learn: 27.1638793	total: 9.13ms	remaining: 447ms
2:	learn: 26.8000665	total: 12.9ms	remaining: 416ms
3:	learn: 26.4256132	total: 17.3ms	remaining: 414ms
4:	learn: 26.0088351	total: 21.7ms	remaining: 412ms
5:	learn: 25.7558298	total: 26.1ms	remaining: 408ms
6:	learn: 25.3380711	total: 30.5ms	remaining: 406ms
7:	learn: 25.0571611	total: 34.5ms	remaining: 396ms
8:	learn: 24.6790148	total: 39ms	remaining: 394ms
9:	learn: 24.3600941	total: 43.7ms	remaining: 394ms
10:	learn: 24.1105667	total: 48.5ms	remaining: 392ms
11:	learn: 23.7736542	total: 53.7ms	remaining: 393ms
12:	learn: 23.5824429	total: 58.4ms	remaining: 391ms
13:	learn: 23.2658303	total: 63.2ms	remaining: 388ms
14:	learn: 23.0061886	total: 70.3ms	remaining: 399ms
15:	learn: 22.8060389	total: 80.6ms	remaining: 423ms
16:	learn: 22.5899735	total: 90.4ms	remaining: 441ms
17:	learn: 22.3625048	total: 98ms	remaining: 446ms
18:	learn: 22.0706477	total: 104ms	remaining: 442ms
19:	learn: 21.8739394	total: 109ms	remaining: 436ms
20:	learn: 21.6143650	total: 114ms	remaining: 430ms
21:	learn: 21.4571623	total: 119ms	remaining: 424ms
22:	learn: 21.2395769	total: 125ms	remaining: 417ms
23:	learn: 20.9801795	total: 130ms	remaining: 412ms
24:	learn: 20.8036808	total: 135ms	remaining: 406ms
25:	learn: 20.6387539	total: 140ms	remaining: 398ms
26:	learn: 20.4401427	total: 144ms	remaining: 390ms
27:	learn: 20.2879575	total: 149ms	remaining: 383ms
28:	learn: 20.0538664	total: 153ms	remaining: 375ms
29:	learn: 19.8363102	total: 158ms	remaining: 370ms
30:	learn: 19.7015446	total: 164ms	remaining: 366ms
31:	learn: 19.5483114	total: 170ms	remaining: 362ms
32:	learn: 19.4163053	total: 176ms	remaining: 356ms
33:	learn: 19.2880625	total: 180ms	remaining: 349ms
34:	learn: 19.1303389	total: 185ms	remaining: 343ms
35:	learn: 18.9237448	total: 189ms	remaining: 336ms
36:	learn: 18.8142925	total: 194ms	remaining: 330ms
37:	learn: 18.6994696	total: 198ms	remaining: 323ms
38:	learn: 18.5629211	total: 203ms	remaining: 317ms
39:	learn: 18.4600917	total: 207ms	remaining: 311ms
40:	learn: 18.3567139	total: 211ms	remaining: 304ms
41:	learn: 18.2120527	total: 216ms	remaining: 298ms
42:	learn: 18.0688062	total: 220ms	remaining: 292ms
43:	learn: 17.9250181	total: 224ms	remaining: 285ms
44:	learn: 17.8399138	total: 229ms	remaining: 279ms
45:	learn: 17.6720713	total: 233ms	remaining: 273ms
46:	learn: 17.5273091	total: 238ms	remaining: 268ms
47:	learn: 17.4232814	total: 243ms	remaining: 263ms
48:	learn: 17.2957579	total: 247ms	remaining: 257ms
49:	learn: 17.1892874	total: 252ms	remaining: 252ms
50:	learn: 17.0490355	total: 256ms	remaining: 246ms
51:	learn: 16.9666450	total: 261ms	remaining: 241ms
52:	learn: 16.8600056	total: 268ms	remaining: 237ms
53:	learn: 16.7542588	total: 276ms	remaining: 235ms
54:	learn: 16.6316077	total: 283ms	remaining: 232ms
55:	learn: 16.5588112	total: 289ms	remaining: 227ms
56:	learn: 16.5010186	total: 295ms	remaining: 223ms
57:	learn: 16.4081540	total: 300ms	remaining: 218ms
58:	learn: 16.3040451	total: 305ms	remaining: 212ms
59:	learn: 16.1890564	total: 309ms	remaining: 206ms
60:	learn: 16.0977103	total: 314ms	remaining: 201ms
61:	learn: 15.9627607	total: 318ms	remaining: 195ms
62:	learn: 15.9022248	total: 322ms	remaining: 189ms
63:	learn: 15.8151881	total: 326ms	remaining: 184ms
64:	learn: 15.7353125	total: 331ms	remaining: 178ms
65:	learn: 15.6312897	total: 335ms	remaining: 173ms
66:	learn: 15.5330927	total: 339ms	remaining: 167ms
67:	learn: 15.4698681	total: 344ms	remaining: 162ms
68:	learn: 15.4108571	total: 348ms	remaining: 156ms
69:	learn: 15.3492945	total: 353ms	remaining: 151ms
70:	learn: 15.3036540	total: 357ms	remaining: 146ms
71:	learn: 15.2390833	total: 361ms	remaining: 140ms
72:	learn: 15.1556327	total: 365ms	remaining: 135ms
73:	learn: 15.1016315	total: 370ms	remaining: 130ms
74:	learn: 15.0287076	total: 374ms	remaining: 125ms
75:	learn: 14.9530572	total: 379ms	remaining: 120ms
76:	learn: 14.8965517	total: 383ms	remaining: 114ms
77:	learn: 14.8125426	total: 388ms	remaining: 109ms
78:	learn: 14.7435359	total: 392ms	remaining: 104ms
79:	learn: 14.6963163	total: 396ms	remaining: 99.1ms
80:	learn: 14.6200060	total: 401ms	remaining: 94ms
81:	learn: 14.5707760	total: 406ms	remaining: 89.1ms
82:	learn: 14.5053651	total: 411ms	remaining: 84.2ms
83:	learn: 14.4115458	total: 416ms	remaining: 79.3ms
84:	learn: 14.3117159	total: 422ms	remaining: 74.4ms
85:	learn: 14.2511326	total: 426ms	remaining: 69.4ms
86:	learn: 14.1372486	total: 431ms	remaining: 64.4ms
87:	learn: 14.0992301	total: 436ms	remaining: 59.5ms
88:	learn: 14.0228331	total: 441ms	remaining: 54.5ms
89:	learn: 13.9249836	total: 446ms	remaining: 49.5ms
90:	learn: 13.8679364	total: 467ms	remaining: 46.2ms
91:	learn: 13.8405578	total: 477ms	remaining: 41.5ms
92:	learn: 13.7711325	total: 487ms	remaining: 36.7ms
93:	learn: 13.7357019	total: 495ms	remaining: 31.6ms
94:	learn: 13.6735271	total: 500ms	remaining: 26.3ms
95:	learn: 13.5682393	total: 506ms	remaining: 21.1ms
96:	learn: 13.5342610	total: 511ms	remaining: 15.8ms
97:	learn: 13.4710034	total: 516ms	remaining: 10.5ms
98:	learn: 13.4022402	total: 521ms	remaining: 5.26ms
99:	learn: 13.3351238	total: 527ms	remaining: 0us
0:	learn: 42.9181702	total: 4.89ms	remaining: 484ms
1:	learn: 42.0286736	total: 9.46ms	remaining: 464ms
2:	learn: 41.2764568	total: 14.4ms	remaining: 467ms
3:	learn: 40.4721918	total: 18.9ms	remaining: 454ms
4:	learn: 39.8518928	total: 23ms	remaining: 437ms
5:	learn: 39.2645479	total: 27.2ms	remaining: 426ms
6:	learn: 38.4453704	total: 31.9ms	remaining: 424ms
7:	learn: 37.7122059	total: 36.3ms	remaining: 418ms
8:	learn: 36.9185796	total: 40.6ms	remaining: 411ms
9:	learn: 36.1668427	total: 45.2ms	remaining: 407ms
10:	learn: 35.5639029	total: 49.8ms	remaining: 403ms
11:	learn: 34.7724193	total: 54.4ms	remaining: 399ms
12:	learn: 34.3053433	total: 58.7ms	remaining: 393ms
13:	learn: 33.6561327	total: 60ms	remaining: 369ms
14:	learn: 33.0134042	total: 64.9ms	remaining: 368ms
15:	learn: 32.4483300	total: 69.5ms	remaining: 365ms
16:	learn: 31.8581144	total: 74.2ms	remaining: 362ms
17:	learn: 31.2858301	total: 78.7ms	remaining: 359ms
18:	learn: 30.8483018	total: 83.5ms	remaining: 356ms
19:	learn: 30.4174622	total: 88.5ms	remaining: 354ms
20:	learn: 29.8994411	total: 95.9ms	remaining: 361ms
21:	learn: 29.5045355	total: 104ms	remaining: 369ms
22:	learn: 28.9923519	total: 111ms	remaining: 371ms
23:	learn: 28.4255717	total: 116ms	remaining: 369ms
24:	learn: 28.0283139	total: 123ms	remaining: 368ms
25:	learn: 27.7434814	total: 128ms	remaining: 363ms
26:	learn: 27.2770731	total: 132ms	remaining: 357ms
27:	learn: 26.8928270	total: 136ms	remaining: 351ms
28:	learn: 26.4282671	total: 140ms	remaining: 344ms
29:	learn: 26.0272764	total: 145ms	remaining: 337ms
30:	learn: 25.7579312	total: 149ms	remaining: 332ms
31:	learn: 25.4542434	total: 154ms	remaining: 327ms
32:	learn: 25.1232564	total: 158ms	remaining: 321ms
33:	learn: 24.8110795	total: 162ms	remaining: 315ms
34:	learn: 24.5077579	total: 166ms	remaining: 309ms
35:	learn: 24.1909000	total: 171ms	remaining: 304ms
36:	learn: 23.8719468	total: 175ms	remaining: 298ms
37:	learn: 23.5764366	total: 176ms	remaining: 288ms
38:	learn: 23.3468086	total: 181ms	remaining: 283ms
39:	learn: 23.0908771	total: 185ms	remaining: 278ms
40:	learn: 22.8580876	total: 190ms	remaining: 273ms
41:	learn: 22.6060825	total: 194ms	remaining: 268ms
42:	learn: 22.4125407	total: 199ms	remaining: 264ms
43:	learn: 22.1990617	total: 203ms	remaining: 259ms
44:	learn: 21.9716164	total: 208ms	remaining: 254ms
45:	learn: 21.8360935	total: 212ms	remaining: 249ms
46:	learn: 21.6169256	total: 216ms	remaining: 244ms
47:	learn: 21.4620612	total: 220ms	remaining: 239ms
48:	learn: 21.2894194	total: 225ms	remaining: 234ms
49:	learn: 21.1066266	total: 229ms	remaining: 229ms
50:	learn: 20.9484898	total: 233ms	remaining: 224ms
51:	learn: 20.7195338	total: 238ms	remaining: 220ms
52:	learn: 20.4899740	total: 243ms	remaining: 215ms
53:	learn: 20.3356583	total: 247ms	remaining: 210ms
54:	learn: 20.0754393	total: 251ms	remaining: 205ms
55:	learn: 19.9199159	total: 255ms	remaining: 201ms
56:	learn: 19.7761128	total: 261ms	remaining: 197ms
57:	learn: 19.6533060	total: 265ms	remaining: 192ms
58:	learn: 19.5113942	total: 270ms	remaining: 188ms
59:	learn: 19.3985022	total: 275ms	remaining: 183ms
60:	learn: 19.2683443	total: 279ms	remaining: 179ms
61:	learn: 19.1460824	total: 284ms	remaining: 174ms
62:	learn: 19.0042655	total: 292ms	remaining: 172ms
63:	learn: 18.8720873	total: 299ms	remaining: 168ms
64:	learn: 18.7183888	total: 322ms	remaining: 173ms
65:	learn: 18.5472360	total: 327ms	remaining: 169ms
66:	learn: 18.3976642	total: 333ms	remaining: 164ms
67:	learn: 18.2282851	total: 338ms	remaining: 159ms
68:	learn: 18.1469157	total: 343ms	remaining: 154ms
69:	learn: 18.0649494	total: 349ms	remaining: 149ms
70:	learn: 17.9485405	total: 354ms	remaining: 144ms
71:	learn: 17.8460261	total: 359ms	remaining: 140ms
72:	learn: 17.7679843	total: 364ms	remaining: 135ms
73:	learn: 17.5989290	total: 369ms	remaining: 130ms
74:	learn: 17.4381322	total: 374ms	remaining: 125ms
75:	learn: 17.3370886	total: 380ms	remaining: 120ms
76:	learn: 17.2675308	total: 385ms	remaining: 115ms
77:	learn: 17.1946430	total: 389ms	remaining: 110ms
78:	learn: 17.0923725	total: 393ms	remaining: 104ms
79:	learn: 17.0537265	total: 398ms	remaining: 99.4ms
80:	learn: 16.9456831	total: 402ms	remaining: 94.2ms
81:	learn: 16.8457353	total: 406ms	remaining: 89.1ms
82:	learn: 16.7469310	total: 410ms	remaining: 84ms
83:	learn: 16.6679953	total: 415ms	remaining: 79ms
84:	learn: 16.6274189	total: 419ms	remaining: 73.9ms
85:	learn: 16.5516530	total: 423ms	remaining: 68.9ms
86:	learn: 16.4886066	total: 427ms	remaining: 63.9ms
87:	learn: 16.3947859	total: 432ms	remaining: 58.9ms
88:	learn: 16.3406495	total: 436ms	remaining: 53.9ms
89:	learn: 16.3019195	total: 441ms	remaining: 49ms
90:	learn: 16.1860681	total: 446ms	remaining: 44.1ms
91:	learn: 16.1282812	total: 450ms	remaining: 39.2ms
92:	learn: 16.0303652	total: 455ms	remaining: 34.2ms
93:	learn: 15.9561692	total: 459ms	remaining: 29.3ms
94:	learn: 15.8733994	total: 464ms	remaining: 24.4ms
95:	learn: 15.8108833	total: 472ms	remaining: 19.7ms
96:	learn: 15.7606004	total: 479ms	remaining: 14.8ms
97:	learn: 15.6984664	total: 485ms	remaining: 9.91ms
98:	learn: 15.6223632	total: 492ms	remaining: 4.96ms
99:	learn: 15.5671136	total: 497ms	remaining: 0us
0:	learn: 46.4788614	total: 7.61ms	remaining: 753ms
1:	learn: 45.7608372	total: 12.2ms	remaining: 597ms
2:	learn: 44.8825004	total: 16.7ms	remaining: 542ms
3:	learn: 44.0362738	total: 20.9ms	remaining: 501ms
4:	learn: 43.2086374	total: 25ms	remaining: 476ms
5:	learn: 42.5835773	total: 29.5ms	remaining: 463ms
6:	learn: 41.9673269	total: 34.2ms	remaining: 455ms
7:	learn: 41.4748717	total: 38.5ms	remaining: 443ms
8:	learn: 40.7129183	total: 42.8ms	remaining: 433ms
9:	learn: 39.8900884	total: 47.1ms	remaining: 424ms
10:	learn: 39.4142193	total: 51.1ms	remaining: 413ms
11:	learn: 38.8645613	total: 55.4ms	remaining: 407ms
12:	learn: 38.2394731	total: 59.9ms	remaining: 401ms
13:	learn: 37.6834515	total: 64.3ms	remaining: 395ms
14:	learn: 37.0673507	total: 69ms	remaining: 391ms
15:	learn: 36.4728340	total: 73.3ms	remaining: 385ms
16:	learn: 36.0489086	total: 77.9ms	remaining: 380ms
17:	learn: 35.4744141	total: 82.5ms	remaining: 376ms
18:	learn: 35.0106021	total: 87.1ms	remaining: 371ms
19:	learn: 34.5586053	total: 91.5ms	remaining: 366ms
20:	learn: 34.1308223	total: 95.9ms	remaining: 361ms
21:	learn: 33.7701450	total: 101ms	remaining: 357ms
22:	learn: 33.4425444	total: 105ms	remaining: 352ms
23:	learn: 33.0296412	total: 110ms	remaining: 347ms
24:	learn: 32.6359803	total: 114ms	remaining: 342ms
25:	learn: 32.1846182	total: 119ms	remaining: 338ms
26:	learn: 31.7620230	total: 123ms	remaining: 334ms
27:	learn: 31.4669337	total: 128ms	remaining: 329ms
28:	learn: 31.0792062	total: 132ms	remaining: 324ms
29:	learn: 30.7970537	total: 137ms	remaining: 320ms
30:	learn: 30.4952215	total: 142ms	remaining: 316ms
31:	learn: 30.2845344	total: 148ms	remaining: 315ms
32:	learn: 29.9592732	total: 156ms	remaining: 316ms
33:	learn: 29.6798596	total: 165ms	remaining: 321ms
34:	learn: 29.3368905	total: 172ms	remaining: 320ms
35:	learn: 29.0621238	total: 180ms	remaining: 320ms
36:	learn: 28.6445375	total: 186ms	remaining: 316ms
37:	learn: 28.2418096	total: 191ms	remaining: 312ms
38:	learn: 27.9495390	total: 196ms	remaining: 307ms
39:	learn: 27.6958160	total: 201ms	remaining: 302ms
40:	learn: 27.4811189	total: 207ms	remaining: 298ms
41:	learn: 27.1494420	total: 212ms	remaining: 293ms
42:	learn: 26.8388873	total: 218ms	remaining: 288ms
43:	learn: 26.5721300	total: 223ms	remaining: 284ms
44:	learn: 26.3384738	total: 228ms	remaining: 279ms
45:	learn: 26.1894781	total: 233ms	remaining: 274ms
46:	learn: 25.9580198	total: 239ms	remaining: 270ms
47:	learn: 25.7897985	total: 245ms	remaining: 265ms
48:	learn: 25.6000271	total: 249ms	remaining: 259ms
49:	learn: 25.4130873	total: 253ms	remaining: 253ms
50:	learn: 25.1699061	total: 258ms	remaining: 247ms
51:	learn: 24.9324449	total: 262ms	remaining: 242ms
52:	learn: 24.7729152	total: 266ms	remaining: 236ms
53:	learn: 24.5026563	total: 271ms	remaining: 231ms
54:	learn: 24.2332627	total: 275ms	remaining: 225ms
55:	learn: 23.9611984	total: 280ms	remaining: 220ms
56:	learn: 23.7862603	total: 284ms	remaining: 214ms
57:	learn: 23.6318154	total: 288ms	remaining: 208ms
58:	learn: 23.4443306	total: 292ms	remaining: 203ms
59:	learn: 23.2581425	total: 297ms	remaining: 198ms
60:	learn: 23.0549901	total: 301ms	remaining: 193ms
61:	learn: 22.8666218	total: 305ms	remaining: 187ms
62:	learn: 22.6956739	total: 310ms	remaining: 182ms
63:	learn: 22.5068544	total: 314ms	remaining: 177ms
64:	learn: 22.1859147	total: 319ms	remaining: 172ms
65:	learn: 22.0462043	total: 324ms	remaining: 167ms
66:	learn: 21.9329563	total: 330ms	remaining: 162ms
67:	learn: 21.8029736	total: 337ms	remaining: 158ms
68:	learn: 21.6861091	total: 344ms	remaining: 155ms
69:	learn: 21.4838140	total: 353ms	remaining: 151ms
70:	learn: 21.3548921	total: 362ms	remaining: 148ms
71:	learn: 21.2244517	total: 368ms	remaining: 143ms
72:	learn: 21.0702958	total: 374ms	remaining: 138ms
73:	learn: 20.9224662	total: 379ms	remaining: 133ms
74:	learn: 20.8150357	total: 384ms	remaining: 128ms
75:	learn: 20.6962739	total: 388ms	remaining: 123ms
76:	learn: 20.5809258	total: 393ms	remaining: 117ms
77:	learn: 20.4735470	total: 398ms	remaining: 112ms
78:	learn: 20.3778167	total: 403ms	remaining: 107ms
79:	learn: 20.2211268	total: 408ms	remaining: 102ms
80:	learn: 20.1478678	total: 412ms	remaining: 96.7ms
81:	learn: 20.1032967	total: 417ms	remaining: 91.6ms
82:	learn: 19.9236300	total: 422ms	remaining: 86.3ms
83:	learn: 19.8151745	total: 426ms	remaining: 81.1ms
84:	learn: 19.7099856	total: 430ms	remaining: 76ms
85:	learn: 19.6264833	total: 436ms	remaining: 70.9ms
86:	learn: 19.4916361	total: 440ms	remaining: 65.8ms
87:	learn: 19.4050529	total: 445ms	remaining: 60.6ms
88:	learn: 19.2547065	total: 449ms	remaining: 55.6ms
89:	learn: 19.1610225	total: 454ms	remaining: 50.4ms
90:	learn: 19.0898958	total: 458ms	remaining: 45.3ms
91:	learn: 19.0489664	total: 463ms	remaining: 40.3ms
92:	learn: 18.9206240	total: 468ms	remaining: 35.2ms
93:	learn: 18.8636239	total: 472ms	remaining: 30.1ms
94:	learn: 18.8126187	total: 477ms	remaining: 25.1ms
95:	learn: 18.7579275	total: 481ms	remaining: 20ms
96:	learn: 18.6382753	total: 486ms	remaining: 15ms
97:	learn: 18.5397334	total: 490ms	remaining: 10ms
98:	learn: 18.4375951	total: 495ms	remaining: 5ms
99:	learn: 18.4033755	total: 499ms	remaining: 0us
0:	learn: 46.1068821	total: 2.01ms	remaining: 199ms
1:	learn: 45.3970261	total: 7.27ms	remaining: 356ms
2:	learn: 44.8732696	total: 12.2ms	remaining: 395ms
3:	learn: 44.1290184	total: 16.7ms	remaining: 402ms
4:	learn: 43.3290271	total: 23.7ms	remaining: 450ms
5:	learn: 42.7069090	total: 31.2ms	remaining: 489ms
6:	learn: 42.0572971	total: 42.1ms	remaining: 559ms
7:	learn: 41.4797924	total: 48.7ms	remaining: 560ms
8:	learn: 41.0023122	total: 56.6ms	remaining: 572ms
9:	learn: 40.5330570	total: 61.8ms	remaining: 556ms
10:	learn: 39.9726545	total: 66.5ms	remaining: 538ms
11:	learn: 39.3044053	total: 71.5ms	remaining: 524ms
12:	learn: 38.8169735	total: 77.4ms	remaining: 518ms
13:	learn: 38.2458761	total: 82.7ms	remaining: 508ms
14:	learn: 37.6280321	total: 87.9ms	remaining: 498ms
15:	learn: 37.0800610	total: 93.1ms	remaining: 489ms
16:	learn: 36.5489363	total: 98.3ms	remaining: 480ms
17:	learn: 36.0981456	total: 103ms	remaining: 469ms
18:	learn: 35.6956274	total: 108ms	remaining: 460ms
19:	learn: 35.1471999	total: 114ms	remaining: 457ms
20:	learn: 34.6235408	total: 120ms	remaining: 450ms
21:	learn: 34.1987018	total: 124ms	remaining: 439ms
22:	learn: 33.8985062	total: 128ms	remaining: 430ms
23:	learn: 33.3869017	total: 133ms	remaining: 420ms
24:	learn: 32.9100550	total: 137ms	remaining: 410ms
25:	learn: 32.4156208	total: 141ms	remaining: 402ms
26:	learn: 31.9320493	total: 146ms	remaining: 393ms
27:	learn: 31.5711468	total: 150ms	remaining: 385ms
28:	learn: 31.2404433	total: 154ms	remaining: 376ms
29:	learn: 30.8807946	total: 158ms	remaining: 368ms
30:	learn: 30.5948438	total: 162ms	remaining: 362ms
31:	learn: 30.3885560	total: 166ms	remaining: 354ms
32:	learn: 30.0625101	total: 171ms	remaining: 346ms
33:	learn: 29.9113114	total: 175ms	remaining: 340ms
34:	learn: 29.6983470	total: 179ms	remaining: 333ms
35:	learn: 29.4775849	total: 184ms	remaining: 326ms
36:	learn: 29.0538055	total: 188ms	remaining: 319ms
37:	learn: 28.6792318	total: 192ms	remaining: 313ms
38:	learn: 28.4231383	total: 196ms	remaining: 307ms
39:	learn: 28.1078565	total: 201ms	remaining: 301ms
40:	learn: 27.9079179	total: 205ms	remaining: 295ms
41:	learn: 27.6721506	total: 209ms	remaining: 289ms
42:	learn: 27.4228033	total: 213ms	remaining: 283ms
43:	learn: 27.1740534	total: 218ms	remaining: 278ms
44:	learn: 26.8584071	total: 223ms	remaining: 272ms
45:	learn: 26.6902083	total: 228ms	remaining: 267ms
46:	learn: 26.4855335	total: 232ms	remaining: 262ms
47:	learn: 26.2730822	total: 237ms	remaining: 257ms
48:	learn: 26.1058689	total: 242ms	remaining: 252ms
49:	learn: 25.8587318	total: 246ms	remaining: 246ms
50:	learn: 25.7558005	total: 252ms	remaining: 242ms
51:	learn: 25.5846925	total: 260ms	remaining: 240ms
52:	learn: 25.4249887	total: 268ms	remaining: 237ms
53:	learn: 25.1911054	total: 274ms	remaining: 233ms
54:	learn: 25.0544755	total: 279ms	remaining: 228ms
55:	learn: 24.8874006	total: 285ms	remaining: 224ms
56:	learn: 24.7736279	total: 289ms	remaining: 218ms
57:	learn: 24.6156255	total: 293ms	remaining: 212ms
58:	learn: 24.3962421	total: 297ms	remaining: 206ms
59:	learn: 24.2685129	total: 301ms	remaining: 201ms
60:	learn: 24.1874096	total: 306ms	remaining: 195ms
61:	learn: 24.0394287	total: 310ms	remaining: 190ms
62:	learn: 23.9281768	total: 314ms	remaining: 184ms
63:	learn: 23.7423900	total: 318ms	remaining: 179ms
64:	learn: 23.6015209	total: 323ms	remaining: 174ms
65:	learn: 23.4677943	total: 328ms	remaining: 169ms
66:	learn: 23.3215256	total: 332ms	remaining: 164ms
67:	learn: 23.1869360	total: 337ms	remaining: 159ms
68:	learn: 22.9691180	total: 341ms	remaining: 153ms
69:	learn: 22.7531657	total: 346ms	remaining: 148ms
70:	learn: 22.6133477	total: 350ms	remaining: 143ms
71:	learn: 22.3452758	total: 354ms	remaining: 138ms
72:	learn: 22.2065350	total: 358ms	remaining: 133ms
73:	learn: 22.1071155	total: 362ms	remaining: 127ms
74:	learn: 21.9740686	total: 366ms	remaining: 122ms
75:	learn: 21.8892033	total: 371ms	remaining: 117ms
76:	learn: 21.8267882	total: 375ms	remaining: 112ms
77:	learn: 21.7423479	total: 379ms	remaining: 107ms
78:	learn: 21.6242075	total: 383ms	remaining: 102ms
79:	learn: 21.5016910	total: 387ms	remaining: 96.7ms
80:	learn: 21.4806623	total: 388ms	remaining: 91ms
81:	learn: 21.3166637	total: 392ms	remaining: 86ms
82:	learn: 21.2222534	total: 396ms	remaining: 81.1ms
83:	learn: 21.1535708	total: 400ms	remaining: 76.2ms
84:	learn: 21.0858902	total: 405ms	remaining: 71.4ms
85:	learn: 20.9206003	total: 409ms	remaining: 66.6ms
86:	learn: 20.8674695	total: 413ms	remaining: 61.8ms
87:	learn: 20.8089875	total: 418ms	remaining: 56.9ms
88:	learn: 20.7085401	total: 422ms	remaining: 52.2ms
89:	learn: 20.5513468	total: 427ms	remaining: 47.4ms
90:	learn: 20.4586742	total: 431ms	remaining: 42.7ms
91:	learn: 20.3932149	total: 436ms	remaining: 37.9ms
92:	learn: 20.3000895	total: 441ms	remaining: 33.2ms
93:	learn: 20.2254009	total: 446ms	remaining: 28.5ms
94:	learn: 20.1750050	total: 454ms	remaining: 23.9ms
95:	learn: 20.0715579	total: 464ms	remaining: 19.3ms
96:	learn: 19.9920082	total: 471ms	remaining: 14.6ms
97:	learn: 19.9664401	total: 479ms	remaining: 9.77ms
98:	learn: 19.8689673	total: 484ms	remaining: 4.89ms
99:	learn: 19.7537356	total: 490ms	remaining: 0us
0:	learn: 46.8832143	total: 5.3ms	remaining: 525ms
1:	learn: 45.8700349	total: 10.3ms	remaining: 502ms
2:	learn: 45.0546867	total: 14.9ms	remaining: 482ms
3:	learn: 44.2829439	total: 19.3ms	remaining: 463ms
4:	learn: 43.4609042	total: 24.1ms	remaining: 459ms
5:	learn: 42.6754991	total: 28.9ms	remaining: 453ms
6:	learn: 41.9234935	total: 33.7ms	remaining: 448ms
7:	learn: 41.3987518	total: 38.4ms	remaining: 441ms
8:	learn: 40.6625066	total: 43ms	remaining: 435ms
9:	learn: 40.0029561	total: 47.6ms	remaining: 428ms
10:	learn: 39.3897033	total: 52.2ms	remaining: 422ms
11:	learn: 38.7741453	total: 56.9ms	remaining: 417ms
12:	learn: 38.1201100	total: 61.5ms	remaining: 412ms
13:	learn: 37.5129454	total: 66.3ms	remaining: 407ms
14:	learn: 37.2062206	total: 70.4ms	remaining: 399ms
15:	learn: 36.6831741	total: 74.5ms	remaining: 391ms
16:	learn: 36.2902788	total: 78.8ms	remaining: 385ms
17:	learn: 35.7639930	total: 83.8ms	remaining: 382ms
18:	learn: 35.2580953	total: 88.5ms	remaining: 377ms
19:	learn: 34.7809739	total: 93.2ms	remaining: 373ms
20:	learn: 34.1330433	total: 98ms	remaining: 369ms
21:	learn: 33.7302219	total: 103ms	remaining: 364ms
22:	learn: 33.3502495	total: 107ms	remaining: 359ms
23:	learn: 33.0067804	total: 115ms	remaining: 364ms
24:	learn: 32.6897855	total: 122ms	remaining: 367ms
25:	learn: 32.4361119	total: 129ms	remaining: 368ms
26:	learn: 32.1278981	total: 135ms	remaining: 365ms
27:	learn: 31.7863721	total: 141ms	remaining: 362ms
28:	learn: 31.4791450	total: 145ms	remaining: 356ms
29:	learn: 31.1760161	total: 149ms	remaining: 349ms
30:	learn: 30.9238888	total: 154ms	remaining: 342ms
31:	learn: 30.5500905	total: 158ms	remaining: 335ms
32:	learn: 30.3078126	total: 162ms	remaining: 329ms
33:	learn: 30.0480921	total: 166ms	remaining: 323ms
34:	learn: 29.8623884	total: 171ms	remaining: 317ms
35:	learn: 29.5991038	total: 175ms	remaining: 311ms
36:	learn: 29.4061161	total: 180ms	remaining: 306ms
37:	learn: 29.0269515	total: 184ms	remaining: 300ms
38:	learn: 28.8224959	total: 188ms	remaining: 294ms
39:	learn: 28.6417843	total: 192ms	remaining: 288ms
40:	learn: 28.3633368	total: 196ms	remaining: 283ms
41:	learn: 28.0200246	total: 201ms	remaining: 277ms
42:	learn: 27.7221254	total: 205ms	remaining: 272ms
43:	learn: 27.5105818	total: 209ms	remaining: 267ms
44:	learn: 27.3551010	total: 214ms	remaining: 261ms
45:	learn: 27.0787522	total: 218ms	remaining: 256ms
46:	learn: 26.8726317	total: 223ms	remaining: 251ms
47:	learn: 26.8003277	total: 228ms	remaining: 247ms
48:	learn: 26.5493785	total: 233ms	remaining: 242ms
49:	learn: 26.3699550	total: 238ms	remaining: 238ms
50:	learn: 26.1519631	total: 242ms	remaining: 233ms
51:	learn: 25.9277325	total: 247ms	remaining: 228ms
52:	learn: 25.7286035	total: 252ms	remaining: 223ms
53:	learn: 25.4999193	total: 257ms	remaining: 219ms
54:	learn: 25.3434703	total: 261ms	remaining: 214ms
55:	learn: 25.1497545	total: 266ms	remaining: 209ms
56:	learn: 24.9498143	total: 271ms	remaining: 204ms
57:	learn: 24.6509390	total: 275ms	remaining: 199ms
58:	learn: 24.5576144	total: 280ms	remaining: 195ms
59:	learn: 24.4265144	total: 286ms	remaining: 190ms
60:	learn: 24.3100706	total: 290ms	remaining: 186ms
61:	learn: 24.1727952	total: 295ms	remaining: 181ms
62:	learn: 24.0478558	total: 300ms	remaining: 176ms
63:	learn: 23.9124577	total: 305ms	remaining: 171ms
64:	learn: 23.7703718	total: 313ms	remaining: 168ms
65:	learn: 23.5975027	total: 320ms	remaining: 165ms
66:	learn: 23.4318077	total: 331ms	remaining: 163ms
67:	learn: 23.3099691	total: 339ms	remaining: 159ms
68:	learn: 23.1947982	total: 345ms	remaining: 155ms
69:	learn: 23.0260174	total: 350ms	remaining: 150ms
70:	learn: 22.8523100	total: 355ms	remaining: 145ms
71:	learn: 22.8028534	total: 360ms	remaining: 140ms
72:	learn: 22.6880658	total: 365ms	remaining: 135ms
73:	learn: 22.5956809	total: 371ms	remaining: 130ms
74:	learn: 22.4692932	total: 376ms	remaining: 125ms
75:	learn: 22.2863504	total: 382ms	remaining: 121ms
76:	learn: 22.1911237	total: 386ms	remaining: 115ms
77:	learn: 22.1098391	total: 391ms	remaining: 110ms
78:	learn: 22.0182738	total: 397ms	remaining: 106ms
79:	learn: 21.9306746	total: 402ms	remaining: 101ms
80:	learn: 21.7508233	total: 407ms	remaining: 95.5ms
81:	learn: 21.7108446	total: 411ms	remaining: 90.3ms
82:	learn: 21.5931852	total: 416ms	remaining: 85.2ms
83:	learn: 21.4480361	total: 420ms	remaining: 80.1ms
84:	learn: 21.3092119	total: 425ms	remaining: 75ms
85:	learn: 21.2605557	total: 430ms	remaining: 69.9ms
86:	learn: 21.1123597	total: 434ms	remaining: 64.9ms
87:	learn: 21.0115642	total: 438ms	remaining: 59.8ms
88:	learn: 20.9389040	total: 443ms	remaining: 54.7ms
89:	learn: 20.8300300	total: 447ms	remaining: 49.7ms
90:	learn: 20.7159733	total: 452ms	remaining: 44.7ms
91:	learn: 20.6282090	total: 456ms	remaining: 39.6ms
92:	learn: 20.5164529	total: 460ms	remaining: 34.6ms
93:	learn: 20.4692032	total: 465ms	remaining: 29.7ms
94:	learn: 20.3768451	total: 469ms	remaining: 24.7ms
95:	learn: 20.2808056	total: 473ms	remaining: 19.7ms
96:	learn: 20.2082089	total: 477ms	remaining: 14.8ms
97:	learn: 20.1698768	total: 482ms	remaining: 9.84ms
98:	learn: 20.1048816	total: 487ms	remaining: 4.92ms
99:	learn: 20.0086159	total: 491ms	remaining: 0us
0:	learn: 27.6871645	total: 5.15ms	remaining: 510ms
1:	learn: 27.3312003	total: 9.8ms	remaining: 480ms
2:	learn: 26.9359558	total: 14.7ms	remaining: 475ms
3:	learn: 26.6055364	total: 19.7ms	remaining: 472ms
4:	learn: 26.1664924	total: 24.4ms	remaining: 463ms
5:	learn: 25.8515393	total: 29.5ms	remaining: 463ms
6:	learn: 25.4620036	total: 34.1ms	remaining: 453ms
7:	learn: 25.1669741	total: 38.7ms	remaining: 445ms
8:	learn: 24.8455454	total: 43.7ms	remaining: 442ms
9:	learn: 24.5106323	total: 48.6ms	remaining: 437ms
10:	learn: 24.1915228	total: 53.3ms	remaining: 431ms
11:	learn: 23.9076053	total: 58ms	remaining: 426ms
12:	learn: 23.6692445	total: 62.8ms	remaining: 420ms
13:	learn: 23.4343504	total: 67.8ms	remaining: 416ms
14:	learn: 23.2425280	total: 72.8ms	remaining: 413ms
15:	learn: 22.9254142	total: 77.6ms	remaining: 407ms
16:	learn: 22.6495489	total: 82.4ms	remaining: 402ms
17:	learn: 22.4343705	total: 87.1ms	remaining: 397ms
18:	learn: 22.2154202	total: 91.7ms	remaining: 391ms
19:	learn: 22.0592712	total: 96.3ms	remaining: 385ms
20:	learn: 21.7971944	total: 101ms	remaining: 382ms
21:	learn: 21.6128930	total: 106ms	remaining: 377ms
22:	learn: 21.3882946	total: 111ms	remaining: 372ms
23:	learn: 21.0912570	total: 116ms	remaining: 366ms
24:	learn: 20.8922857	total: 121ms	remaining: 362ms
25:	learn: 20.7150574	total: 125ms	remaining: 356ms
26:	learn: 20.5673183	total: 130ms	remaining: 352ms
27:	learn: 20.4331275	total: 135ms	remaining: 347ms
28:	learn: 20.2782866	total: 140ms	remaining: 342ms
29:	learn: 20.1061525	total: 144ms	remaining: 337ms
30:	learn: 19.9225948	total: 149ms	remaining: 332ms
31:	learn: 19.7809193	total: 155ms	remaining: 328ms
32:	learn: 19.6057771	total: 160ms	remaining: 324ms
33:	learn: 19.4391243	total: 165ms	remaining: 320ms
34:	learn: 19.2234365	total: 170ms	remaining: 315ms
35:	learn: 19.0214424	total: 175ms	remaining: 310ms
36:	learn: 18.8990643	total: 180ms	remaining: 307ms
37:	learn: 18.7473635	total: 190ms	remaining: 309ms
38:	learn: 18.6125192	total: 200ms	remaining: 313ms
39:	learn: 18.4977949	total: 208ms	remaining: 313ms
40:	learn: 18.3914568	total: 217ms	remaining: 312ms
41:	learn: 18.2541544	total: 222ms	remaining: 307ms
42:	learn: 18.1038984	total: 228ms	remaining: 302ms
43:	learn: 17.9706172	total: 233ms	remaining: 297ms
44:	learn: 17.8198810	total: 239ms	remaining: 293ms
45:	learn: 17.7102597	total: 258ms	remaining: 303ms
46:	learn: 17.6148228	total: 264ms	remaining: 297ms
47:	learn: 17.5115365	total: 270ms	remaining: 292ms
48:	learn: 17.3884162	total: 276ms	remaining: 287ms
49:	learn: 17.2857632	total: 280ms	remaining: 280ms
50:	learn: 17.1618843	total: 285ms	remaining: 274ms
51:	learn: 17.0529601	total: 290ms	remaining: 267ms
52:	learn: 16.9330273	total: 294ms	remaining: 261ms
53:	learn: 16.8206672	total: 299ms	remaining: 255ms
54:	learn: 16.7080356	total: 304ms	remaining: 248ms
55:	learn: 16.5874354	total: 308ms	remaining: 242ms
56:	learn: 16.4929860	total: 313ms	remaining: 236ms
57:	learn: 16.4269419	total: 318ms	remaining: 230ms
58:	learn: 16.3474026	total: 323ms	remaining: 224ms
59:	learn: 16.2515784	total: 328ms	remaining: 218ms
60:	learn: 16.1743901	total: 332ms	remaining: 212ms
61:	learn: 16.0389930	total: 337ms	remaining: 207ms
62:	learn: 15.9671636	total: 342ms	remaining: 201ms
63:	learn: 15.8928486	total: 348ms	remaining: 196ms
64:	learn: 15.8303841	total: 353ms	remaining: 190ms
65:	learn: 15.7612266	total: 358ms	remaining: 184ms
66:	learn: 15.6811172	total: 363ms	remaining: 179ms
67:	learn: 15.6262138	total: 368ms	remaining: 173ms
68:	learn: 15.5662508	total: 373ms	remaining: 168ms
69:	learn: 15.4804354	total: 383ms	remaining: 164ms
70:	learn: 15.4054915	total: 391ms	remaining: 160ms
71:	learn: 15.3271396	total: 399ms	remaining: 155ms
72:	learn: 15.2828359	total: 404ms	remaining: 149ms
73:	learn: 15.2197404	total: 410ms	remaining: 144ms
74:	learn: 15.1315902	total: 415ms	remaining: 138ms
75:	learn: 15.0780523	total: 420ms	remaining: 133ms
76:	learn: 14.9959155	total: 425ms	remaining: 127ms
77:	learn: 14.9265008	total: 430ms	remaining: 121ms
78:	learn: 14.8570189	total: 435ms	remaining: 116ms
79:	learn: 14.8060372	total: 439ms	remaining: 110ms
80:	learn: 14.7294676	total: 444ms	remaining: 104ms
81:	learn: 14.6708309	total: 449ms	remaining: 98.5ms
82:	learn: 14.5765370	total: 453ms	remaining: 92.8ms
83:	learn: 14.5312713	total: 458ms	remaining: 87.3ms
84:	learn: 14.4830327	total: 463ms	remaining: 81.7ms
85:	learn: 14.4296247	total: 468ms	remaining: 76.1ms
86:	learn: 14.3381470	total: 473ms	remaining: 70.6ms
87:	learn: 14.2638093	total: 478ms	remaining: 65.1ms
88:	learn: 14.2288435	total: 483ms	remaining: 59.6ms
89:	learn: 14.1489273	total: 488ms	remaining: 54.2ms
90:	learn: 14.0937923	total: 493ms	remaining: 48.7ms
91:	learn: 14.0334062	total: 497ms	remaining: 43.3ms
92:	learn: 13.9854696	total: 503ms	remaining: 37.8ms
93:	learn: 13.9444203	total: 508ms	remaining: 32.4ms
94:	learn: 13.9101523	total: 513ms	remaining: 27ms
95:	learn: 13.8460655	total: 517ms	remaining: 21.6ms
96:	learn: 13.7809420	total: 522ms	remaining: 16.1ms
97:	learn: 13.7270532	total: 527ms	remaining: 10.8ms
98:	learn: 13.6891300	total: 532ms	remaining: 5.37ms
99:	learn: 13.6569696	total: 537ms	remaining: 0us
0:	learn: 42.9754370	total: 5.87ms	remaining: 581ms
1:	learn: 42.2613272	total: 13ms	remaining: 636ms
2:	learn: 41.4729969	total: 18.5ms	remaining: 597ms
3:	learn: 40.7127004	total: 24.1ms	remaining: 577ms
4:	learn: 39.7775109	total: 29.5ms	remaining: 561ms
5:	learn: 39.1736663	total: 35.4ms	remaining: 555ms
6:	learn: 38.2981109	total: 40.8ms	remaining: 542ms
7:	learn: 37.5352984	total: 46.4ms	remaining: 534ms
8:	learn: 36.7771474	total: 52.1ms	remaining: 526ms
9:	learn: 36.0581366	total: 57.6ms	remaining: 518ms
10:	learn: 35.3542706	total: 63.9ms	remaining: 517ms
11:	learn: 34.6937007	total: 69.8ms	remaining: 512ms
12:	learn: 34.0408035	total: 75.2ms	remaining: 504ms
13:	learn: 33.3460240	total: 80.6ms	remaining: 495ms
14:	learn: 32.8086243	total: 86.1ms	remaining: 488ms
15:	learn: 32.1934462	total: 93.2ms	remaining: 489ms
16:	learn: 31.6465519	total: 100ms	remaining: 489ms
17:	learn: 31.2161293	total: 105ms	remaining: 480ms
18:	learn: 30.6730548	total: 111ms	remaining: 471ms
19:	learn: 30.3153659	total: 116ms	remaining: 463ms
20:	learn: 29.7661420	total: 121ms	remaining: 455ms
21:	learn: 29.2095664	total: 126ms	remaining: 446ms
22:	learn: 28.7509592	total: 131ms	remaining: 438ms
23:	learn: 28.4347528	total: 136ms	remaining: 430ms
24:	learn: 28.0551654	total: 141ms	remaining: 422ms
25:	learn: 27.7295952	total: 145ms	remaining: 414ms
26:	learn: 27.2329225	total: 150ms	remaining: 407ms
27:	learn: 26.9970607	total: 156ms	remaining: 401ms
28:	learn: 26.6596544	total: 161ms	remaining: 394ms
29:	learn: 26.2633576	total: 175ms	remaining: 409ms
30:	learn: 25.9761623	total: 180ms	remaining: 402ms
31:	learn: 25.6177371	total: 185ms	remaining: 394ms
32:	learn: 25.2165933	total: 191ms	remaining: 388ms
33:	learn: 24.8012870	total: 196ms	remaining: 380ms
34:	learn: 24.4772532	total: 201ms	remaining: 374ms
35:	learn: 24.1560359	total: 209ms	remaining: 371ms
36:	learn: 23.9688812	total: 218ms	remaining: 371ms
37:	learn: 23.6907607	total: 226ms	remaining: 369ms
38:	learn: 23.3885772	total: 231ms	remaining: 362ms
39:	learn: 23.2234939	total: 237ms	remaining: 356ms
40:	learn: 22.9785026	total: 242ms	remaining: 348ms
41:	learn: 22.6827268	total: 247ms	remaining: 341ms
42:	learn: 22.4564360	total: 252ms	remaining: 334ms
43:	learn: 22.2517827	total: 257ms	remaining: 327ms
44:	learn: 21.9858709	total: 262ms	remaining: 320ms
45:	learn: 21.7595870	total: 267ms	remaining: 314ms
46:	learn: 21.5929957	total: 273ms	remaining: 307ms
47:	learn: 21.4071752	total: 277ms	remaining: 301ms
48:	learn: 21.2186470	total: 282ms	remaining: 294ms
49:	learn: 21.0691824	total: 287ms	remaining: 287ms
50:	learn: 20.8921347	total: 292ms	remaining: 280ms
51:	learn: 20.6834229	total: 297ms	remaining: 274ms
52:	learn: 20.4718988	total: 301ms	remaining: 267ms
53:	learn: 20.3413889	total: 306ms	remaining: 261ms
54:	learn: 20.1785464	total: 310ms	remaining: 254ms
55:	learn: 19.9824314	total: 315ms	remaining: 248ms
56:	learn: 19.8217596	total: 320ms	remaining: 241ms
57:	learn: 19.6318474	total: 325ms	remaining: 235ms
58:	learn: 19.4962236	total: 330ms	remaining: 229ms
59:	learn: 19.3114985	total: 335ms	remaining: 223ms
60:	learn: 19.2181156	total: 339ms	remaining: 217ms
61:	learn: 19.0689614	total: 344ms	remaining: 211ms
62:	learn: 18.9563267	total: 349ms	remaining: 205ms
63:	learn: 18.8343083	total: 354ms	remaining: 199ms
64:	learn: 18.7050033	total: 359ms	remaining: 193ms
65:	learn: 18.6014163	total: 363ms	remaining: 187ms
66:	learn: 18.4910692	total: 368ms	remaining: 181ms
67:	learn: 18.3935194	total: 373ms	remaining: 175ms
68:	learn: 18.2825842	total: 378ms	remaining: 170ms
69:	learn: 18.1519267	total: 384ms	remaining: 164ms
70:	learn: 18.0527651	total: 389ms	remaining: 159ms
71:	learn: 17.9770106	total: 394ms	remaining: 153ms
72:	learn: 17.9151628	total: 399ms	remaining: 148ms
73:	learn: 17.7957486	total: 408ms	remaining: 144ms
74:	learn: 17.7025765	total: 418ms	remaining: 139ms
75:	learn: 17.5957242	total: 426ms	remaining: 135ms
76:	learn: 17.4683244	total: 435ms	remaining: 130ms
77:	learn: 17.3415729	total: 441ms	remaining: 124ms
78:	learn: 17.2886896	total: 447ms	remaining: 119ms
79:	learn: 17.2280922	total: 452ms	remaining: 113ms
80:	learn: 17.1188996	total: 458ms	remaining: 107ms
81:	learn: 17.0236450	total: 464ms	remaining: 102ms
82:	learn: 16.9046661	total: 470ms	remaining: 96.3ms
83:	learn: 16.7930633	total: 476ms	remaining: 90.6ms
84:	learn: 16.6870100	total: 481ms	remaining: 84.9ms
85:	learn: 16.5512107	total: 487ms	remaining: 79.3ms
86:	learn: 16.4353400	total: 493ms	remaining: 73.6ms
87:	learn: 16.3256461	total: 499ms	remaining: 68ms
88:	learn: 16.2968057	total: 504ms	remaining: 62.3ms
89:	learn: 16.2136078	total: 509ms	remaining: 56.6ms
90:	learn: 16.1596096	total: 514ms	remaining: 50.8ms
91:	learn: 16.1164050	total: 518ms	remaining: 45.1ms
92:	learn: 16.0660454	total: 523ms	remaining: 39.4ms
93:	learn: 16.0380611	total: 528ms	remaining: 33.7ms
94:	learn: 15.9494441	total: 532ms	remaining: 28ms
95:	learn: 15.8874840	total: 537ms	remaining: 22.4ms
96:	learn: 15.8288234	total: 542ms	remaining: 16.8ms
97:	learn: 15.7562787	total: 547ms	remaining: 11.2ms
98:	learn: 15.6822678	total: 552ms	remaining: 5.57ms
99:	learn: 15.5901500	total: 556ms	remaining: 0us
0:	learn: 46.4504871	total: 5.4ms	remaining: 535ms
1:	learn: 45.7240114	total: 10.8ms	remaining: 530ms
2:	learn: 45.0308025	total: 20.2ms	remaining: 654ms
3:	learn: 44.1111169	total: 28.5ms	remaining: 684ms
4:	learn: 43.3925352	total: 35.4ms	remaining: 673ms
5:	learn: 42.7856354	total: 41ms	remaining: 642ms
6:	learn: 42.1998170	total: 47.3ms	remaining: 629ms
7:	learn: 41.3532708	total: 52.2ms	remaining: 600ms
8:	learn: 40.7314571	total: 56.9ms	remaining: 576ms
9:	learn: 39.9838066	total: 62.1ms	remaining: 559ms
10:	learn: 39.4168243	total: 67.5ms	remaining: 546ms
11:	learn: 39.0148769	total: 72.6ms	remaining: 532ms
12:	learn: 38.3055855	total: 77.7ms	remaining: 520ms
13:	learn: 37.7343198	total: 82.6ms	remaining: 507ms
14:	learn: 37.4177463	total: 87.5ms	remaining: 496ms
15:	learn: 36.9043298	total: 92.7ms	remaining: 487ms
16:	learn: 36.3139174	total: 97.6ms	remaining: 476ms
17:	learn: 35.7200448	total: 102ms	remaining: 466ms
18:	learn: 35.3763394	total: 107ms	remaining: 456ms
19:	learn: 34.7666728	total: 112ms	remaining: 446ms
20:	learn: 34.2642890	total: 116ms	remaining: 437ms
21:	learn: 33.8196936	total: 121ms	remaining: 428ms
22:	learn: 33.4205669	total: 126ms	remaining: 420ms
23:	learn: 32.8565493	total: 130ms	remaining: 413ms
24:	learn: 32.5287132	total: 135ms	remaining: 404ms
25:	learn: 32.2142064	total: 140ms	remaining: 397ms
26:	learn: 31.9258854	total: 145ms	remaining: 391ms
27:	learn: 31.4083665	total: 150ms	remaining: 385ms
28:	learn: 31.1615620	total: 155ms	remaining: 378ms
29:	learn: 30.6948867	total: 159ms	remaining: 371ms
30:	learn: 30.3185108	total: 164ms	remaining: 365ms
31:	learn: 29.9245223	total: 169ms	remaining: 358ms
32:	learn: 29.6683643	total: 173ms	remaining: 352ms
33:	learn: 29.3868143	total: 178ms	remaining: 345ms
34:	learn: 29.1105699	total: 183ms	remaining: 339ms
35:	learn: 28.8274848	total: 188ms	remaining: 334ms
36:	learn: 28.5478288	total: 193ms	remaining: 328ms
37:	learn: 28.2355121	total: 197ms	remaining: 322ms
38:	learn: 28.0182564	total: 203ms	remaining: 317ms
39:	learn: 27.7654405	total: 207ms	remaining: 311ms
40:	learn: 27.5720477	total: 212ms	remaining: 305ms
41:	learn: 27.3182782	total: 217ms	remaining: 300ms
42:	learn: 26.9504431	total: 222ms	remaining: 294ms
43:	learn: 26.7281906	total: 227ms	remaining: 288ms
44:	learn: 26.5390008	total: 231ms	remaining: 283ms
45:	learn: 26.3781338	total: 237ms	remaining: 278ms
46:	learn: 26.1763177	total: 244ms	remaining: 275ms
47:	learn: 25.9417647	total: 252ms	remaining: 273ms
48:	learn: 25.7528045	total: 259ms	remaining: 270ms
49:	learn: 25.6336897	total: 265ms	remaining: 265ms
50:	learn: 25.4800426	total: 271ms	remaining: 260ms
51:	learn: 25.2895681	total: 277ms	remaining: 256ms
52:	learn: 25.0827111	total: 283ms	remaining: 251ms
53:	learn: 24.7987678	total: 289ms	remaining: 246ms
54:	learn: 24.6309982	total: 294ms	remaining: 241ms
55:	learn: 24.3526776	total: 300ms	remaining: 236ms
56:	learn: 24.1689125	total: 306ms	remaining: 231ms
57:	learn: 23.9802039	total: 312ms	remaining: 226ms
58:	learn: 23.8059432	total: 318ms	remaining: 221ms
59:	learn: 23.6006403	total: 325ms	remaining: 217ms
60:	learn: 23.2948382	total: 331ms	remaining: 212ms
61:	learn: 23.1338922	total: 337ms	remaining: 207ms
62:	learn: 22.9581269	total: 344ms	remaining: 202ms
63:	learn: 22.8263127	total: 350ms	remaining: 197ms
64:	learn: 22.6966006	total: 355ms	remaining: 191ms
65:	learn: 22.6012389	total: 361ms	remaining: 186ms
66:	learn: 22.4220244	total: 367ms	remaining: 181ms
67:	learn: 22.3148342	total: 373ms	remaining: 175ms
68:	learn: 22.1543592	total: 377ms	remaining: 170ms
69:	learn: 22.0614050	total: 382ms	remaining: 164ms
70:	learn: 21.9134025	total: 387ms	remaining: 158ms
71:	learn: 21.8198101	total: 392ms	remaining: 152ms
72:	learn: 21.6944173	total: 396ms	remaining: 147ms
73:	learn: 21.4727420	total: 401ms	remaining: 141ms
74:	learn: 21.3000560	total: 406ms	remaining: 135ms
75:	learn: 21.1884740	total: 411ms	remaining: 130ms
76:	learn: 21.0321317	total: 416ms	remaining: 124ms
77:	learn: 20.9371793	total: 421ms	remaining: 119ms
78:	learn: 20.6800341	total: 426ms	remaining: 113ms
79:	learn: 20.5629904	total: 431ms	remaining: 108ms
80:	learn: 20.4098217	total: 436ms	remaining: 102ms
81:	learn: 20.2139261	total: 441ms	remaining: 96.8ms
82:	learn: 20.1024260	total: 446ms	remaining: 91.4ms
83:	learn: 19.9835855	total: 451ms	remaining: 85.9ms
84:	learn: 19.9018880	total: 456ms	remaining: 80.5ms
85:	learn: 19.7819843	total: 462ms	remaining: 75.2ms
86:	learn: 19.6352780	total: 474ms	remaining: 70.8ms
87:	learn: 19.4888328	total: 483ms	remaining: 65.9ms
88:	learn: 19.4365121	total: 490ms	remaining: 60.5ms
89:	learn: 19.3427430	total: 497ms	remaining: 55.2ms
90:	learn: 19.2884907	total: 502ms	remaining: 49.6ms
91:	learn: 19.1898932	total: 507ms	remaining: 44.1ms
92:	learn: 19.0775661	total: 512ms	remaining: 38.5ms
93:	learn: 19.0334055	total: 517ms	remaining: 33ms
94:	learn: 18.9381916	total: 522ms	remaining: 27.5ms
95:	learn: 18.8471198	total: 527ms	remaining: 22ms
96:	learn: 18.7136478	total: 532ms	remaining: 16.5ms
97:	learn: 18.6633102	total: 537ms	remaining: 11ms
98:	learn: 18.5887516	total: 542ms	remaining: 5.47ms
99:	learn: 18.4841597	total: 547ms	remaining: 0us
0:	learn: 46.2172336	total: 4.99ms	remaining: 494ms
1:	learn: 45.4248871	total: 9.56ms	remaining: 468ms
2:	learn: 44.8702937	total: 14.4ms	remaining: 467ms
3:	learn: 44.2019212	total: 19ms	remaining: 456ms
4:	learn: 43.4805210	total: 23.7ms	remaining: 449ms
5:	learn: 42.7336269	total: 28.5ms	remaining: 447ms
6:	learn: 42.0396670	total: 33.4ms	remaining: 444ms
7:	learn: 41.5668459	total: 38ms	remaining: 437ms
8:	learn: 40.8999125	total: 43.2ms	remaining: 437ms
9:	learn: 40.3358512	total: 48.2ms	remaining: 434ms
10:	learn: 39.7511489	total: 52.9ms	remaining: 428ms
11:	learn: 39.0775416	total: 57.7ms	remaining: 423ms
12:	learn: 38.5204735	total: 62.7ms	remaining: 419ms
13:	learn: 38.2087509	total: 67.8ms	remaining: 417ms
14:	learn: 37.7259552	total: 72.7ms	remaining: 412ms
15:	learn: 37.1646397	total: 77.7ms	remaining: 408ms
16:	learn: 36.7093520	total: 82.7ms	remaining: 404ms
17:	learn: 36.2212308	total: 88.1ms	remaining: 401ms
18:	learn: 35.8682156	total: 96.8ms	remaining: 413ms
19:	learn: 35.6026383	total: 107ms	remaining: 427ms
20:	learn: 35.1739725	total: 114ms	remaining: 430ms
21:	learn: 34.5938003	total: 122ms	remaining: 434ms
22:	learn: 34.1479056	total: 128ms	remaining: 429ms
23:	learn: 33.8759356	total: 134ms	remaining: 423ms
24:	learn: 33.2898426	total: 139ms	remaining: 418ms
25:	learn: 32.9220237	total: 145ms	remaining: 413ms
26:	learn: 32.4324374	total: 152ms	remaining: 410ms
27:	learn: 32.1726327	total: 158ms	remaining: 406ms
28:	learn: 31.8020879	total: 163ms	remaining: 400ms
29:	learn: 31.4329781	total: 169ms	remaining: 393ms
30:	learn: 30.9995282	total: 174ms	remaining: 387ms
31:	learn: 30.6815978	total: 180ms	remaining: 382ms
32:	learn: 30.2991029	total: 185ms	remaining: 376ms
33:	learn: 30.0354202	total: 191ms	remaining: 370ms
34:	learn: 29.7620535	total: 196ms	remaining: 363ms
35:	learn: 29.4552589	total: 200ms	remaining: 356ms
36:	learn: 29.2634399	total: 205ms	remaining: 349ms
37:	learn: 28.8345135	total: 210ms	remaining: 342ms
38:	learn: 28.5551142	total: 215ms	remaining: 336ms
39:	learn: 28.3258809	total: 219ms	remaining: 329ms
40:	learn: 28.0835564	total: 224ms	remaining: 322ms
41:	learn: 27.7517159	total: 229ms	remaining: 316ms
42:	learn: 27.5427595	total: 233ms	remaining: 309ms
43:	learn: 27.3925105	total: 238ms	remaining: 303ms
44:	learn: 27.2377120	total: 243ms	remaining: 298ms
45:	learn: 26.9930398	total: 248ms	remaining: 291ms
46:	learn: 26.7748687	total: 253ms	remaining: 285ms
47:	learn: 26.5856986	total: 258ms	remaining: 279ms
48:	learn: 26.4344153	total: 263ms	remaining: 274ms
49:	learn: 26.3263456	total: 268ms	remaining: 268ms
50:	learn: 26.2048412	total: 273ms	remaining: 262ms
51:	learn: 26.0608546	total: 278ms	remaining: 257ms
52:	learn: 25.9428146	total: 283ms	remaining: 251ms
53:	learn: 25.7578029	total: 291ms	remaining: 248ms
54:	learn: 25.5696792	total: 300ms	remaining: 245ms
55:	learn: 25.3291935	total: 308ms	remaining: 242ms
56:	learn: 25.1388942	total: 314ms	remaining: 237ms
57:	learn: 24.9853945	total: 320ms	remaining: 232ms
58:	learn: 24.8037785	total: 325ms	remaining: 226ms
59:	learn: 24.5326704	total: 330ms	remaining: 220ms
60:	learn: 24.2208240	total: 335ms	remaining: 214ms
61:	learn: 24.0774015	total: 339ms	remaining: 208ms
62:	learn: 23.9705824	total: 344ms	remaining: 202ms
63:	learn: 23.8877665	total: 349ms	remaining: 196ms
64:	learn: 23.7309043	total: 354ms	remaining: 190ms
65:	learn: 23.5820140	total: 358ms	remaining: 185ms
66:	learn: 23.3762012	total: 363ms	remaining: 179ms
67:	learn: 23.2317502	total: 368ms	remaining: 173ms
68:	learn: 23.0868331	total: 373ms	remaining: 168ms
69:	learn: 22.9642758	total: 378ms	remaining: 162ms
70:	learn: 22.8085341	total: 382ms	remaining: 156ms
71:	learn: 22.6834294	total: 387ms	remaining: 150ms
72:	learn: 22.6152922	total: 392ms	remaining: 145ms
73:	learn: 22.3675145	total: 397ms	remaining: 139ms
74:	learn: 22.3023338	total: 401ms	remaining: 134ms
75:	learn: 22.1866833	total: 406ms	remaining: 128ms
76:	learn: 22.0163130	total: 411ms	remaining: 123ms
77:	learn: 21.9691306	total: 416ms	remaining: 117ms
78:	learn: 21.9004647	total: 420ms	remaining: 112ms
79:	learn: 21.7931869	total: 425ms	remaining: 106ms
80:	learn: 21.6747916	total: 430ms	remaining: 101ms
81:	learn: 21.5187568	total: 434ms	remaining: 95.3ms
82:	learn: 21.3124880	total: 439ms	remaining: 89.9ms
83:	learn: 21.1979524	total: 444ms	remaining: 84.6ms
84:	learn: 21.1311130	total: 449ms	remaining: 79.3ms
85:	learn: 21.0606062	total: 454ms	remaining: 73.9ms
86:	learn: 20.9900935	total: 459ms	remaining: 68.6ms
87:	learn: 20.8908054	total: 464ms	remaining: 63.3ms
88:	learn: 20.8088525	total: 469ms	remaining: 58ms
89:	learn: 20.7300955	total: 475ms	remaining: 52.7ms
90:	learn: 20.6130276	total: 480ms	remaining: 47.5ms
91:	learn: 20.5437508	total: 486ms	remaining: 42.3ms
92:	learn: 20.5029426	total: 495ms	remaining: 37.3ms
93:	learn: 20.4416708	total: 506ms	remaining: 32.3ms
94:	learn: 20.3917812	total: 513ms	remaining: 27ms
95:	learn: 20.3305024	total: 521ms	remaining: 21.7ms
96:	learn: 20.2375704	total: 527ms	remaining: 16.3ms
97:	learn: 20.1835197	total: 533ms	remaining: 10.9ms
98:	learn: 20.1246834	total: 538ms	remaining: 5.44ms
99:	learn: 20.0506334	total: 544ms	remaining: 0us
0:	learn: 46.7334648	total: 6.74ms	remaining: 668ms
1:	learn: 46.2069876	total: 11.5ms	remaining: 564ms
2:	learn: 45.3699967	total: 16.1ms	remaining: 520ms
3:	learn: 44.6866787	total: 20.9ms	remaining: 501ms
4:	learn: 43.8536031	total: 25.5ms	remaining: 485ms
5:	learn: 43.4716853	total: 30.2ms	remaining: 473ms
6:	learn: 42.9929637	total: 34.9ms	remaining: 464ms
7:	learn: 42.4952169	total: 39.5ms	remaining: 455ms
8:	learn: 41.7548337	total: 44.4ms	remaining: 449ms
9:	learn: 41.1054415	total: 49ms	remaining: 441ms
10:	learn: 40.4827492	total: 53.8ms	remaining: 435ms
11:	learn: 39.7605907	total: 58.6ms	remaining: 430ms
12:	learn: 39.2532558	total: 63.4ms	remaining: 424ms
13:	learn: 38.6572753	total: 68ms	remaining: 418ms
14:	learn: 38.2886959	total: 72.7ms	remaining: 412ms
15:	learn: 37.7816612	total: 78.2ms	remaining: 411ms
16:	learn: 37.1680589	total: 84.1ms	remaining: 411ms
17:	learn: 36.5753004	total: 91.2ms	remaining: 416ms
18:	learn: 36.2339458	total: 99ms	remaining: 422ms
19:	learn: 35.9159716	total: 107ms	remaining: 427ms
20:	learn: 35.4591743	total: 113ms	remaining: 425ms
21:	learn: 34.8726070	total: 120ms	remaining: 425ms
22:	learn: 34.3903591	total: 125ms	remaining: 419ms
23:	learn: 34.1236827	total: 130ms	remaining: 411ms
24:	learn: 33.8026540	total: 135ms	remaining: 404ms
25:	learn: 33.4594822	total: 139ms	remaining: 396ms
26:	learn: 33.1338910	total: 144ms	remaining: 389ms
27:	learn: 32.8527106	total: 149ms	remaining: 382ms
28:	learn: 32.4923829	total: 153ms	remaining: 375ms
29:	learn: 32.0560533	total: 158ms	remaining: 369ms
30:	learn: 31.6614408	total: 163ms	remaining: 362ms
31:	learn: 31.2796040	total: 168ms	remaining: 357ms
32:	learn: 30.8214741	total: 173ms	remaining: 351ms
33:	learn: 30.5908694	total: 178ms	remaining: 345ms
34:	learn: 30.3637356	total: 183ms	remaining: 339ms
35:	learn: 30.0446511	total: 188ms	remaining: 333ms
36:	learn: 29.8792549	total: 193ms	remaining: 328ms
37:	learn: 29.5488457	total: 197ms	remaining: 322ms
38:	learn: 29.2808568	total: 202ms	remaining: 316ms
39:	learn: 29.0603765	total: 207ms	remaining: 311ms
40:	learn: 28.8272425	total: 212ms	remaining: 305ms
41:	learn: 28.4753580	total: 216ms	remaining: 299ms
42:	learn: 28.2963614	total: 221ms	remaining: 293ms
43:	learn: 28.1054768	total: 226ms	remaining: 287ms
44:	learn: 27.9038093	total: 230ms	remaining: 282ms
45:	learn: 27.6305487	total: 235ms	remaining: 276ms
46:	learn: 27.4457907	total: 255ms	remaining: 288ms
47:	learn: 27.1855957	total: 260ms	remaining: 282ms
48:	learn: 26.9987934	total: 265ms	remaining: 276ms
49:	learn: 26.7881067	total: 271ms	remaining: 271ms
50:	learn: 26.6385231	total: 277ms	remaining: 266ms
51:	learn: 26.4661755	total: 282ms	remaining: 261ms
52:	learn: 26.3331868	total: 288ms	remaining: 255ms
53:	learn: 26.0353476	total: 293ms	remaining: 250ms
54:	learn: 25.8257147	total: 299ms	remaining: 244ms
55:	learn: 25.5924383	total: 304ms	remaining: 239ms
56:	learn: 25.4082209	total: 309ms	remaining: 233ms
57:	learn: 25.2350104	total: 315ms	remaining: 228ms
58:	learn: 25.1789867	total: 324ms	remaining: 225ms
59:	learn: 24.9111359	total: 333ms	remaining: 222ms
60:	learn: 24.6314503	total: 341ms	remaining: 218ms
61:	learn: 24.4297999	total: 349ms	remaining: 214ms
62:	learn: 24.3126171	total: 355ms	remaining: 208ms
63:	learn: 24.1544005	total: 361ms	remaining: 203ms
64:	learn: 24.0197950	total: 366ms	remaining: 197ms
65:	learn: 23.8483087	total: 372ms	remaining: 192ms
66:	learn: 23.6624915	total: 379ms	remaining: 187ms
67:	learn: 23.5068105	total: 384ms	remaining: 181ms
68:	learn: 23.4266187	total: 390ms	remaining: 175ms
69:	learn: 23.3535388	total: 395ms	remaining: 169ms
70:	learn: 23.2477190	total: 400ms	remaining: 163ms
71:	learn: 23.1877634	total: 406ms	remaining: 158ms
72:	learn: 23.1344720	total: 412ms	remaining: 153ms
73:	learn: 22.9498234	total: 417ms	remaining: 147ms
74:	learn: 22.9068295	total: 422ms	remaining: 141ms
75:	learn: 22.7368434	total: 427ms	remaining: 135ms
76:	learn: 22.6084901	total: 432ms	remaining: 129ms
77:	learn: 22.4690295	total: 437ms	remaining: 123ms
78:	learn: 22.3970100	total: 442ms	remaining: 118ms
79:	learn: 22.3025537	total: 447ms	remaining: 112ms
80:	learn: 22.2089293	total: 452ms	remaining: 106ms
81:	learn: 22.0522107	total: 457ms	remaining: 100ms
82:	learn: 21.9368213	total: 462ms	remaining: 94.6ms
83:	learn: 21.7968322	total: 467ms	remaining: 88.9ms
84:	learn: 21.7416164	total: 472ms	remaining: 83.3ms
85:	learn: 21.6031099	total: 477ms	remaining: 77.6ms
86:	learn: 21.4530627	total: 482ms	remaining: 72ms
87:	learn: 21.3118417	total: 487ms	remaining: 66.4ms
88:	learn: 21.2760431	total: 492ms	remaining: 60.8ms
89:	learn: 21.2071350	total: 498ms	remaining: 55.3ms
90:	learn: 21.1051001	total: 503ms	remaining: 49.7ms
91:	learn: 21.0246142	total: 508ms	remaining: 44.2ms
92:	learn: 20.9834999	total: 514ms	remaining: 38.7ms
93:	learn: 20.8989393	total: 523ms	remaining: 33.4ms
94:	learn: 20.8262231	total: 531ms	remaining: 28ms
95:	learn: 20.7369110	total: 538ms	remaining: 22.4ms
96:	learn: 20.6409587	total: 543ms	remaining: 16.8ms
97:	learn: 20.5553641	total: 549ms	remaining: 11.2ms
98:	learn: 20.4317232	total: 554ms	remaining: 5.59ms
99:	learn: 20.3708681	total: 558ms	remaining: 0us
0:	learn: 27.6165091	total: 5.03ms	remaining: 498ms
1:	learn: 27.2156009	total: 9.63ms	remaining: 472ms
2:	learn: 26.8744169	total: 14.5ms	remaining: 470ms
3:	learn: 26.5530473	total: 19.4ms	remaining: 466ms
4:	learn: 26.1200739	total: 24.3ms	remaining: 461ms
5:	learn: 25.7559063	total: 29.4ms	remaining: 460ms
6:	learn: 25.3817459	total: 34.5ms	remaining: 458ms
7:	learn: 25.0780231	total: 39.9ms	remaining: 459ms
8:	learn: 24.7908836	total: 45.4ms	remaining: 459ms
9:	learn: 24.5023726	total: 50.3ms	remaining: 453ms
10:	learn: 24.2430447	total: 55.5ms	remaining: 449ms
11:	learn: 24.0150987	total: 60.5ms	remaining: 444ms
12:	learn: 23.6832732	total: 65.2ms	remaining: 436ms
13:	learn: 23.4512462	total: 69.9ms	remaining: 429ms
14:	learn: 23.2300808	total: 74.8ms	remaining: 424ms
15:	learn: 23.0198192	total: 80.4ms	remaining: 422ms
16:	learn: 22.7757356	total: 85ms	remaining: 415ms
17:	learn: 22.4962727	total: 89.7ms	remaining: 408ms
18:	learn: 22.2131794	total: 94.9ms	remaining: 405ms
19:	learn: 21.9844087	total: 100ms	remaining: 401ms
20:	learn: 21.6467820	total: 105ms	remaining: 396ms
21:	learn: 21.4458045	total: 110ms	remaining: 392ms
22:	learn: 21.2706627	total: 116ms	remaining: 388ms
23:	learn: 21.0770166	total: 121ms	remaining: 383ms
24:	learn: 20.8871491	total: 130ms	remaining: 390ms
25:	learn: 20.7151270	total: 140ms	remaining: 398ms
26:	learn: 20.5585218	total: 148ms	remaining: 400ms
27:	learn: 20.4091128	total: 156ms	remaining: 401ms
28:	learn: 20.2343121	total: 162ms	remaining: 396ms
29:	learn: 20.0685862	total: 168ms	remaining: 391ms
30:	learn: 19.8339661	total: 173ms	remaining: 386ms
31:	learn: 19.6811138	total: 179ms	remaining: 380ms
32:	learn: 19.4881999	total: 185ms	remaining: 375ms
33:	learn: 19.3473429	total: 190ms	remaining: 370ms
34:	learn: 19.1087185	total: 196ms	remaining: 364ms
35:	learn: 18.9817724	total: 202ms	remaining: 358ms
36:	learn: 18.8465124	total: 207ms	remaining: 352ms
37:	learn: 18.6998182	total: 213ms	remaining: 347ms
38:	learn: 18.5534881	total: 219ms	remaining: 342ms
39:	learn: 18.4221213	total: 224ms	remaining: 335ms
40:	learn: 18.3262428	total: 228ms	remaining: 328ms
41:	learn: 18.2018519	total: 233ms	remaining: 322ms
42:	learn: 18.0704402	total: 238ms	remaining: 315ms
43:	learn: 17.9674737	total: 243ms	remaining: 309ms
44:	learn: 17.8092746	total: 247ms	remaining: 302ms
45:	learn: 17.7036671	total: 253ms	remaining: 297ms
46:	learn: 17.5636023	total: 258ms	remaining: 291ms
47:	learn: 17.3922671	total: 263ms	remaining: 284ms
48:	learn: 17.2777727	total: 267ms	remaining: 278ms
49:	learn: 17.1901866	total: 272ms	remaining: 272ms
50:	learn: 17.0799264	total: 277ms	remaining: 266ms
51:	learn: 17.0022808	total: 282ms	remaining: 260ms
52:	learn: 16.9193737	total: 286ms	remaining: 254ms
53:	learn: 16.8349324	total: 292ms	remaining: 248ms
54:	learn: 16.7122802	total: 297ms	remaining: 243ms
55:	learn: 16.5736462	total: 301ms	remaining: 237ms
56:	learn: 16.4576798	total: 307ms	remaining: 231ms
57:	learn: 16.3336075	total: 311ms	remaining: 226ms
58:	learn: 16.2578113	total: 319ms	remaining: 221ms
59:	learn: 16.1586938	total: 326ms	remaining: 218ms
60:	learn: 16.0827831	total: 333ms	remaining: 213ms
61:	learn: 16.0030150	total: 340ms	remaining: 208ms
62:	learn: 15.8741662	total: 346ms	remaining: 203ms
63:	learn: 15.7533897	total: 352ms	remaining: 198ms
64:	learn: 15.6743804	total: 358ms	remaining: 193ms
65:	learn: 15.6291324	total: 363ms	remaining: 187ms
66:	learn: 15.5363523	total: 368ms	remaining: 181ms
67:	learn: 15.4675550	total: 373ms	remaining: 176ms
68:	learn: 15.3959873	total: 378ms	remaining: 170ms
69:	learn: 15.3222045	total: 382ms	remaining: 164ms
70:	learn: 15.2343883	total: 387ms	remaining: 158ms
71:	learn: 15.1891070	total: 392ms	remaining: 152ms
72:	learn: 15.1320798	total: 396ms	remaining: 147ms
73:	learn: 15.0590468	total: 401ms	remaining: 141ms
74:	learn: 14.9682726	total: 406ms	remaining: 135ms
75:	learn: 14.8868528	total: 411ms	remaining: 130ms
76:	learn: 14.8046328	total: 415ms	remaining: 124ms
77:	learn: 14.7253152	total: 420ms	remaining: 118ms
78:	learn: 14.6438207	total: 425ms	remaining: 113ms
79:	learn: 14.5350651	total: 430ms	remaining: 107ms
80:	learn: 14.4301800	total: 434ms	remaining: 102ms
81:	learn: 14.3716251	total: 439ms	remaining: 96.3ms
82:	learn: 14.3127586	total: 444ms	remaining: 90.8ms
83:	learn: 14.2685086	total: 449ms	remaining: 85.5ms
84:	learn: 14.1936111	total: 453ms	remaining: 80ms
85:	learn: 14.1488261	total: 458ms	remaining: 74.6ms
86:	learn: 14.0654602	total: 464ms	remaining: 69.3ms
87:	learn: 14.0026195	total: 469ms	remaining: 63.9ms
88:	learn: 13.9498697	total: 473ms	remaining: 58.5ms
89:	learn: 13.9002477	total: 478ms	remaining: 53.1ms
90:	learn: 13.8429017	total: 483ms	remaining: 47.8ms
91:	learn: 13.7892130	total: 488ms	remaining: 42.4ms
92:	learn: 13.7122418	total: 493ms	remaining: 37.1ms
93:	learn: 13.6752324	total: 497ms	remaining: 31.7ms
94:	learn: 13.6186680	total: 502ms	remaining: 26.4ms
95:	learn: 13.5578384	total: 507ms	remaining: 21.1ms
96:	learn: 13.5028120	total: 512ms	remaining: 15.8ms
97:	learn: 13.4306895	total: 517ms	remaining: 10.6ms
98:	learn: 13.3955813	total: 522ms	remaining: 5.28ms
99:	learn: 13.3380095	total: 527ms	remaining: 0us
0:	learn: 42.9675374	total: 6.65ms	remaining: 658ms
1:	learn: 42.2542078	total: 12.9ms	remaining: 632ms
2:	learn: 41.5532166	total: 19.4ms	remaining: 626ms
3:	learn: 40.7812113	total: 25.5ms	remaining: 613ms
4:	learn: 39.8819601	total: 31.1ms	remaining: 591ms
5:	learn: 39.0997229	total: 33.2ms	remaining: 520ms
6:	learn: 38.2185623	total: 39.2ms	remaining: 521ms
7:	learn: 37.5465645	total: 45.4ms	remaining: 522ms
8:	learn: 36.8449555	total: 50.3ms	remaining: 509ms
9:	learn: 36.0912815	total: 54.9ms	remaining: 494ms
10:	learn: 35.5776470	total: 59.7ms	remaining: 483ms
11:	learn: 34.7845329	total: 64.3ms	remaining: 472ms
12:	learn: 34.1574031	total: 69.4ms	remaining: 465ms
13:	learn: 33.4950652	total: 74.8ms	remaining: 460ms
14:	learn: 32.9343881	total: 80.1ms	remaining: 454ms
15:	learn: 32.4356238	total: 85.4ms	remaining: 448ms
16:	learn: 31.8370592	total: 90.8ms	remaining: 443ms
17:	learn: 31.2122644	total: 96.1ms	remaining: 438ms
18:	learn: 30.7195190	total: 101ms	remaining: 432ms
19:	learn: 30.1548478	total: 107ms	remaining: 426ms
20:	learn: 29.6521001	total: 110ms	remaining: 412ms
21:	learn: 29.1746988	total: 115ms	remaining: 408ms
22:	learn: 28.6492690	total: 120ms	remaining: 401ms
23:	learn: 28.1958339	total: 125ms	remaining: 395ms
24:	learn: 27.9126674	total: 131ms	remaining: 392ms
25:	learn: 27.5059508	total: 136ms	remaining: 386ms
26:	learn: 27.0869176	total: 141ms	remaining: 381ms
27:	learn: 26.6545277	total: 147ms	remaining: 377ms
28:	learn: 26.2388575	total: 152ms	remaining: 372ms
29:	learn: 25.8957708	total: 158ms	remaining: 368ms
30:	learn: 25.5045901	total: 168ms	remaining: 373ms
31:	learn: 25.2559530	total: 177ms	remaining: 377ms
32:	learn: 24.9012566	total: 184ms	remaining: 373ms
33:	learn: 24.5601820	total: 190ms	remaining: 368ms
34:	learn: 24.2407285	total: 195ms	remaining: 362ms
35:	learn: 23.9481769	total: 200ms	remaining: 355ms
36:	learn: 23.6746994	total: 205ms	remaining: 349ms
37:	learn: 23.4470352	total: 210ms	remaining: 343ms
38:	learn: 23.1678305	total: 215ms	remaining: 337ms
39:	learn: 22.9660692	total: 220ms	remaining: 331ms
40:	learn: 22.7102548	total: 226ms	remaining: 325ms
41:	learn: 22.5152447	total: 231ms	remaining: 319ms
42:	learn: 22.2967100	total: 236ms	remaining: 313ms
43:	learn: 22.0869517	total: 241ms	remaining: 307ms
44:	learn: 21.8556497	total: 246ms	remaining: 301ms
45:	learn: 21.7036804	total: 252ms	remaining: 296ms
46:	learn: 21.4792011	total: 257ms	remaining: 290ms
47:	learn: 21.2830384	total: 262ms	remaining: 284ms
48:	learn: 21.0771837	total: 268ms	remaining: 279ms
49:	learn: 20.8824468	total: 274ms	remaining: 274ms
50:	learn: 20.7250875	total: 279ms	remaining: 268ms
51:	learn: 20.5564423	total: 284ms	remaining: 262ms
52:	learn: 20.4067403	total: 290ms	remaining: 257ms
53:	learn: 20.2674808	total: 295ms	remaining: 251ms
54:	learn: 20.1394249	total: 300ms	remaining: 246ms
55:	learn: 19.9748016	total: 306ms	remaining: 240ms
56:	learn: 19.8159522	total: 311ms	remaining: 235ms
57:	learn: 19.6811073	total: 317ms	remaining: 229ms
58:	learn: 19.5083232	total: 322ms	remaining: 224ms
59:	learn: 19.3949390	total: 325ms	remaining: 216ms
60:	learn: 19.2485728	total: 330ms	remaining: 211ms
61:	learn: 19.1255523	total: 335ms	remaining: 205ms
62:	learn: 18.9423320	total: 340ms	remaining: 200ms
63:	learn: 18.7794545	total: 346ms	remaining: 194ms
64:	learn: 18.6339033	total: 351ms	remaining: 189ms
65:	learn: 18.5188724	total: 357ms	remaining: 184ms
66:	learn: 18.3398412	total: 362ms	remaining: 178ms
67:	learn: 18.2873427	total: 368ms	remaining: 173ms
68:	learn: 18.1287092	total: 378ms	remaining: 170ms
69:	learn: 18.0163474	total: 390ms	remaining: 167ms
70:	learn: 17.9428395	total: 398ms	remaining: 163ms
71:	learn: 17.7906087	total: 407ms	remaining: 158ms
72:	learn: 17.6121088	total: 413ms	remaining: 153ms
73:	learn: 17.5136572	total: 420ms	remaining: 148ms
74:	learn: 17.3837993	total: 427ms	remaining: 142ms
75:	learn: 17.3015647	total: 433ms	remaining: 137ms
76:	learn: 17.1991252	total: 439ms	remaining: 131ms
77:	learn: 17.0854777	total: 445ms	remaining: 126ms
78:	learn: 17.0308269	total: 450ms	remaining: 120ms
79:	learn: 16.9754807	total: 455ms	remaining: 114ms
80:	learn: 16.9174907	total: 460ms	remaining: 108ms
81:	learn: 16.7962603	total: 465ms	remaining: 102ms
82:	learn: 16.6685446	total: 471ms	remaining: 96.5ms
83:	learn: 16.5812672	total: 477ms	remaining: 90.9ms
84:	learn: 16.4896026	total: 482ms	remaining: 85.1ms
85:	learn: 16.4023414	total: 487ms	remaining: 79.3ms
86:	learn: 16.3093718	total: 492ms	remaining: 73.5ms
87:	learn: 16.2409040	total: 497ms	remaining: 67.7ms
88:	learn: 16.1616213	total: 502ms	remaining: 62ms
89:	learn: 16.0825203	total: 506ms	remaining: 56.3ms
90:	learn: 16.0204931	total: 511ms	remaining: 50.6ms
91:	learn: 15.9741267	total: 516ms	remaining: 44.9ms
92:	learn: 15.9413725	total: 521ms	remaining: 39.2ms
93:	learn: 15.8762295	total: 526ms	remaining: 33.6ms
94:	learn: 15.8165812	total: 531ms	remaining: 27.9ms
95:	learn: 15.7244343	total: 536ms	remaining: 22.3ms
96:	learn: 15.6537033	total: 541ms	remaining: 16.7ms
97:	learn: 15.6052320	total: 546ms	remaining: 11.1ms
98:	learn: 15.5434930	total: 551ms	remaining: 5.57ms
99:	learn: 15.4452106	total: 557ms	remaining: 0us
0:	learn: 46.5387280	total: 5.01ms	remaining: 496ms
1:	learn: 45.8605074	total: 9.54ms	remaining: 468ms
2:	learn: 45.2237152	total: 14.4ms	remaining: 467ms
3:	learn: 44.4158454	total: 19.1ms	remaining: 459ms
4:	learn: 43.7177384	total: 23.6ms	remaining: 448ms
5:	learn: 42.9896372	total: 28.4ms	remaining: 445ms
6:	learn: 42.3639431	total: 33.6ms	remaining: 446ms
7:	learn: 41.6648406	total: 38ms	remaining: 437ms
8:	learn: 41.0681442	total: 42.9ms	remaining: 434ms
9:	learn: 40.4478745	total: 47.7ms	remaining: 429ms
10:	learn: 40.0398470	total: 52.4ms	remaining: 424ms
11:	learn: 39.3300888	total: 57.3ms	remaining: 420ms
12:	learn: 38.9198991	total: 62ms	remaining: 415ms
13:	learn: 38.4022666	total: 66.6ms	remaining: 409ms
14:	learn: 37.9124629	total: 71.6ms	remaining: 406ms
15:	learn: 37.3846174	total: 76.5ms	remaining: 401ms
16:	learn: 36.8502348	total: 81.2ms	remaining: 396ms
17:	learn: 36.5079755	total: 86.1ms	remaining: 392ms
18:	learn: 36.1239339	total: 90.9ms	remaining: 387ms
19:	learn: 35.8388688	total: 95.6ms	remaining: 382ms
20:	learn: 35.4915710	total: 100ms	remaining: 378ms
21:	learn: 34.9483623	total: 105ms	remaining: 373ms
22:	learn: 34.6033866	total: 110ms	remaining: 370ms
23:	learn: 34.1483341	total: 116ms	remaining: 366ms
24:	learn: 33.7626484	total: 121ms	remaining: 362ms
25:	learn: 33.4160820	total: 125ms	remaining: 357ms
26:	learn: 33.0421483	total: 130ms	remaining: 352ms
27:	learn: 32.6573469	total: 135ms	remaining: 348ms
28:	learn: 32.2672417	total: 140ms	remaining: 344ms
29:	learn: 31.8257441	total: 145ms	remaining: 338ms
30:	learn: 31.3394923	total: 149ms	remaining: 333ms
31:	learn: 30.9472894	total: 155ms	remaining: 329ms
32:	learn: 30.6961423	total: 160ms	remaining: 326ms
33:	learn: 30.4670615	total: 166ms	remaining: 323ms
34:	learn: 30.1495001	total: 172ms	remaining: 320ms
35:	learn: 29.8071763	total: 178ms	remaining: 316ms
36:	learn: 29.5255984	total: 187ms	remaining: 318ms
37:	learn: 29.2236758	total: 195ms	remaining: 318ms
38:	learn: 28.9199699	total: 204ms	remaining: 318ms
39:	learn: 28.7003989	total: 210ms	remaining: 315ms
40:	learn: 28.4681160	total: 216ms	remaining: 311ms
41:	learn: 28.2692668	total: 222ms	remaining: 307ms
42:	learn: 27.9327254	total: 228ms	remaining: 302ms
43:	learn: 27.7193597	total: 234ms	remaining: 298ms
44:	learn: 27.4061006	total: 240ms	remaining: 294ms
45:	learn: 27.1840910	total: 247ms	remaining: 290ms
46:	learn: 26.8943816	total: 253ms	remaining: 285ms
47:	learn: 26.6576617	total: 259ms	remaining: 281ms
48:	learn: 26.3230094	total: 265ms	remaining: 275ms
49:	learn: 26.0488483	total: 271ms	remaining: 271ms
50:	learn: 25.7795537	total: 278ms	remaining: 267ms
51:	learn: 25.6103781	total: 283ms	remaining: 261ms
52:	learn: 25.4107383	total: 288ms	remaining: 255ms
53:	learn: 25.1757211	total: 293ms	remaining: 250ms
54:	learn: 24.8949842	total: 298ms	remaining: 244ms
55:	learn: 24.7028694	total: 303ms	remaining: 238ms
56:	learn: 24.4033555	total: 308ms	remaining: 232ms
57:	learn: 24.2109268	total: 313ms	remaining: 227ms
58:	learn: 24.0697623	total: 318ms	remaining: 221ms
59:	learn: 23.8291672	total: 323ms	remaining: 215ms
60:	learn: 23.5972471	total: 327ms	remaining: 209ms
61:	learn: 23.4241182	total: 332ms	remaining: 203ms
62:	learn: 23.2617022	total: 337ms	remaining: 198ms
63:	learn: 23.0329448	total: 342ms	remaining: 192ms
64:	learn: 22.9108081	total: 347ms	remaining: 187ms
65:	learn: 22.8001962	total: 353ms	remaining: 182ms
66:	learn: 22.6861907	total: 358ms	remaining: 176ms
67:	learn: 22.5152895	total: 363ms	remaining: 171ms
68:	learn: 22.3734214	total: 368ms	remaining: 165ms
69:	learn: 22.1840754	total: 373ms	remaining: 160ms
70:	learn: 22.0732908	total: 378ms	remaining: 154ms
71:	learn: 21.8880456	total: 387ms	remaining: 151ms
72:	learn: 21.7838784	total: 395ms	remaining: 146ms
73:	learn: 21.5532885	total: 402ms	remaining: 141ms
74:	learn: 21.3998735	total: 408ms	remaining: 136ms
75:	learn: 21.2699824	total: 414ms	remaining: 131ms
76:	learn: 21.1077652	total: 419ms	remaining: 125ms
77:	learn: 20.9759102	total: 424ms	remaining: 119ms
78:	learn: 20.7531342	total: 429ms	remaining: 114ms
79:	learn: 20.6729631	total: 434ms	remaining: 108ms
80:	learn: 20.4903474	total: 439ms	remaining: 103ms
81:	learn: 20.3708622	total: 445ms	remaining: 97.7ms
82:	learn: 20.2627857	total: 451ms	remaining: 92.3ms
83:	learn: 20.1335464	total: 456ms	remaining: 86.9ms
84:	learn: 20.0100864	total: 462ms	remaining: 81.5ms
85:	learn: 19.9374357	total: 467ms	remaining: 76ms
86:	learn: 19.8383097	total: 473ms	remaining: 70.6ms
87:	learn: 19.7804443	total: 478ms	remaining: 65.2ms
88:	learn: 19.7225631	total: 483ms	remaining: 59.7ms
89:	learn: 19.5851849	total: 488ms	remaining: 54.3ms
90:	learn: 19.5115923	total: 493ms	remaining: 48.8ms
91:	learn: 19.3986485	total: 498ms	remaining: 43.3ms
92:	learn: 19.2465728	total: 503ms	remaining: 37.9ms
93:	learn: 19.2033796	total: 508ms	remaining: 32.4ms
94:	learn: 19.1234096	total: 513ms	remaining: 27ms
95:	learn: 19.0080161	total: 518ms	remaining: 21.6ms
96:	learn: 18.9048698	total: 522ms	remaining: 16.2ms
97:	learn: 18.7901500	total: 527ms	remaining: 10.8ms
98:	learn: 18.6759882	total: 532ms	remaining: 5.38ms
99:	learn: 18.6254590	total: 549ms	remaining: 0us
0:	learn: 46.0359105	total: 5.93ms	remaining: 587ms
1:	learn: 45.4503059	total: 15.5ms	remaining: 761ms
2:	learn: 44.6478680	total: 28ms	remaining: 906ms
3:	learn: 43.7932387	total: 34.7ms	remaining: 834ms
4:	learn: 43.2236036	total: 41.8ms	remaining: 794ms
5:	learn: 42.4339181	total: 47.3ms	remaining: 741ms
6:	learn: 41.8906461	total: 52.9ms	remaining: 703ms
7:	learn: 41.2248707	total: 59.1ms	remaining: 680ms
8:	learn: 40.5934570	total: 65.2ms	remaining: 659ms
9:	learn: 39.9204661	total: 71ms	remaining: 639ms
10:	learn: 39.3972458	total: 76.7ms	remaining: 620ms
11:	learn: 38.9220493	total: 82.1ms	remaining: 602ms
12:	learn: 38.2358406	total: 87.6ms	remaining: 586ms
13:	learn: 37.7089336	total: 93.3ms	remaining: 573ms
14:	learn: 37.3714255	total: 99.5ms	remaining: 564ms
15:	learn: 36.8098537	total: 105ms	remaining: 553ms
16:	learn: 36.2818695	total: 110ms	remaining: 538ms
17:	learn: 35.8807734	total: 115ms	remaining: 524ms
18:	learn: 35.3850720	total: 120ms	remaining: 511ms
19:	learn: 35.0622365	total: 124ms	remaining: 498ms
20:	learn: 34.7088655	total: 129ms	remaining: 486ms
21:	learn: 34.2869861	total: 134ms	remaining: 474ms
22:	learn: 33.9798756	total: 138ms	remaining: 464ms
23:	learn: 33.6933850	total: 143ms	remaining: 453ms
24:	learn: 33.3542725	total: 151ms	remaining: 454ms
25:	learn: 33.1531104	total: 156ms	remaining: 444ms
26:	learn: 32.7581499	total: 161ms	remaining: 434ms
27:	learn: 32.4953289	total: 165ms	remaining: 425ms
28:	learn: 32.1636511	total: 170ms	remaining: 416ms
29:	learn: 31.7179908	total: 175ms	remaining: 407ms
30:	learn: 31.2828971	total: 179ms	remaining: 399ms
31:	learn: 30.8954632	total: 185ms	remaining: 392ms
32:	learn: 30.6156466	total: 190ms	remaining: 385ms
33:	learn: 30.4325331	total: 195ms	remaining: 378ms
34:	learn: 30.1680270	total: 200ms	remaining: 372ms
35:	learn: 29.8372162	total: 205ms	remaining: 365ms
36:	learn: 29.5018241	total: 210ms	remaining: 358ms
37:	learn: 29.2660228	total: 219ms	remaining: 358ms
38:	learn: 28.9172883	total: 228ms	remaining: 357ms
39:	learn: 28.7004790	total: 235ms	remaining: 352ms
40:	learn: 28.5188438	total: 241ms	remaining: 346ms
41:	learn: 28.3064887	total: 247ms	remaining: 341ms
42:	learn: 27.9584462	total: 252ms	remaining: 334ms
43:	learn: 27.6654603	total: 256ms	remaining: 326ms
44:	learn: 27.3698139	total: 261ms	remaining: 319ms
45:	learn: 27.1825629	total: 266ms	remaining: 312ms
46:	learn: 26.9938719	total: 271ms	remaining: 305ms
47:	learn: 26.7385850	total: 275ms	remaining: 298ms
48:	learn: 26.5055251	total: 280ms	remaining: 292ms
49:	learn: 26.3264840	total: 285ms	remaining: 285ms
50:	learn: 26.1314307	total: 290ms	remaining: 279ms
51:	learn: 25.9514770	total: 295ms	remaining: 272ms
52:	learn: 25.7272663	total: 299ms	remaining: 266ms
53:	learn: 25.4554234	total: 305ms	remaining: 259ms
54:	learn: 25.2133674	total: 309ms	remaining: 253ms
55:	learn: 24.9612149	total: 314ms	remaining: 247ms
56:	learn: 24.6788780	total: 319ms	remaining: 240ms
57:	learn: 24.4504703	total: 324ms	remaining: 234ms
58:	learn: 24.3261542	total: 328ms	remaining: 228ms
59:	learn: 24.1217621	total: 333ms	remaining: 222ms
60:	learn: 23.9495725	total: 338ms	remaining: 216ms
61:	learn: 23.7848565	total: 343ms	remaining: 210ms
62:	learn: 23.6627081	total: 347ms	remaining: 204ms
63:	learn: 23.4390407	total: 352ms	remaining: 198ms
64:	learn: 23.2556312	total: 357ms	remaining: 192ms
65:	learn: 23.1796337	total: 361ms	remaining: 186ms
66:	learn: 23.0431987	total: 366ms	remaining: 180ms
67:	learn: 22.9300366	total: 371ms	remaining: 175ms
68:	learn: 22.8321895	total: 376ms	remaining: 169ms
69:	learn: 22.7825840	total: 381ms	remaining: 163ms
70:	learn: 22.6907764	total: 386ms	remaining: 158ms
71:	learn: 22.5080460	total: 391ms	remaining: 152ms
72:	learn: 22.4053282	total: 396ms	remaining: 146ms
73:	learn: 22.2698085	total: 401ms	remaining: 141ms
74:	learn: 22.0951825	total: 406ms	remaining: 135ms
75:	learn: 21.9933994	total: 412ms	remaining: 130ms
76:	learn: 21.8043413	total: 421ms	remaining: 126ms
77:	learn: 21.7259032	total: 433ms	remaining: 122ms
78:	learn: 21.5625358	total: 440ms	remaining: 117ms
79:	learn: 21.4316837	total: 447ms	remaining: 112ms
80:	learn: 21.2270985	total: 452ms	remaining: 106ms
81:	learn: 21.1248573	total: 457ms	remaining: 100ms
82:	learn: 21.0879584	total: 463ms	remaining: 94.9ms
83:	learn: 20.9810177	total: 469ms	remaining: 89.3ms
84:	learn: 20.8986744	total: 474ms	remaining: 83.7ms
85:	learn: 20.8427245	total: 480ms	remaining: 78.2ms
86:	learn: 20.7158681	total: 486ms	remaining: 72.6ms
87:	learn: 20.6055502	total: 492ms	remaining: 67.1ms
88:	learn: 20.5302059	total: 497ms	remaining: 61.5ms
89:	learn: 20.3936827	total: 503ms	remaining: 55.9ms
90:	learn: 20.2756993	total: 509ms	remaining: 50.3ms
91:	learn: 20.1882826	total: 514ms	remaining: 44.7ms
92:	learn: 20.0346875	total: 519ms	remaining: 39.1ms
93:	learn: 19.9798652	total: 524ms	remaining: 33.5ms
94:	learn: 19.9020384	total: 529ms	remaining: 27.9ms
95:	learn: 19.8463755	total: 534ms	remaining: 22.3ms
96:	learn: 19.7426458	total: 539ms	remaining: 16.7ms
97:	learn: 19.6728655	total: 544ms	remaining: 11.1ms
98:	learn: 19.6355104	total: 548ms	remaining: 5.54ms
99:	learn: 19.6074086	total: 553ms	remaining: 0us
0:	learn: 46.7817285	total: 5.56ms	remaining: 550ms
1:	learn: 45.9551634	total: 10.5ms	remaining: 514ms
2:	learn: 45.0274369	total: 15.4ms	remaining: 497ms
3:	learn: 44.5000950	total: 20.4ms	remaining: 489ms
4:	learn: 43.8963632	total: 25.4ms	remaining: 482ms
5:	learn: 43.2314124	total: 33ms	remaining: 517ms
6:	learn: 42.5780140	total: 41.4ms	remaining: 550ms
7:	learn: 41.9033077	total: 49.1ms	remaining: 564ms
8:	learn: 41.3161907	total: 54.8ms	remaining: 554ms
9:	learn: 40.7747000	total: 61.5ms	remaining: 554ms
10:	learn: 40.2728122	total: 66.4ms	remaining: 537ms
11:	learn: 39.7786608	total: 70.8ms	remaining: 520ms
12:	learn: 39.0812090	total: 75.8ms	remaining: 507ms
13:	learn: 38.6205762	total: 80.4ms	remaining: 494ms
14:	learn: 38.2894236	total: 85ms	remaining: 482ms
15:	learn: 37.6906364	total: 89.7ms	remaining: 471ms
16:	learn: 37.3014849	total: 94.5ms	remaining: 461ms
17:	learn: 36.9268494	total: 99.1ms	remaining: 452ms
18:	learn: 36.6348717	total: 104ms	remaining: 442ms
19:	learn: 36.1567831	total: 109ms	remaining: 435ms
20:	learn: 35.8080754	total: 114ms	remaining: 427ms
21:	learn: 35.4288913	total: 118ms	remaining: 419ms
22:	learn: 35.0910168	total: 123ms	remaining: 411ms
23:	learn: 34.7483277	total: 127ms	remaining: 403ms
24:	learn: 34.5077203	total: 132ms	remaining: 396ms
25:	learn: 34.1830247	total: 137ms	remaining: 390ms
26:	learn: 33.7943837	total: 141ms	remaining: 383ms
27:	learn: 33.3736582	total: 146ms	remaining: 377ms
28:	learn: 32.9133996	total: 152ms	remaining: 371ms
29:	learn: 32.4361653	total: 156ms	remaining: 365ms
30:	learn: 31.9630085	total: 161ms	remaining: 358ms
31:	learn: 31.5994894	total: 166ms	remaining: 352ms
32:	learn: 31.3120059	total: 170ms	remaining: 346ms
33:	learn: 31.0991187	total: 175ms	remaining: 340ms
34:	learn: 30.8055118	total: 180ms	remaining: 334ms
35:	learn: 30.5197359	total: 184ms	remaining: 328ms
36:	learn: 30.1975315	total: 189ms	remaining: 322ms
37:	learn: 29.9797615	total: 194ms	remaining: 316ms
38:	learn: 29.6874864	total: 199ms	remaining: 311ms
39:	learn: 29.4139907	total: 204ms	remaining: 306ms
40:	learn: 29.0472151	total: 208ms	remaining: 300ms
41:	learn: 28.8356285	total: 214ms	remaining: 295ms
42:	learn: 28.5099349	total: 219ms	remaining: 290ms
43:	learn: 28.2009716	total: 224ms	remaining: 285ms
44:	learn: 27.8947534	total: 230ms	remaining: 281ms
45:	learn: 27.6149698	total: 235ms	remaining: 276ms
46:	learn: 27.4780860	total: 241ms	remaining: 272ms
47:	learn: 27.2859119	total: 247ms	remaining: 268ms
48:	learn: 27.0572191	total: 253ms	remaining: 263ms
49:	learn: 26.8916263	total: 261ms	remaining: 261ms
50:	learn: 26.6791967	total: 272ms	remaining: 261ms
51:	learn: 26.4917307	total: 283ms	remaining: 262ms
52:	learn: 26.2957036	total: 291ms	remaining: 258ms
53:	learn: 26.1116543	total: 298ms	remaining: 254ms
54:	learn: 25.8593319	total: 304ms	remaining: 249ms
55:	learn: 25.6957296	total: 310ms	remaining: 244ms
56:	learn: 25.5065213	total: 316ms	remaining: 238ms
57:	learn: 25.3525337	total: 322ms	remaining: 233ms
58:	learn: 25.2197494	total: 328ms	remaining: 228ms
59:	learn: 25.0583799	total: 334ms	remaining: 222ms
60:	learn: 24.8432659	total: 339ms	remaining: 217ms
61:	learn: 24.6585337	total: 345ms	remaining: 211ms
62:	learn: 24.5382571	total: 351ms	remaining: 206ms
63:	learn: 24.3596337	total: 357ms	remaining: 201ms
64:	learn: 24.2009033	total: 362ms	remaining: 195ms
65:	learn: 24.0964080	total: 367ms	remaining: 189ms
66:	learn: 23.9765920	total: 372ms	remaining: 183ms
67:	learn: 23.8638384	total: 376ms	remaining: 177ms
68:	learn: 23.7381861	total: 381ms	remaining: 171ms
69:	learn: 23.5620129	total: 386ms	remaining: 165ms
70:	learn: 23.4494830	total: 391ms	remaining: 160ms
71:	learn: 23.3095806	total: 396ms	remaining: 154ms
72:	learn: 23.1441767	total: 400ms	remaining: 148ms
73:	learn: 22.9983446	total: 405ms	remaining: 142ms
74:	learn: 22.8464764	total: 410ms	remaining: 137ms
75:	learn: 22.7606423	total: 415ms	remaining: 131ms
76:	learn: 22.6095905	total: 420ms	remaining: 125ms
77:	learn: 22.4430506	total: 426ms	remaining: 120ms
78:	learn: 22.2925872	total: 430ms	remaining: 114ms
79:	learn: 22.1806286	total: 435ms	remaining: 109ms
80:	learn: 22.0070525	total: 440ms	remaining: 103ms
81:	learn: 21.9114201	total: 446ms	remaining: 97.8ms
82:	learn: 21.7742884	total: 451ms	remaining: 92.4ms
83:	learn: 21.6372857	total: 456ms	remaining: 86.9ms
84:	learn: 21.5380397	total: 462ms	remaining: 81.4ms
85:	learn: 21.4730146	total: 466ms	remaining: 75.9ms
86:	learn: 21.3236516	total: 476ms	remaining: 71.1ms
87:	learn: 21.2512101	total: 483ms	remaining: 65.9ms
88:	learn: 21.2192883	total: 491ms	remaining: 60.7ms
89:	learn: 21.0457926	total: 496ms	remaining: 55.1ms
90:	learn: 20.9986980	total: 502ms	remaining: 49.7ms
91:	learn: 20.9040032	total: 507ms	remaining: 44.1ms
92:	learn: 20.7178547	total: 512ms	remaining: 38.5ms
93:	learn: 20.6535030	total: 517ms	remaining: 33ms
94:	learn: 20.5641982	total: 521ms	remaining: 27.4ms
95:	learn: 20.5355409	total: 526ms	remaining: 21.9ms
96:	learn: 20.4496493	total: 531ms	remaining: 16.4ms
97:	learn: 20.3579862	total: 536ms	remaining: 10.9ms
98:	learn: 20.2442476	total: 541ms	remaining: 5.46ms
99:	learn: 20.1075813	total: 546ms	remaining: 0us
0:	learn: 27.6737479	total: 19.9ms	remaining: 5.96s
1:	learn: 27.3204154	total: 40.6ms	remaining: 6.05s
2:	learn: 26.9091890	total: 59.4ms	remaining: 5.88s
3:	learn: 26.4875027	total: 82ms	remaining: 6.06s
4:	learn: 26.1185303	total: 84ms	remaining: 4.95s
5:	learn: 25.8552625	total: 109ms	remaining: 5.33s
6:	learn: 25.5259340	total: 135ms	remaining: 5.67s
7:	learn: 25.1594330	total: 159ms	remaining: 5.79s
8:	learn: 24.8131787	total: 181ms	remaining: 5.86s
9:	learn: 24.5107101	total: 203ms	remaining: 5.89s
10:	learn: 24.1382533	total: 224ms	remaining: 5.89s
11:	learn: 23.9059068	total: 243ms	remaining: 5.84s
12:	learn: 23.5820314	total: 263ms	remaining: 5.8s
13:	learn: 23.2566481	total: 283ms	remaining: 5.78s
14:	learn: 22.9720100	total: 311ms	remaining: 5.9s
15:	learn: 22.6458045	total: 334ms	remaining: 5.93s
16:	learn: 22.3310792	total: 354ms	remaining: 5.89s
17:	learn: 22.0614254	total: 375ms	remaining: 5.87s
18:	learn: 21.8674093	total: 396ms	remaining: 5.85s
19:	learn: 21.6777228	total: 416ms	remaining: 5.82s
20:	learn: 21.4758843	total: 435ms	remaining: 5.78s
21:	learn: 21.2015722	total: 454ms	remaining: 5.73s
22:	learn: 20.9741180	total: 475ms	remaining: 5.72s
23:	learn: 20.8103315	total: 496ms	remaining: 5.71s
24:	learn: 20.6059519	total: 517ms	remaining: 5.69s
25:	learn: 20.3003482	total: 544ms	remaining: 5.73s
26:	learn: 20.1047051	total: 571ms	remaining: 5.77s
27:	learn: 19.9117545	total: 593ms	remaining: 5.76s
28:	learn: 19.7508802	total: 615ms	remaining: 5.75s
29:	learn: 19.5995500	total: 637ms	remaining: 5.74s
30:	learn: 19.4265011	total: 662ms	remaining: 5.74s
31:	learn: 19.2507253	total: 685ms	remaining: 5.74s
32:	learn: 19.0780638	total: 708ms	remaining: 5.72s
33:	learn: 18.8739495	total: 731ms	remaining: 5.71s
34:	learn: 18.6951687	total: 757ms	remaining: 5.73s
35:	learn: 18.5423419	total: 785ms	remaining: 5.76s
36:	learn: 18.3650169	total: 805ms	remaining: 5.72s
37:	learn: 18.1741271	total: 827ms	remaining: 5.7s
38:	learn: 18.0512035	total: 850ms	remaining: 5.69s
39:	learn: 17.9045476	total: 871ms	remaining: 5.66s
40:	learn: 17.7669779	total: 893ms	remaining: 5.64s
41:	learn: 17.6440484	total: 913ms	remaining: 5.61s
42:	learn: 17.4832065	total: 937ms	remaining: 5.6s
43:	learn: 17.3307814	total: 959ms	remaining: 5.58s
44:	learn: 17.1968371	total: 991ms	remaining: 5.61s
45:	learn: 17.0551367	total: 1.02s	remaining: 5.61s
46:	learn: 16.9663187	total: 1.04s	remaining: 5.6s
47:	learn: 16.8379611	total: 1.06s	remaining: 5.58s
48:	learn: 16.7219020	total: 1.09s	remaining: 5.57s
49:	learn: 16.6155465	total: 1.11s	remaining: 5.54s
50:	learn: 16.5139205	total: 1.13s	remaining: 5.52s
51:	learn: 16.3531147	total: 1.14s	remaining: 5.42s
52:	learn: 16.2763831	total: 1.16s	remaining: 5.41s
53:	learn: 16.1694133	total: 1.18s	remaining: 5.39s
54:	learn: 16.0589004	total: 1.21s	remaining: 5.39s
55:	learn: 15.9660704	total: 1.24s	remaining: 5.39s
56:	learn: 15.8765659	total: 1.26s	remaining: 5.36s
57:	learn: 15.7724924	total: 1.28s	remaining: 5.34s
58:	learn: 15.6865252	total: 1.3s	remaining: 5.32s
59:	learn: 15.6055417	total: 1.32s	remaining: 5.3s
60:	learn: 15.5264778	total: 1.35s	remaining: 5.28s
61:	learn: 15.4370145	total: 1.37s	remaining: 5.26s
62:	learn: 15.3562945	total: 1.39s	remaining: 5.24s
63:	learn: 15.2817484	total: 1.42s	remaining: 5.22s
64:	learn: 15.1941732	total: 1.45s	remaining: 5.24s
65:	learn: 15.1049991	total: 1.47s	remaining: 5.22s
66:	learn: 15.0359663	total: 1.49s	remaining: 5.2s
67:	learn: 14.9351417	total: 1.51s	remaining: 5.17s
68:	learn: 14.8495497	total: 1.54s	remaining: 5.14s
69:	learn: 14.7623093	total: 1.56s	remaining: 5.12s
70:	learn: 14.6771574	total: 1.58s	remaining: 5.09s
71:	learn: 14.5978140	total: 1.6s	remaining: 5.07s
72:	learn: 14.5375886	total: 1.62s	remaining: 5.04s
73:	learn: 14.4649353	total: 1.65s	remaining: 5.05s
74:	learn: 14.4009644	total: 1.67s	remaining: 5.02s
75:	learn: 14.3287275	total: 1.7s	remaining: 5s
76:	learn: 14.2318571	total: 1.72s	remaining: 4.97s
77:	learn: 14.1625701	total: 1.74s	remaining: 4.95s
78:	learn: 14.0644282	total: 1.76s	remaining: 4.93s
79:	learn: 13.9762883	total: 1.78s	remaining: 4.9s
80:	learn: 13.9042920	total: 1.8s	remaining: 4.88s
81:	learn: 13.8176535	total: 1.82s	remaining: 4.85s
82:	learn: 13.6910849	total: 1.85s	remaining: 4.84s
83:	learn: 13.5737570	total: 1.88s	remaining: 4.83s
84:	learn: 13.5049845	total: 1.9s	remaining: 4.81s
85:	learn: 13.4341145	total: 1.93s	remaining: 4.79s
86:	learn: 13.3796196	total: 1.95s	remaining: 4.77s
87:	learn: 13.3024352	total: 1.97s	remaining: 4.75s
88:	learn: 13.2435566	total: 1.99s	remaining: 4.72s
89:	learn: 13.1910369	total: 2.01s	remaining: 4.7s
90:	learn: 13.1471565	total: 2.03s	remaining: 4.67s
91:	learn: 13.0611063	total: 2.06s	remaining: 4.65s
92:	learn: 12.9909112	total: 2.08s	remaining: 4.64s
93:	learn: 12.9355316	total: 2.1s	remaining: 4.61s
94:	learn: 12.8561480	total: 2.12s	remaining: 4.58s
95:	learn: 12.7929803	total: 2.14s	remaining: 4.55s
96:	learn: 12.7262412	total: 2.16s	remaining: 4.53s
97:	learn: 12.6739210	total: 2.19s	remaining: 4.5s
98:	learn: 12.6265593	total: 2.21s	remaining: 4.48s
99:	learn: 12.5594247	total: 2.23s	remaining: 4.45s
100:	learn: 12.4986691	total: 2.25s	remaining: 4.43s
101:	learn: 12.4471027	total: 2.27s	remaining: 4.42s
102:	learn: 12.3962782	total: 2.3s	remaining: 4.4s
103:	learn: 12.3424090	total: 2.32s	remaining: 4.38s
104:	learn: 12.2660971	total: 2.35s	remaining: 4.36s
105:	learn: 12.2042689	total: 2.37s	remaining: 4.33s
106:	learn: 12.1363044	total: 2.39s	remaining: 4.31s
107:	learn: 12.1022229	total: 2.41s	remaining: 4.29s
108:	learn: 12.0491052	total: 2.43s	remaining: 4.26s
109:	learn: 11.9900598	total: 2.46s	remaining: 4.24s
110:	learn: 11.9411055	total: 2.48s	remaining: 4.22s
111:	learn: 11.8782485	total: 2.5s	remaining: 4.2s
112:	learn: 11.8248797	total: 2.53s	remaining: 4.18s
113:	learn: 11.7750338	total: 2.55s	remaining: 4.16s
114:	learn: 11.7390791	total: 2.57s	remaining: 4.13s
115:	learn: 11.6795857	total: 2.59s	remaining: 4.11s
116:	learn: 11.5948258	total: 2.61s	remaining: 4.08s
117:	learn: 11.5598943	total: 2.63s	remaining: 4.06s
118:	learn: 11.4992434	total: 2.65s	remaining: 4.04s
119:	learn: 11.4491317	total: 2.67s	remaining: 4.01s
120:	learn: 11.3929630	total: 2.7s	remaining: 3.99s
121:	learn: 11.3373664	total: 2.73s	remaining: 3.98s
122:	learn: 11.2805890	total: 2.75s	remaining: 3.96s
123:	learn: 11.2341228	total: 2.78s	remaining: 3.94s
124:	learn: 11.1615505	total: 2.8s	remaining: 3.92s
125:	learn: 11.1024523	total: 2.83s	remaining: 3.9s
126:	learn: 11.0710084	total: 2.85s	remaining: 3.88s
127:	learn: 11.0251377	total: 2.87s	remaining: 3.85s
128:	learn: 10.9884605	total: 2.89s	remaining: 3.83s
129:	learn: 10.9584488	total: 2.92s	remaining: 3.81s
130:	learn: 10.8995848	total: 2.94s	remaining: 3.8s
131:	learn: 10.8549250	total: 2.97s	remaining: 3.77s
132:	learn: 10.8113067	total: 2.99s	remaining: 3.75s
133:	learn: 10.7553419	total: 3.01s	remaining: 3.73s
134:	learn: 10.7096544	total: 3.03s	remaining: 3.71s
135:	learn: 10.6757190	total: 3.05s	remaining: 3.68s
136:	learn: 10.6327685	total: 3.07s	remaining: 3.66s
137:	learn: 10.5902988	total: 3.1s	remaining: 3.63s
138:	learn: 10.5467376	total: 3.12s	remaining: 3.61s
139:	learn: 10.5163592	total: 3.15s	remaining: 3.6s
140:	learn: 10.4694138	total: 3.18s	remaining: 3.58s
141:	learn: 10.4359855	total: 3.2s	remaining: 3.56s
142:	learn: 10.4057439	total: 3.22s	remaining: 3.54s
143:	learn: 10.3729240	total: 3.25s	remaining: 3.52s
144:	learn: 10.3359301	total: 3.27s	remaining: 3.5s
145:	learn: 10.2697670	total: 3.29s	remaining: 3.47s
146:	learn: 10.2094154	total: 3.31s	remaining: 3.45s
147:	learn: 10.1600330	total: 3.34s	remaining: 3.43s
148:	learn: 10.1308425	total: 3.36s	remaining: 3.41s
149:	learn: 10.0855107	total: 3.39s	remaining: 3.39s
150:	learn: 10.0385460	total: 3.41s	remaining: 3.37s
151:	learn: 10.0087773	total: 3.44s	remaining: 3.35s
152:	learn: 9.9793744	total: 3.46s	remaining: 3.32s
153:	learn: 9.9525485	total: 3.48s	remaining: 3.3s
154:	learn: 9.9079941	total: 3.5s	remaining: 3.27s
155:	learn: 9.8778723	total: 3.52s	remaining: 3.25s
156:	learn: 9.8246060	total: 3.54s	remaining: 3.23s
157:	learn: 9.7894878	total: 3.56s	remaining: 3.2s
158:	learn: 9.7484967	total: 3.6s	remaining: 3.19s
159:	learn: 9.7248391	total: 3.62s	remaining: 3.17s
160:	learn: 9.7014264	total: 3.64s	remaining: 3.15s
161:	learn: 9.6583834	total: 3.67s	remaining: 3.12s
162:	learn: 9.6144299	total: 3.69s	remaining: 3.1s
163:	learn: 9.5794995	total: 3.71s	remaining: 3.08s
164:	learn: 9.5550633	total: 3.73s	remaining: 3.06s
165:	learn: 9.5026632	total: 3.76s	remaining: 3.03s
166:	learn: 9.4633969	total: 3.79s	remaining: 3.02s
167:	learn: 9.4104818	total: 3.81s	remaining: 2.99s
168:	learn: 9.3845831	total: 3.83s	remaining: 2.97s
169:	learn: 9.3337722	total: 3.85s	remaining: 2.95s
170:	learn: 9.2837197	total: 3.88s	remaining: 2.92s
171:	learn: 9.2466766	total: 3.9s	remaining: 2.9s
172:	learn: 9.2085127	total: 3.92s	remaining: 2.88s
173:	learn: 9.1694480	total: 3.94s	remaining: 2.85s
174:	learn: 9.1448907	total: 3.96s	remaining: 2.83s
175:	learn: 9.1013106	total: 3.99s	remaining: 2.81s
176:	learn: 9.0696815	total: 4.02s	remaining: 2.79s
177:	learn: 9.0279616	total: 4.04s	remaining: 2.77s
178:	learn: 9.0008978	total: 4.06s	remaining: 2.75s
179:	learn: 8.9449905	total: 4.09s	remaining: 2.72s
180:	learn: 8.9263735	total: 4.11s	remaining: 2.7s
181:	learn: 8.9082117	total: 4.13s	remaining: 2.68s
182:	learn: 8.8590211	total: 4.15s	remaining: 2.65s
183:	learn: 8.8398014	total: 4.17s	remaining: 2.63s
184:	learn: 8.7991374	total: 4.2s	remaining: 2.61s
185:	learn: 8.7574091	total: 4.22s	remaining: 2.59s
186:	learn: 8.7075149	total: 4.25s	remaining: 2.56s
187:	learn: 8.6651276	total: 4.27s	remaining: 2.54s
188:	learn: 8.6299124	total: 4.29s	remaining: 2.52s
189:	learn: 8.6039208	total: 4.31s	remaining: 2.5s
190:	learn: 8.5623097	total: 4.33s	remaining: 2.47s
191:	learn: 8.5109100	total: 4.36s	remaining: 2.45s
192:	learn: 8.4793653	total: 4.38s	remaining: 2.43s
193:	learn: 8.4481462	total: 4.4s	remaining: 2.4s
194:	learn: 8.4315766	total: 4.43s	remaining: 2.39s
195:	learn: 8.3834417	total: 4.45s	remaining: 2.36s
196:	learn: 8.3680774	total: 4.48s	remaining: 2.34s
197:	learn: 8.3496623	total: 4.5s	remaining: 2.32s
198:	learn: 8.3148580	total: 4.52s	remaining: 2.29s
199:	learn: 8.3052914	total: 4.54s	remaining: 2.27s
200:	learn: 8.2594410	total: 4.56s	remaining: 2.25s
201:	learn: 8.2470590	total: 4.58s	remaining: 2.22s
202:	learn: 8.2316760	total: 4.6s	remaining: 2.2s
203:	learn: 8.2041569	total: 4.63s	remaining: 2.18s
204:	learn: 8.1708835	total: 4.65s	remaining: 2.16s
205:	learn: 8.1301413	total: 4.67s	remaining: 2.13s
206:	learn: 8.0986826	total: 4.69s	remaining: 2.11s
207:	learn: 8.0741059	total: 4.71s	remaining: 2.08s
208:	learn: 8.0244528	total: 4.74s	remaining: 2.06s
209:	learn: 7.9989744	total: 4.76s	remaining: 2.04s
210:	learn: 7.9696573	total: 4.78s	remaining: 2.02s
211:	learn: 7.9396203	total: 4.8s	remaining: 1.99s
212:	learn: 7.9111124	total: 4.82s	remaining: 1.97s
213:	learn: 7.9007758	total: 4.85s	remaining: 1.95s
214:	learn: 7.8856958	total: 4.88s	remaining: 1.93s
215:	learn: 7.8685173	total: 4.9s	remaining: 1.91s
216:	learn: 7.8488503	total: 4.92s	remaining: 1.88s
217:	learn: 7.8127011	total: 4.94s	remaining: 1.86s
218:	learn: 7.7610464	total: 4.96s	remaining: 1.84s
219:	learn: 7.7371633	total: 4.98s	remaining: 1.81s
220:	learn: 7.7075772	total: 5s	remaining: 1.79s
221:	learn: 7.6862440	total: 5.03s	remaining: 1.77s
222:	learn: 7.6387389	total: 5.05s	remaining: 1.74s
223:	learn: 7.6039931	total: 5.08s	remaining: 1.72s
224:	learn: 7.5780873	total: 5.1s	remaining: 1.7s
225:	learn: 7.5366573	total: 5.12s	remaining: 1.68s
226:	learn: 7.5117065	total: 5.14s	remaining: 1.65s
227:	learn: 7.4849508	total: 5.16s	remaining: 1.63s
228:	learn: 7.4536731	total: 5.18s	remaining: 1.61s
229:	learn: 7.4238760	total: 5.2s	remaining: 1.58s
230:	learn: 7.4054602	total: 5.22s	remaining: 1.56s
231:	learn: 7.3841419	total: 5.24s	remaining: 1.54s
232:	learn: 7.3712995	total: 5.27s	remaining: 1.51s
233:	learn: 7.3403269	total: 5.29s	remaining: 1.49s
234:	learn: 7.3293521	total: 5.32s	remaining: 1.47s
235:	learn: 7.2977701	total: 5.34s	remaining: 1.45s
236:	learn: 7.2879483	total: 5.36s	remaining: 1.43s
237:	learn: 7.2651195	total: 5.39s	remaining: 1.4s
238:	learn: 7.2349887	total: 5.41s	remaining: 1.38s
239:	learn: 7.1998166	total: 5.43s	remaining: 1.36s
240:	learn: 7.1916439	total: 5.45s	remaining: 1.33s
241:	learn: 7.1651373	total: 5.47s	remaining: 1.31s
242:	learn: 7.1381913	total: 5.5s	remaining: 1.29s
243:	learn: 7.1196857	total: 5.52s	remaining: 1.27s
244:	learn: 7.1129330	total: 5.54s	remaining: 1.24s
245:	learn: 7.0917288	total: 5.56s	remaining: 1.22s
246:	learn: 7.0643221	total: 5.58s	remaining: 1.2s
247:	learn: 7.0355381	total: 5.6s	remaining: 1.18s
248:	learn: 7.0175711	total: 5.63s	remaining: 1.15s
249:	learn: 6.9969066	total: 5.65s	remaining: 1.13s
250:	learn: 6.9647213	total: 5.67s	remaining: 1.11s
251:	learn: 6.9543141	total: 5.69s	remaining: 1.08s
252:	learn: 6.9265098	total: 5.72s	remaining: 1.06s
253:	learn: 6.9022725	total: 5.75s	remaining: 1.04s
254:	learn: 6.8497254	total: 5.77s	remaining: 1.02s
255:	learn: 6.8285154	total: 5.79s	remaining: 996ms
256:	learn: 6.8011995	total: 5.82s	remaining: 973ms
257:	learn: 6.7933719	total: 5.84s	remaining: 950ms
258:	learn: 6.7690265	total: 5.86s	remaining: 927ms
259:	learn: 6.7470688	total: 5.88s	remaining: 905ms
260:	learn: 6.7282782	total: 5.9s	remaining: 882ms
261:	learn: 6.6980892	total: 5.93s	remaining: 860ms
262:	learn: 6.6788044	total: 5.96s	remaining: 838ms
263:	learn: 6.6507208	total: 5.98s	remaining: 815ms
264:	learn: 6.6299738	total: 6s	remaining: 792ms
265:	learn: 6.6146145	total: 6.02s	remaining: 770ms
266:	learn: 6.5960711	total: 6.04s	remaining: 747ms
267:	learn: 6.5601064	total: 6.07s	remaining: 724ms
268:	learn: 6.5439209	total: 6.08s	remaining: 701ms
269:	learn: 6.5302107	total: 6.11s	remaining: 679ms
270:	learn: 6.5075739	total: 6.13s	remaining: 656ms
271:	learn: 6.4875851	total: 6.16s	remaining: 634ms
272:	learn: 6.4779171	total: 6.19s	remaining: 612ms
273:	learn: 6.4677739	total: 6.21s	remaining: 589ms
274:	learn: 6.4375131	total: 6.23s	remaining: 567ms
275:	learn: 6.4223197	total: 6.26s	remaining: 544ms
276:	learn: 6.4163633	total: 6.28s	remaining: 522ms
277:	learn: 6.4084438	total: 6.3s	remaining: 499ms
278:	learn: 6.3795757	total: 6.32s	remaining: 476ms
279:	learn: 6.3670166	total: 6.35s	remaining: 453ms
280:	learn: 6.3426010	total: 6.37s	remaining: 431ms
281:	learn: 6.3363177	total: 6.4s	remaining: 408ms
282:	learn: 6.3138385	total: 6.42s	remaining: 386ms
283:	learn: 6.2894060	total: 6.44s	remaining: 363ms
284:	learn: 6.2767007	total: 6.46s	remaining: 340ms
285:	learn: 6.2607815	total: 6.48s	remaining: 317ms
286:	learn: 6.2368751	total: 6.51s	remaining: 295ms
287:	learn: 6.2218151	total: 6.53s	remaining: 272ms
288:	learn: 6.2147193	total: 6.55s	remaining: 249ms
289:	learn: 6.1817002	total: 6.58s	remaining: 227ms
290:	learn: 6.1531900	total: 6.61s	remaining: 204ms
291:	learn: 6.1438157	total: 6.63s	remaining: 182ms
292:	learn: 6.1311550	total: 6.66s	remaining: 159ms
293:	learn: 6.1171744	total: 6.68s	remaining: 136ms
294:	learn: 6.1079932	total: 6.71s	remaining: 114ms
295:	learn: 6.0989063	total: 6.73s	remaining: 90.9ms
296:	learn: 6.0740401	total: 6.75s	remaining: 68.2ms
297:	learn: 6.0685711	total: 6.77s	remaining: 45.4ms
298:	learn: 6.0601135	total: 6.79s	remaining: 22.7ms
299:	learn: 6.0486579	total: 6.82s	remaining: 0us
0:	learn: 43.1728564	total: 21ms	remaining: 6.28s
1:	learn: 42.4479145	total: 43.2ms	remaining: 6.44s
2:	learn: 41.7618107	total: 65.2ms	remaining: 6.45s
3:	learn: 40.9535516	total: 89.4ms	remaining: 6.62s
4:	learn: 40.0184714	total: 113ms	remaining: 6.64s
5:	learn: 39.3975364	total: 143ms	remaining: 7.01s
6:	learn: 38.5285936	total: 168ms	remaining: 7.02s
7:	learn: 37.7229272	total: 192ms	remaining: 7.02s
8:	learn: 37.0918758	total: 216ms	remaining: 6.99s
9:	learn: 36.3564673	total: 240ms	remaining: 6.97s
10:	learn: 35.6811958	total: 262ms	remaining: 6.89s
11:	learn: 35.0050014	total: 284ms	remaining: 6.81s
12:	learn: 34.2960554	total: 307ms	remaining: 6.78s
13:	learn: 33.5236859	total: 331ms	remaining: 6.76s
14:	learn: 32.9402676	total: 333ms	remaining: 6.33s
15:	learn: 32.4523166	total: 361ms	remaining: 6.4s
16:	learn: 31.8840373	total: 384ms	remaining: 6.39s
17:	learn: 31.3075678	total: 406ms	remaining: 6.37s
18:	learn: 30.8876354	total: 428ms	remaining: 6.33s
19:	learn: 30.3498359	total: 451ms	remaining: 6.31s
20:	learn: 29.9235491	total: 473ms	remaining: 6.29s
21:	learn: 29.3980753	total: 495ms	remaining: 6.25s
22:	learn: 28.8855360	total: 515ms	remaining: 6.21s
23:	learn: 28.4464905	total: 538ms	remaining: 6.18s
24:	learn: 28.0340761	total: 554ms	remaining: 6.1s
25:	learn: 27.6857355	total: 586ms	remaining: 6.18s
26:	learn: 27.3334889	total: 609ms	remaining: 6.16s
27:	learn: 26.8330294	total: 632ms	remaining: 6.14s
28:	learn: 26.4299332	total: 655ms	remaining: 6.12s
29:	learn: 26.0045444	total: 676ms	remaining: 6.08s
30:	learn: 25.6006582	total: 696ms	remaining: 6.04s
31:	learn: 25.2312981	total: 716ms	remaining: 6s
32:	learn: 25.0083092	total: 739ms	remaining: 5.97s
33:	learn: 24.6611713	total: 760ms	remaining: 5.95s
34:	learn: 24.4598997	total: 790ms	remaining: 5.98s
35:	learn: 24.2341422	total: 813ms	remaining: 5.96s
36:	learn: 23.9210171	total: 833ms	remaining: 5.92s
37:	learn: 23.5299198	total: 855ms	remaining: 5.89s
38:	learn: 23.1652368	total: 876ms	remaining: 5.86s
39:	learn: 22.8941103	total: 896ms	remaining: 5.83s
40:	learn: 22.7084206	total: 918ms	remaining: 5.8s
41:	learn: 22.4654978	total: 940ms	remaining: 5.77s
42:	learn: 22.2302580	total: 970ms	remaining: 5.8s
43:	learn: 21.9408933	total: 995ms	remaining: 5.79s
44:	learn: 21.6779272	total: 1.02s	remaining: 5.78s
45:	learn: 21.5124883	total: 1.04s	remaining: 5.76s
46:	learn: 21.3803106	total: 1.07s	remaining: 5.74s
47:	learn: 21.2298916	total: 1.09s	remaining: 5.72s
48:	learn: 21.0336901	total: 1.11s	remaining: 5.71s
49:	learn: 20.7943434	total: 1.14s	remaining: 5.68s
50:	learn: 20.5676348	total: 1.16s	remaining: 5.65s
51:	learn: 20.3427273	total: 1.17s	remaining: 5.58s
52:	learn: 20.1024296	total: 1.19s	remaining: 5.55s
53:	learn: 19.9885265	total: 1.22s	remaining: 5.55s
54:	learn: 19.8413355	total: 1.24s	remaining: 5.52s
55:	learn: 19.7099619	total: 1.26s	remaining: 5.49s
56:	learn: 19.5311747	total: 1.28s	remaining: 5.46s
57:	learn: 19.3665040	total: 1.3s	remaining: 5.43s
58:	learn: 19.2281415	total: 1.32s	remaining: 5.39s
59:	learn: 19.1106495	total: 1.34s	remaining: 5.37s
60:	learn: 18.9927263	total: 1.36s	remaining: 5.34s
61:	learn: 18.7654626	total: 1.38s	remaining: 5.31s
62:	learn: 18.6108661	total: 1.4s	remaining: 5.28s
63:	learn: 18.4817806	total: 1.43s	remaining: 5.26s
64:	learn: 18.3632402	total: 1.46s	remaining: 5.26s
65:	learn: 18.2653457	total: 1.48s	remaining: 5.24s
66:	learn: 18.1378819	total: 1.5s	remaining: 5.22s
67:	learn: 18.0459629	total: 1.52s	remaining: 5.2s
68:	learn: 17.9001044	total: 1.55s	remaining: 5.18s
69:	learn: 17.7073203	total: 1.57s	remaining: 5.16s
70:	learn: 17.5276628	total: 1.59s	remaining: 5.13s
71:	learn: 17.4386086	total: 1.61s	remaining: 5.11s
72:	learn: 17.2890096	total: 1.64s	remaining: 5.08s
73:	learn: 17.1904631	total: 1.67s	remaining: 5.09s
74:	learn: 17.0955197	total: 1.69s	remaining: 5.07s
75:	learn: 16.9924303	total: 1.71s	remaining: 5.04s
76:	learn: 16.8972682	total: 1.73s	remaining: 5.01s
77:	learn: 16.7957864	total: 1.75s	remaining: 4.99s
78:	learn: 16.6405248	total: 1.77s	remaining: 4.96s
79:	learn: 16.5463991	total: 1.79s	remaining: 4.93s
80:	learn: 16.4622871	total: 1.81s	remaining: 4.91s
81:	learn: 16.3624916	total: 1.84s	remaining: 4.88s
82:	learn: 16.2073706	total: 1.86s	remaining: 4.86s
83:	learn: 16.0716875	total: 1.89s	remaining: 4.87s
84:	learn: 15.9336151	total: 1.91s	remaining: 4.84s
85:	learn: 15.8451501	total: 1.94s	remaining: 4.82s
86:	learn: 15.7200917	total: 1.96s	remaining: 4.79s
87:	learn: 15.6236971	total: 1.98s	remaining: 4.77s
88:	learn: 15.5479129	total: 2s	remaining: 4.74s
89:	learn: 15.4975079	total: 2.02s	remaining: 4.71s
90:	learn: 15.4083433	total: 2.04s	remaining: 4.69s
91:	learn: 15.3169327	total: 2.06s	remaining: 4.67s
92:	learn: 15.2207992	total: 2.09s	remaining: 4.66s
93:	learn: 15.1430327	total: 2.12s	remaining: 4.64s
94:	learn: 15.0665711	total: 2.14s	remaining: 4.61s
95:	learn: 14.9903534	total: 2.16s	remaining: 4.58s
96:	learn: 14.9054346	total: 2.18s	remaining: 4.56s
97:	learn: 14.7940457	total: 2.2s	remaining: 4.53s
98:	learn: 14.7008915	total: 2.22s	remaining: 4.51s
99:	learn: 14.6142673	total: 2.24s	remaining: 4.48s
100:	learn: 14.5337996	total: 2.26s	remaining: 4.46s
101:	learn: 14.4571728	total: 2.29s	remaining: 4.44s
102:	learn: 14.3898956	total: 2.32s	remaining: 4.43s
103:	learn: 14.3189412	total: 2.34s	remaining: 4.41s
104:	learn: 14.2525935	total: 2.36s	remaining: 4.39s
105:	learn: 14.1772436	total: 2.39s	remaining: 4.37s
106:	learn: 14.1059305	total: 2.41s	remaining: 4.35s
107:	learn: 14.0232782	total: 2.43s	remaining: 4.33s
108:	learn: 13.9368806	total: 2.46s	remaining: 4.3s
109:	learn: 13.8491229	total: 2.48s	remaining: 4.28s
110:	learn: 13.7685490	total: 2.5s	remaining: 4.26s
111:	learn: 13.6836750	total: 2.53s	remaining: 4.25s
112:	learn: 13.6202897	total: 2.55s	remaining: 4.23s
113:	learn: 13.5688904	total: 2.57s	remaining: 4.2s
114:	learn: 13.5145238	total: 2.6s	remaining: 4.18s
115:	learn: 13.4247466	total: 2.62s	remaining: 4.15s
116:	learn: 13.3307114	total: 2.64s	remaining: 4.13s
117:	learn: 13.2545184	total: 2.66s	remaining: 4.11s
118:	learn: 13.1996548	total: 2.68s	remaining: 4.08s
119:	learn: 13.1205307	total: 2.71s	remaining: 4.06s
120:	learn: 13.0479027	total: 2.74s	remaining: 4.05s
121:	learn: 12.9970441	total: 2.76s	remaining: 4.03s
122:	learn: 12.9295209	total: 2.79s	remaining: 4.01s
123:	learn: 12.8673524	total: 2.81s	remaining: 3.99s
124:	learn: 12.7786245	total: 2.83s	remaining: 3.97s
125:	learn: 12.7348929	total: 2.86s	remaining: 3.94s
126:	learn: 12.6858554	total: 2.88s	remaining: 3.92s
127:	learn: 12.6189787	total: 2.9s	remaining: 3.9s
128:	learn: 12.5864827	total: 2.93s	remaining: 3.88s
129:	learn: 12.5478404	total: 2.95s	remaining: 3.86s
130:	learn: 12.5017820	total: 2.98s	remaining: 3.84s
131:	learn: 12.4491462	total: 3s	remaining: 3.81s
132:	learn: 12.3822056	total: 3.02s	remaining: 3.79s
133:	learn: 12.3098651	total: 3.04s	remaining: 3.76s
134:	learn: 12.2531700	total: 3.06s	remaining: 3.74s
135:	learn: 12.2119331	total: 3.08s	remaining: 3.71s
136:	learn: 12.1571278	total: 3.1s	remaining: 3.69s
137:	learn: 12.0976094	total: 3.12s	remaining: 3.67s
138:	learn: 12.0025352	total: 3.16s	remaining: 3.65s
139:	learn: 11.9019074	total: 3.18s	remaining: 3.64s
140:	learn: 11.7854852	total: 3.21s	remaining: 3.62s
141:	learn: 11.7104078	total: 3.23s	remaining: 3.59s
142:	learn: 11.6741366	total: 3.25s	remaining: 3.57s
143:	learn: 11.6077195	total: 3.28s	remaining: 3.55s
144:	learn: 11.5496695	total: 3.3s	remaining: 3.52s
145:	learn: 11.4568800	total: 3.32s	remaining: 3.5s
146:	learn: 11.4368150	total: 3.34s	remaining: 3.48s
147:	learn: 11.3955813	total: 3.36s	remaining: 3.45s
148:	learn: 11.3565385	total: 3.39s	remaining: 3.44s
149:	learn: 11.3020845	total: 3.42s	remaining: 3.42s
150:	learn: 11.2130390	total: 3.44s	remaining: 3.39s
151:	learn: 11.1401745	total: 3.46s	remaining: 3.37s
152:	learn: 11.1048934	total: 3.48s	remaining: 3.34s
153:	learn: 11.0709933	total: 3.5s	remaining: 3.32s
154:	learn: 11.0212519	total: 3.52s	remaining: 3.3s
155:	learn: 10.9258762	total: 3.55s	remaining: 3.27s
156:	learn: 10.8429657	total: 3.57s	remaining: 3.25s
157:	learn: 10.8061370	total: 3.6s	remaining: 3.23s
158:	learn: 10.7571211	total: 3.63s	remaining: 3.21s
159:	learn: 10.6698987	total: 3.65s	remaining: 3.19s
160:	learn: 10.6228772	total: 3.67s	remaining: 3.17s
161:	learn: 10.5368796	total: 3.7s	remaining: 3.15s
162:	learn: 10.4841450	total: 3.72s	remaining: 3.13s
163:	learn: 10.4012317	total: 3.74s	remaining: 3.1s
164:	learn: 10.3588701	total: 3.76s	remaining: 3.08s
165:	learn: 10.2816720	total: 3.79s	remaining: 3.06s
166:	learn: 10.2259651	total: 3.81s	remaining: 3.04s
167:	learn: 10.1792554	total: 3.84s	remaining: 3.02s
168:	learn: 10.1604671	total: 3.86s	remaining: 2.99s
169:	learn: 10.1318986	total: 3.88s	remaining: 2.97s
170:	learn: 10.0948065	total: 3.9s	remaining: 2.94s
171:	learn: 10.0521191	total: 3.92s	remaining: 2.92s
172:	learn: 9.9946157	total: 3.94s	remaining: 2.9s
173:	learn: 9.9313678	total: 3.97s	remaining: 2.87s
174:	learn: 9.9156434	total: 3.99s	remaining: 2.85s
175:	learn: 9.8749788	total: 4.02s	remaining: 2.83s
176:	learn: 9.8485079	total: 4.04s	remaining: 2.81s
177:	learn: 9.8134329	total: 4.07s	remaining: 2.79s
178:	learn: 9.7880107	total: 4.09s	remaining: 2.77s
179:	learn: 9.7587885	total: 4.12s	remaining: 2.74s
180:	learn: 9.6939238	total: 4.14s	remaining: 2.72s
181:	learn: 9.6447939	total: 4.16s	remaining: 2.7s
182:	learn: 9.6136022	total: 4.18s	remaining: 2.67s
183:	learn: 9.5885675	total: 4.2s	remaining: 2.65s
184:	learn: 9.5271670	total: 4.23s	remaining: 2.63s
185:	learn: 9.4616988	total: 4.26s	remaining: 2.61s
186:	learn: 9.4287637	total: 4.28s	remaining: 2.59s
187:	learn: 9.3948177	total: 4.3s	remaining: 2.56s
188:	learn: 9.3767726	total: 4.32s	remaining: 2.54s
189:	learn: 9.3473555	total: 4.34s	remaining: 2.51s
190:	learn: 9.3099572	total: 4.36s	remaining: 2.49s
191:	learn: 9.2799642	total: 4.38s	remaining: 2.47s
192:	learn: 9.2505323	total: 4.41s	remaining: 2.44s
193:	learn: 9.2173510	total: 4.44s	remaining: 2.42s
194:	learn: 9.1746531	total: 4.46s	remaining: 2.4s
195:	learn: 9.1354668	total: 4.49s	remaining: 2.38s
196:	learn: 9.0983547	total: 4.51s	remaining: 2.36s
197:	learn: 9.0615111	total: 4.53s	remaining: 2.33s
198:	learn: 9.0239666	total: 4.55s	remaining: 2.31s
199:	learn: 8.9906083	total: 4.57s	remaining: 2.29s
200:	learn: 8.9458694	total: 4.59s	remaining: 2.26s
201:	learn: 8.9040783	total: 4.62s	remaining: 2.24s
202:	learn: 8.8495189	total: 4.65s	remaining: 2.22s
203:	learn: 8.8243403	total: 4.67s	remaining: 2.2s
204:	learn: 8.7930532	total: 4.69s	remaining: 2.17s
205:	learn: 8.7587095	total: 4.71s	remaining: 2.15s
206:	learn: 8.7177051	total: 4.73s	remaining: 2.13s
207:	learn: 8.6879684	total: 4.75s	remaining: 2.1s
208:	learn: 8.6681622	total: 4.77s	remaining: 2.08s
209:	learn: 8.6299257	total: 4.79s	remaining: 2.05s
210:	learn: 8.5728096	total: 4.81s	remaining: 2.03s
211:	learn: 8.5456345	total: 4.84s	remaining: 2.01s
212:	learn: 8.5000514	total: 4.86s	remaining: 1.99s
213:	learn: 8.4814393	total: 4.88s	remaining: 1.96s
214:	learn: 8.4512752	total: 4.91s	remaining: 1.94s
215:	learn: 8.4144221	total: 4.93s	remaining: 1.92s
216:	learn: 8.3817886	total: 4.95s	remaining: 1.89s
217:	learn: 8.3392143	total: 4.97s	remaining: 1.87s
218:	learn: 8.3102751	total: 5s	remaining: 1.85s
219:	learn: 8.2963441	total: 5.02s	remaining: 1.82s
220:	learn: 8.2666907	total: 5.04s	remaining: 1.8s
221:	learn: 8.2470955	total: 5.06s	remaining: 1.78s
222:	learn: 8.2352635	total: 5.09s	remaining: 1.76s
223:	learn: 8.2046605	total: 5.11s	remaining: 1.73s
224:	learn: 8.1746742	total: 5.13s	remaining: 1.71s
225:	learn: 8.1466704	total: 5.16s	remaining: 1.69s
226:	learn: 8.1113762	total: 5.17s	remaining: 1.66s
227:	learn: 8.0842520	total: 5.2s	remaining: 1.64s
228:	learn: 8.0619499	total: 5.22s	remaining: 1.62s
229:	learn: 8.0391421	total: 5.24s	remaining: 1.59s
230:	learn: 8.0082460	total: 5.26s	remaining: 1.57s
231:	learn: 7.9894454	total: 5.28s	remaining: 1.55s
232:	learn: 7.9567828	total: 5.3s	remaining: 1.52s
233:	learn: 7.9394710	total: 5.33s	remaining: 1.5s
234:	learn: 7.9171371	total: 5.36s	remaining: 1.48s
235:	learn: 7.9062197	total: 5.38s	remaining: 1.46s
236:	learn: 7.8803505	total: 5.4s	remaining: 1.44s
237:	learn: 7.8508624	total: 5.43s	remaining: 1.41s
238:	learn: 7.8107215	total: 5.45s	remaining: 1.39s
239:	learn: 7.7758588	total: 5.47s	remaining: 1.37s
240:	learn: 7.7403137	total: 5.5s	remaining: 1.34s
241:	learn: 7.7146933	total: 5.52s	remaining: 1.32s
242:	learn: 7.6876053	total: 5.55s	remaining: 1.3s
243:	learn: 7.6631332	total: 5.57s	remaining: 1.28s
244:	learn: 7.6340717	total: 5.59s	remaining: 1.26s
245:	learn: 7.5835394	total: 5.62s	remaining: 1.23s
246:	learn: 7.5572808	total: 5.64s	remaining: 1.21s
247:	learn: 7.5477260	total: 5.66s	remaining: 1.19s
248:	learn: 7.5230961	total: 5.68s	remaining: 1.16s
249:	learn: 7.4926278	total: 5.71s	remaining: 1.14s
250:	learn: 7.4663059	total: 5.73s	remaining: 1.12s
251:	learn: 7.4439231	total: 5.76s	remaining: 1.1s
252:	learn: 7.4147104	total: 5.79s	remaining: 1.07s
253:	learn: 7.3910399	total: 5.81s	remaining: 1.05s
254:	learn: 7.3694309	total: 5.84s	remaining: 1.03s
255:	learn: 7.3357705	total: 5.86s	remaining: 1.01s
256:	learn: 7.3063747	total: 5.89s	remaining: 985ms
257:	learn: 7.2838572	total: 5.91s	remaining: 962ms
258:	learn: 7.2589764	total: 5.94s	remaining: 940ms
259:	learn: 7.2389253	total: 5.97s	remaining: 918ms
260:	learn: 7.2138913	total: 5.99s	remaining: 896ms
261:	learn: 7.1886917	total: 6.03s	remaining: 874ms
262:	learn: 7.1772908	total: 6.05s	remaining: 851ms
263:	learn: 7.1578726	total: 6.07s	remaining: 828ms
264:	learn: 7.1353133	total: 6.09s	remaining: 805ms
265:	learn: 7.1102477	total: 6.12s	remaining: 782ms
266:	learn: 7.0828702	total: 6.14s	remaining: 759ms
267:	learn: 7.0597237	total: 6.17s	remaining: 737ms
268:	learn: 7.0365630	total: 6.2s	remaining: 715ms
269:	learn: 7.0146208	total: 6.23s	remaining: 692ms
270:	learn: 6.9967242	total: 6.25s	remaining: 669ms
271:	learn: 6.9790909	total: 6.29s	remaining: 647ms
272:	learn: 6.9693113	total: 6.31s	remaining: 624ms
273:	learn: 6.9594319	total: 6.33s	remaining: 601ms
274:	learn: 6.9391890	total: 6.36s	remaining: 578ms
275:	learn: 6.9254505	total: 6.39s	remaining: 556ms
276:	learn: 6.9024357	total: 6.42s	remaining: 533ms
277:	learn: 6.8754442	total: 6.44s	remaining: 510ms
278:	learn: 6.8502029	total: 6.46s	remaining: 486ms
279:	learn: 6.8142453	total: 6.49s	remaining: 463ms
280:	learn: 6.7927649	total: 6.51s	remaining: 440ms
281:	learn: 6.7640814	total: 6.54s	remaining: 417ms
282:	learn: 6.7463937	total: 6.56s	remaining: 394ms
283:	learn: 6.7403516	total: 6.59s	remaining: 371ms
284:	learn: 6.7206013	total: 6.63s	remaining: 349ms
285:	learn: 6.6875183	total: 6.65s	remaining: 326ms
286:	learn: 6.6609083	total: 6.68s	remaining: 303ms
287:	learn: 6.6545230	total: 6.7s	remaining: 279ms
288:	learn: 6.6358351	total: 6.73s	remaining: 256ms
289:	learn: 6.6175009	total: 6.75s	remaining: 233ms
290:	learn: 6.6067729	total: 6.78s	remaining: 210ms
291:	learn: 6.5970320	total: 6.8s	remaining: 186ms
292:	learn: 6.5837751	total: 6.84s	remaining: 163ms
293:	learn: 6.5625028	total: 6.86s	remaining: 140ms
294:	learn: 6.5530621	total: 6.89s	remaining: 117ms
295:	learn: 6.5478680	total: 6.91s	remaining: 93.4ms
296:	learn: 6.5241879	total: 6.93s	remaining: 70ms
297:	learn: 6.5118159	total: 6.96s	remaining: 46.7ms
298:	learn: 6.4919631	total: 6.98s	remaining: 23.3ms
299:	learn: 6.4739124	total: 7s	remaining: 0us
0:	learn: 46.4788614	total: 3.89ms	remaining: 1.16s
1:	learn: 45.7710608	total: 27.2ms	remaining: 4.05s
2:	learn: 45.1565849	total: 52ms	remaining: 5.14s
3:	learn: 44.4030902	total: 72.5ms	remaining: 5.36s
4:	learn: 43.7256714	total: 94.4ms	remaining: 5.57s
5:	learn: 43.0846764	total: 117ms	remaining: 5.74s
6:	learn: 42.3050249	total: 139ms	remaining: 5.84s
7:	learn: 41.5523343	total: 163ms	remaining: 5.96s
8:	learn: 40.7548041	total: 193ms	remaining: 6.25s
9:	learn: 39.8798087	total: 217ms	remaining: 6.29s
10:	learn: 39.3807548	total: 238ms	remaining: 6.26s
11:	learn: 38.6353297	total: 262ms	remaining: 6.28s
12:	learn: 38.0252968	total: 284ms	remaining: 6.28s
13:	learn: 37.4584814	total: 306ms	remaining: 6.26s
14:	learn: 36.9766267	total: 328ms	remaining: 6.22s
15:	learn: 36.4351844	total: 351ms	remaining: 6.24s
16:	learn: 35.8711532	total: 374ms	remaining: 6.23s
17:	learn: 35.5046170	total: 405ms	remaining: 6.35s
18:	learn: 34.9410561	total: 429ms	remaining: 6.34s
19:	learn: 34.5414688	total: 453ms	remaining: 6.35s
20:	learn: 34.1994877	total: 476ms	remaining: 6.33s
21:	learn: 33.8105873	total: 500ms	remaining: 6.31s
22:	learn: 33.2767379	total: 521ms	remaining: 6.27s
23:	learn: 32.9293305	total: 542ms	remaining: 6.23s
24:	learn: 32.5563171	total: 565ms	remaining: 6.22s
25:	learn: 32.0312705	total: 589ms	remaining: 6.21s
26:	learn: 31.5549663	total: 615ms	remaining: 6.21s
27:	learn: 31.2152408	total: 642ms	remaining: 6.24s
28:	learn: 30.8335992	total: 663ms	remaining: 6.2s
29:	learn: 30.4437650	total: 684ms	remaining: 6.16s
30:	learn: 30.1139865	total: 707ms	remaining: 6.13s
31:	learn: 29.6348886	total: 729ms	remaining: 6.1s
32:	learn: 29.4374411	total: 749ms	remaining: 6.06s
33:	learn: 29.1774552	total: 769ms	remaining: 6.02s
34:	learn: 28.9121068	total: 792ms	remaining: 6s
35:	learn: 28.6291033	total: 819ms	remaining: 6.01s
36:	learn: 28.3365166	total: 848ms	remaining: 6.03s
37:	learn: 28.0654213	total: 873ms	remaining: 6.02s
38:	learn: 27.7120990	total: 896ms	remaining: 6s
39:	learn: 27.4700227	total: 919ms	remaining: 5.97s
40:	learn: 27.2052722	total: 940ms	remaining: 5.94s
41:	learn: 26.9401129	total: 963ms	remaining: 5.91s
42:	learn: 26.6081493	total: 984ms	remaining: 5.88s
43:	learn: 26.3847138	total: 1.01s	remaining: 5.86s
44:	learn: 26.2201660	total: 1.04s	remaining: 5.87s
45:	learn: 26.0513425	total: 1.06s	remaining: 5.87s
46:	learn: 25.8609437	total: 1.08s	remaining: 5.84s
47:	learn: 25.6040252	total: 1.11s	remaining: 5.81s
48:	learn: 25.4235507	total: 1.13s	remaining: 5.78s
49:	learn: 25.2896788	total: 1.15s	remaining: 5.74s
50:	learn: 25.1208197	total: 1.17s	remaining: 5.71s
51:	learn: 24.8660258	total: 1.17s	remaining: 5.6s
52:	learn: 24.6165133	total: 1.2s	remaining: 5.58s
53:	learn: 24.3828983	total: 1.22s	remaining: 5.56s
54:	learn: 24.1841624	total: 1.24s	remaining: 5.54s
55:	learn: 24.0006316	total: 1.27s	remaining: 5.54s
56:	learn: 23.7695363	total: 1.3s	remaining: 5.53s
57:	learn: 23.6284017	total: 1.32s	remaining: 5.51s
58:	learn: 23.4125305	total: 1.34s	remaining: 5.49s
59:	learn: 23.2250456	total: 1.37s	remaining: 5.47s
60:	learn: 23.0467385	total: 1.39s	remaining: 5.44s
61:	learn: 22.7033792	total: 1.41s	remaining: 5.42s
62:	learn: 22.5334580	total: 1.43s	remaining: 5.39s
63:	learn: 22.3638971	total: 1.46s	remaining: 5.37s
64:	learn: 22.1384904	total: 1.49s	remaining: 5.38s
65:	learn: 22.0135698	total: 1.51s	remaining: 5.36s
66:	learn: 21.8734424	total: 1.53s	remaining: 5.33s
67:	learn: 21.7496417	total: 1.56s	remaining: 5.31s
68:	learn: 21.5374284	total: 1.58s	remaining: 5.28s
69:	learn: 21.3371276	total: 1.6s	remaining: 5.26s
70:	learn: 21.0990139	total: 1.62s	remaining: 5.23s
71:	learn: 20.9642590	total: 1.64s	remaining: 5.21s
72:	learn: 20.8049721	total: 1.67s	remaining: 5.19s
73:	learn: 20.7124973	total: 1.69s	remaining: 5.17s
74:	learn: 20.6049930	total: 1.72s	remaining: 5.15s
75:	learn: 20.4963737	total: 1.74s	remaining: 5.12s
76:	learn: 20.3645418	total: 1.76s	remaining: 5.1s
77:	learn: 20.2519924	total: 1.78s	remaining: 5.08s
78:	learn: 20.0505831	total: 1.8s	remaining: 5.05s
79:	learn: 19.9272769	total: 1.83s	remaining: 5.02s
80:	learn: 19.8219589	total: 1.85s	remaining: 5s
81:	learn: 19.7098289	total: 1.87s	remaining: 4.97s
82:	learn: 19.4383686	total: 1.9s	remaining: 4.96s
83:	learn: 19.3315372	total: 1.92s	remaining: 4.94s
84:	learn: 19.2144697	total: 1.94s	remaining: 4.91s
85:	learn: 19.0849701	total: 1.96s	remaining: 4.88s
86:	learn: 18.9769215	total: 1.98s	remaining: 4.85s
87:	learn: 18.8581283	total: 2s	remaining: 4.83s
88:	learn: 18.7414069	total: 2.02s	remaining: 4.8s
89:	learn: 18.6649642	total: 2.05s	remaining: 4.78s
90:	learn: 18.5127864	total: 2.07s	remaining: 4.75s
91:	learn: 18.3629102	total: 2.1s	remaining: 4.75s
92:	learn: 18.2624941	total: 2.12s	remaining: 4.73s
93:	learn: 18.1645836	total: 2.15s	remaining: 4.71s
94:	learn: 18.0717273	total: 2.17s	remaining: 4.68s
95:	learn: 17.9594520	total: 2.19s	remaining: 4.66s
96:	learn: 17.8692648	total: 2.21s	remaining: 4.64s
97:	learn: 17.7758009	total: 2.24s	remaining: 4.61s
98:	learn: 17.6633350	total: 2.26s	remaining: 4.58s
99:	learn: 17.5393236	total: 2.28s	remaining: 4.55s
100:	learn: 17.4441841	total: 2.3s	remaining: 4.53s
101:	learn: 17.3636497	total: 2.33s	remaining: 4.52s
102:	learn: 17.2836586	total: 2.35s	remaining: 4.5s
103:	learn: 17.1666480	total: 2.37s	remaining: 4.47s
104:	learn: 17.0603123	total: 2.39s	remaining: 4.45s
105:	learn: 16.9701019	total: 2.42s	remaining: 4.42s
106:	learn: 16.8819325	total: 2.44s	remaining: 4.39s
107:	learn: 16.7800721	total: 2.46s	remaining: 4.37s
108:	learn: 16.6575687	total: 2.48s	remaining: 4.34s
109:	learn: 16.5621285	total: 2.5s	remaining: 4.32s
110:	learn: 16.4805668	total: 2.53s	remaining: 4.31s
111:	learn: 16.3664491	total: 2.56s	remaining: 4.29s
112:	learn: 16.2921576	total: 2.58s	remaining: 4.27s
113:	learn: 16.2123714	total: 2.6s	remaining: 4.24s
114:	learn: 16.1305926	total: 2.62s	remaining: 4.22s
115:	learn: 16.0452681	total: 2.65s	remaining: 4.2s
116:	learn: 15.9356767	total: 2.67s	remaining: 4.17s
117:	learn: 15.8492426	total: 2.69s	remaining: 4.14s
118:	learn: 15.7699169	total: 2.71s	remaining: 4.12s
119:	learn: 15.6746719	total: 2.73s	remaining: 4.1s
120:	learn: 15.5370189	total: 2.76s	remaining: 4.08s
121:	learn: 15.4445148	total: 2.78s	remaining: 4.06s
122:	learn: 15.3396325	total: 2.8s	remaining: 4.03s
123:	learn: 15.2450802	total: 2.82s	remaining: 4s
124:	learn: 15.1203998	total: 2.84s	remaining: 3.98s
125:	learn: 15.0601453	total: 2.86s	remaining: 3.95s
126:	learn: 14.9882312	total: 2.88s	remaining: 3.92s
127:	learn: 14.9180283	total: 2.9s	remaining: 3.9s
128:	learn: 14.8526915	total: 2.92s	remaining: 3.87s
129:	learn: 14.7657162	total: 2.94s	remaining: 3.85s
130:	learn: 14.6698595	total: 2.98s	remaining: 3.84s
131:	learn: 14.6346566	total: 2.98s	remaining: 3.79s
132:	learn: 14.5756096	total: 3.01s	remaining: 3.77s
133:	learn: 14.5030739	total: 3.03s	remaining: 3.75s
134:	learn: 14.3943441	total: 3.05s	remaining: 3.73s
135:	learn: 14.2404537	total: 3.08s	remaining: 3.71s
136:	learn: 14.1761228	total: 3.1s	remaining: 3.69s
137:	learn: 14.1077833	total: 3.12s	remaining: 3.67s
138:	learn: 14.0413537	total: 3.15s	remaining: 3.64s
139:	learn: 13.9757428	total: 3.17s	remaining: 3.62s
140:	learn: 13.8921768	total: 3.2s	remaining: 3.61s
141:	learn: 13.8110381	total: 3.22s	remaining: 3.58s
142:	learn: 13.7257676	total: 3.24s	remaining: 3.56s
143:	learn: 13.6518439	total: 3.26s	remaining: 3.53s
144:	learn: 13.4950736	total: 3.28s	remaining: 3.51s
145:	learn: 13.3977428	total: 3.3s	remaining: 3.48s
146:	learn: 13.3368539	total: 3.33s	remaining: 3.46s
147:	learn: 13.2559100	total: 3.35s	remaining: 3.44s
148:	learn: 13.1574001	total: 3.38s	remaining: 3.42s
149:	learn: 13.0006095	total: 3.4s	remaining: 3.4s
150:	learn: 12.9451554	total: 3.43s	remaining: 3.38s
151:	learn: 12.8348904	total: 3.45s	remaining: 3.36s
152:	learn: 12.7505428	total: 3.48s	remaining: 3.34s
153:	learn: 12.6269434	total: 3.5s	remaining: 3.32s
154:	learn: 12.5693272	total: 3.52s	remaining: 3.29s
155:	learn: 12.5049023	total: 3.54s	remaining: 3.27s
156:	learn: 12.4144067	total: 3.56s	remaining: 3.25s
157:	learn: 12.3672108	total: 3.59s	remaining: 3.22s
158:	learn: 12.2988713	total: 3.62s	remaining: 3.21s
159:	learn: 12.2500411	total: 3.64s	remaining: 3.19s
160:	learn: 12.2002550	total: 3.67s	remaining: 3.16s
161:	learn: 12.0921756	total: 3.69s	remaining: 3.14s
162:	learn: 12.0261456	total: 3.71s	remaining: 3.12s
163:	learn: 11.9595478	total: 3.73s	remaining: 3.09s
164:	learn: 11.9040826	total: 3.75s	remaining: 3.07s
165:	learn: 11.8185631	total: 3.77s	remaining: 3.05s
166:	learn: 11.7394422	total: 3.8s	remaining: 3.02s
167:	learn: 11.6639319	total: 3.82s	remaining: 3s
168:	learn: 11.6147181	total: 3.85s	remaining: 2.99s
169:	learn: 11.5761586	total: 3.88s	remaining: 2.96s
170:	learn: 11.4910059	total: 3.9s	remaining: 2.94s
171:	learn: 11.4181227	total: 3.92s	remaining: 2.92s
172:	learn: 11.3626035	total: 3.95s	remaining: 2.9s
173:	learn: 11.2507892	total: 3.97s	remaining: 2.88s
174:	learn: 11.1798403	total: 4s	remaining: 2.85s
175:	learn: 11.1190643	total: 4.02s	remaining: 2.83s
176:	learn: 11.0620102	total: 4.05s	remaining: 2.82s
177:	learn: 10.9793884	total: 4.08s	remaining: 2.79s
178:	learn: 10.8968370	total: 4.1s	remaining: 2.77s
179:	learn: 10.8122733	total: 4.12s	remaining: 2.75s
180:	learn: 10.7545856	total: 4.14s	remaining: 2.73s
181:	learn: 10.6836395	total: 4.17s	remaining: 2.7s
182:	learn: 10.6441863	total: 4.19s	remaining: 2.68s
183:	learn: 10.5944997	total: 4.21s	remaining: 2.65s
184:	learn: 10.5161755	total: 4.23s	remaining: 2.63s
185:	learn: 10.4705995	total: 4.26s	remaining: 2.61s
186:	learn: 10.4187076	total: 4.29s	remaining: 2.59s
187:	learn: 10.3683730	total: 4.31s	remaining: 2.57s
188:	learn: 10.3150620	total: 4.34s	remaining: 2.55s
189:	learn: 10.2691155	total: 4.36s	remaining: 2.52s
190:	learn: 10.2272718	total: 4.38s	remaining: 2.5s
191:	learn: 10.1871331	total: 4.41s	remaining: 2.48s
192:	learn: 10.1443128	total: 4.43s	remaining: 2.46s
193:	learn: 10.0668189	total: 4.46s	remaining: 2.44s
194:	learn: 10.0256380	total: 4.49s	remaining: 2.42s
195:	learn: 9.9787956	total: 4.51s	remaining: 2.39s
196:	learn: 9.9322122	total: 4.53s	remaining: 2.37s
197:	learn: 9.8850093	total: 4.55s	remaining: 2.35s
198:	learn: 9.8380140	total: 4.57s	remaining: 2.32s
199:	learn: 9.8106296	total: 4.59s	remaining: 2.3s
200:	learn: 9.7585749	total: 4.62s	remaining: 2.27s
201:	learn: 9.7182879	total: 4.64s	remaining: 2.25s
202:	learn: 9.6821771	total: 4.66s	remaining: 2.23s
203:	learn: 9.6399101	total: 4.68s	remaining: 2.2s
204:	learn: 9.6048849	total: 4.72s	remaining: 2.19s
205:	learn: 9.5638590	total: 4.74s	remaining: 2.16s
206:	learn: 9.5142374	total: 4.76s	remaining: 2.14s
207:	learn: 9.4695144	total: 4.79s	remaining: 2.12s
208:	learn: 9.4331939	total: 4.81s	remaining: 2.09s
209:	learn: 9.3833838	total: 4.83s	remaining: 2.07s
210:	learn: 9.3517645	total: 4.85s	remaining: 2.04s
211:	learn: 9.3163444	total: 4.87s	remaining: 2.02s
212:	learn: 9.2788352	total: 4.89s	remaining: 2s
213:	learn: 9.2459289	total: 4.92s	remaining: 1.98s
214:	learn: 9.2104536	total: 4.94s	remaining: 1.95s
215:	learn: 9.1729420	total: 4.96s	remaining: 1.93s
216:	learn: 9.1364121	total: 4.99s	remaining: 1.91s
217:	learn: 9.0970859	total: 5.01s	remaining: 1.88s
218:	learn: 9.0611146	total: 5.03s	remaining: 1.86s
219:	learn: 9.0276741	total: 5.05s	remaining: 1.84s
220:	learn: 8.9977644	total: 5.07s	remaining: 1.81s
221:	learn: 8.9633156	total: 5.09s	remaining: 1.79s
222:	learn: 8.9313136	total: 5.12s	remaining: 1.77s
223:	learn: 8.9023504	total: 5.14s	remaining: 1.75s
224:	learn: 8.8741668	total: 5.17s	remaining: 1.72s
225:	learn: 8.8402639	total: 5.19s	remaining: 1.7s
226:	learn: 8.8061090	total: 5.21s	remaining: 1.68s
227:	learn: 8.7767795	total: 5.24s	remaining: 1.65s
228:	learn: 8.7514356	total: 5.26s	remaining: 1.63s
229:	learn: 8.7118727	total: 5.28s	remaining: 1.61s
230:	learn: 8.6759132	total: 5.3s	remaining: 1.58s
231:	learn: 8.6447220	total: 5.33s	remaining: 1.56s
232:	learn: 8.6102503	total: 5.36s	remaining: 1.54s
233:	learn: 8.5858738	total: 5.38s	remaining: 1.52s
234:	learn: 8.5595561	total: 5.4s	remaining: 1.49s
235:	learn: 8.5313778	total: 5.42s	remaining: 1.47s
236:	learn: 8.5053234	total: 5.44s	remaining: 1.45s
237:	learn: 8.4737268	total: 5.46s	remaining: 1.42s
238:	learn: 8.4414991	total: 5.49s	remaining: 1.4s
239:	learn: 8.4168374	total: 5.51s	remaining: 1.38s
240:	learn: 8.3862136	total: 5.53s	remaining: 1.35s
241:	learn: 8.3454081	total: 5.56s	remaining: 1.33s
242:	learn: 8.3145638	total: 5.58s	remaining: 1.31s
243:	learn: 8.3007136	total: 5.6s	remaining: 1.29s
244:	learn: 8.2708676	total: 5.63s	remaining: 1.26s
245:	learn: 8.2454265	total: 5.65s	remaining: 1.24s
246:	learn: 8.2117256	total: 5.67s	remaining: 1.22s
247:	learn: 8.1846870	total: 5.69s	remaining: 1.19s
248:	learn: 8.1602441	total: 5.71s	remaining: 1.17s
249:	learn: 8.1410728	total: 5.74s	remaining: 1.15s
250:	learn: 8.1138413	total: 5.76s	remaining: 1.13s
251:	learn: 8.0824887	total: 5.79s	remaining: 1.1s
252:	learn: 8.0557089	total: 5.81s	remaining: 1.08s
253:	learn: 8.0378239	total: 5.83s	remaining: 1.05s
254:	learn: 8.0018329	total: 5.85s	remaining: 1.03s
255:	learn: 7.9776523	total: 5.87s	remaining: 1.01s
256:	learn: 7.9437470	total: 5.89s	remaining: 985ms
257:	learn: 7.9170545	total: 5.91s	remaining: 962ms
258:	learn: 7.9065923	total: 5.93s	remaining: 939ms
259:	learn: 7.8777123	total: 5.96s	remaining: 916ms
260:	learn: 7.8495349	total: 5.99s	remaining: 895ms
261:	learn: 7.8238648	total: 6.01s	remaining: 872ms
262:	learn: 7.8001134	total: 6.04s	remaining: 849ms
263:	learn: 7.7619007	total: 6.06s	remaining: 827ms
264:	learn: 7.7370130	total: 6.08s	remaining: 804ms
265:	learn: 7.7109084	total: 6.11s	remaining: 781ms
266:	learn: 7.6914677	total: 6.13s	remaining: 757ms
267:	learn: 7.6883177	total: 6.15s	remaining: 734ms
268:	learn: 7.6603652	total: 6.18s	remaining: 712ms
269:	learn: 7.6441569	total: 6.2s	remaining: 689ms
270:	learn: 7.6236642	total: 6.22s	remaining: 666ms
271:	learn: 7.5954955	total: 6.25s	remaining: 643ms
272:	learn: 7.5722024	total: 6.27s	remaining: 620ms
273:	learn: 7.5424505	total: 6.29s	remaining: 597ms
274:	learn: 7.5242764	total: 6.31s	remaining: 574ms
275:	learn: 7.4998291	total: 6.34s	remaining: 551ms
276:	learn: 7.4835526	total: 6.36s	remaining: 528ms
277:	learn: 7.4492474	total: 6.38s	remaining: 505ms
278:	learn: 7.4246335	total: 6.42s	remaining: 483ms
279:	learn: 7.4104530	total: 6.44s	remaining: 460ms
280:	learn: 7.4016977	total: 6.46s	remaining: 437ms
281:	learn: 7.3964367	total: 6.49s	remaining: 414ms
282:	learn: 7.3818806	total: 6.51s	remaining: 391ms
283:	learn: 7.3577327	total: 6.53s	remaining: 368ms
284:	learn: 7.3346564	total: 6.56s	remaining: 345ms
285:	learn: 7.3215898	total: 6.58s	remaining: 322ms
286:	learn: 7.3070161	total: 6.6s	remaining: 299ms
287:	learn: 7.2839231	total: 6.63s	remaining: 276ms
288:	learn: 7.2664252	total: 6.66s	remaining: 253ms
289:	learn: 7.2505303	total: 6.68s	remaining: 230ms
290:	learn: 7.2286141	total: 6.7s	remaining: 207ms
291:	learn: 7.2008212	total: 6.72s	remaining: 184ms
292:	learn: 7.1800203	total: 6.74s	remaining: 161ms
293:	learn: 7.1485097	total: 6.77s	remaining: 138ms
294:	learn: 7.1283191	total: 6.79s	remaining: 115ms
295:	learn: 7.1112866	total: 6.81s	remaining: 92.1ms
296:	learn: 7.0786679	total: 6.84s	remaining: 69.1ms
297:	learn: 7.0685798	total: 6.87s	remaining: 46.1ms
298:	learn: 7.0633802	total: 6.9s	remaining: 23.1ms
299:	learn: 7.0504357	total: 6.92s	remaining: 0us
0:	learn: 46.1068821	total: 2.99ms	remaining: 894ms
1:	learn: 45.5186259	total: 24.9ms	remaining: 3.72s
2:	learn: 44.8982427	total: 48.8ms	remaining: 4.83s
3:	learn: 44.0813314	total: 75.7ms	remaining: 5.6s
4:	learn: 43.3256787	total: 99.3ms	remaining: 5.86s
5:	learn: 42.5989163	total: 121ms	remaining: 5.92s
6:	learn: 41.8412255	total: 143ms	remaining: 5.97s
7:	learn: 41.1629605	total: 164ms	remaining: 6s
8:	learn: 40.6649568	total: 185ms	remaining: 5.98s
9:	learn: 40.1755647	total: 206ms	remaining: 5.97s
10:	learn: 39.7843303	total: 226ms	remaining: 5.94s
11:	learn: 39.1263454	total: 250ms	remaining: 6s
12:	learn: 38.5049650	total: 276ms	remaining: 6.1s
13:	learn: 37.8816934	total: 299ms	remaining: 6.11s
14:	learn: 37.3925567	total: 323ms	remaining: 6.13s
15:	learn: 36.8080381	total: 345ms	remaining: 6.13s
16:	learn: 36.1363624	total: 368ms	remaining: 6.13s
17:	learn: 35.8171279	total: 389ms	remaining: 6.09s
18:	learn: 35.2225026	total: 408ms	remaining: 6.03s
19:	learn: 34.7373286	total: 430ms	remaining: 6.02s
20:	learn: 34.2563365	total: 453ms	remaining: 6.02s
21:	learn: 33.9368110	total: 475ms	remaining: 6.01s
22:	learn: 33.5339596	total: 503ms	remaining: 6.06s
23:	learn: 33.2090930	total: 526ms	remaining: 6.04s
24:	learn: 32.8232733	total: 547ms	remaining: 6.01s
25:	learn: 32.5065756	total: 569ms	remaining: 6s
26:	learn: 32.0091556	total: 589ms	remaining: 5.95s
27:	learn: 31.5901880	total: 611ms	remaining: 5.93s
28:	learn: 31.2602719	total: 631ms	remaining: 5.89s
29:	learn: 30.9824864	total: 652ms	remaining: 5.87s
30:	learn: 30.6837776	total: 673ms	remaining: 5.84s
31:	learn: 30.3784738	total: 707ms	remaining: 5.92s
32:	learn: 29.9551890	total: 732ms	remaining: 5.92s
33:	learn: 29.6880796	total: 755ms	remaining: 5.9s
34:	learn: 29.3535204	total: 778ms	remaining: 5.89s
35:	learn: 29.0983115	total: 801ms	remaining: 5.88s
36:	learn: 28.8227016	total: 822ms	remaining: 5.84s
37:	learn: 28.5948966	total: 842ms	remaining: 5.8s
38:	learn: 28.2092747	total: 862ms	remaining: 5.77s
39:	learn: 27.9292918	total: 883ms	remaining: 5.74s
40:	learn: 27.6917466	total: 905ms	remaining: 5.72s
41:	learn: 27.3898320	total: 933ms	remaining: 5.73s
42:	learn: 27.1423506	total: 956ms	remaining: 5.71s
43:	learn: 26.9143906	total: 978ms	remaining: 5.69s
44:	learn: 26.6628354	total: 997ms	remaining: 5.65s
45:	learn: 26.4436459	total: 1.02s	remaining: 5.63s
46:	learn: 26.2699511	total: 1.04s	remaining: 5.59s
47:	learn: 26.0687332	total: 1.06s	remaining: 5.56s
48:	learn: 25.8813257	total: 1.08s	remaining: 5.53s
49:	learn: 25.6417147	total: 1.1s	remaining: 5.5s
50:	learn: 25.4978473	total: 1.11s	remaining: 5.42s
51:	learn: 25.2508826	total: 1.13s	remaining: 5.4s
52:	learn: 24.9957667	total: 1.16s	remaining: 5.41s
53:	learn: 24.7897869	total: 1.19s	remaining: 5.41s
54:	learn: 24.6276395	total: 1.21s	remaining: 5.39s
55:	learn: 24.4484009	total: 1.23s	remaining: 5.37s
56:	learn: 24.2064871	total: 1.25s	remaining: 5.35s
57:	learn: 24.0355794	total: 1.27s	remaining: 5.32s
58:	learn: 23.8623034	total: 1.29s	remaining: 5.28s
59:	learn: 23.6009245	total: 1.31s	remaining: 5.25s
60:	learn: 23.4408382	total: 1.33s	remaining: 5.22s
61:	learn: 23.2362900	total: 1.36s	remaining: 5.21s
62:	learn: 23.0767254	total: 1.38s	remaining: 5.2s
63:	learn: 22.9370310	total: 1.4s	remaining: 5.18s
64:	learn: 22.7482690	total: 1.43s	remaining: 5.15s
65:	learn: 22.5740357	total: 1.45s	remaining: 5.13s
66:	learn: 22.4132876	total: 1.47s	remaining: 5.11s
67:	learn: 22.2551850	total: 1.49s	remaining: 5.09s
68:	learn: 22.0648127	total: 1.51s	remaining: 5.06s
69:	learn: 21.9204326	total: 1.53s	remaining: 5.04s
70:	learn: 21.8002567	total: 1.56s	remaining: 5.02s
71:	learn: 21.6545032	total: 1.58s	remaining: 5s
72:	learn: 21.5274427	total: 1.61s	remaining: 5.02s
73:	learn: 21.4235402	total: 1.64s	remaining: 5s
74:	learn: 21.2403786	total: 1.66s	remaining: 4.99s
75:	learn: 21.1019776	total: 1.68s	remaining: 4.96s
76:	learn: 20.9047503	total: 1.71s	remaining: 4.95s
77:	learn: 20.8140012	total: 1.73s	remaining: 4.92s
78:	learn: 20.7064981	total: 1.75s	remaining: 4.9s
79:	learn: 20.6033857	total: 1.77s	remaining: 4.87s
80:	learn: 20.4743532	total: 1.79s	remaining: 4.85s
81:	learn: 20.3272514	total: 1.82s	remaining: 4.85s
82:	learn: 20.2402909	total: 1.84s	remaining: 4.82s
83:	learn: 20.1344566	total: 1.87s	remaining: 4.8s
84:	learn: 19.9630804	total: 1.89s	remaining: 4.77s
85:	learn: 19.8196483	total: 1.91s	remaining: 4.75s
86:	learn: 19.6861323	total: 1.93s	remaining: 4.73s
87:	learn: 19.5689921	total: 1.95s	remaining: 4.7s
88:	learn: 19.4766099	total: 1.97s	remaining: 4.68s
89:	learn: 19.3523859	total: 2s	remaining: 4.67s
90:	learn: 19.2512307	total: 2.02s	remaining: 4.65s
91:	learn: 19.1541965	total: 2.05s	remaining: 4.63s
92:	learn: 18.9980138	total: 2.07s	remaining: 4.61s
93:	learn: 18.8241638	total: 2.1s	remaining: 4.59s
94:	learn: 18.6982820	total: 2.12s	remaining: 4.58s
95:	learn: 18.6170939	total: 2.14s	remaining: 4.56s
96:	learn: 18.5216398	total: 2.17s	remaining: 4.53s
97:	learn: 18.4188891	total: 2.19s	remaining: 4.51s
98:	learn: 18.3473321	total: 2.21s	remaining: 4.49s
99:	learn: 18.2744582	total: 2.24s	remaining: 4.48s
100:	learn: 18.1064776	total: 2.26s	remaining: 4.46s
101:	learn: 18.0564103	total: 2.28s	remaining: 4.43s
102:	learn: 17.9684931	total: 2.3s	remaining: 4.41s
103:	learn: 17.8577080	total: 2.32s	remaining: 4.38s
104:	learn: 17.7557863	total: 2.34s	remaining: 4.35s
105:	learn: 17.6830354	total: 2.37s	remaining: 4.33s
106:	learn: 17.5928641	total: 2.39s	remaining: 4.3s
107:	learn: 17.5447625	total: 2.41s	remaining: 4.28s
108:	learn: 17.4830060	total: 2.43s	remaining: 4.26s
109:	learn: 17.3760969	total: 2.46s	remaining: 4.24s
110:	learn: 17.2990516	total: 2.49s	remaining: 4.24s
111:	learn: 17.2626219	total: 2.51s	remaining: 4.22s
112:	learn: 17.1610712	total: 2.54s	remaining: 4.2s
113:	learn: 17.1129518	total: 2.56s	remaining: 4.17s
114:	learn: 16.9637799	total: 2.58s	remaining: 4.15s
115:	learn: 16.8724617	total: 2.6s	remaining: 4.13s
116:	learn: 16.7990982	total: 2.63s	remaining: 4.11s
117:	learn: 16.7354572	total: 2.65s	remaining: 4.09s
118:	learn: 16.6225750	total: 2.67s	remaining: 4.07s
119:	learn: 16.5778971	total: 2.7s	remaining: 4.05s
120:	learn: 16.5383915	total: 2.73s	remaining: 4.03s
121:	learn: 16.4801189	total: 2.75s	remaining: 4.01s
122:	learn: 16.3909340	total: 2.77s	remaining: 3.98s
123:	learn: 16.3129754	total: 2.79s	remaining: 3.96s
124:	learn: 16.2430907	total: 2.81s	remaining: 3.93s
125:	learn: 16.1779646	total: 2.83s	remaining: 3.91s
126:	learn: 16.1162194	total: 2.85s	remaining: 3.89s
127:	learn: 16.0084749	total: 2.88s	remaining: 3.87s
128:	learn: 15.9268705	total: 2.91s	remaining: 3.85s
129:	learn: 15.8770194	total: 2.93s	remaining: 3.83s
130:	learn: 15.8445342	total: 2.96s	remaining: 3.81s
131:	learn: 15.7799082	total: 2.98s	remaining: 3.79s
132:	learn: 15.7225612	total: 3s	remaining: 3.77s
133:	learn: 15.6327986	total: 3.02s	remaining: 3.75s
134:	learn: 15.5560479	total: 3.05s	remaining: 3.72s
135:	learn: 15.4650063	total: 3.07s	remaining: 3.7s
136:	learn: 15.4439565	total: 3.09s	remaining: 3.68s
137:	learn: 15.3723683	total: 3.12s	remaining: 3.66s
138:	learn: 15.2867520	total: 3.14s	remaining: 3.64s
139:	learn: 15.2008060	total: 3.16s	remaining: 3.61s
140:	learn: 15.1226253	total: 3.18s	remaining: 3.59s
141:	learn: 15.0392603	total: 3.2s	remaining: 3.56s
142:	learn: 15.0209441	total: 3.22s	remaining: 3.54s
143:	learn: 14.9691162	total: 3.24s	remaining: 3.51s
144:	learn: 14.8809723	total: 3.26s	remaining: 3.49s
145:	learn: 14.7790501	total: 3.28s	remaining: 3.46s
146:	learn: 14.7124707	total: 3.31s	remaining: 3.44s
147:	learn: 14.6505409	total: 3.33s	remaining: 3.42s
148:	learn: 14.5977957	total: 3.36s	remaining: 3.41s
149:	learn: 14.4563773	total: 3.38s	remaining: 3.38s
150:	learn: 14.3903954	total: 3.41s	remaining: 3.36s
151:	learn: 14.3677191	total: 3.43s	remaining: 3.34s
152:	learn: 14.3170088	total: 3.45s	remaining: 3.31s
153:	learn: 14.2212460	total: 3.47s	remaining: 3.29s
154:	learn: 14.1865067	total: 3.49s	remaining: 3.27s
155:	learn: 14.1133763	total: 3.51s	remaining: 3.24s
156:	learn: 14.0632935	total: 3.53s	remaining: 3.22s
157:	learn: 14.0317962	total: 3.56s	remaining: 3.2s
158:	learn: 13.9531527	total: 3.59s	remaining: 3.18s
159:	learn: 13.9361664	total: 3.61s	remaining: 3.15s
160:	learn: 13.8152344	total: 3.63s	remaining: 3.13s
161:	learn: 13.7794016	total: 3.65s	remaining: 3.11s
162:	learn: 13.7554484	total: 3.67s	remaining: 3.08s
163:	learn: 13.6786599	total: 3.69s	remaining: 3.06s
164:	learn: 13.6580934	total: 3.71s	remaining: 3.04s
165:	learn: 13.6135467	total: 3.73s	remaining: 3.02s
166:	learn: 13.5774402	total: 3.76s	remaining: 3s
167:	learn: 13.4665364	total: 3.79s	remaining: 2.98s
168:	learn: 13.4457745	total: 3.81s	remaining: 2.96s
169:	learn: 13.4313272	total: 3.83s	remaining: 2.93s
170:	learn: 13.3740130	total: 3.86s	remaining: 2.91s
171:	learn: 13.3012082	total: 3.88s	remaining: 2.88s
172:	learn: 13.2580888	total: 3.9s	remaining: 2.86s
173:	learn: 13.2260963	total: 3.92s	remaining: 2.84s
174:	learn: 13.1934687	total: 3.94s	remaining: 2.81s
175:	learn: 13.1567898	total: 3.96s	remaining: 2.79s
176:	learn: 13.1207167	total: 3.98s	remaining: 2.77s
177:	learn: 13.0453975	total: 4s	remaining: 2.75s
178:	learn: 12.9667806	total: 4.03s	remaining: 2.72s
179:	learn: 12.9050987	total: 4.05s	remaining: 2.7s
180:	learn: 12.7877614	total: 4.07s	remaining: 2.67s
181:	learn: 12.7246635	total: 4.09s	remaining: 2.65s
182:	learn: 12.6649785	total: 4.11s	remaining: 2.63s
183:	learn: 12.5966292	total: 4.13s	remaining: 2.6s
184:	learn: 12.5791866	total: 4.15s	remaining: 2.58s
185:	learn: 12.5265550	total: 4.17s	remaining: 2.56s
186:	learn: 12.4747790	total: 4.2s	remaining: 2.54s
187:	learn: 12.3639334	total: 4.22s	remaining: 2.52s
188:	learn: 12.3060104	total: 4.25s	remaining: 2.49s
189:	learn: 12.2108815	total: 4.27s	remaining: 2.47s
190:	learn: 12.1295363	total: 4.29s	remaining: 2.45s
191:	learn: 12.0828143	total: 4.31s	remaining: 2.43s
192:	learn: 12.0650770	total: 4.33s	remaining: 2.4s
193:	learn: 11.9979395	total: 4.35s	remaining: 2.38s
194:	learn: 11.9754814	total: 4.37s	remaining: 2.35s
195:	learn: 11.9328555	total: 4.4s	remaining: 2.33s
196:	learn: 11.9122042	total: 4.42s	remaining: 2.31s
197:	learn: 11.8518842	total: 4.45s	remaining: 2.29s
198:	learn: 11.8304153	total: 4.47s	remaining: 2.27s
199:	learn: 11.8121741	total: 4.49s	remaining: 2.24s
200:	learn: 11.7411942	total: 4.51s	remaining: 2.22s
201:	learn: 11.7329288	total: 4.53s	remaining: 2.2s
202:	learn: 11.7074830	total: 4.55s	remaining: 2.17s
203:	learn: 11.6479110	total: 4.57s	remaining: 2.15s
204:	learn: 11.6341037	total: 4.59s	remaining: 2.13s
205:	learn: 11.5703505	total: 4.62s	remaining: 2.11s
206:	learn: 11.5415491	total: 4.64s	remaining: 2.08s
207:	learn: 11.5016416	total: 4.67s	remaining: 2.07s
208:	learn: 11.4843453	total: 4.7s	remaining: 2.04s
209:	learn: 11.4556878	total: 4.72s	remaining: 2.02s
210:	learn: 11.3953637	total: 4.74s	remaining: 2s
211:	learn: 11.3640248	total: 4.76s	remaining: 1.98s
212:	learn: 11.3189656	total: 4.79s	remaining: 1.96s
213:	learn: 11.3023318	total: 4.81s	remaining: 1.93s
214:	learn: 11.2812809	total: 4.83s	remaining: 1.91s
215:	learn: 11.2649164	total: 4.85s	remaining: 1.89s
216:	learn: 11.2249674	total: 4.88s	remaining: 1.87s
217:	learn: 11.1694593	total: 4.91s	remaining: 1.84s
218:	learn: 11.1504747	total: 4.92s	remaining: 1.82s
219:	learn: 11.1099205	total: 4.95s	remaining: 1.8s
220:	learn: 11.0946598	total: 4.97s	remaining: 1.78s
221:	learn: 11.0335988	total: 4.99s	remaining: 1.75s
222:	learn: 11.0096492	total: 5.01s	remaining: 1.73s
223:	learn: 10.9672501	total: 5.03s	remaining: 1.71s
224:	learn: 10.9507570	total: 5.06s	remaining: 1.69s
225:	learn: 10.9314289	total: 5.09s	remaining: 1.67s
226:	learn: 10.8670947	total: 5.12s	remaining: 1.65s
227:	learn: 10.8529443	total: 5.14s	remaining: 1.62s
228:	learn: 10.8318645	total: 5.16s	remaining: 1.6s
229:	learn: 10.8156588	total: 5.18s	remaining: 1.58s
230:	learn: 10.7951131	total: 5.21s	remaining: 1.55s
231:	learn: 10.7795677	total: 5.23s	remaining: 1.53s
232:	learn: 10.7366028	total: 5.25s	remaining: 1.51s
233:	learn: 10.7193612	total: 5.27s	remaining: 1.49s
234:	learn: 10.6990737	total: 5.3s	remaining: 1.47s
235:	learn: 10.6205495	total: 5.32s	remaining: 1.44s
236:	learn: 10.5976748	total: 5.34s	remaining: 1.42s
237:	learn: 10.5212017	total: 5.37s	remaining: 1.4s
238:	learn: 10.4839783	total: 5.39s	remaining: 1.38s
239:	learn: 10.4723193	total: 5.41s	remaining: 1.35s
240:	learn: 10.4438944	total: 5.43s	remaining: 1.33s
241:	learn: 10.4068644	total: 5.45s	remaining: 1.31s
242:	learn: 10.3777867	total: 5.48s	remaining: 1.28s
243:	learn: 10.3633196	total: 5.51s	remaining: 1.26s
244:	learn: 10.3508529	total: 5.54s	remaining: 1.24s
245:	learn: 10.3391285	total: 5.56s	remaining: 1.22s
246:	learn: 10.3202046	total: 5.58s	remaining: 1.2s
247:	learn: 10.2679507	total: 5.61s	remaining: 1.18s
248:	learn: 10.2444411	total: 5.63s	remaining: 1.15s
249:	learn: 10.1978707	total: 5.65s	remaining: 1.13s
250:	learn: 10.1746210	total: 5.67s	remaining: 1.11s
251:	learn: 10.1455445	total: 5.7s	remaining: 1.08s
252:	learn: 10.1234292	total: 5.72s	remaining: 1.06s
253:	learn: 10.1009263	total: 5.74s	remaining: 1.04s
254:	learn: 10.0506537	total: 5.76s	remaining: 1.02s
255:	learn: 9.9973799	total: 5.79s	remaining: 995ms
256:	learn: 9.9923793	total: 5.81s	remaining: 972ms
257:	learn: 9.9592135	total: 5.83s	remaining: 949ms
258:	learn: 9.9455912	total: 5.85s	remaining: 926ms
259:	learn: 9.9351881	total: 5.87s	remaining: 904ms
260:	learn: 9.8843396	total: 5.9s	remaining: 881ms
261:	learn: 9.8732841	total: 5.93s	remaining: 860ms
262:	learn: 9.8530402	total: 5.96s	remaining: 838ms
263:	learn: 9.8379209	total: 5.98s	remaining: 816ms
264:	learn: 9.8012657	total: 6s	remaining: 793ms
265:	learn: 9.7881742	total: 6.03s	remaining: 770ms
266:	learn: 9.7723933	total: 6.05s	remaining: 747ms
267:	learn: 9.7613461	total: 6.07s	remaining: 725ms
268:	learn: 9.7214417	total: 6.09s	remaining: 702ms
269:	learn: 9.6976897	total: 6.11s	remaining: 679ms
270:	learn: 9.6919786	total: 6.14s	remaining: 657ms
271:	learn: 9.6263135	total: 6.16s	remaining: 635ms
272:	learn: 9.6175527	total: 6.18s	remaining: 612ms
273:	learn: 9.6110661	total: 6.2s	remaining: 589ms
274:	learn: 9.5992549	total: 6.23s	remaining: 566ms
275:	learn: 9.5709079	total: 6.25s	remaining: 543ms
276:	learn: 9.5584595	total: 6.27s	remaining: 521ms
277:	learn: 9.5492847	total: 6.29s	remaining: 498ms
278:	learn: 9.5261231	total: 6.31s	remaining: 475ms
279:	learn: 9.5160964	total: 6.34s	remaining: 453ms
280:	learn: 9.4945891	total: 6.36s	remaining: 430ms
281:	learn: 9.4659751	total: 6.39s	remaining: 408ms
282:	learn: 9.4474987	total: 6.42s	remaining: 386ms
283:	learn: 9.4369109	total: 6.44s	remaining: 363ms
284:	learn: 9.4285200	total: 6.46s	remaining: 340ms
285:	learn: 9.4124421	total: 6.49s	remaining: 318ms
286:	learn: 9.3903730	total: 6.51s	remaining: 295ms
287:	learn: 9.3240575	total: 6.53s	remaining: 272ms
288:	learn: 9.3124220	total: 6.55s	remaining: 249ms
289:	learn: 9.2881271	total: 6.57s	remaining: 227ms
290:	learn: 9.2713655	total: 6.6s	remaining: 204ms
291:	learn: 9.2641531	total: 6.62s	remaining: 181ms
292:	learn: 9.2524129	total: 6.64s	remaining: 159ms
293:	learn: 9.2343575	total: 6.66s	remaining: 136ms
294:	learn: 9.1973322	total: 6.68s	remaining: 113ms
295:	learn: 9.1565802	total: 6.7s	remaining: 90.5ms
296:	learn: 9.1428051	total: 6.72s	remaining: 67.9ms
297:	learn: 9.1293653	total: 6.74s	remaining: 45.2ms
298:	learn: 9.1105879	total: 6.76s	remaining: 22.6ms
299:	learn: 9.1005583	total: 6.78s	remaining: 0us
0:	learn: 46.9033478	total: 22.4ms	remaining: 6.69s
1:	learn: 46.0879122	total: 44.6ms	remaining: 6.64s
2:	learn: 45.6500716	total: 66.4ms	remaining: 6.57s
3:	learn: 44.8037484	total: 88.6ms	remaining: 6.55s
4:	learn: 44.1513690	total: 112ms	remaining: 6.63s
5:	learn: 43.6033150	total: 141ms	remaining: 6.92s
6:	learn: 43.0669517	total: 165ms	remaining: 6.92s
7:	learn: 42.4011723	total: 188ms	remaining: 6.85s
8:	learn: 41.7060291	total: 210ms	remaining: 6.79s
9:	learn: 41.0058676	total: 232ms	remaining: 6.73s
10:	learn: 40.5518615	total: 255ms	remaining: 6.7s
11:	learn: 39.9452722	total: 276ms	remaining: 6.63s
12:	learn: 39.2539405	total: 297ms	remaining: 6.57s
13:	learn: 38.6690449	total: 319ms	remaining: 6.51s
14:	learn: 38.2389829	total: 340ms	remaining: 6.46s
15:	learn: 37.6795608	total: 372ms	remaining: 6.61s
16:	learn: 37.2562038	total: 395ms	remaining: 6.58s
17:	learn: 36.9516174	total: 418ms	remaining: 6.55s
18:	learn: 36.6189442	total: 438ms	remaining: 6.48s
19:	learn: 36.0530153	total: 461ms	remaining: 6.45s
20:	learn: 35.6536993	total: 482ms	remaining: 6.4s
21:	learn: 35.3616790	total: 502ms	remaining: 6.34s
22:	learn: 35.0627472	total: 523ms	remaining: 6.3s
23:	learn: 34.5889995	total: 546ms	remaining: 6.28s
24:	learn: 34.0395768	total: 570ms	remaining: 6.27s
25:	learn: 33.6846146	total: 596ms	remaining: 6.28s
26:	learn: 33.2581583	total: 617ms	remaining: 6.24s
27:	learn: 32.9043599	total: 637ms	remaining: 6.19s
28:	learn: 32.4603681	total: 658ms	remaining: 6.15s
29:	learn: 32.0784225	total: 680ms	remaining: 6.12s
30:	learn: 31.6654390	total: 699ms	remaining: 6.06s
31:	learn: 31.3473625	total: 720ms	remaining: 6.03s
32:	learn: 30.9124340	total: 742ms	remaining: 6s
33:	learn: 30.6354683	total: 764ms	remaining: 5.98s
34:	learn: 30.4404098	total: 787ms	remaining: 5.96s
35:	learn: 30.1914372	total: 822ms	remaining: 6.03s
36:	learn: 29.8249863	total: 845ms	remaining: 6s
37:	learn: 29.5196757	total: 868ms	remaining: 5.98s
38:	learn: 29.2605473	total: 891ms	remaining: 5.96s
39:	learn: 28.9803384	total: 910ms	remaining: 5.92s
40:	learn: 28.7535173	total: 932ms	remaining: 5.89s
41:	learn: 28.3888690	total: 952ms	remaining: 5.84s
42:	learn: 28.1381916	total: 971ms	remaining: 5.8s
43:	learn: 27.9181568	total: 994ms	remaining: 5.78s
44:	learn: 27.6047071	total: 1.02s	remaining: 5.8s
45:	learn: 27.4164606	total: 1.04s	remaining: 5.77s
46:	learn: 27.0321668	total: 1.06s	remaining: 5.74s
47:	learn: 26.7987572	total: 1.09s	remaining: 5.7s
48:	learn: 26.6235810	total: 1.11s	remaining: 5.67s
49:	learn: 26.4084368	total: 1.13s	remaining: 5.64s
50:	learn: 26.1773159	total: 1.15s	remaining: 5.61s
51:	learn: 26.0200665	total: 1.17s	remaining: 5.57s
52:	learn: 25.8168330	total: 1.19s	remaining: 5.56s
53:	learn: 25.6154150	total: 1.22s	remaining: 5.56s
54:	learn: 25.2351738	total: 1.25s	remaining: 5.55s
55:	learn: 24.9587143	total: 1.27s	remaining: 5.54s
56:	learn: 24.7682982	total: 1.29s	remaining: 5.51s
57:	learn: 24.4602191	total: 1.32s	remaining: 5.5s
58:	learn: 24.3002094	total: 1.34s	remaining: 5.48s
59:	learn: 24.1509360	total: 1.36s	remaining: 5.45s
60:	learn: 23.9855802	total: 1.38s	remaining: 5.42s
61:	learn: 23.7747817	total: 1.41s	remaining: 5.41s
62:	learn: 23.5415832	total: 1.44s	remaining: 5.4s
63:	learn: 23.3540053	total: 1.46s	remaining: 5.39s
64:	learn: 23.1213752	total: 1.48s	remaining: 5.36s
65:	learn: 22.9729934	total: 1.5s	remaining: 5.33s
66:	learn: 22.8237351	total: 1.53s	remaining: 5.31s
67:	learn: 22.6716691	total: 1.55s	remaining: 5.29s
68:	learn: 22.5296861	total: 1.57s	remaining: 5.26s
69:	learn: 22.3725425	total: 1.59s	remaining: 5.23s
70:	learn: 22.2639328	total: 1.61s	remaining: 5.21s
71:	learn: 22.1174316	total: 1.64s	remaining: 5.18s
72:	learn: 21.9916264	total: 1.67s	remaining: 5.19s
73:	learn: 21.7797959	total: 1.69s	remaining: 5.17s
74:	learn: 21.6350589	total: 1.72s	remaining: 5.15s
75:	learn: 21.4910112	total: 1.74s	remaining: 5.13s
76:	learn: 21.3068682	total: 1.76s	remaining: 5.11s
77:	learn: 21.1725772	total: 1.78s	remaining: 5.08s
78:	learn: 21.0526496	total: 1.81s	remaining: 5.05s
79:	learn: 20.9534374	total: 1.83s	remaining: 5.03s
80:	learn: 20.8168422	total: 1.86s	remaining: 5.02s
81:	learn: 20.7138006	total: 1.88s	remaining: 5s
82:	learn: 20.5259907	total: 1.9s	remaining: 4.97s
83:	learn: 20.3881958	total: 1.93s	remaining: 4.95s
84:	learn: 20.2702350	total: 1.95s	remaining: 4.92s
85:	learn: 20.1185381	total: 1.97s	remaining: 4.9s
86:	learn: 19.9815763	total: 1.99s	remaining: 4.87s
87:	learn: 19.8563040	total: 2.01s	remaining: 4.85s
88:	learn: 19.7629932	total: 2.03s	remaining: 4.82s
89:	learn: 19.6361676	total: 2.06s	remaining: 4.8s
90:	learn: 19.5189179	total: 2.09s	remaining: 4.81s
91:	learn: 19.4368807	total: 2.12s	remaining: 4.79s
92:	learn: 19.3491759	total: 2.14s	remaining: 4.77s
93:	learn: 19.2441781	total: 2.16s	remaining: 4.74s
94:	learn: 19.1595312	total: 2.19s	remaining: 4.72s
95:	learn: 19.0732186	total: 2.21s	remaining: 4.7s
96:	learn: 18.9664261	total: 2.23s	remaining: 4.67s
97:	learn: 18.8752837	total: 2.25s	remaining: 4.64s
98:	learn: 18.7884732	total: 2.28s	remaining: 4.62s
99:	learn: 18.6638300	total: 2.3s	remaining: 4.6s
100:	learn: 18.5456185	total: 2.33s	remaining: 4.59s
101:	learn: 18.4491938	total: 2.35s	remaining: 4.56s
102:	learn: 18.3712210	total: 2.37s	remaining: 4.54s
103:	learn: 18.2907426	total: 2.39s	remaining: 4.51s
104:	learn: 18.2393122	total: 2.41s	remaining: 4.48s
105:	learn: 18.1493295	total: 2.43s	remaining: 4.45s
106:	learn: 18.0741996	total: 2.45s	remaining: 4.43s
107:	learn: 17.9763617	total: 2.48s	remaining: 4.4s
108:	learn: 17.8511711	total: 2.5s	remaining: 4.38s
109:	learn: 17.7975521	total: 2.53s	remaining: 4.37s
110:	learn: 17.7280526	total: 2.56s	remaining: 4.36s
111:	learn: 17.6960456	total: 2.58s	remaining: 4.33s
112:	learn: 17.6209638	total: 2.61s	remaining: 4.31s
113:	learn: 17.5389165	total: 2.63s	remaining: 4.29s
114:	learn: 17.4874967	total: 2.65s	remaining: 4.27s
115:	learn: 17.3744401	total: 2.67s	remaining: 4.24s
116:	learn: 17.2762107	total: 2.69s	remaining: 4.21s
117:	learn: 17.1930198	total: 2.72s	remaining: 4.19s
118:	learn: 17.0804375	total: 2.74s	remaining: 4.17s
119:	learn: 17.0100383	total: 2.77s	remaining: 4.15s
120:	learn: 16.9515165	total: 2.79s	remaining: 4.13s
121:	learn: 16.8221030	total: 2.81s	remaining: 4.1s
122:	learn: 16.7270258	total: 2.83s	remaining: 4.07s
123:	learn: 16.6537882	total: 2.85s	remaining: 4.05s
124:	learn: 16.5324707	total: 2.87s	remaining: 4.02s
125:	learn: 16.4705263	total: 2.89s	remaining: 3.99s
126:	learn: 16.4130833	total: 2.91s	remaining: 3.97s
127:	learn: 16.3480615	total: 2.94s	remaining: 3.95s
128:	learn: 16.2228205	total: 2.96s	remaining: 3.93s
129:	learn: 16.1299284	total: 2.99s	remaining: 3.9s
130:	learn: 16.0593548	total: 3.01s	remaining: 3.88s
131:	learn: 15.9926308	total: 3.03s	remaining: 3.86s
132:	learn: 15.9351137	total: 3.05s	remaining: 3.83s
133:	learn: 15.8301951	total: 3.08s	remaining: 3.81s
134:	learn: 15.7606319	total: 3.1s	remaining: 3.79s
135:	learn: 15.6217872	total: 3.12s	remaining: 3.76s
136:	learn: 15.5200572	total: 3.14s	remaining: 3.73s
137:	learn: 15.4565615	total: 3.16s	remaining: 3.71s
138:	learn: 15.3854906	total: 3.19s	remaining: 3.69s
139:	learn: 15.3407126	total: 3.21s	remaining: 3.67s
140:	learn: 15.2532536	total: 3.23s	remaining: 3.64s
141:	learn: 15.2129349	total: 3.25s	remaining: 3.61s
142:	learn: 15.1732289	total: 3.27s	remaining: 3.59s
143:	learn: 15.1138929	total: 3.29s	remaining: 3.57s
144:	learn: 15.0326156	total: 3.31s	remaining: 3.54s
145:	learn: 14.9309324	total: 3.33s	remaining: 3.51s
146:	learn: 14.8657435	total: 3.35s	remaining: 3.49s
147:	learn: 14.8314609	total: 3.37s	remaining: 3.46s
148:	learn: 14.7431116	total: 3.4s	remaining: 3.45s
149:	learn: 14.6590351	total: 3.43s	remaining: 3.43s
150:	learn: 14.5339193	total: 3.45s	remaining: 3.4s
151:	learn: 14.4639900	total: 3.47s	remaining: 3.38s
152:	learn: 14.3967135	total: 3.49s	remaining: 3.36s
153:	learn: 14.3077714	total: 3.52s	remaining: 3.33s
154:	learn: 14.2227051	total: 3.54s	remaining: 3.31s
155:	learn: 14.1541051	total: 3.56s	remaining: 3.28s
156:	learn: 14.1099666	total: 3.58s	remaining: 3.26s
157:	learn: 14.0474387	total: 3.61s	remaining: 3.24s
158:	learn: 13.9402729	total: 3.63s	remaining: 3.22s
159:	learn: 13.8714208	total: 3.65s	remaining: 3.19s
160:	learn: 13.7798180	total: 3.67s	remaining: 3.17s
161:	learn: 13.6785277	total: 3.69s	remaining: 3.14s
162:	learn: 13.5985050	total: 3.71s	remaining: 3.12s
163:	learn: 13.5743583	total: 3.73s	remaining: 3.09s
164:	learn: 13.4271067	total: 3.75s	remaining: 3.07s
165:	learn: 13.3787394	total: 3.77s	remaining: 3.04s
166:	learn: 13.3132605	total: 3.79s	remaining: 3.02s
167:	learn: 13.2185878	total: 3.83s	remaining: 3s
168:	learn: 13.2025287	total: 3.85s	remaining: 2.98s
169:	learn: 13.1393556	total: 3.87s	remaining: 2.96s
170:	learn: 13.0898086	total: 3.9s	remaining: 2.94s
171:	learn: 12.9970587	total: 3.92s	remaining: 2.92s
172:	learn: 12.8778568	total: 3.94s	remaining: 2.89s
173:	learn: 12.7715298	total: 3.96s	remaining: 2.87s
174:	learn: 12.7109534	total: 3.98s	remaining: 2.84s
175:	learn: 12.6499951	total: 4s	remaining: 2.82s
176:	learn: 12.5781341	total: 4.03s	remaining: 2.8s
177:	learn: 12.5302935	total: 4.05s	remaining: 2.78s
178:	learn: 12.4570172	total: 4.07s	remaining: 2.75s
179:	learn: 12.3852468	total: 4.09s	remaining: 2.73s
180:	learn: 12.3218479	total: 4.11s	remaining: 2.7s
181:	learn: 12.2146968	total: 4.13s	remaining: 2.68s
182:	learn: 12.0872854	total: 4.15s	remaining: 2.65s
183:	learn: 12.0609707	total: 4.17s	remaining: 2.63s
184:	learn: 11.9443946	total: 4.2s	remaining: 2.61s
185:	learn: 11.8745310	total: 4.22s	remaining: 2.59s
186:	learn: 11.7895958	total: 4.25s	remaining: 2.57s
187:	learn: 11.7497478	total: 4.27s	remaining: 2.54s
188:	learn: 11.6831548	total: 4.3s	remaining: 2.52s
189:	learn: 11.6608564	total: 4.32s	remaining: 2.5s
190:	learn: 11.6399052	total: 4.34s	remaining: 2.48s
191:	learn: 11.5714004	total: 4.37s	remaining: 2.46s
192:	learn: 11.5427662	total: 4.39s	remaining: 2.43s
193:	learn: 11.4806208	total: 4.41s	remaining: 2.41s
194:	learn: 11.4691327	total: 4.43s	remaining: 2.39s
195:	learn: 11.4134172	total: 4.46s	remaining: 2.37s
196:	learn: 11.3438004	total: 4.48s	remaining: 2.34s
197:	learn: 11.3015149	total: 4.51s	remaining: 2.32s
198:	learn: 11.2493782	total: 4.53s	remaining: 2.3s
199:	learn: 11.1895539	total: 4.55s	remaining: 2.27s
200:	learn: 11.1683522	total: 4.57s	remaining: 2.25s
201:	learn: 11.1466698	total: 4.59s	remaining: 2.23s
202:	learn: 11.0701090	total: 4.61s	remaining: 2.2s
203:	learn: 11.0293322	total: 4.64s	remaining: 2.18s
204:	learn: 10.9637933	total: 4.67s	remaining: 2.16s
205:	learn: 10.9171875	total: 4.7s	remaining: 2.14s
206:	learn: 10.8620107	total: 4.72s	remaining: 2.12s
207:	learn: 10.8411017	total: 4.74s	remaining: 2.1s
208:	learn: 10.8219871	total: 4.76s	remaining: 2.07s
209:	learn: 10.7790684	total: 4.79s	remaining: 2.05s
210:	learn: 10.7460005	total: 4.81s	remaining: 2.03s
211:	learn: 10.6884581	total: 4.83s	remaining: 2s
212:	learn: 10.6215835	total: 4.85s	remaining: 1.98s
213:	learn: 10.6112487	total: 4.88s	remaining: 1.96s
214:	learn: 10.5515861	total: 4.91s	remaining: 1.94s
215:	learn: 10.5005611	total: 4.93s	remaining: 1.92s
216:	learn: 10.4827029	total: 4.95s	remaining: 1.89s
217:	learn: 10.4671266	total: 4.97s	remaining: 1.87s
218:	learn: 10.4471117	total: 4.99s	remaining: 1.85s
219:	learn: 10.4286227	total: 5.01s	remaining: 1.82s
220:	learn: 10.4102334	total: 5.03s	remaining: 1.8s
221:	learn: 10.3587364	total: 5.05s	remaining: 1.78s
222:	learn: 10.3185900	total: 5.08s	remaining: 1.75s
223:	learn: 10.3047695	total: 5.11s	remaining: 1.73s
224:	learn: 10.2861237	total: 5.13s	remaining: 1.71s
225:	learn: 10.2723077	total: 5.16s	remaining: 1.69s
226:	learn: 10.2566131	total: 5.18s	remaining: 1.67s
227:	learn: 10.2444076	total: 5.21s	remaining: 1.64s
228:	learn: 10.2035037	total: 5.23s	remaining: 1.62s
229:	learn: 10.1151548	total: 5.25s	remaining: 1.6s
230:	learn: 10.0952083	total: 5.27s	remaining: 1.57s
231:	learn: 10.0785525	total: 5.3s	remaining: 1.55s
232:	learn: 10.0582314	total: 5.32s	remaining: 1.53s
233:	learn: 10.0399370	total: 5.35s	remaining: 1.51s
234:	learn: 10.0277451	total: 5.37s	remaining: 1.49s
235:	learn: 9.9732252	total: 5.39s	remaining: 1.46s
236:	learn: 9.9602566	total: 5.41s	remaining: 1.44s
237:	learn: 9.9117022	total: 5.43s	remaining: 1.42s
238:	learn: 9.8771993	total: 5.46s	remaining: 1.39s
239:	learn: 9.8360533	total: 5.48s	remaining: 1.37s
240:	learn: 9.8228622	total: 5.5s	remaining: 1.35s
241:	learn: 9.7831566	total: 5.53s	remaining: 1.32s
242:	learn: 9.7238030	total: 5.56s	remaining: 1.3s
243:	learn: 9.6756010	total: 5.58s	remaining: 1.28s
244:	learn: 9.6573706	total: 5.61s	remaining: 1.26s
245:	learn: 9.6190420	total: 5.63s	remaining: 1.24s
246:	learn: 9.5963929	total: 5.65s	remaining: 1.21s
247:	learn: 9.5838279	total: 5.67s	remaining: 1.19s
248:	learn: 9.5516337	total: 5.69s	remaining: 1.17s
249:	learn: 9.5319568	total: 5.72s	remaining: 1.14s
250:	learn: 9.5009733	total: 5.74s	remaining: 1.12s
251:	learn: 9.4738909	total: 5.77s	remaining: 1.1s
252:	learn: 9.4573897	total: 5.79s	remaining: 1.07s
253:	learn: 9.4238859	total: 5.81s	remaining: 1.05s
254:	learn: 9.3792324	total: 5.83s	remaining: 1.03s
255:	learn: 9.3552571	total: 5.85s	remaining: 1s
256:	learn: 9.3036260	total: 5.87s	remaining: 983ms
257:	learn: 9.2868142	total: 5.89s	remaining: 960ms
258:	learn: 9.2740504	total: 5.92s	remaining: 937ms
259:	learn: 9.2329336	total: 5.94s	remaining: 914ms
260:	learn: 9.2190698	total: 5.96s	remaining: 891ms
261:	learn: 9.2074817	total: 5.99s	remaining: 869ms
262:	learn: 9.1724174	total: 6.01s	remaining: 846ms
263:	learn: 9.1293699	total: 6.04s	remaining: 823ms
264:	learn: 9.1025091	total: 6.06s	remaining: 801ms
265:	learn: 9.0893697	total: 6.08s	remaining: 777ms
266:	learn: 9.0733581	total: 6.1s	remaining: 754ms
267:	learn: 9.0599268	total: 6.12s	remaining: 731ms
268:	learn: 9.0277334	total: 6.14s	remaining: 708ms
269:	learn: 8.9860960	total: 6.17s	remaining: 685ms
270:	learn: 8.9478404	total: 6.2s	remaining: 663ms
271:	learn: 8.9074990	total: 6.22s	remaining: 640ms
272:	learn: 8.8851827	total: 6.24s	remaining: 617ms
273:	learn: 8.8741463	total: 6.26s	remaining: 594ms
274:	learn: 8.8422813	total: 6.28s	remaining: 571ms
275:	learn: 8.7887362	total: 6.3s	remaining: 548ms
276:	learn: 8.7766205	total: 6.32s	remaining: 525ms
277:	learn: 8.7606125	total: 6.34s	remaining: 502ms
278:	learn: 8.7302098	total: 6.37s	remaining: 479ms
279:	learn: 8.7180658	total: 6.4s	remaining: 457ms
280:	learn: 8.6784364	total: 6.42s	remaining: 434ms
281:	learn: 8.6341139	total: 6.45s	remaining: 411ms
282:	learn: 8.6092132	total: 6.47s	remaining: 389ms
283:	learn: 8.5723040	total: 6.49s	remaining: 366ms
284:	learn: 8.5318798	total: 6.51s	remaining: 343ms
285:	learn: 8.5051575	total: 6.53s	remaining: 320ms
286:	learn: 8.4896135	total: 6.55s	remaining: 297ms
287:	learn: 8.4665233	total: 6.57s	remaining: 274ms
288:	learn: 8.4563622	total: 6.6s	remaining: 251ms
289:	learn: 8.4221661	total: 6.62s	remaining: 228ms
290:	learn: 8.3953479	total: 6.64s	remaining: 205ms
291:	learn: 8.3735779	total: 6.66s	remaining: 183ms
292:	learn: 8.3452844	total: 6.68s	remaining: 160ms
293:	learn: 8.3141538	total: 6.7s	remaining: 137ms
294:	learn: 8.3014432	total: 6.72s	remaining: 114ms
295:	learn: 8.2802794	total: 6.74s	remaining: 91.1ms
296:	learn: 8.2485275	total: 6.76s	remaining: 68.3ms
297:	learn: 8.2239488	total: 6.79s	remaining: 45.6ms
298:	learn: 8.1877191	total: 6.82s	remaining: 22.8ms
299:	learn: 8.1551355	total: 6.84s	remaining: 0us
0:	learn: 27.6242191	total: 24.6ms	remaining: 7.35s
1:	learn: 27.3247973	total: 49.2ms	remaining: 7.33s
2:	learn: 26.9048262	total: 73.4ms	remaining: 7.26s
3:	learn: 26.6094870	total: 100ms	remaining: 7.42s
4:	learn: 26.2335903	total: 131ms	remaining: 7.73s
5:	learn: 25.9065752	total: 156ms	remaining: 7.63s
6:	learn: 25.6303453	total: 180ms	remaining: 7.52s
7:	learn: 25.2422673	total: 204ms	remaining: 7.45s
8:	learn: 24.9092185	total: 228ms	remaining: 7.37s
9:	learn: 24.6380278	total: 252ms	remaining: 7.31s
10:	learn: 24.2990126	total: 277ms	remaining: 7.26s
11:	learn: 24.0194492	total: 301ms	remaining: 7.23s
12:	learn: 23.7720807	total: 338ms	remaining: 7.45s
13:	learn: 23.4419462	total: 366ms	remaining: 7.48s
14:	learn: 23.2366857	total: 392ms	remaining: 7.44s
15:	learn: 22.9901263	total: 395ms	remaining: 7.01s
16:	learn: 22.7775050	total: 419ms	remaining: 6.97s
17:	learn: 22.5290799	total: 443ms	remaining: 6.94s
18:	learn: 22.2427201	total: 467ms	remaining: 6.9s
19:	learn: 21.9766361	total: 491ms	remaining: 6.87s
20:	learn: 21.7608475	total: 516ms	remaining: 6.86s
21:	learn: 21.5756818	total: 545ms	remaining: 6.89s
22:	learn: 21.3753018	total: 577ms	remaining: 6.95s
23:	learn: 21.1715384	total: 603ms	remaining: 6.94s
24:	learn: 20.9557317	total: 628ms	remaining: 6.9s
25:	learn: 20.7653390	total: 652ms	remaining: 6.87s
26:	learn: 20.5688623	total: 677ms	remaining: 6.84s
27:	learn: 20.3753201	total: 702ms	remaining: 6.82s
28:	learn: 20.2087140	total: 728ms	remaining: 6.8s
29:	learn: 20.0437127	total: 753ms	remaining: 6.78s
30:	learn: 19.7939404	total: 789ms	remaining: 6.85s
31:	learn: 19.6135511	total: 816ms	remaining: 6.83s
32:	learn: 19.4223949	total: 841ms	remaining: 6.81s
33:	learn: 19.3099062	total: 867ms	remaining: 6.78s
34:	learn: 19.1471296	total: 893ms	remaining: 6.76s
35:	learn: 18.9602406	total: 918ms	remaining: 6.74s
36:	learn: 18.8463205	total: 945ms	remaining: 6.71s
37:	learn: 18.5993654	total: 977ms	remaining: 6.73s
38:	learn: 18.4547850	total: 1s	remaining: 6.72s
39:	learn: 18.3265698	total: 1.03s	remaining: 6.7s
40:	learn: 18.1552052	total: 1.06s	remaining: 6.67s
41:	learn: 17.9969729	total: 1.08s	remaining: 6.64s
42:	learn: 17.8420506	total: 1.1s	remaining: 6.61s
43:	learn: 17.7314471	total: 1.13s	remaining: 6.57s
44:	learn: 17.6037885	total: 1.15s	remaining: 6.54s
45:	learn: 17.4911598	total: 1.18s	remaining: 6.53s
46:	learn: 17.3334650	total: 1.22s	remaining: 6.55s
47:	learn: 17.1964435	total: 1.24s	remaining: 6.53s
48:	learn: 17.0705369	total: 1.27s	remaining: 6.51s
49:	learn: 16.9282293	total: 1.3s	remaining: 6.49s
50:	learn: 16.7996947	total: 1.32s	remaining: 6.46s
51:	learn: 16.6978905	total: 1.35s	remaining: 6.44s
52:	learn: 16.5793323	total: 1.38s	remaining: 6.41s
53:	learn: 16.4770669	total: 1.4s	remaining: 6.39s
54:	learn: 16.3655624	total: 1.43s	remaining: 6.39s
55:	learn: 16.2604369	total: 1.46s	remaining: 6.37s
56:	learn: 16.1431440	total: 1.49s	remaining: 6.33s
57:	learn: 16.0326605	total: 1.51s	remaining: 6.3s
58:	learn: 15.9323014	total: 1.53s	remaining: 6.27s
59:	learn: 15.8025601	total: 1.56s	remaining: 6.24s
60:	learn: 15.6963178	total: 1.58s	remaining: 6.21s
61:	learn: 15.6270773	total: 1.61s	remaining: 6.19s
62:	learn: 15.5313112	total: 1.65s	remaining: 6.2s
63:	learn: 15.4399515	total: 1.68s	remaining: 6.18s
64:	learn: 15.3597117	total: 1.7s	remaining: 6.15s
65:	learn: 15.2697176	total: 1.73s	remaining: 6.13s
66:	learn: 15.1828907	total: 1.75s	remaining: 6.1s
67:	learn: 15.0961490	total: 1.78s	remaining: 6.07s
68:	learn: 15.0128613	total: 1.8s	remaining: 6.03s
69:	learn: 14.9098281	total: 1.83s	remaining: 6.02s
70:	learn: 14.8290802	total: 1.86s	remaining: 6.01s
71:	learn: 14.7354294	total: 1.89s	remaining: 5.98s
72:	learn: 14.6593235	total: 1.92s	remaining: 5.96s
73:	learn: 14.5723402	total: 1.94s	remaining: 5.93s
74:	learn: 14.4986819	total: 1.97s	remaining: 5.9s
75:	learn: 14.4087447	total: 1.99s	remaining: 5.87s
76:	learn: 14.3357763	total: 2.02s	remaining: 5.84s
77:	learn: 14.2423286	total: 2.04s	remaining: 5.82s
78:	learn: 14.1791552	total: 2.07s	remaining: 5.79s
79:	learn: 14.0970307	total: 2.1s	remaining: 5.79s
80:	learn: 14.0336692	total: 2.13s	remaining: 5.76s
81:	learn: 13.9758100	total: 2.16s	remaining: 5.74s
82:	learn: 13.9111969	total: 2.18s	remaining: 5.71s
83:	learn: 13.8350945	total: 2.21s	remaining: 5.68s
84:	learn: 13.7593569	total: 2.24s	remaining: 5.66s
85:	learn: 13.6953120	total: 2.26s	remaining: 5.63s
86:	learn: 13.6352452	total: 2.29s	remaining: 5.62s
87:	learn: 13.5794275	total: 2.32s	remaining: 5.59s
88:	learn: 13.4880894	total: 2.34s	remaining: 5.56s
89:	learn: 13.4305792	total: 2.37s	remaining: 5.53s
90:	learn: 13.3569291	total: 2.39s	remaining: 5.49s
91:	learn: 13.2958628	total: 2.42s	remaining: 5.46s
92:	learn: 13.2338079	total: 2.44s	remaining: 5.43s
93:	learn: 13.1821114	total: 2.46s	remaining: 5.4s
94:	learn: 13.1082697	total: 2.49s	remaining: 5.37s
95:	learn: 13.0475619	total: 2.52s	remaining: 5.36s
96:	learn: 12.9878324	total: 2.55s	remaining: 5.33s
97:	learn: 12.9294785	total: 2.58s	remaining: 5.31s
98:	learn: 12.8646231	total: 2.6s	remaining: 5.28s
99:	learn: 12.8003027	total: 2.63s	remaining: 5.25s
100:	learn: 12.6741024	total: 2.65s	remaining: 5.22s
101:	learn: 12.5871778	total: 2.67s	remaining: 5.19s
102:	learn: 12.5199785	total: 2.7s	remaining: 5.16s
103:	learn: 12.4533348	total: 2.73s	remaining: 5.14s
104:	learn: 12.4014303	total: 2.75s	remaining: 5.12s
105:	learn: 12.3404648	total: 2.78s	remaining: 5.08s
106:	learn: 12.2853908	total: 2.8s	remaining: 5.05s
107:	learn: 12.2113131	total: 2.83s	remaining: 5.02s
108:	learn: 12.1443818	total: 2.85s	remaining: 4.99s
109:	learn: 12.0782972	total: 2.87s	remaining: 4.96s
110:	learn: 12.0242888	total: 2.9s	remaining: 4.93s
111:	learn: 11.9606186	total: 2.92s	remaining: 4.9s
112:	learn: 11.8840123	total: 2.96s	remaining: 4.89s
113:	learn: 11.8362234	total: 2.98s	remaining: 4.86s
114:	learn: 11.7798600	total: 3.01s	remaining: 4.84s
115:	learn: 11.7205583	total: 3.03s	remaining: 4.81s
116:	learn: 11.6703154	total: 3.06s	remaining: 4.78s
117:	learn: 11.5906207	total: 3.08s	remaining: 4.75s
118:	learn: 11.5392300	total: 3.1s	remaining: 4.72s
119:	learn: 11.5009891	total: 3.13s	remaining: 4.69s
120:	learn: 11.4496613	total: 3.15s	remaining: 4.67s
121:	learn: 11.3880593	total: 3.19s	remaining: 4.65s
122:	learn: 11.3343840	total: 3.21s	remaining: 4.62s
123:	learn: 11.2903777	total: 3.23s	remaining: 4.59s
124:	learn: 11.2226066	total: 3.26s	remaining: 4.56s
125:	learn: 11.1756503	total: 3.28s	remaining: 4.53s
126:	learn: 11.1266674	total: 3.31s	remaining: 4.51s
127:	learn: 11.0542744	total: 3.33s	remaining: 4.48s
128:	learn: 11.0132226	total: 3.36s	remaining: 4.45s
129:	learn: 10.9545179	total: 3.4s	remaining: 4.45s
130:	learn: 10.9167977	total: 3.43s	remaining: 4.42s
131:	learn: 10.8607094	total: 3.45s	remaining: 4.39s
132:	learn: 10.8081246	total: 3.48s	remaining: 4.37s
133:	learn: 10.7595004	total: 3.5s	remaining: 4.34s
134:	learn: 10.6949228	total: 3.53s	remaining: 4.31s
135:	learn: 10.6549608	total: 3.55s	remaining: 4.28s
136:	learn: 10.6085016	total: 3.58s	remaining: 4.25s
137:	learn: 10.5530774	total: 3.61s	remaining: 4.24s
138:	learn: 10.5146132	total: 3.63s	remaining: 4.21s
139:	learn: 10.4804263	total: 3.66s	remaining: 4.18s
140:	learn: 10.4469935	total: 3.68s	remaining: 4.15s
141:	learn: 10.4083597	total: 3.71s	remaining: 4.13s
142:	learn: 10.3700272	total: 3.73s	remaining: 4.1s
143:	learn: 10.3240531	total: 3.75s	remaining: 4.07s
144:	learn: 10.2838387	total: 3.78s	remaining: 4.04s
145:	learn: 10.2237396	total: 3.81s	remaining: 4.02s
146:	learn: 10.1677493	total: 3.84s	remaining: 3.99s
147:	learn: 10.1289528	total: 3.86s	remaining: 3.97s
148:	learn: 10.0918869	total: 3.89s	remaining: 3.94s
149:	learn: 10.0599014	total: 3.92s	remaining: 3.92s
150:	learn: 9.9817438	total: 3.96s	remaining: 3.9s
151:	learn: 9.9410469	total: 3.98s	remaining: 3.88s
152:	learn: 9.8790383	total: 4.01s	remaining: 3.85s
153:	learn: 9.8489714	total: 4.04s	remaining: 3.83s
154:	learn: 9.8192539	total: 4.07s	remaining: 3.81s
155:	learn: 9.7595292	total: 4.1s	remaining: 3.78s
156:	learn: 9.7305132	total: 4.13s	remaining: 3.76s
157:	learn: 9.6946431	total: 4.16s	remaining: 3.74s
158:	learn: 9.6382391	total: 4.19s	remaining: 3.71s
159:	learn: 9.5932080	total: 4.21s	remaining: 3.69s
160:	learn: 9.5528662	total: 4.24s	remaining: 3.66s
161:	learn: 9.5112954	total: 4.27s	remaining: 3.64s
162:	learn: 9.4782229	total: 4.3s	remaining: 3.62s
163:	learn: 9.4469139	total: 4.33s	remaining: 3.59s
164:	learn: 9.4073553	total: 4.36s	remaining: 3.57s
165:	learn: 9.3658459	total: 4.39s	remaining: 3.54s
166:	learn: 9.3331509	total: 4.42s	remaining: 3.52s
167:	learn: 9.3022193	total: 4.45s	remaining: 3.5s
168:	learn: 9.2687355	total: 4.48s	remaining: 3.47s
169:	learn: 9.2347395	total: 4.51s	remaining: 3.45s
170:	learn: 9.1946963	total: 4.54s	remaining: 3.43s
171:	learn: 9.1669467	total: 4.57s	remaining: 3.4s
172:	learn: 9.1174548	total: 4.6s	remaining: 3.38s
173:	learn: 9.0578865	total: 4.63s	remaining: 3.35s
174:	learn: 9.0242697	total: 4.66s	remaining: 3.33s
175:	learn: 8.9812385	total: 4.69s	remaining: 3.3s
176:	learn: 8.9394173	total: 4.72s	remaining: 3.28s
177:	learn: 8.8954630	total: 4.74s	remaining: 3.25s
178:	learn: 8.8650625	total: 4.78s	remaining: 3.23s
179:	learn: 8.8128518	total: 4.81s	remaining: 3.21s
180:	learn: 8.7713941	total: 4.84s	remaining: 3.18s
181:	learn: 8.7271373	total: 4.87s	remaining: 3.15s
182:	learn: 8.6827020	total: 4.9s	remaining: 3.13s
183:	learn: 8.6411197	total: 4.93s	remaining: 3.11s
184:	learn: 8.6161231	total: 4.96s	remaining: 3.08s
185:	learn: 8.5812975	total: 4.99s	remaining: 3.06s
186:	learn: 8.5494363	total: 5.01s	remaining: 3.03s
187:	learn: 8.5121894	total: 5.04s	remaining: 3s
188:	learn: 8.4769543	total: 5.07s	remaining: 2.98s
189:	learn: 8.4285766	total: 5.1s	remaining: 2.95s
190:	learn: 8.4032474	total: 5.13s	remaining: 2.93s
191:	learn: 8.3791298	total: 5.16s	remaining: 2.9s
192:	learn: 8.3494894	total: 5.18s	remaining: 2.87s
193:	learn: 8.3153327	total: 5.22s	remaining: 2.85s
194:	learn: 8.2823004	total: 5.25s	remaining: 2.83s
195:	learn: 8.2449482	total: 5.28s	remaining: 2.8s
196:	learn: 8.2013567	total: 5.31s	remaining: 2.77s
197:	learn: 8.1697337	total: 5.33s	remaining: 2.75s
198:	learn: 8.1265833	total: 5.36s	remaining: 2.72s
199:	learn: 8.0905433	total: 5.4s	remaining: 2.7s
200:	learn: 8.0669552	total: 5.42s	remaining: 2.67s
201:	learn: 8.0258330	total: 5.46s	remaining: 2.65s
202:	learn: 8.0026168	total: 5.48s	remaining: 2.62s
203:	learn: 7.9482286	total: 5.51s	remaining: 2.59s
204:	learn: 7.9105233	total: 5.54s	remaining: 2.56s
205:	learn: 7.8966891	total: 5.56s	remaining: 2.54s
206:	learn: 7.8575063	total: 5.59s	remaining: 2.51s
207:	learn: 7.8147335	total: 5.62s	remaining: 2.49s
208:	learn: 7.7917140	total: 5.65s	remaining: 2.46s
209:	learn: 7.7607147	total: 5.69s	remaining: 2.44s
210:	learn: 7.7425727	total: 5.72s	remaining: 2.41s
211:	learn: 7.7238288	total: 5.74s	remaining: 2.38s
212:	learn: 7.6985896	total: 5.77s	remaining: 2.36s
213:	learn: 7.6752745	total: 5.8s	remaining: 2.33s
214:	learn: 7.6442259	total: 5.83s	remaining: 2.3s
215:	learn: 7.6325331	total: 5.86s	remaining: 2.28s
216:	learn: 7.6063316	total: 5.89s	remaining: 2.25s
217:	learn: 7.5831832	total: 5.92s	remaining: 2.23s
218:	learn: 7.5672234	total: 5.95s	remaining: 2.2s
219:	learn: 7.5331936	total: 5.98s	remaining: 2.17s
220:	learn: 7.4920831	total: 6s	remaining: 2.15s
221:	learn: 7.4737554	total: 6.03s	remaining: 2.12s
222:	learn: 7.4270074	total: 6.06s	remaining: 2.09s
223:	learn: 7.4017600	total: 6.09s	remaining: 2.07s
224:	learn: 7.3806959	total: 6.12s	remaining: 2.04s
225:	learn: 7.3554017	total: 6.16s	remaining: 2.02s
226:	learn: 7.3409799	total: 6.18s	remaining: 1.99s
227:	learn: 7.3212923	total: 6.21s	remaining: 1.96s
228:	learn: 7.3105787	total: 6.24s	remaining: 1.93s
229:	learn: 7.2892883	total: 6.27s	remaining: 1.91s
230:	learn: 7.2744332	total: 6.3s	remaining: 1.88s
231:	learn: 7.2520263	total: 6.32s	remaining: 1.85s
232:	learn: 7.2282060	total: 6.37s	remaining: 1.83s
233:	learn: 7.2079652	total: 6.39s	remaining: 1.8s
234:	learn: 7.1916393	total: 6.42s	remaining: 1.78s
235:	learn: 7.1701919	total: 6.45s	remaining: 1.75s
236:	learn: 7.1568798	total: 6.48s	remaining: 1.72s
237:	learn: 7.1311171	total: 6.5s	remaining: 1.69s
238:	learn: 7.1241442	total: 6.53s	remaining: 1.67s
239:	learn: 7.1023502	total: 6.57s	remaining: 1.64s
240:	learn: 7.0871109	total: 6.62s	remaining: 1.62s
241:	learn: 7.0717340	total: 6.65s	remaining: 1.59s
242:	learn: 7.0574975	total: 6.68s	remaining: 1.57s
243:	learn: 7.0489270	total: 6.71s	remaining: 1.54s
244:	learn: 7.0279173	total: 6.74s	remaining: 1.51s
245:	learn: 6.9967234	total: 6.77s	remaining: 1.49s
246:	learn: 6.9827176	total: 6.8s	remaining: 1.46s
247:	learn: 6.9632381	total: 6.83s	remaining: 1.43s
248:	learn: 6.9490747	total: 6.87s	remaining: 1.41s
249:	learn: 6.9350226	total: 6.89s	remaining: 1.38s
250:	learn: 6.9203338	total: 6.92s	remaining: 1.35s
251:	learn: 6.9078713	total: 6.95s	remaining: 1.32s
252:	learn: 6.8997471	total: 6.97s	remaining: 1.29s
253:	learn: 6.8786784	total: 7s	remaining: 1.27s
254:	learn: 6.8629866	total: 7.03s	remaining: 1.24s
255:	learn: 6.8497530	total: 7.07s	remaining: 1.21s
256:	learn: 6.8363263	total: 7.1s	remaining: 1.19s
257:	learn: 6.8232778	total: 7.13s	remaining: 1.16s
258:	learn: 6.7952234	total: 7.16s	remaining: 1.13s
259:	learn: 6.7671952	total: 7.19s	remaining: 1.1s
260:	learn: 6.7545126	total: 7.21s	remaining: 1.08s
261:	learn: 6.7414039	total: 7.24s	remaining: 1.05s
262:	learn: 6.7307423	total: 7.27s	remaining: 1.02s
263:	learn: 6.6887074	total: 7.3s	remaining: 996ms
264:	learn: 6.6786482	total: 7.34s	remaining: 969ms
265:	learn: 6.6520387	total: 7.36s	remaining: 941ms
266:	learn: 6.6371511	total: 7.39s	remaining: 914ms
267:	learn: 6.6139304	total: 7.42s	remaining: 886ms
268:	learn: 6.6024854	total: 7.45s	remaining: 858ms
269:	learn: 6.5811216	total: 7.47s	remaining: 830ms
270:	learn: 6.5396874	total: 7.51s	remaining: 804ms
271:	learn: 6.5260569	total: 7.54s	remaining: 777ms
272:	learn: 6.5161555	total: 7.57s	remaining: 749ms
273:	learn: 6.5055568	total: 7.61s	remaining: 722ms
274:	learn: 6.4955852	total: 7.63s	remaining: 694ms
275:	learn: 6.4768059	total: 7.66s	remaining: 666ms
276:	learn: 6.4526678	total: 7.69s	remaining: 638ms
277:	learn: 6.4407932	total: 7.73s	remaining: 611ms
278:	learn: 6.4229786	total: 7.75s	remaining: 584ms
279:	learn: 6.4143528	total: 7.78s	remaining: 556ms
280:	learn: 6.3939760	total: 7.8s	remaining: 528ms
281:	learn: 6.3821368	total: 7.84s	remaining: 500ms
282:	learn: 6.3733999	total: 7.87s	remaining: 473ms
283:	learn: 6.3506155	total: 7.9s	remaining: 445ms
284:	learn: 6.3456374	total: 7.93s	remaining: 417ms
285:	learn: 6.3423150	total: 7.96s	remaining: 390ms
286:	learn: 6.3323118	total: 7.99s	remaining: 362ms
287:	learn: 6.3209916	total: 8.01s	remaining: 334ms
288:	learn: 6.3017754	total: 8.04s	remaining: 306ms
289:	learn: 6.2738210	total: 8.07s	remaining: 278ms
290:	learn: 6.2684358	total: 8.11s	remaining: 251ms
291:	learn: 6.2546793	total: 8.14s	remaining: 223ms
292:	learn: 6.2441498	total: 8.16s	remaining: 195ms
293:	learn: 6.2406001	total: 8.19s	remaining: 167ms
294:	learn: 6.2308638	total: 8.22s	remaining: 139ms
295:	learn: 6.2166524	total: 8.24s	remaining: 111ms
296:	learn: 6.2029239	total: 8.27s	remaining: 83.6ms
297:	learn: 6.1930984	total: 8.31s	remaining: 55.8ms
298:	learn: 6.1787666	total: 8.34s	remaining: 27.9ms
299:	learn: 6.1715886	total: 8.37s	remaining: 0us
0:	learn: 43.0189040	total: 27.4ms	remaining: 8.18s
1:	learn: 42.1913120	total: 55.8ms	remaining: 8.31s
2:	learn: 41.2381785	total: 85.4ms	remaining: 8.46s
3:	learn: 40.3733911	total: 119ms	remaining: 8.78s
4:	learn: 39.7420433	total: 146ms	remaining: 8.6s
5:	learn: 38.9384932	total: 174ms	remaining: 8.5s
6:	learn: 38.2027180	total: 207ms	remaining: 8.68s
7:	learn: 37.5736018	total: 235ms	remaining: 8.57s
8:	learn: 36.9042368	total: 263ms	remaining: 8.5s
9:	learn: 36.1138721	total: 300ms	remaining: 8.7s
10:	learn: 35.4444268	total: 310ms	remaining: 8.13s
11:	learn: 34.7889997	total: 328ms	remaining: 7.87s
12:	learn: 34.3622266	total: 356ms	remaining: 7.86s
13:	learn: 33.6999120	total: 387ms	remaining: 7.91s
14:	learn: 32.9955576	total: 417ms	remaining: 7.92s
15:	learn: 32.3475617	total: 453ms	remaining: 8.04s
16:	learn: 31.9028750	total: 481ms	remaining: 8.01s
17:	learn: 31.3786390	total: 511ms	remaining: 8.01s
18:	learn: 30.9731314	total: 547ms	remaining: 8.1s
19:	learn: 30.5397110	total: 574ms	remaining: 8.04s
20:	learn: 30.0650165	total: 602ms	remaining: 7.99s
21:	learn: 29.4732599	total: 628ms	remaining: 7.93s
22:	learn: 29.0746185	total: 655ms	remaining: 7.89s
23:	learn: 28.5839328	total: 682ms	remaining: 7.84s
24:	learn: 28.2894974	total: 724ms	remaining: 7.96s
25:	learn: 27.7954367	total: 753ms	remaining: 7.93s
26:	learn: 27.3542996	total: 781ms	remaining: 7.9s
27:	learn: 27.0838564	total: 808ms	remaining: 7.85s
28:	learn: 26.7019509	total: 836ms	remaining: 7.81s
29:	learn: 26.3607640	total: 864ms	remaining: 7.78s
30:	learn: 25.9174899	total: 891ms	remaining: 7.73s
31:	learn: 25.5590328	total: 919ms	remaining: 7.69s
32:	learn: 25.1682834	total: 959ms	remaining: 7.76s
33:	learn: 24.8123558	total: 987ms	remaining: 7.72s
34:	learn: 24.5841473	total: 1.01s	remaining: 7.68s
35:	learn: 24.2224307	total: 1.04s	remaining: 7.63s
36:	learn: 23.9745715	total: 1.07s	remaining: 7.58s
37:	learn: 23.6958493	total: 1.09s	remaining: 7.55s
38:	learn: 23.3890143	total: 1.12s	remaining: 7.51s
39:	learn: 23.1113968	total: 1.16s	remaining: 7.51s
40:	learn: 22.8519880	total: 1.19s	remaining: 7.53s
41:	learn: 22.5944697	total: 1.22s	remaining: 7.49s
42:	learn: 22.3853418	total: 1.25s	remaining: 7.45s
43:	learn: 22.1827007	total: 1.27s	remaining: 7.42s
44:	learn: 22.0186852	total: 1.3s	remaining: 7.38s
45:	learn: 21.7686773	total: 1.33s	remaining: 7.33s
46:	learn: 21.5978489	total: 1.35s	remaining: 7.29s
47:	learn: 21.3542004	total: 1.38s	remaining: 7.26s
48:	learn: 21.1752073	total: 1.43s	remaining: 7.31s
49:	learn: 21.0415246	total: 1.45s	remaining: 7.27s
50:	learn: 20.8441081	total: 1.48s	remaining: 7.23s
51:	learn: 20.5918001	total: 1.51s	remaining: 7.19s
52:	learn: 20.4441208	total: 1.53s	remaining: 7.15s
53:	learn: 20.2679633	total: 1.56s	remaining: 7.11s
54:	learn: 20.1163092	total: 1.59s	remaining: 7.08s
55:	learn: 19.9714704	total: 1.62s	remaining: 7.06s
56:	learn: 19.8249765	total: 1.66s	remaining: 7.06s
57:	learn: 19.6607355	total: 1.69s	remaining: 7.05s
58:	learn: 19.4877956	total: 1.72s	remaining: 7.02s
59:	learn: 19.3053072	total: 1.75s	remaining: 6.98s
60:	learn: 19.1885738	total: 1.77s	remaining: 6.95s
61:	learn: 19.0346503	total: 1.8s	remaining: 6.91s
62:	learn: 18.8347986	total: 1.83s	remaining: 6.88s
63:	learn: 18.6814926	total: 1.86s	remaining: 6.86s
64:	learn: 18.5382672	total: 1.89s	remaining: 6.83s
65:	learn: 18.3895833	total: 1.92s	remaining: 6.81s
66:	learn: 18.2694672	total: 1.95s	remaining: 6.78s
67:	learn: 18.1196051	total: 1.98s	remaining: 6.74s
68:	learn: 17.9925317	total: 2s	remaining: 6.7s
69:	learn: 17.8749679	total: 2.03s	remaining: 6.67s
70:	learn: 17.7225935	total: 2.07s	remaining: 6.68s
71:	learn: 17.5806906	total: 2.1s	remaining: 6.65s
72:	learn: 17.4922570	total: 2.13s	remaining: 6.62s
73:	learn: 17.3984999	total: 2.16s	remaining: 6.61s
74:	learn: 17.3128227	total: 2.19s	remaining: 6.57s
75:	learn: 17.2165163	total: 2.22s	remaining: 6.53s
76:	learn: 17.0889232	total: 2.24s	remaining: 6.5s
77:	learn: 16.9583567	total: 2.27s	remaining: 6.47s
78:	learn: 16.8340539	total: 2.31s	remaining: 6.45s
79:	learn: 16.7346257	total: 2.33s	remaining: 6.42s
80:	learn: 16.6446663	total: 2.36s	remaining: 6.38s
81:	learn: 16.5218155	total: 2.39s	remaining: 6.37s
82:	learn: 16.4054583	total: 2.42s	remaining: 6.33s
83:	learn: 16.2803558	total: 2.45s	remaining: 6.29s
84:	learn: 16.1516324	total: 2.48s	remaining: 6.26s
85:	learn: 16.0643357	total: 2.51s	remaining: 6.26s
86:	learn: 15.9817265	total: 2.54s	remaining: 6.22s
87:	learn: 15.9144474	total: 2.57s	remaining: 6.19s
88:	learn: 15.8380424	total: 2.6s	remaining: 6.16s
89:	learn: 15.7453770	total: 2.62s	remaining: 6.12s
90:	learn: 15.6720653	total: 2.66s	remaining: 6.1s
91:	learn: 15.5626839	total: 2.69s	remaining: 6.08s
92:	learn: 15.4727375	total: 2.72s	remaining: 6.05s
93:	learn: 15.3655885	total: 2.75s	remaining: 6.02s
94:	learn: 15.2496762	total: 2.77s	remaining: 5.98s
95:	learn: 15.1773522	total: 2.8s	remaining: 5.95s
96:	learn: 15.0924366	total: 2.83s	remaining: 5.92s
97:	learn: 15.0082209	total: 2.85s	remaining: 5.88s
98:	learn: 14.9178437	total: 2.89s	remaining: 5.87s
99:	learn: 14.8149449	total: 2.93s	remaining: 5.85s
100:	learn: 14.7450303	total: 2.96s	remaining: 5.82s
101:	learn: 14.6462390	total: 2.98s	remaining: 5.79s
102:	learn: 14.5348825	total: 3.01s	remaining: 5.76s
103:	learn: 14.4483847	total: 3.04s	remaining: 5.73s
104:	learn: 14.4006573	total: 3.07s	remaining: 5.7s
105:	learn: 14.3322113	total: 3.1s	remaining: 5.68s
106:	learn: 14.2471466	total: 3.14s	remaining: 5.66s
107:	learn: 14.1788249	total: 3.17s	remaining: 5.63s
108:	learn: 14.1033594	total: 3.19s	remaining: 5.59s
109:	learn: 14.0161080	total: 3.22s	remaining: 5.56s
110:	learn: 13.9710960	total: 3.25s	remaining: 5.53s
111:	learn: 13.8941529	total: 3.27s	remaining: 5.49s
112:	learn: 13.8246456	total: 3.3s	remaining: 5.47s
113:	learn: 13.7518933	total: 3.34s	remaining: 5.45s
114:	learn: 13.7003709	total: 3.38s	remaining: 5.43s
115:	learn: 13.6359576	total: 3.4s	remaining: 5.4s
116:	learn: 13.6039211	total: 3.43s	remaining: 5.37s
117:	learn: 13.5361545	total: 3.46s	remaining: 5.33s
118:	learn: 13.4554429	total: 3.48s	remaining: 5.3s
119:	learn: 13.3922439	total: 3.51s	remaining: 5.27s
120:	learn: 13.2895862	total: 3.54s	remaining: 5.24s
121:	learn: 13.1749097	total: 3.58s	remaining: 5.22s
122:	learn: 13.1167631	total: 3.6s	remaining: 5.18s
123:	learn: 13.0410984	total: 3.64s	remaining: 5.16s
124:	learn: 12.9506234	total: 3.66s	remaining: 5.13s
125:	learn: 12.8890045	total: 3.69s	remaining: 5.1s
126:	learn: 12.8295606	total: 3.72s	remaining: 5.06s
127:	learn: 12.7634290	total: 3.75s	remaining: 5.03s
128:	learn: 12.6891923	total: 3.78s	remaining: 5.02s
129:	learn: 12.6312306	total: 3.81s	remaining: 4.99s
130:	learn: 12.5802486	total: 3.84s	remaining: 4.95s
131:	learn: 12.5246529	total: 3.87s	remaining: 4.93s
132:	learn: 12.4479017	total: 3.9s	remaining: 4.9s
133:	learn: 12.3930818	total: 3.93s	remaining: 4.87s
134:	learn: 12.3373247	total: 3.96s	remaining: 4.84s
135:	learn: 12.3039291	total: 3.99s	remaining: 4.81s
136:	learn: 12.2583784	total: 4.02s	remaining: 4.78s
137:	learn: 12.1902920	total: 4.05s	remaining: 4.75s
138:	learn: 12.1515651	total: 4.07s	remaining: 4.72s
139:	learn: 12.1008468	total: 4.11s	remaining: 4.69s
140:	learn: 12.0752080	total: 4.13s	remaining: 4.66s
141:	learn: 12.0263787	total: 4.16s	remaining: 4.63s
142:	learn: 11.9709736	total: 4.2s	remaining: 4.61s
143:	learn: 11.9295822	total: 4.23s	remaining: 4.58s
144:	learn: 11.8867911	total: 4.26s	remaining: 4.55s
145:	learn: 11.8179180	total: 4.29s	remaining: 4.52s
146:	learn: 11.7448446	total: 4.31s	remaining: 4.49s
147:	learn: 11.7332909	total: 4.35s	remaining: 4.47s
148:	learn: 11.6907270	total: 4.38s	remaining: 4.44s
149:	learn: 11.6628056	total: 4.41s	remaining: 4.41s
150:	learn: 11.6039432	total: 4.44s	remaining: 4.38s
151:	learn: 11.5752331	total: 4.46s	remaining: 4.35s
152:	learn: 11.5376476	total: 4.49s	remaining: 4.31s
153:	learn: 11.4947632	total: 4.52s	remaining: 4.28s
154:	learn: 11.4484147	total: 4.54s	remaining: 4.25s
155:	learn: 11.3925819	total: 4.57s	remaining: 4.22s
156:	learn: 11.3287384	total: 4.61s	remaining: 4.2s
157:	learn: 11.2566623	total: 4.65s	remaining: 4.17s
158:	learn: 11.2000227	total: 4.67s	remaining: 4.14s
159:	learn: 11.1023408	total: 4.7s	remaining: 4.11s
160:	learn: 11.0489770	total: 4.73s	remaining: 4.08s
161:	learn: 11.0026542	total: 4.75s	remaining: 4.05s
162:	learn: 10.9309626	total: 4.78s	remaining: 4.02s
163:	learn: 10.8844157	total: 4.81s	remaining: 3.99s
164:	learn: 10.8292008	total: 4.85s	remaining: 3.97s
165:	learn: 10.7365612	total: 4.88s	remaining: 3.94s
166:	learn: 10.6948804	total: 4.91s	remaining: 3.91s
167:	learn: 10.6566665	total: 4.93s	remaining: 3.88s
168:	learn: 10.6219222	total: 4.96s	remaining: 3.84s
169:	learn: 10.5930877	total: 4.99s	remaining: 3.81s
170:	learn: 10.5520362	total: 5.01s	remaining: 3.78s
171:	learn: 10.5160879	total: 5.04s	remaining: 3.75s
172:	learn: 10.4653972	total: 5.09s	remaining: 3.74s
173:	learn: 10.4164242	total: 5.12s	remaining: 3.71s
174:	learn: 10.3821629	total: 5.15s	remaining: 3.68s
175:	learn: 10.3623975	total: 5.18s	remaining: 3.65s
176:	learn: 10.3095845	total: 5.21s	remaining: 3.62s
177:	learn: 10.2501576	total: 5.23s	remaining: 3.59s
178:	learn: 10.2276060	total: 5.26s	remaining: 3.56s
179:	learn: 10.2052696	total: 5.29s	remaining: 3.53s
180:	learn: 10.1685156	total: 5.33s	remaining: 3.5s
181:	learn: 10.1443775	total: 5.36s	remaining: 3.47s
182:	learn: 10.0531518	total: 5.38s	remaining: 3.44s
183:	learn: 10.0052361	total: 5.41s	remaining: 3.41s
184:	learn: 9.9598299	total: 5.44s	remaining: 3.38s
185:	learn: 9.9062881	total: 5.47s	remaining: 3.35s
186:	learn: 9.8476621	total: 5.5s	remaining: 3.32s
187:	learn: 9.7943755	total: 5.53s	remaining: 3.29s
188:	learn: 9.7545158	total: 5.56s	remaining: 3.27s
189:	learn: 9.7325928	total: 5.6s	remaining: 3.24s
190:	learn: 9.6597076	total: 5.62s	remaining: 3.21s
191:	learn: 9.6049808	total: 5.65s	remaining: 3.18s
192:	learn: 9.5210539	total: 5.68s	remaining: 3.15s
193:	learn: 9.4839833	total: 5.71s	remaining: 3.12s
194:	learn: 9.4030810	total: 5.74s	remaining: 3.09s
195:	learn: 9.3610011	total: 5.77s	remaining: 3.06s
196:	learn: 9.3194779	total: 5.8s	remaining: 3.03s
197:	learn: 9.2866867	total: 5.83s	remaining: 3s
198:	learn: 9.2508142	total: 5.86s	remaining: 2.97s
199:	learn: 9.2271576	total: 5.89s	remaining: 2.94s
200:	learn: 9.1740668	total: 5.91s	remaining: 2.91s
201:	learn: 9.1586477	total: 5.94s	remaining: 2.88s
202:	learn: 9.1429015	total: 5.98s	remaining: 2.86s
203:	learn: 9.1133248	total: 6.01s	remaining: 2.83s
204:	learn: 9.0711331	total: 6.04s	remaining: 2.8s
205:	learn: 9.0093562	total: 6.07s	remaining: 2.77s
206:	learn: 8.9859881	total: 6.1s	remaining: 2.74s
207:	learn: 8.9419294	total: 6.13s	remaining: 2.71s
208:	learn: 8.8732493	total: 6.16s	remaining: 2.68s
209:	learn: 8.8186181	total: 6.19s	remaining: 2.65s
210:	learn: 8.7860222	total: 6.22s	remaining: 2.62s
211:	learn: 8.7597312	total: 6.24s	remaining: 2.59s
212:	learn: 8.7305431	total: 6.27s	remaining: 2.56s
213:	learn: 8.6620534	total: 6.3s	remaining: 2.53s
214:	learn: 8.6317582	total: 6.33s	remaining: 2.5s
215:	learn: 8.6021758	total: 6.36s	remaining: 2.47s
216:	learn: 8.5696515	total: 6.39s	remaining: 2.44s
217:	learn: 8.5267761	total: 6.42s	remaining: 2.42s
218:	learn: 8.5135802	total: 6.45s	remaining: 2.38s
219:	learn: 8.4762506	total: 6.48s	remaining: 2.35s
220:	learn: 8.4462181	total: 6.5s	remaining: 2.33s
221:	learn: 8.4167253	total: 6.53s	remaining: 2.29s
222:	learn: 8.3867332	total: 6.57s	remaining: 2.27s
223:	learn: 8.3527829	total: 6.59s	remaining: 2.24s
224:	learn: 8.3221175	total: 6.62s	remaining: 2.21s
225:	learn: 8.3149566	total: 6.65s	remaining: 2.18s
226:	learn: 8.3023601	total: 6.68s	remaining: 2.15s
227:	learn: 8.2720745	total: 6.71s	remaining: 2.12s
228:	learn: 8.2581250	total: 6.74s	remaining: 2.09s
229:	learn: 8.2207983	total: 6.76s	remaining: 2.06s
230:	learn: 8.2083228	total: 6.8s	remaining: 2.03s
231:	learn: 8.1774734	total: 6.82s	remaining: 2s
232:	learn: 8.1280317	total: 6.85s	remaining: 1.97s
233:	learn: 8.0969454	total: 6.89s	remaining: 1.94s
234:	learn: 8.0653906	total: 6.92s	remaining: 1.91s
235:	learn: 8.0403548	total: 6.95s	remaining: 1.88s
236:	learn: 8.0309296	total: 6.97s	remaining: 1.85s
237:	learn: 7.9802761	total: 7s	remaining: 1.82s
238:	learn: 7.9595062	total: 7.04s	remaining: 1.8s
239:	learn: 7.9560132	total: 7.06s	remaining: 1.77s
240:	learn: 7.9188077	total: 7.1s	remaining: 1.74s
241:	learn: 7.9129376	total: 7.13s	remaining: 1.71s
242:	learn: 7.8845382	total: 7.15s	remaining: 1.68s
243:	learn: 7.8699627	total: 7.18s	remaining: 1.65s
244:	learn: 7.8332493	total: 7.21s	remaining: 1.62s
245:	learn: 7.7807468	total: 7.23s	remaining: 1.59s
246:	learn: 7.7739426	total: 7.27s	remaining: 1.56s
247:	learn: 7.7384141	total: 7.3s	remaining: 1.53s
248:	learn: 7.7066380	total: 7.33s	remaining: 1.5s
249:	learn: 7.7001271	total: 7.36s	remaining: 1.47s
250:	learn: 7.6846399	total: 7.39s	remaining: 1.44s
251:	learn: 7.6791814	total: 7.42s	remaining: 1.41s
252:	learn: 7.6451688	total: 7.44s	remaining: 1.38s
253:	learn: 7.6117158	total: 7.47s	remaining: 1.35s
254:	learn: 7.6012012	total: 7.5s	remaining: 1.32s
255:	learn: 7.5729959	total: 7.53s	remaining: 1.29s
256:	learn: 7.5370997	total: 7.56s	remaining: 1.26s
257:	learn: 7.5099776	total: 7.59s	remaining: 1.24s
258:	learn: 7.4860975	total: 7.62s	remaining: 1.21s
259:	learn: 7.4566817	total: 7.64s	remaining: 1.18s
260:	learn: 7.4269980	total: 7.67s	remaining: 1.15s
261:	learn: 7.3923465	total: 7.7s	remaining: 1.12s
262:	learn: 7.3675376	total: 7.72s	remaining: 1.09s
263:	learn: 7.3392461	total: 7.76s	remaining: 1.06s
264:	learn: 7.3102490	total: 7.8s	remaining: 1.03s
265:	learn: 7.3010635	total: 7.83s	remaining: 1s
266:	learn: 7.2733113	total: 7.85s	remaining: 971ms
267:	learn: 7.2683610	total: 7.88s	remaining: 941ms
268:	learn: 7.2532714	total: 7.91s	remaining: 912ms
269:	learn: 7.2444185	total: 7.94s	remaining: 882ms
270:	learn: 7.2300953	total: 7.96s	remaining: 852ms
271:	learn: 7.2077357	total: 8.01s	remaining: 824ms
272:	learn: 7.1843423	total: 8.04s	remaining: 795ms
273:	learn: 7.1754867	total: 8.06s	remaining: 765ms
274:	learn: 7.1395344	total: 8.09s	remaining: 735ms
275:	learn: 7.1342567	total: 8.12s	remaining: 706ms
276:	learn: 7.1116057	total: 8.14s	remaining: 676ms
277:	learn: 7.0822569	total: 8.17s	remaining: 647ms
278:	learn: 7.0731958	total: 8.2s	remaining: 617ms
279:	learn: 7.0576479	total: 8.24s	remaining: 589ms
280:	learn: 7.0354817	total: 8.27s	remaining: 559ms
281:	learn: 7.0277403	total: 8.3s	remaining: 530ms
282:	learn: 7.0028621	total: 8.33s	remaining: 500ms
283:	learn: 6.9820607	total: 8.36s	remaining: 471ms
284:	learn: 6.9645494	total: 8.38s	remaining: 441ms
285:	learn: 6.9563224	total: 8.41s	remaining: 412ms
286:	learn: 6.9482036	total: 8.44s	remaining: 382ms
287:	learn: 6.9116066	total: 8.47s	remaining: 353ms
288:	learn: 6.8884274	total: 8.51s	remaining: 324ms
289:	learn: 6.8632506	total: 8.53s	remaining: 294ms
290:	learn: 6.8447357	total: 8.56s	remaining: 265ms
291:	learn: 6.8242972	total: 8.59s	remaining: 235ms
292:	learn: 6.8012643	total: 8.61s	remaining: 206ms
293:	learn: 6.7800583	total: 8.64s	remaining: 176ms
294:	learn: 6.7687042	total: 8.68s	remaining: 147ms
295:	learn: 6.7454529	total: 8.71s	remaining: 118ms
296:	learn: 6.7227229	total: 8.74s	remaining: 88.3ms
297:	learn: 6.7004834	total: 8.77s	remaining: 58.9ms
298:	learn: 6.6931313	total: 8.8s	remaining: 29.4ms
299:	learn: 6.6604653	total: 8.82s	remaining: 0us
0:	learn: 46.4449485	total: 27.7ms	remaining: 8.29s
1:	learn: 45.6641003	total: 55.1ms	remaining: 8.21s
2:	learn: 44.9322182	total: 81.8ms	remaining: 8.1s
3:	learn: 44.1111890	total: 108ms	remaining: 7.98s
4:	learn: 43.2956452	total: 142ms	remaining: 8.37s
5:	learn: 42.6298126	total: 173ms	remaining: 8.46s
6:	learn: 42.0896057	total: 200ms	remaining: 8.36s
7:	learn: 41.2698632	total: 226ms	remaining: 8.23s
8:	learn: 40.4846232	total: 253ms	remaining: 8.18s
9:	learn: 39.7069009	total: 280ms	remaining: 8.12s
10:	learn: 38.9656593	total: 283ms	remaining: 7.45s
11:	learn: 38.5069229	total: 308ms	remaining: 7.39s
12:	learn: 37.8073380	total: 334ms	remaining: 7.38s
13:	learn: 37.3882967	total: 360ms	remaining: 7.36s
14:	learn: 36.8180964	total: 393ms	remaining: 7.46s
15:	learn: 36.2948556	total: 419ms	remaining: 7.43s
16:	learn: 35.6877194	total: 443ms	remaining: 7.38s
17:	learn: 35.3344416	total: 469ms	remaining: 7.35s
18:	learn: 34.8793907	total: 494ms	remaining: 7.3s
19:	learn: 34.3129264	total: 518ms	remaining: 7.25s
20:	learn: 34.0804390	total: 543ms	remaining: 7.21s
21:	learn: 33.4413882	total: 569ms	remaining: 7.18s
22:	learn: 32.9936060	total: 595ms	remaining: 7.16s
23:	learn: 32.6458868	total: 631ms	remaining: 7.26s
24:	learn: 32.3273431	total: 657ms	remaining: 7.23s
25:	learn: 31.8309940	total: 683ms	remaining: 7.2s
26:	learn: 31.4310003	total: 708ms	remaining: 7.16s
27:	learn: 31.1804602	total: 734ms	remaining: 7.13s
28:	learn: 30.8535447	total: 761ms	remaining: 7.11s
29:	learn: 30.4063180	total: 787ms	remaining: 7.08s
30:	learn: 30.1876699	total: 822ms	remaining: 7.13s
31:	learn: 29.8778033	total: 848ms	remaining: 7.1s
32:	learn: 29.6371470	total: 874ms	remaining: 7.07s
33:	learn: 29.3801255	total: 899ms	remaining: 7.03s
34:	learn: 29.1426244	total: 924ms	remaining: 7s
35:	learn: 28.9166951	total: 950ms	remaining: 6.97s
36:	learn: 28.6597815	total: 975ms	remaining: 6.93s
37:	learn: 28.3844706	total: 1s	remaining: 6.9s
38:	learn: 28.0894923	total: 1.04s	remaining: 6.96s
39:	learn: 27.7571740	total: 1.07s	remaining: 6.94s
40:	learn: 27.4609127	total: 1.09s	remaining: 6.91s
41:	learn: 27.1948352	total: 1.12s	remaining: 6.87s
42:	learn: 26.9507594	total: 1.14s	remaining: 6.84s
43:	learn: 26.6347229	total: 1.17s	remaining: 6.82s
44:	learn: 26.3479735	total: 1.2s	remaining: 6.79s
45:	learn: 26.1335817	total: 1.22s	remaining: 6.76s
46:	learn: 25.8868210	total: 1.26s	remaining: 6.77s
47:	learn: 25.6881647	total: 1.28s	remaining: 6.75s
48:	learn: 25.4764814	total: 1.31s	remaining: 6.71s
49:	learn: 25.2279851	total: 1.33s	remaining: 6.67s
50:	learn: 24.9914875	total: 1.36s	remaining: 6.64s
51:	learn: 24.7951252	total: 1.39s	remaining: 6.61s
52:	learn: 24.6181712	total: 1.41s	remaining: 6.57s
53:	learn: 24.3711141	total: 1.44s	remaining: 6.54s
54:	learn: 24.1983381	total: 1.47s	remaining: 6.55s
55:	learn: 24.0518193	total: 1.5s	remaining: 6.53s
56:	learn: 23.8035754	total: 1.52s	remaining: 6.5s
57:	learn: 23.5891443	total: 1.55s	remaining: 6.47s
58:	learn: 23.3650788	total: 1.58s	remaining: 6.44s
59:	learn: 23.1423622	total: 1.6s	remaining: 6.41s
60:	learn: 22.9562061	total: 1.63s	remaining: 6.38s
61:	learn: 22.7841608	total: 1.66s	remaining: 6.35s
62:	learn: 22.5259611	total: 1.69s	remaining: 6.36s
63:	learn: 22.3959565	total: 1.72s	remaining: 6.33s
64:	learn: 22.2695041	total: 1.74s	remaining: 6.29s
65:	learn: 22.0116444	total: 1.76s	remaining: 6.26s
66:	learn: 21.8636416	total: 1.79s	remaining: 6.23s
67:	learn: 21.7170816	total: 1.81s	remaining: 6.19s
68:	learn: 21.6130887	total: 1.84s	remaining: 6.16s
69:	learn: 21.4107735	total: 1.87s	remaining: 6.13s
70:	learn: 21.2682184	total: 1.9s	remaining: 6.11s
71:	learn: 21.0421124	total: 1.93s	remaining: 6.11s
72:	learn: 20.8829831	total: 1.96s	remaining: 6.08s
73:	learn: 20.7916905	total: 1.98s	remaining: 6.06s
74:	learn: 20.6572110	total: 2.01s	remaining: 6.03s
75:	learn: 20.4683201	total: 2.04s	remaining: 6s
76:	learn: 20.3387806	total: 2.06s	remaining: 5.97s
77:	learn: 20.2301442	total: 2.09s	remaining: 5.94s
78:	learn: 20.1399739	total: 2.12s	remaining: 5.93s
79:	learn: 20.0395988	total: 2.15s	remaining: 5.9s
80:	learn: 19.9529190	total: 2.17s	remaining: 5.88s
81:	learn: 19.8285498	total: 2.2s	remaining: 5.84s
82:	learn: 19.6862504	total: 2.22s	remaining: 5.81s
83:	learn: 19.5764172	total: 2.25s	remaining: 5.78s
84:	learn: 19.4499650	total: 2.27s	remaining: 5.75s
85:	learn: 19.3449362	total: 2.29s	remaining: 5.71s
86:	learn: 19.1854254	total: 2.32s	remaining: 5.68s
87:	learn: 19.0850074	total: 2.35s	remaining: 5.67s
88:	learn: 18.9724934	total: 2.38s	remaining: 5.64s
89:	learn: 18.8778956	total: 2.4s	remaining: 5.61s
90:	learn: 18.7370373	total: 2.43s	remaining: 5.58s
91:	learn: 18.6192464	total: 2.45s	remaining: 5.55s
92:	learn: 18.5100314	total: 2.48s	remaining: 5.52s
93:	learn: 18.4275820	total: 2.5s	remaining: 5.49s
94:	learn: 18.3242001	total: 2.53s	remaining: 5.46s
95:	learn: 18.2110620	total: 2.56s	remaining: 5.43s
96:	learn: 18.0955256	total: 2.58s	remaining: 5.4s
97:	learn: 17.9941571	total: 2.6s	remaining: 5.37s
98:	learn: 17.8973235	total: 2.63s	remaining: 5.34s
99:	learn: 17.8100972	total: 2.65s	remaining: 5.3s
100:	learn: 17.7386244	total: 2.68s	remaining: 5.27s
101:	learn: 17.6310903	total: 2.7s	remaining: 5.24s
102:	learn: 17.5516996	total: 2.73s	remaining: 5.21s
103:	learn: 17.4617467	total: 2.75s	remaining: 5.19s
104:	learn: 17.3666766	total: 2.78s	remaining: 5.17s
105:	learn: 17.2221165	total: 2.81s	remaining: 5.14s
106:	learn: 17.0790059	total: 2.83s	remaining: 5.11s
107:	learn: 16.9698310	total: 2.86s	remaining: 5.08s
108:	learn: 16.8969362	total: 2.88s	remaining: 5.05s
109:	learn: 16.7819942	total: 2.91s	remaining: 5.02s
110:	learn: 16.6911902	total: 2.93s	remaining: 4.99s
111:	learn: 16.5519175	total: 2.96s	remaining: 4.96s
112:	learn: 16.3906885	total: 2.99s	remaining: 4.95s
113:	learn: 16.3090927	total: 3.02s	remaining: 4.92s
114:	learn: 16.2205215	total: 3.04s	remaining: 4.89s
115:	learn: 16.1233780	total: 3.06s	remaining: 4.86s
116:	learn: 16.0321663	total: 3.09s	remaining: 4.83s
117:	learn: 15.9579011	total: 3.11s	remaining: 4.8s
118:	learn: 15.8593485	total: 3.14s	remaining: 4.77s
119:	learn: 15.7788251	total: 3.16s	remaining: 4.74s
120:	learn: 15.7287407	total: 3.19s	remaining: 4.71s
121:	learn: 15.5788208	total: 3.22s	remaining: 4.7s
122:	learn: 15.5086549	total: 3.25s	remaining: 4.67s
123:	learn: 15.4364731	total: 3.27s	remaining: 4.65s
124:	learn: 15.3549185	total: 3.3s	remaining: 4.62s
125:	learn: 15.2967084	total: 3.32s	remaining: 4.59s
126:	learn: 15.1872607	total: 3.35s	remaining: 4.56s
127:	learn: 15.0932023	total: 3.37s	remaining: 4.53s
128:	learn: 15.0097364	total: 3.39s	remaining: 4.5s
129:	learn: 14.9463156	total: 3.42s	remaining: 4.47s
130:	learn: 14.8900172	total: 3.45s	remaining: 4.45s
131:	learn: 14.8358826	total: 3.48s	remaining: 4.42s
132:	learn: 14.7553997	total: 3.5s	remaining: 4.39s
133:	learn: 14.6821554	total: 3.52s	remaining: 4.36s
134:	learn: 14.5304879	total: 3.55s	remaining: 4.33s
135:	learn: 14.4324442	total: 3.57s	remaining: 4.31s
136:	learn: 14.3331494	total: 3.59s	remaining: 4.28s
137:	learn: 14.2753055	total: 3.62s	remaining: 4.25s
138:	learn: 14.1937968	total: 3.65s	remaining: 4.22s
139:	learn: 14.1149360	total: 3.67s	remaining: 4.2s
140:	learn: 14.0475961	total: 3.7s	remaining: 4.17s
141:	learn: 13.9679410	total: 3.72s	remaining: 4.14s
142:	learn: 13.8728976	total: 3.75s	remaining: 4.11s
143:	learn: 13.8088340	total: 3.77s	remaining: 4.09s
144:	learn: 13.7225802	total: 3.81s	remaining: 4.07s
145:	learn: 13.6027859	total: 3.84s	remaining: 4.05s
146:	learn: 13.5360562	total: 3.87s	remaining: 4.03s
147:	learn: 13.4527264	total: 3.9s	remaining: 4s
148:	learn: 13.3905685	total: 3.92s	remaining: 3.98s
149:	learn: 13.3231120	total: 3.95s	remaining: 3.95s
150:	learn: 13.2748277	total: 3.98s	remaining: 3.92s
151:	learn: 13.2011042	total: 4s	remaining: 3.9s
152:	learn: 13.1113158	total: 4.03s	remaining: 3.87s
153:	learn: 13.0630373	total: 4.07s	remaining: 3.85s
154:	learn: 12.9877054	total: 4.11s	remaining: 3.84s
155:	learn: 12.8975618	total: 4.13s	remaining: 3.82s
156:	learn: 12.8226873	total: 4.16s	remaining: 3.79s
157:	learn: 12.7653176	total: 4.19s	remaining: 3.77s
158:	learn: 12.7032259	total: 4.22s	remaining: 3.74s
159:	learn: 12.6413414	total: 4.25s	remaining: 3.71s
160:	learn: 12.5418162	total: 4.27s	remaining: 3.69s
161:	learn: 12.4761943	total: 4.32s	remaining: 3.68s
162:	learn: 12.4099277	total: 4.34s	remaining: 3.65s
163:	learn: 12.3393405	total: 4.37s	remaining: 3.62s
164:	learn: 12.2429002	total: 4.39s	remaining: 3.6s
165:	learn: 12.1931336	total: 4.42s	remaining: 3.57s
166:	learn: 12.0509054	total: 4.45s	remaining: 3.54s
167:	learn: 11.9940166	total: 4.48s	remaining: 3.52s
168:	learn: 11.9267615	total: 4.5s	remaining: 3.49s
169:	learn: 11.8595898	total: 4.55s	remaining: 3.48s
170:	learn: 11.7291128	total: 4.58s	remaining: 3.45s
171:	learn: 11.6574232	total: 4.61s	remaining: 3.43s
172:	learn: 11.5771876	total: 4.63s	remaining: 3.4s
173:	learn: 11.4934307	total: 4.66s	remaining: 3.37s
174:	learn: 11.4454134	total: 4.69s	remaining: 3.35s
175:	learn: 11.3829392	total: 4.71s	remaining: 3.32s
176:	learn: 11.2971903	total: 4.74s	remaining: 3.3s
177:	learn: 11.2515029	total: 4.78s	remaining: 3.27s
178:	learn: 11.2046889	total: 4.81s	remaining: 3.25s
179:	learn: 11.1528497	total: 4.84s	remaining: 3.22s
180:	learn: 11.0691294	total: 4.86s	remaining: 3.2s
181:	learn: 11.0191173	total: 4.89s	remaining: 3.17s
182:	learn: 10.9046058	total: 4.92s	remaining: 3.14s
183:	learn: 10.8625890	total: 4.95s	remaining: 3.12s
184:	learn: 10.7913928	total: 4.98s	remaining: 3.1s
185:	learn: 10.7366315	total: 5.01s	remaining: 3.07s
186:	learn: 10.6583458	total: 5.04s	remaining: 3.05s
187:	learn: 10.5955649	total: 5.07s	remaining: 3.02s
188:	learn: 10.5456969	total: 5.1s	remaining: 3s
189:	learn: 10.4582108	total: 5.13s	remaining: 2.97s
190:	learn: 10.4226930	total: 5.16s	remaining: 2.94s
191:	learn: 10.3469793	total: 5.19s	remaining: 2.92s
192:	learn: 10.2680286	total: 5.22s	remaining: 2.89s
193:	learn: 10.2210599	total: 5.25s	remaining: 2.87s
194:	learn: 10.1575919	total: 5.28s	remaining: 2.84s
195:	learn: 10.0996054	total: 5.31s	remaining: 2.82s
196:	learn: 10.0503671	total: 5.33s	remaining: 2.79s
197:	learn: 9.9976825	total: 5.36s	remaining: 2.76s
198:	learn: 9.9452535	total: 5.39s	remaining: 2.73s
199:	learn: 9.8825415	total: 5.43s	remaining: 2.71s
200:	learn: 9.8064134	total: 5.45s	remaining: 2.69s
201:	learn: 9.7572174	total: 5.48s	remaining: 2.66s
202:	learn: 9.6993413	total: 5.52s	remaining: 2.64s
203:	learn: 9.6645937	total: 5.55s	remaining: 2.61s
204:	learn: 9.6261766	total: 5.57s	remaining: 2.58s
205:	learn: 9.5819475	total: 5.6s	remaining: 2.56s
206:	learn: 9.5366280	total: 5.63s	remaining: 2.53s
207:	learn: 9.4813538	total: 5.67s	remaining: 2.51s
208:	learn: 9.4246671	total: 5.69s	remaining: 2.48s
209:	learn: 9.3787991	total: 5.72s	remaining: 2.45s
210:	learn: 9.3261932	total: 5.75s	remaining: 2.42s
211:	learn: 9.2979373	total: 5.78s	remaining: 2.4s
212:	learn: 9.2466040	total: 5.81s	remaining: 2.37s
213:	learn: 9.1990809	total: 5.84s	remaining: 2.35s
214:	learn: 9.1630306	total: 5.87s	remaining: 2.32s
215:	learn: 9.1266975	total: 5.9s	remaining: 2.29s
216:	learn: 9.0846374	total: 5.93s	remaining: 2.27s
217:	learn: 9.0341002	total: 5.96s	remaining: 2.24s
218:	learn: 8.9874070	total: 5.98s	remaining: 2.21s
219:	learn: 8.9478524	total: 6.02s	remaining: 2.19s
220:	learn: 8.8970642	total: 6.05s	remaining: 2.16s
221:	learn: 8.8605945	total: 6.08s	remaining: 2.14s
222:	learn: 8.8261863	total: 6.11s	remaining: 2.11s
223:	learn: 8.7821922	total: 6.13s	remaining: 2.08s
224:	learn: 8.7517706	total: 6.16s	remaining: 2.05s
225:	learn: 8.7149517	total: 6.19s	remaining: 2.03s
226:	learn: 8.6766707	total: 6.22s	remaining: 2s
227:	learn: 8.6372492	total: 6.26s	remaining: 1.98s
228:	learn: 8.6002129	total: 6.3s	remaining: 1.95s
229:	learn: 8.5595754	total: 6.33s	remaining: 1.93s
230:	learn: 8.5342774	total: 6.36s	remaining: 1.9s
231:	learn: 8.4991734	total: 6.38s	remaining: 1.87s
232:	learn: 8.4735361	total: 6.41s	remaining: 1.84s
233:	learn: 8.4328577	total: 6.44s	remaining: 1.82s
234:	learn: 8.3929232	total: 6.47s	remaining: 1.79s
235:	learn: 8.3611534	total: 6.51s	remaining: 1.77s
236:	learn: 8.3469261	total: 6.54s	remaining: 1.74s
237:	learn: 8.3082592	total: 6.57s	remaining: 1.71s
238:	learn: 8.2724422	total: 6.59s	remaining: 1.68s
239:	learn: 8.2378713	total: 6.62s	remaining: 1.65s
240:	learn: 8.2054002	total: 6.64s	remaining: 1.63s
241:	learn: 8.1726213	total: 6.67s	remaining: 1.6s
242:	learn: 8.1385919	total: 6.7s	remaining: 1.57s
243:	learn: 8.1113159	total: 6.74s	remaining: 1.55s
244:	learn: 8.0740264	total: 6.78s	remaining: 1.52s
245:	learn: 8.0399614	total: 6.8s	remaining: 1.49s
246:	learn: 8.0179358	total: 6.83s	remaining: 1.47s
247:	learn: 7.9896565	total: 6.86s	remaining: 1.44s
248:	learn: 7.9644186	total: 6.89s	remaining: 1.41s
249:	learn: 7.9305923	total: 6.92s	remaining: 1.38s
250:	learn: 7.9007851	total: 6.95s	remaining: 1.36s
251:	learn: 7.8740137	total: 6.98s	remaining: 1.33s
252:	learn: 7.8448288	total: 7.01s	remaining: 1.3s
253:	learn: 7.8020074	total: 7.04s	remaining: 1.27s
254:	learn: 7.7748874	total: 7.07s	remaining: 1.25s
255:	learn: 7.7553198	total: 7.1s	remaining: 1.22s
256:	learn: 7.7327191	total: 7.13s	remaining: 1.19s
257:	learn: 7.7021253	total: 7.17s	remaining: 1.17s
258:	learn: 7.6760024	total: 7.19s	remaining: 1.14s
259:	learn: 7.6569353	total: 7.22s	remaining: 1.11s
260:	learn: 7.6304716	total: 7.26s	remaining: 1.08s
261:	learn: 7.6011855	total: 7.28s	remaining: 1.06s
262:	learn: 7.5732109	total: 7.31s	remaining: 1.03s
263:	learn: 7.5502359	total: 7.34s	remaining: 1s
264:	learn: 7.5240021	total: 7.37s	remaining: 974ms
265:	learn: 7.4977154	total: 7.4s	remaining: 946ms
266:	learn: 7.4679226	total: 7.43s	remaining: 918ms
267:	learn: 7.4445035	total: 7.46s	remaining: 890ms
268:	learn: 7.4246251	total: 7.48s	remaining: 862ms
269:	learn: 7.4029554	total: 7.52s	remaining: 835ms
270:	learn: 7.3712662	total: 7.54s	remaining: 807ms
271:	learn: 7.3355870	total: 7.57s	remaining: 779ms
272:	learn: 7.3198771	total: 7.61s	remaining: 752ms
273:	learn: 7.3050151	total: 7.63s	remaining: 725ms
274:	learn: 7.2910043	total: 7.66s	remaining: 697ms
275:	learn: 7.2783385	total: 7.69s	remaining: 669ms
276:	learn: 7.2559473	total: 7.72s	remaining: 641ms
277:	learn: 7.2185655	total: 7.75s	remaining: 614ms
278:	learn: 7.1965563	total: 7.78s	remaining: 586ms
279:	learn: 7.1773705	total: 7.82s	remaining: 558ms
280:	learn: 7.1541341	total: 7.84s	remaining: 530ms
281:	learn: 7.1355109	total: 7.87s	remaining: 502ms
282:	learn: 7.1129308	total: 7.9s	remaining: 474ms
283:	learn: 7.0886063	total: 7.92s	remaining: 446ms
284:	learn: 7.0673363	total: 7.95s	remaining: 419ms
285:	learn: 7.0518651	total: 7.99s	remaining: 391ms
286:	learn: 7.0312280	total: 8.02s	remaining: 363ms
287:	learn: 7.0065712	total: 8.05s	remaining: 336ms
288:	learn: 6.9851465	total: 8.08s	remaining: 308ms
289:	learn: 6.9652208	total: 8.11s	remaining: 280ms
290:	learn: 6.9480340	total: 8.14s	remaining: 252ms
291:	learn: 6.9293725	total: 8.16s	remaining: 224ms
292:	learn: 6.8953713	total: 8.19s	remaining: 196ms
293:	learn: 6.8800761	total: 8.23s	remaining: 168ms
294:	learn: 6.8674172	total: 8.26s	remaining: 140ms
295:	learn: 6.8461255	total: 8.29s	remaining: 112ms
296:	learn: 6.8284246	total: 8.32s	remaining: 84ms
297:	learn: 6.8028742	total: 8.35s	remaining: 56ms
298:	learn: 6.7865169	total: 8.37s	remaining: 28ms
299:	learn: 6.7677918	total: 8.4s	remaining: 0us
0:	learn: 46.0177610	total: 27.8ms	remaining: 8.31s
1:	learn: 45.2171004	total: 65.9ms	remaining: 9.83s
2:	learn: 44.5194217	total: 93.4ms	remaining: 9.24s
3:	learn: 43.6812696	total: 121ms	remaining: 8.94s
4:	learn: 42.8831305	total: 148ms	remaining: 8.72s
5:	learn: 42.1262412	total: 176ms	remaining: 8.6s
6:	learn: 41.6465602	total: 210ms	remaining: 8.79s
7:	learn: 41.2399751	total: 239ms	remaining: 8.71s
8:	learn: 40.7217059	total: 265ms	remaining: 8.57s
9:	learn: 40.1802193	total: 293ms	remaining: 8.49s
10:	learn: 39.7286629	total: 327ms	remaining: 8.6s
11:	learn: 39.1775230	total: 354ms	remaining: 8.49s
12:	learn: 38.7477788	total: 380ms	remaining: 8.39s
13:	learn: 38.2296808	total: 409ms	remaining: 8.35s
14:	learn: 37.7069865	total: 445ms	remaining: 8.46s
15:	learn: 37.1535735	total: 473ms	remaining: 8.39s
16:	learn: 36.7900064	total: 501ms	remaining: 8.35s
17:	learn: 36.4049038	total: 529ms	remaining: 8.29s
18:	learn: 35.9640324	total: 564ms	remaining: 8.34s
19:	learn: 35.5778526	total: 592ms	remaining: 8.29s
20:	learn: 35.2480134	total: 625ms	remaining: 8.3s
21:	learn: 34.8576668	total: 655ms	remaining: 8.27s
22:	learn: 34.3332571	total: 681ms	remaining: 8.21s
23:	learn: 34.0285781	total: 708ms	remaining: 8.14s
24:	learn: 33.6137780	total: 735ms	remaining: 8.08s
25:	learn: 33.1018374	total: 761ms	remaining: 8.02s
26:	learn: 32.7865924	total: 796ms	remaining: 8.05s
27:	learn: 32.5376779	total: 823ms	remaining: 8s
28:	learn: 32.0718213	total: 865ms	remaining: 8.08s
29:	learn: 31.7440177	total: 892ms	remaining: 8.03s
30:	learn: 31.4767615	total: 920ms	remaining: 7.98s
31:	learn: 31.0939292	total: 947ms	remaining: 7.93s
32:	learn: 30.7679414	total: 975ms	remaining: 7.89s
33:	learn: 30.3318976	total: 1s	remaining: 7.84s
34:	learn: 30.0098409	total: 1.03s	remaining: 7.79s
35:	learn: 29.7328439	total: 1.06s	remaining: 7.81s
36:	learn: 29.3793676	total: 1.1s	remaining: 7.8s
37:	learn: 29.1027021	total: 1.12s	remaining: 7.75s
38:	learn: 28.7995895	total: 1.15s	remaining: 7.7s
39:	learn: 28.5217760	total: 1.18s	remaining: 7.65s
40:	learn: 28.1682840	total: 1.2s	remaining: 7.61s
41:	learn: 27.7960176	total: 1.23s	remaining: 7.56s
42:	learn: 27.5479541	total: 1.26s	remaining: 7.51s
43:	learn: 27.1865306	total: 1.3s	remaining: 7.55s
44:	learn: 26.9937460	total: 1.33s	remaining: 7.52s
45:	learn: 26.8442463	total: 1.35s	remaining: 7.47s
46:	learn: 26.4960149	total: 1.38s	remaining: 7.43s
47:	learn: 26.3705169	total: 1.41s	remaining: 7.39s
48:	learn: 26.1706608	total: 1.44s	remaining: 7.36s
49:	learn: 25.9554127	total: 1.46s	remaining: 7.31s
50:	learn: 25.7460625	total: 1.49s	remaining: 7.27s
51:	learn: 25.5382801	total: 1.52s	remaining: 7.24s
52:	learn: 25.3702316	total: 1.56s	remaining: 7.26s
53:	learn: 25.1895507	total: 1.58s	remaining: 7.22s
54:	learn: 24.9547189	total: 1.61s	remaining: 7.18s
55:	learn: 24.7774266	total: 1.64s	remaining: 7.14s
56:	learn: 24.5983576	total: 1.67s	remaining: 7.1s
57:	learn: 24.4350851	total: 1.69s	remaining: 7.06s
58:	learn: 24.1821816	total: 1.72s	remaining: 7.02s
59:	learn: 24.0194176	total: 1.75s	remaining: 7.02s
60:	learn: 23.8268698	total: 1.79s	remaining: 7.02s
61:	learn: 23.6797713	total: 1.82s	remaining: 6.98s
62:	learn: 23.5016295	total: 1.85s	remaining: 6.95s
63:	learn: 23.3337406	total: 1.88s	remaining: 6.92s
64:	learn: 23.1777686	total: 1.9s	remaining: 6.88s
65:	learn: 22.9885995	total: 1.93s	remaining: 6.84s
66:	learn: 22.8371180	total: 1.96s	remaining: 6.81s
67:	learn: 22.6795513	total: 1.99s	remaining: 6.79s
68:	learn: 22.5161365	total: 2.02s	remaining: 6.78s
69:	learn: 22.3361211	total: 2.05s	remaining: 6.74s
70:	learn: 22.1434717	total: 2.08s	remaining: 6.71s
71:	learn: 21.9717466	total: 2.1s	remaining: 6.67s
72:	learn: 21.7799255	total: 2.13s	remaining: 6.63s
73:	learn: 21.5806287	total: 2.16s	remaining: 6.6s
74:	learn: 21.4515659	total: 2.2s	remaining: 6.59s
75:	learn: 21.3438173	total: 2.23s	remaining: 6.56s
76:	learn: 21.2141855	total: 2.25s	remaining: 6.52s
77:	learn: 20.9791139	total: 2.29s	remaining: 6.52s
78:	learn: 20.8731109	total: 2.32s	remaining: 6.48s
79:	learn: 20.7356152	total: 2.34s	remaining: 6.44s
80:	learn: 20.6794518	total: 2.37s	remaining: 6.41s
81:	learn: 20.5703504	total: 2.4s	remaining: 6.38s
82:	learn: 20.4542622	total: 2.43s	remaining: 6.36s
83:	learn: 20.3436005	total: 2.46s	remaining: 6.32s
84:	learn: 20.2213634	total: 2.48s	remaining: 6.28s
85:	learn: 20.0231006	total: 2.52s	remaining: 6.26s
86:	learn: 19.9066413	total: 2.54s	remaining: 6.23s
87:	learn: 19.8018072	total: 2.57s	remaining: 6.19s
88:	learn: 19.7018716	total: 2.6s	remaining: 6.16s
89:	learn: 19.5924764	total: 2.64s	remaining: 6.15s
90:	learn: 19.4563722	total: 2.67s	remaining: 6.13s
91:	learn: 19.3246547	total: 2.69s	remaining: 6.09s
92:	learn: 19.2157682	total: 2.72s	remaining: 6.06s
93:	learn: 19.1488443	total: 2.76s	remaining: 6.04s
94:	learn: 19.0557445	total: 2.78s	remaining: 6.01s
95:	learn: 18.9599358	total: 2.81s	remaining: 5.97s
96:	learn: 18.8626100	total: 2.84s	remaining: 5.94s
97:	learn: 18.7583061	total: 2.87s	remaining: 5.92s
98:	learn: 18.6544146	total: 2.9s	remaining: 5.88s
99:	learn: 18.5451742	total: 2.92s	remaining: 5.85s
100:	learn: 18.4189953	total: 2.95s	remaining: 5.81s
101:	learn: 18.3438186	total: 2.98s	remaining: 5.78s
102:	learn: 18.3162367	total: 3.01s	remaining: 5.76s
103:	learn: 18.2040313	total: 3.04s	remaining: 5.73s
104:	learn: 18.0312740	total: 3.08s	remaining: 5.71s
105:	learn: 17.9372951	total: 3.1s	remaining: 5.68s
106:	learn: 17.8724695	total: 3.13s	remaining: 5.65s
107:	learn: 17.7720982	total: 3.16s	remaining: 5.62s
108:	learn: 17.6847197	total: 3.19s	remaining: 5.58s
109:	learn: 17.5739155	total: 3.21s	remaining: 5.55s
110:	learn: 17.5071512	total: 3.25s	remaining: 5.53s
111:	learn: 17.4284339	total: 3.28s	remaining: 5.51s
112:	learn: 17.3333136	total: 3.31s	remaining: 5.48s
113:	learn: 17.2854017	total: 3.34s	remaining: 5.44s
114:	learn: 17.2580292	total: 3.36s	remaining: 5.41s
115:	learn: 17.1942005	total: 3.39s	remaining: 5.38s
116:	learn: 17.1180771	total: 3.42s	remaining: 5.34s
117:	learn: 17.0881080	total: 3.44s	remaining: 5.31s
118:	learn: 16.9946379	total: 3.48s	remaining: 5.29s
119:	learn: 16.9347009	total: 3.51s	remaining: 5.26s
120:	learn: 16.8550523	total: 3.54s	remaining: 5.24s
121:	learn: 16.8167084	total: 3.57s	remaining: 5.21s
122:	learn: 16.7431121	total: 3.6s	remaining: 5.17s
123:	learn: 16.6790079	total: 3.63s	remaining: 5.15s
124:	learn: 16.6544185	total: 3.65s	remaining: 5.11s
125:	learn: 16.5758961	total: 3.68s	remaining: 5.08s
126:	learn: 16.4736355	total: 3.71s	remaining: 5.05s
127:	learn: 16.3424410	total: 3.74s	remaining: 5.03s
128:	learn: 16.2679660	total: 3.78s	remaining: 5.01s
129:	learn: 16.2258039	total: 3.8s	remaining: 4.97s
130:	learn: 16.1516799	total: 3.83s	remaining: 4.94s
131:	learn: 16.1254438	total: 3.86s	remaining: 4.91s
132:	learn: 16.0304106	total: 3.88s	remaining: 4.88s
133:	learn: 15.9690721	total: 3.91s	remaining: 4.84s
134:	learn: 15.8475301	total: 3.94s	remaining: 4.81s
135:	learn: 15.7923044	total: 3.98s	remaining: 4.79s
136:	learn: 15.7122364	total: 4.01s	remaining: 4.77s
137:	learn: 15.6328785	total: 4.04s	remaining: 4.74s
138:	learn: 15.5626000	total: 4.06s	remaining: 4.71s
139:	learn: 15.4322531	total: 4.09s	remaining: 4.67s
140:	learn: 15.3057121	total: 4.12s	remaining: 4.64s
141:	learn: 15.2355698	total: 4.14s	remaining: 4.61s
142:	learn: 15.1858129	total: 4.17s	remaining: 4.58s
143:	learn: 15.1459442	total: 4.2s	remaining: 4.55s
144:	learn: 15.1011230	total: 4.24s	remaining: 4.53s
145:	learn: 15.0379234	total: 4.26s	remaining: 4.5s
146:	learn: 14.9606955	total: 4.29s	remaining: 4.47s
147:	learn: 14.8537869	total: 4.32s	remaining: 4.43s
148:	learn: 14.7978827	total: 4.35s	remaining: 4.4s
149:	learn: 14.7340183	total: 4.37s	remaining: 4.37s
150:	learn: 14.6973812	total: 4.4s	remaining: 4.34s
151:	learn: 14.6682787	total: 4.43s	remaining: 4.31s
152:	learn: 14.5210539	total: 4.46s	remaining: 4.28s
153:	learn: 14.4733148	total: 4.49s	remaining: 4.25s
154:	learn: 14.4119567	total: 4.51s	remaining: 4.22s
155:	learn: 14.3464330	total: 4.54s	remaining: 4.19s
156:	learn: 14.2314719	total: 4.56s	remaining: 4.16s
157:	learn: 14.1827121	total: 4.59s	remaining: 4.13s
158:	learn: 14.0860528	total: 4.62s	remaining: 4.09s
159:	learn: 14.0216499	total: 4.64s	remaining: 4.06s
160:	learn: 13.9788508	total: 4.67s	remaining: 4.03s
161:	learn: 13.9341942	total: 4.7s	remaining: 4s
162:	learn: 13.8689437	total: 4.72s	remaining: 3.97s
163:	learn: 13.8152354	total: 4.75s	remaining: 3.94s
164:	learn: 13.7979613	total: 4.77s	remaining: 3.9s
165:	learn: 13.7124340	total: 4.8s	remaining: 3.87s
166:	learn: 13.6328571	total: 4.82s	remaining: 3.84s
167:	learn: 13.6179483	total: 4.85s	remaining: 3.81s
168:	learn: 13.5737505	total: 4.88s	remaining: 3.78s
169:	learn: 13.5185652	total: 4.91s	remaining: 3.75s
170:	learn: 13.3621411	total: 4.93s	remaining: 3.72s
171:	learn: 13.3431787	total: 4.96s	remaining: 3.69s
172:	learn: 13.2661742	total: 4.99s	remaining: 3.66s
173:	learn: 13.2029526	total: 5.01s	remaining: 3.63s
174:	learn: 13.1457507	total: 5.04s	remaining: 3.6s
175:	learn: 13.0041277	total: 5.06s	remaining: 3.57s
176:	learn: 12.9565895	total: 5.09s	remaining: 3.54s
177:	learn: 12.8225368	total: 5.12s	remaining: 3.51s
178:	learn: 12.8073526	total: 5.15s	remaining: 3.48s
179:	learn: 12.7432577	total: 5.17s	remaining: 3.45s
180:	learn: 12.6894062	total: 5.2s	remaining: 3.42s
181:	learn: 12.6115430	total: 5.22s	remaining: 3.39s
182:	learn: 12.4884510	total: 5.25s	remaining: 3.35s
183:	learn: 12.4670071	total: 5.27s	remaining: 3.32s
184:	learn: 12.3586840	total: 5.3s	remaining: 3.3s
185:	learn: 12.3314465	total: 5.33s	remaining: 3.27s
186:	learn: 12.2898986	total: 5.36s	remaining: 3.24s
187:	learn: 12.2444848	total: 5.38s	remaining: 3.21s
188:	learn: 12.1286912	total: 5.41s	remaining: 3.18s
189:	learn: 12.0913051	total: 5.44s	remaining: 3.15s
190:	learn: 12.0412425	total: 5.46s	remaining: 3.12s
191:	learn: 11.9806235	total: 5.49s	remaining: 3.09s
192:	learn: 11.9166183	total: 5.52s	remaining: 3.06s
193:	learn: 11.8779218	total: 5.54s	remaining: 3.03s
194:	learn: 11.8179532	total: 5.57s	remaining: 3s
195:	learn: 11.7640239	total: 5.59s	remaining: 2.97s
196:	learn: 11.7071262	total: 5.62s	remaining: 2.94s
197:	learn: 11.6536293	total: 5.64s	remaining: 2.91s
198:	learn: 11.6065018	total: 5.67s	remaining: 2.88s
199:	learn: 11.5499607	total: 5.7s	remaining: 2.85s
200:	learn: 11.5040185	total: 5.72s	remaining: 2.82s
201:	learn: 11.4742990	total: 5.76s	remaining: 2.79s
202:	learn: 11.4464612	total: 5.78s	remaining: 2.76s
203:	learn: 11.3967352	total: 5.81s	remaining: 2.73s
204:	learn: 11.3773630	total: 5.83s	remaining: 2.7s
205:	learn: 11.3369897	total: 5.86s	remaining: 2.67s
206:	learn: 11.2785610	total: 5.89s	remaining: 2.64s
207:	learn: 11.2570903	total: 5.91s	remaining: 2.62s
208:	learn: 11.1959469	total: 5.94s	remaining: 2.59s
209:	learn: 11.1698664	total: 5.97s	remaining: 2.56s
210:	learn: 11.1452100	total: 6s	remaining: 2.53s
211:	learn: 11.1074115	total: 6.02s	remaining: 2.5s
212:	learn: 11.0813756	total: 6.05s	remaining: 2.47s
213:	learn: 11.0519307	total: 6.07s	remaining: 2.44s
214:	learn: 11.0155685	total: 6.1s	remaining: 2.41s
215:	learn: 10.9871406	total: 6.12s	remaining: 2.38s
216:	learn: 10.9693068	total: 6.15s	remaining: 2.35s
217:	learn: 10.9576767	total: 6.18s	remaining: 2.33s
218:	learn: 10.8594320	total: 6.21s	remaining: 2.3s
219:	learn: 10.8272954	total: 6.24s	remaining: 2.27s
220:	learn: 10.8038867	total: 6.26s	remaining: 2.24s
221:	learn: 10.7088853	total: 6.29s	remaining: 2.21s
222:	learn: 10.6887411	total: 6.32s	remaining: 2.18s
223:	learn: 10.6649574	total: 6.34s	remaining: 2.15s
224:	learn: 10.6194908	total: 6.37s	remaining: 2.12s
225:	learn: 10.5685522	total: 6.4s	remaining: 2.1s
226:	learn: 10.5537435	total: 6.42s	remaining: 2.07s
227:	learn: 10.5121708	total: 6.45s	remaining: 2.04s
228:	learn: 10.4691452	total: 6.47s	remaining: 2.01s
229:	learn: 10.4484099	total: 6.5s	remaining: 1.98s
230:	learn: 10.4377373	total: 6.53s	remaining: 1.95s
231:	learn: 10.4270601	total: 6.55s	remaining: 1.92s
232:	learn: 10.4051968	total: 6.58s	remaining: 1.89s
233:	learn: 10.3483300	total: 6.61s	remaining: 1.86s
234:	learn: 10.2865834	total: 6.64s	remaining: 1.84s
235:	learn: 10.2610314	total: 6.66s	remaining: 1.81s
236:	learn: 10.2388990	total: 6.69s	remaining: 1.78s
237:	learn: 10.1965393	total: 6.71s	remaining: 1.75s
238:	learn: 10.1800849	total: 6.74s	remaining: 1.72s
239:	learn: 10.1604400	total: 6.76s	remaining: 1.69s
240:	learn: 10.1302668	total: 6.79s	remaining: 1.66s
241:	learn: 10.1241338	total: 6.82s	remaining: 1.63s
242:	learn: 10.0835529	total: 6.84s	remaining: 1.6s
243:	learn: 10.0154507	total: 6.87s	remaining: 1.57s
244:	learn: 10.0024905	total: 6.89s	remaining: 1.55s
245:	learn: 9.9669119	total: 6.91s	remaining: 1.52s
246:	learn: 9.9325711	total: 6.94s	remaining: 1.49s
247:	learn: 9.8981230	total: 6.96s	remaining: 1.46s
248:	learn: 9.8660554	total: 6.99s	remaining: 1.43s
249:	learn: 9.8506587	total: 7.02s	remaining: 1.4s
250:	learn: 9.8080866	total: 7.04s	remaining: 1.38s
251:	learn: 9.7747070	total: 7.07s	remaining: 1.35s
252:	learn: 9.7589720	total: 7.09s	remaining: 1.32s
253:	learn: 9.7308058	total: 7.12s	remaining: 1.29s
254:	learn: 9.7157610	total: 7.14s	remaining: 1.26s
255:	learn: 9.6979675	total: 7.17s	remaining: 1.23s
256:	learn: 9.6657809	total: 7.19s	remaining: 1.2s
257:	learn: 9.6522187	total: 7.22s	remaining: 1.18s
258:	learn: 9.6375034	total: 7.25s	remaining: 1.15s
259:	learn: 9.6023653	total: 7.28s	remaining: 1.12s
260:	learn: 9.5760582	total: 7.3s	remaining: 1.09s
261:	learn: 9.5288913	total: 7.32s	remaining: 1.06s
262:	learn: 9.5151986	total: 7.35s	remaining: 1.03s
263:	learn: 9.4814503	total: 7.37s	remaining: 1s
264:	learn: 9.4635791	total: 7.39s	remaining: 977ms
265:	learn: 9.4364856	total: 7.42s	remaining: 948ms
266:	learn: 9.4013439	total: 7.44s	remaining: 920ms
267:	learn: 9.3638018	total: 7.48s	remaining: 893ms
268:	learn: 9.3558171	total: 7.5s	remaining: 865ms
269:	learn: 9.3065751	total: 7.53s	remaining: 836ms
270:	learn: 9.2964146	total: 7.55s	remaining: 808ms
271:	learn: 9.2625670	total: 7.58s	remaining: 780ms
272:	learn: 9.2356760	total: 7.6s	remaining: 752ms
273:	learn: 9.2046550	total: 7.63s	remaining: 724ms
274:	learn: 9.1931591	total: 7.65s	remaining: 696ms
275:	learn: 9.1692863	total: 7.68s	remaining: 668ms
276:	learn: 9.1358490	total: 7.71s	remaining: 640ms
277:	learn: 9.1007511	total: 7.73s	remaining: 612ms
278:	learn: 9.0946236	total: 7.75s	remaining: 584ms
279:	learn: 9.0731587	total: 7.78s	remaining: 556ms
280:	learn: 9.0466446	total: 7.8s	remaining: 528ms
281:	learn: 9.0262027	total: 7.83s	remaining: 500ms
282:	learn: 8.9958148	total: 7.85s	remaining: 472ms
283:	learn: 8.9904119	total: 7.89s	remaining: 445ms
284:	learn: 8.9723234	total: 7.92s	remaining: 417ms
285:	learn: 8.9368256	total: 7.94s	remaining: 389ms
286:	learn: 8.8960967	total: 7.96s	remaining: 361ms
287:	learn: 8.8813638	total: 7.99s	remaining: 333ms
288:	learn: 8.8766445	total: 8.01s	remaining: 305ms
289:	learn: 8.8483604	total: 8.04s	remaining: 277ms
290:	learn: 8.8220559	total: 8.07s	remaining: 250ms
291:	learn: 8.7918301	total: 8.09s	remaining: 222ms
292:	learn: 8.7574504	total: 8.12s	remaining: 194ms
293:	learn: 8.7490725	total: 8.14s	remaining: 166ms
294:	learn: 8.7293377	total: 8.18s	remaining: 139ms
295:	learn: 8.7202847	total: 8.21s	remaining: 111ms
296:	learn: 8.6918465	total: 8.23s	remaining: 83.2ms
297:	learn: 8.6665828	total: 8.26s	remaining: 55.5ms
298:	learn: 8.6541683	total: 8.3s	remaining: 27.8ms
299:	learn: 8.6494740	total: 8.33s	remaining: 0us
0:	learn: 46.8012202	total: 27.3ms	remaining: 8.15s
1:	learn: 46.0273912	total: 54.1ms	remaining: 8.06s
2:	learn: 45.3733493	total: 82ms	remaining: 8.12s
3:	learn: 44.7109449	total: 126ms	remaining: 9.32s
4:	learn: 43.9430491	total: 153ms	remaining: 9.05s
5:	learn: 43.2536304	total: 181ms	remaining: 8.86s
6:	learn: 42.5901366	total: 208ms	remaining: 8.7s
7:	learn: 42.0362841	total: 234ms	remaining: 8.54s
8:	learn: 41.4655769	total: 261ms	remaining: 8.44s
9:	learn: 40.7617374	total: 289ms	remaining: 8.37s
10:	learn: 40.1467911	total: 318ms	remaining: 8.35s
11:	learn: 39.5322002	total: 363ms	remaining: 8.71s
12:	learn: 39.2369496	total: 391ms	remaining: 8.64s
13:	learn: 38.8730340	total: 419ms	remaining: 8.55s
14:	learn: 38.4661592	total: 448ms	remaining: 8.51s
15:	learn: 37.8483750	total: 451ms	remaining: 8.01s
16:	learn: 37.2598064	total: 478ms	remaining: 7.95s
17:	learn: 36.6878531	total: 505ms	remaining: 7.91s
18:	learn: 36.1765878	total: 533ms	remaining: 7.88s
19:	learn: 35.6111928	total: 566ms	remaining: 7.93s
20:	learn: 35.2113326	total: 595ms	remaining: 7.91s
21:	learn: 34.5754750	total: 632ms	remaining: 7.98s
22:	learn: 34.0844300	total: 658ms	remaining: 7.93s
23:	learn: 33.6434482	total: 685ms	remaining: 7.88s
24:	learn: 33.3578327	total: 711ms	remaining: 7.82s
25:	learn: 32.9883035	total: 738ms	remaining: 7.78s
26:	learn: 32.6325583	total: 767ms	remaining: 7.75s
27:	learn: 32.1886629	total: 807ms	remaining: 7.83s
28:	learn: 31.8587417	total: 833ms	remaining: 7.79s
29:	learn: 31.4999044	total: 867ms	remaining: 7.8s
30:	learn: 31.1903935	total: 895ms	remaining: 7.76s
31:	learn: 30.8877054	total: 921ms	remaining: 7.72s
32:	learn: 30.6421813	total: 948ms	remaining: 7.67s
33:	learn: 30.3687742	total: 976ms	remaining: 7.63s
34:	learn: 30.0972944	total: 1s	remaining: 7.61s
35:	learn: 29.6026977	total: 1.03s	remaining: 7.59s
36:	learn: 29.3412855	total: 1.06s	remaining: 7.55s
37:	learn: 29.0138869	total: 1.1s	remaining: 7.56s
38:	learn: 28.6424952	total: 1.12s	remaining: 7.52s
39:	learn: 28.4408572	total: 1.15s	remaining: 7.48s
40:	learn: 28.0554435	total: 1.18s	remaining: 7.44s
41:	learn: 27.8389274	total: 1.21s	remaining: 7.42s
42:	learn: 27.5339353	total: 1.25s	remaining: 7.45s
43:	learn: 27.3640594	total: 1.27s	remaining: 7.41s
44:	learn: 27.1330981	total: 1.3s	remaining: 7.37s
45:	learn: 26.9507132	total: 1.33s	remaining: 7.34s
46:	learn: 26.7285619	total: 1.36s	remaining: 7.33s
47:	learn: 26.3518482	total: 1.39s	remaining: 7.29s
48:	learn: 26.0543584	total: 1.42s	remaining: 7.26s
49:	learn: 25.8251945	total: 1.45s	remaining: 7.25s
50:	learn: 25.5436752	total: 1.48s	remaining: 7.21s
51:	learn: 25.3250332	total: 1.5s	remaining: 7.17s
52:	learn: 25.1688504	total: 1.53s	remaining: 7.13s
53:	learn: 24.9813407	total: 1.56s	remaining: 7.09s
54:	learn: 24.7384847	total: 1.59s	remaining: 7.09s
55:	learn: 24.5163023	total: 1.62s	remaining: 7.05s
56:	learn: 24.2729235	total: 1.65s	remaining: 7.05s
57:	learn: 24.1318061	total: 1.68s	remaining: 7.02s
58:	learn: 23.9701754	total: 1.71s	remaining: 6.99s
59:	learn: 23.8112940	total: 1.74s	remaining: 6.95s
60:	learn: 23.6723877	total: 1.77s	remaining: 6.92s
61:	learn: 23.5289336	total: 1.79s	remaining: 6.88s
62:	learn: 23.4106679	total: 1.83s	remaining: 6.88s
63:	learn: 23.2082280	total: 1.86s	remaining: 6.86s
64:	learn: 23.0959607	total: 1.89s	remaining: 6.83s
65:	learn: 22.9890902	total: 1.92s	remaining: 6.8s
66:	learn: 22.8516666	total: 1.94s	remaining: 6.76s
67:	learn: 22.7282575	total: 1.97s	remaining: 6.72s
68:	learn: 22.5991392	total: 2s	remaining: 6.68s
69:	learn: 22.3825348	total: 2.02s	remaining: 6.65s
70:	learn: 22.2284455	total: 2.05s	remaining: 6.62s
71:	learn: 22.0431735	total: 2.1s	remaining: 6.63s
72:	learn: 21.8930406	total: 2.12s	remaining: 6.6s
73:	learn: 21.7459390	total: 2.15s	remaining: 6.57s
74:	learn: 21.6277633	total: 2.18s	remaining: 6.54s
75:	learn: 21.4144047	total: 2.21s	remaining: 6.5s
76:	learn: 21.2747440	total: 2.23s	remaining: 6.47s
77:	learn: 21.1153657	total: 2.26s	remaining: 6.43s
78:	learn: 21.0445825	total: 2.29s	remaining: 6.4s
79:	learn: 20.9348935	total: 2.33s	remaining: 6.41s
80:	learn: 20.7685253	total: 2.36s	remaining: 6.37s
81:	learn: 20.6539889	total: 2.38s	remaining: 6.34s
82:	learn: 20.4538530	total: 2.41s	remaining: 6.31s
83:	learn: 20.3461251	total: 2.44s	remaining: 6.28s
84:	learn: 20.1992221	total: 2.47s	remaining: 6.24s
85:	learn: 20.0842190	total: 2.5s	remaining: 6.21s
86:	learn: 19.9903250	total: 2.53s	remaining: 6.19s
87:	learn: 19.9084171	total: 2.56s	remaining: 6.16s
88:	learn: 19.7929727	total: 2.6s	remaining: 6.16s
89:	learn: 19.7205230	total: 2.62s	remaining: 6.12s
90:	learn: 19.6075486	total: 2.65s	remaining: 6.09s
91:	learn: 19.5309964	total: 2.68s	remaining: 6.06s
92:	learn: 19.4363684	total: 2.71s	remaining: 6.02s
93:	learn: 19.3378127	total: 2.73s	remaining: 5.99s
94:	learn: 19.2292896	total: 2.76s	remaining: 5.96s
95:	learn: 19.1011370	total: 2.79s	remaining: 5.93s
96:	learn: 18.9974491	total: 2.83s	remaining: 5.92s
97:	learn: 18.8636531	total: 2.85s	remaining: 5.89s
98:	learn: 18.7739910	total: 2.88s	remaining: 5.86s
99:	learn: 18.6948867	total: 2.91s	remaining: 5.82s
100:	learn: 18.5747433	total: 2.94s	remaining: 5.79s
101:	learn: 18.5307499	total: 2.96s	remaining: 5.76s
102:	learn: 18.4248127	total: 3s	remaining: 5.74s
103:	learn: 18.3301727	total: 3.03s	remaining: 5.71s
104:	learn: 18.2579998	total: 3.07s	remaining: 5.7s
105:	learn: 18.1614231	total: 3.1s	remaining: 5.67s
106:	learn: 18.0748134	total: 3.12s	remaining: 5.63s
107:	learn: 17.9862898	total: 3.15s	remaining: 5.6s
108:	learn: 17.9368507	total: 3.18s	remaining: 5.57s
109:	learn: 17.8058561	total: 3.21s	remaining: 5.55s
110:	learn: 17.7371383	total: 3.24s	remaining: 5.52s
111:	learn: 17.6303538	total: 3.27s	remaining: 5.49s
112:	learn: 17.5449989	total: 3.29s	remaining: 5.45s
113:	learn: 17.4776008	total: 3.33s	remaining: 5.43s
114:	learn: 17.3648029	total: 3.35s	remaining: 5.4s
115:	learn: 17.2618916	total: 3.38s	remaining: 5.37s
116:	learn: 17.2111539	total: 3.41s	remaining: 5.33s
117:	learn: 17.1018870	total: 3.45s	remaining: 5.32s
118:	learn: 17.0024931	total: 3.48s	remaining: 5.29s
119:	learn: 16.9743860	total: 3.5s	remaining: 5.25s
120:	learn: 16.9130305	total: 3.53s	remaining: 5.22s
121:	learn: 16.8016712	total: 3.56s	remaining: 5.2s
122:	learn: 16.7261518	total: 3.59s	remaining: 5.17s
123:	learn: 16.6593504	total: 3.62s	remaining: 5.13s
124:	learn: 16.5732663	total: 3.64s	remaining: 5.1s
125:	learn: 16.4947922	total: 3.68s	remaining: 5.08s
126:	learn: 16.3991688	total: 3.7s	remaining: 5.05s
127:	learn: 16.3086895	total: 3.73s	remaining: 5.01s
128:	learn: 16.2101210	total: 3.76s	remaining: 4.98s
129:	learn: 16.1541963	total: 3.79s	remaining: 4.96s
130:	learn: 16.0790764	total: 3.82s	remaining: 4.93s
131:	learn: 16.0139723	total: 3.85s	remaining: 4.9s
132:	learn: 15.8906448	total: 3.88s	remaining: 4.88s
133:	learn: 15.8064421	total: 3.91s	remaining: 4.85s
134:	learn: 15.7265305	total: 3.94s	remaining: 4.82s
135:	learn: 15.6621677	total: 3.97s	remaining: 4.79s
136:	learn: 15.5922471	total: 4s	remaining: 4.76s
137:	learn: 15.5550517	total: 4.03s	remaining: 4.73s
138:	learn: 15.5278059	total: 4.07s	remaining: 4.71s
139:	learn: 15.4494043	total: 4.1s	remaining: 4.68s
140:	learn: 15.3765788	total: 4.12s	remaining: 4.65s
141:	learn: 15.3158598	total: 4.15s	remaining: 4.62s
142:	learn: 15.2121980	total: 4.18s	remaining: 4.58s
143:	learn: 15.0893974	total: 4.2s	remaining: 4.55s
144:	learn: 15.0074795	total: 4.23s	remaining: 4.52s
145:	learn: 14.9489574	total: 4.26s	remaining: 4.49s
146:	learn: 14.9258844	total: 4.3s	remaining: 4.48s
147:	learn: 14.8471123	total: 4.33s	remaining: 4.45s
148:	learn: 14.7745818	total: 4.36s	remaining: 4.42s
149:	learn: 14.6905246	total: 4.39s	remaining: 4.39s
150:	learn: 14.5873644	total: 4.41s	remaining: 4.35s
151:	learn: 14.5337902	total: 4.44s	remaining: 4.32s
152:	learn: 14.4749040	total: 4.46s	remaining: 4.29s
153:	learn: 14.3890824	total: 4.5s	remaining: 4.26s
154:	learn: 14.3259009	total: 4.54s	remaining: 4.24s
155:	learn: 14.2113192	total: 4.56s	remaining: 4.21s
156:	learn: 14.1718909	total: 4.59s	remaining: 4.18s
157:	learn: 14.1110356	total: 4.62s	remaining: 4.15s
158:	learn: 14.0362591	total: 4.64s	remaining: 4.12s
159:	learn: 13.9188238	total: 4.67s	remaining: 4.09s
160:	learn: 13.7740452	total: 4.7s	remaining: 4.06s
161:	learn: 13.7228642	total: 4.73s	remaining: 4.03s
162:	learn: 13.6648536	total: 4.76s	remaining: 4s
163:	learn: 13.5724722	total: 4.8s	remaining: 3.98s
164:	learn: 13.5141405	total: 4.83s	remaining: 3.95s
165:	learn: 13.4267305	total: 4.86s	remaining: 3.92s
166:	learn: 13.3370179	total: 4.88s	remaining: 3.89s
167:	learn: 13.2503127	total: 4.91s	remaining: 3.86s
168:	learn: 13.1743816	total: 4.93s	remaining: 3.83s
169:	learn: 13.1087726	total: 4.97s	remaining: 3.8s
170:	learn: 13.0426739	total: 5s	remaining: 3.77s
171:	learn: 12.9968745	total: 5.03s	remaining: 3.74s
172:	learn: 12.9301422	total: 5.06s	remaining: 3.71s
173:	learn: 12.9104864	total: 5.08s	remaining: 3.68s
174:	learn: 12.8199271	total: 5.11s	remaining: 3.65s
175:	learn: 12.7796485	total: 5.14s	remaining: 3.62s
176:	learn: 12.6883779	total: 5.18s	remaining: 3.6s
177:	learn: 12.5869619	total: 5.21s	remaining: 3.57s
178:	learn: 12.5397815	total: 5.23s	remaining: 3.54s
179:	learn: 12.4692676	total: 5.26s	remaining: 3.51s
180:	learn: 12.4433237	total: 5.3s	remaining: 3.48s
181:	learn: 12.3985342	total: 5.33s	remaining: 3.45s
182:	learn: 12.3635932	total: 5.35s	remaining: 3.42s
183:	learn: 12.2512719	total: 5.38s	remaining: 3.39s
184:	learn: 12.1558647	total: 5.41s	remaining: 3.37s
185:	learn: 12.1369112	total: 5.44s	remaining: 3.33s
186:	learn: 12.0798700	total: 5.47s	remaining: 3.3s
187:	learn: 12.0010668	total: 5.49s	remaining: 3.27s
188:	learn: 11.9442666	total: 5.53s	remaining: 3.25s
189:	learn: 11.8628888	total: 5.55s	remaining: 3.21s
190:	learn: 11.7616769	total: 5.58s	remaining: 3.18s
191:	learn: 11.6699926	total: 5.62s	remaining: 3.16s
192:	learn: 11.6392816	total: 5.64s	remaining: 3.13s
193:	learn: 11.5955244	total: 5.67s	remaining: 3.1s
194:	learn: 11.5772160	total: 5.7s	remaining: 3.07s
195:	learn: 11.5465581	total: 5.73s	remaining: 3.04s
196:	learn: 11.4564641	total: 5.77s	remaining: 3.01s
197:	learn: 11.3978031	total: 5.79s	remaining: 2.98s
198:	learn: 11.3460158	total: 5.82s	remaining: 2.96s
199:	learn: 11.2627720	total: 5.86s	remaining: 2.93s
200:	learn: 11.2162738	total: 5.88s	remaining: 2.9s
201:	learn: 11.1905894	total: 5.91s	remaining: 2.87s
202:	learn: 11.1639946	total: 5.94s	remaining: 2.84s
203:	learn: 11.0885906	total: 5.97s	remaining: 2.81s
204:	learn: 11.0284516	total: 5.99s	remaining: 2.78s
205:	learn: 10.9731416	total: 6.03s	remaining: 2.75s
206:	learn: 10.9378121	total: 6.07s	remaining: 2.73s
207:	learn: 10.8935640	total: 6.09s	remaining: 2.69s
208:	learn: 10.8572901	total: 6.12s	remaining: 2.67s
209:	learn: 10.8037961	total: 6.15s	remaining: 2.64s
210:	learn: 10.7458107	total: 6.18s	remaining: 2.61s
211:	learn: 10.7082447	total: 6.21s	remaining: 2.58s
212:	learn: 10.6599173	total: 6.24s	remaining: 2.55s
213:	learn: 10.6028419	total: 6.28s	remaining: 2.52s
214:	learn: 10.5627192	total: 6.31s	remaining: 2.49s
215:	learn: 10.5213774	total: 6.33s	remaining: 2.46s
216:	learn: 10.4732429	total: 6.36s	remaining: 2.43s
217:	learn: 10.4188551	total: 6.39s	remaining: 2.4s
218:	learn: 10.3740622	total: 6.41s	remaining: 2.37s
219:	learn: 10.3399349	total: 6.44s	remaining: 2.34s
220:	learn: 10.2824635	total: 6.47s	remaining: 2.31s
221:	learn: 10.2458277	total: 6.51s	remaining: 2.29s
222:	learn: 10.2341252	total: 6.54s	remaining: 2.26s
223:	learn: 10.1392287	total: 6.56s	remaining: 2.23s
224:	learn: 10.1088124	total: 6.59s	remaining: 2.2s
225:	learn: 10.0471375	total: 6.62s	remaining: 2.17s
226:	learn: 9.9852333	total: 6.65s	remaining: 2.14s
227:	learn: 9.9292294	total: 6.67s	remaining: 2.11s
228:	learn: 9.9015453	total: 6.71s	remaining: 2.08s
229:	learn: 9.8905067	total: 6.74s	remaining: 2.05s
230:	learn: 9.8507503	total: 6.77s	remaining: 2.02s
231:	learn: 9.7964411	total: 6.8s	remaining: 1.99s
232:	learn: 9.7540779	total: 6.82s	remaining: 1.96s
233:	learn: 9.7051776	total: 6.85s	remaining: 1.93s
234:	learn: 9.6539147	total: 6.88s	remaining: 1.9s
235:	learn: 9.6073112	total: 6.91s	remaining: 1.87s
236:	learn: 9.5975483	total: 6.94s	remaining: 1.84s
237:	learn: 9.5489561	total: 6.97s	remaining: 1.81s
238:	learn: 9.5160122	total: 7s	remaining: 1.79s
239:	learn: 9.4620416	total: 7.03s	remaining: 1.76s
240:	learn: 9.4463510	total: 7.06s	remaining: 1.73s
241:	learn: 9.4389200	total: 7.09s	remaining: 1.7s
242:	learn: 9.4078400	total: 7.12s	remaining: 1.67s
243:	learn: 9.3866265	total: 7.15s	remaining: 1.64s
244:	learn: 9.3473501	total: 7.18s	remaining: 1.61s
245:	learn: 9.2861016	total: 7.2s	remaining: 1.58s
246:	learn: 9.2734740	total: 7.23s	remaining: 1.55s
247:	learn: 9.2343522	total: 7.26s	remaining: 1.52s
248:	learn: 9.2223405	total: 7.29s	remaining: 1.49s
249:	learn: 9.2140074	total: 7.32s	remaining: 1.46s
250:	learn: 9.2046313	total: 7.34s	remaining: 1.43s
251:	learn: 9.1705343	total: 7.38s	remaining: 1.41s
252:	learn: 9.1635400	total: 7.41s	remaining: 1.38s
253:	learn: 9.1201103	total: 7.44s	remaining: 1.35s
254:	learn: 9.0874222	total: 7.46s	remaining: 1.32s
255:	learn: 9.0546404	total: 7.5s	remaining: 1.29s
256:	learn: 9.0294210	total: 7.53s	remaining: 1.26s
257:	learn: 8.9918549	total: 7.55s	remaining: 1.23s
258:	learn: 8.9860821	total: 7.58s	remaining: 1.2s
259:	learn: 8.9445721	total: 7.62s	remaining: 1.17s
260:	learn: 8.9204013	total: 7.64s	remaining: 1.14s
261:	learn: 8.8802796	total: 7.67s	remaining: 1.11s
262:	learn: 8.8319848	total: 7.7s	remaining: 1.08s
263:	learn: 8.8040786	total: 7.73s	remaining: 1.05s
264:	learn: 8.7674300	total: 7.76s	remaining: 1.02s
265:	learn: 8.7486932	total: 7.78s	remaining: 995ms
266:	learn: 8.7223059	total: 7.81s	remaining: 965ms
267:	learn: 8.7108992	total: 7.85s	remaining: 937ms
268:	learn: 8.7026068	total: 7.88s	remaining: 908ms
269:	learn: 8.6836280	total: 7.9s	remaining: 878ms
270:	learn: 8.6467938	total: 7.93s	remaining: 849ms
271:	learn: 8.6111555	total: 7.96s	remaining: 819ms
272:	learn: 8.5824973	total: 7.99s	remaining: 790ms
273:	learn: 8.5682745	total: 8.02s	remaining: 761ms
274:	learn: 8.5416779	total: 8.04s	remaining: 731ms
275:	learn: 8.5066950	total: 8.08s	remaining: 703ms
276:	learn: 8.4970713	total: 8.11s	remaining: 673ms
277:	learn: 8.4596116	total: 8.13s	remaining: 644ms
278:	learn: 8.4475857	total: 8.16s	remaining: 614ms
279:	learn: 8.4267482	total: 8.19s	remaining: 585ms
280:	learn: 8.4095246	total: 8.22s	remaining: 556ms
281:	learn: 8.3674941	total: 8.25s	remaining: 527ms
282:	learn: 8.3151248	total: 8.28s	remaining: 497ms
283:	learn: 8.2823195	total: 8.31s	remaining: 468ms
284:	learn: 8.2593854	total: 8.34s	remaining: 439ms
285:	learn: 8.2331325	total: 8.37s	remaining: 410ms
286:	learn: 8.1912221	total: 8.4s	remaining: 380ms
287:	learn: 8.1688810	total: 8.42s	remaining: 351ms
288:	learn: 8.1497193	total: 8.46s	remaining: 322ms
289:	learn: 8.1293205	total: 8.49s	remaining: 293ms
290:	learn: 8.1107539	total: 8.52s	remaining: 264ms
291:	learn: 8.0849956	total: 8.55s	remaining: 234ms
292:	learn: 8.0440544	total: 8.57s	remaining: 205ms
293:	learn: 8.0183325	total: 8.6s	remaining: 176ms
294:	learn: 7.9783905	total: 8.63s	remaining: 146ms
295:	learn: 7.9644989	total: 8.65s	remaining: 117ms
296:	learn: 7.9392598	total: 8.68s	remaining: 87.7ms
297:	learn: 7.9167538	total: 8.71s	remaining: 58.5ms
298:	learn: 7.8751558	total: 8.75s	remaining: 29.3ms
299:	learn: 7.8630471	total: 8.78s	remaining: 0us
0:	learn: 27.6506730	total: 5.34ms	remaining: 529ms
1:	learn: 27.1638793	total: 9.69ms	remaining: 475ms
2:	learn: 26.8000665	total: 14.3ms	remaining: 464ms
3:	learn: 26.4256132	total: 18.6ms	remaining: 446ms
4:	learn: 26.0088351	total: 23ms	remaining: 437ms
5:	learn: 25.7558298	total: 27.2ms	remaining: 426ms
6:	learn: 25.3380711	total: 31.9ms	remaining: 424ms
7:	learn: 25.0571611	total: 36.4ms	remaining: 419ms
8:	learn: 24.6790148	total: 41ms	remaining: 415ms
9:	learn: 24.3600941	total: 45.3ms	remaining: 408ms
10:	learn: 24.1105667	total: 50.1ms	remaining: 405ms
11:	learn: 23.7736542	total: 54.8ms	remaining: 402ms
12:	learn: 23.5824429	total: 59.7ms	remaining: 400ms
13:	learn: 23.2658303	total: 64.4ms	remaining: 396ms
14:	learn: 23.0061886	total: 69.1ms	remaining: 391ms
15:	learn: 22.8060389	total: 73.9ms	remaining: 388ms
16:	learn: 22.5899735	total: 82.5ms	remaining: 403ms
17:	learn: 22.3625048	total: 89.5ms	remaining: 408ms
18:	learn: 22.0706477	total: 96.7ms	remaining: 412ms
19:	learn: 21.8739394	total: 102ms	remaining: 407ms
20:	learn: 21.6143650	total: 108ms	remaining: 406ms
21:	learn: 21.4571623	total: 113ms	remaining: 399ms
22:	learn: 21.2395769	total: 117ms	remaining: 393ms
23:	learn: 20.9801795	total: 122ms	remaining: 386ms
24:	learn: 20.8036808	total: 126ms	remaining: 379ms
25:	learn: 20.6387539	total: 131ms	remaining: 373ms
26:	learn: 20.4401427	total: 136ms	remaining: 367ms
27:	learn: 20.2879575	total: 140ms	remaining: 360ms
28:	learn: 20.0538664	total: 144ms	remaining: 353ms
29:	learn: 19.8363102	total: 149ms	remaining: 348ms
30:	learn: 19.7015446	total: 153ms	remaining: 342ms
31:	learn: 19.5483114	total: 158ms	remaining: 336ms
32:	learn: 19.4163053	total: 163ms	remaining: 331ms
33:	learn: 19.2880625	total: 168ms	remaining: 326ms
34:	learn: 19.1303389	total: 173ms	remaining: 320ms
35:	learn: 18.9237448	total: 177ms	remaining: 315ms
36:	learn: 18.8142925	total: 182ms	remaining: 310ms
37:	learn: 18.6994696	total: 187ms	remaining: 305ms
38:	learn: 18.5629211	total: 192ms	remaining: 300ms
39:	learn: 18.4600917	total: 196ms	remaining: 295ms
40:	learn: 18.3567139	total: 202ms	remaining: 290ms
41:	learn: 18.2120527	total: 206ms	remaining: 285ms
42:	learn: 18.0688062	total: 211ms	remaining: 280ms
43:	learn: 17.9250181	total: 216ms	remaining: 275ms
44:	learn: 17.8399138	total: 221ms	remaining: 270ms
45:	learn: 17.6720713	total: 226ms	remaining: 265ms
46:	learn: 17.5273091	total: 231ms	remaining: 261ms
47:	learn: 17.4232814	total: 236ms	remaining: 256ms
48:	learn: 17.2957579	total: 241ms	remaining: 251ms
49:	learn: 17.1892874	total: 246ms	remaining: 246ms
50:	learn: 17.0490355	total: 251ms	remaining: 242ms
51:	learn: 16.9666450	total: 257ms	remaining: 237ms
52:	learn: 16.8600056	total: 262ms	remaining: 232ms
53:	learn: 16.7542588	total: 277ms	remaining: 236ms
54:	learn: 16.6316077	total: 285ms	remaining: 233ms
55:	learn: 16.5588112	total: 295ms	remaining: 232ms
56:	learn: 16.5010186	total: 302ms	remaining: 228ms
57:	learn: 16.4081540	total: 309ms	remaining: 224ms
58:	learn: 16.3040451	total: 315ms	remaining: 219ms
59:	learn: 16.1890564	total: 321ms	remaining: 214ms
60:	learn: 16.0977103	total: 327ms	remaining: 209ms
61:	learn: 15.9627607	total: 332ms	remaining: 204ms
62:	learn: 15.9022248	total: 339ms	remaining: 199ms
63:	learn: 15.8151881	total: 344ms	remaining: 193ms
64:	learn: 15.7353125	total: 349ms	remaining: 188ms
65:	learn: 15.6312897	total: 355ms	remaining: 183ms
66:	learn: 15.5330927	total: 360ms	remaining: 177ms
67:	learn: 15.4698681	total: 366ms	remaining: 172ms
68:	learn: 15.4108571	total: 372ms	remaining: 167ms
69:	learn: 15.3492945	total: 376ms	remaining: 161ms
70:	learn: 15.3036540	total: 381ms	remaining: 156ms
71:	learn: 15.2390833	total: 386ms	remaining: 150ms
72:	learn: 15.1556327	total: 391ms	remaining: 145ms
73:	learn: 15.1016315	total: 396ms	remaining: 139ms
74:	learn: 15.0287076	total: 401ms	remaining: 134ms
75:	learn: 14.9530572	total: 406ms	remaining: 128ms
76:	learn: 14.8965517	total: 410ms	remaining: 123ms
77:	learn: 14.8125426	total: 415ms	remaining: 117ms
78:	learn: 14.7435359	total: 420ms	remaining: 112ms
79:	learn: 14.6963163	total: 425ms	remaining: 106ms
80:	learn: 14.6200060	total: 430ms	remaining: 101ms
81:	learn: 14.5707760	total: 435ms	remaining: 95.4ms
82:	learn: 14.5053651	total: 440ms	remaining: 90ms
83:	learn: 14.4115458	total: 445ms	remaining: 84.7ms
84:	learn: 14.3117159	total: 450ms	remaining: 79.3ms
85:	learn: 14.2511326	total: 455ms	remaining: 74.1ms
86:	learn: 14.1372486	total: 460ms	remaining: 68.8ms
87:	learn: 14.0992301	total: 466ms	remaining: 63.5ms
88:	learn: 14.0228331	total: 471ms	remaining: 58.2ms
89:	learn: 13.9249836	total: 479ms	remaining: 53.2ms
90:	learn: 13.8679364	total: 486ms	remaining: 48.1ms
91:	learn: 13.8405578	total: 494ms	remaining: 42.9ms
92:	learn: 13.7711325	total: 499ms	remaining: 37.5ms
93:	learn: 13.7357019	total: 505ms	remaining: 32.2ms
94:	learn: 13.6735271	total: 509ms	remaining: 26.8ms
95:	learn: 13.5682393	total: 514ms	remaining: 21.4ms
96:	learn: 13.5342610	total: 519ms	remaining: 16ms
97:	learn: 13.4710034	total: 524ms	remaining: 10.7ms
98:	learn: 13.4022402	total: 528ms	remaining: 5.33ms
99:	learn: 13.3351238	total: 533ms	remaining: 0us
0:	learn: 42.9181702	total: 5.05ms	remaining: 500ms
1:	learn: 42.0286736	total: 10.1ms	remaining: 494ms
2:	learn: 41.2764568	total: 14.9ms	remaining: 483ms
3:	learn: 40.4721918	total: 20ms	remaining: 480ms
4:	learn: 39.8518928	total: 25.1ms	remaining: 476ms
5:	learn: 39.2645479	total: 30.2ms	remaining: 474ms
6:	learn: 38.4453704	total: 35.5ms	remaining: 472ms
7:	learn: 37.7122059	total: 40.8ms	remaining: 470ms
8:	learn: 36.9185796	total: 46ms	remaining: 465ms
9:	learn: 36.1668427	total: 51.5ms	remaining: 464ms
10:	learn: 35.5639029	total: 56.8ms	remaining: 459ms
11:	learn: 34.7724193	total: 62.1ms	remaining: 455ms
12:	learn: 34.3053433	total: 67.4ms	remaining: 451ms
13:	learn: 33.6561327	total: 68.8ms	remaining: 423ms
14:	learn: 33.0134042	total: 74.3ms	remaining: 421ms
15:	learn: 32.4483300	total: 79.3ms	remaining: 416ms
16:	learn: 31.8581144	total: 84.5ms	remaining: 413ms
17:	learn: 31.2858301	total: 89.4ms	remaining: 407ms
18:	learn: 30.8483018	total: 94.6ms	remaining: 403ms
19:	learn: 30.4174622	total: 99.9ms	remaining: 400ms
20:	learn: 29.8994411	total: 108ms	remaining: 406ms
21:	learn: 29.5045355	total: 117ms	remaining: 413ms
22:	learn: 28.9923519	total: 127ms	remaining: 427ms
23:	learn: 28.4255717	total: 134ms	remaining: 424ms
24:	learn: 28.0283139	total: 141ms	remaining: 424ms
25:	learn: 27.7434814	total: 147ms	remaining: 418ms
26:	learn: 27.2770731	total: 152ms	remaining: 412ms
27:	learn: 26.8928270	total: 158ms	remaining: 407ms
28:	learn: 26.4282671	total: 164ms	remaining: 401ms
29:	learn: 26.0272764	total: 169ms	remaining: 395ms
30:	learn: 25.7579312	total: 175ms	remaining: 389ms
31:	learn: 25.4542434	total: 180ms	remaining: 383ms
32:	learn: 25.1232564	total: 186ms	remaining: 377ms
33:	learn: 24.8110795	total: 191ms	remaining: 370ms
34:	learn: 24.5077579	total: 196ms	remaining: 364ms
35:	learn: 24.1909000	total: 202ms	remaining: 359ms
36:	learn: 23.8719468	total: 207ms	remaining: 352ms
37:	learn: 23.5764366	total: 208ms	remaining: 340ms
38:	learn: 23.3468086	total: 213ms	remaining: 333ms
39:	learn: 23.0908771	total: 218ms	remaining: 326ms
40:	learn: 22.8580876	total: 223ms	remaining: 320ms
41:	learn: 22.6060825	total: 228ms	remaining: 314ms
42:	learn: 22.4125407	total: 232ms	remaining: 307ms
43:	learn: 22.1990617	total: 236ms	remaining: 301ms
44:	learn: 21.9716164	total: 241ms	remaining: 294ms
45:	learn: 21.8360935	total: 246ms	remaining: 288ms
46:	learn: 21.6169256	total: 250ms	remaining: 282ms
47:	learn: 21.4620612	total: 255ms	remaining: 276ms
48:	learn: 21.2894194	total: 260ms	remaining: 270ms
49:	learn: 21.1066266	total: 264ms	remaining: 264ms
50:	learn: 20.9484898	total: 268ms	remaining: 258ms
51:	learn: 20.7195338	total: 273ms	remaining: 252ms
52:	learn: 20.4899740	total: 279ms	remaining: 247ms
53:	learn: 20.3356583	total: 284ms	remaining: 242ms
54:	learn: 20.0754393	total: 289ms	remaining: 236ms
55:	learn: 19.9199159	total: 294ms	remaining: 231ms
56:	learn: 19.7761128	total: 300ms	remaining: 226ms
57:	learn: 19.6533060	total: 309ms	remaining: 224ms
58:	learn: 19.5113942	total: 316ms	remaining: 220ms
59:	learn: 19.3985022	total: 323ms	remaining: 215ms
60:	learn: 19.2683443	total: 328ms	remaining: 210ms
61:	learn: 19.1460824	total: 334ms	remaining: 205ms
62:	learn: 19.0042655	total: 339ms	remaining: 199ms
63:	learn: 18.8720873	total: 344ms	remaining: 193ms
64:	learn: 18.7183888	total: 349ms	remaining: 188ms
65:	learn: 18.5472360	total: 353ms	remaining: 182ms
66:	learn: 18.3976642	total: 358ms	remaining: 176ms
67:	learn: 18.2282851	total: 362ms	remaining: 171ms
68:	learn: 18.1469157	total: 367ms	remaining: 165ms
69:	learn: 18.0649494	total: 372ms	remaining: 159ms
70:	learn: 17.9485405	total: 376ms	remaining: 154ms
71:	learn: 17.8460261	total: 381ms	remaining: 148ms
72:	learn: 17.7679843	total: 385ms	remaining: 142ms
73:	learn: 17.5989290	total: 390ms	remaining: 137ms
74:	learn: 17.4381322	total: 394ms	remaining: 131ms
75:	learn: 17.3370886	total: 399ms	remaining: 126ms
76:	learn: 17.2675308	total: 404ms	remaining: 121ms
77:	learn: 17.1946430	total: 408ms	remaining: 115ms
78:	learn: 17.0923725	total: 413ms	remaining: 110ms
79:	learn: 17.0537265	total: 419ms	remaining: 105ms
80:	learn: 16.9456831	total: 423ms	remaining: 99.3ms
81:	learn: 16.8457353	total: 428ms	remaining: 93.9ms
82:	learn: 16.7469310	total: 432ms	remaining: 88.5ms
83:	learn: 16.6679953	total: 437ms	remaining: 83.2ms
84:	learn: 16.6274189	total: 441ms	remaining: 77.9ms
85:	learn: 16.5516530	total: 446ms	remaining: 72.5ms
86:	learn: 16.4886066	total: 450ms	remaining: 67.2ms
87:	learn: 16.3947859	total: 455ms	remaining: 62ms
88:	learn: 16.3406495	total: 459ms	remaining: 56.7ms
89:	learn: 16.3019195	total: 463ms	remaining: 51.5ms
90:	learn: 16.1860681	total: 468ms	remaining: 46.3ms
91:	learn: 16.1282812	total: 473ms	remaining: 41.1ms
92:	learn: 16.0303652	total: 478ms	remaining: 36ms
93:	learn: 15.9561692	total: 483ms	remaining: 30.8ms
94:	learn: 15.8733994	total: 487ms	remaining: 25.7ms
95:	learn: 15.8108833	total: 492ms	remaining: 20.5ms
96:	learn: 15.7606004	total: 498ms	remaining: 15.4ms
97:	learn: 15.6984664	total: 507ms	remaining: 10.3ms
98:	learn: 15.6223632	total: 514ms	remaining: 5.19ms
99:	learn: 15.5671136	total: 524ms	remaining: 0us
0:	learn: 46.4788614	total: 2.16ms	remaining: 214ms
1:	learn: 45.7608372	total: 7.26ms	remaining: 356ms
2:	learn: 44.8825004	total: 12.8ms	remaining: 415ms
3:	learn: 44.0362738	total: 18.2ms	remaining: 436ms
4:	learn: 43.2086374	total: 23.3ms	remaining: 443ms
5:	learn: 42.5835773	total: 28.3ms	remaining: 443ms
6:	learn: 41.9673269	total: 33.4ms	remaining: 443ms
7:	learn: 41.4748717	total: 38.3ms	remaining: 441ms
8:	learn: 40.7129183	total: 43.1ms	remaining: 436ms
9:	learn: 39.8900884	total: 48.1ms	remaining: 433ms
10:	learn: 39.4142193	total: 53ms	remaining: 429ms
11:	learn: 38.8645613	total: 58.1ms	remaining: 426ms
12:	learn: 38.2394731	total: 62.4ms	remaining: 418ms
13:	learn: 37.6834515	total: 66.7ms	remaining: 410ms
14:	learn: 37.0673507	total: 71.5ms	remaining: 405ms
15:	learn: 36.4728340	total: 76.1ms	remaining: 399ms
16:	learn: 36.0489086	total: 80.2ms	remaining: 391ms
17:	learn: 35.4744141	total: 84.5ms	remaining: 385ms
18:	learn: 35.0106021	total: 89.2ms	remaining: 380ms
19:	learn: 34.5586053	total: 93.9ms	remaining: 376ms
20:	learn: 34.1308223	total: 98.7ms	remaining: 371ms
21:	learn: 33.7701450	total: 104ms	remaining: 368ms
22:	learn: 33.4425444	total: 109ms	remaining: 364ms
23:	learn: 33.0296412	total: 114ms	remaining: 361ms
24:	learn: 32.6359803	total: 119ms	remaining: 357ms
25:	learn: 32.1846182	total: 124ms	remaining: 352ms
26:	learn: 31.7620230	total: 129ms	remaining: 348ms
27:	learn: 31.4669337	total: 137ms	remaining: 353ms
28:	learn: 31.0792062	total: 146ms	remaining: 358ms
29:	learn: 30.7970537	total: 153ms	remaining: 358ms
30:	learn: 30.4952215	total: 159ms	remaining: 354ms
31:	learn: 30.2845344	total: 165ms	remaining: 351ms
32:	learn: 29.9592732	total: 170ms	remaining: 346ms
33:	learn: 29.6798596	total: 175ms	remaining: 340ms
34:	learn: 29.3368905	total: 180ms	remaining: 335ms
35:	learn: 29.0621238	total: 185ms	remaining: 329ms
36:	learn: 28.6445375	total: 190ms	remaining: 323ms
37:	learn: 28.2418096	total: 195ms	remaining: 319ms
38:	learn: 27.9495390	total: 200ms	remaining: 313ms
39:	learn: 27.6958160	total: 205ms	remaining: 307ms
40:	learn: 27.4811189	total: 210ms	remaining: 302ms
41:	learn: 27.1494420	total: 214ms	remaining: 296ms
42:	learn: 26.8388873	total: 218ms	remaining: 289ms
43:	learn: 26.5721300	total: 223ms	remaining: 283ms
44:	learn: 26.3384738	total: 227ms	remaining: 277ms
45:	learn: 26.1894781	total: 231ms	remaining: 272ms
46:	learn: 25.9580198	total: 235ms	remaining: 266ms
47:	learn: 25.7897985	total: 240ms	remaining: 260ms
48:	learn: 25.6000271	total: 245ms	remaining: 255ms
49:	learn: 25.4130873	total: 249ms	remaining: 249ms
50:	learn: 25.1699061	total: 254ms	remaining: 244ms
51:	learn: 24.9324449	total: 258ms	remaining: 239ms
52:	learn: 24.7729152	total: 263ms	remaining: 233ms
53:	learn: 24.5026563	total: 268ms	remaining: 228ms
54:	learn: 24.2332627	total: 272ms	remaining: 222ms
55:	learn: 23.9611984	total: 276ms	remaining: 217ms
56:	learn: 23.7862603	total: 281ms	remaining: 212ms
57:	learn: 23.6318154	total: 285ms	remaining: 207ms
58:	learn: 23.4443306	total: 290ms	remaining: 201ms
59:	learn: 23.2581425	total: 294ms	remaining: 196ms
60:	learn: 23.0549901	total: 299ms	remaining: 191ms
61:	learn: 22.8666218	total: 304ms	remaining: 186ms
62:	learn: 22.6956739	total: 310ms	remaining: 182ms
63:	learn: 22.5068544	total: 317ms	remaining: 179ms
64:	learn: 22.1859147	total: 324ms	remaining: 174ms
65:	learn: 22.0462043	total: 330ms	remaining: 170ms
66:	learn: 21.9329563	total: 336ms	remaining: 165ms
67:	learn: 21.8029736	total: 341ms	remaining: 160ms
68:	learn: 21.6861091	total: 347ms	remaining: 156ms
69:	learn: 21.4838140	total: 353ms	remaining: 151ms
70:	learn: 21.3548921	total: 358ms	remaining: 146ms
71:	learn: 21.2244517	total: 363ms	remaining: 141ms
72:	learn: 21.0702958	total: 368ms	remaining: 136ms
73:	learn: 20.9224662	total: 374ms	remaining: 131ms
74:	learn: 20.8150357	total: 379ms	remaining: 126ms
75:	learn: 20.6962739	total: 385ms	remaining: 122ms
76:	learn: 20.5809258	total: 390ms	remaining: 117ms
77:	learn: 20.4735470	total: 396ms	remaining: 112ms
78:	learn: 20.3778167	total: 401ms	remaining: 107ms
79:	learn: 20.2211268	total: 406ms	remaining: 102ms
80:	learn: 20.1478678	total: 411ms	remaining: 96.5ms
81:	learn: 20.1032967	total: 416ms	remaining: 91.4ms
82:	learn: 19.9236300	total: 421ms	remaining: 86.3ms
83:	learn: 19.8151745	total: 427ms	remaining: 81.3ms
84:	learn: 19.7099856	total: 432ms	remaining: 76.3ms
85:	learn: 19.6264833	total: 437ms	remaining: 71.1ms
86:	learn: 19.4916361	total: 441ms	remaining: 65.9ms
87:	learn: 19.4050529	total: 445ms	remaining: 60.7ms
88:	learn: 19.2547065	total: 450ms	remaining: 55.6ms
89:	learn: 19.1610225	total: 455ms	remaining: 50.5ms
90:	learn: 19.0898958	total: 459ms	remaining: 45.4ms
91:	learn: 19.0489664	total: 463ms	remaining: 40.3ms
92:	learn: 18.9206240	total: 468ms	remaining: 35.2ms
93:	learn: 18.8636239	total: 472ms	remaining: 30.1ms
94:	learn: 18.8126187	total: 476ms	remaining: 25.1ms
95:	learn: 18.7579275	total: 481ms	remaining: 20ms
96:	learn: 18.6382753	total: 485ms	remaining: 15ms
97:	learn: 18.5397334	total: 490ms	remaining: 10ms
98:	learn: 18.4375951	total: 494ms	remaining: 4.99ms
99:	learn: 18.4033755	total: 498ms	remaining: 0us
0:	learn: 46.1068821	total: 1.85ms	remaining: 183ms
1:	learn: 45.3970261	total: 6.24ms	remaining: 306ms
2:	learn: 44.8732696	total: 10.7ms	remaining: 347ms
3:	learn: 44.1290184	total: 14.9ms	remaining: 358ms
4:	learn: 43.3290271	total: 18.9ms	remaining: 359ms
5:	learn: 42.7069090	total: 23.3ms	remaining: 365ms
6:	learn: 42.0572971	total: 28.3ms	remaining: 376ms
7:	learn: 41.4797924	total: 32.5ms	remaining: 374ms
8:	learn: 41.0023122	total: 37.1ms	remaining: 375ms
9:	learn: 40.5330570	total: 41.6ms	remaining: 374ms
10:	learn: 39.9726545	total: 46.3ms	remaining: 375ms
11:	learn: 39.3044053	total: 50.7ms	remaining: 372ms
12:	learn: 38.8169735	total: 55.2ms	remaining: 370ms
13:	learn: 38.2458761	total: 59.7ms	remaining: 367ms
14:	learn: 37.6280321	total: 64.3ms	remaining: 365ms
15:	learn: 37.0800610	total: 68.6ms	remaining: 360ms
16:	learn: 36.5489363	total: 73ms	remaining: 356ms
17:	learn: 36.0981456	total: 77.2ms	remaining: 352ms
18:	learn: 35.6956274	total: 81.6ms	remaining: 348ms
19:	learn: 35.1471999	total: 85.9ms	remaining: 343ms
20:	learn: 34.6235408	total: 89.8ms	remaining: 338ms
21:	learn: 34.1987018	total: 94.2ms	remaining: 334ms
22:	learn: 33.8985062	total: 98.9ms	remaining: 331ms
23:	learn: 33.3869017	total: 103ms	remaining: 327ms
24:	learn: 32.9100550	total: 107ms	remaining: 322ms
25:	learn: 32.4156208	total: 112ms	remaining: 317ms
26:	learn: 31.9320493	total: 116ms	remaining: 314ms
27:	learn: 31.5711468	total: 120ms	remaining: 309ms
28:	learn: 31.2404433	total: 124ms	remaining: 304ms
29:	learn: 30.8807946	total: 129ms	remaining: 300ms
30:	learn: 30.5948438	total: 133ms	remaining: 297ms
31:	learn: 30.3885560	total: 137ms	remaining: 292ms
32:	learn: 30.0625101	total: 142ms	remaining: 287ms
33:	learn: 29.9113114	total: 146ms	remaining: 284ms
34:	learn: 29.6983470	total: 151ms	remaining: 281ms
35:	learn: 29.4775849	total: 156ms	remaining: 277ms
36:	learn: 29.0538055	total: 160ms	remaining: 273ms
37:	learn: 28.6792318	total: 165ms	remaining: 269ms
38:	learn: 28.4231383	total: 170ms	remaining: 266ms
39:	learn: 28.1078565	total: 175ms	remaining: 262ms
40:	learn: 27.9079179	total: 183ms	remaining: 263ms
41:	learn: 27.6721506	total: 190ms	remaining: 263ms
42:	learn: 27.4228033	total: 200ms	remaining: 265ms
43:	learn: 27.1740534	total: 208ms	remaining: 265ms
44:	learn: 26.8584071	total: 213ms	remaining: 261ms
45:	learn: 26.6902083	total: 218ms	remaining: 256ms
46:	learn: 26.4855335	total: 224ms	remaining: 252ms
47:	learn: 26.2730822	total: 229ms	remaining: 248ms
48:	learn: 26.1058689	total: 239ms	remaining: 249ms
49:	learn: 25.8587318	total: 244ms	remaining: 244ms
50:	learn: 25.7558005	total: 249ms	remaining: 239ms
51:	learn: 25.5846925	total: 254ms	remaining: 235ms
52:	learn: 25.4249887	total: 259ms	remaining: 230ms
53:	learn: 25.1911054	total: 264ms	remaining: 225ms
54:	learn: 25.0544755	total: 270ms	remaining: 221ms
55:	learn: 24.8874006	total: 275ms	remaining: 216ms
56:	learn: 24.7736279	total: 279ms	remaining: 211ms
57:	learn: 24.6156255	total: 284ms	remaining: 205ms
58:	learn: 24.3962421	total: 288ms	remaining: 200ms
59:	learn: 24.2685129	total: 292ms	remaining: 195ms
60:	learn: 24.1874096	total: 296ms	remaining: 189ms
61:	learn: 24.0394287	total: 300ms	remaining: 184ms
62:	learn: 23.9281768	total: 305ms	remaining: 179ms
63:	learn: 23.7423900	total: 309ms	remaining: 174ms
64:	learn: 23.6015209	total: 314ms	remaining: 169ms
65:	learn: 23.4677943	total: 318ms	remaining: 164ms
66:	learn: 23.3215256	total: 323ms	remaining: 159ms
67:	learn: 23.1869360	total: 328ms	remaining: 154ms
68:	learn: 22.9691180	total: 332ms	remaining: 149ms
69:	learn: 22.7531657	total: 337ms	remaining: 144ms
70:	learn: 22.6133477	total: 341ms	remaining: 139ms
71:	learn: 22.3452758	total: 346ms	remaining: 134ms
72:	learn: 22.2065350	total: 351ms	remaining: 130ms
73:	learn: 22.1071155	total: 355ms	remaining: 125ms
74:	learn: 21.9740686	total: 360ms	remaining: 120ms
75:	learn: 21.8892033	total: 365ms	remaining: 115ms
76:	learn: 21.8267882	total: 370ms	remaining: 110ms
77:	learn: 21.7423479	total: 374ms	remaining: 106ms
78:	learn: 21.6242075	total: 380ms	remaining: 101ms
79:	learn: 21.5016910	total: 388ms	remaining: 97ms
80:	learn: 21.4806623	total: 389ms	remaining: 91.2ms
81:	learn: 21.3166637	total: 396ms	remaining: 86.9ms
82:	learn: 21.2222534	total: 402ms	remaining: 82.4ms
83:	learn: 21.1535708	total: 407ms	remaining: 77.6ms
84:	learn: 21.0858902	total: 413ms	remaining: 72.8ms
85:	learn: 20.9206003	total: 417ms	remaining: 67.8ms
86:	learn: 20.8674695	total: 421ms	remaining: 62.9ms
87:	learn: 20.8089875	total: 425ms	remaining: 58ms
88:	learn: 20.7085401	total: 430ms	remaining: 53.1ms
89:	learn: 20.5513468	total: 434ms	remaining: 48.2ms
90:	learn: 20.4586742	total: 438ms	remaining: 43.3ms
91:	learn: 20.3932149	total: 442ms	remaining: 38.5ms
92:	learn: 20.3000895	total: 447ms	remaining: 33.6ms
93:	learn: 20.2254009	total: 452ms	remaining: 28.8ms
94:	learn: 20.1750050	total: 457ms	remaining: 24.1ms
95:	learn: 20.0715579	total: 462ms	remaining: 19.2ms
96:	learn: 19.9920082	total: 467ms	remaining: 14.4ms
97:	learn: 19.9664401	total: 472ms	remaining: 9.62ms
98:	learn: 19.8689673	total: 476ms	remaining: 4.81ms
99:	learn: 19.7537356	total: 481ms	remaining: 0us
0:	learn: 46.8832143	total: 4.39ms	remaining: 435ms
1:	learn: 45.8700349	total: 8.55ms	remaining: 419ms
2:	learn: 45.0546867	total: 13.2ms	remaining: 426ms
3:	learn: 44.2829439	total: 18ms	remaining: 431ms
4:	learn: 43.4609042	total: 22.1ms	remaining: 420ms
5:	learn: 42.6754991	total: 26.5ms	remaining: 415ms
6:	learn: 41.9234935	total: 31ms	remaining: 412ms
7:	learn: 41.3987518	total: 35.7ms	remaining: 410ms
8:	learn: 40.6625066	total: 42.7ms	remaining: 432ms
9:	learn: 40.0029561	total: 49.3ms	remaining: 444ms
10:	learn: 39.3897033	total: 62.9ms	remaining: 509ms
11:	learn: 38.7741453	total: 68ms	remaining: 499ms
12:	learn: 38.1201100	total: 73.1ms	remaining: 489ms
13:	learn: 37.5129454	total: 79.6ms	remaining: 489ms
14:	learn: 37.2062206	total: 84.6ms	remaining: 479ms
15:	learn: 36.6831741	total: 89.6ms	remaining: 471ms
16:	learn: 36.2902788	total: 94.7ms	remaining: 462ms
17:	learn: 35.7639930	total: 100ms	remaining: 455ms
18:	learn: 35.2580953	total: 106ms	remaining: 451ms
19:	learn: 34.7809739	total: 111ms	remaining: 445ms
20:	learn: 34.1330433	total: 117ms	remaining: 438ms
21:	learn: 33.7302219	total: 122ms	remaining: 434ms
22:	learn: 33.3502495	total: 128ms	remaining: 428ms
23:	learn: 33.0067804	total: 133ms	remaining: 421ms
24:	learn: 32.6897855	total: 138ms	remaining: 415ms
25:	learn: 32.4361119	total: 143ms	remaining: 407ms
26:	learn: 32.1278981	total: 148ms	remaining: 401ms
27:	learn: 31.7863721	total: 153ms	remaining: 393ms
28:	learn: 31.4791450	total: 159ms	remaining: 388ms
29:	learn: 31.1760161	total: 165ms	remaining: 384ms
30:	learn: 30.9238888	total: 169ms	remaining: 376ms
31:	learn: 30.5500905	total: 173ms	remaining: 369ms
32:	learn: 30.3078126	total: 178ms	remaining: 361ms
33:	learn: 30.0480921	total: 182ms	remaining: 353ms
34:	learn: 29.8623884	total: 186ms	remaining: 346ms
35:	learn: 29.5991038	total: 191ms	remaining: 340ms
36:	learn: 29.4061161	total: 195ms	remaining: 332ms
37:	learn: 29.0269515	total: 199ms	remaining: 325ms
38:	learn: 28.8224959	total: 203ms	remaining: 318ms
39:	learn: 28.6417843	total: 207ms	remaining: 311ms
40:	learn: 28.3633368	total: 212ms	remaining: 305ms
41:	learn: 28.0200246	total: 217ms	remaining: 299ms
42:	learn: 27.7221254	total: 221ms	remaining: 293ms
43:	learn: 27.5105818	total: 225ms	remaining: 287ms
44:	learn: 27.3551010	total: 230ms	remaining: 281ms
45:	learn: 27.0787522	total: 235ms	remaining: 276ms
46:	learn: 26.8726317	total: 239ms	remaining: 270ms
47:	learn: 26.8003277	total: 244ms	remaining: 264ms
48:	learn: 26.5493785	total: 249ms	remaining: 259ms
49:	learn: 26.3699550	total: 253ms	remaining: 253ms
50:	learn: 26.1519631	total: 258ms	remaining: 248ms
51:	learn: 25.9277325	total: 266ms	remaining: 246ms
52:	learn: 25.7286035	total: 274ms	remaining: 243ms
53:	learn: 25.4999193	total: 281ms	remaining: 239ms
54:	learn: 25.3434703	total: 286ms	remaining: 234ms
55:	learn: 25.1497545	total: 292ms	remaining: 229ms
56:	learn: 24.9498143	total: 296ms	remaining: 224ms
57:	learn: 24.6509390	total: 301ms	remaining: 218ms
58:	learn: 24.5576144	total: 305ms	remaining: 212ms
59:	learn: 24.4265144	total: 309ms	remaining: 206ms
60:	learn: 24.3100706	total: 314ms	remaining: 201ms
61:	learn: 24.1727952	total: 319ms	remaining: 195ms
62:	learn: 24.0478558	total: 323ms	remaining: 190ms
63:	learn: 23.9124577	total: 328ms	remaining: 184ms
64:	learn: 23.7703718	total: 332ms	remaining: 179ms
65:	learn: 23.5975027	total: 336ms	remaining: 173ms
66:	learn: 23.4318077	total: 341ms	remaining: 168ms
67:	learn: 23.3099691	total: 345ms	remaining: 162ms
68:	learn: 23.1947982	total: 349ms	remaining: 157ms
69:	learn: 23.0260174	total: 354ms	remaining: 152ms
70:	learn: 22.8523100	total: 358ms	remaining: 146ms
71:	learn: 22.8028534	total: 362ms	remaining: 141ms
72:	learn: 22.6880658	total: 367ms	remaining: 136ms
73:	learn: 22.5956809	total: 371ms	remaining: 131ms
74:	learn: 22.4692932	total: 376ms	remaining: 125ms
75:	learn: 22.2863504	total: 380ms	remaining: 120ms
76:	learn: 22.1911237	total: 384ms	remaining: 115ms
77:	learn: 22.1098391	total: 389ms	remaining: 110ms
78:	learn: 22.0182738	total: 393ms	remaining: 104ms
79:	learn: 21.9306746	total: 397ms	remaining: 99.4ms
80:	learn: 21.7508233	total: 402ms	remaining: 94.3ms
81:	learn: 21.7108446	total: 406ms	remaining: 89.1ms
82:	learn: 21.5931852	total: 410ms	remaining: 84.1ms
83:	learn: 21.4480361	total: 415ms	remaining: 79ms
84:	learn: 21.3092119	total: 419ms	remaining: 73.9ms
85:	learn: 21.2605557	total: 423ms	remaining: 68.9ms
86:	learn: 21.1123597	total: 428ms	remaining: 63.9ms
87:	learn: 21.0115642	total: 432ms	remaining: 58.9ms
88:	learn: 20.9389040	total: 437ms	remaining: 54ms
89:	learn: 20.8300300	total: 442ms	remaining: 49.1ms
90:	learn: 20.7159733	total: 446ms	remaining: 44.1ms
91:	learn: 20.6282090	total: 451ms	remaining: 39.2ms
92:	learn: 20.5164529	total: 455ms	remaining: 34.3ms
93:	learn: 20.4692032	total: 460ms	remaining: 29.4ms
94:	learn: 20.3768451	total: 468ms	remaining: 24.6ms
95:	learn: 20.2808056	total: 478ms	remaining: 19.9ms
96:	learn: 20.2082089	total: 485ms	remaining: 15ms
97:	learn: 20.1698768	total: 493ms	remaining: 10.1ms
98:	learn: 20.1048816	total: 498ms	remaining: 5.03ms
99:	learn: 20.0086159	total: 504ms	remaining: 0us
0:	learn: 27.6165091	total: 6.33ms	remaining: 627ms
1:	learn: 27.2156009	total: 11.1ms	remaining: 545ms
2:	learn: 26.8744169	total: 15.9ms	remaining: 513ms
3:	learn: 26.5530473	total: 20.4ms	remaining: 491ms
4:	learn: 26.1200739	total: 25.1ms	remaining: 478ms
5:	learn: 25.7559063	total: 30ms	remaining: 469ms
6:	learn: 25.3817459	total: 34.7ms	remaining: 462ms
7:	learn: 25.0780231	total: 39.6ms	remaining: 455ms
8:	learn: 24.7908836	total: 57.7ms	remaining: 583ms
9:	learn: 24.5023726	total: 62.4ms	remaining: 562ms
10:	learn: 24.2430447	total: 67.3ms	remaining: 545ms
11:	learn: 24.0150987	total: 72.7ms	remaining: 533ms
12:	learn: 23.6832732	total: 77.6ms	remaining: 520ms
13:	learn: 23.4512462	total: 82.3ms	remaining: 506ms
14:	learn: 23.2300808	total: 87.4ms	remaining: 495ms
15:	learn: 23.0198192	total: 92.5ms	remaining: 486ms
16:	learn: 22.7757356	total: 97.6ms	remaining: 476ms
17:	learn: 22.4962727	total: 103ms	remaining: 468ms
18:	learn: 22.2131794	total: 108ms	remaining: 459ms
19:	learn: 21.9844087	total: 113ms	remaining: 452ms
20:	learn: 21.6467820	total: 118ms	remaining: 444ms
21:	learn: 21.4458045	total: 127ms	remaining: 451ms
22:	learn: 21.2706627	total: 136ms	remaining: 454ms
23:	learn: 21.0770166	total: 142ms	remaining: 450ms
24:	learn: 20.8871491	total: 149ms	remaining: 446ms
25:	learn: 20.7151270	total: 154ms	remaining: 438ms
26:	learn: 20.5585218	total: 159ms	remaining: 430ms
27:	learn: 20.4091128	total: 164ms	remaining: 421ms
28:	learn: 20.2343121	total: 168ms	remaining: 412ms
29:	learn: 20.0685862	total: 173ms	remaining: 404ms
30:	learn: 19.8339661	total: 178ms	remaining: 396ms
31:	learn: 19.6811138	total: 183ms	remaining: 388ms
32:	learn: 19.4881999	total: 187ms	remaining: 380ms
33:	learn: 19.3473429	total: 192ms	remaining: 373ms
34:	learn: 19.1087185	total: 197ms	remaining: 366ms
35:	learn: 18.9817724	total: 202ms	remaining: 359ms
36:	learn: 18.8465124	total: 206ms	remaining: 352ms
37:	learn: 18.6998182	total: 212ms	remaining: 345ms
38:	learn: 18.5534881	total: 216ms	remaining: 338ms
39:	learn: 18.4221213	total: 221ms	remaining: 332ms
40:	learn: 18.3262428	total: 226ms	remaining: 325ms
41:	learn: 18.2018519	total: 231ms	remaining: 319ms
42:	learn: 18.0704402	total: 236ms	remaining: 313ms
43:	learn: 17.9674737	total: 241ms	remaining: 307ms
44:	learn: 17.8092746	total: 246ms	remaining: 301ms
45:	learn: 17.7036671	total: 251ms	remaining: 294ms
46:	learn: 17.5636023	total: 255ms	remaining: 288ms
47:	learn: 17.3922671	total: 260ms	remaining: 282ms
48:	learn: 17.2777727	total: 265ms	remaining: 276ms
49:	learn: 17.1901866	total: 270ms	remaining: 270ms
50:	learn: 17.0799264	total: 275ms	remaining: 264ms
51:	learn: 17.0022808	total: 280ms	remaining: 258ms
52:	learn: 16.9193737	total: 285ms	remaining: 253ms
53:	learn: 16.8349324	total: 290ms	remaining: 247ms
54:	learn: 16.7122802	total: 296ms	remaining: 242ms
55:	learn: 16.5736462	total: 301ms	remaining: 236ms
56:	learn: 16.4576798	total: 306ms	remaining: 231ms
57:	learn: 16.3336075	total: 311ms	remaining: 225ms
58:	learn: 16.2578113	total: 316ms	remaining: 220ms
59:	learn: 16.1586938	total: 325ms	remaining: 217ms
60:	learn: 16.0827831	total: 336ms	remaining: 215ms
61:	learn: 16.0030150	total: 343ms	remaining: 210ms
62:	learn: 15.8741662	total: 351ms	remaining: 206ms
63:	learn: 15.7533897	total: 357ms	remaining: 201ms
64:	learn: 15.6743804	total: 363ms	remaining: 196ms
65:	learn: 15.6291324	total: 369ms	remaining: 190ms
66:	learn: 15.5363523	total: 376ms	remaining: 185ms
67:	learn: 15.4675550	total: 382ms	remaining: 180ms
68:	learn: 15.3959873	total: 388ms	remaining: 174ms
69:	learn: 15.3222045	total: 394ms	remaining: 169ms
70:	learn: 15.2343883	total: 400ms	remaining: 163ms
71:	learn: 15.1891070	total: 405ms	remaining: 158ms
72:	learn: 15.1320798	total: 412ms	remaining: 152ms
73:	learn: 15.0590468	total: 418ms	remaining: 147ms
74:	learn: 14.9682726	total: 423ms	remaining: 141ms
75:	learn: 14.8868528	total: 428ms	remaining: 135ms
76:	learn: 14.8046328	total: 433ms	remaining: 129ms
77:	learn: 14.7253152	total: 438ms	remaining: 124ms
78:	learn: 14.6438207	total: 443ms	remaining: 118ms
79:	learn: 14.5350651	total: 447ms	remaining: 112ms
80:	learn: 14.4301800	total: 453ms	remaining: 106ms
81:	learn: 14.3716251	total: 458ms	remaining: 100ms
82:	learn: 14.3127586	total: 462ms	remaining: 94.7ms
83:	learn: 14.2685086	total: 467ms	remaining: 89ms
84:	learn: 14.1936111	total: 473ms	remaining: 83.5ms
85:	learn: 14.1488261	total: 478ms	remaining: 77.8ms
86:	learn: 14.0654602	total: 483ms	remaining: 72.1ms
87:	learn: 14.0026195	total: 488ms	remaining: 66.6ms
88:	learn: 13.9498697	total: 493ms	remaining: 61ms
89:	learn: 13.9002477	total: 501ms	remaining: 55.7ms
90:	learn: 13.8429017	total: 509ms	remaining: 50.4ms
91:	learn: 13.7892130	total: 516ms	remaining: 44.9ms
92:	learn: 13.7122418	total: 522ms	remaining: 39.3ms
93:	learn: 13.6752324	total: 528ms	remaining: 33.7ms
94:	learn: 13.6186680	total: 534ms	remaining: 28.1ms
95:	learn: 13.5578384	total: 539ms	remaining: 22.5ms
96:	learn: 13.5028120	total: 544ms	remaining: 16.8ms
97:	learn: 13.4306895	total: 548ms	remaining: 11.2ms
98:	learn: 13.3955813	total: 553ms	remaining: 5.59ms
99:	learn: 13.3380095	total: 558ms	remaining: 0us
0:	learn: 42.9675374	total: 5.12ms	remaining: 507ms
1:	learn: 42.2542078	total: 9.87ms	remaining: 484ms
2:	learn: 41.5532166	total: 14.8ms	remaining: 477ms
3:	learn: 40.7812113	total: 19.9ms	remaining: 477ms
4:	learn: 39.8819601	total: 24.8ms	remaining: 471ms
5:	learn: 39.0997229	total: 26.7ms	remaining: 419ms
6:	learn: 38.2185623	total: 31.5ms	remaining: 419ms
7:	learn: 37.5465645	total: 36.2ms	remaining: 416ms
8:	learn: 36.8449555	total: 40.8ms	remaining: 413ms
9:	learn: 36.0912815	total: 45.5ms	remaining: 410ms
10:	learn: 35.5776470	total: 50.4ms	remaining: 408ms
11:	learn: 34.7845329	total: 55.5ms	remaining: 407ms
12:	learn: 34.1574031	total: 60.6ms	remaining: 405ms
13:	learn: 33.4950652	total: 65.7ms	remaining: 404ms
14:	learn: 32.9343881	total: 70.7ms	remaining: 401ms
15:	learn: 32.4356238	total: 75.6ms	remaining: 397ms
16:	learn: 31.8370592	total: 81.1ms	remaining: 396ms
17:	learn: 31.2122644	total: 86.3ms	remaining: 393ms
18:	learn: 30.7195190	total: 91.3ms	remaining: 389ms
19:	learn: 30.1548478	total: 96.8ms	remaining: 387ms
20:	learn: 29.6521001	total: 99.7ms	remaining: 375ms
21:	learn: 29.1746988	total: 105ms	remaining: 371ms
22:	learn: 28.6492690	total: 109ms	remaining: 366ms
23:	learn: 28.1958339	total: 115ms	remaining: 363ms
24:	learn: 27.9126674	total: 120ms	remaining: 359ms
25:	learn: 27.5059508	total: 127ms	remaining: 362ms
26:	learn: 27.0869176	total: 136ms	remaining: 367ms
27:	learn: 26.6545277	total: 148ms	remaining: 381ms
28:	learn: 26.2388575	total: 157ms	remaining: 385ms
29:	learn: 25.8957708	total: 163ms	remaining: 381ms
30:	learn: 25.5045901	total: 169ms	remaining: 375ms
31:	learn: 25.2559530	total: 175ms	remaining: 371ms
32:	learn: 24.9012566	total: 180ms	remaining: 366ms
33:	learn: 24.5601820	total: 186ms	remaining: 361ms
34:	learn: 24.2407285	total: 192ms	remaining: 357ms
35:	learn: 23.9481769	total: 197ms	remaining: 351ms
36:	learn: 23.6746994	total: 203ms	remaining: 345ms
37:	learn: 23.4470352	total: 208ms	remaining: 339ms
38:	learn: 23.1678305	total: 214ms	remaining: 335ms
39:	learn: 22.9660692	total: 220ms	remaining: 331ms
40:	learn: 22.7102548	total: 225ms	remaining: 324ms
41:	learn: 22.5152447	total: 230ms	remaining: 318ms
42:	learn: 22.2967100	total: 235ms	remaining: 312ms
43:	learn: 22.0869517	total: 240ms	remaining: 306ms
44:	learn: 21.8556497	total: 245ms	remaining: 299ms
45:	learn: 21.7036804	total: 249ms	remaining: 293ms
46:	learn: 21.4792011	total: 254ms	remaining: 286ms
47:	learn: 21.2830384	total: 258ms	remaining: 280ms
48:	learn: 21.0771837	total: 263ms	remaining: 274ms
49:	learn: 20.8824468	total: 268ms	remaining: 268ms
50:	learn: 20.7250875	total: 273ms	remaining: 262ms
51:	learn: 20.5564423	total: 278ms	remaining: 256ms
52:	learn: 20.4067403	total: 283ms	remaining: 251ms
53:	learn: 20.2674808	total: 287ms	remaining: 245ms
54:	learn: 20.1394249	total: 292ms	remaining: 239ms
55:	learn: 19.9748016	total: 297ms	remaining: 234ms
56:	learn: 19.8159522	total: 302ms	remaining: 228ms
57:	learn: 19.6811073	total: 307ms	remaining: 223ms
58:	learn: 19.5083232	total: 312ms	remaining: 217ms
59:	learn: 19.3949390	total: 314ms	remaining: 210ms
60:	learn: 19.2485728	total: 320ms	remaining: 204ms
61:	learn: 19.1255523	total: 325ms	remaining: 199ms
62:	learn: 18.9423320	total: 330ms	remaining: 194ms
63:	learn: 18.7794545	total: 335ms	remaining: 188ms
64:	learn: 18.6339033	total: 344ms	remaining: 185ms
65:	learn: 18.5188724	total: 352ms	remaining: 181ms
66:	learn: 18.3398412	total: 359ms	remaining: 177ms
67:	learn: 18.2873427	total: 365ms	remaining: 172ms
68:	learn: 18.1287092	total: 370ms	remaining: 166ms
69:	learn: 18.0163474	total: 375ms	remaining: 161ms
70:	learn: 17.9428395	total: 380ms	remaining: 155ms
71:	learn: 17.7906087	total: 385ms	remaining: 150ms
72:	learn: 17.6121088	total: 389ms	remaining: 144ms
73:	learn: 17.5136572	total: 394ms	remaining: 139ms
74:	learn: 17.3837993	total: 399ms	remaining: 133ms
75:	learn: 17.3015647	total: 404ms	remaining: 128ms
76:	learn: 17.1991252	total: 409ms	remaining: 122ms
77:	learn: 17.0854777	total: 414ms	remaining: 117ms
78:	learn: 17.0308269	total: 419ms	remaining: 111ms
79:	learn: 16.9754807	total: 423ms	remaining: 106ms
80:	learn: 16.9174907	total: 428ms	remaining: 100ms
81:	learn: 16.7962603	total: 433ms	remaining: 95ms
82:	learn: 16.6685446	total: 438ms	remaining: 89.6ms
83:	learn: 16.5812672	total: 442ms	remaining: 84.3ms
84:	learn: 16.4896026	total: 447ms	remaining: 78.9ms
85:	learn: 16.4023414	total: 452ms	remaining: 73.6ms
86:	learn: 16.3093718	total: 457ms	remaining: 68.2ms
87:	learn: 16.2409040	total: 462ms	remaining: 62.9ms
88:	learn: 16.1616213	total: 467ms	remaining: 57.7ms
89:	learn: 16.0825203	total: 471ms	remaining: 52.4ms
90:	learn: 16.0204931	total: 476ms	remaining: 47.1ms
91:	learn: 15.9741267	total: 481ms	remaining: 41.8ms
92:	learn: 15.9413725	total: 486ms	remaining: 36.6ms
93:	learn: 15.8762295	total: 491ms	remaining: 31.3ms
94:	learn: 15.8165812	total: 496ms	remaining: 26.1ms
95:	learn: 15.7244343	total: 501ms	remaining: 20.9ms
96:	learn: 15.6537033	total: 506ms	remaining: 15.6ms
97:	learn: 15.6052320	total: 511ms	remaining: 10.4ms
98:	learn: 15.5434930	total: 516ms	remaining: 5.21ms
99:	learn: 15.4452106	total: 521ms	remaining: 0us
0:	learn: 46.5387280	total: 6.22ms	remaining: 616ms
1:	learn: 45.8605074	total: 12.4ms	remaining: 609ms
2:	learn: 45.2237152	total: 18ms	remaining: 581ms
3:	learn: 44.4158454	total: 23.9ms	remaining: 574ms
4:	learn: 43.7177384	total: 30.1ms	remaining: 572ms
5:	learn: 42.9896372	total: 36ms	remaining: 563ms
6:	learn: 42.3639431	total: 41.5ms	remaining: 552ms
7:	learn: 41.6648406	total: 47.4ms	remaining: 545ms
8:	learn: 41.0681442	total: 53.8ms	remaining: 544ms
9:	learn: 40.4478745	total: 58.8ms	remaining: 529ms
10:	learn: 40.0398470	total: 63.8ms	remaining: 516ms
11:	learn: 39.3300888	total: 68.8ms	remaining: 504ms
12:	learn: 38.9198991	total: 73.5ms	remaining: 492ms
13:	learn: 38.4022666	total: 78.1ms	remaining: 480ms
14:	learn: 37.9124629	total: 83.3ms	remaining: 472ms
15:	learn: 37.3846174	total: 88.2ms	remaining: 463ms
16:	learn: 36.8502348	total: 93.3ms	remaining: 455ms
17:	learn: 36.5079755	total: 98.1ms	remaining: 447ms
18:	learn: 36.1239339	total: 103ms	remaining: 441ms
19:	learn: 35.8388688	total: 108ms	remaining: 433ms
20:	learn: 35.4915710	total: 113ms	remaining: 426ms
21:	learn: 34.9483623	total: 118ms	remaining: 420ms
22:	learn: 34.6033866	total: 123ms	remaining: 413ms
23:	learn: 34.1483341	total: 128ms	remaining: 407ms
24:	learn: 33.7626484	total: 134ms	remaining: 403ms
25:	learn: 33.4160820	total: 140ms	remaining: 398ms
26:	learn: 33.0421483	total: 145ms	remaining: 393ms
27:	learn: 32.6573469	total: 150ms	remaining: 387ms
28:	learn: 32.2672417	total: 156ms	remaining: 381ms
29:	learn: 31.8257441	total: 165ms	remaining: 384ms
30:	learn: 31.3394923	total: 174ms	remaining: 388ms
31:	learn: 30.9472894	total: 182ms	remaining: 387ms
32:	learn: 30.6961423	total: 189ms	remaining: 383ms
33:	learn: 30.4670615	total: 195ms	remaining: 379ms
34:	learn: 30.1495001	total: 200ms	remaining: 372ms
35:	learn: 29.8071763	total: 206ms	remaining: 366ms
36:	learn: 29.5255984	total: 211ms	remaining: 359ms
37:	learn: 29.2236758	total: 216ms	remaining: 352ms
38:	learn: 28.9199699	total: 221ms	remaining: 345ms
39:	learn: 28.7003989	total: 226ms	remaining: 338ms
40:	learn: 28.4681160	total: 230ms	remaining: 331ms
41:	learn: 28.2692668	total: 235ms	remaining: 325ms
42:	learn: 27.9327254	total: 240ms	remaining: 318ms
43:	learn: 27.7193597	total: 245ms	remaining: 312ms
44:	learn: 27.4061006	total: 250ms	remaining: 305ms
45:	learn: 27.1840910	total: 255ms	remaining: 299ms
46:	learn: 26.8943816	total: 259ms	remaining: 293ms
47:	learn: 26.6576617	total: 265ms	remaining: 287ms
48:	learn: 26.3230094	total: 269ms	remaining: 280ms
49:	learn: 26.0488483	total: 274ms	remaining: 274ms
50:	learn: 25.7795537	total: 279ms	remaining: 268ms
51:	learn: 25.6103781	total: 284ms	remaining: 262ms
52:	learn: 25.4107383	total: 288ms	remaining: 256ms
53:	learn: 25.1757211	total: 293ms	remaining: 250ms
54:	learn: 24.8949842	total: 298ms	remaining: 244ms
55:	learn: 24.7028694	total: 303ms	remaining: 238ms
56:	learn: 24.4033555	total: 307ms	remaining: 232ms
57:	learn: 24.2109268	total: 312ms	remaining: 226ms
58:	learn: 24.0697623	total: 317ms	remaining: 220ms
59:	learn: 23.8291672	total: 322ms	remaining: 214ms
60:	learn: 23.5972471	total: 327ms	remaining: 209ms
61:	learn: 23.4241182	total: 332ms	remaining: 204ms
62:	learn: 23.2617022	total: 338ms	remaining: 198ms
63:	learn: 23.0329448	total: 343ms	remaining: 193ms
64:	learn: 22.9108081	total: 348ms	remaining: 188ms
65:	learn: 22.8001962	total: 353ms	remaining: 182ms
66:	learn: 22.6861907	total: 364ms	remaining: 179ms
67:	learn: 22.5152895	total: 376ms	remaining: 177ms
68:	learn: 22.3734214	total: 382ms	remaining: 172ms
69:	learn: 22.1840754	total: 389ms	remaining: 167ms
70:	learn: 22.0732908	total: 395ms	remaining: 161ms
71:	learn: 21.8880456	total: 401ms	remaining: 156ms
72:	learn: 21.7838784	total: 407ms	remaining: 150ms
73:	learn: 21.5532885	total: 413ms	remaining: 145ms
74:	learn: 21.3998735	total: 419ms	remaining: 140ms
75:	learn: 21.2699824	total: 425ms	remaining: 134ms
76:	learn: 21.1077652	total: 432ms	remaining: 129ms
77:	learn: 20.9759102	total: 437ms	remaining: 123ms
78:	learn: 20.7531342	total: 442ms	remaining: 118ms
79:	learn: 20.6729631	total: 448ms	remaining: 112ms
80:	learn: 20.4903474	total: 454ms	remaining: 106ms
81:	learn: 20.3708622	total: 460ms	remaining: 101ms
82:	learn: 20.2627857	total: 466ms	remaining: 95.4ms
83:	learn: 20.1335464	total: 471ms	remaining: 89.6ms
84:	learn: 20.0100864	total: 475ms	remaining: 83.9ms
85:	learn: 19.9374357	total: 480ms	remaining: 78.1ms
86:	learn: 19.8383097	total: 485ms	remaining: 72.4ms
87:	learn: 19.7804443	total: 490ms	remaining: 66.8ms
88:	learn: 19.7225631	total: 495ms	remaining: 61.1ms
89:	learn: 19.5851849	total: 500ms	remaining: 55.5ms
90:	learn: 19.5115923	total: 504ms	remaining: 49.9ms
91:	learn: 19.3986485	total: 509ms	remaining: 44.2ms
92:	learn: 19.2465728	total: 514ms	remaining: 38.7ms
93:	learn: 19.2033796	total: 519ms	remaining: 33.1ms
94:	learn: 19.1234096	total: 523ms	remaining: 27.5ms
95:	learn: 19.0080161	total: 529ms	remaining: 22ms
96:	learn: 18.9048698	total: 534ms	remaining: 16.5ms
97:	learn: 18.7901500	total: 539ms	remaining: 11ms
98:	learn: 18.6759882	total: 544ms	remaining: 5.49ms
99:	learn: 18.6254590	total: 549ms	remaining: 0us
0:	learn: 46.0359105	total: 4.96ms	remaining: 491ms
1:	learn: 45.4503059	total: 9.95ms	remaining: 487ms
2:	learn: 44.6478680	total: 14.7ms	remaining: 475ms
3:	learn: 43.7932387	total: 19.4ms	remaining: 465ms
4:	learn: 43.2236036	total: 24.1ms	remaining: 458ms
5:	learn: 42.4339181	total: 28.8ms	remaining: 452ms
6:	learn: 41.8906461	total: 33.6ms	remaining: 446ms
7:	learn: 41.2248707	total: 38.2ms	remaining: 439ms
8:	learn: 40.5934570	total: 42.9ms	remaining: 434ms
9:	learn: 39.9204661	total: 48ms	remaining: 432ms
10:	learn: 39.3972458	total: 52.9ms	remaining: 428ms
11:	learn: 38.9220493	total: 57.6ms	remaining: 422ms
12:	learn: 38.2358406	total: 62.5ms	remaining: 418ms
13:	learn: 37.7089336	total: 67.4ms	remaining: 414ms
14:	learn: 37.3714255	total: 72.2ms	remaining: 409ms
15:	learn: 36.8098537	total: 77ms	remaining: 404ms
16:	learn: 36.2818695	total: 82ms	remaining: 401ms
17:	learn: 35.8807734	total: 86.9ms	remaining: 396ms
18:	learn: 35.3850720	total: 91.7ms	remaining: 391ms
19:	learn: 35.0622365	total: 96.6ms	remaining: 386ms
20:	learn: 34.7088655	total: 102ms	remaining: 382ms
21:	learn: 34.2869861	total: 106ms	remaining: 376ms
22:	learn: 33.9798756	total: 111ms	remaining: 370ms
23:	learn: 33.6933850	total: 116ms	remaining: 366ms
24:	learn: 33.3542725	total: 120ms	remaining: 361ms
25:	learn: 33.1531104	total: 125ms	remaining: 356ms
26:	learn: 32.7581499	total: 130ms	remaining: 351ms
27:	learn: 32.4953289	total: 135ms	remaining: 347ms
28:	learn: 32.1636511	total: 140ms	remaining: 343ms
29:	learn: 31.7179908	total: 145ms	remaining: 338ms
30:	learn: 31.2828971	total: 150ms	remaining: 334ms
31:	learn: 30.8954632	total: 155ms	remaining: 330ms
32:	learn: 30.6156466	total: 163ms	remaining: 330ms
33:	learn: 30.4325331	total: 172ms	remaining: 334ms
34:	learn: 30.1680270	total: 185ms	remaining: 343ms
35:	learn: 29.8372162	total: 195ms	remaining: 346ms
36:	learn: 29.5018241	total: 201ms	remaining: 342ms
37:	learn: 29.2660228	total: 208ms	remaining: 339ms
38:	learn: 28.9172883	total: 215ms	remaining: 336ms
39:	learn: 28.7004790	total: 220ms	remaining: 331ms
40:	learn: 28.5188438	total: 236ms	remaining: 340ms
41:	learn: 28.3064887	total: 242ms	remaining: 335ms
42:	learn: 27.9584462	total: 247ms	remaining: 328ms
43:	learn: 27.6654603	total: 253ms	remaining: 322ms
44:	learn: 27.3698139	total: 259ms	remaining: 316ms
45:	learn: 27.1825629	total: 265ms	remaining: 311ms
46:	learn: 26.9938719	total: 283ms	remaining: 319ms
47:	learn: 26.7385850	total: 288ms	remaining: 311ms
48:	learn: 26.5055251	total: 292ms	remaining: 304ms
49:	learn: 26.3264840	total: 297ms	remaining: 297ms
50:	learn: 26.1314307	total: 302ms	remaining: 290ms
51:	learn: 25.9514770	total: 307ms	remaining: 283ms
52:	learn: 25.7272663	total: 311ms	remaining: 276ms
53:	learn: 25.4554234	total: 316ms	remaining: 270ms
54:	learn: 25.2133674	total: 321ms	remaining: 263ms
55:	learn: 24.9612149	total: 326ms	remaining: 256ms
56:	learn: 24.6788780	total: 331ms	remaining: 250ms
57:	learn: 24.4504703	total: 337ms	remaining: 244ms
58:	learn: 24.3261542	total: 345ms	remaining: 240ms
59:	learn: 24.1217621	total: 352ms	remaining: 235ms
60:	learn: 23.9495725	total: 360ms	remaining: 230ms
61:	learn: 23.7848565	total: 365ms	remaining: 224ms
62:	learn: 23.6627081	total: 371ms	remaining: 218ms
63:	learn: 23.4390407	total: 377ms	remaining: 212ms
64:	learn: 23.2556312	total: 383ms	remaining: 206ms
65:	learn: 23.1796337	total: 388ms	remaining: 200ms
66:	learn: 23.0431987	total: 393ms	remaining: 194ms
67:	learn: 22.9300366	total: 398ms	remaining: 187ms
68:	learn: 22.8321895	total: 403ms	remaining: 181ms
69:	learn: 22.7825840	total: 408ms	remaining: 175ms
70:	learn: 22.6907764	total: 413ms	remaining: 169ms
71:	learn: 22.5080460	total: 417ms	remaining: 162ms
72:	learn: 22.4053282	total: 422ms	remaining: 156ms
73:	learn: 22.2698085	total: 428ms	remaining: 150ms
74:	learn: 22.0951825	total: 432ms	remaining: 144ms
75:	learn: 21.9933994	total: 437ms	remaining: 138ms
76:	learn: 21.8043413	total: 442ms	remaining: 132ms
77:	learn: 21.7259032	total: 447ms	remaining: 126ms
78:	learn: 21.5625358	total: 452ms	remaining: 120ms
79:	learn: 21.4316837	total: 457ms	remaining: 114ms
80:	learn: 21.2270985	total: 462ms	remaining: 108ms
81:	learn: 21.1248573	total: 467ms	remaining: 102ms
82:	learn: 21.0879584	total: 472ms	remaining: 96.6ms
83:	learn: 20.9810177	total: 476ms	remaining: 90.8ms
84:	learn: 20.8986744	total: 482ms	remaining: 85ms
85:	learn: 20.8427245	total: 487ms	remaining: 79.2ms
86:	learn: 20.7158681	total: 491ms	remaining: 73.4ms
87:	learn: 20.6055502	total: 496ms	remaining: 67.7ms
88:	learn: 20.5302059	total: 501ms	remaining: 62ms
89:	learn: 20.3936827	total: 506ms	remaining: 56.2ms
90:	learn: 20.2756993	total: 511ms	remaining: 50.6ms
91:	learn: 20.1882826	total: 517ms	remaining: 44.9ms
92:	learn: 20.0346875	total: 522ms	remaining: 39.3ms
93:	learn: 19.9798652	total: 526ms	remaining: 33.6ms
94:	learn: 19.9020384	total: 531ms	remaining: 28ms
95:	learn: 19.8463755	total: 537ms	remaining: 22.4ms
96:	learn: 19.7426458	total: 542ms	remaining: 16.7ms
97:	learn: 19.6728655	total: 547ms	remaining: 11.2ms
98:	learn: 19.6355104	total: 553ms	remaining: 5.58ms
99:	learn: 19.6074086	total: 559ms	remaining: 0us
0:	learn: 46.7817285	total: 6.08ms	remaining: 602ms
1:	learn: 45.9551634	total: 12.2ms	remaining: 600ms
2:	learn: 45.0274369	total: 17.8ms	remaining: 574ms
3:	learn: 44.5000950	total: 23.3ms	remaining: 560ms
4:	learn: 43.8963632	total: 29.1ms	remaining: 554ms
5:	learn: 43.2314124	total: 35.4ms	remaining: 555ms
6:	learn: 42.5780140	total: 41.7ms	remaining: 554ms
7:	learn: 41.9033077	total: 46.7ms	remaining: 537ms
8:	learn: 41.3161907	total: 51.7ms	remaining: 522ms
9:	learn: 40.7747000	total: 56.5ms	remaining: 508ms
10:	learn: 40.2728122	total: 61.2ms	remaining: 495ms
11:	learn: 39.7786608	total: 65.9ms	remaining: 483ms
12:	learn: 39.0812090	total: 70.8ms	remaining: 473ms
13:	learn: 38.6205762	total: 75.4ms	remaining: 463ms
14:	learn: 38.2894236	total: 80.3ms	remaining: 455ms
15:	learn: 37.6906364	total: 84.9ms	remaining: 446ms
16:	learn: 37.3014849	total: 89.6ms	remaining: 437ms
17:	learn: 36.9268494	total: 94.3ms	remaining: 429ms
18:	learn: 36.6348717	total: 99.1ms	remaining: 423ms
19:	learn: 36.1567831	total: 104ms	remaining: 416ms
20:	learn: 35.8080754	total: 109ms	remaining: 409ms
21:	learn: 35.4288913	total: 114ms	remaining: 403ms
22:	learn: 35.0910168	total: 119ms	remaining: 397ms
23:	learn: 34.7483277	total: 123ms	remaining: 390ms
24:	learn: 34.5077203	total: 128ms	remaining: 383ms
25:	learn: 34.1830247	total: 133ms	remaining: 377ms
26:	learn: 33.7943837	total: 138ms	remaining: 372ms
27:	learn: 33.3736582	total: 143ms	remaining: 367ms
28:	learn: 32.9133996	total: 148ms	remaining: 361ms
29:	learn: 32.4361653	total: 153ms	remaining: 356ms
30:	learn: 31.9630085	total: 158ms	remaining: 351ms
31:	learn: 31.5994894	total: 164ms	remaining: 349ms
32:	learn: 31.3120059	total: 173ms	remaining: 350ms
33:	learn: 31.0991187	total: 180ms	remaining: 350ms
34:	learn: 30.8055118	total: 187ms	remaining: 347ms
35:	learn: 30.5197359	total: 193ms	remaining: 344ms
36:	learn: 30.1975315	total: 199ms	remaining: 338ms
37:	learn: 29.9797615	total: 204ms	remaining: 332ms
38:	learn: 29.6874864	total: 209ms	remaining: 326ms
39:	learn: 29.4139907	total: 214ms	remaining: 321ms
40:	learn: 29.0472151	total: 219ms	remaining: 315ms
41:	learn: 28.8356285	total: 224ms	remaining: 309ms
42:	learn: 28.5099349	total: 229ms	remaining: 304ms
43:	learn: 28.2009716	total: 234ms	remaining: 297ms
44:	learn: 27.8947534	total: 238ms	remaining: 291ms
45:	learn: 27.6149698	total: 243ms	remaining: 285ms
46:	learn: 27.4780860	total: 248ms	remaining: 279ms
47:	learn: 27.2859119	total: 252ms	remaining: 273ms
48:	learn: 27.0572191	total: 257ms	remaining: 267ms
49:	learn: 26.8916263	total: 261ms	remaining: 261ms
50:	learn: 26.6791967	total: 266ms	remaining: 256ms
51:	learn: 26.4917307	total: 271ms	remaining: 250ms
52:	learn: 26.2957036	total: 276ms	remaining: 244ms
53:	learn: 26.1116543	total: 280ms	remaining: 239ms
54:	learn: 25.8593319	total: 285ms	remaining: 233ms
55:	learn: 25.6957296	total: 290ms	remaining: 228ms
56:	learn: 25.5065213	total: 294ms	remaining: 222ms
57:	learn: 25.3525337	total: 299ms	remaining: 217ms
58:	learn: 25.2197494	total: 304ms	remaining: 211ms
59:	learn: 25.0583799	total: 315ms	remaining: 210ms
60:	learn: 24.8432659	total: 320ms	remaining: 205ms
61:	learn: 24.6585337	total: 325ms	remaining: 199ms
62:	learn: 24.5382571	total: 330ms	remaining: 194ms
63:	learn: 24.3596337	total: 335ms	remaining: 189ms
64:	learn: 24.2009033	total: 340ms	remaining: 183ms
65:	learn: 24.0964080	total: 346ms	remaining: 178ms
66:	learn: 23.9765920	total: 355ms	remaining: 175ms
67:	learn: 23.8638384	total: 364ms	remaining: 172ms
68:	learn: 23.7381861	total: 372ms	remaining: 167ms
69:	learn: 23.5620129	total: 394ms	remaining: 169ms
70:	learn: 23.4494830	total: 400ms	remaining: 163ms
71:	learn: 23.3095806	total: 405ms	remaining: 158ms
72:	learn: 23.1441767	total: 411ms	remaining: 152ms
73:	learn: 22.9983446	total: 416ms	remaining: 146ms
74:	learn: 22.8464764	total: 422ms	remaining: 141ms
75:	learn: 22.7606423	total: 428ms	remaining: 135ms
76:	learn: 22.6095905	total: 434ms	remaining: 130ms
77:	learn: 22.4430506	total: 439ms	remaining: 124ms
78:	learn: 22.2925872	total: 445ms	remaining: 118ms
79:	learn: 22.1806286	total: 450ms	remaining: 112ms
80:	learn: 22.0070525	total: 454ms	remaining: 107ms
81:	learn: 21.9114201	total: 459ms	remaining: 101ms
82:	learn: 21.7742884	total: 464ms	remaining: 95ms
83:	learn: 21.6372857	total: 469ms	remaining: 89.3ms
84:	learn: 21.5380397	total: 473ms	remaining: 83.5ms
85:	learn: 21.4730146	total: 478ms	remaining: 77.8ms
86:	learn: 21.3236516	total: 483ms	remaining: 72.1ms
87:	learn: 21.2512101	total: 487ms	remaining: 66.5ms
88:	learn: 21.2192883	total: 492ms	remaining: 60.8ms
89:	learn: 21.0457926	total: 497ms	remaining: 55.2ms
90:	learn: 20.9986980	total: 502ms	remaining: 49.6ms
91:	learn: 20.9040032	total: 506ms	remaining: 44ms
92:	learn: 20.7178547	total: 511ms	remaining: 38.5ms
93:	learn: 20.6535030	total: 516ms	remaining: 32.9ms
94:	learn: 20.5641982	total: 521ms	remaining: 27.4ms
95:	learn: 20.5355409	total: 526ms	remaining: 21.9ms
96:	learn: 20.4496493	total: 531ms	remaining: 16.4ms
97:	learn: 20.3579862	total: 536ms	remaining: 10.9ms
98:	learn: 20.2442476	total: 542ms	remaining: 5.47ms
99:	learn: 20.1075813	total: 552ms	remaining: 0us
0:	learn: 27.6165091	total: 5.28ms	remaining: 523ms
1:	learn: 27.2156009	total: 9.97ms	remaining: 489ms
2:	learn: 26.8744169	total: 14.8ms	remaining: 480ms
3:	learn: 26.5530473	total: 19.5ms	remaining: 468ms
4:	learn: 26.1200739	total: 24.1ms	remaining: 459ms
5:	learn: 25.7559063	total: 29.3ms	remaining: 460ms
6:	learn: 25.3817459	total: 34.3ms	remaining: 456ms
7:	learn: 25.0780231	total: 39ms	remaining: 449ms
8:	learn: 24.7908836	total: 43.9ms	remaining: 444ms
9:	learn: 24.5023726	total: 48.9ms	remaining: 440ms
10:	learn: 24.2430447	total: 53.9ms	remaining: 436ms
11:	learn: 24.0150987	total: 58.6ms	remaining: 430ms
12:	learn: 23.6832732	total: 63.4ms	remaining: 425ms
13:	learn: 23.4512462	total: 68.3ms	remaining: 420ms
14:	learn: 23.2300808	total: 73ms	remaining: 414ms
15:	learn: 23.0198192	total: 77.9ms	remaining: 409ms
16:	learn: 22.7757356	total: 83ms	remaining: 405ms
17:	learn: 22.4962727	total: 87.8ms	remaining: 400ms
18:	learn: 22.2131794	total: 92.6ms	remaining: 395ms
19:	learn: 21.9844087	total: 97.5ms	remaining: 390ms
20:	learn: 21.6467820	total: 102ms	remaining: 384ms
21:	learn: 21.4458045	total: 107ms	remaining: 379ms
22:	learn: 21.2706627	total: 112ms	remaining: 375ms
23:	learn: 21.0770166	total: 117ms	remaining: 370ms
24:	learn: 20.8871491	total: 122ms	remaining: 365ms
25:	learn: 20.7151270	total: 126ms	remaining: 360ms
26:	learn: 20.5585218	total: 132ms	remaining: 356ms
27:	learn: 20.4091128	total: 137ms	remaining: 351ms
28:	learn: 20.2343121	total: 142ms	remaining: 348ms
29:	learn: 20.0685862	total: 147ms	remaining: 344ms
30:	learn: 19.8339661	total: 152ms	remaining: 339ms
31:	learn: 19.6811138	total: 163ms	remaining: 346ms
32:	learn: 19.4881999	total: 173ms	remaining: 351ms
33:	learn: 19.3473429	total: 182ms	remaining: 353ms
34:	learn: 19.1087185	total: 190ms	remaining: 353ms
35:	learn: 18.9817724	total: 195ms	remaining: 347ms
36:	learn: 18.8465124	total: 201ms	remaining: 342ms
37:	learn: 18.6998182	total: 207ms	remaining: 337ms
38:	learn: 18.5534881	total: 213ms	remaining: 333ms
39:	learn: 18.4221213	total: 219ms	remaining: 328ms
40:	learn: 18.3262428	total: 224ms	remaining: 322ms
41:	learn: 18.2018519	total: 230ms	remaining: 317ms
42:	learn: 18.0704402	total: 249ms	remaining: 331ms
43:	learn: 17.9674737	total: 256ms	remaining: 325ms
44:	learn: 17.8092746	total: 260ms	remaining: 318ms
45:	learn: 17.7036671	total: 265ms	remaining: 312ms
46:	learn: 17.5636023	total: 271ms	remaining: 305ms
47:	learn: 17.3922671	total: 276ms	remaining: 298ms
48:	learn: 17.2777727	total: 281ms	remaining: 292ms
49:	learn: 17.1901866	total: 286ms	remaining: 286ms
50:	learn: 17.0799264	total: 291ms	remaining: 280ms
51:	learn: 17.0022808	total: 296ms	remaining: 273ms
52:	learn: 16.9193737	total: 301ms	remaining: 267ms
53:	learn: 16.8349324	total: 306ms	remaining: 261ms
54:	learn: 16.7122802	total: 311ms	remaining: 255ms
55:	learn: 16.5736462	total: 317ms	remaining: 249ms
56:	learn: 16.4576798	total: 322ms	remaining: 243ms
57:	learn: 16.3336075	total: 327ms	remaining: 237ms
58:	learn: 16.2578113	total: 333ms	remaining: 231ms
59:	learn: 16.1586938	total: 338ms	remaining: 225ms
60:	learn: 16.0827831	total: 343ms	remaining: 219ms
61:	learn: 16.0030150	total: 348ms	remaining: 213ms
62:	learn: 15.8741662	total: 354ms	remaining: 208ms
63:	learn: 15.7533897	total: 363ms	remaining: 204ms
64:	learn: 15.6743804	total: 371ms	remaining: 200ms
65:	learn: 15.6291324	total: 379ms	remaining: 195ms
66:	learn: 15.5363523	total: 384ms	remaining: 189ms
67:	learn: 15.4675550	total: 391ms	remaining: 184ms
68:	learn: 15.3959873	total: 396ms	remaining: 178ms
69:	learn: 15.3222045	total: 400ms	remaining: 172ms
70:	learn: 15.2343883	total: 405ms	remaining: 165ms
71:	learn: 15.1891070	total: 410ms	remaining: 159ms
72:	learn: 15.1320798	total: 415ms	remaining: 153ms
73:	learn: 15.0590468	total: 420ms	remaining: 147ms
74:	learn: 14.9682726	total: 425ms	remaining: 142ms
75:	learn: 14.8868528	total: 430ms	remaining: 136ms
76:	learn: 14.8046328	total: 434ms	remaining: 130ms
77:	learn: 14.7253152	total: 439ms	remaining: 124ms
78:	learn: 14.6438207	total: 444ms	remaining: 118ms
79:	learn: 14.5350651	total: 448ms	remaining: 112ms
80:	learn: 14.4301800	total: 453ms	remaining: 106ms
81:	learn: 14.3716251	total: 458ms	remaining: 101ms
82:	learn: 14.3127586	total: 463ms	remaining: 94.9ms
83:	learn: 14.2685086	total: 468ms	remaining: 89.2ms
84:	learn: 14.1936111	total: 473ms	remaining: 83.4ms
85:	learn: 14.1488261	total: 478ms	remaining: 77.8ms
86:	learn: 14.0654602	total: 483ms	remaining: 72.2ms
87:	learn: 14.0026195	total: 488ms	remaining: 66.5ms
88:	learn: 13.9498697	total: 493ms	remaining: 60.9ms
89:	learn: 13.9002477	total: 497ms	remaining: 55.3ms
90:	learn: 13.8429017	total: 502ms	remaining: 49.7ms
91:	learn: 13.7892130	total: 507ms	remaining: 44.1ms
92:	learn: 13.7122418	total: 512ms	remaining: 38.5ms
93:	learn: 13.6752324	total: 516ms	remaining: 33ms
94:	learn: 13.6186680	total: 521ms	remaining: 27.4ms
95:	learn: 13.5578384	total: 526ms	remaining: 21.9ms
96:	learn: 13.5028120	total: 531ms	remaining: 16.4ms
97:	learn: 13.4306895	total: 535ms	remaining: 10.9ms
98:	learn: 13.3955813	total: 540ms	remaining: 5.46ms
99:	learn: 13.3380095	total: 545ms	remaining: 0us
0:	learn: 42.9675374	total: 6.24ms	remaining: 618ms
1:	learn: 42.2542078	total: 12ms	remaining: 588ms
2:	learn: 41.5532166	total: 18.6ms	remaining: 602ms
3:	learn: 40.7812113	total: 25.3ms	remaining: 606ms
4:	learn: 39.8819601	total: 31.4ms	remaining: 596ms
5:	learn: 39.0997229	total: 33.7ms	remaining: 528ms
6:	learn: 38.2185623	total: 39.6ms	remaining: 526ms
7:	learn: 37.5465645	total: 45.6ms	remaining: 524ms
8:	learn: 36.8449555	total: 51.2ms	remaining: 518ms
9:	learn: 36.0912815	total: 57.6ms	remaining: 518ms
10:	learn: 35.5776470	total: 63.9ms	remaining: 517ms
11:	learn: 34.7845329	total: 68.5ms	remaining: 502ms
12:	learn: 34.1574031	total: 73.2ms	remaining: 490ms
13:	learn: 33.4950652	total: 78.4ms	remaining: 482ms
14:	learn: 32.9343881	total: 83.4ms	remaining: 473ms
15:	learn: 32.4356238	total: 88.2ms	remaining: 463ms
16:	learn: 31.8370592	total: 93.1ms	remaining: 454ms
17:	learn: 31.2122644	total: 97.9ms	remaining: 446ms
18:	learn: 30.7195190	total: 102ms	remaining: 437ms
19:	learn: 30.1548478	total: 107ms	remaining: 428ms
20:	learn: 29.6521001	total: 110ms	remaining: 413ms
21:	learn: 29.1746988	total: 115ms	remaining: 407ms
22:	learn: 28.6492690	total: 120ms	remaining: 400ms
23:	learn: 28.1958339	total: 124ms	remaining: 393ms
24:	learn: 27.9126674	total: 129ms	remaining: 388ms
25:	learn: 27.5059508	total: 134ms	remaining: 382ms
26:	learn: 27.0869176	total: 139ms	remaining: 376ms
27:	learn: 26.6545277	total: 144ms	remaining: 371ms
28:	learn: 26.2388575	total: 150ms	remaining: 366ms
29:	learn: 25.8957708	total: 155ms	remaining: 361ms
30:	learn: 25.5045901	total: 160ms	remaining: 356ms
31:	learn: 25.2559530	total: 165ms	remaining: 351ms
32:	learn: 24.9012566	total: 170ms	remaining: 346ms
33:	learn: 24.5601820	total: 179ms	remaining: 347ms
34:	learn: 24.2407285	total: 188ms	remaining: 349ms
35:	learn: 23.9481769	total: 195ms	remaining: 347ms
36:	learn: 23.6746994	total: 200ms	remaining: 341ms
37:	learn: 23.4470352	total: 207ms	remaining: 337ms
38:	learn: 23.1678305	total: 212ms	remaining: 331ms
39:	learn: 22.9660692	total: 217ms	remaining: 325ms
40:	learn: 22.7102548	total: 221ms	remaining: 319ms
41:	learn: 22.5152447	total: 226ms	remaining: 312ms
42:	learn: 22.2967100	total: 231ms	remaining: 306ms
43:	learn: 22.0869517	total: 236ms	remaining: 300ms
44:	learn: 21.8556497	total: 241ms	remaining: 294ms
45:	learn: 21.7036804	total: 245ms	remaining: 288ms
46:	learn: 21.4792011	total: 250ms	remaining: 282ms
47:	learn: 21.2830384	total: 255ms	remaining: 276ms
48:	learn: 21.0771837	total: 259ms	remaining: 270ms
49:	learn: 20.8824468	total: 264ms	remaining: 264ms
50:	learn: 20.7250875	total: 269ms	remaining: 258ms
51:	learn: 20.5564423	total: 274ms	remaining: 253ms
52:	learn: 20.4067403	total: 279ms	remaining: 247ms
53:	learn: 20.2674808	total: 284ms	remaining: 242ms
54:	learn: 20.1394249	total: 289ms	remaining: 237ms
55:	learn: 19.9748016	total: 294ms	remaining: 231ms
56:	learn: 19.8159522	total: 299ms	remaining: 225ms
57:	learn: 19.6811073	total: 304ms	remaining: 220ms
58:	learn: 19.5083232	total: 308ms	remaining: 214ms
59:	learn: 19.3949390	total: 310ms	remaining: 207ms
60:	learn: 19.2485728	total: 315ms	remaining: 202ms
61:	learn: 19.1255523	total: 320ms	remaining: 196ms
62:	learn: 18.9423320	total: 325ms	remaining: 191ms
63:	learn: 18.7794545	total: 330ms	remaining: 185ms
64:	learn: 18.6339033	total: 334ms	remaining: 180ms
65:	learn: 18.5188724	total: 339ms	remaining: 175ms
66:	learn: 18.3398412	total: 344ms	remaining: 170ms
67:	learn: 18.2873427	total: 350ms	remaining: 165ms
68:	learn: 18.1287092	total: 358ms	remaining: 161ms
69:	learn: 18.0163474	total: 365ms	remaining: 156ms
70:	learn: 17.9428395	total: 372ms	remaining: 152ms
71:	learn: 17.7906087	total: 378ms	remaining: 147ms
72:	learn: 17.6121088	total: 383ms	remaining: 142ms
73:	learn: 17.5136572	total: 391ms	remaining: 137ms
74:	learn: 17.3837993	total: 397ms	remaining: 132ms
75:	learn: 17.3015647	total: 403ms	remaining: 127ms
76:	learn: 17.1991252	total: 409ms	remaining: 122ms
77:	learn: 17.0854777	total: 415ms	remaining: 117ms
78:	learn: 17.0308269	total: 421ms	remaining: 112ms
79:	learn: 16.9754807	total: 426ms	remaining: 107ms
80:	learn: 16.9174907	total: 432ms	remaining: 101ms
81:	learn: 16.7962603	total: 437ms	remaining: 96ms
82:	learn: 16.6685446	total: 443ms	remaining: 90.8ms
83:	learn: 16.5812672	total: 449ms	remaining: 85.5ms
84:	learn: 16.4896026	total: 454ms	remaining: 80.2ms
85:	learn: 16.4023414	total: 459ms	remaining: 74.8ms
86:	learn: 16.3093718	total: 465ms	remaining: 69.5ms
87:	learn: 16.2409040	total: 471ms	remaining: 64.2ms
88:	learn: 16.1616213	total: 477ms	remaining: 59ms
89:	learn: 16.0825203	total: 482ms	remaining: 53.6ms
90:	learn: 16.0204931	total: 487ms	remaining: 48.2ms
91:	learn: 15.9741267	total: 492ms	remaining: 42.8ms
92:	learn: 15.9413725	total: 497ms	remaining: 37.4ms
93:	learn: 15.8762295	total: 502ms	remaining: 32ms
94:	learn: 15.8165812	total: 507ms	remaining: 26.7ms
95:	learn: 15.7244343	total: 511ms	remaining: 21.3ms
96:	learn: 15.6537033	total: 516ms	remaining: 16ms
97:	learn: 15.6052320	total: 521ms	remaining: 10.6ms
98:	learn: 15.5434930	total: 526ms	remaining: 5.31ms
99:	learn: 15.4452106	total: 531ms	remaining: 0us
0:	learn: 46.5387280	total: 8.68ms	remaining: 859ms
1:	learn: 45.8605074	total: 17.1ms	remaining: 840ms
2:	learn: 45.2237152	total: 24.7ms	remaining: 799ms
3:	learn: 44.4158454	total: 30.4ms	remaining: 729ms
4:	learn: 43.7177384	total: 37.5ms	remaining: 712ms
5:	learn: 42.9896372	total: 42.9ms	remaining: 672ms
6:	learn: 42.3639431	total: 48.3ms	remaining: 641ms
7:	learn: 41.6648406	total: 53.4ms	remaining: 614ms
8:	learn: 41.0681442	total: 58.6ms	remaining: 593ms
9:	learn: 40.4478745	total: 63.8ms	remaining: 574ms
10:	learn: 40.0398470	total: 68.7ms	remaining: 556ms
11:	learn: 39.3300888	total: 74.1ms	remaining: 543ms
12:	learn: 38.9198991	total: 79.1ms	remaining: 529ms
13:	learn: 38.4022666	total: 83.6ms	remaining: 514ms
14:	learn: 37.9124629	total: 88.7ms	remaining: 503ms
15:	learn: 37.3846174	total: 93.5ms	remaining: 491ms
16:	learn: 36.8502348	total: 98.1ms	remaining: 479ms
17:	learn: 36.5079755	total: 103ms	remaining: 469ms
18:	learn: 36.1239339	total: 108ms	remaining: 460ms
19:	learn: 35.8388688	total: 113ms	remaining: 451ms
20:	learn: 35.4915710	total: 119ms	remaining: 446ms
21:	learn: 34.9483623	total: 124ms	remaining: 439ms
22:	learn: 34.6033866	total: 129ms	remaining: 432ms
23:	learn: 34.1483341	total: 134ms	remaining: 425ms
24:	learn: 33.7626484	total: 140ms	remaining: 419ms
25:	learn: 33.4160820	total: 145ms	remaining: 412ms
26:	learn: 33.0421483	total: 150ms	remaining: 406ms
27:	learn: 32.6573469	total: 155ms	remaining: 398ms
28:	learn: 32.2672417	total: 160ms	remaining: 392ms
29:	learn: 31.8257441	total: 165ms	remaining: 385ms
30:	learn: 31.3394923	total: 170ms	remaining: 378ms
31:	learn: 30.9472894	total: 175ms	remaining: 372ms
32:	learn: 30.6961423	total: 180ms	remaining: 366ms
33:	learn: 30.4670615	total: 185ms	remaining: 360ms
34:	learn: 30.1495001	total: 190ms	remaining: 354ms
35:	learn: 29.8071763	total: 196ms	remaining: 348ms
36:	learn: 29.5255984	total: 201ms	remaining: 341ms
37:	learn: 29.2236758	total: 206ms	remaining: 336ms
38:	learn: 28.9199699	total: 230ms	remaining: 360ms
39:	learn: 28.7003989	total: 238ms	remaining: 357ms
40:	learn: 28.4681160	total: 244ms	remaining: 351ms
41:	learn: 28.2692668	total: 250ms	remaining: 345ms
42:	learn: 27.9327254	total: 256ms	remaining: 339ms
43:	learn: 27.7193597	total: 261ms	remaining: 333ms
44:	learn: 27.4061006	total: 267ms	remaining: 327ms
45:	learn: 27.1840910	total: 273ms	remaining: 321ms
46:	learn: 26.8943816	total: 279ms	remaining: 314ms
47:	learn: 26.6576617	total: 284ms	remaining: 308ms
48:	learn: 26.3230094	total: 290ms	remaining: 302ms
49:	learn: 26.0488483	total: 295ms	remaining: 295ms
50:	learn: 25.7795537	total: 302ms	remaining: 290ms
51:	learn: 25.6103781	total: 307ms	remaining: 284ms
52:	learn: 25.4107383	total: 312ms	remaining: 277ms
53:	learn: 25.1757211	total: 317ms	remaining: 270ms
54:	learn: 24.8949842	total: 321ms	remaining: 263ms
55:	learn: 24.7028694	total: 326ms	remaining: 256ms
56:	learn: 24.4033555	total: 331ms	remaining: 250ms
57:	learn: 24.2109268	total: 336ms	remaining: 243ms
58:	learn: 24.0697623	total: 340ms	remaining: 237ms
59:	learn: 23.8291672	total: 345ms	remaining: 230ms
60:	learn: 23.5972471	total: 350ms	remaining: 224ms
61:	learn: 23.4241182	total: 355ms	remaining: 217ms
62:	learn: 23.2617022	total: 359ms	remaining: 211ms
63:	learn: 23.0329448	total: 364ms	remaining: 205ms
64:	learn: 22.9108081	total: 369ms	remaining: 199ms
65:	learn: 22.8001962	total: 374ms	remaining: 193ms
66:	learn: 22.6861907	total: 379ms	remaining: 187ms
67:	learn: 22.5152895	total: 385ms	remaining: 181ms
68:	learn: 22.3734214	total: 390ms	remaining: 175ms
69:	learn: 22.1840754	total: 395ms	remaining: 169ms
70:	learn: 22.0732908	total: 400ms	remaining: 163ms
71:	learn: 21.8880456	total: 405ms	remaining: 158ms
72:	learn: 21.7838784	total: 412ms	remaining: 152ms
73:	learn: 21.5532885	total: 420ms	remaining: 148ms
74:	learn: 21.3998735	total: 428ms	remaining: 143ms
75:	learn: 21.2699824	total: 434ms	remaining: 137ms
76:	learn: 21.1077652	total: 441ms	remaining: 132ms
77:	learn: 20.9759102	total: 445ms	remaining: 126ms
78:	learn: 20.7531342	total: 450ms	remaining: 120ms
79:	learn: 20.6729631	total: 455ms	remaining: 114ms
80:	learn: 20.4903474	total: 460ms	remaining: 108ms
81:	learn: 20.3708622	total: 465ms	remaining: 102ms
82:	learn: 20.2627857	total: 471ms	remaining: 96.5ms
83:	learn: 20.1335464	total: 477ms	remaining: 90.8ms
84:	learn: 20.0100864	total: 482ms	remaining: 85ms
85:	learn: 19.9374357	total: 486ms	remaining: 79.2ms
86:	learn: 19.8383097	total: 492ms	remaining: 73.5ms
87:	learn: 19.7804443	total: 497ms	remaining: 67.7ms
88:	learn: 19.7225631	total: 501ms	remaining: 62ms
89:	learn: 19.5851849	total: 506ms	remaining: 56.2ms
90:	learn: 19.5115923	total: 511ms	remaining: 50.6ms
91:	learn: 19.3986485	total: 516ms	remaining: 44.9ms
92:	learn: 19.2465728	total: 521ms	remaining: 39.2ms
93:	learn: 19.2033796	total: 525ms	remaining: 33.5ms
94:	learn: 19.1234096	total: 530ms	remaining: 27.9ms
95:	learn: 19.0080161	total: 535ms	remaining: 22.3ms
96:	learn: 18.9048698	total: 540ms	remaining: 16.7ms
97:	learn: 18.7901500	total: 544ms	remaining: 11.1ms
98:	learn: 18.6759882	total: 549ms	remaining: 5.55ms
99:	learn: 18.6254590	total: 554ms	remaining: 0us
0:	learn: 46.0359105	total: 5.61ms	remaining: 555ms
1:	learn: 45.4503059	total: 13ms	remaining: 639ms
2:	learn: 44.6478680	total: 22.1ms	remaining: 715ms
3:	learn: 43.7932387	total: 35.3ms	remaining: 847ms
4:	learn: 43.2236036	total: 43ms	remaining: 818ms
5:	learn: 42.4339181	total: 48.5ms	remaining: 760ms
6:	learn: 41.8906461	total: 54.3ms	remaining: 721ms
7:	learn: 41.2248707	total: 60.8ms	remaining: 699ms
8:	learn: 40.5934570	total: 66.3ms	remaining: 670ms
9:	learn: 39.9204661	total: 72ms	remaining: 648ms
10:	learn: 39.3972458	total: 77.9ms	remaining: 630ms
11:	learn: 38.9220493	total: 83.6ms	remaining: 613ms
12:	learn: 38.2358406	total: 89.8ms	remaining: 601ms
13:	learn: 37.7089336	total: 95.5ms	remaining: 586ms
14:	learn: 37.3714255	total: 101ms	remaining: 571ms
15:	learn: 36.8098537	total: 107ms	remaining: 562ms
16:	learn: 36.2818695	total: 113ms	remaining: 552ms
17:	learn: 35.8807734	total: 118ms	remaining: 537ms
18:	learn: 35.3850720	total: 123ms	remaining: 525ms
19:	learn: 35.0622365	total: 128ms	remaining: 511ms
20:	learn: 34.7088655	total: 133ms	remaining: 499ms
21:	learn: 34.2869861	total: 137ms	remaining: 487ms
22:	learn: 33.9798756	total: 142ms	remaining: 475ms
23:	learn: 33.6933850	total: 147ms	remaining: 464ms
24:	learn: 33.3542725	total: 151ms	remaining: 454ms
25:	learn: 33.1531104	total: 156ms	remaining: 444ms
26:	learn: 32.7581499	total: 161ms	remaining: 435ms
27:	learn: 32.4953289	total: 166ms	remaining: 426ms
28:	learn: 32.1636511	total: 170ms	remaining: 416ms
29:	learn: 31.7179908	total: 175ms	remaining: 408ms
30:	learn: 31.2828971	total: 180ms	remaining: 400ms
31:	learn: 30.8954632	total: 184ms	remaining: 392ms
32:	learn: 30.6156466	total: 189ms	remaining: 385ms
33:	learn: 30.4325331	total: 195ms	remaining: 378ms
34:	learn: 30.1680270	total: 200ms	remaining: 371ms
35:	learn: 29.8372162	total: 205ms	remaining: 364ms
36:	learn: 29.5018241	total: 210ms	remaining: 357ms
37:	learn: 29.2660228	total: 215ms	remaining: 351ms
38:	learn: 28.9172883	total: 220ms	remaining: 344ms
39:	learn: 28.7004790	total: 225ms	remaining: 338ms
40:	learn: 28.5188438	total: 230ms	remaining: 331ms
41:	learn: 28.3064887	total: 235ms	remaining: 325ms
42:	learn: 27.9584462	total: 240ms	remaining: 319ms
43:	learn: 27.6654603	total: 246ms	remaining: 313ms
44:	learn: 27.3698139	total: 250ms	remaining: 306ms
45:	learn: 27.1825629	total: 255ms	remaining: 300ms
46:	learn: 26.9938719	total: 264ms	remaining: 297ms
47:	learn: 26.7385850	total: 272ms	remaining: 294ms
48:	learn: 26.5055251	total: 280ms	remaining: 291ms
49:	learn: 26.3264840	total: 285ms	remaining: 285ms
50:	learn: 26.1314307	total: 291ms	remaining: 280ms
51:	learn: 25.9514770	total: 296ms	remaining: 274ms
52:	learn: 25.7272663	total: 301ms	remaining: 267ms
53:	learn: 25.4554234	total: 306ms	remaining: 261ms
54:	learn: 25.2133674	total: 311ms	remaining: 254ms
55:	learn: 24.9612149	total: 316ms	remaining: 248ms
56:	learn: 24.6788780	total: 321ms	remaining: 242ms
57:	learn: 24.4504703	total: 326ms	remaining: 236ms
58:	learn: 24.3261542	total: 330ms	remaining: 230ms
59:	learn: 24.1217621	total: 335ms	remaining: 223ms
60:	learn: 23.9495725	total: 340ms	remaining: 217ms
61:	learn: 23.7848565	total: 345ms	remaining: 211ms
62:	learn: 23.6627081	total: 350ms	remaining: 205ms
63:	learn: 23.4390407	total: 355ms	remaining: 200ms
64:	learn: 23.2556312	total: 360ms	remaining: 194ms
65:	learn: 23.1796337	total: 365ms	remaining: 188ms
66:	learn: 23.0431987	total: 370ms	remaining: 182ms
67:	learn: 22.9300366	total: 374ms	remaining: 176ms
68:	learn: 22.8321895	total: 379ms	remaining: 170ms
69:	learn: 22.7825840	total: 384ms	remaining: 165ms
70:	learn: 22.6907764	total: 389ms	remaining: 159ms
71:	learn: 22.5080460	total: 394ms	remaining: 153ms
72:	learn: 22.4053282	total: 399ms	remaining: 147ms
73:	learn: 22.2698085	total: 403ms	remaining: 142ms
74:	learn: 22.0951825	total: 409ms	remaining: 136ms
75:	learn: 21.9933994	total: 414ms	remaining: 131ms
76:	learn: 21.8043413	total: 419ms	remaining: 125ms
77:	learn: 21.7259032	total: 424ms	remaining: 120ms
78:	learn: 21.5625358	total: 429ms	remaining: 114ms
79:	learn: 21.4316837	total: 434ms	remaining: 109ms
80:	learn: 21.2270985	total: 440ms	remaining: 103ms
81:	learn: 21.1248573	total: 444ms	remaining: 97.6ms
82:	learn: 21.0879584	total: 449ms	remaining: 92ms
83:	learn: 20.9810177	total: 455ms	remaining: 86.6ms
84:	learn: 20.8986744	total: 461ms	remaining: 81.4ms
85:	learn: 20.8427245	total: 471ms	remaining: 76.6ms
86:	learn: 20.7158681	total: 482ms	remaining: 72ms
87:	learn: 20.6055502	total: 489ms	remaining: 66.6ms
88:	learn: 20.5302059	total: 497ms	remaining: 61.4ms
89:	learn: 20.3936827	total: 503ms	remaining: 55.9ms
90:	learn: 20.2756993	total: 510ms	remaining: 50.5ms
91:	learn: 20.1882826	total: 516ms	remaining: 44.9ms
92:	learn: 20.0346875	total: 523ms	remaining: 39.4ms
93:	learn: 19.9798652	total: 528ms	remaining: 33.7ms
94:	learn: 19.9020384	total: 533ms	remaining: 28.1ms
95:	learn: 19.8463755	total: 539ms	remaining: 22.4ms
96:	learn: 19.7426458	total: 544ms	remaining: 16.8ms
97:	learn: 19.6728655	total: 550ms	remaining: 11.2ms
98:	learn: 19.6355104	total: 556ms	remaining: 5.62ms
99:	learn: 19.6074086	total: 561ms	remaining: 0us
0:	learn: 46.7817285	total: 5.33ms	remaining: 528ms
1:	learn: 45.9551634	total: 10ms	remaining: 491ms
2:	learn: 45.0274369	total: 14.7ms	remaining: 476ms
3:	learn: 44.5000950	total: 19.8ms	remaining: 476ms
4:	learn: 43.8963632	total: 24.5ms	remaining: 466ms
5:	learn: 43.2314124	total: 29.3ms	remaining: 459ms
6:	learn: 42.5780140	total: 34.4ms	remaining: 457ms
7:	learn: 41.9033077	total: 39.3ms	remaining: 452ms
8:	learn: 41.3161907	total: 44.4ms	remaining: 449ms
9:	learn: 40.7747000	total: 49.8ms	remaining: 448ms
10:	learn: 40.2728122	total: 54.7ms	remaining: 443ms
11:	learn: 39.7786608	total: 60ms	remaining: 440ms
12:	learn: 39.0812090	total: 68.6ms	remaining: 459ms
13:	learn: 38.6205762	total: 76.5ms	remaining: 470ms
14:	learn: 38.2894236	total: 84.1ms	remaining: 476ms
15:	learn: 37.6906364	total: 89.3ms	remaining: 469ms
16:	learn: 37.3014849	total: 95.8ms	remaining: 468ms
17:	learn: 36.9268494	total: 101ms	remaining: 460ms
18:	learn: 36.6348717	total: 106ms	remaining: 451ms
19:	learn: 36.1567831	total: 111ms	remaining: 443ms
20:	learn: 35.8080754	total: 115ms	remaining: 434ms
21:	learn: 35.4288913	total: 120ms	remaining: 426ms
22:	learn: 35.0910168	total: 125ms	remaining: 418ms
23:	learn: 34.7483277	total: 130ms	remaining: 410ms
24:	learn: 34.5077203	total: 134ms	remaining: 402ms
25:	learn: 34.1830247	total: 139ms	remaining: 395ms
26:	learn: 33.7943837	total: 144ms	remaining: 388ms
27:	learn: 33.3736582	total: 148ms	remaining: 382ms
28:	learn: 32.9133996	total: 153ms	remaining: 375ms
29:	learn: 32.4361653	total: 158ms	remaining: 369ms
30:	learn: 31.9630085	total: 163ms	remaining: 363ms
31:	learn: 31.5994894	total: 168ms	remaining: 357ms
32:	learn: 31.3120059	total: 173ms	remaining: 351ms
33:	learn: 31.0991187	total: 177ms	remaining: 344ms
34:	learn: 30.8055118	total: 182ms	remaining: 338ms
35:	learn: 30.5197359	total: 187ms	remaining: 332ms
36:	learn: 30.1975315	total: 192ms	remaining: 327ms
37:	learn: 29.9797615	total: 196ms	remaining: 321ms
38:	learn: 29.6874864	total: 201ms	remaining: 315ms
39:	learn: 29.4139907	total: 206ms	remaining: 309ms
40:	learn: 29.0472151	total: 211ms	remaining: 303ms
41:	learn: 28.8356285	total: 230ms	remaining: 318ms
42:	learn: 28.5099349	total: 235ms	remaining: 311ms
43:	learn: 28.2009716	total: 240ms	remaining: 305ms
44:	learn: 27.8947534	total: 245ms	remaining: 299ms
45:	learn: 27.6149698	total: 250ms	remaining: 293ms
46:	learn: 27.4780860	total: 254ms	remaining: 287ms
47:	learn: 27.2859119	total: 260ms	remaining: 281ms
48:	learn: 27.0572191	total: 265ms	remaining: 275ms
49:	learn: 26.8916263	total: 270ms	remaining: 270ms
50:	learn: 26.6791967	total: 275ms	remaining: 264ms
51:	learn: 26.4917307	total: 285ms	remaining: 263ms
52:	learn: 26.2957036	total: 297ms	remaining: 263ms
53:	learn: 26.1116543	total: 304ms	remaining: 259ms
54:	learn: 25.8593319	total: 312ms	remaining: 256ms
55:	learn: 25.6957296	total: 318ms	remaining: 250ms
56:	learn: 25.5065213	total: 324ms	remaining: 244ms
57:	learn: 25.3525337	total: 329ms	remaining: 239ms
58:	learn: 25.2197494	total: 335ms	remaining: 233ms
59:	learn: 25.0583799	total: 341ms	remaining: 227ms
60:	learn: 24.8432659	total: 347ms	remaining: 222ms
61:	learn: 24.6585337	total: 353ms	remaining: 216ms
62:	learn: 24.5382571	total: 358ms	remaining: 210ms
63:	learn: 24.3596337	total: 362ms	remaining: 204ms
64:	learn: 24.2009033	total: 368ms	remaining: 198ms
65:	learn: 24.0964080	total: 373ms	remaining: 192ms
66:	learn: 23.9765920	total: 378ms	remaining: 186ms
67:	learn: 23.8638384	total: 384ms	remaining: 181ms
68:	learn: 23.7381861	total: 389ms	remaining: 175ms
69:	learn: 23.5620129	total: 394ms	remaining: 169ms
70:	learn: 23.4494830	total: 399ms	remaining: 163ms
71:	learn: 23.3095806	total: 403ms	remaining: 157ms
72:	learn: 23.1441767	total: 408ms	remaining: 151ms
73:	learn: 22.9983446	total: 413ms	remaining: 145ms
74:	learn: 22.8464764	total: 418ms	remaining: 139ms
75:	learn: 22.7606423	total: 422ms	remaining: 133ms
76:	learn: 22.6095905	total: 427ms	remaining: 128ms
77:	learn: 22.4430506	total: 432ms	remaining: 122ms
78:	learn: 22.2925872	total: 437ms	remaining: 116ms
79:	learn: 22.1806286	total: 441ms	remaining: 110ms
80:	learn: 22.0070525	total: 447ms	remaining: 105ms
81:	learn: 21.9114201	total: 455ms	remaining: 99.8ms
82:	learn: 21.7742884	total: 463ms	remaining: 94.8ms
83:	learn: 21.6372857	total: 472ms	remaining: 89.8ms
84:	learn: 21.5380397	total: 477ms	remaining: 84.3ms
85:	learn: 21.4730146	total: 483ms	remaining: 78.6ms
86:	learn: 21.3236516	total: 488ms	remaining: 73ms
87:	learn: 21.2512101	total: 494ms	remaining: 67.4ms
88:	learn: 21.2192883	total: 499ms	remaining: 61.7ms
89:	learn: 21.0457926	total: 504ms	remaining: 56ms
90:	learn: 20.9986980	total: 508ms	remaining: 50.3ms
91:	learn: 20.9040032	total: 513ms	remaining: 44.6ms
92:	learn: 20.7178547	total: 518ms	remaining: 39ms
93:	learn: 20.6535030	total: 522ms	remaining: 33.3ms
94:	learn: 20.5641982	total: 527ms	remaining: 27.7ms
95:	learn: 20.5355409	total: 532ms	remaining: 22.2ms
96:	learn: 20.4496493	total: 537ms	remaining: 16.6ms
97:	learn: 20.3579862	total: 541ms	remaining: 11ms
98:	learn: 20.2442476	total: 546ms	remaining: 5.51ms
99:	learn: 20.1075813	total: 551ms	remaining: 0us
0:	learn: 27.6506730	total: 4.68ms	remaining: 463ms
1:	learn: 27.1638793	total: 8.88ms	remaining: 435ms
2:	learn: 26.8000665	total: 13.4ms	remaining: 434ms
3:	learn: 26.4256132	total: 17.8ms	remaining: 426ms
4:	learn: 26.0088351	total: 21.9ms	remaining: 417ms
5:	learn: 25.7558298	total: 26.3ms	remaining: 411ms
6:	learn: 25.3380711	total: 30.9ms	remaining: 410ms
7:	learn: 25.0571611	total: 35.3ms	remaining: 406ms
8:	learn: 24.6790148	total: 39.6ms	remaining: 401ms
9:	learn: 24.3600941	total: 43.9ms	remaining: 395ms
10:	learn: 24.1105667	total: 48.7ms	remaining: 394ms
11:	learn: 23.7736542	total: 53.4ms	remaining: 391ms
12:	learn: 23.5824429	total: 58.1ms	remaining: 389ms
13:	learn: 23.2658303	total: 62.7ms	remaining: 385ms
14:	learn: 23.0061886	total: 67.8ms	remaining: 384ms
15:	learn: 22.8060389	total: 72.4ms	remaining: 380ms
16:	learn: 22.5899735	total: 77.3ms	remaining: 377ms
17:	learn: 22.3625048	total: 86.7ms	remaining: 395ms
18:	learn: 22.0706477	total: 97ms	remaining: 413ms
19:	learn: 21.8739394	total: 103ms	remaining: 413ms
20:	learn: 21.6143650	total: 110ms	remaining: 415ms
21:	learn: 21.4571623	total: 116ms	remaining: 410ms
22:	learn: 21.2395769	total: 122ms	remaining: 407ms
23:	learn: 20.9801795	total: 127ms	remaining: 402ms
24:	learn: 20.8036808	total: 132ms	remaining: 396ms
25:	learn: 20.6387539	total: 138ms	remaining: 392ms
26:	learn: 20.4401427	total: 143ms	remaining: 386ms
27:	learn: 20.2879575	total: 148ms	remaining: 382ms
28:	learn: 20.0538664	total: 154ms	remaining: 376ms
29:	learn: 19.8363102	total: 159ms	remaining: 370ms
30:	learn: 19.7015446	total: 164ms	remaining: 365ms
31:	learn: 19.5483114	total: 169ms	remaining: 359ms
32:	learn: 19.4163053	total: 175ms	remaining: 355ms
33:	learn: 19.2880625	total: 179ms	remaining: 348ms
34:	learn: 19.1303389	total: 184ms	remaining: 341ms
35:	learn: 18.9237448	total: 188ms	remaining: 335ms
36:	learn: 18.8142925	total: 193ms	remaining: 328ms
37:	learn: 18.6994696	total: 197ms	remaining: 321ms
38:	learn: 18.5629211	total: 202ms	remaining: 315ms
39:	learn: 18.4600917	total: 206ms	remaining: 309ms
40:	learn: 18.3567139	total: 210ms	remaining: 303ms
41:	learn: 18.2120527	total: 215ms	remaining: 297ms
42:	learn: 18.0688062	total: 219ms	remaining: 291ms
43:	learn: 17.9250181	total: 224ms	remaining: 285ms
44:	learn: 17.8399138	total: 228ms	remaining: 279ms
45:	learn: 17.6720713	total: 233ms	remaining: 274ms
46:	learn: 17.5273091	total: 238ms	remaining: 268ms
47:	learn: 17.4232814	total: 242ms	remaining: 263ms
48:	learn: 17.2957579	total: 247ms	remaining: 257ms
49:	learn: 17.1892874	total: 252ms	remaining: 252ms
50:	learn: 17.0490355	total: 257ms	remaining: 247ms
51:	learn: 16.9666450	total: 261ms	remaining: 241ms
52:	learn: 16.8600056	total: 267ms	remaining: 236ms
53:	learn: 16.7542588	total: 272ms	remaining: 231ms
54:	learn: 16.6316077	total: 278ms	remaining: 227ms
55:	learn: 16.5588112	total: 288ms	remaining: 227ms
56:	learn: 16.5010186	total: 297ms	remaining: 224ms
57:	learn: 16.4081540	total: 303ms	remaining: 220ms
58:	learn: 16.3040451	total: 310ms	remaining: 216ms
59:	learn: 16.1890564	total: 315ms	remaining: 210ms
60:	learn: 16.0977103	total: 320ms	remaining: 204ms
61:	learn: 15.9627607	total: 324ms	remaining: 199ms
62:	learn: 15.9022248	total: 329ms	remaining: 193ms
63:	learn: 15.8151881	total: 333ms	remaining: 188ms
64:	learn: 15.7353125	total: 338ms	remaining: 182ms
65:	learn: 15.6312897	total: 342ms	remaining: 176ms
66:	learn: 15.5330927	total: 347ms	remaining: 171ms
67:	learn: 15.4698681	total: 351ms	remaining: 165ms
68:	learn: 15.4108571	total: 356ms	remaining: 160ms
69:	learn: 15.3492945	total: 360ms	remaining: 154ms
70:	learn: 15.3036540	total: 364ms	remaining: 149ms
71:	learn: 15.2390833	total: 369ms	remaining: 143ms
72:	learn: 15.1556327	total: 374ms	remaining: 138ms
73:	learn: 15.1016315	total: 378ms	remaining: 133ms
74:	learn: 15.0287076	total: 382ms	remaining: 127ms
75:	learn: 14.9530572	total: 387ms	remaining: 122ms
76:	learn: 14.8965517	total: 391ms	remaining: 117ms
77:	learn: 14.8125426	total: 396ms	remaining: 112ms
78:	learn: 14.7435359	total: 400ms	remaining: 106ms
79:	learn: 14.6963163	total: 404ms	remaining: 101ms
80:	learn: 14.6200060	total: 409ms	remaining: 95.8ms
81:	learn: 14.5707760	total: 413ms	remaining: 90.6ms
82:	learn: 14.5053651	total: 417ms	remaining: 85.4ms
83:	learn: 14.4115458	total: 421ms	remaining: 80.3ms
84:	learn: 14.3117159	total: 425ms	remaining: 75.1ms
85:	learn: 14.2511326	total: 430ms	remaining: 70ms
86:	learn: 14.1372486	total: 434ms	remaining: 64.9ms
87:	learn: 14.0992301	total: 439ms	remaining: 59.8ms
88:	learn: 14.0228331	total: 443ms	remaining: 54.8ms
89:	learn: 13.9249836	total: 447ms	remaining: 49.7ms
90:	learn: 13.8679364	total: 452ms	remaining: 44.7ms
91:	learn: 13.8405578	total: 457ms	remaining: 39.7ms
92:	learn: 13.7711325	total: 461ms	remaining: 34.7ms
93:	learn: 13.7357019	total: 466ms	remaining: 29.8ms
94:	learn: 13.6735271	total: 471ms	remaining: 24.8ms
95:	learn: 13.5682393	total: 476ms	remaining: 19.8ms
96:	learn: 13.5342610	total: 485ms	remaining: 15ms
97:	learn: 13.4710034	total: 494ms	remaining: 10.1ms
98:	learn: 13.4022402	total: 502ms	remaining: 5.08ms
99:	learn: 13.3351238	total: 510ms	remaining: 0us
0:	learn: 42.9181702	total: 6.45ms	remaining: 638ms
1:	learn: 42.0286736	total: 11.1ms	remaining: 542ms
2:	learn: 41.2764568	total: 15.4ms	remaining: 498ms
3:	learn: 40.4721918	total: 20ms	remaining: 480ms
4:	learn: 39.8518928	total: 24.3ms	remaining: 461ms
5:	learn: 39.2645479	total: 28.4ms	remaining: 445ms
6:	learn: 38.4453704	total: 32.7ms	remaining: 434ms
7:	learn: 37.7122059	total: 37.3ms	remaining: 428ms
8:	learn: 36.9185796	total: 41.4ms	remaining: 419ms
9:	learn: 36.1668427	total: 46ms	remaining: 414ms
10:	learn: 35.5639029	total: 50.7ms	remaining: 410ms
11:	learn: 34.7724193	total: 55.1ms	remaining: 404ms
12:	learn: 34.3053433	total: 59.3ms	remaining: 397ms
13:	learn: 33.6561327	total: 60.5ms	remaining: 371ms
14:	learn: 33.0134042	total: 64.8ms	remaining: 367ms
15:	learn: 32.4483300	total: 69.3ms	remaining: 364ms
16:	learn: 31.8581144	total: 73.4ms	remaining: 358ms
17:	learn: 31.2858301	total: 77.6ms	remaining: 354ms
18:	learn: 30.8483018	total: 82.2ms	remaining: 351ms
19:	learn: 30.4174622	total: 86.8ms	remaining: 347ms
20:	learn: 29.8994411	total: 91.1ms	remaining: 343ms
21:	learn: 29.5045355	total: 95.5ms	remaining: 339ms
22:	learn: 28.9923519	total: 100ms	remaining: 335ms
23:	learn: 28.4255717	total: 105ms	remaining: 332ms
24:	learn: 28.0283139	total: 110ms	remaining: 329ms
25:	learn: 27.7434814	total: 114ms	remaining: 325ms
26:	learn: 27.2770731	total: 119ms	remaining: 322ms
27:	learn: 26.8928270	total: 124ms	remaining: 319ms
28:	learn: 26.4282671	total: 132ms	remaining: 324ms
29:	learn: 26.0272764	total: 140ms	remaining: 327ms
30:	learn: 25.7579312	total: 147ms	remaining: 327ms
31:	learn: 25.4542434	total: 152ms	remaining: 323ms
32:	learn: 25.1232564	total: 159ms	remaining: 322ms
33:	learn: 24.8110795	total: 163ms	remaining: 316ms
34:	learn: 24.5077579	total: 168ms	remaining: 311ms
35:	learn: 24.1909000	total: 172ms	remaining: 306ms
36:	learn: 23.8719468	total: 177ms	remaining: 301ms
37:	learn: 23.5764366	total: 178ms	remaining: 290ms
38:	learn: 23.3468086	total: 182ms	remaining: 285ms
39:	learn: 23.0908771	total: 187ms	remaining: 280ms
40:	learn: 22.8580876	total: 192ms	remaining: 276ms
41:	learn: 22.6060825	total: 196ms	remaining: 270ms
42:	learn: 22.4125407	total: 200ms	remaining: 265ms
43:	learn: 22.1990617	total: 204ms	remaining: 260ms
44:	learn: 21.9716164	total: 209ms	remaining: 256ms
45:	learn: 21.8360935	total: 214ms	remaining: 251ms
46:	learn: 21.6169256	total: 218ms	remaining: 246ms
47:	learn: 21.4620612	total: 223ms	remaining: 242ms
48:	learn: 21.2894194	total: 228ms	remaining: 237ms
49:	learn: 21.1066266	total: 232ms	remaining: 232ms
50:	learn: 20.9484898	total: 237ms	remaining: 227ms
51:	learn: 20.7195338	total: 241ms	remaining: 222ms
52:	learn: 20.4899740	total: 245ms	remaining: 218ms
53:	learn: 20.3356583	total: 250ms	remaining: 213ms
54:	learn: 20.0754393	total: 254ms	remaining: 208ms
55:	learn: 19.9199159	total: 259ms	remaining: 203ms
56:	learn: 19.7761128	total: 263ms	remaining: 199ms
57:	learn: 19.6533060	total: 268ms	remaining: 194ms
58:	learn: 19.5113942	total: 272ms	remaining: 189ms
59:	learn: 19.3985022	total: 276ms	remaining: 184ms
60:	learn: 19.2683443	total: 281ms	remaining: 180ms
61:	learn: 19.1460824	total: 285ms	remaining: 175ms
62:	learn: 19.0042655	total: 290ms	remaining: 170ms
63:	learn: 18.8720873	total: 294ms	remaining: 166ms
64:	learn: 18.7183888	total: 299ms	remaining: 161ms
65:	learn: 18.5472360	total: 304ms	remaining: 156ms
66:	learn: 18.3976642	total: 308ms	remaining: 152ms
67:	learn: 18.2282851	total: 313ms	remaining: 147ms
68:	learn: 18.1469157	total: 318ms	remaining: 143ms
69:	learn: 18.0649494	total: 323ms	remaining: 138ms
70:	learn: 17.9485405	total: 331ms	remaining: 135ms
71:	learn: 17.8460261	total: 338ms	remaining: 131ms
72:	learn: 17.7679843	total: 346ms	remaining: 128ms
73:	learn: 17.5989290	total: 353ms	remaining: 124ms
74:	learn: 17.4381322	total: 359ms	remaining: 120ms
75:	learn: 17.3370886	total: 364ms	remaining: 115ms
76:	learn: 17.2675308	total: 370ms	remaining: 110ms
77:	learn: 17.1946430	total: 375ms	remaining: 106ms
78:	learn: 17.0923725	total: 380ms	remaining: 101ms
79:	learn: 17.0537265	total: 386ms	remaining: 96.4ms
80:	learn: 16.9456831	total: 391ms	remaining: 91.7ms
81:	learn: 16.8457353	total: 396ms	remaining: 86.9ms
82:	learn: 16.7469310	total: 400ms	remaining: 82ms
83:	learn: 16.6679953	total: 405ms	remaining: 77.1ms
84:	learn: 16.6274189	total: 409ms	remaining: 72.3ms
85:	learn: 16.5516530	total: 414ms	remaining: 67.4ms
86:	learn: 16.4886066	total: 419ms	remaining: 62.6ms
87:	learn: 16.3947859	total: 424ms	remaining: 57.8ms
88:	learn: 16.3406495	total: 430ms	remaining: 53.1ms
89:	learn: 16.3019195	total: 435ms	remaining: 48.3ms
90:	learn: 16.1860681	total: 439ms	remaining: 43.4ms
91:	learn: 16.1282812	total: 443ms	remaining: 38.5ms
92:	learn: 16.0303652	total: 447ms	remaining: 33.7ms
93:	learn: 15.9561692	total: 452ms	remaining: 28.8ms
94:	learn: 15.8733994	total: 456ms	remaining: 24ms
95:	learn: 15.8108833	total: 460ms	remaining: 19.2ms
96:	learn: 15.7606004	total: 464ms	remaining: 14.4ms
97:	learn: 15.6984664	total: 469ms	remaining: 9.57ms
98:	learn: 15.6223632	total: 473ms	remaining: 4.78ms
99:	learn: 15.5671136	total: 478ms	remaining: 0us
0:	learn: 46.4788614	total: 2.99ms	remaining: 296ms
1:	learn: 45.7608372	total: 10.2ms	remaining: 498ms
2:	learn: 44.8825004	total: 16.2ms	remaining: 524ms
3:	learn: 44.0362738	total: 21.1ms	remaining: 505ms
4:	learn: 43.2086374	total: 26.6ms	remaining: 506ms
5:	learn: 42.5835773	total: 31.1ms	remaining: 488ms
6:	learn: 41.9673269	total: 36.3ms	remaining: 482ms
7:	learn: 41.4748717	total: 40.9ms	remaining: 470ms
8:	learn: 40.7129183	total: 45.2ms	remaining: 458ms
9:	learn: 39.8900884	total: 49.8ms	remaining: 449ms
10:	learn: 39.4142193	total: 54.5ms	remaining: 441ms
11:	learn: 38.8645613	total: 58.7ms	remaining: 431ms
12:	learn: 38.2394731	total: 63.2ms	remaining: 423ms
13:	learn: 37.6834515	total: 67.3ms	remaining: 413ms
14:	learn: 37.0673507	total: 72.1ms	remaining: 409ms
15:	learn: 36.4728340	total: 77.2ms	remaining: 405ms
16:	learn: 36.0489086	total: 81.8ms	remaining: 399ms
17:	learn: 35.4744141	total: 86ms	remaining: 392ms
18:	learn: 35.0106021	total: 90.6ms	remaining: 386ms
19:	learn: 34.5586053	total: 95.3ms	remaining: 381ms
20:	learn: 34.1308223	total: 100ms	remaining: 377ms
21:	learn: 33.7701450	total: 105ms	remaining: 371ms
22:	learn: 33.4425444	total: 110ms	remaining: 367ms
23:	learn: 33.0296412	total: 114ms	remaining: 362ms
24:	learn: 32.6359803	total: 119ms	remaining: 357ms
25:	learn: 32.1846182	total: 124ms	remaining: 352ms
26:	learn: 31.7620230	total: 128ms	remaining: 347ms
27:	learn: 31.4669337	total: 133ms	remaining: 342ms
28:	learn: 31.0792062	total: 138ms	remaining: 337ms
29:	learn: 30.7970537	total: 142ms	remaining: 332ms
30:	learn: 30.4952215	total: 147ms	remaining: 327ms
31:	learn: 30.2845344	total: 151ms	remaining: 322ms
32:	learn: 29.9592732	total: 157ms	remaining: 318ms
33:	learn: 29.6798596	total: 161ms	remaining: 313ms
34:	learn: 29.3368905	total: 166ms	remaining: 308ms
35:	learn: 29.0621238	total: 171ms	remaining: 305ms
36:	learn: 28.6445375	total: 177ms	remaining: 301ms
37:	learn: 28.2418096	total: 182ms	remaining: 296ms
38:	learn: 27.9495390	total: 187ms	remaining: 292ms
39:	learn: 27.6958160	total: 192ms	remaining: 288ms
40:	learn: 27.4811189	total: 197ms	remaining: 283ms
41:	learn: 27.1494420	total: 204ms	remaining: 282ms
42:	learn: 26.8388873	total: 213ms	remaining: 283ms
43:	learn: 26.5721300	total: 224ms	remaining: 286ms
44:	learn: 26.3384738	total: 232ms	remaining: 284ms
45:	learn: 26.1894781	total: 238ms	remaining: 279ms
46:	learn: 25.9580198	total: 243ms	remaining: 274ms
47:	learn: 25.7897985	total: 249ms	remaining: 269ms
48:	learn: 25.6000271	total: 254ms	remaining: 264ms
49:	learn: 25.4130873	total: 259ms	remaining: 259ms
50:	learn: 25.1699061	total: 264ms	remaining: 254ms
51:	learn: 24.9324449	total: 269ms	remaining: 249ms
52:	learn: 24.7729152	total: 275ms	remaining: 243ms
53:	learn: 24.5026563	total: 280ms	remaining: 238ms
54:	learn: 24.2332627	total: 284ms	remaining: 233ms
55:	learn: 23.9611984	total: 290ms	remaining: 228ms
56:	learn: 23.7862603	total: 295ms	remaining: 223ms
57:	learn: 23.6318154	total: 301ms	remaining: 218ms
58:	learn: 23.4443306	total: 305ms	remaining: 212ms
59:	learn: 23.2581425	total: 310ms	remaining: 206ms
60:	learn: 23.0549901	total: 314ms	remaining: 201ms
61:	learn: 22.8666218	total: 318ms	remaining: 195ms
62:	learn: 22.6956739	total: 322ms	remaining: 189ms
63:	learn: 22.5068544	total: 327ms	remaining: 184ms
64:	learn: 22.1859147	total: 331ms	remaining: 178ms
65:	learn: 22.0462043	total: 335ms	remaining: 173ms
66:	learn: 21.9329563	total: 339ms	remaining: 167ms
67:	learn: 21.8029736	total: 344ms	remaining: 162ms
68:	learn: 21.6861091	total: 348ms	remaining: 157ms
69:	learn: 21.4838140	total: 353ms	remaining: 151ms
70:	learn: 21.3548921	total: 357ms	remaining: 146ms
71:	learn: 21.2244517	total: 361ms	remaining: 141ms
72:	learn: 21.0702958	total: 366ms	remaining: 135ms
73:	learn: 20.9224662	total: 370ms	remaining: 130ms
74:	learn: 20.8150357	total: 375ms	remaining: 125ms
75:	learn: 20.6962739	total: 380ms	remaining: 120ms
76:	learn: 20.5809258	total: 384ms	remaining: 115ms
77:	learn: 20.4735470	total: 389ms	remaining: 110ms
78:	learn: 20.3778167	total: 393ms	remaining: 105ms
79:	learn: 20.2211268	total: 398ms	remaining: 99.6ms
80:	learn: 20.1478678	total: 403ms	remaining: 94.6ms
81:	learn: 20.1032967	total: 408ms	remaining: 89.5ms
82:	learn: 19.9236300	total: 412ms	remaining: 84.5ms
83:	learn: 19.8151745	total: 421ms	remaining: 80.3ms
84:	learn: 19.7099856	total: 429ms	remaining: 75.7ms
85:	learn: 19.6264833	total: 436ms	remaining: 71ms
86:	learn: 19.4916361	total: 441ms	remaining: 65.9ms
87:	learn: 19.4050529	total: 447ms	remaining: 60.9ms
88:	learn: 19.2547065	total: 451ms	remaining: 55.7ms
89:	learn: 19.1610225	total: 455ms	remaining: 50.6ms
90:	learn: 19.0898958	total: 459ms	remaining: 45.4ms
91:	learn: 19.0489664	total: 464ms	remaining: 40.3ms
92:	learn: 18.9206240	total: 468ms	remaining: 35.2ms
93:	learn: 18.8636239	total: 473ms	remaining: 30.2ms
94:	learn: 18.8126187	total: 477ms	remaining: 25.1ms
95:	learn: 18.7579275	total: 482ms	remaining: 20.1ms
96:	learn: 18.6382753	total: 486ms	remaining: 15ms
97:	learn: 18.5397334	total: 490ms	remaining: 10ms
98:	learn: 18.4375951	total: 494ms	remaining: 4.99ms
99:	learn: 18.4033755	total: 498ms	remaining: 0us
0:	learn: 46.1068821	total: 1.97ms	remaining: 195ms
1:	learn: 45.3970261	total: 6.1ms	remaining: 299ms
2:	learn: 44.8732696	total: 10.4ms	remaining: 335ms
3:	learn: 44.1290184	total: 14.9ms	remaining: 358ms
4:	learn: 43.3290271	total: 19.4ms	remaining: 368ms
5:	learn: 42.7069090	total: 23.5ms	remaining: 369ms
6:	learn: 42.0572971	total: 28.1ms	remaining: 373ms
7:	learn: 41.4797924	total: 32.6ms	remaining: 375ms
8:	learn: 41.0023122	total: 37.1ms	remaining: 375ms
9:	learn: 40.5330570	total: 41ms	remaining: 369ms
10:	learn: 39.9726545	total: 45.8ms	remaining: 370ms
11:	learn: 39.3044053	total: 50.5ms	remaining: 370ms
12:	learn: 38.8169735	total: 57.8ms	remaining: 387ms
13:	learn: 38.2458761	total: 64.7ms	remaining: 397ms
14:	learn: 37.6280321	total: 71.9ms	remaining: 408ms
15:	learn: 37.0800610	total: 79ms	remaining: 415ms
16:	learn: 36.5489363	total: 84.4ms	remaining: 412ms
17:	learn: 36.0981456	total: 91.2ms	remaining: 415ms
18:	learn: 35.6956274	total: 97.2ms	remaining: 414ms
19:	learn: 35.1471999	total: 103ms	remaining: 411ms
20:	learn: 34.6235408	total: 109ms	remaining: 409ms
21:	learn: 34.1987018	total: 115ms	remaining: 406ms
22:	learn: 33.8985062	total: 121ms	remaining: 404ms
23:	learn: 33.3869017	total: 127ms	remaining: 402ms
24:	learn: 32.9100550	total: 132ms	remaining: 396ms
25:	learn: 32.4156208	total: 137ms	remaining: 391ms
26:	learn: 31.9320493	total: 143ms	remaining: 387ms
27:	learn: 31.5711468	total: 148ms	remaining: 382ms
28:	learn: 31.2404433	total: 154ms	remaining: 378ms
29:	learn: 30.8807946	total: 160ms	remaining: 374ms
30:	learn: 30.5948438	total: 165ms	remaining: 368ms
31:	learn: 30.3885560	total: 172ms	remaining: 364ms
32:	learn: 30.0625101	total: 178ms	remaining: 361ms
33:	learn: 29.9113114	total: 183ms	remaining: 355ms
34:	learn: 29.6983470	total: 188ms	remaining: 348ms
35:	learn: 29.4775849	total: 193ms	remaining: 342ms
36:	learn: 29.0538055	total: 198ms	remaining: 336ms
37:	learn: 28.6792318	total: 202ms	remaining: 330ms
38:	learn: 28.4231383	total: 207ms	remaining: 323ms
39:	learn: 28.1078565	total: 211ms	remaining: 317ms
40:	learn: 27.9079179	total: 216ms	remaining: 311ms
41:	learn: 27.6721506	total: 221ms	remaining: 305ms
42:	learn: 27.4228033	total: 225ms	remaining: 299ms
43:	learn: 27.1740534	total: 230ms	remaining: 293ms
44:	learn: 26.8584071	total: 235ms	remaining: 287ms
45:	learn: 26.6902083	total: 239ms	remaining: 281ms
46:	learn: 26.4855335	total: 244ms	remaining: 275ms
47:	learn: 26.2730822	total: 249ms	remaining: 270ms
48:	learn: 26.1058689	total: 254ms	remaining: 264ms
49:	learn: 25.8587318	total: 259ms	remaining: 259ms
50:	learn: 25.7558005	total: 265ms	remaining: 254ms
51:	learn: 25.5846925	total: 269ms	remaining: 249ms
52:	learn: 25.4249887	total: 279ms	remaining: 247ms
53:	learn: 25.1911054	total: 287ms	remaining: 244ms
54:	learn: 25.0544755	total: 294ms	remaining: 240ms
55:	learn: 24.8874006	total: 299ms	remaining: 235ms
56:	learn: 24.7736279	total: 304ms	remaining: 230ms
57:	learn: 24.6156255	total: 308ms	remaining: 223ms
58:	learn: 24.3962421	total: 313ms	remaining: 217ms
59:	learn: 24.2685129	total: 317ms	remaining: 211ms
60:	learn: 24.1874096	total: 321ms	remaining: 205ms
61:	learn: 24.0394287	total: 326ms	remaining: 200ms
62:	learn: 23.9281768	total: 330ms	remaining: 194ms
63:	learn: 23.7423900	total: 334ms	remaining: 188ms
64:	learn: 23.6015209	total: 339ms	remaining: 182ms
65:	learn: 23.4677943	total: 343ms	remaining: 177ms
66:	learn: 23.3215256	total: 348ms	remaining: 171ms
67:	learn: 23.1869360	total: 352ms	remaining: 166ms
68:	learn: 22.9691180	total: 356ms	remaining: 160ms
69:	learn: 22.7531657	total: 361ms	remaining: 155ms
70:	learn: 22.6133477	total: 365ms	remaining: 149ms
71:	learn: 22.3452758	total: 369ms	remaining: 144ms
72:	learn: 22.2065350	total: 373ms	remaining: 138ms
73:	learn: 22.1071155	total: 378ms	remaining: 133ms
74:	learn: 21.9740686	total: 382ms	remaining: 127ms
75:	learn: 21.8892033	total: 386ms	remaining: 122ms
76:	learn: 21.8267882	total: 390ms	remaining: 116ms
77:	learn: 21.7423479	total: 394ms	remaining: 111ms
78:	learn: 21.6242075	total: 399ms	remaining: 106ms
79:	learn: 21.5016910	total: 403ms	remaining: 101ms
80:	learn: 21.4806623	total: 404ms	remaining: 94.7ms
81:	learn: 21.3166637	total: 408ms	remaining: 89.6ms
82:	learn: 21.2222534	total: 413ms	remaining: 84.5ms
83:	learn: 21.1535708	total: 417ms	remaining: 79.4ms
84:	learn: 21.0858902	total: 421ms	remaining: 74.4ms
85:	learn: 20.9206003	total: 426ms	remaining: 69.3ms
86:	learn: 20.8674695	total: 430ms	remaining: 64.3ms
87:	learn: 20.8089875	total: 435ms	remaining: 59.3ms
88:	learn: 20.7085401	total: 439ms	remaining: 54.3ms
89:	learn: 20.5513468	total: 444ms	remaining: 49.4ms
90:	learn: 20.4586742	total: 449ms	remaining: 44.4ms
91:	learn: 20.3932149	total: 454ms	remaining: 39.5ms
92:	learn: 20.3000895	total: 459ms	remaining: 34.5ms
93:	learn: 20.2254009	total: 467ms	remaining: 29.8ms
94:	learn: 20.1750050	total: 474ms	remaining: 24.9ms
95:	learn: 20.0715579	total: 485ms	remaining: 20.2ms
96:	learn: 19.9920082	total: 493ms	remaining: 15.3ms
97:	learn: 19.9664401	total: 499ms	remaining: 10.2ms
98:	learn: 19.8689673	total: 505ms	remaining: 5.1ms
99:	learn: 19.7537356	total: 510ms	remaining: 0us
0:	learn: 46.8832143	total: 5.68ms	remaining: 563ms
1:	learn: 45.8700349	total: 10.2ms	remaining: 502ms
2:	learn: 45.0546867	total: 14.9ms	remaining: 482ms
3:	learn: 44.2829439	total: 19.2ms	remaining: 460ms
4:	learn: 43.4609042	total: 23.7ms	remaining: 451ms
5:	learn: 42.6754991	total: 28.7ms	remaining: 450ms
6:	learn: 41.9234935	total: 33.2ms	remaining: 442ms
7:	learn: 41.3987518	total: 37.6ms	remaining: 432ms
8:	learn: 40.6625066	total: 42.3ms	remaining: 428ms
9:	learn: 40.0029561	total: 46.7ms	remaining: 420ms
10:	learn: 39.3897033	total: 51.6ms	remaining: 417ms
11:	learn: 38.7741453	total: 56.6ms	remaining: 415ms
12:	learn: 38.1201100	total: 61.6ms	remaining: 412ms
13:	learn: 37.5129454	total: 66.4ms	remaining: 408ms
14:	learn: 37.2062206	total: 71.2ms	remaining: 404ms
15:	learn: 36.6831741	total: 76.4ms	remaining: 401ms
16:	learn: 36.2902788	total: 81.1ms	remaining: 396ms
17:	learn: 35.7639930	total: 85.6ms	remaining: 390ms
18:	learn: 35.2580953	total: 90.7ms	remaining: 387ms
19:	learn: 34.7809739	total: 95.9ms	remaining: 384ms
20:	learn: 34.1330433	total: 101ms	remaining: 378ms
21:	learn: 33.7302219	total: 105ms	remaining: 373ms
22:	learn: 33.3502495	total: 110ms	remaining: 368ms
23:	learn: 33.0067804	total: 115ms	remaining: 363ms
24:	learn: 32.6897855	total: 122ms	remaining: 367ms
25:	learn: 32.4361119	total: 130ms	remaining: 371ms
26:	learn: 32.1278981	total: 138ms	remaining: 373ms
27:	learn: 31.7863721	total: 143ms	remaining: 368ms
28:	learn: 31.4791450	total: 149ms	remaining: 366ms
29:	learn: 31.1760161	total: 153ms	remaining: 358ms
30:	learn: 30.9238888	total: 158ms	remaining: 351ms
31:	learn: 30.5500905	total: 162ms	remaining: 345ms
32:	learn: 30.3078126	total: 166ms	remaining: 338ms
33:	learn: 30.0480921	total: 170ms	remaining: 331ms
34:	learn: 29.8623884	total: 174ms	remaining: 324ms
35:	learn: 29.5991038	total: 179ms	remaining: 318ms
36:	learn: 29.4061161	total: 183ms	remaining: 312ms
37:	learn: 29.0269515	total: 187ms	remaining: 305ms
38:	learn: 28.8224959	total: 191ms	remaining: 299ms
39:	learn: 28.6417843	total: 196ms	remaining: 294ms
40:	learn: 28.3633368	total: 200ms	remaining: 288ms
41:	learn: 28.0200246	total: 204ms	remaining: 282ms
42:	learn: 27.7221254	total: 208ms	remaining: 276ms
43:	learn: 27.5105818	total: 213ms	remaining: 271ms
44:	learn: 27.3551010	total: 217ms	remaining: 265ms
45:	learn: 27.0787522	total: 221ms	remaining: 259ms
46:	learn: 26.8726317	total: 225ms	remaining: 253ms
47:	learn: 26.8003277	total: 229ms	remaining: 248ms
48:	learn: 26.5493785	total: 233ms	remaining: 243ms
49:	learn: 26.3699550	total: 238ms	remaining: 238ms
50:	learn: 26.1519631	total: 243ms	remaining: 233ms
51:	learn: 25.9277325	total: 247ms	remaining: 228ms
52:	learn: 25.7286035	total: 252ms	remaining: 223ms
53:	learn: 25.4999193	total: 257ms	remaining: 219ms
54:	learn: 25.3434703	total: 262ms	remaining: 214ms
55:	learn: 25.1497545	total: 266ms	remaining: 209ms
56:	learn: 24.9498143	total: 271ms	remaining: 204ms
57:	learn: 24.6509390	total: 276ms	remaining: 200ms
58:	learn: 24.5576144	total: 280ms	remaining: 195ms
59:	learn: 24.4265144	total: 285ms	remaining: 190ms
60:	learn: 24.3100706	total: 290ms	remaining: 185ms
61:	learn: 24.1727952	total: 295ms	remaining: 181ms
62:	learn: 24.0478558	total: 301ms	remaining: 177ms
63:	learn: 23.9124577	total: 306ms	remaining: 172ms
64:	learn: 23.7703718	total: 311ms	remaining: 167ms
65:	learn: 23.5975027	total: 316ms	remaining: 163ms
66:	learn: 23.4318077	total: 323ms	remaining: 159ms
67:	learn: 23.3099691	total: 332ms	remaining: 156ms
68:	learn: 23.1947982	total: 344ms	remaining: 155ms
69:	learn: 23.0260174	total: 350ms	remaining: 150ms
70:	learn: 22.8523100	total: 358ms	remaining: 146ms
71:	learn: 22.8028534	total: 364ms	remaining: 141ms
72:	learn: 22.6880658	total: 369ms	remaining: 136ms
73:	learn: 22.5956809	total: 374ms	remaining: 131ms
74:	learn: 22.4692932	total: 380ms	remaining: 127ms
75:	learn: 22.2863504	total: 385ms	remaining: 122ms
76:	learn: 22.1911237	total: 390ms	remaining: 117ms
77:	learn: 22.1098391	total: 396ms	remaining: 112ms
78:	learn: 22.0182738	total: 401ms	remaining: 107ms
79:	learn: 21.9306746	total: 405ms	remaining: 101ms
80:	learn: 21.7508233	total: 411ms	remaining: 96.4ms
81:	learn: 21.7108446	total: 416ms	remaining: 91.3ms
82:	learn: 21.5931852	total: 421ms	remaining: 86.2ms
83:	learn: 21.4480361	total: 425ms	remaining: 81ms
84:	learn: 21.3092119	total: 429ms	remaining: 75.8ms
85:	learn: 21.2605557	total: 434ms	remaining: 70.6ms
86:	learn: 21.1123597	total: 438ms	remaining: 65.4ms
87:	learn: 21.0115642	total: 442ms	remaining: 60.3ms
88:	learn: 20.9389040	total: 446ms	remaining: 55.2ms
89:	learn: 20.8300300	total: 451ms	remaining: 50.1ms
90:	learn: 20.7159733	total: 455ms	remaining: 45ms
91:	learn: 20.6282090	total: 460ms	remaining: 40ms
92:	learn: 20.5164529	total: 464ms	remaining: 34.9ms
93:	learn: 20.4692032	total: 468ms	remaining: 29.9ms
94:	learn: 20.3768451	total: 472ms	remaining: 24.9ms
95:	learn: 20.2808056	total: 477ms	remaining: 19.9ms
96:	learn: 20.2082089	total: 481ms	remaining: 14.9ms
97:	learn: 20.1698768	total: 486ms	remaining: 9.91ms
98:	learn: 20.1048816	total: 490ms	remaining: 4.95ms
99:	learn: 20.0086159	total: 494ms	remaining: 0us
0:	learn: 27.6242191	total: 25.3ms	remaining: 7.55s
1:	learn: 27.3247973	total: 49.7ms	remaining: 7.41s
2:	learn: 26.9048262	total: 73.1ms	remaining: 7.23s
3:	learn: 26.6094870	total: 97.1ms	remaining: 7.19s
4:	learn: 26.2335903	total: 121ms	remaining: 7.12s
5:	learn: 25.9065752	total: 144ms	remaining: 7.05s
6:	learn: 25.6303453	total: 167ms	remaining: 7s
7:	learn: 25.2422673	total: 191ms	remaining: 6.97s
8:	learn: 24.9092185	total: 224ms	remaining: 7.24s
9:	learn: 24.6380278	total: 250ms	remaining: 7.25s
10:	learn: 24.2990126	total: 275ms	remaining: 7.22s
11:	learn: 24.0194492	total: 300ms	remaining: 7.2s
12:	learn: 23.7720807	total: 325ms	remaining: 7.18s
13:	learn: 23.4419462	total: 350ms	remaining: 7.15s
14:	learn: 23.2366857	total: 375ms	remaining: 7.12s
15:	learn: 22.9901263	total: 378ms	remaining: 6.71s
16:	learn: 22.7775050	total: 404ms	remaining: 6.72s
17:	learn: 22.5290799	total: 430ms	remaining: 6.73s
18:	learn: 22.2427201	total: 463ms	remaining: 6.85s
19:	learn: 21.9766361	total: 489ms	remaining: 6.85s
20:	learn: 21.7608475	total: 515ms	remaining: 6.85s
21:	learn: 21.5756818	total: 542ms	remaining: 6.84s
22:	learn: 21.3753018	total: 567ms	remaining: 6.83s
23:	learn: 21.1715384	total: 592ms	remaining: 6.8s
24:	learn: 20.9557317	total: 617ms	remaining: 6.79s
25:	learn: 20.7653390	total: 642ms	remaining: 6.77s
26:	learn: 20.5688623	total: 669ms	remaining: 6.76s
27:	learn: 20.3753201	total: 705ms	remaining: 6.84s
28:	learn: 20.2087140	total: 730ms	remaining: 6.82s
29:	learn: 20.0437127	total: 756ms	remaining: 6.81s
30:	learn: 19.7939404	total: 782ms	remaining: 6.79s
31:	learn: 19.6135511	total: 806ms	remaining: 6.75s
32:	learn: 19.4223949	total: 831ms	remaining: 6.72s
33:	learn: 19.3099062	total: 855ms	remaining: 6.69s
34:	learn: 19.1471296	total: 885ms	remaining: 6.7s
35:	learn: 18.9602406	total: 911ms	remaining: 6.68s
36:	learn: 18.8463205	total: 935ms	remaining: 6.65s
37:	learn: 18.5993654	total: 959ms	remaining: 6.61s
38:	learn: 18.4547850	total: 983ms	remaining: 6.58s
39:	learn: 18.3265698	total: 1.01s	remaining: 6.54s
40:	learn: 18.1552052	total: 1.03s	remaining: 6.5s
41:	learn: 17.9969729	total: 1.05s	remaining: 6.47s
42:	learn: 17.8420506	total: 1.08s	remaining: 6.45s
43:	learn: 17.7314471	total: 1.1s	remaining: 6.42s
44:	learn: 17.6037885	total: 1.14s	remaining: 6.45s
45:	learn: 17.4911598	total: 1.16s	remaining: 6.42s
46:	learn: 17.3334650	total: 1.19s	remaining: 6.4s
47:	learn: 17.1964435	total: 1.21s	remaining: 6.37s
48:	learn: 17.0705369	total: 1.24s	remaining: 6.35s
49:	learn: 16.9282293	total: 1.26s	remaining: 6.31s
50:	learn: 16.7996947	total: 1.29s	remaining: 6.28s
51:	learn: 16.6978905	total: 1.31s	remaining: 6.26s
52:	learn: 16.5793323	total: 1.34s	remaining: 6.26s
53:	learn: 16.4770669	total: 1.37s	remaining: 6.23s
54:	learn: 16.3655624	total: 1.39s	remaining: 6.2s
55:	learn: 16.2604369	total: 1.42s	remaining: 6.17s
56:	learn: 16.1431440	total: 1.44s	remaining: 6.14s
57:	learn: 16.0326605	total: 1.46s	remaining: 6.11s
58:	learn: 15.9323014	total: 1.49s	remaining: 6.08s
59:	learn: 15.8025601	total: 1.51s	remaining: 6.05s
60:	learn: 15.6963178	total: 1.55s	remaining: 6.08s
61:	learn: 15.6270773	total: 1.58s	remaining: 6.05s
62:	learn: 15.5313112	total: 1.6s	remaining: 6.02s
63:	learn: 15.4399515	total: 1.63s	remaining: 6s
64:	learn: 15.3597117	total: 1.65s	remaining: 5.97s
65:	learn: 15.2697176	total: 1.67s	remaining: 5.93s
66:	learn: 15.1828907	total: 1.7s	remaining: 5.9s
67:	learn: 15.0961490	total: 1.72s	remaining: 5.87s
68:	learn: 15.0128613	total: 1.75s	remaining: 5.85s
69:	learn: 14.9098281	total: 1.78s	remaining: 5.85s
70:	learn: 14.8290802	total: 1.8s	remaining: 5.82s
71:	learn: 14.7354294	total: 1.83s	remaining: 5.79s
72:	learn: 14.6593235	total: 1.85s	remaining: 5.77s
73:	learn: 14.5723402	total: 1.88s	remaining: 5.74s
74:	learn: 14.4986819	total: 1.9s	remaining: 5.71s
75:	learn: 14.4087447	total: 1.93s	remaining: 5.69s
76:	learn: 14.3357763	total: 1.97s	remaining: 5.69s
77:	learn: 14.2423286	total: 1.99s	remaining: 5.67s
78:	learn: 14.1791552	total: 2.02s	remaining: 5.65s
79:	learn: 14.0970307	total: 2.04s	remaining: 5.62s
80:	learn: 14.0336692	total: 2.07s	remaining: 5.6s
81:	learn: 13.9758100	total: 2.1s	remaining: 5.57s
82:	learn: 13.9111969	total: 2.12s	remaining: 5.55s
83:	learn: 13.8350945	total: 2.15s	remaining: 5.53s
84:	learn: 13.7593569	total: 2.18s	remaining: 5.52s
85:	learn: 13.6953120	total: 2.21s	remaining: 5.49s
86:	learn: 13.6352452	total: 2.23s	remaining: 5.47s
87:	learn: 13.5794275	total: 2.26s	remaining: 5.44s
88:	learn: 13.4880894	total: 2.28s	remaining: 5.42s
89:	learn: 13.4305792	total: 2.31s	remaining: 5.39s
90:	learn: 13.3569291	total: 2.33s	remaining: 5.36s
91:	learn: 13.2958628	total: 2.36s	remaining: 5.33s
92:	learn: 13.2338079	total: 2.39s	remaining: 5.32s
93:	learn: 13.1821114	total: 2.42s	remaining: 5.31s
94:	learn: 13.1082697	total: 2.45s	remaining: 5.28s
95:	learn: 13.0475619	total: 2.47s	remaining: 5.25s
96:	learn: 12.9878324	total: 2.5s	remaining: 5.24s
97:	learn: 12.9294785	total: 2.53s	remaining: 5.21s
98:	learn: 12.8646231	total: 2.55s	remaining: 5.18s
99:	learn: 12.8003027	total: 2.58s	remaining: 5.16s
100:	learn: 12.6741024	total: 2.61s	remaining: 5.15s
101:	learn: 12.5871778	total: 2.64s	remaining: 5.12s
102:	learn: 12.5199785	total: 2.66s	remaining: 5.09s
103:	learn: 12.4533348	total: 2.69s	remaining: 5.07s
104:	learn: 12.4014303	total: 2.71s	remaining: 5.04s
105:	learn: 12.3404648	total: 2.74s	remaining: 5.01s
106:	learn: 12.2853908	total: 2.76s	remaining: 4.98s
107:	learn: 12.2113131	total: 2.79s	remaining: 4.95s
108:	learn: 12.1443818	total: 2.82s	remaining: 4.94s
109:	learn: 12.0782972	total: 2.84s	remaining: 4.91s
110:	learn: 12.0242888	total: 2.87s	remaining: 4.89s
111:	learn: 11.9606186	total: 2.9s	remaining: 4.86s
112:	learn: 11.8840123	total: 2.92s	remaining: 4.83s
113:	learn: 11.8362234	total: 2.95s	remaining: 4.81s
114:	learn: 11.7798600	total: 2.97s	remaining: 4.78s
115:	learn: 11.7205583	total: 3s	remaining: 4.75s
116:	learn: 11.6703154	total: 3.03s	remaining: 4.74s
117:	learn: 11.5906207	total: 3.05s	remaining: 4.71s
118:	learn: 11.5392300	total: 3.08s	remaining: 4.68s
119:	learn: 11.5009891	total: 3.1s	remaining: 4.65s
120:	learn: 11.4496613	total: 3.12s	remaining: 4.62s
121:	learn: 11.3880593	total: 3.15s	remaining: 4.59s
122:	learn: 11.3343840	total: 3.17s	remaining: 4.57s
123:	learn: 11.2903777	total: 3.2s	remaining: 4.54s
124:	learn: 11.2226066	total: 3.22s	remaining: 4.51s
125:	learn: 11.1756503	total: 3.25s	remaining: 4.49s
126:	learn: 11.1266674	total: 3.28s	remaining: 4.47s
127:	learn: 11.0542744	total: 3.31s	remaining: 4.44s
128:	learn: 11.0132226	total: 3.33s	remaining: 4.42s
129:	learn: 10.9545179	total: 3.36s	remaining: 4.39s
130:	learn: 10.9167977	total: 3.38s	remaining: 4.36s
131:	learn: 10.8607094	total: 3.4s	remaining: 4.33s
132:	learn: 10.8081246	total: 3.43s	remaining: 4.31s
133:	learn: 10.7595004	total: 3.46s	remaining: 4.28s
134:	learn: 10.6949228	total: 3.49s	remaining: 4.26s
135:	learn: 10.6549608	total: 3.51s	remaining: 4.24s
136:	learn: 10.6085016	total: 3.54s	remaining: 4.21s
137:	learn: 10.5530774	total: 3.56s	remaining: 4.18s
138:	learn: 10.5146132	total: 3.58s	remaining: 4.15s
139:	learn: 10.4804263	total: 3.61s	remaining: 4.13s
140:	learn: 10.4469935	total: 3.63s	remaining: 4.1s
141:	learn: 10.4083597	total: 3.66s	remaining: 4.07s
142:	learn: 10.3700272	total: 3.69s	remaining: 4.05s
143:	learn: 10.3240531	total: 3.72s	remaining: 4.03s
144:	learn: 10.2838387	total: 3.74s	remaining: 4s
145:	learn: 10.2237396	total: 3.77s	remaining: 3.98s
146:	learn: 10.1677493	total: 3.79s	remaining: 3.95s
147:	learn: 10.1289528	total: 3.82s	remaining: 3.92s
148:	learn: 10.0918869	total: 3.84s	remaining: 3.89s
149:	learn: 10.0599014	total: 3.87s	remaining: 3.87s
150:	learn: 9.9817438	total: 3.89s	remaining: 3.84s
151:	learn: 9.9410469	total: 3.92s	remaining: 3.82s
152:	learn: 9.8790383	total: 3.95s	remaining: 3.79s
153:	learn: 9.8489714	total: 3.97s	remaining: 3.77s
154:	learn: 9.8192539	total: 4s	remaining: 3.74s
155:	learn: 9.7595292	total: 4.02s	remaining: 3.71s
156:	learn: 9.7305132	total: 4.04s	remaining: 3.68s
157:	learn: 9.6946431	total: 4.07s	remaining: 3.66s
158:	learn: 9.6382391	total: 4.09s	remaining: 3.63s
159:	learn: 9.5932080	total: 4.12s	remaining: 3.6s
160:	learn: 9.5528662	total: 4.15s	remaining: 3.58s
161:	learn: 9.5112954	total: 4.17s	remaining: 3.56s
162:	learn: 9.4782229	total: 4.2s	remaining: 3.53s
163:	learn: 9.4469139	total: 4.22s	remaining: 3.5s
164:	learn: 9.4073553	total: 4.25s	remaining: 3.48s
165:	learn: 9.3658459	total: 4.27s	remaining: 3.45s
166:	learn: 9.3331509	total: 4.3s	remaining: 3.42s
167:	learn: 9.3022193	total: 4.32s	remaining: 3.4s
168:	learn: 9.2687355	total: 4.35s	remaining: 3.37s
169:	learn: 9.2347395	total: 4.38s	remaining: 3.35s
170:	learn: 9.1946963	total: 4.4s	remaining: 3.32s
171:	learn: 9.1669467	total: 4.42s	remaining: 3.29s
172:	learn: 9.1174548	total: 4.45s	remaining: 3.27s
173:	learn: 9.0578865	total: 4.47s	remaining: 3.24s
174:	learn: 9.0242697	total: 4.5s	remaining: 3.21s
175:	learn: 8.9812385	total: 4.53s	remaining: 3.19s
176:	learn: 8.9394173	total: 4.56s	remaining: 3.17s
177:	learn: 8.8954630	total: 4.59s	remaining: 3.15s
178:	learn: 8.8650625	total: 4.62s	remaining: 3.12s
179:	learn: 8.8128518	total: 4.64s	remaining: 3.1s
180:	learn: 8.7713941	total: 4.67s	remaining: 3.07s
181:	learn: 8.7271373	total: 4.7s	remaining: 3.04s
182:	learn: 8.6827020	total: 4.72s	remaining: 3.02s
183:	learn: 8.6411197	total: 4.75s	remaining: 3s
184:	learn: 8.6161231	total: 4.78s	remaining: 2.97s
185:	learn: 8.5812975	total: 4.8s	remaining: 2.94s
186:	learn: 8.5494363	total: 4.83s	remaining: 2.92s
187:	learn: 8.5121894	total: 4.86s	remaining: 2.89s
188:	learn: 8.4769543	total: 4.88s	remaining: 2.87s
189:	learn: 8.4285766	total: 4.91s	remaining: 2.84s
190:	learn: 8.4032474	total: 4.93s	remaining: 2.81s
191:	learn: 8.3791298	total: 4.95s	remaining: 2.79s
192:	learn: 8.3494894	total: 4.98s	remaining: 2.76s
193:	learn: 8.3153327	total: 5.02s	remaining: 2.74s
194:	learn: 8.2823004	total: 5.04s	remaining: 2.71s
195:	learn: 8.2449482	total: 5.07s	remaining: 2.69s
196:	learn: 8.2013567	total: 5.09s	remaining: 2.66s
197:	learn: 8.1697337	total: 5.12s	remaining: 2.64s
198:	learn: 8.1265833	total: 5.14s	remaining: 2.61s
199:	learn: 8.0905433	total: 5.17s	remaining: 2.58s
200:	learn: 8.0669552	total: 5.2s	remaining: 2.56s
201:	learn: 8.0258330	total: 5.22s	remaining: 2.54s
202:	learn: 8.0026168	total: 5.25s	remaining: 2.51s
203:	learn: 7.9482286	total: 5.28s	remaining: 2.48s
204:	learn: 7.9105233	total: 5.3s	remaining: 2.46s
205:	learn: 7.8966891	total: 5.33s	remaining: 2.43s
206:	learn: 7.8575063	total: 5.35s	remaining: 2.4s
207:	learn: 7.8147335	total: 5.38s	remaining: 2.38s
208:	learn: 7.7917140	total: 5.42s	remaining: 2.36s
209:	learn: 7.7607147	total: 5.44s	remaining: 2.33s
210:	learn: 7.7425727	total: 5.47s	remaining: 2.31s
211:	learn: 7.7238288	total: 5.5s	remaining: 2.28s
212:	learn: 7.6985896	total: 5.52s	remaining: 2.25s
213:	learn: 7.6752745	total: 5.55s	remaining: 2.23s
214:	learn: 7.6442259	total: 5.57s	remaining: 2.2s
215:	learn: 7.6325331	total: 5.6s	remaining: 2.18s
216:	learn: 7.6063316	total: 5.63s	remaining: 2.15s
217:	learn: 7.5831832	total: 5.66s	remaining: 2.13s
218:	learn: 7.5672234	total: 5.68s	remaining: 2.1s
219:	learn: 7.5331936	total: 5.71s	remaining: 2.08s
220:	learn: 7.4920831	total: 5.73s	remaining: 2.05s
221:	learn: 7.4737554	total: 5.76s	remaining: 2.02s
222:	learn: 7.4270074	total: 5.78s	remaining: 2s
223:	learn: 7.4017600	total: 5.81s	remaining: 1.97s
224:	learn: 7.3806959	total: 5.84s	remaining: 1.95s
225:	learn: 7.3554017	total: 5.87s	remaining: 1.92s
226:	learn: 7.3409799	total: 5.9s	remaining: 1.9s
227:	learn: 7.3212923	total: 5.92s	remaining: 1.87s
228:	learn: 7.3105787	total: 5.95s	remaining: 1.84s
229:	learn: 7.2892883	total: 5.97s	remaining: 1.82s
230:	learn: 7.2744332	total: 6s	remaining: 1.79s
231:	learn: 7.2520263	total: 6.03s	remaining: 1.77s
232:	learn: 7.2282060	total: 6.06s	remaining: 1.74s
233:	learn: 7.2079652	total: 6.08s	remaining: 1.72s
234:	learn: 7.1916393	total: 6.11s	remaining: 1.69s
235:	learn: 7.1701919	total: 6.13s	remaining: 1.66s
236:	learn: 7.1568798	total: 6.16s	remaining: 1.64s
237:	learn: 7.1311171	total: 6.18s	remaining: 1.61s
238:	learn: 7.1241442	total: 6.21s	remaining: 1.58s
239:	learn: 7.1023502	total: 6.24s	remaining: 1.56s
240:	learn: 7.0871109	total: 6.26s	remaining: 1.53s
241:	learn: 7.0717340	total: 6.3s	remaining: 1.51s
242:	learn: 7.0574975	total: 6.33s	remaining: 1.48s
243:	learn: 7.0489270	total: 6.36s	remaining: 1.46s
244:	learn: 7.0279173	total: 6.38s	remaining: 1.43s
245:	learn: 6.9967234	total: 6.41s	remaining: 1.41s
246:	learn: 6.9827176	total: 6.43s	remaining: 1.38s
247:	learn: 6.9632381	total: 6.45s	remaining: 1.35s
248:	learn: 6.9490747	total: 6.48s	remaining: 1.33s
249:	learn: 6.9350226	total: 6.51s	remaining: 1.3s
250:	learn: 6.9203338	total: 6.53s	remaining: 1.27s
251:	learn: 6.9078713	total: 6.56s	remaining: 1.25s
252:	learn: 6.8997471	total: 6.58s	remaining: 1.22s
253:	learn: 6.8786784	total: 6.61s	remaining: 1.2s
254:	learn: 6.8629866	total: 6.63s	remaining: 1.17s
255:	learn: 6.8497530	total: 6.65s	remaining: 1.14s
256:	learn: 6.8363263	total: 6.68s	remaining: 1.12s
257:	learn: 6.8232778	total: 6.7s	remaining: 1.09s
258:	learn: 6.7952234	total: 6.73s	remaining: 1.06s
259:	learn: 6.7671952	total: 6.76s	remaining: 1.04s
260:	learn: 6.7545126	total: 6.79s	remaining: 1.01s
261:	learn: 6.7414039	total: 6.81s	remaining: 988ms
262:	learn: 6.7307423	total: 6.84s	remaining: 962ms
263:	learn: 6.6887074	total: 6.86s	remaining: 936ms
264:	learn: 6.6786482	total: 6.88s	remaining: 909ms
265:	learn: 6.6520387	total: 6.91s	remaining: 883ms
266:	learn: 6.6371511	total: 6.94s	remaining: 857ms
267:	learn: 6.6139304	total: 6.96s	remaining: 832ms
268:	learn: 6.6024854	total: 6.99s	remaining: 805ms
269:	learn: 6.5811216	total: 7.01s	remaining: 779ms
270:	learn: 6.5396874	total: 7.04s	remaining: 753ms
271:	learn: 6.5260569	total: 7.06s	remaining: 727ms
272:	learn: 6.5161555	total: 7.09s	remaining: 701ms
273:	learn: 6.5055568	total: 7.11s	remaining: 675ms
274:	learn: 6.4955852	total: 7.13s	remaining: 649ms
275:	learn: 6.4768059	total: 7.16s	remaining: 623ms
276:	learn: 6.4526678	total: 7.19s	remaining: 597ms
277:	learn: 6.4407932	total: 7.22s	remaining: 571ms
278:	learn: 6.4229786	total: 7.25s	remaining: 545ms
279:	learn: 6.4143528	total: 7.27s	remaining: 519ms
280:	learn: 6.3939760	total: 7.29s	remaining: 493ms
281:	learn: 6.3821368	total: 7.32s	remaining: 467ms
282:	learn: 6.3733999	total: 7.34s	remaining: 441ms
283:	learn: 6.3506155	total: 7.37s	remaining: 415ms
284:	learn: 6.3456374	total: 7.4s	remaining: 389ms
285:	learn: 6.3423150	total: 7.42s	remaining: 363ms
286:	learn: 6.3323118	total: 7.45s	remaining: 337ms
287:	learn: 6.3209916	total: 7.47s	remaining: 311ms
288:	learn: 6.3017754	total: 7.5s	remaining: 285ms
289:	learn: 6.2738210	total: 7.52s	remaining: 259ms
290:	learn: 6.2684358	total: 7.54s	remaining: 233ms
291:	learn: 6.2546793	total: 7.57s	remaining: 207ms
292:	learn: 6.2441498	total: 7.6s	remaining: 182ms
293:	learn: 6.2406001	total: 7.63s	remaining: 156ms
294:	learn: 6.2308638	total: 7.65s	remaining: 130ms
295:	learn: 6.2166524	total: 7.67s	remaining: 104ms
296:	learn: 6.2029239	total: 7.7s	remaining: 77.8ms
297:	learn: 6.1930984	total: 7.72s	remaining: 51.8ms
298:	learn: 6.1787666	total: 7.75s	remaining: 25.9ms
299:	learn: 6.1715886	total: 7.78s	remaining: 0us
0:	learn: 43.0189040	total: 23.9ms	remaining: 7.16s
1:	learn: 42.1913120	total: 48.4ms	remaining: 7.21s
2:	learn: 41.2381785	total: 72.9ms	remaining: 7.21s
3:	learn: 40.3733911	total: 97.1ms	remaining: 7.19s
4:	learn: 39.7420433	total: 122ms	remaining: 7.2s
5:	learn: 38.9384932	total: 161ms	remaining: 7.87s
6:	learn: 38.2027180	total: 188ms	remaining: 7.87s
7:	learn: 37.5736018	total: 215ms	remaining: 7.87s
8:	learn: 36.9042368	total: 243ms	remaining: 7.86s
9:	learn: 36.1138721	total: 270ms	remaining: 7.83s
10:	learn: 35.4444268	total: 274ms	remaining: 7.19s
11:	learn: 34.7889997	total: 288ms	remaining: 6.91s
12:	learn: 34.3622266	total: 321ms	remaining: 7.08s
13:	learn: 33.6999120	total: 355ms	remaining: 7.26s
14:	learn: 32.9955576	total: 383ms	remaining: 7.28s
15:	learn: 32.3475617	total: 410ms	remaining: 7.27s
16:	learn: 31.9028750	total: 436ms	remaining: 7.25s
17:	learn: 31.3786390	total: 463ms	remaining: 7.25s
18:	learn: 30.9731314	total: 490ms	remaining: 7.24s
19:	learn: 30.5397110	total: 517ms	remaining: 7.23s
20:	learn: 30.0650165	total: 552ms	remaining: 7.33s
21:	learn: 29.4732599	total: 590ms	remaining: 7.46s
22:	learn: 29.0746185	total: 618ms	remaining: 7.44s
23:	learn: 28.5839328	total: 646ms	remaining: 7.43s
24:	learn: 28.2894974	total: 675ms	remaining: 7.43s
25:	learn: 27.7954367	total: 702ms	remaining: 7.4s
26:	learn: 27.3542996	total: 729ms	remaining: 7.37s
27:	learn: 27.0838564	total: 756ms	remaining: 7.34s
28:	learn: 26.7019509	total: 786ms	remaining: 7.35s
29:	learn: 26.3607640	total: 827ms	remaining: 7.45s
30:	learn: 25.9174899	total: 854ms	remaining: 7.41s
31:	learn: 25.5590328	total: 881ms	remaining: 7.38s
32:	learn: 25.1682834	total: 907ms	remaining: 7.34s
33:	learn: 24.8123558	total: 934ms	remaining: 7.31s
34:	learn: 24.5841473	total: 961ms	remaining: 7.28s
35:	learn: 24.2224307	total: 990ms	remaining: 7.26s
36:	learn: 23.9745715	total: 1.03s	remaining: 7.31s
37:	learn: 23.6958493	total: 1.06s	remaining: 7.33s
38:	learn: 23.3890143	total: 1.09s	remaining: 7.29s
39:	learn: 23.1113968	total: 1.12s	remaining: 7.27s
40:	learn: 22.8519880	total: 1.14s	remaining: 7.23s
41:	learn: 22.5944697	total: 1.17s	remaining: 7.2s
42:	learn: 22.3853418	total: 1.2s	remaining: 7.2s
43:	learn: 22.1827007	total: 1.24s	remaining: 7.21s
44:	learn: 22.0186852	total: 1.27s	remaining: 7.17s
45:	learn: 21.7686773	total: 1.3s	remaining: 7.18s
46:	learn: 21.5978489	total: 1.33s	remaining: 7.14s
47:	learn: 21.3542004	total: 1.35s	remaining: 7.12s
48:	learn: 21.1752073	total: 1.38s	remaining: 7.08s
49:	learn: 21.0415246	total: 1.41s	remaining: 7.05s
50:	learn: 20.8441081	total: 1.45s	remaining: 7.07s
51:	learn: 20.5918001	total: 1.48s	remaining: 7.04s
52:	learn: 20.4441208	total: 1.5s	remaining: 7.01s
53:	learn: 20.2679633	total: 1.53s	remaining: 6.98s
54:	learn: 20.1163092	total: 1.57s	remaining: 6.99s
55:	learn: 19.9714704	total: 1.6s	remaining: 6.96s
56:	learn: 19.8249765	total: 1.62s	remaining: 6.93s
57:	learn: 19.6607355	total: 1.66s	remaining: 6.92s
58:	learn: 19.4877956	total: 1.69s	remaining: 6.89s
59:	learn: 19.3053072	total: 1.71s	remaining: 6.85s
60:	learn: 19.1885738	total: 1.74s	remaining: 6.81s
61:	learn: 19.0346503	total: 1.77s	remaining: 6.78s
62:	learn: 18.8347986	total: 1.8s	remaining: 6.77s
63:	learn: 18.6814926	total: 1.83s	remaining: 6.74s
64:	learn: 18.5382672	total: 1.86s	remaining: 6.74s
65:	learn: 18.3895833	total: 1.89s	remaining: 6.71s
66:	learn: 18.2694672	total: 1.92s	remaining: 6.68s
67:	learn: 18.1196051	total: 1.95s	remaining: 6.65s
68:	learn: 17.9925317	total: 1.98s	remaining: 6.62s
69:	learn: 17.8749679	total: 2s	remaining: 6.58s
70:	learn: 17.7225935	total: 2.04s	remaining: 6.58s
71:	learn: 17.5806906	total: 2.07s	remaining: 6.57s
72:	learn: 17.4922570	total: 2.1s	remaining: 6.54s
73:	learn: 17.3984999	total: 2.13s	remaining: 6.51s
74:	learn: 17.3128227	total: 2.16s	remaining: 6.47s
75:	learn: 17.2165163	total: 2.18s	remaining: 6.43s
76:	learn: 17.0889232	total: 2.21s	remaining: 6.4s
77:	learn: 16.9583567	total: 2.24s	remaining: 6.37s
78:	learn: 16.8340539	total: 2.27s	remaining: 6.35s
79:	learn: 16.7346257	total: 2.31s	remaining: 6.35s
80:	learn: 16.6446663	total: 2.34s	remaining: 6.32s
81:	learn: 16.5218155	total: 2.37s	remaining: 6.29s
82:	learn: 16.4054583	total: 2.39s	remaining: 6.26s
83:	learn: 16.2803558	total: 2.42s	remaining: 6.22s
84:	learn: 16.1516324	total: 2.45s	remaining: 6.19s
85:	learn: 16.0643357	total: 2.48s	remaining: 6.16s
86:	learn: 15.9817265	total: 2.51s	remaining: 6.14s
87:	learn: 15.9144474	total: 2.54s	remaining: 6.13s
88:	learn: 15.8380424	total: 2.57s	remaining: 6.09s
89:	learn: 15.7453770	total: 2.6s	remaining: 6.06s
90:	learn: 15.6720653	total: 2.62s	remaining: 6.03s
91:	learn: 15.5626839	total: 2.65s	remaining: 5.99s
92:	learn: 15.4727375	total: 2.68s	remaining: 5.96s
93:	learn: 15.3655885	total: 2.7s	remaining: 5.93s
94:	learn: 15.2496762	total: 2.74s	remaining: 5.92s
95:	learn: 15.1773522	total: 2.78s	remaining: 5.9s
96:	learn: 15.0924366	total: 2.81s	remaining: 5.87s
97:	learn: 15.0082209	total: 2.83s	remaining: 5.84s
98:	learn: 14.9178437	total: 2.86s	remaining: 5.81s
99:	learn: 14.8149449	total: 2.89s	remaining: 5.78s
100:	learn: 14.7450303	total: 2.92s	remaining: 5.75s
101:	learn: 14.6462390	total: 2.94s	remaining: 5.72s
102:	learn: 14.5348825	total: 2.98s	remaining: 5.7s
103:	learn: 14.4483847	total: 3.01s	remaining: 5.67s
104:	learn: 14.4006573	total: 3.04s	remaining: 5.64s
105:	learn: 14.3322113	total: 3.06s	remaining: 5.61s
106:	learn: 14.2471466	total: 3.09s	remaining: 5.58s
107:	learn: 14.1788249	total: 3.12s	remaining: 5.54s
108:	learn: 14.1033594	total: 3.15s	remaining: 5.52s
109:	learn: 14.0161080	total: 3.19s	remaining: 5.51s
110:	learn: 13.9710960	total: 3.21s	remaining: 5.47s
111:	learn: 13.8941529	total: 3.25s	remaining: 5.46s
112:	learn: 13.8246456	total: 3.28s	remaining: 5.43s
113:	learn: 13.7518933	total: 3.31s	remaining: 5.4s
114:	learn: 13.7003709	total: 3.34s	remaining: 5.37s
115:	learn: 13.6359576	total: 3.37s	remaining: 5.35s
116:	learn: 13.6039211	total: 3.4s	remaining: 5.32s
117:	learn: 13.5361545	total: 3.43s	remaining: 5.29s
118:	learn: 13.4554429	total: 3.46s	remaining: 5.26s
119:	learn: 13.3922439	total: 3.48s	remaining: 5.22s
120:	learn: 13.2895862	total: 3.52s	remaining: 5.21s
121:	learn: 13.1749097	total: 3.55s	remaining: 5.17s
122:	learn: 13.1167631	total: 3.58s	remaining: 5.16s
123:	learn: 13.0410984	total: 3.62s	remaining: 5.13s
124:	learn: 12.9506234	total: 3.64s	remaining: 5.1s
125:	learn: 12.8890045	total: 3.67s	remaining: 5.07s
126:	learn: 12.8295606	total: 3.7s	remaining: 5.04s
127:	learn: 12.7634290	total: 3.73s	remaining: 5.01s
128:	learn: 12.6891923	total: 3.76s	remaining: 4.99s
129:	learn: 12.6312306	total: 3.79s	remaining: 4.96s
130:	learn: 12.5802486	total: 3.82s	remaining: 4.93s
131:	learn: 12.5246529	total: 3.85s	remaining: 4.9s
132:	learn: 12.4479017	total: 3.88s	remaining: 4.87s
133:	learn: 12.3930818	total: 3.9s	remaining: 4.84s
134:	learn: 12.3373247	total: 3.93s	remaining: 4.8s
135:	learn: 12.3039291	total: 3.96s	remaining: 4.77s
136:	learn: 12.2583784	total: 3.99s	remaining: 4.75s
137:	learn: 12.1902920	total: 4.02s	remaining: 4.72s
138:	learn: 12.1515651	total: 4.06s	remaining: 4.71s
139:	learn: 12.1008468	total: 4.09s	remaining: 4.67s
140:	learn: 12.0752080	total: 4.12s	remaining: 4.64s
141:	learn: 12.0263787	total: 4.14s	remaining: 4.61s
142:	learn: 11.9709736	total: 4.17s	remaining: 4.58s
143:	learn: 11.9295822	total: 4.2s	remaining: 4.55s
144:	learn: 11.8867911	total: 4.23s	remaining: 4.53s
145:	learn: 11.8179180	total: 4.27s	remaining: 4.5s
146:	learn: 11.7448446	total: 4.29s	remaining: 4.47s
147:	learn: 11.7332909	total: 4.32s	remaining: 4.44s
148:	learn: 11.6907270	total: 4.35s	remaining: 4.41s
149:	learn: 11.6628056	total: 4.37s	remaining: 4.37s
150:	learn: 11.6039432	total: 4.4s	remaining: 4.34s
151:	learn: 11.5752331	total: 4.43s	remaining: 4.31s
152:	learn: 11.5376476	total: 4.46s	remaining: 4.29s
153:	learn: 11.4947632	total: 4.5s	remaining: 4.26s
154:	learn: 11.4484147	total: 4.53s	remaining: 4.23s
155:	learn: 11.3925819	total: 4.55s	remaining: 4.2s
156:	learn: 11.3287384	total: 4.58s	remaining: 4.17s
157:	learn: 11.2566623	total: 4.61s	remaining: 4.14s
158:	learn: 11.2000227	total: 4.64s	remaining: 4.11s
159:	learn: 11.1023408	total: 4.67s	remaining: 4.08s
160:	learn: 11.0489770	total: 4.7s	remaining: 4.06s
161:	learn: 11.0026542	total: 4.73s	remaining: 4.03s
162:	learn: 10.9309626	total: 4.76s	remaining: 4s
163:	learn: 10.8844157	total: 4.79s	remaining: 3.97s
164:	learn: 10.8292008	total: 4.81s	remaining: 3.94s
165:	learn: 10.7365612	total: 4.84s	remaining: 3.91s
166:	learn: 10.6948804	total: 4.87s	remaining: 3.88s
167:	learn: 10.6566665	total: 4.91s	remaining: 3.85s
168:	learn: 10.6219222	total: 4.93s	remaining: 3.82s
169:	learn: 10.5930877	total: 4.97s	remaining: 3.8s
170:	learn: 10.5520362	total: 5s	remaining: 3.77s
171:	learn: 10.5160879	total: 5.02s	remaining: 3.74s
172:	learn: 10.4653972	total: 5.05s	remaining: 3.71s
173:	learn: 10.4164242	total: 5.08s	remaining: 3.68s
174:	learn: 10.3821629	total: 5.11s	remaining: 3.65s
175:	learn: 10.3623975	total: 5.14s	remaining: 3.62s
176:	learn: 10.3095845	total: 5.17s	remaining: 3.59s
177:	learn: 10.2501576	total: 5.2s	remaining: 3.56s
178:	learn: 10.2276060	total: 5.23s	remaining: 3.53s
179:	learn: 10.2052696	total: 5.26s	remaining: 3.5s
180:	learn: 10.1685156	total: 5.28s	remaining: 3.47s
181:	learn: 10.1443775	total: 5.31s	remaining: 3.44s
182:	learn: 10.0531518	total: 5.35s	remaining: 3.42s
183:	learn: 10.0052361	total: 5.38s	remaining: 3.39s
184:	learn: 9.9598299	total: 5.41s	remaining: 3.37s
185:	learn: 9.9062881	total: 5.44s	remaining: 3.33s
186:	learn: 9.8476621	total: 5.47s	remaining: 3.31s
187:	learn: 9.7943755	total: 5.5s	remaining: 3.27s
188:	learn: 9.7545158	total: 5.53s	remaining: 3.25s
189:	learn: 9.7325928	total: 5.56s	remaining: 3.22s
190:	learn: 9.6597076	total: 5.59s	remaining: 3.19s
191:	learn: 9.6049808	total: 5.62s	remaining: 3.16s
192:	learn: 9.5210539	total: 5.64s	remaining: 3.13s
193:	learn: 9.4839833	total: 5.67s	remaining: 3.1s
194:	learn: 9.4030810	total: 5.71s	remaining: 3.07s
195:	learn: 9.3610011	total: 5.73s	remaining: 3.04s
196:	learn: 9.3194779	total: 5.77s	remaining: 3.02s
197:	learn: 9.2866867	total: 5.8s	remaining: 2.99s
198:	learn: 9.2508142	total: 5.83s	remaining: 2.96s
199:	learn: 9.2271576	total: 5.85s	remaining: 2.93s
200:	learn: 9.1740668	total: 5.88s	remaining: 2.9s
201:	learn: 9.1586477	total: 5.91s	remaining: 2.87s
202:	learn: 9.1429015	total: 5.94s	remaining: 2.84s
203:	learn: 9.1133248	total: 5.98s	remaining: 2.81s
204:	learn: 9.0711331	total: 6.01s	remaining: 2.78s
205:	learn: 9.0093562	total: 6.03s	remaining: 2.75s
206:	learn: 8.9859881	total: 6.06s	remaining: 2.72s
207:	learn: 8.9419294	total: 6.09s	remaining: 2.69s
208:	learn: 8.8732493	total: 6.11s	remaining: 2.66s
209:	learn: 8.8186181	total: 6.14s	remaining: 2.63s
210:	learn: 8.7860222	total: 6.18s	remaining: 2.6s
211:	learn: 8.7597312	total: 6.21s	remaining: 2.58s
212:	learn: 8.7305431	total: 6.24s	remaining: 2.55s
213:	learn: 8.6620534	total: 6.27s	remaining: 2.52s
214:	learn: 8.6317582	total: 6.29s	remaining: 2.49s
215:	learn: 8.6021758	total: 6.32s	remaining: 2.46s
216:	learn: 8.5696515	total: 6.35s	remaining: 2.43s
217:	learn: 8.5267761	total: 6.38s	remaining: 2.4s
218:	learn: 8.5135802	total: 6.41s	remaining: 2.37s
219:	learn: 8.4762506	total: 6.45s	remaining: 2.34s
220:	learn: 8.4462181	total: 6.47s	remaining: 2.31s
221:	learn: 8.4167253	total: 6.5s	remaining: 2.28s
222:	learn: 8.3867332	total: 6.53s	remaining: 2.25s
223:	learn: 8.3527829	total: 6.55s	remaining: 2.22s
224:	learn: 8.3221175	total: 6.58s	remaining: 2.19s
225:	learn: 8.3149566	total: 6.61s	remaining: 2.16s
226:	learn: 8.3023601	total: 6.65s	remaining: 2.14s
227:	learn: 8.2720745	total: 6.68s	remaining: 2.11s
228:	learn: 8.2581250	total: 6.71s	remaining: 2.08s
229:	learn: 8.2207983	total: 6.74s	remaining: 2.05s
230:	learn: 8.2083228	total: 6.76s	remaining: 2.02s
231:	learn: 8.1774734	total: 6.79s	remaining: 1.99s
232:	learn: 8.1280317	total: 6.82s	remaining: 1.96s
233:	learn: 8.0969454	total: 6.85s	remaining: 1.93s
234:	learn: 8.0653906	total: 6.88s	remaining: 1.9s
235:	learn: 8.0403548	total: 6.92s	remaining: 1.88s
236:	learn: 8.0309296	total: 6.95s	remaining: 1.85s
237:	learn: 7.9802761	total: 6.97s	remaining: 1.82s
238:	learn: 7.9595062	total: 7s	remaining: 1.79s
239:	learn: 7.9560132	total: 7.03s	remaining: 1.76s
240:	learn: 7.9188077	total: 7.05s	remaining: 1.73s
241:	learn: 7.9129376	total: 7.08s	remaining: 1.7s
242:	learn: 7.8845382	total: 7.12s	remaining: 1.67s
243:	learn: 7.8699627	total: 7.15s	remaining: 1.64s
244:	learn: 7.8332493	total: 7.18s	remaining: 1.61s
245:	learn: 7.7807468	total: 7.21s	remaining: 1.58s
246:	learn: 7.7739426	total: 7.24s	remaining: 1.55s
247:	learn: 7.7384141	total: 7.26s	remaining: 1.52s
248:	learn: 7.7066380	total: 7.29s	remaining: 1.49s
249:	learn: 7.7001271	total: 7.32s	remaining: 1.46s
250:	learn: 7.6846399	total: 7.35s	remaining: 1.44s
251:	learn: 7.6791814	total: 7.38s	remaining: 1.41s
252:	learn: 7.6451688	total: 7.41s	remaining: 1.38s
253:	learn: 7.6117158	total: 7.44s	remaining: 1.35s
254:	learn: 7.6012012	total: 7.47s	remaining: 1.32s
255:	learn: 7.5729959	total: 7.49s	remaining: 1.29s
256:	learn: 7.5370997	total: 7.52s	remaining: 1.26s
257:	learn: 7.5099776	total: 7.55s	remaining: 1.23s
258:	learn: 7.4860975	total: 7.59s	remaining: 1.2s
259:	learn: 7.4566817	total: 7.61s	remaining: 1.17s
260:	learn: 7.4269980	total: 7.65s	remaining: 1.14s
261:	learn: 7.3923465	total: 7.68s	remaining: 1.11s
262:	learn: 7.3675376	total: 7.71s	remaining: 1.08s
263:	learn: 7.3392461	total: 7.73s	remaining: 1.05s
264:	learn: 7.3102490	total: 7.76s	remaining: 1.02s
265:	learn: 7.3010635	total: 7.79s	remaining: 996ms
266:	learn: 7.2733113	total: 7.82s	remaining: 967ms
267:	learn: 7.2683610	total: 7.85s	remaining: 937ms
268:	learn: 7.2532714	total: 7.88s	remaining: 909ms
269:	learn: 7.2444185	total: 7.91s	remaining: 879ms
270:	learn: 7.2300953	total: 7.94s	remaining: 849ms
271:	learn: 7.2077357	total: 7.96s	remaining: 820ms
272:	learn: 7.1843423	total: 7.99s	remaining: 790ms
273:	learn: 7.1754867	total: 8.03s	remaining: 762ms
274:	learn: 7.1395344	total: 8.06s	remaining: 733ms
275:	learn: 7.1342567	total: 8.09s	remaining: 703ms
276:	learn: 7.1116057	total: 8.12s	remaining: 674ms
277:	learn: 7.0822569	total: 8.15s	remaining: 645ms
278:	learn: 7.0731958	total: 8.18s	remaining: 615ms
279:	learn: 7.0576479	total: 8.2s	remaining: 586ms
280:	learn: 7.0354817	total: 8.23s	remaining: 557ms
281:	learn: 7.0277403	total: 8.26s	remaining: 528ms
282:	learn: 7.0028621	total: 8.29s	remaining: 498ms
283:	learn: 6.9820607	total: 8.32s	remaining: 469ms
284:	learn: 6.9645494	total: 8.34s	remaining: 439ms
285:	learn: 6.9563224	total: 8.38s	remaining: 410ms
286:	learn: 6.9482036	total: 8.4s	remaining: 381ms
287:	learn: 6.9116066	total: 8.44s	remaining: 352ms
288:	learn: 6.8884274	total: 8.47s	remaining: 322ms
289:	learn: 6.8632506	total: 8.49s	remaining: 293ms
290:	learn: 6.8447357	total: 8.52s	remaining: 264ms
291:	learn: 6.8242972	total: 8.55s	remaining: 234ms
292:	learn: 6.8012643	total: 8.58s	remaining: 205ms
293:	learn: 6.7800583	total: 8.62s	remaining: 176ms
294:	learn: 6.7687042	total: 8.65s	remaining: 147ms
295:	learn: 6.7454529	total: 8.68s	remaining: 117ms
296:	learn: 6.7227229	total: 8.71s	remaining: 88ms
297:	learn: 6.7004834	total: 8.74s	remaining: 58.7ms
298:	learn: 6.6931313	total: 8.77s	remaining: 29.3ms
299:	learn: 6.6604653	total: 8.79s	remaining: 0us
0:	learn: 46.4449485	total: 36.5ms	remaining: 10.9s
1:	learn: 45.6641003	total: 74.3ms	remaining: 11.1s
2:	learn: 44.9322182	total: 104ms	remaining: 10.3s
3:	learn: 44.1111890	total: 134ms	remaining: 9.88s
4:	learn: 43.2956452	total: 160ms	remaining: 9.44s
5:	learn: 42.6298126	total: 187ms	remaining: 9.16s
6:	learn: 42.0896057	total: 213ms	remaining: 8.93s
7:	learn: 41.2698632	total: 241ms	remaining: 8.78s
8:	learn: 40.4846232	total: 268ms	remaining: 8.67s
9:	learn: 39.7069009	total: 309ms	remaining: 8.95s
10:	learn: 38.9656593	total: 312ms	remaining: 8.2s
11:	learn: 38.5069229	total: 340ms	remaining: 8.15s
12:	learn: 37.8073380	total: 366ms	remaining: 8.09s
13:	learn: 37.3882967	total: 393ms	remaining: 8.02s
14:	learn: 36.8180964	total: 419ms	remaining: 7.97s
15:	learn: 36.2948556	total: 445ms	remaining: 7.91s
16:	learn: 35.6877194	total: 473ms	remaining: 7.88s
17:	learn: 35.3344416	total: 503ms	remaining: 7.88s
18:	learn: 34.8793907	total: 540ms	remaining: 7.99s
19:	learn: 34.3129264	total: 576ms	remaining: 8.06s
20:	learn: 34.0804390	total: 604ms	remaining: 8.03s
21:	learn: 33.4413882	total: 632ms	remaining: 7.99s
22:	learn: 32.9936060	total: 660ms	remaining: 7.94s
23:	learn: 32.6458868	total: 688ms	remaining: 7.91s
24:	learn: 32.3273431	total: 719ms	remaining: 7.91s
25:	learn: 31.8309940	total: 751ms	remaining: 7.91s
26:	learn: 31.4310003	total: 777ms	remaining: 7.86s
27:	learn: 31.1804602	total: 812ms	remaining: 7.89s
28:	learn: 30.8535447	total: 838ms	remaining: 7.83s
29:	learn: 30.4063180	total: 864ms	remaining: 7.78s
30:	learn: 30.1876699	total: 892ms	remaining: 7.74s
31:	learn: 29.8778033	total: 920ms	remaining: 7.7s
32:	learn: 29.6371470	total: 958ms	remaining: 7.75s
33:	learn: 29.3801255	total: 986ms	remaining: 7.71s
34:	learn: 29.1426244	total: 1.01s	remaining: 7.68s
35:	learn: 28.9166951	total: 1.05s	remaining: 7.7s
36:	learn: 28.6597815	total: 1.08s	remaining: 7.65s
37:	learn: 28.3844706	total: 1.1s	remaining: 7.61s
38:	learn: 28.0894923	total: 1.13s	remaining: 7.58s
39:	learn: 27.7571740	total: 1.17s	remaining: 7.58s
40:	learn: 27.4609127	total: 1.19s	remaining: 7.54s
41:	learn: 27.1948352	total: 1.22s	remaining: 7.5s
42:	learn: 26.9507594	total: 1.25s	remaining: 7.45s
43:	learn: 26.6347229	total: 1.28s	remaining: 7.44s
44:	learn: 26.3479735	total: 1.3s	remaining: 7.4s
45:	learn: 26.1335817	total: 1.33s	remaining: 7.36s
46:	learn: 25.8868210	total: 1.36s	remaining: 7.33s
47:	learn: 25.6881647	total: 1.4s	remaining: 7.34s
48:	learn: 25.4764814	total: 1.43s	remaining: 7.31s
49:	learn: 25.2279851	total: 1.46s	remaining: 7.28s
50:	learn: 24.9914875	total: 1.48s	remaining: 7.24s
51:	learn: 24.7951252	total: 1.51s	remaining: 7.21s
52:	learn: 24.6181712	total: 1.54s	remaining: 7.2s
53:	learn: 24.3711141	total: 1.57s	remaining: 7.16s
54:	learn: 24.1983381	total: 1.6s	remaining: 7.15s
55:	learn: 24.0518193	total: 1.63s	remaining: 7.12s
56:	learn: 23.8035754	total: 1.66s	remaining: 7.08s
57:	learn: 23.5891443	total: 1.69s	remaining: 7.04s
58:	learn: 23.3650788	total: 1.71s	remaining: 7s
59:	learn: 23.1423622	total: 1.74s	remaining: 6.97s
60:	learn: 22.9562061	total: 1.78s	remaining: 6.96s
61:	learn: 22.7841608	total: 1.8s	remaining: 6.92s
62:	learn: 22.5259611	total: 1.84s	remaining: 6.93s
63:	learn: 22.3959565	total: 1.87s	remaining: 6.89s
64:	learn: 22.2695041	total: 1.9s	remaining: 6.86s
65:	learn: 22.0116444	total: 1.93s	remaining: 6.83s
66:	learn: 21.8636416	total: 1.95s	remaining: 6.8s
67:	learn: 21.7170816	total: 1.98s	remaining: 6.76s
68:	learn: 21.6130887	total: 2.02s	remaining: 6.76s
69:	learn: 21.4107735	total: 2.05s	remaining: 6.75s
70:	learn: 21.2682184	total: 2.08s	remaining: 6.71s
71:	learn: 21.0421124	total: 2.11s	remaining: 6.68s
72:	learn: 20.8829831	total: 2.13s	remaining: 6.64s
73:	learn: 20.7916905	total: 2.16s	remaining: 6.6s
74:	learn: 20.6572110	total: 2.19s	remaining: 6.56s
75:	learn: 20.4683201	total: 2.21s	remaining: 6.53s
76:	learn: 20.3387806	total: 2.25s	remaining: 6.52s
77:	learn: 20.2301442	total: 2.29s	remaining: 6.51s
78:	learn: 20.1399739	total: 2.31s	remaining: 6.48s
79:	learn: 20.0395988	total: 2.34s	remaining: 6.45s
80:	learn: 19.9529190	total: 2.37s	remaining: 6.41s
81:	learn: 19.8285498	total: 2.4s	remaining: 6.38s
82:	learn: 19.6862504	total: 2.43s	remaining: 6.34s
83:	learn: 19.5764172	total: 2.46s	remaining: 6.32s
84:	learn: 19.4499650	total: 2.49s	remaining: 6.3s
85:	learn: 19.3449362	total: 2.53s	remaining: 6.29s
86:	learn: 19.1854254	total: 2.56s	remaining: 6.26s
87:	learn: 19.0850074	total: 2.58s	remaining: 6.22s
88:	learn: 18.9724934	total: 2.61s	remaining: 6.19s
89:	learn: 18.8778956	total: 2.64s	remaining: 6.16s
90:	learn: 18.7370373	total: 2.67s	remaining: 6.12s
91:	learn: 18.6192464	total: 2.7s	remaining: 6.1s
92:	learn: 18.5100314	total: 2.73s	remaining: 6.08s
93:	learn: 18.4275820	total: 2.77s	remaining: 6.06s
94:	learn: 18.3242001	total: 2.79s	remaining: 6.03s
95:	learn: 18.2110620	total: 2.82s	remaining: 6s
96:	learn: 18.0955256	total: 2.85s	remaining: 5.96s
97:	learn: 17.9941571	total: 2.88s	remaining: 5.93s
98:	learn: 17.8973235	total: 2.91s	remaining: 5.91s
99:	learn: 17.8100972	total: 2.94s	remaining: 5.88s
100:	learn: 17.7386244	total: 2.97s	remaining: 5.85s
101:	learn: 17.6310903	total: 3s	remaining: 5.82s
102:	learn: 17.5516996	total: 3.03s	remaining: 5.79s
103:	learn: 17.4617467	total: 3.05s	remaining: 5.75s
104:	learn: 17.3666766	total: 3.08s	remaining: 5.72s
105:	learn: 17.2221165	total: 3.11s	remaining: 5.69s
106:	learn: 17.0790059	total: 3.14s	remaining: 5.67s
107:	learn: 16.9698310	total: 3.17s	remaining: 5.64s
108:	learn: 16.8969362	total: 3.2s	remaining: 5.61s
109:	learn: 16.7819942	total: 3.24s	remaining: 5.59s
110:	learn: 16.6911902	total: 3.26s	remaining: 5.56s
111:	learn: 16.5519175	total: 3.29s	remaining: 5.53s
112:	learn: 16.3906885	total: 3.33s	remaining: 5.5s
113:	learn: 16.3090927	total: 3.36s	remaining: 5.48s
114:	learn: 16.2205215	total: 3.38s	remaining: 5.45s
115:	learn: 16.1233780	total: 3.41s	remaining: 5.41s
116:	learn: 16.0321663	total: 3.44s	remaining: 5.38s
117:	learn: 15.9579011	total: 3.47s	remaining: 5.35s
118:	learn: 15.8593485	total: 3.5s	remaining: 5.33s
119:	learn: 15.7788251	total: 3.53s	remaining: 5.29s
120:	learn: 15.7287407	total: 3.56s	remaining: 5.27s
121:	learn: 15.5788208	total: 3.59s	remaining: 5.24s
122:	learn: 15.5086549	total: 3.62s	remaining: 5.21s
123:	learn: 15.4364731	total: 3.65s	remaining: 5.18s
124:	learn: 15.3549185	total: 3.68s	remaining: 5.15s
125:	learn: 15.2967084	total: 3.7s	remaining: 5.11s
126:	learn: 15.1872607	total: 3.74s	remaining: 5.09s
127:	learn: 15.0932023	total: 3.77s	remaining: 5.06s
128:	learn: 15.0097364	total: 3.8s	remaining: 5.04s
129:	learn: 14.9463156	total: 3.83s	remaining: 5.01s
130:	learn: 14.8900172	total: 3.85s	remaining: 4.97s
131:	learn: 14.8358826	total: 3.88s	remaining: 4.94s
132:	learn: 14.7553997	total: 3.91s	remaining: 4.91s
133:	learn: 14.6821554	total: 3.94s	remaining: 4.88s
134:	learn: 14.5304879	total: 3.97s	remaining: 4.86s
135:	learn: 14.4324442	total: 4s	remaining: 4.83s
136:	learn: 14.3331494	total: 4.03s	remaining: 4.8s
137:	learn: 14.2753055	total: 4.06s	remaining: 4.77s
138:	learn: 14.1937968	total: 4.09s	remaining: 4.74s
139:	learn: 14.1149360	total: 4.12s	remaining: 4.71s
140:	learn: 14.0475961	total: 4.14s	remaining: 4.67s
141:	learn: 13.9679410	total: 4.17s	remaining: 4.64s
142:	learn: 13.8728976	total: 4.21s	remaining: 4.62s
143:	learn: 13.8088340	total: 4.24s	remaining: 4.59s
144:	learn: 13.7225802	total: 4.27s	remaining: 4.56s
145:	learn: 13.6027859	total: 4.3s	remaining: 4.53s
146:	learn: 13.5360562	total: 4.33s	remaining: 4.5s
147:	learn: 13.4527264	total: 4.35s	remaining: 4.47s
148:	learn: 13.3905685	total: 4.38s	remaining: 4.44s
149:	learn: 13.3231120	total: 4.41s	remaining: 4.41s
150:	learn: 13.2748277	total: 4.43s	remaining: 4.38s
151:	learn: 13.2011042	total: 4.47s	remaining: 4.36s
152:	learn: 13.1113158	total: 4.51s	remaining: 4.33s
153:	learn: 13.0630373	total: 4.54s	remaining: 4.3s
154:	learn: 12.9877054	total: 4.57s	remaining: 4.27s
155:	learn: 12.8975618	total: 4.59s	remaining: 4.24s
156:	learn: 12.8226873	total: 4.62s	remaining: 4.21s
157:	learn: 12.7653176	total: 4.65s	remaining: 4.18s
158:	learn: 12.7032259	total: 4.68s	remaining: 4.15s
159:	learn: 12.6413414	total: 4.72s	remaining: 4.13s
160:	learn: 12.5418162	total: 4.75s	remaining: 4.1s
161:	learn: 12.4761943	total: 4.77s	remaining: 4.07s
162:	learn: 12.4099277	total: 4.8s	remaining: 4.04s
163:	learn: 12.3393405	total: 4.83s	remaining: 4s
164:	learn: 12.2429002	total: 4.85s	remaining: 3.97s
165:	learn: 12.1931336	total: 4.88s	remaining: 3.94s
166:	learn: 12.0509054	total: 4.91s	remaining: 3.91s
167:	learn: 11.9940166	total: 4.96s	remaining: 3.9s
168:	learn: 11.9267615	total: 4.99s	remaining: 3.87s
169:	learn: 11.8595898	total: 5.02s	remaining: 3.84s
170:	learn: 11.7291128	total: 5.05s	remaining: 3.81s
171:	learn: 11.6574232	total: 5.07s	remaining: 3.78s
172:	learn: 11.5771876	total: 5.1s	remaining: 3.75s
173:	learn: 11.4934307	total: 5.14s	remaining: 3.72s
174:	learn: 11.4454134	total: 5.17s	remaining: 3.69s
175:	learn: 11.3829392	total: 5.21s	remaining: 3.67s
176:	learn: 11.2971903	total: 5.23s	remaining: 3.64s
177:	learn: 11.2515029	total: 5.26s	remaining: 3.61s
178:	learn: 11.2046889	total: 5.29s	remaining: 3.58s
179:	learn: 11.1528497	total: 5.32s	remaining: 3.55s
180:	learn: 11.0691294	total: 5.36s	remaining: 3.52s
181:	learn: 11.0191173	total: 5.39s	remaining: 3.49s
182:	learn: 10.9046058	total: 5.42s	remaining: 3.46s
183:	learn: 10.8625890	total: 5.44s	remaining: 3.43s
184:	learn: 10.7913928	total: 5.48s	remaining: 3.41s
185:	learn: 10.7366315	total: 5.51s	remaining: 3.38s
186:	learn: 10.6583458	total: 5.54s	remaining: 3.35s
187:	learn: 10.5955649	total: 5.57s	remaining: 3.32s
188:	learn: 10.5456969	total: 5.6s	remaining: 3.29s
189:	learn: 10.4582108	total: 5.63s	remaining: 3.26s
190:	learn: 10.4226930	total: 5.66s	remaining: 3.23s
191:	learn: 10.3469793	total: 5.68s	remaining: 3.2s
192:	learn: 10.2680286	total: 5.72s	remaining: 3.17s
193:	learn: 10.2210599	total: 5.75s	remaining: 3.14s
194:	learn: 10.1575919	total: 5.78s	remaining: 3.11s
195:	learn: 10.0996054	total: 5.81s	remaining: 3.08s
196:	learn: 10.0503671	total: 5.84s	remaining: 3.05s
197:	learn: 9.9976825	total: 5.87s	remaining: 3.02s
198:	learn: 9.9452535	total: 5.9s	remaining: 2.99s
199:	learn: 9.8825415	total: 5.92s	remaining: 2.96s
200:	learn: 9.8064134	total: 5.96s	remaining: 2.93s
201:	learn: 9.7572174	total: 5.99s	remaining: 2.9s
202:	learn: 9.6993413	total: 6.02s	remaining: 2.88s
203:	learn: 9.6645937	total: 6.05s	remaining: 2.85s
204:	learn: 9.6261766	total: 6.07s	remaining: 2.81s
205:	learn: 9.5819475	total: 6.1s	remaining: 2.78s
206:	learn: 9.5366280	total: 6.13s	remaining: 2.75s
207:	learn: 9.4813538	total: 6.15s	remaining: 2.72s
208:	learn: 9.4246671	total: 6.19s	remaining: 2.69s
209:	learn: 9.3787991	total: 6.22s	remaining: 2.66s
210:	learn: 9.3261932	total: 6.25s	remaining: 2.64s
211:	learn: 9.2979373	total: 6.28s	remaining: 2.61s
212:	learn: 9.2466040	total: 6.31s	remaining: 2.58s
213:	learn: 9.1990809	total: 6.33s	remaining: 2.54s
214:	learn: 9.1630306	total: 6.36s	remaining: 2.52s
215:	learn: 9.1266975	total: 6.39s	remaining: 2.48s
216:	learn: 9.0846374	total: 6.42s	remaining: 2.45s
217:	learn: 9.0341002	total: 6.45s	remaining: 2.43s
218:	learn: 8.9874070	total: 6.48s	remaining: 2.4s
219:	learn: 8.9478524	total: 6.51s	remaining: 2.37s
220:	learn: 8.8970642	total: 6.54s	remaining: 2.34s
221:	learn: 8.8605945	total: 6.56s	remaining: 2.31s
222:	learn: 8.8261863	total: 6.59s	remaining: 2.28s
223:	learn: 8.7821922	total: 6.62s	remaining: 2.25s
224:	learn: 8.7517706	total: 6.65s	remaining: 2.21s
225:	learn: 8.7149517	total: 6.68s	remaining: 2.19s
226:	learn: 8.6766707	total: 6.72s	remaining: 2.16s
227:	learn: 8.6372492	total: 6.74s	remaining: 2.13s
228:	learn: 8.6002129	total: 6.77s	remaining: 2.1s
229:	learn: 8.5595754	total: 6.8s	remaining: 2.07s
230:	learn: 8.5342774	total: 6.83s	remaining: 2.04s
231:	learn: 8.4991734	total: 6.85s	remaining: 2.01s
232:	learn: 8.4735361	total: 6.88s	remaining: 1.98s
233:	learn: 8.4328577	total: 6.92s	remaining: 1.95s
234:	learn: 8.3929232	total: 6.95s	remaining: 1.92s
235:	learn: 8.3611534	total: 6.98s	remaining: 1.89s
236:	learn: 8.3469261	total: 7s	remaining: 1.86s
237:	learn: 8.3082592	total: 7.03s	remaining: 1.83s
238:	learn: 8.2724422	total: 7.06s	remaining: 1.8s
239:	learn: 8.2378713	total: 7.08s	remaining: 1.77s
240:	learn: 8.2054002	total: 7.11s	remaining: 1.74s
241:	learn: 8.1726213	total: 7.15s	remaining: 1.71s
242:	learn: 8.1385919	total: 7.18s	remaining: 1.69s
243:	learn: 8.1113159	total: 7.21s	remaining: 1.66s
244:	learn: 8.0740264	total: 7.24s	remaining: 1.63s
245:	learn: 8.0399614	total: 7.27s	remaining: 1.59s
246:	learn: 8.0179358	total: 7.29s	remaining: 1.56s
247:	learn: 7.9896565	total: 7.32s	remaining: 1.53s
248:	learn: 7.9644186	total: 7.35s	remaining: 1.5s
249:	learn: 7.9305923	total: 7.38s	remaining: 1.48s
250:	learn: 7.9007851	total: 7.42s	remaining: 1.45s
251:	learn: 7.8740137	total: 7.45s	remaining: 1.42s
252:	learn: 7.8448288	total: 7.47s	remaining: 1.39s
253:	learn: 7.8020074	total: 7.5s	remaining: 1.36s
254:	learn: 7.7748874	total: 7.53s	remaining: 1.33s
255:	learn: 7.7553198	total: 7.55s	remaining: 1.3s
256:	learn: 7.7327191	total: 7.58s	remaining: 1.27s
257:	learn: 7.7021253	total: 7.62s	remaining: 1.24s
258:	learn: 7.6760024	total: 7.66s	remaining: 1.21s
259:	learn: 7.6569353	total: 7.68s	remaining: 1.18s
260:	learn: 7.6304716	total: 7.71s	remaining: 1.15s
261:	learn: 7.6011855	total: 7.74s	remaining: 1.12s
262:	learn: 7.5732109	total: 7.77s	remaining: 1.09s
263:	learn: 7.5502359	total: 7.79s	remaining: 1.06s
264:	learn: 7.5240021	total: 7.83s	remaining: 1.03s
265:	learn: 7.4977154	total: 7.85s	remaining: 1s
266:	learn: 7.4679226	total: 7.89s	remaining: 975ms
267:	learn: 7.4445035	total: 7.91s	remaining: 945ms
268:	learn: 7.4246251	total: 7.94s	remaining: 915ms
269:	learn: 7.4029554	total: 7.97s	remaining: 885ms
270:	learn: 7.3712662	total: 8s	remaining: 856ms
271:	learn: 7.3355870	total: 8.03s	remaining: 827ms
272:	learn: 7.3198771	total: 8.06s	remaining: 797ms
273:	learn: 7.3050151	total: 8.09s	remaining: 768ms
274:	learn: 7.2910043	total: 8.13s	remaining: 739ms
275:	learn: 7.2783385	total: 8.15s	remaining: 709ms
276:	learn: 7.2559473	total: 8.18s	remaining: 679ms
277:	learn: 7.2185655	total: 8.21s	remaining: 650ms
278:	learn: 7.1965563	total: 8.24s	remaining: 620ms
279:	learn: 7.1773705	total: 8.27s	remaining: 591ms
280:	learn: 7.1541341	total: 8.3s	remaining: 561ms
281:	learn: 7.1355109	total: 8.32s	remaining: 531ms
282:	learn: 7.1129308	total: 8.35s	remaining: 502ms
283:	learn: 7.0886063	total: 8.38s	remaining: 472ms
284:	learn: 7.0673363	total: 8.41s	remaining: 443ms
285:	learn: 7.0518651	total: 8.44s	remaining: 413ms
286:	learn: 7.0312280	total: 8.48s	remaining: 384ms
287:	learn: 7.0065712	total: 8.51s	remaining: 354ms
288:	learn: 6.9851465	total: 8.53s	remaining: 325ms
289:	learn: 6.9652208	total: 8.56s	remaining: 295ms
290:	learn: 6.9480340	total: 8.59s	remaining: 266ms
291:	learn: 6.9293725	total: 8.62s	remaining: 236ms
292:	learn: 6.8953713	total: 8.65s	remaining: 207ms
293:	learn: 6.8800761	total: 8.68s	remaining: 177ms
294:	learn: 6.8674172	total: 8.71s	remaining: 148ms
295:	learn: 6.8461255	total: 8.73s	remaining: 118ms
296:	learn: 6.8284246	total: 8.76s	remaining: 88.5ms
297:	learn: 6.8028742	total: 8.79s	remaining: 59ms
298:	learn: 6.7865169	total: 8.81s	remaining: 29.5ms
299:	learn: 6.7677918	total: 8.85s	remaining: 0us
0:	learn: 46.0177610	total: 26.8ms	remaining: 8.02s
1:	learn: 45.2171004	total: 54.8ms	remaining: 8.16s
2:	learn: 44.5194217	total: 81.2ms	remaining: 8.03s
3:	learn: 43.6812696	total: 107ms	remaining: 7.92s
4:	learn: 42.8831305	total: 135ms	remaining: 7.94s
5:	learn: 42.1262412	total: 168ms	remaining: 8.21s
6:	learn: 41.6465602	total: 197ms	remaining: 8.23s
7:	learn: 41.2399751	total: 231ms	remaining: 8.43s
8:	learn: 40.7217059	total: 258ms	remaining: 8.34s
9:	learn: 40.1802193	total: 285ms	remaining: 8.26s
10:	learn: 39.7286629	total: 312ms	remaining: 8.2s
11:	learn: 39.1775230	total: 340ms	remaining: 8.15s
12:	learn: 38.7477788	total: 372ms	remaining: 8.2s
13:	learn: 38.2296808	total: 400ms	remaining: 8.18s
14:	learn: 37.7069865	total: 427ms	remaining: 8.12s
15:	learn: 37.1535735	total: 455ms	remaining: 8.07s
16:	learn: 36.7900064	total: 490ms	remaining: 8.16s
17:	learn: 36.4049038	total: 518ms	remaining: 8.11s
18:	learn: 35.9640324	total: 544ms	remaining: 8.05s
19:	learn: 35.5778526	total: 572ms	remaining: 8.01s
20:	learn: 35.2480134	total: 601ms	remaining: 7.99s
21:	learn: 34.8576668	total: 635ms	remaining: 8.02s
22:	learn: 34.3332571	total: 662ms	remaining: 7.98s
23:	learn: 34.0285781	total: 689ms	remaining: 7.93s
24:	learn: 33.6137780	total: 723ms	remaining: 7.95s
25:	learn: 33.1018374	total: 749ms	remaining: 7.9s
26:	learn: 32.7865924	total: 776ms	remaining: 7.84s
27:	learn: 32.5376779	total: 803ms	remaining: 7.8s
28:	learn: 32.0718213	total: 843ms	remaining: 7.88s
29:	learn: 31.7440177	total: 871ms	remaining: 7.83s
30:	learn: 31.4767615	total: 898ms	remaining: 7.79s
31:	learn: 31.0939292	total: 926ms	remaining: 7.76s
32:	learn: 30.7679414	total: 962ms	remaining: 7.78s
33:	learn: 30.3318976	total: 989ms	remaining: 7.74s
34:	learn: 30.0098409	total: 1.02s	remaining: 7.74s
35:	learn: 29.7328439	total: 1.05s	remaining: 7.7s
36:	learn: 29.3793676	total: 1.07s	remaining: 7.65s
37:	learn: 29.1027021	total: 1.1s	remaining: 7.61s
38:	learn: 28.7995895	total: 1.13s	remaining: 7.56s
39:	learn: 28.5217760	total: 1.16s	remaining: 7.52s
40:	learn: 28.1682840	total: 1.18s	remaining: 7.47s
41:	learn: 27.7960176	total: 1.22s	remaining: 7.48s
42:	learn: 27.5479541	total: 1.26s	remaining: 7.52s
43:	learn: 27.1865306	total: 1.28s	remaining: 7.48s
44:	learn: 26.9937460	total: 1.31s	remaining: 7.44s
45:	learn: 26.8442463	total: 1.34s	remaining: 7.4s
46:	learn: 26.4960149	total: 1.37s	remaining: 7.36s
47:	learn: 26.3705169	total: 1.39s	remaining: 7.32s
48:	learn: 26.1706608	total: 1.42s	remaining: 7.28s
49:	learn: 25.9554127	total: 1.46s	remaining: 7.31s
50:	learn: 25.7460625	total: 1.49s	remaining: 7.28s
51:	learn: 25.5382801	total: 1.52s	remaining: 7.24s
52:	learn: 25.3702316	total: 1.54s	remaining: 7.2s
53:	learn: 25.1895507	total: 1.57s	remaining: 7.17s
54:	learn: 24.9547189	total: 1.6s	remaining: 7.13s
55:	learn: 24.7774266	total: 1.63s	remaining: 7.09s
56:	learn: 24.5983576	total: 1.65s	remaining: 7.05s
57:	learn: 24.4350851	total: 1.7s	remaining: 7.09s
58:	learn: 24.1821816	total: 1.74s	remaining: 7.09s
59:	learn: 24.0194176	total: 1.76s	remaining: 7.06s
60:	learn: 23.8268698	total: 1.79s	remaining: 7.02s
61:	learn: 23.6797713	total: 1.82s	remaining: 6.99s
62:	learn: 23.5016295	total: 1.85s	remaining: 6.95s
63:	learn: 23.3337406	total: 1.87s	remaining: 6.91s
64:	learn: 23.1777686	total: 1.91s	remaining: 6.89s
65:	learn: 22.9885995	total: 1.93s	remaining: 6.86s
66:	learn: 22.8371180	total: 1.97s	remaining: 6.84s
67:	learn: 22.6795513	total: 1.99s	remaining: 6.8s
68:	learn: 22.5161365	total: 2.02s	remaining: 6.76s
69:	learn: 22.3361211	total: 2.04s	remaining: 6.72s
70:	learn: 22.1434717	total: 2.07s	remaining: 6.68s
71:	learn: 21.9717466	total: 2.1s	remaining: 6.65s
72:	learn: 21.7799255	total: 2.14s	remaining: 6.65s
73:	learn: 21.5806287	total: 2.17s	remaining: 6.62s
74:	learn: 21.4515659	total: 2.2s	remaining: 6.61s
75:	learn: 21.3438173	total: 2.23s	remaining: 6.57s
76:	learn: 21.2141855	total: 2.26s	remaining: 6.54s
77:	learn: 20.9791139	total: 2.28s	remaining: 6.5s
78:	learn: 20.8731109	total: 2.31s	remaining: 6.47s
79:	learn: 20.7356152	total: 2.35s	remaining: 6.45s
80:	learn: 20.6794518	total: 2.37s	remaining: 6.42s
81:	learn: 20.5703504	total: 2.4s	remaining: 6.38s
82:	learn: 20.4542622	total: 2.43s	remaining: 6.34s
83:	learn: 20.3436005	total: 2.46s	remaining: 6.33s
84:	learn: 20.2213634	total: 2.49s	remaining: 6.29s
85:	learn: 20.0231006	total: 2.51s	remaining: 6.25s
86:	learn: 19.9066413	total: 2.54s	remaining: 6.22s
87:	learn: 19.8018072	total: 2.58s	remaining: 6.21s
88:	learn: 19.7018716	total: 2.6s	remaining: 6.18s
89:	learn: 19.5924764	total: 2.63s	remaining: 6.14s
90:	learn: 19.4563722	total: 2.66s	remaining: 6.11s
91:	learn: 19.3246547	total: 2.69s	remaining: 6.09s
92:	learn: 19.2157682	total: 2.72s	remaining: 6.06s
93:	learn: 19.1488443	total: 2.75s	remaining: 6.02s
94:	learn: 19.0557445	total: 2.78s	remaining: 5.99s
95:	learn: 18.9599358	total: 2.81s	remaining: 5.98s
96:	learn: 18.8626100	total: 2.84s	remaining: 5.94s
97:	learn: 18.7583061	total: 2.87s	remaining: 5.91s
98:	learn: 18.6544146	total: 2.89s	remaining: 5.87s
99:	learn: 18.5451742	total: 2.93s	remaining: 5.85s
100:	learn: 18.4189953	total: 2.95s	remaining: 5.82s
101:	learn: 18.3438186	total: 2.98s	remaining: 5.79s
102:	learn: 18.3162367	total: 3.02s	remaining: 5.77s
103:	learn: 18.2040313	total: 3.05s	remaining: 5.74s
104:	learn: 18.0312740	total: 3.07s	remaining: 5.71s
105:	learn: 17.9372951	total: 3.1s	remaining: 5.68s
106:	learn: 17.8724695	total: 3.13s	remaining: 5.64s
107:	learn: 17.7720982	total: 3.15s	remaining: 5.61s
108:	learn: 17.6847197	total: 3.19s	remaining: 5.59s
109:	learn: 17.5739155	total: 3.22s	remaining: 5.56s
110:	learn: 17.5071512	total: 3.25s	remaining: 5.54s
111:	learn: 17.4284339	total: 3.28s	remaining: 5.5s
112:	learn: 17.3333136	total: 3.31s	remaining: 5.47s
113:	learn: 17.2854017	total: 3.33s	remaining: 5.44s
114:	learn: 17.2580292	total: 3.36s	remaining: 5.41s
115:	learn: 17.1942005	total: 3.39s	remaining: 5.37s
116:	learn: 17.1180771	total: 3.42s	remaining: 5.35s
117:	learn: 17.0881080	total: 3.45s	remaining: 5.33s
118:	learn: 16.9946379	total: 3.49s	remaining: 5.31s
119:	learn: 16.9347009	total: 3.52s	remaining: 5.28s
120:	learn: 16.8550523	total: 3.55s	remaining: 5.25s
121:	learn: 16.8167084	total: 3.58s	remaining: 5.22s
122:	learn: 16.7431121	total: 3.6s	remaining: 5.18s
123:	learn: 16.6790079	total: 3.63s	remaining: 5.15s
124:	learn: 16.6544185	total: 3.67s	remaining: 5.13s
125:	learn: 16.5758961	total: 3.71s	remaining: 5.12s
126:	learn: 16.4736355	total: 3.73s	remaining: 5.09s
127:	learn: 16.3424410	total: 3.76s	remaining: 5.05s
128:	learn: 16.2679660	total: 3.79s	remaining: 5.02s
129:	learn: 16.2258039	total: 3.82s	remaining: 4.99s
130:	learn: 16.1516799	total: 3.84s	remaining: 4.96s
131:	learn: 16.1254438	total: 3.87s	remaining: 4.93s
132:	learn: 16.0304106	total: 3.9s	remaining: 4.9s
133:	learn: 15.9690721	total: 3.94s	remaining: 4.88s
134:	learn: 15.8475301	total: 3.97s	remaining: 4.85s
135:	learn: 15.7923044	total: 4s	remaining: 4.82s
136:	learn: 15.7122364	total: 4.03s	remaining: 4.79s
137:	learn: 15.6328785	total: 4.05s	remaining: 4.76s
138:	learn: 15.5626000	total: 4.08s	remaining: 4.73s
139:	learn: 15.4322531	total: 4.11s	remaining: 4.7s
140:	learn: 15.3057121	total: 4.14s	remaining: 4.67s
141:	learn: 15.2355698	total: 4.18s	remaining: 4.65s
142:	learn: 15.1858129	total: 4.2s	remaining: 4.62s
143:	learn: 15.1459442	total: 4.23s	remaining: 4.58s
144:	learn: 15.1011230	total: 4.26s	remaining: 4.55s
145:	learn: 15.0379234	total: 4.29s	remaining: 4.52s
146:	learn: 14.9606955	total: 4.32s	remaining: 4.5s
147:	learn: 14.8537869	total: 4.35s	remaining: 4.47s
148:	learn: 14.7978827	total: 4.38s	remaining: 4.44s
149:	learn: 14.7340183	total: 4.41s	remaining: 4.41s
150:	learn: 14.6973812	total: 4.44s	remaining: 4.38s
151:	learn: 14.6682787	total: 4.47s	remaining: 4.35s
152:	learn: 14.5210539	total: 4.5s	remaining: 4.32s
153:	learn: 14.4733148	total: 4.53s	remaining: 4.29s
154:	learn: 14.4119567	total: 4.55s	remaining: 4.26s
155:	learn: 14.3464330	total: 4.59s	remaining: 4.23s
156:	learn: 14.2314719	total: 4.61s	remaining: 4.2s
157:	learn: 14.1827121	total: 4.64s	remaining: 4.17s
158:	learn: 14.0860528	total: 4.67s	remaining: 4.14s
159:	learn: 14.0216499	total: 4.7s	remaining: 4.11s
160:	learn: 13.9788508	total: 4.73s	remaining: 4.08s
161:	learn: 13.9341942	total: 4.75s	remaining: 4.05s
162:	learn: 13.8689437	total: 4.78s	remaining: 4.02s
163:	learn: 13.8152354	total: 4.82s	remaining: 3.99s
164:	learn: 13.7979613	total: 4.84s	remaining: 3.96s
165:	learn: 13.7124340	total: 4.87s	remaining: 3.93s
166:	learn: 13.6328571	total: 4.91s	remaining: 3.91s
167:	learn: 13.6179483	total: 4.93s	remaining: 3.88s
168:	learn: 13.5737505	total: 4.96s	remaining: 3.85s
169:	learn: 13.5185652	total: 4.99s	remaining: 3.81s
170:	learn: 13.3621411	total: 5.02s	remaining: 3.79s
171:	learn: 13.3431787	total: 5.05s	remaining: 3.76s
172:	learn: 13.2661742	total: 5.08s	remaining: 3.73s
173:	learn: 13.2029526	total: 5.11s	remaining: 3.7s
174:	learn: 13.1457507	total: 5.13s	remaining: 3.67s
175:	learn: 13.0041277	total: 5.17s	remaining: 3.64s
176:	learn: 12.9565895	total: 5.19s	remaining: 3.61s
177:	learn: 12.8225368	total: 5.22s	remaining: 3.58s
178:	learn: 12.8073526	total: 5.25s	remaining: 3.55s
179:	learn: 12.7432577	total: 5.29s	remaining: 3.52s
180:	learn: 12.6894062	total: 5.31s	remaining: 3.49s
181:	learn: 12.6115430	total: 5.34s	remaining: 3.46s
182:	learn: 12.4884510	total: 5.37s	remaining: 3.43s
183:	learn: 12.4670071	total: 5.4s	remaining: 3.4s
184:	learn: 12.3586840	total: 5.43s	remaining: 3.37s
185:	learn: 12.3314465	total: 5.46s	remaining: 3.34s
186:	learn: 12.2898986	total: 5.48s	remaining: 3.31s
187:	learn: 12.2444848	total: 5.52s	remaining: 3.29s
188:	learn: 12.1286912	total: 5.54s	remaining: 3.25s
189:	learn: 12.0913051	total: 5.57s	remaining: 3.23s
190:	learn: 12.0412425	total: 5.6s	remaining: 3.19s
191:	learn: 11.9806235	total: 5.63s	remaining: 3.17s
192:	learn: 11.9166183	total: 5.66s	remaining: 3.14s
193:	learn: 11.8779218	total: 5.68s	remaining: 3.1s
194:	learn: 11.8179532	total: 5.71s	remaining: 3.08s
195:	learn: 11.7640239	total: 5.75s	remaining: 3.05s
196:	learn: 11.7071262	total: 5.78s	remaining: 3.02s
197:	learn: 11.6536293	total: 5.8s	remaining: 2.99s
198:	learn: 11.6065018	total: 5.83s	remaining: 2.96s
199:	learn: 11.5499607	total: 5.86s	remaining: 2.93s
200:	learn: 11.5040185	total: 5.89s	remaining: 2.9s
201:	learn: 11.4742990	total: 5.92s	remaining: 2.87s
202:	learn: 11.4464612	total: 5.96s	remaining: 2.85s
203:	learn: 11.3967352	total: 5.99s	remaining: 2.82s
204:	learn: 11.3773630	total: 6.01s	remaining: 2.79s
205:	learn: 11.3369897	total: 6.04s	remaining: 2.76s
206:	learn: 11.2785610	total: 6.07s	remaining: 2.73s
207:	learn: 11.2570903	total: 6.09s	remaining: 2.69s
208:	learn: 11.1959469	total: 6.13s	remaining: 2.67s
209:	learn: 11.1698664	total: 6.16s	remaining: 2.64s
210:	learn: 11.1452100	total: 6.19s	remaining: 2.61s
211:	learn: 11.1074115	total: 6.22s	remaining: 2.58s
212:	learn: 11.0813756	total: 6.24s	remaining: 2.55s
213:	learn: 11.0519307	total: 6.27s	remaining: 2.52s
214:	learn: 11.0155685	total: 6.3s	remaining: 2.49s
215:	learn: 10.9871406	total: 6.33s	remaining: 2.46s
216:	learn: 10.9693068	total: 6.36s	remaining: 2.43s
217:	learn: 10.9576767	total: 6.39s	remaining: 2.4s
218:	learn: 10.8594320	total: 6.42s	remaining: 2.38s
219:	learn: 10.8272954	total: 6.45s	remaining: 2.34s
220:	learn: 10.8038867	total: 6.47s	remaining: 2.31s
221:	learn: 10.7088853	total: 6.5s	remaining: 2.28s
222:	learn: 10.6887411	total: 6.53s	remaining: 2.25s
223:	learn: 10.6649574	total: 6.55s	remaining: 2.22s
224:	learn: 10.6194908	total: 6.58s	remaining: 2.19s
225:	learn: 10.5685522	total: 6.62s	remaining: 2.17s
226:	learn: 10.5537435	total: 6.66s	remaining: 2.14s
227:	learn: 10.5121708	total: 6.69s	remaining: 2.11s
228:	learn: 10.4691452	total: 6.71s	remaining: 2.08s
229:	learn: 10.4484099	total: 6.74s	remaining: 2.05s
230:	learn: 10.4377373	total: 6.77s	remaining: 2.02s
231:	learn: 10.4270601	total: 6.8s	remaining: 1.99s
232:	learn: 10.4051968	total: 6.82s	remaining: 1.96s
233:	learn: 10.3483300	total: 6.86s	remaining: 1.94s
234:	learn: 10.2865834	total: 6.89s	remaining: 1.91s
235:	learn: 10.2610314	total: 6.92s	remaining: 1.88s
236:	learn: 10.2388990	total: 6.94s	remaining: 1.85s
237:	learn: 10.1965393	total: 6.97s	remaining: 1.82s
238:	learn: 10.1800849	total: 7s	remaining: 1.79s
239:	learn: 10.1604400	total: 7.03s	remaining: 1.76s
240:	learn: 10.1302668	total: 7.05s	remaining: 1.73s
241:	learn: 10.1241338	total: 7.1s	remaining: 1.7s
242:	learn: 10.0835529	total: 7.13s	remaining: 1.67s
243:	learn: 10.0154507	total: 7.15s	remaining: 1.64s
244:	learn: 10.0024905	total: 7.18s	remaining: 1.61s
245:	learn: 9.9669119	total: 7.21s	remaining: 1.58s
246:	learn: 9.9325711	total: 7.24s	remaining: 1.55s
247:	learn: 9.8981230	total: 7.26s	remaining: 1.52s
248:	learn: 9.8660554	total: 7.29s	remaining: 1.49s
249:	learn: 9.8506587	total: 7.32s	remaining: 1.46s
250:	learn: 9.8080866	total: 7.36s	remaining: 1.44s
251:	learn: 9.7747070	total: 7.38s	remaining: 1.41s
252:	learn: 9.7589720	total: 7.41s	remaining: 1.38s
253:	learn: 9.7308058	total: 7.44s	remaining: 1.35s
254:	learn: 9.7157610	total: 7.46s	remaining: 1.32s
255:	learn: 9.6979675	total: 7.49s	remaining: 1.29s
256:	learn: 9.6657809	total: 7.52s	remaining: 1.26s
257:	learn: 9.6522187	total: 7.55s	remaining: 1.23s
258:	learn: 9.6375034	total: 7.59s	remaining: 1.2s
259:	learn: 9.6023653	total: 7.62s	remaining: 1.17s
260:	learn: 9.5760582	total: 7.64s	remaining: 1.14s
261:	learn: 9.5288913	total: 7.67s	remaining: 1.11s
262:	learn: 9.5151986	total: 7.7s	remaining: 1.08s
263:	learn: 9.4814503	total: 7.72s	remaining: 1.05s
264:	learn: 9.4635791	total: 7.76s	remaining: 1.02s
265:	learn: 9.4364856	total: 7.79s	remaining: 996ms
266:	learn: 9.4013439	total: 7.82s	remaining: 967ms
267:	learn: 9.3638018	total: 7.85s	remaining: 937ms
268:	learn: 9.3558171	total: 7.88s	remaining: 908ms
269:	learn: 9.3065751	total: 7.9s	remaining: 878ms
270:	learn: 9.2964146	total: 7.93s	remaining: 849ms
271:	learn: 9.2625670	total: 7.96s	remaining: 819ms
272:	learn: 9.2356760	total: 8s	remaining: 791ms
273:	learn: 9.2046550	total: 8.03s	remaining: 762ms
274:	learn: 9.1931591	total: 8.05s	remaining: 732ms
275:	learn: 9.1692863	total: 8.09s	remaining: 704ms
276:	learn: 9.1358490	total: 8.12s	remaining: 674ms
277:	learn: 9.1007511	total: 8.14s	remaining: 645ms
278:	learn: 9.0946236	total: 8.17s	remaining: 615ms
279:	learn: 9.0731587	total: 8.21s	remaining: 586ms
280:	learn: 9.0466446	total: 8.23s	remaining: 557ms
281:	learn: 9.0262027	total: 8.26s	remaining: 527ms
282:	learn: 8.9958148	total: 8.29s	remaining: 498ms
283:	learn: 8.9904119	total: 8.32s	remaining: 469ms
284:	learn: 8.9723234	total: 8.35s	remaining: 439ms
285:	learn: 8.9368256	total: 8.38s	remaining: 410ms
286:	learn: 8.8960967	total: 8.4s	remaining: 381ms
287:	learn: 8.8813638	total: 8.44s	remaining: 352ms
288:	learn: 8.8766445	total: 8.47s	remaining: 322ms
289:	learn: 8.8483604	total: 8.5s	remaining: 293ms
290:	learn: 8.8220559	total: 8.53s	remaining: 264ms
291:	learn: 8.7918301	total: 8.55s	remaining: 234ms
292:	learn: 8.7574504	total: 8.59s	remaining: 205ms
293:	learn: 8.7490725	total: 8.62s	remaining: 176ms
294:	learn: 8.7293377	total: 8.65s	remaining: 147ms
295:	learn: 8.7202847	total: 8.68s	remaining: 117ms
296:	learn: 8.6918465	total: 8.71s	remaining: 87.9ms
297:	learn: 8.6665828	total: 8.73s	remaining: 58.6ms
298:	learn: 8.6541683	total: 8.76s	remaining: 29.3ms
299:	learn: 8.6494740	total: 8.79s	remaining: 0us
0:	learn: 46.8012202	total: 37.3ms	remaining: 11.1s
1:	learn: 46.0273912	total: 64.1ms	remaining: 9.55s
2:	learn: 45.3733493	total: 91ms	remaining: 9.01s
3:	learn: 44.7109449	total: 118ms	remaining: 8.71s
4:	learn: 43.9430491	total: 145ms	remaining: 8.54s
5:	learn: 43.2536304	total: 174ms	remaining: 8.54s
6:	learn: 42.5901366	total: 208ms	remaining: 8.69s
7:	learn: 42.0362841	total: 234ms	remaining: 8.55s
8:	learn: 41.4655769	total: 270ms	remaining: 8.73s
9:	learn: 40.7617374	total: 297ms	remaining: 8.61s
10:	learn: 40.1467911	total: 323ms	remaining: 8.5s
11:	learn: 39.5322002	total: 350ms	remaining: 8.41s
12:	learn: 39.2369496	total: 378ms	remaining: 8.34s
13:	learn: 38.8730340	total: 415ms	remaining: 8.48s
14:	learn: 38.4661592	total: 443ms	remaining: 8.41s
15:	learn: 37.8483750	total: 446ms	remaining: 7.92s
16:	learn: 37.2598064	total: 472ms	remaining: 7.86s
17:	learn: 36.6878531	total: 509ms	remaining: 7.97s
18:	learn: 36.1765878	total: 536ms	remaining: 7.93s
19:	learn: 35.6111928	total: 564ms	remaining: 7.89s
20:	learn: 35.2113326	total: 592ms	remaining: 7.87s
21:	learn: 34.5754750	total: 620ms	remaining: 7.83s
22:	learn: 34.0844300	total: 651ms	remaining: 7.84s
23:	learn: 33.6434482	total: 679ms	remaining: 7.8s
24:	learn: 33.3578327	total: 705ms	remaining: 7.76s
25:	learn: 32.9883035	total: 732ms	remaining: 7.71s
26:	learn: 32.6325583	total: 760ms	remaining: 7.68s
27:	learn: 32.1886629	total: 787ms	remaining: 7.65s
28:	learn: 31.8587417	total: 815ms	remaining: 7.62s
29:	learn: 31.4999044	total: 852ms	remaining: 7.67s
30:	learn: 31.1903935	total: 880ms	remaining: 7.63s
31:	learn: 30.8877054	total: 908ms	remaining: 7.61s
32:	learn: 30.6421813	total: 935ms	remaining: 7.57s
33:	learn: 30.3687742	total: 964ms	remaining: 7.54s
34:	learn: 30.0972944	total: 997ms	remaining: 7.55s
35:	learn: 29.6026977	total: 1.02s	remaining: 7.52s
36:	learn: 29.3412855	total: 1.05s	remaining: 7.49s
37:	learn: 29.0138869	total: 1.09s	remaining: 7.5s
38:	learn: 28.6424952	total: 1.11s	remaining: 7.46s
39:	learn: 28.4408572	total: 1.14s	remaining: 7.42s
40:	learn: 28.0554435	total: 1.17s	remaining: 7.38s
41:	learn: 27.8389274	total: 1.2s	remaining: 7.34s
42:	learn: 27.5339353	total: 1.22s	remaining: 7.31s
43:	learn: 27.3640594	total: 1.25s	remaining: 7.26s
44:	learn: 27.1330981	total: 1.28s	remaining: 7.26s
45:	learn: 26.9507132	total: 1.31s	remaining: 7.24s
46:	learn: 26.7285619	total: 1.33s	remaining: 7.18s
47:	learn: 26.3518482	total: 1.36s	remaining: 7.14s
48:	learn: 26.0543584	total: 1.39s	remaining: 7.11s
49:	learn: 25.8251945	total: 1.41s	remaining: 7.07s
50:	learn: 25.5436752	total: 1.44s	remaining: 7.03s
51:	learn: 25.3250332	total: 1.46s	remaining: 6.98s
52:	learn: 25.1688504	total: 1.49s	remaining: 6.94s
53:	learn: 24.9813407	total: 1.52s	remaining: 6.91s
54:	learn: 24.7384847	total: 1.55s	remaining: 6.89s
55:	learn: 24.5163023	total: 1.57s	remaining: 6.85s
56:	learn: 24.2729235	total: 1.6s	remaining: 6.81s
57:	learn: 24.1318061	total: 1.62s	remaining: 6.77s
58:	learn: 23.9701754	total: 1.65s	remaining: 6.73s
59:	learn: 23.8112940	total: 1.67s	remaining: 6.69s
60:	learn: 23.6723877	total: 1.7s	remaining: 6.66s
61:	learn: 23.5289336	total: 1.73s	remaining: 6.65s
62:	learn: 23.4106679	total: 1.76s	remaining: 6.63s
63:	learn: 23.2082280	total: 1.79s	remaining: 6.6s
64:	learn: 23.0959607	total: 1.81s	remaining: 6.56s
65:	learn: 22.9890902	total: 1.84s	remaining: 6.53s
66:	learn: 22.8516666	total: 1.87s	remaining: 6.49s
67:	learn: 22.7282575	total: 1.89s	remaining: 6.46s
68:	learn: 22.5991392	total: 1.92s	remaining: 6.42s
69:	learn: 22.3825348	total: 1.95s	remaining: 6.41s
70:	learn: 22.2284455	total: 1.98s	remaining: 6.37s
71:	learn: 22.0431735	total: 2s	remaining: 6.33s
72:	learn: 21.8930406	total: 2.03s	remaining: 6.3s
73:	learn: 21.7459390	total: 2.05s	remaining: 6.26s
74:	learn: 21.6277633	total: 2.08s	remaining: 6.23s
75:	learn: 21.4144047	total: 2.1s	remaining: 6.19s
76:	learn: 21.2747440	total: 2.13s	remaining: 6.16s
77:	learn: 21.1153657	total: 2.15s	remaining: 6.13s
78:	learn: 21.0445825	total: 2.18s	remaining: 6.11s
79:	learn: 20.9348935	total: 2.21s	remaining: 6.08s
80:	learn: 20.7685253	total: 2.24s	remaining: 6.05s
81:	learn: 20.6539889	total: 2.26s	remaining: 6.02s
82:	learn: 20.4538530	total: 2.29s	remaining: 5.99s
83:	learn: 20.3461251	total: 2.32s	remaining: 5.96s
84:	learn: 20.1992221	total: 2.34s	remaining: 5.93s
85:	learn: 20.0842190	total: 2.37s	remaining: 5.91s
86:	learn: 19.9903250	total: 2.4s	remaining: 5.88s
87:	learn: 19.9084171	total: 2.43s	remaining: 5.84s
88:	learn: 19.7929727	total: 2.45s	remaining: 5.81s
89:	learn: 19.7205230	total: 2.48s	remaining: 5.78s
90:	learn: 19.6075486	total: 2.5s	remaining: 5.75s
91:	learn: 19.5309964	total: 2.53s	remaining: 5.71s
92:	learn: 19.4363684	total: 2.55s	remaining: 5.68s
93:	learn: 19.3378127	total: 2.58s	remaining: 5.66s
94:	learn: 19.2292896	total: 2.62s	remaining: 5.65s
95:	learn: 19.1011370	total: 2.64s	remaining: 5.62s
96:	learn: 18.9974491	total: 2.67s	remaining: 5.59s
97:	learn: 18.8636531	total: 2.7s	remaining: 5.56s
98:	learn: 18.7739910	total: 2.72s	remaining: 5.53s
99:	learn: 18.6948867	total: 2.75s	remaining: 5.49s
100:	learn: 18.5747433	total: 2.77s	remaining: 5.46s
101:	learn: 18.5307499	total: 2.8s	remaining: 5.43s
102:	learn: 18.4248127	total: 2.83s	remaining: 5.41s
103:	learn: 18.3301727	total: 2.85s	remaining: 5.38s
104:	learn: 18.2579998	total: 2.88s	remaining: 5.35s
105:	learn: 18.1614231	total: 2.9s	remaining: 5.32s
106:	learn: 18.0748134	total: 2.93s	remaining: 5.29s
107:	learn: 17.9862898	total: 2.96s	remaining: 5.25s
108:	learn: 17.9368507	total: 2.98s	remaining: 5.22s
109:	learn: 17.8058561	total: 3.01s	remaining: 5.19s
110:	learn: 17.7371383	total: 3.04s	remaining: 5.18s
111:	learn: 17.6303538	total: 3.07s	remaining: 5.16s
112:	learn: 17.5449989	total: 3.1s	remaining: 5.13s
113:	learn: 17.4776008	total: 3.12s	remaining: 5.1s
114:	learn: 17.3648029	total: 3.15s	remaining: 5.07s
115:	learn: 17.2618916	total: 3.18s	remaining: 5.04s
116:	learn: 17.2111539	total: 3.2s	remaining: 5s
117:	learn: 17.1018870	total: 3.23s	remaining: 4.98s
118:	learn: 17.0024931	total: 3.26s	remaining: 4.95s
119:	learn: 16.9743860	total: 3.28s	remaining: 4.92s
120:	learn: 16.9130305	total: 3.31s	remaining: 4.89s
121:	learn: 16.8016712	total: 3.33s	remaining: 4.86s
122:	learn: 16.7261518	total: 3.36s	remaining: 4.83s
123:	learn: 16.6593504	total: 3.38s	remaining: 4.8s
124:	learn: 16.5732663	total: 3.41s	remaining: 4.77s
125:	learn: 16.4947922	total: 3.43s	remaining: 4.74s
126:	learn: 16.3991688	total: 3.46s	remaining: 4.71s
127:	learn: 16.3086895	total: 3.49s	remaining: 4.69s
128:	learn: 16.2101210	total: 3.51s	remaining: 4.66s
129:	learn: 16.1541963	total: 3.54s	remaining: 4.63s
130:	learn: 16.0790764	total: 3.56s	remaining: 4.6s
131:	learn: 16.0139723	total: 3.59s	remaining: 4.57s
132:	learn: 15.8906448	total: 3.61s	remaining: 4.54s
133:	learn: 15.8064421	total: 3.63s	remaining: 4.5s
134:	learn: 15.7265305	total: 3.66s	remaining: 4.47s
135:	learn: 15.6621677	total: 3.68s	remaining: 4.44s
136:	learn: 15.5922471	total: 3.72s	remaining: 4.42s
137:	learn: 15.5550517	total: 3.74s	remaining: 4.39s
138:	learn: 15.5278059	total: 3.77s	remaining: 4.36s
139:	learn: 15.4494043	total: 3.79s	remaining: 4.33s
140:	learn: 15.3765788	total: 3.81s	remaining: 4.3s
141:	learn: 15.3158598	total: 3.84s	remaining: 4.27s
142:	learn: 15.2121980	total: 3.86s	remaining: 4.24s
143:	learn: 15.0893974	total: 3.89s	remaining: 4.21s
144:	learn: 15.0074795	total: 3.91s	remaining: 4.18s
145:	learn: 14.9489574	total: 3.94s	remaining: 4.16s
146:	learn: 14.9258844	total: 3.97s	remaining: 4.13s
147:	learn: 14.8471123	total: 3.99s	remaining: 4.1s
148:	learn: 14.7745818	total: 4.02s	remaining: 4.07s
149:	learn: 14.6905246	total: 4.04s	remaining: 4.04s
150:	learn: 14.5873644	total: 4.06s	remaining: 4.01s
151:	learn: 14.5337902	total: 4.09s	remaining: 3.98s
152:	learn: 14.4749040	total: 4.12s	remaining: 3.96s
153:	learn: 14.3890824	total: 4.15s	remaining: 3.93s
154:	learn: 14.3259009	total: 4.17s	remaining: 3.9s
155:	learn: 14.2113192	total: 4.2s	remaining: 3.87s
156:	learn: 14.1718909	total: 4.22s	remaining: 3.84s
157:	learn: 14.1110356	total: 4.24s	remaining: 3.81s
158:	learn: 14.0362591	total: 4.27s	remaining: 3.78s
159:	learn: 13.9188238	total: 4.29s	remaining: 3.75s
160:	learn: 13.7740452	total: 4.32s	remaining: 3.73s
161:	learn: 13.7228642	total: 4.35s	remaining: 3.71s
162:	learn: 13.6648536	total: 4.38s	remaining: 3.68s
163:	learn: 13.5724722	total: 4.4s	remaining: 3.65s
164:	learn: 13.5141405	total: 4.43s	remaining: 3.62s
165:	learn: 13.4267305	total: 4.45s	remaining: 3.59s
166:	learn: 13.3370179	total: 4.48s	remaining: 3.56s
167:	learn: 13.2503127	total: 4.5s	remaining: 3.54s
168:	learn: 13.1743816	total: 4.53s	remaining: 3.51s
169:	learn: 13.1087726	total: 4.56s	remaining: 3.49s
170:	learn: 13.0426739	total: 4.58s	remaining: 3.46s
171:	learn: 12.9968745	total: 4.61s	remaining: 3.43s
172:	learn: 12.9301422	total: 4.63s	remaining: 3.4s
173:	learn: 12.9104864	total: 4.66s	remaining: 3.37s
174:	learn: 12.8199271	total: 4.68s	remaining: 3.34s
175:	learn: 12.7796485	total: 4.7s	remaining: 3.31s
176:	learn: 12.6883779	total: 4.73s	remaining: 3.29s
177:	learn: 12.5869619	total: 4.76s	remaining: 3.26s
178:	learn: 12.5397815	total: 4.79s	remaining: 3.24s
179:	learn: 12.4692676	total: 4.82s	remaining: 3.21s
180:	learn: 12.4433237	total: 4.84s	remaining: 3.18s
181:	learn: 12.3985342	total: 4.87s	remaining: 3.15s
182:	learn: 12.3635932	total: 4.89s	remaining: 3.13s
183:	learn: 12.2512719	total: 4.91s	remaining: 3.1s
184:	learn: 12.1558647	total: 4.95s	remaining: 3.08s
185:	learn: 12.1369112	total: 4.99s	remaining: 3.06s
186:	learn: 12.0798700	total: 5.01s	remaining: 3.03s
187:	learn: 12.0010668	total: 5.04s	remaining: 3s
188:	learn: 11.9442666	total: 5.07s	remaining: 2.98s
189:	learn: 11.8628888	total: 5.09s	remaining: 2.95s
190:	learn: 11.7616769	total: 5.12s	remaining: 2.92s
191:	learn: 11.6699926	total: 5.15s	remaining: 2.9s
192:	learn: 11.6392816	total: 5.18s	remaining: 2.87s
193:	learn: 11.5955244	total: 5.22s	remaining: 2.85s
194:	learn: 11.5772160	total: 5.25s	remaining: 2.83s
195:	learn: 11.5465581	total: 5.28s	remaining: 2.8s
196:	learn: 11.4564641	total: 5.3s	remaining: 2.77s
197:	learn: 11.3978031	total: 5.33s	remaining: 2.75s
198:	learn: 11.3460158	total: 5.36s	remaining: 2.72s
199:	learn: 11.2627720	total: 5.38s	remaining: 2.69s
200:	learn: 11.2162738	total: 5.41s	remaining: 2.67s
201:	learn: 11.1905894	total: 5.45s	remaining: 2.65s
202:	learn: 11.1639946	total: 5.48s	remaining: 2.62s
203:	learn: 11.0885906	total: 5.51s	remaining: 2.59s
204:	learn: 11.0284516	total: 5.53s	remaining: 2.56s
205:	learn: 10.9731416	total: 5.56s	remaining: 2.54s
206:	learn: 10.9378121	total: 5.59s	remaining: 2.51s
207:	learn: 10.8935640	total: 5.62s	remaining: 2.48s
208:	learn: 10.8572901	total: 5.66s	remaining: 2.46s
209:	learn: 10.8037961	total: 5.68s	remaining: 2.44s
210:	learn: 10.7458107	total: 5.72s	remaining: 2.41s
211:	learn: 10.7082447	total: 5.75s	remaining: 2.39s
212:	learn: 10.6599173	total: 5.78s	remaining: 2.36s
213:	learn: 10.6028419	total: 5.8s	remaining: 2.33s
214:	learn: 10.5627192	total: 5.83s	remaining: 2.31s
215:	learn: 10.5213774	total: 5.86s	remaining: 2.28s
216:	learn: 10.4732429	total: 5.89s	remaining: 2.25s
217:	learn: 10.4188551	total: 5.92s	remaining: 2.23s
218:	learn: 10.3740622	total: 5.95s	remaining: 2.2s
219:	learn: 10.3399349	total: 5.98s	remaining: 2.17s
220:	learn: 10.2824635	total: 6.01s	remaining: 2.15s
221:	learn: 10.2458277	total: 6.03s	remaining: 2.12s
222:	learn: 10.2341252	total: 6.06s	remaining: 2.09s
223:	learn: 10.1392287	total: 6.1s	remaining: 2.07s
224:	learn: 10.1088124	total: 6.13s	remaining: 2.04s
225:	learn: 10.0471375	total: 6.15s	remaining: 2.02s
226:	learn: 9.9852333	total: 6.19s	remaining: 1.99s
227:	learn: 9.9292294	total: 6.22s	remaining: 1.96s
228:	learn: 9.9015453	total: 6.24s	remaining: 1.94s
229:	learn: 9.8905067	total: 6.27s	remaining: 1.91s
230:	learn: 9.8507503	total: 6.3s	remaining: 1.88s
231:	learn: 9.7964411	total: 6.33s	remaining: 1.85s
232:	learn: 9.7540779	total: 6.36s	remaining: 1.83s
233:	learn: 9.7051776	total: 6.38s	remaining: 1.8s
234:	learn: 9.6539147	total: 6.41s	remaining: 1.77s
235:	learn: 9.6073112	total: 6.44s	remaining: 1.75s
236:	learn: 9.5975483	total: 6.47s	remaining: 1.72s
237:	learn: 9.5489561	total: 6.51s	remaining: 1.7s
238:	learn: 9.5160122	total: 6.54s	remaining: 1.67s
239:	learn: 9.4620416	total: 6.57s	remaining: 1.64s
240:	learn: 9.4463510	total: 6.59s	remaining: 1.61s
241:	learn: 9.4389200	total: 6.62s	remaining: 1.59s
242:	learn: 9.4078400	total: 6.65s	remaining: 1.56s
243:	learn: 9.3866265	total: 6.68s	remaining: 1.53s
244:	learn: 9.3473501	total: 6.71s	remaining: 1.51s
245:	learn: 9.2861016	total: 6.74s	remaining: 1.48s
246:	learn: 9.2734740	total: 6.77s	remaining: 1.45s
247:	learn: 9.2343522	total: 6.79s	remaining: 1.42s
248:	learn: 9.2223405	total: 6.82s	remaining: 1.4s
249:	learn: 9.2140074	total: 6.85s	remaining: 1.37s
250:	learn: 9.2046313	total: 6.88s	remaining: 1.34s
251:	learn: 9.1705343	total: 6.91s	remaining: 1.32s
252:	learn: 9.1635400	total: 6.95s	remaining: 1.29s
253:	learn: 9.1201103	total: 6.97s	remaining: 1.26s
254:	learn: 9.0874222	total: 7s	remaining: 1.24s
255:	learn: 9.0546404	total: 7.03s	remaining: 1.21s
256:	learn: 9.0294210	total: 7.05s	remaining: 1.18s
257:	learn: 8.9918549	total: 7.08s	remaining: 1.15s
258:	learn: 8.9860821	total: 7.11s	remaining: 1.13s
259:	learn: 8.9445721	total: 7.14s	remaining: 1.1s
260:	learn: 8.9204013	total: 7.18s	remaining: 1.07s
261:	learn: 8.8802796	total: 7.21s	remaining: 1.04s
262:	learn: 8.8319848	total: 7.23s	remaining: 1.02s
263:	learn: 8.8040786	total: 7.26s	remaining: 990ms
264:	learn: 8.7674300	total: 7.29s	remaining: 962ms
265:	learn: 8.7486932	total: 7.31s	remaining: 935ms
266:	learn: 8.7223059	total: 7.34s	remaining: 907ms
267:	learn: 8.7108992	total: 7.38s	remaining: 881ms
268:	learn: 8.7026068	total: 7.41s	remaining: 854ms
269:	learn: 8.6836280	total: 7.44s	remaining: 827ms
270:	learn: 8.6467938	total: 7.47s	remaining: 799ms
271:	learn: 8.6111555	total: 7.49s	remaining: 771ms
272:	learn: 8.5824973	total: 7.52s	remaining: 744ms
273:	learn: 8.5682745	total: 7.55s	remaining: 716ms
274:	learn: 8.5416779	total: 7.58s	remaining: 689ms
275:	learn: 8.5066950	total: 7.61s	remaining: 662ms
276:	learn: 8.4970713	total: 7.64s	remaining: 634ms
277:	learn: 8.4596116	total: 7.67s	remaining: 607ms
278:	learn: 8.4475857	total: 7.7s	remaining: 580ms
279:	learn: 8.4267482	total: 7.73s	remaining: 552ms
280:	learn: 8.4095246	total: 7.75s	remaining: 524ms
281:	learn: 8.3674941	total: 7.79s	remaining: 497ms
282:	learn: 8.3151248	total: 7.82s	remaining: 470ms
283:	learn: 8.2823195	total: 7.85s	remaining: 442ms
284:	learn: 8.2593854	total: 7.88s	remaining: 415ms
285:	learn: 8.2331325	total: 7.91s	remaining: 387ms
286:	learn: 8.1912221	total: 7.94s	remaining: 360ms
287:	learn: 8.1688810	total: 7.96s	remaining: 332ms
288:	learn: 8.1497193	total: 8s	remaining: 304ms
289:	learn: 8.1293205	total: 8.03s	remaining: 277ms
290:	learn: 8.1107539	total: 8.05s	remaining: 249ms
291:	learn: 8.0849956	total: 8.08s	remaining: 221ms
292:	learn: 8.0440544	total: 8.11s	remaining: 194ms
293:	learn: 8.0183325	total: 8.14s	remaining: 166ms
294:	learn: 7.9783905	total: 8.17s	remaining: 138ms
295:	learn: 7.9644989	total: 8.2s	remaining: 111ms
296:	learn: 7.9392598	total: 8.23s	remaining: 83.2ms
297:	learn: 7.9167538	total: 8.26s	remaining: 55.4ms
298:	learn: 7.8751558	total: 8.29s	remaining: 27.7ms
299:	learn: 7.8630471	total: 8.31s	remaining: 0us
0:	learn: 27.6506730	total: 5.63ms	remaining: 557ms
1:	learn: 27.1638793	total: 10.5ms	remaining: 515ms
2:	learn: 26.8000665	total: 15.2ms	remaining: 490ms
3:	learn: 26.4256132	total: 20.1ms	remaining: 482ms
4:	learn: 26.0088351	total: 25ms	remaining: 476ms
5:	learn: 25.7558298	total: 29.4ms	remaining: 461ms
6:	learn: 25.3380711	total: 34.4ms	remaining: 457ms
7:	learn: 25.0571611	total: 43ms	remaining: 494ms
8:	learn: 24.6790148	total: 51ms	remaining: 516ms
9:	learn: 24.3600941	total: 65.6ms	remaining: 590ms
10:	learn: 24.1105667	total: 70ms	remaining: 566ms
11:	learn: 23.7736542	total: 74.7ms	remaining: 547ms
12:	learn: 23.5824429	total: 79.6ms	remaining: 533ms
13:	learn: 23.2658303	total: 84.2ms	remaining: 517ms
14:	learn: 23.0061886	total: 88.3ms	remaining: 500ms
15:	learn: 22.8060389	total: 92.9ms	remaining: 487ms
16:	learn: 22.5899735	total: 97.4ms	remaining: 476ms
17:	learn: 22.3625048	total: 102ms	remaining: 464ms
18:	learn: 22.0706477	total: 106ms	remaining: 454ms
19:	learn: 21.8739394	total: 111ms	remaining: 443ms
20:	learn: 21.6143650	total: 115ms	remaining: 433ms
21:	learn: 21.4571623	total: 120ms	remaining: 424ms
22:	learn: 21.2395769	total: 124ms	remaining: 415ms
23:	learn: 20.9801795	total: 129ms	remaining: 407ms
24:	learn: 20.8036808	total: 133ms	remaining: 399ms
25:	learn: 20.6387539	total: 137ms	remaining: 391ms
26:	learn: 20.4401427	total: 142ms	remaining: 384ms
27:	learn: 20.2879575	total: 147ms	remaining: 377ms
28:	learn: 20.0538664	total: 151ms	remaining: 370ms
29:	learn: 19.8363102	total: 156ms	remaining: 363ms
30:	learn: 19.7015446	total: 160ms	remaining: 357ms
31:	learn: 19.5483114	total: 165ms	remaining: 351ms
32:	learn: 19.4163053	total: 170ms	remaining: 346ms
33:	learn: 19.2880625	total: 175ms	remaining: 340ms
34:	learn: 19.1303389	total: 180ms	remaining: 335ms
35:	learn: 18.9237448	total: 185ms	remaining: 329ms
36:	learn: 18.8142925	total: 189ms	remaining: 323ms
37:	learn: 18.6994696	total: 194ms	remaining: 317ms
38:	learn: 18.5629211	total: 199ms	remaining: 311ms
39:	learn: 18.4600917	total: 203ms	remaining: 305ms
40:	learn: 18.3567139	total: 207ms	remaining: 298ms
41:	learn: 18.2120527	total: 211ms	remaining: 292ms
42:	learn: 18.0688062	total: 216ms	remaining: 286ms
43:	learn: 17.9250181	total: 220ms	remaining: 280ms
44:	learn: 17.8399138	total: 224ms	remaining: 274ms
45:	learn: 17.6720713	total: 229ms	remaining: 269ms
46:	learn: 17.5273091	total: 234ms	remaining: 263ms
47:	learn: 17.4232814	total: 238ms	remaining: 258ms
48:	learn: 17.2957579	total: 243ms	remaining: 253ms
49:	learn: 17.1892874	total: 248ms	remaining: 248ms
50:	learn: 17.0490355	total: 252ms	remaining: 242ms
51:	learn: 16.9666450	total: 257ms	remaining: 237ms
52:	learn: 16.8600056	total: 270ms	remaining: 240ms
53:	learn: 16.7542588	total: 283ms	remaining: 241ms
54:	learn: 16.6316077	total: 291ms	remaining: 238ms
55:	learn: 16.5588112	total: 297ms	remaining: 234ms
56:	learn: 16.5010186	total: 303ms	remaining: 229ms
57:	learn: 16.4081540	total: 309ms	remaining: 224ms
58:	learn: 16.3040451	total: 315ms	remaining: 219ms
59:	learn: 16.1890564	total: 320ms	remaining: 213ms
60:	learn: 16.0977103	total: 326ms	remaining: 208ms
61:	learn: 15.9627607	total: 331ms	remaining: 203ms
62:	learn: 15.9022248	total: 336ms	remaining: 197ms
63:	learn: 15.8151881	total: 341ms	remaining: 192ms
64:	learn: 15.7353125	total: 346ms	remaining: 186ms
65:	learn: 15.6312897	total: 350ms	remaining: 181ms
66:	learn: 15.5330927	total: 355ms	remaining: 175ms
67:	learn: 15.4698681	total: 360ms	remaining: 169ms
68:	learn: 15.4108571	total: 365ms	remaining: 164ms
69:	learn: 15.3492945	total: 371ms	remaining: 159ms
70:	learn: 15.3036540	total: 376ms	remaining: 154ms
71:	learn: 15.2390833	total: 381ms	remaining: 148ms
72:	learn: 15.1556327	total: 385ms	remaining: 143ms
73:	learn: 15.1016315	total: 390ms	remaining: 137ms
74:	learn: 15.0287076	total: 395ms	remaining: 132ms
75:	learn: 14.9530572	total: 399ms	remaining: 126ms
76:	learn: 14.8965517	total: 404ms	remaining: 121ms
77:	learn: 14.8125426	total: 409ms	remaining: 115ms
78:	learn: 14.7435359	total: 414ms	remaining: 110ms
79:	learn: 14.6963163	total: 418ms	remaining: 105ms
80:	learn: 14.6200060	total: 423ms	remaining: 99.2ms
81:	learn: 14.5707760	total: 428ms	remaining: 93.9ms
82:	learn: 14.5053651	total: 433ms	remaining: 88.6ms
83:	learn: 14.4115458	total: 438ms	remaining: 83.4ms
84:	learn: 14.3117159	total: 443ms	remaining: 78.2ms
85:	learn: 14.2511326	total: 448ms	remaining: 73ms
86:	learn: 14.1372486	total: 453ms	remaining: 67.7ms
87:	learn: 14.0992301	total: 459ms	remaining: 62.5ms
88:	learn: 14.0228331	total: 467ms	remaining: 57.7ms
89:	learn: 13.9249836	total: 474ms	remaining: 52.7ms
90:	learn: 13.8679364	total: 481ms	remaining: 47.6ms
91:	learn: 13.8405578	total: 486ms	remaining: 42.3ms
92:	learn: 13.7711325	total: 493ms	remaining: 37.1ms
93:	learn: 13.7357019	total: 498ms	remaining: 31.8ms
94:	learn: 13.6735271	total: 503ms	remaining: 26.5ms
95:	learn: 13.5682393	total: 507ms	remaining: 21.1ms
96:	learn: 13.5342610	total: 512ms	remaining: 15.8ms
97:	learn: 13.4710034	total: 517ms	remaining: 10.6ms
98:	learn: 13.4022402	total: 522ms	remaining: 5.27ms
99:	learn: 13.3351238	total: 527ms	remaining: 0us
0:	learn: 42.9181702	total: 4.98ms	remaining: 493ms
1:	learn: 42.0286736	total: 9.78ms	remaining: 479ms
2:	learn: 41.2764568	total: 14.4ms	remaining: 466ms
3:	learn: 40.4721918	total: 19.1ms	remaining: 458ms
4:	learn: 39.8518928	total: 23.5ms	remaining: 447ms
5:	learn: 39.2645479	total: 28.6ms	remaining: 448ms
6:	learn: 38.4453704	total: 33.5ms	remaining: 445ms
7:	learn: 37.7122059	total: 38.6ms	remaining: 444ms
8:	learn: 36.9185796	total: 43.5ms	remaining: 439ms
9:	learn: 36.1668427	total: 48.6ms	remaining: 437ms
10:	learn: 35.5639029	total: 53.7ms	remaining: 435ms
11:	learn: 34.7724193	total: 59.2ms	remaining: 434ms
12:	learn: 34.3053433	total: 64.4ms	remaining: 431ms
13:	learn: 33.6561327	total: 66ms	remaining: 405ms
14:	learn: 33.0134042	total: 72.6ms	remaining: 412ms
15:	learn: 32.4483300	total: 79.1ms	remaining: 415ms
16:	learn: 31.8581144	total: 85.7ms	remaining: 418ms
17:	learn: 31.2858301	total: 92.3ms	remaining: 421ms
18:	learn: 30.8483018	total: 98ms	remaining: 418ms
19:	learn: 30.4174622	total: 104ms	remaining: 415ms
20:	learn: 29.8994411	total: 111ms	remaining: 419ms
21:	learn: 29.5045355	total: 117ms	remaining: 414ms
22:	learn: 28.9923519	total: 124ms	remaining: 414ms
23:	learn: 28.4255717	total: 129ms	remaining: 409ms
24:	learn: 28.0283139	total: 134ms	remaining: 403ms
25:	learn: 27.7434814	total: 140ms	remaining: 398ms
26:	learn: 27.2770731	total: 145ms	remaining: 393ms
27:	learn: 26.8928270	total: 151ms	remaining: 387ms
28:	learn: 26.4282671	total: 156ms	remaining: 382ms
29:	learn: 26.0272764	total: 161ms	remaining: 376ms
30:	learn: 25.7579312	total: 167ms	remaining: 371ms
31:	learn: 25.4542434	total: 172ms	remaining: 365ms
32:	learn: 25.1232564	total: 177ms	remaining: 359ms
33:	learn: 24.8110795	total: 182ms	remaining: 354ms
34:	learn: 24.5077579	total: 187ms	remaining: 348ms
35:	learn: 24.1909000	total: 193ms	remaining: 343ms
36:	learn: 23.8719468	total: 199ms	remaining: 338ms
37:	learn: 23.5764366	total: 200ms	remaining: 327ms
38:	learn: 23.3468086	total: 205ms	remaining: 321ms
39:	learn: 23.0908771	total: 210ms	remaining: 314ms
40:	learn: 22.8580876	total: 215ms	remaining: 309ms
41:	learn: 22.6060825	total: 219ms	remaining: 303ms
42:	learn: 22.4125407	total: 225ms	remaining: 298ms
43:	learn: 22.1990617	total: 229ms	remaining: 292ms
44:	learn: 21.9716164	total: 234ms	remaining: 286ms
45:	learn: 21.8360935	total: 238ms	remaining: 280ms
46:	learn: 21.6169256	total: 243ms	remaining: 274ms
47:	learn: 21.4620612	total: 247ms	remaining: 268ms
48:	learn: 21.2894194	total: 252ms	remaining: 262ms
49:	learn: 21.1066266	total: 256ms	remaining: 256ms
50:	learn: 20.9484898	total: 262ms	remaining: 251ms
51:	learn: 20.7195338	total: 266ms	remaining: 246ms
52:	learn: 20.4899740	total: 271ms	remaining: 240ms
53:	learn: 20.3356583	total: 276ms	remaining: 235ms
54:	learn: 20.0754393	total: 282ms	remaining: 231ms
55:	learn: 19.9199159	total: 287ms	remaining: 225ms
56:	learn: 19.7761128	total: 292ms	remaining: 220ms
57:	learn: 19.6533060	total: 296ms	remaining: 215ms
58:	learn: 19.5113942	total: 301ms	remaining: 209ms
59:	learn: 19.3985022	total: 309ms	remaining: 206ms
60:	learn: 19.2683443	total: 317ms	remaining: 202ms
61:	learn: 19.1460824	total: 323ms	remaining: 198ms
62:	learn: 19.0042655	total: 330ms	remaining: 194ms
63:	learn: 18.8720873	total: 336ms	remaining: 189ms
64:	learn: 18.7183888	total: 341ms	remaining: 184ms
65:	learn: 18.5472360	total: 346ms	remaining: 178ms
66:	learn: 18.3976642	total: 350ms	remaining: 173ms
67:	learn: 18.2282851	total: 355ms	remaining: 167ms
68:	learn: 18.1469157	total: 360ms	remaining: 162ms
69:	learn: 18.0649494	total: 365ms	remaining: 156ms
70:	learn: 17.9485405	total: 370ms	remaining: 151ms
71:	learn: 17.8460261	total: 374ms	remaining: 145ms
72:	learn: 17.7679843	total: 379ms	remaining: 140ms
73:	learn: 17.5989290	total: 384ms	remaining: 135ms
74:	learn: 17.4381322	total: 389ms	remaining: 130ms
75:	learn: 17.3370886	total: 393ms	remaining: 124ms
76:	learn: 17.2675308	total: 398ms	remaining: 119ms
77:	learn: 17.1946430	total: 403ms	remaining: 114ms
78:	learn: 17.0923725	total: 407ms	remaining: 108ms
79:	learn: 17.0537265	total: 412ms	remaining: 103ms
80:	learn: 16.9456831	total: 417ms	remaining: 97.7ms
81:	learn: 16.8457353	total: 421ms	remaining: 92.5ms
82:	learn: 16.7469310	total: 426ms	remaining: 87.2ms
83:	learn: 16.6679953	total: 430ms	remaining: 82ms
84:	learn: 16.6274189	total: 435ms	remaining: 76.8ms
85:	learn: 16.5516530	total: 440ms	remaining: 71.6ms
86:	learn: 16.4886066	total: 444ms	remaining: 66.4ms
87:	learn: 16.3947859	total: 449ms	remaining: 61.2ms
88:	learn: 16.3406495	total: 454ms	remaining: 56.1ms
89:	learn: 16.3019195	total: 458ms	remaining: 50.9ms
90:	learn: 16.1860681	total: 462ms	remaining: 45.7ms
91:	learn: 16.1282812	total: 467ms	remaining: 40.6ms
92:	learn: 16.0303652	total: 472ms	remaining: 35.5ms
93:	learn: 15.9561692	total: 477ms	remaining: 30.4ms
94:	learn: 15.8733994	total: 482ms	remaining: 25.4ms
95:	learn: 15.8108833	total: 487ms	remaining: 20.3ms
96:	learn: 15.7606004	total: 492ms	remaining: 15.2ms
97:	learn: 15.6984664	total: 497ms	remaining: 10.1ms
98:	learn: 15.6223632	total: 502ms	remaining: 5.07ms
99:	learn: 15.5671136	total: 510ms	remaining: 0us
0:	learn: 46.4788614	total: 2.54ms	remaining: 251ms
1:	learn: 45.7608372	total: 8.74ms	remaining: 428ms
2:	learn: 44.8825004	total: 14.2ms	remaining: 460ms
3:	learn: 44.0362738	total: 19.6ms	remaining: 471ms
4:	learn: 43.2086374	total: 24.9ms	remaining: 472ms
5:	learn: 42.5835773	total: 30.2ms	remaining: 474ms
6:	learn: 41.9673269	total: 35.8ms	remaining: 476ms
7:	learn: 41.4748717	total: 41.2ms	remaining: 474ms
8:	learn: 40.7129183	total: 46.3ms	remaining: 468ms
9:	learn: 39.8900884	total: 51.1ms	remaining: 460ms
10:	learn: 39.4142193	total: 56.2ms	remaining: 455ms
11:	learn: 38.8645613	total: 61.3ms	remaining: 449ms
12:	learn: 38.2394731	total: 66.3ms	remaining: 444ms
13:	learn: 37.6834515	total: 71.2ms	remaining: 437ms
14:	learn: 37.0673507	total: 75.8ms	remaining: 430ms
15:	learn: 36.4728340	total: 80.6ms	remaining: 423ms
16:	learn: 36.0489086	total: 85.3ms	remaining: 417ms
17:	learn: 35.4744141	total: 90ms	remaining: 410ms
18:	learn: 35.0106021	total: 94.6ms	remaining: 403ms
19:	learn: 34.5586053	total: 99.3ms	remaining: 397ms
20:	learn: 34.1308223	total: 104ms	remaining: 391ms
21:	learn: 33.7701450	total: 109ms	remaining: 387ms
22:	learn: 33.4425444	total: 115ms	remaining: 383ms
23:	learn: 33.0296412	total: 120ms	remaining: 380ms
24:	learn: 32.6359803	total: 125ms	remaining: 375ms
25:	learn: 32.1846182	total: 130ms	remaining: 371ms
26:	learn: 31.7620230	total: 135ms	remaining: 366ms
27:	learn: 31.4669337	total: 141ms	remaining: 361ms
28:	learn: 31.0792062	total: 159ms	remaining: 389ms
29:	learn: 30.7970537	total: 165ms	remaining: 384ms
30:	learn: 30.4952215	total: 170ms	remaining: 378ms
31:	learn: 30.2845344	total: 175ms	remaining: 372ms
32:	learn: 29.9592732	total: 180ms	remaining: 365ms
33:	learn: 29.6798596	total: 184ms	remaining: 358ms
34:	learn: 29.3368905	total: 189ms	remaining: 351ms
35:	learn: 29.0621238	total: 193ms	remaining: 344ms
36:	learn: 28.6445375	total: 198ms	remaining: 336ms
37:	learn: 28.2418096	total: 203ms	remaining: 330ms
38:	learn: 27.9495390	total: 207ms	remaining: 324ms
39:	learn: 27.6958160	total: 211ms	remaining: 317ms
40:	learn: 27.4811189	total: 216ms	remaining: 311ms
41:	learn: 27.1494420	total: 220ms	remaining: 304ms
42:	learn: 26.8388873	total: 225ms	remaining: 298ms
43:	learn: 26.5721300	total: 229ms	remaining: 291ms
44:	learn: 26.3384738	total: 233ms	remaining: 285ms
45:	learn: 26.1894781	total: 238ms	remaining: 279ms
46:	learn: 25.9580198	total: 243ms	remaining: 274ms
47:	learn: 25.7897985	total: 247ms	remaining: 268ms
48:	learn: 25.6000271	total: 252ms	remaining: 262ms
49:	learn: 25.4130873	total: 256ms	remaining: 256ms
50:	learn: 25.1699061	total: 261ms	remaining: 250ms
51:	learn: 24.9324449	total: 265ms	remaining: 245ms
52:	learn: 24.7729152	total: 270ms	remaining: 239ms
53:	learn: 24.5026563	total: 274ms	remaining: 234ms
54:	learn: 24.2332627	total: 279ms	remaining: 228ms
55:	learn: 23.9611984	total: 283ms	remaining: 223ms
56:	learn: 23.7862603	total: 288ms	remaining: 217ms
57:	learn: 23.6318154	total: 293ms	remaining: 212ms
58:	learn: 23.4443306	total: 297ms	remaining: 206ms
59:	learn: 23.2581425	total: 301ms	remaining: 201ms
60:	learn: 23.0549901	total: 306ms	remaining: 196ms
61:	learn: 22.8666218	total: 311ms	remaining: 190ms
62:	learn: 22.6956739	total: 315ms	remaining: 185ms
63:	learn: 22.5068544	total: 320ms	remaining: 180ms
64:	learn: 22.1859147	total: 325ms	remaining: 175ms
65:	learn: 22.0462043	total: 329ms	remaining: 170ms
66:	learn: 21.9329563	total: 334ms	remaining: 164ms
67:	learn: 21.8029736	total: 340ms	remaining: 160ms
68:	learn: 21.6861091	total: 348ms	remaining: 156ms
69:	learn: 21.4838140	total: 360ms	remaining: 154ms
70:	learn: 21.3548921	total: 366ms	remaining: 149ms
71:	learn: 21.2244517	total: 373ms	remaining: 145ms
72:	learn: 21.0702958	total: 378ms	remaining: 140ms
73:	learn: 20.9224662	total: 384ms	remaining: 135ms
74:	learn: 20.8150357	total: 389ms	remaining: 130ms
75:	learn: 20.6962739	total: 395ms	remaining: 125ms
76:	learn: 20.5809258	total: 401ms	remaining: 120ms
77:	learn: 20.4735470	total: 406ms	remaining: 114ms
78:	learn: 20.3778167	total: 411ms	remaining: 109ms
79:	learn: 20.2211268	total: 416ms	remaining: 104ms
80:	learn: 20.1478678	total: 421ms	remaining: 98.7ms
81:	learn: 20.1032967	total: 426ms	remaining: 93.5ms
82:	learn: 19.9236300	total: 432ms	remaining: 88.4ms
83:	learn: 19.8151745	total: 438ms	remaining: 83.3ms
84:	learn: 19.7099856	total: 442ms	remaining: 78ms
85:	learn: 19.6264833	total: 447ms	remaining: 72.7ms
86:	learn: 19.4916361	total: 451ms	remaining: 67.4ms
87:	learn: 19.4050529	total: 456ms	remaining: 62.1ms
88:	learn: 19.2547065	total: 460ms	remaining: 56.8ms
89:	learn: 19.1610225	total: 464ms	remaining: 51.6ms
90:	learn: 19.0898958	total: 469ms	remaining: 46.3ms
91:	learn: 19.0489664	total: 473ms	remaining: 41.1ms
92:	learn: 18.9206240	total: 477ms	remaining: 35.9ms
93:	learn: 18.8636239	total: 482ms	remaining: 30.8ms
94:	learn: 18.8126187	total: 486ms	remaining: 25.6ms
95:	learn: 18.7579275	total: 490ms	remaining: 20.4ms
96:	learn: 18.6382753	total: 495ms	remaining: 15.3ms
97:	learn: 18.5397334	total: 500ms	remaining: 10.2ms
98:	learn: 18.4375951	total: 504ms	remaining: 5.09ms
99:	learn: 18.4033755	total: 509ms	remaining: 0us
0:	learn: 46.1068821	total: 2.64ms	remaining: 261ms
1:	learn: 45.3970261	total: 7.72ms	remaining: 379ms
2:	learn: 44.8732696	total: 13ms	remaining: 419ms
3:	learn: 44.1290184	total: 17.3ms	remaining: 414ms
4:	learn: 43.3290271	total: 21.3ms	remaining: 404ms
5:	learn: 42.7069090	total: 25.5ms	remaining: 399ms
6:	learn: 42.0572971	total: 29.9ms	remaining: 397ms
7:	learn: 41.4797924	total: 34.1ms	remaining: 393ms
8:	learn: 41.0023122	total: 38.5ms	remaining: 389ms
9:	learn: 40.5330570	total: 42.4ms	remaining: 381ms
10:	learn: 39.9726545	total: 46.8ms	remaining: 379ms
11:	learn: 39.3044053	total: 51.3ms	remaining: 376ms
12:	learn: 38.8169735	total: 55.6ms	remaining: 372ms
13:	learn: 38.2458761	total: 59.8ms	remaining: 367ms
14:	learn: 37.6280321	total: 64.4ms	remaining: 365ms
15:	learn: 37.0800610	total: 68.9ms	remaining: 362ms
16:	learn: 36.5489363	total: 73ms	remaining: 356ms
17:	learn: 36.0981456	total: 76.8ms	remaining: 350ms
18:	learn: 35.6956274	total: 81.3ms	remaining: 347ms
19:	learn: 35.1471999	total: 85.4ms	remaining: 342ms
20:	learn: 34.6235408	total: 89.7ms	remaining: 337ms
21:	learn: 34.1987018	total: 94.3ms	remaining: 334ms
22:	learn: 33.8985062	total: 98.8ms	remaining: 331ms
23:	learn: 33.3869017	total: 103ms	remaining: 327ms
24:	learn: 32.9100550	total: 107ms	remaining: 322ms
25:	learn: 32.4156208	total: 112ms	remaining: 318ms
26:	learn: 31.9320493	total: 116ms	remaining: 313ms
27:	learn: 31.5711468	total: 120ms	remaining: 309ms
28:	learn: 31.2404433	total: 124ms	remaining: 304ms
29:	learn: 30.8807946	total: 129ms	remaining: 300ms
30:	learn: 30.5948438	total: 133ms	remaining: 296ms
31:	learn: 30.3885560	total: 137ms	remaining: 292ms
32:	learn: 30.0625101	total: 142ms	remaining: 288ms
33:	learn: 29.9113114	total: 146ms	remaining: 283ms
34:	learn: 29.6983470	total: 150ms	remaining: 279ms
35:	learn: 29.4775849	total: 154ms	remaining: 274ms
36:	learn: 29.0538055	total: 159ms	remaining: 271ms
37:	learn: 28.6792318	total: 163ms	remaining: 266ms
38:	learn: 28.4231383	total: 167ms	remaining: 262ms
39:	learn: 28.1078565	total: 172ms	remaining: 258ms
40:	learn: 27.9079179	total: 177ms	remaining: 255ms
41:	learn: 27.6721506	total: 182ms	remaining: 251ms
42:	learn: 27.4228033	total: 186ms	remaining: 247ms
43:	learn: 27.1740534	total: 191ms	remaining: 243ms
44:	learn: 26.8584071	total: 196ms	remaining: 239ms
45:	learn: 26.6902083	total: 201ms	remaining: 235ms
46:	learn: 26.4855335	total: 209ms	remaining: 235ms
47:	learn: 26.2730822	total: 215ms	remaining: 233ms
48:	learn: 26.1058689	total: 223ms	remaining: 232ms
49:	learn: 25.8587318	total: 230ms	remaining: 230ms
50:	learn: 25.7558005	total: 236ms	remaining: 227ms
51:	learn: 25.5846925	total: 241ms	remaining: 223ms
52:	learn: 25.4249887	total: 246ms	remaining: 219ms
53:	learn: 25.1911054	total: 252ms	remaining: 214ms
54:	learn: 25.0544755	total: 257ms	remaining: 210ms
55:	learn: 24.8874006	total: 262ms	remaining: 206ms
56:	learn: 24.7736279	total: 267ms	remaining: 202ms
57:	learn: 24.6156255	total: 273ms	remaining: 197ms
58:	learn: 24.3962421	total: 278ms	remaining: 193ms
59:	learn: 24.2685129	total: 283ms	remaining: 189ms
60:	learn: 24.1874096	total: 288ms	remaining: 184ms
61:	learn: 24.0394287	total: 294ms	remaining: 180ms
62:	learn: 23.9281768	total: 299ms	remaining: 176ms
63:	learn: 23.7423900	total: 304ms	remaining: 171ms
64:	learn: 23.6015209	total: 308ms	remaining: 166ms
65:	learn: 23.4677943	total: 313ms	remaining: 161ms
66:	learn: 23.3215256	total: 317ms	remaining: 156ms
67:	learn: 23.1869360	total: 321ms	remaining: 151ms
68:	learn: 22.9691180	total: 326ms	remaining: 146ms
69:	learn: 22.7531657	total: 331ms	remaining: 142ms
70:	learn: 22.6133477	total: 335ms	remaining: 137ms
71:	learn: 22.3452758	total: 340ms	remaining: 132ms
72:	learn: 22.2065350	total: 344ms	remaining: 127ms
73:	learn: 22.1071155	total: 348ms	remaining: 122ms
74:	learn: 21.9740686	total: 353ms	remaining: 118ms
75:	learn: 21.8892033	total: 357ms	remaining: 113ms
76:	learn: 21.8267882	total: 362ms	remaining: 108ms
77:	learn: 21.7423479	total: 366ms	remaining: 103ms
78:	learn: 21.6242075	total: 371ms	remaining: 98.6ms
79:	learn: 21.5016910	total: 376ms	remaining: 94ms
80:	learn: 21.4806623	total: 377ms	remaining: 88.4ms
81:	learn: 21.3166637	total: 382ms	remaining: 83.8ms
82:	learn: 21.2222534	total: 387ms	remaining: 79.2ms
83:	learn: 21.1535708	total: 391ms	remaining: 74.5ms
84:	learn: 21.0858902	total: 396ms	remaining: 69.9ms
85:	learn: 20.9206003	total: 415ms	remaining: 67.5ms
86:	learn: 20.8674695	total: 421ms	remaining: 62.9ms
87:	learn: 20.8089875	total: 426ms	remaining: 58.1ms
88:	learn: 20.7085401	total: 432ms	remaining: 53.4ms
89:	learn: 20.5513468	total: 436ms	remaining: 48.5ms
90:	learn: 20.4586742	total: 440ms	remaining: 43.6ms
91:	learn: 20.3932149	total: 445ms	remaining: 38.7ms
92:	learn: 20.3000895	total: 449ms	remaining: 33.8ms
93:	learn: 20.2254009	total: 453ms	remaining: 28.9ms
94:	learn: 20.1750050	total: 457ms	remaining: 24.1ms
95:	learn: 20.0715579	total: 461ms	remaining: 19.2ms
96:	learn: 19.9920082	total: 466ms	remaining: 14.4ms
97:	learn: 19.9664401	total: 470ms	remaining: 9.59ms
98:	learn: 19.8689673	total: 474ms	remaining: 4.79ms
99:	learn: 19.7537356	total: 479ms	remaining: 0us
0:	learn: 46.8832143	total: 4.98ms	remaining: 493ms
1:	learn: 45.8700349	total: 9.8ms	remaining: 480ms
2:	learn: 45.0546867	total: 14.8ms	remaining: 480ms
3:	learn: 44.2829439	total: 19.9ms	remaining: 477ms
4:	learn: 43.4609042	total: 24.6ms	remaining: 467ms
5:	learn: 42.6754991	total: 29.4ms	remaining: 461ms
6:	learn: 41.9234935	total: 34.2ms	remaining: 454ms
7:	learn: 41.3987518	total: 38.8ms	remaining: 446ms
8:	learn: 40.6625066	total: 44ms	remaining: 445ms
9:	learn: 40.0029561	total: 48.3ms	remaining: 435ms
10:	learn: 39.3897033	total: 52.4ms	remaining: 424ms
11:	learn: 38.7741453	total: 57.2ms	remaining: 419ms
12:	learn: 38.1201100	total: 62.2ms	remaining: 416ms
13:	learn: 37.5129454	total: 69ms	remaining: 424ms
14:	learn: 37.2062206	total: 76.7ms	remaining: 435ms
15:	learn: 36.6831741	total: 83.6ms	remaining: 439ms
16:	learn: 36.2902788	total: 89.6ms	remaining: 437ms
17:	learn: 35.7639930	total: 95.1ms	remaining: 433ms
18:	learn: 35.2580953	total: 100ms	remaining: 428ms
19:	learn: 34.7809739	total: 107ms	remaining: 429ms
20:	learn: 34.1330433	total: 113ms	remaining: 425ms
21:	learn: 33.7302219	total: 118ms	remaining: 418ms
22:	learn: 33.3502495	total: 123ms	remaining: 411ms
23:	learn: 33.0067804	total: 128ms	remaining: 406ms
24:	learn: 32.6897855	total: 133ms	remaining: 400ms
25:	learn: 32.4361119	total: 138ms	remaining: 394ms
26:	learn: 32.1278981	total: 144ms	remaining: 389ms
27:	learn: 31.7863721	total: 150ms	remaining: 385ms
28:	learn: 31.4791450	total: 155ms	remaining: 379ms
29:	learn: 31.1760161	total: 160ms	remaining: 373ms
30:	learn: 30.9238888	total: 166ms	remaining: 369ms
31:	learn: 30.5500905	total: 171ms	remaining: 363ms
32:	learn: 30.3078126	total: 176ms	remaining: 356ms
33:	learn: 30.0480921	total: 193ms	remaining: 375ms
34:	learn: 29.8623884	total: 198ms	remaining: 367ms
35:	learn: 29.5991038	total: 202ms	remaining: 359ms
36:	learn: 29.4061161	total: 206ms	remaining: 351ms
37:	learn: 29.0269515	total: 210ms	remaining: 343ms
38:	learn: 28.8224959	total: 215ms	remaining: 336ms
39:	learn: 28.6417843	total: 219ms	remaining: 328ms
40:	learn: 28.3633368	total: 223ms	remaining: 321ms
41:	learn: 28.0200246	total: 228ms	remaining: 314ms
42:	learn: 27.7221254	total: 232ms	remaining: 308ms
43:	learn: 27.5105818	total: 237ms	remaining: 302ms
44:	learn: 27.3551010	total: 241ms	remaining: 295ms
45:	learn: 27.0787522	total: 246ms	remaining: 289ms
46:	learn: 26.8726317	total: 250ms	remaining: 282ms
47:	learn: 26.8003277	total: 255ms	remaining: 276ms
48:	learn: 26.5493785	total: 259ms	remaining: 270ms
49:	learn: 26.3699550	total: 263ms	remaining: 263ms
50:	learn: 26.1519631	total: 268ms	remaining: 257ms
51:	learn: 25.9277325	total: 273ms	remaining: 252ms
52:	learn: 25.7286035	total: 277ms	remaining: 246ms
53:	learn: 25.4999193	total: 282ms	remaining: 240ms
54:	learn: 25.3434703	total: 286ms	remaining: 234ms
55:	learn: 25.1497545	total: 291ms	remaining: 229ms
56:	learn: 24.9498143	total: 296ms	remaining: 223ms
57:	learn: 24.6509390	total: 303ms	remaining: 220ms
58:	learn: 24.5576144	total: 311ms	remaining: 216ms
59:	learn: 24.4265144	total: 317ms	remaining: 212ms
60:	learn: 24.3100706	total: 323ms	remaining: 207ms
61:	learn: 24.1727952	total: 328ms	remaining: 201ms
62:	learn: 24.0478558	total: 334ms	remaining: 196ms
63:	learn: 23.9124577	total: 338ms	remaining: 190ms
64:	learn: 23.7703718	total: 342ms	remaining: 184ms
65:	learn: 23.5975027	total: 346ms	remaining: 178ms
66:	learn: 23.4318077	total: 351ms	remaining: 173ms
67:	learn: 23.3099691	total: 355ms	remaining: 167ms
68:	learn: 23.1947982	total: 359ms	remaining: 161ms
69:	learn: 23.0260174	total: 363ms	remaining: 156ms
70:	learn: 22.8523100	total: 368ms	remaining: 150ms
71:	learn: 22.8028534	total: 372ms	remaining: 145ms
72:	learn: 22.6880658	total: 376ms	remaining: 139ms
73:	learn: 22.5956809	total: 381ms	remaining: 134ms
74:	learn: 22.4692932	total: 385ms	remaining: 128ms
75:	learn: 22.2863504	total: 390ms	remaining: 123ms
76:	learn: 22.1911237	total: 394ms	remaining: 118ms
77:	learn: 22.1098391	total: 398ms	remaining: 112ms
78:	learn: 22.0182738	total: 402ms	remaining: 107ms
79:	learn: 21.9306746	total: 407ms	remaining: 102ms
80:	learn: 21.7508233	total: 411ms	remaining: 96.4ms
81:	learn: 21.7108446	total: 415ms	remaining: 91.1ms
82:	learn: 21.5931852	total: 419ms	remaining: 85.9ms
83:	learn: 21.4480361	total: 423ms	remaining: 80.6ms
84:	learn: 21.3092119	total: 427ms	remaining: 75.4ms
85:	learn: 21.2605557	total: 432ms	remaining: 70.3ms
86:	learn: 21.1123597	total: 436ms	remaining: 65.1ms
87:	learn: 21.0115642	total: 440ms	remaining: 60ms
88:	learn: 20.9389040	total: 445ms	remaining: 54.9ms
89:	learn: 20.8300300	total: 449ms	remaining: 49.8ms
90:	learn: 20.7159733	total: 453ms	remaining: 44.8ms
91:	learn: 20.6282090	total: 457ms	remaining: 39.7ms
92:	learn: 20.5164529	total: 461ms	remaining: 34.7ms
93:	learn: 20.4692032	total: 465ms	remaining: 29.7ms
94:	learn: 20.3768451	total: 470ms	remaining: 24.7ms
95:	learn: 20.2808056	total: 475ms	remaining: 19.8ms
96:	learn: 20.2082089	total: 480ms	remaining: 14.8ms
97:	learn: 20.1698768	total: 484ms	remaining: 9.89ms
98:	learn: 20.1048816	total: 489ms	remaining: 4.94ms
99:	learn: 20.0086159	total: 494ms	remaining: 0us
0:	learn: 27.6506730	total: 5.6ms	remaining: 554ms
1:	learn: 27.1638793	total: 10.7ms	remaining: 527ms
2:	learn: 26.8000665	total: 16.1ms	remaining: 521ms
3:	learn: 26.4256132	total: 21.2ms	remaining: 508ms
4:	learn: 26.0088351	total: 25.9ms	remaining: 493ms
5:	learn: 25.7558298	total: 31.1ms	remaining: 487ms
6:	learn: 25.3380711	total: 37.2ms	remaining: 494ms
7:	learn: 25.0571611	total: 42.5ms	remaining: 489ms
8:	learn: 24.6790148	total: 46.6ms	remaining: 472ms
9:	learn: 24.3600941	total: 50.9ms	remaining: 458ms
10:	learn: 24.1105667	total: 55.3ms	remaining: 448ms
11:	learn: 23.7736542	total: 59.3ms	remaining: 435ms
12:	learn: 23.5824429	total: 63.7ms	remaining: 426ms
13:	learn: 23.2658303	total: 68.1ms	remaining: 418ms
14:	learn: 23.0061886	total: 72.5ms	remaining: 411ms
15:	learn: 22.8060389	total: 76.8ms	remaining: 403ms
16:	learn: 22.5899735	total: 81ms	remaining: 396ms
17:	learn: 22.3625048	total: 85.6ms	remaining: 390ms
18:	learn: 22.0706477	total: 90ms	remaining: 384ms
19:	learn: 21.8739394	total: 94.2ms	remaining: 377ms
20:	learn: 21.6143650	total: 98.6ms	remaining: 371ms
21:	learn: 21.4571623	total: 103ms	remaining: 365ms
22:	learn: 21.2395769	total: 107ms	remaining: 358ms
23:	learn: 20.9801795	total: 112ms	remaining: 354ms
24:	learn: 20.8036808	total: 116ms	remaining: 348ms
25:	learn: 20.6387539	total: 120ms	remaining: 343ms
26:	learn: 20.4401427	total: 125ms	remaining: 337ms
27:	learn: 20.2879575	total: 129ms	remaining: 333ms
28:	learn: 20.0538664	total: 134ms	remaining: 329ms
29:	learn: 19.8363102	total: 139ms	remaining: 325ms
30:	learn: 19.7015446	total: 144ms	remaining: 320ms
31:	learn: 19.5483114	total: 149ms	remaining: 316ms
32:	learn: 19.4163053	total: 154ms	remaining: 312ms
33:	learn: 19.2880625	total: 162ms	remaining: 314ms
34:	learn: 19.1303389	total: 169ms	remaining: 314ms
35:	learn: 18.9237448	total: 176ms	remaining: 313ms
36:	learn: 18.8142925	total: 181ms	remaining: 308ms
37:	learn: 18.6994696	total: 187ms	remaining: 305ms
38:	learn: 18.5629211	total: 191ms	remaining: 299ms
39:	learn: 18.4600917	total: 195ms	remaining: 293ms
40:	learn: 18.3567139	total: 200ms	remaining: 287ms
41:	learn: 18.2120527	total: 204ms	remaining: 281ms
42:	learn: 18.0688062	total: 208ms	remaining: 276ms
43:	learn: 17.9250181	total: 212ms	remaining: 270ms
44:	learn: 17.8399138	total: 216ms	remaining: 265ms
45:	learn: 17.6720713	total: 220ms	remaining: 259ms
46:	learn: 17.5273091	total: 225ms	remaining: 254ms
47:	learn: 17.4232814	total: 229ms	remaining: 249ms
48:	learn: 17.2957579	total: 233ms	remaining: 243ms
49:	learn: 17.1892874	total: 238ms	remaining: 238ms
50:	learn: 17.0490355	total: 243ms	remaining: 233ms
51:	learn: 16.9666450	total: 247ms	remaining: 228ms
52:	learn: 16.8600056	total: 252ms	remaining: 223ms
53:	learn: 16.7542588	total: 256ms	remaining: 218ms
54:	learn: 16.6316077	total: 260ms	remaining: 213ms
55:	learn: 16.5588112	total: 265ms	remaining: 208ms
56:	learn: 16.5010186	total: 269ms	remaining: 203ms
57:	learn: 16.4081540	total: 273ms	remaining: 198ms
58:	learn: 16.3040451	total: 278ms	remaining: 193ms
59:	learn: 16.1890564	total: 283ms	remaining: 188ms
60:	learn: 16.0977103	total: 287ms	remaining: 184ms
61:	learn: 15.9627607	total: 292ms	remaining: 179ms
62:	learn: 15.9022248	total: 296ms	remaining: 174ms
63:	learn: 15.8151881	total: 301ms	remaining: 169ms
64:	learn: 15.7353125	total: 305ms	remaining: 164ms
65:	learn: 15.6312897	total: 310ms	remaining: 160ms
66:	learn: 15.5330927	total: 314ms	remaining: 155ms
67:	learn: 15.4698681	total: 319ms	remaining: 150ms
68:	learn: 15.4108571	total: 323ms	remaining: 145ms
69:	learn: 15.3492945	total: 327ms	remaining: 140ms
70:	learn: 15.3036540	total: 332ms	remaining: 135ms
71:	learn: 15.2390833	total: 336ms	remaining: 131ms
72:	learn: 15.1556327	total: 341ms	remaining: 126ms
73:	learn: 15.1016315	total: 346ms	remaining: 122ms
74:	learn: 15.0287076	total: 351ms	remaining: 117ms
75:	learn: 14.9530572	total: 356ms	remaining: 112ms
76:	learn: 14.8965517	total: 361ms	remaining: 108ms
77:	learn: 14.8125426	total: 367ms	remaining: 104ms
78:	learn: 14.7435359	total: 374ms	remaining: 99.5ms
79:	learn: 14.6963163	total: 383ms	remaining: 95.8ms
80:	learn: 14.6200060	total: 392ms	remaining: 91.8ms
81:	learn: 14.5707760	total: 400ms	remaining: 87.7ms
82:	learn: 14.5053651	total: 405ms	remaining: 82.9ms
83:	learn: 14.4115458	total: 410ms	remaining: 78.1ms
84:	learn: 14.3117159	total: 416ms	remaining: 73.4ms
85:	learn: 14.2511326	total: 421ms	remaining: 68.6ms
86:	learn: 14.1372486	total: 426ms	remaining: 63.7ms
87:	learn: 14.0992301	total: 432ms	remaining: 58.8ms
88:	learn: 14.0228331	total: 438ms	remaining: 54.1ms
89:	learn: 13.9249836	total: 444ms	remaining: 49.3ms
90:	learn: 13.8679364	total: 449ms	remaining: 44.4ms
91:	learn: 13.8405578	total: 455ms	remaining: 39.6ms
92:	learn: 13.7711325	total: 462ms	remaining: 34.8ms
93:	learn: 13.7357019	total: 467ms	remaining: 29.8ms
94:	learn: 13.6735271	total: 472ms	remaining: 24.9ms
95:	learn: 13.5682393	total: 477ms	remaining: 19.9ms
96:	learn: 13.5342610	total: 481ms	remaining: 14.9ms
97:	learn: 13.4710034	total: 486ms	remaining: 9.91ms
98:	learn: 13.4022402	total: 490ms	remaining: 4.95ms
99:	learn: 13.3351238	total: 495ms	remaining: 0us
0:	learn: 42.9181702	total: 5.09ms	remaining: 504ms
1:	learn: 42.0286736	total: 10.4ms	remaining: 510ms
2:	learn: 41.2764568	total: 15.4ms	remaining: 497ms
3:	learn: 40.4721918	total: 20.2ms	remaining: 485ms
4:	learn: 39.8518928	total: 24.9ms	remaining: 473ms
5:	learn: 39.2645479	total: 29.9ms	remaining: 468ms
6:	learn: 38.4453704	total: 34.2ms	remaining: 455ms
7:	learn: 37.7122059	total: 41.4ms	remaining: 477ms
8:	learn: 36.9185796	total: 49.8ms	remaining: 503ms
9:	learn: 36.1668427	total: 57.1ms	remaining: 514ms
10:	learn: 35.5639029	total: 62.8ms	remaining: 508ms
11:	learn: 34.7724193	total: 68.1ms	remaining: 499ms
12:	learn: 34.3053433	total: 73.4ms	remaining: 491ms
13:	learn: 33.6561327	total: 74.7ms	remaining: 459ms
14:	learn: 33.0134042	total: 79.1ms	remaining: 448ms
15:	learn: 32.4483300	total: 83.5ms	remaining: 438ms
16:	learn: 31.8581144	total: 87.7ms	remaining: 428ms
17:	learn: 31.2858301	total: 91.9ms	remaining: 418ms
18:	learn: 30.8483018	total: 96.1ms	remaining: 410ms
19:	learn: 30.4174622	total: 101ms	remaining: 403ms
20:	learn: 29.8994411	total: 105ms	remaining: 396ms
21:	learn: 29.5045355	total: 110ms	remaining: 388ms
22:	learn: 28.9923519	total: 114ms	remaining: 381ms
23:	learn: 28.4255717	total: 118ms	remaining: 375ms
24:	learn: 28.0283139	total: 123ms	remaining: 368ms
25:	learn: 27.7434814	total: 127ms	remaining: 362ms
26:	learn: 27.2770731	total: 131ms	remaining: 355ms
27:	learn: 26.8928270	total: 137ms	remaining: 351ms
28:	learn: 26.4282671	total: 141ms	remaining: 345ms
29:	learn: 26.0272764	total: 145ms	remaining: 338ms
30:	learn: 25.7579312	total: 149ms	remaining: 332ms
31:	learn: 25.4542434	total: 154ms	remaining: 326ms
32:	learn: 25.1232564	total: 158ms	remaining: 320ms
33:	learn: 24.8110795	total: 162ms	remaining: 314ms
34:	learn: 24.5077579	total: 166ms	remaining: 309ms
35:	learn: 24.1909000	total: 171ms	remaining: 303ms
36:	learn: 23.8719468	total: 175ms	remaining: 297ms
37:	learn: 23.5764366	total: 176ms	remaining: 287ms
38:	learn: 23.3468086	total: 181ms	remaining: 283ms
39:	learn: 23.0908771	total: 185ms	remaining: 278ms
40:	learn: 22.8580876	total: 190ms	remaining: 274ms
41:	learn: 22.6060825	total: 194ms	remaining: 268ms
42:	learn: 22.4125407	total: 199ms	remaining: 263ms
43:	learn: 22.1990617	total: 203ms	remaining: 258ms
44:	learn: 21.9716164	total: 208ms	remaining: 254ms
45:	learn: 21.8360935	total: 212ms	remaining: 249ms
46:	learn: 21.6169256	total: 216ms	remaining: 244ms
47:	learn: 21.4620612	total: 221ms	remaining: 239ms
48:	learn: 21.2894194	total: 225ms	remaining: 235ms
49:	learn: 21.1066266	total: 230ms	remaining: 230ms
50:	learn: 20.9484898	total: 235ms	remaining: 226ms
51:	learn: 20.7195338	total: 240ms	remaining: 221ms
52:	learn: 20.4899740	total: 244ms	remaining: 217ms
53:	learn: 20.3356583	total: 249ms	remaining: 212ms
54:	learn: 20.0754393	total: 258ms	remaining: 211ms
55:	learn: 19.9199159	total: 266ms	remaining: 209ms
56:	learn: 19.7761128	total: 274ms	remaining: 207ms
57:	learn: 19.6533060	total: 281ms	remaining: 203ms
58:	learn: 19.5113942	total: 287ms	remaining: 199ms
59:	learn: 19.3985022	total: 292ms	remaining: 195ms
60:	learn: 19.2683443	total: 297ms	remaining: 190ms
61:	learn: 19.1460824	total: 302ms	remaining: 185ms
62:	learn: 19.0042655	total: 308ms	remaining: 181ms
63:	learn: 18.8720873	total: 313ms	remaining: 176ms
64:	learn: 18.7183888	total: 318ms	remaining: 171ms
65:	learn: 18.5472360	total: 323ms	remaining: 166ms
66:	learn: 18.3976642	total: 328ms	remaining: 161ms
67:	learn: 18.2282851	total: 333ms	remaining: 157ms
68:	learn: 18.1469157	total: 338ms	remaining: 152ms
69:	learn: 18.0649494	total: 344ms	remaining: 147ms
70:	learn: 17.9485405	total: 348ms	remaining: 142ms
71:	learn: 17.8460261	total: 353ms	remaining: 137ms
72:	learn: 17.7679843	total: 357ms	remaining: 132ms
73:	learn: 17.5989290	total: 362ms	remaining: 127ms
74:	learn: 17.4381322	total: 366ms	remaining: 122ms
75:	learn: 17.3370886	total: 370ms	remaining: 117ms
76:	learn: 17.2675308	total: 375ms	remaining: 112ms
77:	learn: 17.1946430	total: 379ms	remaining: 107ms
78:	learn: 17.0923725	total: 383ms	remaining: 102ms
79:	learn: 17.0537265	total: 388ms	remaining: 96.9ms
80:	learn: 16.9456831	total: 392ms	remaining: 92ms
81:	learn: 16.8457353	total: 397ms	remaining: 87.1ms
82:	learn: 16.7469310	total: 401ms	remaining: 82.1ms
83:	learn: 16.6679953	total: 405ms	remaining: 77.2ms
84:	learn: 16.6274189	total: 410ms	remaining: 72.3ms
85:	learn: 16.5516530	total: 414ms	remaining: 67.4ms
86:	learn: 16.4886066	total: 418ms	remaining: 62.5ms
87:	learn: 16.3947859	total: 423ms	remaining: 57.6ms
88:	learn: 16.3406495	total: 427ms	remaining: 52.8ms
89:	learn: 16.3019195	total: 432ms	remaining: 48ms
90:	learn: 16.1860681	total: 437ms	remaining: 43.2ms
91:	learn: 16.1282812	total: 442ms	remaining: 38.4ms
92:	learn: 16.0303652	total: 447ms	remaining: 33.6ms
93:	learn: 15.9561692	total: 451ms	remaining: 28.8ms
94:	learn: 15.8733994	total: 456ms	remaining: 24ms
95:	learn: 15.8108833	total: 465ms	remaining: 19.4ms
96:	learn: 15.7606004	total: 471ms	remaining: 14.6ms
97:	learn: 15.6984664	total: 479ms	remaining: 9.77ms
98:	learn: 15.6223632	total: 484ms	remaining: 4.88ms
99:	learn: 15.5671136	total: 489ms	remaining: 0us
0:	learn: 46.4788614	total: 1.86ms	remaining: 184ms
1:	learn: 45.7608372	total: 6.44ms	remaining: 315ms
2:	learn: 44.8825004	total: 10.6ms	remaining: 341ms
3:	learn: 44.0362738	total: 14.9ms	remaining: 358ms
4:	learn: 43.2086374	total: 19.5ms	remaining: 370ms
5:	learn: 42.5835773	total: 23.7ms	remaining: 371ms
6:	learn: 41.9673269	total: 28.2ms	remaining: 375ms
7:	learn: 41.4748717	total: 32.5ms	remaining: 373ms
8:	learn: 40.7129183	total: 36.7ms	remaining: 371ms
9:	learn: 39.8900884	total: 41.2ms	remaining: 371ms
10:	learn: 39.4142193	total: 45.4ms	remaining: 368ms
11:	learn: 38.8645613	total: 49.9ms	remaining: 366ms
12:	learn: 38.2394731	total: 54.1ms	remaining: 362ms
13:	learn: 37.6834515	total: 58.2ms	remaining: 358ms
14:	learn: 37.0673507	total: 62.6ms	remaining: 354ms
15:	learn: 36.4728340	total: 67.3ms	remaining: 353ms
16:	learn: 36.0489086	total: 71.7ms	remaining: 350ms
17:	learn: 35.4744141	total: 76.3ms	remaining: 347ms
18:	learn: 35.0106021	total: 80.9ms	remaining: 345ms
19:	learn: 34.5586053	total: 85.2ms	remaining: 341ms
20:	learn: 34.1308223	total: 89.6ms	remaining: 337ms
21:	learn: 33.7701450	total: 94.3ms	remaining: 334ms
22:	learn: 33.4425444	total: 99.3ms	remaining: 332ms
23:	learn: 33.0296412	total: 104ms	remaining: 329ms
24:	learn: 32.6359803	total: 109ms	remaining: 326ms
25:	learn: 32.1846182	total: 113ms	remaining: 322ms
26:	learn: 31.7620230	total: 118ms	remaining: 320ms
27:	learn: 31.4669337	total: 125ms	remaining: 323ms
28:	learn: 31.0792062	total: 133ms	remaining: 326ms
29:	learn: 30.7970537	total: 145ms	remaining: 338ms
30:	learn: 30.4952215	total: 153ms	remaining: 340ms
31:	learn: 30.2845344	total: 159ms	remaining: 337ms
32:	learn: 29.9592732	total: 164ms	remaining: 333ms
33:	learn: 29.6798596	total: 170ms	remaining: 330ms
34:	learn: 29.3368905	total: 176ms	remaining: 326ms
35:	learn: 29.0621238	total: 181ms	remaining: 322ms
36:	learn: 28.6445375	total: 187ms	remaining: 319ms
37:	learn: 28.2418096	total: 193ms	remaining: 314ms
38:	learn: 27.9495390	total: 198ms	remaining: 310ms
39:	learn: 27.6958160	total: 204ms	remaining: 305ms
40:	learn: 27.4811189	total: 208ms	remaining: 300ms
41:	learn: 27.1494420	total: 214ms	remaining: 295ms
42:	learn: 26.8388873	total: 220ms	remaining: 291ms
43:	learn: 26.5721300	total: 225ms	remaining: 286ms
44:	learn: 26.3384738	total: 229ms	remaining: 280ms
45:	learn: 26.1894781	total: 234ms	remaining: 275ms
46:	learn: 25.9580198	total: 239ms	remaining: 270ms
47:	learn: 25.7897985	total: 244ms	remaining: 264ms
48:	learn: 25.6000271	total: 248ms	remaining: 258ms
49:	learn: 25.4130873	total: 253ms	remaining: 253ms
50:	learn: 25.1699061	total: 257ms	remaining: 247ms
51:	learn: 24.9324449	total: 262ms	remaining: 242ms
52:	learn: 24.7729152	total: 266ms	remaining: 236ms
53:	learn: 24.5026563	total: 271ms	remaining: 230ms
54:	learn: 24.2332627	total: 276ms	remaining: 225ms
55:	learn: 23.9611984	total: 281ms	remaining: 221ms
56:	learn: 23.7862603	total: 285ms	remaining: 215ms
57:	learn: 23.6318154	total: 290ms	remaining: 210ms
58:	learn: 23.4443306	total: 294ms	remaining: 205ms
59:	learn: 23.2581425	total: 299ms	remaining: 200ms
60:	learn: 23.0549901	total: 306ms	remaining: 196ms
61:	learn: 22.8666218	total: 312ms	remaining: 192ms
62:	learn: 22.6956739	total: 319ms	remaining: 187ms
63:	learn: 22.5068544	total: 325ms	remaining: 183ms
64:	learn: 22.1859147	total: 331ms	remaining: 178ms
65:	learn: 22.0462043	total: 336ms	remaining: 173ms
66:	learn: 21.9329563	total: 344ms	remaining: 170ms
67:	learn: 21.8029736	total: 349ms	remaining: 164ms
68:	learn: 21.6861091	total: 355ms	remaining: 159ms
69:	learn: 21.4838140	total: 359ms	remaining: 154ms
70:	learn: 21.3548921	total: 364ms	remaining: 149ms
71:	learn: 21.2244517	total: 369ms	remaining: 144ms
72:	learn: 21.0702958	total: 374ms	remaining: 138ms
73:	learn: 20.9224662	total: 379ms	remaining: 133ms
74:	learn: 20.8150357	total: 383ms	remaining: 128ms
75:	learn: 20.6962739	total: 388ms	remaining: 123ms
76:	learn: 20.5809258	total: 393ms	remaining: 117ms
77:	learn: 20.4735470	total: 398ms	remaining: 112ms
78:	learn: 20.3778167	total: 403ms	remaining: 107ms
79:	learn: 20.2211268	total: 407ms	remaining: 102ms
80:	learn: 20.1478678	total: 417ms	remaining: 97.7ms
81:	learn: 20.1032967	total: 421ms	remaining: 92.4ms
82:	learn: 19.9236300	total: 426ms	remaining: 87.2ms
83:	learn: 19.8151745	total: 431ms	remaining: 82ms
84:	learn: 19.7099856	total: 435ms	remaining: 76.8ms
85:	learn: 19.6264833	total: 440ms	remaining: 71.6ms
86:	learn: 19.4916361	total: 444ms	remaining: 66.4ms
87:	learn: 19.4050529	total: 449ms	remaining: 61.2ms
88:	learn: 19.2547065	total: 453ms	remaining: 56ms
89:	learn: 19.1610225	total: 458ms	remaining: 50.8ms
90:	learn: 19.0898958	total: 462ms	remaining: 45.7ms
91:	learn: 19.0489664	total: 467ms	remaining: 40.6ms
92:	learn: 18.9206240	total: 471ms	remaining: 35.4ms
93:	learn: 18.8636239	total: 475ms	remaining: 30.3ms
94:	learn: 18.8126187	total: 480ms	remaining: 25.2ms
95:	learn: 18.7579275	total: 484ms	remaining: 20.2ms
96:	learn: 18.6382753	total: 489ms	remaining: 15.1ms
97:	learn: 18.5397334	total: 493ms	remaining: 10.1ms
98:	learn: 18.4375951	total: 498ms	remaining: 5.03ms
99:	learn: 18.4033755	total: 503ms	remaining: 0us
0:	learn: 46.1068821	total: 2.31ms	remaining: 228ms
1:	learn: 45.3970261	total: 7.42ms	remaining: 364ms
2:	learn: 44.8732696	total: 12.9ms	remaining: 418ms
3:	learn: 44.1290184	total: 18.2ms	remaining: 436ms
4:	learn: 43.3290271	total: 23.3ms	remaining: 442ms
5:	learn: 42.7069090	total: 28.9ms	remaining: 453ms
6:	learn: 42.0572971	total: 34.1ms	remaining: 454ms
7:	learn: 41.4797924	total: 39ms	remaining: 448ms
8:	learn: 41.0023122	total: 44.2ms	remaining: 447ms
9:	learn: 40.5330570	total: 49.6ms	remaining: 446ms
10:	learn: 39.9726545	total: 55.1ms	remaining: 446ms
11:	learn: 39.3044053	total: 59.3ms	remaining: 435ms
12:	learn: 38.8169735	total: 63.6ms	remaining: 426ms
13:	learn: 38.2458761	total: 68ms	remaining: 418ms
14:	learn: 37.6280321	total: 72.2ms	remaining: 409ms
15:	learn: 37.0800610	total: 76.6ms	remaining: 402ms
16:	learn: 36.5489363	total: 81ms	remaining: 395ms
17:	learn: 36.0981456	total: 84.9ms	remaining: 387ms
18:	learn: 35.6956274	total: 89.2ms	remaining: 380ms
19:	learn: 35.1471999	total: 93.4ms	remaining: 374ms
20:	learn: 34.6235408	total: 97.7ms	remaining: 368ms
21:	learn: 34.1987018	total: 102ms	remaining: 362ms
22:	learn: 33.8985062	total: 107ms	remaining: 357ms
23:	learn: 33.3869017	total: 111ms	remaining: 350ms
24:	learn: 32.9100550	total: 115ms	remaining: 344ms
25:	learn: 32.4156208	total: 119ms	remaining: 339ms
26:	learn: 31.9320493	total: 123ms	remaining: 334ms
27:	learn: 31.5711468	total: 127ms	remaining: 327ms
28:	learn: 31.2404433	total: 132ms	remaining: 322ms
29:	learn: 30.8807946	total: 136ms	remaining: 318ms
30:	learn: 30.5948438	total: 141ms	remaining: 313ms
31:	learn: 30.3885560	total: 145ms	remaining: 309ms
32:	learn: 30.0625101	total: 150ms	remaining: 305ms
33:	learn: 29.9113114	total: 155ms	remaining: 301ms
34:	learn: 29.6983470	total: 159ms	remaining: 296ms
35:	learn: 29.4775849	total: 164ms	remaining: 292ms
36:	learn: 29.0538055	total: 169ms	remaining: 287ms
37:	learn: 28.6792318	total: 173ms	remaining: 283ms
38:	learn: 28.4231383	total: 181ms	remaining: 284ms
39:	learn: 28.1078565	total: 191ms	remaining: 286ms
40:	learn: 27.9079179	total: 198ms	remaining: 285ms
41:	learn: 27.6721506	total: 203ms	remaining: 280ms
42:	learn: 27.4228033	total: 210ms	remaining: 278ms
43:	learn: 27.1740534	total: 215ms	remaining: 274ms
44:	learn: 26.8584071	total: 221ms	remaining: 270ms
45:	learn: 26.6902083	total: 225ms	remaining: 264ms
46:	learn: 26.4855335	total: 230ms	remaining: 259ms
47:	learn: 26.2730822	total: 235ms	remaining: 254ms
48:	learn: 26.1058689	total: 240ms	remaining: 250ms
49:	learn: 25.8587318	total: 245ms	remaining: 245ms
50:	learn: 25.7558005	total: 250ms	remaining: 240ms
51:	learn: 25.5846925	total: 255ms	remaining: 236ms
52:	learn: 25.4249887	total: 261ms	remaining: 231ms
53:	learn: 25.1911054	total: 265ms	remaining: 226ms
54:	learn: 25.0544755	total: 270ms	remaining: 221ms
55:	learn: 24.8874006	total: 276ms	remaining: 217ms
56:	learn: 24.7736279	total: 281ms	remaining: 212ms
57:	learn: 24.6156255	total: 286ms	remaining: 207ms
58:	learn: 24.3962421	total: 291ms	remaining: 202ms
59:	learn: 24.2685129	total: 296ms	remaining: 197ms
60:	learn: 24.1874096	total: 301ms	remaining: 193ms
61:	learn: 24.0394287	total: 307ms	remaining: 188ms
62:	learn: 23.9281768	total: 311ms	remaining: 183ms
63:	learn: 23.7423900	total: 316ms	remaining: 178ms
64:	learn: 23.6015209	total: 321ms	remaining: 173ms
65:	learn: 23.4677943	total: 326ms	remaining: 168ms
66:	learn: 23.3215256	total: 331ms	remaining: 163ms
67:	learn: 23.1869360	total: 336ms	remaining: 158ms
68:	learn: 22.9691180	total: 340ms	remaining: 153ms
69:	learn: 22.7531657	total: 345ms	remaining: 148ms
70:	learn: 22.6133477	total: 351ms	remaining: 143ms
71:	learn: 22.3452758	total: 356ms	remaining: 138ms
72:	learn: 22.2065350	total: 361ms	remaining: 134ms
73:	learn: 22.1071155	total: 366ms	remaining: 129ms
74:	learn: 21.9740686	total: 371ms	remaining: 124ms
75:	learn: 21.8892033	total: 376ms	remaining: 119ms
76:	learn: 21.8267882	total: 385ms	remaining: 115ms
77:	learn: 21.7423479	total: 400ms	remaining: 113ms
78:	learn: 21.6242075	total: 407ms	remaining: 108ms
79:	learn: 21.5016910	total: 413ms	remaining: 103ms
80:	learn: 21.4806623	total: 414ms	remaining: 97.1ms
81:	learn: 21.3166637	total: 419ms	remaining: 92ms
82:	learn: 21.2222534	total: 424ms	remaining: 86.9ms
83:	learn: 21.1535708	total: 430ms	remaining: 81.8ms
84:	learn: 21.0858902	total: 435ms	remaining: 76.8ms
85:	learn: 20.9206003	total: 440ms	remaining: 71.7ms
86:	learn: 20.8674695	total: 446ms	remaining: 66.7ms
87:	learn: 20.8089875	total: 453ms	remaining: 61.7ms
88:	learn: 20.7085401	total: 459ms	remaining: 56.7ms
89:	learn: 20.5513468	total: 464ms	remaining: 51.5ms
90:	learn: 20.4586742	total: 469ms	remaining: 46.4ms
91:	learn: 20.3932149	total: 475ms	remaining: 41.3ms
92:	learn: 20.3000895	total: 480ms	remaining: 36.1ms
93:	learn: 20.2254009	total: 484ms	remaining: 30.9ms
94:	learn: 20.1750050	total: 488ms	remaining: 25.7ms
95:	learn: 20.0715579	total: 492ms	remaining: 20.5ms
96:	learn: 19.9920082	total: 496ms	remaining: 15.3ms
97:	learn: 19.9664401	total: 501ms	remaining: 10.2ms
98:	learn: 19.8689673	total: 505ms	remaining: 5.1ms
99:	learn: 19.7537356	total: 509ms	remaining: 0us
0:	learn: 46.8832143	total: 5.52ms	remaining: 547ms
1:	learn: 45.8700349	total: 11.1ms	remaining: 545ms
2:	learn: 45.0546867	total: 20.8ms	remaining: 673ms
3:	learn: 44.2829439	total: 28.7ms	remaining: 688ms
4:	learn: 43.4609042	total: 35.3ms	remaining: 671ms
5:	learn: 42.6754991	total: 40.8ms	remaining: 639ms
6:	learn: 41.9234935	total: 46.6ms	remaining: 620ms
7:	learn: 41.3987518	total: 51.1ms	remaining: 587ms
8:	learn: 40.6625066	total: 55.6ms	remaining: 563ms
9:	learn: 40.0029561	total: 60.2ms	remaining: 542ms
10:	learn: 39.3897033	total: 64.9ms	remaining: 525ms
11:	learn: 38.7741453	total: 69.7ms	remaining: 511ms
12:	learn: 38.1201100	total: 74.3ms	remaining: 497ms
13:	learn: 37.5129454	total: 79.1ms	remaining: 486ms
14:	learn: 37.2062206	total: 83.6ms	remaining: 474ms
15:	learn: 36.6831741	total: 88.2ms	remaining: 463ms
16:	learn: 36.2902788	total: 93.1ms	remaining: 454ms
17:	learn: 35.7639930	total: 97.7ms	remaining: 445ms
18:	learn: 35.2580953	total: 102ms	remaining: 435ms
19:	learn: 34.7809739	total: 106ms	remaining: 425ms
20:	learn: 34.1330433	total: 111ms	remaining: 416ms
21:	learn: 33.7302219	total: 115ms	remaining: 407ms
22:	learn: 33.3502495	total: 119ms	remaining: 400ms
23:	learn: 33.0067804	total: 124ms	remaining: 392ms
24:	learn: 32.6897855	total: 128ms	remaining: 385ms
25:	learn: 32.4361119	total: 133ms	remaining: 378ms
26:	learn: 32.1278981	total: 137ms	remaining: 371ms
27:	learn: 31.7863721	total: 141ms	remaining: 363ms
28:	learn: 31.4791450	total: 146ms	remaining: 357ms
29:	learn: 31.1760161	total: 151ms	remaining: 351ms
30:	learn: 30.9238888	total: 155ms	remaining: 345ms
31:	learn: 30.5500905	total: 160ms	remaining: 339ms
32:	learn: 30.3078126	total: 164ms	remaining: 333ms
33:	learn: 30.0480921	total: 169ms	remaining: 327ms
34:	learn: 29.8623884	total: 173ms	remaining: 321ms
35:	learn: 29.5991038	total: 177ms	remaining: 315ms
36:	learn: 29.4061161	total: 181ms	remaining: 309ms
37:	learn: 29.0269515	total: 186ms	remaining: 303ms
38:	learn: 28.8224959	total: 190ms	remaining: 297ms
39:	learn: 28.6417843	total: 195ms	remaining: 292ms
40:	learn: 28.3633368	total: 200ms	remaining: 287ms
41:	learn: 28.0200246	total: 204ms	remaining: 282ms
42:	learn: 27.7221254	total: 209ms	remaining: 277ms
43:	learn: 27.5105818	total: 214ms	remaining: 272ms
44:	learn: 27.3551010	total: 219ms	remaining: 267ms
45:	learn: 27.0787522	total: 224ms	remaining: 263ms
46:	learn: 26.8726317	total: 229ms	remaining: 258ms
47:	learn: 26.8003277	total: 234ms	remaining: 253ms
48:	learn: 26.5493785	total: 239ms	remaining: 249ms
49:	learn: 26.3699550	total: 243ms	remaining: 243ms
50:	learn: 26.1519631	total: 248ms	remaining: 238ms
51:	learn: 25.9277325	total: 253ms	remaining: 234ms
52:	learn: 25.7286035	total: 258ms	remaining: 229ms
53:	learn: 25.4999193	total: 267ms	remaining: 228ms
54:	learn: 25.3434703	total: 275ms	remaining: 225ms
55:	learn: 25.1497545	total: 285ms	remaining: 224ms
56:	learn: 24.9498143	total: 291ms	remaining: 219ms
57:	learn: 24.6509390	total: 297ms	remaining: 215ms
58:	learn: 24.5576144	total: 303ms	remaining: 210ms
59:	learn: 24.4265144	total: 309ms	remaining: 206ms
60:	learn: 24.3100706	total: 315ms	remaining: 201ms
61:	learn: 24.1727952	total: 320ms	remaining: 196ms
62:	learn: 24.0478558	total: 326ms	remaining: 192ms
63:	learn: 23.9124577	total: 332ms	remaining: 187ms
64:	learn: 23.7703718	total: 337ms	remaining: 181ms
65:	learn: 23.5975027	total: 342ms	remaining: 176ms
66:	learn: 23.4318077	total: 346ms	remaining: 171ms
67:	learn: 23.3099691	total: 352ms	remaining: 166ms
68:	learn: 23.1947982	total: 357ms	remaining: 161ms
69:	learn: 23.0260174	total: 362ms	remaining: 155ms
70:	learn: 22.8523100	total: 366ms	remaining: 149ms
71:	learn: 22.8028534	total: 370ms	remaining: 144ms
72:	learn: 22.6880658	total: 374ms	remaining: 138ms
73:	learn: 22.5956809	total: 379ms	remaining: 133ms
74:	learn: 22.4692932	total: 383ms	remaining: 128ms
75:	learn: 22.2863504	total: 387ms	remaining: 122ms
76:	learn: 22.1911237	total: 392ms	remaining: 117ms
77:	learn: 22.1098391	total: 396ms	remaining: 112ms
78:	learn: 22.0182738	total: 400ms	remaining: 106ms
79:	learn: 21.9306746	total: 404ms	remaining: 101ms
80:	learn: 21.7508233	total: 408ms	remaining: 95.8ms
81:	learn: 21.7108446	total: 413ms	remaining: 90.6ms
82:	learn: 21.5931852	total: 417ms	remaining: 85.5ms
83:	learn: 21.4480361	total: 421ms	remaining: 80.2ms
84:	learn: 21.3092119	total: 425ms	remaining: 75.1ms
85:	learn: 21.2605557	total: 430ms	remaining: 70ms
86:	learn: 21.1123597	total: 435ms	remaining: 65ms
87:	learn: 21.0115642	total: 439ms	remaining: 59.9ms
88:	learn: 20.9389040	total: 444ms	remaining: 54.9ms
89:	learn: 20.8300300	total: 449ms	remaining: 49.9ms
90:	learn: 20.7159733	total: 453ms	remaining: 44.8ms
91:	learn: 20.6282090	total: 461ms	remaining: 40.1ms
92:	learn: 20.5164529	total: 468ms	remaining: 35.3ms
93:	learn: 20.4692032	total: 475ms	remaining: 30.3ms
94:	learn: 20.3768451	total: 481ms	remaining: 25.3ms
95:	learn: 20.2808056	total: 487ms	remaining: 20.3ms
96:	learn: 20.2082089	total: 491ms	remaining: 15.2ms
97:	learn: 20.1698768	total: 496ms	remaining: 10.1ms
98:	learn: 20.1048816	total: 500ms	remaining: 5.05ms
99:	learn: 20.0086159	total: 504ms	remaining: 0us
0:	learn: 27.6506730	total: 4.64ms	remaining: 460ms
1:	learn: 27.1638793	total: 8.77ms	remaining: 430ms
2:	learn: 26.8000665	total: 12.9ms	remaining: 418ms
3:	learn: 26.4256132	total: 17.6ms	remaining: 423ms
4:	learn: 26.0088351	total: 22ms	remaining: 418ms
5:	learn: 25.7558298	total: 26.3ms	remaining: 412ms
6:	learn: 25.3380711	total: 30.7ms	remaining: 408ms
7:	learn: 25.0571611	total: 35.4ms	remaining: 407ms
8:	learn: 24.6790148	total: 39.9ms	remaining: 403ms
9:	learn: 24.3600941	total: 43.9ms	remaining: 395ms
10:	learn: 24.1105667	total: 48.4ms	remaining: 392ms
11:	learn: 23.7736542	total: 52.6ms	remaining: 386ms
12:	learn: 23.5824429	total: 56.9ms	remaining: 381ms
13:	learn: 23.2658303	total: 61.2ms	remaining: 376ms
14:	learn: 23.0061886	total: 65.6ms	remaining: 372ms
15:	learn: 22.8060389	total: 70.1ms	remaining: 368ms
16:	learn: 22.5899735	total: 74.4ms	remaining: 363ms
17:	learn: 22.3625048	total: 78.7ms	remaining: 358ms
18:	learn: 22.0706477	total: 83.3ms	remaining: 355ms
19:	learn: 21.8739394	total: 87.9ms	remaining: 352ms
20:	learn: 21.6143650	total: 92.3ms	remaining: 347ms
21:	learn: 21.4571623	total: 97.1ms	remaining: 344ms
22:	learn: 21.2395769	total: 102ms	remaining: 342ms
23:	learn: 20.9801795	total: 107ms	remaining: 339ms
24:	learn: 20.8036808	total: 114ms	remaining: 342ms
25:	learn: 20.6387539	total: 121ms	remaining: 345ms
26:	learn: 20.4401427	total: 132ms	remaining: 358ms
27:	learn: 20.2879575	total: 139ms	remaining: 356ms
28:	learn: 20.0538664	total: 145ms	remaining: 355ms
29:	learn: 19.8363102	total: 150ms	remaining: 350ms
30:	learn: 19.7015446	total: 156ms	remaining: 347ms
31:	learn: 19.5483114	total: 161ms	remaining: 342ms
32:	learn: 19.4163053	total: 166ms	remaining: 337ms
33:	learn: 19.2880625	total: 171ms	remaining: 332ms
34:	learn: 19.1303389	total: 177ms	remaining: 328ms
35:	learn: 18.9237448	total: 182ms	remaining: 324ms
36:	learn: 18.8142925	total: 187ms	remaining: 318ms
37:	learn: 18.6994696	total: 192ms	remaining: 313ms
38:	learn: 18.5629211	total: 197ms	remaining: 308ms
39:	learn: 18.4600917	total: 203ms	remaining: 304ms
40:	learn: 18.3567139	total: 208ms	remaining: 299ms
41:	learn: 18.2120527	total: 212ms	remaining: 293ms
42:	learn: 18.0688062	total: 216ms	remaining: 286ms
43:	learn: 17.9250181	total: 220ms	remaining: 280ms
44:	learn: 17.8399138	total: 225ms	remaining: 275ms
45:	learn: 17.6720713	total: 229ms	remaining: 269ms
46:	learn: 17.5273091	total: 233ms	remaining: 263ms
47:	learn: 17.4232814	total: 237ms	remaining: 257ms
48:	learn: 17.2957579	total: 242ms	remaining: 252ms
49:	learn: 17.1892874	total: 246ms	remaining: 246ms
50:	learn: 17.0490355	total: 251ms	remaining: 241ms
51:	learn: 16.9666450	total: 255ms	remaining: 235ms
52:	learn: 16.8600056	total: 259ms	remaining: 230ms
53:	learn: 16.7542588	total: 264ms	remaining: 225ms
54:	learn: 16.6316077	total: 269ms	remaining: 220ms
55:	learn: 16.5588112	total: 273ms	remaining: 214ms
56:	learn: 16.5010186	total: 277ms	remaining: 209ms
57:	learn: 16.4081540	total: 282ms	remaining: 204ms
58:	learn: 16.3040451	total: 287ms	remaining: 199ms
59:	learn: 16.1890564	total: 292ms	remaining: 194ms
60:	learn: 16.0977103	total: 297ms	remaining: 190ms
61:	learn: 15.9627607	total: 302ms	remaining: 185ms
62:	learn: 15.9022248	total: 307ms	remaining: 180ms
63:	learn: 15.8151881	total: 312ms	remaining: 176ms
64:	learn: 15.7353125	total: 322ms	remaining: 173ms
65:	learn: 15.6312897	total: 329ms	remaining: 169ms
66:	learn: 15.5330927	total: 335ms	remaining: 165ms
67:	learn: 15.4698681	total: 340ms	remaining: 160ms
68:	learn: 15.4108571	total: 345ms	remaining: 155ms
69:	learn: 15.3492945	total: 350ms	remaining: 150ms
70:	learn: 15.3036540	total: 354ms	remaining: 145ms
71:	learn: 15.2390833	total: 358ms	remaining: 139ms
72:	learn: 15.1556327	total: 363ms	remaining: 134ms
73:	learn: 15.1016315	total: 367ms	remaining: 129ms
74:	learn: 15.0287076	total: 371ms	remaining: 124ms
75:	learn: 14.9530572	total: 375ms	remaining: 119ms
76:	learn: 14.8965517	total: 379ms	remaining: 113ms
77:	learn: 14.8125426	total: 384ms	remaining: 108ms
78:	learn: 14.7435359	total: 388ms	remaining: 103ms
79:	learn: 14.6963163	total: 393ms	remaining: 98.2ms
80:	learn: 14.6200060	total: 397ms	remaining: 93.1ms
81:	learn: 14.5707760	total: 401ms	remaining: 88.1ms
82:	learn: 14.5053651	total: 406ms	remaining: 83.2ms
83:	learn: 14.4115458	total: 410ms	remaining: 78.2ms
84:	learn: 14.3117159	total: 415ms	remaining: 73.2ms
85:	learn: 14.2511326	total: 420ms	remaining: 68.4ms
86:	learn: 14.1372486	total: 424ms	remaining: 63.4ms
87:	learn: 14.0992301	total: 428ms	remaining: 58.4ms
88:	learn: 14.0228331	total: 433ms	remaining: 53.5ms
89:	learn: 13.9249836	total: 438ms	remaining: 48.6ms
90:	learn: 13.8679364	total: 442ms	remaining: 43.7ms
91:	learn: 13.8405578	total: 446ms	remaining: 38.8ms
92:	learn: 13.7711325	total: 451ms	remaining: 33.9ms
93:	learn: 13.7357019	total: 455ms	remaining: 29.1ms
94:	learn: 13.6735271	total: 460ms	remaining: 24.2ms
95:	learn: 13.5682393	total: 465ms	remaining: 19.4ms
96:	learn: 13.5342610	total: 469ms	remaining: 14.5ms
97:	learn: 13.4710034	total: 473ms	remaining: 9.66ms
98:	learn: 13.4022402	total: 478ms	remaining: 4.83ms
99:	learn: 13.3351238	total: 483ms	remaining: 0us
0:	learn: 42.9181702	total: 5.6ms	remaining: 554ms
1:	learn: 42.0286736	total: 11.1ms	remaining: 546ms
2:	learn: 41.2764568	total: 16.1ms	remaining: 522ms
3:	learn: 40.4721918	total: 21.2ms	remaining: 508ms
4:	learn: 39.8518928	total: 26.8ms	remaining: 509ms
5:	learn: 39.2645479	total: 31.9ms	remaining: 499ms
6:	learn: 38.4453704	total: 37.1ms	remaining: 493ms
7:	learn: 37.7122059	total: 42.9ms	remaining: 494ms
8:	learn: 36.9185796	total: 48ms	remaining: 486ms
9:	learn: 36.1668427	total: 53.2ms	remaining: 479ms
10:	learn: 35.5639029	total: 58.1ms	remaining: 470ms
11:	learn: 34.7724193	total: 63.7ms	remaining: 467ms
12:	learn: 34.3053433	total: 69.5ms	remaining: 465ms
13:	learn: 33.6561327	total: 71.1ms	remaining: 437ms
14:	learn: 33.0134042	total: 75.3ms	remaining: 426ms
15:	learn: 32.4483300	total: 79.4ms	remaining: 417ms
16:	learn: 31.8581144	total: 84.1ms	remaining: 411ms
17:	learn: 31.2858301	total: 89ms	remaining: 405ms
18:	learn: 30.8483018	total: 93.9ms	remaining: 400ms
19:	learn: 30.4174622	total: 99.1ms	remaining: 397ms
20:	learn: 29.8994411	total: 104ms	remaining: 391ms
21:	learn: 29.5045355	total: 109ms	remaining: 385ms
22:	learn: 28.9923519	total: 114ms	remaining: 381ms
23:	learn: 28.4255717	total: 118ms	remaining: 375ms
24:	learn: 28.0283139	total: 122ms	remaining: 367ms
25:	learn: 27.7434814	total: 127ms	remaining: 361ms
26:	learn: 27.2770731	total: 132ms	remaining: 357ms
27:	learn: 26.8928270	total: 136ms	remaining: 350ms
28:	learn: 26.4282671	total: 140ms	remaining: 343ms
29:	learn: 26.0272764	total: 145ms	remaining: 338ms
30:	learn: 25.7579312	total: 150ms	remaining: 333ms
31:	learn: 25.4542434	total: 154ms	remaining: 328ms
32:	learn: 25.1232564	total: 159ms	remaining: 323ms
33:	learn: 24.8110795	total: 164ms	remaining: 319ms
34:	learn: 24.5077579	total: 169ms	remaining: 313ms
35:	learn: 24.1909000	total: 174ms	remaining: 309ms
36:	learn: 23.8719468	total: 183ms	remaining: 311ms
37:	learn: 23.5764366	total: 184ms	remaining: 301ms
38:	learn: 23.3468086	total: 192ms	remaining: 300ms
39:	learn: 23.0908771	total: 197ms	remaining: 296ms
40:	learn: 22.8580876	total: 204ms	remaining: 293ms
41:	learn: 22.6060825	total: 208ms	remaining: 288ms
42:	learn: 22.4125407	total: 213ms	remaining: 282ms
43:	learn: 22.1990617	total: 217ms	remaining: 277ms
44:	learn: 21.9716164	total: 222ms	remaining: 271ms
45:	learn: 21.8360935	total: 227ms	remaining: 266ms
46:	learn: 21.6169256	total: 231ms	remaining: 261ms
47:	learn: 21.4620612	total: 236ms	remaining: 256ms
48:	learn: 21.2894194	total: 241ms	remaining: 251ms
49:	learn: 21.1066266	total: 245ms	remaining: 245ms
50:	learn: 20.9484898	total: 250ms	remaining: 240ms
51:	learn: 20.7195338	total: 254ms	remaining: 235ms
52:	learn: 20.4899740	total: 259ms	remaining: 229ms
53:	learn: 20.3356583	total: 263ms	remaining: 224ms
54:	learn: 20.0754393	total: 267ms	remaining: 219ms
55:	learn: 19.9199159	total: 272ms	remaining: 214ms
56:	learn: 19.7761128	total: 276ms	remaining: 208ms
57:	learn: 19.6533060	total: 280ms	remaining: 203ms
58:	learn: 19.5113942	total: 285ms	remaining: 198ms
59:	learn: 19.3985022	total: 289ms	remaining: 193ms
60:	learn: 19.2683443	total: 293ms	remaining: 187ms
61:	learn: 19.1460824	total: 297ms	remaining: 182ms
62:	learn: 19.0042655	total: 302ms	remaining: 177ms
63:	learn: 18.8720873	total: 307ms	remaining: 172ms
64:	learn: 18.7183888	total: 311ms	remaining: 168ms
65:	learn: 18.5472360	total: 316ms	remaining: 163ms
66:	learn: 18.3976642	total: 320ms	remaining: 158ms
67:	learn: 18.2282851	total: 325ms	remaining: 153ms
68:	learn: 18.1469157	total: 330ms	remaining: 148ms
69:	learn: 18.0649494	total: 334ms	remaining: 143ms
70:	learn: 17.9485405	total: 339ms	remaining: 139ms
71:	learn: 17.8460261	total: 344ms	remaining: 134ms
72:	learn: 17.7679843	total: 349ms	remaining: 129ms
73:	learn: 17.5989290	total: 354ms	remaining: 124ms
74:	learn: 17.4381322	total: 359ms	remaining: 120ms
75:	learn: 17.3370886	total: 364ms	remaining: 115ms
76:	learn: 17.2675308	total: 369ms	remaining: 110ms
77:	learn: 17.1946430	total: 374ms	remaining: 105ms
78:	learn: 17.0923725	total: 378ms	remaining: 101ms
79:	learn: 17.0537265	total: 383ms	remaining: 95.8ms
80:	learn: 16.9456831	total: 391ms	remaining: 91.8ms
81:	learn: 16.8457353	total: 400ms	remaining: 87.7ms
82:	learn: 16.7469310	total: 411ms	remaining: 84.2ms
83:	learn: 16.6679953	total: 420ms	remaining: 80ms
84:	learn: 16.6274189	total: 426ms	remaining: 75.2ms
85:	learn: 16.5516530	total: 431ms	remaining: 70.2ms
86:	learn: 16.4886066	total: 437ms	remaining: 65.3ms
87:	learn: 16.3947859	total: 444ms	remaining: 60.5ms
88:	learn: 16.3406495	total: 449ms	remaining: 55.5ms
89:	learn: 16.3019195	total: 455ms	remaining: 50.6ms
90:	learn: 16.1860681	total: 461ms	remaining: 45.6ms
91:	learn: 16.1282812	total: 466ms	remaining: 40.5ms
92:	learn: 16.0303652	total: 480ms	remaining: 36.1ms
93:	learn: 15.9561692	total: 485ms	remaining: 31ms
94:	learn: 15.8733994	total: 490ms	remaining: 25.8ms
95:	learn: 15.8108833	total: 495ms	remaining: 20.6ms
96:	learn: 15.7606004	total: 500ms	remaining: 15.5ms
97:	learn: 15.6984664	total: 504ms	remaining: 10.3ms
98:	learn: 15.6223632	total: 509ms	remaining: 5.14ms
99:	learn: 15.5671136	total: 514ms	remaining: 0us
0:	learn: 46.4788614	total: 1.85ms	remaining: 183ms
1:	learn: 45.7608372	total: 6.23ms	remaining: 305ms
2:	learn: 44.8825004	total: 10.6ms	remaining: 343ms
3:	learn: 44.0362738	total: 15.3ms	remaining: 368ms
4:	learn: 43.2086374	total: 19.9ms	remaining: 379ms
5:	learn: 42.5835773	total: 24.4ms	remaining: 383ms
6:	learn: 41.9673269	total: 29.1ms	remaining: 386ms
7:	learn: 41.4748717	total: 33.6ms	remaining: 386ms
8:	learn: 40.7129183	total: 38.3ms	remaining: 387ms
9:	learn: 39.8900884	total: 43.8ms	remaining: 394ms
10:	learn: 39.4142193	total: 52.5ms	remaining: 425ms
11:	learn: 38.8645613	total: 59.1ms	remaining: 434ms
12:	learn: 38.2394731	total: 66ms	remaining: 442ms
13:	learn: 37.6834515	total: 70.7ms	remaining: 435ms
14:	learn: 37.0673507	total: 76.8ms	remaining: 435ms
15:	learn: 36.4728340	total: 81.5ms	remaining: 428ms
16:	learn: 36.0489086	total: 85.7ms	remaining: 419ms
17:	learn: 35.4744141	total: 90.1ms	remaining: 410ms
18:	learn: 35.0106021	total: 94.5ms	remaining: 403ms
19:	learn: 34.5586053	total: 99.2ms	remaining: 397ms
20:	learn: 34.1308223	total: 103ms	remaining: 389ms
21:	learn: 33.7701450	total: 108ms	remaining: 382ms
22:	learn: 33.4425444	total: 112ms	remaining: 374ms
23:	learn: 33.0296412	total: 116ms	remaining: 368ms
24:	learn: 32.6359803	total: 120ms	remaining: 361ms
25:	learn: 32.1846182	total: 125ms	remaining: 356ms
26:	learn: 31.7620230	total: 130ms	remaining: 351ms
27:	learn: 31.4669337	total: 135ms	remaining: 346ms
28:	learn: 31.0792062	total: 139ms	remaining: 341ms
29:	learn: 30.7970537	total: 143ms	remaining: 334ms
30:	learn: 30.4952215	total: 148ms	remaining: 330ms
31:	learn: 30.2845344	total: 152ms	remaining: 324ms
32:	learn: 29.9592732	total: 157ms	remaining: 318ms
33:	learn: 29.6798596	total: 161ms	remaining: 313ms
34:	learn: 29.3368905	total: 166ms	remaining: 308ms
35:	learn: 29.0621238	total: 170ms	remaining: 303ms
36:	learn: 28.6445375	total: 174ms	remaining: 297ms
37:	learn: 28.2418096	total: 179ms	remaining: 292ms
38:	learn: 27.9495390	total: 184ms	remaining: 287ms
39:	learn: 27.6958160	total: 188ms	remaining: 282ms
40:	learn: 27.4811189	total: 192ms	remaining: 276ms
41:	learn: 27.1494420	total: 197ms	remaining: 271ms
42:	learn: 26.8388873	total: 201ms	remaining: 267ms
43:	learn: 26.5721300	total: 205ms	remaining: 261ms
44:	learn: 26.3384738	total: 210ms	remaining: 256ms
45:	learn: 26.1894781	total: 214ms	remaining: 252ms
46:	learn: 25.9580198	total: 219ms	remaining: 247ms
47:	learn: 25.7897985	total: 224ms	remaining: 243ms
48:	learn: 25.6000271	total: 229ms	remaining: 238ms
49:	learn: 25.4130873	total: 233ms	remaining: 233ms
50:	learn: 25.1699061	total: 238ms	remaining: 229ms
51:	learn: 24.9324449	total: 244ms	remaining: 225ms
52:	learn: 24.7729152	total: 251ms	remaining: 223ms
53:	learn: 24.5026563	total: 260ms	remaining: 221ms
54:	learn: 24.2332627	total: 267ms	remaining: 219ms
55:	learn: 23.9611984	total: 275ms	remaining: 216ms
56:	learn: 23.7862603	total: 280ms	remaining: 211ms
57:	learn: 23.6318154	total: 285ms	remaining: 206ms
58:	learn: 23.4443306	total: 291ms	remaining: 202ms
59:	learn: 23.2581425	total: 296ms	remaining: 197ms
60:	learn: 23.0549901	total: 301ms	remaining: 193ms
61:	learn: 22.8666218	total: 307ms	remaining: 188ms
62:	learn: 22.6956739	total: 313ms	remaining: 184ms
63:	learn: 22.5068544	total: 318ms	remaining: 179ms
64:	learn: 22.1859147	total: 324ms	remaining: 174ms
65:	learn: 22.0462043	total: 328ms	remaining: 169ms
66:	learn: 21.9329563	total: 334ms	remaining: 164ms
67:	learn: 21.8029736	total: 339ms	remaining: 159ms
68:	learn: 21.6861091	total: 344ms	remaining: 155ms
69:	learn: 21.4838140	total: 349ms	remaining: 150ms
70:	learn: 21.3548921	total: 353ms	remaining: 144ms
71:	learn: 21.2244517	total: 358ms	remaining: 139ms
72:	learn: 21.0702958	total: 362ms	remaining: 134ms
73:	learn: 20.9224662	total: 366ms	remaining: 129ms
74:	learn: 20.8150357	total: 371ms	remaining: 124ms
75:	learn: 20.6962739	total: 375ms	remaining: 119ms
76:	learn: 20.5809258	total: 380ms	remaining: 113ms
77:	learn: 20.4735470	total: 385ms	remaining: 108ms
78:	learn: 20.3778167	total: 389ms	remaining: 103ms
79:	learn: 20.2211268	total: 394ms	remaining: 98.5ms
80:	learn: 20.1478678	total: 398ms	remaining: 93.5ms
81:	learn: 20.1032967	total: 403ms	remaining: 88.4ms
82:	learn: 19.9236300	total: 407ms	remaining: 83.4ms
83:	learn: 19.8151745	total: 412ms	remaining: 78.5ms
84:	learn: 19.7099856	total: 417ms	remaining: 73.5ms
85:	learn: 19.6264833	total: 421ms	remaining: 68.6ms
86:	learn: 19.4916361	total: 426ms	remaining: 63.7ms
87:	learn: 19.4050529	total: 431ms	remaining: 58.8ms
88:	learn: 19.2547065	total: 436ms	remaining: 53.9ms
89:	learn: 19.1610225	total: 444ms	remaining: 49.3ms
90:	learn: 19.0898958	total: 452ms	remaining: 44.7ms
91:	learn: 19.0489664	total: 459ms	remaining: 39.9ms
92:	learn: 18.9206240	total: 465ms	remaining: 35ms
93:	learn: 18.8636239	total: 471ms	remaining: 30.1ms
94:	learn: 18.8126187	total: 476ms	remaining: 25ms
95:	learn: 18.7579275	total: 481ms	remaining: 20ms
96:	learn: 18.6382753	total: 485ms	remaining: 15ms
97:	learn: 18.5397334	total: 490ms	remaining: 9.99ms
98:	learn: 18.4375951	total: 494ms	remaining: 4.99ms
99:	learn: 18.4033755	total: 499ms	remaining: 0us
0:	learn: 46.1068821	total: 1.95ms	remaining: 193ms
1:	learn: 45.3970261	total: 6.67ms	remaining: 327ms
2:	learn: 44.8732696	total: 10.9ms	remaining: 352ms
3:	learn: 44.1290184	total: 14.9ms	remaining: 358ms
4:	learn: 43.3290271	total: 19.4ms	remaining: 369ms
5:	learn: 42.7069090	total: 23.8ms	remaining: 373ms
6:	learn: 42.0572971	total: 28.3ms	remaining: 376ms
7:	learn: 41.4797924	total: 32.3ms	remaining: 371ms
8:	learn: 41.0023122	total: 36.6ms	remaining: 370ms
9:	learn: 40.5330570	total: 40.8ms	remaining: 367ms
10:	learn: 39.9726545	total: 44.7ms	remaining: 361ms
11:	learn: 39.3044053	total: 49ms	remaining: 359ms
12:	learn: 38.8169735	total: 53.5ms	remaining: 358ms
13:	learn: 38.2458761	total: 58.2ms	remaining: 357ms
14:	learn: 37.6280321	total: 62.8ms	remaining: 356ms
15:	learn: 37.0800610	total: 67.4ms	remaining: 354ms
16:	learn: 36.5489363	total: 71.9ms	remaining: 351ms
17:	learn: 36.0981456	total: 77.2ms	remaining: 352ms
18:	learn: 35.6956274	total: 82.2ms	remaining: 350ms
19:	learn: 35.1471999	total: 87.2ms	remaining: 349ms
20:	learn: 34.6235408	total: 92.1ms	remaining: 346ms
21:	learn: 34.1987018	total: 97ms	remaining: 344ms
22:	learn: 33.8985062	total: 102ms	remaining: 341ms
23:	learn: 33.3869017	total: 107ms	remaining: 340ms
24:	learn: 32.9100550	total: 130ms	remaining: 389ms
25:	learn: 32.4156208	total: 137ms	remaining: 389ms
26:	learn: 31.9320493	total: 144ms	remaining: 389ms
27:	learn: 31.5711468	total: 150ms	remaining: 385ms
28:	learn: 31.2404433	total: 156ms	remaining: 381ms
29:	learn: 30.8807946	total: 161ms	remaining: 377ms
30:	learn: 30.5948438	total: 167ms	remaining: 372ms
31:	learn: 30.3885560	total: 173ms	remaining: 367ms
32:	learn: 30.0625101	total: 179ms	remaining: 363ms
33:	learn: 29.9113114	total: 185ms	remaining: 359ms
34:	learn: 29.6983470	total: 200ms	remaining: 372ms
35:	learn: 29.4775849	total: 206ms	remaining: 366ms
36:	learn: 29.0538055	total: 211ms	remaining: 359ms
37:	learn: 28.6792318	total: 215ms	remaining: 351ms
38:	learn: 28.4231383	total: 220ms	remaining: 343ms
39:	learn: 28.1078565	total: 224ms	remaining: 335ms
40:	learn: 27.9079179	total: 228ms	remaining: 328ms
41:	learn: 27.6721506	total: 233ms	remaining: 321ms
42:	learn: 27.4228033	total: 237ms	remaining: 314ms
43:	learn: 27.1740534	total: 241ms	remaining: 307ms
44:	learn: 26.8584071	total: 245ms	remaining: 300ms
45:	learn: 26.6902083	total: 249ms	remaining: 293ms
46:	learn: 26.4855335	total: 253ms	remaining: 286ms
47:	learn: 26.2730822	total: 257ms	remaining: 279ms
48:	learn: 26.1058689	total: 262ms	remaining: 272ms
49:	learn: 25.8587318	total: 266ms	remaining: 266ms
50:	learn: 25.7558005	total: 270ms	remaining: 260ms
51:	learn: 25.5846925	total: 274ms	remaining: 253ms
52:	learn: 25.4249887	total: 279ms	remaining: 247ms
53:	learn: 25.1911054	total: 284ms	remaining: 242ms
54:	learn: 25.0544755	total: 289ms	remaining: 236ms
55:	learn: 24.8874006	total: 294ms	remaining: 231ms
56:	learn: 24.7736279	total: 298ms	remaining: 225ms
57:	learn: 24.6156255	total: 303ms	remaining: 219ms
58:	learn: 24.3962421	total: 308ms	remaining: 214ms
59:	learn: 24.2685129	total: 316ms	remaining: 210ms
60:	learn: 24.1874096	total: 323ms	remaining: 206ms
61:	learn: 24.0394287	total: 329ms	remaining: 202ms
62:	learn: 23.9281768	total: 334ms	remaining: 196ms
63:	learn: 23.7423900	total: 340ms	remaining: 191ms
64:	learn: 23.6015209	total: 344ms	remaining: 185ms
65:	learn: 23.4677943	total: 348ms	remaining: 179ms
66:	learn: 23.3215256	total: 353ms	remaining: 174ms
67:	learn: 23.1869360	total: 357ms	remaining: 168ms
68:	learn: 22.9691180	total: 361ms	remaining: 162ms
69:	learn: 22.7531657	total: 365ms	remaining: 157ms
70:	learn: 22.6133477	total: 370ms	remaining: 151ms
71:	learn: 22.3452758	total: 375ms	remaining: 146ms
72:	learn: 22.2065350	total: 379ms	remaining: 140ms
73:	learn: 22.1071155	total: 383ms	remaining: 134ms
74:	learn: 21.9740686	total: 387ms	remaining: 129ms
75:	learn: 21.8892033	total: 391ms	remaining: 124ms
76:	learn: 21.8267882	total: 396ms	remaining: 118ms
77:	learn: 21.7423479	total: 400ms	remaining: 113ms
78:	learn: 21.6242075	total: 404ms	remaining: 107ms
79:	learn: 21.5016910	total: 408ms	remaining: 102ms
80:	learn: 21.4806623	total: 409ms	remaining: 95.9ms
81:	learn: 21.3166637	total: 413ms	remaining: 90.7ms
82:	learn: 21.2222534	total: 417ms	remaining: 85.5ms
83:	learn: 21.1535708	total: 422ms	remaining: 80.3ms
84:	learn: 21.0858902	total: 426ms	remaining: 75.2ms
85:	learn: 20.9206003	total: 430ms	remaining: 70ms
86:	learn: 20.8674695	total: 434ms	remaining: 64.9ms
87:	learn: 20.8089875	total: 439ms	remaining: 59.9ms
88:	learn: 20.7085401	total: 443ms	remaining: 54.8ms
89:	learn: 20.5513468	total: 448ms	remaining: 49.7ms
90:	learn: 20.4586742	total: 452ms	remaining: 44.7ms
91:	learn: 20.3932149	total: 457ms	remaining: 39.7ms
92:	learn: 20.3000895	total: 461ms	remaining: 34.7ms
93:	learn: 20.2254009	total: 466ms	remaining: 29.8ms
94:	learn: 20.1750050	total: 470ms	remaining: 24.7ms
95:	learn: 20.0715579	total: 475ms	remaining: 19.8ms
96:	learn: 19.9920082	total: 479ms	remaining: 14.8ms
97:	learn: 19.9664401	total: 484ms	remaining: 9.88ms
98:	learn: 19.8689673	total: 489ms	remaining: 4.94ms
99:	learn: 19.7537356	total: 493ms	remaining: 0us
0:	learn: 46.8832143	total: 5.6ms	remaining: 555ms
1:	learn: 45.8700349	total: 11.1ms	remaining: 545ms
2:	learn: 45.0546867	total: 16.6ms	remaining: 536ms
3:	learn: 44.2829439	total: 21.9ms	remaining: 527ms
4:	learn: 43.4609042	total: 27ms	remaining: 513ms
5:	learn: 42.6754991	total: 32.3ms	remaining: 506ms
6:	learn: 41.9234935	total: 37.7ms	remaining: 501ms
7:	learn: 41.3987518	total: 42.9ms	remaining: 494ms
8:	learn: 40.6625066	total: 47.9ms	remaining: 484ms
9:	learn: 40.0029561	total: 52.5ms	remaining: 472ms
10:	learn: 39.3897033	total: 58.2ms	remaining: 471ms
11:	learn: 38.7741453	total: 63.8ms	remaining: 468ms
12:	learn: 38.1201100	total: 68.3ms	remaining: 457ms
13:	learn: 37.5129454	total: 72.7ms	remaining: 447ms
14:	learn: 37.2062206	total: 77.3ms	remaining: 438ms
15:	learn: 36.6831741	total: 81.6ms	remaining: 429ms
16:	learn: 36.2902788	total: 85.8ms	remaining: 419ms
17:	learn: 35.7639930	total: 90.1ms	remaining: 410ms
18:	learn: 35.2580953	total: 94.3ms	remaining: 402ms
19:	learn: 34.7809739	total: 99ms	remaining: 396ms
20:	learn: 34.1330433	total: 103ms	remaining: 389ms
21:	learn: 33.7302219	total: 107ms	remaining: 381ms
22:	learn: 33.3502495	total: 112ms	remaining: 374ms
23:	learn: 33.0067804	total: 116ms	remaining: 368ms
24:	learn: 32.6897855	total: 120ms	remaining: 361ms
25:	learn: 32.4361119	total: 125ms	remaining: 355ms
26:	learn: 32.1278981	total: 129ms	remaining: 349ms
27:	learn: 31.7863721	total: 134ms	remaining: 345ms
28:	learn: 31.4791450	total: 138ms	remaining: 338ms
29:	learn: 31.1760161	total: 143ms	remaining: 333ms
30:	learn: 30.9238888	total: 147ms	remaining: 328ms
31:	learn: 30.5500905	total: 152ms	remaining: 323ms
32:	learn: 30.3078126	total: 159ms	remaining: 323ms
33:	learn: 30.0480921	total: 166ms	remaining: 322ms
34:	learn: 29.8623884	total: 172ms	remaining: 320ms
35:	learn: 29.5991038	total: 179ms	remaining: 318ms
36:	learn: 29.4061161	total: 184ms	remaining: 314ms
37:	learn: 29.0269515	total: 190ms	remaining: 310ms
38:	learn: 28.8224959	total: 194ms	remaining: 304ms
39:	learn: 28.6417843	total: 198ms	remaining: 297ms
40:	learn: 28.3633368	total: 202ms	remaining: 291ms
41:	learn: 28.0200246	total: 207ms	remaining: 285ms
42:	learn: 27.7221254	total: 211ms	remaining: 280ms
43:	learn: 27.5105818	total: 215ms	remaining: 274ms
44:	learn: 27.3551010	total: 220ms	remaining: 269ms
45:	learn: 27.0787522	total: 224ms	remaining: 263ms
46:	learn: 26.8726317	total: 228ms	remaining: 258ms
47:	learn: 26.8003277	total: 233ms	remaining: 252ms
48:	learn: 26.5493785	total: 237ms	remaining: 247ms
49:	learn: 26.3699550	total: 242ms	remaining: 242ms
50:	learn: 26.1519631	total: 246ms	remaining: 236ms
51:	learn: 25.9277325	total: 250ms	remaining: 231ms
52:	learn: 25.7286035	total: 255ms	remaining: 226ms
53:	learn: 25.4999193	total: 259ms	remaining: 221ms
54:	learn: 25.3434703	total: 263ms	remaining: 215ms
55:	learn: 25.1497545	total: 268ms	remaining: 210ms
56:	learn: 24.9498143	total: 272ms	remaining: 205ms
57:	learn: 24.6509390	total: 277ms	remaining: 200ms
58:	learn: 24.5576144	total: 281ms	remaining: 195ms
59:	learn: 24.4265144	total: 285ms	remaining: 190ms
60:	learn: 24.3100706	total: 290ms	remaining: 185ms
61:	learn: 24.1727952	total: 294ms	remaining: 180ms
62:	learn: 24.0478558	total: 299ms	remaining: 175ms
63:	learn: 23.9124577	total: 303ms	remaining: 170ms
64:	learn: 23.7703718	total: 307ms	remaining: 165ms
65:	learn: 23.5975027	total: 311ms	remaining: 160ms
66:	learn: 23.4318077	total: 316ms	remaining: 156ms
67:	learn: 23.3099691	total: 320ms	remaining: 151ms
68:	learn: 23.1947982	total: 325ms	remaining: 146ms
69:	learn: 23.0260174	total: 329ms	remaining: 141ms
70:	learn: 22.8523100	total: 334ms	remaining: 136ms
71:	learn: 22.8028534	total: 338ms	remaining: 132ms
72:	learn: 22.6880658	total: 342ms	remaining: 127ms
73:	learn: 22.5956809	total: 347ms	remaining: 122ms
74:	learn: 22.4692932	total: 352ms	remaining: 117ms
75:	learn: 22.2863504	total: 357ms	remaining: 113ms
76:	learn: 22.1911237	total: 362ms	remaining: 108ms
77:	learn: 22.1098391	total: 366ms	remaining: 103ms
78:	learn: 22.0182738	total: 371ms	remaining: 98.7ms
79:	learn: 21.9306746	total: 379ms	remaining: 94.8ms
80:	learn: 21.7508233	total: 387ms	remaining: 90.7ms
81:	learn: 21.7108446	total: 398ms	remaining: 87.3ms
82:	learn: 21.5931852	total: 404ms	remaining: 82.8ms
83:	learn: 21.4480361	total: 411ms	remaining: 78.2ms
84:	learn: 21.3092119	total: 416ms	remaining: 73.5ms
85:	learn: 21.2605557	total: 422ms	remaining: 68.7ms
86:	learn: 21.1123597	total: 428ms	remaining: 63.9ms
87:	learn: 21.0115642	total: 434ms	remaining: 59.1ms
88:	learn: 20.9389040	total: 440ms	remaining: 54.4ms
89:	learn: 20.8300300	total: 445ms	remaining: 49.5ms
90:	learn: 20.7159733	total: 451ms	remaining: 44.6ms
91:	learn: 20.6282090	total: 456ms	remaining: 39.6ms
92:	learn: 20.5164529	total: 461ms	remaining: 34.7ms
93:	learn: 20.4692032	total: 466ms	remaining: 29.8ms
94:	learn: 20.3768451	total: 472ms	remaining: 24.8ms
95:	learn: 20.2808056	total: 477ms	remaining: 19.9ms
96:	learn: 20.2082089	total: 481ms	remaining: 14.9ms
97:	learn: 20.1698768	total: 485ms	remaining: 9.9ms
98:	learn: 20.1048816	total: 489ms	remaining: 4.94ms
99:	learn: 20.0086159	total: 493ms	remaining: 0us
0:	learn: 27.6506730	total: 4.67ms	remaining: 462ms
1:	learn: 27.1638793	total: 9.17ms	remaining: 449ms
2:	learn: 26.8000665	total: 14ms	remaining: 454ms
3:	learn: 26.4256132	total: 18.9ms	remaining: 453ms
4:	learn: 26.0088351	total: 23.9ms	remaining: 453ms
5:	learn: 25.7558298	total: 28.6ms	remaining: 449ms
6:	learn: 25.3380711	total: 33.4ms	remaining: 444ms
7:	learn: 25.0571611	total: 39.6ms	remaining: 455ms
8:	learn: 24.6790148	total: 46.7ms	remaining: 472ms
9:	learn: 24.3600941	total: 54.2ms	remaining: 488ms
10:	learn: 24.1105667	total: 60.7ms	remaining: 491ms
11:	learn: 23.7736542	total: 65.9ms	remaining: 483ms
12:	learn: 23.5824429	total: 72.2ms	remaining: 483ms
13:	learn: 23.2658303	total: 76.7ms	remaining: 471ms
14:	learn: 23.0061886	total: 80.9ms	remaining: 459ms
15:	learn: 22.8060389	total: 85.2ms	remaining: 448ms
16:	learn: 22.5899735	total: 89.7ms	remaining: 438ms
17:	learn: 22.3625048	total: 94.3ms	remaining: 430ms
18:	learn: 22.0706477	total: 99.1ms	remaining: 422ms
19:	learn: 21.8739394	total: 104ms	remaining: 417ms
20:	learn: 21.6143650	total: 109ms	remaining: 411ms
21:	learn: 21.4571623	total: 114ms	remaining: 404ms
22:	learn: 21.2395769	total: 119ms	remaining: 397ms
23:	learn: 20.9801795	total: 123ms	remaining: 390ms
24:	learn: 20.8036808	total: 128ms	remaining: 383ms
25:	learn: 20.6387539	total: 132ms	remaining: 376ms
26:	learn: 20.4401427	total: 136ms	remaining: 368ms
27:	learn: 20.2879575	total: 141ms	remaining: 361ms
28:	learn: 20.0538664	total: 144ms	remaining: 354ms
29:	learn: 19.8363102	total: 149ms	remaining: 347ms
30:	learn: 19.7015446	total: 153ms	remaining: 341ms
31:	learn: 19.5483114	total: 157ms	remaining: 335ms
32:	learn: 19.4163053	total: 162ms	remaining: 328ms
33:	learn: 19.2880625	total: 166ms	remaining: 322ms
34:	learn: 19.1303389	total: 170ms	remaining: 316ms
35:	learn: 18.9237448	total: 175ms	remaining: 311ms
36:	learn: 18.8142925	total: 179ms	remaining: 306ms
37:	learn: 18.6994696	total: 184ms	remaining: 300ms
38:	learn: 18.5629211	total: 188ms	remaining: 294ms
39:	learn: 18.4600917	total: 193ms	remaining: 289ms
40:	learn: 18.3567139	total: 197ms	remaining: 283ms
41:	learn: 18.2120527	total: 201ms	remaining: 278ms
42:	learn: 18.0688062	total: 206ms	remaining: 273ms
43:	learn: 17.9250181	total: 210ms	remaining: 267ms
44:	learn: 17.8399138	total: 214ms	remaining: 262ms
45:	learn: 17.6720713	total: 219ms	remaining: 257ms
46:	learn: 17.5273091	total: 223ms	remaining: 252ms
47:	learn: 17.4232814	total: 228ms	remaining: 247ms
48:	learn: 17.2957579	total: 233ms	remaining: 242ms
49:	learn: 17.1892874	total: 237ms	remaining: 237ms
50:	learn: 17.0490355	total: 242ms	remaining: 232ms
51:	learn: 16.9666450	total: 246ms	remaining: 227ms
52:	learn: 16.8600056	total: 251ms	remaining: 222ms
53:	learn: 16.7542588	total: 260ms	remaining: 221ms
54:	learn: 16.6316077	total: 269ms	remaining: 220ms
55:	learn: 16.5588112	total: 277ms	remaining: 218ms
56:	learn: 16.5010186	total: 286ms	remaining: 215ms
57:	learn: 16.4081540	total: 291ms	remaining: 211ms
58:	learn: 16.3040451	total: 297ms	remaining: 206ms
59:	learn: 16.1890564	total: 302ms	remaining: 201ms
60:	learn: 16.0977103	total: 307ms	remaining: 197ms
61:	learn: 15.9627607	total: 313ms	remaining: 192ms
62:	learn: 15.9022248	total: 319ms	remaining: 187ms
63:	learn: 15.8151881	total: 324ms	remaining: 182ms
64:	learn: 15.7353125	total: 329ms	remaining: 177ms
65:	learn: 15.6312897	total: 334ms	remaining: 172ms
66:	learn: 15.5330927	total: 338ms	remaining: 167ms
67:	learn: 15.4698681	total: 343ms	remaining: 162ms
68:	learn: 15.4108571	total: 349ms	remaining: 157ms
69:	learn: 15.3492945	total: 354ms	remaining: 152ms
70:	learn: 15.3036540	total: 358ms	remaining: 146ms
71:	learn: 15.2390833	total: 363ms	remaining: 141ms
72:	learn: 15.1556327	total: 367ms	remaining: 136ms
73:	learn: 15.1016315	total: 371ms	remaining: 130ms
74:	learn: 15.0287076	total: 375ms	remaining: 125ms
75:	learn: 14.9530572	total: 379ms	remaining: 120ms
76:	learn: 14.8965517	total: 384ms	remaining: 115ms
77:	learn: 14.8125426	total: 388ms	remaining: 109ms
78:	learn: 14.7435359	total: 392ms	remaining: 104ms
79:	learn: 14.6963163	total: 396ms	remaining: 99.1ms
80:	learn: 14.6200060	total: 401ms	remaining: 94ms
81:	learn: 14.5707760	total: 405ms	remaining: 88.9ms
82:	learn: 14.5053651	total: 409ms	remaining: 83.8ms
83:	learn: 14.4115458	total: 414ms	remaining: 78.8ms
84:	learn: 14.3117159	total: 418ms	remaining: 73.8ms
85:	learn: 14.2511326	total: 423ms	remaining: 68.9ms
86:	learn: 14.1372486	total: 428ms	remaining: 63.9ms
87:	learn: 14.0992301	total: 432ms	remaining: 58.9ms
88:	learn: 14.0228331	total: 437ms	remaining: 54ms
89:	learn: 13.9249836	total: 441ms	remaining: 49ms
90:	learn: 13.8679364	total: 446ms	remaining: 44.1ms
91:	learn: 13.8405578	total: 453ms	remaining: 39.4ms
92:	learn: 13.7711325	total: 461ms	remaining: 34.7ms
93:	learn: 13.7357019	total: 468ms	remaining: 29.9ms
94:	learn: 13.6735271	total: 474ms	remaining: 24.9ms
95:	learn: 13.5682393	total: 480ms	remaining: 20ms
96:	learn: 13.5342610	total: 484ms	remaining: 15ms
97:	learn: 13.4710034	total: 489ms	remaining: 9.97ms
98:	learn: 13.4022402	total: 493ms	remaining: 4.98ms
99:	learn: 13.3351238	total: 498ms	remaining: 0us
0:	learn: 42.9181702	total: 4.93ms	remaining: 488ms
1:	learn: 42.0286736	total: 8.86ms	remaining: 434ms
2:	learn: 41.2764568	total: 12.8ms	remaining: 415ms
3:	learn: 40.4721918	total: 17.4ms	remaining: 417ms
4:	learn: 39.8518928	total: 21.9ms	remaining: 416ms
5:	learn: 39.2645479	total: 26.5ms	remaining: 415ms
6:	learn: 38.4453704	total: 30.4ms	remaining: 404ms
7:	learn: 37.7122059	total: 35.2ms	remaining: 404ms
8:	learn: 36.9185796	total: 39.3ms	remaining: 398ms
9:	learn: 36.1668427	total: 43.7ms	remaining: 393ms
10:	learn: 35.5639029	total: 47.9ms	remaining: 388ms
11:	learn: 34.7724193	total: 52.3ms	remaining: 383ms
12:	learn: 34.3053433	total: 56.6ms	remaining: 379ms
13:	learn: 33.6561327	total: 57.7ms	remaining: 355ms
14:	learn: 33.0134042	total: 62ms	remaining: 351ms
15:	learn: 32.4483300	total: 66.7ms	remaining: 350ms
16:	learn: 31.8581144	total: 71ms	remaining: 347ms
17:	learn: 31.2858301	total: 75.2ms	remaining: 342ms
18:	learn: 30.8483018	total: 79.4ms	remaining: 338ms
19:	learn: 30.4174622	total: 84.2ms	remaining: 337ms
20:	learn: 29.8994411	total: 89ms	remaining: 335ms
21:	learn: 29.5045355	total: 93.8ms	remaining: 333ms
22:	learn: 28.9923519	total: 98.4ms	remaining: 329ms
23:	learn: 28.4255717	total: 103ms	remaining: 327ms
24:	learn: 28.0283139	total: 109ms	remaining: 326ms
25:	learn: 27.7434814	total: 119ms	remaining: 338ms
26:	learn: 27.2770731	total: 129ms	remaining: 349ms
27:	learn: 26.8928270	total: 136ms	remaining: 351ms
28:	learn: 26.4282671	total: 144ms	remaining: 353ms
29:	learn: 26.0272764	total: 149ms	remaining: 349ms
30:	learn: 25.7579312	total: 155ms	remaining: 345ms
31:	learn: 25.4542434	total: 160ms	remaining: 340ms
32:	learn: 25.1232564	total: 166ms	remaining: 336ms
33:	learn: 24.8110795	total: 171ms	remaining: 333ms
34:	learn: 24.5077579	total: 177ms	remaining: 329ms
35:	learn: 24.1909000	total: 183ms	remaining: 325ms
36:	learn: 23.8719468	total: 188ms	remaining: 320ms
37:	learn: 23.5764366	total: 189ms	remaining: 309ms
38:	learn: 23.3468086	total: 194ms	remaining: 304ms
39:	learn: 23.0908771	total: 199ms	remaining: 298ms
40:	learn: 22.8580876	total: 205ms	remaining: 295ms
41:	learn: 22.6060825	total: 211ms	remaining: 291ms
42:	learn: 22.4125407	total: 215ms	remaining: 285ms
43:	learn: 22.1990617	total: 219ms	remaining: 279ms
44:	learn: 21.9716164	total: 224ms	remaining: 274ms
45:	learn: 21.8360935	total: 229ms	remaining: 268ms
46:	learn: 21.6169256	total: 233ms	remaining: 263ms
47:	learn: 21.4620612	total: 238ms	remaining: 258ms
48:	learn: 21.2894194	total: 242ms	remaining: 252ms
49:	learn: 21.1066266	total: 247ms	remaining: 247ms
50:	learn: 20.9484898	total: 251ms	remaining: 241ms
51:	learn: 20.7195338	total: 256ms	remaining: 236ms
52:	learn: 20.4899740	total: 261ms	remaining: 231ms
53:	learn: 20.3356583	total: 266ms	remaining: 226ms
54:	learn: 20.0754393	total: 270ms	remaining: 221ms
55:	learn: 19.9199159	total: 274ms	remaining: 216ms
56:	learn: 19.7761128	total: 279ms	remaining: 210ms
57:	learn: 19.6533060	total: 284ms	remaining: 206ms
58:	learn: 19.5113942	total: 289ms	remaining: 201ms
59:	learn: 19.3985022	total: 294ms	remaining: 196ms
60:	learn: 19.2683443	total: 298ms	remaining: 191ms
61:	learn: 19.1460824	total: 303ms	remaining: 186ms
62:	learn: 19.0042655	total: 308ms	remaining: 181ms
63:	learn: 18.8720873	total: 314ms	remaining: 176ms
64:	learn: 18.7183888	total: 322ms	remaining: 173ms
65:	learn: 18.5472360	total: 330ms	remaining: 170ms
66:	learn: 18.3976642	total: 337ms	remaining: 166ms
67:	learn: 18.2282851	total: 343ms	remaining: 162ms
68:	learn: 18.1469157	total: 348ms	remaining: 157ms
69:	learn: 18.0649494	total: 353ms	remaining: 151ms
70:	learn: 17.9485405	total: 358ms	remaining: 146ms
71:	learn: 17.8460261	total: 362ms	remaining: 141ms
72:	learn: 17.7679843	total: 367ms	remaining: 136ms
73:	learn: 17.5989290	total: 372ms	remaining: 131ms
74:	learn: 17.4381322	total: 376ms	remaining: 125ms
75:	learn: 17.3370886	total: 381ms	remaining: 120ms
76:	learn: 17.2675308	total: 385ms	remaining: 115ms
77:	learn: 17.1946430	total: 390ms	remaining: 110ms
78:	learn: 17.0923725	total: 394ms	remaining: 105ms
79:	learn: 17.0537265	total: 398ms	remaining: 99.6ms
80:	learn: 16.9456831	total: 403ms	remaining: 94.5ms
81:	learn: 16.8457353	total: 407ms	remaining: 89.3ms
82:	learn: 16.7469310	total: 411ms	remaining: 84.2ms
83:	learn: 16.6679953	total: 416ms	remaining: 79.1ms
84:	learn: 16.6274189	total: 420ms	remaining: 74.1ms
85:	learn: 16.5516530	total: 424ms	remaining: 69.1ms
86:	learn: 16.4886066	total: 428ms	remaining: 64ms
87:	learn: 16.3947859	total: 433ms	remaining: 59ms
88:	learn: 16.3406495	total: 437ms	remaining: 54ms
89:	learn: 16.3019195	total: 442ms	remaining: 49.1ms
90:	learn: 16.1860681	total: 446ms	remaining: 44.1ms
91:	learn: 16.1282812	total: 450ms	remaining: 39.2ms
92:	learn: 16.0303652	total: 455ms	remaining: 34.2ms
93:	learn: 15.9561692	total: 459ms	remaining: 29.3ms
94:	learn: 15.8733994	total: 463ms	remaining: 24.4ms
95:	learn: 15.8108833	total: 468ms	remaining: 19.5ms
96:	learn: 15.7606004	total: 472ms	remaining: 14.6ms
97:	learn: 15.6984664	total: 476ms	remaining: 9.72ms
98:	learn: 15.6223632	total: 481ms	remaining: 4.86ms
99:	learn: 15.5671136	total: 486ms	remaining: 0us
0:	learn: 46.4788614	total: 2.26ms	remaining: 224ms
1:	learn: 45.7608372	total: 7.68ms	remaining: 377ms
2:	learn: 44.8825004	total: 12.9ms	remaining: 417ms
3:	learn: 44.0362738	total: 18.2ms	remaining: 438ms
4:	learn: 43.2086374	total: 23.8ms	remaining: 453ms
5:	learn: 42.5835773	total: 29.7ms	remaining: 465ms
6:	learn: 41.9673269	total: 35.7ms	remaining: 474ms
7:	learn: 41.4748717	total: 41.1ms	remaining: 473ms
8:	learn: 40.7129183	total: 46.5ms	remaining: 470ms
9:	learn: 39.8900884	total: 51.9ms	remaining: 467ms
10:	learn: 39.4142193	total: 58ms	remaining: 470ms
11:	learn: 38.8645613	total: 63.8ms	remaining: 468ms
12:	learn: 38.2394731	total: 68.7ms	remaining: 460ms
13:	learn: 37.6834515	total: 73.2ms	remaining: 450ms
14:	learn: 37.0673507	total: 77.7ms	remaining: 440ms
15:	learn: 36.4728340	total: 82.2ms	remaining: 432ms
16:	learn: 36.0489086	total: 86.3ms	remaining: 421ms
17:	learn: 35.4744141	total: 90.7ms	remaining: 413ms
18:	learn: 35.0106021	total: 94.7ms	remaining: 404ms
19:	learn: 34.5586053	total: 99.1ms	remaining: 396ms
20:	learn: 34.1308223	total: 104ms	remaining: 390ms
21:	learn: 33.7701450	total: 108ms	remaining: 383ms
22:	learn: 33.4425444	total: 112ms	remaining: 376ms
23:	learn: 33.0296412	total: 117ms	remaining: 369ms
24:	learn: 32.6359803	total: 121ms	remaining: 363ms
25:	learn: 32.1846182	total: 125ms	remaining: 357ms
26:	learn: 31.7620230	total: 130ms	remaining: 351ms
27:	learn: 31.4669337	total: 134ms	remaining: 344ms
28:	learn: 31.0792062	total: 138ms	remaining: 338ms
29:	learn: 30.7970537	total: 143ms	remaining: 333ms
30:	learn: 30.4952215	total: 147ms	remaining: 328ms
31:	learn: 30.2845344	total: 152ms	remaining: 323ms
32:	learn: 29.9592732	total: 157ms	remaining: 318ms
33:	learn: 29.6798596	total: 162ms	remaining: 314ms
34:	learn: 29.3368905	total: 167ms	remaining: 309ms
35:	learn: 29.0621238	total: 171ms	remaining: 304ms
36:	learn: 28.6445375	total: 179ms	remaining: 305ms
37:	learn: 28.2418096	total: 186ms	remaining: 304ms
38:	learn: 27.9495390	total: 193ms	remaining: 303ms
39:	learn: 27.6958160	total: 199ms	remaining: 299ms
40:	learn: 27.4811189	total: 205ms	remaining: 295ms
41:	learn: 27.1494420	total: 210ms	remaining: 289ms
42:	learn: 26.8388873	total: 214ms	remaining: 283ms
43:	learn: 26.5721300	total: 218ms	remaining: 277ms
44:	learn: 26.3384738	total: 222ms	remaining: 272ms
45:	learn: 26.1894781	total: 227ms	remaining: 266ms
46:	learn: 25.9580198	total: 231ms	remaining: 260ms
47:	learn: 25.7897985	total: 235ms	remaining: 255ms
48:	learn: 25.6000271	total: 239ms	remaining: 249ms
49:	learn: 25.4130873	total: 243ms	remaining: 243ms
50:	learn: 25.1699061	total: 248ms	remaining: 238ms
51:	learn: 24.9324449	total: 252ms	remaining: 233ms
52:	learn: 24.7729152	total: 257ms	remaining: 228ms
53:	learn: 24.5026563	total: 261ms	remaining: 223ms
54:	learn: 24.2332627	total: 266ms	remaining: 218ms
55:	learn: 23.9611984	total: 271ms	remaining: 213ms
56:	learn: 23.7862603	total: 275ms	remaining: 208ms
57:	learn: 23.6318154	total: 280ms	remaining: 202ms
58:	learn: 23.4443306	total: 284ms	remaining: 197ms
59:	learn: 23.2581425	total: 288ms	remaining: 192ms
60:	learn: 23.0549901	total: 293ms	remaining: 187ms
61:	learn: 22.8666218	total: 297ms	remaining: 182ms
62:	learn: 22.6956739	total: 301ms	remaining: 177ms
63:	learn: 22.5068544	total: 306ms	remaining: 172ms
64:	learn: 22.1859147	total: 310ms	remaining: 167ms
65:	learn: 22.0462043	total: 314ms	remaining: 162ms
66:	learn: 21.9329563	total: 319ms	remaining: 157ms
67:	learn: 21.8029736	total: 323ms	remaining: 152ms
68:	learn: 21.6861091	total: 327ms	remaining: 147ms
69:	learn: 21.4838140	total: 332ms	remaining: 142ms
70:	learn: 21.3548921	total: 336ms	remaining: 137ms
71:	learn: 21.2244517	total: 340ms	remaining: 132ms
72:	learn: 21.0702958	total: 344ms	remaining: 127ms
73:	learn: 20.9224662	total: 349ms	remaining: 123ms
74:	learn: 20.8150357	total: 355ms	remaining: 118ms
75:	learn: 20.6962739	total: 362ms	remaining: 114ms
76:	learn: 20.5809258	total: 369ms	remaining: 110ms
77:	learn: 20.4735470	total: 377ms	remaining: 106ms
78:	learn: 20.3778167	total: 383ms	remaining: 102ms
79:	learn: 20.2211268	total: 388ms	remaining: 97.1ms
80:	learn: 20.1478678	total: 394ms	remaining: 92.4ms
81:	learn: 20.1032967	total: 408ms	remaining: 89.5ms
82:	learn: 19.9236300	total: 413ms	remaining: 84.6ms
83:	learn: 19.8151745	total: 418ms	remaining: 79.7ms
84:	learn: 19.7099856	total: 424ms	remaining: 74.8ms
85:	learn: 19.6264833	total: 429ms	remaining: 69.9ms
86:	learn: 19.4916361	total: 435ms	remaining: 64.9ms
87:	learn: 19.4050529	total: 440ms	remaining: 60ms
88:	learn: 19.2547065	total: 445ms	remaining: 55ms
89:	learn: 19.1610225	total: 450ms	remaining: 50ms
90:	learn: 19.0898958	total: 456ms	remaining: 45.1ms
91:	learn: 19.0489664	total: 461ms	remaining: 40.1ms
92:	learn: 18.9206240	total: 466ms	remaining: 35.1ms
93:	learn: 18.8636239	total: 472ms	remaining: 30.1ms
94:	learn: 18.8126187	total: 477ms	remaining: 25.1ms
95:	learn: 18.7579275	total: 481ms	remaining: 20.1ms
96:	learn: 18.6382753	total: 486ms	remaining: 15ms
97:	learn: 18.5397334	total: 490ms	remaining: 10ms
98:	learn: 18.4375951	total: 494ms	remaining: 4.99ms
99:	learn: 18.4033755	total: 499ms	remaining: 0us
0:	learn: 46.1068821	total: 1.95ms	remaining: 193ms
1:	learn: 45.3970261	total: 6.61ms	remaining: 324ms
2:	learn: 44.8732696	total: 11.6ms	remaining: 376ms
3:	learn: 44.1290184	total: 16.7ms	remaining: 400ms
4:	learn: 43.3290271	total: 21.4ms	remaining: 407ms
5:	learn: 42.7069090	total: 26.2ms	remaining: 411ms
6:	learn: 42.0572971	total: 30.9ms	remaining: 410ms
7:	learn: 41.4797924	total: 37.9ms	remaining: 435ms
8:	learn: 41.0023122	total: 45.7ms	remaining: 462ms
9:	learn: 40.5330570	total: 53.5ms	remaining: 482ms
10:	learn: 39.9726545	total: 59ms	remaining: 477ms
11:	learn: 39.3044053	total: 64.9ms	remaining: 476ms
12:	learn: 38.8169735	total: 69.6ms	remaining: 466ms
13:	learn: 38.2458761	total: 73.9ms	remaining: 454ms
14:	learn: 37.6280321	total: 78.2ms	remaining: 443ms
15:	learn: 37.0800610	total: 82.6ms	remaining: 434ms
16:	learn: 36.5489363	total: 87.1ms	remaining: 425ms
17:	learn: 36.0981456	total: 91.5ms	remaining: 417ms
18:	learn: 35.6956274	total: 95.9ms	remaining: 409ms
19:	learn: 35.1471999	total: 100ms	remaining: 400ms
20:	learn: 34.6235408	total: 105ms	remaining: 394ms
21:	learn: 34.1987018	total: 109ms	remaining: 387ms
22:	learn: 33.8985062	total: 113ms	remaining: 380ms
23:	learn: 33.3869017	total: 118ms	remaining: 374ms
24:	learn: 32.9100550	total: 122ms	remaining: 367ms
25:	learn: 32.4156208	total: 127ms	remaining: 361ms
26:	learn: 31.9320493	total: 131ms	remaining: 355ms
27:	learn: 31.5711468	total: 135ms	remaining: 348ms
28:	learn: 31.2404433	total: 140ms	remaining: 342ms
29:	learn: 30.8807946	total: 144ms	remaining: 337ms
30:	learn: 30.5948438	total: 149ms	remaining: 331ms
31:	learn: 30.3885560	total: 153ms	remaining: 325ms
32:	learn: 30.0625101	total: 158ms	remaining: 320ms
33:	learn: 29.9113114	total: 162ms	remaining: 314ms
34:	learn: 29.6983470	total: 166ms	remaining: 308ms
35:	learn: 29.4775849	total: 170ms	remaining: 302ms
36:	learn: 29.0538055	total: 175ms	remaining: 298ms
37:	learn: 28.6792318	total: 179ms	remaining: 292ms
38:	learn: 28.4231383	total: 183ms	remaining: 287ms
39:	learn: 28.1078565	total: 188ms	remaining: 282ms
40:	learn: 27.9079179	total: 192ms	remaining: 277ms
41:	learn: 27.6721506	total: 196ms	remaining: 271ms
42:	learn: 27.4228033	total: 201ms	remaining: 266ms
43:	learn: 27.1740534	total: 206ms	remaining: 262ms
44:	learn: 26.8584071	total: 211ms	remaining: 258ms
45:	learn: 26.6902083	total: 216ms	remaining: 253ms
46:	learn: 26.4855335	total: 221ms	remaining: 249ms
47:	learn: 26.2730822	total: 226ms	remaining: 245ms
48:	learn: 26.1058689	total: 231ms	remaining: 240ms
49:	learn: 25.8587318	total: 236ms	remaining: 236ms
50:	learn: 25.7558005	total: 240ms	remaining: 231ms
51:	learn: 25.5846925	total: 246ms	remaining: 227ms
52:	learn: 25.4249887	total: 254ms	remaining: 225ms
53:	learn: 25.1911054	total: 268ms	remaining: 228ms
54:	learn: 25.0544755	total: 276ms	remaining: 225ms
55:	learn: 24.8874006	total: 281ms	remaining: 221ms
56:	learn: 24.7736279	total: 287ms	remaining: 216ms
57:	learn: 24.6156255	total: 292ms	remaining: 211ms
58:	learn: 24.3962421	total: 297ms	remaining: 206ms
59:	learn: 24.2685129	total: 302ms	remaining: 201ms
60:	learn: 24.1874096	total: 307ms	remaining: 196ms
61:	learn: 24.0394287	total: 313ms	remaining: 192ms
62:	learn: 23.9281768	total: 318ms	remaining: 187ms
63:	learn: 23.7423900	total: 323ms	remaining: 182ms
64:	learn: 23.6015209	total: 328ms	remaining: 177ms
65:	learn: 23.4677943	total: 334ms	remaining: 172ms
66:	learn: 23.3215256	total: 340ms	remaining: 167ms
67:	learn: 23.1869360	total: 345ms	remaining: 162ms
68:	learn: 22.9691180	total: 349ms	remaining: 157ms
69:	learn: 22.7531657	total: 354ms	remaining: 152ms
70:	learn: 22.6133477	total: 358ms	remaining: 146ms
71:	learn: 22.3452758	total: 362ms	remaining: 141ms
72:	learn: 22.2065350	total: 367ms	remaining: 136ms
73:	learn: 22.1071155	total: 371ms	remaining: 130ms
74:	learn: 21.9740686	total: 375ms	remaining: 125ms
75:	learn: 21.8892033	total: 379ms	remaining: 120ms
76:	learn: 21.8267882	total: 384ms	remaining: 115ms
77:	learn: 21.7423479	total: 388ms	remaining: 109ms
78:	learn: 21.6242075	total: 392ms	remaining: 104ms
79:	learn: 21.5016910	total: 396ms	remaining: 99ms
80:	learn: 21.4806623	total: 397ms	remaining: 93.1ms
81:	learn: 21.3166637	total: 402ms	remaining: 88.2ms
82:	learn: 21.2222534	total: 406ms	remaining: 83.2ms
83:	learn: 21.1535708	total: 410ms	remaining: 78.1ms
84:	learn: 21.0858902	total: 415ms	remaining: 73.2ms
85:	learn: 20.9206003	total: 420ms	remaining: 68.3ms
86:	learn: 20.8674695	total: 424ms	remaining: 63.4ms
87:	learn: 20.8089875	total: 429ms	remaining: 58.5ms
88:	learn: 20.7085401	total: 434ms	remaining: 53.6ms
89:	learn: 20.5513468	total: 439ms	remaining: 48.7ms
90:	learn: 20.4586742	total: 446ms	remaining: 44.1ms
91:	learn: 20.3932149	total: 453ms	remaining: 39.4ms
92:	learn: 20.3000895	total: 460ms	remaining: 34.6ms
93:	learn: 20.2254009	total: 466ms	remaining: 29.7ms
94:	learn: 20.1750050	total: 473ms	remaining: 24.9ms
95:	learn: 20.0715579	total: 477ms	remaining: 19.9ms
96:	learn: 19.9920082	total: 481ms	remaining: 14.9ms
97:	learn: 19.9664401	total: 485ms	remaining: 9.91ms
98:	learn: 19.8689673	total: 490ms	remaining: 4.95ms
99:	learn: 19.7537356	total: 494ms	remaining: 0us
0:	learn: 46.8832143	total: 5.07ms	remaining: 502ms
1:	learn: 45.8700349	total: 9.16ms	remaining: 449ms
2:	learn: 45.0546867	total: 13.3ms	remaining: 430ms
3:	learn: 44.2829439	total: 17.6ms	remaining: 422ms
4:	learn: 43.4609042	total: 21.7ms	remaining: 412ms
5:	learn: 42.6754991	total: 25.9ms	remaining: 406ms
6:	learn: 41.9234935	total: 30.4ms	remaining: 405ms
7:	learn: 41.3987518	total: 34.6ms	remaining: 398ms
8:	learn: 40.6625066	total: 38.8ms	remaining: 392ms
9:	learn: 40.0029561	total: 42.8ms	remaining: 386ms
10:	learn: 39.3897033	total: 47.2ms	remaining: 382ms
11:	learn: 38.7741453	total: 51.8ms	remaining: 380ms
12:	learn: 38.1201100	total: 55.9ms	remaining: 374ms
13:	learn: 37.5129454	total: 59.9ms	remaining: 368ms
14:	learn: 37.2062206	total: 64.1ms	remaining: 363ms
15:	learn: 36.6831741	total: 68.3ms	remaining: 358ms
16:	learn: 36.2902788	total: 72.9ms	remaining: 356ms
17:	learn: 35.7639930	total: 76.9ms	remaining: 351ms
18:	learn: 35.2580953	total: 81ms	remaining: 345ms
19:	learn: 34.7809739	total: 85.8ms	remaining: 343ms
20:	learn: 34.1330433	total: 90.3ms	remaining: 340ms
21:	learn: 33.7302219	total: 94.9ms	remaining: 336ms
22:	learn: 33.3502495	total: 99.4ms	remaining: 333ms
23:	learn: 33.0067804	total: 104ms	remaining: 330ms
24:	learn: 32.6897855	total: 109ms	remaining: 327ms
25:	learn: 32.4361119	total: 114ms	remaining: 323ms
26:	learn: 32.1278981	total: 123ms	remaining: 332ms
27:	learn: 31.7863721	total: 132ms	remaining: 339ms
28:	learn: 31.4791450	total: 140ms	remaining: 342ms
29:	learn: 31.1760161	total: 147ms	remaining: 343ms
30:	learn: 30.9238888	total: 152ms	remaining: 339ms
31:	learn: 30.5500905	total: 158ms	remaining: 336ms
32:	learn: 30.3078126	total: 163ms	remaining: 332ms
33:	learn: 30.0480921	total: 169ms	remaining: 327ms
34:	learn: 29.8623884	total: 174ms	remaining: 323ms
35:	learn: 29.5991038	total: 179ms	remaining: 318ms
36:	learn: 29.4061161	total: 184ms	remaining: 314ms
37:	learn: 29.0269515	total: 190ms	remaining: 309ms
38:	learn: 28.8224959	total: 195ms	remaining: 304ms
39:	learn: 28.6417843	total: 200ms	remaining: 299ms
40:	learn: 28.3633368	total: 205ms	remaining: 295ms
41:	learn: 28.0200246	total: 210ms	remaining: 290ms
42:	learn: 27.7221254	total: 214ms	remaining: 284ms
43:	learn: 27.5105818	total: 219ms	remaining: 278ms
44:	learn: 27.3551010	total: 223ms	remaining: 272ms
45:	learn: 27.0787522	total: 227ms	remaining: 267ms
46:	learn: 26.8726317	total: 231ms	remaining: 261ms
47:	learn: 26.8003277	total: 235ms	remaining: 255ms
48:	learn: 26.5493785	total: 239ms	remaining: 249ms
49:	learn: 26.3699550	total: 244ms	remaining: 244ms
50:	learn: 26.1519631	total: 248ms	remaining: 239ms
51:	learn: 25.9277325	total: 253ms	remaining: 233ms
52:	learn: 25.7286035	total: 257ms	remaining: 228ms
53:	learn: 25.4999193	total: 262ms	remaining: 223ms
54:	learn: 25.3434703	total: 266ms	remaining: 218ms
55:	learn: 25.1497545	total: 270ms	remaining: 212ms
56:	learn: 24.9498143	total: 274ms	remaining: 207ms
57:	learn: 24.6509390	total: 279ms	remaining: 202ms
58:	learn: 24.5576144	total: 283ms	remaining: 197ms
59:	learn: 24.4265144	total: 287ms	remaining: 192ms
60:	learn: 24.3100706	total: 292ms	remaining: 187ms
61:	learn: 24.1727952	total: 297ms	remaining: 182ms
62:	learn: 24.0478558	total: 302ms	remaining: 177ms
63:	learn: 23.9124577	total: 306ms	remaining: 172ms
64:	learn: 23.7703718	total: 311ms	remaining: 168ms
65:	learn: 23.5975027	total: 318ms	remaining: 164ms
66:	learn: 23.4318077	total: 325ms	remaining: 160ms
67:	learn: 23.3099691	total: 332ms	remaining: 156ms
68:	learn: 23.1947982	total: 338ms	remaining: 152ms
69:	learn: 23.0260174	total: 344ms	remaining: 147ms
70:	learn: 22.8523100	total: 349ms	remaining: 142ms
71:	learn: 22.8028534	total: 353ms	remaining: 137ms
72:	learn: 22.6880658	total: 357ms	remaining: 132ms
73:	learn: 22.5956809	total: 362ms	remaining: 127ms
74:	learn: 22.4692932	total: 366ms	remaining: 122ms
75:	learn: 22.2863504	total: 371ms	remaining: 117ms
76:	learn: 22.1911237	total: 375ms	remaining: 112ms
77:	learn: 22.1098391	total: 379ms	remaining: 107ms
78:	learn: 22.0182738	total: 383ms	remaining: 102ms
79:	learn: 21.9306746	total: 387ms	remaining: 96.8ms
80:	learn: 21.7508233	total: 392ms	remaining: 91.9ms
81:	learn: 21.7108446	total: 396ms	remaining: 86.9ms
82:	learn: 21.5931852	total: 401ms	remaining: 82.1ms
83:	learn: 21.4480361	total: 405ms	remaining: 77.2ms
84:	learn: 21.3092119	total: 409ms	remaining: 72.2ms
85:	learn: 21.2605557	total: 413ms	remaining: 67.2ms
86:	learn: 21.1123597	total: 418ms	remaining: 62.4ms
87:	learn: 21.0115642	total: 422ms	remaining: 57.5ms
88:	learn: 20.9389040	total: 426ms	remaining: 52.7ms
89:	learn: 20.8300300	total: 430ms	remaining: 47.8ms
90:	learn: 20.7159733	total: 434ms	remaining: 43ms
91:	learn: 20.6282090	total: 439ms	remaining: 38.2ms
92:	learn: 20.5164529	total: 443ms	remaining: 33.4ms
93:	learn: 20.4692032	total: 447ms	remaining: 28.6ms
94:	learn: 20.3768451	total: 452ms	remaining: 23.8ms
95:	learn: 20.2808056	total: 456ms	remaining: 19ms
96:	learn: 20.2082089	total: 461ms	remaining: 14.2ms
97:	learn: 20.1698768	total: 465ms	remaining: 9.5ms
98:	learn: 20.1048816	total: 470ms	remaining: 4.75ms
99:	learn: 20.0086159	total: 474ms	remaining: 0us
0:	learn: 27.6506730	total: 5.08ms	remaining: 503ms
1:	learn: 27.1638793	total: 9.73ms	remaining: 477ms
2:	learn: 26.8000665	total: 17.2ms	remaining: 555ms
3:	learn: 26.4256132	total: 24.8ms	remaining: 595ms
4:	learn: 26.0088351	total: 34.2ms	remaining: 649ms
5:	learn: 25.7558298	total: 39.9ms	remaining: 624ms
6:	learn: 25.3380711	total: 47.4ms	remaining: 629ms
7:	learn: 25.0571611	total: 52.3ms	remaining: 602ms
8:	learn: 24.6790148	total: 57.3ms	remaining: 579ms
9:	learn: 24.3600941	total: 62.5ms	remaining: 563ms
10:	learn: 24.1105667	total: 67.8ms	remaining: 548ms
11:	learn: 23.7736542	total: 73.2ms	remaining: 537ms
12:	learn: 23.5824429	total: 78.8ms	remaining: 527ms
13:	learn: 23.2658303	total: 84.3ms	remaining: 518ms
14:	learn: 23.0061886	total: 89.4ms	remaining: 506ms
15:	learn: 22.8060389	total: 94.4ms	remaining: 496ms
16:	learn: 22.5899735	total: 99.6ms	remaining: 486ms
17:	learn: 22.3625048	total: 104ms	remaining: 475ms
18:	learn: 22.0706477	total: 110ms	remaining: 470ms
19:	learn: 21.8739394	total: 116ms	remaining: 465ms
20:	learn: 21.6143650	total: 120ms	remaining: 453ms
21:	learn: 21.4571623	total: 125ms	remaining: 442ms
22:	learn: 21.2395769	total: 129ms	remaining: 431ms
23:	learn: 20.9801795	total: 133ms	remaining: 422ms
24:	learn: 20.8036808	total: 137ms	remaining: 412ms
25:	learn: 20.6387539	total: 142ms	remaining: 405ms
26:	learn: 20.4401427	total: 147ms	remaining: 398ms
27:	learn: 20.2879575	total: 152ms	remaining: 390ms
28:	learn: 20.0538664	total: 157ms	remaining: 384ms
29:	learn: 19.8363102	total: 162ms	remaining: 378ms
30:	learn: 19.7015446	total: 167ms	remaining: 371ms
31:	learn: 19.5483114	total: 172ms	remaining: 365ms
32:	learn: 19.4163053	total: 176ms	remaining: 358ms
33:	learn: 19.2880625	total: 181ms	remaining: 351ms
34:	learn: 19.1303389	total: 185ms	remaining: 344ms
35:	learn: 18.9237448	total: 189ms	remaining: 337ms
36:	learn: 18.8142925	total: 194ms	remaining: 330ms
37:	learn: 18.6994696	total: 198ms	remaining: 323ms
38:	learn: 18.5629211	total: 203ms	remaining: 317ms
39:	learn: 18.4600917	total: 208ms	remaining: 311ms
40:	learn: 18.3567139	total: 212ms	remaining: 305ms
41:	learn: 18.2120527	total: 217ms	remaining: 299ms
42:	learn: 18.0688062	total: 222ms	remaining: 294ms
43:	learn: 17.9250181	total: 226ms	remaining: 288ms
44:	learn: 17.8399138	total: 232ms	remaining: 283ms
45:	learn: 17.6720713	total: 236ms	remaining: 277ms
46:	learn: 17.5273091	total: 241ms	remaining: 272ms
47:	learn: 17.4232814	total: 247ms	remaining: 268ms
48:	learn: 17.2957579	total: 255ms	remaining: 265ms
49:	learn: 17.1892874	total: 262ms	remaining: 262ms
50:	learn: 17.0490355	total: 268ms	remaining: 258ms
51:	learn: 16.9666450	total: 273ms	remaining: 252ms
52:	learn: 16.8600056	total: 279ms	remaining: 247ms
53:	learn: 16.7542588	total: 283ms	remaining: 241ms
54:	learn: 16.6316077	total: 294ms	remaining: 240ms
55:	learn: 16.5588112	total: 298ms	remaining: 234ms
56:	learn: 16.5010186	total: 303ms	remaining: 228ms
57:	learn: 16.4081540	total: 307ms	remaining: 222ms
58:	learn: 16.3040451	total: 311ms	remaining: 216ms
59:	learn: 16.1890564	total: 316ms	remaining: 210ms
60:	learn: 16.0977103	total: 320ms	remaining: 205ms
61:	learn: 15.9627607	total: 324ms	remaining: 199ms
62:	learn: 15.9022248	total: 328ms	remaining: 193ms
63:	learn: 15.8151881	total: 333ms	remaining: 187ms
64:	learn: 15.7353125	total: 337ms	remaining: 181ms
65:	learn: 15.6312897	total: 341ms	remaining: 176ms
66:	learn: 15.5330927	total: 346ms	remaining: 170ms
67:	learn: 15.4698681	total: 350ms	remaining: 164ms
68:	learn: 15.4108571	total: 354ms	remaining: 159ms
69:	learn: 15.3492945	total: 358ms	remaining: 153ms
70:	learn: 15.3036540	total: 363ms	remaining: 148ms
71:	learn: 15.2390833	total: 367ms	remaining: 143ms
72:	learn: 15.1556327	total: 371ms	remaining: 137ms
73:	learn: 15.1016315	total: 375ms	remaining: 132ms
74:	learn: 15.0287076	total: 379ms	remaining: 126ms
75:	learn: 14.9530572	total: 384ms	remaining: 121ms
76:	learn: 14.8965517	total: 388ms	remaining: 116ms
77:	learn: 14.8125426	total: 393ms	remaining: 111ms
78:	learn: 14.7435359	total: 398ms	remaining: 106ms
79:	learn: 14.6963163	total: 402ms	remaining: 101ms
80:	learn: 14.6200060	total: 407ms	remaining: 95.4ms
81:	learn: 14.5707760	total: 411ms	remaining: 90.2ms
82:	learn: 14.5053651	total: 416ms	remaining: 85.1ms
83:	learn: 14.4115458	total: 420ms	remaining: 80.1ms
84:	learn: 14.3117159	total: 425ms	remaining: 75.1ms
85:	learn: 14.2511326	total: 430ms	remaining: 70ms
86:	learn: 14.1372486	total: 435ms	remaining: 65ms
87:	learn: 14.0992301	total: 439ms	remaining: 59.9ms
88:	learn: 14.0228331	total: 444ms	remaining: 54.9ms
89:	learn: 13.9249836	total: 450ms	remaining: 50ms
90:	learn: 13.8679364	total: 458ms	remaining: 45.3ms
91:	learn: 13.8405578	total: 466ms	remaining: 40.5ms
92:	learn: 13.7711325	total: 474ms	remaining: 35.7ms
93:	learn: 13.7357019	total: 483ms	remaining: 30.8ms
94:	learn: 13.6735271	total: 488ms	remaining: 25.7ms
95:	learn: 13.5682393	total: 494ms	remaining: 20.6ms
96:	learn: 13.5342610	total: 500ms	remaining: 15.5ms
97:	learn: 13.4710034	total: 505ms	remaining: 10.3ms
98:	learn: 13.4022402	total: 511ms	remaining: 5.16ms
99:	learn: 13.3351238	total: 517ms	remaining: 0us
0:	learn: 42.9181702	total: 5.01ms	remaining: 496ms
1:	learn: 42.0286736	total: 9.24ms	remaining: 453ms
2:	learn: 41.2764568	total: 13.5ms	remaining: 437ms
3:	learn: 40.4721918	total: 17.8ms	remaining: 428ms
4:	learn: 39.8518928	total: 22.4ms	remaining: 425ms
5:	learn: 39.2645479	total: 26.9ms	remaining: 421ms
6:	learn: 38.4453704	total: 31.1ms	remaining: 414ms
7:	learn: 37.7122059	total: 35.8ms	remaining: 412ms
8:	learn: 36.9185796	total: 40.4ms	remaining: 409ms
9:	learn: 36.1668427	total: 44.6ms	remaining: 402ms
10:	learn: 35.5639029	total: 49.1ms	remaining: 397ms
11:	learn: 34.7724193	total: 53.5ms	remaining: 392ms
12:	learn: 34.3053433	total: 58ms	remaining: 388ms
13:	learn: 33.6561327	total: 59.2ms	remaining: 364ms
14:	learn: 33.0134042	total: 63.1ms	remaining: 358ms
15:	learn: 32.4483300	total: 67.8ms	remaining: 356ms
16:	learn: 31.8581144	total: 72.6ms	remaining: 355ms
17:	learn: 31.2858301	total: 80ms	remaining: 364ms
18:	learn: 30.8483018	total: 86.8ms	remaining: 370ms
19:	learn: 30.4174622	total: 94.1ms	remaining: 376ms
20:	learn: 29.8994411	total: 99.5ms	remaining: 374ms
21:	learn: 29.5045355	total: 105ms	remaining: 371ms
22:	learn: 28.9923519	total: 110ms	remaining: 368ms
23:	learn: 28.4255717	total: 116ms	remaining: 369ms
24:	learn: 28.0283139	total: 121ms	remaining: 362ms
25:	learn: 27.7434814	total: 126ms	remaining: 357ms
26:	learn: 27.2770731	total: 130ms	remaining: 351ms
27:	learn: 26.8928270	total: 134ms	remaining: 346ms
28:	learn: 26.4282671	total: 139ms	remaining: 339ms
29:	learn: 26.0272764	total: 143ms	remaining: 333ms
30:	learn: 25.7579312	total: 147ms	remaining: 327ms
31:	learn: 25.4542434	total: 151ms	remaining: 321ms
32:	learn: 25.1232564	total: 156ms	remaining: 317ms
33:	learn: 24.8110795	total: 161ms	remaining: 312ms
34:	learn: 24.5077579	total: 169ms	remaining: 314ms
35:	learn: 24.1909000	total: 174ms	remaining: 309ms
36:	learn: 23.8719468	total: 178ms	remaining: 303ms
37:	learn: 23.5764366	total: 179ms	remaining: 292ms
38:	learn: 23.3468086	total: 184ms	remaining: 288ms
39:	learn: 23.0908771	total: 188ms	remaining: 282ms
40:	learn: 22.8580876	total: 193ms	remaining: 277ms
41:	learn: 22.6060825	total: 197ms	remaining: 272ms
42:	learn: 22.4125407	total: 202ms	remaining: 268ms
43:	learn: 22.1990617	total: 206ms	remaining: 262ms
44:	learn: 21.9716164	total: 211ms	remaining: 257ms
45:	learn: 21.8360935	total: 215ms	remaining: 253ms
46:	learn: 21.6169256	total: 219ms	remaining: 247ms
47:	learn: 21.4620612	total: 223ms	remaining: 242ms
48:	learn: 21.2894194	total: 228ms	remaining: 237ms
49:	learn: 21.1066266	total: 232ms	remaining: 232ms
50:	learn: 20.9484898	total: 236ms	remaining: 227ms
51:	learn: 20.7195338	total: 241ms	remaining: 222ms
52:	learn: 20.4899740	total: 245ms	remaining: 217ms
53:	learn: 20.3356583	total: 250ms	remaining: 213ms
54:	learn: 20.0754393	total: 254ms	remaining: 208ms
55:	learn: 19.9199159	total: 258ms	remaining: 203ms
56:	learn: 19.7761128	total: 263ms	remaining: 198ms
57:	learn: 19.6533060	total: 267ms	remaining: 194ms
58:	learn: 19.5113942	total: 272ms	remaining: 189ms
59:	learn: 19.3985022	total: 277ms	remaining: 185ms
60:	learn: 19.2683443	total: 282ms	remaining: 180ms
61:	learn: 19.1460824	total: 287ms	remaining: 176ms
62:	learn: 19.0042655	total: 292ms	remaining: 171ms
63:	learn: 18.8720873	total: 296ms	remaining: 167ms
64:	learn: 18.7183888	total: 301ms	remaining: 162ms
65:	learn: 18.5472360	total: 309ms	remaining: 159ms
66:	learn: 18.3976642	total: 317ms	remaining: 156ms
67:	learn: 18.2282851	total: 326ms	remaining: 153ms
68:	learn: 18.1469157	total: 331ms	remaining: 149ms
69:	learn: 18.0649494	total: 338ms	remaining: 145ms
70:	learn: 17.9485405	total: 343ms	remaining: 140ms
71:	learn: 17.8460261	total: 348ms	remaining: 136ms
72:	learn: 17.7679843	total: 354ms	remaining: 131ms
73:	learn: 17.5989290	total: 360ms	remaining: 126ms
74:	learn: 17.4381322	total: 365ms	remaining: 122ms
75:	learn: 17.3370886	total: 371ms	remaining: 117ms
76:	learn: 17.2675308	total: 377ms	remaining: 113ms
77:	learn: 17.1946430	total: 381ms	remaining: 108ms
78:	learn: 17.0923725	total: 386ms	remaining: 103ms
79:	learn: 17.0537265	total: 391ms	remaining: 97.8ms
80:	learn: 16.9456831	total: 396ms	remaining: 93ms
81:	learn: 16.8457353	total: 402ms	remaining: 88.2ms
82:	learn: 16.7469310	total: 407ms	remaining: 83.4ms
83:	learn: 16.6679953	total: 412ms	remaining: 78.5ms
84:	learn: 16.6274189	total: 417ms	remaining: 73.5ms
85:	learn: 16.5516530	total: 421ms	remaining: 68.5ms
86:	learn: 16.4886066	total: 425ms	remaining: 63.5ms
87:	learn: 16.3947859	total: 430ms	remaining: 58.6ms
88:	learn: 16.3406495	total: 434ms	remaining: 53.7ms
89:	learn: 16.3019195	total: 439ms	remaining: 48.7ms
90:	learn: 16.1860681	total: 443ms	remaining: 43.8ms
91:	learn: 16.1282812	total: 447ms	remaining: 38.9ms
92:	learn: 16.0303652	total: 452ms	remaining: 34ms
93:	learn: 15.9561692	total: 456ms	remaining: 29.1ms
94:	learn: 15.8733994	total: 461ms	remaining: 24.3ms
95:	learn: 15.8108833	total: 465ms	remaining: 19.4ms
96:	learn: 15.7606004	total: 470ms	remaining: 14.5ms
97:	learn: 15.6984664	total: 475ms	remaining: 9.69ms
98:	learn: 15.6223632	total: 479ms	remaining: 4.84ms
99:	learn: 15.5671136	total: 484ms	remaining: 0us
0:	learn: 46.4788614	total: 2.04ms	remaining: 202ms
1:	learn: 45.7608372	total: 6.54ms	remaining: 321ms
2:	learn: 44.8825004	total: 11.1ms	remaining: 358ms
3:	learn: 44.0362738	total: 15.3ms	remaining: 366ms
4:	learn: 43.2086374	total: 19.6ms	remaining: 372ms
5:	learn: 42.5835773	total: 24.1ms	remaining: 377ms
6:	learn: 41.9673269	total: 28.8ms	remaining: 383ms
7:	learn: 41.4748717	total: 33.9ms	remaining: 390ms
8:	learn: 40.7129183	total: 38.7ms	remaining: 391ms
9:	learn: 39.8900884	total: 43.4ms	remaining: 391ms
10:	learn: 39.4142193	total: 48.4ms	remaining: 392ms
11:	learn: 38.8645613	total: 53.5ms	remaining: 392ms
12:	learn: 38.2394731	total: 58.6ms	remaining: 392ms
13:	learn: 37.6834515	total: 63.3ms	remaining: 389ms
14:	learn: 37.0673507	total: 67.4ms	remaining: 382ms
15:	learn: 36.4728340	total: 71.8ms	remaining: 377ms
16:	learn: 36.0489086	total: 76ms	remaining: 371ms
17:	learn: 35.4744141	total: 80.6ms	remaining: 367ms
18:	learn: 35.0106021	total: 84.8ms	remaining: 361ms
19:	learn: 34.5586053	total: 88.9ms	remaining: 356ms
20:	learn: 34.1308223	total: 93.4ms	remaining: 351ms
21:	learn: 33.7701450	total: 97.8ms	remaining: 347ms
22:	learn: 33.4425444	total: 102ms	remaining: 342ms
23:	learn: 33.0296412	total: 106ms	remaining: 337ms
24:	learn: 32.6359803	total: 111ms	remaining: 332ms
25:	learn: 32.1846182	total: 115ms	remaining: 328ms
26:	learn: 31.7620230	total: 120ms	remaining: 323ms
27:	learn: 31.4669337	total: 124ms	remaining: 319ms
28:	learn: 31.0792062	total: 128ms	remaining: 314ms
29:	learn: 30.7970537	total: 133ms	remaining: 310ms
30:	learn: 30.4952215	total: 137ms	remaining: 305ms
31:	learn: 30.2845344	total: 142ms	remaining: 301ms
32:	learn: 29.9592732	total: 146ms	remaining: 296ms
33:	learn: 29.6798596	total: 150ms	remaining: 292ms
34:	learn: 29.3368905	total: 155ms	remaining: 288ms
35:	learn: 29.0621238	total: 160ms	remaining: 284ms
36:	learn: 28.6445375	total: 165ms	remaining: 280ms
37:	learn: 28.2418096	total: 170ms	remaining: 277ms
38:	learn: 27.9495390	total: 175ms	remaining: 273ms
39:	learn: 27.6958160	total: 179ms	remaining: 269ms
40:	learn: 27.4811189	total: 188ms	remaining: 271ms
41:	learn: 27.1494420	total: 196ms	remaining: 271ms
42:	learn: 26.8388873	total: 205ms	remaining: 271ms
43:	learn: 26.5721300	total: 211ms	remaining: 269ms
44:	learn: 26.3384738	total: 217ms	remaining: 266ms
45:	learn: 26.1894781	total: 223ms	remaining: 261ms
46:	learn: 25.9580198	total: 228ms	remaining: 257ms
47:	learn: 25.7897985	total: 233ms	remaining: 253ms
48:	learn: 25.6000271	total: 239ms	remaining: 249ms
49:	learn: 25.4130873	total: 244ms	remaining: 244ms
50:	learn: 25.1699061	total: 249ms	remaining: 239ms
51:	learn: 24.9324449	total: 255ms	remaining: 235ms
52:	learn: 24.7729152	total: 260ms	remaining: 230ms
53:	learn: 24.5026563	total: 265ms	remaining: 226ms
54:	learn: 24.2332627	total: 270ms	remaining: 221ms
55:	learn: 23.9611984	total: 276ms	remaining: 217ms
56:	learn: 23.7862603	total: 281ms	remaining: 212ms
57:	learn: 23.6318154	total: 285ms	remaining: 207ms
58:	learn: 23.4443306	total: 290ms	remaining: 201ms
59:	learn: 23.2581425	total: 294ms	remaining: 196ms
60:	learn: 23.0549901	total: 299ms	remaining: 191ms
61:	learn: 22.8666218	total: 303ms	remaining: 186ms
62:	learn: 22.6956739	total: 308ms	remaining: 181ms
63:	learn: 22.5068544	total: 312ms	remaining: 176ms
64:	learn: 22.1859147	total: 316ms	remaining: 170ms
65:	learn: 22.0462043	total: 320ms	remaining: 165ms
66:	learn: 21.9329563	total: 325ms	remaining: 160ms
67:	learn: 21.8029736	total: 329ms	remaining: 155ms
68:	learn: 21.6861091	total: 333ms	remaining: 150ms
69:	learn: 21.4838140	total: 338ms	remaining: 145ms
70:	learn: 21.3548921	total: 342ms	remaining: 140ms
71:	learn: 21.2244517	total: 346ms	remaining: 135ms
72:	learn: 21.0702958	total: 351ms	remaining: 130ms
73:	learn: 20.9224662	total: 355ms	remaining: 125ms
74:	learn: 20.8150357	total: 360ms	remaining: 120ms
75:	learn: 20.6962739	total: 365ms	remaining: 115ms
76:	learn: 20.5809258	total: 369ms	remaining: 110ms
77:	learn: 20.4735470	total: 374ms	remaining: 106ms
78:	learn: 20.3778167	total: 379ms	remaining: 101ms
79:	learn: 20.2211268	total: 387ms	remaining: 96.8ms
80:	learn: 20.1478678	total: 395ms	remaining: 92.6ms
81:	learn: 20.1032967	total: 401ms	remaining: 88.1ms
82:	learn: 19.9236300	total: 407ms	remaining: 83.3ms
83:	learn: 19.8151745	total: 414ms	remaining: 78.8ms
84:	learn: 19.7099856	total: 419ms	remaining: 73.9ms
85:	learn: 19.6264833	total: 423ms	remaining: 68.9ms
86:	learn: 19.4916361	total: 428ms	remaining: 64ms
87:	learn: 19.4050529	total: 433ms	remaining: 59.1ms
88:	learn: 19.2547065	total: 437ms	remaining: 54.1ms
89:	learn: 19.1610225	total: 442ms	remaining: 49.1ms
90:	learn: 19.0898958	total: 447ms	remaining: 44.2ms
91:	learn: 19.0489664	total: 451ms	remaining: 39.2ms
92:	learn: 18.9206240	total: 455ms	remaining: 34.3ms
93:	learn: 18.8636239	total: 459ms	remaining: 29.3ms
94:	learn: 18.8126187	total: 463ms	remaining: 24.4ms
95:	learn: 18.7579275	total: 468ms	remaining: 19.5ms
96:	learn: 18.6382753	total: 472ms	remaining: 14.6ms
97:	learn: 18.5397334	total: 477ms	remaining: 9.72ms
98:	learn: 18.4375951	total: 481ms	remaining: 4.86ms
99:	learn: 18.4033755	total: 486ms	remaining: 0us
0:	learn: 46.1068821	total: 1.86ms	remaining: 185ms
1:	learn: 45.3970261	total: 6.29ms	remaining: 308ms
2:	learn: 44.8732696	total: 10.6ms	remaining: 344ms
3:	learn: 44.1290184	total: 14.7ms	remaining: 353ms
4:	learn: 43.3290271	total: 19ms	remaining: 361ms
5:	learn: 42.7069090	total: 23.6ms	remaining: 370ms
6:	learn: 42.0572971	total: 27.9ms	remaining: 370ms
7:	learn: 41.4797924	total: 32.1ms	remaining: 369ms
8:	learn: 41.0023122	total: 36.9ms	remaining: 373ms
9:	learn: 40.5330570	total: 41.8ms	remaining: 376ms
10:	learn: 39.9726545	total: 46.2ms	remaining: 374ms
11:	learn: 39.3044053	total: 50.6ms	remaining: 371ms
12:	learn: 38.8169735	total: 55.1ms	remaining: 369ms
13:	learn: 38.2458761	total: 60.1ms	remaining: 369ms
14:	learn: 37.6280321	total: 66ms	remaining: 374ms
15:	learn: 37.0800610	total: 73.8ms	remaining: 388ms
16:	learn: 36.5489363	total: 81.5ms	remaining: 398ms
17:	learn: 36.0981456	total: 89ms	remaining: 405ms
18:	learn: 35.6956274	total: 96.7ms	remaining: 412ms
19:	learn: 35.1471999	total: 102ms	remaining: 409ms
20:	learn: 34.6235408	total: 113ms	remaining: 425ms
21:	learn: 34.1987018	total: 118ms	remaining: 420ms
22:	learn: 33.8985062	total: 124ms	remaining: 414ms
23:	learn: 33.3869017	total: 129ms	remaining: 409ms
24:	learn: 32.9100550	total: 134ms	remaining: 403ms
25:	learn: 32.4156208	total: 139ms	remaining: 397ms
26:	learn: 31.9320493	total: 144ms	remaining: 390ms
27:	learn: 31.5711468	total: 149ms	remaining: 384ms
28:	learn: 31.2404433	total: 154ms	remaining: 378ms
29:	learn: 30.8807946	total: 160ms	remaining: 373ms
30:	learn: 30.5948438	total: 166ms	remaining: 368ms
31:	learn: 30.3885560	total: 170ms	remaining: 361ms
32:	learn: 30.0625101	total: 174ms	remaining: 354ms
33:	learn: 29.9113114	total: 179ms	remaining: 347ms
34:	learn: 29.6983470	total: 183ms	remaining: 339ms
35:	learn: 29.4775849	total: 187ms	remaining: 333ms
36:	learn: 29.0538055	total: 192ms	remaining: 326ms
37:	learn: 28.6792318	total: 196ms	remaining: 320ms
38:	learn: 28.4231383	total: 201ms	remaining: 314ms
39:	learn: 28.1078565	total: 205ms	remaining: 307ms
40:	learn: 27.9079179	total: 209ms	remaining: 301ms
41:	learn: 27.6721506	total: 213ms	remaining: 294ms
42:	learn: 27.4228033	total: 218ms	remaining: 289ms
43:	learn: 27.1740534	total: 222ms	remaining: 283ms
44:	learn: 26.8584071	total: 226ms	remaining: 277ms
45:	learn: 26.6902083	total: 231ms	remaining: 271ms
46:	learn: 26.4855335	total: 236ms	remaining: 266ms
47:	learn: 26.2730822	total: 240ms	remaining: 260ms
48:	learn: 26.1058689	total: 245ms	remaining: 255ms
49:	learn: 25.8587318	total: 250ms	remaining: 250ms
50:	learn: 25.7558005	total: 255ms	remaining: 245ms
51:	learn: 25.5846925	total: 259ms	remaining: 239ms
52:	learn: 25.4249887	total: 268ms	remaining: 238ms
53:	learn: 25.1911054	total: 278ms	remaining: 237ms
54:	learn: 25.0544755	total: 284ms	remaining: 232ms
55:	learn: 24.8874006	total: 290ms	remaining: 228ms
56:	learn: 24.7736279	total: 295ms	remaining: 222ms
57:	learn: 24.6156255	total: 299ms	remaining: 217ms
58:	learn: 24.3962421	total: 304ms	remaining: 211ms
59:	learn: 24.2685129	total: 309ms	remaining: 206ms
60:	learn: 24.1874096	total: 313ms	remaining: 200ms
61:	learn: 24.0394287	total: 318ms	remaining: 195ms
62:	learn: 23.9281768	total: 323ms	remaining: 189ms
63:	learn: 23.7423900	total: 327ms	remaining: 184ms
64:	learn: 23.6015209	total: 331ms	remaining: 178ms
65:	learn: 23.4677943	total: 336ms	remaining: 173ms
66:	learn: 23.3215256	total: 341ms	remaining: 168ms
67:	learn: 23.1869360	total: 345ms	remaining: 162ms
68:	learn: 22.9691180	total: 350ms	remaining: 157ms
69:	learn: 22.7531657	total: 355ms	remaining: 152ms
70:	learn: 22.6133477	total: 360ms	remaining: 147ms
71:	learn: 22.3452758	total: 365ms	remaining: 142ms
72:	learn: 22.2065350	total: 369ms	remaining: 137ms
73:	learn: 22.1071155	total: 373ms	remaining: 131ms
74:	learn: 21.9740686	total: 378ms	remaining: 126ms
75:	learn: 21.8892033	total: 383ms	remaining: 121ms
76:	learn: 21.8267882	total: 387ms	remaining: 116ms
77:	learn: 21.7423479	total: 391ms	remaining: 110ms
78:	learn: 21.6242075	total: 396ms	remaining: 105ms
79:	learn: 21.5016910	total: 400ms	remaining: 100ms
80:	learn: 21.4806623	total: 401ms	remaining: 94.1ms
81:	learn: 21.3166637	total: 406ms	remaining: 89.1ms
82:	learn: 21.2222534	total: 410ms	remaining: 84ms
83:	learn: 21.1535708	total: 414ms	remaining: 78.8ms
84:	learn: 21.0858902	total: 418ms	remaining: 73.8ms
85:	learn: 20.9206003	total: 422ms	remaining: 68.7ms
86:	learn: 20.8674695	total: 427ms	remaining: 63.8ms
87:	learn: 20.8089875	total: 431ms	remaining: 58.8ms
88:	learn: 20.7085401	total: 436ms	remaining: 53.9ms
89:	learn: 20.5513468	total: 441ms	remaining: 49ms
90:	learn: 20.4586742	total: 445ms	remaining: 44ms
91:	learn: 20.3932149	total: 450ms	remaining: 39.1ms
92:	learn: 20.3000895	total: 459ms	remaining: 34.5ms
93:	learn: 20.2254009	total: 467ms	remaining: 29.8ms
94:	learn: 20.1750050	total: 476ms	remaining: 25.1ms
95:	learn: 20.0715579	total: 485ms	remaining: 20.2ms
96:	learn: 19.9920082	total: 491ms	remaining: 15.2ms
97:	learn: 19.9664401	total: 496ms	remaining: 10.1ms
98:	learn: 19.8689673	total: 502ms	remaining: 5.07ms
99:	learn: 19.7537356	total: 508ms	remaining: 0us
0:	learn: 46.8832143	total: 5.48ms	remaining: 543ms
1:	learn: 45.8700349	total: 9.7ms	remaining: 475ms
2:	learn: 45.0546867	total: 14.1ms	remaining: 457ms
3:	learn: 44.2829439	total: 18.6ms	remaining: 446ms
4:	learn: 43.4609042	total: 22.7ms	remaining: 430ms
5:	learn: 42.6754991	total: 26.9ms	remaining: 422ms
6:	learn: 41.9234935	total: 31.3ms	remaining: 416ms
7:	learn: 41.3987518	total: 35.7ms	remaining: 410ms
8:	learn: 40.6625066	total: 40ms	remaining: 404ms
9:	learn: 40.0029561	total: 44.3ms	remaining: 399ms
10:	learn: 39.3897033	total: 48.6ms	remaining: 393ms
11:	learn: 38.7741453	total: 52.8ms	remaining: 388ms
12:	learn: 38.1201100	total: 57.2ms	remaining: 383ms
13:	learn: 37.5129454	total: 61.6ms	remaining: 378ms
14:	learn: 37.2062206	total: 66.4ms	remaining: 376ms
15:	learn: 36.6831741	total: 70.3ms	remaining: 369ms
16:	learn: 36.2902788	total: 74.7ms	remaining: 365ms
17:	learn: 35.7639930	total: 79ms	remaining: 360ms
18:	learn: 35.2580953	total: 84ms	remaining: 358ms
19:	learn: 34.7809739	total: 88.9ms	remaining: 356ms
20:	learn: 34.1330433	total: 93.3ms	remaining: 351ms
21:	learn: 33.7302219	total: 98ms	remaining: 347ms
22:	learn: 33.3502495	total: 103ms	remaining: 344ms
23:	learn: 33.0067804	total: 107ms	remaining: 340ms
24:	learn: 32.6897855	total: 114ms	remaining: 342ms
25:	learn: 32.4361119	total: 122ms	remaining: 346ms
26:	learn: 32.1278981	total: 129ms	remaining: 348ms
27:	learn: 31.7863721	total: 134ms	remaining: 345ms
28:	learn: 31.4791450	total: 140ms	remaining: 344ms
29:	learn: 31.1760161	total: 145ms	remaining: 339ms
30:	learn: 30.9238888	total: 150ms	remaining: 333ms
31:	learn: 30.5500905	total: 157ms	remaining: 335ms
32:	learn: 30.3078126	total: 162ms	remaining: 328ms
33:	learn: 30.0480921	total: 166ms	remaining: 321ms
34:	learn: 29.8623884	total: 170ms	remaining: 315ms
35:	learn: 29.5991038	total: 174ms	remaining: 310ms
36:	learn: 29.4061161	total: 178ms	remaining: 304ms
37:	learn: 29.0269515	total: 182ms	remaining: 298ms
38:	learn: 28.8224959	total: 186ms	remaining: 291ms
39:	learn: 28.6417843	total: 191ms	remaining: 286ms
40:	learn: 28.3633368	total: 195ms	remaining: 280ms
41:	learn: 28.0200246	total: 199ms	remaining: 275ms
42:	learn: 27.7221254	total: 203ms	remaining: 270ms
43:	learn: 27.5105818	total: 208ms	remaining: 265ms
44:	learn: 27.3551010	total: 213ms	remaining: 260ms
45:	learn: 27.0787522	total: 217ms	remaining: 255ms
46:	learn: 26.8726317	total: 221ms	remaining: 250ms
47:	learn: 26.8003277	total: 225ms	remaining: 244ms
48:	learn: 26.5493785	total: 230ms	remaining: 239ms
49:	learn: 26.3699550	total: 234ms	remaining: 234ms
50:	learn: 26.1519631	total: 238ms	remaining: 229ms
51:	learn: 25.9277325	total: 242ms	remaining: 224ms
52:	learn: 25.7286035	total: 247ms	remaining: 219ms
53:	learn: 25.4999193	total: 251ms	remaining: 214ms
54:	learn: 25.3434703	total: 255ms	remaining: 209ms
55:	learn: 25.1497545	total: 260ms	remaining: 204ms
56:	learn: 24.9498143	total: 264ms	remaining: 199ms
57:	learn: 24.6509390	total: 269ms	remaining: 194ms
58:	learn: 24.5576144	total: 273ms	remaining: 189ms
59:	learn: 24.4265144	total: 277ms	remaining: 185ms
60:	learn: 24.3100706	total: 282ms	remaining: 180ms
61:	learn: 24.1727952	total: 287ms	remaining: 176ms
62:	learn: 24.0478558	total: 295ms	remaining: 173ms
63:	learn: 23.9124577	total: 301ms	remaining: 169ms
64:	learn: 23.7703718	total: 308ms	remaining: 166ms
65:	learn: 23.5975027	total: 314ms	remaining: 162ms
66:	learn: 23.4318077	total: 320ms	remaining: 157ms
67:	learn: 23.3099691	total: 325ms	remaining: 153ms
68:	learn: 23.1947982	total: 331ms	remaining: 149ms
69:	learn: 23.0260174	total: 337ms	remaining: 144ms
70:	learn: 22.8523100	total: 342ms	remaining: 140ms
71:	learn: 22.8028534	total: 348ms	remaining: 135ms
72:	learn: 22.6880658	total: 353ms	remaining: 131ms
73:	learn: 22.5956809	total: 359ms	remaining: 126ms
74:	learn: 22.4692932	total: 365ms	remaining: 122ms
75:	learn: 22.2863504	total: 370ms	remaining: 117ms
76:	learn: 22.1911237	total: 376ms	remaining: 112ms
77:	learn: 22.1098391	total: 381ms	remaining: 107ms
78:	learn: 22.0182738	total: 386ms	remaining: 103ms
79:	learn: 21.9306746	total: 391ms	remaining: 97.9ms
80:	learn: 21.7508233	total: 396ms	remaining: 93ms
81:	learn: 21.7108446	total: 401ms	remaining: 88ms
82:	learn: 21.5931852	total: 407ms	remaining: 83.3ms
83:	learn: 21.4480361	total: 412ms	remaining: 78.5ms
84:	learn: 21.3092119	total: 417ms	remaining: 73.5ms
85:	learn: 21.2605557	total: 421ms	remaining: 68.5ms
86:	learn: 21.1123597	total: 425ms	remaining: 63.5ms
87:	learn: 21.0115642	total: 429ms	remaining: 58.5ms
88:	learn: 20.9389040	total: 434ms	remaining: 53.6ms
89:	learn: 20.8300300	total: 438ms	remaining: 48.6ms
90:	learn: 20.7159733	total: 442ms	remaining: 43.7ms
91:	learn: 20.6282090	total: 446ms	remaining: 38.8ms
92:	learn: 20.5164529	total: 451ms	remaining: 33.9ms
93:	learn: 20.4692032	total: 455ms	remaining: 29.1ms
94:	learn: 20.3768451	total: 459ms	remaining: 24.2ms
95:	learn: 20.2808056	total: 464ms	remaining: 19.3ms
96:	learn: 20.2082089	total: 469ms	remaining: 14.5ms
97:	learn: 20.1698768	total: 473ms	remaining: 9.65ms
98:	learn: 20.1048816	total: 477ms	remaining: 4.82ms
99:	learn: 20.0086159	total: 482ms	remaining: 0us
0:	learn: 27.6871645	total: 5.57ms	remaining: 552ms
1:	learn: 27.3312003	total: 10.1ms	remaining: 496ms
2:	learn: 26.9359558	total: 14.7ms	remaining: 475ms
3:	learn: 26.6055364	total: 19.4ms	remaining: 465ms
4:	learn: 26.1664924	total: 23.9ms	remaining: 454ms
5:	learn: 25.8515393	total: 28.7ms	remaining: 449ms
6:	learn: 25.4620036	total: 33.5ms	remaining: 446ms
7:	learn: 25.1669741	total: 38.5ms	remaining: 442ms
8:	learn: 24.8455454	total: 43.3ms	remaining: 438ms
9:	learn: 24.5106323	total: 48ms	remaining: 432ms
10:	learn: 24.1915228	total: 52.8ms	remaining: 427ms
11:	learn: 23.9076053	total: 57.6ms	remaining: 422ms
12:	learn: 23.6692445	total: 62.4ms	remaining: 418ms
13:	learn: 23.4343504	total: 67.2ms	remaining: 413ms
14:	learn: 23.2425280	total: 72.1ms	remaining: 409ms
15:	learn: 22.9254142	total: 76.9ms	remaining: 404ms
16:	learn: 22.6495489	total: 81.8ms	remaining: 399ms
17:	learn: 22.4343705	total: 87ms	remaining: 396ms
18:	learn: 22.2154202	total: 91.9ms	remaining: 392ms
19:	learn: 22.0592712	total: 96.8ms	remaining: 387ms
20:	learn: 21.7971944	total: 102ms	remaining: 383ms
21:	learn: 21.6128930	total: 107ms	remaining: 379ms
22:	learn: 21.3882946	total: 112ms	remaining: 373ms
23:	learn: 21.0912570	total: 116ms	remaining: 368ms
24:	learn: 20.8922857	total: 121ms	remaining: 363ms
25:	learn: 20.7150574	total: 126ms	remaining: 358ms
26:	learn: 20.5673183	total: 131ms	remaining: 354ms
27:	learn: 20.4331275	total: 136ms	remaining: 349ms
28:	learn: 20.2782866	total: 141ms	remaining: 345ms
29:	learn: 20.1061525	total: 146ms	remaining: 341ms
30:	learn: 19.9225948	total: 151ms	remaining: 336ms
31:	learn: 19.7809193	total: 156ms	remaining: 333ms
32:	learn: 19.6057771	total: 162ms	remaining: 329ms
33:	learn: 19.4391243	total: 167ms	remaining: 325ms
34:	learn: 19.2234365	total: 176ms	remaining: 327ms
35:	learn: 19.0214424	total: 187ms	remaining: 333ms
36:	learn: 18.8990643	total: 196ms	remaining: 334ms
37:	learn: 18.7473635	total: 204ms	remaining: 333ms
38:	learn: 18.6125192	total: 210ms	remaining: 328ms
39:	learn: 18.4977949	total: 215ms	remaining: 323ms
40:	learn: 18.3914568	total: 221ms	remaining: 318ms
41:	learn: 18.2541544	total: 227ms	remaining: 313ms
42:	learn: 18.1038984	total: 232ms	remaining: 308ms
43:	learn: 17.9706172	total: 238ms	remaining: 303ms
44:	learn: 17.8198810	total: 243ms	remaining: 297ms
45:	learn: 17.7102597	total: 248ms	remaining: 292ms
46:	learn: 17.6148228	total: 254ms	remaining: 286ms
47:	learn: 17.5115365	total: 259ms	remaining: 281ms
48:	learn: 17.3884162	total: 265ms	remaining: 276ms
49:	learn: 17.2857632	total: 271ms	remaining: 271ms
50:	learn: 17.1618843	total: 277ms	remaining: 267ms
51:	learn: 17.0529601	total: 282ms	remaining: 261ms
52:	learn: 16.9330273	total: 287ms	remaining: 255ms
53:	learn: 16.8206672	total: 292ms	remaining: 249ms
54:	learn: 16.7080356	total: 297ms	remaining: 243ms
55:	learn: 16.5874354	total: 302ms	remaining: 237ms
56:	learn: 16.4929860	total: 307ms	remaining: 232ms
57:	learn: 16.4269419	total: 312ms	remaining: 226ms
58:	learn: 16.3474026	total: 317ms	remaining: 220ms
59:	learn: 16.2515784	total: 322ms	remaining: 215ms
60:	learn: 16.1743901	total: 327ms	remaining: 209ms
61:	learn: 16.0389930	total: 331ms	remaining: 203ms
62:	learn: 15.9671636	total: 337ms	remaining: 198ms
63:	learn: 15.8928486	total: 342ms	remaining: 192ms
64:	learn: 15.8303841	total: 346ms	remaining: 187ms
65:	learn: 15.7612266	total: 352ms	remaining: 181ms
66:	learn: 15.6811172	total: 357ms	remaining: 176ms
67:	learn: 15.6262138	total: 362ms	remaining: 171ms
68:	learn: 15.5662508	total: 368ms	remaining: 165ms
69:	learn: 15.4804354	total: 374ms	remaining: 160ms
70:	learn: 15.4054915	total: 379ms	remaining: 155ms
71:	learn: 15.3271396	total: 389ms	remaining: 151ms
72:	learn: 15.2828359	total: 398ms	remaining: 147ms
73:	learn: 15.2197404	total: 406ms	remaining: 143ms
74:	learn: 15.1315902	total: 411ms	remaining: 137ms
75:	learn: 15.0780523	total: 417ms	remaining: 132ms
76:	learn: 14.9959155	total: 422ms	remaining: 126ms
77:	learn: 14.9265008	total: 427ms	remaining: 120ms
78:	learn: 14.8570189	total: 432ms	remaining: 115ms
79:	learn: 14.8060372	total: 437ms	remaining: 109ms
80:	learn: 14.7294676	total: 442ms	remaining: 104ms
81:	learn: 14.6708309	total: 446ms	remaining: 98ms
82:	learn: 14.5765370	total: 451ms	remaining: 92.4ms
83:	learn: 14.5312713	total: 456ms	remaining: 86.9ms
84:	learn: 14.4830327	total: 461ms	remaining: 81.4ms
85:	learn: 14.4296247	total: 467ms	remaining: 75.9ms
86:	learn: 14.3381470	total: 472ms	remaining: 70.5ms
87:	learn: 14.2638093	total: 476ms	remaining: 65ms
88:	learn: 14.2288435	total: 481ms	remaining: 59.5ms
89:	learn: 14.1489273	total: 486ms	remaining: 54ms
90:	learn: 14.0937923	total: 491ms	remaining: 48.6ms
91:	learn: 14.0334062	total: 496ms	remaining: 43.1ms
92:	learn: 13.9854696	total: 500ms	remaining: 37.7ms
93:	learn: 13.9444203	total: 506ms	remaining: 32.3ms
94:	learn: 13.9101523	total: 510ms	remaining: 26.9ms
95:	learn: 13.8460655	total: 515ms	remaining: 21.5ms
96:	learn: 13.7809420	total: 520ms	remaining: 16.1ms
97:	learn: 13.7270532	total: 524ms	remaining: 10.7ms
98:	learn: 13.6891300	total: 529ms	remaining: 5.34ms
99:	learn: 13.6569696	total: 534ms	remaining: 0us
0:	learn: 42.9754370	total: 11.7ms	remaining: 1.16s
1:	learn: 42.2613272	total: 19.1ms	remaining: 935ms
2:	learn: 41.4729969	total: 25.5ms	remaining: 826ms
3:	learn: 40.7127004	total: 31.2ms	remaining: 748ms
4:	learn: 39.7775109	total: 36.3ms	remaining: 689ms
5:	learn: 39.1736663	total: 42ms	remaining: 658ms
6:	learn: 38.2981109	total: 47.8ms	remaining: 635ms
7:	learn: 37.5352984	total: 53.2ms	remaining: 612ms
8:	learn: 36.7771474	total: 58.9ms	remaining: 596ms
9:	learn: 36.0581366	total: 64.7ms	remaining: 582ms
10:	learn: 35.3542706	total: 70.4ms	remaining: 569ms
11:	learn: 34.6937007	total: 76.2ms	remaining: 559ms
12:	learn: 34.0408035	total: 81.9ms	remaining: 548ms
13:	learn: 33.3460240	total: 87.7ms	remaining: 539ms
14:	learn: 32.8086243	total: 94ms	remaining: 533ms
15:	learn: 32.1934462	total: 99.3ms	remaining: 521ms
16:	learn: 31.6465519	total: 104ms	remaining: 510ms
17:	learn: 31.2161293	total: 109ms	remaining: 497ms
18:	learn: 30.6730548	total: 114ms	remaining: 485ms
19:	learn: 30.3153659	total: 118ms	remaining: 474ms
20:	learn: 29.7661420	total: 123ms	remaining: 464ms
21:	learn: 29.2095664	total: 128ms	remaining: 454ms
22:	learn: 28.7509592	total: 133ms	remaining: 444ms
23:	learn: 28.4347528	total: 138ms	remaining: 436ms
24:	learn: 28.0551654	total: 142ms	remaining: 427ms
25:	learn: 27.7295952	total: 147ms	remaining: 418ms
26:	learn: 27.2329225	total: 152ms	remaining: 410ms
27:	learn: 26.9970607	total: 157ms	remaining: 403ms
28:	learn: 26.6596544	total: 161ms	remaining: 395ms
29:	learn: 26.2633576	total: 166ms	remaining: 388ms
30:	learn: 25.9761623	total: 171ms	remaining: 382ms
31:	learn: 25.6177371	total: 177ms	remaining: 375ms
32:	learn: 25.2165933	total: 182ms	remaining: 369ms
33:	learn: 24.8012870	total: 187ms	remaining: 363ms
34:	learn: 24.4772532	total: 192ms	remaining: 356ms
35:	learn: 24.1560359	total: 197ms	remaining: 351ms
36:	learn: 23.9688812	total: 203ms	remaining: 345ms
37:	learn: 23.6907607	total: 209ms	remaining: 341ms
38:	learn: 23.3885772	total: 218ms	remaining: 341ms
39:	learn: 23.2234939	total: 226ms	remaining: 339ms
40:	learn: 22.9785026	total: 233ms	remaining: 335ms
41:	learn: 22.6827268	total: 239ms	remaining: 330ms
42:	learn: 22.4564360	total: 245ms	remaining: 324ms
43:	learn: 22.2517827	total: 250ms	remaining: 318ms
44:	learn: 21.9858709	total: 255ms	remaining: 311ms
45:	learn: 21.7595870	total: 260ms	remaining: 305ms
46:	learn: 21.5929957	total: 265ms	remaining: 298ms
47:	learn: 21.4071752	total: 270ms	remaining: 292ms
48:	learn: 21.2186470	total: 275ms	remaining: 286ms
49:	learn: 21.0691824	total: 280ms	remaining: 280ms
50:	learn: 20.8921347	total: 284ms	remaining: 273ms
51:	learn: 20.6834229	total: 289ms	remaining: 267ms
52:	learn: 20.4718988	total: 294ms	remaining: 261ms
53:	learn: 20.3413889	total: 298ms	remaining: 254ms
54:	learn: 20.1785464	total: 303ms	remaining: 248ms
55:	learn: 19.9824314	total: 308ms	remaining: 242ms
56:	learn: 19.8217596	total: 313ms	remaining: 236ms
57:	learn: 19.6318474	total: 318ms	remaining: 230ms
58:	learn: 19.4962236	total: 322ms	remaining: 224ms
59:	learn: 19.3114985	total: 327ms	remaining: 218ms
60:	learn: 19.2181156	total: 332ms	remaining: 212ms
61:	learn: 19.0689614	total: 336ms	remaining: 206ms
62:	learn: 18.9563267	total: 341ms	remaining: 200ms
63:	learn: 18.8343083	total: 346ms	remaining: 195ms
64:	learn: 18.7050033	total: 352ms	remaining: 189ms
65:	learn: 18.6014163	total: 357ms	remaining: 184ms
66:	learn: 18.4910692	total: 362ms	remaining: 178ms
67:	learn: 18.3935194	total: 367ms	remaining: 173ms
68:	learn: 18.2825842	total: 371ms	remaining: 167ms
69:	learn: 18.1519267	total: 376ms	remaining: 161ms
70:	learn: 18.0527651	total: 382ms	remaining: 156ms
71:	learn: 17.9770106	total: 387ms	remaining: 150ms
72:	learn: 17.9151628	total: 392ms	remaining: 145ms
73:	learn: 17.7957486	total: 397ms	remaining: 139ms
74:	learn: 17.7025765	total: 402ms	remaining: 134ms
75:	learn: 17.5957242	total: 412ms	remaining: 130ms
76:	learn: 17.4683244	total: 421ms	remaining: 126ms
77:	learn: 17.3415729	total: 430ms	remaining: 121ms
78:	learn: 17.2886896	total: 438ms	remaining: 117ms
79:	learn: 17.2280922	total: 444ms	remaining: 111ms
80:	learn: 17.1188996	total: 450ms	remaining: 105ms
81:	learn: 17.0236450	total: 455ms	remaining: 99.9ms
82:	learn: 16.9046661	total: 461ms	remaining: 94.4ms
83:	learn: 16.7930633	total: 466ms	remaining: 88.8ms
84:	learn: 16.6870100	total: 472ms	remaining: 83.3ms
85:	learn: 16.5512107	total: 477ms	remaining: 77.7ms
86:	learn: 16.4353400	total: 483ms	remaining: 72.1ms
87:	learn: 16.3256461	total: 488ms	remaining: 66.6ms
88:	learn: 16.2968057	total: 493ms	remaining: 61ms
89:	learn: 16.2136078	total: 499ms	remaining: 55.5ms
90:	learn: 16.1596096	total: 505ms	remaining: 50ms
91:	learn: 16.1164050	total: 510ms	remaining: 44.4ms
92:	learn: 16.0660454	total: 515ms	remaining: 38.8ms
93:	learn: 16.0380611	total: 520ms	remaining: 33.2ms
94:	learn: 15.9494441	total: 525ms	remaining: 27.6ms
95:	learn: 15.8874840	total: 529ms	remaining: 22.1ms
96:	learn: 15.8288234	total: 534ms	remaining: 16.5ms
97:	learn: 15.7562787	total: 539ms	remaining: 11ms
98:	learn: 15.6822678	total: 544ms	remaining: 5.49ms
99:	learn: 15.5901500	total: 549ms	remaining: 0us
0:	learn: 46.4504871	total: 5.43ms	remaining: 537ms
1:	learn: 45.7240114	total: 14.9ms	remaining: 731ms
2:	learn: 45.0308025	total: 23.2ms	remaining: 750ms
3:	learn: 44.1111169	total: 30.1ms	remaining: 723ms
4:	learn: 43.3925352	total: 35.8ms	remaining: 680ms
5:	learn: 42.7856354	total: 41.8ms	remaining: 655ms
6:	learn: 42.1998170	total: 46.8ms	remaining: 621ms
7:	learn: 41.3532708	total: 52ms	remaining: 598ms
8:	learn: 40.7314571	total: 56.9ms	remaining: 575ms
9:	learn: 39.9838066	total: 61.6ms	remaining: 554ms
10:	learn: 39.4168243	total: 66.4ms	remaining: 537ms
11:	learn: 39.0148769	total: 71ms	remaining: 521ms
12:	learn: 38.3055855	total: 75.7ms	remaining: 507ms
13:	learn: 37.7343198	total: 80.7ms	remaining: 496ms
14:	learn: 37.4177463	total: 85.8ms	remaining: 486ms
15:	learn: 36.9043298	total: 90.5ms	remaining: 475ms
16:	learn: 36.3139174	total: 95.1ms	remaining: 464ms
17:	learn: 35.7200448	total: 100ms	remaining: 456ms
18:	learn: 35.3763394	total: 105ms	remaining: 447ms
19:	learn: 34.7666728	total: 109ms	remaining: 438ms
20:	learn: 34.2642890	total: 114ms	remaining: 429ms
21:	learn: 33.8196936	total: 119ms	remaining: 422ms
22:	learn: 33.4205669	total: 124ms	remaining: 415ms
23:	learn: 32.8565493	total: 129ms	remaining: 407ms
24:	learn: 32.5287132	total: 133ms	remaining: 399ms
25:	learn: 32.2142064	total: 138ms	remaining: 394ms
26:	learn: 31.9258854	total: 143ms	remaining: 387ms
27:	learn: 31.4083665	total: 148ms	remaining: 380ms
28:	learn: 31.1615620	total: 153ms	remaining: 374ms
29:	learn: 30.6948867	total: 157ms	remaining: 367ms
30:	learn: 30.3185108	total: 162ms	remaining: 361ms
31:	learn: 29.9245223	total: 168ms	remaining: 356ms
32:	learn: 29.6683643	total: 173ms	remaining: 351ms
33:	learn: 29.3868143	total: 178ms	remaining: 345ms
34:	learn: 29.1105699	total: 183ms	remaining: 340ms
35:	learn: 28.8274848	total: 188ms	remaining: 335ms
36:	learn: 28.5478288	total: 193ms	remaining: 329ms
37:	learn: 28.2355121	total: 198ms	remaining: 323ms
38:	learn: 28.0182564	total: 203ms	remaining: 318ms
39:	learn: 27.7654405	total: 208ms	remaining: 312ms
40:	learn: 27.5720477	total: 213ms	remaining: 306ms
41:	learn: 27.3182782	total: 217ms	remaining: 300ms
42:	learn: 26.9504431	total: 222ms	remaining: 294ms
43:	learn: 26.7281906	total: 227ms	remaining: 289ms
44:	learn: 26.5390008	total: 232ms	remaining: 284ms
45:	learn: 26.3781338	total: 238ms	remaining: 279ms
46:	learn: 26.1763177	total: 247ms	remaining: 278ms
47:	learn: 25.9417647	total: 254ms	remaining: 275ms
48:	learn: 25.7528045	total: 261ms	remaining: 272ms
49:	learn: 25.6336897	total: 267ms	remaining: 267ms
50:	learn: 25.4800426	total: 274ms	remaining: 263ms
51:	learn: 25.2895681	total: 280ms	remaining: 258ms
52:	learn: 25.0827111	total: 285ms	remaining: 253ms
53:	learn: 24.7987678	total: 291ms	remaining: 248ms
54:	learn: 24.6309982	total: 296ms	remaining: 243ms
55:	learn: 24.3526776	total: 302ms	remaining: 237ms
56:	learn: 24.1689125	total: 308ms	remaining: 232ms
57:	learn: 23.9802039	total: 313ms	remaining: 227ms
58:	learn: 23.8059432	total: 319ms	remaining: 222ms
59:	learn: 23.6006403	total: 325ms	remaining: 217ms
60:	learn: 23.2948382	total: 331ms	remaining: 211ms
61:	learn: 23.1338922	total: 336ms	remaining: 206ms
62:	learn: 22.9581269	total: 342ms	remaining: 201ms
63:	learn: 22.8263127	total: 348ms	remaining: 196ms
64:	learn: 22.6966006	total: 355ms	remaining: 191ms
65:	learn: 22.6012389	total: 360ms	remaining: 185ms
66:	learn: 22.4220244	total: 365ms	remaining: 180ms
67:	learn: 22.3148342	total: 370ms	remaining: 174ms
68:	learn: 22.1543592	total: 374ms	remaining: 168ms
69:	learn: 22.0614050	total: 379ms	remaining: 163ms
70:	learn: 21.9134025	total: 384ms	remaining: 157ms
71:	learn: 21.8198101	total: 389ms	remaining: 151ms
72:	learn: 21.6944173	total: 393ms	remaining: 146ms
73:	learn: 21.4727420	total: 398ms	remaining: 140ms
74:	learn: 21.3000560	total: 403ms	remaining: 134ms
75:	learn: 21.1884740	total: 408ms	remaining: 129ms
76:	learn: 21.0321317	total: 413ms	remaining: 123ms
77:	learn: 20.9371793	total: 418ms	remaining: 118ms
78:	learn: 20.6800341	total: 422ms	remaining: 112ms
79:	learn: 20.5629904	total: 427ms	remaining: 107ms
80:	learn: 20.4098217	total: 432ms	remaining: 101ms
81:	learn: 20.2139261	total: 437ms	remaining: 96ms
82:	learn: 20.1024260	total: 442ms	remaining: 90.6ms
83:	learn: 19.9835855	total: 447ms	remaining: 85.2ms
84:	learn: 19.9018880	total: 452ms	remaining: 79.8ms
85:	learn: 19.7819843	total: 458ms	remaining: 74.5ms
86:	learn: 19.6352780	total: 469ms	remaining: 70.1ms
87:	learn: 19.4888328	total: 478ms	remaining: 65.2ms
88:	learn: 19.4365121	total: 484ms	remaining: 59.9ms
89:	learn: 19.3427430	total: 492ms	remaining: 54.6ms
90:	learn: 19.2884907	total: 497ms	remaining: 49.1ms
91:	learn: 19.1898932	total: 502ms	remaining: 43.6ms
92:	learn: 19.0775661	total: 507ms	remaining: 38.1ms
93:	learn: 19.0334055	total: 512ms	remaining: 32.7ms
94:	learn: 18.9381916	total: 517ms	remaining: 27.2ms
95:	learn: 18.8471198	total: 522ms	remaining: 21.7ms
96:	learn: 18.7136478	total: 527ms	remaining: 16.3ms
97:	learn: 18.6633102	total: 532ms	remaining: 10.9ms
98:	learn: 18.5887516	total: 537ms	remaining: 5.42ms
99:	learn: 18.4841597	total: 542ms	remaining: 0us
0:	learn: 46.2172336	total: 5.25ms	remaining: 520ms
1:	learn: 45.4248871	total: 9.92ms	remaining: 486ms
2:	learn: 44.8702937	total: 14.6ms	remaining: 471ms
3:	learn: 44.2019212	total: 19.2ms	remaining: 460ms
4:	learn: 43.4805210	total: 24ms	remaining: 456ms
5:	learn: 42.7336269	total: 28.6ms	remaining: 447ms
6:	learn: 42.0396670	total: 33.2ms	remaining: 441ms
7:	learn: 41.5668459	total: 37.9ms	remaining: 435ms
8:	learn: 40.8999125	total: 42.9ms	remaining: 434ms
9:	learn: 40.3358512	total: 48.1ms	remaining: 433ms
10:	learn: 39.7511489	total: 53.2ms	remaining: 431ms
11:	learn: 39.0775416	total: 58.2ms	remaining: 427ms
12:	learn: 38.5204735	total: 63.3ms	remaining: 424ms
13:	learn: 38.2087509	total: 68.7ms	remaining: 422ms
14:	learn: 37.7259552	total: 74.4ms	remaining: 422ms
15:	learn: 37.1646397	total: 85.9ms	remaining: 451ms
16:	learn: 36.7093520	total: 99.5ms	remaining: 486ms
17:	learn: 36.2212308	total: 110ms	remaining: 501ms
18:	learn: 35.8682156	total: 115ms	remaining: 492ms
19:	learn: 35.6026383	total: 121ms	remaining: 486ms
20:	learn: 35.1739725	total: 127ms	remaining: 477ms
21:	learn: 34.5938003	total: 133ms	remaining: 470ms
22:	learn: 34.1479056	total: 139ms	remaining: 464ms
23:	learn: 33.8759356	total: 144ms	remaining: 457ms
24:	learn: 33.2898426	total: 150ms	remaining: 450ms
25:	learn: 32.9220237	total: 156ms	remaining: 443ms
26:	learn: 32.4324374	total: 161ms	remaining: 435ms
27:	learn: 32.1726327	total: 167ms	remaining: 430ms
28:	learn: 31.8020879	total: 173ms	remaining: 424ms
29:	learn: 31.4329781	total: 178ms	remaining: 415ms
30:	learn: 30.9995282	total: 183ms	remaining: 406ms
31:	learn: 30.6815978	total: 187ms	remaining: 398ms
32:	learn: 30.2991029	total: 192ms	remaining: 390ms
33:	learn: 30.0354202	total: 197ms	remaining: 382ms
34:	learn: 29.7620535	total: 202ms	remaining: 375ms
35:	learn: 29.4552589	total: 207ms	remaining: 367ms
36:	learn: 29.2634399	total: 211ms	remaining: 360ms
37:	learn: 28.8345135	total: 217ms	remaining: 353ms
38:	learn: 28.5551142	total: 221ms	remaining: 346ms
39:	learn: 28.3258809	total: 226ms	remaining: 339ms
40:	learn: 28.0835564	total: 231ms	remaining: 333ms
41:	learn: 27.7517159	total: 236ms	remaining: 326ms
42:	learn: 27.5427595	total: 241ms	remaining: 319ms
43:	learn: 27.3925105	total: 246ms	remaining: 313ms
44:	learn: 27.2377120	total: 251ms	remaining: 307ms
45:	learn: 26.9930398	total: 257ms	remaining: 302ms
46:	learn: 26.7748687	total: 266ms	remaining: 299ms
47:	learn: 26.5856986	total: 274ms	remaining: 297ms
48:	learn: 26.4344153	total: 280ms	remaining: 292ms
49:	learn: 26.3263456	total: 287ms	remaining: 287ms
50:	learn: 26.2048412	total: 292ms	remaining: 281ms
51:	learn: 26.0608546	total: 297ms	remaining: 274ms
52:	learn: 25.9428146	total: 302ms	remaining: 267ms
53:	learn: 25.7578029	total: 306ms	remaining: 261ms
54:	learn: 25.5696792	total: 311ms	remaining: 254ms
55:	learn: 25.3291935	total: 316ms	remaining: 248ms
56:	learn: 25.1388942	total: 321ms	remaining: 242ms
57:	learn: 24.9853945	total: 326ms	remaining: 236ms
58:	learn: 24.8037785	total: 331ms	remaining: 230ms
59:	learn: 24.5326704	total: 335ms	remaining: 224ms
60:	learn: 24.2208240	total: 341ms	remaining: 218ms
61:	learn: 24.0774015	total: 345ms	remaining: 212ms
62:	learn: 23.9705824	total: 350ms	remaining: 206ms
63:	learn: 23.8877665	total: 355ms	remaining: 200ms
64:	learn: 23.7309043	total: 361ms	remaining: 194ms
65:	learn: 23.5820140	total: 365ms	remaining: 188ms
66:	learn: 23.3762012	total: 370ms	remaining: 182ms
67:	learn: 23.2317502	total: 375ms	remaining: 177ms
68:	learn: 23.0868331	total: 380ms	remaining: 171ms
69:	learn: 22.9642758	total: 385ms	remaining: 165ms
70:	learn: 22.8085341	total: 390ms	remaining: 159ms
71:	learn: 22.6834294	total: 395ms	remaining: 154ms
72:	learn: 22.6152922	total: 401ms	remaining: 148ms
73:	learn: 22.3675145	total: 406ms	remaining: 142ms
74:	learn: 22.3023338	total: 411ms	remaining: 137ms
75:	learn: 22.1866833	total: 415ms	remaining: 131ms
76:	learn: 22.0163130	total: 420ms	remaining: 125ms
77:	learn: 21.9691306	total: 425ms	remaining: 120ms
78:	learn: 21.9004647	total: 430ms	remaining: 114ms
79:	learn: 21.7931869	total: 435ms	remaining: 109ms
80:	learn: 21.6747916	total: 440ms	remaining: 103ms
81:	learn: 21.5187568	total: 445ms	remaining: 97.6ms
82:	learn: 21.3124880	total: 450ms	remaining: 92.1ms
83:	learn: 21.1979524	total: 455ms	remaining: 86.6ms
84:	learn: 21.1311130	total: 460ms	remaining: 81.1ms
85:	learn: 21.0606062	total: 465ms	remaining: 75.6ms
86:	learn: 20.9900935	total: 474ms	remaining: 70.9ms
87:	learn: 20.8908054	total: 482ms	remaining: 65.8ms
88:	learn: 20.8088525	total: 491ms	remaining: 60.7ms
89:	learn: 20.7300955	total: 500ms	remaining: 55.5ms
90:	learn: 20.6130276	total: 506ms	remaining: 50ms
91:	learn: 20.5437508	total: 511ms	remaining: 44.4ms
92:	learn: 20.5029426	total: 517ms	remaining: 38.9ms
93:	learn: 20.4416708	total: 522ms	remaining: 33.4ms
94:	learn: 20.3917812	total: 528ms	remaining: 27.8ms
95:	learn: 20.3305024	total: 534ms	remaining: 22.3ms
96:	learn: 20.2375704	total: 541ms	remaining: 16.7ms
97:	learn: 20.1835197	total: 547ms	remaining: 11.2ms
98:	learn: 20.1246834	total: 553ms	remaining: 5.58ms
99:	learn: 20.0506334	total: 558ms	remaining: 0us
0:	learn: 46.7334648	total: 5.04ms	remaining: 500ms
1:	learn: 46.2069876	total: 9.81ms	remaining: 481ms
2:	learn: 45.3699967	total: 14.5ms	remaining: 467ms
3:	learn: 44.6866787	total: 19.3ms	remaining: 463ms
4:	learn: 43.8536031	total: 24ms	remaining: 455ms
5:	learn: 43.4716853	total: 28.7ms	remaining: 450ms
6:	learn: 42.9929637	total: 33.6ms	remaining: 446ms
7:	learn: 42.4952169	total: 38.7ms	remaining: 446ms
8:	learn: 41.7548337	total: 43.6ms	remaining: 441ms
9:	learn: 41.1054415	total: 48.5ms	remaining: 437ms
10:	learn: 40.4827492	total: 53.8ms	remaining: 435ms
11:	learn: 39.7605907	total: 58.7ms	remaining: 430ms
12:	learn: 39.2532558	total: 65.3ms	remaining: 437ms
13:	learn: 38.6572753	total: 73.7ms	remaining: 453ms
14:	learn: 38.2886959	total: 81.4ms	remaining: 461ms
15:	learn: 37.7816612	total: 87.9ms	remaining: 462ms
16:	learn: 37.1680589	total: 93.4ms	remaining: 456ms
17:	learn: 36.5753004	total: 99.1ms	remaining: 451ms
18:	learn: 36.2339458	total: 104ms	remaining: 443ms
19:	learn: 35.9159716	total: 109ms	remaining: 435ms
20:	learn: 35.4591743	total: 114ms	remaining: 427ms
21:	learn: 34.8726070	total: 118ms	remaining: 419ms
22:	learn: 34.3903591	total: 123ms	remaining: 413ms
23:	learn: 34.1236827	total: 128ms	remaining: 406ms
24:	learn: 33.8026540	total: 133ms	remaining: 398ms
25:	learn: 33.4594822	total: 138ms	remaining: 392ms
26:	learn: 33.1338910	total: 142ms	remaining: 385ms
27:	learn: 32.8527106	total: 147ms	remaining: 378ms
28:	learn: 32.4923829	total: 152ms	remaining: 372ms
29:	learn: 32.0560533	total: 157ms	remaining: 366ms
30:	learn: 31.6614408	total: 162ms	remaining: 360ms
31:	learn: 31.2796040	total: 166ms	remaining: 353ms
32:	learn: 30.8214741	total: 171ms	remaining: 347ms
33:	learn: 30.5908694	total: 175ms	remaining: 340ms
34:	learn: 30.3637356	total: 180ms	remaining: 334ms
35:	learn: 30.0446511	total: 184ms	remaining: 328ms
36:	learn: 29.8792549	total: 189ms	remaining: 322ms
37:	learn: 29.5488457	total: 194ms	remaining: 317ms
38:	learn: 29.2808568	total: 199ms	remaining: 311ms
39:	learn: 29.0603765	total: 204ms	remaining: 305ms
40:	learn: 28.8272425	total: 208ms	remaining: 299ms
41:	learn: 28.4753580	total: 213ms	remaining: 294ms
42:	learn: 28.2963614	total: 218ms	remaining: 289ms
43:	learn: 28.1054768	total: 223ms	remaining: 283ms
44:	learn: 27.9038093	total: 227ms	remaining: 278ms
45:	learn: 27.6305487	total: 232ms	remaining: 272ms
46:	learn: 27.4457907	total: 237ms	remaining: 267ms
47:	learn: 27.1855957	total: 242ms	remaining: 263ms
48:	learn: 26.9987934	total: 247ms	remaining: 258ms
49:	learn: 26.7881067	total: 252ms	remaining: 252ms
50:	learn: 26.6385231	total: 257ms	remaining: 247ms
51:	learn: 26.4661755	total: 263ms	remaining: 242ms
52:	learn: 26.3331868	total: 271ms	remaining: 240ms
53:	learn: 26.0353476	total: 281ms	remaining: 239ms
54:	learn: 25.8257147	total: 291ms	remaining: 238ms
55:	learn: 25.5924383	total: 300ms	remaining: 236ms
56:	learn: 25.4082209	total: 306ms	remaining: 231ms
57:	learn: 25.2350104	total: 313ms	remaining: 227ms
58:	learn: 25.1789867	total: 319ms	remaining: 222ms
59:	learn: 24.9111359	total: 325ms	remaining: 217ms
60:	learn: 24.6314503	total: 331ms	remaining: 212ms
61:	learn: 24.4297999	total: 337ms	remaining: 207ms
62:	learn: 24.3126171	total: 346ms	remaining: 203ms
63:	learn: 24.1544005	total: 351ms	remaining: 198ms
64:	learn: 24.0197950	total: 357ms	remaining: 192ms
65:	learn: 23.8483087	total: 363ms	remaining: 187ms
66:	learn: 23.6624915	total: 370ms	remaining: 182ms
67:	learn: 23.5068105	total: 375ms	remaining: 176ms
68:	learn: 23.4266187	total: 380ms	remaining: 171ms
69:	learn: 23.3535388	total: 385ms	remaining: 165ms
70:	learn: 23.2477190	total: 391ms	remaining: 160ms
71:	learn: 23.1877634	total: 396ms	remaining: 154ms
72:	learn: 23.1344720	total: 401ms	remaining: 148ms
73:	learn: 22.9498234	total: 406ms	remaining: 143ms
74:	learn: 22.9068295	total: 412ms	remaining: 137ms
75:	learn: 22.7368434	total: 417ms	remaining: 132ms
76:	learn: 22.6084901	total: 423ms	remaining: 126ms
77:	learn: 22.4690295	total: 428ms	remaining: 121ms
78:	learn: 22.3970100	total: 434ms	remaining: 115ms
79:	learn: 22.3025537	total: 439ms	remaining: 110ms
80:	learn: 22.2089293	total: 445ms	remaining: 104ms
81:	learn: 22.0522107	total: 450ms	remaining: 98.8ms
82:	learn: 21.9368213	total: 455ms	remaining: 93.2ms
83:	learn: 21.7968322	total: 460ms	remaining: 87.7ms
84:	learn: 21.7416164	total: 466ms	remaining: 82.2ms
85:	learn: 21.6031099	total: 474ms	remaining: 77.1ms
86:	learn: 21.4530627	total: 485ms	remaining: 72.5ms
87:	learn: 21.3118417	total: 494ms	remaining: 67.3ms
88:	learn: 21.2760431	total: 500ms	remaining: 61.8ms
89:	learn: 21.2071350	total: 506ms	remaining: 56.3ms
90:	learn: 21.1051001	total: 512ms	remaining: 50.6ms
91:	learn: 21.0246142	total: 517ms	remaining: 44.9ms
92:	learn: 20.9834999	total: 522ms	remaining: 39.3ms
93:	learn: 20.8989393	total: 527ms	remaining: 33.6ms
94:	learn: 20.8262231	total: 531ms	remaining: 28ms
95:	learn: 20.7369110	total: 536ms	remaining: 22.3ms
96:	learn: 20.6409587	total: 541ms	remaining: 16.7ms
97:	learn: 20.5553641	total: 545ms	remaining: 11.1ms
98:	learn: 20.4317232	total: 550ms	remaining: 5.55ms
99:	learn: 20.3708681	total: 555ms	remaining: 0us
0:	learn: 27.6165091	total: 5.01ms	remaining: 496ms
1:	learn: 27.2156009	total: 9.68ms	remaining: 475ms
2:	learn: 26.8744169	total: 14.5ms	remaining: 470ms
3:	learn: 26.5530473	total: 19.2ms	remaining: 462ms
4:	learn: 26.1200739	total: 24.2ms	remaining: 460ms
5:	learn: 25.7559063	total: 29.1ms	remaining: 456ms
6:	learn: 25.3817459	total: 34.3ms	remaining: 456ms
7:	learn: 25.0780231	total: 39.3ms	remaining: 452ms
8:	learn: 24.7908836	total: 44.2ms	remaining: 447ms
9:	learn: 24.5023726	total: 49.1ms	remaining: 442ms
10:	learn: 24.2430447	total: 54.4ms	remaining: 440ms
11:	learn: 24.0150987	total: 59.5ms	remaining: 436ms
12:	learn: 23.6832732	total: 64.8ms	remaining: 434ms
13:	learn: 23.4512462	total: 69.9ms	remaining: 430ms
14:	learn: 23.2300808	total: 75.1ms	remaining: 426ms
15:	learn: 23.0198192	total: 82ms	remaining: 430ms
16:	learn: 22.7757356	total: 90.7ms	remaining: 443ms
17:	learn: 22.4962727	total: 103ms	remaining: 469ms
18:	learn: 22.2131794	total: 112ms	remaining: 478ms
19:	learn: 21.9844087	total: 118ms	remaining: 473ms
20:	learn: 21.6467820	total: 124ms	remaining: 467ms
21:	learn: 21.4458045	total: 130ms	remaining: 460ms
22:	learn: 21.2706627	total: 136ms	remaining: 454ms
23:	learn: 21.0770166	total: 142ms	remaining: 448ms
24:	learn: 20.8871491	total: 148ms	remaining: 443ms
25:	learn: 20.7151270	total: 154ms	remaining: 437ms
26:	learn: 20.5585218	total: 160ms	remaining: 432ms
27:	learn: 20.4091128	total: 165ms	remaining: 424ms
28:	learn: 20.2343121	total: 171ms	remaining: 418ms
29:	learn: 20.0685862	total: 177ms	remaining: 413ms
30:	learn: 19.8339661	total: 182ms	remaining: 406ms
31:	learn: 19.6811138	total: 188ms	remaining: 399ms
32:	learn: 19.4881999	total: 192ms	remaining: 391ms
33:	learn: 19.3473429	total: 197ms	remaining: 383ms
34:	learn: 19.1087185	total: 202ms	remaining: 375ms
35:	learn: 18.9817724	total: 207ms	remaining: 368ms
36:	learn: 18.8465124	total: 212ms	remaining: 361ms
37:	learn: 18.6998182	total: 217ms	remaining: 354ms
38:	learn: 18.5534881	total: 222ms	remaining: 347ms
39:	learn: 18.4221213	total: 227ms	remaining: 340ms
40:	learn: 18.3262428	total: 231ms	remaining: 333ms
41:	learn: 18.2018519	total: 236ms	remaining: 326ms
42:	learn: 18.0704402	total: 241ms	remaining: 320ms
43:	learn: 17.9674737	total: 246ms	remaining: 313ms
44:	learn: 17.8092746	total: 252ms	remaining: 308ms
45:	learn: 17.7036671	total: 258ms	remaining: 303ms
46:	learn: 17.5636023	total: 265ms	remaining: 299ms
47:	learn: 17.3922671	total: 273ms	remaining: 296ms
48:	learn: 17.2777727	total: 280ms	remaining: 292ms
49:	learn: 17.1901866	total: 286ms	remaining: 286ms
50:	learn: 17.0799264	total: 292ms	remaining: 280ms
51:	learn: 17.0022808	total: 299ms	remaining: 276ms
52:	learn: 16.9193737	total: 304ms	remaining: 269ms
53:	learn: 16.8349324	total: 309ms	remaining: 263ms
54:	learn: 16.7122802	total: 315ms	remaining: 258ms
55:	learn: 16.5736462	total: 320ms	remaining: 252ms
56:	learn: 16.4576798	total: 326ms	remaining: 246ms
57:	learn: 16.3336075	total: 331ms	remaining: 240ms
58:	learn: 16.2578113	total: 336ms	remaining: 234ms
59:	learn: 16.1586938	total: 342ms	remaining: 228ms
60:	learn: 16.0827831	total: 347ms	remaining: 222ms
61:	learn: 16.0030150	total: 351ms	remaining: 215ms
62:	learn: 15.8741662	total: 356ms	remaining: 209ms
63:	learn: 15.7533897	total: 361ms	remaining: 203ms
64:	learn: 15.6743804	total: 366ms	remaining: 197ms
65:	learn: 15.6291324	total: 371ms	remaining: 191ms
66:	learn: 15.5363523	total: 376ms	remaining: 185ms
67:	learn: 15.4675550	total: 380ms	remaining: 179ms
68:	learn: 15.3959873	total: 385ms	remaining: 173ms
69:	learn: 15.3222045	total: 390ms	remaining: 167ms
70:	learn: 15.2343883	total: 395ms	remaining: 161ms
71:	learn: 15.1891070	total: 400ms	remaining: 155ms
72:	learn: 15.1320798	total: 404ms	remaining: 150ms
73:	learn: 15.0590468	total: 409ms	remaining: 144ms
74:	learn: 14.9682726	total: 414ms	remaining: 138ms
75:	learn: 14.8868528	total: 418ms	remaining: 132ms
76:	learn: 14.8046328	total: 423ms	remaining: 126ms
77:	learn: 14.7253152	total: 428ms	remaining: 121ms
78:	learn: 14.6438207	total: 433ms	remaining: 115ms
79:	learn: 14.5350651	total: 438ms	remaining: 109ms
80:	learn: 14.4301800	total: 443ms	remaining: 104ms
81:	learn: 14.3716251	total: 448ms	remaining: 98.3ms
82:	learn: 14.3127586	total: 453ms	remaining: 92.8ms
83:	learn: 14.2685086	total: 458ms	remaining: 87.3ms
84:	learn: 14.1936111	total: 463ms	remaining: 81.8ms
85:	learn: 14.1488261	total: 469ms	remaining: 76.3ms
86:	learn: 14.0654602	total: 474ms	remaining: 70.8ms
87:	learn: 14.0026195	total: 483ms	remaining: 65.8ms
88:	learn: 13.9498697	total: 491ms	remaining: 60.7ms
89:	learn: 13.9002477	total: 502ms	remaining: 55.7ms
90:	learn: 13.8429017	total: 510ms	remaining: 50.5ms
91:	learn: 13.7892130	total: 516ms	remaining: 44.9ms
92:	learn: 13.7122418	total: 522ms	remaining: 39.3ms
93:	learn: 13.6752324	total: 527ms	remaining: 33.6ms
94:	learn: 13.6186680	total: 533ms	remaining: 28.1ms
95:	learn: 13.5578384	total: 539ms	remaining: 22.5ms
96:	learn: 13.5028120	total: 545ms	remaining: 16.9ms
97:	learn: 13.4306895	total: 552ms	remaining: 11.3ms
98:	learn: 13.3955813	total: 557ms	remaining: 5.63ms
99:	learn: 13.3380095	total: 563ms	remaining: 0us
0:	learn: 42.9675374	total: 5.62ms	remaining: 556ms
1:	learn: 42.2542078	total: 10.6ms	remaining: 522ms
2:	learn: 41.5532166	total: 15.8ms	remaining: 511ms
3:	learn: 40.7812113	total: 20.9ms	remaining: 502ms
4:	learn: 39.8819601	total: 26.1ms	remaining: 497ms
5:	learn: 39.0997229	total: 28ms	remaining: 438ms
6:	learn: 38.2185623	total: 32.8ms	remaining: 436ms
7:	learn: 37.5465645	total: 38ms	remaining: 437ms
8:	learn: 36.8449555	total: 43ms	remaining: 435ms
9:	learn: 36.0912815	total: 48.1ms	remaining: 433ms
10:	learn: 35.5776470	total: 53.4ms	remaining: 432ms
11:	learn: 34.7845329	total: 58.4ms	remaining: 428ms
12:	learn: 34.1574031	total: 64ms	remaining: 428ms
13:	learn: 33.4950652	total: 72.4ms	remaining: 444ms
14:	learn: 32.9343881	total: 81.3ms	remaining: 461ms
15:	learn: 32.4356238	total: 88.8ms	remaining: 466ms
16:	learn: 31.8370592	total: 94.3ms	remaining: 460ms
17:	learn: 31.2122644	total: 101ms	remaining: 460ms
18:	learn: 30.7195190	total: 106ms	remaining: 451ms
19:	learn: 30.1548478	total: 111ms	remaining: 443ms
20:	learn: 29.6521001	total: 114ms	remaining: 428ms
21:	learn: 29.1746988	total: 118ms	remaining: 420ms
22:	learn: 28.6492690	total: 123ms	remaining: 412ms
23:	learn: 28.1958339	total: 128ms	remaining: 405ms
24:	learn: 27.9126674	total: 133ms	remaining: 398ms
25:	learn: 27.5059508	total: 137ms	remaining: 391ms
26:	learn: 27.0869176	total: 142ms	remaining: 385ms
27:	learn: 26.6545277	total: 147ms	remaining: 379ms
28:	learn: 26.2388575	total: 152ms	remaining: 373ms
29:	learn: 25.8957708	total: 157ms	remaining: 367ms
30:	learn: 25.5045901	total: 162ms	remaining: 360ms
31:	learn: 25.2559530	total: 167ms	remaining: 354ms
32:	learn: 24.9012566	total: 172ms	remaining: 348ms
33:	learn: 24.5601820	total: 176ms	remaining: 343ms
34:	learn: 24.2407285	total: 181ms	remaining: 337ms
35:	learn: 23.9481769	total: 186ms	remaining: 331ms
36:	learn: 23.6746994	total: 191ms	remaining: 325ms
37:	learn: 23.4470352	total: 196ms	remaining: 319ms
38:	learn: 23.1678305	total: 201ms	remaining: 314ms
39:	learn: 22.9660692	total: 205ms	remaining: 308ms
40:	learn: 22.7102548	total: 210ms	remaining: 302ms
41:	learn: 22.5152447	total: 215ms	remaining: 297ms
42:	learn: 22.2967100	total: 220ms	remaining: 291ms
43:	learn: 22.0869517	total: 224ms	remaining: 286ms
44:	learn: 21.8556497	total: 229ms	remaining: 280ms
45:	learn: 21.7036804	total: 234ms	remaining: 275ms
46:	learn: 21.4792011	total: 239ms	remaining: 270ms
47:	learn: 21.2830384	total: 244ms	remaining: 264ms
48:	learn: 21.0771837	total: 249ms	remaining: 259ms
49:	learn: 20.8824468	total: 254ms	remaining: 254ms
50:	learn: 20.7250875	total: 259ms	remaining: 249ms
51:	learn: 20.5564423	total: 264ms	remaining: 244ms
52:	learn: 20.4067403	total: 270ms	remaining: 239ms
53:	learn: 20.2674808	total: 275ms	remaining: 234ms
54:	learn: 20.1394249	total: 286ms	remaining: 234ms
55:	learn: 19.9748016	total: 300ms	remaining: 235ms
56:	learn: 19.8159522	total: 309ms	remaining: 233ms
57:	learn: 19.6811073	total: 315ms	remaining: 228ms
58:	learn: 19.5083232	total: 321ms	remaining: 223ms
59:	learn: 19.3949390	total: 324ms	remaining: 216ms
60:	learn: 19.2485728	total: 330ms	remaining: 211ms
61:	learn: 19.1255523	total: 336ms	remaining: 206ms
62:	learn: 18.9423320	total: 342ms	remaining: 201ms
63:	learn: 18.7794545	total: 348ms	remaining: 195ms
64:	learn: 18.6339033	total: 353ms	remaining: 190ms
65:	learn: 18.5188724	total: 359ms	remaining: 185ms
66:	learn: 18.3398412	total: 364ms	remaining: 179ms
67:	learn: 18.2873427	total: 370ms	remaining: 174ms
68:	learn: 18.1287092	total: 376ms	remaining: 169ms
69:	learn: 18.0163474	total: 381ms	remaining: 163ms
70:	learn: 17.9428395	total: 385ms	remaining: 157ms
71:	learn: 17.7906087	total: 390ms	remaining: 152ms
72:	learn: 17.6121088	total: 395ms	remaining: 146ms
73:	learn: 17.5136572	total: 400ms	remaining: 141ms
74:	learn: 17.3837993	total: 405ms	remaining: 135ms
75:	learn: 17.3015647	total: 410ms	remaining: 129ms
76:	learn: 17.1991252	total: 415ms	remaining: 124ms
77:	learn: 17.0854777	total: 420ms	remaining: 118ms
78:	learn: 17.0308269	total: 424ms	remaining: 113ms
79:	learn: 16.9754807	total: 429ms	remaining: 107ms
80:	learn: 16.9174907	total: 434ms	remaining: 102ms
81:	learn: 16.7962603	total: 439ms	remaining: 96.3ms
82:	learn: 16.6685446	total: 444ms	remaining: 90.9ms
83:	learn: 16.5812672	total: 449ms	remaining: 85.5ms
84:	learn: 16.4896026	total: 454ms	remaining: 80.1ms
85:	learn: 16.4023414	total: 459ms	remaining: 74.7ms
86:	learn: 16.3093718	total: 464ms	remaining: 69.4ms
87:	learn: 16.2409040	total: 469ms	remaining: 64ms
88:	learn: 16.1616213	total: 475ms	remaining: 58.7ms
89:	learn: 16.0825203	total: 484ms	remaining: 53.8ms
90:	learn: 16.0204931	total: 492ms	remaining: 48.7ms
91:	learn: 15.9741267	total: 500ms	remaining: 43.5ms
92:	learn: 15.9413725	total: 506ms	remaining: 38.1ms
93:	learn: 15.8762295	total: 512ms	remaining: 32.7ms
94:	learn: 15.8165812	total: 517ms	remaining: 27.2ms
95:	learn: 15.7244343	total: 522ms	remaining: 21.7ms
96:	learn: 15.6537033	total: 527ms	remaining: 16.3ms
97:	learn: 15.6052320	total: 532ms	remaining: 10.8ms
98:	learn: 15.5434930	total: 536ms	remaining: 5.42ms
99:	learn: 15.4452106	total: 542ms	remaining: 0us
0:	learn: 46.5387280	total: 5.11ms	remaining: 505ms
1:	learn: 45.8605074	total: 9.79ms	remaining: 479ms
2:	learn: 45.2237152	total: 14.6ms	remaining: 473ms
3:	learn: 44.4158454	total: 19.8ms	remaining: 476ms
4:	learn: 43.7177384	total: 24.5ms	remaining: 465ms
5:	learn: 42.9896372	total: 29.5ms	remaining: 462ms
6:	learn: 42.3639431	total: 34.3ms	remaining: 456ms
7:	learn: 41.6648406	total: 39ms	remaining: 449ms
8:	learn: 41.0681442	total: 43.9ms	remaining: 444ms
9:	learn: 40.4478745	total: 49.2ms	remaining: 443ms
10:	learn: 40.0398470	total: 54.1ms	remaining: 438ms
11:	learn: 39.3300888	total: 59.2ms	remaining: 434ms
12:	learn: 38.9198991	total: 64.4ms	remaining: 431ms
13:	learn: 38.4022666	total: 69.7ms	remaining: 428ms
14:	learn: 37.9124629	total: 74.7ms	remaining: 423ms
15:	learn: 37.3846174	total: 79.9ms	remaining: 419ms
16:	learn: 36.8502348	total: 84.8ms	remaining: 414ms
17:	learn: 36.5079755	total: 90.6ms	remaining: 413ms
18:	learn: 36.1239339	total: 101ms	remaining: 432ms
19:	learn: 35.8388688	total: 114ms	remaining: 455ms
20:	learn: 35.4915710	total: 124ms	remaining: 468ms
21:	learn: 34.9483623	total: 131ms	remaining: 463ms
22:	learn: 34.6033866	total: 136ms	remaining: 457ms
23:	learn: 34.1483341	total: 143ms	remaining: 453ms
24:	learn: 33.7626484	total: 149ms	remaining: 446ms
25:	learn: 33.4160820	total: 154ms	remaining: 439ms
26:	learn: 33.0421483	total: 160ms	remaining: 433ms
27:	learn: 32.6573469	total: 166ms	remaining: 426ms
28:	learn: 32.2672417	total: 171ms	remaining: 420ms
29:	learn: 31.8257441	total: 177ms	remaining: 412ms
30:	learn: 31.3394923	total: 183ms	remaining: 407ms
31:	learn: 30.9472894	total: 189ms	remaining: 401ms
32:	learn: 30.6961423	total: 194ms	remaining: 394ms
33:	learn: 30.4670615	total: 199ms	remaining: 386ms
34:	learn: 30.1495001	total: 204ms	remaining: 378ms
35:	learn: 29.8071763	total: 208ms	remaining: 370ms
36:	learn: 29.5255984	total: 213ms	remaining: 363ms
37:	learn: 29.2236758	total: 218ms	remaining: 356ms
38:	learn: 28.9199699	total: 223ms	remaining: 348ms
39:	learn: 28.7003989	total: 228ms	remaining: 342ms
40:	learn: 28.4681160	total: 233ms	remaining: 335ms
41:	learn: 28.2692668	total: 238ms	remaining: 328ms
42:	learn: 27.9327254	total: 242ms	remaining: 321ms
43:	learn: 27.7193597	total: 247ms	remaining: 315ms
44:	learn: 27.4061006	total: 252ms	remaining: 308ms
45:	learn: 27.1840910	total: 257ms	remaining: 301ms
46:	learn: 26.8943816	total: 262ms	remaining: 296ms
47:	learn: 26.6576617	total: 267ms	remaining: 290ms
48:	learn: 26.3230094	total: 272ms	remaining: 284ms
49:	learn: 26.0488483	total: 278ms	remaining: 278ms
50:	learn: 25.7795537	total: 283ms	remaining: 272ms
51:	learn: 25.6103781	total: 288ms	remaining: 266ms
52:	learn: 25.4107383	total: 293ms	remaining: 260ms
53:	learn: 25.1757211	total: 298ms	remaining: 254ms
54:	learn: 24.8949842	total: 303ms	remaining: 248ms
55:	learn: 24.7028694	total: 313ms	remaining: 246ms
56:	learn: 24.4033555	total: 321ms	remaining: 242ms
57:	learn: 24.2109268	total: 336ms	remaining: 243ms
58:	learn: 24.0697623	total: 341ms	remaining: 237ms
59:	learn: 23.8291672	total: 345ms	remaining: 230ms
60:	learn: 23.5972471	total: 350ms	remaining: 224ms
61:	learn: 23.4241182	total: 355ms	remaining: 218ms
62:	learn: 23.2617022	total: 360ms	remaining: 211ms
63:	learn: 23.0329448	total: 364ms	remaining: 205ms
64:	learn: 22.9108081	total: 369ms	remaining: 199ms
65:	learn: 22.8001962	total: 374ms	remaining: 193ms
66:	learn: 22.6861907	total: 379ms	remaining: 187ms
67:	learn: 22.5152895	total: 384ms	remaining: 181ms
68:	learn: 22.3734214	total: 389ms	remaining: 175ms
69:	learn: 22.1840754	total: 393ms	remaining: 169ms
70:	learn: 22.0732908	total: 398ms	remaining: 163ms
71:	learn: 21.8880456	total: 403ms	remaining: 157ms
72:	learn: 21.7838784	total: 407ms	remaining: 151ms
73:	learn: 21.5532885	total: 412ms	remaining: 145ms
74:	learn: 21.3998735	total: 417ms	remaining: 139ms
75:	learn: 21.2699824	total: 422ms	remaining: 133ms
76:	learn: 21.1077652	total: 426ms	remaining: 127ms
77:	learn: 20.9759102	total: 431ms	remaining: 122ms
78:	learn: 20.7531342	total: 436ms	remaining: 116ms
79:	learn: 20.6729631	total: 441ms	remaining: 110ms
80:	learn: 20.4903474	total: 446ms	remaining: 105ms
81:	learn: 20.3708622	total: 451ms	remaining: 99.1ms
82:	learn: 20.2627857	total: 456ms	remaining: 93.4ms
83:	learn: 20.1335464	total: 461ms	remaining: 87.8ms
84:	learn: 20.0100864	total: 466ms	remaining: 82.2ms
85:	learn: 19.9374357	total: 471ms	remaining: 76.6ms
86:	learn: 19.8383097	total: 476ms	remaining: 71.1ms
87:	learn: 19.7804443	total: 481ms	remaining: 65.6ms
88:	learn: 19.7225631	total: 486ms	remaining: 60ms
89:	learn: 19.5851849	total: 491ms	remaining: 54.5ms
90:	learn: 19.5115923	total: 496ms	remaining: 49ms
91:	learn: 19.3986485	total: 501ms	remaining: 43.6ms
92:	learn: 19.2465728	total: 507ms	remaining: 38.1ms
93:	learn: 19.2033796	total: 519ms	remaining: 33.1ms
94:	learn: 19.1234096	total: 530ms	remaining: 27.9ms
95:	learn: 19.0080161	total: 538ms	remaining: 22.4ms
96:	learn: 18.9048698	total: 544ms	remaining: 16.8ms
97:	learn: 18.7901500	total: 550ms	remaining: 11.2ms
98:	learn: 18.6759882	total: 556ms	remaining: 5.61ms
99:	learn: 18.6254590	total: 562ms	remaining: 0us
0:	learn: 46.0359105	total: 5.27ms	remaining: 522ms
1:	learn: 45.4503059	total: 10.1ms	remaining: 497ms
2:	learn: 44.6478680	total: 14.9ms	remaining: 481ms
3:	learn: 43.7932387	total: 19.5ms	remaining: 468ms
4:	learn: 43.2236036	total: 24.2ms	remaining: 460ms
5:	learn: 42.4339181	total: 28.9ms	remaining: 453ms
6:	learn: 41.8906461	total: 33.6ms	remaining: 447ms
7:	learn: 41.2248707	total: 38.3ms	remaining: 440ms
8:	learn: 40.5934570	total: 43.2ms	remaining: 437ms
9:	learn: 39.9204661	total: 48ms	remaining: 432ms
10:	learn: 39.3972458	total: 53.2ms	remaining: 431ms
11:	learn: 38.9220493	total: 57.9ms	remaining: 425ms
12:	learn: 38.2358406	total: 62.9ms	remaining: 421ms
13:	learn: 37.7089336	total: 67.7ms	remaining: 416ms
14:	learn: 37.3714255	total: 72.2ms	remaining: 409ms
15:	learn: 36.8098537	total: 77.1ms	remaining: 405ms
16:	learn: 36.2818695	total: 81.9ms	remaining: 400ms
17:	learn: 35.8807734	total: 87ms	remaining: 396ms
18:	learn: 35.3850720	total: 91.9ms	remaining: 392ms
19:	learn: 35.0622365	total: 97.1ms	remaining: 388ms
20:	learn: 34.7088655	total: 102ms	remaining: 384ms
21:	learn: 34.2869861	total: 107ms	remaining: 379ms
22:	learn: 33.9798756	total: 113ms	remaining: 378ms
23:	learn: 33.6933850	total: 123ms	remaining: 388ms
24:	learn: 33.3542725	total: 133ms	remaining: 399ms
25:	learn: 33.1531104	total: 139ms	remaining: 394ms
26:	learn: 32.7581499	total: 145ms	remaining: 393ms
27:	learn: 32.4953289	total: 150ms	remaining: 387ms
28:	learn: 32.1636511	total: 155ms	remaining: 380ms
29:	learn: 31.7179908	total: 160ms	remaining: 374ms
30:	learn: 31.2828971	total: 165ms	remaining: 368ms
31:	learn: 30.8954632	total: 170ms	remaining: 362ms
32:	learn: 30.6156466	total: 175ms	remaining: 355ms
33:	learn: 30.4325331	total: 180ms	remaining: 349ms
34:	learn: 30.1680270	total: 185ms	remaining: 343ms
35:	learn: 29.8372162	total: 189ms	remaining: 336ms
36:	learn: 29.5018241	total: 194ms	remaining: 330ms
37:	learn: 29.2660228	total: 198ms	remaining: 324ms
38:	learn: 28.9172883	total: 203ms	remaining: 318ms
39:	learn: 28.7004790	total: 208ms	remaining: 312ms
40:	learn: 28.5188438	total: 213ms	remaining: 306ms
41:	learn: 28.3064887	total: 218ms	remaining: 301ms
42:	learn: 27.9584462	total: 223ms	remaining: 295ms
43:	learn: 27.6654603	total: 227ms	remaining: 289ms
44:	learn: 27.3698139	total: 232ms	remaining: 283ms
45:	learn: 27.1825629	total: 237ms	remaining: 278ms
46:	learn: 26.9938719	total: 241ms	remaining: 272ms
47:	learn: 26.7385850	total: 246ms	remaining: 266ms
48:	learn: 26.5055251	total: 251ms	remaining: 261ms
49:	learn: 26.3264840	total: 256ms	remaining: 256ms
50:	learn: 26.1314307	total: 261ms	remaining: 251ms
51:	learn: 25.9514770	total: 266ms	remaining: 246ms
52:	learn: 25.7272663	total: 272ms	remaining: 241ms
53:	learn: 25.4554234	total: 276ms	remaining: 235ms
54:	learn: 25.2133674	total: 281ms	remaining: 230ms
55:	learn: 24.9612149	total: 286ms	remaining: 225ms
56:	learn: 24.6788780	total: 293ms	remaining: 221ms
57:	learn: 24.4504703	total: 300ms	remaining: 217ms
58:	learn: 24.3261542	total: 307ms	remaining: 213ms
59:	learn: 24.1217621	total: 314ms	remaining: 209ms
60:	learn: 23.9495725	total: 319ms	remaining: 204ms
61:	learn: 23.7848565	total: 325ms	remaining: 199ms
62:	learn: 23.6627081	total: 332ms	remaining: 195ms
63:	learn: 23.4390407	total: 338ms	remaining: 190ms
64:	learn: 23.2556312	total: 344ms	remaining: 185ms
65:	learn: 23.1796337	total: 349ms	remaining: 180ms
66:	learn: 23.0431987	total: 355ms	remaining: 175ms
67:	learn: 22.9300366	total: 361ms	remaining: 170ms
68:	learn: 22.8321895	total: 367ms	remaining: 165ms
69:	learn: 22.7825840	total: 373ms	remaining: 160ms
70:	learn: 22.6907764	total: 378ms	remaining: 154ms
71:	learn: 22.5080460	total: 384ms	remaining: 149ms
72:	learn: 22.4053282	total: 390ms	remaining: 144ms
73:	learn: 22.2698085	total: 395ms	remaining: 139ms
74:	learn: 22.0951825	total: 401ms	remaining: 134ms
75:	learn: 21.9933994	total: 406ms	remaining: 128ms
76:	learn: 21.8043413	total: 412ms	remaining: 123ms
77:	learn: 21.7259032	total: 418ms	remaining: 118ms
78:	learn: 21.5625358	total: 423ms	remaining: 113ms
79:	learn: 21.4316837	total: 428ms	remaining: 107ms
80:	learn: 21.2270985	total: 433ms	remaining: 102ms
81:	learn: 21.1248573	total: 438ms	remaining: 96.1ms
82:	learn: 21.0879584	total: 443ms	remaining: 90.7ms
83:	learn: 20.9810177	total: 448ms	remaining: 85.4ms
84:	learn: 20.8986744	total: 453ms	remaining: 79.9ms
85:	learn: 20.8427245	total: 458ms	remaining: 74.5ms
86:	learn: 20.7158681	total: 463ms	remaining: 69.2ms
87:	learn: 20.6055502	total: 469ms	remaining: 64ms
88:	learn: 20.5302059	total: 474ms	remaining: 58.6ms
89:	learn: 20.3936827	total: 480ms	remaining: 53.3ms
90:	learn: 20.2756993	total: 485ms	remaining: 48ms
91:	learn: 20.1882826	total: 491ms	remaining: 42.7ms
92:	learn: 20.0346875	total: 496ms	remaining: 37.3ms
93:	learn: 19.9798652	total: 501ms	remaining: 32ms
94:	learn: 19.9020384	total: 506ms	remaining: 26.6ms
95:	learn: 19.8463755	total: 511ms	remaining: 21.3ms
96:	learn: 19.7426458	total: 520ms	remaining: 16.1ms
97:	learn: 19.6728655	total: 528ms	remaining: 10.8ms
98:	learn: 19.6355104	total: 535ms	remaining: 5.41ms
99:	learn: 19.6074086	total: 542ms	remaining: 0us
0:	learn: 46.7817285	total: 5.12ms	remaining: 507ms
1:	learn: 45.9551634	total: 9.7ms	remaining: 475ms
2:	learn: 45.0274369	total: 14.4ms	remaining: 467ms
3:	learn: 44.5000950	total: 19.4ms	remaining: 465ms
4:	learn: 43.8963632	total: 23.9ms	remaining: 454ms
5:	learn: 43.2314124	total: 28.7ms	remaining: 450ms
6:	learn: 42.5780140	total: 33.6ms	remaining: 446ms
7:	learn: 41.9033077	total: 38.2ms	remaining: 440ms
8:	learn: 41.3161907	total: 43ms	remaining: 435ms
9:	learn: 40.7747000	total: 47.7ms	remaining: 430ms
10:	learn: 40.2728122	total: 52.5ms	remaining: 425ms
11:	learn: 39.7786608	total: 57.3ms	remaining: 420ms
12:	learn: 39.0812090	total: 62.1ms	remaining: 416ms
13:	learn: 38.6205762	total: 66.9ms	remaining: 411ms
14:	learn: 38.2894236	total: 71.5ms	remaining: 405ms
15:	learn: 37.6906364	total: 76.1ms	remaining: 400ms
16:	learn: 37.3014849	total: 80.7ms	remaining: 394ms
17:	learn: 36.9268494	total: 85.4ms	remaining: 389ms
18:	learn: 36.6348717	total: 90.2ms	remaining: 384ms
19:	learn: 36.1567831	total: 95.1ms	remaining: 380ms
20:	learn: 35.8080754	total: 99.8ms	remaining: 375ms
21:	learn: 35.4288913	total: 105ms	remaining: 373ms
22:	learn: 35.0910168	total: 110ms	remaining: 368ms
23:	learn: 34.7483277	total: 115ms	remaining: 364ms
24:	learn: 34.5077203	total: 120ms	remaining: 360ms
25:	learn: 34.1830247	total: 125ms	remaining: 356ms
26:	learn: 33.7943837	total: 130ms	remaining: 352ms
27:	learn: 33.3736582	total: 135ms	remaining: 348ms
28:	learn: 32.9133996	total: 141ms	remaining: 345ms
29:	learn: 32.4361653	total: 150ms	remaining: 349ms
30:	learn: 31.9630085	total: 162ms	remaining: 361ms
31:	learn: 31.5994894	total: 169ms	remaining: 359ms
32:	learn: 31.3120059	total: 177ms	remaining: 359ms
33:	learn: 31.0991187	total: 182ms	remaining: 354ms
34:	learn: 30.8055118	total: 188ms	remaining: 349ms
35:	learn: 30.5197359	total: 194ms	remaining: 345ms
36:	learn: 30.1975315	total: 200ms	remaining: 340ms
37:	learn: 29.9797615	total: 206ms	remaining: 335ms
38:	learn: 29.6874864	total: 212ms	remaining: 331ms
39:	learn: 29.4139907	total: 217ms	remaining: 326ms
40:	learn: 29.0472151	total: 223ms	remaining: 320ms
41:	learn: 28.8356285	total: 228ms	remaining: 315ms
42:	learn: 28.5099349	total: 234ms	remaining: 310ms
43:	learn: 28.2009716	total: 240ms	remaining: 305ms
44:	learn: 27.8947534	total: 245ms	remaining: 299ms
45:	learn: 27.6149698	total: 250ms	remaining: 293ms
46:	learn: 27.4780860	total: 254ms	remaining: 287ms
47:	learn: 27.2859119	total: 259ms	remaining: 281ms
48:	learn: 27.0572191	total: 264ms	remaining: 275ms
49:	learn: 26.8916263	total: 269ms	remaining: 269ms
50:	learn: 26.6791967	total: 274ms	remaining: 263ms
51:	learn: 26.4917307	total: 279ms	remaining: 257ms
52:	learn: 26.2957036	total: 283ms	remaining: 251ms
53:	learn: 26.1116543	total: 288ms	remaining: 245ms
54:	learn: 25.8593319	total: 293ms	remaining: 240ms
55:	learn: 25.6957296	total: 298ms	remaining: 234ms
56:	learn: 25.5065213	total: 302ms	remaining: 228ms
57:	learn: 25.3525337	total: 307ms	remaining: 222ms
58:	learn: 25.2197494	total: 313ms	remaining: 217ms
59:	learn: 25.0583799	total: 318ms	remaining: 212ms
60:	learn: 24.8432659	total: 323ms	remaining: 206ms
61:	learn: 24.6585337	total: 328ms	remaining: 201ms
62:	learn: 24.5382571	total: 333ms	remaining: 196ms
63:	learn: 24.3596337	total: 338ms	remaining: 190ms
64:	learn: 24.2009033	total: 347ms	remaining: 187ms
65:	learn: 24.0964080	total: 355ms	remaining: 183ms
66:	learn: 23.9765920	total: 363ms	remaining: 179ms
67:	learn: 23.8638384	total: 368ms	remaining: 173ms
68:	learn: 23.7381861	total: 374ms	remaining: 168ms
69:	learn: 23.5620129	total: 379ms	remaining: 162ms
70:	learn: 23.4494830	total: 384ms	remaining: 157ms
71:	learn: 23.3095806	total: 389ms	remaining: 151ms
72:	learn: 23.1441767	total: 394ms	remaining: 146ms
73:	learn: 22.9983446	total: 400ms	remaining: 141ms
74:	learn: 22.8464764	total: 405ms	remaining: 135ms
75:	learn: 22.7606423	total: 410ms	remaining: 129ms
76:	learn: 22.6095905	total: 414ms	remaining: 124ms
77:	learn: 22.4430506	total: 420ms	remaining: 118ms
78:	learn: 22.2925872	total: 425ms	remaining: 113ms
79:	learn: 22.1806286	total: 430ms	remaining: 107ms
80:	learn: 22.0070525	total: 435ms	remaining: 102ms
81:	learn: 21.9114201	total: 439ms	remaining: 96.5ms
82:	learn: 21.7742884	total: 444ms	remaining: 91ms
83:	learn: 21.6372857	total: 449ms	remaining: 85.5ms
84:	learn: 21.5380397	total: 454ms	remaining: 80.1ms
85:	learn: 21.4730146	total: 458ms	remaining: 74.6ms
86:	learn: 21.3236516	total: 463ms	remaining: 69.2ms
87:	learn: 21.2512101	total: 468ms	remaining: 63.8ms
88:	learn: 21.2192883	total: 473ms	remaining: 58.4ms
89:	learn: 21.0457926	total: 477ms	remaining: 53ms
90:	learn: 20.9986980	total: 482ms	remaining: 47.6ms
91:	learn: 20.9040032	total: 486ms	remaining: 42.3ms
92:	learn: 20.7178547	total: 491ms	remaining: 37ms
93:	learn: 20.6535030	total: 496ms	remaining: 31.7ms
94:	learn: 20.5641982	total: 501ms	remaining: 26.4ms
95:	learn: 20.5355409	total: 506ms	remaining: 21.1ms
96:	learn: 20.4496493	total: 511ms	remaining: 15.8ms
97:	learn: 20.3579862	total: 516ms	remaining: 10.5ms
98:	learn: 20.2442476	total: 521ms	remaining: 5.26ms
99:	learn: 20.1075813	total: 526ms	remaining: 0us
0:	learn: 27.6506730	total: 5.35ms	remaining: 530ms
1:	learn: 27.1638793	total: 10.4ms	remaining: 509ms
2:	learn: 26.8000665	total: 15.9ms	remaining: 514ms
3:	learn: 26.4256132	total: 20.9ms	remaining: 502ms
4:	learn: 26.0088351	total: 26.2ms	remaining: 498ms
5:	learn: 25.7558298	total: 31.4ms	remaining: 491ms
6:	learn: 25.3380711	total: 36.3ms	remaining: 482ms
7:	learn: 25.0571611	total: 41.1ms	remaining: 473ms
8:	learn: 24.6790148	total: 46.3ms	remaining: 468ms
9:	learn: 24.3600941	total: 52.1ms	remaining: 468ms
10:	learn: 24.1105667	total: 57ms	remaining: 461ms
11:	learn: 23.7736542	total: 61.6ms	remaining: 452ms
12:	learn: 23.5824429	total: 66.4ms	remaining: 445ms
13:	learn: 23.2658303	total: 71ms	remaining: 436ms
14:	learn: 23.0061886	total: 75.4ms	remaining: 427ms
15:	learn: 22.8060389	total: 80.2ms	remaining: 421ms
16:	learn: 22.5899735	total: 84.8ms	remaining: 414ms
17:	learn: 22.3625048	total: 89.2ms	remaining: 406ms
18:	learn: 22.0706477	total: 93.7ms	remaining: 399ms
19:	learn: 21.8739394	total: 98.4ms	remaining: 394ms
20:	learn: 21.6143650	total: 103ms	remaining: 386ms
21:	learn: 21.4571623	total: 107ms	remaining: 380ms
22:	learn: 21.2395769	total: 112ms	remaining: 373ms
23:	learn: 20.9801795	total: 116ms	remaining: 369ms
24:	learn: 20.8036808	total: 121ms	remaining: 363ms
25:	learn: 20.6387539	total: 126ms	remaining: 357ms
26:	learn: 20.4401427	total: 130ms	remaining: 351ms
27:	learn: 20.2879575	total: 135ms	remaining: 346ms
28:	learn: 20.0538664	total: 139ms	remaining: 341ms
29:	learn: 19.8363102	total: 144ms	remaining: 336ms
30:	learn: 19.7015446	total: 149ms	remaining: 332ms
31:	learn: 19.5483114	total: 154ms	remaining: 327ms
32:	learn: 19.4163053	total: 159ms	remaining: 322ms
33:	learn: 19.2880625	total: 180ms	remaining: 350ms
34:	learn: 19.1303389	total: 185ms	remaining: 344ms
35:	learn: 18.9237448	total: 191ms	remaining: 340ms
36:	learn: 18.8142925	total: 195ms	remaining: 333ms
37:	learn: 18.6994696	total: 200ms	remaining: 326ms
38:	learn: 18.5629211	total: 204ms	remaining: 319ms
39:	learn: 18.4600917	total: 209ms	remaining: 313ms
40:	learn: 18.3567139	total: 213ms	remaining: 307ms
41:	learn: 18.2120527	total: 218ms	remaining: 300ms
42:	learn: 18.0688062	total: 222ms	remaining: 295ms
43:	learn: 17.9250181	total: 227ms	remaining: 289ms
44:	learn: 17.8399138	total: 231ms	remaining: 283ms
45:	learn: 17.6720713	total: 236ms	remaining: 277ms
46:	learn: 17.5273091	total: 240ms	remaining: 271ms
47:	learn: 17.4232814	total: 244ms	remaining: 265ms
48:	learn: 17.2957579	total: 249ms	remaining: 259ms
49:	learn: 17.1892874	total: 253ms	remaining: 253ms
50:	learn: 17.0490355	total: 257ms	remaining: 247ms
51:	learn: 16.9666450	total: 261ms	remaining: 241ms
52:	learn: 16.8600056	total: 265ms	remaining: 235ms
53:	learn: 16.7542588	total: 270ms	remaining: 230ms
54:	learn: 16.6316077	total: 276ms	remaining: 226ms
55:	learn: 16.5588112	total: 280ms	remaining: 220ms
56:	learn: 16.5010186	total: 285ms	remaining: 215ms
57:	learn: 16.4081540	total: 290ms	remaining: 210ms
58:	learn: 16.3040451	total: 294ms	remaining: 205ms
59:	learn: 16.1890564	total: 299ms	remaining: 199ms
60:	learn: 16.0977103	total: 304ms	remaining: 194ms
61:	learn: 15.9627607	total: 308ms	remaining: 189ms
62:	learn: 15.9022248	total: 312ms	remaining: 183ms
63:	learn: 15.8151881	total: 316ms	remaining: 178ms
64:	learn: 15.7353125	total: 320ms	remaining: 173ms
65:	learn: 15.6312897	total: 325ms	remaining: 167ms
66:	learn: 15.5330927	total: 329ms	remaining: 162ms
67:	learn: 15.4698681	total: 334ms	remaining: 157ms
68:	learn: 15.4108571	total: 339ms	remaining: 152ms
69:	learn: 15.3492945	total: 343ms	remaining: 147ms
70:	learn: 15.3036540	total: 348ms	remaining: 142ms
71:	learn: 15.2390833	total: 353ms	remaining: 137ms
72:	learn: 15.1556327	total: 358ms	remaining: 132ms
73:	learn: 15.1016315	total: 366ms	remaining: 129ms
74:	learn: 15.0287076	total: 374ms	remaining: 125ms
75:	learn: 14.9530572	total: 384ms	remaining: 121ms
76:	learn: 14.8965517	total: 392ms	remaining: 117ms
77:	learn: 14.8125426	total: 397ms	remaining: 112ms
78:	learn: 14.7435359	total: 402ms	remaining: 107ms
79:	learn: 14.6963163	total: 407ms	remaining: 102ms
80:	learn: 14.6200060	total: 413ms	remaining: 96.8ms
81:	learn: 14.5707760	total: 418ms	remaining: 91.7ms
82:	learn: 14.5053651	total: 423ms	remaining: 86.7ms
83:	learn: 14.4115458	total: 428ms	remaining: 81.6ms
84:	learn: 14.3117159	total: 434ms	remaining: 76.6ms
85:	learn: 14.2511326	total: 440ms	remaining: 71.6ms
86:	learn: 14.1372486	total: 444ms	remaining: 66.4ms
87:	learn: 14.0992301	total: 450ms	remaining: 61.4ms
88:	learn: 14.0228331	total: 456ms	remaining: 56.3ms
89:	learn: 13.9249836	total: 460ms	remaining: 51.1ms
90:	learn: 13.8679364	total: 464ms	remaining: 45.9ms
91:	learn: 13.8405578	total: 469ms	remaining: 40.8ms
92:	learn: 13.7711325	total: 473ms	remaining: 35.6ms
93:	learn: 13.7357019	total: 477ms	remaining: 30.5ms
94:	learn: 13.6735271	total: 482ms	remaining: 25.4ms
95:	learn: 13.5682393	total: 487ms	remaining: 20.3ms
96:	learn: 13.5342610	total: 491ms	remaining: 15.2ms
97:	learn: 13.4710034	total: 495ms	remaining: 10.1ms
98:	learn: 13.4022402	total: 499ms	remaining: 5.04ms
99:	learn: 13.3351238	total: 504ms	remaining: 0us
0:	learn: 42.9181702	total: 4.99ms	remaining: 494ms
1:	learn: 42.0286736	total: 11.7ms	remaining: 572ms
2:	learn: 41.2764568	total: 19.1ms	remaining: 617ms
3:	learn: 40.4721918	total: 26.2ms	remaining: 629ms
4:	learn: 39.8518928	total: 32.3ms	remaining: 614ms
5:	learn: 39.2645479	total: 37.7ms	remaining: 590ms
6:	learn: 38.4453704	total: 42.9ms	remaining: 570ms
7:	learn: 37.7122059	total: 47.4ms	remaining: 545ms
8:	learn: 36.9185796	total: 51.7ms	remaining: 523ms
9:	learn: 36.1668427	total: 56ms	remaining: 504ms
10:	learn: 35.5639029	total: 60.8ms	remaining: 492ms
11:	learn: 34.7724193	total: 65.1ms	remaining: 478ms
12:	learn: 34.3053433	total: 69.7ms	remaining: 466ms
13:	learn: 33.6561327	total: 70.9ms	remaining: 436ms
14:	learn: 33.0134042	total: 75.2ms	remaining: 426ms
15:	learn: 32.4483300	total: 79.4ms	remaining: 417ms
16:	learn: 31.8581144	total: 83.3ms	remaining: 407ms
17:	learn: 31.2858301	total: 87.5ms	remaining: 399ms
18:	learn: 30.8483018	total: 92ms	remaining: 392ms
19:	learn: 30.4174622	total: 96.4ms	remaining: 385ms
20:	learn: 29.8994411	total: 101ms	remaining: 379ms
21:	learn: 29.5045355	total: 105ms	remaining: 372ms
22:	learn: 28.9923519	total: 109ms	remaining: 365ms
23:	learn: 28.4255717	total: 113ms	remaining: 359ms
24:	learn: 28.0283139	total: 117ms	remaining: 352ms
25:	learn: 27.7434814	total: 122ms	remaining: 347ms
26:	learn: 27.2770731	total: 126ms	remaining: 342ms
27:	learn: 26.8928270	total: 131ms	remaining: 337ms
28:	learn: 26.4282671	total: 135ms	remaining: 331ms
29:	learn: 26.0272764	total: 140ms	remaining: 326ms
30:	learn: 25.7579312	total: 144ms	remaining: 321ms
31:	learn: 25.4542434	total: 149ms	remaining: 317ms
32:	learn: 25.1232564	total: 154ms	remaining: 312ms
33:	learn: 24.8110795	total: 158ms	remaining: 307ms
34:	learn: 24.5077579	total: 162ms	remaining: 301ms
35:	learn: 24.1909000	total: 167ms	remaining: 296ms
36:	learn: 23.8719468	total: 171ms	remaining: 290ms
37:	learn: 23.5764366	total: 172ms	remaining: 280ms
38:	learn: 23.3468086	total: 176ms	remaining: 275ms
39:	learn: 23.0908771	total: 180ms	remaining: 270ms
40:	learn: 22.8580876	total: 184ms	remaining: 265ms
41:	learn: 22.6060825	total: 189ms	remaining: 261ms
42:	learn: 22.4125407	total: 193ms	remaining: 256ms
43:	learn: 22.1990617	total: 197ms	remaining: 251ms
44:	learn: 21.9716164	total: 202ms	remaining: 247ms
45:	learn: 21.8360935	total: 206ms	remaining: 242ms
46:	learn: 21.6169256	total: 210ms	remaining: 237ms
47:	learn: 21.4620612	total: 215ms	remaining: 233ms
48:	learn: 21.2894194	total: 219ms	remaining: 228ms
49:	learn: 21.1066266	total: 223ms	remaining: 223ms
50:	learn: 20.9484898	total: 228ms	remaining: 219ms
51:	learn: 20.7195338	total: 233ms	remaining: 215ms
52:	learn: 20.4899740	total: 238ms	remaining: 211ms
53:	learn: 20.3356583	total: 242ms	remaining: 206ms
54:	learn: 20.0754393	total: 247ms	remaining: 202ms
55:	learn: 19.9199159	total: 252ms	remaining: 198ms
56:	learn: 19.7761128	total: 257ms	remaining: 194ms
57:	learn: 19.6533060	total: 266ms	remaining: 193ms
58:	learn: 19.5113942	total: 281ms	remaining: 196ms
59:	learn: 19.3985022	total: 290ms	remaining: 193ms
60:	learn: 19.2683443	total: 295ms	remaining: 189ms
61:	learn: 19.1460824	total: 300ms	remaining: 184ms
62:	learn: 19.0042655	total: 306ms	remaining: 179ms
63:	learn: 18.8720873	total: 311ms	remaining: 175ms
64:	learn: 18.7183888	total: 316ms	remaining: 170ms
65:	learn: 18.5472360	total: 322ms	remaining: 166ms
66:	learn: 18.3976642	total: 327ms	remaining: 161ms
67:	learn: 18.2282851	total: 332ms	remaining: 156ms
68:	learn: 18.1469157	total: 337ms	remaining: 151ms
69:	learn: 18.0649494	total: 342ms	remaining: 147ms
70:	learn: 17.9485405	total: 347ms	remaining: 142ms
71:	learn: 17.8460261	total: 351ms	remaining: 137ms
72:	learn: 17.7679843	total: 356ms	remaining: 132ms
73:	learn: 17.5989290	total: 361ms	remaining: 127ms
74:	learn: 17.4381322	total: 367ms	remaining: 122ms
75:	learn: 17.3370886	total: 373ms	remaining: 118ms
76:	learn: 17.2675308	total: 377ms	remaining: 113ms
77:	learn: 17.1946430	total: 382ms	remaining: 108ms
78:	learn: 17.0923725	total: 386ms	remaining: 103ms
79:	learn: 17.0537265	total: 391ms	remaining: 97.7ms
80:	learn: 16.9456831	total: 395ms	remaining: 92.7ms
81:	learn: 16.8457353	total: 399ms	remaining: 87.6ms
82:	learn: 16.7469310	total: 403ms	remaining: 82.6ms
83:	learn: 16.6679953	total: 408ms	remaining: 77.7ms
84:	learn: 16.6274189	total: 412ms	remaining: 72.7ms
85:	learn: 16.5516530	total: 416ms	remaining: 67.8ms
86:	learn: 16.4886066	total: 420ms	remaining: 62.8ms
87:	learn: 16.3947859	total: 425ms	remaining: 57.9ms
88:	learn: 16.3406495	total: 430ms	remaining: 53.1ms
89:	learn: 16.3019195	total: 435ms	remaining: 48.4ms
90:	learn: 16.1860681	total: 443ms	remaining: 43.9ms
91:	learn: 16.1282812	total: 451ms	remaining: 39.2ms
92:	learn: 16.0303652	total: 458ms	remaining: 34.5ms
93:	learn: 15.9561692	total: 463ms	remaining: 29.6ms
94:	learn: 15.8733994	total: 470ms	remaining: 24.7ms
95:	learn: 15.8108833	total: 475ms	remaining: 19.8ms
96:	learn: 15.7606004	total: 480ms	remaining: 14.8ms
97:	learn: 15.6984664	total: 485ms	remaining: 9.89ms
98:	learn: 15.6223632	total: 489ms	remaining: 4.94ms
99:	learn: 15.5671136	total: 494ms	remaining: 0us
0:	learn: 46.4788614	total: 1.92ms	remaining: 190ms
1:	learn: 45.7608372	total: 6.71ms	remaining: 329ms
2:	learn: 44.8825004	total: 11.1ms	remaining: 360ms
3:	learn: 44.0362738	total: 15.9ms	remaining: 381ms
4:	learn: 43.2086374	total: 20.3ms	remaining: 385ms
5:	learn: 42.5835773	total: 24.5ms	remaining: 384ms
6:	learn: 41.9673269	total: 29.1ms	remaining: 386ms
7:	learn: 41.4748717	total: 33.5ms	remaining: 385ms
8:	learn: 40.7129183	total: 38.1ms	remaining: 385ms
9:	learn: 39.8900884	total: 42.5ms	remaining: 382ms
10:	learn: 39.4142193	total: 46.7ms	remaining: 378ms
11:	learn: 38.8645613	total: 51.1ms	remaining: 374ms
12:	learn: 38.2394731	total: 55.3ms	remaining: 370ms
13:	learn: 37.6834515	total: 59.4ms	remaining: 365ms
14:	learn: 37.0673507	total: 63.8ms	remaining: 362ms
15:	learn: 36.4728340	total: 68.1ms	remaining: 357ms
16:	learn: 36.0489086	total: 72.3ms	remaining: 353ms
17:	learn: 35.4744141	total: 76.7ms	remaining: 349ms
18:	learn: 35.0106021	total: 81.4ms	remaining: 347ms
19:	learn: 34.5586053	total: 85.6ms	remaining: 342ms
20:	learn: 34.1308223	total: 89.8ms	remaining: 338ms
21:	learn: 33.7701450	total: 94.4ms	remaining: 335ms
22:	learn: 33.4425444	total: 99.3ms	remaining: 332ms
23:	learn: 33.0296412	total: 104ms	remaining: 329ms
24:	learn: 32.6359803	total: 109ms	remaining: 326ms
25:	learn: 32.1846182	total: 113ms	remaining: 323ms
26:	learn: 31.7620230	total: 118ms	remaining: 320ms
27:	learn: 31.4669337	total: 125ms	remaining: 321ms
28:	learn: 31.0792062	total: 132ms	remaining: 324ms
29:	learn: 30.7970537	total: 143ms	remaining: 334ms
30:	learn: 30.4952215	total: 150ms	remaining: 333ms
31:	learn: 30.2845344	total: 156ms	remaining: 332ms
32:	learn: 29.9592732	total: 162ms	remaining: 329ms
33:	learn: 29.6798596	total: 168ms	remaining: 325ms
34:	learn: 29.3368905	total: 174ms	remaining: 322ms
35:	learn: 29.0621238	total: 179ms	remaining: 318ms
36:	learn: 28.6445375	total: 184ms	remaining: 314ms
37:	learn: 28.2418096	total: 190ms	remaining: 310ms
38:	learn: 27.9495390	total: 195ms	remaining: 306ms
39:	learn: 27.6958160	total: 201ms	remaining: 301ms
40:	learn: 27.4811189	total: 206ms	remaining: 296ms
41:	learn: 27.1494420	total: 211ms	remaining: 292ms
42:	learn: 26.8388873	total: 217ms	remaining: 287ms
43:	learn: 26.5721300	total: 221ms	remaining: 282ms
44:	learn: 26.3384738	total: 226ms	remaining: 276ms
45:	learn: 26.1894781	total: 230ms	remaining: 270ms
46:	learn: 25.9580198	total: 234ms	remaining: 264ms
47:	learn: 25.7897985	total: 239ms	remaining: 259ms
48:	learn: 25.6000271	total: 243ms	remaining: 253ms
49:	learn: 25.4130873	total: 247ms	remaining: 247ms
50:	learn: 25.1699061	total: 252ms	remaining: 242ms
51:	learn: 24.9324449	total: 256ms	remaining: 237ms
52:	learn: 24.7729152	total: 261ms	remaining: 231ms
53:	learn: 24.5026563	total: 266ms	remaining: 226ms
54:	learn: 24.2332627	total: 270ms	remaining: 221ms
55:	learn: 23.9611984	total: 274ms	remaining: 216ms
56:	learn: 23.7862603	total: 278ms	remaining: 210ms
57:	learn: 23.6318154	total: 283ms	remaining: 205ms
58:	learn: 23.4443306	total: 287ms	remaining: 200ms
59:	learn: 23.2581425	total: 292ms	remaining: 195ms
60:	learn: 23.0549901	total: 297ms	remaining: 190ms
61:	learn: 22.8666218	total: 302ms	remaining: 185ms
62:	learn: 22.6956739	total: 306ms	remaining: 180ms
63:	learn: 22.5068544	total: 311ms	remaining: 175ms
64:	learn: 22.1859147	total: 316ms	remaining: 170ms
65:	learn: 22.0462043	total: 325ms	remaining: 167ms
66:	learn: 21.9329563	total: 332ms	remaining: 163ms
67:	learn: 21.8029736	total: 338ms	remaining: 159ms
68:	learn: 21.6861091	total: 343ms	remaining: 154ms
69:	learn: 21.4838140	total: 349ms	remaining: 150ms
70:	learn: 21.3548921	total: 354ms	remaining: 144ms
71:	learn: 21.2244517	total: 358ms	remaining: 139ms
72:	learn: 21.0702958	total: 362ms	remaining: 134ms
73:	learn: 20.9224662	total: 366ms	remaining: 129ms
74:	learn: 20.8150357	total: 371ms	remaining: 124ms
75:	learn: 20.6962739	total: 375ms	remaining: 118ms
76:	learn: 20.5809258	total: 379ms	remaining: 113ms
77:	learn: 20.4735470	total: 384ms	remaining: 108ms
78:	learn: 20.3778167	total: 388ms	remaining: 103ms
79:	learn: 20.2211268	total: 393ms	remaining: 98.2ms
80:	learn: 20.1478678	total: 397ms	remaining: 93ms
81:	learn: 20.1032967	total: 401ms	remaining: 88ms
82:	learn: 19.9236300	total: 405ms	remaining: 83ms
83:	learn: 19.8151745	total: 409ms	remaining: 78ms
84:	learn: 19.7099856	total: 413ms	remaining: 72.9ms
85:	learn: 19.6264833	total: 418ms	remaining: 68ms
86:	learn: 19.4916361	total: 422ms	remaining: 63.1ms
87:	learn: 19.4050529	total: 426ms	remaining: 58.1ms
88:	learn: 19.2547065	total: 430ms	remaining: 53.2ms
89:	learn: 19.1610225	total: 435ms	remaining: 48.3ms
90:	learn: 19.0898958	total: 439ms	remaining: 43.4ms
91:	learn: 19.0489664	total: 443ms	remaining: 38.6ms
92:	learn: 18.9206240	total: 448ms	remaining: 33.7ms
93:	learn: 18.8636239	total: 452ms	remaining: 28.8ms
94:	learn: 18.8126187	total: 456ms	remaining: 24ms
95:	learn: 18.7579275	total: 461ms	remaining: 19.2ms
96:	learn: 18.6382753	total: 465ms	remaining: 14.4ms
97:	learn: 18.5397334	total: 469ms	remaining: 9.57ms
98:	learn: 18.4375951	total: 473ms	remaining: 4.78ms
99:	learn: 18.4033755	total: 478ms	remaining: 0us
0:	learn: 46.1068821	total: 3.43ms	remaining: 340ms
1:	learn: 45.3970261	total: 10.5ms	remaining: 515ms
2:	learn: 44.8732696	total: 16ms	remaining: 517ms
3:	learn: 44.1290184	total: 21.5ms	remaining: 516ms
4:	learn: 43.3290271	total: 26.9ms	remaining: 511ms
5:	learn: 42.7069090	total: 32ms	remaining: 502ms
6:	learn: 42.0572971	total: 37.7ms	remaining: 500ms
7:	learn: 41.4797924	total: 43.3ms	remaining: 498ms
8:	learn: 41.0023122	total: 48.9ms	remaining: 494ms
9:	learn: 40.5330570	total: 54.4ms	remaining: 489ms
10:	learn: 39.9726545	total: 59.6ms	remaining: 482ms
11:	learn: 39.3044053	total: 64.5ms	remaining: 473ms
12:	learn: 38.8169735	total: 69.7ms	remaining: 467ms
13:	learn: 38.2458761	total: 75.4ms	remaining: 463ms
14:	learn: 37.6280321	total: 80.6ms	remaining: 457ms
15:	learn: 37.0800610	total: 85.1ms	remaining: 447ms
16:	learn: 36.5489363	total: 89.5ms	remaining: 437ms
17:	learn: 36.0981456	total: 93.6ms	remaining: 427ms
18:	learn: 35.6956274	total: 98ms	remaining: 418ms
19:	learn: 35.1471999	total: 102ms	remaining: 408ms
20:	learn: 34.6235408	total: 106ms	remaining: 400ms
21:	learn: 34.1987018	total: 111ms	remaining: 393ms
22:	learn: 33.8985062	total: 115ms	remaining: 385ms
23:	learn: 33.3869017	total: 119ms	remaining: 378ms
24:	learn: 32.9100550	total: 124ms	remaining: 371ms
25:	learn: 32.4156208	total: 128ms	remaining: 364ms
26:	learn: 31.9320493	total: 132ms	remaining: 358ms
27:	learn: 31.5711468	total: 137ms	remaining: 351ms
28:	learn: 31.2404433	total: 141ms	remaining: 346ms
29:	learn: 30.8807946	total: 146ms	remaining: 341ms
30:	learn: 30.5948438	total: 151ms	remaining: 335ms
31:	learn: 30.3885560	total: 155ms	remaining: 329ms
32:	learn: 30.0625101	total: 159ms	remaining: 324ms
33:	learn: 29.9113114	total: 164ms	remaining: 319ms
34:	learn: 29.6983470	total: 169ms	remaining: 314ms
35:	learn: 29.4775849	total: 174ms	remaining: 309ms
36:	learn: 29.0538055	total: 178ms	remaining: 304ms
37:	learn: 28.6792318	total: 183ms	remaining: 298ms
38:	learn: 28.4231383	total: 187ms	remaining: 293ms
39:	learn: 28.1078565	total: 193ms	remaining: 289ms
40:	learn: 27.9079179	total: 215ms	remaining: 309ms
41:	learn: 27.6721506	total: 219ms	remaining: 303ms
42:	learn: 27.4228033	total: 225ms	remaining: 298ms
43:	learn: 27.1740534	total: 229ms	remaining: 292ms
44:	learn: 26.8584071	total: 233ms	remaining: 285ms
45:	learn: 26.6902083	total: 238ms	remaining: 279ms
46:	learn: 26.4855335	total: 242ms	remaining: 273ms
47:	learn: 26.2730822	total: 246ms	remaining: 267ms
48:	learn: 26.1058689	total: 251ms	remaining: 261ms
49:	learn: 25.8587318	total: 255ms	remaining: 255ms
50:	learn: 25.7558005	total: 259ms	remaining: 249ms
51:	learn: 25.5846925	total: 264ms	remaining: 243ms
52:	learn: 25.4249887	total: 268ms	remaining: 238ms
53:	learn: 25.1911054	total: 272ms	remaining: 232ms
54:	learn: 25.0544755	total: 276ms	remaining: 226ms
55:	learn: 24.8874006	total: 281ms	remaining: 220ms
56:	learn: 24.7736279	total: 285ms	remaining: 215ms
57:	learn: 24.6156255	total: 289ms	remaining: 209ms
58:	learn: 24.3962421	total: 293ms	remaining: 203ms
59:	learn: 24.2685129	total: 297ms	remaining: 198ms
60:	learn: 24.1874096	total: 301ms	remaining: 193ms
61:	learn: 24.0394287	total: 306ms	remaining: 187ms
62:	learn: 23.9281768	total: 310ms	remaining: 182ms
63:	learn: 23.7423900	total: 314ms	remaining: 177ms
64:	learn: 23.6015209	total: 319ms	remaining: 172ms
65:	learn: 23.4677943	total: 323ms	remaining: 166ms
66:	learn: 23.3215256	total: 327ms	remaining: 161ms
67:	learn: 23.1869360	total: 331ms	remaining: 156ms
68:	learn: 22.9691180	total: 336ms	remaining: 151ms
69:	learn: 22.7531657	total: 340ms	remaining: 146ms
70:	learn: 22.6133477	total: 344ms	remaining: 141ms
71:	learn: 22.3452758	total: 349ms	remaining: 136ms
72:	learn: 22.2065350	total: 354ms	remaining: 131ms
73:	learn: 22.1071155	total: 359ms	remaining: 126ms
74:	learn: 21.9740686	total: 364ms	remaining: 121ms
75:	learn: 21.8892033	total: 368ms	remaining: 116ms
76:	learn: 21.8267882	total: 372ms	remaining: 111ms
77:	learn: 21.7423479	total: 377ms	remaining: 106ms
78:	learn: 21.6242075	total: 382ms	remaining: 102ms
79:	learn: 21.5016910	total: 387ms	remaining: 96.9ms
80:	learn: 21.4806623	total: 388ms	remaining: 91.1ms
81:	learn: 21.3166637	total: 393ms	remaining: 86.3ms
82:	learn: 21.2222534	total: 398ms	remaining: 81.6ms
83:	learn: 21.1535708	total: 406ms	remaining: 77.4ms
84:	learn: 21.0858902	total: 414ms	remaining: 73ms
85:	learn: 20.9206003	total: 424ms	remaining: 69ms
86:	learn: 20.8674695	total: 430ms	remaining: 64.3ms
87:	learn: 20.8089875	total: 437ms	remaining: 59.6ms
88:	learn: 20.7085401	total: 443ms	remaining: 54.7ms
89:	learn: 20.5513468	total: 448ms	remaining: 49.7ms
90:	learn: 20.4586742	total: 453ms	remaining: 44.8ms
91:	learn: 20.3932149	total: 458ms	remaining: 39.9ms
92:	learn: 20.3000895	total: 464ms	remaining: 34.9ms
93:	learn: 20.2254009	total: 469ms	remaining: 29.9ms
94:	learn: 20.1750050	total: 475ms	remaining: 25ms
95:	learn: 20.0715579	total: 480ms	remaining: 20ms
96:	learn: 19.9920082	total: 485ms	remaining: 15ms
97:	learn: 19.9664401	total: 490ms	remaining: 9.99ms
98:	learn: 19.8689673	total: 495ms	remaining: 5ms
99:	learn: 19.7537356	total: 501ms	remaining: 0us
0:	learn: 46.8832143	total: 4.76ms	remaining: 472ms
1:	learn: 45.8700349	total: 8.86ms	remaining: 434ms
2:	learn: 45.0546867	total: 13.5ms	remaining: 437ms
3:	learn: 44.2829439	total: 18.2ms	remaining: 436ms
4:	learn: 43.4609042	total: 22.6ms	remaining: 429ms
5:	learn: 42.6754991	total: 27.4ms	remaining: 430ms
6:	learn: 41.9234935	total: 32.3ms	remaining: 429ms
7:	learn: 41.3987518	total: 37.1ms	remaining: 426ms
8:	learn: 40.6625066	total: 41.7ms	remaining: 422ms
9:	learn: 40.0029561	total: 46.5ms	remaining: 418ms
10:	learn: 39.3897033	total: 51.6ms	remaining: 417ms
11:	learn: 38.7741453	total: 56.7ms	remaining: 416ms
12:	learn: 38.1201100	total: 67.9ms	remaining: 454ms
13:	learn: 37.5129454	total: 76.1ms	remaining: 467ms
14:	learn: 37.2062206	total: 82.9ms	remaining: 470ms
15:	learn: 36.6831741	total: 89.7ms	remaining: 471ms
16:	learn: 36.2902788	total: 94.5ms	remaining: 462ms
17:	learn: 35.7639930	total: 98.8ms	remaining: 450ms
18:	learn: 35.2580953	total: 103ms	remaining: 440ms
19:	learn: 34.7809739	total: 108ms	remaining: 432ms
20:	learn: 34.1330433	total: 112ms	remaining: 422ms
21:	learn: 33.7302219	total: 116ms	remaining: 412ms
22:	learn: 33.3502495	total: 121ms	remaining: 405ms
23:	learn: 33.0067804	total: 125ms	remaining: 396ms
24:	learn: 32.6897855	total: 129ms	remaining: 388ms
25:	learn: 32.4361119	total: 134ms	remaining: 380ms
26:	learn: 32.1278981	total: 138ms	remaining: 373ms
27:	learn: 31.7863721	total: 142ms	remaining: 365ms
28:	learn: 31.4791450	total: 146ms	remaining: 358ms
29:	learn: 31.1760161	total: 150ms	remaining: 350ms
30:	learn: 30.9238888	total: 155ms	remaining: 344ms
31:	learn: 30.5500905	total: 159ms	remaining: 337ms
32:	learn: 30.3078126	total: 163ms	remaining: 330ms
33:	learn: 30.0480921	total: 167ms	remaining: 324ms
34:	learn: 29.8623884	total: 171ms	remaining: 318ms
35:	learn: 29.5991038	total: 175ms	remaining: 311ms
36:	learn: 29.4061161	total: 180ms	remaining: 306ms
37:	learn: 29.0269515	total: 184ms	remaining: 300ms
38:	learn: 28.8224959	total: 188ms	remaining: 294ms
39:	learn: 28.6417843	total: 192ms	remaining: 288ms
40:	learn: 28.3633368	total: 196ms	remaining: 283ms
41:	learn: 28.0200246	total: 201ms	remaining: 277ms
42:	learn: 27.7221254	total: 205ms	remaining: 271ms
43:	learn: 27.5105818	total: 209ms	remaining: 266ms
44:	learn: 27.3551010	total: 214ms	remaining: 261ms
45:	learn: 27.0787522	total: 218ms	remaining: 256ms
46:	learn: 26.8726317	total: 222ms	remaining: 250ms
47:	learn: 26.8003277	total: 226ms	remaining: 245ms
48:	learn: 26.5493785	total: 231ms	remaining: 240ms
49:	learn: 26.3699550	total: 236ms	remaining: 236ms
50:	learn: 26.1519631	total: 240ms	remaining: 231ms
51:	learn: 25.9277325	total: 245ms	remaining: 226ms
52:	learn: 25.7286035	total: 250ms	remaining: 221ms
53:	learn: 25.4999193	total: 254ms	remaining: 217ms
54:	learn: 25.3434703	total: 263ms	remaining: 215ms
55:	learn: 25.1497545	total: 271ms	remaining: 213ms
56:	learn: 24.9498143	total: 279ms	remaining: 210ms
57:	learn: 24.6509390	total: 286ms	remaining: 207ms
58:	learn: 24.5576144	total: 292ms	remaining: 203ms
59:	learn: 24.4265144	total: 297ms	remaining: 198ms
60:	learn: 24.3100706	total: 317ms	remaining: 202ms
61:	learn: 24.1727952	total: 322ms	remaining: 197ms
62:	learn: 24.0478558	total: 327ms	remaining: 192ms
63:	learn: 23.9124577	total: 332ms	remaining: 187ms
64:	learn: 23.7703718	total: 337ms	remaining: 182ms
65:	learn: 23.5975027	total: 343ms	remaining: 176ms
66:	learn: 23.4318077	total: 348ms	remaining: 172ms
67:	learn: 23.3099691	total: 353ms	remaining: 166ms
68:	learn: 23.1947982	total: 357ms	remaining: 160ms
69:	learn: 23.0260174	total: 361ms	remaining: 155ms
70:	learn: 22.8523100	total: 366ms	remaining: 149ms
71:	learn: 22.8028534	total: 370ms	remaining: 144ms
72:	learn: 22.6880658	total: 374ms	remaining: 138ms
73:	learn: 22.5956809	total: 379ms	remaining: 133ms
74:	learn: 22.4692932	total: 383ms	remaining: 128ms
75:	learn: 22.2863504	total: 388ms	remaining: 122ms
76:	learn: 22.1911237	total: 392ms	remaining: 117ms
77:	learn: 22.1098391	total: 396ms	remaining: 112ms
78:	learn: 22.0182738	total: 400ms	remaining: 106ms
79:	learn: 21.9306746	total: 405ms	remaining: 101ms
80:	learn: 21.7508233	total: 409ms	remaining: 95.9ms
81:	learn: 21.7108446	total: 413ms	remaining: 90.7ms
82:	learn: 21.5931852	total: 418ms	remaining: 85.6ms
83:	learn: 21.4480361	total: 422ms	remaining: 80.4ms
84:	learn: 21.3092119	total: 427ms	remaining: 75.3ms
85:	learn: 21.2605557	total: 431ms	remaining: 70.2ms
86:	learn: 21.1123597	total: 436ms	remaining: 65.1ms
87:	learn: 21.0115642	total: 441ms	remaining: 60.1ms
88:	learn: 20.9389040	total: 445ms	remaining: 55ms
89:	learn: 20.8300300	total: 450ms	remaining: 50ms
90:	learn: 20.7159733	total: 456ms	remaining: 45.1ms
91:	learn: 20.6282090	total: 464ms	remaining: 40.3ms
92:	learn: 20.5164529	total: 471ms	remaining: 35.5ms
93:	learn: 20.4692032	total: 477ms	remaining: 30.5ms
94:	learn: 20.3768451	total: 482ms	remaining: 25.4ms
95:	learn: 20.2808056	total: 488ms	remaining: 20.3ms
96:	learn: 20.2082089	total: 493ms	remaining: 15.2ms
97:	learn: 20.1698768	total: 498ms	remaining: 10.2ms
98:	learn: 20.1048816	total: 502ms	remaining: 5.07ms
99:	learn: 20.0086159	total: 506ms	remaining: 0us
0:	learn: 27.6165091	total: 5.25ms	remaining: 520ms
1:	learn: 27.2156009	total: 10.1ms	remaining: 495ms
2:	learn: 26.8744169	total: 15.1ms	remaining: 488ms
3:	learn: 26.5530473	total: 20ms	remaining: 479ms
4:	learn: 26.1200739	total: 24.6ms	remaining: 468ms
5:	learn: 25.7559063	total: 29.5ms	remaining: 462ms
6:	learn: 25.3817459	total: 34.1ms	remaining: 454ms
7:	learn: 25.0780231	total: 38.9ms	remaining: 447ms
8:	learn: 24.7908836	total: 43.8ms	remaining: 442ms
9:	learn: 24.5023726	total: 48.5ms	remaining: 436ms
10:	learn: 24.2430447	total: 53.3ms	remaining: 431ms
11:	learn: 24.0150987	total: 57.9ms	remaining: 425ms
12:	learn: 23.6832732	total: 62.9ms	remaining: 421ms
13:	learn: 23.4512462	total: 67.8ms	remaining: 416ms
14:	learn: 23.2300808	total: 72.4ms	remaining: 410ms
15:	learn: 23.0198192	total: 77.3ms	remaining: 406ms
16:	learn: 22.7757356	total: 82.9ms	remaining: 405ms
17:	learn: 22.4962727	total: 88.7ms	remaining: 404ms
18:	learn: 22.2131794	total: 96.9ms	remaining: 413ms
19:	learn: 21.9844087	total: 105ms	remaining: 418ms
20:	learn: 21.6467820	total: 112ms	remaining: 421ms
21:	learn: 21.4458045	total: 118ms	remaining: 418ms
22:	learn: 21.2706627	total: 124ms	remaining: 416ms
23:	learn: 21.0770166	total: 132ms	remaining: 417ms
24:	learn: 20.8871491	total: 137ms	remaining: 412ms
25:	learn: 20.7151270	total: 143ms	remaining: 406ms
26:	learn: 20.5585218	total: 149ms	remaining: 402ms
27:	learn: 20.4091128	total: 154ms	remaining: 397ms
28:	learn: 20.2343121	total: 160ms	remaining: 392ms
29:	learn: 20.0685862	total: 166ms	remaining: 386ms
30:	learn: 19.8339661	total: 171ms	remaining: 381ms
31:	learn: 19.6811138	total: 177ms	remaining: 376ms
32:	learn: 19.4881999	total: 183ms	remaining: 371ms
33:	learn: 19.3473429	total: 189ms	remaining: 366ms
34:	learn: 19.1087185	total: 194ms	remaining: 360ms
35:	learn: 18.9817724	total: 199ms	remaining: 353ms
36:	learn: 18.8465124	total: 204ms	remaining: 347ms
37:	learn: 18.6998182	total: 209ms	remaining: 340ms
38:	learn: 18.5534881	total: 214ms	remaining: 334ms
39:	learn: 18.4221213	total: 220ms	remaining: 330ms
40:	learn: 18.3262428	total: 226ms	remaining: 325ms
41:	learn: 18.2018519	total: 231ms	remaining: 319ms
42:	learn: 18.0704402	total: 236ms	remaining: 313ms
43:	learn: 17.9674737	total: 241ms	remaining: 306ms
44:	learn: 17.8092746	total: 245ms	remaining: 300ms
45:	learn: 17.7036671	total: 250ms	remaining: 293ms
46:	learn: 17.5636023	total: 255ms	remaining: 288ms
47:	learn: 17.3922671	total: 260ms	remaining: 281ms
48:	learn: 17.2777727	total: 264ms	remaining: 275ms
49:	learn: 17.1901866	total: 269ms	remaining: 269ms
50:	learn: 17.0799264	total: 274ms	remaining: 264ms
51:	learn: 17.0022808	total: 279ms	remaining: 258ms
52:	learn: 16.9193737	total: 284ms	remaining: 252ms
53:	learn: 16.8349324	total: 289ms	remaining: 247ms
54:	learn: 16.7122802	total: 294ms	remaining: 241ms
55:	learn: 16.5736462	total: 299ms	remaining: 235ms
56:	learn: 16.4576798	total: 305ms	remaining: 230ms
57:	learn: 16.3336075	total: 314ms	remaining: 227ms
58:	learn: 16.2578113	total: 323ms	remaining: 225ms
59:	learn: 16.1586938	total: 331ms	remaining: 221ms
60:	learn: 16.0827831	total: 337ms	remaining: 215ms
61:	learn: 16.0030150	total: 343ms	remaining: 210ms
62:	learn: 15.8741662	total: 348ms	remaining: 204ms
63:	learn: 15.7533897	total: 353ms	remaining: 199ms
64:	learn: 15.6743804	total: 358ms	remaining: 193ms
65:	learn: 15.6291324	total: 363ms	remaining: 187ms
66:	learn: 15.5363523	total: 367ms	remaining: 181ms
67:	learn: 15.4675550	total: 372ms	remaining: 175ms
68:	learn: 15.3959873	total: 377ms	remaining: 169ms
69:	learn: 15.3222045	total: 382ms	remaining: 164ms
70:	learn: 15.2343883	total: 387ms	remaining: 158ms
71:	learn: 15.1891070	total: 392ms	remaining: 152ms
72:	learn: 15.1320798	total: 397ms	remaining: 147ms
73:	learn: 15.0590468	total: 401ms	remaining: 141ms
74:	learn: 14.9682726	total: 406ms	remaining: 135ms
75:	learn: 14.8868528	total: 411ms	remaining: 130ms
76:	learn: 14.8046328	total: 416ms	remaining: 124ms
77:	learn: 14.7253152	total: 421ms	remaining: 119ms
78:	learn: 14.6438207	total: 426ms	remaining: 113ms
79:	learn: 14.5350651	total: 431ms	remaining: 108ms
80:	learn: 14.4301800	total: 435ms	remaining: 102ms
81:	learn: 14.3716251	total: 440ms	remaining: 96.7ms
82:	learn: 14.3127586	total: 446ms	remaining: 91.3ms
83:	learn: 14.2685086	total: 450ms	remaining: 85.8ms
84:	learn: 14.1936111	total: 455ms	remaining: 80.3ms
85:	learn: 14.1488261	total: 460ms	remaining: 74.9ms
86:	learn: 14.0654602	total: 465ms	remaining: 69.5ms
87:	learn: 14.0026195	total: 470ms	remaining: 64ms
88:	learn: 13.9498697	total: 474ms	remaining: 58.6ms
89:	learn: 13.9002477	total: 479ms	remaining: 53.3ms
90:	learn: 13.8429017	total: 485ms	remaining: 48ms
91:	learn: 13.7892130	total: 490ms	remaining: 42.7ms
92:	learn: 13.7122418	total: 496ms	remaining: 37.3ms
93:	learn: 13.6752324	total: 502ms	remaining: 32ms
94:	learn: 13.6186680	total: 508ms	remaining: 26.7ms
95:	learn: 13.5578384	total: 532ms	remaining: 22.2ms
96:	learn: 13.5028120	total: 541ms	remaining: 16.7ms
97:	learn: 13.4306895	total: 547ms	remaining: 11.2ms
98:	learn: 13.3955813	total: 552ms	remaining: 5.58ms
99:	learn: 13.3380095	total: 558ms	remaining: 0us
0:	learn: 42.9675374	total: 5.14ms	remaining: 509ms
1:	learn: 42.2542078	total: 9.82ms	remaining: 481ms
2:	learn: 41.5532166	total: 14.9ms	remaining: 483ms
3:	learn: 40.7812113	total: 19.9ms	remaining: 477ms
4:	learn: 39.8819601	total: 24.6ms	remaining: 468ms
5:	learn: 39.0997229	total: 26.4ms	remaining: 413ms
6:	learn: 38.2185623	total: 31.2ms	remaining: 415ms
7:	learn: 37.5465645	total: 36.1ms	remaining: 415ms
8:	learn: 36.8449555	total: 40.9ms	remaining: 414ms
9:	learn: 36.0912815	total: 45.5ms	remaining: 410ms
10:	learn: 35.5776470	total: 50.4ms	remaining: 408ms
11:	learn: 34.7845329	total: 55.2ms	remaining: 405ms
12:	learn: 34.1574031	total: 60.1ms	remaining: 402ms
13:	learn: 33.4950652	total: 64.7ms	remaining: 397ms
14:	learn: 32.9343881	total: 69.5ms	remaining: 394ms
15:	learn: 32.4356238	total: 74.4ms	remaining: 391ms
16:	learn: 31.8370592	total: 79.4ms	remaining: 388ms
17:	learn: 31.2122644	total: 84.4ms	remaining: 384ms
18:	learn: 30.7195190	total: 89.4ms	remaining: 381ms
19:	learn: 30.1548478	total: 94.4ms	remaining: 378ms
20:	learn: 29.6521001	total: 97.3ms	remaining: 366ms
21:	learn: 29.1746988	total: 102ms	remaining: 362ms
22:	learn: 28.6492690	total: 112ms	remaining: 373ms
23:	learn: 28.1958339	total: 120ms	remaining: 380ms
24:	learn: 27.9126674	total: 127ms	remaining: 381ms
25:	learn: 27.5059508	total: 133ms	remaining: 378ms
26:	learn: 27.0869176	total: 138ms	remaining: 374ms
27:	learn: 26.6545277	total: 143ms	remaining: 368ms
28:	learn: 26.2388575	total: 148ms	remaining: 362ms
29:	learn: 25.8957708	total: 153ms	remaining: 356ms
30:	learn: 25.5045901	total: 158ms	remaining: 351ms
31:	learn: 25.2559530	total: 162ms	remaining: 345ms
32:	learn: 24.9012566	total: 167ms	remaining: 339ms
33:	learn: 24.5601820	total: 172ms	remaining: 334ms
34:	learn: 24.2407285	total: 177ms	remaining: 328ms
35:	learn: 23.9481769	total: 181ms	remaining: 322ms
36:	learn: 23.6746994	total: 186ms	remaining: 317ms
37:	learn: 23.4470352	total: 191ms	remaining: 312ms
38:	learn: 23.1678305	total: 196ms	remaining: 307ms
39:	learn: 22.9660692	total: 201ms	remaining: 301ms
40:	learn: 22.7102548	total: 205ms	remaining: 295ms
41:	learn: 22.5152447	total: 210ms	remaining: 290ms
42:	learn: 22.2967100	total: 215ms	remaining: 285ms
43:	learn: 22.0869517	total: 220ms	remaining: 279ms
44:	learn: 21.8556497	total: 224ms	remaining: 274ms
45:	learn: 21.7036804	total: 229ms	remaining: 269ms
46:	learn: 21.4792011	total: 234ms	remaining: 264ms
47:	learn: 21.2830384	total: 239ms	remaining: 259ms
48:	learn: 21.0771837	total: 244ms	remaining: 254ms
49:	learn: 20.8824468	total: 249ms	remaining: 249ms
50:	learn: 20.7250875	total: 253ms	remaining: 243ms
51:	learn: 20.5564423	total: 258ms	remaining: 238ms
52:	learn: 20.4067403	total: 263ms	remaining: 233ms
53:	learn: 20.2674808	total: 268ms	remaining: 228ms
54:	learn: 20.1394249	total: 273ms	remaining: 223ms
55:	learn: 19.9748016	total: 278ms	remaining: 218ms
56:	learn: 19.8159522	total: 283ms	remaining: 214ms
57:	learn: 19.6811073	total: 288ms	remaining: 209ms
58:	learn: 19.5083232	total: 293ms	remaining: 204ms
59:	learn: 19.3949390	total: 295ms	remaining: 197ms
60:	learn: 19.2485728	total: 301ms	remaining: 192ms
61:	learn: 19.1255523	total: 306ms	remaining: 187ms
62:	learn: 18.9423320	total: 315ms	remaining: 185ms
63:	learn: 18.7794545	total: 324ms	remaining: 182ms
64:	learn: 18.6339033	total: 333ms	remaining: 179ms
65:	learn: 18.5188724	total: 341ms	remaining: 176ms
66:	learn: 18.3398412	total: 347ms	remaining: 171ms
67:	learn: 18.2873427	total: 353ms	remaining: 166ms
68:	learn: 18.1287092	total: 360ms	remaining: 162ms
69:	learn: 18.0163474	total: 366ms	remaining: 157ms
70:	learn: 17.9428395	total: 373ms	remaining: 152ms
71:	learn: 17.7906087	total: 378ms	remaining: 147ms
72:	learn: 17.6121088	total: 384ms	remaining: 142ms
73:	learn: 17.5136572	total: 390ms	remaining: 137ms
74:	learn: 17.3837993	total: 395ms	remaining: 132ms
75:	learn: 17.3015647	total: 402ms	remaining: 127ms
76:	learn: 17.1991252	total: 408ms	remaining: 122ms
77:	learn: 17.0854777	total: 413ms	remaining: 116ms
78:	learn: 17.0308269	total: 418ms	remaining: 111ms
79:	learn: 16.9754807	total: 422ms	remaining: 106ms
80:	learn: 16.9174907	total: 427ms	remaining: 100ms
81:	learn: 16.7962603	total: 432ms	remaining: 94.8ms
82:	learn: 16.6685446	total: 437ms	remaining: 89.5ms
83:	learn: 16.5812672	total: 442ms	remaining: 84.1ms
84:	learn: 16.4896026	total: 446ms	remaining: 78.8ms
85:	learn: 16.4023414	total: 451ms	remaining: 73.4ms
86:	learn: 16.3093718	total: 456ms	remaining: 68.2ms
87:	learn: 16.2409040	total: 461ms	remaining: 62.9ms
88:	learn: 16.1616213	total: 466ms	remaining: 57.6ms
89:	learn: 16.0825203	total: 471ms	remaining: 52.3ms
90:	learn: 16.0204931	total: 476ms	remaining: 47ms
91:	learn: 15.9741267	total: 481ms	remaining: 41.8ms
92:	learn: 15.9413725	total: 486ms	remaining: 36.6ms
93:	learn: 15.8762295	total: 491ms	remaining: 31.4ms
94:	learn: 15.8165812	total: 496ms	remaining: 26.1ms
95:	learn: 15.7244343	total: 501ms	remaining: 20.9ms
96:	learn: 15.6537033	total: 507ms	remaining: 15.7ms
97:	learn: 15.6052320	total: 516ms	remaining: 10.5ms
98:	learn: 15.5434930	total: 524ms	remaining: 5.29ms
99:	learn: 15.4452106	total: 530ms	remaining: 0us
0:	learn: 46.5387280	total: 5.34ms	remaining: 529ms
1:	learn: 45.8605074	total: 10.3ms	remaining: 504ms
2:	learn: 45.2237152	total: 15ms	remaining: 485ms
3:	learn: 44.4158454	total: 19.8ms	remaining: 475ms
4:	learn: 43.7177384	total: 24.6ms	remaining: 467ms
5:	learn: 42.9896372	total: 29.3ms	remaining: 459ms
6:	learn: 42.3639431	total: 34.2ms	remaining: 454ms
7:	learn: 41.6648406	total: 39ms	remaining: 449ms
8:	learn: 41.0681442	total: 43.8ms	remaining: 443ms
9:	learn: 40.4478745	total: 48.4ms	remaining: 435ms
10:	learn: 40.0398470	total: 53.3ms	remaining: 431ms
11:	learn: 39.3300888	total: 58ms	remaining: 426ms
12:	learn: 38.9198991	total: 62.7ms	remaining: 420ms
13:	learn: 38.4022666	total: 67.7ms	remaining: 416ms
14:	learn: 37.9124629	total: 72.9ms	remaining: 413ms
15:	learn: 37.3846174	total: 77.8ms	remaining: 408ms
16:	learn: 36.8502348	total: 82.5ms	remaining: 403ms
17:	learn: 36.5079755	total: 87.4ms	remaining: 398ms
18:	learn: 36.1239339	total: 92.5ms	remaining: 394ms
19:	learn: 35.8388688	total: 97.3ms	remaining: 389ms
20:	learn: 35.4915710	total: 103ms	remaining: 386ms
21:	learn: 34.9483623	total: 108ms	remaining: 382ms
22:	learn: 34.6033866	total: 113ms	remaining: 379ms
23:	learn: 34.1483341	total: 135ms	remaining: 427ms
24:	learn: 33.7626484	total: 144ms	remaining: 431ms
25:	learn: 33.4160820	total: 155ms	remaining: 441ms
26:	learn: 33.0421483	total: 164ms	remaining: 444ms
27:	learn: 32.6573469	total: 170ms	remaining: 437ms
28:	learn: 32.2672417	total: 177ms	remaining: 432ms
29:	learn: 31.8257441	total: 183ms	remaining: 426ms
30:	learn: 31.3394923	total: 189ms	remaining: 420ms
31:	learn: 30.9472894	total: 195ms	remaining: 414ms
32:	learn: 30.6961423	total: 201ms	remaining: 408ms
33:	learn: 30.4670615	total: 207ms	remaining: 401ms
34:	learn: 30.1495001	total: 212ms	remaining: 395ms
35:	learn: 29.8071763	total: 218ms	remaining: 387ms
36:	learn: 29.5255984	total: 224ms	remaining: 382ms
37:	learn: 29.2236758	total: 230ms	remaining: 375ms
38:	learn: 28.9199699	total: 235ms	remaining: 368ms
39:	learn: 28.7003989	total: 240ms	remaining: 360ms
40:	learn: 28.4681160	total: 245ms	remaining: 352ms
41:	learn: 28.2692668	total: 250ms	remaining: 345ms
42:	learn: 27.9327254	total: 254ms	remaining: 337ms
43:	learn: 27.7193597	total: 259ms	remaining: 330ms
44:	learn: 27.4061006	total: 264ms	remaining: 323ms
45:	learn: 27.1840910	total: 269ms	remaining: 316ms
46:	learn: 26.8943816	total: 274ms	remaining: 309ms
47:	learn: 26.6576617	total: 279ms	remaining: 302ms
48:	learn: 26.3230094	total: 285ms	remaining: 297ms
49:	learn: 26.0488483	total: 290ms	remaining: 290ms
50:	learn: 25.7795537	total: 296ms	remaining: 284ms
51:	learn: 25.6103781	total: 301ms	remaining: 278ms
52:	learn: 25.4107383	total: 306ms	remaining: 272ms
53:	learn: 25.1757211	total: 312ms	remaining: 265ms
54:	learn: 24.8949842	total: 317ms	remaining: 259ms
55:	learn: 24.7028694	total: 322ms	remaining: 253ms
56:	learn: 24.4033555	total: 327ms	remaining: 247ms
57:	learn: 24.2109268	total: 332ms	remaining: 241ms
58:	learn: 24.0697623	total: 337ms	remaining: 234ms
59:	learn: 23.8291672	total: 345ms	remaining: 230ms
60:	learn: 23.5972471	total: 355ms	remaining: 227ms
61:	learn: 23.4241182	total: 362ms	remaining: 222ms
62:	learn: 23.2617022	total: 367ms	remaining: 216ms
63:	learn: 23.0329448	total: 374ms	remaining: 210ms
64:	learn: 22.9108081	total: 379ms	remaining: 204ms
65:	learn: 22.8001962	total: 383ms	remaining: 197ms
66:	learn: 22.6861907	total: 388ms	remaining: 191ms
67:	learn: 22.5152895	total: 393ms	remaining: 185ms
68:	learn: 22.3734214	total: 398ms	remaining: 179ms
69:	learn: 22.1840754	total: 402ms	remaining: 172ms
70:	learn: 22.0732908	total: 407ms	remaining: 166ms
71:	learn: 21.8880456	total: 412ms	remaining: 160ms
72:	learn: 21.7838784	total: 417ms	remaining: 154ms
73:	learn: 21.5532885	total: 421ms	remaining: 148ms
74:	learn: 21.3998735	total: 426ms	remaining: 142ms
75:	learn: 21.2699824	total: 431ms	remaining: 136ms
76:	learn: 21.1077652	total: 436ms	remaining: 130ms
77:	learn: 20.9759102	total: 441ms	remaining: 124ms
78:	learn: 20.7531342	total: 446ms	remaining: 119ms
79:	learn: 20.6729631	total: 451ms	remaining: 113ms
80:	learn: 20.4903474	total: 455ms	remaining: 107ms
81:	learn: 20.3708622	total: 460ms	remaining: 101ms
82:	learn: 20.2627857	total: 465ms	remaining: 95.3ms
83:	learn: 20.1335464	total: 470ms	remaining: 89.5ms
84:	learn: 20.0100864	total: 475ms	remaining: 83.8ms
85:	learn: 19.9374357	total: 479ms	remaining: 78.1ms
86:	learn: 19.8383097	total: 484ms	remaining: 72.4ms
87:	learn: 19.7804443	total: 489ms	remaining: 66.7ms
88:	learn: 19.7225631	total: 494ms	remaining: 61ms
89:	learn: 19.5851849	total: 499ms	remaining: 55.4ms
90:	learn: 19.5115923	total: 503ms	remaining: 49.8ms
91:	learn: 19.3986485	total: 508ms	remaining: 44.2ms
92:	learn: 19.2465728	total: 513ms	remaining: 38.6ms
93:	learn: 19.2033796	total: 519ms	remaining: 33.1ms
94:	learn: 19.1234096	total: 524ms	remaining: 27.6ms
95:	learn: 19.0080161	total: 529ms	remaining: 22ms
96:	learn: 18.9048698	total: 534ms	remaining: 16.5ms
97:	learn: 18.7901500	total: 539ms	remaining: 11ms
98:	learn: 18.6759882	total: 547ms	remaining: 5.53ms
99:	learn: 18.6254590	total: 556ms	remaining: 0us
0:	learn: 46.0359105	total: 5.83ms	remaining: 577ms
1:	learn: 45.4503059	total: 11.5ms	remaining: 562ms
2:	learn: 44.6478680	total: 16.7ms	remaining: 541ms
3:	learn: 43.7932387	total: 22.6ms	remaining: 542ms
4:	learn: 43.2236036	total: 28.7ms	remaining: 545ms
5:	learn: 42.4339181	total: 33.9ms	remaining: 531ms
6:	learn: 41.8906461	total: 38.5ms	remaining: 511ms
7:	learn: 41.2248707	total: 43.1ms	remaining: 496ms
8:	learn: 40.5934570	total: 48.4ms	remaining: 489ms
9:	learn: 39.9204661	total: 53.2ms	remaining: 479ms
10:	learn: 39.3972458	total: 57.9ms	remaining: 469ms
11:	learn: 38.9220493	total: 62.6ms	remaining: 459ms
12:	learn: 38.2358406	total: 67.4ms	remaining: 451ms
13:	learn: 37.7089336	total: 72.1ms	remaining: 443ms
14:	learn: 37.3714255	total: 77ms	remaining: 436ms
15:	learn: 36.8098537	total: 82.2ms	remaining: 432ms
16:	learn: 36.2818695	total: 87.2ms	remaining: 426ms
17:	learn: 35.8807734	total: 92.1ms	remaining: 419ms
18:	learn: 35.3850720	total: 97.4ms	remaining: 415ms
19:	learn: 35.0622365	total: 103ms	remaining: 410ms
20:	learn: 34.7088655	total: 108ms	remaining: 405ms
21:	learn: 34.2869861	total: 113ms	remaining: 401ms
22:	learn: 33.9798756	total: 119ms	remaining: 399ms
23:	learn: 33.6933850	total: 127ms	remaining: 401ms
24:	learn: 33.3542725	total: 134ms	remaining: 402ms
25:	learn: 33.1531104	total: 141ms	remaining: 402ms
26:	learn: 32.7581499	total: 146ms	remaining: 396ms
27:	learn: 32.4953289	total: 153ms	remaining: 392ms
28:	learn: 32.1636511	total: 159ms	remaining: 389ms
29:	learn: 31.7179908	total: 164ms	remaining: 384ms
30:	learn: 31.2828971	total: 169ms	remaining: 377ms
31:	learn: 30.8954632	total: 175ms	remaining: 371ms
32:	learn: 30.6156466	total: 180ms	remaining: 365ms
33:	learn: 30.4325331	total: 185ms	remaining: 359ms
34:	learn: 30.1680270	total: 190ms	remaining: 352ms
35:	learn: 29.8372162	total: 195ms	remaining: 346ms
36:	learn: 29.5018241	total: 199ms	remaining: 339ms
37:	learn: 29.2660228	total: 204ms	remaining: 333ms
38:	learn: 28.9172883	total: 209ms	remaining: 327ms
39:	learn: 28.7004790	total: 214ms	remaining: 321ms
40:	learn: 28.5188438	total: 219ms	remaining: 314ms
41:	learn: 28.3064887	total: 224ms	remaining: 309ms
42:	learn: 27.9584462	total: 228ms	remaining: 303ms
43:	learn: 27.6654603	total: 233ms	remaining: 296ms
44:	learn: 27.3698139	total: 238ms	remaining: 291ms
45:	learn: 27.1825629	total: 243ms	remaining: 285ms
46:	learn: 26.9938719	total: 247ms	remaining: 279ms
47:	learn: 26.7385850	total: 252ms	remaining: 273ms
48:	learn: 26.5055251	total: 257ms	remaining: 268ms
49:	learn: 26.3264840	total: 262ms	remaining: 262ms
50:	learn: 26.1314307	total: 267ms	remaining: 257ms
51:	learn: 25.9514770	total: 272ms	remaining: 251ms
52:	learn: 25.7272663	total: 277ms	remaining: 245ms
53:	learn: 25.4554234	total: 282ms	remaining: 240ms
54:	learn: 25.2133674	total: 286ms	remaining: 234ms
55:	learn: 24.9612149	total: 291ms	remaining: 229ms
56:	learn: 24.6788780	total: 296ms	remaining: 223ms
57:	learn: 24.4504703	total: 301ms	remaining: 218ms
58:	learn: 24.3261542	total: 305ms	remaining: 212ms
59:	learn: 24.1217621	total: 310ms	remaining: 207ms
60:	learn: 23.9495725	total: 315ms	remaining: 202ms
61:	learn: 23.7848565	total: 320ms	remaining: 196ms
62:	learn: 23.6627081	total: 325ms	remaining: 191ms
63:	learn: 23.4390407	total: 331ms	remaining: 186ms
64:	learn: 23.2556312	total: 335ms	remaining: 181ms
65:	learn: 23.1796337	total: 343ms	remaining: 177ms
66:	learn: 23.0431987	total: 352ms	remaining: 173ms
67:	learn: 22.9300366	total: 363ms	remaining: 171ms
68:	learn: 22.8321895	total: 373ms	remaining: 167ms
69:	learn: 22.7825840	total: 378ms	remaining: 162ms
70:	learn: 22.6907764	total: 384ms	remaining: 157ms
71:	learn: 22.5080460	total: 389ms	remaining: 151ms
72:	learn: 22.4053282	total: 395ms	remaining: 146ms
73:	learn: 22.2698085	total: 401ms	remaining: 141ms
74:	learn: 22.0951825	total: 407ms	remaining: 136ms
75:	learn: 21.9933994	total: 413ms	remaining: 130ms
76:	learn: 21.8043413	total: 418ms	remaining: 125ms
77:	learn: 21.7259032	total: 424ms	remaining: 119ms
78:	learn: 21.5625358	total: 429ms	remaining: 114ms
79:	learn: 21.4316837	total: 435ms	remaining: 109ms
80:	learn: 21.2270985	total: 441ms	remaining: 103ms
81:	learn: 21.1248573	total: 446ms	remaining: 97.9ms
82:	learn: 21.0879584	total: 451ms	remaining: 92.3ms
83:	learn: 20.9810177	total: 456ms	remaining: 86.8ms
84:	learn: 20.8986744	total: 461ms	remaining: 81.3ms
85:	learn: 20.8427245	total: 465ms	remaining: 75.8ms
86:	learn: 20.7158681	total: 470ms	remaining: 70.3ms
87:	learn: 20.6055502	total: 475ms	remaining: 64.8ms
88:	learn: 20.5302059	total: 480ms	remaining: 59.4ms
89:	learn: 20.3936827	total: 485ms	remaining: 53.9ms
90:	learn: 20.2756993	total: 490ms	remaining: 48.5ms
91:	learn: 20.1882826	total: 495ms	remaining: 43.1ms
92:	learn: 20.0346875	total: 500ms	remaining: 37.6ms
93:	learn: 19.9798652	total: 505ms	remaining: 32.2ms
94:	learn: 19.9020384	total: 510ms	remaining: 26.8ms
95:	learn: 19.8463755	total: 515ms	remaining: 21.5ms
96:	learn: 19.7426458	total: 520ms	remaining: 16.1ms
97:	learn: 19.6728655	total: 525ms	remaining: 10.7ms
98:	learn: 19.6355104	total: 530ms	remaining: 5.36ms
99:	learn: 19.6074086	total: 536ms	remaining: 0us
0:	learn: 46.7817285	total: 5.52ms	remaining: 546ms
1:	learn: 45.9551634	total: 10.1ms	remaining: 496ms
2:	learn: 45.0274369	total: 15.2ms	remaining: 491ms
3:	learn: 44.5000950	total: 19.9ms	remaining: 479ms
4:	learn: 43.8963632	total: 24.8ms	remaining: 472ms
5:	learn: 43.2314124	total: 29.5ms	remaining: 463ms
6:	learn: 42.5780140	total: 34.3ms	remaining: 456ms
7:	learn: 41.9033077	total: 39.1ms	remaining: 450ms
8:	learn: 41.3161907	total: 44ms	remaining: 445ms
9:	learn: 40.7747000	total: 48.7ms	remaining: 438ms
10:	learn: 40.2728122	total: 53.3ms	remaining: 432ms
11:	learn: 39.7786608	total: 58.1ms	remaining: 426ms
12:	learn: 39.0812090	total: 62.9ms	remaining: 421ms
13:	learn: 38.6205762	total: 67.8ms	remaining: 416ms
14:	learn: 38.2894236	total: 73.2ms	remaining: 415ms
15:	learn: 37.6906364	total: 78.4ms	remaining: 412ms
16:	learn: 37.3014849	total: 83.5ms	remaining: 408ms
17:	learn: 36.9268494	total: 88.7ms	remaining: 404ms
18:	learn: 36.6348717	total: 94.1ms	remaining: 401ms
19:	learn: 36.1567831	total: 99.6ms	remaining: 398ms
20:	learn: 35.8080754	total: 104ms	remaining: 393ms
21:	learn: 35.4288913	total: 109ms	remaining: 387ms
22:	learn: 35.0910168	total: 115ms	remaining: 384ms
23:	learn: 34.7483277	total: 120ms	remaining: 379ms
24:	learn: 34.5077203	total: 124ms	remaining: 373ms
25:	learn: 34.1830247	total: 130ms	remaining: 369ms
26:	learn: 33.7943837	total: 135ms	remaining: 365ms
27:	learn: 33.3736582	total: 140ms	remaining: 360ms
28:	learn: 32.9133996	total: 146ms	remaining: 356ms
29:	learn: 32.4361653	total: 151ms	remaining: 352ms
30:	learn: 31.9630085	total: 156ms	remaining: 348ms
31:	learn: 31.5994894	total: 166ms	remaining: 352ms
32:	learn: 31.3120059	total: 176ms	remaining: 357ms
33:	learn: 31.0991187	total: 183ms	remaining: 356ms
34:	learn: 30.8055118	total: 191ms	remaining: 355ms
35:	learn: 30.5197359	total: 197ms	remaining: 350ms
36:	learn: 30.1975315	total: 203ms	remaining: 345ms
37:	learn: 29.9797615	total: 209ms	remaining: 341ms
38:	learn: 29.6874864	total: 215ms	remaining: 336ms
39:	learn: 29.4139907	total: 221ms	remaining: 331ms
40:	learn: 29.0472151	total: 226ms	remaining: 325ms
41:	learn: 28.8356285	total: 232ms	remaining: 320ms
42:	learn: 28.5099349	total: 238ms	remaining: 315ms
43:	learn: 28.2009716	total: 243ms	remaining: 310ms
44:	learn: 27.8947534	total: 249ms	remaining: 304ms
45:	learn: 27.6149698	total: 254ms	remaining: 299ms
46:	learn: 27.4780860	total: 260ms	remaining: 294ms
47:	learn: 27.2859119	total: 265ms	remaining: 287ms
48:	learn: 27.0572191	total: 270ms	remaining: 281ms
49:	learn: 26.8916263	total: 275ms	remaining: 275ms
50:	learn: 26.6791967	total: 279ms	remaining: 269ms
51:	learn: 26.4917307	total: 284ms	remaining: 263ms
52:	learn: 26.2957036	total: 289ms	remaining: 256ms
53:	learn: 26.1116543	total: 294ms	remaining: 250ms
54:	learn: 25.8593319	total: 298ms	remaining: 244ms
55:	learn: 25.6957296	total: 303ms	remaining: 238ms
56:	learn: 25.5065213	total: 308ms	remaining: 232ms
57:	learn: 25.3525337	total: 313ms	remaining: 227ms
58:	learn: 25.2197494	total: 318ms	remaining: 221ms
59:	learn: 25.0583799	total: 322ms	remaining: 215ms
60:	learn: 24.8432659	total: 327ms	remaining: 209ms
61:	learn: 24.6585337	total: 332ms	remaining: 204ms
62:	learn: 24.5382571	total: 338ms	remaining: 198ms
63:	learn: 24.3596337	total: 343ms	remaining: 193ms
64:	learn: 24.2009033	total: 348ms	remaining: 187ms
65:	learn: 24.0964080	total: 353ms	remaining: 182ms
66:	learn: 23.9765920	total: 359ms	remaining: 177ms
67:	learn: 23.8638384	total: 368ms	remaining: 173ms
68:	learn: 23.7381861	total: 375ms	remaining: 169ms
69:	learn: 23.5620129	total: 382ms	remaining: 164ms
70:	learn: 23.4494830	total: 388ms	remaining: 158ms
71:	learn: 23.3095806	total: 393ms	remaining: 153ms
72:	learn: 23.1441767	total: 398ms	remaining: 147ms
73:	learn: 22.9983446	total: 402ms	remaining: 141ms
74:	learn: 22.8464764	total: 407ms	remaining: 136ms
75:	learn: 22.7606423	total: 412ms	remaining: 130ms
76:	learn: 22.6095905	total: 417ms	remaining: 124ms
77:	learn: 22.4430506	total: 422ms	remaining: 119ms
78:	learn: 22.2925872	total: 427ms	remaining: 113ms
79:	learn: 22.1806286	total: 431ms	remaining: 108ms
80:	learn: 22.0070525	total: 436ms	remaining: 102ms
81:	learn: 21.9114201	total: 441ms	remaining: 96.8ms
82:	learn: 21.7742884	total: 446ms	remaining: 91.3ms
83:	learn: 21.6372857	total: 450ms	remaining: 85.8ms
84:	learn: 21.5380397	total: 455ms	remaining: 80.3ms
85:	learn: 21.4730146	total: 460ms	remaining: 74.8ms
86:	learn: 21.3236516	total: 464ms	remaining: 69.4ms
87:	learn: 21.2512101	total: 469ms	remaining: 63.9ms
88:	learn: 21.2192883	total: 473ms	remaining: 58.5ms
89:	learn: 21.0457926	total: 478ms	remaining: 53.1ms
90:	learn: 20.9986980	total: 483ms	remaining: 47.7ms
91:	learn: 20.9040032	total: 487ms	remaining: 42.4ms
92:	learn: 20.7178547	total: 492ms	remaining: 37ms
93:	learn: 20.6535030	total: 497ms	remaining: 31.7ms
94:	learn: 20.5641982	total: 501ms	remaining: 26.4ms
95:	learn: 20.5355409	total: 506ms	remaining: 21.1ms
96:	learn: 20.4496493	total: 511ms	remaining: 15.8ms
97:	learn: 20.3579862	total: 515ms	remaining: 10.5ms
98:	learn: 20.2442476	total: 520ms	remaining: 5.25ms
99:	learn: 20.1075813	total: 525ms	remaining: 0us
0:	learn: 27.6506730	total: 7.61ms	remaining: 753ms
1:	learn: 27.1638793	total: 12.9ms	remaining: 632ms
2:	learn: 26.8000665	total: 18.1ms	remaining: 586ms
3:	learn: 26.4256132	total: 23.6ms	remaining: 566ms
4:	learn: 26.0088351	total: 28.7ms	remaining: 546ms
5:	learn: 25.7558298	total: 34ms	remaining: 532ms
6:	learn: 25.3380711	total: 39.5ms	remaining: 524ms
7:	learn: 25.0571611	total: 44.6ms	remaining: 512ms
8:	learn: 24.6790148	total: 49.5ms	remaining: 501ms
9:	learn: 24.3600941	total: 69.2ms	remaining: 623ms
10:	learn: 24.1105667	total: 73.4ms	remaining: 594ms
11:	learn: 23.7736542	total: 77.8ms	remaining: 571ms
12:	learn: 23.5824429	total: 81.9ms	remaining: 548ms
13:	learn: 23.2658303	total: 86.1ms	remaining: 529ms
14:	learn: 23.0061886	total: 90.7ms	remaining: 514ms
15:	learn: 22.8060389	total: 94.6ms	remaining: 497ms
16:	learn: 22.5899735	total: 98.8ms	remaining: 482ms
17:	learn: 22.3625048	total: 103ms	remaining: 471ms
18:	learn: 22.0706477	total: 108ms	remaining: 459ms
19:	learn: 21.8739394	total: 112ms	remaining: 448ms
20:	learn: 21.6143650	total: 116ms	remaining: 436ms
21:	learn: 21.4571623	total: 120ms	remaining: 427ms
22:	learn: 21.2395769	total: 125ms	remaining: 417ms
23:	learn: 20.9801795	total: 129ms	remaining: 408ms
24:	learn: 20.8036808	total: 134ms	remaining: 401ms
25:	learn: 20.6387539	total: 138ms	remaining: 393ms
26:	learn: 20.4401427	total: 142ms	remaining: 385ms
27:	learn: 20.2879575	total: 146ms	remaining: 376ms
28:	learn: 20.0538664	total: 151ms	remaining: 370ms
29:	learn: 19.8363102	total: 156ms	remaining: 364ms
30:	learn: 19.7015446	total: 161ms	remaining: 358ms
31:	learn: 19.5483114	total: 165ms	remaining: 351ms
32:	learn: 19.4163053	total: 170ms	remaining: 345ms
33:	learn: 19.2880625	total: 174ms	remaining: 339ms
34:	learn: 19.1303389	total: 183ms	remaining: 340ms
35:	learn: 18.9237448	total: 191ms	remaining: 339ms
36:	learn: 18.8142925	total: 198ms	remaining: 337ms
37:	learn: 18.6994696	total: 203ms	remaining: 331ms
38:	learn: 18.5629211	total: 209ms	remaining: 326ms
39:	learn: 18.4600917	total: 213ms	remaining: 320ms
40:	learn: 18.3567139	total: 217ms	remaining: 313ms
41:	learn: 18.2120527	total: 222ms	remaining: 306ms
42:	learn: 18.0688062	total: 226ms	remaining: 300ms
43:	learn: 17.9250181	total: 230ms	remaining: 293ms
44:	learn: 17.8399138	total: 239ms	remaining: 292ms
45:	learn: 17.6720713	total: 243ms	remaining: 285ms
46:	learn: 17.5273091	total: 247ms	remaining: 279ms
47:	learn: 17.4232814	total: 252ms	remaining: 273ms
48:	learn: 17.2957579	total: 257ms	remaining: 267ms
49:	learn: 17.1892874	total: 261ms	remaining: 261ms
50:	learn: 17.0490355	total: 265ms	remaining: 255ms
51:	learn: 16.9666450	total: 270ms	remaining: 249ms
52:	learn: 16.8600056	total: 274ms	remaining: 243ms
53:	learn: 16.7542588	total: 278ms	remaining: 237ms
54:	learn: 16.6316077	total: 283ms	remaining: 232ms
55:	learn: 16.5588112	total: 288ms	remaining: 226ms
56:	learn: 16.5010186	total: 292ms	remaining: 220ms
57:	learn: 16.4081540	total: 297ms	remaining: 215ms
58:	learn: 16.3040451	total: 302ms	remaining: 210ms
59:	learn: 16.1890564	total: 306ms	remaining: 204ms
60:	learn: 16.0977103	total: 310ms	remaining: 198ms
61:	learn: 15.9627607	total: 315ms	remaining: 193ms
62:	learn: 15.9022248	total: 319ms	remaining: 188ms
63:	learn: 15.8151881	total: 324ms	remaining: 182ms
64:	learn: 15.7353125	total: 328ms	remaining: 177ms
65:	learn: 15.6312897	total: 333ms	remaining: 172ms
66:	learn: 15.5330927	total: 338ms	remaining: 166ms
67:	learn: 15.4698681	total: 342ms	remaining: 161ms
68:	learn: 15.4108571	total: 347ms	remaining: 156ms
69:	learn: 15.3492945	total: 352ms	remaining: 151ms
70:	learn: 15.3036540	total: 357ms	remaining: 146ms
71:	learn: 15.2390833	total: 361ms	remaining: 140ms
72:	learn: 15.1556327	total: 366ms	remaining: 135ms
73:	learn: 15.1016315	total: 371ms	remaining: 130ms
74:	learn: 15.0287076	total: 376ms	remaining: 125ms
75:	learn: 14.9530572	total: 384ms	remaining: 121ms
76:	learn: 14.8965517	total: 392ms	remaining: 117ms
77:	learn: 14.8125426	total: 400ms	remaining: 113ms
78:	learn: 14.7435359	total: 408ms	remaining: 108ms
79:	learn: 14.6963163	total: 413ms	remaining: 103ms
80:	learn: 14.6200060	total: 419ms	remaining: 98.2ms
81:	learn: 14.5707760	total: 424ms	remaining: 93.1ms
82:	learn: 14.5053651	total: 430ms	remaining: 88.1ms
83:	learn: 14.4115458	total: 436ms	remaining: 83ms
84:	learn: 14.3117159	total: 442ms	remaining: 78ms
85:	learn: 14.2511326	total: 447ms	remaining: 72.8ms
86:	learn: 14.1372486	total: 466ms	remaining: 69.6ms
87:	learn: 14.0992301	total: 472ms	remaining: 64.3ms
88:	learn: 14.0228331	total: 476ms	remaining: 58.9ms
89:	learn: 13.9249836	total: 481ms	remaining: 53.5ms
90:	learn: 13.8679364	total: 486ms	remaining: 48.1ms
91:	learn: 13.8405578	total: 491ms	remaining: 42.7ms
92:	learn: 13.7711325	total: 496ms	remaining: 37.3ms
93:	learn: 13.7357019	total: 501ms	remaining: 31.9ms
94:	learn: 13.6735271	total: 505ms	remaining: 26.6ms
95:	learn: 13.5682393	total: 510ms	remaining: 21.2ms
96:	learn: 13.5342610	total: 514ms	remaining: 15.9ms
97:	learn: 13.4710034	total: 518ms	remaining: 10.6ms
98:	learn: 13.4022402	total: 522ms	remaining: 5.28ms
99:	learn: 13.3351238	total: 527ms	remaining: 0us
0:	learn: 42.9181702	total: 5.23ms	remaining: 518ms
1:	learn: 42.0286736	total: 9.8ms	remaining: 480ms
2:	learn: 41.2764568	total: 14.4ms	remaining: 465ms
3:	learn: 40.4721918	total: 22.8ms	remaining: 548ms
4:	learn: 39.8518928	total: 30.4ms	remaining: 578ms
5:	learn: 39.2645479	total: 50.1ms	remaining: 785ms
6:	learn: 38.4453704	total: 54.5ms	remaining: 724ms
7:	learn: 37.7122059	total: 58.9ms	remaining: 677ms
8:	learn: 36.9185796	total: 63.5ms	remaining: 642ms
9:	learn: 36.1668427	total: 67.9ms	remaining: 611ms
10:	learn: 35.5639029	total: 72.3ms	remaining: 585ms
11:	learn: 34.7724193	total: 76.4ms	remaining: 560ms
12:	learn: 34.3053433	total: 81.1ms	remaining: 542ms
13:	learn: 33.6561327	total: 82.4ms	remaining: 506ms
14:	learn: 33.0134042	total: 87ms	remaining: 493ms
15:	learn: 32.4483300	total: 91.4ms	remaining: 480ms
16:	learn: 31.8581144	total: 95.9ms	remaining: 468ms
17:	learn: 31.2858301	total: 100ms	remaining: 457ms
18:	learn: 30.8483018	total: 105ms	remaining: 448ms
19:	learn: 30.4174622	total: 109ms	remaining: 437ms
20:	learn: 29.8994411	total: 114ms	remaining: 428ms
21:	learn: 29.5045355	total: 118ms	remaining: 418ms
22:	learn: 28.9923519	total: 123ms	remaining: 411ms
23:	learn: 28.4255717	total: 128ms	remaining: 404ms
24:	learn: 28.0283139	total: 132ms	remaining: 396ms
25:	learn: 27.7434814	total: 137ms	remaining: 389ms
26:	learn: 27.2770731	total: 141ms	remaining: 382ms
27:	learn: 26.8928270	total: 145ms	remaining: 374ms
28:	learn: 26.4282671	total: 150ms	remaining: 366ms
29:	learn: 26.0272764	total: 154ms	remaining: 359ms
30:	learn: 25.7579312	total: 158ms	remaining: 352ms
31:	learn: 25.4542434	total: 162ms	remaining: 345ms
32:	learn: 25.1232564	total: 167ms	remaining: 339ms
33:	learn: 24.8110795	total: 171ms	remaining: 332ms
34:	learn: 24.5077579	total: 175ms	remaining: 325ms
35:	learn: 24.1909000	total: 179ms	remaining: 319ms
36:	learn: 23.8719468	total: 184ms	remaining: 313ms
37:	learn: 23.5764366	total: 185ms	remaining: 302ms
38:	learn: 23.3468086	total: 189ms	remaining: 296ms
39:	learn: 23.0908771	total: 194ms	remaining: 291ms
40:	learn: 22.8580876	total: 198ms	remaining: 285ms
41:	learn: 22.6060825	total: 203ms	remaining: 280ms
42:	learn: 22.4125407	total: 207ms	remaining: 275ms
43:	learn: 22.1990617	total: 211ms	remaining: 269ms
44:	learn: 21.9716164	total: 215ms	remaining: 263ms
45:	learn: 21.8360935	total: 220ms	remaining: 258ms
46:	learn: 21.6169256	total: 225ms	remaining: 253ms
47:	learn: 21.4620612	total: 235ms	remaining: 255ms
48:	learn: 21.2894194	total: 242ms	remaining: 252ms
49:	learn: 21.1066266	total: 248ms	remaining: 248ms
50:	learn: 20.9484898	total: 253ms	remaining: 243ms
51:	learn: 20.7195338	total: 259ms	remaining: 239ms
52:	learn: 20.4899740	total: 265ms	remaining: 235ms
53:	learn: 20.3356583	total: 271ms	remaining: 230ms
54:	learn: 20.0754393	total: 276ms	remaining: 226ms
55:	learn: 19.9199159	total: 281ms	remaining: 221ms
56:	learn: 19.7761128	total: 287ms	remaining: 216ms
57:	learn: 19.6533060	total: 292ms	remaining: 212ms
58:	learn: 19.5113942	total: 297ms	remaining: 207ms
59:	learn: 19.3985022	total: 303ms	remaining: 202ms
60:	learn: 19.2683443	total: 308ms	remaining: 197ms
61:	learn: 19.1460824	total: 313ms	remaining: 192ms
62:	learn: 19.0042655	total: 319ms	remaining: 187ms
63:	learn: 18.8720873	total: 324ms	remaining: 182ms
64:	learn: 18.7183888	total: 328ms	remaining: 177ms
65:	learn: 18.5472360	total: 333ms	remaining: 172ms
66:	learn: 18.3976642	total: 338ms	remaining: 166ms
67:	learn: 18.2282851	total: 343ms	remaining: 161ms
68:	learn: 18.1469157	total: 347ms	remaining: 156ms
69:	learn: 18.0649494	total: 352ms	remaining: 151ms
70:	learn: 17.9485405	total: 357ms	remaining: 146ms
71:	learn: 17.8460261	total: 363ms	remaining: 141ms
72:	learn: 17.7679843	total: 368ms	remaining: 136ms
73:	learn: 17.5989290	total: 373ms	remaining: 131ms
74:	learn: 17.4381322	total: 377ms	remaining: 126ms
75:	learn: 17.3370886	total: 381ms	remaining: 120ms
76:	learn: 17.2675308	total: 385ms	remaining: 115ms
77:	learn: 17.1946430	total: 390ms	remaining: 110ms
78:	learn: 17.0923725	total: 394ms	remaining: 105ms
79:	learn: 17.0537265	total: 399ms	remaining: 99.7ms
80:	learn: 16.9456831	total: 403ms	remaining: 94.6ms
81:	learn: 16.8457353	total: 408ms	remaining: 89.5ms
82:	learn: 16.7469310	total: 413ms	remaining: 84.6ms
83:	learn: 16.6679953	total: 418ms	remaining: 79.6ms
84:	learn: 16.6274189	total: 423ms	remaining: 74.6ms
85:	learn: 16.5516530	total: 428ms	remaining: 69.6ms
86:	learn: 16.4886066	total: 433ms	remaining: 64.7ms
87:	learn: 16.3947859	total: 438ms	remaining: 59.8ms
88:	learn: 16.3406495	total: 443ms	remaining: 54.7ms
89:	learn: 16.3019195	total: 448ms	remaining: 49.8ms
90:	learn: 16.1860681	total: 458ms	remaining: 45.3ms
91:	learn: 16.1282812	total: 466ms	remaining: 40.5ms
92:	learn: 16.0303652	total: 472ms	remaining: 35.5ms
93:	learn: 15.9561692	total: 477ms	remaining: 30.5ms
94:	learn: 15.8733994	total: 483ms	remaining: 25.4ms
95:	learn: 15.8108833	total: 488ms	remaining: 20.3ms
96:	learn: 15.7606004	total: 493ms	remaining: 15.2ms
97:	learn: 15.6984664	total: 497ms	remaining: 10.2ms
98:	learn: 15.6223632	total: 502ms	remaining: 5.07ms
99:	learn: 15.5671136	total: 507ms	remaining: 0us
0:	learn: 46.4788614	total: 2.22ms	remaining: 220ms
1:	learn: 45.7608372	total: 7.04ms	remaining: 345ms
2:	learn: 44.8825004	total: 11.6ms	remaining: 375ms
3:	learn: 44.0362738	total: 16.2ms	remaining: 389ms
4:	learn: 43.2086374	total: 21ms	remaining: 398ms
5:	learn: 42.5835773	total: 25.5ms	remaining: 400ms
6:	learn: 41.9673269	total: 30.1ms	remaining: 399ms
7:	learn: 41.4748717	total: 34.4ms	remaining: 396ms
8:	learn: 40.7129183	total: 39.1ms	remaining: 395ms
9:	learn: 39.8900884	total: 43.9ms	remaining: 395ms
10:	learn: 39.4142193	total: 48.4ms	remaining: 391ms
11:	learn: 38.8645613	total: 52.9ms	remaining: 388ms
12:	learn: 38.2394731	total: 57.4ms	remaining: 384ms
13:	learn: 37.6834515	total: 61.4ms	remaining: 377ms
14:	learn: 37.0673507	total: 65.6ms	remaining: 372ms
15:	learn: 36.4728340	total: 70ms	remaining: 367ms
16:	learn: 36.0489086	total: 74.4ms	remaining: 363ms
17:	learn: 35.4744141	total: 78.9ms	remaining: 359ms
18:	learn: 35.0106021	total: 83.4ms	remaining: 355ms
19:	learn: 34.5586053	total: 88ms	remaining: 352ms
20:	learn: 34.1308223	total: 92.5ms	remaining: 348ms
21:	learn: 33.7701450	total: 96.8ms	remaining: 343ms
22:	learn: 33.4425444	total: 101ms	remaining: 339ms
23:	learn: 33.0296412	total: 107ms	remaining: 338ms
24:	learn: 32.6359803	total: 112ms	remaining: 335ms
25:	learn: 32.1846182	total: 117ms	remaining: 332ms
26:	learn: 31.7620230	total: 121ms	remaining: 327ms
27:	learn: 31.4669337	total: 126ms	remaining: 323ms
28:	learn: 31.0792062	total: 133ms	remaining: 327ms
29:	learn: 30.7970537	total: 141ms	remaining: 329ms
30:	learn: 30.4952215	total: 151ms	remaining: 336ms
31:	learn: 30.2845344	total: 157ms	remaining: 333ms
32:	learn: 29.9592732	total: 164ms	remaining: 333ms
33:	learn: 29.6798596	total: 170ms	remaining: 329ms
34:	learn: 29.3368905	total: 175ms	remaining: 325ms
35:	learn: 29.0621238	total: 180ms	remaining: 320ms
36:	learn: 28.6445375	total: 185ms	remaining: 315ms
37:	learn: 28.2418096	total: 191ms	remaining: 311ms
38:	learn: 27.9495390	total: 196ms	remaining: 307ms
39:	learn: 27.6958160	total: 201ms	remaining: 302ms
40:	learn: 27.4811189	total: 206ms	remaining: 297ms
41:	learn: 27.1494420	total: 212ms	remaining: 292ms
42:	learn: 26.8388873	total: 217ms	remaining: 288ms
43:	learn: 26.5721300	total: 223ms	remaining: 283ms
44:	learn: 26.3384738	total: 228ms	remaining: 279ms
45:	learn: 26.1894781	total: 233ms	remaining: 273ms
46:	learn: 25.9580198	total: 237ms	remaining: 267ms
47:	learn: 25.7897985	total: 241ms	remaining: 261ms
48:	learn: 25.6000271	total: 246ms	remaining: 256ms
49:	learn: 25.4130873	total: 250ms	remaining: 250ms
50:	learn: 25.1699061	total: 255ms	remaining: 245ms
51:	learn: 24.9324449	total: 259ms	remaining: 239ms
52:	learn: 24.7729152	total: 264ms	remaining: 234ms
53:	learn: 24.5026563	total: 268ms	remaining: 228ms
54:	learn: 24.2332627	total: 273ms	remaining: 223ms
55:	learn: 23.9611984	total: 277ms	remaining: 218ms
56:	learn: 23.7862603	total: 281ms	remaining: 212ms
57:	learn: 23.6318154	total: 286ms	remaining: 207ms
58:	learn: 23.4443306	total: 290ms	remaining: 202ms
59:	learn: 23.2581425	total: 295ms	remaining: 196ms
60:	learn: 23.0549901	total: 300ms	remaining: 192ms
61:	learn: 22.8666218	total: 304ms	remaining: 187ms
62:	learn: 22.6956739	total: 309ms	remaining: 182ms
63:	learn: 22.5068544	total: 315ms	remaining: 177ms
64:	learn: 22.1859147	total: 320ms	remaining: 172ms
65:	learn: 22.0462043	total: 326ms	remaining: 168ms
66:	learn: 21.9329563	total: 338ms	remaining: 167ms
67:	learn: 21.8029736	total: 347ms	remaining: 163ms
68:	learn: 21.6861091	total: 354ms	remaining: 159ms
69:	learn: 21.4838140	total: 361ms	remaining: 155ms
70:	learn: 21.3548921	total: 366ms	remaining: 149ms
71:	learn: 21.2244517	total: 371ms	remaining: 144ms
72:	learn: 21.0702958	total: 376ms	remaining: 139ms
73:	learn: 20.9224662	total: 381ms	remaining: 134ms
74:	learn: 20.8150357	total: 385ms	remaining: 128ms
75:	learn: 20.6962739	total: 390ms	remaining: 123ms
76:	learn: 20.5809258	total: 394ms	remaining: 118ms
77:	learn: 20.4735470	total: 399ms	remaining: 113ms
78:	learn: 20.3778167	total: 403ms	remaining: 107ms
79:	learn: 20.2211268	total: 407ms	remaining: 102ms
80:	learn: 20.1478678	total: 412ms	remaining: 96.6ms
81:	learn: 20.1032967	total: 416ms	remaining: 91.3ms
82:	learn: 19.9236300	total: 420ms	remaining: 86.1ms
83:	learn: 19.8151745	total: 425ms	remaining: 81ms
84:	learn: 19.7099856	total: 429ms	remaining: 75.8ms
85:	learn: 19.6264833	total: 434ms	remaining: 70.6ms
86:	learn: 19.4916361	total: 438ms	remaining: 65.5ms
87:	learn: 19.4050529	total: 443ms	remaining: 60.4ms
88:	learn: 19.2547065	total: 447ms	remaining: 55.2ms
89:	learn: 19.1610225	total: 451ms	remaining: 50.1ms
90:	learn: 19.0898958	total: 455ms	remaining: 45ms
91:	learn: 19.0489664	total: 460ms	remaining: 40ms
92:	learn: 18.9206240	total: 464ms	remaining: 34.9ms
93:	learn: 18.8636239	total: 468ms	remaining: 29.9ms
94:	learn: 18.8126187	total: 473ms	remaining: 24.9ms
95:	learn: 18.7579275	total: 477ms	remaining: 19.9ms
96:	learn: 18.6382753	total: 481ms	remaining: 14.9ms
97:	learn: 18.5397334	total: 486ms	remaining: 9.91ms
98:	learn: 18.4375951	total: 490ms	remaining: 4.94ms
99:	learn: 18.4033755	total: 494ms	remaining: 0us
0:	learn: 46.1068821	total: 4.5ms	remaining: 446ms
1:	learn: 45.3970261	total: 13.7ms	remaining: 672ms
2:	learn: 44.8732696	total: 21.4ms	remaining: 692ms
3:	learn: 44.1290184	total: 26.5ms	remaining: 636ms
4:	learn: 43.3290271	total: 32.1ms	remaining: 610ms
5:	learn: 42.7069090	total: 37.4ms	remaining: 586ms
6:	learn: 42.0572971	total: 42.8ms	remaining: 569ms
7:	learn: 41.4797924	total: 48.4ms	remaining: 557ms
8:	learn: 41.0023122	total: 53.7ms	remaining: 543ms
9:	learn: 40.5330570	total: 58.7ms	remaining: 529ms
10:	learn: 39.9726545	total: 63.8ms	remaining: 516ms
11:	learn: 39.3044053	total: 68.8ms	remaining: 505ms
12:	learn: 38.8169735	total: 73.6ms	remaining: 492ms
13:	learn: 38.2458761	total: 78.9ms	remaining: 484ms
14:	learn: 37.6280321	total: 84.3ms	remaining: 478ms
15:	learn: 37.0800610	total: 89.1ms	remaining: 468ms
16:	learn: 36.5489363	total: 93.5ms	remaining: 456ms
17:	learn: 36.0981456	total: 97.7ms	remaining: 445ms
18:	learn: 35.6956274	total: 102ms	remaining: 435ms
19:	learn: 35.1471999	total: 106ms	remaining: 426ms
20:	learn: 34.6235408	total: 111ms	remaining: 417ms
21:	learn: 34.1987018	total: 115ms	remaining: 408ms
22:	learn: 33.8985062	total: 119ms	remaining: 400ms
23:	learn: 33.3869017	total: 124ms	remaining: 393ms
24:	learn: 32.9100550	total: 129ms	remaining: 386ms
25:	learn: 32.4156208	total: 133ms	remaining: 379ms
26:	learn: 31.9320493	total: 138ms	remaining: 373ms
27:	learn: 31.5711468	total: 143ms	remaining: 367ms
28:	learn: 31.2404433	total: 147ms	remaining: 360ms
29:	learn: 30.8807946	total: 152ms	remaining: 355ms
30:	learn: 30.5948438	total: 157ms	remaining: 350ms
31:	learn: 30.3885560	total: 162ms	remaining: 344ms
32:	learn: 30.0625101	total: 167ms	remaining: 338ms
33:	learn: 29.9113114	total: 172ms	remaining: 333ms
34:	learn: 29.6983470	total: 176ms	remaining: 328ms
35:	learn: 29.4775849	total: 181ms	remaining: 322ms
36:	learn: 29.0538055	total: 186ms	remaining: 316ms
37:	learn: 28.6792318	total: 191ms	remaining: 311ms
38:	learn: 28.4231383	total: 196ms	remaining: 306ms
39:	learn: 28.1078565	total: 205ms	remaining: 307ms
40:	learn: 27.9079179	total: 213ms	remaining: 307ms
41:	learn: 27.6721506	total: 221ms	remaining: 306ms
42:	learn: 27.4228033	total: 227ms	remaining: 301ms
43:	learn: 27.1740534	total: 233ms	remaining: 297ms
44:	learn: 26.8584071	total: 238ms	remaining: 291ms
45:	learn: 26.6902083	total: 243ms	remaining: 285ms
46:	learn: 26.4855335	total: 247ms	remaining: 279ms
47:	learn: 26.2730822	total: 251ms	remaining: 272ms
48:	learn: 26.1058689	total: 255ms	remaining: 266ms
49:	learn: 25.8587318	total: 260ms	remaining: 260ms
50:	learn: 25.7558005	total: 264ms	remaining: 254ms
51:	learn: 25.5846925	total: 268ms	remaining: 248ms
52:	learn: 25.4249887	total: 273ms	remaining: 242ms
53:	learn: 25.1911054	total: 277ms	remaining: 236ms
54:	learn: 25.0544755	total: 281ms	remaining: 230ms
55:	learn: 24.8874006	total: 285ms	remaining: 224ms
56:	learn: 24.7736279	total: 289ms	remaining: 218ms
57:	learn: 24.6156255	total: 294ms	remaining: 213ms
58:	learn: 24.3962421	total: 298ms	remaining: 207ms
59:	learn: 24.2685129	total: 303ms	remaining: 202ms
60:	learn: 24.1874096	total: 307ms	remaining: 196ms
61:	learn: 24.0394287	total: 311ms	remaining: 191ms
62:	learn: 23.9281768	total: 315ms	remaining: 185ms
63:	learn: 23.7423900	total: 319ms	remaining: 180ms
64:	learn: 23.6015209	total: 324ms	remaining: 174ms
65:	learn: 23.4677943	total: 328ms	remaining: 169ms
66:	learn: 23.3215256	total: 333ms	remaining: 164ms
67:	learn: 23.1869360	total: 337ms	remaining: 159ms
68:	learn: 22.9691180	total: 341ms	remaining: 153ms
69:	learn: 22.7531657	total: 346ms	remaining: 148ms
70:	learn: 22.6133477	total: 350ms	remaining: 143ms
71:	learn: 22.3452758	total: 355ms	remaining: 138ms
72:	learn: 22.2065350	total: 359ms	remaining: 133ms
73:	learn: 22.1071155	total: 364ms	remaining: 128ms
74:	learn: 21.9740686	total: 368ms	remaining: 123ms
75:	learn: 21.8892033	total: 372ms	remaining: 118ms
76:	learn: 21.8267882	total: 377ms	remaining: 113ms
77:	learn: 21.7423479	total: 382ms	remaining: 108ms
78:	learn: 21.6242075	total: 386ms	remaining: 103ms
79:	learn: 21.5016910	total: 391ms	remaining: 97.8ms
80:	learn: 21.4806623	total: 392ms	remaining: 92ms
81:	learn: 21.3166637	total: 398ms	remaining: 87.4ms
82:	learn: 21.2222534	total: 403ms	remaining: 82.6ms
83:	learn: 21.1535708	total: 409ms	remaining: 77.9ms
84:	learn: 21.0858902	total: 420ms	remaining: 74.2ms
85:	learn: 20.9206003	total: 434ms	remaining: 70.6ms
86:	learn: 20.8674695	total: 441ms	remaining: 65.9ms
87:	learn: 20.8089875	total: 447ms	remaining: 61ms
88:	learn: 20.7085401	total: 453ms	remaining: 56ms
89:	learn: 20.5513468	total: 458ms	remaining: 50.9ms
90:	learn: 20.4586742	total: 464ms	remaining: 45.9ms
91:	learn: 20.3932149	total: 469ms	remaining: 40.8ms
92:	learn: 20.3000895	total: 474ms	remaining: 35.7ms
93:	learn: 20.2254009	total: 480ms	remaining: 30.6ms
94:	learn: 20.1750050	total: 486ms	remaining: 25.6ms
95:	learn: 20.0715579	total: 491ms	remaining: 20.4ms
96:	learn: 19.9920082	total: 497ms	remaining: 15.4ms
97:	learn: 19.9664401	total: 503ms	remaining: 10.3ms
98:	learn: 19.8689673	total: 508ms	remaining: 5.13ms
99:	learn: 19.7537356	total: 513ms	remaining: 0us
0:	learn: 46.8832143	total: 6.2ms	remaining: 614ms
1:	learn: 45.8700349	total: 11.7ms	remaining: 573ms
2:	learn: 45.0546867	total: 16.8ms	remaining: 542ms
3:	learn: 44.2829439	total: 22.5ms	remaining: 540ms
4:	learn: 43.4609042	total: 27.3ms	remaining: 518ms
5:	learn: 42.6754991	total: 32.2ms	remaining: 505ms
6:	learn: 41.9234935	total: 37.2ms	remaining: 494ms
7:	learn: 41.3987518	total: 41.9ms	remaining: 482ms
8:	learn: 40.6625066	total: 46.5ms	remaining: 470ms
9:	learn: 40.0029561	total: 51ms	remaining: 459ms
10:	learn: 39.3897033	total: 55.9ms	remaining: 452ms
11:	learn: 38.7741453	total: 64ms	remaining: 470ms
12:	learn: 38.1201100	total: 71.4ms	remaining: 478ms
13:	learn: 37.5129454	total: 78ms	remaining: 479ms
14:	learn: 37.2062206	total: 83.4ms	remaining: 473ms
15:	learn: 36.6831741	total: 89.6ms	remaining: 470ms
16:	learn: 36.2902788	total: 94.8ms	remaining: 463ms
17:	learn: 35.7639930	total: 99.3ms	remaining: 453ms
18:	learn: 35.2580953	total: 104ms	remaining: 443ms
19:	learn: 34.7809739	total: 108ms	remaining: 434ms
20:	learn: 34.1330433	total: 113ms	remaining: 424ms
21:	learn: 33.7302219	total: 117ms	remaining: 415ms
22:	learn: 33.3502495	total: 122ms	remaining: 410ms
23:	learn: 33.0067804	total: 127ms	remaining: 402ms
24:	learn: 32.6897855	total: 131ms	remaining: 394ms
25:	learn: 32.4361119	total: 135ms	remaining: 385ms
26:	learn: 32.1278981	total: 140ms	remaining: 378ms
27:	learn: 31.7863721	total: 144ms	remaining: 371ms
28:	learn: 31.4791450	total: 149ms	remaining: 364ms
29:	learn: 31.1760161	total: 153ms	remaining: 357ms
30:	learn: 30.9238888	total: 157ms	remaining: 350ms
31:	learn: 30.5500905	total: 161ms	remaining: 343ms
32:	learn: 30.3078126	total: 166ms	remaining: 337ms
33:	learn: 30.0480921	total: 170ms	remaining: 331ms
34:	learn: 29.8623884	total: 175ms	remaining: 324ms
35:	learn: 29.5991038	total: 179ms	remaining: 318ms
36:	learn: 29.4061161	total: 183ms	remaining: 312ms
37:	learn: 29.0269515	total: 187ms	remaining: 306ms
38:	learn: 28.8224959	total: 191ms	remaining: 299ms
39:	learn: 28.6417843	total: 196ms	remaining: 293ms
40:	learn: 28.3633368	total: 201ms	remaining: 289ms
41:	learn: 28.0200246	total: 205ms	remaining: 283ms
42:	learn: 27.7221254	total: 210ms	remaining: 278ms
43:	learn: 27.5105818	total: 215ms	remaining: 273ms
44:	learn: 27.3551010	total: 220ms	remaining: 268ms
45:	learn: 27.0787522	total: 224ms	remaining: 264ms
46:	learn: 26.8726317	total: 230ms	remaining: 259ms
47:	learn: 26.8003277	total: 237ms	remaining: 256ms
48:	learn: 26.5493785	total: 244ms	remaining: 254ms
49:	learn: 26.3699550	total: 251ms	remaining: 251ms
50:	learn: 26.1519631	total: 256ms	remaining: 246ms
51:	learn: 25.9277325	total: 261ms	remaining: 241ms
52:	learn: 25.7286035	total: 267ms	remaining: 237ms
53:	learn: 25.4999193	total: 273ms	remaining: 233ms
54:	learn: 25.3434703	total: 279ms	remaining: 228ms
55:	learn: 25.1497545	total: 284ms	remaining: 223ms
56:	learn: 24.9498143	total: 290ms	remaining: 219ms
57:	learn: 24.6509390	total: 295ms	remaining: 214ms
58:	learn: 24.5576144	total: 301ms	remaining: 209ms
59:	learn: 24.4265144	total: 307ms	remaining: 204ms
60:	learn: 24.3100706	total: 312ms	remaining: 199ms
61:	learn: 24.1727952	total: 317ms	remaining: 194ms
62:	learn: 24.0478558	total: 323ms	remaining: 190ms
63:	learn: 23.9124577	total: 328ms	remaining: 184ms
64:	learn: 23.7703718	total: 333ms	remaining: 179ms
65:	learn: 23.5975027	total: 338ms	remaining: 174ms
66:	learn: 23.4318077	total: 343ms	remaining: 169ms
67:	learn: 23.3099691	total: 349ms	remaining: 164ms
68:	learn: 23.1947982	total: 354ms	remaining: 159ms
69:	learn: 23.0260174	total: 360ms	remaining: 154ms
70:	learn: 22.8523100	total: 363ms	remaining: 148ms
71:	learn: 22.8028534	total: 368ms	remaining: 143ms
72:	learn: 22.6880658	total: 372ms	remaining: 138ms
73:	learn: 22.5956809	total: 376ms	remaining: 132ms
74:	learn: 22.4692932	total: 381ms	remaining: 127ms
75:	learn: 22.2863504	total: 385ms	remaining: 122ms
76:	learn: 22.1911237	total: 389ms	remaining: 116ms
77:	learn: 22.1098391	total: 394ms	remaining: 111ms
78:	learn: 22.0182738	total: 398ms	remaining: 106ms
79:	learn: 21.9306746	total: 402ms	remaining: 101ms
80:	learn: 21.7508233	total: 407ms	remaining: 95.4ms
81:	learn: 21.7108446	total: 411ms	remaining: 90.3ms
82:	learn: 21.5931852	total: 416ms	remaining: 85.2ms
83:	learn: 21.4480361	total: 420ms	remaining: 80ms
84:	learn: 21.3092119	total: 425ms	remaining: 74.9ms
85:	learn: 21.2605557	total: 429ms	remaining: 69.9ms
86:	learn: 21.1123597	total: 434ms	remaining: 64.8ms
87:	learn: 21.0115642	total: 439ms	remaining: 59.8ms
88:	learn: 20.9389040	total: 444ms	remaining: 54.8ms
89:	learn: 20.8300300	total: 448ms	remaining: 49.8ms
90:	learn: 20.7159733	total: 453ms	remaining: 44.8ms
91:	learn: 20.6282090	total: 461ms	remaining: 40.1ms
92:	learn: 20.5164529	total: 468ms	remaining: 35.2ms
93:	learn: 20.4692032	total: 475ms	remaining: 30.3ms
94:	learn: 20.3768451	total: 480ms	remaining: 25.3ms
95:	learn: 20.2808056	total: 486ms	remaining: 20.3ms
96:	learn: 20.2082089	total: 491ms	remaining: 15.2ms
97:	learn: 20.1698768	total: 495ms	remaining: 10.1ms
98:	learn: 20.1048816	total: 499ms	remaining: 5.04ms
99:	learn: 20.0086159	total: 504ms	remaining: 0us
0:	learn: 27.6506730	total: 4.73ms	remaining: 469ms
1:	learn: 27.1638793	total: 8.8ms	remaining: 431ms
2:	learn: 26.8000665	total: 13ms	remaining: 422ms
3:	learn: 26.4256132	total: 17.8ms	remaining: 427ms
4:	learn: 26.0088351	total: 22ms	remaining: 419ms
5:	learn: 25.7558298	total: 26.3ms	remaining: 412ms
6:	learn: 25.3380711	total: 30.6ms	remaining: 406ms
7:	learn: 25.0571611	total: 34.7ms	remaining: 399ms
8:	learn: 24.6790148	total: 38.6ms	remaining: 391ms
9:	learn: 24.3600941	total: 42.8ms	remaining: 386ms
10:	learn: 24.1105667	total: 47ms	remaining: 380ms
11:	learn: 23.7736542	total: 51.5ms	remaining: 378ms
12:	learn: 23.5824429	total: 55.9ms	remaining: 374ms
13:	learn: 23.2658303	total: 60.3ms	remaining: 370ms
14:	learn: 23.0061886	total: 64.8ms	remaining: 367ms
15:	learn: 22.8060389	total: 69.4ms	remaining: 364ms
16:	learn: 22.5899735	total: 73.9ms	remaining: 361ms
17:	learn: 22.3625048	total: 78.6ms	remaining: 358ms
18:	learn: 22.0706477	total: 83.1ms	remaining: 354ms
19:	learn: 21.8739394	total: 87.9ms	remaining: 351ms
20:	learn: 21.6143650	total: 92.6ms	remaining: 348ms
21:	learn: 21.4571623	total: 97.2ms	remaining: 345ms
22:	learn: 21.2395769	total: 102ms	remaining: 341ms
23:	learn: 20.9801795	total: 107ms	remaining: 338ms
24:	learn: 20.8036808	total: 115ms	remaining: 345ms
25:	learn: 20.6387539	total: 122ms	remaining: 348ms
26:	learn: 20.4401427	total: 131ms	remaining: 355ms
27:	learn: 20.2879575	total: 138ms	remaining: 354ms
28:	learn: 20.0538664	total: 144ms	remaining: 352ms
29:	learn: 19.8363102	total: 149ms	remaining: 347ms
30:	learn: 19.7015446	total: 154ms	remaining: 343ms
31:	learn: 19.5483114	total: 159ms	remaining: 339ms
32:	learn: 19.4163053	total: 165ms	remaining: 335ms
33:	learn: 19.2880625	total: 170ms	remaining: 330ms
34:	learn: 19.1303389	total: 175ms	remaining: 325ms
35:	learn: 18.9237448	total: 181ms	remaining: 321ms
36:	learn: 18.8142925	total: 186ms	remaining: 317ms
37:	learn: 18.6994696	total: 191ms	remaining: 312ms
38:	learn: 18.5629211	total: 196ms	remaining: 307ms
39:	learn: 18.4600917	total: 201ms	remaining: 302ms
40:	learn: 18.3567139	total: 207ms	remaining: 298ms
41:	learn: 18.2120527	total: 211ms	remaining: 292ms
42:	learn: 18.0688062	total: 215ms	remaining: 286ms
43:	learn: 17.9250181	total: 220ms	remaining: 279ms
44:	learn: 17.8399138	total: 224ms	remaining: 274ms
45:	learn: 17.6720713	total: 228ms	remaining: 268ms
46:	learn: 17.5273091	total: 233ms	remaining: 262ms
47:	learn: 17.4232814	total: 237ms	remaining: 256ms
48:	learn: 17.2957579	total: 241ms	remaining: 251ms
49:	learn: 17.1892874	total: 246ms	remaining: 246ms
50:	learn: 17.0490355	total: 250ms	remaining: 240ms
51:	learn: 16.9666450	total: 255ms	remaining: 235ms
52:	learn: 16.8600056	total: 260ms	remaining: 230ms
53:	learn: 16.7542588	total: 264ms	remaining: 225ms
54:	learn: 16.6316077	total: 268ms	remaining: 220ms
55:	learn: 16.5588112	total: 273ms	remaining: 215ms
56:	learn: 16.5010186	total: 278ms	remaining: 210ms
57:	learn: 16.4081540	total: 282ms	remaining: 204ms
58:	learn: 16.3040451	total: 286ms	remaining: 199ms
59:	learn: 16.1890564	total: 291ms	remaining: 194ms
60:	learn: 16.0977103	total: 296ms	remaining: 189ms
61:	learn: 15.9627607	total: 301ms	remaining: 184ms
62:	learn: 15.9022248	total: 305ms	remaining: 179ms
63:	learn: 15.8151881	total: 310ms	remaining: 174ms
64:	learn: 15.7353125	total: 315ms	remaining: 170ms
65:	learn: 15.6312897	total: 322ms	remaining: 166ms
66:	learn: 15.5330927	total: 329ms	remaining: 162ms
67:	learn: 15.4698681	total: 336ms	remaining: 158ms
68:	learn: 15.4108571	total: 342ms	remaining: 154ms
69:	learn: 15.3492945	total: 348ms	remaining: 149ms
70:	learn: 15.3036540	total: 353ms	remaining: 144ms
71:	learn: 15.2390833	total: 357ms	remaining: 139ms
72:	learn: 15.1556327	total: 361ms	remaining: 133ms
73:	learn: 15.1016315	total: 366ms	remaining: 128ms
74:	learn: 15.0287076	total: 370ms	remaining: 123ms
75:	learn: 14.9530572	total: 374ms	remaining: 118ms
76:	learn: 14.8965517	total: 379ms	remaining: 113ms
77:	learn: 14.8125426	total: 384ms	remaining: 108ms
78:	learn: 14.7435359	total: 388ms	remaining: 103ms
79:	learn: 14.6963163	total: 392ms	remaining: 98ms
80:	learn: 14.6200060	total: 396ms	remaining: 93ms
81:	learn: 14.5707760	total: 401ms	remaining: 88ms
82:	learn: 14.5053651	total: 405ms	remaining: 83ms
83:	learn: 14.4115458	total: 409ms	remaining: 78ms
84:	learn: 14.3117159	total: 414ms	remaining: 73ms
85:	learn: 14.2511326	total: 418ms	remaining: 68.1ms
86:	learn: 14.1372486	total: 423ms	remaining: 63.2ms
87:	learn: 14.0992301	total: 428ms	remaining: 58.3ms
88:	learn: 14.0228331	total: 432ms	remaining: 53.4ms
89:	learn: 13.9249836	total: 437ms	remaining: 48.5ms
90:	learn: 13.8679364	total: 441ms	remaining: 43.6ms
91:	learn: 13.8405578	total: 445ms	remaining: 38.7ms
92:	learn: 13.7711325	total: 450ms	remaining: 33.9ms
93:	learn: 13.7357019	total: 455ms	remaining: 29ms
94:	learn: 13.6735271	total: 459ms	remaining: 24.2ms
95:	learn: 13.5682393	total: 464ms	remaining: 19.3ms
96:	learn: 13.5342610	total: 468ms	remaining: 14.5ms
97:	learn: 13.4710034	total: 473ms	remaining: 9.64ms
98:	learn: 13.4022402	total: 477ms	remaining: 4.82ms
99:	learn: 13.3351238	total: 481ms	remaining: 0us
0:	learn: 42.9181702	total: 9.71ms	remaining: 962ms
1:	learn: 42.0286736	total: 17.6ms	remaining: 863ms
2:	learn: 41.2764568	total: 23.4ms	remaining: 756ms
3:	learn: 40.4721918	total: 28.9ms	remaining: 693ms
4:	learn: 39.8518928	total: 33.9ms	remaining: 645ms
5:	learn: 39.2645479	total: 39.3ms	remaining: 616ms
6:	learn: 38.4453704	total: 44.6ms	remaining: 593ms
7:	learn: 37.7122059	total: 50.1ms	remaining: 576ms
8:	learn: 36.9185796	total: 55.4ms	remaining: 560ms
9:	learn: 36.1668427	total: 60.6ms	remaining: 546ms
10:	learn: 35.5639029	total: 65.7ms	remaining: 532ms
11:	learn: 34.7724193	total: 70.6ms	remaining: 518ms
12:	learn: 34.3053433	total: 76.4ms	remaining: 511ms
13:	learn: 33.6561327	total: 78.4ms	remaining: 482ms
14:	learn: 33.0134042	total: 83.6ms	remaining: 474ms
15:	learn: 32.4483300	total: 88.1ms	remaining: 462ms
16:	learn: 31.8581144	total: 92.3ms	remaining: 451ms
17:	learn: 31.2858301	total: 96.7ms	remaining: 441ms
18:	learn: 30.8483018	total: 101ms	remaining: 432ms
19:	learn: 30.4174622	total: 106ms	remaining: 422ms
20:	learn: 29.8994411	total: 110ms	remaining: 415ms
21:	learn: 29.5045355	total: 115ms	remaining: 409ms
22:	learn: 28.9923519	total: 120ms	remaining: 403ms
23:	learn: 28.4255717	total: 125ms	remaining: 396ms
24:	learn: 28.0283139	total: 130ms	remaining: 389ms
25:	learn: 27.7434814	total: 135ms	remaining: 383ms
26:	learn: 27.2770731	total: 139ms	remaining: 377ms
27:	learn: 26.8928270	total: 144ms	remaining: 369ms
28:	learn: 26.4282671	total: 148ms	remaining: 363ms
29:	learn: 26.0272764	total: 153ms	remaining: 357ms
30:	learn: 25.7579312	total: 157ms	remaining: 350ms
31:	learn: 25.4542434	total: 161ms	remaining: 343ms
32:	learn: 25.1232564	total: 166ms	remaining: 337ms
33:	learn: 24.8110795	total: 171ms	remaining: 332ms
34:	learn: 24.5077579	total: 175ms	remaining: 326ms
35:	learn: 24.1909000	total: 180ms	remaining: 320ms
36:	learn: 23.8719468	total: 185ms	remaining: 315ms
37:	learn: 23.5764366	total: 186ms	remaining: 304ms
38:	learn: 23.3468086	total: 191ms	remaining: 299ms
39:	learn: 23.0908771	total: 199ms	remaining: 298ms
40:	learn: 22.8580876	total: 207ms	remaining: 297ms
41:	learn: 22.6060825	total: 213ms	remaining: 294ms
42:	learn: 22.4125407	total: 219ms	remaining: 290ms
43:	learn: 22.1990617	total: 225ms	remaining: 286ms
44:	learn: 21.9716164	total: 230ms	remaining: 281ms
45:	learn: 21.8360935	total: 234ms	remaining: 275ms
46:	learn: 21.6169256	total: 239ms	remaining: 269ms
47:	learn: 21.4620612	total: 243ms	remaining: 264ms
48:	learn: 21.2894194	total: 248ms	remaining: 258ms
49:	learn: 21.1066266	total: 253ms	remaining: 253ms
50:	learn: 20.9484898	total: 257ms	remaining: 247ms
51:	learn: 20.7195338	total: 262ms	remaining: 241ms
52:	learn: 20.4899740	total: 266ms	remaining: 236ms
53:	learn: 20.3356583	total: 270ms	remaining: 230ms
54:	learn: 20.0754393	total: 275ms	remaining: 225ms
55:	learn: 19.9199159	total: 279ms	remaining: 219ms
56:	learn: 19.7761128	total: 283ms	remaining: 213ms
57:	learn: 19.6533060	total: 288ms	remaining: 208ms
58:	learn: 19.5113942	total: 292ms	remaining: 203ms
59:	learn: 19.3985022	total: 297ms	remaining: 198ms
60:	learn: 19.2683443	total: 301ms	remaining: 192ms
61:	learn: 19.1460824	total: 305ms	remaining: 187ms
62:	learn: 19.0042655	total: 309ms	remaining: 182ms
63:	learn: 18.8720873	total: 314ms	remaining: 177ms
64:	learn: 18.7183888	total: 318ms	remaining: 171ms
65:	learn: 18.5472360	total: 323ms	remaining: 166ms
66:	learn: 18.3976642	total: 327ms	remaining: 161ms
67:	learn: 18.2282851	total: 331ms	remaining: 156ms
68:	learn: 18.1469157	total: 335ms	remaining: 151ms
69:	learn: 18.0649494	total: 339ms	remaining: 145ms
70:	learn: 17.9485405	total: 344ms	remaining: 141ms
71:	learn: 17.8460261	total: 348ms	remaining: 135ms
72:	learn: 17.7679843	total: 353ms	remaining: 130ms
73:	learn: 17.5989290	total: 357ms	remaining: 125ms
74:	learn: 17.4381322	total: 361ms	remaining: 120ms
75:	learn: 17.3370886	total: 366ms	remaining: 116ms
76:	learn: 17.2675308	total: 371ms	remaining: 111ms
77:	learn: 17.1946430	total: 376ms	remaining: 106ms
78:	learn: 17.0923725	total: 380ms	remaining: 101ms
79:	learn: 17.0537265	total: 385ms	remaining: 96.2ms
80:	learn: 16.9456831	total: 390ms	remaining: 91.4ms
81:	learn: 16.8457353	total: 399ms	remaining: 87.5ms
82:	learn: 16.7469310	total: 406ms	remaining: 83.1ms
83:	learn: 16.6679953	total: 416ms	remaining: 79.2ms
84:	learn: 16.6274189	total: 424ms	remaining: 74.8ms
85:	learn: 16.5516530	total: 429ms	remaining: 69.8ms
86:	learn: 16.4886066	total: 434ms	remaining: 64.9ms
87:	learn: 16.3947859	total: 439ms	remaining: 59.9ms
88:	learn: 16.3406495	total: 445ms	remaining: 55ms
89:	learn: 16.3019195	total: 450ms	remaining: 50ms
90:	learn: 16.1860681	total: 455ms	remaining: 45ms
91:	learn: 16.1282812	total: 460ms	remaining: 40ms
92:	learn: 16.0303652	total: 466ms	remaining: 35ms
93:	learn: 15.9561692	total: 470ms	remaining: 30ms
94:	learn: 15.8733994	total: 475ms	remaining: 25ms
95:	learn: 15.8108833	total: 479ms	remaining: 20ms
96:	learn: 15.7606004	total: 484ms	remaining: 15ms
97:	learn: 15.6984664	total: 489ms	remaining: 9.98ms
98:	learn: 15.6223632	total: 494ms	remaining: 4.99ms
99:	learn: 15.5671136	total: 499ms	remaining: 0us
0:	learn: 46.4788614	total: 1.95ms	remaining: 193ms
1:	learn: 45.7608372	total: 6.54ms	remaining: 321ms
2:	learn: 44.8825004	total: 10.9ms	remaining: 352ms
3:	learn: 44.0362738	total: 15.3ms	remaining: 368ms
4:	learn: 43.2086374	total: 19.9ms	remaining: 377ms
5:	learn: 42.5835773	total: 24.1ms	remaining: 378ms
6:	learn: 41.9673269	total: 28.9ms	remaining: 384ms
7:	learn: 41.4748717	total: 33.6ms	remaining: 386ms
8:	learn: 40.7129183	total: 37.7ms	remaining: 381ms
9:	learn: 39.8900884	total: 42.2ms	remaining: 380ms
10:	learn: 39.4142193	total: 46.8ms	remaining: 379ms
11:	learn: 38.8645613	total: 51.3ms	remaining: 376ms
12:	learn: 38.2394731	total: 55.9ms	remaining: 374ms
13:	learn: 37.6834515	total: 60.4ms	remaining: 371ms
14:	learn: 37.0673507	total: 64.8ms	remaining: 367ms
15:	learn: 36.4728340	total: 69.7ms	remaining: 366ms
16:	learn: 36.0489086	total: 79.6ms	remaining: 389ms
17:	learn: 35.4744141	total: 102ms	remaining: 467ms
18:	learn: 35.0106021	total: 107ms	remaining: 455ms
19:	learn: 34.5586053	total: 111ms	remaining: 445ms
20:	learn: 34.1308223	total: 115ms	remaining: 434ms
21:	learn: 33.7701450	total: 120ms	remaining: 425ms
22:	learn: 33.4425444	total: 124ms	remaining: 416ms
23:	learn: 33.0296412	total: 128ms	remaining: 407ms
24:	learn: 32.6359803	total: 133ms	remaining: 398ms
25:	learn: 32.1846182	total: 137ms	remaining: 389ms
26:	learn: 31.7620230	total: 141ms	remaining: 382ms
27:	learn: 31.4669337	total: 146ms	remaining: 374ms
28:	learn: 31.0792062	total: 150ms	remaining: 367ms
29:	learn: 30.7970537	total: 154ms	remaining: 360ms
30:	learn: 30.4952215	total: 159ms	remaining: 354ms
31:	learn: 30.2845344	total: 163ms	remaining: 346ms
32:	learn: 29.9592732	total: 167ms	remaining: 340ms
33:	learn: 29.6798596	total: 172ms	remaining: 333ms
34:	learn: 29.3368905	total: 176ms	remaining: 327ms
35:	learn: 29.0621238	total: 180ms	remaining: 321ms
36:	learn: 28.6445375	total: 185ms	remaining: 315ms
37:	learn: 28.2418096	total: 190ms	remaining: 310ms
38:	learn: 27.9495390	total: 194ms	remaining: 304ms
39:	learn: 27.6958160	total: 199ms	remaining: 298ms
40:	learn: 27.4811189	total: 203ms	remaining: 292ms
41:	learn: 27.1494420	total: 208ms	remaining: 287ms
42:	learn: 26.8388873	total: 212ms	remaining: 281ms
43:	learn: 26.5721300	total: 216ms	remaining: 275ms
44:	learn: 26.3384738	total: 220ms	remaining: 269ms
45:	learn: 26.1894781	total: 225ms	remaining: 264ms
46:	learn: 25.9580198	total: 230ms	remaining: 259ms
47:	learn: 25.7897985	total: 234ms	remaining: 254ms
48:	learn: 25.6000271	total: 239ms	remaining: 248ms
49:	learn: 25.4130873	total: 243ms	remaining: 243ms
50:	learn: 25.1699061	total: 248ms	remaining: 239ms
51:	learn: 24.9324449	total: 253ms	remaining: 234ms
52:	learn: 24.7729152	total: 258ms	remaining: 228ms
53:	learn: 24.5026563	total: 263ms	remaining: 224ms
54:	learn: 24.2332627	total: 267ms	remaining: 219ms
55:	learn: 23.9611984	total: 274ms	remaining: 216ms
56:	learn: 23.7862603	total: 282ms	remaining: 213ms
57:	learn: 23.6318154	total: 292ms	remaining: 211ms
58:	learn: 23.4443306	total: 298ms	remaining: 207ms
59:	learn: 23.2581425	total: 305ms	remaining: 204ms
60:	learn: 23.0549901	total: 310ms	remaining: 199ms
61:	learn: 22.8666218	total: 316ms	remaining: 194ms
62:	learn: 22.6956739	total: 332ms	remaining: 195ms
63:	learn: 22.5068544	total: 337ms	remaining: 190ms
64:	learn: 22.1859147	total: 343ms	remaining: 185ms
65:	learn: 22.0462043	total: 348ms	remaining: 179ms
66:	learn: 21.9329563	total: 354ms	remaining: 174ms
67:	learn: 21.8029736	total: 359ms	remaining: 169ms
68:	learn: 21.6861091	total: 365ms	remaining: 164ms
69:	learn: 21.4838140	total: 371ms	remaining: 159ms
70:	learn: 21.3548921	total: 375ms	remaining: 153ms
71:	learn: 21.2244517	total: 380ms	remaining: 148ms
72:	learn: 21.0702958	total: 385ms	remaining: 142ms
73:	learn: 20.9224662	total: 389ms	remaining: 137ms
74:	learn: 20.8150357	total: 394ms	remaining: 131ms
75:	learn: 20.6962739	total: 398ms	remaining: 126ms
76:	learn: 20.5809258	total: 403ms	remaining: 120ms
77:	learn: 20.4735470	total: 408ms	remaining: 115ms
78:	learn: 20.3778167	total: 412ms	remaining: 110ms
79:	learn: 20.2211268	total: 417ms	remaining: 104ms
80:	learn: 20.1478678	total: 421ms	remaining: 98.7ms
81:	learn: 20.1032967	total: 426ms	remaining: 93.5ms
82:	learn: 19.9236300	total: 430ms	remaining: 88.2ms
83:	learn: 19.8151745	total: 435ms	remaining: 82.9ms
84:	learn: 19.7099856	total: 440ms	remaining: 77.7ms
85:	learn: 19.6264833	total: 445ms	remaining: 72.4ms
86:	learn: 19.4916361	total: 449ms	remaining: 67.1ms
87:	learn: 19.4050529	total: 455ms	remaining: 62ms
88:	learn: 19.2547065	total: 459ms	remaining: 56.8ms
89:	learn: 19.1610225	total: 466ms	remaining: 51.8ms
90:	learn: 19.0898958	total: 474ms	remaining: 46.8ms
91:	learn: 19.0489664	total: 481ms	remaining: 41.8ms
92:	learn: 18.9206240	total: 487ms	remaining: 36.6ms
93:	learn: 18.8636239	total: 492ms	remaining: 31.4ms
94:	learn: 18.8126187	total: 498ms	remaining: 26.2ms
95:	learn: 18.7579275	total: 504ms	remaining: 21ms
96:	learn: 18.6382753	total: 509ms	remaining: 15.7ms
97:	learn: 18.5397334	total: 514ms	remaining: 10.5ms
98:	learn: 18.4375951	total: 518ms	remaining: 5.23ms
99:	learn: 18.4033755	total: 523ms	remaining: 0us
0:	learn: 46.1068821	total: 1.87ms	remaining: 185ms
1:	learn: 45.3970261	total: 6.36ms	remaining: 312ms
2:	learn: 44.8732696	total: 10.8ms	remaining: 349ms
3:	learn: 44.1290184	total: 14.8ms	remaining: 355ms
4:	learn: 43.3290271	total: 19.1ms	remaining: 363ms
5:	learn: 42.7069090	total: 23.3ms	remaining: 365ms
6:	learn: 42.0572971	total: 27.6ms	remaining: 366ms
7:	learn: 41.4797924	total: 32.2ms	remaining: 371ms
8:	learn: 41.0023122	total: 36.6ms	remaining: 370ms
9:	learn: 40.5330570	total: 40.7ms	remaining: 367ms
10:	learn: 39.9726545	total: 45ms	remaining: 364ms
11:	learn: 39.3044053	total: 49.2ms	remaining: 360ms
12:	learn: 38.8169735	total: 53.6ms	remaining: 359ms
13:	learn: 38.2458761	total: 57.5ms	remaining: 353ms
14:	learn: 37.6280321	total: 61.7ms	remaining: 350ms
15:	learn: 37.0800610	total: 66.4ms	remaining: 349ms
16:	learn: 36.5489363	total: 71.2ms	remaining: 348ms
17:	learn: 36.0981456	total: 75.4ms	remaining: 344ms
18:	learn: 35.6956274	total: 79.6ms	remaining: 339ms
19:	learn: 35.1471999	total: 84.3ms	remaining: 337ms
20:	learn: 34.6235408	total: 89ms	remaining: 335ms
21:	learn: 34.1987018	total: 93.8ms	remaining: 332ms
22:	learn: 33.8985062	total: 98.6ms	remaining: 330ms
23:	learn: 33.3869017	total: 103ms	remaining: 327ms
24:	learn: 32.9100550	total: 108ms	remaining: 323ms
25:	learn: 32.4156208	total: 114ms	remaining: 324ms
26:	learn: 31.9320493	total: 123ms	remaining: 331ms
27:	learn: 31.5711468	total: 134ms	remaining: 344ms
28:	learn: 31.2404433	total: 140ms	remaining: 344ms
29:	learn: 30.8807946	total: 147ms	remaining: 344ms
30:	learn: 30.5948438	total: 153ms	remaining: 340ms
31:	learn: 30.3885560	total: 158ms	remaining: 336ms
32:	learn: 30.0625101	total: 163ms	remaining: 332ms
33:	learn: 29.9113114	total: 169ms	remaining: 328ms
34:	learn: 29.6983470	total: 174ms	remaining: 323ms
35:	learn: 29.4775849	total: 179ms	remaining: 319ms
36:	learn: 29.0538055	total: 185ms	remaining: 314ms
37:	learn: 28.6792318	total: 190ms	remaining: 310ms
38:	learn: 28.4231383	total: 195ms	remaining: 305ms
39:	learn: 28.1078565	total: 200ms	remaining: 300ms
40:	learn: 27.9079179	total: 205ms	remaining: 296ms
41:	learn: 27.6721506	total: 211ms	remaining: 291ms
42:	learn: 27.4228033	total: 215ms	remaining: 285ms
43:	learn: 27.1740534	total: 219ms	remaining: 279ms
44:	learn: 26.8584071	total: 224ms	remaining: 274ms
45:	learn: 26.6902083	total: 228ms	remaining: 268ms
46:	learn: 26.4855335	total: 232ms	remaining: 262ms
47:	learn: 26.2730822	total: 236ms	remaining: 256ms
48:	learn: 26.1058689	total: 241ms	remaining: 251ms
49:	learn: 25.8587318	total: 245ms	remaining: 245ms
50:	learn: 25.7558005	total: 249ms	remaining: 239ms
51:	learn: 25.5846925	total: 253ms	remaining: 234ms
52:	learn: 25.4249887	total: 258ms	remaining: 229ms
53:	learn: 25.1911054	total: 262ms	remaining: 223ms
54:	learn: 25.0544755	total: 266ms	remaining: 218ms
55:	learn: 24.8874006	total: 271ms	remaining: 213ms
56:	learn: 24.7736279	total: 275ms	remaining: 207ms
57:	learn: 24.6156255	total: 279ms	remaining: 202ms
58:	learn: 24.3962421	total: 284ms	remaining: 197ms
59:	learn: 24.2685129	total: 289ms	remaining: 192ms
60:	learn: 24.1874096	total: 293ms	remaining: 187ms
61:	learn: 24.0394287	total: 298ms	remaining: 182ms
62:	learn: 23.9281768	total: 302ms	remaining: 178ms
63:	learn: 23.7423900	total: 307ms	remaining: 173ms
64:	learn: 23.6015209	total: 312ms	remaining: 168ms
65:	learn: 23.4677943	total: 320ms	remaining: 165ms
66:	learn: 23.3215256	total: 328ms	remaining: 161ms
67:	learn: 23.1869360	total: 335ms	remaining: 157ms
68:	learn: 22.9691180	total: 340ms	remaining: 153ms
69:	learn: 22.7531657	total: 346ms	remaining: 148ms
70:	learn: 22.6133477	total: 351ms	remaining: 143ms
71:	learn: 22.3452758	total: 355ms	remaining: 138ms
72:	learn: 22.2065350	total: 360ms	remaining: 133ms
73:	learn: 22.1071155	total: 364ms	remaining: 128ms
74:	learn: 21.9740686	total: 369ms	remaining: 123ms
75:	learn: 21.8892033	total: 374ms	remaining: 118ms
76:	learn: 21.8267882	total: 378ms	remaining: 113ms
77:	learn: 21.7423479	total: 383ms	remaining: 108ms
78:	learn: 21.6242075	total: 388ms	remaining: 103ms
79:	learn: 21.5016910	total: 393ms	remaining: 98.1ms
80:	learn: 21.4806623	total: 393ms	remaining: 92.2ms
81:	learn: 21.3166637	total: 398ms	remaining: 87.4ms
82:	learn: 21.2222534	total: 403ms	remaining: 82.5ms
83:	learn: 21.1535708	total: 408ms	remaining: 77.6ms
84:	learn: 21.0858902	total: 412ms	remaining: 72.8ms
85:	learn: 20.9206003	total: 417ms	remaining: 67.9ms
86:	learn: 20.8674695	total: 421ms	remaining: 63ms
87:	learn: 20.8089875	total: 426ms	remaining: 58.1ms
88:	learn: 20.7085401	total: 431ms	remaining: 53.3ms
89:	learn: 20.5513468	total: 436ms	remaining: 48.4ms
90:	learn: 20.4586742	total: 440ms	remaining: 43.5ms
91:	learn: 20.3932149	total: 444ms	remaining: 38.6ms
92:	learn: 20.3000895	total: 449ms	remaining: 33.8ms
93:	learn: 20.2254009	total: 468ms	remaining: 29.9ms
94:	learn: 20.1750050	total: 472ms	remaining: 24.9ms
95:	learn: 20.0715579	total: 477ms	remaining: 19.9ms
96:	learn: 19.9920082	total: 481ms	remaining: 14.9ms
97:	learn: 19.9664401	total: 485ms	remaining: 9.9ms
98:	learn: 19.8689673	total: 490ms	remaining: 4.95ms
99:	learn: 19.7537356	total: 495ms	remaining: 0us
0:	learn: 46.8832143	total: 6.1ms	remaining: 604ms
1:	learn: 45.8700349	total: 11.3ms	remaining: 554ms
2:	learn: 45.0546867	total: 16.6ms	remaining: 537ms
3:	learn: 44.2829439	total: 21.8ms	remaining: 524ms
4:	learn: 43.4609042	total: 27.3ms	remaining: 519ms
5:	learn: 42.6754991	total: 32.6ms	remaining: 511ms
6:	learn: 41.9234935	total: 38ms	remaining: 505ms
7:	learn: 41.3987518	total: 43.1ms	remaining: 496ms
8:	learn: 40.6625066	total: 48.1ms	remaining: 487ms
9:	learn: 40.0029561	total: 53ms	remaining: 477ms
10:	learn: 39.3897033	total: 57.9ms	remaining: 469ms
11:	learn: 38.7741453	total: 64ms	remaining: 469ms
12:	learn: 38.1201100	total: 70ms	remaining: 469ms
13:	learn: 37.5129454	total: 74.8ms	remaining: 459ms
14:	learn: 37.2062206	total: 79.4ms	remaining: 450ms
15:	learn: 36.6831741	total: 83.7ms	remaining: 440ms
16:	learn: 36.2902788	total: 88.5ms	remaining: 432ms
17:	learn: 35.7639930	total: 92.8ms	remaining: 423ms
18:	learn: 35.2580953	total: 97ms	remaining: 413ms
19:	learn: 34.7809739	total: 101ms	remaining: 406ms
20:	learn: 34.1330433	total: 106ms	remaining: 398ms
21:	learn: 33.7302219	total: 110ms	remaining: 390ms
22:	learn: 33.3502495	total: 114ms	remaining: 383ms
23:	learn: 33.0067804	total: 118ms	remaining: 375ms
24:	learn: 32.6897855	total: 123ms	remaining: 368ms
25:	learn: 32.4361119	total: 127ms	remaining: 361ms
26:	learn: 32.1278981	total: 132ms	remaining: 356ms
27:	learn: 31.7863721	total: 136ms	remaining: 351ms
28:	learn: 31.4791450	total: 141ms	remaining: 345ms
29:	learn: 31.1760161	total: 145ms	remaining: 338ms
30:	learn: 30.9238888	total: 150ms	remaining: 333ms
31:	learn: 30.5500905	total: 155ms	remaining: 329ms
32:	learn: 30.3078126	total: 159ms	remaining: 324ms
33:	learn: 30.0480921	total: 164ms	remaining: 318ms
34:	learn: 29.8623884	total: 169ms	remaining: 313ms
35:	learn: 29.5991038	total: 173ms	remaining: 308ms
36:	learn: 29.4061161	total: 178ms	remaining: 303ms
37:	learn: 29.0269515	total: 186ms	remaining: 304ms
38:	learn: 28.8224959	total: 194ms	remaining: 304ms
39:	learn: 28.6417843	total: 201ms	remaining: 302ms
40:	learn: 28.3633368	total: 207ms	remaining: 297ms
41:	learn: 28.0200246	total: 212ms	remaining: 293ms
42:	learn: 27.7221254	total: 217ms	remaining: 287ms
43:	learn: 27.5105818	total: 221ms	remaining: 281ms
44:	learn: 27.3551010	total: 225ms	remaining: 275ms
45:	learn: 27.0787522	total: 230ms	remaining: 270ms
46:	learn: 26.8726317	total: 234ms	remaining: 264ms
47:	learn: 26.8003277	total: 239ms	remaining: 259ms
48:	learn: 26.5493785	total: 243ms	remaining: 253ms
49:	learn: 26.3699550	total: 248ms	remaining: 248ms
50:	learn: 26.1519631	total: 252ms	remaining: 242ms
51:	learn: 25.9277325	total: 257ms	remaining: 237ms
52:	learn: 25.7286035	total: 261ms	remaining: 231ms
53:	learn: 25.4999193	total: 265ms	remaining: 226ms
54:	learn: 25.3434703	total: 270ms	remaining: 221ms
55:	learn: 25.1497545	total: 274ms	remaining: 215ms
56:	learn: 24.9498143	total: 279ms	remaining: 210ms
57:	learn: 24.6509390	total: 283ms	remaining: 205ms
58:	learn: 24.5576144	total: 288ms	remaining: 200ms
59:	learn: 24.4265144	total: 292ms	remaining: 195ms
60:	learn: 24.3100706	total: 297ms	remaining: 190ms
61:	learn: 24.1727952	total: 301ms	remaining: 185ms
62:	learn: 24.0478558	total: 305ms	remaining: 179ms
63:	learn: 23.9124577	total: 310ms	remaining: 174ms
64:	learn: 23.7703718	total: 314ms	remaining: 169ms
65:	learn: 23.5975027	total: 318ms	remaining: 164ms
66:	learn: 23.4318077	total: 323ms	remaining: 159ms
67:	learn: 23.3099691	total: 327ms	remaining: 154ms
68:	learn: 23.1947982	total: 332ms	remaining: 149ms
69:	learn: 23.0260174	total: 336ms	remaining: 144ms
70:	learn: 22.8523100	total: 340ms	remaining: 139ms
71:	learn: 22.8028534	total: 344ms	remaining: 134ms
72:	learn: 22.6880658	total: 349ms	remaining: 129ms
73:	learn: 22.5956809	total: 354ms	remaining: 124ms
74:	learn: 22.4692932	total: 359ms	remaining: 120ms
75:	learn: 22.2863504	total: 363ms	remaining: 115ms
76:	learn: 22.1911237	total: 368ms	remaining: 110ms
77:	learn: 22.1098391	total: 372ms	remaining: 105ms
78:	learn: 22.0182738	total: 378ms	remaining: 100ms
79:	learn: 21.9306746	total: 386ms	remaining: 96.5ms
80:	learn: 21.7508233	total: 395ms	remaining: 92.6ms
81:	learn: 21.7108446	total: 402ms	remaining: 88.2ms
82:	learn: 21.5931852	total: 410ms	remaining: 83.9ms
83:	learn: 21.4480361	total: 416ms	remaining: 79.2ms
84:	learn: 21.3092119	total: 421ms	remaining: 74.4ms
85:	learn: 21.2605557	total: 427ms	remaining: 69.5ms
86:	learn: 21.1123597	total: 433ms	remaining: 64.7ms
87:	learn: 21.0115642	total: 439ms	remaining: 59.9ms
88:	learn: 20.9389040	total: 444ms	remaining: 54.9ms
89:	learn: 20.8300300	total: 449ms	remaining: 49.9ms
90:	learn: 20.7159733	total: 455ms	remaining: 45ms
91:	learn: 20.6282090	total: 460ms	remaining: 40ms
92:	learn: 20.5164529	total: 465ms	remaining: 35ms
93:	learn: 20.4692032	total: 471ms	remaining: 30ms
94:	learn: 20.3768451	total: 476ms	remaining: 25.1ms
95:	learn: 20.2808056	total: 480ms	remaining: 20ms
96:	learn: 20.2082089	total: 485ms	remaining: 15ms
97:	learn: 20.1698768	total: 489ms	remaining: 9.98ms
98:	learn: 20.1048816	total: 493ms	remaining: 4.98ms
99:	learn: 20.0086159	total: 497ms	remaining: 0us
0:	learn: 27.6871645	total: 5.19ms	remaining: 514ms
1:	learn: 27.3312003	total: 10.2ms	remaining: 501ms
2:	learn: 26.9359558	total: 15.6ms	remaining: 503ms
3:	learn: 26.6055364	total: 20.8ms	remaining: 499ms
4:	learn: 26.1664924	total: 25.7ms	remaining: 489ms
5:	learn: 25.8515393	total: 31ms	remaining: 486ms
6:	learn: 25.4620036	total: 38.7ms	remaining: 514ms
7:	learn: 25.1669741	total: 46.9ms	remaining: 539ms
8:	learn: 24.8455454	total: 68.2ms	remaining: 690ms
9:	learn: 24.5106323	total: 73ms	remaining: 657ms
10:	learn: 24.1915228	total: 77.9ms	remaining: 630ms
11:	learn: 23.9076053	total: 83.1ms	remaining: 610ms
12:	learn: 23.6692445	total: 88.5ms	remaining: 592ms
13:	learn: 23.4343504	total: 93.2ms	remaining: 573ms
14:	learn: 23.2425280	total: 97.8ms	remaining: 554ms
15:	learn: 22.9254142	total: 103ms	remaining: 539ms
16:	learn: 22.6495489	total: 107ms	remaining: 524ms
17:	learn: 22.4343705	total: 112ms	remaining: 510ms
18:	learn: 22.2154202	total: 117ms	remaining: 497ms
19:	learn: 22.0592712	total: 122ms	remaining: 487ms
20:	learn: 21.7971944	total: 127ms	remaining: 477ms
21:	learn: 21.6128930	total: 131ms	remaining: 466ms
22:	learn: 21.3882946	total: 136ms	remaining: 456ms
23:	learn: 21.0912570	total: 141ms	remaining: 447ms
24:	learn: 20.8922857	total: 146ms	remaining: 437ms
25:	learn: 20.7150574	total: 150ms	remaining: 428ms
26:	learn: 20.5673183	total: 155ms	remaining: 420ms
27:	learn: 20.4331275	total: 160ms	remaining: 411ms
28:	learn: 20.2782866	total: 165ms	remaining: 403ms
29:	learn: 20.1061525	total: 169ms	remaining: 394ms
30:	learn: 19.9225948	total: 174ms	remaining: 387ms
31:	learn: 19.7809193	total: 178ms	remaining: 379ms
32:	learn: 19.6057771	total: 183ms	remaining: 372ms
33:	learn: 19.4391243	total: 188ms	remaining: 365ms
34:	learn: 19.2234365	total: 193ms	remaining: 358ms
35:	learn: 19.0214424	total: 197ms	remaining: 351ms
36:	learn: 18.8990643	total: 202ms	remaining: 344ms
37:	learn: 18.7473635	total: 207ms	remaining: 338ms
38:	learn: 18.6125192	total: 212ms	remaining: 332ms
39:	learn: 18.4977949	total: 217ms	remaining: 325ms
40:	learn: 18.3914568	total: 222ms	remaining: 319ms
41:	learn: 18.2541544	total: 227ms	remaining: 313ms
42:	learn: 18.1038984	total: 232ms	remaining: 308ms
43:	learn: 17.9706172	total: 237ms	remaining: 302ms
44:	learn: 17.8198810	total: 242ms	remaining: 296ms
45:	learn: 17.7102597	total: 247ms	remaining: 290ms
46:	learn: 17.6148228	total: 255ms	remaining: 288ms
47:	learn: 17.5115365	total: 265ms	remaining: 287ms
48:	learn: 17.3884162	total: 275ms	remaining: 286ms
49:	learn: 17.2857632	total: 283ms	remaining: 283ms
50:	learn: 17.1618843	total: 289ms	remaining: 278ms
51:	learn: 17.0529601	total: 295ms	remaining: 272ms
52:	learn: 16.9330273	total: 300ms	remaining: 266ms
53:	learn: 16.8206672	total: 306ms	remaining: 261ms
54:	learn: 16.7080356	total: 312ms	remaining: 255ms
55:	learn: 16.5874354	total: 317ms	remaining: 249ms
56:	learn: 16.4929860	total: 323ms	remaining: 243ms
57:	learn: 16.4269419	total: 328ms	remaining: 237ms
58:	learn: 16.3474026	total: 333ms	remaining: 232ms
59:	learn: 16.2515784	total: 339ms	remaining: 226ms
60:	learn: 16.1743901	total: 344ms	remaining: 220ms
61:	learn: 16.0389930	total: 349ms	remaining: 214ms
62:	learn: 15.9671636	total: 356ms	remaining: 209ms
63:	learn: 15.8928486	total: 362ms	remaining: 204ms
64:	learn: 15.8303841	total: 367ms	remaining: 198ms
65:	learn: 15.7612266	total: 372ms	remaining: 192ms
66:	learn: 15.6811172	total: 377ms	remaining: 186ms
67:	learn: 15.6262138	total: 381ms	remaining: 180ms
68:	learn: 15.5662508	total: 386ms	remaining: 173ms
69:	learn: 15.4804354	total: 391ms	remaining: 167ms
70:	learn: 15.4054915	total: 396ms	remaining: 162ms
71:	learn: 15.3271396	total: 401ms	remaining: 156ms
72:	learn: 15.2828359	total: 405ms	remaining: 150ms
73:	learn: 15.2197404	total: 410ms	remaining: 144ms
74:	learn: 15.1315902	total: 415ms	remaining: 138ms
75:	learn: 15.0780523	total: 420ms	remaining: 133ms
76:	learn: 14.9959155	total: 425ms	remaining: 127ms
77:	learn: 14.9265008	total: 430ms	remaining: 121ms
78:	learn: 14.8570189	total: 435ms	remaining: 116ms
79:	learn: 14.8060372	total: 440ms	remaining: 110ms
80:	learn: 14.7294676	total: 445ms	remaining: 104ms
81:	learn: 14.6708309	total: 450ms	remaining: 98.8ms
82:	learn: 14.5765370	total: 455ms	remaining: 93.2ms
83:	learn: 14.5312713	total: 460ms	remaining: 87.7ms
84:	learn: 14.4830327	total: 471ms	remaining: 83.1ms
85:	learn: 14.4296247	total: 479ms	remaining: 78ms
86:	learn: 14.3381470	total: 485ms	remaining: 72.5ms
87:	learn: 14.2638093	total: 491ms	remaining: 67ms
88:	learn: 14.2288435	total: 496ms	remaining: 61.3ms
89:	learn: 14.1489273	total: 501ms	remaining: 55.7ms
90:	learn: 14.0937923	total: 506ms	remaining: 50.1ms
91:	learn: 14.0334062	total: 511ms	remaining: 44.5ms
92:	learn: 13.9854696	total: 516ms	remaining: 38.9ms
93:	learn: 13.9444203	total: 522ms	remaining: 33.3ms
94:	learn: 13.9101523	total: 526ms	remaining: 27.7ms
95:	learn: 13.8460655	total: 531ms	remaining: 22.1ms
96:	learn: 13.7809420	total: 536ms	remaining: 16.6ms
97:	learn: 13.7270532	total: 541ms	remaining: 11ms
98:	learn: 13.6891300	total: 545ms	remaining: 5.51ms
99:	learn: 13.6569696	total: 550ms	remaining: 0us
0:	learn: 42.9754370	total: 4.99ms	remaining: 494ms
1:	learn: 42.2613272	total: 9.89ms	remaining: 485ms
2:	learn: 41.4729969	total: 14.6ms	remaining: 471ms
3:	learn: 40.7127004	total: 19.1ms	remaining: 457ms
4:	learn: 39.7775109	total: 23.6ms	remaining: 449ms
5:	learn: 39.1736663	total: 28.2ms	remaining: 443ms
6:	learn: 38.2981109	total: 33.3ms	remaining: 442ms
7:	learn: 37.5352984	total: 38.2ms	remaining: 439ms
8:	learn: 36.7771474	total: 43.4ms	remaining: 438ms
9:	learn: 36.0581366	total: 50.1ms	remaining: 451ms
10:	learn: 35.3542706	total: 57.8ms	remaining: 468ms
11:	learn: 34.6937007	total: 66ms	remaining: 484ms
12:	learn: 34.0408035	total: 72.5ms	remaining: 485ms
13:	learn: 33.3460240	total: 78ms	remaining: 479ms
14:	learn: 32.8086243	total: 83.7ms	remaining: 474ms
15:	learn: 32.1934462	total: 90.7ms	remaining: 476ms
16:	learn: 31.6465519	total: 96.5ms	remaining: 471ms
17:	learn: 31.2161293	total: 102ms	remaining: 466ms
18:	learn: 30.6730548	total: 108ms	remaining: 459ms
19:	learn: 30.3153659	total: 113ms	remaining: 454ms
20:	learn: 29.7661420	total: 119ms	remaining: 449ms
21:	learn: 29.2095664	total: 125ms	remaining: 444ms
22:	learn: 28.7509592	total: 131ms	remaining: 439ms
23:	learn: 28.4347528	total: 137ms	remaining: 434ms
24:	learn: 28.0551654	total: 143ms	remaining: 429ms
25:	learn: 27.7295952	total: 149ms	remaining: 424ms
26:	learn: 27.2329225	total: 155ms	remaining: 419ms
27:	learn: 26.9970607	total: 160ms	remaining: 412ms
28:	learn: 26.6596544	total: 166ms	remaining: 407ms
29:	learn: 26.2633576	total: 173ms	remaining: 403ms
30:	learn: 25.9761623	total: 178ms	remaining: 396ms
31:	learn: 25.6177371	total: 183ms	remaining: 388ms
32:	learn: 25.2165933	total: 188ms	remaining: 381ms
33:	learn: 24.8012870	total: 193ms	remaining: 374ms
34:	learn: 24.4772532	total: 197ms	remaining: 367ms
35:	learn: 24.1560359	total: 203ms	remaining: 360ms
36:	learn: 23.9688812	total: 208ms	remaining: 354ms
37:	learn: 23.6907607	total: 213ms	remaining: 347ms
38:	learn: 23.3885772	total: 217ms	remaining: 340ms
39:	learn: 23.2234939	total: 222ms	remaining: 333ms
40:	learn: 22.9785026	total: 228ms	remaining: 327ms
41:	learn: 22.6827268	total: 232ms	remaining: 321ms
42:	learn: 22.4564360	total: 237ms	remaining: 315ms
43:	learn: 22.2517827	total: 243ms	remaining: 309ms
44:	learn: 21.9858709	total: 248ms	remaining: 304ms
45:	learn: 21.7595870	total: 254ms	remaining: 298ms
46:	learn: 21.5929957	total: 262ms	remaining: 296ms
47:	learn: 21.4071752	total: 272ms	remaining: 295ms
48:	learn: 21.2186470	total: 280ms	remaining: 292ms
49:	learn: 21.0691824	total: 286ms	remaining: 286ms
50:	learn: 20.8921347	total: 292ms	remaining: 281ms
51:	learn: 20.6834229	total: 297ms	remaining: 274ms
52:	learn: 20.4718988	total: 301ms	remaining: 267ms
53:	learn: 20.3413889	total: 306ms	remaining: 261ms
54:	learn: 20.1785464	total: 311ms	remaining: 254ms
55:	learn: 19.9824314	total: 316ms	remaining: 248ms
56:	learn: 19.8217596	total: 321ms	remaining: 242ms
57:	learn: 19.6318474	total: 325ms	remaining: 236ms
58:	learn: 19.4962236	total: 330ms	remaining: 229ms
59:	learn: 19.3114985	total: 335ms	remaining: 223ms
60:	learn: 19.2181156	total: 340ms	remaining: 217ms
61:	learn: 19.0689614	total: 344ms	remaining: 211ms
62:	learn: 18.9563267	total: 349ms	remaining: 205ms
63:	learn: 18.8343083	total: 354ms	remaining: 199ms
64:	learn: 18.7050033	total: 359ms	remaining: 193ms
65:	learn: 18.6014163	total: 363ms	remaining: 187ms
66:	learn: 18.4910692	total: 368ms	remaining: 181ms
67:	learn: 18.3935194	total: 373ms	remaining: 176ms
68:	learn: 18.2825842	total: 378ms	remaining: 170ms
69:	learn: 18.1519267	total: 383ms	remaining: 164ms
70:	learn: 18.0527651	total: 387ms	remaining: 158ms
71:	learn: 17.9770106	total: 392ms	remaining: 152ms
72:	learn: 17.9151628	total: 397ms	remaining: 147ms
73:	learn: 17.7957486	total: 402ms	remaining: 141ms
74:	learn: 17.7025765	total: 406ms	remaining: 135ms
75:	learn: 17.5957242	total: 411ms	remaining: 130ms
76:	learn: 17.4683244	total: 416ms	remaining: 124ms
77:	learn: 17.3415729	total: 421ms	remaining: 119ms
78:	learn: 17.2886896	total: 426ms	remaining: 113ms
79:	learn: 17.2280922	total: 431ms	remaining: 108ms
80:	learn: 17.1188996	total: 436ms	remaining: 102ms
81:	learn: 17.0236450	total: 441ms	remaining: 96.8ms
82:	learn: 16.9046661	total: 446ms	remaining: 91.4ms
83:	learn: 16.7930633	total: 451ms	remaining: 86ms
84:	learn: 16.6870100	total: 456ms	remaining: 80.5ms
85:	learn: 16.5512107	total: 466ms	remaining: 75.9ms
86:	learn: 16.4353400	total: 476ms	remaining: 71.2ms
87:	learn: 16.3256461	total: 487ms	remaining: 66.3ms
88:	learn: 16.2968057	total: 495ms	remaining: 61.2ms
89:	learn: 16.2136078	total: 501ms	remaining: 55.7ms
90:	learn: 16.1596096	total: 507ms	remaining: 50.1ms
91:	learn: 16.1164050	total: 513ms	remaining: 44.6ms
92:	learn: 16.0660454	total: 518ms	remaining: 39ms
93:	learn: 16.0380611	total: 524ms	remaining: 33.4ms
94:	learn: 15.9494441	total: 530ms	remaining: 27.9ms
95:	learn: 15.8874840	total: 536ms	remaining: 22.3ms
96:	learn: 15.8288234	total: 542ms	remaining: 16.8ms
97:	learn: 15.7562787	total: 548ms	remaining: 11.2ms
98:	learn: 15.6822678	total: 554ms	remaining: 5.59ms
99:	learn: 15.5901500	total: 560ms	remaining: 0us
0:	learn: 46.4504871	total: 5.11ms	remaining: 506ms
1:	learn: 45.7240114	total: 10.3ms	remaining: 505ms
2:	learn: 45.0308025	total: 15.5ms	remaining: 500ms
3:	learn: 44.1111169	total: 20.3ms	remaining: 487ms
4:	learn: 43.3925352	total: 25.1ms	remaining: 476ms
5:	learn: 42.7856354	total: 30.4ms	remaining: 476ms
6:	learn: 42.1998170	total: 35.3ms	remaining: 469ms
7:	learn: 41.3532708	total: 40.3ms	remaining: 464ms
8:	learn: 40.7314571	total: 45.9ms	remaining: 464ms
9:	learn: 39.9838066	total: 51.3ms	remaining: 462ms
10:	learn: 39.4168243	total: 58.9ms	remaining: 477ms
11:	learn: 39.0148769	total: 68.6ms	remaining: 503ms
12:	learn: 38.3055855	total: 76.5ms	remaining: 512ms
13:	learn: 37.7343198	total: 82.7ms	remaining: 508ms
14:	learn: 37.4177463	total: 90.1ms	remaining: 511ms
15:	learn: 36.9043298	total: 94.6ms	remaining: 497ms
16:	learn: 36.3139174	total: 99.5ms	remaining: 486ms
17:	learn: 35.7200448	total: 104ms	remaining: 475ms
18:	learn: 35.3763394	total: 109ms	remaining: 464ms
19:	learn: 34.7666728	total: 113ms	remaining: 454ms
20:	learn: 34.2642890	total: 118ms	remaining: 445ms
21:	learn: 33.8196936	total: 123ms	remaining: 436ms
22:	learn: 33.4205669	total: 128ms	remaining: 428ms
23:	learn: 32.8565493	total: 133ms	remaining: 420ms
24:	learn: 32.5287132	total: 137ms	remaining: 412ms
25:	learn: 32.2142064	total: 142ms	remaining: 404ms
26:	learn: 31.9258854	total: 147ms	remaining: 397ms
27:	learn: 31.4083665	total: 152ms	remaining: 391ms
28:	learn: 31.1615620	total: 157ms	remaining: 384ms
29:	learn: 30.6948867	total: 161ms	remaining: 376ms
30:	learn: 30.3185108	total: 166ms	remaining: 369ms
31:	learn: 29.9245223	total: 171ms	remaining: 363ms
32:	learn: 29.6683643	total: 175ms	remaining: 356ms
33:	learn: 29.3868143	total: 180ms	remaining: 349ms
34:	learn: 29.1105699	total: 185ms	remaining: 343ms
35:	learn: 28.8274848	total: 190ms	remaining: 337ms
36:	learn: 28.5478288	total: 195ms	remaining: 331ms
37:	learn: 28.2355121	total: 200ms	remaining: 326ms
38:	learn: 28.0182564	total: 204ms	remaining: 320ms
39:	learn: 27.7654405	total: 209ms	remaining: 314ms
40:	learn: 27.5720477	total: 214ms	remaining: 308ms
41:	learn: 27.3182782	total: 219ms	remaining: 302ms
42:	learn: 26.9504431	total: 224ms	remaining: 296ms
43:	learn: 26.7281906	total: 229ms	remaining: 291ms
44:	learn: 26.5390008	total: 234ms	remaining: 286ms
45:	learn: 26.3781338	total: 239ms	remaining: 281ms
46:	learn: 26.1763177	total: 244ms	remaining: 275ms
47:	learn: 25.9417647	total: 249ms	remaining: 270ms
48:	learn: 25.7528045	total: 254ms	remaining: 265ms
49:	learn: 25.6336897	total: 263ms	remaining: 263ms
50:	learn: 25.4800426	total: 271ms	remaining: 260ms
51:	learn: 25.2895681	total: 281ms	remaining: 259ms
52:	learn: 25.0827111	total: 288ms	remaining: 256ms
53:	learn: 24.7987678	total: 295ms	remaining: 251ms
54:	learn: 24.6309982	total: 304ms	remaining: 249ms
55:	learn: 24.3526776	total: 310ms	remaining: 244ms
56:	learn: 24.1689125	total: 316ms	remaining: 238ms
57:	learn: 23.9802039	total: 321ms	remaining: 233ms
58:	learn: 23.8059432	total: 327ms	remaining: 227ms
59:	learn: 23.6006403	total: 333ms	remaining: 222ms
60:	learn: 23.2948382	total: 338ms	remaining: 216ms
61:	learn: 23.1338922	total: 344ms	remaining: 211ms
62:	learn: 22.9581269	total: 350ms	remaining: 206ms
63:	learn: 22.8263127	total: 356ms	remaining: 200ms
64:	learn: 22.6966006	total: 361ms	remaining: 194ms
65:	learn: 22.6012389	total: 366ms	remaining: 189ms
66:	learn: 22.4220244	total: 371ms	remaining: 183ms
67:	learn: 22.3148342	total: 376ms	remaining: 177ms
68:	learn: 22.1543592	total: 381ms	remaining: 171ms
69:	learn: 22.0614050	total: 386ms	remaining: 166ms
70:	learn: 21.9134025	total: 391ms	remaining: 160ms
71:	learn: 21.8198101	total: 396ms	remaining: 154ms
72:	learn: 21.6944173	total: 401ms	remaining: 148ms
73:	learn: 21.4727420	total: 406ms	remaining: 143ms
74:	learn: 21.3000560	total: 411ms	remaining: 137ms
75:	learn: 21.1884740	total: 416ms	remaining: 131ms
76:	learn: 21.0321317	total: 421ms	remaining: 126ms
77:	learn: 20.9371793	total: 427ms	remaining: 120ms
78:	learn: 20.6800341	total: 431ms	remaining: 115ms
79:	learn: 20.5629904	total: 436ms	remaining: 109ms
80:	learn: 20.4098217	total: 442ms	remaining: 104ms
81:	learn: 20.2139261	total: 447ms	remaining: 98.2ms
82:	learn: 20.1024260	total: 453ms	remaining: 92.7ms
83:	learn: 19.9835855	total: 458ms	remaining: 87.2ms
84:	learn: 19.9018880	total: 463ms	remaining: 81.7ms
85:	learn: 19.7819843	total: 468ms	remaining: 76.3ms
86:	learn: 19.6352780	total: 477ms	remaining: 71.3ms
87:	learn: 19.4888328	total: 486ms	remaining: 66.3ms
88:	learn: 19.4365121	total: 494ms	remaining: 61ms
89:	learn: 19.3427430	total: 499ms	remaining: 55.5ms
90:	learn: 19.2884907	total: 505ms	remaining: 50ms
91:	learn: 19.1898932	total: 510ms	remaining: 44.3ms
92:	learn: 19.0775661	total: 515ms	remaining: 38.8ms
93:	learn: 19.0334055	total: 521ms	remaining: 33.2ms
94:	learn: 18.9381916	total: 525ms	remaining: 27.7ms
95:	learn: 18.8471198	total: 530ms	remaining: 22.1ms
96:	learn: 18.7136478	total: 535ms	remaining: 16.6ms
97:	learn: 18.6633102	total: 540ms	remaining: 11ms
98:	learn: 18.5887516	total: 546ms	remaining: 5.51ms
99:	learn: 18.4841597	total: 551ms	remaining: 0us
0:	learn: 46.2172336	total: 5.06ms	remaining: 501ms
1:	learn: 45.4248871	total: 10.1ms	remaining: 494ms
2:	learn: 44.8702937	total: 15.8ms	remaining: 511ms
3:	learn: 44.2019212	total: 21.4ms	remaining: 513ms
4:	learn: 43.4805210	total: 26.6ms	remaining: 506ms
5:	learn: 42.7336269	total: 32.5ms	remaining: 510ms
6:	learn: 42.0396670	total: 37.6ms	remaining: 500ms
7:	learn: 41.5668459	total: 42.5ms	remaining: 489ms
8:	learn: 40.8999125	total: 48.3ms	remaining: 488ms
9:	learn: 40.3358512	total: 53.5ms	remaining: 481ms
10:	learn: 39.7511489	total: 58.9ms	remaining: 477ms
11:	learn: 39.0775416	total: 64.3ms	remaining: 471ms
12:	learn: 38.5204735	total: 69.2ms	remaining: 463ms
13:	learn: 38.2087509	total: 76.2ms	remaining: 468ms
14:	learn: 37.7259552	total: 85.2ms	remaining: 483ms
15:	learn: 37.1646397	total: 94.8ms	remaining: 498ms
16:	learn: 36.7093520	total: 102ms	remaining: 497ms
17:	learn: 36.2212308	total: 109ms	remaining: 497ms
18:	learn: 35.8682156	total: 115ms	remaining: 489ms
19:	learn: 35.6026383	total: 120ms	remaining: 481ms
20:	learn: 35.1739725	total: 126ms	remaining: 473ms
21:	learn: 34.5938003	total: 132ms	remaining: 468ms
22:	learn: 34.1479056	total: 138ms	remaining: 462ms
23:	learn: 33.8759356	total: 144ms	remaining: 455ms
24:	learn: 33.2898426	total: 150ms	remaining: 450ms
25:	learn: 32.9220237	total: 156ms	remaining: 444ms
26:	learn: 32.4324374	total: 161ms	remaining: 436ms
27:	learn: 32.1726327	total: 167ms	remaining: 430ms
28:	learn: 31.8020879	total: 173ms	remaining: 424ms
29:	learn: 31.4329781	total: 179ms	remaining: 418ms
30:	learn: 30.9995282	total: 184ms	remaining: 409ms
31:	learn: 30.6815978	total: 189ms	remaining: 401ms
32:	learn: 30.2991029	total: 193ms	remaining: 392ms
33:	learn: 30.0354202	total: 198ms	remaining: 384ms
34:	learn: 29.7620535	total: 203ms	remaining: 377ms
35:	learn: 29.4552589	total: 208ms	remaining: 369ms
36:	learn: 29.2634399	total: 212ms	remaining: 362ms
37:	learn: 28.8345135	total: 217ms	remaining: 355ms
38:	learn: 28.5551142	total: 223ms	remaining: 348ms
39:	learn: 28.3258809	total: 227ms	remaining: 341ms
40:	learn: 28.0835564	total: 232ms	remaining: 334ms
41:	learn: 27.7517159	total: 237ms	remaining: 327ms
42:	learn: 27.5427595	total: 242ms	remaining: 321ms
43:	learn: 27.3925105	total: 246ms	remaining: 314ms
44:	learn: 27.2377120	total: 251ms	remaining: 307ms
45:	learn: 26.9930398	total: 256ms	remaining: 301ms
46:	learn: 26.7748687	total: 261ms	remaining: 295ms
47:	learn: 26.5856986	total: 266ms	remaining: 289ms
48:	learn: 26.4344153	total: 272ms	remaining: 283ms
49:	learn: 26.3263456	total: 277ms	remaining: 277ms
50:	learn: 26.2048412	total: 282ms	remaining: 271ms
51:	learn: 26.0608546	total: 291ms	remaining: 269ms
52:	learn: 25.9428146	total: 301ms	remaining: 267ms
53:	learn: 25.7578029	total: 310ms	remaining: 264ms
54:	learn: 25.5696792	total: 316ms	remaining: 258ms
55:	learn: 25.3291935	total: 322ms	remaining: 253ms
56:	learn: 25.1388942	total: 331ms	remaining: 250ms
57:	learn: 24.9853945	total: 335ms	remaining: 243ms
58:	learn: 24.8037785	total: 340ms	remaining: 236ms
59:	learn: 24.5326704	total: 345ms	remaining: 230ms
60:	learn: 24.2208240	total: 350ms	remaining: 224ms
61:	learn: 24.0774015	total: 355ms	remaining: 218ms
62:	learn: 23.9705824	total: 360ms	remaining: 212ms
63:	learn: 23.8877665	total: 365ms	remaining: 205ms
64:	learn: 23.7309043	total: 370ms	remaining: 199ms
65:	learn: 23.5820140	total: 374ms	remaining: 193ms
66:	learn: 23.3762012	total: 379ms	remaining: 187ms
67:	learn: 23.2317502	total: 384ms	remaining: 181ms
68:	learn: 23.0868331	total: 389ms	remaining: 175ms
69:	learn: 22.9642758	total: 394ms	remaining: 169ms
70:	learn: 22.8085341	total: 399ms	remaining: 163ms
71:	learn: 22.6834294	total: 403ms	remaining: 157ms
72:	learn: 22.6152922	total: 408ms	remaining: 151ms
73:	learn: 22.3675145	total: 413ms	remaining: 145ms
74:	learn: 22.3023338	total: 418ms	remaining: 139ms
75:	learn: 22.1866833	total: 423ms	remaining: 134ms
76:	learn: 22.0163130	total: 428ms	remaining: 128ms
77:	learn: 21.9691306	total: 433ms	remaining: 122ms
78:	learn: 21.9004647	total: 437ms	remaining: 116ms
79:	learn: 21.7931869	total: 442ms	remaining: 111ms
80:	learn: 21.6747916	total: 447ms	remaining: 105ms
81:	learn: 21.5187568	total: 452ms	remaining: 99.3ms
82:	learn: 21.3124880	total: 458ms	remaining: 93.7ms
83:	learn: 21.1979524	total: 463ms	remaining: 88.1ms
84:	learn: 21.1311130	total: 468ms	remaining: 82.5ms
85:	learn: 21.0606062	total: 473ms	remaining: 77ms
86:	learn: 20.9900935	total: 478ms	remaining: 71.5ms
87:	learn: 20.8908054	total: 488ms	remaining: 66.6ms
88:	learn: 20.8088525	total: 499ms	remaining: 61.6ms
89:	learn: 20.7300955	total: 506ms	remaining: 56.2ms
90:	learn: 20.6130276	total: 515ms	remaining: 50.9ms
91:	learn: 20.5437508	total: 520ms	remaining: 45.3ms
92:	learn: 20.5029426	total: 526ms	remaining: 39.6ms
93:	learn: 20.4416708	total: 541ms	remaining: 34.5ms
94:	learn: 20.3917812	total: 547ms	remaining: 28.8ms
95:	learn: 20.3305024	total: 553ms	remaining: 23ms
96:	learn: 20.2375704	total: 558ms	remaining: 17.3ms
97:	learn: 20.1835197	total: 564ms	remaining: 11.5ms
98:	learn: 20.1246834	total: 570ms	remaining: 5.75ms
99:	learn: 20.0506334	total: 576ms	remaining: 0us
0:	learn: 46.7334648	total: 5.05ms	remaining: 500ms
1:	learn: 46.2069876	total: 10.2ms	remaining: 499ms
2:	learn: 45.3699967	total: 14.9ms	remaining: 482ms
3:	learn: 44.6866787	total: 19.6ms	remaining: 471ms
4:	learn: 43.8536031	total: 24.3ms	remaining: 461ms
5:	learn: 43.4716853	total: 29.7ms	remaining: 465ms
6:	learn: 42.9929637	total: 35.2ms	remaining: 467ms
7:	learn: 42.4952169	total: 43.6ms	remaining: 501ms
8:	learn: 41.7548337	total: 50.7ms	remaining: 513ms
9:	learn: 41.1054415	total: 58.2ms	remaining: 524ms
10:	learn: 40.4827492	total: 64.4ms	remaining: 521ms
11:	learn: 39.7605907	total: 71.1ms	remaining: 522ms
12:	learn: 39.2532558	total: 77ms	remaining: 515ms
13:	learn: 38.6572753	total: 81.7ms	remaining: 502ms
14:	learn: 38.2886959	total: 86.5ms	remaining: 490ms
15:	learn: 37.7816612	total: 91.1ms	remaining: 479ms
16:	learn: 37.1680589	total: 95.7ms	remaining: 467ms
17:	learn: 36.5753004	total: 101ms	remaining: 458ms
18:	learn: 36.2339458	total: 105ms	remaining: 448ms
19:	learn: 35.9159716	total: 110ms	remaining: 439ms
20:	learn: 35.4591743	total: 115ms	remaining: 431ms
21:	learn: 34.8726070	total: 119ms	remaining: 424ms
22:	learn: 34.3903591	total: 124ms	remaining: 416ms
23:	learn: 34.1236827	total: 129ms	remaining: 408ms
24:	learn: 33.8026540	total: 134ms	remaining: 402ms
25:	learn: 33.4594822	total: 139ms	remaining: 395ms
26:	learn: 33.1338910	total: 144ms	remaining: 389ms
27:	learn: 32.8527106	total: 149ms	remaining: 382ms
28:	learn: 32.4923829	total: 154ms	remaining: 376ms
29:	learn: 32.0560533	total: 158ms	remaining: 369ms
30:	learn: 31.6614408	total: 163ms	remaining: 364ms
31:	learn: 31.2796040	total: 168ms	remaining: 357ms
32:	learn: 30.8214741	total: 173ms	remaining: 351ms
33:	learn: 30.5908694	total: 178ms	remaining: 345ms
34:	learn: 30.3637356	total: 182ms	remaining: 339ms
35:	learn: 30.0446511	total: 188ms	remaining: 333ms
36:	learn: 29.8792549	total: 193ms	remaining: 328ms
37:	learn: 29.5488457	total: 198ms	remaining: 322ms
38:	learn: 29.2808568	total: 203ms	remaining: 317ms
39:	learn: 29.0603765	total: 207ms	remaining: 311ms
40:	learn: 28.8272425	total: 212ms	remaining: 305ms
41:	learn: 28.4753580	total: 217ms	remaining: 300ms
42:	learn: 28.2963614	total: 222ms	remaining: 295ms
43:	learn: 28.1054768	total: 228ms	remaining: 290ms
44:	learn: 27.9038093	total: 233ms	remaining: 284ms
45:	learn: 27.6305487	total: 238ms	remaining: 280ms
46:	learn: 27.4457907	total: 244ms	remaining: 275ms
47:	learn: 27.1855957	total: 249ms	remaining: 270ms
48:	learn: 26.9987934	total: 255ms	remaining: 265ms
49:	learn: 26.7881067	total: 264ms	remaining: 264ms
50:	learn: 26.6385231	total: 277ms	remaining: 266ms
51:	learn: 26.4661755	total: 283ms	remaining: 261ms
52:	learn: 26.3331868	total: 291ms	remaining: 258ms
53:	learn: 26.0353476	total: 296ms	remaining: 252ms
54:	learn: 25.8257147	total: 302ms	remaining: 247ms
55:	learn: 25.5924383	total: 307ms	remaining: 242ms
56:	learn: 25.4082209	total: 313ms	remaining: 236ms
57:	learn: 25.2350104	total: 319ms	remaining: 231ms
58:	learn: 25.1789867	total: 325ms	remaining: 226ms
59:	learn: 24.9111359	total: 331ms	remaining: 220ms
60:	learn: 24.6314503	total: 336ms	remaining: 215ms
61:	learn: 24.4297999	total: 342ms	remaining: 209ms
62:	learn: 24.3126171	total: 347ms	remaining: 204ms
63:	learn: 24.1544005	total: 354ms	remaining: 199ms
64:	learn: 24.0197950	total: 359ms	remaining: 193ms
65:	learn: 23.8483087	total: 365ms	remaining: 188ms
66:	learn: 23.6624915	total: 370ms	remaining: 182ms
67:	learn: 23.5068105	total: 375ms	remaining: 177ms
68:	learn: 23.4266187	total: 380ms	remaining: 171ms
69:	learn: 23.3535388	total: 386ms	remaining: 165ms
70:	learn: 23.2477190	total: 391ms	remaining: 160ms
71:	learn: 23.1877634	total: 396ms	remaining: 154ms
72:	learn: 23.1344720	total: 401ms	remaining: 148ms
73:	learn: 22.9498234	total: 406ms	remaining: 143ms
74:	learn: 22.9068295	total: 411ms	remaining: 137ms
75:	learn: 22.7368434	total: 416ms	remaining: 131ms
76:	learn: 22.6084901	total: 421ms	remaining: 126ms
77:	learn: 22.4690295	total: 426ms	remaining: 120ms
78:	learn: 22.3970100	total: 431ms	remaining: 115ms
79:	learn: 22.3025537	total: 436ms	remaining: 109ms
80:	learn: 22.2089293	total: 441ms	remaining: 103ms
81:	learn: 22.0522107	total: 446ms	remaining: 97.9ms
82:	learn: 21.9368213	total: 451ms	remaining: 92.4ms
83:	learn: 21.7968322	total: 458ms	remaining: 87.2ms
84:	learn: 21.7416164	total: 467ms	remaining: 82.4ms
85:	learn: 21.6031099	total: 475ms	remaining: 77.3ms
86:	learn: 21.4530627	total: 481ms	remaining: 71.9ms
87:	learn: 21.3118417	total: 487ms	remaining: 66.5ms
88:	learn: 21.2760431	total: 492ms	remaining: 60.8ms
89:	learn: 21.2071350	total: 497ms	remaining: 55.3ms
90:	learn: 21.1051001	total: 502ms	remaining: 49.6ms
91:	learn: 21.0246142	total: 506ms	remaining: 44ms
92:	learn: 20.9834999	total: 511ms	remaining: 38.5ms
93:	learn: 20.8989393	total: 516ms	remaining: 32.9ms
94:	learn: 20.8262231	total: 520ms	remaining: 27.4ms
95:	learn: 20.7369110	total: 525ms	remaining: 21.9ms
96:	learn: 20.6409587	total: 530ms	remaining: 16.4ms
97:	learn: 20.5553641	total: 534ms	remaining: 10.9ms
98:	learn: 20.4317232	total: 539ms	remaining: 5.45ms
99:	learn: 20.3708681	total: 543ms	remaining: 0us
0:	learn: 27.6871645	total: 4.99ms	remaining: 494ms
1:	learn: 27.3312003	total: 9.6ms	remaining: 471ms
2:	learn: 26.9359558	total: 14.2ms	remaining: 461ms
3:	learn: 26.6055364	total: 18.7ms	remaining: 449ms
4:	learn: 26.1664924	total: 23.4ms	remaining: 444ms
5:	learn: 25.8515393	total: 28.1ms	remaining: 441ms
6:	learn: 25.4620036	total: 32.8ms	remaining: 436ms
7:	learn: 25.1669741	total: 37.6ms	remaining: 432ms
8:	learn: 24.8455454	total: 42.8ms	remaining: 433ms
9:	learn: 24.5106323	total: 47.7ms	remaining: 429ms
10:	learn: 24.1915228	total: 52.8ms	remaining: 427ms
11:	learn: 23.9076053	total: 57.7ms	remaining: 423ms
12:	learn: 23.6692445	total: 62.7ms	remaining: 420ms
13:	learn: 23.4343504	total: 68.2ms	remaining: 419ms
14:	learn: 23.2425280	total: 77.6ms	remaining: 440ms
15:	learn: 22.9254142	total: 89.2ms	remaining: 468ms
16:	learn: 22.6495489	total: 97.3ms	remaining: 475ms
17:	learn: 22.4343705	total: 106ms	remaining: 481ms
18:	learn: 22.2154202	total: 112ms	remaining: 476ms
19:	learn: 22.0592712	total: 118ms	remaining: 472ms
20:	learn: 21.7971944	total: 124ms	remaining: 468ms
21:	learn: 21.6128930	total: 130ms	remaining: 461ms
22:	learn: 21.3882946	total: 135ms	remaining: 453ms
23:	learn: 21.0912570	total: 141ms	remaining: 447ms
24:	learn: 20.8922857	total: 147ms	remaining: 440ms
25:	learn: 20.7150574	total: 151ms	remaining: 431ms
26:	learn: 20.5673183	total: 157ms	remaining: 423ms
27:	learn: 20.4331275	total: 162ms	remaining: 417ms
28:	learn: 20.2782866	total: 168ms	remaining: 411ms
29:	learn: 20.1061525	total: 174ms	remaining: 406ms
30:	learn: 19.9225948	total: 179ms	remaining: 398ms
31:	learn: 19.7809193	total: 183ms	remaining: 390ms
32:	learn: 19.6057771	total: 188ms	remaining: 382ms
33:	learn: 19.4391243	total: 193ms	remaining: 375ms
34:	learn: 19.2234365	total: 198ms	remaining: 367ms
35:	learn: 19.0214424	total: 202ms	remaining: 360ms
36:	learn: 18.8990643	total: 207ms	remaining: 353ms
37:	learn: 18.7473635	total: 212ms	remaining: 346ms
38:	learn: 18.6125192	total: 216ms	remaining: 338ms
39:	learn: 18.4977949	total: 221ms	remaining: 331ms
40:	learn: 18.3914568	total: 226ms	remaining: 325ms
41:	learn: 18.2541544	total: 230ms	remaining: 318ms
42:	learn: 18.1038984	total: 235ms	remaining: 312ms
43:	learn: 17.9706172	total: 240ms	remaining: 306ms
44:	learn: 17.8198810	total: 245ms	remaining: 300ms
45:	learn: 17.7102597	total: 250ms	remaining: 294ms
46:	learn: 17.6148228	total: 255ms	remaining: 288ms
47:	learn: 17.5115365	total: 260ms	remaining: 282ms
48:	learn: 17.3884162	total: 266ms	remaining: 276ms
49:	learn: 17.2857632	total: 286ms	remaining: 286ms
50:	learn: 17.1618843	total: 292ms	remaining: 280ms
51:	learn: 17.0529601	total: 298ms	remaining: 275ms
52:	learn: 16.9330273	total: 303ms	remaining: 269ms
53:	learn: 16.8206672	total: 308ms	remaining: 262ms
54:	learn: 16.7080356	total: 312ms	remaining: 256ms
55:	learn: 16.5874354	total: 317ms	remaining: 249ms
56:	learn: 16.4929860	total: 322ms	remaining: 243ms
57:	learn: 16.4269419	total: 326ms	remaining: 236ms
58:	learn: 16.3474026	total: 331ms	remaining: 230ms
59:	learn: 16.2515784	total: 336ms	remaining: 224ms
60:	learn: 16.1743901	total: 341ms	remaining: 218ms
61:	learn: 16.0389930	total: 346ms	remaining: 212ms
62:	learn: 15.9671636	total: 350ms	remaining: 206ms
63:	learn: 15.8928486	total: 355ms	remaining: 200ms
64:	learn: 15.8303841	total: 360ms	remaining: 194ms
65:	learn: 15.7612266	total: 365ms	remaining: 188ms
66:	learn: 15.6811172	total: 369ms	remaining: 182ms
67:	learn: 15.6262138	total: 374ms	remaining: 176ms
68:	learn: 15.5662508	total: 379ms	remaining: 170ms
69:	learn: 15.4804354	total: 384ms	remaining: 165ms
70:	learn: 15.4054915	total: 389ms	remaining: 159ms
71:	learn: 15.3271396	total: 393ms	remaining: 153ms
72:	learn: 15.2828359	total: 398ms	remaining: 147ms
73:	learn: 15.2197404	total: 403ms	remaining: 142ms
74:	learn: 15.1315902	total: 408ms	remaining: 136ms
75:	learn: 15.0780523	total: 413ms	remaining: 130ms
76:	learn: 14.9959155	total: 418ms	remaining: 125ms
77:	learn: 14.9265008	total: 422ms	remaining: 119ms
78:	learn: 14.8570189	total: 427ms	remaining: 114ms
79:	learn: 14.8060372	total: 432ms	remaining: 108ms
80:	learn: 14.7294676	total: 437ms	remaining: 103ms
81:	learn: 14.6708309	total: 442ms	remaining: 97.1ms
82:	learn: 14.5765370	total: 447ms	remaining: 91.6ms
83:	learn: 14.5312713	total: 452ms	remaining: 86.1ms
84:	learn: 14.4830327	total: 457ms	remaining: 80.7ms
85:	learn: 14.4296247	total: 462ms	remaining: 75.2ms
86:	learn: 14.3381470	total: 468ms	remaining: 70ms
87:	learn: 14.2638093	total: 479ms	remaining: 65.3ms
88:	learn: 14.2288435	total: 485ms	remaining: 59.9ms
89:	learn: 14.1489273	total: 492ms	remaining: 54.7ms
90:	learn: 14.0937923	total: 498ms	remaining: 49.2ms
91:	learn: 14.0334062	total: 504ms	remaining: 43.8ms
92:	learn: 13.9854696	total: 510ms	remaining: 38.4ms
93:	learn: 13.9444203	total: 516ms	remaining: 32.9ms
94:	learn: 13.9101523	total: 522ms	remaining: 27.5ms
95:	learn: 13.8460655	total: 528ms	remaining: 22ms
96:	learn: 13.7809420	total: 534ms	remaining: 16.5ms
97:	learn: 13.7270532	total: 539ms	remaining: 11ms
98:	learn: 13.6891300	total: 545ms	remaining: 5.5ms
99:	learn: 13.6569696	total: 551ms	remaining: 0us
0:	learn: 42.9754370	total: 5.19ms	remaining: 514ms
1:	learn: 42.2613272	total: 10.1ms	remaining: 497ms
2:	learn: 41.4729969	total: 24.3ms	remaining: 786ms
3:	learn: 40.7127004	total: 29.4ms	remaining: 706ms
4:	learn: 39.7775109	total: 34.5ms	remaining: 655ms
5:	learn: 39.1736663	total: 39.4ms	remaining: 618ms
6:	learn: 38.2981109	total: 44.6ms	remaining: 592ms
7:	learn: 37.5352984	total: 49.7ms	remaining: 572ms
8:	learn: 36.7771474	total: 54.7ms	remaining: 553ms
9:	learn: 36.0581366	total: 59.6ms	remaining: 536ms
10:	learn: 35.3542706	total: 64.6ms	remaining: 523ms
11:	learn: 34.6937007	total: 70ms	remaining: 513ms
12:	learn: 34.0408035	total: 79ms	remaining: 528ms
13:	learn: 33.3460240	total: 87.5ms	remaining: 537ms
14:	learn: 32.8086243	total: 94.3ms	remaining: 534ms
15:	learn: 32.1934462	total: 99.6ms	remaining: 523ms
16:	learn: 31.6465519	total: 106ms	remaining: 516ms
17:	learn: 31.2161293	total: 110ms	remaining: 503ms
18:	learn: 30.6730548	total: 115ms	remaining: 491ms
19:	learn: 30.3153659	total: 120ms	remaining: 481ms
20:	learn: 29.7661420	total: 125ms	remaining: 469ms
21:	learn: 29.2095664	total: 130ms	remaining: 459ms
22:	learn: 28.7509592	total: 134ms	remaining: 450ms
23:	learn: 28.4347528	total: 139ms	remaining: 441ms
24:	learn: 28.0551654	total: 144ms	remaining: 432ms
25:	learn: 27.7295952	total: 149ms	remaining: 424ms
26:	learn: 27.2329225	total: 154ms	remaining: 418ms
27:	learn: 26.9970607	total: 160ms	remaining: 411ms
28:	learn: 26.6596544	total: 165ms	remaining: 403ms
29:	learn: 26.2633576	total: 170ms	remaining: 396ms
30:	learn: 25.9761623	total: 175ms	remaining: 390ms
31:	learn: 25.6177371	total: 180ms	remaining: 383ms
32:	learn: 25.2165933	total: 185ms	remaining: 376ms
33:	learn: 24.8012870	total: 190ms	remaining: 370ms
34:	learn: 24.4772532	total: 195ms	remaining: 362ms
35:	learn: 24.1560359	total: 200ms	remaining: 355ms
36:	learn: 23.9688812	total: 205ms	remaining: 348ms
37:	learn: 23.6907607	total: 209ms	remaining: 342ms
38:	learn: 23.3885772	total: 214ms	remaining: 335ms
39:	learn: 23.2234939	total: 219ms	remaining: 328ms
40:	learn: 22.9785026	total: 224ms	remaining: 322ms
41:	learn: 22.6827268	total: 228ms	remaining: 315ms
42:	learn: 22.4564360	total: 233ms	remaining: 309ms
43:	learn: 22.2517827	total: 238ms	remaining: 303ms
44:	learn: 21.9858709	total: 243ms	remaining: 297ms
45:	learn: 21.7595870	total: 248ms	remaining: 291ms
46:	learn: 21.5929957	total: 253ms	remaining: 286ms
47:	learn: 21.4071752	total: 259ms	remaining: 280ms
48:	learn: 21.2186470	total: 264ms	remaining: 275ms
49:	learn: 21.0691824	total: 272ms	remaining: 272ms
50:	learn: 20.8921347	total: 281ms	remaining: 270ms
51:	learn: 20.6834229	total: 293ms	remaining: 270ms
52:	learn: 20.4718988	total: 301ms	remaining: 266ms
53:	learn: 20.3413889	total: 306ms	remaining: 261ms
54:	learn: 20.1785464	total: 312ms	remaining: 256ms
55:	learn: 19.9824314	total: 318ms	remaining: 250ms
56:	learn: 19.8217596	total: 324ms	remaining: 244ms
57:	learn: 19.6318474	total: 330ms	remaining: 239ms
58:	learn: 19.4962236	total: 335ms	remaining: 233ms
59:	learn: 19.3114985	total: 342ms	remaining: 228ms
60:	learn: 19.2181156	total: 364ms	remaining: 233ms
61:	learn: 19.0689614	total: 368ms	remaining: 226ms
62:	learn: 18.9563267	total: 373ms	remaining: 219ms
63:	learn: 18.8343083	total: 378ms	remaining: 213ms
64:	learn: 18.7050033	total: 383ms	remaining: 206ms
65:	learn: 18.6014163	total: 388ms	remaining: 200ms
66:	learn: 18.4910692	total: 392ms	remaining: 193ms
67:	learn: 18.3935194	total: 397ms	remaining: 187ms
68:	learn: 18.2825842	total: 402ms	remaining: 181ms
69:	learn: 18.1519267	total: 407ms	remaining: 174ms
70:	learn: 18.0527651	total: 412ms	remaining: 168ms
71:	learn: 17.9770106	total: 417ms	remaining: 162ms
72:	learn: 17.9151628	total: 422ms	remaining: 156ms
73:	learn: 17.7957486	total: 427ms	remaining: 150ms
74:	learn: 17.7025765	total: 431ms	remaining: 144ms
75:	learn: 17.5957242	total: 436ms	remaining: 138ms
76:	learn: 17.4683244	total: 441ms	remaining: 132ms
77:	learn: 17.3415729	total: 447ms	remaining: 126ms
78:	learn: 17.2886896	total: 452ms	remaining: 120ms
79:	learn: 17.2280922	total: 457ms	remaining: 114ms
80:	learn: 17.1188996	total: 462ms	remaining: 108ms
81:	learn: 17.0236450	total: 469ms	remaining: 103ms
82:	learn: 16.9046661	total: 478ms	remaining: 98ms
83:	learn: 16.7930633	total: 488ms	remaining: 92.9ms
84:	learn: 16.6870100	total: 494ms	remaining: 87.2ms
85:	learn: 16.5512107	total: 502ms	remaining: 81.7ms
86:	learn: 16.4353400	total: 507ms	remaining: 75.7ms
87:	learn: 16.3256461	total: 513ms	remaining: 69.9ms
88:	learn: 16.2968057	total: 518ms	remaining: 64.1ms
89:	learn: 16.2136078	total: 524ms	remaining: 58.2ms
90:	learn: 16.1596096	total: 529ms	remaining: 52.3ms
91:	learn: 16.1164050	total: 535ms	remaining: 46.5ms
92:	learn: 16.0660454	total: 540ms	remaining: 40.6ms
93:	learn: 16.0380611	total: 545ms	remaining: 34.8ms
94:	learn: 15.9494441	total: 551ms	remaining: 29ms
95:	learn: 15.8874840	total: 557ms	remaining: 23.2ms
96:	learn: 15.8288234	total: 563ms	remaining: 17.4ms
97:	learn: 15.7562787	total: 568ms	remaining: 11.6ms
98:	learn: 15.6822678	total: 573ms	remaining: 5.79ms
99:	learn: 15.5901500	total: 579ms	remaining: 0us
0:	learn: 46.4504871	total: 5.03ms	remaining: 498ms
1:	learn: 45.7240114	total: 9.83ms	remaining: 482ms
2:	learn: 45.0308025	total: 14.8ms	remaining: 478ms
3:	learn: 44.1111169	total: 19.4ms	remaining: 465ms
4:	learn: 43.3925352	total: 23.9ms	remaining: 455ms
5:	learn: 42.7856354	total: 29.3ms	remaining: 458ms
6:	learn: 42.1998170	total: 36.2ms	remaining: 481ms
7:	learn: 41.3532708	total: 44.2ms	remaining: 508ms
8:	learn: 40.7314571	total: 52.4ms	remaining: 530ms
9:	learn: 39.9838066	total: 59ms	remaining: 531ms
10:	learn: 39.4168243	total: 64.9ms	remaining: 525ms
11:	learn: 39.0148769	total: 70.7ms	remaining: 519ms
12:	learn: 38.3055855	total: 86.9ms	remaining: 582ms
13:	learn: 37.7343198	total: 92.8ms	remaining: 570ms
14:	learn: 37.4177463	total: 98.4ms	remaining: 557ms
15:	learn: 36.9043298	total: 105ms	remaining: 549ms
16:	learn: 36.3139174	total: 110ms	remaining: 537ms
17:	learn: 35.7200448	total: 115ms	remaining: 526ms
18:	learn: 35.3763394	total: 121ms	remaining: 517ms
19:	learn: 34.7666728	total: 127ms	remaining: 507ms
20:	learn: 34.2642890	total: 133ms	remaining: 499ms
21:	learn: 33.8196936	total: 139ms	remaining: 491ms
22:	learn: 33.4205669	total: 143ms	remaining: 480ms
23:	learn: 32.8565493	total: 150ms	remaining: 475ms
24:	learn: 32.5287132	total: 156ms	remaining: 469ms
25:	learn: 32.2142064	total: 161ms	remaining: 460ms
26:	learn: 31.9258854	total: 166ms	remaining: 450ms
27:	learn: 31.4083665	total: 171ms	remaining: 440ms
28:	learn: 31.1615620	total: 176ms	remaining: 431ms
29:	learn: 30.6948867	total: 181ms	remaining: 421ms
30:	learn: 30.3185108	total: 185ms	remaining: 412ms
31:	learn: 29.9245223	total: 190ms	remaining: 404ms
32:	learn: 29.6683643	total: 195ms	remaining: 395ms
33:	learn: 29.3868143	total: 199ms	remaining: 387ms
34:	learn: 29.1105699	total: 204ms	remaining: 379ms
35:	learn: 28.8274848	total: 209ms	remaining: 371ms
36:	learn: 28.5478288	total: 214ms	remaining: 364ms
37:	learn: 28.2355121	total: 218ms	remaining: 356ms
38:	learn: 28.0182564	total: 224ms	remaining: 350ms
39:	learn: 27.7654405	total: 229ms	remaining: 343ms
40:	learn: 27.5720477	total: 233ms	remaining: 336ms
41:	learn: 27.3182782	total: 238ms	remaining: 329ms
42:	learn: 26.9504431	total: 243ms	remaining: 323ms
43:	learn: 26.7281906	total: 248ms	remaining: 316ms
44:	learn: 26.5390008	total: 253ms	remaining: 310ms
45:	learn: 26.3781338	total: 259ms	remaining: 304ms
46:	learn: 26.1763177	total: 264ms	remaining: 298ms
47:	learn: 25.9417647	total: 271ms	remaining: 293ms
48:	learn: 25.7528045	total: 279ms	remaining: 291ms
49:	learn: 25.6336897	total: 287ms	remaining: 287ms
50:	learn: 25.4800426	total: 295ms	remaining: 283ms
51:	learn: 25.2895681	total: 302ms	remaining: 279ms
52:	learn: 25.0827111	total: 308ms	remaining: 273ms
53:	learn: 24.7987678	total: 314ms	remaining: 267ms
54:	learn: 24.6309982	total: 319ms	remaining: 261ms
55:	learn: 24.3526776	total: 325ms	remaining: 255ms
56:	learn: 24.1689125	total: 330ms	remaining: 249ms
57:	learn: 23.9802039	total: 335ms	remaining: 243ms
58:	learn: 23.8059432	total: 341ms	remaining: 237ms
59:	learn: 23.6006403	total: 346ms	remaining: 231ms
60:	learn: 23.2948382	total: 351ms	remaining: 225ms
61:	learn: 23.1338922	total: 357ms	remaining: 219ms
62:	learn: 22.9581269	total: 363ms	remaining: 213ms
63:	learn: 22.8263127	total: 369ms	remaining: 208ms
64:	learn: 22.6966006	total: 375ms	remaining: 202ms
65:	learn: 22.6012389	total: 380ms	remaining: 196ms
66:	learn: 22.4220244	total: 386ms	remaining: 190ms
67:	learn: 22.3148342	total: 392ms	remaining: 184ms
68:	learn: 22.1543592	total: 397ms	remaining: 179ms
69:	learn: 22.0614050	total: 403ms	remaining: 173ms
70:	learn: 21.9134025	total: 409ms	remaining: 167ms
71:	learn: 21.8198101	total: 414ms	remaining: 161ms
72:	learn: 21.6944173	total: 419ms	remaining: 155ms
73:	learn: 21.4727420	total: 425ms	remaining: 149ms
74:	learn: 21.3000560	total: 430ms	remaining: 143ms
75:	learn: 21.1884740	total: 436ms	remaining: 138ms
76:	learn: 21.0321317	total: 441ms	remaining: 132ms
77:	learn: 20.9371793	total: 447ms	remaining: 126ms
78:	learn: 20.6800341	total: 452ms	remaining: 120ms
79:	learn: 20.5629904	total: 458ms	remaining: 114ms
80:	learn: 20.4098217	total: 464ms	remaining: 109ms
81:	learn: 20.2139261	total: 469ms	remaining: 103ms
82:	learn: 20.1024260	total: 475ms	remaining: 97.3ms
83:	learn: 19.9835855	total: 484ms	remaining: 92.1ms
84:	learn: 19.9018880	total: 492ms	remaining: 86.8ms
85:	learn: 19.7819843	total: 504ms	remaining: 82.1ms
86:	learn: 19.6352780	total: 514ms	remaining: 76.8ms
87:	learn: 19.4888328	total: 522ms	remaining: 71.2ms
88:	learn: 19.4365121	total: 528ms	remaining: 65.3ms
89:	learn: 19.3427430	total: 535ms	remaining: 59.5ms
90:	learn: 19.2884907	total: 542ms	remaining: 53.6ms
91:	learn: 19.1898932	total: 549ms	remaining: 47.8ms
92:	learn: 19.0775661	total: 555ms	remaining: 41.8ms
93:	learn: 19.0334055	total: 562ms	remaining: 35.8ms
94:	learn: 18.9381916	total: 568ms	remaining: 29.9ms
95:	learn: 18.8471198	total: 575ms	remaining: 24ms
96:	learn: 18.7136478	total: 582ms	remaining: 18ms
97:	learn: 18.6633102	total: 587ms	remaining: 12ms
98:	learn: 18.5887516	total: 592ms	remaining: 5.98ms
99:	learn: 18.4841597	total: 597ms	remaining: 0us
0:	learn: 46.2172336	total: 5.51ms	remaining: 546ms
1:	learn: 45.4248871	total: 10.4ms	remaining: 509ms
2:	learn: 44.8702937	total: 15.4ms	remaining: 497ms
3:	learn: 44.2019212	total: 21ms	remaining: 505ms
4:	learn: 43.4805210	total: 26.7ms	remaining: 507ms
5:	learn: 42.7336269	total: 32.5ms	remaining: 509ms
6:	learn: 42.0396670	total: 38ms	remaining: 505ms
7:	learn: 41.5668459	total: 43.4ms	remaining: 499ms
8:	learn: 40.8999125	total: 50ms	remaining: 506ms
9:	learn: 40.3358512	total: 61ms	remaining: 549ms
10:	learn: 39.7511489	total: 70ms	remaining: 566ms
11:	learn: 39.0775416	total: 76.2ms	remaining: 559ms
12:	learn: 38.5204735	total: 84ms	remaining: 562ms
13:	learn: 38.2087509	total: 89.4ms	remaining: 549ms
14:	learn: 37.7259552	total: 94.4ms	remaining: 535ms
15:	learn: 37.1646397	total: 99.7ms	remaining: 523ms
16:	learn: 36.7093520	total: 105ms	remaining: 511ms
17:	learn: 36.2212308	total: 109ms	remaining: 499ms
18:	learn: 35.8682156	total: 114ms	remaining: 487ms
19:	learn: 35.6026383	total: 119ms	remaining: 476ms
20:	learn: 35.1739725	total: 124ms	remaining: 465ms
21:	learn: 34.5938003	total: 128ms	remaining: 455ms
22:	learn: 34.1479056	total: 140ms	remaining: 469ms
23:	learn: 33.8759356	total: 145ms	remaining: 459ms
24:	learn: 33.2898426	total: 150ms	remaining: 449ms
25:	learn: 32.9220237	total: 155ms	remaining: 440ms
26:	learn: 32.4324374	total: 159ms	remaining: 431ms
27:	learn: 32.1726327	total: 164ms	remaining: 423ms
28:	learn: 31.8020879	total: 170ms	remaining: 416ms
29:	learn: 31.4329781	total: 175ms	remaining: 407ms
30:	learn: 30.9995282	total: 179ms	remaining: 399ms
31:	learn: 30.6815978	total: 184ms	remaining: 391ms
32:	learn: 30.2991029	total: 189ms	remaining: 383ms
33:	learn: 30.0354202	total: 194ms	remaining: 376ms
34:	learn: 29.7620535	total: 198ms	remaining: 368ms
35:	learn: 29.4552589	total: 203ms	remaining: 361ms
36:	learn: 29.2634399	total: 208ms	remaining: 355ms
37:	learn: 28.8345135	total: 213ms	remaining: 348ms
38:	learn: 28.5551142	total: 218ms	remaining: 341ms
39:	learn: 28.3258809	total: 223ms	remaining: 335ms
40:	learn: 28.0835564	total: 228ms	remaining: 328ms
41:	learn: 27.7517159	total: 233ms	remaining: 322ms
42:	learn: 27.5427595	total: 238ms	remaining: 316ms
43:	learn: 27.3925105	total: 243ms	remaining: 309ms
44:	learn: 27.2377120	total: 248ms	remaining: 303ms
45:	learn: 26.9930398	total: 257ms	remaining: 302ms
46:	learn: 26.7748687	total: 267ms	remaining: 301ms
47:	learn: 26.5856986	total: 275ms	remaining: 298ms
48:	learn: 26.4344153	total: 282ms	remaining: 294ms
49:	learn: 26.3263456	total: 288ms	remaining: 288ms
50:	learn: 26.2048412	total: 293ms	remaining: 282ms
51:	learn: 26.0608546	total: 299ms	remaining: 276ms
52:	learn: 25.9428146	total: 305ms	remaining: 270ms
53:	learn: 25.7578029	total: 311ms	remaining: 265ms
54:	learn: 25.5696792	total: 317ms	remaining: 259ms
55:	learn: 25.3291935	total: 323ms	remaining: 254ms
56:	learn: 25.1388942	total: 329ms	remaining: 248ms
57:	learn: 24.9853945	total: 334ms	remaining: 242ms
58:	learn: 24.8037785	total: 340ms	remaining: 237ms
59:	learn: 24.5326704	total: 346ms	remaining: 231ms
60:	learn: 24.2208240	total: 352ms	remaining: 225ms
61:	learn: 24.0774015	total: 357ms	remaining: 219ms
62:	learn: 23.9705824	total: 361ms	remaining: 212ms
63:	learn: 23.8877665	total: 366ms	remaining: 206ms
64:	learn: 23.7309043	total: 371ms	remaining: 200ms
65:	learn: 23.5820140	total: 375ms	remaining: 193ms
66:	learn: 23.3762012	total: 380ms	remaining: 187ms
67:	learn: 23.2317502	total: 385ms	remaining: 181ms
68:	learn: 23.0868331	total: 390ms	remaining: 175ms
69:	learn: 22.9642758	total: 394ms	remaining: 169ms
70:	learn: 22.8085341	total: 399ms	remaining: 163ms
71:	learn: 22.6834294	total: 405ms	remaining: 157ms
72:	learn: 22.6152922	total: 409ms	remaining: 151ms
73:	learn: 22.3675145	total: 414ms	remaining: 146ms
74:	learn: 22.3023338	total: 419ms	remaining: 140ms
75:	learn: 22.1866833	total: 424ms	remaining: 134ms
76:	learn: 22.0163130	total: 429ms	remaining: 128ms
77:	learn: 21.9691306	total: 434ms	remaining: 122ms
78:	learn: 21.9004647	total: 439ms	remaining: 117ms
79:	learn: 21.7931869	total: 444ms	remaining: 111ms
80:	learn: 21.6747916	total: 452ms	remaining: 106ms
81:	learn: 21.5187568	total: 461ms	remaining: 101ms
82:	learn: 21.3124880	total: 469ms	remaining: 96ms
83:	learn: 21.1979524	total: 474ms	remaining: 90.3ms
84:	learn: 21.1311130	total: 481ms	remaining: 84.8ms
85:	learn: 21.0606062	total: 486ms	remaining: 79.1ms
86:	learn: 20.9900935	total: 491ms	remaining: 73.3ms
87:	learn: 20.8908054	total: 496ms	remaining: 67.6ms
88:	learn: 20.8088525	total: 501ms	remaining: 61.9ms
89:	learn: 20.7300955	total: 505ms	remaining: 56.1ms
90:	learn: 20.6130276	total: 510ms	remaining: 50.5ms
91:	learn: 20.5437508	total: 515ms	remaining: 44.8ms
92:	learn: 20.5029426	total: 520ms	remaining: 39.1ms
93:	learn: 20.4416708	total: 525ms	remaining: 33.5ms
94:	learn: 20.3917812	total: 529ms	remaining: 27.9ms
95:	learn: 20.3305024	total: 534ms	remaining: 22.3ms
96:	learn: 20.2375704	total: 539ms	remaining: 16.7ms
97:	learn: 20.1835197	total: 544ms	remaining: 11.1ms
98:	learn: 20.1246834	total: 549ms	remaining: 5.54ms
99:	learn: 20.0506334	total: 554ms	remaining: 0us
0:	learn: 46.7334648	total: 5.52ms	remaining: 546ms
1:	learn: 46.2069876	total: 10.8ms	remaining: 529ms
2:	learn: 45.3699967	total: 15.9ms	remaining: 514ms
3:	learn: 44.6866787	total: 21.2ms	remaining: 509ms
4:	learn: 43.8536031	total: 26.9ms	remaining: 511ms
5:	learn: 43.4716853	total: 32.5ms	remaining: 510ms
6:	learn: 42.9929637	total: 38.2ms	remaining: 507ms
7:	learn: 42.4952169	total: 43.9ms	remaining: 505ms
8:	learn: 41.7548337	total: 49.3ms	remaining: 499ms
9:	learn: 41.1054415	total: 59.4ms	remaining: 535ms
10:	learn: 40.4827492	total: 71.7ms	remaining: 580ms
11:	learn: 39.7605907	total: 80.3ms	remaining: 589ms
12:	learn: 39.2532558	total: 89ms	remaining: 595ms
13:	learn: 38.6572753	total: 95.2ms	remaining: 585ms
14:	learn: 38.2886959	total: 102ms	remaining: 576ms
15:	learn: 37.7816612	total: 108ms	remaining: 565ms
16:	learn: 37.1680589	total: 130ms	remaining: 637ms
17:	learn: 36.5753004	total: 136ms	remaining: 620ms
18:	learn: 36.2339458	total: 143ms	remaining: 608ms
19:	learn: 35.9159716	total: 149ms	remaining: 597ms
20:	learn: 35.4591743	total: 154ms	remaining: 580ms
21:	learn: 34.8726070	total: 159ms	remaining: 565ms
22:	learn: 34.3903591	total: 164ms	remaining: 549ms
23:	learn: 34.1236827	total: 169ms	remaining: 535ms
24:	learn: 33.8026540	total: 174ms	remaining: 522ms
25:	learn: 33.4594822	total: 179ms	remaining: 510ms
26:	learn: 33.1338910	total: 184ms	remaining: 498ms
27:	learn: 32.8527106	total: 189ms	remaining: 486ms
28:	learn: 32.4923829	total: 194ms	remaining: 474ms
29:	learn: 32.0560533	total: 199ms	remaining: 463ms
30:	learn: 31.6614408	total: 203ms	remaining: 453ms
31:	learn: 31.2796040	total: 208ms	remaining: 443ms
32:	learn: 30.8214741	total: 213ms	remaining: 432ms
33:	learn: 30.5908694	total: 218ms	remaining: 423ms
34:	learn: 30.3637356	total: 223ms	remaining: 415ms
35:	learn: 30.0446511	total: 228ms	remaining: 406ms
36:	learn: 29.8792549	total: 234ms	remaining: 398ms
37:	learn: 29.5488457	total: 239ms	remaining: 389ms
38:	learn: 29.2808568	total: 244ms	remaining: 381ms
39:	learn: 29.0603765	total: 249ms	remaining: 374ms
40:	learn: 28.8272425	total: 259ms	remaining: 373ms
41:	learn: 28.4753580	total: 269ms	remaining: 372ms
42:	learn: 28.2963614	total: 275ms	remaining: 365ms
43:	learn: 28.1054768	total: 282ms	remaining: 359ms
44:	learn: 27.9038093	total: 288ms	remaining: 352ms
45:	learn: 27.6305487	total: 293ms	remaining: 344ms
46:	learn: 27.4457907	total: 298ms	remaining: 336ms
47:	learn: 27.1855957	total: 303ms	remaining: 328ms
48:	learn: 26.9987934	total: 308ms	remaining: 320ms
49:	learn: 26.7881067	total: 313ms	remaining: 313ms
50:	learn: 26.6385231	total: 318ms	remaining: 305ms
51:	learn: 26.4661755	total: 322ms	remaining: 298ms
52:	learn: 26.3331868	total: 327ms	remaining: 290ms
53:	learn: 26.0353476	total: 332ms	remaining: 283ms
54:	learn: 25.8257147	total: 336ms	remaining: 275ms
55:	learn: 25.5924383	total: 341ms	remaining: 268ms
56:	learn: 25.4082209	total: 346ms	remaining: 261ms
57:	learn: 25.2350104	total: 350ms	remaining: 254ms
58:	learn: 25.1789867	total: 355ms	remaining: 247ms
59:	learn: 24.9111359	total: 360ms	remaining: 240ms
60:	learn: 24.6314503	total: 365ms	remaining: 233ms
61:	learn: 24.4297999	total: 369ms	remaining: 226ms
62:	learn: 24.3126171	total: 374ms	remaining: 220ms
63:	learn: 24.1544005	total: 379ms	remaining: 213ms
64:	learn: 24.0197950	total: 383ms	remaining: 206ms
65:	learn: 23.8483087	total: 388ms	remaining: 200ms
66:	learn: 23.6624915	total: 393ms	remaining: 194ms
67:	learn: 23.5068105	total: 398ms	remaining: 187ms
68:	learn: 23.4266187	total: 402ms	remaining: 181ms
69:	learn: 23.3535388	total: 408ms	remaining: 175ms
70:	learn: 23.2477190	total: 412ms	remaining: 168ms
71:	learn: 23.1877634	total: 417ms	remaining: 162ms
72:	learn: 23.1344720	total: 422ms	remaining: 156ms
73:	learn: 22.9498234	total: 435ms	remaining: 153ms
74:	learn: 22.9068295	total: 440ms	remaining: 147ms
75:	learn: 22.7368434	total: 446ms	remaining: 141ms
76:	learn: 22.6084901	total: 454ms	remaining: 136ms
77:	learn: 22.4690295	total: 462ms	remaining: 130ms
78:	learn: 22.3970100	total: 473ms	remaining: 126ms
79:	learn: 22.3025537	total: 480ms	remaining: 120ms
80:	learn: 22.2089293	total: 487ms	remaining: 114ms
81:	learn: 22.0522107	total: 492ms	remaining: 108ms
82:	learn: 21.9368213	total: 498ms	remaining: 102ms
83:	learn: 21.7968322	total: 504ms	remaining: 95.9ms
84:	learn: 21.7416164	total: 509ms	remaining: 89.9ms
85:	learn: 21.6031099	total: 515ms	remaining: 83.8ms
86:	learn: 21.4530627	total: 520ms	remaining: 77.8ms
87:	learn: 21.3118417	total: 526ms	remaining: 71.7ms
88:	learn: 21.2760431	total: 532ms	remaining: 65.7ms
89:	learn: 21.2071350	total: 537ms	remaining: 59.7ms
90:	learn: 21.1051001	total: 543ms	remaining: 53.7ms
91:	learn: 21.0246142	total: 548ms	remaining: 47.7ms
92:	learn: 20.9834999	total: 553ms	remaining: 41.7ms
93:	learn: 20.8989393	total: 558ms	remaining: 35.6ms
94:	learn: 20.8262231	total: 563ms	remaining: 29.6ms
95:	learn: 20.7369110	total: 568ms	remaining: 23.6ms
96:	learn: 20.6409587	total: 572ms	remaining: 17.7ms
97:	learn: 20.5553641	total: 577ms	remaining: 11.8ms
98:	learn: 20.4317232	total: 581ms	remaining: 5.87ms
99:	learn: 20.3708681	total: 586ms	remaining: 0us
avg_Mae_val de la población en la generación 4: 18.084156886309525 con std media = 9.05555932748435
Mae_val del Mejor modelo en la generación 4: 18.0783 con std = 8.9607
0:	learn: 27.6506730	total: 7.85ms	remaining: 777ms
1:	learn: 27.1638793	total: 14.1ms	remaining: 689ms
2:	learn: 26.8000665	total: 19.7ms	remaining: 638ms
3:	learn: 26.4256132	total: 25.4ms	remaining: 610ms
4:	learn: 26.0088351	total: 31.7ms	remaining: 603ms
5:	learn: 25.7558298	total: 36.1ms	remaining: 566ms
6:	learn: 25.3380711	total: 40.4ms	remaining: 537ms
7:	learn: 25.0571611	total: 44.5ms	remaining: 511ms
8:	learn: 24.6790148	total: 48.5ms	remaining: 490ms
9:	learn: 24.3600941	total: 53.1ms	remaining: 478ms
10:	learn: 24.1105667	total: 57.5ms	remaining: 465ms
11:	learn: 23.7736542	total: 61.8ms	remaining: 453ms
12:	learn: 23.5824429	total: 65.8ms	remaining: 440ms
13:	learn: 23.2658303	total: 70.4ms	remaining: 433ms
14:	learn: 23.0061886	total: 74.9ms	remaining: 424ms
15:	learn: 22.8060389	total: 79.5ms	remaining: 417ms
16:	learn: 22.5899735	total: 84.3ms	remaining: 412ms
17:	learn: 22.3625048	total: 89.1ms	remaining: 406ms
18:	learn: 22.0706477	total: 94.3ms	remaining: 402ms
19:	learn: 21.8739394	total: 99.5ms	remaining: 398ms
20:	learn: 21.6143650	total: 104ms	remaining: 391ms
21:	learn: 21.4571623	total: 109ms	remaining: 387ms
22:	learn: 21.2395769	total: 114ms	remaining: 382ms
23:	learn: 20.9801795	total: 119ms	remaining: 377ms
24:	learn: 20.8036808	total: 124ms	remaining: 372ms
25:	learn: 20.6387539	total: 129ms	remaining: 366ms
26:	learn: 20.4401427	total: 133ms	remaining: 360ms
27:	learn: 20.2879575	total: 138ms	remaining: 354ms
28:	learn: 20.0538664	total: 142ms	remaining: 348ms
29:	learn: 19.8363102	total: 147ms	remaining: 343ms
30:	learn: 19.7015446	total: 151ms	remaining: 337ms
31:	learn: 19.5483114	total: 156ms	remaining: 331ms
32:	learn: 19.4163053	total: 161ms	remaining: 327ms
33:	learn: 19.2880625	total: 166ms	remaining: 322ms
34:	learn: 19.1303389	total: 171ms	remaining: 317ms
35:	learn: 18.9237448	total: 175ms	remaining: 312ms
36:	learn: 18.8142925	total: 180ms	remaining: 306ms
37:	learn: 18.6994696	total: 185ms	remaining: 301ms
38:	learn: 18.5629211	total: 190ms	remaining: 297ms
39:	learn: 18.4600917	total: 194ms	remaining: 292ms
40:	learn: 18.3567139	total: 199ms	remaining: 286ms
41:	learn: 18.2120527	total: 203ms	remaining: 281ms
42:	learn: 18.0688062	total: 208ms	remaining: 276ms
43:	learn: 17.9250181	total: 213ms	remaining: 271ms
44:	learn: 17.8399138	total: 218ms	remaining: 266ms
45:	learn: 17.6720713	total: 222ms	remaining: 261ms
46:	learn: 17.5273091	total: 227ms	remaining: 256ms
47:	learn: 17.4232814	total: 232ms	remaining: 251ms
48:	learn: 17.2957579	total: 241ms	remaining: 250ms
49:	learn: 17.1892874	total: 248ms	remaining: 248ms
50:	learn: 17.0490355	total: 256ms	remaining: 246ms
51:	learn: 16.9666450	total: 262ms	remaining: 242ms
52:	learn: 16.8600056	total: 282ms	remaining: 250ms
53:	learn: 16.7542588	total: 288ms	remaining: 245ms
54:	learn: 16.6316077	total: 293ms	remaining: 240ms
55:	learn: 16.5588112	total: 299ms	remaining: 235ms
56:	learn: 16.5010186	total: 304ms	remaining: 229ms
57:	learn: 16.4081540	total: 309ms	remaining: 224ms
58:	learn: 16.3040451	total: 313ms	remaining: 218ms
59:	learn: 16.1890564	total: 319ms	remaining: 212ms
60:	learn: 16.0977103	total: 324ms	remaining: 207ms
61:	learn: 15.9627607	total: 331ms	remaining: 203ms
62:	learn: 15.9022248	total: 338ms	remaining: 199ms
63:	learn: 15.8151881	total: 343ms	remaining: 193ms
64:	learn: 15.7353125	total: 348ms	remaining: 188ms
65:	learn: 15.6312897	total: 353ms	remaining: 182ms
66:	learn: 15.5330927	total: 357ms	remaining: 176ms
67:	learn: 15.4698681	total: 362ms	remaining: 170ms
68:	learn: 15.4108571	total: 367ms	remaining: 165ms
69:	learn: 15.3492945	total: 371ms	remaining: 159ms
70:	learn: 15.3036540	total: 376ms	remaining: 154ms
71:	learn: 15.2390833	total: 381ms	remaining: 148ms
72:	learn: 15.1556327	total: 386ms	remaining: 143ms
73:	learn: 15.1016315	total: 391ms	remaining: 137ms
74:	learn: 15.0287076	total: 396ms	remaining: 132ms
75:	learn: 14.9530572	total: 401ms	remaining: 127ms
76:	learn: 14.8965517	total: 406ms	remaining: 121ms
77:	learn: 14.8125426	total: 410ms	remaining: 116ms
78:	learn: 14.7435359	total: 415ms	remaining: 110ms
79:	learn: 14.6963163	total: 420ms	remaining: 105ms
80:	learn: 14.6200060	total: 425ms	remaining: 99.6ms
81:	learn: 14.5707760	total: 430ms	remaining: 94.3ms
82:	learn: 14.5053651	total: 438ms	remaining: 89.7ms
83:	learn: 14.4115458	total: 446ms	remaining: 84.9ms
84:	learn: 14.3117159	total: 453ms	remaining: 79.9ms
85:	learn: 14.2511326	total: 458ms	remaining: 74.6ms
86:	learn: 14.1372486	total: 463ms	remaining: 69.3ms
87:	learn: 14.0992301	total: 468ms	remaining: 63.8ms
88:	learn: 14.0228331	total: 473ms	remaining: 58.4ms
89:	learn: 13.9249836	total: 477ms	remaining: 53ms
90:	learn: 13.8679364	total: 481ms	remaining: 47.6ms
91:	learn: 13.8405578	total: 486ms	remaining: 42.3ms
92:	learn: 13.7711325	total: 490ms	remaining: 36.9ms
93:	learn: 13.7357019	total: 495ms	remaining: 31.6ms
94:	learn: 13.6735271	total: 500ms	remaining: 26.3ms
95:	learn: 13.5682393	total: 504ms	remaining: 21ms
96:	learn: 13.5342610	total: 508ms	remaining: 15.7ms
97:	learn: 13.4710034	total: 513ms	remaining: 10.5ms
98:	learn: 13.4022402	total: 517ms	remaining: 5.23ms
99:	learn: 13.3351238	total: 522ms	remaining: 0us
0:	learn: 42.9181702	total: 4.51ms	remaining: 447ms
1:	learn: 42.0286736	total: 9.05ms	remaining: 444ms
2:	learn: 41.2764568	total: 13.2ms	remaining: 427ms
3:	learn: 40.4721918	total: 17.7ms	remaining: 425ms
4:	learn: 39.8518928	total: 21.9ms	remaining: 415ms
5:	learn: 39.2645479	total: 26.2ms	remaining: 410ms
6:	learn: 38.4453704	total: 30.3ms	remaining: 402ms
7:	learn: 37.7122059	total: 34.9ms	remaining: 401ms
8:	learn: 36.9185796	total: 39.4ms	remaining: 398ms
9:	learn: 36.1668427	total: 44.1ms	remaining: 397ms
10:	learn: 35.5639029	total: 49.3ms	remaining: 399ms
11:	learn: 34.7724193	total: 54.5ms	remaining: 400ms
12:	learn: 34.3053433	total: 59.5ms	remaining: 398ms
13:	learn: 33.6561327	total: 61.1ms	remaining: 375ms
14:	learn: 33.0134042	total: 66.1ms	remaining: 375ms
15:	learn: 32.4483300	total: 71.1ms	remaining: 373ms
16:	learn: 31.8581144	total: 75.8ms	remaining: 370ms
17:	learn: 31.2858301	total: 84.9ms	remaining: 387ms
18:	learn: 30.8483018	total: 92.4ms	remaining: 394ms
19:	learn: 30.4174622	total: 99.8ms	remaining: 399ms
20:	learn: 29.8994411	total: 105ms	remaining: 395ms
21:	learn: 29.5045355	total: 111ms	remaining: 392ms
22:	learn: 28.9923519	total: 115ms	remaining: 386ms
23:	learn: 28.4255717	total: 120ms	remaining: 380ms
24:	learn: 28.0283139	total: 124ms	remaining: 372ms
25:	learn: 27.7434814	total: 128ms	remaining: 365ms
26:	learn: 27.2770731	total: 133ms	remaining: 360ms
27:	learn: 26.8928270	total: 137ms	remaining: 352ms
28:	learn: 26.4282671	total: 141ms	remaining: 346ms
29:	learn: 26.0272764	total: 146ms	remaining: 340ms
30:	learn: 25.7579312	total: 150ms	remaining: 334ms
31:	learn: 25.4542434	total: 154ms	remaining: 328ms
32:	learn: 25.1232564	total: 158ms	remaining: 322ms
33:	learn: 24.8110795	total: 163ms	remaining: 316ms
34:	learn: 24.5077579	total: 167ms	remaining: 311ms
35:	learn: 24.1909000	total: 172ms	remaining: 305ms
36:	learn: 23.8719468	total: 176ms	remaining: 300ms
37:	learn: 23.5764366	total: 177ms	remaining: 289ms
38:	learn: 23.3468086	total: 181ms	remaining: 284ms
39:	learn: 23.0908771	total: 185ms	remaining: 278ms
40:	learn: 22.8580876	total: 190ms	remaining: 273ms
41:	learn: 22.6060825	total: 194ms	remaining: 268ms
42:	learn: 22.4125407	total: 199ms	remaining: 263ms
43:	learn: 22.1990617	total: 203ms	remaining: 258ms
44:	learn: 21.9716164	total: 207ms	remaining: 253ms
45:	learn: 21.8360935	total: 211ms	remaining: 248ms
46:	learn: 21.6169256	total: 215ms	remaining: 243ms
47:	learn: 21.4620612	total: 220ms	remaining: 238ms
48:	learn: 21.2894194	total: 224ms	remaining: 233ms
49:	learn: 21.1066266	total: 228ms	remaining: 228ms
50:	learn: 20.9484898	total: 233ms	remaining: 224ms
51:	learn: 20.7195338	total: 237ms	remaining: 219ms
52:	learn: 20.4899740	total: 242ms	remaining: 214ms
53:	learn: 20.3356583	total: 246ms	remaining: 210ms
54:	learn: 20.0754393	total: 251ms	remaining: 205ms
55:	learn: 19.9199159	total: 256ms	remaining: 201ms
56:	learn: 19.7761128	total: 261ms	remaining: 197ms
57:	learn: 19.6533060	total: 266ms	remaining: 192ms
58:	learn: 19.5113942	total: 271ms	remaining: 188ms
59:	learn: 19.3985022	total: 275ms	remaining: 184ms
60:	learn: 19.2683443	total: 289ms	remaining: 185ms
61:	learn: 19.1460824	total: 298ms	remaining: 183ms
62:	learn: 19.0042655	total: 305ms	remaining: 179ms
63:	learn: 18.8720873	total: 312ms	remaining: 175ms
64:	learn: 18.7183888	total: 317ms	remaining: 171ms
65:	learn: 18.5472360	total: 322ms	remaining: 166ms
66:	learn: 18.3976642	total: 327ms	remaining: 161ms
67:	learn: 18.2282851	total: 333ms	remaining: 157ms
68:	learn: 18.1469157	total: 338ms	remaining: 152ms
69:	learn: 18.0649494	total: 343ms	remaining: 147ms
70:	learn: 17.9485405	total: 348ms	remaining: 142ms
71:	learn: 17.8460261	total: 353ms	remaining: 137ms
72:	learn: 17.7679843	total: 358ms	remaining: 133ms
73:	learn: 17.5989290	total: 364ms	remaining: 128ms
74:	learn: 17.4381322	total: 369ms	remaining: 123ms
75:	learn: 17.3370886	total: 374ms	remaining: 118ms
76:	learn: 17.2675308	total: 378ms	remaining: 113ms
77:	learn: 17.1946430	total: 382ms	remaining: 108ms
78:	learn: 17.0923725	total: 387ms	remaining: 103ms
79:	learn: 17.0537265	total: 391ms	remaining: 97.8ms
80:	learn: 16.9456831	total: 395ms	remaining: 92.7ms
81:	learn: 16.8457353	total: 400ms	remaining: 87.7ms
82:	learn: 16.7469310	total: 404ms	remaining: 82.8ms
83:	learn: 16.6679953	total: 408ms	remaining: 77.8ms
84:	learn: 16.6274189	total: 413ms	remaining: 72.9ms
85:	learn: 16.5516530	total: 417ms	remaining: 67.9ms
86:	learn: 16.4886066	total: 421ms	remaining: 63ms
87:	learn: 16.3947859	total: 425ms	remaining: 58ms
88:	learn: 16.3406495	total: 430ms	remaining: 53.1ms
89:	learn: 16.3019195	total: 435ms	remaining: 48.3ms
90:	learn: 16.1860681	total: 439ms	remaining: 43.4ms
91:	learn: 16.1282812	total: 443ms	remaining: 38.5ms
92:	learn: 16.0303652	total: 448ms	remaining: 33.7ms
93:	learn: 15.9561692	total: 453ms	remaining: 28.9ms
94:	learn: 15.8733994	total: 458ms	remaining: 24.1ms
95:	learn: 15.8108833	total: 462ms	remaining: 19.3ms
96:	learn: 15.7606004	total: 467ms	remaining: 14.5ms
97:	learn: 15.6984664	total: 472ms	remaining: 9.63ms
98:	learn: 15.6223632	total: 478ms	remaining: 4.83ms
99:	learn: 15.5671136	total: 486ms	remaining: 0us
0:	learn: 46.4788614	total: 1.8ms	remaining: 178ms
1:	learn: 45.7608372	total: 6.45ms	remaining: 316ms
2:	learn: 44.8825004	total: 10.6ms	remaining: 343ms
3:	learn: 44.0362738	total: 14.9ms	remaining: 358ms
4:	learn: 43.2086374	total: 19.4ms	remaining: 369ms
5:	learn: 42.5835773	total: 24.5ms	remaining: 384ms
6:	learn: 41.9673269	total: 29.3ms	remaining: 390ms
7:	learn: 41.4748717	total: 33.9ms	remaining: 390ms
8:	learn: 40.7129183	total: 38.6ms	remaining: 390ms
9:	learn: 39.8900884	total: 43.4ms	remaining: 391ms
10:	learn: 39.4142193	total: 47.7ms	remaining: 386ms
11:	learn: 38.8645613	total: 52.4ms	remaining: 384ms
12:	learn: 38.2394731	total: 56.7ms	remaining: 379ms
13:	learn: 37.6834515	total: 60.7ms	remaining: 373ms
14:	learn: 37.0673507	total: 64.8ms	remaining: 367ms
15:	learn: 36.4728340	total: 69.2ms	remaining: 363ms
16:	learn: 36.0489086	total: 73.5ms	remaining: 359ms
17:	learn: 35.4744141	total: 78ms	remaining: 355ms
18:	learn: 35.0106021	total: 82.2ms	remaining: 350ms
19:	learn: 34.5586053	total: 86.4ms	remaining: 346ms
20:	learn: 34.1308223	total: 91.3ms	remaining: 344ms
21:	learn: 33.7701450	total: 95.7ms	remaining: 339ms
22:	learn: 33.4425444	total: 99.8ms	remaining: 334ms
23:	learn: 33.0296412	total: 104ms	remaining: 331ms
24:	learn: 32.6359803	total: 109ms	remaining: 327ms
25:	learn: 32.1846182	total: 113ms	remaining: 322ms
26:	learn: 31.7620230	total: 117ms	remaining: 318ms
27:	learn: 31.4669337	total: 122ms	remaining: 313ms
28:	learn: 31.0792062	total: 127ms	remaining: 310ms
29:	learn: 30.7970537	total: 131ms	remaining: 306ms
30:	learn: 30.4952215	total: 136ms	remaining: 302ms
31:	learn: 30.2845344	total: 140ms	remaining: 298ms
32:	learn: 29.9592732	total: 145ms	remaining: 295ms
33:	learn: 29.6798596	total: 150ms	remaining: 291ms
34:	learn: 29.3368905	total: 176ms	remaining: 326ms
35:	learn: 29.0621238	total: 184ms	remaining: 327ms
36:	learn: 28.6445375	total: 189ms	remaining: 322ms
37:	learn: 28.2418096	total: 195ms	remaining: 317ms
38:	learn: 27.9495390	total: 201ms	remaining: 314ms
39:	learn: 27.6958160	total: 206ms	remaining: 309ms
40:	learn: 27.4811189	total: 211ms	remaining: 304ms
41:	learn: 27.1494420	total: 217ms	remaining: 299ms
42:	learn: 26.8388873	total: 222ms	remaining: 294ms
43:	learn: 26.5721300	total: 227ms	remaining: 289ms
44:	learn: 26.3384738	total: 232ms	remaining: 284ms
45:	learn: 26.1894781	total: 238ms	remaining: 279ms
46:	learn: 25.9580198	total: 243ms	remaining: 274ms
47:	learn: 25.7897985	total: 249ms	remaining: 269ms
48:	learn: 25.6000271	total: 253ms	remaining: 263ms
49:	learn: 25.4130873	total: 257ms	remaining: 257ms
50:	learn: 25.1699061	total: 262ms	remaining: 252ms
51:	learn: 24.9324449	total: 267ms	remaining: 246ms
52:	learn: 24.7729152	total: 271ms	remaining: 241ms
53:	learn: 24.5026563	total: 276ms	remaining: 235ms
54:	learn: 24.2332627	total: 281ms	remaining: 230ms
55:	learn: 23.9611984	total: 285ms	remaining: 224ms
56:	learn: 23.7862603	total: 290ms	remaining: 219ms
57:	learn: 23.6318154	total: 294ms	remaining: 213ms
58:	learn: 23.4443306	total: 299ms	remaining: 208ms
59:	learn: 23.2581425	total: 304ms	remaining: 203ms
60:	learn: 23.0549901	total: 310ms	remaining: 198ms
61:	learn: 22.8666218	total: 315ms	remaining: 193ms
62:	learn: 22.6956739	total: 319ms	remaining: 188ms
63:	learn: 22.5068544	total: 324ms	remaining: 182ms
64:	learn: 22.1859147	total: 330ms	remaining: 177ms
65:	learn: 22.0462043	total: 335ms	remaining: 173ms
66:	learn: 21.9329563	total: 342ms	remaining: 168ms
67:	learn: 21.8029736	total: 350ms	remaining: 165ms
68:	learn: 21.6861091	total: 361ms	remaining: 162ms
69:	learn: 21.4838140	total: 367ms	remaining: 157ms
70:	learn: 21.3548921	total: 372ms	remaining: 152ms
71:	learn: 21.2244517	total: 376ms	remaining: 146ms
72:	learn: 21.0702958	total: 381ms	remaining: 141ms
73:	learn: 20.9224662	total: 385ms	remaining: 135ms
74:	learn: 20.8150357	total: 390ms	remaining: 130ms
75:	learn: 20.6962739	total: 395ms	remaining: 125ms
76:	learn: 20.5809258	total: 399ms	remaining: 119ms
77:	learn: 20.4735470	total: 404ms	remaining: 114ms
78:	learn: 20.3778167	total: 408ms	remaining: 108ms
79:	learn: 20.2211268	total: 412ms	remaining: 103ms
80:	learn: 20.1478678	total: 418ms	remaining: 97.9ms
81:	learn: 20.1032967	total: 422ms	remaining: 92.6ms
82:	learn: 19.9236300	total: 426ms	remaining: 87.3ms
83:	learn: 19.8151745	total: 431ms	remaining: 82ms
84:	learn: 19.7099856	total: 435ms	remaining: 76.8ms
85:	learn: 19.6264833	total: 440ms	remaining: 71.6ms
86:	learn: 19.4916361	total: 444ms	remaining: 66.3ms
87:	learn: 19.4050529	total: 448ms	remaining: 61.1ms
88:	learn: 19.2547065	total: 453ms	remaining: 56ms
89:	learn: 19.1610225	total: 457ms	remaining: 50.8ms
90:	learn: 19.0898958	total: 461ms	remaining: 45.6ms
91:	learn: 19.0489664	total: 465ms	remaining: 40.5ms
92:	learn: 18.9206240	total: 470ms	remaining: 35.4ms
93:	learn: 18.8636239	total: 475ms	remaining: 30.3ms
94:	learn: 18.8126187	total: 479ms	remaining: 25.2ms
95:	learn: 18.7579275	total: 483ms	remaining: 20.1ms
96:	learn: 18.6382753	total: 488ms	remaining: 15.1ms
97:	learn: 18.5397334	total: 493ms	remaining: 10.1ms
98:	learn: 18.4375951	total: 498ms	remaining: 5.03ms
99:	learn: 18.4033755	total: 503ms	remaining: 0us
0:	learn: 46.1068821	total: 2.15ms	remaining: 213ms
1:	learn: 45.3970261	total: 6.85ms	remaining: 336ms
2:	learn: 44.8732696	total: 11.6ms	remaining: 376ms
3:	learn: 44.1290184	total: 16.2ms	remaining: 390ms
4:	learn: 43.3290271	total: 25.4ms	remaining: 482ms
5:	learn: 42.7069090	total: 33.6ms	remaining: 527ms
6:	learn: 42.0572971	total: 42.9ms	remaining: 569ms
7:	learn: 41.4797924	total: 50.8ms	remaining: 584ms
8:	learn: 41.0023122	total: 56.2ms	remaining: 568ms
9:	learn: 40.5330570	total: 61.3ms	remaining: 552ms
10:	learn: 39.9726545	total: 66.2ms	remaining: 536ms
11:	learn: 39.3044053	total: 71.5ms	remaining: 524ms
12:	learn: 38.8169735	total: 76.7ms	remaining: 513ms
13:	learn: 38.2458761	total: 82.2ms	remaining: 505ms
14:	learn: 37.6280321	total: 87.4ms	remaining: 495ms
15:	learn: 37.0800610	total: 92.6ms	remaining: 486ms
16:	learn: 36.5489363	total: 97.6ms	remaining: 476ms
17:	learn: 36.0981456	total: 102ms	remaining: 467ms
18:	learn: 35.6956274	total: 108ms	remaining: 462ms
19:	learn: 35.1471999	total: 114ms	remaining: 456ms
20:	learn: 34.6235408	total: 118ms	remaining: 445ms
21:	learn: 34.1987018	total: 122ms	remaining: 434ms
22:	learn: 33.8985062	total: 127ms	remaining: 425ms
23:	learn: 33.3869017	total: 131ms	remaining: 416ms
24:	learn: 32.9100550	total: 135ms	remaining: 406ms
25:	learn: 32.4156208	total: 140ms	remaining: 398ms
26:	learn: 31.9320493	total: 144ms	remaining: 389ms
27:	learn: 31.5711468	total: 148ms	remaining: 381ms
28:	learn: 31.2404433	total: 153ms	remaining: 374ms
29:	learn: 30.8807946	total: 157ms	remaining: 366ms
30:	learn: 30.5948438	total: 161ms	remaining: 359ms
31:	learn: 30.3885560	total: 165ms	remaining: 351ms
32:	learn: 30.0625101	total: 170ms	remaining: 344ms
33:	learn: 29.9113114	total: 174ms	remaining: 338ms
34:	learn: 29.6983470	total: 179ms	remaining: 332ms
35:	learn: 29.4775849	total: 183ms	remaining: 325ms
36:	learn: 29.0538055	total: 187ms	remaining: 319ms
37:	learn: 28.6792318	total: 192ms	remaining: 313ms
38:	learn: 28.4231383	total: 196ms	remaining: 307ms
39:	learn: 28.1078565	total: 201ms	remaining: 301ms
40:	learn: 27.9079179	total: 205ms	remaining: 294ms
41:	learn: 27.6721506	total: 209ms	remaining: 289ms
42:	learn: 27.4228033	total: 214ms	remaining: 283ms
43:	learn: 27.1740534	total: 218ms	remaining: 278ms
44:	learn: 26.8584071	total: 222ms	remaining: 272ms
45:	learn: 26.6902083	total: 227ms	remaining: 266ms
46:	learn: 26.4855335	total: 232ms	remaining: 261ms
47:	learn: 26.2730822	total: 239ms	remaining: 259ms
48:	learn: 26.1058689	total: 246ms	remaining: 256ms
49:	learn: 25.8587318	total: 253ms	remaining: 253ms
50:	learn: 25.7558005	total: 259ms	remaining: 249ms
51:	learn: 25.5846925	total: 264ms	remaining: 244ms
52:	learn: 25.4249887	total: 270ms	remaining: 240ms
53:	learn: 25.1911054	total: 274ms	remaining: 234ms
54:	learn: 25.0544755	total: 278ms	remaining: 228ms
55:	learn: 24.8874006	total: 283ms	remaining: 222ms
56:	learn: 24.7736279	total: 287ms	remaining: 216ms
57:	learn: 24.6156255	total: 291ms	remaining: 211ms
58:	learn: 24.3962421	total: 296ms	remaining: 206ms
59:	learn: 24.2685129	total: 300ms	remaining: 200ms
60:	learn: 24.1874096	total: 304ms	remaining: 195ms
61:	learn: 24.0394287	total: 309ms	remaining: 189ms
62:	learn: 23.9281768	total: 313ms	remaining: 184ms
63:	learn: 23.7423900	total: 317ms	remaining: 178ms
64:	learn: 23.6015209	total: 321ms	remaining: 173ms
65:	learn: 23.4677943	total: 326ms	remaining: 168ms
66:	learn: 23.3215256	total: 330ms	remaining: 162ms
67:	learn: 23.1869360	total: 334ms	remaining: 157ms
68:	learn: 22.9691180	total: 338ms	remaining: 152ms
69:	learn: 22.7531657	total: 342ms	remaining: 147ms
70:	learn: 22.6133477	total: 347ms	remaining: 142ms
71:	learn: 22.3452758	total: 351ms	remaining: 137ms
72:	learn: 22.2065350	total: 355ms	remaining: 131ms
73:	learn: 22.1071155	total: 360ms	remaining: 126ms
74:	learn: 21.9740686	total: 364ms	remaining: 121ms
75:	learn: 21.8892033	total: 368ms	remaining: 116ms
76:	learn: 21.8267882	total: 372ms	remaining: 111ms
77:	learn: 21.7423479	total: 376ms	remaining: 106ms
78:	learn: 21.6242075	total: 380ms	remaining: 101ms
79:	learn: 21.5016910	total: 385ms	remaining: 96.2ms
80:	learn: 21.4806623	total: 386ms	remaining: 90.5ms
81:	learn: 21.3166637	total: 390ms	remaining: 85.6ms
82:	learn: 21.2222534	total: 395ms	remaining: 80.9ms
83:	learn: 21.1535708	total: 400ms	remaining: 76.1ms
84:	learn: 21.0858902	total: 404ms	remaining: 71.4ms
85:	learn: 20.9206003	total: 409ms	remaining: 66.6ms
86:	learn: 20.8674695	total: 413ms	remaining: 61.8ms
87:	learn: 20.8089875	total: 418ms	remaining: 56.9ms
88:	learn: 20.7085401	total: 422ms	remaining: 52.2ms
89:	learn: 20.5513468	total: 427ms	remaining: 47.4ms
90:	learn: 20.4586742	total: 431ms	remaining: 42.6ms
91:	learn: 20.3932149	total: 436ms	remaining: 37.9ms
92:	learn: 20.3000895	total: 440ms	remaining: 33.1ms
93:	learn: 20.2254009	total: 445ms	remaining: 28.4ms
94:	learn: 20.1750050	total: 450ms	remaining: 23.7ms
95:	learn: 20.0715579	total: 456ms	remaining: 19ms
96:	learn: 19.9920082	total: 464ms	remaining: 14.4ms
97:	learn: 19.9664401	total: 476ms	remaining: 9.71ms
98:	learn: 19.8689673	total: 482ms	remaining: 4.87ms
99:	learn: 19.7537356	total: 489ms	remaining: 0us
0:	learn: 46.8832143	total: 5.82ms	remaining: 576ms
1:	learn: 45.8700349	total: 10.4ms	remaining: 511ms
2:	learn: 45.0546867	total: 14.8ms	remaining: 479ms
3:	learn: 44.2829439	total: 19ms	remaining: 456ms
4:	learn: 43.4609042	total: 22.9ms	remaining: 435ms
5:	learn: 42.6754991	total: 27.4ms	remaining: 429ms
6:	learn: 41.9234935	total: 31.8ms	remaining: 422ms
7:	learn: 41.3987518	total: 35.8ms	remaining: 411ms
8:	learn: 40.6625066	total: 39.8ms	remaining: 403ms
9:	learn: 40.0029561	total: 44.2ms	remaining: 398ms
10:	learn: 39.3897033	total: 48.3ms	remaining: 391ms
11:	learn: 38.7741453	total: 52.5ms	remaining: 385ms
12:	learn: 38.1201100	total: 56.7ms	remaining: 380ms
13:	learn: 37.5129454	total: 61ms	remaining: 374ms
14:	learn: 37.2062206	total: 65.4ms	remaining: 370ms
15:	learn: 36.6831741	total: 69.4ms	remaining: 364ms
16:	learn: 36.2902788	total: 74.2ms	remaining: 362ms
17:	learn: 35.7639930	total: 78.9ms	remaining: 360ms
18:	learn: 35.2580953	total: 83.2ms	remaining: 355ms
19:	learn: 34.7809739	total: 87.9ms	remaining: 352ms
20:	learn: 34.1330433	total: 92.6ms	remaining: 348ms
21:	learn: 33.7302219	total: 97.2ms	remaining: 345ms
22:	learn: 33.3502495	total: 102ms	remaining: 341ms
23:	learn: 33.0067804	total: 107ms	remaining: 337ms
24:	learn: 32.6897855	total: 111ms	remaining: 333ms
25:	learn: 32.4361119	total: 116ms	remaining: 331ms
26:	learn: 32.1278981	total: 125ms	remaining: 338ms
27:	learn: 31.7863721	total: 132ms	remaining: 340ms
28:	learn: 31.4791450	total: 139ms	remaining: 340ms
29:	learn: 31.1760161	total: 143ms	remaining: 334ms
30:	learn: 30.9238888	total: 149ms	remaining: 333ms
31:	learn: 30.5500905	total: 154ms	remaining: 327ms
32:	learn: 30.3078126	total: 158ms	remaining: 321ms
33:	learn: 30.0480921	total: 162ms	remaining: 315ms
34:	learn: 29.8623884	total: 167ms	remaining: 309ms
35:	learn: 29.5991038	total: 171ms	remaining: 305ms
36:	learn: 29.4061161	total: 176ms	remaining: 299ms
37:	learn: 29.0269515	total: 180ms	remaining: 294ms
38:	learn: 28.8224959	total: 185ms	remaining: 289ms
39:	learn: 28.6417843	total: 189ms	remaining: 284ms
40:	learn: 28.3633368	total: 194ms	remaining: 279ms
41:	learn: 28.0200246	total: 198ms	remaining: 274ms
42:	learn: 27.7221254	total: 203ms	remaining: 269ms
43:	learn: 27.5105818	total: 207ms	remaining: 264ms
44:	learn: 27.3551010	total: 212ms	remaining: 259ms
45:	learn: 27.0787522	total: 216ms	remaining: 253ms
46:	learn: 26.8726317	total: 220ms	remaining: 249ms
47:	learn: 26.8003277	total: 225ms	remaining: 244ms
48:	learn: 26.5493785	total: 230ms	remaining: 239ms
49:	learn: 26.3699550	total: 235ms	remaining: 235ms
50:	learn: 26.1519631	total: 239ms	remaining: 230ms
51:	learn: 25.9277325	total: 243ms	remaining: 225ms
52:	learn: 25.7286035	total: 247ms	remaining: 219ms
53:	learn: 25.4999193	total: 252ms	remaining: 214ms
54:	learn: 25.3434703	total: 256ms	remaining: 210ms
55:	learn: 25.1497545	total: 260ms	remaining: 204ms
56:	learn: 24.9498143	total: 264ms	remaining: 199ms
57:	learn: 24.6509390	total: 269ms	remaining: 195ms
58:	learn: 24.5576144	total: 273ms	remaining: 190ms
59:	learn: 24.4265144	total: 278ms	remaining: 185ms
60:	learn: 24.3100706	total: 282ms	remaining: 180ms
61:	learn: 24.1727952	total: 287ms	remaining: 176ms
62:	learn: 24.0478558	total: 292ms	remaining: 171ms
63:	learn: 23.9124577	total: 296ms	remaining: 167ms
64:	learn: 23.7703718	total: 301ms	remaining: 162ms
65:	learn: 23.5975027	total: 306ms	remaining: 158ms
66:	learn: 23.4318077	total: 310ms	remaining: 153ms
67:	learn: 23.3099691	total: 315ms	remaining: 148ms
68:	learn: 23.1947982	total: 320ms	remaining: 144ms
69:	learn: 23.0260174	total: 324ms	remaining: 139ms
70:	learn: 22.8523100	total: 332ms	remaining: 136ms
71:	learn: 22.8028534	total: 340ms	remaining: 132ms
72:	learn: 22.6880658	total: 350ms	remaining: 129ms
73:	learn: 22.5956809	total: 356ms	remaining: 125ms
74:	learn: 22.4692932	total: 363ms	remaining: 121ms
75:	learn: 22.2863504	total: 369ms	remaining: 116ms
76:	learn: 22.1911237	total: 374ms	remaining: 112ms
77:	learn: 22.1098391	total: 380ms	remaining: 107ms
78:	learn: 22.0182738	total: 385ms	remaining: 102ms
79:	learn: 21.9306746	total: 390ms	remaining: 97.6ms
80:	learn: 21.7508233	total: 396ms	remaining: 93ms
81:	learn: 21.7108446	total: 403ms	remaining: 88.5ms
82:	learn: 21.5931852	total: 409ms	remaining: 83.8ms
83:	learn: 21.4480361	total: 414ms	remaining: 78.9ms
84:	learn: 21.3092119	total: 420ms	remaining: 74.1ms
85:	learn: 21.2605557	total: 425ms	remaining: 69.3ms
86:	learn: 21.1123597	total: 430ms	remaining: 64.3ms
87:	learn: 21.0115642	total: 435ms	remaining: 59.3ms
88:	learn: 20.9389040	total: 439ms	remaining: 54.3ms
89:	learn: 20.8300300	total: 444ms	remaining: 49.3ms
90:	learn: 20.7159733	total: 448ms	remaining: 44.3ms
91:	learn: 20.6282090	total: 452ms	remaining: 39.3ms
92:	learn: 20.5164529	total: 456ms	remaining: 34.3ms
93:	learn: 20.4692032	total: 460ms	remaining: 29.4ms
94:	learn: 20.3768451	total: 464ms	remaining: 24.4ms
95:	learn: 20.2808056	total: 468ms	remaining: 19.5ms
96:	learn: 20.2082089	total: 473ms	remaining: 14.6ms
97:	learn: 20.1698768	total: 477ms	remaining: 9.73ms
98:	learn: 20.1048816	total: 481ms	remaining: 4.86ms
99:	learn: 20.0086159	total: 486ms	remaining: 0us
0:	learn: 27.6506730	total: 4.96ms	remaining: 491ms
1:	learn: 27.1638793	total: 9.26ms	remaining: 454ms
2:	learn: 26.8000665	total: 14ms	remaining: 454ms
3:	learn: 26.4256132	total: 22.4ms	remaining: 538ms
4:	learn: 26.0088351	total: 30.3ms	remaining: 576ms
5:	learn: 25.7558298	total: 37.5ms	remaining: 587ms
6:	learn: 25.3380711	total: 42.8ms	remaining: 568ms
7:	learn: 25.0571611	total: 49ms	remaining: 563ms
8:	learn: 24.6790148	total: 53.2ms	remaining: 538ms
9:	learn: 24.3600941	total: 57.4ms	remaining: 517ms
10:	learn: 24.1105667	total: 61.6ms	remaining: 499ms
11:	learn: 23.7736542	total: 65.9ms	remaining: 484ms
12:	learn: 23.5824429	total: 70.4ms	remaining: 471ms
13:	learn: 23.2658303	total: 75ms	remaining: 461ms
14:	learn: 23.0061886	total: 78.9ms	remaining: 447ms
15:	learn: 22.8060389	total: 83.3ms	remaining: 437ms
16:	learn: 22.5899735	total: 87.7ms	remaining: 428ms
17:	learn: 22.3625048	total: 92.2ms	remaining: 420ms
18:	learn: 22.0706477	total: 96.4ms	remaining: 411ms
19:	learn: 21.8739394	total: 101ms	remaining: 404ms
20:	learn: 21.6143650	total: 105ms	remaining: 396ms
21:	learn: 21.4571623	total: 109ms	remaining: 388ms
22:	learn: 21.2395769	total: 114ms	remaining: 380ms
23:	learn: 20.9801795	total: 118ms	remaining: 373ms
24:	learn: 20.8036808	total: 122ms	remaining: 367ms
25:	learn: 20.6387539	total: 126ms	remaining: 360ms
26:	learn: 20.4401427	total: 131ms	remaining: 353ms
27:	learn: 20.2879575	total: 135ms	remaining: 348ms
28:	learn: 20.0538664	total: 139ms	remaining: 341ms
29:	learn: 19.8363102	total: 143ms	remaining: 335ms
30:	learn: 19.7015446	total: 147ms	remaining: 328ms
31:	learn: 19.5483114	total: 152ms	remaining: 322ms
32:	learn: 19.4163053	total: 156ms	remaining: 317ms
33:	learn: 19.2880625	total: 160ms	remaining: 311ms
34:	learn: 19.1303389	total: 165ms	remaining: 306ms
35:	learn: 18.9237448	total: 169ms	remaining: 301ms
36:	learn: 18.8142925	total: 174ms	remaining: 296ms
37:	learn: 18.6994696	total: 178ms	remaining: 290ms
38:	learn: 18.5629211	total: 182ms	remaining: 285ms
39:	learn: 18.4600917	total: 187ms	remaining: 280ms
40:	learn: 18.3567139	total: 191ms	remaining: 275ms
41:	learn: 18.2120527	total: 195ms	remaining: 269ms
42:	learn: 18.0688062	total: 199ms	remaining: 264ms
43:	learn: 17.9250181	total: 204ms	remaining: 259ms
44:	learn: 17.8399138	total: 208ms	remaining: 255ms
45:	learn: 17.6720713	total: 212ms	remaining: 249ms
46:	learn: 17.5273091	total: 216ms	remaining: 244ms
47:	learn: 17.4232814	total: 221ms	remaining: 240ms
48:	learn: 17.2957579	total: 226ms	remaining: 235ms
49:	learn: 17.1892874	total: 230ms	remaining: 230ms
50:	learn: 17.0490355	total: 235ms	remaining: 226ms
51:	learn: 16.9666450	total: 240ms	remaining: 221ms
52:	learn: 16.8600056	total: 245ms	remaining: 217ms
53:	learn: 16.7542588	total: 250ms	remaining: 213ms
54:	learn: 16.6316077	total: 265ms	remaining: 217ms
55:	learn: 16.5588112	total: 275ms	remaining: 216ms
56:	learn: 16.5010186	total: 283ms	remaining: 214ms
57:	learn: 16.4081540	total: 289ms	remaining: 209ms
58:	learn: 16.3040451	total: 295ms	remaining: 205ms
59:	learn: 16.1890564	total: 300ms	remaining: 200ms
60:	learn: 16.0977103	total: 305ms	remaining: 195ms
61:	learn: 15.9627607	total: 311ms	remaining: 190ms
62:	learn: 15.9022248	total: 316ms	remaining: 186ms
63:	learn: 15.8151881	total: 321ms	remaining: 181ms
64:	learn: 15.7353125	total: 327ms	remaining: 176ms
65:	learn: 15.6312897	total: 332ms	remaining: 171ms
66:	learn: 15.5330927	total: 336ms	remaining: 166ms
67:	learn: 15.4698681	total: 342ms	remaining: 161ms
68:	learn: 15.4108571	total: 348ms	remaining: 156ms
69:	learn: 15.3492945	total: 352ms	remaining: 151ms
70:	learn: 15.3036540	total: 357ms	remaining: 146ms
71:	learn: 15.2390833	total: 361ms	remaining: 140ms
72:	learn: 15.1556327	total: 365ms	remaining: 135ms
73:	learn: 15.1016315	total: 370ms	remaining: 130ms
74:	learn: 15.0287076	total: 374ms	remaining: 125ms
75:	learn: 14.9530572	total: 378ms	remaining: 119ms
76:	learn: 14.8965517	total: 383ms	remaining: 114ms
77:	learn: 14.8125426	total: 387ms	remaining: 109ms
78:	learn: 14.7435359	total: 391ms	remaining: 104ms
79:	learn: 14.6963163	total: 396ms	remaining: 98.9ms
80:	learn: 14.6200060	total: 400ms	remaining: 93.8ms
81:	learn: 14.5707760	total: 404ms	remaining: 88.7ms
82:	learn: 14.5053651	total: 409ms	remaining: 83.7ms
83:	learn: 14.4115458	total: 414ms	remaining: 78.8ms
84:	learn: 14.3117159	total: 432ms	remaining: 76.2ms
85:	learn: 14.2511326	total: 437ms	remaining: 71.1ms
86:	learn: 14.1372486	total: 442ms	remaining: 66ms
87:	learn: 14.0992301	total: 450ms	remaining: 61.4ms
88:	learn: 14.0228331	total: 459ms	remaining: 56.7ms
89:	learn: 13.9249836	total: 466ms	remaining: 51.8ms
90:	learn: 13.8679364	total: 472ms	remaining: 46.7ms
91:	learn: 13.8405578	total: 478ms	remaining: 41.6ms
92:	learn: 13.7711325	total: 482ms	remaining: 36.3ms
93:	learn: 13.7357019	total: 487ms	remaining: 31.1ms
94:	learn: 13.6735271	total: 491ms	remaining: 25.8ms
95:	learn: 13.5682393	total: 495ms	remaining: 20.6ms
96:	learn: 13.5342610	total: 499ms	remaining: 15.4ms
97:	learn: 13.4710034	total: 503ms	remaining: 10.3ms
98:	learn: 13.4022402	total: 508ms	remaining: 5.13ms
99:	learn: 13.3351238	total: 512ms	remaining: 0us
0:	learn: 42.9181702	total: 4.84ms	remaining: 480ms
1:	learn: 42.0286736	total: 9.16ms	remaining: 449ms
2:	learn: 41.2764568	total: 13.5ms	remaining: 435ms
3:	learn: 40.4721918	total: 17.6ms	remaining: 422ms
4:	learn: 39.8518928	total: 21.7ms	remaining: 413ms
5:	learn: 39.2645479	total: 26.1ms	remaining: 409ms
6:	learn: 38.4453704	total: 30.6ms	remaining: 407ms
7:	learn: 37.7122059	total: 35ms	remaining: 402ms
8:	learn: 36.9185796	total: 38.9ms	remaining: 393ms
9:	learn: 36.1668427	total: 43.5ms	remaining: 391ms
10:	learn: 35.5639029	total: 48ms	remaining: 389ms
11:	learn: 34.7724193	total: 52.4ms	remaining: 384ms
12:	learn: 34.3053433	total: 56.7ms	remaining: 380ms
13:	learn: 33.6561327	total: 57.9ms	remaining: 356ms
14:	learn: 33.0134042	total: 62.2ms	remaining: 353ms
15:	learn: 32.4483300	total: 66.3ms	remaining: 348ms
16:	learn: 31.8581144	total: 70.4ms	remaining: 344ms
17:	learn: 31.2858301	total: 74.9ms	remaining: 341ms
18:	learn: 30.8483018	total: 79.3ms	remaining: 338ms
19:	learn: 30.4174622	total: 83.9ms	remaining: 336ms
20:	learn: 29.8994411	total: 88.5ms	remaining: 333ms
21:	learn: 29.5045355	total: 93.2ms	remaining: 330ms
22:	learn: 28.9923519	total: 98.1ms	remaining: 328ms
23:	learn: 28.4255717	total: 103ms	remaining: 325ms
24:	learn: 28.0283139	total: 107ms	remaining: 322ms
25:	learn: 27.7434814	total: 112ms	remaining: 320ms
26:	learn: 27.2770731	total: 120ms	remaining: 324ms
27:	learn: 26.8928270	total: 127ms	remaining: 327ms
28:	learn: 26.4282671	total: 137ms	remaining: 336ms
29:	learn: 26.0272764	total: 144ms	remaining: 335ms
30:	learn: 25.7579312	total: 151ms	remaining: 337ms
31:	learn: 25.4542434	total: 157ms	remaining: 333ms
32:	learn: 25.1232564	total: 162ms	remaining: 330ms
33:	learn: 24.8110795	total: 168ms	remaining: 326ms
34:	learn: 24.5077579	total: 173ms	remaining: 322ms
35:	learn: 24.1909000	total: 178ms	remaining: 317ms
36:	learn: 23.8719468	total: 184ms	remaining: 313ms
37:	learn: 23.5764366	total: 185ms	remaining: 302ms
38:	learn: 23.3468086	total: 191ms	remaining: 299ms
39:	learn: 23.0908771	total: 196ms	remaining: 295ms
40:	learn: 22.8580876	total: 202ms	remaining: 290ms
41:	learn: 22.6060825	total: 207ms	remaining: 285ms
42:	learn: 22.4125407	total: 212ms	remaining: 281ms
43:	learn: 22.1990617	total: 217ms	remaining: 277ms
44:	learn: 21.9716164	total: 223ms	remaining: 272ms
45:	learn: 21.8360935	total: 227ms	remaining: 267ms
46:	learn: 21.6169256	total: 231ms	remaining: 261ms
47:	learn: 21.4620612	total: 236ms	remaining: 255ms
48:	learn: 21.2894194	total: 240ms	remaining: 250ms
49:	learn: 21.1066266	total: 244ms	remaining: 244ms
50:	learn: 20.9484898	total: 249ms	remaining: 239ms
51:	learn: 20.7195338	total: 254ms	remaining: 234ms
52:	learn: 20.4899740	total: 258ms	remaining: 229ms
53:	learn: 20.3356583	total: 263ms	remaining: 224ms
54:	learn: 20.0754393	total: 268ms	remaining: 219ms
55:	learn: 19.9199159	total: 272ms	remaining: 214ms
56:	learn: 19.7761128	total: 276ms	remaining: 209ms
57:	learn: 19.6533060	total: 281ms	remaining: 203ms
58:	learn: 19.5113942	total: 285ms	remaining: 198ms
59:	learn: 19.3985022	total: 291ms	remaining: 194ms
60:	learn: 19.2683443	total: 296ms	remaining: 189ms
61:	learn: 19.1460824	total: 305ms	remaining: 187ms
62:	learn: 19.0042655	total: 313ms	remaining: 184ms
63:	learn: 18.8720873	total: 320ms	remaining: 180ms
64:	learn: 18.7183888	total: 326ms	remaining: 176ms
65:	learn: 18.5472360	total: 334ms	remaining: 172ms
66:	learn: 18.3976642	total: 338ms	remaining: 167ms
67:	learn: 18.2282851	total: 343ms	remaining: 161ms
68:	learn: 18.1469157	total: 347ms	remaining: 156ms
69:	learn: 18.0649494	total: 352ms	remaining: 151ms
70:	learn: 17.9485405	total: 356ms	remaining: 145ms
71:	learn: 17.8460261	total: 361ms	remaining: 140ms
72:	learn: 17.7679843	total: 365ms	remaining: 135ms
73:	learn: 17.5989290	total: 370ms	remaining: 130ms
74:	learn: 17.4381322	total: 374ms	remaining: 125ms
75:	learn: 17.3370886	total: 379ms	remaining: 120ms
76:	learn: 17.2675308	total: 383ms	remaining: 114ms
77:	learn: 17.1946430	total: 387ms	remaining: 109ms
78:	learn: 17.0923725	total: 392ms	remaining: 104ms
79:	learn: 17.0537265	total: 396ms	remaining: 99ms
80:	learn: 16.9456831	total: 401ms	remaining: 94ms
81:	learn: 16.8457353	total: 405ms	remaining: 88.9ms
82:	learn: 16.7469310	total: 409ms	remaining: 83.8ms
83:	learn: 16.6679953	total: 413ms	remaining: 78.8ms
84:	learn: 16.6274189	total: 418ms	remaining: 73.7ms
85:	learn: 16.5516530	total: 422ms	remaining: 68.7ms
86:	learn: 16.4886066	total: 426ms	remaining: 63.7ms
87:	learn: 16.3947859	total: 431ms	remaining: 58.8ms
88:	learn: 16.3406495	total: 435ms	remaining: 53.8ms
89:	learn: 16.3019195	total: 440ms	remaining: 48.8ms
90:	learn: 16.1860681	total: 444ms	remaining: 43.9ms
91:	learn: 16.1282812	total: 448ms	remaining: 39ms
92:	learn: 16.0303652	total: 452ms	remaining: 34ms
93:	learn: 15.9561692	total: 457ms	remaining: 29.2ms
94:	learn: 15.8733994	total: 461ms	remaining: 24.2ms
95:	learn: 15.8108833	total: 465ms	remaining: 19.4ms
96:	learn: 15.7606004	total: 470ms	remaining: 14.5ms
97:	learn: 15.6984664	total: 474ms	remaining: 9.67ms
98:	learn: 15.6223632	total: 478ms	remaining: 4.83ms
99:	learn: 15.5671136	total: 482ms	remaining: 0us
0:	learn: 46.4788614	total: 3.06ms	remaining: 303ms
1:	learn: 45.7608372	total: 11ms	remaining: 540ms
2:	learn: 44.8825004	total: 16.4ms	remaining: 532ms
3:	learn: 44.0362738	total: 22.3ms	remaining: 534ms
4:	learn: 43.2086374	total: 28ms	remaining: 531ms
5:	learn: 42.5835773	total: 33.6ms	remaining: 527ms
6:	learn: 41.9673269	total: 38.9ms	remaining: 517ms
7:	learn: 41.4748717	total: 44.2ms	remaining: 508ms
8:	learn: 40.7129183	total: 49.3ms	remaining: 499ms
9:	learn: 39.8900884	total: 54.8ms	remaining: 493ms
10:	learn: 39.4142193	total: 59.8ms	remaining: 484ms
11:	learn: 38.8645613	total: 65.3ms	remaining: 479ms
12:	learn: 38.2394731	total: 70.7ms	remaining: 473ms
13:	learn: 37.6834515	total: 76.3ms	remaining: 469ms
14:	learn: 37.0673507	total: 80.9ms	remaining: 458ms
15:	learn: 36.4728340	total: 85.2ms	remaining: 447ms
16:	learn: 36.0489086	total: 89.3ms	remaining: 436ms
17:	learn: 35.4744141	total: 94ms	remaining: 428ms
18:	learn: 35.0106021	total: 98ms	remaining: 418ms
19:	learn: 34.5586053	total: 102ms	remaining: 409ms
20:	learn: 34.1308223	total: 106ms	remaining: 400ms
21:	learn: 33.7701450	total: 111ms	remaining: 393ms
22:	learn: 33.4425444	total: 115ms	remaining: 385ms
23:	learn: 33.0296412	total: 119ms	remaining: 378ms
24:	learn: 32.6359803	total: 124ms	remaining: 371ms
25:	learn: 32.1846182	total: 128ms	remaining: 364ms
26:	learn: 31.7620230	total: 132ms	remaining: 358ms
27:	learn: 31.4669337	total: 136ms	remaining: 350ms
28:	learn: 31.0792062	total: 141ms	remaining: 345ms
29:	learn: 30.7970537	total: 145ms	remaining: 339ms
30:	learn: 30.4952215	total: 149ms	remaining: 332ms
31:	learn: 30.2845344	total: 154ms	remaining: 327ms
32:	learn: 29.9592732	total: 158ms	remaining: 322ms
33:	learn: 29.6798596	total: 163ms	remaining: 317ms
34:	learn: 29.3368905	total: 168ms	remaining: 312ms
35:	learn: 29.0621238	total: 173ms	remaining: 307ms
36:	learn: 28.6445375	total: 177ms	remaining: 302ms
37:	learn: 28.2418096	total: 182ms	remaining: 297ms
38:	learn: 27.9495390	total: 190ms	remaining: 298ms
39:	learn: 27.6958160	total: 197ms	remaining: 296ms
40:	learn: 27.4811189	total: 204ms	remaining: 294ms
41:	learn: 27.1494420	total: 210ms	remaining: 290ms
42:	learn: 26.8388873	total: 216ms	remaining: 286ms
43:	learn: 26.5721300	total: 220ms	remaining: 280ms
44:	learn: 26.3384738	total: 225ms	remaining: 275ms
45:	learn: 26.1894781	total: 230ms	remaining: 269ms
46:	learn: 25.9580198	total: 234ms	remaining: 264ms
47:	learn: 25.7897985	total: 238ms	remaining: 258ms
48:	learn: 25.6000271	total: 243ms	remaining: 253ms
49:	learn: 25.4130873	total: 247ms	remaining: 247ms
50:	learn: 25.1699061	total: 251ms	remaining: 242ms
51:	learn: 24.9324449	total: 256ms	remaining: 236ms
52:	learn: 24.7729152	total: 260ms	remaining: 231ms
53:	learn: 24.5026563	total: 265ms	remaining: 225ms
54:	learn: 24.2332627	total: 269ms	remaining: 220ms
55:	learn: 23.9611984	total: 273ms	remaining: 215ms
56:	learn: 23.7862603	total: 278ms	remaining: 210ms
57:	learn: 23.6318154	total: 282ms	remaining: 204ms
58:	learn: 23.4443306	total: 287ms	remaining: 199ms
59:	learn: 23.2581425	total: 291ms	remaining: 194ms
60:	learn: 23.0549901	total: 296ms	remaining: 189ms
61:	learn: 22.8666218	total: 300ms	remaining: 184ms
62:	learn: 22.6956739	total: 304ms	remaining: 178ms
63:	learn: 22.5068544	total: 308ms	remaining: 173ms
64:	learn: 22.1859147	total: 312ms	remaining: 168ms
65:	learn: 22.0462043	total: 316ms	remaining: 163ms
66:	learn: 21.9329563	total: 320ms	remaining: 158ms
67:	learn: 21.8029736	total: 325ms	remaining: 153ms
68:	learn: 21.6861091	total: 329ms	remaining: 148ms
69:	learn: 21.4838140	total: 334ms	remaining: 143ms
70:	learn: 21.3548921	total: 338ms	remaining: 138ms
71:	learn: 21.2244517	total: 342ms	remaining: 133ms
72:	learn: 21.0702958	total: 346ms	remaining: 128ms
73:	learn: 20.9224662	total: 351ms	remaining: 123ms
74:	learn: 20.8150357	total: 356ms	remaining: 119ms
75:	learn: 20.6962739	total: 361ms	remaining: 114ms
76:	learn: 20.5809258	total: 366ms	remaining: 109ms
77:	learn: 20.4735470	total: 370ms	remaining: 104ms
78:	learn: 20.3778167	total: 375ms	remaining: 99.8ms
79:	learn: 20.2211268	total: 385ms	remaining: 96.2ms
80:	learn: 20.1478678	total: 397ms	remaining: 93ms
81:	learn: 20.1032967	total: 405ms	remaining: 88.9ms
82:	learn: 19.9236300	total: 414ms	remaining: 84.7ms
83:	learn: 19.8151745	total: 419ms	remaining: 79.9ms
84:	learn: 19.7099856	total: 425ms	remaining: 75ms
85:	learn: 19.6264833	total: 430ms	remaining: 70ms
86:	learn: 19.4916361	total: 436ms	remaining: 65.1ms
87:	learn: 19.4050529	total: 441ms	remaining: 60.2ms
88:	learn: 19.2547065	total: 446ms	remaining: 55.1ms
89:	learn: 19.1610225	total: 451ms	remaining: 50.1ms
90:	learn: 19.0898958	total: 456ms	remaining: 45.1ms
91:	learn: 19.0489664	total: 460ms	remaining: 40ms
92:	learn: 18.9206240	total: 465ms	remaining: 35ms
93:	learn: 18.8636239	total: 470ms	remaining: 30ms
94:	learn: 18.8126187	total: 475ms	remaining: 25ms
95:	learn: 18.7579275	total: 480ms	remaining: 20ms
96:	learn: 18.6382753	total: 486ms	remaining: 15ms
97:	learn: 18.5397334	total: 491ms	remaining: 10ms
98:	learn: 18.4375951	total: 495ms	remaining: 5ms
99:	learn: 18.4033755	total: 500ms	remaining: 0us
0:	learn: 46.1068821	total: 2.38ms	remaining: 235ms
1:	learn: 45.3970261	total: 7.08ms	remaining: 347ms
2:	learn: 44.8732696	total: 11.5ms	remaining: 373ms
3:	learn: 44.1290184	total: 16.3ms	remaining: 392ms
4:	learn: 43.3290271	total: 21.4ms	remaining: 407ms
5:	learn: 42.7069090	total: 26.4ms	remaining: 414ms
6:	learn: 42.0572971	total: 31.1ms	remaining: 414ms
7:	learn: 41.4797924	total: 36.1ms	remaining: 415ms
8:	learn: 41.0023122	total: 41.1ms	remaining: 416ms
9:	learn: 40.5330570	total: 46.1ms	remaining: 415ms
10:	learn: 39.9726545	total: 54.7ms	remaining: 443ms
11:	learn: 39.3044053	total: 62ms	remaining: 455ms
12:	learn: 38.8169735	total: 68.1ms	remaining: 456ms
13:	learn: 38.2458761	total: 73.1ms	remaining: 449ms
14:	learn: 37.6280321	total: 79.3ms	remaining: 450ms
15:	learn: 37.0800610	total: 84.4ms	remaining: 443ms
16:	learn: 36.5489363	total: 89.2ms	remaining: 436ms
17:	learn: 36.0981456	total: 93.8ms	remaining: 427ms
18:	learn: 35.6956274	total: 98.5ms	remaining: 420ms
19:	learn: 35.1471999	total: 103ms	remaining: 411ms
20:	learn: 34.6235408	total: 107ms	remaining: 403ms
21:	learn: 34.1987018	total: 112ms	remaining: 396ms
22:	learn: 33.8985062	total: 116ms	remaining: 389ms
23:	learn: 33.3869017	total: 121ms	remaining: 382ms
24:	learn: 32.9100550	total: 140ms	remaining: 421ms
25:	learn: 32.4156208	total: 144ms	remaining: 411ms
26:	learn: 31.9320493	total: 149ms	remaining: 402ms
27:	learn: 31.5711468	total: 153ms	remaining: 393ms
28:	learn: 31.2404433	total: 157ms	remaining: 384ms
29:	learn: 30.8807946	total: 161ms	remaining: 376ms
30:	learn: 30.5948438	total: 165ms	remaining: 368ms
31:	learn: 30.3885560	total: 170ms	remaining: 361ms
32:	learn: 30.0625101	total: 174ms	remaining: 354ms
33:	learn: 29.9113114	total: 178ms	remaining: 346ms
34:	learn: 29.6983470	total: 183ms	remaining: 340ms
35:	learn: 29.4775849	total: 188ms	remaining: 333ms
36:	learn: 29.0538055	total: 192ms	remaining: 326ms
37:	learn: 28.6792318	total: 196ms	remaining: 320ms
38:	learn: 28.4231383	total: 200ms	remaining: 314ms
39:	learn: 28.1078565	total: 205ms	remaining: 307ms
40:	learn: 27.9079179	total: 210ms	remaining: 302ms
41:	learn: 27.6721506	total: 215ms	remaining: 296ms
42:	learn: 27.4228033	total: 220ms	remaining: 291ms
43:	learn: 27.1740534	total: 225ms	remaining: 286ms
44:	learn: 26.8584071	total: 230ms	remaining: 281ms
45:	learn: 26.6902083	total: 235ms	remaining: 276ms
46:	learn: 26.4855335	total: 240ms	remaining: 270ms
47:	learn: 26.2730822	total: 245ms	remaining: 265ms
48:	learn: 26.1058689	total: 254ms	remaining: 264ms
49:	learn: 25.8587318	total: 263ms	remaining: 263ms
50:	learn: 25.7558005	total: 271ms	remaining: 261ms
51:	learn: 25.5846925	total: 279ms	remaining: 257ms
52:	learn: 25.4249887	total: 284ms	remaining: 252ms
53:	learn: 25.1911054	total: 290ms	remaining: 247ms
54:	learn: 25.0544755	total: 295ms	remaining: 241ms
55:	learn: 24.8874006	total: 300ms	remaining: 236ms
56:	learn: 24.7736279	total: 306ms	remaining: 231ms
57:	learn: 24.6156255	total: 311ms	remaining: 225ms
58:	learn: 24.3962421	total: 317ms	remaining: 220ms
59:	learn: 24.2685129	total: 322ms	remaining: 215ms
60:	learn: 24.1874096	total: 328ms	remaining: 209ms
61:	learn: 24.0394287	total: 332ms	remaining: 204ms
62:	learn: 23.9281768	total: 338ms	remaining: 198ms
63:	learn: 23.7423900	total: 343ms	remaining: 193ms
64:	learn: 23.6015209	total: 348ms	remaining: 187ms
65:	learn: 23.4677943	total: 352ms	remaining: 181ms
66:	learn: 23.3215256	total: 356ms	remaining: 176ms
67:	learn: 23.1869360	total: 360ms	remaining: 170ms
68:	learn: 22.9691180	total: 365ms	remaining: 164ms
69:	learn: 22.7531657	total: 369ms	remaining: 158ms
70:	learn: 22.6133477	total: 373ms	remaining: 153ms
71:	learn: 22.3452758	total: 378ms	remaining: 147ms
72:	learn: 22.2065350	total: 382ms	remaining: 141ms
73:	learn: 22.1071155	total: 386ms	remaining: 136ms
74:	learn: 21.9740686	total: 390ms	remaining: 130ms
75:	learn: 21.8892033	total: 395ms	remaining: 125ms
76:	learn: 21.8267882	total: 399ms	remaining: 119ms
77:	learn: 21.7423479	total: 404ms	remaining: 114ms
78:	learn: 21.6242075	total: 408ms	remaining: 108ms
79:	learn: 21.5016910	total: 412ms	remaining: 103ms
80:	learn: 21.4806623	total: 413ms	remaining: 96.9ms
81:	learn: 21.3166637	total: 418ms	remaining: 91.7ms
82:	learn: 21.2222534	total: 423ms	remaining: 86.5ms
83:	learn: 21.1535708	total: 427ms	remaining: 81.4ms
84:	learn: 21.0858902	total: 432ms	remaining: 76.2ms
85:	learn: 20.9206003	total: 436ms	remaining: 71ms
86:	learn: 20.8674695	total: 441ms	remaining: 65.8ms
87:	learn: 20.8089875	total: 445ms	remaining: 60.7ms
88:	learn: 20.7085401	total: 453ms	remaining: 56ms
89:	learn: 20.5513468	total: 461ms	remaining: 51.2ms
90:	learn: 20.4586742	total: 467ms	remaining: 46.2ms
91:	learn: 20.3932149	total: 473ms	remaining: 41.1ms
92:	learn: 20.3000895	total: 479ms	remaining: 36.1ms
93:	learn: 20.2254009	total: 483ms	remaining: 30.9ms
94:	learn: 20.1750050	total: 488ms	remaining: 25.7ms
95:	learn: 20.0715579	total: 492ms	remaining: 20.5ms
96:	learn: 19.9920082	total: 497ms	remaining: 15.4ms
97:	learn: 19.9664401	total: 501ms	remaining: 10.2ms
98:	learn: 19.8689673	total: 505ms	remaining: 5.1ms
99:	learn: 19.7537356	total: 510ms	remaining: 0us
0:	learn: 46.8832143	total: 4.5ms	remaining: 446ms
1:	learn: 45.8700349	total: 8.75ms	remaining: 429ms
2:	learn: 45.0546867	total: 13.2ms	remaining: 428ms
3:	learn: 44.2829439	total: 17.9ms	remaining: 429ms
4:	learn: 43.4609042	total: 22ms	remaining: 418ms
5:	learn: 42.6754991	total: 26.4ms	remaining: 413ms
6:	learn: 41.9234935	total: 30.6ms	remaining: 406ms
7:	learn: 41.3987518	total: 34.8ms	remaining: 400ms
8:	learn: 40.6625066	total: 38.9ms	remaining: 393ms
9:	learn: 40.0029561	total: 43ms	remaining: 387ms
10:	learn: 39.3897033	total: 47.3ms	remaining: 383ms
11:	learn: 38.7741453	total: 51.8ms	remaining: 380ms
12:	learn: 38.1201100	total: 56.3ms	remaining: 377ms
13:	learn: 37.5129454	total: 60.5ms	remaining: 372ms
14:	learn: 37.2062206	total: 64.8ms	remaining: 367ms
15:	learn: 36.6831741	total: 69.3ms	remaining: 364ms
16:	learn: 36.2902788	total: 73.7ms	remaining: 360ms
17:	learn: 35.7639930	total: 78.3ms	remaining: 357ms
18:	learn: 35.2580953	total: 83.2ms	remaining: 355ms
19:	learn: 34.7809739	total: 87.9ms	remaining: 352ms
20:	learn: 34.1330433	total: 92.4ms	remaining: 348ms
21:	learn: 33.7302219	total: 97.4ms	remaining: 345ms
22:	learn: 33.3502495	total: 105ms	remaining: 352ms
23:	learn: 33.0067804	total: 112ms	remaining: 355ms
24:	learn: 32.6897855	total: 121ms	remaining: 364ms
25:	learn: 32.4361119	total: 129ms	remaining: 367ms
26:	learn: 32.1278981	total: 134ms	remaining: 363ms
27:	learn: 31.7863721	total: 139ms	remaining: 359ms
28:	learn: 31.4791450	total: 145ms	remaining: 355ms
29:	learn: 31.1760161	total: 150ms	remaining: 350ms
30:	learn: 30.9238888	total: 155ms	remaining: 346ms
31:	learn: 30.5500905	total: 161ms	remaining: 342ms
32:	learn: 30.3078126	total: 167ms	remaining: 338ms
33:	learn: 30.0480921	total: 172ms	remaining: 333ms
34:	learn: 29.8623884	total: 177ms	remaining: 328ms
35:	learn: 29.5991038	total: 181ms	remaining: 322ms
36:	learn: 29.4061161	total: 187ms	remaining: 318ms
37:	learn: 29.0269515	total: 192ms	remaining: 313ms
38:	learn: 28.8224959	total: 197ms	remaining: 308ms
39:	learn: 28.6417843	total: 201ms	remaining: 301ms
40:	learn: 28.3633368	total: 205ms	remaining: 295ms
41:	learn: 28.0200246	total: 210ms	remaining: 289ms
42:	learn: 27.7221254	total: 214ms	remaining: 284ms
43:	learn: 27.5105818	total: 218ms	remaining: 278ms
44:	learn: 27.3551010	total: 223ms	remaining: 272ms
45:	learn: 27.0787522	total: 227ms	remaining: 266ms
46:	learn: 26.8726317	total: 231ms	remaining: 261ms
47:	learn: 26.8003277	total: 235ms	remaining: 255ms
48:	learn: 26.5493785	total: 240ms	remaining: 249ms
49:	learn: 26.3699550	total: 244ms	remaining: 244ms
50:	learn: 26.1519631	total: 248ms	remaining: 239ms
51:	learn: 25.9277325	total: 253ms	remaining: 233ms
52:	learn: 25.7286035	total: 257ms	remaining: 228ms
53:	learn: 25.4999193	total: 262ms	remaining: 223ms
54:	learn: 25.3434703	total: 266ms	remaining: 218ms
55:	learn: 25.1497545	total: 272ms	remaining: 213ms
56:	learn: 24.9498143	total: 277ms	remaining: 209ms
57:	learn: 24.6509390	total: 281ms	remaining: 204ms
58:	learn: 24.5576144	total: 286ms	remaining: 199ms
59:	learn: 24.4265144	total: 291ms	remaining: 194ms
60:	learn: 24.3100706	total: 298ms	remaining: 190ms
61:	learn: 24.1727952	total: 305ms	remaining: 187ms
62:	learn: 24.0478558	total: 313ms	remaining: 184ms
63:	learn: 23.9124577	total: 319ms	remaining: 179ms
64:	learn: 23.7703718	total: 324ms	remaining: 174ms
65:	learn: 23.5975027	total: 329ms	remaining: 170ms
66:	learn: 23.4318077	total: 334ms	remaining: 165ms
67:	learn: 23.3099691	total: 339ms	remaining: 159ms
68:	learn: 23.1947982	total: 344ms	remaining: 154ms
69:	learn: 23.0260174	total: 348ms	remaining: 149ms
70:	learn: 22.8523100	total: 353ms	remaining: 144ms
71:	learn: 22.8028534	total: 358ms	remaining: 139ms
72:	learn: 22.6880658	total: 362ms	remaining: 134ms
73:	learn: 22.5956809	total: 366ms	remaining: 129ms
74:	learn: 22.4692932	total: 370ms	remaining: 123ms
75:	learn: 22.2863504	total: 375ms	remaining: 118ms
76:	learn: 22.1911237	total: 379ms	remaining: 113ms
77:	learn: 22.1098391	total: 383ms	remaining: 108ms
78:	learn: 22.0182738	total: 388ms	remaining: 103ms
79:	learn: 21.9306746	total: 392ms	remaining: 98ms
80:	learn: 21.7508233	total: 396ms	remaining: 92.9ms
81:	learn: 21.7108446	total: 400ms	remaining: 87.9ms
82:	learn: 21.5931852	total: 405ms	remaining: 82.9ms
83:	learn: 21.4480361	total: 409ms	remaining: 77.9ms
84:	learn: 21.3092119	total: 414ms	remaining: 73ms
85:	learn: 21.2605557	total: 418ms	remaining: 68.1ms
86:	learn: 21.1123597	total: 422ms	remaining: 63.1ms
87:	learn: 21.0115642	total: 427ms	remaining: 58.2ms
88:	learn: 20.9389040	total: 432ms	remaining: 53.3ms
89:	learn: 20.8300300	total: 436ms	remaining: 48.4ms
90:	learn: 20.7159733	total: 440ms	remaining: 43.6ms
91:	learn: 20.6282090	total: 445ms	remaining: 38.7ms
92:	learn: 20.5164529	total: 450ms	remaining: 33.9ms
93:	learn: 20.4692032	total: 455ms	remaining: 29ms
94:	learn: 20.3768451	total: 459ms	remaining: 24.2ms
95:	learn: 20.2808056	total: 464ms	remaining: 19.3ms
96:	learn: 20.2082089	total: 469ms	remaining: 14.5ms
97:	learn: 20.1698768	total: 475ms	remaining: 9.7ms
98:	learn: 20.1048816	total: 483ms	remaining: 4.88ms
99:	learn: 20.0086159	total: 489ms	remaining: 0us
0:	learn: 27.6506730	total: 5.69ms	remaining: 563ms
1:	learn: 27.1638793	total: 10.9ms	remaining: 533ms
2:	learn: 26.8000665	total: 16.2ms	remaining: 523ms
3:	learn: 26.4256132	total: 21.6ms	remaining: 519ms
4:	learn: 26.0088351	total: 42.1ms	remaining: 800ms
5:	learn: 25.7558298	total: 47.6ms	remaining: 746ms
6:	learn: 25.3380711	total: 53ms	remaining: 705ms
7:	learn: 25.0571611	total: 57.7ms	remaining: 664ms
8:	learn: 24.6790148	total: 62.2ms	remaining: 629ms
9:	learn: 24.3600941	total: 66.5ms	remaining: 598ms
10:	learn: 24.1105667	total: 70.7ms	remaining: 572ms
11:	learn: 23.7736542	total: 74.9ms	remaining: 549ms
12:	learn: 23.5824429	total: 79.4ms	remaining: 531ms
13:	learn: 23.2658303	total: 83.6ms	remaining: 513ms
14:	learn: 23.0061886	total: 87.9ms	remaining: 498ms
15:	learn: 22.8060389	total: 91.8ms	remaining: 482ms
16:	learn: 22.5899735	total: 96.3ms	remaining: 470ms
17:	learn: 22.3625048	total: 101ms	remaining: 461ms
18:	learn: 22.0706477	total: 106ms	remaining: 453ms
19:	learn: 21.8739394	total: 111ms	remaining: 444ms
20:	learn: 21.6143650	total: 116ms	remaining: 437ms
21:	learn: 21.4571623	total: 122ms	remaining: 431ms
22:	learn: 21.2395769	total: 127ms	remaining: 425ms
23:	learn: 20.9801795	total: 132ms	remaining: 418ms
24:	learn: 20.8036808	total: 137ms	remaining: 411ms
25:	learn: 20.6387539	total: 142ms	remaining: 404ms
26:	learn: 20.4401427	total: 146ms	remaining: 396ms
27:	learn: 20.2879575	total: 151ms	remaining: 388ms
28:	learn: 20.0538664	total: 156ms	remaining: 381ms
29:	learn: 19.8363102	total: 160ms	remaining: 374ms
30:	learn: 19.7015446	total: 168ms	remaining: 375ms
31:	learn: 19.5483114	total: 176ms	remaining: 373ms
32:	learn: 19.4163053	total: 183ms	remaining: 372ms
33:	learn: 19.2880625	total: 188ms	remaining: 366ms
34:	learn: 19.1303389	total: 194ms	remaining: 361ms
35:	learn: 18.9237448	total: 199ms	remaining: 354ms
36:	learn: 18.8142925	total: 203ms	remaining: 346ms
37:	learn: 18.6994696	total: 207ms	remaining: 338ms
38:	learn: 18.5629211	total: 212ms	remaining: 331ms
39:	learn: 18.4600917	total: 216ms	remaining: 325ms
40:	learn: 18.3567139	total: 221ms	remaining: 317ms
41:	learn: 18.2120527	total: 225ms	remaining: 311ms
42:	learn: 18.0688062	total: 229ms	remaining: 303ms
43:	learn: 17.9250181	total: 233ms	remaining: 297ms
44:	learn: 17.8399138	total: 237ms	remaining: 290ms
45:	learn: 17.6720713	total: 241ms	remaining: 283ms
46:	learn: 17.5273091	total: 246ms	remaining: 277ms
47:	learn: 17.4232814	total: 250ms	remaining: 271ms
48:	learn: 17.2957579	total: 255ms	remaining: 265ms
49:	learn: 17.1892874	total: 259ms	remaining: 259ms
50:	learn: 17.0490355	total: 263ms	remaining: 253ms
51:	learn: 16.9666450	total: 267ms	remaining: 247ms
52:	learn: 16.8600056	total: 272ms	remaining: 241ms
53:	learn: 16.7542588	total: 276ms	remaining: 235ms
54:	learn: 16.6316077	total: 281ms	remaining: 230ms
55:	learn: 16.5588112	total: 285ms	remaining: 224ms
56:	learn: 16.5010186	total: 289ms	remaining: 218ms
57:	learn: 16.4081540	total: 294ms	remaining: 213ms
58:	learn: 16.3040451	total: 298ms	remaining: 207ms
59:	learn: 16.1890564	total: 302ms	remaining: 202ms
60:	learn: 16.0977103	total: 307ms	remaining: 196ms
61:	learn: 15.9627607	total: 311ms	remaining: 191ms
62:	learn: 15.9022248	total: 315ms	remaining: 185ms
63:	learn: 15.8151881	total: 320ms	remaining: 180ms
64:	learn: 15.7353125	total: 324ms	remaining: 175ms
65:	learn: 15.6312897	total: 328ms	remaining: 169ms
66:	learn: 15.5330927	total: 333ms	remaining: 164ms
67:	learn: 15.4698681	total: 338ms	remaining: 159ms
68:	learn: 15.4108571	total: 342ms	remaining: 154ms
69:	learn: 15.3492945	total: 347ms	remaining: 149ms
70:	learn: 15.3036540	total: 351ms	remaining: 144ms
71:	learn: 15.2390833	total: 356ms	remaining: 138ms
72:	learn: 15.1556327	total: 361ms	remaining: 133ms
73:	learn: 15.1016315	total: 368ms	remaining: 129ms
74:	learn: 15.0287076	total: 375ms	remaining: 125ms
75:	learn: 14.9530572	total: 386ms	remaining: 122ms
76:	learn: 14.8965517	total: 392ms	remaining: 117ms
77:	learn: 14.8125426	total: 399ms	remaining: 113ms
78:	learn: 14.7435359	total: 404ms	remaining: 107ms
79:	learn: 14.6963163	total: 409ms	remaining: 102ms
80:	learn: 14.6200060	total: 414ms	remaining: 97.2ms
81:	learn: 14.5707760	total: 420ms	remaining: 92.2ms
82:	learn: 14.5053651	total: 425ms	remaining: 87.1ms
83:	learn: 14.4115458	total: 431ms	remaining: 82ms
84:	learn: 14.3117159	total: 436ms	remaining: 77ms
85:	learn: 14.2511326	total: 442ms	remaining: 72ms
86:	learn: 14.1372486	total: 447ms	remaining: 66.8ms
87:	learn: 14.0992301	total: 452ms	remaining: 61.6ms
88:	learn: 14.0228331	total: 458ms	remaining: 56.5ms
89:	learn: 13.9249836	total: 463ms	remaining: 51.5ms
90:	learn: 13.8679364	total: 467ms	remaining: 46.2ms
91:	learn: 13.8405578	total: 472ms	remaining: 41ms
92:	learn: 13.7711325	total: 476ms	remaining: 35.8ms
93:	learn: 13.7357019	total: 480ms	remaining: 30.7ms
94:	learn: 13.6735271	total: 485ms	remaining: 25.5ms
95:	learn: 13.5682393	total: 489ms	remaining: 20.4ms
96:	learn: 13.5342610	total: 493ms	remaining: 15.3ms
97:	learn: 13.4710034	total: 498ms	remaining: 10.2ms
98:	learn: 13.4022402	total: 502ms	remaining: 5.07ms
99:	learn: 13.3351238	total: 506ms	remaining: 0us
0:	learn: 42.9181702	total: 4.97ms	remaining: 492ms
1:	learn: 42.0286736	total: 9.68ms	remaining: 474ms
2:	learn: 41.2764568	total: 17.5ms	remaining: 566ms
3:	learn: 40.4721918	total: 24.7ms	remaining: 593ms
4:	learn: 39.8518928	total: 31.8ms	remaining: 604ms
5:	learn: 39.2645479	total: 37.5ms	remaining: 587ms
6:	learn: 38.4453704	total: 44ms	remaining: 585ms
7:	learn: 37.7122059	total: 48.4ms	remaining: 556ms
8:	learn: 36.9185796	total: 52.9ms	remaining: 535ms
9:	learn: 36.1668427	total: 57.1ms	remaining: 514ms
10:	learn: 35.5639029	total: 61.4ms	remaining: 497ms
11:	learn: 34.7724193	total: 65.6ms	remaining: 481ms
12:	learn: 34.3053433	total: 70.1ms	remaining: 469ms
13:	learn: 33.6561327	total: 71.3ms	remaining: 438ms
14:	learn: 33.0134042	total: 75.3ms	remaining: 427ms
15:	learn: 32.4483300	total: 79.5ms	remaining: 417ms
16:	learn: 31.8581144	total: 83.3ms	remaining: 407ms
17:	learn: 31.2858301	total: 87.7ms	remaining: 400ms
18:	learn: 30.8483018	total: 92.4ms	remaining: 394ms
19:	learn: 30.4174622	total: 96.8ms	remaining: 387ms
20:	learn: 29.8994411	total: 101ms	remaining: 380ms
21:	learn: 29.5045355	total: 105ms	remaining: 374ms
22:	learn: 28.9923519	total: 109ms	remaining: 366ms
23:	learn: 28.4255717	total: 114ms	remaining: 360ms
24:	learn: 28.0283139	total: 118ms	remaining: 354ms
25:	learn: 27.7434814	total: 123ms	remaining: 349ms
26:	learn: 27.2770731	total: 127ms	remaining: 344ms
27:	learn: 26.8928270	total: 132ms	remaining: 338ms
28:	learn: 26.4282671	total: 136ms	remaining: 332ms
29:	learn: 26.0272764	total: 140ms	remaining: 327ms
30:	learn: 25.7579312	total: 145ms	remaining: 322ms
31:	learn: 25.4542434	total: 149ms	remaining: 317ms
32:	learn: 25.1232564	total: 154ms	remaining: 312ms
33:	learn: 24.8110795	total: 158ms	remaining: 307ms
34:	learn: 24.5077579	total: 162ms	remaining: 301ms
35:	learn: 24.1909000	total: 167ms	remaining: 296ms
36:	learn: 23.8719468	total: 171ms	remaining: 291ms
37:	learn: 23.5764366	total: 172ms	remaining: 281ms
38:	learn: 23.3468086	total: 176ms	remaining: 276ms
39:	learn: 23.0908771	total: 181ms	remaining: 271ms
40:	learn: 22.8580876	total: 185ms	remaining: 266ms
41:	learn: 22.6060825	total: 189ms	remaining: 261ms
42:	learn: 22.4125407	total: 193ms	remaining: 256ms
43:	learn: 22.1990617	total: 197ms	remaining: 251ms
44:	learn: 21.9716164	total: 202ms	remaining: 247ms
45:	learn: 21.8360935	total: 206ms	remaining: 242ms
46:	learn: 21.6169256	total: 210ms	remaining: 237ms
47:	learn: 21.4620612	total: 215ms	remaining: 232ms
48:	learn: 21.2894194	total: 219ms	remaining: 228ms
49:	learn: 21.1066266	total: 223ms	remaining: 223ms
50:	learn: 20.9484898	total: 227ms	remaining: 219ms
51:	learn: 20.7195338	total: 232ms	remaining: 214ms
52:	learn: 20.4899740	total: 237ms	remaining: 210ms
53:	learn: 20.3356583	total: 242ms	remaining: 206ms
54:	learn: 20.0754393	total: 246ms	remaining: 202ms
55:	learn: 19.9199159	total: 251ms	remaining: 197ms
56:	learn: 19.7761128	total: 256ms	remaining: 193ms
57:	learn: 19.6533060	total: 263ms	remaining: 191ms
58:	learn: 19.5113942	total: 272ms	remaining: 189ms
59:	learn: 19.3985022	total: 284ms	remaining: 189ms
60:	learn: 19.2683443	total: 290ms	remaining: 185ms
61:	learn: 19.1460824	total: 297ms	remaining: 182ms
62:	learn: 19.0042655	total: 302ms	remaining: 178ms
63:	learn: 18.8720873	total: 309ms	remaining: 174ms
64:	learn: 18.7183888	total: 314ms	remaining: 169ms
65:	learn: 18.5472360	total: 319ms	remaining: 165ms
66:	learn: 18.3976642	total: 324ms	remaining: 160ms
67:	learn: 18.2282851	total: 330ms	remaining: 155ms
68:	learn: 18.1469157	total: 335ms	remaining: 151ms
69:	learn: 18.0649494	total: 340ms	remaining: 146ms
70:	learn: 17.9485405	total: 345ms	remaining: 141ms
71:	learn: 17.8460261	total: 350ms	remaining: 136ms
72:	learn: 17.7679843	total: 356ms	remaining: 132ms
73:	learn: 17.5989290	total: 362ms	remaining: 127ms
74:	learn: 17.4381322	total: 367ms	remaining: 122ms
75:	learn: 17.3370886	total: 371ms	remaining: 117ms
76:	learn: 17.2675308	total: 376ms	remaining: 112ms
77:	learn: 17.1946430	total: 380ms	remaining: 107ms
78:	learn: 17.0923725	total: 385ms	remaining: 102ms
79:	learn: 17.0537265	total: 390ms	remaining: 97.4ms
80:	learn: 16.9456831	total: 394ms	remaining: 92.4ms
81:	learn: 16.8457353	total: 399ms	remaining: 87.5ms
82:	learn: 16.7469310	total: 403ms	remaining: 82.6ms
83:	learn: 16.6679953	total: 408ms	remaining: 77.7ms
84:	learn: 16.6274189	total: 413ms	remaining: 72.8ms
85:	learn: 16.5516530	total: 418ms	remaining: 68.1ms
86:	learn: 16.4886066	total: 423ms	remaining: 63.1ms
87:	learn: 16.3947859	total: 427ms	remaining: 58.2ms
88:	learn: 16.3406495	total: 432ms	remaining: 53.3ms
89:	learn: 16.3019195	total: 437ms	remaining: 48.5ms
90:	learn: 16.1860681	total: 441ms	remaining: 43.7ms
91:	learn: 16.1282812	total: 446ms	remaining: 38.8ms
92:	learn: 16.0303652	total: 452ms	remaining: 34ms
93:	learn: 15.9561692	total: 457ms	remaining: 29.2ms
94:	learn: 15.8733994	total: 465ms	remaining: 24.5ms
95:	learn: 15.8108833	total: 473ms	remaining: 19.7ms
96:	learn: 15.7606004	total: 480ms	remaining: 14.9ms
97:	learn: 15.6984664	total: 485ms	remaining: 9.9ms
98:	learn: 15.6223632	total: 491ms	remaining: 4.96ms
99:	learn: 15.5671136	total: 496ms	remaining: 0us
0:	learn: 46.4788614	total: 1.86ms	remaining: 184ms
1:	learn: 45.7608372	total: 6.44ms	remaining: 316ms
2:	learn: 44.8825004	total: 10.7ms	remaining: 347ms
3:	learn: 44.0362738	total: 14.8ms	remaining: 356ms
4:	learn: 43.2086374	total: 19.4ms	remaining: 370ms
5:	learn: 42.5835773	total: 23.9ms	remaining: 375ms
6:	learn: 41.9673269	total: 28.1ms	remaining: 374ms
7:	learn: 41.4748717	total: 32.5ms	remaining: 373ms
8:	learn: 40.7129183	total: 36.9ms	remaining: 373ms
9:	learn: 39.8900884	total: 41.3ms	remaining: 372ms
10:	learn: 39.4142193	total: 45.3ms	remaining: 367ms
11:	learn: 38.8645613	total: 49.5ms	remaining: 363ms
12:	learn: 38.2394731	total: 54.1ms	remaining: 362ms
13:	learn: 37.6834515	total: 58.4ms	remaining: 359ms
14:	learn: 37.0673507	total: 62.4ms	remaining: 354ms
15:	learn: 36.4728340	total: 67ms	remaining: 352ms
16:	learn: 36.0489086	total: 71.9ms	remaining: 351ms
17:	learn: 35.4744141	total: 76.8ms	remaining: 350ms
18:	learn: 35.0106021	total: 81.3ms	remaining: 347ms
19:	learn: 34.5586053	total: 86.1ms	remaining: 344ms
20:	learn: 34.1308223	total: 90.9ms	remaining: 342ms
21:	learn: 33.7701450	total: 95.6ms	remaining: 339ms
22:	learn: 33.4425444	total: 102ms	remaining: 342ms
23:	learn: 33.0296412	total: 110ms	remaining: 348ms
24:	learn: 32.6359803	total: 118ms	remaining: 355ms
25:	learn: 32.1846182	total: 126ms	remaining: 358ms
26:	learn: 31.7620230	total: 134ms	remaining: 362ms
27:	learn: 31.4669337	total: 139ms	remaining: 358ms
28:	learn: 31.0792062	total: 144ms	remaining: 354ms
29:	learn: 30.7970537	total: 149ms	remaining: 349ms
30:	learn: 30.4952215	total: 155ms	remaining: 344ms
31:	learn: 30.2845344	total: 160ms	remaining: 340ms
32:	learn: 29.9592732	total: 165ms	remaining: 336ms
33:	learn: 29.6798596	total: 171ms	remaining: 332ms
34:	learn: 29.3368905	total: 176ms	remaining: 327ms
35:	learn: 29.0621238	total: 181ms	remaining: 323ms
36:	learn: 28.6445375	total: 186ms	remaining: 317ms
37:	learn: 28.2418096	total: 191ms	remaining: 312ms
38:	learn: 27.9495390	total: 197ms	remaining: 308ms
39:	learn: 27.6958160	total: 202ms	remaining: 303ms
40:	learn: 27.4811189	total: 207ms	remaining: 297ms
41:	learn: 27.1494420	total: 211ms	remaining: 292ms
42:	learn: 26.8388873	total: 216ms	remaining: 286ms
43:	learn: 26.5721300	total: 220ms	remaining: 280ms
44:	learn: 26.3384738	total: 225ms	remaining: 274ms
45:	learn: 26.1894781	total: 229ms	remaining: 269ms
46:	learn: 25.9580198	total: 234ms	remaining: 264ms
47:	learn: 25.7897985	total: 238ms	remaining: 258ms
48:	learn: 25.6000271	total: 242ms	remaining: 252ms
49:	learn: 25.4130873	total: 246ms	remaining: 246ms
50:	learn: 25.1699061	total: 251ms	remaining: 241ms
51:	learn: 24.9324449	total: 255ms	remaining: 235ms
52:	learn: 24.7729152	total: 259ms	remaining: 230ms
53:	learn: 24.5026563	total: 264ms	remaining: 224ms
54:	learn: 24.2332627	total: 268ms	remaining: 220ms
55:	learn: 23.9611984	total: 273ms	remaining: 214ms
56:	learn: 23.7862603	total: 277ms	remaining: 209ms
57:	learn: 23.6318154	total: 282ms	remaining: 204ms
58:	learn: 23.4443306	total: 287ms	remaining: 199ms
59:	learn: 23.2581425	total: 292ms	remaining: 194ms
60:	learn: 23.0549901	total: 298ms	remaining: 190ms
61:	learn: 22.8666218	total: 305ms	remaining: 187ms
62:	learn: 22.6956739	total: 312ms	remaining: 183ms
63:	learn: 22.5068544	total: 319ms	remaining: 180ms
64:	learn: 22.1859147	total: 324ms	remaining: 174ms
65:	learn: 22.0462043	total: 329ms	remaining: 170ms
66:	learn: 21.9329563	total: 334ms	remaining: 164ms
67:	learn: 21.8029736	total: 339ms	remaining: 159ms
68:	learn: 21.6861091	total: 343ms	remaining: 154ms
69:	learn: 21.4838140	total: 347ms	remaining: 149ms
70:	learn: 21.3548921	total: 352ms	remaining: 144ms
71:	learn: 21.2244517	total: 356ms	remaining: 138ms
72:	learn: 21.0702958	total: 360ms	remaining: 133ms
73:	learn: 20.9224662	total: 365ms	remaining: 128ms
74:	learn: 20.8150357	total: 369ms	remaining: 123ms
75:	learn: 20.6962739	total: 373ms	remaining: 118ms
76:	learn: 20.5809258	total: 378ms	remaining: 113ms
77:	learn: 20.4735470	total: 382ms	remaining: 108ms
78:	learn: 20.3778167	total: 387ms	remaining: 103ms
79:	learn: 20.2211268	total: 392ms	remaining: 98ms
80:	learn: 20.1478678	total: 396ms	remaining: 92.9ms
81:	learn: 20.1032967	total: 400ms	remaining: 87.8ms
82:	learn: 19.9236300	total: 404ms	remaining: 82.8ms
83:	learn: 19.8151745	total: 409ms	remaining: 77.9ms
84:	learn: 19.7099856	total: 413ms	remaining: 72.9ms
85:	learn: 19.6264833	total: 418ms	remaining: 68ms
86:	learn: 19.4916361	total: 422ms	remaining: 63.1ms
87:	learn: 19.4050529	total: 426ms	remaining: 58.2ms
88:	learn: 19.2547065	total: 431ms	remaining: 53.2ms
89:	learn: 19.1610225	total: 435ms	remaining: 48.3ms
90:	learn: 19.0898958	total: 439ms	remaining: 43.4ms
91:	learn: 19.0489664	total: 452ms	remaining: 39.3ms
92:	learn: 18.9206240	total: 456ms	remaining: 34.3ms
93:	learn: 18.8636239	total: 460ms	remaining: 29.4ms
94:	learn: 18.8126187	total: 465ms	remaining: 24.5ms
95:	learn: 18.7579275	total: 469ms	remaining: 19.6ms
96:	learn: 18.6382753	total: 474ms	remaining: 14.7ms
97:	learn: 18.5397334	total: 479ms	remaining: 9.77ms
98:	learn: 18.4375951	total: 483ms	remaining: 4.88ms
99:	learn: 18.4033755	total: 488ms	remaining: 0us
0:	learn: 46.1068821	total: 2.42ms	remaining: 240ms
1:	learn: 45.3970261	total: 7.7ms	remaining: 377ms
2:	learn: 44.8732696	total: 13.2ms	remaining: 426ms
3:	learn: 44.1290184	total: 18.4ms	remaining: 441ms
4:	learn: 43.3290271	total: 24.1ms	remaining: 458ms
5:	learn: 42.7069090	total: 29.1ms	remaining: 457ms
6:	learn: 42.0572971	total: 34.5ms	remaining: 458ms
7:	learn: 41.4797924	total: 39.8ms	remaining: 458ms
8:	learn: 41.0023122	total: 44.7ms	remaining: 452ms
9:	learn: 40.5330570	total: 49.9ms	remaining: 449ms
10:	learn: 39.9726545	total: 55.3ms	remaining: 447ms
11:	learn: 39.3044053	total: 60.5ms	remaining: 444ms
12:	learn: 38.8169735	total: 64.7ms	remaining: 433ms
13:	learn: 38.2458761	total: 68.9ms	remaining: 423ms
14:	learn: 37.6280321	total: 73.1ms	remaining: 414ms
15:	learn: 37.0800610	total: 77.4ms	remaining: 406ms
16:	learn: 36.5489363	total: 81.7ms	remaining: 399ms
17:	learn: 36.0981456	total: 86ms	remaining: 392ms
18:	learn: 35.6956274	total: 90.2ms	remaining: 385ms
19:	learn: 35.1471999	total: 94.5ms	remaining: 378ms
20:	learn: 34.6235408	total: 98.7ms	remaining: 371ms
21:	learn: 34.1987018	total: 103ms	remaining: 367ms
22:	learn: 33.8985062	total: 108ms	remaining: 361ms
23:	learn: 33.3869017	total: 112ms	remaining: 355ms
24:	learn: 32.9100550	total: 116ms	remaining: 348ms
25:	learn: 32.4156208	total: 120ms	remaining: 343ms
26:	learn: 31.9320493	total: 124ms	remaining: 336ms
27:	learn: 31.5711468	total: 129ms	remaining: 332ms
28:	learn: 31.2404433	total: 134ms	remaining: 327ms
29:	learn: 30.8807946	total: 138ms	remaining: 323ms
30:	learn: 30.5948438	total: 142ms	remaining: 317ms
31:	learn: 30.3885560	total: 147ms	remaining: 312ms
32:	learn: 30.0625101	total: 152ms	remaining: 308ms
33:	learn: 29.9113114	total: 158ms	remaining: 307ms
34:	learn: 29.6983470	total: 165ms	remaining: 306ms
35:	learn: 29.4775849	total: 172ms	remaining: 305ms
36:	learn: 29.0538055	total: 178ms	remaining: 303ms
37:	learn: 28.6792318	total: 183ms	remaining: 299ms
38:	learn: 28.4231383	total: 189ms	remaining: 296ms
39:	learn: 28.1078565	total: 196ms	remaining: 295ms
40:	learn: 27.9079179	total: 202ms	remaining: 291ms
41:	learn: 27.6721506	total: 207ms	remaining: 285ms
42:	learn: 27.4228033	total: 211ms	remaining: 280ms
43:	learn: 27.1740534	total: 216ms	remaining: 275ms
44:	learn: 26.8584071	total: 221ms	remaining: 270ms
45:	learn: 26.6902083	total: 226ms	remaining: 265ms
46:	learn: 26.4855335	total: 230ms	remaining: 260ms
47:	learn: 26.2730822	total: 235ms	remaining: 255ms
48:	learn: 26.1058689	total: 240ms	remaining: 250ms
49:	learn: 25.8587318	total: 245ms	remaining: 245ms
50:	learn: 25.7558005	total: 250ms	remaining: 240ms
51:	learn: 25.5846925	total: 254ms	remaining: 235ms
52:	learn: 25.4249887	total: 259ms	remaining: 229ms
53:	learn: 25.1911054	total: 263ms	remaining: 224ms
54:	learn: 25.0544755	total: 267ms	remaining: 219ms
55:	learn: 24.8874006	total: 272ms	remaining: 214ms
56:	learn: 24.7736279	total: 276ms	remaining: 208ms
57:	learn: 24.6156255	total: 280ms	remaining: 203ms
58:	learn: 24.3962421	total: 285ms	remaining: 198ms
59:	learn: 24.2685129	total: 289ms	remaining: 193ms
60:	learn: 24.1874096	total: 293ms	remaining: 187ms
61:	learn: 24.0394287	total: 298ms	remaining: 183ms
62:	learn: 23.9281768	total: 302ms	remaining: 178ms
63:	learn: 23.7423900	total: 307ms	remaining: 173ms
64:	learn: 23.6015209	total: 311ms	remaining: 168ms
65:	learn: 23.4677943	total: 316ms	remaining: 163ms
66:	learn: 23.3215256	total: 320ms	remaining: 158ms
67:	learn: 23.1869360	total: 324ms	remaining: 153ms
68:	learn: 22.9691180	total: 329ms	remaining: 148ms
69:	learn: 22.7531657	total: 333ms	remaining: 143ms
70:	learn: 22.6133477	total: 338ms	remaining: 138ms
71:	learn: 22.3452758	total: 342ms	remaining: 133ms
72:	learn: 22.2065350	total: 347ms	remaining: 128ms
73:	learn: 22.1071155	total: 352ms	remaining: 124ms
74:	learn: 21.9740686	total: 357ms	remaining: 119ms
75:	learn: 21.8892033	total: 361ms	remaining: 114ms
76:	learn: 21.8267882	total: 366ms	remaining: 109ms
77:	learn: 21.7423479	total: 370ms	remaining: 104ms
78:	learn: 21.6242075	total: 375ms	remaining: 99.7ms
79:	learn: 21.5016910	total: 383ms	remaining: 95.7ms
80:	learn: 21.4806623	total: 384ms	remaining: 90ms
81:	learn: 21.3166637	total: 392ms	remaining: 86.1ms
82:	learn: 21.2222534	total: 402ms	remaining: 82.2ms
83:	learn: 21.1535708	total: 407ms	remaining: 77.6ms
84:	learn: 21.0858902	total: 427ms	remaining: 75.4ms
85:	learn: 20.9206003	total: 433ms	remaining: 70.5ms
86:	learn: 20.8674695	total: 438ms	remaining: 65.5ms
87:	learn: 20.8089875	total: 444ms	remaining: 60.5ms
88:	learn: 20.7085401	total: 450ms	remaining: 55.6ms
89:	learn: 20.5513468	total: 455ms	remaining: 50.5ms
90:	learn: 20.4586742	total: 459ms	remaining: 45.4ms
91:	learn: 20.3932149	total: 465ms	remaining: 40.4ms
92:	learn: 20.3000895	total: 471ms	remaining: 35.4ms
93:	learn: 20.2254009	total: 475ms	remaining: 30.3ms
94:	learn: 20.1750050	total: 479ms	remaining: 25.2ms
95:	learn: 20.0715579	total: 484ms	remaining: 20.2ms
96:	learn: 19.9920082	total: 488ms	remaining: 15.1ms
97:	learn: 19.9664401	total: 492ms	remaining: 10ms
98:	learn: 19.8689673	total: 496ms	remaining: 5.01ms
99:	learn: 19.7537356	total: 501ms	remaining: 0us
0:	learn: 46.8832143	total: 4.42ms	remaining: 437ms
1:	learn: 45.8700349	total: 9.32ms	remaining: 457ms
2:	learn: 45.0546867	total: 14.3ms	remaining: 463ms
3:	learn: 44.2829439	total: 18.9ms	remaining: 453ms
4:	learn: 43.4609042	total: 23.3ms	remaining: 443ms
5:	learn: 42.6754991	total: 27.7ms	remaining: 434ms
6:	learn: 41.9234935	total: 32.7ms	remaining: 434ms
7:	learn: 41.3987518	total: 39.9ms	remaining: 459ms
8:	learn: 40.6625066	total: 47.7ms	remaining: 482ms
9:	learn: 40.0029561	total: 54.3ms	remaining: 489ms
10:	learn: 39.3897033	total: 59.7ms	remaining: 483ms
11:	learn: 38.7741453	total: 66.1ms	remaining: 484ms
12:	learn: 38.1201100	total: 70.8ms	remaining: 474ms
13:	learn: 37.5129454	total: 75ms	remaining: 461ms
14:	learn: 37.2062206	total: 79.4ms	remaining: 450ms
15:	learn: 36.6831741	total: 84ms	remaining: 441ms
16:	learn: 36.2902788	total: 88.3ms	remaining: 431ms
17:	learn: 35.7639930	total: 92.5ms	remaining: 421ms
18:	learn: 35.2580953	total: 96.9ms	remaining: 413ms
19:	learn: 34.7809739	total: 102ms	remaining: 407ms
20:	learn: 34.1330433	total: 106ms	remaining: 399ms
21:	learn: 33.7302219	total: 110ms	remaining: 390ms
22:	learn: 33.3502495	total: 114ms	remaining: 382ms
23:	learn: 33.0067804	total: 119ms	remaining: 377ms
24:	learn: 32.6897855	total: 123ms	remaining: 370ms
25:	learn: 32.4361119	total: 127ms	remaining: 362ms
26:	learn: 32.1278981	total: 132ms	remaining: 356ms
27:	learn: 31.7863721	total: 136ms	remaining: 351ms
28:	learn: 31.4791450	total: 141ms	remaining: 344ms
29:	learn: 31.1760161	total: 145ms	remaining: 338ms
30:	learn: 30.9238888	total: 149ms	remaining: 332ms
31:	learn: 30.5500905	total: 154ms	remaining: 327ms
32:	learn: 30.3078126	total: 158ms	remaining: 320ms
33:	learn: 30.0480921	total: 162ms	remaining: 314ms
34:	learn: 29.8623884	total: 166ms	remaining: 309ms
35:	learn: 29.5991038	total: 171ms	remaining: 303ms
36:	learn: 29.4061161	total: 175ms	remaining: 298ms
37:	learn: 29.0269515	total: 179ms	remaining: 292ms
38:	learn: 28.8224959	total: 183ms	remaining: 286ms
39:	learn: 28.6417843	total: 187ms	remaining: 281ms
40:	learn: 28.3633368	total: 191ms	remaining: 275ms
41:	learn: 28.0200246	total: 195ms	remaining: 270ms
42:	learn: 27.7221254	total: 200ms	remaining: 265ms
43:	learn: 27.5105818	total: 204ms	remaining: 260ms
44:	learn: 27.3551010	total: 209ms	remaining: 255ms
45:	learn: 27.0787522	total: 213ms	remaining: 250ms
46:	learn: 26.8726317	total: 217ms	remaining: 245ms
47:	learn: 26.8003277	total: 222ms	remaining: 240ms
48:	learn: 26.5493785	total: 227ms	remaining: 236ms
49:	learn: 26.3699550	total: 231ms	remaining: 231ms
50:	learn: 26.1519631	total: 236ms	remaining: 227ms
51:	learn: 25.9277325	total: 241ms	remaining: 222ms
52:	learn: 25.7286035	total: 245ms	remaining: 218ms
53:	learn: 25.4999193	total: 250ms	remaining: 213ms
54:	learn: 25.3434703	total: 258ms	remaining: 211ms
55:	learn: 25.1497545	total: 265ms	remaining: 208ms
56:	learn: 24.9498143	total: 276ms	remaining: 208ms
57:	learn: 24.6509390	total: 282ms	remaining: 204ms
58:	learn: 24.5576144	total: 289ms	remaining: 201ms
59:	learn: 24.4265144	total: 294ms	remaining: 196ms
60:	learn: 24.3100706	total: 299ms	remaining: 191ms
61:	learn: 24.1727952	total: 305ms	remaining: 187ms
62:	learn: 24.0478558	total: 310ms	remaining: 182ms
63:	learn: 23.9124577	total: 315ms	remaining: 177ms
64:	learn: 23.7703718	total: 320ms	remaining: 172ms
65:	learn: 23.5975027	total: 326ms	remaining: 168ms
66:	learn: 23.4318077	total: 331ms	remaining: 163ms
67:	learn: 23.3099691	total: 336ms	remaining: 158ms
68:	learn: 23.1947982	total: 342ms	remaining: 154ms
69:	learn: 23.0260174	total: 348ms	remaining: 149ms
70:	learn: 22.8523100	total: 353ms	remaining: 144ms
71:	learn: 22.8028534	total: 357ms	remaining: 139ms
72:	learn: 22.6880658	total: 362ms	remaining: 134ms
73:	learn: 22.5956809	total: 367ms	remaining: 129ms
74:	learn: 22.4692932	total: 371ms	remaining: 124ms
75:	learn: 22.2863504	total: 376ms	remaining: 119ms
76:	learn: 22.1911237	total: 380ms	remaining: 114ms
77:	learn: 22.1098391	total: 385ms	remaining: 108ms
78:	learn: 22.0182738	total: 389ms	remaining: 103ms
79:	learn: 21.9306746	total: 394ms	remaining: 98.5ms
80:	learn: 21.7508233	total: 399ms	remaining: 93.6ms
81:	learn: 21.7108446	total: 404ms	remaining: 88.7ms
82:	learn: 21.5931852	total: 409ms	remaining: 83.7ms
83:	learn: 21.4480361	total: 413ms	remaining: 78.7ms
84:	learn: 21.3092119	total: 417ms	remaining: 73.6ms
85:	learn: 21.2605557	total: 422ms	remaining: 68.7ms
86:	learn: 21.1123597	total: 427ms	remaining: 63.7ms
87:	learn: 21.0115642	total: 431ms	remaining: 58.8ms
88:	learn: 20.9389040	total: 436ms	remaining: 53.9ms
89:	learn: 20.8300300	total: 441ms	remaining: 49ms
90:	learn: 20.7159733	total: 445ms	remaining: 44ms
91:	learn: 20.6282090	total: 450ms	remaining: 39.2ms
92:	learn: 20.5164529	total: 458ms	remaining: 34.5ms
93:	learn: 20.4692032	total: 466ms	remaining: 29.7ms
94:	learn: 20.3768451	total: 471ms	remaining: 24.8ms
95:	learn: 20.2808056	total: 475ms	remaining: 19.8ms
96:	learn: 20.2082089	total: 479ms	remaining: 14.8ms
97:	learn: 20.1698768	total: 483ms	remaining: 9.86ms
98:	learn: 20.1048816	total: 488ms	remaining: 4.93ms
99:	learn: 20.0086159	total: 492ms	remaining: 0us
0:	learn: 27.6506730	total: 4.7ms	remaining: 465ms
1:	learn: 27.1638793	total: 9.26ms	remaining: 454ms
2:	learn: 26.8000665	total: 13.4ms	remaining: 435ms
3:	learn: 26.4256132	total: 18.1ms	remaining: 433ms
4:	learn: 26.0088351	total: 22.3ms	remaining: 424ms
5:	learn: 25.7558298	total: 26.6ms	remaining: 416ms
6:	learn: 25.3380711	total: 30.8ms	remaining: 409ms
7:	learn: 25.0571611	total: 35.1ms	remaining: 404ms
8:	learn: 24.6790148	total: 39.1ms	remaining: 395ms
9:	learn: 24.3600941	total: 43.1ms	remaining: 388ms
10:	learn: 24.1105667	total: 47.3ms	remaining: 383ms
11:	learn: 23.7736542	total: 51.5ms	remaining: 378ms
12:	learn: 23.5824429	total: 56ms	remaining: 375ms
13:	learn: 23.2658303	total: 60.2ms	remaining: 370ms
14:	learn: 23.0061886	total: 64.4ms	remaining: 365ms
15:	learn: 22.8060389	total: 68.4ms	remaining: 359ms
16:	learn: 22.5899735	total: 73.1ms	remaining: 357ms
17:	learn: 22.3625048	total: 77.4ms	remaining: 353ms
18:	learn: 22.0706477	total: 81.7ms	remaining: 348ms
19:	learn: 21.8739394	total: 86.7ms	remaining: 347ms
20:	learn: 21.6143650	total: 91.3ms	remaining: 344ms
21:	learn: 21.4571623	total: 96.4ms	remaining: 342ms
22:	learn: 21.2395769	total: 101ms	remaining: 338ms
23:	learn: 20.9801795	total: 106ms	remaining: 336ms
24:	learn: 20.8036808	total: 111ms	remaining: 332ms
25:	learn: 20.6387539	total: 116ms	remaining: 330ms
26:	learn: 20.4401427	total: 124ms	remaining: 336ms
27:	learn: 20.2879575	total: 133ms	remaining: 342ms
28:	learn: 20.0538664	total: 143ms	remaining: 350ms
29:	learn: 19.8363102	total: 152ms	remaining: 354ms
30:	learn: 19.7015446	total: 157ms	remaining: 350ms
31:	learn: 19.5483114	total: 163ms	remaining: 347ms
32:	learn: 19.4163053	total: 169ms	remaining: 342ms
33:	learn: 19.2880625	total: 174ms	remaining: 337ms
34:	learn: 19.1303389	total: 179ms	remaining: 333ms
35:	learn: 18.9237448	total: 184ms	remaining: 328ms
36:	learn: 18.8142925	total: 190ms	remaining: 323ms
37:	learn: 18.6994696	total: 195ms	remaining: 318ms
38:	learn: 18.5629211	total: 199ms	remaining: 311ms
39:	learn: 18.4600917	total: 204ms	remaining: 305ms
40:	learn: 18.3567139	total: 208ms	remaining: 300ms
41:	learn: 18.2120527	total: 213ms	remaining: 294ms
42:	learn: 18.0688062	total: 218ms	remaining: 289ms
43:	learn: 17.9250181	total: 224ms	remaining: 285ms
44:	learn: 17.8399138	total: 230ms	remaining: 281ms
45:	learn: 17.6720713	total: 234ms	remaining: 275ms
46:	learn: 17.5273091	total: 239ms	remaining: 269ms
47:	learn: 17.4232814	total: 243ms	remaining: 264ms
48:	learn: 17.2957579	total: 248ms	remaining: 258ms
49:	learn: 17.1892874	total: 252ms	remaining: 252ms
50:	learn: 17.0490355	total: 256ms	remaining: 246ms
51:	learn: 16.9666450	total: 261ms	remaining: 241ms
52:	learn: 16.8600056	total: 265ms	remaining: 235ms
53:	learn: 16.7542588	total: 270ms	remaining: 230ms
54:	learn: 16.6316077	total: 275ms	remaining: 225ms
55:	learn: 16.5588112	total: 279ms	remaining: 220ms
56:	learn: 16.5010186	total: 284ms	remaining: 215ms
57:	learn: 16.4081540	total: 289ms	remaining: 209ms
58:	learn: 16.3040451	total: 293ms	remaining: 204ms
59:	learn: 16.1890564	total: 298ms	remaining: 199ms
60:	learn: 16.0977103	total: 303ms	remaining: 194ms
61:	learn: 15.9627607	total: 308ms	remaining: 189ms
62:	learn: 15.9022248	total: 313ms	remaining: 184ms
63:	learn: 15.8151881	total: 319ms	remaining: 179ms
64:	learn: 15.7353125	total: 324ms	remaining: 174ms
65:	learn: 15.6312897	total: 330ms	remaining: 170ms
66:	learn: 15.5330927	total: 340ms	remaining: 168ms
67:	learn: 15.4698681	total: 347ms	remaining: 163ms
68:	learn: 15.4108571	total: 353ms	remaining: 159ms
69:	learn: 15.3492945	total: 358ms	remaining: 154ms
70:	learn: 15.3036540	total: 364ms	remaining: 149ms
71:	learn: 15.2390833	total: 369ms	remaining: 143ms
72:	learn: 15.1556327	total: 373ms	remaining: 138ms
73:	learn: 15.1016315	total: 377ms	remaining: 133ms
74:	learn: 15.0287076	total: 381ms	remaining: 127ms
75:	learn: 14.9530572	total: 386ms	remaining: 122ms
76:	learn: 14.8965517	total: 390ms	remaining: 117ms
77:	learn: 14.8125426	total: 394ms	remaining: 111ms
78:	learn: 14.7435359	total: 399ms	remaining: 106ms
79:	learn: 14.6963163	total: 403ms	remaining: 101ms
80:	learn: 14.6200060	total: 408ms	remaining: 95.6ms
81:	learn: 14.5707760	total: 412ms	remaining: 90.4ms
82:	learn: 14.5053651	total: 416ms	remaining: 85.2ms
83:	learn: 14.4115458	total: 421ms	remaining: 80.1ms
84:	learn: 14.3117159	total: 425ms	remaining: 75ms
85:	learn: 14.2511326	total: 429ms	remaining: 69.9ms
86:	learn: 14.1372486	total: 434ms	remaining: 64.8ms
87:	learn: 14.0992301	total: 438ms	remaining: 59.8ms
88:	learn: 14.0228331	total: 443ms	remaining: 54.7ms
89:	learn: 13.9249836	total: 447ms	remaining: 49.6ms
90:	learn: 13.8679364	total: 451ms	remaining: 44.6ms
91:	learn: 13.8405578	total: 455ms	remaining: 39.6ms
92:	learn: 13.7711325	total: 459ms	remaining: 34.5ms
93:	learn: 13.7357019	total: 463ms	remaining: 29.5ms
94:	learn: 13.6735271	total: 467ms	remaining: 24.6ms
95:	learn: 13.5682393	total: 472ms	remaining: 19.6ms
96:	learn: 13.5342610	total: 476ms	remaining: 14.7ms
97:	learn: 13.4710034	total: 480ms	remaining: 9.79ms
98:	learn: 13.4022402	total: 485ms	remaining: 4.9ms
99:	learn: 13.3351238	total: 489ms	remaining: 0us
0:	learn: 42.9181702	total: 7.93ms	remaining: 785ms
1:	learn: 42.0286736	total: 19.9ms	remaining: 975ms
2:	learn: 41.2764568	total: 26ms	remaining: 841ms
3:	learn: 40.4721918	total: 32.9ms	remaining: 790ms
4:	learn: 39.8518928	total: 38.4ms	remaining: 729ms
5:	learn: 39.2645479	total: 43.8ms	remaining: 687ms
6:	learn: 38.4453704	total: 48.9ms	remaining: 649ms
7:	learn: 37.7122059	total: 54.1ms	remaining: 622ms
8:	learn: 36.9185796	total: 59.3ms	remaining: 600ms
9:	learn: 36.1668427	total: 64.8ms	remaining: 584ms
10:	learn: 35.5639029	total: 70.2ms	remaining: 568ms
11:	learn: 34.7724193	total: 75.4ms	remaining: 553ms
12:	learn: 34.3053433	total: 80.2ms	remaining: 537ms
13:	learn: 33.6561327	total: 81.5ms	remaining: 500ms
14:	learn: 33.0134042	total: 86.9ms	remaining: 492ms
15:	learn: 32.4483300	total: 92.3ms	remaining: 485ms
16:	learn: 31.8581144	total: 96.8ms	remaining: 473ms
17:	learn: 31.2858301	total: 101ms	remaining: 460ms
18:	learn: 30.8483018	total: 106ms	remaining: 451ms
19:	learn: 30.4174622	total: 110ms	remaining: 441ms
20:	learn: 29.8994411	total: 114ms	remaining: 429ms
21:	learn: 29.5045355	total: 118ms	remaining: 420ms
22:	learn: 28.9923519	total: 123ms	remaining: 411ms
23:	learn: 28.4255717	total: 127ms	remaining: 403ms
24:	learn: 28.0283139	total: 132ms	remaining: 395ms
25:	learn: 27.7434814	total: 136ms	remaining: 387ms
26:	learn: 27.2770731	total: 140ms	remaining: 379ms
27:	learn: 26.8928270	total: 145ms	remaining: 372ms
28:	learn: 26.4282671	total: 149ms	remaining: 364ms
29:	learn: 26.0272764	total: 153ms	remaining: 356ms
30:	learn: 25.7579312	total: 157ms	remaining: 350ms
31:	learn: 25.4542434	total: 161ms	remaining: 343ms
32:	learn: 25.1232564	total: 166ms	remaining: 337ms
33:	learn: 24.8110795	total: 170ms	remaining: 330ms
34:	learn: 24.5077579	total: 175ms	remaining: 324ms
35:	learn: 24.1909000	total: 179ms	remaining: 318ms
36:	learn: 23.8719468	total: 183ms	remaining: 312ms
37:	learn: 23.5764366	total: 184ms	remaining: 301ms
38:	learn: 23.3468086	total: 189ms	remaining: 296ms
39:	learn: 23.0908771	total: 194ms	remaining: 291ms
40:	learn: 22.8580876	total: 199ms	remaining: 286ms
41:	learn: 22.6060825	total: 203ms	remaining: 281ms
42:	learn: 22.4125407	total: 208ms	remaining: 276ms
43:	learn: 22.1990617	total: 213ms	remaining: 271ms
44:	learn: 21.9716164	total: 218ms	remaining: 267ms
45:	learn: 21.8360935	total: 227ms	remaining: 267ms
46:	learn: 21.6169256	total: 235ms	remaining: 266ms
47:	learn: 21.4620612	total: 241ms	remaining: 262ms
48:	learn: 21.2894194	total: 247ms	remaining: 257ms
49:	learn: 21.1066266	total: 252ms	remaining: 252ms
50:	learn: 20.9484898	total: 256ms	remaining: 246ms
51:	learn: 20.7195338	total: 260ms	remaining: 240ms
52:	learn: 20.4899740	total: 265ms	remaining: 235ms
53:	learn: 20.3356583	total: 269ms	remaining: 229ms
54:	learn: 20.0754393	total: 273ms	remaining: 224ms
55:	learn: 19.9199159	total: 278ms	remaining: 218ms
56:	learn: 19.7761128	total: 282ms	remaining: 213ms
57:	learn: 19.6533060	total: 286ms	remaining: 207ms
58:	learn: 19.5113942	total: 291ms	remaining: 202ms
59:	learn: 19.3985022	total: 295ms	remaining: 197ms
60:	learn: 19.2683443	total: 300ms	remaining: 192ms
61:	learn: 19.1460824	total: 304ms	remaining: 186ms
62:	learn: 19.0042655	total: 308ms	remaining: 181ms
63:	learn: 18.8720873	total: 313ms	remaining: 176ms
64:	learn: 18.7183888	total: 317ms	remaining: 171ms
65:	learn: 18.5472360	total: 321ms	remaining: 166ms
66:	learn: 18.3976642	total: 326ms	remaining: 160ms
67:	learn: 18.2282851	total: 330ms	remaining: 155ms
68:	learn: 18.1469157	total: 334ms	remaining: 150ms
69:	learn: 18.0649494	total: 339ms	remaining: 145ms
70:	learn: 17.9485405	total: 344ms	remaining: 140ms
71:	learn: 17.8460261	total: 348ms	remaining: 136ms
72:	learn: 17.7679843	total: 353ms	remaining: 131ms
73:	learn: 17.5989290	total: 358ms	remaining: 126ms
74:	learn: 17.4381322	total: 362ms	remaining: 121ms
75:	learn: 17.3370886	total: 367ms	remaining: 116ms
76:	learn: 17.2675308	total: 372ms	remaining: 111ms
77:	learn: 17.1946430	total: 376ms	remaining: 106ms
78:	learn: 17.0923725	total: 380ms	remaining: 101ms
79:	learn: 17.0537265	total: 385ms	remaining: 96.3ms
80:	learn: 16.9456831	total: 390ms	remaining: 91.5ms
81:	learn: 16.8457353	total: 396ms	remaining: 86.9ms
82:	learn: 16.7469310	total: 403ms	remaining: 82.5ms
83:	learn: 16.6679953	total: 409ms	remaining: 77.9ms
84:	learn: 16.6274189	total: 416ms	remaining: 73.4ms
85:	learn: 16.5516530	total: 421ms	remaining: 68.5ms
86:	learn: 16.4886066	total: 426ms	remaining: 63.6ms
87:	learn: 16.3947859	total: 432ms	remaining: 58.9ms
88:	learn: 16.3406495	total: 438ms	remaining: 54.1ms
89:	learn: 16.3019195	total: 443ms	remaining: 49.3ms
90:	learn: 16.1860681	total: 449ms	remaining: 44.4ms
91:	learn: 16.1282812	total: 454ms	remaining: 39.5ms
92:	learn: 16.0303652	total: 459ms	remaining: 34.5ms
93:	learn: 15.9561692	total: 465ms	remaining: 29.7ms
94:	learn: 15.8733994	total: 470ms	remaining: 24.7ms
95:	learn: 15.8108833	total: 476ms	remaining: 19.8ms
96:	learn: 15.7606004	total: 481ms	remaining: 14.9ms
97:	learn: 15.6984664	total: 486ms	remaining: 9.92ms
98:	learn: 15.6223632	total: 492ms	remaining: 4.97ms
99:	learn: 15.5671136	total: 497ms	remaining: 0us
0:	learn: 46.4788614	total: 2.26ms	remaining: 224ms
1:	learn: 45.7608372	total: 7.41ms	remaining: 363ms
2:	learn: 44.8825004	total: 12.1ms	remaining: 392ms
3:	learn: 44.0362738	total: 16.9ms	remaining: 405ms
4:	learn: 43.2086374	total: 22ms	remaining: 417ms
5:	learn: 42.5835773	total: 27ms	remaining: 422ms
6:	learn: 41.9673269	total: 32ms	remaining: 425ms
7:	learn: 41.4748717	total: 36.8ms	remaining: 423ms
8:	learn: 40.7129183	total: 41.6ms	remaining: 421ms
9:	learn: 39.8900884	total: 46.7ms	remaining: 420ms
10:	learn: 39.4142193	total: 51.6ms	remaining: 418ms
11:	learn: 38.8645613	total: 56.7ms	remaining: 416ms
12:	learn: 38.2394731	total: 61.6ms	remaining: 412ms
13:	learn: 37.6834515	total: 66.3ms	remaining: 407ms
14:	learn: 37.0673507	total: 71.3ms	remaining: 404ms
15:	learn: 36.4728340	total: 77ms	remaining: 404ms
16:	learn: 36.0489086	total: 91.4ms	remaining: 446ms
17:	learn: 35.4744141	total: 102ms	remaining: 463ms
18:	learn: 35.0106021	total: 107ms	remaining: 457ms
19:	learn: 34.5586053	total: 114ms	remaining: 456ms
20:	learn: 34.1308223	total: 119ms	remaining: 449ms
21:	learn: 33.7701450	total: 124ms	remaining: 441ms
22:	learn: 33.4425444	total: 129ms	remaining: 432ms
23:	learn: 33.0296412	total: 134ms	remaining: 424ms
24:	learn: 32.6359803	total: 139ms	remaining: 416ms
25:	learn: 32.1846182	total: 143ms	remaining: 408ms
26:	learn: 31.7620230	total: 148ms	remaining: 400ms
27:	learn: 31.4669337	total: 153ms	remaining: 392ms
28:	learn: 31.0792062	total: 157ms	remaining: 384ms
29:	learn: 30.7970537	total: 162ms	remaining: 378ms
30:	learn: 30.4952215	total: 167ms	remaining: 371ms
31:	learn: 30.2845344	total: 171ms	remaining: 364ms
32:	learn: 29.9592732	total: 176ms	remaining: 358ms
33:	learn: 29.6798596	total: 181ms	remaining: 351ms
34:	learn: 29.3368905	total: 186ms	remaining: 345ms
35:	learn: 29.0621238	total: 190ms	remaining: 339ms
36:	learn: 28.6445375	total: 195ms	remaining: 332ms
37:	learn: 28.2418096	total: 199ms	remaining: 325ms
38:	learn: 27.9495390	total: 205ms	remaining: 320ms
39:	learn: 27.6958160	total: 210ms	remaining: 314ms
40:	learn: 27.4811189	total: 215ms	remaining: 309ms
41:	learn: 27.1494420	total: 220ms	remaining: 303ms
42:	learn: 26.8388873	total: 224ms	remaining: 297ms
43:	learn: 26.5721300	total: 229ms	remaining: 291ms
44:	learn: 26.3384738	total: 234ms	remaining: 286ms
45:	learn: 26.1894781	total: 239ms	remaining: 280ms
46:	learn: 25.9580198	total: 244ms	remaining: 275ms
47:	learn: 25.7897985	total: 248ms	remaining: 269ms
48:	learn: 25.6000271	total: 253ms	remaining: 263ms
49:	learn: 25.4130873	total: 258ms	remaining: 258ms
50:	learn: 25.1699061	total: 266ms	remaining: 256ms
51:	learn: 24.9324449	total: 274ms	remaining: 253ms
52:	learn: 24.7729152	total: 283ms	remaining: 251ms
53:	learn: 24.5026563	total: 291ms	remaining: 248ms
54:	learn: 24.2332627	total: 297ms	remaining: 243ms
55:	learn: 23.9611984	total: 302ms	remaining: 238ms
56:	learn: 23.7862603	total: 308ms	remaining: 232ms
57:	learn: 23.6318154	total: 313ms	remaining: 227ms
58:	learn: 23.4443306	total: 319ms	remaining: 221ms
59:	learn: 23.2581425	total: 324ms	remaining: 216ms
60:	learn: 23.0549901	total: 330ms	remaining: 211ms
61:	learn: 22.8666218	total: 335ms	remaining: 206ms
62:	learn: 22.6956739	total: 340ms	remaining: 200ms
63:	learn: 22.5068544	total: 345ms	remaining: 194ms
64:	learn: 22.1859147	total: 351ms	remaining: 189ms
65:	learn: 22.0462043	total: 356ms	remaining: 183ms
66:	learn: 21.9329563	total: 361ms	remaining: 178ms
67:	learn: 21.8029736	total: 365ms	remaining: 172ms
68:	learn: 21.6861091	total: 369ms	remaining: 166ms
69:	learn: 21.4838140	total: 374ms	remaining: 160ms
70:	learn: 21.3548921	total: 378ms	remaining: 154ms
71:	learn: 21.2244517	total: 382ms	remaining: 149ms
72:	learn: 21.0702958	total: 387ms	remaining: 143ms
73:	learn: 20.9224662	total: 391ms	remaining: 137ms
74:	learn: 20.8150357	total: 395ms	remaining: 132ms
75:	learn: 20.6962739	total: 400ms	remaining: 126ms
76:	learn: 20.5809258	total: 405ms	remaining: 121ms
77:	learn: 20.4735470	total: 409ms	remaining: 115ms
78:	learn: 20.3778167	total: 413ms	remaining: 110ms
79:	learn: 20.2211268	total: 418ms	remaining: 105ms
80:	learn: 20.1478678	total: 422ms	remaining: 99.1ms
81:	learn: 20.1032967	total: 427ms	remaining: 93.7ms
82:	learn: 19.9236300	total: 432ms	remaining: 88.4ms
83:	learn: 19.8151745	total: 437ms	remaining: 83.1ms
84:	learn: 19.7099856	total: 442ms	remaining: 77.9ms
85:	learn: 19.6264833	total: 446ms	remaining: 72.7ms
86:	learn: 19.4916361	total: 451ms	remaining: 67.4ms
87:	learn: 19.4050529	total: 456ms	remaining: 62.2ms
88:	learn: 19.2547065	total: 464ms	remaining: 57.3ms
89:	learn: 19.1610225	total: 471ms	remaining: 52.4ms
90:	learn: 19.0898958	total: 479ms	remaining: 47.3ms
91:	learn: 19.0489664	total: 484ms	remaining: 42.1ms
92:	learn: 18.9206240	total: 491ms	remaining: 36.9ms
93:	learn: 18.8636239	total: 495ms	remaining: 31.6ms
94:	learn: 18.8126187	total: 499ms	remaining: 26.3ms
95:	learn: 18.7579275	total: 503ms	remaining: 21ms
96:	learn: 18.6382753	total: 508ms	remaining: 15.7ms
97:	learn: 18.5397334	total: 512ms	remaining: 10.5ms
98:	learn: 18.4375951	total: 517ms	remaining: 5.22ms
99:	learn: 18.4033755	total: 521ms	remaining: 0us
0:	learn: 46.1068821	total: 1.97ms	remaining: 195ms
1:	learn: 45.3970261	total: 6.3ms	remaining: 309ms
2:	learn: 44.8732696	total: 10.2ms	remaining: 328ms
3:	learn: 44.1290184	total: 14.4ms	remaining: 346ms
4:	learn: 43.3290271	total: 19ms	remaining: 360ms
5:	learn: 42.7069090	total: 23.1ms	remaining: 362ms
6:	learn: 42.0572971	total: 27.6ms	remaining: 367ms
7:	learn: 41.4797924	total: 31.9ms	remaining: 367ms
8:	learn: 41.0023122	total: 36.6ms	remaining: 370ms
9:	learn: 40.5330570	total: 40.6ms	remaining: 365ms
10:	learn: 39.9726545	total: 44.5ms	remaining: 360ms
11:	learn: 39.3044053	total: 49ms	remaining: 359ms
12:	learn: 38.8169735	total: 53.7ms	remaining: 359ms
13:	learn: 38.2458761	total: 58ms	remaining: 356ms
14:	learn: 37.6280321	total: 62.2ms	remaining: 352ms
15:	learn: 37.0800610	total: 66.9ms	remaining: 351ms
16:	learn: 36.5489363	total: 72.1ms	remaining: 352ms
17:	learn: 36.0981456	total: 76.5ms	remaining: 349ms
18:	learn: 35.6956274	total: 81ms	remaining: 345ms
19:	learn: 35.1471999	total: 86.3ms	remaining: 345ms
20:	learn: 34.6235408	total: 91ms	remaining: 342ms
21:	learn: 34.1987018	total: 96.2ms	remaining: 341ms
22:	learn: 33.8985062	total: 106ms	remaining: 355ms
23:	learn: 33.3869017	total: 116ms	remaining: 367ms
24:	learn: 32.9100550	total: 124ms	remaining: 372ms
25:	learn: 32.4156208	total: 131ms	remaining: 374ms
26:	learn: 31.9320493	total: 137ms	remaining: 369ms
27:	learn: 31.5711468	total: 142ms	remaining: 365ms
28:	learn: 31.2404433	total: 147ms	remaining: 360ms
29:	learn: 30.8807946	total: 152ms	remaining: 355ms
30:	learn: 30.5948438	total: 158ms	remaining: 351ms
31:	learn: 30.3885560	total: 163ms	remaining: 346ms
32:	learn: 30.0625101	total: 168ms	remaining: 341ms
33:	learn: 29.9113114	total: 174ms	remaining: 337ms
34:	learn: 29.6983470	total: 179ms	remaining: 332ms
35:	learn: 29.4775849	total: 184ms	remaining: 327ms
36:	learn: 29.0538055	total: 190ms	remaining: 323ms
37:	learn: 28.6792318	total: 195ms	remaining: 319ms
38:	learn: 28.4231383	total: 200ms	remaining: 312ms
39:	learn: 28.1078565	total: 204ms	remaining: 306ms
40:	learn: 27.9079179	total: 208ms	remaining: 299ms
41:	learn: 27.6721506	total: 212ms	remaining: 293ms
42:	learn: 27.4228033	total: 217ms	remaining: 287ms
43:	learn: 27.1740534	total: 222ms	remaining: 282ms
44:	learn: 26.8584071	total: 227ms	remaining: 277ms
45:	learn: 26.6902083	total: 231ms	remaining: 271ms
46:	learn: 26.4855335	total: 236ms	remaining: 266ms
47:	learn: 26.2730822	total: 240ms	remaining: 260ms
48:	learn: 26.1058689	total: 245ms	remaining: 255ms
49:	learn: 25.8587318	total: 250ms	remaining: 250ms
50:	learn: 25.7558005	total: 255ms	remaining: 245ms
51:	learn: 25.5846925	total: 259ms	remaining: 239ms
52:	learn: 25.4249887	total: 264ms	remaining: 234ms
53:	learn: 25.1911054	total: 269ms	remaining: 229ms
54:	learn: 25.0544755	total: 274ms	remaining: 224ms
55:	learn: 24.8874006	total: 279ms	remaining: 219ms
56:	learn: 24.7736279	total: 284ms	remaining: 214ms
57:	learn: 24.6156255	total: 289ms	remaining: 209ms
58:	learn: 24.3962421	total: 294ms	remaining: 204ms
59:	learn: 24.2685129	total: 300ms	remaining: 200ms
60:	learn: 24.1874096	total: 308ms	remaining: 197ms
61:	learn: 24.0394287	total: 316ms	remaining: 194ms
62:	learn: 23.9281768	total: 322ms	remaining: 189ms
63:	learn: 23.7423900	total: 329ms	remaining: 185ms
64:	learn: 23.6015209	total: 334ms	remaining: 180ms
65:	learn: 23.4677943	total: 338ms	remaining: 174ms
66:	learn: 23.3215256	total: 342ms	remaining: 169ms
67:	learn: 23.1869360	total: 347ms	remaining: 163ms
68:	learn: 22.9691180	total: 351ms	remaining: 158ms
69:	learn: 22.7531657	total: 356ms	remaining: 153ms
70:	learn: 22.6133477	total: 360ms	remaining: 147ms
71:	learn: 22.3452758	total: 365ms	remaining: 142ms
72:	learn: 22.2065350	total: 368ms	remaining: 136ms
73:	learn: 22.1071155	total: 373ms	remaining: 131ms
74:	learn: 21.9740686	total: 377ms	remaining: 126ms
75:	learn: 21.8892033	total: 382ms	remaining: 121ms
76:	learn: 21.8267882	total: 386ms	remaining: 115ms
77:	learn: 21.7423479	total: 391ms	remaining: 110ms
78:	learn: 21.6242075	total: 395ms	remaining: 105ms
79:	learn: 21.5016910	total: 400ms	remaining: 100ms
80:	learn: 21.4806623	total: 401ms	remaining: 94ms
81:	learn: 21.3166637	total: 405ms	remaining: 89ms
82:	learn: 21.2222534	total: 410ms	remaining: 83.9ms
83:	learn: 21.1535708	total: 414ms	remaining: 78.9ms
84:	learn: 21.0858902	total: 419ms	remaining: 73.9ms
85:	learn: 20.9206003	total: 423ms	remaining: 68.9ms
86:	learn: 20.8674695	total: 428ms	remaining: 63.9ms
87:	learn: 20.8089875	total: 432ms	remaining: 58.9ms
88:	learn: 20.7085401	total: 437ms	remaining: 54ms
89:	learn: 20.5513468	total: 441ms	remaining: 49ms
90:	learn: 20.4586742	total: 446ms	remaining: 44.1ms
91:	learn: 20.3932149	total: 450ms	remaining: 39.2ms
92:	learn: 20.3000895	total: 455ms	remaining: 34.2ms
93:	learn: 20.2254009	total: 459ms	remaining: 29.3ms
94:	learn: 20.1750050	total: 464ms	remaining: 24.4ms
95:	learn: 20.0715579	total: 469ms	remaining: 19.5ms
96:	learn: 19.9920082	total: 474ms	remaining: 14.7ms
97:	learn: 19.9664401	total: 479ms	remaining: 9.77ms
98:	learn: 19.8689673	total: 483ms	remaining: 4.88ms
99:	learn: 19.7537356	total: 488ms	remaining: 0us
0:	learn: 46.8832143	total: 5.85ms	remaining: 579ms
1:	learn: 45.8700349	total: 11.1ms	remaining: 543ms
2:	learn: 45.0546867	total: 16.3ms	remaining: 527ms
3:	learn: 44.2829439	total: 21.9ms	remaining: 526ms
4:	learn: 43.4609042	total: 27ms	remaining: 512ms
5:	learn: 42.6754991	total: 32ms	remaining: 501ms
6:	learn: 41.9234935	total: 36.9ms	remaining: 491ms
7:	learn: 41.3987518	total: 41.9ms	remaining: 482ms
8:	learn: 40.6625066	total: 47ms	remaining: 475ms
9:	learn: 40.0029561	total: 52.7ms	remaining: 474ms
10:	learn: 39.3897033	total: 57ms	remaining: 461ms
11:	learn: 38.7741453	total: 64.9ms	remaining: 476ms
12:	learn: 38.1201100	total: 69.6ms	remaining: 466ms
13:	learn: 37.5129454	total: 74.6ms	remaining: 458ms
14:	learn: 37.2062206	total: 79.7ms	remaining: 451ms
15:	learn: 36.6831741	total: 84.5ms	remaining: 444ms
16:	learn: 36.2902788	total: 89.3ms	remaining: 436ms
17:	learn: 35.7639930	total: 94.3ms	remaining: 430ms
18:	learn: 35.2580953	total: 99.1ms	remaining: 423ms
19:	learn: 34.7809739	total: 104ms	remaining: 414ms
20:	learn: 34.1330433	total: 108ms	remaining: 406ms
21:	learn: 33.7302219	total: 113ms	remaining: 399ms
22:	learn: 33.3502495	total: 117ms	remaining: 393ms
23:	learn: 33.0067804	total: 121ms	remaining: 384ms
24:	learn: 32.6897855	total: 126ms	remaining: 378ms
25:	learn: 32.4361119	total: 131ms	remaining: 372ms
26:	learn: 32.1278981	total: 136ms	remaining: 367ms
27:	learn: 31.7863721	total: 140ms	remaining: 361ms
28:	learn: 31.4791450	total: 145ms	remaining: 355ms
29:	learn: 31.1760161	total: 150ms	remaining: 349ms
30:	learn: 30.9238888	total: 154ms	remaining: 344ms
31:	learn: 30.5500905	total: 163ms	remaining: 346ms
32:	learn: 30.3078126	total: 171ms	remaining: 347ms
33:	learn: 30.0480921	total: 178ms	remaining: 346ms
34:	learn: 29.8623884	total: 183ms	remaining: 340ms
35:	learn: 29.5991038	total: 189ms	remaining: 335ms
36:	learn: 29.4061161	total: 193ms	remaining: 329ms
37:	learn: 29.0269515	total: 197ms	remaining: 322ms
38:	learn: 28.8224959	total: 201ms	remaining: 315ms
39:	learn: 28.6417843	total: 205ms	remaining: 308ms
40:	learn: 28.3633368	total: 210ms	remaining: 302ms
41:	learn: 28.0200246	total: 214ms	remaining: 295ms
42:	learn: 27.7221254	total: 218ms	remaining: 289ms
43:	learn: 27.5105818	total: 222ms	remaining: 283ms
44:	learn: 27.3551010	total: 226ms	remaining: 276ms
45:	learn: 27.0787522	total: 231ms	remaining: 271ms
46:	learn: 26.8726317	total: 235ms	remaining: 265ms
47:	learn: 26.8003277	total: 239ms	remaining: 259ms
48:	learn: 26.5493785	total: 243ms	remaining: 253ms
49:	learn: 26.3699550	total: 248ms	remaining: 248ms
50:	learn: 26.1519631	total: 252ms	remaining: 242ms
51:	learn: 25.9277325	total: 257ms	remaining: 237ms
52:	learn: 25.7286035	total: 261ms	remaining: 231ms
53:	learn: 25.4999193	total: 266ms	remaining: 226ms
54:	learn: 25.3434703	total: 270ms	remaining: 221ms
55:	learn: 25.1497545	total: 275ms	remaining: 216ms
56:	learn: 24.9498143	total: 279ms	remaining: 210ms
57:	learn: 24.6509390	total: 283ms	remaining: 205ms
58:	learn: 24.5576144	total: 287ms	remaining: 199ms
59:	learn: 24.4265144	total: 291ms	remaining: 194ms
60:	learn: 24.3100706	total: 295ms	remaining: 189ms
61:	learn: 24.1727952	total: 300ms	remaining: 184ms
62:	learn: 24.0478558	total: 305ms	remaining: 179ms
63:	learn: 23.9124577	total: 309ms	remaining: 174ms
64:	learn: 23.7703718	total: 314ms	remaining: 169ms
65:	learn: 23.5975027	total: 318ms	remaining: 164ms
66:	learn: 23.4318077	total: 322ms	remaining: 159ms
67:	learn: 23.3099691	total: 328ms	remaining: 154ms
68:	learn: 23.1947982	total: 332ms	remaining: 149ms
69:	learn: 23.0260174	total: 337ms	remaining: 144ms
70:	learn: 22.8523100	total: 342ms	remaining: 140ms
71:	learn: 22.8028534	total: 347ms	remaining: 135ms
72:	learn: 22.6880658	total: 351ms	remaining: 130ms
73:	learn: 22.5956809	total: 358ms	remaining: 126ms
74:	learn: 22.4692932	total: 367ms	remaining: 122ms
75:	learn: 22.2863504	total: 378ms	remaining: 119ms
76:	learn: 22.1911237	total: 386ms	remaining: 115ms
77:	learn: 22.1098391	total: 392ms	remaining: 110ms
78:	learn: 22.0182738	total: 397ms	remaining: 106ms
79:	learn: 21.9306746	total: 403ms	remaining: 101ms
80:	learn: 21.7508233	total: 409ms	remaining: 95.9ms
81:	learn: 21.7108446	total: 414ms	remaining: 91ms
82:	learn: 21.5931852	total: 420ms	remaining: 86ms
83:	learn: 21.4480361	total: 425ms	remaining: 80.9ms
84:	learn: 21.3092119	total: 429ms	remaining: 75.8ms
85:	learn: 21.2605557	total: 435ms	remaining: 70.8ms
86:	learn: 21.1123597	total: 440ms	remaining: 65.8ms
87:	learn: 21.0115642	total: 445ms	remaining: 60.7ms
88:	learn: 20.9389040	total: 449ms	remaining: 55.5ms
89:	learn: 20.8300300	total: 453ms	remaining: 50.4ms
90:	learn: 20.7159733	total: 458ms	remaining: 45.2ms
91:	learn: 20.6282090	total: 462ms	remaining: 40.2ms
92:	learn: 20.5164529	total: 466ms	remaining: 35.1ms
93:	learn: 20.4692032	total: 470ms	remaining: 30ms
94:	learn: 20.3768451	total: 475ms	remaining: 25ms
95:	learn: 20.2808056	total: 479ms	remaining: 20ms
96:	learn: 20.2082089	total: 483ms	remaining: 14.9ms
97:	learn: 20.1698768	total: 488ms	remaining: 9.95ms
98:	learn: 20.1048816	total: 492ms	remaining: 4.97ms
99:	learn: 20.0086159	total: 496ms	remaining: 0us
0:	learn: 27.6871645	total: 5.65ms	remaining: 559ms
1:	learn: 27.3312003	total: 11.8ms	remaining: 577ms
2:	learn: 26.9359558	total: 19.5ms	remaining: 629ms
3:	learn: 26.6055364	total: 26.8ms	remaining: 644ms
4:	learn: 26.1664924	total: 33.3ms	remaining: 633ms
5:	learn: 25.8515393	total: 39ms	remaining: 611ms
6:	learn: 25.4620036	total: 44.4ms	remaining: 591ms
7:	learn: 25.1669741	total: 51.5ms	remaining: 592ms
8:	learn: 24.8455454	total: 56.9ms	remaining: 575ms
9:	learn: 24.5106323	total: 61.8ms	remaining: 556ms
10:	learn: 24.1915228	total: 66.4ms	remaining: 537ms
11:	learn: 23.9076053	total: 71.1ms	remaining: 521ms
12:	learn: 23.6692445	total: 75.8ms	remaining: 507ms
13:	learn: 23.4343504	total: 80.7ms	remaining: 496ms
14:	learn: 23.2425280	total: 85.3ms	remaining: 483ms
15:	learn: 22.9254142	total: 89.8ms	remaining: 472ms
16:	learn: 22.6495489	total: 95.1ms	remaining: 464ms
17:	learn: 22.4343705	total: 99.6ms	remaining: 454ms
18:	learn: 22.2154202	total: 104ms	remaining: 443ms
19:	learn: 22.0592712	total: 109ms	remaining: 435ms
20:	learn: 21.7971944	total: 114ms	remaining: 428ms
21:	learn: 21.6128930	total: 119ms	remaining: 420ms
22:	learn: 21.3882946	total: 123ms	remaining: 413ms
23:	learn: 21.0912570	total: 128ms	remaining: 406ms
24:	learn: 20.8922857	total: 133ms	remaining: 398ms
25:	learn: 20.7150574	total: 137ms	remaining: 390ms
26:	learn: 20.5673183	total: 142ms	remaining: 384ms
27:	learn: 20.4331275	total: 147ms	remaining: 378ms
28:	learn: 20.2782866	total: 152ms	remaining: 372ms
29:	learn: 20.1061525	total: 157ms	remaining: 365ms
30:	learn: 19.9225948	total: 161ms	remaining: 359ms
31:	learn: 19.7809193	total: 166ms	remaining: 354ms
32:	learn: 19.6057771	total: 171ms	remaining: 348ms
33:	learn: 19.4391243	total: 176ms	remaining: 342ms
34:	learn: 19.2234365	total: 181ms	remaining: 336ms
35:	learn: 19.0214424	total: 185ms	remaining: 329ms
36:	learn: 18.8990643	total: 190ms	remaining: 323ms
37:	learn: 18.7473635	total: 194ms	remaining: 317ms
38:	learn: 18.6125192	total: 199ms	remaining: 312ms
39:	learn: 18.4977949	total: 204ms	remaining: 306ms
40:	learn: 18.3914568	total: 209ms	remaining: 300ms
41:	learn: 18.2541544	total: 214ms	remaining: 295ms
42:	learn: 18.1038984	total: 218ms	remaining: 289ms
43:	learn: 17.9706172	total: 223ms	remaining: 284ms
44:	learn: 17.8198810	total: 228ms	remaining: 278ms
45:	learn: 17.7102597	total: 233ms	remaining: 273ms
46:	learn: 17.6148228	total: 238ms	remaining: 268ms
47:	learn: 17.5115365	total: 243ms	remaining: 263ms
48:	learn: 17.3884162	total: 248ms	remaining: 258ms
49:	learn: 17.2857632	total: 253ms	remaining: 253ms
50:	learn: 17.1618843	total: 258ms	remaining: 248ms
51:	learn: 17.0529601	total: 268ms	remaining: 247ms
52:	learn: 16.9330273	total: 280ms	remaining: 248ms
53:	learn: 16.8206672	total: 288ms	remaining: 246ms
54:	learn: 16.7080356	total: 296ms	remaining: 242ms
55:	learn: 16.5874354	total: 302ms	remaining: 237ms
56:	learn: 16.4929860	total: 308ms	remaining: 232ms
57:	learn: 16.4269419	total: 314ms	remaining: 227ms
58:	learn: 16.3474026	total: 320ms	remaining: 222ms
59:	learn: 16.2515784	total: 325ms	remaining: 217ms
60:	learn: 16.1743901	total: 331ms	remaining: 212ms
61:	learn: 16.0389930	total: 337ms	remaining: 207ms
62:	learn: 15.9671636	total: 342ms	remaining: 201ms
63:	learn: 15.8928486	total: 348ms	remaining: 196ms
64:	learn: 15.8303841	total: 354ms	remaining: 191ms
65:	learn: 15.7612266	total: 359ms	remaining: 185ms
66:	learn: 15.6811172	total: 364ms	remaining: 179ms
67:	learn: 15.6262138	total: 369ms	remaining: 174ms
68:	learn: 15.5662508	total: 374ms	remaining: 168ms
69:	learn: 15.4804354	total: 385ms	remaining: 165ms
70:	learn: 15.4054915	total: 390ms	remaining: 159ms
71:	learn: 15.3271396	total: 395ms	remaining: 153ms
72:	learn: 15.2828359	total: 399ms	remaining: 148ms
73:	learn: 15.2197404	total: 405ms	remaining: 142ms
74:	learn: 15.1315902	total: 410ms	remaining: 137ms
75:	learn: 15.0780523	total: 414ms	remaining: 131ms
76:	learn: 14.9959155	total: 420ms	remaining: 125ms
77:	learn: 14.9265008	total: 425ms	remaining: 120ms
78:	learn: 14.8570189	total: 429ms	remaining: 114ms
79:	learn: 14.8060372	total: 435ms	remaining: 109ms
80:	learn: 14.7294676	total: 440ms	remaining: 103ms
81:	learn: 14.6708309	total: 445ms	remaining: 97.7ms
82:	learn: 14.5765370	total: 451ms	remaining: 92.3ms
83:	learn: 14.5312713	total: 456ms	remaining: 86.9ms
84:	learn: 14.4830327	total: 464ms	remaining: 81.9ms
85:	learn: 14.4296247	total: 474ms	remaining: 77.1ms
86:	learn: 14.3381470	total: 483ms	remaining: 72.1ms
87:	learn: 14.2638093	total: 488ms	remaining: 66.6ms
88:	learn: 14.2288435	total: 494ms	remaining: 61.1ms
89:	learn: 14.1489273	total: 499ms	remaining: 55.5ms
90:	learn: 14.0937923	total: 504ms	remaining: 49.8ms
91:	learn: 14.0334062	total: 509ms	remaining: 44.3ms
92:	learn: 13.9854696	total: 515ms	remaining: 38.7ms
93:	learn: 13.9444203	total: 520ms	remaining: 33.2ms
94:	learn: 13.9101523	total: 526ms	remaining: 27.7ms
95:	learn: 13.8460655	total: 531ms	remaining: 22.1ms
96:	learn: 13.7809420	total: 537ms	remaining: 16.6ms
97:	learn: 13.7270532	total: 542ms	remaining: 11.1ms
98:	learn: 13.6891300	total: 547ms	remaining: 5.52ms
99:	learn: 13.6569696	total: 552ms	remaining: 0us
0:	learn: 42.9754370	total: 5.15ms	remaining: 510ms
1:	learn: 42.2613272	total: 10ms	remaining: 491ms
2:	learn: 41.4729969	total: 14.7ms	remaining: 475ms
3:	learn: 40.7127004	total: 19.4ms	remaining: 466ms
4:	learn: 39.7775109	total: 24.1ms	remaining: 457ms
5:	learn: 39.1736663	total: 28.9ms	remaining: 453ms
6:	learn: 38.2981109	total: 33.5ms	remaining: 445ms
7:	learn: 37.5352984	total: 38.6ms	remaining: 444ms
8:	learn: 36.7771474	total: 43.5ms	remaining: 440ms
9:	learn: 36.0581366	total: 48.2ms	remaining: 434ms
10:	learn: 35.3542706	total: 53.2ms	remaining: 430ms
11:	learn: 34.6937007	total: 58.4ms	remaining: 428ms
12:	learn: 34.0408035	total: 63.6ms	remaining: 426ms
13:	learn: 33.3460240	total: 72.9ms	remaining: 448ms
14:	learn: 32.8086243	total: 82.9ms	remaining: 470ms
15:	learn: 32.1934462	total: 91.6ms	remaining: 481ms
16:	learn: 31.6465519	total: 99.8ms	remaining: 487ms
17:	learn: 31.2161293	total: 106ms	remaining: 482ms
18:	learn: 30.6730548	total: 111ms	remaining: 475ms
19:	learn: 30.3153659	total: 117ms	remaining: 468ms
20:	learn: 29.7661420	total: 122ms	remaining: 460ms
21:	learn: 29.2095664	total: 128ms	remaining: 455ms
22:	learn: 28.7509592	total: 134ms	remaining: 448ms
23:	learn: 28.4347528	total: 139ms	remaining: 441ms
24:	learn: 28.0551654	total: 145ms	remaining: 436ms
25:	learn: 27.7295952	total: 150ms	remaining: 428ms
26:	learn: 27.2329225	total: 156ms	remaining: 422ms
27:	learn: 26.9970607	total: 163ms	remaining: 420ms
28:	learn: 26.6596544	total: 169ms	remaining: 413ms
29:	learn: 26.2633576	total: 173ms	remaining: 405ms
30:	learn: 25.9761623	total: 178ms	remaining: 397ms
31:	learn: 25.6177371	total: 183ms	remaining: 390ms
32:	learn: 25.2165933	total: 188ms	remaining: 382ms
33:	learn: 24.8012870	total: 193ms	remaining: 374ms
34:	learn: 24.4772532	total: 198ms	remaining: 367ms
35:	learn: 24.1560359	total: 203ms	remaining: 360ms
36:	learn: 23.9688812	total: 208ms	remaining: 354ms
37:	learn: 23.6907607	total: 213ms	remaining: 347ms
38:	learn: 23.3885772	total: 218ms	remaining: 340ms
39:	learn: 23.2234939	total: 223ms	remaining: 334ms
40:	learn: 22.9785026	total: 227ms	remaining: 327ms
41:	learn: 22.6827268	total: 232ms	remaining: 321ms
42:	learn: 22.4564360	total: 237ms	remaining: 315ms
43:	learn: 22.2517827	total: 243ms	remaining: 309ms
44:	learn: 21.9858709	total: 248ms	remaining: 303ms
45:	learn: 21.7595870	total: 253ms	remaining: 296ms
46:	learn: 21.5929957	total: 257ms	remaining: 290ms
47:	learn: 21.4071752	total: 262ms	remaining: 284ms
48:	learn: 21.2186470	total: 269ms	remaining: 280ms
49:	learn: 21.0691824	total: 278ms	remaining: 278ms
50:	learn: 20.8921347	total: 286ms	remaining: 274ms
51:	learn: 20.6834229	total: 292ms	remaining: 269ms
52:	learn: 20.4718988	total: 298ms	remaining: 264ms
53:	learn: 20.3413889	total: 303ms	remaining: 258ms
54:	learn: 20.1785464	total: 308ms	remaining: 252ms
55:	learn: 19.9824314	total: 313ms	remaining: 246ms
56:	learn: 19.8217596	total: 318ms	remaining: 240ms
57:	learn: 19.6318474	total: 323ms	remaining: 234ms
58:	learn: 19.4962236	total: 327ms	remaining: 227ms
59:	learn: 19.3114985	total: 332ms	remaining: 221ms
60:	learn: 19.2181156	total: 337ms	remaining: 216ms
61:	learn: 19.0689614	total: 342ms	remaining: 209ms
62:	learn: 18.9563267	total: 347ms	remaining: 204ms
63:	learn: 18.8343083	total: 352ms	remaining: 198ms
64:	learn: 18.7050033	total: 356ms	remaining: 192ms
65:	learn: 18.6014163	total: 361ms	remaining: 186ms
66:	learn: 18.4910692	total: 366ms	remaining: 180ms
67:	learn: 18.3935194	total: 370ms	remaining: 174ms
68:	learn: 18.2825842	total: 375ms	remaining: 169ms
69:	learn: 18.1519267	total: 380ms	remaining: 163ms
70:	learn: 18.0527651	total: 385ms	remaining: 157ms
71:	learn: 17.9770106	total: 390ms	remaining: 152ms
72:	learn: 17.9151628	total: 395ms	remaining: 146ms
73:	learn: 17.7957486	total: 400ms	remaining: 140ms
74:	learn: 17.7025765	total: 405ms	remaining: 135ms
75:	learn: 17.5957242	total: 409ms	remaining: 129ms
76:	learn: 17.4683244	total: 414ms	remaining: 124ms
77:	learn: 17.3415729	total: 419ms	remaining: 118ms
78:	learn: 17.2886896	total: 425ms	remaining: 113ms
79:	learn: 17.2280922	total: 429ms	remaining: 107ms
80:	learn: 17.1188996	total: 434ms	remaining: 102ms
81:	learn: 17.0236450	total: 439ms	remaining: 96.4ms
82:	learn: 16.9046661	total: 444ms	remaining: 91ms
83:	learn: 16.7930633	total: 449ms	remaining: 85.6ms
84:	learn: 16.6870100	total: 454ms	remaining: 80.2ms
85:	learn: 16.5512107	total: 459ms	remaining: 74.8ms
86:	learn: 16.4353400	total: 464ms	remaining: 69.4ms
87:	learn: 16.3256461	total: 474ms	remaining: 64.7ms
88:	learn: 16.2968057	total: 485ms	remaining: 60ms
89:	learn: 16.2136078	total: 492ms	remaining: 54.7ms
90:	learn: 16.1596096	total: 501ms	remaining: 49.5ms
91:	learn: 16.1164050	total: 507ms	remaining: 44ms
92:	learn: 16.0660454	total: 513ms	remaining: 38.6ms
93:	learn: 16.0380611	total: 519ms	remaining: 33.1ms
94:	learn: 15.9494441	total: 524ms	remaining: 27.6ms
95:	learn: 15.8874840	total: 531ms	remaining: 22.1ms
96:	learn: 15.8288234	total: 536ms	remaining: 16.6ms
97:	learn: 15.7562787	total: 543ms	remaining: 11.1ms
98:	learn: 15.6822678	total: 548ms	remaining: 5.54ms
99:	learn: 15.5901500	total: 554ms	remaining: 0us
0:	learn: 46.4504871	total: 5.11ms	remaining: 506ms
1:	learn: 45.7240114	total: 10.1ms	remaining: 496ms
2:	learn: 45.0308025	total: 14.8ms	remaining: 478ms
3:	learn: 44.1111169	total: 19.7ms	remaining: 473ms
4:	learn: 43.3925352	total: 24.5ms	remaining: 466ms
5:	learn: 42.7856354	total: 29.4ms	remaining: 460ms
6:	learn: 42.1998170	total: 34.1ms	remaining: 453ms
7:	learn: 41.3532708	total: 39.5ms	remaining: 454ms
8:	learn: 40.7314571	total: 44.6ms	remaining: 451ms
9:	learn: 39.9838066	total: 49.6ms	remaining: 447ms
10:	learn: 39.4168243	total: 54.9ms	remaining: 444ms
11:	learn: 39.0148769	total: 59.8ms	remaining: 439ms
12:	learn: 38.3055855	total: 64.8ms	remaining: 433ms
13:	learn: 37.7343198	total: 73.2ms	remaining: 449ms
14:	learn: 37.4177463	total: 82.3ms	remaining: 467ms
15:	learn: 36.9043298	total: 90.1ms	remaining: 473ms
16:	learn: 36.3139174	total: 95.4ms	remaining: 466ms
17:	learn: 35.7200448	total: 102ms	remaining: 464ms
18:	learn: 35.3763394	total: 107ms	remaining: 456ms
19:	learn: 34.7666728	total: 112ms	remaining: 447ms
20:	learn: 34.2642890	total: 116ms	remaining: 438ms
21:	learn: 33.8196936	total: 121ms	remaining: 430ms
22:	learn: 33.4205669	total: 126ms	remaining: 422ms
23:	learn: 32.8565493	total: 131ms	remaining: 415ms
24:	learn: 32.5287132	total: 136ms	remaining: 407ms
25:	learn: 32.2142064	total: 141ms	remaining: 401ms
26:	learn: 31.9258854	total: 146ms	remaining: 395ms
27:	learn: 31.4083665	total: 151ms	remaining: 388ms
28:	learn: 31.1615620	total: 156ms	remaining: 381ms
29:	learn: 30.6948867	total: 161ms	remaining: 375ms
30:	learn: 30.3185108	total: 166ms	remaining: 369ms
31:	learn: 29.9245223	total: 170ms	remaining: 362ms
32:	learn: 29.6683643	total: 176ms	remaining: 356ms
33:	learn: 29.3868143	total: 180ms	remaining: 350ms
34:	learn: 29.1105699	total: 185ms	remaining: 344ms
35:	learn: 28.8274848	total: 190ms	remaining: 337ms
36:	learn: 28.5478288	total: 195ms	remaining: 332ms
37:	learn: 28.2355121	total: 200ms	remaining: 326ms
38:	learn: 28.0182564	total: 205ms	remaining: 321ms
39:	learn: 27.7654405	total: 210ms	remaining: 315ms
40:	learn: 27.5720477	total: 215ms	remaining: 309ms
41:	learn: 27.3182782	total: 220ms	remaining: 304ms
42:	learn: 26.9504431	total: 225ms	remaining: 298ms
43:	learn: 26.7281906	total: 230ms	remaining: 293ms
44:	learn: 26.5390008	total: 235ms	remaining: 287ms
45:	learn: 26.3781338	total: 240ms	remaining: 281ms
46:	learn: 26.1763177	total: 245ms	remaining: 276ms
47:	learn: 25.9417647	total: 250ms	remaining: 271ms
48:	learn: 25.7528045	total: 256ms	remaining: 266ms
49:	learn: 25.6336897	total: 261ms	remaining: 261ms
50:	learn: 25.4800426	total: 266ms	remaining: 255ms
51:	learn: 25.2895681	total: 276ms	remaining: 255ms
52:	learn: 25.0827111	total: 290ms	remaining: 257ms
53:	learn: 24.7987678	total: 300ms	remaining: 256ms
54:	learn: 24.6309982	total: 307ms	remaining: 251ms
55:	learn: 24.3526776	total: 315ms	remaining: 247ms
56:	learn: 24.1689125	total: 322ms	remaining: 243ms
57:	learn: 23.9802039	total: 329ms	remaining: 238ms
58:	learn: 23.8059432	total: 336ms	remaining: 233ms
59:	learn: 23.6006403	total: 343ms	remaining: 229ms
60:	learn: 23.2948382	total: 349ms	remaining: 223ms
61:	learn: 23.1338922	total: 355ms	remaining: 218ms
62:	learn: 22.9581269	total: 362ms	remaining: 213ms
63:	learn: 22.8263127	total: 369ms	remaining: 207ms
64:	learn: 22.6966006	total: 374ms	remaining: 201ms
65:	learn: 22.6012389	total: 379ms	remaining: 195ms
66:	learn: 22.4220244	total: 384ms	remaining: 189ms
67:	learn: 22.3148342	total: 388ms	remaining: 183ms
68:	learn: 22.1543592	total: 393ms	remaining: 177ms
69:	learn: 22.0614050	total: 398ms	remaining: 171ms
70:	learn: 21.9134025	total: 403ms	remaining: 165ms
71:	learn: 21.8198101	total: 408ms	remaining: 159ms
72:	learn: 21.6944173	total: 413ms	remaining: 153ms
73:	learn: 21.4727420	total: 418ms	remaining: 147ms
74:	learn: 21.3000560	total: 423ms	remaining: 141ms
75:	learn: 21.1884740	total: 427ms	remaining: 135ms
76:	learn: 21.0321317	total: 432ms	remaining: 129ms
77:	learn: 20.9371793	total: 438ms	remaining: 123ms
78:	learn: 20.6800341	total: 442ms	remaining: 118ms
79:	learn: 20.5629904	total: 447ms	remaining: 112ms
80:	learn: 20.4098217	total: 452ms	remaining: 106ms
81:	learn: 20.2139261	total: 458ms	remaining: 100ms
82:	learn: 20.1024260	total: 464ms	remaining: 94.9ms
83:	learn: 19.9835855	total: 469ms	remaining: 89.3ms
84:	learn: 19.9018880	total: 474ms	remaining: 83.6ms
85:	learn: 19.7819843	total: 481ms	remaining: 78.3ms
86:	learn: 19.6352780	total: 489ms	remaining: 73.1ms
87:	learn: 19.4888328	total: 497ms	remaining: 67.8ms
88:	learn: 19.4365121	total: 503ms	remaining: 62.2ms
89:	learn: 19.3427430	total: 510ms	remaining: 56.7ms
90:	learn: 19.2884907	total: 515ms	remaining: 51ms
91:	learn: 19.1898932	total: 520ms	remaining: 45.2ms
92:	learn: 19.0775661	total: 525ms	remaining: 39.5ms
93:	learn: 19.0334055	total: 530ms	remaining: 33.8ms
94:	learn: 18.9381916	total: 534ms	remaining: 28.1ms
95:	learn: 18.8471198	total: 539ms	remaining: 22.5ms
96:	learn: 18.7136478	total: 544ms	remaining: 16.8ms
97:	learn: 18.6633102	total: 549ms	remaining: 11.2ms
98:	learn: 18.5887516	total: 555ms	remaining: 5.6ms
99:	learn: 18.4841597	total: 560ms	remaining: 0us
0:	learn: 46.2172336	total: 4.94ms	remaining: 489ms
1:	learn: 45.4248871	total: 9.82ms	remaining: 481ms
2:	learn: 44.8702937	total: 14.8ms	remaining: 480ms
3:	learn: 44.2019212	total: 19.5ms	remaining: 467ms
4:	learn: 43.4805210	total: 24.1ms	remaining: 458ms
5:	learn: 42.7336269	total: 29ms	remaining: 455ms
6:	learn: 42.0396670	total: 34ms	remaining: 452ms
7:	learn: 41.5668459	total: 38.9ms	remaining: 447ms
8:	learn: 40.8999125	total: 44ms	remaining: 445ms
9:	learn: 40.3358512	total: 49ms	remaining: 441ms
10:	learn: 39.7511489	total: 53.7ms	remaining: 435ms
11:	learn: 39.0775416	total: 58.6ms	remaining: 430ms
12:	learn: 38.5204735	total: 63.8ms	remaining: 427ms
13:	learn: 38.2087509	total: 71.9ms	remaining: 442ms
14:	learn: 37.7259552	total: 80.2ms	remaining: 454ms
15:	learn: 37.1646397	total: 87.4ms	remaining: 459ms
16:	learn: 36.7093520	total: 93.1ms	remaining: 455ms
17:	learn: 36.2212308	total: 99.2ms	remaining: 452ms
18:	learn: 35.8682156	total: 107ms	remaining: 455ms
19:	learn: 35.6026383	total: 112ms	remaining: 449ms
20:	learn: 35.1739725	total: 118ms	remaining: 444ms
21:	learn: 34.5938003	total: 124ms	remaining: 439ms
22:	learn: 34.1479056	total: 129ms	remaining: 433ms
23:	learn: 33.8759356	total: 135ms	remaining: 428ms
24:	learn: 33.2898426	total: 141ms	remaining: 423ms
25:	learn: 32.9220237	total: 146ms	remaining: 417ms
26:	learn: 32.4324374	total: 152ms	remaining: 412ms
27:	learn: 32.1726327	total: 158ms	remaining: 406ms
28:	learn: 31.8020879	total: 163ms	remaining: 400ms
29:	learn: 31.4329781	total: 169ms	remaining: 395ms
30:	learn: 30.9995282	total: 175ms	remaining: 389ms
31:	learn: 30.6815978	total: 180ms	remaining: 383ms
32:	learn: 30.2991029	total: 186ms	remaining: 377ms
33:	learn: 30.0354202	total: 192ms	remaining: 373ms
34:	learn: 29.7620535	total: 198ms	remaining: 368ms
35:	learn: 29.4552589	total: 203ms	remaining: 361ms
36:	learn: 29.2634399	total: 207ms	remaining: 353ms
37:	learn: 28.8345135	total: 212ms	remaining: 347ms
38:	learn: 28.5551142	total: 217ms	remaining: 339ms
39:	learn: 28.3258809	total: 222ms	remaining: 333ms
40:	learn: 28.0835564	total: 226ms	remaining: 326ms
41:	learn: 27.7517159	total: 231ms	remaining: 319ms
42:	learn: 27.5427595	total: 236ms	remaining: 313ms
43:	learn: 27.3925105	total: 241ms	remaining: 307ms
44:	learn: 27.2377120	total: 246ms	remaining: 300ms
45:	learn: 26.9930398	total: 250ms	remaining: 294ms
46:	learn: 26.7748687	total: 255ms	remaining: 288ms
47:	learn: 26.5856986	total: 260ms	remaining: 282ms
48:	learn: 26.4344153	total: 265ms	remaining: 276ms
49:	learn: 26.3263456	total: 271ms	remaining: 271ms
50:	learn: 26.2048412	total: 275ms	remaining: 265ms
51:	learn: 26.0608546	total: 280ms	remaining: 259ms
52:	learn: 25.9428146	total: 285ms	remaining: 253ms
53:	learn: 25.7578029	total: 295ms	remaining: 251ms
54:	learn: 25.5696792	total: 303ms	remaining: 248ms
55:	learn: 25.3291935	total: 310ms	remaining: 244ms
56:	learn: 25.1388942	total: 315ms	remaining: 238ms
57:	learn: 24.9853945	total: 321ms	remaining: 233ms
58:	learn: 24.8037785	total: 326ms	remaining: 227ms
59:	learn: 24.5326704	total: 331ms	remaining: 221ms
60:	learn: 24.2208240	total: 336ms	remaining: 215ms
61:	learn: 24.0774015	total: 341ms	remaining: 209ms
62:	learn: 23.9705824	total: 345ms	remaining: 203ms
63:	learn: 23.8877665	total: 350ms	remaining: 197ms
64:	learn: 23.7309043	total: 355ms	remaining: 191ms
65:	learn: 23.5820140	total: 359ms	remaining: 185ms
66:	learn: 23.3762012	total: 364ms	remaining: 179ms
67:	learn: 23.2317502	total: 368ms	remaining: 173ms
68:	learn: 23.0868331	total: 373ms	remaining: 168ms
69:	learn: 22.9642758	total: 378ms	remaining: 162ms
70:	learn: 22.8085341	total: 383ms	remaining: 156ms
71:	learn: 22.6834294	total: 388ms	remaining: 151ms
72:	learn: 22.6152922	total: 393ms	remaining: 145ms
73:	learn: 22.3675145	total: 398ms	remaining: 140ms
74:	learn: 22.3023338	total: 402ms	remaining: 134ms
75:	learn: 22.1866833	total: 407ms	remaining: 128ms
76:	learn: 22.0163130	total: 412ms	remaining: 123ms
77:	learn: 21.9691306	total: 416ms	remaining: 117ms
78:	learn: 21.9004647	total: 421ms	remaining: 112ms
79:	learn: 21.7931869	total: 426ms	remaining: 106ms
80:	learn: 21.6747916	total: 431ms	remaining: 101ms
81:	learn: 21.5187568	total: 435ms	remaining: 95.6ms
82:	learn: 21.3124880	total: 441ms	remaining: 90.2ms
83:	learn: 21.1979524	total: 446ms	remaining: 84.9ms
84:	learn: 21.1311130	total: 450ms	remaining: 79.5ms
85:	learn: 21.0606062	total: 455ms	remaining: 74.1ms
86:	learn: 20.9900935	total: 461ms	remaining: 68.8ms
87:	learn: 20.8908054	total: 466ms	remaining: 63.5ms
88:	learn: 20.8088525	total: 471ms	remaining: 58.2ms
89:	learn: 20.7300955	total: 476ms	remaining: 52.9ms
90:	learn: 20.6130276	total: 482ms	remaining: 47.6ms
91:	learn: 20.5437508	total: 487ms	remaining: 42.4ms
92:	learn: 20.5029426	total: 497ms	remaining: 37.4ms
93:	learn: 20.4416708	total: 510ms	remaining: 32.5ms
94:	learn: 20.3917812	total: 516ms	remaining: 27.2ms
95:	learn: 20.3305024	total: 523ms	remaining: 21.8ms
96:	learn: 20.2375704	total: 529ms	remaining: 16.4ms
97:	learn: 20.1835197	total: 535ms	remaining: 10.9ms
98:	learn: 20.1246834	total: 540ms	remaining: 5.45ms
99:	learn: 20.0506334	total: 546ms	remaining: 0us
0:	learn: 46.7334648	total: 5.31ms	remaining: 525ms
1:	learn: 46.2069876	total: 10.1ms	remaining: 496ms
2:	learn: 45.3699967	total: 15.2ms	remaining: 490ms
3:	learn: 44.6866787	total: 20.4ms	remaining: 490ms
4:	learn: 43.8536031	total: 25ms	remaining: 475ms
5:	learn: 43.4716853	total: 29.8ms	remaining: 466ms
6:	learn: 42.9929637	total: 34.6ms	remaining: 459ms
7:	learn: 42.4952169	total: 39.3ms	remaining: 452ms
8:	learn: 41.7548337	total: 43.9ms	remaining: 444ms
9:	learn: 41.1054415	total: 49.1ms	remaining: 442ms
10:	learn: 40.4827492	total: 54.1ms	remaining: 438ms
11:	learn: 39.7605907	total: 59ms	remaining: 432ms
12:	learn: 39.2532558	total: 64.5ms	remaining: 432ms
13:	learn: 38.6572753	total: 69.5ms	remaining: 427ms
14:	learn: 38.2886959	total: 74.7ms	remaining: 423ms
15:	learn: 37.7816612	total: 80.7ms	remaining: 423ms
16:	learn: 37.1680589	total: 86.2ms	remaining: 421ms
17:	learn: 36.5753004	total: 91.6ms	remaining: 417ms
18:	learn: 36.2339458	total: 96.8ms	remaining: 413ms
19:	learn: 35.9159716	total: 102ms	remaining: 410ms
20:	learn: 35.4591743	total: 109ms	remaining: 409ms
21:	learn: 34.8726070	total: 118ms	remaining: 419ms
22:	learn: 34.3903591	total: 128ms	remaining: 428ms
23:	learn: 34.1236827	total: 134ms	remaining: 424ms
24:	learn: 33.8026540	total: 141ms	remaining: 424ms
25:	learn: 33.4594822	total: 147ms	remaining: 417ms
26:	learn: 33.1338910	total: 152ms	remaining: 411ms
27:	learn: 32.8527106	total: 157ms	remaining: 404ms
28:	learn: 32.4923829	total: 162ms	remaining: 397ms
29:	learn: 32.0560533	total: 167ms	remaining: 389ms
30:	learn: 31.6614408	total: 172ms	remaining: 382ms
31:	learn: 31.2796040	total: 177ms	remaining: 375ms
32:	learn: 30.8214741	total: 181ms	remaining: 368ms
33:	learn: 30.5908694	total: 186ms	remaining: 361ms
34:	learn: 30.3637356	total: 191ms	remaining: 354ms
35:	learn: 30.0446511	total: 195ms	remaining: 347ms
36:	learn: 29.8792549	total: 200ms	remaining: 341ms
37:	learn: 29.5488457	total: 205ms	remaining: 334ms
38:	learn: 29.2808568	total: 210ms	remaining: 328ms
39:	learn: 29.0603765	total: 215ms	remaining: 322ms
40:	learn: 28.8272425	total: 219ms	remaining: 316ms
41:	learn: 28.4753580	total: 224ms	remaining: 309ms
42:	learn: 28.2963614	total: 229ms	remaining: 303ms
43:	learn: 28.1054768	total: 234ms	remaining: 298ms
44:	learn: 27.9038093	total: 239ms	remaining: 292ms
45:	learn: 27.6305487	total: 243ms	remaining: 286ms
46:	learn: 27.4457907	total: 248ms	remaining: 280ms
47:	learn: 27.1855957	total: 253ms	remaining: 274ms
48:	learn: 26.9987934	total: 258ms	remaining: 268ms
49:	learn: 26.7881067	total: 263ms	remaining: 263ms
50:	learn: 26.6385231	total: 267ms	remaining: 257ms
51:	learn: 26.4661755	total: 272ms	remaining: 251ms
52:	learn: 26.3331868	total: 277ms	remaining: 246ms
53:	learn: 26.0353476	total: 282ms	remaining: 240ms
54:	learn: 25.8257147	total: 287ms	remaining: 234ms
55:	learn: 25.5924383	total: 292ms	remaining: 229ms
56:	learn: 25.4082209	total: 297ms	remaining: 224ms
57:	learn: 25.2350104	total: 302ms	remaining: 218ms
58:	learn: 25.1789867	total: 307ms	remaining: 213ms
59:	learn: 24.9111359	total: 312ms	remaining: 208ms
60:	learn: 24.6314503	total: 317ms	remaining: 203ms
61:	learn: 24.4297999	total: 323ms	remaining: 198ms
62:	learn: 24.3126171	total: 332ms	remaining: 195ms
63:	learn: 24.1544005	total: 345ms	remaining: 194ms
64:	learn: 24.0197950	total: 351ms	remaining: 189ms
65:	learn: 23.8483087	total: 359ms	remaining: 185ms
66:	learn: 23.6624915	total: 364ms	remaining: 179ms
67:	learn: 23.5068105	total: 370ms	remaining: 174ms
68:	learn: 23.4266187	total: 376ms	remaining: 169ms
69:	learn: 23.3535388	total: 381ms	remaining: 163ms
70:	learn: 23.2477190	total: 387ms	remaining: 158ms
71:	learn: 23.1877634	total: 392ms	remaining: 153ms
72:	learn: 23.1344720	total: 398ms	remaining: 147ms
73:	learn: 22.9498234	total: 403ms	remaining: 142ms
74:	learn: 22.9068295	total: 408ms	remaining: 136ms
75:	learn: 22.7368434	total: 414ms	remaining: 131ms
76:	learn: 22.6084901	total: 420ms	remaining: 125ms
77:	learn: 22.4690295	total: 426ms	remaining: 120ms
78:	learn: 22.3970100	total: 431ms	remaining: 114ms
79:	learn: 22.3025537	total: 435ms	remaining: 109ms
80:	learn: 22.2089293	total: 440ms	remaining: 103ms
81:	learn: 22.0522107	total: 445ms	remaining: 97.7ms
82:	learn: 21.9368213	total: 450ms	remaining: 92.2ms
83:	learn: 21.7968322	total: 455ms	remaining: 86.7ms
84:	learn: 21.7416164	total: 460ms	remaining: 81.1ms
85:	learn: 21.6031099	total: 464ms	remaining: 75.6ms
86:	learn: 21.4530627	total: 469ms	remaining: 70.1ms
87:	learn: 21.3118417	total: 474ms	remaining: 64.6ms
88:	learn: 21.2760431	total: 479ms	remaining: 59.2ms
89:	learn: 21.2071350	total: 483ms	remaining: 53.7ms
90:	learn: 21.1051001	total: 488ms	remaining: 48.3ms
91:	learn: 21.0246142	total: 493ms	remaining: 42.9ms
92:	learn: 20.9834999	total: 498ms	remaining: 37.5ms
93:	learn: 20.8989393	total: 503ms	remaining: 32.1ms
94:	learn: 20.8262231	total: 508ms	remaining: 26.7ms
95:	learn: 20.7369110	total: 513ms	remaining: 21.4ms
96:	learn: 20.6409587	total: 518ms	remaining: 16ms
97:	learn: 20.5553641	total: 525ms	remaining: 10.7ms
98:	learn: 20.4317232	total: 533ms	remaining: 5.38ms
99:	learn: 20.3708681	total: 540ms	remaining: 0us
0:	learn: 27.6165091	total: 5.3ms	remaining: 525ms
1:	learn: 27.2156009	total: 9.85ms	remaining: 483ms
2:	learn: 26.8744169	total: 14.7ms	remaining: 477ms
3:	learn: 26.5530473	total: 19.3ms	remaining: 464ms
4:	learn: 26.1200739	total: 24.1ms	remaining: 458ms
5:	learn: 25.7559063	total: 28.9ms	remaining: 453ms
6:	learn: 25.3817459	total: 33.8ms	remaining: 449ms
7:	learn: 25.0780231	total: 38.8ms	remaining: 446ms
8:	learn: 24.7908836	total: 43.6ms	remaining: 441ms
9:	learn: 24.5023726	total: 48.7ms	remaining: 439ms
10:	learn: 24.2430447	total: 54ms	remaining: 437ms
11:	learn: 24.0150987	total: 59ms	remaining: 433ms
12:	learn: 23.6832732	total: 64ms	remaining: 428ms
13:	learn: 23.4512462	total: 69ms	remaining: 424ms
14:	learn: 23.2300808	total: 74.4ms	remaining: 422ms
15:	learn: 23.0198192	total: 79.4ms	remaining: 417ms
16:	learn: 22.7757356	total: 84.2ms	remaining: 411ms
17:	learn: 22.4962727	total: 89.1ms	remaining: 406ms
18:	learn: 22.2131794	total: 94ms	remaining: 401ms
19:	learn: 21.9844087	total: 98.8ms	remaining: 395ms
20:	learn: 21.6467820	total: 103ms	remaining: 389ms
21:	learn: 21.4458045	total: 109ms	remaining: 386ms
22:	learn: 21.2706627	total: 114ms	remaining: 381ms
23:	learn: 21.0770166	total: 119ms	remaining: 376ms
24:	learn: 20.8871491	total: 124ms	remaining: 372ms
25:	learn: 20.7151270	total: 129ms	remaining: 366ms
26:	learn: 20.5585218	total: 134ms	remaining: 361ms
27:	learn: 20.4091128	total: 143ms	remaining: 368ms
28:	learn: 20.2343121	total: 151ms	remaining: 371ms
29:	learn: 20.0685862	total: 160ms	remaining: 373ms
30:	learn: 19.8339661	total: 169ms	remaining: 375ms
31:	learn: 19.6811138	total: 174ms	remaining: 370ms
32:	learn: 19.4881999	total: 180ms	remaining: 366ms
33:	learn: 19.3473429	total: 186ms	remaining: 361ms
34:	learn: 19.1087185	total: 192ms	remaining: 356ms
35:	learn: 18.9817724	total: 198ms	remaining: 351ms
36:	learn: 18.8465124	total: 203ms	remaining: 346ms
37:	learn: 18.6998182	total: 209ms	remaining: 340ms
38:	learn: 18.5534881	total: 215ms	remaining: 336ms
39:	learn: 18.4221213	total: 220ms	remaining: 330ms
40:	learn: 18.3262428	total: 225ms	remaining: 324ms
41:	learn: 18.2018519	total: 231ms	remaining: 319ms
42:	learn: 18.0704402	total: 237ms	remaining: 314ms
43:	learn: 17.9674737	total: 242ms	remaining: 308ms
44:	learn: 17.8092746	total: 247ms	remaining: 302ms
45:	learn: 17.7036671	total: 253ms	remaining: 296ms
46:	learn: 17.5636023	total: 258ms	remaining: 290ms
47:	learn: 17.3922671	total: 263ms	remaining: 285ms
48:	learn: 17.2777727	total: 268ms	remaining: 279ms
49:	learn: 17.1901866	total: 273ms	remaining: 273ms
50:	learn: 17.0799264	total: 278ms	remaining: 267ms
51:	learn: 17.0022808	total: 283ms	remaining: 261ms
52:	learn: 16.9193737	total: 288ms	remaining: 255ms
53:	learn: 16.8349324	total: 293ms	remaining: 249ms
54:	learn: 16.7122802	total: 298ms	remaining: 244ms
55:	learn: 16.5736462	total: 303ms	remaining: 238ms
56:	learn: 16.4576798	total: 308ms	remaining: 232ms
57:	learn: 16.3336075	total: 313ms	remaining: 227ms
58:	learn: 16.2578113	total: 319ms	remaining: 222ms
59:	learn: 16.1586938	total: 324ms	remaining: 216ms
60:	learn: 16.0827831	total: 329ms	remaining: 211ms
61:	learn: 16.0030150	total: 335ms	remaining: 205ms
62:	learn: 15.8741662	total: 344ms	remaining: 202ms
63:	learn: 15.7533897	total: 353ms	remaining: 198ms
64:	learn: 15.6743804	total: 360ms	remaining: 194ms
65:	learn: 15.6291324	total: 365ms	remaining: 188ms
66:	learn: 15.5363523	total: 371ms	remaining: 183ms
67:	learn: 15.4675550	total: 376ms	remaining: 177ms
68:	learn: 15.3959873	total: 381ms	remaining: 171ms
69:	learn: 15.3222045	total: 386ms	remaining: 165ms
70:	learn: 15.2343883	total: 391ms	remaining: 160ms
71:	learn: 15.1891070	total: 396ms	remaining: 154ms
72:	learn: 15.1320798	total: 401ms	remaining: 148ms
73:	learn: 15.0590468	total: 406ms	remaining: 143ms
74:	learn: 14.9682726	total: 410ms	remaining: 137ms
75:	learn: 14.8868528	total: 415ms	remaining: 131ms
76:	learn: 14.8046328	total: 420ms	remaining: 125ms
77:	learn: 14.7253152	total: 425ms	remaining: 120ms
78:	learn: 14.6438207	total: 430ms	remaining: 114ms
79:	learn: 14.5350651	total: 434ms	remaining: 109ms
80:	learn: 14.4301800	total: 439ms	remaining: 103ms
81:	learn: 14.3716251	total: 444ms	remaining: 97.4ms
82:	learn: 14.3127586	total: 448ms	remaining: 91.9ms
83:	learn: 14.2685086	total: 453ms	remaining: 86.3ms
84:	learn: 14.1936111	total: 458ms	remaining: 80.9ms
85:	learn: 14.1488261	total: 463ms	remaining: 75.4ms
86:	learn: 14.0654602	total: 469ms	remaining: 70.1ms
87:	learn: 14.0026195	total: 474ms	remaining: 64.7ms
88:	learn: 13.9498697	total: 479ms	remaining: 59.2ms
89:	learn: 13.9002477	total: 485ms	remaining: 53.8ms
90:	learn: 13.8429017	total: 490ms	remaining: 48.4ms
91:	learn: 13.7892130	total: 495ms	remaining: 43ms
92:	learn: 13.7122418	total: 500ms	remaining: 37.6ms
93:	learn: 13.6752324	total: 505ms	remaining: 32.2ms
94:	learn: 13.6186680	total: 510ms	remaining: 26.9ms
95:	learn: 13.5578384	total: 518ms	remaining: 21.6ms
96:	learn: 13.5028120	total: 526ms	remaining: 16.3ms
97:	learn: 13.4306895	total: 533ms	remaining: 10.9ms
98:	learn: 13.3955813	total: 538ms	remaining: 5.43ms
99:	learn: 13.3380095	total: 544ms	remaining: 0us
0:	learn: 42.9675374	total: 6.43ms	remaining: 637ms
1:	learn: 42.2542078	total: 12.7ms	remaining: 622ms
2:	learn: 41.5532166	total: 19.6ms	remaining: 635ms
3:	learn: 40.7812113	total: 25.6ms	remaining: 614ms
4:	learn: 39.8819601	total: 31.2ms	remaining: 594ms
5:	learn: 39.0997229	total: 33.4ms	remaining: 524ms
6:	learn: 38.2185623	total: 38.5ms	remaining: 511ms
7:	learn: 37.5465645	total: 44.2ms	remaining: 508ms
8:	learn: 36.8449555	total: 50.7ms	remaining: 513ms
9:	learn: 36.0912815	total: 55.4ms	remaining: 499ms
10:	learn: 35.5776470	total: 60.3ms	remaining: 488ms
11:	learn: 34.7845329	total: 64.8ms	remaining: 475ms
12:	learn: 34.1574031	total: 69.9ms	remaining: 468ms
13:	learn: 33.4950652	total: 74.4ms	remaining: 457ms
14:	learn: 32.9343881	total: 79.2ms	remaining: 449ms
15:	learn: 32.4356238	total: 84.1ms	remaining: 441ms
16:	learn: 31.8370592	total: 89ms	remaining: 435ms
17:	learn: 31.2122644	total: 93.9ms	remaining: 428ms
18:	learn: 30.7195190	total: 98.6ms	remaining: 420ms
19:	learn: 30.1548478	total: 104ms	remaining: 414ms
20:	learn: 29.6521001	total: 106ms	remaining: 400ms
21:	learn: 29.1746988	total: 112ms	remaining: 396ms
22:	learn: 28.6492690	total: 116ms	remaining: 389ms
23:	learn: 28.1958339	total: 121ms	remaining: 384ms
24:	learn: 27.9126674	total: 126ms	remaining: 379ms
25:	learn: 27.5059508	total: 132ms	remaining: 375ms
26:	learn: 27.0869176	total: 137ms	remaining: 371ms
27:	learn: 26.6545277	total: 142ms	remaining: 366ms
28:	learn: 26.2388575	total: 147ms	remaining: 360ms
29:	learn: 25.8957708	total: 152ms	remaining: 356ms
30:	learn: 25.5045901	total: 162ms	remaining: 359ms
31:	learn: 25.2559530	total: 170ms	remaining: 361ms
32:	learn: 24.9012566	total: 177ms	remaining: 360ms
33:	learn: 24.5601820	total: 183ms	remaining: 355ms
34:	learn: 24.2407285	total: 189ms	remaining: 350ms
35:	learn: 23.9481769	total: 193ms	remaining: 344ms
36:	learn: 23.6746994	total: 198ms	remaining: 337ms
37:	learn: 23.4470352	total: 203ms	remaining: 331ms
38:	learn: 23.1678305	total: 208ms	remaining: 325ms
39:	learn: 22.9660692	total: 213ms	remaining: 319ms
40:	learn: 22.7102548	total: 217ms	remaining: 313ms
41:	learn: 22.5152447	total: 222ms	remaining: 307ms
42:	learn: 22.2967100	total: 227ms	remaining: 301ms
43:	learn: 22.0869517	total: 232ms	remaining: 295ms
44:	learn: 21.8556497	total: 236ms	remaining: 289ms
45:	learn: 21.7036804	total: 241ms	remaining: 283ms
46:	learn: 21.4792011	total: 246ms	remaining: 277ms
47:	learn: 21.2830384	total: 250ms	remaining: 271ms
48:	learn: 21.0771837	total: 255ms	remaining: 266ms
49:	learn: 20.8824468	total: 260ms	remaining: 260ms
50:	learn: 20.7250875	total: 265ms	remaining: 255ms
51:	learn: 20.5564423	total: 270ms	remaining: 249ms
52:	learn: 20.4067403	total: 275ms	remaining: 244ms
53:	learn: 20.2674808	total: 281ms	remaining: 239ms
54:	learn: 20.1394249	total: 286ms	remaining: 234ms
55:	learn: 19.9748016	total: 290ms	remaining: 228ms
56:	learn: 19.8159522	total: 295ms	remaining: 223ms
57:	learn: 19.6811073	total: 300ms	remaining: 217ms
58:	learn: 19.5083232	total: 305ms	remaining: 212ms
59:	learn: 19.3949390	total: 307ms	remaining: 204ms
60:	learn: 19.2485728	total: 311ms	remaining: 199ms
61:	learn: 19.1255523	total: 316ms	remaining: 194ms
62:	learn: 18.9423320	total: 321ms	remaining: 188ms
63:	learn: 18.7794545	total: 326ms	remaining: 183ms
64:	learn: 18.6339033	total: 331ms	remaining: 178ms
65:	learn: 18.5188724	total: 335ms	remaining: 173ms
66:	learn: 18.3398412	total: 341ms	remaining: 168ms
67:	learn: 18.2873427	total: 346ms	remaining: 163ms
68:	learn: 18.1287092	total: 351ms	remaining: 158ms
69:	learn: 18.0163474	total: 356ms	remaining: 153ms
70:	learn: 17.9428395	total: 361ms	remaining: 148ms
71:	learn: 17.7906087	total: 367ms	remaining: 143ms
72:	learn: 17.6121088	total: 376ms	remaining: 139ms
73:	learn: 17.5136572	total: 385ms	remaining: 135ms
74:	learn: 17.3837993	total: 393ms	remaining: 131ms
75:	learn: 17.3015647	total: 402ms	remaining: 127ms
76:	learn: 17.1991252	total: 408ms	remaining: 122ms
77:	learn: 17.0854777	total: 413ms	remaining: 117ms
78:	learn: 17.0308269	total: 419ms	remaining: 111ms
79:	learn: 16.9754807	total: 425ms	remaining: 106ms
80:	learn: 16.9174907	total: 431ms	remaining: 101ms
81:	learn: 16.7962603	total: 436ms	remaining: 95.8ms
82:	learn: 16.6685446	total: 442ms	remaining: 90.5ms
83:	learn: 16.5812672	total: 448ms	remaining: 85.3ms
84:	learn: 16.4896026	total: 453ms	remaining: 79.9ms
85:	learn: 16.4023414	total: 459ms	remaining: 74.7ms
86:	learn: 16.3093718	total: 465ms	remaining: 69.4ms
87:	learn: 16.2409040	total: 470ms	remaining: 64ms
88:	learn: 16.1616213	total: 474ms	remaining: 58.6ms
89:	learn: 16.0825203	total: 479ms	remaining: 53.3ms
90:	learn: 16.0204931	total: 484ms	remaining: 47.9ms
91:	learn: 15.9741267	total: 489ms	remaining: 42.5ms
92:	learn: 15.9413725	total: 494ms	remaining: 37.1ms
93:	learn: 15.8762295	total: 498ms	remaining: 31.8ms
94:	learn: 15.8165812	total: 503ms	remaining: 26.5ms
95:	learn: 15.7244343	total: 508ms	remaining: 21.2ms
96:	learn: 15.6537033	total: 513ms	remaining: 15.9ms
97:	learn: 15.6052320	total: 517ms	remaining: 10.6ms
98:	learn: 15.5434930	total: 523ms	remaining: 5.28ms
99:	learn: 15.4452106	total: 528ms	remaining: 0us
0:	learn: 46.5387280	total: 8.82ms	remaining: 874ms
1:	learn: 45.8605074	total: 14.8ms	remaining: 723ms
2:	learn: 45.2237152	total: 20.8ms	remaining: 674ms
3:	learn: 44.4158454	total: 26ms	remaining: 623ms
4:	learn: 43.7177384	total: 31ms	remaining: 590ms
5:	learn: 42.9896372	total: 36ms	remaining: 563ms
6:	learn: 42.3639431	total: 40.9ms	remaining: 543ms
7:	learn: 41.6648406	total: 45.5ms	remaining: 523ms
8:	learn: 41.0681442	total: 50.5ms	remaining: 510ms
9:	learn: 40.4478745	total: 55.5ms	remaining: 499ms
10:	learn: 40.0398470	total: 60.3ms	remaining: 488ms
11:	learn: 39.3300888	total: 65.2ms	remaining: 478ms
12:	learn: 38.9198991	total: 70.4ms	remaining: 471ms
13:	learn: 38.4022666	total: 75.4ms	remaining: 463ms
14:	learn: 37.9124629	total: 80.2ms	remaining: 454ms
15:	learn: 37.3846174	total: 85.5ms	remaining: 449ms
16:	learn: 36.8502348	total: 90.3ms	remaining: 441ms
17:	learn: 36.5079755	total: 95ms	remaining: 433ms
18:	learn: 36.1239339	total: 100ms	remaining: 427ms
19:	learn: 35.8388688	total: 105ms	remaining: 420ms
20:	learn: 35.4915710	total: 110ms	remaining: 414ms
21:	learn: 34.9483623	total: 115ms	remaining: 407ms
22:	learn: 34.6033866	total: 120ms	remaining: 402ms
23:	learn: 34.1483341	total: 125ms	remaining: 396ms
24:	learn: 33.7626484	total: 130ms	remaining: 390ms
25:	learn: 33.4160820	total: 135ms	remaining: 384ms
26:	learn: 33.0421483	total: 140ms	remaining: 378ms
27:	learn: 32.6573469	total: 145ms	remaining: 373ms
28:	learn: 32.2672417	total: 150ms	remaining: 367ms
29:	learn: 31.8257441	total: 155ms	remaining: 361ms
30:	learn: 31.3394923	total: 160ms	remaining: 357ms
31:	learn: 30.9472894	total: 166ms	remaining: 352ms
32:	learn: 30.6961423	total: 171ms	remaining: 347ms
33:	learn: 30.4670615	total: 176ms	remaining: 342ms
34:	learn: 30.1495001	total: 181ms	remaining: 337ms
35:	learn: 29.8071763	total: 186ms	remaining: 331ms
36:	learn: 29.5255984	total: 194ms	remaining: 330ms
37:	learn: 29.2236758	total: 202ms	remaining: 330ms
38:	learn: 28.9199699	total: 214ms	remaining: 335ms
39:	learn: 28.7003989	total: 222ms	remaining: 333ms
40:	learn: 28.4681160	total: 228ms	remaining: 328ms
41:	learn: 28.2692668	total: 234ms	remaining: 323ms
42:	learn: 27.9327254	total: 240ms	remaining: 317ms
43:	learn: 27.7193597	total: 246ms	remaining: 313ms
44:	learn: 27.4061006	total: 251ms	remaining: 307ms
45:	learn: 27.1840910	total: 257ms	remaining: 302ms
46:	learn: 26.8943816	total: 263ms	remaining: 296ms
47:	learn: 26.6576617	total: 268ms	remaining: 291ms
48:	learn: 26.3230094	total: 274ms	remaining: 285ms
49:	learn: 26.0488483	total: 279ms	remaining: 279ms
50:	learn: 25.7795537	total: 286ms	remaining: 275ms
51:	learn: 25.6103781	total: 293ms	remaining: 271ms
52:	learn: 25.4107383	total: 299ms	remaining: 265ms
53:	learn: 25.1757211	total: 304ms	remaining: 259ms
54:	learn: 24.8949842	total: 309ms	remaining: 253ms
55:	learn: 24.7028694	total: 314ms	remaining: 247ms
56:	learn: 24.4033555	total: 319ms	remaining: 241ms
57:	learn: 24.2109268	total: 324ms	remaining: 234ms
58:	learn: 24.0697623	total: 328ms	remaining: 228ms
59:	learn: 23.8291672	total: 334ms	remaining: 222ms
60:	learn: 23.5972471	total: 339ms	remaining: 216ms
61:	learn: 23.4241182	total: 343ms	remaining: 210ms
62:	learn: 23.2617022	total: 349ms	remaining: 205ms
63:	learn: 23.0329448	total: 353ms	remaining: 199ms
64:	learn: 22.9108081	total: 358ms	remaining: 193ms
65:	learn: 22.8001962	total: 363ms	remaining: 187ms
66:	learn: 22.6861907	total: 368ms	remaining: 181ms
67:	learn: 22.5152895	total: 374ms	remaining: 176ms
68:	learn: 22.3734214	total: 379ms	remaining: 170ms
69:	learn: 22.1840754	total: 384ms	remaining: 165ms
70:	learn: 22.0732908	total: 390ms	remaining: 159ms
71:	learn: 21.8880456	total: 400ms	remaining: 156ms
72:	learn: 21.7838784	total: 409ms	remaining: 151ms
73:	learn: 21.5532885	total: 416ms	remaining: 146ms
74:	learn: 21.3998735	total: 423ms	remaining: 141ms
75:	learn: 21.2699824	total: 428ms	remaining: 135ms
76:	learn: 21.1077652	total: 433ms	remaining: 129ms
77:	learn: 20.9759102	total: 438ms	remaining: 124ms
78:	learn: 20.7531342	total: 443ms	remaining: 118ms
79:	learn: 20.6729631	total: 448ms	remaining: 112ms
80:	learn: 20.4903474	total: 454ms	remaining: 106ms
81:	learn: 20.3708622	total: 459ms	remaining: 101ms
82:	learn: 20.2627857	total: 464ms	remaining: 94.9ms
83:	learn: 20.1335464	total: 469ms	remaining: 89.2ms
84:	learn: 20.0100864	total: 473ms	remaining: 83.5ms
85:	learn: 19.9374357	total: 478ms	remaining: 77.8ms
86:	learn: 19.8383097	total: 483ms	remaining: 72.1ms
87:	learn: 19.7804443	total: 488ms	remaining: 66.5ms
88:	learn: 19.7225631	total: 493ms	remaining: 60.9ms
89:	learn: 19.5851849	total: 498ms	remaining: 55.3ms
90:	learn: 19.5115923	total: 502ms	remaining: 49.7ms
91:	learn: 19.3986485	total: 508ms	remaining: 44.1ms
92:	learn: 19.2465728	total: 513ms	remaining: 38.6ms
93:	learn: 19.2033796	total: 517ms	remaining: 33ms
94:	learn: 19.1234096	total: 522ms	remaining: 27.5ms
95:	learn: 19.0080161	total: 527ms	remaining: 22ms
96:	learn: 18.9048698	total: 532ms	remaining: 16.4ms
97:	learn: 18.7901500	total: 536ms	remaining: 10.9ms
98:	learn: 18.6759882	total: 541ms	remaining: 5.47ms
99:	learn: 18.6254590	total: 546ms	remaining: 0us
0:	learn: 46.0359105	total: 9.97ms	remaining: 987ms
1:	learn: 45.4503059	total: 20ms	remaining: 979ms
2:	learn: 44.6478680	total: 28.5ms	remaining: 922ms
3:	learn: 43.7932387	total: 34.2ms	remaining: 821ms
4:	learn: 43.2236036	total: 39.8ms	remaining: 756ms
5:	learn: 42.4339181	total: 46.9ms	remaining: 735ms
6:	learn: 41.8906461	total: 52.3ms	remaining: 695ms
7:	learn: 41.2248707	total: 57.6ms	remaining: 662ms
8:	learn: 40.5934570	total: 63.4ms	remaining: 641ms
9:	learn: 39.9204661	total: 69.4ms	remaining: 624ms
10:	learn: 39.3972458	total: 75.4ms	remaining: 610ms
11:	learn: 38.9220493	total: 80.8ms	remaining: 592ms
12:	learn: 38.2358406	total: 85.9ms	remaining: 575ms
13:	learn: 37.7089336	total: 91.8ms	remaining: 564ms
14:	learn: 37.3714255	total: 98ms	remaining: 556ms
15:	learn: 36.8098537	total: 103ms	remaining: 540ms
16:	learn: 36.2818695	total: 108ms	remaining: 526ms
17:	learn: 35.8807734	total: 112ms	remaining: 511ms
18:	learn: 35.3850720	total: 117ms	remaining: 498ms
19:	learn: 35.0622365	total: 121ms	remaining: 486ms
20:	learn: 34.7088655	total: 126ms	remaining: 476ms
21:	learn: 34.2869861	total: 131ms	remaining: 465ms
22:	learn: 33.9798756	total: 136ms	remaining: 456ms
23:	learn: 33.6933850	total: 141ms	remaining: 447ms
24:	learn: 33.3542725	total: 146ms	remaining: 437ms
25:	learn: 33.1531104	total: 150ms	remaining: 428ms
26:	learn: 32.7581499	total: 155ms	remaining: 419ms
27:	learn: 32.4953289	total: 160ms	remaining: 412ms
28:	learn: 32.1636511	total: 165ms	remaining: 403ms
29:	learn: 31.7179908	total: 169ms	remaining: 395ms
30:	learn: 31.2828971	total: 175ms	remaining: 389ms
31:	learn: 30.8954632	total: 180ms	remaining: 382ms
32:	learn: 30.6156466	total: 185ms	remaining: 376ms
33:	learn: 30.4325331	total: 190ms	remaining: 369ms
34:	learn: 30.1680270	total: 195ms	remaining: 362ms
35:	learn: 29.8372162	total: 202ms	remaining: 358ms
36:	learn: 29.5018241	total: 210ms	remaining: 358ms
37:	learn: 29.2660228	total: 218ms	remaining: 356ms
38:	learn: 28.9172883	total: 225ms	remaining: 351ms
39:	learn: 28.7004790	total: 231ms	remaining: 347ms
40:	learn: 28.5188438	total: 236ms	remaining: 340ms
41:	learn: 28.3064887	total: 242ms	remaining: 334ms
42:	learn: 27.9584462	total: 247ms	remaining: 327ms
43:	learn: 27.6654603	total: 251ms	remaining: 320ms
44:	learn: 27.3698139	total: 256ms	remaining: 313ms
45:	learn: 27.1825629	total: 261ms	remaining: 306ms
46:	learn: 26.9938719	total: 266ms	remaining: 300ms
47:	learn: 26.7385850	total: 270ms	remaining: 293ms
48:	learn: 26.5055251	total: 275ms	remaining: 286ms
49:	learn: 26.3264840	total: 280ms	remaining: 280ms
50:	learn: 26.1314307	total: 285ms	remaining: 273ms
51:	learn: 25.9514770	total: 289ms	remaining: 267ms
52:	learn: 25.7272663	total: 294ms	remaining: 261ms
53:	learn: 25.4554234	total: 299ms	remaining: 255ms
54:	learn: 25.2133674	total: 304ms	remaining: 249ms
55:	learn: 24.9612149	total: 309ms	remaining: 243ms
56:	learn: 24.6788780	total: 313ms	remaining: 236ms
57:	learn: 24.4504703	total: 318ms	remaining: 230ms
58:	learn: 24.3261542	total: 323ms	remaining: 224ms
59:	learn: 24.1217621	total: 328ms	remaining: 218ms
60:	learn: 23.9495725	total: 333ms	remaining: 213ms
61:	learn: 23.7848565	total: 337ms	remaining: 207ms
62:	learn: 23.6627081	total: 342ms	remaining: 201ms
63:	learn: 23.4390407	total: 347ms	remaining: 195ms
64:	learn: 23.2556312	total: 352ms	remaining: 190ms
65:	learn: 23.1796337	total: 357ms	remaining: 184ms
66:	learn: 23.0431987	total: 362ms	remaining: 178ms
67:	learn: 22.9300366	total: 367ms	remaining: 173ms
68:	learn: 22.8321895	total: 372ms	remaining: 167ms
69:	learn: 22.7825840	total: 377ms	remaining: 162ms
70:	learn: 22.6907764	total: 382ms	remaining: 156ms
71:	learn: 22.5080460	total: 388ms	remaining: 151ms
72:	learn: 22.4053282	total: 393ms	remaining: 145ms
73:	learn: 22.2698085	total: 398ms	remaining: 140ms
74:	learn: 22.0951825	total: 407ms	remaining: 136ms
75:	learn: 21.9933994	total: 417ms	remaining: 132ms
76:	learn: 21.8043413	total: 424ms	remaining: 127ms
77:	learn: 21.7259032	total: 433ms	remaining: 122ms
78:	learn: 21.5625358	total: 440ms	remaining: 117ms
79:	learn: 21.4316837	total: 446ms	remaining: 111ms
80:	learn: 21.2270985	total: 451ms	remaining: 106ms
81:	learn: 21.1248573	total: 457ms	remaining: 100ms
82:	learn: 21.0879584	total: 463ms	remaining: 94.8ms
83:	learn: 20.9810177	total: 469ms	remaining: 89.3ms
84:	learn: 20.8986744	total: 475ms	remaining: 83.8ms
85:	learn: 20.8427245	total: 480ms	remaining: 78.1ms
86:	learn: 20.7158681	total: 486ms	remaining: 72.6ms
87:	learn: 20.6055502	total: 492ms	remaining: 67.1ms
88:	learn: 20.5302059	total: 497ms	remaining: 61.5ms
89:	learn: 20.3936827	total: 502ms	remaining: 55.8ms
90:	learn: 20.2756993	total: 507ms	remaining: 50.2ms
91:	learn: 20.1882826	total: 512ms	remaining: 44.5ms
92:	learn: 20.0346875	total: 517ms	remaining: 38.9ms
93:	learn: 19.9798652	total: 522ms	remaining: 33.3ms
94:	learn: 19.9020384	total: 527ms	remaining: 27.7ms
95:	learn: 19.8463755	total: 532ms	remaining: 22.1ms
96:	learn: 19.7426458	total: 536ms	remaining: 16.6ms
97:	learn: 19.6728655	total: 541ms	remaining: 11ms
98:	learn: 19.6355104	total: 546ms	remaining: 5.52ms
99:	learn: 19.6074086	total: 551ms	remaining: 0us
0:	learn: 46.7817285	total: 20.3ms	remaining: 2.01s
1:	learn: 45.9551634	total: 25ms	remaining: 1.22s
2:	learn: 45.0274369	total: 29.6ms	remaining: 958ms
3:	learn: 44.5000950	total: 34.3ms	remaining: 824ms
4:	learn: 43.8963632	total: 38.9ms	remaining: 739ms
5:	learn: 43.2314124	total: 43.5ms	remaining: 682ms
6:	learn: 42.5780140	total: 48.2ms	remaining: 640ms
7:	learn: 41.9033077	total: 52.8ms	remaining: 607ms
8:	learn: 41.3161907	total: 57.6ms	remaining: 582ms
9:	learn: 40.7747000	total: 62.3ms	remaining: 561ms
10:	learn: 40.2728122	total: 68.2ms	remaining: 552ms
11:	learn: 39.7786608	total: 73.4ms	remaining: 538ms
12:	learn: 39.0812090	total: 78.5ms	remaining: 525ms
13:	learn: 38.6205762	total: 83.7ms	remaining: 514ms
14:	learn: 38.2894236	total: 89ms	remaining: 504ms
15:	learn: 37.6906364	total: 93.9ms	remaining: 493ms
16:	learn: 37.3014849	total: 99ms	remaining: 483ms
17:	learn: 36.9268494	total: 104ms	remaining: 472ms
18:	learn: 36.6348717	total: 108ms	remaining: 462ms
19:	learn: 36.1567831	total: 114ms	remaining: 455ms
20:	learn: 35.8080754	total: 119ms	remaining: 446ms
21:	learn: 35.4288913	total: 123ms	remaining: 437ms
22:	learn: 35.0910168	total: 128ms	remaining: 428ms
23:	learn: 34.7483277	total: 132ms	remaining: 419ms
24:	learn: 34.5077203	total: 137ms	remaining: 412ms
25:	learn: 34.1830247	total: 142ms	remaining: 404ms
26:	learn: 33.7943837	total: 147ms	remaining: 396ms
27:	learn: 33.3736582	total: 151ms	remaining: 389ms
28:	learn: 32.9133996	total: 156ms	remaining: 383ms
29:	learn: 32.4361653	total: 161ms	remaining: 376ms
30:	learn: 31.9630085	total: 166ms	remaining: 369ms
31:	learn: 31.5994894	total: 171ms	remaining: 363ms
32:	learn: 31.3120059	total: 176ms	remaining: 358ms
33:	learn: 31.0991187	total: 181ms	remaining: 352ms
34:	learn: 30.8055118	total: 186ms	remaining: 346ms
35:	learn: 30.5197359	total: 191ms	remaining: 340ms
36:	learn: 30.1975315	total: 196ms	remaining: 334ms
37:	learn: 29.9797615	total: 201ms	remaining: 329ms
38:	learn: 29.6874864	total: 211ms	remaining: 331ms
39:	learn: 29.4139907	total: 222ms	remaining: 332ms
40:	learn: 29.0472151	total: 230ms	remaining: 331ms
41:	learn: 28.8356285	total: 239ms	remaining: 329ms
42:	learn: 28.5099349	total: 245ms	remaining: 325ms
43:	learn: 28.2009716	total: 251ms	remaining: 319ms
44:	learn: 27.8947534	total: 257ms	remaining: 314ms
45:	learn: 27.6149698	total: 263ms	remaining: 309ms
46:	learn: 27.4780860	total: 269ms	remaining: 303ms
47:	learn: 27.2859119	total: 275ms	remaining: 298ms
48:	learn: 27.0572191	total: 281ms	remaining: 292ms
49:	learn: 26.8916263	total: 286ms	remaining: 286ms
50:	learn: 26.6791967	total: 291ms	remaining: 280ms
51:	learn: 26.4917307	total: 297ms	remaining: 274ms
52:	learn: 26.2957036	total: 302ms	remaining: 268ms
53:	learn: 26.1116543	total: 307ms	remaining: 261ms
54:	learn: 25.8593319	total: 312ms	remaining: 255ms
55:	learn: 25.6957296	total: 317ms	remaining: 249ms
56:	learn: 25.5065213	total: 321ms	remaining: 242ms
57:	learn: 25.3525337	total: 326ms	remaining: 236ms
58:	learn: 25.2197494	total: 331ms	remaining: 230ms
59:	learn: 25.0583799	total: 336ms	remaining: 224ms
60:	learn: 24.8432659	total: 340ms	remaining: 217ms
61:	learn: 24.6585337	total: 345ms	remaining: 211ms
62:	learn: 24.5382571	total: 350ms	remaining: 205ms
63:	learn: 24.3596337	total: 354ms	remaining: 199ms
64:	learn: 24.2009033	total: 359ms	remaining: 193ms
65:	learn: 24.0964080	total: 364ms	remaining: 188ms
66:	learn: 23.9765920	total: 369ms	remaining: 182ms
67:	learn: 23.8638384	total: 374ms	remaining: 176ms
68:	learn: 23.7381861	total: 379ms	remaining: 170ms
69:	learn: 23.5620129	total: 384ms	remaining: 165ms
70:	learn: 23.4494830	total: 390ms	remaining: 159ms
71:	learn: 23.3095806	total: 395ms	remaining: 154ms
72:	learn: 23.1441767	total: 402ms	remaining: 149ms
73:	learn: 22.9983446	total: 410ms	remaining: 144ms
74:	learn: 22.8464764	total: 418ms	remaining: 139ms
75:	learn: 22.7606423	total: 424ms	remaining: 134ms
76:	learn: 22.6095905	total: 431ms	remaining: 129ms
77:	learn: 22.4430506	total: 436ms	remaining: 123ms
78:	learn: 22.2925872	total: 441ms	remaining: 117ms
79:	learn: 22.1806286	total: 446ms	remaining: 111ms
80:	learn: 22.0070525	total: 451ms	remaining: 106ms
81:	learn: 21.9114201	total: 455ms	remaining: 100ms
82:	learn: 21.7742884	total: 460ms	remaining: 94.2ms
83:	learn: 21.6372857	total: 465ms	remaining: 88.5ms
84:	learn: 21.5380397	total: 470ms	remaining: 82.9ms
85:	learn: 21.4730146	total: 474ms	remaining: 77.2ms
86:	learn: 21.3236516	total: 479ms	remaining: 71.6ms
87:	learn: 21.2512101	total: 483ms	remaining: 65.9ms
88:	learn: 21.2192883	total: 488ms	remaining: 60.3ms
89:	learn: 21.0457926	total: 493ms	remaining: 54.8ms
90:	learn: 20.9986980	total: 498ms	remaining: 49.3ms
91:	learn: 20.9040032	total: 503ms	remaining: 43.7ms
92:	learn: 20.7178547	total: 508ms	remaining: 38.2ms
93:	learn: 20.6535030	total: 512ms	remaining: 32.7ms
94:	learn: 20.5641982	total: 517ms	remaining: 27.2ms
95:	learn: 20.5355409	total: 522ms	remaining: 21.8ms
96:	learn: 20.4496493	total: 527ms	remaining: 16.3ms
97:	learn: 20.3579862	total: 531ms	remaining: 10.8ms
98:	learn: 20.2442476	total: 536ms	remaining: 5.42ms
99:	learn: 20.1075813	total: 541ms	remaining: 0us
0:	learn: 27.6506730	total: 5.03ms	remaining: 498ms
1:	learn: 27.1638793	total: 9.8ms	remaining: 480ms
2:	learn: 26.8000665	total: 18.9ms	remaining: 610ms
3:	learn: 26.4256132	total: 28.9ms	remaining: 693ms
4:	learn: 26.0088351	total: 36.6ms	remaining: 695ms
5:	learn: 25.7558298	total: 44.5ms	remaining: 697ms
6:	learn: 25.3380711	total: 49.8ms	remaining: 662ms
7:	learn: 25.0571611	total: 55ms	remaining: 632ms
8:	learn: 24.6790148	total: 59.8ms	remaining: 605ms
9:	learn: 24.3600941	total: 65.2ms	remaining: 587ms
10:	learn: 24.1105667	total: 70.3ms	remaining: 569ms
11:	learn: 23.7736542	total: 75.9ms	remaining: 557ms
12:	learn: 23.5824429	total: 81.3ms	remaining: 544ms
13:	learn: 23.2658303	total: 86.3ms	remaining: 530ms
14:	learn: 23.0061886	total: 91.5ms	remaining: 518ms
15:	learn: 22.8060389	total: 96ms	remaining: 504ms
16:	learn: 22.5899735	total: 101ms	remaining: 495ms
17:	learn: 22.3625048	total: 107ms	remaining: 487ms
18:	learn: 22.0706477	total: 112ms	remaining: 477ms
19:	learn: 21.8739394	total: 116ms	remaining: 465ms
20:	learn: 21.6143650	total: 121ms	remaining: 455ms
21:	learn: 21.4571623	total: 125ms	remaining: 444ms
22:	learn: 21.2395769	total: 129ms	remaining: 433ms
23:	learn: 20.9801795	total: 134ms	remaining: 424ms
24:	learn: 20.8036808	total: 138ms	remaining: 415ms
25:	learn: 20.6387539	total: 143ms	remaining: 406ms
26:	learn: 20.4401427	total: 147ms	remaining: 397ms
27:	learn: 20.2879575	total: 151ms	remaining: 389ms
28:	learn: 20.0538664	total: 156ms	remaining: 381ms
29:	learn: 19.8363102	total: 160ms	remaining: 374ms
30:	learn: 19.7015446	total: 164ms	remaining: 366ms
31:	learn: 19.5483114	total: 168ms	remaining: 358ms
32:	learn: 19.4163053	total: 173ms	remaining: 351ms
33:	learn: 19.2880625	total: 177ms	remaining: 344ms
34:	learn: 19.1303389	total: 181ms	remaining: 337ms
35:	learn: 18.9237448	total: 186ms	remaining: 330ms
36:	learn: 18.8142925	total: 190ms	remaining: 324ms
37:	learn: 18.6994696	total: 194ms	remaining: 317ms
38:	learn: 18.5629211	total: 199ms	remaining: 311ms
39:	learn: 18.4600917	total: 203ms	remaining: 304ms
40:	learn: 18.3567139	total: 207ms	remaining: 298ms
41:	learn: 18.2120527	total: 211ms	remaining: 292ms
42:	learn: 18.0688062	total: 216ms	remaining: 286ms
43:	learn: 17.9250181	total: 220ms	remaining: 280ms
44:	learn: 17.8399138	total: 224ms	remaining: 274ms
45:	learn: 17.6720713	total: 229ms	remaining: 269ms
46:	learn: 17.5273091	total: 234ms	remaining: 264ms
47:	learn: 17.4232814	total: 239ms	remaining: 259ms
48:	learn: 17.2957579	total: 244ms	remaining: 253ms
49:	learn: 17.1892874	total: 248ms	remaining: 248ms
50:	learn: 17.0490355	total: 253ms	remaining: 243ms
51:	learn: 16.9666450	total: 258ms	remaining: 238ms
52:	learn: 16.8600056	total: 265ms	remaining: 235ms
53:	learn: 16.7542588	total: 273ms	remaining: 232ms
54:	learn: 16.6316077	total: 280ms	remaining: 229ms
55:	learn: 16.5588112	total: 286ms	remaining: 225ms
56:	learn: 16.5010186	total: 292ms	remaining: 221ms
57:	learn: 16.4081540	total: 297ms	remaining: 215ms
58:	learn: 16.3040451	total: 301ms	remaining: 209ms
59:	learn: 16.1890564	total: 306ms	remaining: 204ms
60:	learn: 16.0977103	total: 311ms	remaining: 199ms
61:	learn: 15.9627607	total: 315ms	remaining: 193ms
62:	learn: 15.9022248	total: 320ms	remaining: 188ms
63:	learn: 15.8151881	total: 324ms	remaining: 182ms
64:	learn: 15.7353125	total: 328ms	remaining: 177ms
65:	learn: 15.6312897	total: 333ms	remaining: 171ms
66:	learn: 15.5330927	total: 337ms	remaining: 166ms
67:	learn: 15.4698681	total: 342ms	remaining: 161ms
68:	learn: 15.4108571	total: 346ms	remaining: 156ms
69:	learn: 15.3492945	total: 351ms	remaining: 150ms
70:	learn: 15.3036540	total: 356ms	remaining: 145ms
71:	learn: 15.2390833	total: 360ms	remaining: 140ms
72:	learn: 15.1556327	total: 365ms	remaining: 135ms
73:	learn: 15.1016315	total: 369ms	remaining: 130ms
74:	learn: 15.0287076	total: 374ms	remaining: 125ms
75:	learn: 14.9530572	total: 378ms	remaining: 119ms
76:	learn: 14.8965517	total: 383ms	remaining: 114ms
77:	learn: 14.8125426	total: 388ms	remaining: 110ms
78:	learn: 14.7435359	total: 393ms	remaining: 104ms
79:	learn: 14.6963163	total: 397ms	remaining: 99.2ms
80:	learn: 14.6200060	total: 401ms	remaining: 94.1ms
81:	learn: 14.5707760	total: 406ms	remaining: 89.1ms
82:	learn: 14.5053651	total: 410ms	remaining: 84ms
83:	learn: 14.4115458	total: 415ms	remaining: 79ms
84:	learn: 14.3117159	total: 419ms	remaining: 73.9ms
85:	learn: 14.2511326	total: 423ms	remaining: 68.9ms
86:	learn: 14.1372486	total: 428ms	remaining: 63.9ms
87:	learn: 14.0992301	total: 432ms	remaining: 58.9ms
88:	learn: 14.0228331	total: 437ms	remaining: 54ms
89:	learn: 13.9249836	total: 442ms	remaining: 49.1ms
90:	learn: 13.8679364	total: 446ms	remaining: 44.2ms
91:	learn: 13.8405578	total: 451ms	remaining: 39.2ms
92:	learn: 13.7711325	total: 456ms	remaining: 34.3ms
93:	learn: 13.7357019	total: 466ms	remaining: 29.7ms
94:	learn: 13.6735271	total: 481ms	remaining: 25.3ms
95:	learn: 13.5682393	total: 488ms	remaining: 20.3ms
96:	learn: 13.5342610	total: 495ms	remaining: 15.3ms
97:	learn: 13.4710034	total: 500ms	remaining: 10.2ms
98:	learn: 13.4022402	total: 506ms	remaining: 5.11ms
99:	learn: 13.3351238	total: 511ms	remaining: 0us
0:	learn: 42.9181702	total: 4.93ms	remaining: 488ms
1:	learn: 42.0286736	total: 9.18ms	remaining: 450ms
2:	learn: 41.2764568	total: 13.5ms	remaining: 437ms
3:	learn: 40.4721918	total: 17.5ms	remaining: 420ms
4:	learn: 39.8518928	total: 21.7ms	remaining: 413ms
5:	learn: 39.2645479	total: 25.8ms	remaining: 404ms
6:	learn: 38.4453704	total: 29.8ms	remaining: 396ms
7:	learn: 37.7122059	total: 34.4ms	remaining: 395ms
8:	learn: 36.9185796	total: 38.7ms	remaining: 391ms
9:	learn: 36.1668427	total: 43ms	remaining: 387ms
10:	learn: 35.5639029	total: 47.2ms	remaining: 382ms
11:	learn: 34.7724193	total: 52ms	remaining: 382ms
12:	learn: 34.3053433	total: 56.4ms	remaining: 377ms
13:	learn: 33.6561327	total: 57.6ms	remaining: 354ms
14:	learn: 33.0134042	total: 61.8ms	remaining: 350ms
15:	learn: 32.4483300	total: 66.5ms	remaining: 349ms
16:	learn: 31.8581144	total: 71.1ms	remaining: 347ms
17:	learn: 31.2858301	total: 75.4ms	remaining: 344ms
18:	learn: 30.8483018	total: 79.9ms	remaining: 341ms
19:	learn: 30.4174622	total: 84.9ms	remaining: 340ms
20:	learn: 29.8994411	total: 89.5ms	remaining: 337ms
21:	learn: 29.5045355	total: 94.1ms	remaining: 334ms
22:	learn: 28.9923519	total: 98.8ms	remaining: 331ms
23:	learn: 28.4255717	total: 104ms	remaining: 329ms
24:	learn: 28.0283139	total: 109ms	remaining: 326ms
25:	learn: 27.7434814	total: 117ms	remaining: 333ms
26:	learn: 27.2770731	total: 126ms	remaining: 340ms
27:	learn: 26.8928270	total: 133ms	remaining: 341ms
28:	learn: 26.4282671	total: 139ms	remaining: 339ms
29:	learn: 26.0272764	total: 144ms	remaining: 335ms
30:	learn: 25.7579312	total: 149ms	remaining: 331ms
31:	learn: 25.4542434	total: 153ms	remaining: 326ms
32:	learn: 25.1232564	total: 158ms	remaining: 320ms
33:	learn: 24.8110795	total: 162ms	remaining: 315ms
34:	learn: 24.5077579	total: 166ms	remaining: 309ms
35:	learn: 24.1909000	total: 171ms	remaining: 304ms
36:	learn: 23.8719468	total: 175ms	remaining: 298ms
37:	learn: 23.5764366	total: 176ms	remaining: 287ms
38:	learn: 23.3468086	total: 180ms	remaining: 282ms
39:	learn: 23.0908771	total: 185ms	remaining: 277ms
40:	learn: 22.8580876	total: 190ms	remaining: 273ms
41:	learn: 22.6060825	total: 194ms	remaining: 268ms
42:	learn: 22.4125407	total: 198ms	remaining: 263ms
43:	learn: 22.1990617	total: 203ms	remaining: 258ms
44:	learn: 21.9716164	total: 207ms	remaining: 253ms
45:	learn: 21.8360935	total: 212ms	remaining: 248ms
46:	learn: 21.6169256	total: 216ms	remaining: 243ms
47:	learn: 21.4620612	total: 220ms	remaining: 238ms
48:	learn: 21.2894194	total: 224ms	remaining: 234ms
49:	learn: 21.1066266	total: 228ms	remaining: 228ms
50:	learn: 20.9484898	total: 233ms	remaining: 224ms
51:	learn: 20.7195338	total: 237ms	remaining: 219ms
52:	learn: 20.4899740	total: 241ms	remaining: 214ms
53:	learn: 20.3356583	total: 246ms	remaining: 209ms
54:	learn: 20.0754393	total: 250ms	remaining: 204ms
55:	learn: 19.9199159	total: 254ms	remaining: 200ms
56:	learn: 19.7761128	total: 258ms	remaining: 195ms
57:	learn: 19.6533060	total: 263ms	remaining: 190ms
58:	learn: 19.5113942	total: 267ms	remaining: 186ms
59:	learn: 19.3985022	total: 272ms	remaining: 181ms
60:	learn: 19.2683443	total: 276ms	remaining: 176ms
61:	learn: 19.1460824	total: 280ms	remaining: 172ms
62:	learn: 19.0042655	total: 285ms	remaining: 167ms
63:	learn: 18.8720873	total: 290ms	remaining: 163ms
64:	learn: 18.7183888	total: 294ms	remaining: 158ms
65:	learn: 18.5472360	total: 299ms	remaining: 154ms
66:	learn: 18.3976642	total: 303ms	remaining: 149ms
67:	learn: 18.2282851	total: 308ms	remaining: 145ms
68:	learn: 18.1469157	total: 316ms	remaining: 142ms
69:	learn: 18.0649494	total: 324ms	remaining: 139ms
70:	learn: 17.9485405	total: 335ms	remaining: 137ms
71:	learn: 17.8460261	total: 343ms	remaining: 133ms
72:	learn: 17.7679843	total: 349ms	remaining: 129ms
73:	learn: 17.5989290	total: 354ms	remaining: 125ms
74:	learn: 17.4381322	total: 360ms	remaining: 120ms
75:	learn: 17.3370886	total: 366ms	remaining: 115ms
76:	learn: 17.2675308	total: 371ms	remaining: 111ms
77:	learn: 17.1946430	total: 376ms	remaining: 106ms
78:	learn: 17.0923725	total: 382ms	remaining: 101ms
79:	learn: 17.0537265	total: 387ms	remaining: 96.8ms
80:	learn: 16.9456831	total: 392ms	remaining: 92ms
81:	learn: 16.8457353	total: 398ms	remaining: 87.3ms
82:	learn: 16.7469310	total: 403ms	remaining: 82.6ms
83:	learn: 16.6679953	total: 408ms	remaining: 77.7ms
84:	learn: 16.6274189	total: 412ms	remaining: 72.8ms
85:	learn: 16.5516530	total: 417ms	remaining: 67.9ms
86:	learn: 16.4886066	total: 422ms	remaining: 63ms
87:	learn: 16.3947859	total: 426ms	remaining: 58.1ms
88:	learn: 16.3406495	total: 431ms	remaining: 53.3ms
89:	learn: 16.3019195	total: 435ms	remaining: 48.4ms
90:	learn: 16.1860681	total: 440ms	remaining: 43.5ms
91:	learn: 16.1282812	total: 444ms	remaining: 38.6ms
92:	learn: 16.0303652	total: 448ms	remaining: 33.8ms
93:	learn: 15.9561692	total: 453ms	remaining: 28.9ms
94:	learn: 15.8733994	total: 457ms	remaining: 24ms
95:	learn: 15.8108833	total: 461ms	remaining: 19.2ms
96:	learn: 15.7606004	total: 466ms	remaining: 14.4ms
97:	learn: 15.6984664	total: 470ms	remaining: 9.59ms
98:	learn: 15.6223632	total: 475ms	remaining: 4.79ms
99:	learn: 15.5671136	total: 479ms	remaining: 0us
0:	learn: 46.4788614	total: 2.54ms	remaining: 252ms
1:	learn: 45.7608372	total: 7.11ms	remaining: 348ms
2:	learn: 44.8825004	total: 11.7ms	remaining: 378ms
3:	learn: 44.0362738	total: 15.8ms	remaining: 379ms
4:	learn: 43.2086374	total: 20.1ms	remaining: 381ms
5:	learn: 42.5835773	total: 24.2ms	remaining: 380ms
6:	learn: 41.9673269	total: 28.6ms	remaining: 381ms
7:	learn: 41.4748717	total: 32.9ms	remaining: 378ms
8:	learn: 40.7129183	total: 37.2ms	remaining: 376ms
9:	learn: 39.8900884	total: 41.7ms	remaining: 375ms
10:	learn: 39.4142193	total: 46.2ms	remaining: 374ms
11:	learn: 38.8645613	total: 50.3ms	remaining: 369ms
12:	learn: 38.2394731	total: 54.7ms	remaining: 366ms
13:	learn: 37.6834515	total: 59.1ms	remaining: 363ms
14:	learn: 37.0673507	total: 63.3ms	remaining: 359ms
15:	learn: 36.4728340	total: 67.5ms	remaining: 354ms
16:	learn: 36.0489086	total: 71.6ms	remaining: 349ms
17:	learn: 35.4744141	total: 75.9ms	remaining: 346ms
18:	learn: 35.0106021	total: 80.4ms	remaining: 343ms
19:	learn: 34.5586053	total: 84.8ms	remaining: 339ms
20:	learn: 34.1308223	total: 89.2ms	remaining: 335ms
21:	learn: 33.7701450	total: 93.3ms	remaining: 331ms
22:	learn: 33.4425444	total: 97.5ms	remaining: 326ms
23:	learn: 33.0296412	total: 102ms	remaining: 322ms
24:	learn: 32.6359803	total: 106ms	remaining: 319ms
25:	learn: 32.1846182	total: 111ms	remaining: 315ms
26:	learn: 31.7620230	total: 115ms	remaining: 310ms
27:	learn: 31.4669337	total: 119ms	remaining: 306ms
28:	learn: 31.0792062	total: 123ms	remaining: 302ms
29:	learn: 30.7970537	total: 128ms	remaining: 298ms
30:	learn: 30.4952215	total: 132ms	remaining: 295ms
31:	learn: 30.2845344	total: 137ms	remaining: 291ms
32:	learn: 29.9592732	total: 142ms	remaining: 288ms
33:	learn: 29.6798596	total: 146ms	remaining: 284ms
34:	learn: 29.3368905	total: 151ms	remaining: 281ms
35:	learn: 29.0621238	total: 156ms	remaining: 277ms
36:	learn: 28.6445375	total: 160ms	remaining: 272ms
37:	learn: 28.2418096	total: 165ms	remaining: 269ms
38:	learn: 27.9495390	total: 170ms	remaining: 266ms
39:	learn: 27.6958160	total: 176ms	remaining: 265ms
40:	learn: 27.4811189	total: 183ms	remaining: 264ms
41:	learn: 27.1494420	total: 190ms	remaining: 262ms
42:	learn: 26.8388873	total: 197ms	remaining: 261ms
43:	learn: 26.5721300	total: 202ms	remaining: 257ms
44:	learn: 26.3384738	total: 207ms	remaining: 253ms
45:	learn: 26.1894781	total: 215ms	remaining: 252ms
46:	learn: 25.9580198	total: 220ms	remaining: 248ms
47:	learn: 25.7897985	total: 226ms	remaining: 244ms
48:	learn: 25.6000271	total: 231ms	remaining: 240ms
49:	learn: 25.4130873	total: 236ms	remaining: 236ms
50:	learn: 25.1699061	total: 241ms	remaining: 232ms
51:	learn: 24.9324449	total: 246ms	remaining: 227ms
52:	learn: 24.7729152	total: 252ms	remaining: 223ms
53:	learn: 24.5026563	total: 257ms	remaining: 219ms
54:	learn: 24.2332627	total: 263ms	remaining: 215ms
55:	learn: 23.9611984	total: 268ms	remaining: 211ms
56:	learn: 23.7862603	total: 274ms	remaining: 207ms
57:	learn: 23.6318154	total: 279ms	remaining: 202ms
58:	learn: 23.4443306	total: 284ms	remaining: 197ms
59:	learn: 23.2581425	total: 289ms	remaining: 193ms
60:	learn: 23.0549901	total: 295ms	remaining: 189ms
61:	learn: 22.8666218	total: 300ms	remaining: 184ms
62:	learn: 22.6956739	total: 305ms	remaining: 179ms
63:	learn: 22.5068544	total: 309ms	remaining: 174ms
64:	learn: 22.1859147	total: 313ms	remaining: 169ms
65:	learn: 22.0462043	total: 318ms	remaining: 164ms
66:	learn: 21.9329563	total: 323ms	remaining: 159ms
67:	learn: 21.8029736	total: 327ms	remaining: 154ms
68:	learn: 21.6861091	total: 331ms	remaining: 149ms
69:	learn: 21.4838140	total: 336ms	remaining: 144ms
70:	learn: 21.3548921	total: 348ms	remaining: 142ms
71:	learn: 21.2244517	total: 353ms	remaining: 137ms
72:	learn: 21.0702958	total: 358ms	remaining: 133ms
73:	learn: 20.9224662	total: 363ms	remaining: 128ms
74:	learn: 20.8150357	total: 369ms	remaining: 123ms
75:	learn: 20.6962739	total: 374ms	remaining: 118ms
76:	learn: 20.5809258	total: 379ms	remaining: 113ms
77:	learn: 20.4735470	total: 384ms	remaining: 108ms
78:	learn: 20.3778167	total: 388ms	remaining: 103ms
79:	learn: 20.2211268	total: 395ms	remaining: 98.7ms
80:	learn: 20.1478678	total: 402ms	remaining: 94.3ms
81:	learn: 20.1032967	total: 409ms	remaining: 89.8ms
82:	learn: 19.9236300	total: 416ms	remaining: 85.2ms
83:	learn: 19.8151745	total: 421ms	remaining: 80.2ms
84:	learn: 19.7099856	total: 427ms	remaining: 75.3ms
85:	learn: 19.6264833	total: 431ms	remaining: 70.1ms
86:	learn: 19.4916361	total: 435ms	remaining: 65.1ms
87:	learn: 19.4050529	total: 440ms	remaining: 60ms
88:	learn: 19.2547065	total: 444ms	remaining: 54.9ms
89:	learn: 19.1610225	total: 448ms	remaining: 49.8ms
90:	learn: 19.0898958	total: 453ms	remaining: 44.8ms
91:	learn: 19.0489664	total: 457ms	remaining: 39.7ms
92:	learn: 18.9206240	total: 462ms	remaining: 34.7ms
93:	learn: 18.8636239	total: 466ms	remaining: 29.7ms
94:	learn: 18.8126187	total: 470ms	remaining: 24.7ms
95:	learn: 18.7579275	total: 474ms	remaining: 19.7ms
96:	learn: 18.6382753	total: 478ms	remaining: 14.8ms
97:	learn: 18.5397334	total: 482ms	remaining: 9.85ms
98:	learn: 18.4375951	total: 487ms	remaining: 4.91ms
99:	learn: 18.4033755	total: 491ms	remaining: 0us
0:	learn: 46.1068821	total: 2.21ms	remaining: 219ms
1:	learn: 45.3970261	total: 7.03ms	remaining: 345ms
2:	learn: 44.8732696	total: 11.5ms	remaining: 372ms
3:	learn: 44.1290184	total: 15.8ms	remaining: 379ms
4:	learn: 43.3290271	total: 20.2ms	remaining: 384ms
5:	learn: 42.7069090	total: 24.5ms	remaining: 383ms
6:	learn: 42.0572971	total: 28.8ms	remaining: 383ms
7:	learn: 41.4797924	total: 33.9ms	remaining: 389ms
8:	learn: 41.0023122	total: 38.8ms	remaining: 392ms
9:	learn: 40.5330570	total: 43.4ms	remaining: 391ms
10:	learn: 39.9726545	total: 48.1ms	remaining: 389ms
11:	learn: 39.3044053	total: 52.8ms	remaining: 387ms
12:	learn: 38.8169735	total: 57.1ms	remaining: 382ms
13:	learn: 38.2458761	total: 62.2ms	remaining: 382ms
14:	learn: 37.6280321	total: 70.3ms	remaining: 398ms
15:	learn: 37.0800610	total: 80.6ms	remaining: 423ms
16:	learn: 36.5489363	total: 88.2ms	remaining: 431ms
17:	learn: 36.0981456	total: 106ms	remaining: 484ms
18:	learn: 35.6956274	total: 112ms	remaining: 478ms
19:	learn: 35.1471999	total: 118ms	remaining: 470ms
20:	learn: 34.6235408	total: 123ms	remaining: 464ms
21:	learn: 34.1987018	total: 128ms	remaining: 455ms
22:	learn: 33.8985062	total: 134ms	remaining: 447ms
23:	learn: 33.3869017	total: 140ms	remaining: 442ms
24:	learn: 32.9100550	total: 144ms	remaining: 433ms
25:	learn: 32.4156208	total: 150ms	remaining: 427ms
26:	learn: 31.9320493	total: 155ms	remaining: 420ms
27:	learn: 31.5711468	total: 160ms	remaining: 413ms
28:	learn: 31.2404433	total: 164ms	remaining: 403ms
29:	learn: 30.8807946	total: 169ms	remaining: 394ms
30:	learn: 30.5948438	total: 173ms	remaining: 386ms
31:	learn: 30.3885560	total: 178ms	remaining: 378ms
32:	learn: 30.0625101	total: 182ms	remaining: 369ms
33:	learn: 29.9113114	total: 186ms	remaining: 361ms
34:	learn: 29.6983470	total: 190ms	remaining: 353ms
35:	learn: 29.4775849	total: 195ms	remaining: 346ms
36:	learn: 29.0538055	total: 199ms	remaining: 338ms
37:	learn: 28.6792318	total: 203ms	remaining: 331ms
38:	learn: 28.4231383	total: 207ms	remaining: 324ms
39:	learn: 28.1078565	total: 211ms	remaining: 317ms
40:	learn: 27.9079179	total: 216ms	remaining: 311ms
41:	learn: 27.6721506	total: 220ms	remaining: 304ms
42:	learn: 27.4228033	total: 224ms	remaining: 297ms
43:	learn: 27.1740534	total: 229ms	remaining: 291ms
44:	learn: 26.8584071	total: 233ms	remaining: 285ms
45:	learn: 26.6902083	total: 238ms	remaining: 280ms
46:	learn: 26.4855335	total: 243ms	remaining: 274ms
47:	learn: 26.2730822	total: 248ms	remaining: 268ms
48:	learn: 26.1058689	total: 253ms	remaining: 263ms
49:	learn: 25.8587318	total: 258ms	remaining: 258ms
50:	learn: 25.7558005	total: 266ms	remaining: 256ms
51:	learn: 25.5846925	total: 273ms	remaining: 252ms
52:	learn: 25.4249887	total: 280ms	remaining: 248ms
53:	learn: 25.1911054	total: 285ms	remaining: 243ms
54:	learn: 25.0544755	total: 290ms	remaining: 238ms
55:	learn: 24.8874006	total: 295ms	remaining: 232ms
56:	learn: 24.7736279	total: 299ms	remaining: 226ms
57:	learn: 24.6156255	total: 303ms	remaining: 219ms
58:	learn: 24.3962421	total: 307ms	remaining: 213ms
59:	learn: 24.2685129	total: 312ms	remaining: 208ms
60:	learn: 24.1874096	total: 318ms	remaining: 203ms
61:	learn: 24.0394287	total: 323ms	remaining: 198ms
62:	learn: 23.9281768	total: 327ms	remaining: 192ms
63:	learn: 23.7423900	total: 331ms	remaining: 186ms
64:	learn: 23.6015209	total: 336ms	remaining: 181ms
65:	learn: 23.4677943	total: 340ms	remaining: 175ms
66:	learn: 23.3215256	total: 344ms	remaining: 169ms
67:	learn: 23.1869360	total: 349ms	remaining: 164ms
68:	learn: 22.9691180	total: 353ms	remaining: 158ms
69:	learn: 22.7531657	total: 357ms	remaining: 153ms
70:	learn: 22.6133477	total: 361ms	remaining: 147ms
71:	learn: 22.3452758	total: 366ms	remaining: 142ms
72:	learn: 22.2065350	total: 369ms	remaining: 137ms
73:	learn: 22.1071155	total: 373ms	remaining: 131ms
74:	learn: 21.9740686	total: 377ms	remaining: 126ms
75:	learn: 21.8892033	total: 382ms	remaining: 121ms
76:	learn: 21.8267882	total: 386ms	remaining: 115ms
77:	learn: 21.7423479	total: 390ms	remaining: 110ms
78:	learn: 21.6242075	total: 394ms	remaining: 105ms
79:	learn: 21.5016910	total: 399ms	remaining: 99.6ms
80:	learn: 21.4806623	total: 399ms	remaining: 93.7ms
81:	learn: 21.3166637	total: 404ms	remaining: 88.6ms
82:	learn: 21.2222534	total: 408ms	remaining: 83.6ms
83:	learn: 21.1535708	total: 412ms	remaining: 78.6ms
84:	learn: 21.0858902	total: 417ms	remaining: 73.5ms
85:	learn: 20.9206003	total: 421ms	remaining: 68.5ms
86:	learn: 20.8674695	total: 426ms	remaining: 63.6ms
87:	learn: 20.8089875	total: 430ms	remaining: 58.6ms
88:	learn: 20.7085401	total: 435ms	remaining: 53.7ms
89:	learn: 20.5513468	total: 439ms	remaining: 48.8ms
90:	learn: 20.4586742	total: 444ms	remaining: 43.9ms
91:	learn: 20.3932149	total: 448ms	remaining: 39ms
92:	learn: 20.3000895	total: 453ms	remaining: 34.1ms
93:	learn: 20.2254009	total: 458ms	remaining: 29.2ms
94:	learn: 20.1750050	total: 462ms	remaining: 24.3ms
95:	learn: 20.0715579	total: 467ms	remaining: 19.5ms
96:	learn: 19.9920082	total: 474ms	remaining: 14.7ms
97:	learn: 19.9664401	total: 482ms	remaining: 9.83ms
98:	learn: 19.8689673	total: 494ms	remaining: 4.99ms
99:	learn: 19.7537356	total: 500ms	remaining: 0us
0:	learn: 46.8832143	total: 5.65ms	remaining: 559ms
1:	learn: 45.8700349	total: 10.4ms	remaining: 512ms
2:	learn: 45.0546867	total: 15.8ms	remaining: 512ms
3:	learn: 44.2829439	total: 21.5ms	remaining: 516ms
4:	learn: 43.4609042	total: 26.8ms	remaining: 510ms
5:	learn: 42.6754991	total: 31ms	remaining: 486ms
6:	learn: 41.9234935	total: 35.6ms	remaining: 473ms
7:	learn: 41.3987518	total: 40.2ms	remaining: 462ms
8:	learn: 40.6625066	total: 44.5ms	remaining: 450ms
9:	learn: 40.0029561	total: 48.9ms	remaining: 440ms
10:	learn: 39.3897033	total: 52.8ms	remaining: 427ms
11:	learn: 38.7741453	total: 57.5ms	remaining: 422ms
12:	learn: 38.1201100	total: 62.2ms	remaining: 417ms
13:	learn: 37.5129454	total: 67ms	remaining: 411ms
14:	learn: 37.2062206	total: 71.5ms	remaining: 405ms
15:	learn: 36.6831741	total: 76ms	remaining: 399ms
16:	learn: 36.2902788	total: 80.6ms	remaining: 394ms
17:	learn: 35.7639930	total: 85.1ms	remaining: 387ms
18:	learn: 35.2580953	total: 89.9ms	remaining: 383ms
19:	learn: 34.7809739	total: 94.9ms	remaining: 379ms
20:	learn: 34.1330433	total: 99ms	remaining: 373ms
21:	learn: 33.7302219	total: 103ms	remaining: 366ms
22:	learn: 33.3502495	total: 108ms	remaining: 363ms
23:	learn: 33.0067804	total: 113ms	remaining: 359ms
24:	learn: 32.6897855	total: 118ms	remaining: 354ms
25:	learn: 32.4361119	total: 123ms	remaining: 349ms
26:	learn: 32.1278981	total: 128ms	remaining: 345ms
27:	learn: 31.7863721	total: 132ms	remaining: 340ms
28:	learn: 31.4791450	total: 138ms	remaining: 337ms
29:	learn: 31.1760161	total: 147ms	remaining: 343ms
30:	learn: 30.9238888	total: 155ms	remaining: 346ms
31:	learn: 30.5500905	total: 162ms	remaining: 344ms
32:	learn: 30.3078126	total: 167ms	remaining: 340ms
33:	learn: 30.0480921	total: 173ms	remaining: 335ms
34:	learn: 29.8623884	total: 177ms	remaining: 329ms
35:	learn: 29.5991038	total: 182ms	remaining: 324ms
36:	learn: 29.4061161	total: 187ms	remaining: 318ms
37:	learn: 29.0269515	total: 191ms	remaining: 312ms
38:	learn: 28.8224959	total: 196ms	remaining: 307ms
39:	learn: 28.6417843	total: 201ms	remaining: 301ms
40:	learn: 28.3633368	total: 205ms	remaining: 296ms
41:	learn: 28.0200246	total: 210ms	remaining: 290ms
42:	learn: 27.7221254	total: 215ms	remaining: 285ms
43:	learn: 27.5105818	total: 220ms	remaining: 280ms
44:	learn: 27.3551010	total: 224ms	remaining: 274ms
45:	learn: 27.0787522	total: 229ms	remaining: 269ms
46:	learn: 26.8726317	total: 234ms	remaining: 264ms
47:	learn: 26.8003277	total: 239ms	remaining: 259ms
48:	learn: 26.5493785	total: 243ms	remaining: 253ms
49:	learn: 26.3699550	total: 249ms	remaining: 249ms
50:	learn: 26.1519631	total: 253ms	remaining: 243ms
51:	learn: 25.9277325	total: 258ms	remaining: 239ms
52:	learn: 25.7286035	total: 264ms	remaining: 234ms
53:	learn: 25.4999193	total: 269ms	remaining: 229ms
54:	learn: 25.3434703	total: 274ms	remaining: 224ms
55:	learn: 25.1497545	total: 278ms	remaining: 219ms
56:	learn: 24.9498143	total: 283ms	remaining: 214ms
57:	learn: 24.6509390	total: 288ms	remaining: 209ms
58:	learn: 24.5576144	total: 293ms	remaining: 204ms
59:	learn: 24.4265144	total: 298ms	remaining: 199ms
60:	learn: 24.3100706	total: 303ms	remaining: 194ms
61:	learn: 24.1727952	total: 308ms	remaining: 189ms
62:	learn: 24.0478558	total: 313ms	remaining: 184ms
63:	learn: 23.9124577	total: 318ms	remaining: 179ms
64:	learn: 23.7703718	total: 323ms	remaining: 174ms
65:	learn: 23.5975027	total: 327ms	remaining: 169ms
66:	learn: 23.4318077	total: 332ms	remaining: 164ms
67:	learn: 23.3099691	total: 337ms	remaining: 159ms
68:	learn: 23.1947982	total: 347ms	remaining: 156ms
69:	learn: 23.0260174	total: 357ms	remaining: 153ms
70:	learn: 22.8523100	total: 365ms	remaining: 149ms
71:	learn: 22.8028534	total: 373ms	remaining: 145ms
72:	learn: 22.6880658	total: 378ms	remaining: 140ms
73:	learn: 22.5956809	total: 384ms	remaining: 135ms
74:	learn: 22.4692932	total: 389ms	remaining: 130ms
75:	learn: 22.2863504	total: 394ms	remaining: 125ms
76:	learn: 22.1911237	total: 399ms	remaining: 119ms
77:	learn: 22.1098391	total: 405ms	remaining: 114ms
78:	learn: 22.0182738	total: 410ms	remaining: 109ms
79:	learn: 21.9306746	total: 415ms	remaining: 104ms
80:	learn: 21.7508233	total: 421ms	remaining: 98.7ms
81:	learn: 21.7108446	total: 426ms	remaining: 93.5ms
82:	learn: 21.5931852	total: 432ms	remaining: 88.4ms
83:	learn: 21.4480361	total: 437ms	remaining: 83.3ms
84:	learn: 21.3092119	total: 442ms	remaining: 77.9ms
85:	learn: 21.2605557	total: 446ms	remaining: 72.6ms
86:	learn: 21.1123597	total: 450ms	remaining: 67.2ms
87:	learn: 21.0115642	total: 454ms	remaining: 61.9ms
88:	learn: 20.9389040	total: 459ms	remaining: 56.7ms
89:	learn: 20.8300300	total: 463ms	remaining: 51.5ms
90:	learn: 20.7159733	total: 468ms	remaining: 46.3ms
91:	learn: 20.6282090	total: 472ms	remaining: 41ms
92:	learn: 20.5164529	total: 477ms	remaining: 35.9ms
93:	learn: 20.4692032	total: 481ms	remaining: 30.7ms
94:	learn: 20.3768451	total: 485ms	remaining: 25.5ms
95:	learn: 20.2808056	total: 489ms	remaining: 20.4ms
96:	learn: 20.2082089	total: 494ms	remaining: 15.3ms
97:	learn: 20.1698768	total: 499ms	remaining: 10.2ms
98:	learn: 20.1048816	total: 503ms	remaining: 5.08ms
99:	learn: 20.0086159	total: 507ms	remaining: 0us
0:	learn: 27.6165091	total: 10.3ms	remaining: 1.02s
1:	learn: 27.2156009	total: 19ms	remaining: 931ms
2:	learn: 26.8744169	total: 26.4ms	remaining: 853ms
3:	learn: 26.5530473	total: 33.3ms	remaining: 799ms
4:	learn: 26.1200739	total: 38.6ms	remaining: 733ms
5:	learn: 25.7559063	total: 43.6ms	remaining: 682ms
6:	learn: 25.3817459	total: 48.4ms	remaining: 643ms
7:	learn: 25.0780231	total: 53.4ms	remaining: 614ms
8:	learn: 24.7908836	total: 58.3ms	remaining: 590ms
9:	learn: 24.5023726	total: 63.1ms	remaining: 568ms
10:	learn: 24.2430447	total: 68ms	remaining: 550ms
11:	learn: 24.0150987	total: 72.8ms	remaining: 534ms
12:	learn: 23.6832732	total: 77.5ms	remaining: 518ms
13:	learn: 23.4512462	total: 82.1ms	remaining: 504ms
14:	learn: 23.2300808	total: 86.8ms	remaining: 492ms
15:	learn: 23.0198192	total: 91.8ms	remaining: 482ms
16:	learn: 22.7757356	total: 96.7ms	remaining: 472ms
17:	learn: 22.4962727	total: 101ms	remaining: 462ms
18:	learn: 22.2131794	total: 106ms	remaining: 452ms
19:	learn: 21.9844087	total: 111ms	remaining: 444ms
20:	learn: 21.6467820	total: 116ms	remaining: 435ms
21:	learn: 21.4458045	total: 120ms	remaining: 426ms
22:	learn: 21.2706627	total: 125ms	remaining: 418ms
23:	learn: 21.0770166	total: 130ms	remaining: 410ms
24:	learn: 20.8871491	total: 134ms	remaining: 402ms
25:	learn: 20.7151270	total: 139ms	remaining: 395ms
26:	learn: 20.5585218	total: 144ms	remaining: 389ms
27:	learn: 20.4091128	total: 149ms	remaining: 382ms
28:	learn: 20.2343121	total: 153ms	remaining: 375ms
29:	learn: 20.0685862	total: 158ms	remaining: 369ms
30:	learn: 19.8339661	total: 164ms	remaining: 364ms
31:	learn: 19.6811138	total: 168ms	remaining: 358ms
32:	learn: 19.4881999	total: 173ms	remaining: 351ms
33:	learn: 19.3473429	total: 178ms	remaining: 346ms
34:	learn: 19.1087185	total: 184ms	remaining: 341ms
35:	learn: 18.9817724	total: 189ms	remaining: 335ms
36:	learn: 18.8465124	total: 194ms	remaining: 330ms
37:	learn: 18.6998182	total: 199ms	remaining: 325ms
38:	learn: 18.5534881	total: 204ms	remaining: 319ms
39:	learn: 18.4221213	total: 213ms	remaining: 319ms
40:	learn: 18.3262428	total: 221ms	remaining: 318ms
41:	learn: 18.2018519	total: 231ms	remaining: 319ms
42:	learn: 18.0704402	total: 239ms	remaining: 317ms
43:	learn: 17.9674737	total: 245ms	remaining: 312ms
44:	learn: 17.8092746	total: 251ms	remaining: 306ms
45:	learn: 17.7036671	total: 257ms	remaining: 301ms
46:	learn: 17.5636023	total: 262ms	remaining: 296ms
47:	learn: 17.3922671	total: 268ms	remaining: 291ms
48:	learn: 17.2777727	total: 274ms	remaining: 285ms
49:	learn: 17.1901866	total: 280ms	remaining: 280ms
50:	learn: 17.0799264	total: 285ms	remaining: 274ms
51:	learn: 17.0022808	total: 291ms	remaining: 268ms
52:	learn: 16.9193737	total: 296ms	remaining: 262ms
53:	learn: 16.8349324	total: 301ms	remaining: 256ms
54:	learn: 16.7122802	total: 315ms	remaining: 258ms
55:	learn: 16.5736462	total: 320ms	remaining: 251ms
56:	learn: 16.4576798	total: 325ms	remaining: 245ms
57:	learn: 16.3336075	total: 330ms	remaining: 239ms
58:	learn: 16.2578113	total: 335ms	remaining: 233ms
59:	learn: 16.1586938	total: 339ms	remaining: 226ms
60:	learn: 16.0827831	total: 344ms	remaining: 220ms
61:	learn: 16.0030150	total: 349ms	remaining: 214ms
62:	learn: 15.8741662	total: 354ms	remaining: 208ms
63:	learn: 15.7533897	total: 359ms	remaining: 202ms
64:	learn: 15.6743804	total: 364ms	remaining: 196ms
65:	learn: 15.6291324	total: 368ms	remaining: 190ms
66:	learn: 15.5363523	total: 373ms	remaining: 184ms
67:	learn: 15.4675550	total: 378ms	remaining: 178ms
68:	learn: 15.3959873	total: 384ms	remaining: 172ms
69:	learn: 15.3222045	total: 392ms	remaining: 168ms
70:	learn: 15.2343883	total: 399ms	remaining: 163ms
71:	learn: 15.1891070	total: 407ms	remaining: 158ms
72:	learn: 15.1320798	total: 412ms	remaining: 153ms
73:	learn: 15.0590468	total: 418ms	remaining: 147ms
74:	learn: 14.9682726	total: 439ms	remaining: 146ms
75:	learn: 14.8868528	total: 444ms	remaining: 140ms
76:	learn: 14.8046328	total: 449ms	remaining: 134ms
77:	learn: 14.7253152	total: 454ms	remaining: 128ms
78:	learn: 14.6438207	total: 459ms	remaining: 122ms
79:	learn: 14.5350651	total: 464ms	remaining: 116ms
80:	learn: 14.4301800	total: 469ms	remaining: 110ms
81:	learn: 14.3716251	total: 475ms	remaining: 104ms
82:	learn: 14.3127586	total: 480ms	remaining: 98.3ms
83:	learn: 14.2685086	total: 485ms	remaining: 92.4ms
84:	learn: 14.1936111	total: 490ms	remaining: 86.5ms
85:	learn: 14.1488261	total: 495ms	remaining: 80.6ms
86:	learn: 14.0654602	total: 501ms	remaining: 74.8ms
87:	learn: 14.0026195	total: 506ms	remaining: 69ms
88:	learn: 13.9498697	total: 511ms	remaining: 63.1ms
89:	learn: 13.9002477	total: 516ms	remaining: 57.4ms
90:	learn: 13.8429017	total: 522ms	remaining: 51.6ms
91:	learn: 13.7892130	total: 527ms	remaining: 45.8ms
92:	learn: 13.7122418	total: 532ms	remaining: 40ms
93:	learn: 13.6752324	total: 537ms	remaining: 34.3ms
94:	learn: 13.6186680	total: 542ms	remaining: 28.5ms
95:	learn: 13.5578384	total: 547ms	remaining: 22.8ms
96:	learn: 13.5028120	total: 552ms	remaining: 17.1ms
97:	learn: 13.4306895	total: 556ms	remaining: 11.4ms
98:	learn: 13.3955813	total: 562ms	remaining: 5.67ms
99:	learn: 13.3380095	total: 566ms	remaining: 0us
0:	learn: 42.9675374	total: 9.55ms	remaining: 945ms
1:	learn: 42.2542078	total: 19.4ms	remaining: 952ms
2:	learn: 41.5532166	total: 27.2ms	remaining: 878ms
3:	learn: 40.7812113	total: 35.3ms	remaining: 848ms
4:	learn: 39.8819601	total: 40.9ms	remaining: 777ms
5:	learn: 39.0997229	total: 43.1ms	remaining: 675ms
6:	learn: 38.2185623	total: 48.5ms	remaining: 645ms
7:	learn: 37.5465645	total: 54.2ms	remaining: 624ms
8:	learn: 36.8449555	total: 60ms	remaining: 607ms
9:	learn: 36.0912815	total: 65.8ms	remaining: 592ms
10:	learn: 35.5776470	total: 71.3ms	remaining: 577ms
11:	learn: 34.7845329	total: 76.9ms	remaining: 564ms
12:	learn: 34.1574031	total: 82.7ms	remaining: 553ms
13:	learn: 33.4950652	total: 87.9ms	remaining: 540ms
14:	learn: 32.9343881	total: 94.5ms	remaining: 535ms
15:	learn: 32.4356238	total: 102ms	remaining: 533ms
16:	learn: 31.8370592	total: 107ms	remaining: 521ms
17:	learn: 31.2122644	total: 112ms	remaining: 510ms
18:	learn: 30.7195190	total: 117ms	remaining: 500ms
19:	learn: 30.1548478	total: 123ms	remaining: 490ms
20:	learn: 29.6521001	total: 125ms	remaining: 472ms
21:	learn: 29.1746988	total: 131ms	remaining: 463ms
22:	learn: 28.6492690	total: 136ms	remaining: 454ms
23:	learn: 28.1958339	total: 140ms	remaining: 444ms
24:	learn: 27.9126674	total: 145ms	remaining: 435ms
25:	learn: 27.5059508	total: 150ms	remaining: 427ms
26:	learn: 27.0869176	total: 155ms	remaining: 419ms
27:	learn: 26.6545277	total: 160ms	remaining: 411ms
28:	learn: 26.2388575	total: 165ms	remaining: 404ms
29:	learn: 25.8957708	total: 170ms	remaining: 396ms
30:	learn: 25.5045901	total: 175ms	remaining: 389ms
31:	learn: 25.2559530	total: 180ms	remaining: 383ms
32:	learn: 24.9012566	total: 186ms	remaining: 377ms
33:	learn: 24.5601820	total: 191ms	remaining: 371ms
34:	learn: 24.2407285	total: 196ms	remaining: 365ms
35:	learn: 23.9481769	total: 202ms	remaining: 358ms
36:	learn: 23.6746994	total: 209ms	remaining: 356ms
37:	learn: 23.4470352	total: 218ms	remaining: 355ms
38:	learn: 23.1678305	total: 226ms	remaining: 353ms
39:	learn: 22.9660692	total: 231ms	remaining: 347ms
40:	learn: 22.7102548	total: 238ms	remaining: 343ms
41:	learn: 22.5152447	total: 244ms	remaining: 336ms
42:	learn: 22.2967100	total: 248ms	remaining: 329ms
43:	learn: 22.0869517	total: 253ms	remaining: 322ms
44:	learn: 21.8556497	total: 258ms	remaining: 315ms
45:	learn: 21.7036804	total: 263ms	remaining: 308ms
46:	learn: 21.4792011	total: 268ms	remaining: 302ms
47:	learn: 21.2830384	total: 272ms	remaining: 295ms
48:	learn: 21.0771837	total: 277ms	remaining: 289ms
49:	learn: 20.8824468	total: 283ms	remaining: 283ms
50:	learn: 20.7250875	total: 287ms	remaining: 276ms
51:	learn: 20.5564423	total: 293ms	remaining: 270ms
52:	learn: 20.4067403	total: 297ms	remaining: 264ms
53:	learn: 20.2674808	total: 302ms	remaining: 258ms
54:	learn: 20.1394249	total: 307ms	remaining: 251ms
55:	learn: 19.9748016	total: 312ms	remaining: 245ms
56:	learn: 19.8159522	total: 318ms	remaining: 240ms
57:	learn: 19.6811073	total: 323ms	remaining: 234ms
58:	learn: 19.5083232	total: 328ms	remaining: 228ms
59:	learn: 19.3949390	total: 330ms	remaining: 220ms
60:	learn: 19.2485728	total: 334ms	remaining: 214ms
61:	learn: 19.1255523	total: 339ms	remaining: 208ms
62:	learn: 18.9423320	total: 344ms	remaining: 202ms
63:	learn: 18.7794545	total: 349ms	remaining: 196ms
64:	learn: 18.6339033	total: 354ms	remaining: 190ms
65:	learn: 18.5188724	total: 359ms	remaining: 185ms
66:	learn: 18.3398412	total: 364ms	remaining: 179ms
67:	learn: 18.2873427	total: 368ms	remaining: 173ms
68:	learn: 18.1287092	total: 373ms	remaining: 168ms
69:	learn: 18.0163474	total: 378ms	remaining: 162ms
70:	learn: 17.9428395	total: 383ms	remaining: 157ms
71:	learn: 17.7906087	total: 388ms	remaining: 151ms
72:	learn: 17.6121088	total: 393ms	remaining: 145ms
73:	learn: 17.5136572	total: 398ms	remaining: 140ms
74:	learn: 17.3837993	total: 404ms	remaining: 135ms
75:	learn: 17.3015647	total: 414ms	remaining: 131ms
76:	learn: 17.1991252	total: 424ms	remaining: 127ms
77:	learn: 17.0854777	total: 432ms	remaining: 122ms
78:	learn: 17.0308269	total: 442ms	remaining: 117ms
79:	learn: 16.9754807	total: 448ms	remaining: 112ms
80:	learn: 16.9174907	total: 455ms	remaining: 107ms
81:	learn: 16.7962603	total: 461ms	remaining: 101ms
82:	learn: 16.6685446	total: 467ms	remaining: 95.7ms
83:	learn: 16.5812672	total: 485ms	remaining: 92.3ms
84:	learn: 16.4896026	total: 490ms	remaining: 86.4ms
85:	learn: 16.4023414	total: 495ms	remaining: 80.6ms
86:	learn: 16.3093718	total: 502ms	remaining: 75ms
87:	learn: 16.2409040	total: 507ms	remaining: 69.1ms
88:	learn: 16.1616213	total: 512ms	remaining: 63.2ms
89:	learn: 16.0825203	total: 517ms	remaining: 57.4ms
90:	learn: 16.0204931	total: 521ms	remaining: 51.6ms
91:	learn: 15.9741267	total: 526ms	remaining: 45.8ms
92:	learn: 15.9413725	total: 531ms	remaining: 40ms
93:	learn: 15.8762295	total: 536ms	remaining: 34.2ms
94:	learn: 15.8165812	total: 541ms	remaining: 28.4ms
95:	learn: 15.7244343	total: 545ms	remaining: 22.7ms
96:	learn: 15.6537033	total: 550ms	remaining: 17ms
97:	learn: 15.6052320	total: 555ms	remaining: 11.3ms
98:	learn: 15.5434930	total: 560ms	remaining: 5.66ms
99:	learn: 15.4452106	total: 565ms	remaining: 0us
0:	learn: 46.5387280	total: 7.41ms	remaining: 733ms
1:	learn: 45.8605074	total: 13.9ms	remaining: 680ms
2:	learn: 45.2237152	total: 19.2ms	remaining: 619ms
3:	learn: 44.4158454	total: 23.8ms	remaining: 571ms
4:	learn: 43.7177384	total: 28.6ms	remaining: 543ms
5:	learn: 42.9896372	total: 33.4ms	remaining: 523ms
6:	learn: 42.3639431	total: 38.1ms	remaining: 507ms
7:	learn: 41.6648406	total: 42.8ms	remaining: 492ms
8:	learn: 41.0681442	total: 47.8ms	remaining: 483ms
9:	learn: 40.4478745	total: 52.7ms	remaining: 475ms
10:	learn: 40.0398470	total: 57.5ms	remaining: 465ms
11:	learn: 39.3300888	total: 62.3ms	remaining: 457ms
12:	learn: 38.9198991	total: 67ms	remaining: 449ms
13:	learn: 38.4022666	total: 71.6ms	remaining: 440ms
14:	learn: 37.9124629	total: 76.5ms	remaining: 433ms
15:	learn: 37.3846174	total: 81.4ms	remaining: 427ms
16:	learn: 36.8502348	total: 85.9ms	remaining: 419ms
17:	learn: 36.5079755	total: 90.6ms	remaining: 413ms
18:	learn: 36.1239339	total: 95.3ms	remaining: 406ms
19:	learn: 35.8388688	total: 100ms	remaining: 401ms
20:	learn: 35.4915710	total: 105ms	remaining: 396ms
21:	learn: 34.9483623	total: 109ms	remaining: 388ms
22:	learn: 34.6033866	total: 114ms	remaining: 383ms
23:	learn: 34.1483341	total: 119ms	remaining: 378ms
24:	learn: 33.7626484	total: 124ms	remaining: 372ms
25:	learn: 33.4160820	total: 129ms	remaining: 366ms
26:	learn: 33.0421483	total: 134ms	remaining: 361ms
27:	learn: 32.6573469	total: 138ms	remaining: 355ms
28:	learn: 32.2672417	total: 143ms	remaining: 350ms
29:	learn: 31.8257441	total: 148ms	remaining: 345ms
30:	learn: 31.3394923	total: 153ms	remaining: 340ms
31:	learn: 30.9472894	total: 158ms	remaining: 335ms
32:	learn: 30.6961423	total: 162ms	remaining: 330ms
33:	learn: 30.4670615	total: 167ms	remaining: 325ms
34:	learn: 30.1495001	total: 172ms	remaining: 320ms
35:	learn: 29.8071763	total: 177ms	remaining: 315ms
36:	learn: 29.5255984	total: 183ms	remaining: 311ms
37:	learn: 29.2236758	total: 188ms	remaining: 306ms
38:	learn: 28.9199699	total: 193ms	remaining: 301ms
39:	learn: 28.7003989	total: 197ms	remaining: 296ms
40:	learn: 28.4681160	total: 203ms	remaining: 292ms
41:	learn: 28.2692668	total: 213ms	remaining: 294ms
42:	learn: 27.9327254	total: 226ms	remaining: 299ms
43:	learn: 27.7193597	total: 234ms	remaining: 297ms
44:	learn: 27.4061006	total: 240ms	remaining: 293ms
45:	learn: 27.1840910	total: 245ms	remaining: 288ms
46:	learn: 26.8943816	total: 251ms	remaining: 283ms
47:	learn: 26.6576617	total: 257ms	remaining: 278ms
48:	learn: 26.3230094	total: 262ms	remaining: 273ms
49:	learn: 26.0488483	total: 268ms	remaining: 268ms
50:	learn: 25.7795537	total: 275ms	remaining: 264ms
51:	learn: 25.6103781	total: 280ms	remaining: 259ms
52:	learn: 25.4107383	total: 286ms	remaining: 253ms
53:	learn: 25.1757211	total: 291ms	remaining: 248ms
54:	learn: 24.8949842	total: 296ms	remaining: 242ms
55:	learn: 24.7028694	total: 301ms	remaining: 237ms
56:	learn: 24.4033555	total: 307ms	remaining: 232ms
57:	learn: 24.2109268	total: 313ms	remaining: 227ms
58:	learn: 24.0697623	total: 318ms	remaining: 221ms
59:	learn: 23.8291672	total: 323ms	remaining: 215ms
60:	learn: 23.5972471	total: 328ms	remaining: 210ms
61:	learn: 23.4241182	total: 333ms	remaining: 204ms
62:	learn: 23.2617022	total: 338ms	remaining: 198ms
63:	learn: 23.0329448	total: 343ms	remaining: 193ms
64:	learn: 22.9108081	total: 348ms	remaining: 187ms
65:	learn: 22.8001962	total: 353ms	remaining: 182ms
66:	learn: 22.6861907	total: 358ms	remaining: 176ms
67:	learn: 22.5152895	total: 363ms	remaining: 171ms
68:	learn: 22.3734214	total: 368ms	remaining: 165ms
69:	learn: 22.1840754	total: 373ms	remaining: 160ms
70:	learn: 22.0732908	total: 379ms	remaining: 155ms
71:	learn: 21.8880456	total: 384ms	remaining: 149ms
72:	learn: 21.7838784	total: 389ms	remaining: 144ms
73:	learn: 21.5532885	total: 394ms	remaining: 139ms
74:	learn: 21.3998735	total: 399ms	remaining: 133ms
75:	learn: 21.2699824	total: 405ms	remaining: 128ms
76:	learn: 21.1077652	total: 415ms	remaining: 124ms
77:	learn: 20.9759102	total: 424ms	remaining: 120ms
78:	learn: 20.7531342	total: 430ms	remaining: 114ms
79:	learn: 20.6729631	total: 437ms	remaining: 109ms
80:	learn: 20.4903474	total: 442ms	remaining: 104ms
81:	learn: 20.3708622	total: 448ms	remaining: 98.3ms
82:	learn: 20.2627857	total: 453ms	remaining: 92.8ms
83:	learn: 20.1335464	total: 458ms	remaining: 87.3ms
84:	learn: 20.0100864	total: 464ms	remaining: 81.9ms
85:	learn: 19.9374357	total: 469ms	remaining: 76.4ms
86:	learn: 19.8383097	total: 475ms	remaining: 70.9ms
87:	learn: 19.7804443	total: 480ms	remaining: 65.5ms
88:	learn: 19.7225631	total: 485ms	remaining: 60ms
89:	learn: 19.5851849	total: 491ms	remaining: 54.5ms
90:	learn: 19.5115923	total: 495ms	remaining: 49ms
91:	learn: 19.3986485	total: 500ms	remaining: 43.5ms
92:	learn: 19.2465728	total: 505ms	remaining: 38ms
93:	learn: 19.2033796	total: 510ms	remaining: 32.5ms
94:	learn: 19.1234096	total: 515ms	remaining: 27.1ms
95:	learn: 19.0080161	total: 520ms	remaining: 21.7ms
96:	learn: 18.9048698	total: 524ms	remaining: 16.2ms
97:	learn: 18.7901500	total: 529ms	remaining: 10.8ms
98:	learn: 18.6759882	total: 534ms	remaining: 5.39ms
99:	learn: 18.6254590	total: 539ms	remaining: 0us
0:	learn: 46.0359105	total: 5.79ms	remaining: 573ms
1:	learn: 45.4503059	total: 10.9ms	remaining: 532ms
2:	learn: 44.6478680	total: 16.1ms	remaining: 519ms
3:	learn: 43.7932387	total: 25.7ms	remaining: 616ms
4:	learn: 43.2236036	total: 36.4ms	remaining: 692ms
5:	learn: 42.4339181	total: 43.4ms	remaining: 680ms
6:	learn: 41.8906461	total: 51.6ms	remaining: 685ms
7:	learn: 41.2248707	total: 57.2ms	remaining: 657ms
8:	learn: 40.5934570	total: 62.8ms	remaining: 635ms
9:	learn: 39.9204661	total: 68.7ms	remaining: 618ms
10:	learn: 39.3972458	total: 74.6ms	remaining: 604ms
11:	learn: 38.9220493	total: 80.4ms	remaining: 590ms
12:	learn: 38.2358406	total: 85.9ms	remaining: 575ms
13:	learn: 37.7089336	total: 91.9ms	remaining: 564ms
14:	learn: 37.3714255	total: 97.6ms	remaining: 553ms
15:	learn: 36.8098537	total: 103ms	remaining: 539ms
16:	learn: 36.2818695	total: 109ms	remaining: 533ms
17:	learn: 35.8807734	total: 115ms	remaining: 526ms
18:	learn: 35.3850720	total: 120ms	remaining: 513ms
19:	learn: 35.0622365	total: 126ms	remaining: 502ms
20:	learn: 34.7088655	total: 130ms	remaining: 490ms
21:	learn: 34.2869861	total: 135ms	remaining: 478ms
22:	learn: 33.9798756	total: 140ms	remaining: 468ms
23:	learn: 33.6933850	total: 145ms	remaining: 458ms
24:	learn: 33.3542725	total: 149ms	remaining: 447ms
25:	learn: 33.1531104	total: 154ms	remaining: 438ms
26:	learn: 32.7581499	total: 159ms	remaining: 429ms
27:	learn: 32.4953289	total: 164ms	remaining: 421ms
28:	learn: 32.1636511	total: 168ms	remaining: 412ms
29:	learn: 31.7179908	total: 173ms	remaining: 403ms
30:	learn: 31.2828971	total: 178ms	remaining: 395ms
31:	learn: 30.8954632	total: 182ms	remaining: 388ms
32:	learn: 30.6156466	total: 187ms	remaining: 380ms
33:	learn: 30.4325331	total: 192ms	remaining: 373ms
34:	learn: 30.1680270	total: 197ms	remaining: 366ms
35:	learn: 29.8372162	total: 202ms	remaining: 358ms
36:	learn: 29.5018241	total: 207ms	remaining: 352ms
37:	learn: 29.2660228	total: 211ms	remaining: 345ms
38:	learn: 28.9172883	total: 216ms	remaining: 338ms
39:	learn: 28.7004790	total: 221ms	remaining: 332ms
40:	learn: 28.5188438	total: 226ms	remaining: 326ms
41:	learn: 28.3064887	total: 232ms	remaining: 320ms
42:	learn: 27.9584462	total: 237ms	remaining: 314ms
43:	learn: 27.6654603	total: 242ms	remaining: 308ms
44:	learn: 27.3698139	total: 247ms	remaining: 302ms
45:	learn: 27.1825629	total: 254ms	remaining: 298ms
46:	learn: 26.9938719	total: 263ms	remaining: 297ms
47:	learn: 26.7385850	total: 272ms	remaining: 295ms
48:	learn: 26.5055251	total: 278ms	remaining: 289ms
49:	learn: 26.3264840	total: 285ms	remaining: 285ms
50:	learn: 26.1314307	total: 290ms	remaining: 279ms
51:	learn: 25.9514770	total: 295ms	remaining: 273ms
52:	learn: 25.7272663	total: 300ms	remaining: 266ms
53:	learn: 25.4554234	total: 305ms	remaining: 260ms
54:	learn: 25.2133674	total: 310ms	remaining: 253ms
55:	learn: 24.9612149	total: 314ms	remaining: 247ms
56:	learn: 24.6788780	total: 319ms	remaining: 241ms
57:	learn: 24.4504703	total: 324ms	remaining: 235ms
58:	learn: 24.3261542	total: 329ms	remaining: 228ms
59:	learn: 24.1217621	total: 334ms	remaining: 222ms
60:	learn: 23.9495725	total: 338ms	remaining: 216ms
61:	learn: 23.7848565	total: 343ms	remaining: 210ms
62:	learn: 23.6627081	total: 348ms	remaining: 205ms
63:	learn: 23.4390407	total: 353ms	remaining: 199ms
64:	learn: 23.2556312	total: 358ms	remaining: 193ms
65:	learn: 23.1796337	total: 363ms	remaining: 187ms
66:	learn: 23.0431987	total: 368ms	remaining: 181ms
67:	learn: 22.9300366	total: 372ms	remaining: 175ms
68:	learn: 22.8321895	total: 377ms	remaining: 169ms
69:	learn: 22.7825840	total: 382ms	remaining: 164ms
70:	learn: 22.6907764	total: 386ms	remaining: 158ms
71:	learn: 22.5080460	total: 391ms	remaining: 152ms
72:	learn: 22.4053282	total: 396ms	remaining: 146ms
73:	learn: 22.2698085	total: 401ms	remaining: 141ms
74:	learn: 22.0951825	total: 406ms	remaining: 135ms
75:	learn: 21.9933994	total: 411ms	remaining: 130ms
76:	learn: 21.8043413	total: 415ms	remaining: 124ms
77:	learn: 21.7259032	total: 421ms	remaining: 119ms
78:	learn: 21.5625358	total: 426ms	remaining: 113ms
79:	learn: 21.4316837	total: 434ms	remaining: 108ms
80:	learn: 21.2270985	total: 441ms	remaining: 104ms
81:	learn: 21.1248573	total: 449ms	remaining: 98.5ms
82:	learn: 21.0879584	total: 454ms	remaining: 93ms
83:	learn: 20.9810177	total: 460ms	remaining: 87.6ms
84:	learn: 20.8986744	total: 466ms	remaining: 82.2ms
85:	learn: 20.8427245	total: 472ms	remaining: 76.8ms
86:	learn: 20.7158681	total: 478ms	remaining: 71.4ms
87:	learn: 20.6055502	total: 483ms	remaining: 65.9ms
88:	learn: 20.5302059	total: 489ms	remaining: 60.4ms
89:	learn: 20.3936827	total: 495ms	remaining: 55ms
90:	learn: 20.2756993	total: 500ms	remaining: 49.5ms
91:	learn: 20.1882826	total: 506ms	remaining: 44ms
92:	learn: 20.0346875	total: 511ms	remaining: 38.5ms
93:	learn: 19.9798652	total: 517ms	remaining: 33ms
94:	learn: 19.9020384	total: 525ms	remaining: 27.6ms
95:	learn: 19.8463755	total: 531ms	remaining: 22.1ms
96:	learn: 19.7426458	total: 537ms	remaining: 16.6ms
97:	learn: 19.6728655	total: 543ms	remaining: 11.1ms
98:	learn: 19.6355104	total: 549ms	remaining: 5.55ms
99:	learn: 19.6074086	total: 556ms	remaining: 0us
0:	learn: 46.7817285	total: 5.35ms	remaining: 529ms
1:	learn: 45.9551634	total: 10.2ms	remaining: 501ms
2:	learn: 45.0274369	total: 15.1ms	remaining: 487ms
3:	learn: 44.5000950	total: 20.5ms	remaining: 491ms
4:	learn: 43.8963632	total: 25.6ms	remaining: 487ms
5:	learn: 43.2314124	total: 30.5ms	remaining: 477ms
6:	learn: 42.5780140	total: 35.2ms	remaining: 468ms
7:	learn: 41.9033077	total: 39.9ms	remaining: 459ms
8:	learn: 41.3161907	total: 45.6ms	remaining: 461ms
9:	learn: 40.7747000	total: 50.9ms	remaining: 458ms
10:	learn: 40.2728122	total: 55.7ms	remaining: 450ms
11:	learn: 39.7786608	total: 61.4ms	remaining: 450ms
12:	learn: 39.0812090	total: 66.5ms	remaining: 445ms
13:	learn: 38.6205762	total: 71.7ms	remaining: 440ms
14:	learn: 38.2894236	total: 82.6ms	remaining: 468ms
15:	learn: 37.6906364	total: 91.8ms	remaining: 482ms
16:	learn: 37.3014849	total: 98.4ms	remaining: 481ms
17:	learn: 36.9268494	total: 105ms	remaining: 480ms
18:	learn: 36.6348717	total: 111ms	remaining: 471ms
19:	learn: 36.1567831	total: 116ms	remaining: 463ms
20:	learn: 35.8080754	total: 121ms	remaining: 455ms
21:	learn: 35.4288913	total: 126ms	remaining: 446ms
22:	learn: 35.0910168	total: 131ms	remaining: 438ms
23:	learn: 34.7483277	total: 136ms	remaining: 429ms
24:	learn: 34.5077203	total: 140ms	remaining: 421ms
25:	learn: 34.1830247	total: 145ms	remaining: 414ms
26:	learn: 33.7943837	total: 150ms	remaining: 406ms
27:	learn: 33.3736582	total: 155ms	remaining: 399ms
28:	learn: 32.9133996	total: 160ms	remaining: 393ms
29:	learn: 32.4361653	total: 165ms	remaining: 386ms
30:	learn: 31.9630085	total: 170ms	remaining: 378ms
31:	learn: 31.5994894	total: 175ms	remaining: 371ms
32:	learn: 31.3120059	total: 180ms	remaining: 365ms
33:	learn: 31.0991187	total: 185ms	remaining: 358ms
34:	learn: 30.8055118	total: 189ms	remaining: 352ms
35:	learn: 30.5197359	total: 194ms	remaining: 345ms
36:	learn: 30.1975315	total: 199ms	remaining: 339ms
37:	learn: 29.9797615	total: 204ms	remaining: 332ms
38:	learn: 29.6874864	total: 208ms	remaining: 326ms
39:	learn: 29.4139907	total: 213ms	remaining: 319ms
40:	learn: 29.0472151	total: 218ms	remaining: 313ms
41:	learn: 28.8356285	total: 222ms	remaining: 307ms
42:	learn: 28.5099349	total: 227ms	remaining: 301ms
43:	learn: 28.2009716	total: 232ms	remaining: 295ms
44:	learn: 27.8947534	total: 237ms	remaining: 290ms
45:	learn: 27.6149698	total: 242ms	remaining: 284ms
46:	learn: 27.4780860	total: 247ms	remaining: 279ms
47:	learn: 27.2859119	total: 252ms	remaining: 273ms
48:	learn: 27.0572191	total: 258ms	remaining: 268ms
49:	learn: 26.8916263	total: 264ms	remaining: 264ms
50:	learn: 26.6791967	total: 270ms	remaining: 259ms
51:	learn: 26.4917307	total: 280ms	remaining: 258ms
52:	learn: 26.2957036	total: 293ms	remaining: 259ms
53:	learn: 26.1116543	total: 301ms	remaining: 257ms
54:	learn: 25.8593319	total: 307ms	remaining: 251ms
55:	learn: 25.6957296	total: 313ms	remaining: 246ms
56:	learn: 25.5065213	total: 319ms	remaining: 240ms
57:	learn: 25.3525337	total: 324ms	remaining: 235ms
58:	learn: 25.2197494	total: 330ms	remaining: 229ms
59:	learn: 25.0583799	total: 336ms	remaining: 224ms
60:	learn: 24.8432659	total: 341ms	remaining: 218ms
61:	learn: 24.6585337	total: 347ms	remaining: 213ms
62:	learn: 24.5382571	total: 352ms	remaining: 207ms
63:	learn: 24.3596337	total: 358ms	remaining: 201ms
64:	learn: 24.2009033	total: 363ms	remaining: 196ms
65:	learn: 24.0964080	total: 369ms	remaining: 190ms
66:	learn: 23.9765920	total: 374ms	remaining: 184ms
67:	learn: 23.8638384	total: 379ms	remaining: 178ms
68:	learn: 23.7381861	total: 384ms	remaining: 172ms
69:	learn: 23.5620129	total: 388ms	remaining: 166ms
70:	learn: 23.4494830	total: 393ms	remaining: 161ms
71:	learn: 23.3095806	total: 398ms	remaining: 155ms
72:	learn: 23.1441767	total: 402ms	remaining: 149ms
73:	learn: 22.9983446	total: 407ms	remaining: 143ms
74:	learn: 22.8464764	total: 412ms	remaining: 137ms
75:	learn: 22.7606423	total: 417ms	remaining: 132ms
76:	learn: 22.6095905	total: 422ms	remaining: 126ms
77:	learn: 22.4430506	total: 427ms	remaining: 120ms
78:	learn: 22.2925872	total: 431ms	remaining: 115ms
79:	learn: 22.1806286	total: 436ms	remaining: 109ms
80:	learn: 22.0070525	total: 441ms	remaining: 104ms
81:	learn: 21.9114201	total: 446ms	remaining: 98ms
82:	learn: 21.7742884	total: 451ms	remaining: 92.4ms
83:	learn: 21.6372857	total: 456ms	remaining: 86.9ms
84:	learn: 21.5380397	total: 461ms	remaining: 81.4ms
85:	learn: 21.4730146	total: 466ms	remaining: 75.8ms
86:	learn: 21.3236516	total: 475ms	remaining: 71ms
87:	learn: 21.2512101	total: 484ms	remaining: 66ms
88:	learn: 21.2192883	total: 491ms	remaining: 60.7ms
89:	learn: 21.0457926	total: 496ms	remaining: 55.1ms
90:	learn: 20.9986980	total: 502ms	remaining: 49.7ms
91:	learn: 20.9040032	total: 507ms	remaining: 44.1ms
92:	learn: 20.7178547	total: 512ms	remaining: 38.5ms
93:	learn: 20.6535030	total: 517ms	remaining: 33ms
94:	learn: 20.5641982	total: 522ms	remaining: 27.5ms
95:	learn: 20.5355409	total: 526ms	remaining: 21.9ms
96:	learn: 20.4496493	total: 531ms	remaining: 16.4ms
97:	learn: 20.3579862	total: 536ms	remaining: 10.9ms
98:	learn: 20.2442476	total: 541ms	remaining: 5.46ms
99:	learn: 20.1075813	total: 546ms	remaining: 0us
0:	learn: 27.6506730	total: 4.65ms	remaining: 460ms
1:	learn: 27.1638793	total: 8.83ms	remaining: 432ms
2:	learn: 26.8000665	total: 13.3ms	remaining: 431ms
3:	learn: 26.4256132	total: 17.7ms	remaining: 424ms
4:	learn: 26.0088351	total: 22ms	remaining: 417ms
5:	learn: 25.7558298	total: 26.3ms	remaining: 413ms
6:	learn: 25.3380711	total: 31.1ms	remaining: 413ms
7:	learn: 25.0571611	total: 35.7ms	remaining: 410ms
8:	learn: 24.6790148	total: 40ms	remaining: 404ms
9:	learn: 24.3600941	total: 46.2ms	remaining: 416ms
10:	learn: 24.1105667	total: 51.1ms	remaining: 414ms
11:	learn: 23.7736542	total: 55.9ms	remaining: 410ms
12:	learn: 23.5824429	total: 60.6ms	remaining: 406ms
13:	learn: 23.2658303	total: 65.5ms	remaining: 402ms
14:	learn: 23.0061886	total: 70ms	remaining: 397ms
15:	learn: 22.8060389	total: 74.6ms	remaining: 391ms
16:	learn: 22.5899735	total: 83.2ms	remaining: 406ms
17:	learn: 22.3625048	total: 93.4ms	remaining: 426ms
18:	learn: 22.0706477	total: 103ms	remaining: 438ms
19:	learn: 21.8739394	total: 111ms	remaining: 443ms
20:	learn: 21.6143650	total: 116ms	remaining: 438ms
21:	learn: 21.4571623	total: 122ms	remaining: 432ms
22:	learn: 21.2395769	total: 127ms	remaining: 425ms
23:	learn: 20.9801795	total: 133ms	remaining: 420ms
24:	learn: 20.8036808	total: 138ms	remaining: 413ms
25:	learn: 20.6387539	total: 143ms	remaining: 407ms
26:	learn: 20.4401427	total: 148ms	remaining: 400ms
27:	learn: 20.2879575	total: 153ms	remaining: 394ms
28:	learn: 20.0538664	total: 158ms	remaining: 387ms
29:	learn: 19.8363102	total: 164ms	remaining: 382ms
30:	learn: 19.7015446	total: 169ms	remaining: 377ms
31:	learn: 19.5483114	total: 174ms	remaining: 370ms
32:	learn: 19.4163053	total: 179ms	remaining: 363ms
33:	learn: 19.2880625	total: 183ms	remaining: 355ms
34:	learn: 19.1303389	total: 188ms	remaining: 348ms
35:	learn: 18.9237448	total: 192ms	remaining: 341ms
36:	learn: 18.8142925	total: 196ms	remaining: 334ms
37:	learn: 18.6994696	total: 201ms	remaining: 327ms
38:	learn: 18.5629211	total: 206ms	remaining: 322ms
39:	learn: 18.4600917	total: 210ms	remaining: 316ms
40:	learn: 18.3567139	total: 215ms	remaining: 310ms
41:	learn: 18.2120527	total: 220ms	remaining: 304ms
42:	learn: 18.0688062	total: 225ms	remaining: 298ms
43:	learn: 17.9250181	total: 229ms	remaining: 292ms
44:	learn: 17.8399138	total: 234ms	remaining: 286ms
45:	learn: 17.6720713	total: 239ms	remaining: 280ms
46:	learn: 17.5273091	total: 243ms	remaining: 275ms
47:	learn: 17.4232814	total: 249ms	remaining: 269ms
48:	learn: 17.2957579	total: 254ms	remaining: 264ms
49:	learn: 17.1892874	total: 258ms	remaining: 258ms
50:	learn: 17.0490355	total: 263ms	remaining: 253ms
51:	learn: 16.9666450	total: 268ms	remaining: 247ms
52:	learn: 16.8600056	total: 273ms	remaining: 242ms
53:	learn: 16.7542588	total: 278ms	remaining: 237ms
54:	learn: 16.6316077	total: 288ms	remaining: 235ms
55:	learn: 16.5588112	total: 295ms	remaining: 232ms
56:	learn: 16.5010186	total: 302ms	remaining: 228ms
57:	learn: 16.4081540	total: 307ms	remaining: 222ms
58:	learn: 16.3040451	total: 312ms	remaining: 217ms
59:	learn: 16.1890564	total: 317ms	remaining: 211ms
60:	learn: 16.0977103	total: 321ms	remaining: 205ms
61:	learn: 15.9627607	total: 326ms	remaining: 200ms
62:	learn: 15.9022248	total: 330ms	remaining: 194ms
63:	learn: 15.8151881	total: 335ms	remaining: 188ms
64:	learn: 15.7353125	total: 340ms	remaining: 183ms
65:	learn: 15.6312897	total: 344ms	remaining: 177ms
66:	learn: 15.5330927	total: 348ms	remaining: 172ms
67:	learn: 15.4698681	total: 353ms	remaining: 166ms
68:	learn: 15.4108571	total: 357ms	remaining: 160ms
69:	learn: 15.3492945	total: 361ms	remaining: 155ms
70:	learn: 15.3036540	total: 366ms	remaining: 149ms
71:	learn: 15.2390833	total: 370ms	remaining: 144ms
72:	learn: 15.1556327	total: 374ms	remaining: 138ms
73:	learn: 15.1016315	total: 378ms	remaining: 133ms
74:	learn: 15.0287076	total: 382ms	remaining: 127ms
75:	learn: 14.9530572	total: 387ms	remaining: 122ms
76:	learn: 14.8965517	total: 391ms	remaining: 117ms
77:	learn: 14.8125426	total: 395ms	remaining: 111ms
78:	learn: 14.7435359	total: 400ms	remaining: 106ms
79:	learn: 14.6963163	total: 404ms	remaining: 101ms
80:	learn: 14.6200060	total: 408ms	remaining: 95.8ms
81:	learn: 14.5707760	total: 413ms	remaining: 90.7ms
82:	learn: 14.5053651	total: 418ms	remaining: 85.6ms
83:	learn: 14.4115458	total: 423ms	remaining: 80.5ms
84:	learn: 14.3117159	total: 427ms	remaining: 75.4ms
85:	learn: 14.2511326	total: 432ms	remaining: 70.3ms
86:	learn: 14.1372486	total: 436ms	remaining: 65.2ms
87:	learn: 14.0992301	total: 441ms	remaining: 60.1ms
88:	learn: 14.0228331	total: 445ms	remaining: 55.1ms
89:	learn: 13.9249836	total: 450ms	remaining: 50ms
90:	learn: 13.8679364	total: 455ms	remaining: 45ms
91:	learn: 13.8405578	total: 459ms	remaining: 39.9ms
92:	learn: 13.7711325	total: 464ms	remaining: 34.9ms
93:	learn: 13.7357019	total: 469ms	remaining: 29.9ms
94:	learn: 13.6735271	total: 473ms	remaining: 24.9ms
95:	learn: 13.5682393	total: 478ms	remaining: 19.9ms
96:	learn: 13.5342610	total: 483ms	remaining: 14.9ms
97:	learn: 13.4710034	total: 488ms	remaining: 9.96ms
98:	learn: 13.4022402	total: 496ms	remaining: 5.01ms
99:	learn: 13.3351238	total: 504ms	remaining: 0us
0:	learn: 42.9181702	total: 5.76ms	remaining: 571ms
1:	learn: 42.0286736	total: 11.1ms	remaining: 542ms
2:	learn: 41.2764568	total: 16.1ms	remaining: 521ms
3:	learn: 40.4721918	total: 21.4ms	remaining: 515ms
4:	learn: 39.8518928	total: 26.8ms	remaining: 509ms
5:	learn: 39.2645479	total: 31.5ms	remaining: 494ms
6:	learn: 38.4453704	total: 36.2ms	remaining: 481ms
7:	learn: 37.7122059	total: 40.5ms	remaining: 466ms
8:	learn: 36.9185796	total: 44.8ms	remaining: 453ms
9:	learn: 36.1668427	total: 49.1ms	remaining: 442ms
10:	learn: 35.5639029	total: 53.7ms	remaining: 434ms
11:	learn: 34.7724193	total: 57.9ms	remaining: 425ms
12:	learn: 34.3053433	total: 62.3ms	remaining: 417ms
13:	learn: 33.6561327	total: 63.5ms	remaining: 390ms
14:	learn: 33.0134042	total: 67.7ms	remaining: 383ms
15:	learn: 32.4483300	total: 72ms	remaining: 378ms
16:	learn: 31.8581144	total: 76.2ms	remaining: 372ms
17:	learn: 31.2858301	total: 80.8ms	remaining: 368ms
18:	learn: 30.8483018	total: 86ms	remaining: 366ms
19:	learn: 30.4174622	total: 91ms	remaining: 364ms
20:	learn: 29.8994411	total: 96.3ms	remaining: 362ms
21:	learn: 29.5045355	total: 101ms	remaining: 358ms
22:	learn: 28.9923519	total: 106ms	remaining: 354ms
23:	learn: 28.4255717	total: 111ms	remaining: 351ms
24:	learn: 28.0283139	total: 116ms	remaining: 348ms
25:	learn: 27.7434814	total: 121ms	remaining: 344ms
26:	learn: 27.2770731	total: 126ms	remaining: 341ms
27:	learn: 26.8928270	total: 131ms	remaining: 337ms
28:	learn: 26.4282671	total: 136ms	remaining: 332ms
29:	learn: 26.0272764	total: 141ms	remaining: 329ms
30:	learn: 25.7579312	total: 149ms	remaining: 332ms
31:	learn: 25.4542434	total: 157ms	remaining: 333ms
32:	learn: 25.1232564	total: 163ms	remaining: 331ms
33:	learn: 24.8110795	total: 169ms	remaining: 327ms
34:	learn: 24.5077579	total: 174ms	remaining: 323ms
35:	learn: 24.1909000	total: 178ms	remaining: 317ms
36:	learn: 23.8719468	total: 182ms	remaining: 311ms
37:	learn: 23.5764366	total: 184ms	remaining: 300ms
38:	learn: 23.3468086	total: 188ms	remaining: 294ms
39:	learn: 23.0908771	total: 193ms	remaining: 289ms
40:	learn: 22.8580876	total: 197ms	remaining: 284ms
41:	learn: 22.6060825	total: 202ms	remaining: 278ms
42:	learn: 22.4125407	total: 206ms	remaining: 273ms
43:	learn: 22.1990617	total: 210ms	remaining: 268ms
44:	learn: 21.9716164	total: 215ms	remaining: 262ms
45:	learn: 21.8360935	total: 219ms	remaining: 257ms
46:	learn: 21.6169256	total: 223ms	remaining: 252ms
47:	learn: 21.4620612	total: 228ms	remaining: 247ms
48:	learn: 21.2894194	total: 232ms	remaining: 242ms
49:	learn: 21.1066266	total: 237ms	remaining: 237ms
50:	learn: 20.9484898	total: 241ms	remaining: 231ms
51:	learn: 20.7195338	total: 245ms	remaining: 226ms
52:	learn: 20.4899740	total: 249ms	remaining: 221ms
53:	learn: 20.3356583	total: 254ms	remaining: 216ms
54:	learn: 20.0754393	total: 258ms	remaining: 211ms
55:	learn: 19.9199159	total: 263ms	remaining: 206ms
56:	learn: 19.7761128	total: 267ms	remaining: 201ms
57:	learn: 19.6533060	total: 271ms	remaining: 197ms
58:	learn: 19.5113942	total: 276ms	remaining: 192ms
59:	learn: 19.3985022	total: 281ms	remaining: 187ms
60:	learn: 19.2683443	total: 285ms	remaining: 182ms
61:	learn: 19.1460824	total: 289ms	remaining: 177ms
62:	learn: 19.0042655	total: 294ms	remaining: 173ms
63:	learn: 18.8720873	total: 298ms	remaining: 168ms
64:	learn: 18.7183888	total: 303ms	remaining: 163ms
65:	learn: 18.5472360	total: 307ms	remaining: 158ms
66:	learn: 18.3976642	total: 311ms	remaining: 153ms
67:	learn: 18.2282851	total: 316ms	remaining: 149ms
68:	learn: 18.1469157	total: 321ms	remaining: 144ms
69:	learn: 18.0649494	total: 325ms	remaining: 139ms
70:	learn: 17.9485405	total: 330ms	remaining: 135ms
71:	learn: 17.8460261	total: 335ms	remaining: 130ms
72:	learn: 17.7679843	total: 343ms	remaining: 127ms
73:	learn: 17.5989290	total: 351ms	remaining: 123ms
74:	learn: 17.4381322	total: 361ms	remaining: 120ms
75:	learn: 17.3370886	total: 368ms	remaining: 116ms
76:	learn: 17.2675308	total: 374ms	remaining: 112ms
77:	learn: 17.1946430	total: 380ms	remaining: 107ms
78:	learn: 17.0923725	total: 385ms	remaining: 102ms
79:	learn: 17.0537265	total: 390ms	remaining: 97.6ms
80:	learn: 16.9456831	total: 396ms	remaining: 92.9ms
81:	learn: 16.8457353	total: 401ms	remaining: 88.1ms
82:	learn: 16.7469310	total: 406ms	remaining: 83.2ms
83:	learn: 16.6679953	total: 412ms	remaining: 78.4ms
84:	learn: 16.6274189	total: 417ms	remaining: 73.5ms
85:	learn: 16.5516530	total: 422ms	remaining: 68.6ms
86:	learn: 16.4886066	total: 427ms	remaining: 63.8ms
87:	learn: 16.3947859	total: 432ms	remaining: 59ms
88:	learn: 16.3406495	total: 438ms	remaining: 54.1ms
89:	learn: 16.3019195	total: 442ms	remaining: 49.1ms
90:	learn: 16.1860681	total: 446ms	remaining: 44.1ms
91:	learn: 16.1282812	total: 450ms	remaining: 39.2ms
92:	learn: 16.0303652	total: 454ms	remaining: 34.2ms
93:	learn: 15.9561692	total: 459ms	remaining: 29.3ms
94:	learn: 15.8733994	total: 463ms	remaining: 24.4ms
95:	learn: 15.8108833	total: 468ms	remaining: 19.5ms
96:	learn: 15.7606004	total: 472ms	remaining: 14.6ms
97:	learn: 15.6984664	total: 476ms	remaining: 9.72ms
98:	learn: 15.6223632	total: 481ms	remaining: 4.86ms
99:	learn: 15.5671136	total: 485ms	remaining: 0us
0:	learn: 46.4788614	total: 2.14ms	remaining: 212ms
1:	learn: 45.7608372	total: 8.35ms	remaining: 409ms
2:	learn: 44.8825004	total: 13.5ms	remaining: 436ms
3:	learn: 44.0362738	total: 18ms	remaining: 433ms
4:	learn: 43.2086374	total: 23.1ms	remaining: 439ms
5:	learn: 42.5835773	total: 27.7ms	remaining: 435ms
6:	learn: 41.9673269	total: 32.3ms	remaining: 429ms
7:	learn: 41.4748717	total: 37.1ms	remaining: 427ms
8:	learn: 40.7129183	total: 41.9ms	remaining: 424ms
9:	learn: 39.8900884	total: 46.6ms	remaining: 419ms
10:	learn: 39.4142193	total: 51.2ms	remaining: 414ms
11:	learn: 38.8645613	total: 55.3ms	remaining: 405ms
12:	learn: 38.2394731	total: 59.6ms	remaining: 399ms
13:	learn: 37.6834515	total: 63.9ms	remaining: 392ms
14:	learn: 37.0673507	total: 68ms	remaining: 385ms
15:	learn: 36.4728340	total: 72.4ms	remaining: 380ms
16:	learn: 36.0489086	total: 76.9ms	remaining: 375ms
17:	learn: 35.4744141	total: 81.6ms	remaining: 372ms
18:	learn: 35.0106021	total: 86ms	remaining: 366ms
19:	learn: 34.5586053	total: 90.2ms	remaining: 361ms
20:	learn: 34.1308223	total: 94.1ms	remaining: 354ms
21:	learn: 33.7701450	total: 98.4ms	remaining: 349ms
22:	learn: 33.4425444	total: 102ms	remaining: 343ms
23:	learn: 33.0296412	total: 107ms	remaining: 338ms
24:	learn: 32.6359803	total: 111ms	remaining: 333ms
25:	learn: 32.1846182	total: 115ms	remaining: 328ms
26:	learn: 31.7620230	total: 120ms	remaining: 323ms
27:	learn: 31.4669337	total: 124ms	remaining: 318ms
28:	learn: 31.0792062	total: 129ms	remaining: 315ms
29:	learn: 30.7970537	total: 133ms	remaining: 309ms
30:	learn: 30.4952215	total: 137ms	remaining: 305ms
31:	learn: 30.2845344	total: 141ms	remaining: 300ms
32:	learn: 29.9592732	total: 146ms	remaining: 296ms
33:	learn: 29.6798596	total: 151ms	remaining: 292ms
34:	learn: 29.3368905	total: 155ms	remaining: 289ms
35:	learn: 29.0621238	total: 160ms	remaining: 285ms
36:	learn: 28.6445375	total: 165ms	remaining: 281ms
37:	learn: 28.2418096	total: 169ms	remaining: 276ms
38:	learn: 27.9495390	total: 174ms	remaining: 271ms
39:	learn: 27.6958160	total: 178ms	remaining: 267ms
40:	learn: 27.4811189	total: 183ms	remaining: 263ms
41:	learn: 27.1494420	total: 187ms	remaining: 259ms
42:	learn: 26.8388873	total: 192ms	remaining: 254ms
43:	learn: 26.5721300	total: 196ms	remaining: 250ms
44:	learn: 26.3384738	total: 201ms	remaining: 245ms
45:	learn: 26.1894781	total: 206ms	remaining: 241ms
46:	learn: 25.9580198	total: 210ms	remaining: 237ms
47:	learn: 25.7897985	total: 215ms	remaining: 232ms
48:	learn: 25.6000271	total: 219ms	remaining: 228ms
49:	learn: 25.4130873	total: 224ms	remaining: 224ms
50:	learn: 25.1699061	total: 228ms	remaining: 219ms
51:	learn: 24.9324449	total: 233ms	remaining: 215ms
52:	learn: 24.7729152	total: 238ms	remaining: 211ms
53:	learn: 24.5026563	total: 242ms	remaining: 206ms
54:	learn: 24.2332627	total: 247ms	remaining: 202ms
55:	learn: 23.9611984	total: 255ms	remaining: 201ms
56:	learn: 23.7862603	total: 263ms	remaining: 198ms
57:	learn: 23.6318154	total: 273ms	remaining: 198ms
58:	learn: 23.4443306	total: 281ms	remaining: 195ms
59:	learn: 23.2581425	total: 287ms	remaining: 191ms
60:	learn: 23.0549901	total: 293ms	remaining: 187ms
61:	learn: 22.8666218	total: 298ms	remaining: 183ms
62:	learn: 22.6956739	total: 303ms	remaining: 178ms
63:	learn: 22.5068544	total: 309ms	remaining: 174ms
64:	learn: 22.1859147	total: 314ms	remaining: 169ms
65:	learn: 22.0462043	total: 319ms	remaining: 164ms
66:	learn: 21.9329563	total: 325ms	remaining: 160ms
67:	learn: 21.8029736	total: 329ms	remaining: 155ms
68:	learn: 21.6861091	total: 335ms	remaining: 150ms
69:	learn: 21.4838140	total: 340ms	remaining: 146ms
70:	learn: 21.3548921	total: 346ms	remaining: 141ms
71:	learn: 21.2244517	total: 351ms	remaining: 137ms
72:	learn: 21.0702958	total: 356ms	remaining: 132ms
73:	learn: 20.9224662	total: 360ms	remaining: 126ms
74:	learn: 20.8150357	total: 364ms	remaining: 121ms
75:	learn: 20.6962739	total: 369ms	remaining: 116ms
76:	learn: 20.5809258	total: 373ms	remaining: 112ms
77:	learn: 20.4735470	total: 378ms	remaining: 107ms
78:	learn: 20.3778167	total: 383ms	remaining: 102ms
79:	learn: 20.2211268	total: 387ms	remaining: 96.8ms
80:	learn: 20.1478678	total: 392ms	remaining: 91.9ms
81:	learn: 20.1032967	total: 396ms	remaining: 87ms
82:	learn: 19.9236300	total: 401ms	remaining: 82.1ms
83:	learn: 19.8151745	total: 406ms	remaining: 77.2ms
84:	learn: 19.7099856	total: 410ms	remaining: 72.3ms
85:	learn: 19.6264833	total: 414ms	remaining: 67.4ms
86:	learn: 19.4916361	total: 419ms	remaining: 62.6ms
87:	learn: 19.4050529	total: 424ms	remaining: 57.8ms
88:	learn: 19.2547065	total: 429ms	remaining: 53ms
89:	learn: 19.1610225	total: 434ms	remaining: 48.2ms
90:	learn: 19.0898958	total: 438ms	remaining: 43.4ms
91:	learn: 19.0489664	total: 444ms	remaining: 38.6ms
92:	learn: 18.9206240	total: 465ms	remaining: 35ms
93:	learn: 18.8636239	total: 470ms	remaining: 30ms
94:	learn: 18.8126187	total: 476ms	remaining: 25.1ms
95:	learn: 18.7579275	total: 481ms	remaining: 20ms
96:	learn: 18.6382753	total: 486ms	remaining: 15ms
97:	learn: 18.5397334	total: 490ms	remaining: 10ms
98:	learn: 18.4375951	total: 494ms	remaining: 4.99ms
99:	learn: 18.4033755	total: 499ms	remaining: 0us
0:	learn: 46.1068821	total: 1.84ms	remaining: 183ms
1:	learn: 45.3970261	total: 6.36ms	remaining: 312ms
2:	learn: 44.8732696	total: 10.7ms	remaining: 345ms
3:	learn: 44.1290184	total: 15.1ms	remaining: 361ms
4:	learn: 43.3290271	total: 19.4ms	remaining: 368ms
5:	learn: 42.7069090	total: 23.7ms	remaining: 371ms
6:	learn: 42.0572971	total: 27.9ms	remaining: 371ms
7:	learn: 41.4797924	total: 32.5ms	remaining: 374ms
8:	learn: 41.0023122	total: 36.9ms	remaining: 373ms
9:	learn: 40.5330570	total: 40.9ms	remaining: 368ms
10:	learn: 39.9726545	total: 45.2ms	remaining: 366ms
11:	learn: 39.3044053	total: 49.7ms	remaining: 364ms
12:	learn: 38.8169735	total: 54.1ms	remaining: 362ms
13:	learn: 38.2458761	total: 58.6ms	remaining: 360ms
14:	learn: 37.6280321	total: 63.1ms	remaining: 357ms
15:	learn: 37.0800610	total: 68.1ms	remaining: 357ms
16:	learn: 36.5489363	total: 72.8ms	remaining: 356ms
17:	learn: 36.0981456	total: 77.4ms	remaining: 352ms
18:	learn: 35.6956274	total: 82.3ms	remaining: 351ms
19:	learn: 35.1471999	total: 87.1ms	remaining: 348ms
20:	learn: 34.6235408	total: 91.6ms	remaining: 345ms
21:	learn: 34.1987018	total: 98.8ms	remaining: 350ms
22:	learn: 33.8985062	total: 106ms	remaining: 356ms
23:	learn: 33.3869017	total: 117ms	remaining: 370ms
24:	learn: 32.9100550	total: 122ms	remaining: 367ms
25:	learn: 32.4156208	total: 130ms	remaining: 369ms
26:	learn: 31.9320493	total: 135ms	remaining: 365ms
27:	learn: 31.5711468	total: 140ms	remaining: 360ms
28:	learn: 31.2404433	total: 145ms	remaining: 355ms
29:	learn: 30.8807946	total: 150ms	remaining: 351ms
30:	learn: 30.5948438	total: 156ms	remaining: 347ms
31:	learn: 30.3885560	total: 161ms	remaining: 342ms
32:	learn: 30.0625101	total: 167ms	remaining: 338ms
33:	learn: 29.9113114	total: 172ms	remaining: 335ms
34:	learn: 29.6983470	total: 177ms	remaining: 329ms
35:	learn: 29.4775849	total: 182ms	remaining: 324ms
36:	learn: 29.0538055	total: 188ms	remaining: 319ms
37:	learn: 28.6792318	total: 193ms	remaining: 315ms
38:	learn: 28.4231383	total: 197ms	remaining: 309ms
39:	learn: 28.1078565	total: 202ms	remaining: 302ms
40:	learn: 27.9079179	total: 206ms	remaining: 296ms
41:	learn: 27.6721506	total: 210ms	remaining: 290ms
42:	learn: 27.4228033	total: 214ms	remaining: 284ms
43:	learn: 27.1740534	total: 219ms	remaining: 279ms
44:	learn: 26.8584071	total: 223ms	remaining: 273ms
45:	learn: 26.6902083	total: 227ms	remaining: 267ms
46:	learn: 26.4855335	total: 232ms	remaining: 261ms
47:	learn: 26.2730822	total: 236ms	remaining: 256ms
48:	learn: 26.1058689	total: 241ms	remaining: 251ms
49:	learn: 25.8587318	total: 245ms	remaining: 245ms
50:	learn: 25.7558005	total: 249ms	remaining: 240ms
51:	learn: 25.5846925	total: 254ms	remaining: 234ms
52:	learn: 25.4249887	total: 258ms	remaining: 229ms
53:	learn: 25.1911054	total: 262ms	remaining: 224ms
54:	learn: 25.0544755	total: 267ms	remaining: 219ms
55:	learn: 24.8874006	total: 272ms	remaining: 214ms
56:	learn: 24.7736279	total: 277ms	remaining: 209ms
57:	learn: 24.6156255	total: 281ms	remaining: 204ms
58:	learn: 24.3962421	total: 286ms	remaining: 199ms
59:	learn: 24.2685129	total: 291ms	remaining: 194ms
60:	learn: 24.1874096	total: 300ms	remaining: 192ms
61:	learn: 24.0394287	total: 307ms	remaining: 188ms
62:	learn: 23.9281768	total: 314ms	remaining: 185ms
63:	learn: 23.7423900	total: 319ms	remaining: 179ms
64:	learn: 23.6015209	total: 325ms	remaining: 175ms
65:	learn: 23.4677943	total: 329ms	remaining: 170ms
66:	learn: 23.3215256	total: 333ms	remaining: 164ms
67:	learn: 23.1869360	total: 338ms	remaining: 159ms
68:	learn: 22.9691180	total: 342ms	remaining: 154ms
69:	learn: 22.7531657	total: 346ms	remaining: 148ms
70:	learn: 22.6133477	total: 350ms	remaining: 143ms
71:	learn: 22.3452758	total: 355ms	remaining: 138ms
72:	learn: 22.2065350	total: 359ms	remaining: 133ms
73:	learn: 22.1071155	total: 363ms	remaining: 128ms
74:	learn: 21.9740686	total: 368ms	remaining: 123ms
75:	learn: 21.8892033	total: 372ms	remaining: 117ms
76:	learn: 21.8267882	total: 376ms	remaining: 112ms
77:	learn: 21.7423479	total: 381ms	remaining: 107ms
78:	learn: 21.6242075	total: 385ms	remaining: 102ms
79:	learn: 21.5016910	total: 389ms	remaining: 97.3ms
80:	learn: 21.4806623	total: 390ms	remaining: 91.4ms
81:	learn: 21.3166637	total: 394ms	remaining: 86.5ms
82:	learn: 21.2222534	total: 398ms	remaining: 81.6ms
83:	learn: 21.1535708	total: 403ms	remaining: 76.7ms
84:	learn: 21.0858902	total: 407ms	remaining: 71.8ms
85:	learn: 20.9206003	total: 411ms	remaining: 66.9ms
86:	learn: 20.8674695	total: 415ms	remaining: 62.1ms
87:	learn: 20.8089875	total: 420ms	remaining: 57.3ms
88:	learn: 20.7085401	total: 424ms	remaining: 52.5ms
89:	learn: 20.5513468	total: 429ms	remaining: 47.7ms
90:	learn: 20.4586742	total: 434ms	remaining: 42.9ms
91:	learn: 20.3932149	total: 438ms	remaining: 38.1ms
92:	learn: 20.3000895	total: 442ms	remaining: 33.3ms
93:	learn: 20.2254009	total: 447ms	remaining: 28.5ms
94:	learn: 20.1750050	total: 451ms	remaining: 23.7ms
95:	learn: 20.0715579	total: 456ms	remaining: 19ms
96:	learn: 19.9920082	total: 460ms	remaining: 14.2ms
97:	learn: 19.9664401	total: 465ms	remaining: 9.49ms
98:	learn: 19.8689673	total: 470ms	remaining: 4.75ms
99:	learn: 19.7537356	total: 475ms	remaining: 0us
0:	learn: 46.8832143	total: 5.46ms	remaining: 541ms
1:	learn: 45.8700349	total: 10.5ms	remaining: 516ms
2:	learn: 45.0546867	total: 15.8ms	remaining: 511ms
3:	learn: 44.2829439	total: 21.1ms	remaining: 506ms
4:	learn: 43.4609042	total: 26.2ms	remaining: 498ms
5:	learn: 42.6754991	total: 31.4ms	remaining: 493ms
6:	learn: 41.9234935	total: 36.9ms	remaining: 490ms
7:	learn: 41.3987518	total: 41.7ms	remaining: 479ms
8:	learn: 40.6625066	total: 47ms	remaining: 475ms
9:	learn: 40.0029561	total: 52.1ms	remaining: 469ms
10:	learn: 39.3897033	total: 56.8ms	remaining: 460ms
11:	learn: 38.7741453	total: 61.6ms	remaining: 452ms
12:	learn: 38.1201100	total: 66.1ms	remaining: 443ms
13:	learn: 37.5129454	total: 70.2ms	remaining: 431ms
14:	learn: 37.2062206	total: 74.7ms	remaining: 423ms
15:	learn: 36.6831741	total: 78.9ms	remaining: 414ms
16:	learn: 36.2902788	total: 83.1ms	remaining: 406ms
17:	learn: 35.7639930	total: 87.4ms	remaining: 398ms
18:	learn: 35.2580953	total: 91.7ms	remaining: 391ms
19:	learn: 34.7809739	total: 96.2ms	remaining: 385ms
20:	learn: 34.1330433	total: 100ms	remaining: 377ms
21:	learn: 33.7302219	total: 105ms	remaining: 371ms
22:	learn: 33.3502495	total: 109ms	remaining: 364ms
23:	learn: 33.0067804	total: 113ms	remaining: 357ms
24:	learn: 32.6897855	total: 117ms	remaining: 352ms
25:	learn: 32.4361119	total: 122ms	remaining: 346ms
26:	learn: 32.1278981	total: 126ms	remaining: 341ms
27:	learn: 31.7863721	total: 130ms	remaining: 335ms
28:	learn: 31.4791450	total: 135ms	remaining: 330ms
29:	learn: 31.1760161	total: 140ms	remaining: 326ms
30:	learn: 30.9238888	total: 144ms	remaining: 321ms
31:	learn: 30.5500905	total: 149ms	remaining: 317ms
32:	learn: 30.3078126	total: 154ms	remaining: 312ms
33:	learn: 30.0480921	total: 158ms	remaining: 307ms
34:	learn: 29.8623884	total: 163ms	remaining: 303ms
35:	learn: 29.5991038	total: 172ms	remaining: 306ms
36:	learn: 29.4061161	total: 179ms	remaining: 305ms
37:	learn: 29.0269515	total: 187ms	remaining: 304ms
38:	learn: 28.8224959	total: 207ms	remaining: 324ms
39:	learn: 28.6417843	total: 211ms	remaining: 317ms
40:	learn: 28.3633368	total: 216ms	remaining: 310ms
41:	learn: 28.0200246	total: 220ms	remaining: 304ms
42:	learn: 27.7221254	total: 224ms	remaining: 297ms
43:	learn: 27.5105818	total: 229ms	remaining: 291ms
44:	learn: 27.3551010	total: 233ms	remaining: 285ms
45:	learn: 27.0787522	total: 237ms	remaining: 278ms
46:	learn: 26.8726317	total: 242ms	remaining: 273ms
47:	learn: 26.8003277	total: 246ms	remaining: 266ms
48:	learn: 26.5493785	total: 250ms	remaining: 261ms
49:	learn: 26.3699550	total: 255ms	remaining: 255ms
50:	learn: 26.1519631	total: 259ms	remaining: 249ms
51:	learn: 25.9277325	total: 263ms	remaining: 243ms
52:	learn: 25.7286035	total: 268ms	remaining: 238ms
53:	learn: 25.4999193	total: 273ms	remaining: 232ms
54:	learn: 25.3434703	total: 277ms	remaining: 226ms
55:	learn: 25.1497545	total: 281ms	remaining: 221ms
56:	learn: 24.9498143	total: 286ms	remaining: 216ms
57:	learn: 24.6509390	total: 290ms	remaining: 210ms
58:	learn: 24.5576144	total: 294ms	remaining: 205ms
59:	learn: 24.4265144	total: 299ms	remaining: 199ms
60:	learn: 24.3100706	total: 303ms	remaining: 194ms
61:	learn: 24.1727952	total: 307ms	remaining: 188ms
62:	learn: 24.0478558	total: 311ms	remaining: 183ms
63:	learn: 23.9124577	total: 316ms	remaining: 178ms
64:	learn: 23.7703718	total: 321ms	remaining: 173ms
65:	learn: 23.5975027	total: 325ms	remaining: 168ms
66:	learn: 23.4318077	total: 330ms	remaining: 163ms
67:	learn: 23.3099691	total: 334ms	remaining: 157ms
68:	learn: 23.1947982	total: 339ms	remaining: 152ms
69:	learn: 23.0260174	total: 344ms	remaining: 147ms
70:	learn: 22.8523100	total: 352ms	remaining: 144ms
71:	learn: 22.8028534	total: 361ms	remaining: 140ms
72:	learn: 22.6880658	total: 369ms	remaining: 136ms
73:	learn: 22.5956809	total: 375ms	remaining: 132ms
74:	learn: 22.4692932	total: 382ms	remaining: 127ms
75:	learn: 22.2863504	total: 387ms	remaining: 122ms
76:	learn: 22.1911237	total: 392ms	remaining: 117ms
77:	learn: 22.1098391	total: 397ms	remaining: 112ms
78:	learn: 22.0182738	total: 403ms	remaining: 107ms
79:	learn: 21.9306746	total: 408ms	remaining: 102ms
80:	learn: 21.7508233	total: 413ms	remaining: 97ms
81:	learn: 21.7108446	total: 419ms	remaining: 91.9ms
82:	learn: 21.5931852	total: 425ms	remaining: 87.1ms
83:	learn: 21.4480361	total: 430ms	remaining: 81.9ms
84:	learn: 21.3092119	total: 436ms	remaining: 76.9ms
85:	learn: 21.2605557	total: 443ms	remaining: 72.1ms
86:	learn: 21.1123597	total: 448ms	remaining: 66.9ms
87:	learn: 21.0115642	total: 453ms	remaining: 61.7ms
88:	learn: 20.9389040	total: 457ms	remaining: 56.5ms
89:	learn: 20.8300300	total: 461ms	remaining: 51.3ms
90:	learn: 20.7159733	total: 466ms	remaining: 46ms
91:	learn: 20.6282090	total: 470ms	remaining: 40.8ms
92:	learn: 20.5164529	total: 474ms	remaining: 35.7ms
93:	learn: 20.4692032	total: 478ms	remaining: 30.5ms
94:	learn: 20.3768451	total: 483ms	remaining: 25.4ms
95:	learn: 20.2808056	total: 487ms	remaining: 20.3ms
96:	learn: 20.2082089	total: 492ms	remaining: 15.2ms
97:	learn: 20.1698768	total: 496ms	remaining: 10.1ms
98:	learn: 20.1048816	total: 500ms	remaining: 5.05ms
99:	learn: 20.0086159	total: 504ms	remaining: 0us
0:	learn: 27.6506730	total: 5.22ms	remaining: 517ms
1:	learn: 27.1638793	total: 11.1ms	remaining: 543ms
2:	learn: 26.8000665	total: 15.5ms	remaining: 503ms
3:	learn: 26.4256132	total: 19.8ms	remaining: 476ms
4:	learn: 26.0088351	total: 24.2ms	remaining: 459ms
5:	learn: 25.7558298	total: 28.4ms	remaining: 445ms
6:	learn: 25.3380711	total: 32.8ms	remaining: 436ms
7:	learn: 25.0571611	total: 37ms	remaining: 426ms
8:	learn: 24.6790148	total: 41.8ms	remaining: 423ms
9:	learn: 24.3600941	total: 46.1ms	remaining: 415ms
10:	learn: 24.1105667	total: 50.5ms	remaining: 409ms
11:	learn: 23.7736542	total: 54.8ms	remaining: 402ms
12:	learn: 23.5824429	total: 59.3ms	remaining: 397ms
13:	learn: 23.2658303	total: 63.3ms	remaining: 389ms
14:	learn: 23.0061886	total: 67.4ms	remaining: 382ms
15:	learn: 22.8060389	total: 71.5ms	remaining: 376ms
16:	learn: 22.5899735	total: 76.2ms	remaining: 372ms
17:	learn: 22.3625048	total: 80.5ms	remaining: 367ms
18:	learn: 22.0706477	total: 84.9ms	remaining: 362ms
19:	learn: 21.8739394	total: 89.1ms	remaining: 357ms
20:	learn: 21.6143650	total: 93.5ms	remaining: 352ms
21:	learn: 21.4571623	total: 97.7ms	remaining: 346ms
22:	learn: 21.2395769	total: 102ms	remaining: 341ms
23:	learn: 20.9801795	total: 106ms	remaining: 336ms
24:	learn: 20.8036808	total: 110ms	remaining: 331ms
25:	learn: 20.6387539	total: 115ms	remaining: 327ms
26:	learn: 20.4401427	total: 119ms	remaining: 322ms
27:	learn: 20.2879575	total: 123ms	remaining: 316ms
28:	learn: 20.0538664	total: 127ms	remaining: 312ms
29:	learn: 19.8363102	total: 132ms	remaining: 308ms
30:	learn: 19.7015446	total: 136ms	remaining: 303ms
31:	learn: 19.5483114	total: 141ms	remaining: 300ms
32:	learn: 19.4163053	total: 146ms	remaining: 297ms
33:	learn: 19.2880625	total: 151ms	remaining: 293ms
34:	learn: 19.1303389	total: 155ms	remaining: 288ms
35:	learn: 18.9237448	total: 160ms	remaining: 284ms
36:	learn: 18.8142925	total: 165ms	remaining: 280ms
37:	learn: 18.6994696	total: 172ms	remaining: 280ms
38:	learn: 18.5629211	total: 178ms	remaining: 279ms
39:	learn: 18.4600917	total: 185ms	remaining: 278ms
40:	learn: 18.3567139	total: 191ms	remaining: 275ms
41:	learn: 18.2120527	total: 196ms	remaining: 271ms
42:	learn: 18.0688062	total: 202ms	remaining: 267ms
43:	learn: 17.9250181	total: 208ms	remaining: 265ms
44:	learn: 17.8399138	total: 214ms	remaining: 261ms
45:	learn: 17.6720713	total: 219ms	remaining: 257ms
46:	learn: 17.5273091	total: 224ms	remaining: 253ms
47:	learn: 17.4232814	total: 229ms	remaining: 248ms
48:	learn: 17.2957579	total: 235ms	remaining: 244ms
49:	learn: 17.1892874	total: 240ms	remaining: 240ms
50:	learn: 17.0490355	total: 245ms	remaining: 236ms
51:	learn: 16.9666450	total: 251ms	remaining: 232ms
52:	learn: 16.8600056	total: 257ms	remaining: 228ms
53:	learn: 16.7542588	total: 262ms	remaining: 223ms
54:	learn: 16.6316077	total: 268ms	remaining: 219ms
55:	learn: 16.5588112	total: 274ms	remaining: 215ms
56:	learn: 16.5010186	total: 278ms	remaining: 210ms
57:	learn: 16.4081540	total: 284ms	remaining: 205ms
58:	learn: 16.3040451	total: 289ms	remaining: 201ms
59:	learn: 16.1890564	total: 294ms	remaining: 196ms
60:	learn: 16.0977103	total: 298ms	remaining: 191ms
61:	learn: 15.9627607	total: 302ms	remaining: 185ms
62:	learn: 15.9022248	total: 306ms	remaining: 180ms
63:	learn: 15.8151881	total: 311ms	remaining: 175ms
64:	learn: 15.7353125	total: 315ms	remaining: 170ms
65:	learn: 15.6312897	total: 319ms	remaining: 164ms
66:	learn: 15.5330927	total: 324ms	remaining: 159ms
67:	learn: 15.4698681	total: 328ms	remaining: 154ms
68:	learn: 15.4108571	total: 332ms	remaining: 149ms
69:	learn: 15.3492945	total: 337ms	remaining: 144ms
70:	learn: 15.3036540	total: 341ms	remaining: 139ms
71:	learn: 15.2390833	total: 346ms	remaining: 134ms
72:	learn: 15.1556327	total: 350ms	remaining: 129ms
73:	learn: 15.1016315	total: 354ms	remaining: 124ms
74:	learn: 15.0287076	total: 359ms	remaining: 120ms
75:	learn: 14.9530572	total: 364ms	remaining: 115ms
76:	learn: 14.8965517	total: 368ms	remaining: 110ms
77:	learn: 14.8125426	total: 373ms	remaining: 105ms
78:	learn: 14.7435359	total: 378ms	remaining: 100ms
79:	learn: 14.6963163	total: 383ms	remaining: 95.6ms
80:	learn: 14.6200060	total: 387ms	remaining: 90.9ms
81:	learn: 14.5707760	total: 396ms	remaining: 86.8ms
82:	learn: 14.5053651	total: 404ms	remaining: 82.7ms
83:	learn: 14.4115458	total: 410ms	remaining: 78.2ms
84:	learn: 14.3117159	total: 417ms	remaining: 73.5ms
85:	learn: 14.2511326	total: 422ms	remaining: 68.7ms
86:	learn: 14.1372486	total: 426ms	remaining: 63.7ms
87:	learn: 14.0992301	total: 431ms	remaining: 58.8ms
88:	learn: 14.0228331	total: 435ms	remaining: 53.8ms
89:	learn: 13.9249836	total: 440ms	remaining: 48.9ms
90:	learn: 13.8679364	total: 444ms	remaining: 43.9ms
91:	learn: 13.8405578	total: 448ms	remaining: 39ms
92:	learn: 13.7711325	total: 452ms	remaining: 34.1ms
93:	learn: 13.7357019	total: 457ms	remaining: 29.1ms
94:	learn: 13.6735271	total: 461ms	remaining: 24.3ms
95:	learn: 13.5682393	total: 466ms	remaining: 19.4ms
96:	learn: 13.5342610	total: 470ms	remaining: 14.5ms
97:	learn: 13.4710034	total: 474ms	remaining: 9.68ms
98:	learn: 13.4022402	total: 479ms	remaining: 4.84ms
99:	learn: 13.3351238	total: 483ms	remaining: 0us
0:	learn: 42.9181702	total: 5.03ms	remaining: 498ms
1:	learn: 42.0286736	total: 9.5ms	remaining: 465ms
2:	learn: 41.2764568	total: 14.1ms	remaining: 456ms
3:	learn: 40.4721918	total: 18.4ms	remaining: 442ms
4:	learn: 39.8518928	total: 22.6ms	remaining: 430ms
5:	learn: 39.2645479	total: 27.3ms	remaining: 428ms
6:	learn: 38.4453704	total: 32ms	remaining: 425ms
7:	learn: 37.7122059	total: 36.7ms	remaining: 422ms
8:	learn: 36.9185796	total: 41.7ms	remaining: 422ms
9:	learn: 36.1668427	total: 46.6ms	remaining: 420ms
10:	learn: 35.5639029	total: 51.3ms	remaining: 415ms
11:	learn: 34.7724193	total: 56.9ms	remaining: 417ms
12:	learn: 34.3053433	total: 65.5ms	remaining: 439ms
13:	learn: 33.6561327	total: 67.4ms	remaining: 414ms
14:	learn: 33.0134042	total: 80.5ms	remaining: 456ms
15:	learn: 32.4483300	total: 86.2ms	remaining: 453ms
16:	learn: 31.8581144	total: 92.7ms	remaining: 453ms
17:	learn: 31.2858301	total: 98ms	remaining: 446ms
18:	learn: 30.8483018	total: 103ms	remaining: 440ms
19:	learn: 30.4174622	total: 109ms	remaining: 436ms
20:	learn: 29.8994411	total: 114ms	remaining: 430ms
21:	learn: 29.5045355	total: 120ms	remaining: 424ms
22:	learn: 28.9923519	total: 125ms	remaining: 418ms
23:	learn: 28.4255717	total: 130ms	remaining: 411ms
24:	learn: 28.0283139	total: 135ms	remaining: 405ms
25:	learn: 27.7434814	total: 140ms	remaining: 399ms
26:	learn: 27.2770731	total: 146ms	remaining: 396ms
27:	learn: 26.8928270	total: 153ms	remaining: 392ms
28:	learn: 26.4282671	total: 157ms	remaining: 384ms
29:	learn: 26.0272764	total: 161ms	remaining: 377ms
30:	learn: 25.7579312	total: 166ms	remaining: 369ms
31:	learn: 25.4542434	total: 170ms	remaining: 362ms
32:	learn: 25.1232564	total: 175ms	remaining: 355ms
33:	learn: 24.8110795	total: 180ms	remaining: 349ms
34:	learn: 24.5077579	total: 184ms	remaining: 342ms
35:	learn: 24.1909000	total: 188ms	remaining: 334ms
36:	learn: 23.8719468	total: 193ms	remaining: 328ms
37:	learn: 23.5764366	total: 194ms	remaining: 317ms
38:	learn: 23.3468086	total: 199ms	remaining: 311ms
39:	learn: 23.0908771	total: 203ms	remaining: 305ms
40:	learn: 22.8580876	total: 208ms	remaining: 299ms
41:	learn: 22.6060825	total: 213ms	remaining: 294ms
42:	learn: 22.4125407	total: 217ms	remaining: 288ms
43:	learn: 22.1990617	total: 222ms	remaining: 282ms
44:	learn: 21.9716164	total: 226ms	remaining: 276ms
45:	learn: 21.8360935	total: 230ms	remaining: 271ms
46:	learn: 21.6169256	total: 235ms	remaining: 265ms
47:	learn: 21.4620612	total: 240ms	remaining: 260ms
48:	learn: 21.2894194	total: 245ms	remaining: 255ms
49:	learn: 21.1066266	total: 250ms	remaining: 250ms
50:	learn: 20.9484898	total: 254ms	remaining: 244ms
51:	learn: 20.7195338	total: 259ms	remaining: 239ms
52:	learn: 20.4899740	total: 264ms	remaining: 234ms
53:	learn: 20.3356583	total: 272ms	remaining: 232ms
54:	learn: 20.0754393	total: 280ms	remaining: 229ms
55:	learn: 19.9199159	total: 287ms	remaining: 225ms
56:	learn: 19.7761128	total: 293ms	remaining: 221ms
57:	learn: 19.6533060	total: 299ms	remaining: 217ms
58:	learn: 19.5113942	total: 304ms	remaining: 211ms
59:	learn: 19.3985022	total: 308ms	remaining: 206ms
60:	learn: 19.2683443	total: 313ms	remaining: 200ms
61:	learn: 19.1460824	total: 319ms	remaining: 195ms
62:	learn: 19.0042655	total: 323ms	remaining: 190ms
63:	learn: 18.8720873	total: 328ms	remaining: 185ms
64:	learn: 18.7183888	total: 333ms	remaining: 179ms
65:	learn: 18.5472360	total: 338ms	remaining: 174ms
66:	learn: 18.3976642	total: 342ms	remaining: 169ms
67:	learn: 18.2282851	total: 347ms	remaining: 163ms
68:	learn: 18.1469157	total: 352ms	remaining: 158ms
69:	learn: 18.0649494	total: 356ms	remaining: 153ms
70:	learn: 17.9485405	total: 361ms	remaining: 147ms
71:	learn: 17.8460261	total: 365ms	remaining: 142ms
72:	learn: 17.7679843	total: 370ms	remaining: 137ms
73:	learn: 17.5989290	total: 374ms	remaining: 132ms
74:	learn: 17.4381322	total: 378ms	remaining: 126ms
75:	learn: 17.3370886	total: 383ms	remaining: 121ms
76:	learn: 17.2675308	total: 388ms	remaining: 116ms
77:	learn: 17.1946430	total: 392ms	remaining: 111ms
78:	learn: 17.0923725	total: 396ms	remaining: 105ms
79:	learn: 17.0537265	total: 400ms	remaining: 100ms
80:	learn: 16.9456831	total: 405ms	remaining: 95ms
81:	learn: 16.8457353	total: 409ms	remaining: 89.8ms
82:	learn: 16.7469310	total: 413ms	remaining: 84.7ms
83:	learn: 16.6679953	total: 418ms	remaining: 79.6ms
84:	learn: 16.6274189	total: 422ms	remaining: 74.5ms
85:	learn: 16.5516530	total: 426ms	remaining: 69.4ms
86:	learn: 16.4886066	total: 430ms	remaining: 64.3ms
87:	learn: 16.3947859	total: 434ms	remaining: 59.2ms
88:	learn: 16.3406495	total: 440ms	remaining: 54.3ms
89:	learn: 16.3019195	total: 445ms	remaining: 49.4ms
90:	learn: 16.1860681	total: 449ms	remaining: 44.4ms
91:	learn: 16.1282812	total: 454ms	remaining: 39.5ms
92:	learn: 16.0303652	total: 458ms	remaining: 34.5ms
93:	learn: 15.9561692	total: 463ms	remaining: 29.5ms
94:	learn: 15.8733994	total: 468ms	remaining: 24.6ms
95:	learn: 15.8108833	total: 477ms	remaining: 19.9ms
96:	learn: 15.7606004	total: 487ms	remaining: 15.1ms
97:	learn: 15.6984664	total: 494ms	remaining: 10.1ms
98:	learn: 15.6223632	total: 502ms	remaining: 5.07ms
99:	learn: 15.5671136	total: 507ms	remaining: 0us
0:	learn: 46.4788614	total: 1.91ms	remaining: 189ms
1:	learn: 45.7608372	total: 6.91ms	remaining: 339ms
2:	learn: 44.8825004	total: 11.5ms	remaining: 372ms
3:	learn: 44.0362738	total: 15.7ms	remaining: 377ms
4:	learn: 43.2086374	total: 19.9ms	remaining: 378ms
5:	learn: 42.5835773	total: 24.8ms	remaining: 388ms
6:	learn: 41.9673269	total: 29.2ms	remaining: 388ms
7:	learn: 41.4748717	total: 33.5ms	remaining: 385ms
8:	learn: 40.7129183	total: 38.1ms	remaining: 386ms
9:	learn: 39.8900884	total: 42.8ms	remaining: 385ms
10:	learn: 39.4142193	total: 47.1ms	remaining: 381ms
11:	learn: 38.8645613	total: 51.4ms	remaining: 377ms
12:	learn: 38.2394731	total: 55.8ms	remaining: 373ms
13:	learn: 37.6834515	total: 60ms	remaining: 369ms
14:	learn: 37.0673507	total: 64.1ms	remaining: 363ms
15:	learn: 36.4728340	total: 68.6ms	remaining: 360ms
16:	learn: 36.0489086	total: 73ms	remaining: 356ms
17:	learn: 35.4744141	total: 77.6ms	remaining: 353ms
18:	learn: 35.0106021	total: 81.8ms	remaining: 349ms
19:	learn: 34.5586053	total: 86.3ms	remaining: 345ms
20:	learn: 34.1308223	total: 91.1ms	remaining: 343ms
21:	learn: 33.7701450	total: 95.9ms	remaining: 340ms
22:	learn: 33.4425444	total: 101ms	remaining: 337ms
23:	learn: 33.0296412	total: 106ms	remaining: 335ms
24:	learn: 32.6359803	total: 110ms	remaining: 331ms
25:	learn: 32.1846182	total: 115ms	remaining: 328ms
26:	learn: 31.7620230	total: 124ms	remaining: 335ms
27:	learn: 31.4669337	total: 132ms	remaining: 340ms
28:	learn: 31.0792062	total: 139ms	remaining: 339ms
29:	learn: 30.7970537	total: 143ms	remaining: 334ms
30:	learn: 30.4952215	total: 149ms	remaining: 332ms
31:	learn: 30.2845344	total: 153ms	remaining: 326ms
32:	learn: 29.9592732	total: 158ms	remaining: 320ms
33:	learn: 29.6798596	total: 162ms	remaining: 315ms
34:	learn: 29.3368905	total: 167ms	remaining: 310ms
35:	learn: 29.0621238	total: 171ms	remaining: 304ms
36:	learn: 28.6445375	total: 175ms	remaining: 298ms
37:	learn: 28.2418096	total: 180ms	remaining: 293ms
38:	learn: 27.9495390	total: 184ms	remaining: 288ms
39:	learn: 27.6958160	total: 188ms	remaining: 282ms
40:	learn: 27.4811189	total: 192ms	remaining: 277ms
41:	learn: 27.1494420	total: 197ms	remaining: 272ms
42:	learn: 26.8388873	total: 201ms	remaining: 266ms
43:	learn: 26.5721300	total: 205ms	remaining: 261ms
44:	learn: 26.3384738	total: 209ms	remaining: 256ms
45:	learn: 26.1894781	total: 214ms	remaining: 251ms
46:	learn: 25.9580198	total: 219ms	remaining: 246ms
47:	learn: 25.7897985	total: 223ms	remaining: 242ms
48:	learn: 25.6000271	total: 228ms	remaining: 237ms
49:	learn: 25.4130873	total: 232ms	remaining: 232ms
50:	learn: 25.1699061	total: 237ms	remaining: 227ms
51:	learn: 24.9324449	total: 241ms	remaining: 223ms
52:	learn: 24.7729152	total: 246ms	remaining: 218ms
53:	learn: 24.5026563	total: 250ms	remaining: 213ms
54:	learn: 24.2332627	total: 254ms	remaining: 208ms
55:	learn: 23.9611984	total: 259ms	remaining: 203ms
56:	learn: 23.7862603	total: 263ms	remaining: 198ms
57:	learn: 23.6318154	total: 267ms	remaining: 193ms
58:	learn: 23.4443306	total: 271ms	remaining: 189ms
59:	learn: 23.2581425	total: 276ms	remaining: 184ms
60:	learn: 23.0549901	total: 280ms	remaining: 179ms
61:	learn: 22.8666218	total: 285ms	remaining: 174ms
62:	learn: 22.6956739	total: 290ms	remaining: 170ms
63:	learn: 22.5068544	total: 294ms	remaining: 165ms
64:	learn: 22.1859147	total: 299ms	remaining: 161ms
65:	learn: 22.0462043	total: 304ms	remaining: 156ms
66:	learn: 21.9329563	total: 308ms	remaining: 152ms
67:	learn: 21.8029736	total: 312ms	remaining: 147ms
68:	learn: 21.6861091	total: 320ms	remaining: 144ms
69:	learn: 21.4838140	total: 328ms	remaining: 141ms
70:	learn: 21.3548921	total: 340ms	remaining: 139ms
71:	learn: 21.2244517	total: 348ms	remaining: 135ms
72:	learn: 21.0702958	total: 354ms	remaining: 131ms
73:	learn: 20.9224662	total: 359ms	remaining: 126ms
74:	learn: 20.8150357	total: 365ms	remaining: 122ms
75:	learn: 20.6962739	total: 370ms	remaining: 117ms
76:	learn: 20.5809258	total: 376ms	remaining: 112ms
77:	learn: 20.4735470	total: 381ms	remaining: 108ms
78:	learn: 20.3778167	total: 387ms	remaining: 103ms
79:	learn: 20.2211268	total: 392ms	remaining: 98.1ms
80:	learn: 20.1478678	total: 397ms	remaining: 93.2ms
81:	learn: 20.1032967	total: 403ms	remaining: 88.4ms
82:	learn: 19.9236300	total: 408ms	remaining: 83.5ms
83:	learn: 19.8151745	total: 414ms	remaining: 78.8ms
84:	learn: 19.7099856	total: 419ms	remaining: 73.9ms
85:	learn: 19.6264833	total: 423ms	remaining: 68.9ms
86:	learn: 19.4916361	total: 428ms	remaining: 64ms
87:	learn: 19.4050529	total: 432ms	remaining: 59ms
88:	learn: 19.2547065	total: 437ms	remaining: 54ms
89:	learn: 19.1610225	total: 441ms	remaining: 49ms
90:	learn: 19.0898958	total: 446ms	remaining: 44.1ms
91:	learn: 19.0489664	total: 450ms	remaining: 39.2ms
92:	learn: 18.9206240	total: 455ms	remaining: 34.2ms
93:	learn: 18.8636239	total: 459ms	remaining: 29.3ms
94:	learn: 18.8126187	total: 463ms	remaining: 24.4ms
95:	learn: 18.7579275	total: 467ms	remaining: 19.5ms
96:	learn: 18.6382753	total: 472ms	remaining: 14.6ms
97:	learn: 18.5397334	total: 477ms	remaining: 9.73ms
98:	learn: 18.4375951	total: 481ms	remaining: 4.86ms
99:	learn: 18.4033755	total: 486ms	remaining: 0us
0:	learn: 46.1068821	total: 2.56ms	remaining: 254ms
1:	learn: 45.3970261	total: 7.53ms	remaining: 369ms
2:	learn: 44.8732696	total: 12.9ms	remaining: 417ms
3:	learn: 44.1290184	total: 17.5ms	remaining: 420ms
4:	learn: 43.3290271	total: 22.2ms	remaining: 422ms
5:	learn: 42.7069090	total: 26.7ms	remaining: 418ms
6:	learn: 42.0572971	total: 31.2ms	remaining: 415ms
7:	learn: 41.4797924	total: 36ms	remaining: 414ms
8:	learn: 41.0023122	total: 40.3ms	remaining: 407ms
9:	learn: 40.5330570	total: 44.6ms	remaining: 402ms
10:	learn: 39.9726545	total: 48.9ms	remaining: 395ms
11:	learn: 39.3044053	total: 53.6ms	remaining: 393ms
12:	learn: 38.8169735	total: 57.7ms	remaining: 386ms
13:	learn: 38.2458761	total: 61.7ms	remaining: 379ms
14:	learn: 37.6280321	total: 66.3ms	remaining: 376ms
15:	learn: 37.0800610	total: 70.8ms	remaining: 372ms
16:	learn: 36.5489363	total: 75.1ms	remaining: 367ms
17:	learn: 36.0981456	total: 79.2ms	remaining: 361ms
18:	learn: 35.6956274	total: 83.4ms	remaining: 356ms
19:	learn: 35.1471999	total: 88.1ms	remaining: 352ms
20:	learn: 34.6235408	total: 92.3ms	remaining: 347ms
21:	learn: 34.1987018	total: 96.4ms	remaining: 342ms
22:	learn: 33.8985062	total: 101ms	remaining: 337ms
23:	learn: 33.3869017	total: 105ms	remaining: 333ms
24:	learn: 32.9100550	total: 109ms	remaining: 328ms
25:	learn: 32.4156208	total: 113ms	remaining: 323ms
26:	learn: 31.9320493	total: 118ms	remaining: 318ms
27:	learn: 31.5711468	total: 122ms	remaining: 314ms
28:	learn: 31.2404433	total: 127ms	remaining: 310ms
29:	learn: 30.8807946	total: 132ms	remaining: 307ms
30:	learn: 30.5948438	total: 137ms	remaining: 304ms
31:	learn: 30.3885560	total: 142ms	remaining: 301ms
32:	learn: 30.0625101	total: 146ms	remaining: 297ms
33:	learn: 29.9113114	total: 151ms	remaining: 292ms
34:	learn: 29.6983470	total: 156ms	remaining: 289ms
35:	learn: 29.4775849	total: 161ms	remaining: 286ms
36:	learn: 29.0538055	total: 168ms	remaining: 287ms
37:	learn: 28.6792318	total: 175ms	remaining: 286ms
38:	learn: 28.4231383	total: 181ms	remaining: 284ms
39:	learn: 28.1078565	total: 188ms	remaining: 282ms
40:	learn: 27.9079179	total: 194ms	remaining: 279ms
41:	learn: 27.6721506	total: 200ms	remaining: 276ms
42:	learn: 27.4228033	total: 207ms	remaining: 274ms
43:	learn: 27.1740534	total: 213ms	remaining: 271ms
44:	learn: 26.8584071	total: 219ms	remaining: 267ms
45:	learn: 26.6902083	total: 225ms	remaining: 264ms
46:	learn: 26.4855335	total: 231ms	remaining: 261ms
47:	learn: 26.2730822	total: 238ms	remaining: 258ms
48:	learn: 26.1058689	total: 244ms	remaining: 254ms
49:	learn: 25.8587318	total: 250ms	remaining: 250ms
50:	learn: 25.7558005	total: 255ms	remaining: 245ms
51:	learn: 25.5846925	total: 262ms	remaining: 242ms
52:	learn: 25.4249887	total: 268ms	remaining: 238ms
53:	learn: 25.1911054	total: 274ms	remaining: 233ms
54:	learn: 25.0544755	total: 279ms	remaining: 228ms
55:	learn: 24.8874006	total: 284ms	remaining: 223ms
56:	learn: 24.7736279	total: 289ms	remaining: 218ms
57:	learn: 24.6156255	total: 294ms	remaining: 213ms
58:	learn: 24.3962421	total: 299ms	remaining: 208ms
59:	learn: 24.2685129	total: 304ms	remaining: 202ms
60:	learn: 24.1874096	total: 308ms	remaining: 197ms
61:	learn: 24.0394287	total: 312ms	remaining: 191ms
62:	learn: 23.9281768	total: 317ms	remaining: 186ms
63:	learn: 23.7423900	total: 322ms	remaining: 181ms
64:	learn: 23.6015209	total: 327ms	remaining: 176ms
65:	learn: 23.4677943	total: 332ms	remaining: 171ms
66:	learn: 23.3215256	total: 337ms	remaining: 166ms
67:	learn: 23.1869360	total: 342ms	remaining: 161ms
68:	learn: 22.9691180	total: 347ms	remaining: 156ms
69:	learn: 22.7531657	total: 352ms	remaining: 151ms
70:	learn: 22.6133477	total: 358ms	remaining: 146ms
71:	learn: 22.3452758	total: 363ms	remaining: 141ms
72:	learn: 22.2065350	total: 368ms	remaining: 136ms
73:	learn: 22.1071155	total: 373ms	remaining: 131ms
74:	learn: 21.9740686	total: 378ms	remaining: 126ms
75:	learn: 21.8892033	total: 383ms	remaining: 121ms
76:	learn: 21.8267882	total: 410ms	remaining: 122ms
77:	learn: 21.7423479	total: 416ms	remaining: 117ms
78:	learn: 21.6242075	total: 420ms	remaining: 112ms
79:	learn: 21.5016910	total: 425ms	remaining: 106ms
80:	learn: 21.4806623	total: 425ms	remaining: 99.8ms
81:	learn: 21.3166637	total: 430ms	remaining: 94.3ms
82:	learn: 21.2222534	total: 434ms	remaining: 88.9ms
83:	learn: 21.1535708	total: 438ms	remaining: 83.5ms
84:	learn: 21.0858902	total: 443ms	remaining: 78.1ms
85:	learn: 20.9206003	total: 447ms	remaining: 72.8ms
86:	learn: 20.8674695	total: 452ms	remaining: 67.5ms
87:	learn: 20.8089875	total: 456ms	remaining: 62.2ms
88:	learn: 20.7085401	total: 460ms	remaining: 56.9ms
89:	learn: 20.5513468	total: 464ms	remaining: 51.6ms
90:	learn: 20.4586742	total: 469ms	remaining: 46.4ms
91:	learn: 20.3932149	total: 473ms	remaining: 41.1ms
92:	learn: 20.3000895	total: 477ms	remaining: 35.9ms
93:	learn: 20.2254009	total: 481ms	remaining: 30.7ms
94:	learn: 20.1750050	total: 486ms	remaining: 25.6ms
95:	learn: 20.0715579	total: 490ms	remaining: 20.4ms
96:	learn: 19.9920082	total: 494ms	remaining: 15.3ms
97:	learn: 19.9664401	total: 499ms	remaining: 10.2ms
98:	learn: 19.8689673	total: 503ms	remaining: 5.08ms
99:	learn: 19.7537356	total: 507ms	remaining: 0us
0:	learn: 46.8832143	total: 4.68ms	remaining: 463ms
1:	learn: 45.8700349	total: 9.84ms	remaining: 482ms
2:	learn: 45.0546867	total: 14.7ms	remaining: 475ms
3:	learn: 44.2829439	total: 19.5ms	remaining: 467ms
4:	learn: 43.4609042	total: 24ms	remaining: 455ms
5:	learn: 42.6754991	total: 28.7ms	remaining: 450ms
6:	learn: 41.9234935	total: 33.3ms	remaining: 442ms
7:	learn: 41.3987518	total: 38.7ms	remaining: 446ms
8:	learn: 40.6625066	total: 47.2ms	remaining: 477ms
9:	learn: 40.0029561	total: 55.3ms	remaining: 498ms
10:	learn: 39.3897033	total: 62.9ms	remaining: 509ms
11:	learn: 38.7741453	total: 70.6ms	remaining: 518ms
12:	learn: 38.1201100	total: 76ms	remaining: 508ms
13:	learn: 37.5129454	total: 81.3ms	remaining: 500ms
14:	learn: 37.2062206	total: 86.3ms	remaining: 489ms
15:	learn: 36.6831741	total: 91.5ms	remaining: 481ms
16:	learn: 36.2902788	total: 96.9ms	remaining: 473ms
17:	learn: 35.7639930	total: 102ms	remaining: 466ms
18:	learn: 35.2580953	total: 107ms	remaining: 458ms
19:	learn: 34.7809739	total: 114ms	remaining: 454ms
20:	learn: 34.1330433	total: 119ms	remaining: 447ms
21:	learn: 33.7302219	total: 124ms	remaining: 439ms
22:	learn: 33.3502495	total: 129ms	remaining: 432ms
23:	learn: 33.0067804	total: 135ms	remaining: 427ms
24:	learn: 32.6897855	total: 140ms	remaining: 420ms
25:	learn: 32.4361119	total: 144ms	remaining: 409ms
26:	learn: 32.1278981	total: 148ms	remaining: 400ms
27:	learn: 31.7863721	total: 152ms	remaining: 391ms
28:	learn: 31.4791450	total: 156ms	remaining: 383ms
29:	learn: 31.1760161	total: 160ms	remaining: 374ms
30:	learn: 30.9238888	total: 165ms	remaining: 367ms
31:	learn: 30.5500905	total: 169ms	remaining: 359ms
32:	learn: 30.3078126	total: 173ms	remaining: 351ms
33:	learn: 30.0480921	total: 177ms	remaining: 344ms
34:	learn: 29.8623884	total: 182ms	remaining: 337ms
35:	learn: 29.5991038	total: 186ms	remaining: 330ms
36:	learn: 29.4061161	total: 190ms	remaining: 323ms
37:	learn: 29.0269515	total: 194ms	remaining: 317ms
38:	learn: 28.8224959	total: 198ms	remaining: 310ms
39:	learn: 28.6417843	total: 202ms	remaining: 304ms
40:	learn: 28.3633368	total: 207ms	remaining: 297ms
41:	learn: 28.0200246	total: 211ms	remaining: 292ms
42:	learn: 27.7221254	total: 215ms	remaining: 286ms
43:	learn: 27.5105818	total: 220ms	remaining: 280ms
44:	learn: 27.3551010	total: 225ms	remaining: 275ms
45:	learn: 27.0787522	total: 229ms	remaining: 269ms
46:	learn: 26.8726317	total: 234ms	remaining: 264ms
47:	learn: 26.8003277	total: 239ms	remaining: 259ms
48:	learn: 26.5493785	total: 243ms	remaining: 253ms
49:	learn: 26.3699550	total: 248ms	remaining: 248ms
50:	learn: 26.1519631	total: 256ms	remaining: 246ms
51:	learn: 25.9277325	total: 264ms	remaining: 243ms
52:	learn: 25.7286035	total: 271ms	remaining: 240ms
53:	learn: 25.4999193	total: 277ms	remaining: 236ms
54:	learn: 25.3434703	total: 283ms	remaining: 232ms
55:	learn: 25.1497545	total: 288ms	remaining: 226ms
56:	learn: 24.9498143	total: 292ms	remaining: 221ms
57:	learn: 24.6509390	total: 297ms	remaining: 215ms
58:	learn: 24.5576144	total: 302ms	remaining: 210ms
59:	learn: 24.4265144	total: 306ms	remaining: 204ms
60:	learn: 24.3100706	total: 310ms	remaining: 198ms
61:	learn: 24.1727952	total: 314ms	remaining: 193ms
62:	learn: 24.0478558	total: 319ms	remaining: 187ms
63:	learn: 23.9124577	total: 323ms	remaining: 182ms
64:	learn: 23.7703718	total: 328ms	remaining: 176ms
65:	learn: 23.5975027	total: 332ms	remaining: 171ms
66:	learn: 23.4318077	total: 336ms	remaining: 165ms
67:	learn: 23.3099691	total: 341ms	remaining: 160ms
68:	learn: 23.1947982	total: 345ms	remaining: 155ms
69:	learn: 23.0260174	total: 349ms	remaining: 150ms
70:	learn: 22.8523100	total: 353ms	remaining: 144ms
71:	learn: 22.8028534	total: 358ms	remaining: 139ms
72:	learn: 22.6880658	total: 362ms	remaining: 134ms
73:	learn: 22.5956809	total: 366ms	remaining: 129ms
74:	learn: 22.4692932	total: 371ms	remaining: 124ms
75:	learn: 22.2863504	total: 375ms	remaining: 118ms
76:	learn: 22.1911237	total: 379ms	remaining: 113ms
77:	learn: 22.1098391	total: 384ms	remaining: 108ms
78:	learn: 22.0182738	total: 389ms	remaining: 103ms
79:	learn: 21.9306746	total: 393ms	remaining: 98.3ms
80:	learn: 21.7508233	total: 398ms	remaining: 93.3ms
81:	learn: 21.7108446	total: 402ms	remaining: 88.3ms
82:	learn: 21.5931852	total: 407ms	remaining: 83.3ms
83:	learn: 21.4480361	total: 411ms	remaining: 78.3ms
84:	learn: 21.3092119	total: 415ms	remaining: 73.3ms
85:	learn: 21.2605557	total: 420ms	remaining: 68.4ms
86:	learn: 21.1123597	total: 425ms	remaining: 63.5ms
87:	learn: 21.0115642	total: 430ms	remaining: 58.6ms
88:	learn: 20.9389040	total: 435ms	remaining: 53.7ms
89:	learn: 20.8300300	total: 439ms	remaining: 48.8ms
90:	learn: 20.7159733	total: 444ms	remaining: 43.9ms
91:	learn: 20.6282090	total: 450ms	remaining: 39.1ms
92:	learn: 20.5164529	total: 458ms	remaining: 34.5ms
93:	learn: 20.4692032	total: 467ms	remaining: 29.8ms
94:	learn: 20.3768451	total: 475ms	remaining: 25ms
95:	learn: 20.2808056	total: 482ms	remaining: 20.1ms
96:	learn: 20.2082089	total: 487ms	remaining: 15.1ms
97:	learn: 20.1698768	total: 493ms	remaining: 10.1ms
98:	learn: 20.1048816	total: 499ms	remaining: 5.04ms
99:	learn: 20.0086159	total: 504ms	remaining: 0us
0:	learn: 27.6871645	total: 5.42ms	remaining: 536ms
1:	learn: 27.3312003	total: 10.3ms	remaining: 507ms
2:	learn: 26.9359558	total: 15.3ms	remaining: 493ms
3:	learn: 26.6055364	total: 20.1ms	remaining: 482ms
4:	learn: 26.1664924	total: 25.3ms	remaining: 480ms
5:	learn: 25.8515393	total: 30ms	remaining: 471ms
6:	learn: 25.4620036	total: 34.5ms	remaining: 458ms
7:	learn: 25.1669741	total: 39ms	remaining: 448ms
8:	learn: 24.8455454	total: 43.9ms	remaining: 444ms
9:	learn: 24.5106323	total: 48.5ms	remaining: 437ms
10:	learn: 24.1915228	total: 53.2ms	remaining: 430ms
11:	learn: 23.9076053	total: 58.2ms	remaining: 427ms
12:	learn: 23.6692445	total: 63.3ms	remaining: 423ms
13:	learn: 23.4343504	total: 68ms	remaining: 418ms
14:	learn: 23.2425280	total: 72.9ms	remaining: 413ms
15:	learn: 22.9254142	total: 79.1ms	remaining: 415ms
16:	learn: 22.6495489	total: 84.6ms	remaining: 413ms
17:	learn: 22.4343705	total: 89.9ms	remaining: 410ms
18:	learn: 22.2154202	total: 95.1ms	remaining: 406ms
19:	learn: 22.0592712	total: 101ms	remaining: 403ms
20:	learn: 21.7971944	total: 110ms	remaining: 412ms
21:	learn: 21.6128930	total: 119ms	remaining: 420ms
22:	learn: 21.3882946	total: 127ms	remaining: 424ms
23:	learn: 21.0912570	total: 133ms	remaining: 420ms
24:	learn: 20.8922857	total: 139ms	remaining: 418ms
25:	learn: 20.7150574	total: 145ms	remaining: 411ms
26:	learn: 20.5673183	total: 150ms	remaining: 404ms
27:	learn: 20.4331275	total: 154ms	remaining: 397ms
28:	learn: 20.2782866	total: 159ms	remaining: 389ms
29:	learn: 20.1061525	total: 164ms	remaining: 382ms
30:	learn: 19.9225948	total: 169ms	remaining: 375ms
31:	learn: 19.7809193	total: 173ms	remaining: 368ms
32:	learn: 19.6057771	total: 178ms	remaining: 362ms
33:	learn: 19.4391243	total: 183ms	remaining: 355ms
34:	learn: 19.2234365	total: 188ms	remaining: 349ms
35:	learn: 19.0214424	total: 192ms	remaining: 342ms
36:	learn: 18.8990643	total: 198ms	remaining: 336ms
37:	learn: 18.7473635	total: 202ms	remaining: 330ms
38:	learn: 18.6125192	total: 207ms	remaining: 324ms
39:	learn: 18.4977949	total: 212ms	remaining: 318ms
40:	learn: 18.3914568	total: 217ms	remaining: 312ms
41:	learn: 18.2541544	total: 221ms	remaining: 306ms
42:	learn: 18.1038984	total: 226ms	remaining: 300ms
43:	learn: 17.9706172	total: 231ms	remaining: 294ms
44:	learn: 17.8198810	total: 236ms	remaining: 288ms
45:	learn: 17.7102597	total: 240ms	remaining: 282ms
46:	learn: 17.6148228	total: 245ms	remaining: 276ms
47:	learn: 17.5115365	total: 250ms	remaining: 271ms
48:	learn: 17.3884162	total: 254ms	remaining: 265ms
49:	learn: 17.2857632	total: 260ms	remaining: 260ms
50:	learn: 17.1618843	total: 264ms	remaining: 254ms
51:	learn: 17.0529601	total: 269ms	remaining: 249ms
52:	learn: 16.9330273	total: 275ms	remaining: 244ms
53:	learn: 16.8206672	total: 280ms	remaining: 238ms
54:	learn: 16.7080356	total: 284ms	remaining: 233ms
55:	learn: 16.5874354	total: 289ms	remaining: 227ms
56:	learn: 16.4929860	total: 294ms	remaining: 222ms
57:	learn: 16.4269419	total: 299ms	remaining: 217ms
58:	learn: 16.3474026	total: 308ms	remaining: 214ms
59:	learn: 16.2515784	total: 316ms	remaining: 211ms
60:	learn: 16.1743901	total: 328ms	remaining: 209ms
61:	learn: 16.0389930	total: 337ms	remaining: 206ms
62:	learn: 15.9671636	total: 342ms	remaining: 201ms
63:	learn: 15.8928486	total: 348ms	remaining: 196ms
64:	learn: 15.8303841	total: 354ms	remaining: 190ms
65:	learn: 15.7612266	total: 359ms	remaining: 185ms
66:	learn: 15.6811172	total: 364ms	remaining: 180ms
67:	learn: 15.6262138	total: 370ms	remaining: 174ms
68:	learn: 15.5662508	total: 376ms	remaining: 169ms
69:	learn: 15.4804354	total: 381ms	remaining: 163ms
70:	learn: 15.4054915	total: 386ms	remaining: 158ms
71:	learn: 15.3271396	total: 392ms	remaining: 152ms
72:	learn: 15.2828359	total: 398ms	remaining: 147ms
73:	learn: 15.2197404	total: 403ms	remaining: 142ms
74:	learn: 15.1315902	total: 408ms	remaining: 136ms
75:	learn: 15.0780523	total: 413ms	remaining: 130ms
76:	learn: 14.9959155	total: 417ms	remaining: 125ms
77:	learn: 14.9265008	total: 422ms	remaining: 119ms
78:	learn: 14.8570189	total: 427ms	remaining: 114ms
79:	learn: 14.8060372	total: 432ms	remaining: 108ms
80:	learn: 14.7294676	total: 436ms	remaining: 102ms
81:	learn: 14.6708309	total: 441ms	remaining: 96.9ms
82:	learn: 14.5765370	total: 446ms	remaining: 91.3ms
83:	learn: 14.5312713	total: 450ms	remaining: 85.8ms
84:	learn: 14.4830327	total: 455ms	remaining: 80.3ms
85:	learn: 14.4296247	total: 460ms	remaining: 74.9ms
86:	learn: 14.3381470	total: 465ms	remaining: 69.5ms
87:	learn: 14.2638093	total: 470ms	remaining: 64.1ms
88:	learn: 14.2288435	total: 475ms	remaining: 58.7ms
89:	learn: 14.1489273	total: 480ms	remaining: 53.3ms
90:	learn: 14.0937923	total: 485ms	remaining: 47.9ms
91:	learn: 14.0334062	total: 490ms	remaining: 42.6ms
92:	learn: 13.9854696	total: 495ms	remaining: 37.2ms
93:	learn: 13.9444203	total: 500ms	remaining: 31.9ms
94:	learn: 13.9101523	total: 505ms	remaining: 26.6ms
95:	learn: 13.8460655	total: 510ms	remaining: 21.2ms
96:	learn: 13.7809420	total: 515ms	remaining: 15.9ms
97:	learn: 13.7270532	total: 525ms	remaining: 10.7ms
98:	learn: 13.6891300	total: 533ms	remaining: 5.38ms
99:	learn: 13.6569696	total: 539ms	remaining: 0us
0:	learn: 42.9754370	total: 4.95ms	remaining: 490ms
1:	learn: 42.2613272	total: 9.65ms	remaining: 473ms
2:	learn: 41.4729969	total: 14.4ms	remaining: 465ms
3:	learn: 40.7127004	total: 19ms	remaining: 457ms
4:	learn: 39.7775109	total: 23.5ms	remaining: 447ms
5:	learn: 39.1736663	total: 28.5ms	remaining: 446ms
6:	learn: 38.2981109	total: 32.9ms	remaining: 438ms
7:	learn: 37.5352984	total: 37.8ms	remaining: 435ms
8:	learn: 36.7771474	total: 42.6ms	remaining: 431ms
9:	learn: 36.0581366	total: 47.1ms	remaining: 424ms
10:	learn: 35.3542706	total: 52ms	remaining: 420ms
11:	learn: 34.6937007	total: 57.1ms	remaining: 419ms
12:	learn: 34.0408035	total: 61.7ms	remaining: 413ms
13:	learn: 33.3460240	total: 66.1ms	remaining: 406ms
14:	learn: 32.8086243	total: 70.8ms	remaining: 401ms
15:	learn: 32.1934462	total: 75.6ms	remaining: 397ms
16:	learn: 31.6465519	total: 80.2ms	remaining: 391ms
17:	learn: 31.2161293	total: 84.6ms	remaining: 386ms
18:	learn: 30.6730548	total: 90.7ms	remaining: 387ms
19:	learn: 30.3153659	total: 95.6ms	remaining: 382ms
20:	learn: 29.7661420	total: 100ms	remaining: 377ms
21:	learn: 29.2095664	total: 106ms	remaining: 374ms
22:	learn: 28.7509592	total: 111ms	remaining: 370ms
23:	learn: 28.4347528	total: 115ms	remaining: 366ms
24:	learn: 28.0551654	total: 120ms	remaining: 361ms
25:	learn: 27.7295952	total: 126ms	remaining: 357ms
26:	learn: 27.2329225	total: 131ms	remaining: 353ms
27:	learn: 26.9970607	total: 140ms	remaining: 360ms
28:	learn: 26.6596544	total: 149ms	remaining: 365ms
29:	learn: 26.2633576	total: 158ms	remaining: 369ms
30:	learn: 25.9761623	total: 167ms	remaining: 373ms
31:	learn: 25.6177371	total: 173ms	remaining: 368ms
32:	learn: 25.2165933	total: 180ms	remaining: 364ms
33:	learn: 24.8012870	total: 186ms	remaining: 360ms
34:	learn: 24.4772532	total: 192ms	remaining: 357ms
35:	learn: 24.1560359	total: 198ms	remaining: 353ms
36:	learn: 23.9688812	total: 204ms	remaining: 348ms
37:	learn: 23.6907607	total: 210ms	remaining: 343ms
38:	learn: 23.3885772	total: 215ms	remaining: 337ms
39:	learn: 23.2234939	total: 221ms	remaining: 331ms
40:	learn: 22.9785026	total: 227ms	remaining: 326ms
41:	learn: 22.6827268	total: 233ms	remaining: 321ms
42:	learn: 22.4564360	total: 238ms	remaining: 315ms
43:	learn: 22.2517827	total: 242ms	remaining: 308ms
44:	learn: 21.9858709	total: 247ms	remaining: 302ms
45:	learn: 21.7595870	total: 252ms	remaining: 296ms
46:	learn: 21.5929957	total: 257ms	remaining: 290ms
47:	learn: 21.4071752	total: 262ms	remaining: 283ms
48:	learn: 21.2186470	total: 267ms	remaining: 277ms
49:	learn: 21.0691824	total: 271ms	remaining: 271ms
50:	learn: 20.8921347	total: 276ms	remaining: 265ms
51:	learn: 20.6834229	total: 281ms	remaining: 260ms
52:	learn: 20.4718988	total: 286ms	remaining: 254ms
53:	learn: 20.3413889	total: 291ms	remaining: 248ms
54:	learn: 20.1785464	total: 296ms	remaining: 242ms
55:	learn: 19.9824314	total: 301ms	remaining: 237ms
56:	learn: 19.8217596	total: 306ms	remaining: 231ms
57:	learn: 19.6318474	total: 311ms	remaining: 225ms
58:	learn: 19.4962236	total: 316ms	remaining: 220ms
59:	learn: 19.3114985	total: 321ms	remaining: 214ms
60:	learn: 19.2181156	total: 329ms	remaining: 210ms
61:	learn: 19.0689614	total: 336ms	remaining: 206ms
62:	learn: 18.9563267	total: 344ms	remaining: 202ms
63:	learn: 18.8343083	total: 351ms	remaining: 198ms
64:	learn: 18.7050033	total: 358ms	remaining: 193ms
65:	learn: 18.6014163	total: 364ms	remaining: 187ms
66:	learn: 18.4910692	total: 369ms	remaining: 182ms
67:	learn: 18.3935194	total: 374ms	remaining: 176ms
68:	learn: 18.2825842	total: 379ms	remaining: 170ms
69:	learn: 18.1519267	total: 385ms	remaining: 165ms
70:	learn: 18.0527651	total: 390ms	remaining: 159ms
71:	learn: 17.9770106	total: 395ms	remaining: 154ms
72:	learn: 17.9151628	total: 400ms	remaining: 148ms
73:	learn: 17.7957486	total: 406ms	remaining: 143ms
74:	learn: 17.7025765	total: 410ms	remaining: 137ms
75:	learn: 17.5957242	total: 415ms	remaining: 131ms
76:	learn: 17.4683244	total: 420ms	remaining: 125ms
77:	learn: 17.3415729	total: 425ms	remaining: 120ms
78:	learn: 17.2886896	total: 429ms	remaining: 114ms
79:	learn: 17.2280922	total: 434ms	remaining: 108ms
80:	learn: 17.1188996	total: 439ms	remaining: 103ms
81:	learn: 17.0236450	total: 444ms	remaining: 97.4ms
82:	learn: 16.9046661	total: 448ms	remaining: 91.8ms
83:	learn: 16.7930633	total: 453ms	remaining: 86.3ms
84:	learn: 16.6870100	total: 458ms	remaining: 80.8ms
85:	learn: 16.5512107	total: 463ms	remaining: 75.3ms
86:	learn: 16.4353400	total: 468ms	remaining: 69.9ms
87:	learn: 16.3256461	total: 473ms	remaining: 64.5ms
88:	learn: 16.2968057	total: 478ms	remaining: 59.1ms
89:	learn: 16.2136078	total: 484ms	remaining: 53.8ms
90:	learn: 16.1596096	total: 489ms	remaining: 48.4ms
91:	learn: 16.1164050	total: 495ms	remaining: 43ms
92:	learn: 16.0660454	total: 500ms	remaining: 37.6ms
93:	learn: 16.0380611	total: 505ms	remaining: 32.2ms
94:	learn: 15.9494441	total: 510ms	remaining: 26.9ms
95:	learn: 15.8874840	total: 516ms	remaining: 21.5ms
96:	learn: 15.8288234	total: 521ms	remaining: 16.1ms
97:	learn: 15.7562787	total: 526ms	remaining: 10.7ms
98:	learn: 15.6822678	total: 532ms	remaining: 5.37ms
99:	learn: 15.5901500	total: 537ms	remaining: 0us
0:	learn: 46.4504871	total: 7.41ms	remaining: 734ms
1:	learn: 45.7240114	total: 13.8ms	remaining: 678ms
2:	learn: 45.0308025	total: 33.5ms	remaining: 1.08s
3:	learn: 44.1111169	total: 40.5ms	remaining: 971ms
4:	learn: 43.3925352	total: 46.3ms	remaining: 879ms
5:	learn: 42.7856354	total: 52.7ms	remaining: 825ms
6:	learn: 42.1998170	total: 60.1ms	remaining: 799ms
7:	learn: 41.3532708	total: 66.2ms	remaining: 761ms
8:	learn: 40.7314571	total: 72.2ms	remaining: 730ms
9:	learn: 39.9838066	total: 78.2ms	remaining: 704ms
10:	learn: 39.4168243	total: 83.9ms	remaining: 679ms
11:	learn: 39.0148769	total: 89.8ms	remaining: 658ms
12:	learn: 38.3055855	total: 95.6ms	remaining: 640ms
13:	learn: 37.7343198	total: 102ms	remaining: 624ms
14:	learn: 37.4177463	total: 108ms	remaining: 609ms
15:	learn: 36.9043298	total: 113ms	remaining: 594ms
16:	learn: 36.3139174	total: 119ms	remaining: 583ms
17:	learn: 35.7200448	total: 126ms	remaining: 573ms
18:	learn: 35.3763394	total: 131ms	remaining: 560ms
19:	learn: 34.7666728	total: 137ms	remaining: 550ms
20:	learn: 34.2642890	total: 143ms	remaining: 538ms
21:	learn: 33.8196936	total: 148ms	remaining: 526ms
22:	learn: 33.4205669	total: 154ms	remaining: 516ms
23:	learn: 32.8565493	total: 160ms	remaining: 506ms
24:	learn: 32.5287132	total: 165ms	remaining: 496ms
25:	learn: 32.2142064	total: 175ms	remaining: 499ms
26:	learn: 31.9258854	total: 184ms	remaining: 497ms
27:	learn: 31.4083665	total: 191ms	remaining: 491ms
28:	learn: 31.1615620	total: 198ms	remaining: 484ms
29:	learn: 30.6948867	total: 204ms	remaining: 476ms
30:	learn: 30.3185108	total: 209ms	remaining: 466ms
31:	learn: 29.9245223	total: 215ms	remaining: 457ms
32:	learn: 29.6683643	total: 220ms	remaining: 447ms
33:	learn: 29.3868143	total: 225ms	remaining: 437ms
34:	learn: 29.1105699	total: 230ms	remaining: 428ms
35:	learn: 28.8274848	total: 236ms	remaining: 419ms
36:	learn: 28.5478288	total: 241ms	remaining: 410ms
37:	learn: 28.2355121	total: 246ms	remaining: 401ms
38:	learn: 28.0182564	total: 251ms	remaining: 393ms
39:	learn: 27.7654405	total: 256ms	remaining: 384ms
40:	learn: 27.5720477	total: 261ms	remaining: 376ms
41:	learn: 27.3182782	total: 266ms	remaining: 368ms
42:	learn: 26.9504431	total: 272ms	remaining: 360ms
43:	learn: 26.7281906	total: 277ms	remaining: 352ms
44:	learn: 26.5390008	total: 281ms	remaining: 344ms
45:	learn: 26.3781338	total: 286ms	remaining: 336ms
46:	learn: 26.1763177	total: 291ms	remaining: 328ms
47:	learn: 25.9417647	total: 296ms	remaining: 320ms
48:	learn: 25.7528045	total: 301ms	remaining: 313ms
49:	learn: 25.6336897	total: 306ms	remaining: 306ms
50:	learn: 25.4800426	total: 311ms	remaining: 299ms
51:	learn: 25.2895681	total: 316ms	remaining: 291ms
52:	learn: 25.0827111	total: 320ms	remaining: 284ms
53:	learn: 24.7987678	total: 325ms	remaining: 277ms
54:	learn: 24.6309982	total: 331ms	remaining: 271ms
55:	learn: 24.3526776	total: 336ms	remaining: 264ms
56:	learn: 24.1689125	total: 341ms	remaining: 257ms
57:	learn: 23.9802039	total: 346ms	remaining: 251ms
58:	learn: 23.8059432	total: 351ms	remaining: 244ms
59:	learn: 23.6006403	total: 358ms	remaining: 239ms
60:	learn: 23.2948382	total: 367ms	remaining: 235ms
61:	learn: 23.1338922	total: 379ms	remaining: 232ms
62:	learn: 22.9581269	total: 388ms	remaining: 228ms
63:	learn: 22.8263127	total: 394ms	remaining: 222ms
64:	learn: 22.6966006	total: 401ms	remaining: 216ms
65:	learn: 22.6012389	total: 408ms	remaining: 210ms
66:	learn: 22.4220244	total: 414ms	remaining: 204ms
67:	learn: 22.3148342	total: 421ms	remaining: 198ms
68:	learn: 22.1543592	total: 427ms	remaining: 192ms
69:	learn: 22.0614050	total: 434ms	remaining: 186ms
70:	learn: 21.9134025	total: 440ms	remaining: 180ms
71:	learn: 21.8198101	total: 446ms	remaining: 174ms
72:	learn: 21.6944173	total: 453ms	remaining: 168ms
73:	learn: 21.4727420	total: 459ms	remaining: 161ms
74:	learn: 21.3000560	total: 465ms	remaining: 155ms
75:	learn: 21.1884740	total: 469ms	remaining: 148ms
76:	learn: 21.0321317	total: 474ms	remaining: 142ms
77:	learn: 20.9371793	total: 479ms	remaining: 135ms
78:	learn: 20.6800341	total: 484ms	remaining: 129ms
79:	learn: 20.5629904	total: 489ms	remaining: 122ms
80:	learn: 20.4098217	total: 493ms	remaining: 116ms
81:	learn: 20.2139261	total: 498ms	remaining: 109ms
82:	learn: 20.1024260	total: 503ms	remaining: 103ms
83:	learn: 19.9835855	total: 508ms	remaining: 96.8ms
84:	learn: 19.9018880	total: 513ms	remaining: 90.5ms
85:	learn: 19.7819843	total: 518ms	remaining: 84.3ms
86:	learn: 19.6352780	total: 523ms	remaining: 78.1ms
87:	learn: 19.4888328	total: 528ms	remaining: 72ms
88:	learn: 19.4365121	total: 533ms	remaining: 65.8ms
89:	learn: 19.3427430	total: 538ms	remaining: 59.8ms
90:	learn: 19.2884907	total: 543ms	remaining: 53.7ms
91:	learn: 19.1898932	total: 548ms	remaining: 47.7ms
92:	learn: 19.0775661	total: 553ms	remaining: 41.7ms
93:	learn: 19.0334055	total: 558ms	remaining: 35.6ms
94:	learn: 18.9381916	total: 563ms	remaining: 29.6ms
95:	learn: 18.8471198	total: 574ms	remaining: 23.9ms
96:	learn: 18.7136478	total: 583ms	remaining: 18ms
97:	learn: 18.6633102	total: 590ms	remaining: 12ms
98:	learn: 18.5887516	total: 597ms	remaining: 6.03ms
99:	learn: 18.4841597	total: 602ms	remaining: 0us
0:	learn: 46.2172336	total: 5.12ms	remaining: 506ms
1:	learn: 45.4248871	total: 10.1ms	remaining: 493ms
2:	learn: 44.8702937	total: 15.4ms	remaining: 499ms
3:	learn: 44.2019212	total: 20.2ms	remaining: 484ms
4:	learn: 43.4805210	total: 25ms	remaining: 474ms
5:	learn: 42.7336269	total: 30.2ms	remaining: 472ms
6:	learn: 42.0396670	total: 34.9ms	remaining: 464ms
7:	learn: 41.5668459	total: 39.8ms	remaining: 458ms
8:	learn: 40.8999125	total: 45ms	remaining: 455ms
9:	learn: 40.3358512	total: 50.6ms	remaining: 455ms
10:	learn: 39.7511489	total: 55.9ms	remaining: 452ms
11:	learn: 39.0775416	total: 61.3ms	remaining: 449ms
12:	learn: 38.5204735	total: 66.4ms	remaining: 445ms
13:	learn: 38.2087509	total: 71.6ms	remaining: 440ms
14:	learn: 37.7259552	total: 77ms	remaining: 437ms
15:	learn: 37.1646397	total: 82.1ms	remaining: 431ms
16:	learn: 36.7093520	total: 87.3ms	remaining: 426ms
17:	learn: 36.2212308	total: 92.9ms	remaining: 423ms
18:	learn: 35.8682156	total: 98.2ms	remaining: 419ms
19:	learn: 35.6026383	total: 104ms	remaining: 415ms
20:	learn: 35.1739725	total: 109ms	remaining: 409ms
21:	learn: 34.5938003	total: 114ms	remaining: 405ms
22:	learn: 34.1479056	total: 120ms	remaining: 401ms
23:	learn: 33.8759356	total: 128ms	remaining: 407ms
24:	learn: 33.2898426	total: 141ms	remaining: 424ms
25:	learn: 32.9220237	total: 150ms	remaining: 427ms
26:	learn: 32.4324374	total: 159ms	remaining: 429ms
27:	learn: 32.1726327	total: 165ms	remaining: 423ms
28:	learn: 31.8020879	total: 171ms	remaining: 419ms
29:	learn: 31.4329781	total: 177ms	remaining: 413ms
30:	learn: 30.9995282	total: 183ms	remaining: 406ms
31:	learn: 30.6815978	total: 188ms	remaining: 400ms
32:	learn: 30.2991029	total: 194ms	remaining: 394ms
33:	learn: 30.0354202	total: 200ms	remaining: 389ms
34:	learn: 29.7620535	total: 206ms	remaining: 383ms
35:	learn: 29.4552589	total: 212ms	remaining: 377ms
36:	learn: 29.2634399	total: 219ms	remaining: 373ms
37:	learn: 28.8345135	total: 225ms	remaining: 367ms
38:	learn: 28.5551142	total: 230ms	remaining: 360ms
39:	learn: 28.3258809	total: 236ms	remaining: 353ms
40:	learn: 28.0835564	total: 241ms	remaining: 346ms
41:	learn: 27.7517159	total: 246ms	remaining: 339ms
42:	learn: 27.5427595	total: 251ms	remaining: 332ms
43:	learn: 27.3925105	total: 256ms	remaining: 325ms
44:	learn: 27.2377120	total: 261ms	remaining: 319ms
45:	learn: 26.9930398	total: 266ms	remaining: 312ms
46:	learn: 26.7748687	total: 271ms	remaining: 306ms
47:	learn: 26.5856986	total: 276ms	remaining: 299ms
48:	learn: 26.4344153	total: 281ms	remaining: 293ms
49:	learn: 26.3263456	total: 286ms	remaining: 286ms
50:	learn: 26.2048412	total: 291ms	remaining: 279ms
51:	learn: 26.0608546	total: 296ms	remaining: 273ms
52:	learn: 25.9428146	total: 301ms	remaining: 267ms
53:	learn: 25.7578029	total: 306ms	remaining: 261ms
54:	learn: 25.5696792	total: 311ms	remaining: 255ms
55:	learn: 25.3291935	total: 316ms	remaining: 248ms
56:	learn: 25.1388942	total: 322ms	remaining: 243ms
57:	learn: 24.9853945	total: 331ms	remaining: 240ms
58:	learn: 24.8037785	total: 338ms	remaining: 235ms
59:	learn: 24.5326704	total: 345ms	remaining: 230ms
60:	learn: 24.2208240	total: 351ms	remaining: 224ms
61:	learn: 24.0774015	total: 357ms	remaining: 219ms
62:	learn: 23.9705824	total: 361ms	remaining: 212ms
63:	learn: 23.8877665	total: 366ms	remaining: 206ms
64:	learn: 23.7309043	total: 371ms	remaining: 200ms
65:	learn: 23.5820140	total: 375ms	remaining: 193ms
66:	learn: 23.3762012	total: 380ms	remaining: 187ms
67:	learn: 23.2317502	total: 385ms	remaining: 181ms
68:	learn: 23.0868331	total: 390ms	remaining: 175ms
69:	learn: 22.9642758	total: 395ms	remaining: 169ms
70:	learn: 22.8085341	total: 400ms	remaining: 164ms
71:	learn: 22.6834294	total: 405ms	remaining: 158ms
72:	learn: 22.6152922	total: 410ms	remaining: 152ms
73:	learn: 22.3675145	total: 415ms	remaining: 146ms
74:	learn: 22.3023338	total: 420ms	remaining: 140ms
75:	learn: 22.1866833	total: 424ms	remaining: 134ms
76:	learn: 22.0163130	total: 429ms	remaining: 128ms
77:	learn: 21.9691306	total: 434ms	remaining: 122ms
78:	learn: 21.9004647	total: 439ms	remaining: 117ms
79:	learn: 21.7931869	total: 444ms	remaining: 111ms
80:	learn: 21.6747916	total: 448ms	remaining: 105ms
81:	learn: 21.5187568	total: 453ms	remaining: 99.5ms
82:	learn: 21.3124880	total: 458ms	remaining: 93.8ms
83:	learn: 21.1979524	total: 463ms	remaining: 88.1ms
84:	learn: 21.1311130	total: 468ms	remaining: 82.5ms
85:	learn: 21.0606062	total: 473ms	remaining: 76.9ms
86:	learn: 20.9900935	total: 477ms	remaining: 71.3ms
87:	learn: 20.8908054	total: 482ms	remaining: 65.7ms
88:	learn: 20.8088525	total: 487ms	remaining: 60.2ms
89:	learn: 20.7300955	total: 492ms	remaining: 54.7ms
90:	learn: 20.6130276	total: 497ms	remaining: 49.2ms
91:	learn: 20.5437508	total: 502ms	remaining: 43.7ms
92:	learn: 20.5029426	total: 507ms	remaining: 38.2ms
93:	learn: 20.4416708	total: 513ms	remaining: 32.7ms
94:	learn: 20.3917812	total: 517ms	remaining: 27.2ms
95:	learn: 20.3305024	total: 525ms	remaining: 21.9ms
96:	learn: 20.2375704	total: 534ms	remaining: 16.5ms
97:	learn: 20.1835197	total: 545ms	remaining: 11.1ms
98:	learn: 20.1246834	total: 553ms	remaining: 5.59ms
99:	learn: 20.0506334	total: 559ms	remaining: 0us
0:	learn: 46.7334648	total: 5.38ms	remaining: 533ms
1:	learn: 46.2069876	total: 10.7ms	remaining: 526ms
2:	learn: 45.3699967	total: 16ms	remaining: 518ms
3:	learn: 44.6866787	total: 21ms	remaining: 505ms
4:	learn: 43.8536031	total: 25.9ms	remaining: 492ms
5:	learn: 43.4716853	total: 30.7ms	remaining: 481ms
6:	learn: 42.9929637	total: 35.4ms	remaining: 471ms
7:	learn: 42.4952169	total: 40.3ms	remaining: 463ms
8:	learn: 41.7548337	total: 44.8ms	remaining: 453ms
9:	learn: 41.1054415	total: 49.2ms	remaining: 443ms
10:	learn: 40.4827492	total: 54.1ms	remaining: 438ms
11:	learn: 39.7605907	total: 58.6ms	remaining: 430ms
12:	learn: 39.2532558	total: 63.3ms	remaining: 423ms
13:	learn: 38.6572753	total: 68.1ms	remaining: 418ms
14:	learn: 38.2886959	total: 73ms	remaining: 414ms
15:	learn: 37.7816612	total: 77.7ms	remaining: 408ms
16:	learn: 37.1680589	total: 82.3ms	remaining: 402ms
17:	learn: 36.5753004	total: 87.7ms	remaining: 400ms
18:	learn: 36.2339458	total: 92.9ms	remaining: 396ms
19:	learn: 35.9159716	total: 98ms	remaining: 392ms
20:	learn: 35.4591743	total: 103ms	remaining: 388ms
21:	learn: 34.8726070	total: 108ms	remaining: 383ms
22:	learn: 34.3903591	total: 113ms	remaining: 378ms
23:	learn: 34.1236827	total: 123ms	remaining: 390ms
24:	learn: 33.8026540	total: 131ms	remaining: 393ms
25:	learn: 33.4594822	total: 138ms	remaining: 393ms
26:	learn: 33.1338910	total: 143ms	remaining: 387ms
27:	learn: 32.8527106	total: 149ms	remaining: 384ms
28:	learn: 32.4923829	total: 154ms	remaining: 377ms
29:	learn: 32.0560533	total: 159ms	remaining: 371ms
30:	learn: 31.6614408	total: 164ms	remaining: 365ms
31:	learn: 31.2796040	total: 169ms	remaining: 359ms
32:	learn: 30.8214741	total: 174ms	remaining: 352ms
33:	learn: 30.5908694	total: 179ms	remaining: 347ms
34:	learn: 30.3637356	total: 183ms	remaining: 340ms
35:	learn: 30.0446511	total: 188ms	remaining: 334ms
36:	learn: 29.8792549	total: 193ms	remaining: 328ms
37:	learn: 29.5488457	total: 197ms	remaining: 322ms
38:	learn: 29.2808568	total: 202ms	remaining: 317ms
39:	learn: 29.0603765	total: 207ms	remaining: 311ms
40:	learn: 28.8272425	total: 212ms	remaining: 305ms
41:	learn: 28.4753580	total: 216ms	remaining: 299ms
42:	learn: 28.2963614	total: 221ms	remaining: 293ms
43:	learn: 28.1054768	total: 226ms	remaining: 288ms
44:	learn: 27.9038093	total: 231ms	remaining: 283ms
45:	learn: 27.6305487	total: 236ms	remaining: 277ms
46:	learn: 27.4457907	total: 241ms	remaining: 272ms
47:	learn: 27.1855957	total: 246ms	remaining: 267ms
48:	learn: 26.9987934	total: 251ms	remaining: 261ms
49:	learn: 26.7881067	total: 256ms	remaining: 256ms
50:	learn: 26.6385231	total: 260ms	remaining: 250ms
51:	learn: 26.4661755	total: 265ms	remaining: 245ms
52:	learn: 26.3331868	total: 270ms	remaining: 240ms
53:	learn: 26.0353476	total: 275ms	remaining: 234ms
54:	learn: 25.8257147	total: 280ms	remaining: 229ms
55:	learn: 25.5924383	total: 285ms	remaining: 224ms
56:	learn: 25.4082209	total: 290ms	remaining: 218ms
57:	learn: 25.2350104	total: 297ms	remaining: 215ms
58:	learn: 25.1789867	total: 305ms	remaining: 212ms
59:	learn: 24.9111359	total: 312ms	remaining: 208ms
60:	learn: 24.6314503	total: 318ms	remaining: 203ms
61:	learn: 24.4297999	total: 324ms	remaining: 198ms
62:	learn: 24.3126171	total: 332ms	remaining: 195ms
63:	learn: 24.1544005	total: 338ms	remaining: 190ms
64:	learn: 24.0197950	total: 345ms	remaining: 186ms
65:	learn: 23.8483087	total: 351ms	remaining: 181ms
66:	learn: 23.6624915	total: 357ms	remaining: 176ms
67:	learn: 23.5068105	total: 363ms	remaining: 171ms
68:	learn: 23.4266187	total: 369ms	remaining: 166ms
69:	learn: 23.3535388	total: 374ms	remaining: 160ms
70:	learn: 23.2477190	total: 380ms	remaining: 155ms
71:	learn: 23.1877634	total: 385ms	remaining: 150ms
72:	learn: 23.1344720	total: 391ms	remaining: 145ms
73:	learn: 22.9498234	total: 396ms	remaining: 139ms
74:	learn: 22.9068295	total: 403ms	remaining: 134ms
75:	learn: 22.7368434	total: 408ms	remaining: 129ms
76:	learn: 22.6084901	total: 414ms	remaining: 124ms
77:	learn: 22.4690295	total: 419ms	remaining: 118ms
78:	learn: 22.3970100	total: 424ms	remaining: 113ms
79:	learn: 22.3025537	total: 429ms	remaining: 107ms
80:	learn: 22.2089293	total: 434ms	remaining: 102ms
81:	learn: 22.0522107	total: 439ms	remaining: 96.3ms
82:	learn: 21.9368213	total: 444ms	remaining: 90.9ms
83:	learn: 21.7968322	total: 449ms	remaining: 85.5ms
84:	learn: 21.7416164	total: 454ms	remaining: 80.1ms
85:	learn: 21.6031099	total: 458ms	remaining: 74.6ms
86:	learn: 21.4530627	total: 463ms	remaining: 69.3ms
87:	learn: 21.3118417	total: 468ms	remaining: 63.8ms
88:	learn: 21.2760431	total: 473ms	remaining: 58.5ms
89:	learn: 21.2071350	total: 478ms	remaining: 53.2ms
90:	learn: 21.1051001	total: 484ms	remaining: 47.8ms
91:	learn: 21.0246142	total: 488ms	remaining: 42.5ms
92:	learn: 20.9834999	total: 494ms	remaining: 37.1ms
93:	learn: 20.8989393	total: 499ms	remaining: 31.8ms
94:	learn: 20.8262231	total: 504ms	remaining: 26.5ms
95:	learn: 20.7369110	total: 512ms	remaining: 21.3ms
96:	learn: 20.6409587	total: 520ms	remaining: 16.1ms
97:	learn: 20.5553641	total: 528ms	remaining: 10.8ms
98:	learn: 20.4317232	total: 533ms	remaining: 5.39ms
99:	learn: 20.3708681	total: 539ms	remaining: 0us
0:	learn: 27.6871645	total: 5.24ms	remaining: 519ms
1:	learn: 27.3312003	total: 10.1ms	remaining: 493ms
2:	learn: 26.9359558	total: 15ms	remaining: 484ms
3:	learn: 26.6055364	total: 19.6ms	remaining: 469ms
4:	learn: 26.1664924	total: 24.1ms	remaining: 459ms
5:	learn: 25.8515393	total: 29.1ms	remaining: 455ms
6:	learn: 25.4620036	total: 33.8ms	remaining: 449ms
7:	learn: 25.1669741	total: 38.3ms	remaining: 440ms
8:	learn: 24.8455454	total: 43ms	remaining: 434ms
9:	learn: 24.5106323	total: 47.7ms	remaining: 429ms
10:	learn: 24.1915228	total: 52.7ms	remaining: 426ms
11:	learn: 23.9076053	total: 57.5ms	remaining: 422ms
12:	learn: 23.6692445	total: 62.3ms	remaining: 417ms
13:	learn: 23.4343504	total: 67.1ms	remaining: 412ms
14:	learn: 23.2425280	total: 72.1ms	remaining: 408ms
15:	learn: 22.9254142	total: 76.8ms	remaining: 403ms
16:	learn: 22.6495489	total: 81.4ms	remaining: 398ms
17:	learn: 22.4343705	total: 86.3ms	remaining: 393ms
18:	learn: 22.2154202	total: 91.2ms	remaining: 389ms
19:	learn: 22.0592712	total: 96.1ms	remaining: 385ms
20:	learn: 21.7971944	total: 101ms	remaining: 380ms
21:	learn: 21.6128930	total: 106ms	remaining: 376ms
22:	learn: 21.3882946	total: 111ms	remaining: 372ms
23:	learn: 21.0912570	total: 116ms	remaining: 367ms
24:	learn: 20.8922857	total: 126ms	remaining: 379ms
25:	learn: 20.7150574	total: 136ms	remaining: 387ms
26:	learn: 20.5673183	total: 144ms	remaining: 389ms
27:	learn: 20.4331275	total: 152ms	remaining: 390ms
28:	learn: 20.2782866	total: 158ms	remaining: 386ms
29:	learn: 20.1061525	total: 164ms	remaining: 382ms
30:	learn: 19.9225948	total: 169ms	remaining: 377ms
31:	learn: 19.7809193	total: 180ms	remaining: 382ms
32:	learn: 19.6057771	total: 185ms	remaining: 376ms
33:	learn: 19.4391243	total: 191ms	remaining: 371ms
34:	learn: 19.2234365	total: 197ms	remaining: 365ms
35:	learn: 19.0214424	total: 202ms	remaining: 359ms
36:	learn: 18.8990643	total: 208ms	remaining: 354ms
37:	learn: 18.7473635	total: 214ms	remaining: 349ms
38:	learn: 18.6125192	total: 219ms	remaining: 343ms
39:	learn: 18.4977949	total: 224ms	remaining: 336ms
40:	learn: 18.3914568	total: 229ms	remaining: 329ms
41:	learn: 18.2541544	total: 233ms	remaining: 322ms
42:	learn: 18.1038984	total: 238ms	remaining: 315ms
43:	learn: 17.9706172	total: 242ms	remaining: 308ms
44:	learn: 17.8198810	total: 247ms	remaining: 302ms
45:	learn: 17.7102597	total: 252ms	remaining: 295ms
46:	learn: 17.6148228	total: 257ms	remaining: 289ms
47:	learn: 17.5115365	total: 262ms	remaining: 283ms
48:	learn: 17.3884162	total: 266ms	remaining: 277ms
49:	learn: 17.2857632	total: 271ms	remaining: 271ms
50:	learn: 17.1618843	total: 276ms	remaining: 266ms
51:	learn: 17.0529601	total: 281ms	remaining: 259ms
52:	learn: 16.9330273	total: 286ms	remaining: 253ms
53:	learn: 16.8206672	total: 291ms	remaining: 248ms
54:	learn: 16.7080356	total: 296ms	remaining: 242ms
55:	learn: 16.5874354	total: 301ms	remaining: 236ms
56:	learn: 16.4929860	total: 306ms	remaining: 231ms
57:	learn: 16.4269419	total: 311ms	remaining: 225ms
58:	learn: 16.3474026	total: 316ms	remaining: 219ms
59:	learn: 16.2515784	total: 325ms	remaining: 217ms
60:	learn: 16.1743901	total: 333ms	remaining: 213ms
61:	learn: 16.0389930	total: 340ms	remaining: 208ms
62:	learn: 15.9671636	total: 345ms	remaining: 203ms
63:	learn: 15.8928486	total: 351ms	remaining: 198ms
64:	learn: 15.8303841	total: 356ms	remaining: 192ms
65:	learn: 15.7612266	total: 361ms	remaining: 186ms
66:	learn: 15.6811172	total: 366ms	remaining: 180ms
67:	learn: 15.6262138	total: 370ms	remaining: 174ms
68:	learn: 15.5662508	total: 375ms	remaining: 169ms
69:	learn: 15.4804354	total: 380ms	remaining: 163ms
70:	learn: 15.4054915	total: 385ms	remaining: 157ms
71:	learn: 15.3271396	total: 390ms	remaining: 152ms
72:	learn: 15.2828359	total: 394ms	remaining: 146ms
73:	learn: 15.2197404	total: 399ms	remaining: 140ms
74:	learn: 15.1315902	total: 404ms	remaining: 135ms
75:	learn: 15.0780523	total: 408ms	remaining: 129ms
76:	learn: 14.9959155	total: 413ms	remaining: 123ms
77:	learn: 14.9265008	total: 418ms	remaining: 118ms
78:	learn: 14.8570189	total: 423ms	remaining: 112ms
79:	learn: 14.8060372	total: 428ms	remaining: 107ms
80:	learn: 14.7294676	total: 433ms	remaining: 101ms
81:	learn: 14.6708309	total: 438ms	remaining: 96ms
82:	learn: 14.5765370	total: 442ms	remaining: 90.6ms
83:	learn: 14.5312713	total: 447ms	remaining: 85.2ms
84:	learn: 14.4830327	total: 452ms	remaining: 79.8ms
85:	learn: 14.4296247	total: 457ms	remaining: 74.3ms
86:	learn: 14.3381470	total: 461ms	remaining: 69ms
87:	learn: 14.2638093	total: 466ms	remaining: 63.5ms
88:	learn: 14.2288435	total: 471ms	remaining: 58.2ms
89:	learn: 14.1489273	total: 476ms	remaining: 52.9ms
90:	learn: 14.0937923	total: 481ms	remaining: 47.5ms
91:	learn: 14.0334062	total: 485ms	remaining: 42.2ms
92:	learn: 13.9854696	total: 491ms	remaining: 36.9ms
93:	learn: 13.9444203	total: 496ms	remaining: 31.6ms
94:	learn: 13.9101523	total: 501ms	remaining: 26.4ms
95:	learn: 13.8460655	total: 506ms	remaining: 21.1ms
96:	learn: 13.7809420	total: 511ms	remaining: 15.8ms
97:	learn: 13.7270532	total: 518ms	remaining: 10.6ms
98:	learn: 13.6891300	total: 526ms	remaining: 5.32ms
99:	learn: 13.6569696	total: 538ms	remaining: 0us
0:	learn: 42.9754370	total: 6.17ms	remaining: 610ms
1:	learn: 42.2613272	total: 11.9ms	remaining: 585ms
2:	learn: 41.4729969	total: 17.9ms	remaining: 578ms
3:	learn: 40.7127004	total: 23.6ms	remaining: 566ms
4:	learn: 39.7775109	total: 28.5ms	remaining: 541ms
5:	learn: 39.1736663	total: 33.4ms	remaining: 523ms
6:	learn: 38.2981109	total: 37.9ms	remaining: 503ms
7:	learn: 37.5352984	total: 42.5ms	remaining: 488ms
8:	learn: 36.7771474	total: 47.2ms	remaining: 478ms
9:	learn: 36.0581366	total: 51.6ms	remaining: 465ms
10:	learn: 35.3542706	total: 56.4ms	remaining: 457ms
11:	learn: 34.6937007	total: 61.2ms	remaining: 449ms
12:	learn: 34.0408035	total: 65.9ms	remaining: 441ms
13:	learn: 33.3460240	total: 70.7ms	remaining: 434ms
14:	learn: 32.8086243	total: 75.4ms	remaining: 427ms
15:	learn: 32.1934462	total: 80.3ms	remaining: 422ms
16:	learn: 31.6465519	total: 85.2ms	remaining: 416ms
17:	learn: 31.2161293	total: 89.9ms	remaining: 409ms
18:	learn: 30.6730548	total: 94.6ms	remaining: 403ms
19:	learn: 30.3153659	total: 99.4ms	remaining: 398ms
20:	learn: 29.7661420	total: 104ms	remaining: 392ms
21:	learn: 29.2095664	total: 110ms	remaining: 389ms
22:	learn: 28.7509592	total: 115ms	remaining: 385ms
23:	learn: 28.4347528	total: 120ms	remaining: 380ms
24:	learn: 28.0551654	total: 125ms	remaining: 376ms
25:	learn: 27.7295952	total: 131ms	remaining: 373ms
26:	learn: 27.2329225	total: 140ms	remaining: 379ms
27:	learn: 26.9970607	total: 149ms	remaining: 383ms
28:	learn: 26.6596544	total: 156ms	remaining: 381ms
29:	learn: 26.2633576	total: 161ms	remaining: 376ms
30:	learn: 25.9761623	total: 167ms	remaining: 372ms
31:	learn: 25.6177371	total: 172ms	remaining: 366ms
32:	learn: 25.2165933	total: 178ms	remaining: 361ms
33:	learn: 24.8012870	total: 183ms	remaining: 355ms
34:	learn: 24.4772532	total: 188ms	remaining: 349ms
35:	learn: 24.1560359	total: 207ms	remaining: 369ms
36:	learn: 23.9688812	total: 212ms	remaining: 361ms
37:	learn: 23.6907607	total: 217ms	remaining: 355ms
38:	learn: 23.3885772	total: 222ms	remaining: 348ms
39:	learn: 23.2234939	total: 227ms	remaining: 341ms
40:	learn: 22.9785026	total: 232ms	remaining: 334ms
41:	learn: 22.6827268	total: 237ms	remaining: 327ms
42:	learn: 22.4564360	total: 242ms	remaining: 320ms
43:	learn: 22.2517827	total: 246ms	remaining: 314ms
44:	learn: 21.9858709	total: 251ms	remaining: 307ms
45:	learn: 21.7595870	total: 256ms	remaining: 301ms
46:	learn: 21.5929957	total: 261ms	remaining: 295ms
47:	learn: 21.4071752	total: 266ms	remaining: 289ms
48:	learn: 21.2186470	total: 272ms	remaining: 283ms
49:	learn: 21.0691824	total: 276ms	remaining: 276ms
50:	learn: 20.8921347	total: 281ms	remaining: 270ms
51:	learn: 20.6834229	total: 286ms	remaining: 264ms
52:	learn: 20.4718988	total: 291ms	remaining: 258ms
53:	learn: 20.3413889	total: 296ms	remaining: 252ms
54:	learn: 20.1785464	total: 301ms	remaining: 246ms
55:	learn: 19.9824314	total: 306ms	remaining: 240ms
56:	learn: 19.8217596	total: 311ms	remaining: 235ms
57:	learn: 19.6318474	total: 316ms	remaining: 229ms
58:	learn: 19.4962236	total: 321ms	remaining: 223ms
59:	learn: 19.3114985	total: 327ms	remaining: 218ms
60:	learn: 19.2181156	total: 350ms	remaining: 224ms
61:	learn: 19.0689614	total: 359ms	remaining: 220ms
62:	learn: 18.9563267	total: 365ms	remaining: 215ms
63:	learn: 18.8343083	total: 372ms	remaining: 209ms
64:	learn: 18.7050033	total: 378ms	remaining: 204ms
65:	learn: 18.6014163	total: 384ms	remaining: 198ms
66:	learn: 18.4910692	total: 390ms	remaining: 192ms
67:	learn: 18.3935194	total: 396ms	remaining: 186ms
68:	learn: 18.2825842	total: 401ms	remaining: 180ms
69:	learn: 18.1519267	total: 408ms	remaining: 175ms
70:	learn: 18.0527651	total: 414ms	remaining: 169ms
71:	learn: 17.9770106	total: 420ms	remaining: 163ms
72:	learn: 17.9151628	total: 425ms	remaining: 157ms
73:	learn: 17.7957486	total: 432ms	remaining: 152ms
74:	learn: 17.7025765	total: 437ms	remaining: 146ms
75:	learn: 17.5957242	total: 441ms	remaining: 139ms
76:	learn: 17.4683244	total: 446ms	remaining: 133ms
77:	learn: 17.3415729	total: 451ms	remaining: 127ms
78:	learn: 17.2886896	total: 456ms	remaining: 121ms
79:	learn: 17.2280922	total: 460ms	remaining: 115ms
80:	learn: 17.1188996	total: 465ms	remaining: 109ms
81:	learn: 17.0236450	total: 470ms	remaining: 103ms
82:	learn: 16.9046661	total: 475ms	remaining: 97.2ms
83:	learn: 16.7930633	total: 479ms	remaining: 91.3ms
84:	learn: 16.6870100	total: 484ms	remaining: 85.4ms
85:	learn: 16.5512107	total: 489ms	remaining: 79.5ms
86:	learn: 16.4353400	total: 493ms	remaining: 73.7ms
87:	learn: 16.3256461	total: 498ms	remaining: 67.9ms
88:	learn: 16.2968057	total: 503ms	remaining: 62.2ms
89:	learn: 16.2136078	total: 508ms	remaining: 56.5ms
90:	learn: 16.1596096	total: 514ms	remaining: 50.8ms
91:	learn: 16.1164050	total: 519ms	remaining: 45.1ms
92:	learn: 16.0660454	total: 524ms	remaining: 39.4ms
93:	learn: 16.0380611	total: 529ms	remaining: 33.8ms
94:	learn: 15.9494441	total: 534ms	remaining: 28.1ms
95:	learn: 15.8874840	total: 543ms	remaining: 22.6ms
96:	learn: 15.8288234	total: 551ms	remaining: 17ms
97:	learn: 15.7562787	total: 558ms	remaining: 11.4ms
98:	learn: 15.6822678	total: 564ms	remaining: 5.69ms
99:	learn: 15.5901500	total: 569ms	remaining: 0us
0:	learn: 46.4504871	total: 4.96ms	remaining: 491ms
1:	learn: 45.7240114	total: 9.79ms	remaining: 480ms
2:	learn: 45.0308025	total: 14.5ms	remaining: 468ms
3:	learn: 44.1111169	total: 19.1ms	remaining: 459ms
4:	learn: 43.3925352	total: 23.8ms	remaining: 453ms
5:	learn: 42.7856354	total: 28.7ms	remaining: 450ms
6:	learn: 42.1998170	total: 33.8ms	remaining: 449ms
7:	learn: 41.3532708	total: 38.6ms	remaining: 443ms
8:	learn: 40.7314571	total: 43.7ms	remaining: 442ms
9:	learn: 39.9838066	total: 48.2ms	remaining: 434ms
10:	learn: 39.4168243	total: 52.8ms	remaining: 427ms
11:	learn: 39.0148769	total: 57.5ms	remaining: 422ms
12:	learn: 38.3055855	total: 62.2ms	remaining: 416ms
13:	learn: 37.7343198	total: 67ms	remaining: 411ms
14:	learn: 37.4177463	total: 71.7ms	remaining: 407ms
15:	learn: 36.9043298	total: 76.5ms	remaining: 402ms
16:	learn: 36.3139174	total: 81.1ms	remaining: 396ms
17:	learn: 35.7200448	total: 85.8ms	remaining: 391ms
18:	learn: 35.3763394	total: 90.5ms	remaining: 386ms
19:	learn: 34.7666728	total: 95.1ms	remaining: 380ms
20:	learn: 34.2642890	total: 99.9ms	remaining: 376ms
21:	learn: 33.8196936	total: 105ms	remaining: 372ms
22:	learn: 33.4205669	total: 110ms	remaining: 367ms
23:	learn: 32.8565493	total: 114ms	remaining: 362ms
24:	learn: 32.5287132	total: 119ms	remaining: 358ms
25:	learn: 32.2142064	total: 124ms	remaining: 354ms
26:	learn: 31.9258854	total: 129ms	remaining: 350ms
27:	learn: 31.4083665	total: 135ms	remaining: 347ms
28:	learn: 31.1615620	total: 140ms	remaining: 343ms
29:	learn: 30.6948867	total: 145ms	remaining: 338ms
30:	learn: 30.3185108	total: 154ms	remaining: 342ms
31:	learn: 29.9245223	total: 164ms	remaining: 348ms
32:	learn: 29.6683643	total: 173ms	remaining: 352ms
33:	learn: 29.3868143	total: 181ms	remaining: 352ms
34:	learn: 29.1105699	total: 187ms	remaining: 347ms
35:	learn: 28.8274848	total: 192ms	remaining: 342ms
36:	learn: 28.5478288	total: 198ms	remaining: 337ms
37:	learn: 28.2355121	total: 204ms	remaining: 333ms
38:	learn: 28.0182564	total: 210ms	remaining: 329ms
39:	learn: 27.7654405	total: 216ms	remaining: 325ms
40:	learn: 27.5720477	total: 222ms	remaining: 320ms
41:	learn: 27.3182782	total: 228ms	remaining: 315ms
42:	learn: 26.9504431	total: 233ms	remaining: 309ms
43:	learn: 26.7281906	total: 239ms	remaining: 304ms
44:	learn: 26.5390008	total: 245ms	remaining: 300ms
45:	learn: 26.3781338	total: 251ms	remaining: 294ms
46:	learn: 26.1763177	total: 256ms	remaining: 288ms
47:	learn: 25.9417647	total: 261ms	remaining: 283ms
48:	learn: 25.7528045	total: 266ms	remaining: 277ms
49:	learn: 25.6336897	total: 271ms	remaining: 271ms
50:	learn: 25.4800426	total: 276ms	remaining: 265ms
51:	learn: 25.2895681	total: 280ms	remaining: 259ms
52:	learn: 25.0827111	total: 285ms	remaining: 253ms
53:	learn: 24.7987678	total: 290ms	remaining: 247ms
54:	learn: 24.6309982	total: 295ms	remaining: 241ms
55:	learn: 24.3526776	total: 299ms	remaining: 235ms
56:	learn: 24.1689125	total: 304ms	remaining: 229ms
57:	learn: 23.9802039	total: 309ms	remaining: 224ms
58:	learn: 23.8059432	total: 314ms	remaining: 218ms
59:	learn: 23.6006403	total: 319ms	remaining: 213ms
60:	learn: 23.2948382	total: 324ms	remaining: 207ms
61:	learn: 23.1338922	total: 328ms	remaining: 201ms
62:	learn: 22.9581269	total: 334ms	remaining: 196ms
63:	learn: 22.8263127	total: 339ms	remaining: 191ms
64:	learn: 22.6966006	total: 347ms	remaining: 187ms
65:	learn: 22.6012389	total: 355ms	remaining: 183ms
66:	learn: 22.4220244	total: 363ms	remaining: 179ms
67:	learn: 22.3148342	total: 368ms	remaining: 173ms
68:	learn: 22.1543592	total: 374ms	remaining: 168ms
69:	learn: 22.0614050	total: 381ms	remaining: 163ms
70:	learn: 21.9134025	total: 386ms	remaining: 158ms
71:	learn: 21.8198101	total: 391ms	remaining: 152ms
72:	learn: 21.6944173	total: 396ms	remaining: 147ms
73:	learn: 21.4727420	total: 401ms	remaining: 141ms
74:	learn: 21.3000560	total: 406ms	remaining: 135ms
75:	learn: 21.1884740	total: 411ms	remaining: 130ms
76:	learn: 21.0321317	total: 416ms	remaining: 124ms
77:	learn: 20.9371793	total: 420ms	remaining: 119ms
78:	learn: 20.6800341	total: 425ms	remaining: 113ms
79:	learn: 20.5629904	total: 430ms	remaining: 107ms
80:	learn: 20.4098217	total: 435ms	remaining: 102ms
81:	learn: 20.2139261	total: 439ms	remaining: 96.4ms
82:	learn: 20.1024260	total: 444ms	remaining: 91ms
83:	learn: 19.9835855	total: 449ms	remaining: 85.5ms
84:	learn: 19.9018880	total: 454ms	remaining: 80ms
85:	learn: 19.7819843	total: 458ms	remaining: 74.6ms
86:	learn: 19.6352780	total: 463ms	remaining: 69.2ms
87:	learn: 19.4888328	total: 468ms	remaining: 63.8ms
88:	learn: 19.4365121	total: 473ms	remaining: 58.4ms
89:	learn: 19.3427430	total: 477ms	remaining: 53.1ms
90:	learn: 19.2884907	total: 483ms	remaining: 47.7ms
91:	learn: 19.1898932	total: 488ms	remaining: 42.4ms
92:	learn: 19.0775661	total: 493ms	remaining: 37.1ms
93:	learn: 19.0334055	total: 498ms	remaining: 31.8ms
94:	learn: 18.9381916	total: 503ms	remaining: 26.5ms
95:	learn: 18.8471198	total: 508ms	remaining: 21.1ms
96:	learn: 18.7136478	total: 513ms	remaining: 15.9ms
97:	learn: 18.6633102	total: 518ms	remaining: 10.6ms
98:	learn: 18.5887516	total: 523ms	remaining: 5.28ms
99:	learn: 18.4841597	total: 528ms	remaining: 0us
0:	learn: 46.2172336	total: 14.4ms	remaining: 1.43s
1:	learn: 45.4248871	total: 23.5ms	remaining: 1.15s
2:	learn: 44.8702937	total: 29.8ms	remaining: 963ms
3:	learn: 44.2019212	total: 35.7ms	remaining: 856ms
4:	learn: 43.4805210	total: 41.5ms	remaining: 789ms
5:	learn: 42.7336269	total: 47.6ms	remaining: 746ms
6:	learn: 42.0396670	total: 53ms	remaining: 704ms
7:	learn: 41.5668459	total: 58.6ms	remaining: 674ms
8:	learn: 40.8999125	total: 64.6ms	remaining: 653ms
9:	learn: 40.3358512	total: 70.1ms	remaining: 631ms
10:	learn: 39.7511489	total: 75.3ms	remaining: 609ms
11:	learn: 39.0775416	total: 81.5ms	remaining: 598ms
12:	learn: 38.5204735	total: 87.6ms	remaining: 586ms
13:	learn: 38.2087509	total: 92.5ms	remaining: 568ms
14:	learn: 37.7259552	total: 97.6ms	remaining: 553ms
15:	learn: 37.1646397	total: 102ms	remaining: 536ms
16:	learn: 36.7093520	total: 107ms	remaining: 521ms
17:	learn: 36.2212308	total: 112ms	remaining: 508ms
18:	learn: 35.8682156	total: 116ms	remaining: 496ms
19:	learn: 35.6026383	total: 121ms	remaining: 484ms
20:	learn: 35.1739725	total: 125ms	remaining: 472ms
21:	learn: 34.5938003	total: 130ms	remaining: 462ms
22:	learn: 34.1479056	total: 135ms	remaining: 452ms
23:	learn: 33.8759356	total: 140ms	remaining: 443ms
24:	learn: 33.2898426	total: 145ms	remaining: 434ms
25:	learn: 32.9220237	total: 150ms	remaining: 426ms
26:	learn: 32.4324374	total: 155ms	remaining: 420ms
27:	learn: 32.1726327	total: 161ms	remaining: 413ms
28:	learn: 31.8020879	total: 166ms	remaining: 407ms
29:	learn: 31.4329781	total: 172ms	remaining: 402ms
30:	learn: 30.9995282	total: 178ms	remaining: 395ms
31:	learn: 30.6815978	total: 183ms	remaining: 389ms
32:	learn: 30.2991029	total: 188ms	remaining: 383ms
33:	learn: 30.0354202	total: 193ms	remaining: 376ms
34:	learn: 29.7620535	total: 203ms	remaining: 376ms
35:	learn: 29.4552589	total: 211ms	remaining: 375ms
36:	learn: 29.2634399	total: 219ms	remaining: 372ms
37:	learn: 28.8345135	total: 224ms	remaining: 366ms
38:	learn: 28.5551142	total: 230ms	remaining: 360ms
39:	learn: 28.3258809	total: 235ms	remaining: 353ms
40:	learn: 28.0835564	total: 240ms	remaining: 345ms
41:	learn: 27.7517159	total: 245ms	remaining: 338ms
42:	learn: 27.5427595	total: 250ms	remaining: 331ms
43:	learn: 27.3925105	total: 254ms	remaining: 324ms
44:	learn: 27.2377120	total: 259ms	remaining: 317ms
45:	learn: 26.9930398	total: 264ms	remaining: 309ms
46:	learn: 26.7748687	total: 268ms	remaining: 302ms
47:	learn: 26.5856986	total: 273ms	remaining: 296ms
48:	learn: 26.4344153	total: 278ms	remaining: 289ms
49:	learn: 26.3263456	total: 283ms	remaining: 283ms
50:	learn: 26.2048412	total: 287ms	remaining: 276ms
51:	learn: 26.0608546	total: 292ms	remaining: 270ms
52:	learn: 25.9428146	total: 297ms	remaining: 263ms
53:	learn: 25.7578029	total: 301ms	remaining: 257ms
54:	learn: 25.5696792	total: 306ms	remaining: 251ms
55:	learn: 25.3291935	total: 311ms	remaining: 244ms
56:	learn: 25.1388942	total: 316ms	remaining: 238ms
57:	learn: 24.9853945	total: 321ms	remaining: 232ms
58:	learn: 24.8037785	total: 326ms	remaining: 226ms
59:	learn: 24.5326704	total: 330ms	remaining: 220ms
60:	learn: 24.2208240	total: 335ms	remaining: 214ms
61:	learn: 24.0774015	total: 340ms	remaining: 208ms
62:	learn: 23.9705824	total: 345ms	remaining: 203ms
63:	learn: 23.8877665	total: 350ms	remaining: 197ms
64:	learn: 23.7309043	total: 355ms	remaining: 191ms
65:	learn: 23.5820140	total: 360ms	remaining: 185ms
66:	learn: 23.3762012	total: 364ms	remaining: 179ms
67:	learn: 23.2317502	total: 369ms	remaining: 174ms
68:	learn: 23.0868331	total: 374ms	remaining: 168ms
69:	learn: 22.9642758	total: 379ms	remaining: 163ms
70:	learn: 22.8085341	total: 384ms	remaining: 157ms
71:	learn: 22.6834294	total: 389ms	remaining: 151ms
72:	learn: 22.6152922	total: 394ms	remaining: 146ms
73:	learn: 22.3675145	total: 403ms	remaining: 142ms
74:	learn: 22.3023338	total: 412ms	remaining: 137ms
75:	learn: 22.1866833	total: 422ms	remaining: 133ms
76:	learn: 22.0163130	total: 431ms	remaining: 129ms
77:	learn: 21.9691306	total: 437ms	remaining: 123ms
78:	learn: 21.9004647	total: 442ms	remaining: 118ms
79:	learn: 21.7931869	total: 448ms	remaining: 112ms
80:	learn: 21.6747916	total: 454ms	remaining: 106ms
81:	learn: 21.5187568	total: 459ms	remaining: 101ms
82:	learn: 21.3124880	total: 465ms	remaining: 95.3ms
83:	learn: 21.1979524	total: 471ms	remaining: 89.6ms
84:	learn: 21.1311130	total: 476ms	remaining: 84ms
85:	learn: 21.0606062	total: 481ms	remaining: 78.4ms
86:	learn: 20.9900935	total: 487ms	remaining: 72.8ms
87:	learn: 20.8908054	total: 493ms	remaining: 67.2ms
88:	learn: 20.8088525	total: 499ms	remaining: 61.6ms
89:	learn: 20.7300955	total: 504ms	remaining: 55.9ms
90:	learn: 20.6130276	total: 509ms	remaining: 50.3ms
91:	learn: 20.5437508	total: 514ms	remaining: 44.7ms
92:	learn: 20.5029426	total: 519ms	remaining: 39.1ms
93:	learn: 20.4416708	total: 524ms	remaining: 33.5ms
94:	learn: 20.3917812	total: 529ms	remaining: 27.8ms
95:	learn: 20.3305024	total: 534ms	remaining: 22.2ms
96:	learn: 20.2375704	total: 539ms	remaining: 16.7ms
97:	learn: 20.1835197	total: 543ms	remaining: 11.1ms
98:	learn: 20.1246834	total: 548ms	remaining: 5.53ms
99:	learn: 20.0506334	total: 553ms	remaining: 0us
0:	learn: 46.7334648	total: 8.78ms	remaining: 869ms
1:	learn: 46.2069876	total: 16.1ms	remaining: 787ms
2:	learn: 45.3699967	total: 21.4ms	remaining: 693ms
3:	learn: 44.6866787	total: 27.7ms	remaining: 664ms
4:	learn: 43.8536031	total: 33ms	remaining: 627ms
5:	learn: 43.4716853	total: 38ms	remaining: 595ms
6:	learn: 42.9929637	total: 43ms	remaining: 572ms
7:	learn: 42.4952169	total: 47.7ms	remaining: 548ms
8:	learn: 41.7548337	total: 52.3ms	remaining: 528ms
9:	learn: 41.1054415	total: 57ms	remaining: 513ms
10:	learn: 40.4827492	total: 61.8ms	remaining: 500ms
11:	learn: 39.7605907	total: 66.5ms	remaining: 488ms
12:	learn: 39.2532558	total: 71.3ms	remaining: 477ms
13:	learn: 38.6572753	total: 76.4ms	remaining: 469ms
14:	learn: 38.2886959	total: 81.1ms	remaining: 460ms
15:	learn: 37.7816612	total: 85.9ms	remaining: 451ms
16:	learn: 37.1680589	total: 90.5ms	remaining: 442ms
17:	learn: 36.5753004	total: 95.3ms	remaining: 434ms
18:	learn: 36.2339458	total: 100ms	remaining: 426ms
19:	learn: 35.9159716	total: 105ms	remaining: 419ms
20:	learn: 35.4591743	total: 110ms	remaining: 413ms
21:	learn: 34.8726070	total: 115ms	remaining: 406ms
22:	learn: 34.3903591	total: 119ms	remaining: 400ms
23:	learn: 34.1236827	total: 124ms	remaining: 394ms
24:	learn: 33.8026540	total: 129ms	remaining: 387ms
25:	learn: 33.4594822	total: 134ms	remaining: 381ms
26:	learn: 33.1338910	total: 139ms	remaining: 375ms
27:	learn: 32.8527106	total: 143ms	remaining: 369ms
28:	learn: 32.4923829	total: 148ms	remaining: 363ms
29:	learn: 32.0560533	total: 153ms	remaining: 356ms
30:	learn: 31.6614408	total: 158ms	remaining: 351ms
31:	learn: 31.2796040	total: 162ms	remaining: 345ms
32:	learn: 30.8214741	total: 167ms	remaining: 339ms
33:	learn: 30.5908694	total: 172ms	remaining: 334ms
34:	learn: 30.3637356	total: 177ms	remaining: 329ms
35:	learn: 30.0446511	total: 182ms	remaining: 324ms
36:	learn: 29.8792549	total: 187ms	remaining: 319ms
37:	learn: 29.5488457	total: 192ms	remaining: 314ms
38:	learn: 29.2808568	total: 198ms	remaining: 309ms
39:	learn: 29.0603765	total: 207ms	remaining: 310ms
40:	learn: 28.8272425	total: 215ms	remaining: 309ms
41:	learn: 28.4753580	total: 224ms	remaining: 310ms
42:	learn: 28.2963614	total: 233ms	remaining: 309ms
43:	learn: 28.1054768	total: 239ms	remaining: 304ms
44:	learn: 27.9038093	total: 244ms	remaining: 299ms
45:	learn: 27.6305487	total: 250ms	remaining: 294ms
46:	learn: 27.4457907	total: 256ms	remaining: 289ms
47:	learn: 27.1855957	total: 262ms	remaining: 284ms
48:	learn: 26.9987934	total: 268ms	remaining: 279ms
49:	learn: 26.7881067	total: 274ms	remaining: 274ms
50:	learn: 26.6385231	total: 279ms	remaining: 268ms
51:	learn: 26.4661755	total: 284ms	remaining: 262ms
52:	learn: 26.3331868	total: 291ms	remaining: 258ms
53:	learn: 26.0353476	total: 298ms	remaining: 253ms
54:	learn: 25.8257147	total: 302ms	remaining: 247ms
55:	learn: 25.5924383	total: 307ms	remaining: 242ms
56:	learn: 25.4082209	total: 312ms	remaining: 236ms
57:	learn: 25.2350104	total: 317ms	remaining: 230ms
58:	learn: 25.1789867	total: 322ms	remaining: 224ms
59:	learn: 24.9111359	total: 327ms	remaining: 218ms
60:	learn: 24.6314503	total: 332ms	remaining: 212ms
61:	learn: 24.4297999	total: 337ms	remaining: 207ms
62:	learn: 24.3126171	total: 342ms	remaining: 201ms
63:	learn: 24.1544005	total: 347ms	remaining: 195ms
64:	learn: 24.0197950	total: 352ms	remaining: 190ms
65:	learn: 23.8483087	total: 357ms	remaining: 184ms
66:	learn: 23.6624915	total: 362ms	remaining: 178ms
67:	learn: 23.5068105	total: 367ms	remaining: 173ms
68:	learn: 23.4266187	total: 372ms	remaining: 167ms
69:	learn: 23.3535388	total: 378ms	remaining: 162ms
70:	learn: 23.2477190	total: 383ms	remaining: 156ms
71:	learn: 23.1877634	total: 388ms	remaining: 151ms
72:	learn: 23.1344720	total: 393ms	remaining: 145ms
73:	learn: 22.9498234	total: 401ms	remaining: 141ms
74:	learn: 22.9068295	total: 410ms	remaining: 137ms
75:	learn: 22.7368434	total: 418ms	remaining: 132ms
76:	learn: 22.6084901	total: 424ms	remaining: 127ms
77:	learn: 22.4690295	total: 431ms	remaining: 121ms
78:	learn: 22.3970100	total: 436ms	remaining: 116ms
79:	learn: 22.3025537	total: 441ms	remaining: 110ms
80:	learn: 22.2089293	total: 446ms	remaining: 105ms
81:	learn: 22.0522107	total: 451ms	remaining: 99.1ms
82:	learn: 21.9368213	total: 457ms	remaining: 93.6ms
83:	learn: 21.7968322	total: 462ms	remaining: 88ms
84:	learn: 21.7416164	total: 466ms	remaining: 82.3ms
85:	learn: 21.6031099	total: 471ms	remaining: 76.7ms
86:	learn: 21.4530627	total: 476ms	remaining: 71.1ms
87:	learn: 21.3118417	total: 481ms	remaining: 65.5ms
88:	learn: 21.2760431	total: 485ms	remaining: 60ms
89:	learn: 21.2071350	total: 490ms	remaining: 54.5ms
90:	learn: 21.1051001	total: 495ms	remaining: 49ms
91:	learn: 21.0246142	total: 500ms	remaining: 43.5ms
92:	learn: 20.9834999	total: 505ms	remaining: 38ms
93:	learn: 20.8989393	total: 509ms	remaining: 32.5ms
94:	learn: 20.8262231	total: 514ms	remaining: 27.1ms
95:	learn: 20.7369110	total: 519ms	remaining: 21.6ms
96:	learn: 20.6409587	total: 523ms	remaining: 16.2ms
97:	learn: 20.5553641	total: 529ms	remaining: 10.8ms
98:	learn: 20.4317232	total: 534ms	remaining: 5.39ms
99:	learn: 20.3708681	total: 539ms	remaining: 0us
0:	learn: 27.6506730	total: 5.06ms	remaining: 501ms
1:	learn: 27.1638793	total: 9.59ms	remaining: 470ms
2:	learn: 26.8000665	total: 14.3ms	remaining: 462ms
3:	learn: 26.4256132	total: 19ms	remaining: 456ms
4:	learn: 26.0088351	total: 25.1ms	remaining: 477ms
5:	learn: 25.7558298	total: 33.3ms	remaining: 521ms
6:	learn: 25.3380711	total: 42.2ms	remaining: 561ms
7:	learn: 25.0571611	total: 48.8ms	remaining: 562ms
8:	learn: 24.6790148	total: 56.1ms	remaining: 567ms
9:	learn: 24.3600941	total: 61.1ms	remaining: 550ms
10:	learn: 24.1105667	total: 66.3ms	remaining: 536ms
11:	learn: 23.7736542	total: 71.5ms	remaining: 524ms
12:	learn: 23.5824429	total: 76.6ms	remaining: 513ms
13:	learn: 23.2658303	total: 81.8ms	remaining: 503ms
14:	learn: 23.0061886	total: 87.4ms	remaining: 495ms
15:	learn: 22.8060389	total: 92.6ms	remaining: 486ms
16:	learn: 22.5899735	total: 97.9ms	remaining: 478ms
17:	learn: 22.3625048	total: 118ms	remaining: 538ms
18:	learn: 22.0706477	total: 123ms	remaining: 523ms
19:	learn: 21.8739394	total: 127ms	remaining: 507ms
20:	learn: 21.6143650	total: 131ms	remaining: 493ms
21:	learn: 21.4571623	total: 135ms	remaining: 480ms
22:	learn: 21.2395769	total: 139ms	remaining: 467ms
23:	learn: 20.9801795	total: 144ms	remaining: 455ms
24:	learn: 20.8036808	total: 148ms	remaining: 444ms
25:	learn: 20.6387539	total: 152ms	remaining: 433ms
26:	learn: 20.4401427	total: 156ms	remaining: 423ms
27:	learn: 20.2879575	total: 161ms	remaining: 413ms
28:	learn: 20.0538664	total: 165ms	remaining: 405ms
29:	learn: 19.8363102	total: 170ms	remaining: 396ms
30:	learn: 19.7015446	total: 174ms	remaining: 387ms
31:	learn: 19.5483114	total: 178ms	remaining: 379ms
32:	learn: 19.4163053	total: 182ms	remaining: 370ms
33:	learn: 19.2880625	total: 187ms	remaining: 362ms
34:	learn: 19.1303389	total: 191ms	remaining: 355ms
35:	learn: 18.9237448	total: 196ms	remaining: 348ms
36:	learn: 18.8142925	total: 200ms	remaining: 340ms
37:	learn: 18.6994696	total: 204ms	remaining: 333ms
38:	learn: 18.5629211	total: 209ms	remaining: 327ms
39:	learn: 18.4600917	total: 213ms	remaining: 320ms
40:	learn: 18.3567139	total: 218ms	remaining: 313ms
41:	learn: 18.2120527	total: 222ms	remaining: 306ms
42:	learn: 18.0688062	total: 227ms	remaining: 300ms
43:	learn: 17.9250181	total: 231ms	remaining: 294ms
44:	learn: 17.8399138	total: 236ms	remaining: 288ms
45:	learn: 17.6720713	total: 240ms	remaining: 282ms
46:	learn: 17.5273091	total: 245ms	remaining: 277ms
47:	learn: 17.4232814	total: 250ms	remaining: 271ms
48:	learn: 17.2957579	total: 261ms	remaining: 271ms
49:	learn: 17.1892874	total: 269ms	remaining: 269ms
50:	learn: 17.0490355	total: 275ms	remaining: 264ms
51:	learn: 16.9666450	total: 280ms	remaining: 258ms
52:	learn: 16.8600056	total: 286ms	remaining: 253ms
53:	learn: 16.7542588	total: 290ms	remaining: 247ms
54:	learn: 16.6316077	total: 294ms	remaining: 241ms
55:	learn: 16.5588112	total: 299ms	remaining: 235ms
56:	learn: 16.5010186	total: 303ms	remaining: 229ms
57:	learn: 16.4081540	total: 307ms	remaining: 222ms
58:	learn: 16.3040451	total: 312ms	remaining: 217ms
59:	learn: 16.1890564	total: 316ms	remaining: 211ms
60:	learn: 16.0977103	total: 320ms	remaining: 205ms
61:	learn: 15.9627607	total: 325ms	remaining: 199ms
62:	learn: 15.9022248	total: 329ms	remaining: 193ms
63:	learn: 15.8151881	total: 333ms	remaining: 187ms
64:	learn: 15.7353125	total: 338ms	remaining: 182ms
65:	learn: 15.6312897	total: 342ms	remaining: 176ms
66:	learn: 15.5330927	total: 346ms	remaining: 170ms
67:	learn: 15.4698681	total: 350ms	remaining: 165ms
68:	learn: 15.4108571	total: 354ms	remaining: 159ms
69:	learn: 15.3492945	total: 358ms	remaining: 154ms
70:	learn: 15.3036540	total: 363ms	remaining: 148ms
71:	learn: 15.2390833	total: 367ms	remaining: 143ms
72:	learn: 15.1556327	total: 372ms	remaining: 137ms
73:	learn: 15.1016315	total: 376ms	remaining: 132ms
74:	learn: 15.0287076	total: 380ms	remaining: 127ms
75:	learn: 14.9530572	total: 385ms	remaining: 121ms
76:	learn: 14.8965517	total: 389ms	remaining: 116ms
77:	learn: 14.8125426	total: 394ms	remaining: 111ms
78:	learn: 14.7435359	total: 398ms	remaining: 106ms
79:	learn: 14.6963163	total: 402ms	remaining: 101ms
80:	learn: 14.6200060	total: 407ms	remaining: 95.5ms
81:	learn: 14.5707760	total: 412ms	remaining: 90.4ms
82:	learn: 14.5053651	total: 416ms	remaining: 85.3ms
83:	learn: 14.4115458	total: 421ms	remaining: 80.1ms
84:	learn: 14.3117159	total: 425ms	remaining: 75.1ms
85:	learn: 14.2511326	total: 433ms	remaining: 70.4ms
86:	learn: 14.1372486	total: 440ms	remaining: 65.7ms
87:	learn: 14.0992301	total: 447ms	remaining: 61ms
88:	learn: 14.0228331	total: 453ms	remaining: 56ms
89:	learn: 13.9249836	total: 459ms	remaining: 51ms
90:	learn: 13.8679364	total: 464ms	remaining: 45.9ms
91:	learn: 13.8405578	total: 471ms	remaining: 40.9ms
92:	learn: 13.7711325	total: 476ms	remaining: 35.8ms
93:	learn: 13.7357019	total: 481ms	remaining: 30.7ms
94:	learn: 13.6735271	total: 487ms	remaining: 25.6ms
95:	learn: 13.5682393	total: 492ms	remaining: 20.5ms
96:	learn: 13.5342610	total: 497ms	remaining: 15.4ms
97:	learn: 13.4710034	total: 502ms	remaining: 10.2ms
98:	learn: 13.4022402	total: 508ms	remaining: 5.13ms
99:	learn: 13.3351238	total: 513ms	remaining: 0us
0:	learn: 42.9181702	total: 4.43ms	remaining: 439ms
1:	learn: 42.0286736	total: 9.23ms	remaining: 452ms
2:	learn: 41.2764568	total: 13.4ms	remaining: 434ms
3:	learn: 40.4721918	total: 17.5ms	remaining: 421ms
4:	learn: 39.8518928	total: 21.9ms	remaining: 416ms
5:	learn: 39.2645479	total: 26.6ms	remaining: 417ms
6:	learn: 38.4453704	total: 30.7ms	remaining: 408ms
7:	learn: 37.7122059	total: 34.9ms	remaining: 402ms
8:	learn: 36.9185796	total: 39.1ms	remaining: 396ms
9:	learn: 36.1668427	total: 43.9ms	remaining: 395ms
10:	learn: 35.5639029	total: 48.2ms	remaining: 390ms
11:	learn: 34.7724193	total: 52.6ms	remaining: 386ms
12:	learn: 34.3053433	total: 57.2ms	remaining: 383ms
13:	learn: 33.6561327	total: 58.6ms	remaining: 360ms
14:	learn: 33.0134042	total: 63.1ms	remaining: 358ms
15:	learn: 32.4483300	total: 67.6ms	remaining: 355ms
16:	learn: 31.8581144	total: 72.7ms	remaining: 355ms
17:	learn: 31.2858301	total: 77.4ms	remaining: 353ms
18:	learn: 30.8483018	total: 82.2ms	remaining: 350ms
19:	learn: 30.4174622	total: 87ms	remaining: 348ms
20:	learn: 29.8994411	total: 91.7ms	remaining: 345ms
21:	learn: 29.5045355	total: 96.4ms	remaining: 342ms
22:	learn: 28.9923519	total: 103ms	remaining: 345ms
23:	learn: 28.4255717	total: 111ms	remaining: 350ms
24:	learn: 28.0283139	total: 118ms	remaining: 353ms
25:	learn: 27.7434814	total: 124ms	remaining: 353ms
26:	learn: 27.2770731	total: 131ms	remaining: 353ms
27:	learn: 26.8928270	total: 136ms	remaining: 350ms
28:	learn: 26.4282671	total: 141ms	remaining: 344ms
29:	learn: 26.0272764	total: 145ms	remaining: 338ms
30:	learn: 25.7579312	total: 150ms	remaining: 333ms
31:	learn: 25.4542434	total: 154ms	remaining: 327ms
32:	learn: 25.1232564	total: 158ms	remaining: 321ms
33:	learn: 24.8110795	total: 163ms	remaining: 317ms
34:	learn: 24.5077579	total: 168ms	remaining: 311ms
35:	learn: 24.1909000	total: 172ms	remaining: 306ms
36:	learn: 23.8719468	total: 177ms	remaining: 301ms
37:	learn: 23.5764366	total: 178ms	remaining: 290ms
38:	learn: 23.3468086	total: 183ms	remaining: 285ms
39:	learn: 23.0908771	total: 187ms	remaining: 280ms
40:	learn: 22.8580876	total: 191ms	remaining: 275ms
41:	learn: 22.6060825	total: 196ms	remaining: 270ms
42:	learn: 22.4125407	total: 200ms	remaining: 266ms
43:	learn: 22.1990617	total: 205ms	remaining: 261ms
44:	learn: 21.9716164	total: 210ms	remaining: 256ms
45:	learn: 21.8360935	total: 214ms	remaining: 251ms
46:	learn: 21.6169256	total: 219ms	remaining: 246ms
47:	learn: 21.4620612	total: 223ms	remaining: 241ms
48:	learn: 21.2894194	total: 227ms	remaining: 236ms
49:	learn: 21.1066266	total: 231ms	remaining: 231ms
50:	learn: 20.9484898	total: 236ms	remaining: 227ms
51:	learn: 20.7195338	total: 240ms	remaining: 222ms
52:	learn: 20.4899740	total: 245ms	remaining: 217ms
53:	learn: 20.3356583	total: 250ms	remaining: 213ms
54:	learn: 20.0754393	total: 255ms	remaining: 208ms
55:	learn: 19.9199159	total: 259ms	remaining: 203ms
56:	learn: 19.7761128	total: 263ms	remaining: 199ms
57:	learn: 19.6533060	total: 267ms	remaining: 194ms
58:	learn: 19.5113942	total: 272ms	remaining: 189ms
59:	learn: 19.3985022	total: 277ms	remaining: 185ms
60:	learn: 19.2683443	total: 282ms	remaining: 180ms
61:	learn: 19.1460824	total: 286ms	remaining: 176ms
62:	learn: 19.0042655	total: 291ms	remaining: 171ms
63:	learn: 18.8720873	total: 296ms	remaining: 167ms
64:	learn: 18.7183888	total: 302ms	remaining: 163ms
65:	learn: 18.5472360	total: 311ms	remaining: 160ms
66:	learn: 18.3976642	total: 324ms	remaining: 160ms
67:	learn: 18.2282851	total: 332ms	remaining: 156ms
68:	learn: 18.1469157	total: 338ms	remaining: 152ms
69:	learn: 18.0649494	total: 343ms	remaining: 147ms
70:	learn: 17.9485405	total: 349ms	remaining: 142ms
71:	learn: 17.8460261	total: 354ms	remaining: 138ms
72:	learn: 17.7679843	total: 359ms	remaining: 133ms
73:	learn: 17.5989290	total: 365ms	remaining: 128ms
74:	learn: 17.4381322	total: 370ms	remaining: 123ms
75:	learn: 17.3370886	total: 376ms	remaining: 119ms
76:	learn: 17.2675308	total: 381ms	remaining: 114ms
77:	learn: 17.1946430	total: 387ms	remaining: 109ms
78:	learn: 17.0923725	total: 394ms	remaining: 105ms
79:	learn: 17.0537265	total: 399ms	remaining: 99.8ms
80:	learn: 16.9456831	total: 404ms	remaining: 94.7ms
81:	learn: 16.8457353	total: 408ms	remaining: 89.6ms
82:	learn: 16.7469310	total: 412ms	remaining: 84.4ms
83:	learn: 16.6679953	total: 416ms	remaining: 79.3ms
84:	learn: 16.6274189	total: 420ms	remaining: 74.2ms
85:	learn: 16.5516530	total: 425ms	remaining: 69.2ms
86:	learn: 16.4886066	total: 429ms	remaining: 64.1ms
87:	learn: 16.3947859	total: 434ms	remaining: 59.1ms
88:	learn: 16.3406495	total: 438ms	remaining: 54.1ms
89:	learn: 16.3019195	total: 443ms	remaining: 49.2ms
90:	learn: 16.1860681	total: 447ms	remaining: 44.2ms
91:	learn: 16.1282812	total: 451ms	remaining: 39.2ms
92:	learn: 16.0303652	total: 455ms	remaining: 34.3ms
93:	learn: 15.9561692	total: 460ms	remaining: 29.4ms
94:	learn: 15.8733994	total: 464ms	remaining: 24.4ms
95:	learn: 15.8108833	total: 468ms	remaining: 19.5ms
96:	learn: 15.7606004	total: 473ms	remaining: 14.6ms
97:	learn: 15.6984664	total: 477ms	remaining: 9.74ms
98:	learn: 15.6223632	total: 482ms	remaining: 4.87ms
99:	learn: 15.5671136	total: 487ms	remaining: 0us
0:	learn: 46.4788614	total: 1.86ms	remaining: 184ms
1:	learn: 45.7608372	total: 6.6ms	remaining: 324ms
2:	learn: 44.8825004	total: 11.4ms	remaining: 367ms
3:	learn: 44.0362738	total: 16ms	remaining: 384ms
4:	learn: 43.2086374	total: 20.7ms	remaining: 393ms
5:	learn: 42.5835773	total: 25.5ms	remaining: 399ms
6:	learn: 41.9673269	total: 30.1ms	remaining: 400ms
7:	learn: 41.4748717	total: 34.7ms	remaining: 399ms
8:	learn: 40.7129183	total: 39.6ms	remaining: 400ms
9:	learn: 39.8900884	total: 44.1ms	remaining: 397ms
10:	learn: 39.4142193	total: 48.2ms	remaining: 390ms
11:	learn: 38.8645613	total: 52.3ms	remaining: 384ms
12:	learn: 38.2394731	total: 56.8ms	remaining: 380ms
13:	learn: 37.6834515	total: 60.9ms	remaining: 374ms
14:	learn: 37.0673507	total: 65ms	remaining: 368ms
15:	learn: 36.4728340	total: 69.4ms	remaining: 365ms
16:	learn: 36.0489086	total: 73.9ms	remaining: 361ms
17:	learn: 35.4744141	total: 78.3ms	remaining: 357ms
18:	learn: 35.0106021	total: 82.4ms	remaining: 351ms
19:	learn: 34.5586053	total: 86.7ms	remaining: 347ms
20:	learn: 34.1308223	total: 91.1ms	remaining: 343ms
21:	learn: 33.7701450	total: 95.4ms	remaining: 338ms
22:	learn: 33.4425444	total: 99.8ms	remaining: 334ms
23:	learn: 33.0296412	total: 104ms	remaining: 330ms
24:	learn: 32.6359803	total: 109ms	remaining: 326ms
25:	learn: 32.1846182	total: 113ms	remaining: 321ms
26:	learn: 31.7620230	total: 117ms	remaining: 317ms
27:	learn: 31.4669337	total: 121ms	remaining: 312ms
28:	learn: 31.0792062	total: 126ms	remaining: 307ms
29:	learn: 30.7970537	total: 130ms	remaining: 303ms
30:	learn: 30.4952215	total: 134ms	remaining: 299ms
31:	learn: 30.2845344	total: 138ms	remaining: 294ms
32:	learn: 29.9592732	total: 143ms	remaining: 290ms
33:	learn: 29.6798596	total: 148ms	remaining: 287ms
34:	learn: 29.3368905	total: 153ms	remaining: 283ms
35:	learn: 29.0621238	total: 157ms	remaining: 279ms
36:	learn: 28.6445375	total: 162ms	remaining: 275ms
37:	learn: 28.2418096	total: 166ms	remaining: 271ms
38:	learn: 27.9495390	total: 171ms	remaining: 267ms
39:	learn: 27.6958160	total: 178ms	remaining: 267ms
40:	learn: 27.4811189	total: 186ms	remaining: 267ms
41:	learn: 27.1494420	total: 197ms	remaining: 272ms
42:	learn: 26.8388873	total: 204ms	remaining: 271ms
43:	learn: 26.5721300	total: 210ms	remaining: 267ms
44:	learn: 26.3384738	total: 215ms	remaining: 263ms
45:	learn: 26.1894781	total: 220ms	remaining: 259ms
46:	learn: 25.9580198	total: 226ms	remaining: 254ms
47:	learn: 25.7897985	total: 231ms	remaining: 251ms
48:	learn: 25.6000271	total: 236ms	remaining: 246ms
49:	learn: 25.4130873	total: 241ms	remaining: 241ms
50:	learn: 25.1699061	total: 247ms	remaining: 237ms
51:	learn: 24.9324449	total: 252ms	remaining: 233ms
52:	learn: 24.7729152	total: 257ms	remaining: 228ms
53:	learn: 24.5026563	total: 263ms	remaining: 224ms
54:	learn: 24.2332627	total: 269ms	remaining: 220ms
55:	learn: 23.9611984	total: 274ms	remaining: 215ms
56:	learn: 23.7862603	total: 278ms	remaining: 210ms
57:	learn: 23.6318154	total: 282ms	remaining: 205ms
58:	learn: 23.4443306	total: 287ms	remaining: 199ms
59:	learn: 23.2581425	total: 292ms	remaining: 195ms
60:	learn: 23.0549901	total: 296ms	remaining: 189ms
61:	learn: 22.8666218	total: 301ms	remaining: 184ms
62:	learn: 22.6956739	total: 304ms	remaining: 179ms
63:	learn: 22.5068544	total: 309ms	remaining: 174ms
64:	learn: 22.1859147	total: 313ms	remaining: 169ms
65:	learn: 22.0462043	total: 318ms	remaining: 164ms
66:	learn: 21.9329563	total: 322ms	remaining: 158ms
67:	learn: 21.8029736	total: 326ms	remaining: 153ms
68:	learn: 21.6861091	total: 331ms	remaining: 149ms
69:	learn: 21.4838140	total: 335ms	remaining: 144ms
70:	learn: 21.3548921	total: 340ms	remaining: 139ms
71:	learn: 21.2244517	total: 344ms	remaining: 134ms
72:	learn: 21.0702958	total: 349ms	remaining: 129ms
73:	learn: 20.9224662	total: 354ms	remaining: 124ms
74:	learn: 20.8150357	total: 359ms	remaining: 120ms
75:	learn: 20.6962739	total: 364ms	remaining: 115ms
76:	learn: 20.5809258	total: 368ms	remaining: 110ms
77:	learn: 20.4735470	total: 375ms	remaining: 106ms
78:	learn: 20.3778167	total: 382ms	remaining: 102ms
79:	learn: 20.2211268	total: 390ms	remaining: 97.5ms
80:	learn: 20.1478678	total: 396ms	remaining: 93ms
81:	learn: 20.1032967	total: 402ms	remaining: 88.1ms
82:	learn: 19.9236300	total: 407ms	remaining: 83.4ms
83:	learn: 19.8151745	total: 411ms	remaining: 78.3ms
84:	learn: 19.7099856	total: 416ms	remaining: 73.3ms
85:	learn: 19.6264833	total: 420ms	remaining: 68.4ms
86:	learn: 19.4916361	total: 425ms	remaining: 63.5ms
87:	learn: 19.4050529	total: 429ms	remaining: 58.5ms
88:	learn: 19.2547065	total: 433ms	remaining: 53.6ms
89:	learn: 19.1610225	total: 437ms	remaining: 48.6ms
90:	learn: 19.0898958	total: 442ms	remaining: 43.7ms
91:	learn: 19.0489664	total: 446ms	remaining: 38.8ms
92:	learn: 18.9206240	total: 451ms	remaining: 33.9ms
93:	learn: 18.8636239	total: 455ms	remaining: 29ms
94:	learn: 18.8126187	total: 459ms	remaining: 24.2ms
95:	learn: 18.7579275	total: 463ms	remaining: 19.3ms
96:	learn: 18.6382753	total: 468ms	remaining: 14.5ms
97:	learn: 18.5397334	total: 472ms	remaining: 9.63ms
98:	learn: 18.4375951	total: 476ms	remaining: 4.81ms
99:	learn: 18.4033755	total: 481ms	remaining: 0us
0:	learn: 46.1068821	total: 1.84ms	remaining: 182ms
1:	learn: 45.3970261	total: 6.64ms	remaining: 325ms
2:	learn: 44.8732696	total: 11ms	remaining: 355ms
3:	learn: 44.1290184	total: 15.4ms	remaining: 369ms
4:	learn: 43.3290271	total: 19.8ms	remaining: 375ms
5:	learn: 42.7069090	total: 24.7ms	remaining: 386ms
6:	learn: 42.0572971	total: 29.2ms	remaining: 388ms
7:	learn: 41.4797924	total: 33.7ms	remaining: 387ms
8:	learn: 41.0023122	total: 38.3ms	remaining: 387ms
9:	learn: 40.5330570	total: 42.8ms	remaining: 385ms
10:	learn: 39.9726545	total: 47.2ms	remaining: 382ms
11:	learn: 39.3044053	total: 53.3ms	remaining: 391ms
12:	learn: 38.8169735	total: 61ms	remaining: 408ms
13:	learn: 38.2458761	total: 69.5ms	remaining: 427ms
14:	learn: 37.6280321	total: 77ms	remaining: 436ms
15:	learn: 37.0800610	total: 85ms	remaining: 446ms
16:	learn: 36.5489363	total: 90.8ms	remaining: 444ms
17:	learn: 36.0981456	total: 96.2ms	remaining: 438ms
18:	learn: 35.6956274	total: 101ms	remaining: 433ms
19:	learn: 35.1471999	total: 115ms	remaining: 460ms
20:	learn: 34.6235408	total: 120ms	remaining: 453ms
21:	learn: 34.1987018	total: 126ms	remaining: 445ms
22:	learn: 33.8985062	total: 131ms	remaining: 439ms
23:	learn: 33.3869017	total: 136ms	remaining: 431ms
24:	learn: 32.9100550	total: 141ms	remaining: 422ms
25:	learn: 32.4156208	total: 146ms	remaining: 416ms
26:	learn: 31.9320493	total: 152ms	remaining: 411ms
27:	learn: 31.5711468	total: 157ms	remaining: 403ms
28:	learn: 31.2404433	total: 161ms	remaining: 395ms
29:	learn: 30.8807946	total: 166ms	remaining: 387ms
30:	learn: 30.5948438	total: 170ms	remaining: 379ms
31:	learn: 30.3885560	total: 175ms	remaining: 372ms
32:	learn: 30.0625101	total: 179ms	remaining: 364ms
33:	learn: 29.9113114	total: 184ms	remaining: 357ms
34:	learn: 29.6983470	total: 188ms	remaining: 350ms
35:	learn: 29.4775849	total: 193ms	remaining: 343ms
36:	learn: 29.0538055	total: 198ms	remaining: 336ms
37:	learn: 28.6792318	total: 202ms	remaining: 330ms
38:	learn: 28.4231383	total: 207ms	remaining: 323ms
39:	learn: 28.1078565	total: 211ms	remaining: 317ms
40:	learn: 27.9079179	total: 215ms	remaining: 310ms
41:	learn: 27.6721506	total: 220ms	remaining: 304ms
42:	learn: 27.4228033	total: 225ms	remaining: 298ms
43:	learn: 27.1740534	total: 230ms	remaining: 293ms
44:	learn: 26.8584071	total: 235ms	remaining: 287ms
45:	learn: 26.6902083	total: 240ms	remaining: 281ms
46:	learn: 26.4855335	total: 245ms	remaining: 276ms
47:	learn: 26.2730822	total: 249ms	remaining: 270ms
48:	learn: 26.1058689	total: 257ms	remaining: 268ms
49:	learn: 25.8587318	total: 265ms	remaining: 265ms
50:	learn: 25.7558005	total: 272ms	remaining: 262ms
51:	learn: 25.5846925	total: 278ms	remaining: 257ms
52:	learn: 25.4249887	total: 285ms	remaining: 253ms
53:	learn: 25.1911054	total: 290ms	remaining: 247ms
54:	learn: 25.0544755	total: 295ms	remaining: 241ms
55:	learn: 24.8874006	total: 301ms	remaining: 236ms
56:	learn: 24.7736279	total: 306ms	remaining: 231ms
57:	learn: 24.6156255	total: 311ms	remaining: 225ms
58:	learn: 24.3962421	total: 316ms	remaining: 220ms
59:	learn: 24.2685129	total: 321ms	remaining: 214ms
60:	learn: 24.1874096	total: 326ms	remaining: 209ms
61:	learn: 24.0394287	total: 332ms	remaining: 203ms
62:	learn: 23.9281768	total: 337ms	remaining: 198ms
63:	learn: 23.7423900	total: 341ms	remaining: 192ms
64:	learn: 23.6015209	total: 345ms	remaining: 186ms
65:	learn: 23.4677943	total: 349ms	remaining: 180ms
66:	learn: 23.3215256	total: 354ms	remaining: 174ms
67:	learn: 23.1869360	total: 358ms	remaining: 168ms
68:	learn: 22.9691180	total: 362ms	remaining: 163ms
69:	learn: 22.7531657	total: 367ms	remaining: 157ms
70:	learn: 22.6133477	total: 371ms	remaining: 152ms
71:	learn: 22.3452758	total: 376ms	remaining: 146ms
72:	learn: 22.2065350	total: 380ms	remaining: 141ms
73:	learn: 22.1071155	total: 384ms	remaining: 135ms
74:	learn: 21.9740686	total: 389ms	remaining: 130ms
75:	learn: 21.8892033	total: 393ms	remaining: 124ms
76:	learn: 21.8267882	total: 397ms	remaining: 119ms
77:	learn: 21.7423479	total: 401ms	remaining: 113ms
78:	learn: 21.6242075	total: 406ms	remaining: 108ms
79:	learn: 21.5016910	total: 410ms	remaining: 103ms
80:	learn: 21.4806623	total: 411ms	remaining: 96.4ms
81:	learn: 21.3166637	total: 415ms	remaining: 91.1ms
82:	learn: 21.2222534	total: 419ms	remaining: 85.9ms
83:	learn: 21.1535708	total: 424ms	remaining: 80.7ms
84:	learn: 21.0858902	total: 428ms	remaining: 75.6ms
85:	learn: 20.9206003	total: 433ms	remaining: 70.5ms
86:	learn: 20.8674695	total: 438ms	remaining: 65.4ms
87:	learn: 20.8089875	total: 443ms	remaining: 60.4ms
88:	learn: 20.7085401	total: 447ms	remaining: 55.3ms
89:	learn: 20.5513468	total: 452ms	remaining: 50.2ms
90:	learn: 20.4586742	total: 461ms	remaining: 45.6ms
91:	learn: 20.3932149	total: 472ms	remaining: 41ms
92:	learn: 20.3000895	total: 478ms	remaining: 36ms
93:	learn: 20.2254009	total: 486ms	remaining: 31ms
94:	learn: 20.1750050	total: 491ms	remaining: 25.8ms
95:	learn: 20.0715579	total: 497ms	remaining: 20.7ms
96:	learn: 19.9920082	total: 502ms	remaining: 15.5ms
97:	learn: 19.9664401	total: 507ms	remaining: 10.3ms
98:	learn: 19.8689673	total: 513ms	remaining: 5.18ms
99:	learn: 19.7537356	total: 518ms	remaining: 0us
0:	learn: 46.8832143	total: 4.68ms	remaining: 463ms
1:	learn: 45.8700349	total: 8.76ms	remaining: 429ms
2:	learn: 45.0546867	total: 12.8ms	remaining: 414ms
3:	learn: 44.2829439	total: 17.1ms	remaining: 411ms
4:	learn: 43.4609042	total: 21.6ms	remaining: 411ms
5:	learn: 42.6754991	total: 26ms	remaining: 408ms
6:	learn: 41.9234935	total: 30.5ms	remaining: 405ms
7:	learn: 41.3987518	total: 34.3ms	remaining: 395ms
8:	learn: 40.6625066	total: 38.4ms	remaining: 388ms
9:	learn: 40.0029561	total: 42.4ms	remaining: 382ms
10:	learn: 39.3897033	total: 47.1ms	remaining: 381ms
11:	learn: 38.7741453	total: 51.2ms	remaining: 376ms
12:	learn: 38.1201100	total: 55.8ms	remaining: 374ms
13:	learn: 37.5129454	total: 60.4ms	remaining: 371ms
14:	learn: 37.2062206	total: 65.3ms	remaining: 370ms
15:	learn: 36.6831741	total: 72.6ms	remaining: 381ms
16:	learn: 36.2902788	total: 79.2ms	remaining: 387ms
17:	learn: 35.7639930	total: 86.2ms	remaining: 393ms
18:	learn: 35.2580953	total: 92.6ms	remaining: 395ms
19:	learn: 34.7809739	total: 97.4ms	remaining: 390ms
20:	learn: 34.1330433	total: 102ms	remaining: 385ms
21:	learn: 33.7302219	total: 109ms	remaining: 388ms
22:	learn: 33.3502495	total: 114ms	remaining: 380ms
23:	learn: 33.0067804	total: 118ms	remaining: 373ms
24:	learn: 32.6897855	total: 122ms	remaining: 366ms
25:	learn: 32.4361119	total: 126ms	remaining: 359ms
26:	learn: 32.1278981	total: 131ms	remaining: 353ms
27:	learn: 31.7863721	total: 135ms	remaining: 347ms
28:	learn: 31.4791450	total: 139ms	remaining: 341ms
29:	learn: 31.1760161	total: 143ms	remaining: 334ms
30:	learn: 30.9238888	total: 148ms	remaining: 328ms
31:	learn: 30.5500905	total: 152ms	remaining: 323ms
32:	learn: 30.3078126	total: 156ms	remaining: 317ms
33:	learn: 30.0480921	total: 160ms	remaining: 311ms
34:	learn: 29.8623884	total: 165ms	remaining: 306ms
35:	learn: 29.5991038	total: 169ms	remaining: 300ms
36:	learn: 29.4061161	total: 173ms	remaining: 295ms
37:	learn: 29.0269515	total: 177ms	remaining: 289ms
38:	learn: 28.8224959	total: 182ms	remaining: 284ms
39:	learn: 28.6417843	total: 186ms	remaining: 279ms
40:	learn: 28.3633368	total: 190ms	remaining: 273ms
41:	learn: 28.0200246	total: 194ms	remaining: 268ms
42:	learn: 27.7221254	total: 198ms	remaining: 263ms
43:	learn: 27.5105818	total: 203ms	remaining: 258ms
44:	learn: 27.3551010	total: 207ms	remaining: 253ms
45:	learn: 27.0787522	total: 211ms	remaining: 248ms
46:	learn: 26.8726317	total: 216ms	remaining: 243ms
47:	learn: 26.8003277	total: 220ms	remaining: 238ms
48:	learn: 26.5493785	total: 224ms	remaining: 233ms
49:	learn: 26.3699550	total: 228ms	remaining: 228ms
50:	learn: 26.1519631	total: 233ms	remaining: 224ms
51:	learn: 25.9277325	total: 237ms	remaining: 219ms
52:	learn: 25.7286035	total: 241ms	remaining: 214ms
53:	learn: 25.4999193	total: 246ms	remaining: 209ms
54:	learn: 25.3434703	total: 250ms	remaining: 204ms
55:	learn: 25.1497545	total: 254ms	remaining: 200ms
56:	learn: 24.9498143	total: 258ms	remaining: 195ms
57:	learn: 24.6509390	total: 263ms	remaining: 190ms
58:	learn: 24.5576144	total: 267ms	remaining: 185ms
59:	learn: 24.4265144	total: 271ms	remaining: 181ms
60:	learn: 24.3100706	total: 276ms	remaining: 177ms
61:	learn: 24.1727952	total: 282ms	remaining: 173ms
62:	learn: 24.0478558	total: 287ms	remaining: 168ms
63:	learn: 23.9124577	total: 291ms	remaining: 164ms
64:	learn: 23.7703718	total: 296ms	remaining: 159ms
65:	learn: 23.5975027	total: 300ms	remaining: 155ms
66:	learn: 23.4318077	total: 309ms	remaining: 152ms
67:	learn: 23.3099691	total: 316ms	remaining: 149ms
68:	learn: 23.1947982	total: 325ms	remaining: 146ms
69:	learn: 23.0260174	total: 333ms	remaining: 143ms
70:	learn: 22.8523100	total: 349ms	remaining: 142ms
71:	learn: 22.8028534	total: 354ms	remaining: 138ms
72:	learn: 22.6880658	total: 359ms	remaining: 133ms
73:	learn: 22.5956809	total: 365ms	remaining: 128ms
74:	learn: 22.4692932	total: 370ms	remaining: 123ms
75:	learn: 22.2863504	total: 375ms	remaining: 119ms
76:	learn: 22.1911237	total: 395ms	remaining: 118ms
77:	learn: 22.1098391	total: 399ms	remaining: 113ms
78:	learn: 22.0182738	total: 403ms	remaining: 107ms
79:	learn: 21.9306746	total: 408ms	remaining: 102ms
80:	learn: 21.7508233	total: 412ms	remaining: 96.7ms
81:	learn: 21.7108446	total: 416ms	remaining: 91.4ms
82:	learn: 21.5931852	total: 421ms	remaining: 86.1ms
83:	learn: 21.4480361	total: 425ms	remaining: 80.9ms
84:	learn: 21.3092119	total: 429ms	remaining: 75.7ms
85:	learn: 21.2605557	total: 433ms	remaining: 70.5ms
86:	learn: 21.1123597	total: 437ms	remaining: 65.4ms
87:	learn: 21.0115642	total: 442ms	remaining: 60.2ms
88:	learn: 20.9389040	total: 446ms	remaining: 55.1ms
89:	learn: 20.8300300	total: 450ms	remaining: 50ms
90:	learn: 20.7159733	total: 454ms	remaining: 44.9ms
91:	learn: 20.6282090	total: 459ms	remaining: 39.9ms
92:	learn: 20.5164529	total: 463ms	remaining: 34.8ms
93:	learn: 20.4692032	total: 467ms	remaining: 29.8ms
94:	learn: 20.3768451	total: 471ms	remaining: 24.8ms
95:	learn: 20.2808056	total: 476ms	remaining: 19.8ms
96:	learn: 20.2082089	total: 481ms	remaining: 14.9ms
97:	learn: 20.1698768	total: 485ms	remaining: 9.9ms
98:	learn: 20.1048816	total: 490ms	remaining: 4.95ms
99:	learn: 20.0086159	total: 495ms	remaining: 0us
0:	learn: 27.3441720	total: 19.6ms	remaining: 1.94s
1:	learn: 26.7159954	total: 38.8ms	remaining: 1.9s
2:	learn: 26.0850318	total: 57.5ms	remaining: 1.86s
3:	learn: 25.4039656	total: 76.8ms	remaining: 1.84s
4:	learn: 24.7930659	total: 95.2ms	remaining: 1.81s
5:	learn: 24.2028590	total: 115ms	remaining: 1.8s
6:	learn: 23.6622902	total: 136ms	remaining: 1.8s
7:	learn: 23.1531175	total: 157ms	remaining: 1.81s
8:	learn: 22.7050792	total: 180ms	remaining: 1.82s
9:	learn: 22.2151788	total: 213ms	remaining: 1.92s
10:	learn: 21.7708844	total: 237ms	remaining: 1.92s
11:	learn: 21.2587174	total: 260ms	remaining: 1.9s
12:	learn: 20.7559870	total: 283ms	remaining: 1.89s
13:	learn: 20.3040842	total: 304ms	remaining: 1.87s
14:	learn: 19.9019524	total: 324ms	remaining: 1.83s
15:	learn: 19.5186012	total: 343ms	remaining: 1.8s
16:	learn: 19.1521621	total: 364ms	remaining: 1.77s
17:	learn: 18.7652180	total: 386ms	remaining: 1.76s
18:	learn: 18.4446446	total: 415ms	remaining: 1.77s
19:	learn: 18.0977650	total: 438ms	remaining: 1.75s
20:	learn: 17.7791328	total: 458ms	remaining: 1.72s
21:	learn: 17.4777648	total: 479ms	remaining: 1.7s
22:	learn: 17.1794361	total: 498ms	remaining: 1.67s
23:	learn: 16.8685032	total: 519ms	remaining: 1.64s
24:	learn: 16.6274695	total: 539ms	remaining: 1.62s
25:	learn: 16.3071099	total: 560ms	remaining: 1.59s
26:	learn: 16.0249663	total: 582ms	remaining: 1.57s
27:	learn: 15.7535309	total: 609ms	remaining: 1.56s
28:	learn: 15.4777235	total: 635ms	remaining: 1.55s
29:	learn: 15.2410825	total: 657ms	remaining: 1.53s
30:	learn: 15.0133002	total: 680ms	remaining: 1.51s
31:	learn: 14.8018912	total: 703ms	remaining: 1.49s
32:	learn: 14.5701546	total: 724ms	remaining: 1.47s
33:	learn: 14.3799060	total: 743ms	remaining: 1.44s
34:	learn: 14.0975095	total: 764ms	remaining: 1.42s
35:	learn: 13.8873493	total: 787ms	remaining: 1.4s
36:	learn: 13.6812023	total: 810ms	remaining: 1.38s
37:	learn: 13.4943017	total: 843ms	remaining: 1.37s
38:	learn: 13.3224094	total: 866ms	remaining: 1.35s
39:	learn: 13.0967901	total: 889ms	remaining: 1.33s
40:	learn: 12.9138190	total: 912ms	remaining: 1.31s
41:	learn: 12.7764458	total: 934ms	remaining: 1.29s
42:	learn: 12.6593656	total: 956ms	remaining: 1.27s
43:	learn: 12.5051105	total: 978ms	remaining: 1.24s
44:	learn: 12.3057146	total: 1s	remaining: 1.22s
45:	learn: 12.1487674	total: 1.02s	remaining: 1.2s
46:	learn: 11.9614903	total: 1.05s	remaining: 1.19s
47:	learn: 11.7921265	total: 1.08s	remaining: 1.17s
48:	learn: 11.6572640	total: 1.1s	remaining: 1.15s
49:	learn: 11.5251463	total: 1.12s	remaining: 1.12s
50:	learn: 11.3789931	total: 1.15s	remaining: 1.1s
51:	learn: 11.2691375	total: 1.17s	remaining: 1.08s
52:	learn: 11.1161131	total: 1.19s	remaining: 1.06s
53:	learn: 11.0246399	total: 1.22s	remaining: 1.04s
54:	learn: 10.9152420	total: 1.24s	remaining: 1.02s
55:	learn: 10.7746769	total: 1.27s	remaining: 1s
56:	learn: 10.6222917	total: 1.29s	remaining: 977ms
57:	learn: 10.5096115	total: 1.32s	remaining: 953ms
58:	learn: 10.3857030	total: 1.34s	remaining: 929ms
59:	learn: 10.2789057	total: 1.36s	remaining: 906ms
60:	learn: 10.1490749	total: 1.38s	remaining: 883ms
61:	learn: 10.0553291	total: 1.4s	remaining: 859ms
62:	learn: 9.9351043	total: 1.42s	remaining: 836ms
63:	learn: 9.8245261	total: 1.45s	remaining: 817ms
64:	learn: 9.7207577	total: 1.48s	remaining: 796ms
65:	learn: 9.5920661	total: 1.5s	remaining: 774ms
66:	learn: 9.4832767	total: 1.52s	remaining: 751ms
67:	learn: 9.3724149	total: 1.55s	remaining: 729ms
68:	learn: 9.2459801	total: 1.57s	remaining: 707ms
69:	learn: 9.1740635	total: 1.6s	remaining: 685ms
70:	learn: 9.1015730	total: 1.62s	remaining: 661ms
71:	learn: 9.0196460	total: 1.64s	remaining: 638ms
72:	learn: 8.9458977	total: 1.66s	remaining: 615ms
73:	learn: 8.8434400	total: 1.69s	remaining: 593ms
74:	learn: 8.7495151	total: 1.71s	remaining: 571ms
75:	learn: 8.6521348	total: 1.73s	remaining: 548ms
76:	learn: 8.5654483	total: 1.75s	remaining: 524ms
77:	learn: 8.4965765	total: 1.78s	remaining: 501ms
78:	learn: 8.4308736	total: 1.8s	remaining: 478ms
79:	learn: 8.3675601	total: 1.82s	remaining: 455ms
80:	learn: 8.3193887	total: 1.84s	remaining: 432ms
81:	learn: 8.2507990	total: 1.86s	remaining: 409ms
82:	learn: 8.1583259	total: 1.89s	remaining: 386ms
83:	learn: 8.0995902	total: 1.92s	remaining: 366ms
84:	learn: 8.0236655	total: 1.94s	remaining: 343ms
85:	learn: 7.9634698	total: 1.97s	remaining: 320ms
86:	learn: 7.9109081	total: 1.99s	remaining: 297ms
87:	learn: 7.8385006	total: 2.01s	remaining: 274ms
88:	learn: 7.7859488	total: 2.03s	remaining: 251ms
89:	learn: 7.7270142	total: 2.05s	remaining: 228ms
90:	learn: 7.6774253	total: 2.07s	remaining: 205ms
91:	learn: 7.6126552	total: 2.09s	remaining: 182ms
92:	learn: 7.5392178	total: 2.11s	remaining: 159ms
93:	learn: 7.4745082	total: 2.14s	remaining: 137ms
94:	learn: 7.4106939	total: 2.16s	remaining: 114ms
95:	learn: 7.3573350	total: 2.19s	remaining: 91.1ms
96:	learn: 7.2889777	total: 2.21s	remaining: 68.3ms
97:	learn: 7.2204939	total: 2.23s	remaining: 45.5ms
98:	learn: 7.1646465	total: 2.25s	remaining: 22.7ms
99:	learn: 7.1204610	total: 2.27s	remaining: 0us
0:	learn: 42.5494645	total: 31.9ms	remaining: 3.16s
1:	learn: 41.2913513	total: 58.1ms	remaining: 2.85s
2:	learn: 40.1676527	total: 80.2ms	remaining: 2.59s
3:	learn: 38.7664819	total: 102ms	remaining: 2.45s
4:	learn: 37.5407492	total: 126ms	remaining: 2.39s
5:	learn: 36.4295331	total: 147ms	remaining: 2.3s
6:	learn: 35.2895967	total: 168ms	remaining: 2.23s
7:	learn: 34.1884539	total: 190ms	remaining: 2.18s
8:	learn: 33.1817690	total: 211ms	remaining: 2.14s
9:	learn: 32.3518195	total: 232ms	remaining: 2.08s
10:	learn: 31.4837515	total: 253ms	remaining: 2.05s
11:	learn: 30.7255972	total: 276ms	remaining: 2.02s
12:	learn: 29.9298648	total: 299ms	remaining: 2s
13:	learn: 29.0574249	total: 324ms	remaining: 1.99s
14:	learn: 28.4097384	total: 346ms	remaining: 1.96s
15:	learn: 27.5317445	total: 368ms	remaining: 1.93s
16:	learn: 26.7911946	total: 388ms	remaining: 1.89s
17:	learn: 26.1103465	total: 410ms	remaining: 1.86s
18:	learn: 25.5295903	total: 431ms	remaining: 1.83s
19:	learn: 24.8544960	total: 451ms	remaining: 1.8s
20:	learn: 24.2772682	total: 471ms	remaining: 1.77s
21:	learn: 23.6936944	total: 494ms	remaining: 1.75s
22:	learn: 23.1300945	total: 516ms	remaining: 1.73s
23:	learn: 22.5333494	total: 545ms	remaining: 1.72s
24:	learn: 22.0553465	total: 569ms	remaining: 1.71s
25:	learn: 21.6253628	total: 591ms	remaining: 1.68s
26:	learn: 21.1396219	total: 613ms	remaining: 1.66s
27:	learn: 20.7382905	total: 636ms	remaining: 1.64s
28:	learn: 20.3233915	total: 657ms	remaining: 1.61s
29:	learn: 19.9323992	total: 677ms	remaining: 1.58s
30:	learn: 19.5650439	total: 699ms	remaining: 1.55s
31:	learn: 19.2165649	total: 721ms	remaining: 1.53s
32:	learn: 18.8890056	total: 747ms	remaining: 1.52s
33:	learn: 18.5523762	total: 772ms	remaining: 1.5s
34:	learn: 18.2666116	total: 791ms	remaining: 1.47s
35:	learn: 17.9216926	total: 814ms	remaining: 1.45s
36:	learn: 17.6118879	total: 835ms	remaining: 1.42s
37:	learn: 17.2653313	total: 858ms	remaining: 1.4s
38:	learn: 16.9946585	total: 881ms	remaining: 1.38s
39:	learn: 16.6842506	total: 903ms	remaining: 1.35s
40:	learn: 16.4102287	total: 926ms	remaining: 1.33s
41:	learn: 16.2288795	total: 954ms	remaining: 1.32s
42:	learn: 15.9623692	total: 984ms	remaining: 1.3s
43:	learn: 15.7308231	total: 1.01s	remaining: 1.28s
44:	learn: 15.4695555	total: 1.03s	remaining: 1.26s
45:	learn: 15.2706809	total: 1.05s	remaining: 1.24s
46:	learn: 15.0182699	total: 1.08s	remaining: 1.22s
47:	learn: 14.7702088	total: 1.1s	remaining: 1.19s
48:	learn: 14.6303566	total: 1.12s	remaining: 1.17s
49:	learn: 14.4038016	total: 1.14s	remaining: 1.14s
50:	learn: 14.2309807	total: 1.17s	remaining: 1.12s
51:	learn: 14.0308425	total: 1.2s	remaining: 1.11s
52:	learn: 13.8201931	total: 1.22s	remaining: 1.08s
53:	learn: 13.6070078	total: 1.25s	remaining: 1.06s
54:	learn: 13.4230690	total: 1.27s	remaining: 1.04s
55:	learn: 13.2368649	total: 1.29s	remaining: 1.01s
56:	learn: 13.0449556	total: 1.31s	remaining: 988ms
57:	learn: 12.8375669	total: 1.33s	remaining: 964ms
58:	learn: 12.6795194	total: 1.35s	remaining: 940ms
59:	learn: 12.5197211	total: 1.38s	remaining: 917ms
60:	learn: 12.4011717	total: 1.41s	remaining: 898ms
61:	learn: 12.2396104	total: 1.43s	remaining: 877ms
62:	learn: 12.0647878	total: 1.46s	remaining: 855ms
63:	learn: 11.9247719	total: 1.48s	remaining: 832ms
64:	learn: 11.7923634	total: 1.5s	remaining: 810ms
65:	learn: 11.6628246	total: 1.53s	remaining: 787ms
66:	learn: 11.5688935	total: 1.55s	remaining: 763ms
67:	learn: 11.4345056	total: 1.57s	remaining: 739ms
68:	learn: 11.3136955	total: 1.59s	remaining: 716ms
69:	learn: 11.2040357	total: 1.62s	remaining: 696ms
70:	learn: 11.1067773	total: 1.65s	remaining: 674ms
71:	learn: 10.9728105	total: 1.67s	remaining: 650ms
72:	learn: 10.8338607	total: 1.69s	remaining: 626ms
73:	learn: 10.7202016	total: 1.71s	remaining: 602ms
74:	learn: 10.5983746	total: 1.73s	remaining: 578ms
75:	learn: 10.4882458	total: 1.75s	remaining: 554ms
76:	learn: 10.3827604	total: 1.78s	remaining: 531ms
77:	learn: 10.2485726	total: 1.8s	remaining: 508ms
78:	learn: 10.1524716	total: 1.82s	remaining: 485ms
79:	learn: 10.0765127	total: 1.86s	remaining: 464ms
80:	learn: 9.9617067	total: 1.88s	remaining: 441ms
81:	learn: 9.8357151	total: 1.91s	remaining: 418ms
82:	learn: 9.7311644	total: 1.93s	remaining: 395ms
83:	learn: 9.6314802	total: 1.95s	remaining: 372ms
84:	learn: 9.5137958	total: 1.97s	remaining: 348ms
85:	learn: 9.4420485	total: 2s	remaining: 325ms
86:	learn: 9.3959294	total: 2.02s	remaining: 302ms
87:	learn: 9.3057742	total: 2.05s	remaining: 280ms
88:	learn: 9.2031484	total: 2.08s	remaining: 257ms
89:	learn: 9.0996948	total: 2.1s	remaining: 233ms
90:	learn: 9.0492278	total: 2.12s	remaining: 210ms
91:	learn: 8.9400377	total: 2.14s	remaining: 186ms
92:	learn: 8.8904458	total: 2.16s	remaining: 163ms
93:	learn: 8.8102982	total: 2.18s	remaining: 139ms
94:	learn: 8.7445451	total: 2.21s	remaining: 116ms
95:	learn: 8.6796106	total: 2.23s	remaining: 92.9ms
96:	learn: 8.5875790	total: 2.25s	remaining: 69.6ms
97:	learn: 8.5086871	total: 2.28s	remaining: 46.5ms
98:	learn: 8.4547244	total: 2.31s	remaining: 23.3ms
99:	learn: 8.3841281	total: 2.33s	remaining: 0us
0:	learn: 46.2258117	total: 3.09ms	remaining: 306ms
1:	learn: 45.1253456	total: 23.7ms	remaining: 1.16s
2:	learn: 43.7311767	total: 45.6ms	remaining: 1.48s
3:	learn: 42.4252819	total: 67.5ms	remaining: 1.62s
4:	learn: 41.1436655	total: 88.7ms	remaining: 1.69s
5:	learn: 40.0337136	total: 119ms	remaining: 1.87s
6:	learn: 38.9102686	total: 143ms	remaining: 1.9s
7:	learn: 37.7859737	total: 164ms	remaining: 1.88s
8:	learn: 36.7646905	total: 185ms	remaining: 1.87s
9:	learn: 35.9495481	total: 207ms	remaining: 1.86s
10:	learn: 35.0558185	total: 226ms	remaining: 1.83s
11:	learn: 34.1958090	total: 246ms	remaining: 1.8s
12:	learn: 33.3514013	total: 267ms	remaining: 1.79s
13:	learn: 32.3317086	total: 289ms	remaining: 1.78s
14:	learn: 31.5611046	total: 316ms	remaining: 1.79s
15:	learn: 30.6373573	total: 343ms	remaining: 1.8s
16:	learn: 29.8883669	total: 365ms	remaining: 1.78s
17:	learn: 29.2985952	total: 388ms	remaining: 1.76s
18:	learn: 28.6360550	total: 410ms	remaining: 1.75s
19:	learn: 27.9757056	total: 430ms	remaining: 1.72s
20:	learn: 27.2585835	total: 453ms	remaining: 1.7s
21:	learn: 26.6366391	total: 474ms	remaining: 1.68s
22:	learn: 26.1055455	total: 494ms	remaining: 1.65s
23:	learn: 25.4961568	total: 516ms	remaining: 1.63s
24:	learn: 25.1037435	total: 543ms	remaining: 1.63s
25:	learn: 24.5258982	total: 565ms	remaining: 1.61s
26:	learn: 23.9974764	total: 586ms	remaining: 1.58s
27:	learn: 23.5108419	total: 606ms	remaining: 1.56s
28:	learn: 23.0835773	total: 625ms	remaining: 1.53s
29:	learn: 22.5744350	total: 646ms	remaining: 1.51s
30:	learn: 22.1357783	total: 666ms	remaining: 1.48s
31:	learn: 21.7316226	total: 688ms	remaining: 1.46s
32:	learn: 21.4082899	total: 709ms	remaining: 1.44s
33:	learn: 20.9640138	total: 732ms	remaining: 1.42s
34:	learn: 20.6379417	total: 752ms	remaining: 1.4s
35:	learn: 20.2688010	total: 782ms	remaining: 1.39s
36:	learn: 19.8479214	total: 805ms	remaining: 1.37s
37:	learn: 19.5684638	total: 827ms	remaining: 1.35s
38:	learn: 19.1826919	total: 850ms	remaining: 1.33s
39:	learn: 18.9583308	total: 873ms	remaining: 1.31s
40:	learn: 18.6736002	total: 895ms	remaining: 1.29s
41:	learn: 18.3525328	total: 914ms	remaining: 1.26s
42:	learn: 17.9954191	total: 936ms	remaining: 1.24s
43:	learn: 17.6991520	total: 958ms	remaining: 1.22s
44:	learn: 17.3697888	total: 988ms	remaining: 1.21s
45:	learn: 17.0519636	total: 1.01s	remaining: 1.19s
46:	learn: 16.7829795	total: 1.03s	remaining: 1.16s
47:	learn: 16.5108695	total: 1.05s	remaining: 1.14s
48:	learn: 16.2366816	total: 1.07s	remaining: 1.11s
49:	learn: 15.9947350	total: 1.09s	remaining: 1.09s
50:	learn: 15.7513561	total: 1.11s	remaining: 1.07s
51:	learn: 15.4328481	total: 1.14s	remaining: 1.05s
52:	learn: 15.2497907	total: 1.16s	remaining: 1.03s
53:	learn: 15.0417076	total: 1.18s	remaining: 1s
54:	learn: 14.8861891	total: 1.21s	remaining: 992ms
55:	learn: 14.6497794	total: 1.24s	remaining: 972ms
56:	learn: 14.3664771	total: 1.26s	remaining: 950ms
57:	learn: 14.2358168	total: 1.28s	remaining: 928ms
58:	learn: 14.0712722	total: 1.3s	remaining: 907ms
59:	learn: 13.9191649	total: 1.32s	remaining: 884ms
60:	learn: 13.7032356	total: 1.34s	remaining: 860ms
61:	learn: 13.5029041	total: 1.37s	remaining: 838ms
62:	learn: 13.3568908	total: 1.39s	remaining: 817ms
63:	learn: 13.1332696	total: 1.42s	remaining: 798ms
64:	learn: 13.0323137	total: 1.44s	remaining: 777ms
65:	learn: 12.8622078	total: 1.47s	remaining: 755ms
66:	learn: 12.7088186	total: 1.49s	remaining: 732ms
67:	learn: 12.5524646	total: 1.51s	remaining: 710ms
68:	learn: 12.4646011	total: 1.53s	remaining: 688ms
69:	learn: 12.3900687	total: 1.55s	remaining: 665ms
70:	learn: 12.2908367	total: 1.57s	remaining: 644ms
71:	learn: 12.1294405	total: 1.6s	remaining: 621ms
72:	learn: 12.0359996	total: 1.63s	remaining: 603ms
73:	learn: 11.9244352	total: 1.66s	remaining: 582ms
74:	learn: 11.8312038	total: 1.68s	remaining: 560ms
75:	learn: 11.6622123	total: 1.7s	remaining: 538ms
76:	learn: 11.5959180	total: 1.73s	remaining: 516ms
77:	learn: 11.4538852	total: 1.75s	remaining: 493ms
78:	learn: 11.3700375	total: 1.77s	remaining: 471ms
79:	learn: 11.2101447	total: 1.79s	remaining: 449ms
80:	learn: 11.0614634	total: 1.82s	remaining: 426ms
81:	learn: 10.9029225	total: 1.84s	remaining: 404ms
82:	learn: 10.7792030	total: 1.87s	remaining: 383ms
83:	learn: 10.6279451	total: 1.89s	remaining: 360ms
84:	learn: 10.5530267	total: 1.92s	remaining: 338ms
85:	learn: 10.4577150	total: 1.94s	remaining: 315ms
86:	learn: 10.4076417	total: 1.96s	remaining: 293ms
87:	learn: 10.3166632	total: 1.98s	remaining: 270ms
88:	learn: 10.2018151	total: 2s	remaining: 248ms
89:	learn: 10.0698484	total: 2.02s	remaining: 225ms
90:	learn: 10.0162824	total: 2.05s	remaining: 203ms
91:	learn: 9.9352639	total: 2.08s	remaining: 181ms
92:	learn: 9.8316734	total: 2.1s	remaining: 158ms
93:	learn: 9.7195471	total: 2.13s	remaining: 136ms
94:	learn: 9.5914894	total: 2.15s	remaining: 113ms
95:	learn: 9.5151851	total: 2.17s	remaining: 90.6ms
96:	learn: 9.3911314	total: 2.2s	remaining: 67.9ms
97:	learn: 9.3417706	total: 2.22s	remaining: 45.3ms
98:	learn: 9.2708440	total: 2.24s	remaining: 22.6ms
99:	learn: 9.1660321	total: 2.26s	remaining: 0us
0:	learn: 45.8627255	total: 3.04ms	remaining: 301ms
1:	learn: 44.7432040	total: 24.8ms	remaining: 1.21s
2:	learn: 43.4398568	total: 45.1ms	remaining: 1.46s
3:	learn: 42.1495515	total: 66ms	remaining: 1.58s
4:	learn: 40.9712633	total: 88.6ms	remaining: 1.68s
5:	learn: 40.0119591	total: 111ms	remaining: 1.75s
6:	learn: 39.1914360	total: 134ms	remaining: 1.78s
7:	learn: 38.1861536	total: 159ms	remaining: 1.83s
8:	learn: 37.1477128	total: 186ms	remaining: 1.88s
9:	learn: 36.3044702	total: 211ms	remaining: 1.9s
10:	learn: 35.5837917	total: 235ms	remaining: 1.9s
11:	learn: 34.8664158	total: 259ms	remaining: 1.9s
12:	learn: 33.9129833	total: 282ms	remaining: 1.89s
13:	learn: 32.9094642	total: 306ms	remaining: 1.88s
14:	learn: 32.1965787	total: 328ms	remaining: 1.86s
15:	learn: 31.4598238	total: 350ms	remaining: 1.83s
16:	learn: 30.6578027	total: 372ms	remaining: 1.81s
17:	learn: 30.0227468	total: 393ms	remaining: 1.79s
18:	learn: 29.2954728	total: 423ms	remaining: 1.8s
19:	learn: 28.5928084	total: 445ms	remaining: 1.78s
20:	learn: 27.9445984	total: 466ms	remaining: 1.75s
21:	learn: 27.3493298	total: 487ms	remaining: 1.73s
22:	learn: 26.8491966	total: 507ms	remaining: 1.7s
23:	learn: 26.3177453	total: 526ms	remaining: 1.67s
24:	learn: 25.8134533	total: 546ms	remaining: 1.64s
25:	learn: 25.2000018	total: 567ms	remaining: 1.61s
26:	learn: 24.6570461	total: 589ms	remaining: 1.59s
27:	learn: 24.1062982	total: 616ms	remaining: 1.58s
28:	learn: 23.7489370	total: 643ms	remaining: 1.57s
29:	learn: 23.2050536	total: 665ms	remaining: 1.55s
30:	learn: 22.7824379	total: 687ms	remaining: 1.53s
31:	learn: 22.4052655	total: 710ms	remaining: 1.51s
32:	learn: 21.9525639	total: 729ms	remaining: 1.48s
33:	learn: 21.5482900	total: 749ms	remaining: 1.45s
34:	learn: 21.1900983	total: 769ms	remaining: 1.43s
35:	learn: 20.8243957	total: 789ms	remaining: 1.4s
36:	learn: 20.4401288	total: 810ms	remaining: 1.38s
37:	learn: 20.0960622	total: 838ms	remaining: 1.37s
38:	learn: 19.7795108	total: 862ms	remaining: 1.35s
39:	learn: 19.4922451	total: 883ms	remaining: 1.32s
40:	learn: 19.1827582	total: 903ms	remaining: 1.3s
41:	learn: 18.8902445	total: 924ms	remaining: 1.28s
42:	learn: 18.6833086	total: 943ms	remaining: 1.25s
43:	learn: 18.4251972	total: 966ms	remaining: 1.23s
44:	learn: 18.1471037	total: 988ms	remaining: 1.21s
45:	learn: 17.8420017	total: 1.01s	remaining: 1.18s
46:	learn: 17.6101998	total: 1.03s	remaining: 1.16s
47:	learn: 17.3353656	total: 1.06s	remaining: 1.15s
48:	learn: 17.1194789	total: 1.08s	remaining: 1.13s
49:	learn: 16.8898454	total: 1.11s	remaining: 1.11s
50:	learn: 16.6657497	total: 1.13s	remaining: 1.09s
51:	learn: 16.3832867	total: 1.15s	remaining: 1.06s
52:	learn: 16.2098226	total: 1.17s	remaining: 1.04s
53:	learn: 16.0045707	total: 1.2s	remaining: 1.02s
54:	learn: 15.8512887	total: 1.22s	remaining: 995ms
55:	learn: 15.6485628	total: 1.24s	remaining: 973ms
56:	learn: 15.4841428	total: 1.26s	remaining: 951ms
57:	learn: 15.3383158	total: 1.29s	remaining: 933ms
58:	learn: 15.2056282	total: 1.31s	remaining: 912ms
59:	learn: 15.0698337	total: 1.33s	remaining: 889ms
60:	learn: 14.8487796	total: 1.35s	remaining: 865ms
61:	learn: 14.7255751	total: 1.37s	remaining: 841ms
62:	learn: 14.6100414	total: 1.39s	remaining: 818ms
63:	learn: 14.3864212	total: 1.41s	remaining: 795ms
64:	learn: 14.2800460	total: 1.43s	remaining: 772ms
65:	learn: 14.1017299	total: 1.45s	remaining: 749ms
66:	learn: 13.9655015	total: 1.48s	remaining: 727ms
67:	learn: 13.8065764	total: 1.51s	remaining: 711ms
68:	learn: 13.7473285	total: 1.53s	remaining: 689ms
69:	learn: 13.6967309	total: 1.56s	remaining: 667ms
70:	learn: 13.6253255	total: 1.58s	remaining: 645ms
71:	learn: 13.4974926	total: 1.6s	remaining: 622ms
72:	learn: 13.4142694	total: 1.62s	remaining: 600ms
73:	learn: 13.2902600	total: 1.64s	remaining: 577ms
74:	learn: 13.1816461	total: 1.66s	remaining: 555ms
75:	learn: 13.0809498	total: 1.69s	remaining: 532ms
76:	learn: 12.9772285	total: 1.71s	remaining: 511ms
77:	learn: 12.8413858	total: 1.74s	remaining: 490ms
78:	learn: 12.7615799	total: 1.76s	remaining: 467ms
79:	learn: 12.5808659	total: 1.78s	remaining: 445ms
80:	learn: 12.4938330	total: 1.8s	remaining: 422ms
81:	learn: 12.3745576	total: 1.82s	remaining: 400ms
82:	learn: 12.2474104	total: 1.84s	remaining: 377ms
83:	learn: 12.1582297	total: 1.87s	remaining: 355ms
84:	learn: 12.0528081	total: 1.89s	remaining: 333ms
85:	learn: 11.9483355	total: 1.91s	remaining: 311ms
86:	learn: 11.8683204	total: 1.94s	remaining: 289ms
87:	learn: 11.7680945	total: 1.97s	remaining: 268ms
88:	learn: 11.6635447	total: 1.99s	remaining: 246ms
89:	learn: 11.5775031	total: 2.01s	remaining: 224ms
90:	learn: 11.4860538	total: 2.03s	remaining: 201ms
91:	learn: 11.3584960	total: 2.06s	remaining: 179ms
92:	learn: 11.2180285	total: 2.08s	remaining: 156ms
93:	learn: 11.0996558	total: 2.1s	remaining: 134ms
94:	learn: 10.9688832	total: 2.13s	remaining: 112ms
95:	learn: 10.9205457	total: 2.15s	remaining: 89.7ms
96:	learn: 10.8462783	total: 2.18s	remaining: 67.3ms
97:	learn: 10.7481890	total: 2.2s	remaining: 44.9ms
98:	learn: 10.6396315	total: 2.22s	remaining: 22.4ms
99:	learn: 10.5895308	total: 2.24s	remaining: 0us
0:	learn: 46.2892189	total: 24.6ms	remaining: 2.43s
1:	learn: 44.9732744	total: 52.7ms	remaining: 2.58s
2:	learn: 43.8887345	total: 80.5ms	remaining: 2.6s
3:	learn: 42.6526320	total: 104ms	remaining: 2.49s
4:	learn: 41.4812505	total: 128ms	remaining: 2.44s
5:	learn: 40.4431224	total: 152ms	remaining: 2.38s
6:	learn: 39.2936749	total: 174ms	remaining: 2.31s
7:	learn: 38.1961652	total: 196ms	remaining: 2.25s
8:	learn: 37.2194841	total: 216ms	remaining: 2.18s
9:	learn: 36.2518666	total: 237ms	remaining: 2.13s
10:	learn: 35.4919224	total: 260ms	remaining: 2.1s
11:	learn: 34.6975877	total: 283ms	remaining: 2.07s
12:	learn: 33.7869362	total: 314ms	remaining: 2.1s
13:	learn: 33.0646033	total: 337ms	remaining: 2.07s
14:	learn: 32.1821772	total: 357ms	remaining: 2.02s
15:	learn: 31.4340749	total: 377ms	remaining: 1.98s
16:	learn: 30.6504198	total: 398ms	remaining: 1.94s
17:	learn: 30.0090260	total: 420ms	remaining: 1.92s
18:	learn: 29.4233143	total: 442ms	remaining: 1.88s
19:	learn: 28.7661957	total: 465ms	remaining: 1.86s
20:	learn: 28.1570594	total: 487ms	remaining: 1.83s
21:	learn: 27.6140124	total: 519ms	remaining: 1.84s
22:	learn: 27.0130709	total: 544ms	remaining: 1.82s
23:	learn: 26.2648081	total: 567ms	remaining: 1.8s
24:	learn: 25.7963649	total: 590ms	remaining: 1.77s
25:	learn: 25.2713860	total: 614ms	remaining: 1.75s
26:	learn: 24.8080692	total: 635ms	remaining: 1.72s
27:	learn: 24.3042862	total: 656ms	remaining: 1.69s
28:	learn: 23.9097237	total: 679ms	remaining: 1.66s
29:	learn: 23.4953174	total: 702ms	remaining: 1.64s
30:	learn: 23.0484452	total: 728ms	remaining: 1.62s
31:	learn: 22.7100962	total: 751ms	remaining: 1.6s
32:	learn: 22.1662267	total: 772ms	remaining: 1.57s
33:	learn: 21.7339884	total: 795ms	remaining: 1.54s
34:	learn: 21.3699422	total: 817ms	remaining: 1.52s
35:	learn: 21.0249329	total: 838ms	remaining: 1.49s
36:	learn: 20.6187923	total: 860ms	remaining: 1.46s
37:	learn: 20.2401981	total: 881ms	remaining: 1.44s
38:	learn: 19.9712328	total: 902ms	remaining: 1.41s
39:	learn: 19.6429610	total: 928ms	remaining: 1.39s
40:	learn: 19.3281556	total: 956ms	remaining: 1.38s
41:	learn: 19.0925924	total: 979ms	remaining: 1.35s
42:	learn: 18.8118712	total: 1s	remaining: 1.33s
43:	learn: 18.5355748	total: 1.02s	remaining: 1.3s
44:	learn: 18.2783929	total: 1.04s	remaining: 1.28s
45:	learn: 17.9915490	total: 1.06s	remaining: 1.25s
46:	learn: 17.7323317	total: 1.08s	remaining: 1.22s
47:	learn: 17.4448307	total: 1.1s	remaining: 1.2s
48:	learn: 17.2419782	total: 1.13s	remaining: 1.17s
49:	learn: 16.9351352	total: 1.15s	remaining: 1.15s
50:	learn: 16.7728723	total: 1.18s	remaining: 1.13s
51:	learn: 16.5718087	total: 1.2s	remaining: 1.11s
52:	learn: 16.4047483	total: 1.22s	remaining: 1.08s
53:	learn: 16.2888950	total: 1.24s	remaining: 1.05s
54:	learn: 16.1353042	total: 1.26s	remaining: 1.03s
55:	learn: 15.9384012	total: 1.28s	remaining: 1.01s
56:	learn: 15.7488511	total: 1.3s	remaining: 984ms
57:	learn: 15.5682846	total: 1.33s	remaining: 960ms
58:	learn: 15.3488716	total: 1.36s	remaining: 943ms
59:	learn: 15.2291272	total: 1.38s	remaining: 920ms
60:	learn: 15.0582519	total: 1.4s	remaining: 897ms
61:	learn: 14.8478458	total: 1.43s	remaining: 873ms
62:	learn: 14.6663416	total: 1.45s	remaining: 850ms
63:	learn: 14.4830825	total: 1.47s	remaining: 826ms
64:	learn: 14.3300895	total: 1.49s	remaining: 801ms
65:	learn: 14.1168590	total: 1.51s	remaining: 777ms
66:	learn: 13.9783298	total: 1.53s	remaining: 753ms
67:	learn: 13.8132857	total: 1.55s	remaining: 729ms
68:	learn: 13.7050863	total: 1.58s	remaining: 710ms
69:	learn: 13.5742501	total: 1.6s	remaining: 687ms
70:	learn: 13.4851362	total: 1.63s	remaining: 664ms
71:	learn: 13.3300610	total: 1.65s	remaining: 640ms
72:	learn: 13.2223060	total: 1.67s	remaining: 617ms
73:	learn: 13.0706731	total: 1.69s	remaining: 592ms
74:	learn: 12.9178099	total: 1.71s	remaining: 569ms
75:	learn: 12.7954645	total: 1.73s	remaining: 545ms
76:	learn: 12.7133688	total: 1.75s	remaining: 523ms
77:	learn: 12.5745537	total: 1.78s	remaining: 502ms
78:	learn: 12.4765302	total: 1.8s	remaining: 480ms
79:	learn: 12.3609145	total: 1.83s	remaining: 457ms
80:	learn: 12.2437759	total: 1.85s	remaining: 434ms
81:	learn: 12.1583763	total: 1.87s	remaining: 411ms
82:	learn: 12.0202500	total: 1.89s	remaining: 388ms
83:	learn: 11.9125166	total: 1.91s	remaining: 364ms
84:	learn: 11.8100729	total: 1.93s	remaining: 341ms
85:	learn: 11.7509521	total: 1.95s	remaining: 318ms
86:	learn: 11.6448436	total: 1.97s	remaining: 295ms
87:	learn: 11.5550170	total: 2s	remaining: 272ms
88:	learn: 11.4624708	total: 2.02s	remaining: 250ms
89:	learn: 11.3547761	total: 2.04s	remaining: 227ms
90:	learn: 11.2513910	total: 2.06s	remaining: 204ms
91:	learn: 11.1414483	total: 2.08s	remaining: 181ms
92:	learn: 11.0742264	total: 2.1s	remaining: 158ms
93:	learn: 10.9721772	total: 2.13s	remaining: 136ms
94:	learn: 10.9118054	total: 2.15s	remaining: 113ms
95:	learn: 10.8465290	total: 2.17s	remaining: 90.4ms
96:	learn: 10.7451745	total: 2.19s	remaining: 67.8ms
97:	learn: 10.6173565	total: 2.22s	remaining: 45.2ms
98:	learn: 10.5562158	total: 2.25s	remaining: 22.7ms
99:	learn: 10.4564960	total: 2.27s	remaining: 0us
0:	learn: 27.6871645	total: 5.85ms	remaining: 579ms
1:	learn: 27.3312003	total: 11.4ms	remaining: 561ms
2:	learn: 26.9359558	total: 16.9ms	remaining: 547ms
3:	learn: 26.6055364	total: 22.3ms	remaining: 534ms
4:	learn: 26.1664924	total: 27.9ms	remaining: 529ms
5:	learn: 25.8515393	total: 32.9ms	remaining: 516ms
6:	learn: 25.4620036	total: 38.2ms	remaining: 507ms
7:	learn: 25.1669741	total: 43.5ms	remaining: 500ms
8:	learn: 24.8455454	total: 49.1ms	remaining: 496ms
9:	learn: 24.5106323	total: 54.7ms	remaining: 492ms
10:	learn: 24.1915228	total: 59.4ms	remaining: 480ms
11:	learn: 23.9076053	total: 64.6ms	remaining: 474ms
12:	learn: 23.6692445	total: 69.7ms	remaining: 466ms
13:	learn: 23.4343504	total: 75.3ms	remaining: 462ms
14:	learn: 23.2425280	total: 80.9ms	remaining: 459ms
15:	learn: 22.9254142	total: 86.1ms	remaining: 452ms
16:	learn: 22.6495489	total: 91.5ms	remaining: 447ms
17:	learn: 22.4343705	total: 97ms	remaining: 442ms
18:	learn: 22.2154202	total: 102ms	remaining: 436ms
19:	learn: 22.0592712	total: 113ms	remaining: 452ms
20:	learn: 21.7971944	total: 121ms	remaining: 455ms
21:	learn: 21.6128930	total: 127ms	remaining: 452ms
22:	learn: 21.3882946	total: 134ms	remaining: 449ms
23:	learn: 21.0912570	total: 139ms	remaining: 441ms
24:	learn: 20.8922857	total: 145ms	remaining: 434ms
25:	learn: 20.7150574	total: 150ms	remaining: 426ms
26:	learn: 20.5673183	total: 155ms	remaining: 419ms
27:	learn: 20.4331275	total: 160ms	remaining: 411ms
28:	learn: 20.2782866	total: 165ms	remaining: 404ms
29:	learn: 20.1061525	total: 170ms	remaining: 397ms
30:	learn: 19.9225948	total: 175ms	remaining: 390ms
31:	learn: 19.7809193	total: 180ms	remaining: 383ms
32:	learn: 19.6057771	total: 186ms	remaining: 377ms
33:	learn: 19.4391243	total: 191ms	remaining: 371ms
34:	learn: 19.2234365	total: 196ms	remaining: 364ms
35:	learn: 19.0214424	total: 202ms	remaining: 358ms
36:	learn: 18.8990643	total: 207ms	remaining: 352ms
37:	learn: 18.7473635	total: 212ms	remaining: 346ms
38:	learn: 18.6125192	total: 217ms	remaining: 339ms
39:	learn: 18.4977949	total: 222ms	remaining: 333ms
40:	learn: 18.3914568	total: 227ms	remaining: 327ms
41:	learn: 18.2541544	total: 232ms	remaining: 320ms
42:	learn: 18.1038984	total: 237ms	remaining: 314ms
43:	learn: 17.9706172	total: 242ms	remaining: 308ms
44:	learn: 17.8198810	total: 247ms	remaining: 302ms
45:	learn: 17.7102597	total: 252ms	remaining: 296ms
46:	learn: 17.6148228	total: 257ms	remaining: 290ms
47:	learn: 17.5115365	total: 263ms	remaining: 284ms
48:	learn: 17.3884162	total: 268ms	remaining: 279ms
49:	learn: 17.2857632	total: 273ms	remaining: 273ms
50:	learn: 17.1618843	total: 279ms	remaining: 268ms
51:	learn: 17.0529601	total: 284ms	remaining: 262ms
52:	learn: 16.9330273	total: 289ms	remaining: 257ms
53:	learn: 16.8206672	total: 295ms	remaining: 251ms
54:	learn: 16.7080356	total: 304ms	remaining: 249ms
55:	learn: 16.5874354	total: 313ms	remaining: 246ms
56:	learn: 16.4929860	total: 323ms	remaining: 244ms
57:	learn: 16.4269419	total: 332ms	remaining: 240ms
58:	learn: 16.3474026	total: 338ms	remaining: 235ms
59:	learn: 16.2515784	total: 343ms	remaining: 229ms
60:	learn: 16.1743901	total: 349ms	remaining: 223ms
61:	learn: 16.0389930	total: 355ms	remaining: 218ms
62:	learn: 15.9671636	total: 361ms	remaining: 212ms
63:	learn: 15.8928486	total: 367ms	remaining: 207ms
64:	learn: 15.8303841	total: 373ms	remaining: 201ms
65:	learn: 15.7612266	total: 378ms	remaining: 195ms
66:	learn: 15.6811172	total: 384ms	remaining: 189ms
67:	learn: 15.6262138	total: 390ms	remaining: 183ms
68:	learn: 15.5662508	total: 395ms	remaining: 178ms
69:	learn: 15.4804354	total: 402ms	remaining: 172ms
70:	learn: 15.4054915	total: 408ms	remaining: 167ms
71:	learn: 15.3271396	total: 413ms	remaining: 160ms
72:	learn: 15.2828359	total: 418ms	remaining: 155ms
73:	learn: 15.2197404	total: 424ms	remaining: 149ms
74:	learn: 15.1315902	total: 429ms	remaining: 143ms
75:	learn: 15.0780523	total: 435ms	remaining: 137ms
76:	learn: 14.9959155	total: 440ms	remaining: 131ms
77:	learn: 14.9265008	total: 445ms	remaining: 126ms
78:	learn: 14.8570189	total: 451ms	remaining: 120ms
79:	learn: 14.8060372	total: 456ms	remaining: 114ms
80:	learn: 14.7294676	total: 461ms	remaining: 108ms
81:	learn: 14.6708309	total: 467ms	remaining: 103ms
82:	learn: 14.5765370	total: 473ms	remaining: 96.9ms
83:	learn: 14.5312713	total: 479ms	remaining: 91.2ms
84:	learn: 14.4830327	total: 484ms	remaining: 85.4ms
85:	learn: 14.4296247	total: 489ms	remaining: 79.6ms
86:	learn: 14.3381470	total: 496ms	remaining: 74.1ms
87:	learn: 14.2638093	total: 505ms	remaining: 68.8ms
88:	learn: 14.2288435	total: 512ms	remaining: 63.3ms
89:	learn: 14.1489273	total: 519ms	remaining: 57.6ms
90:	learn: 14.0937923	total: 525ms	remaining: 51.9ms
91:	learn: 14.0334062	total: 531ms	remaining: 46.2ms
92:	learn: 13.9854696	total: 536ms	remaining: 40.4ms
93:	learn: 13.9444203	total: 542ms	remaining: 34.6ms
94:	learn: 13.9101523	total: 547ms	remaining: 28.8ms
95:	learn: 13.8460655	total: 552ms	remaining: 23ms
96:	learn: 13.7809420	total: 557ms	remaining: 17.2ms
97:	learn: 13.7270532	total: 562ms	remaining: 11.5ms
98:	learn: 13.6891300	total: 567ms	remaining: 5.72ms
99:	learn: 13.6569696	total: 571ms	remaining: 0us
0:	learn: 42.9754370	total: 5.3ms	remaining: 525ms
1:	learn: 42.2613272	total: 10.4ms	remaining: 510ms
2:	learn: 41.4729969	total: 15.4ms	remaining: 498ms
3:	learn: 40.7127004	total: 20.1ms	remaining: 483ms
4:	learn: 39.7775109	total: 25ms	remaining: 476ms
5:	learn: 39.1736663	total: 30.2ms	remaining: 472ms
6:	learn: 38.2981109	total: 35.3ms	remaining: 469ms
7:	learn: 37.5352984	total: 40.2ms	remaining: 463ms
8:	learn: 36.7771474	total: 45.1ms	remaining: 456ms
9:	learn: 36.0581366	total: 49.9ms	remaining: 449ms
10:	learn: 35.3542706	total: 54.6ms	remaining: 442ms
11:	learn: 34.6937007	total: 59.9ms	remaining: 440ms
12:	learn: 34.0408035	total: 65.4ms	remaining: 438ms
13:	learn: 33.3460240	total: 70.7ms	remaining: 434ms
14:	learn: 32.8086243	total: 76.1ms	remaining: 431ms
15:	learn: 32.1934462	total: 81.4ms	remaining: 427ms
16:	learn: 31.6465519	total: 86.8ms	remaining: 424ms
17:	learn: 31.2161293	total: 95.4ms	remaining: 435ms
18:	learn: 30.6730548	total: 105ms	remaining: 447ms
19:	learn: 30.3153659	total: 118ms	remaining: 470ms
20:	learn: 29.7661420	total: 127ms	remaining: 477ms
21:	learn: 29.2095664	total: 133ms	remaining: 471ms
22:	learn: 28.7509592	total: 139ms	remaining: 464ms
23:	learn: 28.4347528	total: 145ms	remaining: 460ms
24:	learn: 28.0551654	total: 152ms	remaining: 455ms
25:	learn: 27.7295952	total: 158ms	remaining: 449ms
26:	learn: 27.2329225	total: 164ms	remaining: 444ms
27:	learn: 26.9970607	total: 170ms	remaining: 438ms
28:	learn: 26.6596544	total: 176ms	remaining: 431ms
29:	learn: 26.2633576	total: 181ms	remaining: 423ms
30:	learn: 25.9761623	total: 188ms	remaining: 418ms
31:	learn: 25.6177371	total: 194ms	remaining: 412ms
32:	learn: 25.2165933	total: 200ms	remaining: 405ms
33:	learn: 24.8012870	total: 205ms	remaining: 398ms
34:	learn: 24.4772532	total: 210ms	remaining: 390ms
35:	learn: 24.1560359	total: 215ms	remaining: 382ms
36:	learn: 23.9688812	total: 220ms	remaining: 374ms
37:	learn: 23.6907607	total: 225ms	remaining: 366ms
38:	learn: 23.3885772	total: 230ms	remaining: 359ms
39:	learn: 23.2234939	total: 235ms	remaining: 352ms
40:	learn: 22.9785026	total: 239ms	remaining: 345ms
41:	learn: 22.6827268	total: 245ms	remaining: 338ms
42:	learn: 22.4564360	total: 250ms	remaining: 332ms
43:	learn: 22.2517827	total: 255ms	remaining: 325ms
44:	learn: 21.9858709	total: 260ms	remaining: 318ms
45:	learn: 21.7595870	total: 266ms	remaining: 312ms
46:	learn: 21.5929957	total: 271ms	remaining: 306ms
47:	learn: 21.4071752	total: 276ms	remaining: 299ms
48:	learn: 21.2186470	total: 281ms	remaining: 293ms
49:	learn: 21.0691824	total: 287ms	remaining: 287ms
50:	learn: 20.8921347	total: 310ms	remaining: 297ms
51:	learn: 20.6834229	total: 315ms	remaining: 291ms
52:	learn: 20.4718988	total: 322ms	remaining: 286ms
53:	learn: 20.3413889	total: 327ms	remaining: 279ms
54:	learn: 20.1785464	total: 333ms	remaining: 272ms
55:	learn: 19.9824314	total: 338ms	remaining: 266ms
56:	learn: 19.8217596	total: 343ms	remaining: 259ms
57:	learn: 19.6318474	total: 349ms	remaining: 252ms
58:	learn: 19.4962236	total: 354ms	remaining: 246ms
59:	learn: 19.3114985	total: 359ms	remaining: 239ms
60:	learn: 19.2181156	total: 364ms	remaining: 233ms
61:	learn: 19.0689614	total: 369ms	remaining: 226ms
62:	learn: 18.9563267	total: 374ms	remaining: 220ms
63:	learn: 18.8343083	total: 379ms	remaining: 213ms
64:	learn: 18.7050033	total: 384ms	remaining: 207ms
65:	learn: 18.6014163	total: 389ms	remaining: 200ms
66:	learn: 18.4910692	total: 394ms	remaining: 194ms
67:	learn: 18.3935194	total: 400ms	remaining: 188ms
68:	learn: 18.2825842	total: 405ms	remaining: 182ms
69:	learn: 18.1519267	total: 410ms	remaining: 176ms
70:	learn: 18.0527651	total: 416ms	remaining: 170ms
71:	learn: 17.9770106	total: 421ms	remaining: 164ms
72:	learn: 17.9151628	total: 427ms	remaining: 158ms
73:	learn: 17.7957486	total: 433ms	remaining: 152ms
74:	learn: 17.7025765	total: 438ms	remaining: 146ms
75:	learn: 17.5957242	total: 443ms	remaining: 140ms
76:	learn: 17.4683244	total: 448ms	remaining: 134ms
77:	learn: 17.3415729	total: 453ms	remaining: 128ms
78:	learn: 17.2886896	total: 458ms	remaining: 122ms
79:	learn: 17.2280922	total: 464ms	remaining: 116ms
80:	learn: 17.1188996	total: 469ms	remaining: 110ms
81:	learn: 17.0236450	total: 474ms	remaining: 104ms
82:	learn: 16.9046661	total: 480ms	remaining: 98.3ms
83:	learn: 16.7930633	total: 485ms	remaining: 92.3ms
84:	learn: 16.6870100	total: 492ms	remaining: 86.8ms
85:	learn: 16.5512107	total: 501ms	remaining: 81.5ms
86:	learn: 16.4353400	total: 513ms	remaining: 76.7ms
87:	learn: 16.3256461	total: 525ms	remaining: 71.6ms
88:	learn: 16.2968057	total: 533ms	remaining: 65.9ms
89:	learn: 16.2136078	total: 542ms	remaining: 60.3ms
90:	learn: 16.1596096	total: 551ms	remaining: 54.5ms
91:	learn: 16.1164050	total: 559ms	remaining: 48.6ms
92:	learn: 16.0660454	total: 566ms	remaining: 42.6ms
93:	learn: 16.0380611	total: 572ms	remaining: 36.5ms
94:	learn: 15.9494441	total: 580ms	remaining: 30.5ms
95:	learn: 15.8874840	total: 586ms	remaining: 24.4ms
96:	learn: 15.8288234	total: 592ms	remaining: 18.3ms
97:	learn: 15.7562787	total: 597ms	remaining: 12.2ms
98:	learn: 15.6822678	total: 602ms	remaining: 6.08ms
99:	learn: 15.5901500	total: 607ms	remaining: 0us
0:	learn: 46.4504871	total: 5.59ms	remaining: 553ms
1:	learn: 45.7240114	total: 10.8ms	remaining: 530ms
2:	learn: 45.0308025	total: 15.6ms	remaining: 503ms
3:	learn: 44.1111169	total: 20.8ms	remaining: 500ms
4:	learn: 43.3925352	total: 26.8ms	remaining: 510ms
5:	learn: 42.7856354	total: 35.7ms	remaining: 559ms
6:	learn: 42.1998170	total: 43.2ms	remaining: 574ms
7:	learn: 41.3532708	total: 50.6ms	remaining: 581ms
8:	learn: 40.7314571	total: 55.9ms	remaining: 565ms
9:	learn: 39.9838066	total: 62ms	remaining: 558ms
10:	learn: 39.4168243	total: 69.7ms	remaining: 564ms
11:	learn: 39.0148769	total: 74.3ms	remaining: 545ms
12:	learn: 38.3055855	total: 78.9ms	remaining: 528ms
13:	learn: 37.7343198	total: 83.9ms	remaining: 515ms
14:	learn: 37.4177463	total: 88.7ms	remaining: 502ms
15:	learn: 36.9043298	total: 93.5ms	remaining: 491ms
16:	learn: 36.3139174	total: 98.3ms	remaining: 480ms
17:	learn: 35.7200448	total: 103ms	remaining: 470ms
18:	learn: 35.3763394	total: 108ms	remaining: 459ms
19:	learn: 34.7666728	total: 112ms	remaining: 450ms
20:	learn: 34.2642890	total: 117ms	remaining: 441ms
21:	learn: 33.8196936	total: 122ms	remaining: 432ms
22:	learn: 33.4205669	total: 127ms	remaining: 424ms
23:	learn: 32.8565493	total: 131ms	remaining: 416ms
24:	learn: 32.5287132	total: 136ms	remaining: 409ms
25:	learn: 32.2142064	total: 141ms	remaining: 402ms
26:	learn: 31.9258854	total: 146ms	remaining: 395ms
27:	learn: 31.4083665	total: 151ms	remaining: 390ms
28:	learn: 31.1615620	total: 157ms	remaining: 385ms
29:	learn: 30.6948867	total: 162ms	remaining: 378ms
30:	learn: 30.3185108	total: 167ms	remaining: 373ms
31:	learn: 29.9245223	total: 173ms	remaining: 367ms
32:	learn: 29.6683643	total: 178ms	remaining: 361ms
33:	learn: 29.3868143	total: 182ms	remaining: 354ms
34:	learn: 29.1105699	total: 202ms	remaining: 375ms
35:	learn: 28.8274848	total: 207ms	remaining: 368ms
36:	learn: 28.5478288	total: 212ms	remaining: 360ms
37:	learn: 28.2355121	total: 217ms	remaining: 354ms
38:	learn: 28.0182564	total: 222ms	remaining: 347ms
39:	learn: 27.7654405	total: 226ms	remaining: 340ms
40:	learn: 27.5720477	total: 231ms	remaining: 333ms
41:	learn: 27.3182782	total: 236ms	remaining: 326ms
42:	learn: 26.9504431	total: 242ms	remaining: 320ms
43:	learn: 26.7281906	total: 247ms	remaining: 314ms
44:	learn: 26.5390008	total: 252ms	remaining: 308ms
45:	learn: 26.3781338	total: 257ms	remaining: 302ms
46:	learn: 26.1763177	total: 265ms	remaining: 299ms
47:	learn: 25.9417647	total: 273ms	remaining: 296ms
48:	learn: 25.7528045	total: 296ms	remaining: 308ms
49:	learn: 25.6336897	total: 302ms	remaining: 302ms
50:	learn: 25.4800426	total: 307ms	remaining: 295ms
51:	learn: 25.2895681	total: 313ms	remaining: 289ms
52:	learn: 25.0827111	total: 319ms	remaining: 283ms
53:	learn: 24.7987678	total: 326ms	remaining: 278ms
54:	learn: 24.6309982	total: 332ms	remaining: 271ms
55:	learn: 24.3526776	total: 338ms	remaining: 265ms
56:	learn: 24.1689125	total: 343ms	remaining: 259ms
57:	learn: 23.9802039	total: 349ms	remaining: 253ms
58:	learn: 23.8059432	total: 356ms	remaining: 247ms
59:	learn: 23.6006403	total: 362ms	remaining: 241ms
60:	learn: 23.2948382	total: 367ms	remaining: 235ms
61:	learn: 23.1338922	total: 372ms	remaining: 228ms
62:	learn: 22.9581269	total: 377ms	remaining: 221ms
63:	learn: 22.8263127	total: 383ms	remaining: 215ms
64:	learn: 22.6966006	total: 388ms	remaining: 209ms
65:	learn: 22.6012389	total: 393ms	remaining: 202ms
66:	learn: 22.4220244	total: 398ms	remaining: 196ms
67:	learn: 22.3148342	total: 403ms	remaining: 190ms
68:	learn: 22.1543592	total: 408ms	remaining: 183ms
69:	learn: 22.0614050	total: 413ms	remaining: 177ms
70:	learn: 21.9134025	total: 419ms	remaining: 171ms
71:	learn: 21.8198101	total: 423ms	remaining: 165ms
72:	learn: 21.6944173	total: 428ms	remaining: 158ms
73:	learn: 21.4727420	total: 434ms	remaining: 152ms
74:	learn: 21.3000560	total: 439ms	remaining: 146ms
75:	learn: 21.1884740	total: 444ms	remaining: 140ms
76:	learn: 21.0321317	total: 449ms	remaining: 134ms
77:	learn: 20.9371793	total: 455ms	remaining: 128ms
78:	learn: 20.6800341	total: 460ms	remaining: 122ms
79:	learn: 20.5629904	total: 470ms	remaining: 118ms
80:	learn: 20.4098217	total: 478ms	remaining: 112ms
81:	learn: 20.2139261	total: 484ms	remaining: 106ms
82:	learn: 20.1024260	total: 491ms	remaining: 100ms
83:	learn: 19.9835855	total: 496ms	remaining: 94.4ms
84:	learn: 19.9018880	total: 501ms	remaining: 88.3ms
85:	learn: 19.7819843	total: 505ms	remaining: 82.3ms
86:	learn: 19.6352780	total: 510ms	remaining: 76.2ms
87:	learn: 19.4888328	total: 515ms	remaining: 70.2ms
88:	learn: 19.4365121	total: 520ms	remaining: 64.3ms
89:	learn: 19.3427430	total: 525ms	remaining: 58.3ms
90:	learn: 19.2884907	total: 530ms	remaining: 52.4ms
91:	learn: 19.1898932	total: 535ms	remaining: 46.5ms
92:	learn: 19.0775661	total: 540ms	remaining: 40.6ms
93:	learn: 19.0334055	total: 545ms	remaining: 34.8ms
94:	learn: 18.9381916	total: 550ms	remaining: 28.9ms
95:	learn: 18.8471198	total: 569ms	remaining: 23.7ms
96:	learn: 18.7136478	total: 574ms	remaining: 17.8ms
97:	learn: 18.6633102	total: 579ms	remaining: 11.8ms
98:	learn: 18.5887516	total: 583ms	remaining: 5.89ms
99:	learn: 18.4841597	total: 588ms	remaining: 0us
0:	learn: 46.2172336	total: 5.29ms	remaining: 524ms
1:	learn: 45.4248871	total: 10.4ms	remaining: 508ms
2:	learn: 44.8702937	total: 15.6ms	remaining: 506ms
3:	learn: 44.2019212	total: 20.5ms	remaining: 492ms
4:	learn: 43.4805210	total: 25.5ms	remaining: 485ms
5:	learn: 42.7336269	total: 34ms	remaining: 533ms
6:	learn: 42.0396670	total: 43ms	remaining: 571ms
7:	learn: 41.5668459	total: 53.3ms	remaining: 613ms
8:	learn: 40.8999125	total: 63.2ms	remaining: 639ms
9:	learn: 40.3358512	total: 68.9ms	remaining: 620ms
10:	learn: 39.7511489	total: 74.6ms	remaining: 603ms
11:	learn: 39.0775416	total: 80.4ms	remaining: 589ms
12:	learn: 38.5204735	total: 85.9ms	remaining: 575ms
13:	learn: 38.2087509	total: 91.9ms	remaining: 565ms
14:	learn: 37.7259552	total: 97.8ms	remaining: 554ms
15:	learn: 37.1646397	total: 103ms	remaining: 543ms
16:	learn: 36.7093520	total: 109ms	remaining: 530ms
17:	learn: 36.2212308	total: 114ms	remaining: 520ms
18:	learn: 35.8682156	total: 120ms	remaining: 513ms
19:	learn: 35.6026383	total: 126ms	remaining: 504ms
20:	learn: 35.1739725	total: 131ms	remaining: 491ms
21:	learn: 34.5938003	total: 136ms	remaining: 481ms
22:	learn: 34.1479056	total: 141ms	remaining: 471ms
23:	learn: 33.8759356	total: 146ms	remaining: 462ms
24:	learn: 33.2898426	total: 151ms	remaining: 454ms
25:	learn: 32.9220237	total: 156ms	remaining: 445ms
26:	learn: 32.4324374	total: 161ms	remaining: 436ms
27:	learn: 32.1726327	total: 166ms	remaining: 427ms
28:	learn: 31.8020879	total: 171ms	remaining: 419ms
29:	learn: 31.4329781	total: 176ms	remaining: 410ms
30:	learn: 30.9995282	total: 180ms	remaining: 402ms
31:	learn: 30.6815978	total: 185ms	remaining: 394ms
32:	learn: 30.2991029	total: 190ms	remaining: 386ms
33:	learn: 30.0354202	total: 195ms	remaining: 378ms
34:	learn: 29.7620535	total: 200ms	remaining: 371ms
35:	learn: 29.4552589	total: 204ms	remaining: 364ms
36:	learn: 29.2634399	total: 209ms	remaining: 357ms
37:	learn: 28.8345135	total: 215ms	remaining: 350ms
38:	learn: 28.5551142	total: 220ms	remaining: 344ms
39:	learn: 28.3258809	total: 224ms	remaining: 337ms
40:	learn: 28.0835564	total: 229ms	remaining: 330ms
41:	learn: 27.7517159	total: 234ms	remaining: 324ms
42:	learn: 27.5427595	total: 240ms	remaining: 318ms
43:	learn: 27.3925105	total: 245ms	remaining: 311ms
44:	learn: 27.2377120	total: 250ms	remaining: 305ms
45:	learn: 26.9930398	total: 255ms	remaining: 300ms
46:	learn: 26.7748687	total: 264ms	remaining: 298ms
47:	learn: 26.5856986	total: 273ms	remaining: 295ms
48:	learn: 26.4344153	total: 280ms	remaining: 291ms
49:	learn: 26.3263456	total: 285ms	remaining: 285ms
50:	learn: 26.2048412	total: 291ms	remaining: 280ms
51:	learn: 26.0608546	total: 296ms	remaining: 273ms
52:	learn: 25.9428146	total: 301ms	remaining: 267ms
53:	learn: 25.7578029	total: 306ms	remaining: 260ms
54:	learn: 25.5696792	total: 310ms	remaining: 254ms
55:	learn: 25.3291935	total: 315ms	remaining: 248ms
56:	learn: 25.1388942	total: 320ms	remaining: 241ms
57:	learn: 24.9853945	total: 325ms	remaining: 235ms
58:	learn: 24.8037785	total: 330ms	remaining: 229ms
59:	learn: 24.5326704	total: 335ms	remaining: 223ms
60:	learn: 24.2208240	total: 339ms	remaining: 217ms
61:	learn: 24.0774015	total: 345ms	remaining: 211ms
62:	learn: 23.9705824	total: 349ms	remaining: 205ms
63:	learn: 23.8877665	total: 354ms	remaining: 199ms
64:	learn: 23.7309043	total: 359ms	remaining: 193ms
65:	learn: 23.5820140	total: 364ms	remaining: 188ms
66:	learn: 23.3762012	total: 369ms	remaining: 182ms
67:	learn: 23.2317502	total: 374ms	remaining: 176ms
68:	learn: 23.0868331	total: 380ms	remaining: 171ms
69:	learn: 22.9642758	total: 384ms	remaining: 165ms
70:	learn: 22.8085341	total: 389ms	remaining: 159ms
71:	learn: 22.6834294	total: 394ms	remaining: 153ms
72:	learn: 22.6152922	total: 399ms	remaining: 148ms
73:	learn: 22.3675145	total: 404ms	remaining: 142ms
74:	learn: 22.3023338	total: 408ms	remaining: 136ms
75:	learn: 22.1866833	total: 413ms	remaining: 130ms
76:	learn: 22.0163130	total: 418ms	remaining: 125ms
77:	learn: 21.9691306	total: 422ms	remaining: 119ms
78:	learn: 21.9004647	total: 427ms	remaining: 114ms
79:	learn: 21.7931869	total: 432ms	remaining: 108ms
80:	learn: 21.6747916	total: 437ms	remaining: 103ms
81:	learn: 21.5187568	total: 442ms	remaining: 97.1ms
82:	learn: 21.3124880	total: 448ms	remaining: 91.7ms
83:	learn: 21.1979524	total: 453ms	remaining: 86.2ms
84:	learn: 21.1311130	total: 459ms	remaining: 81ms
85:	learn: 21.0606062	total: 469ms	remaining: 76.3ms
86:	learn: 20.9900935	total: 480ms	remaining: 71.8ms
87:	learn: 20.8908054	total: 488ms	remaining: 66.5ms
88:	learn: 20.8088525	total: 494ms	remaining: 61.1ms
89:	learn: 20.7300955	total: 501ms	remaining: 55.7ms
90:	learn: 20.6130276	total: 507ms	remaining: 50.2ms
91:	learn: 20.5437508	total: 513ms	remaining: 44.6ms
92:	learn: 20.5029426	total: 521ms	remaining: 39.2ms
93:	learn: 20.4416708	total: 528ms	remaining: 33.7ms
94:	learn: 20.3917812	total: 534ms	remaining: 28.1ms
95:	learn: 20.3305024	total: 539ms	remaining: 22.5ms
96:	learn: 20.2375704	total: 544ms	remaining: 16.8ms
97:	learn: 20.1835197	total: 550ms	remaining: 11.2ms
98:	learn: 20.1246834	total: 556ms	remaining: 5.62ms
99:	learn: 20.0506334	total: 561ms	remaining: 0us
0:	learn: 46.7334648	total: 5.09ms	remaining: 504ms
1:	learn: 46.2069876	total: 10ms	remaining: 491ms
2:	learn: 45.3699967	total: 14.8ms	remaining: 480ms
3:	learn: 44.6866787	total: 20ms	remaining: 479ms
4:	learn: 43.8536031	total: 24.8ms	remaining: 470ms
5:	learn: 43.4716853	total: 29.8ms	remaining: 466ms
6:	learn: 42.9929637	total: 35ms	remaining: 464ms
7:	learn: 42.4952169	total: 39.9ms	remaining: 459ms
8:	learn: 41.7548337	total: 45ms	remaining: 455ms
9:	learn: 41.1054415	total: 49.8ms	remaining: 448ms
10:	learn: 40.4827492	total: 55.5ms	remaining: 449ms
11:	learn: 39.7605907	total: 65ms	remaining: 477ms
12:	learn: 39.2532558	total: 73.4ms	remaining: 491ms
13:	learn: 38.6572753	total: 80.5ms	remaining: 494ms
14:	learn: 38.2886959	total: 87.1ms	remaining: 494ms
15:	learn: 37.7816612	total: 92.1ms	remaining: 484ms
16:	learn: 37.1680589	total: 96.8ms	remaining: 473ms
17:	learn: 36.5753004	total: 101ms	remaining: 461ms
18:	learn: 36.2339458	total: 106ms	remaining: 453ms
19:	learn: 35.9159716	total: 111ms	remaining: 444ms
20:	learn: 35.4591743	total: 116ms	remaining: 436ms
21:	learn: 34.8726070	total: 121ms	remaining: 428ms
22:	learn: 34.3903591	total: 126ms	remaining: 421ms
23:	learn: 34.1236827	total: 131ms	remaining: 414ms
24:	learn: 33.8026540	total: 135ms	remaining: 406ms
25:	learn: 33.4594822	total: 140ms	remaining: 399ms
26:	learn: 33.1338910	total: 145ms	remaining: 391ms
27:	learn: 32.8527106	total: 149ms	remaining: 384ms
28:	learn: 32.4923829	total: 154ms	remaining: 377ms
29:	learn: 32.0560533	total: 159ms	remaining: 371ms
30:	learn: 31.6614408	total: 164ms	remaining: 364ms
31:	learn: 31.2796040	total: 168ms	remaining: 358ms
32:	learn: 30.8214741	total: 173ms	remaining: 351ms
33:	learn: 30.5908694	total: 178ms	remaining: 345ms
34:	learn: 30.3637356	total: 182ms	remaining: 339ms
35:	learn: 30.0446511	total: 187ms	remaining: 333ms
36:	learn: 29.8792549	total: 192ms	remaining: 327ms
37:	learn: 29.5488457	total: 197ms	remaining: 321ms
38:	learn: 29.2808568	total: 202ms	remaining: 315ms
39:	learn: 29.0603765	total: 206ms	remaining: 310ms
40:	learn: 28.8272425	total: 211ms	remaining: 304ms
41:	learn: 28.4753580	total: 216ms	remaining: 299ms
42:	learn: 28.2963614	total: 221ms	remaining: 294ms
43:	learn: 28.1054768	total: 227ms	remaining: 289ms
44:	learn: 27.9038093	total: 232ms	remaining: 284ms
45:	learn: 27.6305487	total: 237ms	remaining: 278ms
46:	learn: 27.4457907	total: 242ms	remaining: 273ms
47:	learn: 27.1855957	total: 247ms	remaining: 268ms
48:	learn: 26.9987934	total: 253ms	remaining: 264ms
49:	learn: 26.7881067	total: 262ms	remaining: 262ms
50:	learn: 26.6385231	total: 272ms	remaining: 261ms
51:	learn: 26.4661755	total: 280ms	remaining: 258ms
52:	learn: 26.3331868	total: 288ms	remaining: 255ms
53:	learn: 26.0353476	total: 294ms	remaining: 250ms
54:	learn: 25.8257147	total: 300ms	remaining: 246ms
55:	learn: 25.5924383	total: 306ms	remaining: 240ms
56:	learn: 25.4082209	total: 311ms	remaining: 235ms
57:	learn: 25.2350104	total: 318ms	remaining: 230ms
58:	learn: 25.1789867	total: 323ms	remaining: 225ms
59:	learn: 24.9111359	total: 329ms	remaining: 219ms
60:	learn: 24.6314503	total: 335ms	remaining: 214ms
61:	learn: 24.4297999	total: 340ms	remaining: 208ms
62:	learn: 24.3126171	total: 345ms	remaining: 203ms
63:	learn: 24.1544005	total: 352ms	remaining: 198ms
64:	learn: 24.0197950	total: 357ms	remaining: 192ms
65:	learn: 23.8483087	total: 361ms	remaining: 186ms
66:	learn: 23.6624915	total: 366ms	remaining: 180ms
67:	learn: 23.5068105	total: 371ms	remaining: 175ms
68:	learn: 23.4266187	total: 376ms	remaining: 169ms
69:	learn: 23.3535388	total: 380ms	remaining: 163ms
70:	learn: 23.2477190	total: 385ms	remaining: 157ms
71:	learn: 23.1877634	total: 390ms	remaining: 152ms
72:	learn: 23.1344720	total: 395ms	remaining: 146ms
73:	learn: 22.9498234	total: 400ms	remaining: 141ms
74:	learn: 22.9068295	total: 405ms	remaining: 135ms
75:	learn: 22.7368434	total: 410ms	remaining: 130ms
76:	learn: 22.6084901	total: 415ms	remaining: 124ms
77:	learn: 22.4690295	total: 420ms	remaining: 118ms
78:	learn: 22.3970100	total: 425ms	remaining: 113ms
79:	learn: 22.3025537	total: 430ms	remaining: 108ms
80:	learn: 22.2089293	total: 435ms	remaining: 102ms
81:	learn: 22.0522107	total: 441ms	remaining: 96.7ms
82:	learn: 21.9368213	total: 446ms	remaining: 91.3ms
83:	learn: 21.7968322	total: 451ms	remaining: 85.9ms
84:	learn: 21.7416164	total: 460ms	remaining: 81.2ms
85:	learn: 21.6031099	total: 468ms	remaining: 76.2ms
86:	learn: 21.4530627	total: 475ms	remaining: 70.9ms
87:	learn: 21.3118417	total: 481ms	remaining: 65.5ms
88:	learn: 21.2760431	total: 486ms	remaining: 60.1ms
89:	learn: 21.2071350	total: 491ms	remaining: 54.6ms
90:	learn: 21.1051001	total: 496ms	remaining: 49ms
91:	learn: 21.0246142	total: 501ms	remaining: 43.5ms
92:	learn: 20.9834999	total: 506ms	remaining: 38.1ms
93:	learn: 20.8989393	total: 510ms	remaining: 32.6ms
94:	learn: 20.8262231	total: 515ms	remaining: 27.1ms
95:	learn: 20.7369110	total: 519ms	remaining: 21.6ms
96:	learn: 20.6409587	total: 524ms	remaining: 16.2ms
97:	learn: 20.5553641	total: 529ms	remaining: 10.8ms
98:	learn: 20.4317232	total: 533ms	remaining: 5.39ms
99:	learn: 20.3708681	total: 538ms	remaining: 0us
0:	learn: 27.6871645	total: 5.11ms	remaining: 506ms
1:	learn: 27.3312003	total: 9.9ms	remaining: 485ms
2:	learn: 26.9359558	total: 14.7ms	remaining: 474ms
3:	learn: 26.6055364	total: 19.1ms	remaining: 459ms
4:	learn: 26.1664924	total: 23.8ms	remaining: 452ms
5:	learn: 25.8515393	total: 28.9ms	remaining: 453ms
6:	learn: 25.4620036	total: 33.7ms	remaining: 448ms
7:	learn: 25.1669741	total: 38.6ms	remaining: 443ms
8:	learn: 24.8455454	total: 43.4ms	remaining: 439ms
9:	learn: 24.5106323	total: 50.1ms	remaining: 451ms
10:	learn: 24.1915228	total: 57.7ms	remaining: 467ms
11:	learn: 23.9076053	total: 65.4ms	remaining: 479ms
12:	learn: 23.6692445	total: 72.4ms	remaining: 484ms
13:	learn: 23.4343504	total: 78.2ms	remaining: 480ms
14:	learn: 23.2425280	total: 84.3ms	remaining: 478ms
15:	learn: 22.9254142	total: 91.3ms	remaining: 479ms
16:	learn: 22.6495489	total: 97.1ms	remaining: 474ms
17:	learn: 22.4343705	total: 103ms	remaining: 468ms
18:	learn: 22.2154202	total: 108ms	remaining: 462ms
19:	learn: 22.0592712	total: 115ms	remaining: 458ms
20:	learn: 21.7971944	total: 121ms	remaining: 453ms
21:	learn: 21.6128930	total: 126ms	remaining: 448ms
22:	learn: 21.3882946	total: 132ms	remaining: 443ms
23:	learn: 21.0912570	total: 138ms	remaining: 438ms
24:	learn: 20.8922857	total: 144ms	remaining: 431ms
25:	learn: 20.7150574	total: 150ms	remaining: 426ms
26:	learn: 20.5673183	total: 156ms	remaining: 422ms
27:	learn: 20.4331275	total: 162ms	remaining: 416ms
28:	learn: 20.2782866	total: 168ms	remaining: 410ms
29:	learn: 20.1061525	total: 173ms	remaining: 405ms
30:	learn: 19.9225948	total: 180ms	remaining: 401ms
31:	learn: 19.7809193	total: 185ms	remaining: 394ms
32:	learn: 19.6057771	total: 190ms	remaining: 386ms
33:	learn: 19.4391243	total: 195ms	remaining: 379ms
34:	learn: 19.2234365	total: 200ms	remaining: 371ms
35:	learn: 19.0214424	total: 205ms	remaining: 364ms
36:	learn: 18.8990643	total: 210ms	remaining: 357ms
37:	learn: 18.7473635	total: 215ms	remaining: 350ms
38:	learn: 18.6125192	total: 219ms	remaining: 343ms
39:	learn: 18.4977949	total: 224ms	remaining: 336ms
40:	learn: 18.3914568	total: 229ms	remaining: 330ms
41:	learn: 18.2541544	total: 234ms	remaining: 323ms
42:	learn: 18.1038984	total: 239ms	remaining: 317ms
43:	learn: 17.9706172	total: 245ms	remaining: 312ms
44:	learn: 17.8198810	total: 250ms	remaining: 306ms
45:	learn: 17.7102597	total: 256ms	remaining: 300ms
46:	learn: 17.6148228	total: 261ms	remaining: 294ms
47:	learn: 17.5115365	total: 266ms	remaining: 288ms
48:	learn: 17.3884162	total: 291ms	remaining: 303ms
49:	learn: 17.2857632	total: 297ms	remaining: 297ms
50:	learn: 17.1618843	total: 304ms	remaining: 292ms
51:	learn: 17.0529601	total: 309ms	remaining: 285ms
52:	learn: 16.9330273	total: 314ms	remaining: 279ms
53:	learn: 16.8206672	total: 319ms	remaining: 272ms
54:	learn: 16.7080356	total: 324ms	remaining: 265ms
55:	learn: 16.5874354	total: 329ms	remaining: 259ms
56:	learn: 16.4929860	total: 334ms	remaining: 252ms
57:	learn: 16.4269419	total: 339ms	remaining: 246ms
58:	learn: 16.3474026	total: 345ms	remaining: 239ms
59:	learn: 16.2515784	total: 350ms	remaining: 233ms
60:	learn: 16.1743901	total: 354ms	remaining: 227ms
61:	learn: 16.0389930	total: 359ms	remaining: 220ms
62:	learn: 15.9671636	total: 364ms	remaining: 214ms
63:	learn: 15.8928486	total: 369ms	remaining: 207ms
64:	learn: 15.8303841	total: 373ms	remaining: 201ms
65:	learn: 15.7612266	total: 378ms	remaining: 195ms
66:	learn: 15.6811172	total: 383ms	remaining: 189ms
67:	learn: 15.6262138	total: 387ms	remaining: 182ms
68:	learn: 15.5662508	total: 392ms	remaining: 176ms
69:	learn: 15.4804354	total: 397ms	remaining: 170ms
70:	learn: 15.4054915	total: 401ms	remaining: 164ms
71:	learn: 15.3271396	total: 406ms	remaining: 158ms
72:	learn: 15.2828359	total: 411ms	remaining: 152ms
73:	learn: 15.2197404	total: 415ms	remaining: 146ms
74:	learn: 15.1315902	total: 420ms	remaining: 140ms
75:	learn: 15.0780523	total: 425ms	remaining: 134ms
76:	learn: 14.9959155	total: 430ms	remaining: 128ms
77:	learn: 14.9265008	total: 434ms	remaining: 122ms
78:	learn: 14.8570189	total: 439ms	remaining: 117ms
79:	learn: 14.8060372	total: 444ms	remaining: 111ms
80:	learn: 14.7294676	total: 449ms	remaining: 105ms
81:	learn: 14.6708309	total: 455ms	remaining: 99.8ms
82:	learn: 14.5765370	total: 460ms	remaining: 94.1ms
83:	learn: 14.5312713	total: 465ms	remaining: 88.6ms
84:	learn: 14.4830327	total: 474ms	remaining: 83.6ms
85:	learn: 14.4296247	total: 484ms	remaining: 78.8ms
86:	learn: 14.3381470	total: 493ms	remaining: 73.6ms
87:	learn: 14.2638093	total: 501ms	remaining: 68.3ms
88:	learn: 14.2288435	total: 507ms	remaining: 62.6ms
89:	learn: 14.1489273	total: 512ms	remaining: 56.9ms
90:	learn: 14.0937923	total: 518ms	remaining: 51.2ms
91:	learn: 14.0334062	total: 524ms	remaining: 45.6ms
92:	learn: 13.9854696	total: 530ms	remaining: 39.9ms
93:	learn: 13.9444203	total: 536ms	remaining: 34.2ms
94:	learn: 13.9101523	total: 541ms	remaining: 28.5ms
95:	learn: 13.8460655	total: 547ms	remaining: 22.8ms
96:	learn: 13.7809420	total: 552ms	remaining: 17.1ms
97:	learn: 13.7270532	total: 558ms	remaining: 11.4ms
98:	learn: 13.6891300	total: 564ms	remaining: 5.7ms
99:	learn: 13.6569696	total: 570ms	remaining: 0us
0:	learn: 42.9754370	total: 4.99ms	remaining: 494ms
1:	learn: 42.2613272	total: 10ms	remaining: 492ms
2:	learn: 41.4729969	total: 14.7ms	remaining: 475ms
3:	learn: 40.7127004	total: 19.2ms	remaining: 461ms
4:	learn: 39.7775109	total: 23.9ms	remaining: 455ms
5:	learn: 39.1736663	total: 29.3ms	remaining: 459ms
6:	learn: 38.2981109	total: 34.2ms	remaining: 454ms
7:	learn: 37.5352984	total: 39.1ms	remaining: 450ms
8:	learn: 36.7771474	total: 44.3ms	remaining: 448ms
9:	learn: 36.0581366	total: 49.3ms	remaining: 444ms
10:	learn: 35.3542706	total: 56.6ms	remaining: 458ms
11:	learn: 34.6937007	total: 65.2ms	remaining: 478ms
12:	learn: 34.0408035	total: 72.9ms	remaining: 488ms
13:	learn: 33.3460240	total: 79.2ms	remaining: 486ms
14:	learn: 32.8086243	total: 85.4ms	remaining: 484ms
15:	learn: 32.1934462	total: 90.4ms	remaining: 475ms
16:	learn: 31.6465519	total: 94.9ms	remaining: 464ms
17:	learn: 31.2161293	total: 99.5ms	remaining: 453ms
18:	learn: 30.6730548	total: 104ms	remaining: 445ms
19:	learn: 30.3153659	total: 109ms	remaining: 435ms
20:	learn: 29.7661420	total: 114ms	remaining: 427ms
21:	learn: 29.2095664	total: 119ms	remaining: 420ms
22:	learn: 28.7509592	total: 123ms	remaining: 412ms
23:	learn: 28.4347528	total: 128ms	remaining: 405ms
24:	learn: 28.0551654	total: 133ms	remaining: 398ms
25:	learn: 27.7295952	total: 137ms	remaining: 391ms
26:	learn: 27.2329225	total: 142ms	remaining: 384ms
27:	learn: 26.9970607	total: 147ms	remaining: 377ms
28:	learn: 26.6596544	total: 152ms	remaining: 371ms
29:	learn: 26.2633576	total: 156ms	remaining: 365ms
30:	learn: 25.9761623	total: 161ms	remaining: 359ms
31:	learn: 25.6177371	total: 167ms	remaining: 354ms
32:	learn: 25.2165933	total: 171ms	remaining: 348ms
33:	learn: 24.8012870	total: 176ms	remaining: 341ms
34:	learn: 24.4772532	total: 181ms	remaining: 335ms
35:	learn: 24.1560359	total: 186ms	remaining: 330ms
36:	learn: 23.9688812	total: 191ms	remaining: 324ms
37:	learn: 23.6907607	total: 195ms	remaining: 318ms
38:	learn: 23.3885772	total: 200ms	remaining: 312ms
39:	learn: 23.2234939	total: 205ms	remaining: 307ms
40:	learn: 22.9785026	total: 209ms	remaining: 301ms
41:	learn: 22.6827268	total: 214ms	remaining: 295ms
42:	learn: 22.4564360	total: 219ms	remaining: 290ms
43:	learn: 22.2517827	total: 224ms	remaining: 284ms
44:	learn: 21.9858709	total: 229ms	remaining: 280ms
45:	learn: 21.7595870	total: 234ms	remaining: 275ms
46:	learn: 21.5929957	total: 239ms	remaining: 270ms
47:	learn: 21.4071752	total: 244ms	remaining: 264ms
48:	learn: 21.2186470	total: 249ms	remaining: 259ms
49:	learn: 21.0691824	total: 255ms	remaining: 255ms
50:	learn: 20.8921347	total: 262ms	remaining: 252ms
51:	learn: 20.6834229	total: 273ms	remaining: 252ms
52:	learn: 20.4718988	total: 282ms	remaining: 250ms
53:	learn: 20.3413889	total: 291ms	remaining: 247ms
54:	learn: 20.1785464	total: 296ms	remaining: 243ms
55:	learn: 19.9824314	total: 302ms	remaining: 237ms
56:	learn: 19.8217596	total: 308ms	remaining: 232ms
57:	learn: 19.6318474	total: 313ms	remaining: 227ms
58:	learn: 19.4962236	total: 319ms	remaining: 222ms
59:	learn: 19.3114985	total: 325ms	remaining: 217ms
60:	learn: 19.2181156	total: 331ms	remaining: 212ms
61:	learn: 19.0689614	total: 336ms	remaining: 206ms
62:	learn: 18.9563267	total: 342ms	remaining: 201ms
63:	learn: 18.8343083	total: 347ms	remaining: 195ms
64:	learn: 18.7050033	total: 353ms	remaining: 190ms
65:	learn: 18.6014163	total: 360ms	remaining: 186ms
66:	learn: 18.4910692	total: 365ms	remaining: 180ms
67:	learn: 18.3935194	total: 370ms	remaining: 174ms
68:	learn: 18.2825842	total: 376ms	remaining: 169ms
69:	learn: 18.1519267	total: 381ms	remaining: 163ms
70:	learn: 18.0527651	total: 386ms	remaining: 158ms
71:	learn: 17.9770106	total: 391ms	remaining: 152ms
72:	learn: 17.9151628	total: 396ms	remaining: 146ms
73:	learn: 17.7957486	total: 401ms	remaining: 141ms
74:	learn: 17.7025765	total: 406ms	remaining: 135ms
75:	learn: 17.5957242	total: 411ms	remaining: 130ms
76:	learn: 17.4683244	total: 416ms	remaining: 124ms
77:	learn: 17.3415729	total: 422ms	remaining: 119ms
78:	learn: 17.2886896	total: 427ms	remaining: 114ms
79:	learn: 17.2280922	total: 432ms	remaining: 108ms
80:	learn: 17.1188996	total: 437ms	remaining: 103ms
81:	learn: 17.0236450	total: 443ms	remaining: 97.2ms
82:	learn: 16.9046661	total: 448ms	remaining: 91.8ms
83:	learn: 16.7930633	total: 454ms	remaining: 86.4ms
84:	learn: 16.6870100	total: 463ms	remaining: 81.8ms
85:	learn: 16.5512107	total: 473ms	remaining: 77ms
86:	learn: 16.4353400	total: 480ms	remaining: 71.7ms
87:	learn: 16.3256461	total: 485ms	remaining: 66.2ms
88:	learn: 16.2968057	total: 491ms	remaining: 60.6ms
89:	learn: 16.2136078	total: 496ms	remaining: 55.1ms
90:	learn: 16.1596096	total: 501ms	remaining: 49.6ms
91:	learn: 16.1164050	total: 506ms	remaining: 44ms
92:	learn: 16.0660454	total: 511ms	remaining: 38.5ms
93:	learn: 16.0380611	total: 516ms	remaining: 32.9ms
94:	learn: 15.9494441	total: 521ms	remaining: 27.4ms
95:	learn: 15.8874840	total: 526ms	remaining: 21.9ms
96:	learn: 15.8288234	total: 531ms	remaining: 16.4ms
97:	learn: 15.7562787	total: 536ms	remaining: 10.9ms
98:	learn: 15.6822678	total: 541ms	remaining: 5.46ms
99:	learn: 15.5901500	total: 545ms	remaining: 0us
0:	learn: 46.4504871	total: 9.21ms	remaining: 912ms
1:	learn: 45.7240114	total: 14.1ms	remaining: 691ms
2:	learn: 45.0308025	total: 19.1ms	remaining: 617ms
3:	learn: 44.1111169	total: 24ms	remaining: 575ms
4:	learn: 43.3925352	total: 28.6ms	remaining: 544ms
5:	learn: 42.7856354	total: 33.6ms	remaining: 527ms
6:	learn: 42.1998170	total: 39ms	remaining: 518ms
7:	learn: 41.3532708	total: 44ms	remaining: 506ms
8:	learn: 40.7314571	total: 49ms	remaining: 495ms
9:	learn: 39.9838066	total: 54.2ms	remaining: 488ms
10:	learn: 39.4168243	total: 68.6ms	remaining: 555ms
11:	learn: 39.0148769	total: 78.7ms	remaining: 577ms
12:	learn: 38.3055855	total: 90.1ms	remaining: 603ms
13:	learn: 37.7343198	total: 100ms	remaining: 614ms
14:	learn: 37.4177463	total: 106ms	remaining: 599ms
15:	learn: 36.9043298	total: 112ms	remaining: 589ms
16:	learn: 36.3139174	total: 118ms	remaining: 575ms
17:	learn: 35.7200448	total: 123ms	remaining: 561ms
18:	learn: 35.3763394	total: 129ms	remaining: 551ms
19:	learn: 34.7666728	total: 135ms	remaining: 539ms
20:	learn: 34.2642890	total: 140ms	remaining: 528ms
21:	learn: 33.8196936	total: 146ms	remaining: 518ms
22:	learn: 33.4205669	total: 151ms	remaining: 507ms
23:	learn: 32.8565493	total: 157ms	remaining: 497ms
24:	learn: 32.5287132	total: 163ms	remaining: 489ms
25:	learn: 32.2142064	total: 169ms	remaining: 481ms
26:	learn: 31.9258854	total: 174ms	remaining: 470ms
27:	learn: 31.4083665	total: 179ms	remaining: 461ms
28:	learn: 31.1615620	total: 184ms	remaining: 451ms
29:	learn: 30.6948867	total: 189ms	remaining: 441ms
30:	learn: 30.3185108	total: 194ms	remaining: 431ms
31:	learn: 29.9245223	total: 199ms	remaining: 422ms
32:	learn: 29.6683643	total: 204ms	remaining: 414ms
33:	learn: 29.3868143	total: 208ms	remaining: 405ms
34:	learn: 29.1105699	total: 213ms	remaining: 396ms
35:	learn: 28.8274848	total: 218ms	remaining: 387ms
36:	learn: 28.5478288	total: 223ms	remaining: 380ms
37:	learn: 28.2355121	total: 228ms	remaining: 372ms
38:	learn: 28.0182564	total: 233ms	remaining: 364ms
39:	learn: 27.7654405	total: 238ms	remaining: 357ms
40:	learn: 27.5720477	total: 243ms	remaining: 349ms
41:	learn: 27.3182782	total: 248ms	remaining: 342ms
42:	learn: 26.9504431	total: 253ms	remaining: 335ms
43:	learn: 26.7281906	total: 258ms	remaining: 328ms
44:	learn: 26.5390008	total: 263ms	remaining: 321ms
45:	learn: 26.3781338	total: 269ms	remaining: 316ms
46:	learn: 26.1763177	total: 278ms	remaining: 313ms
47:	learn: 25.9417647	total: 285ms	remaining: 309ms
48:	learn: 25.7528045	total: 292ms	remaining: 304ms
49:	learn: 25.6336897	total: 298ms	remaining: 298ms
50:	learn: 25.4800426	total: 303ms	remaining: 291ms
51:	learn: 25.2895681	total: 308ms	remaining: 284ms
52:	learn: 25.0827111	total: 312ms	remaining: 277ms
53:	learn: 24.7987678	total: 317ms	remaining: 270ms
54:	learn: 24.6309982	total: 322ms	remaining: 263ms
55:	learn: 24.3526776	total: 326ms	remaining: 256ms
56:	learn: 24.1689125	total: 331ms	remaining: 250ms
57:	learn: 23.9802039	total: 336ms	remaining: 243ms
58:	learn: 23.8059432	total: 341ms	remaining: 237ms
59:	learn: 23.6006403	total: 345ms	remaining: 230ms
60:	learn: 23.2948382	total: 350ms	remaining: 224ms
61:	learn: 23.1338922	total: 355ms	remaining: 218ms
62:	learn: 22.9581269	total: 360ms	remaining: 211ms
63:	learn: 22.8263127	total: 364ms	remaining: 205ms
64:	learn: 22.6966006	total: 369ms	remaining: 199ms
65:	learn: 22.6012389	total: 374ms	remaining: 193ms
66:	learn: 22.4220244	total: 379ms	remaining: 187ms
67:	learn: 22.3148342	total: 384ms	remaining: 181ms
68:	learn: 22.1543592	total: 389ms	remaining: 175ms
69:	learn: 22.0614050	total: 394ms	remaining: 169ms
70:	learn: 21.9134025	total: 398ms	remaining: 163ms
71:	learn: 21.8198101	total: 403ms	remaining: 157ms
72:	learn: 21.6944173	total: 408ms	remaining: 151ms
73:	learn: 21.4727420	total: 413ms	remaining: 145ms
74:	learn: 21.3000560	total: 418ms	remaining: 139ms
75:	learn: 21.1884740	total: 423ms	remaining: 133ms
76:	learn: 21.0321317	total: 427ms	remaining: 128ms
77:	learn: 20.9371793	total: 432ms	remaining: 122ms
78:	learn: 20.6800341	total: 437ms	remaining: 116ms
79:	learn: 20.5629904	total: 442ms	remaining: 111ms
80:	learn: 20.4098217	total: 449ms	remaining: 105ms
81:	learn: 20.2139261	total: 457ms	remaining: 100ms
82:	learn: 20.1024260	total: 465ms	remaining: 95.1ms
83:	learn: 19.9835855	total: 471ms	remaining: 89.7ms
84:	learn: 19.9018880	total: 477ms	remaining: 84.2ms
85:	learn: 19.7819843	total: 483ms	remaining: 78.6ms
86:	learn: 19.6352780	total: 490ms	remaining: 73.2ms
87:	learn: 19.4888328	total: 495ms	remaining: 67.5ms
88:	learn: 19.4365121	total: 501ms	remaining: 61.9ms
89:	learn: 19.3427430	total: 506ms	remaining: 56.3ms
90:	learn: 19.2884907	total: 512ms	remaining: 50.6ms
91:	learn: 19.1898932	total: 518ms	remaining: 45ms
92:	learn: 19.0775661	total: 524ms	remaining: 39.4ms
93:	learn: 19.0334055	total: 529ms	remaining: 33.8ms
94:	learn: 18.9381916	total: 535ms	remaining: 28.2ms
95:	learn: 18.8471198	total: 542ms	remaining: 22.6ms
96:	learn: 18.7136478	total: 547ms	remaining: 16.9ms
97:	learn: 18.6633102	total: 553ms	remaining: 11.3ms
98:	learn: 18.5887516	total: 558ms	remaining: 5.63ms
99:	learn: 18.4841597	total: 564ms	remaining: 0us
0:	learn: 46.2172336	total: 4.89ms	remaining: 484ms
1:	learn: 45.4248871	total: 9.87ms	remaining: 484ms
2:	learn: 44.8702937	total: 14.9ms	remaining: 482ms
3:	learn: 44.2019212	total: 19.8ms	remaining: 474ms
4:	learn: 43.4805210	total: 24.4ms	remaining: 464ms
5:	learn: 42.7336269	total: 29.3ms	remaining: 460ms
6:	learn: 42.0396670	total: 34.5ms	remaining: 458ms
7:	learn: 41.5668459	total: 39.8ms	remaining: 458ms
8:	learn: 40.8999125	total: 45ms	remaining: 455ms
9:	learn: 40.3358512	total: 50.3ms	remaining: 452ms
10:	learn: 39.7511489	total: 55.2ms	remaining: 447ms
11:	learn: 39.0775416	total: 60.6ms	remaining: 445ms
12:	learn: 38.5204735	total: 69.6ms	remaining: 466ms
13:	learn: 38.2087509	total: 77.8ms	remaining: 478ms
14:	learn: 37.7259552	total: 84.8ms	remaining: 480ms
15:	learn: 37.1646397	total: 89.8ms	remaining: 472ms
16:	learn: 36.7093520	total: 95.9ms	remaining: 468ms
17:	learn: 36.2212308	total: 101ms	remaining: 459ms
18:	learn: 35.8682156	total: 105ms	remaining: 448ms
19:	learn: 35.6026383	total: 110ms	remaining: 439ms
20:	learn: 35.1739725	total: 115ms	remaining: 432ms
21:	learn: 34.5938003	total: 120ms	remaining: 424ms
22:	learn: 34.1479056	total: 124ms	remaining: 416ms
23:	learn: 33.8759356	total: 129ms	remaining: 409ms
24:	learn: 33.2898426	total: 134ms	remaining: 402ms
25:	learn: 32.9220237	total: 139ms	remaining: 394ms
26:	learn: 32.4324374	total: 143ms	remaining: 387ms
27:	learn: 32.1726327	total: 148ms	remaining: 381ms
28:	learn: 31.8020879	total: 153ms	remaining: 374ms
29:	learn: 31.4329781	total: 157ms	remaining: 367ms
30:	learn: 30.9995282	total: 162ms	remaining: 361ms
31:	learn: 30.6815978	total: 167ms	remaining: 355ms
32:	learn: 30.2991029	total: 172ms	remaining: 349ms
33:	learn: 30.0354202	total: 177ms	remaining: 344ms
34:	learn: 29.7620535	total: 182ms	remaining: 338ms
35:	learn: 29.4552589	total: 187ms	remaining: 333ms
36:	learn: 29.2634399	total: 193ms	remaining: 328ms
37:	learn: 28.8345135	total: 198ms	remaining: 323ms
38:	learn: 28.5551142	total: 203ms	remaining: 317ms
39:	learn: 28.3258809	total: 208ms	remaining: 312ms
40:	learn: 28.0835564	total: 213ms	remaining: 307ms
41:	learn: 27.7517159	total: 218ms	remaining: 301ms
42:	learn: 27.5427595	total: 223ms	remaining: 295ms
43:	learn: 27.3925105	total: 228ms	remaining: 290ms
44:	learn: 27.2377120	total: 233ms	remaining: 284ms
45:	learn: 26.9930398	total: 238ms	remaining: 279ms
46:	learn: 26.7748687	total: 243ms	remaining: 274ms
47:	learn: 26.5856986	total: 248ms	remaining: 269ms
48:	learn: 26.4344153	total: 254ms	remaining: 264ms
49:	learn: 26.3263456	total: 259ms	remaining: 259ms
50:	learn: 26.2048412	total: 268ms	remaining: 257ms
51:	learn: 26.0608546	total: 278ms	remaining: 257ms
52:	learn: 25.9428146	total: 287ms	remaining: 255ms
53:	learn: 25.7578029	total: 295ms	remaining: 251ms
54:	learn: 25.5696792	total: 301ms	remaining: 246ms
55:	learn: 25.3291935	total: 307ms	remaining: 241ms
56:	learn: 25.1388942	total: 312ms	remaining: 236ms
57:	learn: 24.9853945	total: 318ms	remaining: 230ms
58:	learn: 24.8037785	total: 324ms	remaining: 225ms
59:	learn: 24.5326704	total: 329ms	remaining: 219ms
60:	learn: 24.2208240	total: 335ms	remaining: 214ms
61:	learn: 24.0774015	total: 340ms	remaining: 209ms
62:	learn: 23.9705824	total: 346ms	remaining: 203ms
63:	learn: 23.8877665	total: 351ms	remaining: 197ms
64:	learn: 23.7309043	total: 359ms	remaining: 193ms
65:	learn: 23.5820140	total: 364ms	remaining: 188ms
66:	learn: 23.3762012	total: 369ms	remaining: 182ms
67:	learn: 23.2317502	total: 374ms	remaining: 176ms
68:	learn: 23.0868331	total: 379ms	remaining: 170ms
69:	learn: 22.9642758	total: 384ms	remaining: 164ms
70:	learn: 22.8085341	total: 389ms	remaining: 159ms
71:	learn: 22.6834294	total: 394ms	remaining: 153ms
72:	learn: 22.6152922	total: 399ms	remaining: 147ms
73:	learn: 22.3675145	total: 404ms	remaining: 142ms
74:	learn: 22.3023338	total: 408ms	remaining: 136ms
75:	learn: 22.1866833	total: 413ms	remaining: 131ms
76:	learn: 22.0163130	total: 418ms	remaining: 125ms
77:	learn: 21.9691306	total: 423ms	remaining: 119ms
78:	learn: 21.9004647	total: 429ms	remaining: 114ms
79:	learn: 21.7931869	total: 434ms	remaining: 109ms
80:	learn: 21.6747916	total: 440ms	remaining: 103ms
81:	learn: 21.5187568	total: 446ms	remaining: 97.8ms
82:	learn: 21.3124880	total: 451ms	remaining: 92.4ms
83:	learn: 21.1979524	total: 456ms	remaining: 86.9ms
84:	learn: 21.1311130	total: 466ms	remaining: 82.3ms
85:	learn: 21.0606062	total: 475ms	remaining: 77.3ms
86:	learn: 20.9900935	total: 482ms	remaining: 72ms
87:	learn: 20.8908054	total: 488ms	remaining: 66.5ms
88:	learn: 20.8088525	total: 494ms	remaining: 61ms
89:	learn: 20.7300955	total: 499ms	remaining: 55.4ms
90:	learn: 20.6130276	total: 504ms	remaining: 49.8ms
91:	learn: 20.5437508	total: 508ms	remaining: 44.2ms
92:	learn: 20.5029426	total: 513ms	remaining: 38.6ms
93:	learn: 20.4416708	total: 518ms	remaining: 33.1ms
94:	learn: 20.3917812	total: 522ms	remaining: 27.5ms
95:	learn: 20.3305024	total: 527ms	remaining: 22ms
96:	learn: 20.2375704	total: 532ms	remaining: 16.4ms
97:	learn: 20.1835197	total: 537ms	remaining: 10.9ms
98:	learn: 20.1246834	total: 541ms	remaining: 5.46ms
99:	learn: 20.0506334	total: 546ms	remaining: 0us
0:	learn: 46.7334648	total: 5.03ms	remaining: 498ms
1:	learn: 46.2069876	total: 9.73ms	remaining: 477ms
2:	learn: 45.3699967	total: 14.3ms	remaining: 462ms
3:	learn: 44.6866787	total: 19ms	remaining: 456ms
4:	learn: 43.8536031	total: 24.1ms	remaining: 458ms
5:	learn: 43.4716853	total: 28.9ms	remaining: 452ms
6:	learn: 42.9929637	total: 33.5ms	remaining: 445ms
7:	learn: 42.4952169	total: 38.5ms	remaining: 442ms
8:	learn: 41.7548337	total: 43.2ms	remaining: 436ms
9:	learn: 41.1054415	total: 47.8ms	remaining: 430ms
10:	learn: 40.4827492	total: 52.8ms	remaining: 427ms
11:	learn: 39.7605907	total: 57.8ms	remaining: 424ms
12:	learn: 39.2532558	total: 62.7ms	remaining: 420ms
13:	learn: 38.6572753	total: 67.9ms	remaining: 417ms
14:	learn: 38.2886959	total: 72.9ms	remaining: 413ms
15:	learn: 37.7816612	total: 78.4ms	remaining: 412ms
16:	learn: 37.1680589	total: 88.3ms	remaining: 431ms
17:	learn: 36.5753004	total: 99.9ms	remaining: 455ms
18:	learn: 36.2339458	total: 106ms	remaining: 452ms
19:	learn: 35.9159716	total: 115ms	remaining: 459ms
20:	learn: 35.4591743	total: 120ms	remaining: 452ms
21:	learn: 34.8726070	total: 126ms	remaining: 446ms
22:	learn: 34.3903591	total: 132ms	remaining: 441ms
23:	learn: 34.1236827	total: 138ms	remaining: 436ms
24:	learn: 33.8026540	total: 143ms	remaining: 430ms
25:	learn: 33.4594822	total: 149ms	remaining: 425ms
26:	learn: 33.1338910	total: 155ms	remaining: 419ms
27:	learn: 32.8527106	total: 161ms	remaining: 414ms
28:	learn: 32.4923829	total: 166ms	remaining: 407ms
29:	learn: 32.0560533	total: 172ms	remaining: 402ms
30:	learn: 31.6614408	total: 178ms	remaining: 396ms
31:	learn: 31.2796040	total: 183ms	remaining: 389ms
32:	learn: 30.8214741	total: 188ms	remaining: 381ms
33:	learn: 30.5908694	total: 192ms	remaining: 373ms
34:	learn: 30.3637356	total: 197ms	remaining: 365ms
35:	learn: 30.0446511	total: 202ms	remaining: 359ms
36:	learn: 29.8792549	total: 207ms	remaining: 352ms
37:	learn: 29.5488457	total: 212ms	remaining: 345ms
38:	learn: 29.2808568	total: 216ms	remaining: 338ms
39:	learn: 29.0603765	total: 221ms	remaining: 331ms
40:	learn: 28.8272425	total: 226ms	remaining: 325ms
41:	learn: 28.4753580	total: 231ms	remaining: 318ms
42:	learn: 28.2963614	total: 236ms	remaining: 313ms
43:	learn: 28.1054768	total: 240ms	remaining: 306ms
44:	learn: 27.9038093	total: 245ms	remaining: 300ms
45:	learn: 27.6305487	total: 250ms	remaining: 294ms
46:	learn: 27.4457907	total: 255ms	remaining: 288ms
47:	learn: 27.1855957	total: 260ms	remaining: 282ms
48:	learn: 26.9987934	total: 266ms	remaining: 276ms
49:	learn: 26.7881067	total: 271ms	remaining: 271ms
50:	learn: 26.6385231	total: 276ms	remaining: 265ms
51:	learn: 26.4661755	total: 284ms	remaining: 262ms
52:	learn: 26.3331868	total: 292ms	remaining: 259ms
53:	learn: 26.0353476	total: 300ms	remaining: 255ms
54:	learn: 25.8257147	total: 305ms	remaining: 250ms
55:	learn: 25.5924383	total: 312ms	remaining: 245ms
56:	learn: 25.4082209	total: 317ms	remaining: 239ms
57:	learn: 25.2350104	total: 321ms	remaining: 233ms
58:	learn: 25.1789867	total: 326ms	remaining: 226ms
59:	learn: 24.9111359	total: 331ms	remaining: 220ms
60:	learn: 24.6314503	total: 335ms	remaining: 214ms
61:	learn: 24.4297999	total: 340ms	remaining: 208ms
62:	learn: 24.3126171	total: 345ms	remaining: 202ms
63:	learn: 24.1544005	total: 349ms	remaining: 196ms
64:	learn: 24.0197950	total: 354ms	remaining: 191ms
65:	learn: 23.8483087	total: 359ms	remaining: 185ms
66:	learn: 23.6624915	total: 363ms	remaining: 179ms
67:	learn: 23.5068105	total: 368ms	remaining: 173ms
68:	learn: 23.4266187	total: 373ms	remaining: 168ms
69:	learn: 23.3535388	total: 378ms	remaining: 162ms
70:	learn: 23.2477190	total: 382ms	remaining: 156ms
71:	learn: 23.1877634	total: 387ms	remaining: 151ms
72:	learn: 23.1344720	total: 392ms	remaining: 145ms
73:	learn: 22.9498234	total: 397ms	remaining: 139ms
74:	learn: 22.9068295	total: 401ms	remaining: 134ms
75:	learn: 22.7368434	total: 406ms	remaining: 128ms
76:	learn: 22.6084901	total: 411ms	remaining: 123ms
77:	learn: 22.4690295	total: 416ms	remaining: 117ms
78:	learn: 22.3970100	total: 420ms	remaining: 112ms
79:	learn: 22.3025537	total: 425ms	remaining: 106ms
80:	learn: 22.2089293	total: 430ms	remaining: 101ms
81:	learn: 22.0522107	total: 435ms	remaining: 95.4ms
82:	learn: 21.9368213	total: 439ms	remaining: 90ms
83:	learn: 21.7968322	total: 444ms	remaining: 84.6ms
84:	learn: 21.7416164	total: 449ms	remaining: 79.3ms
85:	learn: 21.6031099	total: 454ms	remaining: 73.9ms
86:	learn: 21.4530627	total: 459ms	remaining: 68.6ms
87:	learn: 21.3118417	total: 464ms	remaining: 63.3ms
88:	learn: 21.2760431	total: 469ms	remaining: 58ms
89:	learn: 21.2071350	total: 474ms	remaining: 52.7ms
90:	learn: 21.1051001	total: 482ms	remaining: 47.7ms
91:	learn: 21.0246142	total: 491ms	remaining: 42.7ms
92:	learn: 20.9834999	total: 502ms	remaining: 37.8ms
93:	learn: 20.8989393	total: 509ms	remaining: 32.5ms
94:	learn: 20.8262231	total: 515ms	remaining: 27.1ms
95:	learn: 20.7369110	total: 521ms	remaining: 21.7ms
96:	learn: 20.6409587	total: 527ms	remaining: 16.3ms
97:	learn: 20.5553641	total: 533ms	remaining: 10.9ms
98:	learn: 20.4317232	total: 538ms	remaining: 5.43ms
99:	learn: 20.3708681	total: 544ms	remaining: 0us
0:	learn: 27.3441720	total: 21.2ms	remaining: 2.1s
1:	learn: 26.7159954	total: 43.3ms	remaining: 2.12s
2:	learn: 26.0850318	total: 65.8ms	remaining: 2.13s
3:	learn: 25.4039656	total: 88.8ms	remaining: 2.13s
4:	learn: 24.7930659	total: 119ms	remaining: 2.25s
5:	learn: 24.2028590	total: 140ms	remaining: 2.19s
6:	learn: 23.6622902	total: 159ms	remaining: 2.12s
7:	learn: 23.1531175	total: 181ms	remaining: 2.08s
8:	learn: 22.7050792	total: 203ms	remaining: 2.06s
9:	learn: 22.2151788	total: 223ms	remaining: 2.01s
10:	learn: 21.7708844	total: 245ms	remaining: 1.98s
11:	learn: 21.2587174	total: 268ms	remaining: 1.96s
12:	learn: 20.7559870	total: 290ms	remaining: 1.94s
13:	learn: 20.3040842	total: 316ms	remaining: 1.94s
14:	learn: 19.9019524	total: 342ms	remaining: 1.94s
15:	learn: 19.5186012	total: 364ms	remaining: 1.91s
16:	learn: 19.1521621	total: 387ms	remaining: 1.89s
17:	learn: 18.7652180	total: 408ms	remaining: 1.86s
18:	learn: 18.4446446	total: 429ms	remaining: 1.83s
19:	learn: 18.0977650	total: 448ms	remaining: 1.79s
20:	learn: 17.7791328	total: 468ms	remaining: 1.76s
21:	learn: 17.4777648	total: 493ms	remaining: 1.75s
22:	learn: 17.1794361	total: 517ms	remaining: 1.73s
23:	learn: 16.8685032	total: 536ms	remaining: 1.7s
24:	learn: 16.6274695	total: 558ms	remaining: 1.68s
25:	learn: 16.3071099	total: 577ms	remaining: 1.64s
26:	learn: 16.0249663	total: 598ms	remaining: 1.62s
27:	learn: 15.7535309	total: 618ms	remaining: 1.59s
28:	learn: 15.4777235	total: 638ms	remaining: 1.56s
29:	learn: 15.2410825	total: 657ms	remaining: 1.53s
30:	learn: 15.0133002	total: 677ms	remaining: 1.51s
31:	learn: 14.8018912	total: 698ms	remaining: 1.48s
32:	learn: 14.5701546	total: 726ms	remaining: 1.47s
33:	learn: 14.3799060	total: 752ms	remaining: 1.46s
34:	learn: 14.0975095	total: 776ms	remaining: 1.44s
35:	learn: 13.8873493	total: 797ms	remaining: 1.42s
36:	learn: 13.6812023	total: 819ms	remaining: 1.39s
37:	learn: 13.4943017	total: 842ms	remaining: 1.37s
38:	learn: 13.3224094	total: 864ms	remaining: 1.35s
39:	learn: 13.0967901	total: 887ms	remaining: 1.33s
40:	learn: 12.9138190	total: 911ms	remaining: 1.31s
41:	learn: 12.7764458	total: 938ms	remaining: 1.29s
42:	learn: 12.6593656	total: 962ms	remaining: 1.27s
43:	learn: 12.5051105	total: 983ms	remaining: 1.25s
44:	learn: 12.3057146	total: 1s	remaining: 1.23s
45:	learn: 12.1487674	total: 1.02s	remaining: 1.2s
46:	learn: 11.9614903	total: 1.05s	remaining: 1.18s
47:	learn: 11.7921265	total: 1.07s	remaining: 1.16s
48:	learn: 11.6572640	total: 1.09s	remaining: 1.14s
49:	learn: 11.5251463	total: 1.12s	remaining: 1.12s
50:	learn: 11.3789931	total: 1.15s	remaining: 1.1s
51:	learn: 11.2691375	total: 1.17s	remaining: 1.08s
52:	learn: 11.1161131	total: 1.2s	remaining: 1.06s
53:	learn: 11.0246399	total: 1.22s	remaining: 1.04s
54:	learn: 10.9152420	total: 1.24s	remaining: 1.02s
55:	learn: 10.7746769	total: 1.27s	remaining: 995ms
56:	learn: 10.6222917	total: 1.29s	remaining: 971ms
57:	learn: 10.5096115	total: 1.31s	remaining: 949ms
58:	learn: 10.3857030	total: 1.33s	remaining: 926ms
59:	learn: 10.2789057	total: 1.36s	remaining: 907ms
60:	learn: 10.1490749	total: 1.38s	remaining: 885ms
61:	learn: 10.0553291	total: 1.41s	remaining: 862ms
62:	learn: 9.9351043	total: 1.43s	remaining: 838ms
63:	learn: 9.8245261	total: 1.45s	remaining: 815ms
64:	learn: 9.7207577	total: 1.47s	remaining: 791ms
65:	learn: 9.5920661	total: 1.49s	remaining: 768ms
66:	learn: 9.4832767	total: 1.51s	remaining: 745ms
67:	learn: 9.3724149	total: 1.54s	remaining: 723ms
68:	learn: 9.2459801	total: 1.56s	remaining: 701ms
69:	learn: 9.1740635	total: 1.59s	remaining: 683ms
70:	learn: 9.1015730	total: 1.62s	remaining: 660ms
71:	learn: 9.0196460	total: 1.64s	remaining: 638ms
72:	learn: 8.9458977	total: 1.66s	remaining: 615ms
73:	learn: 8.8434400	total: 1.69s	remaining: 593ms
74:	learn: 8.7495151	total: 1.71s	remaining: 570ms
75:	learn: 8.6521348	total: 1.73s	remaining: 546ms
76:	learn: 8.5654483	total: 1.75s	remaining: 523ms
77:	learn: 8.4965765	total: 1.78s	remaining: 501ms
78:	learn: 8.4308736	total: 1.8s	remaining: 479ms
79:	learn: 8.3675601	total: 1.82s	remaining: 455ms
80:	learn: 8.3193887	total: 1.84s	remaining: 432ms
81:	learn: 8.2507990	total: 1.86s	remaining: 409ms
82:	learn: 8.1583259	total: 1.88s	remaining: 386ms
83:	learn: 8.0995902	total: 1.9s	remaining: 363ms
84:	learn: 8.0236655	total: 1.93s	remaining: 340ms
85:	learn: 7.9634698	total: 1.95s	remaining: 317ms
86:	learn: 7.9109081	total: 1.97s	remaining: 294ms
87:	learn: 7.8385006	total: 1.99s	remaining: 272ms
88:	learn: 7.7859488	total: 2.02s	remaining: 250ms
89:	learn: 7.7270142	total: 2.05s	remaining: 227ms
90:	learn: 7.6774253	total: 2.07s	remaining: 205ms
91:	learn: 7.6126552	total: 2.09s	remaining: 182ms
92:	learn: 7.5392178	total: 2.11s	remaining: 159ms
93:	learn: 7.4745082	total: 2.13s	remaining: 136ms
94:	learn: 7.4106939	total: 2.16s	remaining: 113ms
95:	learn: 7.3573350	total: 2.18s	remaining: 90.7ms
96:	learn: 7.2889777	total: 2.2s	remaining: 68ms
97:	learn: 7.2204939	total: 2.23s	remaining: 45.5ms
98:	learn: 7.1646465	total: 2.25s	remaining: 22.7ms
99:	learn: 7.1204610	total: 2.27s	remaining: 0us
0:	learn: 42.5494645	total: 21.2ms	remaining: 2.1s
1:	learn: 41.2913513	total: 43.7ms	remaining: 2.14s
2:	learn: 40.1676527	total: 66ms	remaining: 2.13s
3:	learn: 38.7664819	total: 91.8ms	remaining: 2.2s
4:	learn: 37.5407492	total: 115ms	remaining: 2.19s
5:	learn: 36.4295331	total: 138ms	remaining: 2.16s
6:	learn: 35.2895967	total: 161ms	remaining: 2.13s
7:	learn: 34.1884539	total: 183ms	remaining: 2.11s
8:	learn: 33.1817690	total: 206ms	remaining: 2.08s
9:	learn: 32.3518195	total: 227ms	remaining: 2.04s
10:	learn: 31.4837515	total: 247ms	remaining: 2s
11:	learn: 30.7255972	total: 268ms	remaining: 1.97s
12:	learn: 29.9298648	total: 290ms	remaining: 1.94s
13:	learn: 29.0574249	total: 313ms	remaining: 1.92s
14:	learn: 28.4097384	total: 340ms	remaining: 1.93s
15:	learn: 27.5317445	total: 366ms	remaining: 1.92s
16:	learn: 26.7911946	total: 390ms	remaining: 1.91s
17:	learn: 26.1103465	total: 412ms	remaining: 1.88s
18:	learn: 25.5295903	total: 435ms	remaining: 1.85s
19:	learn: 24.8544960	total: 455ms	remaining: 1.82s
20:	learn: 24.2772682	total: 474ms	remaining: 1.78s
21:	learn: 23.6936944	total: 496ms	remaining: 1.76s
22:	learn: 23.1300945	total: 517ms	remaining: 1.73s
23:	learn: 22.5333494	total: 540ms	remaining: 1.71s
24:	learn: 22.0553465	total: 571ms	remaining: 1.71s
25:	learn: 21.6253628	total: 596ms	remaining: 1.7s
26:	learn: 21.1396219	total: 617ms	remaining: 1.67s
27:	learn: 20.7382905	total: 640ms	remaining: 1.65s
28:	learn: 20.3233915	total: 663ms	remaining: 1.62s
29:	learn: 19.9323992	total: 685ms	remaining: 1.6s
30:	learn: 19.5650439	total: 707ms	remaining: 1.57s
31:	learn: 19.2165649	total: 730ms	remaining: 1.55s
32:	learn: 18.8890056	total: 751ms	remaining: 1.52s
33:	learn: 18.5523762	total: 779ms	remaining: 1.51s
34:	learn: 18.2666116	total: 801ms	remaining: 1.49s
35:	learn: 17.9216926	total: 821ms	remaining: 1.46s
36:	learn: 17.6118879	total: 842ms	remaining: 1.43s
37:	learn: 17.2653313	total: 862ms	remaining: 1.41s
38:	learn: 16.9946585	total: 882ms	remaining: 1.38s
39:	learn: 16.6842506	total: 901ms	remaining: 1.35s
40:	learn: 16.4102287	total: 923ms	remaining: 1.33s
41:	learn: 16.2288795	total: 945ms	remaining: 1.3s
42:	learn: 15.9623692	total: 969ms	remaining: 1.28s
43:	learn: 15.7308231	total: 1s	remaining: 1.27s
44:	learn: 15.4695555	total: 1.02s	remaining: 1.25s
45:	learn: 15.2706809	total: 1.05s	remaining: 1.23s
46:	learn: 15.0182699	total: 1.07s	remaining: 1.21s
47:	learn: 14.7702088	total: 1.1s	remaining: 1.19s
48:	learn: 14.6303566	total: 1.12s	remaining: 1.16s
49:	learn: 14.4038016	total: 1.14s	remaining: 1.14s
50:	learn: 14.2309807	total: 1.17s	remaining: 1.12s
51:	learn: 14.0308425	total: 1.19s	remaining: 1.1s
52:	learn: 13.8201931	total: 1.22s	remaining: 1.08s
53:	learn: 13.6070078	total: 1.24s	remaining: 1.06s
54:	learn: 13.4230690	total: 1.26s	remaining: 1.03s
55:	learn: 13.2368649	total: 1.28s	remaining: 1.01s
56:	learn: 13.0449556	total: 1.31s	remaining: 985ms
57:	learn: 12.8375669	total: 1.33s	remaining: 961ms
58:	learn: 12.6795194	total: 1.35s	remaining: 937ms
59:	learn: 12.5197211	total: 1.37s	remaining: 914ms
60:	learn: 12.4011717	total: 1.4s	remaining: 892ms
61:	learn: 12.2396104	total: 1.42s	remaining: 873ms
62:	learn: 12.0647878	total: 1.45s	remaining: 850ms
63:	learn: 11.9247719	total: 1.47s	remaining: 827ms
64:	learn: 11.7923634	total: 1.49s	remaining: 804ms
65:	learn: 11.6628246	total: 1.52s	remaining: 782ms
66:	learn: 11.5688935	total: 1.54s	remaining: 758ms
67:	learn: 11.4345056	total: 1.56s	remaining: 735ms
68:	learn: 11.3136955	total: 1.58s	remaining: 711ms
69:	learn: 11.2040357	total: 1.61s	remaining: 689ms
70:	learn: 11.1067773	total: 1.64s	remaining: 668ms
71:	learn: 10.9728105	total: 1.66s	remaining: 645ms
72:	learn: 10.8338607	total: 1.68s	remaining: 622ms
73:	learn: 10.7202016	total: 1.7s	remaining: 598ms
74:	learn: 10.5983746	total: 1.73s	remaining: 575ms
75:	learn: 10.4882458	total: 1.75s	remaining: 552ms
76:	learn: 10.3827604	total: 1.77s	remaining: 529ms
77:	learn: 10.2485726	total: 1.79s	remaining: 506ms
78:	learn: 10.1524716	total: 1.82s	remaining: 483ms
79:	learn: 10.0765127	total: 1.85s	remaining: 462ms
80:	learn: 9.9617067	total: 1.87s	remaining: 439ms
81:	learn: 9.8357151	total: 1.9s	remaining: 417ms
82:	learn: 9.7311644	total: 1.92s	remaining: 394ms
83:	learn: 9.6314802	total: 1.95s	remaining: 371ms
84:	learn: 9.5137958	total: 1.97s	remaining: 348ms
85:	learn: 9.4420485	total: 1.99s	remaining: 325ms
86:	learn: 9.3959294	total: 2.02s	remaining: 302ms
87:	learn: 9.3057742	total: 2.05s	remaining: 279ms
88:	learn: 9.2031484	total: 2.07s	remaining: 256ms
89:	learn: 9.0996948	total: 2.09s	remaining: 232ms
90:	learn: 9.0492278	total: 2.11s	remaining: 209ms
91:	learn: 8.9400377	total: 2.13s	remaining: 185ms
92:	learn: 8.8904458	total: 2.15s	remaining: 162ms
93:	learn: 8.8102982	total: 2.17s	remaining: 139ms
94:	learn: 8.7445451	total: 2.19s	remaining: 115ms
95:	learn: 8.6796106	total: 2.22s	remaining: 92.4ms
96:	learn: 8.5875790	total: 2.25s	remaining: 69.6ms
97:	learn: 8.5086871	total: 2.27s	remaining: 46.4ms
98:	learn: 8.4547244	total: 2.3s	remaining: 23.2ms
99:	learn: 8.3841281	total: 2.32s	remaining: 0us
0:	learn: 46.2258117	total: 3.26ms	remaining: 323ms
1:	learn: 45.1253456	total: 26ms	remaining: 1.27s
2:	learn: 43.7311767	total: 50.1ms	remaining: 1.62s
3:	learn: 42.4252819	total: 80.4ms	remaining: 1.93s
4:	learn: 41.1436655	total: 105ms	remaining: 2s
5:	learn: 40.0337136	total: 129ms	remaining: 2.01s
6:	learn: 38.9102686	total: 152ms	remaining: 2.02s
7:	learn: 37.7859737	total: 175ms	remaining: 2.02s
8:	learn: 36.7646905	total: 199ms	remaining: 2.01s
9:	learn: 35.9495481	total: 222ms	remaining: 2s
10:	learn: 35.0558185	total: 246ms	remaining: 1.99s
11:	learn: 34.1958090	total: 269ms	remaining: 1.98s
12:	learn: 33.3514013	total: 299ms	remaining: 2s
13:	learn: 32.3317086	total: 326ms	remaining: 2s
14:	learn: 31.5611046	total: 349ms	remaining: 1.98s
15:	learn: 30.6373573	total: 371ms	remaining: 1.95s
16:	learn: 29.8883669	total: 394ms	remaining: 1.92s
17:	learn: 29.2985952	total: 416ms	remaining: 1.9s
18:	learn: 28.6360550	total: 437ms	remaining: 1.86s
19:	learn: 27.9757056	total: 458ms	remaining: 1.83s
20:	learn: 27.2585835	total: 479ms	remaining: 1.8s
21:	learn: 26.6366391	total: 504ms	remaining: 1.79s
22:	learn: 26.1055455	total: 530ms	remaining: 1.77s
23:	learn: 25.4961568	total: 554ms	remaining: 1.75s
24:	learn: 25.1037435	total: 574ms	remaining: 1.72s
25:	learn: 24.5258982	total: 595ms	remaining: 1.69s
26:	learn: 23.9974764	total: 617ms	remaining: 1.67s
27:	learn: 23.5108419	total: 638ms	remaining: 1.64s
28:	learn: 23.0835773	total: 658ms	remaining: 1.61s
29:	learn: 22.5744350	total: 678ms	remaining: 1.58s
30:	learn: 22.1357783	total: 701ms	remaining: 1.56s
31:	learn: 21.7316226	total: 728ms	remaining: 1.55s
32:	learn: 21.4082899	total: 756ms	remaining: 1.53s
33:	learn: 20.9640138	total: 778ms	remaining: 1.51s
34:	learn: 20.6379417	total: 802ms	remaining: 1.49s
35:	learn: 20.2688010	total: 824ms	remaining: 1.47s
36:	learn: 19.8479214	total: 847ms	remaining: 1.44s
37:	learn: 19.5684638	total: 869ms	remaining: 1.42s
38:	learn: 19.1826919	total: 890ms	remaining: 1.39s
39:	learn: 18.9583308	total: 913ms	remaining: 1.37s
40:	learn: 18.6736002	total: 936ms	remaining: 1.35s
41:	learn: 18.3525328	total: 963ms	remaining: 1.33s
42:	learn: 17.9954191	total: 987ms	remaining: 1.31s
43:	learn: 17.6991520	total: 1.01s	remaining: 1.28s
44:	learn: 17.3697888	total: 1.03s	remaining: 1.26s
45:	learn: 17.0519636	total: 1.05s	remaining: 1.23s
46:	learn: 16.7829795	total: 1.07s	remaining: 1.21s
47:	learn: 16.5108695	total: 1.09s	remaining: 1.18s
48:	learn: 16.2366816	total: 1.11s	remaining: 1.16s
49:	learn: 15.9947350	total: 1.14s	remaining: 1.14s
50:	learn: 15.7513561	total: 1.17s	remaining: 1.13s
51:	learn: 15.4328481	total: 1.2s	remaining: 1.11s
52:	learn: 15.2497907	total: 1.22s	remaining: 1.08s
53:	learn: 15.0417076	total: 1.25s	remaining: 1.06s
54:	learn: 14.8861891	total: 1.27s	remaining: 1.04s
55:	learn: 14.6497794	total: 1.29s	remaining: 1.01s
56:	learn: 14.3664771	total: 1.31s	remaining: 990ms
57:	learn: 14.2358168	total: 1.33s	remaining: 967ms
58:	learn: 14.0712722	total: 1.36s	remaining: 943ms
59:	learn: 13.9191649	total: 1.38s	remaining: 921ms
60:	learn: 13.7032356	total: 1.41s	remaining: 900ms
61:	learn: 13.5029041	total: 1.43s	remaining: 875ms
62:	learn: 13.3568908	total: 1.45s	remaining: 851ms
63:	learn: 13.1332696	total: 1.47s	remaining: 827ms
64:	learn: 13.0323137	total: 1.49s	remaining: 804ms
65:	learn: 12.8622078	total: 1.51s	remaining: 780ms
66:	learn: 12.7088186	total: 1.54s	remaining: 757ms
67:	learn: 12.5524646	total: 1.56s	remaining: 734ms
68:	learn: 12.4646011	total: 1.59s	remaining: 714ms
69:	learn: 12.3900687	total: 1.61s	remaining: 692ms
70:	learn: 12.2908367	total: 1.64s	remaining: 669ms
71:	learn: 12.1294405	total: 1.66s	remaining: 646ms
72:	learn: 12.0359996	total: 1.68s	remaining: 623ms
73:	learn: 11.9244352	total: 1.71s	remaining: 600ms
74:	learn: 11.8312038	total: 1.73s	remaining: 576ms
75:	learn: 11.6622123	total: 1.75s	remaining: 552ms
76:	learn: 11.5959180	total: 1.77s	remaining: 529ms
77:	learn: 11.4538852	total: 1.79s	remaining: 505ms
78:	learn: 11.3700375	total: 1.81s	remaining: 482ms
79:	learn: 11.2101447	total: 1.84s	remaining: 461ms
80:	learn: 11.0614634	total: 1.86s	remaining: 437ms
81:	learn: 10.9029225	total: 1.89s	remaining: 414ms
82:	learn: 10.7792030	total: 1.91s	remaining: 391ms
83:	learn: 10.6279451	total: 1.93s	remaining: 367ms
84:	learn: 10.5530267	total: 1.95s	remaining: 344ms
85:	learn: 10.4577150	total: 1.97s	remaining: 321ms
86:	learn: 10.4076417	total: 1.99s	remaining: 297ms
87:	learn: 10.3166632	total: 2.01s	remaining: 274ms
88:	learn: 10.2018151	total: 2.03s	remaining: 251ms
89:	learn: 10.0698484	total: 2.06s	remaining: 228ms
90:	learn: 10.0162824	total: 2.1s	remaining: 207ms
91:	learn: 9.9352639	total: 2.12s	remaining: 184ms
92:	learn: 9.8316734	total: 2.15s	remaining: 162ms
93:	learn: 9.7195471	total: 2.17s	remaining: 139ms
94:	learn: 9.5914894	total: 2.19s	remaining: 116ms
95:	learn: 9.5151851	total: 2.22s	remaining: 92.4ms
96:	learn: 9.3911314	total: 2.24s	remaining: 69.3ms
97:	learn: 9.3417706	total: 2.27s	remaining: 46.2ms
98:	learn: 9.2708440	total: 2.3s	remaining: 23.2ms
99:	learn: 9.1660321	total: 2.32s	remaining: 0us
0:	learn: 45.8627255	total: 2.61ms	remaining: 259ms
1:	learn: 44.7432040	total: 25.4ms	remaining: 1.25s
2:	learn: 43.4398568	total: 49.4ms	remaining: 1.6s
3:	learn: 42.1495515	total: 80.5ms	remaining: 1.93s
4:	learn: 40.9712633	total: 106ms	remaining: 2s
5:	learn: 40.0119591	total: 132ms	remaining: 2.07s
6:	learn: 39.1914360	total: 169ms	remaining: 2.25s
7:	learn: 38.1861536	total: 194ms	remaining: 2.23s
8:	learn: 37.1477128	total: 219ms	remaining: 2.22s
9:	learn: 36.3044702	total: 243ms	remaining: 2.18s
10:	learn: 35.5837917	total: 268ms	remaining: 2.17s
11:	learn: 34.8664158	total: 292ms	remaining: 2.14s
12:	learn: 33.9129833	total: 318ms	remaining: 2.13s
13:	learn: 32.9094642	total: 354ms	remaining: 2.17s
14:	learn: 32.1965787	total: 381ms	remaining: 2.16s
15:	learn: 31.4598238	total: 404ms	remaining: 2.12s
16:	learn: 30.6578027	total: 428ms	remaining: 2.09s
17:	learn: 30.0227468	total: 449ms	remaining: 2.05s
18:	learn: 29.2954728	total: 472ms	remaining: 2.01s
19:	learn: 28.5928084	total: 496ms	remaining: 1.98s
20:	learn: 27.9445984	total: 519ms	remaining: 1.95s
21:	learn: 27.3493298	total: 543ms	remaining: 1.93s
22:	learn: 26.8491966	total: 574ms	remaining: 1.92s
23:	learn: 26.3177453	total: 609ms	remaining: 1.93s
24:	learn: 25.8134533	total: 633ms	remaining: 1.9s
25:	learn: 25.2000018	total: 658ms	remaining: 1.87s
26:	learn: 24.6570461	total: 682ms	remaining: 1.84s
27:	learn: 24.1062982	total: 705ms	remaining: 1.81s
28:	learn: 23.7489370	total: 729ms	remaining: 1.78s
29:	learn: 23.2050536	total: 753ms	remaining: 1.75s
30:	learn: 22.7824379	total: 777ms	remaining: 1.73s
31:	learn: 22.4052655	total: 807ms	remaining: 1.72s
32:	learn: 21.9525639	total: 830ms	remaining: 1.69s
33:	learn: 21.5482900	total: 861ms	remaining: 1.67s
34:	learn: 21.1900983	total: 885ms	remaining: 1.64s
35:	learn: 20.8243957	total: 907ms	remaining: 1.61s
36:	learn: 20.4401288	total: 930ms	remaining: 1.58s
37:	learn: 20.0960622	total: 955ms	remaining: 1.56s
38:	learn: 19.7795108	total: 979ms	remaining: 1.53s
39:	learn: 19.4922451	total: 1s	remaining: 1.51s
40:	learn: 19.1827582	total: 1.03s	remaining: 1.49s
41:	learn: 18.8902445	total: 1.06s	remaining: 1.47s
42:	learn: 18.6833086	total: 1.08s	remaining: 1.44s
43:	learn: 18.4251972	total: 1.12s	remaining: 1.43s
44:	learn: 18.1471037	total: 1.14s	remaining: 1.4s
45:	learn: 17.8420017	total: 1.17s	remaining: 1.37s
46:	learn: 17.6101998	total: 1.19s	remaining: 1.34s
47:	learn: 17.3353656	total: 1.22s	remaining: 1.32s
48:	learn: 17.1194789	total: 1.25s	remaining: 1.3s
49:	learn: 16.8898454	total: 1.27s	remaining: 1.27s
50:	learn: 16.6657497	total: 1.29s	remaining: 1.24s
51:	learn: 16.3832867	total: 1.31s	remaining: 1.21s
52:	learn: 16.2098226	total: 1.34s	remaining: 1.19s
53:	learn: 16.0045707	total: 1.37s	remaining: 1.17s
54:	learn: 15.8512887	total: 1.4s	remaining: 1.14s
55:	learn: 15.6485628	total: 1.42s	remaining: 1.12s
56:	learn: 15.4841428	total: 1.45s	remaining: 1.1s
57:	learn: 15.3383158	total: 1.48s	remaining: 1.07s
58:	learn: 15.2056282	total: 1.5s	remaining: 1.04s
59:	learn: 15.0698337	total: 1.53s	remaining: 1.02s
60:	learn: 14.8487796	total: 1.55s	remaining: 992ms
61:	learn: 14.7255751	total: 1.57s	remaining: 965ms
62:	learn: 14.6100414	total: 1.6s	remaining: 939ms
63:	learn: 14.3864212	total: 1.63s	remaining: 916ms
64:	learn: 14.2800460	total: 1.66s	remaining: 893ms
65:	learn: 14.1017299	total: 1.69s	remaining: 868ms
66:	learn: 13.9655015	total: 1.71s	remaining: 842ms
67:	learn: 13.8065764	total: 1.73s	remaining: 815ms
68:	learn: 13.7473285	total: 1.75s	remaining: 788ms
69:	learn: 13.6967309	total: 1.78s	remaining: 761ms
70:	learn: 13.6253255	total: 1.8s	remaining: 735ms
71:	learn: 13.4974926	total: 1.82s	remaining: 708ms
72:	learn: 13.4142694	total: 1.84s	remaining: 682ms
73:	learn: 13.2902600	total: 1.88s	remaining: 659ms
74:	learn: 13.1816461	total: 1.9s	remaining: 634ms
75:	learn: 13.0809498	total: 1.92s	remaining: 608ms
76:	learn: 12.9772285	total: 1.95s	remaining: 582ms
77:	learn: 12.8413858	total: 1.97s	remaining: 556ms
78:	learn: 12.7615799	total: 1.99s	remaining: 530ms
79:	learn: 12.5808659	total: 2.02s	remaining: 504ms
80:	learn: 12.4938330	total: 2.04s	remaining: 479ms
81:	learn: 12.3745576	total: 2.07s	remaining: 454ms
82:	learn: 12.2474104	total: 2.09s	remaining: 429ms
83:	learn: 12.1582297	total: 2.12s	remaining: 403ms
84:	learn: 12.0528081	total: 2.14s	remaining: 377ms
85:	learn: 11.9483355	total: 2.16s	remaining: 352ms
86:	learn: 11.8683204	total: 2.18s	remaining: 326ms
87:	learn: 11.7680945	total: 2.2s	remaining: 301ms
88:	learn: 11.6635447	total: 2.23s	remaining: 275ms
89:	learn: 11.5775031	total: 2.25s	remaining: 250ms
90:	learn: 11.4860538	total: 2.27s	remaining: 225ms
91:	learn: 11.3584960	total: 2.3s	remaining: 200ms
92:	learn: 11.2180285	total: 2.33s	remaining: 175ms
93:	learn: 11.0996558	total: 2.35s	remaining: 150ms
94:	learn: 10.9688832	total: 2.37s	remaining: 125ms
95:	learn: 10.9205457	total: 2.4s	remaining: 99.9ms
96:	learn: 10.8462783	total: 2.42s	remaining: 74.9ms
97:	learn: 10.7481890	total: 2.44s	remaining: 49.9ms
98:	learn: 10.6396315	total: 2.47s	remaining: 24.9ms
99:	learn: 10.5895308	total: 2.49s	remaining: 0us
0:	learn: 46.2892189	total: 22.5ms	remaining: 2.23s
1:	learn: 44.9732744	total: 44.3ms	remaining: 2.17s
2:	learn: 43.8887345	total: 65.7ms	remaining: 2.13s
3:	learn: 42.6526320	total: 86.7ms	remaining: 2.08s
4:	learn: 41.4812505	total: 108ms	remaining: 2.06s
5:	learn: 40.4431224	total: 130ms	remaining: 2.03s
6:	learn: 39.2936749	total: 152ms	remaining: 2.02s
7:	learn: 38.1961652	total: 179ms	remaining: 2.05s
8:	learn: 37.2194841	total: 208ms	remaining: 2.1s
9:	learn: 36.2518666	total: 231ms	remaining: 2.08s
10:	learn: 35.4919224	total: 254ms	remaining: 2.06s
11:	learn: 34.6975877	total: 278ms	remaining: 2.04s
12:	learn: 33.7869362	total: 301ms	remaining: 2.01s
13:	learn: 33.0646033	total: 321ms	remaining: 1.97s
14:	learn: 32.1821772	total: 342ms	remaining: 1.94s
15:	learn: 31.4340749	total: 366ms	remaining: 1.92s
16:	learn: 30.6504198	total: 392ms	remaining: 1.91s
17:	learn: 30.0090260	total: 418ms	remaining: 1.9s
18:	learn: 29.4233143	total: 438ms	remaining: 1.87s
19:	learn: 28.7661957	total: 460ms	remaining: 1.84s
20:	learn: 28.1570594	total: 481ms	remaining: 1.81s
21:	learn: 27.6140124	total: 501ms	remaining: 1.78s
22:	learn: 27.0130709	total: 523ms	remaining: 1.75s
23:	learn: 26.2648081	total: 544ms	remaining: 1.72s
24:	learn: 25.7963649	total: 565ms	remaining: 1.7s
25:	learn: 25.2713860	total: 593ms	remaining: 1.69s
26:	learn: 24.8080692	total: 618ms	remaining: 1.67s
27:	learn: 24.3042862	total: 643ms	remaining: 1.65s
28:	learn: 23.9097237	total: 667ms	remaining: 1.63s
29:	learn: 23.4953174	total: 690ms	remaining: 1.61s
30:	learn: 23.0484452	total: 714ms	remaining: 1.59s
31:	learn: 22.7100962	total: 737ms	remaining: 1.57s
32:	learn: 22.1662267	total: 758ms	remaining: 1.54s
33:	learn: 21.7339884	total: 780ms	remaining: 1.51s
34:	learn: 21.3699422	total: 803ms	remaining: 1.49s
35:	learn: 21.0249329	total: 828ms	remaining: 1.47s
36:	learn: 20.6187923	total: 854ms	remaining: 1.45s
37:	learn: 20.2401981	total: 875ms	remaining: 1.43s
38:	learn: 19.9712328	total: 897ms	remaining: 1.4s
39:	learn: 19.6429610	total: 918ms	remaining: 1.38s
40:	learn: 19.3281556	total: 940ms	remaining: 1.35s
41:	learn: 19.0925924	total: 962ms	remaining: 1.33s
42:	learn: 18.8118712	total: 985ms	remaining: 1.31s
43:	learn: 18.5355748	total: 1.01s	remaining: 1.28s
44:	learn: 18.2783929	total: 1.03s	remaining: 1.26s
45:	learn: 17.9915490	total: 1.06s	remaining: 1.25s
46:	learn: 17.7323317	total: 1.09s	remaining: 1.23s
47:	learn: 17.4448307	total: 1.11s	remaining: 1.2s
48:	learn: 17.2419782	total: 1.13s	remaining: 1.18s
49:	learn: 16.9351352	total: 1.16s	remaining: 1.16s
50:	learn: 16.7728723	total: 1.18s	remaining: 1.13s
51:	learn: 16.5718087	total: 1.2s	remaining: 1.11s
52:	learn: 16.4047483	total: 1.22s	remaining: 1.08s
53:	learn: 16.2888950	total: 1.24s	remaining: 1.06s
54:	learn: 16.1353042	total: 1.26s	remaining: 1.03s
55:	learn: 15.9384012	total: 1.29s	remaining: 1.01s
56:	learn: 15.7488511	total: 1.31s	remaining: 991ms
57:	learn: 15.5682846	total: 1.33s	remaining: 965ms
58:	learn: 15.3488716	total: 1.35s	remaining: 940ms
59:	learn: 15.2291272	total: 1.37s	remaining: 916ms
60:	learn: 15.0582519	total: 1.4s	remaining: 893ms
61:	learn: 14.8478458	total: 1.42s	remaining: 869ms
62:	learn: 14.6663416	total: 1.44s	remaining: 845ms
63:	learn: 14.4830825	total: 1.46s	remaining: 822ms
64:	learn: 14.3300895	total: 1.48s	remaining: 799ms
65:	learn: 14.1168590	total: 1.51s	remaining: 780ms
66:	learn: 13.9783298	total: 1.54s	remaining: 757ms
67:	learn: 13.8132857	total: 1.56s	remaining: 734ms
68:	learn: 13.7050863	total: 1.58s	remaining: 711ms
69:	learn: 13.5742501	total: 1.61s	remaining: 688ms
70:	learn: 13.4851362	total: 1.63s	remaining: 664ms
71:	learn: 13.3300610	total: 1.65s	remaining: 640ms
72:	learn: 13.2223060	total: 1.67s	remaining: 617ms
73:	learn: 13.0706731	total: 1.69s	remaining: 593ms
74:	learn: 12.9178099	total: 1.72s	remaining: 573ms
75:	learn: 12.7954645	total: 1.74s	remaining: 550ms
76:	learn: 12.7133688	total: 1.76s	remaining: 527ms
77:	learn: 12.5745537	total: 1.78s	remaining: 503ms
78:	learn: 12.4765302	total: 1.8s	remaining: 479ms
79:	learn: 12.3609145	total: 1.82s	remaining: 456ms
80:	learn: 12.2437759	total: 1.84s	remaining: 433ms
81:	learn: 12.1583763	total: 1.86s	remaining: 409ms
82:	learn: 12.0202500	total: 1.89s	remaining: 386ms
83:	learn: 11.9125166	total: 1.91s	remaining: 364ms
84:	learn: 11.8100729	total: 1.94s	remaining: 342ms
85:	learn: 11.7509521	total: 1.96s	remaining: 319ms
86:	learn: 11.6448436	total: 1.98s	remaining: 296ms
87:	learn: 11.5550170	total: 2s	remaining: 274ms
88:	learn: 11.4624708	total: 2.03s	remaining: 251ms
89:	learn: 11.3547761	total: 2.05s	remaining: 228ms
90:	learn: 11.2513910	total: 2.07s	remaining: 205ms
91:	learn: 11.1414483	total: 2.09s	remaining: 182ms
92:	learn: 11.0742264	total: 2.11s	remaining: 159ms
93:	learn: 10.9721772	total: 2.14s	remaining: 137ms
94:	learn: 10.9118054	total: 2.16s	remaining: 114ms
95:	learn: 10.8465290	total: 2.18s	remaining: 91ms
96:	learn: 10.7451745	total: 2.2s	remaining: 68.1ms
97:	learn: 10.6173565	total: 2.22s	remaining: 45.4ms
98:	learn: 10.5562158	total: 2.25s	remaining: 22.7ms
99:	learn: 10.4564960	total: 2.27s	remaining: 0us
0:	learn: 27.6506730	total: 7.71ms	remaining: 763ms
1:	learn: 27.1638793	total: 13.9ms	remaining: 679ms
2:	learn: 26.8000665	total: 20.1ms	remaining: 649ms
3:	learn: 26.4256132	total: 25.2ms	remaining: 606ms
4:	learn: 26.0088351	total: 30.8ms	remaining: 585ms
5:	learn: 25.7558298	total: 37.5ms	remaining: 588ms
6:	learn: 25.3380711	total: 43ms	remaining: 571ms
7:	learn: 25.0571611	total: 48.4ms	remaining: 557ms
8:	learn: 24.6790148	total: 53.7ms	remaining: 543ms
9:	learn: 24.3600941	total: 59.4ms	remaining: 535ms
10:	learn: 24.1105667	total: 64.8ms	remaining: 524ms
11:	learn: 23.7736542	total: 70ms	remaining: 513ms
12:	learn: 23.5824429	total: 75.4ms	remaining: 504ms
13:	learn: 23.2658303	total: 80.7ms	remaining: 495ms
14:	learn: 23.0061886	total: 85.8ms	remaining: 486ms
15:	learn: 22.8060389	total: 91.2ms	remaining: 479ms
16:	learn: 22.5899735	total: 96.7ms	remaining: 472ms
17:	learn: 22.3625048	total: 102ms	remaining: 464ms
18:	learn: 22.0706477	total: 107ms	remaining: 458ms
19:	learn: 21.8739394	total: 112ms	remaining: 449ms
20:	learn: 21.6143650	total: 117ms	remaining: 442ms
21:	learn: 21.4571623	total: 123ms	remaining: 436ms
22:	learn: 21.2395769	total: 128ms	remaining: 429ms
23:	learn: 20.9801795	total: 133ms	remaining: 420ms
24:	learn: 20.8036808	total: 137ms	remaining: 411ms
25:	learn: 20.6387539	total: 141ms	remaining: 402ms
26:	learn: 20.4401427	total: 146ms	remaining: 395ms
27:	learn: 20.2879575	total: 151ms	remaining: 387ms
28:	learn: 20.0538664	total: 155ms	remaining: 380ms
29:	learn: 19.8363102	total: 160ms	remaining: 373ms
30:	learn: 19.7015446	total: 164ms	remaining: 366ms
31:	learn: 19.5483114	total: 169ms	remaining: 358ms
32:	learn: 19.4163053	total: 173ms	remaining: 351ms
33:	learn: 19.2880625	total: 177ms	remaining: 344ms
34:	learn: 19.1303389	total: 182ms	remaining: 338ms
35:	learn: 18.9237448	total: 187ms	remaining: 332ms
36:	learn: 18.8142925	total: 191ms	remaining: 326ms
37:	learn: 18.6994696	total: 196ms	remaining: 319ms
38:	learn: 18.5629211	total: 200ms	remaining: 313ms
39:	learn: 18.4600917	total: 204ms	remaining: 307ms
40:	learn: 18.3567139	total: 209ms	remaining: 301ms
41:	learn: 18.2120527	total: 213ms	remaining: 295ms
42:	learn: 18.0688062	total: 218ms	remaining: 289ms
43:	learn: 17.9250181	total: 223ms	remaining: 283ms
44:	learn: 17.8399138	total: 227ms	remaining: 278ms
45:	learn: 17.6720713	total: 232ms	remaining: 273ms
46:	learn: 17.5273091	total: 238ms	remaining: 268ms
47:	learn: 17.4232814	total: 242ms	remaining: 263ms
48:	learn: 17.2957579	total: 247ms	remaining: 257ms
49:	learn: 17.1892874	total: 253ms	remaining: 253ms
50:	learn: 17.0490355	total: 271ms	remaining: 260ms
51:	learn: 16.9666450	total: 277ms	remaining: 256ms
52:	learn: 16.8600056	total: 283ms	remaining: 251ms
53:	learn: 16.7542588	total: 288ms	remaining: 246ms
54:	learn: 16.6316077	total: 293ms	remaining: 240ms
55:	learn: 16.5588112	total: 297ms	remaining: 234ms
56:	learn: 16.5010186	total: 302ms	remaining: 228ms
57:	learn: 16.4081540	total: 307ms	remaining: 222ms
58:	learn: 16.3040451	total: 312ms	remaining: 217ms
59:	learn: 16.1890564	total: 316ms	remaining: 211ms
60:	learn: 16.0977103	total: 321ms	remaining: 205ms
61:	learn: 15.9627607	total: 326ms	remaining: 200ms
62:	learn: 15.9022248	total: 331ms	remaining: 194ms
63:	learn: 15.8151881	total: 336ms	remaining: 189ms
64:	learn: 15.7353125	total: 340ms	remaining: 183ms
65:	learn: 15.6312897	total: 345ms	remaining: 178ms
66:	learn: 15.5330927	total: 350ms	remaining: 172ms
67:	learn: 15.4698681	total: 354ms	remaining: 167ms
68:	learn: 15.4108571	total: 359ms	remaining: 161ms
69:	learn: 15.3492945	total: 363ms	remaining: 156ms
70:	learn: 15.3036540	total: 368ms	remaining: 150ms
71:	learn: 15.2390833	total: 373ms	remaining: 145ms
72:	learn: 15.1556327	total: 378ms	remaining: 140ms
73:	learn: 15.1016315	total: 382ms	remaining: 134ms
74:	learn: 15.0287076	total: 387ms	remaining: 129ms
75:	learn: 14.9530572	total: 391ms	remaining: 124ms
76:	learn: 14.8965517	total: 396ms	remaining: 118ms
77:	learn: 14.8125426	total: 401ms	remaining: 113ms
78:	learn: 14.7435359	total: 405ms	remaining: 108ms
79:	learn: 14.6963163	total: 410ms	remaining: 103ms
80:	learn: 14.6200060	total: 415ms	remaining: 97.3ms
81:	learn: 14.5707760	total: 419ms	remaining: 92ms
82:	learn: 14.5053651	total: 424ms	remaining: 86.9ms
83:	learn: 14.4115458	total: 430ms	remaining: 81.8ms
84:	learn: 14.3117159	total: 435ms	remaining: 76.8ms
85:	learn: 14.2511326	total: 440ms	remaining: 71.6ms
86:	learn: 14.1372486	total: 445ms	remaining: 66.5ms
87:	learn: 14.0992301	total: 450ms	remaining: 61.4ms
88:	learn: 14.0228331	total: 459ms	remaining: 56.8ms
89:	learn: 13.9249836	total: 467ms	remaining: 51.9ms
90:	learn: 13.8679364	total: 477ms	remaining: 47.2ms
91:	learn: 13.8405578	total: 485ms	remaining: 42.2ms
92:	learn: 13.7711325	total: 490ms	remaining: 36.9ms
93:	learn: 13.7357019	total: 512ms	remaining: 32.7ms
94:	learn: 13.6735271	total: 518ms	remaining: 27.2ms
95:	learn: 13.5682393	total: 524ms	remaining: 21.8ms
96:	learn: 13.5342610	total: 529ms	remaining: 16.4ms
97:	learn: 13.4710034	total: 534ms	remaining: 10.9ms
98:	learn: 13.4022402	total: 539ms	remaining: 5.45ms
99:	learn: 13.3351238	total: 545ms	remaining: 0us
0:	learn: 42.9181702	total: 5.11ms	remaining: 506ms
1:	learn: 42.0286736	total: 9.46ms	remaining: 463ms
2:	learn: 41.2764568	total: 14ms	remaining: 454ms
3:	learn: 40.4721918	total: 18.6ms	remaining: 445ms
4:	learn: 39.8518928	total: 23ms	remaining: 437ms
5:	learn: 39.2645479	total: 27.9ms	remaining: 438ms
6:	learn: 38.4453704	total: 32.5ms	remaining: 432ms
7:	learn: 37.7122059	total: 37.4ms	remaining: 430ms
8:	learn: 36.9185796	total: 41.5ms	remaining: 420ms
9:	learn: 36.1668427	total: 47ms	remaining: 423ms
10:	learn: 35.5639029	total: 51.9ms	remaining: 420ms
11:	learn: 34.7724193	total: 57.2ms	remaining: 420ms
12:	learn: 34.3053433	total: 62.4ms	remaining: 417ms
13:	learn: 33.6561327	total: 63.7ms	remaining: 391ms
14:	learn: 33.0134042	total: 68.5ms	remaining: 388ms
15:	learn: 32.4483300	total: 73.5ms	remaining: 386ms
16:	learn: 31.8581144	total: 81ms	remaining: 396ms
17:	learn: 31.2858301	total: 89.8ms	remaining: 409ms
18:	learn: 30.8483018	total: 98.4ms	remaining: 419ms
19:	learn: 30.4174622	total: 104ms	remaining: 416ms
20:	learn: 29.8994411	total: 110ms	remaining: 415ms
21:	learn: 29.5045355	total: 116ms	remaining: 410ms
22:	learn: 28.9923519	total: 120ms	remaining: 401ms
23:	learn: 28.4255717	total: 125ms	remaining: 395ms
24:	learn: 28.0283139	total: 130ms	remaining: 389ms
25:	learn: 27.7434814	total: 134ms	remaining: 382ms
26:	learn: 27.2770731	total: 139ms	remaining: 376ms
27:	learn: 26.8928270	total: 144ms	remaining: 370ms
28:	learn: 26.4282671	total: 148ms	remaining: 362ms
29:	learn: 26.0272764	total: 153ms	remaining: 356ms
30:	learn: 25.7579312	total: 157ms	remaining: 351ms
31:	learn: 25.4542434	total: 162ms	remaining: 344ms
32:	learn: 25.1232564	total: 167ms	remaining: 339ms
33:	learn: 24.8110795	total: 172ms	remaining: 333ms
34:	learn: 24.5077579	total: 176ms	remaining: 328ms
35:	learn: 24.1909000	total: 181ms	remaining: 321ms
36:	learn: 23.8719468	total: 185ms	remaining: 316ms
37:	learn: 23.5764366	total: 187ms	remaining: 304ms
38:	learn: 23.3468086	total: 191ms	remaining: 299ms
39:	learn: 23.0908771	total: 196ms	remaining: 293ms
40:	learn: 22.8580876	total: 200ms	remaining: 288ms
41:	learn: 22.6060825	total: 205ms	remaining: 283ms
42:	learn: 22.4125407	total: 210ms	remaining: 278ms
43:	learn: 22.1990617	total: 214ms	remaining: 273ms
44:	learn: 21.9716164	total: 219ms	remaining: 268ms
45:	learn: 21.8360935	total: 224ms	remaining: 262ms
46:	learn: 21.6169256	total: 228ms	remaining: 257ms
47:	learn: 21.4620612	total: 233ms	remaining: 252ms
48:	learn: 21.2894194	total: 237ms	remaining: 247ms
49:	learn: 21.1066266	total: 242ms	remaining: 242ms
50:	learn: 20.9484898	total: 248ms	remaining: 238ms
51:	learn: 20.7195338	total: 253ms	remaining: 233ms
52:	learn: 20.4899740	total: 258ms	remaining: 229ms
53:	learn: 20.3356583	total: 263ms	remaining: 224ms
54:	learn: 20.0754393	total: 268ms	remaining: 219ms
55:	learn: 19.9199159	total: 273ms	remaining: 215ms
56:	learn: 19.7761128	total: 282ms	remaining: 213ms
57:	learn: 19.6533060	total: 290ms	remaining: 210ms
58:	learn: 19.5113942	total: 298ms	remaining: 207ms
59:	learn: 19.3985022	total: 306ms	remaining: 204ms
60:	learn: 19.2683443	total: 312ms	remaining: 199ms
61:	learn: 19.1460824	total: 317ms	remaining: 194ms
62:	learn: 19.0042655	total: 323ms	remaining: 189ms
63:	learn: 18.8720873	total: 328ms	remaining: 184ms
64:	learn: 18.7183888	total: 333ms	remaining: 179ms
65:	learn: 18.5472360	total: 338ms	remaining: 174ms
66:	learn: 18.3976642	total: 344ms	remaining: 170ms
67:	learn: 18.2282851	total: 350ms	remaining: 164ms
68:	learn: 18.1469157	total: 355ms	remaining: 160ms
69:	learn: 18.0649494	total: 360ms	remaining: 154ms
70:	learn: 17.9485405	total: 366ms	remaining: 149ms
71:	learn: 17.8460261	total: 372ms	remaining: 145ms
72:	learn: 17.7679843	total: 377ms	remaining: 140ms
73:	learn: 17.5989290	total: 382ms	remaining: 134ms
74:	learn: 17.4381322	total: 386ms	remaining: 129ms
75:	learn: 17.3370886	total: 391ms	remaining: 123ms
76:	learn: 17.2675308	total: 395ms	remaining: 118ms
77:	learn: 17.1946430	total: 399ms	remaining: 113ms
78:	learn: 17.0923725	total: 404ms	remaining: 107ms
79:	learn: 17.0537265	total: 408ms	remaining: 102ms
80:	learn: 16.9456831	total: 413ms	remaining: 96.8ms
81:	learn: 16.8457353	total: 417ms	remaining: 91.6ms
82:	learn: 16.7469310	total: 422ms	remaining: 86.4ms
83:	learn: 16.6679953	total: 427ms	remaining: 81.3ms
84:	learn: 16.6274189	total: 431ms	remaining: 76.1ms
85:	learn: 16.5516530	total: 436ms	remaining: 70.9ms
86:	learn: 16.4886066	total: 440ms	remaining: 65.7ms
87:	learn: 16.3947859	total: 445ms	remaining: 60.7ms
88:	learn: 16.3406495	total: 450ms	remaining: 55.6ms
89:	learn: 16.3019195	total: 455ms	remaining: 50.5ms
90:	learn: 16.1860681	total: 459ms	remaining: 45.4ms
91:	learn: 16.1282812	total: 465ms	remaining: 40.4ms
92:	learn: 16.0303652	total: 470ms	remaining: 35.4ms
93:	learn: 15.9561692	total: 480ms	remaining: 30.6ms
94:	learn: 15.8733994	total: 488ms	remaining: 25.7ms
95:	learn: 15.8108833	total: 494ms	remaining: 20.6ms
96:	learn: 15.7606004	total: 500ms	remaining: 15.5ms
97:	learn: 15.6984664	total: 506ms	remaining: 10.3ms
98:	learn: 15.6223632	total: 510ms	remaining: 5.15ms
99:	learn: 15.5671136	total: 515ms	remaining: 0us
0:	learn: 46.4788614	total: 1.91ms	remaining: 189ms
1:	learn: 45.7608372	total: 6.07ms	remaining: 297ms
2:	learn: 44.8825004	total: 10.5ms	remaining: 338ms
3:	learn: 44.0362738	total: 14.4ms	remaining: 347ms
4:	learn: 43.2086374	total: 18.7ms	remaining: 355ms
5:	learn: 42.5835773	total: 22.8ms	remaining: 358ms
6:	learn: 41.9673269	total: 27.3ms	remaining: 363ms
7:	learn: 41.4748717	total: 31.6ms	remaining: 363ms
8:	learn: 40.7129183	total: 35.9ms	remaining: 363ms
9:	learn: 39.8900884	total: 40.3ms	remaining: 362ms
10:	learn: 39.4142193	total: 44.6ms	remaining: 361ms
11:	learn: 38.8645613	total: 48.7ms	remaining: 357ms
12:	learn: 38.2394731	total: 52.9ms	remaining: 354ms
13:	learn: 37.6834515	total: 57.6ms	remaining: 354ms
14:	learn: 37.0673507	total: 62.4ms	remaining: 354ms
15:	learn: 36.4728340	total: 67.4ms	remaining: 354ms
16:	learn: 36.0489086	total: 72.3ms	remaining: 353ms
17:	learn: 35.4744141	total: 76.9ms	remaining: 350ms
18:	learn: 35.0106021	total: 81.8ms	remaining: 349ms
19:	learn: 34.5586053	total: 86.9ms	remaining: 348ms
20:	learn: 34.1308223	total: 91.8ms	remaining: 345ms
21:	learn: 33.7701450	total: 96.5ms	remaining: 342ms
22:	learn: 33.4425444	total: 101ms	remaining: 340ms
23:	learn: 33.0296412	total: 106ms	remaining: 336ms
24:	learn: 32.6359803	total: 111ms	remaining: 332ms
25:	learn: 32.1846182	total: 120ms	remaining: 340ms
26:	learn: 31.7620230	total: 127ms	remaining: 343ms
27:	learn: 31.4669337	total: 137ms	remaining: 352ms
28:	learn: 31.0792062	total: 144ms	remaining: 353ms
29:	learn: 30.7970537	total: 150ms	remaining: 350ms
30:	learn: 30.4952215	total: 155ms	remaining: 345ms
31:	learn: 30.2845344	total: 160ms	remaining: 341ms
32:	learn: 29.9592732	total: 166ms	remaining: 337ms
33:	learn: 29.6798596	total: 171ms	remaining: 332ms
34:	learn: 29.3368905	total: 177ms	remaining: 328ms
35:	learn: 29.0621238	total: 182ms	remaining: 323ms
36:	learn: 28.6445375	total: 187ms	remaining: 319ms
37:	learn: 28.2418096	total: 192ms	remaining: 314ms
38:	learn: 27.9495390	total: 197ms	remaining: 308ms
39:	learn: 27.6958160	total: 202ms	remaining: 304ms
40:	learn: 27.4811189	total: 208ms	remaining: 300ms
41:	learn: 27.1494420	total: 213ms	remaining: 295ms
42:	learn: 26.8388873	total: 218ms	remaining: 289ms
43:	learn: 26.5721300	total: 222ms	remaining: 283ms
44:	learn: 26.3384738	total: 226ms	remaining: 277ms
45:	learn: 26.1894781	total: 231ms	remaining: 271ms
46:	learn: 25.9580198	total: 235ms	remaining: 265ms
47:	learn: 25.7897985	total: 240ms	remaining: 259ms
48:	learn: 25.6000271	total: 244ms	remaining: 254ms
49:	learn: 25.4130873	total: 248ms	remaining: 248ms
50:	learn: 25.1699061	total: 252ms	remaining: 243ms
51:	learn: 24.9324449	total: 257ms	remaining: 237ms
52:	learn: 24.7729152	total: 261ms	remaining: 232ms
53:	learn: 24.5026563	total: 265ms	remaining: 226ms
54:	learn: 24.2332627	total: 270ms	remaining: 221ms
55:	learn: 23.9611984	total: 274ms	remaining: 216ms
56:	learn: 23.7862603	total: 279ms	remaining: 210ms
57:	learn: 23.6318154	total: 283ms	remaining: 205ms
58:	learn: 23.4443306	total: 288ms	remaining: 200ms
59:	learn: 23.2581425	total: 293ms	remaining: 195ms
60:	learn: 23.0549901	total: 298ms	remaining: 190ms
61:	learn: 22.8666218	total: 302ms	remaining: 185ms
62:	learn: 22.6956739	total: 307ms	remaining: 180ms
63:	learn: 22.5068544	total: 312ms	remaining: 175ms
64:	learn: 22.1859147	total: 320ms	remaining: 172ms
65:	learn: 22.0462043	total: 327ms	remaining: 169ms
66:	learn: 21.9329563	total: 335ms	remaining: 165ms
67:	learn: 21.8029736	total: 340ms	remaining: 160ms
68:	learn: 21.6861091	total: 346ms	remaining: 156ms
69:	learn: 21.4838140	total: 351ms	remaining: 150ms
70:	learn: 21.3548921	total: 355ms	remaining: 145ms
71:	learn: 21.2244517	total: 359ms	remaining: 140ms
72:	learn: 21.0702958	total: 363ms	remaining: 134ms
73:	learn: 20.9224662	total: 368ms	remaining: 129ms
74:	learn: 20.8150357	total: 372ms	remaining: 124ms
75:	learn: 20.6962739	total: 376ms	remaining: 119ms
76:	learn: 20.5809258	total: 381ms	remaining: 114ms
77:	learn: 20.4735470	total: 385ms	remaining: 109ms
78:	learn: 20.3778167	total: 390ms	remaining: 104ms
79:	learn: 20.2211268	total: 394ms	remaining: 98.6ms
80:	learn: 20.1478678	total: 398ms	remaining: 93.5ms
81:	learn: 20.1032967	total: 403ms	remaining: 88.4ms
82:	learn: 19.9236300	total: 407ms	remaining: 83.4ms
83:	learn: 19.8151745	total: 411ms	remaining: 78.4ms
84:	learn: 19.7099856	total: 416ms	remaining: 73.3ms
85:	learn: 19.6264833	total: 420ms	remaining: 68.3ms
86:	learn: 19.4916361	total: 424ms	remaining: 63.4ms
87:	learn: 19.4050529	total: 429ms	remaining: 58.5ms
88:	learn: 19.2547065	total: 433ms	remaining: 53.5ms
89:	learn: 19.1610225	total: 437ms	remaining: 48.5ms
90:	learn: 19.0898958	total: 441ms	remaining: 43.6ms
91:	learn: 19.0489664	total: 446ms	remaining: 38.8ms
92:	learn: 18.9206240	total: 450ms	remaining: 33.9ms
93:	learn: 18.8636239	total: 454ms	remaining: 29ms
94:	learn: 18.8126187	total: 458ms	remaining: 24.1ms
95:	learn: 18.7579275	total: 462ms	remaining: 19.3ms
96:	learn: 18.6382753	total: 467ms	remaining: 14.4ms
97:	learn: 18.5397334	total: 471ms	remaining: 9.61ms
98:	learn: 18.4375951	total: 475ms	remaining: 4.8ms
99:	learn: 18.4033755	total: 480ms	remaining: 0us
0:	learn: 46.1068821	total: 4.97ms	remaining: 492ms
1:	learn: 45.3970261	total: 11.1ms	remaining: 543ms
2:	learn: 44.8732696	total: 16.9ms	remaining: 546ms
3:	learn: 44.1290184	total: 22.4ms	remaining: 538ms
4:	learn: 43.3290271	total: 28ms	remaining: 532ms
5:	learn: 42.7069090	total: 33.5ms	remaining: 525ms
6:	learn: 42.0572971	total: 39ms	remaining: 519ms
7:	learn: 41.4797924	total: 44.1ms	remaining: 507ms
8:	learn: 41.0023122	total: 49.6ms	remaining: 502ms
9:	learn: 40.5330570	total: 55.1ms	remaining: 496ms
10:	learn: 39.9726545	total: 59.9ms	remaining: 485ms
11:	learn: 39.3044053	total: 65.3ms	remaining: 479ms
12:	learn: 38.8169735	total: 71.3ms	remaining: 477ms
13:	learn: 38.2458761	total: 75.9ms	remaining: 466ms
14:	learn: 37.6280321	total: 80.1ms	remaining: 454ms
15:	learn: 37.0800610	total: 84.5ms	remaining: 443ms
16:	learn: 36.5489363	total: 88.8ms	remaining: 434ms
17:	learn: 36.0981456	total: 93.3ms	remaining: 425ms
18:	learn: 35.6956274	total: 97.5ms	remaining: 416ms
19:	learn: 35.1471999	total: 102ms	remaining: 407ms
20:	learn: 34.6235408	total: 106ms	remaining: 399ms
21:	learn: 34.1987018	total: 110ms	remaining: 391ms
22:	learn: 33.8985062	total: 115ms	remaining: 384ms
23:	learn: 33.3869017	total: 119ms	remaining: 376ms
24:	learn: 32.9100550	total: 123ms	remaining: 370ms
25:	learn: 32.4156208	total: 128ms	remaining: 363ms
26:	learn: 31.9320493	total: 132ms	remaining: 356ms
27:	learn: 31.5711468	total: 136ms	remaining: 350ms
28:	learn: 31.2404433	total: 141ms	remaining: 344ms
29:	learn: 30.8807946	total: 145ms	remaining: 338ms
30:	learn: 30.5948438	total: 149ms	remaining: 332ms
31:	learn: 30.3885560	total: 154ms	remaining: 327ms
32:	learn: 30.0625101	total: 159ms	remaining: 323ms
33:	learn: 29.9113114	total: 166ms	remaining: 322ms
34:	learn: 29.6983470	total: 173ms	remaining: 320ms
35:	learn: 29.4775849	total: 180ms	remaining: 320ms
36:	learn: 29.0538055	total: 185ms	remaining: 315ms
37:	learn: 28.6792318	total: 190ms	remaining: 311ms
38:	learn: 28.4231383	total: 196ms	remaining: 307ms
39:	learn: 28.1078565	total: 201ms	remaining: 302ms
40:	learn: 27.9079179	total: 205ms	remaining: 295ms
41:	learn: 27.6721506	total: 210ms	remaining: 290ms
42:	learn: 27.4228033	total: 214ms	remaining: 283ms
43:	learn: 27.1740534	total: 219ms	remaining: 278ms
44:	learn: 26.8584071	total: 223ms	remaining: 273ms
45:	learn: 26.6902083	total: 228ms	remaining: 268ms
46:	learn: 26.4855335	total: 233ms	remaining: 262ms
47:	learn: 26.2730822	total: 237ms	remaining: 257ms
48:	learn: 26.1058689	total: 242ms	remaining: 252ms
49:	learn: 25.8587318	total: 247ms	remaining: 247ms
50:	learn: 25.7558005	total: 251ms	remaining: 241ms
51:	learn: 25.5846925	total: 256ms	remaining: 236ms
52:	learn: 25.4249887	total: 260ms	remaining: 231ms
53:	learn: 25.1911054	total: 265ms	remaining: 225ms
54:	learn: 25.0544755	total: 269ms	remaining: 220ms
55:	learn: 24.8874006	total: 274ms	remaining: 215ms
56:	learn: 24.7736279	total: 289ms	remaining: 218ms
57:	learn: 24.6156255	total: 293ms	remaining: 212ms
58:	learn: 24.3962421	total: 298ms	remaining: 207ms
59:	learn: 24.2685129	total: 302ms	remaining: 201ms
60:	learn: 24.1874096	total: 307ms	remaining: 196ms
61:	learn: 24.0394287	total: 311ms	remaining: 191ms
62:	learn: 23.9281768	total: 316ms	remaining: 185ms
63:	learn: 23.7423900	total: 320ms	remaining: 180ms
64:	learn: 23.6015209	total: 325ms	remaining: 175ms
65:	learn: 23.4677943	total: 329ms	remaining: 170ms
66:	learn: 23.3215256	total: 334ms	remaining: 164ms
67:	learn: 23.1869360	total: 338ms	remaining: 159ms
68:	learn: 22.9691180	total: 343ms	remaining: 154ms
69:	learn: 22.7531657	total: 347ms	remaining: 149ms
70:	learn: 22.6133477	total: 352ms	remaining: 144ms
71:	learn: 22.3452758	total: 357ms	remaining: 139ms
72:	learn: 22.2065350	total: 361ms	remaining: 134ms
73:	learn: 22.1071155	total: 366ms	remaining: 129ms
74:	learn: 21.9740686	total: 371ms	remaining: 124ms
75:	learn: 21.8892033	total: 375ms	remaining: 119ms
76:	learn: 21.8267882	total: 380ms	remaining: 114ms
77:	learn: 21.7423479	total: 390ms	remaining: 110ms
78:	learn: 21.6242075	total: 399ms	remaining: 106ms
79:	learn: 21.5016910	total: 413ms	remaining: 103ms
80:	learn: 21.4806623	total: 414ms	remaining: 97.1ms
81:	learn: 21.3166637	total: 420ms	remaining: 92.1ms
82:	learn: 21.2222534	total: 425ms	remaining: 87ms
83:	learn: 21.1535708	total: 430ms	remaining: 81.9ms
84:	learn: 21.0858902	total: 435ms	remaining: 76.8ms
85:	learn: 20.9206003	total: 440ms	remaining: 71.7ms
86:	learn: 20.8674695	total: 445ms	remaining: 66.5ms
87:	learn: 20.8089875	total: 450ms	remaining: 61.4ms
88:	learn: 20.7085401	total: 456ms	remaining: 56.3ms
89:	learn: 20.5513468	total: 461ms	remaining: 51.2ms
90:	learn: 20.4586742	total: 466ms	remaining: 46ms
91:	learn: 20.3932149	total: 471ms	remaining: 40.9ms
92:	learn: 20.3000895	total: 476ms	remaining: 35.8ms
93:	learn: 20.2254009	total: 481ms	remaining: 30.7ms
94:	learn: 20.1750050	total: 485ms	remaining: 25.5ms
95:	learn: 20.0715579	total: 490ms	remaining: 20.4ms
96:	learn: 19.9920082	total: 494ms	remaining: 15.3ms
97:	learn: 19.9664401	total: 500ms	remaining: 10.2ms
98:	learn: 19.8689673	total: 505ms	remaining: 5.1ms
99:	learn: 19.7537356	total: 510ms	remaining: 0us
0:	learn: 46.8832143	total: 4.81ms	remaining: 476ms
1:	learn: 45.8700349	total: 9.56ms	remaining: 469ms
2:	learn: 45.0546867	total: 14.6ms	remaining: 471ms
3:	learn: 44.2829439	total: 19.3ms	remaining: 462ms
4:	learn: 43.4609042	total: 23.8ms	remaining: 452ms
5:	learn: 42.6754991	total: 28.2ms	remaining: 442ms
6:	learn: 41.9234935	total: 32.9ms	remaining: 437ms
7:	learn: 41.3987518	total: 37.7ms	remaining: 434ms
8:	learn: 40.6625066	total: 45.9ms	remaining: 464ms
9:	learn: 40.0029561	total: 53.4ms	remaining: 481ms
10:	learn: 39.3897033	total: 60.7ms	remaining: 491ms
11:	learn: 38.7741453	total: 65.6ms	remaining: 481ms
12:	learn: 38.1201100	total: 71.3ms	remaining: 477ms
13:	learn: 37.5129454	total: 75.5ms	remaining: 464ms
14:	learn: 37.2062206	total: 79.7ms	remaining: 451ms
15:	learn: 36.6831741	total: 84.2ms	remaining: 442ms
16:	learn: 36.2902788	total: 88.5ms	remaining: 432ms
17:	learn: 35.7639930	total: 92.8ms	remaining: 423ms
18:	learn: 35.2580953	total: 97ms	remaining: 414ms
19:	learn: 34.7809739	total: 102ms	remaining: 407ms
20:	learn: 34.1330433	total: 106ms	remaining: 399ms
21:	learn: 33.7302219	total: 110ms	remaining: 391ms
22:	learn: 33.3502495	total: 114ms	remaining: 383ms
23:	learn: 33.0067804	total: 119ms	remaining: 375ms
24:	learn: 32.6897855	total: 123ms	remaining: 369ms
25:	learn: 32.4361119	total: 127ms	remaining: 362ms
26:	learn: 32.1278981	total: 131ms	remaining: 355ms
27:	learn: 31.7863721	total: 136ms	remaining: 349ms
28:	learn: 31.4791450	total: 140ms	remaining: 343ms
29:	learn: 31.1760161	total: 144ms	remaining: 337ms
30:	learn: 30.9238888	total: 149ms	remaining: 331ms
31:	learn: 30.5500905	total: 153ms	remaining: 326ms
32:	learn: 30.3078126	total: 158ms	remaining: 320ms
33:	learn: 30.0480921	total: 162ms	remaining: 314ms
34:	learn: 29.8623884	total: 166ms	remaining: 309ms
35:	learn: 29.5991038	total: 170ms	remaining: 303ms
36:	learn: 29.4061161	total: 175ms	remaining: 297ms
37:	learn: 29.0269515	total: 179ms	remaining: 291ms
38:	learn: 28.8224959	total: 183ms	remaining: 286ms
39:	learn: 28.6417843	total: 187ms	remaining: 280ms
40:	learn: 28.3633368	total: 192ms	remaining: 276ms
41:	learn: 28.0200246	total: 196ms	remaining: 270ms
42:	learn: 27.7221254	total: 200ms	remaining: 265ms
43:	learn: 27.5105818	total: 204ms	remaining: 260ms
44:	learn: 27.3551010	total: 209ms	remaining: 255ms
45:	learn: 27.0787522	total: 213ms	remaining: 250ms
46:	learn: 26.8726317	total: 217ms	remaining: 245ms
47:	learn: 26.8003277	total: 222ms	remaining: 240ms
48:	learn: 26.5493785	total: 227ms	remaining: 236ms
49:	learn: 26.3699550	total: 231ms	remaining: 231ms
50:	learn: 26.1519631	total: 236ms	remaining: 227ms
51:	learn: 25.9277325	total: 241ms	remaining: 223ms
52:	learn: 25.7286035	total: 246ms	remaining: 218ms
53:	learn: 25.4999193	total: 251ms	remaining: 213ms
54:	learn: 25.3434703	total: 260ms	remaining: 213ms
55:	learn: 25.1497545	total: 268ms	remaining: 211ms
56:	learn: 24.9498143	total: 277ms	remaining: 209ms
57:	learn: 24.6509390	total: 284ms	remaining: 206ms
58:	learn: 24.5576144	total: 289ms	remaining: 201ms
59:	learn: 24.4265144	total: 295ms	remaining: 196ms
60:	learn: 24.3100706	total: 300ms	remaining: 192ms
61:	learn: 24.1727952	total: 305ms	remaining: 187ms
62:	learn: 24.0478558	total: 310ms	remaining: 182ms
63:	learn: 23.9124577	total: 316ms	remaining: 178ms
64:	learn: 23.7703718	total: 321ms	remaining: 173ms
65:	learn: 23.5975027	total: 327ms	remaining: 168ms
66:	learn: 23.4318077	total: 332ms	remaining: 164ms
67:	learn: 23.3099691	total: 338ms	remaining: 159ms
68:	learn: 23.1947982	total: 342ms	remaining: 154ms
69:	learn: 23.0260174	total: 348ms	remaining: 149ms
70:	learn: 22.8523100	total: 354ms	remaining: 144ms
71:	learn: 22.8028534	total: 358ms	remaining: 139ms
72:	learn: 22.6880658	total: 362ms	remaining: 134ms
73:	learn: 22.5956809	total: 367ms	remaining: 129ms
74:	learn: 22.4692932	total: 371ms	remaining: 124ms
75:	learn: 22.2863504	total: 375ms	remaining: 119ms
76:	learn: 22.1911237	total: 380ms	remaining: 114ms
77:	learn: 22.1098391	total: 385ms	remaining: 109ms
78:	learn: 22.0182738	total: 389ms	remaining: 103ms
79:	learn: 21.9306746	total: 394ms	remaining: 98.4ms
80:	learn: 21.7508233	total: 398ms	remaining: 93.4ms
81:	learn: 21.7108446	total: 402ms	remaining: 88.3ms
82:	learn: 21.5931852	total: 406ms	remaining: 83.2ms
83:	learn: 21.4480361	total: 411ms	remaining: 78.2ms
84:	learn: 21.3092119	total: 415ms	remaining: 73.2ms
85:	learn: 21.2605557	total: 419ms	remaining: 68.3ms
86:	learn: 21.1123597	total: 424ms	remaining: 63.3ms
87:	learn: 21.0115642	total: 429ms	remaining: 58.5ms
88:	learn: 20.9389040	total: 433ms	remaining: 53.6ms
89:	learn: 20.8300300	total: 438ms	remaining: 48.7ms
90:	learn: 20.7159733	total: 443ms	remaining: 43.8ms
91:	learn: 20.6282090	total: 447ms	remaining: 38.9ms
92:	learn: 20.5164529	total: 456ms	remaining: 34.4ms
93:	learn: 20.4692032	total: 464ms	remaining: 29.6ms
94:	learn: 20.3768451	total: 472ms	remaining: 24.8ms
95:	learn: 20.2808056	total: 477ms	remaining: 19.9ms
96:	learn: 20.2082089	total: 483ms	remaining: 14.9ms
97:	learn: 20.1698768	total: 488ms	remaining: 9.97ms
98:	learn: 20.1048816	total: 494ms	remaining: 4.99ms
99:	learn: 20.0086159	total: 499ms	remaining: 0us
0:	learn: 27.6871645	total: 5.23ms	remaining: 518ms
1:	learn: 27.3312003	total: 10.1ms	remaining: 493ms
2:	learn: 26.9359558	total: 15.2ms	remaining: 491ms
3:	learn: 26.6055364	total: 19.9ms	remaining: 477ms
4:	learn: 26.1664924	total: 24.7ms	remaining: 469ms
5:	learn: 25.8515393	total: 29.9ms	remaining: 468ms
6:	learn: 25.4620036	total: 35ms	remaining: 465ms
7:	learn: 25.1669741	total: 40ms	remaining: 459ms
8:	learn: 24.8455454	total: 44.7ms	remaining: 452ms
9:	learn: 24.5106323	total: 49.7ms	remaining: 447ms
10:	learn: 24.1915228	total: 54.2ms	remaining: 438ms
11:	learn: 23.9076053	total: 58.7ms	remaining: 431ms
12:	learn: 23.6692445	total: 63.9ms	remaining: 427ms
13:	learn: 23.4343504	total: 68.6ms	remaining: 422ms
14:	learn: 23.2425280	total: 73.4ms	remaining: 416ms
15:	learn: 22.9254142	total: 78.5ms	remaining: 412ms
16:	learn: 22.6495489	total: 83.8ms	remaining: 409ms
17:	learn: 22.4343705	total: 88.7ms	remaining: 404ms
18:	learn: 22.2154202	total: 93.6ms	remaining: 399ms
19:	learn: 22.0592712	total: 98.7ms	remaining: 395ms
20:	learn: 21.7971944	total: 104ms	remaining: 393ms
21:	learn: 21.6128930	total: 115ms	remaining: 406ms
22:	learn: 21.3882946	total: 127ms	remaining: 426ms
23:	learn: 21.0912570	total: 136ms	remaining: 432ms
24:	learn: 20.8922857	total: 142ms	remaining: 427ms
25:	learn: 20.7150574	total: 148ms	remaining: 422ms
26:	learn: 20.5673183	total: 155ms	remaining: 419ms
27:	learn: 20.4331275	total: 161ms	remaining: 414ms
28:	learn: 20.2782866	total: 168ms	remaining: 410ms
29:	learn: 20.1061525	total: 173ms	remaining: 404ms
30:	learn: 19.9225948	total: 179ms	remaining: 398ms
31:	learn: 19.7809193	total: 185ms	remaining: 393ms
32:	learn: 19.6057771	total: 191ms	remaining: 387ms
33:	learn: 19.4391243	total: 196ms	remaining: 381ms
34:	learn: 19.2234365	total: 203ms	remaining: 377ms
35:	learn: 19.0214424	total: 209ms	remaining: 372ms
36:	learn: 18.8990643	total: 215ms	remaining: 365ms
37:	learn: 18.7473635	total: 220ms	remaining: 358ms
38:	learn: 18.6125192	total: 225ms	remaining: 351ms
39:	learn: 18.4977949	total: 230ms	remaining: 344ms
40:	learn: 18.3914568	total: 235ms	remaining: 338ms
41:	learn: 18.2541544	total: 240ms	remaining: 331ms
42:	learn: 18.1038984	total: 245ms	remaining: 325ms
43:	learn: 17.9706172	total: 250ms	remaining: 318ms
44:	learn: 17.8198810	total: 255ms	remaining: 312ms
45:	learn: 17.7102597	total: 261ms	remaining: 306ms
46:	learn: 17.6148228	total: 266ms	remaining: 300ms
47:	learn: 17.5115365	total: 271ms	remaining: 293ms
48:	learn: 17.3884162	total: 276ms	remaining: 287ms
49:	learn: 17.2857632	total: 281ms	remaining: 281ms
50:	learn: 17.1618843	total: 286ms	remaining: 275ms
51:	learn: 17.0529601	total: 291ms	remaining: 269ms
52:	learn: 16.9330273	total: 296ms	remaining: 263ms
53:	learn: 16.8206672	total: 302ms	remaining: 257ms
54:	learn: 16.7080356	total: 312ms	remaining: 255ms
55:	learn: 16.5874354	total: 320ms	remaining: 251ms
56:	learn: 16.4929860	total: 326ms	remaining: 246ms
57:	learn: 16.4269419	total: 333ms	remaining: 241ms
58:	learn: 16.3474026	total: 338ms	remaining: 235ms
59:	learn: 16.2515784	total: 343ms	remaining: 228ms
60:	learn: 16.1743901	total: 347ms	remaining: 222ms
61:	learn: 16.0389930	total: 352ms	remaining: 216ms
62:	learn: 15.9671636	total: 357ms	remaining: 210ms
63:	learn: 15.8928486	total: 362ms	remaining: 204ms
64:	learn: 15.8303841	total: 367ms	remaining: 198ms
65:	learn: 15.7612266	total: 372ms	remaining: 192ms
66:	learn: 15.6811172	total: 377ms	remaining: 186ms
67:	learn: 15.6262138	total: 382ms	remaining: 180ms
68:	learn: 15.5662508	total: 388ms	remaining: 174ms
69:	learn: 15.4804354	total: 393ms	remaining: 168ms
70:	learn: 15.4054915	total: 398ms	remaining: 163ms
71:	learn: 15.3271396	total: 403ms	remaining: 157ms
72:	learn: 15.2828359	total: 409ms	remaining: 151ms
73:	learn: 15.2197404	total: 414ms	remaining: 145ms
74:	learn: 15.1315902	total: 419ms	remaining: 140ms
75:	learn: 15.0780523	total: 424ms	remaining: 134ms
76:	learn: 14.9959155	total: 429ms	remaining: 128ms
77:	learn: 14.9265008	total: 434ms	remaining: 122ms
78:	learn: 14.8570189	total: 439ms	remaining: 117ms
79:	learn: 14.8060372	total: 443ms	remaining: 111ms
80:	learn: 14.7294676	total: 448ms	remaining: 105ms
81:	learn: 14.6708309	total: 453ms	remaining: 99.4ms
82:	learn: 14.5765370	total: 458ms	remaining: 93.8ms
83:	learn: 14.5312713	total: 463ms	remaining: 88.2ms
84:	learn: 14.4830327	total: 468ms	remaining: 82.6ms
85:	learn: 14.4296247	total: 474ms	remaining: 77.1ms
86:	learn: 14.3381470	total: 479ms	remaining: 71.5ms
87:	learn: 14.2638093	total: 484ms	remaining: 66ms
88:	learn: 14.2288435	total: 489ms	remaining: 60.4ms
89:	learn: 14.1489273	total: 493ms	remaining: 54.8ms
90:	learn: 14.0937923	total: 499ms	remaining: 49.3ms
91:	learn: 14.0334062	total: 508ms	remaining: 44.2ms
92:	learn: 13.9854696	total: 516ms	remaining: 38.9ms
93:	learn: 13.9444203	total: 526ms	remaining: 33.6ms
94:	learn: 13.9101523	total: 534ms	remaining: 28.1ms
95:	learn: 13.8460655	total: 540ms	remaining: 22.5ms
96:	learn: 13.7809420	total: 545ms	remaining: 16.9ms
97:	learn: 13.7270532	total: 551ms	remaining: 11.3ms
98:	learn: 13.6891300	total: 557ms	remaining: 5.62ms
99:	learn: 13.6569696	total: 563ms	remaining: 0us
0:	learn: 42.9754370	total: 5.14ms	remaining: 509ms
1:	learn: 42.2613272	total: 10.1ms	remaining: 494ms
2:	learn: 41.4729969	total: 14.9ms	remaining: 483ms
3:	learn: 40.7127004	total: 19.8ms	remaining: 474ms
4:	learn: 39.7775109	total: 24.7ms	remaining: 469ms
5:	learn: 39.1736663	total: 29.5ms	remaining: 463ms
6:	learn: 38.2981109	total: 35ms	remaining: 464ms
7:	learn: 37.5352984	total: 39.7ms	remaining: 456ms
8:	learn: 36.7771474	total: 44.7ms	remaining: 452ms
9:	learn: 36.0581366	total: 61.6ms	remaining: 555ms
10:	learn: 35.3542706	total: 66.5ms	remaining: 538ms
11:	learn: 34.6937007	total: 71.3ms	remaining: 523ms
12:	learn: 34.0408035	total: 76.2ms	remaining: 510ms
13:	learn: 33.3460240	total: 81.4ms	remaining: 500ms
14:	learn: 32.8086243	total: 86.4ms	remaining: 489ms
15:	learn: 32.1934462	total: 92ms	remaining: 483ms
16:	learn: 31.6465519	total: 97.3ms	remaining: 475ms
17:	learn: 31.2161293	total: 103ms	remaining: 467ms
18:	learn: 30.6730548	total: 108ms	remaining: 460ms
19:	learn: 30.3153659	total: 117ms	remaining: 469ms
20:	learn: 29.7661420	total: 125ms	remaining: 472ms
21:	learn: 29.2095664	total: 132ms	remaining: 468ms
22:	learn: 28.7509592	total: 138ms	remaining: 463ms
23:	learn: 28.4347528	total: 143ms	remaining: 454ms
24:	learn: 28.0551654	total: 148ms	remaining: 445ms
25:	learn: 27.7295952	total: 153ms	remaining: 435ms
26:	learn: 27.2329225	total: 158ms	remaining: 426ms
27:	learn: 26.9970607	total: 162ms	remaining: 417ms
28:	learn: 26.6596544	total: 167ms	remaining: 409ms
29:	learn: 26.2633576	total: 172ms	remaining: 402ms
30:	learn: 25.9761623	total: 177ms	remaining: 394ms
31:	learn: 25.6177371	total: 182ms	remaining: 386ms
32:	learn: 25.2165933	total: 187ms	remaining: 379ms
33:	learn: 24.8012870	total: 192ms	remaining: 372ms
34:	learn: 24.4772532	total: 196ms	remaining: 364ms
35:	learn: 24.1560359	total: 201ms	remaining: 357ms
36:	learn: 23.9688812	total: 206ms	remaining: 351ms
37:	learn: 23.6907607	total: 211ms	remaining: 344ms
38:	learn: 23.3885772	total: 216ms	remaining: 337ms
39:	learn: 23.2234939	total: 221ms	remaining: 331ms
40:	learn: 22.9785026	total: 226ms	remaining: 325ms
41:	learn: 22.6827268	total: 231ms	remaining: 319ms
42:	learn: 22.4564360	total: 236ms	remaining: 312ms
43:	learn: 22.2517827	total: 241ms	remaining: 306ms
44:	learn: 21.9858709	total: 246ms	remaining: 300ms
45:	learn: 21.7595870	total: 251ms	remaining: 294ms
46:	learn: 21.5929957	total: 256ms	remaining: 289ms
47:	learn: 21.4071752	total: 261ms	remaining: 283ms
48:	learn: 21.2186470	total: 266ms	remaining: 277ms
49:	learn: 21.0691824	total: 271ms	remaining: 271ms
50:	learn: 20.8921347	total: 277ms	remaining: 266ms
51:	learn: 20.6834229	total: 282ms	remaining: 260ms
52:	learn: 20.4718988	total: 291ms	remaining: 258ms
53:	learn: 20.3413889	total: 299ms	remaining: 255ms
54:	learn: 20.1785464	total: 307ms	remaining: 251ms
55:	learn: 19.9824314	total: 313ms	remaining: 246ms
56:	learn: 19.8217596	total: 319ms	remaining: 240ms
57:	learn: 19.6318474	total: 326ms	remaining: 236ms
58:	learn: 19.4962236	total: 334ms	remaining: 232ms
59:	learn: 19.3114985	total: 340ms	remaining: 227ms
60:	learn: 19.2181156	total: 347ms	remaining: 222ms
61:	learn: 19.0689614	total: 353ms	remaining: 217ms
62:	learn: 18.9563267	total: 360ms	remaining: 211ms
63:	learn: 18.8343083	total: 366ms	remaining: 206ms
64:	learn: 18.7050033	total: 372ms	remaining: 200ms
65:	learn: 18.6014163	total: 378ms	remaining: 195ms
66:	learn: 18.4910692	total: 384ms	remaining: 189ms
67:	learn: 18.3935194	total: 389ms	remaining: 183ms
68:	learn: 18.2825842	total: 395ms	remaining: 177ms
69:	learn: 18.1519267	total: 401ms	remaining: 172ms
70:	learn: 18.0527651	total: 406ms	remaining: 166ms
71:	learn: 17.9770106	total: 413ms	remaining: 160ms
72:	learn: 17.9151628	total: 419ms	remaining: 155ms
73:	learn: 17.7957486	total: 423ms	remaining: 149ms
74:	learn: 17.7025765	total: 428ms	remaining: 143ms
75:	learn: 17.5957242	total: 433ms	remaining: 137ms
76:	learn: 17.4683244	total: 438ms	remaining: 131ms
77:	learn: 17.3415729	total: 442ms	remaining: 125ms
78:	learn: 17.2886896	total: 447ms	remaining: 119ms
79:	learn: 17.2280922	total: 452ms	remaining: 113ms
80:	learn: 17.1188996	total: 457ms	remaining: 107ms
81:	learn: 17.0236450	total: 462ms	remaining: 101ms
82:	learn: 16.9046661	total: 467ms	remaining: 95.6ms
83:	learn: 16.7930633	total: 472ms	remaining: 89.8ms
84:	learn: 16.6870100	total: 477ms	remaining: 84.2ms
85:	learn: 16.5512107	total: 482ms	remaining: 78.5ms
86:	learn: 16.4353400	total: 488ms	remaining: 72.9ms
87:	learn: 16.3256461	total: 493ms	remaining: 67.2ms
88:	learn: 16.2968057	total: 498ms	remaining: 61.6ms
89:	learn: 16.2136078	total: 504ms	remaining: 56ms
90:	learn: 16.1596096	total: 513ms	remaining: 50.8ms
91:	learn: 16.1164050	total: 522ms	remaining: 45.4ms
92:	learn: 16.0660454	total: 528ms	remaining: 39.7ms
93:	learn: 16.0380611	total: 533ms	remaining: 34ms
94:	learn: 15.9494441	total: 540ms	remaining: 28.4ms
95:	learn: 15.8874840	total: 544ms	remaining: 22.7ms
96:	learn: 15.8288234	total: 549ms	remaining: 17ms
97:	learn: 15.7562787	total: 554ms	remaining: 11.3ms
98:	learn: 15.6822678	total: 559ms	remaining: 5.65ms
99:	learn: 15.5901500	total: 564ms	remaining: 0us
0:	learn: 46.4504871	total: 5.14ms	remaining: 509ms
1:	learn: 45.7240114	total: 9.75ms	remaining: 478ms
2:	learn: 45.0308025	total: 14.6ms	remaining: 472ms
3:	learn: 44.1111169	total: 19.2ms	remaining: 461ms
4:	learn: 43.3925352	total: 23.9ms	remaining: 454ms
5:	learn: 42.7856354	total: 28.7ms	remaining: 450ms
6:	learn: 42.1998170	total: 33.7ms	remaining: 448ms
7:	learn: 41.3532708	total: 38.4ms	remaining: 441ms
8:	learn: 40.7314571	total: 43.2ms	remaining: 437ms
9:	learn: 39.9838066	total: 48.2ms	remaining: 434ms
10:	learn: 39.4168243	total: 52.8ms	remaining: 428ms
11:	learn: 39.0148769	total: 57.5ms	remaining: 421ms
12:	learn: 38.3055855	total: 62.7ms	remaining: 419ms
13:	learn: 37.7343198	total: 67.9ms	remaining: 417ms
14:	learn: 37.4177463	total: 73.1ms	remaining: 414ms
15:	learn: 36.9043298	total: 78.2ms	remaining: 411ms
16:	learn: 36.3139174	total: 83.2ms	remaining: 406ms
17:	learn: 35.7200448	total: 88.2ms	remaining: 402ms
18:	learn: 35.3763394	total: 97.3ms	remaining: 415ms
19:	learn: 34.7666728	total: 107ms	remaining: 427ms
20:	learn: 34.2642890	total: 116ms	remaining: 437ms
21:	learn: 33.8196936	total: 125ms	remaining: 443ms
22:	learn: 33.4205669	total: 130ms	remaining: 437ms
23:	learn: 32.8565493	total: 136ms	remaining: 432ms
24:	learn: 32.5287132	total: 143ms	remaining: 428ms
25:	learn: 32.2142064	total: 149ms	remaining: 424ms
26:	learn: 31.9258854	total: 155ms	remaining: 419ms
27:	learn: 31.4083665	total: 161ms	remaining: 414ms
28:	learn: 31.1615620	total: 168ms	remaining: 410ms
29:	learn: 30.6948867	total: 173ms	remaining: 405ms
30:	learn: 30.3185108	total: 179ms	remaining: 398ms
31:	learn: 29.9245223	total: 185ms	remaining: 393ms
32:	learn: 29.6683643	total: 191ms	remaining: 389ms
33:	learn: 29.3868143	total: 196ms	remaining: 381ms
34:	learn: 29.1105699	total: 201ms	remaining: 373ms
35:	learn: 28.8274848	total: 205ms	remaining: 365ms
36:	learn: 28.5478288	total: 210ms	remaining: 358ms
37:	learn: 28.2355121	total: 215ms	remaining: 351ms
38:	learn: 28.0182564	total: 220ms	remaining: 344ms
39:	learn: 27.7654405	total: 225ms	remaining: 338ms
40:	learn: 27.5720477	total: 230ms	remaining: 331ms
41:	learn: 27.3182782	total: 235ms	remaining: 324ms
42:	learn: 26.9504431	total: 240ms	remaining: 318ms
43:	learn: 26.7281906	total: 245ms	remaining: 311ms
44:	learn: 26.5390008	total: 250ms	remaining: 305ms
45:	learn: 26.3781338	total: 254ms	remaining: 299ms
46:	learn: 26.1763177	total: 260ms	remaining: 293ms
47:	learn: 25.9417647	total: 265ms	remaining: 287ms
48:	learn: 25.7528045	total: 271ms	remaining: 282ms
49:	learn: 25.6336897	total: 276ms	remaining: 276ms
50:	learn: 25.4800426	total: 281ms	remaining: 270ms
51:	learn: 25.2895681	total: 286ms	remaining: 264ms
52:	learn: 25.0827111	total: 293ms	remaining: 259ms
53:	learn: 24.7987678	total: 301ms	remaining: 256ms
54:	learn: 24.6309982	total: 309ms	remaining: 253ms
55:	learn: 24.3526776	total: 315ms	remaining: 248ms
56:	learn: 24.1689125	total: 322ms	remaining: 243ms
57:	learn: 23.9802039	total: 327ms	remaining: 237ms
58:	learn: 23.8059432	total: 332ms	remaining: 231ms
59:	learn: 23.6006403	total: 337ms	remaining: 224ms
60:	learn: 23.2948382	total: 341ms	remaining: 218ms
61:	learn: 23.1338922	total: 346ms	remaining: 212ms
62:	learn: 22.9581269	total: 351ms	remaining: 206ms
63:	learn: 22.8263127	total: 356ms	remaining: 200ms
64:	learn: 22.6966006	total: 361ms	remaining: 194ms
65:	learn: 22.6012389	total: 366ms	remaining: 188ms
66:	learn: 22.4220244	total: 370ms	remaining: 182ms
67:	learn: 22.3148342	total: 376ms	remaining: 177ms
68:	learn: 22.1543592	total: 380ms	remaining: 171ms
69:	learn: 22.0614050	total: 385ms	remaining: 165ms
70:	learn: 21.9134025	total: 390ms	remaining: 159ms
71:	learn: 21.8198101	total: 394ms	remaining: 153ms
72:	learn: 21.6944173	total: 399ms	remaining: 148ms
73:	learn: 21.4727420	total: 404ms	remaining: 142ms
74:	learn: 21.3000560	total: 409ms	remaining: 136ms
75:	learn: 21.1884740	total: 414ms	remaining: 131ms
76:	learn: 21.0321317	total: 419ms	remaining: 125ms
77:	learn: 20.9371793	total: 424ms	remaining: 119ms
78:	learn: 20.6800341	total: 428ms	remaining: 114ms
79:	learn: 20.5629904	total: 433ms	remaining: 108ms
80:	learn: 20.4098217	total: 438ms	remaining: 103ms
81:	learn: 20.2139261	total: 443ms	remaining: 97.3ms
82:	learn: 20.1024260	total: 448ms	remaining: 91.8ms
83:	learn: 19.9835855	total: 453ms	remaining: 86.3ms
84:	learn: 19.9018880	total: 458ms	remaining: 80.8ms
85:	learn: 19.7819843	total: 463ms	remaining: 75.3ms
86:	learn: 19.6352780	total: 468ms	remaining: 69.9ms
87:	learn: 19.4888328	total: 473ms	remaining: 64.5ms
88:	learn: 19.4365121	total: 478ms	remaining: 59.1ms
89:	learn: 19.3427430	total: 484ms	remaining: 53.7ms
90:	learn: 19.2884907	total: 489ms	remaining: 48.4ms
91:	learn: 19.1898932	total: 496ms	remaining: 43.1ms
92:	learn: 19.0775661	total: 505ms	remaining: 38ms
93:	learn: 19.0334055	total: 515ms	remaining: 32.9ms
94:	learn: 18.9381916	total: 524ms	remaining: 27.6ms
95:	learn: 18.8471198	total: 530ms	remaining: 22.1ms
96:	learn: 18.7136478	total: 536ms	remaining: 16.6ms
97:	learn: 18.6633102	total: 542ms	remaining: 11.1ms
98:	learn: 18.5887516	total: 547ms	remaining: 5.53ms
99:	learn: 18.4841597	total: 553ms	remaining: 0us
0:	learn: 46.2172336	total: 5.03ms	remaining: 498ms
1:	learn: 45.4248871	total: 9.98ms	remaining: 489ms
2:	learn: 44.8702937	total: 14.7ms	remaining: 475ms
3:	learn: 44.2019212	total: 19.4ms	remaining: 466ms
4:	learn: 43.4805210	total: 24ms	remaining: 456ms
5:	learn: 42.7336269	total: 29.2ms	remaining: 457ms
6:	learn: 42.0396670	total: 33.8ms	remaining: 449ms
7:	learn: 41.5668459	total: 38.5ms	remaining: 443ms
8:	learn: 40.8999125	total: 43.7ms	remaining: 442ms
9:	learn: 40.3358512	total: 48.5ms	remaining: 437ms
10:	learn: 39.7511489	total: 53.6ms	remaining: 433ms
11:	learn: 39.0775416	total: 58.2ms	remaining: 427ms
12:	learn: 38.5204735	total: 62.9ms	remaining: 421ms
13:	learn: 38.2087509	total: 68.2ms	remaining: 419ms
14:	learn: 37.7259552	total: 73.3ms	remaining: 415ms
15:	learn: 37.1646397	total: 78.5ms	remaining: 412ms
16:	learn: 36.7093520	total: 83.5ms	remaining: 408ms
17:	learn: 36.2212308	total: 88.5ms	remaining: 403ms
18:	learn: 35.8682156	total: 93.5ms	remaining: 399ms
19:	learn: 35.6026383	total: 103ms	remaining: 411ms
20:	learn: 35.1739725	total: 111ms	remaining: 416ms
21:	learn: 34.5938003	total: 118ms	remaining: 419ms
22:	learn: 34.1479056	total: 124ms	remaining: 414ms
23:	learn: 33.8759356	total: 130ms	remaining: 413ms
24:	learn: 33.2898426	total: 135ms	remaining: 406ms
25:	learn: 32.9220237	total: 140ms	remaining: 399ms
26:	learn: 32.4324374	total: 146ms	remaining: 394ms
27:	learn: 32.1726327	total: 151ms	remaining: 388ms
28:	learn: 31.8020879	total: 156ms	remaining: 381ms
29:	learn: 31.4329781	total: 161ms	remaining: 375ms
30:	learn: 30.9995282	total: 165ms	remaining: 368ms
31:	learn: 30.6815978	total: 171ms	remaining: 363ms
32:	learn: 30.2991029	total: 175ms	remaining: 356ms
33:	learn: 30.0354202	total: 180ms	remaining: 349ms
34:	learn: 29.7620535	total: 185ms	remaining: 343ms
35:	learn: 29.4552589	total: 190ms	remaining: 337ms
36:	learn: 29.2634399	total: 194ms	remaining: 331ms
37:	learn: 28.8345135	total: 199ms	remaining: 325ms
38:	learn: 28.5551142	total: 204ms	remaining: 319ms
39:	learn: 28.3258809	total: 209ms	remaining: 313ms
40:	learn: 28.0835564	total: 213ms	remaining: 307ms
41:	learn: 27.7517159	total: 218ms	remaining: 302ms
42:	learn: 27.5427595	total: 223ms	remaining: 296ms
43:	learn: 27.3925105	total: 228ms	remaining: 290ms
44:	learn: 27.2377120	total: 232ms	remaining: 284ms
45:	learn: 26.9930398	total: 237ms	remaining: 278ms
46:	learn: 26.7748687	total: 242ms	remaining: 273ms
47:	learn: 26.5856986	total: 247ms	remaining: 267ms
48:	learn: 26.4344153	total: 252ms	remaining: 262ms
49:	learn: 26.3263456	total: 257ms	remaining: 257ms
50:	learn: 26.2048412	total: 261ms	remaining: 251ms
51:	learn: 26.0608546	total: 267ms	remaining: 246ms
52:	learn: 25.9428146	total: 272ms	remaining: 241ms
53:	learn: 25.7578029	total: 277ms	remaining: 236ms
54:	learn: 25.5696792	total: 282ms	remaining: 231ms
55:	learn: 25.3291935	total: 287ms	remaining: 226ms
56:	learn: 25.1388942	total: 293ms	remaining: 221ms
57:	learn: 24.9853945	total: 302ms	remaining: 219ms
58:	learn: 24.8037785	total: 312ms	remaining: 217ms
59:	learn: 24.5326704	total: 320ms	remaining: 213ms
60:	learn: 24.2208240	total: 329ms	remaining: 210ms
61:	learn: 24.0774015	total: 335ms	remaining: 205ms
62:	learn: 23.9705824	total: 341ms	remaining: 200ms
63:	learn: 23.8877665	total: 346ms	remaining: 195ms
64:	learn: 23.7309043	total: 352ms	remaining: 189ms
65:	learn: 23.5820140	total: 358ms	remaining: 184ms
66:	learn: 23.3762012	total: 363ms	remaining: 179ms
67:	learn: 23.2317502	total: 369ms	remaining: 174ms
68:	learn: 23.0868331	total: 375ms	remaining: 168ms
69:	learn: 22.9642758	total: 381ms	remaining: 163ms
70:	learn: 22.8085341	total: 386ms	remaining: 158ms
71:	learn: 22.6834294	total: 392ms	remaining: 153ms
72:	learn: 22.6152922	total: 398ms	remaining: 147ms
73:	learn: 22.3675145	total: 404ms	remaining: 142ms
74:	learn: 22.3023338	total: 409ms	remaining: 136ms
75:	learn: 22.1866833	total: 413ms	remaining: 130ms
76:	learn: 22.0163130	total: 418ms	remaining: 125ms
77:	learn: 21.9691306	total: 422ms	remaining: 119ms
78:	learn: 21.9004647	total: 427ms	remaining: 114ms
79:	learn: 21.7931869	total: 432ms	remaining: 108ms
80:	learn: 21.6747916	total: 437ms	remaining: 103ms
81:	learn: 21.5187568	total: 442ms	remaining: 96.9ms
82:	learn: 21.3124880	total: 447ms	remaining: 91.5ms
83:	learn: 21.1979524	total: 452ms	remaining: 86.1ms
84:	learn: 21.1311130	total: 457ms	remaining: 80.6ms
85:	learn: 21.0606062	total: 462ms	remaining: 75.2ms
86:	learn: 20.9900935	total: 468ms	remaining: 69.9ms
87:	learn: 20.8908054	total: 473ms	remaining: 64.5ms
88:	learn: 20.8088525	total: 478ms	remaining: 59.1ms
89:	learn: 20.7300955	total: 483ms	remaining: 53.7ms
90:	learn: 20.6130276	total: 489ms	remaining: 48.3ms
91:	learn: 20.5437508	total: 494ms	remaining: 42.9ms
92:	learn: 20.5029426	total: 502ms	remaining: 37.8ms
93:	learn: 20.4416708	total: 510ms	remaining: 32.6ms
94:	learn: 20.3917812	total: 519ms	remaining: 27.3ms
95:	learn: 20.3305024	total: 525ms	remaining: 21.9ms
96:	learn: 20.2375704	total: 532ms	remaining: 16.4ms
97:	learn: 20.1835197	total: 537ms	remaining: 11ms
98:	learn: 20.1246834	total: 542ms	remaining: 5.47ms
99:	learn: 20.0506334	total: 547ms	remaining: 0us
0:	learn: 46.7334648	total: 4.97ms	remaining: 492ms
1:	learn: 46.2069876	total: 9.68ms	remaining: 474ms
2:	learn: 45.3699967	total: 14.3ms	remaining: 463ms
3:	learn: 44.6866787	total: 19ms	remaining: 457ms
4:	learn: 43.8536031	total: 23.8ms	remaining: 453ms
5:	learn: 43.4716853	total: 28.6ms	remaining: 449ms
6:	learn: 42.9929637	total: 33.3ms	remaining: 443ms
7:	learn: 42.4952169	total: 38ms	remaining: 437ms
8:	learn: 41.7548337	total: 42.8ms	remaining: 433ms
9:	learn: 41.1054415	total: 47.4ms	remaining: 426ms
10:	learn: 40.4827492	total: 52.3ms	remaining: 423ms
11:	learn: 39.7605907	total: 57.3ms	remaining: 420ms
12:	learn: 39.2532558	total: 62.1ms	remaining: 416ms
13:	learn: 38.6572753	total: 67ms	remaining: 411ms
14:	learn: 38.2886959	total: 72ms	remaining: 408ms
15:	learn: 37.7816612	total: 76.9ms	remaining: 404ms
16:	learn: 37.1680589	total: 81.6ms	remaining: 399ms
17:	learn: 36.5753004	total: 87ms	remaining: 396ms
18:	learn: 36.2339458	total: 92.2ms	remaining: 393ms
19:	learn: 35.9159716	total: 97.4ms	remaining: 390ms
20:	learn: 35.4591743	total: 103ms	remaining: 387ms
21:	learn: 34.8726070	total: 108ms	remaining: 383ms
22:	learn: 34.3903591	total: 114ms	remaining: 380ms
23:	learn: 34.1236827	total: 123ms	remaining: 390ms
24:	learn: 33.8026540	total: 133ms	remaining: 400ms
25:	learn: 33.4594822	total: 141ms	remaining: 400ms
26:	learn: 33.1338910	total: 149ms	remaining: 402ms
27:	learn: 32.8527106	total: 154ms	remaining: 396ms
28:	learn: 32.4923829	total: 160ms	remaining: 391ms
29:	learn: 32.0560533	total: 165ms	remaining: 386ms
30:	learn: 31.6614408	total: 171ms	remaining: 380ms
31:	learn: 31.2796040	total: 176ms	remaining: 375ms
32:	learn: 30.8214741	total: 182ms	remaining: 370ms
33:	learn: 30.5908694	total: 188ms	remaining: 365ms
34:	learn: 30.3637356	total: 194ms	remaining: 360ms
35:	learn: 30.0446511	total: 199ms	remaining: 354ms
36:	learn: 29.8792549	total: 205ms	remaining: 349ms
37:	learn: 29.5488457	total: 211ms	remaining: 345ms
38:	learn: 29.2808568	total: 217ms	remaining: 339ms
39:	learn: 29.0603765	total: 222ms	remaining: 332ms
40:	learn: 28.8272425	total: 226ms	remaining: 325ms
41:	learn: 28.4753580	total: 231ms	remaining: 319ms
42:	learn: 28.2963614	total: 236ms	remaining: 312ms
43:	learn: 28.1054768	total: 240ms	remaining: 306ms
44:	learn: 27.9038093	total: 245ms	remaining: 300ms
45:	learn: 27.6305487	total: 250ms	remaining: 294ms
46:	learn: 27.4457907	total: 255ms	remaining: 288ms
47:	learn: 27.1855957	total: 260ms	remaining: 281ms
48:	learn: 26.9987934	total: 265ms	remaining: 275ms
49:	learn: 26.7881067	total: 269ms	remaining: 269ms
50:	learn: 26.6385231	total: 274ms	remaining: 263ms
51:	learn: 26.4661755	total: 279ms	remaining: 257ms
52:	learn: 26.3331868	total: 284ms	remaining: 252ms
53:	learn: 26.0353476	total: 289ms	remaining: 246ms
54:	learn: 25.8257147	total: 296ms	remaining: 242ms
55:	learn: 25.5924383	total: 304ms	remaining: 239ms
56:	learn: 25.4082209	total: 313ms	remaining: 236ms
57:	learn: 25.2350104	total: 319ms	remaining: 231ms
58:	learn: 25.1789867	total: 325ms	remaining: 226ms
59:	learn: 24.9111359	total: 332ms	remaining: 221ms
60:	learn: 24.6314503	total: 337ms	remaining: 215ms
61:	learn: 24.4297999	total: 341ms	remaining: 209ms
62:	learn: 24.3126171	total: 346ms	remaining: 203ms
63:	learn: 24.1544005	total: 351ms	remaining: 197ms
64:	learn: 24.0197950	total: 356ms	remaining: 192ms
65:	learn: 23.8483087	total: 360ms	remaining: 186ms
66:	learn: 23.6624915	total: 365ms	remaining: 180ms
67:	learn: 23.5068105	total: 370ms	remaining: 174ms
68:	learn: 23.4266187	total: 375ms	remaining: 168ms
69:	learn: 23.3535388	total: 380ms	remaining: 163ms
70:	learn: 23.2477190	total: 385ms	remaining: 157ms
71:	learn: 23.1877634	total: 389ms	remaining: 151ms
72:	learn: 23.1344720	total: 395ms	remaining: 146ms
73:	learn: 22.9498234	total: 399ms	remaining: 140ms
74:	learn: 22.9068295	total: 404ms	remaining: 135ms
75:	learn: 22.7368434	total: 409ms	remaining: 129ms
76:	learn: 22.6084901	total: 414ms	remaining: 124ms
77:	learn: 22.4690295	total: 419ms	remaining: 118ms
78:	learn: 22.3970100	total: 424ms	remaining: 113ms
79:	learn: 22.3025537	total: 429ms	remaining: 107ms
80:	learn: 22.2089293	total: 433ms	remaining: 102ms
81:	learn: 22.0522107	total: 438ms	remaining: 96.2ms
82:	learn: 21.9368213	total: 443ms	remaining: 90.8ms
83:	learn: 21.7968322	total: 448ms	remaining: 85.3ms
84:	learn: 21.7416164	total: 452ms	remaining: 79.8ms
85:	learn: 21.6031099	total: 457ms	remaining: 74.4ms
86:	learn: 21.4530627	total: 462ms	remaining: 69ms
87:	learn: 21.3118417	total: 467ms	remaining: 63.6ms
88:	learn: 21.2760431	total: 471ms	remaining: 58.3ms
89:	learn: 21.2071350	total: 477ms	remaining: 53ms
90:	learn: 21.1051001	total: 481ms	remaining: 47.6ms
91:	learn: 21.0246142	total: 486ms	remaining: 42.3ms
92:	learn: 20.9834999	total: 492ms	remaining: 37ms
93:	learn: 20.8989393	total: 497ms	remaining: 31.7ms
94:	learn: 20.8262231	total: 502ms	remaining: 26.4ms
95:	learn: 20.7369110	total: 506ms	remaining: 21.1ms
96:	learn: 20.6409587	total: 511ms	remaining: 15.8ms
97:	learn: 20.5553641	total: 519ms	remaining: 10.6ms
98:	learn: 20.4317232	total: 530ms	remaining: 5.36ms
99:	learn: 20.3708681	total: 538ms	remaining: 0us
0:	learn: 27.3351083	total: 24.9ms	remaining: 2.47s
1:	learn: 26.7523848	total: 49.3ms	remaining: 2.41s
2:	learn: 26.1326580	total: 73.3ms	remaining: 2.37s
3:	learn: 25.5584244	total: 99.1ms	remaining: 2.38s
4:	learn: 25.0458748	total: 123ms	remaining: 2.35s
5:	learn: 24.4868837	total: 157ms	remaining: 2.46s
6:	learn: 23.9306999	total: 182ms	remaining: 2.42s
7:	learn: 23.4799808	total: 207ms	remaining: 2.38s
8:	learn: 22.9510347	total: 230ms	remaining: 2.33s
9:	learn: 22.4529079	total: 254ms	remaining: 2.28s
10:	learn: 21.9320739	total: 278ms	remaining: 2.25s
11:	learn: 21.4729295	total: 302ms	remaining: 2.21s
12:	learn: 21.0885550	total: 326ms	remaining: 2.18s
13:	learn: 20.7063206	total: 351ms	remaining: 2.16s
14:	learn: 20.3539530	total: 389ms	remaining: 2.2s
15:	learn: 20.0071947	total: 413ms	remaining: 2.17s
16:	learn: 19.6579830	total: 437ms	remaining: 2.13s
17:	learn: 19.2450502	total: 463ms	remaining: 2.11s
18:	learn: 18.8010420	total: 486ms	remaining: 2.07s
19:	learn: 18.4055273	total: 509ms	remaining: 2.04s
20:	learn: 18.0395642	total: 533ms	remaining: 2s
21:	learn: 17.6568400	total: 557ms	remaining: 1.98s
22:	learn: 17.4284559	total: 588ms	remaining: 1.97s
23:	learn: 17.0957528	total: 613ms	remaining: 1.94s
24:	learn: 16.7636157	total: 637ms	remaining: 1.91s
25:	learn: 16.4987969	total: 660ms	remaining: 1.88s
26:	learn: 16.2204177	total: 684ms	remaining: 1.85s
27:	learn: 15.9525124	total: 707ms	remaining: 1.82s
28:	learn: 15.5905943	total: 731ms	remaining: 1.79s
29:	learn: 15.3628633	total: 756ms	remaining: 1.76s
30:	learn: 15.1420693	total: 780ms	remaining: 1.74s
31:	learn: 14.9419461	total: 813ms	remaining: 1.73s
32:	learn: 14.7386592	total: 840ms	remaining: 1.71s
33:	learn: 14.5398023	total: 865ms	remaining: 1.68s
34:	learn: 14.2644206	total: 891ms	remaining: 1.65s
35:	learn: 14.0168503	total: 917ms	remaining: 1.63s
36:	learn: 13.7687637	total: 942ms	remaining: 1.6s
37:	learn: 13.5855913	total: 966ms	remaining: 1.57s
38:	learn: 13.3656902	total: 991ms	remaining: 1.55s
39:	learn: 13.2111716	total: 1.02s	remaining: 1.52s
40:	learn: 13.0360149	total: 1.05s	remaining: 1.51s
41:	learn: 12.8789444	total: 1.08s	remaining: 1.49s
42:	learn: 12.6680179	total: 1.1s	remaining: 1.46s
43:	learn: 12.4892268	total: 1.13s	remaining: 1.44s
44:	learn: 12.3275828	total: 1.15s	remaining: 1.41s
45:	learn: 12.2035682	total: 1.18s	remaining: 1.38s
46:	learn: 12.0777397	total: 1.2s	remaining: 1.36s
47:	learn: 11.9055552	total: 1.23s	remaining: 1.33s
48:	learn: 11.7465481	total: 1.26s	remaining: 1.31s
49:	learn: 11.5961200	total: 1.29s	remaining: 1.29s
50:	learn: 11.4305519	total: 1.32s	remaining: 1.26s
51:	learn: 11.2794033	total: 1.34s	remaining: 1.24s
52:	learn: 11.1586950	total: 1.37s	remaining: 1.21s
53:	learn: 11.0432937	total: 1.39s	remaining: 1.19s
54:	learn: 10.9094838	total: 1.42s	remaining: 1.16s
55:	learn: 10.7713451	total: 1.44s	remaining: 1.13s
56:	learn: 10.6664177	total: 1.48s	remaining: 1.11s
57:	learn: 10.5600117	total: 1.5s	remaining: 1.09s
58:	learn: 10.4438974	total: 1.53s	remaining: 1.06s
59:	learn: 10.3294224	total: 1.55s	remaining: 1.03s
60:	learn: 10.2510301	total: 1.58s	remaining: 1.01s
61:	learn: 10.1363264	total: 1.6s	remaining: 982ms
62:	learn: 10.0415049	total: 1.63s	remaining: 955ms
63:	learn: 9.9499833	total: 1.65s	remaining: 930ms
64:	learn: 9.8774263	total: 1.68s	remaining: 907ms
65:	learn: 9.7458853	total: 1.71s	remaining: 882ms
66:	learn: 9.6733951	total: 1.74s	remaining: 855ms
67:	learn: 9.5861856	total: 1.76s	remaining: 830ms
68:	learn: 9.4524193	total: 1.79s	remaining: 803ms
69:	learn: 9.3501165	total: 1.81s	remaining: 778ms
70:	learn: 9.3092902	total: 1.84s	remaining: 751ms
71:	learn: 9.2244222	total: 1.86s	remaining: 726ms
72:	learn: 9.1554253	total: 1.9s	remaining: 702ms
73:	learn: 9.1098892	total: 1.92s	remaining: 675ms
74:	learn: 9.0210213	total: 1.95s	remaining: 649ms
75:	learn: 8.9303181	total: 1.97s	remaining: 622ms
76:	learn: 8.8489769	total: 1.99s	remaining: 595ms
77:	learn: 8.7651580	total: 2.02s	remaining: 569ms
78:	learn: 8.7126796	total: 2.04s	remaining: 543ms
79:	learn: 8.6404554	total: 2.07s	remaining: 517ms
80:	learn: 8.5844756	total: 2.09s	remaining: 491ms
81:	learn: 8.5234333	total: 2.13s	remaining: 467ms
82:	learn: 8.4298762	total: 2.15s	remaining: 441ms
83:	learn: 8.3483002	total: 2.18s	remaining: 415ms
84:	learn: 8.2670647	total: 2.2s	remaining: 389ms
85:	learn: 8.1917398	total: 2.23s	remaining: 363ms
86:	learn: 8.1073642	total: 2.25s	remaining: 337ms
87:	learn: 8.0633288	total: 2.28s	remaining: 311ms
88:	learn: 8.0107997	total: 2.3s	remaining: 285ms
89:	learn: 7.9563547	total: 2.33s	remaining: 259ms
90:	learn: 7.8811408	total: 2.36s	remaining: 233ms
91:	learn: 7.8096107	total: 2.38s	remaining: 207ms
92:	learn: 7.7481700	total: 2.41s	remaining: 181ms
93:	learn: 7.6847843	total: 2.43s	remaining: 155ms
94:	learn: 7.6252335	total: 2.46s	remaining: 129ms
95:	learn: 7.5593148	total: 2.48s	remaining: 103ms
96:	learn: 7.5042331	total: 2.51s	remaining: 77.5ms
97:	learn: 7.4553707	total: 2.53s	remaining: 51.6ms
98:	learn: 7.4035691	total: 2.56s	remaining: 25.9ms
99:	learn: 7.3457537	total: 2.59s	remaining: 0us
0:	learn: 42.5901652	total: 23.8ms	remaining: 2.35s
1:	learn: 41.2917733	total: 47.8ms	remaining: 2.34s
2:	learn: 40.0285549	total: 73ms	remaining: 2.36s
3:	learn: 38.9051734	total: 103ms	remaining: 2.48s
4:	learn: 37.7712063	total: 128ms	remaining: 2.44s
5:	learn: 36.6826884	total: 153ms	remaining: 2.39s
6:	learn: 35.6341048	total: 177ms	remaining: 2.35s
7:	learn: 34.5035449	total: 201ms	remaining: 2.31s
8:	learn: 33.5636424	total: 225ms	remaining: 2.27s
9:	learn: 32.5970644	total: 249ms	remaining: 2.24s
10:	learn: 31.8528815	total: 273ms	remaining: 2.21s
11:	learn: 31.0330095	total: 297ms	remaining: 2.18s
12:	learn: 30.3119851	total: 330ms	remaining: 2.21s
13:	learn: 29.5212022	total: 357ms	remaining: 2.19s
14:	learn: 28.7182657	total: 383ms	remaining: 2.17s
15:	learn: 28.0433195	total: 408ms	remaining: 2.14s
16:	learn: 27.2966576	total: 432ms	remaining: 2.11s
17:	learn: 26.5122856	total: 457ms	remaining: 2.08s
18:	learn: 25.8998213	total: 482ms	remaining: 2.05s
19:	learn: 25.2416026	total: 506ms	remaining: 2.02s
20:	learn: 24.6399819	total: 530ms	remaining: 1.99s
21:	learn: 24.0372756	total: 560ms	remaining: 1.99s
22:	learn: 23.4553733	total: 584ms	remaining: 1.95s
23:	learn: 22.9027871	total: 608ms	remaining: 1.93s
24:	learn: 22.4470878	total: 631ms	remaining: 1.89s
25:	learn: 21.9143721	total: 655ms	remaining: 1.86s
26:	learn: 21.4979516	total: 679ms	remaining: 1.84s
27:	learn: 21.0867622	total: 704ms	remaining: 1.81s
28:	learn: 20.6187419	total: 729ms	remaining: 1.78s
29:	learn: 20.1662373	total: 757ms	remaining: 1.77s
30:	learn: 19.8225041	total: 791ms	remaining: 1.76s
31:	learn: 19.4539400	total: 818ms	remaining: 1.74s
32:	learn: 19.1127000	total: 843ms	remaining: 1.71s
33:	learn: 18.7767435	total: 870ms	remaining: 1.69s
34:	learn: 18.4038779	total: 896ms	remaining: 1.66s
35:	learn: 18.0021121	total: 921ms	remaining: 1.64s
36:	learn: 17.6673419	total: 947ms	remaining: 1.61s
37:	learn: 17.3562137	total: 977ms	remaining: 1.59s
38:	learn: 17.0128082	total: 1.01s	remaining: 1.57s
39:	learn: 16.7572783	total: 1.03s	remaining: 1.55s
40:	learn: 16.4883778	total: 1.06s	remaining: 1.52s
41:	learn: 16.1756364	total: 1.08s	remaining: 1.49s
42:	learn: 15.9150506	total: 1.11s	remaining: 1.47s
43:	learn: 15.6787555	total: 1.13s	remaining: 1.44s
44:	learn: 15.3862120	total: 1.16s	remaining: 1.41s
45:	learn: 15.1512250	total: 1.18s	remaining: 1.39s
46:	learn: 14.9410960	total: 1.22s	remaining: 1.37s
47:	learn: 14.7086321	total: 1.25s	remaining: 1.35s
48:	learn: 14.5065360	total: 1.27s	remaining: 1.32s
49:	learn: 14.3007466	total: 1.3s	remaining: 1.3s
50:	learn: 14.0972724	total: 1.32s	remaining: 1.27s
51:	learn: 13.8793525	total: 1.35s	remaining: 1.24s
52:	learn: 13.6381311	total: 1.37s	remaining: 1.22s
53:	learn: 13.4603568	total: 1.4s	remaining: 1.19s
54:	learn: 13.2856920	total: 1.42s	remaining: 1.16s
55:	learn: 13.1350779	total: 1.45s	remaining: 1.14s
56:	learn: 13.0110083	total: 1.48s	remaining: 1.11s
57:	learn: 12.8405210	total: 1.5s	remaining: 1.09s
58:	learn: 12.6793938	total: 1.53s	remaining: 1.06s
59:	learn: 12.5497475	total: 1.55s	remaining: 1.04s
60:	learn: 12.4319334	total: 1.58s	remaining: 1.01s
61:	learn: 12.2780964	total: 1.61s	remaining: 985ms
62:	learn: 12.1187174	total: 1.63s	remaining: 960ms
63:	learn: 11.9635081	total: 1.67s	remaining: 939ms
64:	learn: 11.8366366	total: 1.7s	remaining: 913ms
65:	learn: 11.6598347	total: 1.72s	remaining: 887ms
66:	learn: 11.5227416	total: 1.75s	remaining: 861ms
67:	learn: 11.4058818	total: 1.77s	remaining: 835ms
68:	learn: 11.2627892	total: 1.8s	remaining: 809ms
69:	learn: 11.1415094	total: 1.82s	remaining: 782ms
70:	learn: 11.0703329	total: 1.85s	remaining: 756ms
71:	learn: 10.9568944	total: 1.88s	remaining: 731ms
72:	learn: 10.8314078	total: 1.91s	remaining: 707ms
73:	learn: 10.7320013	total: 1.94s	remaining: 680ms
74:	learn: 10.6191666	total: 1.96s	remaining: 654ms
75:	learn: 10.5156798	total: 1.99s	remaining: 627ms
76:	learn: 10.4174442	total: 2.01s	remaining: 601ms
77:	learn: 10.3318165	total: 2.03s	remaining: 574ms
78:	learn: 10.2300435	total: 2.06s	remaining: 548ms
79:	learn: 10.1665911	total: 2.09s	remaining: 522ms
80:	learn: 10.1030585	total: 2.12s	remaining: 498ms
81:	learn: 10.0254875	total: 2.15s	remaining: 471ms
82:	learn: 9.9387640	total: 2.17s	remaining: 445ms
83:	learn: 9.8289920	total: 2.2s	remaining: 419ms
84:	learn: 9.7629500	total: 2.22s	remaining: 392ms
85:	learn: 9.6778611	total: 2.25s	remaining: 366ms
86:	learn: 9.5920617	total: 2.27s	remaining: 340ms
87:	learn: 9.4931297	total: 2.3s	remaining: 313ms
88:	learn: 9.4010604	total: 2.32s	remaining: 287ms
89:	learn: 9.3328614	total: 2.35s	remaining: 262ms
90:	learn: 9.2409094	total: 2.38s	remaining: 236ms
91:	learn: 9.1214245	total: 2.41s	remaining: 209ms
92:	learn: 9.0795335	total: 2.43s	remaining: 183ms
93:	learn: 8.9777250	total: 2.46s	remaining: 157ms
94:	learn: 8.9059891	total: 2.48s	remaining: 131ms
95:	learn: 8.8343294	total: 2.51s	remaining: 105ms
96:	learn: 8.7237295	total: 2.54s	remaining: 78.4ms
97:	learn: 8.6401509	total: 2.57s	remaining: 52.5ms
98:	learn: 8.5735108	total: 2.6s	remaining: 26.2ms
99:	learn: 8.5084579	total: 2.62s	remaining: 0us
0:	learn: 46.1633714	total: 23.7ms	remaining: 2.34s
1:	learn: 44.7904617	total: 54.5ms	remaining: 2.67s
2:	learn: 43.5292386	total: 80.2ms	remaining: 2.59s
3:	learn: 42.3776226	total: 104ms	remaining: 2.5s
4:	learn: 41.1726533	total: 129ms	remaining: 2.45s
5:	learn: 40.0256490	total: 153ms	remaining: 2.4s
6:	learn: 39.0318588	total: 177ms	remaining: 2.36s
7:	learn: 38.0361181	total: 202ms	remaining: 2.33s
8:	learn: 37.0398789	total: 226ms	remaining: 2.28s
9:	learn: 36.0525089	total: 250ms	remaining: 2.25s
10:	learn: 35.0926830	total: 274ms	remaining: 2.21s
11:	learn: 34.1467022	total: 308ms	remaining: 2.26s
12:	learn: 33.5625454	total: 334ms	remaining: 2.23s
13:	learn: 32.7993162	total: 359ms	remaining: 2.2s
14:	learn: 32.1179593	total: 384ms	remaining: 2.17s
15:	learn: 31.5382898	total: 409ms	remaining: 2.15s
16:	learn: 30.8398862	total: 434ms	remaining: 2.12s
17:	learn: 30.1060070	total: 457ms	remaining: 2.08s
18:	learn: 29.3826415	total: 482ms	remaining: 2.05s
19:	learn: 28.5809579	total: 507ms	remaining: 2.03s
20:	learn: 28.0104942	total: 536ms	remaining: 2.02s
21:	learn: 27.5189566	total: 561ms	remaining: 1.99s
22:	learn: 26.8603656	total: 584ms	remaining: 1.96s
23:	learn: 26.2547050	total: 608ms	remaining: 1.93s
24:	learn: 25.6559137	total: 633ms	remaining: 1.9s
25:	learn: 25.1148352	total: 657ms	remaining: 1.87s
26:	learn: 24.5782363	total: 681ms	remaining: 1.84s
27:	learn: 24.0350871	total: 706ms	remaining: 1.81s
28:	learn: 23.5119480	total: 732ms	remaining: 1.79s
29:	learn: 23.1119795	total: 769ms	remaining: 1.79s
30:	learn: 22.6838288	total: 794ms	remaining: 1.77s
31:	learn: 22.2554624	total: 818ms	remaining: 1.74s
32:	learn: 21.8241578	total: 844ms	remaining: 1.71s
33:	learn: 21.5062830	total: 867ms	remaining: 1.68s
34:	learn: 21.0109226	total: 891ms	remaining: 1.65s
35:	learn: 20.5518606	total: 915ms	remaining: 1.63s
36:	learn: 20.1195339	total: 940ms	remaining: 1.6s
37:	learn: 19.7143479	total: 975ms	remaining: 1.59s
38:	learn: 19.3325253	total: 1s	remaining: 1.56s
39:	learn: 19.0310706	total: 1.02s	remaining: 1.54s
40:	learn: 18.7262797	total: 1.05s	remaining: 1.51s
41:	learn: 18.3611836	total: 1.07s	remaining: 1.48s
42:	learn: 17.9960838	total: 1.09s	remaining: 1.45s
43:	learn: 17.7058991	total: 1.12s	remaining: 1.42s
44:	learn: 17.3944673	total: 1.15s	remaining: 1.4s
45:	learn: 17.1283561	total: 1.18s	remaining: 1.38s
46:	learn: 16.8406890	total: 1.2s	remaining: 1.36s
47:	learn: 16.6072061	total: 1.23s	remaining: 1.33s
48:	learn: 16.3697411	total: 1.25s	remaining: 1.3s
49:	learn: 15.9995507	total: 1.28s	remaining: 1.28s
50:	learn: 15.7372570	total: 1.3s	remaining: 1.25s
51:	learn: 15.4840152	total: 1.33s	remaining: 1.22s
52:	learn: 15.2899590	total: 1.35s	remaining: 1.2s
53:	learn: 15.0111064	total: 1.38s	remaining: 1.18s
54:	learn: 14.7504952	total: 1.41s	remaining: 1.15s
55:	learn: 14.5309762	total: 1.43s	remaining: 1.13s
56:	learn: 14.3525677	total: 1.46s	remaining: 1.1s
57:	learn: 14.1816296	total: 1.48s	remaining: 1.07s
58:	learn: 13.9958516	total: 1.5s	remaining: 1.05s
59:	learn: 13.8356735	total: 1.53s	remaining: 1.02s
60:	learn: 13.6499824	total: 1.55s	remaining: 993ms
61:	learn: 13.4621357	total: 1.59s	remaining: 978ms
62:	learn: 13.3234970	total: 1.63s	remaining: 956ms
63:	learn: 13.1407122	total: 1.66s	remaining: 932ms
64:	learn: 13.0161177	total: 1.68s	remaining: 907ms
65:	learn: 12.8361175	total: 1.71s	remaining: 882ms
66:	learn: 12.7103117	total: 1.74s	remaining: 857ms
67:	learn: 12.5145429	total: 1.77s	remaining: 832ms
68:	learn: 12.3966318	total: 1.8s	remaining: 808ms
69:	learn: 12.2175623	total: 1.83s	remaining: 785ms
70:	learn: 12.0455583	total: 1.86s	remaining: 759ms
71:	learn: 11.9190589	total: 1.89s	remaining: 736ms
72:	learn: 11.7990452	total: 1.92s	remaining: 710ms
73:	learn: 11.6735331	total: 1.95s	remaining: 684ms
74:	learn: 11.5694753	total: 1.98s	remaining: 659ms
75:	learn: 11.4471422	total: 2.01s	remaining: 636ms
76:	learn: 11.3357642	total: 2.04s	remaining: 611ms
77:	learn: 11.2160164	total: 2.07s	remaining: 585ms
78:	learn: 11.1477947	total: 2.1s	remaining: 558ms
79:	learn: 11.0733969	total: 2.14s	remaining: 534ms
80:	learn: 10.9851608	total: 2.16s	remaining: 508ms
81:	learn: 10.8669537	total: 2.19s	remaining: 481ms
82:	learn: 10.7846130	total: 2.22s	remaining: 454ms
83:	learn: 10.6429068	total: 2.25s	remaining: 428ms
84:	learn: 10.5485368	total: 2.28s	remaining: 402ms
85:	learn: 10.4626750	total: 2.3s	remaining: 375ms
86:	learn: 10.3487863	total: 2.33s	remaining: 348ms
87:	learn: 10.2608682	total: 2.37s	remaining: 323ms
88:	learn: 10.1492862	total: 2.39s	remaining: 296ms
89:	learn: 10.0825429	total: 2.42s	remaining: 269ms
90:	learn: 9.9668337	total: 2.45s	remaining: 242ms
91:	learn: 9.8924239	total: 2.48s	remaining: 216ms
92:	learn: 9.7959729	total: 2.51s	remaining: 189ms
93:	learn: 9.7342503	total: 2.54s	remaining: 162ms
94:	learn: 9.6266181	total: 2.57s	remaining: 135ms
95:	learn: 9.5607316	total: 2.6s	remaining: 108ms
96:	learn: 9.4615938	total: 2.63s	remaining: 81.4ms
97:	learn: 9.3562852	total: 2.67s	remaining: 54.4ms
98:	learn: 9.2518786	total: 2.7s	remaining: 27.2ms
99:	learn: 9.2130065	total: 2.72s	remaining: 0us
0:	learn: 45.6477780	total: 27ms	remaining: 2.67s
1:	learn: 44.3885048	total: 54.2ms	remaining: 2.65s
2:	learn: 43.1316502	total: 82.8ms	remaining: 2.68s
3:	learn: 41.8123054	total: 121ms	remaining: 2.9s
4:	learn: 40.7214533	total: 157ms	remaining: 2.98s
5:	learn: 39.6276122	total: 184ms	remaining: 2.88s
6:	learn: 38.6471225	total: 213ms	remaining: 2.83s
7:	learn: 37.7493668	total: 240ms	remaining: 2.76s
8:	learn: 36.7733816	total: 266ms	remaining: 2.69s
9:	learn: 36.1233521	total: 294ms	remaining: 2.65s
10:	learn: 35.5715091	total: 329ms	remaining: 2.66s
11:	learn: 34.6287751	total: 358ms	remaining: 2.63s
12:	learn: 33.8024988	total: 392ms	remaining: 2.62s
13:	learn: 33.0699864	total: 419ms	remaining: 2.57s
14:	learn: 32.2267139	total: 446ms	remaining: 2.53s
15:	learn: 31.4879090	total: 473ms	remaining: 2.48s
16:	learn: 30.6681130	total: 499ms	remaining: 2.44s
17:	learn: 29.9739192	total: 527ms	remaining: 2.4s
18:	learn: 29.3293065	total: 562ms	remaining: 2.4s
19:	learn: 28.5893418	total: 590ms	remaining: 2.36s
20:	learn: 28.0793862	total: 627ms	remaining: 2.36s
21:	learn: 27.5553702	total: 655ms	remaining: 2.32s
22:	learn: 27.0123732	total: 682ms	remaining: 2.28s
23:	learn: 26.3897992	total: 708ms	remaining: 2.24s
24:	learn: 25.7405079	total: 738ms	remaining: 2.21s
25:	learn: 25.2366375	total: 771ms	remaining: 2.19s
26:	learn: 24.8040727	total: 799ms	remaining: 2.16s
27:	learn: 24.3831145	total: 825ms	remaining: 2.12s
28:	learn: 23.9264258	total: 851ms	remaining: 2.08s
29:	learn: 23.4965665	total: 884ms	remaining: 2.06s
30:	learn: 23.0750907	total: 912ms	remaining: 2.03s
31:	learn: 22.6177456	total: 940ms	remaining: 2s
32:	learn: 22.1936903	total: 979ms	remaining: 1.99s
33:	learn: 21.7237373	total: 1.01s	remaining: 1.95s
34:	learn: 21.2885821	total: 1.03s	remaining: 1.92s
35:	learn: 20.8773820	total: 1.06s	remaining: 1.89s
36:	learn: 20.5069022	total: 1.09s	remaining: 1.85s
37:	learn: 20.1026772	total: 1.13s	remaining: 1.83s
38:	learn: 19.7278063	total: 1.16s	remaining: 1.81s
39:	learn: 19.4576176	total: 1.18s	remaining: 1.77s
40:	learn: 19.1716041	total: 1.21s	remaining: 1.74s
41:	learn: 18.8541728	total: 1.24s	remaining: 1.71s
42:	learn: 18.6411979	total: 1.26s	remaining: 1.68s
43:	learn: 18.3146636	total: 1.29s	remaining: 1.64s
44:	learn: 18.0208582	total: 1.32s	remaining: 1.61s
45:	learn: 17.7344521	total: 1.34s	remaining: 1.58s
46:	learn: 17.4797974	total: 1.39s	remaining: 1.56s
47:	learn: 17.2182299	total: 1.41s	remaining: 1.53s
48:	learn: 16.9607453	total: 1.44s	remaining: 1.5s
49:	learn: 16.7297863	total: 1.47s	remaining: 1.47s
50:	learn: 16.4913674	total: 1.5s	remaining: 1.44s
51:	learn: 16.2886548	total: 1.52s	remaining: 1.41s
52:	learn: 16.0297055	total: 1.55s	remaining: 1.38s
53:	learn: 15.8558289	total: 1.58s	remaining: 1.34s
54:	learn: 15.6256772	total: 1.62s	remaining: 1.32s
55:	learn: 15.4571057	total: 1.65s	remaining: 1.29s
56:	learn: 15.2857211	total: 1.67s	remaining: 1.26s
57:	learn: 15.0790849	total: 1.7s	remaining: 1.23s
58:	learn: 14.8706573	total: 1.73s	remaining: 1.2s
59:	learn: 14.7142314	total: 1.75s	remaining: 1.17s
60:	learn: 14.5574075	total: 1.78s	remaining: 1.14s
61:	learn: 14.3831719	total: 1.82s	remaining: 1.11s
62:	learn: 14.2429846	total: 1.85s	remaining: 1.09s
63:	learn: 14.0982260	total: 1.88s	remaining: 1.06s
64:	learn: 13.9793470	total: 1.91s	remaining: 1.03s
65:	learn: 13.7843655	total: 1.94s	remaining: 998ms
66:	learn: 13.6382336	total: 1.96s	remaining: 968ms
67:	learn: 13.5395713	total: 1.99s	remaining: 937ms
68:	learn: 13.3797741	total: 2.02s	remaining: 907ms
69:	learn: 13.2910103	total: 2.05s	remaining: 880ms
70:	learn: 13.1587887	total: 2.08s	remaining: 850ms
71:	learn: 13.0464642	total: 2.12s	remaining: 823ms
72:	learn: 12.9189091	total: 2.14s	remaining: 793ms
73:	learn: 12.8056893	total: 2.17s	remaining: 763ms
74:	learn: 12.6904403	total: 2.2s	remaining: 733ms
75:	learn: 12.5608506	total: 2.23s	remaining: 704ms
76:	learn: 12.4712551	total: 2.26s	remaining: 676ms
77:	learn: 12.3371889	total: 2.29s	remaining: 646ms
78:	learn: 12.2449022	total: 2.32s	remaining: 616ms
79:	learn: 12.2163788	total: 2.35s	remaining: 588ms
80:	learn: 12.1464820	total: 2.38s	remaining: 558ms
81:	learn: 12.0001066	total: 2.41s	remaining: 528ms
82:	learn: 11.8843691	total: 2.43s	remaining: 499ms
83:	learn: 11.7638631	total: 2.46s	remaining: 469ms
84:	learn: 11.6389646	total: 2.5s	remaining: 441ms
85:	learn: 11.5343065	total: 2.52s	remaining: 411ms
86:	learn: 11.4267531	total: 2.55s	remaining: 381ms
87:	learn: 11.3136728	total: 2.58s	remaining: 352ms
88:	learn: 11.2361574	total: 2.61s	remaining: 323ms
89:	learn: 11.1507886	total: 2.64s	remaining: 293ms
90:	learn: 11.0988952	total: 2.67s	remaining: 264ms
91:	learn: 10.9988426	total: 2.7s	remaining: 235ms
92:	learn: 10.9584792	total: 2.73s	remaining: 205ms
93:	learn: 10.8771461	total: 2.75s	remaining: 176ms
94:	learn: 10.8161358	total: 2.78s	remaining: 147ms
95:	learn: 10.7524450	total: 2.81s	remaining: 117ms
96:	learn: 10.6566836	total: 2.85s	remaining: 88ms
97:	learn: 10.5550602	total: 2.87s	remaining: 58.6ms
98:	learn: 10.4790583	total: 2.9s	remaining: 29.3ms
99:	learn: 10.4087354	total: 2.93s	remaining: 0us
0:	learn: 46.5398832	total: 25.9ms	remaining: 2.56s
1:	learn: 45.3142618	total: 53ms	remaining: 2.6s
2:	learn: 44.0378137	total: 79.3ms	remaining: 2.56s
3:	learn: 42.7976734	total: 107ms	remaining: 2.56s
4:	learn: 41.7080859	total: 149ms	remaining: 2.83s
5:	learn: 40.4513327	total: 176ms	remaining: 2.75s
6:	learn: 39.4903346	total: 204ms	remaining: 2.71s
7:	learn: 38.3767870	total: 232ms	remaining: 2.67s
8:	learn: 37.4056810	total: 261ms	remaining: 2.63s
9:	learn: 36.4947716	total: 287ms	remaining: 2.58s
10:	learn: 35.4421832	total: 314ms	remaining: 2.54s
11:	learn: 34.6183487	total: 328ms	remaining: 2.4s
12:	learn: 33.9603524	total: 363ms	remaining: 2.43s
13:	learn: 33.0635534	total: 399ms	remaining: 2.45s
14:	learn: 32.2067999	total: 425ms	remaining: 2.41s
15:	learn: 31.3961282	total: 452ms	remaining: 2.37s
16:	learn: 30.7113239	total: 478ms	remaining: 2.33s
17:	learn: 29.9919005	total: 505ms	remaining: 2.3s
18:	learn: 29.4016891	total: 532ms	remaining: 2.27s
19:	learn: 28.7435066	total: 560ms	remaining: 2.24s
20:	learn: 28.2283605	total: 597ms	remaining: 2.25s
21:	learn: 27.6749781	total: 633ms	remaining: 2.24s
22:	learn: 27.1695356	total: 661ms	remaining: 2.21s
23:	learn: 26.6842901	total: 689ms	remaining: 2.18s
24:	learn: 26.0987344	total: 716ms	remaining: 2.15s
25:	learn: 25.5266873	total: 742ms	remaining: 2.11s
26:	learn: 25.0200431	total: 770ms	remaining: 2.08s
27:	learn: 24.5972016	total: 803ms	remaining: 2.06s
28:	learn: 24.1557061	total: 830ms	remaining: 2.03s
29:	learn: 23.7405036	total: 857ms	remaining: 2s
30:	learn: 23.3574513	total: 891ms	remaining: 1.98s
31:	learn: 23.0493499	total: 917ms	remaining: 1.95s
32:	learn: 22.6480655	total: 946ms	remaining: 1.92s
33:	learn: 22.2777353	total: 974ms	remaining: 1.89s
34:	learn: 21.8294628	total: 1.01s	remaining: 1.87s
35:	learn: 21.4783115	total: 1.04s	remaining: 1.84s
36:	learn: 21.1271427	total: 1.06s	remaining: 1.81s
37:	learn: 20.7967443	total: 1.09s	remaining: 1.78s
38:	learn: 20.4949793	total: 1.13s	remaining: 1.76s
39:	learn: 20.1991695	total: 1.15s	remaining: 1.73s
40:	learn: 19.8869467	total: 1.18s	remaining: 1.7s
41:	learn: 19.5656862	total: 1.22s	remaining: 1.68s
42:	learn: 19.2415335	total: 1.24s	remaining: 1.65s
43:	learn: 18.9725471	total: 1.27s	remaining: 1.62s
44:	learn: 18.7035722	total: 1.29s	remaining: 1.58s
45:	learn: 18.3840395	total: 1.32s	remaining: 1.55s
46:	learn: 18.1486662	total: 1.36s	remaining: 1.53s
47:	learn: 17.8740440	total: 1.38s	remaining: 1.5s
48:	learn: 17.6056273	total: 1.42s	remaining: 1.48s
49:	learn: 17.4011083	total: 1.45s	remaining: 1.45s
50:	learn: 17.1935449	total: 1.48s	remaining: 1.42s
51:	learn: 16.9415227	total: 1.5s	remaining: 1.39s
52:	learn: 16.6568624	total: 1.53s	remaining: 1.36s
53:	learn: 16.4254479	total: 1.56s	remaining: 1.33s
54:	learn: 16.1958120	total: 1.59s	remaining: 1.3s
55:	learn: 15.9494332	total: 1.63s	remaining: 1.28s
56:	learn: 15.7736632	total: 1.66s	remaining: 1.25s
57:	learn: 15.6314122	total: 1.68s	remaining: 1.22s
58:	learn: 15.3707626	total: 1.71s	remaining: 1.19s
59:	learn: 15.2211664	total: 1.74s	remaining: 1.16s
60:	learn: 14.9939278	total: 1.76s	remaining: 1.13s
61:	learn: 14.8327626	total: 1.79s	remaining: 1.1s
62:	learn: 14.6555776	total: 1.82s	remaining: 1.07s
63:	learn: 14.5516961	total: 1.86s	remaining: 1.05s
64:	learn: 14.3660780	total: 1.89s	remaining: 1.02s
65:	learn: 14.1721909	total: 1.92s	remaining: 987ms
66:	learn: 14.0877696	total: 1.94s	remaining: 957ms
67:	learn: 13.9435793	total: 1.97s	remaining: 927ms
68:	learn: 13.7745805	total: 2s	remaining: 897ms
69:	learn: 13.6490858	total: 2.02s	remaining: 867ms
70:	learn: 13.5022080	total: 2.06s	remaining: 840ms
71:	learn: 13.3922163	total: 2.08s	remaining: 811ms
72:	learn: 13.2842701	total: 2.12s	remaining: 784ms
73:	learn: 13.1698693	total: 2.15s	remaining: 754ms
74:	learn: 13.0256610	total: 2.17s	remaining: 724ms
75:	learn: 12.8855147	total: 2.2s	remaining: 695ms
76:	learn: 12.7807971	total: 2.23s	remaining: 665ms
77:	learn: 12.6618407	total: 2.25s	remaining: 636ms
78:	learn: 12.5369866	total: 2.28s	remaining: 607ms
79:	learn: 12.4376925	total: 2.32s	remaining: 580ms
80:	learn: 12.3005012	total: 2.35s	remaining: 552ms
81:	learn: 12.1751315	total: 2.38s	remaining: 523ms
82:	learn: 12.0612289	total: 2.41s	remaining: 494ms
83:	learn: 11.9757193	total: 2.44s	remaining: 464ms
84:	learn: 11.8530411	total: 2.46s	remaining: 435ms
85:	learn: 11.7523616	total: 2.49s	remaining: 405ms
86:	learn: 11.6645272	total: 2.52s	remaining: 377ms
87:	learn: 11.5645111	total: 2.55s	remaining: 348ms
88:	learn: 11.4692480	total: 2.58s	remaining: 319ms
89:	learn: 11.3724902	total: 2.61s	remaining: 290ms
90:	learn: 11.2842147	total: 2.64s	remaining: 261ms
91:	learn: 11.1868295	total: 2.67s	remaining: 232ms
92:	learn: 11.0293625	total: 2.69s	remaining: 203ms
93:	learn: 10.9495625	total: 2.72s	remaining: 174ms
94:	learn: 10.8608168	total: 2.76s	remaining: 145ms
95:	learn: 10.7804780	total: 2.79s	remaining: 116ms
96:	learn: 10.6503623	total: 2.81s	remaining: 87.1ms
97:	learn: 10.5906748	total: 2.85s	remaining: 58.1ms
98:	learn: 10.4539468	total: 2.88s	remaining: 29.1ms
99:	learn: 10.3804160	total: 2.9s	remaining: 0us
0:	learn: 27.3441720	total: 31ms	remaining: 3.06s
1:	learn: 26.7159954	total: 56.6ms	remaining: 2.77s
2:	learn: 26.0850318	total: 78.6ms	remaining: 2.54s
3:	learn: 25.4039656	total: 102ms	remaining: 2.45s
4:	learn: 24.7930659	total: 125ms	remaining: 2.38s
5:	learn: 24.2028590	total: 148ms	remaining: 2.31s
6:	learn: 23.6622902	total: 169ms	remaining: 2.25s
7:	learn: 23.1531175	total: 191ms	remaining: 2.2s
8:	learn: 22.7050792	total: 211ms	remaining: 2.14s
9:	learn: 22.2151788	total: 233ms	remaining: 2.1s
10:	learn: 21.7708844	total: 257ms	remaining: 2.08s
11:	learn: 21.2587174	total: 280ms	remaining: 2.06s
12:	learn: 20.7559870	total: 306ms	remaining: 2.04s
13:	learn: 20.3040842	total: 337ms	remaining: 2.07s
14:	learn: 19.9019524	total: 361ms	remaining: 2.05s
15:	learn: 19.5186012	total: 384ms	remaining: 2.02s
16:	learn: 19.1521621	total: 409ms	remaining: 2s
17:	learn: 18.7652180	total: 433ms	remaining: 1.97s
18:	learn: 18.4446446	total: 455ms	remaining: 1.94s
19:	learn: 18.0977650	total: 476ms	remaining: 1.9s
20:	learn: 17.7791328	total: 500ms	remaining: 1.88s
21:	learn: 17.4777648	total: 528ms	remaining: 1.87s
22:	learn: 17.1794361	total: 552ms	remaining: 1.85s
23:	learn: 16.8685032	total: 573ms	remaining: 1.81s
24:	learn: 16.6274695	total: 596ms	remaining: 1.79s
25:	learn: 16.3071099	total: 618ms	remaining: 1.76s
26:	learn: 16.0249663	total: 641ms	remaining: 1.73s
27:	learn: 15.7535309	total: 662ms	remaining: 1.7s
28:	learn: 15.4777235	total: 683ms	remaining: 1.67s
29:	learn: 15.2410825	total: 704ms	remaining: 1.64s
30:	learn: 15.0133002	total: 726ms	remaining: 1.62s
31:	learn: 14.8018912	total: 762ms	remaining: 1.62s
32:	learn: 14.5701546	total: 786ms	remaining: 1.6s
33:	learn: 14.3799060	total: 810ms	remaining: 1.57s
34:	learn: 14.0975095	total: 833ms	remaining: 1.55s
35:	learn: 13.8873493	total: 858ms	remaining: 1.52s
36:	learn: 13.6812023	total: 879ms	remaining: 1.5s
37:	learn: 13.4943017	total: 899ms	remaining: 1.47s
38:	learn: 13.3224094	total: 922ms	remaining: 1.44s
39:	learn: 13.0967901	total: 950ms	remaining: 1.42s
40:	learn: 12.9138190	total: 975ms	remaining: 1.4s
41:	learn: 12.7764458	total: 997ms	remaining: 1.38s
42:	learn: 12.6593656	total: 1.02s	remaining: 1.35s
43:	learn: 12.5051105	total: 1.04s	remaining: 1.32s
44:	learn: 12.3057146	total: 1.06s	remaining: 1.3s
45:	learn: 12.1487674	total: 1.08s	remaining: 1.27s
46:	learn: 11.9614903	total: 1.1s	remaining: 1.25s
47:	learn: 11.7921265	total: 1.13s	remaining: 1.22s
48:	learn: 11.6572640	total: 1.16s	remaining: 1.2s
49:	learn: 11.5251463	total: 1.18s	remaining: 1.18s
50:	learn: 11.3789931	total: 1.21s	remaining: 1.16s
51:	learn: 11.2691375	total: 1.23s	remaining: 1.14s
52:	learn: 11.1161131	total: 1.26s	remaining: 1.11s
53:	learn: 11.0246399	total: 1.28s	remaining: 1.09s
54:	learn: 10.9152420	total: 1.3s	remaining: 1.06s
55:	learn: 10.7746769	total: 1.32s	remaining: 1.04s
56:	learn: 10.6222917	total: 1.35s	remaining: 1.01s
57:	learn: 10.5096115	total: 1.37s	remaining: 992ms
58:	learn: 10.3857030	total: 1.4s	remaining: 971ms
59:	learn: 10.2789057	total: 1.42s	remaining: 946ms
60:	learn: 10.1490749	total: 1.44s	remaining: 921ms
61:	learn: 10.0553291	total: 1.46s	remaining: 896ms
62:	learn: 9.9351043	total: 1.48s	remaining: 871ms
63:	learn: 9.8245261	total: 1.5s	remaining: 846ms
64:	learn: 9.7207577	total: 1.52s	remaining: 821ms
65:	learn: 9.5920661	total: 1.55s	remaining: 797ms
66:	learn: 9.4832767	total: 1.57s	remaining: 773ms
67:	learn: 9.3724149	total: 1.59s	remaining: 750ms
68:	learn: 9.2459801	total: 1.63s	remaining: 731ms
69:	learn: 9.1740635	total: 1.65s	remaining: 707ms
70:	learn: 9.1015730	total: 1.67s	remaining: 683ms
71:	learn: 9.0196460	total: 1.7s	remaining: 660ms
72:	learn: 8.9458977	total: 1.72s	remaining: 636ms
73:	learn: 8.8434400	total: 1.74s	remaining: 612ms
74:	learn: 8.7495151	total: 1.76s	remaining: 588ms
75:	learn: 8.6521348	total: 1.79s	remaining: 564ms
76:	learn: 8.5654483	total: 1.81s	remaining: 541ms
77:	learn: 8.4965765	total: 1.84s	remaining: 518ms
78:	learn: 8.4308736	total: 1.86s	remaining: 495ms
79:	learn: 8.3675601	total: 1.88s	remaining: 471ms
80:	learn: 8.3193887	total: 1.91s	remaining: 447ms
81:	learn: 8.2507990	total: 1.93s	remaining: 423ms
82:	learn: 8.1583259	total: 1.95s	remaining: 399ms
83:	learn: 8.0995902	total: 1.97s	remaining: 375ms
84:	learn: 8.0236655	total: 1.99s	remaining: 352ms
85:	learn: 7.9634698	total: 2.02s	remaining: 329ms
86:	learn: 7.9109081	total: 2.05s	remaining: 306ms
87:	learn: 7.8385006	total: 2.07s	remaining: 283ms
88:	learn: 7.7859488	total: 2.1s	remaining: 259ms
89:	learn: 7.7270142	total: 2.12s	remaining: 236ms
90:	learn: 7.6774253	total: 2.14s	remaining: 212ms
91:	learn: 7.6126552	total: 2.17s	remaining: 188ms
92:	learn: 7.5392178	total: 2.19s	remaining: 165ms
93:	learn: 7.4745082	total: 2.21s	remaining: 141ms
94:	learn: 7.4106939	total: 2.24s	remaining: 118ms
95:	learn: 7.3573350	total: 2.26s	remaining: 94.3ms
96:	learn: 7.2889777	total: 2.28s	remaining: 70.7ms
97:	learn: 7.2204939	total: 2.31s	remaining: 47.1ms
98:	learn: 7.1646465	total: 2.33s	remaining: 23.5ms
99:	learn: 7.1204610	total: 2.35s	remaining: 0us
0:	learn: 42.5494645	total: 21ms	remaining: 2.08s
1:	learn: 41.2913513	total: 41.9ms	remaining: 2.05s
2:	learn: 40.1676527	total: 73.3ms	remaining: 2.37s
3:	learn: 38.7664819	total: 97.9ms	remaining: 2.35s
4:	learn: 37.5407492	total: 121ms	remaining: 2.3s
5:	learn: 36.4295331	total: 142ms	remaining: 2.23s
6:	learn: 35.2895967	total: 164ms	remaining: 2.18s
7:	learn: 34.1884539	total: 186ms	remaining: 2.14s
8:	learn: 33.1817690	total: 207ms	remaining: 2.1s
9:	learn: 32.3518195	total: 228ms	remaining: 2.05s
10:	learn: 31.4837515	total: 249ms	remaining: 2.02s
11:	learn: 30.7255972	total: 271ms	remaining: 1.99s
12:	learn: 29.9298648	total: 298ms	remaining: 1.99s
13:	learn: 29.0574249	total: 322ms	remaining: 1.98s
14:	learn: 28.4097384	total: 343ms	remaining: 1.94s
15:	learn: 27.5317445	total: 362ms	remaining: 1.9s
16:	learn: 26.7911946	total: 382ms	remaining: 1.87s
17:	learn: 26.1103465	total: 405ms	remaining: 1.84s
18:	learn: 25.5295903	total: 426ms	remaining: 1.82s
19:	learn: 24.8544960	total: 448ms	remaining: 1.79s
20:	learn: 24.2772682	total: 469ms	remaining: 1.76s
21:	learn: 23.6936944	total: 490ms	remaining: 1.74s
22:	learn: 23.1300945	total: 522ms	remaining: 1.75s
23:	learn: 22.5333494	total: 547ms	remaining: 1.73s
24:	learn: 22.0553465	total: 570ms	remaining: 1.71s
25:	learn: 21.6253628	total: 593ms	remaining: 1.69s
26:	learn: 21.1396219	total: 616ms	remaining: 1.67s
27:	learn: 20.7382905	total: 638ms	remaining: 1.64s
28:	learn: 20.3233915	total: 659ms	remaining: 1.61s
29:	learn: 19.9323992	total: 683ms	remaining: 1.59s
30:	learn: 19.5650439	total: 710ms	remaining: 1.58s
31:	learn: 19.2165649	total: 733ms	remaining: 1.56s
32:	learn: 18.8890056	total: 756ms	remaining: 1.53s
33:	learn: 18.5523762	total: 777ms	remaining: 1.51s
34:	learn: 18.2666116	total: 798ms	remaining: 1.48s
35:	learn: 17.9216926	total: 819ms	remaining: 1.46s
36:	learn: 17.6118879	total: 842ms	remaining: 1.43s
37:	learn: 17.2653313	total: 863ms	remaining: 1.41s
38:	learn: 16.9946585	total: 886ms	remaining: 1.39s
39:	learn: 16.6842506	total: 909ms	remaining: 1.36s
40:	learn: 16.4102287	total: 943ms	remaining: 1.36s
41:	learn: 16.2288795	total: 969ms	remaining: 1.34s
42:	learn: 15.9623692	total: 993ms	remaining: 1.31s
43:	learn: 15.7308231	total: 1.01s	remaining: 1.29s
44:	learn: 15.4695555	total: 1.04s	remaining: 1.27s
45:	learn: 15.2706809	total: 1.06s	remaining: 1.24s
46:	learn: 15.0182699	total: 1.08s	remaining: 1.22s
47:	learn: 14.7702088	total: 1.1s	remaining: 1.19s
48:	learn: 14.6303566	total: 1.12s	remaining: 1.17s
49:	learn: 14.4038016	total: 1.14s	remaining: 1.14s
50:	learn: 14.2309807	total: 1.17s	remaining: 1.13s
51:	learn: 14.0308425	total: 1.2s	remaining: 1.1s
52:	learn: 13.8201931	total: 1.22s	remaining: 1.08s
53:	learn: 13.6070078	total: 1.24s	remaining: 1.05s
54:	learn: 13.4230690	total: 1.26s	remaining: 1.03s
55:	learn: 13.2368649	total: 1.28s	remaining: 1s
56:	learn: 13.0449556	total: 1.3s	remaining: 981ms
57:	learn: 12.8375669	total: 1.32s	remaining: 955ms
58:	learn: 12.6795194	total: 1.34s	remaining: 932ms
59:	learn: 12.5197211	total: 1.36s	remaining: 909ms
60:	learn: 12.4011717	total: 1.39s	remaining: 891ms
61:	learn: 12.2396104	total: 1.42s	remaining: 869ms
62:	learn: 12.0647878	total: 1.44s	remaining: 846ms
63:	learn: 11.9247719	total: 1.48s	remaining: 831ms
64:	learn: 11.7923634	total: 1.5s	remaining: 809ms
65:	learn: 11.6628246	total: 1.52s	remaining: 785ms
66:	learn: 11.5688935	total: 1.55s	remaining: 763ms
67:	learn: 11.4345056	total: 1.57s	remaining: 740ms
68:	learn: 11.3136955	total: 1.61s	remaining: 722ms
69:	learn: 11.2040357	total: 1.63s	remaining: 700ms
70:	learn: 11.1067773	total: 1.66s	remaining: 677ms
71:	learn: 10.9728105	total: 1.68s	remaining: 654ms
72:	learn: 10.8338607	total: 1.7s	remaining: 630ms
73:	learn: 10.7202016	total: 1.74s	remaining: 610ms
74:	learn: 10.5983746	total: 1.76s	remaining: 586ms
75:	learn: 10.4882458	total: 1.78s	remaining: 563ms
76:	learn: 10.3827604	total: 1.81s	remaining: 541ms
77:	learn: 10.2485726	total: 1.84s	remaining: 520ms
78:	learn: 10.1524716	total: 1.87s	remaining: 497ms
79:	learn: 10.0765127	total: 1.89s	remaining: 473ms
80:	learn: 9.9617067	total: 1.92s	remaining: 450ms
81:	learn: 9.8357151	total: 1.94s	remaining: 427ms
82:	learn: 9.7311644	total: 1.97s	remaining: 403ms
83:	learn: 9.6314802	total: 2s	remaining: 381ms
84:	learn: 9.5137958	total: 2.02s	remaining: 358ms
85:	learn: 9.4420485	total: 2.05s	remaining: 334ms
86:	learn: 9.3959294	total: 2.08s	remaining: 310ms
87:	learn: 9.3057742	total: 2.1s	remaining: 286ms
88:	learn: 9.2031484	total: 2.12s	remaining: 262ms
89:	learn: 9.0996948	total: 2.15s	remaining: 239ms
90:	learn: 9.0492278	total: 2.17s	remaining: 215ms
91:	learn: 8.9400377	total: 2.19s	remaining: 191ms
92:	learn: 8.8904458	total: 2.22s	remaining: 167ms
93:	learn: 8.8102982	total: 2.26s	remaining: 144ms
94:	learn: 8.7445451	total: 2.28s	remaining: 120ms
95:	learn: 8.6796106	total: 2.31s	remaining: 96.1ms
96:	learn: 8.5875790	total: 2.33s	remaining: 72.1ms
97:	learn: 8.5086871	total: 2.35s	remaining: 48.1ms
98:	learn: 8.4547244	total: 2.38s	remaining: 24ms
99:	learn: 8.3841281	total: 2.4s	remaining: 0us
0:	learn: 46.2258117	total: 2.7ms	remaining: 267ms
1:	learn: 45.1253456	total: 25.3ms	remaining: 1.24s
2:	learn: 43.7311767	total: 50ms	remaining: 1.62s
3:	learn: 42.4252819	total: 71.1ms	remaining: 1.71s
4:	learn: 41.1436655	total: 91.7ms	remaining: 1.74s
5:	learn: 40.0337136	total: 113ms	remaining: 1.76s
6:	learn: 38.9102686	total: 134ms	remaining: 1.78s
7:	learn: 37.7859737	total: 158ms	remaining: 1.81s
8:	learn: 36.7646905	total: 183ms	remaining: 1.85s
9:	learn: 35.9495481	total: 215ms	remaining: 1.94s
10:	learn: 35.0558185	total: 236ms	remaining: 1.91s
11:	learn: 34.1958090	total: 260ms	remaining: 1.91s
12:	learn: 33.3514013	total: 284ms	remaining: 1.9s
13:	learn: 32.3317086	total: 309ms	remaining: 1.9s
14:	learn: 31.5611046	total: 330ms	remaining: 1.87s
15:	learn: 30.6373573	total: 352ms	remaining: 1.85s
16:	learn: 29.8883669	total: 376ms	remaining: 1.84s
17:	learn: 29.2985952	total: 401ms	remaining: 1.83s
18:	learn: 28.6360550	total: 434ms	remaining: 1.85s
19:	learn: 27.9757056	total: 458ms	remaining: 1.83s
20:	learn: 27.2585835	total: 481ms	remaining: 1.81s
21:	learn: 26.6366391	total: 503ms	remaining: 1.78s
22:	learn: 26.1055455	total: 525ms	remaining: 1.75s
23:	learn: 25.4961568	total: 547ms	remaining: 1.73s
24:	learn: 25.1037435	total: 568ms	remaining: 1.7s
25:	learn: 24.5258982	total: 591ms	remaining: 1.68s
26:	learn: 23.9974764	total: 612ms	remaining: 1.66s
27:	learn: 23.5108419	total: 646ms	remaining: 1.66s
28:	learn: 23.0835773	total: 671ms	remaining: 1.64s
29:	learn: 22.5744350	total: 695ms	remaining: 1.62s
30:	learn: 22.1357783	total: 718ms	remaining: 1.6s
31:	learn: 21.7316226	total: 744ms	remaining: 1.58s
32:	learn: 21.4082899	total: 765ms	remaining: 1.55s
33:	learn: 20.9640138	total: 788ms	remaining: 1.53s
34:	learn: 20.6379417	total: 811ms	remaining: 1.51s
35:	learn: 20.2688010	total: 841ms	remaining: 1.49s
36:	learn: 19.8479214	total: 864ms	remaining: 1.47s
37:	learn: 19.5684638	total: 887ms	remaining: 1.45s
38:	learn: 19.1826919	total: 908ms	remaining: 1.42s
39:	learn: 18.9583308	total: 929ms	remaining: 1.39s
40:	learn: 18.6736002	total: 951ms	remaining: 1.37s
41:	learn: 18.3525328	total: 974ms	remaining: 1.34s
42:	learn: 17.9954191	total: 994ms	remaining: 1.32s
43:	learn: 17.6991520	total: 1.02s	remaining: 1.29s
44:	learn: 17.3697888	total: 1.04s	remaining: 1.27s
45:	learn: 17.0519636	total: 1.07s	remaining: 1.25s
46:	learn: 16.7829795	total: 1.1s	remaining: 1.24s
47:	learn: 16.5108695	total: 1.12s	remaining: 1.21s
48:	learn: 16.2366816	total: 1.15s	remaining: 1.19s
49:	learn: 15.9947350	total: 1.17s	remaining: 1.17s
50:	learn: 15.7513561	total: 1.19s	remaining: 1.14s
51:	learn: 15.4328481	total: 1.21s	remaining: 1.12s
52:	learn: 15.2497907	total: 1.23s	remaining: 1.09s
53:	learn: 15.0417076	total: 1.26s	remaining: 1.07s
54:	learn: 14.8861891	total: 1.28s	remaining: 1.05s
55:	learn: 14.6497794	total: 1.31s	remaining: 1.03s
56:	learn: 14.3664771	total: 1.33s	remaining: 1s
57:	learn: 14.2358168	total: 1.35s	remaining: 980ms
58:	learn: 14.0712722	total: 1.38s	remaining: 956ms
59:	learn: 13.9191649	total: 1.4s	remaining: 931ms
60:	learn: 13.7032356	total: 1.42s	remaining: 906ms
61:	learn: 13.5029041	total: 1.44s	remaining: 882ms
62:	learn: 13.3568908	total: 1.46s	remaining: 858ms
63:	learn: 13.1332696	total: 1.48s	remaining: 835ms
64:	learn: 13.0323137	total: 1.51s	remaining: 816ms
65:	learn: 12.8622078	total: 1.54s	remaining: 794ms
66:	learn: 12.7088186	total: 1.56s	remaining: 770ms
67:	learn: 12.5524646	total: 1.59s	remaining: 747ms
68:	learn: 12.4646011	total: 1.61s	remaining: 724ms
69:	learn: 12.3900687	total: 1.63s	remaining: 700ms
70:	learn: 12.2908367	total: 1.65s	remaining: 676ms
71:	learn: 12.1294405	total: 1.68s	remaining: 652ms
72:	learn: 12.0359996	total: 1.7s	remaining: 630ms
73:	learn: 11.9244352	total: 1.73s	remaining: 608ms
74:	learn: 11.8312038	total: 1.75s	remaining: 584ms
75:	learn: 11.6622123	total: 1.77s	remaining: 560ms
76:	learn: 11.5959180	total: 1.79s	remaining: 536ms
77:	learn: 11.4538852	total: 1.81s	remaining: 512ms
78:	learn: 11.3700375	total: 1.84s	remaining: 488ms
79:	learn: 11.2101447	total: 1.86s	remaining: 465ms
80:	learn: 11.0614634	total: 1.88s	remaining: 441ms
81:	learn: 10.9029225	total: 1.91s	remaining: 420ms
82:	learn: 10.7792030	total: 1.94s	remaining: 397ms
83:	learn: 10.6279451	total: 1.96s	remaining: 374ms
84:	learn: 10.5530267	total: 1.99s	remaining: 350ms
85:	learn: 10.4577150	total: 2.01s	remaining: 327ms
86:	learn: 10.4076417	total: 2.03s	remaining: 303ms
87:	learn: 10.3166632	total: 2.06s	remaining: 280ms
88:	learn: 10.2018151	total: 2.08s	remaining: 257ms
89:	learn: 10.0698484	total: 2.1s	remaining: 233ms
90:	learn: 10.0162824	total: 2.12s	remaining: 210ms
91:	learn: 9.9352639	total: 2.15s	remaining: 187ms
92:	learn: 9.8316734	total: 2.17s	remaining: 164ms
93:	learn: 9.7195471	total: 2.19s	remaining: 140ms
94:	learn: 9.5914894	total: 2.22s	remaining: 117ms
95:	learn: 9.5151851	total: 2.24s	remaining: 93.3ms
96:	learn: 9.3911314	total: 2.26s	remaining: 70ms
97:	learn: 9.3417706	total: 2.28s	remaining: 46.6ms
98:	learn: 9.2708440	total: 2.3s	remaining: 23.3ms
99:	learn: 9.1660321	total: 2.33s	remaining: 0us
0:	learn: 45.8627255	total: 2.98ms	remaining: 295ms
1:	learn: 44.7432040	total: 25.7ms	remaining: 1.26s
2:	learn: 43.4398568	total: 48.1ms	remaining: 1.56s
3:	learn: 42.1495515	total: 67.3ms	remaining: 1.61s
4:	learn: 40.9712633	total: 88.8ms	remaining: 1.69s
5:	learn: 40.0119591	total: 109ms	remaining: 1.71s
6:	learn: 39.1914360	total: 132ms	remaining: 1.76s
7:	learn: 38.1861536	total: 156ms	remaining: 1.79s
8:	learn: 37.1477128	total: 183ms	remaining: 1.85s
9:	learn: 36.3044702	total: 203ms	remaining: 1.82s
10:	learn: 35.5837917	total: 223ms	remaining: 1.81s
11:	learn: 34.8664158	total: 244ms	remaining: 1.79s
12:	learn: 33.9129833	total: 263ms	remaining: 1.76s
13:	learn: 32.9094642	total: 285ms	remaining: 1.75s
14:	learn: 32.1965787	total: 307ms	remaining: 1.74s
15:	learn: 31.4598238	total: 326ms	remaining: 1.71s
16:	learn: 30.6578027	total: 349ms	remaining: 1.7s
17:	learn: 30.0227468	total: 372ms	remaining: 1.7s
18:	learn: 29.2954728	total: 404ms	remaining: 1.72s
19:	learn: 28.5928084	total: 426ms	remaining: 1.7s
20:	learn: 27.9445984	total: 449ms	remaining: 1.69s
21:	learn: 27.3493298	total: 471ms	remaining: 1.67s
22:	learn: 26.8491966	total: 492ms	remaining: 1.65s
23:	learn: 26.3177453	total: 512ms	remaining: 1.62s
24:	learn: 25.8134533	total: 531ms	remaining: 1.59s
25:	learn: 25.2000018	total: 551ms	remaining: 1.57s
26:	learn: 24.6570461	total: 573ms	remaining: 1.55s
27:	learn: 24.1062982	total: 599ms	remaining: 1.54s
28:	learn: 23.7489370	total: 623ms	remaining: 1.53s
29:	learn: 23.2050536	total: 644ms	remaining: 1.5s
30:	learn: 22.7824379	total: 664ms	remaining: 1.48s
31:	learn: 22.4052655	total: 685ms	remaining: 1.46s
32:	learn: 21.9525639	total: 704ms	remaining: 1.43s
33:	learn: 21.5482900	total: 724ms	remaining: 1.41s
34:	learn: 21.1900983	total: 744ms	remaining: 1.38s
35:	learn: 20.8243957	total: 765ms	remaining: 1.36s
36:	learn: 20.4401288	total: 788ms	remaining: 1.34s
37:	learn: 20.0960622	total: 813ms	remaining: 1.33s
38:	learn: 19.7795108	total: 843ms	remaining: 1.32s
39:	learn: 19.4922451	total: 865ms	remaining: 1.3s
40:	learn: 19.1827582	total: 888ms	remaining: 1.28s
41:	learn: 18.8902445	total: 909ms	remaining: 1.25s
42:	learn: 18.6833086	total: 933ms	remaining: 1.24s
43:	learn: 18.4251972	total: 955ms	remaining: 1.22s
44:	learn: 18.1471037	total: 978ms	remaining: 1.19s
45:	learn: 17.8420017	total: 999ms	remaining: 1.17s
46:	learn: 17.6101998	total: 1.02s	remaining: 1.15s
47:	learn: 17.3353656	total: 1.05s	remaining: 1.13s
48:	learn: 17.1194789	total: 1.07s	remaining: 1.11s
49:	learn: 16.8898454	total: 1.09s	remaining: 1.09s
50:	learn: 16.6657497	total: 1.11s	remaining: 1.06s
51:	learn: 16.3832867	total: 1.13s	remaining: 1.04s
52:	learn: 16.2098226	total: 1.15s	remaining: 1.02s
53:	learn: 16.0045707	total: 1.17s	remaining: 995ms
54:	learn: 15.8512887	total: 1.19s	remaining: 972ms
55:	learn: 15.6485628	total: 1.21s	remaining: 950ms
56:	learn: 15.4841428	total: 1.23s	remaining: 928ms
57:	learn: 15.3383158	total: 1.26s	remaining: 914ms
58:	learn: 15.2056282	total: 1.28s	remaining: 893ms
59:	learn: 15.0698337	total: 1.31s	remaining: 871ms
60:	learn: 14.8487796	total: 1.33s	remaining: 849ms
61:	learn: 14.7255751	total: 1.35s	remaining: 829ms
62:	learn: 14.6100414	total: 1.37s	remaining: 806ms
63:	learn: 14.3864212	total: 1.39s	remaining: 784ms
64:	learn: 14.2800460	total: 1.42s	remaining: 762ms
65:	learn: 14.1017299	total: 1.44s	remaining: 743ms
66:	learn: 13.9655015	total: 1.46s	remaining: 721ms
67:	learn: 13.8065764	total: 1.48s	remaining: 699ms
68:	learn: 13.7473285	total: 1.5s	remaining: 676ms
69:	learn: 13.6967309	total: 1.52s	remaining: 653ms
70:	learn: 13.6253255	total: 1.54s	remaining: 631ms
71:	learn: 13.4974926	total: 1.57s	remaining: 609ms
72:	learn: 13.4142694	total: 1.58s	remaining: 587ms
73:	learn: 13.2902600	total: 1.62s	remaining: 568ms
74:	learn: 13.1816461	total: 1.64s	remaining: 548ms
75:	learn: 13.0809498	total: 1.67s	remaining: 528ms
76:	learn: 12.9772285	total: 1.7s	remaining: 509ms
77:	learn: 12.8413858	total: 1.73s	remaining: 487ms
78:	learn: 12.7615799	total: 1.75s	remaining: 466ms
79:	learn: 12.5808659	total: 1.78s	remaining: 444ms
80:	learn: 12.4938330	total: 1.8s	remaining: 422ms
81:	learn: 12.3745576	total: 1.82s	remaining: 400ms
82:	learn: 12.2474104	total: 1.85s	remaining: 378ms
83:	learn: 12.1582297	total: 1.87s	remaining: 356ms
84:	learn: 12.0528081	total: 1.91s	remaining: 337ms
85:	learn: 11.9483355	total: 1.94s	remaining: 315ms
86:	learn: 11.8683204	total: 1.96s	remaining: 293ms
87:	learn: 11.7680945	total: 1.98s	remaining: 270ms
88:	learn: 11.6635447	total: 2s	remaining: 248ms
89:	learn: 11.5775031	total: 2.03s	remaining: 225ms
90:	learn: 11.4860538	total: 2.05s	remaining: 203ms
91:	learn: 11.3584960	total: 2.07s	remaining: 180ms
92:	learn: 11.2180285	total: 2.1s	remaining: 158ms
93:	learn: 11.0996558	total: 2.13s	remaining: 136ms
94:	learn: 10.9688832	total: 2.16s	remaining: 114ms
95:	learn: 10.9205457	total: 2.19s	remaining: 91.2ms
96:	learn: 10.8462783	total: 2.21s	remaining: 68.5ms
97:	learn: 10.7481890	total: 2.24s	remaining: 45.7ms
98:	learn: 10.6396315	total: 2.26s	remaining: 22.8ms
99:	learn: 10.5895308	total: 2.29s	remaining: 0us
0:	learn: 46.2892189	total: 25.4ms	remaining: 2.52s
1:	learn: 44.9732744	total: 48ms	remaining: 2.35s
2:	learn: 43.8887345	total: 70ms	remaining: 2.26s
3:	learn: 42.6526320	total: 92.2ms	remaining: 2.21s
4:	learn: 41.4812505	total: 122ms	remaining: 2.32s
5:	learn: 40.4431224	total: 146ms	remaining: 2.29s
6:	learn: 39.2936749	total: 169ms	remaining: 2.25s
7:	learn: 38.1961652	total: 194ms	remaining: 2.23s
8:	learn: 37.2194841	total: 224ms	remaining: 2.27s
9:	learn: 36.2518666	total: 253ms	remaining: 2.28s
10:	learn: 35.4919224	total: 278ms	remaining: 2.25s
11:	learn: 34.6975877	total: 304ms	remaining: 2.23s
12:	learn: 33.7869362	total: 329ms	remaining: 2.2s
13:	learn: 33.0646033	total: 351ms	remaining: 2.16s
14:	learn: 32.1821772	total: 380ms	remaining: 2.15s
15:	learn: 31.4340749	total: 405ms	remaining: 2.12s
16:	learn: 30.6504198	total: 428ms	remaining: 2.09s
17:	learn: 30.0090260	total: 457ms	remaining: 2.08s
18:	learn: 29.4233143	total: 482ms	remaining: 2.06s
19:	learn: 28.7661957	total: 505ms	remaining: 2.02s
20:	learn: 28.1570594	total: 528ms	remaining: 1.99s
21:	learn: 27.6140124	total: 551ms	remaining: 1.95s
22:	learn: 27.0130709	total: 575ms	remaining: 1.93s
23:	learn: 26.2648081	total: 600ms	remaining: 1.9s
24:	learn: 25.7963649	total: 630ms	remaining: 1.89s
25:	learn: 25.2713860	total: 654ms	remaining: 1.86s
26:	learn: 24.8080692	total: 682ms	remaining: 1.84s
27:	learn: 24.3042862	total: 714ms	remaining: 1.83s
28:	learn: 23.9097237	total: 737ms	remaining: 1.8s
29:	learn: 23.4953174	total: 762ms	remaining: 1.78s
30:	learn: 23.0484452	total: 786ms	remaining: 1.75s
31:	learn: 22.7100962	total: 810ms	remaining: 1.72s
32:	learn: 22.1662267	total: 833ms	remaining: 1.69s
33:	learn: 21.7339884	total: 855ms	remaining: 1.66s
34:	learn: 21.3699422	total: 888ms	remaining: 1.65s
35:	learn: 21.0249329	total: 917ms	remaining: 1.63s
36:	learn: 20.6187923	total: 941ms	remaining: 1.6s
37:	learn: 20.2401981	total: 966ms	remaining: 1.58s
38:	learn: 19.9712328	total: 990ms	remaining: 1.55s
39:	learn: 19.6429610	total: 1.01s	remaining: 1.52s
40:	learn: 19.3281556	total: 1.04s	remaining: 1.49s
41:	learn: 19.0925924	total: 1.06s	remaining: 1.47s
42:	learn: 18.8118712	total: 1.09s	remaining: 1.45s
43:	learn: 18.5355748	total: 1.12s	remaining: 1.42s
44:	learn: 18.2783929	total: 1.15s	remaining: 1.4s
45:	learn: 17.9915490	total: 1.17s	remaining: 1.38s
46:	learn: 17.7323317	total: 1.2s	remaining: 1.35s
47:	learn: 17.4448307	total: 1.22s	remaining: 1.32s
48:	learn: 17.2419782	total: 1.24s	remaining: 1.29s
49:	learn: 16.9351352	total: 1.27s	remaining: 1.27s
50:	learn: 16.7728723	total: 1.29s	remaining: 1.24s
51:	learn: 16.5718087	total: 1.32s	remaining: 1.22s
52:	learn: 16.4047483	total: 1.35s	remaining: 1.19s
53:	learn: 16.2888950	total: 1.37s	remaining: 1.17s
54:	learn: 16.1353042	total: 1.4s	remaining: 1.14s
55:	learn: 15.9384012	total: 1.42s	remaining: 1.12s
56:	learn: 15.7488511	total: 1.44s	remaining: 1.09s
57:	learn: 15.5682846	total: 1.47s	remaining: 1.06s
58:	learn: 15.3488716	total: 1.49s	remaining: 1.03s
59:	learn: 15.2291272	total: 1.51s	remaining: 1.01s
60:	learn: 15.0582519	total: 1.54s	remaining: 985ms
61:	learn: 14.8478458	total: 1.57s	remaining: 965ms
62:	learn: 14.6663416	total: 1.6s	remaining: 941ms
63:	learn: 14.4830825	total: 1.63s	remaining: 916ms
64:	learn: 14.3300895	total: 1.67s	remaining: 897ms
65:	learn: 14.1168590	total: 1.69s	remaining: 870ms
66:	learn: 13.9783298	total: 1.71s	remaining: 844ms
67:	learn: 13.8132857	total: 1.74s	remaining: 818ms
68:	learn: 13.7050863	total: 1.76s	remaining: 792ms
69:	learn: 13.5742501	total: 1.79s	remaining: 767ms
70:	learn: 13.4851362	total: 1.81s	remaining: 741ms
71:	learn: 13.3300610	total: 1.84s	remaining: 715ms
72:	learn: 13.2223060	total: 1.86s	remaining: 688ms
73:	learn: 13.0706731	total: 1.88s	remaining: 661ms
74:	learn: 12.9178099	total: 1.91s	remaining: 637ms
75:	learn: 12.7954645	total: 1.93s	remaining: 611ms
76:	learn: 12.7133688	total: 1.96s	remaining: 585ms
77:	learn: 12.5745537	total: 1.98s	remaining: 559ms
78:	learn: 12.4765302	total: 2.02s	remaining: 536ms
79:	learn: 12.3609145	total: 2.04s	remaining: 511ms
80:	learn: 12.2437759	total: 2.07s	remaining: 485ms
81:	learn: 12.1583763	total: 2.09s	remaining: 459ms
82:	learn: 12.0202500	total: 2.12s	remaining: 433ms
83:	learn: 11.9125166	total: 2.14s	remaining: 407ms
84:	learn: 11.8100729	total: 2.17s	remaining: 383ms
85:	learn: 11.7509521	total: 2.19s	remaining: 357ms
86:	learn: 11.6448436	total: 2.22s	remaining: 332ms
87:	learn: 11.5550170	total: 2.25s	remaining: 306ms
88:	learn: 11.4624708	total: 2.27s	remaining: 280ms
89:	learn: 11.3547761	total: 2.29s	remaining: 255ms
90:	learn: 11.2513910	total: 2.31s	remaining: 229ms
91:	learn: 11.1414483	total: 2.33s	remaining: 203ms
92:	learn: 11.0742264	total: 2.36s	remaining: 177ms
93:	learn: 10.9721772	total: 2.38s	remaining: 152ms
94:	learn: 10.9118054	total: 2.41s	remaining: 127ms
95:	learn: 10.8465290	total: 2.45s	remaining: 102ms
96:	learn: 10.7451745	total: 2.47s	remaining: 76.5ms
97:	learn: 10.6173565	total: 2.5s	remaining: 51ms
98:	learn: 10.5562158	total: 2.52s	remaining: 25.5ms
99:	learn: 10.4564960	total: 2.54s	remaining: 0us
0:	learn: 27.6506730	total: 5.79ms	remaining: 573ms
1:	learn: 27.1638793	total: 9.91ms	remaining: 486ms
2:	learn: 26.8000665	total: 14.4ms	remaining: 465ms
3:	learn: 26.4256132	total: 19.1ms	remaining: 457ms
4:	learn: 26.0088351	total: 24.7ms	remaining: 470ms
5:	learn: 25.7558298	total: 30.3ms	remaining: 474ms
6:	learn: 25.3380711	total: 35.3ms	remaining: 469ms
7:	learn: 25.0571611	total: 40.3ms	remaining: 463ms
8:	learn: 24.6790148	total: 45ms	remaining: 454ms
9:	learn: 24.3600941	total: 50ms	remaining: 450ms
10:	learn: 24.1105667	total: 59.8ms	remaining: 484ms
11:	learn: 23.7736542	total: 68.1ms	remaining: 499ms
12:	learn: 23.5824429	total: 75ms	remaining: 502ms
13:	learn: 23.2658303	total: 80.2ms	remaining: 493ms
14:	learn: 23.0061886	total: 86.2ms	remaining: 489ms
15:	learn: 22.8060389	total: 91.1ms	remaining: 478ms
16:	learn: 22.5899735	total: 95.8ms	remaining: 468ms
17:	learn: 22.3625048	total: 101ms	remaining: 458ms
18:	learn: 22.0706477	total: 105ms	remaining: 449ms
19:	learn: 21.8739394	total: 110ms	remaining: 442ms
20:	learn: 21.6143650	total: 115ms	remaining: 434ms
21:	learn: 21.4571623	total: 120ms	remaining: 426ms
22:	learn: 21.2395769	total: 125ms	remaining: 417ms
23:	learn: 20.9801795	total: 129ms	remaining: 410ms
24:	learn: 20.8036808	total: 134ms	remaining: 402ms
25:	learn: 20.6387539	total: 139ms	remaining: 395ms
26:	learn: 20.4401427	total: 143ms	remaining: 387ms
27:	learn: 20.2879575	total: 148ms	remaining: 381ms
28:	learn: 20.0538664	total: 153ms	remaining: 375ms
29:	learn: 19.8363102	total: 158ms	remaining: 369ms
30:	learn: 19.7015446	total: 163ms	remaining: 363ms
31:	learn: 19.5483114	total: 168ms	remaining: 357ms
32:	learn: 19.4163053	total: 173ms	remaining: 351ms
33:	learn: 19.2880625	total: 178ms	remaining: 345ms
34:	learn: 19.1303389	total: 182ms	remaining: 338ms
35:	learn: 18.9237448	total: 187ms	remaining: 332ms
36:	learn: 18.8142925	total: 191ms	remaining: 326ms
37:	learn: 18.6994696	total: 196ms	remaining: 320ms
38:	learn: 18.5629211	total: 202ms	remaining: 315ms
39:	learn: 18.4600917	total: 206ms	remaining: 309ms
40:	learn: 18.3567139	total: 211ms	remaining: 304ms
41:	learn: 18.2120527	total: 216ms	remaining: 298ms
42:	learn: 18.0688062	total: 220ms	remaining: 292ms
43:	learn: 17.9250181	total: 225ms	remaining: 286ms
44:	learn: 17.8399138	total: 230ms	remaining: 281ms
45:	learn: 17.6720713	total: 235ms	remaining: 276ms
46:	learn: 17.5273091	total: 240ms	remaining: 271ms
47:	learn: 17.4232814	total: 245ms	remaining: 265ms
48:	learn: 17.2957579	total: 250ms	remaining: 260ms
49:	learn: 17.1892874	total: 255ms	remaining: 255ms
50:	learn: 17.0490355	total: 261ms	remaining: 251ms
51:	learn: 16.9666450	total: 269ms	remaining: 248ms
52:	learn: 16.8600056	total: 276ms	remaining: 245ms
53:	learn: 16.7542588	total: 285ms	remaining: 243ms
54:	learn: 16.6316077	total: 292ms	remaining: 239ms
55:	learn: 16.5588112	total: 299ms	remaining: 235ms
56:	learn: 16.5010186	total: 305ms	remaining: 230ms
57:	learn: 16.4081540	total: 310ms	remaining: 224ms
58:	learn: 16.3040451	total: 315ms	remaining: 219ms
59:	learn: 16.1890564	total: 321ms	remaining: 214ms
60:	learn: 16.0977103	total: 327ms	remaining: 209ms
61:	learn: 15.9627607	total: 332ms	remaining: 204ms
62:	learn: 15.9022248	total: 338ms	remaining: 199ms
63:	learn: 15.8151881	total: 344ms	remaining: 193ms
64:	learn: 15.7353125	total: 349ms	remaining: 188ms
65:	learn: 15.6312897	total: 354ms	remaining: 182ms
66:	learn: 15.5330927	total: 359ms	remaining: 177ms
67:	learn: 15.4698681	total: 365ms	remaining: 172ms
68:	learn: 15.4108571	total: 370ms	remaining: 166ms
69:	learn: 15.3492945	total: 375ms	remaining: 161ms
70:	learn: 15.3036540	total: 379ms	remaining: 155ms
71:	learn: 15.2390833	total: 384ms	remaining: 149ms
72:	learn: 15.1556327	total: 388ms	remaining: 143ms
73:	learn: 15.1016315	total: 392ms	remaining: 138ms
74:	learn: 15.0287076	total: 397ms	remaining: 132ms
75:	learn: 14.9530572	total: 402ms	remaining: 127ms
76:	learn: 14.8965517	total: 406ms	remaining: 121ms
77:	learn: 14.8125426	total: 411ms	remaining: 116ms
78:	learn: 14.7435359	total: 416ms	remaining: 111ms
79:	learn: 14.6963163	total: 421ms	remaining: 105ms
80:	learn: 14.6200060	total: 425ms	remaining: 99.7ms
81:	learn: 14.5707760	total: 430ms	remaining: 94.4ms
82:	learn: 14.5053651	total: 435ms	remaining: 89.2ms
83:	learn: 14.4115458	total: 442ms	remaining: 84.1ms
84:	learn: 14.3117159	total: 449ms	remaining: 79.2ms
85:	learn: 14.2511326	total: 456ms	remaining: 74.2ms
86:	learn: 14.1372486	total: 463ms	remaining: 69.2ms
87:	learn: 14.0992301	total: 468ms	remaining: 63.9ms
88:	learn: 14.0228331	total: 474ms	remaining: 58.6ms
89:	learn: 13.9249836	total: 481ms	remaining: 53.4ms
90:	learn: 13.8679364	total: 486ms	remaining: 48.1ms
91:	learn: 13.8405578	total: 491ms	remaining: 42.7ms
92:	learn: 13.7711325	total: 496ms	remaining: 37.3ms
93:	learn: 13.7357019	total: 501ms	remaining: 31.9ms
94:	learn: 13.6735271	total: 505ms	remaining: 26.6ms
95:	learn: 13.5682393	total: 510ms	remaining: 21.2ms
96:	learn: 13.5342610	total: 514ms	remaining: 15.9ms
97:	learn: 13.4710034	total: 519ms	remaining: 10.6ms
98:	learn: 13.4022402	total: 523ms	remaining: 5.29ms
99:	learn: 13.3351238	total: 528ms	remaining: 0us
0:	learn: 42.9181702	total: 5.21ms	remaining: 516ms
1:	learn: 42.0286736	total: 10.5ms	remaining: 515ms
2:	learn: 41.2764568	total: 15.4ms	remaining: 497ms
3:	learn: 40.4721918	total: 19.9ms	remaining: 479ms
4:	learn: 39.8518928	total: 24.5ms	remaining: 465ms
5:	learn: 39.2645479	total: 29.4ms	remaining: 460ms
6:	learn: 38.4453704	total: 33.8ms	remaining: 449ms
7:	learn: 37.7122059	total: 38.3ms	remaining: 441ms
8:	learn: 36.9185796	total: 43ms	remaining: 434ms
9:	learn: 36.1668427	total: 48ms	remaining: 432ms
10:	learn: 35.5639029	total: 53ms	remaining: 429ms
11:	learn: 34.7724193	total: 57.7ms	remaining: 423ms
12:	learn: 34.3053433	total: 63.1ms	remaining: 423ms
13:	learn: 33.6561327	total: 64.9ms	remaining: 399ms
14:	learn: 33.0134042	total: 70ms	remaining: 397ms
15:	learn: 32.4483300	total: 75ms	remaining: 394ms
16:	learn: 31.8581144	total: 80.2ms	remaining: 392ms
17:	learn: 31.2858301	total: 85.3ms	remaining: 388ms
18:	learn: 30.8483018	total: 94.3ms	remaining: 402ms
19:	learn: 30.4174622	total: 102ms	remaining: 407ms
20:	learn: 29.8994411	total: 112ms	remaining: 421ms
21:	learn: 29.5045355	total: 120ms	remaining: 425ms
22:	learn: 28.9923519	total: 125ms	remaining: 418ms
23:	learn: 28.4255717	total: 130ms	remaining: 413ms
24:	learn: 28.0283139	total: 135ms	remaining: 406ms
25:	learn: 27.7434814	total: 141ms	remaining: 400ms
26:	learn: 27.2770731	total: 146ms	remaining: 395ms
27:	learn: 26.8928270	total: 152ms	remaining: 390ms
28:	learn: 26.4282671	total: 157ms	remaining: 384ms
29:	learn: 26.0272764	total: 162ms	remaining: 379ms
30:	learn: 25.7579312	total: 168ms	remaining: 374ms
31:	learn: 25.4542434	total: 174ms	remaining: 369ms
32:	learn: 25.1232564	total: 179ms	remaining: 364ms
33:	learn: 24.8110795	total: 185ms	remaining: 358ms
34:	learn: 24.5077579	total: 190ms	remaining: 353ms
35:	learn: 24.1909000	total: 195ms	remaining: 347ms
36:	learn: 23.8719468	total: 200ms	remaining: 340ms
37:	learn: 23.5764366	total: 201ms	remaining: 328ms
38:	learn: 23.3468086	total: 205ms	remaining: 321ms
39:	learn: 23.0908771	total: 210ms	remaining: 315ms
40:	learn: 22.8580876	total: 215ms	remaining: 309ms
41:	learn: 22.6060825	total: 220ms	remaining: 304ms
42:	learn: 22.4125407	total: 225ms	remaining: 298ms
43:	learn: 22.1990617	total: 229ms	remaining: 292ms
44:	learn: 21.9716164	total: 234ms	remaining: 286ms
45:	learn: 21.8360935	total: 239ms	remaining: 280ms
46:	learn: 21.6169256	total: 243ms	remaining: 274ms
47:	learn: 21.4620612	total: 248ms	remaining: 269ms
48:	learn: 21.2894194	total: 253ms	remaining: 263ms
49:	learn: 21.1066266	total: 257ms	remaining: 257ms
50:	learn: 20.9484898	total: 262ms	remaining: 252ms
51:	learn: 20.7195338	total: 267ms	remaining: 246ms
52:	learn: 20.4899740	total: 272ms	remaining: 241ms
53:	learn: 20.3356583	total: 277ms	remaining: 236ms
54:	learn: 20.0754393	total: 282ms	remaining: 231ms
55:	learn: 19.9199159	total: 289ms	remaining: 227ms
56:	learn: 19.7761128	total: 297ms	remaining: 224ms
57:	learn: 19.6533060	total: 304ms	remaining: 220ms
58:	learn: 19.5113942	total: 310ms	remaining: 216ms
59:	learn: 19.3985022	total: 315ms	remaining: 210ms
60:	learn: 19.2683443	total: 322ms	remaining: 206ms
61:	learn: 19.1460824	total: 326ms	remaining: 200ms
62:	learn: 19.0042655	total: 331ms	remaining: 195ms
63:	learn: 18.8720873	total: 336ms	remaining: 189ms
64:	learn: 18.7183888	total: 341ms	remaining: 184ms
65:	learn: 18.5472360	total: 345ms	remaining: 178ms
66:	learn: 18.3976642	total: 350ms	remaining: 172ms
67:	learn: 18.2282851	total: 355ms	remaining: 167ms
68:	learn: 18.1469157	total: 359ms	remaining: 161ms
69:	learn: 18.0649494	total: 364ms	remaining: 156ms
70:	learn: 17.9485405	total: 370ms	remaining: 151ms
71:	learn: 17.8460261	total: 376ms	remaining: 146ms
72:	learn: 17.7679843	total: 381ms	remaining: 141ms
73:	learn: 17.5989290	total: 386ms	remaining: 136ms
74:	learn: 17.4381322	total: 391ms	remaining: 130ms
75:	learn: 17.3370886	total: 396ms	remaining: 125ms
76:	learn: 17.2675308	total: 401ms	remaining: 120ms
77:	learn: 17.1946430	total: 407ms	remaining: 115ms
78:	learn: 17.0923725	total: 411ms	remaining: 109ms
79:	learn: 17.0537265	total: 416ms	remaining: 104ms
80:	learn: 16.9456831	total: 421ms	remaining: 98.8ms
81:	learn: 16.8457353	total: 426ms	remaining: 93.5ms
82:	learn: 16.7469310	total: 431ms	remaining: 88.2ms
83:	learn: 16.6679953	total: 435ms	remaining: 82.9ms
84:	learn: 16.6274189	total: 440ms	remaining: 77.7ms
85:	learn: 16.5516530	total: 445ms	remaining: 72.5ms
86:	learn: 16.4886066	total: 450ms	remaining: 67.3ms
87:	learn: 16.3947859	total: 455ms	remaining: 62.1ms
88:	learn: 16.3406495	total: 461ms	remaining: 56.9ms
89:	learn: 16.3019195	total: 466ms	remaining: 51.7ms
90:	learn: 16.1860681	total: 470ms	remaining: 46.5ms
91:	learn: 16.1282812	total: 475ms	remaining: 41.3ms
92:	learn: 16.0303652	total: 480ms	remaining: 36.1ms
93:	learn: 15.9561692	total: 490ms	remaining: 31.3ms
94:	learn: 15.8733994	total: 503ms	remaining: 26.5ms
95:	learn: 15.8108833	total: 512ms	remaining: 21.3ms
96:	learn: 15.7606004	total: 518ms	remaining: 16ms
97:	learn: 15.6984664	total: 523ms	remaining: 10.7ms
98:	learn: 15.6223632	total: 529ms	remaining: 5.34ms
99:	learn: 15.5671136	total: 534ms	remaining: 0us
0:	learn: 46.4788614	total: 2.14ms	remaining: 212ms
1:	learn: 45.7608372	total: 7.09ms	remaining: 347ms
2:	learn: 44.8825004	total: 11.9ms	remaining: 383ms
3:	learn: 44.0362738	total: 16.3ms	remaining: 392ms
4:	learn: 43.2086374	total: 21.5ms	remaining: 408ms
5:	learn: 42.5835773	total: 26.2ms	remaining: 411ms
6:	learn: 41.9673269	total: 31ms	remaining: 412ms
7:	learn: 41.4748717	total: 35.8ms	remaining: 412ms
8:	learn: 40.7129183	total: 40.6ms	remaining: 410ms
9:	learn: 39.8900884	total: 45.4ms	remaining: 409ms
10:	learn: 39.4142193	total: 49.8ms	remaining: 403ms
11:	learn: 38.8645613	total: 54.8ms	remaining: 402ms
12:	learn: 38.2394731	total: 59.4ms	remaining: 398ms
13:	learn: 37.6834515	total: 63.9ms	remaining: 393ms
14:	learn: 37.0673507	total: 68.6ms	remaining: 389ms
15:	learn: 36.4728340	total: 73.6ms	remaining: 386ms
16:	learn: 36.0489086	total: 78.6ms	remaining: 384ms
17:	learn: 35.4744141	total: 83.3ms	remaining: 380ms
18:	learn: 35.0106021	total: 88.3ms	remaining: 376ms
19:	learn: 34.5586053	total: 92.9ms	remaining: 372ms
20:	learn: 34.1308223	total: 97.6ms	remaining: 367ms
21:	learn: 33.7701450	total: 105ms	remaining: 371ms
22:	learn: 33.4425444	total: 112ms	remaining: 376ms
23:	learn: 33.0296412	total: 120ms	remaining: 379ms
24:	learn: 32.6359803	total: 126ms	remaining: 378ms
25:	learn: 32.1846182	total: 132ms	remaining: 375ms
26:	learn: 31.7620230	total: 136ms	remaining: 369ms
27:	learn: 31.4669337	total: 141ms	remaining: 362ms
28:	learn: 31.0792062	total: 145ms	remaining: 355ms
29:	learn: 30.7970537	total: 149ms	remaining: 348ms
30:	learn: 30.4952215	total: 153ms	remaining: 341ms
31:	learn: 30.2845344	total: 158ms	remaining: 335ms
32:	learn: 29.9592732	total: 162ms	remaining: 329ms
33:	learn: 29.6798596	total: 166ms	remaining: 323ms
34:	learn: 29.3368905	total: 171ms	remaining: 317ms
35:	learn: 29.0621238	total: 175ms	remaining: 311ms
36:	learn: 28.6445375	total: 179ms	remaining: 305ms
37:	learn: 28.2418096	total: 184ms	remaining: 299ms
38:	learn: 27.9495390	total: 188ms	remaining: 294ms
39:	learn: 27.6958160	total: 192ms	remaining: 288ms
40:	learn: 27.4811189	total: 196ms	remaining: 283ms
41:	learn: 27.1494420	total: 201ms	remaining: 277ms
42:	learn: 26.8388873	total: 205ms	remaining: 271ms
43:	learn: 26.5721300	total: 209ms	remaining: 266ms
44:	learn: 26.3384738	total: 214ms	remaining: 261ms
45:	learn: 26.1894781	total: 218ms	remaining: 256ms
46:	learn: 25.9580198	total: 223ms	remaining: 251ms
47:	learn: 25.7897985	total: 227ms	remaining: 246ms
48:	learn: 25.6000271	total: 231ms	remaining: 241ms
49:	learn: 25.4130873	total: 235ms	remaining: 235ms
50:	learn: 25.1699061	total: 240ms	remaining: 231ms
51:	learn: 24.9324449	total: 244ms	remaining: 225ms
52:	learn: 24.7729152	total: 248ms	remaining: 220ms
53:	learn: 24.5026563	total: 253ms	remaining: 215ms
54:	learn: 24.2332627	total: 257ms	remaining: 211ms
55:	learn: 23.9611984	total: 262ms	remaining: 206ms
56:	learn: 23.7862603	total: 266ms	remaining: 201ms
57:	learn: 23.6318154	total: 271ms	remaining: 196ms
58:	learn: 23.4443306	total: 275ms	remaining: 191ms
59:	learn: 23.2581425	total: 280ms	remaining: 187ms
60:	learn: 23.0549901	total: 285ms	remaining: 183ms
61:	learn: 22.8666218	total: 290ms	remaining: 178ms
62:	learn: 22.6956739	total: 295ms	remaining: 173ms
63:	learn: 22.5068544	total: 300ms	remaining: 169ms
64:	learn: 22.1859147	total: 308ms	remaining: 166ms
65:	learn: 22.0462043	total: 316ms	remaining: 163ms
66:	learn: 21.9329563	total: 324ms	remaining: 160ms
67:	learn: 21.8029736	total: 332ms	remaining: 156ms
68:	learn: 21.6861091	total: 337ms	remaining: 152ms
69:	learn: 21.4838140	total: 343ms	remaining: 147ms
70:	learn: 21.3548921	total: 348ms	remaining: 142ms
71:	learn: 21.2244517	total: 354ms	remaining: 137ms
72:	learn: 21.0702958	total: 359ms	remaining: 133ms
73:	learn: 20.9224662	total: 364ms	remaining: 128ms
74:	learn: 20.8150357	total: 369ms	remaining: 123ms
75:	learn: 20.6962739	total: 374ms	remaining: 118ms
76:	learn: 20.5809258	total: 379ms	remaining: 113ms
77:	learn: 20.4735470	total: 385ms	remaining: 108ms
78:	learn: 20.3778167	total: 390ms	remaining: 104ms
79:	learn: 20.2211268	total: 395ms	remaining: 98.7ms
80:	learn: 20.1478678	total: 399ms	remaining: 93.6ms
81:	learn: 20.1032967	total: 403ms	remaining: 88.5ms
82:	learn: 19.9236300	total: 407ms	remaining: 83.5ms
83:	learn: 19.8151745	total: 412ms	remaining: 78.4ms
84:	learn: 19.7099856	total: 416ms	remaining: 73.4ms
85:	learn: 19.6264833	total: 421ms	remaining: 68.5ms
86:	learn: 19.4916361	total: 425ms	remaining: 63.5ms
87:	learn: 19.4050529	total: 429ms	remaining: 58.5ms
88:	learn: 19.2547065	total: 434ms	remaining: 53.6ms
89:	learn: 19.1610225	total: 438ms	remaining: 48.7ms
90:	learn: 19.0898958	total: 443ms	remaining: 43.8ms
91:	learn: 19.0489664	total: 447ms	remaining: 38.9ms
92:	learn: 18.9206240	total: 452ms	remaining: 34ms
93:	learn: 18.8636239	total: 457ms	remaining: 29.2ms
94:	learn: 18.8126187	total: 461ms	remaining: 24.3ms
95:	learn: 18.7579275	total: 466ms	remaining: 19.4ms
96:	learn: 18.6382753	total: 470ms	remaining: 14.6ms
97:	learn: 18.5397334	total: 476ms	remaining: 9.7ms
98:	learn: 18.4375951	total: 480ms	remaining: 4.85ms
99:	learn: 18.4033755	total: 485ms	remaining: 0us
0:	learn: 46.1068821	total: 1.81ms	remaining: 180ms
1:	learn: 45.3970261	total: 6.1ms	remaining: 299ms
2:	learn: 44.8732696	total: 10.6ms	remaining: 342ms
3:	learn: 44.1290184	total: 14.7ms	remaining: 353ms
4:	learn: 43.3290271	total: 19.3ms	remaining: 367ms
5:	learn: 42.7069090	total: 23.8ms	remaining: 373ms
6:	learn: 42.0572971	total: 28.4ms	remaining: 377ms
7:	learn: 41.4797924	total: 32.7ms	remaining: 376ms
8:	learn: 41.0023122	total: 36.8ms	remaining: 372ms
9:	learn: 40.5330570	total: 40.8ms	remaining: 367ms
10:	learn: 39.9726545	total: 45.2ms	remaining: 366ms
11:	learn: 39.3044053	total: 49.3ms	remaining: 362ms
12:	learn: 38.8169735	total: 53.4ms	remaining: 357ms
13:	learn: 38.2458761	total: 57.6ms	remaining: 354ms
14:	learn: 37.6280321	total: 62.1ms	remaining: 352ms
15:	learn: 37.0800610	total: 66.3ms	remaining: 348ms
16:	learn: 36.5489363	total: 70.5ms	remaining: 344ms
17:	learn: 36.0981456	total: 74.4ms	remaining: 339ms
18:	learn: 35.6956274	total: 79ms	remaining: 337ms
19:	learn: 35.1471999	total: 83.3ms	remaining: 333ms
20:	learn: 34.6235408	total: 87.4ms	remaining: 329ms
21:	learn: 34.1987018	total: 91.9ms	remaining: 326ms
22:	learn: 33.8985062	total: 96.9ms	remaining: 324ms
23:	learn: 33.3869017	total: 102ms	remaining: 321ms
24:	learn: 32.9100550	total: 106ms	remaining: 318ms
25:	learn: 32.4156208	total: 111ms	remaining: 315ms
26:	learn: 31.9320493	total: 115ms	remaining: 311ms
27:	learn: 31.5711468	total: 119ms	remaining: 307ms
28:	learn: 31.2404433	total: 124ms	remaining: 303ms
29:	learn: 30.8807946	total: 128ms	remaining: 299ms
30:	learn: 30.5948438	total: 133ms	remaining: 295ms
31:	learn: 30.3885560	total: 137ms	remaining: 292ms
32:	learn: 30.0625101	total: 142ms	remaining: 289ms
33:	learn: 29.9113114	total: 147ms	remaining: 285ms
34:	learn: 29.6983470	total: 152ms	remaining: 282ms
35:	learn: 29.4775849	total: 156ms	remaining: 278ms
36:	learn: 29.0538055	total: 161ms	remaining: 274ms
37:	learn: 28.6792318	total: 171ms	remaining: 279ms
38:	learn: 28.4231383	total: 182ms	remaining: 284ms
39:	learn: 28.1078565	total: 189ms	remaining: 284ms
40:	learn: 27.9079179	total: 198ms	remaining: 284ms
41:	learn: 27.6721506	total: 203ms	remaining: 280ms
42:	learn: 27.4228033	total: 209ms	remaining: 277ms
43:	learn: 27.1740534	total: 215ms	remaining: 273ms
44:	learn: 26.8584071	total: 221ms	remaining: 270ms
45:	learn: 26.6902083	total: 226ms	remaining: 266ms
46:	learn: 26.4855335	total: 233ms	remaining: 263ms
47:	learn: 26.2730822	total: 239ms	remaining: 259ms
48:	learn: 26.1058689	total: 245ms	remaining: 255ms
49:	learn: 25.8587318	total: 251ms	remaining: 251ms
50:	learn: 25.7558005	total: 257ms	remaining: 247ms
51:	learn: 25.5846925	total: 263ms	remaining: 243ms
52:	learn: 25.4249887	total: 268ms	remaining: 238ms
53:	learn: 25.1911054	total: 273ms	remaining: 232ms
54:	learn: 25.0544755	total: 278ms	remaining: 227ms
55:	learn: 24.8874006	total: 282ms	remaining: 222ms
56:	learn: 24.7736279	total: 287ms	remaining: 217ms
57:	learn: 24.6156255	total: 292ms	remaining: 211ms
58:	learn: 24.3962421	total: 296ms	remaining: 206ms
59:	learn: 24.2685129	total: 300ms	remaining: 200ms
60:	learn: 24.1874096	total: 305ms	remaining: 195ms
61:	learn: 24.0394287	total: 309ms	remaining: 190ms
62:	learn: 23.9281768	total: 313ms	remaining: 184ms
63:	learn: 23.7423900	total: 318ms	remaining: 179ms
64:	learn: 23.6015209	total: 323ms	remaining: 174ms
65:	learn: 23.4677943	total: 327ms	remaining: 169ms
66:	learn: 23.3215256	total: 332ms	remaining: 164ms
67:	learn: 23.1869360	total: 337ms	remaining: 159ms
68:	learn: 22.9691180	total: 342ms	remaining: 154ms
69:	learn: 22.7531657	total: 346ms	remaining: 148ms
70:	learn: 22.6133477	total: 351ms	remaining: 143ms
71:	learn: 22.3452758	total: 356ms	remaining: 138ms
72:	learn: 22.2065350	total: 361ms	remaining: 133ms
73:	learn: 22.1071155	total: 369ms	remaining: 130ms
74:	learn: 21.9740686	total: 377ms	remaining: 126ms
75:	learn: 21.8892033	total: 383ms	remaining: 121ms
76:	learn: 21.8267882	total: 388ms	remaining: 116ms
77:	learn: 21.7423479	total: 394ms	remaining: 111ms
78:	learn: 21.6242075	total: 399ms	remaining: 106ms
79:	learn: 21.5016910	total: 404ms	remaining: 101ms
80:	learn: 21.4806623	total: 405ms	remaining: 94.9ms
81:	learn: 21.3166637	total: 409ms	remaining: 89.9ms
82:	learn: 21.2222534	total: 414ms	remaining: 84.8ms
83:	learn: 21.1535708	total: 419ms	remaining: 79.7ms
84:	learn: 21.0858902	total: 423ms	remaining: 74.7ms
85:	learn: 20.9206003	total: 428ms	remaining: 69.6ms
86:	learn: 20.8674695	total: 435ms	remaining: 64.9ms
87:	learn: 20.8089875	total: 439ms	remaining: 59.8ms
88:	learn: 20.7085401	total: 443ms	remaining: 54.8ms
89:	learn: 20.5513468	total: 448ms	remaining: 49.7ms
90:	learn: 20.4586742	total: 452ms	remaining: 44.7ms
91:	learn: 20.3932149	total: 456ms	remaining: 39.7ms
92:	learn: 20.3000895	total: 460ms	remaining: 34.7ms
93:	learn: 20.2254009	total: 465ms	remaining: 29.7ms
94:	learn: 20.1750050	total: 469ms	remaining: 24.7ms
95:	learn: 20.0715579	total: 473ms	remaining: 19.7ms
96:	learn: 19.9920082	total: 477ms	remaining: 14.8ms
97:	learn: 19.9664401	total: 482ms	remaining: 9.83ms
98:	learn: 19.8689673	total: 486ms	remaining: 4.91ms
99:	learn: 19.7537356	total: 490ms	remaining: 0us
0:	learn: 46.8832143	total: 4.8ms	remaining: 475ms
1:	learn: 45.8700349	total: 9.74ms	remaining: 477ms
2:	learn: 45.0546867	total: 14.8ms	remaining: 479ms
3:	learn: 44.2829439	total: 21.5ms	remaining: 516ms
4:	learn: 43.4609042	total: 28.5ms	remaining: 541ms
5:	learn: 42.6754991	total: 35.3ms	remaining: 554ms
6:	learn: 41.9234935	total: 40.3ms	remaining: 536ms
7:	learn: 41.3987518	total: 45.7ms	remaining: 525ms
8:	learn: 40.6625066	total: 51ms	remaining: 515ms
9:	learn: 40.0029561	total: 56.8ms	remaining: 511ms
10:	learn: 39.3897033	total: 62ms	remaining: 502ms
11:	learn: 38.7741453	total: 67.3ms	remaining: 494ms
12:	learn: 38.1201100	total: 72.3ms	remaining: 484ms
13:	learn: 37.5129454	total: 77.4ms	remaining: 476ms
14:	learn: 37.2062206	total: 83ms	remaining: 470ms
15:	learn: 36.6831741	total: 88ms	remaining: 462ms
16:	learn: 36.2902788	total: 93.1ms	remaining: 455ms
17:	learn: 35.7639930	total: 98.5ms	remaining: 449ms
18:	learn: 35.2580953	total: 104ms	remaining: 442ms
19:	learn: 34.7809739	total: 109ms	remaining: 435ms
20:	learn: 34.1330433	total: 114ms	remaining: 429ms
21:	learn: 33.7302219	total: 118ms	remaining: 420ms
22:	learn: 33.3502495	total: 123ms	remaining: 412ms
23:	learn: 33.0067804	total: 128ms	remaining: 404ms
24:	learn: 32.6897855	total: 133ms	remaining: 398ms
25:	learn: 32.4361119	total: 137ms	remaining: 391ms
26:	learn: 32.1278981	total: 143ms	remaining: 386ms
27:	learn: 31.7863721	total: 148ms	remaining: 382ms
28:	learn: 31.4791450	total: 153ms	remaining: 373ms
29:	learn: 31.1760161	total: 157ms	remaining: 366ms
30:	learn: 30.9238888	total: 161ms	remaining: 359ms
31:	learn: 30.5500905	total: 166ms	remaining: 353ms
32:	learn: 30.3078126	total: 170ms	remaining: 346ms
33:	learn: 30.0480921	total: 174ms	remaining: 339ms
34:	learn: 29.8623884	total: 179ms	remaining: 332ms
35:	learn: 29.5991038	total: 183ms	remaining: 326ms
36:	learn: 29.4061161	total: 187ms	remaining: 319ms
37:	learn: 29.0269515	total: 191ms	remaining: 312ms
38:	learn: 28.8224959	total: 195ms	remaining: 305ms
39:	learn: 28.6417843	total: 199ms	remaining: 299ms
40:	learn: 28.3633368	total: 204ms	remaining: 293ms
41:	learn: 28.0200246	total: 208ms	remaining: 287ms
42:	learn: 27.7221254	total: 212ms	remaining: 281ms
43:	learn: 27.5105818	total: 217ms	remaining: 276ms
44:	learn: 27.3551010	total: 221ms	remaining: 270ms
45:	learn: 27.0787522	total: 226ms	remaining: 265ms
46:	learn: 26.8726317	total: 230ms	remaining: 260ms
47:	learn: 26.8003277	total: 235ms	remaining: 254ms
48:	learn: 26.5493785	total: 240ms	remaining: 249ms
49:	learn: 26.3699550	total: 244ms	remaining: 244ms
50:	learn: 26.1519631	total: 249ms	remaining: 239ms
51:	learn: 25.9277325	total: 257ms	remaining: 238ms
52:	learn: 25.7286035	total: 265ms	remaining: 235ms
53:	learn: 25.4999193	total: 270ms	remaining: 230ms
54:	learn: 25.3434703	total: 275ms	remaining: 225ms
55:	learn: 25.1497545	total: 279ms	remaining: 219ms
56:	learn: 24.9498143	total: 283ms	remaining: 214ms
57:	learn: 24.6509390	total: 288ms	remaining: 208ms
58:	learn: 24.5576144	total: 292ms	remaining: 203ms
59:	learn: 24.4265144	total: 296ms	remaining: 197ms
60:	learn: 24.3100706	total: 300ms	remaining: 192ms
61:	learn: 24.1727952	total: 305ms	remaining: 187ms
62:	learn: 24.0478558	total: 309ms	remaining: 181ms
63:	learn: 23.9124577	total: 313ms	remaining: 176ms
64:	learn: 23.7703718	total: 318ms	remaining: 171ms
65:	learn: 23.5975027	total: 321ms	remaining: 166ms
66:	learn: 23.4318077	total: 326ms	remaining: 160ms
67:	learn: 23.3099691	total: 330ms	remaining: 155ms
68:	learn: 23.1947982	total: 334ms	remaining: 150ms
69:	learn: 23.0260174	total: 339ms	remaining: 145ms
70:	learn: 22.8523100	total: 343ms	remaining: 140ms
71:	learn: 22.8028534	total: 347ms	remaining: 135ms
72:	learn: 22.6880658	total: 352ms	remaining: 130ms
73:	learn: 22.5956809	total: 356ms	remaining: 125ms
74:	learn: 22.4692932	total: 361ms	remaining: 120ms
75:	learn: 22.2863504	total: 366ms	remaining: 116ms
76:	learn: 22.1911237	total: 370ms	remaining: 111ms
77:	learn: 22.1098391	total: 375ms	remaining: 106ms
78:	learn: 22.0182738	total: 379ms	remaining: 101ms
79:	learn: 21.9306746	total: 384ms	remaining: 96ms
80:	learn: 21.7508233	total: 389ms	remaining: 91.2ms
81:	learn: 21.7108446	total: 393ms	remaining: 86.3ms
82:	learn: 21.5931852	total: 398ms	remaining: 81.6ms
83:	learn: 21.4480361	total: 403ms	remaining: 76.7ms
84:	learn: 21.3092119	total: 407ms	remaining: 71.8ms
85:	learn: 21.2605557	total: 411ms	remaining: 66.9ms
86:	learn: 21.1123597	total: 416ms	remaining: 62.2ms
87:	learn: 21.0115642	total: 421ms	remaining: 57.4ms
88:	learn: 20.9389040	total: 426ms	remaining: 52.6ms
89:	learn: 20.8300300	total: 430ms	remaining: 47.8ms
90:	learn: 20.7159733	total: 435ms	remaining: 43ms
91:	learn: 20.6282090	total: 440ms	remaining: 38.3ms
92:	learn: 20.5164529	total: 450ms	remaining: 33.9ms
93:	learn: 20.4692032	total: 458ms	remaining: 29.2ms
94:	learn: 20.3768451	total: 466ms	remaining: 24.5ms
95:	learn: 20.2808056	total: 473ms	remaining: 19.7ms
96:	learn: 20.2082089	total: 479ms	remaining: 14.8ms
97:	learn: 20.1698768	total: 484ms	remaining: 9.88ms
98:	learn: 20.1048816	total: 489ms	remaining: 4.94ms
99:	learn: 20.0086159	total: 494ms	remaining: 0us
0:	learn: 27.3351083	total: 23.8ms	remaining: 2.36s
1:	learn: 26.7523848	total: 48ms	remaining: 2.35s
2:	learn: 26.1326580	total: 71.2ms	remaining: 2.3s
3:	learn: 25.5584244	total: 95.1ms	remaining: 2.28s
4:	learn: 25.0458748	total: 119ms	remaining: 2.27s
5:	learn: 24.4868837	total: 149ms	remaining: 2.34s
6:	learn: 23.9306999	total: 175ms	remaining: 2.32s
7:	learn: 23.4799808	total: 198ms	remaining: 2.28s
8:	learn: 22.9510347	total: 222ms	remaining: 2.24s
9:	learn: 22.4529079	total: 245ms	remaining: 2.2s
10:	learn: 21.9320739	total: 268ms	remaining: 2.17s
11:	learn: 21.4729295	total: 292ms	remaining: 2.14s
12:	learn: 21.0885550	total: 316ms	remaining: 2.11s
13:	learn: 20.7063206	total: 342ms	remaining: 2.1s
14:	learn: 20.3539530	total: 377ms	remaining: 2.13s
15:	learn: 20.0071947	total: 401ms	remaining: 2.1s
16:	learn: 19.6579830	total: 425ms	remaining: 2.08s
17:	learn: 19.2450502	total: 450ms	remaining: 2.05s
18:	learn: 18.8010420	total: 474ms	remaining: 2.02s
19:	learn: 18.4055273	total: 498ms	remaining: 1.99s
20:	learn: 18.0395642	total: 522ms	remaining: 1.96s
21:	learn: 17.6568400	total: 547ms	remaining: 1.94s
22:	learn: 17.4284559	total: 578ms	remaining: 1.94s
23:	learn: 17.0957528	total: 602ms	remaining: 1.91s
24:	learn: 16.7636157	total: 626ms	remaining: 1.88s
25:	learn: 16.4987969	total: 650ms	remaining: 1.85s
26:	learn: 16.2204177	total: 673ms	remaining: 1.82s
27:	learn: 15.9525124	total: 696ms	remaining: 1.79s
28:	learn: 15.5905943	total: 720ms	remaining: 1.76s
29:	learn: 15.3628633	total: 745ms	remaining: 1.74s
30:	learn: 15.1420693	total: 771ms	remaining: 1.72s
31:	learn: 14.9419461	total: 797ms	remaining: 1.69s
32:	learn: 14.7386592	total: 832ms	remaining: 1.69s
33:	learn: 14.5398023	total: 858ms	remaining: 1.67s
34:	learn: 14.2644206	total: 884ms	remaining: 1.64s
35:	learn: 14.0168503	total: 910ms	remaining: 1.62s
36:	learn: 13.7687637	total: 936ms	remaining: 1.59s
37:	learn: 13.5855913	total: 962ms	remaining: 1.57s
38:	learn: 13.3656902	total: 987ms	remaining: 1.54s
39:	learn: 13.2111716	total: 1.01s	remaining: 1.52s
40:	learn: 13.0360149	total: 1.04s	remaining: 1.5s
41:	learn: 12.8789444	total: 1.07s	remaining: 1.48s
42:	learn: 12.6680179	total: 1.1s	remaining: 1.45s
43:	learn: 12.4892268	total: 1.12s	remaining: 1.43s
44:	learn: 12.3275828	total: 1.15s	remaining: 1.4s
45:	learn: 12.2035682	total: 1.17s	remaining: 1.38s
46:	learn: 12.0777397	total: 1.2s	remaining: 1.35s
47:	learn: 11.9055552	total: 1.23s	remaining: 1.33s
48:	learn: 11.7465481	total: 1.26s	remaining: 1.31s
49:	learn: 11.5961200	total: 1.28s	remaining: 1.28s
50:	learn: 11.4305519	total: 1.31s	remaining: 1.26s
51:	learn: 11.2794033	total: 1.34s	remaining: 1.23s
52:	learn: 11.1586950	total: 1.36s	remaining: 1.21s
53:	learn: 11.0432937	total: 1.39s	remaining: 1.18s
54:	learn: 10.9094838	total: 1.42s	remaining: 1.16s
55:	learn: 10.7713451	total: 1.45s	remaining: 1.14s
56:	learn: 10.6664177	total: 1.48s	remaining: 1.11s
57:	learn: 10.5600117	total: 1.5s	remaining: 1.09s
58:	learn: 10.4438974	total: 1.53s	remaining: 1.06s
59:	learn: 10.3294224	total: 1.55s	remaining: 1.03s
60:	learn: 10.2510301	total: 1.58s	remaining: 1.01s
61:	learn: 10.1363264	total: 1.6s	remaining: 982ms
62:	learn: 10.0415049	total: 1.63s	remaining: 955ms
63:	learn: 9.9499833	total: 1.65s	remaining: 930ms
64:	learn: 9.8774263	total: 1.69s	remaining: 910ms
65:	learn: 9.7458853	total: 1.72s	remaining: 884ms
66:	learn: 9.6733951	total: 1.74s	remaining: 858ms
67:	learn: 9.5861856	total: 1.77s	remaining: 831ms
68:	learn: 9.4524193	total: 1.79s	remaining: 805ms
69:	learn: 9.3501165	total: 1.81s	remaining: 778ms
70:	learn: 9.3092902	total: 1.84s	remaining: 751ms
71:	learn: 9.2244222	total: 1.86s	remaining: 725ms
72:	learn: 9.1554253	total: 1.89s	remaining: 700ms
73:	learn: 9.1098892	total: 1.92s	remaining: 674ms
74:	learn: 9.0210213	total: 1.94s	remaining: 648ms
75:	learn: 8.9303181	total: 1.97s	remaining: 621ms
76:	learn: 8.8489769	total: 1.99s	remaining: 595ms
77:	learn: 8.7651580	total: 2.01s	remaining: 568ms
78:	learn: 8.7126796	total: 2.04s	remaining: 542ms
79:	learn: 8.6404554	total: 2.06s	remaining: 516ms
80:	learn: 8.5844756	total: 2.1s	remaining: 492ms
81:	learn: 8.5234333	total: 2.12s	remaining: 466ms
82:	learn: 8.4298762	total: 2.15s	remaining: 440ms
83:	learn: 8.3483002	total: 2.17s	remaining: 414ms
84:	learn: 8.2670647	total: 2.2s	remaining: 388ms
85:	learn: 8.1917398	total: 2.22s	remaining: 362ms
86:	learn: 8.1073642	total: 2.25s	remaining: 336ms
87:	learn: 8.0633288	total: 2.27s	remaining: 310ms
88:	learn: 8.0107997	total: 2.29s	remaining: 284ms
89:	learn: 7.9563547	total: 2.33s	remaining: 259ms
90:	learn: 7.8811408	total: 2.35s	remaining: 233ms
91:	learn: 7.8096107	total: 2.38s	remaining: 207ms
92:	learn: 7.7481700	total: 2.4s	remaining: 181ms
93:	learn: 7.6847843	total: 2.43s	remaining: 155ms
94:	learn: 7.6252335	total: 2.45s	remaining: 129ms
95:	learn: 7.5593148	total: 2.47s	remaining: 103ms
96:	learn: 7.5042331	total: 2.5s	remaining: 77.3ms
97:	learn: 7.4553707	total: 2.52s	remaining: 51.5ms
98:	learn: 7.4035691	total: 2.56s	remaining: 25.8ms
99:	learn: 7.3457537	total: 2.58s	remaining: 0us
0:	learn: 42.5901652	total: 23.2ms	remaining: 2.3s
1:	learn: 41.2917733	total: 46.9ms	remaining: 2.3s
2:	learn: 40.0285549	total: 72ms	remaining: 2.33s
3:	learn: 38.9051734	total: 95.9ms	remaining: 2.3s
4:	learn: 37.7712063	total: 127ms	remaining: 2.42s
5:	learn: 36.6826884	total: 151ms	remaining: 2.37s
6:	learn: 35.6341048	total: 175ms	remaining: 2.33s
7:	learn: 34.5035449	total: 199ms	remaining: 2.29s
8:	learn: 33.5636424	total: 223ms	remaining: 2.25s
9:	learn: 32.5970644	total: 247ms	remaining: 2.22s
10:	learn: 31.8528815	total: 272ms	remaining: 2.2s
11:	learn: 31.0330095	total: 296ms	remaining: 2.17s
12:	learn: 30.3119851	total: 330ms	remaining: 2.21s
13:	learn: 29.5212022	total: 356ms	remaining: 2.19s
14:	learn: 28.7182657	total: 381ms	remaining: 2.16s
15:	learn: 28.0433195	total: 405ms	remaining: 2.13s
16:	learn: 27.2966576	total: 431ms	remaining: 2.1s
17:	learn: 26.5122856	total: 455ms	remaining: 2.07s
18:	learn: 25.8998213	total: 478ms	remaining: 2.04s
19:	learn: 25.2416026	total: 503ms	remaining: 2.01s
20:	learn: 24.6399819	total: 537ms	remaining: 2.02s
21:	learn: 24.0372756	total: 565ms	remaining: 2s
22:	learn: 23.4553733	total: 589ms	remaining: 1.97s
23:	learn: 22.9027871	total: 613ms	remaining: 1.94s
24:	learn: 22.4470878	total: 638ms	remaining: 1.91s
25:	learn: 21.9143721	total: 662ms	remaining: 1.88s
26:	learn: 21.4979516	total: 687ms	remaining: 1.86s
27:	learn: 21.0867622	total: 711ms	remaining: 1.83s
28:	learn: 20.6187419	total: 738ms	remaining: 1.81s
29:	learn: 20.1662373	total: 764ms	remaining: 1.78s
30:	learn: 19.8225041	total: 798ms	remaining: 1.78s
31:	learn: 19.4539400	total: 824ms	remaining: 1.75s
32:	learn: 19.1127000	total: 850ms	remaining: 1.73s
33:	learn: 18.7767435	total: 876ms	remaining: 1.7s
34:	learn: 18.4038779	total: 902ms	remaining: 1.67s
35:	learn: 18.0021121	total: 928ms	remaining: 1.65s
36:	learn: 17.6673419	total: 952ms	remaining: 1.62s
37:	learn: 17.3562137	total: 977ms	remaining: 1.59s
38:	learn: 17.0128082	total: 1s	remaining: 1.57s
39:	learn: 16.7572783	total: 1.03s	remaining: 1.55s
40:	learn: 16.4883778	total: 1.06s	remaining: 1.53s
41:	learn: 16.1756364	total: 1.08s	remaining: 1.5s
42:	learn: 15.9150506	total: 1.11s	remaining: 1.47s
43:	learn: 15.6787555	total: 1.13s	remaining: 1.44s
44:	learn: 15.3862120	total: 1.16s	remaining: 1.42s
45:	learn: 15.1512250	total: 1.18s	remaining: 1.39s
46:	learn: 14.9410960	total: 1.21s	remaining: 1.36s
47:	learn: 14.7086321	total: 1.24s	remaining: 1.34s
48:	learn: 14.5065360	total: 1.27s	remaining: 1.32s
49:	learn: 14.3007466	total: 1.29s	remaining: 1.29s
50:	learn: 14.0972724	total: 1.32s	remaining: 1.27s
51:	learn: 13.8793525	total: 1.35s	remaining: 1.24s
52:	learn: 13.6381311	total: 1.37s	remaining: 1.22s
53:	learn: 13.4603568	total: 1.4s	remaining: 1.19s
54:	learn: 13.2856920	total: 1.43s	remaining: 1.17s
55:	learn: 13.1350779	total: 1.46s	remaining: 1.14s
56:	learn: 13.0110083	total: 1.48s	remaining: 1.12s
57:	learn: 12.8405210	total: 1.51s	remaining: 1.09s
58:	learn: 12.6793938	total: 1.53s	remaining: 1.06s
59:	learn: 12.5497475	total: 1.56s	remaining: 1.04s
60:	learn: 12.4319334	total: 1.58s	remaining: 1.01s
61:	learn: 12.2780964	total: 1.61s	remaining: 985ms
62:	learn: 12.1187174	total: 1.63s	remaining: 959ms
63:	learn: 11.9635081	total: 1.67s	remaining: 938ms
64:	learn: 11.8366366	total: 1.69s	remaining: 912ms
65:	learn: 11.6598347	total: 1.72s	remaining: 886ms
66:	learn: 11.5227416	total: 1.74s	remaining: 859ms
67:	learn: 11.4058818	total: 1.77s	remaining: 833ms
68:	learn: 11.2627892	total: 1.79s	remaining: 807ms
69:	learn: 11.1415094	total: 1.82s	remaining: 781ms
70:	learn: 11.0703329	total: 1.85s	remaining: 755ms
71:	learn: 10.9568944	total: 1.88s	remaining: 731ms
72:	learn: 10.8314078	total: 1.91s	remaining: 705ms
73:	learn: 10.7320013	total: 1.93s	remaining: 679ms
74:	learn: 10.6191666	total: 1.96s	remaining: 652ms
75:	learn: 10.5156798	total: 1.98s	remaining: 626ms
76:	learn: 10.4174442	total: 2.01s	remaining: 600ms
77:	learn: 10.3318165	total: 2.03s	remaining: 574ms
78:	learn: 10.2300435	total: 2.06s	remaining: 548ms
79:	learn: 10.1665911	total: 2.09s	remaining: 523ms
80:	learn: 10.1030585	total: 2.12s	remaining: 497ms
81:	learn: 10.0254875	total: 2.15s	remaining: 471ms
82:	learn: 9.9387640	total: 2.17s	remaining: 445ms
83:	learn: 9.8289920	total: 2.2s	remaining: 419ms
84:	learn: 9.7629500	total: 2.22s	remaining: 392ms
85:	learn: 9.6778611	total: 2.25s	remaining: 366ms
86:	learn: 9.5920617	total: 2.28s	remaining: 341ms
87:	learn: 9.4931297	total: 2.31s	remaining: 315ms
88:	learn: 9.4010604	total: 2.33s	remaining: 288ms
89:	learn: 9.3328614	total: 2.36s	remaining: 262ms
90:	learn: 9.2409094	total: 2.38s	remaining: 236ms
91:	learn: 9.1214245	total: 2.41s	remaining: 209ms
92:	learn: 9.0795335	total: 2.43s	remaining: 183ms
93:	learn: 8.9777250	total: 2.46s	remaining: 157ms
94:	learn: 8.9059891	total: 2.49s	remaining: 131ms
95:	learn: 8.8343294	total: 2.52s	remaining: 105ms
96:	learn: 8.7237295	total: 2.54s	remaining: 78.7ms
97:	learn: 8.6401509	total: 2.57s	remaining: 52.5ms
98:	learn: 8.5735108	total: 2.6s	remaining: 26.2ms
99:	learn: 8.5084579	total: 2.62s	remaining: 0us
0:	learn: 46.1633714	total: 32.3ms	remaining: 3.19s
1:	learn: 44.7904617	total: 62ms	remaining: 3.04s
2:	learn: 43.5292386	total: 86.7ms	remaining: 2.8s
3:	learn: 42.3776226	total: 112ms	remaining: 2.68s
4:	learn: 41.1726533	total: 136ms	remaining: 2.59s
5:	learn: 40.0256490	total: 160ms	remaining: 2.5s
6:	learn: 39.0318588	total: 183ms	remaining: 2.44s
7:	learn: 38.0361181	total: 207ms	remaining: 2.38s
8:	learn: 37.0398789	total: 231ms	remaining: 2.33s
9:	learn: 36.0525089	total: 254ms	remaining: 2.29s
10:	learn: 35.0926830	total: 279ms	remaining: 2.25s
11:	learn: 34.1467022	total: 317ms	remaining: 2.32s
12:	learn: 33.5625454	total: 344ms	remaining: 2.3s
13:	learn: 32.7993162	total: 368ms	remaining: 2.26s
14:	learn: 32.1179593	total: 393ms	remaining: 2.23s
15:	learn: 31.5382898	total: 417ms	remaining: 2.19s
16:	learn: 30.8398862	total: 440ms	remaining: 2.15s
17:	learn: 30.1060070	total: 464ms	remaining: 2.11s
18:	learn: 29.3826415	total: 488ms	remaining: 2.08s
19:	learn: 28.5809579	total: 512ms	remaining: 2.05s
20:	learn: 28.0104942	total: 544ms	remaining: 2.05s
21:	learn: 27.5189566	total: 568ms	remaining: 2.01s
22:	learn: 26.8603656	total: 591ms	remaining: 1.98s
23:	learn: 26.2547050	total: 615ms	remaining: 1.95s
24:	learn: 25.6559137	total: 639ms	remaining: 1.92s
25:	learn: 25.1148352	total: 663ms	remaining: 1.89s
26:	learn: 24.5782363	total: 687ms	remaining: 1.86s
27:	learn: 24.0350871	total: 712ms	remaining: 1.83s
28:	learn: 23.5119480	total: 738ms	remaining: 1.81s
29:	learn: 23.1119795	total: 772ms	remaining: 1.8s
30:	learn: 22.6838288	total: 797ms	remaining: 1.77s
31:	learn: 22.2554624	total: 823ms	remaining: 1.75s
32:	learn: 21.8241578	total: 849ms	remaining: 1.72s
33:	learn: 21.5062830	total: 873ms	remaining: 1.7s
34:	learn: 21.0109226	total: 897ms	remaining: 1.67s
35:	learn: 20.5518606	total: 922ms	remaining: 1.64s
36:	learn: 20.1195339	total: 947ms	remaining: 1.61s
37:	learn: 19.7143479	total: 978ms	remaining: 1.59s
38:	learn: 19.3325253	total: 1s	remaining: 1.57s
39:	learn: 19.0310706	total: 1.03s	remaining: 1.54s
40:	learn: 18.7262797	total: 1.05s	remaining: 1.51s
41:	learn: 18.3611836	total: 1.07s	remaining: 1.48s
42:	learn: 17.9960838	total: 1.1s	remaining: 1.46s
43:	learn: 17.7058991	total: 1.12s	remaining: 1.43s
44:	learn: 17.3944673	total: 1.15s	remaining: 1.4s
45:	learn: 17.1283561	total: 1.18s	remaining: 1.38s
46:	learn: 16.8406890	total: 1.2s	remaining: 1.36s
47:	learn: 16.6072061	total: 1.23s	remaining: 1.33s
48:	learn: 16.3697411	total: 1.25s	remaining: 1.3s
49:	learn: 15.9995507	total: 1.28s	remaining: 1.28s
50:	learn: 15.7372570	total: 1.3s	remaining: 1.25s
51:	learn: 15.4840152	total: 1.32s	remaining: 1.22s
52:	learn: 15.2899590	total: 1.35s	remaining: 1.2s
53:	learn: 15.0111064	total: 1.38s	remaining: 1.18s
54:	learn: 14.7504952	total: 1.41s	remaining: 1.15s
55:	learn: 14.5309762	total: 1.43s	remaining: 1.13s
56:	learn: 14.3525677	total: 1.46s	remaining: 1.1s
57:	learn: 14.1816296	total: 1.48s	remaining: 1.07s
58:	learn: 13.9958516	total: 1.5s	remaining: 1.04s
59:	learn: 13.8356735	total: 1.53s	remaining: 1.02s
60:	learn: 13.6499824	total: 1.55s	remaining: 994ms
61:	learn: 13.4621357	total: 1.58s	remaining: 972ms
62:	learn: 13.3234970	total: 1.61s	remaining: 948ms
63:	learn: 13.1407122	total: 1.64s	remaining: 922ms
64:	learn: 13.0161177	total: 1.67s	remaining: 897ms
65:	learn: 12.8361175	total: 1.69s	remaining: 872ms
66:	learn: 12.7103117	total: 1.72s	remaining: 849ms
67:	learn: 12.5145429	total: 1.75s	remaining: 824ms
68:	learn: 12.3966318	total: 1.78s	remaining: 801ms
69:	learn: 12.2175623	total: 1.82s	remaining: 778ms
70:	learn: 12.0455583	total: 1.84s	remaining: 753ms
71:	learn: 11.9190589	total: 1.87s	remaining: 727ms
72:	learn: 11.7990452	total: 1.9s	remaining: 701ms
73:	learn: 11.6735331	total: 1.92s	remaining: 676ms
74:	learn: 11.5694753	total: 1.95s	remaining: 650ms
75:	learn: 11.4471422	total: 1.98s	remaining: 624ms
76:	learn: 11.3357642	total: 2s	remaining: 599ms
77:	learn: 11.2160164	total: 2.05s	remaining: 578ms
78:	learn: 11.1477947	total: 2.08s	remaining: 552ms
79:	learn: 11.0733969	total: 2.1s	remaining: 526ms
80:	learn: 10.9851608	total: 2.13s	remaining: 500ms
81:	learn: 10.8669537	total: 2.16s	remaining: 474ms
82:	learn: 10.7846130	total: 2.18s	remaining: 447ms
83:	learn: 10.6429068	total: 2.21s	remaining: 421ms
84:	learn: 10.5485368	total: 2.24s	remaining: 395ms
85:	learn: 10.4626750	total: 2.28s	remaining: 371ms
86:	learn: 10.3487863	total: 2.31s	remaining: 345ms
87:	learn: 10.2608682	total: 2.33s	remaining: 318ms
88:	learn: 10.1492862	total: 2.36s	remaining: 292ms
89:	learn: 10.0825429	total: 2.39s	remaining: 265ms
90:	learn: 9.9668337	total: 2.42s	remaining: 239ms
91:	learn: 9.8924239	total: 2.44s	remaining: 212ms
92:	learn: 9.7959729	total: 2.48s	remaining: 187ms
93:	learn: 9.7342503	total: 2.52s	remaining: 161ms
94:	learn: 9.6266181	total: 2.56s	remaining: 134ms
95:	learn: 9.5607316	total: 2.58s	remaining: 108ms
96:	learn: 9.4615938	total: 2.61s	remaining: 80.7ms
97:	learn: 9.3562852	total: 2.64s	remaining: 53.8ms
98:	learn: 9.2518786	total: 2.67s	remaining: 26.9ms
99:	learn: 9.2130065	total: 2.7s	remaining: 0us
0:	learn: 45.6477780	total: 26.3ms	remaining: 2.6s
1:	learn: 44.3885048	total: 52.9ms	remaining: 2.59s
2:	learn: 43.1316502	total: 88.6ms	remaining: 2.86s
3:	learn: 41.8123054	total: 117ms	remaining: 2.8s
4:	learn: 40.7214533	total: 153ms	remaining: 2.91s
5:	learn: 39.6276122	total: 183ms	remaining: 2.86s
6:	learn: 38.6471225	total: 211ms	remaining: 2.8s
7:	learn: 37.7493668	total: 238ms	remaining: 2.74s
8:	learn: 36.7733816	total: 266ms	remaining: 2.69s
9:	learn: 36.1233521	total: 293ms	remaining: 2.63s
10:	learn: 35.5715091	total: 329ms	remaining: 2.66s
11:	learn: 34.6287751	total: 359ms	remaining: 2.63s
12:	learn: 33.8024988	total: 391ms	remaining: 2.62s
13:	learn: 33.0699864	total: 418ms	remaining: 2.57s
14:	learn: 32.2267139	total: 446ms	remaining: 2.53s
15:	learn: 31.4879090	total: 474ms	remaining: 2.49s
16:	learn: 30.6681130	total: 501ms	remaining: 2.45s
17:	learn: 29.9739192	total: 528ms	remaining: 2.41s
18:	learn: 29.3293065	total: 557ms	remaining: 2.37s
19:	learn: 28.5893418	total: 601ms	remaining: 2.4s
20:	learn: 28.0793862	total: 628ms	remaining: 2.36s
21:	learn: 27.5553702	total: 655ms	remaining: 2.32s
22:	learn: 27.0123732	total: 683ms	remaining: 2.29s
23:	learn: 26.3897992	total: 710ms	remaining: 2.25s
24:	learn: 25.7405079	total: 738ms	remaining: 2.21s
25:	learn: 25.2366375	total: 766ms	remaining: 2.18s
26:	learn: 24.8040727	total: 800ms	remaining: 2.16s
27:	learn: 24.3831145	total: 833ms	remaining: 2.14s
28:	learn: 23.9264258	total: 860ms	remaining: 2.1s
29:	learn: 23.4965665	total: 886ms	remaining: 2.07s
30:	learn: 23.0750907	total: 913ms	remaining: 2.03s
31:	learn: 22.6177456	total: 938ms	remaining: 1.99s
32:	learn: 22.1936903	total: 966ms	remaining: 1.96s
33:	learn: 21.7237373	total: 999ms	remaining: 1.94s
34:	learn: 21.2885821	total: 1.03s	remaining: 1.91s
35:	learn: 20.8773820	total: 1.06s	remaining: 1.89s
36:	learn: 20.5069022	total: 1.09s	remaining: 1.86s
37:	learn: 20.1026772	total: 1.12s	remaining: 1.83s
38:	learn: 19.7278063	total: 1.15s	remaining: 1.8s
39:	learn: 19.4576176	total: 1.17s	remaining: 1.76s
40:	learn: 19.1716041	total: 1.2s	remaining: 1.73s
41:	learn: 18.8541728	total: 1.23s	remaining: 1.7s
42:	learn: 18.6411979	total: 1.27s	remaining: 1.68s
43:	learn: 18.3146636	total: 1.29s	remaining: 1.65s
44:	learn: 18.0208582	total: 1.33s	remaining: 1.62s
45:	learn: 17.7344521	total: 1.35s	remaining: 1.59s
46:	learn: 17.4797974	total: 1.38s	remaining: 1.56s
47:	learn: 17.2182299	total: 1.41s	remaining: 1.53s
48:	learn: 16.9607453	total: 1.44s	remaining: 1.49s
49:	learn: 16.7297863	total: 1.47s	remaining: 1.47s
50:	learn: 16.4913674	total: 1.5s	remaining: 1.44s
51:	learn: 16.2886548	total: 1.53s	remaining: 1.41s
52:	learn: 16.0297055	total: 1.56s	remaining: 1.39s
53:	learn: 15.8558289	total: 1.59s	remaining: 1.35s
54:	learn: 15.6256772	total: 1.62s	remaining: 1.32s
55:	learn: 15.4571057	total: 1.65s	remaining: 1.29s
56:	learn: 15.2857211	total: 1.68s	remaining: 1.27s
57:	learn: 15.0790849	total: 1.71s	remaining: 1.24s
58:	learn: 14.8706573	total: 1.73s	remaining: 1.21s
59:	learn: 14.7142314	total: 1.76s	remaining: 1.17s
60:	learn: 14.5574075	total: 1.79s	remaining: 1.14s
61:	learn: 14.3831719	total: 1.82s	remaining: 1.12s
62:	learn: 14.2429846	total: 1.86s	remaining: 1.09s
63:	learn: 14.0982260	total: 1.89s	remaining: 1.06s
64:	learn: 13.9793470	total: 1.91s	remaining: 1.03s
65:	learn: 13.7843655	total: 1.94s	remaining: 999ms
66:	learn: 13.6382336	total: 1.97s	remaining: 969ms
67:	learn: 13.5395713	total: 2s	remaining: 939ms
68:	learn: 13.3797741	total: 2.02s	remaining: 909ms
69:	learn: 13.2910103	total: 2.06s	remaining: 882ms
70:	learn: 13.1587887	total: 2.08s	remaining: 852ms
71:	learn: 13.0464642	total: 2.12s	remaining: 824ms
72:	learn: 12.9189091	total: 2.15s	remaining: 794ms
73:	learn: 12.8056893	total: 2.17s	remaining: 763ms
74:	learn: 12.6904403	total: 2.2s	remaining: 733ms
75:	learn: 12.5608506	total: 2.23s	remaining: 703ms
76:	learn: 12.4712551	total: 2.25s	remaining: 673ms
77:	learn: 12.3371889	total: 2.29s	remaining: 645ms
78:	learn: 12.2449022	total: 2.31s	remaining: 615ms
79:	learn: 12.2163788	total: 2.35s	remaining: 587ms
80:	learn: 12.1464820	total: 2.38s	remaining: 558ms
81:	learn: 12.0001066	total: 2.4s	remaining: 528ms
82:	learn: 11.8843691	total: 2.43s	remaining: 498ms
83:	learn: 11.7638631	total: 2.46s	remaining: 469ms
84:	learn: 11.6389646	total: 2.49s	remaining: 439ms
85:	learn: 11.5343065	total: 2.52s	remaining: 410ms
86:	learn: 11.4267531	total: 2.56s	remaining: 382ms
87:	learn: 11.3136728	total: 2.59s	remaining: 353ms
88:	learn: 11.2361574	total: 2.61s	remaining: 323ms
89:	learn: 11.1507886	total: 2.64s	remaining: 293ms
90:	learn: 11.0988952	total: 2.67s	remaining: 264ms
91:	learn: 10.9988426	total: 2.69s	remaining: 234ms
92:	learn: 10.9584792	total: 2.72s	remaining: 205ms
93:	learn: 10.8771461	total: 2.75s	remaining: 175ms
94:	learn: 10.8161358	total: 2.79s	remaining: 147ms
95:	learn: 10.7524450	total: 2.82s	remaining: 117ms
96:	learn: 10.6566836	total: 2.85s	remaining: 88ms
97:	learn: 10.5550602	total: 2.87s	remaining: 58.6ms
98:	learn: 10.4790583	total: 2.9s	remaining: 29.3ms
99:	learn: 10.4087354	total: 2.93s	remaining: 0us
0:	learn: 46.5398832	total: 26.8ms	remaining: 2.66s
1:	learn: 45.3142618	total: 53.3ms	remaining: 2.61s
2:	learn: 44.0378137	total: 87.7ms	remaining: 2.83s
3:	learn: 42.7976734	total: 114ms	remaining: 2.74s
4:	learn: 41.7080859	total: 140ms	remaining: 2.66s
5:	learn: 40.4513327	total: 167ms	remaining: 2.61s
6:	learn: 39.4903346	total: 195ms	remaining: 2.6s
7:	learn: 38.3767870	total: 235ms	remaining: 2.7s
8:	learn: 37.4056810	total: 262ms	remaining: 2.65s
9:	learn: 36.4947716	total: 289ms	remaining: 2.6s
10:	learn: 35.4421832	total: 318ms	remaining: 2.57s
11:	learn: 34.6183487	total: 339ms	remaining: 2.49s
12:	learn: 33.9603524	total: 365ms	remaining: 2.44s
13:	learn: 33.0635534	total: 392ms	remaining: 2.41s
14:	learn: 32.2067999	total: 426ms	remaining: 2.41s
15:	learn: 31.3961282	total: 453ms	remaining: 2.38s
16:	learn: 30.7113239	total: 479ms	remaining: 2.34s
17:	learn: 29.9919005	total: 506ms	remaining: 2.3s
18:	learn: 29.4016891	total: 532ms	remaining: 2.27s
19:	learn: 28.7435066	total: 558ms	remaining: 2.23s
20:	learn: 28.2283605	total: 593ms	remaining: 2.23s
21:	learn: 27.6749781	total: 620ms	remaining: 2.2s
22:	learn: 27.1695356	total: 656ms	remaining: 2.2s
23:	learn: 26.6842901	total: 684ms	remaining: 2.17s
24:	learn: 26.0987344	total: 712ms	remaining: 2.14s
25:	learn: 25.5266873	total: 738ms	remaining: 2.1s
26:	learn: 25.0200431	total: 767ms	remaining: 2.07s
27:	learn: 24.5972016	total: 793ms	remaining: 2.04s
28:	learn: 24.1557061	total: 829ms	remaining: 2.03s
29:	learn: 23.7405036	total: 855ms	remaining: 1.99s
30:	learn: 23.3574513	total: 889ms	remaining: 1.98s
31:	learn: 23.0493499	total: 915ms	remaining: 1.94s
32:	learn: 22.6480655	total: 940ms	remaining: 1.91s
33:	learn: 22.2777353	total: 964ms	remaining: 1.87s
34:	learn: 21.8294628	total: 989ms	remaining: 1.84s
35:	learn: 21.4783115	total: 1.01s	remaining: 1.8s
36:	learn: 21.1271427	total: 1.04s	remaining: 1.77s
37:	learn: 20.7967443	total: 1.06s	remaining: 1.74s
38:	learn: 20.4949793	total: 1.09s	remaining: 1.71s
39:	learn: 20.1991695	total: 1.12s	remaining: 1.69s
40:	learn: 19.8869467	total: 1.15s	remaining: 1.66s
41:	learn: 19.5656862	total: 1.18s	remaining: 1.63s
42:	learn: 19.2415335	total: 1.2s	remaining: 1.59s
43:	learn: 18.9725471	total: 1.23s	remaining: 1.56s
44:	learn: 18.7035722	total: 1.25s	remaining: 1.53s
45:	learn: 18.3840395	total: 1.28s	remaining: 1.5s
46:	learn: 18.1486662	total: 1.31s	remaining: 1.47s
47:	learn: 17.8740440	total: 1.34s	remaining: 1.45s
48:	learn: 17.6056273	total: 1.36s	remaining: 1.42s
49:	learn: 17.4011083	total: 1.39s	remaining: 1.39s
50:	learn: 17.1935449	total: 1.41s	remaining: 1.35s
51:	learn: 16.9415227	total: 1.44s	remaining: 1.33s
52:	learn: 16.6568624	total: 1.46s	remaining: 1.29s
53:	learn: 16.4254479	total: 1.49s	remaining: 1.26s
54:	learn: 16.1958120	total: 1.51s	remaining: 1.24s
55:	learn: 15.9494332	total: 1.55s	remaining: 1.22s
56:	learn: 15.7736632	total: 1.57s	remaining: 1.19s
57:	learn: 15.6314122	total: 1.6s	remaining: 1.16s
58:	learn: 15.3707626	total: 1.63s	remaining: 1.13s
59:	learn: 15.2211664	total: 1.65s	remaining: 1.1s
60:	learn: 14.9939278	total: 1.68s	remaining: 1.07s
61:	learn: 14.8327626	total: 1.7s	remaining: 1.04s
62:	learn: 14.6555776	total: 1.73s	remaining: 1.01s
63:	learn: 14.5516961	total: 1.76s	remaining: 989ms
64:	learn: 14.3660780	total: 1.78s	remaining: 961ms
65:	learn: 14.1721909	total: 1.81s	remaining: 932ms
66:	learn: 14.0877696	total: 1.83s	remaining: 903ms
67:	learn: 13.9435793	total: 1.86s	remaining: 874ms
68:	learn: 13.7745805	total: 1.88s	remaining: 846ms
69:	learn: 13.6490858	total: 1.91s	remaining: 818ms
70:	learn: 13.5022080	total: 1.93s	remaining: 790ms
71:	learn: 13.3922163	total: 1.97s	remaining: 764ms
72:	learn: 13.2842701	total: 1.99s	remaining: 737ms
73:	learn: 13.1698693	total: 2.02s	remaining: 709ms
74:	learn: 13.0256610	total: 2.04s	remaining: 682ms
75:	learn: 12.8855147	total: 2.07s	remaining: 654ms
76:	learn: 12.7807971	total: 2.1s	remaining: 627ms
77:	learn: 12.6618407	total: 2.12s	remaining: 599ms
78:	learn: 12.5369866	total: 2.15s	remaining: 571ms
79:	learn: 12.4376925	total: 2.17s	remaining: 544ms
80:	learn: 12.3005012	total: 2.2s	remaining: 517ms
81:	learn: 12.1751315	total: 2.23s	remaining: 489ms
82:	learn: 12.0612289	total: 2.25s	remaining: 461ms
83:	learn: 11.9757193	total: 2.28s	remaining: 434ms
84:	learn: 11.8530411	total: 2.3s	remaining: 406ms
85:	learn: 11.7523616	total: 2.33s	remaining: 379ms
86:	learn: 11.6645272	total: 2.35s	remaining: 352ms
87:	learn: 11.5645111	total: 2.38s	remaining: 325ms
88:	learn: 11.4692480	total: 2.41s	remaining: 298ms
89:	learn: 11.3724902	total: 2.44s	remaining: 271ms
90:	learn: 11.2842147	total: 2.47s	remaining: 244ms
91:	learn: 11.1868295	total: 2.49s	remaining: 217ms
92:	learn: 11.0293625	total: 2.52s	remaining: 190ms
93:	learn: 10.9495625	total: 2.54s	remaining: 162ms
94:	learn: 10.8608168	total: 2.57s	remaining: 135ms
95:	learn: 10.7804780	total: 2.59s	remaining: 108ms
96:	learn: 10.6503623	total: 2.62s	remaining: 81.1ms
97:	learn: 10.5906748	total: 2.65s	remaining: 54.1ms
98:	learn: 10.4539468	total: 2.67s	remaining: 27ms
99:	learn: 10.3804160	total: 2.7s	remaining: 0us
0:	learn: 27.3351083	total: 24.4ms	remaining: 2.42s
1:	learn: 26.7523848	total: 48.5ms	remaining: 2.37s
2:	learn: 26.1326580	total: 82.2ms	remaining: 2.66s
3:	learn: 25.5584244	total: 107ms	remaining: 2.56s
4:	learn: 25.0458748	total: 131ms	remaining: 2.49s
5:	learn: 24.4868837	total: 155ms	remaining: 2.42s
6:	learn: 23.9306999	total: 180ms	remaining: 2.39s
7:	learn: 23.4799808	total: 204ms	remaining: 2.35s
8:	learn: 22.9510347	total: 228ms	remaining: 2.31s
9:	learn: 22.4529079	total: 253ms	remaining: 2.27s
10:	learn: 21.9320739	total: 277ms	remaining: 2.24s
11:	learn: 21.4729295	total: 311ms	remaining: 2.28s
12:	learn: 21.0885550	total: 336ms	remaining: 2.25s
13:	learn: 20.7063206	total: 360ms	remaining: 2.21s
14:	learn: 20.3539530	total: 384ms	remaining: 2.17s
15:	learn: 20.0071947	total: 408ms	remaining: 2.14s
16:	learn: 19.6579830	total: 433ms	remaining: 2.11s
17:	learn: 19.2450502	total: 458ms	remaining: 2.09s
18:	learn: 18.8010420	total: 483ms	remaining: 2.06s
19:	learn: 18.4055273	total: 507ms	remaining: 2.03s
20:	learn: 18.0395642	total: 541ms	remaining: 2.04s
21:	learn: 17.6568400	total: 568ms	remaining: 2.02s
22:	learn: 17.4284559	total: 593ms	remaining: 1.99s
23:	learn: 17.0957528	total: 617ms	remaining: 1.95s
24:	learn: 16.7636157	total: 642ms	remaining: 1.93s
25:	learn: 16.4987969	total: 666ms	remaining: 1.9s
26:	learn: 16.2204177	total: 690ms	remaining: 1.86s
27:	learn: 15.9525124	total: 715ms	remaining: 1.84s
28:	learn: 15.5905943	total: 741ms	remaining: 1.81s
29:	learn: 15.3628633	total: 771ms	remaining: 1.8s
30:	learn: 15.1420693	total: 794ms	remaining: 1.77s
31:	learn: 14.9419461	total: 818ms	remaining: 1.74s
32:	learn: 14.7386592	total: 842ms	remaining: 1.71s
33:	learn: 14.5398023	total: 866ms	remaining: 1.68s
34:	learn: 14.2644206	total: 889ms	remaining: 1.65s
35:	learn: 14.0168503	total: 913ms	remaining: 1.62s
36:	learn: 13.7687637	total: 938ms	remaining: 1.6s
37:	learn: 13.5855913	total: 963ms	remaining: 1.57s
38:	learn: 13.3656902	total: 996ms	remaining: 1.56s
39:	learn: 13.2111716	total: 1.02s	remaining: 1.53s
40:	learn: 13.0360149	total: 1.05s	remaining: 1.51s
41:	learn: 12.8789444	total: 1.07s	remaining: 1.48s
42:	learn: 12.6680179	total: 1.1s	remaining: 1.45s
43:	learn: 12.4892268	total: 1.12s	remaining: 1.43s
44:	learn: 12.3275828	total: 1.14s	remaining: 1.4s
45:	learn: 12.2035682	total: 1.18s	remaining: 1.38s
46:	learn: 12.0777397	total: 1.2s	remaining: 1.35s
47:	learn: 11.9055552	total: 1.23s	remaining: 1.33s
48:	learn: 11.7465481	total: 1.25s	remaining: 1.3s
49:	learn: 11.5961200	total: 1.27s	remaining: 1.27s
50:	learn: 11.4305519	total: 1.3s	remaining: 1.25s
51:	learn: 11.2794033	total: 1.32s	remaining: 1.22s
52:	learn: 11.1586950	total: 1.35s	remaining: 1.2s
53:	learn: 11.0432937	total: 1.37s	remaining: 1.17s
54:	learn: 10.9094838	total: 1.41s	remaining: 1.15s
55:	learn: 10.7713451	total: 1.43s	remaining: 1.12s
56:	learn: 10.6664177	total: 1.45s	remaining: 1.1s
57:	learn: 10.5600117	total: 1.48s	remaining: 1.07s
58:	learn: 10.4438974	total: 1.5s	remaining: 1.04s
59:	learn: 10.3294224	total: 1.53s	remaining: 1.02s
60:	learn: 10.2510301	total: 1.55s	remaining: 993ms
61:	learn: 10.1363264	total: 1.58s	remaining: 971ms
62:	learn: 10.0415049	total: 1.62s	remaining: 950ms
63:	learn: 9.9499833	total: 1.64s	remaining: 924ms
64:	learn: 9.8774263	total: 1.67s	remaining: 899ms
65:	learn: 9.7458853	total: 1.69s	remaining: 873ms
66:	learn: 9.6733951	total: 1.72s	remaining: 848ms
67:	learn: 9.5861856	total: 1.75s	remaining: 823ms
68:	learn: 9.4524193	total: 1.78s	remaining: 802ms
69:	learn: 9.3501165	total: 1.82s	remaining: 780ms
70:	learn: 9.3092902	total: 1.85s	remaining: 756ms
71:	learn: 9.2244222	total: 1.88s	remaining: 731ms
72:	learn: 9.1554253	total: 1.91s	remaining: 705ms
73:	learn: 9.1098892	total: 1.94s	remaining: 680ms
74:	learn: 9.0210213	total: 1.96s	remaining: 654ms
75:	learn: 8.9303181	total: 1.99s	remaining: 628ms
76:	learn: 8.8489769	total: 2.02s	remaining: 602ms
77:	learn: 8.7651580	total: 2.06s	remaining: 580ms
78:	learn: 8.7126796	total: 2.08s	remaining: 554ms
79:	learn: 8.6404554	total: 2.11s	remaining: 528ms
80:	learn: 8.5844756	total: 2.14s	remaining: 501ms
81:	learn: 8.5234333	total: 2.16s	remaining: 475ms
82:	learn: 8.4298762	total: 2.19s	remaining: 449ms
83:	learn: 8.3483002	total: 2.22s	remaining: 423ms
84:	learn: 8.2670647	total: 2.25s	remaining: 398ms
85:	learn: 8.1917398	total: 2.29s	remaining: 373ms
86:	learn: 8.1073642	total: 2.32s	remaining: 346ms
87:	learn: 8.0633288	total: 2.35s	remaining: 320ms
88:	learn: 8.0107997	total: 2.37s	remaining: 293ms
89:	learn: 7.9563547	total: 2.4s	remaining: 267ms
90:	learn: 7.8811408	total: 2.43s	remaining: 240ms
91:	learn: 7.8096107	total: 2.46s	remaining: 214ms
92:	learn: 7.7481700	total: 2.49s	remaining: 187ms
93:	learn: 7.6847843	total: 2.52s	remaining: 161ms
94:	learn: 7.6252335	total: 2.55s	remaining: 134ms
95:	learn: 7.5593148	total: 2.58s	remaining: 107ms
96:	learn: 7.5042331	total: 2.61s	remaining: 80.6ms
97:	learn: 7.4553707	total: 2.63s	remaining: 53.7ms
98:	learn: 7.4035691	total: 2.66s	remaining: 26.9ms
99:	learn: 7.3457537	total: 2.7s	remaining: 0us
0:	learn: 42.5901652	total: 26.8ms	remaining: 2.65s
1:	learn: 41.2917733	total: 61.4ms	remaining: 3.01s
2:	learn: 40.0285549	total: 89ms	remaining: 2.88s
3:	learn: 38.9051734	total: 124ms	remaining: 2.97s
4:	learn: 37.7712063	total: 154ms	remaining: 2.92s
5:	learn: 36.6826884	total: 181ms	remaining: 2.83s
6:	learn: 35.6341048	total: 207ms	remaining: 2.74s
7:	learn: 34.5035449	total: 233ms	remaining: 2.68s
8:	learn: 33.5636424	total: 260ms	remaining: 2.63s
9:	learn: 32.5970644	total: 286ms	remaining: 2.58s
10:	learn: 31.8528815	total: 321ms	remaining: 2.59s
11:	learn: 31.0330095	total: 348ms	remaining: 2.55s
12:	learn: 30.3119851	total: 385ms	remaining: 2.58s
13:	learn: 29.5212022	total: 412ms	remaining: 2.53s
14:	learn: 28.7182657	total: 439ms	remaining: 2.49s
15:	learn: 28.0433195	total: 467ms	remaining: 2.45s
16:	learn: 27.2966576	total: 495ms	remaining: 2.41s
17:	learn: 26.5122856	total: 521ms	remaining: 2.38s
18:	learn: 25.8998213	total: 556ms	remaining: 2.37s
19:	learn: 25.2416026	total: 584ms	remaining: 2.33s
20:	learn: 24.6399819	total: 618ms	remaining: 2.32s
21:	learn: 24.0372756	total: 644ms	remaining: 2.28s
22:	learn: 23.4553733	total: 671ms	remaining: 2.25s
23:	learn: 22.9027871	total: 698ms	remaining: 2.21s
24:	learn: 22.4470878	total: 724ms	remaining: 2.17s
25:	learn: 21.9143721	total: 751ms	remaining: 2.14s
26:	learn: 21.4979516	total: 784ms	remaining: 2.12s
27:	learn: 21.0867622	total: 812ms	remaining: 2.09s
28:	learn: 20.6187419	total: 848ms	remaining: 2.08s
29:	learn: 20.1662373	total: 878ms	remaining: 2.05s
30:	learn: 19.8225041	total: 906ms	remaining: 2.02s
31:	learn: 19.4539400	total: 933ms	remaining: 1.98s
32:	learn: 19.1127000	total: 962ms	remaining: 1.95s
33:	learn: 18.7767435	total: 989ms	remaining: 1.92s
34:	learn: 18.4038779	total: 1.02s	remaining: 1.9s
35:	learn: 18.0021121	total: 1.05s	remaining: 1.87s
36:	learn: 17.6673419	total: 1.08s	remaining: 1.85s
37:	learn: 17.3562137	total: 1.11s	remaining: 1.81s
38:	learn: 17.0128082	total: 1.14s	remaining: 1.78s
39:	learn: 16.7572783	total: 1.17s	remaining: 1.75s
40:	learn: 16.4883778	total: 1.19s	remaining: 1.72s
41:	learn: 16.1756364	total: 1.22s	remaining: 1.69s
42:	learn: 15.9150506	total: 1.25s	remaining: 1.65s
43:	learn: 15.6787555	total: 1.29s	remaining: 1.65s
44:	learn: 15.3862120	total: 1.32s	remaining: 1.61s
45:	learn: 15.1512250	total: 1.35s	remaining: 1.58s
46:	learn: 14.9410960	total: 1.38s	remaining: 1.55s
47:	learn: 14.7086321	total: 1.41s	remaining: 1.52s
48:	learn: 14.5065360	total: 1.43s	remaining: 1.49s
49:	learn: 14.3007466	total: 1.47s	remaining: 1.47s
50:	learn: 14.0972724	total: 1.49s	remaining: 1.44s
51:	learn: 13.8793525	total: 1.53s	remaining: 1.41s
52:	learn: 13.6381311	total: 1.56s	remaining: 1.38s
53:	learn: 13.4603568	total: 1.58s	remaining: 1.35s
54:	learn: 13.2856920	total: 1.61s	remaining: 1.32s
55:	learn: 13.1350779	total: 1.64s	remaining: 1.29s
56:	learn: 13.0110083	total: 1.67s	remaining: 1.26s
57:	learn: 12.8405210	total: 1.71s	remaining: 1.24s
58:	learn: 12.6793938	total: 1.74s	remaining: 1.21s
59:	learn: 12.5497475	total: 1.77s	remaining: 1.18s
60:	learn: 12.4319334	total: 1.8s	remaining: 1.15s
61:	learn: 12.2780964	total: 1.83s	remaining: 1.12s
62:	learn: 12.1187174	total: 1.85s	remaining: 1.09s
63:	learn: 11.9635081	total: 1.89s	remaining: 1.06s
64:	learn: 11.8366366	total: 1.92s	remaining: 1.03s
65:	learn: 11.6598347	total: 1.95s	remaining: 1s
66:	learn: 11.5227416	total: 1.97s	remaining: 973ms
67:	learn: 11.4058818	total: 2.01s	remaining: 945ms
68:	learn: 11.2627892	total: 2.04s	remaining: 915ms
69:	learn: 11.1415094	total: 2.06s	remaining: 885ms
70:	learn: 11.0703329	total: 2.1s	remaining: 858ms
71:	learn: 10.9568944	total: 2.13s	remaining: 828ms
72:	learn: 10.8314078	total: 2.16s	remaining: 798ms
73:	learn: 10.7320013	total: 2.19s	remaining: 768ms
74:	learn: 10.6191666	total: 2.21s	remaining: 738ms
75:	learn: 10.5156798	total: 2.24s	remaining: 708ms
76:	learn: 10.4174442	total: 2.28s	remaining: 681ms
77:	learn: 10.3318165	total: 2.31s	remaining: 653ms
78:	learn: 10.2300435	total: 2.34s	remaining: 623ms
79:	learn: 10.1665911	total: 2.37s	remaining: 592ms
80:	learn: 10.1030585	total: 2.4s	remaining: 562ms
81:	learn: 10.0254875	total: 2.42s	remaining: 532ms
82:	learn: 9.9387640	total: 2.45s	remaining: 502ms
83:	learn: 9.8289920	total: 2.48s	remaining: 472ms
84:	learn: 9.7629500	total: 2.52s	remaining: 444ms
85:	learn: 9.6778611	total: 2.56s	remaining: 416ms
86:	learn: 9.5920617	total: 2.58s	remaining: 386ms
87:	learn: 9.4931297	total: 2.61s	remaining: 356ms
88:	learn: 9.4010604	total: 2.64s	remaining: 326ms
89:	learn: 9.3328614	total: 2.67s	remaining: 296ms
90:	learn: 9.2409094	total: 2.69s	remaining: 267ms
91:	learn: 9.1214245	total: 2.72s	remaining: 237ms
92:	learn: 9.0795335	total: 2.77s	remaining: 208ms
93:	learn: 8.9777250	total: 2.79s	remaining: 178ms
94:	learn: 8.9059891	total: 2.82s	remaining: 149ms
95:	learn: 8.8343294	total: 2.85s	remaining: 119ms
96:	learn: 8.7237295	total: 2.88s	remaining: 89ms
97:	learn: 8.6401509	total: 2.9s	remaining: 59.3ms
98:	learn: 8.5735108	total: 2.93s	remaining: 29.6ms
99:	learn: 8.5084579	total: 2.96s	remaining: 0us
0:	learn: 46.1633714	total: 36.2ms	remaining: 3.58s
1:	learn: 44.7904617	total: 63.1ms	remaining: 3.09s
2:	learn: 43.5292386	total: 90ms	remaining: 2.91s
3:	learn: 42.3776226	total: 117ms	remaining: 2.8s
4:	learn: 41.1726533	total: 144ms	remaining: 2.73s
5:	learn: 40.0256490	total: 172ms	remaining: 2.69s
6:	learn: 39.0318588	total: 206ms	remaining: 2.74s
7:	learn: 38.0361181	total: 233ms	remaining: 2.68s
8:	learn: 37.0398789	total: 259ms	remaining: 2.62s
9:	learn: 36.0525089	total: 293ms	remaining: 2.64s
10:	learn: 35.0926830	total: 319ms	remaining: 2.58s
11:	learn: 34.1467022	total: 346ms	remaining: 2.54s
12:	learn: 33.5625454	total: 374ms	remaining: 2.5s
13:	learn: 32.7993162	total: 401ms	remaining: 2.46s
14:	learn: 32.1179593	total: 438ms	remaining: 2.48s
15:	learn: 31.5382898	total: 467ms	remaining: 2.45s
16:	learn: 30.8398862	total: 495ms	remaining: 2.42s
17:	learn: 30.1060070	total: 534ms	remaining: 2.43s
18:	learn: 29.3826415	total: 560ms	remaining: 2.39s
19:	learn: 28.5809579	total: 587ms	remaining: 2.35s
20:	learn: 28.0104942	total: 613ms	remaining: 2.31s
21:	learn: 27.5189566	total: 641ms	remaining: 2.27s
22:	learn: 26.8603656	total: 674ms	remaining: 2.25s
23:	learn: 26.2547050	total: 701ms	remaining: 2.22s
24:	learn: 25.6559137	total: 727ms	remaining: 2.18s
25:	learn: 25.1148352	total: 762ms	remaining: 2.17s
26:	learn: 24.5782363	total: 790ms	remaining: 2.13s
27:	learn: 24.0350871	total: 817ms	remaining: 2.1s
28:	learn: 23.5119480	total: 845ms	remaining: 2.07s
29:	learn: 23.1119795	total: 882ms	remaining: 2.06s
30:	learn: 22.6838288	total: 911ms	remaining: 2.03s
31:	learn: 22.2554624	total: 939ms	remaining: 1.99s
32:	learn: 21.8241578	total: 967ms	remaining: 1.96s
33:	learn: 21.5062830	total: 1s	remaining: 1.95s
34:	learn: 21.0109226	total: 1.03s	remaining: 1.91s
35:	learn: 20.5518606	total: 1.06s	remaining: 1.89s
36:	learn: 20.1195339	total: 1.09s	remaining: 1.86s
37:	learn: 19.7143479	total: 1.12s	remaining: 1.83s
38:	learn: 19.3325253	total: 1.15s	remaining: 1.79s
39:	learn: 19.0310706	total: 1.17s	remaining: 1.76s
40:	learn: 18.7262797	total: 1.2s	remaining: 1.73s
41:	learn: 18.3611836	total: 1.23s	remaining: 1.69s
42:	learn: 17.9960838	total: 1.26s	remaining: 1.67s
43:	learn: 17.7058991	total: 1.29s	remaining: 1.64s
44:	learn: 17.3944673	total: 1.32s	remaining: 1.62s
45:	learn: 17.1283561	total: 1.35s	remaining: 1.59s
46:	learn: 16.8406890	total: 1.38s	remaining: 1.56s
47:	learn: 16.6072061	total: 1.41s	remaining: 1.52s
48:	learn: 16.3697411	total: 1.44s	remaining: 1.5s
49:	learn: 15.9995507	total: 1.46s	remaining: 1.46s
50:	learn: 15.7372570	total: 1.5s	remaining: 1.44s
51:	learn: 15.4840152	total: 1.53s	remaining: 1.41s
52:	learn: 15.2899590	total: 1.56s	remaining: 1.39s
53:	learn: 15.0111064	total: 1.59s	remaining: 1.35s
54:	learn: 14.7504952	total: 1.61s	remaining: 1.32s
55:	learn: 14.5309762	total: 1.64s	remaining: 1.29s
56:	learn: 14.3525677	total: 1.67s	remaining: 1.26s
57:	learn: 14.1816296	total: 1.7s	remaining: 1.23s
58:	learn: 13.9958516	total: 1.73s	remaining: 1.2s
59:	learn: 13.8356735	total: 1.76s	remaining: 1.17s
60:	learn: 13.6499824	total: 1.79s	remaining: 1.15s
61:	learn: 13.4621357	total: 1.82s	remaining: 1.12s
62:	learn: 13.3234970	total: 1.85s	remaining: 1.09s
63:	learn: 13.1407122	total: 1.88s	remaining: 1.06s
64:	learn: 13.0161177	total: 1.91s	remaining: 1.03s
65:	learn: 12.8361175	total: 1.94s	remaining: 999ms
66:	learn: 12.7103117	total: 1.98s	remaining: 974ms
67:	learn: 12.5145429	total: 2.01s	remaining: 947ms
68:	learn: 12.3966318	total: 2.04s	remaining: 917ms
69:	learn: 12.2175623	total: 2.07s	remaining: 886ms
70:	learn: 12.0455583	total: 2.09s	remaining: 856ms
71:	learn: 11.9190589	total: 2.12s	remaining: 826ms
72:	learn: 11.7990452	total: 2.15s	remaining: 795ms
73:	learn: 11.6735331	total: 2.18s	remaining: 765ms
74:	learn: 11.5694753	total: 2.21s	remaining: 737ms
75:	learn: 11.4471422	total: 2.25s	remaining: 711ms
76:	learn: 11.3357642	total: 2.28s	remaining: 681ms
77:	learn: 11.2160164	total: 2.31s	remaining: 651ms
78:	learn: 11.1477947	total: 2.34s	remaining: 621ms
79:	learn: 11.0733969	total: 2.36s	remaining: 591ms
80:	learn: 10.9851608	total: 2.39s	remaining: 561ms
81:	learn: 10.8669537	total: 2.42s	remaining: 531ms
82:	learn: 10.7846130	total: 2.45s	remaining: 502ms
83:	learn: 10.6429068	total: 2.49s	remaining: 474ms
84:	learn: 10.5485368	total: 2.51s	remaining: 444ms
85:	learn: 10.4626750	total: 2.54s	remaining: 414ms
86:	learn: 10.3487863	total: 2.57s	remaining: 384ms
87:	learn: 10.2608682	total: 2.59s	remaining: 354ms
88:	learn: 10.1492862	total: 2.62s	remaining: 324ms
89:	learn: 10.0825429	total: 2.66s	remaining: 296ms
90:	learn: 9.9668337	total: 2.69s	remaining: 266ms
91:	learn: 9.8924239	total: 2.73s	remaining: 237ms
92:	learn: 9.7959729	total: 2.75s	remaining: 207ms
93:	learn: 9.7342503	total: 2.78s	remaining: 177ms
94:	learn: 9.6266181	total: 2.81s	remaining: 148ms
95:	learn: 9.5607316	total: 2.83s	remaining: 118ms
96:	learn: 9.4615938	total: 2.86s	remaining: 88.6ms
97:	learn: 9.3562852	total: 2.9s	remaining: 59.1ms
98:	learn: 9.2518786	total: 2.92s	remaining: 29.5ms
99:	learn: 9.2130065	total: 2.96s	remaining: 0us
0:	learn: 45.6477780	total: 26ms	remaining: 2.57s
1:	learn: 44.3885048	total: 61.9ms	remaining: 3.03s
2:	learn: 43.1316502	total: 90.4ms	remaining: 2.92s
3:	learn: 41.8123054	total: 118ms	remaining: 2.84s
4:	learn: 40.7214533	total: 146ms	remaining: 2.78s
5:	learn: 39.6276122	total: 173ms	remaining: 2.72s
6:	learn: 38.6471225	total: 201ms	remaining: 2.67s
7:	learn: 37.7493668	total: 228ms	remaining: 2.62s
8:	learn: 36.7733816	total: 262ms	remaining: 2.65s
9:	learn: 36.1233521	total: 291ms	remaining: 2.62s
10:	learn: 35.5715091	total: 323ms	remaining: 2.62s
11:	learn: 34.6287751	total: 349ms	remaining: 2.56s
12:	learn: 33.8024988	total: 376ms	remaining: 2.52s
13:	learn: 33.0699864	total: 403ms	remaining: 2.47s
14:	learn: 32.2267139	total: 429ms	remaining: 2.43s
15:	learn: 31.4879090	total: 456ms	remaining: 2.39s
16:	learn: 30.6681130	total: 491ms	remaining: 2.4s
17:	learn: 29.9739192	total: 527ms	remaining: 2.4s
18:	learn: 29.3293065	total: 557ms	remaining: 2.37s
19:	learn: 28.5893418	total: 584ms	remaining: 2.34s
20:	learn: 28.0793862	total: 611ms	remaining: 2.3s
21:	learn: 27.5553702	total: 640ms	remaining: 2.27s
22:	learn: 27.0123732	total: 666ms	remaining: 2.23s
23:	learn: 26.3897992	total: 693ms	remaining: 2.19s
24:	learn: 25.7405079	total: 720ms	remaining: 2.16s
25:	learn: 25.2366375	total: 760ms	remaining: 2.16s
26:	learn: 24.8040727	total: 786ms	remaining: 2.13s
27:	learn: 24.3831145	total: 812ms	remaining: 2.09s
28:	learn: 23.9264258	total: 839ms	remaining: 2.05s
29:	learn: 23.4965665	total: 865ms	remaining: 2.02s
30:	learn: 23.0750907	total: 892ms	remaining: 1.99s
31:	learn: 22.6177456	total: 919ms	remaining: 1.95s
32:	learn: 22.1936903	total: 954ms	remaining: 1.94s
33:	learn: 21.7237373	total: 996ms	remaining: 1.93s
34:	learn: 21.2885821	total: 1.02s	remaining: 1.9s
35:	learn: 20.8773820	total: 1.05s	remaining: 1.87s
36:	learn: 20.5069022	total: 1.08s	remaining: 1.84s
37:	learn: 20.1026772	total: 1.11s	remaining: 1.81s
38:	learn: 19.7278063	total: 1.14s	remaining: 1.77s
39:	learn: 19.4576176	total: 1.17s	remaining: 1.75s
40:	learn: 19.1716041	total: 1.2s	remaining: 1.72s
41:	learn: 18.8541728	total: 1.23s	remaining: 1.7s
42:	learn: 18.6411979	total: 1.26s	remaining: 1.67s
43:	learn: 18.3146636	total: 1.28s	remaining: 1.63s
44:	learn: 18.0208582	total: 1.31s	remaining: 1.6s
45:	learn: 17.7344521	total: 1.34s	remaining: 1.57s
46:	learn: 17.4797974	total: 1.37s	remaining: 1.54s
47:	learn: 17.2182299	total: 1.4s	remaining: 1.52s
48:	learn: 16.9607453	total: 1.43s	remaining: 1.49s
49:	learn: 16.7297863	total: 1.46s	remaining: 1.46s
50:	learn: 16.4913674	total: 1.5s	remaining: 1.44s
51:	learn: 16.2886548	total: 1.52s	remaining: 1.41s
52:	learn: 16.0297055	total: 1.55s	remaining: 1.37s
53:	learn: 15.8558289	total: 1.58s	remaining: 1.34s
54:	learn: 15.6256772	total: 1.6s	remaining: 1.31s
55:	learn: 15.4571057	total: 1.64s	remaining: 1.28s
56:	learn: 15.2857211	total: 1.66s	remaining: 1.25s
57:	learn: 15.0790849	total: 1.69s	remaining: 1.22s
58:	learn: 14.8706573	total: 1.72s	remaining: 1.2s
59:	learn: 14.7142314	total: 1.75s	remaining: 1.17s
60:	learn: 14.5574075	total: 1.78s	remaining: 1.14s
61:	learn: 14.3831719	total: 1.8s	remaining: 1.11s
62:	learn: 14.2429846	total: 1.84s	remaining: 1.08s
63:	learn: 14.0982260	total: 1.87s	remaining: 1.05s
64:	learn: 13.9793470	total: 1.9s	remaining: 1.02s
65:	learn: 13.7843655	total: 1.92s	remaining: 992ms
66:	learn: 13.6382336	total: 1.96s	remaining: 965ms
67:	learn: 13.5395713	total: 1.99s	remaining: 935ms
68:	learn: 13.3797741	total: 2.01s	remaining: 905ms
69:	learn: 13.2910103	total: 2.05s	remaining: 878ms
70:	learn: 13.1587887	total: 2.08s	remaining: 849ms
71:	learn: 13.0464642	total: 2.1s	remaining: 819ms
72:	learn: 12.9189091	total: 2.13s	remaining: 789ms
73:	learn: 12.8056893	total: 2.16s	remaining: 758ms
74:	learn: 12.6904403	total: 2.19s	remaining: 728ms
75:	learn: 12.5608506	total: 2.22s	remaining: 701ms
76:	learn: 12.4712551	total: 2.25s	remaining: 671ms
77:	learn: 12.3371889	total: 2.27s	remaining: 642ms
78:	learn: 12.2449022	total: 2.31s	remaining: 614ms
79:	learn: 12.2163788	total: 2.34s	remaining: 584ms
80:	learn: 12.1464820	total: 2.36s	remaining: 555ms
81:	learn: 12.0001066	total: 2.39s	remaining: 525ms
82:	learn: 11.8843691	total: 2.42s	remaining: 496ms
83:	learn: 11.7638631	total: 2.46s	remaining: 468ms
84:	learn: 11.6389646	total: 2.48s	remaining: 438ms
85:	learn: 11.5343065	total: 2.51s	remaining: 409ms
86:	learn: 11.4267531	total: 2.54s	remaining: 380ms
87:	learn: 11.3136728	total: 2.57s	remaining: 351ms
88:	learn: 11.2361574	total: 2.6s	remaining: 321ms
89:	learn: 11.1507886	total: 2.62s	remaining: 292ms
90:	learn: 11.0988952	total: 2.65s	remaining: 262ms
91:	learn: 10.9988426	total: 2.68s	remaining: 233ms
92:	learn: 10.9584792	total: 2.71s	remaining: 204ms
93:	learn: 10.8771461	total: 2.74s	remaining: 175ms
94:	learn: 10.8161358	total: 2.77s	remaining: 146ms
95:	learn: 10.7524450	total: 2.81s	remaining: 117ms
96:	learn: 10.6566836	total: 2.83s	remaining: 87.6ms
97:	learn: 10.5550602	total: 2.86s	remaining: 58.4ms
98:	learn: 10.4790583	total: 2.89s	remaining: 29.2ms
99:	learn: 10.4087354	total: 2.91s	remaining: 0us
0:	learn: 46.5398832	total: 40.8ms	remaining: 4.04s
1:	learn: 45.3142618	total: 68ms	remaining: 3.33s
2:	learn: 44.0378137	total: 95.2ms	remaining: 3.08s
3:	learn: 42.7976734	total: 122ms	remaining: 2.92s
4:	learn: 41.7080859	total: 148ms	remaining: 2.81s
5:	learn: 40.4513327	total: 174ms	remaining: 2.73s
6:	learn: 39.4903346	total: 202ms	remaining: 2.68s
7:	learn: 38.3767870	total: 240ms	remaining: 2.75s
8:	learn: 37.4056810	total: 278ms	remaining: 2.81s
9:	learn: 36.4947716	total: 305ms	remaining: 2.75s
10:	learn: 35.4421832	total: 333ms	remaining: 2.69s
11:	learn: 34.6183487	total: 348ms	remaining: 2.55s
12:	learn: 33.9603524	total: 375ms	remaining: 2.51s
13:	learn: 33.0635534	total: 402ms	remaining: 2.47s
14:	learn: 32.2067999	total: 430ms	remaining: 2.44s
15:	learn: 31.3961282	total: 465ms	remaining: 2.44s
16:	learn: 30.7113239	total: 494ms	remaining: 2.41s
17:	learn: 29.9919005	total: 529ms	remaining: 2.41s
18:	learn: 29.4016891	total: 557ms	remaining: 2.37s
19:	learn: 28.7435066	total: 583ms	remaining: 2.33s
20:	learn: 28.2283605	total: 610ms	remaining: 2.29s
21:	learn: 27.6749781	total: 637ms	remaining: 2.26s
22:	learn: 27.1695356	total: 665ms	remaining: 2.23s
23:	learn: 26.6842901	total: 700ms	remaining: 2.22s
24:	learn: 26.0987344	total: 727ms	remaining: 2.18s
25:	learn: 25.5266873	total: 765ms	remaining: 2.18s
26:	learn: 25.0200431	total: 793ms	remaining: 2.15s
27:	learn: 24.5972016	total: 821ms	remaining: 2.11s
28:	learn: 24.1557061	total: 848ms	remaining: 2.08s
29:	learn: 23.7405036	total: 875ms	remaining: 2.04s
30:	learn: 23.3574513	total: 902ms	remaining: 2.01s
31:	learn: 23.0493499	total: 937ms	remaining: 1.99s
32:	learn: 22.6480655	total: 964ms	remaining: 1.96s
33:	learn: 22.2777353	total: 991ms	remaining: 1.92s
34:	learn: 21.8294628	total: 1.02s	remaining: 1.9s
35:	learn: 21.4783115	total: 1.05s	remaining: 1.87s
36:	learn: 21.1271427	total: 1.08s	remaining: 1.83s
37:	learn: 20.7967443	total: 1.11s	remaining: 1.81s
38:	learn: 20.4949793	total: 1.14s	remaining: 1.79s
39:	learn: 20.1991695	total: 1.17s	remaining: 1.75s
40:	learn: 19.8869467	total: 1.2s	remaining: 1.72s
41:	learn: 19.5656862	total: 1.23s	remaining: 1.69s
42:	learn: 19.2415335	total: 1.26s	remaining: 1.67s
43:	learn: 18.9725471	total: 1.29s	remaining: 1.64s
44:	learn: 18.7035722	total: 1.32s	remaining: 1.61s
45:	learn: 18.3840395	total: 1.35s	remaining: 1.58s
46:	learn: 18.1486662	total: 1.37s	remaining: 1.55s
47:	learn: 17.8740440	total: 1.4s	remaining: 1.52s
48:	learn: 17.6056273	total: 1.43s	remaining: 1.48s
49:	learn: 17.4011083	total: 1.45s	remaining: 1.45s
50:	learn: 17.1935449	total: 1.48s	remaining: 1.42s
51:	learn: 16.9415227	total: 1.51s	remaining: 1.39s
52:	learn: 16.6568624	total: 1.53s	remaining: 1.36s
53:	learn: 16.4254479	total: 1.57s	remaining: 1.34s
54:	learn: 16.1958120	total: 1.6s	remaining: 1.31s
55:	learn: 15.9494332	total: 1.63s	remaining: 1.28s
56:	learn: 15.7736632	total: 1.65s	remaining: 1.25s
57:	learn: 15.6314122	total: 1.68s	remaining: 1.22s
58:	learn: 15.3707626	total: 1.71s	remaining: 1.19s
59:	learn: 15.2211664	total: 1.75s	remaining: 1.16s
60:	learn: 14.9939278	total: 1.78s	remaining: 1.14s
61:	learn: 14.8327626	total: 1.8s	remaining: 1.11s
62:	learn: 14.6555776	total: 1.83s	remaining: 1.07s
63:	learn: 14.5516961	total: 1.86s	remaining: 1.04s
64:	learn: 14.3660780	total: 1.88s	remaining: 1.01s
65:	learn: 14.1721909	total: 1.91s	remaining: 984ms
66:	learn: 14.0877696	total: 1.94s	remaining: 954ms
67:	learn: 13.9435793	total: 1.98s	remaining: 931ms
68:	learn: 13.7745805	total: 2.01s	remaining: 903ms
69:	learn: 13.6490858	total: 2.04s	remaining: 873ms
70:	learn: 13.5022080	total: 2.06s	remaining: 843ms
71:	learn: 13.3922163	total: 2.09s	remaining: 813ms
72:	learn: 13.2842701	total: 2.12s	remaining: 783ms
73:	learn: 13.1698693	total: 2.14s	remaining: 753ms
74:	learn: 13.0256610	total: 2.17s	remaining: 724ms
75:	learn: 12.8855147	total: 2.21s	remaining: 697ms
76:	learn: 12.7807971	total: 2.24s	remaining: 670ms
77:	learn: 12.6618407	total: 2.27s	remaining: 640ms
78:	learn: 12.5369866	total: 2.3s	remaining: 610ms
79:	learn: 12.4376925	total: 2.32s	remaining: 581ms
80:	learn: 12.3005012	total: 2.35s	remaining: 551ms
81:	learn: 12.1751315	total: 2.38s	remaining: 522ms
82:	learn: 12.0612289	total: 2.41s	remaining: 494ms
83:	learn: 11.9757193	total: 2.44s	remaining: 465ms
84:	learn: 11.8530411	total: 2.48s	remaining: 438ms
85:	learn: 11.7523616	total: 2.51s	remaining: 408ms
86:	learn: 11.6645272	total: 2.53s	remaining: 379ms
87:	learn: 11.5645111	total: 2.56s	remaining: 349ms
88:	learn: 11.4692480	total: 2.59s	remaining: 320ms
89:	learn: 11.3724902	total: 2.62s	remaining: 291ms
90:	learn: 11.2842147	total: 2.65s	remaining: 262ms
91:	learn: 11.1868295	total: 2.68s	remaining: 233ms
92:	learn: 11.0293625	total: 2.71s	remaining: 204ms
93:	learn: 10.9495625	total: 2.74s	remaining: 175ms
94:	learn: 10.8608168	total: 2.76s	remaining: 145ms
95:	learn: 10.7804780	total: 2.79s	remaining: 116ms
96:	learn: 10.6503623	total: 2.82s	remaining: 87.2ms
97:	learn: 10.5906748	total: 2.85s	remaining: 58.3ms
98:	learn: 10.4539468	total: 2.88s	remaining: 29.1ms
99:	learn: 10.3804160	total: 2.91s	remaining: 0us
avg_Mae_val de la población en la generación 5: 18.143650372456857 con std media = 9.21051371966659
Mae_val del Mejor modelo en la generación 5: 18.0243 con std = 9.1565
0:	learn: 27.6506730	total: 5.65ms	remaining: 559ms
1:	learn: 27.1638793	total: 10.3ms	remaining: 503ms
2:	learn: 26.8000665	total: 15.1ms	remaining: 488ms
3:	learn: 26.4256132	total: 19.9ms	remaining: 477ms
4:	learn: 26.0088351	total: 24.9ms	remaining: 473ms
5:	learn: 25.7558298	total: 29.7ms	remaining: 466ms
6:	learn: 25.3380711	total: 34.1ms	remaining: 453ms
7:	learn: 25.0571611	total: 38.9ms	remaining: 447ms
8:	learn: 24.6790148	total: 43.8ms	remaining: 443ms
9:	learn: 24.3600941	total: 48.7ms	remaining: 438ms
10:	learn: 24.1105667	total: 53.6ms	remaining: 433ms
11:	learn: 23.7736542	total: 58.5ms	remaining: 429ms
12:	learn: 23.5824429	total: 65.1ms	remaining: 436ms
13:	learn: 23.2658303	total: 71.8ms	remaining: 441ms
14:	learn: 23.0061886	total: 78.4ms	remaining: 445ms
15:	learn: 22.8060389	total: 84.3ms	remaining: 443ms
16:	learn: 22.5899735	total: 89.2ms	remaining: 435ms
17:	learn: 22.3625048	total: 95.1ms	remaining: 433ms
18:	learn: 22.0706477	total: 103ms	remaining: 437ms
19:	learn: 21.8739394	total: 107ms	remaining: 430ms
20:	learn: 21.6143650	total: 112ms	remaining: 421ms
21:	learn: 21.4571623	total: 117ms	remaining: 414ms
22:	learn: 21.2395769	total: 121ms	remaining: 405ms
23:	learn: 20.9801795	total: 125ms	remaining: 397ms
24:	learn: 20.8036808	total: 130ms	remaining: 390ms
25:	learn: 20.6387539	total: 135ms	remaining: 384ms
26:	learn: 20.4401427	total: 139ms	remaining: 376ms
27:	learn: 20.2879575	total: 143ms	remaining: 369ms
28:	learn: 20.0538664	total: 148ms	remaining: 363ms
29:	learn: 19.8363102	total: 153ms	remaining: 357ms
30:	learn: 19.7015446	total: 157ms	remaining: 351ms
31:	learn: 19.5483114	total: 162ms	remaining: 345ms
32:	learn: 19.4163053	total: 167ms	remaining: 339ms
33:	learn: 19.2880625	total: 171ms	remaining: 333ms
34:	learn: 19.1303389	total: 176ms	remaining: 327ms
35:	learn: 18.9237448	total: 181ms	remaining: 322ms
36:	learn: 18.8142925	total: 186ms	remaining: 316ms
37:	learn: 18.6994696	total: 190ms	remaining: 311ms
38:	learn: 18.5629211	total: 195ms	remaining: 305ms
39:	learn: 18.4600917	total: 200ms	remaining: 300ms
40:	learn: 18.3567139	total: 205ms	remaining: 295ms
41:	learn: 18.2120527	total: 210ms	remaining: 289ms
42:	learn: 18.0688062	total: 214ms	remaining: 284ms
43:	learn: 17.9250181	total: 219ms	remaining: 279ms
44:	learn: 17.8399138	total: 224ms	remaining: 274ms
45:	learn: 17.6720713	total: 229ms	remaining: 269ms
46:	learn: 17.5273091	total: 234ms	remaining: 264ms
47:	learn: 17.4232814	total: 239ms	remaining: 259ms
48:	learn: 17.2957579	total: 244ms	remaining: 254ms
49:	learn: 17.1892874	total: 248ms	remaining: 248ms
50:	learn: 17.0490355	total: 254ms	remaining: 244ms
51:	learn: 16.9666450	total: 259ms	remaining: 239ms
52:	learn: 16.8600056	total: 264ms	remaining: 235ms
53:	learn: 16.7542588	total: 270ms	remaining: 230ms
54:	learn: 16.6316077	total: 275ms	remaining: 225ms
55:	learn: 16.5588112	total: 280ms	remaining: 220ms
56:	learn: 16.5010186	total: 287ms	remaining: 216ms
57:	learn: 16.4081540	total: 294ms	remaining: 213ms
58:	learn: 16.3040451	total: 303ms	remaining: 211ms
59:	learn: 16.1890564	total: 310ms	remaining: 207ms
60:	learn: 16.0977103	total: 319ms	remaining: 204ms
61:	learn: 15.9627607	total: 324ms	remaining: 199ms
62:	learn: 15.9022248	total: 330ms	remaining: 194ms
63:	learn: 15.8151881	total: 334ms	remaining: 188ms
64:	learn: 15.7353125	total: 340ms	remaining: 183ms
65:	learn: 15.6312897	total: 345ms	remaining: 178ms
66:	learn: 15.5330927	total: 350ms	remaining: 173ms
67:	learn: 15.4698681	total: 356ms	remaining: 167ms
68:	learn: 15.4108571	total: 361ms	remaining: 162ms
69:	learn: 15.3492945	total: 366ms	remaining: 157ms
70:	learn: 15.3036540	total: 372ms	remaining: 152ms
71:	learn: 15.2390833	total: 377ms	remaining: 147ms
72:	learn: 15.1556327	total: 382ms	remaining: 141ms
73:	learn: 15.1016315	total: 388ms	remaining: 136ms
74:	learn: 15.0287076	total: 393ms	remaining: 131ms
75:	learn: 14.9530572	total: 398ms	remaining: 126ms
76:	learn: 14.8965517	total: 402ms	remaining: 120ms
77:	learn: 14.8125426	total: 406ms	remaining: 115ms
78:	learn: 14.7435359	total: 411ms	remaining: 109ms
79:	learn: 14.6963163	total: 415ms	remaining: 104ms
80:	learn: 14.6200060	total: 420ms	remaining: 98.5ms
81:	learn: 14.5707760	total: 425ms	remaining: 93.2ms
82:	learn: 14.5053651	total: 429ms	remaining: 87.9ms
83:	learn: 14.4115458	total: 434ms	remaining: 82.7ms
84:	learn: 14.3117159	total: 438ms	remaining: 77.4ms
85:	learn: 14.2511326	total: 443ms	remaining: 72.1ms
86:	learn: 14.1372486	total: 448ms	remaining: 66.9ms
87:	learn: 14.0992301	total: 452ms	remaining: 61.7ms
88:	learn: 14.0228331	total: 457ms	remaining: 56.5ms
89:	learn: 13.9249836	total: 462ms	remaining: 51.3ms
90:	learn: 13.8679364	total: 467ms	remaining: 46.2ms
91:	learn: 13.8405578	total: 472ms	remaining: 41ms
92:	learn: 13.7711325	total: 477ms	remaining: 35.9ms
93:	learn: 13.7357019	total: 483ms	remaining: 30.8ms
94:	learn: 13.6735271	total: 492ms	remaining: 25.9ms
95:	learn: 13.5682393	total: 500ms	remaining: 20.8ms
96:	learn: 13.5342610	total: 507ms	remaining: 15.7ms
97:	learn: 13.4710034	total: 513ms	remaining: 10.5ms
98:	learn: 13.4022402	total: 519ms	remaining: 5.24ms
99:	learn: 13.3351238	total: 523ms	remaining: 0us
0:	learn: 42.9181702	total: 5.55ms	remaining: 549ms
1:	learn: 42.0286736	total: 10.1ms	remaining: 495ms
2:	learn: 41.2764568	total: 14.3ms	remaining: 463ms
3:	learn: 40.4721918	total: 18.9ms	remaining: 454ms
4:	learn: 39.8518928	total: 23.8ms	remaining: 451ms
5:	learn: 39.2645479	total: 28.4ms	remaining: 445ms
6:	learn: 38.4453704	total: 32.8ms	remaining: 436ms
7:	learn: 37.7122059	total: 37.4ms	remaining: 430ms
8:	learn: 36.9185796	total: 41.9ms	remaining: 424ms
9:	learn: 36.1668427	total: 46.6ms	remaining: 420ms
10:	learn: 35.5639029	total: 51ms	remaining: 413ms
11:	learn: 34.7724193	total: 55.5ms	remaining: 407ms
12:	learn: 34.3053433	total: 60.1ms	remaining: 402ms
13:	learn: 33.6561327	total: 61.4ms	remaining: 377ms
14:	learn: 33.0134042	total: 66ms	remaining: 374ms
15:	learn: 32.4483300	total: 70.9ms	remaining: 372ms
16:	learn: 31.8581144	total: 76ms	remaining: 371ms
17:	learn: 31.2858301	total: 80.8ms	remaining: 368ms
18:	learn: 30.8483018	total: 85.8ms	remaining: 366ms
19:	learn: 30.4174622	total: 90.9ms	remaining: 364ms
20:	learn: 29.8994411	total: 95.8ms	remaining: 361ms
21:	learn: 29.5045355	total: 100ms	remaining: 356ms
22:	learn: 28.9923519	total: 105ms	remaining: 352ms
23:	learn: 28.4255717	total: 110ms	remaining: 348ms
24:	learn: 28.0283139	total: 114ms	remaining: 343ms
25:	learn: 27.7434814	total: 119ms	remaining: 338ms
26:	learn: 27.2770731	total: 127ms	remaining: 344ms
27:	learn: 26.8928270	total: 136ms	remaining: 349ms
28:	learn: 26.4282671	total: 145ms	remaining: 355ms
29:	learn: 26.0272764	total: 153ms	remaining: 357ms
30:	learn: 25.7579312	total: 168ms	remaining: 375ms
31:	learn: 25.4542434	total: 174ms	remaining: 370ms
32:	learn: 25.1232564	total: 180ms	remaining: 366ms
33:	learn: 24.8110795	total: 186ms	remaining: 360ms
34:	learn: 24.5077579	total: 191ms	remaining: 354ms
35:	learn: 24.1909000	total: 196ms	remaining: 348ms
36:	learn: 23.8719468	total: 201ms	remaining: 343ms
37:	learn: 23.5764366	total: 203ms	remaining: 331ms
38:	learn: 23.3468086	total: 208ms	remaining: 326ms
39:	learn: 23.0908771	total: 213ms	remaining: 320ms
40:	learn: 22.8580876	total: 219ms	remaining: 315ms
41:	learn: 22.6060825	total: 224ms	remaining: 309ms
42:	learn: 22.4125407	total: 230ms	remaining: 305ms
43:	learn: 22.1990617	total: 235ms	remaining: 299ms
44:	learn: 21.9716164	total: 239ms	remaining: 292ms
45:	learn: 21.8360935	total: 244ms	remaining: 286ms
46:	learn: 21.6169256	total: 249ms	remaining: 280ms
47:	learn: 21.4620612	total: 253ms	remaining: 274ms
48:	learn: 21.2894194	total: 258ms	remaining: 269ms
49:	learn: 21.1066266	total: 263ms	remaining: 263ms
50:	learn: 20.9484898	total: 267ms	remaining: 257ms
51:	learn: 20.7195338	total: 272ms	remaining: 251ms
52:	learn: 20.4899740	total: 277ms	remaining: 245ms
53:	learn: 20.3356583	total: 281ms	remaining: 240ms
54:	learn: 20.0754393	total: 286ms	remaining: 234ms
55:	learn: 19.9199159	total: 291ms	remaining: 229ms
56:	learn: 19.7761128	total: 296ms	remaining: 223ms
57:	learn: 19.6533060	total: 300ms	remaining: 217ms
58:	learn: 19.5113942	total: 305ms	remaining: 212ms
59:	learn: 19.3985022	total: 310ms	remaining: 207ms
60:	learn: 19.2683443	total: 315ms	remaining: 202ms
61:	learn: 19.1460824	total: 320ms	remaining: 196ms
62:	learn: 19.0042655	total: 325ms	remaining: 191ms
63:	learn: 18.8720873	total: 330ms	remaining: 186ms
64:	learn: 18.7183888	total: 340ms	remaining: 183ms
65:	learn: 18.5472360	total: 348ms	remaining: 179ms
66:	learn: 18.3976642	total: 355ms	remaining: 175ms
67:	learn: 18.2282851	total: 361ms	remaining: 170ms
68:	learn: 18.1469157	total: 367ms	remaining: 165ms
69:	learn: 18.0649494	total: 376ms	remaining: 161ms
70:	learn: 17.9485405	total: 381ms	remaining: 156ms
71:	learn: 17.8460261	total: 386ms	remaining: 150ms
72:	learn: 17.7679843	total: 391ms	remaining: 145ms
73:	learn: 17.5989290	total: 396ms	remaining: 139ms
74:	learn: 17.4381322	total: 401ms	remaining: 134ms
75:	learn: 17.3370886	total: 406ms	remaining: 128ms
76:	learn: 17.2675308	total: 410ms	remaining: 123ms
77:	learn: 17.1946430	total: 415ms	remaining: 117ms
78:	learn: 17.0923725	total: 420ms	remaining: 112ms
79:	learn: 17.0537265	total: 425ms	remaining: 106ms
80:	learn: 16.9456831	total: 430ms	remaining: 101ms
81:	learn: 16.8457353	total: 435ms	remaining: 95.5ms
82:	learn: 16.7469310	total: 440ms	remaining: 90.2ms
83:	learn: 16.6679953	total: 445ms	remaining: 84.7ms
84:	learn: 16.6274189	total: 450ms	remaining: 79.3ms
85:	learn: 16.5516530	total: 454ms	remaining: 74ms
86:	learn: 16.4886066	total: 459ms	remaining: 68.6ms
87:	learn: 16.3947859	total: 464ms	remaining: 63.2ms
88:	learn: 16.3406495	total: 468ms	remaining: 57.9ms
89:	learn: 16.3019195	total: 473ms	remaining: 52.6ms
90:	learn: 16.1860681	total: 478ms	remaining: 47.3ms
91:	learn: 16.1282812	total: 483ms	remaining: 42ms
92:	learn: 16.0303652	total: 488ms	remaining: 36.7ms
93:	learn: 15.9561692	total: 493ms	remaining: 31.5ms
94:	learn: 15.8733994	total: 498ms	remaining: 26.2ms
95:	learn: 15.8108833	total: 503ms	remaining: 21ms
96:	learn: 15.7606004	total: 507ms	remaining: 15.7ms
97:	learn: 15.6984664	total: 512ms	remaining: 10.4ms
98:	learn: 15.6223632	total: 517ms	remaining: 5.22ms
99:	learn: 15.5671136	total: 522ms	remaining: 0us
0:	learn: 46.4788614	total: 2.67ms	remaining: 265ms
1:	learn: 45.7608372	total: 8.21ms	remaining: 402ms
2:	learn: 44.8825004	total: 13.4ms	remaining: 434ms
3:	learn: 44.0362738	total: 18.7ms	remaining: 450ms
4:	learn: 43.2086374	total: 24.3ms	remaining: 462ms
5:	learn: 42.5835773	total: 29.5ms	remaining: 463ms
6:	learn: 41.9673269	total: 34.7ms	remaining: 461ms
7:	learn: 41.4748717	total: 40.1ms	remaining: 461ms
8:	learn: 40.7129183	total: 45.3ms	remaining: 458ms
9:	learn: 39.8900884	total: 51ms	remaining: 459ms
10:	learn: 39.4142193	total: 56.9ms	remaining: 460ms
11:	learn: 38.8645613	total: 61.6ms	remaining: 452ms
12:	learn: 38.2394731	total: 66.4ms	remaining: 444ms
13:	learn: 37.6834515	total: 70.8ms	remaining: 435ms
14:	learn: 37.0673507	total: 75.3ms	remaining: 427ms
15:	learn: 36.4728340	total: 80ms	remaining: 420ms
16:	learn: 36.0489086	total: 84.6ms	remaining: 413ms
17:	learn: 35.4744141	total: 89.4ms	remaining: 407ms
18:	learn: 35.0106021	total: 94.2ms	remaining: 401ms
19:	learn: 34.5586053	total: 98.8ms	remaining: 395ms
20:	learn: 34.1308223	total: 103ms	remaining: 388ms
21:	learn: 33.7701450	total: 108ms	remaining: 383ms
22:	learn: 33.4425444	total: 113ms	remaining: 377ms
23:	learn: 33.0296412	total: 118ms	remaining: 374ms
24:	learn: 32.6359803	total: 123ms	remaining: 370ms
25:	learn: 32.1846182	total: 128ms	remaining: 366ms
26:	learn: 31.7620230	total: 134ms	remaining: 361ms
27:	learn: 31.4669337	total: 138ms	remaining: 356ms
28:	learn: 31.0792062	total: 143ms	remaining: 351ms
29:	learn: 30.7970537	total: 148ms	remaining: 346ms
30:	learn: 30.4952215	total: 157ms	remaining: 350ms
31:	learn: 30.2845344	total: 164ms	remaining: 349ms
32:	learn: 29.9592732	total: 171ms	remaining: 347ms
33:	learn: 29.6798596	total: 176ms	remaining: 342ms
34:	learn: 29.3368905	total: 182ms	remaining: 339ms
35:	learn: 29.0621238	total: 187ms	remaining: 333ms
36:	learn: 28.6445375	total: 192ms	remaining: 327ms
37:	learn: 28.2418096	total: 197ms	remaining: 322ms
38:	learn: 27.9495390	total: 202ms	remaining: 316ms
39:	learn: 27.6958160	total: 207ms	remaining: 310ms
40:	learn: 27.4811189	total: 211ms	remaining: 304ms
41:	learn: 27.1494420	total: 216ms	remaining: 299ms
42:	learn: 26.8388873	total: 221ms	remaining: 293ms
43:	learn: 26.5721300	total: 226ms	remaining: 287ms
44:	learn: 26.3384738	total: 230ms	remaining: 282ms
45:	learn: 26.1894781	total: 235ms	remaining: 276ms
46:	learn: 25.9580198	total: 240ms	remaining: 270ms
47:	learn: 25.7897985	total: 245ms	remaining: 265ms
48:	learn: 25.6000271	total: 249ms	remaining: 259ms
49:	learn: 25.4130873	total: 253ms	remaining: 253ms
50:	learn: 25.1699061	total: 258ms	remaining: 248ms
51:	learn: 24.9324449	total: 263ms	remaining: 242ms
52:	learn: 24.7729152	total: 268ms	remaining: 238ms
53:	learn: 24.5026563	total: 273ms	remaining: 232ms
54:	learn: 24.2332627	total: 277ms	remaining: 227ms
55:	learn: 23.9611984	total: 282ms	remaining: 222ms
56:	learn: 23.7862603	total: 287ms	remaining: 216ms
57:	learn: 23.6318154	total: 292ms	remaining: 211ms
58:	learn: 23.4443306	total: 296ms	remaining: 206ms
59:	learn: 23.2581425	total: 301ms	remaining: 201ms
60:	learn: 23.0549901	total: 306ms	remaining: 196ms
61:	learn: 22.8666218	total: 311ms	remaining: 190ms
62:	learn: 22.6956739	total: 317ms	remaining: 186ms
63:	learn: 22.5068544	total: 322ms	remaining: 181ms
64:	learn: 22.1859147	total: 328ms	remaining: 176ms
65:	learn: 22.0462043	total: 333ms	remaining: 171ms
66:	learn: 21.9329563	total: 338ms	remaining: 166ms
67:	learn: 21.8029736	total: 343ms	remaining: 162ms
68:	learn: 21.6861091	total: 352ms	remaining: 158ms
69:	learn: 21.4838140	total: 359ms	remaining: 154ms
70:	learn: 21.3548921	total: 369ms	remaining: 151ms
71:	learn: 21.2244517	total: 375ms	remaining: 146ms
72:	learn: 21.0702958	total: 382ms	remaining: 141ms
73:	learn: 20.9224662	total: 387ms	remaining: 136ms
74:	learn: 20.8150357	total: 393ms	remaining: 131ms
75:	learn: 20.6962739	total: 399ms	remaining: 126ms
76:	learn: 20.5809258	total: 404ms	remaining: 121ms
77:	learn: 20.4735470	total: 410ms	remaining: 116ms
78:	learn: 20.3778167	total: 415ms	remaining: 110ms
79:	learn: 20.2211268	total: 421ms	remaining: 105ms
80:	learn: 20.1478678	total: 426ms	remaining: 99.9ms
81:	learn: 20.1032967	total: 431ms	remaining: 94.6ms
82:	learn: 19.9236300	total: 436ms	remaining: 89.3ms
83:	learn: 19.8151745	total: 441ms	remaining: 84.1ms
84:	learn: 19.7099856	total: 447ms	remaining: 78.9ms
85:	learn: 19.6264833	total: 453ms	remaining: 73.7ms
86:	learn: 19.4916361	total: 458ms	remaining: 68.4ms
87:	learn: 19.4050529	total: 462ms	remaining: 63ms
88:	learn: 19.2547065	total: 466ms	remaining: 57.7ms
89:	learn: 19.1610225	total: 471ms	remaining: 52.3ms
90:	learn: 19.0898958	total: 476ms	remaining: 47.1ms
91:	learn: 19.0489664	total: 481ms	remaining: 41.8ms
92:	learn: 18.9206240	total: 486ms	remaining: 36.6ms
93:	learn: 18.8636239	total: 491ms	remaining: 31.3ms
94:	learn: 18.8126187	total: 495ms	remaining: 26.1ms
95:	learn: 18.7579275	total: 499ms	remaining: 20.8ms
96:	learn: 18.6382753	total: 504ms	remaining: 15.6ms
97:	learn: 18.5397334	total: 509ms	remaining: 10.4ms
98:	learn: 18.4375951	total: 514ms	remaining: 5.19ms
99:	learn: 18.4033755	total: 518ms	remaining: 0us
0:	learn: 46.1068821	total: 2.04ms	remaining: 202ms
1:	learn: 45.3970261	total: 6.66ms	remaining: 326ms
2:	learn: 44.8732696	total: 11.4ms	remaining: 368ms
3:	learn: 44.1290184	total: 15.6ms	remaining: 374ms
4:	learn: 43.3290271	total: 20.2ms	remaining: 383ms
5:	learn: 42.7069090	total: 24.8ms	remaining: 388ms
6:	learn: 42.0572971	total: 29ms	remaining: 386ms
7:	learn: 41.4797924	total: 33.4ms	remaining: 385ms
8:	learn: 41.0023122	total: 38.1ms	remaining: 385ms
9:	learn: 40.5330570	total: 42.4ms	remaining: 382ms
10:	learn: 39.9726545	total: 46.9ms	remaining: 379ms
11:	learn: 39.3044053	total: 50.9ms	remaining: 374ms
12:	learn: 38.8169735	total: 55ms	remaining: 368ms
13:	learn: 38.2458761	total: 59.4ms	remaining: 365ms
14:	learn: 37.6280321	total: 63.8ms	remaining: 361ms
15:	learn: 37.0800610	total: 67.7ms	remaining: 356ms
16:	learn: 36.5489363	total: 72ms	remaining: 352ms
17:	learn: 36.0981456	total: 76.4ms	remaining: 348ms
18:	learn: 35.6956274	total: 80.6ms	remaining: 344ms
19:	learn: 35.1471999	total: 84.8ms	remaining: 339ms
20:	learn: 34.6235408	total: 89.2ms	remaining: 335ms
21:	learn: 34.1987018	total: 93.7ms	remaining: 332ms
22:	learn: 33.8985062	total: 98.2ms	remaining: 329ms
23:	learn: 33.3869017	total: 102ms	remaining: 323ms
24:	learn: 32.9100550	total: 106ms	remaining: 319ms
25:	learn: 32.4156208	total: 111ms	remaining: 315ms
26:	learn: 31.9320493	total: 115ms	remaining: 311ms
27:	learn: 31.5711468	total: 119ms	remaining: 306ms
28:	learn: 31.2404433	total: 123ms	remaining: 302ms
29:	learn: 30.8807946	total: 128ms	remaining: 298ms
30:	learn: 30.5948438	total: 132ms	remaining: 293ms
31:	learn: 30.3885560	total: 136ms	remaining: 289ms
32:	learn: 30.0625101	total: 140ms	remaining: 285ms
33:	learn: 29.9113114	total: 145ms	remaining: 281ms
34:	learn: 29.6983470	total: 149ms	remaining: 276ms
35:	learn: 29.4775849	total: 153ms	remaining: 273ms
36:	learn: 29.0538055	total: 158ms	remaining: 269ms
37:	learn: 28.6792318	total: 163ms	remaining: 266ms
38:	learn: 28.4231383	total: 167ms	remaining: 262ms
39:	learn: 28.1078565	total: 172ms	remaining: 258ms
40:	learn: 27.9079179	total: 177ms	remaining: 254ms
41:	learn: 27.6721506	total: 181ms	remaining: 251ms
42:	learn: 27.4228033	total: 188ms	remaining: 250ms
43:	learn: 27.1740534	total: 196ms	remaining: 250ms
44:	learn: 26.8584071	total: 206ms	remaining: 252ms
45:	learn: 26.6902083	total: 212ms	remaining: 249ms
46:	learn: 26.4855335	total: 220ms	remaining: 248ms
47:	learn: 26.2730822	total: 225ms	remaining: 244ms
48:	learn: 26.1058689	total: 230ms	remaining: 240ms
49:	learn: 25.8587318	total: 236ms	remaining: 236ms
50:	learn: 25.7558005	total: 241ms	remaining: 231ms
51:	learn: 25.5846925	total: 246ms	remaining: 227ms
52:	learn: 25.4249887	total: 251ms	remaining: 223ms
53:	learn: 25.1911054	total: 257ms	remaining: 219ms
54:	learn: 25.0544755	total: 262ms	remaining: 215ms
55:	learn: 24.8874006	total: 267ms	remaining: 210ms
56:	learn: 24.7736279	total: 272ms	remaining: 205ms
57:	learn: 24.6156255	total: 277ms	remaining: 201ms
58:	learn: 24.3962421	total: 283ms	remaining: 197ms
59:	learn: 24.2685129	total: 287ms	remaining: 192ms
60:	learn: 24.1874096	total: 291ms	remaining: 186ms
61:	learn: 24.0394287	total: 296ms	remaining: 181ms
62:	learn: 23.9281768	total: 300ms	remaining: 176ms
63:	learn: 23.7423900	total: 304ms	remaining: 171ms
64:	learn: 23.6015209	total: 309ms	remaining: 166ms
65:	learn: 23.4677943	total: 313ms	remaining: 161ms
66:	learn: 23.3215256	total: 317ms	remaining: 156ms
67:	learn: 23.1869360	total: 322ms	remaining: 151ms
68:	learn: 22.9691180	total: 326ms	remaining: 146ms
69:	learn: 22.7531657	total: 330ms	remaining: 141ms
70:	learn: 22.6133477	total: 334ms	remaining: 136ms
71:	learn: 22.3452758	total: 339ms	remaining: 132ms
72:	learn: 22.2065350	total: 343ms	remaining: 127ms
73:	learn: 22.1071155	total: 347ms	remaining: 122ms
74:	learn: 21.9740686	total: 351ms	remaining: 117ms
75:	learn: 21.8892033	total: 356ms	remaining: 112ms
76:	learn: 21.8267882	total: 361ms	remaining: 108ms
77:	learn: 21.7423479	total: 365ms	remaining: 103ms
78:	learn: 21.6242075	total: 370ms	remaining: 98.4ms
79:	learn: 21.5016910	total: 375ms	remaining: 93.8ms
80:	learn: 21.4806623	total: 376ms	remaining: 88.2ms
81:	learn: 21.3166637	total: 381ms	remaining: 83.6ms
82:	learn: 21.2222534	total: 386ms	remaining: 79.1ms
83:	learn: 21.1535708	total: 394ms	remaining: 75.1ms
84:	learn: 21.0858902	total: 401ms	remaining: 70.8ms
85:	learn: 20.9206003	total: 409ms	remaining: 66.5ms
86:	learn: 20.8674695	total: 414ms	remaining: 61.8ms
87:	learn: 20.8089875	total: 419ms	remaining: 57.2ms
88:	learn: 20.7085401	total: 423ms	remaining: 52.3ms
89:	learn: 20.5513468	total: 428ms	remaining: 47.6ms
90:	learn: 20.4586742	total: 433ms	remaining: 42.8ms
91:	learn: 20.3932149	total: 437ms	remaining: 38ms
92:	learn: 20.3000895	total: 442ms	remaining: 33.2ms
93:	learn: 20.2254009	total: 446ms	remaining: 28.5ms
94:	learn: 20.1750050	total: 450ms	remaining: 23.7ms
95:	learn: 20.0715579	total: 454ms	remaining: 18.9ms
96:	learn: 19.9920082	total: 459ms	remaining: 14.2ms
97:	learn: 19.9664401	total: 463ms	remaining: 9.45ms
98:	learn: 19.8689673	total: 468ms	remaining: 4.72ms
99:	learn: 19.7537356	total: 472ms	remaining: 0us
0:	learn: 46.8832143	total: 4.66ms	remaining: 462ms
1:	learn: 45.8700349	total: 8.94ms	remaining: 438ms
2:	learn: 45.0546867	total: 13.2ms	remaining: 428ms
3:	learn: 44.2829439	total: 17.6ms	remaining: 422ms
4:	learn: 43.4609042	total: 21.8ms	remaining: 415ms
5:	learn: 42.6754991	total: 26.4ms	remaining: 413ms
6:	learn: 41.9234935	total: 30.6ms	remaining: 407ms
7:	learn: 41.3987518	total: 34.8ms	remaining: 401ms
8:	learn: 40.6625066	total: 39.2ms	remaining: 396ms
9:	learn: 40.0029561	total: 43.6ms	remaining: 392ms
10:	learn: 39.3897033	total: 48.5ms	remaining: 392ms
11:	learn: 38.7741453	total: 53.3ms	remaining: 391ms
12:	learn: 38.1201100	total: 58.1ms	remaining: 389ms
13:	learn: 37.5129454	total: 62.9ms	remaining: 386ms
14:	learn: 37.2062206	total: 68.1ms	remaining: 386ms
15:	learn: 36.6831741	total: 76.7ms	remaining: 402ms
16:	learn: 36.2902788	total: 86.2ms	remaining: 421ms
17:	learn: 35.7639930	total: 94.9ms	remaining: 432ms
18:	learn: 35.2580953	total: 102ms	remaining: 437ms
19:	learn: 34.7809739	total: 109ms	remaining: 434ms
20:	learn: 34.1330433	total: 114ms	remaining: 428ms
21:	learn: 33.7302219	total: 119ms	remaining: 423ms
22:	learn: 33.3502495	total: 125ms	remaining: 417ms
23:	learn: 33.0067804	total: 130ms	remaining: 411ms
24:	learn: 32.6897855	total: 135ms	remaining: 405ms
25:	learn: 32.4361119	total: 140ms	remaining: 400ms
26:	learn: 32.1278981	total: 146ms	remaining: 394ms
27:	learn: 31.7863721	total: 151ms	remaining: 388ms
28:	learn: 31.4791450	total: 156ms	remaining: 382ms
29:	learn: 31.1760161	total: 162ms	remaining: 377ms
30:	learn: 30.9238888	total: 167ms	remaining: 373ms
31:	learn: 30.5500905	total: 173ms	remaining: 367ms
32:	learn: 30.3078126	total: 177ms	remaining: 359ms
33:	learn: 30.0480921	total: 181ms	remaining: 351ms
34:	learn: 29.8623884	total: 185ms	remaining: 344ms
35:	learn: 29.5991038	total: 190ms	remaining: 338ms
36:	learn: 29.4061161	total: 194ms	remaining: 331ms
37:	learn: 29.0269515	total: 199ms	remaining: 325ms
38:	learn: 28.8224959	total: 204ms	remaining: 320ms
39:	learn: 28.6417843	total: 209ms	remaining: 314ms
40:	learn: 28.3633368	total: 214ms	remaining: 308ms
41:	learn: 28.0200246	total: 219ms	remaining: 303ms
42:	learn: 27.7221254	total: 224ms	remaining: 297ms
43:	learn: 27.5105818	total: 228ms	remaining: 291ms
44:	learn: 27.3551010	total: 232ms	remaining: 284ms
45:	learn: 27.0787522	total: 237ms	remaining: 278ms
46:	learn: 26.8726317	total: 242ms	remaining: 273ms
47:	learn: 26.8003277	total: 246ms	remaining: 267ms
48:	learn: 26.5493785	total: 251ms	remaining: 261ms
49:	learn: 26.3699550	total: 256ms	remaining: 256ms
50:	learn: 26.1519631	total: 261ms	remaining: 251ms
51:	learn: 25.9277325	total: 265ms	remaining: 245ms
52:	learn: 25.7286035	total: 272ms	remaining: 241ms
53:	learn: 25.4999193	total: 280ms	remaining: 238ms
54:	learn: 25.3434703	total: 287ms	remaining: 235ms
55:	learn: 25.1497545	total: 292ms	remaining: 230ms
56:	learn: 24.9498143	total: 298ms	remaining: 225ms
57:	learn: 24.6509390	total: 303ms	remaining: 219ms
58:	learn: 24.5576144	total: 307ms	remaining: 213ms
59:	learn: 24.4265144	total: 311ms	remaining: 208ms
60:	learn: 24.3100706	total: 315ms	remaining: 202ms
61:	learn: 24.1727952	total: 320ms	remaining: 196ms
62:	learn: 24.0478558	total: 324ms	remaining: 190ms
63:	learn: 23.9124577	total: 328ms	remaining: 185ms
64:	learn: 23.7703718	total: 332ms	remaining: 179ms
65:	learn: 23.5975027	total: 337ms	remaining: 173ms
66:	learn: 23.4318077	total: 341ms	remaining: 168ms
67:	learn: 23.3099691	total: 345ms	remaining: 163ms
68:	learn: 23.1947982	total: 350ms	remaining: 157ms
69:	learn: 23.0260174	total: 354ms	remaining: 152ms
70:	learn: 22.8523100	total: 358ms	remaining: 146ms
71:	learn: 22.8028534	total: 363ms	remaining: 141ms
72:	learn: 22.6880658	total: 367ms	remaining: 136ms
73:	learn: 22.5956809	total: 371ms	remaining: 130ms
74:	learn: 22.4692932	total: 375ms	remaining: 125ms
75:	learn: 22.2863504	total: 380ms	remaining: 120ms
76:	learn: 22.1911237	total: 384ms	remaining: 115ms
77:	learn: 22.1098391	total: 388ms	remaining: 110ms
78:	learn: 22.0182738	total: 393ms	remaining: 104ms
79:	learn: 21.9306746	total: 397ms	remaining: 99.3ms
80:	learn: 21.7508233	total: 402ms	remaining: 94.3ms
81:	learn: 21.7108446	total: 406ms	remaining: 89.1ms
82:	learn: 21.5931852	total: 410ms	remaining: 84ms
83:	learn: 21.4480361	total: 414ms	remaining: 78.9ms
84:	learn: 21.3092119	total: 418ms	remaining: 73.8ms
85:	learn: 21.2605557	total: 423ms	remaining: 68.8ms
86:	learn: 21.1123597	total: 428ms	remaining: 63.9ms
87:	learn: 21.0115642	total: 432ms	remaining: 58.9ms
88:	learn: 20.9389040	total: 437ms	remaining: 54ms
89:	learn: 20.8300300	total: 441ms	remaining: 49ms
90:	learn: 20.7159733	total: 446ms	remaining: 44.1ms
91:	learn: 20.6282090	total: 451ms	remaining: 39.2ms
92:	learn: 20.5164529	total: 455ms	remaining: 34.3ms
93:	learn: 20.4692032	total: 460ms	remaining: 29.4ms
94:	learn: 20.3768451	total: 464ms	remaining: 24.4ms
95:	learn: 20.2808056	total: 473ms	remaining: 19.7ms
96:	learn: 20.2082089	total: 480ms	remaining: 14.9ms
97:	learn: 20.1698768	total: 490ms	remaining: 9.99ms
98:	learn: 20.1048816	total: 496ms	remaining: 5.01ms
99:	learn: 20.0086159	total: 502ms	remaining: 0us
0:	learn: 27.3441720	total: 21.2ms	remaining: 2.1s
1:	learn: 26.7159954	total: 40.8ms	remaining: 2s
2:	learn: 26.0850318	total: 60.2ms	remaining: 1.95s
3:	learn: 25.4039656	total: 78.9ms	remaining: 1.89s
4:	learn: 24.7930659	total: 100ms	remaining: 1.9s
5:	learn: 24.2028590	total: 123ms	remaining: 1.92s
6:	learn: 23.6622902	total: 150ms	remaining: 1.99s
7:	learn: 23.1531175	total: 171ms	remaining: 1.96s
8:	learn: 22.7050792	total: 191ms	remaining: 1.93s
9:	learn: 22.2151788	total: 212ms	remaining: 1.91s
10:	learn: 21.7708844	total: 233ms	remaining: 1.88s
11:	learn: 21.2587174	total: 252ms	remaining: 1.84s
12:	learn: 20.7559870	total: 271ms	remaining: 1.81s
13:	learn: 20.3040842	total: 293ms	remaining: 1.8s
14:	learn: 19.9019524	total: 315ms	remaining: 1.78s
15:	learn: 19.5186012	total: 339ms	remaining: 1.78s
16:	learn: 19.1521621	total: 371ms	remaining: 1.81s
17:	learn: 18.7652180	total: 396ms	remaining: 1.8s
18:	learn: 18.4446446	total: 420ms	remaining: 1.79s
19:	learn: 18.0977650	total: 445ms	remaining: 1.78s
20:	learn: 17.7791328	total: 469ms	remaining: 1.76s
21:	learn: 17.4777648	total: 491ms	remaining: 1.74s
22:	learn: 17.1794361	total: 512ms	remaining: 1.71s
23:	learn: 16.8685032	total: 535ms	remaining: 1.69s
24:	learn: 16.6274695	total: 563ms	remaining: 1.69s
25:	learn: 16.3071099	total: 589ms	remaining: 1.68s
26:	learn: 16.0249663	total: 612ms	remaining: 1.65s
27:	learn: 15.7535309	total: 633ms	remaining: 1.63s
28:	learn: 15.4777235	total: 656ms	remaining: 1.6s
29:	learn: 15.2410825	total: 677ms	remaining: 1.58s
30:	learn: 15.0133002	total: 697ms	remaining: 1.55s
31:	learn: 14.8018912	total: 719ms	remaining: 1.53s
32:	learn: 14.5701546	total: 740ms	remaining: 1.5s
33:	learn: 14.3799060	total: 765ms	remaining: 1.48s
34:	learn: 14.0975095	total: 789ms	remaining: 1.47s
35:	learn: 13.8873493	total: 812ms	remaining: 1.44s
36:	learn: 13.6812023	total: 834ms	remaining: 1.42s
37:	learn: 13.4943017	total: 855ms	remaining: 1.4s
38:	learn: 13.3224094	total: 878ms	remaining: 1.37s
39:	learn: 13.0967901	total: 902ms	remaining: 1.35s
40:	learn: 12.9138190	total: 924ms	remaining: 1.33s
41:	learn: 12.7764458	total: 944ms	remaining: 1.3s
42:	learn: 12.6593656	total: 965ms	remaining: 1.28s
43:	learn: 12.5051105	total: 987ms	remaining: 1.26s
44:	learn: 12.3057146	total: 1.01s	remaining: 1.24s
45:	learn: 12.1487674	total: 1.04s	remaining: 1.22s
46:	learn: 11.9614903	total: 1.06s	remaining: 1.19s
47:	learn: 11.7921265	total: 1.08s	remaining: 1.17s
48:	learn: 11.6572640	total: 1.1s	remaining: 1.14s
49:	learn: 11.5251463	total: 1.12s	remaining: 1.12s
50:	learn: 11.3789931	total: 1.14s	remaining: 1.09s
51:	learn: 11.2691375	total: 1.16s	remaining: 1.07s
52:	learn: 11.1161131	total: 1.18s	remaining: 1.05s
53:	learn: 11.0246399	total: 1.2s	remaining: 1.02s
54:	learn: 10.9152420	total: 1.24s	remaining: 1.01s
55:	learn: 10.7746769	total: 1.26s	remaining: 989ms
56:	learn: 10.6222917	total: 1.28s	remaining: 967ms
57:	learn: 10.5096115	total: 1.3s	remaining: 945ms
58:	learn: 10.3857030	total: 1.33s	remaining: 923ms
59:	learn: 10.2789057	total: 1.35s	remaining: 900ms
60:	learn: 10.1490749	total: 1.37s	remaining: 876ms
61:	learn: 10.0553291	total: 1.39s	remaining: 853ms
62:	learn: 9.9351043	total: 1.41s	remaining: 831ms
63:	learn: 9.8245261	total: 1.44s	remaining: 812ms
64:	learn: 9.7207577	total: 1.46s	remaining: 788ms
65:	learn: 9.5920661	total: 1.48s	remaining: 764ms
66:	learn: 9.4832767	total: 1.5s	remaining: 741ms
67:	learn: 9.3724149	total: 1.53s	remaining: 718ms
68:	learn: 9.2459801	total: 1.55s	remaining: 695ms
69:	learn: 9.1740635	total: 1.57s	remaining: 672ms
70:	learn: 9.1015730	total: 1.59s	remaining: 650ms
71:	learn: 9.0196460	total: 1.61s	remaining: 627ms
72:	learn: 8.9458977	total: 1.64s	remaining: 605ms
73:	learn: 8.8434400	total: 1.67s	remaining: 586ms
74:	learn: 8.7495151	total: 1.69s	remaining: 565ms
75:	learn: 8.6521348	total: 1.72s	remaining: 543ms
76:	learn: 8.5654483	total: 1.74s	remaining: 520ms
77:	learn: 8.4965765	total: 1.76s	remaining: 498ms
78:	learn: 8.4308736	total: 1.79s	remaining: 475ms
79:	learn: 8.3675601	total: 1.81s	remaining: 453ms
80:	learn: 8.3193887	total: 1.83s	remaining: 430ms
81:	learn: 8.2507990	total: 1.86s	remaining: 408ms
82:	learn: 8.1583259	total: 1.88s	remaining: 386ms
83:	learn: 8.0995902	total: 1.91s	remaining: 363ms
84:	learn: 8.0236655	total: 1.93s	remaining: 340ms
85:	learn: 7.9634698	total: 1.95s	remaining: 317ms
86:	learn: 7.9109081	total: 1.97s	remaining: 294ms
87:	learn: 7.8385006	total: 1.99s	remaining: 271ms
88:	learn: 7.7859488	total: 2.01s	remaining: 249ms
89:	learn: 7.7270142	total: 2.03s	remaining: 226ms
90:	learn: 7.6774253	total: 2.06s	remaining: 203ms
91:	learn: 7.6126552	total: 2.09s	remaining: 182ms
92:	learn: 7.5392178	total: 2.11s	remaining: 159ms
93:	learn: 7.4745082	total: 2.14s	remaining: 136ms
94:	learn: 7.4106939	total: 2.16s	remaining: 114ms
95:	learn: 7.3573350	total: 2.18s	remaining: 91ms
96:	learn: 7.2889777	total: 2.21s	remaining: 68.2ms
97:	learn: 7.2204939	total: 2.23s	remaining: 45.4ms
98:	learn: 7.1646465	total: 2.25s	remaining: 22.7ms
99:	learn: 7.1204610	total: 2.27s	remaining: 0us
0:	learn: 42.5494645	total: 21ms	remaining: 2.08s
1:	learn: 41.2913513	total: 43.6ms	remaining: 2.14s
2:	learn: 40.1676527	total: 64.6ms	remaining: 2.09s
3:	learn: 38.7664819	total: 85.8ms	remaining: 2.06s
4:	learn: 37.5407492	total: 108ms	remaining: 2.06s
5:	learn: 36.4295331	total: 130ms	remaining: 2.04s
6:	learn: 35.2895967	total: 152ms	remaining: 2.01s
7:	learn: 34.1884539	total: 174ms	remaining: 2s
8:	learn: 33.1817690	total: 201ms	remaining: 2.03s
9:	learn: 32.3518195	total: 227ms	remaining: 2.04s
10:	learn: 31.4837515	total: 249ms	remaining: 2.01s
11:	learn: 30.7255972	total: 272ms	remaining: 1.99s
12:	learn: 29.9298648	total: 295ms	remaining: 1.97s
13:	learn: 29.0574249	total: 319ms	remaining: 1.96s
14:	learn: 28.4097384	total: 341ms	remaining: 1.93s
15:	learn: 27.5317445	total: 362ms	remaining: 1.9s
16:	learn: 26.7911946	total: 384ms	remaining: 1.87s
17:	learn: 26.1103465	total: 412ms	remaining: 1.88s
18:	learn: 25.5295903	total: 436ms	remaining: 1.86s
19:	learn: 24.8544960	total: 456ms	remaining: 1.82s
20:	learn: 24.2772682	total: 478ms	remaining: 1.8s
21:	learn: 23.6936944	total: 497ms	remaining: 1.76s
22:	learn: 23.1300945	total: 519ms	remaining: 1.74s
23:	learn: 22.5333494	total: 539ms	remaining: 1.71s
24:	learn: 22.0553465	total: 561ms	remaining: 1.68s
25:	learn: 21.6253628	total: 581ms	remaining: 1.65s
26:	learn: 21.1396219	total: 600ms	remaining: 1.62s
27:	learn: 20.7382905	total: 622ms	remaining: 1.6s
28:	learn: 20.3233915	total: 645ms	remaining: 1.58s
29:	learn: 19.9323992	total: 677ms	remaining: 1.58s
30:	learn: 19.5650439	total: 703ms	remaining: 1.56s
31:	learn: 19.2165649	total: 725ms	remaining: 1.54s
32:	learn: 18.8890056	total: 747ms	remaining: 1.52s
33:	learn: 18.5523762	total: 770ms	remaining: 1.49s
34:	learn: 18.2666116	total: 790ms	remaining: 1.47s
35:	learn: 17.9216926	total: 809ms	remaining: 1.44s
36:	learn: 17.6118879	total: 830ms	remaining: 1.41s
37:	learn: 17.2653313	total: 852ms	remaining: 1.39s
38:	learn: 16.9946585	total: 881ms	remaining: 1.38s
39:	learn: 16.6842506	total: 904ms	remaining: 1.35s
40:	learn: 16.4102287	total: 925ms	remaining: 1.33s
41:	learn: 16.2288795	total: 946ms	remaining: 1.31s
42:	learn: 15.9623692	total: 966ms	remaining: 1.28s
43:	learn: 15.7308231	total: 987ms	remaining: 1.25s
44:	learn: 15.4695555	total: 1.01s	remaining: 1.23s
45:	learn: 15.2706809	total: 1.03s	remaining: 1.21s
46:	learn: 15.0182699	total: 1.05s	remaining: 1.19s
47:	learn: 14.7702088	total: 1.08s	remaining: 1.17s
48:	learn: 14.6303566	total: 1.11s	remaining: 1.15s
49:	learn: 14.4038016	total: 1.13s	remaining: 1.13s
50:	learn: 14.2309807	total: 1.15s	remaining: 1.11s
51:	learn: 14.0308425	total: 1.18s	remaining: 1.09s
52:	learn: 13.8201931	total: 1.2s	remaining: 1.07s
53:	learn: 13.6070078	total: 1.22s	remaining: 1.04s
54:	learn: 13.4230690	total: 1.24s	remaining: 1.02s
55:	learn: 13.2368649	total: 1.27s	remaining: 996ms
56:	learn: 13.0449556	total: 1.29s	remaining: 975ms
57:	learn: 12.8375669	total: 1.32s	remaining: 958ms
58:	learn: 12.6795194	total: 1.35s	remaining: 936ms
59:	learn: 12.5197211	total: 1.37s	remaining: 912ms
60:	learn: 12.4011717	total: 1.39s	remaining: 889ms
61:	learn: 12.2396104	total: 1.41s	remaining: 865ms
62:	learn: 12.0647878	total: 1.43s	remaining: 842ms
63:	learn: 11.9247719	total: 1.46s	remaining: 819ms
64:	learn: 11.7923634	total: 1.48s	remaining: 796ms
65:	learn: 11.6628246	total: 1.5s	remaining: 773ms
66:	learn: 11.5688935	total: 1.53s	remaining: 755ms
67:	learn: 11.4345056	total: 1.56s	remaining: 733ms
68:	learn: 11.3136955	total: 1.58s	remaining: 710ms
69:	learn: 11.2040357	total: 1.6s	remaining: 688ms
70:	learn: 11.1067773	total: 1.63s	remaining: 665ms
71:	learn: 10.9728105	total: 1.65s	remaining: 641ms
72:	learn: 10.8338607	total: 1.67s	remaining: 618ms
73:	learn: 10.7202016	total: 1.69s	remaining: 595ms
74:	learn: 10.5983746	total: 1.72s	remaining: 572ms
75:	learn: 10.4882458	total: 1.75s	remaining: 552ms
76:	learn: 10.3827604	total: 1.77s	remaining: 529ms
77:	learn: 10.2485726	total: 1.79s	remaining: 505ms
78:	learn: 10.1524716	total: 1.81s	remaining: 482ms
79:	learn: 10.0765127	total: 1.83s	remaining: 459ms
80:	learn: 9.9617067	total: 1.86s	remaining: 436ms
81:	learn: 9.8357151	total: 1.88s	remaining: 412ms
82:	learn: 9.7311644	total: 1.9s	remaining: 389ms
83:	learn: 9.6314802	total: 1.92s	remaining: 367ms
84:	learn: 9.5137958	total: 1.95s	remaining: 345ms
85:	learn: 9.4420485	total: 1.98s	remaining: 322ms
86:	learn: 9.3959294	total: 2s	remaining: 299ms
87:	learn: 9.3057742	total: 2.02s	remaining: 276ms
88:	learn: 9.2031484	total: 2.05s	remaining: 253ms
89:	learn: 9.0996948	total: 2.07s	remaining: 230ms
90:	learn: 9.0492278	total: 2.09s	remaining: 207ms
91:	learn: 8.9400377	total: 2.11s	remaining: 184ms
92:	learn: 8.8904458	total: 2.13s	remaining: 161ms
93:	learn: 8.8102982	total: 2.16s	remaining: 138ms
94:	learn: 8.7445451	total: 2.19s	remaining: 115ms
95:	learn: 8.6796106	total: 2.21s	remaining: 92ms
96:	learn: 8.5875790	total: 2.23s	remaining: 69ms
97:	learn: 8.5086871	total: 2.25s	remaining: 45.9ms
98:	learn: 8.4547244	total: 2.27s	remaining: 23ms
99:	learn: 8.3841281	total: 2.29s	remaining: 0us
0:	learn: 46.2258117	total: 2.82ms	remaining: 280ms
1:	learn: 45.1253456	total: 25.3ms	remaining: 1.24s
2:	learn: 43.7311767	total: 47.7ms	remaining: 1.54s
3:	learn: 42.4252819	total: 69.1ms	remaining: 1.66s
4:	learn: 41.1436655	total: 91.5ms	remaining: 1.74s
5:	learn: 40.0337136	total: 115ms	remaining: 1.8s
6:	learn: 38.9102686	total: 134ms	remaining: 1.78s
7:	learn: 37.7859737	total: 155ms	remaining: 1.78s
8:	learn: 36.7646905	total: 176ms	remaining: 1.78s
9:	learn: 35.9495481	total: 198ms	remaining: 1.78s
10:	learn: 35.0558185	total: 224ms	remaining: 1.81s
11:	learn: 34.1958090	total: 244ms	remaining: 1.79s
12:	learn: 33.3514013	total: 264ms	remaining: 1.77s
13:	learn: 32.3317086	total: 287ms	remaining: 1.76s
14:	learn: 31.5611046	total: 307ms	remaining: 1.74s
15:	learn: 30.6373573	total: 328ms	remaining: 1.72s
16:	learn: 29.8883669	total: 348ms	remaining: 1.7s
17:	learn: 29.2985952	total: 368ms	remaining: 1.67s
18:	learn: 28.6360550	total: 392ms	remaining: 1.67s
19:	learn: 27.9757056	total: 414ms	remaining: 1.66s
20:	learn: 27.2585835	total: 443ms	remaining: 1.67s
21:	learn: 26.6366391	total: 465ms	remaining: 1.65s
22:	learn: 26.1055455	total: 489ms	remaining: 1.64s
23:	learn: 25.4961568	total: 510ms	remaining: 1.61s
24:	learn: 25.1037435	total: 533ms	remaining: 1.6s
25:	learn: 24.5258982	total: 555ms	remaining: 1.58s
26:	learn: 23.9974764	total: 576ms	remaining: 1.56s
27:	learn: 23.5108419	total: 597ms	remaining: 1.53s
28:	learn: 23.0835773	total: 619ms	remaining: 1.51s
29:	learn: 22.5744350	total: 649ms	remaining: 1.51s
30:	learn: 22.1357783	total: 673ms	remaining: 1.5s
31:	learn: 21.7316226	total: 694ms	remaining: 1.48s
32:	learn: 21.4082899	total: 715ms	remaining: 1.45s
33:	learn: 20.9640138	total: 736ms	remaining: 1.43s
34:	learn: 20.6379417	total: 757ms	remaining: 1.41s
35:	learn: 20.2688010	total: 780ms	remaining: 1.39s
36:	learn: 19.8479214	total: 802ms	remaining: 1.36s
37:	learn: 19.5684638	total: 825ms	remaining: 1.35s
38:	learn: 19.1826919	total: 859ms	remaining: 1.34s
39:	learn: 18.9583308	total: 884ms	remaining: 1.33s
40:	learn: 18.6736002	total: 908ms	remaining: 1.31s
41:	learn: 18.3525328	total: 932ms	remaining: 1.29s
42:	learn: 17.9954191	total: 957ms	remaining: 1.27s
43:	learn: 17.6991520	total: 980ms	remaining: 1.25s
44:	learn: 17.3697888	total: 1s	remaining: 1.23s
45:	learn: 17.0519636	total: 1.02s	remaining: 1.2s
46:	learn: 16.7829795	total: 1.05s	remaining: 1.18s
47:	learn: 16.5108695	total: 1.08s	remaining: 1.17s
48:	learn: 16.2366816	total: 1.1s	remaining: 1.15s
49:	learn: 15.9947350	total: 1.12s	remaining: 1.12s
50:	learn: 15.7513561	total: 1.15s	remaining: 1.1s
51:	learn: 15.4328481	total: 1.17s	remaining: 1.08s
52:	learn: 15.2497907	total: 1.19s	remaining: 1.05s
53:	learn: 15.0417076	total: 1.21s	remaining: 1.03s
54:	learn: 14.8861891	total: 1.23s	remaining: 1.01s
55:	learn: 14.6497794	total: 1.25s	remaining: 986ms
56:	learn: 14.3664771	total: 1.28s	remaining: 970ms
57:	learn: 14.2358168	total: 1.31s	remaining: 949ms
58:	learn: 14.0712722	total: 1.33s	remaining: 928ms
59:	learn: 13.9191649	total: 1.36s	remaining: 906ms
60:	learn: 13.7032356	total: 1.38s	remaining: 884ms
61:	learn: 13.5029041	total: 1.4s	remaining: 860ms
62:	learn: 13.3568908	total: 1.43s	remaining: 837ms
63:	learn: 13.1332696	total: 1.45s	remaining: 814ms
64:	learn: 13.0323137	total: 1.47s	remaining: 792ms
65:	learn: 12.8622078	total: 1.5s	remaining: 770ms
66:	learn: 12.7088186	total: 1.53s	remaining: 752ms
67:	learn: 12.5524646	total: 1.55s	remaining: 729ms
68:	learn: 12.4646011	total: 1.57s	remaining: 706ms
69:	learn: 12.3900687	total: 1.59s	remaining: 682ms
70:	learn: 12.2908367	total: 1.61s	remaining: 659ms
71:	learn: 12.1294405	total: 1.63s	remaining: 636ms
72:	learn: 12.0359996	total: 1.66s	remaining: 612ms
73:	learn: 11.9244352	total: 1.68s	remaining: 589ms
74:	learn: 11.8312038	total: 1.71s	remaining: 569ms
75:	learn: 11.6622123	total: 1.73s	remaining: 548ms
76:	learn: 11.5959180	total: 1.76s	remaining: 525ms
77:	learn: 11.4538852	total: 1.78s	remaining: 502ms
78:	learn: 11.3700375	total: 1.8s	remaining: 479ms
79:	learn: 11.2101447	total: 1.82s	remaining: 456ms
80:	learn: 11.0614634	total: 1.84s	remaining: 433ms
81:	learn: 10.9029225	total: 1.87s	remaining: 410ms
82:	learn: 10.7792030	total: 1.89s	remaining: 388ms
83:	learn: 10.6279451	total: 1.92s	remaining: 365ms
84:	learn: 10.5530267	total: 1.94s	remaining: 342ms
85:	learn: 10.4577150	total: 1.96s	remaining: 319ms
86:	learn: 10.4076417	total: 1.98s	remaining: 296ms
87:	learn: 10.3166632	total: 2s	remaining: 273ms
88:	learn: 10.2018151	total: 2.02s	remaining: 250ms
89:	learn: 10.0698484	total: 2.05s	remaining: 227ms
90:	learn: 10.0162824	total: 2.07s	remaining: 204ms
91:	learn: 9.9352639	total: 2.09s	remaining: 182ms
92:	learn: 9.8316734	total: 2.11s	remaining: 159ms
93:	learn: 9.7195471	total: 2.15s	remaining: 137ms
94:	learn: 9.5914894	total: 2.17s	remaining: 114ms
95:	learn: 9.5151851	total: 2.19s	remaining: 91.3ms
96:	learn: 9.3911314	total: 2.21s	remaining: 68.5ms
97:	learn: 9.3417706	total: 2.23s	remaining: 45.6ms
98:	learn: 9.2708440	total: 2.26s	remaining: 22.8ms
99:	learn: 9.1660321	total: 2.28s	remaining: 0us
0:	learn: 45.8627255	total: 3.41ms	remaining: 337ms
1:	learn: 44.7432040	total: 29.3ms	remaining: 1.43s
2:	learn: 43.4398568	total: 50.1ms	remaining: 1.62s
3:	learn: 42.1495515	total: 68.7ms	remaining: 1.65s
4:	learn: 40.9712633	total: 89.3ms	remaining: 1.7s
5:	learn: 40.0119591	total: 111ms	remaining: 1.73s
6:	learn: 39.1914360	total: 132ms	remaining: 1.76s
7:	learn: 38.1861536	total: 154ms	remaining: 1.77s
8:	learn: 37.1477128	total: 176ms	remaining: 1.78s
9:	learn: 36.3044702	total: 201ms	remaining: 1.8s
10:	learn: 35.5837917	total: 234ms	remaining: 1.9s
11:	learn: 34.8664158	total: 260ms	remaining: 1.91s
12:	learn: 33.9129833	total: 283ms	remaining: 1.9s
13:	learn: 32.9094642	total: 306ms	remaining: 1.88s
14:	learn: 32.1965787	total: 328ms	remaining: 1.86s
15:	learn: 31.4598238	total: 353ms	remaining: 1.85s
16:	learn: 30.6578027	total: 375ms	remaining: 1.83s
17:	learn: 30.0227468	total: 397ms	remaining: 1.81s
18:	learn: 29.2954728	total: 421ms	remaining: 1.79s
19:	learn: 28.5928084	total: 452ms	remaining: 1.81s
20:	learn: 27.9445984	total: 477ms	remaining: 1.79s
21:	learn: 27.3493298	total: 500ms	remaining: 1.77s
22:	learn: 26.8491966	total: 522ms	remaining: 1.75s
23:	learn: 26.3177453	total: 543ms	remaining: 1.72s
24:	learn: 25.8134533	total: 565ms	remaining: 1.69s
25:	learn: 25.2000018	total: 587ms	remaining: 1.67s
26:	learn: 24.6570461	total: 610ms	remaining: 1.65s
27:	learn: 24.1062982	total: 632ms	remaining: 1.63s
28:	learn: 23.7489370	total: 656ms	remaining: 1.6s
29:	learn: 23.2050536	total: 690ms	remaining: 1.61s
30:	learn: 22.7824379	total: 717ms	remaining: 1.59s
31:	learn: 22.4052655	total: 742ms	remaining: 1.57s
32:	learn: 21.9525639	total: 766ms	remaining: 1.55s
33:	learn: 21.5482900	total: 789ms	remaining: 1.53s
34:	learn: 21.1900983	total: 811ms	remaining: 1.5s
35:	learn: 20.8243957	total: 833ms	remaining: 1.48s
36:	learn: 20.4401288	total: 856ms	remaining: 1.46s
37:	learn: 20.0960622	total: 887ms	remaining: 1.45s
38:	learn: 19.7795108	total: 911ms	remaining: 1.42s
39:	learn: 19.4922451	total: 930ms	remaining: 1.4s
40:	learn: 19.1827582	total: 952ms	remaining: 1.37s
41:	learn: 18.8902445	total: 972ms	remaining: 1.34s
42:	learn: 18.6833086	total: 995ms	remaining: 1.32s
43:	learn: 18.4251972	total: 1.01s	remaining: 1.29s
44:	learn: 18.1471037	total: 1.04s	remaining: 1.27s
45:	learn: 17.8420017	total: 1.06s	remaining: 1.24s
46:	learn: 17.6101998	total: 1.08s	remaining: 1.22s
47:	learn: 17.3353656	total: 1.1s	remaining: 1.19s
48:	learn: 17.1194789	total: 1.13s	remaining: 1.18s
49:	learn: 16.8898454	total: 1.16s	remaining: 1.16s
50:	learn: 16.6657497	total: 1.18s	remaining: 1.13s
51:	learn: 16.3832867	total: 1.2s	remaining: 1.11s
52:	learn: 16.2098226	total: 1.22s	remaining: 1.08s
53:	learn: 16.0045707	total: 1.25s	remaining: 1.06s
54:	learn: 15.8512887	total: 1.27s	remaining: 1.04s
55:	learn: 15.6485628	total: 1.29s	remaining: 1.01s
56:	learn: 15.4841428	total: 1.31s	remaining: 991ms
57:	learn: 15.3383158	total: 1.34s	remaining: 971ms
58:	learn: 15.2056282	total: 1.36s	remaining: 946ms
59:	learn: 15.0698337	total: 1.38s	remaining: 921ms
60:	learn: 14.8487796	total: 1.4s	remaining: 897ms
61:	learn: 14.7255751	total: 1.42s	remaining: 873ms
62:	learn: 14.6100414	total: 1.44s	remaining: 848ms
63:	learn: 14.3864212	total: 1.46s	remaining: 823ms
64:	learn: 14.2800460	total: 1.48s	remaining: 798ms
65:	learn: 14.1017299	total: 1.5s	remaining: 775ms
66:	learn: 13.9655015	total: 1.53s	remaining: 755ms
67:	learn: 13.8065764	total: 1.55s	remaining: 732ms
68:	learn: 13.7473285	total: 1.58s	remaining: 709ms
69:	learn: 13.6967309	total: 1.6s	remaining: 686ms
70:	learn: 13.6253255	total: 1.62s	remaining: 663ms
71:	learn: 13.4974926	total: 1.65s	remaining: 640ms
72:	learn: 13.4142694	total: 1.67s	remaining: 616ms
73:	learn: 13.2902600	total: 1.69s	remaining: 593ms
74:	learn: 13.1816461	total: 1.71s	remaining: 569ms
75:	learn: 13.0809498	total: 1.73s	remaining: 547ms
76:	learn: 12.9772285	total: 1.76s	remaining: 525ms
77:	learn: 12.8413858	total: 1.78s	remaining: 502ms
78:	learn: 12.7615799	total: 1.8s	remaining: 478ms
79:	learn: 12.5808659	total: 1.82s	remaining: 455ms
80:	learn: 12.4938330	total: 1.84s	remaining: 432ms
81:	learn: 12.3745576	total: 1.86s	remaining: 408ms
82:	learn: 12.2474104	total: 1.88s	remaining: 385ms
83:	learn: 12.1582297	total: 1.9s	remaining: 362ms
84:	learn: 12.0528081	total: 1.92s	remaining: 339ms
85:	learn: 11.9483355	total: 1.94s	remaining: 316ms
86:	learn: 11.8683204	total: 1.97s	remaining: 294ms
87:	learn: 11.7680945	total: 1.99s	remaining: 272ms
88:	learn: 11.6635447	total: 2.02s	remaining: 250ms
89:	learn: 11.5775031	total: 2.04s	remaining: 227ms
90:	learn: 11.4860538	total: 2.06s	remaining: 204ms
91:	learn: 11.3584960	total: 2.09s	remaining: 182ms
92:	learn: 11.2180285	total: 2.11s	remaining: 159ms
93:	learn: 11.0996558	total: 2.13s	remaining: 136ms
94:	learn: 10.9688832	total: 2.16s	remaining: 114ms
95:	learn: 10.9205457	total: 2.18s	remaining: 90.8ms
96:	learn: 10.8462783	total: 2.21s	remaining: 68.3ms
97:	learn: 10.7481890	total: 2.23s	remaining: 45.5ms
98:	learn: 10.6396315	total: 2.25s	remaining: 22.8ms
99:	learn: 10.5895308	total: 2.27s	remaining: 0us
0:	learn: 46.2892189	total: 20.2ms	remaining: 2s
1:	learn: 44.9732744	total: 41.5ms	remaining: 2.03s
2:	learn: 43.8887345	total: 63.1ms	remaining: 2.04s
3:	learn: 42.6526320	total: 89.9ms	remaining: 2.16s
4:	learn: 41.4812505	total: 119ms	remaining: 2.26s
5:	learn: 40.4431224	total: 141ms	remaining: 2.2s
6:	learn: 39.2936749	total: 165ms	remaining: 2.19s
7:	learn: 38.1961652	total: 187ms	remaining: 2.15s
8:	learn: 37.2194841	total: 211ms	remaining: 2.13s
9:	learn: 36.2518666	total: 233ms	remaining: 2.1s
10:	learn: 35.4919224	total: 257ms	remaining: 2.08s
11:	learn: 34.6975877	total: 282ms	remaining: 2.07s
12:	learn: 33.7869362	total: 309ms	remaining: 2.07s
13:	learn: 33.0646033	total: 331ms	remaining: 2.04s
14:	learn: 32.1821772	total: 353ms	remaining: 2s
15:	learn: 31.4340749	total: 374ms	remaining: 1.97s
16:	learn: 30.6504198	total: 397ms	remaining: 1.94s
17:	learn: 30.0090260	total: 417ms	remaining: 1.9s
18:	learn: 29.4233143	total: 439ms	remaining: 1.87s
19:	learn: 28.7661957	total: 461ms	remaining: 1.84s
20:	learn: 28.1570594	total: 484ms	remaining: 1.82s
21:	learn: 27.6140124	total: 517ms	remaining: 1.83s
22:	learn: 27.0130709	total: 541ms	remaining: 1.81s
23:	learn: 26.2648081	total: 566ms	remaining: 1.79s
24:	learn: 25.7963649	total: 588ms	remaining: 1.76s
25:	learn: 25.2713860	total: 612ms	remaining: 1.74s
26:	learn: 24.8080692	total: 636ms	remaining: 1.72s
27:	learn: 24.3042862	total: 659ms	remaining: 1.69s
28:	learn: 23.9097237	total: 680ms	remaining: 1.67s
29:	learn: 23.4953174	total: 702ms	remaining: 1.64s
30:	learn: 23.0484452	total: 731ms	remaining: 1.63s
31:	learn: 22.7100962	total: 754ms	remaining: 1.6s
32:	learn: 22.1662267	total: 773ms	remaining: 1.57s
33:	learn: 21.7339884	total: 793ms	remaining: 1.54s
34:	learn: 21.3699422	total: 814ms	remaining: 1.51s
35:	learn: 21.0249329	total: 833ms	remaining: 1.48s
36:	learn: 20.6187923	total: 856ms	remaining: 1.46s
37:	learn: 20.2401981	total: 876ms	remaining: 1.43s
38:	learn: 19.9712328	total: 898ms	remaining: 1.4s
39:	learn: 19.6429610	total: 925ms	remaining: 1.39s
40:	learn: 19.3281556	total: 948ms	remaining: 1.36s
41:	learn: 19.0925924	total: 971ms	remaining: 1.34s
42:	learn: 18.8118712	total: 994ms	remaining: 1.32s
43:	learn: 18.5355748	total: 1.02s	remaining: 1.29s
44:	learn: 18.2783929	total: 1.04s	remaining: 1.27s
45:	learn: 17.9915490	total: 1.06s	remaining: 1.24s
46:	learn: 17.7323317	total: 1.08s	remaining: 1.21s
47:	learn: 17.4448307	total: 1.1s	remaining: 1.19s
48:	learn: 17.2419782	total: 1.12s	remaining: 1.17s
49:	learn: 16.9351352	total: 1.15s	remaining: 1.15s
50:	learn: 16.7728723	total: 1.17s	remaining: 1.12s
51:	learn: 16.5718087	total: 1.19s	remaining: 1.1s
52:	learn: 16.4047483	total: 1.21s	remaining: 1.07s
53:	learn: 16.2888950	total: 1.23s	remaining: 1.05s
54:	learn: 16.1353042	total: 1.25s	remaining: 1.02s
55:	learn: 15.9384012	total: 1.27s	remaining: 999ms
56:	learn: 15.7488511	total: 1.29s	remaining: 975ms
57:	learn: 15.5682846	total: 1.31s	remaining: 950ms
58:	learn: 15.3488716	total: 1.33s	remaining: 926ms
59:	learn: 15.2291272	total: 1.35s	remaining: 903ms
60:	learn: 15.0582519	total: 1.39s	remaining: 886ms
61:	learn: 14.8478458	total: 1.41s	remaining: 865ms
62:	learn: 14.6663416	total: 1.43s	remaining: 842ms
63:	learn: 14.4830825	total: 1.46s	remaining: 819ms
64:	learn: 14.3300895	total: 1.48s	remaining: 796ms
65:	learn: 14.1168590	total: 1.5s	remaining: 773ms
66:	learn: 13.9783298	total: 1.52s	remaining: 749ms
67:	learn: 13.8132857	total: 1.54s	remaining: 725ms
68:	learn: 13.7050863	total: 1.56s	remaining: 702ms
69:	learn: 13.5742501	total: 1.59s	remaining: 682ms
70:	learn: 13.4851362	total: 1.61s	remaining: 659ms
71:	learn: 13.3300610	total: 1.64s	remaining: 636ms
72:	learn: 13.2223060	total: 1.66s	remaining: 613ms
73:	learn: 13.0706731	total: 1.68s	remaining: 590ms
74:	learn: 12.9178099	total: 1.7s	remaining: 567ms
75:	learn: 12.7954645	total: 1.72s	remaining: 544ms
76:	learn: 12.7133688	total: 1.74s	remaining: 521ms
77:	learn: 12.5745537	total: 1.77s	remaining: 499ms
78:	learn: 12.4765302	total: 1.79s	remaining: 476ms
79:	learn: 12.3609145	total: 1.82s	remaining: 455ms
80:	learn: 12.2437759	total: 1.85s	remaining: 433ms
81:	learn: 12.1583763	total: 1.87s	remaining: 410ms
82:	learn: 12.0202500	total: 1.89s	remaining: 388ms
83:	learn: 11.9125166	total: 1.92s	remaining: 365ms
84:	learn: 11.8100729	total: 1.94s	remaining: 342ms
85:	learn: 11.7509521	total: 1.96s	remaining: 319ms
86:	learn: 11.6448436	total: 1.98s	remaining: 296ms
87:	learn: 11.5550170	total: 2s	remaining: 273ms
88:	learn: 11.4624708	total: 2.03s	remaining: 251ms
89:	learn: 11.3547761	total: 2.05s	remaining: 228ms
90:	learn: 11.2513910	total: 2.07s	remaining: 205ms
91:	learn: 11.1414483	total: 2.1s	remaining: 182ms
92:	learn: 11.0742264	total: 2.12s	remaining: 160ms
93:	learn: 10.9721772	total: 2.14s	remaining: 137ms
94:	learn: 10.9118054	total: 2.16s	remaining: 114ms
95:	learn: 10.8465290	total: 2.19s	remaining: 91.1ms
96:	learn: 10.7451745	total: 2.21s	remaining: 68.3ms
97:	learn: 10.6173565	total: 2.24s	remaining: 45.7ms
98:	learn: 10.5562158	total: 2.27s	remaining: 22.9ms
99:	learn: 10.4564960	total: 2.29s	remaining: 0us
0:	learn: 27.6871645	total: 5.65ms	remaining: 560ms
1:	learn: 27.3312003	total: 10.9ms	remaining: 535ms
2:	learn: 26.9359558	total: 15.7ms	remaining: 508ms
3:	learn: 26.6055364	total: 20.4ms	remaining: 490ms
4:	learn: 26.1664924	total: 25.4ms	remaining: 482ms
5:	learn: 25.8515393	total: 30.6ms	remaining: 479ms
6:	learn: 25.4620036	total: 35.8ms	remaining: 475ms
7:	learn: 25.1669741	total: 40.9ms	remaining: 470ms
8:	learn: 24.8455454	total: 45.9ms	remaining: 464ms
9:	learn: 24.5106323	total: 51.2ms	remaining: 461ms
10:	learn: 24.1915228	total: 55.9ms	remaining: 452ms
11:	learn: 23.9076053	total: 61.2ms	remaining: 449ms
12:	learn: 23.6692445	total: 66.5ms	remaining: 445ms
13:	learn: 23.4343504	total: 72.2ms	remaining: 444ms
14:	learn: 23.2425280	total: 77.4ms	remaining: 439ms
15:	learn: 22.9254142	total: 83ms	remaining: 436ms
16:	learn: 22.6495489	total: 88.3ms	remaining: 431ms
17:	learn: 22.4343705	total: 93.5ms	remaining: 426ms
18:	learn: 22.2154202	total: 102ms	remaining: 435ms
19:	learn: 22.0592712	total: 111ms	remaining: 445ms
20:	learn: 21.7971944	total: 120ms	remaining: 450ms
21:	learn: 21.6128930	total: 125ms	remaining: 444ms
22:	learn: 21.3882946	total: 131ms	remaining: 440ms
23:	learn: 21.0912570	total: 136ms	remaining: 431ms
24:	learn: 20.8922857	total: 141ms	remaining: 424ms
25:	learn: 20.7150574	total: 147ms	remaining: 417ms
26:	learn: 20.5673183	total: 151ms	remaining: 409ms
27:	learn: 20.4331275	total: 156ms	remaining: 402ms
28:	learn: 20.2782866	total: 162ms	remaining: 395ms
29:	learn: 20.1061525	total: 167ms	remaining: 389ms
30:	learn: 19.9225948	total: 171ms	remaining: 381ms
31:	learn: 19.7809193	total: 176ms	remaining: 374ms
32:	learn: 19.6057771	total: 181ms	remaining: 367ms
33:	learn: 19.4391243	total: 186ms	remaining: 361ms
34:	learn: 19.2234365	total: 191ms	remaining: 354ms
35:	learn: 19.0214424	total: 196ms	remaining: 348ms
36:	learn: 18.8990643	total: 200ms	remaining: 341ms
37:	learn: 18.7473635	total: 206ms	remaining: 335ms
38:	learn: 18.6125192	total: 211ms	remaining: 329ms
39:	learn: 18.4977949	total: 215ms	remaining: 323ms
40:	learn: 18.3914568	total: 220ms	remaining: 317ms
41:	learn: 18.2541544	total: 225ms	remaining: 310ms
42:	learn: 18.1038984	total: 230ms	remaining: 304ms
43:	learn: 17.9706172	total: 234ms	remaining: 298ms
44:	learn: 17.8198810	total: 239ms	remaining: 293ms
45:	learn: 17.7102597	total: 244ms	remaining: 286ms
46:	learn: 17.6148228	total: 249ms	remaining: 281ms
47:	learn: 17.5115365	total: 254ms	remaining: 275ms
48:	learn: 17.3884162	total: 259ms	remaining: 269ms
49:	learn: 17.2857632	total: 263ms	remaining: 263ms
50:	learn: 17.1618843	total: 269ms	remaining: 258ms
51:	learn: 17.0529601	total: 274ms	remaining: 253ms
52:	learn: 16.9330273	total: 279ms	remaining: 247ms
53:	learn: 16.8206672	total: 284ms	remaining: 242ms
54:	learn: 16.7080356	total: 289ms	remaining: 237ms
55:	learn: 16.5874354	total: 294ms	remaining: 231ms
56:	learn: 16.4929860	total: 304ms	remaining: 229ms
57:	learn: 16.4269419	total: 313ms	remaining: 227ms
58:	learn: 16.3474026	total: 322ms	remaining: 223ms
59:	learn: 16.2515784	total: 330ms	remaining: 220ms
60:	learn: 16.1743901	total: 336ms	remaining: 215ms
61:	learn: 16.0389930	total: 343ms	remaining: 210ms
62:	learn: 15.9671636	total: 348ms	remaining: 205ms
63:	learn: 15.8928486	total: 354ms	remaining: 199ms
64:	learn: 15.8303841	total: 361ms	remaining: 194ms
65:	learn: 15.7612266	total: 367ms	remaining: 189ms
66:	learn: 15.6811172	total: 372ms	remaining: 183ms
67:	learn: 15.6262138	total: 378ms	remaining: 178ms
68:	learn: 15.5662508	total: 388ms	remaining: 174ms
69:	learn: 15.4804354	total: 394ms	remaining: 169ms
70:	learn: 15.4054915	total: 400ms	remaining: 163ms
71:	learn: 15.3271396	total: 405ms	remaining: 157ms
72:	learn: 15.2828359	total: 410ms	remaining: 152ms
73:	learn: 15.2197404	total: 415ms	remaining: 146ms
74:	learn: 15.1315902	total: 419ms	remaining: 140ms
75:	learn: 15.0780523	total: 425ms	remaining: 134ms
76:	learn: 14.9959155	total: 430ms	remaining: 128ms
77:	learn: 14.9265008	total: 435ms	remaining: 123ms
78:	learn: 14.8570189	total: 439ms	remaining: 117ms
79:	learn: 14.8060372	total: 444ms	remaining: 111ms
80:	learn: 14.7294676	total: 449ms	remaining: 105ms
81:	learn: 14.6708309	total: 454ms	remaining: 99.6ms
82:	learn: 14.5765370	total: 459ms	remaining: 93.9ms
83:	learn: 14.5312713	total: 464ms	remaining: 88.4ms
84:	learn: 14.4830327	total: 469ms	remaining: 82.8ms
85:	learn: 14.4296247	total: 476ms	remaining: 77.6ms
86:	learn: 14.3381470	total: 485ms	remaining: 72.4ms
87:	learn: 14.2638093	total: 492ms	remaining: 67ms
88:	learn: 14.2288435	total: 498ms	remaining: 61.5ms
89:	learn: 14.1489273	total: 503ms	remaining: 55.9ms
90:	learn: 14.0937923	total: 509ms	remaining: 50.4ms
91:	learn: 14.0334062	total: 516ms	remaining: 44.9ms
92:	learn: 13.9854696	total: 521ms	remaining: 39.2ms
93:	learn: 13.9444203	total: 526ms	remaining: 33.6ms
94:	learn: 13.9101523	total: 531ms	remaining: 28ms
95:	learn: 13.8460655	total: 536ms	remaining: 22.3ms
96:	learn: 13.7809420	total: 540ms	remaining: 16.7ms
97:	learn: 13.7270532	total: 545ms	remaining: 11.1ms
98:	learn: 13.6891300	total: 550ms	remaining: 5.56ms
99:	learn: 13.6569696	total: 555ms	remaining: 0us
0:	learn: 42.9754370	total: 5.37ms	remaining: 532ms
1:	learn: 42.2613272	total: 10.1ms	remaining: 495ms
2:	learn: 41.4729969	total: 14.5ms	remaining: 470ms
3:	learn: 40.7127004	total: 19.3ms	remaining: 464ms
4:	learn: 39.7775109	total: 24.1ms	remaining: 458ms
5:	learn: 39.1736663	total: 28.9ms	remaining: 453ms
6:	learn: 38.2981109	total: 33.7ms	remaining: 448ms
7:	learn: 37.5352984	total: 38.7ms	remaining: 445ms
8:	learn: 36.7771474	total: 43.4ms	remaining: 438ms
9:	learn: 36.0581366	total: 48ms	remaining: 432ms
10:	learn: 35.3542706	total: 53ms	remaining: 428ms
11:	learn: 34.6937007	total: 57.9ms	remaining: 425ms
12:	learn: 34.0408035	total: 62.9ms	remaining: 421ms
13:	learn: 33.3460240	total: 67.8ms	remaining: 417ms
14:	learn: 32.8086243	total: 72.9ms	remaining: 413ms
15:	learn: 32.1934462	total: 77.9ms	remaining: 409ms
16:	learn: 31.6465519	total: 82.7ms	remaining: 404ms
17:	learn: 31.2161293	total: 87.5ms	remaining: 399ms
18:	learn: 30.6730548	total: 92.8ms	remaining: 396ms
19:	learn: 30.3153659	total: 101ms	remaining: 404ms
20:	learn: 29.7661420	total: 110ms	remaining: 412ms
21:	learn: 29.2095664	total: 120ms	remaining: 424ms
22:	learn: 28.7509592	total: 126ms	remaining: 422ms
23:	learn: 28.4347528	total: 133ms	remaining: 421ms
24:	learn: 28.0551654	total: 139ms	remaining: 416ms
25:	learn: 27.7295952	total: 145ms	remaining: 412ms
26:	learn: 27.2329225	total: 150ms	remaining: 406ms
27:	learn: 26.9970607	total: 156ms	remaining: 401ms
28:	learn: 26.6596544	total: 162ms	remaining: 397ms
29:	learn: 26.2633576	total: 167ms	remaining: 391ms
30:	learn: 25.9761623	total: 173ms	remaining: 385ms
31:	learn: 25.6177371	total: 179ms	remaining: 379ms
32:	learn: 25.2165933	total: 184ms	remaining: 373ms
33:	learn: 24.8012870	total: 190ms	remaining: 368ms
34:	learn: 24.4772532	total: 196ms	remaining: 363ms
35:	learn: 24.1560359	total: 201ms	remaining: 358ms
36:	learn: 23.9688812	total: 206ms	remaining: 351ms
37:	learn: 23.6907607	total: 211ms	remaining: 344ms
38:	learn: 23.3885772	total: 216ms	remaining: 338ms
39:	learn: 23.2234939	total: 220ms	remaining: 331ms
40:	learn: 22.9785026	total: 225ms	remaining: 324ms
41:	learn: 22.6827268	total: 230ms	remaining: 317ms
42:	learn: 22.4564360	total: 235ms	remaining: 311ms
43:	learn: 22.2517827	total: 240ms	remaining: 305ms
44:	learn: 21.9858709	total: 245ms	remaining: 299ms
45:	learn: 21.7595870	total: 251ms	remaining: 294ms
46:	learn: 21.5929957	total: 256ms	remaining: 289ms
47:	learn: 21.4071752	total: 261ms	remaining: 283ms
48:	learn: 21.2186470	total: 267ms	remaining: 278ms
49:	learn: 21.0691824	total: 272ms	remaining: 272ms
50:	learn: 20.8921347	total: 278ms	remaining: 267ms
51:	learn: 20.6834229	total: 283ms	remaining: 261ms
52:	learn: 20.4718988	total: 288ms	remaining: 255ms
53:	learn: 20.3413889	total: 295ms	remaining: 251ms
54:	learn: 20.1785464	total: 304ms	remaining: 248ms
55:	learn: 19.9824314	total: 312ms	remaining: 245ms
56:	learn: 19.8217596	total: 318ms	remaining: 240ms
57:	learn: 19.6318474	total: 325ms	remaining: 235ms
58:	learn: 19.4962236	total: 330ms	remaining: 229ms
59:	learn: 19.3114985	total: 335ms	remaining: 223ms
60:	learn: 19.2181156	total: 340ms	remaining: 217ms
61:	learn: 19.0689614	total: 345ms	remaining: 211ms
62:	learn: 18.9563267	total: 350ms	remaining: 206ms
63:	learn: 18.8343083	total: 356ms	remaining: 200ms
64:	learn: 18.7050033	total: 361ms	remaining: 194ms
65:	learn: 18.6014163	total: 366ms	remaining: 188ms
66:	learn: 18.4910692	total: 371ms	remaining: 183ms
67:	learn: 18.3935194	total: 375ms	remaining: 177ms
68:	learn: 18.2825842	total: 380ms	remaining: 171ms
69:	learn: 18.1519267	total: 385ms	remaining: 165ms
70:	learn: 18.0527651	total: 390ms	remaining: 159ms
71:	learn: 17.9770106	total: 395ms	remaining: 154ms
72:	learn: 17.9151628	total: 400ms	remaining: 148ms
73:	learn: 17.7957486	total: 405ms	remaining: 142ms
74:	learn: 17.7025765	total: 410ms	remaining: 137ms
75:	learn: 17.5957242	total: 414ms	remaining: 131ms
76:	learn: 17.4683244	total: 419ms	remaining: 125ms
77:	learn: 17.3415729	total: 424ms	remaining: 120ms
78:	learn: 17.2886896	total: 429ms	remaining: 114ms
79:	learn: 17.2280922	total: 433ms	remaining: 108ms
80:	learn: 17.1188996	total: 438ms	remaining: 103ms
81:	learn: 17.0236450	total: 443ms	remaining: 97.2ms
82:	learn: 16.9046661	total: 448ms	remaining: 91.7ms
83:	learn: 16.7930633	total: 452ms	remaining: 86.1ms
84:	learn: 16.6870100	total: 457ms	remaining: 80.7ms
85:	learn: 16.5512107	total: 462ms	remaining: 75.2ms
86:	learn: 16.4353400	total: 467ms	remaining: 69.8ms
87:	learn: 16.3256461	total: 473ms	remaining: 64.5ms
88:	learn: 16.2968057	total: 478ms	remaining: 59.1ms
89:	learn: 16.2136078	total: 483ms	remaining: 53.7ms
90:	learn: 16.1596096	total: 488ms	remaining: 48.2ms
91:	learn: 16.1164050	total: 494ms	remaining: 42.9ms
92:	learn: 16.0660454	total: 501ms	remaining: 37.7ms
93:	learn: 16.0380611	total: 512ms	remaining: 32.7ms
94:	learn: 15.9494441	total: 522ms	remaining: 27.5ms
95:	learn: 15.8874840	total: 529ms	remaining: 22ms
96:	learn: 15.8288234	total: 535ms	remaining: 16.5ms
97:	learn: 15.7562787	total: 541ms	remaining: 11ms
98:	learn: 15.6822678	total: 546ms	remaining: 5.52ms
99:	learn: 15.5901500	total: 552ms	remaining: 0us
0:	learn: 46.4504871	total: 5.22ms	remaining: 517ms
1:	learn: 45.7240114	total: 9.99ms	remaining: 489ms
2:	learn: 45.0308025	total: 14.8ms	remaining: 480ms
3:	learn: 44.1111169	total: 19.5ms	remaining: 467ms
4:	learn: 43.3925352	total: 24.1ms	remaining: 457ms
5:	learn: 42.7856354	total: 28.5ms	remaining: 447ms
6:	learn: 42.1998170	total: 33.5ms	remaining: 445ms
7:	learn: 41.3532708	total: 38.4ms	remaining: 441ms
8:	learn: 40.7314571	total: 43.1ms	remaining: 436ms
9:	learn: 39.9838066	total: 48ms	remaining: 432ms
10:	learn: 39.4168243	total: 53ms	remaining: 429ms
11:	learn: 39.0148769	total: 57.6ms	remaining: 422ms
12:	learn: 38.3055855	total: 62.2ms	remaining: 416ms
13:	learn: 37.7343198	total: 67.6ms	remaining: 415ms
14:	learn: 37.4177463	total: 72.8ms	remaining: 412ms
15:	learn: 36.9043298	total: 78.2ms	remaining: 411ms
16:	learn: 36.3139174	total: 83.4ms	remaining: 407ms
17:	learn: 35.7200448	total: 88.6ms	remaining: 404ms
18:	learn: 35.3763394	total: 93.9ms	remaining: 400ms
19:	learn: 34.7666728	total: 102ms	remaining: 409ms
20:	learn: 34.2642890	total: 110ms	remaining: 415ms
21:	learn: 33.8196936	total: 118ms	remaining: 419ms
22:	learn: 33.4205669	total: 124ms	remaining: 415ms
23:	learn: 32.8565493	total: 130ms	remaining: 413ms
24:	learn: 32.5287132	total: 135ms	remaining: 405ms
25:	learn: 32.2142064	total: 140ms	remaining: 398ms
26:	learn: 31.9258854	total: 145ms	remaining: 392ms
27:	learn: 31.4083665	total: 150ms	remaining: 386ms
28:	learn: 31.1615620	total: 155ms	remaining: 381ms
29:	learn: 30.6948867	total: 160ms	remaining: 374ms
30:	learn: 30.3185108	total: 165ms	remaining: 368ms
31:	learn: 29.9245223	total: 170ms	remaining: 362ms
32:	learn: 29.6683643	total: 175ms	remaining: 356ms
33:	learn: 29.3868143	total: 180ms	remaining: 350ms
34:	learn: 29.1105699	total: 185ms	remaining: 344ms
35:	learn: 28.8274848	total: 190ms	remaining: 338ms
36:	learn: 28.5478288	total: 195ms	remaining: 332ms
37:	learn: 28.2355121	total: 199ms	remaining: 325ms
38:	learn: 28.0182564	total: 204ms	remaining: 319ms
39:	learn: 27.7654405	total: 209ms	remaining: 313ms
40:	learn: 27.5720477	total: 214ms	remaining: 307ms
41:	learn: 27.3182782	total: 218ms	remaining: 302ms
42:	learn: 26.9504431	total: 223ms	remaining: 296ms
43:	learn: 26.7281906	total: 228ms	remaining: 290ms
44:	learn: 26.5390008	total: 233ms	remaining: 285ms
45:	learn: 26.3781338	total: 237ms	remaining: 279ms
46:	learn: 26.1763177	total: 243ms	remaining: 274ms
47:	learn: 25.9417647	total: 247ms	remaining: 268ms
48:	learn: 25.7528045	total: 253ms	remaining: 263ms
49:	learn: 25.6336897	total: 258ms	remaining: 258ms
50:	learn: 25.4800426	total: 263ms	remaining: 252ms
51:	learn: 25.2895681	total: 268ms	remaining: 248ms
52:	learn: 25.0827111	total: 273ms	remaining: 243ms
53:	learn: 24.7987678	total: 279ms	remaining: 237ms
54:	learn: 24.6309982	total: 284ms	remaining: 232ms
55:	learn: 24.3526776	total: 289ms	remaining: 227ms
56:	learn: 24.1689125	total: 295ms	remaining: 222ms
57:	learn: 23.9802039	total: 304ms	remaining: 220ms
58:	learn: 23.8059432	total: 316ms	remaining: 220ms
59:	learn: 23.6006403	total: 323ms	remaining: 215ms
60:	learn: 23.2948382	total: 330ms	remaining: 211ms
61:	learn: 23.1338922	total: 336ms	remaining: 206ms
62:	learn: 22.9581269	total: 342ms	remaining: 201ms
63:	learn: 22.8263127	total: 348ms	remaining: 196ms
64:	learn: 22.6966006	total: 354ms	remaining: 191ms
65:	learn: 22.6012389	total: 360ms	remaining: 186ms
66:	learn: 22.4220244	total: 366ms	remaining: 180ms
67:	learn: 22.3148342	total: 372ms	remaining: 175ms
68:	learn: 22.1543592	total: 378ms	remaining: 170ms
69:	learn: 22.0614050	total: 384ms	remaining: 164ms
70:	learn: 21.9134025	total: 389ms	remaining: 159ms
71:	learn: 21.8198101	total: 395ms	remaining: 154ms
72:	learn: 21.6944173	total: 401ms	remaining: 148ms
73:	learn: 21.4727420	total: 406ms	remaining: 143ms
74:	learn: 21.3000560	total: 411ms	remaining: 137ms
75:	learn: 21.1884740	total: 416ms	remaining: 131ms
76:	learn: 21.0321317	total: 421ms	remaining: 126ms
77:	learn: 20.9371793	total: 426ms	remaining: 120ms
78:	learn: 20.6800341	total: 431ms	remaining: 114ms
79:	learn: 20.5629904	total: 436ms	remaining: 109ms
80:	learn: 20.4098217	total: 441ms	remaining: 103ms
81:	learn: 20.2139261	total: 445ms	remaining: 97.8ms
82:	learn: 20.1024260	total: 451ms	remaining: 92.3ms
83:	learn: 19.9835855	total: 456ms	remaining: 86.8ms
84:	learn: 19.9018880	total: 460ms	remaining: 81.2ms
85:	learn: 19.7819843	total: 465ms	remaining: 75.7ms
86:	learn: 19.6352780	total: 471ms	remaining: 70.4ms
87:	learn: 19.4888328	total: 476ms	remaining: 64.9ms
88:	learn: 19.4365121	total: 481ms	remaining: 59.5ms
89:	learn: 19.3427430	total: 486ms	remaining: 54ms
90:	learn: 19.2884907	total: 492ms	remaining: 48.6ms
91:	learn: 19.1898932	total: 498ms	remaining: 43.3ms
92:	learn: 19.0775661	total: 508ms	remaining: 38.2ms
93:	learn: 19.0334055	total: 515ms	remaining: 32.9ms
94:	learn: 18.9381916	total: 522ms	remaining: 27.5ms
95:	learn: 18.8471198	total: 528ms	remaining: 22ms
96:	learn: 18.7136478	total: 533ms	remaining: 16.5ms
97:	learn: 18.6633102	total: 538ms	remaining: 11ms
98:	learn: 18.5887516	total: 543ms	remaining: 5.49ms
99:	learn: 18.4841597	total: 548ms	remaining: 0us
0:	learn: 46.2172336	total: 5.35ms	remaining: 530ms
1:	learn: 45.4248871	total: 10.2ms	remaining: 498ms
2:	learn: 44.8702937	total: 15ms	remaining: 486ms
3:	learn: 44.2019212	total: 20.6ms	remaining: 494ms
4:	learn: 43.4805210	total: 25.8ms	remaining: 491ms
5:	learn: 42.7336269	total: 31.2ms	remaining: 488ms
6:	learn: 42.0396670	total: 36.4ms	remaining: 484ms
7:	learn: 41.5668459	total: 41.5ms	remaining: 477ms
8:	learn: 40.8999125	total: 46.6ms	remaining: 472ms
9:	learn: 40.3358512	total: 51.9ms	remaining: 467ms
10:	learn: 39.7511489	total: 57ms	remaining: 461ms
11:	learn: 39.0775416	total: 61.8ms	remaining: 453ms
12:	learn: 38.5204735	total: 66.4ms	remaining: 444ms
13:	learn: 38.2087509	total: 71.3ms	remaining: 438ms
14:	learn: 37.7259552	total: 76.3ms	remaining: 432ms
15:	learn: 37.1646397	total: 81.1ms	remaining: 426ms
16:	learn: 36.7093520	total: 85.9ms	remaining: 420ms
17:	learn: 36.2212308	total: 91ms	remaining: 415ms
18:	learn: 35.8682156	total: 95.8ms	remaining: 408ms
19:	learn: 35.6026383	total: 101ms	remaining: 404ms
20:	learn: 35.1739725	total: 107ms	remaining: 403ms
21:	learn: 34.5938003	total: 115ms	remaining: 408ms
22:	learn: 34.1479056	total: 125ms	remaining: 418ms
23:	learn: 33.8759356	total: 133ms	remaining: 420ms
24:	learn: 33.2898426	total: 141ms	remaining: 423ms
25:	learn: 32.9220237	total: 147ms	remaining: 417ms
26:	learn: 32.4324374	total: 152ms	remaining: 411ms
27:	learn: 32.1726327	total: 158ms	remaining: 405ms
28:	learn: 31.8020879	total: 163ms	remaining: 400ms
29:	learn: 31.4329781	total: 169ms	remaining: 394ms
30:	learn: 30.9995282	total: 175ms	remaining: 389ms
31:	learn: 30.6815978	total: 181ms	remaining: 384ms
32:	learn: 30.2991029	total: 186ms	remaining: 378ms
33:	learn: 30.0354202	total: 192ms	remaining: 372ms
34:	learn: 29.7620535	total: 197ms	remaining: 366ms
35:	learn: 29.4552589	total: 202ms	remaining: 359ms
36:	learn: 29.2634399	total: 208ms	remaining: 355ms
37:	learn: 28.8345135	total: 215ms	remaining: 350ms
38:	learn: 28.5551142	total: 220ms	remaining: 343ms
39:	learn: 28.3258809	total: 224ms	remaining: 336ms
40:	learn: 28.0835564	total: 229ms	remaining: 330ms
41:	learn: 27.7517159	total: 234ms	remaining: 323ms
42:	learn: 27.5427595	total: 239ms	remaining: 316ms
43:	learn: 27.3925105	total: 243ms	remaining: 310ms
44:	learn: 27.2377120	total: 248ms	remaining: 303ms
45:	learn: 26.9930398	total: 253ms	remaining: 297ms
46:	learn: 26.7748687	total: 258ms	remaining: 290ms
47:	learn: 26.5856986	total: 263ms	remaining: 285ms
48:	learn: 26.4344153	total: 267ms	remaining: 278ms
49:	learn: 26.3263456	total: 272ms	remaining: 272ms
50:	learn: 26.2048412	total: 278ms	remaining: 267ms
51:	learn: 26.0608546	total: 283ms	remaining: 261ms
52:	learn: 25.9428146	total: 288ms	remaining: 255ms
53:	learn: 25.7578029	total: 293ms	remaining: 249ms
54:	learn: 25.5696792	total: 298ms	remaining: 244ms
55:	learn: 25.3291935	total: 303ms	remaining: 238ms
56:	learn: 25.1388942	total: 312ms	remaining: 235ms
57:	learn: 24.9853945	total: 320ms	remaining: 232ms
58:	learn: 24.8037785	total: 326ms	remaining: 227ms
59:	learn: 24.5326704	total: 332ms	remaining: 221ms
60:	learn: 24.2208240	total: 338ms	remaining: 216ms
61:	learn: 24.0774015	total: 342ms	remaining: 210ms
62:	learn: 23.9705824	total: 347ms	remaining: 204ms
63:	learn: 23.8877665	total: 352ms	remaining: 198ms
64:	learn: 23.7309043	total: 356ms	remaining: 192ms
65:	learn: 23.5820140	total: 361ms	remaining: 186ms
66:	learn: 23.3762012	total: 366ms	remaining: 180ms
67:	learn: 23.2317502	total: 370ms	remaining: 174ms
68:	learn: 23.0868331	total: 375ms	remaining: 168ms
69:	learn: 22.9642758	total: 380ms	remaining: 163ms
70:	learn: 22.8085341	total: 385ms	remaining: 157ms
71:	learn: 22.6834294	total: 390ms	remaining: 152ms
72:	learn: 22.6152922	total: 394ms	remaining: 146ms
73:	learn: 22.3675145	total: 399ms	remaining: 140ms
74:	learn: 22.3023338	total: 404ms	remaining: 135ms
75:	learn: 22.1866833	total: 409ms	remaining: 129ms
76:	learn: 22.0163130	total: 413ms	remaining: 123ms
77:	learn: 21.9691306	total: 418ms	remaining: 118ms
78:	learn: 21.9004647	total: 423ms	remaining: 112ms
79:	learn: 21.7931869	total: 427ms	remaining: 107ms
80:	learn: 21.6747916	total: 432ms	remaining: 101ms
81:	learn: 21.5187568	total: 437ms	remaining: 95.9ms
82:	learn: 21.3124880	total: 442ms	remaining: 90.5ms
83:	learn: 21.1979524	total: 447ms	remaining: 85.1ms
84:	learn: 21.1311130	total: 451ms	remaining: 79.7ms
85:	learn: 21.0606062	total: 457ms	remaining: 74.3ms
86:	learn: 20.9900935	total: 461ms	remaining: 68.9ms
87:	learn: 20.8908054	total: 466ms	remaining: 63.5ms
88:	learn: 20.8088525	total: 471ms	remaining: 58.2ms
89:	learn: 20.7300955	total: 476ms	remaining: 52.9ms
90:	learn: 20.6130276	total: 483ms	remaining: 47.8ms
91:	learn: 20.5437508	total: 491ms	remaining: 42.7ms
92:	learn: 20.5029426	total: 498ms	remaining: 37.5ms
93:	learn: 20.4416708	total: 504ms	remaining: 32.2ms
94:	learn: 20.3917812	total: 509ms	remaining: 26.8ms
95:	learn: 20.3305024	total: 515ms	remaining: 21.5ms
96:	learn: 20.2375704	total: 522ms	remaining: 16.2ms
97:	learn: 20.1835197	total: 528ms	remaining: 10.8ms
98:	learn: 20.1246834	total: 534ms	remaining: 5.39ms
99:	learn: 20.0506334	total: 539ms	remaining: 0us
0:	learn: 46.7334648	total: 6.8ms	remaining: 674ms
1:	learn: 46.2069876	total: 11.8ms	remaining: 577ms
2:	learn: 45.3699967	total: 16.4ms	remaining: 530ms
3:	learn: 44.6866787	total: 21.2ms	remaining: 510ms
4:	learn: 43.8536031	total: 26ms	remaining: 495ms
5:	learn: 43.4716853	total: 30.7ms	remaining: 480ms
6:	learn: 42.9929637	total: 35.5ms	remaining: 472ms
7:	learn: 42.4952169	total: 40.8ms	remaining: 469ms
8:	learn: 41.7548337	total: 45.7ms	remaining: 462ms
9:	learn: 41.1054415	total: 50.2ms	remaining: 452ms
10:	learn: 40.4827492	total: 55.2ms	remaining: 447ms
11:	learn: 39.7605907	total: 60.1ms	remaining: 441ms
12:	learn: 39.2532558	total: 65.2ms	remaining: 436ms
13:	learn: 38.6572753	total: 70.5ms	remaining: 433ms
14:	learn: 38.2886959	total: 75.6ms	remaining: 428ms
15:	learn: 37.7816612	total: 80.5ms	remaining: 422ms
16:	learn: 37.1680589	total: 85.5ms	remaining: 417ms
17:	learn: 36.5753004	total: 90.8ms	remaining: 414ms
18:	learn: 36.2339458	total: 95.8ms	remaining: 408ms
19:	learn: 35.9159716	total: 101ms	remaining: 405ms
20:	learn: 35.4591743	total: 106ms	remaining: 400ms
21:	learn: 34.8726070	total: 111ms	remaining: 395ms
22:	learn: 34.3903591	total: 119ms	remaining: 398ms
23:	learn: 34.1236827	total: 127ms	remaining: 403ms
24:	learn: 33.8026540	total: 134ms	remaining: 403ms
25:	learn: 33.4594822	total: 141ms	remaining: 401ms
26:	learn: 33.1338910	total: 147ms	remaining: 398ms
27:	learn: 32.8527106	total: 153ms	remaining: 393ms
28:	learn: 32.4923829	total: 157ms	remaining: 385ms
29:	learn: 32.0560533	total: 162ms	remaining: 379ms
30:	learn: 31.6614408	total: 167ms	remaining: 373ms
31:	learn: 31.2796040	total: 173ms	remaining: 367ms
32:	learn: 30.8214741	total: 178ms	remaining: 361ms
33:	learn: 30.5908694	total: 182ms	remaining: 354ms
34:	learn: 30.3637356	total: 187ms	remaining: 348ms
35:	learn: 30.0446511	total: 192ms	remaining: 342ms
36:	learn: 29.8792549	total: 197ms	remaining: 336ms
37:	learn: 29.5488457	total: 202ms	remaining: 330ms
38:	learn: 29.2808568	total: 207ms	remaining: 324ms
39:	learn: 29.0603765	total: 212ms	remaining: 318ms
40:	learn: 28.8272425	total: 217ms	remaining: 312ms
41:	learn: 28.4753580	total: 221ms	remaining: 305ms
42:	learn: 28.2963614	total: 226ms	remaining: 299ms
43:	learn: 28.1054768	total: 231ms	remaining: 293ms
44:	learn: 27.9038093	total: 235ms	remaining: 288ms
45:	learn: 27.6305487	total: 240ms	remaining: 282ms
46:	learn: 27.4457907	total: 245ms	remaining: 276ms
47:	learn: 27.1855957	total: 250ms	remaining: 270ms
48:	learn: 26.9987934	total: 255ms	remaining: 265ms
49:	learn: 26.7881067	total: 259ms	remaining: 259ms
50:	learn: 26.6385231	total: 264ms	remaining: 254ms
51:	learn: 26.4661755	total: 269ms	remaining: 248ms
52:	learn: 26.3331868	total: 274ms	remaining: 243ms
53:	learn: 26.0353476	total: 279ms	remaining: 237ms
54:	learn: 25.8257147	total: 284ms	remaining: 233ms
55:	learn: 25.5924383	total: 290ms	remaining: 228ms
56:	learn: 25.4082209	total: 295ms	remaining: 222ms
57:	learn: 25.2350104	total: 300ms	remaining: 217ms
58:	learn: 25.1789867	total: 305ms	remaining: 212ms
59:	learn: 24.9111359	total: 314ms	remaining: 209ms
60:	learn: 24.6314503	total: 325ms	remaining: 208ms
61:	learn: 24.4297999	total: 333ms	remaining: 204ms
62:	learn: 24.3126171	total: 341ms	remaining: 200ms
63:	learn: 24.1544005	total: 346ms	remaining: 195ms
64:	learn: 24.0197950	total: 352ms	remaining: 190ms
65:	learn: 23.8483087	total: 357ms	remaining: 184ms
66:	learn: 23.6624915	total: 363ms	remaining: 179ms
67:	learn: 23.5068105	total: 369ms	remaining: 174ms
68:	learn: 23.4266187	total: 375ms	remaining: 168ms
69:	learn: 23.3535388	total: 380ms	remaining: 163ms
70:	learn: 23.2477190	total: 386ms	remaining: 158ms
71:	learn: 23.1877634	total: 391ms	remaining: 152ms
72:	learn: 23.1344720	total: 397ms	remaining: 147ms
73:	learn: 22.9498234	total: 405ms	remaining: 142ms
74:	learn: 22.9068295	total: 410ms	remaining: 137ms
75:	learn: 22.7368434	total: 415ms	remaining: 131ms
76:	learn: 22.6084901	total: 421ms	remaining: 126ms
77:	learn: 22.4690295	total: 427ms	remaining: 120ms
78:	learn: 22.3970100	total: 432ms	remaining: 115ms
79:	learn: 22.3025537	total: 436ms	remaining: 109ms
80:	learn: 22.2089293	total: 441ms	remaining: 103ms
81:	learn: 22.0522107	total: 446ms	remaining: 97.8ms
82:	learn: 21.9368213	total: 451ms	remaining: 92.3ms
83:	learn: 21.7968322	total: 456ms	remaining: 86.8ms
84:	learn: 21.7416164	total: 460ms	remaining: 81.2ms
85:	learn: 21.6031099	total: 465ms	remaining: 75.7ms
86:	learn: 21.4530627	total: 470ms	remaining: 70.2ms
87:	learn: 21.3118417	total: 474ms	remaining: 64.7ms
88:	learn: 21.2760431	total: 480ms	remaining: 59.3ms
89:	learn: 21.2071350	total: 485ms	remaining: 53.9ms
90:	learn: 21.1051001	total: 491ms	remaining: 48.5ms
91:	learn: 21.0246142	total: 495ms	remaining: 43.1ms
92:	learn: 20.9834999	total: 500ms	remaining: 37.7ms
93:	learn: 20.8989393	total: 505ms	remaining: 32.3ms
94:	learn: 20.8262231	total: 515ms	remaining: 27.1ms
95:	learn: 20.7369110	total: 523ms	remaining: 21.8ms
96:	learn: 20.6409587	total: 530ms	remaining: 16.4ms
97:	learn: 20.5553641	total: 536ms	remaining: 10.9ms
98:	learn: 20.4317232	total: 541ms	remaining: 5.47ms
99:	learn: 20.3708681	total: 546ms	remaining: 0us
0:	learn: 27.6871645	total: 5.18ms	remaining: 513ms
1:	learn: 27.3312003	total: 9.99ms	remaining: 490ms
2:	learn: 26.9359558	total: 14.5ms	remaining: 470ms
3:	learn: 26.6055364	total: 19.1ms	remaining: 459ms
4:	learn: 26.1664924	total: 24ms	remaining: 455ms
5:	learn: 25.8515393	total: 28.8ms	remaining: 451ms
6:	learn: 25.4620036	total: 33.3ms	remaining: 443ms
7:	learn: 25.1669741	total: 38ms	remaining: 437ms
8:	learn: 24.8455454	total: 42.8ms	remaining: 433ms
9:	learn: 24.5106323	total: 47.5ms	remaining: 427ms
10:	learn: 24.1915228	total: 52ms	remaining: 421ms
11:	learn: 23.9076053	total: 56.8ms	remaining: 416ms
12:	learn: 23.6692445	total: 61.6ms	remaining: 412ms
13:	learn: 23.4343504	total: 66.3ms	remaining: 407ms
14:	learn: 23.2425280	total: 71.3ms	remaining: 404ms
15:	learn: 22.9254142	total: 76.2ms	remaining: 400ms
16:	learn: 22.6495489	total: 80.9ms	remaining: 395ms
17:	learn: 22.4343705	total: 85.5ms	remaining: 390ms
18:	learn: 22.2154202	total: 90.9ms	remaining: 388ms
19:	learn: 22.0592712	total: 96.2ms	remaining: 385ms
20:	learn: 21.7971944	total: 101ms	remaining: 381ms
21:	learn: 21.6128930	total: 106ms	remaining: 377ms
22:	learn: 21.3882946	total: 111ms	remaining: 373ms
23:	learn: 21.0912570	total: 116ms	remaining: 369ms
24:	learn: 20.8922857	total: 124ms	remaining: 372ms
25:	learn: 20.7150574	total: 132ms	remaining: 375ms
26:	learn: 20.5673183	total: 141ms	remaining: 380ms
27:	learn: 20.4331275	total: 147ms	remaining: 379ms
28:	learn: 20.2782866	total: 155ms	remaining: 379ms
29:	learn: 20.1061525	total: 160ms	remaining: 374ms
30:	learn: 19.9225948	total: 166ms	remaining: 369ms
31:	learn: 19.7809193	total: 171ms	remaining: 364ms
32:	learn: 19.6057771	total: 177ms	remaining: 359ms
33:	learn: 19.4391243	total: 183ms	remaining: 355ms
34:	learn: 19.2234365	total: 188ms	remaining: 349ms
35:	learn: 19.0214424	total: 194ms	remaining: 344ms
36:	learn: 18.8990643	total: 200ms	remaining: 340ms
37:	learn: 18.7473635	total: 205ms	remaining: 334ms
38:	learn: 18.6125192	total: 210ms	remaining: 329ms
39:	learn: 18.4977949	total: 216ms	remaining: 324ms
40:	learn: 18.3914568	total: 222ms	remaining: 320ms
41:	learn: 18.2541544	total: 227ms	remaining: 313ms
42:	learn: 18.1038984	total: 232ms	remaining: 307ms
43:	learn: 17.9706172	total: 236ms	remaining: 300ms
44:	learn: 17.8198810	total: 241ms	remaining: 294ms
45:	learn: 17.7102597	total: 245ms	remaining: 288ms
46:	learn: 17.6148228	total: 250ms	remaining: 282ms
47:	learn: 17.5115365	total: 255ms	remaining: 276ms
48:	learn: 17.3884162	total: 260ms	remaining: 270ms
49:	learn: 17.2857632	total: 265ms	remaining: 265ms
50:	learn: 17.1618843	total: 270ms	remaining: 259ms
51:	learn: 17.0529601	total: 274ms	remaining: 253ms
52:	learn: 16.9330273	total: 279ms	remaining: 247ms
53:	learn: 16.8206672	total: 284ms	remaining: 242ms
54:	learn: 16.7080356	total: 289ms	remaining: 236ms
55:	learn: 16.5874354	total: 294ms	remaining: 231ms
56:	learn: 16.4929860	total: 299ms	remaining: 226ms
57:	learn: 16.4269419	total: 304ms	remaining: 220ms
58:	learn: 16.3474026	total: 309ms	remaining: 215ms
59:	learn: 16.2515784	total: 314ms	remaining: 209ms
60:	learn: 16.1743901	total: 322ms	remaining: 206ms
61:	learn: 16.0389930	total: 331ms	remaining: 203ms
62:	learn: 15.9671636	total: 339ms	remaining: 199ms
63:	learn: 15.8928486	total: 344ms	remaining: 194ms
64:	learn: 15.8303841	total: 351ms	remaining: 189ms
65:	learn: 15.7612266	total: 356ms	remaining: 183ms
66:	learn: 15.6811172	total: 360ms	remaining: 178ms
67:	learn: 15.6262138	total: 365ms	remaining: 172ms
68:	learn: 15.5662508	total: 370ms	remaining: 166ms
69:	learn: 15.4804354	total: 374ms	remaining: 160ms
70:	learn: 15.4054915	total: 379ms	remaining: 155ms
71:	learn: 15.3271396	total: 384ms	remaining: 149ms
72:	learn: 15.2828359	total: 389ms	remaining: 144ms
73:	learn: 15.2197404	total: 394ms	remaining: 138ms
74:	learn: 15.1315902	total: 399ms	remaining: 133ms
75:	learn: 15.0780523	total: 404ms	remaining: 128ms
76:	learn: 14.9959155	total: 409ms	remaining: 122ms
77:	learn: 14.9265008	total: 414ms	remaining: 117ms
78:	learn: 14.8570189	total: 419ms	remaining: 111ms
79:	learn: 14.8060372	total: 424ms	remaining: 106ms
80:	learn: 14.7294676	total: 429ms	remaining: 101ms
81:	learn: 14.6708309	total: 434ms	remaining: 95.2ms
82:	learn: 14.5765370	total: 439ms	remaining: 89.8ms
83:	learn: 14.5312713	total: 444ms	remaining: 84.5ms
84:	learn: 14.4830327	total: 449ms	remaining: 79.1ms
85:	learn: 14.4296247	total: 453ms	remaining: 73.8ms
86:	learn: 14.3381470	total: 458ms	remaining: 68.5ms
87:	learn: 14.2638093	total: 463ms	remaining: 63.2ms
88:	learn: 14.2288435	total: 468ms	remaining: 57.9ms
89:	learn: 14.1489273	total: 473ms	remaining: 52.5ms
90:	learn: 14.0937923	total: 478ms	remaining: 47.3ms
91:	learn: 14.0334062	total: 483ms	remaining: 42ms
92:	learn: 13.9854696	total: 488ms	remaining: 36.7ms
93:	learn: 13.9444203	total: 493ms	remaining: 31.5ms
94:	learn: 13.9101523	total: 498ms	remaining: 26.2ms
95:	learn: 13.8460655	total: 503ms	remaining: 21ms
96:	learn: 13.7809420	total: 525ms	remaining: 16.2ms
97:	learn: 13.7270532	total: 536ms	remaining: 10.9ms
98:	learn: 13.6891300	total: 544ms	remaining: 5.49ms
99:	learn: 13.6569696	total: 550ms	remaining: 0us
0:	learn: 42.9754370	total: 5.61ms	remaining: 556ms
1:	learn: 42.2613272	total: 12.2ms	remaining: 600ms
2:	learn: 41.4729969	total: 18ms	remaining: 582ms
3:	learn: 40.7127004	total: 22.5ms	remaining: 541ms
4:	learn: 39.7775109	total: 27.2ms	remaining: 517ms
5:	learn: 39.1736663	total: 31.9ms	remaining: 500ms
6:	learn: 38.2981109	total: 36.6ms	remaining: 487ms
7:	learn: 37.5352984	total: 41.2ms	remaining: 474ms
8:	learn: 36.7771474	total: 46ms	remaining: 466ms
9:	learn: 36.0581366	total: 50.8ms	remaining: 457ms
10:	learn: 35.3542706	total: 55.7ms	remaining: 451ms
11:	learn: 34.6937007	total: 60.4ms	remaining: 443ms
12:	learn: 34.0408035	total: 65.5ms	remaining: 438ms
13:	learn: 33.3460240	total: 70.1ms	remaining: 431ms
14:	learn: 32.8086243	total: 74.7ms	remaining: 423ms
15:	learn: 32.1934462	total: 79.7ms	remaining: 418ms
16:	learn: 31.6465519	total: 84.3ms	remaining: 412ms
17:	learn: 31.2161293	total: 88.7ms	remaining: 404ms
18:	learn: 30.6730548	total: 93.3ms	remaining: 398ms
19:	learn: 30.3153659	total: 98.5ms	remaining: 394ms
20:	learn: 29.7661420	total: 104ms	remaining: 390ms
21:	learn: 29.2095664	total: 109ms	remaining: 385ms
22:	learn: 28.7509592	total: 114ms	remaining: 381ms
23:	learn: 28.4347528	total: 119ms	remaining: 377ms
24:	learn: 28.0551654	total: 124ms	remaining: 372ms
25:	learn: 27.7295952	total: 132ms	remaining: 376ms
26:	learn: 27.2329225	total: 141ms	remaining: 380ms
27:	learn: 26.9970607	total: 148ms	remaining: 380ms
28:	learn: 26.6596544	total: 154ms	remaining: 376ms
29:	learn: 26.2633576	total: 160ms	remaining: 374ms
30:	learn: 25.9761623	total: 165ms	remaining: 368ms
31:	learn: 25.6177371	total: 170ms	remaining: 362ms
32:	learn: 25.2165933	total: 175ms	remaining: 355ms
33:	learn: 24.8012870	total: 180ms	remaining: 349ms
34:	learn: 24.4772532	total: 185ms	remaining: 343ms
35:	learn: 24.1560359	total: 189ms	remaining: 336ms
36:	learn: 23.9688812	total: 194ms	remaining: 330ms
37:	learn: 23.6907607	total: 198ms	remaining: 324ms
38:	learn: 23.3885772	total: 204ms	remaining: 319ms
39:	learn: 23.2234939	total: 209ms	remaining: 314ms
40:	learn: 22.9785026	total: 214ms	remaining: 309ms
41:	learn: 22.6827268	total: 220ms	remaining: 303ms
42:	learn: 22.4564360	total: 225ms	remaining: 298ms
43:	learn: 22.2517827	total: 229ms	remaining: 292ms
44:	learn: 21.9858709	total: 235ms	remaining: 287ms
45:	learn: 21.7595870	total: 239ms	remaining: 281ms
46:	learn: 21.5929957	total: 244ms	remaining: 275ms
47:	learn: 21.4071752	total: 249ms	remaining: 269ms
48:	learn: 21.2186470	total: 253ms	remaining: 264ms
49:	learn: 21.0691824	total: 258ms	remaining: 258ms
50:	learn: 20.8921347	total: 263ms	remaining: 253ms
51:	learn: 20.6834229	total: 268ms	remaining: 247ms
52:	learn: 20.4718988	total: 273ms	remaining: 242ms
53:	learn: 20.3413889	total: 277ms	remaining: 236ms
54:	learn: 20.1785464	total: 282ms	remaining: 231ms
55:	learn: 19.9824314	total: 287ms	remaining: 225ms
56:	learn: 19.8217596	total: 292ms	remaining: 220ms
57:	learn: 19.6318474	total: 297ms	remaining: 215ms
58:	learn: 19.4962236	total: 302ms	remaining: 210ms
59:	learn: 19.3114985	total: 307ms	remaining: 205ms
60:	learn: 19.2181156	total: 312ms	remaining: 200ms
61:	learn: 19.0689614	total: 317ms	remaining: 194ms
62:	learn: 18.9563267	total: 322ms	remaining: 189ms
63:	learn: 18.8343083	total: 332ms	remaining: 187ms
64:	learn: 18.7050033	total: 343ms	remaining: 185ms
65:	learn: 18.6014163	total: 351ms	remaining: 181ms
66:	learn: 18.4910692	total: 360ms	remaining: 177ms
67:	learn: 18.3935194	total: 365ms	remaining: 172ms
68:	learn: 18.2825842	total: 371ms	remaining: 166ms
69:	learn: 18.1519267	total: 376ms	remaining: 161ms
70:	learn: 18.0527651	total: 383ms	remaining: 156ms
71:	learn: 17.9770106	total: 389ms	remaining: 151ms
72:	learn: 17.9151628	total: 394ms	remaining: 146ms
73:	learn: 17.7957486	total: 400ms	remaining: 141ms
74:	learn: 17.7025765	total: 406ms	remaining: 135ms
75:	learn: 17.5957242	total: 411ms	remaining: 130ms
76:	learn: 17.4683244	total: 417ms	remaining: 125ms
77:	learn: 17.3415729	total: 423ms	remaining: 119ms
78:	learn: 17.2886896	total: 428ms	remaining: 114ms
79:	learn: 17.2280922	total: 433ms	remaining: 108ms
80:	learn: 17.1188996	total: 437ms	remaining: 103ms
81:	learn: 17.0236450	total: 442ms	remaining: 97.1ms
82:	learn: 16.9046661	total: 447ms	remaining: 91.6ms
83:	learn: 16.7930633	total: 452ms	remaining: 86.1ms
84:	learn: 16.6870100	total: 456ms	remaining: 80.5ms
85:	learn: 16.5512107	total: 461ms	remaining: 75ms
86:	learn: 16.4353400	total: 466ms	remaining: 69.6ms
87:	learn: 16.3256461	total: 470ms	remaining: 64.1ms
88:	learn: 16.2968057	total: 475ms	remaining: 58.7ms
89:	learn: 16.2136078	total: 480ms	remaining: 53.4ms
90:	learn: 16.1596096	total: 485ms	remaining: 48ms
91:	learn: 16.1164050	total: 491ms	remaining: 42.7ms
92:	learn: 16.0660454	total: 496ms	remaining: 37.3ms
93:	learn: 16.0380611	total: 505ms	remaining: 32.2ms
94:	learn: 15.9494441	total: 512ms	remaining: 26.9ms
95:	learn: 15.8874840	total: 520ms	remaining: 21.7ms
96:	learn: 15.8288234	total: 525ms	remaining: 16.2ms
97:	learn: 15.7562787	total: 531ms	remaining: 10.8ms
98:	learn: 15.6822678	total: 537ms	remaining: 5.43ms
99:	learn: 15.5901500	total: 544ms	remaining: 0us
0:	learn: 46.4504871	total: 5.25ms	remaining: 520ms
1:	learn: 45.7240114	total: 9.97ms	remaining: 489ms
2:	learn: 45.0308025	total: 15.1ms	remaining: 490ms
3:	learn: 44.1111169	total: 20.1ms	remaining: 483ms
4:	learn: 43.3925352	total: 24.9ms	remaining: 474ms
5:	learn: 42.7856354	total: 29.8ms	remaining: 467ms
6:	learn: 42.1998170	total: 34.8ms	remaining: 462ms
7:	learn: 41.3532708	total: 39.5ms	remaining: 454ms
8:	learn: 40.7314571	total: 44.2ms	remaining: 447ms
9:	learn: 39.9838066	total: 49.1ms	remaining: 442ms
10:	learn: 39.4168243	total: 53.8ms	remaining: 435ms
11:	learn: 39.0148769	total: 58.2ms	remaining: 427ms
12:	learn: 38.3055855	total: 62.9ms	remaining: 421ms
13:	learn: 37.7343198	total: 68.1ms	remaining: 418ms
14:	learn: 37.4177463	total: 72.9ms	remaining: 413ms
15:	learn: 36.9043298	total: 77.7ms	remaining: 408ms
16:	learn: 36.3139174	total: 82.7ms	remaining: 404ms
17:	learn: 35.7200448	total: 87.5ms	remaining: 398ms
18:	learn: 35.3763394	total: 92.3ms	remaining: 393ms
19:	learn: 34.7666728	total: 97.2ms	remaining: 389ms
20:	learn: 34.2642890	total: 102ms	remaining: 384ms
21:	learn: 33.8196936	total: 107ms	remaining: 378ms
22:	learn: 33.4205669	total: 111ms	remaining: 373ms
23:	learn: 32.8565493	total: 116ms	remaining: 368ms
24:	learn: 32.5287132	total: 121ms	remaining: 363ms
25:	learn: 32.2142064	total: 126ms	remaining: 358ms
26:	learn: 31.9258854	total: 131ms	remaining: 354ms
27:	learn: 31.4083665	total: 136ms	remaining: 350ms
28:	learn: 31.1615620	total: 141ms	remaining: 346ms
29:	learn: 30.6948867	total: 146ms	remaining: 341ms
30:	learn: 30.3185108	total: 151ms	remaining: 337ms
31:	learn: 29.9245223	total: 158ms	remaining: 335ms
32:	learn: 29.6683643	total: 166ms	remaining: 337ms
33:	learn: 29.3868143	total: 178ms	remaining: 345ms
34:	learn: 29.1105699	total: 184ms	remaining: 342ms
35:	learn: 28.8274848	total: 191ms	remaining: 340ms
36:	learn: 28.5478288	total: 197ms	remaining: 336ms
37:	learn: 28.2355121	total: 203ms	remaining: 331ms
38:	learn: 28.0182564	total: 209ms	remaining: 327ms
39:	learn: 27.7654405	total: 214ms	remaining: 322ms
40:	learn: 27.5720477	total: 220ms	remaining: 317ms
41:	learn: 27.3182782	total: 226ms	remaining: 312ms
42:	learn: 26.9504431	total: 234ms	remaining: 310ms
43:	learn: 26.7281906	total: 240ms	remaining: 305ms
44:	learn: 26.5390008	total: 245ms	remaining: 300ms
45:	learn: 26.3781338	total: 252ms	remaining: 296ms
46:	learn: 26.1763177	total: 258ms	remaining: 291ms
47:	learn: 25.9417647	total: 263ms	remaining: 285ms
48:	learn: 25.7528045	total: 268ms	remaining: 279ms
49:	learn: 25.6336897	total: 274ms	remaining: 274ms
50:	learn: 25.4800426	total: 278ms	remaining: 267ms
51:	learn: 25.2895681	total: 283ms	remaining: 262ms
52:	learn: 25.0827111	total: 289ms	remaining: 256ms
53:	learn: 24.7987678	total: 294ms	remaining: 250ms
54:	learn: 24.6309982	total: 299ms	remaining: 244ms
55:	learn: 24.3526776	total: 304ms	remaining: 239ms
56:	learn: 24.1689125	total: 309ms	remaining: 233ms
57:	learn: 23.9802039	total: 314ms	remaining: 227ms
58:	learn: 23.8059432	total: 319ms	remaining: 222ms
59:	learn: 23.6006403	total: 324ms	remaining: 216ms
60:	learn: 23.2948382	total: 329ms	remaining: 210ms
61:	learn: 23.1338922	total: 335ms	remaining: 205ms
62:	learn: 22.9581269	total: 340ms	remaining: 200ms
63:	learn: 22.8263127	total: 345ms	remaining: 194ms
64:	learn: 22.6966006	total: 351ms	remaining: 189ms
65:	learn: 22.6012389	total: 356ms	remaining: 183ms
66:	learn: 22.4220244	total: 365ms	remaining: 180ms
67:	learn: 22.3148342	total: 374ms	remaining: 176ms
68:	learn: 22.1543592	total: 380ms	remaining: 171ms
69:	learn: 22.0614050	total: 387ms	remaining: 166ms
70:	learn: 21.9134025	total: 392ms	remaining: 160ms
71:	learn: 21.8198101	total: 397ms	remaining: 154ms
72:	learn: 21.6944173	total: 402ms	remaining: 149ms
73:	learn: 21.4727420	total: 407ms	remaining: 143ms
74:	learn: 21.3000560	total: 412ms	remaining: 137ms
75:	learn: 21.1884740	total: 417ms	remaining: 132ms
76:	learn: 21.0321317	total: 422ms	remaining: 126ms
77:	learn: 20.9371793	total: 427ms	remaining: 120ms
78:	learn: 20.6800341	total: 432ms	remaining: 115ms
79:	learn: 20.5629904	total: 437ms	remaining: 109ms
80:	learn: 20.4098217	total: 442ms	remaining: 104ms
81:	learn: 20.2139261	total: 447ms	remaining: 98.1ms
82:	learn: 20.1024260	total: 452ms	remaining: 92.5ms
83:	learn: 19.9835855	total: 456ms	remaining: 86.9ms
84:	learn: 19.9018880	total: 461ms	remaining: 81.4ms
85:	learn: 19.7819843	total: 466ms	remaining: 75.9ms
86:	learn: 19.6352780	total: 471ms	remaining: 70.4ms
87:	learn: 19.4888328	total: 476ms	remaining: 64.9ms
88:	learn: 19.4365121	total: 480ms	remaining: 59.4ms
89:	learn: 19.3427430	total: 485ms	remaining: 53.9ms
90:	learn: 19.2884907	total: 490ms	remaining: 48.5ms
91:	learn: 19.1898932	total: 495ms	remaining: 43ms
92:	learn: 19.0775661	total: 499ms	remaining: 37.6ms
93:	learn: 19.0334055	total: 504ms	remaining: 32.2ms
94:	learn: 18.9381916	total: 509ms	remaining: 26.8ms
95:	learn: 18.8471198	total: 514ms	remaining: 21.4ms
96:	learn: 18.7136478	total: 519ms	remaining: 16ms
97:	learn: 18.6633102	total: 524ms	remaining: 10.7ms
98:	learn: 18.5887516	total: 529ms	remaining: 5.34ms
99:	learn: 18.4841597	total: 534ms	remaining: 0us
0:	learn: 46.2172336	total: 6.23ms	remaining: 617ms
1:	learn: 45.4248871	total: 11.9ms	remaining: 581ms
2:	learn: 44.8702937	total: 18.4ms	remaining: 595ms
3:	learn: 44.2019212	total: 24.9ms	remaining: 596ms
4:	learn: 43.4805210	total: 31.4ms	remaining: 596ms
5:	learn: 42.7336269	total: 37.3ms	remaining: 585ms
6:	learn: 42.0396670	total: 42.9ms	remaining: 571ms
7:	learn: 41.5668459	total: 48.6ms	remaining: 559ms
8:	learn: 40.8999125	total: 55ms	remaining: 557ms
9:	learn: 40.3358512	total: 61.6ms	remaining: 554ms
10:	learn: 39.7511489	total: 66.6ms	remaining: 539ms
11:	learn: 39.0775416	total: 72ms	remaining: 528ms
12:	learn: 38.5204735	total: 77.1ms	remaining: 516ms
13:	learn: 38.2087509	total: 82.1ms	remaining: 505ms
14:	learn: 37.7259552	total: 87ms	remaining: 493ms
15:	learn: 37.1646397	total: 91.8ms	remaining: 482ms
16:	learn: 36.7093520	total: 96.5ms	remaining: 471ms
17:	learn: 36.2212308	total: 101ms	remaining: 461ms
18:	learn: 35.8682156	total: 106ms	remaining: 450ms
19:	learn: 35.6026383	total: 110ms	remaining: 442ms
20:	learn: 35.1739725	total: 115ms	remaining: 433ms
21:	learn: 34.5938003	total: 120ms	remaining: 425ms
22:	learn: 34.1479056	total: 125ms	remaining: 418ms
23:	learn: 33.8759356	total: 130ms	remaining: 410ms
24:	learn: 33.2898426	total: 134ms	remaining: 403ms
25:	learn: 32.9220237	total: 139ms	remaining: 397ms
26:	learn: 32.4324374	total: 145ms	remaining: 391ms
27:	learn: 32.1726327	total: 150ms	remaining: 385ms
28:	learn: 31.8020879	total: 155ms	remaining: 379ms
29:	learn: 31.4329781	total: 160ms	remaining: 373ms
30:	learn: 30.9995282	total: 165ms	remaining: 368ms
31:	learn: 30.6815978	total: 174ms	remaining: 369ms
32:	learn: 30.2991029	total: 183ms	remaining: 372ms
33:	learn: 30.0354202	total: 191ms	remaining: 371ms
34:	learn: 29.7620535	total: 196ms	remaining: 364ms
35:	learn: 29.4552589	total: 202ms	remaining: 360ms
36:	learn: 29.2634399	total: 207ms	remaining: 353ms
37:	learn: 28.8345135	total: 212ms	remaining: 346ms
38:	learn: 28.5551142	total: 217ms	remaining: 339ms
39:	learn: 28.3258809	total: 222ms	remaining: 333ms
40:	learn: 28.0835564	total: 226ms	remaining: 325ms
41:	learn: 27.7517159	total: 231ms	remaining: 319ms
42:	learn: 27.5427595	total: 236ms	remaining: 313ms
43:	learn: 27.3925105	total: 241ms	remaining: 306ms
44:	learn: 27.2377120	total: 246ms	remaining: 300ms
45:	learn: 26.9930398	total: 251ms	remaining: 294ms
46:	learn: 26.7748687	total: 255ms	remaining: 288ms
47:	learn: 26.5856986	total: 260ms	remaining: 282ms
48:	learn: 26.4344153	total: 266ms	remaining: 276ms
49:	learn: 26.3263456	total: 270ms	remaining: 270ms
50:	learn: 26.2048412	total: 275ms	remaining: 264ms
51:	learn: 26.0608546	total: 280ms	remaining: 258ms
52:	learn: 25.9428146	total: 284ms	remaining: 252ms
53:	learn: 25.7578029	total: 289ms	remaining: 246ms
54:	learn: 25.5696792	total: 294ms	remaining: 240ms
55:	learn: 25.3291935	total: 299ms	remaining: 235ms
56:	learn: 25.1388942	total: 304ms	remaining: 229ms
57:	learn: 24.9853945	total: 308ms	remaining: 223ms
58:	learn: 24.8037785	total: 313ms	remaining: 217ms
59:	learn: 24.5326704	total: 318ms	remaining: 212ms
60:	learn: 24.2208240	total: 323ms	remaining: 207ms
61:	learn: 24.0774015	total: 328ms	remaining: 201ms
62:	learn: 23.9705824	total: 333ms	remaining: 196ms
63:	learn: 23.8877665	total: 338ms	remaining: 190ms
64:	learn: 23.7309043	total: 344ms	remaining: 185ms
65:	learn: 23.5820140	total: 349ms	remaining: 180ms
66:	learn: 23.3762012	total: 354ms	remaining: 175ms
67:	learn: 23.2317502	total: 359ms	remaining: 169ms
68:	learn: 23.0868331	total: 365ms	remaining: 164ms
69:	learn: 22.9642758	total: 373ms	remaining: 160ms
70:	learn: 22.8085341	total: 382ms	remaining: 156ms
71:	learn: 22.6834294	total: 393ms	remaining: 153ms
72:	learn: 22.6152922	total: 401ms	remaining: 148ms
73:	learn: 22.3675145	total: 408ms	remaining: 143ms
74:	learn: 22.3023338	total: 413ms	remaining: 138ms
75:	learn: 22.1866833	total: 418ms	remaining: 132ms
76:	learn: 22.0163130	total: 424ms	remaining: 127ms
77:	learn: 21.9691306	total: 429ms	remaining: 121ms
78:	learn: 21.9004647	total: 435ms	remaining: 116ms
79:	learn: 21.7931869	total: 441ms	remaining: 110ms
80:	learn: 21.6747916	total: 447ms	remaining: 105ms
81:	learn: 21.5187568	total: 452ms	remaining: 99.3ms
82:	learn: 21.3124880	total: 458ms	remaining: 93.8ms
83:	learn: 21.1979524	total: 464ms	remaining: 88.4ms
84:	learn: 21.1311130	total: 470ms	remaining: 82.9ms
85:	learn: 21.0606062	total: 475ms	remaining: 77.4ms
86:	learn: 20.9900935	total: 480ms	remaining: 71.7ms
87:	learn: 20.8908054	total: 485ms	remaining: 66.1ms
88:	learn: 20.8088525	total: 489ms	remaining: 60.5ms
89:	learn: 20.7300955	total: 495ms	remaining: 55ms
90:	learn: 20.6130276	total: 500ms	remaining: 49.4ms
91:	learn: 20.5437508	total: 504ms	remaining: 43.9ms
92:	learn: 20.5029426	total: 509ms	remaining: 38.3ms
93:	learn: 20.4416708	total: 514ms	remaining: 32.8ms
94:	learn: 20.3917812	total: 519ms	remaining: 27.3ms
95:	learn: 20.3305024	total: 524ms	remaining: 21.8ms
96:	learn: 20.2375704	total: 529ms	remaining: 16.4ms
97:	learn: 20.1835197	total: 534ms	remaining: 10.9ms
98:	learn: 20.1246834	total: 539ms	remaining: 5.45ms
99:	learn: 20.0506334	total: 544ms	remaining: 0us
0:	learn: 46.7334648	total: 5.16ms	remaining: 511ms
1:	learn: 46.2069876	total: 10.1ms	remaining: 494ms
2:	learn: 45.3699967	total: 14.5ms	remaining: 470ms
3:	learn: 44.6866787	total: 19.6ms	remaining: 469ms
4:	learn: 43.8536031	total: 24.6ms	remaining: 468ms
5:	learn: 43.4716853	total: 29.6ms	remaining: 464ms
6:	learn: 42.9929637	total: 34.5ms	remaining: 458ms
7:	learn: 42.4952169	total: 39.3ms	remaining: 452ms
8:	learn: 41.7548337	total: 44.2ms	remaining: 447ms
9:	learn: 41.1054415	total: 48.9ms	remaining: 440ms
10:	learn: 40.4827492	total: 53.8ms	remaining: 435ms
11:	learn: 39.7605907	total: 58.6ms	remaining: 430ms
12:	learn: 39.2532558	total: 63.5ms	remaining: 425ms
13:	learn: 38.6572753	total: 68.7ms	remaining: 422ms
14:	learn: 38.2886959	total: 73.9ms	remaining: 419ms
15:	learn: 37.7816612	total: 79ms	remaining: 415ms
16:	learn: 37.1680589	total: 84.3ms	remaining: 412ms
17:	learn: 36.5753004	total: 89.4ms	remaining: 407ms
18:	learn: 36.2339458	total: 94.6ms	remaining: 403ms
19:	learn: 35.9159716	total: 99.7ms	remaining: 399ms
20:	learn: 35.4591743	total: 105ms	remaining: 393ms
21:	learn: 34.8726070	total: 110ms	remaining: 389ms
22:	learn: 34.3903591	total: 115ms	remaining: 384ms
23:	learn: 34.1236827	total: 120ms	remaining: 379ms
24:	learn: 33.8026540	total: 125ms	remaining: 374ms
25:	learn: 33.4594822	total: 130ms	remaining: 370ms
26:	learn: 33.1338910	total: 135ms	remaining: 365ms
27:	learn: 32.8527106	total: 140ms	remaining: 361ms
28:	learn: 32.4923829	total: 146ms	remaining: 357ms
29:	learn: 32.0560533	total: 151ms	remaining: 353ms
30:	learn: 31.6614408	total: 157ms	remaining: 348ms
31:	learn: 31.2796040	total: 162ms	remaining: 344ms
32:	learn: 30.8214741	total: 167ms	remaining: 339ms
33:	learn: 30.5908694	total: 172ms	remaining: 335ms
34:	learn: 30.3637356	total: 182ms	remaining: 339ms
35:	learn: 30.0446511	total: 197ms	remaining: 351ms
36:	learn: 29.8792549	total: 206ms	remaining: 351ms
37:	learn: 29.5488457	total: 213ms	remaining: 348ms
38:	learn: 29.2808568	total: 219ms	remaining: 343ms
39:	learn: 29.0603765	total: 225ms	remaining: 338ms
40:	learn: 28.8272425	total: 234ms	remaining: 337ms
41:	learn: 28.4753580	total: 240ms	remaining: 331ms
42:	learn: 28.2963614	total: 246ms	remaining: 326ms
43:	learn: 28.1054768	total: 252ms	remaining: 321ms
44:	learn: 27.9038093	total: 258ms	remaining: 315ms
45:	learn: 27.6305487	total: 264ms	remaining: 310ms
46:	learn: 27.4457907	total: 271ms	remaining: 305ms
47:	learn: 27.1855957	total: 275ms	remaining: 298ms
48:	learn: 26.9987934	total: 280ms	remaining: 292ms
49:	learn: 26.7881067	total: 286ms	remaining: 286ms
50:	learn: 26.6385231	total: 290ms	remaining: 279ms
51:	learn: 26.4661755	total: 295ms	remaining: 272ms
52:	learn: 26.3331868	total: 300ms	remaining: 266ms
53:	learn: 26.0353476	total: 304ms	remaining: 259ms
54:	learn: 25.8257147	total: 309ms	remaining: 253ms
55:	learn: 25.5924383	total: 314ms	remaining: 247ms
56:	learn: 25.4082209	total: 319ms	remaining: 240ms
57:	learn: 25.2350104	total: 323ms	remaining: 234ms
58:	learn: 25.1789867	total: 328ms	remaining: 228ms
59:	learn: 24.9111359	total: 333ms	remaining: 222ms
60:	learn: 24.6314503	total: 338ms	remaining: 216ms
61:	learn: 24.4297999	total: 343ms	remaining: 210ms
62:	learn: 24.3126171	total: 348ms	remaining: 205ms
63:	learn: 24.1544005	total: 353ms	remaining: 199ms
64:	learn: 24.0197950	total: 359ms	remaining: 193ms
65:	learn: 23.8483087	total: 364ms	remaining: 188ms
66:	learn: 23.6624915	total: 369ms	remaining: 182ms
67:	learn: 23.5068105	total: 375ms	remaining: 176ms
68:	learn: 23.4266187	total: 380ms	remaining: 171ms
69:	learn: 23.3535388	total: 385ms	remaining: 165ms
70:	learn: 23.2477190	total: 394ms	remaining: 161ms
71:	learn: 23.1877634	total: 404ms	remaining: 157ms
72:	learn: 23.1344720	total: 413ms	remaining: 153ms
73:	learn: 22.9498234	total: 419ms	remaining: 147ms
74:	learn: 22.9068295	total: 426ms	remaining: 142ms
75:	learn: 22.7368434	total: 432ms	remaining: 136ms
76:	learn: 22.6084901	total: 437ms	remaining: 131ms
77:	learn: 22.4690295	total: 443ms	remaining: 125ms
78:	learn: 22.3970100	total: 448ms	remaining: 119ms
79:	learn: 22.3025537	total: 452ms	remaining: 113ms
80:	learn: 22.2089293	total: 457ms	remaining: 107ms
81:	learn: 22.0522107	total: 462ms	remaining: 102ms
82:	learn: 21.9368213	total: 467ms	remaining: 95.7ms
83:	learn: 21.7968322	total: 473ms	remaining: 90ms
84:	learn: 21.7416164	total: 478ms	remaining: 84.3ms
85:	learn: 21.6031099	total: 482ms	remaining: 78.5ms
86:	learn: 21.4530627	total: 487ms	remaining: 72.8ms
87:	learn: 21.3118417	total: 492ms	remaining: 67ms
88:	learn: 21.2760431	total: 496ms	remaining: 61.3ms
89:	learn: 21.2071350	total: 501ms	remaining: 55.7ms
90:	learn: 21.1051001	total: 506ms	remaining: 50ms
91:	learn: 21.0246142	total: 511ms	remaining: 44.4ms
92:	learn: 20.9834999	total: 515ms	remaining: 38.8ms
93:	learn: 20.8989393	total: 520ms	remaining: 33.2ms
94:	learn: 20.8262231	total: 524ms	remaining: 27.6ms
95:	learn: 20.7369110	total: 529ms	remaining: 22ms
96:	learn: 20.6409587	total: 534ms	remaining: 16.5ms
97:	learn: 20.5553641	total: 538ms	remaining: 11ms
98:	learn: 20.4317232	total: 543ms	remaining: 5.49ms
99:	learn: 20.3708681	total: 548ms	remaining: 0us
0:	learn: 27.3441720	total: 25.3ms	remaining: 2.5s
1:	learn: 26.7159954	total: 49.5ms	remaining: 2.43s
2:	learn: 26.0850318	total: 71.7ms	remaining: 2.32s
3:	learn: 25.4039656	total: 94.6ms	remaining: 2.27s
4:	learn: 24.7930659	total: 117ms	remaining: 2.22s
5:	learn: 24.2028590	total: 139ms	remaining: 2.18s
6:	learn: 23.6622902	total: 161ms	remaining: 2.14s
7:	learn: 23.1531175	total: 180ms	remaining: 2.07s
8:	learn: 22.7050792	total: 201ms	remaining: 2.03s
9:	learn: 22.2151788	total: 220ms	remaining: 1.98s
10:	learn: 21.7708844	total: 240ms	remaining: 1.94s
11:	learn: 21.2587174	total: 262ms	remaining: 1.92s
12:	learn: 20.7559870	total: 284ms	remaining: 1.9s
13:	learn: 20.3040842	total: 311ms	remaining: 1.91s
14:	learn: 19.9019524	total: 333ms	remaining: 1.89s
15:	learn: 19.5186012	total: 354ms	remaining: 1.86s
16:	learn: 19.1521621	total: 375ms	remaining: 1.83s
17:	learn: 18.7652180	total: 396ms	remaining: 1.8s
18:	learn: 18.4446446	total: 415ms	remaining: 1.77s
19:	learn: 18.0977650	total: 436ms	remaining: 1.74s
20:	learn: 17.7791328	total: 458ms	remaining: 1.72s
21:	learn: 17.4777648	total: 480ms	remaining: 1.7s
22:	learn: 17.1794361	total: 504ms	remaining: 1.69s
23:	learn: 16.8685032	total: 536ms	remaining: 1.7s
24:	learn: 16.6274695	total: 560ms	remaining: 1.68s
25:	learn: 16.3071099	total: 584ms	remaining: 1.66s
26:	learn: 16.0249663	total: 608ms	remaining: 1.64s
27:	learn: 15.7535309	total: 632ms	remaining: 1.62s
28:	learn: 15.4777235	total: 654ms	remaining: 1.6s
29:	learn: 15.2410825	total: 677ms	remaining: 1.58s
30:	learn: 15.0133002	total: 701ms	remaining: 1.56s
31:	learn: 14.8018912	total: 725ms	remaining: 1.54s
32:	learn: 14.5701546	total: 752ms	remaining: 1.53s
33:	learn: 14.3799060	total: 773ms	remaining: 1.5s
34:	learn: 14.0975095	total: 796ms	remaining: 1.48s
35:	learn: 13.8873493	total: 818ms	remaining: 1.45s
36:	learn: 13.6812023	total: 840ms	remaining: 1.43s
37:	learn: 13.4943017	total: 862ms	remaining: 1.41s
38:	learn: 13.3224094	total: 882ms	remaining: 1.38s
39:	learn: 13.0967901	total: 905ms	remaining: 1.36s
40:	learn: 12.9138190	total: 928ms	remaining: 1.33s
41:	learn: 12.7764458	total: 960ms	remaining: 1.32s
42:	learn: 12.6593656	total: 986ms	remaining: 1.31s
43:	learn: 12.5051105	total: 1.01s	remaining: 1.28s
44:	learn: 12.3057146	total: 1.03s	remaining: 1.26s
45:	learn: 12.1487674	total: 1.05s	remaining: 1.24s
46:	learn: 11.9614903	total: 1.08s	remaining: 1.21s
47:	learn: 11.7921265	total: 1.1s	remaining: 1.19s
48:	learn: 11.6572640	total: 1.12s	remaining: 1.17s
49:	learn: 11.5251463	total: 1.14s	remaining: 1.14s
50:	learn: 11.3789931	total: 1.16s	remaining: 1.12s
51:	learn: 11.2691375	total: 1.19s	remaining: 1.1s
52:	learn: 11.1161131	total: 1.22s	remaining: 1.08s
53:	learn: 11.0246399	total: 1.24s	remaining: 1.05s
54:	learn: 10.9152420	total: 1.26s	remaining: 1.03s
55:	learn: 10.7746769	total: 1.28s	remaining: 1s
56:	learn: 10.6222917	total: 1.3s	remaining: 980ms
57:	learn: 10.5096115	total: 1.32s	remaining: 956ms
58:	learn: 10.3857030	total: 1.34s	remaining: 931ms
59:	learn: 10.2789057	total: 1.36s	remaining: 907ms
60:	learn: 10.1490749	total: 1.38s	remaining: 885ms
61:	learn: 10.0553291	total: 1.41s	remaining: 867ms
62:	learn: 9.9351043	total: 1.44s	remaining: 844ms
63:	learn: 9.8245261	total: 1.46s	remaining: 821ms
64:	learn: 9.7207577	total: 1.48s	remaining: 798ms
65:	learn: 9.5920661	total: 1.5s	remaining: 775ms
66:	learn: 9.4832767	total: 1.53s	remaining: 752ms
67:	learn: 9.3724149	total: 1.55s	remaining: 728ms
68:	learn: 9.2459801	total: 1.57s	remaining: 705ms
69:	learn: 9.1740635	total: 1.59s	remaining: 682ms
70:	learn: 9.1015730	total: 1.62s	remaining: 661ms
71:	learn: 9.0196460	total: 1.64s	remaining: 639ms
72:	learn: 8.9458977	total: 1.66s	remaining: 615ms
73:	learn: 8.8434400	total: 1.68s	remaining: 592ms
74:	learn: 8.7495151	total: 1.7s	remaining: 568ms
75:	learn: 8.6521348	total: 1.73s	remaining: 545ms
76:	learn: 8.5654483	total: 1.75s	remaining: 522ms
77:	learn: 8.4965765	total: 1.77s	remaining: 499ms
78:	learn: 8.4308736	total: 1.79s	remaining: 476ms
79:	learn: 8.3675601	total: 1.81s	remaining: 453ms
80:	learn: 8.3193887	total: 1.85s	remaining: 433ms
81:	learn: 8.2507990	total: 1.87s	remaining: 411ms
82:	learn: 8.1583259	total: 1.89s	remaining: 388ms
83:	learn: 8.0995902	total: 1.92s	remaining: 365ms
84:	learn: 8.0236655	total: 1.94s	remaining: 342ms
85:	learn: 7.9634698	total: 1.96s	remaining: 319ms
86:	learn: 7.9109081	total: 1.98s	remaining: 296ms
87:	learn: 7.8385006	total: 2.01s	remaining: 274ms
88:	learn: 7.7859488	total: 2.03s	remaining: 251ms
89:	learn: 7.7270142	total: 2.06s	remaining: 228ms
90:	learn: 7.6774253	total: 2.08s	remaining: 205ms
91:	learn: 7.6126552	total: 2.1s	remaining: 182ms
92:	learn: 7.5392178	total: 2.12s	remaining: 159ms
93:	learn: 7.4745082	total: 2.14s	remaining: 136ms
94:	learn: 7.4106939	total: 2.16s	remaining: 114ms
95:	learn: 7.3573350	total: 2.18s	remaining: 90.9ms
96:	learn: 7.2889777	total: 2.2s	remaining: 68.1ms
97:	learn: 7.2204939	total: 2.22s	remaining: 45.4ms
98:	learn: 7.1646465	total: 2.25s	remaining: 22.7ms
99:	learn: 7.1204610	total: 2.28s	remaining: 0us
0:	learn: 42.5494645	total: 24.5ms	remaining: 2.43s
1:	learn: 41.2913513	total: 46.1ms	remaining: 2.26s
2:	learn: 40.1676527	total: 68.2ms	remaining: 2.21s
3:	learn: 38.7664819	total: 89.5ms	remaining: 2.15s
4:	learn: 37.5407492	total: 112ms	remaining: 2.12s
5:	learn: 36.4295331	total: 136ms	remaining: 2.13s
6:	learn: 35.2895967	total: 165ms	remaining: 2.19s
7:	learn: 34.1884539	total: 186ms	remaining: 2.14s
8:	learn: 33.1817690	total: 209ms	remaining: 2.12s
9:	learn: 32.3518195	total: 230ms	remaining: 2.07s
10:	learn: 31.4837515	total: 252ms	remaining: 2.04s
11:	learn: 30.7255972	total: 273ms	remaining: 2s
12:	learn: 29.9298648	total: 297ms	remaining: 1.98s
13:	learn: 29.0574249	total: 319ms	remaining: 1.96s
14:	learn: 28.4097384	total: 343ms	remaining: 1.94s
15:	learn: 27.5317445	total: 373ms	remaining: 1.96s
16:	learn: 26.7911946	total: 397ms	remaining: 1.94s
17:	learn: 26.1103465	total: 417ms	remaining: 1.9s
18:	learn: 25.5295903	total: 440ms	remaining: 1.87s
19:	learn: 24.8544960	total: 463ms	remaining: 1.85s
20:	learn: 24.2772682	total: 485ms	remaining: 1.82s
21:	learn: 23.6936944	total: 507ms	remaining: 1.8s
22:	learn: 23.1300945	total: 529ms	remaining: 1.77s
23:	learn: 22.5333494	total: 552ms	remaining: 1.75s
24:	learn: 22.0553465	total: 575ms	remaining: 1.73s
25:	learn: 21.6253628	total: 608ms	remaining: 1.73s
26:	learn: 21.1396219	total: 631ms	remaining: 1.71s
27:	learn: 20.7382905	total: 656ms	remaining: 1.69s
28:	learn: 20.3233915	total: 679ms	remaining: 1.66s
29:	learn: 19.9323992	total: 702ms	remaining: 1.64s
30:	learn: 19.5650439	total: 723ms	remaining: 1.61s
31:	learn: 19.2165649	total: 744ms	remaining: 1.58s
32:	learn: 18.8890056	total: 766ms	remaining: 1.55s
33:	learn: 18.5523762	total: 788ms	remaining: 1.53s
34:	learn: 18.2666116	total: 817ms	remaining: 1.52s
35:	learn: 17.9216926	total: 842ms	remaining: 1.5s
36:	learn: 17.6118879	total: 862ms	remaining: 1.47s
37:	learn: 17.2653313	total: 882ms	remaining: 1.44s
38:	learn: 16.9946585	total: 902ms	remaining: 1.41s
39:	learn: 16.6842506	total: 924ms	remaining: 1.39s
40:	learn: 16.4102287	total: 944ms	remaining: 1.36s
41:	learn: 16.2288795	total: 963ms	remaining: 1.33s
42:	learn: 15.9623692	total: 985ms	remaining: 1.3s
43:	learn: 15.7308231	total: 1.01s	remaining: 1.28s
44:	learn: 15.4695555	total: 1.04s	remaining: 1.27s
45:	learn: 15.2706809	total: 1.06s	remaining: 1.25s
46:	learn: 15.0182699	total: 1.09s	remaining: 1.23s
47:	learn: 14.7702088	total: 1.11s	remaining: 1.2s
48:	learn: 14.6303566	total: 1.13s	remaining: 1.18s
49:	learn: 14.4038016	total: 1.15s	remaining: 1.15s
50:	learn: 14.2309807	total: 1.17s	remaining: 1.13s
51:	learn: 14.0308425	total: 1.19s	remaining: 1.1s
52:	learn: 13.8201931	total: 1.22s	remaining: 1.08s
53:	learn: 13.6070078	total: 1.25s	remaining: 1.06s
54:	learn: 13.4230690	total: 1.27s	remaining: 1.04s
55:	learn: 13.2368649	total: 1.29s	remaining: 1.01s
56:	learn: 13.0449556	total: 1.32s	remaining: 993ms
57:	learn: 12.8375669	total: 1.34s	remaining: 969ms
58:	learn: 12.6795194	total: 1.36s	remaining: 945ms
59:	learn: 12.5197211	total: 1.38s	remaining: 922ms
60:	learn: 12.4011717	total: 1.41s	remaining: 899ms
61:	learn: 12.2396104	total: 1.43s	remaining: 878ms
62:	learn: 12.0647878	total: 1.46s	remaining: 860ms
63:	learn: 11.9247719	total: 1.49s	remaining: 838ms
64:	learn: 11.7923634	total: 1.51s	remaining: 815ms
65:	learn: 11.6628246	total: 1.54s	remaining: 792ms
66:	learn: 11.5688935	total: 1.56s	remaining: 767ms
67:	learn: 11.4345056	total: 1.58s	remaining: 743ms
68:	learn: 11.3136955	total: 1.6s	remaining: 719ms
69:	learn: 11.2040357	total: 1.62s	remaining: 696ms
70:	learn: 11.1067773	total: 1.65s	remaining: 675ms
71:	learn: 10.9728105	total: 1.68s	remaining: 652ms
72:	learn: 10.8338607	total: 1.7s	remaining: 629ms
73:	learn: 10.7202016	total: 1.72s	remaining: 605ms
74:	learn: 10.5983746	total: 1.74s	remaining: 581ms
75:	learn: 10.4882458	total: 1.76s	remaining: 556ms
76:	learn: 10.3827604	total: 1.78s	remaining: 533ms
77:	learn: 10.2485726	total: 1.8s	remaining: 508ms
78:	learn: 10.1524716	total: 1.82s	remaining: 485ms
79:	learn: 10.0765127	total: 1.85s	remaining: 462ms
80:	learn: 9.9617067	total: 1.87s	remaining: 438ms
81:	learn: 9.8357151	total: 1.9s	remaining: 416ms
82:	learn: 9.7311644	total: 1.92s	remaining: 393ms
83:	learn: 9.6314802	total: 1.94s	remaining: 370ms
84:	learn: 9.5137958	total: 1.96s	remaining: 347ms
85:	learn: 9.4420485	total: 1.99s	remaining: 324ms
86:	learn: 9.3959294	total: 2.01s	remaining: 300ms
87:	learn: 9.3057742	total: 2.03s	remaining: 277ms
88:	learn: 9.2031484	total: 2.05s	remaining: 253ms
89:	learn: 9.0996948	total: 2.07s	remaining: 230ms
90:	learn: 9.0492278	total: 2.1s	remaining: 208ms
91:	learn: 8.9400377	total: 2.12s	remaining: 185ms
92:	learn: 8.8904458	total: 2.14s	remaining: 161ms
93:	learn: 8.8102982	total: 2.16s	remaining: 138ms
94:	learn: 8.7445451	total: 2.18s	remaining: 115ms
95:	learn: 8.6796106	total: 2.21s	remaining: 91.9ms
96:	learn: 8.5875790	total: 2.23s	remaining: 68.9ms
97:	learn: 8.5086871	total: 2.25s	remaining: 45.9ms
98:	learn: 8.4547244	total: 2.27s	remaining: 23ms
99:	learn: 8.3841281	total: 2.3s	remaining: 0us
0:	learn: 46.2258117	total: 3.64ms	remaining: 360ms
1:	learn: 45.1253456	total: 26.2ms	remaining: 1.28s
2:	learn: 43.7311767	total: 47.9ms	remaining: 1.55s
3:	learn: 42.4252819	total: 68.7ms	remaining: 1.65s
4:	learn: 41.1436655	total: 92.3ms	remaining: 1.75s
5:	learn: 40.0337136	total: 116ms	remaining: 1.82s
6:	learn: 38.9102686	total: 139ms	remaining: 1.84s
7:	learn: 37.7859737	total: 166ms	remaining: 1.91s
8:	learn: 36.7646905	total: 189ms	remaining: 1.91s
9:	learn: 35.9495481	total: 210ms	remaining: 1.89s
10:	learn: 35.0558185	total: 232ms	remaining: 1.88s
11:	learn: 34.1958090	total: 254ms	remaining: 1.87s
12:	learn: 33.3514013	total: 276ms	remaining: 1.85s
13:	learn: 32.3317086	total: 298ms	remaining: 1.83s
14:	learn: 31.5611046	total: 320ms	remaining: 1.81s
15:	learn: 30.6373573	total: 343ms	remaining: 1.8s
16:	learn: 29.8883669	total: 373ms	remaining: 1.82s
17:	learn: 29.2985952	total: 399ms	remaining: 1.82s
18:	learn: 28.6360550	total: 423ms	remaining: 1.8s
19:	learn: 27.9757056	total: 447ms	remaining: 1.79s
20:	learn: 27.2585835	total: 470ms	remaining: 1.77s
21:	learn: 26.6366391	total: 492ms	remaining: 1.75s
22:	learn: 26.1055455	total: 516ms	remaining: 1.73s
23:	learn: 25.4961568	total: 539ms	remaining: 1.71s
24:	learn: 25.1037435	total: 569ms	remaining: 1.71s
25:	learn: 24.5258982	total: 593ms	remaining: 1.69s
26:	learn: 23.9974764	total: 613ms	remaining: 1.66s
27:	learn: 23.5108419	total: 635ms	remaining: 1.63s
28:	learn: 23.0835773	total: 657ms	remaining: 1.61s
29:	learn: 22.5744350	total: 679ms	remaining: 1.58s
30:	learn: 22.1357783	total: 700ms	remaining: 1.56s
31:	learn: 21.7316226	total: 720ms	remaining: 1.53s
32:	learn: 21.4082899	total: 741ms	remaining: 1.5s
33:	learn: 20.9640138	total: 764ms	remaining: 1.48s
34:	learn: 20.6379417	total: 787ms	remaining: 1.46s
35:	learn: 20.2688010	total: 822ms	remaining: 1.46s
36:	learn: 19.8479214	total: 846ms	remaining: 1.44s
37:	learn: 19.5684638	total: 868ms	remaining: 1.42s
38:	learn: 19.1826919	total: 892ms	remaining: 1.4s
39:	learn: 18.9583308	total: 915ms	remaining: 1.37s
40:	learn: 18.6736002	total: 938ms	remaining: 1.35s
41:	learn: 18.3525328	total: 958ms	remaining: 1.32s
42:	learn: 17.9954191	total: 986ms	remaining: 1.31s
43:	learn: 17.6991520	total: 1.01s	remaining: 1.29s
44:	learn: 17.3697888	total: 1.03s	remaining: 1.26s
45:	learn: 17.0519636	total: 1.06s	remaining: 1.24s
46:	learn: 16.7829795	total: 1.08s	remaining: 1.22s
47:	learn: 16.5108695	total: 1.1s	remaining: 1.19s
48:	learn: 16.2366816	total: 1.12s	remaining: 1.17s
49:	learn: 15.9947350	total: 1.14s	remaining: 1.14s
50:	learn: 15.7513561	total: 1.17s	remaining: 1.12s
51:	learn: 15.4328481	total: 1.19s	remaining: 1.09s
52:	learn: 15.2497907	total: 1.21s	remaining: 1.07s
53:	learn: 15.0417076	total: 1.24s	remaining: 1.06s
54:	learn: 14.8861891	total: 1.27s	remaining: 1.04s
55:	learn: 14.6497794	total: 1.29s	remaining: 1.01s
56:	learn: 14.3664771	total: 1.31s	remaining: 989ms
57:	learn: 14.2358168	total: 1.33s	remaining: 966ms
58:	learn: 14.0712722	total: 1.35s	remaining: 940ms
59:	learn: 13.9191649	total: 1.37s	remaining: 916ms
60:	learn: 13.7032356	total: 1.39s	remaining: 892ms
61:	learn: 13.5029041	total: 1.42s	remaining: 869ms
62:	learn: 13.3568908	total: 1.45s	remaining: 849ms
63:	learn: 13.1332696	total: 1.47s	remaining: 827ms
64:	learn: 13.0323137	total: 1.49s	remaining: 803ms
65:	learn: 12.8622078	total: 1.51s	remaining: 780ms
66:	learn: 12.7088186	total: 1.53s	remaining: 755ms
67:	learn: 12.5524646	total: 1.55s	remaining: 732ms
68:	learn: 12.4646011	total: 1.58s	remaining: 708ms
69:	learn: 12.3900687	total: 1.59s	remaining: 684ms
70:	learn: 12.2908367	total: 1.62s	remaining: 661ms
71:	learn: 12.1294405	total: 1.64s	remaining: 638ms
72:	learn: 12.0359996	total: 1.67s	remaining: 617ms
73:	learn: 11.9244352	total: 1.69s	remaining: 595ms
74:	learn: 11.8312038	total: 1.72s	remaining: 572ms
75:	learn: 11.6622123	total: 1.74s	remaining: 549ms
76:	learn: 11.5959180	total: 1.76s	remaining: 527ms
77:	learn: 11.4538852	total: 1.78s	remaining: 503ms
78:	learn: 11.3700375	total: 1.8s	remaining: 480ms
79:	learn: 11.2101447	total: 1.83s	remaining: 457ms
80:	learn: 11.0614634	total: 1.85s	remaining: 434ms
81:	learn: 10.9029225	total: 1.87s	remaining: 411ms
82:	learn: 10.7792030	total: 1.9s	remaining: 389ms
83:	learn: 10.6279451	total: 1.92s	remaining: 366ms
84:	learn: 10.5530267	total: 1.94s	remaining: 342ms
85:	learn: 10.4577150	total: 1.96s	remaining: 319ms
86:	learn: 10.4076417	total: 1.98s	remaining: 296ms
87:	learn: 10.3166632	total: 2s	remaining: 273ms
88:	learn: 10.2018151	total: 2.02s	remaining: 249ms
89:	learn: 10.0698484	total: 2.04s	remaining: 226ms
90:	learn: 10.0162824	total: 2.06s	remaining: 204ms
91:	learn: 9.9352639	total: 2.08s	remaining: 181ms
92:	learn: 9.8316734	total: 2.11s	remaining: 159ms
93:	learn: 9.7195471	total: 2.14s	remaining: 137ms
94:	learn: 9.5914894	total: 2.16s	remaining: 114ms
95:	learn: 9.5151851	total: 2.19s	remaining: 91ms
96:	learn: 9.3911314	total: 2.21s	remaining: 68.3ms
97:	learn: 9.3417706	total: 2.23s	remaining: 45.5ms
98:	learn: 9.2708440	total: 2.25s	remaining: 22.7ms
99:	learn: 9.1660321	total: 2.27s	remaining: 0us
0:	learn: 45.8627255	total: 2.57ms	remaining: 255ms
1:	learn: 44.7432040	total: 23.7ms	remaining: 1.16s
2:	learn: 43.4398568	total: 44.9ms	remaining: 1.45s
3:	learn: 42.1495515	total: 67.1ms	remaining: 1.61s
4:	learn: 40.9712633	total: 87.1ms	remaining: 1.66s
5:	learn: 40.0119591	total: 108ms	remaining: 1.69s
6:	learn: 39.1914360	total: 129ms	remaining: 1.72s
7:	learn: 38.1861536	total: 152ms	remaining: 1.75s
8:	learn: 37.1477128	total: 175ms	remaining: 1.77s
9:	learn: 36.3044702	total: 206ms	remaining: 1.85s
10:	learn: 35.5837917	total: 231ms	remaining: 1.87s
11:	learn: 34.8664158	total: 256ms	remaining: 1.88s
12:	learn: 33.9129833	total: 280ms	remaining: 1.87s
13:	learn: 32.9094642	total: 305ms	remaining: 1.87s
14:	learn: 32.1965787	total: 326ms	remaining: 1.85s
15:	learn: 31.4598238	total: 349ms	remaining: 1.83s
16:	learn: 30.6578027	total: 373ms	remaining: 1.82s
17:	learn: 30.0227468	total: 402ms	remaining: 1.83s
18:	learn: 29.2954728	total: 425ms	remaining: 1.81s
19:	learn: 28.5928084	total: 446ms	remaining: 1.78s
20:	learn: 27.9445984	total: 468ms	remaining: 1.76s
21:	learn: 27.3493298	total: 489ms	remaining: 1.73s
22:	learn: 26.8491966	total: 511ms	remaining: 1.71s
23:	learn: 26.3177453	total: 532ms	remaining: 1.68s
24:	learn: 25.8134533	total: 553ms	remaining: 1.66s
25:	learn: 25.2000018	total: 575ms	remaining: 1.64s
26:	learn: 24.6570461	total: 599ms	remaining: 1.62s
27:	learn: 24.1062982	total: 626ms	remaining: 1.61s
28:	learn: 23.7489370	total: 651ms	remaining: 1.59s
29:	learn: 23.2050536	total: 674ms	remaining: 1.57s
30:	learn: 22.7824379	total: 697ms	remaining: 1.55s
31:	learn: 22.4052655	total: 721ms	remaining: 1.53s
32:	learn: 21.9525639	total: 745ms	remaining: 1.51s
33:	learn: 21.5482900	total: 769ms	remaining: 1.49s
34:	learn: 21.1900983	total: 791ms	remaining: 1.47s
35:	learn: 20.8243957	total: 813ms	remaining: 1.45s
36:	learn: 20.4401288	total: 835ms	remaining: 1.42s
37:	learn: 20.0960622	total: 867ms	remaining: 1.41s
38:	learn: 19.7795108	total: 888ms	remaining: 1.39s
39:	learn: 19.4922451	total: 910ms	remaining: 1.36s
40:	learn: 19.1827582	total: 932ms	remaining: 1.34s
41:	learn: 18.8902445	total: 951ms	remaining: 1.31s
42:	learn: 18.6833086	total: 974ms	remaining: 1.29s
43:	learn: 18.4251972	total: 995ms	remaining: 1.27s
44:	learn: 18.1471037	total: 1.02s	remaining: 1.24s
45:	learn: 17.8420017	total: 1.04s	remaining: 1.22s
46:	learn: 17.6101998	total: 1.07s	remaining: 1.2s
47:	learn: 17.3353656	total: 1.09s	remaining: 1.18s
48:	learn: 17.1194789	total: 1.11s	remaining: 1.16s
49:	learn: 16.8898454	total: 1.14s	remaining: 1.14s
50:	learn: 16.6657497	total: 1.16s	remaining: 1.12s
51:	learn: 16.3832867	total: 1.18s	remaining: 1.09s
52:	learn: 16.2098226	total: 1.21s	remaining: 1.07s
53:	learn: 16.0045707	total: 1.23s	remaining: 1.04s
54:	learn: 15.8512887	total: 1.25s	remaining: 1.02s
55:	learn: 15.6485628	total: 1.27s	remaining: 999ms
56:	learn: 15.4841428	total: 1.3s	remaining: 981ms
57:	learn: 15.3383158	total: 1.32s	remaining: 957ms
58:	learn: 15.2056282	total: 1.34s	remaining: 933ms
59:	learn: 15.0698337	total: 1.36s	remaining: 909ms
60:	learn: 14.8487796	total: 1.38s	remaining: 884ms
61:	learn: 14.7255751	total: 1.4s	remaining: 860ms
62:	learn: 14.6100414	total: 1.42s	remaining: 836ms
63:	learn: 14.3864212	total: 1.45s	remaining: 814ms
64:	learn: 14.2800460	total: 1.47s	remaining: 791ms
65:	learn: 14.1017299	total: 1.5s	remaining: 773ms
66:	learn: 13.9655015	total: 1.52s	remaining: 751ms
67:	learn: 13.8065764	total: 1.55s	remaining: 729ms
68:	learn: 13.7473285	total: 1.57s	remaining: 707ms
69:	learn: 13.6967309	total: 1.6s	remaining: 685ms
70:	learn: 13.6253255	total: 1.62s	remaining: 661ms
71:	learn: 13.4974926	total: 1.64s	remaining: 638ms
72:	learn: 13.4142694	total: 1.66s	remaining: 615ms
73:	learn: 13.2902600	total: 1.69s	remaining: 592ms
74:	learn: 13.1816461	total: 1.71s	remaining: 571ms
75:	learn: 13.0809498	total: 1.73s	remaining: 548ms
76:	learn: 12.9772285	total: 1.75s	remaining: 524ms
77:	learn: 12.8413858	total: 1.78s	remaining: 501ms
78:	learn: 12.7615799	total: 1.79s	remaining: 477ms
79:	learn: 12.5808659	total: 1.82s	remaining: 454ms
80:	learn: 12.4938330	total: 1.83s	remaining: 431ms
81:	learn: 12.3745576	total: 1.86s	remaining: 408ms
82:	learn: 12.2474104	total: 1.88s	remaining: 385ms
83:	learn: 12.1582297	total: 1.91s	remaining: 364ms
84:	learn: 12.0528081	total: 1.94s	remaining: 342ms
85:	learn: 11.9483355	total: 1.96s	remaining: 319ms
86:	learn: 11.8683204	total: 1.98s	remaining: 296ms
87:	learn: 11.7680945	total: 2s	remaining: 273ms
88:	learn: 11.6635447	total: 2.03s	remaining: 251ms
89:	learn: 11.5775031	total: 2.05s	remaining: 227ms
90:	learn: 11.4860538	total: 2.07s	remaining: 204ms
91:	learn: 11.3584960	total: 2.09s	remaining: 182ms
92:	learn: 11.2180285	total: 2.11s	remaining: 159ms
93:	learn: 11.0996558	total: 2.14s	remaining: 136ms
94:	learn: 10.9688832	total: 2.16s	remaining: 114ms
95:	learn: 10.9205457	total: 2.18s	remaining: 90.9ms
96:	learn: 10.8462783	total: 2.2s	remaining: 68.1ms
97:	learn: 10.7481890	total: 2.22s	remaining: 45.3ms
98:	learn: 10.6396315	total: 2.24s	remaining: 22.6ms
99:	learn: 10.5895308	total: 2.26s	remaining: 0us
0:	learn: 46.2892189	total: 21.6ms	remaining: 2.13s
1:	learn: 44.9732744	total: 45.1ms	remaining: 2.21s
2:	learn: 43.8887345	total: 73.5ms	remaining: 2.38s
3:	learn: 42.6526320	total: 97.1ms	remaining: 2.33s
4:	learn: 41.4812505	total: 119ms	remaining: 2.27s
5:	learn: 40.4431224	total: 141ms	remaining: 2.21s
6:	learn: 39.2936749	total: 162ms	remaining: 2.16s
7:	learn: 38.1961652	total: 183ms	remaining: 2.1s
8:	learn: 37.2194841	total: 203ms	remaining: 2.05s
9:	learn: 36.2518666	total: 222ms	remaining: 2s
10:	learn: 35.4919224	total: 243ms	remaining: 1.97s
11:	learn: 34.6975877	total: 271ms	remaining: 1.99s
12:	learn: 33.7869362	total: 296ms	remaining: 1.98s
13:	learn: 33.0646033	total: 318ms	remaining: 1.95s
14:	learn: 32.1821772	total: 339ms	remaining: 1.92s
15:	learn: 31.4340749	total: 360ms	remaining: 1.89s
16:	learn: 30.6504198	total: 382ms	remaining: 1.87s
17:	learn: 30.0090260	total: 403ms	remaining: 1.84s
18:	learn: 29.4233143	total: 426ms	remaining: 1.81s
19:	learn: 28.7661957	total: 446ms	remaining: 1.78s
20:	learn: 28.1570594	total: 468ms	remaining: 1.76s
21:	learn: 27.6140124	total: 501ms	remaining: 1.78s
22:	learn: 27.0130709	total: 526ms	remaining: 1.76s
23:	learn: 26.2648081	total: 549ms	remaining: 1.74s
24:	learn: 25.7963649	total: 572ms	remaining: 1.72s
25:	learn: 25.2713860	total: 595ms	remaining: 1.69s
26:	learn: 24.8080692	total: 617ms	remaining: 1.67s
27:	learn: 24.3042862	total: 638ms	remaining: 1.64s
28:	learn: 23.9097237	total: 659ms	remaining: 1.61s
29:	learn: 23.4953174	total: 682ms	remaining: 1.59s
30:	learn: 23.0484452	total: 705ms	remaining: 1.57s
31:	learn: 22.7100962	total: 730ms	remaining: 1.55s
32:	learn: 22.1662267	total: 752ms	remaining: 1.53s
33:	learn: 21.7339884	total: 773ms	remaining: 1.5s
34:	learn: 21.3699422	total: 792ms	remaining: 1.47s
35:	learn: 21.0249329	total: 811ms	remaining: 1.44s
36:	learn: 20.6187923	total: 832ms	remaining: 1.42s
37:	learn: 20.2401981	total: 853ms	remaining: 1.39s
38:	learn: 19.9712328	total: 876ms	remaining: 1.37s
39:	learn: 19.6429610	total: 900ms	remaining: 1.35s
40:	learn: 19.3281556	total: 931ms	remaining: 1.34s
41:	learn: 19.0925924	total: 957ms	remaining: 1.32s
42:	learn: 18.8118712	total: 979ms	remaining: 1.3s
43:	learn: 18.5355748	total: 1s	remaining: 1.28s
44:	learn: 18.2783929	total: 1.03s	remaining: 1.25s
45:	learn: 17.9915490	total: 1.05s	remaining: 1.23s
46:	learn: 17.7323317	total: 1.07s	remaining: 1.2s
47:	learn: 17.4448307	total: 1.09s	remaining: 1.18s
48:	learn: 17.2419782	total: 1.11s	remaining: 1.16s
49:	learn: 16.9351352	total: 1.14s	remaining: 1.14s
50:	learn: 16.7728723	total: 1.17s	remaining: 1.12s
51:	learn: 16.5718087	total: 1.19s	remaining: 1.1s
52:	learn: 16.4047483	total: 1.21s	remaining: 1.07s
53:	learn: 16.2888950	total: 1.23s	remaining: 1.05s
54:	learn: 16.1353042	total: 1.25s	remaining: 1.02s
55:	learn: 15.9384012	total: 1.27s	remaining: 999ms
56:	learn: 15.7488511	total: 1.29s	remaining: 976ms
57:	learn: 15.5682846	total: 1.32s	remaining: 953ms
58:	learn: 15.3488716	total: 1.35s	remaining: 939ms
59:	learn: 15.2291272	total: 1.38s	remaining: 918ms
60:	learn: 15.0582519	total: 1.4s	remaining: 896ms
61:	learn: 14.8478458	total: 1.43s	remaining: 874ms
62:	learn: 14.6663416	total: 1.45s	remaining: 852ms
63:	learn: 14.4830825	total: 1.47s	remaining: 829ms
64:	learn: 14.3300895	total: 1.5s	remaining: 806ms
65:	learn: 14.1168590	total: 1.52s	remaining: 782ms
66:	learn: 13.9783298	total: 1.54s	remaining: 759ms
67:	learn: 13.8132857	total: 1.57s	remaining: 737ms
68:	learn: 13.7050863	total: 1.59s	remaining: 716ms
69:	learn: 13.5742501	total: 1.62s	remaining: 693ms
70:	learn: 13.4851362	total: 1.64s	remaining: 669ms
71:	learn: 13.3300610	total: 1.66s	remaining: 646ms
72:	learn: 13.2223060	total: 1.68s	remaining: 622ms
73:	learn: 13.0706731	total: 1.7s	remaining: 598ms
74:	learn: 12.9178099	total: 1.72s	remaining: 575ms
75:	learn: 12.7954645	total: 1.75s	remaining: 552ms
76:	learn: 12.7133688	total: 1.77s	remaining: 529ms
77:	learn: 12.5745537	total: 1.8s	remaining: 508ms
78:	learn: 12.4765302	total: 1.83s	remaining: 485ms
79:	learn: 12.3609145	total: 1.85s	remaining: 463ms
80:	learn: 12.2437759	total: 1.87s	remaining: 440ms
81:	learn: 12.1583763	total: 1.9s	remaining: 417ms
82:	learn: 12.0202500	total: 1.92s	remaining: 393ms
83:	learn: 11.9125166	total: 1.94s	remaining: 370ms
84:	learn: 11.8100729	total: 1.96s	remaining: 347ms
85:	learn: 11.7509521	total: 1.99s	remaining: 324ms
86:	learn: 11.6448436	total: 2.02s	remaining: 302ms
87:	learn: 11.5550170	total: 2.04s	remaining: 278ms
88:	learn: 11.4624708	total: 2.06s	remaining: 255ms
89:	learn: 11.3547761	total: 2.08s	remaining: 232ms
90:	learn: 11.2513910	total: 2.11s	remaining: 208ms
91:	learn: 11.1414483	total: 2.13s	remaining: 185ms
92:	learn: 11.0742264	total: 2.15s	remaining: 162ms
93:	learn: 10.9721772	total: 2.17s	remaining: 139ms
94:	learn: 10.9118054	total: 2.2s	remaining: 116ms
95:	learn: 10.8465290	total: 2.23s	remaining: 92.7ms
96:	learn: 10.7451745	total: 2.25s	remaining: 69.6ms
97:	learn: 10.6173565	total: 2.27s	remaining: 46.4ms
98:	learn: 10.5562158	total: 2.3s	remaining: 23.2ms
99:	learn: 10.4564960	total: 2.32s	remaining: 0us
0:	learn: 27.6506730	total: 4.6ms	remaining: 455ms
1:	learn: 27.1638793	total: 9.56ms	remaining: 469ms
2:	learn: 26.8000665	total: 14.7ms	remaining: 477ms
3:	learn: 26.4256132	total: 20.1ms	remaining: 483ms
4:	learn: 26.0088351	total: 25.3ms	remaining: 480ms
5:	learn: 25.7558298	total: 30.2ms	remaining: 474ms
6:	learn: 25.3380711	total: 35.3ms	remaining: 468ms
7:	learn: 25.0571611	total: 40.9ms	remaining: 470ms
8:	learn: 24.6790148	total: 49.2ms	remaining: 498ms
9:	learn: 24.3600941	total: 57ms	remaining: 513ms
10:	learn: 24.1105667	total: 64.3ms	remaining: 520ms
11:	learn: 23.7736542	total: 69.1ms	remaining: 507ms
12:	learn: 23.5824429	total: 75.1ms	remaining: 502ms
13:	learn: 23.2658303	total: 79.6ms	remaining: 489ms
14:	learn: 23.0061886	total: 84.2ms	remaining: 477ms
15:	learn: 22.8060389	total: 88.8ms	remaining: 466ms
16:	learn: 22.5899735	total: 93.3ms	remaining: 456ms
17:	learn: 22.3625048	total: 97.7ms	remaining: 445ms
18:	learn: 22.0706477	total: 102ms	remaining: 436ms
19:	learn: 21.8739394	total: 107ms	remaining: 428ms
20:	learn: 21.6143650	total: 111ms	remaining: 418ms
21:	learn: 21.4571623	total: 116ms	remaining: 410ms
22:	learn: 21.2395769	total: 120ms	remaining: 401ms
23:	learn: 20.9801795	total: 124ms	remaining: 394ms
24:	learn: 20.8036808	total: 129ms	remaining: 386ms
25:	learn: 20.6387539	total: 133ms	remaining: 378ms
26:	learn: 20.4401427	total: 137ms	remaining: 371ms
27:	learn: 20.2879575	total: 142ms	remaining: 364ms
28:	learn: 20.0538664	total: 146ms	remaining: 358ms
29:	learn: 19.8363102	total: 151ms	remaining: 352ms
30:	learn: 19.7015446	total: 155ms	remaining: 345ms
31:	learn: 19.5483114	total: 160ms	remaining: 339ms
32:	learn: 19.4163053	total: 164ms	remaining: 333ms
33:	learn: 19.2880625	total: 169ms	remaining: 327ms
34:	learn: 19.1303389	total: 173ms	remaining: 322ms
35:	learn: 18.9237448	total: 178ms	remaining: 316ms
36:	learn: 18.8142925	total: 182ms	remaining: 310ms
37:	learn: 18.6994696	total: 187ms	remaining: 305ms
38:	learn: 18.5629211	total: 191ms	remaining: 299ms
39:	learn: 18.4600917	total: 196ms	remaining: 294ms
40:	learn: 18.3567139	total: 200ms	remaining: 287ms
41:	learn: 18.2120527	total: 204ms	remaining: 282ms
42:	learn: 18.0688062	total: 208ms	remaining: 276ms
43:	learn: 17.9250181	total: 213ms	remaining: 272ms
44:	learn: 17.8399138	total: 218ms	remaining: 267ms
45:	learn: 17.6720713	total: 222ms	remaining: 261ms
46:	learn: 17.5273091	total: 227ms	remaining: 256ms
47:	learn: 17.4232814	total: 232ms	remaining: 252ms
48:	learn: 17.2957579	total: 237ms	remaining: 246ms
49:	learn: 17.1892874	total: 241ms	remaining: 241ms
50:	learn: 17.0490355	total: 246ms	remaining: 236ms
51:	learn: 16.9666450	total: 251ms	remaining: 231ms
52:	learn: 16.8600056	total: 256ms	remaining: 227ms
53:	learn: 16.7542588	total: 265ms	remaining: 225ms
54:	learn: 16.6316077	total: 273ms	remaining: 224ms
55:	learn: 16.5588112	total: 282ms	remaining: 222ms
56:	learn: 16.5010186	total: 290ms	remaining: 219ms
57:	learn: 16.4081540	total: 295ms	remaining: 214ms
58:	learn: 16.3040451	total: 300ms	remaining: 209ms
59:	learn: 16.1890564	total: 306ms	remaining: 204ms
60:	learn: 16.0977103	total: 311ms	remaining: 199ms
61:	learn: 15.9627607	total: 317ms	remaining: 194ms
62:	learn: 15.9022248	total: 323ms	remaining: 190ms
63:	learn: 15.8151881	total: 328ms	remaining: 185ms
64:	learn: 15.7353125	total: 334ms	remaining: 180ms
65:	learn: 15.6312897	total: 340ms	remaining: 175ms
66:	learn: 15.5330927	total: 345ms	remaining: 170ms
67:	learn: 15.4698681	total: 350ms	remaining: 165ms
68:	learn: 15.4108571	total: 356ms	remaining: 160ms
69:	learn: 15.3492945	total: 360ms	remaining: 154ms
70:	learn: 15.3036540	total: 365ms	remaining: 149ms
71:	learn: 15.2390833	total: 369ms	remaining: 144ms
72:	learn: 15.1556327	total: 374ms	remaining: 138ms
73:	learn: 15.1016315	total: 378ms	remaining: 133ms
74:	learn: 15.0287076	total: 383ms	remaining: 128ms
75:	learn: 14.9530572	total: 387ms	remaining: 122ms
76:	learn: 14.8965517	total: 392ms	remaining: 117ms
77:	learn: 14.8125426	total: 396ms	remaining: 112ms
78:	learn: 14.7435359	total: 401ms	remaining: 107ms
79:	learn: 14.6963163	total: 405ms	remaining: 101ms
80:	learn: 14.6200060	total: 410ms	remaining: 96.1ms
81:	learn: 14.5707760	total: 414ms	remaining: 91ms
82:	learn: 14.5053651	total: 419ms	remaining: 85.8ms
83:	learn: 14.4115458	total: 424ms	remaining: 80.8ms
84:	learn: 14.3117159	total: 429ms	remaining: 75.6ms
85:	learn: 14.2511326	total: 433ms	remaining: 70.5ms
86:	learn: 14.1372486	total: 438ms	remaining: 65.5ms
87:	learn: 14.0992301	total: 443ms	remaining: 60.4ms
88:	learn: 14.0228331	total: 447ms	remaining: 55.3ms
89:	learn: 13.9249836	total: 452ms	remaining: 50.2ms
90:	learn: 13.8679364	total: 457ms	remaining: 45.2ms
91:	learn: 13.8405578	total: 461ms	remaining: 40.1ms
92:	learn: 13.7711325	total: 466ms	remaining: 35.1ms
93:	learn: 13.7357019	total: 474ms	remaining: 30.3ms
94:	learn: 13.6735271	total: 482ms	remaining: 25.4ms
95:	learn: 13.5682393	total: 490ms	remaining: 20.4ms
96:	learn: 13.5342610	total: 494ms	remaining: 15.3ms
97:	learn: 13.4710034	total: 500ms	remaining: 10.2ms
98:	learn: 13.4022402	total: 505ms	remaining: 5.1ms
99:	learn: 13.3351238	total: 509ms	remaining: 0us
0:	learn: 42.9181702	total: 4.99ms	remaining: 494ms
1:	learn: 42.0286736	total: 9.68ms	remaining: 474ms
2:	learn: 41.2764568	total: 14.3ms	remaining: 462ms
3:	learn: 40.4721918	total: 18.7ms	remaining: 448ms
4:	learn: 39.8518928	total: 23ms	remaining: 437ms
5:	learn: 39.2645479	total: 27.6ms	remaining: 433ms
6:	learn: 38.4453704	total: 31.8ms	remaining: 423ms
7:	learn: 37.7122059	total: 36.4ms	remaining: 418ms
8:	learn: 36.9185796	total: 41.3ms	remaining: 417ms
9:	learn: 36.1668427	total: 46.3ms	remaining: 416ms
10:	learn: 35.5639029	total: 50.6ms	remaining: 410ms
11:	learn: 34.7724193	total: 55.4ms	remaining: 406ms
12:	learn: 34.3053433	total: 60ms	remaining: 402ms
13:	learn: 33.6561327	total: 61.3ms	remaining: 377ms
14:	learn: 33.0134042	total: 65.8ms	remaining: 373ms
15:	learn: 32.4483300	total: 70.4ms	remaining: 370ms
16:	learn: 31.8581144	total: 75.2ms	remaining: 367ms
17:	learn: 31.2858301	total: 79.9ms	remaining: 364ms
18:	learn: 30.8483018	total: 84.9ms	remaining: 362ms
19:	learn: 30.4174622	total: 89.8ms	remaining: 359ms
20:	learn: 29.8994411	total: 94.8ms	remaining: 357ms
21:	learn: 29.5045355	total: 100ms	remaining: 355ms
22:	learn: 28.9923519	total: 105ms	remaining: 350ms
23:	learn: 28.4255717	total: 110ms	remaining: 347ms
24:	learn: 28.0283139	total: 115ms	remaining: 345ms
25:	learn: 27.7434814	total: 124ms	remaining: 352ms
26:	learn: 27.2770731	total: 133ms	remaining: 361ms
27:	learn: 26.8928270	total: 140ms	remaining: 361ms
28:	learn: 26.4282671	total: 149ms	remaining: 365ms
29:	learn: 26.0272764	total: 155ms	remaining: 361ms
30:	learn: 25.7579312	total: 160ms	remaining: 356ms
31:	learn: 25.4542434	total: 165ms	remaining: 352ms
32:	learn: 25.1232564	total: 171ms	remaining: 347ms
33:	learn: 24.8110795	total: 176ms	remaining: 342ms
34:	learn: 24.5077579	total: 182ms	remaining: 337ms
35:	learn: 24.1909000	total: 187ms	remaining: 332ms
36:	learn: 23.8719468	total: 192ms	remaining: 328ms
37:	learn: 23.5764366	total: 194ms	remaining: 316ms
38:	learn: 23.3468086	total: 199ms	remaining: 311ms
39:	learn: 23.0908771	total: 204ms	remaining: 306ms
40:	learn: 22.8580876	total: 210ms	remaining: 302ms
41:	learn: 22.6060825	total: 216ms	remaining: 298ms
42:	learn: 22.4125407	total: 221ms	remaining: 293ms
43:	learn: 22.1990617	total: 225ms	remaining: 287ms
44:	learn: 21.9716164	total: 230ms	remaining: 281ms
45:	learn: 21.8360935	total: 234ms	remaining: 275ms
46:	learn: 21.6169256	total: 239ms	remaining: 270ms
47:	learn: 21.4620612	total: 244ms	remaining: 264ms
48:	learn: 21.2894194	total: 248ms	remaining: 258ms
49:	learn: 21.1066266	total: 253ms	remaining: 253ms
50:	learn: 20.9484898	total: 257ms	remaining: 247ms
51:	learn: 20.7195338	total: 261ms	remaining: 241ms
52:	learn: 20.4899740	total: 266ms	remaining: 236ms
53:	learn: 20.3356583	total: 271ms	remaining: 231ms
54:	learn: 20.0754393	total: 276ms	remaining: 226ms
55:	learn: 19.9199159	total: 280ms	remaining: 220ms
56:	learn: 19.7761128	total: 285ms	remaining: 215ms
57:	learn: 19.6533060	total: 290ms	remaining: 210ms
58:	learn: 19.5113942	total: 295ms	remaining: 205ms
59:	learn: 19.3985022	total: 300ms	remaining: 200ms
60:	learn: 19.2683443	total: 305ms	remaining: 195ms
61:	learn: 19.1460824	total: 309ms	remaining: 189ms
62:	learn: 19.0042655	total: 314ms	remaining: 185ms
63:	learn: 18.8720873	total: 322ms	remaining: 181ms
64:	learn: 18.7183888	total: 330ms	remaining: 178ms
65:	learn: 18.5472360	total: 336ms	remaining: 173ms
66:	learn: 18.3976642	total: 341ms	remaining: 168ms
67:	learn: 18.2282851	total: 347ms	remaining: 163ms
68:	learn: 18.1469157	total: 351ms	remaining: 158ms
69:	learn: 18.0649494	total: 355ms	remaining: 152ms
70:	learn: 17.9485405	total: 360ms	remaining: 147ms
71:	learn: 17.8460261	total: 364ms	remaining: 142ms
72:	learn: 17.7679843	total: 369ms	remaining: 136ms
73:	learn: 17.5989290	total: 373ms	remaining: 131ms
74:	learn: 17.4381322	total: 377ms	remaining: 126ms
75:	learn: 17.3370886	total: 382ms	remaining: 121ms
76:	learn: 17.2675308	total: 386ms	remaining: 115ms
77:	learn: 17.1946430	total: 390ms	remaining: 110ms
78:	learn: 17.0923725	total: 395ms	remaining: 105ms
79:	learn: 17.0537265	total: 400ms	remaining: 100ms
80:	learn: 16.9456831	total: 404ms	remaining: 94.8ms
81:	learn: 16.8457353	total: 409ms	remaining: 89.8ms
82:	learn: 16.7469310	total: 414ms	remaining: 84.7ms
83:	learn: 16.6679953	total: 418ms	remaining: 79.6ms
84:	learn: 16.6274189	total: 422ms	remaining: 74.5ms
85:	learn: 16.5516530	total: 427ms	remaining: 69.5ms
86:	learn: 16.4886066	total: 432ms	remaining: 64.5ms
87:	learn: 16.3947859	total: 437ms	remaining: 59.6ms
88:	learn: 16.3406495	total: 442ms	remaining: 54.6ms
89:	learn: 16.3019195	total: 447ms	remaining: 49.6ms
90:	learn: 16.1860681	total: 451ms	remaining: 44.6ms
91:	learn: 16.1282812	total: 456ms	remaining: 39.7ms
92:	learn: 16.0303652	total: 461ms	remaining: 34.7ms
93:	learn: 15.9561692	total: 466ms	remaining: 29.7ms
94:	learn: 15.8733994	total: 470ms	remaining: 24.7ms
95:	learn: 15.8108833	total: 474ms	remaining: 19.8ms
96:	learn: 15.7606004	total: 479ms	remaining: 14.8ms
97:	learn: 15.6984664	total: 483ms	remaining: 9.86ms
98:	learn: 15.6223632	total: 487ms	remaining: 4.92ms
99:	learn: 15.5671136	total: 491ms	remaining: 0us
0:	learn: 46.4788614	total: 2.5ms	remaining: 248ms
1:	learn: 45.7608372	total: 9.21ms	remaining: 451ms
2:	learn: 44.8825004	total: 14.3ms	remaining: 464ms
3:	learn: 44.0362738	total: 19.4ms	remaining: 465ms
4:	learn: 43.2086374	total: 24.7ms	remaining: 469ms
5:	learn: 42.5835773	total: 29.9ms	remaining: 468ms
6:	learn: 41.9673269	total: 35.7ms	remaining: 474ms
7:	learn: 41.4748717	total: 40.7ms	remaining: 468ms
8:	learn: 40.7129183	total: 45.9ms	remaining: 464ms
9:	learn: 39.8900884	total: 51.5ms	remaining: 463ms
10:	learn: 39.4142193	total: 56.4ms	remaining: 457ms
11:	learn: 38.8645613	total: 61.3ms	remaining: 450ms
12:	learn: 38.2394731	total: 66.9ms	remaining: 448ms
13:	learn: 37.6834515	total: 72.5ms	remaining: 446ms
14:	learn: 37.0673507	total: 77.5ms	remaining: 439ms
15:	learn: 36.4728340	total: 81.9ms	remaining: 430ms
16:	learn: 36.0489086	total: 86.1ms	remaining: 421ms
17:	learn: 35.4744141	total: 90.6ms	remaining: 413ms
18:	learn: 35.0106021	total: 95ms	remaining: 405ms
19:	learn: 34.5586053	total: 99.4ms	remaining: 398ms
20:	learn: 34.1308223	total: 104ms	remaining: 390ms
21:	learn: 33.7701450	total: 108ms	remaining: 384ms
22:	learn: 33.4425444	total: 113ms	remaining: 377ms
23:	learn: 33.0296412	total: 117ms	remaining: 371ms
24:	learn: 32.6359803	total: 121ms	remaining: 364ms
25:	learn: 32.1846182	total: 126ms	remaining: 358ms
26:	learn: 31.7620230	total: 130ms	remaining: 352ms
27:	learn: 31.4669337	total: 135ms	remaining: 346ms
28:	learn: 31.0792062	total: 140ms	remaining: 342ms
29:	learn: 30.7970537	total: 144ms	remaining: 336ms
30:	learn: 30.4952215	total: 149ms	remaining: 331ms
31:	learn: 30.2845344	total: 153ms	remaining: 325ms
32:	learn: 29.9592732	total: 158ms	remaining: 321ms
33:	learn: 29.6798596	total: 163ms	remaining: 316ms
34:	learn: 29.3368905	total: 168ms	remaining: 312ms
35:	learn: 29.0621238	total: 172ms	remaining: 306ms
36:	learn: 28.6445375	total: 177ms	remaining: 301ms
37:	learn: 28.2418096	total: 182ms	remaining: 297ms
38:	learn: 27.9495390	total: 188ms	remaining: 294ms
39:	learn: 27.6958160	total: 196ms	remaining: 294ms
40:	learn: 27.4811189	total: 203ms	remaining: 292ms
41:	learn: 27.1494420	total: 209ms	remaining: 288ms
42:	learn: 26.8388873	total: 214ms	remaining: 283ms
43:	learn: 26.5721300	total: 219ms	remaining: 279ms
44:	learn: 26.3384738	total: 224ms	remaining: 273ms
45:	learn: 26.1894781	total: 228ms	remaining: 268ms
46:	learn: 25.9580198	total: 233ms	remaining: 263ms
47:	learn: 25.7897985	total: 238ms	remaining: 258ms
48:	learn: 25.6000271	total: 243ms	remaining: 253ms
49:	learn: 25.4130873	total: 247ms	remaining: 247ms
50:	learn: 25.1699061	total: 252ms	remaining: 242ms
51:	learn: 24.9324449	total: 257ms	remaining: 237ms
52:	learn: 24.7729152	total: 261ms	remaining: 231ms
53:	learn: 24.5026563	total: 266ms	remaining: 226ms
54:	learn: 24.2332627	total: 270ms	remaining: 221ms
55:	learn: 23.9611984	total: 274ms	remaining: 215ms
56:	learn: 23.7862603	total: 278ms	remaining: 210ms
57:	learn: 23.6318154	total: 282ms	remaining: 204ms
58:	learn: 23.4443306	total: 286ms	remaining: 199ms
59:	learn: 23.2581425	total: 291ms	remaining: 194ms
60:	learn: 23.0549901	total: 295ms	remaining: 189ms
61:	learn: 22.8666218	total: 299ms	remaining: 184ms
62:	learn: 22.6956739	total: 304ms	remaining: 178ms
63:	learn: 22.5068544	total: 308ms	remaining: 173ms
64:	learn: 22.1859147	total: 312ms	remaining: 168ms
65:	learn: 22.0462043	total: 316ms	remaining: 163ms
66:	learn: 21.9329563	total: 321ms	remaining: 158ms
67:	learn: 21.8029736	total: 325ms	remaining: 153ms
68:	learn: 21.6861091	total: 329ms	remaining: 148ms
69:	learn: 21.4838140	total: 334ms	remaining: 143ms
70:	learn: 21.3548921	total: 338ms	remaining: 138ms
71:	learn: 21.2244517	total: 342ms	remaining: 133ms
72:	learn: 21.0702958	total: 347ms	remaining: 128ms
73:	learn: 20.9224662	total: 351ms	remaining: 123ms
74:	learn: 20.8150357	total: 356ms	remaining: 119ms
75:	learn: 20.6962739	total: 361ms	remaining: 114ms
76:	learn: 20.5809258	total: 366ms	remaining: 109ms
77:	learn: 20.4735470	total: 370ms	remaining: 104ms
78:	learn: 20.3778167	total: 375ms	remaining: 99.8ms
79:	learn: 20.2211268	total: 380ms	remaining: 95ms
80:	learn: 20.1478678	total: 388ms	remaining: 91ms
81:	learn: 20.1032967	total: 395ms	remaining: 86.7ms
82:	learn: 19.9236300	total: 404ms	remaining: 82.8ms
83:	learn: 19.8151745	total: 411ms	remaining: 78.3ms
84:	learn: 19.7099856	total: 418ms	remaining: 73.8ms
85:	learn: 19.6264833	total: 424ms	remaining: 69ms
86:	learn: 19.4916361	total: 429ms	remaining: 64.1ms
87:	learn: 19.4050529	total: 434ms	remaining: 59.2ms
88:	learn: 19.2547065	total: 440ms	remaining: 54.4ms
89:	learn: 19.1610225	total: 445ms	remaining: 49.5ms
90:	learn: 19.0898958	total: 451ms	remaining: 44.6ms
91:	learn: 19.0489664	total: 457ms	remaining: 39.8ms
92:	learn: 18.9206240	total: 463ms	remaining: 34.8ms
93:	learn: 18.8636239	total: 468ms	remaining: 29.9ms
94:	learn: 18.8126187	total: 473ms	remaining: 24.9ms
95:	learn: 18.7579275	total: 479ms	remaining: 19.9ms
96:	learn: 18.6382753	total: 484ms	remaining: 15ms
97:	learn: 18.5397334	total: 489ms	remaining: 9.97ms
98:	learn: 18.4375951	total: 493ms	remaining: 4.98ms
99:	learn: 18.4033755	total: 497ms	remaining: 0us
0:	learn: 46.1068821	total: 2.01ms	remaining: 199ms
1:	learn: 45.3970261	total: 6.73ms	remaining: 330ms
2:	learn: 44.8732696	total: 11.6ms	remaining: 375ms
3:	learn: 44.1290184	total: 16.2ms	remaining: 389ms
4:	learn: 43.3290271	total: 24.4ms	remaining: 464ms
5:	learn: 42.7069090	total: 30.6ms	remaining: 480ms
6:	learn: 42.0572971	total: 37.7ms	remaining: 501ms
7:	learn: 41.4797924	total: 43.4ms	remaining: 499ms
8:	learn: 41.0023122	total: 48.5ms	remaining: 491ms
9:	learn: 40.5330570	total: 53.7ms	remaining: 484ms
10:	learn: 39.9726545	total: 59.9ms	remaining: 485ms
11:	learn: 39.3044053	total: 64.2ms	remaining: 471ms
12:	learn: 38.8169735	total: 68.3ms	remaining: 457ms
13:	learn: 38.2458761	total: 72.7ms	remaining: 446ms
14:	learn: 37.6280321	total: 77.2ms	remaining: 437ms
15:	learn: 37.0800610	total: 81.6ms	remaining: 429ms
16:	learn: 36.5489363	total: 85.9ms	remaining: 420ms
17:	learn: 36.0981456	total: 90.5ms	remaining: 412ms
18:	learn: 35.6956274	total: 94.6ms	remaining: 403ms
19:	learn: 35.1471999	total: 98.8ms	remaining: 395ms
20:	learn: 34.6235408	total: 103ms	remaining: 387ms
21:	learn: 34.1987018	total: 108ms	remaining: 381ms
22:	learn: 33.8985062	total: 112ms	remaining: 374ms
23:	learn: 33.3869017	total: 116ms	remaining: 368ms
24:	learn: 32.9100550	total: 120ms	remaining: 361ms
25:	learn: 32.4156208	total: 125ms	remaining: 357ms
26:	learn: 31.9320493	total: 130ms	remaining: 350ms
27:	learn: 31.5711468	total: 134ms	remaining: 344ms
28:	learn: 31.2404433	total: 138ms	remaining: 337ms
29:	learn: 30.8807946	total: 142ms	remaining: 332ms
30:	learn: 30.5948438	total: 147ms	remaining: 326ms
31:	learn: 30.3885560	total: 151ms	remaining: 322ms
32:	learn: 30.0625101	total: 156ms	remaining: 317ms
33:	learn: 29.9113114	total: 161ms	remaining: 312ms
34:	learn: 29.6983470	total: 166ms	remaining: 307ms
35:	learn: 29.4775849	total: 170ms	remaining: 303ms
36:	learn: 29.0538055	total: 175ms	remaining: 298ms
37:	learn: 28.6792318	total: 179ms	remaining: 293ms
38:	learn: 28.4231383	total: 183ms	remaining: 287ms
39:	learn: 28.1078565	total: 187ms	remaining: 281ms
40:	learn: 27.9079179	total: 192ms	remaining: 276ms
41:	learn: 27.6721506	total: 196ms	remaining: 271ms
42:	learn: 27.4228033	total: 200ms	remaining: 266ms
43:	learn: 27.1740534	total: 205ms	remaining: 260ms
44:	learn: 26.8584071	total: 209ms	remaining: 256ms
45:	learn: 26.6902083	total: 214ms	remaining: 251ms
46:	learn: 26.4855335	total: 218ms	remaining: 246ms
47:	learn: 26.2730822	total: 223ms	remaining: 241ms
48:	learn: 26.1058689	total: 228ms	remaining: 237ms
49:	learn: 25.8587318	total: 232ms	remaining: 232ms
50:	learn: 25.7558005	total: 237ms	remaining: 228ms
51:	learn: 25.5846925	total: 242ms	remaining: 223ms
52:	learn: 25.4249887	total: 246ms	remaining: 218ms
53:	learn: 25.1911054	total: 251ms	remaining: 214ms
54:	learn: 25.0544755	total: 259ms	remaining: 212ms
55:	learn: 24.8874006	total: 267ms	remaining: 210ms
56:	learn: 24.7736279	total: 276ms	remaining: 208ms
57:	learn: 24.6156255	total: 284ms	remaining: 206ms
58:	learn: 24.3962421	total: 289ms	remaining: 201ms
59:	learn: 24.2685129	total: 294ms	remaining: 196ms
60:	learn: 24.1874096	total: 300ms	remaining: 191ms
61:	learn: 24.0394287	total: 305ms	remaining: 187ms
62:	learn: 23.9281768	total: 310ms	remaining: 182ms
63:	learn: 23.7423900	total: 315ms	remaining: 177ms
64:	learn: 23.6015209	total: 321ms	remaining: 173ms
65:	learn: 23.4677943	total: 327ms	remaining: 168ms
66:	learn: 23.3215256	total: 333ms	remaining: 164ms
67:	learn: 23.1869360	total: 338ms	remaining: 159ms
68:	learn: 22.9691180	total: 344ms	remaining: 154ms
69:	learn: 22.7531657	total: 349ms	remaining: 150ms
70:	learn: 22.6133477	total: 354ms	remaining: 145ms
71:	learn: 22.3452758	total: 358ms	remaining: 139ms
72:	learn: 22.2065350	total: 363ms	remaining: 134ms
73:	learn: 22.1071155	total: 367ms	remaining: 129ms
74:	learn: 21.9740686	total: 371ms	remaining: 124ms
75:	learn: 21.8892033	total: 375ms	remaining: 119ms
76:	learn: 21.8267882	total: 379ms	remaining: 113ms
77:	learn: 21.7423479	total: 384ms	remaining: 108ms
78:	learn: 21.6242075	total: 388ms	remaining: 103ms
79:	learn: 21.5016910	total: 392ms	remaining: 98ms
80:	learn: 21.4806623	total: 393ms	remaining: 92.1ms
81:	learn: 21.3166637	total: 397ms	remaining: 87.2ms
82:	learn: 21.2222534	total: 401ms	remaining: 82.1ms
83:	learn: 21.1535708	total: 406ms	remaining: 77.2ms
84:	learn: 21.0858902	total: 410ms	remaining: 72.3ms
85:	learn: 20.9206003	total: 414ms	remaining: 67.3ms
86:	learn: 20.8674695	total: 418ms	remaining: 62.4ms
87:	learn: 20.8089875	total: 423ms	remaining: 57.7ms
88:	learn: 20.7085401	total: 428ms	remaining: 52.8ms
89:	learn: 20.5513468	total: 432ms	remaining: 48ms
90:	learn: 20.4586742	total: 437ms	remaining: 43.2ms
91:	learn: 20.3932149	total: 442ms	remaining: 38.4ms
92:	learn: 20.3000895	total: 446ms	remaining: 33.6ms
93:	learn: 20.2254009	total: 451ms	remaining: 28.8ms
94:	learn: 20.1750050	total: 459ms	remaining: 24.2ms
95:	learn: 20.0715579	total: 466ms	remaining: 19.4ms
96:	learn: 19.9920082	total: 473ms	remaining: 14.6ms
97:	learn: 19.9664401	total: 479ms	remaining: 9.77ms
98:	learn: 19.8689673	total: 485ms	remaining: 4.9ms
99:	learn: 19.7537356	total: 490ms	remaining: 0us
0:	learn: 46.8832143	total: 8.33ms	remaining: 824ms
1:	learn: 45.8700349	total: 12.5ms	remaining: 613ms
2:	learn: 45.0546867	total: 16.7ms	remaining: 540ms
3:	learn: 44.2829439	total: 21.1ms	remaining: 506ms
4:	learn: 43.4609042	total: 25.4ms	remaining: 482ms
5:	learn: 42.6754991	total: 30.1ms	remaining: 472ms
6:	learn: 41.9234935	total: 34.3ms	remaining: 455ms
7:	learn: 41.3987518	total: 38.7ms	remaining: 445ms
8:	learn: 40.6625066	total: 42.8ms	remaining: 432ms
9:	learn: 40.0029561	total: 47ms	remaining: 423ms
10:	learn: 39.3897033	total: 51.5ms	remaining: 416ms
11:	learn: 38.7741453	total: 55.9ms	remaining: 410ms
12:	learn: 38.1201100	total: 60.3ms	remaining: 404ms
13:	learn: 37.5129454	total: 64.5ms	remaining: 396ms
14:	learn: 37.2062206	total: 68.5ms	remaining: 388ms
15:	learn: 36.6831741	total: 73ms	remaining: 383ms
16:	learn: 36.2902788	total: 77.2ms	remaining: 377ms
17:	learn: 35.7639930	total: 81.4ms	remaining: 371ms
18:	learn: 35.2580953	total: 85.6ms	remaining: 365ms
19:	learn: 34.7809739	total: 90.1ms	remaining: 360ms
20:	learn: 34.1330433	total: 94.2ms	remaining: 355ms
21:	learn: 33.7302219	total: 98.4ms	remaining: 349ms
22:	learn: 33.3502495	total: 103ms	remaining: 345ms
23:	learn: 33.0067804	total: 108ms	remaining: 343ms
24:	learn: 32.6897855	total: 113ms	remaining: 338ms
25:	learn: 32.4361119	total: 117ms	remaining: 334ms
26:	learn: 32.1278981	total: 122ms	remaining: 329ms
27:	learn: 31.7863721	total: 126ms	remaining: 325ms
28:	learn: 31.4791450	total: 131ms	remaining: 322ms
29:	learn: 31.1760161	total: 140ms	remaining: 326ms
30:	learn: 30.9238888	total: 149ms	remaining: 332ms
31:	learn: 30.5500905	total: 156ms	remaining: 332ms
32:	learn: 30.3078126	total: 164ms	remaining: 332ms
33:	learn: 30.0480921	total: 169ms	remaining: 328ms
34:	learn: 29.8623884	total: 174ms	remaining: 323ms
35:	learn: 29.5991038	total: 180ms	remaining: 320ms
36:	learn: 29.4061161	total: 185ms	remaining: 315ms
37:	learn: 29.0269515	total: 190ms	remaining: 311ms
38:	learn: 28.8224959	total: 196ms	remaining: 307ms
39:	learn: 28.6417843	total: 202ms	remaining: 302ms
40:	learn: 28.3633368	total: 207ms	remaining: 298ms
41:	learn: 28.0200246	total: 212ms	remaining: 293ms
42:	learn: 27.7221254	total: 217ms	remaining: 287ms
43:	learn: 27.5105818	total: 222ms	remaining: 282ms
44:	learn: 27.3551010	total: 227ms	remaining: 278ms
45:	learn: 27.0787522	total: 232ms	remaining: 273ms
46:	learn: 26.8726317	total: 237ms	remaining: 267ms
47:	learn: 26.8003277	total: 255ms	remaining: 276ms
48:	learn: 26.5493785	total: 259ms	remaining: 270ms
49:	learn: 26.3699550	total: 263ms	remaining: 263ms
50:	learn: 26.1519631	total: 268ms	remaining: 257ms
51:	learn: 25.9277325	total: 272ms	remaining: 251ms
52:	learn: 25.7286035	total: 276ms	remaining: 245ms
53:	learn: 25.4999193	total: 280ms	remaining: 239ms
54:	learn: 25.3434703	total: 285ms	remaining: 233ms
55:	learn: 25.1497545	total: 289ms	remaining: 227ms
56:	learn: 24.9498143	total: 294ms	remaining: 222ms
57:	learn: 24.6509390	total: 298ms	remaining: 216ms
58:	learn: 24.5576144	total: 303ms	remaining: 210ms
59:	learn: 24.4265144	total: 308ms	remaining: 205ms
60:	learn: 24.3100706	total: 312ms	remaining: 200ms
61:	learn: 24.1727952	total: 317ms	remaining: 194ms
62:	learn: 24.0478558	total: 322ms	remaining: 189ms
63:	learn: 23.9124577	total: 326ms	remaining: 184ms
64:	learn: 23.7703718	total: 334ms	remaining: 180ms
65:	learn: 23.5975027	total: 341ms	remaining: 176ms
66:	learn: 23.4318077	total: 349ms	remaining: 172ms
67:	learn: 23.3099691	total: 355ms	remaining: 167ms
68:	learn: 23.1947982	total: 359ms	remaining: 161ms
69:	learn: 23.0260174	total: 363ms	remaining: 156ms
70:	learn: 22.8523100	total: 368ms	remaining: 150ms
71:	learn: 22.8028534	total: 372ms	remaining: 145ms
72:	learn: 22.6880658	total: 377ms	remaining: 139ms
73:	learn: 22.5956809	total: 381ms	remaining: 134ms
74:	learn: 22.4692932	total: 386ms	remaining: 129ms
75:	learn: 22.2863504	total: 391ms	remaining: 123ms
76:	learn: 22.1911237	total: 395ms	remaining: 118ms
77:	learn: 22.1098391	total: 399ms	remaining: 113ms
78:	learn: 22.0182738	total: 404ms	remaining: 107ms
79:	learn: 21.9306746	total: 408ms	remaining: 102ms
80:	learn: 21.7508233	total: 413ms	remaining: 96.8ms
81:	learn: 21.7108446	total: 417ms	remaining: 91.6ms
82:	learn: 21.5931852	total: 422ms	remaining: 86.4ms
83:	learn: 21.4480361	total: 426ms	remaining: 81.2ms
84:	learn: 21.3092119	total: 430ms	remaining: 76ms
85:	learn: 21.2605557	total: 435ms	remaining: 70.8ms
86:	learn: 21.1123597	total: 440ms	remaining: 65.7ms
87:	learn: 21.0115642	total: 445ms	remaining: 60.6ms
88:	learn: 20.9389040	total: 449ms	remaining: 55.5ms
89:	learn: 20.8300300	total: 454ms	remaining: 50.4ms
90:	learn: 20.7159733	total: 459ms	remaining: 45.4ms
91:	learn: 20.6282090	total: 464ms	remaining: 40.3ms
92:	learn: 20.5164529	total: 468ms	remaining: 35.2ms
93:	learn: 20.4692032	total: 473ms	remaining: 30.2ms
94:	learn: 20.3768451	total: 477ms	remaining: 25.1ms
95:	learn: 20.2808056	total: 482ms	remaining: 20.1ms
96:	learn: 20.2082089	total: 486ms	remaining: 15ms
97:	learn: 20.1698768	total: 491ms	remaining: 10ms
98:	learn: 20.1048816	total: 496ms	remaining: 5ms
99:	learn: 20.0086159	total: 500ms	remaining: 0us
0:	learn: 27.6871645	total: 6.68ms	remaining: 661ms
1:	learn: 27.3312003	total: 14.3ms	remaining: 698ms
2:	learn: 26.9359558	total: 20.3ms	remaining: 657ms
3:	learn: 26.6055364	total: 25.7ms	remaining: 616ms
4:	learn: 26.1664924	total: 31ms	remaining: 590ms
5:	learn: 25.8515393	total: 36.8ms	remaining: 577ms
6:	learn: 25.4620036	total: 42.4ms	remaining: 563ms
7:	learn: 25.1669741	total: 47.9ms	remaining: 551ms
8:	learn: 24.8455454	total: 53.9ms	remaining: 545ms
9:	learn: 24.5106323	total: 59.5ms	remaining: 535ms
10:	learn: 24.1915228	total: 65ms	remaining: 526ms
11:	learn: 23.9076053	total: 70.3ms	remaining: 515ms
12:	learn: 23.6692445	total: 76.4ms	remaining: 511ms
13:	learn: 23.4343504	total: 82.7ms	remaining: 508ms
14:	learn: 23.2425280	total: 87.6ms	remaining: 496ms
15:	learn: 22.9254142	total: 92.4ms	remaining: 485ms
16:	learn: 22.6495489	total: 97ms	remaining: 474ms
17:	learn: 22.4343705	total: 102ms	remaining: 463ms
18:	learn: 22.2154202	total: 107ms	remaining: 454ms
19:	learn: 22.0592712	total: 111ms	remaining: 445ms
20:	learn: 21.7971944	total: 116ms	remaining: 436ms
21:	learn: 21.6128930	total: 121ms	remaining: 428ms
22:	learn: 21.3882946	total: 126ms	remaining: 420ms
23:	learn: 21.0912570	total: 130ms	remaining: 413ms
24:	learn: 20.8922857	total: 135ms	remaining: 405ms
25:	learn: 20.7150574	total: 140ms	remaining: 398ms
26:	learn: 20.5673183	total: 145ms	remaining: 391ms
27:	learn: 20.4331275	total: 149ms	remaining: 384ms
28:	learn: 20.2782866	total: 155ms	remaining: 378ms
29:	learn: 20.1061525	total: 160ms	remaining: 372ms
30:	learn: 19.9225948	total: 165ms	remaining: 366ms
31:	learn: 19.7809193	total: 170ms	remaining: 361ms
32:	learn: 19.6057771	total: 175ms	remaining: 355ms
33:	learn: 19.4391243	total: 180ms	remaining: 349ms
34:	learn: 19.2234365	total: 186ms	remaining: 346ms
35:	learn: 19.0214424	total: 195ms	remaining: 346ms
36:	learn: 18.8990643	total: 202ms	remaining: 344ms
37:	learn: 18.7473635	total: 209ms	remaining: 341ms
38:	learn: 18.6125192	total: 214ms	remaining: 335ms
39:	learn: 18.4977949	total: 220ms	remaining: 331ms
40:	learn: 18.3914568	total: 226ms	remaining: 325ms
41:	learn: 18.2541544	total: 231ms	remaining: 320ms
42:	learn: 18.1038984	total: 236ms	remaining: 313ms
43:	learn: 17.9706172	total: 242ms	remaining: 308ms
44:	learn: 17.8198810	total: 247ms	remaining: 302ms
45:	learn: 17.7102597	total: 252ms	remaining: 296ms
46:	learn: 17.6148228	total: 257ms	remaining: 290ms
47:	learn: 17.5115365	total: 263ms	remaining: 285ms
48:	learn: 17.3884162	total: 267ms	remaining: 278ms
49:	learn: 17.2857632	total: 272ms	remaining: 272ms
50:	learn: 17.1618843	total: 277ms	remaining: 266ms
51:	learn: 17.0529601	total: 282ms	remaining: 260ms
52:	learn: 16.9330273	total: 287ms	remaining: 254ms
53:	learn: 16.8206672	total: 291ms	remaining: 248ms
54:	learn: 16.7080356	total: 296ms	remaining: 242ms
55:	learn: 16.5874354	total: 301ms	remaining: 236ms
56:	learn: 16.4929860	total: 306ms	remaining: 231ms
57:	learn: 16.4269419	total: 311ms	remaining: 225ms
58:	learn: 16.3474026	total: 316ms	remaining: 219ms
59:	learn: 16.2515784	total: 320ms	remaining: 214ms
60:	learn: 16.1743901	total: 325ms	remaining: 208ms
61:	learn: 16.0389930	total: 330ms	remaining: 202ms
62:	learn: 15.9671636	total: 335ms	remaining: 197ms
63:	learn: 15.8928486	total: 340ms	remaining: 191ms
64:	learn: 15.8303841	total: 344ms	remaining: 185ms
65:	learn: 15.7612266	total: 349ms	remaining: 180ms
66:	learn: 15.6811172	total: 354ms	remaining: 175ms
67:	learn: 15.6262138	total: 359ms	remaining: 169ms
68:	learn: 15.5662508	total: 364ms	remaining: 164ms
69:	learn: 15.4804354	total: 369ms	remaining: 158ms
70:	learn: 15.4054915	total: 374ms	remaining: 153ms
71:	learn: 15.3271396	total: 379ms	remaining: 147ms
72:	learn: 15.2828359	total: 385ms	remaining: 142ms
73:	learn: 15.2197404	total: 394ms	remaining: 138ms
74:	learn: 15.1315902	total: 405ms	remaining: 135ms
75:	learn: 15.0780523	total: 411ms	remaining: 130ms
76:	learn: 14.9959155	total: 419ms	remaining: 125ms
77:	learn: 14.9265008	total: 425ms	remaining: 120ms
78:	learn: 14.8570189	total: 430ms	remaining: 114ms
79:	learn: 14.8060372	total: 436ms	remaining: 109ms
80:	learn: 14.7294676	total: 442ms	remaining: 104ms
81:	learn: 14.6708309	total: 448ms	remaining: 98.3ms
82:	learn: 14.5765370	total: 453ms	remaining: 92.9ms
83:	learn: 14.5312713	total: 459ms	remaining: 87.5ms
84:	learn: 14.4830327	total: 465ms	remaining: 82ms
85:	learn: 14.4296247	total: 470ms	remaining: 76.5ms
86:	learn: 14.3381470	total: 476ms	remaining: 71.1ms
87:	learn: 14.2638093	total: 482ms	remaining: 65.7ms
88:	learn: 14.2288435	total: 487ms	remaining: 60.2ms
89:	learn: 14.1489273	total: 492ms	remaining: 54.7ms
90:	learn: 14.0937923	total: 497ms	remaining: 49.1ms
91:	learn: 14.0334062	total: 502ms	remaining: 43.6ms
92:	learn: 13.9854696	total: 507ms	remaining: 38.1ms
93:	learn: 13.9444203	total: 511ms	remaining: 32.6ms
94:	learn: 13.9101523	total: 516ms	remaining: 27.2ms
95:	learn: 13.8460655	total: 521ms	remaining: 21.7ms
96:	learn: 13.7809420	total: 526ms	remaining: 16.3ms
97:	learn: 13.7270532	total: 530ms	remaining: 10.8ms
98:	learn: 13.6891300	total: 535ms	remaining: 5.4ms
99:	learn: 13.6569696	total: 548ms	remaining: 0us
0:	learn: 42.9754370	total: 5.54ms	remaining: 548ms
1:	learn: 42.2613272	total: 11.4ms	remaining: 559ms
2:	learn: 41.4729969	total: 21.4ms	remaining: 693ms
3:	learn: 40.7127004	total: 30.6ms	remaining: 734ms
4:	learn: 39.7775109	total: 36.9ms	remaining: 702ms
5:	learn: 39.1736663	total: 43.9ms	remaining: 688ms
6:	learn: 38.2981109	total: 48.7ms	remaining: 648ms
7:	learn: 37.5352984	total: 53.5ms	remaining: 616ms
8:	learn: 36.7771474	total: 58.5ms	remaining: 592ms
9:	learn: 36.0581366	total: 63.7ms	remaining: 573ms
10:	learn: 35.3542706	total: 68.9ms	remaining: 558ms
11:	learn: 34.6937007	total: 74.2ms	remaining: 544ms
12:	learn: 34.0408035	total: 79.4ms	remaining: 531ms
13:	learn: 33.3460240	total: 84.3ms	remaining: 518ms
14:	learn: 32.8086243	total: 89.1ms	remaining: 505ms
15:	learn: 32.1934462	total: 93.9ms	remaining: 493ms
16:	learn: 31.6465519	total: 98.8ms	remaining: 482ms
17:	learn: 31.2161293	total: 103ms	remaining: 471ms
18:	learn: 30.6730548	total: 108ms	remaining: 461ms
19:	learn: 30.3153659	total: 113ms	remaining: 451ms
20:	learn: 29.7661420	total: 118ms	remaining: 442ms
21:	learn: 29.2095664	total: 122ms	remaining: 434ms
22:	learn: 28.7509592	total: 127ms	remaining: 425ms
23:	learn: 28.4347528	total: 132ms	remaining: 418ms
24:	learn: 28.0551654	total: 137ms	remaining: 410ms
25:	learn: 27.7295952	total: 141ms	remaining: 402ms
26:	learn: 27.2329225	total: 146ms	remaining: 395ms
27:	learn: 26.9970607	total: 151ms	remaining: 388ms
28:	learn: 26.6596544	total: 155ms	remaining: 380ms
29:	learn: 26.2633576	total: 160ms	remaining: 373ms
30:	learn: 25.9761623	total: 165ms	remaining: 366ms
31:	learn: 25.6177371	total: 170ms	remaining: 362ms
32:	learn: 25.2165933	total: 175ms	remaining: 355ms
33:	learn: 24.8012870	total: 180ms	remaining: 349ms
34:	learn: 24.4772532	total: 185ms	remaining: 343ms
35:	learn: 24.1560359	total: 190ms	remaining: 338ms
36:	learn: 23.9688812	total: 198ms	remaining: 338ms
37:	learn: 23.6907607	total: 206ms	remaining: 336ms
38:	learn: 23.3885772	total: 213ms	remaining: 333ms
39:	learn: 23.2234939	total: 218ms	remaining: 327ms
40:	learn: 22.9785026	total: 224ms	remaining: 322ms
41:	learn: 22.6827268	total: 230ms	remaining: 318ms
42:	learn: 22.4564360	total: 237ms	remaining: 314ms
43:	learn: 22.2517827	total: 243ms	remaining: 309ms
44:	learn: 21.9858709	total: 249ms	remaining: 304ms
45:	learn: 21.7595870	total: 255ms	remaining: 299ms
46:	learn: 21.5929957	total: 261ms	remaining: 294ms
47:	learn: 21.4071752	total: 267ms	remaining: 289ms
48:	learn: 21.2186470	total: 273ms	remaining: 284ms
49:	learn: 21.0691824	total: 279ms	remaining: 279ms
50:	learn: 20.8921347	total: 285ms	remaining: 274ms
51:	learn: 20.6834229	total: 308ms	remaining: 285ms
52:	learn: 20.4718988	total: 315ms	remaining: 279ms
53:	learn: 20.3413889	total: 320ms	remaining: 272ms
54:	learn: 20.1785464	total: 325ms	remaining: 266ms
55:	learn: 19.9824314	total: 330ms	remaining: 259ms
56:	learn: 19.8217596	total: 335ms	remaining: 252ms
57:	learn: 19.6318474	total: 340ms	remaining: 246ms
58:	learn: 19.4962236	total: 345ms	remaining: 240ms
59:	learn: 19.3114985	total: 350ms	remaining: 233ms
60:	learn: 19.2181156	total: 355ms	remaining: 227ms
61:	learn: 19.0689614	total: 359ms	remaining: 220ms
62:	learn: 18.9563267	total: 364ms	remaining: 214ms
63:	learn: 18.8343083	total: 370ms	remaining: 208ms
64:	learn: 18.7050033	total: 375ms	remaining: 202ms
65:	learn: 18.6014163	total: 380ms	remaining: 196ms
66:	learn: 18.4910692	total: 385ms	remaining: 190ms
67:	learn: 18.3935194	total: 390ms	remaining: 184ms
68:	learn: 18.2825842	total: 396ms	remaining: 178ms
69:	learn: 18.1519267	total: 401ms	remaining: 172ms
70:	learn: 18.0527651	total: 406ms	remaining: 166ms
71:	learn: 17.9770106	total: 424ms	remaining: 165ms
72:	learn: 17.9151628	total: 432ms	remaining: 160ms
73:	learn: 17.7957486	total: 437ms	remaining: 154ms
74:	learn: 17.7025765	total: 443ms	remaining: 148ms
75:	learn: 17.5957242	total: 448ms	remaining: 142ms
76:	learn: 17.4683244	total: 453ms	remaining: 135ms
77:	learn: 17.3415729	total: 458ms	remaining: 129ms
78:	learn: 17.2886896	total: 463ms	remaining: 123ms
79:	learn: 17.2280922	total: 467ms	remaining: 117ms
80:	learn: 17.1188996	total: 472ms	remaining: 111ms
81:	learn: 17.0236450	total: 477ms	remaining: 105ms
82:	learn: 16.9046661	total: 482ms	remaining: 98.7ms
83:	learn: 16.7930633	total: 486ms	remaining: 92.7ms
84:	learn: 16.6870100	total: 491ms	remaining: 86.7ms
85:	learn: 16.5512107	total: 496ms	remaining: 80.7ms
86:	learn: 16.4353400	total: 501ms	remaining: 74.9ms
87:	learn: 16.3256461	total: 506ms	remaining: 69ms
88:	learn: 16.2968057	total: 511ms	remaining: 63.1ms
89:	learn: 16.2136078	total: 515ms	remaining: 57.3ms
90:	learn: 16.1596096	total: 520ms	remaining: 51.4ms
91:	learn: 16.1164050	total: 525ms	remaining: 45.6ms
92:	learn: 16.0660454	total: 529ms	remaining: 39.9ms
93:	learn: 16.0380611	total: 534ms	remaining: 34.1ms
94:	learn: 15.9494441	total: 539ms	remaining: 28.4ms
95:	learn: 15.8874840	total: 544ms	remaining: 22.7ms
96:	learn: 15.8288234	total: 549ms	remaining: 17ms
97:	learn: 15.7562787	total: 554ms	remaining: 11.3ms
98:	learn: 15.6822678	total: 559ms	remaining: 5.65ms
99:	learn: 15.5901500	total: 564ms	remaining: 0us
0:	learn: 46.4504871	total: 9.1ms	remaining: 901ms
1:	learn: 45.7240114	total: 19.7ms	remaining: 966ms
2:	learn: 45.0308025	total: 28.9ms	remaining: 935ms
3:	learn: 44.1111169	total: 35.6ms	remaining: 854ms
4:	learn: 43.3925352	total: 41.5ms	remaining: 788ms
5:	learn: 42.7856354	total: 48.4ms	remaining: 758ms
6:	learn: 42.1998170	total: 54.8ms	remaining: 728ms
7:	learn: 41.3532708	total: 60.6ms	remaining: 697ms
8:	learn: 40.7314571	total: 67.1ms	remaining: 679ms
9:	learn: 39.9838066	total: 72.7ms	remaining: 655ms
10:	learn: 39.4168243	total: 78.4ms	remaining: 635ms
11:	learn: 39.0148769	total: 83.8ms	remaining: 615ms
12:	learn: 38.3055855	total: 89.2ms	remaining: 597ms
13:	learn: 37.7343198	total: 95.2ms	remaining: 585ms
14:	learn: 37.4177463	total: 102ms	remaining: 576ms
15:	learn: 36.9043298	total: 107ms	remaining: 562ms
16:	learn: 36.3139174	total: 112ms	remaining: 546ms
17:	learn: 35.7200448	total: 117ms	remaining: 531ms
18:	learn: 35.3763394	total: 121ms	remaining: 518ms
19:	learn: 34.7666728	total: 126ms	remaining: 505ms
20:	learn: 34.2642890	total: 131ms	remaining: 493ms
21:	learn: 33.8196936	total: 136ms	remaining: 482ms
22:	learn: 33.4205669	total: 141ms	remaining: 471ms
23:	learn: 32.8565493	total: 145ms	remaining: 460ms
24:	learn: 32.5287132	total: 150ms	remaining: 450ms
25:	learn: 32.2142064	total: 155ms	remaining: 441ms
26:	learn: 31.9258854	total: 160ms	remaining: 433ms
27:	learn: 31.4083665	total: 165ms	remaining: 424ms
28:	learn: 31.1615620	total: 170ms	remaining: 415ms
29:	learn: 30.6948867	total: 175ms	remaining: 408ms
30:	learn: 30.3185108	total: 180ms	remaining: 401ms
31:	learn: 29.9245223	total: 185ms	remaining: 394ms
32:	learn: 29.6683643	total: 190ms	remaining: 387ms
33:	learn: 29.3868143	total: 195ms	remaining: 379ms
34:	learn: 29.1105699	total: 201ms	remaining: 373ms
35:	learn: 28.8274848	total: 211ms	remaining: 375ms
36:	learn: 28.5478288	total: 219ms	remaining: 374ms
37:	learn: 28.2355121	total: 226ms	remaining: 369ms
38:	learn: 28.0182564	total: 233ms	remaining: 364ms
39:	learn: 27.7654405	total: 238ms	remaining: 357ms
40:	learn: 27.5720477	total: 243ms	remaining: 349ms
41:	learn: 27.3182782	total: 247ms	remaining: 341ms
42:	learn: 26.9504431	total: 252ms	remaining: 334ms
43:	learn: 26.7281906	total: 257ms	remaining: 327ms
44:	learn: 26.5390008	total: 261ms	remaining: 320ms
45:	learn: 26.3781338	total: 266ms	remaining: 313ms
46:	learn: 26.1763177	total: 271ms	remaining: 306ms
47:	learn: 25.9417647	total: 276ms	remaining: 299ms
48:	learn: 25.7528045	total: 281ms	remaining: 292ms
49:	learn: 25.6336897	total: 285ms	remaining: 285ms
50:	learn: 25.4800426	total: 290ms	remaining: 278ms
51:	learn: 25.2895681	total: 295ms	remaining: 272ms
52:	learn: 25.0827111	total: 299ms	remaining: 265ms
53:	learn: 24.7987678	total: 304ms	remaining: 259ms
54:	learn: 24.6309982	total: 308ms	remaining: 252ms
55:	learn: 24.3526776	total: 313ms	remaining: 246ms
56:	learn: 24.1689125	total: 318ms	remaining: 240ms
57:	learn: 23.9802039	total: 323ms	remaining: 234ms
58:	learn: 23.8059432	total: 328ms	remaining: 228ms
59:	learn: 23.6006403	total: 333ms	remaining: 222ms
60:	learn: 23.2948382	total: 338ms	remaining: 216ms
61:	learn: 23.1338922	total: 343ms	remaining: 210ms
62:	learn: 22.9581269	total: 348ms	remaining: 204ms
63:	learn: 22.8263127	total: 353ms	remaining: 198ms
64:	learn: 22.6966006	total: 357ms	remaining: 192ms
65:	learn: 22.6012389	total: 362ms	remaining: 186ms
66:	learn: 22.4220244	total: 367ms	remaining: 181ms
67:	learn: 22.3148342	total: 372ms	remaining: 175ms
68:	learn: 22.1543592	total: 377ms	remaining: 170ms
69:	learn: 22.0614050	total: 382ms	remaining: 164ms
70:	learn: 21.9134025	total: 388ms	remaining: 158ms
71:	learn: 21.8198101	total: 393ms	remaining: 153ms
72:	learn: 21.6944173	total: 398ms	remaining: 147ms
73:	learn: 21.4727420	total: 405ms	remaining: 142ms
74:	learn: 21.3000560	total: 413ms	remaining: 138ms
75:	learn: 21.1884740	total: 424ms	remaining: 134ms
76:	learn: 21.0321317	total: 433ms	remaining: 129ms
77:	learn: 20.9371793	total: 439ms	remaining: 124ms
78:	learn: 20.6800341	total: 444ms	remaining: 118ms
79:	learn: 20.5629904	total: 450ms	remaining: 113ms
80:	learn: 20.4098217	total: 456ms	remaining: 107ms
81:	learn: 20.2139261	total: 462ms	remaining: 101ms
82:	learn: 20.1024260	total: 469ms	remaining: 96ms
83:	learn: 19.9835855	total: 475ms	remaining: 90.6ms
84:	learn: 19.9018880	total: 482ms	remaining: 85.1ms
85:	learn: 19.7819843	total: 488ms	remaining: 79.5ms
86:	learn: 19.6352780	total: 495ms	remaining: 73.9ms
87:	learn: 19.4888328	total: 501ms	remaining: 68.3ms
88:	learn: 19.4365121	total: 506ms	remaining: 62.6ms
89:	learn: 19.3427430	total: 511ms	remaining: 56.8ms
90:	learn: 19.2884907	total: 516ms	remaining: 51ms
91:	learn: 19.1898932	total: 521ms	remaining: 45.3ms
92:	learn: 19.0775661	total: 525ms	remaining: 39.5ms
93:	learn: 19.0334055	total: 530ms	remaining: 33.8ms
94:	learn: 18.9381916	total: 535ms	remaining: 28.2ms
95:	learn: 18.8471198	total: 540ms	remaining: 22.5ms
96:	learn: 18.7136478	total: 545ms	remaining: 16.8ms
97:	learn: 18.6633102	total: 550ms	remaining: 11.2ms
98:	learn: 18.5887516	total: 555ms	remaining: 5.6ms
99:	learn: 18.4841597	total: 560ms	remaining: 0us
0:	learn: 46.2172336	total: 8.14ms	remaining: 806ms
1:	learn: 45.4248871	total: 14.5ms	remaining: 712ms
2:	learn: 44.8702937	total: 21.7ms	remaining: 702ms
3:	learn: 44.2019212	total: 26.7ms	remaining: 640ms
4:	learn: 43.4805210	total: 31.9ms	remaining: 605ms
5:	learn: 42.7336269	total: 37ms	remaining: 580ms
6:	learn: 42.0396670	total: 41.6ms	remaining: 553ms
7:	learn: 41.5668459	total: 46.4ms	remaining: 533ms
8:	learn: 40.8999125	total: 51.2ms	remaining: 517ms
9:	learn: 40.3358512	total: 56.4ms	remaining: 507ms
10:	learn: 39.7511489	total: 61.1ms	remaining: 494ms
11:	learn: 39.0775416	total: 65.9ms	remaining: 484ms
12:	learn: 38.5204735	total: 70.7ms	remaining: 473ms
13:	learn: 38.2087509	total: 75.7ms	remaining: 465ms
14:	learn: 37.7259552	total: 80.6ms	remaining: 457ms
15:	learn: 37.1646397	total: 85.3ms	remaining: 448ms
16:	learn: 36.7093520	total: 90.3ms	remaining: 441ms
17:	learn: 36.2212308	total: 95.5ms	remaining: 435ms
18:	learn: 35.8682156	total: 100ms	remaining: 427ms
19:	learn: 35.6026383	total: 105ms	remaining: 421ms
20:	learn: 35.1739725	total: 110ms	remaining: 414ms
21:	learn: 34.5938003	total: 115ms	remaining: 408ms
22:	learn: 34.1479056	total: 120ms	remaining: 402ms
23:	learn: 33.8759356	total: 125ms	remaining: 397ms
24:	learn: 33.2898426	total: 130ms	remaining: 390ms
25:	learn: 32.9220237	total: 135ms	remaining: 384ms
26:	learn: 32.4324374	total: 140ms	remaining: 378ms
27:	learn: 32.1726327	total: 144ms	remaining: 371ms
28:	learn: 31.8020879	total: 149ms	remaining: 365ms
29:	learn: 31.4329781	total: 154ms	remaining: 359ms
30:	learn: 30.9995282	total: 159ms	remaining: 353ms
31:	learn: 30.6815978	total: 163ms	remaining: 347ms
32:	learn: 30.2991029	total: 169ms	remaining: 342ms
33:	learn: 30.0354202	total: 173ms	remaining: 337ms
34:	learn: 29.7620535	total: 179ms	remaining: 332ms
35:	learn: 29.4552589	total: 184ms	remaining: 327ms
36:	learn: 29.2634399	total: 189ms	remaining: 321ms
37:	learn: 28.8345135	total: 194ms	remaining: 317ms
38:	learn: 28.5551142	total: 203ms	remaining: 317ms
39:	learn: 28.3258809	total: 212ms	remaining: 318ms
40:	learn: 28.0835564	total: 221ms	remaining: 318ms
41:	learn: 27.7517159	total: 228ms	remaining: 315ms
42:	learn: 27.5427595	total: 235ms	remaining: 311ms
43:	learn: 27.3925105	total: 240ms	remaining: 306ms
44:	learn: 27.2377120	total: 246ms	remaining: 301ms
45:	learn: 26.9930398	total: 252ms	remaining: 295ms
46:	learn: 26.7748687	total: 257ms	remaining: 290ms
47:	learn: 26.5856986	total: 263ms	remaining: 285ms
48:	learn: 26.4344153	total: 269ms	remaining: 280ms
49:	learn: 26.3263456	total: 275ms	remaining: 275ms
50:	learn: 26.2048412	total: 280ms	remaining: 269ms
51:	learn: 26.0608546	total: 285ms	remaining: 263ms
52:	learn: 25.9428146	total: 291ms	remaining: 258ms
53:	learn: 25.7578029	total: 297ms	remaining: 253ms
54:	learn: 25.5696792	total: 303ms	remaining: 248ms
55:	learn: 25.3291935	total: 307ms	remaining: 241ms
56:	learn: 25.1388942	total: 312ms	remaining: 235ms
57:	learn: 24.9853945	total: 317ms	remaining: 229ms
58:	learn: 24.8037785	total: 322ms	remaining: 224ms
59:	learn: 24.5326704	total: 326ms	remaining: 218ms
60:	learn: 24.2208240	total: 331ms	remaining: 212ms
61:	learn: 24.0774015	total: 336ms	remaining: 206ms
62:	learn: 23.9705824	total: 340ms	remaining: 200ms
63:	learn: 23.8877665	total: 345ms	remaining: 194ms
64:	learn: 23.7309043	total: 350ms	remaining: 188ms
65:	learn: 23.5820140	total: 355ms	remaining: 183ms
66:	learn: 23.3762012	total: 359ms	remaining: 177ms
67:	learn: 23.2317502	total: 364ms	remaining: 171ms
68:	learn: 23.0868331	total: 370ms	remaining: 166ms
69:	learn: 22.9642758	total: 375ms	remaining: 161ms
70:	learn: 22.8085341	total: 380ms	remaining: 155ms
71:	learn: 22.6834294	total: 386ms	remaining: 150ms
72:	learn: 22.6152922	total: 391ms	remaining: 145ms
73:	learn: 22.3675145	total: 399ms	remaining: 140ms
74:	learn: 22.3023338	total: 409ms	remaining: 136ms
75:	learn: 22.1866833	total: 417ms	remaining: 132ms
76:	learn: 22.0163130	total: 423ms	remaining: 126ms
77:	learn: 21.9691306	total: 430ms	remaining: 121ms
78:	learn: 21.9004647	total: 434ms	remaining: 115ms
79:	learn: 21.7931869	total: 439ms	remaining: 110ms
80:	learn: 21.6747916	total: 444ms	remaining: 104ms
81:	learn: 21.5187568	total: 448ms	remaining: 98.4ms
82:	learn: 21.3124880	total: 453ms	remaining: 92.9ms
83:	learn: 21.1979524	total: 459ms	remaining: 87.3ms
84:	learn: 21.1311130	total: 463ms	remaining: 81.7ms
85:	learn: 21.0606062	total: 468ms	remaining: 76.2ms
86:	learn: 20.9900935	total: 473ms	remaining: 70.6ms
87:	learn: 20.8908054	total: 478ms	remaining: 65.1ms
88:	learn: 20.8088525	total: 482ms	remaining: 59.6ms
89:	learn: 20.7300955	total: 487ms	remaining: 54.1ms
90:	learn: 20.6130276	total: 492ms	remaining: 48.7ms
91:	learn: 20.5437508	total: 497ms	remaining: 43.2ms
92:	learn: 20.5029426	total: 501ms	remaining: 37.7ms
93:	learn: 20.4416708	total: 506ms	remaining: 32.3ms
94:	learn: 20.3917812	total: 511ms	remaining: 26.9ms
95:	learn: 20.3305024	total: 515ms	remaining: 21.5ms
96:	learn: 20.2375704	total: 520ms	remaining: 16.1ms
97:	learn: 20.1835197	total: 525ms	remaining: 10.7ms
98:	learn: 20.1246834	total: 529ms	remaining: 5.35ms
99:	learn: 20.0506334	total: 534ms	remaining: 0us
0:	learn: 46.7334648	total: 5.35ms	remaining: 530ms
1:	learn: 46.2069876	total: 10.5ms	remaining: 514ms
2:	learn: 45.3699967	total: 19.2ms	remaining: 622ms
3:	learn: 44.6866787	total: 27.6ms	remaining: 663ms
4:	learn: 43.8536031	total: 37.2ms	remaining: 707ms
5:	learn: 43.4716853	total: 46ms	remaining: 721ms
6:	learn: 42.9929637	total: 51.7ms	remaining: 687ms
7:	learn: 42.4952169	total: 57.4ms	remaining: 661ms
8:	learn: 41.7548337	total: 63.1ms	remaining: 638ms
9:	learn: 41.1054415	total: 68.7ms	remaining: 618ms
10:	learn: 40.4827492	total: 74.2ms	remaining: 600ms
11:	learn: 39.7605907	total: 79.7ms	remaining: 584ms
12:	learn: 39.2532558	total: 85.2ms	remaining: 570ms
13:	learn: 38.6572753	total: 91.1ms	remaining: 559ms
14:	learn: 38.2886959	total: 96.6ms	remaining: 547ms
15:	learn: 37.7816612	total: 102ms	remaining: 537ms
16:	learn: 37.1680589	total: 107ms	remaining: 524ms
17:	learn: 36.5753004	total: 113ms	remaining: 514ms
18:	learn: 36.2339458	total: 118ms	remaining: 504ms
19:	learn: 35.9159716	total: 123ms	remaining: 494ms
20:	learn: 35.4591743	total: 128ms	remaining: 483ms
21:	learn: 34.8726070	total: 133ms	remaining: 472ms
22:	learn: 34.3903591	total: 138ms	remaining: 461ms
23:	learn: 34.1236827	total: 143ms	remaining: 452ms
24:	learn: 33.8026540	total: 148ms	remaining: 443ms
25:	learn: 33.4594822	total: 152ms	remaining: 433ms
26:	learn: 33.1338910	total: 157ms	remaining: 424ms
27:	learn: 32.8527106	total: 161ms	remaining: 415ms
28:	learn: 32.4923829	total: 166ms	remaining: 406ms
29:	learn: 32.0560533	total: 171ms	remaining: 398ms
30:	learn: 31.6614408	total: 175ms	remaining: 390ms
31:	learn: 31.2796040	total: 180ms	remaining: 383ms
32:	learn: 30.8214741	total: 185ms	remaining: 375ms
33:	learn: 30.5908694	total: 190ms	remaining: 369ms
34:	learn: 30.3637356	total: 195ms	remaining: 362ms
35:	learn: 30.0446511	total: 200ms	remaining: 356ms
36:	learn: 29.8792549	total: 206ms	remaining: 350ms
37:	learn: 29.5488457	total: 211ms	remaining: 344ms
38:	learn: 29.2808568	total: 215ms	remaining: 337ms
39:	learn: 29.0603765	total: 220ms	remaining: 330ms
40:	learn: 28.8272425	total: 225ms	remaining: 323ms
41:	learn: 28.4753580	total: 230ms	remaining: 317ms
42:	learn: 28.2963614	total: 235ms	remaining: 311ms
43:	learn: 28.1054768	total: 243ms	remaining: 309ms
44:	learn: 27.9038093	total: 250ms	remaining: 305ms
45:	learn: 27.6305487	total: 257ms	remaining: 302ms
46:	learn: 27.4457907	total: 264ms	remaining: 298ms
47:	learn: 27.1855957	total: 269ms	remaining: 292ms
48:	learn: 26.9987934	total: 275ms	remaining: 287ms
49:	learn: 26.7881067	total: 283ms	remaining: 283ms
50:	learn: 26.6385231	total: 287ms	remaining: 276ms
51:	learn: 26.4661755	total: 292ms	remaining: 270ms
52:	learn: 26.3331868	total: 297ms	remaining: 263ms
53:	learn: 26.0353476	total: 302ms	remaining: 257ms
54:	learn: 25.8257147	total: 307ms	remaining: 251ms
55:	learn: 25.5924383	total: 312ms	remaining: 245ms
56:	learn: 25.4082209	total: 317ms	remaining: 239ms
57:	learn: 25.2350104	total: 322ms	remaining: 233ms
58:	learn: 25.1789867	total: 327ms	remaining: 227ms
59:	learn: 24.9111359	total: 332ms	remaining: 221ms
60:	learn: 24.6314503	total: 336ms	remaining: 215ms
61:	learn: 24.4297999	total: 341ms	remaining: 209ms
62:	learn: 24.3126171	total: 346ms	remaining: 203ms
63:	learn: 24.1544005	total: 351ms	remaining: 197ms
64:	learn: 24.0197950	total: 355ms	remaining: 191ms
65:	learn: 23.8483087	total: 360ms	remaining: 185ms
66:	learn: 23.6624915	total: 365ms	remaining: 180ms
67:	learn: 23.5068105	total: 370ms	remaining: 174ms
68:	learn: 23.4266187	total: 375ms	remaining: 168ms
69:	learn: 23.3535388	total: 380ms	remaining: 163ms
70:	learn: 23.2477190	total: 385ms	remaining: 157ms
71:	learn: 23.1877634	total: 389ms	remaining: 151ms
72:	learn: 23.1344720	total: 394ms	remaining: 146ms
73:	learn: 22.9498234	total: 399ms	remaining: 140ms
74:	learn: 22.9068295	total: 404ms	remaining: 135ms
75:	learn: 22.7368434	total: 409ms	remaining: 129ms
76:	learn: 22.6084901	total: 415ms	remaining: 124ms
77:	learn: 22.4690295	total: 420ms	remaining: 118ms
78:	learn: 22.3970100	total: 425ms	remaining: 113ms
79:	learn: 22.3025537	total: 430ms	remaining: 108ms
80:	learn: 22.2089293	total: 436ms	remaining: 102ms
81:	learn: 22.0522107	total: 441ms	remaining: 96.8ms
82:	learn: 21.9368213	total: 446ms	remaining: 91.3ms
83:	learn: 21.7968322	total: 451ms	remaining: 85.9ms
84:	learn: 21.7416164	total: 456ms	remaining: 80.5ms
85:	learn: 21.6031099	total: 465ms	remaining: 75.7ms
86:	learn: 21.4530627	total: 475ms	remaining: 70.9ms
87:	learn: 21.3118417	total: 484ms	remaining: 66ms
88:	learn: 21.2760431	total: 493ms	remaining: 60.9ms
89:	learn: 21.2071350	total: 499ms	remaining: 55.4ms
90:	learn: 21.1051001	total: 505ms	remaining: 49.9ms
91:	learn: 21.0246142	total: 511ms	remaining: 44.4ms
92:	learn: 20.9834999	total: 517ms	remaining: 38.9ms
93:	learn: 20.8989393	total: 538ms	remaining: 34.3ms
94:	learn: 20.8262231	total: 544ms	remaining: 28.6ms
95:	learn: 20.7369110	total: 550ms	remaining: 22.9ms
96:	learn: 20.6409587	total: 555ms	remaining: 17.2ms
97:	learn: 20.5553641	total: 560ms	remaining: 11.4ms
98:	learn: 20.4317232	total: 565ms	remaining: 5.7ms
99:	learn: 20.3708681	total: 570ms	remaining: 0us
0:	learn: 27.3351083	total: 23.6ms	remaining: 2.34s
1:	learn: 26.7523848	total: 48.1ms	remaining: 2.35s
2:	learn: 26.1326580	total: 78.4ms	remaining: 2.54s
3:	learn: 25.5584244	total: 103ms	remaining: 2.46s
4:	learn: 25.0458748	total: 126ms	remaining: 2.39s
5:	learn: 24.4868837	total: 150ms	remaining: 2.35s
6:	learn: 23.9306999	total: 173ms	remaining: 2.3s
7:	learn: 23.4799808	total: 197ms	remaining: 2.26s
8:	learn: 22.9510347	total: 221ms	remaining: 2.24s
9:	learn: 22.4529079	total: 245ms	remaining: 2.21s
10:	learn: 21.9320739	total: 269ms	remaining: 2.17s
11:	learn: 21.4729295	total: 303ms	remaining: 2.22s
12:	learn: 21.0885550	total: 330ms	remaining: 2.21s
13:	learn: 20.7063206	total: 354ms	remaining: 2.18s
14:	learn: 20.3539530	total: 378ms	remaining: 2.14s
15:	learn: 20.0071947	total: 403ms	remaining: 2.12s
16:	learn: 19.6579830	total: 426ms	remaining: 2.08s
17:	learn: 19.2450502	total: 451ms	remaining: 2.05s
18:	learn: 18.8010420	total: 475ms	remaining: 2.02s
19:	learn: 18.4055273	total: 500ms	remaining: 2s
20:	learn: 18.0395642	total: 530ms	remaining: 1.99s
21:	learn: 17.6568400	total: 556ms	remaining: 1.97s
22:	learn: 17.4284559	total: 579ms	remaining: 1.94s
23:	learn: 17.0957528	total: 603ms	remaining: 1.91s
24:	learn: 16.7636157	total: 627ms	remaining: 1.88s
25:	learn: 16.4987969	total: 652ms	remaining: 1.86s
26:	learn: 16.2204177	total: 675ms	remaining: 1.82s
27:	learn: 15.9525124	total: 699ms	remaining: 1.8s
28:	learn: 15.5905943	total: 723ms	remaining: 1.77s
29:	learn: 15.3628633	total: 774ms	remaining: 1.81s
30:	learn: 15.1420693	total: 802ms	remaining: 1.78s
31:	learn: 14.9419461	total: 828ms	remaining: 1.76s
32:	learn: 14.7386592	total: 855ms	remaining: 1.74s
33:	learn: 14.5398023	total: 881ms	remaining: 1.71s
34:	learn: 14.2644206	total: 906ms	remaining: 1.68s
35:	learn: 14.0168503	total: 932ms	remaining: 1.66s
36:	learn: 13.7687637	total: 958ms	remaining: 1.63s
37:	learn: 13.5855913	total: 991ms	remaining: 1.62s
38:	learn: 13.3656902	total: 1.02s	remaining: 1.59s
39:	learn: 13.2111716	total: 1.04s	remaining: 1.56s
40:	learn: 13.0360149	total: 1.07s	remaining: 1.54s
41:	learn: 12.8789444	total: 1.09s	remaining: 1.51s
42:	learn: 12.6680179	total: 1.12s	remaining: 1.48s
43:	learn: 12.4892268	total: 1.14s	remaining: 1.46s
44:	learn: 12.3275828	total: 1.17s	remaining: 1.43s
45:	learn: 12.2035682	total: 1.2s	remaining: 1.4s
46:	learn: 12.0777397	total: 1.23s	remaining: 1.39s
47:	learn: 11.9055552	total: 1.26s	remaining: 1.36s
48:	learn: 11.7465481	total: 1.28s	remaining: 1.34s
49:	learn: 11.5961200	total: 1.31s	remaining: 1.31s
50:	learn: 11.4305519	total: 1.33s	remaining: 1.28s
51:	learn: 11.2794033	total: 1.36s	remaining: 1.25s
52:	learn: 11.1586950	total: 1.38s	remaining: 1.23s
53:	learn: 11.0432937	total: 1.41s	remaining: 1.2s
54:	learn: 10.9094838	total: 1.44s	remaining: 1.18s
55:	learn: 10.7713451	total: 1.47s	remaining: 1.15s
56:	learn: 10.6664177	total: 1.49s	remaining: 1.12s
57:	learn: 10.5600117	total: 1.51s	remaining: 1.1s
58:	learn: 10.4438974	total: 1.54s	remaining: 1.07s
59:	learn: 10.3294224	total: 1.56s	remaining: 1.04s
60:	learn: 10.2510301	total: 1.59s	remaining: 1.01s
61:	learn: 10.1363264	total: 1.61s	remaining: 989ms
62:	learn: 10.0415049	total: 1.64s	remaining: 963ms
63:	learn: 9.9499833	total: 1.67s	remaining: 941ms
64:	learn: 9.8774263	total: 1.7s	remaining: 917ms
65:	learn: 9.7458853	total: 1.73s	remaining: 890ms
66:	learn: 9.6733951	total: 1.75s	remaining: 864ms
67:	learn: 9.5861856	total: 1.78s	remaining: 838ms
68:	learn: 9.4524193	total: 1.8s	remaining: 811ms
69:	learn: 9.3501165	total: 1.83s	remaining: 785ms
70:	learn: 9.3092902	total: 1.86s	remaining: 759ms
71:	learn: 9.2244222	total: 1.89s	remaining: 735ms
72:	learn: 9.1554253	total: 1.92s	remaining: 709ms
73:	learn: 9.1098892	total: 1.94s	remaining: 682ms
74:	learn: 9.0210213	total: 1.96s	remaining: 655ms
75:	learn: 8.9303181	total: 1.99s	remaining: 628ms
76:	learn: 8.8489769	total: 2.01s	remaining: 601ms
77:	learn: 8.7651580	total: 2.04s	remaining: 574ms
78:	learn: 8.7126796	total: 2.06s	remaining: 548ms
79:	learn: 8.6404554	total: 2.08s	remaining: 521ms
80:	learn: 8.5844756	total: 2.12s	remaining: 497ms
81:	learn: 8.5234333	total: 2.14s	remaining: 470ms
82:	learn: 8.4298762	total: 2.17s	remaining: 444ms
83:	learn: 8.3483002	total: 2.19s	remaining: 418ms
84:	learn: 8.2670647	total: 2.22s	remaining: 392ms
85:	learn: 8.1917398	total: 2.24s	remaining: 365ms
86:	learn: 8.1073642	total: 2.27s	remaining: 339ms
87:	learn: 8.0633288	total: 2.29s	remaining: 313ms
88:	learn: 8.0107997	total: 2.33s	remaining: 287ms
89:	learn: 7.9563547	total: 2.35s	remaining: 261ms
90:	learn: 7.8811408	total: 2.38s	remaining: 235ms
91:	learn: 7.8096107	total: 2.4s	remaining: 209ms
92:	learn: 7.7481700	total: 2.42s	remaining: 182ms
93:	learn: 7.6847843	total: 2.45s	remaining: 156ms
94:	learn: 7.6252335	total: 2.47s	remaining: 130ms
95:	learn: 7.5593148	total: 2.5s	remaining: 104ms
96:	learn: 7.5042331	total: 2.52s	remaining: 78ms
97:	learn: 7.4553707	total: 2.55s	remaining: 52.1ms
98:	learn: 7.4035691	total: 2.58s	remaining: 26.1ms
99:	learn: 7.3457537	total: 2.61s	remaining: 0us
0:	learn: 42.5901652	total: 23.7ms	remaining: 2.34s
1:	learn: 41.2917733	total: 46.7ms	remaining: 2.29s
2:	learn: 40.0285549	total: 71.5ms	remaining: 2.31s
3:	learn: 38.9051734	total: 97.1ms	remaining: 2.33s
4:	learn: 37.7712063	total: 127ms	remaining: 2.41s
5:	learn: 36.6826884	total: 152ms	remaining: 2.37s
6:	learn: 35.6341048	total: 175ms	remaining: 2.33s
7:	learn: 34.5035449	total: 199ms	remaining: 2.29s
8:	learn: 33.5636424	total: 222ms	remaining: 2.24s
9:	learn: 32.5970644	total: 246ms	remaining: 2.21s
10:	learn: 31.8528815	total: 269ms	remaining: 2.18s
11:	learn: 31.0330095	total: 294ms	remaining: 2.15s
12:	learn: 30.3119851	total: 322ms	remaining: 2.15s
13:	learn: 29.5212022	total: 355ms	remaining: 2.18s
14:	learn: 28.7182657	total: 380ms	remaining: 2.15s
15:	learn: 28.0433195	total: 404ms	remaining: 2.12s
16:	learn: 27.2966576	total: 429ms	remaining: 2.1s
17:	learn: 26.5122856	total: 454ms	remaining: 2.07s
18:	learn: 25.8998213	total: 478ms	remaining: 2.04s
19:	learn: 25.2416026	total: 502ms	remaining: 2.01s
20:	learn: 24.6399819	total: 527ms	remaining: 1.98s
21:	learn: 24.0372756	total: 559ms	remaining: 1.98s
22:	learn: 23.4553733	total: 583ms	remaining: 1.95s
23:	learn: 22.9027871	total: 608ms	remaining: 1.92s
24:	learn: 22.4470878	total: 633ms	remaining: 1.9s
25:	learn: 21.9143721	total: 658ms	remaining: 1.87s
26:	learn: 21.4979516	total: 682ms	remaining: 1.84s
27:	learn: 21.0867622	total: 706ms	remaining: 1.82s
28:	learn: 20.6187419	total: 738ms	remaining: 1.81s
29:	learn: 20.1662373	total: 765ms	remaining: 1.78s
30:	learn: 19.8225041	total: 790ms	remaining: 1.76s
31:	learn: 19.4539400	total: 814ms	remaining: 1.73s
32:	learn: 19.1127000	total: 839ms	remaining: 1.7s
33:	learn: 18.7767435	total: 864ms	remaining: 1.68s
34:	learn: 18.4038779	total: 887ms	remaining: 1.65s
35:	learn: 18.0021121	total: 923ms	remaining: 1.64s
36:	learn: 17.6673419	total: 952ms	remaining: 1.62s
37:	learn: 17.3562137	total: 985ms	remaining: 1.61s
38:	learn: 17.0128082	total: 1.01s	remaining: 1.58s
39:	learn: 16.7572783	total: 1.04s	remaining: 1.56s
40:	learn: 16.4883778	total: 1.06s	remaining: 1.53s
41:	learn: 16.1756364	total: 1.09s	remaining: 1.51s
42:	learn: 15.9150506	total: 1.12s	remaining: 1.48s
43:	learn: 15.6787555	total: 1.15s	remaining: 1.46s
44:	learn: 15.3862120	total: 1.19s	remaining: 1.46s
45:	learn: 15.1512250	total: 1.22s	remaining: 1.43s
46:	learn: 14.9410960	total: 1.25s	remaining: 1.41s
47:	learn: 14.7086321	total: 1.28s	remaining: 1.38s
48:	learn: 14.5065360	total: 1.3s	remaining: 1.36s
49:	learn: 14.3007466	total: 1.33s	remaining: 1.33s
50:	learn: 14.0972724	total: 1.36s	remaining: 1.3s
51:	learn: 13.8793525	total: 1.39s	remaining: 1.28s
52:	learn: 13.6381311	total: 1.43s	remaining: 1.26s
53:	learn: 13.4603568	total: 1.45s	remaining: 1.24s
54:	learn: 13.2856920	total: 1.48s	remaining: 1.21s
55:	learn: 13.1350779	total: 1.5s	remaining: 1.18s
56:	learn: 13.0110083	total: 1.53s	remaining: 1.16s
57:	learn: 12.8405210	total: 1.56s	remaining: 1.13s
58:	learn: 12.6793938	total: 1.59s	remaining: 1.1s
59:	learn: 12.5497475	total: 1.62s	remaining: 1.08s
60:	learn: 12.4319334	total: 1.66s	remaining: 1.06s
61:	learn: 12.2780964	total: 1.69s	remaining: 1.03s
62:	learn: 12.1187174	total: 1.71s	remaining: 1.01s
63:	learn: 11.9635081	total: 1.74s	remaining: 979ms
64:	learn: 11.8366366	total: 1.77s	remaining: 952ms
65:	learn: 11.6598347	total: 1.79s	remaining: 924ms
66:	learn: 11.5227416	total: 1.82s	remaining: 898ms
67:	learn: 11.4058818	total: 1.85s	remaining: 873ms
68:	learn: 11.2627892	total: 1.89s	remaining: 849ms
69:	learn: 11.1415094	total: 1.92s	remaining: 821ms
70:	learn: 11.0703329	total: 1.94s	remaining: 794ms
71:	learn: 10.9568944	total: 1.97s	remaining: 766ms
72:	learn: 10.8314078	total: 2s	remaining: 739ms
73:	learn: 10.7320013	total: 2.02s	remaining: 711ms
74:	learn: 10.6191666	total: 2.06s	remaining: 688ms
75:	learn: 10.5156798	total: 2.09s	remaining: 661ms
76:	learn: 10.4174442	total: 2.12s	remaining: 633ms
77:	learn: 10.3318165	total: 2.15s	remaining: 608ms
78:	learn: 10.2300435	total: 2.18s	remaining: 581ms
79:	learn: 10.1665911	total: 2.21s	remaining: 553ms
80:	learn: 10.1030585	total: 2.24s	remaining: 525ms
81:	learn: 10.0254875	total: 2.27s	remaining: 500ms
82:	learn: 9.9387640	total: 2.31s	remaining: 472ms
83:	learn: 9.8289920	total: 2.33s	remaining: 444ms
84:	learn: 9.7629500	total: 2.36s	remaining: 416ms
85:	learn: 9.6778611	total: 2.39s	remaining: 389ms
86:	learn: 9.5920617	total: 2.42s	remaining: 361ms
87:	learn: 9.4931297	total: 2.44s	remaining: 333ms
88:	learn: 9.4010604	total: 2.47s	remaining: 306ms
89:	learn: 9.3328614	total: 2.51s	remaining: 279ms
90:	learn: 9.2409094	total: 2.54s	remaining: 251ms
91:	learn: 9.1214245	total: 2.57s	remaining: 223ms
92:	learn: 9.0795335	total: 2.6s	remaining: 195ms
93:	learn: 8.9777250	total: 2.63s	remaining: 168ms
94:	learn: 8.9059891	total: 2.66s	remaining: 140ms
95:	learn: 8.8343294	total: 2.7s	remaining: 113ms
96:	learn: 8.7237295	total: 2.73s	remaining: 84.5ms
97:	learn: 8.6401509	total: 2.76s	remaining: 56.3ms
98:	learn: 8.5735108	total: 2.78s	remaining: 28.1ms
99:	learn: 8.5084579	total: 2.81s	remaining: 0us
0:	learn: 46.1633714	total: 27.4ms	remaining: 2.71s
1:	learn: 44.7904617	total: 63.6ms	remaining: 3.12s
2:	learn: 43.5292386	total: 98.7ms	remaining: 3.19s
3:	learn: 42.3776226	total: 127ms	remaining: 3.04s
4:	learn: 41.1726533	total: 154ms	remaining: 2.93s
5:	learn: 40.0256490	total: 182ms	remaining: 2.85s
6:	learn: 39.0318588	total: 211ms	remaining: 2.8s
7:	learn: 38.0361181	total: 238ms	remaining: 2.73s
8:	learn: 37.0398789	total: 265ms	remaining: 2.68s
9:	learn: 36.0525089	total: 293ms	remaining: 2.64s
10:	learn: 35.0926830	total: 333ms	remaining: 2.7s
11:	learn: 34.1467022	total: 360ms	remaining: 2.64s
12:	learn: 33.5625454	total: 386ms	remaining: 2.58s
13:	learn: 32.7993162	total: 412ms	remaining: 2.53s
14:	learn: 32.1179593	total: 440ms	remaining: 2.49s
15:	learn: 31.5382898	total: 468ms	remaining: 2.46s
16:	learn: 30.8398862	total: 496ms	remaining: 2.42s
17:	learn: 30.1060070	total: 533ms	remaining: 2.43s
18:	learn: 29.3826415	total: 570ms	remaining: 2.43s
19:	learn: 28.5809579	total: 597ms	remaining: 2.39s
20:	learn: 28.0104942	total: 626ms	remaining: 2.35s
21:	learn: 27.5189566	total: 653ms	remaining: 2.32s
22:	learn: 26.8603656	total: 680ms	remaining: 2.28s
23:	learn: 26.2547050	total: 708ms	remaining: 2.24s
24:	learn: 25.6559137	total: 741ms	remaining: 2.22s
25:	learn: 25.1148352	total: 769ms	remaining: 2.19s
26:	learn: 24.5782363	total: 802ms	remaining: 2.17s
27:	learn: 24.0350871	total: 828ms	remaining: 2.13s
28:	learn: 23.5119480	total: 854ms	remaining: 2.09s
29:	learn: 23.1119795	total: 882ms	remaining: 2.06s
30:	learn: 22.6838288	total: 909ms	remaining: 2.02s
31:	learn: 22.2554624	total: 937ms	remaining: 1.99s
32:	learn: 21.8241578	total: 975ms	remaining: 1.98s
33:	learn: 21.5062830	total: 1s	remaining: 1.95s
34:	learn: 21.0109226	total: 1.04s	remaining: 1.93s
35:	learn: 20.5518606	total: 1.07s	remaining: 1.9s
36:	learn: 20.1195339	total: 1.09s	remaining: 1.86s
37:	learn: 19.7143479	total: 1.12s	remaining: 1.83s
38:	learn: 19.3325253	total: 1.15s	remaining: 1.79s
39:	learn: 19.0310706	total: 1.18s	remaining: 1.76s
40:	learn: 18.7262797	total: 1.21s	remaining: 1.74s
41:	learn: 18.3611836	total: 1.24s	remaining: 1.71s
42:	learn: 17.9960838	total: 1.26s	remaining: 1.67s
43:	learn: 17.7058991	total: 1.3s	remaining: 1.65s
44:	learn: 17.3944673	total: 1.32s	remaining: 1.62s
45:	learn: 17.1283561	total: 1.35s	remaining: 1.58s
46:	learn: 16.8406890	total: 1.38s	remaining: 1.55s
47:	learn: 16.6072061	total: 1.42s	remaining: 1.53s
48:	learn: 16.3697411	total: 1.44s	remaining: 1.5s
49:	learn: 15.9995507	total: 1.47s	remaining: 1.47s
50:	learn: 15.7372570	total: 1.5s	remaining: 1.44s
51:	learn: 15.4840152	total: 1.53s	remaining: 1.42s
52:	learn: 15.2899590	total: 1.56s	remaining: 1.39s
53:	learn: 15.0111064	total: 1.59s	remaining: 1.35s
54:	learn: 14.7504952	total: 1.62s	remaining: 1.33s
55:	learn: 14.5309762	total: 1.65s	remaining: 1.29s
56:	learn: 14.3525677	total: 1.68s	remaining: 1.26s
57:	learn: 14.1816296	total: 1.7s	remaining: 1.23s
58:	learn: 13.9958516	total: 1.73s	remaining: 1.2s
59:	learn: 13.8356735	total: 1.76s	remaining: 1.17s
60:	learn: 13.6499824	total: 1.79s	remaining: 1.15s
61:	learn: 13.4621357	total: 1.82s	remaining: 1.12s
62:	learn: 13.3234970	total: 1.85s	remaining: 1.09s
63:	learn: 13.1407122	total: 1.88s	remaining: 1.06s
64:	learn: 13.0161177	total: 1.91s	remaining: 1.03s
65:	learn: 12.8361175	total: 1.93s	remaining: 996ms
66:	learn: 12.7103117	total: 1.96s	remaining: 966ms
67:	learn: 12.5145429	total: 1.99s	remaining: 935ms
68:	learn: 12.3966318	total: 2.02s	remaining: 909ms
69:	learn: 12.2175623	total: 2.06s	remaining: 881ms
70:	learn: 12.0455583	total: 2.08s	remaining: 851ms
71:	learn: 11.9190589	total: 2.11s	remaining: 820ms
72:	learn: 11.7990452	total: 2.14s	remaining: 790ms
73:	learn: 11.6735331	total: 2.16s	remaining: 760ms
74:	learn: 11.5694753	total: 2.19s	remaining: 730ms
75:	learn: 11.4471422	total: 2.22s	remaining: 700ms
76:	learn: 11.3357642	total: 2.25s	remaining: 673ms
77:	learn: 11.2160164	total: 2.29s	remaining: 646ms
78:	learn: 11.1477947	total: 2.32s	remaining: 616ms
79:	learn: 11.0733969	total: 2.35s	remaining: 587ms
80:	learn: 10.9851608	total: 2.37s	remaining: 557ms
81:	learn: 10.8669537	total: 2.4s	remaining: 527ms
82:	learn: 10.7846130	total: 2.43s	remaining: 497ms
83:	learn: 10.6429068	total: 2.46s	remaining: 468ms
84:	learn: 10.5485368	total: 2.49s	remaining: 440ms
85:	learn: 10.4626750	total: 2.53s	remaining: 411ms
86:	learn: 10.3487863	total: 2.55s	remaining: 382ms
87:	learn: 10.2608682	total: 2.58s	remaining: 352ms
88:	learn: 10.1492862	total: 2.61s	remaining: 322ms
89:	learn: 10.0825429	total: 2.63s	remaining: 293ms
90:	learn: 9.9668337	total: 2.66s	remaining: 263ms
91:	learn: 9.8924239	total: 2.69s	remaining: 234ms
92:	learn: 9.7959729	total: 2.73s	remaining: 206ms
93:	learn: 9.7342503	total: 2.76s	remaining: 176ms
94:	learn: 9.6266181	total: 2.79s	remaining: 147ms
95:	learn: 9.5607316	total: 2.82s	remaining: 117ms
96:	learn: 9.4615938	total: 2.84s	remaining: 88ms
97:	learn: 9.3562852	total: 2.87s	remaining: 58.6ms
98:	learn: 9.2518786	total: 2.9s	remaining: 29.3ms
99:	learn: 9.2130065	total: 2.93s	remaining: 0us
0:	learn: 45.6477780	total: 26.3ms	remaining: 2.6s
1:	learn: 44.3885048	total: 61.2ms	remaining: 3s
2:	learn: 43.1316502	total: 87.5ms	remaining: 2.83s
3:	learn: 41.8123054	total: 113ms	remaining: 2.71s
4:	learn: 40.7214533	total: 140ms	remaining: 2.66s
5:	learn: 39.6276122	total: 166ms	remaining: 2.61s
6:	learn: 38.6471225	total: 195ms	remaining: 2.59s
7:	learn: 37.7493668	total: 240ms	remaining: 2.76s
8:	learn: 36.7733816	total: 266ms	remaining: 2.69s
9:	learn: 36.1233521	total: 292ms	remaining: 2.63s
10:	learn: 35.5715091	total: 319ms	remaining: 2.58s
11:	learn: 34.6287751	total: 345ms	remaining: 2.53s
12:	learn: 33.8024988	total: 370ms	remaining: 2.48s
13:	learn: 33.0699864	total: 397ms	remaining: 2.44s
14:	learn: 32.2267139	total: 429ms	remaining: 2.43s
15:	learn: 31.4879090	total: 455ms	remaining: 2.39s
16:	learn: 30.6681130	total: 479ms	remaining: 2.34s
17:	learn: 29.9739192	total: 504ms	remaining: 2.29s
18:	learn: 29.3293065	total: 528ms	remaining: 2.25s
19:	learn: 28.5893418	total: 553ms	remaining: 2.21s
20:	learn: 28.0793862	total: 578ms	remaining: 2.17s
21:	learn: 27.5553702	total: 604ms	remaining: 2.14s
22:	learn: 27.0123732	total: 629ms	remaining: 2.11s
23:	learn: 26.3897992	total: 666ms	remaining: 2.11s
24:	learn: 25.7405079	total: 694ms	remaining: 2.08s
25:	learn: 25.2366375	total: 720ms	remaining: 2.05s
26:	learn: 24.8040727	total: 746ms	remaining: 2.02s
27:	learn: 24.3831145	total: 772ms	remaining: 1.98s
28:	learn: 23.9264258	total: 796ms	remaining: 1.95s
29:	learn: 23.4965665	total: 824ms	remaining: 1.92s
30:	learn: 23.0750907	total: 854ms	remaining: 1.9s
31:	learn: 22.6177456	total: 879ms	remaining: 1.87s
32:	learn: 22.1936903	total: 903ms	remaining: 1.83s
33:	learn: 21.7237373	total: 929ms	remaining: 1.8s
34:	learn: 21.2885821	total: 954ms	remaining: 1.77s
35:	learn: 20.8773820	total: 977ms	remaining: 1.74s
36:	learn: 20.5069022	total: 1s	remaining: 1.71s
37:	learn: 20.1026772	total: 1.03s	remaining: 1.68s
38:	learn: 19.7278063	total: 1.05s	remaining: 1.65s
39:	learn: 19.4576176	total: 1.09s	remaining: 1.63s
40:	learn: 19.1716041	total: 1.11s	remaining: 1.6s
41:	learn: 18.8541728	total: 1.14s	remaining: 1.57s
42:	learn: 18.6411979	total: 1.16s	remaining: 1.54s
43:	learn: 18.3146636	total: 1.19s	remaining: 1.52s
44:	learn: 18.0208582	total: 1.22s	remaining: 1.49s
45:	learn: 17.7344521	total: 1.24s	remaining: 1.46s
46:	learn: 17.4797974	total: 1.27s	remaining: 1.44s
47:	learn: 17.2182299	total: 1.3s	remaining: 1.41s
48:	learn: 16.9607453	total: 1.32s	remaining: 1.38s
49:	learn: 16.7297863	total: 1.35s	remaining: 1.35s
50:	learn: 16.4913674	total: 1.37s	remaining: 1.32s
51:	learn: 16.2886548	total: 1.4s	remaining: 1.29s
52:	learn: 16.0297055	total: 1.42s	remaining: 1.26s
53:	learn: 15.8558289	total: 1.45s	remaining: 1.23s
54:	learn: 15.6256772	total: 1.48s	remaining: 1.21s
55:	learn: 15.4571057	total: 1.51s	remaining: 1.19s
56:	learn: 15.2857211	total: 1.54s	remaining: 1.16s
57:	learn: 15.0790849	total: 1.56s	remaining: 1.13s
58:	learn: 14.8706573	total: 1.59s	remaining: 1.1s
59:	learn: 14.7142314	total: 1.61s	remaining: 1.07s
60:	learn: 14.5574075	total: 1.64s	remaining: 1.05s
61:	learn: 14.3831719	total: 1.67s	remaining: 1.02s
62:	learn: 14.2429846	total: 1.69s	remaining: 994ms
63:	learn: 14.0982260	total: 1.73s	remaining: 971ms
64:	learn: 13.9793470	total: 1.75s	remaining: 944ms
65:	learn: 13.7843655	total: 1.78s	remaining: 916ms
66:	learn: 13.6382336	total: 1.8s	remaining: 887ms
67:	learn: 13.5395713	total: 1.83s	remaining: 860ms
68:	learn: 13.3797741	total: 1.85s	remaining: 833ms
69:	learn: 13.2910103	total: 1.88s	remaining: 805ms
70:	learn: 13.1587887	total: 1.9s	remaining: 778ms
71:	learn: 13.0464642	total: 1.94s	remaining: 754ms
72:	learn: 12.9189091	total: 1.97s	remaining: 727ms
73:	learn: 12.8056893	total: 1.99s	remaining: 700ms
74:	learn: 12.6904403	total: 2.02s	remaining: 673ms
75:	learn: 12.5608506	total: 2.04s	remaining: 646ms
76:	learn: 12.4712551	total: 2.07s	remaining: 618ms
77:	learn: 12.3371889	total: 2.09s	remaining: 591ms
78:	learn: 12.2449022	total: 2.12s	remaining: 564ms
79:	learn: 12.2163788	total: 2.15s	remaining: 538ms
80:	learn: 12.1464820	total: 2.18s	remaining: 511ms
81:	learn: 12.0001066	total: 2.2s	remaining: 484ms
82:	learn: 11.8843691	total: 2.23s	remaining: 456ms
83:	learn: 11.7638631	total: 2.25s	remaining: 429ms
84:	learn: 11.6389646	total: 2.28s	remaining: 402ms
85:	learn: 11.5343065	total: 2.3s	remaining: 375ms
86:	learn: 11.4267531	total: 2.33s	remaining: 348ms
87:	learn: 11.3136728	total: 2.36s	remaining: 322ms
88:	learn: 11.2361574	total: 2.39s	remaining: 295ms
89:	learn: 11.1507886	total: 2.42s	remaining: 268ms
90:	learn: 11.0988952	total: 2.44s	remaining: 241ms
91:	learn: 10.9988426	total: 2.47s	remaining: 215ms
92:	learn: 10.9584792	total: 2.49s	remaining: 188ms
93:	learn: 10.8771461	total: 2.52s	remaining: 161ms
94:	learn: 10.8161358	total: 2.54s	remaining: 134ms
95:	learn: 10.7524450	total: 2.57s	remaining: 107ms
96:	learn: 10.6566836	total: 2.6s	remaining: 80.4ms
97:	learn: 10.5550602	total: 2.63s	remaining: 53.6ms
98:	learn: 10.4790583	total: 2.65s	remaining: 26.8ms
99:	learn: 10.4087354	total: 2.68s	remaining: 0us
0:	learn: 46.5398832	total: 27.7ms	remaining: 2.75s
1:	learn: 45.3142618	total: 58.1ms	remaining: 2.85s
2:	learn: 44.0378137	total: 83.4ms	remaining: 2.7s
3:	learn: 42.7976734	total: 107ms	remaining: 2.57s
4:	learn: 41.7080859	total: 131ms	remaining: 2.5s
5:	learn: 40.4513327	total: 155ms	remaining: 2.43s
6:	learn: 39.4903346	total: 180ms	remaining: 2.4s
7:	learn: 38.3767870	total: 204ms	remaining: 2.35s
8:	learn: 37.4056810	total: 228ms	remaining: 2.3s
9:	learn: 36.4947716	total: 252ms	remaining: 2.27s
10:	learn: 35.4421832	total: 277ms	remaining: 2.24s
11:	learn: 34.6183487	total: 289ms	remaining: 2.12s
12:	learn: 33.9603524	total: 321ms	remaining: 2.15s
13:	learn: 33.0635534	total: 345ms	remaining: 2.12s
14:	learn: 32.2067999	total: 369ms	remaining: 2.09s
15:	learn: 31.3961282	total: 393ms	remaining: 2.06s
16:	learn: 30.7113239	total: 416ms	remaining: 2.03s
17:	learn: 29.9919005	total: 441ms	remaining: 2.01s
18:	learn: 29.4016891	total: 464ms	remaining: 1.98s
19:	learn: 28.7435066	total: 488ms	remaining: 1.95s
20:	learn: 28.2283605	total: 514ms	remaining: 1.94s
21:	learn: 27.6749781	total: 551ms	remaining: 1.95s
22:	learn: 27.1695356	total: 576ms	remaining: 1.93s
23:	learn: 26.6842901	total: 601ms	remaining: 1.9s
24:	learn: 26.0987344	total: 625ms	remaining: 1.88s
25:	learn: 25.5266873	total: 649ms	remaining: 1.85s
26:	learn: 25.0200431	total: 674ms	remaining: 1.82s
27:	learn: 24.5972016	total: 698ms	remaining: 1.79s
28:	learn: 24.1557061	total: 722ms	remaining: 1.77s
29:	learn: 23.7405036	total: 752ms	remaining: 1.75s
30:	learn: 23.3574513	total: 777ms	remaining: 1.73s
31:	learn: 23.0493499	total: 801ms	remaining: 1.7s
32:	learn: 22.6480655	total: 825ms	remaining: 1.67s
33:	learn: 22.2777353	total: 848ms	remaining: 1.65s
34:	learn: 21.8294628	total: 871ms	remaining: 1.62s
35:	learn: 21.4783115	total: 896ms	remaining: 1.59s
36:	learn: 21.1271427	total: 921ms	remaining: 1.57s
37:	learn: 20.7967443	total: 953ms	remaining: 1.55s
38:	learn: 20.4949793	total: 981ms	remaining: 1.53s
39:	learn: 20.1991695	total: 1.01s	remaining: 1.51s
40:	learn: 19.8869467	total: 1.03s	remaining: 1.49s
41:	learn: 19.5656862	total: 1.06s	remaining: 1.46s
42:	learn: 19.2415335	total: 1.08s	remaining: 1.44s
43:	learn: 18.9725471	total: 1.11s	remaining: 1.41s
44:	learn: 18.7035722	total: 1.13s	remaining: 1.39s
45:	learn: 18.3840395	total: 1.16s	remaining: 1.36s
46:	learn: 18.1486662	total: 1.19s	remaining: 1.34s
47:	learn: 17.8740440	total: 1.22s	remaining: 1.32s
48:	learn: 17.6056273	total: 1.24s	remaining: 1.29s
49:	learn: 17.4011083	total: 1.26s	remaining: 1.26s
50:	learn: 17.1935449	total: 1.29s	remaining: 1.24s
51:	learn: 16.9415227	total: 1.31s	remaining: 1.21s
52:	learn: 16.6568624	total: 1.34s	remaining: 1.19s
53:	learn: 16.4254479	total: 1.36s	remaining: 1.16s
54:	learn: 16.1958120	total: 1.4s	remaining: 1.15s
55:	learn: 15.9494332	total: 1.43s	remaining: 1.12s
56:	learn: 15.7736632	total: 1.45s	remaining: 1.09s
57:	learn: 15.6314122	total: 1.48s	remaining: 1.07s
58:	learn: 15.3707626	total: 1.5s	remaining: 1.04s
59:	learn: 15.2211664	total: 1.52s	remaining: 1.02s
60:	learn: 14.9939278	total: 1.55s	remaining: 991ms
61:	learn: 14.8327626	total: 1.58s	remaining: 966ms
62:	learn: 14.6555776	total: 1.61s	remaining: 948ms
63:	learn: 14.5516961	total: 1.64s	remaining: 923ms
64:	learn: 14.3660780	total: 1.67s	remaining: 898ms
65:	learn: 14.1721909	total: 1.7s	remaining: 873ms
66:	learn: 14.0877696	total: 1.72s	remaining: 848ms
67:	learn: 13.9435793	total: 1.75s	remaining: 823ms
68:	learn: 13.7745805	total: 1.77s	remaining: 798ms
69:	learn: 13.6490858	total: 1.81s	remaining: 776ms
70:	learn: 13.5022080	total: 1.84s	remaining: 752ms
71:	learn: 13.3922163	total: 1.87s	remaining: 727ms
72:	learn: 13.2842701	total: 1.9s	remaining: 702ms
73:	learn: 13.1698693	total: 1.93s	remaining: 679ms
74:	learn: 13.0256610	total: 1.96s	remaining: 654ms
75:	learn: 12.8855147	total: 1.99s	remaining: 629ms
76:	learn: 12.7807971	total: 2.02s	remaining: 604ms
77:	learn: 12.6618407	total: 2.05s	remaining: 578ms
78:	learn: 12.5369866	total: 2.08s	remaining: 552ms
79:	learn: 12.4376925	total: 2.1s	remaining: 526ms
80:	learn: 12.3005012	total: 2.13s	remaining: 500ms
81:	learn: 12.1751315	total: 2.16s	remaining: 475ms
82:	learn: 12.0612289	total: 2.19s	remaining: 449ms
83:	learn: 11.9757193	total: 2.22s	remaining: 423ms
84:	learn: 11.8530411	total: 2.26s	remaining: 399ms
85:	learn: 11.7523616	total: 2.29s	remaining: 373ms
86:	learn: 11.6645272	total: 2.32s	remaining: 346ms
87:	learn: 11.5645111	total: 2.34s	remaining: 320ms
88:	learn: 11.4692480	total: 2.37s	remaining: 293ms
89:	learn: 11.3724902	total: 2.4s	remaining: 267ms
90:	learn: 11.2842147	total: 2.43s	remaining: 241ms
91:	learn: 11.1868295	total: 2.46s	remaining: 214ms
92:	learn: 11.0293625	total: 2.5s	remaining: 188ms
93:	learn: 10.9495625	total: 2.52s	remaining: 161ms
94:	learn: 10.8608168	total: 2.55s	remaining: 134ms
95:	learn: 10.7804780	total: 2.58s	remaining: 107ms
96:	learn: 10.6503623	total: 2.6s	remaining: 80.5ms
97:	learn: 10.5906748	total: 2.63s	remaining: 53.7ms
98:	learn: 10.4539468	total: 2.67s	remaining: 26.9ms
99:	learn: 10.3804160	total: 2.7s	remaining: 0us
0:	learn: 27.3441720	total: 22.4ms	remaining: 2.22s
1:	learn: 26.7159954	total: 45.5ms	remaining: 2.23s
2:	learn: 26.0850318	total: 69.3ms	remaining: 2.24s
3:	learn: 25.4039656	total: 93.9ms	remaining: 2.25s
4:	learn: 24.7930659	total: 128ms	remaining: 2.44s
5:	learn: 24.2028590	total: 154ms	remaining: 2.42s
6:	learn: 23.6622902	total: 180ms	remaining: 2.39s
7:	learn: 23.1531175	total: 211ms	remaining: 2.42s
8:	learn: 22.7050792	total: 234ms	remaining: 2.37s
9:	learn: 22.2151788	total: 258ms	remaining: 2.32s
10:	learn: 21.7708844	total: 281ms	remaining: 2.28s
11:	learn: 21.2587174	total: 304ms	remaining: 2.23s
12:	learn: 20.7559870	total: 329ms	remaining: 2.2s
13:	learn: 20.3040842	total: 365ms	remaining: 2.24s
14:	learn: 19.9019524	total: 391ms	remaining: 2.22s
15:	learn: 19.5186012	total: 417ms	remaining: 2.19s
16:	learn: 19.1521621	total: 441ms	remaining: 2.15s
17:	learn: 18.7652180	total: 473ms	remaining: 2.15s
18:	learn: 18.4446446	total: 496ms	remaining: 2.11s
19:	learn: 18.0977650	total: 520ms	remaining: 2.08s
20:	learn: 17.7791328	total: 552ms	remaining: 2.08s
21:	learn: 17.4777648	total: 576ms	remaining: 2.04s
22:	learn: 17.1794361	total: 599ms	remaining: 2.01s
23:	learn: 16.8685032	total: 623ms	remaining: 1.97s
24:	learn: 16.6274695	total: 646ms	remaining: 1.94s
25:	learn: 16.3071099	total: 669ms	remaining: 1.91s
26:	learn: 16.0249663	total: 693ms	remaining: 1.87s
27:	learn: 15.7535309	total: 724ms	remaining: 1.86s
28:	learn: 15.4777235	total: 750ms	remaining: 1.83s
29:	learn: 15.2410825	total: 781ms	remaining: 1.82s
30:	learn: 15.0133002	total: 806ms	remaining: 1.79s
31:	learn: 14.8018912	total: 832ms	remaining: 1.77s
32:	learn: 14.5701546	total: 857ms	remaining: 1.74s
33:	learn: 14.3799060	total: 883ms	remaining: 1.71s
34:	learn: 14.0975095	total: 906ms	remaining: 1.68s
35:	learn: 13.8873493	total: 930ms	remaining: 1.65s
36:	learn: 13.6812023	total: 952ms	remaining: 1.62s
37:	learn: 13.4943017	total: 987ms	remaining: 1.61s
38:	learn: 13.3224094	total: 1.01s	remaining: 1.58s
39:	learn: 13.0967901	total: 1.04s	remaining: 1.56s
40:	learn: 12.9138190	total: 1.06s	remaining: 1.53s
41:	learn: 12.7764458	total: 1.08s	remaining: 1.5s
42:	learn: 12.6593656	total: 1.11s	remaining: 1.47s
43:	learn: 12.5051105	total: 1.13s	remaining: 1.44s
44:	learn: 12.3057146	total: 1.16s	remaining: 1.41s
45:	learn: 12.1487674	total: 1.18s	remaining: 1.39s
46:	learn: 11.9614903	total: 1.21s	remaining: 1.37s
47:	learn: 11.7921265	total: 1.25s	remaining: 1.35s
48:	learn: 11.6572640	total: 1.27s	remaining: 1.32s
49:	learn: 11.5251463	total: 1.29s	remaining: 1.29s
50:	learn: 11.3789931	total: 1.32s	remaining: 1.27s
51:	learn: 11.2691375	total: 1.34s	remaining: 1.24s
52:	learn: 11.1161131	total: 1.37s	remaining: 1.21s
53:	learn: 11.0246399	total: 1.39s	remaining: 1.19s
54:	learn: 10.9152420	total: 1.42s	remaining: 1.16s
55:	learn: 10.7746769	total: 1.45s	remaining: 1.14s
56:	learn: 10.6222917	total: 1.48s	remaining: 1.11s
57:	learn: 10.5096115	total: 1.5s	remaining: 1.09s
58:	learn: 10.3857030	total: 1.52s	remaining: 1.06s
59:	learn: 10.2789057	total: 1.55s	remaining: 1.03s
60:	learn: 10.1490749	total: 1.57s	remaining: 1s
61:	learn: 10.0553291	total: 1.59s	remaining: 976ms
62:	learn: 9.9351043	total: 1.62s	remaining: 953ms
63:	learn: 9.8245261	total: 1.65s	remaining: 930ms
64:	learn: 9.7207577	total: 1.68s	remaining: 903ms
65:	learn: 9.5920661	total: 1.7s	remaining: 877ms
66:	learn: 9.4832767	total: 1.74s	remaining: 855ms
67:	learn: 9.3724149	total: 1.76s	remaining: 828ms
68:	learn: 9.2459801	total: 1.78s	remaining: 801ms
69:	learn: 9.1740635	total: 1.81s	remaining: 775ms
70:	learn: 9.1015730	total: 1.83s	remaining: 748ms
71:	learn: 9.0196460	total: 1.86s	remaining: 724ms
72:	learn: 8.9458977	total: 1.89s	remaining: 697ms
73:	learn: 8.8434400	total: 1.91s	remaining: 670ms
74:	learn: 8.7495151	total: 1.93s	remaining: 644ms
75:	learn: 8.6521348	total: 1.95s	remaining: 617ms
76:	learn: 8.5654483	total: 1.98s	remaining: 593ms
77:	learn: 8.4965765	total: 2.01s	remaining: 566ms
78:	learn: 8.4308736	total: 2.03s	remaining: 540ms
79:	learn: 8.3675601	total: 2.06s	remaining: 515ms
80:	learn: 8.3193887	total: 2.09s	remaining: 490ms
81:	learn: 8.2507990	total: 2.12s	remaining: 465ms
82:	learn: 8.1583259	total: 2.14s	remaining: 439ms
83:	learn: 8.0995902	total: 2.17s	remaining: 413ms
84:	learn: 8.0236655	total: 2.19s	remaining: 387ms
85:	learn: 7.9634698	total: 2.21s	remaining: 360ms
86:	learn: 7.9109081	total: 2.25s	remaining: 336ms
87:	learn: 7.8385006	total: 2.27s	remaining: 310ms
88:	learn: 7.7859488	total: 2.3s	remaining: 284ms
89:	learn: 7.7270142	total: 2.32s	remaining: 258ms
90:	learn: 7.6774253	total: 2.35s	remaining: 232ms
91:	learn: 7.6126552	total: 2.37s	remaining: 206ms
92:	learn: 7.5392178	total: 2.39s	remaining: 180ms
93:	learn: 7.4745082	total: 2.41s	remaining: 154ms
94:	learn: 7.4106939	total: 2.44s	remaining: 128ms
95:	learn: 7.3573350	total: 2.47s	remaining: 103ms
96:	learn: 7.2889777	total: 2.5s	remaining: 77.5ms
97:	learn: 7.2204939	total: 2.53s	remaining: 51.6ms
98:	learn: 7.1646465	total: 2.55s	remaining: 25.8ms
99:	learn: 7.1204610	total: 2.58s	remaining: 0us
0:	learn: 42.5494645	total: 22.7ms	remaining: 2.24s
1:	learn: 41.2913513	total: 47.4ms	remaining: 2.32s
2:	learn: 40.1676527	total: 73.1ms	remaining: 2.36s
3:	learn: 38.7664819	total: 103ms	remaining: 2.48s
4:	learn: 37.5407492	total: 126ms	remaining: 2.39s
5:	learn: 36.4295331	total: 156ms	remaining: 2.45s
6:	learn: 35.2895967	total: 180ms	remaining: 2.39s
7:	learn: 34.1884539	total: 204ms	remaining: 2.34s
8:	learn: 33.1817690	total: 227ms	remaining: 2.29s
9:	learn: 32.3518195	total: 251ms	remaining: 2.26s
10:	learn: 31.4837515	total: 280ms	remaining: 2.26s
11:	learn: 30.7255972	total: 307ms	remaining: 2.25s
12:	learn: 29.9298648	total: 332ms	remaining: 2.22s
13:	learn: 29.0574249	total: 356ms	remaining: 2.19s
14:	learn: 28.4097384	total: 381ms	remaining: 2.16s
15:	learn: 27.5317445	total: 417ms	remaining: 2.19s
16:	learn: 26.7911946	total: 439ms	remaining: 2.14s
17:	learn: 26.1103465	total: 463ms	remaining: 2.11s
18:	learn: 25.5295903	total: 487ms	remaining: 2.08s
19:	learn: 24.8544960	total: 513ms	remaining: 2.05s
20:	learn: 24.2772682	total: 541ms	remaining: 2.03s
21:	learn: 23.6936944	total: 565ms	remaining: 2s
22:	learn: 23.1300945	total: 590ms	remaining: 1.98s
23:	learn: 22.5333494	total: 616ms	remaining: 1.95s
24:	learn: 22.0553465	total: 640ms	remaining: 1.92s
25:	learn: 21.6253628	total: 675ms	remaining: 1.92s
26:	learn: 21.1396219	total: 701ms	remaining: 1.9s
27:	learn: 20.7382905	total: 728ms	remaining: 1.87s
28:	learn: 20.3233915	total: 761ms	remaining: 1.86s
29:	learn: 19.9323992	total: 786ms	remaining: 1.83s
30:	learn: 19.5650439	total: 812ms	remaining: 1.81s
31:	learn: 19.2165649	total: 837ms	remaining: 1.78s
32:	learn: 18.8890056	total: 861ms	remaining: 1.75s
33:	learn: 18.5523762	total: 885ms	remaining: 1.72s
34:	learn: 18.2666116	total: 909ms	remaining: 1.69s
35:	learn: 17.9216926	total: 944ms	remaining: 1.68s
36:	learn: 17.6118879	total: 974ms	remaining: 1.66s
37:	learn: 17.2653313	total: 999ms	remaining: 1.63s
38:	learn: 16.9946585	total: 1.02s	remaining: 1.6s
39:	learn: 16.6842506	total: 1.05s	remaining: 1.57s
40:	learn: 16.4102287	total: 1.07s	remaining: 1.54s
41:	learn: 16.2288795	total: 1.09s	remaining: 1.51s
42:	learn: 15.9623692	total: 1.12s	remaining: 1.48s
43:	learn: 15.7308231	total: 1.14s	remaining: 1.45s
44:	learn: 15.4695555	total: 1.18s	remaining: 1.44s
45:	learn: 15.2706809	total: 1.21s	remaining: 1.42s
46:	learn: 15.0182699	total: 1.23s	remaining: 1.39s
47:	learn: 14.7702088	total: 1.26s	remaining: 1.36s
48:	learn: 14.6303566	total: 1.28s	remaining: 1.34s
49:	learn: 14.4038016	total: 1.31s	remaining: 1.31s
50:	learn: 14.2309807	total: 1.33s	remaining: 1.28s
51:	learn: 14.0308425	total: 1.35s	remaining: 1.25s
52:	learn: 13.8201931	total: 1.38s	remaining: 1.22s
53:	learn: 13.6070078	total: 1.4s	remaining: 1.2s
54:	learn: 13.4230690	total: 1.44s	remaining: 1.18s
55:	learn: 13.2368649	total: 1.47s	remaining: 1.15s
56:	learn: 13.0449556	total: 1.49s	remaining: 1.12s
57:	learn: 12.8375669	total: 1.52s	remaining: 1.1s
58:	learn: 12.6795194	total: 1.54s	remaining: 1.07s
59:	learn: 12.5197211	total: 1.56s	remaining: 1.04s
60:	learn: 12.4011717	total: 1.58s	remaining: 1.01s
61:	learn: 12.2396104	total: 1.61s	remaining: 987ms
62:	learn: 12.0647878	total: 1.64s	remaining: 964ms
63:	learn: 11.9247719	total: 1.67s	remaining: 938ms
64:	learn: 11.7923634	total: 1.7s	remaining: 915ms
65:	learn: 11.6628246	total: 1.72s	remaining: 888ms
66:	learn: 11.5688935	total: 1.75s	remaining: 861ms
67:	learn: 11.4345056	total: 1.77s	remaining: 834ms
68:	learn: 11.3136955	total: 1.8s	remaining: 808ms
69:	learn: 11.2040357	total: 1.82s	remaining: 782ms
70:	learn: 11.1067773	total: 1.85s	remaining: 757ms
71:	learn: 10.9728105	total: 1.88s	remaining: 730ms
72:	learn: 10.8338607	total: 1.9s	remaining: 703ms
73:	learn: 10.7202016	total: 1.92s	remaining: 676ms
74:	learn: 10.5983746	total: 1.96s	remaining: 652ms
75:	learn: 10.4882458	total: 1.98s	remaining: 625ms
76:	learn: 10.3827604	total: 2s	remaining: 598ms
77:	learn: 10.2485726	total: 2.02s	remaining: 571ms
78:	learn: 10.1524716	total: 2.05s	remaining: 545ms
79:	learn: 10.0765127	total: 2.08s	remaining: 521ms
80:	learn: 9.9617067	total: 2.11s	remaining: 495ms
81:	learn: 9.8357151	total: 2.13s	remaining: 469ms
82:	learn: 9.7311644	total: 2.16s	remaining: 442ms
83:	learn: 9.6314802	total: 2.19s	remaining: 418ms
84:	learn: 9.5137958	total: 2.22s	remaining: 391ms
85:	learn: 9.4420485	total: 2.25s	remaining: 365ms
86:	learn: 9.3959294	total: 2.27s	remaining: 339ms
87:	learn: 9.3057742	total: 2.29s	remaining: 313ms
88:	learn: 9.2031484	total: 2.32s	remaining: 287ms
89:	learn: 9.0996948	total: 2.34s	remaining: 260ms
90:	learn: 9.0492278	total: 2.36s	remaining: 234ms
91:	learn: 8.9400377	total: 2.39s	remaining: 208ms
92:	learn: 8.8904458	total: 2.41s	remaining: 181ms
93:	learn: 8.8102982	total: 2.44s	remaining: 156ms
94:	learn: 8.7445451	total: 2.47s	remaining: 130ms
95:	learn: 8.6796106	total: 2.5s	remaining: 104ms
96:	learn: 8.5875790	total: 2.53s	remaining: 78.2ms
97:	learn: 8.5086871	total: 2.55s	remaining: 52.1ms
98:	learn: 8.4547244	total: 2.58s	remaining: 26ms
99:	learn: 8.3841281	total: 2.6s	remaining: 0us
0:	learn: 46.2258117	total: 2.52ms	remaining: 250ms
1:	learn: 45.1253456	total: 26ms	remaining: 1.27s
2:	learn: 43.7311767	total: 50.7ms	remaining: 1.64s
3:	learn: 42.4252819	total: 81.2ms	remaining: 1.95s
4:	learn: 41.1436655	total: 114ms	remaining: 2.16s
5:	learn: 40.0337136	total: 137ms	remaining: 2.14s
6:	learn: 38.9102686	total: 160ms	remaining: 2.12s
7:	learn: 37.7859737	total: 183ms	remaining: 2.1s
8:	learn: 36.7646905	total: 208ms	remaining: 2.1s
9:	learn: 35.9495481	total: 232ms	remaining: 2.09s
10:	learn: 35.0558185	total: 256ms	remaining: 2.07s
11:	learn: 34.1958090	total: 280ms	remaining: 2.05s
12:	learn: 33.3514013	total: 313ms	remaining: 2.09s
13:	learn: 32.3317086	total: 339ms	remaining: 2.08s
14:	learn: 31.5611046	total: 373ms	remaining: 2.11s
15:	learn: 30.6373573	total: 398ms	remaining: 2.09s
16:	learn: 29.8883669	total: 424ms	remaining: 2.07s
17:	learn: 29.2985952	total: 447ms	remaining: 2.03s
18:	learn: 28.6360550	total: 470ms	remaining: 2s
19:	learn: 27.9757056	total: 494ms	remaining: 1.98s
20:	learn: 27.2585835	total: 526ms	remaining: 1.98s
21:	learn: 26.6366391	total: 552ms	remaining: 1.96s
22:	learn: 26.1055455	total: 577ms	remaining: 1.93s
23:	learn: 25.4961568	total: 601ms	remaining: 1.9s
24:	learn: 25.1037435	total: 633ms	remaining: 1.9s
25:	learn: 24.5258982	total: 656ms	remaining: 1.87s
26:	learn: 23.9974764	total: 681ms	remaining: 1.84s
27:	learn: 23.5108419	total: 707ms	remaining: 1.82s
28:	learn: 23.0835773	total: 738ms	remaining: 1.81s
29:	learn: 22.5744350	total: 765ms	remaining: 1.78s
30:	learn: 22.1357783	total: 790ms	remaining: 1.76s
31:	learn: 21.7316226	total: 815ms	remaining: 1.73s
32:	learn: 21.4082899	total: 842ms	remaining: 1.71s
33:	learn: 20.9640138	total: 871ms	remaining: 1.69s
34:	learn: 20.6379417	total: 894ms	remaining: 1.66s
35:	learn: 20.2688010	total: 919ms	remaining: 1.63s
36:	learn: 19.8479214	total: 949ms	remaining: 1.61s
37:	learn: 19.5684638	total: 974ms	remaining: 1.59s
38:	learn: 19.1826919	total: 996ms	remaining: 1.56s
39:	learn: 18.9583308	total: 1.02s	remaining: 1.53s
40:	learn: 18.6736002	total: 1.04s	remaining: 1.5s
41:	learn: 18.3525328	total: 1.06s	remaining: 1.47s
42:	learn: 17.9954191	total: 1.09s	remaining: 1.44s
43:	learn: 17.6991520	total: 1.12s	remaining: 1.42s
44:	learn: 17.3697888	total: 1.14s	remaining: 1.4s
45:	learn: 17.0519636	total: 1.18s	remaining: 1.39s
46:	learn: 16.7829795	total: 1.21s	remaining: 1.36s
47:	learn: 16.5108695	total: 1.23s	remaining: 1.33s
48:	learn: 16.2366816	total: 1.26s	remaining: 1.31s
49:	learn: 15.9947350	total: 1.28s	remaining: 1.28s
50:	learn: 15.7513561	total: 1.3s	remaining: 1.25s
51:	learn: 15.4328481	total: 1.33s	remaining: 1.23s
52:	learn: 15.2497907	total: 1.35s	remaining: 1.2s
53:	learn: 15.0417076	total: 1.39s	remaining: 1.19s
54:	learn: 14.8861891	total: 1.42s	remaining: 1.16s
55:	learn: 14.6497794	total: 1.44s	remaining: 1.13s
56:	learn: 14.3664771	total: 1.47s	remaining: 1.1s
57:	learn: 14.2358168	total: 1.49s	remaining: 1.08s
58:	learn: 14.0712722	total: 1.51s	remaining: 1.05s
59:	learn: 13.9191649	total: 1.53s	remaining: 1.02s
60:	learn: 13.7032356	total: 1.56s	remaining: 1s
61:	learn: 13.5029041	total: 1.59s	remaining: 976ms
62:	learn: 13.3568908	total: 1.62s	remaining: 950ms
63:	learn: 13.1332696	total: 1.65s	remaining: 928ms
64:	learn: 13.0323137	total: 1.67s	remaining: 901ms
65:	learn: 12.8622078	total: 1.7s	remaining: 876ms
66:	learn: 12.7088186	total: 1.72s	remaining: 849ms
67:	learn: 12.5524646	total: 1.75s	remaining: 821ms
68:	learn: 12.4646011	total: 1.77s	remaining: 795ms
69:	learn: 12.3900687	total: 1.79s	remaining: 769ms
70:	learn: 12.2908367	total: 1.83s	remaining: 746ms
71:	learn: 12.1294405	total: 1.85s	remaining: 720ms
72:	learn: 12.0359996	total: 1.88s	remaining: 696ms
73:	learn: 11.9244352	total: 1.91s	remaining: 669ms
74:	learn: 11.8312038	total: 1.93s	remaining: 643ms
75:	learn: 11.6622123	total: 1.95s	remaining: 617ms
76:	learn: 11.5959180	total: 1.98s	remaining: 590ms
77:	learn: 11.4538852	total: 2s	remaining: 564ms
78:	learn: 11.3700375	total: 2.02s	remaining: 538ms
79:	learn: 11.2101447	total: 2.06s	remaining: 514ms
80:	learn: 11.0614634	total: 2.08s	remaining: 489ms
81:	learn: 10.9029225	total: 2.11s	remaining: 463ms
82:	learn: 10.7792030	total: 2.14s	remaining: 438ms
83:	learn: 10.6279451	total: 2.17s	remaining: 413ms
84:	learn: 10.5530267	total: 2.19s	remaining: 387ms
85:	learn: 10.4577150	total: 2.21s	remaining: 360ms
86:	learn: 10.4076417	total: 2.24s	remaining: 334ms
87:	learn: 10.3166632	total: 2.26s	remaining: 308ms
88:	learn: 10.2018151	total: 2.29s	remaining: 283ms
89:	learn: 10.0698484	total: 2.32s	remaining: 257ms
90:	learn: 10.0162824	total: 2.34s	remaining: 231ms
91:	learn: 9.9352639	total: 2.36s	remaining: 205ms
92:	learn: 9.8316734	total: 2.39s	remaining: 180ms
93:	learn: 9.7195471	total: 2.42s	remaining: 154ms
94:	learn: 9.5914894	total: 2.44s	remaining: 129ms
95:	learn: 9.5151851	total: 2.47s	remaining: 103ms
96:	learn: 9.3911314	total: 2.5s	remaining: 77.3ms
97:	learn: 9.3417706	total: 2.53s	remaining: 51.6ms
98:	learn: 9.2708440	total: 2.55s	remaining: 25.8ms
99:	learn: 9.1660321	total: 2.58s	remaining: 0us
0:	learn: 45.8627255	total: 2.4ms	remaining: 238ms
1:	learn: 44.7432040	total: 24.7ms	remaining: 1.21s
2:	learn: 43.4398568	total: 47ms	remaining: 1.52s
3:	learn: 42.1495515	total: 74.3ms	remaining: 1.78s
4:	learn: 40.9712633	total: 97.9ms	remaining: 1.86s
5:	learn: 40.0119591	total: 118ms	remaining: 1.85s
6:	learn: 39.1914360	total: 138ms	remaining: 1.84s
7:	learn: 38.1861536	total: 162ms	remaining: 1.86s
8:	learn: 37.1477128	total: 183ms	remaining: 1.85s
9:	learn: 36.3044702	total: 204ms	remaining: 1.84s
10:	learn: 35.5837917	total: 226ms	remaining: 1.82s
11:	learn: 34.8664158	total: 249ms	remaining: 1.83s
12:	learn: 33.9129833	total: 273ms	remaining: 1.82s
13:	learn: 32.9094642	total: 304ms	remaining: 1.87s
14:	learn: 32.1965787	total: 327ms	remaining: 1.85s
15:	learn: 31.4598238	total: 351ms	remaining: 1.84s
16:	learn: 30.6578027	total: 373ms	remaining: 1.82s
17:	learn: 30.0227468	total: 397ms	remaining: 1.81s
18:	learn: 29.2954728	total: 419ms	remaining: 1.78s
19:	learn: 28.5928084	total: 441ms	remaining: 1.76s
20:	learn: 27.9445984	total: 465ms	remaining: 1.75s
21:	learn: 27.3493298	total: 494ms	remaining: 1.75s
22:	learn: 26.8491966	total: 518ms	remaining: 1.73s
23:	learn: 26.3177453	total: 540ms	remaining: 1.71s
24:	learn: 25.8134533	total: 562ms	remaining: 1.69s
25:	learn: 25.2000018	total: 585ms	remaining: 1.67s
26:	learn: 24.6570461	total: 608ms	remaining: 1.64s
27:	learn: 24.1062982	total: 630ms	remaining: 1.62s
28:	learn: 23.7489370	total: 652ms	remaining: 1.6s
29:	learn: 23.2050536	total: 674ms	remaining: 1.57s
30:	learn: 22.7824379	total: 698ms	remaining: 1.55s
31:	learn: 22.4052655	total: 732ms	remaining: 1.55s
32:	learn: 21.9525639	total: 757ms	remaining: 1.54s
33:	learn: 21.5482900	total: 781ms	remaining: 1.52s
34:	learn: 21.1900983	total: 804ms	remaining: 1.49s
35:	learn: 20.8243957	total: 829ms	remaining: 1.47s
36:	learn: 20.4401288	total: 852ms	remaining: 1.45s
37:	learn: 20.0960622	total: 874ms	remaining: 1.43s
38:	learn: 19.7795108	total: 899ms	remaining: 1.41s
39:	learn: 19.4922451	total: 927ms	remaining: 1.39s
40:	learn: 19.1827582	total: 950ms	remaining: 1.37s
41:	learn: 18.8902445	total: 972ms	remaining: 1.34s
42:	learn: 18.6833086	total: 995ms	remaining: 1.32s
43:	learn: 18.4251972	total: 1.02s	remaining: 1.29s
44:	learn: 18.1471037	total: 1.04s	remaining: 1.27s
45:	learn: 17.8420017	total: 1.06s	remaining: 1.24s
46:	learn: 17.6101998	total: 1.08s	remaining: 1.22s
47:	learn: 17.3353656	total: 1.1s	remaining: 1.19s
48:	learn: 17.1194789	total: 1.12s	remaining: 1.17s
49:	learn: 16.8898454	total: 1.16s	remaining: 1.16s
50:	learn: 16.6657497	total: 1.18s	remaining: 1.14s
51:	learn: 16.3832867	total: 1.21s	remaining: 1.11s
52:	learn: 16.2098226	total: 1.23s	remaining: 1.09s
53:	learn: 16.0045707	total: 1.25s	remaining: 1.07s
54:	learn: 15.8512887	total: 1.27s	remaining: 1.04s
55:	learn: 15.6485628	total: 1.3s	remaining: 1.02s
56:	learn: 15.4841428	total: 1.32s	remaining: 996ms
57:	learn: 15.3383158	total: 1.34s	remaining: 973ms
58:	learn: 15.2056282	total: 1.37s	remaining: 953ms
59:	learn: 15.0698337	total: 1.39s	remaining: 929ms
60:	learn: 14.8487796	total: 1.41s	remaining: 905ms
61:	learn: 14.7255751	total: 1.44s	remaining: 880ms
62:	learn: 14.6100414	total: 1.46s	remaining: 856ms
63:	learn: 14.3864212	total: 1.48s	remaining: 833ms
64:	learn: 14.2800460	total: 1.5s	remaining: 809ms
65:	learn: 14.1017299	total: 1.52s	remaining: 786ms
66:	learn: 13.9655015	total: 1.55s	remaining: 763ms
67:	learn: 13.8065764	total: 1.58s	remaining: 745ms
68:	learn: 13.7473285	total: 1.61s	remaining: 722ms
69:	learn: 13.6967309	total: 1.63s	remaining: 699ms
70:	learn: 13.6253255	total: 1.65s	remaining: 676ms
71:	learn: 13.4974926	total: 1.68s	remaining: 652ms
72:	learn: 13.4142694	total: 1.7s	remaining: 629ms
73:	learn: 13.2902600	total: 1.72s	remaining: 606ms
74:	learn: 13.1816461	total: 1.75s	remaining: 582ms
75:	learn: 13.0809498	total: 1.77s	remaining: 559ms
76:	learn: 12.9772285	total: 1.79s	remaining: 535ms
77:	learn: 12.8413858	total: 1.82s	remaining: 513ms
78:	learn: 12.7615799	total: 1.84s	remaining: 490ms
79:	learn: 12.5808659	total: 1.86s	remaining: 466ms
80:	learn: 12.4938330	total: 1.88s	remaining: 442ms
81:	learn: 12.3745576	total: 1.91s	remaining: 419ms
82:	learn: 12.2474104	total: 1.93s	remaining: 395ms
83:	learn: 12.1582297	total: 1.95s	remaining: 371ms
84:	learn: 12.0528081	total: 1.97s	remaining: 348ms
85:	learn: 11.9483355	total: 1.99s	remaining: 325ms
86:	learn: 11.8683204	total: 2.02s	remaining: 303ms
87:	learn: 11.7680945	total: 2.05s	remaining: 280ms
88:	learn: 11.6635447	total: 2.07s	remaining: 256ms
89:	learn: 11.5775031	total: 2.1s	remaining: 233ms
90:	learn: 11.4860538	total: 2.12s	remaining: 210ms
91:	learn: 11.3584960	total: 2.14s	remaining: 186ms
92:	learn: 11.2180285	total: 2.16s	remaining: 163ms
93:	learn: 11.0996558	total: 2.18s	remaining: 139ms
94:	learn: 10.9688832	total: 2.2s	remaining: 116ms
95:	learn: 10.9205457	total: 2.23s	remaining: 93ms
96:	learn: 10.8462783	total: 2.25s	remaining: 69.8ms
97:	learn: 10.7481890	total: 2.28s	remaining: 46.5ms
98:	learn: 10.6396315	total: 2.29s	remaining: 23.2ms
99:	learn: 10.5895308	total: 2.31s	remaining: 0us
0:	learn: 46.2892189	total: 19ms	remaining: 1.89s
1:	learn: 44.9732744	total: 39.9ms	remaining: 1.95s
2:	learn: 43.8887345	total: 69.7ms	remaining: 2.25s
3:	learn: 42.6526320	total: 95.2ms	remaining: 2.28s
4:	learn: 41.4812505	total: 118ms	remaining: 2.23s
5:	learn: 40.4431224	total: 141ms	remaining: 2.2s
6:	learn: 39.2936749	total: 163ms	remaining: 2.17s
7:	learn: 38.1961652	total: 184ms	remaining: 2.12s
8:	learn: 37.2194841	total: 205ms	remaining: 2.07s
9:	learn: 36.2518666	total: 226ms	remaining: 2.04s
10:	learn: 35.4919224	total: 248ms	remaining: 2.01s
11:	learn: 34.6975877	total: 270ms	remaining: 1.98s
12:	learn: 33.7869362	total: 292ms	remaining: 1.95s
13:	learn: 33.0646033	total: 317ms	remaining: 1.95s
14:	learn: 32.1821772	total: 339ms	remaining: 1.92s
15:	learn: 31.4340749	total: 359ms	remaining: 1.89s
16:	learn: 30.6504198	total: 380ms	remaining: 1.85s
17:	learn: 30.0090260	total: 400ms	remaining: 1.82s
18:	learn: 29.4233143	total: 421ms	remaining: 1.8s
19:	learn: 28.7661957	total: 443ms	remaining: 1.77s
20:	learn: 28.1570594	total: 463ms	remaining: 1.74s
21:	learn: 27.6140124	total: 486ms	remaining: 1.72s
22:	learn: 27.0130709	total: 512ms	remaining: 1.71s
23:	learn: 26.2648081	total: 536ms	remaining: 1.7s
24:	learn: 25.7963649	total: 560ms	remaining: 1.68s
25:	learn: 25.2713860	total: 581ms	remaining: 1.65s
26:	learn: 24.8080692	total: 602ms	remaining: 1.63s
27:	learn: 24.3042862	total: 625ms	remaining: 1.61s
28:	learn: 23.9097237	total: 645ms	remaining: 1.58s
29:	learn: 23.4953174	total: 665ms	remaining: 1.55s
30:	learn: 23.0484452	total: 687ms	remaining: 1.53s
31:	learn: 22.7100962	total: 711ms	remaining: 1.51s
32:	learn: 22.1662267	total: 739ms	remaining: 1.5s
33:	learn: 21.7339884	total: 761ms	remaining: 1.48s
34:	learn: 21.3699422	total: 783ms	remaining: 1.45s
35:	learn: 21.0249329	total: 804ms	remaining: 1.43s
36:	learn: 20.6187923	total: 824ms	remaining: 1.4s
37:	learn: 20.2401981	total: 843ms	remaining: 1.38s
38:	learn: 19.9712328	total: 863ms	remaining: 1.35s
39:	learn: 19.6429610	total: 884ms	remaining: 1.33s
40:	learn: 19.3281556	total: 904ms	remaining: 1.3s
41:	learn: 19.0925924	total: 927ms	remaining: 1.28s
42:	learn: 18.8118712	total: 950ms	remaining: 1.26s
43:	learn: 18.5355748	total: 982ms	remaining: 1.25s
44:	learn: 18.2783929	total: 1s	remaining: 1.23s
45:	learn: 17.9915490	total: 1.03s	remaining: 1.21s
46:	learn: 17.7323317	total: 1.05s	remaining: 1.18s
47:	learn: 17.4448307	total: 1.07s	remaining: 1.16s
48:	learn: 17.2419782	total: 1.09s	remaining: 1.14s
49:	learn: 16.9351352	total: 1.11s	remaining: 1.11s
50:	learn: 16.7728723	total: 1.13s	remaining: 1.09s
51:	learn: 16.5718087	total: 1.16s	remaining: 1.07s
52:	learn: 16.4047483	total: 1.18s	remaining: 1.05s
53:	learn: 16.2888950	total: 1.21s	remaining: 1.03s
54:	learn: 16.1353042	total: 1.23s	remaining: 1s
55:	learn: 15.9384012	total: 1.25s	remaining: 980ms
56:	learn: 15.7488511	total: 1.27s	remaining: 956ms
57:	learn: 15.5682846	total: 1.29s	remaining: 932ms
58:	learn: 15.3488716	total: 1.31s	remaining: 910ms
59:	learn: 15.2291272	total: 1.33s	remaining: 886ms
60:	learn: 15.0582519	total: 1.35s	remaining: 862ms
61:	learn: 14.8478458	total: 1.37s	remaining: 840ms
62:	learn: 14.6663416	total: 1.41s	remaining: 827ms
63:	learn: 14.4830825	total: 1.43s	remaining: 807ms
64:	learn: 14.3300895	total: 1.46s	remaining: 786ms
65:	learn: 14.1168590	total: 1.48s	remaining: 765ms
66:	learn: 13.9783298	total: 1.51s	remaining: 743ms
67:	learn: 13.8132857	total: 1.53s	remaining: 720ms
68:	learn: 13.7050863	total: 1.55s	remaining: 698ms
69:	learn: 13.5742501	total: 1.58s	remaining: 677ms
70:	learn: 13.4851362	total: 1.61s	remaining: 658ms
71:	learn: 13.3300610	total: 1.64s	remaining: 637ms
72:	learn: 13.2223060	total: 1.66s	remaining: 614ms
73:	learn: 13.0706731	total: 1.69s	remaining: 592ms
74:	learn: 12.9178099	total: 1.71s	remaining: 571ms
75:	learn: 12.7954645	total: 1.74s	remaining: 549ms
76:	learn: 12.7133688	total: 1.76s	remaining: 526ms
77:	learn: 12.5745537	total: 1.79s	remaining: 504ms
78:	learn: 12.4765302	total: 1.82s	remaining: 483ms
79:	learn: 12.3609145	total: 1.84s	remaining: 461ms
80:	learn: 12.2437759	total: 1.87s	remaining: 439ms
81:	learn: 12.1583763	total: 1.89s	remaining: 416ms
82:	learn: 12.0202500	total: 1.92s	remaining: 393ms
83:	learn: 11.9125166	total: 1.94s	remaining: 370ms
84:	learn: 11.8100729	total: 1.98s	remaining: 349ms
85:	learn: 11.7509521	total: 2s	remaining: 326ms
86:	learn: 11.6448436	total: 2.03s	remaining: 304ms
87:	learn: 11.5550170	total: 2.06s	remaining: 281ms
88:	learn: 11.4624708	total: 2.08s	remaining: 257ms
89:	learn: 11.3547761	total: 2.1s	remaining: 234ms
90:	learn: 11.2513910	total: 2.12s	remaining: 210ms
91:	learn: 11.1414483	total: 2.15s	remaining: 187ms
92:	learn: 11.0742264	total: 2.17s	remaining: 163ms
93:	learn: 10.9721772	total: 2.19s	remaining: 140ms
94:	learn: 10.9118054	total: 2.22s	remaining: 117ms
95:	learn: 10.8465290	total: 2.25s	remaining: 93.9ms
96:	learn: 10.7451745	total: 2.28s	remaining: 70.6ms
97:	learn: 10.6173565	total: 2.31s	remaining: 47.1ms
98:	learn: 10.5562158	total: 2.33s	remaining: 23.6ms
99:	learn: 10.4564960	total: 2.36s	remaining: 0us
0:	learn: 27.6506730	total: 5.61ms	remaining: 556ms
1:	learn: 27.1638793	total: 9.94ms	remaining: 487ms
2:	learn: 26.8000665	total: 14.4ms	remaining: 464ms
3:	learn: 26.4256132	total: 19.1ms	remaining: 459ms
4:	learn: 26.0088351	total: 24.2ms	remaining: 459ms
5:	learn: 25.7558298	total: 29.8ms	remaining: 468ms
6:	learn: 25.3380711	total: 37.1ms	remaining: 492ms
7:	learn: 25.0571611	total: 43.5ms	remaining: 500ms
8:	learn: 24.6790148	total: 50ms	remaining: 505ms
9:	learn: 24.3600941	total: 55.8ms	remaining: 502ms
10:	learn: 24.1105667	total: 61.2ms	remaining: 495ms
11:	learn: 23.7736542	total: 68.1ms	remaining: 500ms
12:	learn: 23.5824429	total: 72.8ms	remaining: 487ms
13:	learn: 23.2658303	total: 77.3ms	remaining: 475ms
14:	learn: 23.0061886	total: 81.7ms	remaining: 463ms
15:	learn: 22.8060389	total: 86.1ms	remaining: 452ms
16:	learn: 22.5899735	total: 90.4ms	remaining: 441ms
17:	learn: 22.3625048	total: 94.7ms	remaining: 432ms
18:	learn: 22.0706477	total: 99.4ms	remaining: 424ms
19:	learn: 21.8739394	total: 104ms	remaining: 415ms
20:	learn: 21.6143650	total: 108ms	remaining: 407ms
21:	learn: 21.4571623	total: 112ms	remaining: 398ms
22:	learn: 21.2395769	total: 117ms	remaining: 391ms
23:	learn: 20.9801795	total: 121ms	remaining: 382ms
24:	learn: 20.8036808	total: 125ms	remaining: 376ms
25:	learn: 20.6387539	total: 130ms	remaining: 369ms
26:	learn: 20.4401427	total: 134ms	remaining: 362ms
27:	learn: 20.2879575	total: 138ms	remaining: 355ms
28:	learn: 20.0538664	total: 143ms	remaining: 350ms
29:	learn: 19.8363102	total: 147ms	remaining: 344ms
30:	learn: 19.7015446	total: 151ms	remaining: 337ms
31:	learn: 19.5483114	total: 155ms	remaining: 330ms
32:	learn: 19.4163053	total: 160ms	remaining: 325ms
33:	learn: 19.2880625	total: 164ms	remaining: 319ms
34:	learn: 19.1303389	total: 169ms	remaining: 314ms
35:	learn: 18.9237448	total: 174ms	remaining: 309ms
36:	learn: 18.8142925	total: 178ms	remaining: 303ms
37:	learn: 18.6994696	total: 183ms	remaining: 298ms
38:	learn: 18.5629211	total: 187ms	remaining: 293ms
39:	learn: 18.4600917	total: 192ms	remaining: 288ms
40:	learn: 18.3567139	total: 197ms	remaining: 284ms
41:	learn: 18.2120527	total: 201ms	remaining: 278ms
42:	learn: 18.0688062	total: 206ms	remaining: 273ms
43:	learn: 17.9250181	total: 210ms	remaining: 268ms
44:	learn: 17.8399138	total: 216ms	remaining: 263ms
45:	learn: 17.6720713	total: 220ms	remaining: 259ms
46:	learn: 17.5273091	total: 226ms	remaining: 254ms
47:	learn: 17.4232814	total: 231ms	remaining: 250ms
48:	learn: 17.2957579	total: 236ms	remaining: 246ms
49:	learn: 17.1892874	total: 241ms	remaining: 241ms
50:	learn: 17.0490355	total: 246ms	remaining: 236ms
51:	learn: 16.9666450	total: 251ms	remaining: 232ms
52:	learn: 16.8600056	total: 259ms	remaining: 230ms
53:	learn: 16.7542588	total: 267ms	remaining: 227ms
54:	learn: 16.6316077	total: 278ms	remaining: 227ms
55:	learn: 16.5588112	total: 286ms	remaining: 225ms
56:	learn: 16.5010186	total: 291ms	remaining: 220ms
57:	learn: 16.4081540	total: 297ms	remaining: 215ms
58:	learn: 16.3040451	total: 302ms	remaining: 210ms
59:	learn: 16.1890564	total: 308ms	remaining: 205ms
60:	learn: 16.0977103	total: 313ms	remaining: 200ms
61:	learn: 15.9627607	total: 319ms	remaining: 196ms
62:	learn: 15.9022248	total: 324ms	remaining: 190ms
63:	learn: 15.8151881	total: 330ms	remaining: 186ms
64:	learn: 15.7353125	total: 336ms	remaining: 181ms
65:	learn: 15.6312897	total: 341ms	remaining: 176ms
66:	learn: 15.5330927	total: 347ms	remaining: 171ms
67:	learn: 15.4698681	total: 352ms	remaining: 166ms
68:	learn: 15.4108571	total: 359ms	remaining: 161ms
69:	learn: 15.3492945	total: 364ms	remaining: 156ms
70:	learn: 15.3036540	total: 369ms	remaining: 151ms
71:	learn: 15.2390833	total: 374ms	remaining: 145ms
72:	learn: 15.1556327	total: 379ms	remaining: 140ms
73:	learn: 15.1016315	total: 383ms	remaining: 135ms
74:	learn: 15.0287076	total: 388ms	remaining: 129ms
75:	learn: 14.9530572	total: 393ms	remaining: 124ms
76:	learn: 14.8965517	total: 397ms	remaining: 119ms
77:	learn: 14.8125426	total: 402ms	remaining: 113ms
78:	learn: 14.7435359	total: 407ms	remaining: 108ms
79:	learn: 14.6963163	total: 412ms	remaining: 103ms
80:	learn: 14.6200060	total: 416ms	remaining: 97.6ms
81:	learn: 14.5707760	total: 421ms	remaining: 92.5ms
82:	learn: 14.5053651	total: 427ms	remaining: 87.5ms
83:	learn: 14.4115458	total: 432ms	remaining: 82.3ms
84:	learn: 14.3117159	total: 437ms	remaining: 77.2ms
85:	learn: 14.2511326	total: 443ms	remaining: 72ms
86:	learn: 14.1372486	total: 447ms	remaining: 66.9ms
87:	learn: 14.0992301	total: 453ms	remaining: 61.7ms
88:	learn: 14.0228331	total: 462ms	remaining: 57.1ms
89:	learn: 13.9249836	total: 469ms	remaining: 52.1ms
90:	learn: 13.8679364	total: 476ms	remaining: 47.1ms
91:	learn: 13.8405578	total: 481ms	remaining: 41.9ms
92:	learn: 13.7711325	total: 487ms	remaining: 36.7ms
93:	learn: 13.7357019	total: 492ms	remaining: 31.4ms
94:	learn: 13.6735271	total: 497ms	remaining: 26.2ms
95:	learn: 13.5682393	total: 502ms	remaining: 20.9ms
96:	learn: 13.5342610	total: 506ms	remaining: 15.7ms
97:	learn: 13.4710034	total: 510ms	remaining: 10.4ms
98:	learn: 13.4022402	total: 515ms	remaining: 5.2ms
99:	learn: 13.3351238	total: 519ms	remaining: 0us
0:	learn: 42.9181702	total: 5.14ms	remaining: 509ms
1:	learn: 42.0286736	total: 9.83ms	remaining: 481ms
2:	learn: 41.2764568	total: 14.6ms	remaining: 472ms
3:	learn: 40.4721918	total: 19.2ms	remaining: 460ms
4:	learn: 39.8518928	total: 23.9ms	remaining: 454ms
5:	learn: 39.2645479	total: 28.8ms	remaining: 451ms
6:	learn: 38.4453704	total: 33.7ms	remaining: 447ms
7:	learn: 37.7122059	total: 39ms	remaining: 448ms
8:	learn: 36.9185796	total: 43.3ms	remaining: 438ms
9:	learn: 36.1668427	total: 48.5ms	remaining: 437ms
10:	learn: 35.5639029	total: 53.5ms	remaining: 433ms
11:	learn: 34.7724193	total: 58.3ms	remaining: 428ms
12:	learn: 34.3053433	total: 63.1ms	remaining: 422ms
13:	learn: 33.6561327	total: 64.5ms	remaining: 396ms
14:	learn: 33.0134042	total: 69.4ms	remaining: 393ms
15:	learn: 32.4483300	total: 74.4ms	remaining: 391ms
16:	learn: 31.8581144	total: 79.4ms	remaining: 388ms
17:	learn: 31.2858301	total: 84.3ms	remaining: 384ms
18:	learn: 30.8483018	total: 89.4ms	remaining: 381ms
19:	learn: 30.4174622	total: 95ms	remaining: 380ms
20:	learn: 29.8994411	total: 103ms	remaining: 389ms
21:	learn: 29.5045355	total: 113ms	remaining: 401ms
22:	learn: 28.9923519	total: 121ms	remaining: 404ms
23:	learn: 28.4255717	total: 129ms	remaining: 409ms
24:	learn: 28.0283139	total: 135ms	remaining: 404ms
25:	learn: 27.7434814	total: 141ms	remaining: 401ms
26:	learn: 27.2770731	total: 146ms	remaining: 396ms
27:	learn: 26.8928270	total: 152ms	remaining: 391ms
28:	learn: 26.4282671	total: 157ms	remaining: 386ms
29:	learn: 26.0272764	total: 163ms	remaining: 381ms
30:	learn: 25.7579312	total: 169ms	remaining: 375ms
31:	learn: 25.4542434	total: 174ms	remaining: 369ms
32:	learn: 25.1232564	total: 179ms	remaining: 363ms
33:	learn: 24.8110795	total: 185ms	remaining: 358ms
34:	learn: 24.5077579	total: 190ms	remaining: 354ms
35:	learn: 24.1909000	total: 196ms	remaining: 348ms
36:	learn: 23.8719468	total: 200ms	remaining: 341ms
37:	learn: 23.5764366	total: 202ms	remaining: 329ms
38:	learn: 23.3468086	total: 206ms	remaining: 323ms
39:	learn: 23.0908771	total: 211ms	remaining: 316ms
40:	learn: 22.8580876	total: 215ms	remaining: 310ms
41:	learn: 22.6060825	total: 220ms	remaining: 304ms
42:	learn: 22.4125407	total: 225ms	remaining: 299ms
43:	learn: 22.1990617	total: 230ms	remaining: 293ms
44:	learn: 21.9716164	total: 235ms	remaining: 287ms
45:	learn: 21.8360935	total: 239ms	remaining: 281ms
46:	learn: 21.6169256	total: 244ms	remaining: 275ms
47:	learn: 21.4620612	total: 249ms	remaining: 270ms
48:	learn: 21.2894194	total: 254ms	remaining: 264ms
49:	learn: 21.1066266	total: 258ms	remaining: 258ms
50:	learn: 20.9484898	total: 263ms	remaining: 252ms
51:	learn: 20.7195338	total: 268ms	remaining: 247ms
52:	learn: 20.4899740	total: 273ms	remaining: 242ms
53:	learn: 20.3356583	total: 278ms	remaining: 237ms
54:	learn: 20.0754393	total: 283ms	remaining: 232ms
55:	learn: 19.9199159	total: 288ms	remaining: 226ms
56:	learn: 19.7761128	total: 293ms	remaining: 221ms
57:	learn: 19.6533060	total: 302ms	remaining: 219ms
58:	learn: 19.5113942	total: 310ms	remaining: 215ms
59:	learn: 19.3985022	total: 317ms	remaining: 211ms
60:	learn: 19.2683443	total: 322ms	remaining: 206ms
61:	learn: 19.1460824	total: 328ms	remaining: 201ms
62:	learn: 19.0042655	total: 333ms	remaining: 196ms
63:	learn: 18.8720873	total: 338ms	remaining: 190ms
64:	learn: 18.7183888	total: 343ms	remaining: 185ms
65:	learn: 18.5472360	total: 347ms	remaining: 179ms
66:	learn: 18.3976642	total: 352ms	remaining: 173ms
67:	learn: 18.2282851	total: 357ms	remaining: 168ms
68:	learn: 18.1469157	total: 361ms	remaining: 162ms
69:	learn: 18.0649494	total: 366ms	remaining: 157ms
70:	learn: 17.9485405	total: 371ms	remaining: 151ms
71:	learn: 17.8460261	total: 375ms	remaining: 146ms
72:	learn: 17.7679843	total: 380ms	remaining: 141ms
73:	learn: 17.5989290	total: 385ms	remaining: 135ms
74:	learn: 17.4381322	total: 390ms	remaining: 130ms
75:	learn: 17.3370886	total: 394ms	remaining: 125ms
76:	learn: 17.2675308	total: 399ms	remaining: 119ms
77:	learn: 17.1946430	total: 404ms	remaining: 114ms
78:	learn: 17.0923725	total: 410ms	remaining: 109ms
79:	learn: 17.0537265	total: 414ms	remaining: 104ms
80:	learn: 16.9456831	total: 419ms	remaining: 98.4ms
81:	learn: 16.8457353	total: 424ms	remaining: 93.1ms
82:	learn: 16.7469310	total: 429ms	remaining: 87.8ms
83:	learn: 16.6679953	total: 434ms	remaining: 82.6ms
84:	learn: 16.6274189	total: 439ms	remaining: 77.4ms
85:	learn: 16.5516530	total: 443ms	remaining: 72.2ms
86:	learn: 16.4886066	total: 448ms	remaining: 66.9ms
87:	learn: 16.3947859	total: 453ms	remaining: 61.7ms
88:	learn: 16.3406495	total: 458ms	remaining: 56.6ms
89:	learn: 16.3019195	total: 463ms	remaining: 51.4ms
90:	learn: 16.1860681	total: 468ms	remaining: 46.3ms
91:	learn: 16.1282812	total: 473ms	remaining: 41.1ms
92:	learn: 16.0303652	total: 478ms	remaining: 35.9ms
93:	learn: 15.9561692	total: 483ms	remaining: 30.8ms
94:	learn: 15.8733994	total: 488ms	remaining: 25.7ms
95:	learn: 15.8108833	total: 493ms	remaining: 20.5ms
96:	learn: 15.7606004	total: 498ms	remaining: 15.4ms
97:	learn: 15.6984664	total: 502ms	remaining: 10.3ms
98:	learn: 15.6223632	total: 510ms	remaining: 5.15ms
99:	learn: 15.5671136	total: 517ms	remaining: 0us
0:	learn: 46.4788614	total: 2.34ms	remaining: 231ms
1:	learn: 45.7608372	total: 8.04ms	remaining: 394ms
2:	learn: 44.8825004	total: 13.5ms	remaining: 438ms
3:	learn: 44.0362738	total: 18.8ms	remaining: 452ms
4:	learn: 43.2086374	total: 24.3ms	remaining: 461ms
5:	learn: 42.5835773	total: 29.2ms	remaining: 458ms
6:	learn: 41.9673269	total: 34.7ms	remaining: 461ms
7:	learn: 41.4748717	total: 40.6ms	remaining: 466ms
8:	learn: 40.7129183	total: 45.7ms	remaining: 462ms
9:	learn: 39.8900884	total: 50.4ms	remaining: 454ms
10:	learn: 39.4142193	total: 54.7ms	remaining: 442ms
11:	learn: 38.8645613	total: 59ms	remaining: 433ms
12:	learn: 38.2394731	total: 63.3ms	remaining: 423ms
13:	learn: 37.6834515	total: 67.8ms	remaining: 417ms
14:	learn: 37.0673507	total: 72.4ms	remaining: 410ms
15:	learn: 36.4728340	total: 76.7ms	remaining: 403ms
16:	learn: 36.0489086	total: 81.3ms	remaining: 397ms
17:	learn: 35.4744141	total: 86ms	remaining: 392ms
18:	learn: 35.0106021	total: 90.3ms	remaining: 385ms
19:	learn: 34.5586053	total: 94.9ms	remaining: 380ms
20:	learn: 34.1308223	total: 99.7ms	remaining: 375ms
21:	learn: 33.7701450	total: 105ms	remaining: 371ms
22:	learn: 33.4425444	total: 109ms	remaining: 366ms
23:	learn: 33.0296412	total: 114ms	remaining: 362ms
24:	learn: 32.6359803	total: 119ms	remaining: 358ms
25:	learn: 32.1846182	total: 124ms	remaining: 353ms
26:	learn: 31.7620230	total: 129ms	remaining: 350ms
27:	learn: 31.4669337	total: 134ms	remaining: 346ms
28:	learn: 31.0792062	total: 139ms	remaining: 341ms
29:	learn: 30.7970537	total: 147ms	remaining: 344ms
30:	learn: 30.4952215	total: 156ms	remaining: 347ms
31:	learn: 30.2845344	total: 164ms	remaining: 348ms
32:	learn: 29.9592732	total: 169ms	remaining: 343ms
33:	learn: 29.6798596	total: 175ms	remaining: 340ms
34:	learn: 29.3368905	total: 180ms	remaining: 334ms
35:	learn: 29.0621238	total: 184ms	remaining: 327ms
36:	learn: 28.6445375	total: 189ms	remaining: 322ms
37:	learn: 28.2418096	total: 194ms	remaining: 316ms
38:	learn: 27.9495390	total: 199ms	remaining: 311ms
39:	learn: 27.6958160	total: 203ms	remaining: 305ms
40:	learn: 27.4811189	total: 208ms	remaining: 300ms
41:	learn: 27.1494420	total: 213ms	remaining: 294ms
42:	learn: 26.8388873	total: 217ms	remaining: 288ms
43:	learn: 26.5721300	total: 222ms	remaining: 282ms
44:	learn: 26.3384738	total: 226ms	remaining: 277ms
45:	learn: 26.1894781	total: 231ms	remaining: 271ms
46:	learn: 25.9580198	total: 235ms	remaining: 265ms
47:	learn: 25.7897985	total: 240ms	remaining: 260ms
48:	learn: 25.6000271	total: 244ms	remaining: 254ms
49:	learn: 25.4130873	total: 249ms	remaining: 249ms
50:	learn: 25.1699061	total: 253ms	remaining: 243ms
51:	learn: 24.9324449	total: 257ms	remaining: 237ms
52:	learn: 24.7729152	total: 262ms	remaining: 232ms
53:	learn: 24.5026563	total: 266ms	remaining: 227ms
54:	learn: 24.2332627	total: 271ms	remaining: 221ms
55:	learn: 23.9611984	total: 275ms	remaining: 216ms
56:	learn: 23.7862603	total: 280ms	remaining: 211ms
57:	learn: 23.6318154	total: 284ms	remaining: 206ms
58:	learn: 23.4443306	total: 288ms	remaining: 200ms
59:	learn: 23.2581425	total: 293ms	remaining: 195ms
60:	learn: 23.0549901	total: 297ms	remaining: 190ms
61:	learn: 22.8666218	total: 301ms	remaining: 185ms
62:	learn: 22.6956739	total: 305ms	remaining: 179ms
63:	learn: 22.5068544	total: 310ms	remaining: 174ms
64:	learn: 22.1859147	total: 314ms	remaining: 169ms
65:	learn: 22.0462043	total: 319ms	remaining: 164ms
66:	learn: 21.9329563	total: 323ms	remaining: 159ms
67:	learn: 21.8029736	total: 328ms	remaining: 154ms
68:	learn: 21.6861091	total: 333ms	remaining: 150ms
69:	learn: 21.4838140	total: 338ms	remaining: 145ms
70:	learn: 21.3548921	total: 343ms	remaining: 140ms
71:	learn: 21.2244517	total: 348ms	remaining: 135ms
72:	learn: 21.0702958	total: 352ms	remaining: 130ms
73:	learn: 20.9224662	total: 359ms	remaining: 126ms
74:	learn: 20.8150357	total: 367ms	remaining: 122ms
75:	learn: 20.6962739	total: 377ms	remaining: 119ms
76:	learn: 20.5809258	total: 383ms	remaining: 114ms
77:	learn: 20.4735470	total: 391ms	remaining: 110ms
78:	learn: 20.3778167	total: 396ms	remaining: 105ms
79:	learn: 20.2211268	total: 401ms	remaining: 100ms
80:	learn: 20.1478678	total: 407ms	remaining: 95.4ms
81:	learn: 20.1032967	total: 412ms	remaining: 90.4ms
82:	learn: 19.9236300	total: 417ms	remaining: 85.4ms
83:	learn: 19.8151745	total: 422ms	remaining: 80.4ms
84:	learn: 19.7099856	total: 428ms	remaining: 75.5ms
85:	learn: 19.6264833	total: 433ms	remaining: 70.5ms
86:	learn: 19.4916361	total: 439ms	remaining: 65.5ms
87:	learn: 19.4050529	total: 443ms	remaining: 60.5ms
88:	learn: 19.2547065	total: 448ms	remaining: 55.4ms
89:	learn: 19.1610225	total: 454ms	remaining: 50.5ms
90:	learn: 19.0898958	total: 460ms	remaining: 45.5ms
91:	learn: 19.0489664	total: 464ms	remaining: 40.3ms
92:	learn: 18.9206240	total: 469ms	remaining: 35.3ms
93:	learn: 18.8636239	total: 473ms	remaining: 30.2ms
94:	learn: 18.8126187	total: 477ms	remaining: 25.1ms
95:	learn: 18.7579275	total: 481ms	remaining: 20.1ms
96:	learn: 18.6382753	total: 486ms	remaining: 15ms
97:	learn: 18.5397334	total: 490ms	remaining: 10ms
98:	learn: 18.4375951	total: 495ms	remaining: 5ms
99:	learn: 18.4033755	total: 499ms	remaining: 0us
0:	learn: 46.1068821	total: 2.16ms	remaining: 214ms
1:	learn: 45.3970261	total: 7.31ms	remaining: 358ms
2:	learn: 44.8732696	total: 12ms	remaining: 389ms
3:	learn: 44.1290184	total: 16.5ms	remaining: 395ms
4:	learn: 43.3290271	total: 21.4ms	remaining: 406ms
5:	learn: 42.7069090	total: 30.2ms	remaining: 472ms
6:	learn: 42.0572971	total: 37.7ms	remaining: 501ms
7:	learn: 41.4797924	total: 45ms	remaining: 518ms
8:	learn: 41.0023122	total: 50.1ms	remaining: 507ms
9:	learn: 40.5330570	total: 55.8ms	remaining: 502ms
10:	learn: 39.9726545	total: 60.1ms	remaining: 486ms
11:	learn: 39.3044053	total: 64.2ms	remaining: 471ms
12:	learn: 38.8169735	total: 68.3ms	remaining: 457ms
13:	learn: 38.2458761	total: 72.7ms	remaining: 447ms
14:	learn: 37.6280321	total: 77.5ms	remaining: 439ms
15:	learn: 37.0800610	total: 82.1ms	remaining: 431ms
16:	learn: 36.5489363	total: 86.6ms	remaining: 423ms
17:	learn: 36.0981456	total: 91.2ms	remaining: 415ms
18:	learn: 35.6956274	total: 96.1ms	remaining: 410ms
19:	learn: 35.1471999	total: 100ms	remaining: 402ms
20:	learn: 34.6235408	total: 105ms	remaining: 395ms
21:	learn: 34.1987018	total: 110ms	remaining: 388ms
22:	learn: 33.8985062	total: 114ms	remaining: 383ms
23:	learn: 33.3869017	total: 119ms	remaining: 377ms
24:	learn: 32.9100550	total: 123ms	remaining: 370ms
25:	learn: 32.4156208	total: 128ms	remaining: 364ms
26:	learn: 31.9320493	total: 132ms	remaining: 357ms
27:	learn: 31.5711468	total: 136ms	remaining: 350ms
28:	learn: 31.2404433	total: 140ms	remaining: 342ms
29:	learn: 30.8807946	total: 144ms	remaining: 336ms
30:	learn: 30.5948438	total: 149ms	remaining: 331ms
31:	learn: 30.3885560	total: 153ms	remaining: 325ms
32:	learn: 30.0625101	total: 157ms	remaining: 320ms
33:	learn: 29.9113114	total: 162ms	remaining: 314ms
34:	learn: 29.6983470	total: 166ms	remaining: 309ms
35:	learn: 29.4775849	total: 171ms	remaining: 304ms
36:	learn: 29.0538055	total: 175ms	remaining: 298ms
37:	learn: 28.6792318	total: 179ms	remaining: 292ms
38:	learn: 28.4231383	total: 183ms	remaining: 287ms
39:	learn: 28.1078565	total: 188ms	remaining: 281ms
40:	learn: 27.9079179	total: 192ms	remaining: 276ms
41:	learn: 27.6721506	total: 196ms	remaining: 271ms
42:	learn: 27.4228033	total: 201ms	remaining: 267ms
43:	learn: 27.1740534	total: 206ms	remaining: 262ms
44:	learn: 26.8584071	total: 210ms	remaining: 257ms
45:	learn: 26.6902083	total: 215ms	remaining: 252ms
46:	learn: 26.4855335	total: 219ms	remaining: 247ms
47:	learn: 26.2730822	total: 224ms	remaining: 243ms
48:	learn: 26.1058689	total: 229ms	remaining: 238ms
49:	learn: 25.8587318	total: 236ms	remaining: 236ms
50:	learn: 25.7558005	total: 243ms	remaining: 234ms
51:	learn: 25.5846925	total: 250ms	remaining: 230ms
52:	learn: 25.4249887	total: 256ms	remaining: 227ms
53:	learn: 25.1911054	total: 261ms	remaining: 222ms
54:	learn: 25.0544755	total: 266ms	remaining: 218ms
55:	learn: 24.8874006	total: 274ms	remaining: 215ms
56:	learn: 24.7736279	total: 279ms	remaining: 210ms
57:	learn: 24.6156255	total: 284ms	remaining: 206ms
58:	learn: 24.3962421	total: 290ms	remaining: 201ms
59:	learn: 24.2685129	total: 295ms	remaining: 197ms
60:	learn: 24.1874096	total: 300ms	remaining: 192ms
61:	learn: 24.0394287	total: 306ms	remaining: 187ms
62:	learn: 23.9281768	total: 317ms	remaining: 186ms
63:	learn: 23.7423900	total: 322ms	remaining: 181ms
64:	learn: 23.6015209	total: 328ms	remaining: 177ms
65:	learn: 23.4677943	total: 334ms	remaining: 172ms
66:	learn: 23.3215256	total: 339ms	remaining: 167ms
67:	learn: 23.1869360	total: 344ms	remaining: 162ms
68:	learn: 22.9691180	total: 349ms	remaining: 157ms
69:	learn: 22.7531657	total: 355ms	remaining: 152ms
70:	learn: 22.6133477	total: 361ms	remaining: 147ms
71:	learn: 22.3452758	total: 365ms	remaining: 142ms
72:	learn: 22.2065350	total: 369ms	remaining: 136ms
73:	learn: 22.1071155	total: 373ms	remaining: 131ms
74:	learn: 21.9740686	total: 378ms	remaining: 126ms
75:	learn: 21.8892033	total: 382ms	remaining: 121ms
76:	learn: 21.8267882	total: 387ms	remaining: 115ms
77:	learn: 21.7423479	total: 391ms	remaining: 110ms
78:	learn: 21.6242075	total: 396ms	remaining: 105ms
79:	learn: 21.5016910	total: 401ms	remaining: 100ms
80:	learn: 21.4806623	total: 401ms	remaining: 94.2ms
81:	learn: 21.3166637	total: 406ms	remaining: 89.1ms
82:	learn: 21.2222534	total: 411ms	remaining: 84.1ms
83:	learn: 21.1535708	total: 415ms	remaining: 79ms
84:	learn: 21.0858902	total: 419ms	remaining: 73.9ms
85:	learn: 20.9206003	total: 423ms	remaining: 68.9ms
86:	learn: 20.8674695	total: 429ms	remaining: 64ms
87:	learn: 20.8089875	total: 434ms	remaining: 59.1ms
88:	learn: 20.7085401	total: 438ms	remaining: 54.2ms
89:	learn: 20.5513468	total: 443ms	remaining: 49.3ms
90:	learn: 20.4586742	total: 448ms	remaining: 44.3ms
91:	learn: 20.3932149	total: 453ms	remaining: 39.4ms
92:	learn: 20.3000895	total: 462ms	remaining: 34.8ms
93:	learn: 20.2254009	total: 469ms	remaining: 29.9ms
94:	learn: 20.1750050	total: 484ms	remaining: 25.5ms
95:	learn: 20.0715579	total: 489ms	remaining: 20.4ms
96:	learn: 19.9920082	total: 494ms	remaining: 15.3ms
97:	learn: 19.9664401	total: 499ms	remaining: 10.2ms
98:	learn: 19.8689673	total: 504ms	remaining: 5.09ms
99:	learn: 19.7537356	total: 509ms	remaining: 0us
0:	learn: 46.8832143	total: 4.63ms	remaining: 458ms
1:	learn: 45.8700349	total: 8.99ms	remaining: 441ms
2:	learn: 45.0546867	total: 13ms	remaining: 422ms
3:	learn: 44.2829439	total: 17.4ms	remaining: 417ms
4:	learn: 43.4609042	total: 21.6ms	remaining: 410ms
5:	learn: 42.6754991	total: 25.8ms	remaining: 404ms
6:	learn: 41.9234935	total: 29.8ms	remaining: 396ms
7:	learn: 41.3987518	total: 33.8ms	remaining: 389ms
8:	learn: 40.6625066	total: 38ms	remaining: 384ms
9:	learn: 40.0029561	total: 42.2ms	remaining: 380ms
10:	learn: 39.3897033	total: 46.6ms	remaining: 377ms
11:	learn: 38.7741453	total: 50.8ms	remaining: 372ms
12:	learn: 38.1201100	total: 54.8ms	remaining: 367ms
13:	learn: 37.5129454	total: 59ms	remaining: 362ms
14:	learn: 37.2062206	total: 63.3ms	remaining: 359ms
15:	learn: 36.6831741	total: 67.6ms	remaining: 355ms
16:	learn: 36.2902788	total: 71.9ms	remaining: 351ms
17:	learn: 35.7639930	total: 76.8ms	remaining: 350ms
18:	learn: 35.2580953	total: 81.6ms	remaining: 348ms
19:	learn: 34.7809739	total: 86.8ms	remaining: 347ms
20:	learn: 34.1330433	total: 91.9ms	remaining: 346ms
21:	learn: 33.7302219	total: 97.4ms	remaining: 345ms
22:	learn: 33.3502495	total: 103ms	remaining: 345ms
23:	learn: 33.0067804	total: 109ms	remaining: 344ms
24:	learn: 32.6897855	total: 114ms	remaining: 343ms
25:	learn: 32.4361119	total: 119ms	remaining: 340ms
26:	learn: 32.1278981	total: 125ms	remaining: 337ms
27:	learn: 31.7863721	total: 134ms	remaining: 343ms
28:	learn: 31.4791450	total: 142ms	remaining: 348ms
29:	learn: 31.1760161	total: 152ms	remaining: 355ms
30:	learn: 30.9238888	total: 159ms	remaining: 355ms
31:	learn: 30.5500905	total: 165ms	remaining: 351ms
32:	learn: 30.3078126	total: 170ms	remaining: 346ms
33:	learn: 30.0480921	total: 175ms	remaining: 340ms
34:	learn: 29.8623884	total: 181ms	remaining: 335ms
35:	learn: 29.5991038	total: 186ms	remaining: 330ms
36:	learn: 29.4061161	total: 191ms	remaining: 325ms
37:	learn: 29.0269515	total: 196ms	remaining: 319ms
38:	learn: 28.8224959	total: 201ms	remaining: 315ms
39:	learn: 28.6417843	total: 206ms	remaining: 309ms
40:	learn: 28.3633368	total: 212ms	remaining: 304ms
41:	learn: 28.0200246	total: 217ms	remaining: 300ms
42:	learn: 27.7221254	total: 223ms	remaining: 295ms
43:	learn: 27.5105818	total: 227ms	remaining: 289ms
44:	learn: 27.3551010	total: 231ms	remaining: 283ms
45:	learn: 27.0787522	total: 236ms	remaining: 277ms
46:	learn: 26.8726317	total: 240ms	remaining: 271ms
47:	learn: 26.8003277	total: 244ms	remaining: 264ms
48:	learn: 26.5493785	total: 248ms	remaining: 259ms
49:	learn: 26.3699550	total: 253ms	remaining: 253ms
50:	learn: 26.1519631	total: 257ms	remaining: 247ms
51:	learn: 25.9277325	total: 262ms	remaining: 242ms
52:	learn: 25.7286035	total: 266ms	remaining: 236ms
53:	learn: 25.4999193	total: 271ms	remaining: 231ms
54:	learn: 25.3434703	total: 275ms	remaining: 225ms
55:	learn: 25.1497545	total: 279ms	remaining: 219ms
56:	learn: 24.9498143	total: 283ms	remaining: 214ms
57:	learn: 24.6509390	total: 287ms	remaining: 208ms
58:	learn: 24.5576144	total: 291ms	remaining: 203ms
59:	learn: 24.4265144	total: 296ms	remaining: 198ms
60:	learn: 24.3100706	total: 301ms	remaining: 192ms
61:	learn: 24.1727952	total: 306ms	remaining: 187ms
62:	learn: 24.0478558	total: 311ms	remaining: 182ms
63:	learn: 23.9124577	total: 315ms	remaining: 177ms
64:	learn: 23.7703718	total: 320ms	remaining: 172ms
65:	learn: 23.5975027	total: 325ms	remaining: 168ms
66:	learn: 23.4318077	total: 333ms	remaining: 164ms
67:	learn: 23.3099691	total: 341ms	remaining: 161ms
68:	learn: 23.1947982	total: 347ms	remaining: 156ms
69:	learn: 23.0260174	total: 352ms	remaining: 151ms
70:	learn: 22.8523100	total: 358ms	remaining: 146ms
71:	learn: 22.8028534	total: 362ms	remaining: 141ms
72:	learn: 22.6880658	total: 367ms	remaining: 136ms
73:	learn: 22.5956809	total: 372ms	remaining: 131ms
74:	learn: 22.4692932	total: 376ms	remaining: 125ms
75:	learn: 22.2863504	total: 381ms	remaining: 120ms
76:	learn: 22.1911237	total: 385ms	remaining: 115ms
77:	learn: 22.1098391	total: 389ms	remaining: 110ms
78:	learn: 22.0182738	total: 393ms	remaining: 105ms
79:	learn: 21.9306746	total: 397ms	remaining: 99.3ms
80:	learn: 21.7508233	total: 401ms	remaining: 94.1ms
81:	learn: 21.7108446	total: 405ms	remaining: 89ms
82:	learn: 21.5931852	total: 410ms	remaining: 84ms
83:	learn: 21.4480361	total: 414ms	remaining: 78.9ms
84:	learn: 21.3092119	total: 419ms	remaining: 73.9ms
85:	learn: 21.2605557	total: 423ms	remaining: 68.9ms
86:	learn: 21.1123597	total: 427ms	remaining: 63.8ms
87:	learn: 21.0115642	total: 431ms	remaining: 58.8ms
88:	learn: 20.9389040	total: 435ms	remaining: 53.8ms
89:	learn: 20.8300300	total: 440ms	remaining: 48.8ms
90:	learn: 20.7159733	total: 444ms	remaining: 43.9ms
91:	learn: 20.6282090	total: 448ms	remaining: 39ms
92:	learn: 20.5164529	total: 452ms	remaining: 34ms
93:	learn: 20.4692032	total: 456ms	remaining: 29.1ms
94:	learn: 20.3768451	total: 461ms	remaining: 24.2ms
95:	learn: 20.2808056	total: 465ms	remaining: 19.4ms
96:	learn: 20.2082089	total: 469ms	remaining: 14.5ms
97:	learn: 20.1698768	total: 473ms	remaining: 9.66ms
98:	learn: 20.1048816	total: 478ms	remaining: 4.83ms
99:	learn: 20.0086159	total: 482ms	remaining: 0us
0:	learn: 27.3351083	total: 34ms	remaining: 3.37s
1:	learn: 26.7523848	total: 60.3ms	remaining: 2.95s
2:	learn: 26.1326580	total: 84.6ms	remaining: 2.73s
3:	learn: 25.5584244	total: 109ms	remaining: 2.61s
4:	learn: 25.0458748	total: 135ms	remaining: 2.56s
5:	learn: 24.4868837	total: 160ms	remaining: 2.51s
6:	learn: 23.9306999	total: 185ms	remaining: 2.46s
7:	learn: 23.4799808	total: 212ms	remaining: 2.43s
8:	learn: 22.9510347	total: 244ms	remaining: 2.47s
9:	learn: 22.4529079	total: 269ms	remaining: 2.42s
10:	learn: 21.9320739	total: 292ms	remaining: 2.36s
11:	learn: 21.4729295	total: 316ms	remaining: 2.32s
12:	learn: 21.0885550	total: 340ms	remaining: 2.28s
13:	learn: 20.7063206	total: 364ms	remaining: 2.24s
14:	learn: 20.3539530	total: 388ms	remaining: 2.2s
15:	learn: 20.0071947	total: 413ms	remaining: 2.17s
16:	learn: 19.6579830	total: 438ms	remaining: 2.14s
17:	learn: 19.2450502	total: 471ms	remaining: 2.14s
18:	learn: 18.8010420	total: 498ms	remaining: 2.12s
19:	learn: 18.4055273	total: 523ms	remaining: 2.09s
20:	learn: 18.0395642	total: 547ms	remaining: 2.06s
21:	learn: 17.6568400	total: 573ms	remaining: 2.03s
22:	learn: 17.4284559	total: 597ms	remaining: 2s
23:	learn: 17.0957528	total: 621ms	remaining: 1.97s
24:	learn: 16.7636157	total: 646ms	remaining: 1.94s
25:	learn: 16.4987969	total: 670ms	remaining: 1.91s
26:	learn: 16.2204177	total: 699ms	remaining: 1.89s
27:	learn: 15.9525124	total: 724ms	remaining: 1.86s
28:	learn: 15.5905943	total: 748ms	remaining: 1.83s
29:	learn: 15.3628633	total: 772ms	remaining: 1.8s
30:	learn: 15.1420693	total: 796ms	remaining: 1.77s
31:	learn: 14.9419461	total: 819ms	remaining: 1.74s
32:	learn: 14.7386592	total: 843ms	remaining: 1.71s
33:	learn: 14.5398023	total: 867ms	remaining: 1.68s
34:	learn: 14.2644206	total: 902ms	remaining: 1.68s
35:	learn: 14.0168503	total: 927ms	remaining: 1.65s
36:	learn: 13.7687637	total: 951ms	remaining: 1.62s
37:	learn: 13.5855913	total: 976ms	remaining: 1.59s
38:	learn: 13.3656902	total: 1s	remaining: 1.57s
39:	learn: 13.2111716	total: 1.03s	remaining: 1.54s
40:	learn: 13.0360149	total: 1.05s	remaining: 1.52s
41:	learn: 12.8789444	total: 1.08s	remaining: 1.49s
42:	learn: 12.6680179	total: 1.11s	remaining: 1.47s
43:	learn: 12.4892268	total: 1.14s	remaining: 1.45s
44:	learn: 12.3275828	total: 1.17s	remaining: 1.42s
45:	learn: 12.2035682	total: 1.19s	remaining: 1.4s
46:	learn: 12.0777397	total: 1.22s	remaining: 1.37s
47:	learn: 11.9055552	total: 1.24s	remaining: 1.34s
48:	learn: 11.7465481	total: 1.26s	remaining: 1.32s
49:	learn: 11.5961200	total: 1.29s	remaining: 1.29s
50:	learn: 11.4305519	total: 1.33s	remaining: 1.27s
51:	learn: 11.2794033	total: 1.35s	remaining: 1.25s
52:	learn: 11.1586950	total: 1.38s	remaining: 1.22s
53:	learn: 11.0432937	total: 1.4s	remaining: 1.2s
54:	learn: 10.9094838	total: 1.43s	remaining: 1.17s
55:	learn: 10.7713451	total: 1.46s	remaining: 1.14s
56:	learn: 10.6664177	total: 1.48s	remaining: 1.12s
57:	learn: 10.5600117	total: 1.51s	remaining: 1.09s
58:	learn: 10.4438974	total: 1.54s	remaining: 1.07s
59:	learn: 10.3294224	total: 1.57s	remaining: 1.05s
60:	learn: 10.2510301	total: 1.59s	remaining: 1.02s
61:	learn: 10.1363264	total: 1.62s	remaining: 994ms
62:	learn: 10.0415049	total: 1.65s	remaining: 967ms
63:	learn: 9.9499833	total: 1.67s	remaining: 940ms
64:	learn: 9.8774263	total: 1.7s	remaining: 914ms
65:	learn: 9.7458853	total: 1.72s	remaining: 887ms
66:	learn: 9.6733951	total: 1.75s	remaining: 863ms
67:	learn: 9.5861856	total: 1.79s	remaining: 841ms
68:	learn: 9.4524193	total: 1.81s	remaining: 815ms
69:	learn: 9.3501165	total: 1.84s	remaining: 788ms
70:	learn: 9.3092902	total: 1.87s	remaining: 763ms
71:	learn: 9.2244222	total: 1.89s	remaining: 736ms
72:	learn: 9.1554253	total: 1.92s	remaining: 709ms
73:	learn: 9.1098892	total: 1.94s	remaining: 682ms
74:	learn: 9.0210213	total: 1.97s	remaining: 657ms
75:	learn: 8.9303181	total: 2s	remaining: 632ms
76:	learn: 8.8489769	total: 2.03s	remaining: 605ms
77:	learn: 8.7651580	total: 2.05s	remaining: 578ms
78:	learn: 8.7126796	total: 2.08s	remaining: 552ms
79:	learn: 8.6404554	total: 2.1s	remaining: 525ms
80:	learn: 8.5844756	total: 2.13s	remaining: 499ms
81:	learn: 8.5234333	total: 2.15s	remaining: 472ms
82:	learn: 8.4298762	total: 2.18s	remaining: 446ms
83:	learn: 8.3483002	total: 2.21s	remaining: 422ms
84:	learn: 8.2670647	total: 2.24s	remaining: 395ms
85:	learn: 8.1917398	total: 2.26s	remaining: 368ms
86:	learn: 8.1073642	total: 2.29s	remaining: 342ms
87:	learn: 8.0633288	total: 2.31s	remaining: 315ms
88:	learn: 8.0107997	total: 2.33s	remaining: 289ms
89:	learn: 7.9563547	total: 2.36s	remaining: 262ms
90:	learn: 7.8811408	total: 2.39s	remaining: 236ms
91:	learn: 7.8096107	total: 2.42s	remaining: 210ms
92:	learn: 7.7481700	total: 2.44s	remaining: 184ms
93:	learn: 7.6847843	total: 2.46s	remaining: 157ms
94:	learn: 7.6252335	total: 2.49s	remaining: 131ms
95:	learn: 7.5593148	total: 2.51s	remaining: 105ms
96:	learn: 7.5042331	total: 2.54s	remaining: 78.4ms
97:	learn: 7.4553707	total: 2.56s	remaining: 52.2ms
98:	learn: 7.4035691	total: 2.58s	remaining: 26.1ms
99:	learn: 7.3457537	total: 2.61s	remaining: 0us
0:	learn: 42.5901652	total: 24.5ms	remaining: 2.43s
1:	learn: 41.2917733	total: 49.6ms	remaining: 2.43s
2:	learn: 40.0285549	total: 74ms	remaining: 2.39s
3:	learn: 38.9051734	total: 98.4ms	remaining: 2.36s
4:	learn: 37.7712063	total: 124ms	remaining: 2.35s
5:	learn: 36.6826884	total: 148ms	remaining: 2.31s
6:	learn: 35.6341048	total: 178ms	remaining: 2.37s
7:	learn: 34.5035449	total: 204ms	remaining: 2.35s
8:	learn: 33.5636424	total: 228ms	remaining: 2.31s
9:	learn: 32.5970644	total: 252ms	remaining: 2.27s
10:	learn: 31.8528815	total: 276ms	remaining: 2.23s
11:	learn: 31.0330095	total: 301ms	remaining: 2.2s
12:	learn: 30.3119851	total: 325ms	remaining: 2.17s
13:	learn: 29.5212022	total: 355ms	remaining: 2.18s
14:	learn: 28.7182657	total: 384ms	remaining: 2.18s
15:	learn: 28.0433195	total: 410ms	remaining: 2.15s
16:	learn: 27.2966576	total: 434ms	remaining: 2.12s
17:	learn: 26.5122856	total: 459ms	remaining: 2.09s
18:	learn: 25.8998213	total: 486ms	remaining: 2.07s
19:	learn: 25.2416026	total: 511ms	remaining: 2.04s
20:	learn: 24.6399819	total: 536ms	remaining: 2.01s
21:	learn: 24.0372756	total: 560ms	remaining: 1.98s
22:	learn: 23.4553733	total: 590ms	remaining: 1.98s
23:	learn: 22.9027871	total: 613ms	remaining: 1.94s
24:	learn: 22.4470878	total: 638ms	remaining: 1.91s
25:	learn: 21.9143721	total: 661ms	remaining: 1.88s
26:	learn: 21.4979516	total: 685ms	remaining: 1.85s
27:	learn: 21.0867622	total: 709ms	remaining: 1.82s
28:	learn: 20.6187419	total: 733ms	remaining: 1.79s
29:	learn: 20.1662373	total: 758ms	remaining: 1.77s
30:	learn: 19.8225041	total: 788ms	remaining: 1.75s
31:	learn: 19.4539400	total: 816ms	remaining: 1.73s
32:	learn: 19.1127000	total: 841ms	remaining: 1.71s
33:	learn: 18.7767435	total: 865ms	remaining: 1.68s
34:	learn: 18.4038779	total: 891ms	remaining: 1.66s
35:	learn: 18.0021121	total: 915ms	remaining: 1.63s
36:	learn: 17.6673419	total: 938ms	remaining: 1.6s
37:	learn: 17.3562137	total: 962ms	remaining: 1.57s
38:	learn: 17.0128082	total: 987ms	remaining: 1.54s
39:	learn: 16.7572783	total: 1.02s	remaining: 1.53s
40:	learn: 16.4883778	total: 1.04s	remaining: 1.5s
41:	learn: 16.1756364	total: 1.06s	remaining: 1.47s
42:	learn: 15.9150506	total: 1.09s	remaining: 1.45s
43:	learn: 15.6787555	total: 1.12s	remaining: 1.43s
44:	learn: 15.3862120	total: 1.15s	remaining: 1.4s
45:	learn: 15.1512250	total: 1.18s	remaining: 1.38s
46:	learn: 14.9410960	total: 1.21s	remaining: 1.36s
47:	learn: 14.7086321	total: 1.24s	remaining: 1.34s
48:	learn: 14.5065360	total: 1.27s	remaining: 1.32s
49:	learn: 14.3007466	total: 1.3s	remaining: 1.3s
50:	learn: 14.0972724	total: 1.32s	remaining: 1.27s
51:	learn: 13.8793525	total: 1.35s	remaining: 1.25s
52:	learn: 13.6381311	total: 1.38s	remaining: 1.22s
53:	learn: 13.4603568	total: 1.41s	remaining: 1.2s
54:	learn: 13.2856920	total: 1.43s	remaining: 1.17s
55:	learn: 13.1350779	total: 1.48s	remaining: 1.16s
56:	learn: 13.0110083	total: 1.5s	remaining: 1.13s
57:	learn: 12.8405210	total: 1.53s	remaining: 1.11s
58:	learn: 12.6793938	total: 1.56s	remaining: 1.08s
59:	learn: 12.5497475	total: 1.58s	remaining: 1.05s
60:	learn: 12.4319334	total: 1.61s	remaining: 1.03s
61:	learn: 12.2780964	total: 1.64s	remaining: 1s
62:	learn: 12.1187174	total: 1.67s	remaining: 978ms
63:	learn: 11.9635081	total: 1.71s	remaining: 963ms
64:	learn: 11.8366366	total: 1.74s	remaining: 937ms
65:	learn: 11.6598347	total: 1.77s	remaining: 910ms
66:	learn: 11.5227416	total: 1.79s	remaining: 884ms
67:	learn: 11.4058818	total: 1.82s	remaining: 857ms
68:	learn: 11.2627892	total: 1.85s	remaining: 830ms
69:	learn: 11.1415094	total: 1.87s	remaining: 803ms
70:	learn: 11.0703329	total: 1.9s	remaining: 777ms
71:	learn: 10.9568944	total: 1.95s	remaining: 758ms
72:	learn: 10.8314078	total: 1.97s	remaining: 730ms
73:	learn: 10.7320013	total: 2s	remaining: 703ms
74:	learn: 10.6191666	total: 2.03s	remaining: 676ms
75:	learn: 10.5156798	total: 2.05s	remaining: 649ms
76:	learn: 10.4174442	total: 2.08s	remaining: 622ms
77:	learn: 10.3318165	total: 2.11s	remaining: 595ms
78:	learn: 10.2300435	total: 2.14s	remaining: 568ms
79:	learn: 10.1665911	total: 2.18s	remaining: 546ms
80:	learn: 10.1030585	total: 2.21s	remaining: 519ms
81:	learn: 10.0254875	total: 2.24s	remaining: 491ms
82:	learn: 9.9387640	total: 2.27s	remaining: 464ms
83:	learn: 9.8289920	total: 2.29s	remaining: 437ms
84:	learn: 9.7629500	total: 2.32s	remaining: 410ms
85:	learn: 9.6778611	total: 2.35s	remaining: 382ms
86:	learn: 9.5920617	total: 2.38s	remaining: 356ms
87:	learn: 9.4931297	total: 2.41s	remaining: 329ms
88:	learn: 9.4010604	total: 2.44s	remaining: 302ms
89:	learn: 9.3328614	total: 2.47s	remaining: 275ms
90:	learn: 9.2409094	total: 2.5s	remaining: 247ms
91:	learn: 9.1214245	total: 2.52s	remaining: 219ms
92:	learn: 9.0795335	total: 2.55s	remaining: 192ms
93:	learn: 8.9777250	total: 2.58s	remaining: 165ms
94:	learn: 8.9059891	total: 2.61s	remaining: 138ms
95:	learn: 8.8343294	total: 2.64s	remaining: 110ms
96:	learn: 8.7237295	total: 2.68s	remaining: 82.8ms
97:	learn: 8.6401509	total: 2.71s	remaining: 55.2ms
98:	learn: 8.5735108	total: 2.73s	remaining: 27.6ms
99:	learn: 8.5084579	total: 2.76s	remaining: 0us
0:	learn: 46.1633714	total: 32.3ms	remaining: 3.19s
1:	learn: 44.7904617	total: 59.7ms	remaining: 2.92s
2:	learn: 43.5292386	total: 86ms	remaining: 2.78s
3:	learn: 42.3776226	total: 111ms	remaining: 2.65s
4:	learn: 41.1726533	total: 136ms	remaining: 2.58s
5:	learn: 40.0256490	total: 161ms	remaining: 2.52s
6:	learn: 39.0318588	total: 186ms	remaining: 2.47s
7:	learn: 38.0361181	total: 210ms	remaining: 2.41s
8:	learn: 37.0398789	total: 234ms	remaining: 2.37s
9:	learn: 36.0525089	total: 258ms	remaining: 2.32s
10:	learn: 35.0926830	total: 284ms	remaining: 2.3s
11:	learn: 34.1467022	total: 321ms	remaining: 2.35s
12:	learn: 33.5625454	total: 348ms	remaining: 2.33s
13:	learn: 32.7993162	total: 375ms	remaining: 2.3s
14:	learn: 32.1179593	total: 400ms	remaining: 2.27s
15:	learn: 31.5382898	total: 426ms	remaining: 2.23s
16:	learn: 30.8398862	total: 451ms	remaining: 2.2s
17:	learn: 30.1060070	total: 475ms	remaining: 2.17s
18:	learn: 29.3826415	total: 501ms	remaining: 2.14s
19:	learn: 28.5809579	total: 529ms	remaining: 2.12s
20:	learn: 28.0104942	total: 558ms	remaining: 2.1s
21:	learn: 27.5189566	total: 583ms	remaining: 2.06s
22:	learn: 26.8603656	total: 608ms	remaining: 2.04s
23:	learn: 26.2547050	total: 634ms	remaining: 2.01s
24:	learn: 25.6559137	total: 658ms	remaining: 1.97s
25:	learn: 25.1148352	total: 683ms	remaining: 1.94s
26:	learn: 24.5782363	total: 709ms	remaining: 1.92s
27:	learn: 24.0350871	total: 738ms	remaining: 1.9s
28:	learn: 23.5119480	total: 771ms	remaining: 1.89s
29:	learn: 23.1119795	total: 799ms	remaining: 1.86s
30:	learn: 22.6838288	total: 825ms	remaining: 1.83s
31:	learn: 22.2554624	total: 850ms	remaining: 1.81s
32:	learn: 21.8241578	total: 875ms	remaining: 1.78s
33:	learn: 21.5062830	total: 901ms	remaining: 1.75s
34:	learn: 21.0109226	total: 927ms	remaining: 1.72s
35:	learn: 20.5518606	total: 953ms	remaining: 1.69s
36:	learn: 20.1195339	total: 984ms	remaining: 1.68s
37:	learn: 19.7143479	total: 1.01s	remaining: 1.65s
38:	learn: 19.3325253	total: 1.03s	remaining: 1.62s
39:	learn: 19.0310706	total: 1.06s	remaining: 1.59s
40:	learn: 18.7262797	total: 1.09s	remaining: 1.56s
41:	learn: 18.3611836	total: 1.11s	remaining: 1.54s
42:	learn: 17.9960838	total: 1.14s	remaining: 1.51s
43:	learn: 17.7058991	total: 1.17s	remaining: 1.49s
44:	learn: 17.3944673	total: 1.2s	remaining: 1.47s
45:	learn: 17.1283561	total: 1.23s	remaining: 1.44s
46:	learn: 16.8406890	total: 1.25s	remaining: 1.41s
47:	learn: 16.6072061	total: 1.28s	remaining: 1.38s
48:	learn: 16.3697411	total: 1.3s	remaining: 1.36s
49:	learn: 15.9995507	total: 1.33s	remaining: 1.33s
50:	learn: 15.7372570	total: 1.35s	remaining: 1.3s
51:	learn: 15.4840152	total: 1.39s	remaining: 1.28s
52:	learn: 15.2899590	total: 1.41s	remaining: 1.25s
53:	learn: 15.0111064	total: 1.44s	remaining: 1.22s
54:	learn: 14.7504952	total: 1.46s	remaining: 1.2s
55:	learn: 14.5309762	total: 1.49s	remaining: 1.17s
56:	learn: 14.3525677	total: 1.51s	remaining: 1.14s
57:	learn: 14.1816296	total: 1.54s	remaining: 1.11s
58:	learn: 13.9958516	total: 1.56s	remaining: 1.09s
59:	learn: 13.8356735	total: 1.59s	remaining: 1.06s
60:	learn: 13.6499824	total: 1.62s	remaining: 1.04s
61:	learn: 13.4621357	total: 1.65s	remaining: 1.01s
62:	learn: 13.3234970	total: 1.67s	remaining: 983ms
63:	learn: 13.1407122	total: 1.7s	remaining: 956ms
64:	learn: 13.0161177	total: 1.73s	remaining: 930ms
65:	learn: 12.8361175	total: 1.75s	remaining: 903ms
66:	learn: 12.7103117	total: 1.78s	remaining: 876ms
67:	learn: 12.5145429	total: 1.8s	remaining: 848ms
68:	learn: 12.3966318	total: 1.83s	remaining: 824ms
69:	learn: 12.2175623	total: 1.86s	remaining: 798ms
70:	learn: 12.0455583	total: 1.89s	remaining: 771ms
71:	learn: 11.9190589	total: 1.91s	remaining: 743ms
72:	learn: 11.7990452	total: 1.94s	remaining: 716ms
73:	learn: 11.6735331	total: 1.96s	remaining: 689ms
74:	learn: 11.5694753	total: 1.99s	remaining: 662ms
75:	learn: 11.4471422	total: 2.01s	remaining: 636ms
76:	learn: 11.3357642	total: 2.05s	remaining: 612ms
77:	learn: 11.2160164	total: 2.07s	remaining: 585ms
78:	learn: 11.1477947	total: 2.1s	remaining: 559ms
79:	learn: 11.0733969	total: 2.13s	remaining: 532ms
80:	learn: 10.9851608	total: 2.15s	remaining: 505ms
81:	learn: 10.8669537	total: 2.18s	remaining: 478ms
82:	learn: 10.7846130	total: 2.2s	remaining: 451ms
83:	learn: 10.6429068	total: 2.23s	remaining: 425ms
84:	learn: 10.5485368	total: 2.26s	remaining: 399ms
85:	learn: 10.4626750	total: 2.29s	remaining: 372ms
86:	learn: 10.3487863	total: 2.31s	remaining: 345ms
87:	learn: 10.2608682	total: 2.33s	remaining: 318ms
88:	learn: 10.1492862	total: 2.36s	remaining: 292ms
89:	learn: 10.0825429	total: 2.38s	remaining: 265ms
90:	learn: 9.9668337	total: 2.41s	remaining: 238ms
91:	learn: 9.8924239	total: 2.43s	remaining: 212ms
92:	learn: 9.7959729	total: 2.47s	remaining: 186ms
93:	learn: 9.7342503	total: 2.5s	remaining: 159ms
94:	learn: 9.6266181	total: 2.52s	remaining: 133ms
95:	learn: 9.5607316	total: 2.55s	remaining: 106ms
96:	learn: 9.4615938	total: 2.57s	remaining: 79.5ms
97:	learn: 9.3562852	total: 2.6s	remaining: 53ms
98:	learn: 9.2518786	total: 2.62s	remaining: 26.5ms
99:	learn: 9.2130065	total: 2.64s	remaining: 0us
0:	learn: 45.6477780	total: 23.8ms	remaining: 2.36s
1:	learn: 44.3885048	total: 48ms	remaining: 2.35s
2:	learn: 43.1316502	total: 72.4ms	remaining: 2.34s
3:	learn: 41.8123054	total: 97ms	remaining: 2.33s
4:	learn: 40.7214533	total: 121ms	remaining: 2.29s
5:	learn: 39.6276122	total: 144ms	remaining: 2.25s
6:	learn: 38.6471225	total: 168ms	remaining: 2.24s
7:	learn: 37.7493668	total: 192ms	remaining: 2.21s
8:	learn: 36.7733816	total: 227ms	remaining: 2.3s
9:	learn: 36.1233521	total: 251ms	remaining: 2.26s
10:	learn: 35.5715091	total: 276ms	remaining: 2.23s
11:	learn: 34.6287751	total: 300ms	remaining: 2.2s
12:	learn: 33.8024988	total: 325ms	remaining: 2.17s
13:	learn: 33.0699864	total: 349ms	remaining: 2.15s
14:	learn: 32.2267139	total: 374ms	remaining: 2.12s
15:	learn: 31.4879090	total: 399ms	remaining: 2.09s
16:	learn: 30.6681130	total: 429ms	remaining: 2.1s
17:	learn: 29.9739192	total: 454ms	remaining: 2.07s
18:	learn: 29.3293065	total: 477ms	remaining: 2.03s
19:	learn: 28.5893418	total: 501ms	remaining: 2s
20:	learn: 28.0793862	total: 525ms	remaining: 1.97s
21:	learn: 27.5553702	total: 549ms	remaining: 1.95s
22:	learn: 27.0123732	total: 573ms	remaining: 1.92s
23:	learn: 26.3897992	total: 598ms	remaining: 1.89s
24:	learn: 25.7405079	total: 626ms	remaining: 1.88s
25:	learn: 25.2366375	total: 659ms	remaining: 1.88s
26:	learn: 24.8040727	total: 684ms	remaining: 1.85s
27:	learn: 24.3831145	total: 709ms	remaining: 1.82s
28:	learn: 23.9264258	total: 733ms	remaining: 1.79s
29:	learn: 23.4965665	total: 757ms	remaining: 1.77s
30:	learn: 23.0750907	total: 781ms	remaining: 1.74s
31:	learn: 22.6177456	total: 806ms	remaining: 1.71s
32:	learn: 22.1936903	total: 838ms	remaining: 1.7s
33:	learn: 21.7237373	total: 864ms	remaining: 1.68s
34:	learn: 21.2885821	total: 889ms	remaining: 1.65s
35:	learn: 20.8773820	total: 913ms	remaining: 1.62s
36:	learn: 20.5069022	total: 936ms	remaining: 1.59s
37:	learn: 20.1026772	total: 960ms	remaining: 1.56s
38:	learn: 19.7278063	total: 984ms	remaining: 1.54s
39:	learn: 19.4576176	total: 1.01s	remaining: 1.51s
40:	learn: 19.1716041	total: 1.03s	remaining: 1.49s
41:	learn: 18.8541728	total: 1.05s	remaining: 1.46s
42:	learn: 18.6411979	total: 1.09s	remaining: 1.44s
43:	learn: 18.3146636	total: 1.11s	remaining: 1.42s
44:	learn: 18.0208582	total: 1.14s	remaining: 1.39s
45:	learn: 17.7344521	total: 1.16s	remaining: 1.37s
46:	learn: 17.4797974	total: 1.19s	remaining: 1.34s
47:	learn: 17.2182299	total: 1.21s	remaining: 1.31s
48:	learn: 16.9607453	total: 1.24s	remaining: 1.29s
49:	learn: 16.7297863	total: 1.26s	remaining: 1.26s
50:	learn: 16.4913674	total: 1.3s	remaining: 1.25s
51:	learn: 16.2886548	total: 1.33s	remaining: 1.23s
52:	learn: 16.0297055	total: 1.36s	remaining: 1.2s
53:	learn: 15.8558289	total: 1.39s	remaining: 1.18s
54:	learn: 15.6256772	total: 1.41s	remaining: 1.16s
55:	learn: 15.4571057	total: 1.44s	remaining: 1.13s
56:	learn: 15.2857211	total: 1.47s	remaining: 1.11s
57:	learn: 15.0790849	total: 1.5s	remaining: 1.08s
58:	learn: 14.8706573	total: 1.53s	remaining: 1.06s
59:	learn: 14.7142314	total: 1.56s	remaining: 1.04s
60:	learn: 14.5574075	total: 1.59s	remaining: 1.02s
61:	learn: 14.3831719	total: 1.62s	remaining: 994ms
62:	learn: 14.2429846	total: 1.65s	remaining: 968ms
63:	learn: 14.0982260	total: 1.68s	remaining: 943ms
64:	learn: 13.9793470	total: 1.7s	remaining: 917ms
65:	learn: 13.7843655	total: 1.73s	remaining: 893ms
66:	learn: 13.6382336	total: 1.76s	remaining: 868ms
67:	learn: 13.5395713	total: 1.79s	remaining: 842ms
68:	learn: 13.3797741	total: 1.82s	remaining: 819ms
69:	learn: 13.2910103	total: 1.85s	remaining: 793ms
70:	learn: 13.1587887	total: 1.88s	remaining: 767ms
71:	learn: 13.0464642	total: 1.91s	remaining: 741ms
72:	learn: 12.9189091	total: 1.94s	remaining: 718ms
73:	learn: 12.8056893	total: 1.97s	remaining: 693ms
74:	learn: 12.6904403	total: 2s	remaining: 667ms
75:	learn: 12.5608506	total: 2.03s	remaining: 640ms
76:	learn: 12.4712551	total: 2.05s	remaining: 614ms
77:	learn: 12.3371889	total: 2.09s	remaining: 589ms
78:	learn: 12.2449022	total: 2.12s	remaining: 563ms
79:	learn: 12.2163788	total: 2.14s	remaining: 536ms
80:	learn: 12.1464820	total: 2.18s	remaining: 511ms
81:	learn: 12.0001066	total: 2.21s	remaining: 484ms
82:	learn: 11.8843691	total: 2.23s	remaining: 457ms
83:	learn: 11.7638631	total: 2.26s	remaining: 430ms
84:	learn: 11.6389646	total: 2.29s	remaining: 403ms
85:	learn: 11.5343065	total: 2.32s	remaining: 378ms
86:	learn: 11.4267531	total: 2.35s	remaining: 351ms
87:	learn: 11.3136728	total: 2.37s	remaining: 324ms
88:	learn: 11.2361574	total: 2.41s	remaining: 298ms
89:	learn: 11.1507886	total: 2.44s	remaining: 271ms
90:	learn: 11.0988952	total: 2.47s	remaining: 244ms
91:	learn: 10.9988426	total: 2.49s	remaining: 217ms
92:	learn: 10.9584792	total: 2.52s	remaining: 190ms
93:	learn: 10.8771461	total: 2.56s	remaining: 163ms
94:	learn: 10.8161358	total: 2.58s	remaining: 136ms
95:	learn: 10.7524450	total: 2.62s	remaining: 109ms
96:	learn: 10.6566836	total: 2.65s	remaining: 81.9ms
97:	learn: 10.5550602	total: 2.67s	remaining: 54.6ms
98:	learn: 10.4790583	total: 2.7s	remaining: 27.3ms
99:	learn: 10.4087354	total: 2.73s	remaining: 0us
0:	learn: 46.5398832	total: 28.2ms	remaining: 2.79s
1:	learn: 45.3142618	total: 65.8ms	remaining: 3.22s
2:	learn: 44.0378137	total: 104ms	remaining: 3.35s
3:	learn: 42.7976734	total: 132ms	remaining: 3.17s
4:	learn: 41.7080859	total: 161ms	remaining: 3.05s
5:	learn: 40.4513327	total: 188ms	remaining: 2.94s
6:	learn: 39.4903346	total: 214ms	remaining: 2.85s
7:	learn: 38.3767870	total: 242ms	remaining: 2.78s
8:	learn: 37.4056810	total: 269ms	remaining: 2.72s
9:	learn: 36.4947716	total: 298ms	remaining: 2.68s
10:	learn: 35.4421832	total: 337ms	remaining: 2.73s
11:	learn: 34.6183487	total: 352ms	remaining: 2.58s
12:	learn: 33.9603524	total: 378ms	remaining: 2.53s
13:	learn: 33.0635534	total: 404ms	remaining: 2.48s
14:	learn: 32.2067999	total: 431ms	remaining: 2.44s
15:	learn: 31.3961282	total: 458ms	remaining: 2.4s
16:	learn: 30.7113239	total: 486ms	remaining: 2.37s
17:	learn: 29.9919005	total: 516ms	remaining: 2.35s
18:	learn: 29.4016891	total: 555ms	remaining: 2.36s
19:	learn: 28.7435066	total: 591ms	remaining: 2.36s
20:	learn: 28.2283605	total: 618ms	remaining: 2.33s
21:	learn: 27.6749781	total: 645ms	remaining: 2.29s
22:	learn: 27.1695356	total: 672ms	remaining: 2.25s
23:	learn: 26.6842901	total: 699ms	remaining: 2.21s
24:	learn: 26.0987344	total: 727ms	remaining: 2.18s
25:	learn: 25.5266873	total: 757ms	remaining: 2.15s
26:	learn: 25.0200431	total: 785ms	remaining: 2.12s
27:	learn: 24.5972016	total: 818ms	remaining: 2.1s
28:	learn: 24.1557061	total: 845ms	remaining: 2.07s
29:	learn: 23.7405036	total: 871ms	remaining: 2.03s
30:	learn: 23.3574513	total: 899ms	remaining: 2s
31:	learn: 23.0493499	total: 926ms	remaining: 1.97s
32:	learn: 22.6480655	total: 963ms	remaining: 1.95s
33:	learn: 22.2777353	total: 992ms	remaining: 1.93s
34:	learn: 21.8294628	total: 1.02s	remaining: 1.89s
35:	learn: 21.4783115	total: 1.05s	remaining: 1.86s
36:	learn: 21.1271427	total: 1.08s	remaining: 1.84s
37:	learn: 20.7967443	total: 1.11s	remaining: 1.81s
38:	learn: 20.4949793	total: 1.14s	remaining: 1.78s
39:	learn: 20.1991695	total: 1.16s	remaining: 1.75s
40:	learn: 19.8869467	total: 1.2s	remaining: 1.72s
41:	learn: 19.5656862	total: 1.23s	remaining: 1.69s
42:	learn: 19.2415335	total: 1.25s	remaining: 1.66s
43:	learn: 18.9725471	total: 1.28s	remaining: 1.63s
44:	learn: 18.7035722	total: 1.31s	remaining: 1.61s
45:	learn: 18.3840395	total: 1.34s	remaining: 1.57s
46:	learn: 18.1486662	total: 1.37s	remaining: 1.54s
47:	learn: 17.8740440	total: 1.4s	remaining: 1.51s
48:	learn: 17.6056273	total: 1.43s	remaining: 1.49s
49:	learn: 17.4011083	total: 1.46s	remaining: 1.46s
50:	learn: 17.1935449	total: 1.49s	remaining: 1.43s
51:	learn: 16.9415227	total: 1.51s	remaining: 1.4s
52:	learn: 16.6568624	total: 1.55s	remaining: 1.38s
53:	learn: 16.4254479	total: 1.58s	remaining: 1.34s
54:	learn: 16.1958120	total: 1.6s	remaining: 1.31s
55:	learn: 15.9494332	total: 1.63s	remaining: 1.28s
56:	learn: 15.7736632	total: 1.67s	remaining: 1.26s
57:	learn: 15.6314122	total: 1.69s	remaining: 1.23s
58:	learn: 15.3707626	total: 1.72s	remaining: 1.19s
59:	learn: 15.2211664	total: 1.75s	remaining: 1.16s
60:	learn: 14.9939278	total: 1.77s	remaining: 1.13s
61:	learn: 14.8327626	total: 1.8s	remaining: 1.1s
62:	learn: 14.6555776	total: 1.83s	remaining: 1.08s
63:	learn: 14.5516961	total: 1.86s	remaining: 1.05s
64:	learn: 14.3660780	total: 1.89s	remaining: 1.02s
65:	learn: 14.1721909	total: 1.92s	remaining: 990ms
66:	learn: 14.0877696	total: 1.95s	remaining: 959ms
67:	learn: 13.9435793	total: 1.97s	remaining: 929ms
68:	learn: 13.7745805	total: 2s	remaining: 900ms
69:	learn: 13.6490858	total: 2.04s	remaining: 874ms
70:	learn: 13.5022080	total: 2.06s	remaining: 844ms
71:	learn: 13.3922163	total: 2.1s	remaining: 816ms
72:	learn: 13.2842701	total: 2.13s	remaining: 787ms
73:	learn: 13.1698693	total: 2.15s	remaining: 756ms
74:	learn: 13.0256610	total: 2.18s	remaining: 726ms
75:	learn: 12.8855147	total: 2.21s	remaining: 697ms
76:	learn: 12.7807971	total: 2.23s	remaining: 667ms
77:	learn: 12.6618407	total: 2.26s	remaining: 638ms
78:	learn: 12.5369866	total: 2.3s	remaining: 611ms
79:	learn: 12.4376925	total: 2.33s	remaining: 584ms
80:	learn: 12.3005012	total: 2.36s	remaining: 554ms
81:	learn: 12.1751315	total: 2.39s	remaining: 525ms
82:	learn: 12.0612289	total: 2.42s	remaining: 496ms
83:	learn: 11.9757193	total: 2.45s	remaining: 466ms
84:	learn: 11.8530411	total: 2.47s	remaining: 436ms
85:	learn: 11.7523616	total: 2.5s	remaining: 407ms
86:	learn: 11.6645272	total: 2.54s	remaining: 380ms
87:	learn: 11.5645111	total: 2.57s	remaining: 351ms
88:	learn: 11.4692480	total: 2.6s	remaining: 321ms
89:	learn: 11.3724902	total: 2.63s	remaining: 292ms
90:	learn: 11.2842147	total: 2.65s	remaining: 262ms
91:	learn: 11.1868295	total: 2.68s	remaining: 233ms
92:	learn: 11.0293625	total: 2.71s	remaining: 204ms
93:	learn: 10.9495625	total: 2.73s	remaining: 174ms
94:	learn: 10.8608168	total: 2.78s	remaining: 146ms
95:	learn: 10.7804780	total: 2.81s	remaining: 117ms
96:	learn: 10.6503623	total: 2.83s	remaining: 87.6ms
97:	learn: 10.5906748	total: 2.86s	remaining: 58.4ms
98:	learn: 10.4539468	total: 2.89s	remaining: 29.2ms
99:	learn: 10.3804160	total: 2.92s	remaining: 0us
0:	learn: 27.3351083	total: 26.2ms	remaining: 2.59s
1:	learn: 26.7523848	total: 52.9ms	remaining: 2.59s
2:	learn: 26.1326580	total: 80.3ms	remaining: 2.6s
3:	learn: 25.5584244	total: 115ms	remaining: 2.76s
4:	learn: 25.0458748	total: 143ms	remaining: 2.71s
5:	learn: 24.4868837	total: 169ms	remaining: 2.65s
6:	learn: 23.9306999	total: 206ms	remaining: 2.74s
7:	learn: 23.4799808	total: 235ms	remaining: 2.71s
8:	learn: 22.9510347	total: 263ms	remaining: 2.65s
9:	learn: 22.4529079	total: 290ms	remaining: 2.61s
10:	learn: 21.9320739	total: 319ms	remaining: 2.58s
11:	learn: 21.4729295	total: 354ms	remaining: 2.6s
12:	learn: 21.0885550	total: 383ms	remaining: 2.56s
13:	learn: 20.7063206	total: 413ms	remaining: 2.54s
14:	learn: 20.3539530	total: 446ms	remaining: 2.52s
15:	learn: 20.0071947	total: 472ms	remaining: 2.48s
16:	learn: 19.6579830	total: 500ms	remaining: 2.44s
17:	learn: 19.2450502	total: 527ms	remaining: 2.4s
18:	learn: 18.8010420	total: 554ms	remaining: 2.36s
19:	learn: 18.4055273	total: 589ms	remaining: 2.36s
20:	learn: 18.0395642	total: 619ms	remaining: 2.33s
21:	learn: 17.6568400	total: 654ms	remaining: 2.32s
22:	learn: 17.4284559	total: 682ms	remaining: 2.28s
23:	learn: 17.0957528	total: 710ms	remaining: 2.25s
24:	learn: 16.7636157	total: 737ms	remaining: 2.21s
25:	learn: 16.4987969	total: 764ms	remaining: 2.17s
26:	learn: 16.2204177	total: 791ms	remaining: 2.14s
27:	learn: 15.9525124	total: 827ms	remaining: 2.13s
28:	learn: 15.5905943	total: 858ms	remaining: 2.1s
29:	learn: 15.3628633	total: 887ms	remaining: 2.07s
30:	learn: 15.1420693	total: 914ms	remaining: 2.03s
31:	learn: 14.9419461	total: 940ms	remaining: 2s
32:	learn: 14.7386592	total: 967ms	remaining: 1.96s
33:	learn: 14.5398023	total: 994ms	remaining: 1.93s
34:	learn: 14.2644206	total: 1.02s	remaining: 1.9s
35:	learn: 14.0168503	total: 1.05s	remaining: 1.86s
36:	learn: 13.7687637	total: 1.08s	remaining: 1.85s
37:	learn: 13.5855913	total: 1.12s	remaining: 1.83s
38:	learn: 13.3656902	total: 1.15s	remaining: 1.8s
39:	learn: 13.2111716	total: 1.18s	remaining: 1.76s
40:	learn: 13.0360149	total: 1.2s	remaining: 1.73s
41:	learn: 12.8789444	total: 1.23s	remaining: 1.7s
42:	learn: 12.6680179	total: 1.26s	remaining: 1.67s
43:	learn: 12.4892268	total: 1.28s	remaining: 1.64s
44:	learn: 12.3275828	total: 1.32s	remaining: 1.62s
45:	learn: 12.2035682	total: 1.35s	remaining: 1.59s
46:	learn: 12.0777397	total: 1.38s	remaining: 1.56s
47:	learn: 11.9055552	total: 1.41s	remaining: 1.52s
48:	learn: 11.7465481	total: 1.43s	remaining: 1.49s
49:	learn: 11.5961200	total: 1.46s	remaining: 1.46s
50:	learn: 11.4305519	total: 1.49s	remaining: 1.43s
51:	learn: 11.2794033	total: 1.51s	remaining: 1.4s
52:	learn: 11.1586950	total: 1.56s	remaining: 1.38s
53:	learn: 11.0432937	total: 1.59s	remaining: 1.35s
54:	learn: 10.9094838	total: 1.62s	remaining: 1.32s
55:	learn: 10.7713451	total: 1.64s	remaining: 1.29s
56:	learn: 10.6664177	total: 1.67s	remaining: 1.26s
57:	learn: 10.5600117	total: 1.7s	remaining: 1.23s
58:	learn: 10.4438974	total: 1.73s	remaining: 1.2s
59:	learn: 10.3294224	total: 1.75s	remaining: 1.17s
60:	learn: 10.2510301	total: 1.79s	remaining: 1.15s
61:	learn: 10.1363264	total: 1.82s	remaining: 1.12s
62:	learn: 10.0415049	total: 1.85s	remaining: 1.09s
63:	learn: 9.9499833	total: 1.88s	remaining: 1.05s
64:	learn: 9.8774263	total: 1.9s	remaining: 1.02s
65:	learn: 9.7458853	total: 1.93s	remaining: 994ms
66:	learn: 9.6733951	total: 1.96s	remaining: 964ms
67:	learn: 9.5861856	total: 1.99s	remaining: 937ms
68:	learn: 9.4524193	total: 2.02s	remaining: 908ms
69:	learn: 9.3501165	total: 2.06s	remaining: 882ms
70:	learn: 9.3092902	total: 2.08s	remaining: 852ms
71:	learn: 9.2244222	total: 2.11s	remaining: 821ms
72:	learn: 9.1554253	total: 2.14s	remaining: 792ms
73:	learn: 9.1098892	total: 2.17s	remaining: 762ms
74:	learn: 9.0210213	total: 2.19s	remaining: 731ms
75:	learn: 8.9303181	total: 2.22s	remaining: 702ms
76:	learn: 8.8489769	total: 2.26s	remaining: 674ms
77:	learn: 8.7651580	total: 2.29s	remaining: 647ms
78:	learn: 8.7126796	total: 2.32s	remaining: 617ms
79:	learn: 8.6404554	total: 2.35s	remaining: 586ms
80:	learn: 8.5844756	total: 2.37s	remaining: 557ms
81:	learn: 8.5234333	total: 2.4s	remaining: 527ms
82:	learn: 8.4298762	total: 2.43s	remaining: 498ms
83:	learn: 8.3483002	total: 2.47s	remaining: 470ms
84:	learn: 8.2670647	total: 2.5s	remaining: 440ms
85:	learn: 8.1917398	total: 2.53s	remaining: 412ms
86:	learn: 8.1073642	total: 2.56s	remaining: 383ms
87:	learn: 8.0633288	total: 2.59s	remaining: 353ms
88:	learn: 8.0107997	total: 2.61s	remaining: 323ms
89:	learn: 7.9563547	total: 2.64s	remaining: 294ms
90:	learn: 7.8811408	total: 2.68s	remaining: 265ms
91:	learn: 7.8096107	total: 2.7s	remaining: 235ms
92:	learn: 7.7481700	total: 2.73s	remaining: 205ms
93:	learn: 7.6847843	total: 2.77s	remaining: 177ms
94:	learn: 7.6252335	total: 2.79s	remaining: 147ms
95:	learn: 7.5593148	total: 2.82s	remaining: 117ms
96:	learn: 7.5042331	total: 2.85s	remaining: 88.2ms
97:	learn: 7.4553707	total: 2.88s	remaining: 58.8ms
98:	learn: 7.4035691	total: 2.91s	remaining: 29.4ms
99:	learn: 7.3457537	total: 2.94s	remaining: 0us
0:	learn: 42.5901652	total: 26ms	remaining: 2.58s
1:	learn: 41.2917733	total: 53.5ms	remaining: 2.62s
2:	learn: 40.0285549	total: 91.6ms	remaining: 2.96s
3:	learn: 38.9051734	total: 123ms	remaining: 2.95s
4:	learn: 37.7712063	total: 149ms	remaining: 2.83s
5:	learn: 36.6826884	total: 175ms	remaining: 2.74s
6:	learn: 35.6341048	total: 201ms	remaining: 2.67s
7:	learn: 34.5035449	total: 227ms	remaining: 2.6s
8:	learn: 33.5636424	total: 253ms	remaining: 2.56s
9:	learn: 32.5970644	total: 279ms	remaining: 2.51s
10:	learn: 31.8528815	total: 315ms	remaining: 2.55s
11:	learn: 31.0330095	total: 355ms	remaining: 2.6s
12:	learn: 30.3119851	total: 383ms	remaining: 2.56s
13:	learn: 29.5212022	total: 411ms	remaining: 2.52s
14:	learn: 28.7182657	total: 438ms	remaining: 2.48s
15:	learn: 28.0433195	total: 466ms	remaining: 2.44s
16:	learn: 27.2966576	total: 493ms	remaining: 2.41s
17:	learn: 26.5122856	total: 522ms	remaining: 2.38s
18:	learn: 25.8998213	total: 564ms	remaining: 2.4s
19:	learn: 25.2416026	total: 591ms	remaining: 2.36s
20:	learn: 24.6399819	total: 618ms	remaining: 2.32s
21:	learn: 24.0372756	total: 645ms	remaining: 2.29s
22:	learn: 23.4553733	total: 672ms	remaining: 2.25s
23:	learn: 22.9027871	total: 699ms	remaining: 2.21s
24:	learn: 22.4470878	total: 726ms	remaining: 2.18s
25:	learn: 21.9143721	total: 754ms	remaining: 2.15s
26:	learn: 21.4979516	total: 800ms	remaining: 2.16s
27:	learn: 21.0867622	total: 827ms	remaining: 2.13s
28:	learn: 20.6187419	total: 854ms	remaining: 2.09s
29:	learn: 20.1662373	total: 883ms	remaining: 2.06s
30:	learn: 19.8225041	total: 910ms	remaining: 2.02s
31:	learn: 19.4539400	total: 937ms	remaining: 1.99s
32:	learn: 19.1127000	total: 965ms	remaining: 1.96s
33:	learn: 18.7767435	total: 1s	remaining: 1.94s
34:	learn: 18.4038779	total: 1.03s	remaining: 1.91s
35:	learn: 18.0021121	total: 1.06s	remaining: 1.89s
36:	learn: 17.6673419	total: 1.09s	remaining: 1.86s
37:	learn: 17.3562137	total: 1.12s	remaining: 1.82s
38:	learn: 17.0128082	total: 1.14s	remaining: 1.79s
39:	learn: 16.7572783	total: 1.17s	remaining: 1.76s
40:	learn: 16.4883778	total: 1.2s	remaining: 1.72s
41:	learn: 16.1756364	total: 1.24s	remaining: 1.71s
42:	learn: 15.9150506	total: 1.26s	remaining: 1.67s
43:	learn: 15.6787555	total: 1.3s	remaining: 1.65s
44:	learn: 15.3862120	total: 1.33s	remaining: 1.62s
45:	learn: 15.1512250	total: 1.35s	remaining: 1.59s
46:	learn: 14.9410960	total: 1.38s	remaining: 1.56s
47:	learn: 14.7086321	total: 1.41s	remaining: 1.53s
48:	learn: 14.5065360	total: 1.44s	remaining: 1.5s
49:	learn: 14.3007466	total: 1.47s	remaining: 1.47s
50:	learn: 14.0972724	total: 1.5s	remaining: 1.44s
51:	learn: 13.8793525	total: 1.53s	remaining: 1.41s
52:	learn: 13.6381311	total: 1.56s	remaining: 1.38s
53:	learn: 13.4603568	total: 1.58s	remaining: 1.35s
54:	learn: 13.2856920	total: 1.61s	remaining: 1.32s
55:	learn: 13.1350779	total: 1.65s	remaining: 1.3s
56:	learn: 13.0110083	total: 1.68s	remaining: 1.27s
57:	learn: 12.8405210	total: 1.71s	remaining: 1.24s
58:	learn: 12.6793938	total: 1.74s	remaining: 1.21s
59:	learn: 12.5497475	total: 1.77s	remaining: 1.18s
60:	learn: 12.4319334	total: 1.8s	remaining: 1.15s
61:	learn: 12.2780964	total: 1.82s	remaining: 1.12s
62:	learn: 12.1187174	total: 1.86s	remaining: 1.09s
63:	learn: 11.9635081	total: 1.89s	remaining: 1.06s
64:	learn: 11.8366366	total: 1.91s	remaining: 1.03s
65:	learn: 11.6598347	total: 1.94s	remaining: 1000ms
66:	learn: 11.5227416	total: 1.97s	remaining: 969ms
67:	learn: 11.4058818	total: 1.99s	remaining: 939ms
68:	learn: 11.2627892	total: 2.03s	remaining: 911ms
69:	learn: 11.1415094	total: 2.06s	remaining: 881ms
70:	learn: 11.0703329	total: 2.1s	remaining: 858ms
71:	learn: 10.9568944	total: 2.13s	remaining: 829ms
72:	learn: 10.8314078	total: 2.16s	remaining: 799ms
73:	learn: 10.7320013	total: 2.19s	remaining: 769ms
74:	learn: 10.6191666	total: 2.22s	remaining: 739ms
75:	learn: 10.5156798	total: 2.25s	remaining: 709ms
76:	learn: 10.4174442	total: 2.28s	remaining: 681ms
77:	learn: 10.3318165	total: 2.32s	remaining: 654ms
78:	learn: 10.2300435	total: 2.35s	remaining: 624ms
79:	learn: 10.1665911	total: 2.37s	remaining: 593ms
80:	learn: 10.1030585	total: 2.4s	remaining: 563ms
81:	learn: 10.0254875	total: 2.43s	remaining: 533ms
82:	learn: 9.9387640	total: 2.45s	remaining: 502ms
83:	learn: 9.8289920	total: 2.48s	remaining: 472ms
84:	learn: 9.7629500	total: 2.52s	remaining: 444ms
85:	learn: 9.6778611	total: 2.56s	remaining: 416ms
86:	learn: 9.5920617	total: 2.59s	remaining: 386ms
87:	learn: 9.4931297	total: 2.62s	remaining: 357ms
88:	learn: 9.4010604	total: 2.65s	remaining: 327ms
89:	learn: 9.3328614	total: 2.67s	remaining: 297ms
90:	learn: 9.2409094	total: 2.7s	remaining: 267ms
91:	learn: 9.1214245	total: 2.73s	remaining: 237ms
92:	learn: 9.0795335	total: 2.77s	remaining: 209ms
93:	learn: 8.9777250	total: 2.8s	remaining: 179ms
94:	learn: 8.9059891	total: 2.83s	remaining: 149ms
95:	learn: 8.8343294	total: 2.85s	remaining: 119ms
96:	learn: 8.7237295	total: 2.88s	remaining: 89ms
97:	learn: 8.6401509	total: 2.9s	remaining: 59.3ms
98:	learn: 8.5735108	total: 2.93s	remaining: 29.6ms
99:	learn: 8.5084579	total: 2.96s	remaining: 0us
0:	learn: 46.1633714	total: 27.6ms	remaining: 2.73s
1:	learn: 44.7904617	total: 61.7ms	remaining: 3.02s
2:	learn: 43.5292386	total: 88.3ms	remaining: 2.85s
3:	learn: 42.3776226	total: 116ms	remaining: 2.79s
4:	learn: 41.1726533	total: 144ms	remaining: 2.74s
5:	learn: 40.0256490	total: 178ms	remaining: 2.79s
6:	learn: 39.0318588	total: 205ms	remaining: 2.73s
7:	learn: 38.0361181	total: 231ms	remaining: 2.65s
8:	learn: 37.0398789	total: 257ms	remaining: 2.6s
9:	learn: 36.0525089	total: 290ms	remaining: 2.61s
10:	learn: 35.0926830	total: 317ms	remaining: 2.57s
11:	learn: 34.1467022	total: 346ms	remaining: 2.54s
12:	learn: 33.5625454	total: 382ms	remaining: 2.56s
13:	learn: 32.7993162	total: 410ms	remaining: 2.52s
14:	learn: 32.1179593	total: 438ms	remaining: 2.48s
15:	learn: 31.5382898	total: 467ms	remaining: 2.45s
16:	learn: 30.8398862	total: 495ms	remaining: 2.42s
17:	learn: 30.1060070	total: 531ms	remaining: 2.42s
18:	learn: 29.3826415	total: 559ms	remaining: 2.38s
19:	learn: 28.5809579	total: 588ms	remaining: 2.35s
20:	learn: 28.0104942	total: 619ms	remaining: 2.33s
21:	learn: 27.5189566	total: 647ms	remaining: 2.29s
22:	learn: 26.8603656	total: 674ms	remaining: 2.25s
23:	learn: 26.2547050	total: 701ms	remaining: 2.22s
24:	learn: 25.6559137	total: 727ms	remaining: 2.18s
25:	learn: 25.1148352	total: 761ms	remaining: 2.17s
26:	learn: 24.5782363	total: 796ms	remaining: 2.15s
27:	learn: 24.0350871	total: 825ms	remaining: 2.12s
28:	learn: 23.5119480	total: 853ms	remaining: 2.09s
29:	learn: 23.1119795	total: 881ms	remaining: 2.06s
30:	learn: 22.6838288	total: 910ms	remaining: 2.02s
31:	learn: 22.2554624	total: 938ms	remaining: 1.99s
32:	learn: 21.8241578	total: 965ms	remaining: 1.96s
33:	learn: 21.5062830	total: 992ms	remaining: 1.93s
34:	learn: 21.0109226	total: 1.03s	remaining: 1.91s
35:	learn: 20.5518606	total: 1.06s	remaining: 1.88s
36:	learn: 20.1195339	total: 1.09s	remaining: 1.85s
37:	learn: 19.7143479	total: 1.11s	remaining: 1.82s
38:	learn: 19.3325253	total: 1.14s	remaining: 1.78s
39:	learn: 19.0310706	total: 1.17s	remaining: 1.75s
40:	learn: 18.7262797	total: 1.19s	remaining: 1.72s
41:	learn: 18.3611836	total: 1.22s	remaining: 1.69s
42:	learn: 17.9960838	total: 1.25s	remaining: 1.66s
43:	learn: 17.7058991	total: 1.29s	remaining: 1.65s
44:	learn: 17.3944673	total: 1.32s	remaining: 1.61s
45:	learn: 17.1283561	total: 1.35s	remaining: 1.58s
46:	learn: 16.8406890	total: 1.38s	remaining: 1.55s
47:	learn: 16.6072061	total: 1.4s	remaining: 1.52s
48:	learn: 16.3697411	total: 1.43s	remaining: 1.49s
49:	learn: 15.9995507	total: 1.46s	remaining: 1.46s
50:	learn: 15.7372570	total: 1.5s	remaining: 1.44s
51:	learn: 15.4840152	total: 1.53s	remaining: 1.41s
52:	learn: 15.2899590	total: 1.55s	remaining: 1.38s
53:	learn: 15.0111064	total: 1.58s	remaining: 1.35s
54:	learn: 14.7504952	total: 1.61s	remaining: 1.32s
55:	learn: 14.5309762	total: 1.63s	remaining: 1.28s
56:	learn: 14.3525677	total: 1.66s	remaining: 1.25s
57:	learn: 14.1816296	total: 1.69s	remaining: 1.23s
58:	learn: 13.9958516	total: 1.74s	remaining: 1.21s
59:	learn: 13.8356735	total: 1.76s	remaining: 1.18s
60:	learn: 13.6499824	total: 1.79s	remaining: 1.15s
61:	learn: 13.4621357	total: 1.82s	remaining: 1.11s
62:	learn: 13.3234970	total: 1.85s	remaining: 1.08s
63:	learn: 13.1407122	total: 1.87s	remaining: 1.05s
64:	learn: 13.0161177	total: 1.9s	remaining: 1.02s
65:	learn: 12.8361175	total: 1.93s	remaining: 997ms
66:	learn: 12.7103117	total: 1.96s	remaining: 967ms
67:	learn: 12.5145429	total: 2s	remaining: 939ms
68:	learn: 12.3966318	total: 2.02s	remaining: 909ms
69:	learn: 12.2175623	total: 2.05s	remaining: 878ms
70:	learn: 12.0455583	total: 2.08s	remaining: 848ms
71:	learn: 11.9190589	total: 2.1s	remaining: 818ms
72:	learn: 11.7990452	total: 2.13s	remaining: 789ms
73:	learn: 11.6735331	total: 2.17s	remaining: 762ms
74:	learn: 11.5694753	total: 2.2s	remaining: 732ms
75:	learn: 11.4471422	total: 2.23s	remaining: 705ms
76:	learn: 11.3357642	total: 2.26s	remaining: 675ms
77:	learn: 11.2160164	total: 2.29s	remaining: 645ms
78:	learn: 11.1477947	total: 2.31s	remaining: 615ms
79:	learn: 11.0733969	total: 2.34s	remaining: 585ms
80:	learn: 10.9851608	total: 2.37s	remaining: 555ms
81:	learn: 10.8669537	total: 2.4s	remaining: 527ms
82:	learn: 10.7846130	total: 2.43s	remaining: 498ms
83:	learn: 10.6429068	total: 2.46s	remaining: 469ms
84:	learn: 10.5485368	total: 2.49s	remaining: 439ms
85:	learn: 10.4626750	total: 2.52s	remaining: 409ms
86:	learn: 10.3487863	total: 2.54s	remaining: 380ms
87:	learn: 10.2608682	total: 2.57s	remaining: 350ms
88:	learn: 10.1492862	total: 2.6s	remaining: 321ms
89:	learn: 10.0825429	total: 2.63s	remaining: 292ms
90:	learn: 9.9668337	total: 2.66s	remaining: 263ms
91:	learn: 9.8924239	total: 2.69s	remaining: 234ms
92:	learn: 9.7959729	total: 2.72s	remaining: 205ms
93:	learn: 9.7342503	total: 2.75s	remaining: 176ms
94:	learn: 9.6266181	total: 2.78s	remaining: 146ms
95:	learn: 9.5607316	total: 2.81s	remaining: 117ms
96:	learn: 9.4615938	total: 2.84s	remaining: 87.9ms
97:	learn: 9.3562852	total: 2.87s	remaining: 58.6ms
98:	learn: 9.2518786	total: 2.9s	remaining: 29.2ms
99:	learn: 9.2130065	total: 2.92s	remaining: 0us
0:	learn: 45.6477780	total: 35.4ms	remaining: 3.5s
1:	learn: 44.3885048	total: 62.8ms	remaining: 3.08s
2:	learn: 43.1316502	total: 90.5ms	remaining: 2.92s
3:	learn: 41.8123054	total: 129ms	remaining: 3.09s
4:	learn: 40.7214533	total: 157ms	remaining: 2.98s
5:	learn: 39.6276122	total: 185ms	remaining: 2.9s
6:	learn: 38.6471225	total: 213ms	remaining: 2.83s
7:	learn: 37.7493668	total: 241ms	remaining: 2.77s
8:	learn: 36.7733816	total: 274ms	remaining: 2.77s
9:	learn: 36.1233521	total: 304ms	remaining: 2.73s
10:	learn: 35.5715091	total: 337ms	remaining: 2.72s
11:	learn: 34.6287751	total: 363ms	remaining: 2.66s
12:	learn: 33.8024988	total: 390ms	remaining: 2.61s
13:	learn: 33.0699864	total: 417ms	remaining: 2.56s
14:	learn: 32.2267139	total: 444ms	remaining: 2.51s
15:	learn: 31.4879090	total: 471ms	remaining: 2.47s
16:	learn: 30.6681130	total: 506ms	remaining: 2.47s
17:	learn: 29.9739192	total: 535ms	remaining: 2.44s
18:	learn: 29.3293065	total: 575ms	remaining: 2.45s
19:	learn: 28.5893418	total: 603ms	remaining: 2.41s
20:	learn: 28.0793862	total: 631ms	remaining: 2.37s
21:	learn: 27.5553702	total: 659ms	remaining: 2.34s
22:	learn: 27.0123732	total: 687ms	remaining: 2.3s
23:	learn: 26.3897992	total: 714ms	remaining: 2.26s
24:	learn: 25.7405079	total: 742ms	remaining: 2.23s
25:	learn: 25.2366375	total: 778ms	remaining: 2.21s
26:	learn: 24.8040727	total: 812ms	remaining: 2.19s
27:	learn: 24.3831145	total: 840ms	remaining: 2.16s
28:	learn: 23.9264258	total: 867ms	remaining: 2.12s
29:	learn: 23.4965665	total: 894ms	remaining: 2.08s
30:	learn: 23.0750907	total: 920ms	remaining: 2.05s
31:	learn: 22.6177456	total: 947ms	remaining: 2.01s
32:	learn: 22.1936903	total: 974ms	remaining: 1.98s
33:	learn: 21.7237373	total: 1.01s	remaining: 1.96s
34:	learn: 21.2885821	total: 1.04s	remaining: 1.94s
35:	learn: 20.8773820	total: 1.07s	remaining: 1.91s
36:	learn: 20.5069022	total: 1.1s	remaining: 1.87s
37:	learn: 20.1026772	total: 1.13s	remaining: 1.84s
38:	learn: 19.7278063	total: 1.16s	remaining: 1.81s
39:	learn: 19.4576176	total: 1.18s	remaining: 1.77s
40:	learn: 19.1716041	total: 1.21s	remaining: 1.74s
41:	learn: 18.8541728	total: 1.25s	remaining: 1.72s
42:	learn: 18.6411979	total: 1.28s	remaining: 1.69s
43:	learn: 18.3146636	total: 1.3s	remaining: 1.66s
44:	learn: 18.0208582	total: 1.33s	remaining: 1.63s
45:	learn: 17.7344521	total: 1.36s	remaining: 1.59s
46:	learn: 17.4797974	total: 1.39s	remaining: 1.56s
47:	learn: 17.2182299	total: 1.41s	remaining: 1.53s
48:	learn: 16.9607453	total: 1.44s	remaining: 1.5s
49:	learn: 16.7297863	total: 1.48s	remaining: 1.48s
50:	learn: 16.4913674	total: 1.51s	remaining: 1.45s
51:	learn: 16.2886548	total: 1.54s	remaining: 1.42s
52:	learn: 16.0297055	total: 1.57s	remaining: 1.39s
53:	learn: 15.8558289	total: 1.6s	remaining: 1.36s
54:	learn: 15.6256772	total: 1.62s	remaining: 1.33s
55:	learn: 15.4571057	total: 1.66s	remaining: 1.3s
56:	learn: 15.2857211	total: 1.69s	remaining: 1.27s
57:	learn: 15.0790849	total: 1.71s	remaining: 1.24s
58:	learn: 14.8706573	total: 1.75s	remaining: 1.21s
59:	learn: 14.7142314	total: 1.77s	remaining: 1.18s
60:	learn: 14.5574075	total: 1.8s	remaining: 1.15s
61:	learn: 14.3831719	total: 1.83s	remaining: 1.12s
62:	learn: 14.2429846	total: 1.85s	remaining: 1.09s
63:	learn: 14.0982260	total: 1.9s	remaining: 1.07s
64:	learn: 13.9793470	total: 1.92s	remaining: 1.03s
65:	learn: 13.7843655	total: 1.95s	remaining: 1s
66:	learn: 13.6382336	total: 1.98s	remaining: 975ms
67:	learn: 13.5395713	total: 2.01s	remaining: 948ms
68:	learn: 13.3797741	total: 2.04s	remaining: 917ms
69:	learn: 13.2910103	total: 2.07s	remaining: 889ms
70:	learn: 13.1587887	total: 2.1s	remaining: 858ms
71:	learn: 13.0464642	total: 2.13s	remaining: 827ms
72:	learn: 12.9189091	total: 2.15s	remaining: 797ms
73:	learn: 12.8056893	total: 2.18s	remaining: 766ms
74:	learn: 12.6904403	total: 2.21s	remaining: 736ms
75:	learn: 12.5608506	total: 2.24s	remaining: 708ms
76:	learn: 12.4712551	total: 2.27s	remaining: 678ms
77:	learn: 12.3371889	total: 2.31s	remaining: 650ms
78:	learn: 12.2449022	total: 2.33s	remaining: 621ms
79:	learn: 12.2163788	total: 2.36s	remaining: 591ms
80:	learn: 12.1464820	total: 2.39s	remaining: 561ms
81:	learn: 12.0001066	total: 2.42s	remaining: 531ms
82:	learn: 11.8843691	total: 2.44s	remaining: 501ms
83:	learn: 11.7638631	total: 2.48s	remaining: 472ms
84:	learn: 11.6389646	total: 2.51s	remaining: 443ms
85:	learn: 11.5343065	total: 2.54s	remaining: 414ms
86:	learn: 11.4267531	total: 2.57s	remaining: 384ms
87:	learn: 11.3136728	total: 2.6s	remaining: 354ms
88:	learn: 11.2361574	total: 2.62s	remaining: 324ms
89:	learn: 11.1507886	total: 2.65s	remaining: 295ms
90:	learn: 11.0988952	total: 2.68s	remaining: 265ms
91:	learn: 10.9988426	total: 2.7s	remaining: 235ms
92:	learn: 10.9584792	total: 2.74s	remaining: 206ms
93:	learn: 10.8771461	total: 2.78s	remaining: 177ms
94:	learn: 10.8161358	total: 2.81s	remaining: 148ms
95:	learn: 10.7524450	total: 2.83s	remaining: 118ms
96:	learn: 10.6566836	total: 2.86s	remaining: 88.5ms
97:	learn: 10.5550602	total: 2.89s	remaining: 59ms
98:	learn: 10.4790583	total: 2.92s	remaining: 29.5ms
99:	learn: 10.4087354	total: 2.94s	remaining: 0us
0:	learn: 46.5398832	total: 34ms	remaining: 3.36s
1:	learn: 45.3142618	total: 60.7ms	remaining: 2.97s
2:	learn: 44.0378137	total: 87.6ms	remaining: 2.83s
3:	learn: 42.7976734	total: 114ms	remaining: 2.74s
4:	learn: 41.7080859	total: 141ms	remaining: 2.68s
5:	learn: 40.4513327	total: 169ms	remaining: 2.64s
6:	learn: 39.4903346	total: 206ms	remaining: 2.73s
7:	learn: 38.3767870	total: 235ms	remaining: 2.71s
8:	learn: 37.4056810	total: 271ms	remaining: 2.74s
9:	learn: 36.4947716	total: 299ms	remaining: 2.69s
10:	learn: 35.4421832	total: 326ms	remaining: 2.63s
11:	learn: 34.6183487	total: 340ms	remaining: 2.49s
12:	learn: 33.9603524	total: 367ms	remaining: 2.46s
13:	learn: 33.0635534	total: 394ms	remaining: 2.42s
14:	learn: 32.2067999	total: 429ms	remaining: 2.43s
15:	learn: 31.3961282	total: 455ms	remaining: 2.39s
16:	learn: 30.7113239	total: 483ms	remaining: 2.36s
17:	learn: 29.9919005	total: 516ms	remaining: 2.35s
18:	learn: 29.4016891	total: 543ms	remaining: 2.32s
19:	learn: 28.7435066	total: 570ms	remaining: 2.28s
20:	learn: 28.2283605	total: 598ms	remaining: 2.25s
21:	learn: 27.6749781	total: 633ms	remaining: 2.25s
22:	learn: 27.1695356	total: 663ms	remaining: 2.22s
23:	learn: 26.6842901	total: 691ms	remaining: 2.19s
24:	learn: 26.0987344	total: 719ms	remaining: 2.16s
25:	learn: 25.5266873	total: 745ms	remaining: 2.12s
26:	learn: 25.0200431	total: 781ms	remaining: 2.11s
27:	learn: 24.5972016	total: 808ms	remaining: 2.08s
28:	learn: 24.1557061	total: 834ms	remaining: 2.04s
29:	learn: 23.7405036	total: 862ms	remaining: 2.01s
30:	learn: 23.3574513	total: 897ms	remaining: 2s
31:	learn: 23.0493499	total: 925ms	remaining: 1.97s
32:	learn: 22.6480655	total: 951ms	remaining: 1.93s
33:	learn: 22.2777353	total: 979ms	remaining: 1.9s
34:	learn: 21.8294628	total: 1.01s	remaining: 1.88s
35:	learn: 21.4783115	total: 1.04s	remaining: 1.85s
36:	learn: 21.1271427	total: 1.07s	remaining: 1.82s
37:	learn: 20.7967443	total: 1.1s	remaining: 1.8s
38:	learn: 20.4949793	total: 1.13s	remaining: 1.77s
39:	learn: 20.1991695	total: 1.16s	remaining: 1.74s
40:	learn: 19.8869467	total: 1.19s	remaining: 1.71s
41:	learn: 19.5656862	total: 1.21s	remaining: 1.68s
42:	learn: 19.2415335	total: 1.25s	remaining: 1.66s
43:	learn: 18.9725471	total: 1.28s	remaining: 1.62s
44:	learn: 18.7035722	total: 1.3s	remaining: 1.59s
45:	learn: 18.3840395	total: 1.34s	remaining: 1.57s
46:	learn: 18.1486662	total: 1.36s	remaining: 1.54s
47:	learn: 17.8740440	total: 1.39s	remaining: 1.51s
48:	learn: 17.6056273	total: 1.42s	remaining: 1.48s
49:	learn: 17.4011083	total: 1.44s	remaining: 1.44s
50:	learn: 17.1935449	total: 1.47s	remaining: 1.41s
51:	learn: 16.9415227	total: 1.5s	remaining: 1.39s
52:	learn: 16.6568624	total: 1.53s	remaining: 1.36s
53:	learn: 16.4254479	total: 1.57s	remaining: 1.34s
54:	learn: 16.1958120	total: 1.6s	remaining: 1.31s
55:	learn: 15.9494332	total: 1.63s	remaining: 1.28s
56:	learn: 15.7736632	total: 1.65s	remaining: 1.25s
57:	learn: 15.6314122	total: 1.68s	remaining: 1.22s
58:	learn: 15.3707626	total: 1.71s	remaining: 1.19s
59:	learn: 15.2211664	total: 1.74s	remaining: 1.16s
60:	learn: 14.9939278	total: 1.78s	remaining: 1.14s
61:	learn: 14.8327626	total: 1.8s	remaining: 1.1s
62:	learn: 14.6555776	total: 1.83s	remaining: 1.07s
63:	learn: 14.5516961	total: 1.86s	remaining: 1.04s
64:	learn: 14.3660780	total: 1.89s	remaining: 1.01s
65:	learn: 14.1721909	total: 1.91s	remaining: 985ms
66:	learn: 14.0877696	total: 1.94s	remaining: 955ms
67:	learn: 13.9435793	total: 1.97s	remaining: 926ms
68:	learn: 13.7745805	total: 2.01s	remaining: 904ms
69:	learn: 13.6490858	total: 2.04s	remaining: 874ms
70:	learn: 13.5022080	total: 2.07s	remaining: 845ms
71:	learn: 13.3922163	total: 2.1s	remaining: 815ms
72:	learn: 13.2842701	total: 2.12s	remaining: 785ms
73:	learn: 13.1698693	total: 2.15s	remaining: 755ms
74:	learn: 13.0256610	total: 2.18s	remaining: 726ms
75:	learn: 12.8855147	total: 2.21s	remaining: 698ms
76:	learn: 12.7807971	total: 2.25s	remaining: 671ms
77:	learn: 12.6618407	total: 2.27s	remaining: 641ms
78:	learn: 12.5369866	total: 2.3s	remaining: 611ms
79:	learn: 12.4376925	total: 2.32s	remaining: 581ms
80:	learn: 12.3005012	total: 2.35s	remaining: 551ms
81:	learn: 12.1751315	total: 2.38s	remaining: 522ms
82:	learn: 12.0612289	total: 2.4s	remaining: 492ms
83:	learn: 11.9757193	total: 2.44s	remaining: 464ms
84:	learn: 11.8530411	total: 2.48s	remaining: 437ms
85:	learn: 11.7523616	total: 2.5s	remaining: 407ms
86:	learn: 11.6645272	total: 2.53s	remaining: 378ms
87:	learn: 11.5645111	total: 2.56s	remaining: 349ms
88:	learn: 11.4692480	total: 2.58s	remaining: 319ms
89:	learn: 11.3724902	total: 2.61s	remaining: 291ms
90:	learn: 11.2842147	total: 2.65s	remaining: 262ms
91:	learn: 11.1868295	total: 2.67s	remaining: 233ms
92:	learn: 11.0293625	total: 2.7s	remaining: 203ms
93:	learn: 10.9495625	total: 2.74s	remaining: 175ms
94:	learn: 10.8608168	total: 2.76s	remaining: 145ms
95:	learn: 10.7804780	total: 2.79s	remaining: 116ms
96:	learn: 10.6503623	total: 2.81s	remaining: 87.1ms
97:	learn: 10.5906748	total: 2.84s	remaining: 58ms
98:	learn: 10.4539468	total: 2.88s	remaining: 29.1ms
99:	learn: 10.3804160	total: 2.91s	remaining: 0us
0:	learn: 27.3441720	total: 23.2ms	remaining: 2.29s
1:	learn: 26.7159954	total: 53ms	remaining: 2.6s
2:	learn: 26.0850318	total: 78.9ms	remaining: 2.55s
3:	learn: 25.4039656	total: 105ms	remaining: 2.53s
4:	learn: 24.7930659	total: 136ms	remaining: 2.58s
5:	learn: 24.2028590	total: 160ms	remaining: 2.5s
6:	learn: 23.6622902	total: 183ms	remaining: 2.43s
7:	learn: 23.1531175	total: 205ms	remaining: 2.36s
8:	learn: 22.7050792	total: 229ms	remaining: 2.31s
9:	learn: 22.2151788	total: 252ms	remaining: 2.26s
10:	learn: 21.7708844	total: 274ms	remaining: 2.21s
11:	learn: 21.2587174	total: 304ms	remaining: 2.23s
12:	learn: 20.7559870	total: 334ms	remaining: 2.24s
13:	learn: 20.3040842	total: 363ms	remaining: 2.23s
14:	learn: 19.9019524	total: 388ms	remaining: 2.2s
15:	learn: 19.5186012	total: 412ms	remaining: 2.16s
16:	learn: 19.1521621	total: 438ms	remaining: 2.14s
17:	learn: 18.7652180	total: 461ms	remaining: 2.1s
18:	learn: 18.4446446	total: 485ms	remaining: 2.07s
19:	learn: 18.0977650	total: 508ms	remaining: 2.03s
20:	learn: 17.7791328	total: 533ms	remaining: 2s
21:	learn: 17.4777648	total: 573ms	remaining: 2.03s
22:	learn: 17.1794361	total: 597ms	remaining: 2s
23:	learn: 16.8685032	total: 621ms	remaining: 1.97s
24:	learn: 16.6274695	total: 645ms	remaining: 1.94s
25:	learn: 16.3071099	total: 667ms	remaining: 1.9s
26:	learn: 16.0249663	total: 689ms	remaining: 1.86s
27:	learn: 15.7535309	total: 713ms	remaining: 1.83s
28:	learn: 15.4777235	total: 739ms	remaining: 1.81s
29:	learn: 15.2410825	total: 771ms	remaining: 1.8s
30:	learn: 15.0133002	total: 795ms	remaining: 1.77s
31:	learn: 14.8018912	total: 829ms	remaining: 1.76s
32:	learn: 14.5701546	total: 854ms	remaining: 1.73s
33:	learn: 14.3799060	total: 879ms	remaining: 1.71s
34:	learn: 14.0975095	total: 901ms	remaining: 1.67s
35:	learn: 13.8873493	total: 926ms	remaining: 1.65s
36:	learn: 13.6812023	total: 952ms	remaining: 1.62s
37:	learn: 13.4943017	total: 983ms	remaining: 1.6s
38:	learn: 13.3224094	total: 1.01s	remaining: 1.57s
39:	learn: 13.0967901	total: 1.03s	remaining: 1.55s
40:	learn: 12.9138190	total: 1.06s	remaining: 1.53s
41:	learn: 12.7764458	total: 1.08s	remaining: 1.5s
42:	learn: 12.6593656	total: 1.11s	remaining: 1.47s
43:	learn: 12.5051105	total: 1.13s	remaining: 1.44s
44:	learn: 12.3057146	total: 1.16s	remaining: 1.41s
45:	learn: 12.1487674	total: 1.19s	remaining: 1.4s
46:	learn: 11.9614903	total: 1.22s	remaining: 1.37s
47:	learn: 11.7921265	total: 1.24s	remaining: 1.34s
48:	learn: 11.6572640	total: 1.26s	remaining: 1.32s
49:	learn: 11.5251463	total: 1.29s	remaining: 1.29s
50:	learn: 11.3789931	total: 1.32s	remaining: 1.27s
51:	learn: 11.2691375	total: 1.34s	remaining: 1.24s
52:	learn: 11.1161131	total: 1.37s	remaining: 1.21s
53:	learn: 11.0246399	total: 1.4s	remaining: 1.19s
54:	learn: 10.9152420	total: 1.42s	remaining: 1.16s
55:	learn: 10.7746769	total: 1.45s	remaining: 1.14s
56:	learn: 10.6222917	total: 1.47s	remaining: 1.11s
57:	learn: 10.5096115	total: 1.49s	remaining: 1.08s
58:	learn: 10.3857030	total: 1.52s	remaining: 1.05s
59:	learn: 10.2789057	total: 1.54s	remaining: 1.03s
60:	learn: 10.1490749	total: 1.58s	remaining: 1.01s
61:	learn: 10.0553291	total: 1.6s	remaining: 983ms
62:	learn: 9.9351043	total: 1.63s	remaining: 957ms
63:	learn: 9.8245261	total: 1.65s	remaining: 931ms
64:	learn: 9.7207577	total: 1.68s	remaining: 904ms
65:	learn: 9.5920661	total: 1.7s	remaining: 878ms
66:	learn: 9.4832767	total: 1.73s	remaining: 851ms
67:	learn: 9.3724149	total: 1.75s	remaining: 824ms
68:	learn: 9.2459801	total: 1.77s	remaining: 797ms
69:	learn: 9.1740635	total: 1.8s	remaining: 771ms
70:	learn: 9.1015730	total: 1.83s	remaining: 750ms
71:	learn: 9.0196460	total: 1.86s	remaining: 723ms
72:	learn: 8.9458977	total: 1.88s	remaining: 696ms
73:	learn: 8.8434400	total: 1.91s	remaining: 670ms
74:	learn: 8.7495151	total: 1.93s	remaining: 643ms
75:	learn: 8.6521348	total: 1.95s	remaining: 617ms
76:	learn: 8.5654483	total: 1.98s	remaining: 590ms
77:	learn: 8.4965765	total: 2s	remaining: 564ms
78:	learn: 8.4308736	total: 2.03s	remaining: 539ms
79:	learn: 8.3675601	total: 2.08s	remaining: 520ms
80:	learn: 8.3193887	total: 2.1s	remaining: 494ms
81:	learn: 8.2507990	total: 2.13s	remaining: 467ms
82:	learn: 8.1583259	total: 2.15s	remaining: 441ms
83:	learn: 8.0995902	total: 2.18s	remaining: 415ms
84:	learn: 8.0236655	total: 2.2s	remaining: 389ms
85:	learn: 7.9634698	total: 2.23s	remaining: 363ms
86:	learn: 7.9109081	total: 2.26s	remaining: 338ms
87:	learn: 7.8385006	total: 2.28s	remaining: 311ms
88:	learn: 7.7859488	total: 2.31s	remaining: 285ms
89:	learn: 7.7270142	total: 2.34s	remaining: 260ms
90:	learn: 7.6774253	total: 2.36s	remaining: 234ms
91:	learn: 7.6126552	total: 2.39s	remaining: 208ms
92:	learn: 7.5392178	total: 2.41s	remaining: 181ms
93:	learn: 7.4745082	total: 2.44s	remaining: 155ms
94:	learn: 7.4106939	total: 2.47s	remaining: 130ms
95:	learn: 7.3573350	total: 2.49s	remaining: 104ms
96:	learn: 7.2889777	total: 2.52s	remaining: 77.8ms
97:	learn: 7.2204939	total: 2.54s	remaining: 51.9ms
98:	learn: 7.1646465	total: 2.57s	remaining: 25.9ms
99:	learn: 7.1204610	total: 2.6s	remaining: 0us
0:	learn: 42.5494645	total: 26.8ms	remaining: 2.65s
1:	learn: 41.2913513	total: 49.8ms	remaining: 2.44s
2:	learn: 40.1676527	total: 73.3ms	remaining: 2.37s
3:	learn: 38.7664819	total: 97.2ms	remaining: 2.33s
4:	learn: 37.5407492	total: 120ms	remaining: 2.29s
5:	learn: 36.4295331	total: 145ms	remaining: 2.27s
6:	learn: 35.2895967	total: 167ms	remaining: 2.22s
7:	learn: 34.1884539	total: 191ms	remaining: 2.2s
8:	learn: 33.1817690	total: 224ms	remaining: 2.27s
9:	learn: 32.3518195	total: 259ms	remaining: 2.33s
10:	learn: 31.4837515	total: 284ms	remaining: 2.29s
11:	learn: 30.7255972	total: 309ms	remaining: 2.26s
12:	learn: 29.9298648	total: 332ms	remaining: 2.22s
13:	learn: 29.0574249	total: 355ms	remaining: 2.18s
14:	learn: 28.4097384	total: 379ms	remaining: 2.15s
15:	learn: 27.5317445	total: 403ms	remaining: 2.11s
16:	learn: 26.7911946	total: 426ms	remaining: 2.08s
17:	learn: 26.1103465	total: 459ms	remaining: 2.09s
18:	learn: 25.5295903	total: 492ms	remaining: 2.1s
19:	learn: 24.8544960	total: 514ms	remaining: 2.06s
20:	learn: 24.2772682	total: 537ms	remaining: 2.02s
21:	learn: 23.6936944	total: 560ms	remaining: 1.99s
22:	learn: 23.1300945	total: 584ms	remaining: 1.95s
23:	learn: 22.5333494	total: 608ms	remaining: 1.93s
24:	learn: 22.0553465	total: 632ms	remaining: 1.9s
25:	learn: 21.6253628	total: 657ms	remaining: 1.87s
26:	learn: 21.1396219	total: 688ms	remaining: 1.86s
27:	learn: 20.7382905	total: 715ms	remaining: 1.84s
28:	learn: 20.3233915	total: 746ms	remaining: 1.83s
29:	learn: 19.9323992	total: 771ms	remaining: 1.8s
30:	learn: 19.5650439	total: 797ms	remaining: 1.77s
31:	learn: 19.2165649	total: 821ms	remaining: 1.74s
32:	learn: 18.8890056	total: 845ms	remaining: 1.72s
33:	learn: 18.5523762	total: 871ms	remaining: 1.69s
34:	learn: 18.2666116	total: 902ms	remaining: 1.68s
35:	learn: 17.9216926	total: 929ms	remaining: 1.65s
36:	learn: 17.6118879	total: 951ms	remaining: 1.62s
37:	learn: 17.2653313	total: 974ms	remaining: 1.59s
38:	learn: 16.9946585	total: 1s	remaining: 1.57s
39:	learn: 16.6842506	total: 1.03s	remaining: 1.54s
40:	learn: 16.4102287	total: 1.05s	remaining: 1.51s
41:	learn: 16.2288795	total: 1.07s	remaining: 1.48s
42:	learn: 15.9623692	total: 1.1s	remaining: 1.46s
43:	learn: 15.7308231	total: 1.13s	remaining: 1.44s
44:	learn: 15.4695555	total: 1.16s	remaining: 1.42s
45:	learn: 15.2706809	total: 1.18s	remaining: 1.39s
46:	learn: 15.0182699	total: 1.21s	remaining: 1.36s
47:	learn: 14.7702088	total: 1.23s	remaining: 1.34s
48:	learn: 14.6303566	total: 1.27s	remaining: 1.32s
49:	learn: 14.4038016	total: 1.29s	remaining: 1.29s
50:	learn: 14.2309807	total: 1.31s	remaining: 1.26s
51:	learn: 14.0308425	total: 1.34s	remaining: 1.23s
52:	learn: 13.8201931	total: 1.37s	remaining: 1.21s
53:	learn: 13.6070078	total: 1.39s	remaining: 1.19s
54:	learn: 13.4230690	total: 1.42s	remaining: 1.16s
55:	learn: 13.2368649	total: 1.44s	remaining: 1.13s
56:	learn: 13.0449556	total: 1.46s	remaining: 1.1s
57:	learn: 12.8375669	total: 1.49s	remaining: 1.08s
58:	learn: 12.6795194	total: 1.51s	remaining: 1.05s
59:	learn: 12.5197211	total: 1.53s	remaining: 1.02s
60:	learn: 12.4011717	total: 1.56s	remaining: 997ms
61:	learn: 12.2396104	total: 1.58s	remaining: 972ms
62:	learn: 12.0647878	total: 1.61s	remaining: 945ms
63:	learn: 11.9247719	total: 1.63s	remaining: 918ms
64:	learn: 11.7923634	total: 1.66s	remaining: 892ms
65:	learn: 11.6628246	total: 1.68s	remaining: 865ms
66:	learn: 11.5688935	total: 1.7s	remaining: 837ms
67:	learn: 11.4345056	total: 1.72s	remaining: 810ms
68:	learn: 11.3136955	total: 1.75s	remaining: 784ms
69:	learn: 11.2040357	total: 1.77s	remaining: 759ms
70:	learn: 11.1067773	total: 1.8s	remaining: 734ms
71:	learn: 10.9728105	total: 1.82s	remaining: 708ms
72:	learn: 10.8338607	total: 1.84s	remaining: 682ms
73:	learn: 10.7202016	total: 1.87s	remaining: 656ms
74:	learn: 10.5983746	total: 1.89s	remaining: 630ms
75:	learn: 10.4882458	total: 1.91s	remaining: 604ms
76:	learn: 10.3827604	total: 1.93s	remaining: 578ms
77:	learn: 10.2485726	total: 1.96s	remaining: 553ms
78:	learn: 10.1524716	total: 1.98s	remaining: 527ms
79:	learn: 10.0765127	total: 2.02s	remaining: 505ms
80:	learn: 9.9617067	total: 2.04s	remaining: 479ms
81:	learn: 9.8357151	total: 2.07s	remaining: 454ms
82:	learn: 9.7311644	total: 2.09s	remaining: 428ms
83:	learn: 9.6314802	total: 2.11s	remaining: 403ms
84:	learn: 9.5137958	total: 2.14s	remaining: 377ms
85:	learn: 9.4420485	total: 2.16s	remaining: 352ms
86:	learn: 9.3959294	total: 2.18s	remaining: 326ms
87:	learn: 9.3057742	total: 2.21s	remaining: 302ms
88:	learn: 9.2031484	total: 2.24s	remaining: 277ms
89:	learn: 9.0996948	total: 2.26s	remaining: 251ms
90:	learn: 9.0492278	total: 2.28s	remaining: 226ms
91:	learn: 8.9400377	total: 2.3s	remaining: 200ms
92:	learn: 8.8904458	total: 2.33s	remaining: 175ms
93:	learn: 8.8102982	total: 2.35s	remaining: 150ms
94:	learn: 8.7445451	total: 2.37s	remaining: 125ms
95:	learn: 8.6796106	total: 2.39s	remaining: 99.8ms
96:	learn: 8.5875790	total: 2.42s	remaining: 75ms
97:	learn: 8.5086871	total: 2.45s	remaining: 50ms
98:	learn: 8.4547244	total: 2.47s	remaining: 25ms
99:	learn: 8.3841281	total: 2.5s	remaining: 0us
0:	learn: 46.2258117	total: 3.05ms	remaining: 302ms
1:	learn: 45.1253456	total: 24.4ms	remaining: 1.2s
2:	learn: 43.7311767	total: 47.8ms	remaining: 1.54s
3:	learn: 42.4252819	total: 75.4ms	remaining: 1.81s
4:	learn: 41.1436655	total: 99.9ms	remaining: 1.9s
5:	learn: 40.0337136	total: 122ms	remaining: 1.91s
6:	learn: 38.9102686	total: 145ms	remaining: 1.92s
7:	learn: 37.7859737	total: 168ms	remaining: 1.93s
8:	learn: 36.7646905	total: 190ms	remaining: 1.93s
9:	learn: 35.9495481	total: 212ms	remaining: 1.91s
10:	learn: 35.0558185	total: 233ms	remaining: 1.88s
11:	learn: 34.1958090	total: 256ms	remaining: 1.88s
12:	learn: 33.3514013	total: 284ms	remaining: 1.9s
13:	learn: 32.3317086	total: 309ms	remaining: 1.9s
14:	learn: 31.5611046	total: 333ms	remaining: 1.89s
15:	learn: 30.6373573	total: 357ms	remaining: 1.88s
16:	learn: 29.8883669	total: 382ms	remaining: 1.86s
17:	learn: 29.2985952	total: 405ms	remaining: 1.84s
18:	learn: 28.6360550	total: 428ms	remaining: 1.82s
19:	learn: 27.9757056	total: 450ms	remaining: 1.8s
20:	learn: 27.2585835	total: 473ms	remaining: 1.78s
21:	learn: 26.6366391	total: 497ms	remaining: 1.76s
22:	learn: 26.1055455	total: 527ms	remaining: 1.76s
23:	learn: 25.4961568	total: 550ms	remaining: 1.74s
24:	learn: 25.1037435	total: 572ms	remaining: 1.72s
25:	learn: 24.5258982	total: 595ms	remaining: 1.69s
26:	learn: 23.9974764	total: 616ms	remaining: 1.67s
27:	learn: 23.5108419	total: 639ms	remaining: 1.64s
28:	learn: 23.0835773	total: 659ms	remaining: 1.61s
29:	learn: 22.5744350	total: 680ms	remaining: 1.59s
30:	learn: 22.1357783	total: 702ms	remaining: 1.56s
31:	learn: 21.7316226	total: 732ms	remaining: 1.55s
32:	learn: 21.4082899	total: 760ms	remaining: 1.54s
33:	learn: 20.9640138	total: 784ms	remaining: 1.52s
34:	learn: 20.6379417	total: 807ms	remaining: 1.5s
35:	learn: 20.2688010	total: 828ms	remaining: 1.47s
36:	learn: 19.8479214	total: 853ms	remaining: 1.45s
37:	learn: 19.5684638	total: 874ms	remaining: 1.43s
38:	learn: 19.1826919	total: 895ms	remaining: 1.4s
39:	learn: 18.9583308	total: 918ms	remaining: 1.38s
40:	learn: 18.6736002	total: 942ms	remaining: 1.35s
41:	learn: 18.3525328	total: 968ms	remaining: 1.34s
42:	learn: 17.9954191	total: 990ms	remaining: 1.31s
43:	learn: 17.6991520	total: 1.01s	remaining: 1.28s
44:	learn: 17.3697888	total: 1.03s	remaining: 1.26s
45:	learn: 17.0519636	total: 1.05s	remaining: 1.23s
46:	learn: 16.7829795	total: 1.07s	remaining: 1.21s
47:	learn: 16.5108695	total: 1.09s	remaining: 1.18s
48:	learn: 16.2366816	total: 1.11s	remaining: 1.16s
49:	learn: 15.9947350	total: 1.14s	remaining: 1.14s
50:	learn: 15.7513561	total: 1.16s	remaining: 1.11s
51:	learn: 15.4328481	total: 1.19s	remaining: 1.1s
52:	learn: 15.2497907	total: 1.21s	remaining: 1.07s
53:	learn: 15.0417076	total: 1.23s	remaining: 1.05s
54:	learn: 14.8861891	total: 1.25s	remaining: 1.03s
55:	learn: 14.6497794	total: 1.28s	remaining: 1s
56:	learn: 14.3664771	total: 1.3s	remaining: 982ms
57:	learn: 14.2358168	total: 1.32s	remaining: 958ms
58:	learn: 14.0712722	total: 1.34s	remaining: 935ms
59:	learn: 13.9191649	total: 1.37s	remaining: 912ms
60:	learn: 13.7032356	total: 1.4s	remaining: 894ms
61:	learn: 13.5029041	total: 1.42s	remaining: 871ms
62:	learn: 13.3568908	total: 1.44s	remaining: 847ms
63:	learn: 13.1332696	total: 1.46s	remaining: 822ms
64:	learn: 13.0323137	total: 1.48s	remaining: 798ms
65:	learn: 12.8622078	total: 1.5s	remaining: 775ms
66:	learn: 12.7088186	total: 1.52s	remaining: 751ms
67:	learn: 12.5524646	total: 1.55s	remaining: 728ms
68:	learn: 12.4646011	total: 1.57s	remaining: 704ms
69:	learn: 12.3900687	total: 1.59s	remaining: 681ms
70:	learn: 12.2908367	total: 1.62s	remaining: 663ms
71:	learn: 12.1294405	total: 1.65s	remaining: 640ms
72:	learn: 12.0359996	total: 1.67s	remaining: 618ms
73:	learn: 11.9244352	total: 1.69s	remaining: 594ms
74:	learn: 11.8312038	total: 1.71s	remaining: 571ms
75:	learn: 11.6622123	total: 1.74s	remaining: 548ms
76:	learn: 11.5959180	total: 1.76s	remaining: 525ms
77:	learn: 11.4538852	total: 1.78s	remaining: 501ms
78:	learn: 11.3700375	total: 1.8s	remaining: 478ms
79:	learn: 11.2101447	total: 1.83s	remaining: 457ms
80:	learn: 11.0614634	total: 1.85s	remaining: 434ms
81:	learn: 10.9029225	total: 1.87s	remaining: 411ms
82:	learn: 10.7792030	total: 1.89s	remaining: 388ms
83:	learn: 10.6279451	total: 1.91s	remaining: 364ms
84:	learn: 10.5530267	total: 1.93s	remaining: 341ms
85:	learn: 10.4577150	total: 1.95s	remaining: 318ms
86:	learn: 10.4076417	total: 1.98s	remaining: 295ms
87:	learn: 10.3166632	total: 2s	remaining: 272ms
88:	learn: 10.2018151	total: 2.02s	remaining: 250ms
89:	learn: 10.0698484	total: 2.05s	remaining: 228ms
90:	learn: 10.0162824	total: 2.07s	remaining: 205ms
91:	learn: 9.9352639	total: 2.1s	remaining: 182ms
92:	learn: 9.8316734	total: 2.12s	remaining: 160ms
93:	learn: 9.7195471	total: 2.14s	remaining: 137ms
94:	learn: 9.5914894	total: 2.16s	remaining: 114ms
95:	learn: 9.5151851	total: 2.18s	remaining: 90.8ms
96:	learn: 9.3911314	total: 2.2s	remaining: 68.1ms
97:	learn: 9.3417706	total: 2.23s	remaining: 45.6ms
98:	learn: 9.2708440	total: 2.26s	remaining: 22.8ms
99:	learn: 9.1660321	total: 2.28s	remaining: 0us
0:	learn: 45.8627255	total: 2.57ms	remaining: 254ms
1:	learn: 44.7432040	total: 22.9ms	remaining: 1.12s
2:	learn: 43.4398568	total: 42.5ms	remaining: 1.37s
3:	learn: 42.1495515	total: 61.1ms	remaining: 1.47s
4:	learn: 40.9712633	total: 81.5ms	remaining: 1.55s
5:	learn: 40.0119591	total: 103ms	remaining: 1.61s
6:	learn: 39.1914360	total: 126ms	remaining: 1.67s
7:	learn: 38.1861536	total: 155ms	remaining: 1.79s
8:	learn: 37.1477128	total: 178ms	remaining: 1.8s
9:	learn: 36.3044702	total: 201ms	remaining: 1.8s
10:	learn: 35.5837917	total: 223ms	remaining: 1.8s
11:	learn: 34.8664158	total: 257ms	remaining: 1.88s
12:	learn: 33.9129833	total: 278ms	remaining: 1.86s
13:	learn: 32.9094642	total: 301ms	remaining: 1.85s
14:	learn: 32.1965787	total: 326ms	remaining: 1.85s
15:	learn: 31.4598238	total: 356ms	remaining: 1.87s
16:	learn: 30.6578027	total: 381ms	remaining: 1.86s
17:	learn: 30.0227468	total: 404ms	remaining: 1.84s
18:	learn: 29.2954728	total: 427ms	remaining: 1.82s
19:	learn: 28.5928084	total: 449ms	remaining: 1.8s
20:	learn: 27.9445984	total: 473ms	remaining: 1.78s
21:	learn: 27.3493298	total: 505ms	remaining: 1.79s
22:	learn: 26.8491966	total: 526ms	remaining: 1.76s
23:	learn: 26.3177453	total: 551ms	remaining: 1.75s
24:	learn: 25.8134533	total: 584ms	remaining: 1.75s
25:	learn: 25.2000018	total: 613ms	remaining: 1.74s
26:	learn: 24.6570461	total: 636ms	remaining: 1.72s
27:	learn: 24.1062982	total: 661ms	remaining: 1.7s
28:	learn: 23.7489370	total: 687ms	remaining: 1.68s
29:	learn: 23.2050536	total: 709ms	remaining: 1.65s
30:	learn: 22.7824379	total: 732ms	remaining: 1.63s
31:	learn: 22.4052655	total: 765ms	remaining: 1.63s
32:	learn: 21.9525639	total: 794ms	remaining: 1.61s
33:	learn: 21.5482900	total: 819ms	remaining: 1.59s
34:	learn: 21.1900983	total: 840ms	remaining: 1.56s
35:	learn: 20.8243957	total: 863ms	remaining: 1.53s
36:	learn: 20.4401288	total: 885ms	remaining: 1.51s
37:	learn: 20.0960622	total: 906ms	remaining: 1.48s
38:	learn: 19.7795108	total: 930ms	remaining: 1.46s
39:	learn: 19.4922451	total: 956ms	remaining: 1.43s
40:	learn: 19.1827582	total: 981ms	remaining: 1.41s
41:	learn: 18.8902445	total: 1s	remaining: 1.39s
42:	learn: 18.6833086	total: 1.04s	remaining: 1.38s
43:	learn: 18.4251972	total: 1.06s	remaining: 1.35s
44:	learn: 18.1471037	total: 1.09s	remaining: 1.33s
45:	learn: 17.8420017	total: 1.11s	remaining: 1.3s
46:	learn: 17.6101998	total: 1.13s	remaining: 1.28s
47:	learn: 17.3353656	total: 1.16s	remaining: 1.25s
48:	learn: 17.1194789	total: 1.18s	remaining: 1.23s
49:	learn: 16.8898454	total: 1.2s	remaining: 1.2s
50:	learn: 16.6657497	total: 1.23s	remaining: 1.18s
51:	learn: 16.3832867	total: 1.25s	remaining: 1.16s
52:	learn: 16.2098226	total: 1.27s	remaining: 1.13s
53:	learn: 16.0045707	total: 1.3s	remaining: 1.1s
54:	learn: 15.8512887	total: 1.32s	remaining: 1.08s
55:	learn: 15.6485628	total: 1.34s	remaining: 1.05s
56:	learn: 15.4841428	total: 1.36s	remaining: 1.03s
57:	learn: 15.3383158	total: 1.38s	remaining: 1s
58:	learn: 15.2056282	total: 1.4s	remaining: 975ms
59:	learn: 15.0698337	total: 1.43s	remaining: 950ms
60:	learn: 14.8487796	total: 1.46s	remaining: 932ms
61:	learn: 14.7255751	total: 1.48s	remaining: 908ms
62:	learn: 14.6100414	total: 1.51s	remaining: 885ms
63:	learn: 14.3864212	total: 1.53s	remaining: 861ms
64:	learn: 14.2800460	total: 1.55s	remaining: 837ms
65:	learn: 14.1017299	total: 1.57s	remaining: 812ms
66:	learn: 13.9655015	total: 1.6s	remaining: 787ms
67:	learn: 13.8065764	total: 1.62s	remaining: 764ms
68:	learn: 13.7473285	total: 1.65s	remaining: 741ms
69:	learn: 13.6967309	total: 1.67s	remaining: 716ms
70:	learn: 13.6253255	total: 1.69s	remaining: 691ms
71:	learn: 13.4974926	total: 1.71s	remaining: 666ms
72:	learn: 13.4142694	total: 1.73s	remaining: 641ms
73:	learn: 13.2902600	total: 1.75s	remaining: 617ms
74:	learn: 13.1816461	total: 1.78s	remaining: 592ms
75:	learn: 13.0809498	total: 1.8s	remaining: 568ms
76:	learn: 12.9772285	total: 1.82s	remaining: 543ms
77:	learn: 12.8413858	total: 1.84s	remaining: 520ms
78:	learn: 12.7615799	total: 1.88s	remaining: 498ms
79:	learn: 12.5808659	total: 1.9s	remaining: 475ms
80:	learn: 12.4938330	total: 1.92s	remaining: 451ms
81:	learn: 12.3745576	total: 1.95s	remaining: 427ms
82:	learn: 12.2474104	total: 1.97s	remaining: 404ms
83:	learn: 12.1582297	total: 1.99s	remaining: 380ms
84:	learn: 12.0528081	total: 2.02s	remaining: 356ms
85:	learn: 11.9483355	total: 2.04s	remaining: 332ms
86:	learn: 11.8683204	total: 2.06s	remaining: 308ms
87:	learn: 11.7680945	total: 2.08s	remaining: 284ms
88:	learn: 11.6635447	total: 2.11s	remaining: 261ms
89:	learn: 11.5775031	total: 2.13s	remaining: 237ms
90:	learn: 11.4860538	total: 2.15s	remaining: 213ms
91:	learn: 11.3584960	total: 2.18s	remaining: 189ms
92:	learn: 11.2180285	total: 2.2s	remaining: 166ms
93:	learn: 11.0996558	total: 2.22s	remaining: 142ms
94:	learn: 10.9688832	total: 2.24s	remaining: 118ms
95:	learn: 10.9205457	total: 2.26s	remaining: 94.3ms
96:	learn: 10.8462783	total: 2.29s	remaining: 70.7ms
97:	learn: 10.7481890	total: 2.32s	remaining: 47.3ms
98:	learn: 10.6396315	total: 2.34s	remaining: 23.7ms
99:	learn: 10.5895308	total: 2.37s	remaining: 0us
0:	learn: 46.2892189	total: 22.3ms	remaining: 2.21s
1:	learn: 44.9732744	total: 42.8ms	remaining: 2.1s
2:	learn: 43.8887345	total: 64.5ms	remaining: 2.08s
3:	learn: 42.6526320	total: 87.5ms	remaining: 2.1s
4:	learn: 41.4812505	total: 111ms	remaining: 2.11s
5:	learn: 40.4431224	total: 136ms	remaining: 2.14s
6:	learn: 39.2936749	total: 160ms	remaining: 2.13s
7:	learn: 38.1961652	total: 184ms	remaining: 2.12s
8:	learn: 37.2194841	total: 205ms	remaining: 2.07s
9:	learn: 36.2518666	total: 228ms	remaining: 2.05s
10:	learn: 35.4919224	total: 252ms	remaining: 2.04s
11:	learn: 34.6975877	total: 273ms	remaining: 2s
12:	learn: 33.7869362	total: 295ms	remaining: 1.97s
13:	learn: 33.0646033	total: 318ms	remaining: 1.95s
14:	learn: 32.1821772	total: 348ms	remaining: 1.97s
15:	learn: 31.4340749	total: 372ms	remaining: 1.95s
16:	learn: 30.6504198	total: 394ms	remaining: 1.93s
17:	learn: 30.0090260	total: 416ms	remaining: 1.9s
18:	learn: 29.4233143	total: 437ms	remaining: 1.86s
19:	learn: 28.7661957	total: 459ms	remaining: 1.83s
20:	learn: 28.1570594	total: 480ms	remaining: 1.8s
21:	learn: 27.6140124	total: 501ms	remaining: 1.78s
22:	learn: 27.0130709	total: 523ms	remaining: 1.75s
23:	learn: 26.2648081	total: 554ms	remaining: 1.75s
24:	learn: 25.7963649	total: 576ms	remaining: 1.73s
25:	learn: 25.2713860	total: 596ms	remaining: 1.7s
26:	learn: 24.8080692	total: 615ms	remaining: 1.66s
27:	learn: 24.3042862	total: 635ms	remaining: 1.63s
28:	learn: 23.9097237	total: 656ms	remaining: 1.6s
29:	learn: 23.4953174	total: 677ms	remaining: 1.58s
30:	learn: 23.0484452	total: 697ms	remaining: 1.55s
31:	learn: 22.7100962	total: 717ms	remaining: 1.52s
32:	learn: 22.1662267	total: 740ms	remaining: 1.5s
33:	learn: 21.7339884	total: 771ms	remaining: 1.5s
34:	learn: 21.3699422	total: 794ms	remaining: 1.48s
35:	learn: 21.0249329	total: 817ms	remaining: 1.45s
36:	learn: 20.6187923	total: 839ms	remaining: 1.43s
37:	learn: 20.2401981	total: 863ms	remaining: 1.41s
38:	learn: 19.9712328	total: 884ms	remaining: 1.38s
39:	learn: 19.6429610	total: 905ms	remaining: 1.36s
40:	learn: 19.3281556	total: 927ms	remaining: 1.33s
41:	learn: 19.0925924	total: 948ms	remaining: 1.31s
42:	learn: 18.8118712	total: 975ms	remaining: 1.29s
43:	learn: 18.5355748	total: 998ms	remaining: 1.27s
44:	learn: 18.2783929	total: 1.02s	remaining: 1.24s
45:	learn: 17.9915490	total: 1.04s	remaining: 1.22s
46:	learn: 17.7323317	total: 1.06s	remaining: 1.19s
47:	learn: 17.4448307	total: 1.08s	remaining: 1.17s
48:	learn: 17.2419782	total: 1.1s	remaining: 1.14s
49:	learn: 16.9351352	total: 1.12s	remaining: 1.12s
50:	learn: 16.7728723	total: 1.14s	remaining: 1.1s
51:	learn: 16.5718087	total: 1.17s	remaining: 1.08s
52:	learn: 16.4047483	total: 1.19s	remaining: 1.06s
53:	learn: 16.2888950	total: 1.22s	remaining: 1.03s
54:	learn: 16.1353042	total: 1.24s	remaining: 1.01s
55:	learn: 15.9384012	total: 1.26s	remaining: 991ms
56:	learn: 15.7488511	total: 1.28s	remaining: 967ms
57:	learn: 15.5682846	total: 1.3s	remaining: 946ms
58:	learn: 15.3488716	total: 1.33s	remaining: 922ms
59:	learn: 15.2291272	total: 1.35s	remaining: 898ms
60:	learn: 15.0582519	total: 1.37s	remaining: 875ms
61:	learn: 14.8478458	total: 1.39s	remaining: 852ms
62:	learn: 14.6663416	total: 1.42s	remaining: 836ms
63:	learn: 14.4830825	total: 1.44s	remaining: 812ms
64:	learn: 14.3300895	total: 1.47s	remaining: 789ms
65:	learn: 14.1168590	total: 1.49s	remaining: 766ms
66:	learn: 13.9783298	total: 1.5s	remaining: 742ms
67:	learn: 13.8132857	total: 1.53s	remaining: 719ms
68:	learn: 13.7050863	total: 1.55s	remaining: 696ms
69:	learn: 13.5742501	total: 1.57s	remaining: 673ms
70:	learn: 13.4851362	total: 1.59s	remaining: 650ms
71:	learn: 13.3300610	total: 1.62s	remaining: 632ms
72:	learn: 13.2223060	total: 1.65s	remaining: 610ms
73:	learn: 13.0706731	total: 1.67s	remaining: 587ms
74:	learn: 12.9178099	total: 1.69s	remaining: 565ms
75:	learn: 12.7954645	total: 1.72s	remaining: 542ms
76:	learn: 12.7133688	total: 1.74s	remaining: 520ms
77:	learn: 12.5745537	total: 1.76s	remaining: 496ms
78:	learn: 12.4765302	total: 1.78s	remaining: 473ms
79:	learn: 12.3609145	total: 1.8s	remaining: 450ms
80:	learn: 12.2437759	total: 1.83s	remaining: 429ms
81:	learn: 12.1583763	total: 1.85s	remaining: 406ms
82:	learn: 12.0202500	total: 1.87s	remaining: 383ms
83:	learn: 11.9125166	total: 1.89s	remaining: 360ms
84:	learn: 11.8100729	total: 1.91s	remaining: 337ms
85:	learn: 11.7509521	total: 1.93s	remaining: 314ms
86:	learn: 11.6448436	total: 1.96s	remaining: 293ms
87:	learn: 11.5550170	total: 1.99s	remaining: 271ms
88:	learn: 11.4624708	total: 2.01s	remaining: 248ms
89:	learn: 11.3547761	total: 2.04s	remaining: 226ms
90:	learn: 11.2513910	total: 2.07s	remaining: 204ms
91:	learn: 11.1414483	total: 2.09s	remaining: 182ms
92:	learn: 11.0742264	total: 2.12s	remaining: 159ms
93:	learn: 10.9721772	total: 2.14s	remaining: 137ms
94:	learn: 10.9118054	total: 2.17s	remaining: 114ms
95:	learn: 10.8465290	total: 2.19s	remaining: 91.2ms
96:	learn: 10.7451745	total: 2.21s	remaining: 68.4ms
97:	learn: 10.6173565	total: 2.24s	remaining: 45.8ms
98:	learn: 10.5562158	total: 2.27s	remaining: 23ms
99:	learn: 10.4564960	total: 2.3s	remaining: 0us
0:	learn: 27.3776612	total: 20.7ms	remaining: 2.05s
1:	learn: 26.7619003	total: 41.5ms	remaining: 2.03s
2:	learn: 26.0057626	total: 60.8ms	remaining: 1.96s
3:	learn: 25.4280982	total: 83.4ms	remaining: 2s
4:	learn: 24.8347609	total: 112ms	remaining: 2.12s
5:	learn: 24.2526574	total: 137ms	remaining: 2.15s
6:	learn: 23.7478806	total: 159ms	remaining: 2.11s
7:	learn: 23.2677666	total: 181ms	remaining: 2.08s
8:	learn: 22.7564310	total: 204ms	remaining: 2.06s
9:	learn: 22.2873770	total: 226ms	remaining: 2.03s
10:	learn: 21.8088174	total: 246ms	remaining: 1.99s
11:	learn: 21.4086875	total: 267ms	remaining: 1.96s
12:	learn: 20.9489217	total: 289ms	remaining: 1.93s
13:	learn: 20.4585233	total: 318ms	remaining: 1.96s
14:	learn: 20.0177760	total: 340ms	remaining: 1.93s
15:	learn: 19.5981890	total: 360ms	remaining: 1.89s
16:	learn: 19.2041885	total: 381ms	remaining: 1.86s
17:	learn: 18.8422550	total: 402ms	remaining: 1.83s
18:	learn: 18.4774037	total: 422ms	remaining: 1.8s
19:	learn: 18.0931699	total: 443ms	remaining: 1.77s
20:	learn: 17.6856423	total: 462ms	remaining: 1.74s
21:	learn: 17.3394010	total: 484ms	remaining: 1.72s
22:	learn: 17.0165204	total: 508ms	remaining: 1.7s
23:	learn: 16.7728230	total: 539ms	remaining: 1.71s
24:	learn: 16.5020155	total: 563ms	remaining: 1.69s
25:	learn: 16.2110813	total: 585ms	remaining: 1.67s
26:	learn: 15.9439416	total: 608ms	remaining: 1.64s
27:	learn: 15.6605702	total: 629ms	remaining: 1.62s
28:	learn: 15.4180978	total: 650ms	remaining: 1.59s
29:	learn: 15.1463921	total: 672ms	remaining: 1.57s
30:	learn: 14.8961946	total: 694ms	remaining: 1.54s
31:	learn: 14.6763296	total: 724ms	remaining: 1.54s
32:	learn: 14.4161484	total: 749ms	remaining: 1.52s
33:	learn: 14.1748686	total: 769ms	remaining: 1.49s
34:	learn: 13.9722494	total: 789ms	remaining: 1.46s
35:	learn: 13.7632896	total: 808ms	remaining: 1.44s
36:	learn: 13.5572592	total: 828ms	remaining: 1.41s
37:	learn: 13.3896577	total: 849ms	remaining: 1.38s
38:	learn: 13.2796441	total: 868ms	remaining: 1.36s
39:	learn: 13.0896679	total: 889ms	remaining: 1.33s
40:	learn: 12.8898238	total: 910ms	remaining: 1.31s
41:	learn: 12.6824069	total: 930ms	remaining: 1.28s
42:	learn: 12.5459667	total: 962ms	remaining: 1.27s
43:	learn: 12.3859203	total: 986ms	remaining: 1.25s
44:	learn: 12.2099364	total: 1.01s	remaining: 1.23s
45:	learn: 12.0649044	total: 1.03s	remaining: 1.21s
46:	learn: 11.8934147	total: 1.05s	remaining: 1.19s
47:	learn: 11.7212144	total: 1.08s	remaining: 1.17s
48:	learn: 11.5585360	total: 1.09s	remaining: 1.14s
49:	learn: 11.4204354	total: 1.11s	remaining: 1.11s
50:	learn: 11.3264427	total: 1.14s	remaining: 1.09s
51:	learn: 11.2063486	total: 1.16s	remaining: 1.07s
52:	learn: 11.0712206	total: 1.19s	remaining: 1.05s
53:	learn: 10.9205088	total: 1.21s	remaining: 1.03s
54:	learn: 10.8155412	total: 1.23s	remaining: 1.01s
55:	learn: 10.7286854	total: 1.25s	remaining: 983ms
56:	learn: 10.6088466	total: 1.27s	remaining: 960ms
57:	learn: 10.4999885	total: 1.29s	remaining: 935ms
58:	learn: 10.4022194	total: 1.31s	remaining: 911ms
59:	learn: 10.3147130	total: 1.33s	remaining: 887ms
60:	learn: 10.2011489	total: 1.35s	remaining: 864ms
61:	learn: 10.1094372	total: 1.37s	remaining: 841ms
62:	learn: 10.0248970	total: 1.4s	remaining: 824ms
63:	learn: 9.9192710	total: 1.42s	remaining: 801ms
64:	learn: 9.8577360	total: 1.45s	remaining: 779ms
65:	learn: 9.7737103	total: 1.47s	remaining: 758ms
66:	learn: 9.6706617	total: 1.49s	remaining: 736ms
67:	learn: 9.6042727	total: 1.52s	remaining: 713ms
68:	learn: 9.5355377	total: 1.54s	remaining: 690ms
69:	learn: 9.4615216	total: 1.56s	remaining: 668ms
70:	learn: 9.3702045	total: 1.58s	remaining: 646ms
71:	learn: 9.3035392	total: 1.61s	remaining: 627ms
72:	learn: 9.2322686	total: 1.64s	remaining: 605ms
73:	learn: 9.1431916	total: 1.66s	remaining: 582ms
74:	learn: 9.0869466	total: 1.68s	remaining: 559ms
75:	learn: 9.0117390	total: 1.7s	remaining: 536ms
76:	learn: 8.9580443	total: 1.72s	remaining: 514ms
77:	learn: 8.8649939	total: 1.74s	remaining: 491ms
78:	learn: 8.7792713	total: 1.76s	remaining: 468ms
79:	learn: 8.7164606	total: 1.78s	remaining: 445ms
80:	learn: 8.6340559	total: 1.8s	remaining: 423ms
81:	learn: 8.5697104	total: 1.83s	remaining: 403ms
82:	learn: 8.5273758	total: 1.86s	remaining: 381ms
83:	learn: 8.4394788	total: 1.88s	remaining: 359ms
84:	learn: 8.3672415	total: 1.91s	remaining: 336ms
85:	learn: 8.2813444	total: 1.93s	remaining: 314ms
86:	learn: 8.1994983	total: 1.95s	remaining: 291ms
87:	learn: 8.1003577	total: 1.97s	remaining: 269ms
88:	learn: 8.0501976	total: 1.99s	remaining: 246ms
89:	learn: 7.9718830	total: 2.01s	remaining: 224ms
90:	learn: 7.9114534	total: 2.04s	remaining: 202ms
91:	learn: 7.8319856	total: 2.06s	remaining: 179ms
92:	learn: 7.7731246	total: 2.08s	remaining: 157ms
93:	learn: 7.7165850	total: 2.1s	remaining: 134ms
94:	learn: 7.6448498	total: 2.12s	remaining: 112ms
95:	learn: 7.5709919	total: 2.14s	remaining: 89.2ms
96:	learn: 7.5184082	total: 2.16s	remaining: 66.9ms
97:	learn: 7.4786866	total: 2.18s	remaining: 44.5ms
98:	learn: 7.4301201	total: 2.2s	remaining: 22.2ms
99:	learn: 7.3416932	total: 2.22s	remaining: 0us
0:	learn: 42.6391731	total: 21.8ms	remaining: 2.16s
1:	learn: 41.2755994	total: 44.2ms	remaining: 2.17s
2:	learn: 40.1418308	total: 67.4ms	remaining: 2.18s
3:	learn: 38.9707156	total: 87.3ms	remaining: 2.1s
4:	learn: 37.8723622	total: 109ms	remaining: 2.07s
5:	learn: 36.6981834	total: 131ms	remaining: 2.05s
6:	learn: 35.6210108	total: 153ms	remaining: 2.04s
7:	learn: 34.5154078	total: 180ms	remaining: 2.07s
8:	learn: 33.4581011	total: 203ms	remaining: 2.05s
9:	learn: 32.5872455	total: 222ms	remaining: 2s
10:	learn: 31.6311510	total: 240ms	remaining: 1.94s
11:	learn: 30.8222401	total: 260ms	remaining: 1.91s
12:	learn: 29.9305192	total: 279ms	remaining: 1.87s
13:	learn: 29.0742133	total: 298ms	remaining: 1.83s
14:	learn: 28.3687544	total: 317ms	remaining: 1.8s
15:	learn: 27.5730558	total: 337ms	remaining: 1.77s
16:	learn: 26.9376082	total: 358ms	remaining: 1.75s
17:	learn: 26.2254949	total: 383ms	remaining: 1.74s
18:	learn: 25.5974939	total: 408ms	remaining: 1.74s
19:	learn: 25.0097187	total: 430ms	remaining: 1.72s
20:	learn: 24.3722243	total: 452ms	remaining: 1.7s
21:	learn: 23.8249140	total: 475ms	remaining: 1.68s
22:	learn: 23.3953969	total: 496ms	remaining: 1.66s
23:	learn: 22.8726238	total: 519ms	remaining: 1.65s
24:	learn: 22.3407723	total: 539ms	remaining: 1.61s
25:	learn: 21.8360330	total: 558ms	remaining: 1.59s
26:	learn: 21.4050665	total: 560ms	remaining: 1.51s
27:	learn: 20.9389245	total: 580ms	remaining: 1.49s
28:	learn: 20.5166767	total: 601ms	remaining: 1.47s
29:	learn: 20.1190641	total: 625ms	remaining: 1.46s
30:	learn: 19.7189491	total: 649ms	remaining: 1.44s
31:	learn: 19.3748181	total: 670ms	remaining: 1.42s
32:	learn: 19.0116312	total: 689ms	remaining: 1.4s
33:	learn: 18.6982407	total: 709ms	remaining: 1.38s
34:	learn: 18.3109965	total: 728ms	remaining: 1.35s
35:	learn: 17.9620798	total: 748ms	remaining: 1.33s
36:	learn: 17.6396740	total: 766ms	remaining: 1.3s
37:	learn: 17.3596962	total: 784ms	remaining: 1.28s
38:	learn: 17.0107107	total: 802ms	remaining: 1.25s
39:	learn: 16.7000770	total: 823ms	remaining: 1.23s
40:	learn: 16.4406609	total: 834ms	remaining: 1.2s
41:	learn: 16.2482533	total: 860ms	remaining: 1.19s
42:	learn: 16.0039366	total: 889ms	remaining: 1.18s
43:	learn: 15.7538572	total: 911ms	remaining: 1.16s
44:	learn: 15.5095380	total: 933ms	remaining: 1.14s
45:	learn: 15.2678319	total: 955ms	remaining: 1.12s
46:	learn: 15.0494495	total: 976ms	remaining: 1.1s
47:	learn: 14.8347400	total: 995ms	remaining: 1.08s
48:	learn: 14.6035398	total: 1.01s	remaining: 1.06s
49:	learn: 14.3913639	total: 1.03s	remaining: 1.03s
50:	learn: 14.1928022	total: 1.06s	remaining: 1.02s
51:	learn: 13.9985580	total: 1.08s	remaining: 1s
52:	learn: 13.8322220	total: 1.1s	remaining: 980ms
53:	learn: 13.6455937	total: 1.12s	remaining: 957ms
54:	learn: 13.4402019	total: 1.14s	remaining: 934ms
55:	learn: 13.2899163	total: 1.16s	remaining: 912ms
56:	learn: 13.1694614	total: 1.18s	remaining: 891ms
57:	learn: 13.0722892	total: 1.2s	remaining: 870ms
58:	learn: 12.9065251	total: 1.22s	remaining: 848ms
59:	learn: 12.6992885	total: 1.24s	remaining: 828ms
60:	learn: 12.5384562	total: 1.26s	remaining: 808ms
61:	learn: 12.4105591	total: 1.29s	remaining: 792ms
62:	learn: 12.2952504	total: 1.32s	remaining: 775ms
63:	learn: 12.1427365	total: 1.34s	remaining: 755ms
64:	learn: 11.9954361	total: 1.36s	remaining: 735ms
65:	learn: 11.8161234	total: 1.39s	remaining: 714ms
66:	learn: 11.6849978	total: 1.41s	remaining: 692ms
67:	learn: 11.5405300	total: 1.43s	remaining: 671ms
68:	learn: 11.3806762	total: 1.45s	remaining: 649ms
69:	learn: 11.2746848	total: 1.46s	remaining: 628ms
70:	learn: 11.1518256	total: 1.48s	remaining: 606ms
71:	learn: 11.0730779	total: 1.51s	remaining: 587ms
72:	learn: 10.9736725	total: 1.54s	remaining: 570ms
73:	learn: 10.8430563	total: 1.56s	remaining: 549ms
74:	learn: 10.7142220	total: 1.58s	remaining: 528ms
75:	learn: 10.6141640	total: 1.6s	remaining: 507ms
76:	learn: 10.5264853	total: 1.63s	remaining: 486ms
77:	learn: 10.3929390	total: 1.65s	remaining: 466ms
78:	learn: 10.3163176	total: 1.68s	remaining: 445ms
79:	learn: 10.2171240	total: 1.7s	remaining: 425ms
80:	learn: 10.1381738	total: 1.73s	remaining: 406ms
81:	learn: 10.0402437	total: 1.76s	remaining: 386ms
82:	learn: 9.9223565	total: 1.78s	remaining: 365ms
83:	learn: 9.8184057	total: 1.8s	remaining: 344ms
84:	learn: 9.7221978	total: 1.83s	remaining: 323ms
85:	learn: 9.6417031	total: 1.85s	remaining: 302ms
86:	learn: 9.5593969	total: 1.88s	remaining: 280ms
87:	learn: 9.4678992	total: 1.9s	remaining: 259ms
88:	learn: 9.3855757	total: 1.94s	remaining: 239ms
89:	learn: 9.2884031	total: 1.96s	remaining: 218ms
90:	learn: 9.2099382	total: 1.98s	remaining: 196ms
91:	learn: 9.1357061	total: 2s	remaining: 174ms
92:	learn: 9.0690328	total: 2.02s	remaining: 152ms
93:	learn: 8.9904694	total: 2.05s	remaining: 131ms
94:	learn: 8.9256893	total: 2.07s	remaining: 109ms
95:	learn: 8.8600084	total: 2.09s	remaining: 87.1ms
96:	learn: 8.8091154	total: 2.11s	remaining: 65.3ms
97:	learn: 8.7280528	total: 2.13s	remaining: 43.5ms
98:	learn: 8.6761440	total: 2.17s	remaining: 22ms
99:	learn: 8.6181192	total: 2.2s	remaining: 0us
0:	learn: 45.9988128	total: 21.2ms	remaining: 2.1s
1:	learn: 44.7653841	total: 45.4ms	remaining: 2.23s
2:	learn: 43.4693688	total: 67.6ms	remaining: 2.19s
3:	learn: 42.2495168	total: 93.7ms	remaining: 2.25s
4:	learn: 41.2273909	total: 119ms	remaining: 2.25s
5:	learn: 40.0623352	total: 139ms	remaining: 2.18s
6:	learn: 39.0139162	total: 159ms	remaining: 2.12s
7:	learn: 37.9905503	total: 179ms	remaining: 2.06s
8:	learn: 37.1460179	total: 201ms	remaining: 2.03s
9:	learn: 36.1321769	total: 220ms	remaining: 1.98s
10:	learn: 35.2434048	total: 239ms	remaining: 1.93s
11:	learn: 34.3919476	total: 261ms	remaining: 1.91s
12:	learn: 33.5464400	total: 281ms	remaining: 1.88s
13:	learn: 32.5752711	total: 303ms	remaining: 1.86s
14:	learn: 31.8573507	total: 322ms	remaining: 1.82s
15:	learn: 31.1481980	total: 353ms	remaining: 1.85s
16:	learn: 30.4578224	total: 378ms	remaining: 1.85s
17:	learn: 29.8404841	total: 402ms	remaining: 1.83s
18:	learn: 29.1314604	total: 424ms	remaining: 1.81s
19:	learn: 28.5024706	total: 447ms	remaining: 1.79s
20:	learn: 27.9368896	total: 467ms	remaining: 1.76s
21:	learn: 27.2136491	total: 487ms	remaining: 1.73s
22:	learn: 26.6230078	total: 509ms	remaining: 1.71s
23:	learn: 26.0604635	total: 530ms	remaining: 1.68s
24:	learn: 25.6309424	total: 559ms	remaining: 1.68s
25:	learn: 25.1761698	total: 581ms	remaining: 1.65s
26:	learn: 24.6368216	total: 601ms	remaining: 1.62s
27:	learn: 24.1028972	total: 623ms	remaining: 1.6s
28:	learn: 23.3990224	total: 643ms	remaining: 1.57s
29:	learn: 22.9088559	total: 662ms	remaining: 1.54s
30:	learn: 22.4793217	total: 683ms	remaining: 1.52s
31:	learn: 22.0592669	total: 704ms	remaining: 1.5s
32:	learn: 21.6715811	total: 723ms	remaining: 1.47s
33:	learn: 21.1907911	total: 742ms	remaining: 1.44s
34:	learn: 20.8045504	total: 763ms	remaining: 1.42s
35:	learn: 20.4670784	total: 789ms	remaining: 1.4s
36:	learn: 20.0165788	total: 816ms	remaining: 1.39s
37:	learn: 19.6859173	total: 839ms	remaining: 1.37s
38:	learn: 19.3641283	total: 862ms	remaining: 1.35s
39:	learn: 19.0291194	total: 884ms	remaining: 1.33s
40:	learn: 18.7204204	total: 908ms	remaining: 1.31s
41:	learn: 18.4000101	total: 928ms	remaining: 1.28s
42:	learn: 18.0910445	total: 950ms	remaining: 1.26s
43:	learn: 17.8354609	total: 972ms	remaining: 1.24s
44:	learn: 17.4982243	total: 1s	remaining: 1.23s
45:	learn: 17.1895897	total: 1.02s	remaining: 1.2s
46:	learn: 16.9440833	total: 1.04s	remaining: 1.18s
47:	learn: 16.6112102	total: 1.06s	remaining: 1.15s
48:	learn: 16.3320235	total: 1.08s	remaining: 1.13s
49:	learn: 16.0523610	total: 1.11s	remaining: 1.11s
50:	learn: 15.8256738	total: 1.13s	remaining: 1.08s
51:	learn: 15.5699393	total: 1.15s	remaining: 1.06s
52:	learn: 15.3531799	total: 1.17s	remaining: 1.04s
53:	learn: 15.1364230	total: 1.2s	remaining: 1.02s
54:	learn: 15.0012063	total: 1.23s	remaining: 1s
55:	learn: 14.7171740	total: 1.25s	remaining: 983ms
56:	learn: 14.5897576	total: 1.25s	remaining: 946ms
57:	learn: 14.3886878	total: 1.28s	remaining: 925ms
58:	learn: 14.1942115	total: 1.3s	remaining: 904ms
59:	learn: 14.0135398	total: 1.32s	remaining: 881ms
60:	learn: 13.8118263	total: 1.34s	remaining: 857ms
61:	learn: 13.6444047	total: 1.36s	remaining: 836ms
62:	learn: 13.4728078	total: 1.38s	remaining: 813ms
63:	learn: 13.3104934	total: 1.41s	remaining: 794ms
64:	learn: 13.1385144	total: 1.43s	remaining: 771ms
65:	learn: 13.0087777	total: 1.45s	remaining: 748ms
66:	learn: 12.8457835	total: 1.47s	remaining: 725ms
67:	learn: 12.6975263	total: 1.49s	remaining: 702ms
68:	learn: 12.5582839	total: 1.51s	remaining: 680ms
69:	learn: 12.4210776	total: 1.53s	remaining: 658ms
70:	learn: 12.2737286	total: 1.55s	remaining: 635ms
71:	learn: 12.1587075	total: 1.57s	remaining: 613ms
72:	learn: 12.0323022	total: 1.6s	remaining: 592ms
73:	learn: 11.8667900	total: 1.63s	remaining: 573ms
74:	learn: 11.6990385	total: 1.65s	remaining: 551ms
75:	learn: 11.5755058	total: 1.68s	remaining: 530ms
76:	learn: 11.4954152	total: 1.7s	remaining: 508ms
77:	learn: 11.3827464	total: 1.72s	remaining: 486ms
78:	learn: 11.2924968	total: 1.74s	remaining: 463ms
79:	learn: 11.1938217	total: 1.76s	remaining: 441ms
80:	learn: 11.0766477	total: 1.78s	remaining: 419ms
81:	learn: 10.9824487	total: 1.8s	remaining: 396ms
82:	learn: 10.8707168	total: 1.83s	remaining: 376ms
83:	learn: 10.7746205	total: 1.86s	remaining: 354ms
84:	learn: 10.6738461	total: 1.88s	remaining: 331ms
85:	learn: 10.5871227	total: 1.9s	remaining: 309ms
86:	learn: 10.4566607	total: 1.92s	remaining: 287ms
87:	learn: 10.3506633	total: 1.94s	remaining: 265ms
88:	learn: 10.2104644	total: 1.96s	remaining: 242ms
89:	learn: 10.0965839	total: 1.98s	remaining: 220ms
90:	learn: 9.9802927	total: 2.01s	remaining: 198ms
91:	learn: 9.9195276	total: 2.03s	remaining: 177ms
92:	learn: 9.8559698	total: 2.06s	remaining: 155ms
93:	learn: 9.7396780	total: 2.08s	remaining: 133ms
94:	learn: 9.6945725	total: 2.1s	remaining: 111ms
95:	learn: 9.5897565	total: 2.13s	remaining: 88.6ms
96:	learn: 9.5012011	total: 2.15s	remaining: 66.5ms
97:	learn: 9.4123715	total: 2.17s	remaining: 44.3ms
98:	learn: 9.3288366	total: 2.19s	remaining: 22.1ms
99:	learn: 9.2648715	total: 2.21s	remaining: 0us
0:	learn: 45.5336925	total: 18.5ms	remaining: 1.83s
1:	learn: 44.2714175	total: 36.7ms	remaining: 1.8s
2:	learn: 43.1477944	total: 55ms	remaining: 1.78s
3:	learn: 41.9891776	total: 73.8ms	remaining: 1.77s
4:	learn: 41.0638986	total: 91.8ms	remaining: 1.74s
5:	learn: 39.9800801	total: 110ms	remaining: 1.72s
6:	learn: 38.9048061	total: 128ms	remaining: 1.7s
7:	learn: 38.0749429	total: 146ms	remaining: 1.68s
8:	learn: 37.3966644	total: 169ms	remaining: 1.7s
9:	learn: 36.4671331	total: 191ms	remaining: 1.72s
10:	learn: 35.6649217	total: 221ms	remaining: 1.78s
11:	learn: 34.8793657	total: 242ms	remaining: 1.77s
12:	learn: 34.0737401	total: 262ms	remaining: 1.75s
13:	learn: 33.2560999	total: 284ms	remaining: 1.74s
14:	learn: 32.4184623	total: 305ms	remaining: 1.73s
15:	learn: 31.6803206	total: 325ms	remaining: 1.71s
16:	learn: 30.9276344	total: 345ms	remaining: 1.68s
17:	learn: 30.3590041	total: 363ms	remaining: 1.66s
18:	learn: 29.7789888	total: 385ms	remaining: 1.64s
19:	learn: 29.1098261	total: 406ms	remaining: 1.62s
20:	learn: 28.4824889	total: 434ms	remaining: 1.63s
21:	learn: 27.9675744	total: 453ms	remaining: 1.61s
22:	learn: 27.4793215	total: 471ms	remaining: 1.58s
23:	learn: 26.8920542	total: 491ms	remaining: 1.56s
24:	learn: 26.2736657	total: 510ms	remaining: 1.53s
25:	learn: 25.6908003	total: 528ms	remaining: 1.5s
26:	learn: 25.1288844	total: 546ms	remaining: 1.48s
27:	learn: 24.6933320	total: 564ms	remaining: 1.45s
28:	learn: 24.1372567	total: 584ms	remaining: 1.43s
29:	learn: 23.7103515	total: 605ms	remaining: 1.41s
30:	learn: 23.1647499	total: 631ms	remaining: 1.4s
31:	learn: 22.7009216	total: 660ms	remaining: 1.4s
32:	learn: 22.2792229	total: 679ms	remaining: 1.38s
33:	learn: 21.8004244	total: 702ms	remaining: 1.36s
34:	learn: 21.3578361	total: 724ms	remaining: 1.34s
35:	learn: 21.0262832	total: 744ms	remaining: 1.32s
36:	learn: 20.5787502	total: 763ms	remaining: 1.3s
37:	learn: 20.3083055	total: 782ms	remaining: 1.27s
38:	learn: 19.9902529	total: 803ms	remaining: 1.25s
39:	learn: 19.6059571	total: 823ms	remaining: 1.23s
40:	learn: 19.3890959	total: 844ms	remaining: 1.21s
41:	learn: 19.0549255	total: 870ms	remaining: 1.2s
42:	learn: 18.7283215	total: 890ms	remaining: 1.18s
43:	learn: 18.4448725	total: 910ms	remaining: 1.16s
44:	learn: 18.1578001	total: 929ms	remaining: 1.14s
45:	learn: 17.8777474	total: 947ms	remaining: 1.11s
46:	learn: 17.6428221	total: 965ms	remaining: 1.09s
47:	learn: 17.3887752	total: 985ms	remaining: 1.07s
48:	learn: 17.1475761	total: 1s	remaining: 1.04s
49:	learn: 16.9064363	total: 1.02s	remaining: 1.02s
50:	learn: 16.6414681	total: 1.04s	remaining: 1000ms
51:	learn: 16.4549974	total: 1.06s	remaining: 979ms
52:	learn: 16.2617558	total: 1.09s	remaining: 966ms
53:	learn: 16.0258241	total: 1.11s	remaining: 949ms
54:	learn: 15.7694686	total: 1.14s	remaining: 929ms
55:	learn: 15.5449602	total: 1.16s	remaining: 908ms
56:	learn: 15.3515330	total: 1.18s	remaining: 888ms
57:	learn: 15.1120403	total: 1.2s	remaining: 867ms
58:	learn: 14.9131368	total: 1.21s	remaining: 844ms
59:	learn: 14.8021921	total: 1.23s	remaining: 822ms
60:	learn: 14.6564259	total: 1.25s	remaining: 801ms
61:	learn: 14.5253260	total: 1.27s	remaining: 781ms
62:	learn: 14.3975427	total: 1.3s	remaining: 765ms
63:	learn: 14.3060204	total: 1.32s	remaining: 745ms
64:	learn: 14.1283681	total: 1.34s	remaining: 724ms
65:	learn: 14.0159063	total: 1.36s	remaining: 702ms
66:	learn: 13.8712541	total: 1.38s	remaining: 680ms
67:	learn: 13.7852998	total: 1.4s	remaining: 659ms
68:	learn: 13.6790164	total: 1.42s	remaining: 637ms
69:	learn: 13.5253745	total: 1.44s	remaining: 615ms
70:	learn: 13.3959663	total: 1.45s	remaining: 594ms
71:	learn: 13.2062955	total: 1.47s	remaining: 573ms
72:	learn: 13.0788709	total: 1.49s	remaining: 553ms
73:	learn: 12.9513184	total: 1.52s	remaining: 536ms
74:	learn: 12.8198556	total: 1.55s	remaining: 519ms
75:	learn: 12.7137549	total: 1.58s	remaining: 499ms
76:	learn: 12.6243477	total: 1.6s	remaining: 479ms
77:	learn: 12.5241564	total: 1.63s	remaining: 459ms
78:	learn: 12.4445782	total: 1.65s	remaining: 438ms
79:	learn: 12.3816501	total: 1.67s	remaining: 417ms
80:	learn: 12.2846914	total: 1.7s	remaining: 399ms
81:	learn: 12.1419498	total: 1.73s	remaining: 379ms
82:	learn: 12.0846494	total: 1.75s	remaining: 358ms
83:	learn: 11.9851484	total: 1.77s	remaining: 337ms
84:	learn: 11.8905738	total: 1.79s	remaining: 316ms
85:	learn: 11.7718790	total: 1.81s	remaining: 295ms
86:	learn: 11.6854413	total: 1.83s	remaining: 274ms
87:	learn: 11.6206110	total: 1.85s	remaining: 253ms
88:	learn: 11.5376098	total: 1.88s	remaining: 232ms
89:	learn: 11.4235068	total: 1.9s	remaining: 211ms
90:	learn: 11.3477955	total: 1.92s	remaining: 190ms
91:	learn: 11.2663772	total: 1.96s	remaining: 171ms
92:	learn: 11.1916556	total: 1.99s	remaining: 150ms
93:	learn: 11.0921504	total: 2.01s	remaining: 128ms
94:	learn: 10.9622375	total: 2.03s	remaining: 107ms
95:	learn: 10.8882085	total: 2.06s	remaining: 85.7ms
96:	learn: 10.8086218	total: 2.08s	remaining: 64.2ms
97:	learn: 10.7552220	total: 2.1s	remaining: 42.8ms
98:	learn: 10.6929666	total: 2.12s	remaining: 21.4ms
99:	learn: 10.6200033	total: 2.14s	remaining: 0us
0:	learn: 46.3366259	total: 19.2ms	remaining: 1.9s
1:	learn: 45.2205278	total: 40.5ms	remaining: 1.99s
2:	learn: 43.9887404	total: 61.8ms	remaining: 2s
3:	learn: 42.8240666	total: 84.6ms	remaining: 2.03s
4:	learn: 41.6086617	total: 107ms	remaining: 2.04s
5:	learn: 40.5606446	total: 129ms	remaining: 2.03s
6:	learn: 39.6241326	total: 154ms	remaining: 2.04s
7:	learn: 39.0016852	total: 183ms	remaining: 2.1s
8:	learn: 37.8501670	total: 214ms	remaining: 2.16s
9:	learn: 37.0215474	total: 237ms	remaining: 2.13s
10:	learn: 36.0215020	total: 261ms	remaining: 2.11s
11:	learn: 35.2421331	total: 285ms	remaining: 2.09s
12:	learn: 34.5416837	total: 307ms	remaining: 2.05s
13:	learn: 33.7787649	total: 328ms	remaining: 2.01s
14:	learn: 32.9860883	total: 350ms	remaining: 1.98s
15:	learn: 32.2123752	total: 372ms	remaining: 1.95s
16:	learn: 31.3564648	total: 395ms	remaining: 1.93s
17:	learn: 30.7859979	total: 420ms	remaining: 1.91s
18:	learn: 30.1443515	total: 440ms	remaining: 1.88s
19:	learn: 29.4880724	total: 460ms	remaining: 1.84s
20:	learn: 28.9635727	total: 482ms	remaining: 1.81s
21:	learn: 28.4853342	total: 503ms	remaining: 1.78s
22:	learn: 27.9796348	total: 524ms	remaining: 1.75s
23:	learn: 27.4360487	total: 546ms	remaining: 1.73s
24:	learn: 26.8685214	total: 565ms	remaining: 1.7s
25:	learn: 26.1769206	total: 587ms	remaining: 1.67s
26:	learn: 25.7146048	total: 609ms	remaining: 1.65s
27:	learn: 25.2614850	total: 640ms	remaining: 1.64s
28:	learn: 24.6626472	total: 661ms	remaining: 1.62s
29:	learn: 24.2501259	total: 685ms	remaining: 1.6s
30:	learn: 23.7892661	total: 708ms	remaining: 1.57s
31:	learn: 23.2729078	total: 732ms	remaining: 1.55s
32:	learn: 22.8969731	total: 751ms	remaining: 1.52s
33:	learn: 22.4567570	total: 773ms	remaining: 1.5s
34:	learn: 22.0569858	total: 794ms	remaining: 1.47s
35:	learn: 21.7317775	total: 815ms	remaining: 1.45s
36:	learn: 21.3890971	total: 842ms	remaining: 1.43s
37:	learn: 21.0664504	total: 865ms	remaining: 1.41s
38:	learn: 20.7379659	total: 886ms	remaining: 1.39s
39:	learn: 20.4423699	total: 907ms	remaining: 1.36s
40:	learn: 20.1526720	total: 927ms	remaining: 1.33s
41:	learn: 19.8706547	total: 947ms	remaining: 1.31s
42:	learn: 19.5139134	total: 966ms	remaining: 1.28s
43:	learn: 19.3495951	total: 986ms	remaining: 1.25s
44:	learn: 19.1314757	total: 1.01s	remaining: 1.23s
45:	learn: 18.7971159	total: 1.03s	remaining: 1.21s
46:	learn: 18.5447051	total: 1.06s	remaining: 1.19s
47:	learn: 18.2328785	total: 1.08s	remaining: 1.17s
48:	learn: 17.9622938	total: 1.1s	remaining: 1.15s
49:	learn: 17.7264205	total: 1.13s	remaining: 1.13s
50:	learn: 17.4530592	total: 1.15s	remaining: 1.1s
51:	learn: 17.2236644	total: 1.17s	remaining: 1.08s
52:	learn: 17.0122792	total: 1.19s	remaining: 1.05s
53:	learn: 16.7599064	total: 1.21s	remaining: 1.03s
54:	learn: 16.5146699	total: 1.24s	remaining: 1.01s
55:	learn: 16.2531414	total: 1.26s	remaining: 992ms
56:	learn: 16.0997208	total: 1.28s	remaining: 968ms
57:	learn: 15.8452412	total: 1.3s	remaining: 943ms
58:	learn: 15.6294900	total: 1.32s	remaining: 918ms
59:	learn: 15.4564548	total: 1.34s	remaining: 894ms
60:	learn: 15.2978533	total: 1.36s	remaining: 869ms
61:	learn: 15.0976912	total: 1.38s	remaining: 845ms
62:	learn: 14.9094446	total: 1.4s	remaining: 821ms
63:	learn: 14.7415094	total: 1.42s	remaining: 799ms
64:	learn: 14.6123806	total: 1.44s	remaining: 776ms
65:	learn: 14.4744916	total: 1.47s	remaining: 759ms
66:	learn: 14.3212717	total: 1.5s	remaining: 737ms
67:	learn: 14.1768047	total: 1.52s	remaining: 715ms
68:	learn: 14.0387344	total: 1.54s	remaining: 693ms
69:	learn: 13.8987579	total: 1.56s	remaining: 671ms
70:	learn: 13.7825740	total: 1.58s	remaining: 647ms
71:	learn: 13.6818548	total: 1.6s	remaining: 624ms
72:	learn: 13.5356993	total: 1.63s	remaining: 601ms
73:	learn: 13.4408704	total: 1.65s	remaining: 579ms
74:	learn: 13.2992218	total: 1.67s	remaining: 557ms
75:	learn: 13.1547092	total: 1.7s	remaining: 536ms
76:	learn: 13.0800189	total: 1.72s	remaining: 512ms
77:	learn: 12.9434711	total: 1.73s	remaining: 489ms
78:	learn: 12.8327325	total: 1.75s	remaining: 466ms
79:	learn: 12.7238946	total: 1.77s	remaining: 443ms
80:	learn: 12.6229528	total: 1.79s	remaining: 421ms
81:	learn: 12.5216078	total: 1.82s	remaining: 399ms
82:	learn: 12.4182254	total: 1.84s	remaining: 376ms
83:	learn: 12.3097978	total: 1.85s	remaining: 353ms
84:	learn: 12.1852056	total: 1.88s	remaining: 331ms
85:	learn: 12.0739627	total: 1.91s	remaining: 311ms
86:	learn: 11.9475583	total: 1.93s	remaining: 289ms
87:	learn: 11.8403806	total: 1.95s	remaining: 266ms
88:	learn: 11.7294124	total: 1.98s	remaining: 244ms
89:	learn: 11.6395689	total: 2s	remaining: 222ms
90:	learn: 11.5510643	total: 2.02s	remaining: 199ms
91:	learn: 11.4455301	total: 2.04s	remaining: 177ms
92:	learn: 11.3368661	total: 2.06s	remaining: 155ms
93:	learn: 11.2270796	total: 2.08s	remaining: 133ms
94:	learn: 11.1168414	total: 2.1s	remaining: 110ms
95:	learn: 11.0310985	total: 2.13s	remaining: 88.6ms
96:	learn: 10.9735185	total: 2.15s	remaining: 66.4ms
97:	learn: 10.8575874	total: 2.17s	remaining: 44.2ms
98:	learn: 10.7816173	total: 2.18s	remaining: 22.1ms
99:	learn: 10.7111737	total: 2.2s	remaining: 0us
0:	learn: 27.6506730	total: 5.07ms	remaining: 502ms
1:	learn: 27.1638793	total: 9.36ms	remaining: 459ms
2:	learn: 26.8000665	total: 14.1ms	remaining: 457ms
3:	learn: 26.4256132	total: 18.8ms	remaining: 452ms
4:	learn: 26.0088351	total: 23.3ms	remaining: 442ms
5:	learn: 25.7558298	total: 27.9ms	remaining: 438ms
6:	learn: 25.3380711	total: 32.8ms	remaining: 436ms
7:	learn: 25.0571611	total: 37.5ms	remaining: 431ms
8:	learn: 24.6790148	total: 42.1ms	remaining: 425ms
9:	learn: 24.3600941	total: 46.6ms	remaining: 419ms
10:	learn: 24.1105667	total: 51.3ms	remaining: 415ms
11:	learn: 23.7736542	total: 56ms	remaining: 411ms
12:	learn: 23.5824429	total: 60.9ms	remaining: 408ms
13:	learn: 23.2658303	total: 69.6ms	remaining: 427ms
14:	learn: 23.0061886	total: 78.9ms	remaining: 447ms
15:	learn: 22.8060389	total: 86.4ms	remaining: 454ms
16:	learn: 22.5899735	total: 94.8ms	remaining: 463ms
17:	learn: 22.3625048	total: 100ms	remaining: 456ms
18:	learn: 22.0706477	total: 106ms	remaining: 452ms
19:	learn: 21.8739394	total: 111ms	remaining: 445ms
20:	learn: 21.6143650	total: 116ms	remaining: 437ms
21:	learn: 21.4571623	total: 135ms	remaining: 479ms
22:	learn: 21.2395769	total: 140ms	remaining: 470ms
23:	learn: 20.9801795	total: 146ms	remaining: 461ms
24:	learn: 20.8036808	total: 151ms	remaining: 452ms
25:	learn: 20.6387539	total: 156ms	remaining: 445ms
26:	learn: 20.4401427	total: 162ms	remaining: 438ms
27:	learn: 20.2879575	total: 167ms	remaining: 429ms
28:	learn: 20.0538664	total: 171ms	remaining: 420ms
29:	learn: 19.8363102	total: 176ms	remaining: 411ms
30:	learn: 19.7015446	total: 181ms	remaining: 402ms
31:	learn: 19.5483114	total: 185ms	remaining: 393ms
32:	learn: 19.4163053	total: 190ms	remaining: 385ms
33:	learn: 19.2880625	total: 194ms	remaining: 377ms
34:	learn: 19.1303389	total: 199ms	remaining: 370ms
35:	learn: 18.9237448	total: 203ms	remaining: 361ms
36:	learn: 18.8142925	total: 208ms	remaining: 353ms
37:	learn: 18.6994696	total: 213ms	remaining: 347ms
38:	learn: 18.5629211	total: 217ms	remaining: 340ms
39:	learn: 18.4600917	total: 222ms	remaining: 333ms
40:	learn: 18.3567139	total: 226ms	remaining: 326ms
41:	learn: 18.2120527	total: 231ms	remaining: 319ms
42:	learn: 18.0688062	total: 236ms	remaining: 313ms
43:	learn: 17.9250181	total: 241ms	remaining: 307ms
44:	learn: 17.8399138	total: 246ms	remaining: 300ms
45:	learn: 17.6720713	total: 251ms	remaining: 294ms
46:	learn: 17.5273091	total: 256ms	remaining: 289ms
47:	learn: 17.4232814	total: 264ms	remaining: 286ms
48:	learn: 17.2957579	total: 273ms	remaining: 284ms
49:	learn: 17.1892874	total: 280ms	remaining: 280ms
50:	learn: 17.0490355	total: 285ms	remaining: 274ms
51:	learn: 16.9666450	total: 290ms	remaining: 268ms
52:	learn: 16.8600056	total: 295ms	remaining: 261ms
53:	learn: 16.7542588	total: 299ms	remaining: 255ms
54:	learn: 16.6316077	total: 304ms	remaining: 249ms
55:	learn: 16.5588112	total: 309ms	remaining: 243ms
56:	learn: 16.5010186	total: 313ms	remaining: 236ms
57:	learn: 16.4081540	total: 318ms	remaining: 230ms
58:	learn: 16.3040451	total: 322ms	remaining: 224ms
59:	learn: 16.1890564	total: 327ms	remaining: 218ms
60:	learn: 16.0977103	total: 331ms	remaining: 212ms
61:	learn: 15.9627607	total: 336ms	remaining: 206ms
62:	learn: 15.9022248	total: 340ms	remaining: 200ms
63:	learn: 15.8151881	total: 345ms	remaining: 194ms
64:	learn: 15.7353125	total: 349ms	remaining: 188ms
65:	learn: 15.6312897	total: 354ms	remaining: 182ms
66:	learn: 15.5330927	total: 358ms	remaining: 176ms
67:	learn: 15.4698681	total: 362ms	remaining: 171ms
68:	learn: 15.4108571	total: 367ms	remaining: 165ms
69:	learn: 15.3492945	total: 372ms	remaining: 159ms
70:	learn: 15.3036540	total: 376ms	remaining: 154ms
71:	learn: 15.2390833	total: 381ms	remaining: 148ms
72:	learn: 15.1556327	total: 385ms	remaining: 142ms
73:	learn: 15.1016315	total: 389ms	remaining: 137ms
74:	learn: 15.0287076	total: 394ms	remaining: 131ms
75:	learn: 14.9530572	total: 399ms	remaining: 126ms
76:	learn: 14.8965517	total: 403ms	remaining: 120ms
77:	learn: 14.8125426	total: 408ms	remaining: 115ms
78:	learn: 14.7435359	total: 413ms	remaining: 110ms
79:	learn: 14.6963163	total: 417ms	remaining: 104ms
80:	learn: 14.6200060	total: 421ms	remaining: 98.8ms
81:	learn: 14.5707760	total: 427ms	remaining: 93.6ms
82:	learn: 14.5053651	total: 432ms	remaining: 88.4ms
83:	learn: 14.4115458	total: 436ms	remaining: 83.1ms
84:	learn: 14.3117159	total: 441ms	remaining: 77.9ms
85:	learn: 14.2511326	total: 447ms	remaining: 72.7ms
86:	learn: 14.1372486	total: 451ms	remaining: 67.4ms
87:	learn: 14.0992301	total: 458ms	remaining: 62.4ms
88:	learn: 14.0228331	total: 465ms	remaining: 57.5ms
89:	learn: 13.9249836	total: 475ms	remaining: 52.7ms
90:	learn: 13.8679364	total: 482ms	remaining: 47.7ms
91:	learn: 13.8405578	total: 490ms	remaining: 42.6ms
92:	learn: 13.7711325	total: 495ms	remaining: 37.3ms
93:	learn: 13.7357019	total: 500ms	remaining: 31.9ms
94:	learn: 13.6735271	total: 506ms	remaining: 26.6ms
95:	learn: 13.5682393	total: 512ms	remaining: 21.3ms
96:	learn: 13.5342610	total: 517ms	remaining: 16ms
97:	learn: 13.4710034	total: 522ms	remaining: 10.7ms
98:	learn: 13.4022402	total: 528ms	remaining: 5.33ms
99:	learn: 13.3351238	total: 534ms	remaining: 0us
0:	learn: 42.9181702	total: 5.18ms	remaining: 513ms
1:	learn: 42.0286736	total: 9.82ms	remaining: 481ms
2:	learn: 41.2764568	total: 14.5ms	remaining: 469ms
3:	learn: 40.4721918	total: 19ms	remaining: 457ms
4:	learn: 39.8518928	total: 23.5ms	remaining: 446ms
5:	learn: 39.2645479	total: 28.1ms	remaining: 440ms
6:	learn: 38.4453704	total: 32.3ms	remaining: 429ms
7:	learn: 37.7122059	total: 36.7ms	remaining: 422ms
8:	learn: 36.9185796	total: 41.3ms	remaining: 417ms
9:	learn: 36.1668427	total: 46ms	remaining: 414ms
10:	learn: 35.5639029	total: 50.5ms	remaining: 408ms
11:	learn: 34.7724193	total: 55ms	remaining: 404ms
12:	learn: 34.3053433	total: 60.2ms	remaining: 403ms
13:	learn: 33.6561327	total: 61.5ms	remaining: 378ms
14:	learn: 33.0134042	total: 66.3ms	remaining: 376ms
15:	learn: 32.4483300	total: 71.1ms	remaining: 373ms
16:	learn: 31.8581144	total: 75.9ms	remaining: 371ms
17:	learn: 31.2858301	total: 80.7ms	remaining: 367ms
18:	learn: 30.8483018	total: 85.4ms	remaining: 364ms
19:	learn: 30.4174622	total: 94.7ms	remaining: 379ms
20:	learn: 29.8994411	total: 102ms	remaining: 384ms
21:	learn: 29.5045355	total: 109ms	remaining: 387ms
22:	learn: 28.9923519	total: 114ms	remaining: 383ms
23:	learn: 28.4255717	total: 120ms	remaining: 381ms
24:	learn: 28.0283139	total: 125ms	remaining: 375ms
25:	learn: 27.7434814	total: 129ms	remaining: 368ms
26:	learn: 27.2770731	total: 133ms	remaining: 361ms
27:	learn: 26.8928270	total: 138ms	remaining: 355ms
28:	learn: 26.4282671	total: 142ms	remaining: 349ms
29:	learn: 26.0272764	total: 147ms	remaining: 342ms
30:	learn: 25.7579312	total: 151ms	remaining: 337ms
31:	learn: 25.4542434	total: 156ms	remaining: 331ms
32:	learn: 25.1232564	total: 160ms	remaining: 326ms
33:	learn: 24.8110795	total: 165ms	remaining: 321ms
34:	learn: 24.5077579	total: 170ms	remaining: 315ms
35:	learn: 24.1909000	total: 174ms	remaining: 309ms
36:	learn: 23.8719468	total: 179ms	remaining: 304ms
37:	learn: 23.5764366	total: 180ms	remaining: 293ms
38:	learn: 23.3468086	total: 185ms	remaining: 289ms
39:	learn: 23.0908771	total: 189ms	remaining: 284ms
40:	learn: 22.8580876	total: 194ms	remaining: 279ms
41:	learn: 22.6060825	total: 199ms	remaining: 274ms
42:	learn: 22.4125407	total: 204ms	remaining: 270ms
43:	learn: 22.1990617	total: 209ms	remaining: 266ms
44:	learn: 21.9716164	total: 214ms	remaining: 262ms
45:	learn: 21.8360935	total: 219ms	remaining: 257ms
46:	learn: 21.6169256	total: 224ms	remaining: 252ms
47:	learn: 21.4620612	total: 229ms	remaining: 248ms
48:	learn: 21.2894194	total: 233ms	remaining: 242ms
49:	learn: 21.1066266	total: 238ms	remaining: 238ms
50:	learn: 20.9484898	total: 242ms	remaining: 233ms
51:	learn: 20.7195338	total: 247ms	remaining: 228ms
52:	learn: 20.4899740	total: 251ms	remaining: 223ms
53:	learn: 20.3356583	total: 256ms	remaining: 218ms
54:	learn: 20.0754393	total: 261ms	remaining: 213ms
55:	learn: 19.9199159	total: 268ms	remaining: 210ms
56:	learn: 19.7761128	total: 275ms	remaining: 208ms
57:	learn: 19.6533060	total: 282ms	remaining: 204ms
58:	learn: 19.5113942	total: 288ms	remaining: 200ms
59:	learn: 19.3985022	total: 293ms	remaining: 195ms
60:	learn: 19.2683443	total: 298ms	remaining: 191ms
61:	learn: 19.1460824	total: 305ms	remaining: 187ms
62:	learn: 19.0042655	total: 310ms	remaining: 182ms
63:	learn: 18.8720873	total: 316ms	remaining: 178ms
64:	learn: 18.7183888	total: 321ms	remaining: 173ms
65:	learn: 18.5472360	total: 326ms	remaining: 168ms
66:	learn: 18.3976642	total: 331ms	remaining: 163ms
67:	learn: 18.2282851	total: 336ms	remaining: 158ms
68:	learn: 18.1469157	total: 341ms	remaining: 153ms
69:	learn: 18.0649494	total: 346ms	remaining: 148ms
70:	learn: 17.9485405	total: 352ms	remaining: 144ms
71:	learn: 17.8460261	total: 357ms	remaining: 139ms
72:	learn: 17.7679843	total: 363ms	remaining: 134ms
73:	learn: 17.5989290	total: 369ms	remaining: 129ms
74:	learn: 17.4381322	total: 374ms	remaining: 125ms
75:	learn: 17.3370886	total: 380ms	remaining: 120ms
76:	learn: 17.2675308	total: 385ms	remaining: 115ms
77:	learn: 17.1946430	total: 391ms	remaining: 110ms
78:	learn: 17.0923725	total: 396ms	remaining: 105ms
79:	learn: 17.0537265	total: 400ms	remaining: 99.9ms
80:	learn: 16.9456831	total: 404ms	remaining: 94.8ms
81:	learn: 16.8457353	total: 408ms	remaining: 89.6ms
82:	learn: 16.7469310	total: 412ms	remaining: 84.5ms
83:	learn: 16.6679953	total: 417ms	remaining: 79.4ms
84:	learn: 16.6274189	total: 421ms	remaining: 74.4ms
85:	learn: 16.5516530	total: 426ms	remaining: 69.3ms
86:	learn: 16.4886066	total: 430ms	remaining: 64.2ms
87:	learn: 16.3947859	total: 434ms	remaining: 59.2ms
88:	learn: 16.3406495	total: 439ms	remaining: 54.2ms
89:	learn: 16.3019195	total: 443ms	remaining: 49.2ms
90:	learn: 16.1860681	total: 447ms	remaining: 44.2ms
91:	learn: 16.1282812	total: 451ms	remaining: 39.2ms
92:	learn: 16.0303652	total: 456ms	remaining: 34.3ms
93:	learn: 15.9561692	total: 461ms	remaining: 29.4ms
94:	learn: 15.8733994	total: 465ms	remaining: 24.5ms
95:	learn: 15.8108833	total: 470ms	remaining: 19.6ms
96:	learn: 15.7606004	total: 475ms	remaining: 14.7ms
97:	learn: 15.6984664	total: 479ms	remaining: 9.77ms
98:	learn: 15.6223632	total: 485ms	remaining: 4.9ms
99:	learn: 15.5671136	total: 493ms	remaining: 0us
0:	learn: 46.4788614	total: 1.96ms	remaining: 194ms
1:	learn: 45.7608372	total: 6.92ms	remaining: 339ms
2:	learn: 44.8825004	total: 11.6ms	remaining: 374ms
3:	learn: 44.0362738	total: 16.4ms	remaining: 394ms
4:	learn: 43.2086374	total: 21.2ms	remaining: 403ms
5:	learn: 42.5835773	total: 26ms	remaining: 407ms
6:	learn: 41.9673269	total: 30.9ms	remaining: 410ms
7:	learn: 41.4748717	total: 35.6ms	remaining: 410ms
8:	learn: 40.7129183	total: 40.2ms	remaining: 406ms
9:	learn: 39.8900884	total: 45ms	remaining: 405ms
10:	learn: 39.4142193	total: 61.6ms	remaining: 498ms
11:	learn: 38.8645613	total: 66.5ms	remaining: 488ms
12:	learn: 38.2394731	total: 71ms	remaining: 475ms
13:	learn: 37.6834515	total: 75.6ms	remaining: 465ms
14:	learn: 37.0673507	total: 80.1ms	remaining: 454ms
15:	learn: 36.4728340	total: 84.7ms	remaining: 445ms
16:	learn: 36.0489086	total: 89.1ms	remaining: 435ms
17:	learn: 35.4744141	total: 93.4ms	remaining: 426ms
18:	learn: 35.0106021	total: 97.5ms	remaining: 416ms
19:	learn: 34.5586053	total: 102ms	remaining: 409ms
20:	learn: 34.1308223	total: 107ms	remaining: 402ms
21:	learn: 33.7701450	total: 111ms	remaining: 395ms
22:	learn: 33.4425444	total: 115ms	remaining: 386ms
23:	learn: 33.0296412	total: 120ms	remaining: 378ms
24:	learn: 32.6359803	total: 124ms	remaining: 372ms
25:	learn: 32.1846182	total: 129ms	remaining: 366ms
26:	learn: 31.7620230	total: 133ms	remaining: 360ms
27:	learn: 31.4669337	total: 138ms	remaining: 355ms
28:	learn: 31.0792062	total: 143ms	remaining: 350ms
29:	learn: 30.7970537	total: 148ms	remaining: 346ms
30:	learn: 30.4952215	total: 154ms	remaining: 342ms
31:	learn: 30.2845344	total: 161ms	remaining: 342ms
32:	learn: 29.9592732	total: 169ms	remaining: 343ms
33:	learn: 29.6798596	total: 180ms	remaining: 349ms
34:	learn: 29.3368905	total: 189ms	remaining: 350ms
35:	learn: 29.0621238	total: 194ms	remaining: 344ms
36:	learn: 28.6445375	total: 199ms	remaining: 339ms
37:	learn: 28.2418096	total: 205ms	remaining: 334ms
38:	learn: 27.9495390	total: 210ms	remaining: 329ms
39:	learn: 27.6958160	total: 216ms	remaining: 323ms
40:	learn: 27.4811189	total: 221ms	remaining: 318ms
41:	learn: 27.1494420	total: 226ms	remaining: 313ms
42:	learn: 26.8388873	total: 231ms	remaining: 307ms
43:	learn: 26.5721300	total: 237ms	remaining: 301ms
44:	learn: 26.3384738	total: 242ms	remaining: 295ms
45:	learn: 26.1894781	total: 247ms	remaining: 290ms
46:	learn: 25.9580198	total: 253ms	remaining: 285ms
47:	learn: 25.7897985	total: 259ms	remaining: 281ms
48:	learn: 25.6000271	total: 264ms	remaining: 275ms
49:	learn: 25.4130873	total: 269ms	remaining: 269ms
50:	learn: 25.1699061	total: 273ms	remaining: 263ms
51:	learn: 24.9324449	total: 278ms	remaining: 257ms
52:	learn: 24.7729152	total: 283ms	remaining: 251ms
53:	learn: 24.5026563	total: 288ms	remaining: 245ms
54:	learn: 24.2332627	total: 293ms	remaining: 240ms
55:	learn: 23.9611984	total: 298ms	remaining: 234ms
56:	learn: 23.7862603	total: 303ms	remaining: 228ms
57:	learn: 23.6318154	total: 308ms	remaining: 223ms
58:	learn: 23.4443306	total: 313ms	remaining: 217ms
59:	learn: 23.2581425	total: 318ms	remaining: 212ms
60:	learn: 23.0549901	total: 323ms	remaining: 207ms
61:	learn: 22.8666218	total: 329ms	remaining: 202ms
62:	learn: 22.6956739	total: 334ms	remaining: 196ms
63:	learn: 22.5068544	total: 339ms	remaining: 191ms
64:	learn: 22.1859147	total: 344ms	remaining: 185ms
65:	learn: 22.0462043	total: 354ms	remaining: 182ms
66:	learn: 21.9329563	total: 363ms	remaining: 179ms
67:	learn: 21.8029736	total: 369ms	remaining: 174ms
68:	learn: 21.6861091	total: 376ms	remaining: 169ms
69:	learn: 21.4838140	total: 382ms	remaining: 164ms
70:	learn: 21.3548921	total: 387ms	remaining: 158ms
71:	learn: 21.2244517	total: 392ms	remaining: 152ms
72:	learn: 21.0702958	total: 396ms	remaining: 147ms
73:	learn: 20.9224662	total: 401ms	remaining: 141ms
74:	learn: 20.8150357	total: 406ms	remaining: 135ms
75:	learn: 20.6962739	total: 410ms	remaining: 130ms
76:	learn: 20.5809258	total: 415ms	remaining: 124ms
77:	learn: 20.4735470	total: 420ms	remaining: 118ms
78:	learn: 20.3778167	total: 424ms	remaining: 113ms
79:	learn: 20.2211268	total: 429ms	remaining: 107ms
80:	learn: 20.1478678	total: 433ms	remaining: 102ms
81:	learn: 20.1032967	total: 437ms	remaining: 96ms
82:	learn: 19.9236300	total: 442ms	remaining: 90.6ms
83:	learn: 19.8151745	total: 447ms	remaining: 85.2ms
84:	learn: 19.7099856	total: 452ms	remaining: 79.8ms
85:	learn: 19.6264833	total: 457ms	remaining: 74.4ms
86:	learn: 19.4916361	total: 462ms	remaining: 69ms
87:	learn: 19.4050529	total: 467ms	remaining: 63.7ms
88:	learn: 19.2547065	total: 471ms	remaining: 58.2ms
89:	learn: 19.1610225	total: 476ms	remaining: 52.9ms
90:	learn: 19.0898958	total: 481ms	remaining: 47.6ms
91:	learn: 19.0489664	total: 485ms	remaining: 42.2ms
92:	learn: 18.9206240	total: 490ms	remaining: 36.9ms
93:	learn: 18.8636239	total: 494ms	remaining: 31.6ms
94:	learn: 18.8126187	total: 499ms	remaining: 26.3ms
95:	learn: 18.7579275	total: 504ms	remaining: 21ms
96:	learn: 18.6382753	total: 508ms	remaining: 15.7ms
97:	learn: 18.5397334	total: 513ms	remaining: 10.5ms
98:	learn: 18.4375951	total: 517ms	remaining: 5.22ms
99:	learn: 18.4033755	total: 522ms	remaining: 0us
0:	learn: 46.1068821	total: 4.21ms	remaining: 417ms
1:	learn: 45.3970261	total: 9.83ms	remaining: 482ms
2:	learn: 44.8732696	total: 15.1ms	remaining: 487ms
3:	learn: 44.1290184	total: 20.5ms	remaining: 492ms
4:	learn: 43.3290271	total: 26.2ms	remaining: 498ms
5:	learn: 42.7069090	total: 31.5ms	remaining: 493ms
6:	learn: 42.0572971	total: 36.8ms	remaining: 489ms
7:	learn: 41.4797924	total: 42.2ms	remaining: 485ms
8:	learn: 41.0023122	total: 47.9ms	remaining: 484ms
9:	learn: 40.5330570	total: 53.1ms	remaining: 478ms
10:	learn: 39.9726545	total: 58.4ms	remaining: 472ms
11:	learn: 39.3044053	total: 63ms	remaining: 462ms
12:	learn: 38.8169735	total: 68.3ms	remaining: 457ms
13:	learn: 38.2458761	total: 73.7ms	remaining: 453ms
14:	learn: 37.6280321	total: 79ms	remaining: 448ms
15:	learn: 37.0800610	total: 84.2ms	remaining: 442ms
16:	learn: 36.5489363	total: 89ms	remaining: 435ms
17:	learn: 36.0981456	total: 94ms	remaining: 428ms
18:	learn: 35.6956274	total: 98.7ms	remaining: 421ms
19:	learn: 35.1471999	total: 104ms	remaining: 415ms
20:	learn: 34.6235408	total: 108ms	remaining: 408ms
21:	learn: 34.1987018	total: 113ms	remaining: 402ms
22:	learn: 33.8985062	total: 118ms	remaining: 395ms
23:	learn: 33.3869017	total: 123ms	remaining: 390ms
24:	learn: 32.9100550	total: 128ms	remaining: 383ms
25:	learn: 32.4156208	total: 132ms	remaining: 377ms
26:	learn: 31.9320493	total: 137ms	remaining: 371ms
27:	learn: 31.5711468	total: 142ms	remaining: 364ms
28:	learn: 31.2404433	total: 146ms	remaining: 357ms
29:	learn: 30.8807946	total: 150ms	remaining: 351ms
30:	learn: 30.5948438	total: 155ms	remaining: 345ms
31:	learn: 30.3885560	total: 160ms	remaining: 340ms
32:	learn: 30.0625101	total: 165ms	remaining: 334ms
33:	learn: 29.9113114	total: 169ms	remaining: 329ms
34:	learn: 29.6983470	total: 174ms	remaining: 323ms
35:	learn: 29.4775849	total: 179ms	remaining: 318ms
36:	learn: 29.0538055	total: 187ms	remaining: 318ms
37:	learn: 28.6792318	total: 194ms	remaining: 317ms
38:	learn: 28.4231383	total: 201ms	remaining: 315ms
39:	learn: 28.1078565	total: 207ms	remaining: 310ms
40:	learn: 27.9079179	total: 213ms	remaining: 306ms
41:	learn: 27.6721506	total: 217ms	remaining: 300ms
42:	learn: 27.4228033	total: 222ms	remaining: 294ms
43:	learn: 27.1740534	total: 226ms	remaining: 287ms
44:	learn: 26.8584071	total: 230ms	remaining: 281ms
45:	learn: 26.6902083	total: 235ms	remaining: 275ms
46:	learn: 26.4855335	total: 239ms	remaining: 270ms
47:	learn: 26.2730822	total: 243ms	remaining: 264ms
48:	learn: 26.1058689	total: 248ms	remaining: 258ms
49:	learn: 25.8587318	total: 252ms	remaining: 252ms
50:	learn: 25.7558005	total: 256ms	remaining: 246ms
51:	learn: 25.5846925	total: 260ms	remaining: 240ms
52:	learn: 25.4249887	total: 265ms	remaining: 235ms
53:	learn: 25.1911054	total: 269ms	remaining: 229ms
54:	learn: 25.0544755	total: 273ms	remaining: 223ms
55:	learn: 24.8874006	total: 277ms	remaining: 218ms
56:	learn: 24.7736279	total: 282ms	remaining: 213ms
57:	learn: 24.6156255	total: 286ms	remaining: 207ms
58:	learn: 24.3962421	total: 290ms	remaining: 202ms
59:	learn: 24.2685129	total: 294ms	remaining: 196ms
60:	learn: 24.1874096	total: 299ms	remaining: 191ms
61:	learn: 24.0394287	total: 303ms	remaining: 186ms
62:	learn: 23.9281768	total: 308ms	remaining: 181ms
63:	learn: 23.7423900	total: 312ms	remaining: 175ms
64:	learn: 23.6015209	total: 316ms	remaining: 170ms
65:	learn: 23.4677943	total: 321ms	remaining: 165ms
66:	learn: 23.3215256	total: 325ms	remaining: 160ms
67:	learn: 23.1869360	total: 329ms	remaining: 155ms
68:	learn: 22.9691180	total: 334ms	remaining: 150ms
69:	learn: 22.7531657	total: 338ms	remaining: 145ms
70:	learn: 22.6133477	total: 342ms	remaining: 140ms
71:	learn: 22.3452758	total: 347ms	remaining: 135ms
72:	learn: 22.2065350	total: 351ms	remaining: 130ms
73:	learn: 22.1071155	total: 356ms	remaining: 125ms
74:	learn: 21.9740686	total: 360ms	remaining: 120ms
75:	learn: 21.8892033	total: 364ms	remaining: 115ms
76:	learn: 21.8267882	total: 369ms	remaining: 110ms
77:	learn: 21.7423479	total: 373ms	remaining: 105ms
78:	learn: 21.6242075	total: 378ms	remaining: 101ms
79:	learn: 21.5016910	total: 383ms	remaining: 95.7ms
80:	learn: 21.4806623	total: 383ms	remaining: 90ms
81:	learn: 21.3166637	total: 388ms	remaining: 85.2ms
82:	learn: 21.2222534	total: 393ms	remaining: 80.5ms
83:	learn: 21.1535708	total: 400ms	remaining: 76.2ms
84:	learn: 21.0858902	total: 407ms	remaining: 71.9ms
85:	learn: 20.9206003	total: 417ms	remaining: 67.9ms
86:	learn: 20.8674695	total: 425ms	remaining: 63.5ms
87:	learn: 20.8089875	total: 431ms	remaining: 58.7ms
88:	learn: 20.7085401	total: 436ms	remaining: 53.8ms
89:	learn: 20.5513468	total: 441ms	remaining: 49ms
90:	learn: 20.4586742	total: 446ms	remaining: 44.1ms
91:	learn: 20.3932149	total: 451ms	remaining: 39.2ms
92:	learn: 20.3000895	total: 457ms	remaining: 34.4ms
93:	learn: 20.2254009	total: 462ms	remaining: 29.5ms
94:	learn: 20.1750050	total: 467ms	remaining: 24.6ms
95:	learn: 20.0715579	total: 472ms	remaining: 19.7ms
96:	learn: 19.9920082	total: 478ms	remaining: 14.8ms
97:	learn: 19.9664401	total: 483ms	remaining: 9.85ms
98:	learn: 19.8689673	total: 488ms	remaining: 4.93ms
99:	learn: 19.7537356	total: 493ms	remaining: 0us
0:	learn: 46.8832143	total: 4.64ms	remaining: 459ms
1:	learn: 45.8700349	total: 9.84ms	remaining: 482ms
2:	learn: 45.0546867	total: 14.5ms	remaining: 470ms
3:	learn: 44.2829439	total: 18.8ms	remaining: 451ms
4:	learn: 43.4609042	total: 23.2ms	remaining: 440ms
5:	learn: 42.6754991	total: 28.1ms	remaining: 441ms
6:	learn: 41.9234935	total: 33.1ms	remaining: 440ms
7:	learn: 41.3987518	total: 37.9ms	remaining: 436ms
8:	learn: 40.6625066	total: 42.9ms	remaining: 434ms
9:	learn: 40.0029561	total: 48ms	remaining: 432ms
10:	learn: 39.3897033	total: 53ms	remaining: 429ms
11:	learn: 38.7741453	total: 60.6ms	remaining: 444ms
12:	learn: 38.1201100	total: 69ms	remaining: 462ms
13:	learn: 37.5129454	total: 76.8ms	remaining: 472ms
14:	learn: 37.2062206	total: 82.8ms	remaining: 469ms
15:	learn: 36.6831741	total: 88.8ms	remaining: 466ms
16:	learn: 36.2902788	total: 93.9ms	remaining: 459ms
17:	learn: 35.7639930	total: 98.9ms	remaining: 451ms
18:	learn: 35.2580953	total: 104ms	remaining: 443ms
19:	learn: 34.7809739	total: 108ms	remaining: 434ms
20:	learn: 34.1330433	total: 113ms	remaining: 426ms
21:	learn: 33.7302219	total: 118ms	remaining: 418ms
22:	learn: 33.3502495	total: 123ms	remaining: 411ms
23:	learn: 33.0067804	total: 127ms	remaining: 403ms
24:	learn: 32.6897855	total: 132ms	remaining: 397ms
25:	learn: 32.4361119	total: 137ms	remaining: 390ms
26:	learn: 32.1278981	total: 142ms	remaining: 383ms
27:	learn: 31.7863721	total: 147ms	remaining: 377ms
28:	learn: 31.4791450	total: 152ms	remaining: 371ms
29:	learn: 31.1760161	total: 156ms	remaining: 365ms
30:	learn: 30.9238888	total: 161ms	remaining: 358ms
31:	learn: 30.5500905	total: 166ms	remaining: 353ms
32:	learn: 30.3078126	total: 170ms	remaining: 346ms
33:	learn: 30.0480921	total: 174ms	remaining: 338ms
34:	learn: 29.8623884	total: 179ms	remaining: 332ms
35:	learn: 29.5991038	total: 183ms	remaining: 326ms
36:	learn: 29.4061161	total: 188ms	remaining: 319ms
37:	learn: 29.0269515	total: 192ms	remaining: 313ms
38:	learn: 28.8224959	total: 196ms	remaining: 307ms
39:	learn: 28.6417843	total: 200ms	remaining: 301ms
40:	learn: 28.3633368	total: 205ms	remaining: 295ms
41:	learn: 28.0200246	total: 209ms	remaining: 289ms
42:	learn: 27.7221254	total: 213ms	remaining: 283ms
43:	learn: 27.5105818	total: 218ms	remaining: 277ms
44:	learn: 27.3551010	total: 222ms	remaining: 271ms
45:	learn: 27.0787522	total: 227ms	remaining: 266ms
46:	learn: 26.8726317	total: 232ms	remaining: 261ms
47:	learn: 26.8003277	total: 237ms	remaining: 256ms
48:	learn: 26.5493785	total: 241ms	remaining: 251ms
49:	learn: 26.3699550	total: 246ms	remaining: 246ms
50:	learn: 26.1519631	total: 251ms	remaining: 241ms
51:	learn: 25.9277325	total: 258ms	remaining: 238ms
52:	learn: 25.7286035	total: 265ms	remaining: 235ms
53:	learn: 25.4999193	total: 276ms	remaining: 235ms
54:	learn: 25.3434703	total: 282ms	remaining: 231ms
55:	learn: 25.1497545	total: 289ms	remaining: 227ms
56:	learn: 24.9498143	total: 294ms	remaining: 222ms
57:	learn: 24.6509390	total: 300ms	remaining: 217ms
58:	learn: 24.5576144	total: 305ms	remaining: 212ms
59:	learn: 24.4265144	total: 310ms	remaining: 207ms
60:	learn: 24.3100706	total: 316ms	remaining: 202ms
61:	learn: 24.1727952	total: 321ms	remaining: 197ms
62:	learn: 24.0478558	total: 326ms	remaining: 192ms
63:	learn: 23.9124577	total: 331ms	remaining: 186ms
64:	learn: 23.7703718	total: 336ms	remaining: 181ms
65:	learn: 23.5975027	total: 341ms	remaining: 176ms
66:	learn: 23.4318077	total: 347ms	remaining: 171ms
67:	learn: 23.3099691	total: 353ms	remaining: 166ms
68:	learn: 23.1947982	total: 357ms	remaining: 161ms
69:	learn: 23.0260174	total: 362ms	remaining: 155ms
70:	learn: 22.8523100	total: 367ms	remaining: 150ms
71:	learn: 22.8028534	total: 371ms	remaining: 144ms
72:	learn: 22.6880658	total: 376ms	remaining: 139ms
73:	learn: 22.5956809	total: 380ms	remaining: 134ms
74:	learn: 22.4692932	total: 385ms	remaining: 128ms
75:	learn: 22.2863504	total: 390ms	remaining: 123ms
76:	learn: 22.1911237	total: 394ms	remaining: 118ms
77:	learn: 22.1098391	total: 398ms	remaining: 112ms
78:	learn: 22.0182738	total: 402ms	remaining: 107ms
79:	learn: 21.9306746	total: 406ms	remaining: 101ms
80:	learn: 21.7508233	total: 411ms	remaining: 96.3ms
81:	learn: 21.7108446	total: 415ms	remaining: 91.2ms
82:	learn: 21.5931852	total: 420ms	remaining: 86ms
83:	learn: 21.4480361	total: 425ms	remaining: 80.9ms
84:	learn: 21.3092119	total: 429ms	remaining: 75.8ms
85:	learn: 21.2605557	total: 436ms	remaining: 70.9ms
86:	learn: 21.1123597	total: 443ms	remaining: 66.2ms
87:	learn: 21.0115642	total: 450ms	remaining: 61.3ms
88:	learn: 20.9389040	total: 455ms	remaining: 56.3ms
89:	learn: 20.8300300	total: 460ms	remaining: 51.1ms
90:	learn: 20.7159733	total: 466ms	remaining: 46ms
91:	learn: 20.6282090	total: 472ms	remaining: 41.1ms
92:	learn: 20.5164529	total: 477ms	remaining: 35.9ms
93:	learn: 20.4692032	total: 481ms	remaining: 30.7ms
94:	learn: 20.3768451	total: 486ms	remaining: 25.6ms
95:	learn: 20.2808056	total: 490ms	remaining: 20.4ms
96:	learn: 20.2082089	total: 494ms	remaining: 15.3ms
97:	learn: 20.1698768	total: 498ms	remaining: 10.2ms
98:	learn: 20.1048816	total: 502ms	remaining: 5.07ms
99:	learn: 20.0086159	total: 507ms	remaining: 0us
0:	learn: 27.3351083	total: 23.1ms	remaining: 2.29s
1:	learn: 26.7523848	total: 47.2ms	remaining: 2.31s
2:	learn: 26.1326580	total: 70.6ms	remaining: 2.28s
3:	learn: 25.5584244	total: 94.6ms	remaining: 2.27s
4:	learn: 25.0458748	total: 126ms	remaining: 2.4s
5:	learn: 24.4868837	total: 154ms	remaining: 2.41s
6:	learn: 23.9306999	total: 178ms	remaining: 2.37s
7:	learn: 23.4799808	total: 202ms	remaining: 2.32s
8:	learn: 22.9510347	total: 228ms	remaining: 2.3s
9:	learn: 22.4529079	total: 251ms	remaining: 2.26s
10:	learn: 21.9320739	total: 274ms	remaining: 2.22s
11:	learn: 21.4729295	total: 298ms	remaining: 2.19s
12:	learn: 21.0885550	total: 322ms	remaining: 2.16s
13:	learn: 20.7063206	total: 355ms	remaining: 2.18s
14:	learn: 20.3539530	total: 380ms	remaining: 2.15s
15:	learn: 20.0071947	total: 404ms	remaining: 2.12s
16:	learn: 19.6579830	total: 427ms	remaining: 2.08s
17:	learn: 19.2450502	total: 451ms	remaining: 2.05s
18:	learn: 18.8010420	total: 476ms	remaining: 2.03s
19:	learn: 18.4055273	total: 502ms	remaining: 2.01s
20:	learn: 18.0395642	total: 528ms	remaining: 1.98s
21:	learn: 17.6568400	total: 562ms	remaining: 1.99s
22:	learn: 17.4284559	total: 588ms	remaining: 1.97s
23:	learn: 17.0957528	total: 613ms	remaining: 1.94s
24:	learn: 16.7636157	total: 640ms	remaining: 1.92s
25:	learn: 16.4987969	total: 666ms	remaining: 1.9s
26:	learn: 16.2204177	total: 692ms	remaining: 1.87s
27:	learn: 15.9525124	total: 716ms	remaining: 1.84s
28:	learn: 15.5905943	total: 742ms	remaining: 1.81s
29:	learn: 15.3628633	total: 773ms	remaining: 1.8s
30:	learn: 15.1420693	total: 798ms	remaining: 1.77s
31:	learn: 14.9419461	total: 824ms	remaining: 1.75s
32:	learn: 14.7386592	total: 848ms	remaining: 1.72s
33:	learn: 14.5398023	total: 874ms	remaining: 1.7s
34:	learn: 14.2644206	total: 900ms	remaining: 1.67s
35:	learn: 14.0168503	total: 927ms	remaining: 1.65s
36:	learn: 13.7687637	total: 955ms	remaining: 1.63s
37:	learn: 13.5855913	total: 990ms	remaining: 1.61s
38:	learn: 13.3656902	total: 1.01s	remaining: 1.59s
39:	learn: 13.2111716	total: 1.04s	remaining: 1.56s
40:	learn: 13.0360149	total: 1.06s	remaining: 1.53s
41:	learn: 12.8789444	total: 1.09s	remaining: 1.51s
42:	learn: 12.6680179	total: 1.12s	remaining: 1.48s
43:	learn: 12.4892268	total: 1.14s	remaining: 1.46s
44:	learn: 12.3275828	total: 1.18s	remaining: 1.44s
45:	learn: 12.2035682	total: 1.2s	remaining: 1.41s
46:	learn: 12.0777397	total: 1.23s	remaining: 1.38s
47:	learn: 11.9055552	total: 1.25s	remaining: 1.35s
48:	learn: 11.7465481	total: 1.27s	remaining: 1.33s
49:	learn: 11.5961200	total: 1.3s	remaining: 1.3s
50:	learn: 11.4305519	total: 1.32s	remaining: 1.27s
51:	learn: 11.2794033	total: 1.34s	remaining: 1.24s
52:	learn: 11.1586950	total: 1.37s	remaining: 1.21s
53:	learn: 11.0432937	total: 1.4s	remaining: 1.2s
54:	learn: 10.9094838	total: 1.43s	remaining: 1.17s
55:	learn: 10.7713451	total: 1.46s	remaining: 1.14s
56:	learn: 10.6664177	total: 1.48s	remaining: 1.12s
57:	learn: 10.5600117	total: 1.5s	remaining: 1.09s
58:	learn: 10.4438974	total: 1.53s	remaining: 1.06s
59:	learn: 10.3294224	total: 1.55s	remaining: 1.03s
60:	learn: 10.2510301	total: 1.58s	remaining: 1.01s
61:	learn: 10.1363264	total: 1.6s	remaining: 981ms
62:	learn: 10.0415049	total: 1.63s	remaining: 958ms
63:	learn: 9.9499833	total: 1.66s	remaining: 931ms
64:	learn: 9.8774263	total: 1.68s	remaining: 904ms
65:	learn: 9.7458853	total: 1.7s	remaining: 877ms
66:	learn: 9.6733951	total: 1.73s	remaining: 850ms
67:	learn: 9.5861856	total: 1.75s	remaining: 824ms
68:	learn: 9.4524193	total: 1.77s	remaining: 797ms
69:	learn: 9.3501165	total: 1.81s	remaining: 774ms
70:	learn: 9.3092902	total: 1.83s	remaining: 749ms
71:	learn: 9.2244222	total: 1.86s	remaining: 723ms
72:	learn: 9.1554253	total: 1.88s	remaining: 696ms
73:	learn: 9.1098892	total: 1.91s	remaining: 670ms
74:	learn: 9.0210213	total: 1.93s	remaining: 644ms
75:	learn: 8.9303181	total: 1.96s	remaining: 618ms
76:	learn: 8.8489769	total: 1.98s	remaining: 592ms
77:	learn: 8.7651580	total: 2.01s	remaining: 566ms
78:	learn: 8.7126796	total: 2.03s	remaining: 540ms
79:	learn: 8.6404554	total: 2.06s	remaining: 516ms
80:	learn: 8.5844756	total: 2.09s	remaining: 490ms
81:	learn: 8.5234333	total: 2.11s	remaining: 464ms
82:	learn: 8.4298762	total: 2.14s	remaining: 438ms
83:	learn: 8.3483002	total: 2.16s	remaining: 412ms
84:	learn: 8.2670647	total: 2.19s	remaining: 386ms
85:	learn: 8.1917398	total: 2.21s	remaining: 360ms
86:	learn: 8.1073642	total: 2.23s	remaining: 334ms
87:	learn: 8.0633288	total: 2.26s	remaining: 308ms
88:	learn: 8.0107997	total: 2.29s	remaining: 283ms
89:	learn: 7.9563547	total: 2.32s	remaining: 258ms
90:	learn: 7.8811408	total: 2.34s	remaining: 232ms
91:	learn: 7.8096107	total: 2.37s	remaining: 206ms
92:	learn: 7.7481700	total: 2.39s	remaining: 180ms
93:	learn: 7.6847843	total: 2.42s	remaining: 154ms
94:	learn: 7.6252335	total: 2.44s	remaining: 129ms
95:	learn: 7.5593148	total: 2.47s	remaining: 103ms
96:	learn: 7.5042331	total: 2.49s	remaining: 77ms
97:	learn: 7.4553707	total: 2.52s	remaining: 51.5ms
98:	learn: 7.4035691	total: 2.54s	remaining: 25.7ms
99:	learn: 7.3457537	total: 2.57s	remaining: 0us
0:	learn: 42.5901652	total: 23.4ms	remaining: 2.32s
1:	learn: 41.2917733	total: 48.6ms	remaining: 2.38s
2:	learn: 40.0285549	total: 74.9ms	remaining: 2.42s
3:	learn: 38.9051734	total: 108ms	remaining: 2.58s
4:	learn: 37.7712063	total: 136ms	remaining: 2.59s
5:	learn: 36.6826884	total: 161ms	remaining: 2.53s
6:	learn: 35.6341048	total: 187ms	remaining: 2.49s
7:	learn: 34.5035449	total: 213ms	remaining: 2.45s
8:	learn: 33.5636424	total: 239ms	remaining: 2.42s
9:	learn: 32.5970644	total: 264ms	remaining: 2.38s
10:	learn: 31.8528815	total: 290ms	remaining: 2.35s
11:	learn: 31.0330095	total: 316ms	remaining: 2.32s
12:	learn: 30.3119851	total: 353ms	remaining: 2.36s
13:	learn: 29.5212022	total: 380ms	remaining: 2.34s
14:	learn: 28.7182657	total: 406ms	remaining: 2.3s
15:	learn: 28.0433195	total: 429ms	remaining: 2.25s
16:	learn: 27.2966576	total: 454ms	remaining: 2.21s
17:	learn: 26.5122856	total: 478ms	remaining: 2.18s
18:	learn: 25.8998213	total: 504ms	remaining: 2.15s
19:	learn: 25.2416026	total: 531ms	remaining: 2.12s
20:	learn: 24.6399819	total: 567ms	remaining: 2.13s
21:	learn: 24.0372756	total: 592ms	remaining: 2.1s
22:	learn: 23.4553733	total: 618ms	remaining: 2.07s
23:	learn: 22.9027871	total: 645ms	remaining: 2.04s
24:	learn: 22.4470878	total: 670ms	remaining: 2.01s
25:	learn: 21.9143721	total: 695ms	remaining: 1.98s
26:	learn: 21.4979516	total: 722ms	remaining: 1.95s
27:	learn: 21.0867622	total: 750ms	remaining: 1.93s
28:	learn: 20.6187419	total: 778ms	remaining: 1.91s
29:	learn: 20.1662373	total: 803ms	remaining: 1.87s
30:	learn: 19.8225041	total: 828ms	remaining: 1.84s
31:	learn: 19.4539400	total: 853ms	remaining: 1.81s
32:	learn: 19.1127000	total: 878ms	remaining: 1.78s
33:	learn: 18.7767435	total: 903ms	remaining: 1.75s
34:	learn: 18.4038779	total: 928ms	remaining: 1.72s
35:	learn: 18.0021121	total: 953ms	remaining: 1.69s
36:	learn: 17.6673419	total: 987ms	remaining: 1.68s
37:	learn: 17.3562137	total: 1.01s	remaining: 1.65s
38:	learn: 17.0128082	total: 1.04s	remaining: 1.63s
39:	learn: 16.7572783	total: 1.06s	remaining: 1.6s
40:	learn: 16.4883778	total: 1.09s	remaining: 1.57s
41:	learn: 16.1756364	total: 1.12s	remaining: 1.54s
42:	learn: 15.9150506	total: 1.14s	remaining: 1.51s
43:	learn: 15.6787555	total: 1.17s	remaining: 1.49s
44:	learn: 15.3862120	total: 1.2s	remaining: 1.46s
45:	learn: 15.1512250	total: 1.23s	remaining: 1.44s
46:	learn: 14.9410960	total: 1.25s	remaining: 1.41s
47:	learn: 14.7086321	total: 1.27s	remaining: 1.38s
48:	learn: 14.5065360	total: 1.3s	remaining: 1.35s
49:	learn: 14.3007466	total: 1.32s	remaining: 1.32s
50:	learn: 14.0972724	total: 1.35s	remaining: 1.29s
51:	learn: 13.8793525	total: 1.37s	remaining: 1.27s
52:	learn: 13.6381311	total: 1.4s	remaining: 1.24s
53:	learn: 13.4603568	total: 1.44s	remaining: 1.22s
54:	learn: 13.2856920	total: 1.46s	remaining: 1.2s
55:	learn: 13.1350779	total: 1.49s	remaining: 1.17s
56:	learn: 13.0110083	total: 1.51s	remaining: 1.14s
57:	learn: 12.8405210	total: 1.54s	remaining: 1.11s
58:	learn: 12.6793938	total: 1.56s	remaining: 1.09s
59:	learn: 12.5497475	total: 1.59s	remaining: 1.06s
60:	learn: 12.4319334	total: 1.62s	remaining: 1.03s
61:	learn: 12.2780964	total: 1.65s	remaining: 1.01s
62:	learn: 12.1187174	total: 1.67s	remaining: 984ms
63:	learn: 11.9635081	total: 1.7s	remaining: 956ms
64:	learn: 11.8366366	total: 1.72s	remaining: 929ms
65:	learn: 11.6598347	total: 1.75s	remaining: 902ms
66:	learn: 11.5227416	total: 1.77s	remaining: 874ms
67:	learn: 11.4058818	total: 1.8s	remaining: 848ms
68:	learn: 11.2627892	total: 1.83s	remaining: 824ms
69:	learn: 11.1415094	total: 1.86s	remaining: 799ms
70:	learn: 11.0703329	total: 1.89s	remaining: 772ms
71:	learn: 10.9568944	total: 1.92s	remaining: 745ms
72:	learn: 10.8314078	total: 1.94s	remaining: 719ms
73:	learn: 10.7320013	total: 1.97s	remaining: 692ms
74:	learn: 10.6191666	total: 1.99s	remaining: 665ms
75:	learn: 10.5156798	total: 2.02s	remaining: 638ms
76:	learn: 10.4174442	total: 2.05s	remaining: 613ms
77:	learn: 10.3318165	total: 2.08s	remaining: 586ms
78:	learn: 10.2300435	total: 2.1s	remaining: 559ms
79:	learn: 10.1665911	total: 2.13s	remaining: 532ms
80:	learn: 10.1030585	total: 2.15s	remaining: 505ms
81:	learn: 10.0254875	total: 2.18s	remaining: 478ms
82:	learn: 9.9387640	total: 2.2s	remaining: 451ms
83:	learn: 9.8289920	total: 2.23s	remaining: 424ms
84:	learn: 9.7629500	total: 2.25s	remaining: 397ms
85:	learn: 9.6778611	total: 2.28s	remaining: 372ms
86:	learn: 9.5920617	total: 2.31s	remaining: 345ms
87:	learn: 9.4931297	total: 2.33s	remaining: 318ms
88:	learn: 9.4010604	total: 2.36s	remaining: 292ms
89:	learn: 9.3328614	total: 2.38s	remaining: 265ms
90:	learn: 9.2409094	total: 2.41s	remaining: 238ms
91:	learn: 9.1214245	total: 2.43s	remaining: 212ms
92:	learn: 9.0795335	total: 2.46s	remaining: 185ms
93:	learn: 8.9777250	total: 2.49s	remaining: 159ms
94:	learn: 8.9059891	total: 2.51s	remaining: 132ms
95:	learn: 8.8343294	total: 2.54s	remaining: 106ms
96:	learn: 8.7237295	total: 2.56s	remaining: 79.2ms
97:	learn: 8.6401509	total: 2.58s	remaining: 52.8ms
98:	learn: 8.5735108	total: 2.61s	remaining: 26.4ms
99:	learn: 8.5084579	total: 2.63s	remaining: 0us
0:	learn: 46.1633714	total: 36.1ms	remaining: 3.57s
1:	learn: 44.7904617	total: 63.2ms	remaining: 3.1s
2:	learn: 43.5292386	total: 87.4ms	remaining: 2.83s
3:	learn: 42.3776226	total: 112ms	remaining: 2.68s
4:	learn: 41.1726533	total: 137ms	remaining: 2.6s
5:	learn: 40.0256490	total: 161ms	remaining: 2.51s
6:	learn: 39.0318588	total: 185ms	remaining: 2.46s
7:	learn: 38.0361181	total: 209ms	remaining: 2.4s
8:	learn: 37.0398789	total: 234ms	remaining: 2.36s
9:	learn: 36.0525089	total: 258ms	remaining: 2.32s
10:	learn: 35.0926830	total: 291ms	remaining: 2.35s
11:	learn: 34.1467022	total: 316ms	remaining: 2.32s
12:	learn: 33.5625454	total: 340ms	remaining: 2.27s
13:	learn: 32.7993162	total: 364ms	remaining: 2.23s
14:	learn: 32.1179593	total: 388ms	remaining: 2.2s
15:	learn: 31.5382898	total: 412ms	remaining: 2.16s
16:	learn: 30.8398862	total: 436ms	remaining: 2.13s
17:	learn: 30.1060070	total: 460ms	remaining: 2.1s
18:	learn: 29.3826415	total: 492ms	remaining: 2.1s
19:	learn: 28.5809579	total: 519ms	remaining: 2.08s
20:	learn: 28.0104942	total: 544ms	remaining: 2.05s
21:	learn: 27.5189566	total: 568ms	remaining: 2.01s
22:	learn: 26.8603656	total: 593ms	remaining: 1.98s
23:	learn: 26.2547050	total: 618ms	remaining: 1.96s
24:	learn: 25.6559137	total: 642ms	remaining: 1.93s
25:	learn: 25.1148352	total: 667ms	remaining: 1.9s
26:	learn: 24.5782363	total: 692ms	remaining: 1.87s
27:	learn: 24.0350871	total: 723ms	remaining: 1.86s
28:	learn: 23.5119480	total: 749ms	remaining: 1.83s
29:	learn: 23.1119795	total: 773ms	remaining: 1.8s
30:	learn: 22.6838288	total: 797ms	remaining: 1.77s
31:	learn: 22.2554624	total: 820ms	remaining: 1.74s
32:	learn: 21.8241578	total: 845ms	remaining: 1.72s
33:	learn: 21.5062830	total: 869ms	remaining: 1.69s
34:	learn: 21.0109226	total: 894ms	remaining: 1.66s
35:	learn: 20.5518606	total: 919ms	remaining: 1.63s
36:	learn: 20.1195339	total: 952ms	remaining: 1.62s
37:	learn: 19.7143479	total: 977ms	remaining: 1.59s
38:	learn: 19.3325253	total: 1s	remaining: 1.56s
39:	learn: 19.0310706	total: 1.02s	remaining: 1.54s
40:	learn: 18.7262797	total: 1.05s	remaining: 1.51s
41:	learn: 18.3611836	total: 1.08s	remaining: 1.5s
42:	learn: 17.9960838	total: 1.11s	remaining: 1.48s
43:	learn: 17.7058991	total: 1.15s	remaining: 1.47s
44:	learn: 17.3944673	total: 1.18s	remaining: 1.44s
45:	learn: 17.1283561	total: 1.21s	remaining: 1.42s
46:	learn: 16.8406890	total: 1.23s	remaining: 1.39s
47:	learn: 16.6072061	total: 1.26s	remaining: 1.36s
48:	learn: 16.3697411	total: 1.28s	remaining: 1.34s
49:	learn: 15.9995507	total: 1.31s	remaining: 1.31s
50:	learn: 15.7372570	total: 1.35s	remaining: 1.29s
51:	learn: 15.4840152	total: 1.38s	remaining: 1.28s
52:	learn: 15.2899590	total: 1.41s	remaining: 1.25s
53:	learn: 15.0111064	total: 1.44s	remaining: 1.23s
54:	learn: 14.7504952	total: 1.47s	remaining: 1.2s
55:	learn: 14.5309762	total: 1.5s	remaining: 1.18s
56:	learn: 14.3525677	total: 1.52s	remaining: 1.15s
57:	learn: 14.1816296	total: 1.55s	remaining: 1.12s
58:	learn: 13.9958516	total: 1.59s	remaining: 1.11s
59:	learn: 13.8356735	total: 1.62s	remaining: 1.08s
60:	learn: 13.6499824	total: 1.65s	remaining: 1.05s
61:	learn: 13.4621357	total: 1.67s	remaining: 1.02s
62:	learn: 13.3234970	total: 1.7s	remaining: 998ms
63:	learn: 13.1407122	total: 1.73s	remaining: 971ms
64:	learn: 13.0161177	total: 1.75s	remaining: 944ms
65:	learn: 12.8361175	total: 1.78s	remaining: 917ms
66:	learn: 12.7103117	total: 1.82s	remaining: 895ms
67:	learn: 12.5145429	total: 1.86s	remaining: 874ms
68:	learn: 12.3966318	total: 1.89s	remaining: 847ms
69:	learn: 12.2175623	total: 1.91s	remaining: 820ms
70:	learn: 12.0455583	total: 1.94s	remaining: 792ms
71:	learn: 11.9190589	total: 1.97s	remaining: 765ms
72:	learn: 11.7990452	total: 2s	remaining: 738ms
73:	learn: 11.6735331	total: 2.03s	remaining: 713ms
74:	learn: 11.5694753	total: 2.06s	remaining: 685ms
75:	learn: 11.4471422	total: 2.09s	remaining: 661ms
76:	learn: 11.3357642	total: 2.12s	remaining: 633ms
77:	learn: 11.2160164	total: 2.15s	remaining: 606ms
78:	learn: 11.1477947	total: 2.17s	remaining: 578ms
79:	learn: 11.0733969	total: 2.2s	remaining: 550ms
80:	learn: 10.9851608	total: 2.24s	remaining: 525ms
81:	learn: 10.8669537	total: 2.26s	remaining: 497ms
82:	learn: 10.7846130	total: 2.29s	remaining: 470ms
83:	learn: 10.6429068	total: 2.33s	remaining: 444ms
84:	learn: 10.5485368	total: 2.36s	remaining: 416ms
85:	learn: 10.4626750	total: 2.38s	remaining: 388ms
86:	learn: 10.3487863	total: 2.42s	remaining: 361ms
87:	learn: 10.2608682	total: 2.45s	remaining: 334ms
88:	learn: 10.1492862	total: 2.47s	remaining: 306ms
89:	learn: 10.0825429	total: 2.5s	remaining: 278ms
90:	learn: 9.9668337	total: 2.53s	remaining: 250ms
91:	learn: 9.8924239	total: 2.56s	remaining: 223ms
92:	learn: 9.7959729	total: 2.59s	remaining: 195ms
93:	learn: 9.7342503	total: 2.61s	remaining: 167ms
94:	learn: 9.6266181	total: 2.65s	remaining: 140ms
95:	learn: 9.5607316	total: 2.68s	remaining: 112ms
96:	learn: 9.4615938	total: 2.71s	remaining: 83.8ms
97:	learn: 9.3562852	total: 2.74s	remaining: 55.9ms
98:	learn: 9.2518786	total: 2.77s	remaining: 27.9ms
99:	learn: 9.2130065	total: 2.79s	remaining: 0us
0:	learn: 45.6477780	total: 39.7ms	remaining: 3.93s
1:	learn: 44.3885048	total: 65.8ms	remaining: 3.22s
2:	learn: 43.1316502	total: 92.8ms	remaining: 3s
3:	learn: 41.8123054	total: 120ms	remaining: 2.87s
4:	learn: 40.7214533	total: 146ms	remaining: 2.78s
5:	learn: 39.6276122	total: 174ms	remaining: 2.72s
6:	learn: 38.6471225	total: 202ms	remaining: 2.68s
7:	learn: 37.7493668	total: 230ms	remaining: 2.64s
8:	learn: 36.7733816	total: 277ms	remaining: 2.8s
9:	learn: 36.1233521	total: 306ms	remaining: 2.75s
10:	learn: 35.5715091	total: 333ms	remaining: 2.69s
11:	learn: 34.6287751	total: 362ms	remaining: 2.65s
12:	learn: 33.8024988	total: 388ms	remaining: 2.59s
13:	learn: 33.0699864	total: 415ms	remaining: 2.55s
14:	learn: 32.2267139	total: 449ms	remaining: 2.54s
15:	learn: 31.4879090	total: 477ms	remaining: 2.5s
16:	learn: 30.6681130	total: 511ms	remaining: 2.5s
17:	learn: 29.9739192	total: 538ms	remaining: 2.45s
18:	learn: 29.3293065	total: 565ms	remaining: 2.41s
19:	learn: 28.5893418	total: 592ms	remaining: 2.37s
20:	learn: 28.0793862	total: 619ms	remaining: 2.33s
21:	learn: 27.5553702	total: 646ms	remaining: 2.29s
22:	learn: 27.0123732	total: 683ms	remaining: 2.29s
23:	learn: 26.3897992	total: 711ms	remaining: 2.25s
24:	learn: 25.7405079	total: 739ms	remaining: 2.22s
25:	learn: 25.2366375	total: 775ms	remaining: 2.21s
26:	learn: 24.8040727	total: 803ms	remaining: 2.17s
27:	learn: 24.3831145	total: 830ms	remaining: 2.13s
28:	learn: 23.9264258	total: 856ms	remaining: 2.1s
29:	learn: 23.4965665	total: 884ms	remaining: 2.06s
30:	learn: 23.0750907	total: 916ms	remaining: 2.04s
31:	learn: 22.6177456	total: 943ms	remaining: 2s
32:	learn: 22.1936903	total: 970ms	remaining: 1.97s
33:	learn: 21.7237373	total: 1s	remaining: 1.95s
34:	learn: 21.2885821	total: 1.03s	remaining: 1.91s
35:	learn: 20.8773820	total: 1.06s	remaining: 1.88s
36:	learn: 20.5069022	total: 1.08s	remaining: 1.85s
37:	learn: 20.1026772	total: 1.12s	remaining: 1.83s
38:	learn: 19.7278063	total: 1.15s	remaining: 1.8s
39:	learn: 19.4576176	total: 1.18s	remaining: 1.77s
40:	learn: 19.1716041	total: 1.21s	remaining: 1.74s
41:	learn: 18.8541728	total: 1.24s	remaining: 1.72s
42:	learn: 18.6411979	total: 1.27s	remaining: 1.68s
43:	learn: 18.3146636	total: 1.3s	remaining: 1.65s
44:	learn: 18.0208582	total: 1.33s	remaining: 1.63s
45:	learn: 17.7344521	total: 1.36s	remaining: 1.59s
46:	learn: 17.4797974	total: 1.39s	remaining: 1.56s
47:	learn: 17.2182299	total: 1.41s	remaining: 1.53s
48:	learn: 16.9607453	total: 1.44s	remaining: 1.5s
49:	learn: 16.7297863	total: 1.47s	remaining: 1.47s
50:	learn: 16.4913674	total: 1.5s	remaining: 1.44s
51:	learn: 16.2886548	total: 1.54s	remaining: 1.42s
52:	learn: 16.0297055	total: 1.57s	remaining: 1.39s
53:	learn: 15.8558289	total: 1.6s	remaining: 1.36s
54:	learn: 15.6256772	total: 1.62s	remaining: 1.33s
55:	learn: 15.4571057	total: 1.65s	remaining: 1.3s
56:	learn: 15.2857211	total: 1.68s	remaining: 1.27s
57:	learn: 15.0790849	total: 1.71s	remaining: 1.24s
58:	learn: 14.8706573	total: 1.75s	remaining: 1.21s
59:	learn: 14.7142314	total: 1.78s	remaining: 1.19s
60:	learn: 14.5574075	total: 1.8s	remaining: 1.15s
61:	learn: 14.3831719	total: 1.83s	remaining: 1.12s
62:	learn: 14.2429846	total: 1.86s	remaining: 1.09s
63:	learn: 14.0982260	total: 1.89s	remaining: 1.06s
64:	learn: 13.9793470	total: 1.91s	remaining: 1.03s
65:	learn: 13.7843655	total: 1.94s	remaining: 1000ms
66:	learn: 13.6382336	total: 1.99s	remaining: 979ms
67:	learn: 13.5395713	total: 2.02s	remaining: 949ms
68:	learn: 13.3797741	total: 2.04s	remaining: 919ms
69:	learn: 13.2910103	total: 2.07s	remaining: 888ms
70:	learn: 13.1587887	total: 2.1s	remaining: 858ms
71:	learn: 13.0464642	total: 2.13s	remaining: 827ms
72:	learn: 12.9189091	total: 2.15s	remaining: 797ms
73:	learn: 12.8056893	total: 2.18s	remaining: 767ms
74:	learn: 12.6904403	total: 2.22s	remaining: 739ms
75:	learn: 12.5608506	total: 2.25s	remaining: 712ms
76:	learn: 12.4712551	total: 2.28s	remaining: 681ms
77:	learn: 12.3371889	total: 2.31s	remaining: 650ms
78:	learn: 12.2449022	total: 2.33s	remaining: 620ms
79:	learn: 12.2163788	total: 2.36s	remaining: 589ms
80:	learn: 12.1464820	total: 2.38s	remaining: 559ms
81:	learn: 12.0001066	total: 2.42s	remaining: 531ms
82:	learn: 11.8843691	total: 2.45s	remaining: 502ms
83:	learn: 11.7638631	total: 2.48s	remaining: 473ms
84:	learn: 11.6389646	total: 2.51s	remaining: 443ms
85:	learn: 11.5343065	total: 2.54s	remaining: 413ms
86:	learn: 11.4267531	total: 2.56s	remaining: 383ms
87:	learn: 11.3136728	total: 2.59s	remaining: 354ms
88:	learn: 11.2361574	total: 2.62s	remaining: 324ms
89:	learn: 11.1507886	total: 2.65s	remaining: 295ms
90:	learn: 11.0988952	total: 2.68s	remaining: 265ms
91:	learn: 10.9988426	total: 2.71s	remaining: 235ms
92:	learn: 10.9584792	total: 2.74s	remaining: 206ms
93:	learn: 10.8771461	total: 2.77s	remaining: 177ms
94:	learn: 10.8161358	total: 2.79s	remaining: 147ms
95:	learn: 10.7524450	total: 2.82s	remaining: 118ms
96:	learn: 10.6566836	total: 2.86s	remaining: 88.5ms
97:	learn: 10.5550602	total: 2.89s	remaining: 59ms
98:	learn: 10.4790583	total: 2.92s	remaining: 29.5ms
99:	learn: 10.4087354	total: 2.94s	remaining: 0us
0:	learn: 46.5398832	total: 35ms	remaining: 3.46s
1:	learn: 45.3142618	total: 62.8ms	remaining: 3.07s
2:	learn: 44.0378137	total: 93.9ms	remaining: 3.04s
3:	learn: 42.7976734	total: 122ms	remaining: 2.92s
4:	learn: 41.7080859	total: 148ms	remaining: 2.82s
5:	learn: 40.4513327	total: 175ms	remaining: 2.74s
6:	learn: 39.4903346	total: 202ms	remaining: 2.68s
7:	learn: 38.3767870	total: 227ms	remaining: 2.62s
8:	learn: 37.4056810	total: 262ms	remaining: 2.65s
9:	learn: 36.4947716	total: 296ms	remaining: 2.66s
10:	learn: 35.4421832	total: 325ms	remaining: 2.63s
11:	learn: 34.6183487	total: 339ms	remaining: 2.49s
12:	learn: 33.9603524	total: 367ms	remaining: 2.46s
13:	learn: 33.0635534	total: 393ms	remaining: 2.42s
14:	learn: 32.2067999	total: 420ms	remaining: 2.38s
15:	learn: 31.3961282	total: 447ms	remaining: 2.35s
16:	learn: 30.7113239	total: 473ms	remaining: 2.31s
17:	learn: 29.9919005	total: 507ms	remaining: 2.31s
18:	learn: 29.4016891	total: 535ms	remaining: 2.28s
19:	learn: 28.7435066	total: 567ms	remaining: 2.27s
20:	learn: 28.2283605	total: 594ms	remaining: 2.23s
21:	learn: 27.6749781	total: 620ms	remaining: 2.2s
22:	learn: 27.1695356	total: 647ms	remaining: 2.16s
23:	learn: 26.6842901	total: 673ms	remaining: 2.13s
24:	learn: 26.0987344	total: 699ms	remaining: 2.1s
25:	learn: 25.5266873	total: 725ms	remaining: 2.06s
26:	learn: 25.0200431	total: 763ms	remaining: 2.06s
27:	learn: 24.5972016	total: 800ms	remaining: 2.06s
28:	learn: 24.1557061	total: 828ms	remaining: 2.03s
29:	learn: 23.7405036	total: 856ms	remaining: 2s
30:	learn: 23.3574513	total: 884ms	remaining: 1.97s
31:	learn: 23.0493499	total: 913ms	remaining: 1.94s
32:	learn: 22.6480655	total: 939ms	remaining: 1.91s
33:	learn: 22.2777353	total: 967ms	remaining: 1.88s
34:	learn: 21.8294628	total: 1.01s	remaining: 1.87s
35:	learn: 21.4783115	total: 1.03s	remaining: 1.84s
36:	learn: 21.1271427	total: 1.06s	remaining: 1.81s
37:	learn: 20.7967443	total: 1.09s	remaining: 1.77s
38:	learn: 20.4949793	total: 1.11s	remaining: 1.74s
39:	learn: 20.1991695	total: 1.14s	remaining: 1.71s
40:	learn: 19.8869467	total: 1.16s	remaining: 1.68s
41:	learn: 19.5656862	total: 1.19s	remaining: 1.65s
42:	learn: 19.2415335	total: 1.24s	remaining: 1.64s
43:	learn: 18.9725471	total: 1.27s	remaining: 1.61s
44:	learn: 18.7035722	total: 1.29s	remaining: 1.58s
45:	learn: 18.3840395	total: 1.32s	remaining: 1.55s
46:	learn: 18.1486662	total: 1.35s	remaining: 1.52s
47:	learn: 17.8740440	total: 1.38s	remaining: 1.49s
48:	learn: 17.6056273	total: 1.41s	remaining: 1.46s
49:	learn: 17.4011083	total: 1.43s	remaining: 1.43s
50:	learn: 17.1935449	total: 1.47s	remaining: 1.41s
51:	learn: 16.9415227	total: 1.5s	remaining: 1.39s
52:	learn: 16.6568624	total: 1.53s	remaining: 1.35s
53:	learn: 16.4254479	total: 1.55s	remaining: 1.32s
54:	learn: 16.1958120	total: 1.58s	remaining: 1.29s
55:	learn: 15.9494332	total: 1.6s	remaining: 1.26s
56:	learn: 15.7736632	total: 1.63s	remaining: 1.23s
57:	learn: 15.6314122	total: 1.67s	remaining: 1.21s
58:	learn: 15.3707626	total: 1.7s	remaining: 1.18s
59:	learn: 15.2211664	total: 1.73s	remaining: 1.16s
60:	learn: 14.9939278	total: 1.76s	remaining: 1.13s
61:	learn: 14.8327626	total: 1.79s	remaining: 1.1s
62:	learn: 14.6555776	total: 1.82s	remaining: 1.07s
63:	learn: 14.5516961	total: 1.84s	remaining: 1.04s
64:	learn: 14.3660780	total: 1.88s	remaining: 1.01s
65:	learn: 14.1721909	total: 1.9s	remaining: 980ms
66:	learn: 14.0877696	total: 1.93s	remaining: 950ms
67:	learn: 13.9435793	total: 1.96s	remaining: 924ms
68:	learn: 13.7745805	total: 1.99s	remaining: 894ms
69:	learn: 13.6490858	total: 2.02s	remaining: 864ms
70:	learn: 13.5022080	total: 2.04s	remaining: 835ms
71:	learn: 13.3922163	total: 2.08s	remaining: 810ms
72:	learn: 13.2842701	total: 2.11s	remaining: 781ms
73:	learn: 13.1698693	total: 2.14s	remaining: 751ms
74:	learn: 13.0256610	total: 2.17s	remaining: 722ms
75:	learn: 12.8855147	total: 2.19s	remaining: 693ms
76:	learn: 12.7807971	total: 2.23s	remaining: 665ms
77:	learn: 12.6618407	total: 2.25s	remaining: 636ms
78:	learn: 12.5369866	total: 2.29s	remaining: 609ms
79:	learn: 12.4376925	total: 2.32s	remaining: 580ms
80:	learn: 12.3005012	total: 2.35s	remaining: 550ms
81:	learn: 12.1751315	total: 2.37s	remaining: 521ms
82:	learn: 12.0612289	total: 2.4s	remaining: 491ms
83:	learn: 11.9757193	total: 2.42s	remaining: 462ms
84:	learn: 11.8530411	total: 2.46s	remaining: 434ms
85:	learn: 11.7523616	total: 2.49s	remaining: 405ms
86:	learn: 11.6645272	total: 2.52s	remaining: 377ms
87:	learn: 11.5645111	total: 2.55s	remaining: 348ms
88:	learn: 11.4692480	total: 2.58s	remaining: 319ms
89:	learn: 11.3724902	total: 2.61s	remaining: 290ms
90:	learn: 11.2842147	total: 2.63s	remaining: 261ms
91:	learn: 11.1868295	total: 2.66s	remaining: 231ms
92:	learn: 11.0293625	total: 2.69s	remaining: 202ms
93:	learn: 10.9495625	total: 2.72s	remaining: 174ms
94:	learn: 10.8608168	total: 2.76s	remaining: 145ms
95:	learn: 10.7804780	total: 2.79s	remaining: 116ms
96:	learn: 10.6503623	total: 2.81s	remaining: 87.1ms
97:	learn: 10.5906748	total: 2.84s	remaining: 58ms
98:	learn: 10.4539468	total: 2.87s	remaining: 29ms
99:	learn: 10.3804160	total: 2.9s	remaining: 0us
0:	learn: 27.3351083	total: 35.8ms	remaining: 3.55s
1:	learn: 26.7523848	total: 70.7ms	remaining: 3.46s
2:	learn: 26.1326580	total: 97.4ms	remaining: 3.15s
3:	learn: 25.5584244	total: 125ms	remaining: 3.01s
4:	learn: 25.0458748	total: 152ms	remaining: 2.88s
5:	learn: 24.4868837	total: 178ms	remaining: 2.79s
6:	learn: 23.9306999	total: 204ms	remaining: 2.71s
7:	learn: 23.4799808	total: 233ms	remaining: 2.67s
8:	learn: 22.9510347	total: 266ms	remaining: 2.69s
9:	learn: 22.4529079	total: 301ms	remaining: 2.71s
10:	learn: 21.9320739	total: 328ms	remaining: 2.65s
11:	learn: 21.4729295	total: 354ms	remaining: 2.6s
12:	learn: 21.0885550	total: 382ms	remaining: 2.55s
13:	learn: 20.7063206	total: 409ms	remaining: 2.51s
14:	learn: 20.3539530	total: 436ms	remaining: 2.47s
15:	learn: 20.0071947	total: 474ms	remaining: 2.49s
16:	learn: 19.6579830	total: 503ms	remaining: 2.46s
17:	learn: 19.2450502	total: 540ms	remaining: 2.46s
18:	learn: 18.8010420	total: 567ms	remaining: 2.42s
19:	learn: 18.4055273	total: 594ms	remaining: 2.38s
20:	learn: 18.0395642	total: 620ms	remaining: 2.33s
21:	learn: 17.6568400	total: 647ms	remaining: 2.29s
22:	learn: 17.4284559	total: 675ms	remaining: 2.26s
23:	learn: 17.0957528	total: 707ms	remaining: 2.24s
24:	learn: 16.7636157	total: 734ms	remaining: 2.2s
25:	learn: 16.4987969	total: 759ms	remaining: 2.16s
26:	learn: 16.2204177	total: 792ms	remaining: 2.14s
27:	learn: 15.9525124	total: 818ms	remaining: 2.1s
28:	learn: 15.5905943	total: 844ms	remaining: 2.07s
29:	learn: 15.3628633	total: 871ms	remaining: 2.03s
30:	learn: 15.1420693	total: 908ms	remaining: 2.02s
31:	learn: 14.9419461	total: 939ms	remaining: 2s
32:	learn: 14.7386592	total: 966ms	remaining: 1.96s
33:	learn: 14.5398023	total: 994ms	remaining: 1.93s
34:	learn: 14.2644206	total: 1.03s	remaining: 1.91s
35:	learn: 14.0168503	total: 1.06s	remaining: 1.88s
36:	learn: 13.7687637	total: 1.08s	remaining: 1.85s
37:	learn: 13.5855913	total: 1.12s	remaining: 1.82s
38:	learn: 13.3656902	total: 1.15s	remaining: 1.79s
39:	learn: 13.2111716	total: 1.17s	remaining: 1.76s
40:	learn: 13.0360149	total: 1.2s	remaining: 1.73s
41:	learn: 12.8789444	total: 1.23s	remaining: 1.7s
42:	learn: 12.6680179	total: 1.26s	remaining: 1.67s
43:	learn: 12.4892268	total: 1.29s	remaining: 1.64s
44:	learn: 12.3275828	total: 1.32s	remaining: 1.62s
45:	learn: 12.2035682	total: 1.35s	remaining: 1.59s
46:	learn: 12.0777397	total: 1.38s	remaining: 1.55s
47:	learn: 11.9055552	total: 1.41s	remaining: 1.52s
48:	learn: 11.7465481	total: 1.43s	remaining: 1.49s
49:	learn: 11.5961200	total: 1.46s	remaining: 1.46s
50:	learn: 11.4305519	total: 1.5s	remaining: 1.44s
51:	learn: 11.2794033	total: 1.53s	remaining: 1.41s
52:	learn: 11.1586950	total: 1.56s	remaining: 1.38s
53:	learn: 11.0432937	total: 1.59s	remaining: 1.35s
54:	learn: 10.9094838	total: 1.61s	remaining: 1.32s
55:	learn: 10.7713451	total: 1.64s	remaining: 1.29s
56:	learn: 10.6664177	total: 1.67s	remaining: 1.26s
57:	learn: 10.5600117	total: 1.69s	remaining: 1.23s
58:	learn: 10.4438974	total: 1.72s	remaining: 1.2s
59:	learn: 10.3294224	total: 1.76s	remaining: 1.17s
60:	learn: 10.2510301	total: 1.79s	remaining: 1.15s
61:	learn: 10.1363264	total: 1.82s	remaining: 1.12s
62:	learn: 10.0415049	total: 1.85s	remaining: 1.09s
63:	learn: 9.9499833	total: 1.88s	remaining: 1.06s
64:	learn: 9.8774263	total: 1.91s	remaining: 1.03s
65:	learn: 9.7458853	total: 1.94s	remaining: 997ms
66:	learn: 9.6733951	total: 1.96s	remaining: 967ms
67:	learn: 9.5861856	total: 2s	remaining: 942ms
68:	learn: 9.4524193	total: 2.03s	remaining: 913ms
69:	learn: 9.3501165	total: 2.06s	remaining: 883ms
70:	learn: 9.3092902	total: 2.08s	remaining: 852ms
71:	learn: 9.2244222	total: 2.11s	remaining: 821ms
72:	learn: 9.1554253	total: 2.14s	remaining: 791ms
73:	learn: 9.1098892	total: 2.16s	remaining: 760ms
74:	learn: 9.0210213	total: 2.19s	remaining: 731ms
75:	learn: 8.9303181	total: 2.23s	remaining: 706ms
76:	learn: 8.8489769	total: 2.26s	remaining: 676ms
77:	learn: 8.7651580	total: 2.29s	remaining: 646ms
78:	learn: 8.7126796	total: 2.32s	remaining: 616ms
79:	learn: 8.6404554	total: 2.35s	remaining: 586ms
80:	learn: 8.5844756	total: 2.37s	remaining: 557ms
81:	learn: 8.5234333	total: 2.4s	remaining: 527ms
82:	learn: 8.4298762	total: 2.43s	remaining: 498ms
83:	learn: 8.3483002	total: 2.47s	remaining: 470ms
84:	learn: 8.2670647	total: 2.5s	remaining: 440ms
85:	learn: 8.1917398	total: 2.52s	remaining: 411ms
86:	learn: 8.1073642	total: 2.55s	remaining: 381ms
87:	learn: 8.0633288	total: 2.58s	remaining: 351ms
88:	learn: 8.0107997	total: 2.6s	remaining: 322ms
89:	learn: 7.9563547	total: 2.64s	remaining: 294ms
90:	learn: 7.8811408	total: 2.67s	remaining: 264ms
91:	learn: 7.8096107	total: 2.7s	remaining: 235ms
92:	learn: 7.7481700	total: 2.73s	remaining: 206ms
93:	learn: 7.6847843	total: 2.76s	remaining: 176ms
94:	learn: 7.6252335	total: 2.79s	remaining: 147ms
95:	learn: 7.5593148	total: 2.82s	remaining: 117ms
96:	learn: 7.5042331	total: 2.84s	remaining: 88ms
97:	learn: 7.4553707	total: 2.88s	remaining: 58.7ms
98:	learn: 7.4035691	total: 2.91s	remaining: 29.4ms
99:	learn: 7.3457537	total: 2.93s	remaining: 0us
0:	learn: 42.5901652	total: 35.1ms	remaining: 3.47s
1:	learn: 41.2917733	total: 63.6ms	remaining: 3.12s
2:	learn: 40.0285549	total: 99.3ms	remaining: 3.21s
3:	learn: 38.9051734	total: 127ms	remaining: 3.04s
4:	learn: 37.7712063	total: 154ms	remaining: 2.92s
5:	learn: 36.6826884	total: 180ms	remaining: 2.82s
6:	learn: 35.6341048	total: 208ms	remaining: 2.77s
7:	learn: 34.5035449	total: 235ms	remaining: 2.71s
8:	learn: 33.5636424	total: 270ms	remaining: 2.73s
9:	learn: 32.5970644	total: 304ms	remaining: 2.74s
10:	learn: 31.8528815	total: 333ms	remaining: 2.7s
11:	learn: 31.0330095	total: 360ms	remaining: 2.64s
12:	learn: 30.3119851	total: 386ms	remaining: 2.58s
13:	learn: 29.5212022	total: 413ms	remaining: 2.53s
14:	learn: 28.7182657	total: 439ms	remaining: 2.49s
15:	learn: 28.0433195	total: 466ms	remaining: 2.45s
16:	learn: 27.2966576	total: 501ms	remaining: 2.44s
17:	learn: 26.5122856	total: 530ms	remaining: 2.41s
18:	learn: 25.8998213	total: 568ms	remaining: 2.42s
19:	learn: 25.2416026	total: 596ms	remaining: 2.38s
20:	learn: 24.6399819	total: 624ms	remaining: 2.35s
21:	learn: 24.0372756	total: 651ms	remaining: 2.31s
22:	learn: 23.4553733	total: 679ms	remaining: 2.27s
23:	learn: 22.9027871	total: 706ms	remaining: 2.23s
24:	learn: 22.4470878	total: 733ms	remaining: 2.2s
25:	learn: 21.9143721	total: 768ms	remaining: 2.19s
26:	learn: 21.4979516	total: 801ms	remaining: 2.16s
27:	learn: 21.0867622	total: 828ms	remaining: 2.13s
28:	learn: 20.6187419	total: 855ms	remaining: 2.09s
29:	learn: 20.1662373	total: 882ms	remaining: 2.06s
30:	learn: 19.8225041	total: 909ms	remaining: 2.02s
31:	learn: 19.4539400	total: 936ms	remaining: 1.99s
32:	learn: 19.1127000	total: 963ms	remaining: 1.95s
33:	learn: 18.7767435	total: 1s	remaining: 1.94s
34:	learn: 18.4038779	total: 1.04s	remaining: 1.93s
35:	learn: 18.0021121	total: 1.07s	remaining: 1.9s
36:	learn: 17.6673419	total: 1.09s	remaining: 1.86s
37:	learn: 17.3562137	total: 1.12s	remaining: 1.83s
38:	learn: 17.0128082	total: 1.15s	remaining: 1.8s
39:	learn: 16.7572783	total: 1.18s	remaining: 1.76s
40:	learn: 16.4883778	total: 1.2s	remaining: 1.73s
41:	learn: 16.1756364	total: 1.24s	remaining: 1.72s
42:	learn: 15.9150506	total: 1.27s	remaining: 1.68s
43:	learn: 15.6787555	total: 1.3s	remaining: 1.65s
44:	learn: 15.3862120	total: 1.32s	remaining: 1.62s
45:	learn: 15.1512250	total: 1.35s	remaining: 1.58s
46:	learn: 14.9410960	total: 1.38s	remaining: 1.55s
47:	learn: 14.7086321	total: 1.4s	remaining: 1.52s
48:	learn: 14.5065360	total: 1.43s	remaining: 1.49s
49:	learn: 14.3007466	total: 1.48s	remaining: 1.48s
50:	learn: 14.0972724	total: 1.51s	remaining: 1.45s
51:	learn: 13.8793525	total: 1.54s	remaining: 1.42s
52:	learn: 13.6381311	total: 1.56s	remaining: 1.39s
53:	learn: 13.4603568	total: 1.59s	remaining: 1.36s
54:	learn: 13.2856920	total: 1.62s	remaining: 1.32s
55:	learn: 13.1350779	total: 1.65s	remaining: 1.29s
56:	learn: 13.0110083	total: 1.68s	remaining: 1.26s
57:	learn: 12.8405210	total: 1.71s	remaining: 1.24s
58:	learn: 12.6793938	total: 1.74s	remaining: 1.21s
59:	learn: 12.5497475	total: 1.77s	remaining: 1.18s
60:	learn: 12.4319334	total: 1.8s	remaining: 1.15s
61:	learn: 12.2780964	total: 1.82s	remaining: 1.12s
62:	learn: 12.1187174	total: 1.85s	remaining: 1.09s
63:	learn: 11.9635081	total: 1.88s	remaining: 1.06s
64:	learn: 11.8366366	total: 1.92s	remaining: 1.03s
65:	learn: 11.6598347	total: 1.95s	remaining: 1s
66:	learn: 11.5227416	total: 1.98s	remaining: 976ms
67:	learn: 11.4058818	total: 2.01s	remaining: 945ms
68:	learn: 11.2627892	total: 2.04s	remaining: 915ms
69:	learn: 11.1415094	total: 2.06s	remaining: 884ms
70:	learn: 11.0703329	total: 2.09s	remaining: 854ms
71:	learn: 10.9568944	total: 2.12s	remaining: 824ms
72:	learn: 10.8314078	total: 2.15s	remaining: 796ms
73:	learn: 10.7320013	total: 2.18s	remaining: 765ms
74:	learn: 10.6191666	total: 2.21s	remaining: 737ms
75:	learn: 10.5156798	total: 2.24s	remaining: 706ms
76:	learn: 10.4174442	total: 2.26s	remaining: 676ms
77:	learn: 10.3318165	total: 2.29s	remaining: 646ms
78:	learn: 10.2300435	total: 2.32s	remaining: 616ms
79:	learn: 10.1665911	total: 2.35s	remaining: 587ms
80:	learn: 10.1030585	total: 2.38s	remaining: 558ms
81:	learn: 10.0254875	total: 2.41s	remaining: 529ms
82:	learn: 9.9387640	total: 2.44s	remaining: 501ms
83:	learn: 9.8289920	total: 2.47s	remaining: 471ms
84:	learn: 9.7629500	total: 2.5s	remaining: 441ms
85:	learn: 9.6778611	total: 2.53s	remaining: 411ms
86:	learn: 9.5920617	total: 2.55s	remaining: 382ms
87:	learn: 9.4931297	total: 2.58s	remaining: 352ms
88:	learn: 9.4010604	total: 2.62s	remaining: 324ms
89:	learn: 9.3328614	total: 2.64s	remaining: 294ms
90:	learn: 9.2409094	total: 2.67s	remaining: 264ms
91:	learn: 9.1214245	total: 2.71s	remaining: 235ms
92:	learn: 9.0795335	total: 2.73s	remaining: 206ms
93:	learn: 8.9777250	total: 2.76s	remaining: 176ms
94:	learn: 8.9059891	total: 2.79s	remaining: 147ms
95:	learn: 8.8343294	total: 2.83s	remaining: 118ms
96:	learn: 8.7237295	total: 2.86s	remaining: 88.4ms
97:	learn: 8.6401509	total: 2.88s	remaining: 58.9ms
98:	learn: 8.5735108	total: 2.91s	remaining: 29.4ms
99:	learn: 8.5084579	total: 2.95s	remaining: 0us
0:	learn: 46.1633714	total: 27.8ms	remaining: 2.75s
1:	learn: 44.7904617	total: 60.3ms	remaining: 2.95s
2:	learn: 43.5292386	total: 88.2ms	remaining: 2.85s
3:	learn: 42.3776226	total: 115ms	remaining: 2.75s
4:	learn: 41.1726533	total: 142ms	remaining: 2.69s
5:	learn: 40.0256490	total: 168ms	remaining: 2.64s
6:	learn: 39.0318588	total: 195ms	remaining: 2.6s
7:	learn: 38.0361181	total: 228ms	remaining: 2.62s
8:	learn: 37.0398789	total: 256ms	remaining: 2.58s
9:	learn: 36.0525089	total: 283ms	remaining: 2.55s
10:	learn: 35.0926830	total: 320ms	remaining: 2.59s
11:	learn: 34.1467022	total: 348ms	remaining: 2.55s
12:	learn: 33.5625454	total: 375ms	remaining: 2.51s
13:	learn: 32.7993162	total: 402ms	remaining: 2.47s
14:	learn: 32.1179593	total: 430ms	remaining: 2.44s
15:	learn: 31.5382898	total: 465ms	remaining: 2.44s
16:	learn: 30.8398862	total: 492ms	remaining: 2.4s
17:	learn: 30.1060070	total: 518ms	remaining: 2.36s
18:	learn: 29.3826415	total: 549ms	remaining: 2.34s
19:	learn: 28.5809579	total: 574ms	remaining: 2.3s
20:	learn: 28.0104942	total: 600ms	remaining: 2.26s
21:	learn: 27.5189566	total: 624ms	remaining: 2.21s
22:	learn: 26.8603656	total: 649ms	remaining: 2.17s
23:	learn: 26.2547050	total: 674ms	remaining: 2.13s
24:	learn: 25.6559137	total: 698ms	remaining: 2.09s
25:	learn: 25.1148352	total: 724ms	remaining: 2.06s
26:	learn: 24.5782363	total: 760ms	remaining: 2.06s
27:	learn: 24.0350871	total: 786ms	remaining: 2.02s
28:	learn: 23.5119480	total: 812ms	remaining: 1.99s
29:	learn: 23.1119795	total: 838ms	remaining: 1.96s
30:	learn: 22.6838288	total: 864ms	remaining: 1.92s
31:	learn: 22.2554624	total: 889ms	remaining: 1.89s
32:	learn: 21.8241578	total: 915ms	remaining: 1.86s
33:	learn: 21.5062830	total: 943ms	remaining: 1.83s
34:	learn: 21.0109226	total: 974ms	remaining: 1.81s
35:	learn: 20.5518606	total: 1s	remaining: 1.78s
36:	learn: 20.1195339	total: 1.02s	remaining: 1.74s
37:	learn: 19.7143479	total: 1.05s	remaining: 1.71s
38:	learn: 19.3325253	total: 1.07s	remaining: 1.68s
39:	learn: 19.0310706	total: 1.1s	remaining: 1.65s
40:	learn: 18.7262797	total: 1.12s	remaining: 1.62s
41:	learn: 18.3611836	total: 1.16s	remaining: 1.6s
42:	learn: 17.9960838	total: 1.18s	remaining: 1.57s
43:	learn: 17.7058991	total: 1.21s	remaining: 1.54s
44:	learn: 17.3944673	total: 1.23s	remaining: 1.5s
45:	learn: 17.1283561	total: 1.26s	remaining: 1.48s
46:	learn: 16.8406890	total: 1.28s	remaining: 1.44s
47:	learn: 16.6072061	total: 1.31s	remaining: 1.42s
48:	learn: 16.3697411	total: 1.33s	remaining: 1.39s
49:	learn: 15.9995507	total: 1.36s	remaining: 1.36s
50:	learn: 15.7372570	total: 1.38s	remaining: 1.33s
51:	learn: 15.4840152	total: 1.42s	remaining: 1.31s
52:	learn: 15.2899590	total: 1.45s	remaining: 1.28s
53:	learn: 15.0111064	total: 1.47s	remaining: 1.25s
54:	learn: 14.7504952	total: 1.5s	remaining: 1.23s
55:	learn: 14.5309762	total: 1.52s	remaining: 1.2s
56:	learn: 14.3525677	total: 1.55s	remaining: 1.17s
57:	learn: 14.1816296	total: 1.57s	remaining: 1.14s
58:	learn: 13.9958516	total: 1.6s	remaining: 1.11s
59:	learn: 13.8356735	total: 1.62s	remaining: 1.08s
60:	learn: 13.6499824	total: 1.66s	remaining: 1.06s
61:	learn: 13.4621357	total: 1.68s	remaining: 1.03s
62:	learn: 13.3234970	total: 1.71s	remaining: 1s
63:	learn: 13.1407122	total: 1.73s	remaining: 975ms
64:	learn: 13.0161177	total: 1.76s	remaining: 947ms
65:	learn: 12.8361175	total: 1.78s	remaining: 919ms
66:	learn: 12.7103117	total: 1.81s	remaining: 892ms
67:	learn: 12.5145429	total: 1.84s	remaining: 866ms
68:	learn: 12.3966318	total: 1.87s	remaining: 842ms
69:	learn: 12.2175623	total: 1.9s	remaining: 814ms
70:	learn: 12.0455583	total: 1.92s	remaining: 786ms
71:	learn: 11.9190589	total: 1.95s	remaining: 758ms
72:	learn: 11.7990452	total: 1.98s	remaining: 731ms
73:	learn: 11.6735331	total: 2s	remaining: 703ms
74:	learn: 11.5694753	total: 2.03s	remaining: 676ms
75:	learn: 11.4471422	total: 2.06s	remaining: 650ms
76:	learn: 11.3357642	total: 2.09s	remaining: 623ms
77:	learn: 11.2160164	total: 2.11s	remaining: 595ms
78:	learn: 11.1477947	total: 2.14s	remaining: 568ms
79:	learn: 11.0733969	total: 2.16s	remaining: 540ms
80:	learn: 10.9851608	total: 2.19s	remaining: 513ms
81:	learn: 10.8669537	total: 2.21s	remaining: 486ms
82:	learn: 10.7846130	total: 2.24s	remaining: 458ms
83:	learn: 10.6429068	total: 2.26s	remaining: 431ms
84:	learn: 10.5485368	total: 2.3s	remaining: 406ms
85:	learn: 10.4626750	total: 2.33s	remaining: 379ms
86:	learn: 10.3487863	total: 2.35s	remaining: 351ms
87:	learn: 10.2608682	total: 2.38s	remaining: 324ms
88:	learn: 10.1492862	total: 2.4s	remaining: 297ms
89:	learn: 10.0825429	total: 2.43s	remaining: 270ms
90:	learn: 9.9668337	total: 2.45s	remaining: 243ms
91:	learn: 9.8924239	total: 2.48s	remaining: 216ms
92:	learn: 9.7959729	total: 2.51s	remaining: 189ms
93:	learn: 9.7342503	total: 2.54s	remaining: 162ms
94:	learn: 9.6266181	total: 2.56s	remaining: 135ms
95:	learn: 9.5607316	total: 2.59s	remaining: 108ms
96:	learn: 9.4615938	total: 2.61s	remaining: 80.8ms
97:	learn: 9.3562852	total: 2.64s	remaining: 53.8ms
98:	learn: 9.2518786	total: 2.66s	remaining: 26.9ms
99:	learn: 9.2130065	total: 2.69s	remaining: 0us
0:	learn: 45.6477780	total: 24.5ms	remaining: 2.42s
1:	learn: 44.3885048	total: 49.3ms	remaining: 2.42s
2:	learn: 43.1316502	total: 74ms	remaining: 2.39s
3:	learn: 41.8123054	total: 98.9ms	remaining: 2.37s
4:	learn: 40.7214533	total: 123ms	remaining: 2.34s
5:	learn: 39.6276122	total: 148ms	remaining: 2.32s
6:	learn: 38.6471225	total: 181ms	remaining: 2.4s
7:	learn: 37.7493668	total: 208ms	remaining: 2.39s
8:	learn: 36.7733816	total: 232ms	remaining: 2.35s
9:	learn: 36.1233521	total: 255ms	remaining: 2.3s
10:	learn: 35.5715091	total: 279ms	remaining: 2.26s
11:	learn: 34.6287751	total: 303ms	remaining: 2.23s
12:	learn: 33.8024988	total: 334ms	remaining: 2.23s
13:	learn: 33.0699864	total: 361ms	remaining: 2.22s
14:	learn: 32.2267139	total: 385ms	remaining: 2.18s
15:	learn: 31.4879090	total: 409ms	remaining: 2.15s
16:	learn: 30.6681130	total: 433ms	remaining: 2.11s
17:	learn: 29.9739192	total: 458ms	remaining: 2.09s
18:	learn: 29.3293065	total: 483ms	remaining: 2.06s
19:	learn: 28.5893418	total: 506ms	remaining: 2.02s
20:	learn: 28.0793862	total: 530ms	remaining: 2s
21:	learn: 27.5553702	total: 555ms	remaining: 1.97s
22:	learn: 27.0123732	total: 587ms	remaining: 1.96s
23:	learn: 26.3897992	total: 611ms	remaining: 1.94s
24:	learn: 25.7405079	total: 635ms	remaining: 1.91s
25:	learn: 25.2366375	total: 660ms	remaining: 1.88s
26:	learn: 24.8040727	total: 684ms	remaining: 1.85s
27:	learn: 24.3831145	total: 708ms	remaining: 1.82s
28:	learn: 23.9264258	total: 732ms	remaining: 1.79s
29:	learn: 23.4965665	total: 756ms	remaining: 1.76s
30:	learn: 23.0750907	total: 782ms	remaining: 1.74s
31:	learn: 22.6177456	total: 817ms	remaining: 1.74s
32:	learn: 22.1936903	total: 842ms	remaining: 1.71s
33:	learn: 21.7237373	total: 866ms	remaining: 1.68s
34:	learn: 21.2885821	total: 892ms	remaining: 1.66s
35:	learn: 20.8773820	total: 916ms	remaining: 1.63s
36:	learn: 20.5069022	total: 940ms	remaining: 1.6s
37:	learn: 20.1026772	total: 964ms	remaining: 1.57s
38:	learn: 19.7278063	total: 989ms	remaining: 1.55s
39:	learn: 19.4576176	total: 1.02s	remaining: 1.53s
40:	learn: 19.1716041	total: 1.05s	remaining: 1.51s
41:	learn: 18.8541728	total: 1.07s	remaining: 1.48s
42:	learn: 18.6411979	total: 1.1s	remaining: 1.45s
43:	learn: 18.3146636	total: 1.12s	remaining: 1.43s
44:	learn: 18.0208582	total: 1.15s	remaining: 1.4s
45:	learn: 17.7344521	total: 1.17s	remaining: 1.37s
46:	learn: 17.4797974	total: 1.19s	remaining: 1.35s
47:	learn: 17.2182299	total: 1.23s	remaining: 1.33s
48:	learn: 16.9607453	total: 1.25s	remaining: 1.31s
49:	learn: 16.7297863	total: 1.28s	remaining: 1.28s
50:	learn: 16.4913674	total: 1.3s	remaining: 1.25s
51:	learn: 16.2886548	total: 1.33s	remaining: 1.23s
52:	learn: 16.0297055	total: 1.35s	remaining: 1.2s
53:	learn: 15.8558289	total: 1.38s	remaining: 1.17s
54:	learn: 15.6256772	total: 1.4s	remaining: 1.15s
55:	learn: 15.4571057	total: 1.43s	remaining: 1.12s
56:	learn: 15.2857211	total: 1.46s	remaining: 1.1s
57:	learn: 15.0790849	total: 1.48s	remaining: 1.07s
58:	learn: 14.8706573	total: 1.5s	remaining: 1.04s
59:	learn: 14.7142314	total: 1.53s	remaining: 1.02s
60:	learn: 14.5574075	total: 1.56s	remaining: 997ms
61:	learn: 14.3831719	total: 1.59s	remaining: 972ms
62:	learn: 14.2429846	total: 1.61s	remaining: 948ms
63:	learn: 14.0982260	total: 1.65s	remaining: 928ms
64:	learn: 13.9793470	total: 1.68s	remaining: 903ms
65:	learn: 13.7843655	total: 1.7s	remaining: 878ms
66:	learn: 13.6382336	total: 1.73s	remaining: 853ms
67:	learn: 13.5395713	total: 1.77s	remaining: 832ms
68:	learn: 13.3797741	total: 1.79s	remaining: 806ms
69:	learn: 13.2910103	total: 1.82s	remaining: 780ms
70:	learn: 13.1587887	total: 1.85s	remaining: 755ms
71:	learn: 13.0464642	total: 1.88s	remaining: 732ms
72:	learn: 12.9189091	total: 1.91s	remaining: 706ms
73:	learn: 12.8056893	total: 1.94s	remaining: 680ms
74:	learn: 12.6904403	total: 1.96s	remaining: 654ms
75:	learn: 12.5608506	total: 1.99s	remaining: 630ms
76:	learn: 12.4712551	total: 2.02s	remaining: 604ms
77:	learn: 12.3371889	total: 2.05s	remaining: 578ms
78:	learn: 12.2449022	total: 2.08s	remaining: 552ms
79:	learn: 12.2163788	total: 2.11s	remaining: 528ms
80:	learn: 12.1464820	total: 2.14s	remaining: 503ms
81:	learn: 12.0001066	total: 2.17s	remaining: 476ms
82:	learn: 11.8843691	total: 2.2s	remaining: 450ms
83:	learn: 11.7638631	total: 2.23s	remaining: 425ms
84:	learn: 11.6389646	total: 2.26s	remaining: 399ms
85:	learn: 11.5343065	total: 2.29s	remaining: 372ms
86:	learn: 11.4267531	total: 2.32s	remaining: 347ms
87:	learn: 11.3136728	total: 2.35s	remaining: 320ms
88:	learn: 11.2361574	total: 2.38s	remaining: 294ms
89:	learn: 11.1507886	total: 2.4s	remaining: 267ms
90:	learn: 11.0988952	total: 2.43s	remaining: 240ms
91:	learn: 10.9988426	total: 2.46s	remaining: 214ms
92:	learn: 10.9584792	total: 2.49s	remaining: 188ms
93:	learn: 10.8771461	total: 2.52s	remaining: 161ms
94:	learn: 10.8161358	total: 2.55s	remaining: 134ms
95:	learn: 10.7524450	total: 2.58s	remaining: 108ms
96:	learn: 10.6566836	total: 2.61s	remaining: 80.8ms
97:	learn: 10.5550602	total: 2.64s	remaining: 53.9ms
98:	learn: 10.4790583	total: 2.67s	remaining: 27ms
99:	learn: 10.4087354	total: 2.69s	remaining: 0us
0:	learn: 46.5398832	total: 36ms	remaining: 3.56s
1:	learn: 45.3142618	total: 62.5ms	remaining: 3.06s
2:	learn: 44.0378137	total: 89.7ms	remaining: 2.9s
3:	learn: 42.7976734	total: 117ms	remaining: 2.8s
4:	learn: 41.7080859	total: 143ms	remaining: 2.72s
5:	learn: 40.4513327	total: 171ms	remaining: 2.67s
6:	learn: 39.4903346	total: 198ms	remaining: 2.64s
7:	learn: 38.3767870	total: 237ms	remaining: 2.72s
8:	learn: 37.4056810	total: 273ms	remaining: 2.76s
9:	learn: 36.4947716	total: 301ms	remaining: 2.71s
10:	learn: 35.4421832	total: 330ms	remaining: 2.67s
11:	learn: 34.6183487	total: 344ms	remaining: 2.52s
12:	learn: 33.9603524	total: 370ms	remaining: 2.48s
13:	learn: 33.0635534	total: 397ms	remaining: 2.44s
14:	learn: 32.2067999	total: 422ms	remaining: 2.39s
15:	learn: 31.3961282	total: 457ms	remaining: 2.4s
16:	learn: 30.7113239	total: 485ms	remaining: 2.37s
17:	learn: 29.9919005	total: 519ms	remaining: 2.37s
18:	learn: 29.4016891	total: 545ms	remaining: 2.33s
19:	learn: 28.7435066	total: 571ms	remaining: 2.29s
20:	learn: 28.2283605	total: 599ms	remaining: 2.25s
21:	learn: 27.6749781	total: 626ms	remaining: 2.22s
22:	learn: 27.1695356	total: 655ms	remaining: 2.19s
23:	learn: 26.6842901	total: 696ms	remaining: 2.2s
24:	learn: 26.0987344	total: 724ms	remaining: 2.17s
25:	learn: 25.5266873	total: 753ms	remaining: 2.14s
26:	learn: 25.0200431	total: 792ms	remaining: 2.14s
27:	learn: 24.5972016	total: 820ms	remaining: 2.11s
28:	learn: 24.1557061	total: 849ms	remaining: 2.08s
29:	learn: 23.7405036	total: 885ms	remaining: 2.06s
30:	learn: 23.3574513	total: 913ms	remaining: 2.03s
31:	learn: 23.0493499	total: 941ms	remaining: 2s
32:	learn: 22.6480655	total: 969ms	remaining: 1.97s
33:	learn: 22.2777353	total: 995ms	remaining: 1.93s
34:	learn: 21.8294628	total: 1.03s	remaining: 1.91s
35:	learn: 21.4783115	total: 1.06s	remaining: 1.88s
36:	learn: 21.1271427	total: 1.08s	remaining: 1.85s
37:	learn: 20.7967443	total: 1.12s	remaining: 1.83s
38:	learn: 20.4949793	total: 1.15s	remaining: 1.79s
39:	learn: 20.1991695	total: 1.18s	remaining: 1.76s
40:	learn: 19.8869467	total: 1.2s	remaining: 1.73s
41:	learn: 19.5656862	total: 1.23s	remaining: 1.7s
42:	learn: 19.2415335	total: 1.27s	remaining: 1.68s
43:	learn: 18.9725471	total: 1.29s	remaining: 1.65s
44:	learn: 18.7035722	total: 1.33s	remaining: 1.62s
45:	learn: 18.3840395	total: 1.35s	remaining: 1.59s
46:	learn: 18.1486662	total: 1.38s	remaining: 1.56s
47:	learn: 17.8740440	total: 1.41s	remaining: 1.52s
48:	learn: 17.6056273	total: 1.44s	remaining: 1.49s
49:	learn: 17.4011083	total: 1.46s	remaining: 1.46s
50:	learn: 17.1935449	total: 1.49s	remaining: 1.43s
51:	learn: 16.9415227	total: 1.53s	remaining: 1.41s
52:	learn: 16.6568624	total: 1.56s	remaining: 1.38s
53:	learn: 16.4254479	total: 1.59s	remaining: 1.35s
54:	learn: 16.1958120	total: 1.61s	remaining: 1.32s
55:	learn: 15.9494332	total: 1.64s	remaining: 1.29s
56:	learn: 15.7736632	total: 1.67s	remaining: 1.26s
57:	learn: 15.6314122	total: 1.7s	remaining: 1.23s
58:	learn: 15.3707626	total: 1.73s	remaining: 1.2s
59:	learn: 15.2211664	total: 1.76s	remaining: 1.18s
60:	learn: 14.9939278	total: 1.79s	remaining: 1.15s
61:	learn: 14.8327626	total: 1.82s	remaining: 1.11s
62:	learn: 14.6555776	total: 1.85s	remaining: 1.08s
63:	learn: 14.5516961	total: 1.87s	remaining: 1.05s
64:	learn: 14.3660780	total: 1.9s	remaining: 1.02s
65:	learn: 14.1721909	total: 1.93s	remaining: 992ms
66:	learn: 14.0877696	total: 1.95s	remaining: 962ms
67:	learn: 13.9435793	total: 1.99s	remaining: 937ms
68:	learn: 13.7745805	total: 2.03s	remaining: 912ms
69:	learn: 13.6490858	total: 2.06s	remaining: 881ms
70:	learn: 13.5022080	total: 2.08s	remaining: 851ms
71:	learn: 13.3922163	total: 2.11s	remaining: 821ms
72:	learn: 13.2842701	total: 2.14s	remaining: 790ms
73:	learn: 13.1698693	total: 2.17s	remaining: 761ms
74:	learn: 13.0256610	total: 2.19s	remaining: 731ms
75:	learn: 12.8855147	total: 2.22s	remaining: 703ms
76:	learn: 12.7807971	total: 2.26s	remaining: 675ms
77:	learn: 12.6618407	total: 2.29s	remaining: 645ms
78:	learn: 12.5369866	total: 2.31s	remaining: 615ms
79:	learn: 12.4376925	total: 2.34s	remaining: 585ms
80:	learn: 12.3005012	total: 2.37s	remaining: 555ms
81:	learn: 12.1751315	total: 2.39s	remaining: 526ms
82:	learn: 12.0612289	total: 2.43s	remaining: 498ms
83:	learn: 11.9757193	total: 2.46s	remaining: 468ms
84:	learn: 11.8530411	total: 2.49s	remaining: 440ms
85:	learn: 11.7523616	total: 2.52s	remaining: 410ms
86:	learn: 11.6645272	total: 2.55s	remaining: 381ms
87:	learn: 11.5645111	total: 2.57s	remaining: 351ms
88:	learn: 11.4692480	total: 2.6s	remaining: 321ms
89:	learn: 11.3724902	total: 2.63s	remaining: 292ms
90:	learn: 11.2842147	total: 2.66s	remaining: 263ms
91:	learn: 11.1868295	total: 2.69s	remaining: 234ms
92:	learn: 11.0293625	total: 2.72s	remaining: 204ms
93:	learn: 10.9495625	total: 2.75s	remaining: 176ms
94:	learn: 10.8608168	total: 2.78s	remaining: 146ms
95:	learn: 10.7804780	total: 2.81s	remaining: 117ms
96:	learn: 10.6503623	total: 2.83s	remaining: 87.6ms
97:	learn: 10.5906748	total: 2.86s	remaining: 58.4ms
98:	learn: 10.4539468	total: 2.9s	remaining: 29.2ms
99:	learn: 10.3804160	total: 2.92s	remaining: 0us
0:	learn: 27.3776612	total: 22.2ms	remaining: 2.19s
1:	learn: 26.7619003	total: 53.2ms	remaining: 2.6s
2:	learn: 26.0057626	total: 78.1ms	remaining: 2.52s
3:	learn: 25.4280982	total: 111ms	remaining: 2.66s
4:	learn: 24.8347609	total: 136ms	remaining: 2.58s
5:	learn: 24.2526574	total: 157ms	remaining: 2.45s
6:	learn: 23.7478806	total: 178ms	remaining: 2.37s
7:	learn: 23.2677666	total: 199ms	remaining: 2.29s
8:	learn: 22.7564310	total: 220ms	remaining: 2.23s
9:	learn: 22.2873770	total: 241ms	remaining: 2.17s
10:	learn: 21.8088174	total: 265ms	remaining: 2.14s
11:	learn: 21.4086875	total: 289ms	remaining: 2.12s
12:	learn: 20.9489217	total: 327ms	remaining: 2.19s
13:	learn: 20.4585233	total: 355ms	remaining: 2.18s
14:	learn: 20.0177760	total: 378ms	remaining: 2.14s
15:	learn: 19.5981890	total: 403ms	remaining: 2.11s
16:	learn: 19.2041885	total: 427ms	remaining: 2.08s
17:	learn: 18.8422550	total: 452ms	remaining: 2.06s
18:	learn: 18.4774037	total: 473ms	remaining: 2.02s
19:	learn: 18.0931699	total: 496ms	remaining: 1.98s
20:	learn: 17.6856423	total: 525ms	remaining: 1.98s
21:	learn: 17.3394010	total: 550ms	remaining: 1.95s
22:	learn: 17.0165204	total: 578ms	remaining: 1.94s
23:	learn: 16.7728230	total: 599ms	remaining: 1.9s
24:	learn: 16.5020155	total: 622ms	remaining: 1.86s
25:	learn: 16.2110813	total: 643ms	remaining: 1.83s
26:	learn: 15.9439416	total: 666ms	remaining: 1.8s
27:	learn: 15.6605702	total: 688ms	remaining: 1.77s
28:	learn: 15.4180978	total: 710ms	remaining: 1.74s
29:	learn: 15.1463921	total: 733ms	remaining: 1.71s
30:	learn: 14.8961946	total: 755ms	remaining: 1.68s
31:	learn: 14.6763296	total: 785ms	remaining: 1.67s
32:	learn: 14.4161484	total: 808ms	remaining: 1.64s
33:	learn: 14.1748686	total: 838ms	remaining: 1.63s
34:	learn: 13.9722494	total: 859ms	remaining: 1.59s
35:	learn: 13.7632896	total: 882ms	remaining: 1.57s
36:	learn: 13.5572592	total: 903ms	remaining: 1.54s
37:	learn: 13.3896577	total: 924ms	remaining: 1.51s
38:	learn: 13.2796441	total: 947ms	remaining: 1.48s
39:	learn: 13.0896679	total: 974ms	remaining: 1.46s
40:	learn: 12.8898238	total: 1.01s	remaining: 1.45s
41:	learn: 12.6824069	total: 1.03s	remaining: 1.42s
42:	learn: 12.5459667	total: 1.05s	remaining: 1.4s
43:	learn: 12.3859203	total: 1.09s	remaining: 1.38s
44:	learn: 12.2099364	total: 1.11s	remaining: 1.35s
45:	learn: 12.0649044	total: 1.13s	remaining: 1.32s
46:	learn: 11.8934147	total: 1.15s	remaining: 1.3s
47:	learn: 11.7212144	total: 1.17s	remaining: 1.27s
48:	learn: 11.5585360	total: 1.2s	remaining: 1.25s
49:	learn: 11.4204354	total: 1.23s	remaining: 1.23s
50:	learn: 11.3264427	total: 1.25s	remaining: 1.2s
51:	learn: 11.2063486	total: 1.27s	remaining: 1.18s
52:	learn: 11.0712206	total: 1.3s	remaining: 1.15s
53:	learn: 10.9205088	total: 1.33s	remaining: 1.13s
54:	learn: 10.8155412	total: 1.35s	remaining: 1.11s
55:	learn: 10.7286854	total: 1.38s	remaining: 1.08s
56:	learn: 10.6088466	total: 1.41s	remaining: 1.06s
57:	learn: 10.4999885	total: 1.43s	remaining: 1.04s
58:	learn: 10.4022194	total: 1.46s	remaining: 1.01s
59:	learn: 10.3147130	total: 1.48s	remaining: 988ms
60:	learn: 10.2011489	total: 1.51s	remaining: 963ms
61:	learn: 10.1094372	total: 1.53s	remaining: 937ms
62:	learn: 10.0248970	total: 1.55s	remaining: 911ms
63:	learn: 9.9192710	total: 1.57s	remaining: 884ms
64:	learn: 9.8577360	total: 1.6s	remaining: 864ms
65:	learn: 9.7737103	total: 1.63s	remaining: 841ms
66:	learn: 9.6706617	total: 1.65s	remaining: 814ms
67:	learn: 9.6042727	total: 1.67s	remaining: 788ms
68:	learn: 9.5355377	total: 1.69s	remaining: 761ms
69:	learn: 9.4615216	total: 1.72s	remaining: 736ms
70:	learn: 9.3702045	total: 1.74s	remaining: 711ms
71:	learn: 9.3035392	total: 1.76s	remaining: 685ms
72:	learn: 9.2322686	total: 1.78s	remaining: 660ms
73:	learn: 9.1431916	total: 1.81s	remaining: 635ms
74:	learn: 9.0869466	total: 1.84s	remaining: 614ms
75:	learn: 9.0117390	total: 1.87s	remaining: 591ms
76:	learn: 8.9580443	total: 1.9s	remaining: 566ms
77:	learn: 8.8649939	total: 1.92s	remaining: 542ms
78:	learn: 8.7792713	total: 1.95s	remaining: 517ms
79:	learn: 8.7164606	total: 1.97s	remaining: 492ms
80:	learn: 8.6340559	total: 1.99s	remaining: 466ms
81:	learn: 8.5697104	total: 2.01s	remaining: 441ms
82:	learn: 8.5273758	total: 2.03s	remaining: 416ms
83:	learn: 8.4394788	total: 2.06s	remaining: 392ms
84:	learn: 8.3672415	total: 2.09s	remaining: 368ms
85:	learn: 8.2813444	total: 2.12s	remaining: 344ms
86:	learn: 8.1994983	total: 2.14s	remaining: 319ms
87:	learn: 8.1003577	total: 2.16s	remaining: 294ms
88:	learn: 8.0501976	total: 2.18s	remaining: 269ms
89:	learn: 7.9718830	total: 2.2s	remaining: 244ms
90:	learn: 7.9114534	total: 2.22s	remaining: 220ms
91:	learn: 7.8319856	total: 2.24s	remaining: 195ms
92:	learn: 7.7731246	total: 2.27s	remaining: 171ms
93:	learn: 7.7165850	total: 2.3s	remaining: 147ms
94:	learn: 7.6448498	total: 2.33s	remaining: 122ms
95:	learn: 7.5709919	total: 2.36s	remaining: 98.3ms
96:	learn: 7.5184082	total: 2.38s	remaining: 73.7ms
97:	learn: 7.4786866	total: 2.41s	remaining: 49.1ms
98:	learn: 7.4301201	total: 2.43s	remaining: 24.5ms
99:	learn: 7.3416932	total: 2.45s	remaining: 0us
0:	learn: 42.6391731	total: 21.2ms	remaining: 2.1s
1:	learn: 41.2755994	total: 41.6ms	remaining: 2.04s
2:	learn: 40.1418308	total: 62.6ms	remaining: 2.02s
3:	learn: 38.9707156	total: 83ms	remaining: 1.99s
4:	learn: 37.8723622	total: 104ms	remaining: 1.98s
5:	learn: 36.6981834	total: 125ms	remaining: 1.96s
6:	learn: 35.6210108	total: 154ms	remaining: 2.05s
7:	learn: 34.5154078	total: 178ms	remaining: 2.04s
8:	learn: 33.4581011	total: 200ms	remaining: 2.02s
9:	learn: 32.5872455	total: 231ms	remaining: 2.08s
10:	learn: 31.6311510	total: 256ms	remaining: 2.07s
11:	learn: 30.8222401	total: 281ms	remaining: 2.06s
12:	learn: 29.9305192	total: 306ms	remaining: 2.05s
13:	learn: 29.0742133	total: 331ms	remaining: 2.03s
14:	learn: 28.3687544	total: 351ms	remaining: 1.99s
15:	learn: 27.5730558	total: 372ms	remaining: 1.95s
16:	learn: 26.9376082	total: 405ms	remaining: 1.97s
17:	learn: 26.2254949	total: 430ms	remaining: 1.96s
18:	learn: 25.5974939	total: 455ms	remaining: 1.94s
19:	learn: 25.0097187	total: 476ms	remaining: 1.91s
20:	learn: 24.3722243	total: 497ms	remaining: 1.87s
21:	learn: 23.8249140	total: 518ms	remaining: 1.83s
22:	learn: 23.3953969	total: 541ms	remaining: 1.81s
23:	learn: 22.8726238	total: 561ms	remaining: 1.78s
24:	learn: 22.3407723	total: 583ms	remaining: 1.75s
25:	learn: 21.8360330	total: 605ms	remaining: 1.72s
26:	learn: 21.4050665	total: 608ms	remaining: 1.64s
27:	learn: 20.9389245	total: 638ms	remaining: 1.64s
28:	learn: 20.5166767	total: 667ms	remaining: 1.63s
29:	learn: 20.1190641	total: 693ms	remaining: 1.62s
30:	learn: 19.7189491	total: 718ms	remaining: 1.6s
31:	learn: 19.3748181	total: 741ms	remaining: 1.57s
32:	learn: 19.0116312	total: 765ms	remaining: 1.55s
33:	learn: 18.6982407	total: 789ms	remaining: 1.53s
34:	learn: 18.3109965	total: 811ms	remaining: 1.51s
35:	learn: 17.9620798	total: 836ms	remaining: 1.49s
36:	learn: 17.6396740	total: 864ms	remaining: 1.47s
37:	learn: 17.3596962	total: 889ms	remaining: 1.45s
38:	learn: 17.0107107	total: 918ms	remaining: 1.44s
39:	learn: 16.7000770	total: 940ms	remaining: 1.41s
40:	learn: 16.4406609	total: 950ms	remaining: 1.37s
41:	learn: 16.2482533	total: 971ms	remaining: 1.34s
42:	learn: 16.0039366	total: 994ms	remaining: 1.32s
43:	learn: 15.7538572	total: 1.01s	remaining: 1.29s
44:	learn: 15.5095380	total: 1.04s	remaining: 1.27s
45:	learn: 15.2678319	total: 1.06s	remaining: 1.25s
46:	learn: 15.0494495	total: 1.09s	remaining: 1.23s
47:	learn: 14.8347400	total: 1.12s	remaining: 1.21s
48:	learn: 14.6035398	total: 1.14s	remaining: 1.19s
49:	learn: 14.3913639	total: 1.17s	remaining: 1.17s
50:	learn: 14.1928022	total: 1.2s	remaining: 1.15s
51:	learn: 13.9985580	total: 1.22s	remaining: 1.12s
52:	learn: 13.8322220	total: 1.24s	remaining: 1.1s
53:	learn: 13.6455937	total: 1.26s	remaining: 1.07s
54:	learn: 13.4402019	total: 1.29s	remaining: 1.05s
55:	learn: 13.2899163	total: 1.32s	remaining: 1.03s
56:	learn: 13.1694614	total: 1.34s	remaining: 1.01s
57:	learn: 13.0722892	total: 1.36s	remaining: 984ms
58:	learn: 12.9065251	total: 1.38s	remaining: 959ms
59:	learn: 12.6992885	total: 1.41s	remaining: 939ms
60:	learn: 12.5384562	total: 1.43s	remaining: 914ms
61:	learn: 12.4105591	total: 1.45s	remaining: 890ms
62:	learn: 12.2952504	total: 1.47s	remaining: 866ms
63:	learn: 12.1427365	total: 1.5s	remaining: 843ms
64:	learn: 11.9954361	total: 1.53s	remaining: 824ms
65:	learn: 11.8161234	total: 1.55s	remaining: 801ms
66:	learn: 11.6849978	total: 1.58s	remaining: 778ms
67:	learn: 11.5405300	total: 1.6s	remaining: 754ms
68:	learn: 11.3806762	total: 1.63s	remaining: 730ms
69:	learn: 11.2746848	total: 1.65s	remaining: 706ms
70:	learn: 11.1518256	total: 1.68s	remaining: 685ms
71:	learn: 11.0730779	total: 1.71s	remaining: 663ms
72:	learn: 10.9736725	total: 1.73s	remaining: 639ms
73:	learn: 10.8430563	total: 1.75s	remaining: 616ms
74:	learn: 10.7142220	total: 1.77s	remaining: 592ms
75:	learn: 10.6141640	total: 1.8s	remaining: 567ms
76:	learn: 10.5264853	total: 1.82s	remaining: 543ms
77:	learn: 10.3929390	total: 1.84s	remaining: 518ms
78:	learn: 10.3163176	total: 1.86s	remaining: 494ms
79:	learn: 10.2171240	total: 1.88s	remaining: 470ms
80:	learn: 10.1381738	total: 1.92s	remaining: 450ms
81:	learn: 10.0402437	total: 1.94s	remaining: 427ms
82:	learn: 9.9223565	total: 1.97s	remaining: 403ms
83:	learn: 9.8184057	total: 1.99s	remaining: 380ms
84:	learn: 9.7221978	total: 2.02s	remaining: 356ms
85:	learn: 9.6417031	total: 2.04s	remaining: 332ms
86:	learn: 9.5593969	total: 2.06s	remaining: 308ms
87:	learn: 9.4678992	total: 2.08s	remaining: 284ms
88:	learn: 9.3855757	total: 2.11s	remaining: 261ms
89:	learn: 9.2884031	total: 2.14s	remaining: 238ms
90:	learn: 9.2099382	total: 2.17s	remaining: 215ms
91:	learn: 9.1357061	total: 2.19s	remaining: 191ms
92:	learn: 9.0690328	total: 2.21s	remaining: 167ms
93:	learn: 8.9904694	total: 2.23s	remaining: 143ms
94:	learn: 8.9256893	total: 2.25s	remaining: 119ms
95:	learn: 8.8600084	total: 2.28s	remaining: 94.8ms
96:	learn: 8.8091154	total: 2.3s	remaining: 71.1ms
97:	learn: 8.7280528	total: 2.32s	remaining: 47.3ms
98:	learn: 8.6761440	total: 2.34s	remaining: 23.7ms
99:	learn: 8.6181192	total: 2.38s	remaining: 0us
0:	learn: 45.9988128	total: 22.9ms	remaining: 2.27s
1:	learn: 44.7653841	total: 51.5ms	remaining: 2.52s
2:	learn: 43.4693688	total: 72.4ms	remaining: 2.34s
3:	learn: 42.2495168	total: 94.3ms	remaining: 2.26s
4:	learn: 41.2273909	total: 117ms	remaining: 2.23s
5:	learn: 40.0623352	total: 146ms	remaining: 2.28s
6:	learn: 39.0139162	total: 172ms	remaining: 2.28s
7:	learn: 37.9905503	total: 194ms	remaining: 2.23s
8:	learn: 37.1460179	total: 215ms	remaining: 2.17s
9:	learn: 36.1321769	total: 236ms	remaining: 2.13s
10:	learn: 35.2434048	total: 258ms	remaining: 2.08s
11:	learn: 34.3919476	total: 279ms	remaining: 2.04s
12:	learn: 33.5464400	total: 300ms	remaining: 2.01s
13:	learn: 32.5752711	total: 323ms	remaining: 1.98s
14:	learn: 31.8573507	total: 355ms	remaining: 2.01s
15:	learn: 31.1481980	total: 379ms	remaining: 1.99s
16:	learn: 30.4578224	total: 403ms	remaining: 1.97s
17:	learn: 29.8404841	total: 425ms	remaining: 1.94s
18:	learn: 29.1314604	total: 448ms	remaining: 1.91s
19:	learn: 28.5024706	total: 466ms	remaining: 1.86s
20:	learn: 27.9368896	total: 487ms	remaining: 1.83s
21:	learn: 27.2136491	total: 509ms	remaining: 1.8s
22:	learn: 26.6230078	total: 532ms	remaining: 1.78s
23:	learn: 26.0604635	total: 558ms	remaining: 1.77s
24:	learn: 25.6309424	total: 583ms	remaining: 1.75s
25:	learn: 25.1761698	total: 603ms	remaining: 1.71s
26:	learn: 24.6368216	total: 622ms	remaining: 1.68s
27:	learn: 24.1028972	total: 642ms	remaining: 1.65s
28:	learn: 23.3990224	total: 662ms	remaining: 1.62s
29:	learn: 22.9088559	total: 683ms	remaining: 1.59s
30:	learn: 22.4793217	total: 703ms	remaining: 1.56s
31:	learn: 22.0592669	total: 726ms	remaining: 1.54s
32:	learn: 21.6715811	total: 747ms	remaining: 1.52s
33:	learn: 21.1907911	total: 779ms	remaining: 1.51s
34:	learn: 20.8045504	total: 803ms	remaining: 1.49s
35:	learn: 20.4670784	total: 826ms	remaining: 1.47s
36:	learn: 20.0165788	total: 848ms	remaining: 1.44s
37:	learn: 19.6859173	total: 870ms	remaining: 1.42s
38:	learn: 19.3641283	total: 891ms	remaining: 1.39s
39:	learn: 19.0291194	total: 912ms	remaining: 1.37s
40:	learn: 18.7204204	total: 933ms	remaining: 1.34s
41:	learn: 18.4000101	total: 956ms	remaining: 1.32s
42:	learn: 18.0910445	total: 989ms	remaining: 1.31s
43:	learn: 17.8354609	total: 1.01s	remaining: 1.28s
44:	learn: 17.4982243	total: 1.03s	remaining: 1.26s
45:	learn: 17.1895897	total: 1.05s	remaining: 1.23s
46:	learn: 16.9440833	total: 1.07s	remaining: 1.21s
47:	learn: 16.6112102	total: 1.09s	remaining: 1.18s
48:	learn: 16.3320235	total: 1.11s	remaining: 1.16s
49:	learn: 16.0523610	total: 1.13s	remaining: 1.13s
50:	learn: 15.8256738	total: 1.15s	remaining: 1.11s
51:	learn: 15.5699393	total: 1.18s	remaining: 1.09s
52:	learn: 15.3531799	total: 1.2s	remaining: 1.07s
53:	learn: 15.1364230	total: 1.23s	remaining: 1.04s
54:	learn: 15.0012063	total: 1.25s	remaining: 1.02s
55:	learn: 14.7171740	total: 1.27s	remaining: 1s
56:	learn: 14.5897576	total: 1.28s	remaining: 963ms
57:	learn: 14.3886878	total: 1.3s	remaining: 941ms
58:	learn: 14.1942115	total: 1.32s	remaining: 919ms
59:	learn: 14.0135398	total: 1.34s	remaining: 895ms
60:	learn: 13.8118263	total: 1.36s	remaining: 872ms
61:	learn: 13.6444047	total: 1.38s	remaining: 849ms
62:	learn: 13.4728078	total: 1.4s	remaining: 825ms
63:	learn: 13.3104934	total: 1.43s	remaining: 807ms
64:	learn: 13.1385144	total: 1.46s	remaining: 784ms
65:	learn: 13.0087777	total: 1.48s	remaining: 760ms
66:	learn: 12.8457835	total: 1.5s	remaining: 736ms
67:	learn: 12.6975263	total: 1.51s	remaining: 713ms
68:	learn: 12.5582839	total: 1.53s	remaining: 689ms
69:	learn: 12.4210776	total: 1.56s	remaining: 667ms
70:	learn: 12.2737286	total: 1.58s	remaining: 644ms
71:	learn: 12.1587075	total: 1.6s	remaining: 622ms
72:	learn: 12.0323022	total: 1.62s	remaining: 600ms
73:	learn: 11.8667900	total: 1.65s	remaining: 581ms
74:	learn: 11.6990385	total: 1.68s	remaining: 560ms
75:	learn: 11.5755058	total: 1.7s	remaining: 537ms
76:	learn: 11.4954152	total: 1.73s	remaining: 516ms
77:	learn: 11.3827464	total: 1.75s	remaining: 493ms
78:	learn: 11.2924968	total: 1.77s	remaining: 471ms
79:	learn: 11.1938217	total: 1.79s	remaining: 448ms
80:	learn: 11.0766477	total: 1.81s	remaining: 426ms
81:	learn: 10.9824487	total: 1.84s	remaining: 404ms
82:	learn: 10.8707168	total: 1.86s	remaining: 382ms
83:	learn: 10.7746205	total: 1.89s	remaining: 359ms
84:	learn: 10.6738461	total: 1.91s	remaining: 336ms
85:	learn: 10.5871227	total: 1.93s	remaining: 313ms
86:	learn: 10.4566607	total: 1.95s	remaining: 291ms
87:	learn: 10.3506633	total: 1.97s	remaining: 268ms
88:	learn: 10.2104644	total: 1.99s	remaining: 245ms
89:	learn: 10.0965839	total: 2.01s	remaining: 223ms
90:	learn: 9.9802927	total: 2.03s	remaining: 201ms
91:	learn: 9.9195276	total: 2.05s	remaining: 179ms
92:	learn: 9.8559698	total: 2.08s	remaining: 157ms
93:	learn: 9.7396780	total: 2.1s	remaining: 134ms
94:	learn: 9.6945725	total: 2.13s	remaining: 112ms
95:	learn: 9.5897565	total: 2.15s	remaining: 89.6ms
96:	learn: 9.5012011	total: 2.17s	remaining: 67.2ms
97:	learn: 9.4123715	total: 2.19s	remaining: 44.8ms
98:	learn: 9.3288366	total: 2.21s	remaining: 22.4ms
99:	learn: 9.2648715	total: 2.23s	remaining: 0us
0:	learn: 45.5336925	total: 18.3ms	remaining: 1.81s
1:	learn: 44.2714175	total: 35.9ms	remaining: 1.76s
2:	learn: 43.1477944	total: 53.6ms	remaining: 1.73s
3:	learn: 41.9891776	total: 71.6ms	remaining: 1.72s
4:	learn: 41.0638986	total: 91.5ms	remaining: 1.74s
5:	learn: 39.9800801	total: 109ms	remaining: 1.71s
6:	learn: 38.9048061	total: 127ms	remaining: 1.69s
7:	learn: 38.0749429	total: 148ms	remaining: 1.7s
8:	learn: 37.3966644	total: 167ms	remaining: 1.69s
9:	learn: 36.4671331	total: 193ms	remaining: 1.73s
10:	learn: 35.6649217	total: 220ms	remaining: 1.78s
11:	learn: 34.8793657	total: 242ms	remaining: 1.77s
12:	learn: 34.0737401	total: 264ms	remaining: 1.77s
13:	learn: 33.2560999	total: 285ms	remaining: 1.75s
14:	learn: 32.4184623	total: 306ms	remaining: 1.73s
15:	learn: 31.6803206	total: 324ms	remaining: 1.7s
16:	learn: 30.9276344	total: 343ms	remaining: 1.67s
17:	learn: 30.3590041	total: 363ms	remaining: 1.66s
18:	learn: 29.7789888	total: 383ms	remaining: 1.63s
19:	learn: 29.1098261	total: 410ms	remaining: 1.64s
20:	learn: 28.4824889	total: 433ms	remaining: 1.63s
21:	learn: 27.9675744	total: 451ms	remaining: 1.6s
22:	learn: 27.4793215	total: 470ms	remaining: 1.57s
23:	learn: 26.8920542	total: 487ms	remaining: 1.54s
24:	learn: 26.2736657	total: 506ms	remaining: 1.52s
25:	learn: 25.6908003	total: 525ms	remaining: 1.49s
26:	learn: 25.1288844	total: 544ms	remaining: 1.47s
27:	learn: 24.6933320	total: 562ms	remaining: 1.45s
28:	learn: 24.1372567	total: 581ms	remaining: 1.42s
29:	learn: 23.7103515	total: 602ms	remaining: 1.4s
30:	learn: 23.1647499	total: 633ms	remaining: 1.41s
31:	learn: 22.7009216	total: 657ms	remaining: 1.4s
32:	learn: 22.2792229	total: 679ms	remaining: 1.38s
33:	learn: 21.8004244	total: 701ms	remaining: 1.36s
34:	learn: 21.3578361	total: 722ms	remaining: 1.34s
35:	learn: 21.0262832	total: 744ms	remaining: 1.32s
36:	learn: 20.5787502	total: 763ms	remaining: 1.3s
37:	learn: 20.3083055	total: 782ms	remaining: 1.28s
38:	learn: 19.9902529	total: 807ms	remaining: 1.26s
39:	learn: 19.6059571	total: 830ms	remaining: 1.24s
40:	learn: 19.3890959	total: 851ms	remaining: 1.22s
41:	learn: 19.0549255	total: 870ms	remaining: 1.2s
42:	learn: 18.7283215	total: 888ms	remaining: 1.18s
43:	learn: 18.4448725	total: 906ms	remaining: 1.15s
44:	learn: 18.1578001	total: 925ms	remaining: 1.13s
45:	learn: 17.8777474	total: 944ms	remaining: 1.11s
46:	learn: 17.6428221	total: 964ms	remaining: 1.09s
47:	learn: 17.3887752	total: 983ms	remaining: 1.06s
48:	learn: 17.1475761	total: 1s	remaining: 1.04s
49:	learn: 16.9064363	total: 1.02s	remaining: 1.02s
50:	learn: 16.6414681	total: 1.05s	remaining: 1.01s
51:	learn: 16.4549974	total: 1.07s	remaining: 992ms
52:	learn: 16.2617558	total: 1.1s	remaining: 973ms
53:	learn: 16.0258241	total: 1.12s	remaining: 954ms
54:	learn: 15.7694686	total: 1.14s	remaining: 933ms
55:	learn: 15.5449602	total: 1.16s	remaining: 912ms
56:	learn: 15.3515330	total: 1.18s	remaining: 890ms
57:	learn: 15.1120403	total: 1.2s	remaining: 869ms
58:	learn: 14.9131368	total: 1.22s	remaining: 848ms
59:	learn: 14.8021921	total: 1.24s	remaining: 827ms
60:	learn: 14.6564259	total: 1.27s	remaining: 810ms
61:	learn: 14.5253260	total: 1.29s	remaining: 788ms
62:	learn: 14.3975427	total: 1.3s	remaining: 767ms
63:	learn: 14.3060204	total: 1.32s	remaining: 745ms
64:	learn: 14.1283681	total: 1.34s	remaining: 724ms
65:	learn: 14.0159063	total: 1.36s	remaining: 702ms
66:	learn: 13.8712541	total: 1.38s	remaining: 680ms
67:	learn: 13.7852998	total: 1.4s	remaining: 659ms
68:	learn: 13.6790164	total: 1.42s	remaining: 637ms
69:	learn: 13.5253745	total: 1.44s	remaining: 616ms
70:	learn: 13.3959663	total: 1.46s	remaining: 595ms
71:	learn: 13.2062955	total: 1.49s	remaining: 578ms
72:	learn: 13.0788709	total: 1.51s	remaining: 559ms
73:	learn: 12.9513184	total: 1.53s	remaining: 539ms
74:	learn: 12.8198556	total: 1.55s	remaining: 519ms
75:	learn: 12.7137549	total: 1.58s	remaining: 498ms
76:	learn: 12.6243477	total: 1.6s	remaining: 477ms
77:	learn: 12.5241564	total: 1.61s	remaining: 455ms
78:	learn: 12.4445782	total: 1.65s	remaining: 438ms
79:	learn: 12.3816501	total: 1.67s	remaining: 418ms
80:	learn: 12.2846914	total: 1.7s	remaining: 399ms
81:	learn: 12.1419498	total: 1.72s	remaining: 379ms
82:	learn: 12.0846494	total: 1.74s	remaining: 357ms
83:	learn: 11.9851484	total: 1.77s	remaining: 337ms
84:	learn: 11.8905738	total: 1.79s	remaining: 316ms
85:	learn: 11.7718790	total: 1.81s	remaining: 295ms
86:	learn: 11.6854413	total: 1.83s	remaining: 274ms
87:	learn: 11.6206110	total: 1.85s	remaining: 253ms
88:	learn: 11.5376098	total: 1.88s	remaining: 232ms
89:	learn: 11.4235068	total: 1.9s	remaining: 212ms
90:	learn: 11.3477955	total: 1.94s	remaining: 192ms
91:	learn: 11.2663772	total: 1.96s	remaining: 171ms
92:	learn: 11.1916556	total: 1.99s	remaining: 150ms
93:	learn: 11.0921504	total: 2.01s	remaining: 128ms
94:	learn: 10.9622375	total: 2.04s	remaining: 107ms
95:	learn: 10.8882085	total: 2.06s	remaining: 85.8ms
96:	learn: 10.8086218	total: 2.08s	remaining: 64.3ms
97:	learn: 10.7552220	total: 2.1s	remaining: 42.9ms
98:	learn: 10.6929666	total: 2.12s	remaining: 21.4ms
99:	learn: 10.6200033	total: 2.15s	remaining: 0us
0:	learn: 46.3366259	total: 28.3ms	remaining: 2.8s
1:	learn: 45.2205278	total: 49.4ms	remaining: 2.42s
2:	learn: 43.9887404	total: 71.2ms	remaining: 2.3s
3:	learn: 42.8240666	total: 91.7ms	remaining: 2.2s
4:	learn: 41.6086617	total: 113ms	remaining: 2.14s
5:	learn: 40.5606446	total: 135ms	remaining: 2.12s
6:	learn: 39.6241326	total: 160ms	remaining: 2.13s
7:	learn: 39.0016852	total: 195ms	remaining: 2.24s
8:	learn: 37.8501670	total: 218ms	remaining: 2.21s
9:	learn: 37.0215474	total: 242ms	remaining: 2.17s
10:	learn: 36.0215020	total: 276ms	remaining: 2.23s
11:	learn: 35.2421331	total: 298ms	remaining: 2.18s
12:	learn: 34.5416837	total: 319ms	remaining: 2.13s
13:	learn: 33.7787649	total: 340ms	remaining: 2.09s
14:	learn: 32.9860883	total: 363ms	remaining: 2.06s
15:	learn: 32.2123752	total: 394ms	remaining: 2.07s
16:	learn: 31.3564648	total: 418ms	remaining: 2.04s
17:	learn: 30.7859979	total: 439ms	remaining: 2s
18:	learn: 30.1443515	total: 460ms	remaining: 1.96s
19:	learn: 29.4880724	total: 482ms	remaining: 1.93s
20:	learn: 28.9635727	total: 502ms	remaining: 1.89s
21:	learn: 28.4853342	total: 523ms	remaining: 1.85s
22:	learn: 27.9796348	total: 544ms	remaining: 1.82s
23:	learn: 27.4360487	total: 570ms	remaining: 1.8s
24:	learn: 26.8685214	total: 594ms	remaining: 1.78s
25:	learn: 26.1769206	total: 618ms	remaining: 1.76s
26:	learn: 25.7146048	total: 642ms	remaining: 1.74s
27:	learn: 25.2614850	total: 665ms	remaining: 1.71s
28:	learn: 24.6626472	total: 688ms	remaining: 1.69s
29:	learn: 24.2501259	total: 712ms	remaining: 1.66s
30:	learn: 23.7892661	total: 733ms	remaining: 1.63s
31:	learn: 23.2729078	total: 755ms	remaining: 1.6s
32:	learn: 22.8969731	total: 778ms	remaining: 1.58s
33:	learn: 22.4567570	total: 806ms	remaining: 1.56s
34:	learn: 22.0569858	total: 826ms	remaining: 1.53s
35:	learn: 21.7317775	total: 846ms	remaining: 1.5s
36:	learn: 21.3890971	total: 865ms	remaining: 1.47s
37:	learn: 21.0664504	total: 885ms	remaining: 1.44s
38:	learn: 20.7379659	total: 904ms	remaining: 1.41s
39:	learn: 20.4423699	total: 923ms	remaining: 1.38s
40:	learn: 20.1526720	total: 942ms	remaining: 1.35s
41:	learn: 19.8706547	total: 964ms	remaining: 1.33s
42:	learn: 19.5139134	total: 988ms	remaining: 1.31s
43:	learn: 19.3495951	total: 1.02s	remaining: 1.3s
44:	learn: 19.1314757	total: 1.05s	remaining: 1.28s
45:	learn: 18.7971159	total: 1.07s	remaining: 1.26s
46:	learn: 18.5447051	total: 1.09s	remaining: 1.23s
47:	learn: 18.2328785	total: 1.12s	remaining: 1.21s
48:	learn: 17.9622938	total: 1.14s	remaining: 1.19s
49:	learn: 17.7264205	total: 1.16s	remaining: 1.16s
50:	learn: 17.4530592	total: 1.18s	remaining: 1.13s
51:	learn: 17.2236644	total: 1.2s	remaining: 1.11s
52:	learn: 17.0122792	total: 1.23s	remaining: 1.09s
53:	learn: 16.7599064	total: 1.25s	remaining: 1.06s
54:	learn: 16.5146699	total: 1.27s	remaining: 1.04s
55:	learn: 16.2531414	total: 1.29s	remaining: 1.01s
56:	learn: 16.0997208	total: 1.31s	remaining: 990ms
57:	learn: 15.8452412	total: 1.33s	remaining: 964ms
58:	learn: 15.6294900	total: 1.35s	remaining: 939ms
59:	learn: 15.4564548	total: 1.37s	remaining: 914ms
60:	learn: 15.2978533	total: 1.39s	remaining: 891ms
61:	learn: 15.0976912	total: 1.42s	remaining: 873ms
62:	learn: 14.9094446	total: 1.45s	remaining: 852ms
63:	learn: 14.7415094	total: 1.47s	remaining: 829ms
64:	learn: 14.6123806	total: 1.5s	remaining: 806ms
65:	learn: 14.4744916	total: 1.52s	remaining: 782ms
66:	learn: 14.3212717	total: 1.54s	remaining: 758ms
67:	learn: 14.1768047	total: 1.56s	remaining: 733ms
68:	learn: 14.0387344	total: 1.58s	remaining: 709ms
69:	learn: 13.8987579	total: 1.6s	remaining: 685ms
70:	learn: 13.7825740	total: 1.62s	remaining: 662ms
71:	learn: 13.6818548	total: 1.65s	remaining: 641ms
72:	learn: 13.5356993	total: 1.67s	remaining: 619ms
73:	learn: 13.4408704	total: 1.69s	remaining: 595ms
74:	learn: 13.2992218	total: 1.71s	remaining: 571ms
75:	learn: 13.1547092	total: 1.73s	remaining: 548ms
76:	learn: 13.0800189	total: 1.75s	remaining: 524ms
77:	learn: 12.9434711	total: 1.77s	remaining: 501ms
78:	learn: 12.8327325	total: 1.79s	remaining: 477ms
79:	learn: 12.7238946	total: 1.81s	remaining: 453ms
80:	learn: 12.6229528	total: 1.84s	remaining: 431ms
81:	learn: 12.5216078	total: 1.86s	remaining: 408ms
82:	learn: 12.4182254	total: 1.89s	remaining: 386ms
83:	learn: 12.3097978	total: 1.91s	remaining: 364ms
84:	learn: 12.1852056	total: 1.93s	remaining: 341ms
85:	learn: 12.0739627	total: 1.96s	remaining: 319ms
86:	learn: 11.9475583	total: 1.98s	remaining: 296ms
87:	learn: 11.8403806	total: 2s	remaining: 273ms
88:	learn: 11.7294124	total: 2.02s	remaining: 250ms
89:	learn: 11.6395689	total: 2.04s	remaining: 227ms
90:	learn: 11.5510643	total: 2.06s	remaining: 204ms
91:	learn: 11.4455301	total: 2.1s	remaining: 182ms
92:	learn: 11.3368661	total: 2.12s	remaining: 159ms
93:	learn: 11.2270796	total: 2.14s	remaining: 136ms
94:	learn: 11.1168414	total: 2.16s	remaining: 114ms
95:	learn: 11.0310985	total: 2.18s	remaining: 90.8ms
96:	learn: 10.9735185	total: 2.2s	remaining: 68ms
97:	learn: 10.8575874	total: 2.22s	remaining: 45.3ms
98:	learn: 10.7816173	total: 2.24s	remaining: 22.7ms
99:	learn: 10.7111737	total: 2.27s	remaining: 0us
0:	learn: 27.6871645	total: 5.81ms	remaining: 575ms
1:	learn: 27.3312003	total: 11.7ms	remaining: 572ms
2:	learn: 26.9359558	total: 17.8ms	remaining: 575ms
3:	learn: 26.6055364	total: 23.2ms	remaining: 557ms
4:	learn: 26.1664924	total: 28.7ms	remaining: 545ms
5:	learn: 25.8515393	total: 34.6ms	remaining: 541ms
6:	learn: 25.4620036	total: 40.2ms	remaining: 534ms
7:	learn: 25.1669741	total: 45.6ms	remaining: 524ms
8:	learn: 24.8455454	total: 62.2ms	remaining: 629ms
9:	learn: 24.5106323	total: 67.6ms	remaining: 608ms
10:	learn: 24.1915228	total: 72.8ms	remaining: 589ms
11:	learn: 23.9076053	total: 77.7ms	remaining: 570ms
12:	learn: 23.6692445	total: 82.7ms	remaining: 554ms
13:	learn: 23.4343504	total: 87.9ms	remaining: 540ms
14:	learn: 23.2425280	total: 93.2ms	remaining: 528ms
15:	learn: 22.9254142	total: 98.1ms	remaining: 515ms
16:	learn: 22.6495489	total: 103ms	remaining: 502ms
17:	learn: 22.4343705	total: 108ms	remaining: 491ms
18:	learn: 22.2154202	total: 113ms	remaining: 480ms
19:	learn: 22.0592712	total: 117ms	remaining: 469ms
20:	learn: 21.7971944	total: 122ms	remaining: 459ms
21:	learn: 21.6128930	total: 127ms	remaining: 451ms
22:	learn: 21.3882946	total: 132ms	remaining: 442ms
23:	learn: 21.0912570	total: 137ms	remaining: 433ms
24:	learn: 20.8922857	total: 142ms	remaining: 427ms
25:	learn: 20.7150574	total: 147ms	remaining: 420ms
26:	learn: 20.5673183	total: 155ms	remaining: 420ms
27:	learn: 20.4331275	total: 163ms	remaining: 419ms
28:	learn: 20.2782866	total: 170ms	remaining: 417ms
29:	learn: 20.1061525	total: 176ms	remaining: 412ms
30:	learn: 19.9225948	total: 182ms	remaining: 405ms
31:	learn: 19.7809193	total: 188ms	remaining: 399ms
32:	learn: 19.6057771	total: 195ms	remaining: 395ms
33:	learn: 19.4391243	total: 200ms	remaining: 387ms
34:	learn: 19.2234365	total: 205ms	remaining: 380ms
35:	learn: 19.0214424	total: 209ms	remaining: 372ms
36:	learn: 18.8990643	total: 214ms	remaining: 365ms
37:	learn: 18.7473635	total: 219ms	remaining: 357ms
38:	learn: 18.6125192	total: 224ms	remaining: 350ms
39:	learn: 18.4977949	total: 229ms	remaining: 343ms
40:	learn: 18.3914568	total: 234ms	remaining: 336ms
41:	learn: 18.2541544	total: 238ms	remaining: 329ms
42:	learn: 18.1038984	total: 243ms	remaining: 322ms
43:	learn: 17.9706172	total: 248ms	remaining: 315ms
44:	learn: 17.8198810	total: 252ms	remaining: 309ms
45:	learn: 17.7102597	total: 257ms	remaining: 302ms
46:	learn: 17.6148228	total: 262ms	remaining: 296ms
47:	learn: 17.5115365	total: 267ms	remaining: 290ms
48:	learn: 17.3884162	total: 272ms	remaining: 283ms
49:	learn: 17.2857632	total: 277ms	remaining: 277ms
50:	learn: 17.1618843	total: 283ms	remaining: 272ms
51:	learn: 17.0529601	total: 288ms	remaining: 266ms
52:	learn: 16.9330273	total: 293ms	remaining: 260ms
53:	learn: 16.8206672	total: 298ms	remaining: 254ms
54:	learn: 16.7080356	total: 303ms	remaining: 248ms
55:	learn: 16.5874354	total: 308ms	remaining: 242ms
56:	learn: 16.4929860	total: 313ms	remaining: 236ms
57:	learn: 16.4269419	total: 317ms	remaining: 230ms
58:	learn: 16.3474026	total: 323ms	remaining: 224ms
59:	learn: 16.2515784	total: 328ms	remaining: 218ms
60:	learn: 16.1743901	total: 332ms	remaining: 212ms
61:	learn: 16.0389930	total: 337ms	remaining: 207ms
62:	learn: 15.9671636	total: 343ms	remaining: 201ms
63:	learn: 15.8928486	total: 348ms	remaining: 196ms
64:	learn: 15.8303841	total: 353ms	remaining: 190ms
65:	learn: 15.7612266	total: 359ms	remaining: 185ms
66:	learn: 15.6811172	total: 364ms	remaining: 179ms
67:	learn: 15.6262138	total: 369ms	remaining: 174ms
68:	learn: 15.5662508	total: 379ms	remaining: 170ms
69:	learn: 15.4804354	total: 393ms	remaining: 168ms
70:	learn: 15.4054915	total: 402ms	remaining: 164ms
71:	learn: 15.3271396	total: 409ms	remaining: 159ms
72:	learn: 15.2828359	total: 415ms	remaining: 154ms
73:	learn: 15.2197404	total: 422ms	remaining: 148ms
74:	learn: 15.1315902	total: 428ms	remaining: 143ms
75:	learn: 15.0780523	total: 434ms	remaining: 137ms
76:	learn: 14.9959155	total: 440ms	remaining: 131ms
77:	learn: 14.9265008	total: 445ms	remaining: 126ms
78:	learn: 14.8570189	total: 451ms	remaining: 120ms
79:	learn: 14.8060372	total: 456ms	remaining: 114ms
80:	learn: 14.7294676	total: 463ms	remaining: 108ms
81:	learn: 14.6708309	total: 469ms	remaining: 103ms
82:	learn: 14.5765370	total: 474ms	remaining: 97ms
83:	learn: 14.5312713	total: 479ms	remaining: 91.2ms
84:	learn: 14.4830327	total: 484ms	remaining: 85.4ms
85:	learn: 14.4296247	total: 489ms	remaining: 79.6ms
86:	learn: 14.3381470	total: 494ms	remaining: 73.8ms
87:	learn: 14.2638093	total: 499ms	remaining: 68ms
88:	learn: 14.2288435	total: 504ms	remaining: 62.3ms
89:	learn: 14.1489273	total: 509ms	remaining: 56.5ms
90:	learn: 14.0937923	total: 514ms	remaining: 50.8ms
91:	learn: 14.0334062	total: 519ms	remaining: 45.1ms
92:	learn: 13.9854696	total: 524ms	remaining: 39.4ms
93:	learn: 13.9444203	total: 529ms	remaining: 33.8ms
94:	learn: 13.9101523	total: 534ms	remaining: 28.1ms
95:	learn: 13.8460655	total: 539ms	remaining: 22.5ms
96:	learn: 13.7809420	total: 544ms	remaining: 16.8ms
97:	learn: 13.7270532	total: 549ms	remaining: 11.2ms
98:	learn: 13.6891300	total: 555ms	remaining: 5.6ms
99:	learn: 13.6569696	total: 560ms	remaining: 0us
0:	learn: 42.9754370	total: 5.25ms	remaining: 519ms
1:	learn: 42.2613272	total: 10.2ms	remaining: 499ms
2:	learn: 41.4729969	total: 15.3ms	remaining: 495ms
3:	learn: 40.7127004	total: 20.3ms	remaining: 487ms
4:	learn: 39.7775109	total: 25ms	remaining: 476ms
5:	learn: 39.1736663	total: 30ms	remaining: 470ms
6:	learn: 38.2981109	total: 35ms	remaining: 464ms
7:	learn: 37.5352984	total: 39.7ms	remaining: 457ms
8:	learn: 36.7771474	total: 44.9ms	remaining: 454ms
9:	learn: 36.0581366	total: 50ms	remaining: 450ms
10:	learn: 35.3542706	total: 54.9ms	remaining: 445ms
11:	learn: 34.6937007	total: 59.7ms	remaining: 438ms
12:	learn: 34.0408035	total: 64.9ms	remaining: 434ms
13:	learn: 33.3460240	total: 69.8ms	remaining: 429ms
14:	learn: 32.8086243	total: 74.6ms	remaining: 423ms
15:	learn: 32.1934462	total: 79.6ms	remaining: 418ms
16:	learn: 31.6465519	total: 84.4ms	remaining: 412ms
17:	learn: 31.2161293	total: 89.1ms	remaining: 406ms
18:	learn: 30.6730548	total: 93.9ms	remaining: 400ms
19:	learn: 30.3153659	total: 98.7ms	remaining: 395ms
20:	learn: 29.7661420	total: 104ms	remaining: 390ms
21:	learn: 29.2095664	total: 108ms	remaining: 385ms
22:	learn: 28.7509592	total: 113ms	remaining: 380ms
23:	learn: 28.4347528	total: 118ms	remaining: 375ms
24:	learn: 28.0551654	total: 123ms	remaining: 370ms
25:	learn: 27.7295952	total: 129ms	remaining: 367ms
26:	learn: 27.2329225	total: 134ms	remaining: 362ms
27:	learn: 26.9970607	total: 139ms	remaining: 358ms
28:	learn: 26.6596544	total: 144ms	remaining: 354ms
29:	learn: 26.2633576	total: 149ms	remaining: 349ms
30:	learn: 25.9761623	total: 155ms	remaining: 346ms
31:	learn: 25.6177371	total: 165ms	remaining: 351ms
32:	learn: 25.2165933	total: 175ms	remaining: 356ms
33:	learn: 24.8012870	total: 183ms	remaining: 356ms
34:	learn: 24.4772532	total: 192ms	remaining: 356ms
35:	learn: 24.1560359	total: 198ms	remaining: 351ms
36:	learn: 23.9688812	total: 204ms	remaining: 347ms
37:	learn: 23.6907607	total: 210ms	remaining: 342ms
38:	learn: 23.3885772	total: 215ms	remaining: 337ms
39:	learn: 23.2234939	total: 221ms	remaining: 332ms
40:	learn: 22.9785026	total: 227ms	remaining: 327ms
41:	learn: 22.6827268	total: 232ms	remaining: 321ms
42:	learn: 22.4564360	total: 238ms	remaining: 316ms
43:	learn: 22.2517827	total: 244ms	remaining: 310ms
44:	learn: 21.9858709	total: 250ms	remaining: 305ms
45:	learn: 21.7595870	total: 256ms	remaining: 300ms
46:	learn: 21.5929957	total: 261ms	remaining: 294ms
47:	learn: 21.4071752	total: 266ms	remaining: 288ms
48:	learn: 21.2186470	total: 271ms	remaining: 282ms
49:	learn: 21.0691824	total: 276ms	remaining: 276ms
50:	learn: 20.8921347	total: 281ms	remaining: 270ms
51:	learn: 20.6834229	total: 286ms	remaining: 264ms
52:	learn: 20.4718988	total: 290ms	remaining: 257ms
53:	learn: 20.3413889	total: 295ms	remaining: 252ms
54:	learn: 20.1785464	total: 300ms	remaining: 245ms
55:	learn: 19.9824314	total: 305ms	remaining: 240ms
56:	learn: 19.8217596	total: 311ms	remaining: 234ms
57:	learn: 19.6318474	total: 316ms	remaining: 229ms
58:	learn: 19.4962236	total: 321ms	remaining: 223ms
59:	learn: 19.3114985	total: 327ms	remaining: 218ms
60:	learn: 19.2181156	total: 333ms	remaining: 213ms
61:	learn: 19.0689614	total: 338ms	remaining: 207ms
62:	learn: 18.9563267	total: 343ms	remaining: 201ms
63:	learn: 18.8343083	total: 348ms	remaining: 196ms
64:	learn: 18.7050033	total: 356ms	remaining: 192ms
65:	learn: 18.6014163	total: 364ms	remaining: 188ms
66:	learn: 18.4910692	total: 371ms	remaining: 183ms
67:	learn: 18.3935194	total: 377ms	remaining: 178ms
68:	learn: 18.2825842	total: 383ms	remaining: 172ms
69:	learn: 18.1519267	total: 389ms	remaining: 167ms
70:	learn: 18.0527651	total: 394ms	remaining: 161ms
71:	learn: 17.9770106	total: 399ms	remaining: 155ms
72:	learn: 17.9151628	total: 404ms	remaining: 149ms
73:	learn: 17.7957486	total: 409ms	remaining: 144ms
74:	learn: 17.7025765	total: 414ms	remaining: 138ms
75:	learn: 17.5957242	total: 419ms	remaining: 132ms
76:	learn: 17.4683244	total: 424ms	remaining: 127ms
77:	learn: 17.3415729	total: 429ms	remaining: 121ms
78:	learn: 17.2886896	total: 434ms	remaining: 115ms
79:	learn: 17.2280922	total: 438ms	remaining: 110ms
80:	learn: 17.1188996	total: 443ms	remaining: 104ms
81:	learn: 17.0236450	total: 448ms	remaining: 98.3ms
82:	learn: 16.9046661	total: 453ms	remaining: 92.7ms
83:	learn: 16.7930633	total: 457ms	remaining: 87.1ms
84:	learn: 16.6870100	total: 462ms	remaining: 81.6ms
85:	learn: 16.5512107	total: 467ms	remaining: 76ms
86:	learn: 16.4353400	total: 472ms	remaining: 70.5ms
87:	learn: 16.3256461	total: 477ms	remaining: 65ms
88:	learn: 16.2968057	total: 481ms	remaining: 59.5ms
89:	learn: 16.2136078	total: 486ms	remaining: 54ms
90:	learn: 16.1596096	total: 491ms	remaining: 48.6ms
91:	learn: 16.1164050	total: 496ms	remaining: 43.1ms
92:	learn: 16.0660454	total: 501ms	remaining: 37.7ms
93:	learn: 16.0380611	total: 506ms	remaining: 32.3ms
94:	learn: 15.9494441	total: 511ms	remaining: 26.9ms
95:	learn: 15.8874840	total: 516ms	remaining: 21.5ms
96:	learn: 15.8288234	total: 521ms	remaining: 16.1ms
97:	learn: 15.7562787	total: 527ms	remaining: 10.7ms
98:	learn: 15.6822678	total: 537ms	remaining: 5.42ms
99:	learn: 15.5901500	total: 542ms	remaining: 0us
0:	learn: 46.4504871	total: 5.77ms	remaining: 571ms
1:	learn: 45.7240114	total: 11.5ms	remaining: 564ms
2:	learn: 45.0308025	total: 17.4ms	remaining: 562ms
3:	learn: 44.1111169	total: 22.9ms	remaining: 551ms
4:	learn: 43.3925352	total: 28.6ms	remaining: 543ms
5:	learn: 42.7856354	total: 34.3ms	remaining: 538ms
6:	learn: 42.1998170	total: 40.2ms	remaining: 535ms
7:	learn: 41.3532708	total: 46.1ms	remaining: 530ms
8:	learn: 40.7314571	total: 51.5ms	remaining: 521ms
9:	learn: 39.9838066	total: 56.8ms	remaining: 511ms
10:	learn: 39.4168243	total: 61.6ms	remaining: 498ms
11:	learn: 39.0148769	total: 66.4ms	remaining: 487ms
12:	learn: 38.3055855	total: 71.1ms	remaining: 476ms
13:	learn: 37.7343198	total: 76ms	remaining: 467ms
14:	learn: 37.4177463	total: 80.8ms	remaining: 458ms
15:	learn: 36.9043298	total: 85.5ms	remaining: 449ms
16:	learn: 36.3139174	total: 90.1ms	remaining: 440ms
17:	learn: 35.7200448	total: 94.8ms	remaining: 432ms
18:	learn: 35.3763394	total: 99.5ms	remaining: 424ms
19:	learn: 34.7666728	total: 104ms	remaining: 417ms
20:	learn: 34.2642890	total: 109ms	remaining: 409ms
21:	learn: 33.8196936	total: 114ms	remaining: 403ms
22:	learn: 33.4205669	total: 118ms	remaining: 397ms
23:	learn: 32.8565493	total: 124ms	remaining: 391ms
24:	learn: 32.5287132	total: 128ms	remaining: 385ms
25:	learn: 32.2142064	total: 134ms	remaining: 380ms
26:	learn: 31.9258854	total: 139ms	remaining: 375ms
27:	learn: 31.4083665	total: 144ms	remaining: 370ms
28:	learn: 31.1615620	total: 149ms	remaining: 365ms
29:	learn: 30.6948867	total: 155ms	remaining: 361ms
30:	learn: 30.3185108	total: 162ms	remaining: 361ms
31:	learn: 29.9245223	total: 175ms	remaining: 371ms
32:	learn: 29.6683643	total: 185ms	remaining: 375ms
33:	learn: 29.3868143	total: 191ms	remaining: 370ms
34:	learn: 29.1105699	total: 197ms	remaining: 365ms
35:	learn: 28.8274848	total: 202ms	remaining: 359ms
36:	learn: 28.5478288	total: 207ms	remaining: 353ms
37:	learn: 28.2355121	total: 212ms	remaining: 346ms
38:	learn: 28.0182564	total: 217ms	remaining: 340ms
39:	learn: 27.7654405	total: 222ms	remaining: 333ms
40:	learn: 27.5720477	total: 227ms	remaining: 327ms
41:	learn: 27.3182782	total: 231ms	remaining: 320ms
42:	learn: 26.9504431	total: 236ms	remaining: 313ms
43:	learn: 26.7281906	total: 241ms	remaining: 307ms
44:	learn: 26.5390008	total: 246ms	remaining: 301ms
45:	learn: 26.3781338	total: 251ms	remaining: 294ms
46:	learn: 26.1763177	total: 255ms	remaining: 288ms
47:	learn: 25.9417647	total: 260ms	remaining: 282ms
48:	learn: 25.7528045	total: 265ms	remaining: 276ms
49:	learn: 25.6336897	total: 269ms	remaining: 269ms
50:	learn: 25.4800426	total: 274ms	remaining: 263ms
51:	learn: 25.2895681	total: 279ms	remaining: 257ms
52:	learn: 25.0827111	total: 283ms	remaining: 251ms
53:	learn: 24.7987678	total: 288ms	remaining: 245ms
54:	learn: 24.6309982	total: 293ms	remaining: 239ms
55:	learn: 24.3526776	total: 297ms	remaining: 234ms
56:	learn: 24.1689125	total: 302ms	remaining: 228ms
57:	learn: 23.9802039	total: 307ms	remaining: 222ms
58:	learn: 23.8059432	total: 312ms	remaining: 217ms
59:	learn: 23.6006403	total: 317ms	remaining: 211ms
60:	learn: 23.2948382	total: 321ms	remaining: 205ms
61:	learn: 23.1338922	total: 326ms	remaining: 200ms
62:	learn: 22.9581269	total: 332ms	remaining: 195ms
63:	learn: 22.8263127	total: 337ms	remaining: 189ms
64:	learn: 22.6966006	total: 342ms	remaining: 184ms
65:	learn: 22.6012389	total: 347ms	remaining: 179ms
66:	learn: 22.4220244	total: 352ms	remaining: 174ms
67:	learn: 22.3148342	total: 359ms	remaining: 169ms
68:	learn: 22.1543592	total: 368ms	remaining: 166ms
69:	learn: 22.0614050	total: 380ms	remaining: 163ms
70:	learn: 21.9134025	total: 388ms	remaining: 159ms
71:	learn: 21.8198101	total: 394ms	remaining: 153ms
72:	learn: 21.6944173	total: 400ms	remaining: 148ms
73:	learn: 21.4727420	total: 406ms	remaining: 143ms
74:	learn: 21.3000560	total: 412ms	remaining: 137ms
75:	learn: 21.1884740	total: 418ms	remaining: 132ms
76:	learn: 21.0321317	total: 437ms	remaining: 131ms
77:	learn: 20.9371793	total: 442ms	remaining: 125ms
78:	learn: 20.6800341	total: 447ms	remaining: 119ms
79:	learn: 20.5629904	total: 452ms	remaining: 113ms
80:	learn: 20.4098217	total: 457ms	remaining: 107ms
81:	learn: 20.2139261	total: 462ms	remaining: 101ms
82:	learn: 20.1024260	total: 466ms	remaining: 95.5ms
83:	learn: 19.9835855	total: 471ms	remaining: 89.7ms
84:	learn: 19.9018880	total: 476ms	remaining: 83.9ms
85:	learn: 19.7819843	total: 481ms	remaining: 78.2ms
86:	learn: 19.6352780	total: 486ms	remaining: 72.6ms
87:	learn: 19.4888328	total: 490ms	remaining: 66.9ms
88:	learn: 19.4365121	total: 495ms	remaining: 61.2ms
89:	learn: 19.3427430	total: 500ms	remaining: 55.5ms
90:	learn: 19.2884907	total: 505ms	remaining: 49.9ms
91:	learn: 19.1898932	total: 510ms	remaining: 44.3ms
92:	learn: 19.0775661	total: 514ms	remaining: 38.7ms
93:	learn: 19.0334055	total: 520ms	remaining: 33.2ms
94:	learn: 18.9381916	total: 525ms	remaining: 27.6ms
95:	learn: 18.8471198	total: 530ms	remaining: 22.1ms
96:	learn: 18.7136478	total: 535ms	remaining: 16.5ms
97:	learn: 18.6633102	total: 540ms	remaining: 11ms
98:	learn: 18.5887516	total: 546ms	remaining: 5.51ms
99:	learn: 18.4841597	total: 565ms	remaining: 0us
0:	learn: 46.2172336	total: 5.02ms	remaining: 497ms
1:	learn: 45.4248871	total: 9.93ms	remaining: 487ms
2:	learn: 44.8702937	total: 14.9ms	remaining: 483ms
3:	learn: 44.2019212	total: 20ms	remaining: 481ms
4:	learn: 43.4805210	total: 24.9ms	remaining: 473ms
5:	learn: 42.7336269	total: 29.8ms	remaining: 467ms
6:	learn: 42.0396670	total: 34.6ms	remaining: 460ms
7:	learn: 41.5668459	total: 39.3ms	remaining: 452ms
8:	learn: 40.8999125	total: 44.1ms	remaining: 446ms
9:	learn: 40.3358512	total: 49ms	remaining: 441ms
10:	learn: 39.7511489	total: 54.2ms	remaining: 439ms
11:	learn: 39.0775416	total: 59.1ms	remaining: 433ms
12:	learn: 38.5204735	total: 63.7ms	remaining: 426ms
13:	learn: 38.2087509	total: 68.6ms	remaining: 422ms
14:	learn: 37.7259552	total: 73.4ms	remaining: 416ms
15:	learn: 37.1646397	total: 78.2ms	remaining: 411ms
16:	learn: 36.7093520	total: 83.5ms	remaining: 407ms
17:	learn: 36.2212308	total: 89ms	remaining: 406ms
18:	learn: 35.8682156	total: 93.9ms	remaining: 401ms
19:	learn: 35.6026383	total: 99ms	remaining: 396ms
20:	learn: 35.1739725	total: 104ms	remaining: 391ms
21:	learn: 34.5938003	total: 109ms	remaining: 385ms
22:	learn: 34.1479056	total: 114ms	remaining: 381ms
23:	learn: 33.8759356	total: 119ms	remaining: 376ms
24:	learn: 33.2898426	total: 127ms	remaining: 382ms
25:	learn: 32.9220237	total: 135ms	remaining: 384ms
26:	learn: 32.4324374	total: 142ms	remaining: 385ms
27:	learn: 32.1726327	total: 148ms	remaining: 381ms
28:	learn: 31.8020879	total: 154ms	remaining: 376ms
29:	learn: 31.4329781	total: 161ms	remaining: 376ms
30:	learn: 30.9995282	total: 167ms	remaining: 372ms
31:	learn: 30.6815978	total: 173ms	remaining: 368ms
32:	learn: 30.2991029	total: 179ms	remaining: 364ms
33:	learn: 30.0354202	total: 185ms	remaining: 359ms
34:	learn: 29.7620535	total: 191ms	remaining: 355ms
35:	learn: 29.4552589	total: 197ms	remaining: 350ms
36:	learn: 29.2634399	total: 202ms	remaining: 344ms
37:	learn: 28.8345135	total: 208ms	remaining: 339ms
38:	learn: 28.5551142	total: 214ms	remaining: 334ms
39:	learn: 28.3258809	total: 219ms	remaining: 329ms
40:	learn: 28.0835564	total: 225ms	remaining: 323ms
41:	learn: 27.7517159	total: 230ms	remaining: 318ms
42:	learn: 27.5427595	total: 235ms	remaining: 312ms
43:	learn: 27.3925105	total: 241ms	remaining: 307ms
44:	learn: 27.2377120	total: 247ms	remaining: 302ms
45:	learn: 26.9930398	total: 252ms	remaining: 296ms
46:	learn: 26.7748687	total: 257ms	remaining: 290ms
47:	learn: 26.5856986	total: 262ms	remaining: 284ms
48:	learn: 26.4344153	total: 267ms	remaining: 278ms
49:	learn: 26.3263456	total: 272ms	remaining: 272ms
50:	learn: 26.2048412	total: 276ms	remaining: 266ms
51:	learn: 26.0608546	total: 281ms	remaining: 260ms
52:	learn: 25.9428146	total: 286ms	remaining: 254ms
53:	learn: 25.7578029	total: 291ms	remaining: 247ms
54:	learn: 25.5696792	total: 295ms	remaining: 242ms
55:	learn: 25.3291935	total: 300ms	remaining: 236ms
56:	learn: 25.1388942	total: 305ms	remaining: 230ms
57:	learn: 24.9853945	total: 309ms	remaining: 224ms
58:	learn: 24.8037785	total: 315ms	remaining: 219ms
59:	learn: 24.5326704	total: 320ms	remaining: 213ms
60:	learn: 24.2208240	total: 325ms	remaining: 208ms
61:	learn: 24.0774015	total: 330ms	remaining: 202ms
62:	learn: 23.9705824	total: 335ms	remaining: 197ms
63:	learn: 23.8877665	total: 340ms	remaining: 191ms
64:	learn: 23.7309043	total: 362ms	remaining: 195ms
65:	learn: 23.5820140	total: 368ms	remaining: 190ms
66:	learn: 23.3762012	total: 374ms	remaining: 184ms
67:	learn: 23.2317502	total: 378ms	remaining: 178ms
68:	learn: 23.0868331	total: 384ms	remaining: 172ms
69:	learn: 22.9642758	total: 389ms	remaining: 167ms
70:	learn: 22.8085341	total: 393ms	remaining: 161ms
71:	learn: 22.6834294	total: 398ms	remaining: 155ms
72:	learn: 22.6152922	total: 402ms	remaining: 149ms
73:	learn: 22.3675145	total: 407ms	remaining: 143ms
74:	learn: 22.3023338	total: 412ms	remaining: 137ms
75:	learn: 22.1866833	total: 417ms	remaining: 132ms
76:	learn: 22.0163130	total: 421ms	remaining: 126ms
77:	learn: 21.9691306	total: 426ms	remaining: 120ms
78:	learn: 21.9004647	total: 431ms	remaining: 114ms
79:	learn: 21.7931869	total: 435ms	remaining: 109ms
80:	learn: 21.6747916	total: 440ms	remaining: 103ms
81:	learn: 21.5187568	total: 445ms	remaining: 97.7ms
82:	learn: 21.3124880	total: 450ms	remaining: 92.1ms
83:	learn: 21.1979524	total: 455ms	remaining: 86.6ms
84:	learn: 21.1311130	total: 459ms	remaining: 81.1ms
85:	learn: 21.0606062	total: 464ms	remaining: 75.6ms
86:	learn: 20.9900935	total: 469ms	remaining: 70.1ms
87:	learn: 20.8908054	total: 474ms	remaining: 64.6ms
88:	learn: 20.8088525	total: 478ms	remaining: 59.1ms
89:	learn: 20.7300955	total: 483ms	remaining: 53.7ms
90:	learn: 20.6130276	total: 488ms	remaining: 48.3ms
91:	learn: 20.5437508	total: 493ms	remaining: 42.9ms
92:	learn: 20.5029426	total: 498ms	remaining: 37.5ms
93:	learn: 20.4416708	total: 503ms	remaining: 32.1ms
94:	learn: 20.3917812	total: 507ms	remaining: 26.7ms
95:	learn: 20.3305024	total: 512ms	remaining: 21.3ms
96:	learn: 20.2375704	total: 518ms	remaining: 16ms
97:	learn: 20.1835197	total: 523ms	remaining: 10.7ms
98:	learn: 20.1246834	total: 529ms	remaining: 5.34ms
99:	learn: 20.0506334	total: 534ms	remaining: 0us
0:	learn: 46.7334648	total: 18.8ms	remaining: 1.86s
1:	learn: 46.2069876	total: 25ms	remaining: 1.23s
2:	learn: 45.3699967	total: 30.6ms	remaining: 989ms
3:	learn: 44.6866787	total: 35.7ms	remaining: 857ms
4:	learn: 43.8536031	total: 41.1ms	remaining: 781ms
5:	learn: 43.4716853	total: 47ms	remaining: 736ms
6:	learn: 42.9929637	total: 52.8ms	remaining: 702ms
7:	learn: 42.4952169	total: 57.4ms	remaining: 661ms
8:	learn: 41.7548337	total: 62.4ms	remaining: 631ms
9:	learn: 41.1054415	total: 67.2ms	remaining: 604ms
10:	learn: 40.4827492	total: 71.9ms	remaining: 582ms
11:	learn: 39.7605907	total: 76.7ms	remaining: 562ms
12:	learn: 39.2532558	total: 81.4ms	remaining: 545ms
13:	learn: 38.6572753	total: 85.8ms	remaining: 527ms
14:	learn: 38.2886959	total: 90.4ms	remaining: 512ms
15:	learn: 37.7816612	total: 95.4ms	remaining: 501ms
16:	learn: 37.1680589	total: 99.9ms	remaining: 488ms
17:	learn: 36.5753004	total: 105ms	remaining: 476ms
18:	learn: 36.2339458	total: 109ms	remaining: 465ms
19:	learn: 35.9159716	total: 114ms	remaining: 457ms
20:	learn: 35.4591743	total: 119ms	remaining: 448ms
21:	learn: 34.8726070	total: 124ms	remaining: 439ms
22:	learn: 34.3903591	total: 129ms	remaining: 432ms
23:	learn: 34.1236827	total: 134ms	remaining: 425ms
24:	learn: 33.8026540	total: 139ms	remaining: 418ms
25:	learn: 33.4594822	total: 144ms	remaining: 411ms
26:	learn: 33.1338910	total: 150ms	remaining: 404ms
27:	learn: 32.8527106	total: 155ms	remaining: 397ms
28:	learn: 32.4923829	total: 160ms	remaining: 392ms
29:	learn: 32.0560533	total: 169ms	remaining: 395ms
30:	learn: 31.6614408	total: 178ms	remaining: 395ms
31:	learn: 31.2796040	total: 185ms	remaining: 392ms
32:	learn: 30.8214741	total: 190ms	remaining: 386ms
33:	learn: 30.5908694	total: 196ms	remaining: 380ms
34:	learn: 30.3637356	total: 200ms	remaining: 372ms
35:	learn: 30.0446511	total: 205ms	remaining: 365ms
36:	learn: 29.8792549	total: 210ms	remaining: 357ms
37:	learn: 29.5488457	total: 215ms	remaining: 350ms
38:	learn: 29.2808568	total: 220ms	remaining: 343ms
39:	learn: 29.0603765	total: 224ms	remaining: 337ms
40:	learn: 28.8272425	total: 229ms	remaining: 330ms
41:	learn: 28.4753580	total: 234ms	remaining: 323ms
42:	learn: 28.2963614	total: 239ms	remaining: 317ms
43:	learn: 28.1054768	total: 243ms	remaining: 310ms
44:	learn: 27.9038093	total: 248ms	remaining: 303ms
45:	learn: 27.6305487	total: 253ms	remaining: 297ms
46:	learn: 27.4457907	total: 258ms	remaining: 291ms
47:	learn: 27.1855957	total: 263ms	remaining: 285ms
48:	learn: 26.9987934	total: 268ms	remaining: 279ms
49:	learn: 26.7881067	total: 273ms	remaining: 273ms
50:	learn: 26.6385231	total: 278ms	remaining: 267ms
51:	learn: 26.4661755	total: 283ms	remaining: 261ms
52:	learn: 26.3331868	total: 288ms	remaining: 255ms
53:	learn: 26.0353476	total: 293ms	remaining: 249ms
54:	learn: 25.8257147	total: 297ms	remaining: 243ms
55:	learn: 25.5924383	total: 302ms	remaining: 237ms
56:	learn: 25.4082209	total: 307ms	remaining: 232ms
57:	learn: 25.2350104	total: 312ms	remaining: 226ms
58:	learn: 25.1789867	total: 316ms	remaining: 220ms
59:	learn: 24.9111359	total: 321ms	remaining: 214ms
60:	learn: 24.6314503	total: 326ms	remaining: 208ms
61:	learn: 24.4297999	total: 331ms	remaining: 203ms
62:	learn: 24.3126171	total: 336ms	remaining: 197ms
63:	learn: 24.1544005	total: 342ms	remaining: 192ms
64:	learn: 24.0197950	total: 347ms	remaining: 187ms
65:	learn: 23.8483087	total: 352ms	remaining: 182ms
66:	learn: 23.6624915	total: 360ms	remaining: 177ms
67:	learn: 23.5068105	total: 367ms	remaining: 173ms
68:	learn: 23.4266187	total: 378ms	remaining: 170ms
69:	learn: 23.3535388	total: 385ms	remaining: 165ms
70:	learn: 23.2477190	total: 393ms	remaining: 160ms
71:	learn: 23.1877634	total: 398ms	remaining: 155ms
72:	learn: 23.1344720	total: 404ms	remaining: 149ms
73:	learn: 22.9498234	total: 410ms	remaining: 144ms
74:	learn: 22.9068295	total: 416ms	remaining: 139ms
75:	learn: 22.7368434	total: 422ms	remaining: 133ms
76:	learn: 22.6084901	total: 429ms	remaining: 128ms
77:	learn: 22.4690295	total: 435ms	remaining: 123ms
78:	learn: 22.3970100	total: 440ms	remaining: 117ms
79:	learn: 22.3025537	total: 446ms	remaining: 111ms
80:	learn: 22.2089293	total: 452ms	remaining: 106ms
81:	learn: 22.0522107	total: 458ms	remaining: 101ms
82:	learn: 21.9368213	total: 464ms	remaining: 94.9ms
83:	learn: 21.7968322	total: 469ms	remaining: 89.2ms
84:	learn: 21.7416164	total: 473ms	remaining: 83.5ms
85:	learn: 21.6031099	total: 479ms	remaining: 77.9ms
86:	learn: 21.4530627	total: 483ms	remaining: 72.2ms
87:	learn: 21.3118417	total: 488ms	remaining: 66.5ms
88:	learn: 21.2760431	total: 493ms	remaining: 60.9ms
89:	learn: 21.2071350	total: 498ms	remaining: 55.3ms
90:	learn: 21.1051001	total: 502ms	remaining: 49.7ms
91:	learn: 21.0246142	total: 507ms	remaining: 44.1ms
92:	learn: 20.9834999	total: 512ms	remaining: 38.6ms
93:	learn: 20.8989393	total: 517ms	remaining: 33ms
94:	learn: 20.8262231	total: 522ms	remaining: 27.5ms
95:	learn: 20.7369110	total: 527ms	remaining: 22ms
96:	learn: 20.6409587	total: 532ms	remaining: 16.4ms
97:	learn: 20.5553641	total: 537ms	remaining: 10.9ms
98:	learn: 20.4317232	total: 542ms	remaining: 5.47ms
99:	learn: 20.3708681	total: 547ms	remaining: 0us
0:	learn: 27.3441720	total: 21.8ms	remaining: 2.16s
1:	learn: 26.7159954	total: 41.9ms	remaining: 2.05s
2:	learn: 26.0850318	total: 63.1ms	remaining: 2.04s
3:	learn: 25.4039656	total: 84.6ms	remaining: 2.03s
4:	learn: 24.7930659	total: 106ms	remaining: 2.01s
5:	learn: 24.2028590	total: 127ms	remaining: 2s
6:	learn: 23.6622902	total: 147ms	remaining: 1.95s
7:	learn: 23.1531175	total: 167ms	remaining: 1.92s
8:	learn: 22.7050792	total: 190ms	remaining: 1.92s
9:	learn: 22.2151788	total: 221ms	remaining: 1.99s
10:	learn: 21.7708844	total: 245ms	remaining: 1.98s
11:	learn: 21.2587174	total: 268ms	remaining: 1.97s
12:	learn: 20.7559870	total: 290ms	remaining: 1.94s
13:	learn: 20.3040842	total: 311ms	remaining: 1.91s
14:	learn: 19.9019524	total: 332ms	remaining: 1.88s
15:	learn: 19.5186012	total: 353ms	remaining: 1.85s
16:	learn: 19.1521621	total: 373ms	remaining: 1.82s
17:	learn: 18.7652180	total: 394ms	remaining: 1.79s
18:	learn: 18.4446446	total: 422ms	remaining: 1.8s
19:	learn: 18.0977650	total: 447ms	remaining: 1.79s
20:	learn: 17.7791328	total: 466ms	remaining: 1.75s
21:	learn: 17.4777648	total: 485ms	remaining: 1.72s
22:	learn: 17.1794361	total: 506ms	remaining: 1.69s
23:	learn: 16.8685032	total: 528ms	remaining: 1.67s
24:	learn: 16.6274695	total: 548ms	remaining: 1.64s
25:	learn: 16.3071099	total: 568ms	remaining: 1.61s
26:	learn: 16.0249663	total: 590ms	remaining: 1.59s
27:	learn: 15.7535309	total: 613ms	remaining: 1.58s
28:	learn: 15.4777235	total: 644ms	remaining: 1.58s
29:	learn: 15.2410825	total: 666ms	remaining: 1.55s
30:	learn: 15.0133002	total: 688ms	remaining: 1.53s
31:	learn: 14.8018912	total: 710ms	remaining: 1.51s
32:	learn: 14.5701546	total: 733ms	remaining: 1.49s
33:	learn: 14.3799060	total: 754ms	remaining: 1.46s
34:	learn: 14.0975095	total: 776ms	remaining: 1.44s
35:	learn: 13.8873493	total: 798ms	remaining: 1.42s
36:	learn: 13.6812023	total: 827ms	remaining: 1.41s
37:	learn: 13.4943017	total: 852ms	remaining: 1.39s
38:	learn: 13.3224094	total: 874ms	remaining: 1.37s
39:	learn: 13.0967901	total: 895ms	remaining: 1.34s
40:	learn: 12.9138190	total: 917ms	remaining: 1.32s
41:	learn: 12.7764458	total: 939ms	remaining: 1.3s
42:	learn: 12.6593656	total: 959ms	remaining: 1.27s
43:	learn: 12.5051105	total: 981ms	remaining: 1.25s
44:	learn: 12.3057146	total: 1s	remaining: 1.23s
45:	learn: 12.1487674	total: 1.03s	remaining: 1.2s
46:	learn: 11.9614903	total: 1.05s	remaining: 1.18s
47:	learn: 11.7921265	total: 1.08s	remaining: 1.17s
48:	learn: 11.6572640	total: 1.1s	remaining: 1.15s
49:	learn: 11.5251463	total: 1.13s	remaining: 1.13s
50:	learn: 11.3789931	total: 1.15s	remaining: 1.1s
51:	learn: 11.2691375	total: 1.17s	remaining: 1.08s
52:	learn: 11.1161131	total: 1.19s	remaining: 1.06s
53:	learn: 11.0246399	total: 1.22s	remaining: 1.04s
54:	learn: 10.9152420	total: 1.24s	remaining: 1.01s
55:	learn: 10.7746769	total: 1.26s	remaining: 993ms
56:	learn: 10.6222917	total: 1.29s	remaining: 975ms
57:	learn: 10.5096115	total: 1.31s	remaining: 952ms
58:	learn: 10.3857030	total: 1.34s	remaining: 929ms
59:	learn: 10.2789057	total: 1.36s	remaining: 906ms
60:	learn: 10.1490749	total: 1.38s	remaining: 883ms
61:	learn: 10.0553291	total: 1.4s	remaining: 860ms
62:	learn: 9.9351043	total: 1.42s	remaining: 836ms
63:	learn: 9.8245261	total: 1.45s	remaining: 814ms
64:	learn: 9.7207577	total: 1.47s	remaining: 794ms
65:	learn: 9.5920661	total: 1.5s	remaining: 775ms
66:	learn: 9.4832767	total: 1.53s	remaining: 752ms
67:	learn: 9.3724149	total: 1.55s	remaining: 730ms
68:	learn: 9.2459801	total: 1.57s	remaining: 707ms
69:	learn: 9.1740635	total: 1.6s	remaining: 684ms
70:	learn: 9.1015730	total: 1.62s	remaining: 661ms
71:	learn: 9.0196460	total: 1.64s	remaining: 637ms
72:	learn: 8.9458977	total: 1.66s	remaining: 614ms
73:	learn: 8.8434400	total: 1.69s	remaining: 592ms
74:	learn: 8.7495151	total: 1.72s	remaining: 572ms
75:	learn: 8.6521348	total: 1.74s	remaining: 549ms
76:	learn: 8.5654483	total: 1.76s	remaining: 525ms
77:	learn: 8.4965765	total: 1.78s	remaining: 501ms
78:	learn: 8.4308736	total: 1.8s	remaining: 478ms
79:	learn: 8.3675601	total: 1.82s	remaining: 455ms
80:	learn: 8.3193887	total: 1.84s	remaining: 432ms
81:	learn: 8.2507990	total: 1.86s	remaining: 409ms
82:	learn: 8.1583259	total: 1.89s	remaining: 387ms
83:	learn: 8.0995902	total: 1.92s	remaining: 365ms
84:	learn: 8.0236655	total: 1.94s	remaining: 343ms
85:	learn: 7.9634698	total: 1.96s	remaining: 319ms
86:	learn: 7.9109081	total: 1.98s	remaining: 297ms
87:	learn: 7.8385006	total: 2.01s	remaining: 274ms
88:	learn: 7.7859488	total: 2.03s	remaining: 251ms
89:	learn: 7.7270142	total: 2.05s	remaining: 228ms
90:	learn: 7.6774253	total: 2.07s	remaining: 205ms
91:	learn: 7.6126552	total: 2.09s	remaining: 182ms
92:	learn: 7.5392178	total: 2.12s	remaining: 160ms
93:	learn: 7.4745082	total: 2.14s	remaining: 137ms
94:	learn: 7.4106939	total: 2.16s	remaining: 114ms
95:	learn: 7.3573350	total: 2.18s	remaining: 91ms
96:	learn: 7.2889777	total: 2.21s	remaining: 68.2ms
97:	learn: 7.2204939	total: 2.23s	remaining: 45.4ms
98:	learn: 7.1646465	total: 2.25s	remaining: 22.7ms
99:	learn: 7.1204610	total: 2.27s	remaining: 0us
0:	learn: 42.5494645	total: 23ms	remaining: 2.28s
1:	learn: 41.2913513	total: 45ms	remaining: 2.21s
2:	learn: 40.1676527	total: 68.2ms	remaining: 2.21s
3:	learn: 38.7664819	total: 89ms	remaining: 2.13s
4:	learn: 37.5407492	total: 108ms	remaining: 2.06s
5:	learn: 36.4295331	total: 130ms	remaining: 2.03s
6:	learn: 35.2895967	total: 151ms	remaining: 2s
7:	learn: 34.1884539	total: 173ms	remaining: 1.99s
8:	learn: 33.1817690	total: 201ms	remaining: 2.04s
9:	learn: 32.3518195	total: 225ms	remaining: 2.03s
10:	learn: 31.4837515	total: 246ms	remaining: 1.99s
11:	learn: 30.7255972	total: 266ms	remaining: 1.95s
12:	learn: 29.9298648	total: 288ms	remaining: 1.93s
13:	learn: 29.0574249	total: 307ms	remaining: 1.88s
14:	learn: 28.4097384	total: 327ms	remaining: 1.85s
15:	learn: 27.5317445	total: 349ms	remaining: 1.83s
16:	learn: 26.7911946	total: 371ms	remaining: 1.81s
17:	learn: 26.1103465	total: 400ms	remaining: 1.82s
18:	learn: 25.5295903	total: 425ms	remaining: 1.81s
19:	learn: 24.8544960	total: 448ms	remaining: 1.79s
20:	learn: 24.2772682	total: 471ms	remaining: 1.77s
21:	learn: 23.6936944	total: 494ms	remaining: 1.75s
22:	learn: 23.1300945	total: 518ms	remaining: 1.73s
23:	learn: 22.5333494	total: 538ms	remaining: 1.7s
24:	learn: 22.0553465	total: 559ms	remaining: 1.68s
25:	learn: 21.6253628	total: 580ms	remaining: 1.65s
26:	learn: 21.1396219	total: 602ms	remaining: 1.63s
27:	learn: 20.7382905	total: 623ms	remaining: 1.6s
28:	learn: 20.3233915	total: 653ms	remaining: 1.6s
29:	learn: 19.9323992	total: 675ms	remaining: 1.57s
30:	learn: 19.5650439	total: 695ms	remaining: 1.55s
31:	learn: 19.2165649	total: 717ms	remaining: 1.52s
32:	learn: 18.8890056	total: 736ms	remaining: 1.49s
33:	learn: 18.5523762	total: 757ms	remaining: 1.47s
34:	learn: 18.2666116	total: 778ms	remaining: 1.44s
35:	learn: 17.9216926	total: 798ms	remaining: 1.42s
36:	learn: 17.6118879	total: 820ms	remaining: 1.4s
37:	learn: 17.2653313	total: 842ms	remaining: 1.37s
38:	learn: 16.9946585	total: 874ms	remaining: 1.37s
39:	learn: 16.6842506	total: 897ms	remaining: 1.34s
40:	learn: 16.4102287	total: 919ms	remaining: 1.32s
41:	learn: 16.2288795	total: 942ms	remaining: 1.3s
42:	learn: 15.9623692	total: 965ms	remaining: 1.28s
43:	learn: 15.7308231	total: 987ms	remaining: 1.26s
44:	learn: 15.4695555	total: 1.01s	remaining: 1.23s
45:	learn: 15.2706809	total: 1.03s	remaining: 1.21s
46:	learn: 15.0182699	total: 1.05s	remaining: 1.19s
47:	learn: 14.7702088	total: 1.08s	remaining: 1.17s
48:	learn: 14.6303566	total: 1.1s	remaining: 1.15s
49:	learn: 14.4038016	total: 1.13s	remaining: 1.13s
50:	learn: 14.2309807	total: 1.15s	remaining: 1.1s
51:	learn: 14.0308425	total: 1.18s	remaining: 1.09s
52:	learn: 13.8201931	total: 1.2s	remaining: 1.07s
53:	learn: 13.6070078	total: 1.23s	remaining: 1.04s
54:	learn: 13.4230690	total: 1.25s	remaining: 1.02s
55:	learn: 13.2368649	total: 1.28s	remaining: 1s
56:	learn: 13.0449556	total: 1.31s	remaining: 988ms
57:	learn: 12.8375669	total: 1.33s	remaining: 967ms
58:	learn: 12.6795194	total: 1.36s	remaining: 945ms
59:	learn: 12.5197211	total: 1.39s	remaining: 924ms
60:	learn: 12.4011717	total: 1.41s	remaining: 902ms
61:	learn: 12.2396104	total: 1.43s	remaining: 879ms
62:	learn: 12.0647878	total: 1.46s	remaining: 860ms
63:	learn: 11.9247719	total: 1.49s	remaining: 839ms
64:	learn: 11.7923634	total: 1.52s	remaining: 818ms
65:	learn: 11.6628246	total: 1.54s	remaining: 796ms
66:	learn: 11.5688935	total: 1.57s	remaining: 772ms
67:	learn: 11.4345056	total: 1.59s	remaining: 749ms
68:	learn: 11.3136955	total: 1.61s	remaining: 725ms
69:	learn: 11.2040357	total: 1.64s	remaining: 702ms
70:	learn: 11.1067773	total: 1.66s	remaining: 679ms
71:	learn: 10.9728105	total: 1.68s	remaining: 655ms
72:	learn: 10.8338607	total: 1.72s	remaining: 634ms
73:	learn: 10.7202016	total: 1.74s	remaining: 612ms
74:	learn: 10.5983746	total: 1.76s	remaining: 588ms
75:	learn: 10.4882458	total: 1.79s	remaining: 565ms
76:	learn: 10.3827604	total: 1.81s	remaining: 541ms
77:	learn: 10.2485726	total: 1.83s	remaining: 517ms
78:	learn: 10.1524716	total: 1.85s	remaining: 493ms
79:	learn: 10.0765127	total: 1.88s	remaining: 469ms
80:	learn: 9.9617067	total: 1.91s	remaining: 447ms
81:	learn: 9.8357151	total: 1.93s	remaining: 424ms
82:	learn: 9.7311644	total: 1.95s	remaining: 400ms
83:	learn: 9.6314802	total: 1.98s	remaining: 376ms
84:	learn: 9.5137958	total: 2s	remaining: 353ms
85:	learn: 9.4420485	total: 2.02s	remaining: 329ms
86:	learn: 9.3959294	total: 2.04s	remaining: 305ms
87:	learn: 9.3057742	total: 2.06s	remaining: 281ms
88:	learn: 9.2031484	total: 2.09s	remaining: 258ms
89:	learn: 9.0996948	total: 2.11s	remaining: 235ms
90:	learn: 9.0492278	total: 2.14s	remaining: 212ms
91:	learn: 8.9400377	total: 2.16s	remaining: 188ms
92:	learn: 8.8904458	total: 2.19s	remaining: 165ms
93:	learn: 8.8102982	total: 2.21s	remaining: 141ms
94:	learn: 8.7445451	total: 2.23s	remaining: 118ms
95:	learn: 8.6796106	total: 2.26s	remaining: 94.1ms
96:	learn: 8.5875790	total: 2.28s	remaining: 70.6ms
97:	learn: 8.5086871	total: 2.3s	remaining: 47ms
98:	learn: 8.4547244	total: 2.33s	remaining: 23.5ms
99:	learn: 8.3841281	total: 2.35s	remaining: 0us
0:	learn: 46.2258117	total: 3.01ms	remaining: 298ms
1:	learn: 45.1253456	total: 23.7ms	remaining: 1.16s
2:	learn: 43.7311767	total: 44.2ms	remaining: 1.43s
3:	learn: 42.4252819	total: 65ms	remaining: 1.56s
4:	learn: 41.1436655	total: 87.5ms	remaining: 1.66s
5:	learn: 40.0337136	total: 111ms	remaining: 1.73s
6:	learn: 38.9102686	total: 134ms	remaining: 1.78s
7:	learn: 37.7859737	total: 168ms	remaining: 1.93s
8:	learn: 36.7646905	total: 192ms	remaining: 1.94s
9:	learn: 35.9495481	total: 217ms	remaining: 1.95s
10:	learn: 35.0558185	total: 240ms	remaining: 1.94s
11:	learn: 34.1958090	total: 263ms	remaining: 1.93s
12:	learn: 33.3514013	total: 285ms	remaining: 1.91s
13:	learn: 32.3317086	total: 308ms	remaining: 1.89s
14:	learn: 31.5611046	total: 330ms	remaining: 1.87s
15:	learn: 30.6373573	total: 355ms	remaining: 1.86s
16:	learn: 29.8883669	total: 382ms	remaining: 1.86s
17:	learn: 29.2985952	total: 404ms	remaining: 1.84s
18:	learn: 28.6360550	total: 426ms	remaining: 1.82s
19:	learn: 27.9757056	total: 447ms	remaining: 1.79s
20:	learn: 27.2585835	total: 468ms	remaining: 1.76s
21:	learn: 26.6366391	total: 488ms	remaining: 1.73s
22:	learn: 26.1055455	total: 511ms	remaining: 1.71s
23:	learn: 25.4961568	total: 533ms	remaining: 1.69s
24:	learn: 25.1037435	total: 557ms	remaining: 1.67s
25:	learn: 24.5258982	total: 588ms	remaining: 1.67s
26:	learn: 23.9974764	total: 616ms	remaining: 1.67s
27:	learn: 23.5108419	total: 640ms	remaining: 1.65s
28:	learn: 23.0835773	total: 664ms	remaining: 1.63s
29:	learn: 22.5744350	total: 689ms	remaining: 1.61s
30:	learn: 22.1357783	total: 711ms	remaining: 1.58s
31:	learn: 21.7316226	total: 732ms	remaining: 1.56s
32:	learn: 21.4082899	total: 756ms	remaining: 1.53s
33:	learn: 20.9640138	total: 780ms	remaining: 1.51s
34:	learn: 20.6379417	total: 811ms	remaining: 1.5s
35:	learn: 20.2688010	total: 835ms	remaining: 1.48s
36:	learn: 19.8479214	total: 858ms	remaining: 1.46s
37:	learn: 19.5684638	total: 879ms	remaining: 1.43s
38:	learn: 19.1826919	total: 902ms	remaining: 1.41s
39:	learn: 18.9583308	total: 924ms	remaining: 1.39s
40:	learn: 18.6736002	total: 947ms	remaining: 1.36s
41:	learn: 18.3525328	total: 970ms	remaining: 1.34s
42:	learn: 17.9954191	total: 994ms	remaining: 1.32s
43:	learn: 17.6991520	total: 1.02s	remaining: 1.3s
44:	learn: 17.3697888	total: 1.05s	remaining: 1.29s
45:	learn: 17.0519636	total: 1.08s	remaining: 1.26s
46:	learn: 16.7829795	total: 1.1s	remaining: 1.24s
47:	learn: 16.5108695	total: 1.12s	remaining: 1.22s
48:	learn: 16.2366816	total: 1.15s	remaining: 1.19s
49:	learn: 15.9947350	total: 1.17s	remaining: 1.17s
50:	learn: 15.7513561	total: 1.19s	remaining: 1.14s
51:	learn: 15.4328481	total: 1.22s	remaining: 1.12s
52:	learn: 15.2497907	total: 1.24s	remaining: 1.1s
53:	learn: 15.0417076	total: 1.27s	remaining: 1.08s
54:	learn: 14.8861891	total: 1.29s	remaining: 1.06s
55:	learn: 14.6497794	total: 1.31s	remaining: 1.03s
56:	learn: 14.3664771	total: 1.33s	remaining: 1s
57:	learn: 14.2358168	total: 1.35s	remaining: 979ms
58:	learn: 14.0712722	total: 1.37s	remaining: 953ms
59:	learn: 13.9191649	total: 1.39s	remaining: 929ms
60:	learn: 13.7032356	total: 1.41s	remaining: 905ms
61:	learn: 13.5029041	total: 1.44s	remaining: 881ms
62:	learn: 13.3568908	total: 1.47s	remaining: 862ms
63:	learn: 13.1332696	total: 1.49s	remaining: 840ms
64:	learn: 13.0323137	total: 1.51s	remaining: 816ms
65:	learn: 12.8622078	total: 1.54s	remaining: 792ms
66:	learn: 12.7088186	total: 1.56s	remaining: 769ms
67:	learn: 12.5524646	total: 1.58s	remaining: 744ms
68:	learn: 12.4646011	total: 1.6s	remaining: 720ms
69:	learn: 12.3900687	total: 1.62s	remaining: 696ms
70:	learn: 12.2908367	total: 1.65s	remaining: 674ms
71:	learn: 12.1294405	total: 1.67s	remaining: 651ms
72:	learn: 12.0359996	total: 1.69s	remaining: 626ms
73:	learn: 11.9244352	total: 1.71s	remaining: 602ms
74:	learn: 11.8312038	total: 1.73s	remaining: 578ms
75:	learn: 11.6622123	total: 1.75s	remaining: 554ms
76:	learn: 11.5959180	total: 1.77s	remaining: 530ms
77:	learn: 11.4538852	total: 1.79s	remaining: 506ms
78:	learn: 11.3700375	total: 1.81s	remaining: 482ms
79:	learn: 11.2101447	total: 1.83s	remaining: 458ms
80:	learn: 11.0614634	total: 1.85s	remaining: 435ms
81:	learn: 10.9029225	total: 1.88s	remaining: 414ms
82:	learn: 10.7792030	total: 1.91s	remaining: 392ms
83:	learn: 10.6279451	total: 1.94s	remaining: 369ms
84:	learn: 10.5530267	total: 1.96s	remaining: 346ms
85:	learn: 10.4577150	total: 1.98s	remaining: 323ms
86:	learn: 10.4076417	total: 2s	remaining: 300ms
87:	learn: 10.3166632	total: 2.02s	remaining: 276ms
88:	learn: 10.2018151	total: 2.05s	remaining: 253ms
89:	learn: 10.0698484	total: 2.07s	remaining: 230ms
90:	learn: 10.0162824	total: 2.1s	remaining: 208ms
91:	learn: 9.9352639	total: 2.12s	remaining: 184ms
92:	learn: 9.8316734	total: 2.14s	remaining: 161ms
93:	learn: 9.7195471	total: 2.16s	remaining: 138ms
94:	learn: 9.5914894	total: 2.18s	remaining: 115ms
95:	learn: 9.5151851	total: 2.2s	remaining: 91.7ms
96:	learn: 9.3911314	total: 2.22s	remaining: 68.7ms
97:	learn: 9.3417706	total: 2.24s	remaining: 45.8ms
98:	learn: 9.2708440	total: 2.27s	remaining: 22.9ms
99:	learn: 9.1660321	total: 2.29s	remaining: 0us
0:	learn: 45.8627255	total: 2.93ms	remaining: 290ms
1:	learn: 44.7432040	total: 25.3ms	remaining: 1.24s
2:	learn: 43.4398568	total: 46.4ms	remaining: 1.5s
3:	learn: 42.1495515	total: 67.1ms	remaining: 1.61s
4:	learn: 40.9712633	total: 86.9ms	remaining: 1.65s
5:	learn: 40.0119591	total: 108ms	remaining: 1.7s
6:	learn: 39.1914360	total: 130ms	remaining: 1.72s
7:	learn: 38.1861536	total: 152ms	remaining: 1.74s
8:	learn: 37.1477128	total: 180ms	remaining: 1.82s
9:	learn: 36.3044702	total: 204ms	remaining: 1.84s
10:	learn: 35.5837917	total: 226ms	remaining: 1.83s
11:	learn: 34.8664158	total: 247ms	remaining: 1.81s
12:	learn: 33.9129833	total: 266ms	remaining: 1.78s
13:	learn: 32.9094642	total: 288ms	remaining: 1.77s
14:	learn: 32.1965787	total: 309ms	remaining: 1.75s
15:	learn: 31.4598238	total: 328ms	remaining: 1.72s
16:	learn: 30.6578027	total: 348ms	remaining: 1.7s
17:	learn: 30.0227468	total: 370ms	remaining: 1.68s
18:	learn: 29.2954728	total: 404ms	remaining: 1.72s
19:	learn: 28.5928084	total: 429ms	remaining: 1.72s
20:	learn: 27.9445984	total: 451ms	remaining: 1.7s
21:	learn: 27.3493298	total: 474ms	remaining: 1.68s
22:	learn: 26.8491966	total: 497ms	remaining: 1.66s
23:	learn: 26.3177453	total: 517ms	remaining: 1.64s
24:	learn: 25.8134533	total: 536ms	remaining: 1.61s
25:	learn: 25.2000018	total: 558ms	remaining: 1.59s
26:	learn: 24.6570461	total: 579ms	remaining: 1.57s
27:	learn: 24.1062982	total: 619ms	remaining: 1.59s
28:	learn: 23.7489370	total: 643ms	remaining: 1.57s
29:	learn: 23.2050536	total: 667ms	remaining: 1.56s
30:	learn: 22.7824379	total: 689ms	remaining: 1.53s
31:	learn: 22.4052655	total: 711ms	remaining: 1.51s
32:	learn: 21.9525639	total: 734ms	remaining: 1.49s
33:	learn: 21.5482900	total: 759ms	remaining: 1.47s
34:	learn: 21.1900983	total: 782ms	remaining: 1.45s
35:	learn: 20.8243957	total: 807ms	remaining: 1.43s
36:	learn: 20.4401288	total: 832ms	remaining: 1.42s
37:	learn: 20.0960622	total: 866ms	remaining: 1.41s
38:	learn: 19.7795108	total: 897ms	remaining: 1.4s
39:	learn: 19.4922451	total: 922ms	remaining: 1.38s
40:	learn: 19.1827582	total: 947ms	remaining: 1.36s
41:	learn: 18.8902445	total: 971ms	remaining: 1.34s
42:	learn: 18.6833086	total: 994ms	remaining: 1.32s
43:	learn: 18.4251972	total: 1.02s	remaining: 1.29s
44:	learn: 18.1471037	total: 1.04s	remaining: 1.27s
45:	learn: 17.8420017	total: 1.07s	remaining: 1.26s
46:	learn: 17.6101998	total: 1.1s	remaining: 1.24s
47:	learn: 17.3353656	total: 1.12s	remaining: 1.21s
48:	learn: 17.1194789	total: 1.15s	remaining: 1.2s
49:	learn: 16.8898454	total: 1.17s	remaining: 1.17s
50:	learn: 16.6657497	total: 1.2s	remaining: 1.15s
51:	learn: 16.3832867	total: 1.22s	remaining: 1.13s
52:	learn: 16.2098226	total: 1.24s	remaining: 1.1s
53:	learn: 16.0045707	total: 1.27s	remaining: 1.08s
54:	learn: 15.8512887	total: 1.3s	remaining: 1.06s
55:	learn: 15.6485628	total: 1.32s	remaining: 1.04s
56:	learn: 15.4841428	total: 1.35s	remaining: 1.02s
57:	learn: 15.3383158	total: 1.37s	remaining: 995ms
58:	learn: 15.2056282	total: 1.41s	remaining: 977ms
59:	learn: 15.0698337	total: 1.43s	remaining: 952ms
60:	learn: 14.8487796	total: 1.45s	remaining: 928ms
61:	learn: 14.7255751	total: 1.48s	remaining: 905ms
62:	learn: 14.6100414	total: 1.51s	remaining: 885ms
63:	learn: 14.3864212	total: 1.53s	remaining: 861ms
64:	learn: 14.2800460	total: 1.55s	remaining: 838ms
65:	learn: 14.1017299	total: 1.58s	remaining: 813ms
66:	learn: 13.9655015	total: 1.6s	remaining: 788ms
67:	learn: 13.8065764	total: 1.62s	remaining: 764ms
68:	learn: 13.7473285	total: 1.65s	remaining: 743ms
69:	learn: 13.6967309	total: 1.68s	remaining: 719ms
70:	learn: 13.6253255	total: 1.71s	remaining: 699ms
71:	learn: 13.4974926	total: 1.74s	remaining: 676ms
72:	learn: 13.4142694	total: 1.76s	remaining: 652ms
73:	learn: 13.2902600	total: 1.79s	remaining: 628ms
74:	learn: 13.1816461	total: 1.81s	remaining: 603ms
75:	learn: 13.0809498	total: 1.83s	remaining: 579ms
76:	learn: 12.9772285	total: 1.85s	remaining: 554ms
77:	learn: 12.8413858	total: 1.88s	remaining: 530ms
78:	learn: 12.7615799	total: 1.91s	remaining: 508ms
79:	learn: 12.5808659	total: 1.94s	remaining: 485ms
80:	learn: 12.4938330	total: 1.96s	remaining: 461ms
81:	learn: 12.3745576	total: 1.99s	remaining: 436ms
82:	learn: 12.2474104	total: 2.01s	remaining: 411ms
83:	learn: 12.1582297	total: 2.03s	remaining: 387ms
84:	learn: 12.0528081	total: 2.05s	remaining: 362ms
85:	learn: 11.9483355	total: 2.08s	remaining: 338ms
86:	learn: 11.8683204	total: 2.1s	remaining: 313ms
87:	learn: 11.7680945	total: 2.12s	remaining: 289ms
88:	learn: 11.6635447	total: 2.15s	remaining: 266ms
89:	learn: 11.5775031	total: 2.18s	remaining: 242ms
90:	learn: 11.4860538	total: 2.2s	remaining: 218ms
91:	learn: 11.3584960	total: 2.23s	remaining: 194ms
92:	learn: 11.2180285	total: 2.25s	remaining: 169ms
93:	learn: 11.0996558	total: 2.27s	remaining: 145ms
94:	learn: 10.9688832	total: 2.29s	remaining: 121ms
95:	learn: 10.9205457	total: 2.31s	remaining: 96.4ms
96:	learn: 10.8462783	total: 2.33s	remaining: 72.2ms
97:	learn: 10.7481890	total: 2.36s	remaining: 48.1ms
98:	learn: 10.6396315	total: 2.39s	remaining: 24.1ms
99:	learn: 10.5895308	total: 2.41s	remaining: 0us
0:	learn: 46.2892189	total: 21.5ms	remaining: 2.13s
1:	learn: 44.9732744	total: 43.1ms	remaining: 2.11s
2:	learn: 43.8887345	total: 65ms	remaining: 2.1s
3:	learn: 42.6526320	total: 87.5ms	remaining: 2.1s
4:	learn: 41.4812505	total: 111ms	remaining: 2.1s
5:	learn: 40.4431224	total: 142ms	remaining: 2.23s
6:	learn: 39.2936749	total: 167ms	remaining: 2.22s
7:	learn: 38.1961652	total: 190ms	remaining: 2.19s
8:	learn: 37.2194841	total: 214ms	remaining: 2.16s
9:	learn: 36.2518666	total: 238ms	remaining: 2.14s
10:	learn: 35.4919224	total: 260ms	remaining: 2.1s
11:	learn: 34.6975877	total: 283ms	remaining: 2.07s
12:	learn: 33.7869362	total: 306ms	remaining: 2.05s
13:	learn: 33.0646033	total: 335ms	remaining: 2.06s
14:	learn: 32.1821772	total: 359ms	remaining: 2.04s
15:	learn: 31.4340749	total: 381ms	remaining: 2s
16:	learn: 30.6504198	total: 401ms	remaining: 1.96s
17:	learn: 30.0090260	total: 420ms	remaining: 1.91s
18:	learn: 29.4233143	total: 443ms	remaining: 1.89s
19:	learn: 28.7661957	total: 464ms	remaining: 1.85s
20:	learn: 28.1570594	total: 486ms	remaining: 1.83s
21:	learn: 27.6140124	total: 507ms	remaining: 1.8s
22:	learn: 27.0130709	total: 529ms	remaining: 1.77s
23:	learn: 26.2648081	total: 552ms	remaining: 1.75s
24:	learn: 25.7963649	total: 583ms	remaining: 1.75s
25:	learn: 25.2713860	total: 606ms	remaining: 1.73s
26:	learn: 24.8080692	total: 630ms	remaining: 1.7s
27:	learn: 24.3042862	total: 654ms	remaining: 1.68s
28:	learn: 23.9097237	total: 679ms	remaining: 1.66s
29:	learn: 23.4953174	total: 702ms	remaining: 1.64s
30:	learn: 23.0484452	total: 724ms	remaining: 1.61s
31:	learn: 22.7100962	total: 751ms	remaining: 1.59s
32:	learn: 22.1662267	total: 778ms	remaining: 1.58s
33:	learn: 21.7339884	total: 801ms	remaining: 1.55s
34:	learn: 21.3699422	total: 823ms	remaining: 1.53s
35:	learn: 21.0249329	total: 844ms	remaining: 1.5s
36:	learn: 20.6187923	total: 865ms	remaining: 1.47s
37:	learn: 20.2401981	total: 886ms	remaining: 1.45s
38:	learn: 19.9712328	total: 909ms	remaining: 1.42s
39:	learn: 19.6429610	total: 930ms	remaining: 1.4s
40:	learn: 19.3281556	total: 952ms	remaining: 1.37s
41:	learn: 19.0925924	total: 976ms	remaining: 1.35s
42:	learn: 18.8118712	total: 1.01s	remaining: 1.34s
43:	learn: 18.5355748	total: 1.04s	remaining: 1.32s
44:	learn: 18.2783929	total: 1.06s	remaining: 1.3s
45:	learn: 17.9915490	total: 1.08s	remaining: 1.27s
46:	learn: 17.7323317	total: 1.11s	remaining: 1.25s
47:	learn: 17.4448307	total: 1.13s	remaining: 1.22s
48:	learn: 17.2419782	total: 1.15s	remaining: 1.2s
49:	learn: 16.9351352	total: 1.17s	remaining: 1.17s
50:	learn: 16.7728723	total: 1.19s	remaining: 1.15s
51:	learn: 16.5718087	total: 1.22s	remaining: 1.12s
52:	learn: 16.4047483	total: 1.24s	remaining: 1.1s
53:	learn: 16.2888950	total: 1.27s	remaining: 1.08s
54:	learn: 16.1353042	total: 1.29s	remaining: 1.05s
55:	learn: 15.9384012	total: 1.31s	remaining: 1.03s
56:	learn: 15.7488511	total: 1.33s	remaining: 1s
57:	learn: 15.5682846	total: 1.35s	remaining: 977ms
58:	learn: 15.3488716	total: 1.37s	remaining: 952ms
59:	learn: 15.2291272	total: 1.39s	remaining: 927ms
60:	learn: 15.0582519	total: 1.41s	remaining: 904ms
61:	learn: 14.8478458	total: 1.44s	remaining: 885ms
62:	learn: 14.6663416	total: 1.47s	remaining: 864ms
63:	learn: 14.4830825	total: 1.49s	remaining: 840ms
64:	learn: 14.3300895	total: 1.52s	remaining: 817ms
65:	learn: 14.1168590	total: 1.54s	remaining: 794ms
66:	learn: 13.9783298	total: 1.56s	remaining: 769ms
67:	learn: 13.8132857	total: 1.58s	remaining: 745ms
68:	learn: 13.7050863	total: 1.6s	remaining: 721ms
69:	learn: 13.5742501	total: 1.63s	remaining: 697ms
70:	learn: 13.4851362	total: 1.65s	remaining: 674ms
71:	learn: 13.3300610	total: 1.68s	remaining: 652ms
72:	learn: 13.2223060	total: 1.7s	remaining: 628ms
73:	learn: 13.0706731	total: 1.72s	remaining: 604ms
74:	learn: 12.9178099	total: 1.74s	remaining: 580ms
75:	learn: 12.7954645	total: 1.76s	remaining: 556ms
76:	learn: 12.7133688	total: 1.78s	remaining: 533ms
77:	learn: 12.5745537	total: 1.8s	remaining: 508ms
78:	learn: 12.4765302	total: 1.82s	remaining: 485ms
79:	learn: 12.3609145	total: 1.84s	remaining: 461ms
80:	learn: 12.2437759	total: 1.86s	remaining: 437ms
81:	learn: 12.1583763	total: 1.89s	remaining: 415ms
82:	learn: 12.0202500	total: 1.92s	remaining: 393ms
83:	learn: 11.9125166	total: 1.94s	remaining: 369ms
84:	learn: 11.8100729	total: 1.96s	remaining: 346ms
85:	learn: 11.7509521	total: 1.98s	remaining: 323ms
86:	learn: 11.6448436	total: 2s	remaining: 299ms
87:	learn: 11.5550170	total: 2.02s	remaining: 276ms
88:	learn: 11.4624708	total: 2.04s	remaining: 253ms
89:	learn: 11.3547761	total: 2.07s	remaining: 230ms
90:	learn: 11.2513910	total: 2.09s	remaining: 207ms
91:	learn: 11.1414483	total: 2.12s	remaining: 184ms
92:	learn: 11.0742264	total: 2.14s	remaining: 161ms
93:	learn: 10.9721772	total: 2.16s	remaining: 138ms
94:	learn: 10.9118054	total: 2.18s	remaining: 115ms
95:	learn: 10.8465290	total: 2.2s	remaining: 91.6ms
96:	learn: 10.7451745	total: 2.22s	remaining: 68.6ms
97:	learn: 10.6173565	total: 2.24s	remaining: 45.7ms
98:	learn: 10.5562158	total: 2.26s	remaining: 22.8ms
99:	learn: 10.4564960	total: 2.28s	remaining: 0us
0:	learn: 27.3351083	total: 24.8ms	remaining: 2.46s
1:	learn: 26.7523848	total: 50.2ms	remaining: 2.46s
2:	learn: 26.1326580	total: 74.3ms	remaining: 2.4s
3:	learn: 25.5584244	total: 97.5ms	remaining: 2.34s
4:	learn: 25.0458748	total: 121ms	remaining: 2.3s
5:	learn: 24.4868837	total: 146ms	remaining: 2.28s
6:	learn: 23.9306999	total: 172ms	remaining: 2.28s
7:	learn: 23.4799808	total: 202ms	remaining: 2.32s
8:	learn: 22.9510347	total: 226ms	remaining: 2.29s
9:	learn: 22.4529079	total: 249ms	remaining: 2.24s
10:	learn: 21.9320739	total: 273ms	remaining: 2.21s
11:	learn: 21.4729295	total: 297ms	remaining: 2.18s
12:	learn: 21.0885550	total: 321ms	remaining: 2.15s
13:	learn: 20.7063206	total: 345ms	remaining: 2.12s
14:	learn: 20.3539530	total: 373ms	remaining: 2.11s
15:	learn: 20.0071947	total: 401ms	remaining: 2.1s
16:	learn: 19.6579830	total: 427ms	remaining: 2.08s
17:	learn: 19.2450502	total: 452ms	remaining: 2.06s
18:	learn: 18.8010420	total: 476ms	remaining: 2.03s
19:	learn: 18.4055273	total: 501ms	remaining: 2s
20:	learn: 18.0395642	total: 526ms	remaining: 1.98s
21:	learn: 17.6568400	total: 550ms	remaining: 1.95s
22:	learn: 17.4284559	total: 574ms	remaining: 1.92s
23:	learn: 17.0957528	total: 599ms	remaining: 1.9s
24:	learn: 16.7636157	total: 631ms	remaining: 1.89s
25:	learn: 16.4987969	total: 656ms	remaining: 1.86s
26:	learn: 16.2204177	total: 680ms	remaining: 1.84s
27:	learn: 15.9525124	total: 704ms	remaining: 1.81s
28:	learn: 15.5905943	total: 728ms	remaining: 1.78s
29:	learn: 15.3628633	total: 752ms	remaining: 1.75s
30:	learn: 15.1420693	total: 776ms	remaining: 1.73s
31:	learn: 14.9419461	total: 799ms	remaining: 1.7s
32:	learn: 14.7386592	total: 823ms	remaining: 1.67s
33:	learn: 14.5398023	total: 851ms	remaining: 1.65s
34:	learn: 14.2644206	total: 884ms	remaining: 1.64s
35:	learn: 14.0168503	total: 922ms	remaining: 1.64s
36:	learn: 13.7687637	total: 949ms	remaining: 1.61s
37:	learn: 13.5855913	total: 977ms	remaining: 1.59s
38:	learn: 13.3656902	total: 1s	remaining: 1.57s
39:	learn: 13.2111716	total: 1.03s	remaining: 1.55s
40:	learn: 13.0360149	total: 1.06s	remaining: 1.52s
41:	learn: 12.8789444	total: 1.09s	remaining: 1.51s
42:	learn: 12.6680179	total: 1.12s	remaining: 1.49s
43:	learn: 12.4892268	total: 1.16s	remaining: 1.47s
44:	learn: 12.3275828	total: 1.18s	remaining: 1.45s
45:	learn: 12.2035682	total: 1.21s	remaining: 1.42s
46:	learn: 12.0777397	total: 1.24s	remaining: 1.39s
47:	learn: 11.9055552	total: 1.26s	remaining: 1.37s
48:	learn: 11.7465481	total: 1.29s	remaining: 1.34s
49:	learn: 11.5961200	total: 1.33s	remaining: 1.33s
50:	learn: 11.4305519	total: 1.36s	remaining: 1.3s
51:	learn: 11.2794033	total: 1.39s	remaining: 1.28s
52:	learn: 11.1586950	total: 1.42s	remaining: 1.26s
53:	learn: 11.0432937	total: 1.45s	remaining: 1.23s
54:	learn: 10.9094838	total: 1.47s	remaining: 1.21s
55:	learn: 10.7713451	total: 1.5s	remaining: 1.18s
56:	learn: 10.6664177	total: 1.53s	remaining: 1.15s
57:	learn: 10.5600117	total: 1.56s	remaining: 1.13s
58:	learn: 10.4438974	total: 1.59s	remaining: 1.1s
59:	learn: 10.3294224	total: 1.61s	remaining: 1.08s
60:	learn: 10.2510301	total: 1.65s	remaining: 1.05s
61:	learn: 10.1363264	total: 1.68s	remaining: 1.03s
62:	learn: 10.0415049	total: 1.7s	remaining: 1000ms
63:	learn: 9.9499833	total: 1.73s	remaining: 973ms
64:	learn: 9.8774263	total: 1.75s	remaining: 945ms
65:	learn: 9.7458853	total: 1.79s	remaining: 924ms
66:	learn: 9.6733951	total: 1.82s	remaining: 897ms
67:	learn: 9.5861856	total: 1.85s	remaining: 870ms
68:	learn: 9.4524193	total: 1.89s	remaining: 847ms
69:	learn: 9.3501165	total: 1.91s	remaining: 820ms
70:	learn: 9.3092902	total: 1.94s	remaining: 792ms
71:	learn: 9.2244222	total: 1.97s	remaining: 765ms
72:	learn: 9.1554253	total: 2s	remaining: 740ms
73:	learn: 9.1098892	total: 2.03s	remaining: 712ms
74:	learn: 9.0210213	total: 2.05s	remaining: 684ms
75:	learn: 8.9303181	total: 2.08s	remaining: 657ms
76:	learn: 8.8489769	total: 2.11s	remaining: 632ms
77:	learn: 8.7651580	total: 2.14s	remaining: 604ms
78:	learn: 8.7126796	total: 2.17s	remaining: 577ms
79:	learn: 8.6404554	total: 2.21s	remaining: 552ms
80:	learn: 8.5844756	total: 2.24s	remaining: 525ms
81:	learn: 8.5234333	total: 2.27s	remaining: 498ms
82:	learn: 8.4298762	total: 2.29s	remaining: 470ms
83:	learn: 8.3483002	total: 2.32s	remaining: 443ms
84:	learn: 8.2670647	total: 2.35s	remaining: 415ms
85:	learn: 8.1917398	total: 2.4s	remaining: 391ms
86:	learn: 8.1073642	total: 2.43s	remaining: 363ms
87:	learn: 8.0633288	total: 2.46s	remaining: 335ms
88:	learn: 8.0107997	total: 2.48s	remaining: 307ms
89:	learn: 7.9563547	total: 2.51s	remaining: 279ms
90:	learn: 7.8811408	total: 2.54s	remaining: 251ms
91:	learn: 7.8096107	total: 2.56s	remaining: 223ms
92:	learn: 7.7481700	total: 2.59s	remaining: 195ms
93:	learn: 7.6847843	total: 2.63s	remaining: 168ms
94:	learn: 7.6252335	total: 2.67s	remaining: 140ms
95:	learn: 7.5593148	total: 2.7s	remaining: 112ms
96:	learn: 7.5042331	total: 2.72s	remaining: 84.2ms
97:	learn: 7.4553707	total: 2.75s	remaining: 56.2ms
98:	learn: 7.4035691	total: 2.78s	remaining: 28.1ms
99:	learn: 7.3457537	total: 2.81s	remaining: 0us
0:	learn: 42.5901652	total: 27.5ms	remaining: 2.72s
1:	learn: 41.2917733	total: 61.5ms	remaining: 3.02s
2:	learn: 40.0285549	total: 87.8ms	remaining: 2.84s
3:	learn: 38.9051734	total: 114ms	remaining: 2.74s
4:	learn: 37.7712063	total: 140ms	remaining: 2.67s
5:	learn: 36.6826884	total: 168ms	remaining: 2.62s
6:	learn: 35.6341048	total: 203ms	remaining: 2.69s
7:	learn: 34.5035449	total: 233ms	remaining: 2.68s
8:	learn: 33.5636424	total: 261ms	remaining: 2.64s
9:	learn: 32.5970644	total: 298ms	remaining: 2.68s
10:	learn: 31.8528815	total: 325ms	remaining: 2.63s
11:	learn: 31.0330095	total: 351ms	remaining: 2.58s
12:	learn: 30.3119851	total: 378ms	remaining: 2.53s
13:	learn: 29.5212022	total: 406ms	remaining: 2.49s
14:	learn: 28.7182657	total: 441ms	remaining: 2.5s
15:	learn: 28.0433195	total: 469ms	remaining: 2.46s
16:	learn: 27.2966576	total: 497ms	remaining: 2.42s
17:	learn: 26.5122856	total: 523ms	remaining: 2.38s
18:	learn: 25.8998213	total: 557ms	remaining: 2.38s
19:	learn: 25.2416026	total: 584ms	remaining: 2.33s
20:	learn: 24.6399819	total: 610ms	remaining: 2.3s
21:	learn: 24.0372756	total: 639ms	remaining: 2.27s
22:	learn: 23.4553733	total: 675ms	remaining: 2.26s
23:	learn: 22.9027871	total: 702ms	remaining: 2.22s
24:	learn: 22.4470878	total: 730ms	remaining: 2.19s
25:	learn: 21.9143721	total: 757ms	remaining: 2.15s
26:	learn: 21.4979516	total: 794ms	remaining: 2.15s
27:	learn: 21.0867622	total: 821ms	remaining: 2.11s
28:	learn: 20.6187419	total: 850ms	remaining: 2.08s
29:	learn: 20.1662373	total: 877ms	remaining: 2.05s
30:	learn: 19.8225041	total: 910ms	remaining: 2.03s
31:	learn: 19.4539400	total: 938ms	remaining: 1.99s
32:	learn: 19.1127000	total: 966ms	remaining: 1.96s
33:	learn: 18.7767435	total: 992ms	remaining: 1.93s
34:	learn: 18.4038779	total: 1.02s	remaining: 1.91s
35:	learn: 18.0021121	total: 1.05s	remaining: 1.87s
36:	learn: 17.6673419	total: 1.08s	remaining: 1.84s
37:	learn: 17.3562137	total: 1.12s	remaining: 1.83s
38:	learn: 17.0128082	total: 1.15s	remaining: 1.8s
39:	learn: 16.7572783	total: 1.18s	remaining: 1.77s
40:	learn: 16.4883778	total: 1.21s	remaining: 1.74s
41:	learn: 16.1756364	total: 1.23s	remaining: 1.7s
42:	learn: 15.9150506	total: 1.27s	remaining: 1.68s
43:	learn: 15.6787555	total: 1.3s	remaining: 1.65s
44:	learn: 15.3862120	total: 1.33s	remaining: 1.63s
45:	learn: 15.1512250	total: 1.36s	remaining: 1.59s
46:	learn: 14.9410960	total: 1.38s	remaining: 1.56s
47:	learn: 14.7086321	total: 1.41s	remaining: 1.53s
48:	learn: 14.5065360	total: 1.44s	remaining: 1.5s
49:	learn: 14.3007466	total: 1.46s	remaining: 1.46s
50:	learn: 14.0972724	total: 1.49s	remaining: 1.43s
51:	learn: 13.8793525	total: 1.53s	remaining: 1.41s
52:	learn: 13.6381311	total: 1.56s	remaining: 1.38s
53:	learn: 13.4603568	total: 1.59s	remaining: 1.35s
54:	learn: 13.2856920	total: 1.62s	remaining: 1.32s
55:	learn: 13.1350779	total: 1.65s	remaining: 1.29s
56:	learn: 13.0110083	total: 1.67s	remaining: 1.26s
57:	learn: 12.8405210	total: 1.7s	remaining: 1.23s
58:	learn: 12.6793938	total: 1.73s	remaining: 1.2s
59:	learn: 12.5497475	total: 1.77s	remaining: 1.18s
60:	learn: 12.4319334	total: 1.8s	remaining: 1.15s
61:	learn: 12.2780964	total: 1.82s	remaining: 1.12s
62:	learn: 12.1187174	total: 1.85s	remaining: 1.09s
63:	learn: 11.9635081	total: 1.88s	remaining: 1.05s
64:	learn: 11.8366366	total: 1.9s	remaining: 1.02s
65:	learn: 11.6598347	total: 1.93s	remaining: 994ms
66:	learn: 11.5227416	total: 1.96s	remaining: 965ms
67:	learn: 11.4058818	total: 2s	remaining: 943ms
68:	learn: 11.2627892	total: 2.03s	remaining: 913ms
69:	learn: 11.1415094	total: 2.06s	remaining: 883ms
70:	learn: 11.0703329	total: 2.09s	remaining: 853ms
71:	learn: 10.9568944	total: 2.11s	remaining: 822ms
72:	learn: 10.8314078	total: 2.14s	remaining: 792ms
73:	learn: 10.7320013	total: 2.17s	remaining: 762ms
74:	learn: 10.6191666	total: 2.2s	remaining: 732ms
75:	learn: 10.5156798	total: 2.24s	remaining: 708ms
76:	learn: 10.4174442	total: 2.27s	remaining: 678ms
77:	learn: 10.3318165	total: 2.29s	remaining: 647ms
78:	learn: 10.2300435	total: 2.32s	remaining: 617ms
79:	learn: 10.1665911	total: 2.35s	remaining: 587ms
80:	learn: 10.1030585	total: 2.38s	remaining: 557ms
81:	learn: 10.0254875	total: 2.4s	remaining: 528ms
82:	learn: 9.9387640	total: 2.43s	remaining: 498ms
83:	learn: 9.8289920	total: 2.47s	remaining: 470ms
84:	learn: 9.7629500	total: 2.51s	remaining: 442ms
85:	learn: 9.6778611	total: 2.53s	remaining: 412ms
86:	learn: 9.5920617	total: 2.56s	remaining: 383ms
87:	learn: 9.4931297	total: 2.59s	remaining: 353ms
88:	learn: 9.4010604	total: 2.61s	remaining: 323ms
89:	learn: 9.3328614	total: 2.64s	remaining: 293ms
90:	learn: 9.2409094	total: 2.67s	remaining: 264ms
91:	learn: 9.1214245	total: 2.7s	remaining: 235ms
92:	learn: 9.0795335	total: 2.74s	remaining: 206ms
93:	learn: 8.9777250	total: 2.76s	remaining: 176ms
94:	learn: 8.9059891	total: 2.79s	remaining: 147ms
95:	learn: 8.8343294	total: 2.82s	remaining: 117ms
96:	learn: 8.7237295	total: 2.84s	remaining: 88ms
97:	learn: 8.6401509	total: 2.87s	remaining: 58.6ms
98:	learn: 8.5735108	total: 2.91s	remaining: 29.4ms
99:	learn: 8.5084579	total: 2.94s	remaining: 0us
0:	learn: 46.1633714	total: 33.2ms	remaining: 3.29s
1:	learn: 44.7904617	total: 60.3ms	remaining: 2.95s
2:	learn: 43.5292386	total: 87.6ms	remaining: 2.83s
3:	learn: 42.3776226	total: 121ms	remaining: 2.91s
4:	learn: 41.1726533	total: 148ms	remaining: 2.81s
5:	learn: 40.0256490	total: 175ms	remaining: 2.74s
6:	learn: 39.0318588	total: 202ms	remaining: 2.68s
7:	learn: 38.0361181	total: 228ms	remaining: 2.63s
8:	learn: 37.0398789	total: 264ms	remaining: 2.67s
9:	learn: 36.0525089	total: 296ms	remaining: 2.66s
10:	learn: 35.0926830	total: 324ms	remaining: 2.62s
11:	learn: 34.1467022	total: 351ms	remaining: 2.58s
12:	learn: 33.5625454	total: 379ms	remaining: 2.53s
13:	learn: 32.7993162	total: 406ms	remaining: 2.49s
14:	learn: 32.1179593	total: 432ms	remaining: 2.45s
15:	learn: 31.5382898	total: 460ms	remaining: 2.41s
16:	learn: 30.8398862	total: 486ms	remaining: 2.37s
17:	learn: 30.1060070	total: 522ms	remaining: 2.38s
18:	learn: 29.3826415	total: 564ms	remaining: 2.4s
19:	learn: 28.5809579	total: 592ms	remaining: 2.37s
20:	learn: 28.0104942	total: 620ms	remaining: 2.33s
21:	learn: 27.5189566	total: 648ms	remaining: 2.3s
22:	learn: 26.8603656	total: 674ms	remaining: 2.26s
23:	learn: 26.2547050	total: 701ms	remaining: 2.22s
24:	learn: 25.6559137	total: 728ms	remaining: 2.18s
25:	learn: 25.1148352	total: 765ms	remaining: 2.18s
26:	learn: 24.5782363	total: 797ms	remaining: 2.15s
27:	learn: 24.0350871	total: 825ms	remaining: 2.12s
28:	learn: 23.5119480	total: 851ms	remaining: 2.08s
29:	learn: 23.1119795	total: 877ms	remaining: 2.04s
30:	learn: 22.6838288	total: 903ms	remaining: 2.01s
31:	learn: 22.2554624	total: 931ms	remaining: 1.98s
32:	learn: 21.8241578	total: 958ms	remaining: 1.95s
33:	learn: 21.5062830	total: 1.01s	remaining: 1.95s
34:	learn: 21.0109226	total: 1.03s	remaining: 1.92s
35:	learn: 20.5518606	total: 1.06s	remaining: 1.89s
36:	learn: 20.1195339	total: 1.09s	remaining: 1.86s
37:	learn: 19.7143479	total: 1.12s	remaining: 1.82s
38:	learn: 19.3325253	total: 1.14s	remaining: 1.79s
39:	learn: 19.0310706	total: 1.17s	remaining: 1.76s
40:	learn: 18.7262797	total: 1.2s	remaining: 1.72s
41:	learn: 18.3611836	total: 1.24s	remaining: 1.71s
42:	learn: 17.9960838	total: 1.27s	remaining: 1.68s
43:	learn: 17.7058991	total: 1.29s	remaining: 1.65s
44:	learn: 17.3944673	total: 1.32s	remaining: 1.61s
45:	learn: 17.1283561	total: 1.35s	remaining: 1.58s
46:	learn: 16.8406890	total: 1.37s	remaining: 1.55s
47:	learn: 16.6072061	total: 1.4s	remaining: 1.52s
48:	learn: 16.3697411	total: 1.44s	remaining: 1.49s
49:	learn: 15.9995507	total: 1.47s	remaining: 1.47s
50:	learn: 15.7372570	total: 1.5s	remaining: 1.44s
51:	learn: 15.4840152	total: 1.53s	remaining: 1.41s
52:	learn: 15.2899590	total: 1.56s	remaining: 1.38s
53:	learn: 15.0111064	total: 1.58s	remaining: 1.35s
54:	learn: 14.7504952	total: 1.61s	remaining: 1.32s
55:	learn: 14.5309762	total: 1.64s	remaining: 1.29s
56:	learn: 14.3525677	total: 1.67s	remaining: 1.26s
57:	learn: 14.1816296	total: 1.7s	remaining: 1.23s
58:	learn: 13.9958516	total: 1.73s	remaining: 1.2s
59:	learn: 13.8356735	total: 1.76s	remaining: 1.17s
60:	learn: 13.6499824	total: 1.78s	remaining: 1.14s
61:	learn: 13.4621357	total: 1.81s	remaining: 1.11s
62:	learn: 13.3234970	total: 1.84s	remaining: 1.08s
63:	learn: 13.1407122	total: 1.88s	remaining: 1.05s
64:	learn: 13.0161177	total: 1.91s	remaining: 1.03s
65:	learn: 12.8361175	total: 1.93s	remaining: 996ms
66:	learn: 12.7103117	total: 1.97s	remaining: 969ms
67:	learn: 12.5145429	total: 2s	remaining: 939ms
68:	learn: 12.3966318	total: 2.02s	remaining: 909ms
69:	learn: 12.2175623	total: 2.05s	remaining: 879ms
70:	learn: 12.0455583	total: 2.08s	remaining: 849ms
71:	learn: 11.9190589	total: 2.11s	remaining: 821ms
72:	learn: 11.7990452	total: 2.14s	remaining: 790ms
73:	learn: 11.6735331	total: 2.16s	remaining: 760ms
74:	learn: 11.5694753	total: 2.2s	remaining: 733ms
75:	learn: 11.4471422	total: 2.23s	remaining: 703ms
76:	learn: 11.3357642	total: 2.25s	remaining: 673ms
77:	learn: 11.2160164	total: 2.29s	remaining: 645ms
78:	learn: 11.1477947	total: 2.32s	remaining: 616ms
79:	learn: 11.0733969	total: 2.35s	remaining: 586ms
80:	learn: 10.9851608	total: 2.37s	remaining: 556ms
81:	learn: 10.8669537	total: 2.4s	remaining: 527ms
82:	learn: 10.7846130	total: 2.43s	remaining: 497ms
83:	learn: 10.6429068	total: 2.46s	remaining: 469ms
84:	learn: 10.5485368	total: 2.49s	remaining: 439ms
85:	learn: 10.4626750	total: 2.52s	remaining: 410ms
86:	learn: 10.3487863	total: 2.55s	remaining: 381ms
87:	learn: 10.2608682	total: 2.58s	remaining: 352ms
88:	learn: 10.1492862	total: 2.61s	remaining: 322ms
89:	learn: 10.0825429	total: 2.63s	remaining: 293ms
90:	learn: 9.9668337	total: 2.66s	remaining: 263ms
91:	learn: 9.8924239	total: 2.69s	remaining: 234ms
92:	learn: 9.7959729	total: 2.72s	remaining: 205ms
93:	learn: 9.7342503	total: 2.75s	remaining: 176ms
94:	learn: 9.6266181	total: 2.79s	remaining: 147ms
95:	learn: 9.5607316	total: 2.82s	remaining: 117ms
96:	learn: 9.4615938	total: 2.84s	remaining: 88ms
97:	learn: 9.3562852	total: 2.87s	remaining: 58.6ms
98:	learn: 9.2518786	total: 2.9s	remaining: 29.3ms
99:	learn: 9.2130065	total: 2.93s	remaining: 0us
0:	learn: 45.6477780	total: 33.3ms	remaining: 3.3s
1:	learn: 44.3885048	total: 59.9ms	remaining: 2.94s
2:	learn: 43.1316502	total: 86.3ms	remaining: 2.79s
3:	learn: 41.8123054	total: 113ms	remaining: 2.71s
4:	learn: 40.7214533	total: 139ms	remaining: 2.65s
5:	learn: 39.6276122	total: 166ms	remaining: 2.6s
6:	learn: 38.6471225	total: 192ms	remaining: 2.55s
7:	learn: 37.7493668	total: 219ms	remaining: 2.52s
8:	learn: 36.7733816	total: 254ms	remaining: 2.57s
9:	learn: 36.1233521	total: 282ms	remaining: 2.54s
10:	learn: 35.5715091	total: 317ms	remaining: 2.57s
11:	learn: 34.6287751	total: 344ms	remaining: 2.52s
12:	learn: 33.8024988	total: 372ms	remaining: 2.49s
13:	learn: 33.0699864	total: 399ms	remaining: 2.45s
14:	learn: 32.2267139	total: 427ms	remaining: 2.42s
15:	learn: 31.4879090	total: 454ms	remaining: 2.38s
16:	learn: 30.6681130	total: 488ms	remaining: 2.38s
17:	learn: 29.9739192	total: 516ms	remaining: 2.35s
18:	learn: 29.3293065	total: 550ms	remaining: 2.34s
19:	learn: 28.5893418	total: 577ms	remaining: 2.31s
20:	learn: 28.0793862	total: 604ms	remaining: 2.27s
21:	learn: 27.5553702	total: 631ms	remaining: 2.23s
22:	learn: 27.0123732	total: 658ms	remaining: 2.2s
23:	learn: 26.3897992	total: 684ms	remaining: 2.17s
24:	learn: 25.7405079	total: 717ms	remaining: 2.15s
25:	learn: 25.2366375	total: 745ms	remaining: 2.12s
26:	learn: 24.8040727	total: 781ms	remaining: 2.11s
27:	learn: 24.3831145	total: 810ms	remaining: 2.08s
28:	learn: 23.9264258	total: 838ms	remaining: 2.05s
29:	learn: 23.4965665	total: 864ms	remaining: 2.02s
30:	learn: 23.0750907	total: 892ms	remaining: 1.99s
31:	learn: 22.6177456	total: 918ms	remaining: 1.95s
32:	learn: 22.1936903	total: 946ms	remaining: 1.92s
33:	learn: 21.7237373	total: 985ms	remaining: 1.91s
34:	learn: 21.2885821	total: 1.02s	remaining: 1.89s
35:	learn: 20.8773820	total: 1.04s	remaining: 1.85s
36:	learn: 20.5069022	total: 1.07s	remaining: 1.82s
37:	learn: 20.1026772	total: 1.1s	remaining: 1.79s
38:	learn: 19.7278063	total: 1.12s	remaining: 1.76s
39:	learn: 19.4576176	total: 1.15s	remaining: 1.73s
40:	learn: 19.1716041	total: 1.18s	remaining: 1.69s
41:	learn: 18.8541728	total: 1.22s	remaining: 1.69s
42:	learn: 18.6411979	total: 1.25s	remaining: 1.66s
43:	learn: 18.3146636	total: 1.27s	remaining: 1.62s
44:	learn: 18.0208582	total: 1.3s	remaining: 1.59s
45:	learn: 17.7344521	total: 1.33s	remaining: 1.56s
46:	learn: 17.4797974	total: 1.36s	remaining: 1.53s
47:	learn: 17.2182299	total: 1.39s	remaining: 1.51s
48:	learn: 16.9607453	total: 1.42s	remaining: 1.48s
49:	learn: 16.7297863	total: 1.45s	remaining: 1.45s
50:	learn: 16.4913674	total: 1.48s	remaining: 1.42s
51:	learn: 16.2886548	total: 1.51s	remaining: 1.39s
52:	learn: 16.0297055	total: 1.53s	remaining: 1.36s
53:	learn: 15.8558289	total: 1.56s	remaining: 1.33s
54:	learn: 15.6256772	total: 1.59s	remaining: 1.3s
55:	learn: 15.4571057	total: 1.62s	remaining: 1.27s
56:	learn: 15.2857211	total: 1.65s	remaining: 1.25s
57:	learn: 15.0790849	total: 1.68s	remaining: 1.22s
58:	learn: 14.8706573	total: 1.72s	remaining: 1.19s
59:	learn: 14.7142314	total: 1.75s	remaining: 1.16s
60:	learn: 14.5574075	total: 1.77s	remaining: 1.13s
61:	learn: 14.3831719	total: 1.8s	remaining: 1.1s
62:	learn: 14.2429846	total: 1.83s	remaining: 1.07s
63:	learn: 14.0982260	total: 1.86s	remaining: 1.05s
64:	learn: 13.9793470	total: 1.89s	remaining: 1.02s
65:	learn: 13.7843655	total: 1.91s	remaining: 986ms
66:	learn: 13.6382336	total: 1.95s	remaining: 960ms
67:	learn: 13.5395713	total: 1.98s	remaining: 930ms
68:	learn: 13.3797741	total: 2s	remaining: 899ms
69:	learn: 13.2910103	total: 2.03s	remaining: 870ms
70:	learn: 13.1587887	total: 2.06s	remaining: 844ms
71:	learn: 13.0464642	total: 2.09s	remaining: 815ms
72:	learn: 12.9189091	total: 2.12s	remaining: 785ms
73:	learn: 12.8056893	total: 2.15s	remaining: 755ms
74:	learn: 12.6904403	total: 2.19s	remaining: 729ms
75:	learn: 12.5608506	total: 2.21s	remaining: 700ms
76:	learn: 12.4712551	total: 2.24s	remaining: 670ms
77:	learn: 12.3371889	total: 2.27s	remaining: 641ms
78:	learn: 12.2449022	total: 2.3s	remaining: 612ms
79:	learn: 12.2163788	total: 2.33s	remaining: 583ms
80:	learn: 12.1464820	total: 2.36s	remaining: 553ms
81:	learn: 12.0001066	total: 2.38s	remaining: 524ms
82:	learn: 11.8843691	total: 2.41s	remaining: 494ms
83:	learn: 11.7638631	total: 2.45s	remaining: 466ms
84:	learn: 11.6389646	total: 2.47s	remaining: 437ms
85:	learn: 11.5343065	total: 2.51s	remaining: 409ms
86:	learn: 11.4267531	total: 2.54s	remaining: 379ms
87:	learn: 11.3136728	total: 2.56s	remaining: 350ms
88:	learn: 11.2361574	total: 2.59s	remaining: 320ms
89:	learn: 11.1507886	total: 2.62s	remaining: 291ms
90:	learn: 11.0988952	total: 2.65s	remaining: 262ms
91:	learn: 10.9988426	total: 2.68s	remaining: 233ms
92:	learn: 10.9584792	total: 2.71s	remaining: 204ms
93:	learn: 10.8771461	total: 2.74s	remaining: 175ms
94:	learn: 10.8161358	total: 2.77s	remaining: 146ms
95:	learn: 10.7524450	total: 2.8s	remaining: 117ms
96:	learn: 10.6566836	total: 2.82s	remaining: 87.3ms
97:	learn: 10.5550602	total: 2.85s	remaining: 58.2ms
98:	learn: 10.4790583	total: 2.88s	remaining: 29.1ms
99:	learn: 10.4087354	total: 2.9s	remaining: 0us
0:	learn: 46.5398832	total: 39.3ms	remaining: 3.89s
1:	learn: 45.3142618	total: 66.2ms	remaining: 3.24s
2:	learn: 44.0378137	total: 93ms	remaining: 3.01s
3:	learn: 42.7976734	total: 121ms	remaining: 2.9s
4:	learn: 41.7080859	total: 147ms	remaining: 2.79s
5:	learn: 40.4513327	total: 173ms	remaining: 2.72s
6:	learn: 39.4903346	total: 201ms	remaining: 2.67s
7:	learn: 38.3767870	total: 236ms	remaining: 2.71s
8:	learn: 37.4056810	total: 273ms	remaining: 2.76s
9:	learn: 36.4947716	total: 299ms	remaining: 2.69s
10:	learn: 35.4421832	total: 326ms	remaining: 2.63s
11:	learn: 34.6183487	total: 340ms	remaining: 2.49s
12:	learn: 33.9603524	total: 367ms	remaining: 2.46s
13:	learn: 33.0635534	total: 394ms	remaining: 2.42s
14:	learn: 32.2067999	total: 426ms	remaining: 2.41s
15:	learn: 31.3961282	total: 457ms	remaining: 2.4s
16:	learn: 30.7113239	total: 484ms	remaining: 2.36s
17:	learn: 29.9919005	total: 521ms	remaining: 2.37s
18:	learn: 29.4016891	total: 548ms	remaining: 2.34s
19:	learn: 28.7435066	total: 576ms	remaining: 2.3s
20:	learn: 28.2283605	total: 602ms	remaining: 2.27s
21:	learn: 27.6749781	total: 629ms	remaining: 2.23s
22:	learn: 27.1695356	total: 658ms	remaining: 2.2s
23:	learn: 26.6842901	total: 690ms	remaining: 2.19s
24:	learn: 26.0987344	total: 717ms	remaining: 2.15s
25:	learn: 25.5266873	total: 750ms	remaining: 2.13s
26:	learn: 25.0200431	total: 776ms	remaining: 2.1s
27:	learn: 24.5972016	total: 804ms	remaining: 2.07s
28:	learn: 24.1557061	total: 831ms	remaining: 2.03s
29:	learn: 23.7405036	total: 859ms	remaining: 2s
30:	learn: 23.3574513	total: 896ms	remaining: 2s
31:	learn: 23.0493499	total: 926ms	remaining: 1.97s
32:	learn: 22.6480655	total: 953ms	remaining: 1.93s
33:	learn: 22.2777353	total: 981ms	remaining: 1.9s
34:	learn: 21.8294628	total: 1.02s	remaining: 1.89s
35:	learn: 21.4783115	total: 1.04s	remaining: 1.85s
36:	learn: 21.1271427	total: 1.07s	remaining: 1.82s
37:	learn: 20.7967443	total: 1.09s	remaining: 1.79s
38:	learn: 20.4949793	total: 1.13s	remaining: 1.77s
39:	learn: 20.1991695	total: 1.16s	remaining: 1.74s
40:	learn: 19.8869467	total: 1.18s	remaining: 1.7s
41:	learn: 19.5656862	total: 1.21s	remaining: 1.67s
42:	learn: 19.2415335	total: 1.24s	remaining: 1.65s
43:	learn: 18.9725471	total: 1.27s	remaining: 1.62s
44:	learn: 18.7035722	total: 1.3s	remaining: 1.59s
45:	learn: 18.3840395	total: 1.34s	remaining: 1.57s
46:	learn: 18.1486662	total: 1.36s	remaining: 1.54s
47:	learn: 17.8740440	total: 1.39s	remaining: 1.51s
48:	learn: 17.6056273	total: 1.42s	remaining: 1.48s
49:	learn: 17.4011083	total: 1.45s	remaining: 1.45s
50:	learn: 17.1935449	total: 1.48s	remaining: 1.42s
51:	learn: 16.9415227	total: 1.51s	remaining: 1.39s
52:	learn: 16.6568624	total: 1.53s	remaining: 1.36s
53:	learn: 16.4254479	total: 1.57s	remaining: 1.34s
54:	learn: 16.1958120	total: 1.6s	remaining: 1.31s
55:	learn: 15.9494332	total: 1.62s	remaining: 1.28s
56:	learn: 15.7736632	total: 1.65s	remaining: 1.25s
57:	learn: 15.6314122	total: 1.68s	remaining: 1.21s
58:	learn: 15.3707626	total: 1.7s	remaining: 1.18s
59:	learn: 15.2211664	total: 1.74s	remaining: 1.16s
60:	learn: 14.9939278	total: 1.76s	remaining: 1.13s
61:	learn: 14.8327626	total: 1.8s	remaining: 1.1s
62:	learn: 14.6555776	total: 1.83s	remaining: 1.07s
63:	learn: 14.5516961	total: 1.86s	remaining: 1.04s
64:	learn: 14.3660780	total: 1.89s	remaining: 1.01s
65:	learn: 14.1721909	total: 1.91s	remaining: 986ms
66:	learn: 14.0877696	total: 1.94s	remaining: 957ms
67:	learn: 13.9435793	total: 1.98s	remaining: 931ms
68:	learn: 13.7745805	total: 2.01s	remaining: 902ms
69:	learn: 13.6490858	total: 2.04s	remaining: 875ms
70:	learn: 13.5022080	total: 2.07s	remaining: 845ms
71:	learn: 13.3922163	total: 2.09s	remaining: 815ms
72:	learn: 13.2842701	total: 2.12s	remaining: 785ms
73:	learn: 13.1698693	total: 2.15s	remaining: 755ms
74:	learn: 13.0256610	total: 2.17s	remaining: 725ms
75:	learn: 12.8855147	total: 2.21s	remaining: 698ms
76:	learn: 12.7807971	total: 2.24s	remaining: 670ms
77:	learn: 12.6618407	total: 2.28s	remaining: 643ms
78:	learn: 12.5369866	total: 2.31s	remaining: 614ms
79:	learn: 12.4376925	total: 2.34s	remaining: 584ms
80:	learn: 12.3005012	total: 2.37s	remaining: 555ms
81:	learn: 12.1751315	total: 2.39s	remaining: 525ms
82:	learn: 12.0612289	total: 2.42s	remaining: 496ms
83:	learn: 11.9757193	total: 2.45s	remaining: 466ms
84:	learn: 11.8530411	total: 2.49s	remaining: 439ms
85:	learn: 11.7523616	total: 2.52s	remaining: 410ms
86:	learn: 11.6645272	total: 2.54s	remaining: 380ms
87:	learn: 11.5645111	total: 2.57s	remaining: 350ms
88:	learn: 11.4692480	total: 2.6s	remaining: 321ms
89:	learn: 11.3724902	total: 2.62s	remaining: 291ms
90:	learn: 11.2842147	total: 2.65s	remaining: 262ms
91:	learn: 11.1868295	total: 2.68s	remaining: 233ms
92:	learn: 11.0293625	total: 2.72s	remaining: 205ms
93:	learn: 10.9495625	total: 2.75s	remaining: 176ms
94:	learn: 10.8608168	total: 2.78s	remaining: 146ms
95:	learn: 10.7804780	total: 2.81s	remaining: 117ms
96:	learn: 10.6503623	total: 2.83s	remaining: 87.7ms
97:	learn: 10.5906748	total: 2.86s	remaining: 58.4ms
98:	learn: 10.4539468	total: 2.89s	remaining: 29.2ms
99:	learn: 10.3804160	total: 2.92s	remaining: 0us
0:	learn: 27.6506730	total: 5.08ms	remaining: 503ms
1:	learn: 27.1638793	total: 9.39ms	remaining: 460ms
2:	learn: 26.8000665	total: 14.1ms	remaining: 455ms
3:	learn: 26.4256132	total: 19ms	remaining: 455ms
4:	learn: 26.0088351	total: 23.4ms	remaining: 445ms
5:	learn: 25.7558298	total: 27.9ms	remaining: 438ms
6:	learn: 25.3380711	total: 32.5ms	remaining: 431ms
7:	learn: 25.0571611	total: 36.7ms	remaining: 422ms
8:	learn: 24.6790148	total: 41ms	remaining: 414ms
9:	learn: 24.3600941	total: 45.5ms	remaining: 410ms
10:	learn: 24.1105667	total: 50.4ms	remaining: 407ms
11:	learn: 23.7736542	total: 54.9ms	remaining: 403ms
12:	learn: 23.5824429	total: 59.7ms	remaining: 399ms
13:	learn: 23.2658303	total: 64ms	remaining: 393ms
14:	learn: 23.0061886	total: 68.7ms	remaining: 389ms
15:	learn: 22.8060389	total: 73ms	remaining: 383ms
16:	learn: 22.5899735	total: 77.7ms	remaining: 379ms
17:	learn: 22.3625048	total: 82.3ms	remaining: 375ms
18:	learn: 22.0706477	total: 86.7ms	remaining: 370ms
19:	learn: 21.8739394	total: 90.9ms	remaining: 363ms
20:	learn: 21.6143650	total: 95.5ms	remaining: 359ms
21:	learn: 21.4571623	total: 100ms	remaining: 356ms
22:	learn: 21.2395769	total: 105ms	remaining: 352ms
23:	learn: 20.9801795	total: 110ms	remaining: 350ms
24:	learn: 20.8036808	total: 116ms	remaining: 347ms
25:	learn: 20.6387539	total: 121ms	remaining: 343ms
26:	learn: 20.4401427	total: 126ms	remaining: 340ms
27:	learn: 20.2879575	total: 131ms	remaining: 336ms
28:	learn: 20.0538664	total: 136ms	remaining: 332ms
29:	learn: 19.8363102	total: 142ms	remaining: 332ms
30:	learn: 19.7015446	total: 152ms	remaining: 338ms
31:	learn: 19.5483114	total: 164ms	remaining: 348ms
32:	learn: 19.4163053	total: 171ms	remaining: 347ms
33:	learn: 19.2880625	total: 178ms	remaining: 345ms
34:	learn: 19.1303389	total: 184ms	remaining: 341ms
35:	learn: 18.9237448	total: 190ms	remaining: 338ms
36:	learn: 18.8142925	total: 195ms	remaining: 333ms
37:	learn: 18.6994696	total: 201ms	remaining: 328ms
38:	learn: 18.5629211	total: 207ms	remaining: 323ms
39:	learn: 18.4600917	total: 212ms	remaining: 318ms
40:	learn: 18.3567139	total: 218ms	remaining: 313ms
41:	learn: 18.2120527	total: 223ms	remaining: 308ms
42:	learn: 18.0688062	total: 228ms	remaining: 303ms
43:	learn: 17.9250181	total: 234ms	remaining: 298ms
44:	learn: 17.8399138	total: 241ms	remaining: 294ms
45:	learn: 17.6720713	total: 246ms	remaining: 289ms
46:	learn: 17.5273091	total: 251ms	remaining: 283ms
47:	learn: 17.4232814	total: 256ms	remaining: 278ms
48:	learn: 17.2957579	total: 262ms	remaining: 272ms
49:	learn: 17.1892874	total: 266ms	remaining: 266ms
50:	learn: 17.0490355	total: 271ms	remaining: 260ms
51:	learn: 16.9666450	total: 276ms	remaining: 255ms
52:	learn: 16.8600056	total: 282ms	remaining: 250ms
53:	learn: 16.7542588	total: 287ms	remaining: 244ms
54:	learn: 16.6316077	total: 292ms	remaining: 239ms
55:	learn: 16.5588112	total: 298ms	remaining: 234ms
56:	learn: 16.5010186	total: 303ms	remaining: 228ms
57:	learn: 16.4081540	total: 308ms	remaining: 223ms
58:	learn: 16.3040451	total: 313ms	remaining: 218ms
59:	learn: 16.1890564	total: 321ms	remaining: 214ms
60:	learn: 16.0977103	total: 329ms	remaining: 210ms
61:	learn: 15.9627607	total: 336ms	remaining: 206ms
62:	learn: 15.9022248	total: 342ms	remaining: 201ms
63:	learn: 15.8151881	total: 348ms	remaining: 196ms
64:	learn: 15.7353125	total: 353ms	remaining: 190ms
65:	learn: 15.6312897	total: 357ms	remaining: 184ms
66:	learn: 15.5330927	total: 362ms	remaining: 178ms
67:	learn: 15.4698681	total: 367ms	remaining: 173ms
68:	learn: 15.4108571	total: 372ms	remaining: 167ms
69:	learn: 15.3492945	total: 376ms	remaining: 161ms
70:	learn: 15.3036540	total: 381ms	remaining: 156ms
71:	learn: 15.2390833	total: 386ms	remaining: 150ms
72:	learn: 15.1556327	total: 390ms	remaining: 144ms
73:	learn: 15.1016315	total: 395ms	remaining: 139ms
74:	learn: 15.0287076	total: 400ms	remaining: 133ms
75:	learn: 14.9530572	total: 405ms	remaining: 128ms
76:	learn: 14.8965517	total: 410ms	remaining: 123ms
77:	learn: 14.8125426	total: 415ms	remaining: 117ms
78:	learn: 14.7435359	total: 419ms	remaining: 111ms
79:	learn: 14.6963163	total: 423ms	remaining: 106ms
80:	learn: 14.6200060	total: 428ms	remaining: 100ms
81:	learn: 14.5707760	total: 432ms	remaining: 94.9ms
82:	learn: 14.5053651	total: 437ms	remaining: 89.5ms
83:	learn: 14.4115458	total: 442ms	remaining: 84.2ms
84:	learn: 14.3117159	total: 447ms	remaining: 78.9ms
85:	learn: 14.2511326	total: 452ms	remaining: 73.6ms
86:	learn: 14.1372486	total: 457ms	remaining: 68.3ms
87:	learn: 14.0992301	total: 462ms	remaining: 63ms
88:	learn: 14.0228331	total: 467ms	remaining: 57.8ms
89:	learn: 13.9249836	total: 472ms	remaining: 52.5ms
90:	learn: 13.8679364	total: 477ms	remaining: 47.2ms
91:	learn: 13.8405578	total: 481ms	remaining: 41.8ms
92:	learn: 13.7711325	total: 486ms	remaining: 36.6ms
93:	learn: 13.7357019	total: 492ms	remaining: 31.4ms
94:	learn: 13.6735271	total: 496ms	remaining: 26.1ms
95:	learn: 13.5682393	total: 501ms	remaining: 20.9ms
96:	learn: 13.5342610	total: 506ms	remaining: 15.6ms
97:	learn: 13.4710034	total: 511ms	remaining: 10.4ms
98:	learn: 13.4022402	total: 516ms	remaining: 5.21ms
99:	learn: 13.3351238	total: 521ms	remaining: 0us
0:	learn: 42.9181702	total: 6.2ms	remaining: 614ms
1:	learn: 42.0286736	total: 12.1ms	remaining: 592ms
2:	learn: 41.2764568	total: 17.1ms	remaining: 552ms
3:	learn: 40.4721918	total: 22ms	remaining: 528ms
4:	learn: 39.8518928	total: 27.4ms	remaining: 520ms
5:	learn: 39.2645479	total: 33.6ms	remaining: 526ms
6:	learn: 38.4453704	total: 38.5ms	remaining: 512ms
7:	learn: 37.7122059	total: 43.5ms	remaining: 500ms
8:	learn: 36.9185796	total: 48.1ms	remaining: 486ms
9:	learn: 36.1668427	total: 52.8ms	remaining: 475ms
10:	learn: 35.5639029	total: 57.9ms	remaining: 468ms
11:	learn: 34.7724193	total: 62.5ms	remaining: 459ms
12:	learn: 34.3053433	total: 67.1ms	remaining: 449ms
13:	learn: 33.6561327	total: 68.4ms	remaining: 420ms
14:	learn: 33.0134042	total: 73.2ms	remaining: 415ms
15:	learn: 32.4483300	total: 77.9ms	remaining: 409ms
16:	learn: 31.8581144	total: 82.3ms	remaining: 402ms
17:	learn: 31.2858301	total: 87ms	remaining: 396ms
18:	learn: 30.8483018	total: 91.3ms	remaining: 389ms
19:	learn: 30.4174622	total: 96.6ms	remaining: 386ms
20:	learn: 29.8994411	total: 101ms	remaining: 381ms
21:	learn: 29.5045355	total: 106ms	remaining: 376ms
22:	learn: 28.9923519	total: 111ms	remaining: 372ms
23:	learn: 28.4255717	total: 116ms	remaining: 367ms
24:	learn: 28.0283139	total: 121ms	remaining: 362ms
25:	learn: 27.7434814	total: 126ms	remaining: 360ms
26:	learn: 27.2770731	total: 132ms	remaining: 357ms
27:	learn: 26.8928270	total: 137ms	remaining: 353ms
28:	learn: 26.4282671	total: 143ms	remaining: 351ms
29:	learn: 26.0272764	total: 151ms	remaining: 353ms
30:	learn: 25.7579312	total: 159ms	remaining: 354ms
31:	learn: 25.4542434	total: 166ms	remaining: 352ms
32:	learn: 25.1232564	total: 171ms	remaining: 347ms
33:	learn: 24.8110795	total: 187ms	remaining: 364ms
34:	learn: 24.5077579	total: 192ms	remaining: 357ms
35:	learn: 24.1909000	total: 197ms	remaining: 351ms
36:	learn: 23.8719468	total: 202ms	remaining: 345ms
37:	learn: 23.5764366	total: 204ms	remaining: 332ms
38:	learn: 23.3468086	total: 208ms	remaining: 326ms
39:	learn: 23.0908771	total: 213ms	remaining: 319ms
40:	learn: 22.8580876	total: 218ms	remaining: 314ms
41:	learn: 22.6060825	total: 223ms	remaining: 308ms
42:	learn: 22.4125407	total: 228ms	remaining: 302ms
43:	learn: 22.1990617	total: 233ms	remaining: 296ms
44:	learn: 21.9716164	total: 238ms	remaining: 291ms
45:	learn: 21.8360935	total: 242ms	remaining: 284ms
46:	learn: 21.6169256	total: 247ms	remaining: 279ms
47:	learn: 21.4620612	total: 252ms	remaining: 273ms
48:	learn: 21.2894194	total: 256ms	remaining: 267ms
49:	learn: 21.1066266	total: 261ms	remaining: 261ms
50:	learn: 20.9484898	total: 266ms	remaining: 256ms
51:	learn: 20.7195338	total: 271ms	remaining: 250ms
52:	learn: 20.4899740	total: 276ms	remaining: 244ms
53:	learn: 20.3356583	total: 281ms	remaining: 239ms
54:	learn: 20.0754393	total: 285ms	remaining: 233ms
55:	learn: 19.9199159	total: 290ms	remaining: 228ms
56:	learn: 19.7761128	total: 295ms	remaining: 222ms
57:	learn: 19.6533060	total: 300ms	remaining: 217ms
58:	learn: 19.5113942	total: 304ms	remaining: 211ms
59:	learn: 19.3985022	total: 309ms	remaining: 206ms
60:	learn: 19.2683443	total: 314ms	remaining: 201ms
61:	learn: 19.1460824	total: 320ms	remaining: 196ms
62:	learn: 19.0042655	total: 325ms	remaining: 191ms
63:	learn: 18.8720873	total: 330ms	remaining: 186ms
64:	learn: 18.7183888	total: 335ms	remaining: 181ms
65:	learn: 18.5472360	total: 341ms	remaining: 176ms
66:	learn: 18.3976642	total: 351ms	remaining: 173ms
67:	learn: 18.2282851	total: 359ms	remaining: 169ms
68:	learn: 18.1469157	total: 369ms	remaining: 166ms
69:	learn: 18.0649494	total: 377ms	remaining: 162ms
70:	learn: 17.9485405	total: 383ms	remaining: 156ms
71:	learn: 17.8460261	total: 388ms	remaining: 151ms
72:	learn: 17.7679843	total: 393ms	remaining: 146ms
73:	learn: 17.5989290	total: 399ms	remaining: 140ms
74:	learn: 17.4381322	total: 404ms	remaining: 135ms
75:	learn: 17.3370886	total: 409ms	remaining: 129ms
76:	learn: 17.2675308	total: 415ms	remaining: 124ms
77:	learn: 17.1946430	total: 421ms	remaining: 119ms
78:	learn: 17.0923725	total: 426ms	remaining: 113ms
79:	learn: 17.0537265	total: 432ms	remaining: 108ms
80:	learn: 16.9456831	total: 437ms	remaining: 103ms
81:	learn: 16.8457353	total: 443ms	remaining: 97.1ms
82:	learn: 16.7469310	total: 448ms	remaining: 91.8ms
83:	learn: 16.6679953	total: 453ms	remaining: 86.3ms
84:	learn: 16.6274189	total: 458ms	remaining: 80.7ms
85:	learn: 16.5516530	total: 462ms	remaining: 75.2ms
86:	learn: 16.4886066	total: 466ms	remaining: 69.7ms
87:	learn: 16.3947859	total: 471ms	remaining: 64.2ms
88:	learn: 16.3406495	total: 476ms	remaining: 58.8ms
89:	learn: 16.3019195	total: 480ms	remaining: 53.3ms
90:	learn: 16.1860681	total: 485ms	remaining: 47.9ms
91:	learn: 16.1282812	total: 489ms	remaining: 42.5ms
92:	learn: 16.0303652	total: 494ms	remaining: 37.2ms
93:	learn: 15.9561692	total: 498ms	remaining: 31.8ms
94:	learn: 15.8733994	total: 503ms	remaining: 26.5ms
95:	learn: 15.8108833	total: 508ms	remaining: 21.1ms
96:	learn: 15.7606004	total: 513ms	remaining: 15.9ms
97:	learn: 15.6984664	total: 517ms	remaining: 10.6ms
98:	learn: 15.6223632	total: 522ms	remaining: 5.28ms
99:	learn: 15.5671136	total: 527ms	remaining: 0us
0:	learn: 46.4788614	total: 1.95ms	remaining: 193ms
1:	learn: 45.7608372	total: 6.54ms	remaining: 320ms
2:	learn: 44.8825004	total: 10.9ms	remaining: 352ms
3:	learn: 44.0362738	total: 15.2ms	remaining: 365ms
4:	learn: 43.2086374	total: 19.4ms	remaining: 368ms
5:	learn: 42.5835773	total: 23.6ms	remaining: 370ms
6:	learn: 41.9673269	total: 28.1ms	remaining: 374ms
7:	learn: 41.4748717	total: 32.5ms	remaining: 374ms
8:	learn: 40.7129183	total: 37.1ms	remaining: 375ms
9:	learn: 39.8900884	total: 41.6ms	remaining: 375ms
10:	learn: 39.4142193	total: 45.8ms	remaining: 370ms
11:	learn: 38.8645613	total: 50ms	remaining: 367ms
12:	learn: 38.2394731	total: 54.5ms	remaining: 365ms
13:	learn: 37.6834515	total: 58.5ms	remaining: 360ms
14:	learn: 37.0673507	total: 62.6ms	remaining: 355ms
15:	learn: 36.4728340	total: 67.3ms	remaining: 353ms
16:	learn: 36.0489086	total: 71.8ms	remaining: 351ms
17:	learn: 35.4744141	total: 76ms	remaining: 346ms
18:	learn: 35.0106021	total: 80.3ms	remaining: 342ms
19:	learn: 34.5586053	total: 84.4ms	remaining: 338ms
20:	learn: 34.1308223	total: 89.1ms	remaining: 335ms
21:	learn: 33.7701450	total: 93.2ms	remaining: 330ms
22:	learn: 33.4425444	total: 97.2ms	remaining: 326ms
23:	learn: 33.0296412	total: 102ms	remaining: 322ms
24:	learn: 32.6359803	total: 106ms	remaining: 318ms
25:	learn: 32.1846182	total: 111ms	remaining: 315ms
26:	learn: 31.7620230	total: 115ms	remaining: 310ms
27:	learn: 31.4669337	total: 119ms	remaining: 306ms
28:	learn: 31.0792062	total: 124ms	remaining: 303ms
29:	learn: 30.7970537	total: 128ms	remaining: 298ms
30:	learn: 30.4952215	total: 132ms	remaining: 294ms
31:	learn: 30.2845344	total: 137ms	remaining: 290ms
32:	learn: 29.9592732	total: 142ms	remaining: 288ms
33:	learn: 29.6798596	total: 149ms	remaining: 290ms
34:	learn: 29.3368905	total: 156ms	remaining: 290ms
35:	learn: 29.0621238	total: 162ms	remaining: 289ms
36:	learn: 28.6445375	total: 168ms	remaining: 287ms
37:	learn: 28.2418096	total: 174ms	remaining: 284ms
38:	learn: 27.9495390	total: 181ms	remaining: 282ms
39:	learn: 27.6958160	total: 186ms	remaining: 279ms
40:	learn: 27.4811189	total: 191ms	remaining: 275ms
41:	learn: 27.1494420	total: 197ms	remaining: 272ms
42:	learn: 26.8388873	total: 202ms	remaining: 268ms
43:	learn: 26.5721300	total: 207ms	remaining: 264ms
44:	learn: 26.3384738	total: 213ms	remaining: 260ms
45:	learn: 26.1894781	total: 218ms	remaining: 256ms
46:	learn: 25.9580198	total: 223ms	remaining: 252ms
47:	learn: 25.7897985	total: 240ms	remaining: 260ms
48:	learn: 25.6000271	total: 245ms	remaining: 255ms
49:	learn: 25.4130873	total: 250ms	remaining: 250ms
50:	learn: 25.1699061	total: 256ms	remaining: 246ms
51:	learn: 24.9324449	total: 262ms	remaining: 242ms
52:	learn: 24.7729152	total: 267ms	remaining: 237ms
53:	learn: 24.5026563	total: 272ms	remaining: 232ms
54:	learn: 24.2332627	total: 277ms	remaining: 227ms
55:	learn: 23.9611984	total: 289ms	remaining: 227ms
56:	learn: 23.7862603	total: 293ms	remaining: 221ms
57:	learn: 23.6318154	total: 297ms	remaining: 215ms
58:	learn: 23.4443306	total: 301ms	remaining: 209ms
59:	learn: 23.2581425	total: 306ms	remaining: 204ms
60:	learn: 23.0549901	total: 310ms	remaining: 198ms
61:	learn: 22.8666218	total: 314ms	remaining: 193ms
62:	learn: 22.6956739	total: 319ms	remaining: 187ms
63:	learn: 22.5068544	total: 324ms	remaining: 182ms
64:	learn: 22.1859147	total: 328ms	remaining: 177ms
65:	learn: 22.0462043	total: 333ms	remaining: 171ms
66:	learn: 21.9329563	total: 337ms	remaining: 166ms
67:	learn: 21.8029736	total: 342ms	remaining: 161ms
68:	learn: 21.6861091	total: 347ms	remaining: 156ms
69:	learn: 21.4838140	total: 351ms	remaining: 151ms
70:	learn: 21.3548921	total: 356ms	remaining: 145ms
71:	learn: 21.2244517	total: 360ms	remaining: 140ms
72:	learn: 21.0702958	total: 368ms	remaining: 136ms
73:	learn: 20.9224662	total: 375ms	remaining: 132ms
74:	learn: 20.8150357	total: 383ms	remaining: 128ms
75:	learn: 20.6962739	total: 389ms	remaining: 123ms
76:	learn: 20.5809258	total: 395ms	remaining: 118ms
77:	learn: 20.4735470	total: 399ms	remaining: 113ms
78:	learn: 20.3778167	total: 403ms	remaining: 107ms
79:	learn: 20.2211268	total: 408ms	remaining: 102ms
80:	learn: 20.1478678	total: 412ms	remaining: 96.6ms
81:	learn: 20.1032967	total: 416ms	remaining: 91.3ms
82:	learn: 19.9236300	total: 421ms	remaining: 86.2ms
83:	learn: 19.8151745	total: 425ms	remaining: 81ms
84:	learn: 19.7099856	total: 429ms	remaining: 75.8ms
85:	learn: 19.6264833	total: 434ms	remaining: 70.6ms
86:	learn: 19.4916361	total: 438ms	remaining: 65.5ms
87:	learn: 19.4050529	total: 443ms	remaining: 60.4ms
88:	learn: 19.2547065	total: 447ms	remaining: 55.2ms
89:	learn: 19.1610225	total: 451ms	remaining: 50.2ms
90:	learn: 19.0898958	total: 456ms	remaining: 45.1ms
91:	learn: 19.0489664	total: 460ms	remaining: 40ms
92:	learn: 18.9206240	total: 465ms	remaining: 35ms
93:	learn: 18.8636239	total: 469ms	remaining: 29.9ms
94:	learn: 18.8126187	total: 473ms	remaining: 24.9ms
95:	learn: 18.7579275	total: 478ms	remaining: 19.9ms
96:	learn: 18.6382753	total: 482ms	remaining: 14.9ms
97:	learn: 18.5397334	total: 487ms	remaining: 9.93ms
98:	learn: 18.4375951	total: 491ms	remaining: 4.96ms
99:	learn: 18.4033755	total: 495ms	remaining: 0us
0:	learn: 46.1068821	total: 1.88ms	remaining: 186ms
1:	learn: 45.3970261	total: 6.71ms	remaining: 329ms
2:	learn: 44.8732696	total: 11.4ms	remaining: 368ms
3:	learn: 44.1290184	total: 16.2ms	remaining: 388ms
4:	learn: 43.3290271	total: 20.9ms	remaining: 396ms
5:	learn: 42.7069090	total: 25.5ms	remaining: 400ms
6:	learn: 42.0572971	total: 30.4ms	remaining: 404ms
7:	learn: 41.4797924	total: 34.8ms	remaining: 401ms
8:	learn: 41.0023122	total: 42.5ms	remaining: 429ms
9:	learn: 40.5330570	total: 49.3ms	remaining: 444ms
10:	learn: 39.9726545	total: 60.9ms	remaining: 493ms
11:	learn: 39.3044053	total: 67.5ms	remaining: 495ms
12:	learn: 38.8169735	total: 74.5ms	remaining: 498ms
13:	learn: 38.2458761	total: 79.6ms	remaining: 489ms
14:	learn: 37.6280321	total: 85ms	remaining: 481ms
15:	learn: 37.0800610	total: 90.6ms	remaining: 476ms
16:	learn: 36.5489363	total: 96.2ms	remaining: 470ms
17:	learn: 36.0981456	total: 102ms	remaining: 464ms
18:	learn: 35.6956274	total: 107ms	remaining: 458ms
19:	learn: 35.1471999	total: 113ms	remaining: 452ms
20:	learn: 34.6235408	total: 118ms	remaining: 444ms
21:	learn: 34.1987018	total: 123ms	remaining: 437ms
22:	learn: 33.8985062	total: 128ms	remaining: 429ms
23:	learn: 33.3869017	total: 133ms	remaining: 422ms
24:	learn: 32.9100550	total: 138ms	remaining: 415ms
25:	learn: 32.4156208	total: 144ms	remaining: 409ms
26:	learn: 31.9320493	total: 148ms	remaining: 401ms
27:	learn: 31.5711468	total: 152ms	remaining: 391ms
28:	learn: 31.2404433	total: 157ms	remaining: 383ms
29:	learn: 30.8807946	total: 161ms	remaining: 376ms
30:	learn: 30.5948438	total: 166ms	remaining: 369ms
31:	learn: 30.3885560	total: 170ms	remaining: 362ms
32:	learn: 30.0625101	total: 175ms	remaining: 355ms
33:	learn: 29.9113114	total: 179ms	remaining: 347ms
34:	learn: 29.6983470	total: 183ms	remaining: 341ms
35:	learn: 29.4775849	total: 188ms	remaining: 334ms
36:	learn: 29.0538055	total: 193ms	remaining: 328ms
37:	learn: 28.6792318	total: 197ms	remaining: 322ms
38:	learn: 28.4231383	total: 202ms	remaining: 315ms
39:	learn: 28.1078565	total: 206ms	remaining: 309ms
40:	learn: 27.9079179	total: 211ms	remaining: 303ms
41:	learn: 27.6721506	total: 215ms	remaining: 297ms
42:	learn: 27.4228033	total: 220ms	remaining: 291ms
43:	learn: 27.1740534	total: 225ms	remaining: 286ms
44:	learn: 26.8584071	total: 229ms	remaining: 280ms
45:	learn: 26.6902083	total: 234ms	remaining: 275ms
46:	learn: 26.4855335	total: 239ms	remaining: 269ms
47:	learn: 26.2730822	total: 244ms	remaining: 264ms
48:	learn: 26.1058689	total: 249ms	remaining: 259ms
49:	learn: 25.8587318	total: 257ms	remaining: 257ms
50:	learn: 25.7558005	total: 266ms	remaining: 255ms
51:	learn: 25.5846925	total: 274ms	remaining: 253ms
52:	learn: 25.4249887	total: 279ms	remaining: 248ms
53:	learn: 25.1911054	total: 286ms	remaining: 243ms
54:	learn: 25.0544755	total: 290ms	remaining: 237ms
55:	learn: 24.8874006	total: 294ms	remaining: 231ms
56:	learn: 24.7736279	total: 299ms	remaining: 225ms
57:	learn: 24.6156255	total: 303ms	remaining: 219ms
58:	learn: 24.3962421	total: 307ms	remaining: 213ms
59:	learn: 24.2685129	total: 311ms	remaining: 208ms
60:	learn: 24.1874096	total: 316ms	remaining: 202ms
61:	learn: 24.0394287	total: 321ms	remaining: 197ms
62:	learn: 23.9281768	total: 325ms	remaining: 191ms
63:	learn: 23.7423900	total: 329ms	remaining: 185ms
64:	learn: 23.6015209	total: 333ms	remaining: 180ms
65:	learn: 23.4677943	total: 338ms	remaining: 174ms
66:	learn: 23.3215256	total: 342ms	remaining: 169ms
67:	learn: 23.1869360	total: 347ms	remaining: 163ms
68:	learn: 22.9691180	total: 351ms	remaining: 158ms
69:	learn: 22.7531657	total: 355ms	remaining: 152ms
70:	learn: 22.6133477	total: 359ms	remaining: 147ms
71:	learn: 22.3452758	total: 363ms	remaining: 141ms
72:	learn: 22.2065350	total: 368ms	remaining: 136ms
73:	learn: 22.1071155	total: 372ms	remaining: 131ms
74:	learn: 21.9740686	total: 376ms	remaining: 125ms
75:	learn: 21.8892033	total: 380ms	remaining: 120ms
76:	learn: 21.8267882	total: 384ms	remaining: 115ms
77:	learn: 21.7423479	total: 389ms	remaining: 110ms
78:	learn: 21.6242075	total: 393ms	remaining: 104ms
79:	learn: 21.5016910	total: 397ms	remaining: 99.3ms
80:	learn: 21.4806623	total: 398ms	remaining: 93.4ms
81:	learn: 21.3166637	total: 402ms	remaining: 88.3ms
82:	learn: 21.2222534	total: 407ms	remaining: 83.3ms
83:	learn: 21.1535708	total: 411ms	remaining: 78.2ms
84:	learn: 21.0858902	total: 415ms	remaining: 73.2ms
85:	learn: 20.9206003	total: 419ms	remaining: 68.3ms
86:	learn: 20.8674695	total: 423ms	remaining: 63.3ms
87:	learn: 20.8089875	total: 428ms	remaining: 58.3ms
88:	learn: 20.7085401	total: 432ms	remaining: 53.4ms
89:	learn: 20.5513468	total: 437ms	remaining: 48.5ms
90:	learn: 20.4586742	total: 441ms	remaining: 43.6ms
91:	learn: 20.3932149	total: 446ms	remaining: 38.8ms
92:	learn: 20.3000895	total: 451ms	remaining: 33.9ms
93:	learn: 20.2254009	total: 455ms	remaining: 29ms
94:	learn: 20.1750050	total: 460ms	remaining: 24.2ms
95:	learn: 20.0715579	total: 469ms	remaining: 19.5ms
96:	learn: 19.9920082	total: 477ms	remaining: 14.7ms
97:	learn: 19.9664401	total: 485ms	remaining: 9.9ms
98:	learn: 19.8689673	total: 494ms	remaining: 4.99ms
99:	learn: 19.7537356	total: 499ms	remaining: 0us
0:	learn: 46.8832143	total: 5.44ms	remaining: 539ms
1:	learn: 45.8700349	total: 9.63ms	remaining: 472ms
2:	learn: 45.0546867	total: 14ms	remaining: 454ms
3:	learn: 44.2829439	total: 18.2ms	remaining: 438ms
4:	learn: 43.4609042	total: 22.8ms	remaining: 433ms
5:	learn: 42.6754991	total: 26.9ms	remaining: 422ms
6:	learn: 41.9234935	total: 31.2ms	remaining: 414ms
7:	learn: 41.3987518	total: 35.1ms	remaining: 404ms
8:	learn: 40.6625066	total: 39.3ms	remaining: 398ms
9:	learn: 40.0029561	total: 43.4ms	remaining: 390ms
10:	learn: 39.3897033	total: 47.7ms	remaining: 386ms
11:	learn: 38.7741453	total: 52.5ms	remaining: 385ms
12:	learn: 38.1201100	total: 56.9ms	remaining: 381ms
13:	learn: 37.5129454	total: 60.8ms	remaining: 374ms
14:	learn: 37.2062206	total: 64.9ms	remaining: 368ms
15:	learn: 36.6831741	total: 69.2ms	remaining: 363ms
16:	learn: 36.2902788	total: 73.8ms	remaining: 360ms
17:	learn: 35.7639930	total: 78.1ms	remaining: 356ms
18:	learn: 35.2580953	total: 82.6ms	remaining: 352ms
19:	learn: 34.7809739	total: 87.3ms	remaining: 349ms
20:	learn: 34.1330433	total: 91.8ms	remaining: 346ms
21:	learn: 33.7302219	total: 96.3ms	remaining: 341ms
22:	learn: 33.3502495	total: 101ms	remaining: 339ms
23:	learn: 33.0067804	total: 106ms	remaining: 335ms
24:	learn: 32.6897855	total: 110ms	remaining: 331ms
25:	learn: 32.4361119	total: 116ms	remaining: 330ms
26:	learn: 32.1278981	total: 124ms	remaining: 335ms
27:	learn: 31.7863721	total: 131ms	remaining: 336ms
28:	learn: 31.4791450	total: 138ms	remaining: 337ms
29:	learn: 31.1760161	total: 143ms	remaining: 334ms
30:	learn: 30.9238888	total: 150ms	remaining: 333ms
31:	learn: 30.5500905	total: 154ms	remaining: 328ms
32:	learn: 30.3078126	total: 159ms	remaining: 324ms
33:	learn: 30.0480921	total: 164ms	remaining: 319ms
34:	learn: 29.8623884	total: 169ms	remaining: 313ms
35:	learn: 29.5991038	total: 173ms	remaining: 308ms
36:	learn: 29.4061161	total: 178ms	remaining: 303ms
37:	learn: 29.0269515	total: 182ms	remaining: 297ms
38:	learn: 28.8224959	total: 186ms	remaining: 291ms
39:	learn: 28.6417843	total: 190ms	remaining: 285ms
40:	learn: 28.3633368	total: 194ms	remaining: 280ms
41:	learn: 28.0200246	total: 199ms	remaining: 274ms
42:	learn: 27.7221254	total: 203ms	remaining: 269ms
43:	learn: 27.5105818	total: 207ms	remaining: 263ms
44:	learn: 27.3551010	total: 211ms	remaining: 258ms
45:	learn: 27.0787522	total: 215ms	remaining: 253ms
46:	learn: 26.8726317	total: 219ms	remaining: 247ms
47:	learn: 26.8003277	total: 223ms	remaining: 242ms
48:	learn: 26.5493785	total: 228ms	remaining: 237ms
49:	learn: 26.3699550	total: 232ms	remaining: 232ms
50:	learn: 26.1519631	total: 236ms	remaining: 227ms
51:	learn: 25.9277325	total: 240ms	remaining: 222ms
52:	learn: 25.7286035	total: 245ms	remaining: 217ms
53:	learn: 25.4999193	total: 249ms	remaining: 212ms
54:	learn: 25.3434703	total: 253ms	remaining: 207ms
55:	learn: 25.1497545	total: 257ms	remaining: 202ms
56:	learn: 24.9498143	total: 262ms	remaining: 198ms
57:	learn: 24.6509390	total: 266ms	remaining: 193ms
58:	learn: 24.5576144	total: 271ms	remaining: 188ms
59:	learn: 24.4265144	total: 275ms	remaining: 183ms
60:	learn: 24.3100706	total: 279ms	remaining: 178ms
61:	learn: 24.1727952	total: 284ms	remaining: 174ms
62:	learn: 24.0478558	total: 288ms	remaining: 169ms
63:	learn: 23.9124577	total: 293ms	remaining: 165ms
64:	learn: 23.7703718	total: 297ms	remaining: 160ms
65:	learn: 23.5975027	total: 302ms	remaining: 156ms
66:	learn: 23.4318077	total: 306ms	remaining: 151ms
67:	learn: 23.3099691	total: 311ms	remaining: 146ms
68:	learn: 23.1947982	total: 317ms	remaining: 143ms
69:	learn: 23.0260174	total: 325ms	remaining: 139ms
70:	learn: 22.8523100	total: 335ms	remaining: 137ms
71:	learn: 22.8028534	total: 341ms	remaining: 132ms
72:	learn: 22.6880658	total: 348ms	remaining: 129ms
73:	learn: 22.5956809	total: 354ms	remaining: 124ms
74:	learn: 22.4692932	total: 360ms	remaining: 120ms
75:	learn: 22.2863504	total: 366ms	remaining: 115ms
76:	learn: 22.1911237	total: 371ms	remaining: 111ms
77:	learn: 22.1098391	total: 376ms	remaining: 106ms
78:	learn: 22.0182738	total: 382ms	remaining: 101ms
79:	learn: 21.9306746	total: 387ms	remaining: 96.8ms
80:	learn: 21.7508233	total: 393ms	remaining: 92.1ms
81:	learn: 21.7108446	total: 398ms	remaining: 87.4ms
82:	learn: 21.5931852	total: 403ms	remaining: 82.5ms
83:	learn: 21.4480361	total: 408ms	remaining: 77.7ms
84:	learn: 21.3092119	total: 413ms	remaining: 72.9ms
85:	learn: 21.2605557	total: 418ms	remaining: 68.1ms
86:	learn: 21.1123597	total: 423ms	remaining: 63.2ms
87:	learn: 21.0115642	total: 427ms	remaining: 58.2ms
88:	learn: 20.9389040	total: 431ms	remaining: 53.3ms
89:	learn: 20.8300300	total: 435ms	remaining: 48.4ms
90:	learn: 20.7159733	total: 440ms	remaining: 43.5ms
91:	learn: 20.6282090	total: 444ms	remaining: 38.6ms
92:	learn: 20.5164529	total: 448ms	remaining: 33.7ms
93:	learn: 20.4692032	total: 452ms	remaining: 28.9ms
94:	learn: 20.3768451	total: 457ms	remaining: 24ms
95:	learn: 20.2808056	total: 461ms	remaining: 19.2ms
96:	learn: 20.2082089	total: 465ms	remaining: 14.4ms
97:	learn: 20.1698768	total: 470ms	remaining: 9.58ms
98:	learn: 20.1048816	total: 474ms	remaining: 4.79ms
99:	learn: 20.0086159	total: 479ms	remaining: 0us
0:	learn: 27.3351083	total: 30.3ms	remaining: 3s
1:	learn: 26.7523848	total: 54.3ms	remaining: 2.66s
2:	learn: 26.1326580	total: 77.9ms	remaining: 2.52s
3:	learn: 25.5584244	total: 102ms	remaining: 2.45s
4:	learn: 25.0458748	total: 127ms	remaining: 2.41s
5:	learn: 24.4868837	total: 151ms	remaining: 2.36s
6:	learn: 23.9306999	total: 175ms	remaining: 2.33s
7:	learn: 23.4799808	total: 200ms	remaining: 2.3s
8:	learn: 22.9510347	total: 239ms	remaining: 2.42s
9:	learn: 22.4529079	total: 264ms	remaining: 2.38s
10:	learn: 21.9320739	total: 290ms	remaining: 2.34s
11:	learn: 21.4729295	total: 315ms	remaining: 2.31s
12:	learn: 21.0885550	total: 340ms	remaining: 2.27s
13:	learn: 20.7063206	total: 363ms	remaining: 2.23s
14:	learn: 20.3539530	total: 388ms	remaining: 2.2s
15:	learn: 20.0071947	total: 413ms	remaining: 2.17s
16:	learn: 19.6579830	total: 444ms	remaining: 2.17s
17:	learn: 19.2450502	total: 470ms	remaining: 2.14s
18:	learn: 18.8010420	total: 493ms	remaining: 2.1s
19:	learn: 18.4055273	total: 516ms	remaining: 2.06s
20:	learn: 18.0395642	total: 540ms	remaining: 2.03s
21:	learn: 17.6568400	total: 563ms	remaining: 2s
22:	learn: 17.4284559	total: 587ms	remaining: 1.97s
23:	learn: 17.0957528	total: 612ms	remaining: 1.94s
24:	learn: 16.7636157	total: 637ms	remaining: 1.91s
25:	learn: 16.4987969	total: 674ms	remaining: 1.92s
26:	learn: 16.2204177	total: 698ms	remaining: 1.89s
27:	learn: 15.9525124	total: 722ms	remaining: 1.85s
28:	learn: 15.5905943	total: 746ms	remaining: 1.82s
29:	learn: 15.3628633	total: 772ms	remaining: 1.8s
30:	learn: 15.1420693	total: 798ms	remaining: 1.77s
31:	learn: 14.9419461	total: 823ms	remaining: 1.75s
32:	learn: 14.7386592	total: 849ms	remaining: 1.72s
33:	learn: 14.5398023	total: 875ms	remaining: 1.7s
34:	learn: 14.2644206	total: 907ms	remaining: 1.68s
35:	learn: 14.0168503	total: 932ms	remaining: 1.66s
36:	learn: 13.7687637	total: 957ms	remaining: 1.63s
37:	learn: 13.5855913	total: 982ms	remaining: 1.6s
38:	learn: 13.3656902	total: 1.01s	remaining: 1.57s
39:	learn: 13.2111716	total: 1.03s	remaining: 1.55s
40:	learn: 13.0360149	total: 1.05s	remaining: 1.52s
41:	learn: 12.8789444	total: 1.08s	remaining: 1.49s
42:	learn: 12.6680179	total: 1.11s	remaining: 1.47s
43:	learn: 12.4892268	total: 1.14s	remaining: 1.45s
44:	learn: 12.3275828	total: 1.17s	remaining: 1.43s
45:	learn: 12.2035682	total: 1.19s	remaining: 1.4s
46:	learn: 12.0777397	total: 1.22s	remaining: 1.37s
47:	learn: 11.9055552	total: 1.24s	remaining: 1.35s
48:	learn: 11.7465481	total: 1.27s	remaining: 1.32s
49:	learn: 11.5961200	total: 1.29s	remaining: 1.29s
50:	learn: 11.4305519	total: 1.32s	remaining: 1.27s
51:	learn: 11.2794033	total: 1.35s	remaining: 1.24s
52:	learn: 11.1586950	total: 1.38s	remaining: 1.22s
53:	learn: 11.0432937	total: 1.4s	remaining: 1.19s
54:	learn: 10.9094838	total: 1.43s	remaining: 1.17s
55:	learn: 10.7713451	total: 1.45s	remaining: 1.14s
56:	learn: 10.6664177	total: 1.48s	remaining: 1.11s
57:	learn: 10.5600117	total: 1.5s	remaining: 1.09s
58:	learn: 10.4438974	total: 1.53s	remaining: 1.06s
59:	learn: 10.3294224	total: 1.55s	remaining: 1.04s
60:	learn: 10.2510301	total: 1.59s	remaining: 1.01s
61:	learn: 10.1363264	total: 1.61s	remaining: 989ms
62:	learn: 10.0415049	total: 1.64s	remaining: 963ms
63:	learn: 9.9499833	total: 1.67s	remaining: 937ms
64:	learn: 9.8774263	total: 1.69s	remaining: 910ms
65:	learn: 9.7458853	total: 1.72s	remaining: 884ms
66:	learn: 9.6733951	total: 1.74s	remaining: 857ms
67:	learn: 9.5861856	total: 1.77s	remaining: 831ms
68:	learn: 9.4524193	total: 1.8s	remaining: 807ms
69:	learn: 9.3501165	total: 1.82s	remaining: 781ms
70:	learn: 9.3092902	total: 1.85s	remaining: 754ms
71:	learn: 9.2244222	total: 1.87s	remaining: 728ms
72:	learn: 9.1554253	total: 1.9s	remaining: 702ms
73:	learn: 9.1098892	total: 1.92s	remaining: 675ms
74:	learn: 9.0210213	total: 1.95s	remaining: 649ms
75:	learn: 8.9303181	total: 1.97s	remaining: 622ms
76:	learn: 8.8489769	total: 2s	remaining: 599ms
77:	learn: 8.7651580	total: 2.03s	remaining: 573ms
78:	learn: 8.7126796	total: 2.05s	remaining: 546ms
79:	learn: 8.6404554	total: 2.08s	remaining: 520ms
80:	learn: 8.5844756	total: 2.1s	remaining: 494ms
81:	learn: 8.5234333	total: 2.13s	remaining: 467ms
82:	learn: 8.4298762	total: 2.15s	remaining: 441ms
83:	learn: 8.3483002	total: 2.18s	remaining: 416ms
84:	learn: 8.2670647	total: 2.21s	remaining: 390ms
85:	learn: 8.1917398	total: 2.23s	remaining: 364ms
86:	learn: 8.1073642	total: 2.26s	remaining: 338ms
87:	learn: 8.0633288	total: 2.28s	remaining: 311ms
88:	learn: 8.0107997	total: 2.31s	remaining: 285ms
89:	learn: 7.9563547	total: 2.33s	remaining: 259ms
90:	learn: 7.8811408	total: 2.35s	remaining: 233ms
91:	learn: 7.8096107	total: 2.38s	remaining: 207ms
92:	learn: 7.7481700	total: 2.4s	remaining: 181ms
93:	learn: 7.6847843	total: 2.43s	remaining: 155ms
94:	learn: 7.6252335	total: 2.46s	remaining: 130ms
95:	learn: 7.5593148	total: 2.49s	remaining: 104ms
96:	learn: 7.5042331	total: 2.51s	remaining: 77.8ms
97:	learn: 7.4553707	total: 2.54s	remaining: 51.8ms
98:	learn: 7.4035691	total: 2.56s	remaining: 25.9ms
99:	learn: 7.3457537	total: 2.59s	remaining: 0us
0:	learn: 42.5901652	total: 25.6ms	remaining: 2.53s
1:	learn: 41.2917733	total: 49.5ms	remaining: 2.42s
2:	learn: 40.0285549	total: 74ms	remaining: 2.39s
3:	learn: 38.9051734	total: 98ms	remaining: 2.35s
4:	learn: 37.7712063	total: 121ms	remaining: 2.31s
5:	learn: 36.6826884	total: 145ms	remaining: 2.28s
6:	learn: 35.6341048	total: 170ms	remaining: 2.25s
7:	learn: 34.5035449	total: 199ms	remaining: 2.29s
8:	learn: 33.5636424	total: 225ms	remaining: 2.27s
9:	learn: 32.5970644	total: 250ms	remaining: 2.25s
10:	learn: 31.8528815	total: 275ms	remaining: 2.22s
11:	learn: 31.0330095	total: 300ms	remaining: 2.2s
12:	learn: 30.3119851	total: 324ms	remaining: 2.17s
13:	learn: 29.5212022	total: 348ms	remaining: 2.13s
14:	learn: 28.7182657	total: 372ms	remaining: 2.11s
15:	learn: 28.0433195	total: 396ms	remaining: 2.08s
16:	learn: 27.2966576	total: 427ms	remaining: 2.09s
17:	learn: 26.5122856	total: 453ms	remaining: 2.06s
18:	learn: 25.8998213	total: 477ms	remaining: 2.03s
19:	learn: 25.2416026	total: 500ms	remaining: 2s
20:	learn: 24.6399819	total: 525ms	remaining: 1.97s
21:	learn: 24.0372756	total: 549ms	remaining: 1.95s
22:	learn: 23.4553733	total: 573ms	remaining: 1.92s
23:	learn: 22.9027871	total: 597ms	remaining: 1.89s
24:	learn: 22.4470878	total: 623ms	remaining: 1.87s
25:	learn: 21.9143721	total: 658ms	remaining: 1.87s
26:	learn: 21.4979516	total: 687ms	remaining: 1.86s
27:	learn: 21.0867622	total: 714ms	remaining: 1.83s
28:	learn: 20.6187419	total: 740ms	remaining: 1.81s
29:	learn: 20.1662373	total: 767ms	remaining: 1.79s
30:	learn: 19.8225041	total: 792ms	remaining: 1.76s
31:	learn: 19.4539400	total: 817ms	remaining: 1.74s
32:	learn: 19.1127000	total: 843ms	remaining: 1.71s
33:	learn: 18.7767435	total: 877ms	remaining: 1.7s
34:	learn: 18.4038779	total: 904ms	remaining: 1.68s
35:	learn: 18.0021121	total: 929ms	remaining: 1.65s
36:	learn: 17.6673419	total: 954ms	remaining: 1.62s
37:	learn: 17.3562137	total: 981ms	remaining: 1.6s
38:	learn: 17.0128082	total: 1.01s	remaining: 1.57s
39:	learn: 16.7572783	total: 1.03s	remaining: 1.55s
40:	learn: 16.4883778	total: 1.06s	remaining: 1.52s
41:	learn: 16.1756364	total: 1.08s	remaining: 1.5s
42:	learn: 15.9150506	total: 1.12s	remaining: 1.49s
43:	learn: 15.6787555	total: 1.15s	remaining: 1.46s
44:	learn: 15.3862120	total: 1.17s	remaining: 1.43s
45:	learn: 15.1512250	total: 1.2s	remaining: 1.41s
46:	learn: 14.9410960	total: 1.22s	remaining: 1.38s
47:	learn: 14.7086321	total: 1.25s	remaining: 1.35s
48:	learn: 14.5065360	total: 1.27s	remaining: 1.32s
49:	learn: 14.3007466	total: 1.3s	remaining: 1.3s
50:	learn: 14.0972724	total: 1.33s	remaining: 1.28s
51:	learn: 13.8793525	total: 1.35s	remaining: 1.25s
52:	learn: 13.6381311	total: 1.38s	remaining: 1.22s
53:	learn: 13.4603568	total: 1.4s	remaining: 1.2s
54:	learn: 13.2856920	total: 1.43s	remaining: 1.17s
55:	learn: 13.1350779	total: 1.45s	remaining: 1.14s
56:	learn: 13.0110083	total: 1.48s	remaining: 1.12s
57:	learn: 12.8405210	total: 1.51s	remaining: 1.09s
58:	learn: 12.6793938	total: 1.54s	remaining: 1.07s
59:	learn: 12.5497475	total: 1.56s	remaining: 1.04s
60:	learn: 12.4319334	total: 1.59s	remaining: 1.02s
61:	learn: 12.2780964	total: 1.62s	remaining: 992ms
62:	learn: 12.1187174	total: 1.65s	remaining: 966ms
63:	learn: 11.9635081	total: 1.67s	remaining: 939ms
64:	learn: 11.8366366	total: 1.69s	remaining: 913ms
65:	learn: 11.6598347	total: 1.72s	remaining: 886ms
66:	learn: 11.5227416	total: 1.75s	remaining: 862ms
67:	learn: 11.4058818	total: 1.78s	remaining: 838ms
68:	learn: 11.2627892	total: 1.8s	remaining: 811ms
69:	learn: 11.1415094	total: 1.83s	remaining: 784ms
70:	learn: 11.0703329	total: 1.85s	remaining: 757ms
71:	learn: 10.9568944	total: 1.88s	remaining: 731ms
72:	learn: 10.8314078	total: 1.9s	remaining: 704ms
73:	learn: 10.7320013	total: 1.93s	remaining: 678ms
74:	learn: 10.6191666	total: 1.96s	remaining: 653ms
75:	learn: 10.5156798	total: 2s	remaining: 630ms
76:	learn: 10.4174442	total: 2.02s	remaining: 604ms
77:	learn: 10.3318165	total: 2.05s	remaining: 578ms
78:	learn: 10.2300435	total: 2.08s	remaining: 552ms
79:	learn: 10.1665911	total: 2.1s	remaining: 525ms
80:	learn: 10.1030585	total: 2.12s	remaining: 498ms
81:	learn: 10.0254875	total: 2.15s	remaining: 472ms
82:	learn: 9.9387640	total: 2.17s	remaining: 445ms
83:	learn: 9.8289920	total: 2.2s	remaining: 419ms
84:	learn: 9.7629500	total: 2.23s	remaining: 394ms
85:	learn: 9.6778611	total: 2.25s	remaining: 367ms
86:	learn: 9.5920617	total: 2.28s	remaining: 341ms
87:	learn: 9.4931297	total: 2.3s	remaining: 314ms
88:	learn: 9.4010604	total: 2.33s	remaining: 288ms
89:	learn: 9.3328614	total: 2.35s	remaining: 262ms
90:	learn: 9.2409094	total: 2.38s	remaining: 235ms
91:	learn: 9.1214245	total: 2.4s	remaining: 209ms
92:	learn: 9.0795335	total: 2.44s	remaining: 184ms
93:	learn: 8.9777250	total: 2.47s	remaining: 157ms
94:	learn: 8.9059891	total: 2.49s	remaining: 131ms
95:	learn: 8.8343294	total: 2.52s	remaining: 105ms
96:	learn: 8.7237295	total: 2.54s	remaining: 78.7ms
97:	learn: 8.6401509	total: 2.57s	remaining: 52.4ms
98:	learn: 8.5735108	total: 2.59s	remaining: 26.2ms
99:	learn: 8.5084579	total: 2.62s	remaining: 0us
0:	learn: 46.1633714	total: 24ms	remaining: 2.37s
1:	learn: 44.7904617	total: 47.6ms	remaining: 2.33s
2:	learn: 43.5292386	total: 71.8ms	remaining: 2.32s
3:	learn: 42.3776226	total: 95.4ms	remaining: 2.29s
4:	learn: 41.1726533	total: 119ms	remaining: 2.27s
5:	learn: 40.0256490	total: 144ms	remaining: 2.25s
6:	learn: 39.0318588	total: 168ms	remaining: 2.23s
7:	learn: 38.0361181	total: 194ms	remaining: 2.23s
8:	learn: 37.0398789	total: 229ms	remaining: 2.31s
9:	learn: 36.0525089	total: 254ms	remaining: 2.28s
10:	learn: 35.0926830	total: 279ms	remaining: 2.25s
11:	learn: 34.1467022	total: 304ms	remaining: 2.23s
12:	learn: 33.5625454	total: 328ms	remaining: 2.2s
13:	learn: 32.7993162	total: 351ms	remaining: 2.16s
14:	learn: 32.1179593	total: 375ms	remaining: 2.13s
15:	learn: 31.5382898	total: 400ms	remaining: 2.1s
16:	learn: 30.8398862	total: 429ms	remaining: 2.09s
17:	learn: 30.1060070	total: 453ms	remaining: 2.06s
18:	learn: 29.3826415	total: 477ms	remaining: 2.04s
19:	learn: 28.5809579	total: 501ms	remaining: 2s
20:	learn: 28.0104942	total: 525ms	remaining: 1.97s
21:	learn: 27.5189566	total: 548ms	remaining: 1.94s
22:	learn: 26.8603656	total: 573ms	remaining: 1.92s
23:	learn: 26.2547050	total: 597ms	remaining: 1.89s
24:	learn: 25.6559137	total: 622ms	remaining: 1.87s
25:	learn: 25.1148352	total: 657ms	remaining: 1.87s
26:	learn: 24.5782363	total: 682ms	remaining: 1.84s
27:	learn: 24.0350871	total: 706ms	remaining: 1.81s
28:	learn: 23.5119480	total: 731ms	remaining: 1.79s
29:	learn: 23.1119795	total: 755ms	remaining: 1.76s
30:	learn: 22.6838288	total: 780ms	remaining: 1.74s
31:	learn: 22.2554624	total: 804ms	remaining: 1.71s
32:	learn: 21.8241578	total: 834ms	remaining: 1.69s
33:	learn: 21.5062830	total: 862ms	remaining: 1.67s
34:	learn: 21.0109226	total: 887ms	remaining: 1.65s
35:	learn: 20.5518606	total: 912ms	remaining: 1.62s
36:	learn: 20.1195339	total: 937ms	remaining: 1.59s
37:	learn: 19.7143479	total: 962ms	remaining: 1.57s
38:	learn: 19.3325253	total: 986ms	remaining: 1.54s
39:	learn: 19.0310706	total: 1.01s	remaining: 1.51s
40:	learn: 18.7262797	total: 1.03s	remaining: 1.49s
41:	learn: 18.3611836	total: 1.06s	remaining: 1.46s
42:	learn: 17.9960838	total: 1.09s	remaining: 1.45s
43:	learn: 17.7058991	total: 1.12s	remaining: 1.42s
44:	learn: 17.3944673	total: 1.14s	remaining: 1.4s
45:	learn: 17.1283561	total: 1.17s	remaining: 1.37s
46:	learn: 16.8406890	total: 1.19s	remaining: 1.35s
47:	learn: 16.6072061	total: 1.22s	remaining: 1.32s
48:	learn: 16.3697411	total: 1.24s	remaining: 1.29s
49:	learn: 15.9995507	total: 1.27s	remaining: 1.27s
50:	learn: 15.7372570	total: 1.3s	remaining: 1.25s
51:	learn: 15.4840152	total: 1.33s	remaining: 1.23s
52:	learn: 15.2899590	total: 1.35s	remaining: 1.2s
53:	learn: 15.0111064	total: 1.38s	remaining: 1.17s
54:	learn: 14.7504952	total: 1.4s	remaining: 1.15s
55:	learn: 14.5309762	total: 1.42s	remaining: 1.12s
56:	learn: 14.3525677	total: 1.45s	remaining: 1.09s
57:	learn: 14.1816296	total: 1.48s	remaining: 1.07s
58:	learn: 13.9958516	total: 1.52s	remaining: 1.06s
59:	learn: 13.8356735	total: 1.55s	remaining: 1.03s
60:	learn: 13.6499824	total: 1.58s	remaining: 1.01s
61:	learn: 13.4621357	total: 1.6s	remaining: 983ms
62:	learn: 13.3234970	total: 1.63s	remaining: 958ms
63:	learn: 13.1407122	total: 1.66s	remaining: 933ms
64:	learn: 13.0161177	total: 1.69s	remaining: 908ms
65:	learn: 12.8361175	total: 1.71s	remaining: 883ms
66:	learn: 12.7103117	total: 1.75s	remaining: 865ms
67:	learn: 12.5145429	total: 1.78s	remaining: 839ms
68:	learn: 12.3966318	total: 1.81s	remaining: 813ms
69:	learn: 12.2175623	total: 1.83s	remaining: 787ms
70:	learn: 12.0455583	total: 1.86s	remaining: 761ms
71:	learn: 11.9190589	total: 1.89s	remaining: 735ms
72:	learn: 11.7990452	total: 1.92s	remaining: 709ms
73:	learn: 11.6735331	total: 1.95s	remaining: 686ms
74:	learn: 11.5694753	total: 1.99s	remaining: 663ms
75:	learn: 11.4471422	total: 2.02s	remaining: 637ms
76:	learn: 11.3357642	total: 2.05s	remaining: 611ms
77:	learn: 11.2160164	total: 2.07s	remaining: 585ms
78:	learn: 11.1477947	total: 2.1s	remaining: 558ms
79:	learn: 11.0733969	total: 2.13s	remaining: 532ms
80:	learn: 10.9851608	total: 2.16s	remaining: 508ms
81:	learn: 10.8669537	total: 2.19s	remaining: 481ms
82:	learn: 10.7846130	total: 2.22s	remaining: 455ms
83:	learn: 10.6429068	total: 2.25s	remaining: 430ms
84:	learn: 10.5485368	total: 2.28s	remaining: 403ms
85:	learn: 10.4626750	total: 2.31s	remaining: 376ms
86:	learn: 10.3487863	total: 2.34s	remaining: 349ms
87:	learn: 10.2608682	total: 2.37s	remaining: 323ms
88:	learn: 10.1492862	total: 2.4s	remaining: 297ms
89:	learn: 10.0825429	total: 2.43s	remaining: 270ms
90:	learn: 9.9668337	total: 2.46s	remaining: 243ms
91:	learn: 9.8924239	total: 2.49s	remaining: 217ms
92:	learn: 9.7959729	total: 2.52s	remaining: 190ms
93:	learn: 9.7342503	total: 2.55s	remaining: 163ms
94:	learn: 9.6266181	total: 2.58s	remaining: 136ms
95:	learn: 9.5607316	total: 2.61s	remaining: 109ms
96:	learn: 9.4615938	total: 2.64s	remaining: 81.6ms
97:	learn: 9.3562852	total: 2.67s	remaining: 54.4ms
98:	learn: 9.2518786	total: 2.69s	remaining: 27.2ms
99:	learn: 9.2130065	total: 2.73s	remaining: 0us
0:	learn: 45.6477780	total: 29.4ms	remaining: 2.91s
1:	learn: 44.3885048	total: 56.9ms	remaining: 2.79s
2:	learn: 43.1316502	total: 84.8ms	remaining: 2.74s
3:	learn: 41.8123054	total: 112ms	remaining: 2.68s
4:	learn: 40.7214533	total: 140ms	remaining: 2.66s
5:	learn: 39.6276122	total: 167ms	remaining: 2.62s
6:	learn: 38.6471225	total: 194ms	remaining: 2.57s
7:	learn: 37.7493668	total: 220ms	remaining: 2.53s
8:	learn: 36.7733816	total: 254ms	remaining: 2.57s
9:	learn: 36.1233521	total: 282ms	remaining: 2.54s
10:	learn: 35.5715091	total: 319ms	remaining: 2.58s
11:	learn: 34.6287751	total: 347ms	remaining: 2.54s
12:	learn: 33.8024988	total: 373ms	remaining: 2.5s
13:	learn: 33.0699864	total: 400ms	remaining: 2.46s
14:	learn: 32.2267139	total: 427ms	remaining: 2.42s
15:	learn: 31.4879090	total: 453ms	remaining: 2.38s
16:	learn: 30.6681130	total: 490ms	remaining: 2.39s
17:	learn: 29.9739192	total: 522ms	remaining: 2.38s
18:	learn: 29.3293065	total: 558ms	remaining: 2.38s
19:	learn: 28.5893418	total: 586ms	remaining: 2.34s
20:	learn: 28.0793862	total: 613ms	remaining: 2.31s
21:	learn: 27.5553702	total: 641ms	remaining: 2.27s
22:	learn: 27.0123732	total: 667ms	remaining: 2.23s
23:	learn: 26.3897992	total: 694ms	remaining: 2.2s
24:	learn: 25.7405079	total: 728ms	remaining: 2.19s
25:	learn: 25.2366375	total: 761ms	remaining: 2.17s
26:	learn: 24.8040727	total: 790ms	remaining: 2.13s
27:	learn: 24.3831145	total: 816ms	remaining: 2.1s
28:	learn: 23.9264258	total: 843ms	remaining: 2.06s
29:	learn: 23.4965665	total: 869ms	remaining: 2.03s
30:	learn: 23.0750907	total: 895ms	remaining: 1.99s
31:	learn: 22.6177456	total: 923ms	remaining: 1.96s
32:	learn: 22.1936903	total: 951ms	remaining: 1.93s
33:	learn: 21.7237373	total: 993ms	remaining: 1.93s
34:	learn: 21.2885821	total: 1.02s	remaining: 1.9s
35:	learn: 20.8773820	total: 1.05s	remaining: 1.86s
36:	learn: 20.5069022	total: 1.07s	remaining: 1.83s
37:	learn: 20.1026772	total: 1.1s	remaining: 1.8s
38:	learn: 19.7278063	total: 1.13s	remaining: 1.77s
39:	learn: 19.4576176	total: 1.16s	remaining: 1.74s
40:	learn: 19.1716041	total: 1.19s	remaining: 1.71s
41:	learn: 18.8541728	total: 1.22s	remaining: 1.69s
42:	learn: 18.6411979	total: 1.25s	remaining: 1.66s
43:	learn: 18.3146636	total: 1.27s	remaining: 1.62s
44:	learn: 18.0208582	total: 1.3s	remaining: 1.59s
45:	learn: 17.7344521	total: 1.33s	remaining: 1.56s
46:	learn: 17.4797974	total: 1.36s	remaining: 1.53s
47:	learn: 17.2182299	total: 1.39s	remaining: 1.51s
48:	learn: 16.9607453	total: 1.42s	remaining: 1.48s
49:	learn: 16.7297863	total: 1.46s	remaining: 1.46s
50:	learn: 16.4913674	total: 1.49s	remaining: 1.43s
51:	learn: 16.2886548	total: 1.51s	remaining: 1.4s
52:	learn: 16.0297055	total: 1.54s	remaining: 1.37s
53:	learn: 15.8558289	total: 1.57s	remaining: 1.34s
54:	learn: 15.6256772	total: 1.6s	remaining: 1.31s
55:	learn: 15.4571057	total: 1.63s	remaining: 1.28s
56:	learn: 15.2857211	total: 1.66s	remaining: 1.25s
57:	learn: 15.0790849	total: 1.69s	remaining: 1.22s
58:	learn: 14.8706573	total: 1.72s	remaining: 1.19s
59:	learn: 14.7142314	total: 1.75s	remaining: 1.16s
60:	learn: 14.5574075	total: 1.77s	remaining: 1.13s
61:	learn: 14.3831719	total: 1.81s	remaining: 1.11s
62:	learn: 14.2429846	total: 1.84s	remaining: 1.08s
63:	learn: 14.0982260	total: 1.86s	remaining: 1.05s
64:	learn: 13.9793470	total: 1.89s	remaining: 1.02s
65:	learn: 13.7843655	total: 1.92s	remaining: 989ms
66:	learn: 13.6382336	total: 1.95s	remaining: 962ms
67:	learn: 13.5395713	total: 1.98s	remaining: 931ms
68:	learn: 13.3797741	total: 2.01s	remaining: 904ms
69:	learn: 13.2910103	total: 2.04s	remaining: 875ms
70:	learn: 13.1587887	total: 2.07s	remaining: 845ms
71:	learn: 13.0464642	total: 2.1s	remaining: 815ms
72:	learn: 12.9189091	total: 2.12s	remaining: 785ms
73:	learn: 12.8056893	total: 2.15s	remaining: 755ms
74:	learn: 12.6904403	total: 2.18s	remaining: 728ms
75:	learn: 12.5608506	total: 2.21s	remaining: 698ms
76:	learn: 12.4712551	total: 2.24s	remaining: 668ms
77:	learn: 12.3371889	total: 2.27s	remaining: 642ms
78:	learn: 12.2449022	total: 2.3s	remaining: 612ms
79:	learn: 12.2163788	total: 2.33s	remaining: 583ms
80:	learn: 12.1464820	total: 2.36s	remaining: 553ms
81:	learn: 12.0001066	total: 2.39s	remaining: 524ms
82:	learn: 11.8843691	total: 2.41s	remaining: 494ms
83:	learn: 11.7638631	total: 2.45s	remaining: 466ms
84:	learn: 11.6389646	total: 2.48s	remaining: 437ms
85:	learn: 11.5343065	total: 2.5s	remaining: 408ms
86:	learn: 11.4267531	total: 2.54s	remaining: 379ms
87:	learn: 11.3136728	total: 2.56s	remaining: 350ms
88:	learn: 11.2361574	total: 2.59s	remaining: 320ms
89:	learn: 11.1507886	total: 2.62s	remaining: 291ms
90:	learn: 11.0988952	total: 2.64s	remaining: 261ms
91:	learn: 10.9988426	total: 2.68s	remaining: 233ms
92:	learn: 10.9584792	total: 2.7s	remaining: 204ms
93:	learn: 10.8771461	total: 2.74s	remaining: 175ms
94:	learn: 10.8161358	total: 2.77s	remaining: 146ms
95:	learn: 10.7524450	total: 2.79s	remaining: 116ms
96:	learn: 10.6566836	total: 2.82s	remaining: 87.3ms
97:	learn: 10.5550602	total: 2.85s	remaining: 58.2ms
98:	learn: 10.4790583	total: 2.88s	remaining: 29.1ms
99:	learn: 10.4087354	total: 2.91s	remaining: 0us
0:	learn: 46.5398832	total: 25.9ms	remaining: 2.57s
1:	learn: 45.3142618	total: 52.7ms	remaining: 2.58s
2:	learn: 44.0378137	total: 79.7ms	remaining: 2.58s
3:	learn: 42.7976734	total: 107ms	remaining: 2.56s
4:	learn: 41.7080859	total: 132ms	remaining: 2.5s
5:	learn: 40.4513327	total: 156ms	remaining: 2.44s
6:	learn: 39.4903346	total: 181ms	remaining: 2.4s
7:	learn: 38.3767870	total: 206ms	remaining: 2.37s
8:	learn: 37.4056810	total: 242ms	remaining: 2.45s
9:	learn: 36.4947716	total: 269ms	remaining: 2.42s
10:	learn: 35.4421832	total: 295ms	remaining: 2.39s
11:	learn: 34.6183487	total: 310ms	remaining: 2.27s
12:	learn: 33.9603524	total: 336ms	remaining: 2.25s
13:	learn: 33.0635534	total: 362ms	remaining: 2.22s
14:	learn: 32.2067999	total: 387ms	remaining: 2.19s
15:	learn: 31.3961282	total: 411ms	remaining: 2.16s
16:	learn: 30.7113239	total: 436ms	remaining: 2.13s
17:	learn: 29.9919005	total: 470ms	remaining: 2.14s
18:	learn: 29.4016891	total: 498ms	remaining: 2.12s
19:	learn: 28.7435066	total: 524ms	remaining: 2.09s
20:	learn: 28.2283605	total: 548ms	remaining: 2.06s
21:	learn: 27.6749781	total: 573ms	remaining: 2.03s
22:	learn: 27.1695356	total: 598ms	remaining: 2s
23:	learn: 26.6842901	total: 624ms	remaining: 1.97s
24:	learn: 26.0987344	total: 649ms	remaining: 1.95s
25:	learn: 25.5266873	total: 674ms	remaining: 1.92s
26:	learn: 25.0200431	total: 715ms	remaining: 1.93s
27:	learn: 24.5972016	total: 741ms	remaining: 1.91s
28:	learn: 24.1557061	total: 767ms	remaining: 1.88s
29:	learn: 23.7405036	total: 794ms	remaining: 1.85s
30:	learn: 23.3574513	total: 819ms	remaining: 1.82s
31:	learn: 23.0493499	total: 843ms	remaining: 1.79s
32:	learn: 22.6480655	total: 868ms	remaining: 1.76s
33:	learn: 22.2777353	total: 894ms	remaining: 1.74s
34:	learn: 21.8294628	total: 920ms	remaining: 1.71s
35:	learn: 21.4783115	total: 950ms	remaining: 1.69s
36:	learn: 21.1271427	total: 976ms	remaining: 1.66s
37:	learn: 20.7967443	total: 1s	remaining: 1.63s
38:	learn: 20.4949793	total: 1.02s	remaining: 1.6s
39:	learn: 20.1991695	total: 1.05s	remaining: 1.57s
40:	learn: 19.8869467	total: 1.07s	remaining: 1.55s
41:	learn: 19.5656862	total: 1.1s	remaining: 1.52s
42:	learn: 19.2415335	total: 1.13s	remaining: 1.5s
43:	learn: 18.9725471	total: 1.16s	remaining: 1.47s
44:	learn: 18.7035722	total: 1.18s	remaining: 1.45s
45:	learn: 18.3840395	total: 1.21s	remaining: 1.42s
46:	learn: 18.1486662	total: 1.23s	remaining: 1.39s
47:	learn: 17.8740440	total: 1.26s	remaining: 1.36s
48:	learn: 17.6056273	total: 1.29s	remaining: 1.34s
49:	learn: 17.4011083	total: 1.31s	remaining: 1.31s
50:	learn: 17.1935449	total: 1.34s	remaining: 1.29s
51:	learn: 16.9415227	total: 1.37s	remaining: 1.27s
52:	learn: 16.6568624	total: 1.4s	remaining: 1.24s
53:	learn: 16.4254479	total: 1.42s	remaining: 1.21s
54:	learn: 16.1958120	total: 1.45s	remaining: 1.18s
55:	learn: 15.9494332	total: 1.47s	remaining: 1.16s
56:	learn: 15.7736632	total: 1.5s	remaining: 1.13s
57:	learn: 15.6314122	total: 1.52s	remaining: 1.1s
58:	learn: 15.3707626	total: 1.55s	remaining: 1.07s
59:	learn: 15.2211664	total: 1.58s	remaining: 1.05s
60:	learn: 14.9939278	total: 1.61s	remaining: 1.03s
61:	learn: 14.8327626	total: 1.63s	remaining: 1s
62:	learn: 14.6555776	total: 1.66s	remaining: 974ms
63:	learn: 14.5516961	total: 1.69s	remaining: 949ms
64:	learn: 14.3660780	total: 1.71s	remaining: 922ms
65:	learn: 14.1721909	total: 1.74s	remaining: 895ms
66:	learn: 14.0877696	total: 1.76s	remaining: 869ms
67:	learn: 13.9435793	total: 1.79s	remaining: 845ms
68:	learn: 13.7745805	total: 1.82s	remaining: 818ms
69:	learn: 13.6490858	total: 1.84s	remaining: 791ms
70:	learn: 13.5022080	total: 1.87s	remaining: 764ms
71:	learn: 13.3922163	total: 1.9s	remaining: 737ms
72:	learn: 13.2842701	total: 1.92s	remaining: 710ms
73:	learn: 13.1698693	total: 1.95s	remaining: 684ms
74:	learn: 13.0256610	total: 1.97s	remaining: 657ms
75:	learn: 12.8855147	total: 2s	remaining: 633ms
76:	learn: 12.7807971	total: 2.03s	remaining: 607ms
77:	learn: 12.6618407	total: 2.06s	remaining: 580ms
78:	learn: 12.5369866	total: 2.08s	remaining: 553ms
79:	learn: 12.4376925	total: 2.11s	remaining: 527ms
80:	learn: 12.3005012	total: 2.13s	remaining: 501ms
81:	learn: 12.1751315	total: 2.16s	remaining: 474ms
82:	learn: 12.0612289	total: 2.18s	remaining: 448ms
83:	learn: 11.9757193	total: 2.22s	remaining: 422ms
84:	learn: 11.8530411	total: 2.24s	remaining: 396ms
85:	learn: 11.7523616	total: 2.27s	remaining: 369ms
86:	learn: 11.6645272	total: 2.29s	remaining: 343ms
87:	learn: 11.5645111	total: 2.32s	remaining: 316ms
88:	learn: 11.4692480	total: 2.34s	remaining: 289ms
89:	learn: 11.3724902	total: 2.36s	remaining: 263ms
90:	learn: 11.2842147	total: 2.39s	remaining: 236ms
91:	learn: 11.1868295	total: 2.42s	remaining: 211ms
92:	learn: 11.0293625	total: 2.45s	remaining: 184ms
93:	learn: 10.9495625	total: 2.47s	remaining: 158ms
94:	learn: 10.8608168	total: 2.5s	remaining: 131ms
95:	learn: 10.7804780	total: 2.52s	remaining: 105ms
96:	learn: 10.6503623	total: 2.55s	remaining: 78.8ms
97:	learn: 10.5906748	total: 2.57s	remaining: 52.5ms
98:	learn: 10.4539468	total: 2.6s	remaining: 26.2ms
99:	learn: 10.3804160	total: 2.63s	remaining: 0us
0:	learn: 27.3441720	total: 21.4ms	remaining: 2.12s
1:	learn: 26.7159954	total: 42.9ms	remaining: 2.1s
2:	learn: 26.0850318	total: 63.2ms	remaining: 2.04s
3:	learn: 25.4039656	total: 83.9ms	remaining: 2.01s
4:	learn: 24.7930659	total: 103ms	remaining: 1.97s
5:	learn: 24.2028590	total: 126ms	remaining: 1.97s
6:	learn: 23.6622902	total: 149ms	remaining: 1.97s
7:	learn: 23.1531175	total: 175ms	remaining: 2.02s
8:	learn: 22.7050792	total: 201ms	remaining: 2.03s
9:	learn: 22.2151788	total: 223ms	remaining: 2.01s
10:	learn: 21.7708844	total: 245ms	remaining: 1.99s
11:	learn: 21.2587174	total: 268ms	remaining: 1.96s
12:	learn: 20.7559870	total: 290ms	remaining: 1.94s
13:	learn: 20.3040842	total: 310ms	remaining: 1.9s
14:	learn: 19.9019524	total: 331ms	remaining: 1.87s
15:	learn: 19.5186012	total: 353ms	remaining: 1.85s
16:	learn: 19.1521621	total: 382ms	remaining: 1.86s
17:	learn: 18.7652180	total: 405ms	remaining: 1.84s
18:	learn: 18.4446446	total: 425ms	remaining: 1.81s
19:	learn: 18.0977650	total: 444ms	remaining: 1.78s
20:	learn: 17.7791328	total: 466ms	remaining: 1.75s
21:	learn: 17.4777648	total: 487ms	remaining: 1.73s
22:	learn: 17.1794361	total: 506ms	remaining: 1.7s
23:	learn: 16.8685032	total: 526ms	remaining: 1.67s
24:	learn: 16.6274695	total: 548ms	remaining: 1.64s
25:	learn: 16.3071099	total: 572ms	remaining: 1.63s
26:	learn: 16.0249663	total: 601ms	remaining: 1.62s
27:	learn: 15.7535309	total: 624ms	remaining: 1.6s
28:	learn: 15.4777235	total: 646ms	remaining: 1.58s
29:	learn: 15.2410825	total: 669ms	remaining: 1.56s
30:	learn: 15.0133002	total: 692ms	remaining: 1.54s
31:	learn: 14.8018912	total: 713ms	remaining: 1.51s
32:	learn: 14.5701546	total: 734ms	remaining: 1.49s
33:	learn: 14.3799060	total: 756ms	remaining: 1.47s
34:	learn: 14.0975095	total: 778ms	remaining: 1.44s
35:	learn: 13.8873493	total: 809ms	remaining: 1.44s
36:	learn: 13.6812023	total: 833ms	remaining: 1.42s
37:	learn: 13.4943017	total: 853ms	remaining: 1.39s
38:	learn: 13.3224094	total: 872ms	remaining: 1.36s
39:	learn: 13.0967901	total: 894ms	remaining: 1.34s
40:	learn: 12.9138190	total: 913ms	remaining: 1.31s
41:	learn: 12.7764458	total: 934ms	remaining: 1.29s
42:	learn: 12.6593656	total: 956ms	remaining: 1.27s
43:	learn: 12.5051105	total: 979ms	remaining: 1.25s
44:	learn: 12.3057146	total: 1.01s	remaining: 1.23s
45:	learn: 12.1487674	total: 1.03s	remaining: 1.21s
46:	learn: 11.9614903	total: 1.05s	remaining: 1.19s
47:	learn: 11.7921265	total: 1.08s	remaining: 1.17s
48:	learn: 11.6572640	total: 1.1s	remaining: 1.15s
49:	learn: 11.5251463	total: 1.12s	remaining: 1.12s
50:	learn: 11.3789931	total: 1.14s	remaining: 1.1s
51:	learn: 11.2691375	total: 1.16s	remaining: 1.07s
52:	learn: 11.1161131	total: 1.18s	remaining: 1.05s
53:	learn: 11.0246399	total: 1.21s	remaining: 1.03s
54:	learn: 10.9152420	total: 1.23s	remaining: 1s
55:	learn: 10.7746769	total: 1.26s	remaining: 993ms
56:	learn: 10.6222917	total: 1.29s	remaining: 972ms
57:	learn: 10.5096115	total: 1.31s	remaining: 949ms
58:	learn: 10.3857030	total: 1.33s	remaining: 926ms
59:	learn: 10.2789057	total: 1.36s	remaining: 905ms
60:	learn: 10.1490749	total: 1.38s	remaining: 883ms
61:	learn: 10.0553291	total: 1.41s	remaining: 861ms
62:	learn: 9.9351043	total: 1.43s	remaining: 840ms
63:	learn: 9.8245261	total: 1.46s	remaining: 824ms
64:	learn: 9.7207577	total: 1.49s	remaining: 803ms
65:	learn: 9.5920661	total: 1.51s	remaining: 780ms
66:	learn: 9.4832767	total: 1.54s	remaining: 758ms
67:	learn: 9.3724149	total: 1.56s	remaining: 736ms
68:	learn: 9.2459801	total: 1.59s	remaining: 713ms
69:	learn: 9.1740635	total: 1.62s	remaining: 695ms
70:	learn: 9.1015730	total: 1.65s	remaining: 674ms
71:	learn: 9.0196460	total: 1.68s	remaining: 652ms
72:	learn: 8.9458977	total: 1.7s	remaining: 629ms
73:	learn: 8.8434400	total: 1.72s	remaining: 605ms
74:	learn: 8.7495151	total: 1.74s	remaining: 582ms
75:	learn: 8.6521348	total: 1.77s	remaining: 558ms
76:	learn: 8.5654483	total: 1.79s	remaining: 535ms
77:	learn: 8.4965765	total: 1.82s	remaining: 512ms
78:	learn: 8.4308736	total: 1.85s	remaining: 492ms
79:	learn: 8.3675601	total: 1.88s	remaining: 471ms
80:	learn: 8.3193887	total: 1.91s	remaining: 448ms
81:	learn: 8.2507990	total: 1.93s	remaining: 425ms
82:	learn: 8.1583259	total: 1.96s	remaining: 401ms
83:	learn: 8.0995902	total: 1.98s	remaining: 378ms
84:	learn: 8.0236655	total: 2.01s	remaining: 355ms
85:	learn: 7.9634698	total: 2.03s	remaining: 331ms
86:	learn: 7.9109081	total: 2.06s	remaining: 308ms
87:	learn: 7.8385006	total: 2.09s	remaining: 285ms
88:	learn: 7.7859488	total: 2.12s	remaining: 262ms
89:	learn: 7.7270142	total: 2.15s	remaining: 239ms
90:	learn: 7.6774253	total: 2.17s	remaining: 215ms
91:	learn: 7.6126552	total: 2.2s	remaining: 191ms
92:	learn: 7.5392178	total: 2.22s	remaining: 167ms
93:	learn: 7.4745082	total: 2.24s	remaining: 143ms
94:	learn: 7.4106939	total: 2.27s	remaining: 119ms
95:	learn: 7.3573350	total: 2.29s	remaining: 95.6ms
96:	learn: 7.2889777	total: 2.33s	remaining: 72ms
97:	learn: 7.2204939	total: 2.35s	remaining: 48ms
98:	learn: 7.1646465	total: 2.39s	remaining: 24.1ms
99:	learn: 7.1204610	total: 2.41s	remaining: 0us
0:	learn: 42.5494645	total: 25.9ms	remaining: 2.56s
1:	learn: 41.2913513	total: 52.2ms	remaining: 2.56s
2:	learn: 40.1676527	total: 83.8ms	remaining: 2.71s
3:	learn: 38.7664819	total: 108ms	remaining: 2.6s
4:	learn: 37.5407492	total: 133ms	remaining: 2.53s
5:	learn: 36.4295331	total: 158ms	remaining: 2.47s
6:	learn: 35.2895967	total: 182ms	remaining: 2.42s
7:	learn: 34.1884539	total: 206ms	remaining: 2.36s
8:	learn: 33.1817690	total: 235ms	remaining: 2.38s
9:	learn: 32.3518195	total: 259ms	remaining: 2.33s
10:	learn: 31.4837515	total: 285ms	remaining: 2.31s
11:	learn: 30.7255972	total: 320ms	remaining: 2.34s
12:	learn: 29.9298648	total: 345ms	remaining: 2.31s
13:	learn: 29.0574249	total: 370ms	remaining: 2.27s
14:	learn: 28.4097384	total: 396ms	remaining: 2.24s
15:	learn: 27.5317445	total: 422ms	remaining: 2.22s
16:	learn: 26.7911946	total: 447ms	remaining: 2.18s
17:	learn: 26.1103465	total: 472ms	remaining: 2.15s
18:	learn: 25.5295903	total: 509ms	remaining: 2.17s
19:	learn: 24.8544960	total: 539ms	remaining: 2.16s
20:	learn: 24.2772682	total: 563ms	remaining: 2.12s
21:	learn: 23.6936944	total: 586ms	remaining: 2.08s
22:	learn: 23.1300945	total: 610ms	remaining: 2.04s
23:	learn: 22.5333494	total: 632ms	remaining: 2s
24:	learn: 22.0553465	total: 655ms	remaining: 1.97s
25:	learn: 21.6253628	total: 680ms	remaining: 1.94s
26:	learn: 21.1396219	total: 705ms	remaining: 1.91s
27:	learn: 20.7382905	total: 746ms	remaining: 1.92s
28:	learn: 20.3233915	total: 770ms	remaining: 1.88s
29:	learn: 19.9323992	total: 795ms	remaining: 1.85s
30:	learn: 19.5650439	total: 821ms	remaining: 1.83s
31:	learn: 19.2165649	total: 846ms	remaining: 1.8s
32:	learn: 18.8890056	total: 869ms	remaining: 1.76s
33:	learn: 18.5523762	total: 893ms	remaining: 1.73s
34:	learn: 18.2666116	total: 918ms	remaining: 1.7s
35:	learn: 17.9216926	total: 950ms	remaining: 1.69s
36:	learn: 17.6118879	total: 975ms	remaining: 1.66s
37:	learn: 17.2653313	total: 1s	remaining: 1.64s
38:	learn: 16.9946585	total: 1.03s	remaining: 1.61s
39:	learn: 16.6842506	total: 1.05s	remaining: 1.58s
40:	learn: 16.4102287	total: 1.07s	remaining: 1.55s
41:	learn: 16.2288795	total: 1.1s	remaining: 1.52s
42:	learn: 15.9623692	total: 1.12s	remaining: 1.49s
43:	learn: 15.7308231	total: 1.16s	remaining: 1.47s
44:	learn: 15.4695555	total: 1.18s	remaining: 1.45s
45:	learn: 15.2706809	total: 1.21s	remaining: 1.42s
46:	learn: 15.0182699	total: 1.23s	remaining: 1.39s
47:	learn: 14.7702088	total: 1.26s	remaining: 1.37s
48:	learn: 14.6303566	total: 1.29s	remaining: 1.34s
49:	learn: 14.4038016	total: 1.31s	remaining: 1.31s
50:	learn: 14.2309807	total: 1.33s	remaining: 1.28s
51:	learn: 14.0308425	total: 1.37s	remaining: 1.26s
52:	learn: 13.8201931	total: 1.39s	remaining: 1.24s
53:	learn: 13.6070078	total: 1.42s	remaining: 1.21s
54:	learn: 13.4230690	total: 1.44s	remaining: 1.18s
55:	learn: 13.2368649	total: 1.47s	remaining: 1.15s
56:	learn: 13.0449556	total: 1.49s	remaining: 1.13s
57:	learn: 12.8375669	total: 1.52s	remaining: 1.1s
58:	learn: 12.6795194	total: 1.55s	remaining: 1.07s
59:	learn: 12.5197211	total: 1.58s	remaining: 1.05s
60:	learn: 12.4011717	total: 1.6s	remaining: 1.03s
61:	learn: 12.2396104	total: 1.63s	remaining: 1s
62:	learn: 12.0647878	total: 1.66s	remaining: 974ms
63:	learn: 11.9247719	total: 1.68s	remaining: 946ms
64:	learn: 11.7923634	total: 1.71s	remaining: 919ms
65:	learn: 11.6628246	total: 1.73s	remaining: 893ms
66:	learn: 11.5688935	total: 1.76s	remaining: 869ms
67:	learn: 11.4345056	total: 1.79s	remaining: 842ms
68:	learn: 11.3136955	total: 1.81s	remaining: 815ms
69:	learn: 11.2040357	total: 1.85s	remaining: 791ms
70:	learn: 11.1067773	total: 1.87s	remaining: 764ms
71:	learn: 10.9728105	total: 1.89s	remaining: 736ms
72:	learn: 10.8338607	total: 1.92s	remaining: 709ms
73:	learn: 10.7202016	total: 1.94s	remaining: 681ms
74:	learn: 10.5983746	total: 1.96s	remaining: 654ms
75:	learn: 10.4882458	total: 1.98s	remaining: 627ms
76:	learn: 10.3827604	total: 2.02s	remaining: 602ms
77:	learn: 10.2485726	total: 2.05s	remaining: 578ms
78:	learn: 10.1524716	total: 2.08s	remaining: 552ms
79:	learn: 10.0765127	total: 2.1s	remaining: 525ms
80:	learn: 9.9617067	total: 2.12s	remaining: 498ms
81:	learn: 9.8357151	total: 2.15s	remaining: 472ms
82:	learn: 9.7311644	total: 2.17s	remaining: 445ms
83:	learn: 9.6314802	total: 2.2s	remaining: 418ms
84:	learn: 9.5137958	total: 2.22s	remaining: 392ms
85:	learn: 9.4420485	total: 2.25s	remaining: 366ms
86:	learn: 9.3959294	total: 2.28s	remaining: 341ms
87:	learn: 9.3057742	total: 2.31s	remaining: 315ms
88:	learn: 9.2031484	total: 2.33s	remaining: 288ms
89:	learn: 9.0996948	total: 2.35s	remaining: 262ms
90:	learn: 9.0492278	total: 2.38s	remaining: 235ms
91:	learn: 8.9400377	total: 2.4s	remaining: 209ms
92:	learn: 8.8904458	total: 2.42s	remaining: 183ms
93:	learn: 8.8102982	total: 2.45s	remaining: 156ms
94:	learn: 8.7445451	total: 2.48s	remaining: 131ms
95:	learn: 8.6796106	total: 2.51s	remaining: 105ms
96:	learn: 8.5875790	total: 2.54s	remaining: 78.7ms
97:	learn: 8.5086871	total: 2.57s	remaining: 52.4ms
98:	learn: 8.4547244	total: 2.59s	remaining: 26.2ms
99:	learn: 8.3841281	total: 2.61s	remaining: 0us
0:	learn: 46.2258117	total: 2.75ms	remaining: 273ms
1:	learn: 45.1253456	total: 27.5ms	remaining: 1.34s
2:	learn: 43.7311767	total: 60.4ms	remaining: 1.95s
3:	learn: 42.4252819	total: 82.5ms	remaining: 1.98s
4:	learn: 41.1436655	total: 104ms	remaining: 1.98s
5:	learn: 40.0337136	total: 126ms	remaining: 1.97s
6:	learn: 38.9102686	total: 148ms	remaining: 1.97s
7:	learn: 37.7859737	total: 179ms	remaining: 2.06s
8:	learn: 36.7646905	total: 203ms	remaining: 2.05s
9:	learn: 35.9495481	total: 228ms	remaining: 2.05s
10:	learn: 35.0558185	total: 253ms	remaining: 2.05s
11:	learn: 34.1958090	total: 287ms	remaining: 2.11s
12:	learn: 33.3514013	total: 314ms	remaining: 2.1s
13:	learn: 32.3317086	total: 338ms	remaining: 2.08s
14:	learn: 31.5611046	total: 361ms	remaining: 2.05s
15:	learn: 30.6373573	total: 384ms	remaining: 2.02s
16:	learn: 29.8883669	total: 404ms	remaining: 1.97s
17:	learn: 29.2985952	total: 428ms	remaining: 1.95s
18:	learn: 28.6360550	total: 450ms	remaining: 1.92s
19:	learn: 27.9757056	total: 474ms	remaining: 1.9s
20:	learn: 27.2585835	total: 505ms	remaining: 1.9s
21:	learn: 26.6366391	total: 528ms	remaining: 1.87s
22:	learn: 26.1055455	total: 550ms	remaining: 1.84s
23:	learn: 25.4961568	total: 572ms	remaining: 1.81s
24:	learn: 25.1037435	total: 593ms	remaining: 1.78s
25:	learn: 24.5258982	total: 615ms	remaining: 1.75s
26:	learn: 23.9974764	total: 638ms	remaining: 1.72s
27:	learn: 23.5108419	total: 660ms	remaining: 1.7s
28:	learn: 23.0835773	total: 683ms	remaining: 1.67s
29:	learn: 22.5744350	total: 715ms	remaining: 1.67s
30:	learn: 22.1357783	total: 740ms	remaining: 1.65s
31:	learn: 21.7316226	total: 763ms	remaining: 1.62s
32:	learn: 21.4082899	total: 787ms	remaining: 1.6s
33:	learn: 20.9640138	total: 812ms	remaining: 1.58s
34:	learn: 20.6379417	total: 833ms	remaining: 1.55s
35:	learn: 20.2688010	total: 853ms	remaining: 1.52s
36:	learn: 19.8479214	total: 874ms	remaining: 1.49s
37:	learn: 19.5684638	total: 897ms	remaining: 1.46s
38:	learn: 19.1826919	total: 928ms	remaining: 1.45s
39:	learn: 18.9583308	total: 952ms	remaining: 1.43s
40:	learn: 18.6736002	total: 975ms	remaining: 1.4s
41:	learn: 18.3525328	total: 997ms	remaining: 1.38s
42:	learn: 17.9954191	total: 1.02s	remaining: 1.35s
43:	learn: 17.6991520	total: 1.04s	remaining: 1.32s
44:	learn: 17.3697888	total: 1.06s	remaining: 1.29s
45:	learn: 17.0519636	total: 1.08s	remaining: 1.27s
46:	learn: 16.7829795	total: 1.1s	remaining: 1.24s
47:	learn: 16.5108695	total: 1.13s	remaining: 1.22s
48:	learn: 16.2366816	total: 1.15s	remaining: 1.2s
49:	learn: 15.9947350	total: 1.18s	remaining: 1.18s
50:	learn: 15.7513561	total: 1.21s	remaining: 1.16s
51:	learn: 15.4328481	total: 1.23s	remaining: 1.14s
52:	learn: 15.2497907	total: 1.25s	remaining: 1.11s
53:	learn: 15.0417076	total: 1.28s	remaining: 1.09s
54:	learn: 14.8861891	total: 1.3s	remaining: 1.06s
55:	learn: 14.6497794	total: 1.32s	remaining: 1.04s
56:	learn: 14.3664771	total: 1.34s	remaining: 1.01s
57:	learn: 14.2358168	total: 1.37s	remaining: 990ms
58:	learn: 14.0712722	total: 1.39s	remaining: 968ms
59:	learn: 13.9191649	total: 1.42s	remaining: 943ms
60:	learn: 13.7032356	total: 1.44s	remaining: 918ms
61:	learn: 13.5029041	total: 1.46s	remaining: 894ms
62:	learn: 13.3568908	total: 1.48s	remaining: 868ms
63:	learn: 13.1332696	total: 1.5s	remaining: 843ms
64:	learn: 13.0323137	total: 1.52s	remaining: 819ms
65:	learn: 12.8622078	total: 1.54s	remaining: 794ms
66:	learn: 12.7088186	total: 1.57s	remaining: 771ms
67:	learn: 12.5524646	total: 1.59s	remaining: 750ms
68:	learn: 12.4646011	total: 1.62s	remaining: 729ms
69:	learn: 12.3900687	total: 1.65s	remaining: 706ms
70:	learn: 12.2908367	total: 1.67s	remaining: 682ms
71:	learn: 12.1294405	total: 1.69s	remaining: 658ms
72:	learn: 12.0359996	total: 1.72s	remaining: 635ms
73:	learn: 11.9244352	total: 1.74s	remaining: 610ms
74:	learn: 11.8312038	total: 1.76s	remaining: 586ms
75:	learn: 11.6622123	total: 1.78s	remaining: 563ms
76:	learn: 11.5959180	total: 1.81s	remaining: 540ms
77:	learn: 11.4538852	total: 1.83s	remaining: 517ms
78:	learn: 11.3700375	total: 1.86s	remaining: 493ms
79:	learn: 11.2101447	total: 1.88s	remaining: 469ms
80:	learn: 11.0614634	total: 1.9s	remaining: 446ms
81:	learn: 10.9029225	total: 1.92s	remaining: 422ms
82:	learn: 10.7792030	total: 1.94s	remaining: 398ms
83:	learn: 10.6279451	total: 1.97s	remaining: 374ms
84:	learn: 10.5530267	total: 1.99s	remaining: 351ms
85:	learn: 10.4577150	total: 2.01s	remaining: 327ms
86:	learn: 10.4076417	total: 2.04s	remaining: 305ms
87:	learn: 10.3166632	total: 2.07s	remaining: 282ms
88:	learn: 10.2018151	total: 2.09s	remaining: 259ms
89:	learn: 10.0698484	total: 2.12s	remaining: 235ms
90:	learn: 10.0162824	total: 2.14s	remaining: 212ms
91:	learn: 9.9352639	total: 2.16s	remaining: 188ms
92:	learn: 9.8316734	total: 2.18s	remaining: 164ms
93:	learn: 9.7195471	total: 2.21s	remaining: 141ms
94:	learn: 9.5914894	total: 2.23s	remaining: 118ms
95:	learn: 9.5151851	total: 2.26s	remaining: 94.1ms
96:	learn: 9.3911314	total: 2.28s	remaining: 70.6ms
97:	learn: 9.3417706	total: 2.31s	remaining: 47ms
98:	learn: 9.2708440	total: 2.33s	remaining: 23.5ms
99:	learn: 9.1660321	total: 2.35s	remaining: 0us
0:	learn: 45.8627255	total: 2.73ms	remaining: 270ms
1:	learn: 44.7432040	total: 25.2ms	remaining: 1.23s
2:	learn: 43.4398568	total: 52.9ms	remaining: 1.71s
3:	learn: 42.1495515	total: 77.5ms	remaining: 1.86s
4:	learn: 40.9712633	total: 99.7ms	remaining: 1.89s
5:	learn: 40.0119591	total: 123ms	remaining: 1.92s
6:	learn: 39.1914360	total: 145ms	remaining: 1.93s
7:	learn: 38.1861536	total: 167ms	remaining: 1.93s
8:	learn: 37.1477128	total: 188ms	remaining: 1.9s
9:	learn: 36.3044702	total: 208ms	remaining: 1.88s
10:	learn: 35.5837917	total: 231ms	remaining: 1.87s
11:	learn: 34.8664158	total: 252ms	remaining: 1.85s
12:	learn: 33.9129833	total: 279ms	remaining: 1.86s
13:	learn: 32.9094642	total: 301ms	remaining: 1.85s
14:	learn: 32.1965787	total: 320ms	remaining: 1.81s
15:	learn: 31.4598238	total: 339ms	remaining: 1.78s
16:	learn: 30.6578027	total: 358ms	remaining: 1.75s
17:	learn: 30.0227468	total: 380ms	remaining: 1.73s
18:	learn: 29.2954728	total: 401ms	remaining: 1.71s
19:	learn: 28.5928084	total: 422ms	remaining: 1.69s
20:	learn: 27.9445984	total: 444ms	remaining: 1.67s
21:	learn: 27.3493298	total: 472ms	remaining: 1.67s
22:	learn: 26.8491966	total: 497ms	remaining: 1.66s
23:	learn: 26.3177453	total: 520ms	remaining: 1.65s
24:	learn: 25.8134533	total: 543ms	remaining: 1.63s
25:	learn: 25.2000018	total: 566ms	remaining: 1.61s
26:	learn: 24.6570461	total: 590ms	remaining: 1.59s
27:	learn: 24.1062982	total: 613ms	remaining: 1.58s
28:	learn: 23.7489370	total: 634ms	remaining: 1.55s
29:	learn: 23.2050536	total: 656ms	remaining: 1.53s
30:	learn: 22.7824379	total: 678ms	remaining: 1.51s
31:	learn: 22.4052655	total: 704ms	remaining: 1.5s
32:	learn: 21.9525639	total: 726ms	remaining: 1.47s
33:	learn: 21.5482900	total: 748ms	remaining: 1.45s
34:	learn: 21.1900983	total: 768ms	remaining: 1.43s
35:	learn: 20.8243957	total: 788ms	remaining: 1.4s
36:	learn: 20.4401288	total: 807ms	remaining: 1.37s
37:	learn: 20.0960622	total: 826ms	remaining: 1.35s
38:	learn: 19.7795108	total: 846ms	remaining: 1.32s
39:	learn: 19.4922451	total: 869ms	remaining: 1.3s
40:	learn: 19.1827582	total: 891ms	remaining: 1.28s
41:	learn: 18.8902445	total: 922ms	remaining: 1.27s
42:	learn: 18.6833086	total: 945ms	remaining: 1.25s
43:	learn: 18.4251972	total: 968ms	remaining: 1.23s
44:	learn: 18.1471037	total: 991ms	remaining: 1.21s
45:	learn: 17.8420017	total: 1.01s	remaining: 1.19s
46:	learn: 17.6101998	total: 1.03s	remaining: 1.17s
47:	learn: 17.3353656	total: 1.05s	remaining: 1.14s
48:	learn: 17.1194789	total: 1.08s	remaining: 1.12s
49:	learn: 16.8898454	total: 1.1s	remaining: 1.1s
50:	learn: 16.6657497	total: 1.13s	remaining: 1.08s
51:	learn: 16.3832867	total: 1.15s	remaining: 1.06s
52:	learn: 16.2098226	total: 1.17s	remaining: 1.04s
53:	learn: 16.0045707	total: 1.19s	remaining: 1.01s
54:	learn: 15.8512887	total: 1.21s	remaining: 991ms
55:	learn: 15.6485628	total: 1.23s	remaining: 967ms
56:	learn: 15.4841428	total: 1.25s	remaining: 944ms
57:	learn: 15.3383158	total: 1.27s	remaining: 920ms
58:	learn: 15.2056282	total: 1.29s	remaining: 896ms
59:	learn: 15.0698337	total: 1.31s	remaining: 873ms
60:	learn: 14.8487796	total: 1.33s	remaining: 852ms
61:	learn: 14.7255751	total: 1.36s	remaining: 835ms
62:	learn: 14.6100414	total: 1.39s	remaining: 815ms
63:	learn: 14.3864212	total: 1.41s	remaining: 793ms
64:	learn: 14.2800460	total: 1.43s	remaining: 771ms
65:	learn: 14.1017299	total: 1.45s	remaining: 750ms
66:	learn: 13.9655015	total: 1.47s	remaining: 726ms
67:	learn: 13.8065764	total: 1.5s	remaining: 704ms
68:	learn: 13.7473285	total: 1.52s	remaining: 682ms
69:	learn: 13.6967309	total: 1.54s	remaining: 659ms
70:	learn: 13.6253255	total: 1.56s	remaining: 637ms
71:	learn: 13.4974926	total: 1.59s	remaining: 617ms
72:	learn: 13.4142694	total: 1.61s	remaining: 596ms
73:	learn: 13.2902600	total: 1.63s	remaining: 573ms
74:	learn: 13.1816461	total: 1.66s	remaining: 554ms
75:	learn: 13.0809498	total: 1.69s	remaining: 532ms
76:	learn: 12.9772285	total: 1.71s	remaining: 511ms
77:	learn: 12.8413858	total: 1.73s	remaining: 489ms
78:	learn: 12.7615799	total: 1.76s	remaining: 467ms
79:	learn: 12.5808659	total: 1.78s	remaining: 446ms
80:	learn: 12.4938330	total: 1.81s	remaining: 425ms
81:	learn: 12.3745576	total: 1.84s	remaining: 404ms
82:	learn: 12.2474104	total: 1.86s	remaining: 382ms
83:	learn: 12.1582297	total: 1.89s	remaining: 360ms
84:	learn: 12.0528081	total: 1.92s	remaining: 338ms
85:	learn: 11.9483355	total: 1.94s	remaining: 316ms
86:	learn: 11.8683204	total: 1.97s	remaining: 294ms
87:	learn: 11.7680945	total: 2s	remaining: 272ms
88:	learn: 11.6635447	total: 2.02s	remaining: 250ms
89:	learn: 11.5775031	total: 2.05s	remaining: 228ms
90:	learn: 11.4860538	total: 2.08s	remaining: 205ms
91:	learn: 11.3584960	total: 2.1s	remaining: 183ms
92:	learn: 11.2180285	total: 2.12s	remaining: 160ms
93:	learn: 11.0996558	total: 2.14s	remaining: 137ms
94:	learn: 10.9688832	total: 2.17s	remaining: 114ms
95:	learn: 10.9205457	total: 2.19s	remaining: 91.3ms
96:	learn: 10.8462783	total: 2.22s	remaining: 68.8ms
97:	learn: 10.7481890	total: 2.25s	remaining: 45.9ms
98:	learn: 10.6396315	total: 2.28s	remaining: 23.1ms
99:	learn: 10.5895308	total: 2.31s	remaining: 0us
0:	learn: 46.2892189	total: 24.8ms	remaining: 2.46s
1:	learn: 44.9732744	total: 48.4ms	remaining: 2.37s
2:	learn: 43.8887345	total: 70.9ms	remaining: 2.29s
3:	learn: 42.6526320	total: 93.1ms	remaining: 2.23s
4:	learn: 41.4812505	total: 120ms	remaining: 2.29s
5:	learn: 40.4431224	total: 148ms	remaining: 2.32s
6:	learn: 39.2936749	total: 179ms	remaining: 2.37s
7:	learn: 38.1961652	total: 200ms	remaining: 2.3s
8:	learn: 37.2194841	total: 222ms	remaining: 2.25s
9:	learn: 36.2518666	total: 245ms	remaining: 2.2s
10:	learn: 35.4919224	total: 269ms	remaining: 2.17s
11:	learn: 34.6975877	total: 293ms	remaining: 2.15s
12:	learn: 33.7869362	total: 316ms	remaining: 2.11s
13:	learn: 33.0646033	total: 341ms	remaining: 2.09s
14:	learn: 32.1821772	total: 367ms	remaining: 2.08s
15:	learn: 31.4340749	total: 398ms	remaining: 2.09s
16:	learn: 30.6504198	total: 432ms	remaining: 2.11s
17:	learn: 30.0090260	total: 456ms	remaining: 2.08s
18:	learn: 29.4233143	total: 481ms	remaining: 2.05s
19:	learn: 28.7661957	total: 505ms	remaining: 2.02s
20:	learn: 28.1570594	total: 528ms	remaining: 1.98s
21:	learn: 27.6140124	total: 552ms	remaining: 1.96s
22:	learn: 27.0130709	total: 576ms	remaining: 1.93s
23:	learn: 26.2648081	total: 608ms	remaining: 1.93s
24:	learn: 25.7963649	total: 633ms	remaining: 1.9s
25:	learn: 25.2713860	total: 655ms	remaining: 1.86s
26:	learn: 24.8080692	total: 688ms	remaining: 1.86s
27:	learn: 24.3042862	total: 712ms	remaining: 1.83s
28:	learn: 23.9097237	total: 734ms	remaining: 1.8s
29:	learn: 23.4953174	total: 758ms	remaining: 1.77s
30:	learn: 23.0484452	total: 782ms	remaining: 1.74s
31:	learn: 22.7100962	total: 815ms	remaining: 1.73s
32:	learn: 22.1662267	total: 843ms	remaining: 1.71s
33:	learn: 21.7339884	total: 868ms	remaining: 1.68s
34:	learn: 21.3699422	total: 893ms	remaining: 1.66s
35:	learn: 21.0249329	total: 918ms	remaining: 1.63s
36:	learn: 20.6187923	total: 949ms	remaining: 1.61s
37:	learn: 20.2401981	total: 973ms	remaining: 1.59s
38:	learn: 19.9712328	total: 999ms	remaining: 1.56s
39:	learn: 19.6429610	total: 1.03s	remaining: 1.54s
40:	learn: 19.3281556	total: 1.05s	remaining: 1.51s
41:	learn: 19.0925924	total: 1.07s	remaining: 1.49s
42:	learn: 18.8118712	total: 1.1s	remaining: 1.46s
43:	learn: 18.5355748	total: 1.12s	remaining: 1.43s
44:	learn: 18.2783929	total: 1.14s	remaining: 1.4s
45:	learn: 17.9915490	total: 1.17s	remaining: 1.37s
46:	learn: 17.7323317	total: 1.2s	remaining: 1.35s
47:	learn: 17.4448307	total: 1.23s	remaining: 1.33s
48:	learn: 17.2419782	total: 1.26s	remaining: 1.31s
49:	learn: 16.9351352	total: 1.28s	remaining: 1.28s
50:	learn: 16.7728723	total: 1.31s	remaining: 1.26s
51:	learn: 16.5718087	total: 1.33s	remaining: 1.23s
52:	learn: 16.4047483	total: 1.36s	remaining: 1.2s
53:	learn: 16.2888950	total: 1.38s	remaining: 1.18s
54:	learn: 16.1353042	total: 1.4s	remaining: 1.15s
55:	learn: 15.9384012	total: 1.43s	remaining: 1.12s
56:	learn: 15.7488511	total: 1.47s	remaining: 1.11s
57:	learn: 15.5682846	total: 1.49s	remaining: 1.08s
58:	learn: 15.3488716	total: 1.51s	remaining: 1.05s
59:	learn: 15.2291272	total: 1.54s	remaining: 1.02s
60:	learn: 15.0582519	total: 1.56s	remaining: 996ms
61:	learn: 14.8478458	total: 1.58s	remaining: 969ms
62:	learn: 14.6663416	total: 1.6s	remaining: 942ms
63:	learn: 14.4830825	total: 1.63s	remaining: 916ms
64:	learn: 14.3300895	total: 1.66s	remaining: 895ms
65:	learn: 14.1168590	total: 1.69s	remaining: 869ms
66:	learn: 13.9783298	total: 1.72s	remaining: 847ms
67:	learn: 13.8132857	total: 1.75s	remaining: 821ms
68:	learn: 13.7050863	total: 1.77s	remaining: 795ms
69:	learn: 13.5742501	total: 1.79s	remaining: 768ms
70:	learn: 13.4851362	total: 1.82s	remaining: 742ms
71:	learn: 13.3300610	total: 1.84s	remaining: 717ms
72:	learn: 13.2223060	total: 1.88s	remaining: 694ms
73:	learn: 13.0706731	total: 1.9s	remaining: 667ms
74:	learn: 12.9178099	total: 1.92s	remaining: 640ms
75:	learn: 12.7954645	total: 1.94s	remaining: 614ms
76:	learn: 12.7133688	total: 1.97s	remaining: 589ms
77:	learn: 12.5745537	total: 1.99s	remaining: 563ms
78:	learn: 12.4765302	total: 2.02s	remaining: 536ms
79:	learn: 12.3609145	total: 2.04s	remaining: 511ms
80:	learn: 12.2437759	total: 2.07s	remaining: 486ms
81:	learn: 12.1583763	total: 2.1s	remaining: 461ms
82:	learn: 12.0202500	total: 2.12s	remaining: 435ms
83:	learn: 11.9125166	total: 2.15s	remaining: 410ms
84:	learn: 11.8100729	total: 2.17s	remaining: 384ms
85:	learn: 11.7509521	total: 2.2s	remaining: 358ms
86:	learn: 11.6448436	total: 2.23s	remaining: 333ms
87:	learn: 11.5550170	total: 2.25s	remaining: 307ms
88:	learn: 11.4624708	total: 2.28s	remaining: 282ms
89:	learn: 11.3547761	total: 2.31s	remaining: 256ms
90:	learn: 11.2513910	total: 2.33s	remaining: 231ms
91:	learn: 11.1414483	total: 2.35s	remaining: 205ms
92:	learn: 11.0742264	total: 2.37s	remaining: 179ms
93:	learn: 10.9721772	total: 2.4s	remaining: 153ms
94:	learn: 10.9118054	total: 2.42s	remaining: 127ms
95:	learn: 10.8465290	total: 2.45s	remaining: 102ms
96:	learn: 10.7451745	total: 2.48s	remaining: 76.6ms
97:	learn: 10.6173565	total: 2.5s	remaining: 51.1ms
98:	learn: 10.5562158	total: 2.53s	remaining: 25.6ms
99:	learn: 10.4564960	total: 2.56s	remaining: 0us
avg_Mae_val de la población en la generación 6: 18.2008874446288 con std media = 9.244059936085259
Mae_val del Mejor modelo en la generación 6: 18.0243 con std = 9.1565
0:	learn: 27.3441720	total: 20ms	remaining: 1.98s
1:	learn: 26.7159954	total: 42.5ms	remaining: 2.08s
2:	learn: 26.0850318	total: 64.2ms	remaining: 2.08s
3:	learn: 25.4039656	total: 86.7ms	remaining: 2.08s
4:	learn: 24.7930659	total: 118ms	remaining: 2.24s
5:	learn: 24.2028590	total: 145ms	remaining: 2.28s
6:	learn: 23.6622902	total: 168ms	remaining: 2.23s
7:	learn: 23.1531175	total: 191ms	remaining: 2.2s
8:	learn: 22.7050792	total: 214ms	remaining: 2.17s
9:	learn: 22.2151788	total: 237ms	remaining: 2.13s
10:	learn: 21.7708844	total: 261ms	remaining: 2.11s
11:	learn: 21.2587174	total: 285ms	remaining: 2.09s
12:	learn: 20.7559870	total: 319ms	remaining: 2.13s
13:	learn: 20.3040842	total: 345ms	remaining: 2.12s
14:	learn: 19.9019524	total: 368ms	remaining: 2.09s
15:	learn: 19.5186012	total: 392ms	remaining: 2.06s
16:	learn: 19.1521621	total: 417ms	remaining: 2.03s
17:	learn: 18.7652180	total: 439ms	remaining: 2s
18:	learn: 18.4446446	total: 461ms	remaining: 1.97s
19:	learn: 18.0977650	total: 483ms	remaining: 1.93s
20:	learn: 17.7791328	total: 508ms	remaining: 1.91s
21:	learn: 17.4777648	total: 533ms	remaining: 1.89s
22:	learn: 17.1794361	total: 563ms	remaining: 1.88s
23:	learn: 16.8685032	total: 583ms	remaining: 1.85s
24:	learn: 16.6274695	total: 606ms	remaining: 1.82s
25:	learn: 16.3071099	total: 627ms	remaining: 1.78s
26:	learn: 16.0249663	total: 648ms	remaining: 1.75s
27:	learn: 15.7535309	total: 669ms	remaining: 1.72s
28:	learn: 15.4777235	total: 691ms	remaining: 1.69s
29:	learn: 15.2410825	total: 712ms	remaining: 1.66s
30:	learn: 15.0133002	total: 734ms	remaining: 1.63s
31:	learn: 14.8018912	total: 761ms	remaining: 1.62s
32:	learn: 14.5701546	total: 789ms	remaining: 1.6s
33:	learn: 14.3799060	total: 814ms	remaining: 1.58s
34:	learn: 14.0975095	total: 837ms	remaining: 1.55s
35:	learn: 13.8873493	total: 862ms	remaining: 1.53s
36:	learn: 13.6812023	total: 884ms	remaining: 1.5s
37:	learn: 13.4943017	total: 905ms	remaining: 1.48s
38:	learn: 13.3224094	total: 927ms	remaining: 1.45s
39:	learn: 13.0967901	total: 949ms	remaining: 1.42s
40:	learn: 12.9138190	total: 975ms	remaining: 1.4s
41:	learn: 12.7764458	total: 1s	remaining: 1.38s
42:	learn: 12.6593656	total: 1.02s	remaining: 1.36s
43:	learn: 12.5051105	total: 1.05s	remaining: 1.33s
44:	learn: 12.3057146	total: 1.07s	remaining: 1.31s
45:	learn: 12.1487674	total: 1.09s	remaining: 1.28s
46:	learn: 11.9614903	total: 1.11s	remaining: 1.26s
47:	learn: 11.7921265	total: 1.14s	remaining: 1.23s
48:	learn: 11.6572640	total: 1.16s	remaining: 1.21s
49:	learn: 11.5251463	total: 1.19s	remaining: 1.19s
50:	learn: 11.3789931	total: 1.22s	remaining: 1.17s
51:	learn: 11.2691375	total: 1.24s	remaining: 1.15s
52:	learn: 11.1161131	total: 1.27s	remaining: 1.12s
53:	learn: 11.0246399	total: 1.29s	remaining: 1.1s
54:	learn: 10.9152420	total: 1.32s	remaining: 1.08s
55:	learn: 10.7746769	total: 1.34s	remaining: 1.05s
56:	learn: 10.6222917	total: 1.36s	remaining: 1.02s
57:	learn: 10.5096115	total: 1.38s	remaining: 1s
58:	learn: 10.3857030	total: 1.42s	remaining: 985ms
59:	learn: 10.2789057	total: 1.44s	remaining: 961ms
60:	learn: 10.1490749	total: 1.46s	remaining: 936ms
61:	learn: 10.0553291	total: 1.49s	remaining: 911ms
62:	learn: 9.9351043	total: 1.51s	remaining: 887ms
63:	learn: 9.8245261	total: 1.53s	remaining: 862ms
64:	learn: 9.7207577	total: 1.55s	remaining: 837ms
65:	learn: 9.5920661	total: 1.58s	remaining: 813ms
66:	learn: 9.4832767	total: 1.61s	remaining: 791ms
67:	learn: 9.3724149	total: 1.63s	remaining: 768ms
68:	learn: 9.2459801	total: 1.66s	remaining: 744ms
69:	learn: 9.1740635	total: 1.68s	remaining: 720ms
70:	learn: 9.1015730	total: 1.7s	remaining: 696ms
71:	learn: 9.0196460	total: 1.73s	remaining: 671ms
72:	learn: 8.9458977	total: 1.75s	remaining: 647ms
73:	learn: 8.8434400	total: 1.77s	remaining: 621ms
74:	learn: 8.7495151	total: 1.79s	remaining: 597ms
75:	learn: 8.6521348	total: 1.81s	remaining: 573ms
76:	learn: 8.5654483	total: 1.84s	remaining: 551ms
77:	learn: 8.4965765	total: 1.87s	remaining: 527ms
78:	learn: 8.4308736	total: 1.89s	remaining: 502ms
79:	learn: 8.3675601	total: 1.91s	remaining: 477ms
80:	learn: 8.3193887	total: 1.93s	remaining: 453ms
81:	learn: 8.2507990	total: 1.95s	remaining: 428ms
82:	learn: 8.1583259	total: 1.97s	remaining: 404ms
83:	learn: 8.0995902	total: 2s	remaining: 380ms
84:	learn: 8.0236655	total: 2.02s	remaining: 356ms
85:	learn: 7.9634698	total: 2.05s	remaining: 333ms
86:	learn: 7.9109081	total: 2.07s	remaining: 310ms
87:	learn: 7.8385006	total: 2.1s	remaining: 286ms
88:	learn: 7.7859488	total: 2.12s	remaining: 262ms
89:	learn: 7.7270142	total: 2.14s	remaining: 238ms
90:	learn: 7.6774253	total: 2.16s	remaining: 214ms
91:	learn: 7.6126552	total: 2.19s	remaining: 190ms
92:	learn: 7.5392178	total: 2.21s	remaining: 166ms
93:	learn: 7.4745082	total: 2.23s	remaining: 142ms
94:	learn: 7.4106939	total: 2.25s	remaining: 119ms
95:	learn: 7.3573350	total: 2.28s	remaining: 95.1ms
96:	learn: 7.2889777	total: 2.3s	remaining: 71.2ms
97:	learn: 7.2204939	total: 2.32s	remaining: 47.4ms
98:	learn: 7.1646465	total: 2.34s	remaining: 23.7ms
99:	learn: 7.1204610	total: 2.36s	remaining: 0us
0:	learn: 42.5494645	total: 21.4ms	remaining: 2.12s
1:	learn: 41.2913513	total: 43.8ms	remaining: 2.15s
2:	learn: 40.1676527	total: 67.1ms	remaining: 2.17s
3:	learn: 38.7664819	total: 96.7ms	remaining: 2.32s
4:	learn: 37.5407492	total: 120ms	remaining: 2.27s
5:	learn: 36.4295331	total: 142ms	remaining: 2.22s
6:	learn: 35.2895967	total: 165ms	remaining: 2.19s
7:	learn: 34.1884539	total: 188ms	remaining: 2.16s
8:	learn: 33.1817690	total: 208ms	remaining: 2.1s
9:	learn: 32.3518195	total: 229ms	remaining: 2.06s
10:	learn: 31.4837515	total: 251ms	remaining: 2.03s
11:	learn: 30.7255972	total: 275ms	remaining: 2.01s
12:	learn: 29.9298648	total: 307ms	remaining: 2.05s
13:	learn: 29.0574249	total: 330ms	remaining: 2.02s
14:	learn: 28.4097384	total: 351ms	remaining: 1.99s
15:	learn: 27.5317445	total: 372ms	remaining: 1.95s
16:	learn: 26.7911946	total: 392ms	remaining: 1.91s
17:	learn: 26.1103465	total: 413ms	remaining: 1.88s
18:	learn: 25.5295903	total: 434ms	remaining: 1.85s
19:	learn: 24.8544960	total: 453ms	remaining: 1.81s
20:	learn: 24.2772682	total: 473ms	remaining: 1.78s
21:	learn: 23.6936944	total: 495ms	remaining: 1.75s
22:	learn: 23.1300945	total: 516ms	remaining: 1.73s
23:	learn: 22.5333494	total: 546ms	remaining: 1.73s
24:	learn: 22.0553465	total: 570ms	remaining: 1.71s
25:	learn: 21.6253628	total: 593ms	remaining: 1.69s
26:	learn: 21.1396219	total: 615ms	remaining: 1.66s
27:	learn: 20.7382905	total: 638ms	remaining: 1.64s
28:	learn: 20.3233915	total: 658ms	remaining: 1.61s
29:	learn: 19.9323992	total: 679ms	remaining: 1.58s
30:	learn: 19.5650439	total: 700ms	remaining: 1.56s
31:	learn: 19.2165649	total: 725ms	remaining: 1.54s
32:	learn: 18.8890056	total: 750ms	remaining: 1.52s
33:	learn: 18.5523762	total: 774ms	remaining: 1.5s
34:	learn: 18.2666116	total: 795ms	remaining: 1.48s
35:	learn: 17.9216926	total: 814ms	remaining: 1.45s
36:	learn: 17.6118879	total: 835ms	remaining: 1.42s
37:	learn: 17.2653313	total: 855ms	remaining: 1.4s
38:	learn: 16.9946585	total: 877ms	remaining: 1.37s
39:	learn: 16.6842506	total: 899ms	remaining: 1.35s
40:	learn: 16.4102287	total: 920ms	remaining: 1.32s
41:	learn: 16.2288795	total: 942ms	remaining: 1.3s
42:	learn: 15.9623692	total: 970ms	remaining: 1.29s
43:	learn: 15.7308231	total: 998ms	remaining: 1.27s
44:	learn: 15.4695555	total: 1.02s	remaining: 1.25s
45:	learn: 15.2706809	total: 1.04s	remaining: 1.22s
46:	learn: 15.0182699	total: 1.06s	remaining: 1.2s
47:	learn: 14.7702088	total: 1.09s	remaining: 1.18s
48:	learn: 14.6303566	total: 1.11s	remaining: 1.16s
49:	learn: 14.4038016	total: 1.13s	remaining: 1.13s
50:	learn: 14.2309807	total: 1.15s	remaining: 1.11s
51:	learn: 14.0308425	total: 1.17s	remaining: 1.08s
52:	learn: 13.8201931	total: 1.2s	remaining: 1.07s
53:	learn: 13.6070078	total: 1.22s	remaining: 1.04s
54:	learn: 13.4230690	total: 1.25s	remaining: 1.02s
55:	learn: 13.2368649	total: 1.27s	remaining: 1000ms
56:	learn: 13.0449556	total: 1.3s	remaining: 979ms
57:	learn: 12.8375669	total: 1.32s	remaining: 958ms
58:	learn: 12.6795194	total: 1.34s	remaining: 935ms
59:	learn: 12.5197211	total: 1.37s	remaining: 913ms
60:	learn: 12.4011717	total: 1.39s	remaining: 892ms
61:	learn: 12.2396104	total: 1.43s	remaining: 878ms
62:	learn: 12.0647878	total: 1.46s	remaining: 856ms
63:	learn: 11.9247719	total: 1.48s	remaining: 833ms
64:	learn: 11.7923634	total: 1.51s	remaining: 811ms
65:	learn: 11.6628246	total: 1.53s	remaining: 789ms
66:	learn: 11.5688935	total: 1.55s	remaining: 766ms
67:	learn: 11.4345056	total: 1.58s	remaining: 742ms
68:	learn: 11.3136955	total: 1.6s	remaining: 720ms
69:	learn: 11.2040357	total: 1.63s	remaining: 700ms
70:	learn: 11.1067773	total: 1.67s	remaining: 681ms
71:	learn: 10.9728105	total: 1.69s	remaining: 657ms
72:	learn: 10.8338607	total: 1.71s	remaining: 633ms
73:	learn: 10.7202016	total: 1.74s	remaining: 610ms
74:	learn: 10.5983746	total: 1.76s	remaining: 586ms
75:	learn: 10.4882458	total: 1.78s	remaining: 563ms
76:	learn: 10.3827604	total: 1.81s	remaining: 540ms
77:	learn: 10.2485726	total: 1.83s	remaining: 517ms
78:	learn: 10.1524716	total: 1.86s	remaining: 496ms
79:	learn: 10.0765127	total: 1.89s	remaining: 473ms
80:	learn: 9.9617067	total: 1.92s	remaining: 451ms
81:	learn: 9.8357151	total: 1.95s	remaining: 428ms
82:	learn: 9.7311644	total: 1.97s	remaining: 404ms
83:	learn: 9.6314802	total: 1.99s	remaining: 380ms
84:	learn: 9.5137958	total: 2.02s	remaining: 356ms
85:	learn: 9.4420485	total: 2.04s	remaining: 333ms
86:	learn: 9.3959294	total: 2.07s	remaining: 310ms
87:	learn: 9.3057742	total: 2.1s	remaining: 286ms
88:	learn: 9.2031484	total: 2.12s	remaining: 262ms
89:	learn: 9.0996948	total: 2.15s	remaining: 238ms
90:	learn: 9.0492278	total: 2.17s	remaining: 215ms
91:	learn: 8.9400377	total: 2.2s	remaining: 191ms
92:	learn: 8.8904458	total: 2.22s	remaining: 167ms
93:	learn: 8.8102982	total: 2.25s	remaining: 143ms
94:	learn: 8.7445451	total: 2.28s	remaining: 120ms
95:	learn: 8.6796106	total: 2.31s	remaining: 96.1ms
96:	learn: 8.5875790	total: 2.33s	remaining: 72.1ms
97:	learn: 8.5086871	total: 2.36s	remaining: 48.1ms
98:	learn: 8.4547244	total: 2.38s	remaining: 24.1ms
99:	learn: 8.3841281	total: 2.4s	remaining: 0us
0:	learn: 46.2258117	total: 2.71ms	remaining: 269ms
1:	learn: 45.1253456	total: 24.7ms	remaining: 1.21s
2:	learn: 43.7311767	total: 46.9ms	remaining: 1.52s
3:	learn: 42.4252819	total: 69.4ms	remaining: 1.66s
4:	learn: 41.1436655	total: 90.6ms	remaining: 1.72s
5:	learn: 40.0337136	total: 111ms	remaining: 1.74s
6:	learn: 38.9102686	total: 131ms	remaining: 1.74s
7:	learn: 37.7859737	total: 152ms	remaining: 1.75s
8:	learn: 36.7646905	total: 173ms	remaining: 1.75s
9:	learn: 35.9495481	total: 201ms	remaining: 1.81s
10:	learn: 35.0558185	total: 228ms	remaining: 1.84s
11:	learn: 34.1958090	total: 252ms	remaining: 1.85s
12:	learn: 33.3514013	total: 276ms	remaining: 1.85s
13:	learn: 32.3317086	total: 301ms	remaining: 1.85s
14:	learn: 31.5611046	total: 325ms	remaining: 1.84s
15:	learn: 30.6373573	total: 350ms	remaining: 1.84s
16:	learn: 29.8883669	total: 372ms	remaining: 1.81s
17:	learn: 29.2985952	total: 395ms	remaining: 1.8s
18:	learn: 28.6360550	total: 418ms	remaining: 1.78s
19:	learn: 27.9757056	total: 446ms	remaining: 1.78s
20:	learn: 27.2585835	total: 471ms	remaining: 1.77s
21:	learn: 26.6366391	total: 492ms	remaining: 1.75s
22:	learn: 26.1055455	total: 515ms	remaining: 1.72s
23:	learn: 25.4961568	total: 538ms	remaining: 1.7s
24:	learn: 25.1037435	total: 558ms	remaining: 1.67s
25:	learn: 24.5258982	total: 581ms	remaining: 1.65s
26:	learn: 23.9974764	total: 604ms	remaining: 1.63s
27:	learn: 23.5108419	total: 625ms	remaining: 1.61s
28:	learn: 23.0835773	total: 649ms	remaining: 1.59s
29:	learn: 22.5744350	total: 677ms	remaining: 1.58s
30:	learn: 22.1357783	total: 704ms	remaining: 1.57s
31:	learn: 21.7316226	total: 729ms	remaining: 1.55s
32:	learn: 21.4082899	total: 752ms	remaining: 1.53s
33:	learn: 20.9640138	total: 777ms	remaining: 1.51s
34:	learn: 20.6379417	total: 800ms	remaining: 1.49s
35:	learn: 20.2688010	total: 821ms	remaining: 1.46s
36:	learn: 19.8479214	total: 844ms	remaining: 1.44s
37:	learn: 19.5684638	total: 867ms	remaining: 1.41s
38:	learn: 19.1826919	total: 897ms	remaining: 1.4s
39:	learn: 18.9583308	total: 919ms	remaining: 1.38s
40:	learn: 18.6736002	total: 941ms	remaining: 1.35s
41:	learn: 18.3525328	total: 962ms	remaining: 1.33s
42:	learn: 17.9954191	total: 986ms	remaining: 1.31s
43:	learn: 17.6991520	total: 1.01s	remaining: 1.28s
44:	learn: 17.3697888	total: 1.03s	remaining: 1.26s
45:	learn: 17.0519636	total: 1.05s	remaining: 1.23s
46:	learn: 16.7829795	total: 1.07s	remaining: 1.21s
47:	learn: 16.5108695	total: 1.1s	remaining: 1.2s
48:	learn: 16.2366816	total: 1.13s	remaining: 1.18s
49:	learn: 15.9947350	total: 1.15s	remaining: 1.15s
50:	learn: 15.7513561	total: 1.18s	remaining: 1.13s
51:	learn: 15.4328481	total: 1.2s	remaining: 1.11s
52:	learn: 15.2497907	total: 1.22s	remaining: 1.08s
53:	learn: 15.0417076	total: 1.25s	remaining: 1.06s
54:	learn: 14.8861891	total: 1.27s	remaining: 1.04s
55:	learn: 14.6497794	total: 1.29s	remaining: 1.01s
56:	learn: 14.3664771	total: 1.32s	remaining: 995ms
57:	learn: 14.2358168	total: 1.34s	remaining: 973ms
58:	learn: 14.0712722	total: 1.36s	remaining: 948ms
59:	learn: 13.9191649	total: 1.39s	remaining: 923ms
60:	learn: 13.7032356	total: 1.41s	remaining: 899ms
61:	learn: 13.5029041	total: 1.43s	remaining: 876ms
62:	learn: 13.3568908	total: 1.45s	remaining: 851ms
63:	learn: 13.1332696	total: 1.47s	remaining: 828ms
64:	learn: 13.0323137	total: 1.5s	remaining: 805ms
65:	learn: 12.8622078	total: 1.52s	remaining: 782ms
66:	learn: 12.7088186	total: 1.55s	remaining: 765ms
67:	learn: 12.5524646	total: 1.58s	remaining: 743ms
68:	learn: 12.4646011	total: 1.6s	remaining: 720ms
69:	learn: 12.3900687	total: 1.63s	remaining: 697ms
70:	learn: 12.2908367	total: 1.65s	remaining: 673ms
71:	learn: 12.1294405	total: 1.67s	remaining: 650ms
72:	learn: 12.0359996	total: 1.7s	remaining: 627ms
73:	learn: 11.9244352	total: 1.72s	remaining: 604ms
74:	learn: 11.8312038	total: 1.75s	remaining: 583ms
75:	learn: 11.6622123	total: 1.77s	remaining: 560ms
76:	learn: 11.5959180	total: 1.79s	remaining: 536ms
77:	learn: 11.4538852	total: 1.82s	remaining: 513ms
78:	learn: 11.3700375	total: 1.84s	remaining: 489ms
79:	learn: 11.2101447	total: 1.86s	remaining: 466ms
80:	learn: 11.0614634	total: 1.88s	remaining: 442ms
81:	learn: 10.9029225	total: 1.91s	remaining: 418ms
82:	learn: 10.7792030	total: 1.93s	remaining: 395ms
83:	learn: 10.6279451	total: 1.96s	remaining: 374ms
84:	learn: 10.5530267	total: 1.99s	remaining: 351ms
85:	learn: 10.4577150	total: 2.01s	remaining: 327ms
86:	learn: 10.4076417	total: 2.03s	remaining: 304ms
87:	learn: 10.3166632	total: 2.06s	remaining: 280ms
88:	learn: 10.2018151	total: 2.08s	remaining: 257ms
89:	learn: 10.0698484	total: 2.1s	remaining: 233ms
90:	learn: 10.0162824	total: 2.12s	remaining: 209ms
91:	learn: 9.9352639	total: 2.14s	remaining: 186ms
92:	learn: 9.8316734	total: 2.17s	remaining: 163ms
93:	learn: 9.7195471	total: 2.19s	remaining: 140ms
94:	learn: 9.5914894	total: 2.21s	remaining: 116ms
95:	learn: 9.5151851	total: 2.23s	remaining: 93ms
96:	learn: 9.3911314	total: 2.25s	remaining: 69.7ms
97:	learn: 9.3417706	total: 2.27s	remaining: 46.4ms
98:	learn: 9.2708440	total: 2.3s	remaining: 23.2ms
99:	learn: 9.1660321	total: 2.32s	remaining: 0us
0:	learn: 45.8627255	total: 3.01ms	remaining: 298ms
1:	learn: 44.7432040	total: 35.6ms	remaining: 1.74s
2:	learn: 43.4398568	total: 59.6ms	remaining: 1.93s
3:	learn: 42.1495515	total: 82ms	remaining: 1.97s
4:	learn: 40.9712633	total: 105ms	remaining: 1.99s
5:	learn: 40.0119591	total: 127ms	remaining: 1.99s
6:	learn: 39.1914360	total: 148ms	remaining: 1.96s
7:	learn: 38.1861536	total: 170ms	remaining: 1.95s
8:	learn: 37.1477128	total: 191ms	remaining: 1.93s
9:	learn: 36.3044702	total: 214ms	remaining: 1.92s
10:	learn: 35.5837917	total: 245ms	remaining: 1.98s
11:	learn: 34.8664158	total: 267ms	remaining: 1.95s
12:	learn: 33.9129833	total: 289ms	remaining: 1.93s
13:	learn: 32.9094642	total: 311ms	remaining: 1.91s
14:	learn: 32.1965787	total: 331ms	remaining: 1.87s
15:	learn: 31.4598238	total: 349ms	remaining: 1.83s
16:	learn: 30.6578027	total: 370ms	remaining: 1.81s
17:	learn: 30.0227468	total: 392ms	remaining: 1.78s
18:	learn: 29.2954728	total: 414ms	remaining: 1.76s
19:	learn: 28.5928084	total: 436ms	remaining: 1.74s
20:	learn: 27.9445984	total: 466ms	remaining: 1.75s
21:	learn: 27.3493298	total: 491ms	remaining: 1.74s
22:	learn: 26.8491966	total: 513ms	remaining: 1.72s
23:	learn: 26.3177453	total: 535ms	remaining: 1.69s
24:	learn: 25.8134533	total: 558ms	remaining: 1.67s
25:	learn: 25.2000018	total: 577ms	remaining: 1.64s
26:	learn: 24.6570461	total: 599ms	remaining: 1.62s
27:	learn: 24.1062982	total: 619ms	remaining: 1.59s
28:	learn: 23.7489370	total: 642ms	remaining: 1.57s
29:	learn: 23.2050536	total: 665ms	remaining: 1.55s
30:	learn: 22.7824379	total: 693ms	remaining: 1.54s
31:	learn: 22.4052655	total: 715ms	remaining: 1.52s
32:	learn: 21.9525639	total: 735ms	remaining: 1.49s
33:	learn: 21.5482900	total: 755ms	remaining: 1.47s
34:	learn: 21.1900983	total: 774ms	remaining: 1.44s
35:	learn: 20.8243957	total: 793ms	remaining: 1.41s
36:	learn: 20.4401288	total: 812ms	remaining: 1.38s
37:	learn: 20.0960622	total: 832ms	remaining: 1.36s
38:	learn: 19.7795108	total: 854ms	remaining: 1.33s
39:	learn: 19.4922451	total: 877ms	remaining: 1.31s
40:	learn: 19.1827582	total: 910ms	remaining: 1.31s
41:	learn: 18.8902445	total: 933ms	remaining: 1.29s
42:	learn: 18.6833086	total: 956ms	remaining: 1.27s
43:	learn: 18.4251972	total: 979ms	remaining: 1.25s
44:	learn: 18.1471037	total: 1s	remaining: 1.22s
45:	learn: 17.8420017	total: 1.02s	remaining: 1.2s
46:	learn: 17.6101998	total: 1.04s	remaining: 1.18s
47:	learn: 17.3353656	total: 1.06s	remaining: 1.15s
48:	learn: 17.1194789	total: 1.09s	remaining: 1.13s
49:	learn: 16.8898454	total: 1.11s	remaining: 1.11s
50:	learn: 16.6657497	total: 1.14s	remaining: 1.09s
51:	learn: 16.3832867	total: 1.16s	remaining: 1.07s
52:	learn: 16.2098226	total: 1.18s	remaining: 1.04s
53:	learn: 16.0045707	total: 1.2s	remaining: 1.02s
54:	learn: 15.8512887	total: 1.22s	remaining: 996ms
55:	learn: 15.6485628	total: 1.24s	remaining: 973ms
56:	learn: 15.4841428	total: 1.26s	remaining: 951ms
57:	learn: 15.3383158	total: 1.28s	remaining: 928ms
58:	learn: 15.2056282	total: 1.32s	remaining: 918ms
59:	learn: 15.0698337	total: 1.35s	remaining: 900ms
60:	learn: 14.8487796	total: 1.37s	remaining: 879ms
61:	learn: 14.7255751	total: 1.4s	remaining: 858ms
62:	learn: 14.6100414	total: 1.42s	remaining: 836ms
63:	learn: 14.3864212	total: 1.45s	remaining: 815ms
64:	learn: 14.2800460	total: 1.47s	remaining: 792ms
65:	learn: 14.1017299	total: 1.49s	remaining: 770ms
66:	learn: 13.9655015	total: 1.52s	remaining: 749ms
67:	learn: 13.8065764	total: 1.55s	remaining: 731ms
68:	learn: 13.7473285	total: 1.58s	remaining: 712ms
69:	learn: 13.6967309	total: 1.6s	remaining: 688ms
70:	learn: 13.6253255	total: 1.63s	remaining: 664ms
71:	learn: 13.4974926	total: 1.65s	remaining: 641ms
72:	learn: 13.4142694	total: 1.67s	remaining: 618ms
73:	learn: 13.2902600	total: 1.69s	remaining: 595ms
74:	learn: 13.1816461	total: 1.72s	remaining: 572ms
75:	learn: 13.0809498	total: 1.74s	remaining: 549ms
76:	learn: 12.9772285	total: 1.76s	remaining: 527ms
77:	learn: 12.8413858	total: 1.79s	remaining: 506ms
78:	learn: 12.7615799	total: 1.83s	remaining: 486ms
79:	learn: 12.5808659	total: 1.85s	remaining: 463ms
80:	learn: 12.4938330	total: 1.88s	remaining: 440ms
81:	learn: 12.3745576	total: 1.9s	remaining: 418ms
82:	learn: 12.2474104	total: 1.93s	remaining: 395ms
83:	learn: 12.1582297	total: 1.95s	remaining: 371ms
84:	learn: 12.0528081	total: 1.97s	remaining: 348ms
85:	learn: 11.9483355	total: 2.01s	remaining: 327ms
86:	learn: 11.8683204	total: 2.03s	remaining: 303ms
87:	learn: 11.7680945	total: 2.05s	remaining: 280ms
88:	learn: 11.6635447	total: 2.08s	remaining: 258ms
89:	learn: 11.5775031	total: 2.11s	remaining: 234ms
90:	learn: 11.4860538	total: 2.13s	remaining: 211ms
91:	learn: 11.3584960	total: 2.15s	remaining: 187ms
92:	learn: 11.2180285	total: 2.18s	remaining: 164ms
93:	learn: 11.0996558	total: 2.21s	remaining: 141ms
94:	learn: 10.9688832	total: 2.24s	remaining: 118ms
95:	learn: 10.9205457	total: 2.26s	remaining: 94.3ms
96:	learn: 10.8462783	total: 2.29s	remaining: 70.8ms
97:	learn: 10.7481890	total: 2.31s	remaining: 47.2ms
98:	learn: 10.6396315	total: 2.35s	remaining: 23.7ms
99:	learn: 10.5895308	total: 2.37s	remaining: 0us
0:	learn: 46.2892189	total: 22.2ms	remaining: 2.2s
1:	learn: 44.9732744	total: 43.6ms	remaining: 2.14s
2:	learn: 43.8887345	total: 67.5ms	remaining: 2.18s
3:	learn: 42.6526320	total: 89.2ms	remaining: 2.14s
4:	learn: 41.4812505	total: 110ms	remaining: 2.09s
5:	learn: 40.4431224	total: 130ms	remaining: 2.03s
6:	learn: 39.2936749	total: 153ms	remaining: 2.03s
7:	learn: 38.1961652	total: 176ms	remaining: 2.02s
8:	learn: 37.2194841	total: 206ms	remaining: 2.08s
9:	learn: 36.2518666	total: 231ms	remaining: 2.08s
10:	learn: 35.4919224	total: 255ms	remaining: 2.06s
11:	learn: 34.6975877	total: 278ms	remaining: 2.04s
12:	learn: 33.7869362	total: 303ms	remaining: 2.02s
13:	learn: 33.0646033	total: 325ms	remaining: 2s
14:	learn: 32.1821772	total: 345ms	remaining: 1.96s
15:	learn: 31.4340749	total: 367ms	remaining: 1.93s
16:	learn: 30.6504198	total: 391ms	remaining: 1.91s
17:	learn: 30.0090260	total: 421ms	remaining: 1.92s
18:	learn: 29.4233143	total: 443ms	remaining: 1.89s
19:	learn: 28.7661957	total: 466ms	remaining: 1.86s
20:	learn: 28.1570594	total: 488ms	remaining: 1.83s
21:	learn: 27.6140124	total: 510ms	remaining: 1.81s
22:	learn: 27.0130709	total: 531ms	remaining: 1.78s
23:	learn: 26.2648081	total: 553ms	remaining: 1.75s
24:	learn: 25.7963649	total: 576ms	remaining: 1.73s
25:	learn: 25.2713860	total: 600ms	remaining: 1.71s
26:	learn: 24.8080692	total: 633ms	remaining: 1.71s
27:	learn: 24.3042862	total: 658ms	remaining: 1.69s
28:	learn: 23.9097237	total: 683ms	remaining: 1.67s
29:	learn: 23.4953174	total: 707ms	remaining: 1.65s
30:	learn: 23.0484452	total: 732ms	remaining: 1.63s
31:	learn: 22.7100962	total: 752ms	remaining: 1.6s
32:	learn: 22.1662267	total: 775ms	remaining: 1.57s
33:	learn: 21.7339884	total: 798ms	remaining: 1.55s
34:	learn: 21.3699422	total: 822ms	remaining: 1.53s
35:	learn: 21.0249329	total: 850ms	remaining: 1.51s
36:	learn: 20.6187923	total: 872ms	remaining: 1.49s
37:	learn: 20.2401981	total: 895ms	remaining: 1.46s
38:	learn: 19.9712328	total: 918ms	remaining: 1.44s
39:	learn: 19.6429610	total: 941ms	remaining: 1.41s
40:	learn: 19.3281556	total: 964ms	remaining: 1.39s
41:	learn: 19.0925924	total: 987ms	remaining: 1.36s
42:	learn: 18.8118712	total: 1.01s	remaining: 1.34s
43:	learn: 18.5355748	total: 1.03s	remaining: 1.32s
44:	learn: 18.2783929	total: 1.07s	remaining: 1.3s
45:	learn: 17.9915490	total: 1.09s	remaining: 1.28s
46:	learn: 17.7323317	total: 1.11s	remaining: 1.26s
47:	learn: 17.4448307	total: 1.14s	remaining: 1.23s
48:	learn: 17.2419782	total: 1.16s	remaining: 1.21s
49:	learn: 16.9351352	total: 1.18s	remaining: 1.18s
50:	learn: 16.7728723	total: 1.21s	remaining: 1.16s
51:	learn: 16.5718087	total: 1.23s	remaining: 1.13s
52:	learn: 16.4047483	total: 1.26s	remaining: 1.12s
53:	learn: 16.2888950	total: 1.28s	remaining: 1.09s
54:	learn: 16.1353042	total: 1.3s	remaining: 1.07s
55:	learn: 15.9384012	total: 1.32s	remaining: 1.04s
56:	learn: 15.7488511	total: 1.35s	remaining: 1.02s
57:	learn: 15.5682846	total: 1.37s	remaining: 991ms
58:	learn: 15.3488716	total: 1.39s	remaining: 965ms
59:	learn: 15.2291272	total: 1.41s	remaining: 939ms
60:	learn: 15.0582519	total: 1.43s	remaining: 915ms
61:	learn: 14.8478458	total: 1.46s	remaining: 892ms
62:	learn: 14.6663416	total: 1.48s	remaining: 871ms
63:	learn: 14.4830825	total: 1.51s	remaining: 851ms
64:	learn: 14.3300895	total: 1.54s	remaining: 828ms
65:	learn: 14.1168590	total: 1.56s	remaining: 804ms
66:	learn: 13.9783298	total: 1.58s	remaining: 781ms
67:	learn: 13.8132857	total: 1.6s	remaining: 756ms
68:	learn: 13.7050863	total: 1.63s	remaining: 730ms
69:	learn: 13.5742501	total: 1.65s	remaining: 706ms
70:	learn: 13.4851362	total: 1.67s	remaining: 683ms
71:	learn: 13.3300610	total: 1.7s	remaining: 661ms
72:	learn: 13.2223060	total: 1.72s	remaining: 638ms
73:	learn: 13.0706731	total: 1.75s	remaining: 614ms
74:	learn: 12.9178099	total: 1.77s	remaining: 589ms
75:	learn: 12.7954645	total: 1.79s	remaining: 564ms
76:	learn: 12.7133688	total: 1.81s	remaining: 540ms
77:	learn: 12.5745537	total: 1.83s	remaining: 516ms
78:	learn: 12.4765302	total: 1.85s	remaining: 492ms
79:	learn: 12.3609145	total: 1.87s	remaining: 469ms
80:	learn: 12.2437759	total: 1.9s	remaining: 445ms
81:	learn: 12.1583763	total: 1.93s	remaining: 423ms
82:	learn: 12.0202500	total: 1.95s	remaining: 400ms
83:	learn: 11.9125166	total: 1.98s	remaining: 377ms
84:	learn: 11.8100729	total: 2s	remaining: 353ms
85:	learn: 11.7509521	total: 2.02s	remaining: 330ms
86:	learn: 11.6448436	total: 2.05s	remaining: 306ms
87:	learn: 11.5550170	total: 2.07s	remaining: 282ms
88:	learn: 11.4624708	total: 2.09s	remaining: 259ms
89:	learn: 11.3547761	total: 2.11s	remaining: 235ms
90:	learn: 11.2513910	total: 2.13s	remaining: 211ms
91:	learn: 11.1414483	total: 2.16s	remaining: 188ms
92:	learn: 11.0742264	total: 2.19s	remaining: 164ms
93:	learn: 10.9721772	total: 2.2s	remaining: 141ms
94:	learn: 10.9118054	total: 2.22s	remaining: 117ms
95:	learn: 10.8465290	total: 2.25s	remaining: 93.6ms
96:	learn: 10.7451745	total: 2.26s	remaining: 70ms
97:	learn: 10.6173565	total: 2.29s	remaining: 46.7ms
98:	learn: 10.5562158	total: 2.31s	remaining: 23.3ms
99:	learn: 10.4564960	total: 2.33s	remaining: 0us
0:	learn: 27.3776612	total: 22.4ms	remaining: 2.22s
1:	learn: 26.7619003	total: 44.1ms	remaining: 2.16s
2:	learn: 26.0057626	total: 66.2ms	remaining: 2.14s
3:	learn: 25.4280982	total: 86.2ms	remaining: 2.07s
4:	learn: 24.8347609	total: 104ms	remaining: 1.99s
5:	learn: 24.2526574	total: 124ms	remaining: 1.94s
6:	learn: 23.7478806	total: 144ms	remaining: 1.91s
7:	learn: 23.2677666	total: 166ms	remaining: 1.91s
8:	learn: 22.7564310	total: 195ms	remaining: 1.97s
9:	learn: 22.2873770	total: 215ms	remaining: 1.93s
10:	learn: 21.8088174	total: 235ms	remaining: 1.9s
11:	learn: 21.4086875	total: 253ms	remaining: 1.85s
12:	learn: 20.9489217	total: 272ms	remaining: 1.82s
13:	learn: 20.4585233	total: 291ms	remaining: 1.78s
14:	learn: 20.0177760	total: 309ms	remaining: 1.75s
15:	learn: 19.5981890	total: 328ms	remaining: 1.72s
16:	learn: 19.2041885	total: 347ms	remaining: 1.69s
17:	learn: 18.8422550	total: 369ms	remaining: 1.68s
18:	learn: 18.4774037	total: 390ms	remaining: 1.66s
19:	learn: 18.0931699	total: 419ms	remaining: 1.67s
20:	learn: 17.6856423	total: 442ms	remaining: 1.66s
21:	learn: 17.3394010	total: 463ms	remaining: 1.64s
22:	learn: 17.0165204	total: 485ms	remaining: 1.62s
23:	learn: 16.7728230	total: 508ms	remaining: 1.61s
24:	learn: 16.5020155	total: 526ms	remaining: 1.58s
25:	learn: 16.2110813	total: 544ms	remaining: 1.55s
26:	learn: 15.9439416	total: 563ms	remaining: 1.52s
27:	learn: 15.6605702	total: 585ms	remaining: 1.5s
28:	learn: 15.4180978	total: 606ms	remaining: 1.48s
29:	learn: 15.1463921	total: 636ms	remaining: 1.48s
30:	learn: 14.8961946	total: 657ms	remaining: 1.46s
31:	learn: 14.6763296	total: 675ms	remaining: 1.44s
32:	learn: 14.4161484	total: 694ms	remaining: 1.41s
33:	learn: 14.1748686	total: 713ms	remaining: 1.38s
34:	learn: 13.9722494	total: 731ms	remaining: 1.36s
35:	learn: 13.7632896	total: 750ms	remaining: 1.33s
36:	learn: 13.5572592	total: 769ms	remaining: 1.31s
37:	learn: 13.3896577	total: 789ms	remaining: 1.29s
38:	learn: 13.2796441	total: 814ms	remaining: 1.27s
39:	learn: 13.0896679	total: 837ms	remaining: 1.25s
40:	learn: 12.8898238	total: 859ms	remaining: 1.24s
41:	learn: 12.6824069	total: 880ms	remaining: 1.22s
42:	learn: 12.5459667	total: 901ms	remaining: 1.19s
43:	learn: 12.3859203	total: 922ms	remaining: 1.17s
44:	learn: 12.2099364	total: 945ms	remaining: 1.15s
45:	learn: 12.0649044	total: 966ms	remaining: 1.13s
46:	learn: 11.8934147	total: 985ms	remaining: 1.11s
47:	learn: 11.7212144	total: 1s	remaining: 1.09s
48:	learn: 11.5585360	total: 1.02s	remaining: 1.06s
49:	learn: 11.4204354	total: 1.04s	remaining: 1.04s
50:	learn: 11.3264427	total: 1.07s	remaining: 1.03s
51:	learn: 11.2063486	total: 1.09s	remaining: 1.01s
52:	learn: 11.0712206	total: 1.11s	remaining: 987ms
53:	learn: 10.9205088	total: 1.13s	remaining: 964ms
54:	learn: 10.8155412	total: 1.15s	remaining: 942ms
55:	learn: 10.7286854	total: 1.17s	remaining: 919ms
56:	learn: 10.6088466	total: 1.19s	remaining: 898ms
57:	learn: 10.4999885	total: 1.21s	remaining: 876ms
58:	learn: 10.4022194	total: 1.23s	remaining: 854ms
59:	learn: 10.3147130	total: 1.25s	remaining: 833ms
60:	learn: 10.2011489	total: 1.27s	remaining: 813ms
61:	learn: 10.1094372	total: 1.3s	remaining: 797ms
62:	learn: 10.0248970	total: 1.32s	remaining: 777ms
63:	learn: 9.9192710	total: 1.34s	remaining: 757ms
64:	learn: 9.8577360	total: 1.37s	remaining: 736ms
65:	learn: 9.7737103	total: 1.39s	remaining: 718ms
66:	learn: 9.6706617	total: 1.41s	remaining: 697ms
67:	learn: 9.6042727	total: 1.44s	remaining: 677ms
68:	learn: 9.5355377	total: 1.46s	remaining: 656ms
69:	learn: 9.4615216	total: 1.49s	remaining: 639ms
70:	learn: 9.3702045	total: 1.52s	remaining: 621ms
71:	learn: 9.3035392	total: 1.54s	remaining: 600ms
72:	learn: 9.2322686	total: 1.56s	remaining: 578ms
73:	learn: 9.1431916	total: 1.58s	remaining: 557ms
74:	learn: 9.0869466	total: 1.6s	remaining: 535ms
75:	learn: 9.0117390	total: 1.63s	remaining: 514ms
76:	learn: 8.9580443	total: 1.65s	remaining: 493ms
77:	learn: 8.8649939	total: 1.67s	remaining: 472ms
78:	learn: 8.7792713	total: 1.71s	remaining: 453ms
79:	learn: 8.7164606	total: 1.73s	remaining: 433ms
80:	learn: 8.6340559	total: 1.75s	remaining: 411ms
81:	learn: 8.5697104	total: 1.78s	remaining: 392ms
82:	learn: 8.5273758	total: 1.81s	remaining: 371ms
83:	learn: 8.4394788	total: 1.83s	remaining: 349ms
84:	learn: 8.3672415	total: 1.85s	remaining: 327ms
85:	learn: 8.2813444	total: 1.88s	remaining: 305ms
86:	learn: 8.1994983	total: 1.9s	remaining: 284ms
87:	learn: 8.1003577	total: 1.93s	remaining: 263ms
88:	learn: 8.0501976	total: 1.95s	remaining: 241ms
89:	learn: 7.9718830	total: 1.97s	remaining: 219ms
90:	learn: 7.9114534	total: 2s	remaining: 197ms
91:	learn: 7.8319856	total: 2.03s	remaining: 176ms
92:	learn: 7.7731246	total: 2.05s	remaining: 154ms
93:	learn: 7.7165850	total: 2.07s	remaining: 132ms
94:	learn: 7.6448498	total: 2.09s	remaining: 110ms
95:	learn: 7.5709919	total: 2.11s	remaining: 88ms
96:	learn: 7.5184082	total: 2.14s	remaining: 66.2ms
97:	learn: 7.4786866	total: 2.16s	remaining: 44.2ms
98:	learn: 7.4301201	total: 2.19s	remaining: 22.1ms
99:	learn: 7.3416932	total: 2.21s	remaining: 0us
0:	learn: 42.6391731	total: 19.2ms	remaining: 1.9s
1:	learn: 41.2755994	total: 40.5ms	remaining: 1.98s
2:	learn: 40.1418308	total: 62.6ms	remaining: 2.02s
3:	learn: 38.9707156	total: 91.6ms	remaining: 2.2s
4:	learn: 37.8723622	total: 113ms	remaining: 2.15s
5:	learn: 36.6981834	total: 132ms	remaining: 2.07s
6:	learn: 35.6210108	total: 153ms	remaining: 2.03s
7:	learn: 34.5154078	total: 174ms	remaining: 2s
8:	learn: 33.4581011	total: 193ms	remaining: 1.96s
9:	learn: 32.5872455	total: 213ms	remaining: 1.92s
10:	learn: 31.6311510	total: 234ms	remaining: 1.9s
11:	learn: 30.8222401	total: 257ms	remaining: 1.88s
12:	learn: 29.9305192	total: 285ms	remaining: 1.91s
13:	learn: 29.0742133	total: 310ms	remaining: 1.9s
14:	learn: 28.3687544	total: 331ms	remaining: 1.88s
15:	learn: 27.5730558	total: 353ms	remaining: 1.85s
16:	learn: 26.9376082	total: 376ms	remaining: 1.83s
17:	learn: 26.2254949	total: 397ms	remaining: 1.81s
18:	learn: 25.5974939	total: 419ms	remaining: 1.79s
19:	learn: 25.0097187	total: 440ms	remaining: 1.76s
20:	learn: 24.3722243	total: 461ms	remaining: 1.73s
21:	learn: 23.8249140	total: 484ms	remaining: 1.72s
22:	learn: 23.3953969	total: 511ms	remaining: 1.71s
23:	learn: 22.8726238	total: 534ms	remaining: 1.69s
24:	learn: 22.3407723	total: 554ms	remaining: 1.66s
25:	learn: 21.8360330	total: 574ms	remaining: 1.63s
26:	learn: 21.4050665	total: 577ms	remaining: 1.56s
27:	learn: 20.9389245	total: 597ms	remaining: 1.53s
28:	learn: 20.5166767	total: 617ms	remaining: 1.51s
29:	learn: 20.1190641	total: 637ms	remaining: 1.49s
30:	learn: 19.7189491	total: 656ms	remaining: 1.46s
31:	learn: 19.3748181	total: 678ms	remaining: 1.44s
32:	learn: 19.0116312	total: 698ms	remaining: 1.42s
33:	learn: 18.6982407	total: 718ms	remaining: 1.39s
34:	learn: 18.3109965	total: 752ms	remaining: 1.4s
35:	learn: 17.9620798	total: 778ms	remaining: 1.38s
36:	learn: 17.6396740	total: 801ms	remaining: 1.36s
37:	learn: 17.3596962	total: 823ms	remaining: 1.34s
38:	learn: 17.0107107	total: 845ms	remaining: 1.32s
39:	learn: 16.7000770	total: 866ms	remaining: 1.3s
40:	learn: 16.4406609	total: 878ms	remaining: 1.26s
41:	learn: 16.2482533	total: 899ms	remaining: 1.24s
42:	learn: 16.0039366	total: 919ms	remaining: 1.22s
43:	learn: 15.7538572	total: 945ms	remaining: 1.2s
44:	learn: 15.5095380	total: 969ms	remaining: 1.18s
45:	learn: 15.2678319	total: 992ms	remaining: 1.16s
46:	learn: 15.0494495	total: 1.01s	remaining: 1.14s
47:	learn: 14.8347400	total: 1.03s	remaining: 1.11s
48:	learn: 14.6035398	total: 1.05s	remaining: 1.09s
49:	learn: 14.3913639	total: 1.07s	remaining: 1.07s
50:	learn: 14.1928022	total: 1.09s	remaining: 1.04s
51:	learn: 13.9985580	total: 1.11s	remaining: 1.02s
52:	learn: 13.8322220	total: 1.13s	remaining: 1s
53:	learn: 13.6455937	total: 1.15s	remaining: 981ms
54:	learn: 13.4402019	total: 1.18s	remaining: 964ms
55:	learn: 13.2899163	total: 1.21s	remaining: 948ms
56:	learn: 13.1694614	total: 1.23s	remaining: 926ms
57:	learn: 13.0722892	total: 1.25s	remaining: 906ms
58:	learn: 12.9065251	total: 1.27s	remaining: 885ms
59:	learn: 12.6992885	total: 1.29s	remaining: 864ms
60:	learn: 12.5384562	total: 1.32s	remaining: 842ms
61:	learn: 12.4105591	total: 1.34s	remaining: 820ms
62:	learn: 12.2952504	total: 1.36s	remaining: 797ms
63:	learn: 12.1427365	total: 1.38s	remaining: 776ms
64:	learn: 11.9954361	total: 1.41s	remaining: 759ms
65:	learn: 11.8161234	total: 1.43s	remaining: 739ms
66:	learn: 11.6849978	total: 1.45s	remaining: 716ms
67:	learn: 11.5405300	total: 1.47s	remaining: 694ms
68:	learn: 11.3806762	total: 1.49s	remaining: 671ms
69:	learn: 11.2746848	total: 1.51s	remaining: 649ms
70:	learn: 11.1518256	total: 1.53s	remaining: 626ms
71:	learn: 11.0730779	total: 1.55s	remaining: 604ms
72:	learn: 10.9736725	total: 1.57s	remaining: 582ms
73:	learn: 10.8430563	total: 1.59s	remaining: 561ms
74:	learn: 10.7142220	total: 1.62s	remaining: 541ms
75:	learn: 10.6141640	total: 1.65s	remaining: 520ms
76:	learn: 10.5264853	total: 1.67s	remaining: 498ms
77:	learn: 10.3929390	total: 1.69s	remaining: 477ms
78:	learn: 10.3163176	total: 1.71s	remaining: 455ms
79:	learn: 10.2171240	total: 1.73s	remaining: 433ms
80:	learn: 10.1381738	total: 1.75s	remaining: 411ms
81:	learn: 10.0402437	total: 1.77s	remaining: 390ms
82:	learn: 9.9223565	total: 1.8s	remaining: 368ms
83:	learn: 9.8184057	total: 1.82s	remaining: 346ms
84:	learn: 9.7221978	total: 1.84s	remaining: 326ms
85:	learn: 9.6417031	total: 1.86s	remaining: 304ms
86:	learn: 9.5593969	total: 1.88s	remaining: 281ms
87:	learn: 9.4678992	total: 1.9s	remaining: 260ms
88:	learn: 9.3855757	total: 1.92s	remaining: 238ms
89:	learn: 9.2884031	total: 1.94s	remaining: 216ms
90:	learn: 9.2099382	total: 1.96s	remaining: 194ms
91:	learn: 9.1357061	total: 1.98s	remaining: 172ms
92:	learn: 9.0690328	total: 2s	remaining: 150ms
93:	learn: 8.9904694	total: 2.02s	remaining: 129ms
94:	learn: 8.9256893	total: 2.05s	remaining: 108ms
95:	learn: 8.8600084	total: 2.07s	remaining: 86.3ms
96:	learn: 8.8091154	total: 2.09s	remaining: 64.8ms
97:	learn: 8.7280528	total: 2.12s	remaining: 43.2ms
98:	learn: 8.6761440	total: 2.13s	remaining: 21.6ms
99:	learn: 8.6181192	total: 2.16s	remaining: 0us
0:	learn: 45.9988128	total: 26.6ms	remaining: 2.64s
1:	learn: 44.7653841	total: 48.5ms	remaining: 2.38s
2:	learn: 43.4693688	total: 67ms	remaining: 2.17s
3:	learn: 42.2495168	total: 86.6ms	remaining: 2.08s
4:	learn: 41.2273909	total: 104ms	remaining: 1.99s
5:	learn: 40.0623352	total: 123ms	remaining: 1.93s
6:	learn: 39.0139162	total: 143ms	remaining: 1.9s
7:	learn: 37.9905503	total: 161ms	remaining: 1.85s
8:	learn: 37.1460179	total: 180ms	remaining: 1.82s
9:	learn: 36.1321769	total: 199ms	remaining: 1.79s
10:	learn: 35.2434048	total: 218ms	remaining: 1.76s
11:	learn: 34.3919476	total: 236ms	remaining: 1.73s
12:	learn: 33.5464400	total: 255ms	remaining: 1.7s
13:	learn: 32.5752711	total: 276ms	remaining: 1.7s
14:	learn: 31.8573507	total: 302ms	remaining: 1.71s
15:	learn: 31.1481980	total: 330ms	remaining: 1.73s
16:	learn: 30.4578224	total: 352ms	remaining: 1.72s
17:	learn: 29.8404841	total: 374ms	remaining: 1.7s
18:	learn: 29.1314604	total: 395ms	remaining: 1.68s
19:	learn: 28.5024706	total: 416ms	remaining: 1.66s
20:	learn: 27.9368896	total: 434ms	remaining: 1.63s
21:	learn: 27.2136491	total: 452ms	remaining: 1.6s
22:	learn: 26.6230078	total: 472ms	remaining: 1.58s
23:	learn: 26.0604635	total: 493ms	remaining: 1.56s
24:	learn: 25.6309424	total: 515ms	remaining: 1.54s
25:	learn: 25.1761698	total: 543ms	remaining: 1.54s
26:	learn: 24.6368216	total: 564ms	remaining: 1.52s
27:	learn: 24.1028972	total: 583ms	remaining: 1.5s
28:	learn: 23.3990224	total: 602ms	remaining: 1.47s
29:	learn: 22.9088559	total: 622ms	remaining: 1.45s
30:	learn: 22.4793217	total: 643ms	remaining: 1.43s
31:	learn: 22.0592669	total: 662ms	remaining: 1.41s
32:	learn: 21.6715811	total: 681ms	remaining: 1.38s
33:	learn: 21.1907911	total: 701ms	remaining: 1.36s
34:	learn: 20.8045504	total: 721ms	remaining: 1.34s
35:	learn: 20.4670784	total: 750ms	remaining: 1.33s
36:	learn: 20.0165788	total: 773ms	remaining: 1.32s
37:	learn: 19.6859173	total: 796ms	remaining: 1.3s
38:	learn: 19.3641283	total: 818ms	remaining: 1.28s
39:	learn: 19.0291194	total: 840ms	remaining: 1.26s
40:	learn: 18.7204204	total: 858ms	remaining: 1.24s
41:	learn: 18.4000101	total: 877ms	remaining: 1.21s
42:	learn: 18.0910445	total: 896ms	remaining: 1.19s
43:	learn: 17.8354609	total: 916ms	remaining: 1.17s
44:	learn: 17.4982243	total: 941ms	remaining: 1.15s
45:	learn: 17.1895897	total: 970ms	remaining: 1.14s
46:	learn: 16.9440833	total: 995ms	remaining: 1.12s
47:	learn: 16.6112102	total: 1.02s	remaining: 1.1s
48:	learn: 16.3320235	total: 1.04s	remaining: 1.08s
49:	learn: 16.0523610	total: 1.06s	remaining: 1.06s
50:	learn: 15.8256738	total: 1.08s	remaining: 1.04s
51:	learn: 15.5699393	total: 1.1s	remaining: 1.01s
52:	learn: 15.3531799	total: 1.12s	remaining: 995ms
53:	learn: 15.1364230	total: 1.14s	remaining: 974ms
54:	learn: 15.0012063	total: 1.18s	remaining: 961ms
55:	learn: 14.7171740	total: 1.2s	remaining: 943ms
56:	learn: 14.5897576	total: 1.2s	remaining: 908ms
57:	learn: 14.3886878	total: 1.23s	remaining: 889ms
58:	learn: 14.1942115	total: 1.25s	remaining: 869ms
59:	learn: 14.0135398	total: 1.27s	remaining: 849ms
60:	learn: 13.8118263	total: 1.29s	remaining: 828ms
61:	learn: 13.6444047	total: 1.31s	remaining: 806ms
62:	learn: 13.4728078	total: 1.34s	remaining: 786ms
63:	learn: 13.3104934	total: 1.36s	remaining: 767ms
64:	learn: 13.1385144	total: 1.39s	remaining: 748ms
65:	learn: 13.0087777	total: 1.41s	remaining: 726ms
66:	learn: 12.8457835	total: 1.43s	remaining: 705ms
67:	learn: 12.6975263	total: 1.45s	remaining: 683ms
68:	learn: 12.5582839	total: 1.47s	remaining: 661ms
69:	learn: 12.4210776	total: 1.49s	remaining: 640ms
70:	learn: 12.2737286	total: 1.51s	remaining: 618ms
71:	learn: 12.1587075	total: 1.53s	remaining: 597ms
72:	learn: 12.0323022	total: 1.56s	remaining: 576ms
73:	learn: 11.8667900	total: 1.58s	remaining: 557ms
74:	learn: 11.6990385	total: 1.61s	remaining: 537ms
75:	learn: 11.5755058	total: 1.63s	remaining: 516ms
76:	learn: 11.4954152	total: 1.66s	remaining: 495ms
77:	learn: 11.3827464	total: 1.68s	remaining: 473ms
78:	learn: 11.2924968	total: 1.7s	remaining: 452ms
79:	learn: 11.1938217	total: 1.72s	remaining: 430ms
80:	learn: 11.0766477	total: 1.74s	remaining: 408ms
81:	learn: 10.9824487	total: 1.76s	remaining: 386ms
82:	learn: 10.8707168	total: 1.78s	remaining: 365ms
83:	learn: 10.7746205	total: 1.81s	remaining: 345ms
84:	learn: 10.6738461	total: 1.83s	remaining: 324ms
85:	learn: 10.5871227	total: 1.85s	remaining: 302ms
86:	learn: 10.4566607	total: 1.87s	remaining: 280ms
87:	learn: 10.3506633	total: 1.89s	remaining: 258ms
88:	learn: 10.2104644	total: 1.91s	remaining: 236ms
89:	learn: 10.0965839	total: 1.93s	remaining: 215ms
90:	learn: 9.9802927	total: 1.95s	remaining: 193ms
91:	learn: 9.9195276	total: 1.98s	remaining: 172ms
92:	learn: 9.8559698	total: 2s	remaining: 151ms
93:	learn: 9.7396780	total: 2.03s	remaining: 129ms
94:	learn: 9.6945725	total: 2.05s	remaining: 108ms
95:	learn: 9.5897565	total: 2.07s	remaining: 86.4ms
96:	learn: 9.5012011	total: 2.09s	remaining: 64.8ms
97:	learn: 9.4123715	total: 2.12s	remaining: 43.2ms
98:	learn: 9.3288366	total: 2.14s	remaining: 21.6ms
99:	learn: 9.2648715	total: 2.16s	remaining: 0us
0:	learn: 45.5336925	total: 26.5ms	remaining: 2.62s
1:	learn: 44.2714175	total: 48.6ms	remaining: 2.38s
2:	learn: 43.1477944	total: 68.6ms	remaining: 2.22s
3:	learn: 41.9891776	total: 87.5ms	remaining: 2.1s
4:	learn: 41.0638986	total: 107ms	remaining: 2.02s
5:	learn: 39.9800801	total: 126ms	remaining: 1.97s
6:	learn: 38.9048061	total: 145ms	remaining: 1.93s
7:	learn: 38.0749429	total: 165ms	remaining: 1.9s
8:	learn: 37.3966644	total: 187ms	remaining: 1.89s
9:	learn: 36.4671331	total: 209ms	remaining: 1.89s
10:	learn: 35.6649217	total: 240ms	remaining: 1.94s
11:	learn: 34.8793657	total: 265ms	remaining: 1.94s
12:	learn: 34.0737401	total: 289ms	remaining: 1.93s
13:	learn: 33.2560999	total: 312ms	remaining: 1.92s
14:	learn: 32.4184623	total: 336ms	remaining: 1.9s
15:	learn: 31.6803206	total: 357ms	remaining: 1.88s
16:	learn: 30.9276344	total: 376ms	remaining: 1.84s
17:	learn: 30.3590041	total: 397ms	remaining: 1.81s
18:	learn: 29.7789888	total: 418ms	remaining: 1.78s
19:	learn: 29.1098261	total: 438ms	remaining: 1.75s
20:	learn: 28.4824889	total: 468ms	remaining: 1.76s
21:	learn: 27.9675744	total: 489ms	remaining: 1.73s
22:	learn: 27.4793215	total: 511ms	remaining: 1.71s
23:	learn: 26.8920542	total: 531ms	remaining: 1.68s
24:	learn: 26.2736657	total: 551ms	remaining: 1.65s
25:	learn: 25.6908003	total: 571ms	remaining: 1.63s
26:	learn: 25.1288844	total: 591ms	remaining: 1.6s
27:	learn: 24.6933320	total: 610ms	remaining: 1.57s
28:	learn: 24.1372567	total: 629ms	remaining: 1.54s
29:	learn: 23.7103515	total: 652ms	remaining: 1.52s
30:	learn: 23.1647499	total: 674ms	remaining: 1.5s
31:	learn: 22.7009216	total: 704ms	remaining: 1.49s
32:	learn: 22.2792229	total: 726ms	remaining: 1.47s
33:	learn: 21.8004244	total: 749ms	remaining: 1.45s
34:	learn: 21.3578361	total: 769ms	remaining: 1.43s
35:	learn: 21.0262832	total: 791ms	remaining: 1.41s
36:	learn: 20.5787502	total: 809ms	remaining: 1.38s
37:	learn: 20.3083055	total: 827ms	remaining: 1.35s
38:	learn: 19.9902529	total: 845ms	remaining: 1.32s
39:	learn: 19.6059571	total: 864ms	remaining: 1.29s
40:	learn: 19.3890959	total: 885ms	remaining: 1.27s
41:	learn: 19.0549255	total: 914ms	remaining: 1.26s
42:	learn: 18.7283215	total: 935ms	remaining: 1.24s
43:	learn: 18.4448725	total: 954ms	remaining: 1.21s
44:	learn: 18.1578001	total: 973ms	remaining: 1.19s
45:	learn: 17.8777474	total: 991ms	remaining: 1.16s
46:	learn: 17.6428221	total: 1.01s	remaining: 1.14s
47:	learn: 17.3887752	total: 1.03s	remaining: 1.11s
48:	learn: 17.1475761	total: 1.05s	remaining: 1.09s
49:	learn: 16.9064363	total: 1.06s	remaining: 1.06s
50:	learn: 16.6414681	total: 1.09s	remaining: 1.04s
51:	learn: 16.4549974	total: 1.11s	remaining: 1.02s
52:	learn: 16.2617558	total: 1.14s	remaining: 1.01s
53:	learn: 16.0258241	total: 1.16s	remaining: 989ms
54:	learn: 15.7694686	total: 1.18s	remaining: 968ms
55:	learn: 15.5449602	total: 1.21s	remaining: 947ms
56:	learn: 15.3515330	total: 1.23s	remaining: 926ms
57:	learn: 15.1120403	total: 1.25s	remaining: 904ms
58:	learn: 14.9131368	total: 1.27s	remaining: 881ms
59:	learn: 14.8021921	total: 1.29s	remaining: 859ms
60:	learn: 14.6564259	total: 1.31s	remaining: 838ms
61:	learn: 14.5253260	total: 1.33s	remaining: 816ms
62:	learn: 14.3975427	total: 1.36s	remaining: 797ms
63:	learn: 14.3060204	total: 1.38s	remaining: 774ms
64:	learn: 14.1283681	total: 1.39s	remaining: 751ms
65:	learn: 14.0159063	total: 1.41s	remaining: 728ms
66:	learn: 13.8712541	total: 1.43s	remaining: 706ms
67:	learn: 13.7852998	total: 1.45s	remaining: 683ms
68:	learn: 13.6790164	total: 1.47s	remaining: 660ms
69:	learn: 13.5253745	total: 1.49s	remaining: 637ms
70:	learn: 13.3959663	total: 1.5s	remaining: 615ms
71:	learn: 13.2062955	total: 1.53s	remaining: 594ms
72:	learn: 13.0788709	total: 1.55s	remaining: 572ms
73:	learn: 12.9513184	total: 1.58s	remaining: 554ms
74:	learn: 12.8198556	total: 1.6s	remaining: 533ms
75:	learn: 12.7137549	total: 1.62s	remaining: 512ms
76:	learn: 12.6243477	total: 1.64s	remaining: 491ms
77:	learn: 12.5241564	total: 1.67s	remaining: 471ms
78:	learn: 12.4445782	total: 1.69s	remaining: 449ms
79:	learn: 12.3816501	total: 1.71s	remaining: 427ms
80:	learn: 12.2846914	total: 1.73s	remaining: 405ms
81:	learn: 12.1419498	total: 1.75s	remaining: 384ms
82:	learn: 12.0846494	total: 1.77s	remaining: 363ms
83:	learn: 11.9851484	total: 1.79s	remaining: 342ms
84:	learn: 11.8905738	total: 1.81s	remaining: 320ms
85:	learn: 11.7718790	total: 1.83s	remaining: 298ms
86:	learn: 11.6854413	total: 1.85s	remaining: 276ms
87:	learn: 11.6206110	total: 1.87s	remaining: 255ms
88:	learn: 11.5376098	total: 1.89s	remaining: 233ms
89:	learn: 11.4235068	total: 1.91s	remaining: 212ms
90:	learn: 11.3477955	total: 1.93s	remaining: 191ms
91:	learn: 11.2663772	total: 1.95s	remaining: 170ms
92:	learn: 11.1916556	total: 1.97s	remaining: 148ms
93:	learn: 11.0921504	total: 2.01s	remaining: 128ms
94:	learn: 10.9622375	total: 2.03s	remaining: 107ms
95:	learn: 10.8882085	total: 2.05s	remaining: 85.6ms
96:	learn: 10.8086218	total: 2.08s	remaining: 64.2ms
97:	learn: 10.7552220	total: 2.1s	remaining: 42.8ms
98:	learn: 10.6929666	total: 2.12s	remaining: 21.4ms
99:	learn: 10.6200033	total: 2.14s	remaining: 0us
0:	learn: 46.3366259	total: 25.2ms	remaining: 2.5s
1:	learn: 45.2205278	total: 44.7ms	remaining: 2.19s
2:	learn: 43.9887404	total: 62.7ms	remaining: 2.03s
3:	learn: 42.8240666	total: 83.6ms	remaining: 2s
4:	learn: 41.6086617	total: 105ms	remaining: 2s
5:	learn: 40.5606446	total: 126ms	remaining: 1.98s
6:	learn: 39.6241326	total: 148ms	remaining: 1.97s
7:	learn: 39.0016852	total: 177ms	remaining: 2.04s
8:	learn: 37.8501670	total: 200ms	remaining: 2.02s
9:	learn: 37.0215474	total: 228ms	remaining: 2.05s
10:	learn: 36.0215020	total: 257ms	remaining: 2.08s
11:	learn: 35.2421331	total: 284ms	remaining: 2.08s
12:	learn: 34.5416837	total: 309ms	remaining: 2.07s
13:	learn: 33.7787649	total: 334ms	remaining: 2.05s
14:	learn: 32.9860883	total: 355ms	remaining: 2.01s
15:	learn: 32.2123752	total: 376ms	remaining: 1.98s
16:	learn: 31.3564648	total: 398ms	remaining: 1.94s
17:	learn: 30.7859979	total: 419ms	remaining: 1.91s
18:	learn: 30.1443515	total: 446ms	remaining: 1.9s
19:	learn: 29.4880724	total: 473ms	remaining: 1.89s
20:	learn: 28.9635727	total: 494ms	remaining: 1.86s
21:	learn: 28.4853342	total: 514ms	remaining: 1.82s
22:	learn: 27.9796348	total: 543ms	remaining: 1.82s
23:	learn: 27.4360487	total: 565ms	remaining: 1.79s
24:	learn: 26.8685214	total: 586ms	remaining: 1.76s
25:	learn: 26.1769206	total: 607ms	remaining: 1.73s
26:	learn: 25.7146048	total: 629ms	remaining: 1.7s
27:	learn: 25.2614850	total: 654ms	remaining: 1.68s
28:	learn: 24.6626472	total: 683ms	remaining: 1.67s
29:	learn: 24.2501259	total: 710ms	remaining: 1.66s
30:	learn: 23.7892661	total: 735ms	remaining: 1.64s
31:	learn: 23.2729078	total: 760ms	remaining: 1.61s
32:	learn: 22.8969731	total: 791ms	remaining: 1.61s
33:	learn: 22.4567570	total: 813ms	remaining: 1.58s
34:	learn: 22.0569858	total: 835ms	remaining: 1.55s
35:	learn: 21.7317775	total: 858ms	remaining: 1.52s
36:	learn: 21.3890971	total: 888ms	remaining: 1.51s
37:	learn: 21.0664504	total: 912ms	remaining: 1.49s
38:	learn: 20.7379659	total: 933ms	remaining: 1.46s
39:	learn: 20.4423699	total: 953ms	remaining: 1.43s
40:	learn: 20.1526720	total: 974ms	remaining: 1.4s
41:	learn: 19.8706547	total: 995ms	remaining: 1.37s
42:	learn: 19.5139134	total: 1.01s	remaining: 1.35s
43:	learn: 19.3495951	total: 1.04s	remaining: 1.33s
44:	learn: 19.1314757	total: 1.07s	remaining: 1.3s
45:	learn: 18.7971159	total: 1.09s	remaining: 1.28s
46:	learn: 18.5447051	total: 1.12s	remaining: 1.27s
47:	learn: 18.2328785	total: 1.15s	remaining: 1.25s
48:	learn: 17.9622938	total: 1.18s	remaining: 1.22s
49:	learn: 17.7264205	total: 1.2s	remaining: 1.2s
50:	learn: 17.4530592	total: 1.22s	remaining: 1.18s
51:	learn: 17.2236644	total: 1.25s	remaining: 1.15s
52:	learn: 17.0122792	total: 1.27s	remaining: 1.12s
53:	learn: 16.7599064	total: 1.3s	remaining: 1.1s
54:	learn: 16.5146699	total: 1.33s	remaining: 1.09s
55:	learn: 16.2531414	total: 1.35s	remaining: 1.06s
56:	learn: 16.0997208	total: 1.37s	remaining: 1.03s
57:	learn: 15.8452412	total: 1.39s	remaining: 1.01s
58:	learn: 15.6294900	total: 1.42s	remaining: 984ms
59:	learn: 15.4564548	total: 1.44s	remaining: 959ms
60:	learn: 15.2978533	total: 1.46s	remaining: 933ms
61:	learn: 15.0976912	total: 1.48s	remaining: 907ms
62:	learn: 14.9094446	total: 1.5s	remaining: 882ms
63:	learn: 14.7415094	total: 1.53s	remaining: 861ms
64:	learn: 14.6123806	total: 1.56s	remaining: 842ms
65:	learn: 14.4744916	total: 1.59s	remaining: 818ms
66:	learn: 14.3212717	total: 1.61s	remaining: 794ms
67:	learn: 14.1768047	total: 1.64s	remaining: 770ms
68:	learn: 14.0387344	total: 1.66s	remaining: 745ms
69:	learn: 13.8987579	total: 1.68s	remaining: 720ms
70:	learn: 13.7825740	total: 1.7s	remaining: 695ms
71:	learn: 13.6818548	total: 1.72s	remaining: 670ms
72:	learn: 13.5356993	total: 1.75s	remaining: 646ms
73:	learn: 13.4408704	total: 1.77s	remaining: 621ms
74:	learn: 13.2992218	total: 1.8s	remaining: 599ms
75:	learn: 13.1547092	total: 1.83s	remaining: 577ms
76:	learn: 13.0800189	total: 1.85s	remaining: 552ms
77:	learn: 12.9434711	total: 1.87s	remaining: 527ms
78:	learn: 12.8327325	total: 1.89s	remaining: 502ms
79:	learn: 12.7238946	total: 1.91s	remaining: 478ms
80:	learn: 12.6229528	total: 1.93s	remaining: 453ms
81:	learn: 12.5216078	total: 1.95s	remaining: 429ms
82:	learn: 12.4182254	total: 1.98s	remaining: 405ms
83:	learn: 12.3097978	total: 2.01s	remaining: 383ms
84:	learn: 12.1852056	total: 2.04s	remaining: 359ms
85:	learn: 12.0739627	total: 2.07s	remaining: 337ms
86:	learn: 11.9475583	total: 2.09s	remaining: 313ms
87:	learn: 11.8403806	total: 2.12s	remaining: 289ms
88:	learn: 11.7294124	total: 2.14s	remaining: 264ms
89:	learn: 11.6395689	total: 2.16s	remaining: 240ms
90:	learn: 11.5510643	total: 2.18s	remaining: 216ms
91:	learn: 11.4455301	total: 2.21s	remaining: 193ms
92:	learn: 11.3368661	total: 2.24s	remaining: 168ms
93:	learn: 11.2270796	total: 2.26s	remaining: 144ms
94:	learn: 11.1168414	total: 2.28s	remaining: 120ms
95:	learn: 11.0310985	total: 2.3s	remaining: 95.9ms
96:	learn: 10.9735185	total: 2.33s	remaining: 72ms
97:	learn: 10.8575874	total: 2.35s	remaining: 47.9ms
98:	learn: 10.7816173	total: 2.37s	remaining: 23.9ms
99:	learn: 10.7111737	total: 2.39s	remaining: 0us
0:	learn: 27.6506730	total: 6.04ms	remaining: 598ms
1:	learn: 27.1638793	total: 11.5ms	remaining: 563ms
2:	learn: 26.8000665	total: 17ms	remaining: 549ms
3:	learn: 26.4256132	total: 22.1ms	remaining: 530ms
4:	learn: 26.0088351	total: 27ms	remaining: 513ms
5:	learn: 25.7558298	total: 32.3ms	remaining: 505ms
6:	learn: 25.3380711	total: 37.9ms	remaining: 504ms
7:	learn: 25.0571611	total: 43.7ms	remaining: 502ms
8:	learn: 24.6790148	total: 48.3ms	remaining: 488ms
9:	learn: 24.3600941	total: 53ms	remaining: 477ms
10:	learn: 24.1105667	total: 57.6ms	remaining: 466ms
11:	learn: 23.7736542	total: 62ms	remaining: 455ms
12:	learn: 23.5824429	total: 66.5ms	remaining: 445ms
13:	learn: 23.2658303	total: 70.9ms	remaining: 436ms
14:	learn: 23.0061886	total: 75.4ms	remaining: 428ms
15:	learn: 22.8060389	total: 79.5ms	remaining: 418ms
16:	learn: 22.5899735	total: 84.1ms	remaining: 411ms
17:	learn: 22.3625048	total: 88.6ms	remaining: 403ms
18:	learn: 22.0706477	total: 93.1ms	remaining: 397ms
19:	learn: 21.8739394	total: 97.5ms	remaining: 390ms
20:	learn: 21.6143650	total: 102ms	remaining: 385ms
21:	learn: 21.4571623	total: 107ms	remaining: 378ms
22:	learn: 21.2395769	total: 111ms	remaining: 371ms
23:	learn: 20.9801795	total: 116ms	remaining: 366ms
24:	learn: 20.8036808	total: 121ms	remaining: 362ms
25:	learn: 20.6387539	total: 125ms	remaining: 357ms
26:	learn: 20.4401427	total: 130ms	remaining: 351ms
27:	learn: 20.2879575	total: 135ms	remaining: 346ms
28:	learn: 20.0538664	total: 139ms	remaining: 341ms
29:	learn: 19.8363102	total: 144ms	remaining: 336ms
30:	learn: 19.7015446	total: 149ms	remaining: 331ms
31:	learn: 19.5483114	total: 154ms	remaining: 327ms
32:	learn: 19.4163053	total: 158ms	remaining: 322ms
33:	learn: 19.2880625	total: 165ms	remaining: 321ms
34:	learn: 19.1303389	total: 173ms	remaining: 321ms
35:	learn: 18.9237448	total: 180ms	remaining: 320ms
36:	learn: 18.8142925	total: 186ms	remaining: 316ms
37:	learn: 18.6994696	total: 191ms	remaining: 311ms
38:	learn: 18.5629211	total: 196ms	remaining: 307ms
39:	learn: 18.4600917	total: 202ms	remaining: 302ms
40:	learn: 18.3567139	total: 206ms	remaining: 297ms
41:	learn: 18.2120527	total: 211ms	remaining: 291ms
42:	learn: 18.0688062	total: 215ms	remaining: 285ms
43:	learn: 17.9250181	total: 220ms	remaining: 280ms
44:	learn: 17.8399138	total: 225ms	remaining: 275ms
45:	learn: 17.6720713	total: 230ms	remaining: 270ms
46:	learn: 17.5273091	total: 234ms	remaining: 264ms
47:	learn: 17.4232814	total: 239ms	remaining: 259ms
48:	learn: 17.2957579	total: 244ms	remaining: 254ms
49:	learn: 17.1892874	total: 249ms	remaining: 249ms
50:	learn: 17.0490355	total: 254ms	remaining: 244ms
51:	learn: 16.9666450	total: 258ms	remaining: 238ms
52:	learn: 16.8600056	total: 263ms	remaining: 233ms
53:	learn: 16.7542588	total: 268ms	remaining: 228ms
54:	learn: 16.6316077	total: 273ms	remaining: 223ms
55:	learn: 16.5588112	total: 278ms	remaining: 218ms
56:	learn: 16.5010186	total: 282ms	remaining: 213ms
57:	learn: 16.4081540	total: 287ms	remaining: 208ms
58:	learn: 16.3040451	total: 291ms	remaining: 202ms
59:	learn: 16.1890564	total: 296ms	remaining: 197ms
60:	learn: 16.0977103	total: 300ms	remaining: 192ms
61:	learn: 15.9627607	total: 306ms	remaining: 187ms
62:	learn: 15.9022248	total: 310ms	remaining: 182ms
63:	learn: 15.8151881	total: 315ms	remaining: 177ms
64:	learn: 15.7353125	total: 320ms	remaining: 172ms
65:	learn: 15.6312897	total: 325ms	remaining: 167ms
66:	learn: 15.5330927	total: 330ms	remaining: 162ms
67:	learn: 15.4698681	total: 335ms	remaining: 158ms
68:	learn: 15.4108571	total: 340ms	remaining: 153ms
69:	learn: 15.3492945	total: 345ms	remaining: 148ms
70:	learn: 15.3036540	total: 350ms	remaining: 143ms
71:	learn: 15.2390833	total: 355ms	remaining: 138ms
72:	learn: 15.1556327	total: 360ms	remaining: 133ms
73:	learn: 15.1016315	total: 366ms	remaining: 129ms
74:	learn: 15.0287076	total: 374ms	remaining: 125ms
75:	learn: 14.9530572	total: 382ms	remaining: 121ms
76:	learn: 14.8965517	total: 389ms	remaining: 116ms
77:	learn: 14.8125426	total: 406ms	remaining: 115ms
78:	learn: 14.7435359	total: 412ms	remaining: 109ms
79:	learn: 14.6963163	total: 417ms	remaining: 104ms
80:	learn: 14.6200060	total: 423ms	remaining: 99.2ms
81:	learn: 14.5707760	total: 428ms	remaining: 94.1ms
82:	learn: 14.5053651	total: 434ms	remaining: 89ms
83:	learn: 14.4115458	total: 440ms	remaining: 83.8ms
84:	learn: 14.3117159	total: 446ms	remaining: 78.6ms
85:	learn: 14.2511326	total: 451ms	remaining: 73.5ms
86:	learn: 14.1372486	total: 456ms	remaining: 68.1ms
87:	learn: 14.0992301	total: 461ms	remaining: 62.9ms
88:	learn: 14.0228331	total: 467ms	remaining: 57.7ms
89:	learn: 13.9249836	total: 472ms	remaining: 52.4ms
90:	learn: 13.8679364	total: 476ms	remaining: 47.1ms
91:	learn: 13.8405578	total: 481ms	remaining: 41.8ms
92:	learn: 13.7711325	total: 485ms	remaining: 36.5ms
93:	learn: 13.7357019	total: 490ms	remaining: 31.3ms
94:	learn: 13.6735271	total: 494ms	remaining: 26ms
95:	learn: 13.5682393	total: 499ms	remaining: 20.8ms
96:	learn: 13.5342610	total: 503ms	remaining: 15.6ms
97:	learn: 13.4710034	total: 508ms	remaining: 10.4ms
98:	learn: 13.4022402	total: 513ms	remaining: 5.18ms
99:	learn: 13.3351238	total: 518ms	remaining: 0us
0:	learn: 42.9181702	total: 6.68ms	remaining: 661ms
1:	learn: 42.0286736	total: 11.6ms	remaining: 567ms
2:	learn: 41.2764568	total: 16.4ms	remaining: 530ms
3:	learn: 40.4721918	total: 21.4ms	remaining: 514ms
4:	learn: 39.8518928	total: 27ms	remaining: 512ms
5:	learn: 39.2645479	total: 32ms	remaining: 502ms
6:	learn: 38.4453704	total: 37ms	remaining: 492ms
7:	learn: 37.7122059	total: 42.5ms	remaining: 489ms
8:	learn: 36.9185796	total: 47.8ms	remaining: 483ms
9:	learn: 36.1668427	total: 52.7ms	remaining: 475ms
10:	learn: 35.5639029	total: 57.9ms	remaining: 469ms
11:	learn: 34.7724193	total: 63ms	remaining: 462ms
12:	learn: 34.3053433	total: 67.8ms	remaining: 454ms
13:	learn: 33.6561327	total: 69ms	remaining: 424ms
14:	learn: 33.0134042	total: 73.8ms	remaining: 418ms
15:	learn: 32.4483300	total: 78.6ms	remaining: 413ms
16:	learn: 31.8581144	total: 83.1ms	remaining: 406ms
17:	learn: 31.2858301	total: 87.8ms	remaining: 400ms
18:	learn: 30.8483018	total: 92.7ms	remaining: 395ms
19:	learn: 30.4174622	total: 98.1ms	remaining: 392ms
20:	learn: 29.8994411	total: 103ms	remaining: 387ms
21:	learn: 29.5045355	total: 107ms	remaining: 380ms
22:	learn: 28.9923519	total: 112ms	remaining: 374ms
23:	learn: 28.4255717	total: 117ms	remaining: 370ms
24:	learn: 28.0283139	total: 122ms	remaining: 365ms
25:	learn: 27.7434814	total: 126ms	remaining: 359ms
26:	learn: 27.2770731	total: 131ms	remaining: 355ms
27:	learn: 26.8928270	total: 136ms	remaining: 350ms
28:	learn: 26.4282671	total: 140ms	remaining: 344ms
29:	learn: 26.0272764	total: 145ms	remaining: 338ms
30:	learn: 25.7579312	total: 151ms	remaining: 335ms
31:	learn: 25.4542434	total: 155ms	remaining: 330ms
32:	learn: 25.1232564	total: 160ms	remaining: 325ms
33:	learn: 24.8110795	total: 165ms	remaining: 320ms
34:	learn: 24.5077579	total: 170ms	remaining: 315ms
35:	learn: 24.1909000	total: 175ms	remaining: 311ms
36:	learn: 23.8719468	total: 182ms	remaining: 311ms
37:	learn: 23.5764366	total: 184ms	remaining: 301ms
38:	learn: 23.3468086	total: 195ms	remaining: 305ms
39:	learn: 23.0908771	total: 205ms	remaining: 308ms
40:	learn: 22.8580876	total: 214ms	remaining: 308ms
41:	learn: 22.6060825	total: 219ms	remaining: 303ms
42:	learn: 22.4125407	total: 225ms	remaining: 298ms
43:	learn: 22.1990617	total: 230ms	remaining: 293ms
44:	learn: 21.9716164	total: 235ms	remaining: 288ms
45:	learn: 21.8360935	total: 241ms	remaining: 283ms
46:	learn: 21.6169256	total: 246ms	remaining: 277ms
47:	learn: 21.4620612	total: 251ms	remaining: 272ms
48:	learn: 21.2894194	total: 257ms	remaining: 267ms
49:	learn: 21.1066266	total: 262ms	remaining: 262ms
50:	learn: 20.9484898	total: 267ms	remaining: 257ms
51:	learn: 20.7195338	total: 273ms	remaining: 252ms
52:	learn: 20.4899740	total: 278ms	remaining: 247ms
53:	learn: 20.3356583	total: 284ms	remaining: 242ms
54:	learn: 20.0754393	total: 289ms	remaining: 236ms
55:	learn: 19.9199159	total: 294ms	remaining: 231ms
56:	learn: 19.7761128	total: 298ms	remaining: 225ms
57:	learn: 19.6533060	total: 303ms	remaining: 220ms
58:	learn: 19.5113942	total: 308ms	remaining: 214ms
59:	learn: 19.3985022	total: 313ms	remaining: 209ms
60:	learn: 19.2683443	total: 318ms	remaining: 203ms
61:	learn: 19.1460824	total: 323ms	remaining: 198ms
62:	learn: 19.0042655	total: 328ms	remaining: 193ms
63:	learn: 18.8720873	total: 333ms	remaining: 187ms
64:	learn: 18.7183888	total: 337ms	remaining: 182ms
65:	learn: 18.5472360	total: 342ms	remaining: 176ms
66:	learn: 18.3976642	total: 347ms	remaining: 171ms
67:	learn: 18.2282851	total: 356ms	remaining: 167ms
68:	learn: 18.1469157	total: 363ms	remaining: 163ms
69:	learn: 18.0649494	total: 370ms	remaining: 159ms
70:	learn: 17.9485405	total: 377ms	remaining: 154ms
71:	learn: 17.8460261	total: 383ms	remaining: 149ms
72:	learn: 17.7679843	total: 390ms	remaining: 144ms
73:	learn: 17.5989290	total: 396ms	remaining: 139ms
74:	learn: 17.4381322	total: 400ms	remaining: 133ms
75:	learn: 17.3370886	total: 405ms	remaining: 128ms
76:	learn: 17.2675308	total: 410ms	remaining: 122ms
77:	learn: 17.1946430	total: 414ms	remaining: 117ms
78:	learn: 17.0923725	total: 418ms	remaining: 111ms
79:	learn: 17.0537265	total: 423ms	remaining: 106ms
80:	learn: 16.9456831	total: 428ms	remaining: 100ms
81:	learn: 16.8457353	total: 433ms	remaining: 95.1ms
82:	learn: 16.7469310	total: 438ms	remaining: 89.8ms
83:	learn: 16.6679953	total: 443ms	remaining: 84.4ms
84:	learn: 16.6274189	total: 448ms	remaining: 79ms
85:	learn: 16.5516530	total: 453ms	remaining: 73.7ms
86:	learn: 16.4886066	total: 457ms	remaining: 68.3ms
87:	learn: 16.3947859	total: 461ms	remaining: 62.9ms
88:	learn: 16.3406495	total: 466ms	remaining: 57.6ms
89:	learn: 16.3019195	total: 470ms	remaining: 52.3ms
90:	learn: 16.1860681	total: 475ms	remaining: 47ms
91:	learn: 16.1282812	total: 480ms	remaining: 41.7ms
92:	learn: 16.0303652	total: 484ms	remaining: 36.4ms
93:	learn: 15.9561692	total: 489ms	remaining: 31.2ms
94:	learn: 15.8733994	total: 493ms	remaining: 26ms
95:	learn: 15.8108833	total: 498ms	remaining: 20.7ms
96:	learn: 15.7606004	total: 502ms	remaining: 15.5ms
97:	learn: 15.6984664	total: 506ms	remaining: 10.3ms
98:	learn: 15.6223632	total: 511ms	remaining: 5.16ms
99:	learn: 15.5671136	total: 515ms	remaining: 0us
0:	learn: 46.4788614	total: 2.13ms	remaining: 210ms
1:	learn: 45.7608372	total: 7.09ms	remaining: 347ms
2:	learn: 44.8825004	total: 11.7ms	remaining: 380ms
3:	learn: 44.0362738	total: 16.4ms	remaining: 394ms
4:	learn: 43.2086374	total: 21.5ms	remaining: 409ms
5:	learn: 42.5835773	total: 30.2ms	remaining: 474ms
6:	learn: 41.9673269	total: 39ms	remaining: 518ms
7:	learn: 41.4748717	total: 47.7ms	remaining: 549ms
8:	learn: 40.7129183	total: 55.7ms	remaining: 563ms
9:	learn: 39.8900884	total: 61.1ms	remaining: 550ms
10:	learn: 39.4142193	total: 66.2ms	remaining: 536ms
11:	learn: 38.8645613	total: 71.5ms	remaining: 524ms
12:	learn: 38.2394731	total: 76.9ms	remaining: 514ms
13:	learn: 37.6834515	total: 82ms	remaining: 503ms
14:	learn: 37.0673507	total: 87.1ms	remaining: 494ms
15:	learn: 36.4728340	total: 92.4ms	remaining: 485ms
16:	learn: 36.0489086	total: 97.3ms	remaining: 475ms
17:	learn: 35.4744141	total: 103ms	remaining: 467ms
18:	learn: 35.0106021	total: 108ms	remaining: 459ms
19:	learn: 34.5586053	total: 112ms	remaining: 450ms
20:	learn: 34.1308223	total: 118ms	remaining: 444ms
21:	learn: 33.7701450	total: 124ms	remaining: 438ms
22:	learn: 33.4425444	total: 128ms	remaining: 430ms
23:	learn: 33.0296412	total: 133ms	remaining: 420ms
24:	learn: 32.6359803	total: 137ms	remaining: 410ms
25:	learn: 32.1846182	total: 141ms	remaining: 402ms
26:	learn: 31.7620230	total: 146ms	remaining: 394ms
27:	learn: 31.4669337	total: 150ms	remaining: 385ms
28:	learn: 31.0792062	total: 154ms	remaining: 377ms
29:	learn: 30.7970537	total: 158ms	remaining: 369ms
30:	learn: 30.4952215	total: 163ms	remaining: 362ms
31:	learn: 30.2845344	total: 167ms	remaining: 355ms
32:	learn: 29.9592732	total: 171ms	remaining: 347ms
33:	learn: 29.6798596	total: 176ms	remaining: 341ms
34:	learn: 29.3368905	total: 180ms	remaining: 335ms
35:	learn: 29.0621238	total: 185ms	remaining: 329ms
36:	learn: 28.6445375	total: 189ms	remaining: 322ms
37:	learn: 28.2418096	total: 193ms	remaining: 315ms
38:	learn: 27.9495390	total: 198ms	remaining: 309ms
39:	learn: 27.6958160	total: 202ms	remaining: 303ms
40:	learn: 27.4811189	total: 206ms	remaining: 297ms
41:	learn: 27.1494420	total: 211ms	remaining: 291ms
42:	learn: 26.8388873	total: 215ms	remaining: 285ms
43:	learn: 26.5721300	total: 219ms	remaining: 279ms
44:	learn: 26.3384738	total: 224ms	remaining: 274ms
45:	learn: 26.1894781	total: 229ms	remaining: 269ms
46:	learn: 25.9580198	total: 234ms	remaining: 264ms
47:	learn: 25.7897985	total: 239ms	remaining: 258ms
48:	learn: 25.6000271	total: 243ms	remaining: 253ms
49:	learn: 25.4130873	total: 248ms	remaining: 248ms
50:	learn: 25.1699061	total: 254ms	remaining: 244ms
51:	learn: 24.9324449	total: 261ms	remaining: 241ms
52:	learn: 24.7729152	total: 269ms	remaining: 239ms
53:	learn: 24.5026563	total: 276ms	remaining: 235ms
54:	learn: 24.2332627	total: 281ms	remaining: 230ms
55:	learn: 23.9611984	total: 287ms	remaining: 225ms
56:	learn: 23.7862603	total: 291ms	remaining: 219ms
57:	learn: 23.6318154	total: 295ms	remaining: 214ms
58:	learn: 23.4443306	total: 300ms	remaining: 208ms
59:	learn: 23.2581425	total: 304ms	remaining: 203ms
60:	learn: 23.0549901	total: 309ms	remaining: 197ms
61:	learn: 22.8666218	total: 313ms	remaining: 192ms
62:	learn: 22.6956739	total: 317ms	remaining: 186ms
63:	learn: 22.5068544	total: 322ms	remaining: 181ms
64:	learn: 22.1859147	total: 326ms	remaining: 175ms
65:	learn: 22.0462043	total: 330ms	remaining: 170ms
66:	learn: 21.9329563	total: 335ms	remaining: 165ms
67:	learn: 21.8029736	total: 339ms	remaining: 159ms
68:	learn: 21.6861091	total: 343ms	remaining: 154ms
69:	learn: 21.4838140	total: 347ms	remaining: 149ms
70:	learn: 21.3548921	total: 352ms	remaining: 144ms
71:	learn: 21.2244517	total: 356ms	remaining: 139ms
72:	learn: 21.0702958	total: 361ms	remaining: 134ms
73:	learn: 20.9224662	total: 366ms	remaining: 128ms
74:	learn: 20.8150357	total: 370ms	remaining: 123ms
75:	learn: 20.6962739	total: 374ms	remaining: 118ms
76:	learn: 20.5809258	total: 378ms	remaining: 113ms
77:	learn: 20.4735470	total: 382ms	remaining: 108ms
78:	learn: 20.3778167	total: 387ms	remaining: 103ms
79:	learn: 20.2211268	total: 391ms	remaining: 97.8ms
80:	learn: 20.1478678	total: 396ms	remaining: 92.8ms
81:	learn: 20.1032967	total: 400ms	remaining: 87.8ms
82:	learn: 19.9236300	total: 405ms	remaining: 82.9ms
83:	learn: 19.8151745	total: 409ms	remaining: 77.9ms
84:	learn: 19.7099856	total: 413ms	remaining: 72.9ms
85:	learn: 19.6264833	total: 417ms	remaining: 67.9ms
86:	learn: 19.4916361	total: 422ms	remaining: 63.1ms
87:	learn: 19.4050529	total: 427ms	remaining: 58.2ms
88:	learn: 19.2547065	total: 432ms	remaining: 53.4ms
89:	learn: 19.1610225	total: 437ms	remaining: 48.6ms
90:	learn: 19.0898958	total: 443ms	remaining: 43.8ms
91:	learn: 19.0489664	total: 448ms	remaining: 38.9ms
92:	learn: 18.9206240	total: 454ms	remaining: 34.2ms
93:	learn: 18.8636239	total: 464ms	remaining: 29.6ms
94:	learn: 18.8126187	total: 476ms	remaining: 25ms
95:	learn: 18.7579275	total: 487ms	remaining: 20.3ms
96:	learn: 18.6382753	total: 492ms	remaining: 15.2ms
97:	learn: 18.5397334	total: 497ms	remaining: 10.1ms
98:	learn: 18.4375951	total: 502ms	remaining: 5.07ms
99:	learn: 18.4033755	total: 508ms	remaining: 0us
0:	learn: 46.1068821	total: 1.86ms	remaining: 184ms
1:	learn: 45.3970261	total: 6.15ms	remaining: 301ms
2:	learn: 44.8732696	total: 10.8ms	remaining: 349ms
3:	learn: 44.1290184	total: 15.2ms	remaining: 366ms
4:	learn: 43.3290271	total: 19.8ms	remaining: 376ms
5:	learn: 42.7069090	total: 23.9ms	remaining: 374ms
6:	learn: 42.0572971	total: 28.5ms	remaining: 379ms
7:	learn: 41.4797924	total: 32.9ms	remaining: 378ms
8:	learn: 41.0023122	total: 36.9ms	remaining: 373ms
9:	learn: 40.5330570	total: 41.1ms	remaining: 370ms
10:	learn: 39.9726545	total: 45.5ms	remaining: 368ms
11:	learn: 39.3044053	total: 49.5ms	remaining: 363ms
12:	learn: 38.8169735	total: 54ms	remaining: 362ms
13:	learn: 38.2458761	total: 57.9ms	remaining: 355ms
14:	learn: 37.6280321	total: 62.3ms	remaining: 353ms
15:	learn: 37.0800610	total: 66.5ms	remaining: 349ms
16:	learn: 36.5489363	total: 71.1ms	remaining: 347ms
17:	learn: 36.0981456	total: 75.7ms	remaining: 345ms
18:	learn: 35.6956274	total: 80.5ms	remaining: 343ms
19:	learn: 35.1471999	total: 86ms	remaining: 344ms
20:	learn: 34.6235408	total: 90.9ms	remaining: 342ms
21:	learn: 34.1987018	total: 96.2ms	remaining: 341ms
22:	learn: 33.8985062	total: 104ms	remaining: 349ms
23:	learn: 33.3869017	total: 113ms	remaining: 359ms
24:	learn: 32.9100550	total: 121ms	remaining: 362ms
25:	learn: 32.4156208	total: 127ms	remaining: 361ms
26:	learn: 31.9320493	total: 134ms	remaining: 361ms
27:	learn: 31.5711468	total: 138ms	remaining: 355ms
28:	learn: 31.2404433	total: 142ms	remaining: 348ms
29:	learn: 30.8807946	total: 147ms	remaining: 342ms
30:	learn: 30.5948438	total: 151ms	remaining: 336ms
31:	learn: 30.3885560	total: 155ms	remaining: 330ms
32:	learn: 30.0625101	total: 160ms	remaining: 325ms
33:	learn: 29.9113114	total: 164ms	remaining: 318ms
34:	learn: 29.6983470	total: 168ms	remaining: 312ms
35:	learn: 29.4775849	total: 173ms	remaining: 307ms
36:	learn: 29.0538055	total: 177ms	remaining: 301ms
37:	learn: 28.6792318	total: 181ms	remaining: 295ms
38:	learn: 28.4231383	total: 186ms	remaining: 290ms
39:	learn: 28.1078565	total: 190ms	remaining: 285ms
40:	learn: 27.9079179	total: 194ms	remaining: 279ms
41:	learn: 27.6721506	total: 199ms	remaining: 274ms
42:	learn: 27.4228033	total: 203ms	remaining: 269ms
43:	learn: 27.1740534	total: 207ms	remaining: 264ms
44:	learn: 26.8584071	total: 211ms	remaining: 258ms
45:	learn: 26.6902083	total: 216ms	remaining: 253ms
46:	learn: 26.4855335	total: 220ms	remaining: 248ms
47:	learn: 26.2730822	total: 225ms	remaining: 244ms
48:	learn: 26.1058689	total: 230ms	remaining: 239ms
49:	learn: 25.8587318	total: 234ms	remaining: 234ms
50:	learn: 25.7558005	total: 239ms	remaining: 229ms
51:	learn: 25.5846925	total: 243ms	remaining: 224ms
52:	learn: 25.4249887	total: 247ms	remaining: 219ms
53:	learn: 25.1911054	total: 252ms	remaining: 214ms
54:	learn: 25.0544755	total: 256ms	remaining: 210ms
55:	learn: 24.8874006	total: 261ms	remaining: 205ms
56:	learn: 24.7736279	total: 265ms	remaining: 200ms
57:	learn: 24.6156255	total: 270ms	remaining: 195ms
58:	learn: 24.3962421	total: 274ms	remaining: 191ms
59:	learn: 24.2685129	total: 279ms	remaining: 186ms
60:	learn: 24.1874096	total: 284ms	remaining: 181ms
61:	learn: 24.0394287	total: 288ms	remaining: 177ms
62:	learn: 23.9281768	total: 293ms	remaining: 172ms
63:	learn: 23.7423900	total: 298ms	remaining: 168ms
64:	learn: 23.6015209	total: 303ms	remaining: 163ms
65:	learn: 23.4677943	total: 307ms	remaining: 158ms
66:	learn: 23.3215256	total: 314ms	remaining: 154ms
67:	learn: 23.1869360	total: 324ms	remaining: 152ms
68:	learn: 22.9691180	total: 335ms	remaining: 150ms
69:	learn: 22.7531657	total: 343ms	remaining: 147ms
70:	learn: 22.6133477	total: 349ms	remaining: 142ms
71:	learn: 22.3452758	total: 354ms	remaining: 138ms
72:	learn: 22.2065350	total: 359ms	remaining: 133ms
73:	learn: 22.1071155	total: 364ms	remaining: 128ms
74:	learn: 21.9740686	total: 370ms	remaining: 123ms
75:	learn: 21.8892033	total: 375ms	remaining: 118ms
76:	learn: 21.8267882	total: 380ms	remaining: 113ms
77:	learn: 21.7423479	total: 385ms	remaining: 109ms
78:	learn: 21.6242075	total: 390ms	remaining: 104ms
79:	learn: 21.5016910	total: 395ms	remaining: 98.8ms
80:	learn: 21.4806623	total: 396ms	remaining: 92.8ms
81:	learn: 21.3166637	total: 401ms	remaining: 88ms
82:	learn: 21.2222534	total: 407ms	remaining: 83.3ms
83:	learn: 21.1535708	total: 412ms	remaining: 78.5ms
84:	learn: 21.0858902	total: 416ms	remaining: 73.4ms
85:	learn: 20.9206003	total: 420ms	remaining: 68.4ms
86:	learn: 20.8674695	total: 425ms	remaining: 63.4ms
87:	learn: 20.8089875	total: 429ms	remaining: 58.5ms
88:	learn: 20.7085401	total: 434ms	remaining: 53.6ms
89:	learn: 20.5513468	total: 438ms	remaining: 48.7ms
90:	learn: 20.4586742	total: 443ms	remaining: 43.8ms
91:	learn: 20.3932149	total: 447ms	remaining: 38.9ms
92:	learn: 20.3000895	total: 452ms	remaining: 34ms
93:	learn: 20.2254009	total: 456ms	remaining: 29.1ms
94:	learn: 20.1750050	total: 461ms	remaining: 24.3ms
95:	learn: 20.0715579	total: 466ms	remaining: 19.4ms
96:	learn: 19.9920082	total: 470ms	remaining: 14.5ms
97:	learn: 19.9664401	total: 474ms	remaining: 9.68ms
98:	learn: 19.8689673	total: 479ms	remaining: 4.83ms
99:	learn: 19.7537356	total: 483ms	remaining: 0us
0:	learn: 46.8832143	total: 5.09ms	remaining: 504ms
1:	learn: 45.8700349	total: 9.53ms	remaining: 467ms
2:	learn: 45.0546867	total: 13.9ms	remaining: 449ms
3:	learn: 44.2829439	total: 18.6ms	remaining: 445ms
4:	learn: 43.4609042	total: 22.8ms	remaining: 433ms
5:	learn: 42.6754991	total: 27ms	remaining: 423ms
6:	learn: 41.9234935	total: 31.3ms	remaining: 416ms
7:	learn: 41.3987518	total: 35.7ms	remaining: 411ms
8:	learn: 40.6625066	total: 40.1ms	remaining: 405ms
9:	learn: 40.0029561	total: 44.2ms	remaining: 397ms
10:	learn: 39.3897033	total: 48.7ms	remaining: 394ms
11:	learn: 38.7741453	total: 53.2ms	remaining: 390ms
12:	learn: 38.1201100	total: 57.6ms	remaining: 386ms
13:	learn: 37.5129454	total: 62ms	remaining: 381ms
14:	learn: 37.2062206	total: 66.4ms	remaining: 376ms
15:	learn: 36.6831741	total: 70.8ms	remaining: 372ms
16:	learn: 36.2902788	total: 75.2ms	remaining: 367ms
17:	learn: 35.7639930	total: 79.8ms	remaining: 363ms
18:	learn: 35.2580953	total: 84.1ms	remaining: 358ms
19:	learn: 34.7809739	total: 88.2ms	remaining: 353ms
20:	learn: 34.1330433	total: 92.6ms	remaining: 348ms
21:	learn: 33.7302219	total: 96.8ms	remaining: 343ms
22:	learn: 33.3502495	total: 101ms	remaining: 338ms
23:	learn: 33.0067804	total: 105ms	remaining: 333ms
24:	learn: 32.6897855	total: 109ms	remaining: 328ms
25:	learn: 32.4361119	total: 114ms	remaining: 323ms
26:	learn: 32.1278981	total: 118ms	remaining: 319ms
27:	learn: 31.7863721	total: 123ms	remaining: 316ms
28:	learn: 31.4791450	total: 127ms	remaining: 311ms
29:	learn: 31.1760161	total: 131ms	remaining: 307ms
30:	learn: 30.9238888	total: 135ms	remaining: 301ms
31:	learn: 30.5500905	total: 140ms	remaining: 297ms
32:	learn: 30.3078126	total: 144ms	remaining: 293ms
33:	learn: 30.0480921	total: 149ms	remaining: 290ms
34:	learn: 29.8623884	total: 154ms	remaining: 286ms
35:	learn: 29.5991038	total: 159ms	remaining: 282ms
36:	learn: 29.4061161	total: 163ms	remaining: 278ms
37:	learn: 29.0269515	total: 168ms	remaining: 274ms
38:	learn: 28.8224959	total: 173ms	remaining: 270ms
39:	learn: 28.6417843	total: 177ms	remaining: 266ms
40:	learn: 28.3633368	total: 186ms	remaining: 267ms
41:	learn: 28.0200246	total: 194ms	remaining: 269ms
42:	learn: 27.7221254	total: 202ms	remaining: 268ms
43:	learn: 27.5105818	total: 211ms	remaining: 268ms
44:	learn: 27.3551010	total: 216ms	remaining: 264ms
45:	learn: 27.0787522	total: 221ms	remaining: 260ms
46:	learn: 26.8726317	total: 227ms	remaining: 256ms
47:	learn: 26.8003277	total: 233ms	remaining: 252ms
48:	learn: 26.5493785	total: 238ms	remaining: 248ms
49:	learn: 26.3699550	total: 244ms	remaining: 244ms
50:	learn: 26.1519631	total: 249ms	remaining: 239ms
51:	learn: 25.9277325	total: 254ms	remaining: 235ms
52:	learn: 25.7286035	total: 259ms	remaining: 230ms
53:	learn: 25.4999193	total: 265ms	remaining: 226ms
54:	learn: 25.3434703	total: 270ms	remaining: 221ms
55:	learn: 25.1497545	total: 275ms	remaining: 216ms
56:	learn: 24.9498143	total: 280ms	remaining: 211ms
57:	learn: 24.6509390	total: 284ms	remaining: 206ms
58:	learn: 24.5576144	total: 288ms	remaining: 200ms
59:	learn: 24.4265144	total: 293ms	remaining: 195ms
60:	learn: 24.3100706	total: 297ms	remaining: 190ms
61:	learn: 24.1727952	total: 301ms	remaining: 185ms
62:	learn: 24.0478558	total: 306ms	remaining: 179ms
63:	learn: 23.9124577	total: 310ms	remaining: 174ms
64:	learn: 23.7703718	total: 315ms	remaining: 169ms
65:	learn: 23.5975027	total: 319ms	remaining: 165ms
66:	learn: 23.4318077	total: 324ms	remaining: 160ms
67:	learn: 23.3099691	total: 329ms	remaining: 155ms
68:	learn: 23.1947982	total: 335ms	remaining: 150ms
69:	learn: 23.0260174	total: 340ms	remaining: 146ms
70:	learn: 22.8523100	total: 345ms	remaining: 141ms
71:	learn: 22.8028534	total: 349ms	remaining: 136ms
72:	learn: 22.6880658	total: 354ms	remaining: 131ms
73:	learn: 22.5956809	total: 358ms	remaining: 126ms
74:	learn: 22.4692932	total: 363ms	remaining: 121ms
75:	learn: 22.2863504	total: 368ms	remaining: 116ms
76:	learn: 22.1911237	total: 372ms	remaining: 111ms
77:	learn: 22.1098391	total: 377ms	remaining: 106ms
78:	learn: 22.0182738	total: 386ms	remaining: 103ms
79:	learn: 21.9306746	total: 393ms	remaining: 98.3ms
80:	learn: 21.7508233	total: 400ms	remaining: 93.9ms
81:	learn: 21.7108446	total: 405ms	remaining: 89ms
82:	learn: 21.5931852	total: 411ms	remaining: 84.3ms
83:	learn: 21.4480361	total: 416ms	remaining: 79.2ms
84:	learn: 21.3092119	total: 420ms	remaining: 74.1ms
85:	learn: 21.2605557	total: 425ms	remaining: 69.1ms
86:	learn: 21.1123597	total: 429ms	remaining: 64.1ms
87:	learn: 21.0115642	total: 433ms	remaining: 59.1ms
88:	learn: 20.9389040	total: 437ms	remaining: 54.1ms
89:	learn: 20.8300300	total: 442ms	remaining: 49.1ms
90:	learn: 20.7159733	total: 446ms	remaining: 44.1ms
91:	learn: 20.6282090	total: 450ms	remaining: 39.1ms
92:	learn: 20.5164529	total: 455ms	remaining: 34.2ms
93:	learn: 20.4692032	total: 459ms	remaining: 29.3ms
94:	learn: 20.3768451	total: 463ms	remaining: 24.4ms
95:	learn: 20.2808056	total: 467ms	remaining: 19.5ms
96:	learn: 20.2082089	total: 472ms	remaining: 14.6ms
97:	learn: 20.1698768	total: 476ms	remaining: 9.71ms
98:	learn: 20.1048816	total: 480ms	remaining: 4.85ms
99:	learn: 20.0086159	total: 484ms	remaining: 0us
0:	learn: 27.3351083	total: 24.3ms	remaining: 2.4s
1:	learn: 26.7523848	total: 56.7ms	remaining: 2.78s
2:	learn: 26.1326580	total: 83.5ms	remaining: 2.7s
3:	learn: 25.5584244	total: 108ms	remaining: 2.59s
4:	learn: 25.0458748	total: 133ms	remaining: 2.52s
5:	learn: 24.4868837	total: 159ms	remaining: 2.49s
6:	learn: 23.9306999	total: 185ms	remaining: 2.46s
7:	learn: 23.4799808	total: 210ms	remaining: 2.41s
8:	learn: 22.9510347	total: 235ms	remaining: 2.37s
9:	learn: 22.4529079	total: 261ms	remaining: 2.35s
10:	learn: 21.9320739	total: 286ms	remaining: 2.31s
11:	learn: 21.4729295	total: 317ms	remaining: 2.33s
12:	learn: 21.0885550	total: 341ms	remaining: 2.28s
13:	learn: 20.7063206	total: 365ms	remaining: 2.24s
14:	learn: 20.3539530	total: 389ms	remaining: 2.21s
15:	learn: 20.0071947	total: 413ms	remaining: 2.17s
16:	learn: 19.6579830	total: 436ms	remaining: 2.13s
17:	learn: 19.2450502	total: 460ms	remaining: 2.1s
18:	learn: 18.8010420	total: 484ms	remaining: 2.06s
19:	learn: 18.4055273	total: 508ms	remaining: 2.03s
20:	learn: 18.0395642	total: 536ms	remaining: 2.02s
21:	learn: 17.6568400	total: 569ms	remaining: 2.02s
22:	learn: 17.4284559	total: 594ms	remaining: 1.99s
23:	learn: 17.0957528	total: 620ms	remaining: 1.96s
24:	learn: 16.7636157	total: 644ms	remaining: 1.93s
25:	learn: 16.4987969	total: 668ms	remaining: 1.9s
26:	learn: 16.2204177	total: 693ms	remaining: 1.87s
27:	learn: 15.9525124	total: 717ms	remaining: 1.84s
28:	learn: 15.5905943	total: 742ms	remaining: 1.81s
29:	learn: 15.3628633	total: 775ms	remaining: 1.81s
30:	learn: 15.1420693	total: 801ms	remaining: 1.78s
31:	learn: 14.9419461	total: 824ms	remaining: 1.75s
32:	learn: 14.7386592	total: 848ms	remaining: 1.72s
33:	learn: 14.5398023	total: 871ms	remaining: 1.69s
34:	learn: 14.2644206	total: 895ms	remaining: 1.66s
35:	learn: 14.0168503	total: 919ms	remaining: 1.63s
36:	learn: 13.7687637	total: 943ms	remaining: 1.6s
37:	learn: 13.5855913	total: 967ms	remaining: 1.58s
38:	learn: 13.3656902	total: 997ms	remaining: 1.56s
39:	learn: 13.2111716	total: 1.03s	remaining: 1.54s
40:	learn: 13.0360149	total: 1.05s	remaining: 1.52s
41:	learn: 12.8789444	total: 1.08s	remaining: 1.49s
42:	learn: 12.6680179	total: 1.11s	remaining: 1.47s
43:	learn: 12.4892268	total: 1.13s	remaining: 1.44s
44:	learn: 12.3275828	total: 1.16s	remaining: 1.42s
45:	learn: 12.2035682	total: 1.18s	remaining: 1.39s
46:	learn: 12.0777397	total: 1.22s	remaining: 1.37s
47:	learn: 11.9055552	total: 1.24s	remaining: 1.34s
48:	learn: 11.7465481	total: 1.27s	remaining: 1.32s
49:	learn: 11.5961200	total: 1.29s	remaining: 1.29s
50:	learn: 11.4305519	total: 1.32s	remaining: 1.26s
51:	learn: 11.2794033	total: 1.34s	remaining: 1.24s
52:	learn: 11.1586950	total: 1.37s	remaining: 1.21s
53:	learn: 11.0432937	total: 1.39s	remaining: 1.19s
54:	learn: 10.9094838	total: 1.42s	remaining: 1.16s
55:	learn: 10.7713451	total: 1.46s	remaining: 1.14s
56:	learn: 10.6664177	total: 1.48s	remaining: 1.12s
57:	learn: 10.5600117	total: 1.5s	remaining: 1.09s
58:	learn: 10.4438974	total: 1.53s	remaining: 1.06s
59:	learn: 10.3294224	total: 1.56s	remaining: 1.04s
60:	learn: 10.2510301	total: 1.58s	remaining: 1.01s
61:	learn: 10.1363264	total: 1.61s	remaining: 986ms
62:	learn: 10.0415049	total: 1.64s	remaining: 964ms
63:	learn: 9.9499833	total: 1.67s	remaining: 938ms
64:	learn: 9.8774263	total: 1.69s	remaining: 911ms
65:	learn: 9.7458853	total: 1.72s	remaining: 885ms
66:	learn: 9.6733951	total: 1.74s	remaining: 858ms
67:	learn: 9.5861856	total: 1.77s	remaining: 832ms
68:	learn: 9.4524193	total: 1.79s	remaining: 805ms
69:	learn: 9.3501165	total: 1.82s	remaining: 779ms
70:	learn: 9.3092902	total: 1.84s	remaining: 754ms
71:	learn: 9.2244222	total: 1.88s	remaining: 729ms
72:	learn: 9.1554253	total: 1.9s	remaining: 703ms
73:	learn: 9.1098892	total: 1.93s	remaining: 677ms
74:	learn: 9.0210213	total: 1.95s	remaining: 651ms
75:	learn: 8.9303181	total: 1.98s	remaining: 625ms
76:	learn: 8.8489769	total: 2s	remaining: 599ms
77:	learn: 8.7651580	total: 2.03s	remaining: 573ms
78:	learn: 8.7126796	total: 2.06s	remaining: 547ms
79:	learn: 8.6404554	total: 2.09s	remaining: 522ms
80:	learn: 8.5844756	total: 2.12s	remaining: 496ms
81:	learn: 8.5234333	total: 2.14s	remaining: 470ms
82:	learn: 8.4298762	total: 2.17s	remaining: 443ms
83:	learn: 8.3483002	total: 2.19s	remaining: 417ms
84:	learn: 8.2670647	total: 2.21s	remaining: 391ms
85:	learn: 8.1917398	total: 2.24s	remaining: 365ms
86:	learn: 8.1073642	total: 2.27s	remaining: 339ms
87:	learn: 8.0633288	total: 2.3s	remaining: 314ms
88:	learn: 8.0107997	total: 2.33s	remaining: 288ms
89:	learn: 7.9563547	total: 2.35s	remaining: 261ms
90:	learn: 7.8811408	total: 2.38s	remaining: 235ms
91:	learn: 7.8096107	total: 2.4s	remaining: 209ms
92:	learn: 7.7481700	total: 2.42s	remaining: 182ms
93:	learn: 7.6847843	total: 2.45s	remaining: 156ms
94:	learn: 7.6252335	total: 2.47s	remaining: 130ms
95:	learn: 7.5593148	total: 2.5s	remaining: 104ms
96:	learn: 7.5042331	total: 2.53s	remaining: 78.3ms
97:	learn: 7.4553707	total: 2.56s	remaining: 52.2ms
98:	learn: 7.4035691	total: 2.58s	remaining: 26.1ms
99:	learn: 7.3457537	total: 2.6s	remaining: 0us
0:	learn: 42.5901652	total: 24.4ms	remaining: 2.42s
1:	learn: 41.2917733	total: 59.8ms	remaining: 2.93s
2:	learn: 40.0285549	total: 84.2ms	remaining: 2.72s
3:	learn: 38.9051734	total: 109ms	remaining: 2.61s
4:	learn: 37.7712063	total: 133ms	remaining: 2.53s
5:	learn: 36.6826884	total: 159ms	remaining: 2.49s
6:	learn: 35.6341048	total: 183ms	remaining: 2.43s
7:	learn: 34.5035449	total: 208ms	remaining: 2.39s
8:	learn: 33.5636424	total: 232ms	remaining: 2.34s
9:	learn: 32.5970644	total: 256ms	remaining: 2.3s
10:	learn: 31.8528815	total: 281ms	remaining: 2.27s
11:	learn: 31.0330095	total: 314ms	remaining: 2.3s
12:	learn: 30.3119851	total: 340ms	remaining: 2.27s
13:	learn: 29.5212022	total: 363ms	remaining: 2.23s
14:	learn: 28.7182657	total: 387ms	remaining: 2.19s
15:	learn: 28.0433195	total: 412ms	remaining: 2.16s
16:	learn: 27.2966576	total: 435ms	remaining: 2.12s
17:	learn: 26.5122856	total: 459ms	remaining: 2.09s
18:	learn: 25.8998213	total: 484ms	remaining: 2.06s
19:	learn: 25.2416026	total: 508ms	remaining: 2.03s
20:	learn: 24.6399819	total: 541ms	remaining: 2.04s
21:	learn: 24.0372756	total: 567ms	remaining: 2.01s
22:	learn: 23.4553733	total: 592ms	remaining: 1.98s
23:	learn: 22.9027871	total: 617ms	remaining: 1.95s
24:	learn: 22.4470878	total: 642ms	remaining: 1.93s
25:	learn: 21.9143721	total: 666ms	remaining: 1.89s
26:	learn: 21.4979516	total: 689ms	remaining: 1.86s
27:	learn: 21.0867622	total: 714ms	remaining: 1.84s
28:	learn: 20.6187419	total: 743ms	remaining: 1.82s
29:	learn: 20.1662373	total: 769ms	remaining: 1.79s
30:	learn: 19.8225041	total: 794ms	remaining: 1.77s
31:	learn: 19.4539400	total: 817ms	remaining: 1.74s
32:	learn: 19.1127000	total: 841ms	remaining: 1.71s
33:	learn: 18.7767435	total: 865ms	remaining: 1.68s
34:	learn: 18.4038779	total: 889ms	remaining: 1.65s
35:	learn: 18.0021121	total: 913ms	remaining: 1.62s
36:	learn: 17.6673419	total: 940ms	remaining: 1.6s
37:	learn: 17.3562137	total: 976ms	remaining: 1.59s
38:	learn: 17.0128082	total: 1s	remaining: 1.57s
39:	learn: 16.7572783	total: 1.03s	remaining: 1.54s
40:	learn: 16.4883778	total: 1.05s	remaining: 1.52s
41:	learn: 16.1756364	total: 1.08s	remaining: 1.49s
42:	learn: 15.9150506	total: 1.1s	remaining: 1.46s
43:	learn: 15.6787555	total: 1.13s	remaining: 1.44s
44:	learn: 15.3862120	total: 1.16s	remaining: 1.42s
45:	learn: 15.1512250	total: 1.19s	remaining: 1.4s
46:	learn: 14.9410960	total: 1.22s	remaining: 1.37s
47:	learn: 14.7086321	total: 1.24s	remaining: 1.34s
48:	learn: 14.5065360	total: 1.26s	remaining: 1.31s
49:	learn: 14.3007466	total: 1.29s	remaining: 1.29s
50:	learn: 14.0972724	total: 1.31s	remaining: 1.26s
51:	learn: 13.8793525	total: 1.34s	remaining: 1.24s
52:	learn: 13.6381311	total: 1.36s	remaining: 1.21s
53:	learn: 13.4603568	total: 1.4s	remaining: 1.19s
54:	learn: 13.2856920	total: 1.42s	remaining: 1.17s
55:	learn: 13.1350779	total: 1.45s	remaining: 1.14s
56:	learn: 13.0110083	total: 1.48s	remaining: 1.11s
57:	learn: 12.8405210	total: 1.5s	remaining: 1.09s
58:	learn: 12.6793938	total: 1.53s	remaining: 1.06s
59:	learn: 12.5497475	total: 1.55s	remaining: 1.04s
60:	learn: 12.4319334	total: 1.59s	remaining: 1.02s
61:	learn: 12.2780964	total: 1.62s	remaining: 992ms
62:	learn: 12.1187174	total: 1.64s	remaining: 966ms
63:	learn: 11.9635081	total: 1.67s	remaining: 939ms
64:	learn: 11.8366366	total: 1.7s	remaining: 913ms
65:	learn: 11.6598347	total: 1.72s	remaining: 886ms
66:	learn: 11.5227416	total: 1.75s	remaining: 860ms
67:	learn: 11.4058818	total: 1.77s	remaining: 834ms
68:	learn: 11.2627892	total: 1.8s	remaining: 810ms
69:	learn: 11.1415094	total: 1.83s	remaining: 785ms
70:	learn: 11.0703329	total: 1.86s	remaining: 759ms
71:	learn: 10.9568944	total: 1.88s	remaining: 733ms
72:	learn: 10.8314078	total: 1.91s	remaining: 707ms
73:	learn: 10.7320013	total: 1.94s	remaining: 681ms
74:	learn: 10.6191666	total: 1.96s	remaining: 654ms
75:	learn: 10.5156798	total: 1.99s	remaining: 628ms
76:	learn: 10.4174442	total: 2.02s	remaining: 604ms
77:	learn: 10.3318165	total: 2.05s	remaining: 578ms
78:	learn: 10.2300435	total: 2.07s	remaining: 551ms
79:	learn: 10.1665911	total: 2.1s	remaining: 525ms
80:	learn: 10.1030585	total: 2.13s	remaining: 499ms
81:	learn: 10.0254875	total: 2.15s	remaining: 472ms
82:	learn: 9.9387640	total: 2.18s	remaining: 446ms
83:	learn: 9.8289920	total: 2.2s	remaining: 420ms
84:	learn: 9.7629500	total: 2.24s	remaining: 395ms
85:	learn: 9.6778611	total: 2.26s	remaining: 369ms
86:	learn: 9.5920617	total: 2.29s	remaining: 342ms
87:	learn: 9.4931297	total: 2.32s	remaining: 316ms
88:	learn: 9.4010604	total: 2.34s	remaining: 290ms
89:	learn: 9.3328614	total: 2.37s	remaining: 263ms
90:	learn: 9.2409094	total: 2.39s	remaining: 237ms
91:	learn: 9.1214245	total: 2.42s	remaining: 210ms
92:	learn: 9.0795335	total: 2.44s	remaining: 184ms
93:	learn: 8.9777250	total: 2.48s	remaining: 158ms
94:	learn: 8.9059891	total: 2.5s	remaining: 132ms
95:	learn: 8.8343294	total: 2.52s	remaining: 105ms
96:	learn: 8.7237295	total: 2.55s	remaining: 78.8ms
97:	learn: 8.6401509	total: 2.57s	remaining: 52.5ms
98:	learn: 8.5735108	total: 2.6s	remaining: 26.2ms
99:	learn: 8.5084579	total: 2.62s	remaining: 0us
0:	learn: 46.1633714	total: 26ms	remaining: 2.57s
1:	learn: 44.7904617	total: 50.8ms	remaining: 2.49s
2:	learn: 43.5292386	total: 77.5ms	remaining: 2.51s
3:	learn: 42.3776226	total: 102ms	remaining: 2.45s
4:	learn: 41.1726533	total: 129ms	remaining: 2.46s
5:	learn: 40.0256490	total: 155ms	remaining: 2.43s
6:	learn: 39.0318588	total: 187ms	remaining: 2.49s
7:	learn: 38.0361181	total: 212ms	remaining: 2.43s
8:	learn: 37.0398789	total: 235ms	remaining: 2.37s
9:	learn: 36.0525089	total: 259ms	remaining: 2.33s
10:	learn: 35.0926830	total: 282ms	remaining: 2.29s
11:	learn: 34.1467022	total: 307ms	remaining: 2.25s
12:	learn: 33.5625454	total: 331ms	remaining: 2.22s
13:	learn: 32.7993162	total: 361ms	remaining: 2.22s
14:	learn: 32.1179593	total: 390ms	remaining: 2.21s
15:	learn: 31.5382898	total: 416ms	remaining: 2.18s
16:	learn: 30.8398862	total: 441ms	remaining: 2.15s
17:	learn: 30.1060070	total: 466ms	remaining: 2.12s
18:	learn: 29.3826415	total: 490ms	remaining: 2.09s
19:	learn: 28.5809579	total: 514ms	remaining: 2.06s
20:	learn: 28.0104942	total: 539ms	remaining: 2.03s
21:	learn: 27.5189566	total: 563ms	remaining: 2s
22:	learn: 26.8603656	total: 593ms	remaining: 1.99s
23:	learn: 26.2547050	total: 617ms	remaining: 1.95s
24:	learn: 25.6559137	total: 639ms	remaining: 1.92s
25:	learn: 25.1148352	total: 664ms	remaining: 1.89s
26:	learn: 24.5782363	total: 688ms	remaining: 1.86s
27:	learn: 24.0350871	total: 712ms	remaining: 1.83s
28:	learn: 23.5119480	total: 736ms	remaining: 1.8s
29:	learn: 23.1119795	total: 760ms	remaining: 1.77s
30:	learn: 22.6838288	total: 785ms	remaining: 1.75s
31:	learn: 22.2554624	total: 819ms	remaining: 1.74s
32:	learn: 21.8241578	total: 845ms	remaining: 1.72s
33:	learn: 21.5062830	total: 870ms	remaining: 1.69s
34:	learn: 21.0109226	total: 894ms	remaining: 1.66s
35:	learn: 20.5518606	total: 919ms	remaining: 1.63s
36:	learn: 20.1195339	total: 943ms	remaining: 1.6s
37:	learn: 19.7143479	total: 967ms	remaining: 1.58s
38:	learn: 19.3325253	total: 993ms	remaining: 1.55s
39:	learn: 19.0310706	total: 1.02s	remaining: 1.54s
40:	learn: 18.7262797	total: 1.05s	remaining: 1.51s
41:	learn: 18.3611836	total: 1.07s	remaining: 1.48s
42:	learn: 17.9960838	total: 1.1s	remaining: 1.45s
43:	learn: 17.7058991	total: 1.12s	remaining: 1.43s
44:	learn: 17.3944673	total: 1.15s	remaining: 1.4s
45:	learn: 17.1283561	total: 1.17s	remaining: 1.37s
46:	learn: 16.8406890	total: 1.19s	remaining: 1.35s
47:	learn: 16.6072061	total: 1.22s	remaining: 1.32s
48:	learn: 16.3697411	total: 1.25s	remaining: 1.3s
49:	learn: 15.9995507	total: 1.28s	remaining: 1.28s
50:	learn: 15.7372570	total: 1.3s	remaining: 1.25s
51:	learn: 15.4840152	total: 1.32s	remaining: 1.22s
52:	learn: 15.2899590	total: 1.35s	remaining: 1.2s
53:	learn: 15.0111064	total: 1.37s	remaining: 1.17s
54:	learn: 14.7504952	total: 1.4s	remaining: 1.14s
55:	learn: 14.5309762	total: 1.42s	remaining: 1.12s
56:	learn: 14.3525677	total: 1.46s	remaining: 1.1s
57:	learn: 14.1816296	total: 1.48s	remaining: 1.07s
58:	learn: 13.9958516	total: 1.5s	remaining: 1.04s
59:	learn: 13.8356735	total: 1.53s	remaining: 1.02s
60:	learn: 13.6499824	total: 1.55s	remaining: 993ms
61:	learn: 13.4621357	total: 1.58s	remaining: 966ms
62:	learn: 13.3234970	total: 1.6s	remaining: 940ms
63:	learn: 13.1407122	total: 1.63s	remaining: 915ms
64:	learn: 13.0161177	total: 1.66s	remaining: 893ms
65:	learn: 12.8361175	total: 1.68s	remaining: 868ms
66:	learn: 12.7103117	total: 1.71s	remaining: 844ms
67:	learn: 12.5145429	total: 1.74s	remaining: 820ms
68:	learn: 12.3966318	total: 1.77s	remaining: 795ms
69:	learn: 12.2175623	total: 1.8s	remaining: 770ms
70:	learn: 12.0455583	total: 1.82s	remaining: 745ms
71:	learn: 11.9190589	total: 1.86s	remaining: 725ms
72:	learn: 11.7990452	total: 1.89s	remaining: 700ms
73:	learn: 11.6735331	total: 1.92s	remaining: 674ms
74:	learn: 11.5694753	total: 1.95s	remaining: 649ms
75:	learn: 11.4471422	total: 1.97s	remaining: 623ms
76:	learn: 11.3357642	total: 2s	remaining: 597ms
77:	learn: 11.2160164	total: 2.03s	remaining: 572ms
78:	learn: 11.1477947	total: 2.05s	remaining: 546ms
79:	learn: 11.0733969	total: 2.09s	remaining: 524ms
80:	learn: 10.9851608	total: 2.12s	remaining: 498ms
81:	learn: 10.8669537	total: 2.15s	remaining: 472ms
82:	learn: 10.7846130	total: 2.18s	remaining: 446ms
83:	learn: 10.6429068	total: 2.21s	remaining: 420ms
84:	learn: 10.5485368	total: 2.23s	remaining: 394ms
85:	learn: 10.4626750	total: 2.26s	remaining: 368ms
86:	learn: 10.3487863	total: 2.29s	remaining: 343ms
87:	learn: 10.2608682	total: 2.33s	remaining: 318ms
88:	learn: 10.1492862	total: 2.35s	remaining: 291ms
89:	learn: 10.0825429	total: 2.38s	remaining: 265ms
90:	learn: 9.9668337	total: 2.41s	remaining: 238ms
91:	learn: 9.8924239	total: 2.44s	remaining: 212ms
92:	learn: 9.7959729	total: 2.46s	remaining: 186ms
93:	learn: 9.7342503	total: 2.49s	remaining: 159ms
94:	learn: 9.6266181	total: 2.53s	remaining: 133ms
95:	learn: 9.5607316	total: 2.56s	remaining: 107ms
96:	learn: 9.4615938	total: 2.6s	remaining: 80.3ms
97:	learn: 9.3562852	total: 2.63s	remaining: 53.6ms
98:	learn: 9.2518786	total: 2.65s	remaining: 26.8ms
99:	learn: 9.2130065	total: 2.68s	remaining: 0us
0:	learn: 45.6477780	total: 25.7ms	remaining: 2.54s
1:	learn: 44.3885048	total: 51.5ms	remaining: 2.52s
2:	learn: 43.1316502	total: 77ms	remaining: 2.49s
3:	learn: 41.8123054	total: 104ms	remaining: 2.49s
4:	learn: 40.7214533	total: 138ms	remaining: 2.62s
5:	learn: 39.6276122	total: 164ms	remaining: 2.57s
6:	learn: 38.6471225	total: 191ms	remaining: 2.54s
7:	learn: 37.7493668	total: 227ms	remaining: 2.61s
8:	learn: 36.7733816	total: 256ms	remaining: 2.59s
9:	learn: 36.1233521	total: 283ms	remaining: 2.55s
10:	learn: 35.5715091	total: 311ms	remaining: 2.52s
11:	learn: 34.6287751	total: 340ms	remaining: 2.49s
12:	learn: 33.8024988	total: 375ms	remaining: 2.51s
13:	learn: 33.0699864	total: 402ms	remaining: 2.47s
14:	learn: 32.2267139	total: 436ms	remaining: 2.47s
15:	learn: 31.4879090	total: 465ms	remaining: 2.44s
16:	learn: 30.6681130	total: 492ms	remaining: 2.4s
17:	learn: 29.9739192	total: 519ms	remaining: 2.36s
18:	learn: 29.3293065	total: 546ms	remaining: 2.33s
19:	learn: 28.5893418	total: 573ms	remaining: 2.29s
20:	learn: 28.0793862	total: 600ms	remaining: 2.26s
21:	learn: 27.5553702	total: 638ms	remaining: 2.26s
22:	learn: 27.0123732	total: 679ms	remaining: 2.27s
23:	learn: 26.3897992	total: 706ms	remaining: 2.24s
24:	learn: 25.7405079	total: 733ms	remaining: 2.2s
25:	learn: 25.2366375	total: 763ms	remaining: 2.17s
26:	learn: 24.8040727	total: 789ms	remaining: 2.13s
27:	learn: 24.3831145	total: 816ms	remaining: 2.1s
28:	learn: 23.9264258	total: 843ms	remaining: 2.06s
29:	learn: 23.4965665	total: 881ms	remaining: 2.06s
30:	learn: 23.0750907	total: 910ms	remaining: 2.02s
31:	learn: 22.6177456	total: 937ms	remaining: 1.99s
32:	learn: 22.1936903	total: 963ms	remaining: 1.95s
33:	learn: 21.7237373	total: 991ms	remaining: 1.92s
34:	learn: 21.2885821	total: 1.02s	remaining: 1.89s
35:	learn: 20.8773820	total: 1.04s	remaining: 1.85s
36:	learn: 20.5069022	total: 1.07s	remaining: 1.82s
37:	learn: 20.1026772	total: 1.12s	remaining: 1.82s
38:	learn: 19.7278063	total: 1.14s	remaining: 1.79s
39:	learn: 19.4576176	total: 1.17s	remaining: 1.75s
40:	learn: 19.1716041	total: 1.2s	remaining: 1.73s
41:	learn: 18.8541728	total: 1.23s	remaining: 1.69s
42:	learn: 18.6411979	total: 1.25s	remaining: 1.66s
43:	learn: 18.3146636	total: 1.28s	remaining: 1.63s
44:	learn: 18.0208582	total: 1.31s	remaining: 1.6s
45:	learn: 17.7344521	total: 1.34s	remaining: 1.57s
46:	learn: 17.4797974	total: 1.37s	remaining: 1.55s
47:	learn: 17.2182299	total: 1.4s	remaining: 1.52s
48:	learn: 16.9607453	total: 1.43s	remaining: 1.49s
49:	learn: 16.7297863	total: 1.46s	remaining: 1.46s
50:	learn: 16.4913674	total: 1.48s	remaining: 1.42s
51:	learn: 16.2886548	total: 1.52s	remaining: 1.4s
52:	learn: 16.0297055	total: 1.55s	remaining: 1.37s
53:	learn: 15.8558289	total: 1.57s	remaining: 1.34s
54:	learn: 15.6256772	total: 1.61s	remaining: 1.31s
55:	learn: 15.4571057	total: 1.64s	remaining: 1.28s
56:	learn: 15.2857211	total: 1.66s	remaining: 1.25s
57:	learn: 15.0790849	total: 1.69s	remaining: 1.22s
58:	learn: 14.8706573	total: 1.72s	remaining: 1.19s
59:	learn: 14.7142314	total: 1.74s	remaining: 1.16s
60:	learn: 14.5574075	total: 1.78s	remaining: 1.14s
61:	learn: 14.3831719	total: 1.81s	remaining: 1.11s
62:	learn: 14.2429846	total: 1.84s	remaining: 1.08s
63:	learn: 14.0982260	total: 1.87s	remaining: 1.05s
64:	learn: 13.9793470	total: 1.89s	remaining: 1.02s
65:	learn: 13.7843655	total: 1.92s	remaining: 989ms
66:	learn: 13.6382336	total: 1.95s	remaining: 959ms
67:	learn: 13.5395713	total: 1.97s	remaining: 929ms
68:	learn: 13.3797741	total: 2.01s	remaining: 903ms
69:	learn: 13.2910103	total: 2.04s	remaining: 874ms
70:	learn: 13.1587887	total: 2.07s	remaining: 844ms
71:	learn: 13.0464642	total: 2.1s	remaining: 817ms
72:	learn: 12.9189091	total: 2.13s	remaining: 788ms
73:	learn: 12.8056893	total: 2.16s	remaining: 758ms
74:	learn: 12.6904403	total: 2.18s	remaining: 728ms
75:	learn: 12.5608506	total: 2.21s	remaining: 699ms
76:	learn: 12.4712551	total: 2.25s	remaining: 671ms
77:	learn: 12.3371889	total: 2.27s	remaining: 641ms
78:	learn: 12.2449022	total: 2.3s	remaining: 611ms
79:	learn: 12.2163788	total: 2.33s	remaining: 583ms
80:	learn: 12.1464820	total: 2.36s	remaining: 553ms
81:	learn: 12.0001066	total: 2.38s	remaining: 524ms
82:	learn: 11.8843691	total: 2.41s	remaining: 494ms
83:	learn: 11.7638631	total: 2.46s	remaining: 468ms
84:	learn: 11.6389646	total: 2.48s	remaining: 438ms
85:	learn: 11.5343065	total: 2.51s	remaining: 408ms
86:	learn: 11.4267531	total: 2.54s	remaining: 379ms
87:	learn: 11.3136728	total: 2.57s	remaining: 351ms
88:	learn: 11.2361574	total: 2.6s	remaining: 321ms
89:	learn: 11.1507886	total: 2.63s	remaining: 292ms
90:	learn: 11.0988952	total: 2.65s	remaining: 262ms
91:	learn: 10.9988426	total: 2.69s	remaining: 234ms
92:	learn: 10.9584792	total: 2.71s	remaining: 204ms
93:	learn: 10.8771461	total: 2.74s	remaining: 175ms
94:	learn: 10.8161358	total: 2.77s	remaining: 146ms
95:	learn: 10.7524450	total: 2.8s	remaining: 117ms
96:	learn: 10.6566836	total: 2.83s	remaining: 87.6ms
97:	learn: 10.5550602	total: 2.86s	remaining: 58.3ms
98:	learn: 10.4790583	total: 2.89s	remaining: 29.2ms
99:	learn: 10.4087354	total: 2.92s	remaining: 0us
0:	learn: 46.5398832	total: 27ms	remaining: 2.67s
1:	learn: 45.3142618	total: 53.2ms	remaining: 2.6s
2:	learn: 44.0378137	total: 80.6ms	remaining: 2.61s
3:	learn: 42.7976734	total: 108ms	remaining: 2.6s
4:	learn: 41.7080859	total: 152ms	remaining: 2.89s
5:	learn: 40.4513327	total: 179ms	remaining: 2.8s
6:	learn: 39.4903346	total: 206ms	remaining: 2.74s
7:	learn: 38.3767870	total: 232ms	remaining: 2.67s
8:	learn: 37.4056810	total: 257ms	remaining: 2.6s
9:	learn: 36.4947716	total: 284ms	remaining: 2.56s
10:	learn: 35.4421832	total: 311ms	remaining: 2.52s
11:	learn: 34.6183487	total: 326ms	remaining: 2.39s
12:	learn: 33.9603524	total: 360ms	remaining: 2.41s
13:	learn: 33.0635534	total: 397ms	remaining: 2.44s
14:	learn: 32.2067999	total: 425ms	remaining: 2.41s
15:	learn: 31.3961282	total: 452ms	remaining: 2.37s
16:	learn: 30.7113239	total: 480ms	remaining: 2.35s
17:	learn: 29.9919005	total: 508ms	remaining: 2.31s
18:	learn: 29.4016891	total: 545ms	remaining: 2.33s
19:	learn: 28.7435066	total: 575ms	remaining: 2.3s
20:	learn: 28.2283605	total: 603ms	remaining: 2.27s
21:	learn: 27.6749781	total: 629ms	remaining: 2.23s
22:	learn: 27.1695356	total: 664ms	remaining: 2.22s
23:	learn: 26.6842901	total: 691ms	remaining: 2.19s
24:	learn: 26.0987344	total: 717ms	remaining: 2.15s
25:	learn: 25.5266873	total: 744ms	remaining: 2.12s
26:	learn: 25.0200431	total: 772ms	remaining: 2.09s
27:	learn: 24.5972016	total: 809ms	remaining: 2.08s
28:	learn: 24.1557061	total: 838ms	remaining: 2.05s
29:	learn: 23.7405036	total: 865ms	remaining: 2.02s
30:	learn: 23.3574513	total: 902ms	remaining: 2.01s
31:	learn: 23.0493499	total: 928ms	remaining: 1.97s
32:	learn: 22.6480655	total: 954ms	remaining: 1.94s
33:	learn: 22.2777353	total: 982ms	remaining: 1.91s
34:	learn: 21.8294628	total: 1.01s	remaining: 1.87s
35:	learn: 21.4783115	total: 1.04s	remaining: 1.85s
36:	learn: 21.1271427	total: 1.07s	remaining: 1.82s
37:	learn: 20.7967443	total: 1.09s	remaining: 1.79s
38:	learn: 20.4949793	total: 1.13s	remaining: 1.76s
39:	learn: 20.1991695	total: 1.16s	remaining: 1.73s
40:	learn: 19.8869467	total: 1.18s	remaining: 1.7s
41:	learn: 19.5656862	total: 1.21s	remaining: 1.67s
42:	learn: 19.2415335	total: 1.24s	remaining: 1.65s
43:	learn: 18.9725471	total: 1.27s	remaining: 1.62s
44:	learn: 18.7035722	total: 1.3s	remaining: 1.59s
45:	learn: 18.3840395	total: 1.33s	remaining: 1.56s
46:	learn: 18.1486662	total: 1.36s	remaining: 1.53s
47:	learn: 17.8740440	total: 1.39s	remaining: 1.51s
48:	learn: 17.6056273	total: 1.42s	remaining: 1.48s
49:	learn: 17.4011083	total: 1.45s	remaining: 1.45s
50:	learn: 17.1935449	total: 1.48s	remaining: 1.42s
51:	learn: 16.9415227	total: 1.51s	remaining: 1.39s
52:	learn: 16.6568624	total: 1.53s	remaining: 1.36s
53:	learn: 16.4254479	total: 1.56s	remaining: 1.33s
54:	learn: 16.1958120	total: 1.59s	remaining: 1.3s
55:	learn: 15.9494332	total: 1.62s	remaining: 1.27s
56:	learn: 15.7736632	total: 1.65s	remaining: 1.25s
57:	learn: 15.6314122	total: 1.69s	remaining: 1.22s
58:	learn: 15.3707626	total: 1.72s	remaining: 1.19s
59:	learn: 15.2211664	total: 1.74s	remaining: 1.16s
60:	learn: 14.9939278	total: 1.77s	remaining: 1.13s
61:	learn: 14.8327626	total: 1.8s	remaining: 1.1s
62:	learn: 14.6555776	total: 1.82s	remaining: 1.07s
63:	learn: 14.5516961	total: 1.86s	remaining: 1.05s
64:	learn: 14.3660780	total: 1.89s	remaining: 1.02s
65:	learn: 14.1721909	total: 1.92s	remaining: 989ms
66:	learn: 14.0877696	total: 1.95s	remaining: 959ms
67:	learn: 13.9435793	total: 1.97s	remaining: 929ms
68:	learn: 13.7745805	total: 2s	remaining: 899ms
69:	learn: 13.6490858	total: 2.03s	remaining: 869ms
70:	learn: 13.5022080	total: 2.05s	remaining: 839ms
71:	learn: 13.3922163	total: 2.08s	remaining: 810ms
72:	learn: 13.2842701	total: 2.12s	remaining: 786ms
73:	learn: 13.1698693	total: 2.15s	remaining: 756ms
74:	learn: 13.0256610	total: 2.18s	remaining: 726ms
75:	learn: 12.8855147	total: 2.21s	remaining: 697ms
76:	learn: 12.7807971	total: 2.23s	remaining: 667ms
77:	learn: 12.6618407	total: 2.26s	remaining: 638ms
78:	learn: 12.5369866	total: 2.29s	remaining: 609ms
79:	learn: 12.4376925	total: 2.32s	remaining: 581ms
80:	learn: 12.3005012	total: 2.35s	remaining: 553ms
81:	learn: 12.1751315	total: 2.38s	remaining: 523ms
82:	learn: 12.0612289	total: 2.41s	remaining: 493ms
83:	learn: 11.9757193	total: 2.44s	remaining: 464ms
84:	learn: 11.8530411	total: 2.46s	remaining: 434ms
85:	learn: 11.7523616	total: 2.5s	remaining: 406ms
86:	learn: 11.6645272	total: 2.52s	remaining: 377ms
87:	learn: 11.5645111	total: 2.55s	remaining: 348ms
88:	learn: 11.4692480	total: 2.59s	remaining: 320ms
89:	learn: 11.3724902	total: 2.62s	remaining: 291ms
90:	learn: 11.2842147	total: 2.65s	remaining: 262ms
91:	learn: 11.1868295	total: 2.67s	remaining: 233ms
92:	learn: 11.0293625	total: 2.7s	remaining: 203ms
93:	learn: 10.9495625	total: 2.73s	remaining: 174ms
94:	learn: 10.8608168	total: 2.76s	remaining: 145ms
95:	learn: 10.7804780	total: 2.79s	remaining: 116ms
96:	learn: 10.6503623	total: 2.82s	remaining: 87.1ms
97:	learn: 10.5906748	total: 2.85s	remaining: 58.2ms
98:	learn: 10.4539468	total: 2.88s	remaining: 29.1ms
99:	learn: 10.3804160	total: 2.9s	remaining: 0us
0:	learn: 27.3351083	total: 28ms	remaining: 2.77s
1:	learn: 26.7523848	total: 55.2ms	remaining: 2.7s
2:	learn: 26.1326580	total: 83.2ms	remaining: 2.69s
3:	learn: 25.5584244	total: 110ms	remaining: 2.64s
4:	learn: 25.0458748	total: 137ms	remaining: 2.6s
5:	learn: 24.4868837	total: 171ms	remaining: 2.68s
6:	learn: 23.9306999	total: 199ms	remaining: 2.65s
7:	learn: 23.4799808	total: 234ms	remaining: 2.69s
8:	learn: 22.9510347	total: 262ms	remaining: 2.64s
9:	learn: 22.4529079	total: 289ms	remaining: 2.6s
10:	learn: 21.9320739	total: 317ms	remaining: 2.57s
11:	learn: 21.4729295	total: 344ms	remaining: 2.52s
12:	learn: 21.0885550	total: 372ms	remaining: 2.49s
13:	learn: 20.7063206	total: 405ms	remaining: 2.49s
14:	learn: 20.3539530	total: 433ms	remaining: 2.45s
15:	learn: 20.0071947	total: 473ms	remaining: 2.48s
16:	learn: 19.6579830	total: 501ms	remaining: 2.44s
17:	learn: 19.2450502	total: 529ms	remaining: 2.41s
18:	learn: 18.8010420	total: 556ms	remaining: 2.37s
19:	learn: 18.4055273	total: 584ms	remaining: 2.34s
20:	learn: 18.0395642	total: 610ms	remaining: 2.29s
21:	learn: 17.6568400	total: 638ms	remaining: 2.26s
22:	learn: 17.4284559	total: 685ms	remaining: 2.29s
23:	learn: 17.0957528	total: 715ms	remaining: 2.26s
24:	learn: 16.7636157	total: 742ms	remaining: 2.23s
25:	learn: 16.4987969	total: 768ms	remaining: 2.19s
26:	learn: 16.2204177	total: 796ms	remaining: 2.15s
27:	learn: 15.9525124	total: 824ms	remaining: 2.12s
28:	learn: 15.5905943	total: 851ms	remaining: 2.08s
29:	learn: 15.3628633	total: 880ms	remaining: 2.05s
30:	learn: 15.1420693	total: 927ms	remaining: 2.06s
31:	learn: 14.9419461	total: 955ms	remaining: 2.03s
32:	learn: 14.7386592	total: 984ms	remaining: 2s
33:	learn: 14.5398023	total: 1.01s	remaining: 1.96s
34:	learn: 14.2644206	total: 1.04s	remaining: 1.93s
35:	learn: 14.0168503	total: 1.07s	remaining: 1.9s
36:	learn: 13.7687637	total: 1.1s	remaining: 1.88s
37:	learn: 13.5855913	total: 1.13s	remaining: 1.85s
38:	learn: 13.3656902	total: 1.17s	remaining: 1.83s
39:	learn: 13.2111716	total: 1.2s	remaining: 1.79s
40:	learn: 13.0360149	total: 1.22s	remaining: 1.76s
41:	learn: 12.8789444	total: 1.25s	remaining: 1.73s
42:	learn: 12.6680179	total: 1.28s	remaining: 1.7s
43:	learn: 12.4892268	total: 1.31s	remaining: 1.67s
44:	learn: 12.3275828	total: 1.34s	remaining: 1.64s
45:	learn: 12.2035682	total: 1.37s	remaining: 1.61s
46:	learn: 12.0777397	total: 1.41s	remaining: 1.59s
47:	learn: 11.9055552	total: 1.44s	remaining: 1.55s
48:	learn: 11.7465481	total: 1.46s	remaining: 1.52s
49:	learn: 11.5961200	total: 1.49s	remaining: 1.49s
50:	learn: 11.4305519	total: 1.53s	remaining: 1.47s
51:	learn: 11.2794033	total: 1.56s	remaining: 1.44s
52:	learn: 11.1586950	total: 1.58s	remaining: 1.4s
53:	learn: 11.0432937	total: 1.61s	remaining: 1.37s
54:	learn: 10.9094838	total: 1.64s	remaining: 1.34s
55:	learn: 10.7713451	total: 1.67s	remaining: 1.31s
56:	learn: 10.6664177	total: 1.7s	remaining: 1.28s
57:	learn: 10.5600117	total: 1.74s	remaining: 1.26s
58:	learn: 10.4438974	total: 1.77s	remaining: 1.23s
59:	learn: 10.3294224	total: 1.8s	remaining: 1.2s
60:	learn: 10.2510301	total: 1.83s	remaining: 1.17s
61:	learn: 10.1363264	total: 1.86s	remaining: 1.14s
62:	learn: 10.0415049	total: 1.89s	remaining: 1.11s
63:	learn: 9.9499833	total: 1.92s	remaining: 1.08s
64:	learn: 9.8774263	total: 1.96s	remaining: 1.05s
65:	learn: 9.7458853	total: 1.99s	remaining: 1.02s
66:	learn: 9.6733951	total: 2.01s	remaining: 992ms
67:	learn: 9.5861856	total: 2.04s	remaining: 961ms
68:	learn: 9.4524193	total: 2.07s	remaining: 929ms
69:	learn: 9.3501165	total: 2.1s	remaining: 898ms
70:	learn: 9.3092902	total: 2.12s	remaining: 867ms
71:	learn: 9.2244222	total: 2.17s	remaining: 843ms
72:	learn: 9.1554253	total: 2.2s	remaining: 814ms
73:	learn: 9.1098892	total: 2.23s	remaining: 783ms
74:	learn: 9.0210213	total: 2.26s	remaining: 752ms
75:	learn: 8.9303181	total: 2.29s	remaining: 722ms
76:	learn: 8.8489769	total: 2.31s	remaining: 691ms
77:	learn: 8.7651580	total: 2.34s	remaining: 660ms
78:	learn: 8.7126796	total: 2.37s	remaining: 629ms
79:	learn: 8.6404554	total: 2.41s	remaining: 602ms
80:	learn: 8.5844756	total: 2.44s	remaining: 573ms
81:	learn: 8.5234333	total: 2.47s	remaining: 542ms
82:	learn: 8.4298762	total: 2.5s	remaining: 511ms
83:	learn: 8.3483002	total: 2.52s	remaining: 480ms
84:	learn: 8.2670647	total: 2.55s	remaining: 450ms
85:	learn: 8.1917398	total: 2.58s	remaining: 419ms
86:	learn: 8.1073642	total: 2.6s	remaining: 389ms
87:	learn: 8.0633288	total: 2.64s	remaining: 361ms
88:	learn: 8.0107997	total: 2.68s	remaining: 332ms
89:	learn: 7.9563547	total: 2.71s	remaining: 301ms
90:	learn: 7.8811408	total: 2.74s	remaining: 271ms
91:	learn: 7.8096107	total: 2.77s	remaining: 241ms
92:	learn: 7.7481700	total: 2.79s	remaining: 210ms
93:	learn: 7.6847843	total: 2.82s	remaining: 180ms
94:	learn: 7.6252335	total: 2.85s	remaining: 150ms
95:	learn: 7.5593148	total: 2.89s	remaining: 120ms
96:	learn: 7.5042331	total: 2.92s	remaining: 90.4ms
97:	learn: 7.4553707	total: 2.95s	remaining: 60.2ms
98:	learn: 7.4035691	total: 2.98s	remaining: 30.1ms
99:	learn: 7.3457537	total: 3s	remaining: 0us
0:	learn: 42.5901652	total: 33.8ms	remaining: 3.34s
1:	learn: 41.2917733	total: 61.5ms	remaining: 3.01s
2:	learn: 40.0285549	total: 89.5ms	remaining: 2.89s
3:	learn: 38.9051734	total: 118ms	remaining: 2.84s
4:	learn: 37.7712063	total: 153ms	remaining: 2.9s
5:	learn: 36.6826884	total: 180ms	remaining: 2.82s
6:	learn: 35.6341048	total: 216ms	remaining: 2.86s
7:	learn: 34.5035449	total: 244ms	remaining: 2.81s
8:	learn: 33.5636424	total: 271ms	remaining: 2.74s
9:	learn: 32.5970644	total: 299ms	remaining: 2.69s
10:	learn: 31.8528815	total: 326ms	remaining: 2.63s
11:	learn: 31.0330095	total: 353ms	remaining: 2.59s
12:	learn: 30.3119851	total: 388ms	remaining: 2.59s
13:	learn: 29.5212022	total: 418ms	remaining: 2.57s
14:	learn: 28.7182657	total: 457ms	remaining: 2.59s
15:	learn: 28.0433195	total: 485ms	remaining: 2.55s
16:	learn: 27.2966576	total: 513ms	remaining: 2.5s
17:	learn: 26.5122856	total: 542ms	remaining: 2.47s
18:	learn: 25.8998213	total: 569ms	remaining: 2.43s
19:	learn: 25.2416026	total: 596ms	remaining: 2.38s
20:	learn: 24.6399819	total: 624ms	remaining: 2.35s
21:	learn: 24.0372756	total: 666ms	remaining: 2.36s
22:	learn: 23.4553733	total: 698ms	remaining: 2.34s
23:	learn: 22.9027871	total: 725ms	remaining: 2.29s
24:	learn: 22.4470878	total: 752ms	remaining: 2.25s
25:	learn: 21.9143721	total: 779ms	remaining: 2.22s
26:	learn: 21.4979516	total: 806ms	remaining: 2.18s
27:	learn: 21.0867622	total: 834ms	remaining: 2.15s
28:	learn: 20.6187419	total: 864ms	remaining: 2.12s
29:	learn: 20.1662373	total: 911ms	remaining: 2.12s
30:	learn: 19.8225041	total: 940ms	remaining: 2.09s
31:	learn: 19.4539400	total: 969ms	remaining: 2.06s
32:	learn: 19.1127000	total: 997ms	remaining: 2.02s
33:	learn: 18.7767435	total: 1.02s	remaining: 1.99s
34:	learn: 18.4038779	total: 1.05s	remaining: 1.95s
35:	learn: 18.0021121	total: 1.08s	remaining: 1.92s
36:	learn: 17.6673419	total: 1.12s	remaining: 1.9s
37:	learn: 17.3562137	total: 1.15s	remaining: 1.88s
38:	learn: 17.0128082	total: 1.18s	remaining: 1.84s
39:	learn: 16.7572783	total: 1.21s	remaining: 1.81s
40:	learn: 16.4883778	total: 1.23s	remaining: 1.77s
41:	learn: 16.1756364	total: 1.26s	remaining: 1.74s
42:	learn: 15.9150506	total: 1.29s	remaining: 1.71s
43:	learn: 15.6787555	total: 1.33s	remaining: 1.69s
44:	learn: 15.3862120	total: 1.35s	remaining: 1.66s
45:	learn: 15.1512250	total: 1.39s	remaining: 1.63s
46:	learn: 14.9410960	total: 1.42s	remaining: 1.6s
47:	learn: 14.7086321	total: 1.45s	remaining: 1.57s
48:	learn: 14.5065360	total: 1.48s	remaining: 1.54s
49:	learn: 14.3007466	total: 1.5s	remaining: 1.5s
50:	learn: 14.0972724	total: 1.53s	remaining: 1.47s
51:	learn: 13.8793525	total: 1.57s	remaining: 1.45s
52:	learn: 13.6381311	total: 1.59s	remaining: 1.41s
53:	learn: 13.4603568	total: 1.62s	remaining: 1.38s
54:	learn: 13.2856920	total: 1.66s	remaining: 1.35s
55:	learn: 13.1350779	total: 1.68s	remaining: 1.32s
56:	learn: 13.0110083	total: 1.71s	remaining: 1.29s
57:	learn: 12.8405210	total: 1.74s	remaining: 1.26s
58:	learn: 12.6793938	total: 1.78s	remaining: 1.24s
59:	learn: 12.5497475	total: 1.8s	remaining: 1.2s
60:	learn: 12.4319334	total: 1.83s	remaining: 1.17s
61:	learn: 12.2780964	total: 1.86s	remaining: 1.14s
62:	learn: 12.1187174	total: 1.9s	remaining: 1.12s
63:	learn: 11.9635081	total: 1.93s	remaining: 1.08s
64:	learn: 11.8366366	total: 1.96s	remaining: 1.05s
65:	learn: 11.6598347	total: 1.99s	remaining: 1.02s
66:	learn: 11.5227416	total: 2.02s	remaining: 994ms
67:	learn: 11.4058818	total: 2.04s	remaining: 962ms
68:	learn: 11.2627892	total: 2.07s	remaining: 930ms
69:	learn: 11.1415094	total: 2.1s	remaining: 899ms
70:	learn: 11.0703329	total: 2.13s	remaining: 871ms
71:	learn: 10.9568944	total: 2.17s	remaining: 843ms
72:	learn: 10.8314078	total: 2.2s	remaining: 813ms
73:	learn: 10.7320013	total: 2.23s	remaining: 782ms
74:	learn: 10.6191666	total: 2.25s	remaining: 752ms
75:	learn: 10.5156798	total: 2.28s	remaining: 721ms
76:	learn: 10.4174442	total: 2.31s	remaining: 690ms
77:	learn: 10.3318165	total: 2.34s	remaining: 660ms
78:	learn: 10.2300435	total: 2.38s	remaining: 631ms
79:	learn: 10.1665911	total: 2.41s	remaining: 603ms
80:	learn: 10.1030585	total: 2.44s	remaining: 573ms
81:	learn: 10.0254875	total: 2.47s	remaining: 541ms
82:	learn: 9.9387640	total: 2.49s	remaining: 511ms
83:	learn: 9.8289920	total: 2.52s	remaining: 480ms
84:	learn: 9.7629500	total: 2.55s	remaining: 450ms
85:	learn: 9.6778611	total: 2.57s	remaining: 419ms
86:	learn: 9.5920617	total: 2.61s	remaining: 390ms
87:	learn: 9.4931297	total: 2.65s	remaining: 362ms
88:	learn: 9.4010604	total: 2.68s	remaining: 331ms
89:	learn: 9.3328614	total: 2.71s	remaining: 301ms
90:	learn: 9.2409094	total: 2.74s	remaining: 271ms
91:	learn: 9.1214245	total: 2.76s	remaining: 240ms
92:	learn: 9.0795335	total: 2.79s	remaining: 210ms
93:	learn: 8.9777250	total: 2.82s	remaining: 180ms
94:	learn: 8.9059891	total: 2.86s	remaining: 151ms
95:	learn: 8.8343294	total: 2.89s	remaining: 121ms
96:	learn: 8.7237295	total: 2.92s	remaining: 90.3ms
97:	learn: 8.6401509	total: 2.95s	remaining: 60.2ms
98:	learn: 8.5735108	total: 2.97s	remaining: 30ms
99:	learn: 8.5084579	total: 3s	remaining: 0us
0:	learn: 46.1633714	total: 40.6ms	remaining: 4.02s
1:	learn: 44.7904617	total: 68.7ms	remaining: 3.36s
2:	learn: 43.5292386	total: 103ms	remaining: 3.33s
3:	learn: 42.3776226	total: 131ms	remaining: 3.14s
4:	learn: 41.1726533	total: 159ms	remaining: 3.02s
5:	learn: 40.0256490	total: 186ms	remaining: 2.92s
6:	learn: 39.0318588	total: 213ms	remaining: 2.83s
7:	learn: 38.0361181	total: 241ms	remaining: 2.77s
8:	learn: 37.0398789	total: 269ms	remaining: 2.71s
9:	learn: 36.0525089	total: 296ms	remaining: 2.66s
10:	learn: 35.0926830	total: 341ms	remaining: 2.76s
11:	learn: 34.1467022	total: 368ms	remaining: 2.7s
12:	learn: 33.5625454	total: 394ms	remaining: 2.64s
13:	learn: 32.7993162	total: 422ms	remaining: 2.59s
14:	learn: 32.1179593	total: 448ms	remaining: 2.54s
15:	learn: 31.5382898	total: 474ms	remaining: 2.49s
16:	learn: 30.8398862	total: 500ms	remaining: 2.44s
17:	learn: 30.1060070	total: 528ms	remaining: 2.41s
18:	learn: 29.3826415	total: 569ms	remaining: 2.43s
19:	learn: 28.5809579	total: 604ms	remaining: 2.42s
20:	learn: 28.0104942	total: 632ms	remaining: 2.38s
21:	learn: 27.5189566	total: 662ms	remaining: 2.35s
22:	learn: 26.8603656	total: 689ms	remaining: 2.31s
23:	learn: 26.2547050	total: 715ms	remaining: 2.27s
24:	learn: 25.6559137	total: 742ms	remaining: 2.23s
25:	learn: 25.1148352	total: 770ms	remaining: 2.19s
26:	learn: 24.5782363	total: 806ms	remaining: 2.18s
27:	learn: 24.0350871	total: 841ms	remaining: 2.16s
28:	learn: 23.5119480	total: 867ms	remaining: 2.12s
29:	learn: 23.1119795	total: 893ms	remaining: 2.08s
30:	learn: 22.6838288	total: 920ms	remaining: 2.05s
31:	learn: 22.2554624	total: 949ms	remaining: 2.02s
32:	learn: 21.8241578	total: 979ms	remaining: 1.99s
33:	learn: 21.5062830	total: 1.02s	remaining: 1.98s
34:	learn: 21.0109226	total: 1.05s	remaining: 1.95s
35:	learn: 20.5518606	total: 1.08s	remaining: 1.93s
36:	learn: 20.1195339	total: 1.11s	remaining: 1.89s
37:	learn: 19.7143479	total: 1.14s	remaining: 1.86s
38:	learn: 19.3325253	total: 1.17s	remaining: 1.83s
39:	learn: 19.0310706	total: 1.2s	remaining: 1.8s
40:	learn: 18.7262797	total: 1.23s	remaining: 1.77s
41:	learn: 18.3611836	total: 1.26s	remaining: 1.74s
42:	learn: 17.9960838	total: 1.28s	remaining: 1.7s
43:	learn: 17.7058991	total: 1.31s	remaining: 1.67s
44:	learn: 17.3944673	total: 1.35s	remaining: 1.65s
45:	learn: 17.1283561	total: 1.37s	remaining: 1.61s
46:	learn: 16.8406890	total: 1.4s	remaining: 1.58s
47:	learn: 16.6072061	total: 1.44s	remaining: 1.56s
48:	learn: 16.3697411	total: 1.47s	remaining: 1.53s
49:	learn: 15.9995507	total: 1.49s	remaining: 1.49s
50:	learn: 15.7372570	total: 1.52s	remaining: 1.46s
51:	learn: 15.4840152	total: 1.55s	remaining: 1.43s
52:	learn: 15.2899590	total: 1.58s	remaining: 1.41s
53:	learn: 15.0111064	total: 1.61s	remaining: 1.37s
54:	learn: 14.7504952	total: 1.65s	remaining: 1.35s
55:	learn: 14.5309762	total: 1.68s	remaining: 1.32s
56:	learn: 14.3525677	total: 1.7s	remaining: 1.28s
57:	learn: 14.1816296	total: 1.73s	remaining: 1.25s
58:	learn: 13.9958516	total: 1.75s	remaining: 1.22s
59:	learn: 13.8356735	total: 1.78s	remaining: 1.19s
60:	learn: 13.6499824	total: 1.82s	remaining: 1.16s
61:	learn: 13.4621357	total: 1.84s	remaining: 1.13s
62:	learn: 13.3234970	total: 1.88s	remaining: 1.11s
63:	learn: 13.1407122	total: 1.91s	remaining: 1.07s
64:	learn: 13.0161177	total: 1.94s	remaining: 1.04s
65:	learn: 12.8361175	total: 1.97s	remaining: 1.01s
66:	learn: 12.7103117	total: 2s	remaining: 984ms
67:	learn: 12.5145429	total: 2.02s	remaining: 953ms
68:	learn: 12.3966318	total: 2.06s	remaining: 926ms
69:	learn: 12.2175623	total: 2.1s	remaining: 899ms
70:	learn: 12.0455583	total: 2.13s	remaining: 868ms
71:	learn: 11.9190589	total: 2.15s	remaining: 837ms
72:	learn: 11.7990452	total: 2.18s	remaining: 806ms
73:	learn: 11.6735331	total: 2.21s	remaining: 775ms
74:	learn: 11.5694753	total: 2.23s	remaining: 744ms
75:	learn: 11.4471422	total: 2.26s	remaining: 714ms
76:	learn: 11.3357642	total: 2.29s	remaining: 684ms
77:	learn: 11.2160164	total: 2.33s	remaining: 659ms
78:	learn: 11.1477947	total: 2.36s	remaining: 628ms
79:	learn: 11.0733969	total: 2.39s	remaining: 597ms
80:	learn: 10.9851608	total: 2.42s	remaining: 567ms
81:	learn: 10.8669537	total: 2.44s	remaining: 537ms
82:	learn: 10.7846130	total: 2.47s	remaining: 506ms
83:	learn: 10.6429068	total: 2.5s	remaining: 476ms
84:	learn: 10.5485368	total: 2.53s	remaining: 446ms
85:	learn: 10.4626750	total: 2.57s	remaining: 419ms
86:	learn: 10.3487863	total: 2.6s	remaining: 388ms
87:	learn: 10.2608682	total: 2.63s	remaining: 358ms
88:	learn: 10.1492862	total: 2.65s	remaining: 328ms
89:	learn: 10.0825429	total: 2.68s	remaining: 298ms
90:	learn: 9.9668337	total: 2.71s	remaining: 268ms
91:	learn: 9.8924239	total: 2.74s	remaining: 238ms
92:	learn: 9.7959729	total: 2.76s	remaining: 208ms
93:	learn: 9.7342503	total: 2.81s	remaining: 179ms
94:	learn: 9.6266181	total: 2.84s	remaining: 149ms
95:	learn: 9.5607316	total: 2.87s	remaining: 119ms
96:	learn: 9.4615938	total: 2.89s	remaining: 89.5ms
97:	learn: 9.3562852	total: 2.92s	remaining: 59.6ms
98:	learn: 9.2518786	total: 2.95s	remaining: 29.8ms
99:	learn: 9.2130065	total: 2.98s	remaining: 0us
0:	learn: 45.6477780	total: 27ms	remaining: 2.67s
1:	learn: 44.3885048	total: 60.3ms	remaining: 2.96s
2:	learn: 43.1316502	total: 87.7ms	remaining: 2.84s
3:	learn: 41.8123054	total: 115ms	remaining: 2.77s
4:	learn: 40.7214533	total: 152ms	remaining: 2.89s
5:	learn: 39.6276122	total: 182ms	remaining: 2.85s
6:	learn: 38.6471225	total: 210ms	remaining: 2.79s
7:	learn: 37.7493668	total: 237ms	remaining: 2.73s
8:	learn: 36.7733816	total: 265ms	remaining: 2.68s
9:	learn: 36.1233521	total: 293ms	remaining: 2.64s
10:	learn: 35.5715091	total: 327ms	remaining: 2.64s
11:	learn: 34.6287751	total: 354ms	remaining: 2.6s
12:	learn: 33.8024988	total: 387ms	remaining: 2.59s
13:	learn: 33.0699864	total: 417ms	remaining: 2.56s
14:	learn: 32.2267139	total: 444ms	remaining: 2.52s
15:	learn: 31.4879090	total: 470ms	remaining: 2.47s
16:	learn: 30.6681130	total: 497ms	remaining: 2.42s
17:	learn: 29.9739192	total: 524ms	remaining: 2.39s
18:	learn: 29.3293065	total: 559ms	remaining: 2.38s
19:	learn: 28.5893418	total: 587ms	remaining: 2.35s
20:	learn: 28.0793862	total: 627ms	remaining: 2.36s
21:	learn: 27.5553702	total: 655ms	remaining: 2.32s
22:	learn: 27.0123732	total: 683ms	remaining: 2.29s
23:	learn: 26.3897992	total: 711ms	remaining: 2.25s
24:	learn: 25.7405079	total: 739ms	remaining: 2.21s
25:	learn: 25.2366375	total: 765ms	remaining: 2.18s
26:	learn: 24.8040727	total: 801ms	remaining: 2.17s
27:	learn: 24.3831145	total: 828ms	remaining: 2.13s
28:	learn: 23.9264258	total: 862ms	remaining: 2.11s
29:	learn: 23.4965665	total: 889ms	remaining: 2.08s
30:	learn: 23.0750907	total: 915ms	remaining: 2.04s
31:	learn: 22.6177456	total: 942ms	remaining: 2s
32:	learn: 22.1936903	total: 969ms	remaining: 1.97s
33:	learn: 21.7237373	total: 996ms	remaining: 1.93s
34:	learn: 21.2885821	total: 1.02s	remaining: 1.9s
35:	learn: 20.8773820	total: 1.06s	remaining: 1.89s
36:	learn: 20.5069022	total: 1.1s	remaining: 1.87s
37:	learn: 20.1026772	total: 1.12s	remaining: 1.83s
38:	learn: 19.7278063	total: 1.15s	remaining: 1.8s
39:	learn: 19.4576176	total: 1.18s	remaining: 1.77s
40:	learn: 19.1716041	total: 1.21s	remaining: 1.74s
41:	learn: 18.8541728	total: 1.23s	remaining: 1.7s
42:	learn: 18.6411979	total: 1.26s	remaining: 1.67s
43:	learn: 18.3146636	total: 1.3s	remaining: 1.65s
44:	learn: 18.0208582	total: 1.33s	remaining: 1.63s
45:	learn: 17.7344521	total: 1.36s	remaining: 1.6s
46:	learn: 17.4797974	total: 1.39s	remaining: 1.56s
47:	learn: 17.2182299	total: 1.42s	remaining: 1.53s
48:	learn: 16.9607453	total: 1.44s	remaining: 1.5s
49:	learn: 16.7297863	total: 1.47s	remaining: 1.47s
50:	learn: 16.4913674	total: 1.5s	remaining: 1.44s
51:	learn: 16.2886548	total: 1.53s	remaining: 1.42s
52:	learn: 16.0297055	total: 1.57s	remaining: 1.39s
53:	learn: 15.8558289	total: 1.6s	remaining: 1.36s
54:	learn: 15.6256772	total: 1.62s	remaining: 1.33s
55:	learn: 15.4571057	total: 1.65s	remaining: 1.3s
56:	learn: 15.2857211	total: 1.68s	remaining: 1.27s
57:	learn: 15.0790849	total: 1.71s	remaining: 1.24s
58:	learn: 14.8706573	total: 1.74s	remaining: 1.21s
59:	learn: 14.7142314	total: 1.77s	remaining: 1.18s
60:	learn: 14.5574075	total: 1.8s	remaining: 1.15s
61:	learn: 14.3831719	total: 1.83s	remaining: 1.12s
62:	learn: 14.2429846	total: 1.86s	remaining: 1.09s
63:	learn: 14.0982260	total: 1.89s	remaining: 1.06s
64:	learn: 13.9793470	total: 1.91s	remaining: 1.03s
65:	learn: 13.7843655	total: 1.94s	remaining: 1000ms
66:	learn: 13.6382336	total: 1.98s	remaining: 973ms
67:	learn: 13.5395713	total: 2s	remaining: 944ms
68:	learn: 13.3797741	total: 2.04s	remaining: 917ms
69:	learn: 13.2910103	total: 2.07s	remaining: 887ms
70:	learn: 13.1587887	total: 2.1s	remaining: 856ms
71:	learn: 13.0464642	total: 2.12s	remaining: 826ms
72:	learn: 12.9189091	total: 2.15s	remaining: 796ms
73:	learn: 12.8056893	total: 2.18s	remaining: 767ms
74:	learn: 12.6904403	total: 2.21s	remaining: 737ms
75:	learn: 12.5608506	total: 2.24s	remaining: 707ms
76:	learn: 12.4712551	total: 2.27s	remaining: 677ms
77:	learn: 12.3371889	total: 2.3s	remaining: 648ms
78:	learn: 12.2449022	total: 2.33s	remaining: 618ms
79:	learn: 12.2163788	total: 2.35s	remaining: 588ms
80:	learn: 12.1464820	total: 2.38s	remaining: 558ms
81:	learn: 12.0001066	total: 2.42s	remaining: 530ms
82:	learn: 11.8843691	total: 2.44s	remaining: 500ms
83:	learn: 11.7638631	total: 2.47s	remaining: 471ms
84:	learn: 11.6389646	total: 2.5s	remaining: 441ms
85:	learn: 11.5343065	total: 2.54s	remaining: 413ms
86:	learn: 11.4267531	total: 2.56s	remaining: 383ms
87:	learn: 11.3136728	total: 2.6s	remaining: 354ms
88:	learn: 11.2361574	total: 2.63s	remaining: 325ms
89:	learn: 11.1507886	total: 2.66s	remaining: 295ms
90:	learn: 11.0988952	total: 2.69s	remaining: 266ms
91:	learn: 10.9988426	total: 2.71s	remaining: 236ms
92:	learn: 10.9584792	total: 2.74s	remaining: 206ms
93:	learn: 10.8771461	total: 2.78s	remaining: 177ms
94:	learn: 10.8161358	total: 2.81s	remaining: 148ms
95:	learn: 10.7524450	total: 2.85s	remaining: 119ms
96:	learn: 10.6566836	total: 2.88s	remaining: 88.9ms
97:	learn: 10.5550602	total: 2.9s	remaining: 59.3ms
98:	learn: 10.4790583	total: 2.93s	remaining: 29.6ms
99:	learn: 10.4087354	total: 2.96s	remaining: 0us
0:	learn: 46.5398832	total: 33.6ms	remaining: 3.33s
1:	learn: 45.3142618	total: 62.1ms	remaining: 3.04s
2:	learn: 44.0378137	total: 97ms	remaining: 3.14s
3:	learn: 42.7976734	total: 123ms	remaining: 2.95s
4:	learn: 41.7080859	total: 150ms	remaining: 2.85s
5:	learn: 40.4513327	total: 176ms	remaining: 2.75s
6:	learn: 39.4903346	total: 201ms	remaining: 2.67s
7:	learn: 38.3767870	total: 227ms	remaining: 2.61s
8:	learn: 37.4056810	total: 253ms	remaining: 2.56s
9:	learn: 36.4947716	total: 279ms	remaining: 2.51s
10:	learn: 35.4421832	total: 320ms	remaining: 2.59s
11:	learn: 34.6183487	total: 337ms	remaining: 2.47s
12:	learn: 33.9603524	total: 364ms	remaining: 2.44s
13:	learn: 33.0635534	total: 392ms	remaining: 2.41s
14:	learn: 32.2067999	total: 419ms	remaining: 2.37s
15:	learn: 31.3961282	total: 447ms	remaining: 2.35s
16:	learn: 30.7113239	total: 475ms	remaining: 2.32s
17:	learn: 29.9919005	total: 503ms	remaining: 2.29s
18:	learn: 29.4016891	total: 538ms	remaining: 2.29s
19:	learn: 28.7435066	total: 573ms	remaining: 2.29s
20:	learn: 28.2283605	total: 600ms	remaining: 2.26s
21:	learn: 27.6749781	total: 625ms	remaining: 2.22s
22:	learn: 27.1695356	total: 652ms	remaining: 2.18s
23:	learn: 26.6842901	total: 678ms	remaining: 2.15s
24:	learn: 26.0987344	total: 706ms	remaining: 2.12s
25:	learn: 25.5266873	total: 732ms	remaining: 2.08s
26:	learn: 25.0200431	total: 769ms	remaining: 2.08s
27:	learn: 24.5972016	total: 806ms	remaining: 2.07s
28:	learn: 24.1557061	total: 834ms	remaining: 2.04s
29:	learn: 23.7405036	total: 861ms	remaining: 2.01s
30:	learn: 23.3574513	total: 889ms	remaining: 1.98s
31:	learn: 23.0493499	total: 916ms	remaining: 1.95s
32:	learn: 22.6480655	total: 943ms	remaining: 1.92s
33:	learn: 22.2777353	total: 977ms	remaining: 1.9s
34:	learn: 21.8294628	total: 1s	remaining: 1.87s
35:	learn: 21.4783115	total: 1.03s	remaining: 1.83s
36:	learn: 21.1271427	total: 1.06s	remaining: 1.81s
37:	learn: 20.7967443	total: 1.09s	remaining: 1.78s
38:	learn: 20.4949793	total: 1.12s	remaining: 1.75s
39:	learn: 20.1991695	total: 1.15s	remaining: 1.72s
40:	learn: 19.8869467	total: 1.17s	remaining: 1.69s
41:	learn: 19.5656862	total: 1.21s	remaining: 1.67s
42:	learn: 19.2415335	total: 1.24s	remaining: 1.64s
43:	learn: 18.9725471	total: 1.26s	remaining: 1.61s
44:	learn: 18.7035722	total: 1.3s	remaining: 1.59s
45:	learn: 18.3840395	total: 1.33s	remaining: 1.56s
46:	learn: 18.1486662	total: 1.35s	remaining: 1.53s
47:	learn: 17.8740440	total: 1.38s	remaining: 1.5s
48:	learn: 17.6056273	total: 1.41s	remaining: 1.47s
49:	learn: 17.4011083	total: 1.44s	remaining: 1.44s
50:	learn: 17.1935449	total: 1.47s	remaining: 1.41s
51:	learn: 16.9415227	total: 1.5s	remaining: 1.38s
52:	learn: 16.6568624	total: 1.53s	remaining: 1.36s
53:	learn: 16.4254479	total: 1.56s	remaining: 1.33s
54:	learn: 16.1958120	total: 1.58s	remaining: 1.3s
55:	learn: 15.9494332	total: 1.61s	remaining: 1.27s
56:	learn: 15.7736632	total: 1.65s	remaining: 1.24s
57:	learn: 15.6314122	total: 1.68s	remaining: 1.21s
58:	learn: 15.3707626	total: 1.71s	remaining: 1.19s
59:	learn: 15.2211664	total: 1.73s	remaining: 1.15s
60:	learn: 14.9939278	total: 1.76s	remaining: 1.13s
61:	learn: 14.8327626	total: 1.79s	remaining: 1.1s
62:	learn: 14.6555776	total: 1.82s	remaining: 1.07s
63:	learn: 14.5516961	total: 1.85s	remaining: 1.04s
64:	learn: 14.3660780	total: 1.88s	remaining: 1.01s
65:	learn: 14.1721909	total: 1.91s	remaining: 984ms
66:	learn: 14.0877696	total: 1.94s	remaining: 954ms
67:	learn: 13.9435793	total: 1.96s	remaining: 924ms
68:	learn: 13.7745805	total: 1.99s	remaining: 894ms
69:	learn: 13.6490858	total: 2.02s	remaining: 868ms
70:	learn: 13.5022080	total: 2.05s	remaining: 838ms
71:	learn: 13.3922163	total: 2.08s	remaining: 809ms
72:	learn: 13.2842701	total: 2.11s	remaining: 782ms
73:	learn: 13.1698693	total: 2.14s	remaining: 753ms
74:	learn: 13.0256610	total: 2.17s	remaining: 723ms
75:	learn: 12.8855147	total: 2.2s	remaining: 694ms
76:	learn: 12.7807971	total: 2.23s	remaining: 665ms
77:	learn: 12.6618407	total: 2.25s	remaining: 635ms
78:	learn: 12.5369866	total: 2.29s	remaining: 608ms
79:	learn: 12.4376925	total: 2.32s	remaining: 580ms
80:	learn: 12.3005012	total: 2.35s	remaining: 551ms
81:	learn: 12.1751315	total: 2.37s	remaining: 521ms
82:	learn: 12.0612289	total: 2.4s	remaining: 492ms
83:	learn: 11.9757193	total: 2.43s	remaining: 462ms
84:	learn: 11.8530411	total: 2.46s	remaining: 433ms
85:	learn: 11.7523616	total: 2.48s	remaining: 405ms
86:	learn: 11.6645272	total: 2.53s	remaining: 378ms
87:	learn: 11.5645111	total: 2.56s	remaining: 349ms
88:	learn: 11.4692480	total: 2.58s	remaining: 320ms
89:	learn: 11.3724902	total: 2.62s	remaining: 291ms
90:	learn: 11.2842147	total: 2.64s	remaining: 261ms
91:	learn: 11.1868295	total: 2.67s	remaining: 232ms
92:	learn: 11.0293625	total: 2.7s	remaining: 203ms
93:	learn: 10.9495625	total: 2.73s	remaining: 174ms
94:	learn: 10.8608168	total: 2.77s	remaining: 146ms
95:	learn: 10.7804780	total: 2.8s	remaining: 117ms
96:	learn: 10.6503623	total: 2.83s	remaining: 87.5ms
97:	learn: 10.5906748	total: 2.85s	remaining: 58.3ms
98:	learn: 10.4539468	total: 2.88s	remaining: 29.1ms
99:	learn: 10.3804160	total: 2.91s	remaining: 0us
0:	learn: 27.3776612	total: 24ms	remaining: 2.37s
1:	learn: 26.7619003	total: 47.7ms	remaining: 2.34s
2:	learn: 26.0057626	total: 72ms	remaining: 2.33s
3:	learn: 25.4280982	total: 100ms	remaining: 2.4s
4:	learn: 24.8347609	total: 122ms	remaining: 2.32s
5:	learn: 24.2526574	total: 145ms	remaining: 2.27s
6:	learn: 23.7478806	total: 167ms	remaining: 2.22s
7:	learn: 23.2677666	total: 197ms	remaining: 2.27s
8:	learn: 22.7564310	total: 221ms	remaining: 2.24s
9:	learn: 22.2873770	total: 245ms	remaining: 2.21s
10:	learn: 21.8088174	total: 269ms	remaining: 2.17s
11:	learn: 21.4086875	total: 289ms	remaining: 2.12s
12:	learn: 20.9489217	total: 310ms	remaining: 2.07s
13:	learn: 20.4585233	total: 331ms	remaining: 2.04s
14:	learn: 20.0177760	total: 360ms	remaining: 2.04s
15:	learn: 19.5981890	total: 383ms	remaining: 2.01s
16:	learn: 19.2041885	total: 407ms	remaining: 1.99s
17:	learn: 18.8422550	total: 439ms	remaining: 2s
18:	learn: 18.4774037	total: 467ms	remaining: 1.99s
19:	learn: 18.0931699	total: 492ms	remaining: 1.97s
20:	learn: 17.6856423	total: 516ms	remaining: 1.94s
21:	learn: 17.3394010	total: 541ms	remaining: 1.92s
22:	learn: 17.0165204	total: 564ms	remaining: 1.89s
23:	learn: 16.7728230	total: 587ms	remaining: 1.86s
24:	learn: 16.5020155	total: 617ms	remaining: 1.85s
25:	learn: 16.2110813	total: 646ms	remaining: 1.84s
26:	learn: 15.9439416	total: 669ms	remaining: 1.81s
27:	learn: 15.6605702	total: 691ms	remaining: 1.78s
28:	learn: 15.4180978	total: 712ms	remaining: 1.74s
29:	learn: 15.1463921	total: 735ms	remaining: 1.71s
30:	learn: 14.8961946	total: 755ms	remaining: 1.68s
31:	learn: 14.6763296	total: 778ms	remaining: 1.65s
32:	learn: 14.4161484	total: 802ms	remaining: 1.63s
33:	learn: 14.1748686	total: 825ms	remaining: 1.6s
34:	learn: 13.9722494	total: 857ms	remaining: 1.59s
35:	learn: 13.7632896	total: 889ms	remaining: 1.58s
36:	learn: 13.5572592	total: 913ms	remaining: 1.55s
37:	learn: 13.3896577	total: 938ms	remaining: 1.53s
38:	learn: 13.2796441	total: 960ms	remaining: 1.5s
39:	learn: 13.0896679	total: 982ms	remaining: 1.47s
40:	learn: 12.8898238	total: 1s	remaining: 1.44s
41:	learn: 12.6824069	total: 1.03s	remaining: 1.42s
42:	learn: 12.5459667	total: 1.06s	remaining: 1.4s
43:	learn: 12.3859203	total: 1.08s	remaining: 1.38s
44:	learn: 12.2099364	total: 1.1s	remaining: 1.35s
45:	learn: 12.0649044	total: 1.13s	remaining: 1.33s
46:	learn: 11.8934147	total: 1.15s	remaining: 1.3s
47:	learn: 11.7212144	total: 1.17s	remaining: 1.27s
48:	learn: 11.5585360	total: 1.19s	remaining: 1.24s
49:	learn: 11.4204354	total: 1.22s	remaining: 1.22s
50:	learn: 11.3264427	total: 1.25s	remaining: 1.2s
51:	learn: 11.2063486	total: 1.28s	remaining: 1.18s
52:	learn: 11.0712206	total: 1.3s	remaining: 1.16s
53:	learn: 10.9205088	total: 1.33s	remaining: 1.13s
54:	learn: 10.8155412	total: 1.35s	remaining: 1.11s
55:	learn: 10.7286854	total: 1.38s	remaining: 1.09s
56:	learn: 10.6088466	total: 1.4s	remaining: 1.06s
57:	learn: 10.4999885	total: 1.43s	remaining: 1.03s
58:	learn: 10.4022194	total: 1.45s	remaining: 1.01s
59:	learn: 10.3147130	total: 1.48s	remaining: 988ms
60:	learn: 10.2011489	total: 1.5s	remaining: 962ms
61:	learn: 10.1094372	total: 1.52s	remaining: 935ms
62:	learn: 10.0248970	total: 1.55s	remaining: 908ms
63:	learn: 9.9192710	total: 1.57s	remaining: 881ms
64:	learn: 9.8577360	total: 1.59s	remaining: 855ms
65:	learn: 9.7737103	total: 1.61s	remaining: 828ms
66:	learn: 9.6706617	total: 1.64s	remaining: 806ms
67:	learn: 9.6042727	total: 1.66s	remaining: 781ms
68:	learn: 9.5355377	total: 1.69s	remaining: 758ms
69:	learn: 9.4615216	total: 1.72s	remaining: 736ms
70:	learn: 9.3702045	total: 1.74s	remaining: 711ms
71:	learn: 9.3035392	total: 1.76s	remaining: 686ms
72:	learn: 9.2322686	total: 1.79s	remaining: 661ms
73:	learn: 9.1431916	total: 1.81s	remaining: 637ms
74:	learn: 9.0869466	total: 1.83s	remaining: 611ms
75:	learn: 9.0117390	total: 1.85s	remaining: 585ms
76:	learn: 8.9580443	total: 1.89s	remaining: 564ms
77:	learn: 8.8649939	total: 1.91s	remaining: 540ms
78:	learn: 8.7792713	total: 1.94s	remaining: 515ms
79:	learn: 8.7164606	total: 1.96s	remaining: 489ms
80:	learn: 8.6340559	total: 1.98s	remaining: 464ms
81:	learn: 8.5697104	total: 2s	remaining: 439ms
82:	learn: 8.5273758	total: 2.02s	remaining: 414ms
83:	learn: 8.4394788	total: 2.04s	remaining: 390ms
84:	learn: 8.3672415	total: 2.07s	remaining: 365ms
85:	learn: 8.2813444	total: 2.09s	remaining: 341ms
86:	learn: 8.1994983	total: 2.12s	remaining: 316ms
87:	learn: 8.1003577	total: 2.15s	remaining: 294ms
88:	learn: 8.0501976	total: 2.18s	remaining: 269ms
89:	learn: 7.9718830	total: 2.2s	remaining: 245ms
90:	learn: 7.9114534	total: 2.23s	remaining: 220ms
91:	learn: 7.8319856	total: 2.25s	remaining: 196ms
92:	learn: 7.7731246	total: 2.27s	remaining: 171ms
93:	learn: 7.7165850	total: 2.29s	remaining: 146ms
94:	learn: 7.6448498	total: 2.31s	remaining: 122ms
95:	learn: 7.5709919	total: 2.35s	remaining: 97.8ms
96:	learn: 7.5184082	total: 2.37s	remaining: 73.3ms
97:	learn: 7.4786866	total: 2.4s	remaining: 49ms
98:	learn: 7.4301201	total: 2.42s	remaining: 24.5ms
99:	learn: 7.3416932	total: 2.44s	remaining: 0us
0:	learn: 42.6391731	total: 22.7ms	remaining: 2.25s
1:	learn: 41.2755994	total: 46.3ms	remaining: 2.27s
2:	learn: 40.1418308	total: 69.1ms	remaining: 2.23s
3:	learn: 38.9707156	total: 101ms	remaining: 2.42s
4:	learn: 37.8723622	total: 128ms	remaining: 2.43s
5:	learn: 36.6981834	total: 152ms	remaining: 2.38s
6:	learn: 35.6210108	total: 175ms	remaining: 2.33s
7:	learn: 34.5154078	total: 207ms	remaining: 2.38s
8:	learn: 33.4581011	total: 227ms	remaining: 2.3s
9:	learn: 32.5872455	total: 250ms	remaining: 2.25s
10:	learn: 31.6311510	total: 274ms	remaining: 2.21s
11:	learn: 30.8222401	total: 304ms	remaining: 2.23s
12:	learn: 29.9305192	total: 327ms	remaining: 2.19s
13:	learn: 29.0742133	total: 349ms	remaining: 2.14s
14:	learn: 28.3687544	total: 369ms	remaining: 2.09s
15:	learn: 27.5730558	total: 390ms	remaining: 2.05s
16:	learn: 26.9376082	total: 411ms	remaining: 2s
17:	learn: 26.2254949	total: 432ms	remaining: 1.97s
18:	learn: 25.5974939	total: 463ms	remaining: 1.97s
19:	learn: 25.0097187	total: 486ms	remaining: 1.94s
20:	learn: 24.3722243	total: 514ms	remaining: 1.93s
21:	learn: 23.8249140	total: 541ms	remaining: 1.92s
22:	learn: 23.3953969	total: 564ms	remaining: 1.89s
23:	learn: 22.8726238	total: 588ms	remaining: 1.86s
24:	learn: 22.3407723	total: 612ms	remaining: 1.83s
25:	learn: 21.8360330	total: 635ms	remaining: 1.81s
26:	learn: 21.4050665	total: 638ms	remaining: 1.72s
27:	learn: 20.9389245	total: 660ms	remaining: 1.7s
28:	learn: 20.5166767	total: 681ms	remaining: 1.67s
29:	learn: 20.1190641	total: 710ms	remaining: 1.66s
30:	learn: 19.7189491	total: 734ms	remaining: 1.63s
31:	learn: 19.3748181	total: 761ms	remaining: 1.62s
32:	learn: 19.0116312	total: 784ms	remaining: 1.59s
33:	learn: 18.6982407	total: 805ms	remaining: 1.56s
34:	learn: 18.3109965	total: 826ms	remaining: 1.53s
35:	learn: 17.9620798	total: 847ms	remaining: 1.51s
36:	learn: 17.6396740	total: 869ms	remaining: 1.48s
37:	learn: 17.3596962	total: 892ms	remaining: 1.46s
38:	learn: 17.0107107	total: 914ms	remaining: 1.43s
39:	learn: 16.7000770	total: 938ms	remaining: 1.41s
40:	learn: 16.4406609	total: 966ms	remaining: 1.39s
41:	learn: 16.2482533	total: 993ms	remaining: 1.37s
42:	learn: 16.0039366	total: 1.02s	remaining: 1.35s
43:	learn: 15.7538572	total: 1.04s	remaining: 1.32s
44:	learn: 15.5095380	total: 1.06s	remaining: 1.3s
45:	learn: 15.2678319	total: 1.09s	remaining: 1.27s
46:	learn: 15.0494495	total: 1.11s	remaining: 1.25s
47:	learn: 14.8347400	total: 1.13s	remaining: 1.22s
48:	learn: 14.6035398	total: 1.15s	remaining: 1.2s
49:	learn: 14.3913639	total: 1.18s	remaining: 1.18s
50:	learn: 14.1928022	total: 1.2s	remaining: 1.16s
51:	learn: 13.9985580	total: 1.23s	remaining: 1.14s
52:	learn: 13.8322220	total: 1.25s	remaining: 1.11s
53:	learn: 13.6455937	total: 1.27s	remaining: 1.08s
54:	learn: 13.4402019	total: 1.29s	remaining: 1.06s
55:	learn: 13.2899163	total: 1.32s	remaining: 1.03s
56:	learn: 13.1694614	total: 1.34s	remaining: 1.01s
57:	learn: 13.0722892	total: 1.37s	remaining: 992ms
58:	learn: 12.9065251	total: 1.4s	remaining: 970ms
59:	learn: 12.6992885	total: 1.42s	remaining: 946ms
60:	learn: 12.5384562	total: 1.44s	remaining: 922ms
61:	learn: 12.4105591	total: 1.47s	remaining: 904ms
62:	learn: 12.2952504	total: 1.5s	remaining: 880ms
63:	learn: 12.1427365	total: 1.52s	remaining: 855ms
64:	learn: 11.9954361	total: 1.54s	remaining: 830ms
65:	learn: 11.8161234	total: 1.57s	remaining: 807ms
66:	learn: 11.6849978	total: 1.59s	remaining: 783ms
67:	learn: 11.5405300	total: 1.62s	remaining: 762ms
68:	learn: 11.3806762	total: 1.64s	remaining: 737ms
69:	learn: 11.2746848	total: 1.66s	remaining: 712ms
70:	learn: 11.1518256	total: 1.68s	remaining: 687ms
71:	learn: 11.0730779	total: 1.7s	remaining: 662ms
72:	learn: 10.9736725	total: 1.73s	remaining: 641ms
73:	learn: 10.8430563	total: 1.75s	remaining: 616ms
74:	learn: 10.7142220	total: 1.78s	remaining: 592ms
75:	learn: 10.6141640	total: 1.8s	remaining: 568ms
76:	learn: 10.5264853	total: 1.83s	remaining: 547ms
77:	learn: 10.3929390	total: 1.85s	remaining: 523ms
78:	learn: 10.3163176	total: 1.88s	remaining: 499ms
79:	learn: 10.2171240	total: 1.9s	remaining: 476ms
80:	learn: 10.1381738	total: 1.93s	remaining: 452ms
81:	learn: 10.0402437	total: 1.95s	remaining: 429ms
82:	learn: 9.9223565	total: 1.98s	remaining: 406ms
83:	learn: 9.8184057	total: 2s	remaining: 382ms
84:	learn: 9.7221978	total: 2.02s	remaining: 358ms
85:	learn: 9.6417031	total: 2.05s	remaining: 334ms
86:	learn: 9.5593969	total: 2.08s	remaining: 311ms
87:	learn: 9.4678992	total: 2.1s	remaining: 287ms
88:	learn: 9.3855757	total: 2.12s	remaining: 262ms
89:	learn: 9.2884031	total: 2.14s	remaining: 238ms
90:	learn: 9.2099382	total: 2.17s	remaining: 214ms
91:	learn: 9.1357061	total: 2.19s	remaining: 190ms
92:	learn: 9.0690328	total: 2.22s	remaining: 167ms
93:	learn: 8.9904694	total: 2.24s	remaining: 143ms
94:	learn: 8.9256893	total: 2.27s	remaining: 120ms
95:	learn: 8.8600084	total: 2.3s	remaining: 95.7ms
96:	learn: 8.8091154	total: 2.32s	remaining: 71.8ms
97:	learn: 8.7280528	total: 2.34s	remaining: 47.9ms
98:	learn: 8.6761440	total: 2.37s	remaining: 23.9ms
99:	learn: 8.6181192	total: 2.39s	remaining: 0us
0:	learn: 45.9988128	total: 25.6ms	remaining: 2.54s
1:	learn: 44.7653841	total: 47.7ms	remaining: 2.34s
2:	learn: 43.4693688	total: 68.8ms	remaining: 2.22s
3:	learn: 42.2495168	total: 97.6ms	remaining: 2.34s
4:	learn: 41.2273909	total: 118ms	remaining: 2.24s
5:	learn: 40.0623352	total: 140ms	remaining: 2.2s
6:	learn: 39.0139162	total: 161ms	remaining: 2.14s
7:	learn: 37.9905503	total: 186ms	remaining: 2.14s
8:	learn: 37.1460179	total: 214ms	remaining: 2.16s
9:	learn: 36.1321769	total: 242ms	remaining: 2.18s
10:	learn: 35.2434048	total: 267ms	remaining: 2.16s
11:	learn: 34.3919476	total: 291ms	remaining: 2.13s
12:	learn: 33.5464400	total: 315ms	remaining: 2.11s
13:	learn: 32.5752711	total: 344ms	remaining: 2.12s
14:	learn: 31.8573507	total: 366ms	remaining: 2.07s
15:	learn: 31.1481980	total: 388ms	remaining: 2.04s
16:	learn: 30.4578224	total: 412ms	remaining: 2.01s
17:	learn: 29.8404841	total: 445ms	remaining: 2.02s
18:	learn: 29.1314604	total: 467ms	remaining: 1.99s
19:	learn: 28.5024706	total: 491ms	remaining: 1.96s
20:	learn: 27.9368896	total: 515ms	remaining: 1.94s
21:	learn: 27.2136491	total: 537ms	remaining: 1.9s
22:	learn: 26.6230078	total: 560ms	remaining: 1.87s
23:	learn: 26.0604635	total: 582ms	remaining: 1.84s
24:	learn: 25.6309424	total: 612ms	remaining: 1.83s
25:	learn: 25.1761698	total: 640ms	remaining: 1.82s
26:	learn: 24.6368216	total: 667ms	remaining: 1.8s
27:	learn: 24.1028972	total: 691ms	remaining: 1.78s
28:	learn: 23.3990224	total: 714ms	remaining: 1.75s
29:	learn: 22.9088559	total: 738ms	remaining: 1.72s
30:	learn: 22.4793217	total: 763ms	remaining: 1.7s
31:	learn: 22.0592669	total: 786ms	remaining: 1.67s
32:	learn: 21.6715811	total: 810ms	remaining: 1.64s
33:	learn: 21.1907911	total: 843ms	remaining: 1.64s
34:	learn: 20.8045504	total: 876ms	remaining: 1.63s
35:	learn: 20.4670784	total: 899ms	remaining: 1.6s
36:	learn: 20.0165788	total: 923ms	remaining: 1.57s
37:	learn: 19.6859173	total: 945ms	remaining: 1.54s
38:	learn: 19.3641283	total: 967ms	remaining: 1.51s
39:	learn: 19.0291194	total: 988ms	remaining: 1.48s
40:	learn: 18.7204204	total: 1.01s	remaining: 1.46s
41:	learn: 18.4000101	total: 1.03s	remaining: 1.43s
42:	learn: 18.0910445	total: 1.06s	remaining: 1.4s
43:	learn: 17.8354609	total: 1.08s	remaining: 1.38s
44:	learn: 17.4982243	total: 1.12s	remaining: 1.37s
45:	learn: 17.1895897	total: 1.15s	remaining: 1.35s
46:	learn: 16.9440833	total: 1.17s	remaining: 1.32s
47:	learn: 16.6112102	total: 1.19s	remaining: 1.29s
48:	learn: 16.3320235	total: 1.22s	remaining: 1.27s
49:	learn: 16.0523610	total: 1.24s	remaining: 1.24s
50:	learn: 15.8256738	total: 1.26s	remaining: 1.21s
51:	learn: 15.5699393	total: 1.28s	remaining: 1.19s
52:	learn: 15.3531799	total: 1.31s	remaining: 1.17s
53:	learn: 15.1364230	total: 1.34s	remaining: 1.14s
54:	learn: 15.0012063	total: 1.36s	remaining: 1.11s
55:	learn: 14.7171740	total: 1.39s	remaining: 1.09s
56:	learn: 14.5897576	total: 1.39s	remaining: 1.05s
57:	learn: 14.3886878	total: 1.41s	remaining: 1.02s
58:	learn: 14.1942115	total: 1.43s	remaining: 995ms
59:	learn: 14.0135398	total: 1.45s	remaining: 969ms
60:	learn: 13.8118263	total: 1.47s	remaining: 942ms
61:	learn: 13.6444047	total: 1.5s	remaining: 917ms
62:	learn: 13.4728078	total: 1.52s	remaining: 893ms
63:	learn: 13.3104934	total: 1.55s	remaining: 871ms
64:	learn: 13.1385144	total: 1.58s	remaining: 849ms
65:	learn: 13.0087777	total: 1.6s	remaining: 825ms
66:	learn: 12.8457835	total: 1.63s	remaining: 804ms
67:	learn: 12.6975263	total: 1.66s	remaining: 780ms
68:	learn: 12.5582839	total: 1.68s	remaining: 754ms
69:	learn: 12.4210776	total: 1.7s	remaining: 729ms
70:	learn: 12.2737286	total: 1.72s	remaining: 704ms
71:	learn: 12.1587075	total: 1.76s	remaining: 683ms
72:	learn: 12.0323022	total: 1.78s	remaining: 658ms
73:	learn: 11.8667900	total: 1.8s	remaining: 633ms
74:	learn: 11.6990385	total: 1.82s	remaining: 608ms
75:	learn: 11.5755058	total: 1.84s	remaining: 583ms
76:	learn: 11.4954152	total: 1.87s	remaining: 558ms
77:	learn: 11.3827464	total: 1.9s	remaining: 536ms
78:	learn: 11.2924968	total: 1.92s	remaining: 511ms
79:	learn: 11.1938217	total: 1.95s	remaining: 487ms
80:	learn: 11.0766477	total: 1.98s	remaining: 465ms
81:	learn: 10.9824487	total: 2.01s	remaining: 441ms
82:	learn: 10.8707168	total: 2.03s	remaining: 416ms
83:	learn: 10.7746205	total: 2.06s	remaining: 392ms
84:	learn: 10.6738461	total: 2.08s	remaining: 367ms
85:	learn: 10.5871227	total: 2.1s	remaining: 342ms
86:	learn: 10.4566607	total: 2.12s	remaining: 317ms
87:	learn: 10.3506633	total: 2.15s	remaining: 294ms
88:	learn: 10.2104644	total: 2.18s	remaining: 270ms
89:	learn: 10.0965839	total: 2.21s	remaining: 245ms
90:	learn: 9.9802927	total: 2.23s	remaining: 221ms
91:	learn: 9.9195276	total: 2.25s	remaining: 196ms
92:	learn: 9.8559698	total: 2.27s	remaining: 171ms
93:	learn: 9.7396780	total: 2.29s	remaining: 146ms
94:	learn: 9.6945725	total: 2.31s	remaining: 122ms
95:	learn: 9.5897565	total: 2.33s	remaining: 97.3ms
96:	learn: 9.5012011	total: 2.36s	remaining: 72.9ms
97:	learn: 9.4123715	total: 2.38s	remaining: 48.6ms
98:	learn: 9.3288366	total: 2.42s	remaining: 24.5ms
99:	learn: 9.2648715	total: 2.45s	remaining: 0us
0:	learn: 45.5336925	total: 20.6ms	remaining: 2.04s
1:	learn: 44.2714175	total: 41.6ms	remaining: 2.04s
2:	learn: 43.1477944	total: 62.5ms	remaining: 2.02s
3:	learn: 41.9891776	total: 85.2ms	remaining: 2.04s
4:	learn: 41.0638986	total: 112ms	remaining: 2.14s
5:	learn: 39.9800801	total: 139ms	remaining: 2.17s
6:	learn: 38.9048061	total: 163ms	remaining: 2.16s
7:	learn: 38.0749429	total: 183ms	remaining: 2.11s
8:	learn: 37.3966644	total: 212ms	remaining: 2.15s
9:	learn: 36.4671331	total: 233ms	remaining: 2.1s
10:	learn: 35.6649217	total: 255ms	remaining: 2.06s
11:	learn: 34.8793657	total: 277ms	remaining: 2.03s
12:	learn: 34.0737401	total: 305ms	remaining: 2.04s
13:	learn: 33.2560999	total: 330ms	remaining: 2.03s
14:	learn: 32.4184623	total: 354ms	remaining: 2.01s
15:	learn: 31.6803206	total: 376ms	remaining: 1.98s
16:	learn: 30.9276344	total: 400ms	remaining: 1.95s
17:	learn: 30.3590041	total: 424ms	remaining: 1.93s
18:	learn: 29.7789888	total: 446ms	remaining: 1.9s
19:	learn: 29.1098261	total: 475ms	remaining: 1.9s
20:	learn: 28.4824889	total: 499ms	remaining: 1.88s
21:	learn: 27.9675744	total: 521ms	remaining: 1.85s
22:	learn: 27.4793215	total: 550ms	remaining: 1.84s
23:	learn: 26.8920542	total: 572ms	remaining: 1.81s
24:	learn: 26.2736657	total: 593ms	remaining: 1.78s
25:	learn: 25.6908003	total: 613ms	remaining: 1.75s
26:	learn: 25.1288844	total: 635ms	remaining: 1.72s
27:	learn: 24.6933320	total: 656ms	remaining: 1.69s
28:	learn: 24.1372567	total: 677ms	remaining: 1.66s
29:	learn: 23.7103515	total: 706ms	remaining: 1.65s
30:	learn: 23.1647499	total: 731ms	remaining: 1.63s
31:	learn: 22.7009216	total: 762ms	remaining: 1.62s
32:	learn: 22.2792229	total: 787ms	remaining: 1.6s
33:	learn: 21.8004244	total: 813ms	remaining: 1.58s
34:	learn: 21.3578361	total: 837ms	remaining: 1.55s
35:	learn: 21.0262832	total: 862ms	remaining: 1.53s
36:	learn: 20.5787502	total: 883ms	remaining: 1.5s
37:	learn: 20.3083055	total: 905ms	remaining: 1.48s
38:	learn: 19.9902529	total: 927ms	remaining: 1.45s
39:	learn: 19.6059571	total: 951ms	remaining: 1.43s
40:	learn: 19.3890959	total: 988ms	remaining: 1.42s
41:	learn: 19.0549255	total: 1.01s	remaining: 1.4s
42:	learn: 18.7283215	total: 1.03s	remaining: 1.37s
43:	learn: 18.4448725	total: 1.05s	remaining: 1.34s
44:	learn: 18.1578001	total: 1.07s	remaining: 1.31s
45:	learn: 17.8777474	total: 1.1s	remaining: 1.29s
46:	learn: 17.6428221	total: 1.12s	remaining: 1.26s
47:	learn: 17.3887752	total: 1.14s	remaining: 1.24s
48:	learn: 17.1475761	total: 1.16s	remaining: 1.21s
49:	learn: 16.9064363	total: 1.19s	remaining: 1.19s
50:	learn: 16.6414681	total: 1.23s	remaining: 1.18s
51:	learn: 16.4549974	total: 1.25s	remaining: 1.16s
52:	learn: 16.2617558	total: 1.28s	remaining: 1.13s
53:	learn: 16.0258241	total: 1.3s	remaining: 1.11s
54:	learn: 15.7694686	total: 1.32s	remaining: 1.08s
55:	learn: 15.5449602	total: 1.34s	remaining: 1.06s
56:	learn: 15.3515330	total: 1.37s	remaining: 1.03s
57:	learn: 15.1120403	total: 1.39s	remaining: 1.01s
58:	learn: 14.9131368	total: 1.42s	remaining: 987ms
59:	learn: 14.8021921	total: 1.44s	remaining: 963ms
60:	learn: 14.6564259	total: 1.47s	remaining: 937ms
61:	learn: 14.5253260	total: 1.49s	remaining: 916ms
62:	learn: 14.3975427	total: 1.51s	remaining: 890ms
63:	learn: 14.3060204	total: 1.54s	remaining: 864ms
64:	learn: 14.1283681	total: 1.56s	remaining: 839ms
65:	learn: 14.0159063	total: 1.58s	remaining: 814ms
66:	learn: 13.8712541	total: 1.6s	remaining: 789ms
67:	learn: 13.7852998	total: 1.62s	remaining: 765ms
68:	learn: 13.6790164	total: 1.65s	remaining: 743ms
69:	learn: 13.5253745	total: 1.68s	remaining: 720ms
70:	learn: 13.3959663	total: 1.7s	remaining: 696ms
71:	learn: 13.2062955	total: 1.73s	remaining: 672ms
72:	learn: 13.0788709	total: 1.76s	remaining: 651ms
73:	learn: 12.9513184	total: 1.78s	remaining: 627ms
74:	learn: 12.8198556	total: 1.8s	remaining: 601ms
75:	learn: 12.7137549	total: 1.82s	remaining: 576ms
76:	learn: 12.6243477	total: 1.85s	remaining: 552ms
77:	learn: 12.5241564	total: 1.87s	remaining: 528ms
78:	learn: 12.4445782	total: 1.9s	remaining: 505ms
79:	learn: 12.3816501	total: 1.92s	remaining: 481ms
80:	learn: 12.2846914	total: 1.94s	remaining: 456ms
81:	learn: 12.1419498	total: 1.97s	remaining: 432ms
82:	learn: 12.0846494	total: 2s	remaining: 409ms
83:	learn: 11.9851484	total: 2.02s	remaining: 384ms
84:	learn: 11.8905738	total: 2.04s	remaining: 360ms
85:	learn: 11.7718790	total: 2.06s	remaining: 335ms
86:	learn: 11.6854413	total: 2.08s	remaining: 311ms
87:	learn: 11.6206110	total: 2.11s	remaining: 288ms
88:	learn: 11.5376098	total: 2.14s	remaining: 264ms
89:	learn: 11.4235068	total: 2.16s	remaining: 240ms
90:	learn: 11.3477955	total: 2.19s	remaining: 216ms
91:	learn: 11.2663772	total: 2.21s	remaining: 192ms
92:	learn: 11.1916556	total: 2.24s	remaining: 168ms
93:	learn: 11.0921504	total: 2.27s	remaining: 145ms
94:	learn: 10.9622375	total: 2.29s	remaining: 121ms
95:	learn: 10.8882085	total: 2.32s	remaining: 96.7ms
96:	learn: 10.8086218	total: 2.34s	remaining: 72.4ms
97:	learn: 10.7552220	total: 2.36s	remaining: 48.2ms
98:	learn: 10.6929666	total: 2.38s	remaining: 24.1ms
99:	learn: 10.6200033	total: 2.41s	remaining: 0us
0:	learn: 46.3366259	total: 22.5ms	remaining: 2.23s
1:	learn: 45.2205278	total: 57.3ms	remaining: 2.81s
2:	learn: 43.9887404	total: 83.3ms	remaining: 2.69s
3:	learn: 42.8240666	total: 118ms	remaining: 2.83s
4:	learn: 41.6086617	total: 143ms	remaining: 2.72s
5:	learn: 40.5606446	total: 166ms	remaining: 2.6s
6:	learn: 39.6241326	total: 190ms	remaining: 2.53s
7:	learn: 39.0016852	total: 213ms	remaining: 2.45s
8:	learn: 37.8501670	total: 234ms	remaining: 2.36s
9:	learn: 37.0215474	total: 258ms	remaining: 2.32s
10:	learn: 36.0215020	total: 285ms	remaining: 2.31s
11:	learn: 35.2421331	total: 318ms	remaining: 2.33s
12:	learn: 34.5416837	total: 342ms	remaining: 2.29s
13:	learn: 33.7787649	total: 364ms	remaining: 2.24s
14:	learn: 32.9860883	total: 394ms	remaining: 2.23s
15:	learn: 32.2123752	total: 417ms	remaining: 2.19s
16:	learn: 31.3564648	total: 441ms	remaining: 2.15s
17:	learn: 30.7859979	total: 467ms	remaining: 2.13s
18:	learn: 30.1443515	total: 491ms	remaining: 2.09s
19:	learn: 29.4880724	total: 524ms	remaining: 2.1s
20:	learn: 28.9635727	total: 549ms	remaining: 2.06s
21:	learn: 28.4853342	total: 574ms	remaining: 2.04s
22:	learn: 27.9796348	total: 599ms	remaining: 2.01s
23:	learn: 27.4360487	total: 624ms	remaining: 1.98s
24:	learn: 26.8685214	total: 644ms	remaining: 1.93s
25:	learn: 26.1769206	total: 677ms	remaining: 1.93s
26:	learn: 25.7146048	total: 700ms	remaining: 1.89s
27:	learn: 25.2614850	total: 728ms	remaining: 1.87s
28:	learn: 24.6626472	total: 751ms	remaining: 1.84s
29:	learn: 24.2501259	total: 773ms	remaining: 1.8s
30:	learn: 23.7892661	total: 796ms	remaining: 1.77s
31:	learn: 23.2729078	total: 819ms	remaining: 1.74s
32:	learn: 22.8969731	total: 841ms	remaining: 1.71s
33:	learn: 22.4567570	total: 863ms	remaining: 1.68s
34:	learn: 22.0569858	total: 886ms	remaining: 1.65s
35:	learn: 21.7317775	total: 916ms	remaining: 1.63s
36:	learn: 21.3890971	total: 947ms	remaining: 1.61s
37:	learn: 21.0664504	total: 973ms	remaining: 1.59s
38:	learn: 20.7379659	total: 997ms	remaining: 1.56s
39:	learn: 20.4423699	total: 1.02s	remaining: 1.53s
40:	learn: 20.1526720	total: 1.04s	remaining: 1.5s
41:	learn: 19.8706547	total: 1.06s	remaining: 1.47s
42:	learn: 19.5139134	total: 1.09s	remaining: 1.44s
43:	learn: 19.3495951	total: 1.11s	remaining: 1.41s
44:	learn: 19.1314757	total: 1.13s	remaining: 1.38s
45:	learn: 18.7971159	total: 1.16s	remaining: 1.36s
46:	learn: 18.5447051	total: 1.19s	remaining: 1.34s
47:	learn: 18.2328785	total: 1.21s	remaining: 1.31s
48:	learn: 17.9622938	total: 1.23s	remaining: 1.28s
49:	learn: 17.7264205	total: 1.25s	remaining: 1.25s
50:	learn: 17.4530592	total: 1.27s	remaining: 1.22s
51:	learn: 17.2236644	total: 1.3s	remaining: 1.2s
52:	learn: 17.0122792	total: 1.32s	remaining: 1.17s
53:	learn: 16.7599064	total: 1.34s	remaining: 1.14s
54:	learn: 16.5146699	total: 1.37s	remaining: 1.12s
55:	learn: 16.2531414	total: 1.4s	remaining: 1.1s
56:	learn: 16.0997208	total: 1.43s	remaining: 1.08s
57:	learn: 15.8452412	total: 1.45s	remaining: 1.05s
58:	learn: 15.6294900	total: 1.48s	remaining: 1.03s
59:	learn: 15.4564548	total: 1.5s	remaining: 999ms
60:	learn: 15.2978533	total: 1.52s	remaining: 972ms
61:	learn: 15.0976912	total: 1.55s	remaining: 950ms
62:	learn: 14.9094446	total: 1.57s	remaining: 925ms
63:	learn: 14.7415094	total: 1.6s	remaining: 898ms
64:	learn: 14.6123806	total: 1.62s	remaining: 870ms
65:	learn: 14.4744916	total: 1.64s	remaining: 844ms
66:	learn: 14.3212717	total: 1.66s	remaining: 817ms
67:	learn: 14.1768047	total: 1.69s	remaining: 795ms
68:	learn: 14.0387344	total: 1.71s	remaining: 768ms
69:	learn: 13.8987579	total: 1.73s	remaining: 743ms
70:	learn: 13.7825740	total: 1.76s	remaining: 717ms
71:	learn: 13.6818548	total: 1.78s	remaining: 695ms
72:	learn: 13.5356993	total: 1.81s	remaining: 670ms
73:	learn: 13.4408704	total: 1.83s	remaining: 645ms
74:	learn: 13.2992218	total: 1.86s	remaining: 620ms
75:	learn: 13.1547092	total: 1.88s	remaining: 594ms
76:	learn: 13.0800189	total: 1.9s	remaining: 569ms
77:	learn: 12.9434711	total: 1.93s	remaining: 543ms
78:	learn: 12.8327325	total: 1.96s	remaining: 520ms
79:	learn: 12.7238946	total: 1.98s	remaining: 494ms
80:	learn: 12.6229528	total: 2.01s	remaining: 471ms
81:	learn: 12.5216078	total: 2.03s	remaining: 446ms
82:	learn: 12.4182254	total: 2.05s	remaining: 421ms
83:	learn: 12.3097978	total: 2.07s	remaining: 395ms
84:	learn: 12.1852056	total: 2.1s	remaining: 370ms
85:	learn: 12.0739627	total: 2.12s	remaining: 345ms
86:	learn: 11.9475583	total: 2.14s	remaining: 319ms
87:	learn: 11.8403806	total: 2.16s	remaining: 294ms
88:	learn: 11.7294124	total: 2.19s	remaining: 271ms
89:	learn: 11.6395689	total: 2.22s	remaining: 247ms
90:	learn: 11.5510643	total: 2.25s	remaining: 222ms
91:	learn: 11.4455301	total: 2.27s	remaining: 197ms
92:	learn: 11.3368661	total: 2.29s	remaining: 173ms
93:	learn: 11.2270796	total: 2.32s	remaining: 148ms
94:	learn: 11.1168414	total: 2.34s	remaining: 123ms
95:	learn: 11.0310985	total: 2.36s	remaining: 98.4ms
96:	learn: 10.9735185	total: 2.38s	remaining: 73.7ms
97:	learn: 10.8575874	total: 2.4s	remaining: 49ms
98:	learn: 10.7816173	total: 2.43s	remaining: 24.5ms
99:	learn: 10.7111737	total: 2.46s	remaining: 0us
0:	learn: 27.6871645	total: 5.8ms	remaining: 575ms
1:	learn: 27.3312003	total: 10.6ms	remaining: 518ms
2:	learn: 26.9359558	total: 15.2ms	remaining: 493ms
3:	learn: 26.6055364	total: 19.9ms	remaining: 478ms
4:	learn: 26.1664924	total: 25ms	remaining: 475ms
5:	learn: 25.8515393	total: 30.1ms	remaining: 471ms
6:	learn: 25.4620036	total: 34.8ms	remaining: 462ms
7:	learn: 25.1669741	total: 39.9ms	remaining: 459ms
8:	learn: 24.8455454	total: 45.1ms	remaining: 456ms
9:	learn: 24.5106323	total: 50.3ms	remaining: 452ms
10:	learn: 24.1915228	total: 55.5ms	remaining: 449ms
11:	learn: 23.9076053	total: 60.8ms	remaining: 446ms
12:	learn: 23.6692445	total: 65.8ms	remaining: 440ms
13:	learn: 23.4343504	total: 70.6ms	remaining: 434ms
14:	learn: 23.2425280	total: 75.6ms	remaining: 429ms
15:	learn: 22.9254142	total: 80.9ms	remaining: 425ms
16:	learn: 22.6495489	total: 85.8ms	remaining: 419ms
17:	learn: 22.4343705	total: 90.6ms	remaining: 413ms
18:	learn: 22.2154202	total: 95.7ms	remaining: 408ms
19:	learn: 22.0592712	total: 101ms	remaining: 406ms
20:	learn: 21.7971944	total: 106ms	remaining: 401ms
21:	learn: 21.6128930	total: 112ms	remaining: 397ms
22:	learn: 21.3882946	total: 117ms	remaining: 391ms
23:	learn: 21.0912570	total: 122ms	remaining: 385ms
24:	learn: 20.8922857	total: 127ms	remaining: 380ms
25:	learn: 20.7150574	total: 136ms	remaining: 386ms
26:	learn: 20.5673183	total: 145ms	remaining: 392ms
27:	learn: 20.4331275	total: 155ms	remaining: 398ms
28:	learn: 20.2782866	total: 164ms	remaining: 401ms
29:	learn: 20.1061525	total: 169ms	remaining: 395ms
30:	learn: 19.9225948	total: 175ms	remaining: 390ms
31:	learn: 19.7809193	total: 181ms	remaining: 384ms
32:	learn: 19.6057771	total: 186ms	remaining: 378ms
33:	learn: 19.4391243	total: 192ms	remaining: 373ms
34:	learn: 19.2234365	total: 198ms	remaining: 368ms
35:	learn: 19.0214424	total: 204ms	remaining: 363ms
36:	learn: 18.8990643	total: 211ms	remaining: 360ms
37:	learn: 18.7473635	total: 217ms	remaining: 354ms
38:	learn: 18.6125192	total: 222ms	remaining: 348ms
39:	learn: 18.4977949	total: 228ms	remaining: 342ms
40:	learn: 18.3914568	total: 234ms	remaining: 336ms
41:	learn: 18.2541544	total: 239ms	remaining: 330ms
42:	learn: 18.1038984	total: 244ms	remaining: 323ms
43:	learn: 17.9706172	total: 249ms	remaining: 316ms
44:	learn: 17.8198810	total: 254ms	remaining: 310ms
45:	learn: 17.7102597	total: 258ms	remaining: 303ms
46:	learn: 17.6148228	total: 263ms	remaining: 297ms
47:	learn: 17.5115365	total: 269ms	remaining: 291ms
48:	learn: 17.3884162	total: 274ms	remaining: 285ms
49:	learn: 17.2857632	total: 279ms	remaining: 279ms
50:	learn: 17.1618843	total: 284ms	remaining: 273ms
51:	learn: 17.0529601	total: 289ms	remaining: 267ms
52:	learn: 16.9330273	total: 294ms	remaining: 261ms
53:	learn: 16.8206672	total: 299ms	remaining: 255ms
54:	learn: 16.7080356	total: 304ms	remaining: 249ms
55:	learn: 16.5874354	total: 309ms	remaining: 243ms
56:	learn: 16.4929860	total: 314ms	remaining: 237ms
57:	learn: 16.4269419	total: 320ms	remaining: 231ms
58:	learn: 16.3474026	total: 325ms	remaining: 226ms
59:	learn: 16.2515784	total: 335ms	remaining: 223ms
60:	learn: 16.1743901	total: 343ms	remaining: 219ms
61:	learn: 16.0389930	total: 349ms	remaining: 214ms
62:	learn: 15.9671636	total: 355ms	remaining: 209ms
63:	learn: 15.8928486	total: 361ms	remaining: 203ms
64:	learn: 15.8303841	total: 366ms	remaining: 197ms
65:	learn: 15.7612266	total: 371ms	remaining: 191ms
66:	learn: 15.6811172	total: 377ms	remaining: 185ms
67:	learn: 15.6262138	total: 382ms	remaining: 180ms
68:	learn: 15.5662508	total: 387ms	remaining: 174ms
69:	learn: 15.4804354	total: 392ms	remaining: 168ms
70:	learn: 15.4054915	total: 397ms	remaining: 162ms
71:	learn: 15.3271396	total: 402ms	remaining: 156ms
72:	learn: 15.2828359	total: 407ms	remaining: 150ms
73:	learn: 15.2197404	total: 412ms	remaining: 145ms
74:	learn: 15.1315902	total: 417ms	remaining: 139ms
75:	learn: 15.0780523	total: 421ms	remaining: 133ms
76:	learn: 14.9959155	total: 426ms	remaining: 127ms
77:	learn: 14.9265008	total: 431ms	remaining: 122ms
78:	learn: 14.8570189	total: 436ms	remaining: 116ms
79:	learn: 14.8060372	total: 441ms	remaining: 110ms
80:	learn: 14.7294676	total: 446ms	remaining: 105ms
81:	learn: 14.6708309	total: 451ms	remaining: 99ms
82:	learn: 14.5765370	total: 456ms	remaining: 93.3ms
83:	learn: 14.5312713	total: 461ms	remaining: 87.8ms
84:	learn: 14.4830327	total: 466ms	remaining: 82.2ms
85:	learn: 14.4296247	total: 471ms	remaining: 76.6ms
86:	learn: 14.3381470	total: 476ms	remaining: 71.1ms
87:	learn: 14.2638093	total: 481ms	remaining: 65.6ms
88:	learn: 14.2288435	total: 486ms	remaining: 60.1ms
89:	learn: 14.1489273	total: 491ms	remaining: 54.6ms
90:	learn: 14.0937923	total: 497ms	remaining: 49.1ms
91:	learn: 14.0334062	total: 502ms	remaining: 43.6ms
92:	learn: 13.9854696	total: 507ms	remaining: 38.2ms
93:	learn: 13.9444203	total: 513ms	remaining: 32.7ms
94:	learn: 13.9101523	total: 518ms	remaining: 27.3ms
95:	learn: 13.8460655	total: 523ms	remaining: 21.8ms
96:	learn: 13.7809420	total: 533ms	remaining: 16.5ms
97:	learn: 13.7270532	total: 541ms	remaining: 11ms
98:	learn: 13.6891300	total: 551ms	remaining: 5.57ms
99:	learn: 13.6569696	total: 559ms	remaining: 0us
0:	learn: 42.9754370	total: 6.49ms	remaining: 643ms
1:	learn: 42.2613272	total: 11.7ms	remaining: 572ms
2:	learn: 41.4729969	total: 16.4ms	remaining: 531ms
3:	learn: 40.7127004	total: 21.2ms	remaining: 509ms
4:	learn: 39.7775109	total: 26.1ms	remaining: 496ms
5:	learn: 39.1736663	total: 31.1ms	remaining: 488ms
6:	learn: 38.2981109	total: 35.9ms	remaining: 477ms
7:	learn: 37.5352984	total: 40.9ms	remaining: 471ms
8:	learn: 36.7771474	total: 45.7ms	remaining: 463ms
9:	learn: 36.0581366	total: 50.5ms	remaining: 455ms
10:	learn: 35.3542706	total: 55.6ms	remaining: 450ms
11:	learn: 34.6937007	total: 60.2ms	remaining: 441ms
12:	learn: 34.0408035	total: 65.2ms	remaining: 436ms
13:	learn: 33.3460240	total: 69.9ms	remaining: 430ms
14:	learn: 32.8086243	total: 74.6ms	remaining: 423ms
15:	learn: 32.1934462	total: 79.6ms	remaining: 418ms
16:	learn: 31.6465519	total: 84.4ms	remaining: 412ms
17:	learn: 31.2161293	total: 89.2ms	remaining: 406ms
18:	learn: 30.6730548	total: 94.3ms	remaining: 402ms
19:	learn: 30.3153659	total: 99.4ms	remaining: 398ms
20:	learn: 29.7661420	total: 104ms	remaining: 393ms
21:	learn: 29.2095664	total: 109ms	remaining: 388ms
22:	learn: 28.7509592	total: 115ms	remaining: 384ms
23:	learn: 28.4347528	total: 120ms	remaining: 378ms
24:	learn: 28.0551654	total: 125ms	remaining: 374ms
25:	learn: 27.7295952	total: 145ms	remaining: 413ms
26:	learn: 27.2329225	total: 152ms	remaining: 411ms
27:	learn: 26.9970607	total: 158ms	remaining: 406ms
28:	learn: 26.6596544	total: 164ms	remaining: 401ms
29:	learn: 26.2633576	total: 169ms	remaining: 394ms
30:	learn: 25.9761623	total: 174ms	remaining: 387ms
31:	learn: 25.6177371	total: 179ms	remaining: 380ms
32:	learn: 25.2165933	total: 184ms	remaining: 374ms
33:	learn: 24.8012870	total: 189ms	remaining: 367ms
34:	learn: 24.4772532	total: 194ms	remaining: 361ms
35:	learn: 24.1560359	total: 207ms	remaining: 368ms
36:	learn: 23.9688812	total: 212ms	remaining: 361ms
37:	learn: 23.6907607	total: 217ms	remaining: 354ms
38:	learn: 23.3885772	total: 222ms	remaining: 346ms
39:	learn: 23.2234939	total: 226ms	remaining: 339ms
40:	learn: 22.9785026	total: 231ms	remaining: 332ms
41:	learn: 22.6827268	total: 236ms	remaining: 326ms
42:	learn: 22.4564360	total: 241ms	remaining: 320ms
43:	learn: 22.2517827	total: 246ms	remaining: 313ms
44:	learn: 21.9858709	total: 251ms	remaining: 306ms
45:	learn: 21.7595870	total: 255ms	remaining: 300ms
46:	learn: 21.5929957	total: 260ms	remaining: 293ms
47:	learn: 21.4071752	total: 265ms	remaining: 287ms
48:	learn: 21.2186470	total: 270ms	remaining: 281ms
49:	learn: 21.0691824	total: 275ms	remaining: 275ms
50:	learn: 20.8921347	total: 280ms	remaining: 269ms
51:	learn: 20.6834229	total: 285ms	remaining: 264ms
52:	learn: 20.4718988	total: 291ms	remaining: 258ms
53:	learn: 20.3413889	total: 297ms	remaining: 253ms
54:	learn: 20.1785464	total: 303ms	remaining: 248ms
55:	learn: 19.9824314	total: 308ms	remaining: 242ms
56:	learn: 19.8217596	total: 318ms	remaining: 240ms
57:	learn: 19.6318474	total: 327ms	remaining: 237ms
58:	learn: 19.4962236	total: 335ms	remaining: 233ms
59:	learn: 19.3114985	total: 342ms	remaining: 228ms
60:	learn: 19.2181156	total: 349ms	remaining: 223ms
61:	learn: 19.0689614	total: 355ms	remaining: 218ms
62:	learn: 18.9563267	total: 362ms	remaining: 212ms
63:	learn: 18.8343083	total: 367ms	remaining: 207ms
64:	learn: 18.7050033	total: 373ms	remaining: 201ms
65:	learn: 18.6014163	total: 379ms	remaining: 195ms
66:	learn: 18.4910692	total: 385ms	remaining: 189ms
67:	learn: 18.3935194	total: 390ms	remaining: 184ms
68:	learn: 18.2825842	total: 397ms	remaining: 178ms
69:	learn: 18.1519267	total: 402ms	remaining: 172ms
70:	learn: 18.0527651	total: 408ms	remaining: 167ms
71:	learn: 17.9770106	total: 414ms	remaining: 161ms
72:	learn: 17.9151628	total: 420ms	remaining: 155ms
73:	learn: 17.7957486	total: 426ms	remaining: 150ms
74:	learn: 17.7025765	total: 431ms	remaining: 144ms
75:	learn: 17.5957242	total: 438ms	remaining: 138ms
76:	learn: 17.4683244	total: 444ms	remaining: 133ms
77:	learn: 17.3415729	total: 450ms	remaining: 127ms
78:	learn: 17.2886896	total: 455ms	remaining: 121ms
79:	learn: 17.2280922	total: 460ms	remaining: 115ms
80:	learn: 17.1188996	total: 465ms	remaining: 109ms
81:	learn: 17.0236450	total: 470ms	remaining: 103ms
82:	learn: 16.9046661	total: 475ms	remaining: 97.3ms
83:	learn: 16.7930633	total: 480ms	remaining: 91.5ms
84:	learn: 16.6870100	total: 485ms	remaining: 85.7ms
85:	learn: 16.5512107	total: 490ms	remaining: 79.8ms
86:	learn: 16.4353400	total: 495ms	remaining: 74ms
87:	learn: 16.3256461	total: 501ms	remaining: 68.3ms
88:	learn: 16.2968057	total: 506ms	remaining: 62.6ms
89:	learn: 16.2136078	total: 512ms	remaining: 56.8ms
90:	learn: 16.1596096	total: 517ms	remaining: 51.1ms
91:	learn: 16.1164050	total: 523ms	remaining: 45.5ms
92:	learn: 16.0660454	total: 528ms	remaining: 39.7ms
93:	learn: 16.0380611	total: 535ms	remaining: 34.1ms
94:	learn: 15.9494441	total: 544ms	remaining: 28.6ms
95:	learn: 15.8874840	total: 552ms	remaining: 23ms
96:	learn: 15.8288234	total: 559ms	remaining: 17.3ms
97:	learn: 15.7562787	total: 565ms	remaining: 11.5ms
98:	learn: 15.6822678	total: 571ms	remaining: 5.77ms
99:	learn: 15.5901500	total: 576ms	remaining: 0us
0:	learn: 46.4504871	total: 5.48ms	remaining: 542ms
1:	learn: 45.7240114	total: 10.2ms	remaining: 501ms
2:	learn: 45.0308025	total: 15.3ms	remaining: 495ms
3:	learn: 44.1111169	total: 20.2ms	remaining: 484ms
4:	learn: 43.3925352	total: 25.4ms	remaining: 483ms
5:	learn: 42.7856354	total: 30.6ms	remaining: 480ms
6:	learn: 42.1998170	total: 36.2ms	remaining: 480ms
7:	learn: 41.3532708	total: 41.5ms	remaining: 477ms
8:	learn: 40.7314571	total: 47.1ms	remaining: 476ms
9:	learn: 39.9838066	total: 52.5ms	remaining: 473ms
10:	learn: 39.4168243	total: 57.6ms	remaining: 466ms
11:	learn: 39.0148769	total: 63.2ms	remaining: 463ms
12:	learn: 38.3055855	total: 68.4ms	remaining: 458ms
13:	learn: 37.7343198	total: 73.3ms	remaining: 451ms
14:	learn: 37.4177463	total: 79.1ms	remaining: 448ms
15:	learn: 36.9043298	total: 84.4ms	remaining: 443ms
16:	learn: 36.3139174	total: 89.9ms	remaining: 439ms
17:	learn: 35.7200448	total: 95.5ms	remaining: 435ms
18:	learn: 35.3763394	total: 101ms	remaining: 431ms
19:	learn: 34.7666728	total: 107ms	remaining: 428ms
20:	learn: 34.2642890	total: 116ms	remaining: 438ms
21:	learn: 33.8196936	total: 127ms	remaining: 450ms
22:	learn: 33.4205669	total: 135ms	remaining: 453ms
23:	learn: 32.8565493	total: 144ms	remaining: 458ms
24:	learn: 32.5287132	total: 151ms	remaining: 454ms
25:	learn: 32.2142064	total: 158ms	remaining: 449ms
26:	learn: 31.9258854	total: 164ms	remaining: 443ms
27:	learn: 31.4083665	total: 170ms	remaining: 438ms
28:	learn: 31.1615620	total: 177ms	remaining: 433ms
29:	learn: 30.6948867	total: 183ms	remaining: 426ms
30:	learn: 30.3185108	total: 188ms	remaining: 419ms
31:	learn: 29.9245223	total: 194ms	remaining: 413ms
32:	learn: 29.6683643	total: 200ms	remaining: 405ms
33:	learn: 29.3868143	total: 206ms	remaining: 399ms
34:	learn: 29.1105699	total: 212ms	remaining: 393ms
35:	learn: 28.8274848	total: 217ms	remaining: 386ms
36:	learn: 28.5478288	total: 223ms	remaining: 379ms
37:	learn: 28.2355121	total: 228ms	remaining: 372ms
38:	learn: 28.0182564	total: 233ms	remaining: 364ms
39:	learn: 27.7654405	total: 238ms	remaining: 357ms
40:	learn: 27.5720477	total: 243ms	remaining: 350ms
41:	learn: 27.3182782	total: 248ms	remaining: 343ms
42:	learn: 26.9504431	total: 253ms	remaining: 336ms
43:	learn: 26.7281906	total: 259ms	remaining: 329ms
44:	learn: 26.5390008	total: 264ms	remaining: 323ms
45:	learn: 26.3781338	total: 269ms	remaining: 316ms
46:	learn: 26.1763177	total: 274ms	remaining: 309ms
47:	learn: 25.9417647	total: 280ms	remaining: 303ms
48:	learn: 25.7528045	total: 285ms	remaining: 296ms
49:	learn: 25.6336897	total: 290ms	remaining: 290ms
50:	learn: 25.4800426	total: 296ms	remaining: 284ms
51:	learn: 25.2895681	total: 301ms	remaining: 278ms
52:	learn: 25.0827111	total: 306ms	remaining: 272ms
53:	learn: 24.7987678	total: 313ms	remaining: 266ms
54:	learn: 24.6309982	total: 322ms	remaining: 263ms
55:	learn: 24.3526776	total: 330ms	remaining: 259ms
56:	learn: 24.1689125	total: 337ms	remaining: 254ms
57:	learn: 23.9802039	total: 343ms	remaining: 248ms
58:	learn: 23.8059432	total: 349ms	remaining: 242ms
59:	learn: 23.6006403	total: 354ms	remaining: 236ms
60:	learn: 23.2948382	total: 359ms	remaining: 230ms
61:	learn: 23.1338922	total: 365ms	remaining: 224ms
62:	learn: 22.9581269	total: 370ms	remaining: 217ms
63:	learn: 22.8263127	total: 376ms	remaining: 211ms
64:	learn: 22.6966006	total: 381ms	remaining: 205ms
65:	learn: 22.6012389	total: 386ms	remaining: 199ms
66:	learn: 22.4220244	total: 391ms	remaining: 193ms
67:	learn: 22.3148342	total: 396ms	remaining: 187ms
68:	learn: 22.1543592	total: 401ms	remaining: 180ms
69:	learn: 22.0614050	total: 407ms	remaining: 174ms
70:	learn: 21.9134025	total: 412ms	remaining: 168ms
71:	learn: 21.8198101	total: 417ms	remaining: 162ms
72:	learn: 21.6944173	total: 422ms	remaining: 156ms
73:	learn: 21.4727420	total: 428ms	remaining: 150ms
74:	learn: 21.3000560	total: 433ms	remaining: 144ms
75:	learn: 21.1884740	total: 439ms	remaining: 139ms
76:	learn: 21.0321317	total: 444ms	remaining: 133ms
77:	learn: 20.9371793	total: 449ms	remaining: 127ms
78:	learn: 20.6800341	total: 455ms	remaining: 121ms
79:	learn: 20.5629904	total: 460ms	remaining: 115ms
80:	learn: 20.4098217	total: 465ms	remaining: 109ms
81:	learn: 20.2139261	total: 470ms	remaining: 103ms
82:	learn: 20.1024260	total: 475ms	remaining: 97.3ms
83:	learn: 19.9835855	total: 480ms	remaining: 91.5ms
84:	learn: 19.9018880	total: 486ms	remaining: 85.8ms
85:	learn: 19.7819843	total: 491ms	remaining: 80ms
86:	learn: 19.6352780	total: 497ms	remaining: 74.3ms
87:	learn: 19.4888328	total: 503ms	remaining: 68.6ms
88:	learn: 19.4365121	total: 510ms	remaining: 63ms
89:	learn: 19.3427430	total: 519ms	remaining: 57.6ms
90:	learn: 19.2884907	total: 530ms	remaining: 52.5ms
91:	learn: 19.1898932	total: 537ms	remaining: 46.7ms
92:	learn: 19.0775661	total: 544ms	remaining: 41ms
93:	learn: 19.0334055	total: 550ms	remaining: 35.1ms
94:	learn: 18.9381916	total: 556ms	remaining: 29.3ms
95:	learn: 18.8471198	total: 562ms	remaining: 23.4ms
96:	learn: 18.7136478	total: 569ms	remaining: 17.6ms
97:	learn: 18.6633102	total: 576ms	remaining: 11.7ms
98:	learn: 18.5887516	total: 582ms	remaining: 5.88ms
99:	learn: 18.4841597	total: 588ms	remaining: 0us
0:	learn: 46.2172336	total: 5.54ms	remaining: 549ms
1:	learn: 45.4248871	total: 11ms	remaining: 537ms
2:	learn: 44.8702937	total: 16.2ms	remaining: 522ms
3:	learn: 44.2019212	total: 22ms	remaining: 529ms
4:	learn: 43.4805210	total: 27ms	remaining: 514ms
5:	learn: 42.7336269	total: 32.3ms	remaining: 506ms
6:	learn: 42.0396670	total: 37.9ms	remaining: 503ms
7:	learn: 41.5668459	total: 43ms	remaining: 495ms
8:	learn: 40.8999125	total: 48.4ms	remaining: 489ms
9:	learn: 40.3358512	total: 53.9ms	remaining: 486ms
10:	learn: 39.7511489	total: 59.1ms	remaining: 478ms
11:	learn: 39.0775416	total: 64.3ms	remaining: 471ms
12:	learn: 38.5204735	total: 73.9ms	remaining: 494ms
13:	learn: 38.2087509	total: 82.2ms	remaining: 505ms
14:	learn: 37.7259552	total: 89.1ms	remaining: 505ms
15:	learn: 37.1646397	total: 94.2ms	remaining: 495ms
16:	learn: 36.7093520	total: 100ms	remaining: 489ms
17:	learn: 36.2212308	total: 105ms	remaining: 478ms
18:	learn: 35.8682156	total: 110ms	remaining: 469ms
19:	learn: 35.6026383	total: 115ms	remaining: 459ms
20:	learn: 35.1739725	total: 119ms	remaining: 450ms
21:	learn: 34.5938003	total: 125ms	remaining: 442ms
22:	learn: 34.1479056	total: 130ms	remaining: 434ms
23:	learn: 33.8759356	total: 134ms	remaining: 426ms
24:	learn: 33.2898426	total: 139ms	remaining: 418ms
25:	learn: 32.9220237	total: 144ms	remaining: 411ms
26:	learn: 32.4324374	total: 149ms	remaining: 404ms
27:	learn: 32.1726327	total: 154ms	remaining: 396ms
28:	learn: 31.8020879	total: 159ms	remaining: 389ms
29:	learn: 31.4329781	total: 164ms	remaining: 382ms
30:	learn: 30.9995282	total: 169ms	remaining: 376ms
31:	learn: 30.6815978	total: 174ms	remaining: 369ms
32:	learn: 30.2991029	total: 178ms	remaining: 362ms
33:	learn: 30.0354202	total: 183ms	remaining: 356ms
34:	learn: 29.7620535	total: 188ms	remaining: 350ms
35:	learn: 29.4552589	total: 193ms	remaining: 343ms
36:	learn: 29.2634399	total: 198ms	remaining: 337ms
37:	learn: 28.8345135	total: 203ms	remaining: 331ms
38:	learn: 28.5551142	total: 208ms	remaining: 325ms
39:	learn: 28.3258809	total: 213ms	remaining: 319ms
40:	learn: 28.0835564	total: 217ms	remaining: 313ms
41:	learn: 27.7517159	total: 222ms	remaining: 307ms
42:	learn: 27.5427595	total: 227ms	remaining: 300ms
43:	learn: 27.3925105	total: 232ms	remaining: 295ms
44:	learn: 27.2377120	total: 236ms	remaining: 289ms
45:	learn: 26.9930398	total: 241ms	remaining: 283ms
46:	learn: 26.7748687	total: 246ms	remaining: 277ms
47:	learn: 26.5856986	total: 251ms	remaining: 272ms
48:	learn: 26.4344153	total: 257ms	remaining: 267ms
49:	learn: 26.3263456	total: 262ms	remaining: 262ms
50:	learn: 26.2048412	total: 267ms	remaining: 257ms
51:	learn: 26.0608546	total: 272ms	remaining: 251ms
52:	learn: 25.9428146	total: 277ms	remaining: 246ms
53:	learn: 25.7578029	total: 286ms	remaining: 243ms
54:	learn: 25.5696792	total: 295ms	remaining: 241ms
55:	learn: 25.3291935	total: 306ms	remaining: 240ms
56:	learn: 25.1388942	total: 313ms	remaining: 236ms
57:	learn: 24.9853945	total: 319ms	remaining: 231ms
58:	learn: 24.8037785	total: 325ms	remaining: 226ms
59:	learn: 24.5326704	total: 331ms	remaining: 220ms
60:	learn: 24.2208240	total: 337ms	remaining: 215ms
61:	learn: 24.0774015	total: 343ms	remaining: 210ms
62:	learn: 23.9705824	total: 348ms	remaining: 205ms
63:	learn: 23.8877665	total: 354ms	remaining: 199ms
64:	learn: 23.7309043	total: 360ms	remaining: 194ms
65:	learn: 23.5820140	total: 365ms	remaining: 188ms
66:	learn: 23.3762012	total: 372ms	remaining: 183ms
67:	learn: 23.2317502	total: 378ms	remaining: 178ms
68:	learn: 23.0868331	total: 383ms	remaining: 172ms
69:	learn: 22.9642758	total: 388ms	remaining: 166ms
70:	learn: 22.8085341	total: 393ms	remaining: 161ms
71:	learn: 22.6834294	total: 398ms	remaining: 155ms
72:	learn: 22.6152922	total: 403ms	remaining: 149ms
73:	learn: 22.3675145	total: 408ms	remaining: 143ms
74:	learn: 22.3023338	total: 412ms	remaining: 137ms
75:	learn: 22.1866833	total: 417ms	remaining: 132ms
76:	learn: 22.0163130	total: 422ms	remaining: 126ms
77:	learn: 21.9691306	total: 426ms	remaining: 120ms
78:	learn: 21.9004647	total: 431ms	remaining: 115ms
79:	learn: 21.7931869	total: 436ms	remaining: 109ms
80:	learn: 21.6747916	total: 441ms	remaining: 104ms
81:	learn: 21.5187568	total: 446ms	remaining: 97.9ms
82:	learn: 21.3124880	total: 451ms	remaining: 92.4ms
83:	learn: 21.1979524	total: 456ms	remaining: 86.9ms
84:	learn: 21.1311130	total: 461ms	remaining: 81.4ms
85:	learn: 21.0606062	total: 467ms	remaining: 76ms
86:	learn: 20.9900935	total: 471ms	remaining: 70.4ms
87:	learn: 20.8908054	total: 477ms	remaining: 65ms
88:	learn: 20.8088525	total: 482ms	remaining: 59.6ms
89:	learn: 20.7300955	total: 491ms	remaining: 54.6ms
90:	learn: 20.6130276	total: 500ms	remaining: 49.4ms
91:	learn: 20.5437508	total: 506ms	remaining: 44ms
92:	learn: 20.5029426	total: 512ms	remaining: 38.6ms
93:	learn: 20.4416708	total: 518ms	remaining: 33ms
94:	learn: 20.3917812	total: 522ms	remaining: 27.5ms
95:	learn: 20.3305024	total: 528ms	remaining: 22ms
96:	learn: 20.2375704	total: 533ms	remaining: 16.5ms
97:	learn: 20.1835197	total: 538ms	remaining: 11ms
98:	learn: 20.1246834	total: 543ms	remaining: 5.48ms
99:	learn: 20.0506334	total: 548ms	remaining: 0us
0:	learn: 46.7334648	total: 5.27ms	remaining: 522ms
1:	learn: 46.2069876	total: 10.1ms	remaining: 497ms
2:	learn: 45.3699967	total: 14.7ms	remaining: 474ms
3:	learn: 44.6866787	total: 19.5ms	remaining: 467ms
4:	learn: 43.8536031	total: 24.2ms	remaining: 461ms
5:	learn: 43.4716853	total: 29.1ms	remaining: 455ms
6:	learn: 42.9929637	total: 33.8ms	remaining: 449ms
7:	learn: 42.4952169	total: 38.4ms	remaining: 442ms
8:	learn: 41.7548337	total: 43.1ms	remaining: 436ms
9:	learn: 41.1054415	total: 47.8ms	remaining: 430ms
10:	learn: 40.4827492	total: 52.6ms	remaining: 425ms
11:	learn: 39.7605907	total: 57.3ms	remaining: 421ms
12:	learn: 39.2532558	total: 62.5ms	remaining: 419ms
13:	learn: 38.6572753	total: 67.5ms	remaining: 415ms
14:	learn: 38.2886959	total: 72.4ms	remaining: 410ms
15:	learn: 37.7816612	total: 77.6ms	remaining: 408ms
16:	learn: 37.1680589	total: 82.4ms	remaining: 402ms
17:	learn: 36.5753004	total: 87.6ms	remaining: 399ms
18:	learn: 36.2339458	total: 94.4ms	remaining: 402ms
19:	learn: 35.9159716	total: 103ms	remaining: 410ms
20:	learn: 35.4591743	total: 111ms	remaining: 419ms
21:	learn: 34.8726070	total: 119ms	remaining: 423ms
22:	learn: 34.3903591	total: 128ms	remaining: 428ms
23:	learn: 34.1236827	total: 134ms	remaining: 424ms
24:	learn: 33.8026540	total: 140ms	remaining: 419ms
25:	learn: 33.4594822	total: 146ms	remaining: 414ms
26:	learn: 33.1338910	total: 151ms	remaining: 408ms
27:	learn: 32.8527106	total: 157ms	remaining: 403ms
28:	learn: 32.4923829	total: 162ms	remaining: 397ms
29:	learn: 32.0560533	total: 168ms	remaining: 392ms
30:	learn: 31.6614408	total: 174ms	remaining: 386ms
31:	learn: 31.2796040	total: 179ms	remaining: 381ms
32:	learn: 30.8214741	total: 184ms	remaining: 374ms
33:	learn: 30.5908694	total: 190ms	remaining: 370ms
34:	learn: 30.3637356	total: 196ms	remaining: 365ms
35:	learn: 30.0446511	total: 201ms	remaining: 358ms
36:	learn: 29.8792549	total: 206ms	remaining: 350ms
37:	learn: 29.5488457	total: 210ms	remaining: 343ms
38:	learn: 29.2808568	total: 215ms	remaining: 336ms
39:	learn: 29.0603765	total: 220ms	remaining: 330ms
40:	learn: 28.8272425	total: 224ms	remaining: 323ms
41:	learn: 28.4753580	total: 229ms	remaining: 316ms
42:	learn: 28.2963614	total: 234ms	remaining: 310ms
43:	learn: 28.1054768	total: 238ms	remaining: 304ms
44:	learn: 27.9038093	total: 243ms	remaining: 298ms
45:	learn: 27.6305487	total: 248ms	remaining: 291ms
46:	learn: 27.4457907	total: 253ms	remaining: 285ms
47:	learn: 27.1855957	total: 258ms	remaining: 279ms
48:	learn: 26.9987934	total: 263ms	remaining: 274ms
49:	learn: 26.7881067	total: 269ms	remaining: 269ms
50:	learn: 26.6385231	total: 276ms	remaining: 266ms
51:	learn: 26.4661755	total: 284ms	remaining: 262ms
52:	learn: 26.3331868	total: 291ms	remaining: 258ms
53:	learn: 26.0353476	total: 296ms	remaining: 252ms
54:	learn: 25.8257147	total: 302ms	remaining: 247ms
55:	learn: 25.5924383	total: 308ms	remaining: 242ms
56:	learn: 25.4082209	total: 315ms	remaining: 237ms
57:	learn: 25.2350104	total: 320ms	remaining: 232ms
58:	learn: 25.1789867	total: 324ms	remaining: 225ms
59:	learn: 24.9111359	total: 329ms	remaining: 219ms
60:	learn: 24.6314503	total: 334ms	remaining: 213ms
61:	learn: 24.4297999	total: 338ms	remaining: 207ms
62:	learn: 24.3126171	total: 343ms	remaining: 202ms
63:	learn: 24.1544005	total: 348ms	remaining: 196ms
64:	learn: 24.0197950	total: 352ms	remaining: 190ms
65:	learn: 23.8483087	total: 357ms	remaining: 184ms
66:	learn: 23.6624915	total: 362ms	remaining: 178ms
67:	learn: 23.5068105	total: 366ms	remaining: 172ms
68:	learn: 23.4266187	total: 371ms	remaining: 167ms
69:	learn: 23.3535388	total: 376ms	remaining: 161ms
70:	learn: 23.2477190	total: 381ms	remaining: 156ms
71:	learn: 23.1877634	total: 386ms	remaining: 150ms
72:	learn: 23.1344720	total: 391ms	remaining: 145ms
73:	learn: 22.9498234	total: 396ms	remaining: 139ms
74:	learn: 22.9068295	total: 401ms	remaining: 134ms
75:	learn: 22.7368434	total: 407ms	remaining: 128ms
76:	learn: 22.6084901	total: 412ms	remaining: 123ms
77:	learn: 22.4690295	total: 417ms	remaining: 118ms
78:	learn: 22.3970100	total: 422ms	remaining: 112ms
79:	learn: 22.3025537	total: 427ms	remaining: 107ms
80:	learn: 22.2089293	total: 432ms	remaining: 101ms
81:	learn: 22.0522107	total: 437ms	remaining: 95.8ms
82:	learn: 21.9368213	total: 441ms	remaining: 90.4ms
83:	learn: 21.7968322	total: 446ms	remaining: 85ms
84:	learn: 21.7416164	total: 451ms	remaining: 79.6ms
85:	learn: 21.6031099	total: 455ms	remaining: 74.1ms
86:	learn: 21.4530627	total: 461ms	remaining: 68.9ms
87:	learn: 21.3118417	total: 466ms	remaining: 63.6ms
88:	learn: 21.2760431	total: 472ms	remaining: 58.3ms
89:	learn: 21.2071350	total: 477ms	remaining: 53ms
90:	learn: 21.1051001	total: 482ms	remaining: 47.7ms
91:	learn: 21.0246142	total: 487ms	remaining: 42.4ms
92:	learn: 20.9834999	total: 497ms	remaining: 37.4ms
93:	learn: 20.8989393	total: 509ms	remaining: 32.5ms
94:	learn: 20.8262231	total: 518ms	remaining: 27.3ms
95:	learn: 20.7369110	total: 526ms	remaining: 21.9ms
96:	learn: 20.6409587	total: 532ms	remaining: 16.5ms
97:	learn: 20.5553641	total: 539ms	remaining: 11ms
98:	learn: 20.4317232	total: 544ms	remaining: 5.5ms
99:	learn: 20.3708681	total: 551ms	remaining: 0us
0:	learn: 27.3441720	total: 20ms	remaining: 1.98s
1:	learn: 26.7159954	total: 40.5ms	remaining: 1.99s
2:	learn: 26.0850318	total: 60.8ms	remaining: 1.97s
3:	learn: 25.4039656	total: 83.5ms	remaining: 2s
4:	learn: 24.7930659	total: 108ms	remaining: 2.05s
5:	learn: 24.2028590	total: 135ms	remaining: 2.11s
6:	learn: 23.6622902	total: 157ms	remaining: 2.08s
7:	learn: 23.1531175	total: 177ms	remaining: 2.03s
8:	learn: 22.7050792	total: 198ms	remaining: 2s
9:	learn: 22.2151788	total: 219ms	remaining: 1.97s
10:	learn: 21.7708844	total: 241ms	remaining: 1.95s
11:	learn: 21.2587174	total: 261ms	remaining: 1.92s
12:	learn: 20.7559870	total: 284ms	remaining: 1.9s
13:	learn: 20.3040842	total: 307ms	remaining: 1.88s
14:	learn: 19.9019524	total: 337ms	remaining: 1.91s
15:	learn: 19.5186012	total: 365ms	remaining: 1.92s
16:	learn: 19.1521621	total: 389ms	remaining: 1.9s
17:	learn: 18.7652180	total: 412ms	remaining: 1.88s
18:	learn: 18.4446446	total: 436ms	remaining: 1.86s
19:	learn: 18.0977650	total: 456ms	remaining: 1.82s
20:	learn: 17.7791328	total: 475ms	remaining: 1.79s
21:	learn: 17.4777648	total: 498ms	remaining: 1.76s
22:	learn: 17.1794361	total: 518ms	remaining: 1.73s
23:	learn: 16.8685032	total: 539ms	remaining: 1.71s
24:	learn: 16.6274695	total: 568ms	remaining: 1.7s
25:	learn: 16.3071099	total: 591ms	remaining: 1.68s
26:	learn: 16.0249663	total: 611ms	remaining: 1.65s
27:	learn: 15.7535309	total: 632ms	remaining: 1.63s
28:	learn: 15.4777235	total: 653ms	remaining: 1.6s
29:	learn: 15.2410825	total: 673ms	remaining: 1.57s
30:	learn: 15.0133002	total: 693ms	remaining: 1.54s
31:	learn: 14.8018912	total: 714ms	remaining: 1.52s
32:	learn: 14.5701546	total: 735ms	remaining: 1.49s
33:	learn: 14.3799060	total: 758ms	remaining: 1.47s
34:	learn: 14.0975095	total: 789ms	remaining: 1.47s
35:	learn: 13.8873493	total: 813ms	remaining: 1.45s
36:	learn: 13.6812023	total: 836ms	remaining: 1.42s
37:	learn: 13.4943017	total: 858ms	remaining: 1.4s
38:	learn: 13.3224094	total: 881ms	remaining: 1.38s
39:	learn: 13.0967901	total: 901ms	remaining: 1.35s
40:	learn: 12.9138190	total: 922ms	remaining: 1.33s
41:	learn: 12.7764458	total: 943ms	remaining: 1.3s
42:	learn: 12.6593656	total: 964ms	remaining: 1.28s
43:	learn: 12.5051105	total: 994ms	remaining: 1.26s
44:	learn: 12.3057146	total: 1.02s	remaining: 1.24s
45:	learn: 12.1487674	total: 1.04s	remaining: 1.22s
46:	learn: 11.9614903	total: 1.06s	remaining: 1.2s
47:	learn: 11.7921265	total: 1.08s	remaining: 1.17s
48:	learn: 11.6572640	total: 1.1s	remaining: 1.15s
49:	learn: 11.5251463	total: 1.13s	remaining: 1.13s
50:	learn: 11.3789931	total: 1.15s	remaining: 1.1s
51:	learn: 11.2691375	total: 1.17s	remaining: 1.08s
52:	learn: 11.1161131	total: 1.2s	remaining: 1.07s
53:	learn: 11.0246399	total: 1.23s	remaining: 1.04s
54:	learn: 10.9152420	total: 1.25s	remaining: 1.02s
55:	learn: 10.7746769	total: 1.27s	remaining: 1s
56:	learn: 10.6222917	total: 1.3s	remaining: 978ms
57:	learn: 10.5096115	total: 1.32s	remaining: 955ms
58:	learn: 10.3857030	total: 1.34s	remaining: 930ms
59:	learn: 10.2789057	total: 1.36s	remaining: 908ms
60:	learn: 10.1490749	total: 1.39s	remaining: 886ms
61:	learn: 10.0553291	total: 1.42s	remaining: 869ms
62:	learn: 9.9351043	total: 1.44s	remaining: 847ms
63:	learn: 9.8245261	total: 1.47s	remaining: 824ms
64:	learn: 9.7207577	total: 1.49s	remaining: 801ms
65:	learn: 9.5920661	total: 1.51s	remaining: 778ms
66:	learn: 9.4832767	total: 1.53s	remaining: 755ms
67:	learn: 9.3724149	total: 1.55s	remaining: 731ms
68:	learn: 9.2459801	total: 1.58s	remaining: 710ms
69:	learn: 9.1740635	total: 1.61s	remaining: 688ms
70:	learn: 9.1015730	total: 1.63s	remaining: 666ms
71:	learn: 9.0196460	total: 1.65s	remaining: 643ms
72:	learn: 8.9458977	total: 1.68s	remaining: 620ms
73:	learn: 8.8434400	total: 1.7s	remaining: 598ms
74:	learn: 8.7495151	total: 1.73s	remaining: 575ms
75:	learn: 8.6521348	total: 1.75s	remaining: 552ms
76:	learn: 8.5654483	total: 1.77s	remaining: 529ms
77:	learn: 8.4965765	total: 1.79s	remaining: 506ms
78:	learn: 8.4308736	total: 1.82s	remaining: 485ms
79:	learn: 8.3675601	total: 1.85s	remaining: 462ms
80:	learn: 8.3193887	total: 1.87s	remaining: 438ms
81:	learn: 8.2507990	total: 1.89s	remaining: 415ms
82:	learn: 8.1583259	total: 1.91s	remaining: 392ms
83:	learn: 8.0995902	total: 1.93s	remaining: 369ms
84:	learn: 8.0236655	total: 1.96s	remaining: 345ms
85:	learn: 7.9634698	total: 1.98s	remaining: 322ms
86:	learn: 7.9109081	total: 2s	remaining: 299ms
87:	learn: 7.8385006	total: 2.02s	remaining: 276ms
88:	learn: 7.7859488	total: 2.05s	remaining: 254ms
89:	learn: 7.7270142	total: 2.08s	remaining: 231ms
90:	learn: 7.6774253	total: 2.1s	remaining: 208ms
91:	learn: 7.6126552	total: 2.12s	remaining: 184ms
92:	learn: 7.5392178	total: 2.14s	remaining: 161ms
93:	learn: 7.4745082	total: 2.16s	remaining: 138ms
94:	learn: 7.4106939	total: 2.19s	remaining: 115ms
95:	learn: 7.3573350	total: 2.21s	remaining: 91.9ms
96:	learn: 7.2889777	total: 2.23s	remaining: 68.9ms
97:	learn: 7.2204939	total: 2.25s	remaining: 46ms
98:	learn: 7.1646465	total: 2.28s	remaining: 23ms
99:	learn: 7.1204610	total: 2.3s	remaining: 0us
0:	learn: 42.5494645	total: 19.6ms	remaining: 1.94s
1:	learn: 41.2913513	total: 39.4ms	remaining: 1.93s
2:	learn: 40.1676527	total: 60.2ms	remaining: 1.95s
3:	learn: 38.7664819	total: 79.7ms	remaining: 1.91s
4:	learn: 37.5407492	total: 102ms	remaining: 1.95s
5:	learn: 36.4295331	total: 126ms	remaining: 1.97s
6:	learn: 35.2895967	total: 157ms	remaining: 2.08s
7:	learn: 34.1884539	total: 179ms	remaining: 2.06s
8:	learn: 33.1817690	total: 201ms	remaining: 2.03s
9:	learn: 32.3518195	total: 224ms	remaining: 2.02s
10:	learn: 31.4837515	total: 246ms	remaining: 1.99s
11:	learn: 30.7255972	total: 268ms	remaining: 1.96s
12:	learn: 29.9298648	total: 288ms	remaining: 1.93s
13:	learn: 29.0574249	total: 309ms	remaining: 1.9s
14:	learn: 28.4097384	total: 331ms	remaining: 1.88s
15:	learn: 27.5317445	total: 360ms	remaining: 1.89s
16:	learn: 26.7911946	total: 384ms	remaining: 1.87s
17:	learn: 26.1103465	total: 404ms	remaining: 1.84s
18:	learn: 25.5295903	total: 423ms	remaining: 1.8s
19:	learn: 24.8544960	total: 445ms	remaining: 1.78s
20:	learn: 24.2772682	total: 468ms	remaining: 1.76s
21:	learn: 23.6936944	total: 488ms	remaining: 1.73s
22:	learn: 23.1300945	total: 511ms	remaining: 1.71s
23:	learn: 22.5333494	total: 534ms	remaining: 1.69s
24:	learn: 22.0553465	total: 561ms	remaining: 1.68s
25:	learn: 21.6253628	total: 587ms	remaining: 1.67s
26:	learn: 21.1396219	total: 610ms	remaining: 1.65s
27:	learn: 20.7382905	total: 633ms	remaining: 1.63s
28:	learn: 20.3233915	total: 657ms	remaining: 1.61s
29:	learn: 19.9323992	total: 679ms	remaining: 1.58s
30:	learn: 19.5650439	total: 699ms	remaining: 1.56s
31:	learn: 19.2165649	total: 720ms	remaining: 1.53s
32:	learn: 18.8890056	total: 742ms	remaining: 1.5s
33:	learn: 18.5523762	total: 765ms	remaining: 1.49s
34:	learn: 18.2666116	total: 794ms	remaining: 1.48s
35:	learn: 17.9216926	total: 819ms	remaining: 1.46s
36:	learn: 17.6118879	total: 842ms	remaining: 1.43s
37:	learn: 17.2653313	total: 863ms	remaining: 1.41s
38:	learn: 16.9946585	total: 885ms	remaining: 1.38s
39:	learn: 16.6842506	total: 906ms	remaining: 1.36s
40:	learn: 16.4102287	total: 927ms	remaining: 1.33s
41:	learn: 16.2288795	total: 948ms	remaining: 1.31s
42:	learn: 15.9623692	total: 971ms	remaining: 1.29s
43:	learn: 15.7308231	total: 995ms	remaining: 1.27s
44:	learn: 15.4695555	total: 1.03s	remaining: 1.25s
45:	learn: 15.2706809	total: 1.05s	remaining: 1.24s
46:	learn: 15.0182699	total: 1.08s	remaining: 1.21s
47:	learn: 14.7702088	total: 1.1s	remaining: 1.19s
48:	learn: 14.6303566	total: 1.12s	remaining: 1.17s
49:	learn: 14.4038016	total: 1.15s	remaining: 1.15s
50:	learn: 14.2309807	total: 1.17s	remaining: 1.12s
51:	learn: 14.0308425	total: 1.19s	remaining: 1.1s
52:	learn: 13.8201931	total: 1.22s	remaining: 1.08s
53:	learn: 13.6070078	total: 1.24s	remaining: 1.06s
54:	learn: 13.4230690	total: 1.26s	remaining: 1.03s
55:	learn: 13.2368649	total: 1.29s	remaining: 1.01s
56:	learn: 13.0449556	total: 1.31s	remaining: 987ms
57:	learn: 12.8375669	total: 1.33s	remaining: 963ms
58:	learn: 12.6795194	total: 1.35s	remaining: 938ms
59:	learn: 12.5197211	total: 1.37s	remaining: 914ms
60:	learn: 12.4011717	total: 1.39s	remaining: 890ms
61:	learn: 12.2396104	total: 1.42s	remaining: 869ms
62:	learn: 12.0647878	total: 1.45s	remaining: 850ms
63:	learn: 11.9247719	total: 1.48s	remaining: 830ms
64:	learn: 11.7923634	total: 1.5s	remaining: 808ms
65:	learn: 11.6628246	total: 1.52s	remaining: 785ms
66:	learn: 11.5688935	total: 1.55s	remaining: 762ms
67:	learn: 11.4345056	total: 1.57s	remaining: 739ms
68:	learn: 11.3136955	total: 1.59s	remaining: 714ms
69:	learn: 11.2040357	total: 1.61s	remaining: 690ms
70:	learn: 11.1067773	total: 1.63s	remaining: 667ms
71:	learn: 10.9728105	total: 1.66s	remaining: 646ms
72:	learn: 10.8338607	total: 1.69s	remaining: 624ms
73:	learn: 10.7202016	total: 1.71s	remaining: 600ms
74:	learn: 10.5983746	total: 1.73s	remaining: 576ms
75:	learn: 10.4882458	total: 1.75s	remaining: 552ms
76:	learn: 10.3827604	total: 1.77s	remaining: 528ms
77:	learn: 10.2485726	total: 1.79s	remaining: 505ms
78:	learn: 10.1524716	total: 1.81s	remaining: 481ms
79:	learn: 10.0765127	total: 1.83s	remaining: 458ms
80:	learn: 9.9617067	total: 1.85s	remaining: 435ms
81:	learn: 9.8357151	total: 1.88s	remaining: 412ms
82:	learn: 9.7311644	total: 1.91s	remaining: 391ms
83:	learn: 9.6314802	total: 1.93s	remaining: 368ms
84:	learn: 9.5137958	total: 1.95s	remaining: 345ms
85:	learn: 9.4420485	total: 1.97s	remaining: 321ms
86:	learn: 9.3959294	total: 2s	remaining: 298ms
87:	learn: 9.3057742	total: 2.02s	remaining: 275ms
88:	learn: 9.2031484	total: 2.04s	remaining: 252ms
89:	learn: 9.0996948	total: 2.06s	remaining: 229ms
90:	learn: 9.0492278	total: 2.08s	remaining: 206ms
91:	learn: 8.9400377	total: 2.11s	remaining: 183ms
92:	learn: 8.8904458	total: 2.13s	remaining: 160ms
93:	learn: 8.8102982	total: 2.15s	remaining: 137ms
94:	learn: 8.7445451	total: 2.17s	remaining: 114ms
95:	learn: 8.6796106	total: 2.19s	remaining: 91.5ms
96:	learn: 8.5875790	total: 2.21s	remaining: 68.5ms
97:	learn: 8.5086871	total: 2.23s	remaining: 45.6ms
98:	learn: 8.4547244	total: 2.26s	remaining: 22.8ms
99:	learn: 8.3841281	total: 2.28s	remaining: 0us
0:	learn: 46.2258117	total: 2.97ms	remaining: 294ms
1:	learn: 45.1253456	total: 25.8ms	remaining: 1.26s
2:	learn: 43.7311767	total: 47.7ms	remaining: 1.54s
3:	learn: 42.4252819	total: 70ms	remaining: 1.68s
4:	learn: 41.1436655	total: 92.8ms	remaining: 1.76s
5:	learn: 40.0337136	total: 113ms	remaining: 1.77s
6:	learn: 38.9102686	total: 135ms	remaining: 1.79s
7:	learn: 37.7859737	total: 157ms	remaining: 1.81s
8:	learn: 36.7646905	total: 180ms	remaining: 1.82s
9:	learn: 35.9495481	total: 209ms	remaining: 1.88s
10:	learn: 35.0558185	total: 231ms	remaining: 1.87s
11:	learn: 34.1958090	total: 253ms	remaining: 1.85s
12:	learn: 33.3514013	total: 273ms	remaining: 1.82s
13:	learn: 32.3317086	total: 293ms	remaining: 1.8s
14:	learn: 31.5611046	total: 312ms	remaining: 1.77s
15:	learn: 30.6373573	total: 332ms	remaining: 1.74s
16:	learn: 29.8883669	total: 352ms	remaining: 1.72s
17:	learn: 29.2985952	total: 374ms	remaining: 1.71s
18:	learn: 28.6360550	total: 399ms	remaining: 1.7s
19:	learn: 27.9757056	total: 429ms	remaining: 1.71s
20:	learn: 27.2585835	total: 454ms	remaining: 1.71s
21:	learn: 26.6366391	total: 478ms	remaining: 1.69s
22:	learn: 26.1055455	total: 502ms	remaining: 1.68s
23:	learn: 25.4961568	total: 527ms	remaining: 1.67s
24:	learn: 25.1037435	total: 550ms	remaining: 1.65s
25:	learn: 24.5258982	total: 573ms	remaining: 1.63s
26:	learn: 23.9974764	total: 597ms	remaining: 1.61s
27:	learn: 23.5108419	total: 628ms	remaining: 1.61s
28:	learn: 23.0835773	total: 652ms	remaining: 1.59s
29:	learn: 22.5744350	total: 674ms	remaining: 1.57s
30:	learn: 22.1357783	total: 695ms	remaining: 1.55s
31:	learn: 21.7316226	total: 717ms	remaining: 1.52s
32:	learn: 21.4082899	total: 739ms	remaining: 1.5s
33:	learn: 20.9640138	total: 760ms	remaining: 1.48s
34:	learn: 20.6379417	total: 783ms	remaining: 1.45s
35:	learn: 20.2688010	total: 805ms	remaining: 1.43s
36:	learn: 19.8479214	total: 833ms	remaining: 1.42s
37:	learn: 19.5684638	total: 860ms	remaining: 1.4s
38:	learn: 19.1826919	total: 883ms	remaining: 1.38s
39:	learn: 18.9583308	total: 907ms	remaining: 1.36s
40:	learn: 18.6736002	total: 931ms	remaining: 1.34s
41:	learn: 18.3525328	total: 955ms	remaining: 1.32s
42:	learn: 17.9954191	total: 977ms	remaining: 1.29s
43:	learn: 17.6991520	total: 1000ms	remaining: 1.27s
44:	learn: 17.3697888	total: 1.02s	remaining: 1.25s
45:	learn: 17.0519636	total: 1.04s	remaining: 1.23s
46:	learn: 16.7829795	total: 1.08s	remaining: 1.21s
47:	learn: 16.5108695	total: 1.1s	remaining: 1.19s
48:	learn: 16.2366816	total: 1.12s	remaining: 1.17s
49:	learn: 15.9947350	total: 1.14s	remaining: 1.14s
50:	learn: 15.7513561	total: 1.16s	remaining: 1.12s
51:	learn: 15.4328481	total: 1.19s	remaining: 1.09s
52:	learn: 15.2497907	total: 1.21s	remaining: 1.07s
53:	learn: 15.0417076	total: 1.23s	remaining: 1.05s
54:	learn: 14.8861891	total: 1.25s	remaining: 1.02s
55:	learn: 14.6497794	total: 1.28s	remaining: 1.01s
56:	learn: 14.3664771	total: 1.31s	remaining: 986ms
57:	learn: 14.2358168	total: 1.33s	remaining: 965ms
58:	learn: 14.0712722	total: 1.36s	remaining: 943ms
59:	learn: 13.9191649	total: 1.38s	remaining: 921ms
60:	learn: 13.7032356	total: 1.4s	remaining: 898ms
61:	learn: 13.5029041	total: 1.43s	remaining: 874ms
62:	learn: 13.3568908	total: 1.45s	remaining: 852ms
63:	learn: 13.1332696	total: 1.48s	remaining: 832ms
64:	learn: 13.0323137	total: 1.5s	remaining: 810ms
65:	learn: 12.8622078	total: 1.52s	remaining: 786ms
66:	learn: 12.7088186	total: 1.54s	remaining: 761ms
67:	learn: 12.5524646	total: 1.57s	remaining: 737ms
68:	learn: 12.4646011	total: 1.58s	remaining: 712ms
69:	learn: 12.3900687	total: 1.61s	remaining: 689ms
70:	learn: 12.2908367	total: 1.63s	remaining: 665ms
71:	learn: 12.1294405	total: 1.65s	remaining: 641ms
72:	learn: 12.0359996	total: 1.67s	remaining: 617ms
73:	learn: 11.9244352	total: 1.69s	remaining: 594ms
74:	learn: 11.8312038	total: 1.72s	remaining: 574ms
75:	learn: 11.6622123	total: 1.75s	remaining: 552ms
76:	learn: 11.5959180	total: 1.77s	remaining: 528ms
77:	learn: 11.4538852	total: 1.79s	remaining: 505ms
78:	learn: 11.3700375	total: 1.81s	remaining: 482ms
79:	learn: 11.2101447	total: 1.84s	remaining: 459ms
80:	learn: 11.0614634	total: 1.86s	remaining: 436ms
81:	learn: 10.9029225	total: 1.88s	remaining: 412ms
82:	learn: 10.7792030	total: 1.9s	remaining: 389ms
83:	learn: 10.6279451	total: 1.93s	remaining: 367ms
84:	learn: 10.5530267	total: 1.95s	remaining: 345ms
85:	learn: 10.4577150	total: 1.97s	remaining: 321ms
86:	learn: 10.4076417	total: 2s	remaining: 298ms
87:	learn: 10.3166632	total: 2.02s	remaining: 275ms
88:	learn: 10.2018151	total: 2.04s	remaining: 252ms
89:	learn: 10.0698484	total: 2.06s	remaining: 229ms
90:	learn: 10.0162824	total: 2.08s	remaining: 206ms
91:	learn: 9.9352639	total: 2.1s	remaining: 183ms
92:	learn: 9.8316734	total: 2.12s	remaining: 160ms
93:	learn: 9.7195471	total: 2.14s	remaining: 137ms
94:	learn: 9.5914894	total: 2.17s	remaining: 114ms
95:	learn: 9.5151851	total: 2.2s	remaining: 91.5ms
96:	learn: 9.3911314	total: 2.22s	remaining: 68.7ms
97:	learn: 9.3417706	total: 2.24s	remaining: 45.8ms
98:	learn: 9.2708440	total: 2.27s	remaining: 22.9ms
99:	learn: 9.1660321	total: 2.28s	remaining: 0us
0:	learn: 45.8627255	total: 2.59ms	remaining: 256ms
1:	learn: 44.7432040	total: 26.5ms	remaining: 1.3s
2:	learn: 43.4398568	total: 54.3ms	remaining: 1.75s
3:	learn: 42.1495515	total: 75.7ms	remaining: 1.82s
4:	learn: 40.9712633	total: 95.8ms	remaining: 1.82s
5:	learn: 40.0119591	total: 115ms	remaining: 1.8s
6:	learn: 39.1914360	total: 134ms	remaining: 1.79s
7:	learn: 38.1861536	total: 155ms	remaining: 1.78s
8:	learn: 37.1477128	total: 175ms	remaining: 1.77s
9:	learn: 36.3044702	total: 196ms	remaining: 1.77s
10:	learn: 35.5837917	total: 218ms	remaining: 1.76s
11:	learn: 34.8664158	total: 241ms	remaining: 1.76s
12:	learn: 33.9129833	total: 263ms	remaining: 1.76s
13:	learn: 32.9094642	total: 295ms	remaining: 1.81s
14:	learn: 32.1965787	total: 319ms	remaining: 1.8s
15:	learn: 31.4598238	total: 343ms	remaining: 1.8s
16:	learn: 30.6578027	total: 367ms	remaining: 1.79s
17:	learn: 30.0227468	total: 391ms	remaining: 1.78s
18:	learn: 29.2954728	total: 413ms	remaining: 1.76s
19:	learn: 28.5928084	total: 434ms	remaining: 1.73s
20:	learn: 27.9445984	total: 458ms	remaining: 1.72s
21:	learn: 27.3493298	total: 486ms	remaining: 1.72s
22:	learn: 26.8491966	total: 508ms	remaining: 1.7s
23:	learn: 26.3177453	total: 528ms	remaining: 1.67s
24:	learn: 25.8134533	total: 551ms	remaining: 1.65s
25:	learn: 25.2000018	total: 573ms	remaining: 1.63s
26:	learn: 24.6570461	total: 593ms	remaining: 1.6s
27:	learn: 24.1062982	total: 613ms	remaining: 1.58s
28:	learn: 23.7489370	total: 636ms	remaining: 1.56s
29:	learn: 23.2050536	total: 658ms	remaining: 1.53s
30:	learn: 22.7824379	total: 682ms	remaining: 1.52s
31:	learn: 22.4052655	total: 716ms	remaining: 1.52s
32:	learn: 21.9525639	total: 741ms	remaining: 1.5s
33:	learn: 21.5482900	total: 764ms	remaining: 1.48s
34:	learn: 21.1900983	total: 787ms	remaining: 1.46s
35:	learn: 20.8243957	total: 812ms	remaining: 1.44s
36:	learn: 20.4401288	total: 834ms	remaining: 1.42s
37:	learn: 20.0960622	total: 856ms	remaining: 1.4s
38:	learn: 19.7795108	total: 879ms	remaining: 1.38s
39:	learn: 19.4922451	total: 901ms	remaining: 1.35s
40:	learn: 19.1827582	total: 924ms	remaining: 1.33s
41:	learn: 18.8902445	total: 952ms	remaining: 1.31s
42:	learn: 18.6833086	total: 977ms	remaining: 1.29s
43:	learn: 18.4251972	total: 999ms	remaining: 1.27s
44:	learn: 18.1471037	total: 1.02s	remaining: 1.25s
45:	learn: 17.8420017	total: 1.04s	remaining: 1.22s
46:	learn: 17.6101998	total: 1.06s	remaining: 1.2s
47:	learn: 17.3353656	total: 1.09s	remaining: 1.18s
48:	learn: 17.1194789	total: 1.11s	remaining: 1.15s
49:	learn: 16.8898454	total: 1.13s	remaining: 1.13s
50:	learn: 16.6657497	total: 1.16s	remaining: 1.11s
51:	learn: 16.3832867	total: 1.19s	remaining: 1.09s
52:	learn: 16.2098226	total: 1.21s	remaining: 1.07s
53:	learn: 16.0045707	total: 1.23s	remaining: 1.05s
54:	learn: 15.8512887	total: 1.25s	remaining: 1.03s
55:	learn: 15.6485628	total: 1.28s	remaining: 1s
56:	learn: 15.4841428	total: 1.3s	remaining: 981ms
57:	learn: 15.3383158	total: 1.32s	remaining: 959ms
58:	learn: 15.2056282	total: 1.35s	remaining: 937ms
59:	learn: 15.0698337	total: 1.37s	remaining: 916ms
60:	learn: 14.8487796	total: 1.4s	remaining: 893ms
61:	learn: 14.7255751	total: 1.42s	remaining: 870ms
62:	learn: 14.6100414	total: 1.44s	remaining: 846ms
63:	learn: 14.3864212	total: 1.46s	remaining: 822ms
64:	learn: 14.2800460	total: 1.48s	remaining: 799ms
65:	learn: 14.1017299	total: 1.51s	remaining: 776ms
66:	learn: 13.9655015	total: 1.53s	remaining: 752ms
67:	learn: 13.8065764	total: 1.55s	remaining: 729ms
68:	learn: 13.7473285	total: 1.58s	remaining: 708ms
69:	learn: 13.6967309	total: 1.6s	remaining: 687ms
70:	learn: 13.6253255	total: 1.62s	remaining: 664ms
71:	learn: 13.4974926	total: 1.65s	remaining: 641ms
72:	learn: 13.4142694	total: 1.67s	remaining: 618ms
73:	learn: 13.2902600	total: 1.69s	remaining: 595ms
74:	learn: 13.1816461	total: 1.71s	remaining: 571ms
75:	learn: 13.0809498	total: 1.74s	remaining: 549ms
76:	learn: 12.9772285	total: 1.76s	remaining: 526ms
77:	learn: 12.8413858	total: 1.79s	remaining: 504ms
78:	learn: 12.7615799	total: 1.81s	remaining: 481ms
79:	learn: 12.5808659	total: 1.83s	remaining: 457ms
80:	learn: 12.4938330	total: 1.85s	remaining: 434ms
81:	learn: 12.3745576	total: 1.87s	remaining: 410ms
82:	learn: 12.2474104	total: 1.89s	remaining: 387ms
83:	learn: 12.1582297	total: 1.91s	remaining: 364ms
84:	learn: 12.0528081	total: 1.93s	remaining: 341ms
85:	learn: 11.9483355	total: 1.95s	remaining: 318ms
86:	learn: 11.8683204	total: 1.98s	remaining: 295ms
87:	learn: 11.7680945	total: 2.01s	remaining: 274ms
88:	learn: 11.6635447	total: 2.03s	remaining: 251ms
89:	learn: 11.5775031	total: 2.05s	remaining: 228ms
90:	learn: 11.4860538	total: 2.08s	remaining: 206ms
91:	learn: 11.3584960	total: 2.1s	remaining: 183ms
92:	learn: 11.2180285	total: 2.12s	remaining: 160ms
93:	learn: 11.0996558	total: 2.14s	remaining: 137ms
94:	learn: 10.9688832	total: 2.16s	remaining: 114ms
95:	learn: 10.9205457	total: 2.19s	remaining: 91.1ms
96:	learn: 10.8462783	total: 2.21s	remaining: 68.4ms
97:	learn: 10.7481890	total: 2.23s	remaining: 45.6ms
98:	learn: 10.6396315	total: 2.25s	remaining: 22.8ms
99:	learn: 10.5895308	total: 2.27s	remaining: 0us
0:	learn: 46.2892189	total: 19.5ms	remaining: 1.93s
1:	learn: 44.9732744	total: 39.4ms	remaining: 1.93s
2:	learn: 43.8887345	total: 60.3ms	remaining: 1.95s
3:	learn: 42.6526320	total: 81.4ms	remaining: 1.95s
4:	learn: 41.4812505	total: 113ms	remaining: 2.15s
5:	learn: 40.4431224	total: 139ms	remaining: 2.17s
6:	learn: 39.2936749	total: 161ms	remaining: 2.15s
7:	learn: 38.1961652	total: 185ms	remaining: 2.13s
8:	learn: 37.2194841	total: 209ms	remaining: 2.11s
9:	learn: 36.2518666	total: 231ms	remaining: 2.08s
10:	learn: 35.4919224	total: 253ms	remaining: 2.05s
11:	learn: 34.6975877	total: 275ms	remaining: 2.02s
12:	learn: 33.7869362	total: 297ms	remaining: 1.99s
13:	learn: 33.0646033	total: 319ms	remaining: 1.96s
14:	learn: 32.1821772	total: 349ms	remaining: 1.98s
15:	learn: 31.4340749	total: 371ms	remaining: 1.95s
16:	learn: 30.6504198	total: 394ms	remaining: 1.92s
17:	learn: 30.0090260	total: 417ms	remaining: 1.9s
18:	learn: 29.4233143	total: 439ms	remaining: 1.87s
19:	learn: 28.7661957	total: 460ms	remaining: 1.84s
20:	learn: 28.1570594	total: 483ms	remaining: 1.82s
21:	learn: 27.6140124	total: 506ms	remaining: 1.79s
22:	learn: 27.0130709	total: 528ms	remaining: 1.77s
23:	learn: 26.2648081	total: 560ms	remaining: 1.77s
24:	learn: 25.7963649	total: 587ms	remaining: 1.76s
25:	learn: 25.2713860	total: 610ms	remaining: 1.74s
26:	learn: 24.8080692	total: 634ms	remaining: 1.72s
27:	learn: 24.3042862	total: 659ms	remaining: 1.69s
28:	learn: 23.9097237	total: 682ms	remaining: 1.67s
29:	learn: 23.4953174	total: 705ms	remaining: 1.64s
30:	learn: 23.0484452	total: 728ms	remaining: 1.62s
31:	learn: 22.7100962	total: 758ms	remaining: 1.61s
32:	learn: 22.1662267	total: 781ms	remaining: 1.58s
33:	learn: 21.7339884	total: 803ms	remaining: 1.56s
34:	learn: 21.3699422	total: 823ms	remaining: 1.53s
35:	learn: 21.0249329	total: 844ms	remaining: 1.5s
36:	learn: 20.6187923	total: 865ms	remaining: 1.47s
37:	learn: 20.2401981	total: 885ms	remaining: 1.44s
38:	learn: 19.9712328	total: 907ms	remaining: 1.42s
39:	learn: 19.6429610	total: 930ms	remaining: 1.4s
40:	learn: 19.3281556	total: 958ms	remaining: 1.38s
41:	learn: 19.0925924	total: 985ms	remaining: 1.36s
42:	learn: 18.8118712	total: 1.01s	remaining: 1.34s
43:	learn: 18.5355748	total: 1.03s	remaining: 1.31s
44:	learn: 18.2783929	total: 1.06s	remaining: 1.29s
45:	learn: 17.9915490	total: 1.08s	remaining: 1.27s
46:	learn: 17.7323317	total: 1.1s	remaining: 1.24s
47:	learn: 17.4448307	total: 1.12s	remaining: 1.22s
48:	learn: 17.2419782	total: 1.15s	remaining: 1.19s
49:	learn: 16.9351352	total: 1.17s	remaining: 1.17s
50:	learn: 16.7728723	total: 1.2s	remaining: 1.15s
51:	learn: 16.5718087	total: 1.22s	remaining: 1.13s
52:	learn: 16.4047483	total: 1.24s	remaining: 1.1s
53:	learn: 16.2888950	total: 1.26s	remaining: 1.07s
54:	learn: 16.1353042	total: 1.28s	remaining: 1.05s
55:	learn: 15.9384012	total: 1.3s	remaining: 1.02s
56:	learn: 15.7488511	total: 1.32s	remaining: 999ms
57:	learn: 15.5682846	total: 1.35s	remaining: 975ms
58:	learn: 15.3488716	total: 1.37s	remaining: 951ms
59:	learn: 15.2291272	total: 1.39s	remaining: 928ms
60:	learn: 15.0582519	total: 1.42s	remaining: 910ms
61:	learn: 14.8478458	total: 1.45s	remaining: 886ms
62:	learn: 14.6663416	total: 1.47s	remaining: 862ms
63:	learn: 14.4830825	total: 1.49s	remaining: 839ms
64:	learn: 14.3300895	total: 1.51s	remaining: 816ms
65:	learn: 14.1168590	total: 1.53s	remaining: 791ms
66:	learn: 13.9783298	total: 1.55s	remaining: 766ms
67:	learn: 13.8132857	total: 1.57s	remaining: 741ms
68:	learn: 13.7050863	total: 1.6s	remaining: 717ms
69:	learn: 13.5742501	total: 1.63s	remaining: 697ms
70:	learn: 13.4851362	total: 1.65s	remaining: 674ms
71:	learn: 13.3300610	total: 1.67s	remaining: 649ms
72:	learn: 13.2223060	total: 1.69s	remaining: 625ms
73:	learn: 13.0706731	total: 1.71s	remaining: 601ms
74:	learn: 12.9178099	total: 1.73s	remaining: 577ms
75:	learn: 12.7954645	total: 1.75s	remaining: 553ms
76:	learn: 12.7133688	total: 1.77s	remaining: 529ms
77:	learn: 12.5745537	total: 1.8s	remaining: 507ms
78:	learn: 12.4765302	total: 1.82s	remaining: 484ms
79:	learn: 12.3609145	total: 1.84s	remaining: 461ms
80:	learn: 12.2437759	total: 1.87s	remaining: 438ms
81:	learn: 12.1583763	total: 1.89s	remaining: 415ms
82:	learn: 12.0202500	total: 1.91s	remaining: 392ms
83:	learn: 11.9125166	total: 1.94s	remaining: 369ms
84:	learn: 11.8100729	total: 1.96s	remaining: 345ms
85:	learn: 11.7509521	total: 1.98s	remaining: 322ms
86:	learn: 11.6448436	total: 2s	remaining: 299ms
87:	learn: 11.5550170	total: 2.02s	remaining: 275ms
88:	learn: 11.4624708	total: 2.05s	remaining: 253ms
89:	learn: 11.3547761	total: 2.07s	remaining: 230ms
90:	learn: 11.2513910	total: 2.09s	remaining: 207ms
91:	learn: 11.1414483	total: 2.11s	remaining: 184ms
92:	learn: 11.0742264	total: 2.13s	remaining: 161ms
93:	learn: 10.9721772	total: 2.16s	remaining: 138ms
94:	learn: 10.9118054	total: 2.18s	remaining: 115ms
95:	learn: 10.8465290	total: 2.2s	remaining: 91.6ms
96:	learn: 10.7451745	total: 2.22s	remaining: 68.7ms
97:	learn: 10.6173565	total: 2.25s	remaining: 45.9ms
98:	learn: 10.5562158	total: 2.27s	remaining: 23ms
99:	learn: 10.4564960	total: 2.3s	remaining: 0us
0:	learn: 27.3351083	total: 23.7ms	remaining: 2.35s
1:	learn: 26.7523848	total: 46.8ms	remaining: 2.29s
2:	learn: 26.1326580	total: 70.3ms	remaining: 2.27s
3:	learn: 25.5584244	total: 95.1ms	remaining: 2.28s
4:	learn: 25.0458748	total: 126ms	remaining: 2.4s
5:	learn: 24.4868837	total: 151ms	remaining: 2.36s
6:	learn: 23.9306999	total: 176ms	remaining: 2.33s
7:	learn: 23.4799808	total: 201ms	remaining: 2.31s
8:	learn: 22.9510347	total: 225ms	remaining: 2.27s
9:	learn: 22.4529079	total: 250ms	remaining: 2.25s
10:	learn: 21.9320739	total: 276ms	remaining: 2.23s
11:	learn: 21.4729295	total: 301ms	remaining: 2.21s
12:	learn: 21.0885550	total: 334ms	remaining: 2.24s
13:	learn: 20.7063206	total: 359ms	remaining: 2.21s
14:	learn: 20.3539530	total: 385ms	remaining: 2.18s
15:	learn: 20.0071947	total: 410ms	remaining: 2.15s
16:	learn: 19.6579830	total: 436ms	remaining: 2.13s
17:	learn: 19.2450502	total: 461ms	remaining: 2.1s
18:	learn: 18.8010420	total: 487ms	remaining: 2.08s
19:	learn: 18.4055273	total: 523ms	remaining: 2.09s
20:	learn: 18.0395642	total: 558ms	remaining: 2.1s
21:	learn: 17.6568400	total: 586ms	remaining: 2.08s
22:	learn: 17.4284559	total: 612ms	remaining: 2.05s
23:	learn: 17.0957528	total: 638ms	remaining: 2.02s
24:	learn: 16.7636157	total: 663ms	remaining: 1.99s
25:	learn: 16.4987969	total: 689ms	remaining: 1.96s
26:	learn: 16.2204177	total: 715ms	remaining: 1.93s
27:	learn: 15.9525124	total: 751ms	remaining: 1.93s
28:	learn: 15.5905943	total: 776ms	remaining: 1.9s
29:	learn: 15.3628633	total: 801ms	remaining: 1.87s
30:	learn: 15.1420693	total: 826ms	remaining: 1.84s
31:	learn: 14.9419461	total: 851ms	remaining: 1.81s
32:	learn: 14.7386592	total: 877ms	remaining: 1.78s
33:	learn: 14.5398023	total: 901ms	remaining: 1.75s
34:	learn: 14.2644206	total: 926ms	remaining: 1.72s
35:	learn: 14.0168503	total: 952ms	remaining: 1.69s
36:	learn: 13.7687637	total: 987ms	remaining: 1.68s
37:	learn: 13.5855913	total: 1.01s	remaining: 1.66s
38:	learn: 13.3656902	total: 1.04s	remaining: 1.63s
39:	learn: 13.2111716	total: 1.07s	remaining: 1.6s
40:	learn: 13.0360149	total: 1.09s	remaining: 1.57s
41:	learn: 12.8789444	total: 1.12s	remaining: 1.54s
42:	learn: 12.6680179	total: 1.14s	remaining: 1.51s
43:	learn: 12.4892268	total: 1.17s	remaining: 1.49s
44:	learn: 12.3275828	total: 1.2s	remaining: 1.47s
45:	learn: 12.2035682	total: 1.23s	remaining: 1.44s
46:	learn: 12.0777397	total: 1.25s	remaining: 1.42s
47:	learn: 11.9055552	total: 1.28s	remaining: 1.39s
48:	learn: 11.7465481	total: 1.3s	remaining: 1.36s
49:	learn: 11.5961200	total: 1.33s	remaining: 1.33s
50:	learn: 11.4305519	total: 1.35s	remaining: 1.3s
51:	learn: 11.2794033	total: 1.39s	remaining: 1.28s
52:	learn: 11.1586950	total: 1.42s	remaining: 1.25s
53:	learn: 11.0432937	total: 1.44s	remaining: 1.23s
54:	learn: 10.9094838	total: 1.47s	remaining: 1.2s
55:	learn: 10.7713451	total: 1.49s	remaining: 1.17s
56:	learn: 10.6664177	total: 1.52s	remaining: 1.15s
57:	learn: 10.5600117	total: 1.54s	remaining: 1.12s
58:	learn: 10.4438974	total: 1.57s	remaining: 1.09s
59:	learn: 10.3294224	total: 1.6s	remaining: 1.06s
60:	learn: 10.2510301	total: 1.63s	remaining: 1.04s
61:	learn: 10.1363264	total: 1.65s	remaining: 1.01s
62:	learn: 10.0415049	total: 1.68s	remaining: 985ms
63:	learn: 9.9499833	total: 1.7s	remaining: 957ms
64:	learn: 9.8774263	total: 1.73s	remaining: 930ms
65:	learn: 9.7458853	total: 1.75s	remaining: 902ms
66:	learn: 9.6733951	total: 1.78s	remaining: 875ms
67:	learn: 9.5861856	total: 1.8s	remaining: 849ms
68:	learn: 9.4524193	total: 1.84s	remaining: 826ms
69:	learn: 9.3501165	total: 1.86s	remaining: 799ms
70:	learn: 9.3092902	total: 1.89s	remaining: 772ms
71:	learn: 9.2244222	total: 1.92s	remaining: 745ms
72:	learn: 9.1554253	total: 1.94s	remaining: 718ms
73:	learn: 9.1098892	total: 1.97s	remaining: 691ms
74:	learn: 9.0210213	total: 1.99s	remaining: 665ms
75:	learn: 8.9303181	total: 2.02s	remaining: 638ms
76:	learn: 8.8489769	total: 2.05s	remaining: 613ms
77:	learn: 8.7651580	total: 2.08s	remaining: 586ms
78:	learn: 8.7126796	total: 2.1s	remaining: 559ms
79:	learn: 8.6404554	total: 2.13s	remaining: 532ms
80:	learn: 8.5844756	total: 2.15s	remaining: 505ms
81:	learn: 8.5234333	total: 2.17s	remaining: 477ms
82:	learn: 8.4298762	total: 2.2s	remaining: 450ms
83:	learn: 8.3483002	total: 2.22s	remaining: 423ms
84:	learn: 8.2670647	total: 2.26s	remaining: 399ms
85:	learn: 8.1917398	total: 2.29s	remaining: 372ms
86:	learn: 8.1073642	total: 2.31s	remaining: 345ms
87:	learn: 8.0633288	total: 2.33s	remaining: 318ms
88:	learn: 8.0107997	total: 2.36s	remaining: 292ms
89:	learn: 7.9563547	total: 2.38s	remaining: 265ms
90:	learn: 7.8811408	total: 2.41s	remaining: 238ms
91:	learn: 7.8096107	total: 2.43s	remaining: 212ms
92:	learn: 7.7481700	total: 2.46s	remaining: 185ms
93:	learn: 7.6847843	total: 2.49s	remaining: 159ms
94:	learn: 7.6252335	total: 2.52s	remaining: 132ms
95:	learn: 7.5593148	total: 2.54s	remaining: 106ms
96:	learn: 7.5042331	total: 2.56s	remaining: 79.3ms
97:	learn: 7.4553707	total: 2.59s	remaining: 52.8ms
98:	learn: 7.4035691	total: 2.61s	remaining: 26.4ms
99:	learn: 7.3457537	total: 2.64s	remaining: 0us
0:	learn: 42.5901652	total: 27ms	remaining: 2.67s
1:	learn: 41.2917733	total: 51.2ms	remaining: 2.51s
2:	learn: 40.0285549	total: 75.7ms	remaining: 2.45s
3:	learn: 38.9051734	total: 99.6ms	remaining: 2.39s
4:	learn: 37.7712063	total: 124ms	remaining: 2.36s
5:	learn: 36.6826884	total: 148ms	remaining: 2.32s
6:	learn: 35.6341048	total: 172ms	remaining: 2.29s
7:	learn: 34.5035449	total: 196ms	remaining: 2.25s
8:	learn: 33.5636424	total: 229ms	remaining: 2.31s
9:	learn: 32.5970644	total: 254ms	remaining: 2.28s
10:	learn: 31.8528815	total: 278ms	remaining: 2.25s
11:	learn: 31.0330095	total: 302ms	remaining: 2.22s
12:	learn: 30.3119851	total: 327ms	remaining: 2.19s
13:	learn: 29.5212022	total: 350ms	remaining: 2.15s
14:	learn: 28.7182657	total: 374ms	remaining: 2.12s
15:	learn: 28.0433195	total: 398ms	remaining: 2.09s
16:	learn: 27.2966576	total: 423ms	remaining: 2.06s
17:	learn: 26.5122856	total: 458ms	remaining: 2.08s
18:	learn: 25.8998213	total: 484ms	remaining: 2.06s
19:	learn: 25.2416026	total: 510ms	remaining: 2.04s
20:	learn: 24.6399819	total: 534ms	remaining: 2.01s
21:	learn: 24.0372756	total: 558ms	remaining: 1.98s
22:	learn: 23.4553733	total: 582ms	remaining: 1.95s
23:	learn: 22.9027871	total: 608ms	remaining: 1.93s
24:	learn: 22.4470878	total: 639ms	remaining: 1.92s
25:	learn: 21.9143721	total: 664ms	remaining: 1.89s
26:	learn: 21.4979516	total: 688ms	remaining: 1.86s
27:	learn: 21.0867622	total: 712ms	remaining: 1.83s
28:	learn: 20.6187419	total: 735ms	remaining: 1.8s
29:	learn: 20.1662373	total: 759ms	remaining: 1.77s
30:	learn: 19.8225041	total: 784ms	remaining: 1.74s
31:	learn: 19.4539400	total: 808ms	remaining: 1.72s
32:	learn: 19.1127000	total: 832ms	remaining: 1.69s
33:	learn: 18.7767435	total: 867ms	remaining: 1.68s
34:	learn: 18.4038779	total: 893ms	remaining: 1.66s
35:	learn: 18.0021121	total: 917ms	remaining: 1.63s
36:	learn: 17.6673419	total: 942ms	remaining: 1.6s
37:	learn: 17.3562137	total: 967ms	remaining: 1.58s
38:	learn: 17.0128082	total: 991ms	remaining: 1.55s
39:	learn: 16.7572783	total: 1.01s	remaining: 1.52s
40:	learn: 16.4883778	total: 1.04s	remaining: 1.5s
41:	learn: 16.1756364	total: 1.07s	remaining: 1.48s
42:	learn: 15.9150506	total: 1.1s	remaining: 1.46s
43:	learn: 15.6787555	total: 1.13s	remaining: 1.44s
44:	learn: 15.3862120	total: 1.16s	remaining: 1.41s
45:	learn: 15.1512250	total: 1.18s	remaining: 1.39s
46:	learn: 14.9410960	total: 1.21s	remaining: 1.36s
47:	learn: 14.7086321	total: 1.24s	remaining: 1.34s
48:	learn: 14.5065360	total: 1.27s	remaining: 1.32s
49:	learn: 14.3007466	total: 1.3s	remaining: 1.3s
50:	learn: 14.0972724	total: 1.34s	remaining: 1.29s
51:	learn: 13.8793525	total: 1.37s	remaining: 1.26s
52:	learn: 13.6381311	total: 1.4s	remaining: 1.24s
53:	learn: 13.4603568	total: 1.42s	remaining: 1.21s
54:	learn: 13.2856920	total: 1.45s	remaining: 1.19s
55:	learn: 13.1350779	total: 1.48s	remaining: 1.16s
56:	learn: 13.0110083	total: 1.51s	remaining: 1.14s
57:	learn: 12.8405210	total: 1.54s	remaining: 1.12s
58:	learn: 12.6793938	total: 1.58s	remaining: 1.09s
59:	learn: 12.5497475	total: 1.6s	remaining: 1.07s
60:	learn: 12.4319334	total: 1.63s	remaining: 1.04s
61:	learn: 12.2780964	total: 1.66s	remaining: 1.01s
62:	learn: 12.1187174	total: 1.68s	remaining: 989ms
63:	learn: 11.9635081	total: 1.71s	remaining: 962ms
64:	learn: 11.8366366	total: 1.75s	remaining: 940ms
65:	learn: 11.6598347	total: 1.78s	remaining: 917ms
66:	learn: 11.5227416	total: 1.81s	remaining: 890ms
67:	learn: 11.4058818	total: 1.84s	remaining: 864ms
68:	learn: 11.2627892	total: 1.86s	remaining: 837ms
69:	learn: 11.1415094	total: 1.89s	remaining: 811ms
70:	learn: 11.0703329	total: 1.92s	remaining: 783ms
71:	learn: 10.9568944	total: 1.95s	remaining: 757ms
72:	learn: 10.8314078	total: 1.97s	remaining: 730ms
73:	learn: 10.7320013	total: 2.01s	remaining: 708ms
74:	learn: 10.6191666	total: 2.04s	remaining: 680ms
75:	learn: 10.5156798	total: 2.07s	remaining: 653ms
76:	learn: 10.4174442	total: 2.09s	remaining: 625ms
77:	learn: 10.3318165	total: 2.12s	remaining: 598ms
78:	learn: 10.2300435	total: 2.15s	remaining: 571ms
79:	learn: 10.1665911	total: 2.17s	remaining: 544ms
80:	learn: 10.1030585	total: 2.21s	remaining: 518ms
81:	learn: 10.0254875	total: 2.25s	remaining: 493ms
82:	learn: 9.9387640	total: 2.27s	remaining: 466ms
83:	learn: 9.8289920	total: 2.3s	remaining: 439ms
84:	learn: 9.7629500	total: 2.33s	remaining: 412ms
85:	learn: 9.6778611	total: 2.36s	remaining: 384ms
86:	learn: 9.5920617	total: 2.39s	remaining: 357ms
87:	learn: 9.4931297	total: 2.42s	remaining: 330ms
88:	learn: 9.4010604	total: 2.45s	remaining: 303ms
89:	learn: 9.3328614	total: 2.48s	remaining: 276ms
90:	learn: 9.2409094	total: 2.51s	remaining: 248ms
91:	learn: 9.1214245	total: 2.54s	remaining: 221ms
92:	learn: 9.0795335	total: 2.56s	remaining: 193ms
93:	learn: 8.9777250	total: 2.59s	remaining: 165ms
94:	learn: 8.9059891	total: 2.62s	remaining: 138ms
95:	learn: 8.8343294	total: 2.65s	remaining: 111ms
96:	learn: 8.7237295	total: 2.68s	remaining: 83ms
97:	learn: 8.6401509	total: 2.72s	remaining: 55.5ms
98:	learn: 8.5735108	total: 2.75s	remaining: 27.8ms
99:	learn: 8.5084579	total: 2.78s	remaining: 0us
0:	learn: 46.1633714	total: 29.1ms	remaining: 2.88s
1:	learn: 44.7904617	total: 61.2ms	remaining: 3s
2:	learn: 43.5292386	total: 87.7ms	remaining: 2.84s
3:	learn: 42.3776226	total: 114ms	remaining: 2.73s
4:	learn: 41.1726533	total: 140ms	remaining: 2.67s
5:	learn: 40.0256490	total: 167ms	remaining: 2.62s
6:	learn: 39.0318588	total: 201ms	remaining: 2.67s
7:	learn: 38.0361181	total: 228ms	remaining: 2.62s
8:	learn: 37.0398789	total: 255ms	remaining: 2.58s
9:	learn: 36.0525089	total: 282ms	remaining: 2.54s
10:	learn: 35.0926830	total: 319ms	remaining: 2.58s
11:	learn: 34.1467022	total: 349ms	remaining: 2.56s
12:	learn: 33.5625454	total: 377ms	remaining: 2.52s
13:	learn: 32.7993162	total: 404ms	remaining: 2.48s
14:	learn: 32.1179593	total: 438ms	remaining: 2.48s
15:	learn: 31.5382898	total: 466ms	remaining: 2.45s
16:	learn: 30.8398862	total: 494ms	remaining: 2.41s
17:	learn: 30.1060070	total: 523ms	remaining: 2.38s
18:	learn: 29.3826415	total: 555ms	remaining: 2.37s
19:	learn: 28.5809579	total: 581ms	remaining: 2.32s
20:	learn: 28.0104942	total: 607ms	remaining: 2.28s
21:	learn: 27.5189566	total: 634ms	remaining: 2.25s
22:	learn: 26.8603656	total: 669ms	remaining: 2.24s
23:	learn: 26.2547050	total: 697ms	remaining: 2.21s
24:	learn: 25.6559137	total: 725ms	remaining: 2.18s
25:	learn: 25.1148352	total: 766ms	remaining: 2.18s
26:	learn: 24.5782363	total: 793ms	remaining: 2.14s
27:	learn: 24.0350871	total: 821ms	remaining: 2.11s
28:	learn: 23.5119480	total: 848ms	remaining: 2.08s
29:	learn: 23.1119795	total: 875ms	remaining: 2.04s
30:	learn: 22.6838288	total: 911ms	remaining: 2.03s
31:	learn: 22.2554624	total: 939ms	remaining: 1.99s
32:	learn: 21.8241578	total: 969ms	remaining: 1.97s
33:	learn: 21.5062830	total: 1s	remaining: 1.94s
34:	learn: 21.0109226	total: 1.03s	remaining: 1.91s
35:	learn: 20.5518606	total: 1.05s	remaining: 1.87s
36:	learn: 20.1195339	total: 1.08s	remaining: 1.84s
37:	learn: 19.7143479	total: 1.11s	remaining: 1.8s
38:	learn: 19.3325253	total: 1.13s	remaining: 1.77s
39:	learn: 19.0310706	total: 1.17s	remaining: 1.75s
40:	learn: 18.7262797	total: 1.21s	remaining: 1.74s
41:	learn: 18.3611836	total: 1.23s	remaining: 1.7s
42:	learn: 17.9960838	total: 1.26s	remaining: 1.67s
43:	learn: 17.7058991	total: 1.29s	remaining: 1.64s
44:	learn: 17.3944673	total: 1.32s	remaining: 1.61s
45:	learn: 17.1283561	total: 1.34s	remaining: 1.58s
46:	learn: 16.8406890	total: 1.37s	remaining: 1.55s
47:	learn: 16.6072061	total: 1.41s	remaining: 1.53s
48:	learn: 16.3697411	total: 1.44s	remaining: 1.5s
49:	learn: 15.9995507	total: 1.47s	remaining: 1.47s
50:	learn: 15.7372570	total: 1.49s	remaining: 1.44s
51:	learn: 15.4840152	total: 1.52s	remaining: 1.4s
52:	learn: 15.2899590	total: 1.55s	remaining: 1.37s
53:	learn: 15.0111064	total: 1.57s	remaining: 1.34s
54:	learn: 14.7504952	total: 1.6s	remaining: 1.31s
55:	learn: 14.5309762	total: 1.64s	remaining: 1.29s
56:	learn: 14.3525677	total: 1.67s	remaining: 1.26s
57:	learn: 14.1816296	total: 1.7s	remaining: 1.23s
58:	learn: 13.9958516	total: 1.73s	remaining: 1.2s
59:	learn: 13.8356735	total: 1.75s	remaining: 1.17s
60:	learn: 13.6499824	total: 1.78s	remaining: 1.14s
61:	learn: 13.4621357	total: 1.81s	remaining: 1.11s
62:	learn: 13.3234970	total: 1.84s	remaining: 1.08s
63:	learn: 13.1407122	total: 1.87s	remaining: 1.05s
64:	learn: 13.0161177	total: 1.9s	remaining: 1.02s
65:	learn: 12.8361175	total: 1.93s	remaining: 995ms
66:	learn: 12.7103117	total: 1.96s	remaining: 965ms
67:	learn: 12.5145429	total: 1.98s	remaining: 934ms
68:	learn: 12.3966318	total: 2.01s	remaining: 904ms
69:	learn: 12.2175623	total: 2.04s	remaining: 874ms
70:	learn: 12.0455583	total: 2.08s	remaining: 848ms
71:	learn: 11.9190589	total: 2.1s	remaining: 818ms
72:	learn: 11.7990452	total: 2.14s	remaining: 791ms
73:	learn: 11.6735331	total: 2.17s	remaining: 761ms
74:	learn: 11.5694753	total: 2.19s	remaining: 731ms
75:	learn: 11.4471422	total: 2.22s	remaining: 701ms
76:	learn: 11.3357642	total: 2.25s	remaining: 672ms
77:	learn: 11.2160164	total: 2.28s	remaining: 643ms
78:	learn: 11.1477947	total: 2.31s	remaining: 613ms
79:	learn: 11.0733969	total: 2.33s	remaining: 583ms
80:	learn: 10.9851608	total: 2.37s	remaining: 555ms
81:	learn: 10.8669537	total: 2.39s	remaining: 526ms
82:	learn: 10.7846130	total: 2.42s	remaining: 496ms
83:	learn: 10.6429068	total: 2.45s	remaining: 466ms
84:	learn: 10.5485368	total: 2.49s	remaining: 439ms
85:	learn: 10.4626750	total: 2.52s	remaining: 410ms
86:	learn: 10.3487863	total: 2.54s	remaining: 380ms
87:	learn: 10.2608682	total: 2.57s	remaining: 351ms
88:	learn: 10.1492862	total: 2.6s	remaining: 322ms
89:	learn: 10.0825429	total: 2.63s	remaining: 292ms
90:	learn: 9.9668337	total: 2.66s	remaining: 263ms
91:	learn: 9.8924239	total: 2.69s	remaining: 234ms
92:	learn: 9.7959729	total: 2.72s	remaining: 205ms
93:	learn: 9.7342503	total: 2.75s	remaining: 175ms
94:	learn: 9.6266181	total: 2.77s	remaining: 146ms
95:	learn: 9.5607316	total: 2.8s	remaining: 117ms
96:	learn: 9.4615938	total: 2.83s	remaining: 87.5ms
97:	learn: 9.3562852	total: 2.86s	remaining: 58.5ms
98:	learn: 9.2518786	total: 2.89s	remaining: 29.2ms
99:	learn: 9.2130065	total: 2.93s	remaining: 0us
0:	learn: 45.6477780	total: 29.3ms	remaining: 2.9s
1:	learn: 44.3885048	total: 56.6ms	remaining: 2.77s
2:	learn: 43.1316502	total: 83.9ms	remaining: 2.71s
3:	learn: 41.8123054	total: 110ms	remaining: 2.64s
4:	learn: 40.7214533	total: 137ms	remaining: 2.6s
5:	learn: 39.6276122	total: 177ms	remaining: 2.77s
6:	learn: 38.6471225	total: 205ms	remaining: 2.72s
7:	learn: 37.7493668	total: 232ms	remaining: 2.67s
8:	learn: 36.7733816	total: 259ms	remaining: 2.61s
9:	learn: 36.1233521	total: 286ms	remaining: 2.57s
10:	learn: 35.5715091	total: 312ms	remaining: 2.53s
11:	learn: 34.6287751	total: 339ms	remaining: 2.48s
12:	learn: 33.8024988	total: 367ms	remaining: 2.45s
13:	learn: 33.0699864	total: 405ms	remaining: 2.49s
14:	learn: 32.2267139	total: 431ms	remaining: 2.44s
15:	learn: 31.4879090	total: 457ms	remaining: 2.4s
16:	learn: 30.6681130	total: 483ms	remaining: 2.36s
17:	learn: 29.9739192	total: 509ms	remaining: 2.32s
18:	learn: 29.3293065	total: 534ms	remaining: 2.27s
19:	learn: 28.5893418	total: 559ms	remaining: 2.24s
20:	learn: 28.0793862	total: 585ms	remaining: 2.2s
21:	learn: 27.5553702	total: 615ms	remaining: 2.18s
22:	learn: 27.0123732	total: 642ms	remaining: 2.15s
23:	learn: 26.3897992	total: 667ms	remaining: 2.11s
24:	learn: 25.7405079	total: 692ms	remaining: 2.08s
25:	learn: 25.2366375	total: 717ms	remaining: 2.04s
26:	learn: 24.8040727	total: 741ms	remaining: 2s
27:	learn: 24.3831145	total: 767ms	remaining: 1.97s
28:	learn: 23.9264258	total: 795ms	remaining: 1.95s
29:	learn: 23.4965665	total: 824ms	remaining: 1.92s
30:	learn: 23.0750907	total: 851ms	remaining: 1.89s
31:	learn: 22.6177456	total: 876ms	remaining: 1.86s
32:	learn: 22.1936903	total: 901ms	remaining: 1.83s
33:	learn: 21.7237373	total: 928ms	remaining: 1.8s
34:	learn: 21.2885821	total: 955ms	remaining: 1.77s
35:	learn: 20.8773820	total: 979ms	remaining: 1.74s
36:	learn: 20.5069022	total: 1s	remaining: 1.71s
37:	learn: 20.1026772	total: 1.03s	remaining: 1.68s
38:	learn: 19.7278063	total: 1.06s	remaining: 1.66s
39:	learn: 19.4576176	total: 1.09s	remaining: 1.64s
40:	learn: 19.1716041	total: 1.12s	remaining: 1.61s
41:	learn: 18.8541728	total: 1.14s	remaining: 1.58s
42:	learn: 18.6411979	total: 1.17s	remaining: 1.54s
43:	learn: 18.3146636	total: 1.19s	remaining: 1.51s
44:	learn: 18.0208582	total: 1.22s	remaining: 1.49s
45:	learn: 17.7344521	total: 1.24s	remaining: 1.46s
46:	learn: 17.4797974	total: 1.28s	remaining: 1.44s
47:	learn: 17.2182299	total: 1.3s	remaining: 1.41s
48:	learn: 16.9607453	total: 1.33s	remaining: 1.38s
49:	learn: 16.7297863	total: 1.35s	remaining: 1.35s
50:	learn: 16.4913674	total: 1.38s	remaining: 1.33s
51:	learn: 16.2886548	total: 1.41s	remaining: 1.3s
52:	learn: 16.0297055	total: 1.44s	remaining: 1.27s
53:	learn: 15.8558289	total: 1.47s	remaining: 1.25s
54:	learn: 15.6256772	total: 1.5s	remaining: 1.23s
55:	learn: 15.4571057	total: 1.52s	remaining: 1.2s
56:	learn: 15.2857211	total: 1.55s	remaining: 1.17s
57:	learn: 15.0790849	total: 1.57s	remaining: 1.14s
58:	learn: 14.8706573	total: 1.6s	remaining: 1.11s
59:	learn: 14.7142314	total: 1.63s	remaining: 1.08s
60:	learn: 14.5574075	total: 1.65s	remaining: 1.05s
61:	learn: 14.3831719	total: 1.68s	remaining: 1.03s
62:	learn: 14.2429846	total: 1.71s	remaining: 1.01s
63:	learn: 14.0982260	total: 1.74s	remaining: 978ms
64:	learn: 13.9793470	total: 1.76s	remaining: 950ms
65:	learn: 13.7843655	total: 1.79s	remaining: 922ms
66:	learn: 13.6382336	total: 1.82s	remaining: 895ms
67:	learn: 13.5395713	total: 1.84s	remaining: 866ms
68:	learn: 13.3797741	total: 1.87s	remaining: 839ms
69:	learn: 13.2910103	total: 1.9s	remaining: 814ms
70:	learn: 13.1587887	total: 1.93s	remaining: 786ms
71:	learn: 13.0464642	total: 1.95s	remaining: 758ms
72:	learn: 12.9189091	total: 1.98s	remaining: 731ms
73:	learn: 12.8056893	total: 2s	remaining: 703ms
74:	learn: 12.6904403	total: 2.02s	remaining: 675ms
75:	learn: 12.5608506	total: 2.05s	remaining: 648ms
76:	learn: 12.4712551	total: 2.08s	remaining: 620ms
77:	learn: 12.3371889	total: 2.11s	remaining: 595ms
78:	learn: 12.2449022	total: 2.14s	remaining: 569ms
79:	learn: 12.2163788	total: 2.17s	remaining: 542ms
80:	learn: 12.1464820	total: 2.19s	remaining: 514ms
81:	learn: 12.0001066	total: 2.22s	remaining: 487ms
82:	learn: 11.8843691	total: 2.24s	remaining: 459ms
83:	learn: 11.7638631	total: 2.27s	remaining: 432ms
84:	learn: 11.6389646	total: 2.29s	remaining: 405ms
85:	learn: 11.5343065	total: 2.32s	remaining: 378ms
86:	learn: 11.4267531	total: 2.35s	remaining: 351ms
87:	learn: 11.3136728	total: 2.38s	remaining: 324ms
88:	learn: 11.2361574	total: 2.4s	remaining: 297ms
89:	learn: 11.1507886	total: 2.43s	remaining: 270ms
90:	learn: 11.0988952	total: 2.45s	remaining: 243ms
91:	learn: 10.9988426	total: 2.48s	remaining: 215ms
92:	learn: 10.9584792	total: 2.5s	remaining: 188ms
93:	learn: 10.8771461	total: 2.53s	remaining: 162ms
94:	learn: 10.8161358	total: 2.56s	remaining: 135ms
95:	learn: 10.7524450	total: 2.59s	remaining: 108ms
96:	learn: 10.6566836	total: 2.61s	remaining: 80.8ms
97:	learn: 10.5550602	total: 2.64s	remaining: 53.8ms
98:	learn: 10.4790583	total: 2.66s	remaining: 26.9ms
99:	learn: 10.4087354	total: 2.69s	remaining: 0us
0:	learn: 46.5398832	total: 26.4ms	remaining: 2.61s
1:	learn: 45.3142618	total: 50.8ms	remaining: 2.49s
2:	learn: 44.0378137	total: 73.9ms	remaining: 2.39s
3:	learn: 42.7976734	total: 98ms	remaining: 2.35s
4:	learn: 41.7080859	total: 122ms	remaining: 2.32s
5:	learn: 40.4513327	total: 146ms	remaining: 2.28s
6:	learn: 39.4903346	total: 170ms	remaining: 2.26s
7:	learn: 38.3767870	total: 194ms	remaining: 2.23s
8:	learn: 37.4056810	total: 229ms	remaining: 2.31s
9:	learn: 36.4947716	total: 252ms	remaining: 2.27s
10:	learn: 35.4421832	total: 277ms	remaining: 2.24s
11:	learn: 34.6183487	total: 291ms	remaining: 2.13s
12:	learn: 33.9603524	total: 316ms	remaining: 2.11s
13:	learn: 33.0635534	total: 339ms	remaining: 2.08s
14:	learn: 32.2067999	total: 363ms	remaining: 2.06s
15:	learn: 31.3961282	total: 389ms	remaining: 2.04s
16:	learn: 30.7113239	total: 419ms	remaining: 2.05s
17:	learn: 29.9919005	total: 445ms	remaining: 2.03s
18:	learn: 29.4016891	total: 469ms	remaining: 2s
19:	learn: 28.7435066	total: 493ms	remaining: 1.97s
20:	learn: 28.2283605	total: 517ms	remaining: 1.94s
21:	learn: 27.6749781	total: 541ms	remaining: 1.92s
22:	learn: 27.1695356	total: 565ms	remaining: 1.89s
23:	learn: 26.6842901	total: 589ms	remaining: 1.87s
24:	learn: 26.0987344	total: 614ms	remaining: 1.84s
25:	learn: 25.5266873	total: 648ms	remaining: 1.84s
26:	learn: 25.0200431	total: 675ms	remaining: 1.83s
27:	learn: 24.5972016	total: 700ms	remaining: 1.8s
28:	learn: 24.1557061	total: 725ms	remaining: 1.77s
29:	learn: 23.7405036	total: 750ms	remaining: 1.75s
30:	learn: 23.3574513	total: 774ms	remaining: 1.72s
31:	learn: 23.0493499	total: 799ms	remaining: 1.7s
32:	learn: 22.6480655	total: 824ms	remaining: 1.67s
33:	learn: 22.2777353	total: 853ms	remaining: 1.66s
34:	learn: 21.8294628	total: 877ms	remaining: 1.63s
35:	learn: 21.4783115	total: 901ms	remaining: 1.6s
36:	learn: 21.1271427	total: 925ms	remaining: 1.57s
37:	learn: 20.7967443	total: 949ms	remaining: 1.55s
38:	learn: 20.4949793	total: 974ms	remaining: 1.52s
39:	learn: 20.1991695	total: 999ms	remaining: 1.5s
40:	learn: 19.8869467	total: 1.02s	remaining: 1.47s
41:	learn: 19.5656862	total: 1.05s	remaining: 1.45s
42:	learn: 19.2415335	total: 1.08s	remaining: 1.43s
43:	learn: 18.9725471	total: 1.1s	remaining: 1.41s
44:	learn: 18.7035722	total: 1.13s	remaining: 1.38s
45:	learn: 18.3840395	total: 1.15s	remaining: 1.35s
46:	learn: 18.1486662	total: 1.18s	remaining: 1.33s
47:	learn: 17.8740440	total: 1.2s	remaining: 1.3s
48:	learn: 17.6056273	total: 1.23s	remaining: 1.27s
49:	learn: 17.4011083	total: 1.26s	remaining: 1.26s
50:	learn: 17.1935449	total: 1.28s	remaining: 1.23s
51:	learn: 16.9415227	total: 1.31s	remaining: 1.21s
52:	learn: 16.6568624	total: 1.33s	remaining: 1.18s
53:	learn: 16.4254479	total: 1.35s	remaining: 1.15s
54:	learn: 16.1958120	total: 1.38s	remaining: 1.13s
55:	learn: 15.9494332	total: 1.4s	remaining: 1.1s
56:	learn: 15.7736632	total: 1.43s	remaining: 1.07s
57:	learn: 15.6314122	total: 1.45s	remaining: 1.05s
58:	learn: 15.3707626	total: 1.48s	remaining: 1.03s
59:	learn: 15.2211664	total: 1.51s	remaining: 1.01s
60:	learn: 14.9939278	total: 1.53s	remaining: 981ms
61:	learn: 14.8327626	total: 1.57s	remaining: 964ms
62:	learn: 14.6555776	total: 1.6s	remaining: 940ms
63:	learn: 14.5516961	total: 1.63s	remaining: 916ms
64:	learn: 14.3660780	total: 1.66s	remaining: 892ms
65:	learn: 14.1721909	total: 1.69s	remaining: 872ms
66:	learn: 14.0877696	total: 1.72s	remaining: 848ms
67:	learn: 13.9435793	total: 1.75s	remaining: 823ms
68:	learn: 13.7745805	total: 1.78s	remaining: 798ms
69:	learn: 13.6490858	total: 1.8s	remaining: 773ms
70:	learn: 13.5022080	total: 1.84s	remaining: 750ms
71:	learn: 13.3922163	total: 1.86s	remaining: 725ms
72:	learn: 13.2842701	total: 1.89s	remaining: 699ms
73:	learn: 13.1698693	total: 1.92s	remaining: 674ms
74:	learn: 13.0256610	total: 1.96s	remaining: 652ms
75:	learn: 12.8855147	total: 1.98s	remaining: 627ms
76:	learn: 12.7807971	total: 2.01s	remaining: 601ms
77:	learn: 12.6618407	total: 2.04s	remaining: 575ms
78:	learn: 12.5369866	total: 2.08s	remaining: 552ms
79:	learn: 12.4376925	total: 2.1s	remaining: 526ms
80:	learn: 12.3005012	total: 2.13s	remaining: 501ms
81:	learn: 12.1751315	total: 2.17s	remaining: 476ms
82:	learn: 12.0612289	total: 2.19s	remaining: 449ms
83:	learn: 11.9757193	total: 2.22s	remaining: 423ms
84:	learn: 11.8530411	total: 2.24s	remaining: 396ms
85:	learn: 11.7523616	total: 2.27s	remaining: 370ms
86:	learn: 11.6645272	total: 2.31s	remaining: 345ms
87:	learn: 11.5645111	total: 2.33s	remaining: 318ms
88:	learn: 11.4692480	total: 2.37s	remaining: 293ms
89:	learn: 11.3724902	total: 2.4s	remaining: 267ms
90:	learn: 11.2842147	total: 2.43s	remaining: 240ms
91:	learn: 11.1868295	total: 2.45s	remaining: 213ms
92:	learn: 11.0293625	total: 2.48s	remaining: 187ms
93:	learn: 10.9495625	total: 2.51s	remaining: 160ms
94:	learn: 10.8608168	total: 2.54s	remaining: 133ms
95:	learn: 10.7804780	total: 2.58s	remaining: 107ms
96:	learn: 10.6503623	total: 2.6s	remaining: 80.6ms
97:	learn: 10.5906748	total: 2.63s	remaining: 53.7ms
98:	learn: 10.4539468	total: 2.66s	remaining: 26.9ms
99:	learn: 10.3804160	total: 2.69s	remaining: 0us
0:	learn: 27.6506730	total: 5.73ms	remaining: 568ms
1:	learn: 27.1638793	total: 10.4ms	remaining: 511ms
2:	learn: 26.8000665	total: 15.1ms	remaining: 489ms
3:	learn: 26.4256132	total: 22.6ms	remaining: 543ms
4:	learn: 26.0088351	total: 30.3ms	remaining: 575ms
5:	learn: 25.7558298	total: 39.8ms	remaining: 623ms
6:	learn: 25.3380711	total: 46.1ms	remaining: 612ms
7:	learn: 25.0571611	total: 53.2ms	remaining: 611ms
8:	learn: 24.6790148	total: 58.1ms	remaining: 588ms
9:	learn: 24.3600941	total: 63.1ms	remaining: 568ms
10:	learn: 24.1105667	total: 68.6ms	remaining: 555ms
11:	learn: 23.7736542	total: 74.1ms	remaining: 543ms
12:	learn: 23.5824429	total: 79.5ms	remaining: 532ms
13:	learn: 23.2658303	total: 85.1ms	remaining: 523ms
14:	learn: 23.0061886	total: 90.6ms	remaining: 513ms
15:	learn: 22.8060389	total: 95.5ms	remaining: 501ms
16:	learn: 22.5899735	total: 101ms	remaining: 492ms
17:	learn: 22.3625048	total: 106ms	remaining: 481ms
18:	learn: 22.0706477	total: 111ms	remaining: 472ms
19:	learn: 21.8739394	total: 116ms	remaining: 464ms
20:	learn: 21.6143650	total: 122ms	remaining: 459ms
21:	learn: 21.4571623	total: 126ms	remaining: 448ms
22:	learn: 21.2395769	total: 131ms	remaining: 438ms
23:	learn: 20.9801795	total: 135ms	remaining: 429ms
24:	learn: 20.8036808	total: 140ms	remaining: 419ms
25:	learn: 20.6387539	total: 144ms	remaining: 410ms
26:	learn: 20.4401427	total: 149ms	remaining: 402ms
27:	learn: 20.2879575	total: 152ms	remaining: 392ms
28:	learn: 20.0538664	total: 157ms	remaining: 385ms
29:	learn: 19.8363102	total: 161ms	remaining: 376ms
30:	learn: 19.7015446	total: 166ms	remaining: 370ms
31:	learn: 19.5483114	total: 170ms	remaining: 362ms
32:	learn: 19.4163053	total: 175ms	remaining: 355ms
33:	learn: 19.2880625	total: 179ms	remaining: 348ms
34:	learn: 19.1303389	total: 184ms	remaining: 342ms
35:	learn: 18.9237448	total: 189ms	remaining: 335ms
36:	learn: 18.8142925	total: 193ms	remaining: 329ms
37:	learn: 18.6994696	total: 198ms	remaining: 323ms
38:	learn: 18.5629211	total: 202ms	remaining: 316ms
39:	learn: 18.4600917	total: 207ms	remaining: 310ms
40:	learn: 18.3567139	total: 212ms	remaining: 305ms
41:	learn: 18.2120527	total: 216ms	remaining: 298ms
42:	learn: 18.0688062	total: 221ms	remaining: 292ms
43:	learn: 17.9250181	total: 226ms	remaining: 287ms
44:	learn: 17.8399138	total: 230ms	remaining: 282ms
45:	learn: 17.6720713	total: 235ms	remaining: 276ms
46:	learn: 17.5273091	total: 240ms	remaining: 270ms
47:	learn: 17.4232814	total: 245ms	remaining: 265ms
48:	learn: 17.2957579	total: 249ms	remaining: 260ms
49:	learn: 17.1892874	total: 258ms	remaining: 258ms
50:	learn: 17.0490355	total: 266ms	remaining: 255ms
51:	learn: 16.9666450	total: 273ms	remaining: 252ms
52:	learn: 16.8600056	total: 278ms	remaining: 246ms
53:	learn: 16.7542588	total: 284ms	remaining: 242ms
54:	learn: 16.6316077	total: 288ms	remaining: 236ms
55:	learn: 16.5588112	total: 293ms	remaining: 230ms
56:	learn: 16.5010186	total: 298ms	remaining: 225ms
57:	learn: 16.4081540	total: 302ms	remaining: 219ms
58:	learn: 16.3040451	total: 307ms	remaining: 213ms
59:	learn: 16.1890564	total: 312ms	remaining: 208ms
60:	learn: 16.0977103	total: 316ms	remaining: 202ms
61:	learn: 15.9627607	total: 321ms	remaining: 196ms
62:	learn: 15.9022248	total: 325ms	remaining: 191ms
63:	learn: 15.8151881	total: 329ms	remaining: 185ms
64:	learn: 15.7353125	total: 333ms	remaining: 180ms
65:	learn: 15.6312897	total: 338ms	remaining: 174ms
66:	learn: 15.5330927	total: 342ms	remaining: 168ms
67:	learn: 15.4698681	total: 347ms	remaining: 163ms
68:	learn: 15.4108571	total: 351ms	remaining: 158ms
69:	learn: 15.3492945	total: 356ms	remaining: 153ms
70:	learn: 15.3036540	total: 361ms	remaining: 147ms
71:	learn: 15.2390833	total: 365ms	remaining: 142ms
72:	learn: 15.1556327	total: 370ms	remaining: 137ms
73:	learn: 15.1016315	total: 374ms	remaining: 131ms
74:	learn: 15.0287076	total: 379ms	remaining: 126ms
75:	learn: 14.9530572	total: 384ms	remaining: 121ms
76:	learn: 14.8965517	total: 389ms	remaining: 116ms
77:	learn: 14.8125426	total: 393ms	remaining: 111ms
78:	learn: 14.7435359	total: 398ms	remaining: 106ms
79:	learn: 14.6963163	total: 402ms	remaining: 101ms
80:	learn: 14.6200060	total: 407ms	remaining: 95.4ms
81:	learn: 14.5707760	total: 411ms	remaining: 90.3ms
82:	learn: 14.5053651	total: 416ms	remaining: 85.3ms
83:	learn: 14.4115458	total: 421ms	remaining: 80.2ms
84:	learn: 14.3117159	total: 426ms	remaining: 75.2ms
85:	learn: 14.2511326	total: 431ms	remaining: 70.2ms
86:	learn: 14.1372486	total: 436ms	remaining: 65.1ms
87:	learn: 14.0992301	total: 440ms	remaining: 60.1ms
88:	learn: 14.0228331	total: 449ms	remaining: 55.4ms
89:	learn: 13.9249836	total: 457ms	remaining: 50.8ms
90:	learn: 13.8679364	total: 467ms	remaining: 46.1ms
91:	learn: 13.8405578	total: 475ms	remaining: 41.3ms
92:	learn: 13.7711325	total: 480ms	remaining: 36.2ms
93:	learn: 13.7357019	total: 486ms	remaining: 31ms
94:	learn: 13.6735271	total: 491ms	remaining: 25.8ms
95:	learn: 13.5682393	total: 497ms	remaining: 20.7ms
96:	learn: 13.5342610	total: 502ms	remaining: 15.5ms
97:	learn: 13.4710034	total: 507ms	remaining: 10.3ms
98:	learn: 13.4022402	total: 512ms	remaining: 5.17ms
99:	learn: 13.3351238	total: 518ms	remaining: 0us
0:	learn: 42.9181702	total: 5.12ms	remaining: 507ms
1:	learn: 42.0286736	total: 9.65ms	remaining: 473ms
2:	learn: 41.2764568	total: 13.9ms	remaining: 449ms
3:	learn: 40.4721918	total: 18.2ms	remaining: 436ms
4:	learn: 39.8518928	total: 22.4ms	remaining: 426ms
5:	learn: 39.2645479	total: 26.8ms	remaining: 420ms
6:	learn: 38.4453704	total: 31ms	remaining: 412ms
7:	learn: 37.7122059	total: 35.3ms	remaining: 406ms
8:	learn: 36.9185796	total: 39.5ms	remaining: 399ms
9:	learn: 36.1668427	total: 43.8ms	remaining: 395ms
10:	learn: 35.5639029	total: 48.2ms	remaining: 390ms
11:	learn: 34.7724193	total: 52.5ms	remaining: 385ms
12:	learn: 34.3053433	total: 57.3ms	remaining: 383ms
13:	learn: 33.6561327	total: 58.5ms	remaining: 359ms
14:	learn: 33.0134042	total: 63.1ms	remaining: 358ms
15:	learn: 32.4483300	total: 67.6ms	remaining: 355ms
16:	learn: 31.8581144	total: 72.4ms	remaining: 354ms
17:	learn: 31.2858301	total: 77.2ms	remaining: 352ms
18:	learn: 30.8483018	total: 82.2ms	remaining: 350ms
19:	learn: 30.4174622	total: 89.2ms	remaining: 357ms
20:	learn: 29.8994411	total: 97.4ms	remaining: 366ms
21:	learn: 29.5045355	total: 105ms	remaining: 371ms
22:	learn: 28.9923519	total: 111ms	remaining: 372ms
23:	learn: 28.4255717	total: 118ms	remaining: 374ms
24:	learn: 28.0283139	total: 123ms	remaining: 368ms
25:	learn: 27.7434814	total: 127ms	remaining: 362ms
26:	learn: 27.2770731	total: 132ms	remaining: 357ms
27:	learn: 26.8928270	total: 136ms	remaining: 350ms
28:	learn: 26.4282671	total: 141ms	remaining: 345ms
29:	learn: 26.0272764	total: 146ms	remaining: 340ms
30:	learn: 25.7579312	total: 151ms	remaining: 335ms
31:	learn: 25.4542434	total: 155ms	remaining: 330ms
32:	learn: 25.1232564	total: 160ms	remaining: 325ms
33:	learn: 24.8110795	total: 165ms	remaining: 320ms
34:	learn: 24.5077579	total: 169ms	remaining: 314ms
35:	learn: 24.1909000	total: 174ms	remaining: 309ms
36:	learn: 23.8719468	total: 179ms	remaining: 304ms
37:	learn: 23.5764366	total: 180ms	remaining: 294ms
38:	learn: 23.3468086	total: 185ms	remaining: 289ms
39:	learn: 23.0908771	total: 189ms	remaining: 284ms
40:	learn: 22.8580876	total: 195ms	remaining: 281ms
41:	learn: 22.6060825	total: 200ms	remaining: 276ms
42:	learn: 22.4125407	total: 205ms	remaining: 272ms
43:	learn: 22.1990617	total: 210ms	remaining: 267ms
44:	learn: 21.9716164	total: 215ms	remaining: 263ms
45:	learn: 21.8360935	total: 220ms	remaining: 258ms
46:	learn: 21.6169256	total: 225ms	remaining: 253ms
47:	learn: 21.4620612	total: 230ms	remaining: 249ms
48:	learn: 21.2894194	total: 234ms	remaining: 244ms
49:	learn: 21.1066266	total: 240ms	remaining: 240ms
50:	learn: 20.9484898	total: 245ms	remaining: 235ms
51:	learn: 20.7195338	total: 250ms	remaining: 231ms
52:	learn: 20.4899740	total: 255ms	remaining: 226ms
53:	learn: 20.3356583	total: 260ms	remaining: 221ms
54:	learn: 20.0754393	total: 267ms	remaining: 218ms
55:	learn: 19.9199159	total: 274ms	remaining: 215ms
56:	learn: 19.7761128	total: 281ms	remaining: 212ms
57:	learn: 19.6533060	total: 286ms	remaining: 207ms
58:	learn: 19.5113942	total: 292ms	remaining: 203ms
59:	learn: 19.3985022	total: 297ms	remaining: 198ms
60:	learn: 19.2683443	total: 305ms	remaining: 195ms
61:	learn: 19.1460824	total: 310ms	remaining: 190ms
62:	learn: 19.0042655	total: 315ms	remaining: 185ms
63:	learn: 18.8720873	total: 320ms	remaining: 180ms
64:	learn: 18.7183888	total: 326ms	remaining: 176ms
65:	learn: 18.5472360	total: 333ms	remaining: 172ms
66:	learn: 18.3976642	total: 339ms	remaining: 167ms
67:	learn: 18.2282851	total: 344ms	remaining: 162ms
68:	learn: 18.1469157	total: 350ms	remaining: 157ms
69:	learn: 18.0649494	total: 356ms	remaining: 152ms
70:	learn: 17.9485405	total: 361ms	remaining: 148ms
71:	learn: 17.8460261	total: 367ms	remaining: 143ms
72:	learn: 17.7679843	total: 373ms	remaining: 138ms
73:	learn: 17.5989290	total: 378ms	remaining: 133ms
74:	learn: 17.4381322	total: 383ms	remaining: 128ms
75:	learn: 17.3370886	total: 389ms	remaining: 123ms
76:	learn: 17.2675308	total: 394ms	remaining: 118ms
77:	learn: 17.1946430	total: 400ms	remaining: 113ms
78:	learn: 17.0923725	total: 405ms	remaining: 108ms
79:	learn: 17.0537265	total: 409ms	remaining: 102ms
80:	learn: 16.9456831	total: 414ms	remaining: 97.2ms
81:	learn: 16.8457353	total: 419ms	remaining: 92ms
82:	learn: 16.7469310	total: 424ms	remaining: 86.8ms
83:	learn: 16.6679953	total: 428ms	remaining: 81.6ms
84:	learn: 16.6274189	total: 433ms	remaining: 76.4ms
85:	learn: 16.5516530	total: 437ms	remaining: 71.2ms
86:	learn: 16.4886066	total: 442ms	remaining: 66ms
87:	learn: 16.3947859	total: 447ms	remaining: 60.9ms
88:	learn: 16.3406495	total: 451ms	remaining: 55.8ms
89:	learn: 16.3019195	total: 456ms	remaining: 50.7ms
90:	learn: 16.1860681	total: 461ms	remaining: 45.6ms
91:	learn: 16.1282812	total: 466ms	remaining: 40.5ms
92:	learn: 16.0303652	total: 471ms	remaining: 35.5ms
93:	learn: 15.9561692	total: 476ms	remaining: 30.4ms
94:	learn: 15.8733994	total: 481ms	remaining: 25.3ms
95:	learn: 15.8108833	total: 488ms	remaining: 20.3ms
96:	learn: 15.7606004	total: 496ms	remaining: 15.3ms
97:	learn: 15.6984664	total: 503ms	remaining: 10.3ms
98:	learn: 15.6223632	total: 510ms	remaining: 5.15ms
99:	learn: 15.5671136	total: 516ms	remaining: 0us
0:	learn: 46.4788614	total: 1.98ms	remaining: 196ms
1:	learn: 45.7608372	total: 6.73ms	remaining: 330ms
2:	learn: 44.8825004	total: 11.6ms	remaining: 375ms
3:	learn: 44.0362738	total: 16.6ms	remaining: 398ms
4:	learn: 43.2086374	total: 21.3ms	remaining: 405ms
5:	learn: 42.5835773	total: 25.9ms	remaining: 406ms
6:	learn: 41.9673269	total: 30.7ms	remaining: 408ms
7:	learn: 41.4748717	total: 35.2ms	remaining: 405ms
8:	learn: 40.7129183	total: 40ms	remaining: 404ms
9:	learn: 39.8900884	total: 44.9ms	remaining: 404ms
10:	learn: 39.4142193	total: 49.5ms	remaining: 400ms
11:	learn: 38.8645613	total: 54.1ms	remaining: 397ms
12:	learn: 38.2394731	total: 58.4ms	remaining: 391ms
13:	learn: 37.6834515	total: 62.9ms	remaining: 386ms
14:	learn: 37.0673507	total: 67.2ms	remaining: 381ms
15:	learn: 36.4728340	total: 71.7ms	remaining: 377ms
16:	learn: 36.0489086	total: 76.6ms	remaining: 374ms
17:	learn: 35.4744141	total: 81ms	remaining: 369ms
18:	learn: 35.0106021	total: 86.2ms	remaining: 368ms
19:	learn: 34.5586053	total: 90.9ms	remaining: 364ms
20:	learn: 34.1308223	total: 95.9ms	remaining: 361ms
21:	learn: 33.7701450	total: 101ms	remaining: 357ms
22:	learn: 33.4425444	total: 106ms	remaining: 354ms
23:	learn: 33.0296412	total: 111ms	remaining: 351ms
24:	learn: 32.6359803	total: 115ms	remaining: 346ms
25:	learn: 32.1846182	total: 120ms	remaining: 342ms
26:	learn: 31.7620230	total: 125ms	remaining: 338ms
27:	learn: 31.4669337	total: 130ms	remaining: 335ms
28:	learn: 31.0792062	total: 137ms	remaining: 336ms
29:	learn: 30.7970537	total: 144ms	remaining: 337ms
30:	learn: 30.4952215	total: 152ms	remaining: 338ms
31:	learn: 30.2845344	total: 160ms	remaining: 340ms
32:	learn: 29.9592732	total: 168ms	remaining: 342ms
33:	learn: 29.6798596	total: 174ms	remaining: 338ms
34:	learn: 29.3368905	total: 180ms	remaining: 335ms
35:	learn: 29.0621238	total: 186ms	remaining: 331ms
36:	learn: 28.6445375	total: 192ms	remaining: 327ms
37:	learn: 28.2418096	total: 198ms	remaining: 323ms
38:	learn: 27.9495390	total: 203ms	remaining: 318ms
39:	learn: 27.6958160	total: 209ms	remaining: 313ms
40:	learn: 27.4811189	total: 214ms	remaining: 308ms
41:	learn: 27.1494420	total: 220ms	remaining: 303ms
42:	learn: 26.8388873	total: 224ms	remaining: 298ms
43:	learn: 26.5721300	total: 230ms	remaining: 292ms
44:	learn: 26.3384738	total: 235ms	remaining: 288ms
45:	learn: 26.1894781	total: 241ms	remaining: 283ms
46:	learn: 25.9580198	total: 246ms	remaining: 278ms
47:	learn: 25.7897985	total: 251ms	remaining: 272ms
48:	learn: 25.6000271	total: 256ms	remaining: 266ms
49:	learn: 25.4130873	total: 260ms	remaining: 260ms
50:	learn: 25.1699061	total: 265ms	remaining: 254ms
51:	learn: 24.9324449	total: 270ms	remaining: 249ms
52:	learn: 24.7729152	total: 275ms	remaining: 244ms
53:	learn: 24.5026563	total: 279ms	remaining: 238ms
54:	learn: 24.2332627	total: 284ms	remaining: 233ms
55:	learn: 23.9611984	total: 289ms	remaining: 227ms
56:	learn: 23.7862603	total: 294ms	remaining: 222ms
57:	learn: 23.6318154	total: 299ms	remaining: 216ms
58:	learn: 23.4443306	total: 304ms	remaining: 211ms
59:	learn: 23.2581425	total: 309ms	remaining: 206ms
60:	learn: 23.0549901	total: 314ms	remaining: 201ms
61:	learn: 22.8666218	total: 319ms	remaining: 196ms
62:	learn: 22.6956739	total: 324ms	remaining: 190ms
63:	learn: 22.5068544	total: 329ms	remaining: 185ms
64:	learn: 22.1859147	total: 338ms	remaining: 182ms
65:	learn: 22.0462043	total: 345ms	remaining: 178ms
66:	learn: 21.9329563	total: 352ms	remaining: 173ms
67:	learn: 21.8029736	total: 358ms	remaining: 168ms
68:	learn: 21.6861091	total: 364ms	remaining: 163ms
69:	learn: 21.4838140	total: 368ms	remaining: 158ms
70:	learn: 21.3548921	total: 373ms	remaining: 152ms
71:	learn: 21.2244517	total: 377ms	remaining: 147ms
72:	learn: 21.0702958	total: 382ms	remaining: 141ms
73:	learn: 20.9224662	total: 386ms	remaining: 136ms
74:	learn: 20.8150357	total: 391ms	remaining: 130ms
75:	learn: 20.6962739	total: 396ms	remaining: 125ms
76:	learn: 20.5809258	total: 401ms	remaining: 120ms
77:	learn: 20.4735470	total: 406ms	remaining: 115ms
78:	learn: 20.3778167	total: 411ms	remaining: 109ms
79:	learn: 20.2211268	total: 416ms	remaining: 104ms
80:	learn: 20.1478678	total: 420ms	remaining: 98.6ms
81:	learn: 20.1032967	total: 425ms	remaining: 93.4ms
82:	learn: 19.9236300	total: 430ms	remaining: 88.1ms
83:	learn: 19.8151745	total: 435ms	remaining: 82.9ms
84:	learn: 19.7099856	total: 440ms	remaining: 77.6ms
85:	learn: 19.6264833	total: 444ms	remaining: 72.4ms
86:	learn: 19.4916361	total: 449ms	remaining: 67.1ms
87:	learn: 19.4050529	total: 453ms	remaining: 61.8ms
88:	learn: 19.2547065	total: 458ms	remaining: 56.6ms
89:	learn: 19.1610225	total: 463ms	remaining: 51.4ms
90:	learn: 19.0898958	total: 467ms	remaining: 46.2ms
91:	learn: 19.0489664	total: 472ms	remaining: 41ms
92:	learn: 18.9206240	total: 477ms	remaining: 35.9ms
93:	learn: 18.8636239	total: 481ms	remaining: 30.7ms
94:	learn: 18.8126187	total: 486ms	remaining: 25.6ms
95:	learn: 18.7579275	total: 490ms	remaining: 20.4ms
96:	learn: 18.6382753	total: 495ms	remaining: 15.3ms
97:	learn: 18.5397334	total: 500ms	remaining: 10.2ms
98:	learn: 18.4375951	total: 505ms	remaining: 5.1ms
99:	learn: 18.4033755	total: 510ms	remaining: 0us
0:	learn: 46.1068821	total: 2.6ms	remaining: 258ms
1:	learn: 45.3970261	total: 7.73ms	remaining: 379ms
2:	learn: 44.8732696	total: 12.7ms	remaining: 409ms
3:	learn: 44.1290184	total: 18.1ms	remaining: 434ms
4:	learn: 43.3290271	total: 23.4ms	remaining: 445ms
5:	learn: 42.7069090	total: 28.9ms	remaining: 453ms
6:	learn: 42.0572971	total: 34.4ms	remaining: 457ms
7:	learn: 41.4797924	total: 39.4ms	remaining: 453ms
8:	learn: 41.0023122	total: 44.1ms	remaining: 446ms
9:	learn: 40.5330570	total: 49.5ms	remaining: 445ms
10:	learn: 39.9726545	total: 55.6ms	remaining: 450ms
11:	learn: 39.3044053	total: 60ms	remaining: 440ms
12:	learn: 38.8169735	total: 64.3ms	remaining: 430ms
13:	learn: 38.2458761	total: 68.4ms	remaining: 420ms
14:	learn: 37.6280321	total: 72.3ms	remaining: 410ms
15:	learn: 37.0800610	total: 76.7ms	remaining: 403ms
16:	learn: 36.5489363	total: 81.1ms	remaining: 396ms
17:	learn: 36.0981456	total: 85.2ms	remaining: 388ms
18:	learn: 35.6956274	total: 89.7ms	remaining: 382ms
19:	learn: 35.1471999	total: 93.8ms	remaining: 375ms
20:	learn: 34.6235408	total: 98.2ms	remaining: 369ms
21:	learn: 34.1987018	total: 103ms	remaining: 365ms
22:	learn: 33.8985062	total: 108ms	remaining: 361ms
23:	learn: 33.3869017	total: 113ms	remaining: 356ms
24:	learn: 32.9100550	total: 117ms	remaining: 352ms
25:	learn: 32.4156208	total: 122ms	remaining: 347ms
26:	learn: 31.9320493	total: 126ms	remaining: 341ms
27:	learn: 31.5711468	total: 131ms	remaining: 337ms
28:	learn: 31.2404433	total: 135ms	remaining: 331ms
29:	learn: 30.8807946	total: 140ms	remaining: 327ms
30:	learn: 30.5948438	total: 145ms	remaining: 322ms
31:	learn: 30.3885560	total: 149ms	remaining: 317ms
32:	learn: 30.0625101	total: 154ms	remaining: 313ms
33:	learn: 29.9113114	total: 159ms	remaining: 309ms
34:	learn: 29.6983470	total: 165ms	remaining: 307ms
35:	learn: 29.4775849	total: 174ms	remaining: 309ms
36:	learn: 29.0538055	total: 182ms	remaining: 309ms
37:	learn: 28.6792318	total: 188ms	remaining: 307ms
38:	learn: 28.4231383	total: 195ms	remaining: 305ms
39:	learn: 28.1078565	total: 199ms	remaining: 299ms
40:	learn: 27.9079179	total: 205ms	remaining: 294ms
41:	learn: 27.6721506	total: 210ms	remaining: 290ms
42:	learn: 27.4228033	total: 214ms	remaining: 284ms
43:	learn: 27.1740534	total: 219ms	remaining: 278ms
44:	learn: 26.8584071	total: 223ms	remaining: 273ms
45:	learn: 26.6902083	total: 228ms	remaining: 267ms
46:	learn: 26.4855335	total: 232ms	remaining: 262ms
47:	learn: 26.2730822	total: 236ms	remaining: 256ms
48:	learn: 26.1058689	total: 240ms	remaining: 250ms
49:	learn: 25.8587318	total: 245ms	remaining: 245ms
50:	learn: 25.7558005	total: 249ms	remaining: 239ms
51:	learn: 25.5846925	total: 253ms	remaining: 234ms
52:	learn: 25.4249887	total: 257ms	remaining: 228ms
53:	learn: 25.1911054	total: 262ms	remaining: 223ms
54:	learn: 25.0544755	total: 266ms	remaining: 218ms
55:	learn: 24.8874006	total: 270ms	remaining: 212ms
56:	learn: 24.7736279	total: 275ms	remaining: 207ms
57:	learn: 24.6156255	total: 279ms	remaining: 202ms
58:	learn: 24.3962421	total: 283ms	remaining: 197ms
59:	learn: 24.2685129	total: 287ms	remaining: 191ms
60:	learn: 24.1874096	total: 291ms	remaining: 186ms
61:	learn: 24.0394287	total: 296ms	remaining: 181ms
62:	learn: 23.9281768	total: 300ms	remaining: 176ms
63:	learn: 23.7423900	total: 304ms	remaining: 171ms
64:	learn: 23.6015209	total: 308ms	remaining: 166ms
65:	learn: 23.4677943	total: 312ms	remaining: 161ms
66:	learn: 23.3215256	total: 317ms	remaining: 156ms
67:	learn: 23.1869360	total: 321ms	remaining: 151ms
68:	learn: 22.9691180	total: 325ms	remaining: 146ms
69:	learn: 22.7531657	total: 329ms	remaining: 141ms
70:	learn: 22.6133477	total: 334ms	remaining: 137ms
71:	learn: 22.3452758	total: 339ms	remaining: 132ms
72:	learn: 22.2065350	total: 344ms	remaining: 127ms
73:	learn: 22.1071155	total: 348ms	remaining: 122ms
74:	learn: 21.9740686	total: 353ms	remaining: 118ms
75:	learn: 21.8892033	total: 357ms	remaining: 113ms
76:	learn: 21.8267882	total: 362ms	remaining: 108ms
77:	learn: 21.7423479	total: 370ms	remaining: 104ms
78:	learn: 21.6242075	total: 378ms	remaining: 101ms
79:	learn: 21.5016910	total: 387ms	remaining: 96.8ms
80:	learn: 21.4806623	total: 388ms	remaining: 91ms
81:	learn: 21.3166637	total: 396ms	remaining: 86.9ms
82:	learn: 21.2222534	total: 401ms	remaining: 82.1ms
83:	learn: 21.1535708	total: 406ms	remaining: 77.4ms
84:	learn: 21.0858902	total: 411ms	remaining: 72.5ms
85:	learn: 20.9206003	total: 416ms	remaining: 67.8ms
86:	learn: 20.8674695	total: 422ms	remaining: 63ms
87:	learn: 20.8089875	total: 427ms	remaining: 58.3ms
88:	learn: 20.7085401	total: 432ms	remaining: 53.5ms
89:	learn: 20.5513468	total: 438ms	remaining: 48.6ms
90:	learn: 20.4586742	total: 443ms	remaining: 43.8ms
91:	learn: 20.3932149	total: 448ms	remaining: 38.9ms
92:	learn: 20.3000895	total: 453ms	remaining: 34.1ms
93:	learn: 20.2254009	total: 458ms	remaining: 29.2ms
94:	learn: 20.1750050	total: 464ms	remaining: 24.4ms
95:	learn: 20.0715579	total: 468ms	remaining: 19.5ms
96:	learn: 19.9920082	total: 473ms	remaining: 14.6ms
97:	learn: 19.9664401	total: 478ms	remaining: 9.75ms
98:	learn: 19.8689673	total: 482ms	remaining: 4.87ms
99:	learn: 19.7537356	total: 486ms	remaining: 0us
0:	learn: 46.8832143	total: 4.67ms	remaining: 463ms
1:	learn: 45.8700349	total: 8.71ms	remaining: 427ms
2:	learn: 45.0546867	total: 13.4ms	remaining: 434ms
3:	learn: 44.2829439	total: 18.5ms	remaining: 444ms
4:	learn: 43.4609042	total: 23.2ms	remaining: 441ms
5:	learn: 42.6754991	total: 27.6ms	remaining: 433ms
6:	learn: 41.9234935	total: 32.4ms	remaining: 431ms
7:	learn: 41.3987518	total: 37ms	remaining: 426ms
8:	learn: 40.6625066	total: 41.6ms	remaining: 420ms
9:	learn: 40.0029561	total: 46.3ms	remaining: 417ms
10:	learn: 39.3897033	total: 55.1ms	remaining: 445ms
11:	learn: 38.7741453	total: 63.1ms	remaining: 463ms
12:	learn: 38.1201100	total: 69.4ms	remaining: 464ms
13:	learn: 37.5129454	total: 74.2ms	remaining: 456ms
14:	learn: 37.2062206	total: 79.5ms	remaining: 450ms
15:	learn: 36.6831741	total: 83.9ms	remaining: 440ms
16:	learn: 36.2902788	total: 88.2ms	remaining: 430ms
17:	learn: 35.7639930	total: 92.5ms	remaining: 421ms
18:	learn: 35.2580953	total: 96.5ms	remaining: 412ms
19:	learn: 34.7809739	total: 101ms	remaining: 404ms
20:	learn: 34.1330433	total: 105ms	remaining: 395ms
21:	learn: 33.7302219	total: 109ms	remaining: 387ms
22:	learn: 33.3502495	total: 113ms	remaining: 379ms
23:	learn: 33.0067804	total: 118ms	remaining: 373ms
24:	learn: 32.6897855	total: 122ms	remaining: 367ms
25:	learn: 32.4361119	total: 126ms	remaining: 359ms
26:	learn: 32.1278981	total: 131ms	remaining: 353ms
27:	learn: 31.7863721	total: 135ms	remaining: 346ms
28:	learn: 31.4791450	total: 139ms	remaining: 340ms
29:	learn: 31.1760161	total: 143ms	remaining: 334ms
30:	learn: 30.9238888	total: 147ms	remaining: 328ms
31:	learn: 30.5500905	total: 152ms	remaining: 322ms
32:	learn: 30.3078126	total: 156ms	remaining: 316ms
33:	learn: 30.0480921	total: 160ms	remaining: 310ms
34:	learn: 29.8623884	total: 164ms	remaining: 305ms
35:	learn: 29.5991038	total: 169ms	remaining: 301ms
36:	learn: 29.4061161	total: 173ms	remaining: 295ms
37:	learn: 29.0269515	total: 177ms	remaining: 289ms
38:	learn: 28.8224959	total: 181ms	remaining: 284ms
39:	learn: 28.6417843	total: 186ms	remaining: 279ms
40:	learn: 28.3633368	total: 190ms	remaining: 273ms
41:	learn: 28.0200246	total: 194ms	remaining: 268ms
42:	learn: 27.7221254	total: 199ms	remaining: 263ms
43:	learn: 27.5105818	total: 203ms	remaining: 258ms
44:	learn: 27.3551010	total: 207ms	remaining: 253ms
45:	learn: 27.0787522	total: 211ms	remaining: 248ms
46:	learn: 26.8726317	total: 216ms	remaining: 244ms
47:	learn: 26.8003277	total: 221ms	remaining: 239ms
48:	learn: 26.5493785	total: 225ms	remaining: 234ms
49:	learn: 26.3699550	total: 229ms	remaining: 229ms
50:	learn: 26.1519631	total: 234ms	remaining: 225ms
51:	learn: 25.9277325	total: 239ms	remaining: 221ms
52:	learn: 25.7286035	total: 243ms	remaining: 216ms
53:	learn: 25.4999193	total: 248ms	remaining: 211ms
54:	learn: 25.3434703	total: 253ms	remaining: 207ms
55:	learn: 25.1497545	total: 257ms	remaining: 202ms
56:	learn: 24.9498143	total: 263ms	remaining: 198ms
57:	learn: 24.6509390	total: 271ms	remaining: 196ms
58:	learn: 24.5576144	total: 280ms	remaining: 195ms
59:	learn: 24.4265144	total: 287ms	remaining: 192ms
60:	learn: 24.3100706	total: 295ms	remaining: 189ms
61:	learn: 24.1727952	total: 301ms	remaining: 185ms
62:	learn: 24.0478558	total: 306ms	remaining: 180ms
63:	learn: 23.9124577	total: 312ms	remaining: 175ms
64:	learn: 23.7703718	total: 317ms	remaining: 171ms
65:	learn: 23.5975027	total: 322ms	remaining: 166ms
66:	learn: 23.4318077	total: 327ms	remaining: 161ms
67:	learn: 23.3099691	total: 333ms	remaining: 157ms
68:	learn: 23.1947982	total: 338ms	remaining: 152ms
69:	learn: 23.0260174	total: 343ms	remaining: 147ms
70:	learn: 22.8523100	total: 348ms	remaining: 142ms
71:	learn: 22.8028534	total: 353ms	remaining: 137ms
72:	learn: 22.6880658	total: 359ms	remaining: 133ms
73:	learn: 22.5956809	total: 364ms	remaining: 128ms
74:	learn: 22.4692932	total: 368ms	remaining: 123ms
75:	learn: 22.2863504	total: 372ms	remaining: 118ms
76:	learn: 22.1911237	total: 377ms	remaining: 113ms
77:	learn: 22.1098391	total: 381ms	remaining: 108ms
78:	learn: 22.0182738	total: 385ms	remaining: 102ms
79:	learn: 21.9306746	total: 389ms	remaining: 97.3ms
80:	learn: 21.7508233	total: 394ms	remaining: 92.3ms
81:	learn: 21.7108446	total: 398ms	remaining: 87.5ms
82:	learn: 21.5931852	total: 403ms	remaining: 82.5ms
83:	learn: 21.4480361	total: 407ms	remaining: 77.5ms
84:	learn: 21.3092119	total: 411ms	remaining: 72.6ms
85:	learn: 21.2605557	total: 416ms	remaining: 67.7ms
86:	learn: 21.1123597	total: 420ms	remaining: 62.7ms
87:	learn: 21.0115642	total: 424ms	remaining: 57.8ms
88:	learn: 20.9389040	total: 429ms	remaining: 53ms
89:	learn: 20.8300300	total: 434ms	remaining: 48.2ms
90:	learn: 20.7159733	total: 459ms	remaining: 45.4ms
91:	learn: 20.6282090	total: 464ms	remaining: 40.4ms
92:	learn: 20.5164529	total: 470ms	remaining: 35.4ms
93:	learn: 20.4692032	total: 476ms	remaining: 30.4ms
94:	learn: 20.3768451	total: 481ms	remaining: 25.3ms
95:	learn: 20.2808056	total: 486ms	remaining: 20.3ms
96:	learn: 20.2082089	total: 491ms	remaining: 15.2ms
97:	learn: 20.1698768	total: 495ms	remaining: 10.1ms
98:	learn: 20.1048816	total: 499ms	remaining: 5.04ms
99:	learn: 20.0086159	total: 503ms	remaining: 0us
0:	learn: 27.3351083	total: 23.4ms	remaining: 2.31s
1:	learn: 26.7523848	total: 46.6ms	remaining: 2.28s
2:	learn: 26.1326580	total: 70.4ms	remaining: 2.27s
3:	learn: 25.5584244	total: 95.1ms	remaining: 2.28s
4:	learn: 25.0458748	total: 120ms	remaining: 2.28s
5:	learn: 24.4868837	total: 155ms	remaining: 2.43s
6:	learn: 23.9306999	total: 180ms	remaining: 2.39s
7:	learn: 23.4799808	total: 204ms	remaining: 2.35s
8:	learn: 22.9510347	total: 229ms	remaining: 2.32s
9:	learn: 22.4529079	total: 254ms	remaining: 2.28s
10:	learn: 21.9320739	total: 277ms	remaining: 2.24s
11:	learn: 21.4729295	total: 301ms	remaining: 2.21s
12:	learn: 21.0885550	total: 326ms	remaining: 2.18s
13:	learn: 20.7063206	total: 360ms	remaining: 2.21s
14:	learn: 20.3539530	total: 386ms	remaining: 2.19s
15:	learn: 20.0071947	total: 412ms	remaining: 2.16s
16:	learn: 19.6579830	total: 438ms	remaining: 2.14s
17:	learn: 19.2450502	total: 462ms	remaining: 2.1s
18:	learn: 18.8010420	total: 487ms	remaining: 2.08s
19:	learn: 18.4055273	total: 512ms	remaining: 2.05s
20:	learn: 18.0395642	total: 537ms	remaining: 2.02s
21:	learn: 17.6568400	total: 565ms	remaining: 2s
22:	learn: 17.4284559	total: 598ms	remaining: 2s
23:	learn: 17.0957528	total: 624ms	remaining: 1.98s
24:	learn: 16.7636157	total: 649ms	remaining: 1.95s
25:	learn: 16.4987969	total: 676ms	remaining: 1.92s
26:	learn: 16.2204177	total: 702ms	remaining: 1.9s
27:	learn: 15.9525124	total: 727ms	remaining: 1.87s
28:	learn: 15.5905943	total: 752ms	remaining: 1.84s
29:	learn: 15.3628633	total: 781ms	remaining: 1.82s
30:	learn: 15.1420693	total: 811ms	remaining: 1.8s
31:	learn: 14.9419461	total: 836ms	remaining: 1.78s
32:	learn: 14.7386592	total: 859ms	remaining: 1.74s
33:	learn: 14.5398023	total: 883ms	remaining: 1.71s
34:	learn: 14.2644206	total: 907ms	remaining: 1.68s
35:	learn: 14.0168503	total: 931ms	remaining: 1.65s
36:	learn: 13.7687637	total: 955ms	remaining: 1.63s
37:	learn: 13.5855913	total: 980ms	remaining: 1.6s
38:	learn: 13.3656902	total: 1.01s	remaining: 1.59s
39:	learn: 13.2111716	total: 1.04s	remaining: 1.56s
40:	learn: 13.0360149	total: 1.06s	remaining: 1.53s
41:	learn: 12.8789444	total: 1.09s	remaining: 1.5s
42:	learn: 12.6680179	total: 1.11s	remaining: 1.48s
43:	learn: 12.4892268	total: 1.14s	remaining: 1.45s
44:	learn: 12.3275828	total: 1.16s	remaining: 1.42s
45:	learn: 12.2035682	total: 1.19s	remaining: 1.39s
46:	learn: 12.0777397	total: 1.22s	remaining: 1.37s
47:	learn: 11.9055552	total: 1.24s	remaining: 1.35s
48:	learn: 11.7465481	total: 1.27s	remaining: 1.32s
49:	learn: 11.5961200	total: 1.29s	remaining: 1.29s
50:	learn: 11.4305519	total: 1.31s	remaining: 1.26s
51:	learn: 11.2794033	total: 1.34s	remaining: 1.23s
52:	learn: 11.1586950	total: 1.36s	remaining: 1.21s
53:	learn: 11.0432937	total: 1.39s	remaining: 1.18s
54:	learn: 10.9094838	total: 1.41s	remaining: 1.15s
55:	learn: 10.7713451	total: 1.43s	remaining: 1.13s
56:	learn: 10.6664177	total: 1.47s	remaining: 1.1s
57:	learn: 10.5600117	total: 1.49s	remaining: 1.08s
58:	learn: 10.4438974	total: 1.52s	remaining: 1.05s
59:	learn: 10.3294224	total: 1.54s	remaining: 1.03s
60:	learn: 10.2510301	total: 1.57s	remaining: 1s
61:	learn: 10.1363264	total: 1.59s	remaining: 975ms
62:	learn: 10.0415049	total: 1.61s	remaining: 949ms
63:	learn: 9.9499833	total: 1.64s	remaining: 923ms
64:	learn: 9.8774263	total: 1.67s	remaining: 901ms
65:	learn: 9.7458853	total: 1.7s	remaining: 875ms
66:	learn: 9.6733951	total: 1.72s	remaining: 848ms
67:	learn: 9.5861856	total: 1.75s	remaining: 822ms
68:	learn: 9.4524193	total: 1.77s	remaining: 795ms
69:	learn: 9.3501165	total: 1.79s	remaining: 768ms
70:	learn: 9.3092902	total: 1.82s	remaining: 742ms
71:	learn: 9.2244222	total: 1.84s	remaining: 716ms
72:	learn: 9.1554253	total: 1.87s	remaining: 692ms
73:	learn: 9.1098892	total: 1.9s	remaining: 668ms
74:	learn: 9.0210213	total: 1.93s	remaining: 642ms
75:	learn: 8.9303181	total: 1.95s	remaining: 616ms
76:	learn: 8.8489769	total: 1.98s	remaining: 590ms
77:	learn: 8.7651580	total: 2s	remaining: 564ms
78:	learn: 8.7126796	total: 2.02s	remaining: 538ms
79:	learn: 8.6404554	total: 2.05s	remaining: 512ms
80:	learn: 8.5844756	total: 2.07s	remaining: 486ms
81:	learn: 8.5234333	total: 2.1s	remaining: 461ms
82:	learn: 8.4298762	total: 2.13s	remaining: 437ms
83:	learn: 8.3483002	total: 2.16s	remaining: 411ms
84:	learn: 8.2670647	total: 2.18s	remaining: 385ms
85:	learn: 8.1917398	total: 2.21s	remaining: 359ms
86:	learn: 8.1073642	total: 2.23s	remaining: 333ms
87:	learn: 8.0633288	total: 2.25s	remaining: 308ms
88:	learn: 8.0107997	total: 2.28s	remaining: 282ms
89:	learn: 7.9563547	total: 2.31s	remaining: 257ms
90:	learn: 7.8811408	total: 2.35s	remaining: 232ms
91:	learn: 7.8096107	total: 2.37s	remaining: 206ms
92:	learn: 7.7481700	total: 2.4s	remaining: 180ms
93:	learn: 7.6847843	total: 2.42s	remaining: 155ms
94:	learn: 7.6252335	total: 2.45s	remaining: 129ms
95:	learn: 7.5593148	total: 2.48s	remaining: 103ms
96:	learn: 7.5042331	total: 2.5s	remaining: 77.4ms
97:	learn: 7.4553707	total: 2.53s	remaining: 51.7ms
98:	learn: 7.4035691	total: 2.56s	remaining: 25.9ms
99:	learn: 7.3457537	total: 2.58s	remaining: 0us
0:	learn: 42.5901652	total: 25.8ms	remaining: 2.55s
1:	learn: 41.2917733	total: 49ms	remaining: 2.4s
2:	learn: 40.0285549	total: 75ms	remaining: 2.42s
3:	learn: 38.9051734	total: 102ms	remaining: 2.44s
4:	learn: 37.7712063	total: 134ms	remaining: 2.54s
5:	learn: 36.6826884	total: 161ms	remaining: 2.52s
6:	learn: 35.6341048	total: 186ms	remaining: 2.47s
7:	learn: 34.5035449	total: 212ms	remaining: 2.44s
8:	learn: 33.5636424	total: 238ms	remaining: 2.4s
9:	learn: 32.5970644	total: 263ms	remaining: 2.37s
10:	learn: 31.8528815	total: 289ms	remaining: 2.34s
11:	learn: 31.0330095	total: 318ms	remaining: 2.33s
12:	learn: 30.3119851	total: 347ms	remaining: 2.32s
13:	learn: 29.5212022	total: 373ms	remaining: 2.29s
14:	learn: 28.7182657	total: 397ms	remaining: 2.25s
15:	learn: 28.0433195	total: 422ms	remaining: 2.22s
16:	learn: 27.2966576	total: 447ms	remaining: 2.18s
17:	learn: 26.5122856	total: 473ms	remaining: 2.15s
18:	learn: 25.8998213	total: 499ms	remaining: 2.13s
19:	learn: 25.2416026	total: 527ms	remaining: 2.11s
20:	learn: 24.6399819	total: 565ms	remaining: 2.13s
21:	learn: 24.0372756	total: 591ms	remaining: 2.09s
22:	learn: 23.4553733	total: 616ms	remaining: 2.06s
23:	learn: 22.9027871	total: 643ms	remaining: 2.04s
24:	learn: 22.4470878	total: 669ms	remaining: 2s
25:	learn: 21.9143721	total: 695ms	remaining: 1.98s
26:	learn: 21.4979516	total: 720ms	remaining: 1.95s
27:	learn: 21.0867622	total: 749ms	remaining: 1.93s
28:	learn: 20.6187419	total: 779ms	remaining: 1.91s
29:	learn: 20.1662373	total: 805ms	remaining: 1.88s
30:	learn: 19.8225041	total: 829ms	remaining: 1.84s
31:	learn: 19.4539400	total: 853ms	remaining: 1.81s
32:	learn: 19.1127000	total: 878ms	remaining: 1.78s
33:	learn: 18.7767435	total: 901ms	remaining: 1.75s
34:	learn: 18.4038779	total: 927ms	remaining: 1.72s
35:	learn: 18.0021121	total: 953ms	remaining: 1.69s
36:	learn: 17.6673419	total: 990ms	remaining: 1.69s
37:	learn: 17.3562137	total: 1.02s	remaining: 1.66s
38:	learn: 17.0128082	total: 1.04s	remaining: 1.63s
39:	learn: 16.7572783	total: 1.07s	remaining: 1.6s
40:	learn: 16.4883778	total: 1.09s	remaining: 1.57s
41:	learn: 16.1756364	total: 1.12s	remaining: 1.55s
42:	learn: 15.9150506	total: 1.15s	remaining: 1.53s
43:	learn: 15.6787555	total: 1.18s	remaining: 1.5s
44:	learn: 15.3862120	total: 1.2s	remaining: 1.47s
45:	learn: 15.1512250	total: 1.23s	remaining: 1.44s
46:	learn: 14.9410960	total: 1.25s	remaining: 1.42s
47:	learn: 14.7086321	total: 1.28s	remaining: 1.39s
48:	learn: 14.5065360	total: 1.3s	remaining: 1.36s
49:	learn: 14.3007466	total: 1.33s	remaining: 1.33s
50:	learn: 14.0972724	total: 1.35s	remaining: 1.3s
51:	learn: 13.8793525	total: 1.38s	remaining: 1.28s
52:	learn: 13.6381311	total: 1.42s	remaining: 1.26s
53:	learn: 13.4603568	total: 1.44s	remaining: 1.23s
54:	learn: 13.2856920	total: 1.47s	remaining: 1.2s
55:	learn: 13.1350779	total: 1.5s	remaining: 1.17s
56:	learn: 13.0110083	total: 1.52s	remaining: 1.15s
57:	learn: 12.8405210	total: 1.54s	remaining: 1.12s
58:	learn: 12.6793938	total: 1.57s	remaining: 1.09s
59:	learn: 12.5497475	total: 1.59s	remaining: 1.06s
60:	learn: 12.4319334	total: 1.63s	remaining: 1.04s
61:	learn: 12.2780964	total: 1.65s	remaining: 1.01s
62:	learn: 12.1187174	total: 1.67s	remaining: 984ms
63:	learn: 11.9635081	total: 1.7s	remaining: 956ms
64:	learn: 11.8366366	total: 1.72s	remaining: 928ms
65:	learn: 11.6598347	total: 1.75s	remaining: 900ms
66:	learn: 11.5227416	total: 1.77s	remaining: 872ms
67:	learn: 11.4058818	total: 1.79s	remaining: 845ms
68:	learn: 11.2627892	total: 1.83s	remaining: 823ms
69:	learn: 11.1415094	total: 1.85s	remaining: 795ms
70:	learn: 11.0703329	total: 1.88s	remaining: 768ms
71:	learn: 10.9568944	total: 1.91s	remaining: 741ms
72:	learn: 10.8314078	total: 1.93s	remaining: 714ms
73:	learn: 10.7320013	total: 1.96s	remaining: 687ms
74:	learn: 10.6191666	total: 1.98s	remaining: 660ms
75:	learn: 10.5156798	total: 2s	remaining: 633ms
76:	learn: 10.4174442	total: 2.03s	remaining: 606ms
77:	learn: 10.3318165	total: 2.06s	remaining: 582ms
78:	learn: 10.2300435	total: 2.09s	remaining: 555ms
79:	learn: 10.1665911	total: 2.11s	remaining: 528ms
80:	learn: 10.1030585	total: 2.13s	remaining: 501ms
81:	learn: 10.0254875	total: 2.16s	remaining: 474ms
82:	learn: 9.9387640	total: 2.18s	remaining: 447ms
83:	learn: 9.8289920	total: 2.21s	remaining: 420ms
84:	learn: 9.7629500	total: 2.23s	remaining: 394ms
85:	learn: 9.6778611	total: 2.25s	remaining: 367ms
86:	learn: 9.5920617	total: 2.28s	remaining: 341ms
87:	learn: 9.4931297	total: 2.32s	remaining: 316ms
88:	learn: 9.4010604	total: 2.34s	remaining: 289ms
89:	learn: 9.3328614	total: 2.37s	remaining: 263ms
90:	learn: 9.2409094	total: 2.39s	remaining: 237ms
91:	learn: 9.1214245	total: 2.42s	remaining: 210ms
92:	learn: 9.0795335	total: 2.44s	remaining: 184ms
93:	learn: 8.9777250	total: 2.46s	remaining: 157ms
94:	learn: 8.9059891	total: 2.49s	remaining: 131ms
95:	learn: 8.8343294	total: 2.52s	remaining: 105ms
96:	learn: 8.7237295	total: 2.54s	remaining: 78.7ms
97:	learn: 8.6401509	total: 2.57s	remaining: 52.5ms
98:	learn: 8.5735108	total: 2.59s	remaining: 26.2ms
99:	learn: 8.5084579	total: 2.62s	remaining: 0us
0:	learn: 46.1633714	total: 25.5ms	remaining: 2.52s
1:	learn: 44.7904617	total: 60.9ms	remaining: 2.99s
2:	learn: 43.5292386	total: 85.9ms	remaining: 2.78s
3:	learn: 42.3776226	total: 111ms	remaining: 2.66s
4:	learn: 41.1726533	total: 135ms	remaining: 2.57s
5:	learn: 40.0256490	total: 159ms	remaining: 2.5s
6:	learn: 39.0318588	total: 183ms	remaining: 2.44s
7:	learn: 38.0361181	total: 207ms	remaining: 2.38s
8:	learn: 37.0398789	total: 231ms	remaining: 2.33s
9:	learn: 36.0525089	total: 254ms	remaining: 2.29s
10:	learn: 35.0926830	total: 279ms	remaining: 2.26s
11:	learn: 34.1467022	total: 309ms	remaining: 2.27s
12:	learn: 33.5625454	total: 334ms	remaining: 2.24s
13:	learn: 32.7993162	total: 359ms	remaining: 2.2s
14:	learn: 32.1179593	total: 388ms	remaining: 2.2s
15:	learn: 31.5382898	total: 416ms	remaining: 2.18s
16:	learn: 30.8398862	total: 442ms	remaining: 2.16s
17:	learn: 30.1060070	total: 471ms	remaining: 2.14s
18:	learn: 29.3826415	total: 507ms	remaining: 2.16s
19:	learn: 28.5809579	total: 535ms	remaining: 2.14s
20:	learn: 28.0104942	total: 563ms	remaining: 2.12s
21:	learn: 27.5189566	total: 592ms	remaining: 2.1s
22:	learn: 26.8603656	total: 619ms	remaining: 2.07s
23:	learn: 26.2547050	total: 647ms	remaining: 2.05s
24:	learn: 25.6559137	total: 673ms	remaining: 2.02s
25:	learn: 25.1148352	total: 701ms	remaining: 1.99s
26:	learn: 24.5782363	total: 745ms	remaining: 2.02s
27:	learn: 24.0350871	total: 773ms	remaining: 1.99s
28:	learn: 23.5119480	total: 799ms	remaining: 1.96s
29:	learn: 23.1119795	total: 826ms	remaining: 1.93s
30:	learn: 22.6838288	total: 854ms	remaining: 1.9s
31:	learn: 22.2554624	total: 881ms	remaining: 1.87s
32:	learn: 21.8241578	total: 910ms	remaining: 1.85s
33:	learn: 21.5062830	total: 943ms	remaining: 1.83s
34:	learn: 21.0109226	total: 982ms	remaining: 1.82s
35:	learn: 20.5518606	total: 1.01s	remaining: 1.79s
36:	learn: 20.1195339	total: 1.04s	remaining: 1.77s
37:	learn: 19.7143479	total: 1.06s	remaining: 1.74s
38:	learn: 19.3325253	total: 1.09s	remaining: 1.71s
39:	learn: 19.0310706	total: 1.12s	remaining: 1.68s
40:	learn: 18.7262797	total: 1.16s	remaining: 1.66s
41:	learn: 18.3611836	total: 1.18s	remaining: 1.63s
42:	learn: 17.9960838	total: 1.21s	remaining: 1.6s
43:	learn: 17.7058991	total: 1.24s	remaining: 1.58s
44:	learn: 17.3944673	total: 1.27s	remaining: 1.55s
45:	learn: 17.1283561	total: 1.3s	remaining: 1.52s
46:	learn: 16.8406890	total: 1.33s	remaining: 1.5s
47:	learn: 16.6072061	total: 1.37s	remaining: 1.48s
48:	learn: 16.3697411	total: 1.4s	remaining: 1.45s
49:	learn: 15.9995507	total: 1.43s	remaining: 1.43s
50:	learn: 15.7372570	total: 1.45s	remaining: 1.4s
51:	learn: 15.4840152	total: 1.49s	remaining: 1.37s
52:	learn: 15.2899590	total: 1.51s	remaining: 1.34s
53:	learn: 15.0111064	total: 1.54s	remaining: 1.31s
54:	learn: 14.7504952	total: 1.57s	remaining: 1.29s
55:	learn: 14.5309762	total: 1.61s	remaining: 1.26s
56:	learn: 14.3525677	total: 1.63s	remaining: 1.23s
57:	learn: 14.1816296	total: 1.66s	remaining: 1.2s
58:	learn: 13.9958516	total: 1.69s	remaining: 1.17s
59:	learn: 13.8356735	total: 1.72s	remaining: 1.15s
60:	learn: 13.6499824	total: 1.75s	remaining: 1.12s
61:	learn: 13.4621357	total: 1.78s	remaining: 1.09s
62:	learn: 13.3234970	total: 1.82s	remaining: 1.07s
63:	learn: 13.1407122	total: 1.84s	remaining: 1.04s
64:	learn: 13.0161177	total: 1.87s	remaining: 1.01s
65:	learn: 12.8361175	total: 1.9s	remaining: 979ms
66:	learn: 12.7103117	total: 1.93s	remaining: 949ms
67:	learn: 12.5145429	total: 1.96s	remaining: 923ms
68:	learn: 12.3966318	total: 1.99s	remaining: 895ms
69:	learn: 12.2175623	total: 2.02s	remaining: 868ms
70:	learn: 12.0455583	total: 2.05s	remaining: 838ms
71:	learn: 11.9190589	total: 2.08s	remaining: 809ms
72:	learn: 11.7990452	total: 2.11s	remaining: 779ms
73:	learn: 11.6735331	total: 2.13s	remaining: 749ms
74:	learn: 11.5694753	total: 2.16s	remaining: 719ms
75:	learn: 11.4471422	total: 2.18s	remaining: 690ms
76:	learn: 11.3357642	total: 2.22s	remaining: 664ms
77:	learn: 11.2160164	total: 2.25s	remaining: 636ms
78:	learn: 11.1477947	total: 2.28s	remaining: 606ms
79:	learn: 11.0733969	total: 2.31s	remaining: 577ms
80:	learn: 10.9851608	total: 2.34s	remaining: 548ms
81:	learn: 10.8669537	total: 2.36s	remaining: 519ms
82:	learn: 10.7846130	total: 2.39s	remaining: 490ms
83:	learn: 10.6429068	total: 2.42s	remaining: 461ms
84:	learn: 10.5485368	total: 2.46s	remaining: 434ms
85:	learn: 10.4626750	total: 2.49s	remaining: 405ms
86:	learn: 10.3487863	total: 2.51s	remaining: 376ms
87:	learn: 10.2608682	total: 2.54s	remaining: 347ms
88:	learn: 10.1492862	total: 2.57s	remaining: 317ms
89:	learn: 10.0825429	total: 2.59s	remaining: 288ms
90:	learn: 9.9668337	total: 2.62s	remaining: 259ms
91:	learn: 9.8924239	total: 2.65s	remaining: 231ms
92:	learn: 9.7959729	total: 2.69s	remaining: 203ms
93:	learn: 9.7342503	total: 2.72s	remaining: 174ms
94:	learn: 9.6266181	total: 2.75s	remaining: 145ms
95:	learn: 9.5607316	total: 2.78s	remaining: 116ms
96:	learn: 9.4615938	total: 2.8s	remaining: 86.7ms
97:	learn: 9.3562852	total: 2.83s	remaining: 57.8ms
98:	learn: 9.2518786	total: 2.86s	remaining: 28.9ms
99:	learn: 9.2130065	total: 2.89s	remaining: 0us
0:	learn: 45.6477780	total: 33.5ms	remaining: 3.31s
1:	learn: 44.3885048	total: 59.9ms	remaining: 2.93s
2:	learn: 43.1316502	total: 86.4ms	remaining: 2.79s
3:	learn: 41.8123054	total: 113ms	remaining: 2.71s
4:	learn: 40.7214533	total: 140ms	remaining: 2.67s
5:	learn: 39.6276122	total: 179ms	remaining: 2.8s
6:	learn: 38.6471225	total: 210ms	remaining: 2.79s
7:	learn: 37.7493668	total: 237ms	remaining: 2.72s
8:	learn: 36.7733816	total: 264ms	remaining: 2.67s
9:	learn: 36.1233521	total: 299ms	remaining: 2.69s
10:	learn: 35.5715091	total: 325ms	remaining: 2.63s
11:	learn: 34.6287751	total: 353ms	remaining: 2.58s
12:	learn: 33.8024988	total: 379ms	remaining: 2.53s
13:	learn: 33.0699864	total: 413ms	remaining: 2.54s
14:	learn: 32.2267139	total: 441ms	remaining: 2.5s
15:	learn: 31.4879090	total: 468ms	remaining: 2.46s
16:	learn: 30.6681130	total: 494ms	remaining: 2.41s
17:	learn: 29.9739192	total: 527ms	remaining: 2.4s
18:	learn: 29.3293065	total: 554ms	remaining: 2.36s
19:	learn: 28.5893418	total: 581ms	remaining: 2.32s
20:	learn: 28.0793862	total: 618ms	remaining: 2.32s
21:	learn: 27.5553702	total: 648ms	remaining: 2.29s
22:	learn: 27.0123732	total: 676ms	remaining: 2.26s
23:	learn: 26.3897992	total: 703ms	remaining: 2.22s
24:	learn: 25.7405079	total: 731ms	remaining: 2.19s
25:	learn: 25.2366375	total: 766ms	remaining: 2.18s
26:	learn: 24.8040727	total: 793ms	remaining: 2.15s
27:	learn: 24.3831145	total: 822ms	remaining: 2.11s
28:	learn: 23.9264258	total: 855ms	remaining: 2.09s
29:	learn: 23.4965665	total: 881ms	remaining: 2.06s
30:	learn: 23.0750907	total: 908ms	remaining: 2.02s
31:	learn: 22.6177456	total: 934ms	remaining: 1.98s
32:	learn: 22.1936903	total: 960ms	remaining: 1.95s
33:	learn: 21.7237373	total: 988ms	remaining: 1.92s
34:	learn: 21.2885821	total: 1.02s	remaining: 1.9s
35:	learn: 20.8773820	total: 1.05s	remaining: 1.86s
36:	learn: 20.5069022	total: 1.09s	remaining: 1.85s
37:	learn: 20.1026772	total: 1.11s	remaining: 1.82s
38:	learn: 19.7278063	total: 1.14s	remaining: 1.78s
39:	learn: 19.4576176	total: 1.17s	remaining: 1.75s
40:	learn: 19.1716041	total: 1.2s	remaining: 1.72s
41:	learn: 18.8541728	total: 1.22s	remaining: 1.69s
42:	learn: 18.6411979	total: 1.26s	remaining: 1.68s
43:	learn: 18.3146636	total: 1.29s	remaining: 1.64s
44:	learn: 18.0208582	total: 1.32s	remaining: 1.61s
45:	learn: 17.7344521	total: 1.34s	remaining: 1.58s
46:	learn: 17.4797974	total: 1.37s	remaining: 1.55s
47:	learn: 17.2182299	total: 1.4s	remaining: 1.51s
48:	learn: 16.9607453	total: 1.42s	remaining: 1.48s
49:	learn: 16.7297863	total: 1.45s	remaining: 1.45s
50:	learn: 16.4913674	total: 1.5s	remaining: 1.44s
51:	learn: 16.2886548	total: 1.53s	remaining: 1.41s
52:	learn: 16.0297055	total: 1.55s	remaining: 1.38s
53:	learn: 15.8558289	total: 1.58s	remaining: 1.35s
54:	learn: 15.6256772	total: 1.61s	remaining: 1.31s
55:	learn: 15.4571057	total: 1.63s	remaining: 1.28s
56:	learn: 15.2857211	total: 1.66s	remaining: 1.25s
57:	learn: 15.0790849	total: 1.69s	remaining: 1.23s
58:	learn: 14.8706573	total: 1.72s	remaining: 1.2s
59:	learn: 14.7142314	total: 1.76s	remaining: 1.17s
60:	learn: 14.5574075	total: 1.78s	remaining: 1.14s
61:	learn: 14.3831719	total: 1.81s	remaining: 1.11s
62:	learn: 14.2429846	total: 1.84s	remaining: 1.08s
63:	learn: 14.0982260	total: 1.86s	remaining: 1.05s
64:	learn: 13.9793470	total: 1.9s	remaining: 1.02s
65:	learn: 13.7843655	total: 1.93s	remaining: 993ms
66:	learn: 13.6382336	total: 1.96s	remaining: 963ms
67:	learn: 13.5395713	total: 1.99s	remaining: 937ms
68:	learn: 13.3797741	total: 2.02s	remaining: 907ms
69:	learn: 13.2910103	total: 2.04s	remaining: 876ms
70:	learn: 13.1587887	total: 2.07s	remaining: 847ms
71:	learn: 13.0464642	total: 2.1s	remaining: 817ms
72:	learn: 12.9189091	total: 2.13s	remaining: 790ms
73:	learn: 12.8056893	total: 2.16s	remaining: 760ms
74:	learn: 12.6904403	total: 2.19s	remaining: 730ms
75:	learn: 12.5608506	total: 2.22s	remaining: 700ms
76:	learn: 12.4712551	total: 2.25s	remaining: 672ms
77:	learn: 12.3371889	total: 2.28s	remaining: 642ms
78:	learn: 12.2449022	total: 2.3s	remaining: 613ms
79:	learn: 12.2163788	total: 2.33s	remaining: 583ms
80:	learn: 12.1464820	total: 2.37s	remaining: 556ms
81:	learn: 12.0001066	total: 2.4s	remaining: 526ms
82:	learn: 11.8843691	total: 2.42s	remaining: 497ms
83:	learn: 11.7638631	total: 2.45s	remaining: 467ms
84:	learn: 11.6389646	total: 2.49s	remaining: 439ms
85:	learn: 11.5343065	total: 2.51s	remaining: 409ms
86:	learn: 11.4267531	total: 2.54s	remaining: 380ms
87:	learn: 11.3136728	total: 2.57s	remaining: 350ms
88:	learn: 11.2361574	total: 2.6s	remaining: 322ms
89:	learn: 11.1507886	total: 2.63s	remaining: 292ms
90:	learn: 11.0988952	total: 2.66s	remaining: 263ms
91:	learn: 10.9988426	total: 2.68s	remaining: 233ms
92:	learn: 10.9584792	total: 2.71s	remaining: 204ms
93:	learn: 10.8771461	total: 2.74s	remaining: 175ms
94:	learn: 10.8161358	total: 2.77s	remaining: 146ms
95:	learn: 10.7524450	total: 2.81s	remaining: 117ms
96:	learn: 10.6566836	total: 2.84s	remaining: 87.7ms
97:	learn: 10.5550602	total: 2.86s	remaining: 58.4ms
98:	learn: 10.4790583	total: 2.89s	remaining: 29.2ms
99:	learn: 10.4087354	total: 2.92s	remaining: 0us
0:	learn: 46.5398832	total: 32.9ms	remaining: 3.26s
1:	learn: 45.3142618	total: 67.4ms	remaining: 3.3s
2:	learn: 44.0378137	total: 93.8ms	remaining: 3.03s
3:	learn: 42.7976734	total: 120ms	remaining: 2.89s
4:	learn: 41.7080859	total: 146ms	remaining: 2.78s
5:	learn: 40.4513327	total: 172ms	remaining: 2.7s
6:	learn: 39.4903346	total: 201ms	remaining: 2.66s
7:	learn: 38.3767870	total: 232ms	remaining: 2.67s
8:	learn: 37.4056810	total: 261ms	remaining: 2.64s
9:	learn: 36.4947716	total: 295ms	remaining: 2.65s
10:	learn: 35.4421832	total: 322ms	remaining: 2.61s
11:	learn: 34.6183487	total: 338ms	remaining: 2.48s
12:	learn: 33.9603524	total: 367ms	remaining: 2.45s
13:	learn: 33.0635534	total: 394ms	remaining: 2.42s
14:	learn: 32.2067999	total: 422ms	remaining: 2.39s
15:	learn: 31.3961282	total: 457ms	remaining: 2.4s
16:	learn: 30.7113239	total: 484ms	remaining: 2.36s
17:	learn: 29.9919005	total: 511ms	remaining: 2.33s
18:	learn: 29.4016891	total: 545ms	remaining: 2.32s
19:	learn: 28.7435066	total: 572ms	remaining: 2.29s
20:	learn: 28.2283605	total: 599ms	remaining: 2.25s
21:	learn: 27.6749781	total: 627ms	remaining: 2.22s
22:	learn: 27.1695356	total: 654ms	remaining: 2.19s
23:	learn: 26.6842901	total: 691ms	remaining: 2.19s
24:	learn: 26.0987344	total: 719ms	remaining: 2.16s
25:	learn: 25.5266873	total: 746ms	remaining: 2.12s
26:	learn: 25.0200431	total: 782ms	remaining: 2.12s
27:	learn: 24.5972016	total: 811ms	remaining: 2.08s
28:	learn: 24.1557061	total: 837ms	remaining: 2.05s
29:	learn: 23.7405036	total: 865ms	remaining: 2.02s
30:	learn: 23.3574513	total: 892ms	remaining: 1.99s
31:	learn: 23.0493499	total: 927ms	remaining: 1.97s
32:	learn: 22.6480655	total: 954ms	remaining: 1.94s
33:	learn: 22.2777353	total: 981ms	remaining: 1.9s
34:	learn: 21.8294628	total: 1.01s	remaining: 1.87s
35:	learn: 21.4783115	total: 1.04s	remaining: 1.85s
36:	learn: 21.1271427	total: 1.07s	remaining: 1.82s
37:	learn: 20.7967443	total: 1.1s	remaining: 1.79s
38:	learn: 20.4949793	total: 1.13s	remaining: 1.76s
39:	learn: 20.1991695	total: 1.16s	remaining: 1.74s
40:	learn: 19.8869467	total: 1.19s	remaining: 1.71s
41:	learn: 19.5656862	total: 1.22s	remaining: 1.68s
42:	learn: 19.2415335	total: 1.24s	remaining: 1.65s
43:	learn: 18.9725471	total: 1.28s	remaining: 1.63s
44:	learn: 18.7035722	total: 1.3s	remaining: 1.6s
45:	learn: 18.3840395	total: 1.33s	remaining: 1.56s
46:	learn: 18.1486662	total: 1.36s	remaining: 1.53s
47:	learn: 17.8740440	total: 1.39s	remaining: 1.51s
48:	learn: 17.6056273	total: 1.42s	remaining: 1.48s
49:	learn: 17.4011083	total: 1.45s	remaining: 1.45s
50:	learn: 17.1935449	total: 1.47s	remaining: 1.42s
51:	learn: 16.9415227	total: 1.51s	remaining: 1.39s
52:	learn: 16.6568624	total: 1.54s	remaining: 1.36s
53:	learn: 16.4254479	total: 1.56s	remaining: 1.33s
54:	learn: 16.1958120	total: 1.59s	remaining: 1.3s
55:	learn: 15.9494332	total: 1.63s	remaining: 1.28s
56:	learn: 15.7736632	total: 1.65s	remaining: 1.25s
57:	learn: 15.6314122	total: 1.68s	remaining: 1.22s
58:	learn: 15.3707626	total: 1.71s	remaining: 1.19s
59:	learn: 15.2211664	total: 1.74s	remaining: 1.16s
60:	learn: 14.9939278	total: 1.77s	remaining: 1.13s
61:	learn: 14.8327626	total: 1.8s	remaining: 1.1s
62:	learn: 14.6555776	total: 1.82s	remaining: 1.07s
63:	learn: 14.5516961	total: 1.86s	remaining: 1.05s
64:	learn: 14.3660780	total: 1.89s	remaining: 1.02s
65:	learn: 14.1721909	total: 1.92s	remaining: 987ms
66:	learn: 14.0877696	total: 1.94s	remaining: 956ms
67:	learn: 13.9435793	total: 1.97s	remaining: 926ms
68:	learn: 13.7745805	total: 2s	remaining: 899ms
69:	learn: 13.6490858	total: 2.03s	remaining: 871ms
70:	learn: 13.5022080	total: 2.07s	remaining: 845ms
71:	learn: 13.3922163	total: 2.1s	remaining: 816ms
72:	learn: 13.2842701	total: 2.12s	remaining: 786ms
73:	learn: 13.1698693	total: 2.15s	remaining: 756ms
74:	learn: 13.0256610	total: 2.18s	remaining: 726ms
75:	learn: 12.8855147	total: 2.21s	remaining: 697ms
76:	learn: 12.7807971	total: 2.23s	remaining: 667ms
77:	learn: 12.6618407	total: 2.27s	remaining: 642ms
78:	learn: 12.5369866	total: 2.3s	remaining: 612ms
79:	learn: 12.4376925	total: 2.33s	remaining: 583ms
80:	learn: 12.3005012	total: 2.36s	remaining: 553ms
81:	learn: 12.1751315	total: 2.38s	remaining: 523ms
82:	learn: 12.0612289	total: 2.41s	remaining: 493ms
83:	learn: 11.9757193	total: 2.44s	remaining: 464ms
84:	learn: 11.8530411	total: 2.46s	remaining: 435ms
85:	learn: 11.7523616	total: 2.5s	remaining: 407ms
86:	learn: 11.6645272	total: 2.54s	remaining: 379ms
87:	learn: 11.5645111	total: 2.56s	remaining: 350ms
88:	learn: 11.4692480	total: 2.59s	remaining: 320ms
89:	learn: 11.3724902	total: 2.62s	remaining: 291ms
90:	learn: 11.2842147	total: 2.65s	remaining: 262ms
91:	learn: 11.1868295	total: 2.67s	remaining: 233ms
92:	learn: 11.0293625	total: 2.7s	remaining: 203ms
93:	learn: 10.9495625	total: 2.74s	remaining: 175ms
94:	learn: 10.8608168	total: 2.77s	remaining: 146ms
95:	learn: 10.7804780	total: 2.79s	remaining: 116ms
96:	learn: 10.6503623	total: 2.82s	remaining: 87.2ms
97:	learn: 10.5906748	total: 2.85s	remaining: 58.1ms
98:	learn: 10.4539468	total: 2.87s	remaining: 29ms
99:	learn: 10.3804160	total: 2.9s	remaining: 0us
0:	learn: 27.3441720	total: 24.4ms	remaining: 2.42s
1:	learn: 26.7159954	total: 49.8ms	remaining: 2.44s
2:	learn: 26.0850318	total: 82.9ms	remaining: 2.68s
3:	learn: 25.4039656	total: 108ms	remaining: 2.59s
4:	learn: 24.7930659	total: 131ms	remaining: 2.5s
5:	learn: 24.2028590	total: 155ms	remaining: 2.43s
6:	learn: 23.6622902	total: 178ms	remaining: 2.37s
7:	learn: 23.1531175	total: 202ms	remaining: 2.32s
8:	learn: 22.7050792	total: 231ms	remaining: 2.34s
9:	learn: 22.2151788	total: 258ms	remaining: 2.32s
10:	learn: 21.7708844	total: 280ms	remaining: 2.27s
11:	learn: 21.2587174	total: 303ms	remaining: 2.22s
12:	learn: 20.7559870	total: 333ms	remaining: 2.23s
13:	learn: 20.3040842	total: 355ms	remaining: 2.18s
14:	learn: 19.9019524	total: 379ms	remaining: 2.15s
15:	learn: 19.5186012	total: 404ms	remaining: 2.12s
16:	learn: 19.1521621	total: 429ms	remaining: 2.09s
17:	learn: 18.7652180	total: 462ms	remaining: 2.1s
18:	learn: 18.4446446	total: 486ms	remaining: 2.07s
19:	learn: 18.0977650	total: 511ms	remaining: 2.04s
20:	learn: 17.7791328	total: 536ms	remaining: 2.02s
21:	learn: 17.4777648	total: 563ms	remaining: 2s
22:	learn: 17.1794361	total: 594ms	remaining: 1.99s
23:	learn: 16.8685032	total: 618ms	remaining: 1.96s
24:	learn: 16.6274695	total: 644ms	remaining: 1.93s
25:	learn: 16.3071099	total: 675ms	remaining: 1.92s
26:	learn: 16.0249663	total: 701ms	remaining: 1.89s
27:	learn: 15.7535309	total: 726ms	remaining: 1.87s
28:	learn: 15.4777235	total: 751ms	remaining: 1.84s
29:	learn: 15.2410825	total: 777ms	remaining: 1.81s
30:	learn: 15.0133002	total: 800ms	remaining: 1.78s
31:	learn: 14.8018912	total: 835ms	remaining: 1.77s
32:	learn: 14.5701546	total: 863ms	remaining: 1.75s
33:	learn: 14.3799060	total: 900ms	remaining: 1.75s
34:	learn: 14.0975095	total: 928ms	remaining: 1.72s
35:	learn: 13.8873493	total: 953ms	remaining: 1.7s
36:	learn: 13.6812023	total: 978ms	remaining: 1.67s
37:	learn: 13.4943017	total: 1s	remaining: 1.64s
38:	learn: 13.3224094	total: 1.03s	remaining: 1.61s
39:	learn: 13.0967901	total: 1.05s	remaining: 1.58s
40:	learn: 12.9138190	total: 1.08s	remaining: 1.55s
41:	learn: 12.7764458	total: 1.12s	remaining: 1.55s
42:	learn: 12.6593656	total: 1.15s	remaining: 1.52s
43:	learn: 12.5051105	total: 1.17s	remaining: 1.49s
44:	learn: 12.3057146	total: 1.2s	remaining: 1.46s
45:	learn: 12.1487674	total: 1.22s	remaining: 1.43s
46:	learn: 11.9614903	total: 1.25s	remaining: 1.4s
47:	learn: 11.7921265	total: 1.27s	remaining: 1.38s
48:	learn: 11.6572640	total: 1.29s	remaining: 1.35s
49:	learn: 11.5251463	total: 1.32s	remaining: 1.32s
50:	learn: 11.3789931	total: 1.35s	remaining: 1.3s
51:	learn: 11.2691375	total: 1.38s	remaining: 1.28s
52:	learn: 11.1161131	total: 1.41s	remaining: 1.25s
53:	learn: 11.0246399	total: 1.43s	remaining: 1.22s
54:	learn: 10.9152420	total: 1.46s	remaining: 1.19s
55:	learn: 10.7746769	total: 1.48s	remaining: 1.17s
56:	learn: 10.6222917	total: 1.51s	remaining: 1.14s
57:	learn: 10.5096115	total: 1.53s	remaining: 1.11s
58:	learn: 10.3857030	total: 1.56s	remaining: 1.09s
59:	learn: 10.2789057	total: 1.59s	remaining: 1.06s
60:	learn: 10.1490749	total: 1.61s	remaining: 1.03s
61:	learn: 10.0553291	total: 1.64s	remaining: 1.01s
62:	learn: 9.9351043	total: 1.67s	remaining: 980ms
63:	learn: 9.8245261	total: 1.69s	remaining: 951ms
64:	learn: 9.7207577	total: 1.71s	remaining: 923ms
65:	learn: 9.5920661	total: 1.74s	remaining: 896ms
66:	learn: 9.4832767	total: 1.77s	remaining: 870ms
67:	learn: 9.3724149	total: 1.8s	remaining: 846ms
68:	learn: 9.2459801	total: 1.82s	remaining: 820ms
69:	learn: 9.1740635	total: 1.85s	remaining: 793ms
70:	learn: 9.1015730	total: 1.88s	remaining: 770ms
71:	learn: 9.0196460	total: 1.91s	remaining: 741ms
72:	learn: 8.9458977	total: 1.93s	remaining: 714ms
73:	learn: 8.8434400	total: 1.96s	remaining: 688ms
74:	learn: 8.7495151	total: 1.99s	remaining: 662ms
75:	learn: 8.6521348	total: 2.01s	remaining: 636ms
76:	learn: 8.5654483	total: 2.04s	remaining: 608ms
77:	learn: 8.4965765	total: 2.06s	remaining: 581ms
78:	learn: 8.4308736	total: 2.08s	remaining: 554ms
79:	learn: 8.3675601	total: 2.1s	remaining: 526ms
80:	learn: 8.3193887	total: 2.14s	remaining: 501ms
81:	learn: 8.2507990	total: 2.16s	remaining: 474ms
82:	learn: 8.1583259	total: 2.19s	remaining: 449ms
83:	learn: 8.0995902	total: 2.22s	remaining: 423ms
84:	learn: 8.0236655	total: 2.24s	remaining: 396ms
85:	learn: 7.9634698	total: 2.27s	remaining: 369ms
86:	learn: 7.9109081	total: 2.29s	remaining: 343ms
87:	learn: 7.8385006	total: 2.32s	remaining: 316ms
88:	learn: 7.7859488	total: 2.34s	remaining: 289ms
89:	learn: 7.7270142	total: 2.37s	remaining: 263ms
90:	learn: 7.6774253	total: 2.4s	remaining: 237ms
91:	learn: 7.6126552	total: 2.43s	remaining: 211ms
92:	learn: 7.5392178	total: 2.45s	remaining: 184ms
93:	learn: 7.4745082	total: 2.47s	remaining: 158ms
94:	learn: 7.4106939	total: 2.5s	remaining: 131ms
95:	learn: 7.3573350	total: 2.52s	remaining: 105ms
96:	learn: 7.2889777	total: 2.54s	remaining: 78.7ms
97:	learn: 7.2204939	total: 2.57s	remaining: 52.4ms
98:	learn: 7.1646465	total: 2.59s	remaining: 26.2ms
99:	learn: 7.1204610	total: 2.63s	remaining: 0us
0:	learn: 42.5494645	total: 24.2ms	remaining: 2.39s
1:	learn: 41.2913513	total: 44.3ms	remaining: 2.17s
2:	learn: 40.1676527	total: 65.9ms	remaining: 2.13s
3:	learn: 38.7664819	total: 88.1ms	remaining: 2.11s
4:	learn: 37.5407492	total: 111ms	remaining: 2.12s
5:	learn: 36.4295331	total: 136ms	remaining: 2.13s
6:	learn: 35.2895967	total: 168ms	remaining: 2.23s
7:	learn: 34.1884539	total: 193ms	remaining: 2.22s
8:	learn: 33.1817690	total: 214ms	remaining: 2.17s
9:	learn: 32.3518195	total: 234ms	remaining: 2.11s
10:	learn: 31.4837515	total: 256ms	remaining: 2.07s
11:	learn: 30.7255972	total: 279ms	remaining: 2.04s
12:	learn: 29.9298648	total: 299ms	remaining: 2s
13:	learn: 29.0574249	total: 322ms	remaining: 1.98s
14:	learn: 28.4097384	total: 345ms	remaining: 1.95s
15:	learn: 27.5317445	total: 375ms	remaining: 1.97s
16:	learn: 26.7911946	total: 401ms	remaining: 1.96s
17:	learn: 26.1103465	total: 423ms	remaining: 1.93s
18:	learn: 25.5295903	total: 446ms	remaining: 1.9s
19:	learn: 24.8544960	total: 470ms	remaining: 1.88s
20:	learn: 24.2772682	total: 491ms	remaining: 1.85s
21:	learn: 23.6936944	total: 513ms	remaining: 1.82s
22:	learn: 23.1300945	total: 535ms	remaining: 1.79s
23:	learn: 22.5333494	total: 562ms	remaining: 1.78s
24:	learn: 22.0553465	total: 588ms	remaining: 1.76s
25:	learn: 21.6253628	total: 611ms	remaining: 1.74s
26:	learn: 21.1396219	total: 633ms	remaining: 1.71s
27:	learn: 20.7382905	total: 653ms	remaining: 1.68s
28:	learn: 20.3233915	total: 675ms	remaining: 1.65s
29:	learn: 19.9323992	total: 697ms	remaining: 1.63s
30:	learn: 19.5650439	total: 717ms	remaining: 1.59s
31:	learn: 19.2165649	total: 738ms	remaining: 1.57s
32:	learn: 18.8890056	total: 762ms	remaining: 1.55s
33:	learn: 18.5523762	total: 788ms	remaining: 1.53s
34:	learn: 18.2666116	total: 819ms	remaining: 1.52s
35:	learn: 17.9216926	total: 842ms	remaining: 1.5s
36:	learn: 17.6118879	total: 866ms	remaining: 1.48s
37:	learn: 17.2653313	total: 889ms	remaining: 1.45s
38:	learn: 16.9946585	total: 912ms	remaining: 1.43s
39:	learn: 16.6842506	total: 931ms	remaining: 1.4s
40:	learn: 16.4102287	total: 953ms	remaining: 1.37s
41:	learn: 16.2288795	total: 977ms	remaining: 1.35s
42:	learn: 15.9623692	total: 1s	remaining: 1.33s
43:	learn: 15.7308231	total: 1.03s	remaining: 1.31s
44:	learn: 15.4695555	total: 1.05s	remaining: 1.28s
45:	learn: 15.2706809	total: 1.07s	remaining: 1.26s
46:	learn: 15.0182699	total: 1.09s	remaining: 1.23s
47:	learn: 14.7702088	total: 1.11s	remaining: 1.21s
48:	learn: 14.6303566	total: 1.14s	remaining: 1.18s
49:	learn: 14.4038016	total: 1.16s	remaining: 1.16s
50:	learn: 14.2309807	total: 1.18s	remaining: 1.14s
51:	learn: 14.0308425	total: 1.21s	remaining: 1.11s
52:	learn: 13.8201931	total: 1.24s	remaining: 1.1s
53:	learn: 13.6070078	total: 1.26s	remaining: 1.08s
54:	learn: 13.4230690	total: 1.29s	remaining: 1.05s
55:	learn: 13.2368649	total: 1.31s	remaining: 1.03s
56:	learn: 13.0449556	total: 1.34s	remaining: 1.01s
57:	learn: 12.8375669	total: 1.36s	remaining: 984ms
58:	learn: 12.6795194	total: 1.38s	remaining: 959ms
59:	learn: 12.5197211	total: 1.4s	remaining: 936ms
60:	learn: 12.4011717	total: 1.43s	remaining: 916ms
61:	learn: 12.2396104	total: 1.46s	remaining: 893ms
62:	learn: 12.0647878	total: 1.48s	remaining: 868ms
63:	learn: 11.9247719	total: 1.5s	remaining: 844ms
64:	learn: 11.7923634	total: 1.52s	remaining: 821ms
65:	learn: 11.6628246	total: 1.54s	remaining: 796ms
66:	learn: 11.5688935	total: 1.56s	remaining: 771ms
67:	learn: 11.4345056	total: 1.59s	remaining: 747ms
68:	learn: 11.3136955	total: 1.61s	remaining: 722ms
69:	learn: 11.2040357	total: 1.63s	remaining: 698ms
70:	learn: 11.1067773	total: 1.66s	remaining: 676ms
71:	learn: 10.9728105	total: 1.69s	remaining: 656ms
72:	learn: 10.8338607	total: 1.71s	remaining: 633ms
73:	learn: 10.7202016	total: 1.73s	remaining: 609ms
74:	learn: 10.5983746	total: 1.75s	remaining: 585ms
75:	learn: 10.4882458	total: 1.78s	remaining: 562ms
76:	learn: 10.3827604	total: 1.8s	remaining: 538ms
77:	learn: 10.2485726	total: 1.82s	remaining: 514ms
78:	learn: 10.1524716	total: 1.84s	remaining: 491ms
79:	learn: 10.0765127	total: 1.87s	remaining: 467ms
80:	learn: 9.9617067	total: 1.9s	remaining: 445ms
81:	learn: 9.8357151	total: 1.92s	remaining: 421ms
82:	learn: 9.7311644	total: 1.94s	remaining: 398ms
83:	learn: 9.6314802	total: 1.96s	remaining: 374ms
84:	learn: 9.5137958	total: 1.98s	remaining: 350ms
85:	learn: 9.4420485	total: 2.01s	remaining: 327ms
86:	learn: 9.3959294	total: 2.03s	remaining: 303ms
87:	learn: 9.3057742	total: 2.05s	remaining: 279ms
88:	learn: 9.2031484	total: 2.07s	remaining: 256ms
89:	learn: 9.0996948	total: 2.1s	remaining: 233ms
90:	learn: 9.0492278	total: 2.13s	remaining: 211ms
91:	learn: 8.9400377	total: 2.15s	remaining: 187ms
92:	learn: 8.8904458	total: 2.17s	remaining: 164ms
93:	learn: 8.8102982	total: 2.19s	remaining: 140ms
94:	learn: 8.7445451	total: 2.22s	remaining: 117ms
95:	learn: 8.6796106	total: 2.24s	remaining: 93.3ms
96:	learn: 8.5875790	total: 2.26s	remaining: 69.9ms
97:	learn: 8.5086871	total: 2.28s	remaining: 46.5ms
98:	learn: 8.4547244	total: 2.31s	remaining: 23.3ms
99:	learn: 8.3841281	total: 2.33s	remaining: 0us
0:	learn: 46.2258117	total: 2.68ms	remaining: 265ms
1:	learn: 45.1253456	total: 23.7ms	remaining: 1.16s
2:	learn: 43.7311767	total: 45ms	remaining: 1.46s
3:	learn: 42.4252819	total: 66.3ms	remaining: 1.59s
4:	learn: 41.1436655	total: 88.1ms	remaining: 1.67s
5:	learn: 40.0337136	total: 109ms	remaining: 1.7s
6:	learn: 38.9102686	total: 131ms	remaining: 1.74s
7:	learn: 37.7859737	total: 154ms	remaining: 1.77s
8:	learn: 36.7646905	total: 182ms	remaining: 1.84s
9:	learn: 35.9495481	total: 206ms	remaining: 1.85s
10:	learn: 35.0558185	total: 229ms	remaining: 1.85s
11:	learn: 34.1958090	total: 251ms	remaining: 1.84s
12:	learn: 33.3514013	total: 274ms	remaining: 1.83s
13:	learn: 32.3317086	total: 294ms	remaining: 1.8s
14:	learn: 31.5611046	total: 316ms	remaining: 1.79s
15:	learn: 30.6373573	total: 337ms	remaining: 1.77s
16:	learn: 29.8883669	total: 360ms	remaining: 1.76s
17:	learn: 29.2985952	total: 386ms	remaining: 1.76s
18:	learn: 28.6360550	total: 411ms	remaining: 1.75s
19:	learn: 27.9757056	total: 433ms	remaining: 1.73s
20:	learn: 27.2585835	total: 454ms	remaining: 1.71s
21:	learn: 26.6366391	total: 475ms	remaining: 1.68s
22:	learn: 26.1055455	total: 496ms	remaining: 1.66s
23:	learn: 25.4961568	total: 517ms	remaining: 1.64s
24:	learn: 25.1037435	total: 539ms	remaining: 1.62s
25:	learn: 24.5258982	total: 562ms	remaining: 1.6s
26:	learn: 23.9974764	total: 589ms	remaining: 1.59s
27:	learn: 23.5108419	total: 615ms	remaining: 1.58s
28:	learn: 23.0835773	total: 638ms	remaining: 1.56s
29:	learn: 22.5744350	total: 660ms	remaining: 1.54s
30:	learn: 22.1357783	total: 683ms	remaining: 1.52s
31:	learn: 21.7316226	total: 706ms	remaining: 1.5s
32:	learn: 21.4082899	total: 729ms	remaining: 1.48s
33:	learn: 20.9640138	total: 752ms	remaining: 1.46s
34:	learn: 20.6379417	total: 772ms	remaining: 1.43s
35:	learn: 20.2688010	total: 795ms	remaining: 1.41s
36:	learn: 19.8479214	total: 820ms	remaining: 1.4s
37:	learn: 19.5684638	total: 845ms	remaining: 1.38s
38:	learn: 19.1826919	total: 866ms	remaining: 1.35s
39:	learn: 18.9583308	total: 888ms	remaining: 1.33s
40:	learn: 18.6736002	total: 908ms	remaining: 1.31s
41:	learn: 18.3525328	total: 931ms	remaining: 1.28s
42:	learn: 17.9954191	total: 953ms	remaining: 1.26s
43:	learn: 17.6991520	total: 974ms	remaining: 1.24s
44:	learn: 17.3697888	total: 995ms	remaining: 1.22s
45:	learn: 17.0519636	total: 1.02s	remaining: 1.19s
46:	learn: 16.7829795	total: 1.04s	remaining: 1.18s
47:	learn: 16.5108695	total: 1.07s	remaining: 1.16s
48:	learn: 16.2366816	total: 1.09s	remaining: 1.14s
49:	learn: 15.9947350	total: 1.12s	remaining: 1.12s
50:	learn: 15.7513561	total: 1.14s	remaining: 1.09s
51:	learn: 15.4328481	total: 1.16s	remaining: 1.07s
52:	learn: 15.2497907	total: 1.18s	remaining: 1.05s
53:	learn: 15.0417076	total: 1.2s	remaining: 1.02s
54:	learn: 14.8861891	total: 1.22s	remaining: 1s
55:	learn: 14.6497794	total: 1.25s	remaining: 985ms
56:	learn: 14.3664771	total: 1.29s	remaining: 972ms
57:	learn: 14.2358168	total: 1.31s	remaining: 949ms
58:	learn: 14.0712722	total: 1.33s	remaining: 926ms
59:	learn: 13.9191649	total: 1.36s	remaining: 904ms
60:	learn: 13.7032356	total: 1.38s	remaining: 882ms
61:	learn: 13.5029041	total: 1.4s	remaining: 860ms
62:	learn: 13.3568908	total: 1.43s	remaining: 839ms
63:	learn: 13.1332696	total: 1.45s	remaining: 816ms
64:	learn: 13.0323137	total: 1.48s	remaining: 798ms
65:	learn: 12.8622078	total: 1.5s	remaining: 776ms
66:	learn: 12.7088186	total: 1.53s	remaining: 753ms
67:	learn: 12.5524646	total: 1.55s	remaining: 731ms
68:	learn: 12.4646011	total: 1.57s	remaining: 708ms
69:	learn: 12.3900687	total: 1.6s	remaining: 685ms
70:	learn: 12.2908367	total: 1.62s	remaining: 661ms
71:	learn: 12.1294405	total: 1.64s	remaining: 638ms
72:	learn: 12.0359996	total: 1.66s	remaining: 615ms
73:	learn: 11.9244352	total: 1.69s	remaining: 595ms
74:	learn: 11.8312038	total: 1.72s	remaining: 572ms
75:	learn: 11.6622123	total: 1.74s	remaining: 549ms
76:	learn: 11.5959180	total: 1.76s	remaining: 526ms
77:	learn: 11.4538852	total: 1.78s	remaining: 503ms
78:	learn: 11.3700375	total: 1.8s	remaining: 480ms
79:	learn: 11.2101447	total: 1.83s	remaining: 457ms
80:	learn: 11.0614634	total: 1.85s	remaining: 434ms
81:	learn: 10.9029225	total: 1.88s	remaining: 412ms
82:	learn: 10.7792030	total: 1.9s	remaining: 390ms
83:	learn: 10.6279451	total: 1.93s	remaining: 367ms
84:	learn: 10.5530267	total: 1.95s	remaining: 344ms
85:	learn: 10.4577150	total: 1.97s	remaining: 322ms
86:	learn: 10.4076417	total: 2s	remaining: 298ms
87:	learn: 10.3166632	total: 2.02s	remaining: 276ms
88:	learn: 10.2018151	total: 2.04s	remaining: 252ms
89:	learn: 10.0698484	total: 2.06s	remaining: 229ms
90:	learn: 10.0162824	total: 2.08s	remaining: 206ms
91:	learn: 9.9352639	total: 2.11s	remaining: 184ms
92:	learn: 9.8316734	total: 2.14s	remaining: 161ms
93:	learn: 9.7195471	total: 2.16s	remaining: 138ms
94:	learn: 9.5914894	total: 2.18s	remaining: 115ms
95:	learn: 9.5151851	total: 2.2s	remaining: 91.8ms
96:	learn: 9.3911314	total: 2.22s	remaining: 68.8ms
97:	learn: 9.3417706	total: 2.25s	remaining: 45.9ms
98:	learn: 9.2708440	total: 2.27s	remaining: 22.9ms
99:	learn: 9.1660321	total: 2.29s	remaining: 0us
0:	learn: 45.8627255	total: 3.19ms	remaining: 315ms
1:	learn: 44.7432040	total: 26ms	remaining: 1.27s
2:	learn: 43.4398568	total: 50.1ms	remaining: 1.62s
3:	learn: 42.1495515	total: 74.8ms	remaining: 1.79s
4:	learn: 40.9712633	total: 97.1ms	remaining: 1.84s
5:	learn: 40.0119591	total: 118ms	remaining: 1.85s
6:	learn: 39.1914360	total: 142ms	remaining: 1.88s
7:	learn: 38.1861536	total: 165ms	remaining: 1.89s
8:	learn: 37.1477128	total: 187ms	remaining: 1.89s
9:	learn: 36.3044702	total: 220ms	remaining: 1.98s
10:	learn: 35.5837917	total: 245ms	remaining: 1.98s
11:	learn: 34.8664158	total: 266ms	remaining: 1.95s
12:	learn: 33.9129833	total: 288ms	remaining: 1.93s
13:	learn: 32.9094642	total: 310ms	remaining: 1.9s
14:	learn: 32.1965787	total: 332ms	remaining: 1.88s
15:	learn: 31.4598238	total: 354ms	remaining: 1.86s
16:	learn: 30.6578027	total: 377ms	remaining: 1.84s
17:	learn: 30.0227468	total: 401ms	remaining: 1.82s
18:	learn: 29.2954728	total: 432ms	remaining: 1.84s
19:	learn: 28.5928084	total: 457ms	remaining: 1.83s
20:	learn: 27.9445984	total: 481ms	remaining: 1.81s
21:	learn: 27.3493298	total: 503ms	remaining: 1.78s
22:	learn: 26.8491966	total: 527ms	remaining: 1.76s
23:	learn: 26.3177453	total: 548ms	remaining: 1.74s
24:	learn: 25.8134533	total: 571ms	remaining: 1.71s
25:	learn: 25.2000018	total: 593ms	remaining: 1.69s
26:	learn: 24.6570461	total: 617ms	remaining: 1.67s
27:	learn: 24.1062982	total: 649ms	remaining: 1.67s
28:	learn: 23.7489370	total: 672ms	remaining: 1.65s
29:	learn: 23.2050536	total: 695ms	remaining: 1.62s
30:	learn: 22.7824379	total: 717ms	remaining: 1.6s
31:	learn: 22.4052655	total: 739ms	remaining: 1.57s
32:	learn: 21.9525639	total: 761ms	remaining: 1.54s
33:	learn: 21.5482900	total: 784ms	remaining: 1.52s
34:	learn: 21.1900983	total: 807ms	remaining: 1.5s
35:	learn: 20.8243957	total: 832ms	remaining: 1.48s
36:	learn: 20.4401288	total: 861ms	remaining: 1.47s
37:	learn: 20.0960622	total: 885ms	remaining: 1.44s
38:	learn: 19.7795108	total: 908ms	remaining: 1.42s
39:	learn: 19.4922451	total: 930ms	remaining: 1.39s
40:	learn: 19.1827582	total: 952ms	remaining: 1.37s
41:	learn: 18.8902445	total: 973ms	remaining: 1.34s
42:	learn: 18.6833086	total: 995ms	remaining: 1.32s
43:	learn: 18.4251972	total: 1.02s	remaining: 1.29s
44:	learn: 18.1471037	total: 1.04s	remaining: 1.27s
45:	learn: 17.8420017	total: 1.07s	remaining: 1.25s
46:	learn: 17.6101998	total: 1.09s	remaining: 1.23s
47:	learn: 17.3353656	total: 1.11s	remaining: 1.2s
48:	learn: 17.1194789	total: 1.13s	remaining: 1.18s
49:	learn: 16.8898454	total: 1.15s	remaining: 1.15s
50:	learn: 16.6657497	total: 1.17s	remaining: 1.12s
51:	learn: 16.3832867	total: 1.19s	remaining: 1.1s
52:	learn: 16.2098226	total: 1.21s	remaining: 1.07s
53:	learn: 16.0045707	total: 1.23s	remaining: 1.05s
54:	learn: 15.8512887	total: 1.25s	remaining: 1.02s
55:	learn: 15.6485628	total: 1.28s	remaining: 1.01s
56:	learn: 15.4841428	total: 1.31s	remaining: 986ms
57:	learn: 15.3383158	total: 1.33s	remaining: 963ms
58:	learn: 15.2056282	total: 1.35s	remaining: 940ms
59:	learn: 15.0698337	total: 1.38s	remaining: 917ms
60:	learn: 14.8487796	total: 1.4s	remaining: 892ms
61:	learn: 14.7255751	total: 1.41s	remaining: 867ms
62:	learn: 14.6100414	total: 1.44s	remaining: 844ms
63:	learn: 14.3864212	total: 1.46s	remaining: 821ms
64:	learn: 14.2800460	total: 1.48s	remaining: 799ms
65:	learn: 14.1017299	total: 1.51s	remaining: 777ms
66:	learn: 13.9655015	total: 1.53s	remaining: 754ms
67:	learn: 13.8065764	total: 1.55s	remaining: 729ms
68:	learn: 13.7473285	total: 1.57s	remaining: 705ms
69:	learn: 13.6967309	total: 1.59s	remaining: 681ms
70:	learn: 13.6253255	total: 1.61s	remaining: 657ms
71:	learn: 13.4974926	total: 1.63s	remaining: 634ms
72:	learn: 13.4142694	total: 1.65s	remaining: 610ms
73:	learn: 13.2902600	total: 1.67s	remaining: 587ms
74:	learn: 13.1816461	total: 1.69s	remaining: 564ms
75:	learn: 13.0809498	total: 1.72s	remaining: 545ms
76:	learn: 12.9772285	total: 1.75s	remaining: 523ms
77:	learn: 12.8413858	total: 1.77s	remaining: 500ms
78:	learn: 12.7615799	total: 1.79s	remaining: 477ms
79:	learn: 12.5808659	total: 1.81s	remaining: 454ms
80:	learn: 12.4938330	total: 1.84s	remaining: 431ms
81:	learn: 12.3745576	total: 1.86s	remaining: 408ms
82:	learn: 12.2474104	total: 1.88s	remaining: 385ms
83:	learn: 12.1582297	total: 1.9s	remaining: 363ms
84:	learn: 12.0528081	total: 1.93s	remaining: 341ms
85:	learn: 11.9483355	total: 1.95s	remaining: 318ms
86:	learn: 11.8683204	total: 1.98s	remaining: 295ms
87:	learn: 11.7680945	total: 2s	remaining: 272ms
88:	learn: 11.6635447	total: 2.02s	remaining: 249ms
89:	learn: 11.5775031	total: 2.04s	remaining: 226ms
90:	learn: 11.4860538	total: 2.06s	remaining: 203ms
91:	learn: 11.3584960	total: 2.08s	remaining: 181ms
92:	learn: 11.2180285	total: 2.1s	remaining: 158ms
93:	learn: 11.0996558	total: 2.12s	remaining: 135ms
94:	learn: 10.9688832	total: 2.14s	remaining: 113ms
95:	learn: 10.9205457	total: 2.17s	remaining: 90.5ms
96:	learn: 10.8462783	total: 2.19s	remaining: 67.9ms
97:	learn: 10.7481890	total: 2.21s	remaining: 45.2ms
98:	learn: 10.6396315	total: 2.24s	remaining: 22.6ms
99:	learn: 10.5895308	total: 2.26s	remaining: 0us
0:	learn: 46.2892189	total: 21.5ms	remaining: 2.13s
1:	learn: 44.9732744	total: 44ms	remaining: 2.16s
2:	learn: 43.8887345	total: 81.5ms	remaining: 2.63s
3:	learn: 42.6526320	total: 103ms	remaining: 2.47s
4:	learn: 41.4812505	total: 125ms	remaining: 2.38s
5:	learn: 40.4431224	total: 148ms	remaining: 2.32s
6:	learn: 39.2936749	total: 171ms	remaining: 2.27s
7:	learn: 38.1961652	total: 191ms	remaining: 2.19s
8:	learn: 37.2194841	total: 212ms	remaining: 2.14s
9:	learn: 36.2518666	total: 231ms	remaining: 2.08s
10:	learn: 35.4919224	total: 253ms	remaining: 2.04s
11:	learn: 34.6975877	total: 287ms	remaining: 2.11s
12:	learn: 33.7869362	total: 315ms	remaining: 2.11s
13:	learn: 33.0646033	total: 341ms	remaining: 2.09s
14:	learn: 32.1821772	total: 364ms	remaining: 2.06s
15:	learn: 31.4340749	total: 386ms	remaining: 2.02s
16:	learn: 30.6504198	total: 408ms	remaining: 1.99s
17:	learn: 30.0090260	total: 430ms	remaining: 1.96s
18:	learn: 29.4233143	total: 453ms	remaining: 1.93s
19:	learn: 28.7661957	total: 477ms	remaining: 1.91s
20:	learn: 28.1570594	total: 506ms	remaining: 1.9s
21:	learn: 27.6140124	total: 534ms	remaining: 1.89s
22:	learn: 27.0130709	total: 557ms	remaining: 1.86s
23:	learn: 26.2648081	total: 580ms	remaining: 1.84s
24:	learn: 25.7963649	total: 603ms	remaining: 1.81s
25:	learn: 25.2713860	total: 625ms	remaining: 1.78s
26:	learn: 24.8080692	total: 646ms	remaining: 1.75s
27:	learn: 24.3042862	total: 666ms	remaining: 1.71s
28:	learn: 23.9097237	total: 689ms	remaining: 1.69s
29:	learn: 23.4953174	total: 712ms	remaining: 1.66s
30:	learn: 23.0484452	total: 739ms	remaining: 1.65s
31:	learn: 22.7100962	total: 763ms	remaining: 1.62s
32:	learn: 22.1662267	total: 783ms	remaining: 1.59s
33:	learn: 21.7339884	total: 804ms	remaining: 1.56s
34:	learn: 21.3699422	total: 825ms	remaining: 1.53s
35:	learn: 21.0249329	total: 847ms	remaining: 1.51s
36:	learn: 20.6187923	total: 869ms	remaining: 1.48s
37:	learn: 20.2401981	total: 890ms	remaining: 1.45s
38:	learn: 19.9712328	total: 914ms	remaining: 1.43s
39:	learn: 19.6429610	total: 944ms	remaining: 1.42s
40:	learn: 19.3281556	total: 969ms	remaining: 1.39s
41:	learn: 19.0925924	total: 992ms	remaining: 1.37s
42:	learn: 18.8118712	total: 1.01s	remaining: 1.35s
43:	learn: 18.5355748	total: 1.04s	remaining: 1.32s
44:	learn: 18.2783929	total: 1.06s	remaining: 1.3s
45:	learn: 17.9915490	total: 1.08s	remaining: 1.27s
46:	learn: 17.7323317	total: 1.1s	remaining: 1.25s
47:	learn: 17.4448307	total: 1.13s	remaining: 1.23s
48:	learn: 17.2419782	total: 1.16s	remaining: 1.21s
49:	learn: 16.9351352	total: 1.18s	remaining: 1.18s
50:	learn: 16.7728723	total: 1.21s	remaining: 1.16s
51:	learn: 16.5718087	total: 1.23s	remaining: 1.13s
52:	learn: 16.4047483	total: 1.25s	remaining: 1.11s
53:	learn: 16.2888950	total: 1.27s	remaining: 1.08s
54:	learn: 16.1353042	total: 1.29s	remaining: 1.06s
55:	learn: 15.9384012	total: 1.31s	remaining: 1.03s
56:	learn: 15.7488511	total: 1.34s	remaining: 1.01s
57:	learn: 15.5682846	total: 1.36s	remaining: 985ms
58:	learn: 15.3488716	total: 1.39s	remaining: 966ms
59:	learn: 15.2291272	total: 1.42s	remaining: 944ms
60:	learn: 15.0582519	total: 1.44s	remaining: 920ms
61:	learn: 14.8478458	total: 1.46s	remaining: 896ms
62:	learn: 14.6663416	total: 1.49s	remaining: 873ms
63:	learn: 14.4830825	total: 1.51s	remaining: 847ms
64:	learn: 14.3300895	total: 1.53s	remaining: 823ms
65:	learn: 14.1168590	total: 1.55s	remaining: 799ms
66:	learn: 13.9783298	total: 1.58s	remaining: 778ms
67:	learn: 13.8132857	total: 1.6s	remaining: 755ms
68:	learn: 13.7050863	total: 1.63s	remaining: 731ms
69:	learn: 13.5742501	total: 1.65s	remaining: 706ms
70:	learn: 13.4851362	total: 1.67s	remaining: 681ms
71:	learn: 13.3300610	total: 1.69s	remaining: 657ms
72:	learn: 13.2223060	total: 1.71s	remaining: 633ms
73:	learn: 13.0706731	total: 1.73s	remaining: 609ms
74:	learn: 12.9178099	total: 1.76s	remaining: 586ms
75:	learn: 12.7954645	total: 1.78s	remaining: 562ms
76:	learn: 12.7133688	total: 1.81s	remaining: 541ms
77:	learn: 12.5745537	total: 1.83s	remaining: 518ms
78:	learn: 12.4765302	total: 1.86s	remaining: 494ms
79:	learn: 12.3609145	total: 1.88s	remaining: 471ms
80:	learn: 12.2437759	total: 1.91s	remaining: 447ms
81:	learn: 12.1583763	total: 1.93s	remaining: 424ms
82:	learn: 12.0202500	total: 1.95s	remaining: 400ms
83:	learn: 11.9125166	total: 1.97s	remaining: 376ms
84:	learn: 11.8100729	total: 2s	remaining: 352ms
85:	learn: 11.7509521	total: 2.03s	remaining: 330ms
86:	learn: 11.6448436	total: 2.05s	remaining: 306ms
87:	learn: 11.5550170	total: 2.07s	remaining: 283ms
88:	learn: 11.4624708	total: 2.09s	remaining: 259ms
89:	learn: 11.3547761	total: 2.12s	remaining: 235ms
90:	learn: 11.2513910	total: 2.14s	remaining: 211ms
91:	learn: 11.1414483	total: 2.16s	remaining: 188ms
92:	learn: 11.0742264	total: 2.18s	remaining: 164ms
93:	learn: 10.9721772	total: 2.21s	remaining: 141ms
94:	learn: 10.9118054	total: 2.24s	remaining: 118ms
95:	learn: 10.8465290	total: 2.26s	remaining: 94.3ms
96:	learn: 10.7451745	total: 2.29s	remaining: 70.7ms
97:	learn: 10.6173565	total: 2.31s	remaining: 47.1ms
98:	learn: 10.5562158	total: 2.33s	remaining: 23.6ms
99:	learn: 10.4564960	total: 2.36s	remaining: 0us
0:	learn: 27.5331316	total: 22ms	remaining: 4.39s
1:	learn: 27.0928878	total: 49.2ms	remaining: 4.88s
2:	learn: 26.6215397	total: 70.9ms	remaining: 4.66s
3:	learn: 26.1320797	total: 90.5ms	remaining: 4.43s
4:	learn: 25.5708114	total: 110ms	remaining: 4.28s
5:	learn: 25.1569609	total: 131ms	remaining: 4.22s
6:	learn: 24.6776916	total: 152ms	remaining: 4.18s
7:	learn: 24.3131466	total: 171ms	remaining: 4.1s
8:	learn: 23.9291269	total: 192ms	remaining: 4.08s
9:	learn: 23.5838366	total: 213ms	remaining: 4.04s
10:	learn: 23.2314577	total: 233ms	remaining: 4s
11:	learn: 22.8869949	total: 254ms	remaining: 3.98s
12:	learn: 22.4245937	total: 275ms	remaining: 3.96s
13:	learn: 22.0206534	total: 307ms	remaining: 4.08s
14:	learn: 21.7022606	total: 331ms	remaining: 4.09s
15:	learn: 21.3968672	total: 355ms	remaining: 4.08s
16:	learn: 20.9882573	total: 377ms	remaining: 4.06s
17:	learn: 20.6789624	total: 400ms	remaining: 4.04s
18:	learn: 20.3827949	total: 420ms	remaining: 4s
19:	learn: 20.1544166	total: 441ms	remaining: 3.97s
20:	learn: 19.9121457	total: 463ms	remaining: 3.94s
21:	learn: 19.6621421	total: 485ms	remaining: 3.92s
22:	learn: 19.3501569	total: 513ms	remaining: 3.95s
23:	learn: 19.0889327	total: 536ms	remaining: 3.93s
24:	learn: 18.8689195	total: 556ms	remaining: 3.89s
25:	learn: 18.5964445	total: 579ms	remaining: 3.87s
26:	learn: 18.3364834	total: 600ms	remaining: 3.85s
27:	learn: 18.1076409	total: 622ms	remaining: 3.82s
28:	learn: 17.8878261	total: 643ms	remaining: 3.79s
29:	learn: 17.6774627	total: 663ms	remaining: 3.76s
30:	learn: 17.4836295	total: 685ms	remaining: 3.73s
31:	learn: 17.2733761	total: 712ms	remaining: 3.74s
32:	learn: 17.0468867	total: 737ms	remaining: 3.73s
33:	learn: 16.8108325	total: 759ms	remaining: 3.71s
34:	learn: 16.5415211	total: 782ms	remaining: 3.68s
35:	learn: 16.3714184	total: 804ms	remaining: 3.66s
36:	learn: 16.1608788	total: 827ms	remaining: 3.64s
37:	learn: 15.9984328	total: 847ms	remaining: 3.61s
38:	learn: 15.8335060	total: 867ms	remaining: 3.58s
39:	learn: 15.6602202	total: 887ms	remaining: 3.55s
40:	learn: 15.4954581	total: 910ms	remaining: 3.53s
41:	learn: 15.3620882	total: 937ms	remaining: 3.52s
42:	learn: 15.2140166	total: 962ms	remaining: 3.51s
43:	learn: 15.0870086	total: 983ms	remaining: 3.48s
44:	learn: 14.9147154	total: 1s	remaining: 3.46s
45:	learn: 14.7609171	total: 1.02s	remaining: 3.43s
46:	learn: 14.5901052	total: 1.04s	remaining: 3.4s
47:	learn: 14.4273259	total: 1.06s	remaining: 3.37s
48:	learn: 14.2798610	total: 1.08s	remaining: 3.34s
49:	learn: 14.1021139	total: 1.1s	remaining: 3.31s
50:	learn: 13.9902689	total: 1.13s	remaining: 3.29s
51:	learn: 13.8779536	total: 1.15s	remaining: 3.28s
52:	learn: 13.7445550	total: 1.18s	remaining: 3.27s
53:	learn: 13.6337249	total: 1.2s	remaining: 3.25s
54:	learn: 13.5400472	total: 1.23s	remaining: 3.23s
55:	learn: 13.3803597	total: 1.25s	remaining: 3.21s
56:	learn: 13.2902125	total: 1.27s	remaining: 3.19s
57:	learn: 13.1578553	total: 1.29s	remaining: 3.16s
58:	learn: 13.0362047	total: 1.31s	remaining: 3.13s
59:	learn: 12.9394034	total: 1.33s	remaining: 3.1s
60:	learn: 12.8348950	total: 1.35s	remaining: 3.08s
61:	learn: 12.7266532	total: 1.38s	remaining: 3.06s
62:	learn: 12.5633581	total: 1.4s	remaining: 3.05s
63:	learn: 12.4424580	total: 1.42s	remaining: 3.02s
64:	learn: 12.3207502	total: 1.44s	remaining: 3s
65:	learn: 12.1991637	total: 1.46s	remaining: 2.97s
66:	learn: 12.0994803	total: 1.48s	remaining: 2.95s
67:	learn: 11.9730740	total: 1.51s	remaining: 2.92s
68:	learn: 11.8611564	total: 1.53s	remaining: 2.9s
69:	learn: 11.7682666	total: 1.55s	remaining: 2.87s
70:	learn: 11.6650875	total: 1.57s	remaining: 2.85s
71:	learn: 11.5916610	total: 1.59s	remaining: 2.83s
72:	learn: 11.4778837	total: 1.63s	remaining: 2.84s
73:	learn: 11.3753187	total: 1.66s	remaining: 2.83s
74:	learn: 11.2807363	total: 1.69s	remaining: 2.81s
75:	learn: 11.1922433	total: 1.71s	remaining: 2.79s
76:	learn: 11.1089234	total: 1.73s	remaining: 2.77s
77:	learn: 11.0238343	total: 1.76s	remaining: 2.75s
78:	learn: 10.9409200	total: 1.78s	remaining: 2.73s
79:	learn: 10.8632563	total: 1.81s	remaining: 2.71s
80:	learn: 10.7619610	total: 1.84s	remaining: 2.7s
81:	learn: 10.6971597	total: 1.86s	remaining: 2.68s
82:	learn: 10.6251891	total: 1.89s	remaining: 2.66s
83:	learn: 10.5326326	total: 1.91s	remaining: 2.64s
84:	learn: 10.4377665	total: 1.94s	remaining: 2.62s
85:	learn: 10.3817931	total: 1.96s	remaining: 2.6s
86:	learn: 10.2988157	total: 1.99s	remaining: 2.58s
87:	learn: 10.2192016	total: 2.01s	remaining: 2.56s
88:	learn: 10.1494494	total: 2.05s	remaining: 2.56s
89:	learn: 10.0741735	total: 2.07s	remaining: 2.54s
90:	learn: 10.0144581	total: 2.1s	remaining: 2.51s
91:	learn: 9.9524648	total: 2.12s	remaining: 2.49s
92:	learn: 9.8774329	total: 2.15s	remaining: 2.47s
93:	learn: 9.8185407	total: 2.18s	remaining: 2.46s
94:	learn: 9.7522036	total: 2.2s	remaining: 2.44s
95:	learn: 9.6854283	total: 2.23s	remaining: 2.41s
96:	learn: 9.6130737	total: 2.26s	remaining: 2.4s
97:	learn: 9.5584787	total: 2.29s	remaining: 2.38s
98:	learn: 9.5074757	total: 2.31s	remaining: 2.35s
99:	learn: 9.4107769	total: 2.33s	remaining: 2.33s
100:	learn: 9.3472904	total: 2.36s	remaining: 2.31s
101:	learn: 9.2953560	total: 2.38s	remaining: 2.29s
102:	learn: 9.2320206	total: 2.4s	remaining: 2.26s
103:	learn: 9.1805125	total: 2.44s	remaining: 2.25s
104:	learn: 9.1371555	total: 2.47s	remaining: 2.23s
105:	learn: 9.0800435	total: 2.49s	remaining: 2.21s
106:	learn: 9.0192214	total: 2.52s	remaining: 2.19s
107:	learn: 8.9764934	total: 2.54s	remaining: 2.17s
108:	learn: 8.9098592	total: 2.57s	remaining: 2.15s
109:	learn: 8.8690606	total: 2.59s	remaining: 2.12s
110:	learn: 8.8229549	total: 2.62s	remaining: 2.1s
111:	learn: 8.7610408	total: 2.64s	remaining: 2.08s
112:	learn: 8.7166823	total: 2.67s	remaining: 2.06s
113:	learn: 8.6713720	total: 2.7s	remaining: 2.04s
114:	learn: 8.6360764	total: 2.73s	remaining: 2.02s
115:	learn: 8.5635367	total: 2.75s	remaining: 1.99s
116:	learn: 8.5117245	total: 2.77s	remaining: 1.97s
117:	learn: 8.4777769	total: 2.79s	remaining: 1.94s
118:	learn: 8.4368327	total: 2.82s	remaining: 1.92s
119:	learn: 8.3938010	total: 2.84s	remaining: 1.89s
120:	learn: 8.3387423	total: 2.86s	remaining: 1.87s
121:	learn: 8.2975768	total: 2.89s	remaining: 1.85s
122:	learn: 8.2537514	total: 2.92s	remaining: 1.83s
123:	learn: 8.2022446	total: 2.95s	remaining: 1.81s
124:	learn: 8.1566126	total: 2.98s	remaining: 1.79s
125:	learn: 8.1165461	total: 3s	remaining: 1.76s
126:	learn: 8.0626587	total: 3.03s	remaining: 1.74s
127:	learn: 8.0123296	total: 3.05s	remaining: 1.72s
128:	learn: 7.9567593	total: 3.08s	remaining: 1.69s
129:	learn: 7.9195560	total: 3.1s	remaining: 1.67s
130:	learn: 7.8654879	total: 3.13s	remaining: 1.65s
131:	learn: 7.8339633	total: 3.16s	remaining: 1.63s
132:	learn: 7.7748115	total: 3.18s	remaining: 1.6s
133:	learn: 7.7230977	total: 3.21s	remaining: 1.58s
134:	learn: 7.6841448	total: 3.23s	remaining: 1.56s
135:	learn: 7.6303040	total: 3.26s	remaining: 1.53s
136:	learn: 7.5934346	total: 3.28s	remaining: 1.51s
137:	learn: 7.5476194	total: 3.31s	remaining: 1.49s
138:	learn: 7.5066675	total: 3.34s	remaining: 1.47s
139:	learn: 7.4672530	total: 3.37s	remaining: 1.44s
140:	learn: 7.4124282	total: 3.39s	remaining: 1.42s
141:	learn: 7.3765845	total: 3.42s	remaining: 1.4s
142:	learn: 7.3441356	total: 3.45s	remaining: 1.37s
143:	learn: 7.2965220	total: 3.47s	remaining: 1.35s
144:	learn: 7.2479952	total: 3.5s	remaining: 1.33s
145:	learn: 7.2032997	total: 3.52s	remaining: 1.3s
146:	learn: 7.1452222	total: 3.55s	remaining: 1.28s
147:	learn: 7.1038627	total: 3.58s	remaining: 1.26s
148:	learn: 7.0606620	total: 3.6s	remaining: 1.23s
149:	learn: 7.0177792	total: 3.62s	remaining: 1.21s
150:	learn: 6.9863396	total: 3.65s	remaining: 1.18s
151:	learn: 6.9625546	total: 3.67s	remaining: 1.16s
152:	learn: 6.9173267	total: 3.7s	remaining: 1.14s
153:	learn: 6.8616646	total: 3.72s	remaining: 1.11s
154:	learn: 6.8198808	total: 3.76s	remaining: 1.09s
155:	learn: 6.7685255	total: 3.78s	remaining: 1.07s
156:	learn: 6.7264771	total: 3.81s	remaining: 1.04s
157:	learn: 6.6840211	total: 3.83s	remaining: 1.02s
158:	learn: 6.6460703	total: 3.86s	remaining: 995ms
159:	learn: 6.6016679	total: 3.88s	remaining: 971ms
160:	learn: 6.5588513	total: 3.91s	remaining: 946ms
161:	learn: 6.5201763	total: 3.93s	remaining: 922ms
162:	learn: 6.4662615	total: 3.96s	remaining: 900ms
163:	learn: 6.4307740	total: 3.99s	remaining: 876ms
164:	learn: 6.3863673	total: 4.01s	remaining: 852ms
165:	learn: 6.3565295	total: 4.04s	remaining: 827ms
166:	learn: 6.3137723	total: 4.06s	remaining: 803ms
167:	learn: 6.2637526	total: 4.08s	remaining: 778ms
168:	learn: 6.2306078	total: 4.11s	remaining: 754ms
169:	learn: 6.2005633	total: 4.13s	remaining: 729ms
170:	learn: 6.1835964	total: 4.16s	remaining: 705ms
171:	learn: 6.1478605	total: 4.18s	remaining: 681ms
172:	learn: 6.1287055	total: 4.22s	remaining: 659ms
173:	learn: 6.0970495	total: 4.25s	remaining: 635ms
174:	learn: 6.0494366	total: 4.27s	remaining: 611ms
175:	learn: 6.0281944	total: 4.3s	remaining: 586ms
176:	learn: 5.9996986	total: 4.32s	remaining: 562ms
177:	learn: 5.9870874	total: 4.35s	remaining: 537ms
178:	learn: 5.9794984	total: 4.36s	remaining: 511ms
179:	learn: 5.9554215	total: 4.38s	remaining: 487ms
180:	learn: 5.9240425	total: 4.41s	remaining: 463ms
181:	learn: 5.9088786	total: 4.44s	remaining: 439ms
182:	learn: 5.8655685	total: 4.47s	remaining: 415ms
183:	learn: 5.8308179	total: 4.49s	remaining: 391ms
184:	learn: 5.8097693	total: 4.52s	remaining: 366ms
185:	learn: 5.7685656	total: 4.54s	remaining: 342ms
186:	learn: 5.7309229	total: 4.56s	remaining: 317ms
187:	learn: 5.7062842	total: 4.59s	remaining: 293ms
188:	learn: 5.6642957	total: 4.61s	remaining: 268ms
189:	learn: 5.6329794	total: 4.64s	remaining: 244ms
190:	learn: 5.5977511	total: 4.67s	remaining: 220ms
191:	learn: 5.5829279	total: 4.69s	remaining: 196ms
192:	learn: 5.5506312	total: 4.72s	remaining: 171ms
193:	learn: 5.5072384	total: 4.75s	remaining: 147ms
194:	learn: 5.4645221	total: 4.77s	remaining: 122ms
195:	learn: 5.4363976	total: 4.79s	remaining: 97.9ms
196:	learn: 5.4145292	total: 4.82s	remaining: 73.4ms
197:	learn: 5.3685721	total: 4.84s	remaining: 48.9ms
198:	learn: 5.3365890	total: 4.87s	remaining: 24.5ms
199:	learn: 5.3084220	total: 4.9s	remaining: 0us
0:	learn: 42.7887226	total: 21.2ms	remaining: 4.22s
1:	learn: 41.8440822	total: 34.1ms	remaining: 3.38s
2:	learn: 40.7630462	total: 55.5ms	remaining: 3.64s
3:	learn: 39.5297880	total: 77.4ms	remaining: 3.79s
4:	learn: 38.6077280	total: 99.7ms	remaining: 3.89s
5:	learn: 37.6971732	total: 122ms	remaining: 3.95s
6:	learn: 36.7463218	total: 154ms	remaining: 4.25s
7:	learn: 35.8007703	total: 178ms	remaining: 4.28s
8:	learn: 34.9731655	total: 202ms	remaining: 4.29s
9:	learn: 34.1812857	total: 226ms	remaining: 4.3s
10:	learn: 33.3509251	total: 251ms	remaining: 4.32s
11:	learn: 32.6184078	total: 273ms	remaining: 4.28s
12:	learn: 31.9918266	total: 293ms	remaining: 4.22s
13:	learn: 31.2244641	total: 315ms	remaining: 4.19s
14:	learn: 30.5895020	total: 345ms	remaining: 4.25s
15:	learn: 29.9318064	total: 369ms	remaining: 4.24s
16:	learn: 29.2267723	total: 391ms	remaining: 4.2s
17:	learn: 28.6196795	total: 410ms	remaining: 4.14s
18:	learn: 28.0756253	total: 431ms	remaining: 4.11s
19:	learn: 27.4447254	total: 452ms	remaining: 4.07s
20:	learn: 26.8501969	total: 473ms	remaining: 4.04s
21:	learn: 26.3047050	total: 494ms	remaining: 4s
22:	learn: 25.7794565	total: 516ms	remaining: 3.97s
23:	learn: 25.2658135	total: 518ms	remaining: 3.8s
24:	learn: 24.7272223	total: 541ms	remaining: 3.79s
25:	learn: 24.3182112	total: 564ms	remaining: 3.77s
26:	learn: 23.9791831	total: 596ms	remaining: 3.82s
27:	learn: 23.6007465	total: 622ms	remaining: 3.82s
28:	learn: 23.2573075	total: 646ms	remaining: 3.81s
29:	learn: 22.9475656	total: 669ms	remaining: 3.79s
30:	learn: 22.5526305	total: 694ms	remaining: 3.78s
31:	learn: 22.1198330	total: 716ms	remaining: 3.76s
32:	learn: 21.7489085	total: 738ms	remaining: 3.73s
33:	learn: 21.3655565	total: 761ms	remaining: 3.72s
34:	learn: 21.0252381	total: 789ms	remaining: 3.72s
35:	learn: 20.7488731	total: 815ms	remaining: 3.71s
36:	learn: 20.5339646	total: 838ms	remaining: 3.69s
37:	learn: 20.2145684	total: 860ms	remaining: 3.67s
38:	learn: 19.8876509	total: 881ms	remaining: 3.64s
39:	learn: 19.6692385	total: 903ms	remaining: 3.61s
40:	learn: 19.4286270	total: 924ms	remaining: 3.58s
41:	learn: 19.1769071	total: 946ms	remaining: 3.56s
42:	learn: 18.9575237	total: 969ms	remaining: 3.54s
43:	learn: 18.7342247	total: 993ms	remaining: 3.52s
44:	learn: 18.4849146	total: 1.02s	remaining: 3.53s
45:	learn: 18.2624270	total: 1.05s	remaining: 3.51s
46:	learn: 18.0695318	total: 1.07s	remaining: 3.49s
47:	learn: 17.8828655	total: 1.09s	remaining: 3.47s
48:	learn: 17.6634936	total: 1.12s	remaining: 3.45s
49:	learn: 17.4906819	total: 1.14s	remaining: 3.43s
50:	learn: 17.3041918	total: 1.17s	remaining: 3.41s
51:	learn: 17.0823762	total: 1.19s	remaining: 3.39s
52:	learn: 16.8782440	total: 1.21s	remaining: 3.36s
53:	learn: 16.6195426	total: 1.24s	remaining: 3.35s
54:	learn: 16.4155330	total: 1.26s	remaining: 3.34s
55:	learn: 16.2476574	total: 1.29s	remaining: 3.31s
56:	learn: 16.0258529	total: 1.31s	remaining: 3.28s
57:	learn: 15.8620283	total: 1.33s	remaining: 3.26s
58:	learn: 15.7108893	total: 1.35s	remaining: 3.23s
59:	learn: 15.5737080	total: 1.37s	remaining: 3.2s
60:	learn: 15.4123613	total: 1.39s	remaining: 3.17s
61:	learn: 15.2629578	total: 1.42s	remaining: 3.16s
62:	learn: 15.1097207	total: 1.44s	remaining: 3.14s
63:	learn: 14.9427151	total: 1.47s	remaining: 3.12s
64:	learn: 14.7889867	total: 1.49s	remaining: 3.1s
65:	learn: 14.6746715	total: 1.52s	remaining: 3.08s
66:	learn: 14.5205076	total: 1.54s	remaining: 3.06s
67:	learn: 14.3786093	total: 1.56s	remaining: 3.04s
68:	learn: 14.2324541	total: 1.59s	remaining: 3.02s
69:	learn: 14.0978554	total: 1.61s	remaining: 3s
70:	learn: 13.9424582	total: 1.64s	remaining: 2.97s
71:	learn: 13.8140169	total: 1.67s	remaining: 2.96s
72:	learn: 13.6759558	total: 1.69s	remaining: 2.94s
73:	learn: 13.5499120	total: 1.71s	remaining: 2.91s
74:	learn: 13.4276838	total: 1.73s	remaining: 2.88s
75:	learn: 13.3175244	total: 1.75s	remaining: 2.86s
76:	learn: 13.2179850	total: 1.77s	remaining: 2.83s
77:	learn: 13.1192866	total: 1.8s	remaining: 2.81s
78:	learn: 13.0156952	total: 1.82s	remaining: 2.79s
79:	learn: 12.8996211	total: 1.84s	remaining: 2.76s
80:	learn: 12.8036058	total: 1.87s	remaining: 2.74s
81:	learn: 12.7085774	total: 1.9s	remaining: 2.73s
82:	learn: 12.6225307	total: 1.92s	remaining: 2.7s
83:	learn: 12.4901564	total: 1.94s	remaining: 2.68s
84:	learn: 12.3766435	total: 1.96s	remaining: 2.66s
85:	learn: 12.2837693	total: 1.99s	remaining: 2.63s
86:	learn: 12.1808453	total: 2s	remaining: 2.6s
87:	learn: 12.1154320	total: 2.03s	remaining: 2.58s
88:	learn: 12.0324383	total: 2.05s	remaining: 2.55s
89:	learn: 11.9649236	total: 2.07s	remaining: 2.53s
90:	learn: 11.8702731	total: 2.1s	remaining: 2.52s
91:	learn: 11.7872282	total: 2.12s	remaining: 2.49s
92:	learn: 11.6802080	total: 2.14s	remaining: 2.46s
93:	learn: 11.5608608	total: 2.16s	remaining: 2.44s
94:	learn: 11.4619383	total: 2.18s	remaining: 2.41s
95:	learn: 11.3892378	total: 2.21s	remaining: 2.39s
96:	learn: 11.3083410	total: 2.23s	remaining: 2.36s
97:	learn: 11.2283441	total: 2.25s	remaining: 2.34s
98:	learn: 11.1583948	total: 2.27s	remaining: 2.31s
99:	learn: 11.0469641	total: 2.29s	remaining: 2.29s
100:	learn: 10.9815730	total: 2.33s	remaining: 2.28s
101:	learn: 10.9036211	total: 2.35s	remaining: 2.26s
102:	learn: 10.8258195	total: 2.37s	remaining: 2.24s
103:	learn: 10.7312064	total: 2.4s	remaining: 2.21s
104:	learn: 10.6824773	total: 2.42s	remaining: 2.19s
105:	learn: 10.6225145	total: 2.44s	remaining: 2.17s
106:	learn: 10.5504731	total: 2.46s	remaining: 2.14s
107:	learn: 10.4544948	total: 2.48s	remaining: 2.12s
108:	learn: 10.4168277	total: 2.51s	remaining: 2.09s
109:	learn: 10.3384275	total: 2.54s	remaining: 2.07s
110:	learn: 10.2606286	total: 2.56s	remaining: 2.05s
111:	learn: 10.2285942	total: 2.58s	remaining: 2.02s
112:	learn: 10.1483318	total: 2.6s	remaining: 2s
113:	learn: 10.0877697	total: 2.62s	remaining: 1.98s
114:	learn: 10.0344593	total: 2.64s	remaining: 1.95s
115:	learn: 9.9820843	total: 2.67s	remaining: 1.93s
116:	learn: 9.9427733	total: 2.69s	remaining: 1.9s
117:	learn: 9.9059670	total: 2.71s	remaining: 1.88s
118:	learn: 9.8046130	total: 2.73s	remaining: 1.86s
119:	learn: 9.7503993	total: 2.76s	remaining: 1.84s
120:	learn: 9.7160837	total: 2.78s	remaining: 1.82s
121:	learn: 9.6642016	total: 2.81s	remaining: 1.79s
122:	learn: 9.6169382	total: 2.83s	remaining: 1.77s
123:	learn: 9.5581696	total: 2.85s	remaining: 1.75s
124:	learn: 9.5083663	total: 2.87s	remaining: 1.72s
125:	learn: 9.4686778	total: 2.89s	remaining: 1.7s
126:	learn: 9.4224661	total: 2.91s	remaining: 1.67s
127:	learn: 9.3797761	total: 2.94s	remaining: 1.65s
128:	learn: 9.2935195	total: 2.96s	remaining: 1.63s
129:	learn: 9.2022647	total: 2.99s	remaining: 1.61s
130:	learn: 9.1438991	total: 3.01s	remaining: 1.58s
131:	learn: 9.0827535	total: 3.03s	remaining: 1.56s
132:	learn: 9.0024241	total: 3.05s	remaining: 1.53s
133:	learn: 8.9376003	total: 3.07s	remaining: 1.51s
134:	learn: 8.8923957	total: 3.09s	remaining: 1.49s
135:	learn: 8.8484899	total: 3.11s	remaining: 1.46s
136:	learn: 8.7616489	total: 3.13s	remaining: 1.44s
137:	learn: 8.6998649	total: 3.16s	remaining: 1.42s
138:	learn: 8.6429967	total: 3.19s	remaining: 1.4s
139:	learn: 8.5846451	total: 3.21s	remaining: 1.38s
140:	learn: 8.5282228	total: 3.23s	remaining: 1.35s
141:	learn: 8.4914757	total: 3.25s	remaining: 1.33s
142:	learn: 8.4437515	total: 3.28s	remaining: 1.3s
143:	learn: 8.3701501	total: 3.3s	remaining: 1.28s
144:	learn: 8.3305613	total: 3.32s	remaining: 1.26s
145:	learn: 8.2871547	total: 3.34s	remaining: 1.24s
146:	learn: 8.2332345	total: 3.37s	remaining: 1.21s
147:	learn: 8.2040931	total: 3.39s	remaining: 1.19s
148:	learn: 8.1449399	total: 3.41s	remaining: 1.17s
149:	learn: 8.1008163	total: 3.44s	remaining: 1.15s
150:	learn: 8.0676388	total: 3.45s	remaining: 1.12s
151:	learn: 8.0254230	total: 3.48s	remaining: 1.1s
152:	learn: 7.9726324	total: 3.51s	remaining: 1.08s
153:	learn: 7.9246577	total: 3.53s	remaining: 1.05s
154:	learn: 7.8696026	total: 3.56s	remaining: 1.03s
155:	learn: 7.8140044	total: 3.58s	remaining: 1.01s
156:	learn: 7.7692791	total: 3.62s	remaining: 991ms
157:	learn: 7.7154508	total: 3.64s	remaining: 969ms
158:	learn: 7.6512884	total: 3.67s	remaining: 946ms
159:	learn: 7.6049603	total: 3.69s	remaining: 924ms
160:	learn: 7.5831191	total: 3.72s	remaining: 901ms
161:	learn: 7.5299206	total: 3.74s	remaining: 878ms
162:	learn: 7.4797436	total: 3.77s	remaining: 857ms
163:	learn: 7.4347413	total: 3.8s	remaining: 835ms
164:	learn: 7.3884423	total: 3.83s	remaining: 813ms
165:	learn: 7.3608789	total: 3.85s	remaining: 790ms
166:	learn: 7.3113088	total: 3.88s	remaining: 766ms
167:	learn: 7.2661219	total: 3.9s	remaining: 743ms
168:	learn: 7.2118054	total: 3.92s	remaining: 720ms
169:	learn: 7.1750584	total: 3.95s	remaining: 697ms
170:	learn: 7.1528412	total: 3.97s	remaining: 673ms
171:	learn: 7.1129998	total: 3.99s	remaining: 650ms
172:	learn: 7.0410693	total: 4.03s	remaining: 629ms
173:	learn: 7.0123709	total: 4.06s	remaining: 607ms
174:	learn: 6.9725261	total: 4.08s	remaining: 583ms
175:	learn: 6.9405517	total: 4.11s	remaining: 560ms
176:	learn: 6.9063363	total: 4.13s	remaining: 537ms
177:	learn: 6.8658064	total: 4.15s	remaining: 513ms
178:	learn: 6.8211702	total: 4.18s	remaining: 490ms
179:	learn: 6.7955582	total: 4.2s	remaining: 467ms
180:	learn: 6.7657728	total: 4.23s	remaining: 444ms
181:	learn: 6.7233474	total: 4.25s	remaining: 421ms
182:	learn: 6.6750396	total: 4.29s	remaining: 398ms
183:	learn: 6.6454508	total: 4.31s	remaining: 375ms
184:	learn: 6.6000934	total: 4.33s	remaining: 351ms
185:	learn: 6.5795244	total: 4.35s	remaining: 328ms
186:	learn: 6.5250459	total: 4.38s	remaining: 304ms
187:	learn: 6.4878683	total: 4.4s	remaining: 281ms
188:	learn: 6.4442470	total: 4.43s	remaining: 258ms
189:	learn: 6.4049711	total: 4.46s	remaining: 235ms
190:	learn: 6.3756488	total: 4.49s	remaining: 212ms
191:	learn: 6.3363810	total: 4.51s	remaining: 188ms
192:	learn: 6.2834264	total: 4.55s	remaining: 165ms
193:	learn: 6.2455607	total: 4.57s	remaining: 141ms
194:	learn: 6.2049857	total: 4.6s	remaining: 118ms
195:	learn: 6.1600281	total: 4.62s	remaining: 94.3ms
196:	learn: 6.1199114	total: 4.64s	remaining: 70.7ms
197:	learn: 6.0775556	total: 4.68s	remaining: 47.2ms
198:	learn: 6.0424747	total: 4.7s	remaining: 23.6ms
199:	learn: 6.0117747	total: 4.72s	remaining: 0us
0:	learn: 46.3030650	total: 3.24ms	remaining: 645ms
1:	learn: 45.3863821	total: 24.4ms	remaining: 2.41s
2:	learn: 44.3303657	total: 46.9ms	remaining: 3.08s
3:	learn: 43.3376970	total: 69.5ms	remaining: 3.41s
4:	learn: 42.3048090	total: 92.9ms	remaining: 3.63s
5:	learn: 41.2876619	total: 123ms	remaining: 3.98s
6:	learn: 40.2621105	total: 147ms	remaining: 4.04s
7:	learn: 39.2067787	total: 171ms	remaining: 4.09s
8:	learn: 38.2152671	total: 195ms	remaining: 4.14s
9:	learn: 37.3871577	total: 217ms	remaining: 4.13s
10:	learn: 36.6393787	total: 239ms	remaining: 4.11s
11:	learn: 35.8850130	total: 260ms	remaining: 4.08s
12:	learn: 35.3145595	total: 284ms	remaining: 4.08s
13:	learn: 34.5127183	total: 308ms	remaining: 4.09s
14:	learn: 33.9299378	total: 336ms	remaining: 4.15s
15:	learn: 33.1444830	total: 359ms	remaining: 4.13s
16:	learn: 32.5046852	total: 381ms	remaining: 4.1s
17:	learn: 31.9896017	total: 403ms	remaining: 4.08s
18:	learn: 31.3671259	total: 426ms	remaining: 4.06s
19:	learn: 30.7709490	total: 447ms	remaining: 4.03s
20:	learn: 30.3076309	total: 469ms	remaining: 4s
21:	learn: 29.7436165	total: 490ms	remaining: 3.96s
22:	learn: 29.2367879	total: 522ms	remaining: 4.01s
23:	learn: 28.6721804	total: 549ms	remaining: 4.02s
24:	learn: 28.1740050	total: 573ms	remaining: 4.01s
25:	learn: 27.7310122	total: 597ms	remaining: 3.99s
26:	learn: 27.2559389	total: 621ms	remaining: 3.98s
27:	learn: 26.7919727	total: 646ms	remaining: 3.97s
28:	learn: 26.3973786	total: 669ms	remaining: 3.95s
29:	learn: 25.9446861	total: 692ms	remaining: 3.92s
30:	learn: 25.5889650	total: 715ms	remaining: 3.9s
31:	learn: 25.1627233	total: 747ms	remaining: 3.92s
32:	learn: 24.8848176	total: 771ms	remaining: 3.9s
33:	learn: 24.4268954	total: 793ms	remaining: 3.87s
34:	learn: 24.1655944	total: 815ms	remaining: 3.84s
35:	learn: 23.8296205	total: 836ms	remaining: 3.81s
36:	learn: 23.4214518	total: 858ms	remaining: 3.78s
37:	learn: 23.1485204	total: 880ms	remaining: 3.75s
38:	learn: 22.7675316	total: 903ms	remaining: 3.73s
39:	learn: 22.4807336	total: 926ms	remaining: 3.7s
40:	learn: 22.2054867	total: 956ms	remaining: 3.71s
41:	learn: 21.9328851	total: 981ms	remaining: 3.69s
42:	learn: 21.6073446	total: 1s	remaining: 3.67s
43:	learn: 21.3198829	total: 1.03s	remaining: 3.64s
44:	learn: 21.0001604	total: 1.05s	remaining: 3.63s
45:	learn: 20.6560095	total: 1.07s	remaining: 3.59s
46:	learn: 20.4068862	total: 1.09s	remaining: 3.56s
47:	learn: 20.1123610	total: 1.12s	remaining: 3.54s
48:	learn: 19.8929795	total: 1.14s	remaining: 3.51s
49:	learn: 19.6851325	total: 1.17s	remaining: 3.51s
50:	learn: 19.4379923	total: 1.19s	remaining: 3.49s
51:	learn: 19.1765299	total: 1.22s	remaining: 3.46s
52:	learn: 18.9359818	total: 1.24s	remaining: 3.43s
53:	learn: 18.6848954	total: 1.26s	remaining: 3.4s
54:	learn: 18.4602852	total: 1.28s	remaining: 3.38s
55:	learn: 18.2692773	total: 1.3s	remaining: 3.35s
56:	learn: 18.0399201	total: 1.32s	remaining: 3.32s
57:	learn: 17.8235063	total: 1.34s	remaining: 3.29s
58:	learn: 17.6311769	total: 1.38s	remaining: 3.29s
59:	learn: 17.4590002	total: 1.4s	remaining: 3.27s
60:	learn: 17.2170241	total: 1.43s	remaining: 3.25s
61:	learn: 17.0477567	total: 1.45s	remaining: 3.23s
62:	learn: 16.8483227	total: 1.48s	remaining: 3.21s
63:	learn: 16.7003707	total: 1.5s	remaining: 3.18s
64:	learn: 16.5244197	total: 1.52s	remaining: 3.16s
65:	learn: 16.3560522	total: 1.54s	remaining: 3.13s
66:	learn: 16.2090391	total: 1.56s	remaining: 3.11s
67:	learn: 16.0773806	total: 1.59s	remaining: 3.08s
68:	learn: 15.9313223	total: 1.62s	remaining: 3.07s
69:	learn: 15.8587403	total: 1.64s	remaining: 3.05s
70:	learn: 15.7219902	total: 1.66s	remaining: 3.02s
71:	learn: 15.5888303	total: 1.68s	remaining: 2.99s
72:	learn: 15.4672174	total: 1.71s	remaining: 2.97s
73:	learn: 15.3250528	total: 1.73s	remaining: 2.94s
74:	learn: 15.1885799	total: 1.75s	remaining: 2.92s
75:	learn: 15.0571789	total: 1.77s	remaining: 2.89s
76:	learn: 14.9087739	total: 1.79s	remaining: 2.87s
77:	learn: 14.7682304	total: 1.82s	remaining: 2.85s
78:	learn: 14.5259049	total: 1.85s	remaining: 2.83s
79:	learn: 14.3631190	total: 1.87s	remaining: 2.8s
80:	learn: 14.2467961	total: 1.89s	remaining: 2.78s
81:	learn: 14.0738885	total: 1.91s	remaining: 2.75s
82:	learn: 13.9665111	total: 1.94s	remaining: 2.73s
83:	learn: 13.8331846	total: 1.96s	remaining: 2.7s
84:	learn: 13.7292162	total: 1.98s	remaining: 2.67s
85:	learn: 13.6492354	total: 2s	remaining: 2.65s
86:	learn: 13.5481979	total: 2.02s	remaining: 2.62s
87:	learn: 13.4472352	total: 2.04s	remaining: 2.6s
88:	learn: 13.3258910	total: 2.07s	remaining: 2.58s
89:	learn: 13.2393886	total: 2.09s	remaining: 2.56s
90:	learn: 13.1693415	total: 2.11s	remaining: 2.53s
91:	learn: 13.0653588	total: 2.13s	remaining: 2.5s
92:	learn: 12.9569271	total: 2.15s	remaining: 2.48s
93:	learn: 12.7887232	total: 2.17s	remaining: 2.45s
94:	learn: 12.6654219	total: 2.19s	remaining: 2.42s
95:	learn: 12.5942081	total: 2.22s	remaining: 2.4s
96:	learn: 12.5016735	total: 2.24s	remaining: 2.38s
97:	learn: 12.3851734	total: 2.26s	remaining: 2.35s
98:	learn: 12.2915943	total: 2.29s	remaining: 2.33s
99:	learn: 12.1817773	total: 2.31s	remaining: 2.31s
100:	learn: 12.1001084	total: 2.33s	remaining: 2.29s
101:	learn: 12.0125762	total: 2.36s	remaining: 2.26s
102:	learn: 11.9053086	total: 2.38s	remaining: 2.24s
103:	learn: 11.8108884	total: 2.4s	remaining: 2.22s
104:	learn: 11.7134008	total: 2.42s	remaining: 2.19s
105:	learn: 11.6403098	total: 2.44s	remaining: 2.17s
106:	learn: 11.5677512	total: 2.47s	remaining: 2.15s
107:	learn: 11.4706639	total: 2.49s	remaining: 2.12s
108:	learn: 11.3799422	total: 2.52s	remaining: 2.1s
109:	learn: 11.3099240	total: 2.54s	remaining: 2.08s
110:	learn: 11.2242582	total: 2.56s	remaining: 2.05s
111:	learn: 11.1639839	total: 2.58s	remaining: 2.02s
112:	learn: 11.0851749	total: 2.6s	remaining: 2s
113:	learn: 11.0274408	total: 2.62s	remaining: 1.97s
114:	learn: 10.9469225	total: 2.64s	remaining: 1.95s
115:	learn: 10.8646495	total: 2.66s	remaining: 1.93s
116:	learn: 10.7956277	total: 2.68s	remaining: 1.9s
117:	learn: 10.7229339	total: 2.71s	remaining: 1.89s
118:	learn: 10.6717034	total: 2.74s	remaining: 1.86s
119:	learn: 10.6080096	total: 2.76s	remaining: 1.84s
120:	learn: 10.5414756	total: 2.79s	remaining: 1.82s
121:	learn: 10.4526074	total: 2.81s	remaining: 1.8s
122:	learn: 10.3937537	total: 2.83s	remaining: 1.77s
123:	learn: 10.3256424	total: 2.85s	remaining: 1.75s
124:	learn: 10.2541706	total: 2.87s	remaining: 1.72s
125:	learn: 10.1743339	total: 2.89s	remaining: 1.7s
126:	learn: 10.1205299	total: 2.92s	remaining: 1.68s
127:	learn: 10.0706006	total: 2.95s	remaining: 1.66s
128:	learn: 9.9907794	total: 2.97s	remaining: 1.63s
129:	learn: 9.9189908	total: 2.99s	remaining: 1.61s
130:	learn: 9.8515629	total: 3.01s	remaining: 1.58s
131:	learn: 9.8035447	total: 3.03s	remaining: 1.56s
132:	learn: 9.7276577	total: 3.05s	remaining: 1.54s
133:	learn: 9.6715830	total: 3.07s	remaining: 1.51s
134:	learn: 9.6029398	total: 3.09s	remaining: 1.49s
135:	learn: 9.5145475	total: 3.12s	remaining: 1.47s
136:	learn: 9.4394658	total: 3.15s	remaining: 1.45s
137:	learn: 9.3839963	total: 3.17s	remaining: 1.42s
138:	learn: 9.3282632	total: 3.19s	remaining: 1.4s
139:	learn: 9.2605763	total: 3.21s	remaining: 1.38s
140:	learn: 9.2038604	total: 3.23s	remaining: 1.35s
141:	learn: 9.1427762	total: 3.26s	remaining: 1.33s
142:	learn: 9.0911085	total: 3.28s	remaining: 1.31s
143:	learn: 9.0266186	total: 3.3s	remaining: 1.28s
144:	learn: 8.9619821	total: 3.32s	remaining: 1.26s
145:	learn: 8.9039459	total: 3.34s	remaining: 1.24s
146:	learn: 8.8472919	total: 3.37s	remaining: 1.22s
147:	learn: 8.7933789	total: 3.4s	remaining: 1.2s
148:	learn: 8.7305245	total: 3.43s	remaining: 1.17s
149:	learn: 8.6705924	total: 3.45s	remaining: 1.15s
150:	learn: 8.5950689	total: 3.47s	remaining: 1.13s
151:	learn: 8.5220923	total: 3.5s	remaining: 1.1s
152:	learn: 8.4711728	total: 3.52s	remaining: 1.08s
153:	learn: 8.4154002	total: 3.54s	remaining: 1.06s
154:	learn: 8.3525716	total: 3.58s	remaining: 1.04s
155:	learn: 8.2500576	total: 3.6s	remaining: 1.02s
156:	learn: 8.1975868	total: 3.63s	remaining: 994ms
157:	learn: 8.1408778	total: 3.65s	remaining: 971ms
158:	learn: 8.0944498	total: 3.69s	remaining: 951ms
159:	learn: 8.0494005	total: 3.71s	remaining: 928ms
160:	learn: 7.9923207	total: 3.73s	remaining: 904ms
161:	learn: 7.9244042	total: 3.76s	remaining: 881ms
162:	learn: 7.8553521	total: 3.78s	remaining: 859ms
163:	learn: 7.8113057	total: 3.81s	remaining: 838ms
164:	learn: 7.7694977	total: 3.84s	remaining: 815ms
165:	learn: 7.7157854	total: 3.86s	remaining: 792ms
166:	learn: 7.6649983	total: 3.89s	remaining: 768ms
167:	learn: 7.6054169	total: 3.91s	remaining: 745ms
168:	learn: 7.5566318	total: 3.94s	remaining: 723ms
169:	learn: 7.5167923	total: 3.96s	remaining: 700ms
170:	learn: 7.4636141	total: 3.99s	remaining: 677ms
171:	learn: 7.4245697	total: 4.02s	remaining: 655ms
172:	learn: 7.3773340	total: 4.05s	remaining: 632ms
173:	learn: 7.3471282	total: 4.08s	remaining: 609ms
174:	learn: 7.3055610	total: 4.1s	remaining: 586ms
175:	learn: 7.2625255	total: 4.13s	remaining: 563ms
176:	learn: 7.2195019	total: 4.15s	remaining: 539ms
177:	learn: 7.1830907	total: 4.17s	remaining: 516ms
178:	learn: 7.1506543	total: 4.2s	remaining: 493ms
179:	learn: 7.1217634	total: 4.23s	remaining: 470ms
180:	learn: 7.0888873	total: 4.26s	remaining: 447ms
181:	learn: 7.0573402	total: 4.28s	remaining: 424ms
182:	learn: 7.0284924	total: 4.31s	remaining: 400ms
183:	learn: 6.9915582	total: 4.33s	remaining: 376ms
184:	learn: 6.9260265	total: 4.35s	remaining: 353ms
185:	learn: 6.8908911	total: 4.37s	remaining: 329ms
186:	learn: 6.8311295	total: 4.4s	remaining: 306ms
187:	learn: 6.7852318	total: 4.43s	remaining: 283ms
188:	learn: 6.7472131	total: 4.47s	remaining: 260ms
189:	learn: 6.7097405	total: 4.49s	remaining: 236ms
190:	learn: 6.6638060	total: 4.52s	remaining: 213ms
191:	learn: 6.6226054	total: 4.54s	remaining: 189ms
192:	learn: 6.5877421	total: 4.57s	remaining: 166ms
193:	learn: 6.5502032	total: 4.59s	remaining: 142ms
194:	learn: 6.5273033	total: 4.62s	remaining: 118ms
195:	learn: 6.4870752	total: 4.65s	remaining: 94.8ms
196:	learn: 6.4465018	total: 4.67s	remaining: 71.2ms
197:	learn: 6.4059530	total: 4.7s	remaining: 47.4ms
198:	learn: 6.3641752	total: 4.73s	remaining: 23.8ms
199:	learn: 6.3199674	total: 4.75s	remaining: 0us
0:	learn: 45.9374585	total: 2.56ms	remaining: 511ms
1:	learn: 44.9941372	total: 25.8ms	remaining: 2.55s
2:	learn: 44.2262139	total: 57.7ms	remaining: 3.79s
3:	learn: 43.4077369	total: 82.1ms	remaining: 4.02s
4:	learn: 42.4614795	total: 106ms	remaining: 4.13s
5:	learn: 41.7293035	total: 130ms	remaining: 4.19s
6:	learn: 40.9788334	total: 154ms	remaining: 4.24s
7:	learn: 40.2192521	total: 176ms	remaining: 4.22s
8:	learn: 39.3640339	total: 196ms	remaining: 4.16s
9:	learn: 38.5378070	total: 218ms	remaining: 4.13s
10:	learn: 37.8182939	total: 240ms	remaining: 4.12s
11:	learn: 37.1773569	total: 261ms	remaining: 4.09s
12:	learn: 36.4195124	total: 292ms	remaining: 4.21s
13:	learn: 35.5821022	total: 315ms	remaining: 4.18s
14:	learn: 35.0064478	total: 336ms	remaining: 4.15s
15:	learn: 34.2615732	total: 357ms	remaining: 4.1s
16:	learn: 33.5412554	total: 379ms	remaining: 4.08s
17:	learn: 32.9141508	total: 399ms	remaining: 4.04s
18:	learn: 32.2363942	total: 420ms	remaining: 4s
19:	learn: 31.7331387	total: 441ms	remaining: 3.97s
20:	learn: 31.0899756	total: 464ms	remaining: 3.96s
21:	learn: 30.6319944	total: 487ms	remaining: 3.94s
22:	learn: 30.1842367	total: 518ms	remaining: 3.98s
23:	learn: 29.6380878	total: 542ms	remaining: 3.98s
24:	learn: 29.2321241	total: 566ms	remaining: 3.96s
25:	learn: 28.7979520	total: 588ms	remaining: 3.93s
26:	learn: 28.2980553	total: 613ms	remaining: 3.92s
27:	learn: 27.8482566	total: 633ms	remaining: 3.89s
28:	learn: 27.4300154	total: 654ms	remaining: 3.86s
29:	learn: 27.0089070	total: 677ms	remaining: 3.84s
30:	learn: 26.6386533	total: 700ms	remaining: 3.81s
31:	learn: 26.1488739	total: 730ms	remaining: 3.83s
32:	learn: 25.7427326	total: 753ms	remaining: 3.81s
33:	learn: 25.4135376	total: 772ms	remaining: 3.77s
34:	learn: 25.1125079	total: 794ms	remaining: 3.74s
35:	learn: 24.7765508	total: 814ms	remaining: 3.71s
36:	learn: 24.4184054	total: 836ms	remaining: 3.68s
37:	learn: 24.1285465	total: 858ms	remaining: 3.66s
38:	learn: 23.7617767	total: 878ms	remaining: 3.62s
39:	learn: 23.4697237	total: 902ms	remaining: 3.61s
40:	learn: 23.1529572	total: 926ms	remaining: 3.59s
41:	learn: 22.9281680	total: 960ms	remaining: 3.61s
42:	learn: 22.5433571	total: 984ms	remaining: 3.59s
43:	learn: 22.2694210	total: 1.01s	remaining: 3.57s
44:	learn: 22.0626545	total: 1.03s	remaining: 3.54s
45:	learn: 21.7856336	total: 1.05s	remaining: 3.52s
46:	learn: 21.5744570	total: 1.07s	remaining: 3.5s
47:	learn: 21.3032312	total: 1.1s	remaining: 3.48s
48:	learn: 21.0549035	total: 1.12s	remaining: 3.46s
49:	learn: 20.7560738	total: 1.15s	remaining: 3.46s
50:	learn: 20.5666362	total: 1.18s	remaining: 3.44s
51:	learn: 20.2971913	total: 1.2s	remaining: 3.42s
52:	learn: 20.1128767	total: 1.22s	remaining: 3.39s
53:	learn: 19.9086266	total: 1.25s	remaining: 3.37s
54:	learn: 19.8505379	total: 1.27s	remaining: 3.34s
55:	learn: 19.6060818	total: 1.29s	remaining: 3.31s
56:	learn: 19.3463236	total: 1.31s	remaining: 3.29s
57:	learn: 19.1448943	total: 1.33s	remaining: 3.27s
58:	learn: 18.9303070	total: 1.36s	remaining: 3.24s
59:	learn: 18.7334702	total: 1.39s	remaining: 3.24s
60:	learn: 18.4745316	total: 1.41s	remaining: 3.22s
61:	learn: 18.3429058	total: 1.44s	remaining: 3.2s
62:	learn: 18.2349371	total: 1.46s	remaining: 3.17s
63:	learn: 18.0464198	total: 1.48s	remaining: 3.15s
64:	learn: 17.9551885	total: 1.5s	remaining: 3.13s
65:	learn: 17.8046513	total: 1.53s	remaining: 3.1s
66:	learn: 17.6580615	total: 1.55s	remaining: 3.08s
67:	learn: 17.5210179	total: 1.58s	remaining: 3.07s
68:	learn: 17.3683843	total: 1.61s	remaining: 3.05s
69:	learn: 17.2746349	total: 1.63s	remaining: 3.02s
70:	learn: 17.1657792	total: 1.65s	remaining: 3s
71:	learn: 17.0139366	total: 1.67s	remaining: 2.98s
72:	learn: 16.9273438	total: 1.7s	remaining: 2.95s
73:	learn: 16.7770796	total: 1.72s	remaining: 2.92s
74:	learn: 16.6273270	total: 1.74s	remaining: 2.9s
75:	learn: 16.4876252	total: 1.76s	remaining: 2.87s
76:	learn: 16.3403316	total: 1.78s	remaining: 2.85s
77:	learn: 16.2334666	total: 1.81s	remaining: 2.83s
78:	learn: 16.1246403	total: 1.84s	remaining: 2.81s
79:	learn: 16.1051765	total: 1.84s	remaining: 2.76s
80:	learn: 15.9789512	total: 1.86s	remaining: 2.73s
81:	learn: 15.8668312	total: 1.88s	remaining: 2.71s
82:	learn: 15.8286992	total: 1.91s	remaining: 2.69s
83:	learn: 15.7176535	total: 1.93s	remaining: 2.67s
84:	learn: 15.6304053	total: 1.95s	remaining: 2.64s
85:	learn: 15.5540487	total: 1.98s	remaining: 2.62s
86:	learn: 15.4358015	total: 2s	remaining: 2.6s
87:	learn: 15.3234993	total: 2.02s	remaining: 2.58s
88:	learn: 15.1846833	total: 2.05s	remaining: 2.56s
89:	learn: 15.0930916	total: 2.07s	remaining: 2.53s
90:	learn: 14.9870552	total: 2.09s	remaining: 2.5s
91:	learn: 14.9340350	total: 2.11s	remaining: 2.48s
92:	learn: 14.8819329	total: 2.13s	remaining: 2.46s
93:	learn: 14.8108947	total: 2.16s	remaining: 2.43s
94:	learn: 14.7229760	total: 2.18s	remaining: 2.41s
95:	learn: 14.6144792	total: 2.2s	remaining: 2.38s
96:	learn: 14.5117556	total: 2.23s	remaining: 2.37s
97:	learn: 14.4162730	total: 2.25s	remaining: 2.35s
98:	learn: 14.3472920	total: 2.28s	remaining: 2.32s
99:	learn: 14.2651631	total: 2.3s	remaining: 2.3s
100:	learn: 14.1622451	total: 2.32s	remaining: 2.28s
101:	learn: 14.0705359	total: 2.35s	remaining: 2.25s
102:	learn: 14.0187818	total: 2.37s	remaining: 2.23s
103:	learn: 13.9338223	total: 2.39s	remaining: 2.21s
104:	learn: 13.8404702	total: 2.41s	remaining: 2.18s
105:	learn: 13.7544908	total: 2.44s	remaining: 2.16s
106:	learn: 13.6910288	total: 2.46s	remaining: 2.14s
107:	learn: 13.6071469	total: 2.48s	remaining: 2.12s
108:	learn: 13.4768552	total: 2.51s	remaining: 2.09s
109:	learn: 13.3564611	total: 2.53s	remaining: 2.07s
110:	learn: 13.2980578	total: 2.55s	remaining: 2.04s
111:	learn: 13.2188287	total: 2.57s	remaining: 2.02s
112:	learn: 13.1286016	total: 2.59s	remaining: 1.99s
113:	learn: 13.0779405	total: 2.61s	remaining: 1.97s
114:	learn: 12.9750452	total: 2.63s	remaining: 1.95s
115:	learn: 12.9326416	total: 2.66s	remaining: 1.93s
116:	learn: 12.8432243	total: 2.69s	remaining: 1.91s
117:	learn: 12.7715202	total: 2.71s	remaining: 1.88s
118:	learn: 12.7282330	total: 2.73s	remaining: 1.86s
119:	learn: 12.6677950	total: 2.75s	remaining: 1.84s
120:	learn: 12.5864883	total: 2.78s	remaining: 1.81s
121:	learn: 12.5066953	total: 2.8s	remaining: 1.79s
122:	learn: 12.4318012	total: 2.82s	remaining: 1.77s
123:	learn: 12.3437350	total: 2.84s	remaining: 1.74s
124:	learn: 12.2463792	total: 2.87s	remaining: 1.72s
125:	learn: 12.1932562	total: 2.9s	remaining: 1.7s
126:	learn: 12.1366882	total: 2.92s	remaining: 1.68s
127:	learn: 12.0338743	total: 2.94s	remaining: 1.65s
128:	learn: 11.9764557	total: 2.96s	remaining: 1.63s
129:	learn: 11.9211302	total: 2.98s	remaining: 1.61s
130:	learn: 11.8275674	total: 3s	remaining: 1.58s
131:	learn: 11.7186241	total: 3.02s	remaining: 1.56s
132:	learn: 11.6485533	total: 3.04s	remaining: 1.53s
133:	learn: 11.6158707	total: 3.07s	remaining: 1.51s
134:	learn: 11.4647200	total: 3.09s	remaining: 1.49s
135:	learn: 11.3748863	total: 3.12s	remaining: 1.47s
136:	learn: 11.3013400	total: 3.14s	remaining: 1.44s
137:	learn: 11.1903084	total: 3.16s	remaining: 1.42s
138:	learn: 11.1470223	total: 3.19s	remaining: 1.4s
139:	learn: 11.0713577	total: 3.21s	remaining: 1.38s
140:	learn: 11.0239693	total: 3.23s	remaining: 1.35s
141:	learn: 10.9569574	total: 3.25s	remaining: 1.33s
142:	learn: 10.9107000	total: 3.27s	remaining: 1.3s
143:	learn: 10.8586101	total: 3.29s	remaining: 1.28s
144:	learn: 10.8190357	total: 3.32s	remaining: 1.26s
145:	learn: 10.7143494	total: 3.34s	remaining: 1.24s
146:	learn: 10.6676837	total: 3.37s	remaining: 1.21s
147:	learn: 10.6315748	total: 3.39s	remaining: 1.19s
148:	learn: 10.5678932	total: 3.41s	remaining: 1.17s
149:	learn: 10.4793966	total: 3.43s	remaining: 1.14s
150:	learn: 10.4350943	total: 3.45s	remaining: 1.12s
151:	learn: 10.3558788	total: 3.47s	remaining: 1.09s
152:	learn: 10.2784990	total: 3.49s	remaining: 1.07s
153:	learn: 10.1878032	total: 3.51s	remaining: 1.05s
154:	learn: 10.1379468	total: 3.54s	remaining: 1.03s
155:	learn: 10.0480828	total: 3.56s	remaining: 1s
156:	learn: 10.0156188	total: 3.58s	remaining: 981ms
157:	learn: 9.9253786	total: 3.6s	remaining: 959ms
158:	learn: 9.8444639	total: 3.63s	remaining: 936ms
159:	learn: 9.7916495	total: 3.65s	remaining: 913ms
160:	learn: 9.7472719	total: 3.67s	remaining: 889ms
161:	learn: 9.6852400	total: 3.69s	remaining: 866ms
162:	learn: 9.5977386	total: 3.71s	remaining: 843ms
163:	learn: 9.5546075	total: 3.74s	remaining: 820ms
164:	learn: 9.5156850	total: 3.76s	remaining: 798ms
165:	learn: 9.4490086	total: 3.79s	remaining: 776ms
166:	learn: 9.3764688	total: 3.81s	remaining: 754ms
167:	learn: 9.3171235	total: 3.84s	remaining: 731ms
168:	learn: 9.2504597	total: 3.86s	remaining: 709ms
169:	learn: 9.2017237	total: 3.88s	remaining: 686ms
170:	learn: 9.1525831	total: 3.91s	remaining: 663ms
171:	learn: 9.0967290	total: 3.93s	remaining: 640ms
172:	learn: 9.0420243	total: 3.96s	remaining: 617ms
173:	learn: 9.0088541	total: 3.99s	remaining: 596ms
174:	learn: 8.9547669	total: 4.02s	remaining: 574ms
175:	learn: 8.8981494	total: 4.04s	remaining: 552ms
176:	learn: 8.8410061	total: 4.07s	remaining: 529ms
177:	learn: 8.7996640	total: 4.09s	remaining: 506ms
178:	learn: 8.7487862	total: 4.12s	remaining: 483ms
179:	learn: 8.7199782	total: 4.14s	remaining: 460ms
180:	learn: 8.6742407	total: 4.17s	remaining: 437ms
181:	learn: 8.6136666	total: 4.19s	remaining: 415ms
182:	learn: 8.5520812	total: 4.22s	remaining: 392ms
183:	learn: 8.4963824	total: 4.26s	remaining: 370ms
184:	learn: 8.4636666	total: 4.28s	remaining: 347ms
185:	learn: 8.3946037	total: 4.3s	remaining: 324ms
186:	learn: 8.3420698	total: 4.33s	remaining: 301ms
187:	learn: 8.2745887	total: 4.35s	remaining: 278ms
188:	learn: 8.2219687	total: 4.37s	remaining: 255ms
189:	learn: 8.1839189	total: 4.4s	remaining: 231ms
190:	learn: 8.1528847	total: 4.43s	remaining: 209ms
191:	learn: 8.1136114	total: 4.46s	remaining: 186ms
192:	learn: 8.0703520	total: 4.48s	remaining: 163ms
193:	learn: 8.0353076	total: 4.52s	remaining: 140ms
194:	learn: 7.9911522	total: 4.54s	remaining: 117ms
195:	learn: 7.9553013	total: 4.57s	remaining: 93.2ms
196:	learn: 7.9310850	total: 4.59s	remaining: 69.9ms
197:	learn: 7.9041172	total: 4.62s	remaining: 46.6ms
198:	learn: 7.8938382	total: 4.65s	remaining: 23.4ms
199:	learn: 7.8482459	total: 4.67s	remaining: 0us
0:	learn: 46.4538034	total: 21.8ms	remaining: 4.33s
1:	learn: 45.4517374	total: 44.7ms	remaining: 4.42s
2:	learn: 44.5278586	total: 64.5ms	remaining: 4.24s
3:	learn: 43.4085977	total: 87ms	remaining: 4.26s
4:	learn: 42.4277811	total: 111ms	remaining: 4.32s
5:	learn: 41.6326697	total: 142ms	remaining: 4.58s
6:	learn: 40.7538359	total: 164ms	remaining: 4.53s
7:	learn: 39.9527309	total: 187ms	remaining: 4.49s
8:	learn: 39.0753018	total: 212ms	remaining: 4.5s
9:	learn: 38.2762566	total: 236ms	remaining: 4.49s
10:	learn: 37.6931120	total: 258ms	remaining: 4.43s
11:	learn: 37.1152456	total: 279ms	remaining: 4.36s
12:	learn: 36.4260589	total: 302ms	remaining: 4.34s
13:	learn: 35.8227743	total: 325ms	remaining: 4.31s
14:	learn: 35.1895931	total: 354ms	remaining: 4.36s
15:	learn: 34.5173917	total: 377ms	remaining: 4.33s
16:	learn: 33.7580423	total: 398ms	remaining: 4.28s
17:	learn: 33.2817590	total: 420ms	remaining: 4.25s
18:	learn: 32.6094234	total: 443ms	remaining: 4.22s
19:	learn: 32.1663838	total: 467ms	remaining: 4.2s
20:	learn: 31.6118204	total: 489ms	remaining: 4.16s
21:	learn: 31.0524919	total: 512ms	remaining: 4.14s
22:	learn: 30.6530294	total: 544ms	remaining: 4.18s
23:	learn: 29.9638142	total: 570ms	remaining: 4.18s
24:	learn: 29.4784766	total: 593ms	remaining: 4.15s
25:	learn: 29.0431548	total: 617ms	remaining: 4.13s
26:	learn: 28.5923229	total: 641ms	remaining: 4.11s
27:	learn: 28.1646598	total: 666ms	remaining: 4.09s
28:	learn: 27.7320559	total: 690ms	remaining: 4.07s
29:	learn: 27.3472101	total: 711ms	remaining: 4.03s
30:	learn: 26.9299792	total: 735ms	remaining: 4s
31:	learn: 26.5961114	total: 759ms	remaining: 3.98s
32:	learn: 26.0427736	total: 784ms	remaining: 3.97s
33:	learn: 25.5746867	total: 813ms	remaining: 3.97s
34:	learn: 25.2866624	total: 836ms	remaining: 3.94s
35:	learn: 24.9462619	total: 858ms	remaining: 3.91s
36:	learn: 24.6276430	total: 881ms	remaining: 3.88s
37:	learn: 24.3408784	total: 902ms	remaining: 3.85s
38:	learn: 24.0950500	total: 924ms	remaining: 3.81s
39:	learn: 23.7192013	total: 946ms	remaining: 3.79s
40:	learn: 23.4131644	total: 970ms	remaining: 3.76s
41:	learn: 23.0871679	total: 992ms	remaining: 3.73s
42:	learn: 22.8237273	total: 1.02s	remaining: 3.74s
43:	learn: 22.5691307	total: 1.05s	remaining: 3.73s
44:	learn: 22.3341037	total: 1.07s	remaining: 3.7s
45:	learn: 22.0782394	total: 1.1s	remaining: 3.68s
46:	learn: 21.8287260	total: 1.12s	remaining: 3.65s
47:	learn: 21.4945293	total: 1.14s	remaining: 3.62s
48:	learn: 21.2779027	total: 1.16s	remaining: 3.59s
49:	learn: 21.0183245	total: 1.19s	remaining: 3.56s
50:	learn: 20.8304059	total: 1.21s	remaining: 3.54s
51:	learn: 20.6505224	total: 1.24s	remaining: 3.53s
52:	learn: 20.4434302	total: 1.26s	remaining: 3.5s
53:	learn: 20.2358596	total: 1.28s	remaining: 3.48s
54:	learn: 19.9248895	total: 1.31s	remaining: 3.45s
55:	learn: 19.6402054	total: 1.33s	remaining: 3.42s
56:	learn: 19.4863996	total: 1.35s	remaining: 3.39s
57:	learn: 19.2820242	total: 1.37s	remaining: 3.36s
58:	learn: 19.0309684	total: 1.39s	remaining: 3.33s
59:	learn: 18.9156855	total: 1.42s	remaining: 3.31s
60:	learn: 18.7362124	total: 1.44s	remaining: 3.29s
61:	learn: 18.5327109	total: 1.47s	remaining: 3.28s
62:	learn: 18.3473379	total: 1.5s	remaining: 3.25s
63:	learn: 18.1447985	total: 1.52s	remaining: 3.23s
64:	learn: 17.9782680	total: 1.54s	remaining: 3.2s
65:	learn: 17.7731055	total: 1.56s	remaining: 3.18s
66:	learn: 17.6666871	total: 1.59s	remaining: 3.15s
67:	learn: 17.4893685	total: 1.61s	remaining: 3.13s
68:	learn: 17.4081271	total: 1.63s	remaining: 3.1s
69:	learn: 17.2768910	total: 1.66s	remaining: 3.08s
70:	learn: 17.1686736	total: 1.69s	remaining: 3.06s
71:	learn: 17.0306633	total: 1.71s	remaining: 3.04s
72:	learn: 16.8387254	total: 1.73s	remaining: 3.01s
73:	learn: 16.6835666	total: 1.75s	remaining: 2.98s
74:	learn: 16.5275101	total: 1.77s	remaining: 2.96s
75:	learn: 16.3788685	total: 1.79s	remaining: 2.93s
76:	learn: 16.2632053	total: 1.82s	remaining: 2.9s
77:	learn: 16.1434405	total: 1.84s	remaining: 2.87s
78:	learn: 16.0439065	total: 1.86s	remaining: 2.85s
79:	learn: 15.9662547	total: 1.89s	remaining: 2.83s
80:	learn: 15.8312242	total: 1.91s	remaining: 2.81s
81:	learn: 15.7325519	total: 1.94s	remaining: 2.79s
82:	learn: 15.5842095	total: 1.96s	remaining: 2.77s
83:	learn: 15.4773774	total: 1.99s	remaining: 2.74s
84:	learn: 15.3840131	total: 2.01s	remaining: 2.72s
85:	learn: 15.2543240	total: 2.03s	remaining: 2.69s
86:	learn: 15.1770733	total: 2.05s	remaining: 2.67s
87:	learn: 15.0601980	total: 2.08s	remaining: 2.65s
88:	learn: 14.9710854	total: 2.11s	remaining: 2.63s
89:	learn: 14.8071359	total: 2.13s	remaining: 2.6s
90:	learn: 14.6765600	total: 2.15s	remaining: 2.57s
91:	learn: 14.6006761	total: 2.17s	remaining: 2.55s
92:	learn: 14.4927442	total: 2.19s	remaining: 2.52s
93:	learn: 14.3676298	total: 2.21s	remaining: 2.5s
94:	learn: 14.2821814	total: 2.23s	remaining: 2.47s
95:	learn: 14.1977772	total: 2.25s	remaining: 2.44s
96:	learn: 14.0716572	total: 2.28s	remaining: 2.42s
97:	learn: 13.9596234	total: 2.3s	remaining: 2.4s
98:	learn: 13.8995436	total: 2.33s	remaining: 2.38s
99:	learn: 13.8034385	total: 2.35s	remaining: 2.35s
100:	learn: 13.7120315	total: 2.38s	remaining: 2.33s
101:	learn: 13.6164659	total: 2.4s	remaining: 2.3s
102:	learn: 13.5209984	total: 2.42s	remaining: 2.28s
103:	learn: 13.4658429	total: 2.44s	remaining: 2.25s
104:	learn: 13.4053582	total: 2.46s	remaining: 2.23s
105:	learn: 13.3017497	total: 2.49s	remaining: 2.21s
106:	learn: 13.2206464	total: 2.51s	remaining: 2.18s
107:	learn: 13.1422514	total: 2.53s	remaining: 2.16s
108:	learn: 13.0835914	total: 2.55s	remaining: 2.13s
109:	learn: 13.0279614	total: 2.58s	remaining: 2.11s
110:	learn: 12.9774570	total: 2.6s	remaining: 2.08s
111:	learn: 12.9020485	total: 2.62s	remaining: 2.06s
112:	learn: 12.8173719	total: 2.64s	remaining: 2.03s
113:	learn: 12.7393239	total: 2.66s	remaining: 2.01s
114:	learn: 12.6367887	total: 2.68s	remaining: 1.98s
115:	learn: 12.5697725	total: 2.71s	remaining: 1.96s
116:	learn: 12.5006737	total: 2.74s	remaining: 1.94s
117:	learn: 12.4376486	total: 2.76s	remaining: 1.92s
118:	learn: 12.3261688	total: 2.78s	remaining: 1.9s
119:	learn: 12.2496645	total: 2.81s	remaining: 1.87s
120:	learn: 12.1857073	total: 2.83s	remaining: 1.85s
121:	learn: 12.1163525	total: 2.85s	remaining: 1.82s
122:	learn: 12.0585407	total: 2.87s	remaining: 1.8s
123:	learn: 11.9861032	total: 2.89s	remaining: 1.77s
124:	learn: 11.9047316	total: 2.91s	remaining: 1.75s
125:	learn: 11.8337331	total: 2.94s	remaining: 1.73s
126:	learn: 11.7759765	total: 2.97s	remaining: 1.71s
127:	learn: 11.7024093	total: 2.99s	remaining: 1.68s
128:	learn: 11.6081808	total: 3.01s	remaining: 1.66s
129:	learn: 11.5253220	total: 3.03s	remaining: 1.63s
130:	learn: 11.4331928	total: 3.05s	remaining: 1.61s
131:	learn: 11.3245888	total: 3.07s	remaining: 1.58s
132:	learn: 11.2624696	total: 3.09s	remaining: 1.56s
133:	learn: 11.1917257	total: 3.11s	remaining: 1.53s
134:	learn: 11.1329960	total: 3.13s	remaining: 1.51s
135:	learn: 10.9864277	total: 3.17s	remaining: 1.49s
136:	learn: 10.9137609	total: 3.19s	remaining: 1.47s
137:	learn: 10.8588357	total: 3.22s	remaining: 1.45s
138:	learn: 10.7899706	total: 3.24s	remaining: 1.42s
139:	learn: 10.7091023	total: 3.26s	remaining: 1.4s
140:	learn: 10.6292879	total: 3.28s	remaining: 1.37s
141:	learn: 10.5787824	total: 3.3s	remaining: 1.35s
142:	learn: 10.5123495	total: 3.32s	remaining: 1.32s
143:	learn: 10.4562492	total: 3.35s	remaining: 1.3s
144:	learn: 10.4136062	total: 3.37s	remaining: 1.28s
145:	learn: 10.3583573	total: 3.4s	remaining: 1.26s
146:	learn: 10.2893799	total: 3.42s	remaining: 1.23s
147:	learn: 10.2530112	total: 3.44s	remaining: 1.21s
148:	learn: 10.1988858	total: 3.46s	remaining: 1.18s
149:	learn: 10.1245445	total: 3.48s	remaining: 1.16s
150:	learn: 10.0526167	total: 3.5s	remaining: 1.14s
151:	learn: 9.9689378	total: 3.52s	remaining: 1.11s
152:	learn: 9.8847254	total: 3.54s	remaining: 1.09s
153:	learn: 9.7919570	total: 3.56s	remaining: 1.06s
154:	learn: 9.7062768	total: 3.59s	remaining: 1.04s
155:	learn: 9.6252403	total: 3.62s	remaining: 1.02s
156:	learn: 9.5455325	total: 3.64s	remaining: 996ms
157:	learn: 9.5012998	total: 3.66s	remaining: 973ms
158:	learn: 9.4103337	total: 3.68s	remaining: 950ms
159:	learn: 9.3338806	total: 3.7s	remaining: 926ms
160:	learn: 9.2751782	total: 3.72s	remaining: 902ms
161:	learn: 9.2004277	total: 3.74s	remaining: 878ms
162:	learn: 9.1274732	total: 3.77s	remaining: 855ms
163:	learn: 9.0698305	total: 3.79s	remaining: 832ms
164:	learn: 8.9898767	total: 3.81s	remaining: 809ms
165:	learn: 8.9222029	total: 3.83s	remaining: 786ms
166:	learn: 8.8424832	total: 3.86s	remaining: 762ms
167:	learn: 8.7750285	total: 3.88s	remaining: 738ms
168:	learn: 8.7299391	total: 3.91s	remaining: 717ms
169:	learn: 8.6768424	total: 3.93s	remaining: 693ms
170:	learn: 8.6340612	total: 3.96s	remaining: 671ms
171:	learn: 8.5724179	total: 3.98s	remaining: 648ms
172:	learn: 8.5112656	total: 4.01s	remaining: 626ms
173:	learn: 8.4606698	total: 4.04s	remaining: 603ms
174:	learn: 8.4018801	total: 4.06s	remaining: 580ms
175:	learn: 8.3389272	total: 4.09s	remaining: 557ms
176:	learn: 8.2957437	total: 4.11s	remaining: 535ms
177:	learn: 8.2520990	total: 4.14s	remaining: 511ms
178:	learn: 8.2029616	total: 4.16s	remaining: 488ms
179:	learn: 8.1508536	total: 4.19s	remaining: 465ms
180:	learn: 8.1118269	total: 4.22s	remaining: 443ms
181:	learn: 8.0464124	total: 4.25s	remaining: 420ms
182:	learn: 8.0001657	total: 4.27s	remaining: 397ms
183:	learn: 7.9678925	total: 4.29s	remaining: 373ms
184:	learn: 7.9047528	total: 4.32s	remaining: 350ms
185:	learn: 7.8524257	total: 4.34s	remaining: 327ms
186:	learn: 7.8097585	total: 4.36s	remaining: 303ms
187:	learn: 7.7807698	total: 4.39s	remaining: 280ms
188:	learn: 7.7460982	total: 4.42s	remaining: 257ms
189:	learn: 7.7136520	total: 4.45s	remaining: 234ms
190:	learn: 7.6792940	total: 4.48s	remaining: 211ms
191:	learn: 7.6218622	total: 4.5s	remaining: 188ms
192:	learn: 7.5944741	total: 4.53s	remaining: 164ms
193:	learn: 7.5522715	total: 4.55s	remaining: 141ms
194:	learn: 7.4858764	total: 4.58s	remaining: 117ms
195:	learn: 7.4564326	total: 4.6s	remaining: 93.9ms
196:	learn: 7.4027831	total: 4.63s	remaining: 70.5ms
197:	learn: 7.3494320	total: 4.66s	remaining: 47.1ms
198:	learn: 7.3217547	total: 4.68s	remaining: 23.5ms
199:	learn: 7.2645986	total: 4.71s	remaining: 0us
0:	learn: 27.3441720	total: 22.7ms	remaining: 2.24s
1:	learn: 26.7159954	total: 48ms	remaining: 2.35s
2:	learn: 26.0850318	total: 73.4ms	remaining: 2.37s
3:	learn: 25.4039656	total: 106ms	remaining: 2.54s
4:	learn: 24.7930659	total: 131ms	remaining: 2.48s
5:	learn: 24.2028590	total: 155ms	remaining: 2.42s
6:	learn: 23.6622902	total: 180ms	remaining: 2.39s
7:	learn: 23.1531175	total: 205ms	remaining: 2.36s
8:	learn: 22.7050792	total: 229ms	remaining: 2.31s
9:	learn: 22.2151788	total: 261ms	remaining: 2.35s
10:	learn: 21.7708844	total: 285ms	remaining: 2.31s
11:	learn: 21.2587174	total: 314ms	remaining: 2.3s
12:	learn: 20.7559870	total: 339ms	remaining: 2.27s
13:	learn: 20.3040842	total: 362ms	remaining: 2.22s
14:	learn: 19.9019524	total: 386ms	remaining: 2.19s
15:	learn: 19.5186012	total: 411ms	remaining: 2.16s
16:	learn: 19.1521621	total: 435ms	remaining: 2.12s
17:	learn: 18.7652180	total: 460ms	remaining: 2.1s
18:	learn: 18.4446446	total: 484ms	remaining: 2.06s
19:	learn: 18.0977650	total: 526ms	remaining: 2.1s
20:	learn: 17.7791328	total: 550ms	remaining: 2.07s
21:	learn: 17.4777648	total: 575ms	remaining: 2.04s
22:	learn: 17.1794361	total: 599ms	remaining: 2s
23:	learn: 16.8685032	total: 624ms	remaining: 1.98s
24:	learn: 16.6274695	total: 646ms	remaining: 1.94s
25:	learn: 16.3071099	total: 669ms	remaining: 1.9s
26:	learn: 16.0249663	total: 694ms	remaining: 1.88s
27:	learn: 15.7535309	total: 725ms	remaining: 1.86s
28:	learn: 15.4777235	total: 751ms	remaining: 1.84s
29:	learn: 15.2410825	total: 781ms	remaining: 1.82s
30:	learn: 15.0133002	total: 805ms	remaining: 1.79s
31:	learn: 14.8018912	total: 828ms	remaining: 1.76s
32:	learn: 14.5701546	total: 850ms	remaining: 1.73s
33:	learn: 14.3799060	total: 873ms	remaining: 1.69s
34:	learn: 14.0975095	total: 898ms	remaining: 1.67s
35:	learn: 13.8873493	total: 923ms	remaining: 1.64s
36:	learn: 13.6812023	total: 958ms	remaining: 1.63s
37:	learn: 13.4943017	total: 983ms	remaining: 1.6s
38:	learn: 13.3224094	total: 1.02s	remaining: 1.59s
39:	learn: 13.0967901	total: 1.04s	remaining: 1.56s
40:	learn: 12.9138190	total: 1.06s	remaining: 1.53s
41:	learn: 12.7764458	total: 1.09s	remaining: 1.5s
42:	learn: 12.6593656	total: 1.11s	remaining: 1.48s
43:	learn: 12.5051105	total: 1.14s	remaining: 1.46s
44:	learn: 12.3057146	total: 1.17s	remaining: 1.43s
45:	learn: 12.1487674	total: 1.2s	remaining: 1.4s
46:	learn: 11.9614903	total: 1.22s	remaining: 1.37s
47:	learn: 11.7921265	total: 1.24s	remaining: 1.34s
48:	learn: 11.6572640	total: 1.27s	remaining: 1.32s
49:	learn: 11.5251463	total: 1.29s	remaining: 1.29s
50:	learn: 11.3789931	total: 1.32s	remaining: 1.27s
51:	learn: 11.2691375	total: 1.34s	remaining: 1.24s
52:	learn: 11.1161131	total: 1.39s	remaining: 1.23s
53:	learn: 11.0246399	total: 1.41s	remaining: 1.2s
54:	learn: 10.9152420	total: 1.44s	remaining: 1.18s
55:	learn: 10.7746769	total: 1.46s	remaining: 1.15s
56:	learn: 10.6222917	total: 1.49s	remaining: 1.12s
57:	learn: 10.5096115	total: 1.51s	remaining: 1.09s
58:	learn: 10.3857030	total: 1.54s	remaining: 1.07s
59:	learn: 10.2789057	total: 1.57s	remaining: 1.05s
60:	learn: 10.1490749	total: 1.6s	remaining: 1.02s
61:	learn: 10.0553291	total: 1.62s	remaining: 994ms
62:	learn: 9.9351043	total: 1.64s	remaining: 965ms
63:	learn: 9.8245261	total: 1.67s	remaining: 937ms
64:	learn: 9.7207577	total: 1.69s	remaining: 909ms
65:	learn: 9.5920661	total: 1.71s	remaining: 881ms
66:	learn: 9.4832767	total: 1.73s	remaining: 854ms
67:	learn: 9.3724149	total: 1.76s	remaining: 828ms
68:	learn: 9.2459801	total: 1.8s	remaining: 811ms
69:	learn: 9.1740635	total: 1.83s	remaining: 784ms
70:	learn: 9.1015730	total: 1.85s	remaining: 758ms
71:	learn: 9.0196460	total: 1.88s	remaining: 731ms
72:	learn: 8.9458977	total: 1.91s	remaining: 705ms
73:	learn: 8.8434400	total: 1.93s	remaining: 678ms
74:	learn: 8.7495151	total: 1.95s	remaining: 652ms
75:	learn: 8.6521348	total: 1.98s	remaining: 626ms
76:	learn: 8.5654483	total: 2.01s	remaining: 601ms
77:	learn: 8.4965765	total: 2.04s	remaining: 576ms
78:	learn: 8.4308736	total: 2.07s	remaining: 550ms
79:	learn: 8.3675601	total: 2.09s	remaining: 523ms
80:	learn: 8.3193887	total: 2.11s	remaining: 496ms
81:	learn: 8.2507990	total: 2.13s	remaining: 469ms
82:	learn: 8.1583259	total: 2.16s	remaining: 442ms
83:	learn: 8.0995902	total: 2.18s	remaining: 416ms
84:	learn: 8.0236655	total: 2.22s	remaining: 392ms
85:	learn: 7.9634698	total: 2.25s	remaining: 367ms
86:	learn: 7.9109081	total: 2.28s	remaining: 340ms
87:	learn: 7.8385006	total: 2.31s	remaining: 315ms
88:	learn: 7.7859488	total: 2.33s	remaining: 288ms
89:	learn: 7.7270142	total: 2.36s	remaining: 262ms
90:	learn: 7.6774253	total: 2.38s	remaining: 236ms
91:	learn: 7.6126552	total: 2.41s	remaining: 209ms
92:	learn: 7.5392178	total: 2.44s	remaining: 184ms
93:	learn: 7.4745082	total: 2.46s	remaining: 157ms
94:	learn: 7.4106939	total: 2.48s	remaining: 131ms
95:	learn: 7.3573350	total: 2.5s	remaining: 104ms
96:	learn: 7.2889777	total: 2.53s	remaining: 78.3ms
97:	learn: 7.2204939	total: 2.56s	remaining: 52.2ms
98:	learn: 7.1646465	total: 2.58s	remaining: 26.1ms
99:	learn: 7.1204610	total: 2.61s	remaining: 0us
0:	learn: 42.5494645	total: 25.4ms	remaining: 2.52s
1:	learn: 41.2913513	total: 50.9ms	remaining: 2.49s
2:	learn: 40.1676527	total: 74.5ms	remaining: 2.41s
3:	learn: 38.7664819	total: 96.4ms	remaining: 2.31s
4:	learn: 37.5407492	total: 119ms	remaining: 2.26s
5:	learn: 36.4295331	total: 143ms	remaining: 2.24s
6:	learn: 35.2895967	total: 167ms	remaining: 2.22s
7:	learn: 34.1884539	total: 208ms	remaining: 2.39s
8:	learn: 33.1817690	total: 231ms	remaining: 2.34s
9:	learn: 32.3518195	total: 254ms	remaining: 2.29s
10:	learn: 31.4837515	total: 277ms	remaining: 2.24s
11:	learn: 30.7255972	total: 300ms	remaining: 2.2s
12:	learn: 29.9298648	total: 324ms	remaining: 2.17s
13:	learn: 29.0574249	total: 349ms	remaining: 2.14s
14:	learn: 28.4097384	total: 371ms	remaining: 2.1s
15:	learn: 27.5317445	total: 396ms	remaining: 2.08s
16:	learn: 26.7911946	total: 430ms	remaining: 2.1s
17:	learn: 26.1103465	total: 453ms	remaining: 2.06s
18:	learn: 25.5295903	total: 477ms	remaining: 2.03s
19:	learn: 24.8544960	total: 499ms	remaining: 2s
20:	learn: 24.2772682	total: 522ms	remaining: 1.96s
21:	learn: 23.6936944	total: 542ms	remaining: 1.92s
22:	learn: 23.1300945	total: 563ms	remaining: 1.89s
23:	learn: 22.5333494	total: 586ms	remaining: 1.86s
24:	learn: 22.0553465	total: 610ms	remaining: 1.83s
25:	learn: 21.6253628	total: 638ms	remaining: 1.82s
26:	learn: 21.1396219	total: 661ms	remaining: 1.79s
27:	learn: 20.7382905	total: 684ms	remaining: 1.76s
28:	learn: 20.3233915	total: 707ms	remaining: 1.73s
29:	learn: 19.9323992	total: 729ms	remaining: 1.7s
30:	learn: 19.5650439	total: 752ms	remaining: 1.67s
31:	learn: 19.2165649	total: 774ms	remaining: 1.64s
32:	learn: 18.8890056	total: 799ms	remaining: 1.62s
33:	learn: 18.5523762	total: 831ms	remaining: 1.61s
34:	learn: 18.2666116	total: 858ms	remaining: 1.59s
35:	learn: 17.9216926	total: 882ms	remaining: 1.57s
36:	learn: 17.6118879	total: 906ms	remaining: 1.54s
37:	learn: 17.2653313	total: 929ms	remaining: 1.51s
38:	learn: 16.9946585	total: 953ms	remaining: 1.49s
39:	learn: 16.6842506	total: 974ms	remaining: 1.46s
40:	learn: 16.4102287	total: 995ms	remaining: 1.43s
41:	learn: 16.2288795	total: 1.02s	remaining: 1.41s
42:	learn: 15.9623692	total: 1.04s	remaining: 1.38s
43:	learn: 15.7308231	total: 1.07s	remaining: 1.36s
44:	learn: 15.4695555	total: 1.09s	remaining: 1.33s
45:	learn: 15.2706809	total: 1.11s	remaining: 1.3s
46:	learn: 15.0182699	total: 1.13s	remaining: 1.28s
47:	learn: 14.7702088	total: 1.15s	remaining: 1.25s
48:	learn: 14.6303566	total: 1.17s	remaining: 1.22s
49:	learn: 14.4038016	total: 1.2s	remaining: 1.2s
50:	learn: 14.2309807	total: 1.22s	remaining: 1.17s
51:	learn: 14.0308425	total: 1.24s	remaining: 1.15s
52:	learn: 13.8201931	total: 1.26s	remaining: 1.12s
53:	learn: 13.6070078	total: 1.29s	remaining: 1.1s
54:	learn: 13.4230690	total: 1.32s	remaining: 1.08s
55:	learn: 13.2368649	total: 1.34s	remaining: 1.05s
56:	learn: 13.0449556	total: 1.36s	remaining: 1.03s
57:	learn: 12.8375669	total: 1.39s	remaining: 1.01s
58:	learn: 12.6795194	total: 1.41s	remaining: 981ms
59:	learn: 12.5197211	total: 1.43s	remaining: 956ms
60:	learn: 12.4011717	total: 1.46s	remaining: 933ms
61:	learn: 12.2396104	total: 1.48s	remaining: 909ms
62:	learn: 12.0647878	total: 1.51s	remaining: 886ms
63:	learn: 11.9247719	total: 1.53s	remaining: 861ms
64:	learn: 11.7923634	total: 1.55s	remaining: 836ms
65:	learn: 11.6628246	total: 1.57s	remaining: 810ms
66:	learn: 11.5688935	total: 1.59s	remaining: 785ms
67:	learn: 11.4345056	total: 1.62s	remaining: 761ms
68:	learn: 11.3136955	total: 1.64s	remaining: 736ms
69:	learn: 11.2040357	total: 1.66s	remaining: 713ms
70:	learn: 11.1067773	total: 1.69s	remaining: 689ms
71:	learn: 10.9728105	total: 1.72s	remaining: 668ms
72:	learn: 10.8338607	total: 1.74s	remaining: 644ms
73:	learn: 10.7202016	total: 1.76s	remaining: 620ms
74:	learn: 10.5983746	total: 1.79s	remaining: 596ms
75:	learn: 10.4882458	total: 1.81s	remaining: 572ms
76:	learn: 10.3827604	total: 1.84s	remaining: 549ms
77:	learn: 10.2485726	total: 1.86s	remaining: 524ms
78:	learn: 10.1524716	total: 1.88s	remaining: 500ms
79:	learn: 10.0765127	total: 1.9s	remaining: 476ms
80:	learn: 9.9617067	total: 1.93s	remaining: 453ms
81:	learn: 9.8357151	total: 1.96s	remaining: 430ms
82:	learn: 9.7311644	total: 1.98s	remaining: 405ms
83:	learn: 9.6314802	total: 2s	remaining: 381ms
84:	learn: 9.5137958	total: 2.02s	remaining: 357ms
85:	learn: 9.4420485	total: 2.04s	remaining: 333ms
86:	learn: 9.3959294	total: 2.06s	remaining: 309ms
87:	learn: 9.3057742	total: 2.09s	remaining: 285ms
88:	learn: 9.2031484	total: 2.11s	remaining: 261ms
89:	learn: 9.0996948	total: 2.13s	remaining: 237ms
90:	learn: 9.0492278	total: 2.17s	remaining: 214ms
91:	learn: 8.9400377	total: 2.19s	remaining: 190ms
92:	learn: 8.8904458	total: 2.21s	remaining: 167ms
93:	learn: 8.8102982	total: 2.24s	remaining: 143ms
94:	learn: 8.7445451	total: 2.26s	remaining: 119ms
95:	learn: 8.6796106	total: 2.28s	remaining: 95.2ms
96:	learn: 8.5875790	total: 2.31s	remaining: 71.4ms
97:	learn: 8.5086871	total: 2.33s	remaining: 47.5ms
98:	learn: 8.4547244	total: 2.36s	remaining: 23.8ms
99:	learn: 8.3841281	total: 2.38s	remaining: 0us
0:	learn: 46.2258117	total: 2.6ms	remaining: 257ms
1:	learn: 45.1253456	total: 24.1ms	remaining: 1.18s
2:	learn: 43.7311767	total: 45.6ms	remaining: 1.47s
3:	learn: 42.4252819	total: 67.6ms	remaining: 1.62s
4:	learn: 41.1436655	total: 89.9ms	remaining: 1.71s
5:	learn: 40.0337136	total: 117ms	remaining: 1.84s
6:	learn: 38.9102686	total: 143ms	remaining: 1.9s
7:	learn: 37.7859737	total: 166ms	remaining: 1.91s
8:	learn: 36.7646905	total: 188ms	remaining: 1.9s
9:	learn: 35.9495481	total: 210ms	remaining: 1.89s
10:	learn: 35.0558185	total: 234ms	remaining: 1.89s
11:	learn: 34.1958090	total: 256ms	remaining: 1.88s
12:	learn: 33.3514013	total: 277ms	remaining: 1.85s
13:	learn: 32.3317086	total: 299ms	remaining: 1.84s
14:	learn: 31.5611046	total: 324ms	remaining: 1.84s
15:	learn: 30.6373573	total: 349ms	remaining: 1.83s
16:	learn: 29.8883669	total: 369ms	remaining: 1.8s
17:	learn: 29.2985952	total: 389ms	remaining: 1.77s
18:	learn: 28.6360550	total: 410ms	remaining: 1.75s
19:	learn: 27.9757056	total: 430ms	remaining: 1.72s
20:	learn: 27.2585835	total: 451ms	remaining: 1.7s
21:	learn: 26.6366391	total: 472ms	remaining: 1.67s
22:	learn: 26.1055455	total: 493ms	remaining: 1.65s
23:	learn: 25.4961568	total: 514ms	remaining: 1.63s
24:	learn: 25.1037435	total: 537ms	remaining: 1.61s
25:	learn: 24.5258982	total: 569ms	remaining: 1.62s
26:	learn: 23.9974764	total: 594ms	remaining: 1.6s
27:	learn: 23.5108419	total: 616ms	remaining: 1.58s
28:	learn: 23.0835773	total: 638ms	remaining: 1.56s
29:	learn: 22.5744350	total: 661ms	remaining: 1.54s
30:	learn: 22.1357783	total: 681ms	remaining: 1.51s
31:	learn: 21.7316226	total: 703ms	remaining: 1.49s
32:	learn: 21.4082899	total: 725ms	remaining: 1.47s
33:	learn: 20.9640138	total: 747ms	remaining: 1.45s
34:	learn: 20.6379417	total: 775ms	remaining: 1.44s
35:	learn: 20.2688010	total: 798ms	remaining: 1.42s
36:	learn: 19.8479214	total: 817ms	remaining: 1.39s
37:	learn: 19.5684638	total: 839ms	remaining: 1.37s
38:	learn: 19.1826919	total: 861ms	remaining: 1.35s
39:	learn: 18.9583308	total: 881ms	remaining: 1.32s
40:	learn: 18.6736002	total: 900ms	remaining: 1.29s
41:	learn: 18.3525328	total: 920ms	remaining: 1.27s
42:	learn: 17.9954191	total: 941ms	remaining: 1.25s
43:	learn: 17.6991520	total: 962ms	remaining: 1.22s
44:	learn: 17.3697888	total: 990ms	remaining: 1.21s
45:	learn: 17.0519636	total: 1.01s	remaining: 1.19s
46:	learn: 16.7829795	total: 1.04s	remaining: 1.17s
47:	learn: 16.5108695	total: 1.06s	remaining: 1.15s
48:	learn: 16.2366816	total: 1.08s	remaining: 1.13s
49:	learn: 15.9947350	total: 1.1s	remaining: 1.1s
50:	learn: 15.7513561	total: 1.13s	remaining: 1.08s
51:	learn: 15.4328481	total: 1.15s	remaining: 1.06s
52:	learn: 15.2497907	total: 1.17s	remaining: 1.04s
53:	learn: 15.0417076	total: 1.19s	remaining: 1.01s
54:	learn: 14.8861891	total: 1.22s	remaining: 1s
55:	learn: 14.6497794	total: 1.25s	remaining: 979ms
56:	learn: 14.3664771	total: 1.27s	remaining: 957ms
57:	learn: 14.2358168	total: 1.29s	remaining: 932ms
58:	learn: 14.0712722	total: 1.31s	remaining: 909ms
59:	learn: 13.9191649	total: 1.33s	remaining: 887ms
60:	learn: 13.7032356	total: 1.35s	remaining: 864ms
61:	learn: 13.5029041	total: 1.37s	remaining: 841ms
62:	learn: 13.3568908	total: 1.39s	remaining: 819ms
63:	learn: 13.1332696	total: 1.42s	remaining: 797ms
64:	learn: 13.0323137	total: 1.45s	remaining: 780ms
65:	learn: 12.8622078	total: 1.47s	remaining: 758ms
66:	learn: 12.7088186	total: 1.49s	remaining: 736ms
67:	learn: 12.5524646	total: 1.52s	remaining: 714ms
68:	learn: 12.4646011	total: 1.54s	remaining: 693ms
69:	learn: 12.3900687	total: 1.56s	remaining: 669ms
70:	learn: 12.2908367	total: 1.58s	remaining: 647ms
71:	learn: 12.1294405	total: 1.61s	remaining: 625ms
72:	learn: 12.0359996	total: 1.63s	remaining: 603ms
73:	learn: 11.9244352	total: 1.67s	remaining: 586ms
74:	learn: 11.8312038	total: 1.69s	remaining: 563ms
75:	learn: 11.6622123	total: 1.71s	remaining: 541ms
76:	learn: 11.5959180	total: 1.74s	remaining: 519ms
77:	learn: 11.4538852	total: 1.76s	remaining: 497ms
78:	learn: 11.3700375	total: 1.78s	remaining: 474ms
79:	learn: 11.2101447	total: 1.81s	remaining: 452ms
80:	learn: 11.0614634	total: 1.83s	remaining: 430ms
81:	learn: 10.9029225	total: 1.86s	remaining: 408ms
82:	learn: 10.7792030	total: 1.89s	remaining: 388ms
83:	learn: 10.6279451	total: 1.92s	remaining: 365ms
84:	learn: 10.5530267	total: 1.94s	remaining: 343ms
85:	learn: 10.4577150	total: 1.98s	remaining: 322ms
86:	learn: 10.4076417	total: 2s	remaining: 299ms
87:	learn: 10.3166632	total: 2.02s	remaining: 276ms
88:	learn: 10.2018151	total: 2.05s	remaining: 253ms
89:	learn: 10.0698484	total: 2.07s	remaining: 230ms
90:	learn: 10.0162824	total: 2.1s	remaining: 208ms
91:	learn: 9.9352639	total: 2.13s	remaining: 185ms
92:	learn: 9.8316734	total: 2.15s	remaining: 162ms
93:	learn: 9.7195471	total: 2.17s	remaining: 139ms
94:	learn: 9.5914894	total: 2.2s	remaining: 116ms
95:	learn: 9.5151851	total: 2.23s	remaining: 92.9ms
96:	learn: 9.3911314	total: 2.25s	remaining: 69.7ms
97:	learn: 9.3417706	total: 2.28s	remaining: 46.5ms
98:	learn: 9.2708440	total: 2.31s	remaining: 23.3ms
99:	learn: 9.1660321	total: 2.33s	remaining: 0us
0:	learn: 45.8627255	total: 2.58ms	remaining: 256ms
1:	learn: 44.7432040	total: 26ms	remaining: 1.27s
2:	learn: 43.4398568	total: 50.3ms	remaining: 1.63s
3:	learn: 42.1495515	total: 74.6ms	remaining: 1.79s
4:	learn: 40.9712633	total: 99.1ms	remaining: 1.88s
5:	learn: 40.0119591	total: 124ms	remaining: 1.94s
6:	learn: 39.1914360	total: 161ms	remaining: 2.14s
7:	learn: 38.1861536	total: 183ms	remaining: 2.11s
8:	learn: 37.1477128	total: 205ms	remaining: 2.07s
9:	learn: 36.3044702	total: 226ms	remaining: 2.04s
10:	learn: 35.5837917	total: 248ms	remaining: 2s
11:	learn: 34.8664158	total: 269ms	remaining: 1.97s
12:	learn: 33.9129833	total: 290ms	remaining: 1.94s
13:	learn: 32.9094642	total: 313ms	remaining: 1.93s
14:	learn: 32.1965787	total: 339ms	remaining: 1.92s
15:	learn: 31.4598238	total: 372ms	remaining: 1.95s
16:	learn: 30.6578027	total: 395ms	remaining: 1.93s
17:	learn: 30.0227468	total: 418ms	remaining: 1.91s
18:	learn: 29.2954728	total: 440ms	remaining: 1.88s
19:	learn: 28.5928084	total: 462ms	remaining: 1.85s
20:	learn: 27.9445984	total: 483ms	remaining: 1.82s
21:	learn: 27.3493298	total: 506ms	remaining: 1.79s
22:	learn: 26.8491966	total: 528ms	remaining: 1.77s
23:	learn: 26.3177453	total: 551ms	remaining: 1.74s
24:	learn: 25.8134533	total: 580ms	remaining: 1.74s
25:	learn: 25.2000018	total: 603ms	remaining: 1.72s
26:	learn: 24.6570461	total: 625ms	remaining: 1.69s
27:	learn: 24.1062982	total: 646ms	remaining: 1.66s
28:	learn: 23.7489370	total: 667ms	remaining: 1.63s
29:	learn: 23.2050536	total: 689ms	remaining: 1.61s
30:	learn: 22.7824379	total: 710ms	remaining: 1.58s
31:	learn: 22.4052655	total: 730ms	remaining: 1.55s
32:	learn: 21.9525639	total: 754ms	remaining: 1.53s
33:	learn: 21.5482900	total: 787ms	remaining: 1.53s
34:	learn: 21.1900983	total: 814ms	remaining: 1.51s
35:	learn: 20.8243957	total: 839ms	remaining: 1.49s
36:	learn: 20.4401288	total: 861ms	remaining: 1.47s
37:	learn: 20.0960622	total: 886ms	remaining: 1.44s
38:	learn: 19.7795108	total: 909ms	remaining: 1.42s
39:	learn: 19.4922451	total: 930ms	remaining: 1.4s
40:	learn: 19.1827582	total: 951ms	remaining: 1.37s
41:	learn: 18.8902445	total: 975ms	remaining: 1.34s
42:	learn: 18.6833086	total: 1s	remaining: 1.33s
43:	learn: 18.4251972	total: 1.02s	remaining: 1.3s
44:	learn: 18.1471037	total: 1.05s	remaining: 1.28s
45:	learn: 17.8420017	total: 1.07s	remaining: 1.25s
46:	learn: 17.6101998	total: 1.09s	remaining: 1.23s
47:	learn: 17.3353656	total: 1.11s	remaining: 1.2s
48:	learn: 17.1194789	total: 1.13s	remaining: 1.18s
49:	learn: 16.8898454	total: 1.15s	remaining: 1.15s
50:	learn: 16.6657497	total: 1.18s	remaining: 1.13s
51:	learn: 16.3832867	total: 1.2s	remaining: 1.11s
52:	learn: 16.2098226	total: 1.23s	remaining: 1.09s
53:	learn: 16.0045707	total: 1.26s	remaining: 1.07s
54:	learn: 15.8512887	total: 1.28s	remaining: 1.05s
55:	learn: 15.6485628	total: 1.3s	remaining: 1.02s
56:	learn: 15.4841428	total: 1.32s	remaining: 1000ms
57:	learn: 15.3383158	total: 1.35s	remaining: 977ms
58:	learn: 15.2056282	total: 1.37s	remaining: 953ms
59:	learn: 15.0698337	total: 1.39s	remaining: 929ms
60:	learn: 14.8487796	total: 1.42s	remaining: 905ms
61:	learn: 14.7255751	total: 1.45s	remaining: 887ms
62:	learn: 14.6100414	total: 1.47s	remaining: 863ms
63:	learn: 14.3864212	total: 1.49s	remaining: 838ms
64:	learn: 14.2800460	total: 1.51s	remaining: 815ms
65:	learn: 14.1017299	total: 1.53s	remaining: 791ms
66:	learn: 13.9655015	total: 1.56s	remaining: 767ms
67:	learn: 13.8065764	total: 1.58s	remaining: 742ms
68:	learn: 13.7473285	total: 1.6s	remaining: 718ms
69:	learn: 13.6967309	total: 1.62s	remaining: 696ms
70:	learn: 13.6253255	total: 1.65s	remaining: 673ms
71:	learn: 13.4974926	total: 1.67s	remaining: 651ms
72:	learn: 13.4142694	total: 1.7s	remaining: 627ms
73:	learn: 13.2902600	total: 1.72s	remaining: 604ms
74:	learn: 13.1816461	total: 1.74s	remaining: 581ms
75:	learn: 13.0809498	total: 1.77s	remaining: 558ms
76:	learn: 12.9772285	total: 1.79s	remaining: 535ms
77:	learn: 12.8413858	total: 1.81s	remaining: 511ms
78:	learn: 12.7615799	total: 1.83s	remaining: 488ms
79:	learn: 12.5808659	total: 1.86s	remaining: 465ms
80:	learn: 12.4938330	total: 1.89s	remaining: 443ms
81:	learn: 12.3745576	total: 1.91s	remaining: 420ms
82:	learn: 12.2474104	total: 1.93s	remaining: 396ms
83:	learn: 12.1582297	total: 1.95s	remaining: 372ms
84:	learn: 12.0528081	total: 1.97s	remaining: 349ms
85:	learn: 11.9483355	total: 2s	remaining: 325ms
86:	learn: 11.8683204	total: 2.02s	remaining: 302ms
87:	learn: 11.7680945	total: 2.04s	remaining: 279ms
88:	learn: 11.6635447	total: 2.07s	remaining: 255ms
89:	learn: 11.5775031	total: 2.1s	remaining: 233ms
90:	learn: 11.4860538	total: 2.12s	remaining: 210ms
91:	learn: 11.3584960	total: 2.15s	remaining: 187ms
92:	learn: 11.2180285	total: 2.17s	remaining: 163ms
93:	learn: 11.0996558	total: 2.19s	remaining: 140ms
94:	learn: 10.9688832	total: 2.21s	remaining: 116ms
95:	learn: 10.9205457	total: 2.23s	remaining: 93ms
96:	learn: 10.8462783	total: 2.25s	remaining: 69.7ms
97:	learn: 10.7481890	total: 2.27s	remaining: 46.4ms
98:	learn: 10.6396315	total: 2.3s	remaining: 23.2ms
99:	learn: 10.5895308	total: 2.32s	remaining: 0us
0:	learn: 46.2892189	total: 22ms	remaining: 2.18s
1:	learn: 44.9732744	total: 42.5ms	remaining: 2.08s
2:	learn: 43.8887345	total: 63.2ms	remaining: 2.04s
3:	learn: 42.6526320	total: 84.2ms	remaining: 2.02s
4:	learn: 41.4812505	total: 106ms	remaining: 2.02s
5:	learn: 40.4431224	total: 128ms	remaining: 2s
6:	learn: 39.2936749	total: 159ms	remaining: 2.12s
7:	learn: 38.1961652	total: 183ms	remaining: 2.1s
8:	learn: 37.2194841	total: 205ms	remaining: 2.07s
9:	learn: 36.2518666	total: 227ms	remaining: 2.04s
10:	learn: 35.4919224	total: 250ms	remaining: 2.02s
11:	learn: 34.6975877	total: 270ms	remaining: 1.98s
12:	learn: 33.7869362	total: 292ms	remaining: 1.95s
13:	learn: 33.0646033	total: 311ms	remaining: 1.91s
14:	learn: 32.1821772	total: 333ms	remaining: 1.89s
15:	learn: 31.4340749	total: 361ms	remaining: 1.9s
16:	learn: 30.6504198	total: 384ms	remaining: 1.87s
17:	learn: 30.0090260	total: 404ms	remaining: 1.84s
18:	learn: 29.4233143	total: 424ms	remaining: 1.81s
19:	learn: 28.7661957	total: 444ms	remaining: 1.78s
20:	learn: 28.1570594	total: 465ms	remaining: 1.75s
21:	learn: 27.6140124	total: 485ms	remaining: 1.72s
22:	learn: 27.0130709	total: 506ms	remaining: 1.69s
23:	learn: 26.2648081	total: 528ms	remaining: 1.67s
24:	learn: 25.7963649	total: 550ms	remaining: 1.65s
25:	learn: 25.2713860	total: 578ms	remaining: 1.65s
26:	learn: 24.8080692	total: 605ms	remaining: 1.64s
27:	learn: 24.3042862	total: 627ms	remaining: 1.61s
28:	learn: 23.9097237	total: 649ms	remaining: 1.59s
29:	learn: 23.4953174	total: 673ms	remaining: 1.57s
30:	learn: 23.0484452	total: 695ms	remaining: 1.55s
31:	learn: 22.7100962	total: 715ms	remaining: 1.52s
32:	learn: 22.1662267	total: 736ms	remaining: 1.49s
33:	learn: 21.7339884	total: 758ms	remaining: 1.47s
34:	learn: 21.3699422	total: 781ms	remaining: 1.45s
35:	learn: 21.0249329	total: 810ms	remaining: 1.44s
36:	learn: 20.6187923	total: 832ms	remaining: 1.42s
37:	learn: 20.2401981	total: 853ms	remaining: 1.39s
38:	learn: 19.9712328	total: 875ms	remaining: 1.37s
39:	learn: 19.6429610	total: 896ms	remaining: 1.34s
40:	learn: 19.3281556	total: 916ms	remaining: 1.32s
41:	learn: 19.0925924	total: 935ms	remaining: 1.29s
42:	learn: 18.8118712	total: 958ms	remaining: 1.27s
43:	learn: 18.5355748	total: 980ms	remaining: 1.25s
44:	learn: 18.2783929	total: 1.01s	remaining: 1.23s
45:	learn: 17.9915490	total: 1.03s	remaining: 1.21s
46:	learn: 17.7323317	total: 1.06s	remaining: 1.19s
47:	learn: 17.4448307	total: 1.08s	remaining: 1.17s
48:	learn: 17.2419782	total: 1.1s	remaining: 1.15s
49:	learn: 16.9351352	total: 1.12s	remaining: 1.12s
50:	learn: 16.7728723	total: 1.14s	remaining: 1.1s
51:	learn: 16.5718087	total: 1.16s	remaining: 1.07s
52:	learn: 16.4047483	total: 1.19s	remaining: 1.05s
53:	learn: 16.2888950	total: 1.21s	remaining: 1.03s
54:	learn: 16.1353042	total: 1.24s	remaining: 1.01s
55:	learn: 15.9384012	total: 1.26s	remaining: 989ms
56:	learn: 15.7488511	total: 1.28s	remaining: 965ms
57:	learn: 15.5682846	total: 1.3s	remaining: 941ms
58:	learn: 15.3488716	total: 1.32s	remaining: 916ms
59:	learn: 15.2291272	total: 1.34s	remaining: 892ms
60:	learn: 15.0582519	total: 1.36s	remaining: 868ms
61:	learn: 14.8478458	total: 1.38s	remaining: 845ms
62:	learn: 14.6663416	total: 1.41s	remaining: 826ms
63:	learn: 14.4830825	total: 1.43s	remaining: 806ms
64:	learn: 14.3300895	total: 1.46s	remaining: 787ms
65:	learn: 14.1168590	total: 1.49s	remaining: 767ms
66:	learn: 13.9783298	total: 1.51s	remaining: 746ms
67:	learn: 13.8132857	total: 1.54s	remaining: 724ms
68:	learn: 13.7050863	total: 1.56s	remaining: 703ms
69:	learn: 13.5742501	total: 1.59s	remaining: 682ms
70:	learn: 13.4851362	total: 1.61s	remaining: 660ms
71:	learn: 13.3300610	total: 1.65s	remaining: 640ms
72:	learn: 13.2223060	total: 1.67s	remaining: 619ms
73:	learn: 13.0706731	total: 1.7s	remaining: 598ms
74:	learn: 12.9178099	total: 1.73s	remaining: 575ms
75:	learn: 12.7954645	total: 1.75s	remaining: 552ms
76:	learn: 12.7133688	total: 1.77s	remaining: 529ms
77:	learn: 12.5745537	total: 1.79s	remaining: 506ms
78:	learn: 12.4765302	total: 1.81s	remaining: 483ms
79:	learn: 12.3609145	total: 1.84s	remaining: 460ms
80:	learn: 12.2437759	total: 1.86s	remaining: 438ms
81:	learn: 12.1583763	total: 1.89s	remaining: 415ms
82:	learn: 12.0202500	total: 1.92s	remaining: 393ms
83:	learn: 11.9125166	total: 1.94s	remaining: 370ms
84:	learn: 11.8100729	total: 1.97s	remaining: 347ms
85:	learn: 11.7509521	total: 1.99s	remaining: 324ms
86:	learn: 11.6448436	total: 2.01s	remaining: 301ms
87:	learn: 11.5550170	total: 2.04s	remaining: 278ms
88:	learn: 11.4624708	total: 2.06s	remaining: 254ms
89:	learn: 11.3547761	total: 2.08s	remaining: 231ms
90:	learn: 11.2513910	total: 2.1s	remaining: 208ms
91:	learn: 11.1414483	total: 2.13s	remaining: 185ms
92:	learn: 11.0742264	total: 2.15s	remaining: 162ms
93:	learn: 10.9721772	total: 2.18s	remaining: 139ms
94:	learn: 10.9118054	total: 2.2s	remaining: 116ms
95:	learn: 10.8465290	total: 2.22s	remaining: 92.4ms
96:	learn: 10.7451745	total: 2.24s	remaining: 69.2ms
97:	learn: 10.6173565	total: 2.26s	remaining: 46.1ms
98:	learn: 10.5562158	total: 2.28s	remaining: 23ms
99:	learn: 10.4564960	total: 2.3s	remaining: 0us
0:	learn: 27.6871645	total: 6.32ms	remaining: 626ms
1:	learn: 27.3312003	total: 13.6ms	remaining: 666ms
2:	learn: 26.9359558	total: 20.6ms	remaining: 666ms
3:	learn: 26.6055364	total: 27.9ms	remaining: 668ms
4:	learn: 26.1664924	total: 34.5ms	remaining: 656ms
5:	learn: 25.8515393	total: 41.1ms	remaining: 644ms
6:	learn: 25.4620036	total: 47.9ms	remaining: 636ms
7:	learn: 25.1669741	total: 54.4ms	remaining: 625ms
8:	learn: 24.8455454	total: 61.1ms	remaining: 618ms
9:	learn: 24.5106323	total: 67.3ms	remaining: 606ms
10:	learn: 24.1915228	total: 72.9ms	remaining: 589ms
11:	learn: 23.9076053	total: 77.9ms	remaining: 571ms
12:	learn: 23.6692445	total: 83.2ms	remaining: 557ms
13:	learn: 23.4343504	total: 88.3ms	remaining: 542ms
14:	learn: 23.2425280	total: 93.3ms	remaining: 529ms
15:	learn: 22.9254142	total: 99.1ms	remaining: 520ms
16:	learn: 22.6495489	total: 104ms	remaining: 509ms
17:	learn: 22.4343705	total: 109ms	remaining: 497ms
18:	learn: 22.2154202	total: 114ms	remaining: 487ms
19:	learn: 22.0592712	total: 119ms	remaining: 478ms
20:	learn: 21.7971944	total: 125ms	remaining: 469ms
21:	learn: 21.6128930	total: 130ms	remaining: 460ms
22:	learn: 21.3882946	total: 135ms	remaining: 451ms
23:	learn: 21.0912570	total: 140ms	remaining: 443ms
24:	learn: 20.8922857	total: 145ms	remaining: 436ms
25:	learn: 20.7150574	total: 151ms	remaining: 430ms
26:	learn: 20.5673183	total: 156ms	remaining: 423ms
27:	learn: 20.4331275	total: 162ms	remaining: 416ms
28:	learn: 20.2782866	total: 167ms	remaining: 410ms
29:	learn: 20.1061525	total: 173ms	remaining: 403ms
30:	learn: 19.9225948	total: 182ms	remaining: 405ms
31:	learn: 19.7809193	total: 191ms	remaining: 406ms
32:	learn: 19.6057771	total: 199ms	remaining: 404ms
33:	learn: 19.4391243	total: 205ms	remaining: 398ms
34:	learn: 19.2234365	total: 212ms	remaining: 394ms
35:	learn: 19.0214424	total: 218ms	remaining: 387ms
36:	learn: 18.8990643	total: 223ms	remaining: 379ms
37:	learn: 18.7473635	total: 228ms	remaining: 372ms
38:	learn: 18.6125192	total: 233ms	remaining: 364ms
39:	learn: 18.4977949	total: 238ms	remaining: 357ms
40:	learn: 18.3914568	total: 243ms	remaining: 350ms
41:	learn: 18.2541544	total: 249ms	remaining: 343ms
42:	learn: 18.1038984	total: 254ms	remaining: 337ms
43:	learn: 17.9706172	total: 259ms	remaining: 330ms
44:	learn: 17.8198810	total: 265ms	remaining: 324ms
45:	learn: 17.7102597	total: 271ms	remaining: 318ms
46:	learn: 17.6148228	total: 276ms	remaining: 312ms
47:	learn: 17.5115365	total: 281ms	remaining: 305ms
48:	learn: 17.3884162	total: 286ms	remaining: 298ms
49:	learn: 17.2857632	total: 291ms	remaining: 291ms
50:	learn: 17.1618843	total: 297ms	remaining: 285ms
51:	learn: 17.0529601	total: 302ms	remaining: 279ms
52:	learn: 16.9330273	total: 307ms	remaining: 272ms
53:	learn: 16.8206672	total: 312ms	remaining: 266ms
54:	learn: 16.7080356	total: 317ms	remaining: 260ms
55:	learn: 16.5874354	total: 323ms	remaining: 253ms
56:	learn: 16.4929860	total: 328ms	remaining: 247ms
57:	learn: 16.4269419	total: 333ms	remaining: 241ms
58:	learn: 16.3474026	total: 338ms	remaining: 235ms
59:	learn: 16.2515784	total: 343ms	remaining: 229ms
60:	learn: 16.1743901	total: 348ms	remaining: 223ms
61:	learn: 16.0389930	total: 354ms	remaining: 217ms
62:	learn: 15.9671636	total: 359ms	remaining: 211ms
63:	learn: 15.8928486	total: 365ms	remaining: 205ms
64:	learn: 15.8303841	total: 370ms	remaining: 199ms
65:	learn: 15.7612266	total: 375ms	remaining: 193ms
66:	learn: 15.6811172	total: 380ms	remaining: 187ms
67:	learn: 15.6262138	total: 385ms	remaining: 181ms
68:	learn: 15.5662508	total: 395ms	remaining: 178ms
69:	learn: 15.4804354	total: 405ms	remaining: 174ms
70:	learn: 15.4054915	total: 413ms	remaining: 169ms
71:	learn: 15.3271396	total: 421ms	remaining: 164ms
72:	learn: 15.2828359	total: 427ms	remaining: 158ms
73:	learn: 15.2197404	total: 433ms	remaining: 152ms
74:	learn: 15.1315902	total: 439ms	remaining: 146ms
75:	learn: 15.0780523	total: 445ms	remaining: 140ms
76:	learn: 14.9959155	total: 450ms	remaining: 135ms
77:	learn: 14.9265008	total: 456ms	remaining: 129ms
78:	learn: 14.8570189	total: 462ms	remaining: 123ms
79:	learn: 14.8060372	total: 468ms	remaining: 117ms
80:	learn: 14.7294676	total: 473ms	remaining: 111ms
81:	learn: 14.6708309	total: 479ms	remaining: 105ms
82:	learn: 14.5765370	total: 485ms	remaining: 99.3ms
83:	learn: 14.5312713	total: 491ms	remaining: 93.5ms
84:	learn: 14.4830327	total: 497ms	remaining: 87.7ms
85:	learn: 14.4296247	total: 502ms	remaining: 81.8ms
86:	learn: 14.3381470	total: 508ms	remaining: 75.8ms
87:	learn: 14.2638093	total: 513ms	remaining: 69.9ms
88:	learn: 14.2288435	total: 518ms	remaining: 64ms
89:	learn: 14.1489273	total: 523ms	remaining: 58.1ms
90:	learn: 14.0937923	total: 528ms	remaining: 52.2ms
91:	learn: 14.0334062	total: 533ms	remaining: 46.3ms
92:	learn: 13.9854696	total: 538ms	remaining: 40.5ms
93:	learn: 13.9444203	total: 544ms	remaining: 34.7ms
94:	learn: 13.9101523	total: 549ms	remaining: 28.9ms
95:	learn: 13.8460655	total: 554ms	remaining: 23.1ms
96:	learn: 13.7809420	total: 559ms	remaining: 17.3ms
97:	learn: 13.7270532	total: 565ms	remaining: 11.5ms
98:	learn: 13.6891300	total: 570ms	remaining: 5.76ms
99:	learn: 13.6569696	total: 575ms	remaining: 0us
0:	learn: 42.9754370	total: 5.42ms	remaining: 537ms
1:	learn: 42.2613272	total: 10.3ms	remaining: 505ms
2:	learn: 41.4729969	total: 15.4ms	remaining: 496ms
3:	learn: 40.7127004	total: 20.1ms	remaining: 481ms
4:	learn: 39.7775109	total: 24.7ms	remaining: 470ms
5:	learn: 39.1736663	total: 29.9ms	remaining: 469ms
6:	learn: 38.2981109	total: 34.7ms	remaining: 461ms
7:	learn: 37.5352984	total: 39.5ms	remaining: 455ms
8:	learn: 36.7771474	total: 44.4ms	remaining: 449ms
9:	learn: 36.0581366	total: 49.4ms	remaining: 445ms
10:	learn: 35.3542706	total: 54.4ms	remaining: 440ms
11:	learn: 34.6937007	total: 59.2ms	remaining: 434ms
12:	learn: 34.0408035	total: 64.1ms	remaining: 429ms
13:	learn: 33.3460240	total: 68.9ms	remaining: 423ms
14:	learn: 32.8086243	total: 73.7ms	remaining: 418ms
15:	learn: 32.1934462	total: 78.8ms	remaining: 414ms
16:	learn: 31.6465519	total: 83.8ms	remaining: 409ms
17:	learn: 31.2161293	total: 88.7ms	remaining: 404ms
18:	learn: 30.6730548	total: 93.5ms	remaining: 399ms
19:	learn: 30.3153659	total: 98.2ms	remaining: 393ms
20:	learn: 29.7661420	total: 103ms	remaining: 388ms
21:	learn: 29.2095664	total: 108ms	remaining: 383ms
22:	learn: 28.7509592	total: 113ms	remaining: 378ms
23:	learn: 28.4347528	total: 118ms	remaining: 373ms
24:	learn: 28.0551654	total: 123ms	remaining: 368ms
25:	learn: 27.7295952	total: 127ms	remaining: 362ms
26:	learn: 27.2329225	total: 133ms	remaining: 359ms
27:	learn: 26.9970607	total: 139ms	remaining: 356ms
28:	learn: 26.6596544	total: 146ms	remaining: 358ms
29:	learn: 26.2633576	total: 154ms	remaining: 358ms
30:	learn: 25.9761623	total: 161ms	remaining: 359ms
31:	learn: 25.6177371	total: 166ms	remaining: 354ms
32:	learn: 25.2165933	total: 173ms	remaining: 350ms
33:	learn: 24.8012870	total: 179ms	remaining: 348ms
34:	learn: 24.4772532	total: 185ms	remaining: 344ms
35:	learn: 24.1560359	total: 191ms	remaining: 340ms
36:	learn: 23.9688812	total: 197ms	remaining: 336ms
37:	learn: 23.6907607	total: 203ms	remaining: 331ms
38:	learn: 23.3885772	total: 209ms	remaining: 327ms
39:	learn: 23.2234939	total: 214ms	remaining: 321ms
40:	learn: 22.9785026	total: 220ms	remaining: 316ms
41:	learn: 22.6827268	total: 226ms	remaining: 312ms
42:	learn: 22.4564360	total: 232ms	remaining: 307ms
43:	learn: 22.2517827	total: 238ms	remaining: 303ms
44:	learn: 21.9858709	total: 244ms	remaining: 298ms
45:	learn: 21.7595870	total: 250ms	remaining: 293ms
46:	learn: 21.5929957	total: 255ms	remaining: 288ms
47:	learn: 21.4071752	total: 261ms	remaining: 283ms
48:	learn: 21.2186470	total: 267ms	remaining: 278ms
49:	learn: 21.0691824	total: 272ms	remaining: 272ms
50:	learn: 20.8921347	total: 277ms	remaining: 267ms
51:	learn: 20.6834229	total: 283ms	remaining: 261ms
52:	learn: 20.4718988	total: 288ms	remaining: 255ms
53:	learn: 20.3413889	total: 292ms	remaining: 249ms
54:	learn: 20.1785464	total: 297ms	remaining: 243ms
55:	learn: 19.9824314	total: 302ms	remaining: 237ms
56:	learn: 19.8217596	total: 307ms	remaining: 232ms
57:	learn: 19.6318474	total: 312ms	remaining: 226ms
58:	learn: 19.4962236	total: 318ms	remaining: 221ms
59:	learn: 19.3114985	total: 322ms	remaining: 215ms
60:	learn: 19.2181156	total: 328ms	remaining: 210ms
61:	learn: 19.0689614	total: 333ms	remaining: 204ms
62:	learn: 18.9563267	total: 338ms	remaining: 198ms
63:	learn: 18.8343083	total: 343ms	remaining: 193ms
64:	learn: 18.7050033	total: 348ms	remaining: 188ms
65:	learn: 18.6014163	total: 353ms	remaining: 182ms
66:	learn: 18.4910692	total: 358ms	remaining: 177ms
67:	learn: 18.3935194	total: 368ms	remaining: 173ms
68:	learn: 18.2825842	total: 377ms	remaining: 170ms
69:	learn: 18.1519267	total: 386ms	remaining: 166ms
70:	learn: 18.0527651	total: 392ms	remaining: 160ms
71:	learn: 17.9770106	total: 399ms	remaining: 155ms
72:	learn: 17.9151628	total: 404ms	remaining: 150ms
73:	learn: 17.7957486	total: 410ms	remaining: 144ms
74:	learn: 17.7025765	total: 414ms	remaining: 138ms
75:	learn: 17.5957242	total: 419ms	remaining: 132ms
76:	learn: 17.4683244	total: 424ms	remaining: 127ms
77:	learn: 17.3415729	total: 429ms	remaining: 121ms
78:	learn: 17.2886896	total: 434ms	remaining: 115ms
79:	learn: 17.2280922	total: 439ms	remaining: 110ms
80:	learn: 17.1188996	total: 444ms	remaining: 104ms
81:	learn: 17.0236450	total: 449ms	remaining: 98.6ms
82:	learn: 16.9046661	total: 454ms	remaining: 93ms
83:	learn: 16.7930633	total: 459ms	remaining: 87.3ms
84:	learn: 16.6870100	total: 463ms	remaining: 81.8ms
85:	learn: 16.5512107	total: 468ms	remaining: 76.2ms
86:	learn: 16.4353400	total: 473ms	remaining: 70.7ms
87:	learn: 16.3256461	total: 478ms	remaining: 65.2ms
88:	learn: 16.2968057	total: 483ms	remaining: 59.7ms
89:	learn: 16.2136078	total: 488ms	remaining: 54.2ms
90:	learn: 16.1596096	total: 493ms	remaining: 48.7ms
91:	learn: 16.1164050	total: 497ms	remaining: 43.3ms
92:	learn: 16.0660454	total: 502ms	remaining: 37.8ms
93:	learn: 16.0380611	total: 507ms	remaining: 32.4ms
94:	learn: 15.9494441	total: 513ms	remaining: 27ms
95:	learn: 15.8874840	total: 518ms	remaining: 21.6ms
96:	learn: 15.8288234	total: 522ms	remaining: 16.2ms
97:	learn: 15.7562787	total: 528ms	remaining: 10.8ms
98:	learn: 15.6822678	total: 533ms	remaining: 5.39ms
99:	learn: 15.5901500	total: 539ms	remaining: 0us
0:	learn: 46.4504871	total: 6.3ms	remaining: 624ms
1:	learn: 45.7240114	total: 13ms	remaining: 635ms
2:	learn: 45.0308025	total: 18.8ms	remaining: 609ms
3:	learn: 44.1111169	total: 25ms	remaining: 600ms
4:	learn: 43.3925352	total: 31.4ms	remaining: 598ms
5:	learn: 42.7856354	total: 37.7ms	remaining: 590ms
6:	learn: 42.1998170	total: 44.1ms	remaining: 586ms
7:	learn: 41.3532708	total: 51.5ms	remaining: 592ms
8:	learn: 40.7314571	total: 57.8ms	remaining: 585ms
9:	learn: 39.9838066	total: 63ms	remaining: 567ms
10:	learn: 39.4168243	total: 67.8ms	remaining: 549ms
11:	learn: 39.0148769	total: 72.5ms	remaining: 532ms
12:	learn: 38.3055855	total: 77.3ms	remaining: 517ms
13:	learn: 37.7343198	total: 82.2ms	remaining: 505ms
14:	learn: 37.4177463	total: 86.9ms	remaining: 492ms
15:	learn: 36.9043298	total: 91.6ms	remaining: 481ms
16:	learn: 36.3139174	total: 96.3ms	remaining: 470ms
17:	learn: 35.7200448	total: 101ms	remaining: 461ms
18:	learn: 35.3763394	total: 106ms	remaining: 452ms
19:	learn: 34.7666728	total: 111ms	remaining: 442ms
20:	learn: 34.2642890	total: 116ms	remaining: 435ms
21:	learn: 33.8196936	total: 120ms	remaining: 426ms
22:	learn: 33.4205669	total: 125ms	remaining: 418ms
23:	learn: 32.8565493	total: 130ms	remaining: 410ms
24:	learn: 32.5287132	total: 135ms	remaining: 406ms
25:	learn: 32.2142064	total: 140ms	remaining: 400ms
26:	learn: 31.9258854	total: 145ms	remaining: 393ms
27:	learn: 31.4083665	total: 150ms	remaining: 387ms
28:	learn: 31.1615620	total: 155ms	remaining: 380ms
29:	learn: 30.6948867	total: 160ms	remaining: 374ms
30:	learn: 30.3185108	total: 169ms	remaining: 376ms
31:	learn: 29.9245223	total: 178ms	remaining: 379ms
32:	learn: 29.6683643	total: 185ms	remaining: 376ms
33:	learn: 29.3868143	total: 191ms	remaining: 370ms
34:	learn: 29.1105699	total: 196ms	remaining: 365ms
35:	learn: 28.8274848	total: 201ms	remaining: 357ms
36:	learn: 28.5478288	total: 206ms	remaining: 351ms
37:	learn: 28.2355121	total: 211ms	remaining: 344ms
38:	learn: 28.0182564	total: 216ms	remaining: 337ms
39:	learn: 27.7654405	total: 221ms	remaining: 331ms
40:	learn: 27.5720477	total: 225ms	remaining: 324ms
41:	learn: 27.3182782	total: 230ms	remaining: 317ms
42:	learn: 26.9504431	total: 235ms	remaining: 311ms
43:	learn: 26.7281906	total: 240ms	remaining: 305ms
44:	learn: 26.5390008	total: 244ms	remaining: 299ms
45:	learn: 26.3781338	total: 249ms	remaining: 292ms
46:	learn: 26.1763177	total: 254ms	remaining: 286ms
47:	learn: 25.9417647	total: 259ms	remaining: 280ms
48:	learn: 25.7528045	total: 264ms	remaining: 274ms
49:	learn: 25.6336897	total: 268ms	remaining: 268ms
50:	learn: 25.4800426	total: 273ms	remaining: 263ms
51:	learn: 25.2895681	total: 278ms	remaining: 257ms
52:	learn: 25.0827111	total: 283ms	remaining: 251ms
53:	learn: 24.7987678	total: 288ms	remaining: 245ms
54:	learn: 24.6309982	total: 293ms	remaining: 239ms
55:	learn: 24.3526776	total: 298ms	remaining: 234ms
56:	learn: 24.1689125	total: 302ms	remaining: 228ms
57:	learn: 23.9802039	total: 307ms	remaining: 222ms
58:	learn: 23.8059432	total: 312ms	remaining: 217ms
59:	learn: 23.6006403	total: 317ms	remaining: 211ms
60:	learn: 23.2948382	total: 322ms	remaining: 206ms
61:	learn: 23.1338922	total: 327ms	remaining: 200ms
62:	learn: 22.9581269	total: 332ms	remaining: 195ms
63:	learn: 22.8263127	total: 337ms	remaining: 189ms
64:	learn: 22.6966006	total: 342ms	remaining: 184ms
65:	learn: 22.6012389	total: 347ms	remaining: 179ms
66:	learn: 22.4220244	total: 352ms	remaining: 174ms
67:	learn: 22.3148342	total: 358ms	remaining: 168ms
68:	learn: 22.1543592	total: 368ms	remaining: 165ms
69:	learn: 22.0614050	total: 378ms	remaining: 162ms
70:	learn: 21.9134025	total: 386ms	remaining: 158ms
71:	learn: 21.8198101	total: 395ms	remaining: 153ms
72:	learn: 21.6944173	total: 400ms	remaining: 148ms
73:	learn: 21.4727420	total: 406ms	remaining: 143ms
74:	learn: 21.3000560	total: 412ms	remaining: 137ms
75:	learn: 21.1884740	total: 418ms	remaining: 132ms
76:	learn: 21.0321317	total: 424ms	remaining: 127ms
77:	learn: 20.9371793	total: 430ms	remaining: 121ms
78:	learn: 20.6800341	total: 435ms	remaining: 116ms
79:	learn: 20.5629904	total: 441ms	remaining: 110ms
80:	learn: 20.4098217	total: 447ms	remaining: 105ms
81:	learn: 20.2139261	total: 452ms	remaining: 99.3ms
82:	learn: 20.1024260	total: 458ms	remaining: 93.8ms
83:	learn: 19.9835855	total: 464ms	remaining: 88.5ms
84:	learn: 19.9018880	total: 469ms	remaining: 82.8ms
85:	learn: 19.7819843	total: 474ms	remaining: 77.1ms
86:	learn: 19.6352780	total: 479ms	remaining: 71.5ms
87:	learn: 19.4888328	total: 484ms	remaining: 66ms
88:	learn: 19.4365121	total: 489ms	remaining: 60.4ms
89:	learn: 19.3427430	total: 494ms	remaining: 54.9ms
90:	learn: 19.2884907	total: 500ms	remaining: 49.4ms
91:	learn: 19.1898932	total: 505ms	remaining: 43.9ms
92:	learn: 19.0775661	total: 510ms	remaining: 38.4ms
93:	learn: 19.0334055	total: 514ms	remaining: 32.8ms
94:	learn: 18.9381916	total: 519ms	remaining: 27.3ms
95:	learn: 18.8471198	total: 524ms	remaining: 21.8ms
96:	learn: 18.7136478	total: 529ms	remaining: 16.4ms
97:	learn: 18.6633102	total: 534ms	remaining: 10.9ms
98:	learn: 18.5887516	total: 539ms	remaining: 5.45ms
99:	learn: 18.4841597	total: 544ms	remaining: 0us
0:	learn: 46.2172336	total: 5.03ms	remaining: 498ms
1:	learn: 45.4248871	total: 10.3ms	remaining: 505ms
2:	learn: 44.8702937	total: 15.3ms	remaining: 494ms
3:	learn: 44.2019212	total: 19.9ms	remaining: 477ms
4:	learn: 43.4805210	total: 24.5ms	remaining: 465ms
5:	learn: 42.7336269	total: 29.3ms	remaining: 459ms
6:	learn: 42.0396670	total: 33.8ms	remaining: 449ms
7:	learn: 41.5668459	total: 38.3ms	remaining: 441ms
8:	learn: 40.8999125	total: 43.4ms	remaining: 439ms
9:	learn: 40.3358512	total: 48.3ms	remaining: 434ms
10:	learn: 39.7511489	total: 52.9ms	remaining: 428ms
11:	learn: 39.0775416	total: 57.8ms	remaining: 424ms
12:	learn: 38.5204735	total: 62.6ms	remaining: 419ms
13:	learn: 38.2087509	total: 67.3ms	remaining: 413ms
14:	learn: 37.7259552	total: 72ms	remaining: 408ms
15:	learn: 37.1646397	total: 76.4ms	remaining: 401ms
16:	learn: 36.7093520	total: 81.1ms	remaining: 396ms
17:	learn: 36.2212308	total: 85.8ms	remaining: 391ms
18:	learn: 35.8682156	total: 90.5ms	remaining: 386ms
19:	learn: 35.6026383	total: 95.1ms	remaining: 381ms
20:	learn: 35.1739725	total: 99.7ms	remaining: 375ms
21:	learn: 34.5938003	total: 105ms	remaining: 371ms
22:	learn: 34.1479056	total: 109ms	remaining: 366ms
23:	learn: 33.8759356	total: 114ms	remaining: 362ms
24:	learn: 33.2898426	total: 119ms	remaining: 358ms
25:	learn: 32.9220237	total: 124ms	remaining: 353ms
26:	learn: 32.4324374	total: 129ms	remaining: 348ms
27:	learn: 32.1726327	total: 134ms	remaining: 344ms
28:	learn: 31.8020879	total: 139ms	remaining: 340ms
29:	learn: 31.4329781	total: 144ms	remaining: 336ms
30:	learn: 30.9995282	total: 150ms	remaining: 333ms
31:	learn: 30.6815978	total: 155ms	remaining: 330ms
32:	learn: 30.2991029	total: 161ms	remaining: 327ms
33:	learn: 30.0354202	total: 170ms	remaining: 329ms
34:	learn: 29.7620535	total: 180ms	remaining: 335ms
35:	learn: 29.4552589	total: 191ms	remaining: 339ms
36:	learn: 29.2634399	total: 199ms	remaining: 339ms
37:	learn: 28.8345135	total: 205ms	remaining: 335ms
38:	learn: 28.5551142	total: 211ms	remaining: 330ms
39:	learn: 28.3258809	total: 216ms	remaining: 325ms
40:	learn: 28.0835564	total: 223ms	remaining: 321ms
41:	learn: 27.7517159	total: 228ms	remaining: 315ms
42:	learn: 27.5427595	total: 234ms	remaining: 310ms
43:	learn: 27.3925105	total: 240ms	remaining: 305ms
44:	learn: 27.2377120	total: 245ms	remaining: 300ms
45:	learn: 26.9930398	total: 251ms	remaining: 294ms
46:	learn: 26.7748687	total: 257ms	remaining: 290ms
47:	learn: 26.5856986	total: 263ms	remaining: 285ms
48:	learn: 26.4344153	total: 268ms	remaining: 279ms
49:	learn: 26.3263456	total: 273ms	remaining: 273ms
50:	learn: 26.2048412	total: 277ms	remaining: 266ms
51:	learn: 26.0608546	total: 282ms	remaining: 260ms
52:	learn: 25.9428146	total: 287ms	remaining: 254ms
53:	learn: 25.7578029	total: 291ms	remaining: 248ms
54:	learn: 25.5696792	total: 296ms	remaining: 242ms
55:	learn: 25.3291935	total: 301ms	remaining: 236ms
56:	learn: 25.1388942	total: 306ms	remaining: 231ms
57:	learn: 24.9853945	total: 310ms	remaining: 225ms
58:	learn: 24.8037785	total: 315ms	remaining: 219ms
59:	learn: 24.5326704	total: 320ms	remaining: 213ms
60:	learn: 24.2208240	total: 325ms	remaining: 208ms
61:	learn: 24.0774015	total: 331ms	remaining: 203ms
62:	learn: 23.9705824	total: 337ms	remaining: 198ms
63:	learn: 23.8877665	total: 341ms	remaining: 192ms
64:	learn: 23.7309043	total: 346ms	remaining: 187ms
65:	learn: 23.5820140	total: 351ms	remaining: 181ms
66:	learn: 23.3762012	total: 357ms	remaining: 176ms
67:	learn: 23.2317502	total: 362ms	remaining: 170ms
68:	learn: 23.0868331	total: 367ms	remaining: 165ms
69:	learn: 22.9642758	total: 372ms	remaining: 159ms
70:	learn: 22.8085341	total: 378ms	remaining: 154ms
71:	learn: 22.6834294	total: 388ms	remaining: 151ms
72:	learn: 22.6152922	total: 397ms	remaining: 147ms
73:	learn: 22.3675145	total: 403ms	remaining: 142ms
74:	learn: 22.3023338	total: 409ms	remaining: 136ms
75:	learn: 22.1866833	total: 415ms	remaining: 131ms
76:	learn: 22.0163130	total: 419ms	remaining: 125ms
77:	learn: 21.9691306	total: 424ms	remaining: 120ms
78:	learn: 21.9004647	total: 429ms	remaining: 114ms
79:	learn: 21.7931869	total: 434ms	remaining: 108ms
80:	learn: 21.6747916	total: 439ms	remaining: 103ms
81:	learn: 21.5187568	total: 444ms	remaining: 97.4ms
82:	learn: 21.3124880	total: 448ms	remaining: 91.8ms
83:	learn: 21.1979524	total: 453ms	remaining: 86.3ms
84:	learn: 21.1311130	total: 458ms	remaining: 80.9ms
85:	learn: 21.0606062	total: 463ms	remaining: 75.4ms
86:	learn: 20.9900935	total: 468ms	remaining: 70ms
87:	learn: 20.8908054	total: 474ms	remaining: 64.6ms
88:	learn: 20.8088525	total: 479ms	remaining: 59.2ms
89:	learn: 20.7300955	total: 484ms	remaining: 53.8ms
90:	learn: 20.6130276	total: 489ms	remaining: 48.4ms
91:	learn: 20.5437508	total: 495ms	remaining: 43ms
92:	learn: 20.5029426	total: 500ms	remaining: 37.6ms
93:	learn: 20.4416708	total: 505ms	remaining: 32.2ms
94:	learn: 20.3917812	total: 509ms	remaining: 26.8ms
95:	learn: 20.3305024	total: 514ms	remaining: 21.4ms
96:	learn: 20.2375704	total: 519ms	remaining: 16.1ms
97:	learn: 20.1835197	total: 524ms	remaining: 10.7ms
98:	learn: 20.1246834	total: 528ms	remaining: 5.34ms
99:	learn: 20.0506334	total: 533ms	remaining: 0us
0:	learn: 46.7334648	total: 11.6ms	remaining: 1.15s
1:	learn: 46.2069876	total: 19.3ms	remaining: 945ms
2:	learn: 45.3699967	total: 25.4ms	remaining: 820ms
3:	learn: 44.6866787	total: 31.4ms	remaining: 753ms
4:	learn: 43.8536031	total: 37.1ms	remaining: 704ms
5:	learn: 43.4716853	total: 42.9ms	remaining: 671ms
6:	learn: 42.9929637	total: 48.6ms	remaining: 645ms
7:	learn: 42.4952169	total: 54ms	remaining: 621ms
8:	learn: 41.7548337	total: 60.3ms	remaining: 609ms
9:	learn: 41.1054415	total: 66ms	remaining: 594ms
10:	learn: 40.4827492	total: 71.5ms	remaining: 578ms
11:	learn: 39.7605907	total: 77.3ms	remaining: 567ms
12:	learn: 39.2532558	total: 83.3ms	remaining: 558ms
13:	learn: 38.6572753	total: 89.1ms	remaining: 548ms
14:	learn: 38.2886959	total: 93.9ms	remaining: 532ms
15:	learn: 37.7816612	total: 98.6ms	remaining: 518ms
16:	learn: 37.1680589	total: 103ms	remaining: 505ms
17:	learn: 36.5753004	total: 108ms	remaining: 492ms
18:	learn: 36.2339458	total: 113ms	remaining: 481ms
19:	learn: 35.9159716	total: 118ms	remaining: 471ms
20:	learn: 35.4591743	total: 122ms	remaining: 460ms
21:	learn: 34.8726070	total: 127ms	remaining: 450ms
22:	learn: 34.3903591	total: 132ms	remaining: 442ms
23:	learn: 34.1236827	total: 137ms	remaining: 433ms
24:	learn: 33.8026540	total: 142ms	remaining: 425ms
25:	learn: 33.4594822	total: 146ms	remaining: 417ms
26:	learn: 33.1338910	total: 151ms	remaining: 408ms
27:	learn: 32.8527106	total: 156ms	remaining: 401ms
28:	learn: 32.4923829	total: 160ms	remaining: 393ms
29:	learn: 32.0560533	total: 166ms	remaining: 387ms
30:	learn: 31.6614408	total: 171ms	remaining: 381ms
31:	learn: 31.2796040	total: 179ms	remaining: 381ms
32:	learn: 30.8214741	total: 187ms	remaining: 379ms
33:	learn: 30.5908694	total: 194ms	remaining: 376ms
34:	learn: 30.3637356	total: 199ms	remaining: 370ms
35:	learn: 30.0446511	total: 205ms	remaining: 364ms
36:	learn: 29.8792549	total: 211ms	remaining: 359ms
37:	learn: 29.5488457	total: 218ms	remaining: 355ms
38:	learn: 29.2808568	total: 222ms	remaining: 348ms
39:	learn: 29.0603765	total: 227ms	remaining: 341ms
40:	learn: 28.8272425	total: 232ms	remaining: 334ms
41:	learn: 28.4753580	total: 237ms	remaining: 327ms
42:	learn: 28.2963614	total: 242ms	remaining: 321ms
43:	learn: 28.1054768	total: 247ms	remaining: 314ms
44:	learn: 27.9038093	total: 252ms	remaining: 308ms
45:	learn: 27.6305487	total: 257ms	remaining: 302ms
46:	learn: 27.4457907	total: 262ms	remaining: 295ms
47:	learn: 27.1855957	total: 266ms	remaining: 289ms
48:	learn: 26.9987934	total: 271ms	remaining: 282ms
49:	learn: 26.7881067	total: 276ms	remaining: 276ms
50:	learn: 26.6385231	total: 281ms	remaining: 270ms
51:	learn: 26.4661755	total: 286ms	remaining: 264ms
52:	learn: 26.3331868	total: 290ms	remaining: 257ms
53:	learn: 26.0353476	total: 295ms	remaining: 251ms
54:	learn: 25.8257147	total: 299ms	remaining: 245ms
55:	learn: 25.5924383	total: 304ms	remaining: 239ms
56:	learn: 25.4082209	total: 309ms	remaining: 233ms
57:	learn: 25.2350104	total: 314ms	remaining: 227ms
58:	learn: 25.1789867	total: 319ms	remaining: 221ms
59:	learn: 24.9111359	total: 323ms	remaining: 216ms
60:	learn: 24.6314503	total: 328ms	remaining: 210ms
61:	learn: 24.4297999	total: 333ms	remaining: 204ms
62:	learn: 24.3126171	total: 338ms	remaining: 198ms
63:	learn: 24.1544005	total: 342ms	remaining: 193ms
64:	learn: 24.0197950	total: 347ms	remaining: 187ms
65:	learn: 23.8483087	total: 352ms	remaining: 181ms
66:	learn: 23.6624915	total: 357ms	remaining: 176ms
67:	learn: 23.5068105	total: 362ms	remaining: 170ms
68:	learn: 23.4266187	total: 367ms	remaining: 165ms
69:	learn: 23.3535388	total: 373ms	remaining: 160ms
70:	learn: 23.2477190	total: 378ms	remaining: 154ms
71:	learn: 23.1877634	total: 382ms	remaining: 149ms
72:	learn: 23.1344720	total: 388ms	remaining: 143ms
73:	learn: 22.9498234	total: 393ms	remaining: 138ms
74:	learn: 22.9068295	total: 403ms	remaining: 134ms
75:	learn: 22.7368434	total: 413ms	remaining: 131ms
76:	learn: 22.6084901	total: 420ms	remaining: 126ms
77:	learn: 22.4690295	total: 429ms	remaining: 121ms
78:	learn: 22.3970100	total: 434ms	remaining: 115ms
79:	learn: 22.3025537	total: 440ms	remaining: 110ms
80:	learn: 22.2089293	total: 446ms	remaining: 105ms
81:	learn: 22.0522107	total: 451ms	remaining: 99.1ms
82:	learn: 21.9368213	total: 457ms	remaining: 93.7ms
83:	learn: 21.7968322	total: 463ms	remaining: 88.2ms
84:	learn: 21.7416164	total: 470ms	remaining: 82.9ms
85:	learn: 21.6031099	total: 475ms	remaining: 77.4ms
86:	learn: 21.4530627	total: 481ms	remaining: 71.8ms
87:	learn: 21.3118417	total: 486ms	remaining: 66.3ms
88:	learn: 21.2760431	total: 492ms	remaining: 60.9ms
89:	learn: 21.2071350	total: 498ms	remaining: 55.4ms
90:	learn: 21.1051001	total: 503ms	remaining: 49.8ms
91:	learn: 21.0246142	total: 508ms	remaining: 44.2ms
92:	learn: 20.9834999	total: 513ms	remaining: 38.6ms
93:	learn: 20.8989393	total: 517ms	remaining: 33ms
94:	learn: 20.8262231	total: 522ms	remaining: 27.5ms
95:	learn: 20.7369110	total: 526ms	remaining: 21.9ms
96:	learn: 20.6409587	total: 532ms	remaining: 16.4ms
97:	learn: 20.5553641	total: 536ms	remaining: 10.9ms
98:	learn: 20.4317232	total: 541ms	remaining: 5.46ms
99:	learn: 20.3708681	total: 546ms	remaining: 0us
0:	learn: 27.3776612	total: 25.8ms	remaining: 2.56s
1:	learn: 26.7619003	total: 43.9ms	remaining: 2.15s
2:	learn: 26.0057626	total: 62.3ms	remaining: 2.01s
3:	learn: 25.4280982	total: 81.8ms	remaining: 1.96s
4:	learn: 24.8347609	total: 99.6ms	remaining: 1.89s
5:	learn: 24.2526574	total: 119ms	remaining: 1.86s
6:	learn: 23.7478806	total: 138ms	remaining: 1.83s
7:	learn: 23.2677666	total: 158ms	remaining: 1.82s
8:	learn: 22.7564310	total: 179ms	remaining: 1.81s
9:	learn: 22.2873770	total: 201ms	remaining: 1.8s
10:	learn: 21.8088174	total: 231ms	remaining: 1.87s
11:	learn: 21.4086875	total: 256ms	remaining: 1.88s
12:	learn: 20.9489217	total: 279ms	remaining: 1.86s
13:	learn: 20.4585233	total: 301ms	remaining: 1.85s
14:	learn: 20.0177760	total: 325ms	remaining: 1.84s
15:	learn: 19.5981890	total: 346ms	remaining: 1.82s
16:	learn: 19.2041885	total: 365ms	remaining: 1.78s
17:	learn: 18.8422550	total: 384ms	remaining: 1.75s
18:	learn: 18.4774037	total: 405ms	remaining: 1.73s
19:	learn: 18.0931699	total: 427ms	remaining: 1.71s
20:	learn: 17.6856423	total: 454ms	remaining: 1.71s
21:	learn: 17.3394010	total: 473ms	remaining: 1.68s
22:	learn: 17.0165204	total: 493ms	remaining: 1.65s
23:	learn: 16.7728230	total: 512ms	remaining: 1.62s
24:	learn: 16.5020155	total: 532ms	remaining: 1.59s
25:	learn: 16.2110813	total: 551ms	remaining: 1.57s
26:	learn: 15.9439416	total: 569ms	remaining: 1.54s
27:	learn: 15.6605702	total: 589ms	remaining: 1.51s
28:	learn: 15.4180978	total: 609ms	remaining: 1.49s
29:	learn: 15.1463921	total: 630ms	remaining: 1.47s
30:	learn: 14.8961946	total: 657ms	remaining: 1.46s
31:	learn: 14.6763296	total: 684ms	remaining: 1.45s
32:	learn: 14.4161484	total: 705ms	remaining: 1.43s
33:	learn: 14.1748686	total: 727ms	remaining: 1.41s
34:	learn: 13.9722494	total: 749ms	remaining: 1.39s
35:	learn: 13.7632896	total: 770ms	remaining: 1.37s
36:	learn: 13.5572592	total: 788ms	remaining: 1.34s
37:	learn: 13.3896577	total: 807ms	remaining: 1.32s
38:	learn: 13.2796441	total: 826ms	remaining: 1.29s
39:	learn: 13.0896679	total: 846ms	remaining: 1.27s
40:	learn: 12.8898238	total: 869ms	remaining: 1.25s
41:	learn: 12.6824069	total: 894ms	remaining: 1.23s
42:	learn: 12.5459667	total: 915ms	remaining: 1.21s
43:	learn: 12.3859203	total: 934ms	remaining: 1.19s
44:	learn: 12.2099364	total: 952ms	remaining: 1.16s
45:	learn: 12.0649044	total: 973ms	remaining: 1.14s
46:	learn: 11.8934147	total: 992ms	remaining: 1.12s
47:	learn: 11.7212144	total: 1.01s	remaining: 1.09s
48:	learn: 11.5585360	total: 1.03s	remaining: 1.07s
49:	learn: 11.4204354	total: 1.05s	remaining: 1.05s
50:	learn: 11.3264427	total: 1.07s	remaining: 1.03s
51:	learn: 11.2063486	total: 1.09s	remaining: 1.01s
52:	learn: 11.0712206	total: 1.12s	remaining: 998ms
53:	learn: 10.9205088	total: 1.15s	remaining: 978ms
54:	learn: 10.8155412	total: 1.17s	remaining: 959ms
55:	learn: 10.7286854	total: 1.19s	remaining: 938ms
56:	learn: 10.6088466	total: 1.21s	remaining: 915ms
57:	learn: 10.4999885	total: 1.23s	remaining: 894ms
58:	learn: 10.4022194	total: 1.26s	remaining: 873ms
59:	learn: 10.3147130	total: 1.28s	remaining: 852ms
60:	learn: 10.2011489	total: 1.31s	remaining: 836ms
61:	learn: 10.1094372	total: 1.33s	remaining: 816ms
62:	learn: 10.0248970	total: 1.35s	remaining: 795ms
63:	learn: 9.9192710	total: 1.38s	remaining: 774ms
64:	learn: 9.8577360	total: 1.4s	remaining: 752ms
65:	learn: 9.7737103	total: 1.42s	remaining: 730ms
66:	learn: 9.6706617	total: 1.44s	remaining: 708ms
67:	learn: 9.6042727	total: 1.46s	remaining: 686ms
68:	learn: 9.5355377	total: 1.48s	remaining: 667ms
69:	learn: 9.4615216	total: 1.51s	remaining: 647ms
70:	learn: 9.3702045	total: 1.53s	remaining: 626ms
71:	learn: 9.3035392	total: 1.55s	remaining: 604ms
72:	learn: 9.2322686	total: 1.57s	remaining: 583ms
73:	learn: 9.1431916	total: 1.6s	remaining: 562ms
74:	learn: 9.0869466	total: 1.62s	remaining: 541ms
75:	learn: 9.0117390	total: 1.64s	remaining: 519ms
76:	learn: 8.9580443	total: 1.66s	remaining: 497ms
77:	learn: 8.8649939	total: 1.69s	remaining: 475ms
78:	learn: 8.7792713	total: 1.71s	remaining: 456ms
79:	learn: 8.7164606	total: 1.74s	remaining: 434ms
80:	learn: 8.6340559	total: 1.76s	remaining: 412ms
81:	learn: 8.5697104	total: 1.78s	remaining: 390ms
82:	learn: 8.5273758	total: 1.8s	remaining: 368ms
83:	learn: 8.4394788	total: 1.82s	remaining: 346ms
84:	learn: 8.3672415	total: 1.83s	remaining: 324ms
85:	learn: 8.2813444	total: 1.85s	remaining: 302ms
86:	learn: 8.1994983	total: 1.88s	remaining: 280ms
87:	learn: 8.1003577	total: 1.9s	remaining: 259ms
88:	learn: 8.0501976	total: 1.93s	remaining: 238ms
89:	learn: 7.9718830	total: 1.95s	remaining: 217ms
90:	learn: 7.9114534	total: 1.98s	remaining: 195ms
91:	learn: 7.8319856	total: 2s	remaining: 174ms
92:	learn: 7.7731246	total: 2.02s	remaining: 152ms
93:	learn: 7.7165850	total: 2.04s	remaining: 130ms
94:	learn: 7.6448498	total: 2.06s	remaining: 108ms
95:	learn: 7.5709919	total: 2.08s	remaining: 86.8ms
96:	learn: 7.5184082	total: 2.1s	remaining: 65ms
97:	learn: 7.4786866	total: 2.13s	remaining: 43.5ms
98:	learn: 7.4301201	total: 2.15s	remaining: 21.8ms
99:	learn: 7.3416932	total: 2.17s	remaining: 0us
0:	learn: 42.6391731	total: 20.4ms	remaining: 2.02s
1:	learn: 41.2755994	total: 41.2ms	remaining: 2.02s
2:	learn: 40.1418308	total: 60ms	remaining: 1.94s
3:	learn: 38.9707156	total: 78.5ms	remaining: 1.88s
4:	learn: 37.8723622	total: 98.3ms	remaining: 1.87s
5:	learn: 36.6981834	total: 122ms	remaining: 1.92s
6:	learn: 35.6210108	total: 148ms	remaining: 1.97s
7:	learn: 34.5154078	total: 170ms	remaining: 1.96s
8:	learn: 33.4581011	total: 193ms	remaining: 1.95s
9:	learn: 32.5872455	total: 214ms	remaining: 1.92s
10:	learn: 31.6311510	total: 237ms	remaining: 1.92s
11:	learn: 30.8222401	total: 255ms	remaining: 1.87s
12:	learn: 29.9305192	total: 276ms	remaining: 1.84s
13:	learn: 29.0742133	total: 295ms	remaining: 1.81s
14:	learn: 28.3687544	total: 317ms	remaining: 1.79s
15:	learn: 27.5730558	total: 341ms	remaining: 1.79s
16:	learn: 26.9376082	total: 365ms	remaining: 1.78s
17:	learn: 26.2254949	total: 384ms	remaining: 1.75s
18:	learn: 25.5974939	total: 402ms	remaining: 1.72s
19:	learn: 25.0097187	total: 421ms	remaining: 1.68s
20:	learn: 24.3722243	total: 442ms	remaining: 1.66s
21:	learn: 23.8249140	total: 461ms	remaining: 1.64s
22:	learn: 23.3953969	total: 480ms	remaining: 1.61s
23:	learn: 22.8726238	total: 501ms	remaining: 1.59s
24:	learn: 22.3407723	total: 522ms	remaining: 1.56s
25:	learn: 21.8360330	total: 552ms	remaining: 1.57s
26:	learn: 21.4050665	total: 555ms	remaining: 1.5s
27:	learn: 20.9389245	total: 578ms	remaining: 1.49s
28:	learn: 20.5166767	total: 600ms	remaining: 1.47s
29:	learn: 20.1190641	total: 622ms	remaining: 1.45s
30:	learn: 19.7189491	total: 642ms	remaining: 1.43s
31:	learn: 19.3748181	total: 664ms	remaining: 1.41s
32:	learn: 19.0116312	total: 682ms	remaining: 1.38s
33:	learn: 18.6982407	total: 701ms	remaining: 1.36s
34:	learn: 18.3109965	total: 722ms	remaining: 1.34s
35:	learn: 17.9620798	total: 750ms	remaining: 1.33s
36:	learn: 17.6396740	total: 774ms	remaining: 1.32s
37:	learn: 17.3596962	total: 792ms	remaining: 1.29s
38:	learn: 17.0107107	total: 811ms	remaining: 1.27s
39:	learn: 16.7000770	total: 829ms	remaining: 1.24s
40:	learn: 16.4406609	total: 840ms	remaining: 1.21s
41:	learn: 16.2482533	total: 860ms	remaining: 1.19s
42:	learn: 16.0039366	total: 881ms	remaining: 1.17s
43:	learn: 15.7538572	total: 903ms	remaining: 1.15s
44:	learn: 15.5095380	total: 926ms	remaining: 1.13s
45:	learn: 15.2678319	total: 955ms	remaining: 1.12s
46:	learn: 15.0494495	total: 981ms	remaining: 1.1s
47:	learn: 14.8347400	total: 1s	remaining: 1.09s
48:	learn: 14.6035398	total: 1.03s	remaining: 1.07s
49:	learn: 14.3913639	total: 1.05s	remaining: 1.05s
50:	learn: 14.1928022	total: 1.07s	remaining: 1.03s
51:	learn: 13.9985580	total: 1.09s	remaining: 1.01s
52:	learn: 13.8322220	total: 1.11s	remaining: 985ms
53:	learn: 13.6455937	total: 1.13s	remaining: 963ms
54:	learn: 13.4402019	total: 1.15s	remaining: 944ms
55:	learn: 13.2899163	total: 1.18s	remaining: 926ms
56:	learn: 13.1694614	total: 1.2s	remaining: 907ms
57:	learn: 13.0722892	total: 1.22s	remaining: 886ms
58:	learn: 12.9065251	total: 1.24s	remaining: 865ms
59:	learn: 12.6992885	total: 1.27s	remaining: 844ms
60:	learn: 12.5384562	total: 1.28s	remaining: 822ms
61:	learn: 12.4105591	total: 1.31s	remaining: 801ms
62:	learn: 12.2952504	total: 1.33s	remaining: 780ms
63:	learn: 12.1427365	total: 1.35s	remaining: 760ms
64:	learn: 11.9954361	total: 1.37s	remaining: 739ms
65:	learn: 11.8161234	total: 1.39s	remaining: 719ms
66:	learn: 11.6849978	total: 1.42s	remaining: 701ms
67:	learn: 11.5405300	total: 1.45s	remaining: 681ms
68:	learn: 11.3806762	total: 1.47s	remaining: 660ms
69:	learn: 11.2746848	total: 1.49s	remaining: 639ms
70:	learn: 11.1518256	total: 1.51s	remaining: 619ms
71:	learn: 11.0730779	total: 1.53s	remaining: 597ms
72:	learn: 10.9736725	total: 1.55s	remaining: 575ms
73:	learn: 10.8430563	total: 1.57s	remaining: 554ms
74:	learn: 10.7142220	total: 1.6s	remaining: 533ms
75:	learn: 10.6141640	total: 1.63s	remaining: 514ms
76:	learn: 10.5264853	total: 1.65s	remaining: 492ms
77:	learn: 10.3929390	total: 1.67s	remaining: 471ms
78:	learn: 10.3163176	total: 1.69s	remaining: 449ms
79:	learn: 10.2171240	total: 1.71s	remaining: 427ms
80:	learn: 10.1381738	total: 1.73s	remaining: 406ms
81:	learn: 10.0402437	total: 1.75s	remaining: 384ms
82:	learn: 9.9223565	total: 1.77s	remaining: 362ms
83:	learn: 9.8184057	total: 1.79s	remaining: 341ms
84:	learn: 9.7221978	total: 1.82s	remaining: 321ms
85:	learn: 9.6417031	total: 1.85s	remaining: 301ms
86:	learn: 9.5593969	total: 1.87s	remaining: 279ms
87:	learn: 9.4678992	total: 1.89s	remaining: 258ms
88:	learn: 9.3855757	total: 1.92s	remaining: 237ms
89:	learn: 9.2884031	total: 1.94s	remaining: 215ms
90:	learn: 9.2099382	total: 1.96s	remaining: 194ms
91:	learn: 9.1357061	total: 1.98s	remaining: 172ms
92:	learn: 9.0690328	total: 2s	remaining: 151ms
93:	learn: 8.9904694	total: 2.02s	remaining: 129ms
94:	learn: 8.9256893	total: 2.04s	remaining: 108ms
95:	learn: 8.8600084	total: 2.07s	remaining: 86.2ms
96:	learn: 8.8091154	total: 2.09s	remaining: 64.6ms
97:	learn: 8.7280528	total: 2.11s	remaining: 43ms
98:	learn: 8.6761440	total: 2.13s	remaining: 21.5ms
99:	learn: 8.6181192	total: 2.15s	remaining: 0us
0:	learn: 45.9988128	total: 19.1ms	remaining: 1.89s
1:	learn: 44.7653841	total: 39.2ms	remaining: 1.92s
2:	learn: 43.4693688	total: 66.3ms	remaining: 2.14s
3:	learn: 42.2495168	total: 94.4ms	remaining: 2.27s
4:	learn: 41.2273909	total: 117ms	remaining: 2.22s
5:	learn: 40.0623352	total: 139ms	remaining: 2.17s
6:	learn: 39.0139162	total: 159ms	remaining: 2.11s
7:	learn: 37.9905503	total: 179ms	remaining: 2.06s
8:	learn: 37.1460179	total: 199ms	remaining: 2.01s
9:	learn: 36.1321769	total: 219ms	remaining: 1.97s
10:	learn: 35.2434048	total: 239ms	remaining: 1.94s
11:	learn: 34.3919476	total: 258ms	remaining: 1.89s
12:	learn: 33.5464400	total: 277ms	remaining: 1.86s
13:	learn: 32.5752711	total: 306ms	remaining: 1.88s
14:	learn: 31.8573507	total: 328ms	remaining: 1.86s
15:	learn: 31.1481980	total: 347ms	remaining: 1.82s
16:	learn: 30.4578224	total: 365ms	remaining: 1.78s
17:	learn: 29.8404841	total: 385ms	remaining: 1.75s
18:	learn: 29.1314604	total: 404ms	remaining: 1.72s
19:	learn: 28.5024706	total: 423ms	remaining: 1.69s
20:	learn: 27.9368896	total: 443ms	remaining: 1.67s
21:	learn: 27.2136491	total: 464ms	remaining: 1.64s
22:	learn: 26.6230078	total: 484ms	remaining: 1.62s
23:	learn: 26.0604635	total: 505ms	remaining: 1.6s
24:	learn: 25.6309424	total: 535ms	remaining: 1.6s
25:	learn: 25.1761698	total: 557ms	remaining: 1.59s
26:	learn: 24.6368216	total: 578ms	remaining: 1.56s
27:	learn: 24.1028972	total: 600ms	remaining: 1.54s
28:	learn: 23.3990224	total: 623ms	remaining: 1.52s
29:	learn: 22.9088559	total: 643ms	remaining: 1.5s
30:	learn: 22.4793217	total: 662ms	remaining: 1.47s
31:	learn: 22.0592669	total: 681ms	remaining: 1.45s
32:	learn: 21.6715811	total: 702ms	remaining: 1.42s
33:	learn: 21.1907911	total: 724ms	remaining: 1.4s
34:	learn: 20.8045504	total: 751ms	remaining: 1.39s
35:	learn: 20.4670784	total: 772ms	remaining: 1.37s
36:	learn: 20.0165788	total: 791ms	remaining: 1.35s
37:	learn: 19.6859173	total: 810ms	remaining: 1.32s
38:	learn: 19.3641283	total: 830ms	remaining: 1.3s
39:	learn: 19.0291194	total: 850ms	remaining: 1.27s
40:	learn: 18.7204204	total: 870ms	remaining: 1.25s
41:	learn: 18.4000101	total: 890ms	remaining: 1.23s
42:	learn: 18.0910445	total: 911ms	remaining: 1.21s
43:	learn: 17.8354609	total: 939ms	remaining: 1.19s
44:	learn: 17.4982243	total: 962ms	remaining: 1.18s
45:	learn: 17.1895897	total: 985ms	remaining: 1.16s
46:	learn: 16.9440833	total: 1.01s	remaining: 1.14s
47:	learn: 16.6112102	total: 1.03s	remaining: 1.12s
48:	learn: 16.3320235	total: 1.05s	remaining: 1.1s
49:	learn: 16.0523610	total: 1.08s	remaining: 1.08s
50:	learn: 15.8256738	total: 1.1s	remaining: 1.05s
51:	learn: 15.5699393	total: 1.12s	remaining: 1.03s
52:	learn: 15.3531799	total: 1.14s	remaining: 1.01s
53:	learn: 15.1364230	total: 1.17s	remaining: 992ms
54:	learn: 15.0012063	total: 1.19s	remaining: 974ms
55:	learn: 14.7171740	total: 1.21s	remaining: 952ms
56:	learn: 14.5897576	total: 1.21s	remaining: 916ms
57:	learn: 14.3886878	total: 1.23s	remaining: 893ms
58:	learn: 14.1942115	total: 1.25s	remaining: 871ms
59:	learn: 14.0135398	total: 1.27s	remaining: 849ms
60:	learn: 13.8118263	total: 1.29s	remaining: 827ms
61:	learn: 13.6444047	total: 1.31s	remaining: 806ms
62:	learn: 13.4728078	total: 1.33s	remaining: 784ms
63:	learn: 13.3104934	total: 1.36s	remaining: 764ms
64:	learn: 13.1385144	total: 1.39s	remaining: 746ms
65:	learn: 13.0087777	total: 1.41s	remaining: 728ms
66:	learn: 12.8457835	total: 1.44s	remaining: 707ms
67:	learn: 12.6975263	total: 1.46s	remaining: 686ms
68:	learn: 12.5582839	total: 1.48s	remaining: 665ms
69:	learn: 12.4210776	total: 1.5s	remaining: 644ms
70:	learn: 12.2737286	total: 1.52s	remaining: 622ms
71:	learn: 12.1587075	total: 1.54s	remaining: 601ms
72:	learn: 12.0323022	total: 1.57s	remaining: 580ms
73:	learn: 11.8667900	total: 1.59s	remaining: 559ms
74:	learn: 11.6990385	total: 1.62s	remaining: 539ms
75:	learn: 11.5755058	total: 1.64s	remaining: 517ms
76:	learn: 11.4954152	total: 1.66s	remaining: 495ms
77:	learn: 11.3827464	total: 1.68s	remaining: 473ms
78:	learn: 11.2924968	total: 1.7s	remaining: 451ms
79:	learn: 11.1938217	total: 1.72s	remaining: 429ms
80:	learn: 11.0766477	total: 1.74s	remaining: 408ms
81:	learn: 10.9824487	total: 1.76s	remaining: 386ms
82:	learn: 10.8707168	total: 1.78s	remaining: 365ms
83:	learn: 10.7746205	total: 1.8s	remaining: 343ms
84:	learn: 10.6738461	total: 1.83s	remaining: 324ms
85:	learn: 10.5871227	total: 1.86s	remaining: 302ms
86:	learn: 10.4566607	total: 1.88s	remaining: 281ms
87:	learn: 10.3506633	total: 1.9s	remaining: 259ms
88:	learn: 10.2104644	total: 1.93s	remaining: 238ms
89:	learn: 10.0965839	total: 1.95s	remaining: 216ms
90:	learn: 9.9802927	total: 1.97s	remaining: 194ms
91:	learn: 9.9195276	total: 1.99s	remaining: 173ms
92:	learn: 9.8559698	total: 2.01s	remaining: 151ms
93:	learn: 9.7396780	total: 2.03s	remaining: 130ms
94:	learn: 9.6945725	total: 2.06s	remaining: 108ms
95:	learn: 9.5897565	total: 2.07s	remaining: 86.4ms
96:	learn: 9.5012011	total: 2.09s	remaining: 64.7ms
97:	learn: 9.4123715	total: 2.11s	remaining: 43.1ms
98:	learn: 9.3288366	total: 2.13s	remaining: 21.5ms
99:	learn: 9.2648715	total: 2.15s	remaining: 0us
0:	learn: 45.5336925	total: 21.8ms	remaining: 2.16s
1:	learn: 44.2714175	total: 53.9ms	remaining: 2.64s
2:	learn: 43.1477944	total: 78ms	remaining: 2.52s
3:	learn: 41.9891776	total: 99.9ms	remaining: 2.4s
4:	learn: 41.0638986	total: 122ms	remaining: 2.32s
5:	learn: 39.9800801	total: 145ms	remaining: 2.27s
6:	learn: 38.9048061	total: 164ms	remaining: 2.18s
7:	learn: 38.0749429	total: 183ms	remaining: 2.1s
8:	learn: 37.3966644	total: 202ms	remaining: 2.04s
9:	learn: 36.4671331	total: 220ms	remaining: 1.98s
10:	learn: 35.6649217	total: 239ms	remaining: 1.93s
11:	learn: 34.8793657	total: 260ms	remaining: 1.91s
12:	learn: 34.0737401	total: 280ms	remaining: 1.88s
13:	learn: 33.2560999	total: 309ms	remaining: 1.9s
14:	learn: 32.4184623	total: 329ms	remaining: 1.86s
15:	learn: 31.6803206	total: 347ms	remaining: 1.82s
16:	learn: 30.9276344	total: 367ms	remaining: 1.79s
17:	learn: 30.3590041	total: 384ms	remaining: 1.75s
18:	learn: 29.7789888	total: 403ms	remaining: 1.72s
19:	learn: 29.1098261	total: 424ms	remaining: 1.7s
20:	learn: 28.4824889	total: 444ms	remaining: 1.67s
21:	learn: 27.9675744	total: 465ms	remaining: 1.65s
22:	learn: 27.4793215	total: 495ms	remaining: 1.66s
23:	learn: 26.8920542	total: 518ms	remaining: 1.64s
24:	learn: 26.2736657	total: 540ms	remaining: 1.62s
25:	learn: 25.6908003	total: 563ms	remaining: 1.6s
26:	learn: 25.1288844	total: 583ms	remaining: 1.57s
27:	learn: 24.6933320	total: 605ms	remaining: 1.55s
28:	learn: 24.1372567	total: 627ms	remaining: 1.53s
29:	learn: 23.7103515	total: 645ms	remaining: 1.5s
30:	learn: 23.1647499	total: 664ms	remaining: 1.48s
31:	learn: 22.7009216	total: 685ms	remaining: 1.46s
32:	learn: 22.2792229	total: 706ms	remaining: 1.43s
33:	learn: 21.8004244	total: 732ms	remaining: 1.42s
34:	learn: 21.3578361	total: 751ms	remaining: 1.4s
35:	learn: 21.0262832	total: 770ms	remaining: 1.37s
36:	learn: 20.5787502	total: 788ms	remaining: 1.34s
37:	learn: 20.3083055	total: 807ms	remaining: 1.32s
38:	learn: 19.9902529	total: 826ms	remaining: 1.29s
39:	learn: 19.6059571	total: 846ms	remaining: 1.27s
40:	learn: 19.3890959	total: 864ms	remaining: 1.24s
41:	learn: 19.0549255	total: 884ms	remaining: 1.22s
42:	learn: 18.7283215	total: 906ms	remaining: 1.2s
43:	learn: 18.4448725	total: 933ms	remaining: 1.19s
44:	learn: 18.1578001	total: 958ms	remaining: 1.17s
45:	learn: 17.8777474	total: 981ms	remaining: 1.15s
46:	learn: 17.6428221	total: 1s	remaining: 1.13s
47:	learn: 17.3887752	total: 1.02s	remaining: 1.11s
48:	learn: 17.1475761	total: 1.05s	remaining: 1.09s
49:	learn: 16.9064363	total: 1.07s	remaining: 1.07s
50:	learn: 16.6414681	total: 1.09s	remaining: 1.04s
51:	learn: 16.4549974	total: 1.11s	remaining: 1.02s
52:	learn: 16.2617558	total: 1.13s	remaining: 1s
53:	learn: 16.0258241	total: 1.16s	remaining: 988ms
54:	learn: 15.7694686	total: 1.18s	remaining: 968ms
55:	learn: 15.5449602	total: 1.2s	remaining: 946ms
56:	learn: 15.3515330	total: 1.22s	remaining: 923ms
57:	learn: 15.1120403	total: 1.24s	remaining: 901ms
58:	learn: 14.9131368	total: 1.26s	remaining: 879ms
59:	learn: 14.8021921	total: 1.28s	remaining: 857ms
60:	learn: 14.6564259	total: 1.31s	remaining: 836ms
61:	learn: 14.5253260	total: 1.33s	remaining: 814ms
62:	learn: 14.3975427	total: 1.35s	remaining: 795ms
63:	learn: 14.3060204	total: 1.38s	remaining: 777ms
64:	learn: 14.1283681	total: 1.4s	remaining: 756ms
65:	learn: 14.0159063	total: 1.43s	remaining: 735ms
66:	learn: 13.8712541	total: 1.45s	remaining: 713ms
67:	learn: 13.7852998	total: 1.47s	remaining: 692ms
68:	learn: 13.6790164	total: 1.49s	remaining: 669ms
69:	learn: 13.5253745	total: 1.51s	remaining: 646ms
70:	learn: 13.3959663	total: 1.53s	remaining: 624ms
71:	learn: 13.2062955	total: 1.55s	remaining: 602ms
72:	learn: 13.0788709	total: 1.57s	remaining: 582ms
73:	learn: 12.9513184	total: 1.6s	remaining: 562ms
74:	learn: 12.8198556	total: 1.62s	remaining: 541ms
75:	learn: 12.7137549	total: 1.64s	remaining: 518ms
76:	learn: 12.6243477	total: 1.66s	remaining: 497ms
77:	learn: 12.5241564	total: 1.68s	remaining: 475ms
78:	learn: 12.4445782	total: 1.7s	remaining: 453ms
79:	learn: 12.3816501	total: 1.72s	remaining: 431ms
80:	learn: 12.2846914	total: 1.75s	remaining: 410ms
81:	learn: 12.1419498	total: 1.77s	remaining: 388ms
82:	learn: 12.0846494	total: 1.8s	remaining: 368ms
83:	learn: 11.9851484	total: 1.82s	remaining: 347ms
84:	learn: 11.8905738	total: 1.84s	remaining: 325ms
85:	learn: 11.7718790	total: 1.86s	remaining: 304ms
86:	learn: 11.6854413	total: 1.89s	remaining: 282ms
87:	learn: 11.6206110	total: 1.91s	remaining: 260ms
88:	learn: 11.5376098	total: 1.93s	remaining: 239ms
89:	learn: 11.4235068	total: 1.95s	remaining: 217ms
90:	learn: 11.3477955	total: 1.97s	remaining: 195ms
91:	learn: 11.2663772	total: 2s	remaining: 174ms
92:	learn: 11.1916556	total: 2.02s	remaining: 152ms
93:	learn: 11.0921504	total: 2.04s	remaining: 130ms
94:	learn: 10.9622375	total: 2.06s	remaining: 109ms
95:	learn: 10.8882085	total: 2.08s	remaining: 86.8ms
96:	learn: 10.8086218	total: 2.1s	remaining: 65ms
97:	learn: 10.7552220	total: 2.12s	remaining: 43.3ms
98:	learn: 10.6929666	total: 2.14s	remaining: 21.6ms
99:	learn: 10.6200033	total: 2.16s	remaining: 0us
0:	learn: 46.3366259	total: 23.1ms	remaining: 2.29s
1:	learn: 45.2205278	total: 45.9ms	remaining: 2.25s
2:	learn: 43.9887404	total: 69ms	remaining: 2.23s
3:	learn: 42.8240666	total: 92.1ms	remaining: 2.21s
4:	learn: 41.6086617	total: 113ms	remaining: 2.15s
5:	learn: 40.5606446	total: 133ms	remaining: 2.08s
6:	learn: 39.6241326	total: 154ms	remaining: 2.04s
7:	learn: 39.0016852	total: 174ms	remaining: 2s
8:	learn: 37.8501670	total: 205ms	remaining: 2.07s
9:	learn: 37.0215474	total: 229ms	remaining: 2.06s
10:	learn: 36.0215020	total: 249ms	remaining: 2.01s
11:	learn: 35.2421331	total: 269ms	remaining: 1.98s
12:	learn: 34.5416837	total: 289ms	remaining: 1.93s
13:	learn: 33.7787649	total: 308ms	remaining: 1.89s
14:	learn: 32.9860883	total: 326ms	remaining: 1.84s
15:	learn: 32.2123752	total: 344ms	remaining: 1.81s
16:	learn: 31.3564648	total: 362ms	remaining: 1.77s
17:	learn: 30.7859979	total: 381ms	remaining: 1.74s
18:	learn: 30.1443515	total: 402ms	remaining: 1.71s
19:	learn: 29.4880724	total: 423ms	remaining: 1.69s
20:	learn: 28.9635727	total: 453ms	remaining: 1.7s
21:	learn: 28.4853342	total: 475ms	remaining: 1.68s
22:	learn: 27.9796348	total: 497ms	remaining: 1.66s
23:	learn: 27.4360487	total: 515ms	remaining: 1.63s
24:	learn: 26.8685214	total: 537ms	remaining: 1.61s
25:	learn: 26.1769206	total: 556ms	remaining: 1.58s
26:	learn: 25.7146048	total: 576ms	remaining: 1.56s
27:	learn: 25.2614850	total: 598ms	remaining: 1.54s
28:	learn: 24.6626472	total: 627ms	remaining: 1.53s
29:	learn: 24.2501259	total: 647ms	remaining: 1.51s
30:	learn: 23.7892661	total: 667ms	remaining: 1.48s
31:	learn: 23.2729078	total: 685ms	remaining: 1.46s
32:	learn: 22.8969731	total: 704ms	remaining: 1.43s
33:	learn: 22.4567570	total: 724ms	remaining: 1.4s
34:	learn: 22.0569858	total: 741ms	remaining: 1.38s
35:	learn: 21.7317775	total: 760ms	remaining: 1.35s
36:	learn: 21.3890971	total: 779ms	remaining: 1.32s
37:	learn: 21.0664504	total: 798ms	remaining: 1.3s
38:	learn: 20.7379659	total: 820ms	remaining: 1.28s
39:	learn: 20.4423699	total: 853ms	remaining: 1.28s
40:	learn: 20.1526720	total: 875ms	remaining: 1.26s
41:	learn: 19.8706547	total: 898ms	remaining: 1.24s
42:	learn: 19.5139134	total: 920ms	remaining: 1.22s
43:	learn: 19.3495951	total: 940ms	remaining: 1.2s
44:	learn: 19.1314757	total: 959ms	remaining: 1.17s
45:	learn: 18.7971159	total: 978ms	remaining: 1.15s
46:	learn: 18.5447051	total: 996ms	remaining: 1.12s
47:	learn: 18.2328785	total: 1.02s	remaining: 1.1s
48:	learn: 17.9622938	total: 1.04s	remaining: 1.08s
49:	learn: 17.7264205	total: 1.07s	remaining: 1.07s
50:	learn: 17.4530592	total: 1.09s	remaining: 1.05s
51:	learn: 17.2236644	total: 1.11s	remaining: 1.02s
52:	learn: 17.0122792	total: 1.13s	remaining: 999ms
53:	learn: 16.7599064	total: 1.14s	remaining: 975ms
54:	learn: 16.5146699	total: 1.16s	remaining: 951ms
55:	learn: 16.2531414	total: 1.18s	remaining: 928ms
56:	learn: 16.0997208	total: 1.2s	remaining: 905ms
57:	learn: 15.8452412	total: 1.22s	remaining: 883ms
58:	learn: 15.6294900	total: 1.24s	remaining: 862ms
59:	learn: 15.4564548	total: 1.26s	remaining: 842ms
60:	learn: 15.2978533	total: 1.29s	remaining: 826ms
61:	learn: 15.0976912	total: 1.32s	remaining: 807ms
62:	learn: 14.9094446	total: 1.34s	remaining: 787ms
63:	learn: 14.7415094	total: 1.36s	remaining: 766ms
64:	learn: 14.6123806	total: 1.39s	remaining: 747ms
65:	learn: 14.4744916	total: 1.41s	remaining: 724ms
66:	learn: 14.3212717	total: 1.43s	remaining: 702ms
67:	learn: 14.1768047	total: 1.44s	remaining: 680ms
68:	learn: 14.0387344	total: 1.47s	remaining: 658ms
69:	learn: 13.8987579	total: 1.49s	remaining: 639ms
70:	learn: 13.7825740	total: 1.51s	remaining: 619ms
71:	learn: 13.6818548	total: 1.53s	remaining: 596ms
72:	learn: 13.5356993	total: 1.55s	remaining: 575ms
73:	learn: 13.4408704	total: 1.57s	remaining: 553ms
74:	learn: 13.2992218	total: 1.59s	remaining: 531ms
75:	learn: 13.1547092	total: 1.61s	remaining: 509ms
76:	learn: 13.0800189	total: 1.63s	remaining: 488ms
77:	learn: 12.9434711	total: 1.66s	remaining: 467ms
78:	learn: 12.8327325	total: 1.68s	remaining: 446ms
79:	learn: 12.7238946	total: 1.71s	remaining: 427ms
80:	learn: 12.6229528	total: 1.73s	remaining: 407ms
81:	learn: 12.5216078	total: 1.76s	remaining: 386ms
82:	learn: 12.4182254	total: 1.78s	remaining: 365ms
83:	learn: 12.3097978	total: 1.8s	remaining: 344ms
84:	learn: 12.1852056	total: 1.82s	remaining: 322ms
85:	learn: 12.0739627	total: 1.84s	remaining: 300ms
86:	learn: 11.9475583	total: 1.86s	remaining: 279ms
87:	learn: 11.8403806	total: 1.89s	remaining: 257ms
88:	learn: 11.7294124	total: 1.92s	remaining: 237ms
89:	learn: 11.6395689	total: 1.94s	remaining: 216ms
90:	learn: 11.5510643	total: 1.96s	remaining: 194ms
91:	learn: 11.4455301	total: 1.98s	remaining: 172ms
92:	learn: 11.3368661	total: 2s	remaining: 151ms
93:	learn: 11.2270796	total: 2.02s	remaining: 129ms
94:	learn: 11.1168414	total: 2.04s	remaining: 107ms
95:	learn: 11.0310985	total: 2.06s	remaining: 85.9ms
96:	learn: 10.9735185	total: 2.09s	remaining: 64.5ms
97:	learn: 10.8575874	total: 2.11s	remaining: 43.2ms
98:	learn: 10.7816173	total: 2.14s	remaining: 21.6ms
99:	learn: 10.7111737	total: 2.16s	remaining: 0us
0:	learn: 27.5467896	total: 19.2ms	remaining: 3.81s
1:	learn: 27.0680701	total: 40.7ms	remaining: 4.03s
2:	learn: 26.5343560	total: 60.6ms	remaining: 3.98s
3:	learn: 26.1627388	total: 82.6ms	remaining: 4.04s
4:	learn: 25.6788161	total: 105ms	remaining: 4.11s
5:	learn: 25.1796993	total: 134ms	remaining: 4.32s
6:	learn: 24.7618861	total: 154ms	remaining: 4.26s
7:	learn: 24.4052648	total: 176ms	remaining: 4.21s
8:	learn: 24.0145743	total: 196ms	remaining: 4.16s
9:	learn: 23.6326509	total: 217ms	remaining: 4.11s
10:	learn: 23.1980803	total: 236ms	remaining: 4.05s
11:	learn: 22.8128450	total: 257ms	remaining: 4.03s
12:	learn: 22.4543181	total: 277ms	remaining: 3.99s
13:	learn: 22.0627490	total: 297ms	remaining: 3.95s
14:	learn: 21.7356381	total: 318ms	remaining: 3.92s
15:	learn: 21.3576528	total: 345ms	remaining: 3.97s
16:	learn: 20.9953639	total: 371ms	remaining: 4s
17:	learn: 20.7418953	total: 394ms	remaining: 3.98s
18:	learn: 20.4337246	total: 416ms	remaining: 3.96s
19:	learn: 20.1184543	total: 438ms	remaining: 3.94s
20:	learn: 19.7611211	total: 459ms	remaining: 3.92s
21:	learn: 19.4769044	total: 481ms	remaining: 3.89s
22:	learn: 19.2318989	total: 501ms	remaining: 3.85s
23:	learn: 19.0476159	total: 523ms	remaining: 3.84s
24:	learn: 18.8122256	total: 546ms	remaining: 3.82s
25:	learn: 18.5633342	total: 573ms	remaining: 3.83s
26:	learn: 18.3169243	total: 577ms	remaining: 3.7s
27:	learn: 18.0627337	total: 600ms	remaining: 3.68s
28:	learn: 17.8964068	total: 619ms	remaining: 3.65s
29:	learn: 17.6413721	total: 640ms	remaining: 3.63s
30:	learn: 17.4074030	total: 660ms	remaining: 3.6s
31:	learn: 17.1741331	total: 680ms	remaining: 3.57s
32:	learn: 16.9719203	total: 701ms	remaining: 3.55s
33:	learn: 16.7768268	total: 723ms	remaining: 3.53s
34:	learn: 16.5620878	total: 745ms	remaining: 3.51s
35:	learn: 16.3185355	total: 767ms	remaining: 3.49s
36:	learn: 16.1033868	total: 799ms	remaining: 3.52s
37:	learn: 15.9374702	total: 822ms	remaining: 3.5s
38:	learn: 15.7558907	total: 846ms	remaining: 3.49s
39:	learn: 15.6093227	total: 868ms	remaining: 3.47s
40:	learn: 15.3807433	total: 891ms	remaining: 3.45s
41:	learn: 15.2247737	total: 910ms	remaining: 3.42s
42:	learn: 14.9806114	total: 930ms	remaining: 3.39s
43:	learn: 14.8223122	total: 951ms	remaining: 3.37s
44:	learn: 14.6807973	total: 973ms	remaining: 3.35s
45:	learn: 14.5522845	total: 999ms	remaining: 3.34s
46:	learn: 14.4107984	total: 1.02s	remaining: 3.33s
47:	learn: 14.2989274	total: 1.04s	remaining: 3.31s
48:	learn: 14.1243557	total: 1.06s	remaining: 3.28s
49:	learn: 13.9822596	total: 1.08s	remaining: 3.25s
50:	learn: 13.8563717	total: 1.1s	remaining: 3.22s
51:	learn: 13.7197225	total: 1.12s	remaining: 3.19s
52:	learn: 13.5869165	total: 1.14s	remaining: 3.16s
53:	learn: 13.4282146	total: 1.16s	remaining: 3.13s
54:	learn: 13.3080783	total: 1.18s	remaining: 3.1s
55:	learn: 13.1757199	total: 1.2s	remaining: 3.08s
56:	learn: 13.0890522	total: 1.22s	remaining: 3.06s
57:	learn: 12.9693334	total: 1.25s	remaining: 3.05s
58:	learn: 12.8656736	total: 1.27s	remaining: 3.04s
59:	learn: 12.7624851	total: 1.29s	remaining: 3.02s
60:	learn: 12.6429258	total: 1.31s	remaining: 2.99s
61:	learn: 12.5474728	total: 1.33s	remaining: 2.97s
62:	learn: 12.4375178	total: 1.35s	remaining: 2.95s
63:	learn: 12.3337549	total: 1.37s	remaining: 2.92s
64:	learn: 12.2208696	total: 1.39s	remaining: 2.9s
65:	learn: 12.1041855	total: 1.41s	remaining: 2.87s
66:	learn: 11.9934935	total: 1.43s	remaining: 2.85s
67:	learn: 11.8755104	total: 1.46s	remaining: 2.84s
68:	learn: 11.7732877	total: 1.48s	remaining: 2.82s
69:	learn: 11.6837172	total: 1.5s	remaining: 2.79s
70:	learn: 11.5919175	total: 1.52s	remaining: 2.77s
71:	learn: 11.5071758	total: 1.54s	remaining: 2.74s
72:	learn: 11.4473042	total: 1.56s	remaining: 2.71s
73:	learn: 11.3506919	total: 1.58s	remaining: 2.69s
74:	learn: 11.2483249	total: 1.6s	remaining: 2.67s
75:	learn: 11.1913605	total: 1.62s	remaining: 2.64s
76:	learn: 11.1043267	total: 1.64s	remaining: 2.62s
77:	learn: 11.0063168	total: 1.66s	remaining: 2.6s
78:	learn: 10.9254796	total: 1.69s	remaining: 2.59s
79:	learn: 10.8263071	total: 1.71s	remaining: 2.57s
80:	learn: 10.7531059	total: 1.74s	remaining: 2.55s
81:	learn: 10.6896768	total: 1.76s	remaining: 2.53s
82:	learn: 10.6034681	total: 1.78s	remaining: 2.51s
83:	learn: 10.5159133	total: 1.8s	remaining: 2.48s
84:	learn: 10.4434563	total: 1.82s	remaining: 2.46s
85:	learn: 10.3709079	total: 1.84s	remaining: 2.44s
86:	learn: 10.3061829	total: 1.87s	remaining: 2.42s
87:	learn: 10.2608132	total: 1.89s	remaining: 2.4s
88:	learn: 10.1736338	total: 1.9s	remaining: 2.38s
89:	learn: 10.0885012	total: 1.93s	remaining: 2.36s
90:	learn: 10.0337309	total: 1.95s	remaining: 2.34s
91:	learn: 9.9758392	total: 1.97s	remaining: 2.32s
92:	learn: 9.8870117	total: 2s	remaining: 2.3s
93:	learn: 9.8077732	total: 2.02s	remaining: 2.28s
94:	learn: 9.7135409	total: 2.04s	remaining: 2.26s
95:	learn: 9.6341854	total: 2.06s	remaining: 2.23s
96:	learn: 9.5790423	total: 2.1s	remaining: 2.23s
97:	learn: 9.5158535	total: 2.12s	remaining: 2.21s
98:	learn: 9.4707296	total: 2.15s	remaining: 2.19s
99:	learn: 9.3997718	total: 2.17s	remaining: 2.17s
100:	learn: 9.3300948	total: 2.19s	remaining: 2.14s
101:	learn: 9.2678794	total: 2.21s	remaining: 2.12s
102:	learn: 9.2135445	total: 2.23s	remaining: 2.1s
103:	learn: 9.1774382	total: 2.25s	remaining: 2.08s
104:	learn: 9.1411747	total: 2.27s	remaining: 2.06s
105:	learn: 9.0714633	total: 2.3s	remaining: 2.04s
106:	learn: 9.0283498	total: 2.32s	remaining: 2.02s
107:	learn: 8.9822832	total: 2.34s	remaining: 2s
108:	learn: 8.9269786	total: 2.36s	remaining: 1.97s
109:	learn: 8.8844134	total: 2.38s	remaining: 1.95s
110:	learn: 8.8411557	total: 2.4s	remaining: 1.93s
111:	learn: 8.7949992	total: 2.42s	remaining: 1.9s
112:	learn: 8.7541601	total: 2.44s	remaining: 1.88s
113:	learn: 8.6903414	total: 2.46s	remaining: 1.86s
114:	learn: 8.6334340	total: 2.49s	remaining: 1.84s
115:	learn: 8.5733848	total: 2.52s	remaining: 1.82s
116:	learn: 8.5233612	total: 2.54s	remaining: 1.8s
117:	learn: 8.4557467	total: 2.57s	remaining: 1.78s
118:	learn: 8.4074673	total: 2.59s	remaining: 1.76s
119:	learn: 8.3462613	total: 2.61s	remaining: 1.74s
120:	learn: 8.3116172	total: 2.64s	remaining: 1.72s
121:	learn: 8.2772734	total: 2.66s	remaining: 1.7s
122:	learn: 8.2399615	total: 2.68s	remaining: 1.68s
123:	learn: 8.1899492	total: 2.7s	remaining: 1.66s
124:	learn: 8.1399508	total: 2.73s	remaining: 1.64s
125:	learn: 8.0974791	total: 2.75s	remaining: 1.61s
126:	learn: 8.0439068	total: 2.77s	remaining: 1.59s
127:	learn: 8.0011231	total: 2.79s	remaining: 1.57s
128:	learn: 7.9648000	total: 2.81s	remaining: 1.55s
129:	learn: 7.9205463	total: 2.83s	remaining: 1.53s
130:	learn: 7.8861918	total: 2.85s	remaining: 1.5s
131:	learn: 7.8426734	total: 2.88s	remaining: 1.48s
132:	learn: 7.7808473	total: 2.9s	remaining: 1.46s
133:	learn: 7.7588830	total: 2.92s	remaining: 1.44s
134:	learn: 7.7208354	total: 2.95s	remaining: 1.42s
135:	learn: 7.6832009	total: 2.97s	remaining: 1.4s
136:	learn: 7.6489816	total: 2.99s	remaining: 1.38s
137:	learn: 7.6052064	total: 3.02s	remaining: 1.35s
138:	learn: 7.5767556	total: 3.04s	remaining: 1.33s
139:	learn: 7.5423647	total: 3.06s	remaining: 1.31s
140:	learn: 7.4910023	total: 3.08s	remaining: 1.29s
141:	learn: 7.4482152	total: 3.1s	remaining: 1.27s
142:	learn: 7.4290249	total: 3.13s	remaining: 1.25s
143:	learn: 7.3787224	total: 3.15s	remaining: 1.23s
144:	learn: 7.3310921	total: 3.18s	remaining: 1.21s
145:	learn: 7.2685836	total: 3.2s	remaining: 1.18s
146:	learn: 7.2367369	total: 3.22s	remaining: 1.16s
147:	learn: 7.2039225	total: 3.24s	remaining: 1.14s
148:	learn: 7.1552420	total: 3.26s	remaining: 1.12s
149:	learn: 7.1200744	total: 3.28s	remaining: 1.09s
150:	learn: 7.0709170	total: 3.3s	remaining: 1.07s
151:	learn: 7.0316433	total: 3.32s	remaining: 1.05s
152:	learn: 6.9976068	total: 3.34s	remaining: 1.03s
153:	learn: 6.9549446	total: 3.37s	remaining: 1.01s
154:	learn: 6.9117671	total: 3.4s	remaining: 986ms
155:	learn: 6.8678412	total: 3.42s	remaining: 965ms
156:	learn: 6.8352541	total: 3.44s	remaining: 943ms
157:	learn: 6.8079569	total: 3.46s	remaining: 921ms
158:	learn: 6.7753416	total: 3.49s	remaining: 899ms
159:	learn: 6.7536850	total: 3.51s	remaining: 877ms
160:	learn: 6.7205643	total: 3.53s	remaining: 854ms
161:	learn: 6.6790291	total: 3.55s	remaining: 832ms
162:	learn: 6.6489125	total: 3.57s	remaining: 810ms
163:	learn: 6.6243412	total: 3.6s	remaining: 790ms
164:	learn: 6.5849298	total: 3.62s	remaining: 768ms
165:	learn: 6.5695704	total: 3.64s	remaining: 746ms
166:	learn: 6.5349747	total: 3.66s	remaining: 724ms
167:	learn: 6.4871810	total: 3.68s	remaining: 701ms
168:	learn: 6.4496084	total: 3.7s	remaining: 679ms
169:	learn: 6.4137654	total: 3.72s	remaining: 657ms
170:	learn: 6.3728109	total: 3.74s	remaining: 634ms
171:	learn: 6.3306392	total: 3.76s	remaining: 613ms
172:	learn: 6.2990104	total: 3.79s	remaining: 592ms
173:	learn: 6.2837204	total: 3.82s	remaining: 570ms
174:	learn: 6.2433465	total: 3.84s	remaining: 549ms
175:	learn: 6.2145328	total: 3.86s	remaining: 527ms
176:	learn: 6.1721908	total: 3.89s	remaining: 505ms
177:	learn: 6.1380169	total: 3.91s	remaining: 483ms
178:	learn: 6.1017656	total: 3.93s	remaining: 461ms
179:	learn: 6.0626665	total: 3.95s	remaining: 439ms
180:	learn: 6.0461952	total: 3.97s	remaining: 417ms
181:	learn: 6.0172697	total: 3.99s	remaining: 395ms
182:	learn: 5.9856992	total: 4.02s	remaining: 374ms
183:	learn: 5.9478487	total: 4.04s	remaining: 352ms
184:	learn: 5.9081783	total: 4.07s	remaining: 330ms
185:	learn: 5.8851916	total: 4.08s	remaining: 307ms
186:	learn: 5.8517386	total: 4.1s	remaining: 285ms
187:	learn: 5.8285753	total: 4.12s	remaining: 263ms
188:	learn: 5.7940926	total: 4.14s	remaining: 241ms
189:	learn: 5.7659749	total: 4.16s	remaining: 219ms
190:	learn: 5.7478550	total: 4.18s	remaining: 197ms
191:	learn: 5.7215872	total: 4.2s	remaining: 175ms
192:	learn: 5.6855264	total: 4.23s	remaining: 153ms
193:	learn: 5.6500976	total: 4.25s	remaining: 132ms
194:	learn: 5.6095973	total: 4.28s	remaining: 110ms
195:	learn: 5.5759839	total: 4.3s	remaining: 87.7ms
196:	learn: 5.5501497	total: 4.32s	remaining: 65.8ms
197:	learn: 5.5125773	total: 4.34s	remaining: 43.8ms
198:	learn: 5.4735750	total: 4.36s	remaining: 21.9ms
199:	learn: 5.4583140	total: 4.38s	remaining: 0us
0:	learn: 42.9926207	total: 18ms	remaining: 3.59s
1:	learn: 41.9318955	total: 37.7ms	remaining: 3.73s
2:	learn: 41.0022152	total: 56.2ms	remaining: 3.69s
3:	learn: 40.1316455	total: 77.5ms	remaining: 3.8s
4:	learn: 39.3025337	total: 96.7ms	remaining: 3.77s
5:	learn: 38.2742529	total: 115ms	remaining: 3.73s
6:	learn: 37.3862274	total: 134ms	remaining: 3.69s
7:	learn: 36.4195721	total: 153ms	remaining: 3.67s
8:	learn: 35.7209650	total: 173ms	remaining: 3.67s
9:	learn: 34.8505622	total: 195ms	remaining: 3.7s
10:	learn: 34.0461426	total: 224ms	remaining: 3.85s
11:	learn: 33.3894212	total: 247ms	remaining: 3.87s
12:	learn: 32.5545835	total: 268ms	remaining: 3.86s
13:	learn: 31.7211463	total: 290ms	remaining: 3.85s
14:	learn: 31.0440401	total: 312ms	remaining: 3.84s
15:	learn: 30.3845013	total: 331ms	remaining: 3.81s
16:	learn: 29.8020882	total: 352ms	remaining: 3.79s
17:	learn: 29.2132262	total: 371ms	remaining: 3.75s
18:	learn: 28.5262512	total: 393ms	remaining: 3.75s
19:	learn: 27.8276439	total: 413ms	remaining: 3.71s
20:	learn: 27.2324195	total: 440ms	remaining: 3.75s
21:	learn: 26.7543625	total: 462ms	remaining: 3.73s
22:	learn: 26.3175298	total: 480ms	remaining: 3.69s
23:	learn: 25.8967125	total: 499ms	remaining: 3.66s
24:	learn: 25.3222501	total: 519ms	remaining: 3.63s
25:	learn: 24.8107258	total: 539ms	remaining: 3.61s
26:	learn: 24.3897671	total: 542ms	remaining: 3.47s
27:	learn: 23.9914208	total: 561ms	remaining: 3.45s
28:	learn: 23.5529513	total: 582ms	remaining: 3.43s
29:	learn: 23.1877842	total: 603ms	remaining: 3.42s
30:	learn: 22.8394086	total: 624ms	remaining: 3.4s
31:	learn: 22.4793141	total: 654ms	remaining: 3.44s
32:	learn: 22.1926518	total: 679ms	remaining: 3.44s
33:	learn: 21.8606860	total: 701ms	remaining: 3.42s
34:	learn: 21.4947094	total: 724ms	remaining: 3.41s
35:	learn: 21.1482380	total: 745ms	remaining: 3.4s
36:	learn: 20.8239544	total: 766ms	remaining: 3.37s
37:	learn: 20.5150933	total: 784ms	remaining: 3.34s
38:	learn: 20.1599880	total: 804ms	remaining: 3.32s
39:	learn: 19.8759507	total: 826ms	remaining: 3.3s
40:	learn: 19.5853513	total: 841ms	remaining: 3.26s
41:	learn: 19.4990617	total: 844ms	remaining: 3.17s
42:	learn: 19.2904285	total: 868ms	remaining: 3.17s
43:	learn: 19.0060840	total: 888ms	remaining: 3.15s
44:	learn: 18.7979613	total: 908ms	remaining: 3.13s
45:	learn: 18.5730707	total: 927ms	remaining: 3.1s
46:	learn: 18.3768212	total: 946ms	remaining: 3.08s
47:	learn: 18.1147100	total: 966ms	remaining: 3.06s
48:	learn: 17.8159562	total: 985ms	remaining: 3.03s
49:	learn: 17.5839856	total: 1s	remaining: 3.01s
50:	learn: 17.4120110	total: 1.03s	remaining: 3s
51:	learn: 17.2382256	total: 1.05s	remaining: 2.99s
52:	learn: 17.0121500	total: 1.08s	remaining: 2.99s
53:	learn: 16.7907092	total: 1.1s	remaining: 2.98s
54:	learn: 16.6218039	total: 1.12s	remaining: 2.96s
55:	learn: 16.4327809	total: 1.15s	remaining: 2.94s
56:	learn: 16.2206056	total: 1.17s	remaining: 2.93s
57:	learn: 16.0996886	total: 1.19s	remaining: 2.91s
58:	learn: 15.9136733	total: 1.21s	remaining: 2.89s
59:	learn: 15.7543521	total: 1.24s	remaining: 2.89s
60:	learn: 15.5825313	total: 1.26s	remaining: 2.88s
61:	learn: 15.4010722	total: 1.28s	remaining: 2.86s
62:	learn: 15.2435421	total: 1.3s	remaining: 2.83s
63:	learn: 15.1051044	total: 1.32s	remaining: 2.81s
64:	learn: 14.9539750	total: 1.34s	remaining: 2.79s
65:	learn: 14.8213115	total: 1.36s	remaining: 2.77s
66:	learn: 14.7224184	total: 1.39s	remaining: 2.75s
67:	learn: 14.5238762	total: 1.41s	remaining: 2.73s
68:	learn: 14.3254679	total: 1.43s	remaining: 2.72s
69:	learn: 14.2246196	total: 1.47s	remaining: 2.73s
70:	learn: 14.0666647	total: 1.5s	remaining: 2.72s
71:	learn: 13.9605706	total: 1.52s	remaining: 2.7s
72:	learn: 13.8507597	total: 1.54s	remaining: 2.69s
73:	learn: 13.7339190	total: 1.56s	remaining: 2.67s
74:	learn: 13.6863761	total: 1.59s	remaining: 2.66s
75:	learn: 13.5658578	total: 1.62s	remaining: 2.64s
76:	learn: 13.4554508	total: 1.64s	remaining: 2.62s
77:	learn: 13.3644073	total: 1.67s	remaining: 2.6s
78:	learn: 13.2572594	total: 1.7s	remaining: 2.6s
79:	learn: 13.1701563	total: 1.72s	remaining: 2.58s
80:	learn: 13.0640002	total: 1.74s	remaining: 2.56s
81:	learn: 12.9526375	total: 1.76s	remaining: 2.54s
82:	learn: 12.8448135	total: 1.78s	remaining: 2.51s
83:	learn: 12.7231228	total: 1.8s	remaining: 2.49s
84:	learn: 12.5890300	total: 1.83s	remaining: 2.48s
85:	learn: 12.4491533	total: 1.86s	remaining: 2.46s
86:	learn: 12.3145494	total: 1.88s	remaining: 2.45s
87:	learn: 12.2535348	total: 1.91s	remaining: 2.43s
88:	learn: 12.1984046	total: 1.94s	remaining: 2.41s
89:	learn: 12.1604813	total: 1.96s	remaining: 2.39s
90:	learn: 12.0643817	total: 1.98s	remaining: 2.37s
91:	learn: 11.9715230	total: 2s	remaining: 2.35s
92:	learn: 11.8696994	total: 2.02s	remaining: 2.33s
93:	learn: 11.7765073	total: 2.05s	remaining: 2.31s
94:	learn: 11.6783712	total: 2.07s	remaining: 2.29s
95:	learn: 11.6258045	total: 2.1s	remaining: 2.28s
96:	learn: 11.5262897	total: 2.13s	remaining: 2.26s
97:	learn: 11.4355051	total: 2.15s	remaining: 2.24s
98:	learn: 11.3469700	total: 2.17s	remaining: 2.22s
99:	learn: 11.2812844	total: 2.2s	remaining: 2.2s
100:	learn: 11.1926035	total: 2.22s	remaining: 2.17s
101:	learn: 11.1280192	total: 2.24s	remaining: 2.15s
102:	learn: 11.0508229	total: 2.27s	remaining: 2.13s
103:	learn: 10.9804462	total: 2.29s	remaining: 2.11s
104:	learn: 10.9152956	total: 2.32s	remaining: 2.1s
105:	learn: 10.8365067	total: 2.36s	remaining: 2.09s
106:	learn: 10.7817140	total: 2.38s	remaining: 2.07s
107:	learn: 10.7059777	total: 2.41s	remaining: 2.05s
108:	learn: 10.6260340	total: 2.43s	remaining: 2.03s
109:	learn: 10.5423564	total: 2.45s	remaining: 2.01s
110:	learn: 10.4989232	total: 2.48s	remaining: 1.99s
111:	learn: 10.4467606	total: 2.5s	remaining: 1.96s
112:	learn: 10.3685116	total: 2.52s	remaining: 1.94s
113:	learn: 10.2865937	total: 2.55s	remaining: 1.93s
114:	learn: 10.2296268	total: 2.58s	remaining: 1.9s
115:	learn: 10.1906427	total: 2.6s	remaining: 1.88s
116:	learn: 10.1437775	total: 2.63s	remaining: 1.86s
117:	learn: 10.1028189	total: 2.65s	remaining: 1.84s
118:	learn: 10.0453078	total: 2.67s	remaining: 1.82s
119:	learn: 9.9973288	total: 2.69s	remaining: 1.79s
120:	learn: 9.9355459	total: 2.71s	remaining: 1.77s
121:	learn: 9.8840000	total: 2.74s	remaining: 1.75s
122:	learn: 9.8637795	total: 2.77s	remaining: 1.73s
123:	learn: 9.7998368	total: 2.8s	remaining: 1.71s
124:	learn: 9.7120051	total: 2.82s	remaining: 1.69s
125:	learn: 9.6436634	total: 2.85s	remaining: 1.67s
126:	learn: 9.5903060	total: 2.87s	remaining: 1.65s
127:	learn: 9.5239998	total: 2.89s	remaining: 1.63s
128:	learn: 9.4706107	total: 2.92s	remaining: 1.6s
129:	learn: 9.4243350	total: 2.94s	remaining: 1.58s
130:	learn: 9.3771981	total: 2.97s	remaining: 1.56s
131:	learn: 9.3319455	total: 2.99s	remaining: 1.54s
132:	learn: 9.2589088	total: 3.01s	remaining: 1.51s
133:	learn: 9.2312438	total: 3.03s	remaining: 1.49s
134:	learn: 9.1832306	total: 3.05s	remaining: 1.47s
135:	learn: 9.1377444	total: 3.07s	remaining: 1.44s
136:	learn: 9.0988463	total: 3.09s	remaining: 1.42s
137:	learn: 9.0534782	total: 3.11s	remaining: 1.4s
138:	learn: 8.9848070	total: 3.13s	remaining: 1.37s
139:	learn: 8.9497061	total: 3.15s	remaining: 1.35s
140:	learn: 8.9258905	total: 3.18s	remaining: 1.33s
141:	learn: 8.8715435	total: 3.21s	remaining: 1.31s
142:	learn: 8.8316763	total: 3.23s	remaining: 1.29s
143:	learn: 8.7590092	total: 3.25s	remaining: 1.26s
144:	learn: 8.7249757	total: 3.27s	remaining: 1.24s
145:	learn: 8.6819757	total: 3.3s	remaining: 1.22s
146:	learn: 8.6304476	total: 3.32s	remaining: 1.2s
147:	learn: 8.5640394	total: 3.34s	remaining: 1.17s
148:	learn: 8.5277172	total: 3.36s	remaining: 1.15s
149:	learn: 8.4596322	total: 3.38s	remaining: 1.13s
150:	learn: 8.3992348	total: 3.42s	remaining: 1.11s
151:	learn: 8.3496991	total: 3.44s	remaining: 1.08s
152:	learn: 8.2930953	total: 3.46s	remaining: 1.06s
153:	learn: 8.2562084	total: 3.48s	remaining: 1.04s
154:	learn: 8.2029279	total: 3.5s	remaining: 1.02s
155:	learn: 8.1653055	total: 3.52s	remaining: 993ms
156:	learn: 8.1133690	total: 3.54s	remaining: 969ms
157:	learn: 8.0482828	total: 3.56s	remaining: 946ms
158:	learn: 8.0060251	total: 3.58s	remaining: 924ms
159:	learn: 7.9747671	total: 3.61s	remaining: 902ms
160:	learn: 7.9380210	total: 3.64s	remaining: 881ms
161:	learn: 7.8978888	total: 3.66s	remaining: 858ms
162:	learn: 7.8408472	total: 3.68s	remaining: 836ms
163:	learn: 7.8052289	total: 3.7s	remaining: 813ms
164:	learn: 7.7532049	total: 3.73s	remaining: 791ms
165:	learn: 7.7163635	total: 3.75s	remaining: 768ms
166:	learn: 7.6803890	total: 3.77s	remaining: 745ms
167:	learn: 7.6348034	total: 3.79s	remaining: 722ms
168:	learn: 7.5922831	total: 3.81s	remaining: 699ms
169:	learn: 7.5294905	total: 3.84s	remaining: 678ms
170:	learn: 7.5034404	total: 3.86s	remaining: 655ms
171:	learn: 7.4585315	total: 3.88s	remaining: 632ms
172:	learn: 7.3869248	total: 3.9s	remaining: 609ms
173:	learn: 7.3434759	total: 3.92s	remaining: 586ms
174:	learn: 7.2986802	total: 3.94s	remaining: 563ms
175:	learn: 7.2541427	total: 3.96s	remaining: 540ms
176:	learn: 7.2284611	total: 3.98s	remaining: 518ms
177:	learn: 7.1828521	total: 4s	remaining: 495ms
178:	learn: 7.1373050	total: 4.03s	remaining: 473ms
179:	learn: 7.1126552	total: 4.06s	remaining: 451ms
180:	learn: 7.0638576	total: 4.08s	remaining: 428ms
181:	learn: 7.0192711	total: 4.1s	remaining: 406ms
182:	learn: 6.9816129	total: 4.13s	remaining: 383ms
183:	learn: 6.9541954	total: 4.15s	remaining: 361ms
184:	learn: 6.9111408	total: 4.17s	remaining: 338ms
185:	learn: 6.8770181	total: 4.19s	remaining: 316ms
186:	learn: 6.8525387	total: 4.21s	remaining: 293ms
187:	learn: 6.8370868	total: 4.24s	remaining: 270ms
188:	learn: 6.7890843	total: 4.26s	remaining: 248ms
189:	learn: 6.7547976	total: 4.29s	remaining: 226ms
190:	learn: 6.7161335	total: 4.31s	remaining: 203ms
191:	learn: 6.6873604	total: 4.33s	remaining: 180ms
192:	learn: 6.6428130	total: 4.35s	remaining: 158ms
193:	learn: 6.5963180	total: 4.37s	remaining: 135ms
194:	learn: 6.5601136	total: 4.39s	remaining: 113ms
195:	learn: 6.5308359	total: 4.41s	remaining: 90ms
196:	learn: 6.5141670	total: 4.43s	remaining: 67.5ms
197:	learn: 6.4694863	total: 4.45s	remaining: 45ms
198:	learn: 6.4363955	total: 4.48s	remaining: 22.5ms
199:	learn: 6.3863688	total: 4.51s	remaining: 0us
0:	learn: 46.3266214	total: 18.3ms	remaining: 3.65s
1:	learn: 45.1514312	total: 36.9ms	remaining: 3.65s
2:	learn: 44.1597260	total: 57.4ms	remaining: 3.77s
3:	learn: 43.3312581	total: 79ms	remaining: 3.87s
4:	learn: 42.2544790	total: 107ms	remaining: 4.19s
5:	learn: 41.4327745	total: 129ms	remaining: 4.17s
6:	learn: 40.5876528	total: 147ms	remaining: 4.05s
7:	learn: 39.8244581	total: 166ms	remaining: 3.98s
8:	learn: 39.0259762	total: 185ms	remaining: 3.92s
9:	learn: 38.0775608	total: 203ms	remaining: 3.86s
10:	learn: 37.5303598	total: 223ms	remaining: 3.84s
11:	learn: 36.8182638	total: 242ms	remaining: 3.8s
12:	learn: 36.1926770	total: 264ms	remaining: 3.79s
13:	learn: 35.3678676	total: 292ms	remaining: 3.88s
14:	learn: 34.7135576	total: 315ms	remaining: 3.88s
15:	learn: 34.0868578	total: 337ms	remaining: 3.87s
16:	learn: 33.3917608	total: 359ms	remaining: 3.87s
17:	learn: 32.8468089	total: 381ms	remaining: 3.85s
18:	learn: 32.1641109	total: 403ms	remaining: 3.84s
19:	learn: 31.6438269	total: 423ms	remaining: 3.81s
20:	learn: 31.1283566	total: 442ms	remaining: 3.77s
21:	learn: 30.4995785	total: 461ms	remaining: 3.73s
22:	learn: 30.0052433	total: 483ms	remaining: 3.71s
23:	learn: 29.5387468	total: 504ms	remaining: 3.69s
24:	learn: 29.0769319	total: 532ms	remaining: 3.72s
25:	learn: 28.6815017	total: 553ms	remaining: 3.7s
26:	learn: 28.2580471	total: 571ms	remaining: 3.66s
27:	learn: 27.9023835	total: 590ms	remaining: 3.62s
28:	learn: 27.4643921	total: 610ms	remaining: 3.6s
29:	learn: 27.0297350	total: 629ms	remaining: 3.56s
30:	learn: 26.6109927	total: 648ms	remaining: 3.53s
31:	learn: 26.1717234	total: 666ms	remaining: 3.5s
32:	learn: 25.7657009	total: 687ms	remaining: 3.48s
33:	learn: 25.3655630	total: 709ms	remaining: 3.46s
34:	learn: 24.9552495	total: 741ms	remaining: 3.49s
35:	learn: 24.6587249	total: 765ms	remaining: 3.49s
36:	learn: 24.1629997	total: 788ms	remaining: 3.47s
37:	learn: 23.8708337	total: 810ms	remaining: 3.45s
38:	learn: 23.5244511	total: 832ms	remaining: 3.44s
39:	learn: 23.1849323	total: 851ms	remaining: 3.4s
40:	learn: 22.9351049	total: 869ms	remaining: 3.37s
41:	learn: 22.5277714	total: 889ms	remaining: 3.34s
42:	learn: 22.2395030	total: 910ms	remaining: 3.32s
43:	learn: 22.0299814	total: 930ms	remaining: 3.3s
44:	learn: 21.6885189	total: 960ms	remaining: 3.31s
45:	learn: 21.3288224	total: 983ms	remaining: 3.29s
46:	learn: 21.0899946	total: 1s	remaining: 3.26s
47:	learn: 20.8247347	total: 1.02s	remaining: 3.23s
48:	learn: 20.5036358	total: 1.04s	remaining: 3.2s
49:	learn: 20.1622332	total: 1.06s	remaining: 3.17s
50:	learn: 19.9564962	total: 1.08s	remaining: 3.15s
51:	learn: 19.7533770	total: 1.09s	remaining: 3.12s
52:	learn: 19.5817440	total: 1.11s	remaining: 3.09s
53:	learn: 19.3640916	total: 1.14s	remaining: 3.07s
54:	learn: 19.2561089	total: 1.16s	remaining: 3.06s
55:	learn: 19.0461047	total: 1.19s	remaining: 3.06s
56:	learn: 18.7888958	total: 1.21s	remaining: 3.04s
57:	learn: 18.5675327	total: 1.23s	remaining: 3.02s
58:	learn: 18.3523517	total: 1.25s	remaining: 3s
59:	learn: 18.1831957	total: 1.27s	remaining: 2.97s
60:	learn: 17.9920208	total: 1.29s	remaining: 2.95s
61:	learn: 17.8042217	total: 1.31s	remaining: 2.92s
62:	learn: 17.6855735	total: 1.33s	remaining: 2.9s
63:	learn: 17.4623156	total: 1.36s	remaining: 2.88s
64:	learn: 17.3086540	total: 1.38s	remaining: 2.87s
65:	learn: 17.1005708	total: 1.4s	remaining: 2.84s
66:	learn: 16.9122145	total: 1.42s	remaining: 2.82s
67:	learn: 16.7666446	total: 1.44s	remaining: 2.79s
68:	learn: 16.6234993	total: 1.46s	remaining: 2.77s
69:	learn: 16.4035590	total: 1.48s	remaining: 2.74s
70:	learn: 16.2483077	total: 1.5s	remaining: 2.72s
71:	learn: 16.0606167	total: 1.52s	remaining: 2.7s
72:	learn: 15.9344107	total: 1.53s	remaining: 2.67s
73:	learn: 15.7668192	total: 1.56s	remaining: 2.65s
74:	learn: 15.5833782	total: 1.58s	remaining: 2.64s
75:	learn: 15.4263720	total: 1.61s	remaining: 2.62s
76:	learn: 15.3208364	total: 1.64s	remaining: 2.63s
77:	learn: 15.1982265	total: 1.67s	remaining: 2.61s
78:	learn: 15.0779040	total: 1.69s	remaining: 2.59s
79:	learn: 14.9608105	total: 1.72s	remaining: 2.58s
80:	learn: 14.7888514	total: 1.74s	remaining: 2.55s
81:	learn: 14.6665763	total: 1.76s	remaining: 2.53s
82:	learn: 14.5838729	total: 1.78s	remaining: 2.51s
83:	learn: 14.4740569	total: 1.8s	remaining: 2.49s
84:	learn: 14.3288121	total: 1.83s	remaining: 2.48s
85:	learn: 14.2289255	total: 1.86s	remaining: 2.46s
86:	learn: 14.1016858	total: 1.88s	remaining: 2.44s
87:	learn: 13.9584118	total: 1.9s	remaining: 2.41s
88:	learn: 13.8573066	total: 1.92s	remaining: 2.39s
89:	learn: 13.7468438	total: 1.94s	remaining: 2.37s
90:	learn: 13.6485024	total: 1.96s	remaining: 2.35s
91:	learn: 13.5168517	total: 1.98s	remaining: 2.32s
92:	learn: 13.4303631	total: 2s	remaining: 2.3s
93:	learn: 13.3104458	total: 2.02s	remaining: 2.28s
94:	learn: 13.2180209	total: 2.05s	remaining: 2.27s
95:	learn: 13.1130752	total: 2.08s	remaining: 2.25s
96:	learn: 12.9990802	total: 2.1s	remaining: 2.23s
97:	learn: 12.9542182	total: 2.12s	remaining: 2.21s
98:	learn: 12.8588744	total: 2.14s	remaining: 2.19s
99:	learn: 12.7258962	total: 2.16s	remaining: 2.16s
100:	learn: 12.6352268	total: 2.19s	remaining: 2.14s
101:	learn: 12.5619522	total: 2.21s	remaining: 2.12s
102:	learn: 12.4634337	total: 2.23s	remaining: 2.1s
103:	learn: 12.3609898	total: 2.26s	remaining: 2.08s
104:	learn: 12.2125688	total: 2.28s	remaining: 2.06s
105:	learn: 12.1486953	total: 2.3s	remaining: 2.04s
106:	learn: 12.0898441	total: 2.32s	remaining: 2.01s
107:	learn: 12.0010232	total: 2.34s	remaining: 1.99s
108:	learn: 11.9176187	total: 2.36s	remaining: 1.97s
109:	learn: 11.8371178	total: 2.38s	remaining: 1.95s
110:	learn: 11.7788535	total: 2.4s	remaining: 1.92s
111:	learn: 11.6950379	total: 2.42s	remaining: 1.9s
112:	learn: 11.5654368	total: 2.45s	remaining: 1.89s
113:	learn: 11.4875190	total: 2.48s	remaining: 1.87s
114:	learn: 11.3710623	total: 2.5s	remaining: 1.85s
115:	learn: 11.2824160	total: 2.52s	remaining: 1.82s
116:	learn: 11.2154904	total: 2.54s	remaining: 1.8s
117:	learn: 11.1156693	total: 2.56s	remaining: 1.78s
118:	learn: 11.0246386	total: 2.58s	remaining: 1.76s
119:	learn: 10.9408189	total: 2.6s	remaining: 1.74s
120:	learn: 10.8948758	total: 2.62s	remaining: 1.71s
121:	learn: 10.8181533	total: 2.65s	remaining: 1.69s
122:	learn: 10.7773891	total: 2.67s	remaining: 1.67s
123:	learn: 10.7102903	total: 2.7s	remaining: 1.65s
124:	learn: 10.6398196	total: 2.72s	remaining: 1.63s
125:	learn: 10.5724929	total: 2.74s	remaining: 1.61s
126:	learn: 10.5053766	total: 2.76s	remaining: 1.59s
127:	learn: 10.4586496	total: 2.78s	remaining: 1.56s
128:	learn: 10.3564151	total: 2.8s	remaining: 1.54s
129:	learn: 10.2759173	total: 2.82s	remaining: 1.52s
130:	learn: 10.2053847	total: 2.84s	remaining: 1.5s
131:	learn: 10.1569693	total: 2.86s	remaining: 1.47s
132:	learn: 10.0939422	total: 2.88s	remaining: 1.45s
133:	learn: 10.0598247	total: 2.91s	remaining: 1.43s
134:	learn: 10.0024727	total: 2.94s	remaining: 1.41s
135:	learn: 9.9528111	total: 2.96s	remaining: 1.39s
136:	learn: 9.8945114	total: 2.98s	remaining: 1.37s
137:	learn: 9.8346449	total: 3s	remaining: 1.35s
138:	learn: 9.7449422	total: 3.02s	remaining: 1.33s
139:	learn: 9.6851089	total: 3.04s	remaining: 1.3s
140:	learn: 9.6140363	total: 3.06s	remaining: 1.28s
141:	learn: 9.5496776	total: 3.09s	remaining: 1.26s
142:	learn: 9.4851950	total: 3.11s	remaining: 1.24s
143:	learn: 9.4142786	total: 3.14s	remaining: 1.22s
144:	learn: 9.3481846	total: 3.16s	remaining: 1.2s
145:	learn: 9.3028915	total: 3.18s	remaining: 1.18s
146:	learn: 9.2633103	total: 3.2s	remaining: 1.15s
147:	learn: 9.2202725	total: 3.22s	remaining: 1.13s
148:	learn: 9.1901978	total: 3.24s	remaining: 1.11s
149:	learn: 9.1399499	total: 3.26s	remaining: 1.09s
150:	learn: 9.0844800	total: 3.28s	remaining: 1.06s
151:	learn: 9.0268509	total: 3.3s	remaining: 1.04s
152:	learn: 8.9454080	total: 3.32s	remaining: 1.02s
153:	learn: 8.8961891	total: 3.35s	remaining: 1s
154:	learn: 8.8461471	total: 3.38s	remaining: 980ms
155:	learn: 8.7827134	total: 3.4s	remaining: 959ms
156:	learn: 8.7126457	total: 3.42s	remaining: 937ms
157:	learn: 8.6457355	total: 3.44s	remaining: 916ms
158:	learn: 8.5973469	total: 3.46s	remaining: 894ms
159:	learn: 8.5238781	total: 3.48s	remaining: 871ms
160:	learn: 8.4753874	total: 3.51s	remaining: 850ms
161:	learn: 8.4102398	total: 3.53s	remaining: 828ms
162:	learn: 8.3427298	total: 3.56s	remaining: 807ms
163:	learn: 8.2879829	total: 3.58s	remaining: 786ms
164:	learn: 8.2017948	total: 3.6s	remaining: 764ms
165:	learn: 8.1414522	total: 3.62s	remaining: 742ms
166:	learn: 8.0997373	total: 3.64s	remaining: 720ms
167:	learn: 8.0426513	total: 3.67s	remaining: 698ms
168:	learn: 8.0171299	total: 3.69s	remaining: 676ms
169:	learn: 7.9860244	total: 3.71s	remaining: 654ms
170:	learn: 7.9243600	total: 3.73s	remaining: 632ms
171:	learn: 7.8888500	total: 3.75s	remaining: 610ms
172:	learn: 7.8429133	total: 3.78s	remaining: 590ms
173:	learn: 7.7878355	total: 3.8s	remaining: 568ms
174:	learn: 7.7477647	total: 3.82s	remaining: 546ms
175:	learn: 7.6996609	total: 3.85s	remaining: 524ms
176:	learn: 7.6508695	total: 3.87s	remaining: 502ms
177:	learn: 7.6228709	total: 3.89s	remaining: 480ms
178:	learn: 7.5427816	total: 3.9s	remaining: 458ms
179:	learn: 7.4993051	total: 3.92s	remaining: 436ms
180:	learn: 7.4506031	total: 3.94s	remaining: 414ms
181:	learn: 7.4126852	total: 3.96s	remaining: 392ms
182:	learn: 7.3727232	total: 3.98s	remaining: 370ms
183:	learn: 7.3245476	total: 4.01s	remaining: 349ms
184:	learn: 7.2930719	total: 4.03s	remaining: 327ms
185:	learn: 7.2609171	total: 4.05s	remaining: 305ms
186:	learn: 7.2219298	total: 4.07s	remaining: 283ms
187:	learn: 7.1686640	total: 4.09s	remaining: 261ms
188:	learn: 7.1391386	total: 4.11s	remaining: 239ms
189:	learn: 7.0834226	total: 4.13s	remaining: 217ms
190:	learn: 7.0356769	total: 4.14s	remaining: 195ms
191:	learn: 6.9895273	total: 4.17s	remaining: 174ms
192:	learn: 6.9461560	total: 4.19s	remaining: 152ms
193:	learn: 6.9066032	total: 4.21s	remaining: 130ms
194:	learn: 6.8510364	total: 4.24s	remaining: 109ms
195:	learn: 6.8372660	total: 4.26s	remaining: 86.9ms
196:	learn: 6.8214482	total: 4.28s	remaining: 65.2ms
197:	learn: 6.7734991	total: 4.3s	remaining: 43.4ms
198:	learn: 6.7326852	total: 4.32s	remaining: 21.7ms
199:	learn: 6.7110050	total: 4.34s	remaining: 0us
0:	learn: 45.9215573	total: 20.4ms	remaining: 4.07s
1:	learn: 44.9284313	total: 45.9ms	remaining: 4.55s
2:	learn: 44.0711345	total: 66.1ms	remaining: 4.34s
3:	learn: 43.1946732	total: 84.9ms	remaining: 4.16s
4:	learn: 42.3849301	total: 104ms	remaining: 4.05s
5:	learn: 41.3846783	total: 123ms	remaining: 3.97s
6:	learn: 40.5478596	total: 142ms	remaining: 3.91s
7:	learn: 39.7877107	total: 159ms	remaining: 3.83s
8:	learn: 39.2235376	total: 177ms	remaining: 3.76s
9:	learn: 38.1495756	total: 195ms	remaining: 3.71s
10:	learn: 37.3934113	total: 214ms	remaining: 3.67s
11:	learn: 36.8586441	total: 232ms	remaining: 3.63s
12:	learn: 36.0985370	total: 254ms	remaining: 3.66s
13:	learn: 35.3452538	total: 275ms	remaining: 3.65s
14:	learn: 34.5427415	total: 302ms	remaining: 3.72s
15:	learn: 33.9683642	total: 328ms	remaining: 3.77s
16:	learn: 33.4589244	total: 350ms	remaining: 3.77s
17:	learn: 32.9407753	total: 372ms	remaining: 3.76s
18:	learn: 32.4280468	total: 394ms	remaining: 3.75s
19:	learn: 31.7257475	total: 414ms	remaining: 3.72s
20:	learn: 31.1717140	total: 432ms	remaining: 3.68s
21:	learn: 30.6995996	total: 450ms	remaining: 3.64s
22:	learn: 30.2724641	total: 468ms	remaining: 3.6s
23:	learn: 29.7428509	total: 488ms	remaining: 3.58s
24:	learn: 29.1882571	total: 509ms	remaining: 3.56s
25:	learn: 28.7327799	total: 535ms	remaining: 3.58s
26:	learn: 28.2833877	total: 554ms	remaining: 3.55s
27:	learn: 27.9927194	total: 572ms	remaining: 3.51s
28:	learn: 27.4458955	total: 591ms	remaining: 3.48s
29:	learn: 27.0894181	total: 609ms	remaining: 3.45s
30:	learn: 26.6809084	total: 627ms	remaining: 3.42s
31:	learn: 26.2884767	total: 646ms	remaining: 3.39s
32:	learn: 25.8641383	total: 664ms	remaining: 3.36s
33:	learn: 25.4731759	total: 683ms	remaining: 3.33s
34:	learn: 25.1288573	total: 704ms	remaining: 3.32s
35:	learn: 24.7440894	total: 725ms	remaining: 3.3s
36:	learn: 24.4112270	total: 754ms	remaining: 3.32s
37:	learn: 24.0727081	total: 779ms	remaining: 3.32s
38:	learn: 23.7431725	total: 800ms	remaining: 3.3s
39:	learn: 23.4247988	total: 823ms	remaining: 3.29s
40:	learn: 23.1336117	total: 846ms	remaining: 3.28s
41:	learn: 22.8507281	total: 864ms	remaining: 3.25s
42:	learn: 22.5904652	total: 883ms	remaining: 3.22s
43:	learn: 22.3442324	total: 901ms	remaining: 3.19s
44:	learn: 22.0327536	total: 919ms	remaining: 3.17s
45:	learn: 21.7539265	total: 938ms	remaining: 3.14s
46:	learn: 21.5196696	total: 965ms	remaining: 3.14s
47:	learn: 21.2340877	total: 997ms	remaining: 3.16s
48:	learn: 20.9294404	total: 1.02s	remaining: 3.14s
49:	learn: 20.7129883	total: 1.04s	remaining: 3.12s
50:	learn: 20.4874120	total: 1.06s	remaining: 3.11s
51:	learn: 20.2801665	total: 1.08s	remaining: 3.08s
52:	learn: 20.1451290	total: 1.1s	remaining: 3.06s
53:	learn: 19.8893935	total: 1.13s	remaining: 3.05s
54:	learn: 19.6356393	total: 1.15s	remaining: 3.03s
55:	learn: 19.3929976	total: 1.18s	remaining: 3.03s
56:	learn: 19.1603234	total: 1.21s	remaining: 3.03s
57:	learn: 18.9606558	total: 1.23s	remaining: 3.01s
58:	learn: 18.7611006	total: 1.25s	remaining: 3s
59:	learn: 18.5930939	total: 1.28s	remaining: 2.99s
60:	learn: 18.4565961	total: 1.3s	remaining: 2.97s
61:	learn: 18.2641722	total: 1.33s	remaining: 2.97s
62:	learn: 18.1150502	total: 1.35s	remaining: 2.95s
63:	learn: 17.9331117	total: 1.38s	remaining: 2.93s
64:	learn: 17.7523560	total: 1.41s	remaining: 2.92s
65:	learn: 17.6211697	total: 1.43s	remaining: 2.9s
66:	learn: 17.4779253	total: 1.45s	remaining: 2.88s
67:	learn: 17.3972874	total: 1.47s	remaining: 2.86s
68:	learn: 17.3096715	total: 1.49s	remaining: 2.83s
69:	learn: 17.1933586	total: 1.51s	remaining: 2.81s
70:	learn: 17.0431030	total: 1.53s	remaining: 2.79s
71:	learn: 16.8568825	total: 1.56s	remaining: 2.78s
72:	learn: 16.7246266	total: 1.58s	remaining: 2.76s
73:	learn: 16.5696941	total: 1.61s	remaining: 2.74s
74:	learn: 16.4412110	total: 1.64s	remaining: 2.73s
75:	learn: 16.3346865	total: 1.67s	remaining: 2.72s
76:	learn: 16.1904210	total: 1.69s	remaining: 2.7s
77:	learn: 16.0299007	total: 1.71s	remaining: 2.68s
78:	learn: 15.9351887	total: 1.74s	remaining: 2.66s
79:	learn: 15.8037331	total: 1.76s	remaining: 2.64s
80:	learn: 15.6793752	total: 1.78s	remaining: 2.61s
81:	learn: 15.5259970	total: 1.8s	remaining: 2.59s
82:	learn: 15.4520966	total: 1.84s	remaining: 2.59s
83:	learn: 15.3523282	total: 1.86s	remaining: 2.57s
84:	learn: 15.3157447	total: 1.89s	remaining: 2.55s
85:	learn: 15.2372888	total: 1.91s	remaining: 2.53s
86:	learn: 15.0923008	total: 1.93s	remaining: 2.5s
87:	learn: 15.0181842	total: 1.95s	remaining: 2.48s
88:	learn: 14.8366764	total: 1.97s	remaining: 2.46s
89:	learn: 14.7247654	total: 1.99s	remaining: 2.43s
90:	learn: 14.6431207	total: 2.01s	remaining: 2.41s
91:	learn: 14.5705776	total: 2.04s	remaining: 2.39s
92:	learn: 14.4640014	total: 2.06s	remaining: 2.38s
93:	learn: 14.3666041	total: 2.09s	remaining: 2.35s
94:	learn: 14.3112685	total: 2.11s	remaining: 2.33s
95:	learn: 14.2184161	total: 2.14s	remaining: 2.31s
96:	learn: 14.1032991	total: 2.16s	remaining: 2.29s
97:	learn: 14.0586875	total: 2.18s	remaining: 2.27s
98:	learn: 13.9507118	total: 2.2s	remaining: 2.25s
99:	learn: 13.8778041	total: 2.23s	remaining: 2.23s
100:	learn: 13.7728695	total: 2.25s	remaining: 2.21s
101:	learn: 13.6608543	total: 2.28s	remaining: 2.19s
102:	learn: 13.5550488	total: 2.3s	remaining: 2.17s
103:	learn: 13.4489779	total: 2.32s	remaining: 2.14s
104:	learn: 13.3804592	total: 2.34s	remaining: 2.12s
105:	learn: 13.2836433	total: 2.36s	remaining: 2.09s
106:	learn: 13.2203501	total: 2.38s	remaining: 2.07s
107:	learn: 13.1493422	total: 2.4s	remaining: 2.04s
108:	learn: 13.0600009	total: 2.42s	remaining: 2.02s
109:	learn: 12.9684426	total: 2.44s	remaining: 2s
110:	learn: 12.9028699	total: 2.46s	remaining: 1.98s
111:	learn: 12.7963752	total: 2.49s	remaining: 1.96s
112:	learn: 12.7080153	total: 2.52s	remaining: 1.94s
113:	learn: 12.6204740	total: 2.54s	remaining: 1.92s
114:	learn: 12.5027992	total: 2.56s	remaining: 1.89s
115:	learn: 12.4544452	total: 2.59s	remaining: 1.87s
116:	learn: 12.3924059	total: 2.61s	remaining: 1.85s
117:	learn: 12.3170363	total: 2.62s	remaining: 1.82s
118:	learn: 12.2485670	total: 2.64s	remaining: 1.8s
119:	learn: 12.1257095	total: 2.67s	remaining: 1.78s
120:	learn: 12.0604229	total: 2.69s	remaining: 1.76s
121:	learn: 12.0088875	total: 2.72s	remaining: 1.74s
122:	learn: 11.9284487	total: 2.74s	remaining: 1.72s
123:	learn: 11.8528694	total: 2.76s	remaining: 1.69s
124:	learn: 11.7717673	total: 2.78s	remaining: 1.67s
125:	learn: 11.7240723	total: 2.81s	remaining: 1.65s
126:	learn: 11.6715318	total: 2.83s	remaining: 1.62s
127:	learn: 11.6276994	total: 2.84s	remaining: 1.6s
128:	learn: 11.5431431	total: 2.86s	remaining: 1.57s
129:	learn: 11.4385709	total: 2.88s	remaining: 1.55s
130:	learn: 11.3627369	total: 2.9s	remaining: 1.53s
131:	learn: 11.2970131	total: 2.94s	remaining: 1.51s
132:	learn: 11.2322847	total: 2.96s	remaining: 1.49s
133:	learn: 11.1846367	total: 2.99s	remaining: 1.47s
134:	learn: 11.1543979	total: 3.01s	remaining: 1.45s
135:	learn: 11.0823544	total: 3.03s	remaining: 1.43s
136:	learn: 11.0487163	total: 3.05s	remaining: 1.4s
137:	learn: 10.9832607	total: 3.07s	remaining: 1.38s
138:	learn: 10.9130824	total: 3.09s	remaining: 1.36s
139:	learn: 10.8579745	total: 3.11s	remaining: 1.33s
140:	learn: 10.7828907	total: 3.14s	remaining: 1.31s
141:	learn: 10.7103000	total: 3.16s	remaining: 1.29s
142:	learn: 10.6237800	total: 3.19s	remaining: 1.27s
143:	learn: 10.5716544	total: 3.21s	remaining: 1.25s
144:	learn: 10.4976092	total: 3.23s	remaining: 1.22s
145:	learn: 10.4313055	total: 3.25s	remaining: 1.2s
146:	learn: 10.3999486	total: 3.27s	remaining: 1.18s
147:	learn: 10.3502867	total: 3.29s	remaining: 1.15s
148:	learn: 10.3019991	total: 3.31s	remaining: 1.13s
149:	learn: 10.2488923	total: 3.33s	remaining: 1.11s
150:	learn: 10.1888838	total: 3.35s	remaining: 1.09s
151:	learn: 10.1116260	total: 3.38s	remaining: 1.07s
152:	learn: 10.0637742	total: 3.4s	remaining: 1.04s
153:	learn: 10.0463529	total: 3.42s	remaining: 1.02s
154:	learn: 9.9940485	total: 3.45s	remaining: 1s
155:	learn: 9.9547623	total: 3.47s	remaining: 978ms
156:	learn: 9.8883659	total: 3.49s	remaining: 956ms
157:	learn: 9.8547995	total: 3.51s	remaining: 933ms
158:	learn: 9.7999920	total: 3.53s	remaining: 910ms
159:	learn: 9.7417080	total: 3.55s	remaining: 888ms
160:	learn: 9.6704634	total: 3.57s	remaining: 866ms
161:	learn: 9.6398702	total: 3.6s	remaining: 844ms
162:	learn: 9.5435727	total: 3.62s	remaining: 822ms
163:	learn: 9.4983201	total: 3.64s	remaining: 799ms
164:	learn: 9.4633708	total: 3.66s	remaining: 776ms
165:	learn: 9.4354208	total: 3.68s	remaining: 754ms
166:	learn: 9.3806854	total: 3.7s	remaining: 731ms
167:	learn: 9.3711495	total: 3.72s	remaining: 708ms
168:	learn: 9.3437714	total: 3.74s	remaining: 686ms
169:	learn: 9.2939136	total: 3.76s	remaining: 664ms
170:	learn: 9.2634408	total: 3.79s	remaining: 643ms
171:	learn: 9.2095802	total: 3.81s	remaining: 621ms
172:	learn: 9.1367149	total: 3.84s	remaining: 599ms
173:	learn: 9.0999811	total: 3.86s	remaining: 577ms
174:	learn: 9.0367025	total: 3.88s	remaining: 555ms
175:	learn: 8.9715179	total: 3.9s	remaining: 533ms
176:	learn: 8.9149353	total: 3.93s	remaining: 511ms
177:	learn: 8.8782863	total: 3.95s	remaining: 488ms
178:	learn: 8.8540567	total: 3.97s	remaining: 466ms
179:	learn: 8.8250018	total: 3.99s	remaining: 444ms
180:	learn: 8.7872819	total: 4.03s	remaining: 423ms
181:	learn: 8.7315187	total: 4.05s	remaining: 400ms
182:	learn: 8.6696386	total: 4.07s	remaining: 378ms
183:	learn: 8.6137125	total: 4.09s	remaining: 355ms
184:	learn: 8.5526564	total: 4.11s	remaining: 333ms
185:	learn: 8.4978425	total: 4.13s	remaining: 311ms
186:	learn: 8.4696701	total: 4.14s	remaining: 288ms
187:	learn: 8.4148472	total: 4.16s	remaining: 266ms
188:	learn: 8.3597806	total: 4.18s	remaining: 243ms
189:	learn: 8.2960142	total: 4.2s	remaining: 221ms
190:	learn: 8.2542563	total: 4.23s	remaining: 199ms
191:	learn: 8.2272414	total: 4.26s	remaining: 177ms
192:	learn: 8.2002236	total: 4.28s	remaining: 155ms
193:	learn: 8.1459890	total: 4.3s	remaining: 133ms
194:	learn: 8.1086196	total: 4.32s	remaining: 111ms
195:	learn: 8.0560727	total: 4.34s	remaining: 88.6ms
196:	learn: 8.0094006	total: 4.36s	remaining: 66.4ms
197:	learn: 7.9587782	total: 4.38s	remaining: 44.2ms
198:	learn: 7.9133276	total: 4.4s	remaining: 22.1ms
199:	learn: 7.8533351	total: 4.42s	remaining: 0us
0:	learn: 46.7822310	total: 18.6ms	remaining: 3.69s
1:	learn: 45.7821607	total: 37.7ms	remaining: 3.73s
2:	learn: 44.8561967	total: 56.9ms	remaining: 3.73s
3:	learn: 43.8403748	total: 75.3ms	remaining: 3.69s
4:	learn: 43.0453118	total: 93.3ms	remaining: 3.64s
5:	learn: 42.2563327	total: 111ms	remaining: 3.6s
6:	learn: 41.3419698	total: 132ms	remaining: 3.64s
7:	learn: 40.5164894	total: 153ms	remaining: 3.67s
8:	learn: 39.8924326	total: 185ms	remaining: 3.93s
9:	learn: 39.0363549	total: 207ms	remaining: 3.93s
10:	learn: 38.3058916	total: 228ms	remaining: 3.92s
11:	learn: 37.6507668	total: 248ms	remaining: 3.89s
12:	learn: 36.8661647	total: 271ms	remaining: 3.89s
13:	learn: 36.1668195	total: 289ms	remaining: 3.84s
14:	learn: 35.4405316	total: 309ms	remaining: 3.81s
15:	learn: 34.7706167	total: 329ms	remaining: 3.79s
16:	learn: 34.0932139	total: 349ms	remaining: 3.76s
17:	learn: 33.5806864	total: 376ms	remaining: 3.81s
18:	learn: 32.9827022	total: 397ms	remaining: 3.79s
19:	learn: 32.3339103	total: 417ms	remaining: 3.76s
20:	learn: 31.7658637	total: 438ms	remaining: 3.73s
21:	learn: 31.3001942	total: 456ms	remaining: 3.69s
22:	learn: 30.8802168	total: 475ms	remaining: 3.65s
23:	learn: 30.5086494	total: 494ms	remaining: 3.62s
24:	learn: 30.0097170	total: 512ms	remaining: 3.59s
25:	learn: 29.5185440	total: 533ms	remaining: 3.56s
26:	learn: 29.1325379	total: 554ms	remaining: 3.55s
27:	learn: 28.8194880	total: 575ms	remaining: 3.53s
28:	learn: 28.2457676	total: 606ms	remaining: 3.57s
29:	learn: 27.8248381	total: 629ms	remaining: 3.57s
30:	learn: 27.4206428	total: 651ms	remaining: 3.55s
31:	learn: 26.9688365	total: 673ms	remaining: 3.53s
32:	learn: 26.6098298	total: 696ms	remaining: 3.52s
33:	learn: 26.0979119	total: 716ms	remaining: 3.5s
34:	learn: 25.7628382	total: 737ms	remaining: 3.47s
35:	learn: 25.4503633	total: 757ms	remaining: 3.45s
36:	learn: 25.1459394	total: 779ms	remaining: 3.43s
37:	learn: 24.8310510	total: 802ms	remaining: 3.42s
38:	learn: 24.5019544	total: 827ms	remaining: 3.41s
39:	learn: 24.1193536	total: 846ms	remaining: 3.38s
40:	learn: 23.8351675	total: 865ms	remaining: 3.35s
41:	learn: 23.5419329	total: 883ms	remaining: 3.32s
42:	learn: 23.2736224	total: 901ms	remaining: 3.29s
43:	learn: 23.0174601	total: 921ms	remaining: 3.26s
44:	learn: 22.7145721	total: 940ms	remaining: 3.24s
45:	learn: 22.4737593	total: 961ms	remaining: 3.22s
46:	learn: 22.1964499	total: 980ms	remaining: 3.19s
47:	learn: 21.9273921	total: 1s	remaining: 3.17s
48:	learn: 21.6532339	total: 1.02s	remaining: 3.15s
49:	learn: 21.3297885	total: 1.05s	remaining: 3.16s
50:	learn: 21.1049787	total: 1.07s	remaining: 3.14s
51:	learn: 20.9509899	total: 1.09s	remaining: 3.12s
52:	learn: 20.7119187	total: 1.12s	remaining: 3.1s
53:	learn: 20.4608975	total: 1.14s	remaining: 3.08s
54:	learn: 20.2456983	total: 1.16s	remaining: 3.05s
55:	learn: 20.0181848	total: 1.18s	remaining: 3.03s
56:	learn: 19.8324126	total: 1.18s	remaining: 2.96s
57:	learn: 19.6043971	total: 1.21s	remaining: 2.95s
58:	learn: 19.4054712	total: 1.23s	remaining: 2.93s
59:	learn: 19.2208737	total: 1.25s	remaining: 2.91s
60:	learn: 19.0690326	total: 1.26s	remaining: 2.88s
61:	learn: 18.8243788	total: 1.28s	remaining: 2.86s
62:	learn: 18.6625426	total: 1.31s	remaining: 2.85s
63:	learn: 18.5435992	total: 1.33s	remaining: 2.83s
64:	learn: 18.3580575	total: 1.35s	remaining: 2.81s
65:	learn: 18.2180113	total: 1.38s	remaining: 2.79s
66:	learn: 18.0592330	total: 1.4s	remaining: 2.78s
67:	learn: 17.8657351	total: 1.42s	remaining: 2.76s
68:	learn: 17.7056637	total: 1.45s	remaining: 2.75s
69:	learn: 17.5530012	total: 1.48s	remaining: 2.74s
70:	learn: 17.3253539	total: 1.5s	remaining: 2.73s
71:	learn: 17.1678051	total: 1.52s	remaining: 2.71s
72:	learn: 17.0772983	total: 1.55s	remaining: 2.69s
73:	learn: 16.9029188	total: 1.57s	remaining: 2.67s
74:	learn: 16.7184145	total: 1.59s	remaining: 2.65s
75:	learn: 16.6277772	total: 1.61s	remaining: 2.63s
76:	learn: 16.4736973	total: 1.63s	remaining: 2.6s
77:	learn: 16.3110197	total: 1.65s	remaining: 2.58s
78:	learn: 16.2013306	total: 1.68s	remaining: 2.57s
79:	learn: 16.0773253	total: 1.7s	remaining: 2.55s
80:	learn: 15.9767004	total: 1.72s	remaining: 2.53s
81:	learn: 15.8505072	total: 1.74s	remaining: 2.51s
82:	learn: 15.7325434	total: 1.76s	remaining: 2.48s
83:	learn: 15.6079941	total: 1.78s	remaining: 2.46s
84:	learn: 15.4640876	total: 1.8s	remaining: 2.44s
85:	learn: 15.3186379	total: 1.82s	remaining: 2.41s
86:	learn: 15.2243889	total: 1.84s	remaining: 2.39s
87:	learn: 15.1521861	total: 1.86s	remaining: 2.37s
88:	learn: 15.0102313	total: 1.89s	remaining: 2.35s
89:	learn: 14.9033387	total: 1.91s	remaining: 2.34s
90:	learn: 14.7499627	total: 1.94s	remaining: 2.32s
91:	learn: 14.5773387	total: 1.96s	remaining: 2.3s
92:	learn: 14.5036877	total: 1.98s	remaining: 2.28s
93:	learn: 14.3848877	total: 2.01s	remaining: 2.26s
94:	learn: 14.3146248	total: 2.03s	remaining: 2.24s
95:	learn: 14.2028225	total: 2.05s	remaining: 2.22s
96:	learn: 14.1210694	total: 2.07s	remaining: 2.2s
97:	learn: 13.9922309	total: 2.09s	remaining: 2.18s
98:	learn: 13.9278869	total: 2.12s	remaining: 2.17s
99:	learn: 13.8722336	total: 2.15s	remaining: 2.15s
100:	learn: 13.8027312	total: 2.16s	remaining: 2.12s
101:	learn: 13.6955150	total: 2.18s	remaining: 2.1s
102:	learn: 13.6249600	total: 2.21s	remaining: 2.08s
103:	learn: 13.5387957	total: 2.23s	remaining: 2.05s
104:	learn: 13.4952931	total: 2.25s	remaining: 2.03s
105:	learn: 13.3809253	total: 2.27s	remaining: 2.01s
106:	learn: 13.2936050	total: 2.28s	remaining: 1.99s
107:	learn: 13.2190146	total: 2.31s	remaining: 1.96s
108:	learn: 13.1176305	total: 2.33s	remaining: 1.94s
109:	learn: 12.9918546	total: 2.35s	remaining: 1.93s
110:	learn: 12.9217870	total: 2.38s	remaining: 1.91s
111:	learn: 12.8560371	total: 2.4s	remaining: 1.89s
112:	learn: 12.7830178	total: 2.42s	remaining: 1.86s
113:	learn: 12.7089425	total: 2.44s	remaining: 1.84s
114:	learn: 12.6183965	total: 2.46s	remaining: 1.82s
115:	learn: 12.5248959	total: 2.48s	remaining: 1.8s
116:	learn: 12.4473869	total: 2.5s	remaining: 1.78s
117:	learn: 12.3691451	total: 2.52s	remaining: 1.75s
118:	learn: 12.2780346	total: 2.54s	remaining: 1.73s
119:	learn: 12.1932999	total: 2.57s	remaining: 1.72s
120:	learn: 12.1292305	total: 2.59s	remaining: 1.69s
121:	learn: 12.0738894	total: 2.62s	remaining: 1.67s
122:	learn: 12.0131256	total: 2.64s	remaining: 1.65s
123:	learn: 11.9163924	total: 2.66s	remaining: 1.63s
124:	learn: 11.8342851	total: 2.68s	remaining: 1.61s
125:	learn: 11.7574444	total: 2.7s	remaining: 1.58s
126:	learn: 11.6909809	total: 2.72s	remaining: 1.56s
127:	learn: 11.6349840	total: 2.74s	remaining: 1.54s
128:	learn: 11.5534164	total: 2.76s	remaining: 1.52s
129:	learn: 11.4769774	total: 2.79s	remaining: 1.5s
130:	learn: 11.4293194	total: 2.82s	remaining: 1.48s
131:	learn: 11.3392710	total: 2.84s	remaining: 1.46s
132:	learn: 11.3020809	total: 2.86s	remaining: 1.44s
133:	learn: 11.2458141	total: 2.89s	remaining: 1.42s
134:	learn: 11.1780043	total: 2.9s	remaining: 1.4s
135:	learn: 11.1094892	total: 2.92s	remaining: 1.38s
136:	learn: 11.0482317	total: 2.94s	remaining: 1.35s
137:	learn: 10.9928609	total: 2.97s	remaining: 1.33s
138:	learn: 10.8782641	total: 3s	remaining: 1.31s
139:	learn: 10.8068918	total: 3.02s	remaining: 1.29s
140:	learn: 10.7281707	total: 3.04s	remaining: 1.27s
141:	learn: 10.6630047	total: 3.06s	remaining: 1.25s
142:	learn: 10.5820619	total: 3.08s	remaining: 1.23s
143:	learn: 10.5275719	total: 3.1s	remaining: 1.2s
144:	learn: 10.4536775	total: 3.12s	remaining: 1.18s
145:	learn: 10.3667297	total: 3.14s	remaining: 1.16s
146:	learn: 10.3113645	total: 3.16s	remaining: 1.14s
147:	learn: 10.2506720	total: 3.18s	remaining: 1.12s
148:	learn: 10.1815199	total: 3.2s	remaining: 1.09s
149:	learn: 10.1210630	total: 3.23s	remaining: 1.08s
150:	learn: 10.0607434	total: 3.26s	remaining: 1.06s
151:	learn: 9.9682935	total: 3.28s	remaining: 1.03s
152:	learn: 9.9258231	total: 3.3s	remaining: 1.01s
153:	learn: 9.8508685	total: 3.32s	remaining: 993ms
154:	learn: 9.7974763	total: 3.35s	remaining: 971ms
155:	learn: 9.7046997	total: 3.36s	remaining: 949ms
156:	learn: 9.6517521	total: 3.38s	remaining: 927ms
157:	learn: 9.5843511	total: 3.41s	remaining: 906ms
158:	learn: 9.5317124	total: 3.43s	remaining: 885ms
159:	learn: 9.4685152	total: 3.46s	remaining: 864ms
160:	learn: 9.4073484	total: 3.48s	remaining: 842ms
161:	learn: 9.3415358	total: 3.5s	remaining: 820ms
162:	learn: 9.2764418	total: 3.52s	remaining: 799ms
163:	learn: 9.2262344	total: 3.54s	remaining: 776ms
164:	learn: 9.1727385	total: 3.56s	remaining: 754ms
165:	learn: 9.0916817	total: 3.57s	remaining: 732ms
166:	learn: 9.0352255	total: 3.59s	remaining: 710ms
167:	learn: 8.9925762	total: 3.61s	remaining: 688ms
168:	learn: 8.9189665	total: 3.63s	remaining: 667ms
169:	learn: 8.8561510	total: 3.66s	remaining: 647ms
170:	learn: 8.8061101	total: 3.69s	remaining: 626ms
171:	learn: 8.7678736	total: 3.71s	remaining: 604ms
172:	learn: 8.7029468	total: 3.73s	remaining: 583ms
173:	learn: 8.6743446	total: 3.76s	remaining: 561ms
174:	learn: 8.6205771	total: 3.77s	remaining: 539ms
175:	learn: 8.5820649	total: 3.79s	remaining: 517ms
176:	learn: 8.5354484	total: 3.81s	remaining: 496ms
177:	learn: 8.5203645	total: 3.83s	remaining: 474ms
178:	learn: 8.4300845	total: 3.85s	remaining: 452ms
179:	learn: 8.3630891	total: 3.88s	remaining: 432ms
180:	learn: 8.3212146	total: 3.9s	remaining: 410ms
181:	learn: 8.2791743	total: 3.92s	remaining: 388ms
182:	learn: 8.2274885	total: 3.94s	remaining: 366ms
183:	learn: 8.1885224	total: 3.96s	remaining: 344ms
184:	learn: 8.1605467	total: 3.98s	remaining: 323ms
185:	learn: 8.1027759	total: 4s	remaining: 301ms
186:	learn: 8.0660143	total: 4.01s	remaining: 279ms
187:	learn: 8.0160573	total: 4.03s	remaining: 257ms
188:	learn: 7.9740032	total: 4.05s	remaining: 236ms
189:	learn: 7.8893524	total: 4.07s	remaining: 214ms
190:	learn: 7.8399096	total: 4.1s	remaining: 193ms
191:	learn: 7.8154601	total: 4.13s	remaining: 172ms
192:	learn: 7.7535369	total: 4.15s	remaining: 150ms
193:	learn: 7.7158570	total: 4.17s	remaining: 129ms
194:	learn: 7.6598850	total: 4.19s	remaining: 107ms
195:	learn: 7.6170092	total: 4.21s	remaining: 85.9ms
196:	learn: 7.5574492	total: 4.23s	remaining: 64.4ms
197:	learn: 7.5095826	total: 4.25s	remaining: 42.9ms
198:	learn: 7.4636116	total: 4.27s	remaining: 21.4ms
199:	learn: 7.4101012	total: 4.29s	remaining: 0us
0:	learn: 27.5467896	total: 18.2ms	remaining: 3.62s
1:	learn: 27.0680701	total: 36.4ms	remaining: 3.61s
2:	learn: 26.5343560	total: 55.6ms	remaining: 3.65s
3:	learn: 26.1627388	total: 74.5ms	remaining: 3.65s
4:	learn: 25.6788161	total: 93.1ms	remaining: 3.63s
5:	learn: 25.1796993	total: 113ms	remaining: 3.66s
6:	learn: 24.7618861	total: 134ms	remaining: 3.69s
7:	learn: 24.4052648	total: 153ms	remaining: 3.67s
8:	learn: 24.0145743	total: 182ms	remaining: 3.87s
9:	learn: 23.6326509	total: 206ms	remaining: 3.91s
10:	learn: 23.1980803	total: 229ms	remaining: 3.93s
11:	learn: 22.8128450	total: 251ms	remaining: 3.92s
12:	learn: 22.4543181	total: 270ms	remaining: 3.88s
13:	learn: 22.0627490	total: 291ms	remaining: 3.86s
14:	learn: 21.7356381	total: 311ms	remaining: 3.84s
15:	learn: 21.3576528	total: 331ms	remaining: 3.81s
16:	learn: 20.9953639	total: 354ms	remaining: 3.81s
17:	learn: 20.7418953	total: 376ms	remaining: 3.8s
18:	learn: 20.4337246	total: 402ms	remaining: 3.83s
19:	learn: 20.1184543	total: 423ms	remaining: 3.81s
20:	learn: 19.7611211	total: 442ms	remaining: 3.76s
21:	learn: 19.4769044	total: 462ms	remaining: 3.74s
22:	learn: 19.2318989	total: 481ms	remaining: 3.7s
23:	learn: 19.0476159	total: 499ms	remaining: 3.66s
24:	learn: 18.8122256	total: 519ms	remaining: 3.63s
25:	learn: 18.5633342	total: 538ms	remaining: 3.6s
26:	learn: 18.3169243	total: 540ms	remaining: 3.46s
27:	learn: 18.0627337	total: 561ms	remaining: 3.44s
28:	learn: 17.8964068	total: 589ms	remaining: 3.47s
29:	learn: 17.6413721	total: 611ms	remaining: 3.46s
30:	learn: 17.4074030	total: 633ms	remaining: 3.45s
31:	learn: 17.1741331	total: 655ms	remaining: 3.44s
32:	learn: 16.9719203	total: 678ms	remaining: 3.43s
33:	learn: 16.7768268	total: 698ms	remaining: 3.41s
34:	learn: 16.5620878	total: 721ms	remaining: 3.4s
35:	learn: 16.3185355	total: 739ms	remaining: 3.37s
36:	learn: 16.1033868	total: 760ms	remaining: 3.35s
37:	learn: 15.9374702	total: 781ms	remaining: 3.33s
38:	learn: 15.7558907	total: 802ms	remaining: 3.31s
39:	learn: 15.6093227	total: 830ms	remaining: 3.32s
40:	learn: 15.3807433	total: 850ms	remaining: 3.3s
41:	learn: 15.2247737	total: 881ms	remaining: 3.31s
42:	learn: 14.9806114	total: 904ms	remaining: 3.3s
43:	learn: 14.8223122	total: 925ms	remaining: 3.28s
44:	learn: 14.6807973	total: 947ms	remaining: 3.26s
45:	learn: 14.5522845	total: 969ms	remaining: 3.25s
46:	learn: 14.4107984	total: 992ms	remaining: 3.23s
47:	learn: 14.2989274	total: 1.01s	remaining: 3.21s
48:	learn: 14.1243557	total: 1.05s	remaining: 3.23s
49:	learn: 13.9822596	total: 1.07s	remaining: 3.23s
50:	learn: 13.8563717	total: 1.1s	remaining: 3.21s
51:	learn: 13.7197225	total: 1.12s	remaining: 3.2s
52:	learn: 13.5869165	total: 1.16s	remaining: 3.2s
53:	learn: 13.4282146	total: 1.18s	remaining: 3.18s
54:	learn: 13.3080783	total: 1.2s	remaining: 3.16s
55:	learn: 13.1757199	total: 1.22s	remaining: 3.14s
56:	learn: 13.0890522	total: 1.25s	remaining: 3.13s
57:	learn: 12.9693334	total: 1.27s	remaining: 3.12s
58:	learn: 12.8656736	total: 1.29s	remaining: 3.1s
59:	learn: 12.7624851	total: 1.32s	remaining: 3.08s
60:	learn: 12.6429258	total: 1.34s	remaining: 3.06s
61:	learn: 12.5474728	total: 1.36s	remaining: 3.03s
62:	learn: 12.4375178	total: 1.39s	remaining: 3.03s
63:	learn: 12.3337549	total: 1.42s	remaining: 3.01s
64:	learn: 12.2208696	total: 1.44s	remaining: 2.99s
65:	learn: 12.1041855	total: 1.47s	remaining: 2.97s
66:	learn: 11.9934935	total: 1.5s	remaining: 2.97s
67:	learn: 11.8755104	total: 1.52s	remaining: 2.95s
68:	learn: 11.7732877	total: 1.54s	remaining: 2.93s
69:	learn: 11.6837172	total: 1.57s	remaining: 2.91s
70:	learn: 11.5919175	total: 1.59s	remaining: 2.89s
71:	learn: 11.5071758	total: 1.61s	remaining: 2.87s
72:	learn: 11.4473042	total: 1.63s	remaining: 2.84s
73:	learn: 11.3506919	total: 1.66s	remaining: 2.83s
74:	learn: 11.2483249	total: 1.69s	remaining: 2.81s
75:	learn: 11.1913605	total: 1.71s	remaining: 2.8s
76:	learn: 11.1043267	total: 1.74s	remaining: 2.77s
77:	learn: 11.0063168	total: 1.76s	remaining: 2.75s
78:	learn: 10.9254796	total: 1.78s	remaining: 2.73s
79:	learn: 10.8263071	total: 1.8s	remaining: 2.7s
80:	learn: 10.7531059	total: 1.82s	remaining: 2.68s
81:	learn: 10.6896768	total: 1.84s	remaining: 2.65s
82:	learn: 10.6034681	total: 1.86s	remaining: 2.63s
83:	learn: 10.5159133	total: 1.89s	remaining: 2.62s
84:	learn: 10.4434563	total: 1.93s	remaining: 2.6s
85:	learn: 10.3709079	total: 1.95s	remaining: 2.59s
86:	learn: 10.3061829	total: 1.98s	remaining: 2.56s
87:	learn: 10.2608132	total: 2s	remaining: 2.55s
88:	learn: 10.1736338	total: 2.02s	remaining: 2.52s
89:	learn: 10.0885012	total: 2.04s	remaining: 2.5s
90:	learn: 10.0337309	total: 2.07s	remaining: 2.48s
91:	learn: 9.9758392	total: 2.09s	remaining: 2.45s
92:	learn: 9.8870117	total: 2.11s	remaining: 2.43s
93:	learn: 9.8077732	total: 2.14s	remaining: 2.41s
94:	learn: 9.7135409	total: 2.17s	remaining: 2.4s
95:	learn: 9.6341854	total: 2.19s	remaining: 2.38s
96:	learn: 9.5790423	total: 2.21s	remaining: 2.35s
97:	learn: 9.5158535	total: 2.24s	remaining: 2.33s
98:	learn: 9.4707296	total: 2.26s	remaining: 2.31s
99:	learn: 9.3997718	total: 2.28s	remaining: 2.28s
100:	learn: 9.3300948	total: 2.3s	remaining: 2.26s
101:	learn: 9.2678794	total: 2.33s	remaining: 2.24s
102:	learn: 9.2135445	total: 2.36s	remaining: 2.22s
103:	learn: 9.1774382	total: 2.39s	remaining: 2.2s
104:	learn: 9.1411747	total: 2.42s	remaining: 2.19s
105:	learn: 9.0714633	total: 2.44s	remaining: 2.17s
106:	learn: 9.0283498	total: 2.47s	remaining: 2.14s
107:	learn: 8.9822832	total: 2.49s	remaining: 2.12s
108:	learn: 8.9269786	total: 2.51s	remaining: 2.1s
109:	learn: 8.8844134	total: 2.54s	remaining: 2.08s
110:	learn: 8.8411557	total: 2.57s	remaining: 2.06s
111:	learn: 8.7949992	total: 2.59s	remaining: 2.04s
112:	learn: 8.7541601	total: 2.62s	remaining: 2.01s
113:	learn: 8.6903414	total: 2.64s	remaining: 1.99s
114:	learn: 8.6334340	total: 2.67s	remaining: 1.98s
115:	learn: 8.5733848	total: 2.69s	remaining: 1.95s
116:	learn: 8.5233612	total: 2.72s	remaining: 1.93s
117:	learn: 8.4557467	total: 2.74s	remaining: 1.9s
118:	learn: 8.4074673	total: 2.77s	remaining: 1.88s
119:	learn: 8.3462613	total: 2.79s	remaining: 1.86s
120:	learn: 8.3116172	total: 2.81s	remaining: 1.84s
121:	learn: 8.2772734	total: 2.83s	remaining: 1.81s
122:	learn: 8.2399615	total: 2.86s	remaining: 1.79s
123:	learn: 8.1899492	total: 2.88s	remaining: 1.76s
124:	learn: 8.1399508	total: 2.9s	remaining: 1.74s
125:	learn: 8.0974791	total: 2.93s	remaining: 1.72s
126:	learn: 8.0439068	total: 2.95s	remaining: 1.7s
127:	learn: 8.0011231	total: 2.98s	remaining: 1.68s
128:	learn: 7.9648000	total: 3.01s	remaining: 1.65s
129:	learn: 7.9205463	total: 3.03s	remaining: 1.63s
130:	learn: 7.8861918	total: 3.05s	remaining: 1.61s
131:	learn: 7.8426734	total: 3.08s	remaining: 1.58s
132:	learn: 7.7808473	total: 3.1s	remaining: 1.56s
133:	learn: 7.7588830	total: 3.12s	remaining: 1.54s
134:	learn: 7.7208354	total: 3.14s	remaining: 1.51s
135:	learn: 7.6832009	total: 3.18s	remaining: 1.49s
136:	learn: 7.6489816	total: 3.2s	remaining: 1.47s
137:	learn: 7.6052064	total: 3.22s	remaining: 1.45s
138:	learn: 7.5767556	total: 3.24s	remaining: 1.42s
139:	learn: 7.5423647	total: 3.26s	remaining: 1.4s
140:	learn: 7.4910023	total: 3.28s	remaining: 1.37s
141:	learn: 7.4482152	total: 3.31s	remaining: 1.35s
142:	learn: 7.4290249	total: 3.33s	remaining: 1.33s
143:	learn: 7.3787224	total: 3.35s	remaining: 1.3s
144:	learn: 7.3310921	total: 3.38s	remaining: 1.28s
145:	learn: 7.2685836	total: 3.41s	remaining: 1.26s
146:	learn: 7.2367369	total: 3.44s	remaining: 1.24s
147:	learn: 7.2039225	total: 3.47s	remaining: 1.22s
148:	learn: 7.1552420	total: 3.49s	remaining: 1.2s
149:	learn: 7.1200744	total: 3.52s	remaining: 1.17s
150:	learn: 7.0709170	total: 3.54s	remaining: 1.15s
151:	learn: 7.0316433	total: 3.57s	remaining: 1.13s
152:	learn: 6.9976068	total: 3.59s	remaining: 1.1s
153:	learn: 6.9549446	total: 3.62s	remaining: 1.08s
154:	learn: 6.9117671	total: 3.64s	remaining: 1.06s
155:	learn: 6.8678412	total: 3.66s	remaining: 1.03s
156:	learn: 6.8352541	total: 3.69s	remaining: 1.01s
157:	learn: 6.8079569	total: 3.71s	remaining: 988ms
158:	learn: 6.7753416	total: 3.74s	remaining: 964ms
159:	learn: 6.7536850	total: 3.76s	remaining: 940ms
160:	learn: 6.7205643	total: 3.78s	remaining: 916ms
161:	learn: 6.6790291	total: 3.8s	remaining: 892ms
162:	learn: 6.6489125	total: 3.83s	remaining: 869ms
163:	learn: 6.6243412	total: 3.86s	remaining: 847ms
164:	learn: 6.5849298	total: 3.88s	remaining: 824ms
165:	learn: 6.5695704	total: 3.91s	remaining: 801ms
166:	learn: 6.5349747	total: 3.93s	remaining: 777ms
167:	learn: 6.4871810	total: 3.97s	remaining: 756ms
168:	learn: 6.4496084	total: 3.99s	remaining: 732ms
169:	learn: 6.4137654	total: 4.01s	remaining: 708ms
170:	learn: 6.3728109	total: 4.04s	remaining: 685ms
171:	learn: 6.3306392	total: 4.07s	remaining: 662ms
172:	learn: 6.2990104	total: 4.09s	remaining: 639ms
173:	learn: 6.2837204	total: 4.11s	remaining: 615ms
174:	learn: 6.2433465	total: 4.13s	remaining: 591ms
175:	learn: 6.2145328	total: 4.16s	remaining: 567ms
176:	learn: 6.1721908	total: 4.18s	remaining: 543ms
177:	learn: 6.1380169	total: 4.21s	remaining: 520ms
178:	learn: 6.1017656	total: 4.23s	remaining: 496ms
179:	learn: 6.0626665	total: 4.25s	remaining: 472ms
180:	learn: 6.0461952	total: 4.27s	remaining: 449ms
181:	learn: 6.0172697	total: 4.31s	remaining: 426ms
182:	learn: 5.9856992	total: 4.33s	remaining: 403ms
183:	learn: 5.9478487	total: 4.36s	remaining: 379ms
184:	learn: 5.9081783	total: 4.38s	remaining: 355ms
185:	learn: 5.8851916	total: 4.4s	remaining: 332ms
186:	learn: 5.8517386	total: 4.43s	remaining: 308ms
187:	learn: 5.8285753	total: 4.46s	remaining: 285ms
188:	learn: 5.7940926	total: 4.49s	remaining: 261ms
189:	learn: 5.7659749	total: 4.51s	remaining: 238ms
190:	learn: 5.7478550	total: 4.53s	remaining: 214ms
191:	learn: 5.7215872	total: 4.56s	remaining: 190ms
192:	learn: 5.6855264	total: 4.58s	remaining: 166ms
193:	learn: 5.6500976	total: 4.6s	remaining: 142ms
194:	learn: 5.6095973	total: 4.62s	remaining: 119ms
195:	learn: 5.5759839	total: 4.64s	remaining: 94.8ms
196:	learn: 5.5501497	total: 4.67s	remaining: 71.1ms
197:	learn: 5.5125773	total: 4.69s	remaining: 47.4ms
198:	learn: 5.4735750	total: 4.71s	remaining: 23.7ms
199:	learn: 5.4583140	total: 4.74s	remaining: 0us
0:	learn: 42.9926207	total: 20.7ms	remaining: 4.11s
1:	learn: 41.9318955	total: 39.6ms	remaining: 3.92s
2:	learn: 41.0022152	total: 61.2ms	remaining: 4.02s
3:	learn: 40.1316455	total: 82ms	remaining: 4.02s
4:	learn: 39.3025337	total: 104ms	remaining: 4.07s
5:	learn: 38.2742529	total: 131ms	remaining: 4.24s
6:	learn: 37.3862274	total: 155ms	remaining: 4.27s
7:	learn: 36.4195721	total: 174ms	remaining: 4.18s
8:	learn: 35.7209650	total: 194ms	remaining: 4.11s
9:	learn: 34.8505622	total: 213ms	remaining: 4.05s
10:	learn: 34.0461426	total: 233ms	remaining: 4s
11:	learn: 33.3894212	total: 253ms	remaining: 3.96s
12:	learn: 32.5545835	total: 272ms	remaining: 3.91s
13:	learn: 31.7211463	total: 291ms	remaining: 3.87s
14:	learn: 31.0440401	total: 314ms	remaining: 3.87s
15:	learn: 30.3845013	total: 335ms	remaining: 3.85s
16:	learn: 29.8020882	total: 368ms	remaining: 3.96s
17:	learn: 29.2132262	total: 392ms	remaining: 3.96s
18:	learn: 28.5262512	total: 413ms	remaining: 3.93s
19:	learn: 27.8276439	total: 436ms	remaining: 3.92s
20:	learn: 27.2324195	total: 459ms	remaining: 3.91s
21:	learn: 26.7543625	total: 481ms	remaining: 3.89s
22:	learn: 26.3175298	total: 503ms	remaining: 3.87s
23:	learn: 25.8967125	total: 526ms	remaining: 3.85s
24:	learn: 25.3222501	total: 547ms	remaining: 3.83s
25:	learn: 24.8107258	total: 575ms	remaining: 3.85s
26:	learn: 24.3897671	total: 579ms	remaining: 3.71s
27:	learn: 23.9914208	total: 600ms	remaining: 3.69s
28:	learn: 23.5529513	total: 622ms	remaining: 3.67s
29:	learn: 23.1877842	total: 643ms	remaining: 3.65s
30:	learn: 22.8394086	total: 664ms	remaining: 3.62s
31:	learn: 22.4793141	total: 683ms	remaining: 3.59s
32:	learn: 22.1926518	total: 703ms	remaining: 3.56s
33:	learn: 21.8606860	total: 726ms	remaining: 3.54s
34:	learn: 21.4947094	total: 748ms	remaining: 3.53s
35:	learn: 21.1482380	total: 776ms	remaining: 3.54s
36:	learn: 20.8239544	total: 802ms	remaining: 3.53s
37:	learn: 20.5150933	total: 825ms	remaining: 3.52s
38:	learn: 20.1599880	total: 848ms	remaining: 3.5s
39:	learn: 19.8759507	total: 869ms	remaining: 3.47s
40:	learn: 19.5853513	total: 881ms	remaining: 3.42s
41:	learn: 19.4990617	total: 885ms	remaining: 3.33s
42:	learn: 19.2904285	total: 906ms	remaining: 3.31s
43:	learn: 19.0060840	total: 927ms	remaining: 3.29s
44:	learn: 18.7979613	total: 949ms	remaining: 3.27s
45:	learn: 18.5730707	total: 976ms	remaining: 3.27s
46:	learn: 18.3768212	total: 1s	remaining: 3.25s
47:	learn: 18.1147100	total: 1.02s	remaining: 3.23s
48:	learn: 17.8159562	total: 1.04s	remaining: 3.2s
49:	learn: 17.5839856	total: 1.06s	remaining: 3.18s
50:	learn: 17.4120110	total: 1.08s	remaining: 3.15s
51:	learn: 17.2382256	total: 1.1s	remaining: 3.12s
52:	learn: 17.0121500	total: 1.12s	remaining: 3.1s
53:	learn: 16.7907092	total: 1.14s	remaining: 3.08s
54:	learn: 16.6218039	total: 1.16s	remaining: 3.06s
55:	learn: 16.4327809	total: 1.19s	remaining: 3.06s
56:	learn: 16.2206056	total: 1.21s	remaining: 3.04s
57:	learn: 16.0996886	total: 1.23s	remaining: 3.02s
58:	learn: 15.9136733	total: 1.26s	remaining: 3s
59:	learn: 15.7543521	total: 1.28s	remaining: 2.98s
60:	learn: 15.5825313	total: 1.3s	remaining: 2.96s
61:	learn: 15.4010722	total: 1.32s	remaining: 2.94s
62:	learn: 15.2435421	total: 1.34s	remaining: 2.91s
63:	learn: 15.1051044	total: 1.36s	remaining: 2.89s
64:	learn: 14.9539750	total: 1.39s	remaining: 2.89s
65:	learn: 14.8213115	total: 1.42s	remaining: 2.87s
66:	learn: 14.7224184	total: 1.44s	remaining: 2.85s
67:	learn: 14.5238762	total: 1.45s	remaining: 2.82s
68:	learn: 14.3254679	total: 1.48s	remaining: 2.8s
69:	learn: 14.2246196	total: 1.5s	remaining: 2.78s
70:	learn: 14.0666647	total: 1.52s	remaining: 2.75s
71:	learn: 13.9605706	total: 1.54s	remaining: 2.73s
72:	learn: 13.8507597	total: 1.56s	remaining: 2.71s
73:	learn: 13.7339190	total: 1.58s	remaining: 2.69s
74:	learn: 13.6863761	total: 1.61s	remaining: 2.68s
75:	learn: 13.5658578	total: 1.63s	remaining: 2.66s
76:	learn: 13.4554508	total: 1.65s	remaining: 2.64s
77:	learn: 13.3644073	total: 1.68s	remaining: 2.62s
78:	learn: 13.2572594	total: 1.7s	remaining: 2.6s
79:	learn: 13.1701563	total: 1.72s	remaining: 2.58s
80:	learn: 13.0640002	total: 1.74s	remaining: 2.56s
81:	learn: 12.9526375	total: 1.76s	remaining: 2.54s
82:	learn: 12.8448135	total: 1.78s	remaining: 2.52s
83:	learn: 12.7231228	total: 1.81s	remaining: 2.49s
84:	learn: 12.5890300	total: 1.83s	remaining: 2.48s
85:	learn: 12.4491533	total: 1.86s	remaining: 2.46s
86:	learn: 12.3145494	total: 1.88s	remaining: 2.44s
87:	learn: 12.2535348	total: 1.9s	remaining: 2.42s
88:	learn: 12.1984046	total: 1.92s	remaining: 2.39s
89:	learn: 12.1604813	total: 1.94s	remaining: 2.37s
90:	learn: 12.0643817	total: 1.96s	remaining: 2.34s
91:	learn: 11.9715230	total: 1.98s	remaining: 2.32s
92:	learn: 11.8696994	total: 2s	remaining: 2.3s
93:	learn: 11.7765073	total: 2.02s	remaining: 2.27s
94:	learn: 11.6783712	total: 2.05s	remaining: 2.26s
95:	learn: 11.6258045	total: 2.07s	remaining: 2.24s
96:	learn: 11.5262897	total: 2.09s	remaining: 2.22s
97:	learn: 11.4355051	total: 2.11s	remaining: 2.2s
98:	learn: 11.3469700	total: 2.13s	remaining: 2.18s
99:	learn: 11.2812844	total: 2.15s	remaining: 2.15s
100:	learn: 11.1926035	total: 2.17s	remaining: 2.13s
101:	learn: 11.1280192	total: 2.19s	remaining: 2.1s
102:	learn: 11.0508229	total: 2.21s	remaining: 2.08s
103:	learn: 10.9804462	total: 2.23s	remaining: 2.06s
104:	learn: 10.9152956	total: 2.26s	remaining: 2.04s
105:	learn: 10.8365067	total: 2.28s	remaining: 2.02s
106:	learn: 10.7817140	total: 2.3s	remaining: 2s
107:	learn: 10.7059777	total: 2.32s	remaining: 1.97s
108:	learn: 10.6260340	total: 2.34s	remaining: 1.95s
109:	learn: 10.5423564	total: 2.35s	remaining: 1.93s
110:	learn: 10.4989232	total: 2.37s	remaining: 1.9s
111:	learn: 10.4467606	total: 2.39s	remaining: 1.88s
112:	learn: 10.3685116	total: 2.41s	remaining: 1.86s
113:	learn: 10.2865937	total: 2.43s	remaining: 1.83s
114:	learn: 10.2296268	total: 2.45s	remaining: 1.81s
115:	learn: 10.1906427	total: 2.48s	remaining: 1.8s
116:	learn: 10.1437775	total: 2.51s	remaining: 1.78s
117:	learn: 10.1028189	total: 2.53s	remaining: 1.76s
118:	learn: 10.0453078	total: 2.55s	remaining: 1.74s
119:	learn: 9.9973288	total: 2.57s	remaining: 1.72s
120:	learn: 9.9355459	total: 2.59s	remaining: 1.69s
121:	learn: 9.8840000	total: 2.61s	remaining: 1.67s
122:	learn: 9.8637795	total: 2.63s	remaining: 1.65s
123:	learn: 9.7998368	total: 2.66s	remaining: 1.63s
124:	learn: 9.7120051	total: 2.68s	remaining: 1.61s
125:	learn: 9.6436634	total: 2.7s	remaining: 1.59s
126:	learn: 9.5903060	total: 2.72s	remaining: 1.56s
127:	learn: 9.5239998	total: 2.74s	remaining: 1.54s
128:	learn: 9.4706107	total: 2.76s	remaining: 1.52s
129:	learn: 9.4243350	total: 2.78s	remaining: 1.5s
130:	learn: 9.3771981	total: 2.8s	remaining: 1.48s
131:	learn: 9.3319455	total: 2.82s	remaining: 1.45s
132:	learn: 9.2589088	total: 2.84s	remaining: 1.43s
133:	learn: 9.2312438	total: 2.86s	remaining: 1.41s
134:	learn: 9.1832306	total: 2.88s	remaining: 1.39s
135:	learn: 9.1377444	total: 2.91s	remaining: 1.37s
136:	learn: 9.0988463	total: 2.93s	remaining: 1.35s
137:	learn: 9.0534782	total: 2.96s	remaining: 1.33s
138:	learn: 8.9848070	total: 2.98s	remaining: 1.31s
139:	learn: 8.9497061	total: 3s	remaining: 1.28s
140:	learn: 8.9258905	total: 3.02s	remaining: 1.26s
141:	learn: 8.8715435	total: 3.04s	remaining: 1.24s
142:	learn: 8.8316763	total: 3.06s	remaining: 1.22s
143:	learn: 8.7590092	total: 3.08s	remaining: 1.2s
144:	learn: 8.7249757	total: 3.1s	remaining: 1.18s
145:	learn: 8.6819757	total: 3.13s	remaining: 1.16s
146:	learn: 8.6304476	total: 3.15s	remaining: 1.14s
147:	learn: 8.5640394	total: 3.17s	remaining: 1.11s
148:	learn: 8.5277172	total: 3.19s	remaining: 1.09s
149:	learn: 8.4596322	total: 3.21s	remaining: 1.07s
150:	learn: 8.3992348	total: 3.22s	remaining: 1.05s
151:	learn: 8.3496991	total: 3.24s	remaining: 1.02s
152:	learn: 8.2930953	total: 3.26s	remaining: 1s
153:	learn: 8.2562084	total: 3.28s	remaining: 980ms
154:	learn: 8.2029279	total: 3.3s	remaining: 959ms
155:	learn: 8.1653055	total: 3.33s	remaining: 938ms
156:	learn: 8.1133690	total: 3.35s	remaining: 919ms
157:	learn: 8.0482828	total: 3.38s	remaining: 898ms
158:	learn: 8.0060251	total: 3.4s	remaining: 876ms
159:	learn: 7.9747671	total: 3.42s	remaining: 855ms
160:	learn: 7.9380210	total: 3.44s	remaining: 834ms
161:	learn: 7.8978888	total: 3.46s	remaining: 812ms
162:	learn: 7.8408472	total: 3.49s	remaining: 793ms
163:	learn: 7.8052289	total: 3.52s	remaining: 772ms
164:	learn: 7.7532049	total: 3.54s	remaining: 751ms
165:	learn: 7.7163635	total: 3.57s	remaining: 731ms
166:	learn: 7.6803890	total: 3.59s	remaining: 709ms
167:	learn: 7.6348034	total: 3.61s	remaining: 688ms
168:	learn: 7.5922831	total: 3.63s	remaining: 666ms
169:	learn: 7.5294905	total: 3.65s	remaining: 645ms
170:	learn: 7.5034404	total: 3.67s	remaining: 623ms
171:	learn: 7.4585315	total: 3.69s	remaining: 601ms
172:	learn: 7.3869248	total: 3.72s	remaining: 580ms
173:	learn: 7.3434759	total: 3.74s	remaining: 560ms
174:	learn: 7.2986802	total: 3.77s	remaining: 539ms
175:	learn: 7.2541427	total: 3.8s	remaining: 518ms
176:	learn: 7.2284611	total: 3.83s	remaining: 497ms
177:	learn: 7.1828521	total: 3.85s	remaining: 476ms
178:	learn: 7.1373050	total: 3.87s	remaining: 454ms
179:	learn: 7.1126552	total: 3.9s	remaining: 433ms
180:	learn: 7.0638576	total: 3.92s	remaining: 412ms
181:	learn: 7.0192711	total: 3.94s	remaining: 390ms
182:	learn: 6.9816129	total: 3.96s	remaining: 368ms
183:	learn: 6.9541954	total: 4s	remaining: 348ms
184:	learn: 6.9111408	total: 4.02s	remaining: 326ms
185:	learn: 6.8770181	total: 4.05s	remaining: 305ms
186:	learn: 6.8525387	total: 4.07s	remaining: 283ms
187:	learn: 6.8370868	total: 4.09s	remaining: 261ms
188:	learn: 6.7890843	total: 4.11s	remaining: 239ms
189:	learn: 6.7547976	total: 4.13s	remaining: 218ms
190:	learn: 6.7161335	total: 4.16s	remaining: 196ms
191:	learn: 6.6873604	total: 4.18s	remaining: 174ms
192:	learn: 6.6428130	total: 4.21s	remaining: 153ms
193:	learn: 6.5963180	total: 4.24s	remaining: 131ms
194:	learn: 6.5601136	total: 4.27s	remaining: 109ms
195:	learn: 6.5308359	total: 4.29s	remaining: 87.6ms
196:	learn: 6.5141670	total: 4.32s	remaining: 65.7ms
197:	learn: 6.4694863	total: 4.34s	remaining: 43.8ms
198:	learn: 6.4363955	total: 4.36s	remaining: 21.9ms
199:	learn: 6.3863688	total: 4.38s	remaining: 0us
0:	learn: 46.3266214	total: 23.5ms	remaining: 4.68s
1:	learn: 45.1514312	total: 46.3ms	remaining: 4.58s
2:	learn: 44.1597260	total: 67.5ms	remaining: 4.43s
3:	learn: 43.3312581	total: 90.8ms	remaining: 4.45s
4:	learn: 42.2544790	total: 126ms	remaining: 4.92s
5:	learn: 41.4327745	total: 160ms	remaining: 5.17s
6:	learn: 40.5876528	total: 184ms	remaining: 5.06s
7:	learn: 39.8244581	total: 208ms	remaining: 5s
8:	learn: 39.0259762	total: 232ms	remaining: 4.91s
9:	learn: 38.0775608	total: 255ms	remaining: 4.84s
10:	learn: 37.5303598	total: 278ms	remaining: 4.77s
11:	learn: 36.8182638	total: 302ms	remaining: 4.72s
12:	learn: 36.1926770	total: 327ms	remaining: 4.7s
13:	learn: 35.3678676	total: 359ms	remaining: 4.77s
14:	learn: 34.7135576	total: 384ms	remaining: 4.74s
15:	learn: 34.0868578	total: 415ms	remaining: 4.77s
16:	learn: 33.3917608	total: 436ms	remaining: 4.69s
17:	learn: 32.8468089	total: 456ms	remaining: 4.62s
18:	learn: 32.1641109	total: 477ms	remaining: 4.55s
19:	learn: 31.6438269	total: 500ms	remaining: 4.5s
20:	learn: 31.1283566	total: 524ms	remaining: 4.47s
21:	learn: 30.4995785	total: 554ms	remaining: 4.49s
22:	learn: 30.0052433	total: 583ms	remaining: 4.49s
23:	learn: 29.5387468	total: 607ms	remaining: 4.45s
24:	learn: 29.0769319	total: 632ms	remaining: 4.43s
25:	learn: 28.6815017	total: 666ms	remaining: 4.46s
26:	learn: 28.2580471	total: 687ms	remaining: 4.4s
27:	learn: 27.9023835	total: 708ms	remaining: 4.35s
28:	learn: 27.4643921	total: 732ms	remaining: 4.31s
29:	learn: 27.0297350	total: 756ms	remaining: 4.28s
30:	learn: 26.6109927	total: 785ms	remaining: 4.28s
31:	learn: 26.1717234	total: 807ms	remaining: 4.24s
32:	learn: 25.7657009	total: 828ms	remaining: 4.19s
33:	learn: 25.3655630	total: 849ms	remaining: 4.15s
34:	learn: 24.9552495	total: 871ms	remaining: 4.11s
35:	learn: 24.6587249	total: 901ms	remaining: 4.1s
36:	learn: 24.1629997	total: 921ms	remaining: 4.06s
37:	learn: 23.8708337	total: 943ms	remaining: 4.02s
38:	learn: 23.5244511	total: 973ms	remaining: 4.02s
39:	learn: 23.1849323	total: 1000ms	remaining: 4s
40:	learn: 22.9351049	total: 1.02s	remaining: 3.97s
41:	learn: 22.5277714	total: 1.05s	remaining: 3.95s
42:	learn: 22.2395030	total: 1.07s	remaining: 3.92s
43:	learn: 22.0299814	total: 1.1s	remaining: 3.89s
44:	learn: 21.6885189	total: 1.12s	remaining: 3.86s
45:	learn: 21.3288224	total: 1.14s	remaining: 3.83s
46:	learn: 21.0899946	total: 1.17s	remaining: 3.82s
47:	learn: 20.8247347	total: 1.2s	remaining: 3.81s
48:	learn: 20.5036358	total: 1.23s	remaining: 3.78s
49:	learn: 20.1622332	total: 1.25s	remaining: 3.74s
50:	learn: 19.9564962	total: 1.27s	remaining: 3.71s
51:	learn: 19.7533770	total: 1.29s	remaining: 3.67s
52:	learn: 19.5817440	total: 1.31s	remaining: 3.64s
53:	learn: 19.3640916	total: 1.33s	remaining: 3.6s
54:	learn: 19.2561089	total: 1.35s	remaining: 3.57s
55:	learn: 19.0461047	total: 1.38s	remaining: 3.54s
56:	learn: 18.7888958	total: 1.41s	remaining: 3.54s
57:	learn: 18.5675327	total: 1.44s	remaining: 3.52s
58:	learn: 18.3523517	total: 1.46s	remaining: 3.5s
59:	learn: 18.1831957	total: 1.49s	remaining: 3.47s
60:	learn: 17.9920208	total: 1.51s	remaining: 3.45s
61:	learn: 17.8042217	total: 1.54s	remaining: 3.42s
62:	learn: 17.6855735	total: 1.56s	remaining: 3.4s
63:	learn: 17.4623156	total: 1.59s	remaining: 3.37s
64:	learn: 17.3086540	total: 1.61s	remaining: 3.34s
65:	learn: 17.1005708	total: 1.64s	remaining: 3.33s
66:	learn: 16.9122145	total: 1.66s	remaining: 3.3s
67:	learn: 16.7666446	total: 1.69s	remaining: 3.28s
68:	learn: 16.6234993	total: 1.71s	remaining: 3.25s
69:	learn: 16.4035590	total: 1.74s	remaining: 3.22s
70:	learn: 16.2483077	total: 1.76s	remaining: 3.19s
71:	learn: 16.0606167	total: 1.78s	remaining: 3.16s
72:	learn: 15.9344107	total: 1.8s	remaining: 3.13s
73:	learn: 15.7668192	total: 1.82s	remaining: 3.1s
74:	learn: 15.5833782	total: 1.85s	remaining: 3.09s
75:	learn: 15.4263720	total: 1.88s	remaining: 3.06s
76:	learn: 15.3208364	total: 1.9s	remaining: 3.04s
77:	learn: 15.1982265	total: 1.93s	remaining: 3.02s
78:	learn: 15.0779040	total: 1.96s	remaining: 3s
79:	learn: 14.9608105	total: 1.98s	remaining: 2.97s
80:	learn: 14.7888514	total: 2s	remaining: 2.94s
81:	learn: 14.6665763	total: 2.03s	remaining: 2.92s
82:	learn: 14.5838729	total: 2.05s	remaining: 2.89s
83:	learn: 14.4740569	total: 2.08s	remaining: 2.87s
84:	learn: 14.3288121	total: 2.1s	remaining: 2.84s
85:	learn: 14.2289255	total: 2.12s	remaining: 2.81s
86:	learn: 14.1016858	total: 2.14s	remaining: 2.79s
87:	learn: 13.9584118	total: 2.17s	remaining: 2.75s
88:	learn: 13.8573066	total: 2.19s	remaining: 2.74s
89:	learn: 13.7468438	total: 2.22s	remaining: 2.71s
90:	learn: 13.6485024	total: 2.24s	remaining: 2.68s
91:	learn: 13.5168517	total: 2.26s	remaining: 2.66s
92:	learn: 13.4303631	total: 2.29s	remaining: 2.64s
93:	learn: 13.3104458	total: 2.32s	remaining: 2.62s
94:	learn: 13.2180209	total: 2.34s	remaining: 2.59s
95:	learn: 13.1130752	total: 2.37s	remaining: 2.56s
96:	learn: 12.9990802	total: 2.39s	remaining: 2.54s
97:	learn: 12.9542182	total: 2.41s	remaining: 2.51s
98:	learn: 12.8588744	total: 2.44s	remaining: 2.49s
99:	learn: 12.7258962	total: 2.46s	remaining: 2.46s
100:	learn: 12.6352268	total: 2.49s	remaining: 2.44s
101:	learn: 12.5619522	total: 2.52s	remaining: 2.42s
102:	learn: 12.4634337	total: 2.54s	remaining: 2.39s
103:	learn: 12.3609898	total: 2.56s	remaining: 2.36s
104:	learn: 12.2125688	total: 2.58s	remaining: 2.34s
105:	learn: 12.1486953	total: 2.6s	remaining: 2.31s
106:	learn: 12.0898441	total: 2.63s	remaining: 2.28s
107:	learn: 12.0010232	total: 2.65s	remaining: 2.25s
108:	learn: 11.9176187	total: 2.68s	remaining: 2.24s
109:	learn: 11.8371178	total: 2.71s	remaining: 2.21s
110:	learn: 11.7788535	total: 2.73s	remaining: 2.19s
111:	learn: 11.6950379	total: 2.76s	remaining: 2.17s
112:	learn: 11.5654368	total: 2.78s	remaining: 2.14s
113:	learn: 11.4875190	total: 2.81s	remaining: 2.12s
114:	learn: 11.3710623	total: 2.83s	remaining: 2.09s
115:	learn: 11.2824160	total: 2.85s	remaining: 2.06s
116:	learn: 11.2154904	total: 2.87s	remaining: 2.04s
117:	learn: 11.1156693	total: 2.9s	remaining: 2.01s
118:	learn: 11.0246386	total: 2.93s	remaining: 1.99s
119:	learn: 10.9408189	total: 2.96s	remaining: 1.97s
120:	learn: 10.8948758	total: 2.98s	remaining: 1.95s
121:	learn: 10.8181533	total: 3s	remaining: 1.92s
122:	learn: 10.7773891	total: 3.02s	remaining: 1.89s
123:	learn: 10.7102903	total: 3.05s	remaining: 1.87s
124:	learn: 10.6398196	total: 3.07s	remaining: 1.84s
125:	learn: 10.5724929	total: 3.09s	remaining: 1.81s
126:	learn: 10.5053766	total: 3.11s	remaining: 1.79s
127:	learn: 10.4586496	total: 3.15s	remaining: 1.77s
128:	learn: 10.3564151	total: 3.17s	remaining: 1.75s
129:	learn: 10.2759173	total: 3.21s	remaining: 1.73s
130:	learn: 10.2053847	total: 3.23s	remaining: 1.7s
131:	learn: 10.1569693	total: 3.25s	remaining: 1.68s
132:	learn: 10.0939422	total: 3.28s	remaining: 1.65s
133:	learn: 10.0598247	total: 3.3s	remaining: 1.63s
134:	learn: 10.0024727	total: 3.32s	remaining: 1.6s
135:	learn: 9.9528111	total: 3.35s	remaining: 1.58s
136:	learn: 9.8945114	total: 3.38s	remaining: 1.55s
137:	learn: 9.8346449	total: 3.4s	remaining: 1.53s
138:	learn: 9.7449422	total: 3.42s	remaining: 1.5s
139:	learn: 9.6851089	total: 3.44s	remaining: 1.48s
140:	learn: 9.6140363	total: 3.47s	remaining: 1.45s
141:	learn: 9.5496776	total: 3.49s	remaining: 1.43s
142:	learn: 9.4851950	total: 3.52s	remaining: 1.4s
143:	learn: 9.4142786	total: 3.54s	remaining: 1.38s
144:	learn: 9.3481846	total: 3.57s	remaining: 1.35s
145:	learn: 9.3028915	total: 3.6s	remaining: 1.33s
146:	learn: 9.2633103	total: 3.62s	remaining: 1.31s
147:	learn: 9.2202725	total: 3.65s	remaining: 1.28s
148:	learn: 9.1901978	total: 3.67s	remaining: 1.26s
149:	learn: 9.1399499	total: 3.69s	remaining: 1.23s
150:	learn: 9.0844800	total: 3.73s	remaining: 1.21s
151:	learn: 9.0268509	total: 3.75s	remaining: 1.18s
152:	learn: 8.9454080	total: 3.78s	remaining: 1.16s
153:	learn: 8.8961891	total: 3.8s	remaining: 1.14s
154:	learn: 8.8461471	total: 3.82s	remaining: 1.11s
155:	learn: 8.7827134	total: 3.85s	remaining: 1.08s
156:	learn: 8.7126457	total: 3.87s	remaining: 1.06s
157:	learn: 8.6457355	total: 3.89s	remaining: 1.03s
158:	learn: 8.5973469	total: 3.91s	remaining: 1.01s
159:	learn: 8.5238781	total: 3.93s	remaining: 983ms
160:	learn: 8.4753874	total: 3.96s	remaining: 960ms
161:	learn: 8.4102398	total: 3.98s	remaining: 935ms
162:	learn: 8.3427298	total: 4.02s	remaining: 912ms
163:	learn: 8.2879829	total: 4.04s	remaining: 887ms
164:	learn: 8.2017948	total: 4.07s	remaining: 863ms
165:	learn: 8.1414522	total: 4.09s	remaining: 838ms
166:	learn: 8.0997373	total: 4.12s	remaining: 813ms
167:	learn: 8.0426513	total: 4.14s	remaining: 788ms
168:	learn: 8.0171299	total: 4.16s	remaining: 763ms
169:	learn: 7.9860244	total: 4.18s	remaining: 737ms
170:	learn: 7.9243600	total: 4.2s	remaining: 712ms
171:	learn: 7.8888500	total: 4.23s	remaining: 688ms
172:	learn: 7.8429133	total: 4.25s	remaining: 664ms
173:	learn: 7.7878355	total: 4.28s	remaining: 639ms
174:	learn: 7.7477647	total: 4.3s	remaining: 614ms
175:	learn: 7.6996609	total: 4.32s	remaining: 589ms
176:	learn: 7.6508695	total: 4.34s	remaining: 564ms
177:	learn: 7.6228709	total: 4.36s	remaining: 539ms
178:	learn: 7.5427816	total: 4.38s	remaining: 514ms
179:	learn: 7.4993051	total: 4.4s	remaining: 489ms
180:	learn: 7.4506031	total: 4.43s	remaining: 465ms
181:	learn: 7.4126852	total: 4.45s	remaining: 440ms
182:	learn: 7.3727232	total: 4.48s	remaining: 416ms
183:	learn: 7.3245476	total: 4.5s	remaining: 391ms
184:	learn: 7.2930719	total: 4.53s	remaining: 367ms
185:	learn: 7.2609171	total: 4.55s	remaining: 342ms
186:	learn: 7.2219298	total: 4.57s	remaining: 318ms
187:	learn: 7.1686640	total: 4.59s	remaining: 293ms
188:	learn: 7.1391386	total: 4.62s	remaining: 269ms
189:	learn: 7.0834226	total: 4.64s	remaining: 244ms
190:	learn: 7.0356769	total: 4.66s	remaining: 220ms
191:	learn: 6.9895273	total: 4.68s	remaining: 195ms
192:	learn: 6.9461560	total: 4.7s	remaining: 171ms
193:	learn: 6.9066032	total: 4.72s	remaining: 146ms
194:	learn: 6.8510364	total: 4.75s	remaining: 122ms
195:	learn: 6.8372660	total: 4.77s	remaining: 97.3ms
196:	learn: 6.8214482	total: 4.79s	remaining: 72.9ms
197:	learn: 6.7734991	total: 4.81s	remaining: 48.6ms
198:	learn: 6.7326852	total: 4.83s	remaining: 24.3ms
199:	learn: 6.7110050	total: 4.87s	remaining: 0us
0:	learn: 45.9215573	total: 18.9ms	remaining: 3.75s
1:	learn: 44.9284313	total: 40.3ms	remaining: 3.99s
2:	learn: 44.0711345	total: 61.2ms	remaining: 4.02s
3:	learn: 43.1946732	total: 84.7ms	remaining: 4.15s
4:	learn: 42.3849301	total: 108ms	remaining: 4.22s
5:	learn: 41.3846783	total: 135ms	remaining: 4.36s
6:	learn: 40.5478596	total: 158ms	remaining: 4.35s
7:	learn: 39.7877107	total: 177ms	remaining: 4.25s
8:	learn: 39.2235376	total: 197ms	remaining: 4.18s
9:	learn: 38.1495756	total: 217ms	remaining: 4.13s
10:	learn: 37.3934113	total: 236ms	remaining: 4.06s
11:	learn: 36.8586441	total: 256ms	remaining: 4.02s
12:	learn: 36.0985370	total: 276ms	remaining: 3.96s
13:	learn: 35.3452538	total: 297ms	remaining: 3.94s
14:	learn: 34.5427415	total: 316ms	remaining: 3.9s
15:	learn: 33.9683642	total: 347ms	remaining: 3.99s
16:	learn: 33.4589244	total: 371ms	remaining: 4s
17:	learn: 32.9407753	total: 394ms	remaining: 3.99s
18:	learn: 32.4280468	total: 417ms	remaining: 3.97s
19:	learn: 31.7257475	total: 440ms	remaining: 3.96s
20:	learn: 31.1717140	total: 462ms	remaining: 3.94s
21:	learn: 30.6995996	total: 480ms	remaining: 3.89s
22:	learn: 30.2724641	total: 501ms	remaining: 3.85s
23:	learn: 29.7428509	total: 523ms	remaining: 3.84s
24:	learn: 29.1882571	total: 548ms	remaining: 3.83s
25:	learn: 28.7327799	total: 572ms	remaining: 3.83s
26:	learn: 28.2833877	total: 593ms	remaining: 3.8s
27:	learn: 27.9927194	total: 613ms	remaining: 3.77s
28:	learn: 27.4458955	total: 632ms	remaining: 3.73s
29:	learn: 27.0894181	total: 653ms	remaining: 3.7s
30:	learn: 26.6809084	total: 672ms	remaining: 3.66s
31:	learn: 26.2884767	total: 693ms	remaining: 3.64s
32:	learn: 25.8641383	total: 712ms	remaining: 3.6s
33:	learn: 25.4731759	total: 735ms	remaining: 3.59s
34:	learn: 25.1288573	total: 755ms	remaining: 3.56s
35:	learn: 24.7440894	total: 786ms	remaining: 3.58s
36:	learn: 24.4112270	total: 809ms	remaining: 3.56s
37:	learn: 24.0727081	total: 831ms	remaining: 3.54s
38:	learn: 23.7431725	total: 852ms	remaining: 3.52s
39:	learn: 23.4247988	total: 873ms	remaining: 3.49s
40:	learn: 23.1336117	total: 892ms	remaining: 3.46s
41:	learn: 22.8507281	total: 911ms	remaining: 3.43s
42:	learn: 22.5904652	total: 931ms	remaining: 3.4s
43:	learn: 22.3442324	total: 953ms	remaining: 3.38s
44:	learn: 22.0327536	total: 974ms	remaining: 3.35s
45:	learn: 21.7539265	total: 1s	remaining: 3.36s
46:	learn: 21.5196696	total: 1.03s	remaining: 3.34s
47:	learn: 21.2340877	total: 1.04s	remaining: 3.31s
48:	learn: 20.9294404	total: 1.06s	remaining: 3.28s
49:	learn: 20.7129883	total: 1.08s	remaining: 3.26s
50:	learn: 20.4874120	total: 1.1s	remaining: 3.23s
51:	learn: 20.2801665	total: 1.13s	remaining: 3.21s
52:	learn: 20.1451290	total: 1.15s	remaining: 3.18s
53:	learn: 19.8893935	total: 1.17s	remaining: 3.15s
54:	learn: 19.6356393	total: 1.19s	remaining: 3.13s
55:	learn: 19.3929976	total: 1.22s	remaining: 3.13s
56:	learn: 19.1603234	total: 1.24s	remaining: 3.11s
57:	learn: 18.9606558	total: 1.26s	remaining: 3.09s
58:	learn: 18.7611006	total: 1.28s	remaining: 3.06s
59:	learn: 18.5930939	total: 1.3s	remaining: 3.04s
60:	learn: 18.4565961	total: 1.32s	remaining: 3.02s
61:	learn: 18.2641722	total: 1.34s	remaining: 2.99s
62:	learn: 18.1150502	total: 1.36s	remaining: 2.96s
63:	learn: 17.9331117	total: 1.38s	remaining: 2.94s
64:	learn: 17.7523560	total: 1.41s	remaining: 2.92s
65:	learn: 17.6211697	total: 1.43s	remaining: 2.9s
66:	learn: 17.4779253	total: 1.45s	remaining: 2.88s
67:	learn: 17.3972874	total: 1.47s	remaining: 2.85s
68:	learn: 17.3096715	total: 1.49s	remaining: 2.83s
69:	learn: 17.1933586	total: 1.51s	remaining: 2.8s
70:	learn: 17.0431030	total: 1.52s	remaining: 2.77s
71:	learn: 16.8568825	total: 1.54s	remaining: 2.74s
72:	learn: 16.7246266	total: 1.56s	remaining: 2.72s
73:	learn: 16.5696941	total: 1.58s	remaining: 2.69s
74:	learn: 16.4412110	total: 1.6s	remaining: 2.67s
75:	learn: 16.3346865	total: 1.63s	remaining: 2.65s
76:	learn: 16.1904210	total: 1.65s	remaining: 2.63s
77:	learn: 16.0299007	total: 1.67s	remaining: 2.61s
78:	learn: 15.9351887	total: 1.69s	remaining: 2.59s
79:	learn: 15.8037331	total: 1.71s	remaining: 2.57s
80:	learn: 15.6793752	total: 1.74s	remaining: 2.55s
81:	learn: 15.5259970	total: 1.76s	remaining: 2.53s
82:	learn: 15.4520966	total: 1.78s	remaining: 2.5s
83:	learn: 15.3523282	total: 1.8s	remaining: 2.48s
84:	learn: 15.3157447	total: 1.82s	remaining: 2.46s
85:	learn: 15.2372888	total: 1.84s	remaining: 2.44s
86:	learn: 15.0923008	total: 1.86s	remaining: 2.42s
87:	learn: 15.0181842	total: 1.88s	remaining: 2.4s
88:	learn: 14.8366764	total: 1.9s	remaining: 2.37s
89:	learn: 14.7247654	total: 1.92s	remaining: 2.35s
90:	learn: 14.6431207	total: 1.94s	remaining: 2.33s
91:	learn: 14.5705776	total: 1.96s	remaining: 2.3s
92:	learn: 14.4640014	total: 1.98s	remaining: 2.28s
93:	learn: 14.3666041	total: 2s	remaining: 2.25s
94:	learn: 14.3112685	total: 2.02s	remaining: 2.23s
95:	learn: 14.2184161	total: 2.04s	remaining: 2.21s
96:	learn: 14.1032991	total: 2.06s	remaining: 2.19s
97:	learn: 14.0586875	total: 2.08s	remaining: 2.17s
98:	learn: 13.9507118	total: 2.11s	remaining: 2.15s
99:	learn: 13.8778041	total: 2.13s	remaining: 2.13s
100:	learn: 13.7728695	total: 2.15s	remaining: 2.11s
101:	learn: 13.6608543	total: 2.17s	remaining: 2.09s
102:	learn: 13.5550488	total: 2.19s	remaining: 2.07s
103:	learn: 13.4489779	total: 2.22s	remaining: 2.05s
104:	learn: 13.3804592	total: 2.24s	remaining: 2.02s
105:	learn: 13.2836433	total: 2.26s	remaining: 2s
106:	learn: 13.2203501	total: 2.28s	remaining: 1.98s
107:	learn: 13.1493422	total: 2.3s	remaining: 1.96s
108:	learn: 13.0600009	total: 2.32s	remaining: 1.94s
109:	learn: 12.9684426	total: 2.34s	remaining: 1.92s
110:	learn: 12.9028699	total: 2.36s	remaining: 1.89s
111:	learn: 12.7963752	total: 2.38s	remaining: 1.87s
112:	learn: 12.7080153	total: 2.4s	remaining: 1.85s
113:	learn: 12.6204740	total: 2.42s	remaining: 1.82s
114:	learn: 12.5027992	total: 2.44s	remaining: 1.8s
115:	learn: 12.4544452	total: 2.46s	remaining: 1.78s
116:	learn: 12.3924059	total: 2.48s	remaining: 1.76s
117:	learn: 12.3170363	total: 2.52s	remaining: 1.75s
118:	learn: 12.2485670	total: 2.54s	remaining: 1.73s
119:	learn: 12.1257095	total: 2.56s	remaining: 1.71s
120:	learn: 12.0604229	total: 2.59s	remaining: 1.69s
121:	learn: 12.0088875	total: 2.61s	remaining: 1.67s
122:	learn: 11.9284487	total: 2.63s	remaining: 1.65s
123:	learn: 11.8528694	total: 2.65s	remaining: 1.63s
124:	learn: 11.7717673	total: 2.67s	remaining: 1.6s
125:	learn: 11.7240723	total: 2.69s	remaining: 1.58s
126:	learn: 11.6715318	total: 2.71s	remaining: 1.56s
127:	learn: 11.6276994	total: 2.74s	remaining: 1.54s
128:	learn: 11.5431431	total: 2.76s	remaining: 1.52s
129:	learn: 11.4385709	total: 2.78s	remaining: 1.5s
130:	learn: 11.3627369	total: 2.8s	remaining: 1.48s
131:	learn: 11.2970131	total: 2.82s	remaining: 1.45s
132:	learn: 11.2322847	total: 2.85s	remaining: 1.43s
133:	learn: 11.1846367	total: 2.87s	remaining: 1.41s
134:	learn: 11.1543979	total: 2.89s	remaining: 1.39s
135:	learn: 11.0823544	total: 2.91s	remaining: 1.37s
136:	learn: 11.0487163	total: 2.93s	remaining: 1.35s
137:	learn: 10.9832607	total: 2.96s	remaining: 1.33s
138:	learn: 10.9130824	total: 2.98s	remaining: 1.31s
139:	learn: 10.8579745	total: 3.01s	remaining: 1.29s
140:	learn: 10.7828907	total: 3.03s	remaining: 1.27s
141:	learn: 10.7103000	total: 3.05s	remaining: 1.25s
142:	learn: 10.6237800	total: 3.07s	remaining: 1.23s
143:	learn: 10.5716544	total: 3.09s	remaining: 1.2s
144:	learn: 10.4976092	total: 3.11s	remaining: 1.18s
145:	learn: 10.4313055	total: 3.14s	remaining: 1.16s
146:	learn: 10.3999486	total: 3.16s	remaining: 1.14s
147:	learn: 10.3502867	total: 3.19s	remaining: 1.12s
148:	learn: 10.3019991	total: 3.2s	remaining: 1.1s
149:	learn: 10.2488923	total: 3.22s	remaining: 1.07s
150:	learn: 10.1888838	total: 3.24s	remaining: 1.05s
151:	learn: 10.1116260	total: 3.26s	remaining: 1.03s
152:	learn: 10.0637742	total: 3.28s	remaining: 1.01s
153:	learn: 10.0463529	total: 3.3s	remaining: 986ms
154:	learn: 9.9940485	total: 3.32s	remaining: 965ms
155:	learn: 9.9547623	total: 3.35s	remaining: 944ms
156:	learn: 9.8883659	total: 3.38s	remaining: 925ms
157:	learn: 9.8547995	total: 3.4s	remaining: 904ms
158:	learn: 9.7999920	total: 3.42s	remaining: 883ms
159:	learn: 9.7417080	total: 3.44s	remaining: 861ms
160:	learn: 9.6704634	total: 3.47s	remaining: 840ms
161:	learn: 9.6398702	total: 3.49s	remaining: 818ms
162:	learn: 9.5435727	total: 3.51s	remaining: 796ms
163:	learn: 9.4983201	total: 3.53s	remaining: 774ms
164:	learn: 9.4633708	total: 3.55s	remaining: 754ms
165:	learn: 9.4354208	total: 3.58s	remaining: 733ms
166:	learn: 9.3806854	total: 3.6s	remaining: 711ms
167:	learn: 9.3711495	total: 3.62s	remaining: 689ms
168:	learn: 9.3437714	total: 3.64s	remaining: 668ms
169:	learn: 9.2939136	total: 3.66s	remaining: 646ms
170:	learn: 9.2634408	total: 3.68s	remaining: 624ms
171:	learn: 9.2095802	total: 3.7s	remaining: 602ms
172:	learn: 9.1367149	total: 3.72s	remaining: 580ms
173:	learn: 9.0999811	total: 3.74s	remaining: 558ms
174:	learn: 9.0367025	total: 3.76s	remaining: 537ms
175:	learn: 8.9715179	total: 3.78s	remaining: 515ms
176:	learn: 8.9149353	total: 3.81s	remaining: 495ms
177:	learn: 8.8782863	total: 3.83s	remaining: 474ms
178:	learn: 8.8540567	total: 3.86s	remaining: 453ms
179:	learn: 8.8250018	total: 3.88s	remaining: 431ms
180:	learn: 8.7872819	total: 3.9s	remaining: 410ms
181:	learn: 8.7315187	total: 3.92s	remaining: 388ms
182:	learn: 8.6696386	total: 3.94s	remaining: 367ms
183:	learn: 8.6137125	total: 3.97s	remaining: 345ms
184:	learn: 8.5526564	total: 3.99s	remaining: 324ms
185:	learn: 8.4978425	total: 4.02s	remaining: 302ms
186:	learn: 8.4696701	total: 4.04s	remaining: 281ms
187:	learn: 8.4148472	total: 4.06s	remaining: 259ms
188:	learn: 8.3597806	total: 4.08s	remaining: 238ms
189:	learn: 8.2960142	total: 4.1s	remaining: 216ms
190:	learn: 8.2542563	total: 4.12s	remaining: 194ms
191:	learn: 8.2272414	total: 4.14s	remaining: 173ms
192:	learn: 8.2002236	total: 4.16s	remaining: 151ms
193:	learn: 8.1459890	total: 4.18s	remaining: 129ms
194:	learn: 8.1086196	total: 4.21s	remaining: 108ms
195:	learn: 8.0560727	total: 4.23s	remaining: 86.3ms
196:	learn: 8.0094006	total: 4.26s	remaining: 64.8ms
197:	learn: 7.9587782	total: 4.28s	remaining: 43.2ms
198:	learn: 7.9133276	total: 4.3s	remaining: 21.6ms
199:	learn: 7.8533351	total: 4.33s	remaining: 0us
0:	learn: 46.7822310	total: 20.1ms	remaining: 4s
1:	learn: 45.7821607	total: 40.2ms	remaining: 3.98s
2:	learn: 44.8561967	total: 66.4ms	remaining: 4.36s
3:	learn: 43.8403748	total: 88.7ms	remaining: 4.34s
4:	learn: 43.0453118	total: 107ms	remaining: 4.18s
5:	learn: 42.2563327	total: 126ms	remaining: 4.06s
6:	learn: 41.3419698	total: 145ms	remaining: 3.99s
7:	learn: 40.5164894	total: 163ms	remaining: 3.92s
8:	learn: 39.8924326	total: 182ms	remaining: 3.86s
9:	learn: 39.0363549	total: 200ms	remaining: 3.8s
10:	learn: 38.3058916	total: 220ms	remaining: 3.77s
11:	learn: 37.6507668	total: 238ms	remaining: 3.72s
12:	learn: 36.8661647	total: 257ms	remaining: 3.69s
13:	learn: 36.1668195	total: 278ms	remaining: 3.7s
14:	learn: 35.4405316	total: 309ms	remaining: 3.81s
15:	learn: 34.7706167	total: 333ms	remaining: 3.83s
16:	learn: 34.0932139	total: 355ms	remaining: 3.82s
17:	learn: 33.5806864	total: 377ms	remaining: 3.81s
18:	learn: 32.9827022	total: 398ms	remaining: 3.79s
19:	learn: 32.3339103	total: 417ms	remaining: 3.75s
20:	learn: 31.7658637	total: 435ms	remaining: 3.71s
21:	learn: 31.3001942	total: 455ms	remaining: 3.68s
22:	learn: 30.8802168	total: 474ms	remaining: 3.64s
23:	learn: 30.5086494	total: 494ms	remaining: 3.63s
24:	learn: 30.0097170	total: 521ms	remaining: 3.65s
25:	learn: 29.5185440	total: 546ms	remaining: 3.65s
26:	learn: 29.1325379	total: 568ms	remaining: 3.64s
27:	learn: 28.8194880	total: 587ms	remaining: 3.6s
28:	learn: 28.2457676	total: 606ms	remaining: 3.57s
29:	learn: 27.8248381	total: 626ms	remaining: 3.55s
30:	learn: 27.4206428	total: 645ms	remaining: 3.52s
31:	learn: 26.9688365	total: 663ms	remaining: 3.48s
32:	learn: 26.6098298	total: 683ms	remaining: 3.46s
33:	learn: 26.0979119	total: 704ms	remaining: 3.44s
34:	learn: 25.7628382	total: 727ms	remaining: 3.43s
35:	learn: 25.4503633	total: 756ms	remaining: 3.44s
36:	learn: 25.1459394	total: 778ms	remaining: 3.43s
37:	learn: 24.8310510	total: 800ms	remaining: 3.41s
38:	learn: 24.5019544	total: 820ms	remaining: 3.38s
39:	learn: 24.1193536	total: 843ms	remaining: 3.37s
40:	learn: 23.8351675	total: 861ms	remaining: 3.34s
41:	learn: 23.5419329	total: 879ms	remaining: 3.31s
42:	learn: 23.2736224	total: 898ms	remaining: 3.28s
43:	learn: 23.0174601	total: 916ms	remaining: 3.25s
44:	learn: 22.7145721	total: 939ms	remaining: 3.23s
45:	learn: 22.4737593	total: 967ms	remaining: 3.24s
46:	learn: 22.1964499	total: 987ms	remaining: 3.21s
47:	learn: 21.9273921	total: 1.01s	remaining: 3.19s
48:	learn: 21.6532339	total: 1.02s	remaining: 3.16s
49:	learn: 21.3297885	total: 1.04s	remaining: 3.14s
50:	learn: 21.1049787	total: 1.06s	remaining: 3.11s
51:	learn: 20.9509899	total: 1.08s	remaining: 3.08s
52:	learn: 20.7119187	total: 1.1s	remaining: 3.06s
53:	learn: 20.4608975	total: 1.12s	remaining: 3.03s
54:	learn: 20.2456983	total: 1.14s	remaining: 3.02s
55:	learn: 20.0181848	total: 1.17s	remaining: 3s
56:	learn: 19.8324126	total: 1.17s	remaining: 2.94s
57:	learn: 19.6043971	total: 1.19s	remaining: 2.92s
58:	learn: 19.4054712	total: 1.21s	remaining: 2.9s
59:	learn: 19.2208737	total: 1.24s	remaining: 2.88s
60:	learn: 19.0690326	total: 1.25s	remaining: 2.86s
61:	learn: 18.8243788	total: 1.28s	remaining: 2.84s
62:	learn: 18.6625426	total: 1.3s	remaining: 2.82s
63:	learn: 18.5435992	total: 1.31s	remaining: 2.79s
64:	learn: 18.3580575	total: 1.33s	remaining: 2.77s
65:	learn: 18.2180113	total: 1.35s	remaining: 2.75s
66:	learn: 18.0592330	total: 1.37s	remaining: 2.73s
67:	learn: 17.8657351	total: 1.4s	remaining: 2.72s
68:	learn: 17.7056637	total: 1.42s	remaining: 2.7s
69:	learn: 17.5530012	total: 1.44s	remaining: 2.68s
70:	learn: 17.3253539	total: 1.46s	remaining: 2.65s
71:	learn: 17.1678051	total: 1.48s	remaining: 2.63s
72:	learn: 17.0772983	total: 1.5s	remaining: 2.61s
73:	learn: 16.9029188	total: 1.52s	remaining: 2.58s
74:	learn: 16.7184145	total: 1.54s	remaining: 2.56s
75:	learn: 16.6277772	total: 1.56s	remaining: 2.54s
76:	learn: 16.4736973	total: 1.58s	remaining: 2.52s
77:	learn: 16.3110197	total: 1.6s	remaining: 2.51s
78:	learn: 16.2013306	total: 1.64s	remaining: 2.51s
79:	learn: 16.0773253	total: 1.66s	remaining: 2.49s
80:	learn: 15.9767004	total: 1.68s	remaining: 2.47s
81:	learn: 15.8505072	total: 1.7s	remaining: 2.45s
82:	learn: 15.7325434	total: 1.73s	remaining: 2.43s
83:	learn: 15.6079941	total: 1.75s	remaining: 2.41s
84:	learn: 15.4640876	total: 1.76s	remaining: 2.39s
85:	learn: 15.3186379	total: 1.78s	remaining: 2.37s
86:	learn: 15.2243889	total: 1.81s	remaining: 2.35s
87:	learn: 15.1521861	total: 1.83s	remaining: 2.33s
88:	learn: 15.0102313	total: 1.86s	remaining: 2.32s
89:	learn: 14.9033387	total: 1.88s	remaining: 2.3s
90:	learn: 14.7499627	total: 1.9s	remaining: 2.27s
91:	learn: 14.5773387	total: 1.92s	remaining: 2.25s
92:	learn: 14.5036877	total: 1.94s	remaining: 2.23s
93:	learn: 14.3848877	total: 1.96s	remaining: 2.21s
94:	learn: 14.3146248	total: 1.98s	remaining: 2.19s
95:	learn: 14.2028225	total: 2s	remaining: 2.17s
96:	learn: 14.1210694	total: 2.02s	remaining: 2.15s
97:	learn: 13.9922309	total: 2.05s	remaining: 2.14s
98:	learn: 13.9278869	total: 2.08s	remaining: 2.12s
99:	learn: 13.8722336	total: 2.1s	remaining: 2.1s
100:	learn: 13.8027312	total: 2.12s	remaining: 2.08s
101:	learn: 13.6955150	total: 2.14s	remaining: 2.06s
102:	learn: 13.6249600	total: 2.17s	remaining: 2.04s
103:	learn: 13.5387957	total: 2.19s	remaining: 2.02s
104:	learn: 13.4952931	total: 2.21s	remaining: 2s
105:	learn: 13.3809253	total: 2.23s	remaining: 1.98s
106:	learn: 13.2936050	total: 2.26s	remaining: 1.96s
107:	learn: 13.2190146	total: 2.28s	remaining: 1.94s
108:	learn: 13.1176305	total: 2.3s	remaining: 1.92s
109:	learn: 12.9918546	total: 2.32s	remaining: 1.9s
110:	learn: 12.9217870	total: 2.34s	remaining: 1.87s
111:	learn: 12.8560371	total: 2.36s	remaining: 1.85s
112:	learn: 12.7830178	total: 2.38s	remaining: 1.83s
113:	learn: 12.7089425	total: 2.4s	remaining: 1.81s
114:	learn: 12.6183965	total: 2.42s	remaining: 1.79s
115:	learn: 12.5248959	total: 2.44s	remaining: 1.76s
116:	learn: 12.4473869	total: 2.46s	remaining: 1.75s
117:	learn: 12.3691451	total: 2.49s	remaining: 1.73s
118:	learn: 12.2780346	total: 2.51s	remaining: 1.71s
119:	learn: 12.1932999	total: 2.54s	remaining: 1.69s
120:	learn: 12.1292305	total: 2.56s	remaining: 1.67s
121:	learn: 12.0738894	total: 2.58s	remaining: 1.65s
122:	learn: 12.0131256	total: 2.6s	remaining: 1.63s
123:	learn: 11.9163924	total: 2.62s	remaining: 1.61s
124:	learn: 11.8342851	total: 2.64s	remaining: 1.59s
125:	learn: 11.7574444	total: 2.66s	remaining: 1.56s
126:	learn: 11.6909809	total: 2.69s	remaining: 1.55s
127:	learn: 11.6349840	total: 2.71s	remaining: 1.53s
128:	learn: 11.5534164	total: 2.73s	remaining: 1.5s
129:	learn: 11.4769774	total: 2.75s	remaining: 1.48s
130:	learn: 11.4293194	total: 2.78s	remaining: 1.46s
131:	learn: 11.3392710	total: 2.8s	remaining: 1.44s
132:	learn: 11.3020809	total: 2.81s	remaining: 1.42s
133:	learn: 11.2458141	total: 2.83s	remaining: 1.4s
134:	learn: 11.1780043	total: 2.86s	remaining: 1.38s
135:	learn: 11.1094892	total: 2.88s	remaining: 1.35s
136:	learn: 11.0482317	total: 2.9s	remaining: 1.33s
137:	learn: 10.9928609	total: 2.93s	remaining: 1.32s
138:	learn: 10.8782641	total: 2.95s	remaining: 1.29s
139:	learn: 10.8068918	total: 2.97s	remaining: 1.27s
140:	learn: 10.7281707	total: 2.99s	remaining: 1.25s
141:	learn: 10.6630047	total: 3.02s	remaining: 1.23s
142:	learn: 10.5820619	total: 3.03s	remaining: 1.21s
143:	learn: 10.5275719	total: 3.06s	remaining: 1.19s
144:	learn: 10.4536775	total: 3.08s	remaining: 1.17s
145:	learn: 10.3667297	total: 3.1s	remaining: 1.15s
146:	learn: 10.3113645	total: 3.13s	remaining: 1.13s
147:	learn: 10.2506720	total: 3.15s	remaining: 1.1s
148:	learn: 10.1815199	total: 3.17s	remaining: 1.08s
149:	learn: 10.1210630	total: 3.19s	remaining: 1.06s
150:	learn: 10.0607434	total: 3.21s	remaining: 1.04s
151:	learn: 9.9682935	total: 3.23s	remaining: 1.02s
152:	learn: 9.9258231	total: 3.25s	remaining: 998ms
153:	learn: 9.8508685	total: 3.27s	remaining: 977ms
154:	learn: 9.7974763	total: 3.29s	remaining: 956ms
155:	learn: 9.7046997	total: 3.32s	remaining: 937ms
156:	learn: 9.6517521	total: 3.35s	remaining: 916ms
157:	learn: 9.5843511	total: 3.37s	remaining: 896ms
158:	learn: 9.5317124	total: 3.39s	remaining: 874ms
159:	learn: 9.4685152	total: 3.42s	remaining: 854ms
160:	learn: 9.4073484	total: 3.43s	remaining: 832ms
161:	learn: 9.3415358	total: 3.46s	remaining: 810ms
162:	learn: 9.2764418	total: 3.48s	remaining: 789ms
163:	learn: 9.2262344	total: 3.5s	remaining: 768ms
164:	learn: 9.1727385	total: 3.53s	remaining: 748ms
165:	learn: 9.0916817	total: 3.55s	remaining: 727ms
166:	learn: 9.0352255	total: 3.57s	remaining: 706ms
167:	learn: 8.9925762	total: 3.59s	remaining: 684ms
168:	learn: 8.9189665	total: 3.61s	remaining: 662ms
169:	learn: 8.8561510	total: 3.63s	remaining: 640ms
170:	learn: 8.8061101	total: 3.65s	remaining: 618ms
171:	learn: 8.7678736	total: 3.67s	remaining: 597ms
172:	learn: 8.7029468	total: 3.68s	remaining: 575ms
173:	learn: 8.6743446	total: 3.71s	remaining: 554ms
174:	learn: 8.6205771	total: 3.73s	remaining: 532ms
175:	learn: 8.5820649	total: 3.76s	remaining: 513ms
176:	learn: 8.5354484	total: 3.78s	remaining: 492ms
177:	learn: 8.5203645	total: 3.8s	remaining: 470ms
178:	learn: 8.4300845	total: 3.83s	remaining: 449ms
179:	learn: 8.3630891	total: 3.85s	remaining: 428ms
180:	learn: 8.3212146	total: 3.87s	remaining: 406ms
181:	learn: 8.2791743	total: 3.88s	remaining: 384ms
182:	learn: 8.2274885	total: 3.9s	remaining: 363ms
183:	learn: 8.1885224	total: 3.92s	remaining: 341ms
184:	learn: 8.1605467	total: 3.94s	remaining: 320ms
185:	learn: 8.1027759	total: 3.97s	remaining: 299ms
186:	learn: 8.0660143	total: 3.99s	remaining: 278ms
187:	learn: 8.0160573	total: 4.01s	remaining: 256ms
188:	learn: 7.9740032	total: 4.03s	remaining: 235ms
189:	learn: 7.8893524	total: 4.05s	remaining: 213ms
190:	learn: 7.8399096	total: 4.07s	remaining: 192ms
191:	learn: 7.8154601	total: 4.08s	remaining: 170ms
192:	learn: 7.7535369	total: 4.1s	remaining: 149ms
193:	learn: 7.7158570	total: 4.12s	remaining: 128ms
194:	learn: 7.6598850	total: 4.14s	remaining: 106ms
195:	learn: 7.6170092	total: 4.16s	remaining: 84.9ms
196:	learn: 7.5574492	total: 4.19s	remaining: 63.8ms
197:	learn: 7.5095826	total: 4.21s	remaining: 42.6ms
198:	learn: 7.4636116	total: 4.24s	remaining: 21.3ms
199:	learn: 7.4101012	total: 4.26s	remaining: 0us
0:	learn: 27.5267205	total: 23.5ms	remaining: 4.69s
1:	learn: 27.0297320	total: 48ms	remaining: 4.75s
2:	learn: 26.5510417	total: 72.4ms	remaining: 4.76s
3:	learn: 26.1221185	total: 84ms	remaining: 4.12s
4:	learn: 25.6690036	total: 113ms	remaining: 4.4s
5:	learn: 25.2709759	total: 136ms	remaining: 4.41s
6:	learn: 24.8033327	total: 161ms	remaining: 4.45s
7:	learn: 24.4258966	total: 186ms	remaining: 4.45s
8:	learn: 24.0351254	total: 210ms	remaining: 4.46s
9:	learn: 23.6271871	total: 234ms	remaining: 4.45s
10:	learn: 23.1709164	total: 259ms	remaining: 4.45s
11:	learn: 22.8341448	total: 283ms	remaining: 4.44s
12:	learn: 22.5508255	total: 317ms	remaining: 4.56s
13:	learn: 22.1650870	total: 345ms	remaining: 4.58s
14:	learn: 21.8409545	total: 370ms	remaining: 4.56s
15:	learn: 21.5838916	total: 394ms	remaining: 4.53s
16:	learn: 21.2570767	total: 419ms	remaining: 4.51s
17:	learn: 20.9351602	total: 444ms	remaining: 4.49s
18:	learn: 20.6431553	total: 469ms	remaining: 4.47s
19:	learn: 20.3451843	total: 494ms	remaining: 4.45s
20:	learn: 20.0903893	total: 526ms	remaining: 4.48s
21:	learn: 19.7708525	total: 551ms	remaining: 4.46s
22:	learn: 19.5129016	total: 575ms	remaining: 4.42s
23:	learn: 19.2789838	total: 599ms	remaining: 4.39s
24:	learn: 19.0285247	total: 623ms	remaining: 4.36s
25:	learn: 18.7740774	total: 647ms	remaining: 4.33s
26:	learn: 18.4131270	total: 672ms	remaining: 4.3s
27:	learn: 18.1935928	total: 703ms	remaining: 4.32s
28:	learn: 17.9185293	total: 731ms	remaining: 4.31s
29:	learn: 17.6818825	total: 756ms	remaining: 4.29s
30:	learn: 17.4551687	total: 781ms	remaining: 4.26s
31:	learn: 17.2687322	total: 807ms	remaining: 4.24s
32:	learn: 17.0648633	total: 832ms	remaining: 4.21s
33:	learn: 16.8298981	total: 857ms	remaining: 4.18s
34:	learn: 16.6371395	total: 881ms	remaining: 4.16s
35:	learn: 16.4706695	total: 906ms	remaining: 4.13s
36:	learn: 16.2417258	total: 947ms	remaining: 4.17s
37:	learn: 16.0550250	total: 975ms	remaining: 4.16s
38:	learn: 15.8743430	total: 1s	remaining: 4.14s
39:	learn: 15.7086215	total: 1.03s	remaining: 4.12s
40:	learn: 15.5349794	total: 1.05s	remaining: 4.09s
41:	learn: 15.3661561	total: 1.08s	remaining: 4.07s
42:	learn: 15.1953294	total: 1.11s	remaining: 4.05s
43:	learn: 15.0239038	total: 1.14s	remaining: 4.04s
44:	learn: 14.8773748	total: 1.18s	remaining: 4.07s
45:	learn: 14.6611861	total: 1.22s	remaining: 4.07s
46:	learn: 14.5252257	total: 1.25s	remaining: 4.05s
47:	learn: 14.3792699	total: 1.27s	remaining: 4.03s
48:	learn: 14.2511628	total: 1.3s	remaining: 4.01s
49:	learn: 14.1345616	total: 1.33s	remaining: 3.98s
50:	learn: 13.9884078	total: 1.36s	remaining: 3.97s
51:	learn: 13.8664210	total: 1.39s	remaining: 3.95s
52:	learn: 13.7317425	total: 1.42s	remaining: 3.92s
53:	learn: 13.6052633	total: 1.45s	remaining: 3.92s
54:	learn: 13.4989783	total: 1.48s	remaining: 3.89s
55:	learn: 13.3711614	total: 1.5s	remaining: 3.86s
56:	learn: 13.2500078	total: 1.53s	remaining: 3.84s
57:	learn: 13.1495677	total: 1.56s	remaining: 3.81s
58:	learn: 13.0270356	total: 1.59s	remaining: 3.81s
59:	learn: 12.9010466	total: 1.62s	remaining: 3.79s
60:	learn: 12.7690116	total: 1.65s	remaining: 3.76s
61:	learn: 12.6721291	total: 1.69s	remaining: 3.76s
62:	learn: 12.5556250	total: 1.71s	remaining: 3.73s
63:	learn: 12.4465816	total: 1.74s	remaining: 3.7s
64:	learn: 12.3321066	total: 1.77s	remaining: 3.67s
65:	learn: 12.2170303	total: 1.79s	remaining: 3.65s
66:	learn: 12.1113674	total: 1.83s	remaining: 3.63s
67:	learn: 12.0224784	total: 1.86s	remaining: 3.6s
68:	learn: 11.9394297	total: 1.88s	remaining: 3.58s
69:	learn: 11.8303621	total: 1.92s	remaining: 3.56s
70:	learn: 11.7377540	total: 1.95s	remaining: 3.53s
71:	learn: 11.6367962	total: 1.97s	remaining: 3.51s
72:	learn: 11.5501496	total: 2s	remaining: 3.48s
73:	learn: 11.4493525	total: 2.04s	remaining: 3.47s
74:	learn: 11.3454123	total: 2.06s	remaining: 3.44s
75:	learn: 11.2512257	total: 2.09s	remaining: 3.42s
76:	learn: 11.1778585	total: 2.12s	remaining: 3.39s
77:	learn: 11.1109993	total: 2.15s	remaining: 3.36s
78:	learn: 11.0176987	total: 2.18s	remaining: 3.34s
79:	learn: 10.9457927	total: 2.21s	remaining: 3.32s
80:	learn: 10.8639363	total: 2.25s	remaining: 3.3s
81:	learn: 10.7872782	total: 2.27s	remaining: 3.27s
82:	learn: 10.6570129	total: 2.3s	remaining: 3.24s
83:	learn: 10.5760595	total: 2.33s	remaining: 3.21s
84:	learn: 10.4763853	total: 2.35s	remaining: 3.18s
85:	learn: 10.3931190	total: 2.38s	remaining: 3.15s
86:	learn: 10.3021565	total: 2.42s	remaining: 3.15s
87:	learn: 10.2202312	total: 2.45s	remaining: 3.12s
88:	learn: 10.1376195	total: 2.48s	remaining: 3.09s
89:	learn: 10.0481135	total: 2.51s	remaining: 3.07s
90:	learn: 9.9436402	total: 2.54s	remaining: 3.04s
91:	learn: 9.8883469	total: 2.56s	remaining: 3.01s
92:	learn: 9.8391453	total: 2.59s	remaining: 2.98s
93:	learn: 9.7559058	total: 2.62s	remaining: 2.95s
94:	learn: 9.7036404	total: 2.66s	remaining: 2.94s
95:	learn: 9.6339700	total: 2.69s	remaining: 2.92s
96:	learn: 9.5423437	total: 2.72s	remaining: 2.88s
97:	learn: 9.4694485	total: 2.74s	remaining: 2.85s
98:	learn: 9.3961815	total: 2.77s	remaining: 2.82s
99:	learn: 9.3398252	total: 2.79s	remaining: 2.79s
100:	learn: 9.2935490	total: 2.82s	remaining: 2.77s
101:	learn: 9.2264612	total: 2.85s	remaining: 2.74s
102:	learn: 9.1591537	total: 2.9s	remaining: 2.73s
103:	learn: 9.1096974	total: 2.93s	remaining: 2.7s
104:	learn: 9.0402122	total: 2.95s	remaining: 2.67s
105:	learn: 8.9683889	total: 2.98s	remaining: 2.64s
106:	learn: 8.9035307	total: 3.01s	remaining: 2.61s
107:	learn: 8.8402259	total: 3.04s	remaining: 2.58s
108:	learn: 8.7773911	total: 3.06s	remaining: 2.56s
109:	learn: 8.7025820	total: 3.1s	remaining: 2.53s
110:	learn: 8.6421216	total: 3.13s	remaining: 2.5s
111:	learn: 8.6017544	total: 3.16s	remaining: 2.48s
112:	learn: 8.5548626	total: 3.19s	remaining: 2.45s
113:	learn: 8.4992734	total: 3.21s	remaining: 2.42s
114:	learn: 8.4610970	total: 3.24s	remaining: 2.39s
115:	learn: 8.4038241	total: 3.27s	remaining: 2.37s
116:	learn: 8.3619090	total: 3.31s	remaining: 2.35s
117:	learn: 8.3076220	total: 3.33s	remaining: 2.32s
118:	learn: 8.2517766	total: 3.36s	remaining: 2.29s
119:	learn: 8.2074723	total: 3.4s	remaining: 2.26s
120:	learn: 8.1543738	total: 3.42s	remaining: 2.24s
121:	learn: 8.1040466	total: 3.45s	remaining: 2.21s
122:	learn: 8.0635009	total: 3.48s	remaining: 2.18s
123:	learn: 8.0202842	total: 3.51s	remaining: 2.15s
124:	learn: 7.9875970	total: 3.54s	remaining: 2.12s
125:	learn: 7.9325212	total: 3.57s	remaining: 2.1s
126:	learn: 7.9020290	total: 3.59s	remaining: 2.06s
127:	learn: 7.8515713	total: 3.63s	remaining: 2.04s
128:	learn: 7.8105577	total: 3.65s	remaining: 2.01s
129:	learn: 7.7794800	total: 3.68s	remaining: 1.98s
130:	learn: 7.7189049	total: 3.71s	remaining: 1.95s
131:	learn: 7.6676908	total: 3.73s	remaining: 1.92s
132:	learn: 7.6175263	total: 3.77s	remaining: 1.9s
133:	learn: 7.5756123	total: 3.8s	remaining: 1.87s
134:	learn: 7.5319541	total: 3.83s	remaining: 1.84s
135:	learn: 7.4770928	total: 3.87s	remaining: 1.82s
136:	learn: 7.4238892	total: 3.89s	remaining: 1.79s
137:	learn: 7.3904567	total: 3.92s	remaining: 1.76s
138:	learn: 7.3398209	total: 3.95s	remaining: 1.73s
139:	learn: 7.3033888	total: 3.98s	remaining: 1.7s
140:	learn: 7.2478465	total: 4.01s	remaining: 1.68s
141:	learn: 7.2063378	total: 4.04s	remaining: 1.65s
142:	learn: 7.1743925	total: 4.06s	remaining: 1.62s
143:	learn: 7.1424325	total: 4.09s	remaining: 1.59s
144:	learn: 7.1053244	total: 4.12s	remaining: 1.56s
145:	learn: 7.0697464	total: 4.15s	remaining: 1.53s
146:	learn: 7.0358400	total: 4.18s	remaining: 1.51s
147:	learn: 7.0052202	total: 4.22s	remaining: 1.48s
148:	learn: 6.9605461	total: 4.25s	remaining: 1.45s
149:	learn: 6.9296251	total: 4.27s	remaining: 1.42s
150:	learn: 6.8966440	total: 4.3s	remaining: 1.4s
151:	learn: 6.8598989	total: 4.33s	remaining: 1.37s
152:	learn: 6.8258947	total: 4.37s	remaining: 1.34s
153:	learn: 6.7746867	total: 4.4s	remaining: 1.31s
154:	learn: 6.7339621	total: 4.43s	remaining: 1.28s
155:	learn: 6.6892818	total: 4.45s	remaining: 1.26s
156:	learn: 6.6551188	total: 4.48s	remaining: 1.23s
157:	learn: 6.6101469	total: 4.51s	remaining: 1.2s
158:	learn: 6.5682910	total: 4.53s	remaining: 1.17s
159:	learn: 6.5324628	total: 4.56s	remaining: 1.14s
160:	learn: 6.4964901	total: 4.6s	remaining: 1.11s
161:	learn: 6.4574422	total: 4.62s	remaining: 1.08s
162:	learn: 6.4198366	total: 4.66s	remaining: 1.06s
163:	learn: 6.3960124	total: 4.69s	remaining: 1.03s
164:	learn: 6.3584522	total: 4.72s	remaining: 1s
165:	learn: 6.3234969	total: 4.75s	remaining: 972ms
166:	learn: 6.2790169	total: 4.77s	remaining: 943ms
167:	learn: 6.2322601	total: 4.8s	remaining: 914ms
168:	learn: 6.2069447	total: 4.83s	remaining: 887ms
169:	learn: 6.1655187	total: 4.86s	remaining: 858ms
170:	learn: 6.1327685	total: 4.9s	remaining: 830ms
171:	learn: 6.0940435	total: 4.92s	remaining: 801ms
172:	learn: 6.0496032	total: 4.95s	remaining: 772ms
173:	learn: 6.0139582	total: 4.98s	remaining: 744ms
174:	learn: 5.9701293	total: 5s	remaining: 715ms
175:	learn: 5.9344034	total: 5.03s	remaining: 686ms
176:	learn: 5.8981198	total: 5.06s	remaining: 657ms
177:	learn: 5.8589414	total: 5.09s	remaining: 630ms
178:	learn: 5.8288766	total: 5.13s	remaining: 602ms
179:	learn: 5.7933689	total: 5.16s	remaining: 573ms
180:	learn: 5.7573047	total: 5.19s	remaining: 545ms
181:	learn: 5.7344764	total: 5.22s	remaining: 516ms
182:	learn: 5.7107730	total: 5.25s	remaining: 487ms
183:	learn: 5.6764723	total: 5.27s	remaining: 458ms
184:	learn: 5.6466489	total: 5.3s	remaining: 430ms
185:	learn: 5.6117025	total: 5.33s	remaining: 401ms
186:	learn: 5.5702695	total: 5.37s	remaining: 373ms
187:	learn: 5.5397006	total: 5.39s	remaining: 344ms
188:	learn: 5.5019375	total: 5.42s	remaining: 315ms
189:	learn: 5.4658715	total: 5.45s	remaining: 287ms
190:	learn: 5.4334513	total: 5.47s	remaining: 258ms
191:	learn: 5.4190693	total: 5.5s	remaining: 229ms
192:	learn: 5.3810480	total: 5.53s	remaining: 201ms
193:	learn: 5.3485204	total: 5.57s	remaining: 172ms
194:	learn: 5.3230681	total: 5.6s	remaining: 144ms
195:	learn: 5.2814853	total: 5.63s	remaining: 115ms
196:	learn: 5.2717381	total: 5.66s	remaining: 86.1ms
197:	learn: 5.2433576	total: 5.68s	remaining: 57.4ms
198:	learn: 5.2342737	total: 5.71s	remaining: 28.7ms
199:	learn: 5.1867289	total: 5.74s	remaining: 0us
0:	learn: 42.7705174	total: 26.9ms	remaining: 5.34s
1:	learn: 41.7656178	total: 58.9ms	remaining: 5.83s
2:	learn: 40.8179156	total: 85.8ms	remaining: 5.63s
3:	learn: 39.6523791	total: 93.2ms	remaining: 4.57s
4:	learn: 38.7129138	total: 120ms	remaining: 4.7s
5:	learn: 37.8422176	total: 148ms	remaining: 4.8s
6:	learn: 36.8116359	total: 185ms	remaining: 5.1s
7:	learn: 36.0052487	total: 215ms	remaining: 5.15s
8:	learn: 35.2849975	total: 242ms	remaining: 5.13s
9:	learn: 34.4756781	total: 270ms	remaining: 5.12s
10:	learn: 33.6653999	total: 306ms	remaining: 5.25s
11:	learn: 32.7620757	total: 332ms	remaining: 5.2s
12:	learn: 32.0480959	total: 359ms	remaining: 5.17s
13:	learn: 31.4172082	total: 386ms	remaining: 5.13s
14:	learn: 30.8340727	total: 421ms	remaining: 5.19s
15:	learn: 30.2683567	total: 448ms	remaining: 5.15s
16:	learn: 29.8492136	total: 475ms	remaining: 5.11s
17:	learn: 29.2125099	total: 502ms	remaining: 5.07s
18:	learn: 28.6054738	total: 528ms	remaining: 5.03s
19:	learn: 28.0640663	total: 562ms	remaining: 5.06s
20:	learn: 27.5413586	total: 596ms	remaining: 5.08s
21:	learn: 26.9873574	total: 625ms	remaining: 5.06s
22:	learn: 26.3484257	total: 652ms	remaining: 5.02s
23:	learn: 25.8429212	total: 680ms	remaining: 4.99s
24:	learn: 25.3750345	total: 707ms	remaining: 4.95s
25:	learn: 24.8995542	total: 735ms	remaining: 4.92s
26:	learn: 24.4763414	total: 739ms	remaining: 4.73s
27:	learn: 24.0223071	total: 765ms	remaining: 4.7s
28:	learn: 23.5490716	total: 799ms	remaining: 4.71s
29:	learn: 23.2249502	total: 827ms	remaining: 4.69s
30:	learn: 22.8048550	total: 860ms	remaining: 4.69s
31:	learn: 22.5381351	total: 888ms	remaining: 4.66s
32:	learn: 22.1317703	total: 915ms	remaining: 4.63s
33:	learn: 21.7444080	total: 941ms	remaining: 4.59s
34:	learn: 21.3990423	total: 968ms	remaining: 4.56s
35:	learn: 21.1239746	total: 994ms	remaining: 4.53s
36:	learn: 20.8039218	total: 1.03s	remaining: 4.52s
37:	learn: 20.5044886	total: 1.05s	remaining: 4.49s
38:	learn: 20.2580104	total: 1.09s	remaining: 4.5s
39:	learn: 19.9234991	total: 1.12s	remaining: 4.47s
40:	learn: 19.6150872	total: 1.14s	remaining: 4.44s
41:	learn: 19.3387395	total: 1.17s	remaining: 4.41s
42:	learn: 19.1094717	total: 1.2s	remaining: 4.38s
43:	learn: 18.8720442	total: 1.23s	remaining: 4.35s
44:	learn: 18.5949279	total: 1.26s	remaining: 4.35s
45:	learn: 18.3092362	total: 1.29s	remaining: 4.32s
46:	learn: 18.0869723	total: 1.32s	remaining: 4.31s
47:	learn: 17.8480253	total: 1.35s	remaining: 4.28s
48:	learn: 17.6697203	total: 1.38s	remaining: 4.25s
49:	learn: 17.4805106	total: 1.41s	remaining: 4.21s
50:	learn: 17.2762453	total: 1.43s	remaining: 4.18s
51:	learn: 17.0525457	total: 1.46s	remaining: 4.15s
52:	learn: 16.8777174	total: 1.48s	remaining: 4.12s
53:	learn: 16.6928868	total: 1.52s	remaining: 4.11s
54:	learn: 16.5257601	total: 1.56s	remaining: 4.11s
55:	learn: 16.3285949	total: 1.58s	remaining: 4.08s
56:	learn: 16.1573162	total: 1.61s	remaining: 4.05s
57:	learn: 15.9898094	total: 1.64s	remaining: 4.01s
58:	learn: 15.8177173	total: 1.67s	remaining: 3.98s
59:	learn: 15.6220285	total: 1.69s	remaining: 3.95s
60:	learn: 15.4921595	total: 1.72s	remaining: 3.92s
61:	learn: 15.2259668	total: 1.76s	remaining: 3.92s
62:	learn: 15.0578599	total: 1.79s	remaining: 3.89s
63:	learn: 14.8598966	total: 1.82s	remaining: 3.86s
64:	learn: 14.7079676	total: 1.84s	remaining: 3.83s
65:	learn: 14.5262302	total: 1.87s	remaining: 3.79s
66:	learn: 14.3947423	total: 1.9s	remaining: 3.77s
67:	learn: 14.2508493	total: 1.92s	remaining: 3.73s
68:	learn: 14.1502560	total: 1.95s	remaining: 3.7s
69:	learn: 13.9997992	total: 2s	remaining: 3.71s
70:	learn: 13.8600785	total: 2.02s	remaining: 3.68s
71:	learn: 13.7348317	total: 2.05s	remaining: 3.65s
72:	learn: 13.6556478	total: 2.08s	remaining: 3.62s
73:	learn: 13.5217356	total: 2.11s	remaining: 3.59s
74:	learn: 13.4231392	total: 2.13s	remaining: 3.56s
75:	learn: 13.2847848	total: 2.16s	remaining: 3.52s
76:	learn: 13.1458481	total: 2.19s	remaining: 3.5s
77:	learn: 13.0475561	total: 2.23s	remaining: 3.49s
78:	learn: 12.9445908	total: 2.26s	remaining: 3.46s
79:	learn: 12.8213077	total: 2.28s	remaining: 3.43s
80:	learn: 12.7210762	total: 2.31s	remaining: 3.39s
81:	learn: 12.6320186	total: 2.34s	remaining: 3.36s
82:	learn: 12.5362788	total: 2.37s	remaining: 3.33s
83:	learn: 12.4350353	total: 2.39s	remaining: 3.3s
84:	learn: 12.3601174	total: 2.43s	remaining: 3.29s
85:	learn: 12.2940655	total: 2.46s	remaining: 3.26s
86:	learn: 12.2055695	total: 2.49s	remaining: 3.24s
87:	learn: 12.1249471	total: 2.52s	remaining: 3.21s
88:	learn: 12.0198476	total: 2.55s	remaining: 3.18s
89:	learn: 11.9560995	total: 2.58s	remaining: 3.15s
90:	learn: 11.8997810	total: 2.6s	remaining: 3.12s
91:	learn: 11.8272800	total: 2.64s	remaining: 3.09s
92:	learn: 11.7398723	total: 2.67s	remaining: 3.07s
93:	learn: 11.6996897	total: 2.69s	remaining: 3.04s
94:	learn: 11.5707058	total: 2.73s	remaining: 3.01s
95:	learn: 11.4454892	total: 2.75s	remaining: 2.98s
96:	learn: 11.3786021	total: 2.78s	remaining: 2.95s
97:	learn: 11.2823760	total: 2.81s	remaining: 2.92s
98:	learn: 11.1929769	total: 2.83s	remaining: 2.89s
99:	learn: 11.1117188	total: 2.87s	remaining: 2.87s
100:	learn: 11.0443487	total: 2.9s	remaining: 2.84s
101:	learn: 10.9544034	total: 2.92s	remaining: 2.81s
102:	learn: 10.8897010	total: 2.96s	remaining: 2.79s
103:	learn: 10.8066831	total: 2.99s	remaining: 2.76s
104:	learn: 10.7378345	total: 3.02s	remaining: 2.73s
105:	learn: 10.6720239	total: 3.05s	remaining: 2.7s
106:	learn: 10.6053924	total: 3.08s	remaining: 2.68s
107:	learn: 10.5352672	total: 3.11s	remaining: 2.65s
108:	learn: 10.4698192	total: 3.14s	remaining: 2.62s
109:	learn: 10.3932540	total: 3.16s	remaining: 2.59s
110:	learn: 10.3302850	total: 3.2s	remaining: 2.56s
111:	learn: 10.2386464	total: 3.23s	remaining: 2.53s
112:	learn: 10.1614263	total: 3.25s	remaining: 2.5s
113:	learn: 10.1246223	total: 3.29s	remaining: 2.48s
114:	learn: 10.0376415	total: 3.32s	remaining: 2.45s
115:	learn: 9.9533922	total: 3.34s	remaining: 2.42s
116:	learn: 9.9116832	total: 3.37s	remaining: 2.39s
117:	learn: 9.8262895	total: 3.4s	remaining: 2.36s
118:	learn: 9.7550180	total: 3.42s	remaining: 2.33s
119:	learn: 9.6335263	total: 3.46s	remaining: 2.31s
120:	learn: 9.5729126	total: 3.49s	remaining: 2.28s
121:	learn: 9.4973694	total: 3.52s	remaining: 2.25s
122:	learn: 9.4234732	total: 3.55s	remaining: 2.22s
123:	learn: 9.3688511	total: 3.58s	remaining: 2.19s
124:	learn: 9.3131658	total: 3.6s	remaining: 2.16s
125:	learn: 9.2438024	total: 3.63s	remaining: 2.13s
126:	learn: 9.1906870	total: 3.65s	remaining: 2.1s
127:	learn: 9.1517009	total: 3.69s	remaining: 2.07s
128:	learn: 9.0807473	total: 3.71s	remaining: 2.04s
129:	learn: 9.0380225	total: 3.75s	remaining: 2.02s
130:	learn: 9.0003912	total: 3.78s	remaining: 1.99s
131:	learn: 8.9192469	total: 3.81s	remaining: 1.96s
132:	learn: 8.8535215	total: 3.84s	remaining: 1.93s
133:	learn: 8.8131428	total: 3.86s	remaining: 1.9s
134:	learn: 8.7593274	total: 3.89s	remaining: 1.87s
135:	learn: 8.7015525	total: 3.93s	remaining: 1.85s
136:	learn: 8.6407713	total: 3.96s	remaining: 1.82s
137:	learn: 8.5518756	total: 3.99s	remaining: 1.79s
138:	learn: 8.5058763	total: 4.01s	remaining: 1.76s
139:	learn: 8.4269041	total: 4.04s	remaining: 1.73s
140:	learn: 8.3587465	total: 4.07s	remaining: 1.7s
141:	learn: 8.2765653	total: 4.1s	remaining: 1.67s
142:	learn: 8.2346336	total: 4.13s	remaining: 1.64s
143:	learn: 8.1850701	total: 4.16s	remaining: 1.62s
144:	learn: 8.1340056	total: 4.2s	remaining: 1.59s
145:	learn: 8.0755445	total: 4.22s	remaining: 1.56s
146:	learn: 8.0340646	total: 4.25s	remaining: 1.53s
147:	learn: 7.9794679	total: 4.28s	remaining: 1.5s
148:	learn: 7.9112254	total: 4.3s	remaining: 1.47s
149:	learn: 7.8581019	total: 4.33s	remaining: 1.44s
150:	learn: 7.8080015	total: 4.36s	remaining: 1.42s
151:	learn: 7.7571579	total: 4.39s	remaining: 1.39s
152:	learn: 7.6995804	total: 4.43s	remaining: 1.36s
153:	learn: 7.6356250	total: 4.45s	remaining: 1.33s
154:	learn: 7.5942229	total: 4.48s	remaining: 1.3s
155:	learn: 7.5376240	total: 4.51s	remaining: 1.27s
156:	learn: 7.4951124	total: 4.54s	remaining: 1.24s
157:	learn: 7.4552667	total: 4.57s	remaining: 1.21s
158:	learn: 7.3992394	total: 4.6s	remaining: 1.19s
159:	learn: 7.3647438	total: 4.63s	remaining: 1.16s
160:	learn: 7.3092700	total: 4.66s	remaining: 1.13s
161:	learn: 7.2770042	total: 4.69s	remaining: 1.1s
162:	learn: 7.2585241	total: 4.72s	remaining: 1.07s
163:	learn: 7.2417757	total: 4.74s	remaining: 1.04s
164:	learn: 7.1943168	total: 4.77s	remaining: 1.01s
165:	learn: 7.1744675	total: 4.8s	remaining: 983ms
166:	learn: 7.1343559	total: 4.83s	remaining: 955ms
167:	learn: 7.1028128	total: 4.86s	remaining: 926ms
168:	learn: 7.0573171	total: 4.89s	remaining: 898ms
169:	learn: 6.9993075	total: 4.92s	remaining: 869ms
170:	learn: 6.9513510	total: 4.95s	remaining: 839ms
171:	learn: 6.9058701	total: 4.98s	remaining: 810ms
172:	learn: 6.8569156	total: 5s	remaining: 781ms
173:	learn: 6.8113961	total: 5.03s	remaining: 752ms
174:	learn: 6.7709772	total: 5.07s	remaining: 724ms
175:	learn: 6.7315058	total: 5.1s	remaining: 695ms
176:	learn: 6.6835509	total: 5.13s	remaining: 666ms
177:	learn: 6.6493245	total: 5.16s	remaining: 638ms
178:	learn: 6.6189204	total: 5.19s	remaining: 609ms
179:	learn: 6.5819690	total: 5.22s	remaining: 580ms
180:	learn: 6.5491324	total: 5.25s	remaining: 551ms
181:	learn: 6.5086060	total: 5.28s	remaining: 522ms
182:	learn: 6.4648748	total: 5.31s	remaining: 493ms
183:	learn: 6.4368748	total: 5.34s	remaining: 464ms
184:	learn: 6.4016410	total: 5.36s	remaining: 435ms
185:	learn: 6.3655740	total: 5.4s	remaining: 406ms
186:	learn: 6.3236780	total: 5.42s	remaining: 377ms
187:	learn: 6.2898164	total: 5.45s	remaining: 348ms
188:	learn: 6.2551311	total: 5.48s	remaining: 319ms
189:	learn: 6.2414730	total: 5.52s	remaining: 290ms
190:	learn: 6.2134145	total: 5.55s	remaining: 261ms
191:	learn: 6.1510986	total: 5.58s	remaining: 232ms
192:	learn: 6.1135210	total: 5.6s	remaining: 203ms
193:	learn: 6.0698374	total: 5.64s	remaining: 174ms
194:	learn: 6.0286009	total: 5.66s	remaining: 145ms
195:	learn: 5.9974556	total: 5.69s	remaining: 116ms
196:	learn: 5.9582225	total: 5.73s	remaining: 87.2ms
197:	learn: 5.9251268	total: 5.75s	remaining: 58.1ms
198:	learn: 5.9012186	total: 5.78s	remaining: 29.1ms
199:	learn: 5.8691774	total: 5.81s	remaining: 0us
0:	learn: 46.4051117	total: 26.8ms	remaining: 5.34s
1:	learn: 45.3311808	total: 64.6ms	remaining: 6.4s
2:	learn: 44.2355531	total: 98.3ms	remaining: 6.46s
3:	learn: 43.2958733	total: 125ms	remaining: 6.15s
4:	learn: 42.3536589	total: 153ms	remaining: 5.97s
5:	learn: 41.4859961	total: 181ms	remaining: 5.86s
6:	learn: 40.5534910	total: 207ms	remaining: 5.71s
7:	learn: 39.7060893	total: 234ms	remaining: 5.62s
8:	learn: 38.8439981	total: 262ms	remaining: 5.56s
9:	learn: 38.2669414	total: 303ms	remaining: 5.75s
10:	learn: 37.6759770	total: 332ms	remaining: 5.7s
11:	learn: 36.9869277	total: 359ms	remaining: 5.62s
12:	learn: 36.3901257	total: 386ms	remaining: 5.55s
13:	learn: 35.7917302	total: 413ms	remaining: 5.48s
14:	learn: 35.2174952	total: 440ms	remaining: 5.43s
15:	learn: 34.5826754	total: 468ms	remaining: 5.38s
16:	learn: 34.0874316	total: 495ms	remaining: 5.33s
17:	learn: 33.5003568	total: 534ms	remaining: 5.4s
18:	learn: 32.7934787	total: 572ms	remaining: 5.45s
19:	learn: 31.9083319	total: 603ms	remaining: 5.43s
20:	learn: 31.2930063	total: 634ms	remaining: 5.41s
21:	learn: 30.7897560	total: 661ms	remaining: 5.35s
22:	learn: 30.1479920	total: 688ms	remaining: 5.29s
23:	learn: 29.5764365	total: 716ms	remaining: 5.25s
24:	learn: 29.0910861	total: 750ms	remaining: 5.25s
25:	learn: 28.4397299	total: 778ms	remaining: 5.21s
26:	learn: 27.8228369	total: 812ms	remaining: 5.2s
27:	learn: 27.3877661	total: 839ms	remaining: 5.16s
28:	learn: 26.9261524	total: 865ms	remaining: 5.1s
29:	learn: 26.5038338	total: 892ms	remaining: 5.05s
30:	learn: 26.2151044	total: 919ms	remaining: 5.01s
31:	learn: 25.8170458	total: 947ms	remaining: 4.97s
32:	learn: 25.4852966	total: 985ms	remaining: 4.99s
33:	learn: 25.0288024	total: 1.01s	remaining: 4.95s
34:	learn: 24.6327933	total: 1.05s	remaining: 4.94s
35:	learn: 24.1334075	total: 1.08s	remaining: 4.9s
36:	learn: 23.7648659	total: 1.1s	remaining: 4.86s
37:	learn: 23.4059601	total: 1.13s	remaining: 4.82s
38:	learn: 23.0824106	total: 1.16s	remaining: 4.78s
39:	learn: 22.8059757	total: 1.19s	remaining: 4.75s
40:	learn: 22.5306226	total: 1.22s	remaining: 4.74s
41:	learn: 22.2219847	total: 1.25s	remaining: 4.7s
42:	learn: 21.8972204	total: 1.28s	remaining: 4.68s
43:	learn: 21.5236072	total: 1.31s	remaining: 4.64s
44:	learn: 21.2553689	total: 1.34s	remaining: 4.6s
45:	learn: 20.8401171	total: 1.36s	remaining: 4.57s
46:	learn: 20.5752228	total: 1.39s	remaining: 4.53s
47:	learn: 20.3528352	total: 1.43s	remaining: 4.53s
48:	learn: 20.1615025	total: 1.46s	remaining: 4.49s
49:	learn: 19.8957215	total: 1.49s	remaining: 4.46s
50:	learn: 19.6512654	total: 1.51s	remaining: 4.42s
51:	learn: 19.4334583	total: 1.55s	remaining: 4.41s
52:	learn: 19.1886760	total: 1.58s	remaining: 4.37s
53:	learn: 18.8797014	total: 1.6s	remaining: 4.33s
54:	learn: 18.6166876	total: 1.64s	remaining: 4.32s
55:	learn: 18.3791724	total: 1.67s	remaining: 4.28s
56:	learn: 18.2115659	total: 1.69s	remaining: 4.25s
57:	learn: 18.0722693	total: 1.72s	remaining: 4.21s
58:	learn: 17.8852192	total: 1.75s	remaining: 4.17s
59:	learn: 17.7272446	total: 1.78s	remaining: 4.15s
60:	learn: 17.4942483	total: 1.81s	remaining: 4.12s
61:	learn: 17.3054937	total: 1.84s	remaining: 4.1s
62:	learn: 17.1549585	total: 1.87s	remaining: 4.07s
63:	learn: 16.9975916	total: 1.9s	remaining: 4.04s
64:	learn: 16.8858589	total: 1.93s	remaining: 4s
65:	learn: 16.6701164	total: 1.96s	remaining: 3.97s
66:	learn: 16.5500620	total: 1.98s	remaining: 3.93s
67:	learn: 16.3458753	total: 2.01s	remaining: 3.91s
68:	learn: 16.1878838	total: 2.04s	remaining: 3.88s
69:	learn: 16.0305134	total: 2.08s	remaining: 3.85s
70:	learn: 15.8487627	total: 2.1s	remaining: 3.82s
71:	learn: 15.6683766	total: 2.13s	remaining: 3.79s
72:	learn: 15.5077137	total: 2.16s	remaining: 3.75s
73:	learn: 15.4103876	total: 2.18s	remaining: 3.72s
74:	learn: 15.2840688	total: 2.21s	remaining: 3.68s
75:	learn: 15.1507590	total: 2.24s	remaining: 3.65s
76:	learn: 14.9825337	total: 2.27s	remaining: 3.63s
77:	learn: 14.8044062	total: 2.3s	remaining: 3.6s
78:	learn: 14.6711374	total: 2.34s	remaining: 3.58s
79:	learn: 14.5318692	total: 2.37s	remaining: 3.55s
80:	learn: 14.4181194	total: 2.39s	remaining: 3.52s
81:	learn: 14.2559532	total: 2.42s	remaining: 3.48s
82:	learn: 14.1026042	total: 2.45s	remaining: 3.45s
83:	learn: 13.9184961	total: 2.48s	remaining: 3.42s
84:	learn: 13.7905556	total: 2.51s	remaining: 3.4s
85:	learn: 13.6755541	total: 2.55s	remaining: 3.38s
86:	learn: 13.5644560	total: 2.57s	remaining: 3.34s
87:	learn: 13.4412378	total: 2.6s	remaining: 3.31s
88:	learn: 13.3271667	total: 2.63s	remaining: 3.28s
89:	learn: 13.2634410	total: 2.65s	remaining: 3.24s
90:	learn: 13.1463553	total: 2.68s	remaining: 3.21s
91:	learn: 13.0389944	total: 2.71s	remaining: 3.19s
92:	learn: 12.9605830	total: 2.75s	remaining: 3.17s
93:	learn: 12.8819119	total: 2.78s	remaining: 3.13s
94:	learn: 12.8038551	total: 2.81s	remaining: 3.1s
95:	learn: 12.7013498	total: 2.83s	remaining: 3.07s
96:	learn: 12.6011350	total: 2.86s	remaining: 3.04s
97:	learn: 12.4949377	total: 2.89s	remaining: 3.01s
98:	learn: 12.3808699	total: 2.92s	remaining: 2.98s
99:	learn: 12.2551864	total: 2.94s	remaining: 2.94s
100:	learn: 12.1590434	total: 2.99s	remaining: 2.93s
101:	learn: 12.0701882	total: 3.01s	remaining: 2.9s
102:	learn: 11.9724049	total: 3.04s	remaining: 2.86s
103:	learn: 11.9003953	total: 3.07s	remaining: 2.83s
104:	learn: 11.8213364	total: 3.09s	remaining: 2.8s
105:	learn: 11.7342445	total: 3.12s	remaining: 2.77s
106:	learn: 11.6402394	total: 3.15s	remaining: 2.74s
107:	learn: 11.5251390	total: 3.18s	remaining: 2.71s
108:	learn: 11.4184182	total: 3.21s	remaining: 2.68s
109:	learn: 11.3344360	total: 3.25s	remaining: 2.66s
110:	learn: 11.2622852	total: 3.27s	remaining: 2.63s
111:	learn: 11.1790951	total: 3.3s	remaining: 2.6s
112:	learn: 11.0982174	total: 3.33s	remaining: 2.56s
113:	learn: 11.0028461	total: 3.36s	remaining: 2.54s
114:	learn: 10.9167653	total: 3.39s	remaining: 2.51s
115:	learn: 10.8493708	total: 3.42s	remaining: 2.48s
116:	learn: 10.7763226	total: 3.45s	remaining: 2.45s
117:	learn: 10.7057684	total: 3.48s	remaining: 2.42s
118:	learn: 10.6264693	total: 3.51s	remaining: 2.39s
119:	learn: 10.5711538	total: 3.54s	remaining: 2.36s
120:	learn: 10.4653048	total: 3.56s	remaining: 2.33s
121:	learn: 10.3852668	total: 3.6s	remaining: 2.3s
122:	learn: 10.3250160	total: 3.63s	remaining: 2.27s
123:	learn: 10.2399308	total: 3.66s	remaining: 2.24s
124:	learn: 10.1420007	total: 3.68s	remaining: 2.21s
125:	learn: 10.0732762	total: 3.72s	remaining: 2.18s
126:	learn: 9.9940788	total: 3.75s	remaining: 2.15s
127:	learn: 9.9355996	total: 3.77s	remaining: 2.12s
128:	learn: 9.8497364	total: 3.8s	remaining: 2.09s
129:	learn: 9.7895966	total: 3.83s	remaining: 2.06s
130:	learn: 9.6875558	total: 3.86s	remaining: 2.03s
131:	learn: 9.6104126	total: 3.89s	remaining: 2s
132:	learn: 9.5492690	total: 3.91s	remaining: 1.97s
133:	learn: 9.4721709	total: 3.95s	remaining: 1.94s
134:	learn: 9.4178189	total: 3.97s	remaining: 1.91s
135:	learn: 9.3728501	total: 4s	remaining: 1.88s
136:	learn: 9.3177755	total: 4.03s	remaining: 1.85s
137:	learn: 9.2373853	total: 4.07s	remaining: 1.83s
138:	learn: 9.1782253	total: 4.09s	remaining: 1.8s
139:	learn: 9.0990070	total: 4.12s	remaining: 1.77s
140:	learn: 9.0322138	total: 4.15s	remaining: 1.74s
141:	learn: 8.9513335	total: 4.18s	remaining: 1.71s
142:	learn: 8.9060598	total: 4.21s	remaining: 1.68s
143:	learn: 8.8583333	total: 4.24s	remaining: 1.65s
144:	learn: 8.7916062	total: 4.27s	remaining: 1.62s
145:	learn: 8.7421371	total: 4.3s	remaining: 1.59s
146:	learn: 8.6831819	total: 4.33s	remaining: 1.56s
147:	learn: 8.6357395	total: 4.36s	remaining: 1.53s
148:	learn: 8.5967062	total: 4.38s	remaining: 1.5s
149:	learn: 8.5402882	total: 4.41s	remaining: 1.47s
150:	learn: 8.5035819	total: 4.45s	remaining: 1.44s
151:	learn: 8.4428420	total: 4.48s	remaining: 1.42s
152:	learn: 8.3862981	total: 4.51s	remaining: 1.39s
153:	learn: 8.3449516	total: 4.54s	remaining: 1.35s
154:	learn: 8.2974681	total: 4.57s	remaining: 1.33s
155:	learn: 8.2445471	total: 4.59s	remaining: 1.29s
156:	learn: 8.1944830	total: 4.62s	remaining: 1.27s
157:	learn: 8.1233294	total: 4.65s	remaining: 1.24s
158:	learn: 8.0686011	total: 4.68s	remaining: 1.21s
159:	learn: 8.0017590	total: 4.72s	remaining: 1.18s
160:	learn: 7.9684685	total: 4.75s	remaining: 1.15s
161:	learn: 7.9203748	total: 4.77s	remaining: 1.12s
162:	learn: 7.8498597	total: 4.8s	remaining: 1.09s
163:	learn: 7.8013320	total: 4.83s	remaining: 1.06s
164:	learn: 7.7409599	total: 4.85s	remaining: 1.03s
165:	learn: 7.7062957	total: 4.88s	remaining: 1000ms
166:	learn: 7.6445487	total: 4.92s	remaining: 973ms
167:	learn: 7.5991646	total: 4.96s	remaining: 944ms
168:	learn: 7.5571767	total: 4.98s	remaining: 914ms
169:	learn: 7.5269914	total: 5.01s	remaining: 884ms
170:	learn: 7.4754414	total: 5.04s	remaining: 855ms
171:	learn: 7.4256871	total: 5.07s	remaining: 825ms
172:	learn: 7.3831192	total: 5.09s	remaining: 795ms
173:	learn: 7.3552148	total: 5.12s	remaining: 766ms
174:	learn: 7.3096199	total: 5.16s	remaining: 737ms
175:	learn: 7.2317367	total: 5.19s	remaining: 708ms
176:	learn: 7.2010444	total: 5.22s	remaining: 678ms
177:	learn: 7.1509220	total: 5.25s	remaining: 648ms
178:	learn: 7.0958885	total: 5.27s	remaining: 619ms
179:	learn: 7.0364497	total: 5.3s	remaining: 589ms
180:	learn: 7.0019327	total: 5.33s	remaining: 559ms
181:	learn: 6.9673170	total: 5.36s	remaining: 530ms
182:	learn: 6.9126684	total: 5.39s	remaining: 501ms
183:	learn: 6.8712651	total: 5.43s	remaining: 472ms
184:	learn: 6.8295644	total: 5.46s	remaining: 442ms
185:	learn: 6.7901113	total: 5.48s	remaining: 413ms
186:	learn: 6.7460089	total: 5.51s	remaining: 383ms
187:	learn: 6.7088216	total: 5.54s	remaining: 354ms
188:	learn: 6.6627755	total: 5.57s	remaining: 324ms
189:	learn: 6.6265720	total: 5.6s	remaining: 295ms
190:	learn: 6.5856555	total: 5.63s	remaining: 265ms
191:	learn: 6.5557671	total: 5.66s	remaining: 236ms
192:	learn: 6.5162767	total: 5.69s	remaining: 206ms
193:	learn: 6.4897095	total: 5.72s	remaining: 177ms
194:	learn: 6.4501228	total: 5.74s	remaining: 147ms
195:	learn: 6.4130432	total: 5.77s	remaining: 118ms
196:	learn: 6.3785503	total: 5.8s	remaining: 88.3ms
197:	learn: 6.3359295	total: 5.84s	remaining: 59ms
198:	learn: 6.3074660	total: 5.87s	remaining: 29.5ms
199:	learn: 6.2771006	total: 5.9s	remaining: 0us
0:	learn: 45.9785919	total: 26.7ms	remaining: 5.32s
1:	learn: 44.9581939	total: 54.3ms	remaining: 5.38s
2:	learn: 43.9091127	total: 81.4ms	remaining: 5.34s
3:	learn: 42.7984962	total: 117ms	remaining: 5.71s
4:	learn: 41.9715841	total: 144ms	remaining: 5.63s
5:	learn: 41.2949683	total: 171ms	remaining: 5.53s
6:	learn: 40.4494730	total: 198ms	remaining: 5.46s
7:	learn: 39.6906390	total: 225ms	remaining: 5.41s
8:	learn: 38.6718680	total: 262ms	remaining: 5.57s
9:	learn: 37.9176664	total: 290ms	remaining: 5.52s
10:	learn: 36.9169551	total: 327ms	remaining: 5.61s
11:	learn: 36.1670753	total: 354ms	remaining: 5.54s
12:	learn: 35.6362382	total: 383ms	remaining: 5.5s
13:	learn: 35.0764262	total: 410ms	remaining: 5.45s
14:	learn: 34.5241023	total: 438ms	remaining: 5.4s
15:	learn: 33.9112917	total: 466ms	remaining: 5.36s
16:	learn: 33.1023896	total: 502ms	remaining: 5.4s
17:	learn: 32.5227767	total: 535ms	remaining: 5.41s
18:	learn: 31.9685385	total: 562ms	remaining: 5.36s
19:	learn: 31.4048780	total: 589ms	remaining: 5.3s
20:	learn: 30.9173286	total: 616ms	remaining: 5.25s
21:	learn: 30.4889417	total: 643ms	remaining: 5.2s
22:	learn: 29.9957742	total: 669ms	remaining: 5.15s
23:	learn: 29.5532403	total: 695ms	remaining: 5.1s
24:	learn: 29.0869023	total: 730ms	remaining: 5.11s
25:	learn: 28.7131197	total: 759ms	remaining: 5.08s
26:	learn: 28.2622970	total: 796ms	remaining: 5.1s
27:	learn: 27.7045502	total: 824ms	remaining: 5.06s
28:	learn: 27.2689985	total: 852ms	remaining: 5.02s
29:	learn: 26.8937625	total: 878ms	remaining: 4.98s
30:	learn: 26.4723305	total: 905ms	remaining: 4.93s
31:	learn: 26.0613360	total: 934ms	remaining: 4.9s
32:	learn: 25.7354314	total: 961ms	remaining: 4.86s
33:	learn: 25.4365901	total: 997ms	remaining: 4.87s
34:	learn: 25.0579971	total: 1.03s	remaining: 4.85s
35:	learn: 24.6756006	total: 1.06s	remaining: 4.82s
36:	learn: 24.3211908	total: 1.08s	remaining: 4.77s
37:	learn: 23.8567945	total: 1.11s	remaining: 4.73s
38:	learn: 23.5856536	total: 1.14s	remaining: 4.69s
39:	learn: 23.3552361	total: 1.16s	remaining: 4.65s
40:	learn: 23.1477272	total: 1.19s	remaining: 4.62s
41:	learn: 22.8497360	total: 1.22s	remaining: 4.61s
42:	learn: 22.5809198	total: 1.26s	remaining: 4.62s
43:	learn: 22.2522495	total: 1.29s	remaining: 4.58s
44:	learn: 21.9258917	total: 1.32s	remaining: 4.54s
45:	learn: 21.6933205	total: 1.34s	remaining: 4.5s
46:	learn: 21.4423031	total: 1.37s	remaining: 4.47s
47:	learn: 21.1573471	total: 1.4s	remaining: 4.43s
48:	learn: 20.9677940	total: 1.43s	remaining: 4.4s
49:	learn: 20.7417189	total: 1.47s	remaining: 4.4s
50:	learn: 20.5010597	total: 1.5s	remaining: 4.37s
51:	learn: 20.2654074	total: 1.52s	remaining: 4.33s
52:	learn: 20.0568837	total: 1.55s	remaining: 4.3s
53:	learn: 19.8187698	total: 1.58s	remaining: 4.26s
54:	learn: 19.5549335	total: 1.6s	remaining: 4.23s
55:	learn: 19.4061951	total: 1.63s	remaining: 4.19s
56:	learn: 19.2259890	total: 1.66s	remaining: 4.16s
57:	learn: 19.0335945	total: 1.69s	remaining: 4.14s
58:	learn: 18.8545847	total: 1.73s	remaining: 4.13s
59:	learn: 18.7070231	total: 1.76s	remaining: 4.1s
60:	learn: 18.5923917	total: 1.79s	remaining: 4.07s
61:	learn: 18.4429719	total: 1.81s	remaining: 4.04s
62:	learn: 18.2825510	total: 1.84s	remaining: 4s
63:	learn: 18.1358848	total: 1.87s	remaining: 3.97s
64:	learn: 18.0102396	total: 1.9s	remaining: 3.94s
65:	learn: 17.7782817	total: 1.93s	remaining: 3.92s
66:	learn: 17.6293839	total: 1.96s	remaining: 3.9s
67:	learn: 17.4950966	total: 1.99s	remaining: 3.86s
68:	learn: 17.3213878	total: 2.02s	remaining: 3.83s
69:	learn: 17.1833201	total: 2.04s	remaining: 3.79s
70:	learn: 17.0063684	total: 2.07s	remaining: 3.76s
71:	learn: 16.8322437	total: 2.09s	remaining: 3.72s
72:	learn: 16.7058593	total: 2.12s	remaining: 3.69s
73:	learn: 16.5781086	total: 2.15s	remaining: 3.67s
74:	learn: 16.4536927	total: 2.2s	remaining: 3.66s
75:	learn: 16.3555875	total: 2.22s	remaining: 3.63s
76:	learn: 16.2112488	total: 2.25s	remaining: 3.6s
77:	learn: 16.0933871	total: 2.28s	remaining: 3.56s
78:	learn: 15.9482175	total: 2.31s	remaining: 3.53s
79:	learn: 15.8457078	total: 2.33s	remaining: 3.5s
80:	learn: 15.7756914	total: 2.36s	remaining: 3.47s
81:	learn: 15.5938239	total: 2.39s	remaining: 3.44s
82:	learn: 15.4879475	total: 2.42s	remaining: 3.41s
83:	learn: 15.3387701	total: 2.45s	remaining: 3.39s
84:	learn: 15.2647310	total: 2.48s	remaining: 3.36s
85:	learn: 15.1407574	total: 2.51s	remaining: 3.32s
86:	learn: 15.0412643	total: 2.53s	remaining: 3.29s
87:	learn: 14.9524567	total: 2.57s	remaining: 3.27s
88:	learn: 14.8463137	total: 2.6s	remaining: 3.24s
89:	learn: 14.8165046	total: 2.62s	remaining: 3.21s
90:	learn: 14.7199993	total: 2.65s	remaining: 3.18s
91:	learn: 14.5961218	total: 2.69s	remaining: 3.16s
92:	learn: 14.5344312	total: 2.72s	remaining: 3.13s
93:	learn: 14.4678730	total: 2.74s	remaining: 3.09s
94:	learn: 14.3960901	total: 2.77s	remaining: 3.06s
95:	learn: 14.3119443	total: 2.81s	remaining: 3.04s
96:	learn: 14.2240868	total: 2.83s	remaining: 3.01s
97:	learn: 14.1399837	total: 2.86s	remaining: 2.98s
98:	learn: 14.0533759	total: 2.89s	remaining: 2.95s
99:	learn: 13.9950351	total: 2.92s	remaining: 2.92s
100:	learn: 13.9668089	total: 2.95s	remaining: 2.89s
101:	learn: 13.8990424	total: 2.98s	remaining: 2.86s
102:	learn: 13.8340683	total: 3.01s	remaining: 2.83s
103:	learn: 13.7327129	total: 3.04s	remaining: 2.81s
104:	learn: 13.6486423	total: 3.07s	remaining: 2.78s
105:	learn: 13.5711702	total: 3.1s	remaining: 2.75s
106:	learn: 13.4854890	total: 3.12s	remaining: 2.71s
107:	learn: 13.4388981	total: 3.15s	remaining: 2.68s
108:	learn: 13.3841681	total: 3.18s	remaining: 2.66s
109:	learn: 13.3413203	total: 3.21s	remaining: 2.63s
110:	learn: 13.2546145	total: 3.25s	remaining: 2.6s
111:	learn: 13.1224088	total: 3.27s	remaining: 2.57s
112:	learn: 13.0483840	total: 3.3s	remaining: 2.54s
113:	learn: 12.9420766	total: 3.33s	remaining: 2.51s
114:	learn: 12.8450150	total: 3.35s	remaining: 2.48s
115:	learn: 12.7888251	total: 3.38s	remaining: 2.45s
116:	learn: 12.6799890	total: 3.42s	remaining: 2.42s
117:	learn: 12.5945228	total: 3.45s	remaining: 2.4s
118:	learn: 12.5339805	total: 3.49s	remaining: 2.38s
119:	learn: 12.4793198	total: 3.52s	remaining: 2.35s
120:	learn: 12.3781390	total: 3.55s	remaining: 2.32s
121:	learn: 12.2893424	total: 3.58s	remaining: 2.29s
122:	learn: 12.2616723	total: 3.61s	remaining: 2.26s
123:	learn: 12.1746282	total: 3.63s	remaining: 2.23s
124:	learn: 12.1196215	total: 3.66s	remaining: 2.2s
125:	learn: 12.0370415	total: 3.7s	remaining: 2.17s
126:	learn: 11.9415303	total: 3.73s	remaining: 2.14s
127:	learn: 11.8996847	total: 3.76s	remaining: 2.11s
128:	learn: 11.8076357	total: 3.79s	remaining: 2.08s
129:	learn: 11.7251501	total: 3.81s	remaining: 2.05s
130:	learn: 11.5876348	total: 3.84s	remaining: 2.02s
131:	learn: 11.5558440	total: 3.87s	remaining: 1.99s
132:	learn: 11.5195517	total: 3.9s	remaining: 1.96s
133:	learn: 11.4063126	total: 3.94s	remaining: 1.94s
134:	learn: 11.3308352	total: 3.97s	remaining: 1.91s
135:	learn: 11.2558622	total: 4s	remaining: 1.88s
136:	learn: 11.1852237	total: 4.02s	remaining: 1.85s
137:	learn: 11.1192132	total: 4.05s	remaining: 1.82s
138:	learn: 11.0556272	total: 4.08s	remaining: 1.79s
139:	learn: 10.9786475	total: 4.11s	remaining: 1.76s
140:	learn: 10.8902191	total: 4.14s	remaining: 1.73s
141:	learn: 10.7700682	total: 4.17s	remaining: 1.7s
142:	learn: 10.7124196	total: 4.2s	remaining: 1.67s
143:	learn: 10.6306072	total: 4.23s	remaining: 1.64s
144:	learn: 10.5643229	total: 4.25s	remaining: 1.61s
145:	learn: 10.5265368	total: 4.28s	remaining: 1.58s
146:	learn: 10.4558055	total: 4.31s	remaining: 1.55s
147:	learn: 10.4039694	total: 4.33s	remaining: 1.52s
148:	learn: 10.3408237	total: 4.37s	remaining: 1.5s
149:	learn: 10.2627966	total: 4.4s	remaining: 1.47s
150:	learn: 10.2002141	total: 4.44s	remaining: 1.44s
151:	learn: 10.1626210	total: 4.47s	remaining: 1.41s
152:	learn: 10.0834794	total: 4.5s	remaining: 1.38s
153:	learn: 9.9995676	total: 4.52s	remaining: 1.35s
154:	learn: 9.9436133	total: 4.55s	remaining: 1.32s
155:	learn: 9.8673146	total: 4.58s	remaining: 1.29s
156:	learn: 9.8084429	total: 4.61s	remaining: 1.26s
157:	learn: 9.7721516	total: 4.63s	remaining: 1.23s
158:	learn: 9.7203234	total: 4.67s	remaining: 1.2s
159:	learn: 9.6884849	total: 4.7s	remaining: 1.17s
160:	learn: 9.6265782	total: 4.72s	remaining: 1.14s
161:	learn: 9.5698813	total: 4.75s	remaining: 1.11s
162:	learn: 9.5196743	total: 4.78s	remaining: 1.08s
163:	learn: 9.4594680	total: 4.82s	remaining: 1.06s
164:	learn: 9.3614639	total: 4.84s	remaining: 1.03s
165:	learn: 9.3347501	total: 4.87s	remaining: 998ms
166:	learn: 9.2855497	total: 4.91s	remaining: 970ms
167:	learn: 9.2245774	total: 4.93s	remaining: 940ms
168:	learn: 9.1420534	total: 4.96s	remaining: 910ms
169:	learn: 9.1004496	total: 4.99s	remaining: 881ms
170:	learn: 9.0266486	total: 5.02s	remaining: 851ms
171:	learn: 8.9919149	total: 5.05s	remaining: 823ms
172:	learn: 8.9495456	total: 5.08s	remaining: 793ms
173:	learn: 8.8972894	total: 5.11s	remaining: 763ms
174:	learn: 8.8040524	total: 5.13s	remaining: 734ms
175:	learn: 8.6901310	total: 5.17s	remaining: 705ms
176:	learn: 8.6469342	total: 5.2s	remaining: 675ms
177:	learn: 8.5999257	total: 5.22s	remaining: 646ms
178:	learn: 8.5454570	total: 5.26s	remaining: 617ms
179:	learn: 8.4374612	total: 5.29s	remaining: 587ms
180:	learn: 8.3873914	total: 5.31s	remaining: 558ms
181:	learn: 8.3287576	total: 5.34s	remaining: 528ms
182:	learn: 8.2760159	total: 5.37s	remaining: 499ms
183:	learn: 8.2249773	total: 5.4s	remaining: 470ms
184:	learn: 8.1848138	total: 5.43s	remaining: 440ms
185:	learn: 8.1305667	total: 5.46s	remaining: 411ms
186:	learn: 8.0871204	total: 5.49s	remaining: 382ms
187:	learn: 8.0585067	total: 5.52s	remaining: 352ms
188:	learn: 7.9992910	total: 5.55s	remaining: 323ms
189:	learn: 7.9679618	total: 5.58s	remaining: 293ms
190:	learn: 7.9334248	total: 5.6s	remaining: 264ms
191:	learn: 7.8768409	total: 5.64s	remaining: 235ms
192:	learn: 7.8241554	total: 5.66s	remaining: 205ms
193:	learn: 7.7761628	total: 5.69s	remaining: 176ms
194:	learn: 7.7243412	total: 5.73s	remaining: 147ms
195:	learn: 7.6744569	total: 5.75s	remaining: 117ms
196:	learn: 7.6122525	total: 5.78s	remaining: 88.1ms
197:	learn: 7.5666339	total: 5.81s	remaining: 58.7ms
198:	learn: 7.5357403	total: 5.84s	remaining: 29.3ms
199:	learn: 7.5042596	total: 5.87s	remaining: 0us
0:	learn: 46.6705057	total: 36.1ms	remaining: 7.18s
1:	learn: 45.6228942	total: 62.3ms	remaining: 6.17s
2:	learn: 44.6011857	total: 89.9ms	remaining: 5.9s
3:	learn: 43.4944730	total: 117ms	remaining: 5.74s
4:	learn: 42.7214061	total: 144ms	remaining: 5.61s
5:	learn: 41.8717386	total: 170ms	remaining: 5.5s
6:	learn: 41.0828465	total: 197ms	remaining: 5.43s
7:	learn: 40.3693162	total: 224ms	remaining: 5.37s
8:	learn: 39.5504439	total: 256ms	remaining: 5.44s
9:	learn: 38.8028188	total: 284ms	remaining: 5.39s
10:	learn: 37.8021607	total: 317ms	remaining: 5.44s
11:	learn: 37.0316047	total: 337ms	remaining: 5.28s
12:	learn: 36.4697449	total: 364ms	remaining: 5.23s
13:	learn: 35.7324928	total: 392ms	remaining: 5.21s
14:	learn: 35.0670311	total: 421ms	remaining: 5.19s
15:	learn: 34.5416158	total: 448ms	remaining: 5.15s
16:	learn: 33.8060657	total: 474ms	remaining: 5.1s
17:	learn: 33.2764048	total: 510ms	remaining: 5.16s
18:	learn: 32.7985056	total: 545ms	remaining: 5.19s
19:	learn: 32.2684820	total: 572ms	remaining: 5.15s
20:	learn: 31.7897893	total: 599ms	remaining: 5.1s
21:	learn: 31.3010339	total: 625ms	remaining: 5.06s
22:	learn: 30.8508227	total: 652ms	remaining: 5.01s
23:	learn: 30.3168654	total: 679ms	remaining: 4.98s
24:	learn: 29.8575867	total: 706ms	remaining: 4.94s
25:	learn: 29.3623615	total: 751ms	remaining: 5.02s
26:	learn: 28.9848451	total: 778ms	remaining: 4.99s
27:	learn: 28.6994426	total: 805ms	remaining: 4.95s
28:	learn: 28.2896051	total: 833ms	remaining: 4.91s
29:	learn: 27.8326651	total: 860ms	remaining: 4.87s
30:	learn: 27.3512730	total: 888ms	remaining: 4.84s
31:	learn: 27.0818307	total: 916ms	remaining: 4.81s
32:	learn: 26.6738197	total: 946ms	remaining: 4.79s
33:	learn: 26.3390302	total: 977ms	remaining: 4.77s
34:	learn: 25.9635842	total: 1.01s	remaining: 4.77s
35:	learn: 25.6937525	total: 1.04s	remaining: 4.73s
36:	learn: 25.3141815	total: 1.06s	remaining: 4.69s
37:	learn: 25.0097733	total: 1.09s	remaining: 4.66s
38:	learn: 24.7491704	total: 1.12s	remaining: 4.62s
39:	learn: 24.3823525	total: 1.15s	remaining: 4.59s
40:	learn: 24.3094117	total: 1.15s	remaining: 4.46s
41:	learn: 23.9596755	total: 1.19s	remaining: 4.46s
42:	learn: 23.6550442	total: 1.21s	remaining: 4.43s
43:	learn: 23.4055797	total: 1.25s	remaining: 4.43s
44:	learn: 23.2484825	total: 1.28s	remaining: 4.4s
45:	learn: 22.9509665	total: 1.3s	remaining: 4.37s
46:	learn: 22.7288116	total: 1.33s	remaining: 4.33s
47:	learn: 22.4239204	total: 1.36s	remaining: 4.3s
48:	learn: 22.2223864	total: 1.38s	remaining: 4.26s
49:	learn: 21.9306439	total: 1.42s	remaining: 4.25s
50:	learn: 21.7134680	total: 1.44s	remaining: 4.22s
51:	learn: 21.6063065	total: 1.47s	remaining: 4.18s
52:	learn: 21.2300249	total: 1.5s	remaining: 4.17s
53:	learn: 20.9961502	total: 1.53s	remaining: 4.14s
54:	learn: 20.7428171	total: 1.56s	remaining: 4.11s
55:	learn: 20.5043370	total: 1.58s	remaining: 4.08s
56:	learn: 20.3343057	total: 1.62s	remaining: 4.07s
57:	learn: 20.1503869	total: 1.65s	remaining: 4.04s
58:	learn: 19.9571627	total: 1.68s	remaining: 4.01s
59:	learn: 19.7166454	total: 1.71s	remaining: 3.98s
60:	learn: 19.5460796	total: 1.74s	remaining: 3.96s
61:	learn: 19.3319423	total: 1.77s	remaining: 3.93s
62:	learn: 19.1518266	total: 1.79s	remaining: 3.9s
63:	learn: 18.9801712	total: 1.82s	remaining: 3.87s
64:	learn: 18.8325481	total: 1.86s	remaining: 3.86s
65:	learn: 18.6545881	total: 1.89s	remaining: 3.83s
66:	learn: 18.4172473	total: 1.91s	remaining: 3.8s
67:	learn: 18.2145056	total: 1.94s	remaining: 3.76s
68:	learn: 18.0294470	total: 1.97s	remaining: 3.74s
69:	learn: 17.8764636	total: 2s	remaining: 3.71s
70:	learn: 17.7552517	total: 2.03s	remaining: 3.68s
71:	learn: 17.6134211	total: 2.05s	remaining: 3.65s
72:	learn: 17.4607644	total: 2.09s	remaining: 3.64s
73:	learn: 17.3425090	total: 2.12s	remaining: 3.61s
74:	learn: 17.2255418	total: 2.15s	remaining: 3.58s
75:	learn: 17.0908608	total: 2.18s	remaining: 3.55s
76:	learn: 16.9227981	total: 2.2s	remaining: 3.52s
77:	learn: 16.8243171	total: 2.24s	remaining: 3.5s
78:	learn: 16.7020719	total: 2.27s	remaining: 3.47s
79:	learn: 16.5231147	total: 2.29s	remaining: 3.44s
80:	learn: 16.3550704	total: 2.33s	remaining: 3.42s
81:	learn: 16.2531768	total: 2.35s	remaining: 3.39s
82:	learn: 16.1529156	total: 2.38s	remaining: 3.36s
83:	learn: 15.9391779	total: 2.41s	remaining: 3.32s
84:	learn: 15.8578694	total: 2.43s	remaining: 3.29s
85:	learn: 15.7783743	total: 2.47s	remaining: 3.27s
86:	learn: 15.6452604	total: 2.5s	remaining: 3.24s
87:	learn: 15.5300223	total: 2.52s	remaining: 3.21s
88:	learn: 15.4195831	total: 2.56s	remaining: 3.19s
89:	learn: 15.3071897	total: 2.59s	remaining: 3.16s
90:	learn: 15.1446058	total: 2.62s	remaining: 3.13s
91:	learn: 15.0547501	total: 2.64s	remaining: 3.1s
92:	learn: 14.9463447	total: 2.67s	remaining: 3.07s
93:	learn: 14.8747810	total: 2.71s	remaining: 3.05s
94:	learn: 14.7579258	total: 2.73s	remaining: 3.02s
95:	learn: 14.5927582	total: 2.77s	remaining: 3s
96:	learn: 14.4834761	total: 2.8s	remaining: 2.97s
97:	learn: 14.3683779	total: 2.82s	remaining: 2.94s
98:	learn: 14.2648032	total: 2.85s	remaining: 2.91s
99:	learn: 14.1339217	total: 2.88s	remaining: 2.88s
100:	learn: 14.0310235	total: 2.9s	remaining: 2.84s
101:	learn: 13.9879404	total: 2.93s	remaining: 2.81s
102:	learn: 13.9040350	total: 2.96s	remaining: 2.79s
103:	learn: 13.7925222	total: 3s	remaining: 2.77s
104:	learn: 13.6858242	total: 3.03s	remaining: 2.74s
105:	learn: 13.6086485	total: 3.05s	remaining: 2.71s
106:	learn: 13.4889682	total: 3.08s	remaining: 2.68s
107:	learn: 13.4306844	total: 3.11s	remaining: 2.65s
108:	learn: 13.3494423	total: 3.14s	remaining: 2.62s
109:	learn: 13.2980456	total: 3.16s	remaining: 2.59s
110:	learn: 13.2178503	total: 3.2s	remaining: 2.57s
111:	learn: 13.1206341	total: 3.23s	remaining: 2.54s
112:	learn: 13.0342536	total: 3.26s	remaining: 2.51s
113:	learn: 12.9673581	total: 3.29s	remaining: 2.48s
114:	learn: 12.9135734	total: 3.31s	remaining: 2.45s
115:	learn: 12.8196081	total: 3.34s	remaining: 2.42s
116:	learn: 12.7423806	total: 3.37s	remaining: 2.39s
117:	learn: 12.6465809	total: 3.39s	remaining: 2.36s
118:	learn: 12.5409295	total: 3.42s	remaining: 2.33s
119:	learn: 12.4767279	total: 3.47s	remaining: 2.31s
120:	learn: 12.3985254	total: 3.5s	remaining: 2.28s
121:	learn: 12.3212540	total: 3.52s	remaining: 2.25s
122:	learn: 12.2156139	total: 3.55s	remaining: 2.22s
123:	learn: 12.1479467	total: 3.58s	remaining: 2.19s
124:	learn: 12.0688168	total: 3.61s	remaining: 2.16s
125:	learn: 11.9864853	total: 3.63s	remaining: 2.13s
126:	learn: 11.8820716	total: 3.67s	remaining: 2.11s
127:	learn: 11.8059716	total: 3.7s	remaining: 2.08s
128:	learn: 11.7348830	total: 3.73s	remaining: 2.05s
129:	learn: 11.6193507	total: 3.76s	remaining: 2.02s
130:	learn: 11.5318657	total: 3.79s	remaining: 1.99s
131:	learn: 11.4432593	total: 3.81s	remaining: 1.96s
132:	learn: 11.3634921	total: 3.84s	remaining: 1.93s
133:	learn: 11.2572496	total: 3.87s	remaining: 1.9s
134:	learn: 11.1739063	total: 3.9s	remaining: 1.88s
135:	learn: 11.0896076	total: 3.94s	remaining: 1.85s
136:	learn: 10.9977136	total: 3.96s	remaining: 1.82s
137:	learn: 10.9178772	total: 3.99s	remaining: 1.79s
138:	learn: 10.8341868	total: 4.02s	remaining: 1.76s
139:	learn: 10.7709446	total: 4.05s	remaining: 1.73s
140:	learn: 10.7143619	total: 4.07s	remaining: 1.7s
141:	learn: 10.6467044	total: 4.1s	remaining: 1.67s
142:	learn: 10.5672440	total: 4.13s	remaining: 1.65s
143:	learn: 10.5263954	total: 4.16s	remaining: 1.62s
144:	learn: 10.4421936	total: 4.2s	remaining: 1.59s
145:	learn: 10.3788524	total: 4.22s	remaining: 1.56s
146:	learn: 10.3330662	total: 4.25s	remaining: 1.53s
147:	learn: 10.2703985	total: 4.28s	remaining: 1.5s
148:	learn: 10.2306029	total: 4.3s	remaining: 1.47s
149:	learn: 10.1640453	total: 4.33s	remaining: 1.44s
150:	learn: 10.1074372	total: 4.37s	remaining: 1.42s
151:	learn: 10.0083802	total: 4.4s	remaining: 1.39s
152:	learn: 9.9286493	total: 4.43s	remaining: 1.36s
153:	learn: 9.8439094	total: 4.46s	remaining: 1.33s
154:	learn: 9.7935130	total: 4.49s	remaining: 1.3s
155:	learn: 9.7063100	total: 4.51s	remaining: 1.27s
156:	learn: 9.6212511	total: 4.54s	remaining: 1.24s
157:	learn: 9.5539536	total: 4.58s	remaining: 1.22s
158:	learn: 9.5111986	total: 4.61s	remaining: 1.19s
159:	learn: 9.4514714	total: 4.63s	remaining: 1.16s
160:	learn: 9.3984668	total: 4.67s	remaining: 1.13s
161:	learn: 9.3014614	total: 4.69s	remaining: 1.1s
162:	learn: 9.2612077	total: 4.72s	remaining: 1.07s
163:	learn: 9.1913405	total: 4.75s	remaining: 1.04s
164:	learn: 9.0985411	total: 4.77s	remaining: 1.01s
165:	learn: 8.9848588	total: 4.8s	remaining: 983ms
166:	learn: 8.9405060	total: 4.84s	remaining: 956ms
167:	learn: 8.8613581	total: 4.87s	remaining: 927ms
168:	learn: 8.8162054	total: 4.89s	remaining: 898ms
169:	learn: 8.7045984	total: 4.93s	remaining: 870ms
170:	learn: 8.6428434	total: 4.96s	remaining: 841ms
171:	learn: 8.5947772	total: 4.98s	remaining: 811ms
172:	learn: 8.5378565	total: 5.01s	remaining: 782ms
173:	learn: 8.4802817	total: 5.04s	remaining: 753ms
174:	learn: 8.4303521	total: 5.07s	remaining: 725ms
175:	learn: 8.3791829	total: 5.1s	remaining: 695ms
176:	learn: 8.3284224	total: 5.13s	remaining: 666ms
177:	learn: 8.2772660	total: 5.16s	remaining: 638ms
178:	learn: 8.2166103	total: 5.18s	remaining: 608ms
179:	learn: 8.1793476	total: 5.21s	remaining: 579ms
180:	learn: 8.1310868	total: 5.24s	remaining: 550ms
181:	learn: 8.0778463	total: 5.28s	remaining: 522ms
182:	learn: 7.9947801	total: 5.31s	remaining: 493ms
183:	learn: 7.9560354	total: 5.33s	remaining: 464ms
184:	learn: 7.9272267	total: 5.36s	remaining: 435ms
185:	learn: 7.8835530	total: 5.39s	remaining: 406ms
186:	learn: 7.8117290	total: 5.42s	remaining: 377ms
187:	learn: 7.7803523	total: 5.45s	remaining: 348ms
188:	learn: 7.7232848	total: 5.48s	remaining: 319ms
189:	learn: 7.6676567	total: 5.52s	remaining: 290ms
190:	learn: 7.6309823	total: 5.54s	remaining: 261ms
191:	learn: 7.5951129	total: 5.57s	remaining: 232ms
192:	learn: 7.5293860	total: 5.6s	remaining: 203ms
193:	learn: 7.4823609	total: 5.62s	remaining: 174ms
194:	learn: 7.4313754	total: 5.66s	remaining: 145ms
195:	learn: 7.3714501	total: 5.68s	remaining: 116ms
196:	learn: 7.3219917	total: 5.72s	remaining: 87.1ms
197:	learn: 7.2822511	total: 5.75s	remaining: 58.1ms
198:	learn: 7.2376111	total: 5.78s	remaining: 29ms
199:	learn: 7.2259164	total: 5.8s	remaining: 0us
0:	learn: 27.3441720	total: 23.5ms	remaining: 2.33s
1:	learn: 26.7159954	total: 47.6ms	remaining: 2.33s
2:	learn: 26.0850318	total: 77.2ms	remaining: 2.5s
3:	learn: 25.4039656	total: 109ms	remaining: 2.63s
4:	learn: 24.7930659	total: 132ms	remaining: 2.5s
5:	learn: 24.2028590	total: 154ms	remaining: 2.42s
6:	learn: 23.6622902	total: 175ms	remaining: 2.33s
7:	learn: 23.1531175	total: 198ms	remaining: 2.28s
8:	learn: 22.7050792	total: 223ms	remaining: 2.25s
9:	learn: 22.2151788	total: 245ms	remaining: 2.21s
10:	learn: 21.7708844	total: 269ms	remaining: 2.17s
11:	learn: 21.2587174	total: 303ms	remaining: 2.22s
12:	learn: 20.7559870	total: 337ms	remaining: 2.26s
13:	learn: 20.3040842	total: 362ms	remaining: 2.22s
14:	learn: 19.9019524	total: 387ms	remaining: 2.19s
15:	learn: 19.5186012	total: 414ms	remaining: 2.17s
16:	learn: 19.1521621	total: 436ms	remaining: 2.13s
17:	learn: 18.7652180	total: 459ms	remaining: 2.09s
18:	learn: 18.4446446	total: 484ms	remaining: 2.06s
19:	learn: 18.0977650	total: 510ms	remaining: 2.04s
20:	learn: 17.7791328	total: 542ms	remaining: 2.04s
21:	learn: 17.4777648	total: 566ms	remaining: 2.01s
22:	learn: 17.1794361	total: 597ms	remaining: 2s
23:	learn: 16.8685032	total: 620ms	remaining: 1.96s
24:	learn: 16.6274695	total: 644ms	remaining: 1.93s
25:	learn: 16.3071099	total: 668ms	remaining: 1.9s
26:	learn: 16.0249663	total: 691ms	remaining: 1.87s
27:	learn: 15.7535309	total: 719ms	remaining: 1.85s
28:	learn: 15.4777235	total: 745ms	remaining: 1.82s
29:	learn: 15.2410825	total: 770ms	remaining: 1.8s
30:	learn: 15.0133002	total: 795ms	remaining: 1.77s
31:	learn: 14.8018912	total: 820ms	remaining: 1.74s
32:	learn: 14.5701546	total: 857ms	remaining: 1.74s
33:	learn: 14.3799060	total: 878ms	remaining: 1.7s
34:	learn: 14.0975095	total: 903ms	remaining: 1.68s
35:	learn: 13.8873493	total: 928ms	remaining: 1.65s
36:	learn: 13.6812023	total: 960ms	remaining: 1.63s
37:	learn: 13.4943017	total: 985ms	remaining: 1.61s
38:	learn: 13.3224094	total: 1.01s	remaining: 1.58s
39:	learn: 13.0967901	total: 1.03s	remaining: 1.55s
40:	learn: 12.9138190	total: 1.05s	remaining: 1.51s
41:	learn: 12.7764458	total: 1.07s	remaining: 1.49s
42:	learn: 12.6593656	total: 1.1s	remaining: 1.47s
43:	learn: 12.5051105	total: 1.13s	remaining: 1.44s
44:	learn: 12.3057146	total: 1.15s	remaining: 1.41s
45:	learn: 12.1487674	total: 1.18s	remaining: 1.39s
46:	learn: 11.9614903	total: 1.21s	remaining: 1.37s
47:	learn: 11.7921265	total: 1.24s	remaining: 1.34s
48:	learn: 11.6572640	total: 1.26s	remaining: 1.31s
49:	learn: 11.5251463	total: 1.29s	remaining: 1.29s
50:	learn: 11.3789931	total: 1.31s	remaining: 1.26s
51:	learn: 11.2691375	total: 1.34s	remaining: 1.23s
52:	learn: 11.1161131	total: 1.37s	remaining: 1.21s
53:	learn: 11.0246399	total: 1.4s	remaining: 1.19s
54:	learn: 10.9152420	total: 1.43s	remaining: 1.17s
55:	learn: 10.7746769	total: 1.45s	remaining: 1.14s
56:	learn: 10.6222917	total: 1.47s	remaining: 1.11s
57:	learn: 10.5096115	total: 1.5s	remaining: 1.08s
58:	learn: 10.3857030	total: 1.52s	remaining: 1.06s
59:	learn: 10.2789057	total: 1.54s	remaining: 1.03s
60:	learn: 10.1490749	total: 1.57s	remaining: 1s
61:	learn: 10.0553291	total: 1.6s	remaining: 984ms
62:	learn: 9.9351043	total: 1.64s	remaining: 963ms
63:	learn: 9.8245261	total: 1.67s	remaining: 937ms
64:	learn: 9.7207577	total: 1.69s	remaining: 910ms
65:	learn: 9.5920661	total: 1.71s	remaining: 883ms
66:	learn: 9.4832767	total: 1.74s	remaining: 858ms
67:	learn: 9.3724149	total: 1.76s	remaining: 830ms
68:	learn: 9.2459801	total: 1.79s	remaining: 803ms
69:	learn: 9.1740635	total: 1.81s	remaining: 777ms
70:	learn: 9.1015730	total: 1.84s	remaining: 750ms
71:	learn: 9.0196460	total: 1.88s	remaining: 729ms
72:	learn: 8.9458977	total: 1.9s	remaining: 703ms
73:	learn: 8.8434400	total: 1.92s	remaining: 676ms
74:	learn: 8.7495151	total: 1.95s	remaining: 649ms
75:	learn: 8.6521348	total: 1.97s	remaining: 622ms
76:	learn: 8.5654483	total: 1.99s	remaining: 596ms
77:	learn: 8.4965765	total: 2.02s	remaining: 569ms
78:	learn: 8.4308736	total: 2.04s	remaining: 543ms
79:	learn: 8.3675601	total: 2.08s	remaining: 519ms
80:	learn: 8.3193887	total: 2.1s	remaining: 494ms
81:	learn: 8.2507990	total: 2.14s	remaining: 470ms
82:	learn: 8.1583259	total: 2.16s	remaining: 443ms
83:	learn: 8.0995902	total: 2.19s	remaining: 417ms
84:	learn: 8.0236655	total: 2.21s	remaining: 390ms
85:	learn: 7.9634698	total: 2.23s	remaining: 364ms
86:	learn: 7.9109081	total: 2.26s	remaining: 338ms
87:	learn: 7.8385006	total: 2.29s	remaining: 312ms
88:	learn: 7.7859488	total: 2.31s	remaining: 286ms
89:	learn: 7.7270142	total: 2.34s	remaining: 260ms
90:	learn: 7.6774253	total: 2.36s	remaining: 234ms
91:	learn: 7.6126552	total: 2.39s	remaining: 208ms
92:	learn: 7.5392178	total: 2.42s	remaining: 182ms
93:	learn: 7.4745082	total: 2.44s	remaining: 156ms
94:	learn: 7.4106939	total: 2.46s	remaining: 130ms
95:	learn: 7.3573350	total: 2.49s	remaining: 104ms
96:	learn: 7.2889777	total: 2.52s	remaining: 77.8ms
97:	learn: 7.2204939	total: 2.54s	remaining: 51.9ms
98:	learn: 7.1646465	total: 2.57s	remaining: 26ms
99:	learn: 7.1204610	total: 2.59s	remaining: 0us
0:	learn: 42.5494645	total: 30.8ms	remaining: 3.05s
1:	learn: 41.2913513	total: 55ms	remaining: 2.69s
2:	learn: 40.1676527	total: 83ms	remaining: 2.68s
3:	learn: 38.7664819	total: 110ms	remaining: 2.63s
4:	learn: 37.5407492	total: 133ms	remaining: 2.52s
5:	learn: 36.4295331	total: 155ms	remaining: 2.42s
6:	learn: 35.2895967	total: 178ms	remaining: 2.36s
7:	learn: 34.1884539	total: 201ms	remaining: 2.32s
8:	learn: 33.1817690	total: 224ms	remaining: 2.27s
9:	learn: 32.3518195	total: 248ms	remaining: 2.23s
10:	learn: 31.4837515	total: 280ms	remaining: 2.26s
11:	learn: 30.7255972	total: 305ms	remaining: 2.24s
12:	learn: 29.9298648	total: 337ms	remaining: 2.26s
13:	learn: 29.0574249	total: 363ms	remaining: 2.23s
14:	learn: 28.4097384	total: 388ms	remaining: 2.2s
15:	learn: 27.5317445	total: 412ms	remaining: 2.16s
16:	learn: 26.7911946	total: 436ms	remaining: 2.13s
17:	learn: 26.1103465	total: 460ms	remaining: 2.1s
18:	learn: 25.5295903	total: 485ms	remaining: 2.07s
19:	learn: 24.8544960	total: 510ms	remaining: 2.04s
20:	learn: 24.2772682	total: 549ms	remaining: 2.06s
21:	learn: 23.6936944	total: 572ms	remaining: 2.03s
22:	learn: 23.1300945	total: 596ms	remaining: 1.99s
23:	learn: 22.5333494	total: 618ms	remaining: 1.96s
24:	learn: 22.0553465	total: 641ms	remaining: 1.92s
25:	learn: 21.6253628	total: 666ms	remaining: 1.89s
26:	learn: 21.1396219	total: 690ms	remaining: 1.86s
27:	learn: 20.7382905	total: 716ms	remaining: 1.84s
28:	learn: 20.3233915	total: 752ms	remaining: 1.84s
29:	learn: 19.9323992	total: 779ms	remaining: 1.82s
30:	learn: 19.5650439	total: 812ms	remaining: 1.81s
31:	learn: 19.2165649	total: 838ms	remaining: 1.78s
32:	learn: 18.8890056	total: 862ms	remaining: 1.75s
33:	learn: 18.5523762	total: 885ms	remaining: 1.72s
34:	learn: 18.2666116	total: 909ms	remaining: 1.69s
35:	learn: 17.9216926	total: 934ms	remaining: 1.66s
36:	learn: 17.6118879	total: 959ms	remaining: 1.63s
37:	learn: 17.2653313	total: 990ms	remaining: 1.61s
38:	learn: 16.9946585	total: 1.01s	remaining: 1.59s
39:	learn: 16.6842506	total: 1.05s	remaining: 1.57s
40:	learn: 16.4102287	total: 1.07s	remaining: 1.54s
41:	learn: 16.2288795	total: 1.09s	remaining: 1.51s
42:	learn: 15.9623692	total: 1.11s	remaining: 1.48s
43:	learn: 15.7308231	total: 1.14s	remaining: 1.45s
44:	learn: 15.4695555	total: 1.16s	remaining: 1.42s
45:	learn: 15.2706809	total: 1.2s	remaining: 1.41s
46:	learn: 15.0182699	total: 1.22s	remaining: 1.38s
47:	learn: 14.7702088	total: 1.25s	remaining: 1.35s
48:	learn: 14.6303566	total: 1.27s	remaining: 1.32s
49:	learn: 14.4038016	total: 1.31s	remaining: 1.31s
50:	learn: 14.2309807	total: 1.33s	remaining: 1.28s
51:	learn: 14.0308425	total: 1.36s	remaining: 1.25s
52:	learn: 13.8201931	total: 1.38s	remaining: 1.22s
53:	learn: 13.6070078	total: 1.41s	remaining: 1.2s
54:	learn: 13.4230690	total: 1.44s	remaining: 1.18s
55:	learn: 13.2368649	total: 1.46s	remaining: 1.15s
56:	learn: 13.0449556	total: 1.48s	remaining: 1.12s
57:	learn: 12.8375669	total: 1.5s	remaining: 1.09s
58:	learn: 12.6795194	total: 1.53s	remaining: 1.06s
59:	learn: 12.5197211	total: 1.56s	remaining: 1.04s
60:	learn: 12.4011717	total: 1.58s	remaining: 1.01s
61:	learn: 12.2396104	total: 1.61s	remaining: 985ms
62:	learn: 12.0647878	total: 1.63s	remaining: 960ms
63:	learn: 11.9247719	total: 1.67s	remaining: 938ms
64:	learn: 11.7923634	total: 1.69s	remaining: 911ms
65:	learn: 11.6628246	total: 1.72s	remaining: 885ms
66:	learn: 11.5688935	total: 1.74s	remaining: 859ms
67:	learn: 11.4345056	total: 1.77s	remaining: 831ms
68:	learn: 11.3136955	total: 1.79s	remaining: 804ms
69:	learn: 11.2040357	total: 1.82s	remaining: 781ms
70:	learn: 11.1067773	total: 1.85s	remaining: 757ms
71:	learn: 10.9728105	total: 1.88s	remaining: 731ms
72:	learn: 10.8338607	total: 1.9s	remaining: 703ms
73:	learn: 10.7202016	total: 1.93s	remaining: 677ms
74:	learn: 10.5983746	total: 1.95s	remaining: 650ms
75:	learn: 10.4882458	total: 1.97s	remaining: 623ms
76:	learn: 10.3827604	total: 2s	remaining: 596ms
77:	learn: 10.2485726	total: 2.02s	remaining: 570ms
78:	learn: 10.1524716	total: 2.05s	remaining: 546ms
79:	learn: 10.0765127	total: 2.09s	remaining: 522ms
80:	learn: 9.9617067	total: 2.11s	remaining: 496ms
81:	learn: 9.8357151	total: 2.14s	remaining: 470ms
82:	learn: 9.7311644	total: 2.16s	remaining: 443ms
83:	learn: 9.6314802	total: 2.19s	remaining: 417ms
84:	learn: 9.5137958	total: 2.21s	remaining: 391ms
85:	learn: 9.4420485	total: 2.24s	remaining: 364ms
86:	learn: 9.3959294	total: 2.26s	remaining: 338ms
87:	learn: 9.3057742	total: 2.29s	remaining: 313ms
88:	learn: 9.2031484	total: 2.33s	remaining: 287ms
89:	learn: 9.0996948	total: 2.35s	remaining: 261ms
90:	learn: 9.0492278	total: 2.37s	remaining: 235ms
91:	learn: 8.9400377	total: 2.39s	remaining: 208ms
92:	learn: 8.8904458	total: 2.42s	remaining: 182ms
93:	learn: 8.8102982	total: 2.44s	remaining: 156ms
94:	learn: 8.7445451	total: 2.47s	remaining: 130ms
95:	learn: 8.6796106	total: 2.49s	remaining: 104ms
96:	learn: 8.5875790	total: 2.53s	remaining: 78.2ms
97:	learn: 8.5086871	total: 2.55s	remaining: 52.1ms
98:	learn: 8.4547244	total: 2.58s	remaining: 26.1ms
99:	learn: 8.3841281	total: 2.61s	remaining: 0us
0:	learn: 46.2258117	total: 2.65ms	remaining: 262ms
1:	learn: 45.1253456	total: 28.1ms	remaining: 1.38s
2:	learn: 43.7311767	total: 57.8ms	remaining: 1.87s
3:	learn: 42.4252819	total: 84.1ms	remaining: 2.02s
4:	learn: 41.1436655	total: 107ms	remaining: 2.03s
5:	learn: 40.0337136	total: 131ms	remaining: 2.05s
6:	learn: 38.9102686	total: 153ms	remaining: 2.04s
7:	learn: 37.7859737	total: 177ms	remaining: 2.04s
8:	learn: 36.7646905	total: 199ms	remaining: 2.01s
9:	learn: 35.9495481	total: 220ms	remaining: 1.98s
10:	learn: 35.0558185	total: 244ms	remaining: 1.97s
11:	learn: 34.1958090	total: 268ms	remaining: 1.96s
12:	learn: 33.3514013	total: 302ms	remaining: 2.02s
13:	learn: 32.3317086	total: 324ms	remaining: 1.99s
14:	learn: 31.5611046	total: 347ms	remaining: 1.97s
15:	learn: 30.6373573	total: 371ms	remaining: 1.95s
16:	learn: 29.8883669	total: 396ms	remaining: 1.93s
17:	learn: 29.2985952	total: 418ms	remaining: 1.9s
18:	learn: 28.6360550	total: 442ms	remaining: 1.88s
19:	learn: 27.9757056	total: 465ms	remaining: 1.86s
20:	learn: 27.2585835	total: 496ms	remaining: 1.87s
21:	learn: 26.6366391	total: 519ms	remaining: 1.84s
22:	learn: 26.1055455	total: 541ms	remaining: 1.81s
23:	learn: 25.4961568	total: 563ms	remaining: 1.78s
24:	learn: 25.1037435	total: 584ms	remaining: 1.75s
25:	learn: 24.5258982	total: 605ms	remaining: 1.72s
26:	learn: 23.9974764	total: 626ms	remaining: 1.69s
27:	learn: 23.5108419	total: 648ms	remaining: 1.67s
28:	learn: 23.0835773	total: 670ms	remaining: 1.64s
29:	learn: 22.5744350	total: 693ms	remaining: 1.62s
30:	learn: 22.1357783	total: 718ms	remaining: 1.6s
31:	learn: 21.7316226	total: 748ms	remaining: 1.59s
32:	learn: 21.4082899	total: 772ms	remaining: 1.57s
33:	learn: 20.9640138	total: 795ms	remaining: 1.54s
34:	learn: 20.6379417	total: 817ms	remaining: 1.52s
35:	learn: 20.2688010	total: 839ms	remaining: 1.49s
36:	learn: 19.8479214	total: 862ms	remaining: 1.47s
37:	learn: 19.5684638	total: 886ms	remaining: 1.44s
38:	learn: 19.1826919	total: 910ms	remaining: 1.42s
39:	learn: 18.9583308	total: 934ms	remaining: 1.4s
40:	learn: 18.6736002	total: 962ms	remaining: 1.38s
41:	learn: 18.3525328	total: 985ms	remaining: 1.36s
42:	learn: 17.9954191	total: 1s	remaining: 1.33s
43:	learn: 17.6991520	total: 1.03s	remaining: 1.31s
44:	learn: 17.3697888	total: 1.05s	remaining: 1.28s
45:	learn: 17.0519636	total: 1.07s	remaining: 1.26s
46:	learn: 16.7829795	total: 1.09s	remaining: 1.23s
47:	learn: 16.5108695	total: 1.11s	remaining: 1.21s
48:	learn: 16.2366816	total: 1.14s	remaining: 1.18s
49:	learn: 15.9947350	total: 1.16s	remaining: 1.16s
50:	learn: 15.7513561	total: 1.19s	remaining: 1.14s
51:	learn: 15.4328481	total: 1.21s	remaining: 1.12s
52:	learn: 15.2497907	total: 1.24s	remaining: 1.1s
53:	learn: 15.0417076	total: 1.26s	remaining: 1.07s
54:	learn: 14.8861891	total: 1.28s	remaining: 1.05s
55:	learn: 14.6497794	total: 1.3s	remaining: 1.02s
56:	learn: 14.3664771	total: 1.32s	remaining: 1000ms
57:	learn: 14.2358168	total: 1.35s	remaining: 977ms
58:	learn: 14.0712722	total: 1.38s	remaining: 957ms
59:	learn: 13.9191649	total: 1.4s	remaining: 935ms
60:	learn: 13.7032356	total: 1.42s	remaining: 911ms
61:	learn: 13.5029041	total: 1.44s	remaining: 885ms
62:	learn: 13.3568908	total: 1.47s	remaining: 861ms
63:	learn: 13.1332696	total: 1.49s	remaining: 837ms
64:	learn: 13.0323137	total: 1.51s	remaining: 812ms
65:	learn: 12.8622078	total: 1.53s	remaining: 788ms
66:	learn: 12.7088186	total: 1.55s	remaining: 764ms
67:	learn: 12.5524646	total: 1.57s	remaining: 741ms
68:	learn: 12.4646011	total: 1.6s	remaining: 719ms
69:	learn: 12.3900687	total: 1.63s	remaining: 698ms
70:	learn: 12.2908367	total: 1.65s	remaining: 675ms
71:	learn: 12.1294405	total: 1.68s	remaining: 652ms
72:	learn: 12.0359996	total: 1.7s	remaining: 629ms
73:	learn: 11.9244352	total: 1.72s	remaining: 605ms
74:	learn: 11.8312038	total: 1.74s	remaining: 581ms
75:	learn: 11.6622123	total: 1.76s	remaining: 557ms
76:	learn: 11.5959180	total: 1.79s	remaining: 534ms
77:	learn: 11.4538852	total: 1.82s	remaining: 513ms
78:	learn: 11.3700375	total: 1.84s	remaining: 489ms
79:	learn: 11.2101447	total: 1.86s	remaining: 466ms
80:	learn: 11.0614634	total: 1.88s	remaining: 442ms
81:	learn: 10.9029225	total: 1.9s	remaining: 418ms
82:	learn: 10.7792030	total: 1.93s	remaining: 394ms
83:	learn: 10.6279451	total: 1.95s	remaining: 371ms
84:	learn: 10.5530267	total: 1.97s	remaining: 348ms
85:	learn: 10.4577150	total: 1.99s	remaining: 324ms
86:	learn: 10.4076417	total: 2.03s	remaining: 303ms
87:	learn: 10.3166632	total: 2.05s	remaining: 280ms
88:	learn: 10.2018151	total: 2.08s	remaining: 257ms
89:	learn: 10.0698484	total: 2.1s	remaining: 233ms
90:	learn: 10.0162824	total: 2.12s	remaining: 210ms
91:	learn: 9.9352639	total: 2.14s	remaining: 186ms
92:	learn: 9.8316734	total: 2.17s	remaining: 163ms
93:	learn: 9.7195471	total: 2.19s	remaining: 140ms
94:	learn: 9.5914894	total: 2.22s	remaining: 117ms
95:	learn: 9.5151851	total: 2.24s	remaining: 93.5ms
96:	learn: 9.3911314	total: 2.27s	remaining: 70.1ms
97:	learn: 9.3417706	total: 2.29s	remaining: 46.7ms
98:	learn: 9.2708440	total: 2.31s	remaining: 23.3ms
99:	learn: 9.1660321	total: 2.33s	remaining: 0us
0:	learn: 45.8627255	total: 5.07ms	remaining: 502ms
1:	learn: 44.7432040	total: 27.4ms	remaining: 1.34s
2:	learn: 43.4398568	total: 49.2ms	remaining: 1.59s
3:	learn: 42.1495515	total: 82.7ms	remaining: 1.99s
4:	learn: 40.9712633	total: 105ms	remaining: 2s
5:	learn: 40.0119591	total: 127ms	remaining: 2s
6:	learn: 39.1914360	total: 148ms	remaining: 1.97s
7:	learn: 38.1861536	total: 172ms	remaining: 1.98s
8:	learn: 37.1477128	total: 192ms	remaining: 1.94s
9:	learn: 36.3044702	total: 213ms	remaining: 1.92s
10:	learn: 35.5837917	total: 233ms	remaining: 1.88s
11:	learn: 34.8664158	total: 252ms	remaining: 1.85s
12:	learn: 33.9129833	total: 276ms	remaining: 1.84s
13:	learn: 32.9094642	total: 302ms	remaining: 1.85s
14:	learn: 32.1965787	total: 323ms	remaining: 1.83s
15:	learn: 31.4598238	total: 345ms	remaining: 1.81s
16:	learn: 30.6578027	total: 365ms	remaining: 1.78s
17:	learn: 30.0227468	total: 385ms	remaining: 1.75s
18:	learn: 29.2954728	total: 404ms	remaining: 1.72s
19:	learn: 28.5928084	total: 425ms	remaining: 1.7s
20:	learn: 27.9445984	total: 446ms	remaining: 1.68s
21:	learn: 27.3493298	total: 468ms	remaining: 1.66s
22:	learn: 26.8491966	total: 491ms	remaining: 1.64s
23:	learn: 26.3177453	total: 522ms	remaining: 1.65s
24:	learn: 25.8134533	total: 547ms	remaining: 1.64s
25:	learn: 25.2000018	total: 569ms	remaining: 1.62s
26:	learn: 24.6570461	total: 591ms	remaining: 1.6s
27:	learn: 24.1062982	total: 614ms	remaining: 1.58s
28:	learn: 23.7489370	total: 635ms	remaining: 1.55s
29:	learn: 23.2050536	total: 654ms	remaining: 1.53s
30:	learn: 22.7824379	total: 677ms	remaining: 1.51s
31:	learn: 22.4052655	total: 699ms	remaining: 1.49s
32:	learn: 21.9525639	total: 730ms	remaining: 1.48s
33:	learn: 21.5482900	total: 752ms	remaining: 1.46s
34:	learn: 21.1900983	total: 772ms	remaining: 1.43s
35:	learn: 20.8243957	total: 792ms	remaining: 1.41s
36:	learn: 20.4401288	total: 811ms	remaining: 1.38s
37:	learn: 20.0960622	total: 831ms	remaining: 1.36s
38:	learn: 19.7795108	total: 852ms	remaining: 1.33s
39:	learn: 19.4922451	total: 872ms	remaining: 1.31s
40:	learn: 19.1827582	total: 893ms	remaining: 1.28s
41:	learn: 18.8902445	total: 914ms	remaining: 1.26s
42:	learn: 18.6833086	total: 941ms	remaining: 1.25s
43:	learn: 18.4251972	total: 965ms	remaining: 1.23s
44:	learn: 18.1471037	total: 989ms	remaining: 1.21s
45:	learn: 17.8420017	total: 1.01s	remaining: 1.19s
46:	learn: 17.6101998	total: 1.03s	remaining: 1.16s
47:	learn: 17.3353656	total: 1.05s	remaining: 1.14s
48:	learn: 17.1194789	total: 1.08s	remaining: 1.12s
49:	learn: 16.8898454	total: 1.1s	remaining: 1.1s
50:	learn: 16.6657497	total: 1.12s	remaining: 1.07s
51:	learn: 16.3832867	total: 1.14s	remaining: 1.05s
52:	learn: 16.2098226	total: 1.17s	remaining: 1.04s
53:	learn: 16.0045707	total: 1.19s	remaining: 1.02s
54:	learn: 15.8512887	total: 1.22s	remaining: 994ms
55:	learn: 15.6485628	total: 1.24s	remaining: 972ms
56:	learn: 15.4841428	total: 1.26s	remaining: 948ms
57:	learn: 15.3383158	total: 1.28s	remaining: 924ms
58:	learn: 15.2056282	total: 1.3s	remaining: 901ms
59:	learn: 15.0698337	total: 1.32s	remaining: 877ms
60:	learn: 14.8487796	total: 1.34s	remaining: 855ms
61:	learn: 14.7255751	total: 1.36s	remaining: 833ms
62:	learn: 14.6100414	total: 1.38s	remaining: 811ms
63:	learn: 14.3864212	total: 1.41s	remaining: 795ms
64:	learn: 14.2800460	total: 1.44s	remaining: 773ms
65:	learn: 14.1017299	total: 1.46s	remaining: 751ms
66:	learn: 13.9655015	total: 1.48s	remaining: 729ms
67:	learn: 13.8065764	total: 1.51s	remaining: 713ms
68:	learn: 13.7473285	total: 1.54s	remaining: 691ms
69:	learn: 13.6967309	total: 1.56s	remaining: 670ms
70:	learn: 13.6253255	total: 1.59s	remaining: 648ms
71:	learn: 13.4974926	total: 1.62s	remaining: 629ms
72:	learn: 13.4142694	total: 1.64s	remaining: 607ms
73:	learn: 13.2902600	total: 1.66s	remaining: 585ms
74:	learn: 13.1816461	total: 1.69s	remaining: 562ms
75:	learn: 13.0809498	total: 1.71s	remaining: 540ms
76:	learn: 12.9772285	total: 1.73s	remaining: 518ms
77:	learn: 12.8413858	total: 1.76s	remaining: 495ms
78:	learn: 12.7615799	total: 1.78s	remaining: 475ms
79:	learn: 12.5808659	total: 1.81s	remaining: 453ms
80:	learn: 12.4938330	total: 1.84s	remaining: 432ms
81:	learn: 12.3745576	total: 1.87s	remaining: 410ms
82:	learn: 12.2474104	total: 1.89s	remaining: 388ms
83:	learn: 12.1582297	total: 1.92s	remaining: 365ms
84:	learn: 12.0528081	total: 1.94s	remaining: 343ms
85:	learn: 11.9483355	total: 1.96s	remaining: 320ms
86:	learn: 11.8683204	total: 1.99s	remaining: 297ms
87:	learn: 11.7680945	total: 2.01s	remaining: 274ms
88:	learn: 11.6635447	total: 2.05s	remaining: 254ms
89:	learn: 11.5775031	total: 2.08s	remaining: 231ms
90:	learn: 11.4860538	total: 2.1s	remaining: 208ms
91:	learn: 11.3584960	total: 2.12s	remaining: 185ms
92:	learn: 11.2180285	total: 2.15s	remaining: 162ms
93:	learn: 11.0996558	total: 2.17s	remaining: 139ms
94:	learn: 10.9688832	total: 2.19s	remaining: 115ms
95:	learn: 10.9205457	total: 2.22s	remaining: 92.4ms
96:	learn: 10.8462783	total: 2.25s	remaining: 69.5ms
97:	learn: 10.7481890	total: 2.28s	remaining: 46.5ms
98:	learn: 10.6396315	total: 2.3s	remaining: 23.2ms
99:	learn: 10.5895308	total: 2.32s	remaining: 0us
0:	learn: 46.2892189	total: 19.3ms	remaining: 1.91s
1:	learn: 44.9732744	total: 40.9ms	remaining: 2s
2:	learn: 43.8887345	total: 63.9ms	remaining: 2.07s
3:	learn: 42.6526320	total: 88.4ms	remaining: 2.12s
4:	learn: 41.4812505	total: 115ms	remaining: 2.19s
5:	learn: 40.4431224	total: 136ms	remaining: 2.14s
6:	learn: 39.2936749	total: 158ms	remaining: 2.1s
7:	learn: 38.1961652	total: 179ms	remaining: 2.06s
8:	learn: 37.2194841	total: 199ms	remaining: 2.02s
9:	learn: 36.2518666	total: 221ms	remaining: 1.99s
10:	learn: 35.4919224	total: 243ms	remaining: 1.97s
11:	learn: 34.6975877	total: 265ms	remaining: 1.94s
12:	learn: 33.7869362	total: 288ms	remaining: 1.93s
13:	learn: 33.0646033	total: 316ms	remaining: 1.94s
14:	learn: 32.1821772	total: 343ms	remaining: 1.95s
15:	learn: 31.4340749	total: 368ms	remaining: 1.93s
16:	learn: 30.6504198	total: 392ms	remaining: 1.91s
17:	learn: 30.0090260	total: 413ms	remaining: 1.88s
18:	learn: 29.4233143	total: 438ms	remaining: 1.86s
19:	learn: 28.7661957	total: 458ms	remaining: 1.83s
20:	learn: 28.1570594	total: 481ms	remaining: 1.81s
21:	learn: 27.6140124	total: 510ms	remaining: 1.81s
22:	learn: 27.0130709	total: 535ms	remaining: 1.79s
23:	learn: 26.2648081	total: 558ms	remaining: 1.77s
24:	learn: 25.7963649	total: 579ms	remaining: 1.74s
25:	learn: 25.2713860	total: 601ms	remaining: 1.71s
26:	learn: 24.8080692	total: 621ms	remaining: 1.68s
27:	learn: 24.3042862	total: 642ms	remaining: 1.65s
28:	learn: 23.9097237	total: 663ms	remaining: 1.62s
29:	learn: 23.4953174	total: 684ms	remaining: 1.6s
30:	learn: 23.0484452	total: 706ms	remaining: 1.57s
31:	learn: 22.7100962	total: 728ms	remaining: 1.55s
32:	learn: 22.1662267	total: 758ms	remaining: 1.54s
33:	learn: 21.7339884	total: 783ms	remaining: 1.52s
34:	learn: 21.3699422	total: 805ms	remaining: 1.5s
35:	learn: 21.0249329	total: 830ms	remaining: 1.48s
36:	learn: 20.6187923	total: 851ms	remaining: 1.45s
37:	learn: 20.2401981	total: 874ms	remaining: 1.43s
38:	learn: 19.9712328	total: 894ms	remaining: 1.4s
39:	learn: 19.6429610	total: 916ms	remaining: 1.37s
40:	learn: 19.3281556	total: 938ms	remaining: 1.35s
41:	learn: 19.0925924	total: 961ms	remaining: 1.33s
42:	learn: 18.8118712	total: 988ms	remaining: 1.31s
43:	learn: 18.5355748	total: 1.01s	remaining: 1.29s
44:	learn: 18.2783929	total: 1.04s	remaining: 1.27s
45:	learn: 17.9915490	total: 1.06s	remaining: 1.24s
46:	learn: 17.7323317	total: 1.08s	remaining: 1.22s
47:	learn: 17.4448307	total: 1.1s	remaining: 1.19s
48:	learn: 17.2419782	total: 1.12s	remaining: 1.17s
49:	learn: 16.9351352	total: 1.14s	remaining: 1.14s
50:	learn: 16.7728723	total: 1.17s	remaining: 1.12s
51:	learn: 16.5718087	total: 1.19s	remaining: 1.1s
52:	learn: 16.4047483	total: 1.22s	remaining: 1.08s
53:	learn: 16.2888950	total: 1.25s	remaining: 1.06s
54:	learn: 16.1353042	total: 1.27s	remaining: 1.04s
55:	learn: 15.9384012	total: 1.29s	remaining: 1.01s
56:	learn: 15.7488511	total: 1.32s	remaining: 994ms
57:	learn: 15.5682846	total: 1.34s	remaining: 970ms
58:	learn: 15.3488716	total: 1.36s	remaining: 946ms
59:	learn: 15.2291272	total: 1.38s	remaining: 922ms
60:	learn: 15.0582519	total: 1.41s	remaining: 902ms
61:	learn: 14.8478458	total: 1.44s	remaining: 880ms
62:	learn: 14.6663416	total: 1.46s	remaining: 857ms
63:	learn: 14.4830825	total: 1.48s	remaining: 833ms
64:	learn: 14.3300895	total: 1.5s	remaining: 808ms
65:	learn: 14.1168590	total: 1.52s	remaining: 784ms
66:	learn: 13.9783298	total: 1.54s	remaining: 761ms
67:	learn: 13.8132857	total: 1.57s	remaining: 737ms
68:	learn: 13.7050863	total: 1.59s	remaining: 714ms
69:	learn: 13.5742501	total: 1.61s	remaining: 691ms
70:	learn: 13.4851362	total: 1.65s	remaining: 675ms
71:	learn: 13.3300610	total: 1.68s	remaining: 652ms
72:	learn: 13.2223060	total: 1.7s	remaining: 628ms
73:	learn: 13.0706731	total: 1.72s	remaining: 605ms
74:	learn: 12.9178099	total: 1.74s	remaining: 581ms
75:	learn: 12.7954645	total: 1.76s	remaining: 557ms
76:	learn: 12.7133688	total: 1.79s	remaining: 534ms
77:	learn: 12.5745537	total: 1.81s	remaining: 510ms
78:	learn: 12.4765302	total: 1.83s	remaining: 488ms
79:	learn: 12.3609145	total: 1.86s	remaining: 464ms
80:	learn: 12.2437759	total: 1.88s	remaining: 441ms
81:	learn: 12.1583763	total: 1.9s	remaining: 418ms
82:	learn: 12.0202500	total: 1.92s	remaining: 394ms
83:	learn: 11.9125166	total: 1.94s	remaining: 370ms
84:	learn: 11.8100729	total: 1.96s	remaining: 347ms
85:	learn: 11.7509521	total: 1.98s	remaining: 323ms
86:	learn: 11.6448436	total: 2s	remaining: 299ms
87:	learn: 11.5550170	total: 2.02s	remaining: 276ms
88:	learn: 11.4624708	total: 2.05s	remaining: 253ms
89:	learn: 11.3547761	total: 2.08s	remaining: 231ms
90:	learn: 11.2513910	total: 2.11s	remaining: 208ms
91:	learn: 11.1414483	total: 2.13s	remaining: 185ms
92:	learn: 11.0742264	total: 2.15s	remaining: 162ms
93:	learn: 10.9721772	total: 2.18s	remaining: 139ms
94:	learn: 10.9118054	total: 2.2s	remaining: 116ms
95:	learn: 10.8465290	total: 2.22s	remaining: 92.5ms
96:	learn: 10.7451745	total: 2.25s	remaining: 69.5ms
97:	learn: 10.6173565	total: 2.27s	remaining: 46.4ms
98:	learn: 10.5562158	total: 2.29s	remaining: 23.2ms
99:	learn: 10.4564960	total: 2.31s	remaining: 0us
0:	learn: 27.5267205	total: 23.8ms	remaining: 4.74s
1:	learn: 27.0297320	total: 48.2ms	remaining: 4.77s
2:	learn: 26.5510417	total: 72.2ms	remaining: 4.74s
3:	learn: 26.1221185	total: 80ms	remaining: 3.92s
4:	learn: 25.6690036	total: 105ms	remaining: 4.09s
5:	learn: 25.2709759	total: 139ms	remaining: 4.5s
6:	learn: 24.8033327	total: 164ms	remaining: 4.53s
7:	learn: 24.4258966	total: 189ms	remaining: 4.54s
8:	learn: 24.0351254	total: 213ms	remaining: 4.51s
9:	learn: 23.6271871	total: 238ms	remaining: 4.53s
10:	learn: 23.1709164	total: 263ms	remaining: 4.51s
11:	learn: 22.8341448	total: 287ms	remaining: 4.49s
12:	learn: 22.5508255	total: 312ms	remaining: 4.48s
13:	learn: 22.1650870	total: 338ms	remaining: 4.49s
14:	learn: 21.8409545	total: 367ms	remaining: 4.53s
15:	learn: 21.5838916	total: 392ms	remaining: 4.51s
16:	learn: 21.2570767	total: 416ms	remaining: 4.48s
17:	learn: 20.9351602	total: 440ms	remaining: 4.45s
18:	learn: 20.6431553	total: 465ms	remaining: 4.42s
19:	learn: 20.3451843	total: 489ms	remaining: 4.4s
20:	learn: 20.0903893	total: 513ms	remaining: 4.37s
21:	learn: 19.7708525	total: 537ms	remaining: 4.34s
22:	learn: 19.5129016	total: 568ms	remaining: 4.37s
23:	learn: 19.2789838	total: 597ms	remaining: 4.38s
24:	learn: 19.0285247	total: 622ms	remaining: 4.35s
25:	learn: 18.7740774	total: 647ms	remaining: 4.33s
26:	learn: 18.4131270	total: 671ms	remaining: 4.3s
27:	learn: 18.1935928	total: 696ms	remaining: 4.27s
28:	learn: 17.9185293	total: 720ms	remaining: 4.25s
29:	learn: 17.6818825	total: 744ms	remaining: 4.22s
30:	learn: 17.4551687	total: 769ms	remaining: 4.19s
31:	learn: 17.2687322	total: 801ms	remaining: 4.2s
32:	learn: 17.0648633	total: 825ms	remaining: 4.17s
33:	learn: 16.8298981	total: 848ms	remaining: 4.14s
34:	learn: 16.6371395	total: 872ms	remaining: 4.11s
35:	learn: 16.4706695	total: 896ms	remaining: 4.08s
36:	learn: 16.2417258	total: 922ms	remaining: 4.06s
37:	learn: 16.0550250	total: 946ms	remaining: 4.03s
38:	learn: 15.8743430	total: 972ms	remaining: 4.01s
39:	learn: 15.7086215	total: 1s	remaining: 4s
40:	learn: 15.5349794	total: 1.03s	remaining: 4.02s
41:	learn: 15.3661561	total: 1.06s	remaining: 3.99s
42:	learn: 15.1953294	total: 1.09s	remaining: 3.97s
43:	learn: 15.0239038	total: 1.11s	remaining: 3.94s
44:	learn: 14.8773748	total: 1.14s	remaining: 3.92s
45:	learn: 14.6611861	total: 1.16s	remaining: 3.9s
46:	learn: 14.5252257	total: 1.19s	remaining: 3.87s
47:	learn: 14.3792699	total: 1.22s	remaining: 3.85s
48:	learn: 14.2511628	total: 1.24s	remaining: 3.83s
49:	learn: 14.1345616	total: 1.27s	remaining: 3.81s
50:	learn: 13.9884078	total: 1.29s	remaining: 3.78s
51:	learn: 13.8664210	total: 1.32s	remaining: 3.75s
52:	learn: 13.7317425	total: 1.34s	remaining: 3.72s
53:	learn: 13.6052633	total: 1.37s	remaining: 3.69s
54:	learn: 13.4989783	total: 1.39s	remaining: 3.67s
55:	learn: 13.3711614	total: 1.42s	remaining: 3.64s
56:	learn: 13.2500078	total: 1.45s	remaining: 3.64s
57:	learn: 13.1495677	total: 1.48s	remaining: 3.62s
58:	learn: 13.0270356	total: 1.5s	remaining: 3.6s
59:	learn: 12.9010466	total: 1.53s	remaining: 3.57s
60:	learn: 12.7690116	total: 1.56s	remaining: 3.55s
61:	learn: 12.6721291	total: 1.58s	remaining: 3.52s
62:	learn: 12.5556250	total: 1.61s	remaining: 3.49s
63:	learn: 12.4465816	total: 1.63s	remaining: 3.46s
64:	learn: 12.3321066	total: 1.66s	remaining: 3.44s
65:	learn: 12.2170303	total: 1.69s	remaining: 3.44s
66:	learn: 12.1113674	total: 1.72s	remaining: 3.41s
67:	learn: 12.0224784	total: 1.74s	remaining: 3.39s
68:	learn: 11.9394297	total: 1.77s	remaining: 3.36s
69:	learn: 11.8303621	total: 1.79s	remaining: 3.33s
70:	learn: 11.7377540	total: 1.82s	remaining: 3.3s
71:	learn: 11.6367962	total: 1.84s	remaining: 3.28s
72:	learn: 11.5501496	total: 1.88s	remaining: 3.26s
73:	learn: 11.4493525	total: 1.9s	remaining: 3.24s
74:	learn: 11.3454123	total: 1.93s	remaining: 3.21s
75:	learn: 11.2512257	total: 1.96s	remaining: 3.19s
76:	learn: 11.1778585	total: 1.98s	remaining: 3.16s
77:	learn: 11.1109993	total: 2.01s	remaining: 3.14s
78:	learn: 11.0176987	total: 2.03s	remaining: 3.11s
79:	learn: 10.9457927	total: 2.06s	remaining: 3.09s
80:	learn: 10.8639363	total: 2.08s	remaining: 3.06s
81:	learn: 10.7872782	total: 2.12s	remaining: 3.05s
82:	learn: 10.6570129	total: 2.14s	remaining: 3.02s
83:	learn: 10.5760595	total: 2.17s	remaining: 2.99s
84:	learn: 10.4763853	total: 2.19s	remaining: 2.97s
85:	learn: 10.3931190	total: 2.22s	remaining: 2.94s
86:	learn: 10.3021565	total: 2.24s	remaining: 2.91s
87:	learn: 10.2202312	total: 2.27s	remaining: 2.89s
88:	learn: 10.1376195	total: 2.3s	remaining: 2.86s
89:	learn: 10.0481135	total: 2.33s	remaining: 2.85s
90:	learn: 9.9436402	total: 2.35s	remaining: 2.82s
91:	learn: 9.8883469	total: 2.38s	remaining: 2.79s
92:	learn: 9.8391453	total: 2.41s	remaining: 2.77s
93:	learn: 9.7559058	total: 2.43s	remaining: 2.74s
94:	learn: 9.7036404	total: 2.46s	remaining: 2.72s
95:	learn: 9.6339700	total: 2.48s	remaining: 2.69s
96:	learn: 9.5423437	total: 2.51s	remaining: 2.66s
97:	learn: 9.4694485	total: 2.54s	remaining: 2.65s
98:	learn: 9.3961815	total: 2.57s	remaining: 2.62s
99:	learn: 9.3398252	total: 2.59s	remaining: 2.59s
100:	learn: 9.2935490	total: 2.62s	remaining: 2.56s
101:	learn: 9.2264612	total: 2.64s	remaining: 2.54s
102:	learn: 9.1591537	total: 2.67s	remaining: 2.51s
103:	learn: 9.1096974	total: 2.69s	remaining: 2.49s
104:	learn: 9.0402122	total: 2.72s	remaining: 2.46s
105:	learn: 8.9683889	total: 2.76s	remaining: 2.44s
106:	learn: 8.9035307	total: 2.78s	remaining: 2.42s
107:	learn: 8.8402259	total: 2.81s	remaining: 2.39s
108:	learn: 8.7773911	total: 2.83s	remaining: 2.37s
109:	learn: 8.7025820	total: 2.86s	remaining: 2.34s
110:	learn: 8.6421216	total: 2.89s	remaining: 2.31s
111:	learn: 8.6017544	total: 2.91s	remaining: 2.29s
112:	learn: 8.5548626	total: 2.94s	remaining: 2.26s
113:	learn: 8.4992734	total: 2.97s	remaining: 2.24s
114:	learn: 8.4610970	total: 3s	remaining: 2.21s
115:	learn: 8.4038241	total: 3.02s	remaining: 2.19s
116:	learn: 8.3619090	total: 3.05s	remaining: 2.16s
117:	learn: 8.3076220	total: 3.07s	remaining: 2.14s
118:	learn: 8.2517766	total: 3.1s	remaining: 2.11s
119:	learn: 8.2074723	total: 3.12s	remaining: 2.08s
120:	learn: 8.1543738	total: 3.15s	remaining: 2.06s
121:	learn: 8.1040466	total: 3.18s	remaining: 2.03s
122:	learn: 8.0635009	total: 3.21s	remaining: 2.01s
123:	learn: 8.0202842	total: 3.24s	remaining: 1.98s
124:	learn: 7.9875970	total: 3.26s	remaining: 1.96s
125:	learn: 7.9325212	total: 3.29s	remaining: 1.93s
126:	learn: 7.9020290	total: 3.31s	remaining: 1.9s
127:	learn: 7.8515713	total: 3.34s	remaining: 1.88s
128:	learn: 7.8105577	total: 3.36s	remaining: 1.85s
129:	learn: 7.7794800	total: 3.4s	remaining: 1.83s
130:	learn: 7.7189049	total: 3.42s	remaining: 1.8s
131:	learn: 7.6676908	total: 3.44s	remaining: 1.77s
132:	learn: 7.6175263	total: 3.47s	remaining: 1.75s
133:	learn: 7.5756123	total: 3.49s	remaining: 1.72s
134:	learn: 7.5319541	total: 3.52s	remaining: 1.69s
135:	learn: 7.4770928	total: 3.54s	remaining: 1.67s
136:	learn: 7.4238892	total: 3.56s	remaining: 1.64s
137:	learn: 7.3904567	total: 3.59s	remaining: 1.61s
138:	learn: 7.3398209	total: 3.62s	remaining: 1.59s
139:	learn: 7.3033888	total: 3.65s	remaining: 1.56s
140:	learn: 7.2478465	total: 3.67s	remaining: 1.54s
141:	learn: 7.2063378	total: 3.7s	remaining: 1.51s
142:	learn: 7.1743925	total: 3.72s	remaining: 1.48s
143:	learn: 7.1424325	total: 3.75s	remaining: 1.46s
144:	learn: 7.1053244	total: 3.77s	remaining: 1.43s
145:	learn: 7.0697464	total: 3.8s	remaining: 1.4s
146:	learn: 7.0358400	total: 3.83s	remaining: 1.38s
147:	learn: 7.0052202	total: 3.85s	remaining: 1.35s
148:	learn: 6.9605461	total: 3.88s	remaining: 1.33s
149:	learn: 6.9296251	total: 3.9s	remaining: 1.3s
150:	learn: 6.8966440	total: 3.93s	remaining: 1.27s
151:	learn: 6.8598989	total: 3.95s	remaining: 1.25s
152:	learn: 6.8258947	total: 3.98s	remaining: 1.22s
153:	learn: 6.7746867	total: 4s	remaining: 1.19s
154:	learn: 6.7339621	total: 4.03s	remaining: 1.17s
155:	learn: 6.6892818	total: 4.06s	remaining: 1.14s
156:	learn: 6.6551188	total: 4.09s	remaining: 1.12s
157:	learn: 6.6101469	total: 4.11s	remaining: 1.09s
158:	learn: 6.5682910	total: 4.14s	remaining: 1.07s
159:	learn: 6.5324628	total: 4.16s	remaining: 1.04s
160:	learn: 6.4964901	total: 4.19s	remaining: 1.01s
161:	learn: 6.4574422	total: 4.21s	remaining: 988ms
162:	learn: 6.4198366	total: 4.24s	remaining: 961ms
163:	learn: 6.3960124	total: 4.26s	remaining: 935ms
164:	learn: 6.3584522	total: 4.29s	remaining: 911ms
165:	learn: 6.3234969	total: 4.32s	remaining: 884ms
166:	learn: 6.2790169	total: 4.34s	remaining: 858ms
167:	learn: 6.2322601	total: 4.36s	remaining: 831ms
168:	learn: 6.2069447	total: 4.39s	remaining: 805ms
169:	learn: 6.1655187	total: 4.41s	remaining: 779ms
170:	learn: 6.1327685	total: 4.44s	remaining: 752ms
171:	learn: 6.0940435	total: 4.46s	remaining: 726ms
172:	learn: 6.0496032	total: 4.49s	remaining: 700ms
173:	learn: 6.0139582	total: 4.52s	remaining: 676ms
174:	learn: 5.9701293	total: 4.55s	remaining: 649ms
175:	learn: 5.9344034	total: 4.57s	remaining: 623ms
176:	learn: 5.8981198	total: 4.6s	remaining: 597ms
177:	learn: 5.8589414	total: 4.62s	remaining: 571ms
178:	learn: 5.8288766	total: 4.64s	remaining: 545ms
179:	learn: 5.7933689	total: 4.67s	remaining: 519ms
180:	learn: 5.7573047	total: 4.69s	remaining: 493ms
181:	learn: 5.7344764	total: 4.72s	remaining: 467ms
182:	learn: 5.7107730	total: 4.75s	remaining: 441ms
183:	learn: 5.6764723	total: 4.77s	remaining: 415ms
184:	learn: 5.6466489	total: 4.8s	remaining: 389ms
185:	learn: 5.6117025	total: 4.82s	remaining: 363ms
186:	learn: 5.5702695	total: 4.84s	remaining: 337ms
187:	learn: 5.5397006	total: 4.87s	remaining: 311ms
188:	learn: 5.5019375	total: 4.89s	remaining: 285ms
189:	learn: 5.4658715	total: 4.92s	remaining: 259ms
190:	learn: 5.4334513	total: 4.96s	remaining: 234ms
191:	learn: 5.4190693	total: 4.99s	remaining: 208ms
192:	learn: 5.3810480	total: 5.02s	remaining: 182ms
193:	learn: 5.3485204	total: 5.05s	remaining: 156ms
194:	learn: 5.3230681	total: 5.08s	remaining: 130ms
195:	learn: 5.2814853	total: 5.1s	remaining: 104ms
196:	learn: 5.2717381	total: 5.13s	remaining: 78.1ms
197:	learn: 5.2433576	total: 5.17s	remaining: 52.2ms
198:	learn: 5.2342737	total: 5.19s	remaining: 26.1ms
199:	learn: 5.1867289	total: 5.23s	remaining: 0us
0:	learn: 42.7705174	total: 26.2ms	remaining: 5.21s
1:	learn: 41.7656178	total: 54.2ms	remaining: 5.37s
2:	learn: 40.8179156	total: 83.8ms	remaining: 5.5s
3:	learn: 39.6523791	total: 96.3ms	remaining: 4.72s
4:	learn: 38.7129138	total: 128ms	remaining: 4.99s
5:	learn: 37.8422176	total: 156ms	remaining: 5.03s
6:	learn: 36.8116359	total: 182ms	remaining: 5.03s
7:	learn: 36.0052487	total: 209ms	remaining: 5.01s
8:	learn: 35.2849975	total: 245ms	remaining: 5.19s
9:	learn: 34.4756781	total: 272ms	remaining: 5.17s
10:	learn: 33.6653999	total: 302ms	remaining: 5.19s
11:	learn: 32.7620757	total: 335ms	remaining: 5.25s
12:	learn: 32.0480959	total: 362ms	remaining: 5.2s
13:	learn: 31.4172082	total: 388ms	remaining: 5.16s
14:	learn: 30.8340727	total: 415ms	remaining: 5.12s
15:	learn: 30.2683567	total: 442ms	remaining: 5.08s
16:	learn: 29.8492136	total: 479ms	remaining: 5.15s
17:	learn: 29.2125099	total: 511ms	remaining: 5.17s
18:	learn: 28.6054738	total: 540ms	remaining: 5.14s
19:	learn: 28.0640663	total: 567ms	remaining: 5.1s
20:	learn: 27.5413586	total: 594ms	remaining: 5.06s
21:	learn: 26.9873574	total: 621ms	remaining: 5.02s
22:	learn: 26.3484257	total: 649ms	remaining: 4.99s
23:	learn: 25.8429212	total: 675ms	remaining: 4.95s
24:	learn: 25.3750345	total: 701ms	remaining: 4.91s
25:	learn: 24.8995542	total: 739ms	remaining: 4.95s
26:	learn: 24.4763414	total: 744ms	remaining: 4.77s
27:	learn: 24.0223071	total: 776ms	remaining: 4.76s
28:	learn: 23.5490716	total: 803ms	remaining: 4.73s
29:	learn: 23.2249502	total: 830ms	remaining: 4.7s
30:	learn: 22.8048550	total: 856ms	remaining: 4.67s
31:	learn: 22.5381351	total: 882ms	remaining: 4.63s
32:	learn: 22.1317703	total: 909ms	remaining: 4.6s
33:	learn: 21.7444080	total: 936ms	remaining: 4.57s
34:	learn: 21.3990423	total: 975ms	remaining: 4.59s
35:	learn: 21.1239746	total: 1.01s	remaining: 4.61s
36:	learn: 20.8039218	total: 1.04s	remaining: 4.58s
37:	learn: 20.5044886	total: 1.07s	remaining: 4.55s
38:	learn: 20.2580104	total: 1.09s	remaining: 4.52s
39:	learn: 19.9234991	total: 1.12s	remaining: 4.49s
40:	learn: 19.6150872	total: 1.15s	remaining: 4.46s
41:	learn: 19.3387395	total: 1.18s	remaining: 4.42s
42:	learn: 19.1094717	total: 1.21s	remaining: 4.42s
43:	learn: 18.8720442	total: 1.24s	remaining: 4.41s
44:	learn: 18.5949279	total: 1.27s	remaining: 4.37s
45:	learn: 18.3092362	total: 1.3s	remaining: 4.34s
46:	learn: 18.0869723	total: 1.32s	remaining: 4.31s
47:	learn: 17.8480253	total: 1.35s	remaining: 4.27s
48:	learn: 17.6697203	total: 1.38s	remaining: 4.24s
49:	learn: 17.4805106	total: 1.41s	remaining: 4.22s
50:	learn: 17.2762453	total: 1.46s	remaining: 4.25s
51:	learn: 17.0525457	total: 1.48s	remaining: 4.22s
52:	learn: 16.8777174	total: 1.51s	remaining: 4.2s
53:	learn: 16.6928868	total: 1.54s	remaining: 4.17s
54:	learn: 16.5257601	total: 1.57s	remaining: 4.14s
55:	learn: 16.3285949	total: 1.6s	remaining: 4.11s
56:	learn: 16.1573162	total: 1.62s	remaining: 4.08s
57:	learn: 15.9898094	total: 1.65s	remaining: 4.04s
58:	learn: 15.8177173	total: 1.69s	remaining: 4.03s
59:	learn: 15.6220285	total: 1.72s	remaining: 4.02s
60:	learn: 15.4921595	total: 1.75s	remaining: 3.98s
61:	learn: 15.2259668	total: 1.77s	remaining: 3.95s
62:	learn: 15.0578599	total: 1.8s	remaining: 3.92s
63:	learn: 14.8598966	total: 1.83s	remaining: 3.89s
64:	learn: 14.7079676	total: 1.86s	remaining: 3.86s
65:	learn: 14.5262302	total: 1.9s	remaining: 3.86s
66:	learn: 14.3947423	total: 1.93s	remaining: 3.83s
67:	learn: 14.2508493	total: 1.97s	remaining: 3.82s
68:	learn: 14.1502560	total: 2s	remaining: 3.79s
69:	learn: 13.9997992	total: 2.02s	remaining: 3.75s
70:	learn: 13.8600785	total: 2.05s	remaining: 3.72s
71:	learn: 13.7348317	total: 2.08s	remaining: 3.69s
72:	learn: 13.6556478	total: 2.11s	remaining: 3.66s
73:	learn: 13.5217356	total: 2.14s	remaining: 3.64s
74:	learn: 13.4231392	total: 2.17s	remaining: 3.61s
75:	learn: 13.2847848	total: 2.2s	remaining: 3.59s
76:	learn: 13.1458481	total: 2.23s	remaining: 3.56s
77:	learn: 13.0475561	total: 2.25s	remaining: 3.53s
78:	learn: 12.9445908	total: 2.28s	remaining: 3.49s
79:	learn: 12.8213077	total: 2.31s	remaining: 3.46s
80:	learn: 12.7210762	total: 2.35s	remaining: 3.45s
81:	learn: 12.6320186	total: 2.38s	remaining: 3.42s
82:	learn: 12.5362788	total: 2.4s	remaining: 3.39s
83:	learn: 12.4350353	total: 2.44s	remaining: 3.37s
84:	learn: 12.3601174	total: 2.47s	remaining: 3.34s
85:	learn: 12.2940655	total: 2.5s	remaining: 3.31s
86:	learn: 12.2055695	total: 2.52s	remaining: 3.28s
87:	learn: 12.1249471	total: 2.56s	remaining: 3.25s
88:	learn: 12.0198476	total: 2.59s	remaining: 3.23s
89:	learn: 11.9560995	total: 2.61s	remaining: 3.19s
90:	learn: 11.8997810	total: 2.64s	remaining: 3.16s
91:	learn: 11.8272800	total: 2.67s	remaining: 3.13s
92:	learn: 11.7398723	total: 2.7s	remaining: 3.11s
93:	learn: 11.6996897	total: 2.73s	remaining: 3.08s
94:	learn: 11.5707058	total: 2.76s	remaining: 3.05s
95:	learn: 11.4454892	total: 2.8s	remaining: 3.03s
96:	learn: 11.3786021	total: 2.83s	remaining: 3s
97:	learn: 11.2823760	total: 2.86s	remaining: 2.97s
98:	learn: 11.1929769	total: 2.88s	remaining: 2.94s
99:	learn: 11.1117188	total: 2.91s	remaining: 2.91s
100:	learn: 11.0443487	total: 2.95s	remaining: 2.89s
101:	learn: 10.9544034	total: 2.98s	remaining: 2.87s
102:	learn: 10.8897010	total: 3.01s	remaining: 2.83s
103:	learn: 10.8066831	total: 3.04s	remaining: 2.8s
104:	learn: 10.7378345	total: 3.06s	remaining: 2.77s
105:	learn: 10.6720239	total: 3.09s	remaining: 2.74s
106:	learn: 10.6053924	total: 3.12s	remaining: 2.71s
107:	learn: 10.5352672	total: 3.14s	remaining: 2.68s
108:	learn: 10.4698192	total: 3.18s	remaining: 2.65s
109:	learn: 10.3932540	total: 3.21s	remaining: 2.63s
110:	learn: 10.3302850	total: 3.24s	remaining: 2.6s
111:	learn: 10.2386464	total: 3.27s	remaining: 2.57s
112:	learn: 10.1614263	total: 3.3s	remaining: 2.54s
113:	learn: 10.1246223	total: 3.33s	remaining: 2.51s
114:	learn: 10.0376415	total: 3.35s	remaining: 2.48s
115:	learn: 9.9533922	total: 3.38s	remaining: 2.45s
116:	learn: 9.9116832	total: 3.42s	remaining: 2.42s
117:	learn: 9.8262895	total: 3.45s	remaining: 2.4s
118:	learn: 9.7550180	total: 3.48s	remaining: 2.37s
119:	learn: 9.6335263	total: 3.5s	remaining: 2.33s
120:	learn: 9.5729126	total: 3.53s	remaining: 2.3s
121:	learn: 9.4973694	total: 3.56s	remaining: 2.27s
122:	learn: 9.4234732	total: 3.58s	remaining: 2.24s
123:	learn: 9.3688511	total: 3.61s	remaining: 2.21s
124:	learn: 9.3131658	total: 3.64s	remaining: 2.18s
125:	learn: 9.2438024	total: 3.68s	remaining: 2.16s
126:	learn: 9.1906870	total: 3.71s	remaining: 2.13s
127:	learn: 9.1517009	total: 3.74s	remaining: 2.1s
128:	learn: 9.0807473	total: 3.77s	remaining: 2.07s
129:	learn: 9.0380225	total: 3.8s	remaining: 2.04s
130:	learn: 9.0003912	total: 3.82s	remaining: 2.01s
131:	learn: 8.9192469	total: 3.85s	remaining: 1.98s
132:	learn: 8.8535215	total: 3.88s	remaining: 1.95s
133:	learn: 8.8131428	total: 3.92s	remaining: 1.93s
134:	learn: 8.7593274	total: 3.95s	remaining: 1.9s
135:	learn: 8.7015525	total: 3.97s	remaining: 1.87s
136:	learn: 8.6407713	total: 4s	remaining: 1.84s
137:	learn: 8.5518756	total: 4.03s	remaining: 1.81s
138:	learn: 8.5058763	total: 4.05s	remaining: 1.78s
139:	learn: 8.4269041	total: 4.08s	remaining: 1.75s
140:	learn: 8.3587465	total: 4.12s	remaining: 1.73s
141:	learn: 8.2765653	total: 4.16s	remaining: 1.7s
142:	learn: 8.2346336	total: 4.19s	remaining: 1.67s
143:	learn: 8.1850701	total: 4.21s	remaining: 1.64s
144:	learn: 8.1340056	total: 4.24s	remaining: 1.61s
145:	learn: 8.0755445	total: 4.27s	remaining: 1.58s
146:	learn: 8.0340646	total: 4.3s	remaining: 1.55s
147:	learn: 7.9794679	total: 4.33s	remaining: 1.52s
148:	learn: 7.9112254	total: 4.36s	remaining: 1.49s
149:	learn: 7.8581019	total: 4.39s	remaining: 1.46s
150:	learn: 7.8080015	total: 4.42s	remaining: 1.43s
151:	learn: 7.7571579	total: 4.45s	remaining: 1.4s
152:	learn: 7.6995804	total: 4.47s	remaining: 1.37s
153:	learn: 7.6356250	total: 4.51s	remaining: 1.35s
154:	learn: 7.5942229	total: 4.54s	remaining: 1.32s
155:	learn: 7.5376240	total: 4.57s	remaining: 1.29s
156:	learn: 7.4951124	total: 4.59s	remaining: 1.26s
157:	learn: 7.4552667	total: 4.62s	remaining: 1.23s
158:	learn: 7.3992394	total: 4.66s	remaining: 1.2s
159:	learn: 7.3647438	total: 4.68s	remaining: 1.17s
160:	learn: 7.3092700	total: 4.71s	remaining: 1.14s
161:	learn: 7.2770042	total: 4.75s	remaining: 1.11s
162:	learn: 7.2585241	total: 4.78s	remaining: 1.08s
163:	learn: 7.2417757	total: 4.8s	remaining: 1.05s
164:	learn: 7.1943168	total: 4.83s	remaining: 1.02s
165:	learn: 7.1744675	total: 4.86s	remaining: 995ms
166:	learn: 7.1343559	total: 4.89s	remaining: 967ms
167:	learn: 7.1028128	total: 4.92s	remaining: 937ms
168:	learn: 7.0573171	total: 4.95s	remaining: 908ms
169:	learn: 6.9993075	total: 4.99s	remaining: 880ms
170:	learn: 6.9513510	total: 5.01s	remaining: 850ms
171:	learn: 6.9058701	total: 5.04s	remaining: 821ms
172:	learn: 6.8569156	total: 5.07s	remaining: 791ms
173:	learn: 6.8113961	total: 5.09s	remaining: 761ms
174:	learn: 6.7709772	total: 5.13s	remaining: 733ms
175:	learn: 6.7315058	total: 5.16s	remaining: 703ms
176:	learn: 6.6835509	total: 5.18s	remaining: 674ms
177:	learn: 6.6493245	total: 5.22s	remaining: 645ms
178:	learn: 6.6189204	total: 5.25s	remaining: 616ms
179:	learn: 6.5819690	total: 5.27s	remaining: 586ms
180:	learn: 6.5491324	total: 5.3s	remaining: 556ms
181:	learn: 6.5086060	total: 5.33s	remaining: 527ms
182:	learn: 6.4648748	total: 5.36s	remaining: 498ms
183:	learn: 6.4368748	total: 5.39s	remaining: 469ms
184:	learn: 6.4016410	total: 5.43s	remaining: 440ms
185:	learn: 6.3655740	total: 5.45s	remaining: 411ms
186:	learn: 6.3236780	total: 5.48s	remaining: 381ms
187:	learn: 6.2898164	total: 5.51s	remaining: 352ms
188:	learn: 6.2551311	total: 5.54s	remaining: 322ms
189:	learn: 6.2414730	total: 5.56s	remaining: 293ms
190:	learn: 6.2134145	total: 5.59s	remaining: 263ms
191:	learn: 6.1510986	total: 5.63s	remaining: 235ms
192:	learn: 6.1135210	total: 5.66s	remaining: 205ms
193:	learn: 6.0698374	total: 5.69s	remaining: 176ms
194:	learn: 6.0286009	total: 5.71s	remaining: 147ms
195:	learn: 5.9974556	total: 5.74s	remaining: 117ms
196:	learn: 5.9582225	total: 5.77s	remaining: 87.9ms
197:	learn: 5.9251268	total: 5.8s	remaining: 58.6ms
198:	learn: 5.9012186	total: 5.83s	remaining: 29.3ms
199:	learn: 5.8691774	total: 5.87s	remaining: 0us
0:	learn: 46.4051117	total: 25.9ms	remaining: 5.15s
1:	learn: 45.3311808	total: 52.4ms	remaining: 5.19s
2:	learn: 44.2355531	total: 78.3ms	remaining: 5.14s
3:	learn: 43.2958733	total: 106ms	remaining: 5.18s
4:	learn: 42.3536589	total: 134ms	remaining: 5.22s
5:	learn: 41.4859961	total: 167ms	remaining: 5.39s
6:	learn: 40.5534910	total: 195ms	remaining: 5.38s
7:	learn: 39.7060893	total: 229ms	remaining: 5.51s
8:	learn: 38.8439981	total: 256ms	remaining: 5.43s
9:	learn: 38.2669414	total: 283ms	remaining: 5.38s
10:	learn: 37.6759770	total: 310ms	remaining: 5.33s
11:	learn: 36.9869277	total: 339ms	remaining: 5.3s
12:	learn: 36.3901257	total: 371ms	remaining: 5.34s
13:	learn: 35.7917302	total: 403ms	remaining: 5.35s
14:	learn: 35.2174952	total: 430ms	remaining: 5.3s
15:	learn: 34.5826754	total: 466ms	remaining: 5.36s
16:	learn: 34.0874316	total: 494ms	remaining: 5.32s
17:	learn: 33.5003568	total: 521ms	remaining: 5.27s
18:	learn: 32.7934787	total: 550ms	remaining: 5.24s
19:	learn: 31.9083319	total: 581ms	remaining: 5.23s
20:	learn: 31.2930063	total: 610ms	remaining: 5.2s
21:	learn: 30.7897560	total: 637ms	remaining: 5.15s
22:	learn: 30.1479920	total: 663ms	remaining: 5.1s
23:	learn: 29.5764365	total: 690ms	remaining: 5.06s
24:	learn: 29.0910861	total: 724ms	remaining: 5.07s
25:	learn: 28.4397299	total: 751ms	remaining: 5.03s
26:	learn: 27.8228369	total: 779ms	remaining: 4.99s
27:	learn: 27.3877661	total: 821ms	remaining: 5.04s
28:	learn: 26.9261524	total: 850ms	remaining: 5.01s
29:	learn: 26.5038338	total: 878ms	remaining: 4.97s
30:	learn: 26.2151044	total: 905ms	remaining: 4.93s
31:	learn: 25.8170458	total: 932ms	remaining: 4.89s
32:	learn: 25.4852966	total: 968ms	remaining: 4.9s
33:	learn: 25.0288024	total: 995ms	remaining: 4.86s
34:	learn: 24.6327933	total: 1.03s	remaining: 4.86s
35:	learn: 24.1334075	total: 1.06s	remaining: 4.82s
36:	learn: 23.7648659	total: 1.08s	remaining: 4.78s
37:	learn: 23.4059601	total: 1.11s	remaining: 4.74s
38:	learn: 23.0824106	total: 1.14s	remaining: 4.7s
39:	learn: 22.8059757	total: 1.16s	remaining: 4.66s
40:	learn: 22.5306226	total: 1.2s	remaining: 4.66s
41:	learn: 22.2219847	total: 1.23s	remaining: 4.62s
42:	learn: 21.8972204	total: 1.26s	remaining: 4.61s
43:	learn: 21.5236072	total: 1.29s	remaining: 4.57s
44:	learn: 21.2553689	total: 1.32s	remaining: 4.54s
45:	learn: 20.8401171	total: 1.34s	remaining: 4.5s
46:	learn: 20.5752228	total: 1.37s	remaining: 4.46s
47:	learn: 20.3528352	total: 1.4s	remaining: 4.43s
48:	learn: 20.1615025	total: 1.44s	remaining: 4.42s
49:	learn: 19.8957215	total: 1.46s	remaining: 4.39s
50:	learn: 19.6512654	total: 1.5s	remaining: 4.37s
51:	learn: 19.4334583	total: 1.52s	remaining: 4.34s
52:	learn: 19.1886760	total: 1.55s	remaining: 4.3s
53:	learn: 18.8797014	total: 1.58s	remaining: 4.27s
54:	learn: 18.6166876	total: 1.6s	remaining: 4.23s
55:	learn: 18.3791724	total: 1.63s	remaining: 4.19s
56:	learn: 18.2115659	total: 1.66s	remaining: 4.16s
57:	learn: 18.0722693	total: 1.69s	remaining: 4.14s
58:	learn: 17.8852192	total: 1.73s	remaining: 4.14s
59:	learn: 17.7272446	total: 1.76s	remaining: 4.1s
60:	learn: 17.4942483	total: 1.79s	remaining: 4.07s
61:	learn: 17.3054937	total: 1.81s	remaining: 4.04s
62:	learn: 17.1549585	total: 1.84s	remaining: 4.01s
63:	learn: 16.9975916	total: 1.87s	remaining: 3.97s
64:	learn: 16.8858589	total: 1.9s	remaining: 3.94s
65:	learn: 16.6701164	total: 1.94s	remaining: 3.93s
66:	learn: 16.5500620	total: 1.97s	remaining: 3.9s
67:	learn: 16.3458753	total: 1.99s	remaining: 3.87s
68:	learn: 16.1878838	total: 2.02s	remaining: 3.83s
69:	learn: 16.0305134	total: 2.04s	remaining: 3.8s
70:	learn: 15.8487627	total: 2.07s	remaining: 3.77s
71:	learn: 15.6683766	total: 2.1s	remaining: 3.73s
72:	learn: 15.5077137	total: 2.13s	remaining: 3.7s
73:	learn: 15.4103876	total: 2.17s	remaining: 3.7s
74:	learn: 15.2840688	total: 2.2s	remaining: 3.67s
75:	learn: 15.1507590	total: 2.23s	remaining: 3.64s
76:	learn: 14.9825337	total: 2.26s	remaining: 3.6s
77:	learn: 14.8044062	total: 2.29s	remaining: 3.57s
78:	learn: 14.6711374	total: 2.31s	remaining: 3.54s
79:	learn: 14.5318692	total: 2.34s	remaining: 3.51s
80:	learn: 14.4181194	total: 2.37s	remaining: 3.49s
81:	learn: 14.2559532	total: 2.41s	remaining: 3.47s
82:	learn: 14.1026042	total: 2.44s	remaining: 3.44s
83:	learn: 13.9184961	total: 2.46s	remaining: 3.4s
84:	learn: 13.7905556	total: 2.49s	remaining: 3.37s
85:	learn: 13.6755541	total: 2.52s	remaining: 3.34s
86:	learn: 13.5644560	total: 2.54s	remaining: 3.3s
87:	learn: 13.4412378	total: 2.57s	remaining: 3.27s
88:	learn: 13.3271667	total: 2.61s	remaining: 3.25s
89:	learn: 13.2634410	total: 2.64s	remaining: 3.22s
90:	learn: 13.1463553	total: 2.67s	remaining: 3.2s
91:	learn: 13.0389944	total: 2.7s	remaining: 3.17s
92:	learn: 12.9605830	total: 2.73s	remaining: 3.14s
93:	learn: 12.8819119	total: 2.75s	remaining: 3.1s
94:	learn: 12.8038551	total: 2.78s	remaining: 3.07s
95:	learn: 12.7013498	total: 2.81s	remaining: 3.04s
96:	learn: 12.6011350	total: 2.84s	remaining: 3.02s
97:	learn: 12.4949377	total: 2.87s	remaining: 2.99s
98:	learn: 12.3808699	total: 2.9s	remaining: 2.96s
99:	learn: 12.2551864	total: 2.93s	remaining: 2.93s
100:	learn: 12.1590434	total: 2.96s	remaining: 2.9s
101:	learn: 12.0701882	total: 2.98s	remaining: 2.87s
102:	learn: 11.9724049	total: 3.01s	remaining: 2.84s
103:	learn: 11.9003953	total: 3.05s	remaining: 2.82s
104:	learn: 11.8213364	total: 3.08s	remaining: 2.79s
105:	learn: 11.7342445	total: 3.11s	remaining: 2.75s
106:	learn: 11.6402394	total: 3.14s	remaining: 2.73s
107:	learn: 11.5251390	total: 3.17s	remaining: 2.7s
108:	learn: 11.4184182	total: 3.2s	remaining: 2.67s
109:	learn: 11.3344360	total: 3.23s	remaining: 2.64s
110:	learn: 11.2622852	total: 3.26s	remaining: 2.61s
111:	learn: 11.1790951	total: 3.29s	remaining: 2.58s
112:	learn: 11.0982174	total: 3.31s	remaining: 2.55s
113:	learn: 11.0028461	total: 3.34s	remaining: 2.52s
114:	learn: 10.9167653	total: 3.37s	remaining: 2.49s
115:	learn: 10.8493708	total: 3.4s	remaining: 2.46s
116:	learn: 10.7763226	total: 3.43s	remaining: 2.43s
117:	learn: 10.7057684	total: 3.46s	remaining: 2.41s
118:	learn: 10.6264693	total: 3.49s	remaining: 2.38s
119:	learn: 10.5711538	total: 3.52s	remaining: 2.35s
120:	learn: 10.4653048	total: 3.55s	remaining: 2.32s
121:	learn: 10.3852668	total: 3.58s	remaining: 2.29s
122:	learn: 10.3250160	total: 3.6s	remaining: 2.25s
123:	learn: 10.2399308	total: 3.64s	remaining: 2.23s
124:	learn: 10.1420007	total: 3.67s	remaining: 2.2s
125:	learn: 10.0732762	total: 3.7s	remaining: 2.17s
126:	learn: 9.9940788	total: 3.73s	remaining: 2.14s
127:	learn: 9.9355996	total: 3.75s	remaining: 2.11s
128:	learn: 9.8497364	total: 3.78s	remaining: 2.08s
129:	learn: 9.7895966	total: 3.81s	remaining: 2.05s
130:	learn: 9.6875558	total: 3.83s	remaining: 2.02s
131:	learn: 9.6104126	total: 3.87s	remaining: 1.99s
132:	learn: 9.5492690	total: 3.9s	remaining: 1.97s
133:	learn: 9.4721709	total: 3.93s	remaining: 1.94s
134:	learn: 9.4178189	total: 3.96s	remaining: 1.91s
135:	learn: 9.3728501	total: 3.98s	remaining: 1.88s
136:	learn: 9.3177755	total: 4.01s	remaining: 1.84s
137:	learn: 9.2373853	total: 4.04s	remaining: 1.81s
138:	learn: 9.1782253	total: 4.07s	remaining: 1.78s
139:	learn: 9.0990070	total: 4.11s	remaining: 1.76s
140:	learn: 9.0322138	total: 4.14s	remaining: 1.73s
141:	learn: 8.9513335	total: 4.17s	remaining: 1.7s
142:	learn: 8.9060598	total: 4.19s	remaining: 1.67s
143:	learn: 8.8583333	total: 4.22s	remaining: 1.64s
144:	learn: 8.7916062	total: 4.25s	remaining: 1.61s
145:	learn: 8.7421371	total: 4.27s	remaining: 1.58s
146:	learn: 8.6831819	total: 4.3s	remaining: 1.55s
147:	learn: 8.6357395	total: 4.35s	remaining: 1.53s
148:	learn: 8.5967062	total: 4.37s	remaining: 1.5s
149:	learn: 8.5402882	total: 4.4s	remaining: 1.47s
150:	learn: 8.5035819	total: 4.43s	remaining: 1.44s
151:	learn: 8.4428420	total: 4.46s	remaining: 1.41s
152:	learn: 8.3862981	total: 4.48s	remaining: 1.38s
153:	learn: 8.3449516	total: 4.51s	remaining: 1.35s
154:	learn: 8.2974681	total: 4.54s	remaining: 1.32s
155:	learn: 8.2445471	total: 4.57s	remaining: 1.29s
156:	learn: 8.1944830	total: 4.61s	remaining: 1.26s
157:	learn: 8.1233294	total: 4.63s	remaining: 1.23s
158:	learn: 8.0686011	total: 4.66s	remaining: 1.2s
159:	learn: 8.0017590	total: 4.68s	remaining: 1.17s
160:	learn: 7.9684685	total: 4.71s	remaining: 1.14s
161:	learn: 7.9203748	total: 4.74s	remaining: 1.11s
162:	learn: 7.8498597	total: 4.78s	remaining: 1.08s
163:	learn: 7.8013320	total: 4.81s	remaining: 1.05s
164:	learn: 7.7409599	total: 4.84s	remaining: 1.03s
165:	learn: 7.7062957	total: 4.87s	remaining: 998ms
166:	learn: 7.6445487	total: 4.9s	remaining: 968ms
167:	learn: 7.5991646	total: 4.93s	remaining: 939ms
168:	learn: 7.5571767	total: 4.95s	remaining: 909ms
169:	learn: 7.5269914	total: 4.98s	remaining: 879ms
170:	learn: 7.4754414	total: 5.01s	remaining: 851ms
171:	learn: 7.4256871	total: 5.04s	remaining: 821ms
172:	learn: 7.3831192	total: 5.08s	remaining: 792ms
173:	learn: 7.3552148	total: 5.1s	remaining: 763ms
174:	learn: 7.3096199	total: 5.13s	remaining: 733ms
175:	learn: 7.2317367	total: 5.16s	remaining: 703ms
176:	learn: 7.2010444	total: 5.18s	remaining: 674ms
177:	learn: 7.1509220	total: 5.22s	remaining: 645ms
178:	learn: 7.0958885	total: 5.25s	remaining: 616ms
179:	learn: 7.0364497	total: 5.28s	remaining: 587ms
180:	learn: 7.0019327	total: 5.31s	remaining: 557ms
181:	learn: 6.9673170	total: 5.34s	remaining: 529ms
182:	learn: 6.9126684	total: 5.37s	remaining: 499ms
183:	learn: 6.8712651	total: 5.4s	remaining: 469ms
184:	learn: 6.8295644	total: 5.43s	remaining: 440ms
185:	learn: 6.7901113	total: 5.46s	remaining: 411ms
186:	learn: 6.7460089	total: 5.49s	remaining: 381ms
187:	learn: 6.7088216	total: 5.51s	remaining: 352ms
188:	learn: 6.6627755	total: 5.54s	remaining: 322ms
189:	learn: 6.6265720	total: 5.57s	remaining: 293ms
190:	learn: 6.5856555	total: 5.6s	remaining: 264ms
191:	learn: 6.5557671	total: 5.63s	remaining: 235ms
192:	learn: 6.5162767	total: 5.67s	remaining: 205ms
193:	learn: 6.4897095	total: 5.69s	remaining: 176ms
194:	learn: 6.4501228	total: 5.72s	remaining: 147ms
195:	learn: 6.4130432	total: 5.75s	remaining: 117ms
196:	learn: 6.3785503	total: 5.78s	remaining: 88ms
197:	learn: 6.3359295	total: 5.81s	remaining: 58.7ms
198:	learn: 6.3074660	total: 5.84s	remaining: 29.3ms
199:	learn: 6.2771006	total: 5.87s	remaining: 0us
0:	learn: 45.9785919	total: 27.2ms	remaining: 5.41s
1:	learn: 44.9581939	total: 54ms	remaining: 5.34s
2:	learn: 43.9091127	total: 81.3ms	remaining: 5.34s
3:	learn: 42.7984962	total: 109ms	remaining: 5.33s
4:	learn: 41.9715841	total: 137ms	remaining: 5.33s
5:	learn: 41.2949683	total: 183ms	remaining: 5.92s
6:	learn: 40.4494730	total: 210ms	remaining: 5.78s
7:	learn: 39.6906390	total: 237ms	remaining: 5.7s
8:	learn: 38.6718680	total: 265ms	remaining: 5.63s
9:	learn: 37.9176664	total: 293ms	remaining: 5.56s
10:	learn: 36.9169551	total: 324ms	remaining: 5.56s
11:	learn: 36.1670753	total: 357ms	remaining: 5.59s
12:	learn: 35.6362382	total: 385ms	remaining: 5.54s
13:	learn: 35.0764262	total: 411ms	remaining: 5.46s
14:	learn: 34.5241023	total: 447ms	remaining: 5.51s
15:	learn: 33.9112917	total: 473ms	remaining: 5.44s
16:	learn: 33.1023896	total: 500ms	remaining: 5.38s
17:	learn: 32.5227767	total: 527ms	remaining: 5.32s
18:	learn: 31.9685385	total: 554ms	remaining: 5.28s
19:	learn: 31.4048780	total: 589ms	remaining: 5.3s
20:	learn: 30.9173286	total: 618ms	remaining: 5.27s
21:	learn: 30.4889417	total: 645ms	remaining: 5.22s
22:	learn: 29.9957742	total: 680ms	remaining: 5.23s
23:	learn: 29.5532403	total: 708ms	remaining: 5.19s
24:	learn: 29.0869023	total: 735ms	remaining: 5.15s
25:	learn: 28.7131197	total: 762ms	remaining: 5.1s
26:	learn: 28.2622970	total: 792ms	remaining: 5.07s
27:	learn: 27.7045502	total: 827ms	remaining: 5.08s
28:	learn: 27.2689985	total: 853ms	remaining: 5.03s
29:	learn: 26.8937625	total: 879ms	remaining: 4.98s
30:	learn: 26.4723305	total: 913ms	remaining: 4.98s
31:	learn: 26.0613360	total: 940ms	remaining: 4.93s
32:	learn: 25.7354314	total: 966ms	remaining: 4.89s
33:	learn: 25.4365901	total: 996ms	remaining: 4.86s
34:	learn: 25.0579971	total: 1.03s	remaining: 4.86s
35:	learn: 24.6756006	total: 1.06s	remaining: 4.83s
36:	learn: 24.3211908	total: 1.09s	remaining: 4.79s
37:	learn: 23.8567945	total: 1.11s	remaining: 4.75s
38:	learn: 23.5856536	total: 1.14s	remaining: 4.72s
39:	learn: 23.3552361	total: 1.18s	remaining: 4.71s
40:	learn: 23.1477272	total: 1.21s	remaining: 4.7s
41:	learn: 22.8497360	total: 1.24s	remaining: 4.67s
42:	learn: 22.5809198	total: 1.27s	remaining: 4.63s
43:	learn: 22.2522495	total: 1.29s	remaining: 4.59s
44:	learn: 21.9258917	total: 1.32s	remaining: 4.55s
45:	learn: 21.6933205	total: 1.35s	remaining: 4.51s
46:	learn: 21.4423031	total: 1.37s	remaining: 4.47s
47:	learn: 21.1573471	total: 1.41s	remaining: 4.47s
48:	learn: 20.9677940	total: 1.45s	remaining: 4.46s
49:	learn: 20.7417189	total: 1.47s	remaining: 4.42s
50:	learn: 20.5010597	total: 1.5s	remaining: 4.38s
51:	learn: 20.2654074	total: 1.53s	remaining: 4.35s
52:	learn: 20.0568837	total: 1.55s	remaining: 4.31s
53:	learn: 19.8187698	total: 1.58s	remaining: 4.28s
54:	learn: 19.5549335	total: 1.61s	remaining: 4.24s
55:	learn: 19.4061951	total: 1.65s	remaining: 4.23s
56:	learn: 19.2259890	total: 1.68s	remaining: 4.21s
57:	learn: 19.0335945	total: 1.71s	remaining: 4.17s
58:	learn: 18.8545847	total: 1.73s	remaining: 4.14s
59:	learn: 18.7070231	total: 1.76s	remaining: 4.11s
60:	learn: 18.5923917	total: 1.79s	remaining: 4.07s
61:	learn: 18.4429719	total: 1.81s	remaining: 4.04s
62:	learn: 18.2825510	total: 1.84s	remaining: 4s
63:	learn: 18.1358848	total: 1.87s	remaining: 3.97s
64:	learn: 18.0102396	total: 1.92s	remaining: 3.98s
65:	learn: 17.7782817	total: 1.94s	remaining: 3.94s
66:	learn: 17.6293839	total: 1.97s	remaining: 3.91s
67:	learn: 17.4950966	total: 2s	remaining: 3.88s
68:	learn: 17.3213878	total: 2.02s	remaining: 3.85s
69:	learn: 17.1833201	total: 2.05s	remaining: 3.81s
70:	learn: 17.0063684	total: 2.08s	remaining: 3.78s
71:	learn: 16.8322437	total: 2.1s	remaining: 3.74s
72:	learn: 16.7058593	total: 2.15s	remaining: 3.74s
73:	learn: 16.5781086	total: 2.18s	remaining: 3.71s
74:	learn: 16.4536927	total: 2.2s	remaining: 3.67s
75:	learn: 16.3555875	total: 2.23s	remaining: 3.64s
76:	learn: 16.2112488	total: 2.26s	remaining: 3.6s
77:	learn: 16.0933871	total: 2.28s	remaining: 3.57s
78:	learn: 15.9482175	total: 2.31s	remaining: 3.54s
79:	learn: 15.8457078	total: 2.35s	remaining: 3.52s
80:	learn: 15.7756914	total: 2.39s	remaining: 3.51s
81:	learn: 15.5938239	total: 2.42s	remaining: 3.48s
82:	learn: 15.4879475	total: 2.44s	remaining: 3.44s
83:	learn: 15.3387701	total: 2.47s	remaining: 3.41s
84:	learn: 15.2647310	total: 2.5s	remaining: 3.38s
85:	learn: 15.1407574	total: 2.53s	remaining: 3.35s
86:	learn: 15.0412643	total: 2.55s	remaining: 3.32s
87:	learn: 14.9524567	total: 2.58s	remaining: 3.29s
88:	learn: 14.8463137	total: 2.61s	remaining: 3.26s
89:	learn: 14.8165046	total: 2.65s	remaining: 3.24s
90:	learn: 14.7199993	total: 2.67s	remaining: 3.2s
91:	learn: 14.5961218	total: 2.7s	remaining: 3.17s
92:	learn: 14.5344312	total: 2.73s	remaining: 3.14s
93:	learn: 14.4678730	total: 2.75s	remaining: 3.1s
94:	learn: 14.3960901	total: 2.78s	remaining: 3.08s
95:	learn: 14.3119443	total: 2.83s	remaining: 3.06s
96:	learn: 14.2240868	total: 2.86s	remaining: 3.03s
97:	learn: 14.1399837	total: 2.89s	remaining: 3.01s
98:	learn: 14.0533759	total: 2.92s	remaining: 2.98s
99:	learn: 13.9950351	total: 2.95s	remaining: 2.95s
100:	learn: 13.9668089	total: 2.97s	remaining: 2.91s
101:	learn: 13.8990424	total: 3s	remaining: 2.88s
102:	learn: 13.8340683	total: 3.03s	remaining: 2.85s
103:	learn: 13.7327129	total: 3.06s	remaining: 2.83s
104:	learn: 13.6486423	total: 3.09s	remaining: 2.79s
105:	learn: 13.5711702	total: 3.12s	remaining: 2.76s
106:	learn: 13.4854890	total: 3.15s	remaining: 2.74s
107:	learn: 13.4388981	total: 3.17s	remaining: 2.71s
108:	learn: 13.3841681	total: 3.2s	remaining: 2.67s
109:	learn: 13.3413203	total: 3.23s	remaining: 2.64s
110:	learn: 13.2546145	total: 3.27s	remaining: 2.62s
111:	learn: 13.1224088	total: 3.29s	remaining: 2.59s
112:	learn: 13.0483840	total: 3.32s	remaining: 2.56s
113:	learn: 12.9420766	total: 3.35s	remaining: 2.53s
114:	learn: 12.8450150	total: 3.38s	remaining: 2.5s
115:	learn: 12.7888251	total: 3.41s	remaining: 2.47s
116:	learn: 12.6799890	total: 3.44s	remaining: 2.44s
117:	learn: 12.5945228	total: 3.47s	remaining: 2.41s
118:	learn: 12.5339805	total: 3.5s	remaining: 2.38s
119:	learn: 12.4793198	total: 3.53s	remaining: 2.35s
120:	learn: 12.3781390	total: 3.56s	remaining: 2.32s
121:	learn: 12.2893424	total: 3.58s	remaining: 2.29s
122:	learn: 12.2616723	total: 3.62s	remaining: 2.26s
123:	learn: 12.1746282	total: 3.64s	remaining: 2.23s
124:	learn: 12.1196215	total: 3.67s	remaining: 2.2s
125:	learn: 12.0370415	total: 3.7s	remaining: 2.17s
126:	learn: 11.9415303	total: 3.73s	remaining: 2.15s
127:	learn: 11.8996847	total: 3.76s	remaining: 2.12s
128:	learn: 11.8076357	total: 3.79s	remaining: 2.09s
129:	learn: 11.7251501	total: 3.82s	remaining: 2.06s
130:	learn: 11.5876348	total: 3.85s	remaining: 2.03s
131:	learn: 11.5558440	total: 3.88s	remaining: 2s
132:	learn: 11.5195517	total: 3.91s	remaining: 1.97s
133:	learn: 11.4063126	total: 3.94s	remaining: 1.94s
134:	learn: 11.3308352	total: 3.97s	remaining: 1.91s
135:	learn: 11.2558622	total: 4s	remaining: 1.88s
136:	learn: 11.1852237	total: 4.02s	remaining: 1.85s
137:	learn: 11.1192132	total: 4.05s	remaining: 1.82s
138:	learn: 11.0556272	total: 4.08s	remaining: 1.79s
139:	learn: 10.9786475	total: 4.11s	remaining: 1.76s
140:	learn: 10.8902191	total: 4.14s	remaining: 1.73s
141:	learn: 10.7700682	total: 4.18s	remaining: 1.71s
142:	learn: 10.7124196	total: 4.21s	remaining: 1.68s
143:	learn: 10.6306072	total: 4.23s	remaining: 1.65s
144:	learn: 10.5643229	total: 4.26s	remaining: 1.62s
145:	learn: 10.5265368	total: 4.29s	remaining: 1.59s
146:	learn: 10.4558055	total: 4.32s	remaining: 1.56s
147:	learn: 10.4039694	total: 4.35s	remaining: 1.53s
148:	learn: 10.3408237	total: 4.38s	remaining: 1.5s
149:	learn: 10.2627966	total: 4.41s	remaining: 1.47s
150:	learn: 10.2002141	total: 4.44s	remaining: 1.44s
151:	learn: 10.1626210	total: 4.46s	remaining: 1.41s
152:	learn: 10.0834794	total: 4.49s	remaining: 1.38s
153:	learn: 9.9995676	total: 4.52s	remaining: 1.35s
154:	learn: 9.9436133	total: 4.55s	remaining: 1.32s
155:	learn: 9.8673146	total: 4.57s	remaining: 1.29s
156:	learn: 9.8084429	total: 4.61s	remaining: 1.26s
157:	learn: 9.7721516	total: 4.65s	remaining: 1.24s
158:	learn: 9.7203234	total: 4.67s	remaining: 1.21s
159:	learn: 9.6884849	total: 4.7s	remaining: 1.18s
160:	learn: 9.6265782	total: 4.73s	remaining: 1.15s
161:	learn: 9.5698813	total: 4.75s	remaining: 1.11s
162:	learn: 9.5196743	total: 4.78s	remaining: 1.08s
163:	learn: 9.4594680	total: 4.81s	remaining: 1.05s
164:	learn: 9.3614639	total: 4.85s	remaining: 1.03s
165:	learn: 9.3347501	total: 4.88s	remaining: 999ms
166:	learn: 9.2855497	total: 4.9s	remaining: 969ms
167:	learn: 9.2245774	total: 4.93s	remaining: 939ms
168:	learn: 9.1420534	total: 4.96s	remaining: 909ms
169:	learn: 9.1004496	total: 4.98s	remaining: 880ms
170:	learn: 9.0266486	total: 5.01s	remaining: 850ms
171:	learn: 8.9919149	total: 5.04s	remaining: 820ms
172:	learn: 8.9495456	total: 5.08s	remaining: 794ms
173:	learn: 8.8972894	total: 5.11s	remaining: 764ms
174:	learn: 8.8040524	total: 5.14s	remaining: 734ms
175:	learn: 8.6901310	total: 5.17s	remaining: 705ms
176:	learn: 8.6469342	total: 5.19s	remaining: 675ms
177:	learn: 8.5999257	total: 5.22s	remaining: 645ms
178:	learn: 8.5454570	total: 5.25s	remaining: 615ms
179:	learn: 8.4374612	total: 5.27s	remaining: 586ms
180:	learn: 8.3873914	total: 5.31s	remaining: 557ms
181:	learn: 8.3287576	total: 5.34s	remaining: 528ms
182:	learn: 8.2760159	total: 5.37s	remaining: 499ms
183:	learn: 8.2249773	total: 5.4s	remaining: 469ms
184:	learn: 8.1848138	total: 5.42s	remaining: 440ms
185:	learn: 8.1305667	total: 5.45s	remaining: 410ms
186:	learn: 8.0871204	total: 5.48s	remaining: 381ms
187:	learn: 8.0585067	total: 5.5s	remaining: 351ms
188:	learn: 7.9992910	total: 5.54s	remaining: 323ms
189:	learn: 7.9679618	total: 5.58s	remaining: 294ms
190:	learn: 7.9334248	total: 5.61s	remaining: 264ms
191:	learn: 7.8768409	total: 5.63s	remaining: 235ms
192:	learn: 7.8241554	total: 5.66s	remaining: 205ms
193:	learn: 7.7761628	total: 5.69s	remaining: 176ms
194:	learn: 7.7243412	total: 5.72s	remaining: 147ms
195:	learn: 7.6744569	total: 5.75s	remaining: 117ms
196:	learn: 7.6122525	total: 5.78s	remaining: 88ms
197:	learn: 7.5666339	total: 5.82s	remaining: 58.8ms
198:	learn: 7.5357403	total: 5.84s	remaining: 29.4ms
199:	learn: 7.5042596	total: 5.87s	remaining: 0us
0:	learn: 46.6705057	total: 27.9ms	remaining: 5.56s
1:	learn: 45.6228942	total: 63.9ms	remaining: 6.33s
2:	learn: 44.6011857	total: 90.8ms	remaining: 5.96s
3:	learn: 43.4944730	total: 118ms	remaining: 5.79s
4:	learn: 42.7214061	total: 146ms	remaining: 5.68s
5:	learn: 41.8717386	total: 174ms	remaining: 5.61s
6:	learn: 41.0828465	total: 208ms	remaining: 5.73s
7:	learn: 40.3693162	total: 234ms	remaining: 5.62s
8:	learn: 39.5504439	total: 261ms	remaining: 5.55s
9:	learn: 38.8028188	total: 290ms	remaining: 5.52s
10:	learn: 37.8021607	total: 323ms	remaining: 5.54s
11:	learn: 37.0316047	total: 337ms	remaining: 5.28s
12:	learn: 36.4697449	total: 363ms	remaining: 5.23s
13:	learn: 35.7324928	total: 389ms	remaining: 5.17s
14:	learn: 35.0670311	total: 416ms	remaining: 5.13s
15:	learn: 34.5416158	total: 449ms	remaining: 5.16s
16:	learn: 33.8060657	total: 481ms	remaining: 5.17s
17:	learn: 33.2764048	total: 514ms	remaining: 5.2s
18:	learn: 32.7985056	total: 542ms	remaining: 5.16s
19:	learn: 32.2684820	total: 569ms	remaining: 5.12s
20:	learn: 31.7897893	total: 597ms	remaining: 5.09s
21:	learn: 31.3010339	total: 624ms	remaining: 5.05s
22:	learn: 30.8508227	total: 652ms	remaining: 5.01s
23:	learn: 30.3168654	total: 687ms	remaining: 5.04s
24:	learn: 29.8575867	total: 718ms	remaining: 5.03s
25:	learn: 29.3623615	total: 749ms	remaining: 5.01s
26:	learn: 28.9848451	total: 776ms	remaining: 4.97s
27:	learn: 28.6994426	total: 803ms	remaining: 4.93s
28:	learn: 28.2896051	total: 829ms	remaining: 4.89s
29:	learn: 27.8326651	total: 857ms	remaining: 4.86s
30:	learn: 27.3512730	total: 883ms	remaining: 4.81s
31:	learn: 27.0818307	total: 921ms	remaining: 4.84s
32:	learn: 26.6738197	total: 953ms	remaining: 4.82s
33:	learn: 26.3390302	total: 981ms	remaining: 4.79s
34:	learn: 25.9635842	total: 1.01s	remaining: 4.75s
35:	learn: 25.6937525	total: 1.04s	remaining: 4.72s
36:	learn: 25.3141815	total: 1.06s	remaining: 4.69s
37:	learn: 25.0097733	total: 1.09s	remaining: 4.66s
38:	learn: 24.7491704	total: 1.12s	remaining: 4.63s
39:	learn: 24.3823525	total: 1.15s	remaining: 4.62s
40:	learn: 24.3094117	total: 1.16s	remaining: 4.49s
41:	learn: 23.9596755	total: 1.19s	remaining: 4.48s
42:	learn: 23.6550442	total: 1.22s	remaining: 4.45s
43:	learn: 23.4055797	total: 1.24s	remaining: 4.41s
44:	learn: 23.2484825	total: 1.27s	remaining: 4.38s
45:	learn: 22.9509665	total: 1.3s	remaining: 4.34s
46:	learn: 22.7288116	total: 1.32s	remaining: 4.31s
47:	learn: 22.4239204	total: 1.36s	remaining: 4.31s
48:	learn: 22.2223864	total: 1.39s	remaining: 4.29s
49:	learn: 21.9306439	total: 1.43s	remaining: 4.28s
50:	learn: 21.7134680	total: 1.45s	remaining: 4.24s
51:	learn: 21.6063065	total: 1.48s	remaining: 4.21s
52:	learn: 21.2300249	total: 1.51s	remaining: 4.18s
53:	learn: 20.9961502	total: 1.53s	remaining: 4.15s
54:	learn: 20.7428171	total: 1.56s	remaining: 4.12s
55:	learn: 20.5043370	total: 1.59s	remaining: 4.1s
56:	learn: 20.3343057	total: 1.62s	remaining: 4.07s
57:	learn: 20.1503869	total: 1.65s	remaining: 4.04s
58:	learn: 19.9571627	total: 1.68s	remaining: 4.02s
59:	learn: 19.7166454	total: 1.71s	remaining: 3.99s
60:	learn: 19.5460796	total: 1.74s	remaining: 3.96s
61:	learn: 19.3319423	total: 1.77s	remaining: 3.94s
62:	learn: 19.1518266	total: 1.8s	remaining: 3.91s
63:	learn: 18.9801712	total: 1.83s	remaining: 3.88s
64:	learn: 18.8325481	total: 1.86s	remaining: 3.86s
65:	learn: 18.6545881	total: 1.88s	remaining: 3.82s
66:	learn: 18.4172473	total: 1.92s	remaining: 3.81s
67:	learn: 18.2145056	total: 1.94s	remaining: 3.77s
68:	learn: 18.0294470	total: 1.97s	remaining: 3.74s
69:	learn: 17.8764636	total: 2s	remaining: 3.72s
70:	learn: 17.7552517	total: 2.03s	remaining: 3.69s
71:	learn: 17.6134211	total: 2.06s	remaining: 3.66s
72:	learn: 17.4607644	total: 2.09s	remaining: 3.63s
73:	learn: 17.3425090	total: 2.11s	remaining: 3.6s
74:	learn: 17.2255418	total: 2.15s	remaining: 3.58s
75:	learn: 17.0908608	total: 2.17s	remaining: 3.55s
76:	learn: 16.9227981	total: 2.2s	remaining: 3.52s
77:	learn: 16.8243171	total: 2.24s	remaining: 3.5s
78:	learn: 16.7020719	total: 2.27s	remaining: 3.47s
79:	learn: 16.5231147	total: 2.29s	remaining: 3.44s
80:	learn: 16.3550704	total: 2.32s	remaining: 3.41s
81:	learn: 16.2531768	total: 2.35s	remaining: 3.38s
82:	learn: 16.1529156	total: 2.38s	remaining: 3.35s
83:	learn: 15.9391779	total: 2.41s	remaining: 3.33s
84:	learn: 15.8578694	total: 2.44s	remaining: 3.31s
85:	learn: 15.7783743	total: 2.47s	remaining: 3.28s
86:	learn: 15.6452604	total: 2.5s	remaining: 3.25s
87:	learn: 15.5300223	total: 2.53s	remaining: 3.22s
88:	learn: 15.4195831	total: 2.55s	remaining: 3.18s
89:	learn: 15.3071897	total: 2.58s	remaining: 3.15s
90:	learn: 15.1446058	total: 2.6s	remaining: 3.12s
91:	learn: 15.0547501	total: 2.64s	remaining: 3.1s
92:	learn: 14.9463447	total: 2.67s	remaining: 3.07s
93:	learn: 14.8747810	total: 2.71s	remaining: 3.05s
94:	learn: 14.7579258	total: 2.73s	remaining: 3.02s
95:	learn: 14.5927582	total: 2.76s	remaining: 2.99s
96:	learn: 14.4834761	total: 2.79s	remaining: 2.96s
97:	learn: 14.3683779	total: 2.82s	remaining: 2.93s
98:	learn: 14.2648032	total: 2.85s	remaining: 2.9s
99:	learn: 14.1339217	total: 2.88s	remaining: 2.88s
100:	learn: 14.0310235	total: 2.91s	remaining: 2.85s
101:	learn: 13.9879404	total: 2.94s	remaining: 2.83s
102:	learn: 13.9040350	total: 2.97s	remaining: 2.8s
103:	learn: 13.7925222	total: 3s	remaining: 2.77s
104:	learn: 13.6858242	total: 3.02s	remaining: 2.74s
105:	learn: 13.6086485	total: 3.05s	remaining: 2.71s
106:	learn: 13.4889682	total: 3.08s	remaining: 2.67s
107:	learn: 13.4306844	total: 3.1s	remaining: 2.64s
108:	learn: 13.3494423	total: 3.14s	remaining: 2.62s
109:	learn: 13.2980456	total: 3.17s	remaining: 2.6s
110:	learn: 13.2178503	total: 3.2s	remaining: 2.57s
111:	learn: 13.1206341	total: 3.23s	remaining: 2.54s
112:	learn: 13.0342536	total: 3.26s	remaining: 2.51s
113:	learn: 12.9673581	total: 3.29s	remaining: 2.48s
114:	learn: 12.9135734	total: 3.31s	remaining: 2.45s
115:	learn: 12.8196081	total: 3.34s	remaining: 2.42s
116:	learn: 12.7423806	total: 3.38s	remaining: 2.4s
117:	learn: 12.6465809	total: 3.41s	remaining: 2.37s
118:	learn: 12.5409295	total: 3.44s	remaining: 2.34s
119:	learn: 12.4767279	total: 3.46s	remaining: 2.31s
120:	learn: 12.3985254	total: 3.49s	remaining: 2.28s
121:	learn: 12.3212540	total: 3.52s	remaining: 2.25s
122:	learn: 12.2156139	total: 3.54s	remaining: 2.22s
123:	learn: 12.1479467	total: 3.57s	remaining: 2.19s
124:	learn: 12.0688168	total: 3.61s	remaining: 2.16s
125:	learn: 11.9864853	total: 3.64s	remaining: 2.14s
126:	learn: 11.8820716	total: 3.67s	remaining: 2.11s
127:	learn: 11.8059716	total: 3.7s	remaining: 2.08s
128:	learn: 11.7348830	total: 3.73s	remaining: 2.05s
129:	learn: 11.6193507	total: 3.75s	remaining: 2.02s
130:	learn: 11.5318657	total: 3.78s	remaining: 1.99s
131:	learn: 11.4432593	total: 3.81s	remaining: 1.96s
132:	learn: 11.3634921	total: 3.85s	remaining: 1.94s
133:	learn: 11.2572496	total: 3.88s	remaining: 1.91s
134:	learn: 11.1739063	total: 3.91s	remaining: 1.88s
135:	learn: 11.0896076	total: 3.94s	remaining: 1.85s
136:	learn: 10.9977136	total: 3.96s	remaining: 1.82s
137:	learn: 10.9178772	total: 3.99s	remaining: 1.79s
138:	learn: 10.8341868	total: 4.02s	remaining: 1.76s
139:	learn: 10.7709446	total: 4.06s	remaining: 1.74s
140:	learn: 10.7143619	total: 4.08s	remaining: 1.71s
141:	learn: 10.6467044	total: 4.12s	remaining: 1.68s
142:	learn: 10.5672440	total: 4.15s	remaining: 1.65s
143:	learn: 10.5263954	total: 4.17s	remaining: 1.62s
144:	learn: 10.4421936	total: 4.2s	remaining: 1.59s
145:	learn: 10.3788524	total: 4.23s	remaining: 1.56s
146:	learn: 10.3330662	total: 4.26s	remaining: 1.54s
147:	learn: 10.2703985	total: 4.29s	remaining: 1.51s
148:	learn: 10.2306029	total: 4.31s	remaining: 1.48s
149:	learn: 10.1640453	total: 4.34s	remaining: 1.45s
150:	learn: 10.1074372	total: 4.37s	remaining: 1.42s
151:	learn: 10.0083802	total: 4.4s	remaining: 1.39s
152:	learn: 9.9286493	total: 4.43s	remaining: 1.36s
153:	learn: 9.8439094	total: 4.47s	remaining: 1.33s
154:	learn: 9.7935130	total: 4.5s	remaining: 1.3s
155:	learn: 9.7063100	total: 4.52s	remaining: 1.27s
156:	learn: 9.6212511	total: 4.55s	remaining: 1.25s
157:	learn: 9.5539536	total: 4.58s	remaining: 1.22s
158:	learn: 9.5111986	total: 4.61s	remaining: 1.19s
159:	learn: 9.4514714	total: 4.64s	remaining: 1.16s
160:	learn: 9.3984668	total: 4.67s	remaining: 1.13s
161:	learn: 9.3014614	total: 4.7s	remaining: 1.1s
162:	learn: 9.2612077	total: 4.73s	remaining: 1.07s
163:	learn: 9.1913405	total: 4.75s	remaining: 1.04s
164:	learn: 9.0985411	total: 4.78s	remaining: 1.01s
165:	learn: 8.9848588	total: 4.81s	remaining: 985ms
166:	learn: 8.9405060	total: 4.84s	remaining: 957ms
167:	learn: 8.8613581	total: 4.87s	remaining: 928ms
168:	learn: 8.8162054	total: 4.91s	remaining: 901ms
169:	learn: 8.7045984	total: 4.94s	remaining: 872ms
170:	learn: 8.6428434	total: 4.97s	remaining: 842ms
171:	learn: 8.5947772	total: 5s	remaining: 813ms
172:	learn: 8.5378565	total: 5.02s	remaining: 784ms
173:	learn: 8.4802817	total: 5.05s	remaining: 754ms
174:	learn: 8.4303521	total: 5.08s	remaining: 725ms
175:	learn: 8.3791829	total: 5.11s	remaining: 697ms
176:	learn: 8.3284224	total: 5.14s	remaining: 668ms
177:	learn: 8.2772660	total: 5.17s	remaining: 639ms
178:	learn: 8.2166103	total: 5.2s	remaining: 610ms
179:	learn: 8.1793476	total: 5.22s	remaining: 581ms
180:	learn: 8.1310868	total: 5.25s	remaining: 551ms
181:	learn: 8.0778463	total: 5.28s	remaining: 522ms
182:	learn: 7.9947801	total: 5.3s	remaining: 493ms
183:	learn: 7.9560354	total: 5.34s	remaining: 464ms
184:	learn: 7.9272267	total: 5.38s	remaining: 436ms
185:	learn: 7.8835530	total: 5.4s	remaining: 407ms
186:	learn: 7.8117290	total: 5.43s	remaining: 378ms
187:	learn: 7.7803523	total: 5.46s	remaining: 348ms
188:	learn: 7.7232848	total: 5.49s	remaining: 319ms
189:	learn: 7.6676567	total: 5.51s	remaining: 290ms
190:	learn: 7.6309823	total: 5.54s	remaining: 261ms
191:	learn: 7.5951129	total: 5.58s	remaining: 233ms
192:	learn: 7.5293860	total: 5.61s	remaining: 203ms
193:	learn: 7.4823609	total: 5.63s	remaining: 174ms
194:	learn: 7.4313754	total: 5.66s	remaining: 145ms
195:	learn: 7.3714501	total: 5.69s	remaining: 116ms
196:	learn: 7.3219917	total: 5.71s	remaining: 87ms
197:	learn: 7.2822511	total: 5.74s	remaining: 58ms
198:	learn: 7.2376111	total: 5.77s	remaining: 29ms
199:	learn: 7.2259164	total: 5.81s	remaining: 0us
0:	learn: 27.5585353	total: 4.83ms	remaining: 478ms
1:	learn: 27.1656995	total: 8.94ms	remaining: 438ms
2:	learn: 26.8590175	total: 13.3ms	remaining: 431ms
3:	learn: 26.5818406	total: 17.3ms	remaining: 414ms
4:	learn: 26.1148663	total: 21.7ms	remaining: 413ms
5:	learn: 25.7690484	total: 26.2ms	remaining: 410ms
6:	learn: 25.3489206	total: 30.8ms	remaining: 409ms
7:	learn: 24.9542406	total: 36.2ms	remaining: 417ms
8:	learn: 24.6777517	total: 40.8ms	remaining: 413ms
9:	learn: 24.3242344	total: 45.5ms	remaining: 410ms
10:	learn: 24.0383073	total: 50.5ms	remaining: 409ms
11:	learn: 23.7383420	total: 55.4ms	remaining: 406ms
12:	learn: 23.3461670	total: 59.9ms	remaining: 401ms
13:	learn: 23.0928636	total: 64.7ms	remaining: 398ms
14:	learn: 22.8770414	total: 69.5ms	remaining: 394ms
15:	learn: 22.6323214	total: 74ms	remaining: 389ms
16:	learn: 22.3597072	total: 78.8ms	remaining: 385ms
17:	learn: 22.1079813	total: 86.3ms	remaining: 393ms
18:	learn: 21.8421199	total: 93.8ms	remaining: 400ms
19:	learn: 21.6576508	total: 101ms	remaining: 404ms
20:	learn: 21.4301268	total: 107ms	remaining: 403ms
21:	learn: 21.2287388	total: 113ms	remaining: 400ms
22:	learn: 21.0553872	total: 118ms	remaining: 394ms
23:	learn: 20.8977091	total: 122ms	remaining: 385ms
24:	learn: 20.6619051	total: 126ms	remaining: 378ms
25:	learn: 20.5040955	total: 130ms	remaining: 371ms
26:	learn: 20.3181195	total: 135ms	remaining: 364ms
27:	learn: 20.0869436	total: 139ms	remaining: 357ms
28:	learn: 19.9375985	total: 143ms	remaining: 351ms
29:	learn: 19.8247516	total: 148ms	remaining: 345ms
30:	learn: 19.6261697	total: 152ms	remaining: 338ms
31:	learn: 19.4547236	total: 156ms	remaining: 332ms
32:	learn: 19.3157092	total: 160ms	remaining: 325ms
33:	learn: 19.1561419	total: 165ms	remaining: 320ms
34:	learn: 19.0453620	total: 169ms	remaining: 314ms
35:	learn: 18.8738574	total: 174ms	remaining: 309ms
36:	learn: 18.7072907	total: 177ms	remaining: 302ms
37:	learn: 18.5877943	total: 182ms	remaining: 296ms
38:	learn: 18.4436380	total: 186ms	remaining: 290ms
39:	learn: 18.3463356	total: 190ms	remaining: 285ms
40:	learn: 18.2008059	total: 194ms	remaining: 280ms
41:	learn: 18.0582079	total: 199ms	remaining: 274ms
42:	learn: 17.8891982	total: 203ms	remaining: 269ms
43:	learn: 17.7332246	total: 207ms	remaining: 264ms
44:	learn: 17.6206421	total: 212ms	remaining: 259ms
45:	learn: 17.4982800	total: 216ms	remaining: 254ms
46:	learn: 17.3970150	total: 220ms	remaining: 248ms
47:	learn: 17.3058203	total: 225ms	remaining: 244ms
48:	learn: 17.1789256	total: 229ms	remaining: 239ms
49:	learn: 17.0916229	total: 233ms	remaining: 233ms
50:	learn: 16.9859820	total: 238ms	remaining: 229ms
51:	learn: 16.8995582	total: 242ms	remaining: 224ms
52:	learn: 16.8137014	total: 246ms	remaining: 218ms
53:	learn: 16.7021451	total: 251ms	remaining: 214ms
54:	learn: 16.5895582	total: 256ms	remaining: 209ms
55:	learn: 16.5015639	total: 263ms	remaining: 206ms
56:	learn: 16.4356637	total: 269ms	remaining: 203ms
57:	learn: 16.3514525	total: 276ms	remaining: 200ms
58:	learn: 16.2401369	total: 282ms	remaining: 196ms
59:	learn: 16.1293223	total: 287ms	remaining: 192ms
60:	learn: 16.0271167	total: 295ms	remaining: 188ms
61:	learn: 15.9126257	total: 300ms	remaining: 184ms
62:	learn: 15.8391096	total: 306ms	remaining: 179ms
63:	learn: 15.7441773	total: 311ms	remaining: 175ms
64:	learn: 15.6885195	total: 316ms	remaining: 170ms
65:	learn: 15.6052039	total: 321ms	remaining: 165ms
66:	learn: 15.5074202	total: 326ms	remaining: 161ms
67:	learn: 15.4054338	total: 332ms	remaining: 156ms
68:	learn: 15.2885714	total: 337ms	remaining: 152ms
69:	learn: 15.2157472	total: 343ms	remaining: 147ms
70:	learn: 15.1031554	total: 348ms	remaining: 142ms
71:	learn: 15.0237470	total: 353ms	remaining: 137ms
72:	learn: 14.9756825	total: 358ms	remaining: 133ms
73:	learn: 14.8840596	total: 364ms	remaining: 128ms
74:	learn: 14.8077061	total: 369ms	remaining: 123ms
75:	learn: 14.7444437	total: 374ms	remaining: 118ms
76:	learn: 14.6751720	total: 380ms	remaining: 113ms
77:	learn: 14.5830333	total: 385ms	remaining: 109ms
78:	learn: 14.5241206	total: 390ms	remaining: 104ms
79:	learn: 14.4892731	total: 394ms	remaining: 98.4ms
80:	learn: 14.4256605	total: 398ms	remaining: 93.4ms
81:	learn: 14.3666860	total: 402ms	remaining: 88.3ms
82:	learn: 14.2938372	total: 406ms	remaining: 83.2ms
83:	learn: 14.2161532	total: 410ms	remaining: 78.2ms
84:	learn: 14.1582910	total: 415ms	remaining: 73.2ms
85:	learn: 14.1029153	total: 419ms	remaining: 68.2ms
86:	learn: 14.0475835	total: 424ms	remaining: 63.3ms
87:	learn: 13.9892661	total: 428ms	remaining: 58.4ms
88:	learn: 13.9481628	total: 432ms	remaining: 53.4ms
89:	learn: 13.8483991	total: 436ms	remaining: 48.5ms
90:	learn: 13.7775614	total: 441ms	remaining: 43.6ms
91:	learn: 13.7304585	total: 445ms	remaining: 38.7ms
92:	learn: 13.6783381	total: 450ms	remaining: 33.9ms
93:	learn: 13.6356964	total: 454ms	remaining: 29ms
94:	learn: 13.5924371	total: 459ms	remaining: 24.1ms
95:	learn: 13.5400746	total: 463ms	remaining: 19.3ms
96:	learn: 13.4897333	total: 468ms	remaining: 14.5ms
97:	learn: 13.4470321	total: 473ms	remaining: 9.64ms
98:	learn: 13.3856082	total: 477ms	remaining: 4.82ms
99:	learn: 13.3082371	total: 481ms	remaining: 0us
0:	learn: 43.0395283	total: 5.2ms	remaining: 515ms
1:	learn: 42.1130223	total: 9.65ms	remaining: 473ms
2:	learn: 41.1753409	total: 14.2ms	remaining: 459ms
3:	learn: 40.3637444	total: 18.8ms	remaining: 451ms
4:	learn: 39.6508088	total: 23.6ms	remaining: 448ms
5:	learn: 38.7217934	total: 28.3ms	remaining: 443ms
6:	learn: 37.8538055	total: 32.8ms	remaining: 435ms
7:	learn: 36.9793574	total: 37.6ms	remaining: 432ms
8:	learn: 36.3076984	total: 42.3ms	remaining: 428ms
9:	learn: 35.6673160	total: 47ms	remaining: 423ms
10:	learn: 34.8889800	total: 51.9ms	remaining: 420ms
11:	learn: 34.1675517	total: 56.7ms	remaining: 416ms
12:	learn: 33.6779564	total: 61.7ms	remaining: 413ms
13:	learn: 33.0710039	total: 66.3ms	remaining: 407ms
14:	learn: 32.4966674	total: 70.4ms	remaining: 399ms
15:	learn: 31.9492856	total: 75.4ms	remaining: 396ms
16:	learn: 31.5108129	total: 79.7ms	remaining: 389ms
17:	learn: 30.9804023	total: 84.7ms	remaining: 386ms
18:	learn: 30.4169089	total: 89.2ms	remaining: 380ms
19:	learn: 29.8930375	total: 93.7ms	remaining: 375ms
20:	learn: 29.3974421	total: 98.1ms	remaining: 369ms
21:	learn: 28.8792307	total: 102ms	remaining: 363ms
22:	learn: 28.3894474	total: 107ms	remaining: 359ms
23:	learn: 27.9921276	total: 112ms	remaining: 354ms
24:	learn: 27.6158887	total: 116ms	remaining: 349ms
25:	learn: 27.2866950	total: 121ms	remaining: 344ms
26:	learn: 26.8770708	total: 126ms	remaining: 341ms
27:	learn: 26.6233005	total: 131ms	remaining: 336ms
28:	learn: 26.2921934	total: 136ms	remaining: 332ms
29:	learn: 25.9156920	total: 141ms	remaining: 329ms
30:	learn: 25.5311106	total: 143ms	remaining: 319ms
31:	learn: 25.2178997	total: 148ms	remaining: 314ms
32:	learn: 24.8572196	total: 153ms	remaining: 311ms
33:	learn: 24.5849710	total: 161ms	remaining: 313ms
34:	learn: 24.2209190	total: 169ms	remaining: 313ms
35:	learn: 23.8708250	total: 178ms	remaining: 316ms
36:	learn: 23.5325279	total: 186ms	remaining: 316ms
37:	learn: 23.2116148	total: 191ms	remaining: 311ms
38:	learn: 22.9696787	total: 196ms	remaining: 307ms
39:	learn: 22.7936783	total: 202ms	remaining: 303ms
40:	learn: 22.6228847	total: 208ms	remaining: 299ms
41:	learn: 22.3691527	total: 214ms	remaining: 296ms
42:	learn: 22.1002173	total: 220ms	remaining: 291ms
43:	learn: 21.9157268	total: 225ms	remaining: 287ms
44:	learn: 21.7229102	total: 231ms	remaining: 282ms
45:	learn: 21.4642005	total: 236ms	remaining: 277ms
46:	learn: 21.3029442	total: 241ms	remaining: 272ms
47:	learn: 21.1469792	total: 246ms	remaining: 267ms
48:	learn: 20.9458235	total: 251ms	remaining: 261ms
49:	learn: 20.7335242	total: 256ms	remaining: 256ms
50:	learn: 20.5440269	total: 260ms	remaining: 250ms
51:	learn: 20.3661449	total: 264ms	remaining: 244ms
52:	learn: 20.2158134	total: 269ms	remaining: 239ms
53:	learn: 19.9934873	total: 273ms	remaining: 233ms
54:	learn: 19.7879739	total: 278ms	remaining: 227ms
55:	learn: 19.6630460	total: 283ms	remaining: 222ms
56:	learn: 19.5152729	total: 288ms	remaining: 217ms
57:	learn: 19.3581128	total: 293ms	remaining: 212ms
58:	learn: 19.2209303	total: 299ms	remaining: 208ms
59:	learn: 19.0965248	total: 304ms	remaining: 203ms
60:	learn: 19.0035954	total: 310ms	remaining: 198ms
61:	learn: 18.8554149	total: 316ms	remaining: 194ms
62:	learn: 18.7095427	total: 321ms	remaining: 189ms
63:	learn: 18.5751494	total: 327ms	remaining: 184ms
64:	learn: 18.4678251	total: 333ms	remaining: 179ms
65:	learn: 18.3500325	total: 344ms	remaining: 177ms
66:	learn: 18.2088983	total: 352ms	remaining: 174ms
67:	learn: 18.0737705	total: 359ms	remaining: 169ms
68:	learn: 17.9325058	total: 366ms	remaining: 164ms
69:	learn: 17.8003911	total: 372ms	remaining: 160ms
70:	learn: 17.7385366	total: 378ms	remaining: 154ms
71:	learn: 17.6106998	total: 383ms	remaining: 149ms
72:	learn: 17.4816270	total: 388ms	remaining: 144ms
73:	learn: 17.4025554	total: 393ms	remaining: 138ms
74:	learn: 17.2902108	total: 398ms	remaining: 133ms
75:	learn: 17.2158048	total: 402ms	remaining: 127ms
76:	learn: 17.1261053	total: 407ms	remaining: 121ms
77:	learn: 17.0308917	total: 410ms	remaining: 116ms
78:	learn: 16.9546705	total: 414ms	remaining: 110ms
79:	learn: 16.8319165	total: 419ms	remaining: 105ms
80:	learn: 16.7687017	total: 424ms	remaining: 99.5ms
81:	learn: 16.6972326	total: 429ms	remaining: 94.1ms
82:	learn: 16.6124580	total: 433ms	remaining: 88.7ms
83:	learn: 16.4999052	total: 438ms	remaining: 83.4ms
84:	learn: 16.4302484	total: 443ms	remaining: 78.1ms
85:	learn: 16.3201363	total: 447ms	remaining: 72.8ms
86:	learn: 16.2534314	total: 452ms	remaining: 67.5ms
87:	learn: 16.1720485	total: 457ms	remaining: 62.3ms
88:	learn: 16.0625751	total: 461ms	remaining: 57ms
89:	learn: 15.9135088	total: 466ms	remaining: 51.8ms
90:	learn: 15.8658863	total: 470ms	remaining: 46.5ms
91:	learn: 15.8066805	total: 475ms	remaining: 41.3ms
92:	learn: 15.7412103	total: 481ms	remaining: 36.2ms
93:	learn: 15.6542776	total: 486ms	remaining: 31ms
94:	learn: 15.5760334	total: 491ms	remaining: 25.8ms
95:	learn: 15.5434131	total: 496ms	remaining: 20.7ms
96:	learn: 15.4709561	total: 501ms	remaining: 15.5ms
97:	learn: 15.4449618	total: 506ms	remaining: 10.3ms
98:	learn: 15.3752761	total: 511ms	remaining: 5.16ms
99:	learn: 15.3106595	total: 516ms	remaining: 0us
0:	learn: 46.7142257	total: 5.53ms	remaining: 547ms
1:	learn: 45.7634153	total: 10.7ms	remaining: 522ms
2:	learn: 45.0054253	total: 16ms	remaining: 518ms
3:	learn: 44.2120432	total: 21.2ms	remaining: 508ms
4:	learn: 43.3960472	total: 26.4ms	remaining: 501ms
5:	learn: 42.8588120	total: 31.8ms	remaining: 498ms
6:	learn: 41.9533701	total: 37.5ms	remaining: 498ms
7:	learn: 41.2745030	total: 43.4ms	remaining: 499ms
8:	learn: 40.6797495	total: 48.8ms	remaining: 493ms
9:	learn: 39.9899571	total: 53.9ms	remaining: 485ms
10:	learn: 39.4682100	total: 58.8ms	remaining: 476ms
11:	learn: 39.0305595	total: 64ms	remaining: 469ms
12:	learn: 38.4200417	total: 69.5ms	remaining: 465ms
13:	learn: 37.8425194	total: 74ms	remaining: 454ms
14:	learn: 37.4203127	total: 78.5ms	remaining: 445ms
15:	learn: 36.9917688	total: 83ms	remaining: 436ms
16:	learn: 36.5544138	total: 87.9ms	remaining: 429ms
17:	learn: 36.0727019	total: 92.3ms	remaining: 420ms
18:	learn: 35.4835715	total: 96.8ms	remaining: 413ms
19:	learn: 34.9865654	total: 101ms	remaining: 406ms
20:	learn: 34.6063373	total: 105ms	remaining: 396ms
21:	learn: 34.0997289	total: 110ms	remaining: 389ms
22:	learn: 33.7313171	total: 114ms	remaining: 383ms
23:	learn: 33.3582000	total: 118ms	remaining: 375ms
24:	learn: 32.9432456	total: 123ms	remaining: 369ms
25:	learn: 32.5220888	total: 127ms	remaining: 362ms
26:	learn: 32.2172292	total: 132ms	remaining: 357ms
27:	learn: 31.8972904	total: 137ms	remaining: 352ms
28:	learn: 31.6405350	total: 142ms	remaining: 348ms
29:	learn: 31.4167702	total: 146ms	remaining: 342ms
30:	learn: 30.8541961	total: 148ms	remaining: 330ms
31:	learn: 30.5572111	total: 153ms	remaining: 325ms
32:	learn: 30.1700399	total: 158ms	remaining: 320ms
33:	learn: 29.8537271	total: 163ms	remaining: 316ms
34:	learn: 29.6192540	total: 173ms	remaining: 321ms
35:	learn: 29.3276362	total: 181ms	remaining: 322ms
36:	learn: 28.9985179	total: 188ms	remaining: 320ms
37:	learn: 28.7046880	total: 192ms	remaining: 314ms
38:	learn: 28.4412677	total: 198ms	remaining: 310ms
39:	learn: 28.1277292	total: 202ms	remaining: 304ms
40:	learn: 27.9000750	total: 207ms	remaining: 298ms
41:	learn: 27.5433162	total: 212ms	remaining: 293ms
42:	learn: 27.2493285	total: 217ms	remaining: 288ms
43:	learn: 26.9576632	total: 219ms	remaining: 278ms
44:	learn: 26.6177110	total: 223ms	remaining: 272ms
45:	learn: 26.2812456	total: 227ms	remaining: 267ms
46:	learn: 26.0803859	total: 231ms	remaining: 261ms
47:	learn: 25.9543581	total: 236ms	remaining: 255ms
48:	learn: 25.7951582	total: 240ms	remaining: 250ms
49:	learn: 25.6548184	total: 245ms	remaining: 245ms
50:	learn: 25.4010843	total: 250ms	remaining: 240ms
51:	learn: 24.9773937	total: 254ms	remaining: 235ms
52:	learn: 24.8026156	total: 259ms	remaining: 230ms
53:	learn: 24.5568053	total: 264ms	remaining: 225ms
54:	learn: 24.2281839	total: 268ms	remaining: 219ms
55:	learn: 23.9202795	total: 273ms	remaining: 214ms
56:	learn: 23.7625591	total: 277ms	remaining: 209ms
57:	learn: 23.5429721	total: 281ms	remaining: 204ms
58:	learn: 23.3175893	total: 285ms	remaining: 198ms
59:	learn: 23.2035130	total: 289ms	remaining: 193ms
60:	learn: 23.0232450	total: 294ms	remaining: 188ms
61:	learn: 22.8384958	total: 299ms	remaining: 183ms
62:	learn: 22.6499902	total: 303ms	remaining: 178ms
63:	learn: 22.4577426	total: 308ms	remaining: 173ms
64:	learn: 22.3333158	total: 313ms	remaining: 168ms
65:	learn: 22.2064131	total: 317ms	remaining: 164ms
66:	learn: 22.1434971	total: 322ms	remaining: 158ms
67:	learn: 21.9596519	total: 326ms	remaining: 153ms
68:	learn: 21.8475576	total: 331ms	remaining: 149ms
69:	learn: 21.6954745	total: 335ms	remaining: 144ms
70:	learn: 21.5635976	total: 340ms	remaining: 139ms
71:	learn: 21.4588506	total: 345ms	remaining: 134ms
72:	learn: 21.3527268	total: 349ms	remaining: 129ms
73:	learn: 21.2661288	total: 354ms	remaining: 125ms
74:	learn: 21.1817333	total: 359ms	remaining: 120ms
75:	learn: 21.0527553	total: 366ms	remaining: 115ms
76:	learn: 20.9229021	total: 373ms	remaining: 111ms
77:	learn: 20.7563946	total: 383ms	remaining: 108ms
78:	learn: 20.6569831	total: 388ms	remaining: 103ms
79:	learn: 20.4982663	total: 396ms	remaining: 98.9ms
80:	learn: 20.3185460	total: 401ms	remaining: 94ms
81:	learn: 20.2096241	total: 406ms	remaining: 89.1ms
82:	learn: 20.1274891	total: 411ms	remaining: 84.1ms
83:	learn: 20.0740139	total: 416ms	remaining: 79.2ms
84:	learn: 19.9630699	total: 421ms	remaining: 74.3ms
85:	learn: 19.8753899	total: 427ms	remaining: 69.4ms
86:	learn: 19.6563612	total: 432ms	remaining: 64.5ms
87:	learn: 19.4680232	total: 437ms	remaining: 59.6ms
88:	learn: 19.3503431	total: 452ms	remaining: 55.9ms
89:	learn: 19.2221379	total: 458ms	remaining: 50.9ms
90:	learn: 19.0732542	total: 462ms	remaining: 45.7ms
91:	learn: 18.9825190	total: 466ms	remaining: 40.5ms
92:	learn: 18.8839009	total: 470ms	remaining: 35.4ms
93:	learn: 18.8012219	total: 474ms	remaining: 30.3ms
94:	learn: 18.7172713	total: 479ms	remaining: 25.2ms
95:	learn: 18.6201170	total: 483ms	remaining: 20.1ms
96:	learn: 18.5318611	total: 487ms	remaining: 15.1ms
97:	learn: 18.3833356	total: 491ms	remaining: 10ms
98:	learn: 18.3289700	total: 495ms	remaining: 5ms
99:	learn: 18.2227333	total: 500ms	remaining: 0us
0:	learn: 46.3764524	total: 4.62ms	remaining: 458ms
1:	learn: 45.5561269	total: 8.9ms	remaining: 436ms
2:	learn: 44.8811245	total: 13.7ms	remaining: 443ms
3:	learn: 44.0788617	total: 22.3ms	remaining: 535ms
4:	learn: 43.3619790	total: 29.6ms	remaining: 563ms
5:	learn: 42.6912112	total: 35.9ms	remaining: 563ms
6:	learn: 42.2292118	total: 40.5ms	remaining: 538ms
7:	learn: 41.7725191	total: 46.2ms	remaining: 531ms
8:	learn: 41.1676614	total: 50.3ms	remaining: 509ms
9:	learn: 40.5771076	total: 54.1ms	remaining: 487ms
10:	learn: 39.8343757	total: 58ms	remaining: 470ms
11:	learn: 39.3761142	total: 61.9ms	remaining: 454ms
12:	learn: 38.5254692	total: 66.1ms	remaining: 442ms
13:	learn: 37.9629555	total: 70.2ms	remaining: 431ms
14:	learn: 37.4418438	total: 73.9ms	remaining: 419ms
15:	learn: 37.0507283	total: 78.3ms	remaining: 411ms
16:	learn: 36.6264217	total: 82.7ms	remaining: 404ms
17:	learn: 36.1114940	total: 87.2ms	remaining: 397ms
18:	learn: 35.7193862	total: 91.5ms	remaining: 390ms
19:	learn: 35.3301177	total: 96.1ms	remaining: 384ms
20:	learn: 35.0598280	total: 101ms	remaining: 380ms
21:	learn: 34.5469736	total: 105ms	remaining: 373ms
22:	learn: 34.2064215	total: 109ms	remaining: 366ms
23:	learn: 33.7280710	total: 113ms	remaining: 358ms
24:	learn: 33.3282940	total: 117ms	remaining: 351ms
25:	learn: 32.8478961	total: 121ms	remaining: 345ms
26:	learn: 32.5722164	total: 125ms	remaining: 339ms
27:	learn: 32.2457019	total: 129ms	remaining: 333ms
28:	learn: 31.9230495	total: 134ms	remaining: 327ms
29:	learn: 31.4311611	total: 138ms	remaining: 321ms
30:	learn: 30.9179052	total: 142ms	remaining: 316ms
31:	learn: 30.6201141	total: 146ms	remaining: 310ms
32:	learn: 30.3421106	total: 150ms	remaining: 305ms
33:	learn: 29.9885373	total: 154ms	remaining: 299ms
34:	learn: 29.7462780	total: 158ms	remaining: 294ms
35:	learn: 29.3607153	total: 162ms	remaining: 288ms
36:	learn: 29.1793078	total: 166ms	remaining: 283ms
37:	learn: 28.9276538	total: 170ms	remaining: 278ms
38:	learn: 28.6903934	total: 174ms	remaining: 273ms
39:	learn: 28.2095033	total: 178ms	remaining: 267ms
40:	learn: 27.7990608	total: 182ms	remaining: 262ms
41:	learn: 27.5406632	total: 188ms	remaining: 259ms
42:	learn: 27.2575376	total: 193ms	remaining: 255ms
43:	learn: 26.9741707	total: 198ms	remaining: 252ms
44:	learn: 26.6606899	total: 202ms	remaining: 247ms
45:	learn: 26.4015833	total: 207ms	remaining: 243ms
46:	learn: 26.1828993	total: 212ms	remaining: 239ms
47:	learn: 26.0233709	total: 214ms	remaining: 232ms
48:	learn: 25.9300399	total: 219ms	remaining: 227ms
49:	learn: 25.5861489	total: 223ms	remaining: 223ms
50:	learn: 25.4322012	total: 228ms	remaining: 219ms
51:	learn: 25.1595644	total: 232ms	remaining: 214ms
52:	learn: 24.9955303	total: 237ms	remaining: 210ms
53:	learn: 24.7273966	total: 241ms	remaining: 206ms
54:	learn: 24.5747978	total: 246ms	remaining: 201ms
55:	learn: 24.3807977	total: 251ms	remaining: 197ms
56:	learn: 24.1689569	total: 256ms	remaining: 193ms
57:	learn: 23.9898221	total: 263ms	remaining: 191ms
58:	learn: 23.7566414	total: 271ms	remaining: 188ms
59:	learn: 23.6641165	total: 280ms	remaining: 187ms
60:	learn: 23.5658066	total: 286ms	remaining: 183ms
61:	learn: 23.4338851	total: 292ms	remaining: 179ms
62:	learn: 23.2408837	total: 297ms	remaining: 175ms
63:	learn: 23.0642038	total: 302ms	remaining: 170ms
64:	learn: 22.9032045	total: 308ms	remaining: 166ms
65:	learn: 22.7736138	total: 313ms	remaining: 161ms
66:	learn: 22.6836443	total: 318ms	remaining: 156ms
67:	learn: 22.5983654	total: 323ms	remaining: 152ms
68:	learn: 22.4419813	total: 328ms	remaining: 147ms
69:	learn: 22.2863339	total: 333ms	remaining: 143ms
70:	learn: 22.1792943	total: 338ms	remaining: 138ms
71:	learn: 22.1130574	total: 343ms	remaining: 133ms
72:	learn: 21.9858161	total: 348ms	remaining: 129ms
73:	learn: 21.8577784	total: 354ms	remaining: 124ms
74:	learn: 21.7845222	total: 359ms	remaining: 120ms
75:	learn: 21.6831390	total: 363ms	remaining: 115ms
76:	learn: 21.6292521	total: 367ms	remaining: 110ms
77:	learn: 21.5789330	total: 371ms	remaining: 105ms
78:	learn: 21.5420942	total: 376ms	remaining: 99.9ms
79:	learn: 21.4280939	total: 380ms	remaining: 95.1ms
80:	learn: 21.3641165	total: 385ms	remaining: 90.3ms
81:	learn: 21.2734814	total: 389ms	remaining: 85.5ms
82:	learn: 21.2220323	total: 394ms	remaining: 80.7ms
83:	learn: 21.0625792	total: 398ms	remaining: 75.9ms
84:	learn: 20.9488320	total: 402ms	remaining: 71ms
85:	learn: 20.8504255	total: 406ms	remaining: 66.1ms
86:	learn: 20.7848510	total: 411ms	remaining: 61.4ms
87:	learn: 20.7247442	total: 415ms	remaining: 56.5ms
88:	learn: 20.5698590	total: 418ms	remaining: 51.7ms
89:	learn: 20.4067620	total: 423ms	remaining: 47ms
90:	learn: 20.3062482	total: 428ms	remaining: 42.3ms
91:	learn: 20.2029696	total: 432ms	remaining: 37.6ms
92:	learn: 20.1384849	total: 437ms	remaining: 32.9ms
93:	learn: 20.0260709	total: 445ms	remaining: 28.4ms
94:	learn: 19.9122100	total: 451ms	remaining: 23.8ms
95:	learn: 19.8648487	total: 458ms	remaining: 19.1ms
96:	learn: 19.8207072	total: 464ms	remaining: 14.3ms
97:	learn: 19.7261189	total: 468ms	remaining: 9.55ms
98:	learn: 19.7042438	total: 474ms	remaining: 4.78ms
99:	learn: 19.6546645	total: 480ms	remaining: 0us
0:	learn: 47.0239288	total: 4.18ms	remaining: 414ms
1:	learn: 46.2253829	total: 8.02ms	remaining: 393ms
2:	learn: 45.5580301	total: 12ms	remaining: 387ms
3:	learn: 44.7273237	total: 16.2ms	remaining: 389ms
4:	learn: 43.8867421	total: 19.9ms	remaining: 379ms
5:	learn: 43.3615911	total: 23.9ms	remaining: 374ms
6:	learn: 42.8548390	total: 28ms	remaining: 372ms
7:	learn: 42.1606758	total: 31.8ms	remaining: 366ms
8:	learn: 41.6625870	total: 36.2ms	remaining: 366ms
9:	learn: 40.9497092	total: 40ms	remaining: 360ms
10:	learn: 40.1886318	total: 44.2ms	remaining: 357ms
11:	learn: 39.7456423	total: 48.1ms	remaining: 353ms
12:	learn: 39.1171373	total: 52.3ms	remaining: 350ms
13:	learn: 38.5451069	total: 56.4ms	remaining: 346ms
14:	learn: 38.0155834	total: 60.7ms	remaining: 344ms
15:	learn: 37.5631354	total: 65.2ms	remaining: 342ms
16:	learn: 37.1030023	total: 69.7ms	remaining: 340ms
17:	learn: 36.4563029	total: 73.8ms	remaining: 336ms
18:	learn: 36.0160976	total: 78.2ms	remaining: 333ms
19:	learn: 35.5079827	total: 82.4ms	remaining: 330ms
20:	learn: 35.2111885	total: 86.9ms	remaining: 327ms
21:	learn: 34.9397465	total: 91.3ms	remaining: 324ms
22:	learn: 34.5270048	total: 96.1ms	remaining: 322ms
23:	learn: 34.0169260	total: 101ms	remaining: 320ms
24:	learn: 33.7454892	total: 106ms	remaining: 318ms
25:	learn: 33.2648157	total: 110ms	remaining: 314ms
26:	learn: 32.8899427	total: 115ms	remaining: 310ms
27:	learn: 32.6185050	total: 119ms	remaining: 306ms
28:	learn: 32.3528531	total: 124ms	remaining: 303ms
29:	learn: 32.0859923	total: 128ms	remaining: 299ms
30:	learn: 31.6511144	total: 133ms	remaining: 295ms
31:	learn: 31.2571765	total: 138ms	remaining: 293ms
32:	learn: 30.9770049	total: 143ms	remaining: 290ms
33:	learn: 30.6084872	total: 148ms	remaining: 287ms
34:	learn: 30.3448632	total: 152ms	remaining: 283ms
35:	learn: 30.0360942	total: 157ms	remaining: 280ms
36:	learn: 29.6648968	total: 162ms	remaining: 276ms
37:	learn: 29.3165114	total: 167ms	remaining: 273ms
38:	learn: 29.0829198	total: 175ms	remaining: 274ms
39:	learn: 28.7752064	total: 183ms	remaining: 274ms
40:	learn: 28.3622191	total: 191ms	remaining: 275ms
41:	learn: 28.1346631	total: 199ms	remaining: 275ms
42:	learn: 27.9585719	total: 204ms	remaining: 270ms
43:	learn: 27.6565566	total: 209ms	remaining: 266ms
44:	learn: 27.3616172	total: 214ms	remaining: 262ms
45:	learn: 27.0658637	total: 219ms	remaining: 257ms
46:	learn: 26.8660382	total: 224ms	remaining: 253ms
47:	learn: 26.6536078	total: 230ms	remaining: 249ms
48:	learn: 26.3524440	total: 234ms	remaining: 244ms
49:	learn: 26.1595277	total: 239ms	remaining: 239ms
50:	learn: 25.9273523	total: 244ms	remaining: 235ms
51:	learn: 25.7195580	total: 249ms	remaining: 230ms
52:	learn: 25.5730225	total: 254ms	remaining: 225ms
53:	learn: 25.3455276	total: 259ms	remaining: 221ms
54:	learn: 25.2289675	total: 264ms	remaining: 216ms
55:	learn: 25.0133024	total: 269ms	remaining: 212ms
56:	learn: 24.8406714	total: 273ms	remaining: 206ms
57:	learn: 24.6367857	total: 278ms	remaining: 201ms
58:	learn: 24.5338177	total: 282ms	remaining: 196ms
59:	learn: 24.3799964	total: 286ms	remaining: 191ms
60:	learn: 24.1447492	total: 290ms	remaining: 185ms
61:	learn: 23.9880495	total: 294ms	remaining: 180ms
62:	learn: 23.7140630	total: 298ms	remaining: 175ms
63:	learn: 23.5003791	total: 302ms	remaining: 170ms
64:	learn: 23.3207645	total: 306ms	remaining: 165ms
65:	learn: 23.1958356	total: 310ms	remaining: 160ms
66:	learn: 23.0471302	total: 314ms	remaining: 155ms
67:	learn: 22.8977183	total: 319ms	remaining: 150ms
68:	learn: 22.7187400	total: 323ms	remaining: 145ms
69:	learn: 22.6523405	total: 327ms	remaining: 140ms
70:	learn: 22.4767453	total: 331ms	remaining: 135ms
71:	learn: 22.3243677	total: 335ms	remaining: 130ms
72:	learn: 22.2133096	total: 340ms	remaining: 126ms
73:	learn: 22.1151713	total: 344ms	remaining: 121ms
74:	learn: 22.0296666	total: 349ms	remaining: 116ms
75:	learn: 21.9195980	total: 354ms	remaining: 112ms
76:	learn: 21.8401730	total: 358ms	remaining: 107ms
77:	learn: 21.8079797	total: 365ms	remaining: 103ms
78:	learn: 21.7274109	total: 372ms	remaining: 98.9ms
79:	learn: 21.6663032	total: 379ms	remaining: 94.7ms
80:	learn: 21.5633117	total: 385ms	remaining: 90.4ms
81:	learn: 21.4542467	total: 390ms	remaining: 85.7ms
82:	learn: 21.3177957	total: 396ms	remaining: 81.1ms
83:	learn: 21.1289167	total: 400ms	remaining: 76.2ms
84:	learn: 21.0297368	total: 405ms	remaining: 71.4ms
85:	learn: 20.9089564	total: 409ms	remaining: 66.5ms
86:	learn: 20.7653988	total: 413ms	remaining: 61.7ms
87:	learn: 20.6521894	total: 417ms	remaining: 56.8ms
88:	learn: 20.5193021	total: 421ms	remaining: 52ms
89:	learn: 20.4361620	total: 425ms	remaining: 47.2ms
90:	learn: 20.3546710	total: 429ms	remaining: 42.4ms
91:	learn: 20.2513296	total: 433ms	remaining: 37.6ms
92:	learn: 20.1605550	total: 437ms	remaining: 32.9ms
93:	learn: 20.0515942	total: 441ms	remaining: 28.2ms
94:	learn: 19.9800764	total: 445ms	remaining: 23.4ms
95:	learn: 19.8996532	total: 449ms	remaining: 18.7ms
96:	learn: 19.8450910	total: 453ms	remaining: 14ms
97:	learn: 19.7887346	total: 458ms	remaining: 9.34ms
98:	learn: 19.7230872	total: 462ms	remaining: 4.66ms
99:	learn: 19.6328825	total: 466ms	remaining: 0us
0:	learn: 27.6506730	total: 4.44ms	remaining: 439ms
1:	learn: 27.1638793	total: 8.98ms	remaining: 440ms
2:	learn: 26.8000665	total: 13.5ms	remaining: 436ms
3:	learn: 26.4256132	total: 18.2ms	remaining: 436ms
4:	learn: 26.0088351	total: 22.5ms	remaining: 427ms
5:	learn: 25.7558298	total: 27.4ms	remaining: 430ms
6:	learn: 25.3380711	total: 32.1ms	remaining: 427ms
7:	learn: 25.0571611	total: 36.7ms	remaining: 422ms
8:	learn: 24.6790148	total: 41.5ms	remaining: 420ms
9:	learn: 24.3600941	total: 46.4ms	remaining: 418ms
10:	learn: 24.1105667	total: 51.2ms	remaining: 414ms
11:	learn: 23.7736542	total: 59.4ms	remaining: 436ms
12:	learn: 23.5824429	total: 67.4ms	remaining: 451ms
13:	learn: 23.2658303	total: 77.4ms	remaining: 475ms
14:	learn: 23.0061886	total: 83.5ms	remaining: 473ms
15:	learn: 22.8060389	total: 89.9ms	remaining: 472ms
16:	learn: 22.5899735	total: 95ms	remaining: 464ms
17:	learn: 22.3625048	total: 100ms	remaining: 456ms
18:	learn: 22.0706477	total: 105ms	remaining: 450ms
19:	learn: 21.8739394	total: 111ms	remaining: 443ms
20:	learn: 21.6143650	total: 116ms	remaining: 437ms
21:	learn: 21.4571623	total: 121ms	remaining: 430ms
22:	learn: 21.2395769	total: 126ms	remaining: 423ms
23:	learn: 20.9801795	total: 132ms	remaining: 419ms
24:	learn: 20.8036808	total: 138ms	remaining: 415ms
25:	learn: 20.6387539	total: 144ms	remaining: 409ms
26:	learn: 20.4401427	total: 149ms	remaining: 404ms
27:	learn: 20.2879575	total: 155ms	remaining: 400ms
28:	learn: 20.0538664	total: 161ms	remaining: 393ms
29:	learn: 19.8363102	total: 166ms	remaining: 387ms
30:	learn: 19.7015446	total: 171ms	remaining: 380ms
31:	learn: 19.5483114	total: 175ms	remaining: 372ms
32:	learn: 19.4163053	total: 180ms	remaining: 365ms
33:	learn: 19.2880625	total: 184ms	remaining: 357ms
34:	learn: 19.1303389	total: 189ms	remaining: 351ms
35:	learn: 18.9237448	total: 193ms	remaining: 344ms
36:	learn: 18.8142925	total: 198ms	remaining: 337ms
37:	learn: 18.6994696	total: 202ms	remaining: 330ms
38:	learn: 18.5629211	total: 207ms	remaining: 324ms
39:	learn: 18.4600917	total: 212ms	remaining: 317ms
40:	learn: 18.3567139	total: 216ms	remaining: 311ms
41:	learn: 18.2120527	total: 221ms	remaining: 305ms
42:	learn: 18.0688062	total: 225ms	remaining: 299ms
43:	learn: 17.9250181	total: 230ms	remaining: 293ms
44:	learn: 17.8399138	total: 235ms	remaining: 287ms
45:	learn: 17.6720713	total: 240ms	remaining: 282ms
46:	learn: 17.5273091	total: 245ms	remaining: 276ms
47:	learn: 17.4232814	total: 249ms	remaining: 270ms
48:	learn: 17.2957579	total: 257ms	remaining: 267ms
49:	learn: 17.1892874	total: 264ms	remaining: 264ms
50:	learn: 17.0490355	total: 272ms	remaining: 261ms
51:	learn: 16.9666450	total: 277ms	remaining: 256ms
52:	learn: 16.8600056	total: 284ms	remaining: 251ms
53:	learn: 16.7542588	total: 288ms	remaining: 245ms
54:	learn: 16.6316077	total: 293ms	remaining: 240ms
55:	learn: 16.5588112	total: 297ms	remaining: 234ms
56:	learn: 16.5010186	total: 302ms	remaining: 228ms
57:	learn: 16.4081540	total: 307ms	remaining: 222ms
58:	learn: 16.3040451	total: 311ms	remaining: 216ms
59:	learn: 16.1890564	total: 316ms	remaining: 211ms
60:	learn: 16.0977103	total: 320ms	remaining: 205ms
61:	learn: 15.9627607	total: 324ms	remaining: 199ms
62:	learn: 15.9022248	total: 329ms	remaining: 193ms
63:	learn: 15.8151881	total: 334ms	remaining: 188ms
64:	learn: 15.7353125	total: 338ms	remaining: 182ms
65:	learn: 15.6312897	total: 343ms	remaining: 177ms
66:	learn: 15.5330927	total: 348ms	remaining: 171ms
67:	learn: 15.4698681	total: 353ms	remaining: 166ms
68:	learn: 15.4108571	total: 357ms	remaining: 161ms
69:	learn: 15.3492945	total: 362ms	remaining: 155ms
70:	learn: 15.3036540	total: 367ms	remaining: 150ms
71:	learn: 15.2390833	total: 372ms	remaining: 145ms
72:	learn: 15.1556327	total: 377ms	remaining: 140ms
73:	learn: 15.1016315	total: 382ms	remaining: 134ms
74:	learn: 15.0287076	total: 386ms	remaining: 129ms
75:	learn: 14.9530572	total: 391ms	remaining: 123ms
76:	learn: 14.8965517	total: 395ms	remaining: 118ms
77:	learn: 14.8125426	total: 399ms	remaining: 113ms
78:	learn: 14.7435359	total: 403ms	remaining: 107ms
79:	learn: 14.6963163	total: 408ms	remaining: 102ms
80:	learn: 14.6200060	total: 412ms	remaining: 96.7ms
81:	learn: 14.5707760	total: 417ms	remaining: 91.4ms
82:	learn: 14.5053651	total: 421ms	remaining: 86.3ms
83:	learn: 14.4115458	total: 426ms	remaining: 81.2ms
84:	learn: 14.3117159	total: 431ms	remaining: 76.1ms
85:	learn: 14.2511326	total: 436ms	remaining: 71ms
86:	learn: 14.1372486	total: 441ms	remaining: 65.9ms
87:	learn: 14.0992301	total: 445ms	remaining: 60.7ms
88:	learn: 14.0228331	total: 450ms	remaining: 55.6ms
89:	learn: 13.9249836	total: 458ms	remaining: 50.9ms
90:	learn: 13.8679364	total: 466ms	remaining: 46.1ms
91:	learn: 13.8405578	total: 475ms	remaining: 41.3ms
92:	learn: 13.7711325	total: 482ms	remaining: 36.3ms
93:	learn: 13.7357019	total: 488ms	remaining: 31.1ms
94:	learn: 13.6735271	total: 493ms	remaining: 26ms
95:	learn: 13.5682393	total: 499ms	remaining: 20.8ms
96:	learn: 13.5342610	total: 504ms	remaining: 15.6ms
97:	learn: 13.4710034	total: 509ms	remaining: 10.4ms
98:	learn: 13.4022402	total: 514ms	remaining: 5.19ms
99:	learn: 13.3351238	total: 519ms	remaining: 0us
0:	learn: 42.9181702	total: 6.15ms	remaining: 609ms
1:	learn: 42.0286736	total: 12.2ms	remaining: 596ms
2:	learn: 41.2764568	total: 17.4ms	remaining: 564ms
3:	learn: 40.4721918	total: 23.9ms	remaining: 573ms
4:	learn: 39.8518928	total: 29.4ms	remaining: 559ms
5:	learn: 39.2645479	total: 35.2ms	remaining: 551ms
6:	learn: 38.4453704	total: 40.7ms	remaining: 541ms
7:	learn: 37.7122059	total: 46.6ms	remaining: 536ms
8:	learn: 36.9185796	total: 52.4ms	remaining: 529ms
9:	learn: 36.1668427	total: 58.4ms	remaining: 525ms
10:	learn: 35.5639029	total: 64.3ms	remaining: 520ms
11:	learn: 34.7724193	total: 70.9ms	remaining: 520ms
12:	learn: 34.3053433	total: 77ms	remaining: 515ms
13:	learn: 33.6561327	total: 78.7ms	remaining: 483ms
14:	learn: 33.0134042	total: 84.4ms	remaining: 478ms
15:	learn: 32.4483300	total: 90.3ms	remaining: 474ms
16:	learn: 31.8581144	total: 96.8ms	remaining: 473ms
17:	learn: 31.2858301	total: 107ms	remaining: 489ms
18:	learn: 30.8483018	total: 121ms	remaining: 516ms
19:	learn: 30.4174622	total: 129ms	remaining: 518ms
20:	learn: 29.8994411	total: 135ms	remaining: 509ms
21:	learn: 29.5045355	total: 141ms	remaining: 500ms
22:	learn: 28.9923519	total: 147ms	remaining: 492ms
23:	learn: 28.4255717	total: 153ms	remaining: 483ms
24:	learn: 28.0283139	total: 158ms	remaining: 474ms
25:	learn: 27.7434814	total: 164ms	remaining: 467ms
26:	learn: 27.2770731	total: 170ms	remaining: 460ms
27:	learn: 26.8928270	total: 176ms	remaining: 452ms
28:	learn: 26.4282671	total: 181ms	remaining: 444ms
29:	learn: 26.0272764	total: 187ms	remaining: 436ms
30:	learn: 25.7579312	total: 193ms	remaining: 429ms
31:	learn: 25.4542434	total: 198ms	remaining: 421ms
32:	learn: 25.1232564	total: 204ms	remaining: 415ms
33:	learn: 24.8110795	total: 210ms	remaining: 407ms
34:	learn: 24.5077579	total: 215ms	remaining: 400ms
35:	learn: 24.1909000	total: 221ms	remaining: 393ms
36:	learn: 23.8719468	total: 226ms	remaining: 385ms
37:	learn: 23.5764366	total: 228ms	remaining: 371ms
38:	learn: 23.3468086	total: 233ms	remaining: 364ms
39:	learn: 23.0908771	total: 237ms	remaining: 356ms
40:	learn: 22.8580876	total: 242ms	remaining: 349ms
41:	learn: 22.6060825	total: 247ms	remaining: 341ms
42:	learn: 22.4125407	total: 252ms	remaining: 335ms
43:	learn: 22.1990617	total: 257ms	remaining: 327ms
44:	learn: 21.9716164	total: 263ms	remaining: 321ms
45:	learn: 21.8360935	total: 269ms	remaining: 315ms
46:	learn: 21.6169256	total: 275ms	remaining: 310ms
47:	learn: 21.4620612	total: 281ms	remaining: 305ms
48:	learn: 21.2894194	total: 287ms	remaining: 299ms
49:	learn: 21.1066266	total: 293ms	remaining: 293ms
50:	learn: 20.9484898	total: 302ms	remaining: 291ms
51:	learn: 20.7195338	total: 315ms	remaining: 291ms
52:	learn: 20.4899740	total: 322ms	remaining: 286ms
53:	learn: 20.3356583	total: 330ms	remaining: 281ms
54:	learn: 20.0754393	total: 335ms	remaining: 274ms
55:	learn: 19.9199159	total: 340ms	remaining: 267ms
56:	learn: 19.7761128	total: 346ms	remaining: 261ms
57:	learn: 19.6533060	total: 351ms	remaining: 254ms
58:	learn: 19.5113942	total: 357ms	remaining: 248ms
59:	learn: 19.3985022	total: 362ms	remaining: 241ms
60:	learn: 19.2683443	total: 368ms	remaining: 235ms
61:	learn: 19.1460824	total: 372ms	remaining: 228ms
62:	learn: 19.0042655	total: 378ms	remaining: 222ms
63:	learn: 18.8720873	total: 383ms	remaining: 215ms
64:	learn: 18.7183888	total: 389ms	remaining: 209ms
65:	learn: 18.5472360	total: 394ms	remaining: 203ms
66:	learn: 18.3976642	total: 399ms	remaining: 197ms
67:	learn: 18.2282851	total: 404ms	remaining: 190ms
68:	learn: 18.1469157	total: 408ms	remaining: 183ms
69:	learn: 18.0649494	total: 413ms	remaining: 177ms
70:	learn: 17.9485405	total: 417ms	remaining: 170ms
71:	learn: 17.8460261	total: 422ms	remaining: 164ms
72:	learn: 17.7679843	total: 426ms	remaining: 158ms
73:	learn: 17.5989290	total: 431ms	remaining: 151ms
74:	learn: 17.4381322	total: 435ms	remaining: 145ms
75:	learn: 17.3370886	total: 439ms	remaining: 139ms
76:	learn: 17.2675308	total: 444ms	remaining: 133ms
77:	learn: 17.1946430	total: 448ms	remaining: 126ms
78:	learn: 17.0923725	total: 452ms	remaining: 120ms
79:	learn: 17.0537265	total: 457ms	remaining: 114ms
80:	learn: 16.9456831	total: 462ms	remaining: 108ms
81:	learn: 16.8457353	total: 466ms	remaining: 102ms
82:	learn: 16.7469310	total: 471ms	remaining: 96.5ms
83:	learn: 16.6679953	total: 476ms	remaining: 90.6ms
84:	learn: 16.6274189	total: 480ms	remaining: 84.8ms
85:	learn: 16.5516530	total: 485ms	remaining: 78.9ms
86:	learn: 16.4886066	total: 490ms	remaining: 73.2ms
87:	learn: 16.3947859	total: 499ms	remaining: 68ms
88:	learn: 16.3406495	total: 506ms	remaining: 62.6ms
89:	learn: 16.3019195	total: 513ms	remaining: 57ms
90:	learn: 16.1860681	total: 518ms	remaining: 51.2ms
91:	learn: 16.1282812	total: 523ms	remaining: 45.5ms
92:	learn: 16.0303652	total: 528ms	remaining: 39.7ms
93:	learn: 15.9561692	total: 533ms	remaining: 34ms
94:	learn: 15.8733994	total: 537ms	remaining: 28.3ms
95:	learn: 15.8108833	total: 542ms	remaining: 22.6ms
96:	learn: 15.7606004	total: 548ms	remaining: 16.9ms
97:	learn: 15.6984664	total: 552ms	remaining: 11.3ms
98:	learn: 15.6223632	total: 557ms	remaining: 5.63ms
99:	learn: 15.5671136	total: 562ms	remaining: 0us
0:	learn: 46.4788614	total: 2.02ms	remaining: 200ms
1:	learn: 45.7608372	total: 6.65ms	remaining: 326ms
2:	learn: 44.8825004	total: 11.1ms	remaining: 359ms
3:	learn: 44.0362738	total: 15.2ms	remaining: 364ms
4:	learn: 43.2086374	total: 19.9ms	remaining: 379ms
5:	learn: 42.5835773	total: 24.7ms	remaining: 386ms
6:	learn: 41.9673269	total: 29ms	remaining: 385ms
7:	learn: 41.4748717	total: 33.2ms	remaining: 382ms
8:	learn: 40.7129183	total: 38.3ms	remaining: 387ms
9:	learn: 39.8900884	total: 43.1ms	remaining: 388ms
10:	learn: 39.4142193	total: 47.6ms	remaining: 385ms
11:	learn: 38.8645613	total: 52.1ms	remaining: 382ms
12:	learn: 38.2394731	total: 56.6ms	remaining: 379ms
13:	learn: 37.6834515	total: 61.2ms	remaining: 376ms
14:	learn: 37.0673507	total: 67.9ms	remaining: 385ms
15:	learn: 36.4728340	total: 75ms	remaining: 394ms
16:	learn: 36.0489086	total: 81.5ms	remaining: 398ms
17:	learn: 35.4744141	total: 87.7ms	remaining: 399ms
18:	learn: 35.0106021	total: 92.4ms	remaining: 394ms
19:	learn: 34.5586053	total: 97.5ms	remaining: 390ms
20:	learn: 34.1308223	total: 103ms	remaining: 389ms
21:	learn: 33.7701450	total: 109ms	remaining: 387ms
22:	learn: 33.4425444	total: 114ms	remaining: 383ms
23:	learn: 33.0296412	total: 120ms	remaining: 378ms
24:	learn: 32.6359803	total: 125ms	remaining: 374ms
25:	learn: 32.1846182	total: 130ms	remaining: 369ms
26:	learn: 31.7620230	total: 135ms	remaining: 365ms
27:	learn: 31.4669337	total: 140ms	remaining: 360ms
28:	learn: 31.0792062	total: 145ms	remaining: 356ms
29:	learn: 30.7970537	total: 150ms	remaining: 351ms
30:	learn: 30.4952215	total: 156ms	remaining: 348ms
31:	learn: 30.2845344	total: 162ms	remaining: 344ms
32:	learn: 29.9592732	total: 167ms	remaining: 339ms
33:	learn: 29.6798596	total: 172ms	remaining: 334ms
34:	learn: 29.3368905	total: 178ms	remaining: 330ms
35:	learn: 29.0621238	total: 183ms	remaining: 325ms
36:	learn: 28.6445375	total: 189ms	remaining: 321ms
37:	learn: 28.2418096	total: 195ms	remaining: 317ms
38:	learn: 27.9495390	total: 199ms	remaining: 312ms
39:	learn: 27.6958160	total: 204ms	remaining: 306ms
40:	learn: 27.4811189	total: 209ms	remaining: 300ms
41:	learn: 27.1494420	total: 213ms	remaining: 295ms
42:	learn: 26.8388873	total: 218ms	remaining: 289ms
43:	learn: 26.5721300	total: 222ms	remaining: 283ms
44:	learn: 26.3384738	total: 227ms	remaining: 277ms
45:	learn: 26.1894781	total: 231ms	remaining: 272ms
46:	learn: 25.9580198	total: 236ms	remaining: 266ms
47:	learn: 25.7897985	total: 240ms	remaining: 260ms
48:	learn: 25.6000271	total: 244ms	remaining: 254ms
49:	learn: 25.4130873	total: 249ms	remaining: 249ms
50:	learn: 25.1699061	total: 253ms	remaining: 243ms
51:	learn: 24.9324449	total: 258ms	remaining: 238ms
52:	learn: 24.7729152	total: 263ms	remaining: 233ms
53:	learn: 24.5026563	total: 267ms	remaining: 228ms
54:	learn: 24.2332627	total: 272ms	remaining: 223ms
55:	learn: 23.9611984	total: 277ms	remaining: 218ms
56:	learn: 23.7862603	total: 282ms	remaining: 213ms
57:	learn: 23.6318154	total: 287ms	remaining: 208ms
58:	learn: 23.4443306	total: 295ms	remaining: 205ms
59:	learn: 23.2581425	total: 303ms	remaining: 202ms
60:	learn: 23.0549901	total: 310ms	remaining: 198ms
61:	learn: 22.8666218	total: 316ms	remaining: 193ms
62:	learn: 22.6956739	total: 320ms	remaining: 188ms
63:	learn: 22.5068544	total: 325ms	remaining: 183ms
64:	learn: 22.1859147	total: 329ms	remaining: 177ms
65:	learn: 22.0462043	total: 333ms	remaining: 172ms
66:	learn: 21.9329563	total: 337ms	remaining: 166ms
67:	learn: 21.8029736	total: 342ms	remaining: 161ms
68:	learn: 21.6861091	total: 346ms	remaining: 156ms
69:	learn: 21.4838140	total: 351ms	remaining: 150ms
70:	learn: 21.3548921	total: 355ms	remaining: 145ms
71:	learn: 21.2244517	total: 359ms	remaining: 140ms
72:	learn: 21.0702958	total: 364ms	remaining: 135ms
73:	learn: 20.9224662	total: 369ms	remaining: 130ms
74:	learn: 20.8150357	total: 373ms	remaining: 124ms
75:	learn: 20.6962739	total: 378ms	remaining: 119ms
76:	learn: 20.5809258	total: 382ms	remaining: 114ms
77:	learn: 20.4735470	total: 386ms	remaining: 109ms
78:	learn: 20.3778167	total: 390ms	remaining: 104ms
79:	learn: 20.2211268	total: 395ms	remaining: 98.8ms
80:	learn: 20.1478678	total: 400ms	remaining: 93.8ms
81:	learn: 20.1032967	total: 404ms	remaining: 88.7ms
82:	learn: 19.9236300	total: 409ms	remaining: 83.7ms
83:	learn: 19.8151745	total: 413ms	remaining: 78.7ms
84:	learn: 19.7099856	total: 417ms	remaining: 73.6ms
85:	learn: 19.6264833	total: 422ms	remaining: 68.7ms
86:	learn: 19.4916361	total: 427ms	remaining: 63.8ms
87:	learn: 19.4050529	total: 431ms	remaining: 58.8ms
88:	learn: 19.2547065	total: 436ms	remaining: 53.9ms
89:	learn: 19.1610225	total: 441ms	remaining: 49ms
90:	learn: 19.0898958	total: 446ms	remaining: 44.1ms
91:	learn: 19.0489664	total: 450ms	remaining: 39.1ms
92:	learn: 18.9206240	total: 455ms	remaining: 34.2ms
93:	learn: 18.8636239	total: 459ms	remaining: 29.3ms
94:	learn: 18.8126187	total: 464ms	remaining: 24.4ms
95:	learn: 18.7579275	total: 468ms	remaining: 19.5ms
96:	learn: 18.6382753	total: 473ms	remaining: 14.6ms
97:	learn: 18.5397334	total: 478ms	remaining: 9.76ms
98:	learn: 18.4375951	total: 483ms	remaining: 4.87ms
99:	learn: 18.4033755	total: 490ms	remaining: 0us
0:	learn: 46.1068821	total: 2.29ms	remaining: 227ms
1:	learn: 45.3970261	total: 7.84ms	remaining: 384ms
2:	learn: 44.8732696	total: 13.4ms	remaining: 434ms
3:	learn: 44.1290184	total: 18.5ms	remaining: 445ms
4:	learn: 43.3290271	total: 24ms	remaining: 455ms
5:	learn: 42.7069090	total: 28.9ms	remaining: 452ms
6:	learn: 42.0572971	total: 33.7ms	remaining: 448ms
7:	learn: 41.4797924	total: 39.5ms	remaining: 454ms
8:	learn: 41.0023122	total: 45ms	remaining: 455ms
9:	learn: 40.5330570	total: 49.3ms	remaining: 444ms
10:	learn: 39.9726545	total: 53.3ms	remaining: 431ms
11:	learn: 39.3044053	total: 57.7ms	remaining: 423ms
12:	learn: 38.8169735	total: 61.9ms	remaining: 415ms
13:	learn: 38.2458761	total: 66.1ms	remaining: 406ms
14:	learn: 37.6280321	total: 70.3ms	remaining: 398ms
15:	learn: 37.0800610	total: 74.7ms	remaining: 392ms
16:	learn: 36.5489363	total: 78.9ms	remaining: 385ms
17:	learn: 36.0981456	total: 83.2ms	remaining: 379ms
18:	learn: 35.6956274	total: 87.6ms	remaining: 374ms
19:	learn: 35.1471999	total: 92ms	remaining: 368ms
20:	learn: 34.6235408	total: 96.2ms	remaining: 362ms
21:	learn: 34.1987018	total: 100ms	remaining: 356ms
22:	learn: 33.8985062	total: 105ms	remaining: 351ms
23:	learn: 33.3869017	total: 110ms	remaining: 347ms
24:	learn: 32.9100550	total: 114ms	remaining: 341ms
25:	learn: 32.4156208	total: 118ms	remaining: 336ms
26:	learn: 31.9320493	total: 123ms	remaining: 332ms
27:	learn: 31.5711468	total: 128ms	remaining: 328ms
28:	learn: 31.2404433	total: 132ms	remaining: 324ms
29:	learn: 30.8807946	total: 137ms	remaining: 320ms
30:	learn: 30.5948438	total: 142ms	remaining: 315ms
31:	learn: 30.3885560	total: 147ms	remaining: 312ms
32:	learn: 30.0625101	total: 155ms	remaining: 316ms
33:	learn: 29.9113114	total: 163ms	remaining: 317ms
34:	learn: 29.6983470	total: 170ms	remaining: 315ms
35:	learn: 29.4775849	total: 174ms	remaining: 310ms
36:	learn: 29.0538055	total: 181ms	remaining: 308ms
37:	learn: 28.6792318	total: 185ms	remaining: 302ms
38:	learn: 28.4231383	total: 190ms	remaining: 297ms
39:	learn: 28.1078565	total: 194ms	remaining: 290ms
40:	learn: 27.9079179	total: 198ms	remaining: 285ms
41:	learn: 27.6721506	total: 202ms	remaining: 279ms
42:	learn: 27.4228033	total: 206ms	remaining: 273ms
43:	learn: 27.1740534	total: 211ms	remaining: 268ms
44:	learn: 26.8584071	total: 215ms	remaining: 263ms
45:	learn: 26.6902083	total: 219ms	remaining: 258ms
46:	learn: 26.4855335	total: 224ms	remaining: 252ms
47:	learn: 26.2730822	total: 228ms	remaining: 247ms
48:	learn: 26.1058689	total: 232ms	remaining: 242ms
49:	learn: 25.8587318	total: 237ms	remaining: 237ms
50:	learn: 25.7558005	total: 241ms	remaining: 232ms
51:	learn: 25.5846925	total: 245ms	remaining: 226ms
52:	learn: 25.4249887	total: 250ms	remaining: 221ms
53:	learn: 25.1911054	total: 254ms	remaining: 216ms
54:	learn: 25.0544755	total: 258ms	remaining: 211ms
55:	learn: 24.8874006	total: 262ms	remaining: 206ms
56:	learn: 24.7736279	total: 267ms	remaining: 201ms
57:	learn: 24.6156255	total: 271ms	remaining: 196ms
58:	learn: 24.3962421	total: 275ms	remaining: 191ms
59:	learn: 24.2685129	total: 279ms	remaining: 186ms
60:	learn: 24.1874096	total: 283ms	remaining: 181ms
61:	learn: 24.0394287	total: 288ms	remaining: 177ms
62:	learn: 23.9281768	total: 292ms	remaining: 171ms
63:	learn: 23.7423900	total: 296ms	remaining: 166ms
64:	learn: 23.6015209	total: 300ms	remaining: 162ms
65:	learn: 23.4677943	total: 305ms	remaining: 157ms
66:	learn: 23.3215256	total: 309ms	remaining: 152ms
67:	learn: 23.1869360	total: 314ms	remaining: 148ms
68:	learn: 22.9691180	total: 318ms	remaining: 143ms
69:	learn: 22.7531657	total: 323ms	remaining: 138ms
70:	learn: 22.6133477	total: 327ms	remaining: 134ms
71:	learn: 22.3452758	total: 332ms	remaining: 129ms
72:	learn: 22.2065350	total: 337ms	remaining: 125ms
73:	learn: 22.1071155	total: 341ms	remaining: 120ms
74:	learn: 21.9740686	total: 346ms	remaining: 115ms
75:	learn: 21.8892033	total: 354ms	remaining: 112ms
76:	learn: 21.8267882	total: 365ms	remaining: 109ms
77:	learn: 21.7423479	total: 374ms	remaining: 105ms
78:	learn: 21.6242075	total: 379ms	remaining: 101ms
79:	learn: 21.5016910	total: 385ms	remaining: 96.3ms
80:	learn: 21.4806623	total: 386ms	remaining: 90.6ms
81:	learn: 21.3166637	total: 391ms	remaining: 85.9ms
82:	learn: 21.2222534	total: 397ms	remaining: 81.2ms
83:	learn: 21.1535708	total: 402ms	remaining: 76.6ms
84:	learn: 21.0858902	total: 407ms	remaining: 71.9ms
85:	learn: 20.9206003	total: 413ms	remaining: 67.2ms
86:	learn: 20.8674695	total: 418ms	remaining: 62.4ms
87:	learn: 20.8089875	total: 423ms	remaining: 57.7ms
88:	learn: 20.7085401	total: 428ms	remaining: 52.9ms
89:	learn: 20.5513468	total: 433ms	remaining: 48.1ms
90:	learn: 20.4586742	total: 438ms	remaining: 43.3ms
91:	learn: 20.3932149	total: 446ms	remaining: 38.8ms
92:	learn: 20.3000895	total: 450ms	remaining: 33.9ms
93:	learn: 20.2254009	total: 455ms	remaining: 29ms
94:	learn: 20.1750050	total: 459ms	remaining: 24.2ms
95:	learn: 20.0715579	total: 464ms	remaining: 19.3ms
96:	learn: 19.9920082	total: 468ms	remaining: 14.5ms
97:	learn: 19.9664401	total: 473ms	remaining: 9.65ms
98:	learn: 19.8689673	total: 477ms	remaining: 4.82ms
99:	learn: 19.7537356	total: 482ms	remaining: 0us
0:	learn: 46.8832143	total: 5.11ms	remaining: 506ms
1:	learn: 45.8700349	total: 9.98ms	remaining: 489ms
2:	learn: 45.0546867	total: 14.9ms	remaining: 481ms
3:	learn: 44.2829439	total: 19.5ms	remaining: 467ms
4:	learn: 43.4609042	total: 24.5ms	remaining: 465ms
5:	learn: 42.6754991	total: 33ms	remaining: 517ms
6:	learn: 41.9234935	total: 40.9ms	remaining: 543ms
7:	learn: 41.3987518	total: 47.3ms	remaining: 544ms
8:	learn: 40.6625066	total: 52.2ms	remaining: 527ms
9:	learn: 40.0029561	total: 58.6ms	remaining: 527ms
10:	learn: 39.3897033	total: 63ms	remaining: 509ms
11:	learn: 38.7741453	total: 67.5ms	remaining: 495ms
12:	learn: 38.1201100	total: 72ms	remaining: 482ms
13:	learn: 37.5129454	total: 76.7ms	remaining: 471ms
14:	learn: 37.2062206	total: 80.7ms	remaining: 457ms
15:	learn: 36.6831741	total: 85.2ms	remaining: 447ms
16:	learn: 36.2902788	total: 89.4ms	remaining: 436ms
17:	learn: 35.7639930	total: 93.6ms	remaining: 426ms
18:	learn: 35.2580953	total: 97.8ms	remaining: 417ms
19:	learn: 34.7809739	total: 102ms	remaining: 409ms
20:	learn: 34.1330433	total: 106ms	remaining: 400ms
21:	learn: 33.7302219	total: 111ms	remaining: 393ms
22:	learn: 33.3502495	total: 115ms	remaining: 385ms
23:	learn: 33.0067804	total: 119ms	remaining: 377ms
24:	learn: 32.6897855	total: 123ms	remaining: 369ms
25:	learn: 32.4361119	total: 127ms	remaining: 362ms
26:	learn: 32.1278981	total: 132ms	remaining: 356ms
27:	learn: 31.7863721	total: 136ms	remaining: 351ms
28:	learn: 31.4791450	total: 141ms	remaining: 346ms
29:	learn: 31.1760161	total: 146ms	remaining: 341ms
30:	learn: 30.9238888	total: 151ms	remaining: 335ms
31:	learn: 30.5500905	total: 156ms	remaining: 331ms
32:	learn: 30.3078126	total: 160ms	remaining: 325ms
33:	learn: 30.0480921	total: 165ms	remaining: 320ms
34:	learn: 29.8623884	total: 169ms	remaining: 314ms
35:	learn: 29.5991038	total: 173ms	remaining: 308ms
36:	learn: 29.4061161	total: 177ms	remaining: 302ms
37:	learn: 29.0269515	total: 182ms	remaining: 297ms
38:	learn: 28.8224959	total: 186ms	remaining: 291ms
39:	learn: 28.6417843	total: 190ms	remaining: 286ms
40:	learn: 28.3633368	total: 195ms	remaining: 280ms
41:	learn: 28.0200246	total: 199ms	remaining: 275ms
42:	learn: 27.7221254	total: 203ms	remaining: 270ms
43:	learn: 27.5105818	total: 208ms	remaining: 264ms
44:	learn: 27.3551010	total: 212ms	remaining: 259ms
45:	learn: 27.0787522	total: 217ms	remaining: 254ms
46:	learn: 26.8726317	total: 221ms	remaining: 249ms
47:	learn: 26.8003277	total: 225ms	remaining: 244ms
48:	learn: 26.5493785	total: 230ms	remaining: 239ms
49:	learn: 26.3699550	total: 235ms	remaining: 235ms
50:	learn: 26.1519631	total: 240ms	remaining: 230ms
51:	learn: 25.9277325	total: 244ms	remaining: 225ms
52:	learn: 25.7286035	total: 249ms	remaining: 221ms
53:	learn: 25.4999193	total: 254ms	remaining: 216ms
54:	learn: 25.3434703	total: 260ms	remaining: 213ms
55:	learn: 25.1497545	total: 268ms	remaining: 210ms
56:	learn: 24.9498143	total: 279ms	remaining: 210ms
57:	learn: 24.6509390	total: 285ms	remaining: 207ms
58:	learn: 24.5576144	total: 293ms	remaining: 203ms
59:	learn: 24.4265144	total: 298ms	remaining: 199ms
60:	learn: 24.3100706	total: 303ms	remaining: 194ms
61:	learn: 24.1727952	total: 308ms	remaining: 189ms
62:	learn: 24.0478558	total: 314ms	remaining: 184ms
63:	learn: 23.9124577	total: 319ms	remaining: 179ms
64:	learn: 23.7703718	total: 324ms	remaining: 174ms
65:	learn: 23.5975027	total: 329ms	remaining: 169ms
66:	learn: 23.4318077	total: 335ms	remaining: 165ms
67:	learn: 23.3099691	total: 340ms	remaining: 160ms
68:	learn: 23.1947982	total: 345ms	remaining: 155ms
69:	learn: 23.0260174	total: 350ms	remaining: 150ms
70:	learn: 22.8523100	total: 356ms	remaining: 145ms
71:	learn: 22.8028534	total: 361ms	remaining: 140ms
72:	learn: 22.6880658	total: 365ms	remaining: 135ms
73:	learn: 22.5956809	total: 369ms	remaining: 130ms
74:	learn: 22.4692932	total: 374ms	remaining: 125ms
75:	learn: 22.2863504	total: 378ms	remaining: 120ms
76:	learn: 22.1911237	total: 383ms	remaining: 114ms
77:	learn: 22.1098391	total: 387ms	remaining: 109ms
78:	learn: 22.0182738	total: 391ms	remaining: 104ms
79:	learn: 21.9306746	total: 395ms	remaining: 98.9ms
80:	learn: 21.7508233	total: 400ms	remaining: 93.7ms
81:	learn: 21.7108446	total: 404ms	remaining: 88.6ms
82:	learn: 21.5931852	total: 408ms	remaining: 83.6ms
83:	learn: 21.4480361	total: 413ms	remaining: 78.6ms
84:	learn: 21.3092119	total: 417ms	remaining: 73.6ms
85:	learn: 21.2605557	total: 421ms	remaining: 68.5ms
86:	learn: 21.1123597	total: 425ms	remaining: 63.6ms
87:	learn: 21.0115642	total: 430ms	remaining: 58.6ms
88:	learn: 20.9389040	total: 434ms	remaining: 53.6ms
89:	learn: 20.8300300	total: 439ms	remaining: 48.8ms
90:	learn: 20.7159733	total: 443ms	remaining: 43.9ms
91:	learn: 20.6282090	total: 448ms	remaining: 39ms
92:	learn: 20.5164529	total: 453ms	remaining: 34.1ms
93:	learn: 20.4692032	total: 458ms	remaining: 29.2ms
94:	learn: 20.3768451	total: 462ms	remaining: 24.3ms
95:	learn: 20.2808056	total: 469ms	remaining: 19.5ms
96:	learn: 20.2082089	total: 476ms	remaining: 14.7ms
97:	learn: 20.1698768	total: 484ms	remaining: 9.88ms
98:	learn: 20.1048816	total: 490ms	remaining: 4.95ms
99:	learn: 20.0086159	total: 496ms	remaining: 0us
0:	learn: 27.3776612	total: 17.9ms	remaining: 1.77s
1:	learn: 26.7619003	total: 35.5ms	remaining: 1.74s
2:	learn: 26.0057626	total: 54.3ms	remaining: 1.76s
3:	learn: 25.4280982	total: 72.3ms	remaining: 1.73s
4:	learn: 24.8347609	total: 90ms	remaining: 1.71s
5:	learn: 24.2526574	total: 110ms	remaining: 1.73s
6:	learn: 23.7478806	total: 131ms	remaining: 1.74s
7:	learn: 23.2677666	total: 159ms	remaining: 1.83s
8:	learn: 22.7564310	total: 182ms	remaining: 1.83s
9:	learn: 22.2873770	total: 203ms	remaining: 1.83s
10:	learn: 21.8088174	total: 224ms	remaining: 1.81s
11:	learn: 21.4086875	total: 245ms	remaining: 1.8s
12:	learn: 20.9489217	total: 264ms	remaining: 1.76s
13:	learn: 20.4585233	total: 283ms	remaining: 1.74s
14:	learn: 20.0177760	total: 305ms	remaining: 1.73s
15:	learn: 19.5981890	total: 326ms	remaining: 1.71s
16:	learn: 19.2041885	total: 355ms	remaining: 1.73s
17:	learn: 18.8422550	total: 379ms	remaining: 1.73s
18:	learn: 18.4774037	total: 400ms	remaining: 1.71s
19:	learn: 18.0931699	total: 421ms	remaining: 1.68s
20:	learn: 17.6856423	total: 441ms	remaining: 1.66s
21:	learn: 17.3394010	total: 461ms	remaining: 1.63s
22:	learn: 17.0165204	total: 480ms	remaining: 1.61s
23:	learn: 16.7728230	total: 500ms	remaining: 1.58s
24:	learn: 16.5020155	total: 521ms	remaining: 1.56s
25:	learn: 16.2110813	total: 543ms	remaining: 1.54s
26:	learn: 15.9439416	total: 567ms	remaining: 1.53s
27:	learn: 15.6605702	total: 599ms	remaining: 1.54s
28:	learn: 15.4180978	total: 622ms	remaining: 1.52s
29:	learn: 15.1463921	total: 644ms	remaining: 1.5s
30:	learn: 14.8961946	total: 666ms	remaining: 1.48s
31:	learn: 14.6763296	total: 688ms	remaining: 1.46s
32:	learn: 14.4161484	total: 706ms	remaining: 1.43s
33:	learn: 14.1748686	total: 726ms	remaining: 1.41s
34:	learn: 13.9722494	total: 745ms	remaining: 1.38s
35:	learn: 13.7632896	total: 765ms	remaining: 1.36s
36:	learn: 13.5572592	total: 787ms	remaining: 1.34s
37:	learn: 13.3896577	total: 813ms	remaining: 1.33s
38:	learn: 13.2796441	total: 832ms	remaining: 1.3s
39:	learn: 13.0896679	total: 850ms	remaining: 1.27s
40:	learn: 12.8898238	total: 871ms	remaining: 1.25s
41:	learn: 12.6824069	total: 892ms	remaining: 1.23s
42:	learn: 12.5459667	total: 911ms	remaining: 1.21s
43:	learn: 12.3859203	total: 929ms	remaining: 1.18s
44:	learn: 12.2099364	total: 948ms	remaining: 1.16s
45:	learn: 12.0649044	total: 969ms	remaining: 1.14s
46:	learn: 11.8934147	total: 990ms	remaining: 1.12s
47:	learn: 11.7212144	total: 1.02s	remaining: 1.1s
48:	learn: 11.5585360	total: 1.04s	remaining: 1.08s
49:	learn: 11.4204354	total: 1.06s	remaining: 1.06s
50:	learn: 11.3264427	total: 1.09s	remaining: 1.04s
51:	learn: 11.2063486	total: 1.11s	remaining: 1.02s
52:	learn: 11.0712206	total: 1.13s	remaining: 1s
53:	learn: 10.9205088	total: 1.15s	remaining: 978ms
54:	learn: 10.8155412	total: 1.17s	remaining: 954ms
55:	learn: 10.7286854	total: 1.19s	remaining: 933ms
56:	learn: 10.6088466	total: 1.21s	remaining: 913ms
57:	learn: 10.4999885	total: 1.24s	remaining: 896ms
58:	learn: 10.4022194	total: 1.26s	remaining: 873ms
59:	learn: 10.3147130	total: 1.27s	remaining: 850ms
60:	learn: 10.2011489	total: 1.3s	remaining: 829ms
61:	learn: 10.1094372	total: 1.31s	remaining: 806ms
62:	learn: 10.0248970	total: 1.33s	remaining: 784ms
63:	learn: 9.9192710	total: 1.35s	remaining: 762ms
64:	learn: 9.8577360	total: 1.37s	remaining: 740ms
65:	learn: 9.7737103	total: 1.39s	remaining: 718ms
66:	learn: 9.6706617	total: 1.42s	remaining: 697ms
67:	learn: 9.6042727	total: 1.45s	remaining: 681ms
68:	learn: 9.5355377	total: 1.47s	remaining: 662ms
69:	learn: 9.4615216	total: 1.49s	remaining: 640ms
70:	learn: 9.3702045	total: 1.52s	remaining: 620ms
71:	learn: 9.3035392	total: 1.54s	remaining: 599ms
72:	learn: 9.2322686	total: 1.56s	remaining: 578ms
73:	learn: 9.1431916	total: 1.58s	remaining: 557ms
74:	learn: 9.0869466	total: 1.61s	remaining: 535ms
75:	learn: 9.0117390	total: 1.63s	remaining: 514ms
76:	learn: 8.9580443	total: 1.66s	remaining: 496ms
77:	learn: 8.8649939	total: 1.68s	remaining: 474ms
78:	learn: 8.7792713	total: 1.7s	remaining: 452ms
79:	learn: 8.7164606	total: 1.72s	remaining: 430ms
80:	learn: 8.6340559	total: 1.74s	remaining: 409ms
81:	learn: 8.5697104	total: 1.76s	remaining: 387ms
82:	learn: 8.5273758	total: 1.78s	remaining: 365ms
83:	learn: 8.4394788	total: 1.8s	remaining: 343ms
84:	learn: 8.3672415	total: 1.82s	remaining: 322ms
85:	learn: 8.2813444	total: 1.85s	remaining: 301ms
86:	learn: 8.1994983	total: 1.88s	remaining: 280ms
87:	learn: 8.1003577	total: 1.9s	remaining: 259ms
88:	learn: 8.0501976	total: 1.92s	remaining: 238ms
89:	learn: 7.9718830	total: 1.95s	remaining: 216ms
90:	learn: 7.9114534	total: 1.97s	remaining: 195ms
91:	learn: 7.8319856	total: 1.99s	remaining: 173ms
92:	learn: 7.7731246	total: 2.01s	remaining: 151ms
93:	learn: 7.7165850	total: 2.03s	remaining: 130ms
94:	learn: 7.6448498	total: 2.05s	remaining: 108ms
95:	learn: 7.5709919	total: 2.08s	remaining: 86.7ms
96:	learn: 7.5184082	total: 2.1s	remaining: 65ms
97:	learn: 7.4786866	total: 2.12s	remaining: 43.3ms
98:	learn: 7.4301201	total: 2.14s	remaining: 21.6ms
99:	learn: 7.3416932	total: 2.16s	remaining: 0us
0:	learn: 42.6391731	total: 21ms	remaining: 2.08s
1:	learn: 41.2755994	total: 39.8ms	remaining: 1.95s
2:	learn: 40.1418308	total: 66.4ms	remaining: 2.15s
3:	learn: 38.9707156	total: 91.1ms	remaining: 2.19s
4:	learn: 37.8723622	total: 113ms	remaining: 2.16s
5:	learn: 36.6981834	total: 135ms	remaining: 2.12s
6:	learn: 35.6210108	total: 157ms	remaining: 2.08s
7:	learn: 34.5154078	total: 179ms	remaining: 2.06s
8:	learn: 33.4581011	total: 200ms	remaining: 2.02s
9:	learn: 32.5872455	total: 219ms	remaining: 1.97s
10:	learn: 31.6311510	total: 238ms	remaining: 1.92s
11:	learn: 30.8222401	total: 257ms	remaining: 1.89s
12:	learn: 29.9305192	total: 278ms	remaining: 1.86s
13:	learn: 29.0742133	total: 303ms	remaining: 1.86s
14:	learn: 28.3687544	total: 323ms	remaining: 1.83s
15:	learn: 27.5730558	total: 341ms	remaining: 1.79s
16:	learn: 26.9376082	total: 360ms	remaining: 1.76s
17:	learn: 26.2254949	total: 378ms	remaining: 1.72s
18:	learn: 25.5974939	total: 397ms	remaining: 1.69s
19:	learn: 25.0097187	total: 415ms	remaining: 1.66s
20:	learn: 24.3722243	total: 433ms	remaining: 1.63s
21:	learn: 23.8249140	total: 453ms	remaining: 1.6s
22:	learn: 23.3953969	total: 475ms	remaining: 1.59s
23:	learn: 22.8726238	total: 498ms	remaining: 1.58s
24:	learn: 22.3407723	total: 528ms	remaining: 1.58s
25:	learn: 21.8360330	total: 550ms	remaining: 1.56s
26:	learn: 21.4050665	total: 553ms	remaining: 1.49s
27:	learn: 20.9389245	total: 574ms	remaining: 1.48s
28:	learn: 20.5166767	total: 596ms	remaining: 1.46s
29:	learn: 20.1190641	total: 618ms	remaining: 1.44s
30:	learn: 19.7189491	total: 637ms	remaining: 1.42s
31:	learn: 19.3748181	total: 655ms	remaining: 1.39s
32:	learn: 19.0116312	total: 674ms	remaining: 1.37s
33:	learn: 18.6982407	total: 696ms	remaining: 1.35s
34:	learn: 18.3109965	total: 718ms	remaining: 1.33s
35:	learn: 17.9620798	total: 743ms	remaining: 1.32s
36:	learn: 17.6396740	total: 762ms	remaining: 1.3s
37:	learn: 17.3596962	total: 782ms	remaining: 1.28s
38:	learn: 17.0107107	total: 803ms	remaining: 1.25s
39:	learn: 16.7000770	total: 822ms	remaining: 1.23s
40:	learn: 16.4406609	total: 834ms	remaining: 1.2s
41:	learn: 16.2482533	total: 854ms	remaining: 1.18s
42:	learn: 16.0039366	total: 872ms	remaining: 1.16s
43:	learn: 15.7538572	total: 891ms	remaining: 1.13s
44:	learn: 15.5095380	total: 913ms	remaining: 1.11s
45:	learn: 15.2678319	total: 935ms	remaining: 1.1s
46:	learn: 15.0494495	total: 966ms	remaining: 1.09s
47:	learn: 14.8347400	total: 989ms	remaining: 1.07s
48:	learn: 14.6035398	total: 1.01s	remaining: 1.05s
49:	learn: 14.3913639	total: 1.04s	remaining: 1.04s
50:	learn: 14.1928022	total: 1.06s	remaining: 1.02s
51:	learn: 13.9985580	total: 1.08s	remaining: 996ms
52:	learn: 13.8322220	total: 1.1s	remaining: 976ms
53:	learn: 13.6455937	total: 1.12s	remaining: 956ms
54:	learn: 13.4402019	total: 1.15s	remaining: 937ms
55:	learn: 13.2899163	total: 1.18s	remaining: 926ms
56:	learn: 13.1694614	total: 1.2s	remaining: 906ms
57:	learn: 13.0722892	total: 1.22s	remaining: 886ms
58:	learn: 12.9065251	total: 1.25s	remaining: 866ms
59:	learn: 12.6992885	total: 1.27s	remaining: 845ms
60:	learn: 12.5384562	total: 1.29s	remaining: 824ms
61:	learn: 12.4105591	total: 1.31s	remaining: 802ms
62:	learn: 12.2952504	total: 1.33s	remaining: 781ms
63:	learn: 12.1427365	total: 1.35s	remaining: 761ms
64:	learn: 11.9954361	total: 1.38s	remaining: 742ms
65:	learn: 11.8161234	total: 1.41s	remaining: 725ms
66:	learn: 11.6849978	total: 1.43s	remaining: 705ms
67:	learn: 11.5405300	total: 1.45s	remaining: 684ms
68:	learn: 11.3806762	total: 1.48s	remaining: 663ms
69:	learn: 11.2746848	total: 1.5s	remaining: 643ms
70:	learn: 11.1518256	total: 1.52s	remaining: 621ms
71:	learn: 11.0730779	total: 1.54s	remaining: 600ms
72:	learn: 10.9736725	total: 1.56s	remaining: 579ms
73:	learn: 10.8430563	total: 1.59s	remaining: 558ms
74:	learn: 10.7142220	total: 1.62s	remaining: 540ms
75:	learn: 10.6141640	total: 1.64s	remaining: 518ms
76:	learn: 10.5264853	total: 1.66s	remaining: 497ms
77:	learn: 10.3929390	total: 1.68s	remaining: 475ms
78:	learn: 10.3163176	total: 1.7s	remaining: 453ms
79:	learn: 10.2171240	total: 1.72s	remaining: 431ms
80:	learn: 10.1381738	total: 1.74s	remaining: 409ms
81:	learn: 10.0402437	total: 1.76s	remaining: 387ms
82:	learn: 9.9223565	total: 1.79s	remaining: 366ms
83:	learn: 9.8184057	total: 1.81s	remaining: 344ms
84:	learn: 9.7221978	total: 1.84s	remaining: 324ms
85:	learn: 9.6417031	total: 1.86s	remaining: 303ms
86:	learn: 9.5593969	total: 1.88s	remaining: 281ms
87:	learn: 9.4678992	total: 1.91s	remaining: 260ms
88:	learn: 9.3855757	total: 1.93s	remaining: 239ms
89:	learn: 9.2884031	total: 1.95s	remaining: 217ms
90:	learn: 9.2099382	total: 1.97s	remaining: 195ms
91:	learn: 9.1357061	total: 1.99s	remaining: 173ms
92:	learn: 9.0690328	total: 2.02s	remaining: 152ms
93:	learn: 8.9904694	total: 2.04s	remaining: 131ms
94:	learn: 8.9256893	total: 2.06s	remaining: 109ms
95:	learn: 8.8600084	total: 2.08s	remaining: 86.9ms
96:	learn: 8.8091154	total: 2.1s	remaining: 65.1ms
97:	learn: 8.7280528	total: 2.13s	remaining: 43.4ms
98:	learn: 8.6761440	total: 2.15s	remaining: 21.7ms
99:	learn: 8.6181192	total: 2.17s	remaining: 0us
0:	learn: 45.9988128	total: 20.7ms	remaining: 2.05s
1:	learn: 44.7653841	total: 52ms	remaining: 2.55s
2:	learn: 43.4693688	total: 73.7ms	remaining: 2.38s
3:	learn: 42.2495168	total: 95.7ms	remaining: 2.3s
4:	learn: 41.2273909	total: 117ms	remaining: 2.23s
5:	learn: 40.0623352	total: 136ms	remaining: 2.13s
6:	learn: 39.0139162	total: 159ms	remaining: 2.11s
7:	learn: 37.9905503	total: 177ms	remaining: 2.04s
8:	learn: 37.1460179	total: 196ms	remaining: 1.98s
9:	learn: 36.1321769	total: 214ms	remaining: 1.93s
10:	learn: 35.2434048	total: 234ms	remaining: 1.89s
11:	learn: 34.3919476	total: 255ms	remaining: 1.87s
12:	learn: 33.5464400	total: 275ms	remaining: 1.84s
13:	learn: 32.5752711	total: 302ms	remaining: 1.86s
14:	learn: 31.8573507	total: 323ms	remaining: 1.83s
15:	learn: 31.1481980	total: 342ms	remaining: 1.79s
16:	learn: 30.4578224	total: 361ms	remaining: 1.76s
17:	learn: 29.8404841	total: 381ms	remaining: 1.74s
18:	learn: 29.1314604	total: 400ms	remaining: 1.71s
19:	learn: 28.5024706	total: 420ms	remaining: 1.68s
20:	learn: 27.9368896	total: 442ms	remaining: 1.66s
21:	learn: 27.2136491	total: 463ms	remaining: 1.64s
22:	learn: 26.6230078	total: 485ms	remaining: 1.62s
23:	learn: 26.0604635	total: 511ms	remaining: 1.62s
24:	learn: 25.6309424	total: 536ms	remaining: 1.61s
25:	learn: 25.1761698	total: 558ms	remaining: 1.59s
26:	learn: 24.6368216	total: 580ms	remaining: 1.57s
27:	learn: 24.1028972	total: 603ms	remaining: 1.55s
28:	learn: 23.3990224	total: 624ms	remaining: 1.53s
29:	learn: 22.9088559	total: 647ms	remaining: 1.51s
30:	learn: 22.4793217	total: 666ms	remaining: 1.48s
31:	learn: 22.0592669	total: 688ms	remaining: 1.46s
32:	learn: 21.6715811	total: 709ms	remaining: 1.44s
33:	learn: 21.1907911	total: 738ms	remaining: 1.43s
34:	learn: 20.8045504	total: 760ms	remaining: 1.41s
35:	learn: 20.4670784	total: 782ms	remaining: 1.39s
36:	learn: 20.0165788	total: 804ms	remaining: 1.37s
37:	learn: 19.6859173	total: 824ms	remaining: 1.34s
38:	learn: 19.3641283	total: 843ms	remaining: 1.32s
39:	learn: 19.0291194	total: 863ms	remaining: 1.29s
40:	learn: 18.7204204	total: 882ms	remaining: 1.27s
41:	learn: 18.4000101	total: 901ms	remaining: 1.24s
42:	learn: 18.0910445	total: 922ms	remaining: 1.22s
43:	learn: 17.8354609	total: 947ms	remaining: 1.21s
44:	learn: 17.4982243	total: 975ms	remaining: 1.19s
45:	learn: 17.1895897	total: 996ms	remaining: 1.17s
46:	learn: 16.9440833	total: 1.02s	remaining: 1.15s
47:	learn: 16.6112102	total: 1.04s	remaining: 1.13s
48:	learn: 16.3320235	total: 1.06s	remaining: 1.1s
49:	learn: 16.0523610	total: 1.08s	remaining: 1.08s
50:	learn: 15.8256738	total: 1.1s	remaining: 1.06s
51:	learn: 15.5699393	total: 1.12s	remaining: 1.03s
52:	learn: 15.3531799	total: 1.14s	remaining: 1.01s
53:	learn: 15.1364230	total: 1.17s	remaining: 998ms
54:	learn: 15.0012063	total: 1.19s	remaining: 977ms
55:	learn: 14.7171740	total: 1.21s	remaining: 953ms
56:	learn: 14.5897576	total: 1.22s	remaining: 917ms
57:	learn: 14.3886878	total: 1.23s	remaining: 894ms
58:	learn: 14.1942115	total: 1.25s	remaining: 871ms
59:	learn: 14.0135398	total: 1.27s	remaining: 849ms
60:	learn: 13.8118263	total: 1.29s	remaining: 826ms
61:	learn: 13.6444047	total: 1.31s	remaining: 803ms
62:	learn: 13.4728078	total: 1.33s	remaining: 782ms
63:	learn: 13.3104934	total: 1.35s	remaining: 760ms
64:	learn: 13.1385144	total: 1.38s	remaining: 742ms
65:	learn: 13.0087777	total: 1.4s	remaining: 724ms
66:	learn: 12.8457835	total: 1.43s	remaining: 703ms
67:	learn: 12.6975263	total: 1.45s	remaining: 683ms
68:	learn: 12.5582839	total: 1.47s	remaining: 663ms
69:	learn: 12.4210776	total: 1.5s	remaining: 642ms
70:	learn: 12.2737286	total: 1.52s	remaining: 620ms
71:	learn: 12.1587075	total: 1.54s	remaining: 598ms
72:	learn: 12.0323022	total: 1.56s	remaining: 576ms
73:	learn: 11.8667900	total: 1.59s	remaining: 557ms
74:	learn: 11.6990385	total: 1.61s	remaining: 537ms
75:	learn: 11.5755058	total: 1.63s	remaining: 515ms
76:	learn: 11.4954152	total: 1.65s	remaining: 492ms
77:	learn: 11.3827464	total: 1.67s	remaining: 471ms
78:	learn: 11.2924968	total: 1.69s	remaining: 449ms
79:	learn: 11.1938217	total: 1.71s	remaining: 428ms
80:	learn: 11.0766477	total: 1.73s	remaining: 406ms
81:	learn: 10.9824487	total: 1.75s	remaining: 384ms
82:	learn: 10.8707168	total: 1.77s	remaining: 363ms
83:	learn: 10.7746205	total: 1.79s	remaining: 341ms
84:	learn: 10.6738461	total: 1.82s	remaining: 322ms
85:	learn: 10.5871227	total: 1.85s	remaining: 301ms
86:	learn: 10.4566607	total: 1.87s	remaining: 280ms
87:	learn: 10.3506633	total: 1.9s	remaining: 259ms
88:	learn: 10.2104644	total: 1.92s	remaining: 237ms
89:	learn: 10.0965839	total: 1.94s	remaining: 216ms
90:	learn: 9.9802927	total: 1.96s	remaining: 194ms
91:	learn: 9.9195276	total: 1.99s	remaining: 173ms
92:	learn: 9.8559698	total: 2.01s	remaining: 151ms
93:	learn: 9.7396780	total: 2.04s	remaining: 130ms
94:	learn: 9.6945725	total: 2.06s	remaining: 108ms
95:	learn: 9.5897565	total: 2.08s	remaining: 86.5ms
96:	learn: 9.5012011	total: 2.09s	remaining: 64.8ms
97:	learn: 9.4123715	total: 2.11s	remaining: 43.2ms
98:	learn: 9.3288366	total: 2.13s	remaining: 21.6ms
99:	learn: 9.2648715	total: 2.15s	remaining: 0us
0:	learn: 45.5336925	total: 26.5ms	remaining: 2.62s
1:	learn: 44.2714175	total: 54.4ms	remaining: 2.67s
2:	learn: 43.1477944	total: 77.2ms	remaining: 2.5s
3:	learn: 41.9891776	total: 99.2ms	remaining: 2.38s
4:	learn: 41.0638986	total: 122ms	remaining: 2.31s
5:	learn: 39.9800801	total: 143ms	remaining: 2.24s
6:	learn: 38.9048061	total: 165ms	remaining: 2.19s
7:	learn: 38.0749429	total: 187ms	remaining: 2.15s
8:	learn: 37.3966644	total: 208ms	remaining: 2.1s
9:	learn: 36.4671331	total: 229ms	remaining: 2.06s
10:	learn: 35.6649217	total: 250ms	remaining: 2.02s
11:	learn: 34.8793657	total: 272ms	remaining: 2s
12:	learn: 34.0737401	total: 304ms	remaining: 2.04s
13:	learn: 33.2560999	total: 327ms	remaining: 2.01s
14:	learn: 32.4184623	total: 348ms	remaining: 1.97s
15:	learn: 31.6803206	total: 369ms	remaining: 1.93s
16:	learn: 30.9276344	total: 390ms	remaining: 1.9s
17:	learn: 30.3590041	total: 409ms	remaining: 1.86s
18:	learn: 29.7789888	total: 428ms	remaining: 1.83s
19:	learn: 29.1098261	total: 448ms	remaining: 1.79s
20:	learn: 28.4824889	total: 469ms	remaining: 1.76s
21:	learn: 27.9675744	total: 495ms	remaining: 1.75s
22:	learn: 27.4793215	total: 523ms	remaining: 1.75s
23:	learn: 26.8920542	total: 544ms	remaining: 1.72s
24:	learn: 26.2736657	total: 566ms	remaining: 1.7s
25:	learn: 25.6908003	total: 588ms	remaining: 1.67s
26:	learn: 25.1288844	total: 611ms	remaining: 1.65s
27:	learn: 24.6933320	total: 631ms	remaining: 1.62s
28:	learn: 24.1372567	total: 651ms	remaining: 1.59s
29:	learn: 23.7103515	total: 671ms	remaining: 1.56s
30:	learn: 23.1647499	total: 692ms	remaining: 1.54s
31:	learn: 22.7009216	total: 717ms	remaining: 1.52s
32:	learn: 22.2792229	total: 740ms	remaining: 1.5s
33:	learn: 21.8004244	total: 759ms	remaining: 1.47s
34:	learn: 21.3578361	total: 778ms	remaining: 1.45s
35:	learn: 21.0262832	total: 798ms	remaining: 1.42s
36:	learn: 20.5787502	total: 815ms	remaining: 1.39s
37:	learn: 20.3083055	total: 836ms	remaining: 1.36s
38:	learn: 19.9902529	total: 854ms	remaining: 1.33s
39:	learn: 19.6059571	total: 873ms	remaining: 1.31s
40:	learn: 19.3890959	total: 893ms	remaining: 1.28s
41:	learn: 19.0549255	total: 920ms	remaining: 1.27s
42:	learn: 18.7283215	total: 945ms	remaining: 1.25s
43:	learn: 18.4448725	total: 967ms	remaining: 1.23s
44:	learn: 18.1578001	total: 988ms	remaining: 1.21s
45:	learn: 17.8777474	total: 1.01s	remaining: 1.18s
46:	learn: 17.6428221	total: 1.03s	remaining: 1.16s
47:	learn: 17.3887752	total: 1.05s	remaining: 1.14s
48:	learn: 17.1475761	total: 1.07s	remaining: 1.11s
49:	learn: 16.9064363	total: 1.08s	remaining: 1.08s
50:	learn: 16.6414681	total: 1.11s	remaining: 1.06s
51:	learn: 16.4549974	total: 1.13s	remaining: 1.04s
52:	learn: 16.2617558	total: 1.15s	remaining: 1.02s
53:	learn: 16.0258241	total: 1.17s	remaining: 999ms
54:	learn: 15.7694686	total: 1.19s	remaining: 974ms
55:	learn: 15.5449602	total: 1.21s	remaining: 950ms
56:	learn: 15.3515330	total: 1.23s	remaining: 925ms
57:	learn: 15.1120403	total: 1.25s	remaining: 902ms
58:	learn: 14.9131368	total: 1.26s	remaining: 879ms
59:	learn: 14.8021921	total: 1.28s	remaining: 855ms
60:	learn: 14.6564259	total: 1.3s	remaining: 835ms
61:	learn: 14.5253260	total: 1.33s	remaining: 817ms
62:	learn: 14.3975427	total: 1.35s	remaining: 796ms
63:	learn: 14.3060204	total: 1.38s	remaining: 774ms
64:	learn: 14.1283681	total: 1.4s	remaining: 753ms
65:	learn: 14.0159063	total: 1.42s	remaining: 731ms
66:	learn: 13.8712541	total: 1.44s	remaining: 710ms
67:	learn: 13.7852998	total: 1.46s	remaining: 687ms
68:	learn: 13.6790164	total: 1.48s	remaining: 664ms
69:	learn: 13.5253745	total: 1.5s	remaining: 641ms
70:	learn: 13.3959663	total: 1.52s	remaining: 620ms
71:	learn: 13.2062955	total: 1.54s	remaining: 598ms
72:	learn: 13.0788709	total: 1.56s	remaining: 579ms
73:	learn: 12.9513184	total: 1.58s	remaining: 557ms
74:	learn: 12.8198556	total: 1.6s	remaining: 535ms
75:	learn: 12.7137549	total: 1.62s	remaining: 513ms
76:	learn: 12.6243477	total: 1.64s	remaining: 491ms
77:	learn: 12.5241564	total: 1.66s	remaining: 469ms
78:	learn: 12.4445782	total: 1.68s	remaining: 446ms
79:	learn: 12.3816501	total: 1.7s	remaining: 424ms
80:	learn: 12.2846914	total: 1.72s	remaining: 403ms
81:	learn: 12.1419498	total: 1.74s	remaining: 382ms
82:	learn: 12.0846494	total: 1.76s	remaining: 360ms
83:	learn: 11.9851484	total: 1.79s	remaining: 341ms
84:	learn: 11.8905738	total: 1.81s	remaining: 320ms
85:	learn: 11.7718790	total: 1.83s	remaining: 298ms
86:	learn: 11.6854413	total: 1.85s	remaining: 277ms
87:	learn: 11.6206110	total: 1.87s	remaining: 256ms
88:	learn: 11.5376098	total: 1.89s	remaining: 234ms
89:	learn: 11.4235068	total: 1.91s	remaining: 212ms
90:	learn: 11.3477955	total: 1.93s	remaining: 191ms
91:	learn: 11.2663772	total: 1.95s	remaining: 170ms
92:	learn: 11.1916556	total: 1.97s	remaining: 148ms
93:	learn: 11.0921504	total: 1.99s	remaining: 127ms
94:	learn: 10.9622375	total: 2.02s	remaining: 106ms
95:	learn: 10.8882085	total: 2.04s	remaining: 84.9ms
96:	learn: 10.8086218	total: 2.06s	remaining: 63.6ms
97:	learn: 10.7552220	total: 2.07s	remaining: 42.3ms
98:	learn: 10.6929666	total: 2.09s	remaining: 21.1ms
99:	learn: 10.6200033	total: 2.11s	remaining: 0us
0:	learn: 46.3366259	total: 20.1ms	remaining: 1.99s
1:	learn: 45.2205278	total: 51.1ms	remaining: 2.5s
2:	learn: 43.9887404	total: 76.2ms	remaining: 2.46s
3:	learn: 42.8240666	total: 98.8ms	remaining: 2.37s
4:	learn: 41.6086617	total: 122ms	remaining: 2.31s
5:	learn: 40.5606446	total: 146ms	remaining: 2.28s
6:	learn: 39.6241326	total: 166ms	remaining: 2.21s
7:	learn: 39.0016852	total: 186ms	remaining: 2.14s
8:	learn: 37.8501670	total: 208ms	remaining: 2.1s
9:	learn: 37.0215474	total: 229ms	remaining: 2.06s
10:	learn: 36.0215020	total: 250ms	remaining: 2.02s
11:	learn: 35.2421331	total: 273ms	remaining: 2s
12:	learn: 34.5416837	total: 303ms	remaining: 2.02s
13:	learn: 33.7787649	total: 324ms	remaining: 1.99s
14:	learn: 32.9860883	total: 343ms	remaining: 1.94s
15:	learn: 32.2123752	total: 364ms	remaining: 1.91s
16:	learn: 31.3564648	total: 384ms	remaining: 1.88s
17:	learn: 30.7859979	total: 404ms	remaining: 1.84s
18:	learn: 30.1443515	total: 424ms	remaining: 1.81s
19:	learn: 29.4880724	total: 446ms	remaining: 1.78s
20:	learn: 28.9635727	total: 468ms	remaining: 1.76s
21:	learn: 28.4853342	total: 488ms	remaining: 1.73s
22:	learn: 27.9796348	total: 519ms	remaining: 1.74s
23:	learn: 27.4360487	total: 544ms	remaining: 1.72s
24:	learn: 26.8685214	total: 568ms	remaining: 1.7s
25:	learn: 26.1769206	total: 591ms	remaining: 1.68s
26:	learn: 25.7146048	total: 611ms	remaining: 1.65s
27:	learn: 25.2614850	total: 633ms	remaining: 1.63s
28:	learn: 24.6626472	total: 653ms	remaining: 1.6s
29:	learn: 24.2501259	total: 674ms	remaining: 1.57s
30:	learn: 23.7892661	total: 694ms	remaining: 1.54s
31:	learn: 23.2729078	total: 715ms	remaining: 1.52s
32:	learn: 22.8969731	total: 743ms	remaining: 1.51s
33:	learn: 22.4567570	total: 765ms	remaining: 1.48s
34:	learn: 22.0569858	total: 784ms	remaining: 1.46s
35:	learn: 21.7317775	total: 803ms	remaining: 1.43s
36:	learn: 21.3890971	total: 823ms	remaining: 1.4s
37:	learn: 21.0664504	total: 844ms	remaining: 1.38s
38:	learn: 20.7379659	total: 863ms	remaining: 1.35s
39:	learn: 20.4423699	total: 881ms	remaining: 1.32s
40:	learn: 20.1526720	total: 901ms	remaining: 1.3s
41:	learn: 19.8706547	total: 924ms	remaining: 1.28s
42:	learn: 19.5139134	total: 947ms	remaining: 1.25s
43:	learn: 19.3495951	total: 976ms	remaining: 1.24s
44:	learn: 19.1314757	total: 998ms	remaining: 1.22s
45:	learn: 18.7971159	total: 1.02s	remaining: 1.2s
46:	learn: 18.5447051	total: 1.04s	remaining: 1.18s
47:	learn: 18.2328785	total: 1.06s	remaining: 1.15s
48:	learn: 17.9622938	total: 1.08s	remaining: 1.13s
49:	learn: 17.7264205	total: 1.1s	remaining: 1.1s
50:	learn: 17.4530592	total: 1.12s	remaining: 1.08s
51:	learn: 17.2236644	total: 1.15s	remaining: 1.06s
52:	learn: 17.0122792	total: 1.17s	remaining: 1.04s
53:	learn: 16.7599064	total: 1.2s	remaining: 1.02s
54:	learn: 16.5146699	total: 1.22s	remaining: 995ms
55:	learn: 16.2531414	total: 1.24s	remaining: 971ms
56:	learn: 16.0997208	total: 1.26s	remaining: 949ms
57:	learn: 15.8452412	total: 1.28s	remaining: 925ms
58:	learn: 15.6294900	total: 1.3s	remaining: 901ms
59:	learn: 15.4564548	total: 1.32s	remaining: 878ms
60:	learn: 15.2978533	total: 1.34s	remaining: 855ms
61:	learn: 15.0976912	total: 1.36s	remaining: 833ms
62:	learn: 14.9094446	total: 1.39s	remaining: 816ms
63:	learn: 14.7415094	total: 1.41s	remaining: 795ms
64:	learn: 14.6123806	total: 1.44s	remaining: 774ms
65:	learn: 14.4744916	total: 1.46s	remaining: 752ms
66:	learn: 14.3212717	total: 1.48s	remaining: 731ms
67:	learn: 14.1768047	total: 1.5s	remaining: 708ms
68:	learn: 14.0387344	total: 1.52s	remaining: 685ms
69:	learn: 13.8987579	total: 1.54s	remaining: 662ms
70:	learn: 13.7825740	total: 1.57s	remaining: 640ms
71:	learn: 13.6818548	total: 1.59s	remaining: 619ms
72:	learn: 13.5356993	total: 1.61s	remaining: 597ms
73:	learn: 13.4408704	total: 1.63s	remaining: 574ms
74:	learn: 13.2992218	total: 1.65s	remaining: 551ms
75:	learn: 13.1547092	total: 1.67s	remaining: 528ms
76:	learn: 13.0800189	total: 1.69s	remaining: 506ms
77:	learn: 12.9434711	total: 1.71s	remaining: 483ms
78:	learn: 12.8327325	total: 1.73s	remaining: 461ms
79:	learn: 12.7238946	total: 1.75s	remaining: 439ms
80:	learn: 12.6229528	total: 1.78s	remaining: 417ms
81:	learn: 12.5216078	total: 1.81s	remaining: 397ms
82:	learn: 12.4182254	total: 1.83s	remaining: 375ms
83:	learn: 12.3097978	total: 1.85s	remaining: 353ms
84:	learn: 12.1852056	total: 1.88s	remaining: 331ms
85:	learn: 12.0739627	total: 1.9s	remaining: 309ms
86:	learn: 11.9475583	total: 1.92s	remaining: 287ms
87:	learn: 11.8403806	total: 1.94s	remaining: 264ms
88:	learn: 11.7294124	total: 1.96s	remaining: 242ms
89:	learn: 11.6395689	total: 1.98s	remaining: 220ms
90:	learn: 11.5510643	total: 2.01s	remaining: 198ms
91:	learn: 11.4455301	total: 2.03s	remaining: 177ms
92:	learn: 11.3368661	total: 2.05s	remaining: 154ms
93:	learn: 11.2270796	total: 2.07s	remaining: 132ms
94:	learn: 11.1168414	total: 2.09s	remaining: 110ms
95:	learn: 11.0310985	total: 2.1s	remaining: 87.7ms
96:	learn: 10.9735185	total: 2.12s	remaining: 65.7ms
97:	learn: 10.8575874	total: 2.14s	remaining: 43.7ms
98:	learn: 10.7816173	total: 2.16s	remaining: 21.8ms
99:	learn: 10.7111737	total: 2.18s	remaining: 0us
avg_Mae_val de la población en la generación 7: 18.276540912738177 con std media = 9.167192865675133
Mae_val del Mejor modelo en la generación 7: 17.7789 con std = 9.1097
0:	learn: 27.5331316	total: 22.3ms	remaining: 4.45s
1:	learn: 27.0928878	total: 44.7ms	remaining: 4.42s
2:	learn: 26.6215397	total: 68.3ms	remaining: 4.49s
3:	learn: 26.1320797	total: 90.2ms	remaining: 4.42s
4:	learn: 25.5708114	total: 112ms	remaining: 4.37s
5:	learn: 25.1569609	total: 133ms	remaining: 4.3s
6:	learn: 24.6776916	total: 156ms	remaining: 4.3s
7:	learn: 24.3131466	total: 179ms	remaining: 4.3s
8:	learn: 23.9291269	total: 209ms	remaining: 4.43s
9:	learn: 23.5838366	total: 230ms	remaining: 4.37s
10:	learn: 23.2314577	total: 251ms	remaining: 4.31s
11:	learn: 22.8869949	total: 271ms	remaining: 4.25s
12:	learn: 22.4245937	total: 291ms	remaining: 4.19s
13:	learn: 22.0206534	total: 312ms	remaining: 4.15s
14:	learn: 21.7022606	total: 332ms	remaining: 4.1s
15:	learn: 21.3968672	total: 353ms	remaining: 4.06s
16:	learn: 20.9882573	total: 375ms	remaining: 4.04s
17:	learn: 20.6789624	total: 399ms	remaining: 4.03s
18:	learn: 20.3827949	total: 430ms	remaining: 4.1s
19:	learn: 20.1544166	total: 454ms	remaining: 4.08s
20:	learn: 19.9121457	total: 476ms	remaining: 4.06s
21:	learn: 19.6621421	total: 498ms	remaining: 4.03s
22:	learn: 19.3501569	total: 520ms	remaining: 4s
23:	learn: 19.0889327	total: 541ms	remaining: 3.97s
24:	learn: 18.8689195	total: 561ms	remaining: 3.93s
25:	learn: 18.5964445	total: 583ms	remaining: 3.9s
26:	learn: 18.3364834	total: 605ms	remaining: 3.88s
27:	learn: 18.1076409	total: 635ms	remaining: 3.9s
28:	learn: 17.8878261	total: 657ms	remaining: 3.87s
29:	learn: 17.6774627	total: 678ms	remaining: 3.84s
30:	learn: 17.4836295	total: 699ms	remaining: 3.81s
31:	learn: 17.2733761	total: 718ms	remaining: 3.77s
32:	learn: 17.0468867	total: 738ms	remaining: 3.73s
33:	learn: 16.8108325	total: 758ms	remaining: 3.7s
34:	learn: 16.5415211	total: 780ms	remaining: 3.68s
35:	learn: 16.3714184	total: 801ms	remaining: 3.65s
36:	learn: 16.1608788	total: 829ms	remaining: 3.65s
37:	learn: 15.9984328	total: 853ms	remaining: 3.64s
38:	learn: 15.8335060	total: 877ms	remaining: 3.62s
39:	learn: 15.6602202	total: 900ms	remaining: 3.6s
40:	learn: 15.4954581	total: 923ms	remaining: 3.58s
41:	learn: 15.3620882	total: 946ms	remaining: 3.56s
42:	learn: 15.2140166	total: 969ms	remaining: 3.54s
43:	learn: 15.0870086	total: 990ms	remaining: 3.51s
44:	learn: 14.9147154	total: 1.01s	remaining: 3.48s
45:	learn: 14.7609171	total: 1.03s	remaining: 3.45s
46:	learn: 14.5901052	total: 1.05s	remaining: 3.44s
47:	learn: 14.4273259	total: 1.08s	remaining: 3.42s
48:	learn: 14.2798610	total: 1.1s	remaining: 3.4s
49:	learn: 14.1021139	total: 1.12s	remaining: 3.37s
50:	learn: 13.9902689	total: 1.14s	remaining: 3.35s
51:	learn: 13.8779536	total: 1.17s	remaining: 3.32s
52:	learn: 13.7445550	total: 1.19s	remaining: 3.29s
53:	learn: 13.6337249	total: 1.21s	remaining: 3.27s
54:	learn: 13.5400472	total: 1.23s	remaining: 3.24s
55:	learn: 13.3803597	total: 1.25s	remaining: 3.22s
56:	learn: 13.2902125	total: 1.27s	remaining: 3.19s
57:	learn: 13.1578553	total: 1.3s	remaining: 3.18s
58:	learn: 13.0362047	total: 1.32s	remaining: 3.16s
59:	learn: 12.9394034	total: 1.35s	remaining: 3.14s
60:	learn: 12.8348950	total: 1.37s	remaining: 3.12s
61:	learn: 12.7266532	total: 1.39s	remaining: 3.1s
62:	learn: 12.5633581	total: 1.42s	remaining: 3.09s
63:	learn: 12.4424580	total: 1.44s	remaining: 3.07s
64:	learn: 12.3207502	total: 1.47s	remaining: 3.05s
65:	learn: 12.1991637	total: 1.5s	remaining: 3.04s
66:	learn: 12.0994803	total: 1.52s	remaining: 3.03s
67:	learn: 11.9730740	total: 1.55s	remaining: 3s
68:	learn: 11.8611564	total: 1.57s	remaining: 2.99s
69:	learn: 11.7682666	total: 1.6s	remaining: 2.96s
70:	learn: 11.6650875	total: 1.62s	remaining: 2.94s
71:	learn: 11.5916610	total: 1.64s	remaining: 2.92s
72:	learn: 11.4778837	total: 1.67s	remaining: 2.91s
73:	learn: 11.3753187	total: 1.7s	remaining: 2.89s
74:	learn: 11.2807363	total: 1.73s	remaining: 2.89s
75:	learn: 11.1922433	total: 1.76s	remaining: 2.87s
76:	learn: 11.1089234	total: 1.78s	remaining: 2.85s
77:	learn: 11.0238343	total: 1.81s	remaining: 2.83s
78:	learn: 10.9409200	total: 1.83s	remaining: 2.81s
79:	learn: 10.8632563	total: 1.85s	remaining: 2.78s
80:	learn: 10.7619610	total: 1.88s	remaining: 2.76s
81:	learn: 10.6971597	total: 1.9s	remaining: 2.73s
82:	learn: 10.6251891	total: 1.93s	remaining: 2.72s
83:	learn: 10.5326326	total: 1.96s	remaining: 2.71s
84:	learn: 10.4377665	total: 1.99s	remaining: 2.69s
85:	learn: 10.3817931	total: 2.01s	remaining: 2.67s
86:	learn: 10.2988157	total: 2.04s	remaining: 2.64s
87:	learn: 10.2192016	total: 2.06s	remaining: 2.62s
88:	learn: 10.1494494	total: 2.08s	remaining: 2.6s
89:	learn: 10.0741735	total: 2.1s	remaining: 2.57s
90:	learn: 10.0144581	total: 2.13s	remaining: 2.55s
91:	learn: 9.9524648	total: 2.15s	remaining: 2.53s
92:	learn: 9.8774329	total: 2.19s	remaining: 2.52s
93:	learn: 9.8185407	total: 2.22s	remaining: 2.5s
94:	learn: 9.7522036	total: 2.25s	remaining: 2.48s
95:	learn: 9.6854283	total: 2.27s	remaining: 2.46s
96:	learn: 9.6130737	total: 2.3s	remaining: 2.44s
97:	learn: 9.5584787	total: 2.32s	remaining: 2.42s
98:	learn: 9.5074757	total: 2.34s	remaining: 2.39s
99:	learn: 9.4107769	total: 2.37s	remaining: 2.37s
100:	learn: 9.3472904	total: 2.4s	remaining: 2.35s
101:	learn: 9.2953560	total: 2.42s	remaining: 2.33s
102:	learn: 9.2320206	total: 2.45s	remaining: 2.31s
103:	learn: 9.1805125	total: 2.48s	remaining: 2.29s
104:	learn: 9.1371555	total: 2.5s	remaining: 2.26s
105:	learn: 9.0800435	total: 2.52s	remaining: 2.24s
106:	learn: 9.0192214	total: 2.55s	remaining: 2.21s
107:	learn: 8.9764934	total: 2.57s	remaining: 2.19s
108:	learn: 8.9098592	total: 2.59s	remaining: 2.17s
109:	learn: 8.8690606	total: 2.62s	remaining: 2.15s
110:	learn: 8.8229549	total: 2.65s	remaining: 2.13s
111:	learn: 8.7610408	total: 2.68s	remaining: 2.11s
112:	learn: 8.7166823	total: 2.71s	remaining: 2.08s
113:	learn: 8.6713720	total: 2.73s	remaining: 2.06s
114:	learn: 8.6360764	total: 2.76s	remaining: 2.04s
115:	learn: 8.5635367	total: 2.78s	remaining: 2.02s
116:	learn: 8.5117245	total: 2.81s	remaining: 2s
117:	learn: 8.4777769	total: 2.84s	remaining: 1.97s
118:	learn: 8.4368327	total: 2.87s	remaining: 1.95s
119:	learn: 8.3938010	total: 2.89s	remaining: 1.93s
120:	learn: 8.3387423	total: 2.91s	remaining: 1.9s
121:	learn: 8.2975768	total: 2.94s	remaining: 1.88s
122:	learn: 8.2537514	total: 2.97s	remaining: 1.86s
123:	learn: 8.2022446	total: 2.99s	remaining: 1.83s
124:	learn: 8.1566126	total: 3.02s	remaining: 1.81s
125:	learn: 8.1165461	total: 3.05s	remaining: 1.79s
126:	learn: 8.0626587	total: 3.08s	remaining: 1.77s
127:	learn: 8.0123296	total: 3.1s	remaining: 1.75s
128:	learn: 7.9567593	total: 3.13s	remaining: 1.72s
129:	learn: 7.9195560	total: 3.15s	remaining: 1.7s
130:	learn: 7.8654879	total: 3.18s	remaining: 1.68s
131:	learn: 7.8339633	total: 3.22s	remaining: 1.66s
132:	learn: 7.7748115	total: 3.24s	remaining: 1.63s
133:	learn: 7.7230977	total: 3.27s	remaining: 1.61s
134:	learn: 7.6841448	total: 3.29s	remaining: 1.58s
135:	learn: 7.6303040	total: 3.31s	remaining: 1.56s
136:	learn: 7.5934346	total: 3.34s	remaining: 1.53s
137:	learn: 7.5476194	total: 3.36s	remaining: 1.51s
138:	learn: 7.5066675	total: 3.38s	remaining: 1.49s
139:	learn: 7.4672530	total: 3.41s	remaining: 1.46s
140:	learn: 7.4124282	total: 3.43s	remaining: 1.44s
141:	learn: 7.3765845	total: 3.48s	remaining: 1.42s
142:	learn: 7.3441356	total: 3.5s	remaining: 1.4s
143:	learn: 7.2965220	total: 3.53s	remaining: 1.37s
144:	learn: 7.2479952	total: 3.55s	remaining: 1.35s
145:	learn: 7.2032997	total: 3.58s	remaining: 1.32s
146:	learn: 7.1452222	total: 3.6s	remaining: 1.3s
147:	learn: 7.1038627	total: 3.63s	remaining: 1.27s
148:	learn: 7.0606620	total: 3.65s	remaining: 1.25s
149:	learn: 7.0177792	total: 3.68s	remaining: 1.23s
150:	learn: 6.9863396	total: 3.71s	remaining: 1.2s
151:	learn: 6.9625546	total: 3.74s	remaining: 1.18s
152:	learn: 6.9173267	total: 3.76s	remaining: 1.16s
153:	learn: 6.8616646	total: 3.79s	remaining: 1.13s
154:	learn: 6.8198808	total: 3.81s	remaining: 1.11s
155:	learn: 6.7685255	total: 3.83s	remaining: 1.08s
156:	learn: 6.7264771	total: 3.86s	remaining: 1.06s
157:	learn: 6.6840211	total: 3.89s	remaining: 1.03s
158:	learn: 6.6460703	total: 3.92s	remaining: 1.01s
159:	learn: 6.6016679	total: 3.94s	remaining: 986ms
160:	learn: 6.5588513	total: 3.98s	remaining: 964ms
161:	learn: 6.5201763	total: 4s	remaining: 939ms
162:	learn: 6.4662615	total: 4.03s	remaining: 914ms
163:	learn: 6.4307740	total: 4.05s	remaining: 889ms
164:	learn: 6.3863673	total: 4.08s	remaining: 865ms
165:	learn: 6.3565295	total: 4.11s	remaining: 842ms
166:	learn: 6.3137723	total: 4.13s	remaining: 817ms
167:	learn: 6.2637526	total: 4.16s	remaining: 792ms
168:	learn: 6.2306078	total: 4.18s	remaining: 767ms
169:	learn: 6.2005633	total: 4.21s	remaining: 742ms
170:	learn: 6.1835964	total: 4.24s	remaining: 719ms
171:	learn: 6.1478605	total: 4.26s	remaining: 694ms
172:	learn: 6.1287055	total: 4.29s	remaining: 669ms
173:	learn: 6.0970495	total: 4.32s	remaining: 646ms
174:	learn: 6.0494366	total: 4.35s	remaining: 621ms
175:	learn: 6.0281944	total: 4.37s	remaining: 596ms
176:	learn: 5.9996986	total: 4.39s	remaining: 571ms
177:	learn: 5.9870874	total: 4.42s	remaining: 546ms
178:	learn: 5.9794984	total: 4.43s	remaining: 520ms
179:	learn: 5.9554215	total: 4.46s	remaining: 495ms
180:	learn: 5.9240425	total: 4.49s	remaining: 471ms
181:	learn: 5.9088786	total: 4.51s	remaining: 446ms
182:	learn: 5.8655685	total: 4.55s	remaining: 422ms
183:	learn: 5.8308179	total: 4.57s	remaining: 398ms
184:	learn: 5.8097693	total: 4.59s	remaining: 373ms
185:	learn: 5.7685656	total: 4.62s	remaining: 348ms
186:	learn: 5.7309229	total: 4.64s	remaining: 323ms
187:	learn: 5.7062842	total: 4.67s	remaining: 298ms
188:	learn: 5.6642957	total: 4.69s	remaining: 273ms
189:	learn: 5.6329794	total: 4.71s	remaining: 248ms
190:	learn: 5.5977511	total: 4.75s	remaining: 224ms
191:	learn: 5.5829279	total: 4.78s	remaining: 199ms
192:	learn: 5.5506312	total: 4.8s	remaining: 174ms
193:	learn: 5.5072384	total: 4.83s	remaining: 149ms
194:	learn: 5.4645221	total: 4.85s	remaining: 124ms
195:	learn: 5.4363976	total: 4.88s	remaining: 99.5ms
196:	learn: 5.4145292	total: 4.9s	remaining: 74.6ms
197:	learn: 5.3685721	total: 4.92s	remaining: 49.7ms
198:	learn: 5.3365890	total: 4.95s	remaining: 24.9ms
199:	learn: 5.3084220	total: 4.98s	remaining: 0us
0:	learn: 42.7887226	total: 21.1ms	remaining: 4.2s
1:	learn: 41.8440822	total: 33.1ms	remaining: 3.27s
2:	learn: 40.7630462	total: 52.7ms	remaining: 3.46s
3:	learn: 39.5297880	total: 75.7ms	remaining: 3.71s
4:	learn: 38.6077280	total: 96.7ms	remaining: 3.77s
5:	learn: 37.6971732	total: 121ms	remaining: 3.91s
6:	learn: 36.7463218	total: 146ms	remaining: 4.03s
7:	learn: 35.8007703	total: 175ms	remaining: 4.21s
8:	learn: 34.9731655	total: 199ms	remaining: 4.22s
9:	learn: 34.1812857	total: 223ms	remaining: 4.24s
10:	learn: 33.3509251	total: 245ms	remaining: 4.21s
11:	learn: 32.6184078	total: 268ms	remaining: 4.2s
12:	learn: 31.9918266	total: 292ms	remaining: 4.2s
13:	learn: 31.2244641	total: 313ms	remaining: 4.16s
14:	learn: 30.5895020	total: 336ms	remaining: 4.15s
15:	learn: 29.9318064	total: 359ms	remaining: 4.13s
16:	learn: 29.2267723	total: 390ms	remaining: 4.2s
17:	learn: 28.6196795	total: 412ms	remaining: 4.16s
18:	learn: 28.0756253	total: 434ms	remaining: 4.13s
19:	learn: 27.4447254	total: 454ms	remaining: 4.09s
20:	learn: 26.8501969	total: 476ms	remaining: 4.06s
21:	learn: 26.3047050	total: 497ms	remaining: 4.02s
22:	learn: 25.7794565	total: 518ms	remaining: 3.99s
23:	learn: 25.2658135	total: 520ms	remaining: 3.82s
24:	learn: 24.7272223	total: 543ms	remaining: 3.8s
25:	learn: 24.3182112	total: 565ms	remaining: 3.78s
26:	learn: 23.9791831	total: 597ms	remaining: 3.83s
27:	learn: 23.6007465	total: 622ms	remaining: 3.82s
28:	learn: 23.2573075	total: 646ms	remaining: 3.81s
29:	learn: 22.9475656	total: 669ms	remaining: 3.79s
30:	learn: 22.5526305	total: 692ms	remaining: 3.77s
31:	learn: 22.1198330	total: 716ms	remaining: 3.76s
32:	learn: 21.7489085	total: 737ms	remaining: 3.73s
33:	learn: 21.3655565	total: 759ms	remaining: 3.71s
34:	learn: 21.0252381	total: 781ms	remaining: 3.68s
35:	learn: 20.7488731	total: 811ms	remaining: 3.69s
36:	learn: 20.5339646	total: 835ms	remaining: 3.68s
37:	learn: 20.2145684	total: 857ms	remaining: 3.65s
38:	learn: 19.8876509	total: 880ms	remaining: 3.63s
39:	learn: 19.6692385	total: 903ms	remaining: 3.61s
40:	learn: 19.4286270	total: 926ms	remaining: 3.59s
41:	learn: 19.1769071	total: 948ms	remaining: 3.57s
42:	learn: 18.9575237	total: 971ms	remaining: 3.55s
43:	learn: 18.7342247	total: 994ms	remaining: 3.52s
44:	learn: 18.4849146	total: 1.02s	remaining: 3.53s
45:	learn: 18.2624270	total: 1.05s	remaining: 3.52s
46:	learn: 18.0695318	total: 1.07s	remaining: 3.5s
47:	learn: 17.8828655	total: 1.1s	remaining: 3.48s
48:	learn: 17.6634936	total: 1.12s	remaining: 3.46s
49:	learn: 17.4906819	total: 1.15s	remaining: 3.44s
50:	learn: 17.3041918	total: 1.17s	remaining: 3.41s
51:	learn: 17.0823762	total: 1.19s	remaining: 3.39s
52:	learn: 16.8782440	total: 1.22s	remaining: 3.38s
53:	learn: 16.6195426	total: 1.24s	remaining: 3.36s
54:	learn: 16.4155330	total: 1.26s	remaining: 3.33s
55:	learn: 16.2476574	total: 1.29s	remaining: 3.31s
56:	learn: 16.0258529	total: 1.31s	remaining: 3.29s
57:	learn: 15.8620283	total: 1.33s	remaining: 3.26s
58:	learn: 15.7108893	total: 1.35s	remaining: 3.23s
59:	learn: 15.5737080	total: 1.38s	remaining: 3.21s
60:	learn: 15.4123613	total: 1.4s	remaining: 3.19s
61:	learn: 15.2629578	total: 1.42s	remaining: 3.17s
62:	learn: 15.1097207	total: 1.45s	remaining: 3.16s
63:	learn: 14.9427151	total: 1.48s	remaining: 3.14s
64:	learn: 14.7889867	total: 1.5s	remaining: 3.12s
65:	learn: 14.6746715	total: 1.53s	remaining: 3.1s
66:	learn: 14.5205076	total: 1.55s	remaining: 3.08s
67:	learn: 14.3786093	total: 1.57s	remaining: 3.06s
68:	learn: 14.2324541	total: 1.59s	remaining: 3.03s
69:	learn: 14.0978554	total: 1.62s	remaining: 3s
70:	learn: 13.9424582	total: 1.65s	remaining: 2.99s
71:	learn: 13.8140169	total: 1.67s	remaining: 2.97s
72:	learn: 13.6759558	total: 1.69s	remaining: 2.94s
73:	learn: 13.5499120	total: 1.71s	remaining: 2.92s
74:	learn: 13.4276838	total: 1.74s	remaining: 2.89s
75:	learn: 13.3175244	total: 1.76s	remaining: 2.87s
76:	learn: 13.2179850	total: 1.78s	remaining: 2.84s
77:	learn: 13.1192866	total: 1.8s	remaining: 2.82s
78:	learn: 13.0156952	total: 1.82s	remaining: 2.79s
79:	learn: 12.8996211	total: 1.84s	remaining: 2.77s
80:	learn: 12.8036058	total: 1.87s	remaining: 2.75s
81:	learn: 12.7085774	total: 1.9s	remaining: 2.74s
82:	learn: 12.6225307	total: 1.93s	remaining: 2.71s
83:	learn: 12.4901564	total: 1.95s	remaining: 2.69s
84:	learn: 12.3766435	total: 1.97s	remaining: 2.67s
85:	learn: 12.2837693	total: 1.99s	remaining: 2.64s
86:	learn: 12.1808453	total: 2.02s	remaining: 2.62s
87:	learn: 12.1154320	total: 2.04s	remaining: 2.6s
88:	learn: 12.0324383	total: 2.07s	remaining: 2.58s
89:	learn: 11.9649236	total: 2.1s	remaining: 2.56s
90:	learn: 11.8702731	total: 2.12s	remaining: 2.54s
91:	learn: 11.7872282	total: 2.14s	remaining: 2.51s
92:	learn: 11.6802080	total: 2.16s	remaining: 2.48s
93:	learn: 11.5608608	total: 2.18s	remaining: 2.46s
94:	learn: 11.4619383	total: 2.2s	remaining: 2.43s
95:	learn: 11.3892378	total: 2.22s	remaining: 2.4s
96:	learn: 11.3083410	total: 2.24s	remaining: 2.38s
97:	learn: 11.2283441	total: 2.26s	remaining: 2.35s
98:	learn: 11.1583948	total: 2.29s	remaining: 2.33s
99:	learn: 11.0469641	total: 2.31s	remaining: 2.31s
100:	learn: 10.9815730	total: 2.34s	remaining: 2.29s
101:	learn: 10.9036211	total: 2.36s	remaining: 2.27s
102:	learn: 10.8258195	total: 2.38s	remaining: 2.25s
103:	learn: 10.7312064	total: 2.41s	remaining: 2.22s
104:	learn: 10.6824773	total: 2.43s	remaining: 2.2s
105:	learn: 10.6225145	total: 2.45s	remaining: 2.17s
106:	learn: 10.5504731	total: 2.47s	remaining: 2.15s
107:	learn: 10.4544948	total: 2.5s	remaining: 2.13s
108:	learn: 10.4168277	total: 2.52s	remaining: 2.11s
109:	learn: 10.3384275	total: 2.55s	remaining: 2.08s
110:	learn: 10.2606286	total: 2.57s	remaining: 2.06s
111:	learn: 10.2285942	total: 2.59s	remaining: 2.03s
112:	learn: 10.1483318	total: 2.61s	remaining: 2.01s
113:	learn: 10.0877697	total: 2.63s	remaining: 1.98s
114:	learn: 10.0344593	total: 2.65s	remaining: 1.96s
115:	learn: 9.9820843	total: 2.67s	remaining: 1.93s
116:	learn: 9.9427733	total: 2.69s	remaining: 1.91s
117:	learn: 9.9059670	total: 2.71s	remaining: 1.89s
118:	learn: 9.8046130	total: 2.74s	remaining: 1.87s
119:	learn: 9.7503993	total: 2.77s	remaining: 1.84s
120:	learn: 9.7160837	total: 2.79s	remaining: 1.82s
121:	learn: 9.6642016	total: 2.81s	remaining: 1.8s
122:	learn: 9.6169382	total: 2.84s	remaining: 1.77s
123:	learn: 9.5581696	total: 2.85s	remaining: 1.75s
124:	learn: 9.5083663	total: 2.88s	remaining: 1.73s
125:	learn: 9.4686778	total: 2.9s	remaining: 1.7s
126:	learn: 9.4224661	total: 2.92s	remaining: 1.68s
127:	learn: 9.3797761	total: 2.95s	remaining: 1.66s
128:	learn: 9.2935195	total: 2.97s	remaining: 1.64s
129:	learn: 9.2022647	total: 2.99s	remaining: 1.61s
130:	learn: 9.1438991	total: 3.02s	remaining: 1.59s
131:	learn: 9.0827535	total: 3.04s	remaining: 1.56s
132:	learn: 9.0024241	total: 3.06s	remaining: 1.54s
133:	learn: 8.9376003	total: 3.08s	remaining: 1.52s
134:	learn: 8.8923957	total: 3.1s	remaining: 1.49s
135:	learn: 8.8484899	total: 3.12s	remaining: 1.47s
136:	learn: 8.7616489	total: 3.14s	remaining: 1.45s
137:	learn: 8.6998649	total: 3.17s	remaining: 1.42s
138:	learn: 8.6429967	total: 3.2s	remaining: 1.4s
139:	learn: 8.5846451	total: 3.22s	remaining: 1.38s
140:	learn: 8.5282228	total: 3.24s	remaining: 1.36s
141:	learn: 8.4914757	total: 3.26s	remaining: 1.33s
142:	learn: 8.4437515	total: 3.29s	remaining: 1.31s
143:	learn: 8.3701501	total: 3.31s	remaining: 1.29s
144:	learn: 8.3305613	total: 3.33s	remaining: 1.26s
145:	learn: 8.2871547	total: 3.35s	remaining: 1.24s
146:	learn: 8.2332345	total: 3.37s	remaining: 1.22s
147:	learn: 8.2040931	total: 3.4s	remaining: 1.19s
148:	learn: 8.1449399	total: 3.42s	remaining: 1.17s
149:	learn: 8.1008163	total: 3.44s	remaining: 1.15s
150:	learn: 8.0676388	total: 3.47s	remaining: 1.12s
151:	learn: 8.0254230	total: 3.49s	remaining: 1.1s
152:	learn: 7.9726324	total: 3.51s	remaining: 1.08s
153:	learn: 7.9246577	total: 3.53s	remaining: 1.05s
154:	learn: 7.8696026	total: 3.55s	remaining: 1.03s
155:	learn: 7.8140044	total: 3.57s	remaining: 1.01s
156:	learn: 7.7692791	total: 3.6s	remaining: 986ms
157:	learn: 7.7154508	total: 3.62s	remaining: 963ms
158:	learn: 7.6512884	total: 3.64s	remaining: 940ms
159:	learn: 7.6049603	total: 3.67s	remaining: 917ms
160:	learn: 7.5831191	total: 3.69s	remaining: 894ms
161:	learn: 7.5299206	total: 3.71s	remaining: 870ms
162:	learn: 7.4797436	total: 3.73s	remaining: 847ms
163:	learn: 7.4347413	total: 3.75s	remaining: 824ms
164:	learn: 7.3884423	total: 3.79s	remaining: 803ms
165:	learn: 7.3608789	total: 3.82s	remaining: 782ms
166:	learn: 7.3113088	total: 3.84s	remaining: 759ms
167:	learn: 7.2661219	total: 3.87s	remaining: 737ms
168:	learn: 7.2118054	total: 3.89s	remaining: 714ms
169:	learn: 7.1750584	total: 3.91s	remaining: 691ms
170:	learn: 7.1528412	total: 3.94s	remaining: 668ms
171:	learn: 7.1129998	total: 3.96s	remaining: 644ms
172:	learn: 7.0410693	total: 3.98s	remaining: 622ms
173:	learn: 7.0123709	total: 4.01s	remaining: 599ms
174:	learn: 6.9725261	total: 4.05s	remaining: 579ms
175:	learn: 6.9405517	total: 4.08s	remaining: 556ms
176:	learn: 6.9063363	total: 4.1s	remaining: 533ms
177:	learn: 6.8658064	total: 4.13s	remaining: 510ms
178:	learn: 6.8211702	total: 4.15s	remaining: 487ms
179:	learn: 6.7955582	total: 4.17s	remaining: 464ms
180:	learn: 6.7657728	total: 4.2s	remaining: 441ms
181:	learn: 6.7233474	total: 4.22s	remaining: 418ms
182:	learn: 6.6750396	total: 4.25s	remaining: 395ms
183:	learn: 6.6454508	total: 4.28s	remaining: 372ms
184:	learn: 6.6000934	total: 4.3s	remaining: 349ms
185:	learn: 6.5795244	total: 4.33s	remaining: 326ms
186:	learn: 6.5250459	total: 4.35s	remaining: 303ms
187:	learn: 6.4878683	total: 4.37s	remaining: 279ms
188:	learn: 6.4442470	total: 4.4s	remaining: 256ms
189:	learn: 6.4049711	total: 4.42s	remaining: 233ms
190:	learn: 6.3756488	total: 4.46s	remaining: 210ms
191:	learn: 6.3363810	total: 4.49s	remaining: 187ms
192:	learn: 6.2834264	total: 4.51s	remaining: 164ms
193:	learn: 6.2455607	total: 4.54s	remaining: 140ms
194:	learn: 6.2049857	total: 4.57s	remaining: 117ms
195:	learn: 6.1600281	total: 4.59s	remaining: 93.7ms
196:	learn: 6.1199114	total: 4.61s	remaining: 70.3ms
197:	learn: 6.0775556	total: 4.64s	remaining: 46.9ms
198:	learn: 6.0424747	total: 4.66s	remaining: 23.4ms
199:	learn: 6.0117747	total: 4.7s	remaining: 0us
0:	learn: 46.3030650	total: 2.64ms	remaining: 525ms
1:	learn: 45.3863821	total: 26.2ms	remaining: 2.6s
2:	learn: 44.3303657	total: 48.6ms	remaining: 3.19s
3:	learn: 43.3376970	total: 72ms	remaining: 3.53s
4:	learn: 42.3048090	total: 104ms	remaining: 4.06s
5:	learn: 41.2876619	total: 138ms	remaining: 4.46s
6:	learn: 40.2621105	total: 166ms	remaining: 4.57s
7:	learn: 39.2067787	total: 192ms	remaining: 4.6s
8:	learn: 38.2152671	total: 217ms	remaining: 4.6s
9:	learn: 37.3871577	total: 242ms	remaining: 4.6s
10:	learn: 36.6393787	total: 265ms	remaining: 4.56s
11:	learn: 35.8850130	total: 288ms	remaining: 4.51s
12:	learn: 35.3145595	total: 313ms	remaining: 4.51s
13:	learn: 34.5127183	total: 338ms	remaining: 4.49s
14:	learn: 33.9299378	total: 377ms	remaining: 4.65s
15:	learn: 33.1444830	total: 400ms	remaining: 4.61s
16:	learn: 32.5046852	total: 424ms	remaining: 4.56s
17:	learn: 31.9896017	total: 448ms	remaining: 4.53s
18:	learn: 31.3671259	total: 471ms	remaining: 4.49s
19:	learn: 30.7709490	total: 493ms	remaining: 4.44s
20:	learn: 30.3076309	total: 517ms	remaining: 4.41s
21:	learn: 29.7436165	total: 542ms	remaining: 4.38s
22:	learn: 29.2367879	total: 569ms	remaining: 4.38s
23:	learn: 28.6721804	total: 596ms	remaining: 4.37s
24:	learn: 28.1740050	total: 620ms	remaining: 4.34s
25:	learn: 27.7310122	total: 644ms	remaining: 4.31s
26:	learn: 27.2559389	total: 669ms	remaining: 4.28s
27:	learn: 26.7919727	total: 691ms	remaining: 4.24s
28:	learn: 26.3973786	total: 712ms	remaining: 4.2s
29:	learn: 25.9446861	total: 735ms	remaining: 4.17s
30:	learn: 25.5889650	total: 761ms	remaining: 4.15s
31:	learn: 25.1627233	total: 788ms	remaining: 4.13s
32:	learn: 24.8848176	total: 810ms	remaining: 4.1s
33:	learn: 24.4268954	total: 832ms	remaining: 4.06s
34:	learn: 24.1655944	total: 853ms	remaining: 4.02s
35:	learn: 23.8296205	total: 873ms	remaining: 3.98s
36:	learn: 23.4214518	total: 896ms	remaining: 3.95s
37:	learn: 23.1485204	total: 919ms	remaining: 3.92s
38:	learn: 22.7675316	total: 939ms	remaining: 3.88s
39:	learn: 22.4807336	total: 962ms	remaining: 3.85s
40:	learn: 22.2054867	total: 986ms	remaining: 3.82s
41:	learn: 21.9328851	total: 1.02s	remaining: 3.83s
42:	learn: 21.6073446	total: 1.04s	remaining: 3.8s
43:	learn: 21.3198829	total: 1.06s	remaining: 3.77s
44:	learn: 21.0001604	total: 1.09s	remaining: 3.75s
45:	learn: 20.6560095	total: 1.11s	remaining: 3.73s
46:	learn: 20.4068862	total: 1.13s	remaining: 3.69s
47:	learn: 20.1123610	total: 1.16s	remaining: 3.66s
48:	learn: 19.8929795	total: 1.18s	remaining: 3.64s
49:	learn: 19.6851325	total: 1.21s	remaining: 3.63s
50:	learn: 19.4379923	total: 1.23s	remaining: 3.61s
51:	learn: 19.1765299	total: 1.25s	remaining: 3.57s
52:	learn: 18.9359818	total: 1.28s	remaining: 3.54s
53:	learn: 18.6848954	total: 1.3s	remaining: 3.51s
54:	learn: 18.4602852	total: 1.32s	remaining: 3.49s
55:	learn: 18.2692773	total: 1.34s	remaining: 3.46s
56:	learn: 18.0399201	total: 1.36s	remaining: 3.42s
57:	learn: 17.8235063	total: 1.39s	remaining: 3.4s
58:	learn: 17.6311769	total: 1.41s	remaining: 3.38s
59:	learn: 17.4590002	total: 1.44s	remaining: 3.37s
60:	learn: 17.2170241	total: 1.47s	remaining: 3.35s
61:	learn: 17.0477567	total: 1.49s	remaining: 3.32s
62:	learn: 16.8483227	total: 1.51s	remaining: 3.29s
63:	learn: 16.7003707	total: 1.54s	remaining: 3.27s
64:	learn: 16.5244197	total: 1.56s	remaining: 3.24s
65:	learn: 16.3560522	total: 1.58s	remaining: 3.21s
66:	learn: 16.2090391	total: 1.6s	remaining: 3.19s
67:	learn: 16.0773806	total: 1.63s	remaining: 3.16s
68:	learn: 15.9313223	total: 1.66s	remaining: 3.15s
69:	learn: 15.8587403	total: 1.68s	remaining: 3.12s
70:	learn: 15.7219902	total: 1.7s	remaining: 3.09s
71:	learn: 15.5888303	total: 1.72s	remaining: 3.06s
72:	learn: 15.4672174	total: 1.74s	remaining: 3.03s
73:	learn: 15.3250528	total: 1.76s	remaining: 3s
74:	learn: 15.1885799	total: 1.78s	remaining: 2.98s
75:	learn: 15.0571789	total: 1.81s	remaining: 2.95s
76:	learn: 14.9087739	total: 1.83s	remaining: 2.92s
77:	learn: 14.7682304	total: 1.85s	remaining: 2.9s
78:	learn: 14.5259049	total: 1.88s	remaining: 2.88s
79:	learn: 14.3631190	total: 1.91s	remaining: 2.86s
80:	learn: 14.2467961	total: 1.93s	remaining: 2.84s
81:	learn: 14.0738885	total: 1.95s	remaining: 2.81s
82:	learn: 13.9665111	total: 1.98s	remaining: 2.79s
83:	learn: 13.8331846	total: 2s	remaining: 2.76s
84:	learn: 13.7292162	total: 2.02s	remaining: 2.73s
85:	learn: 13.6492354	total: 2.04s	remaining: 2.71s
86:	learn: 13.5481979	total: 2.07s	remaining: 2.68s
87:	learn: 13.4472352	total: 2.1s	remaining: 2.67s
88:	learn: 13.3258910	total: 2.12s	remaining: 2.64s
89:	learn: 13.2393886	total: 2.14s	remaining: 2.62s
90:	learn: 13.1693415	total: 2.16s	remaining: 2.59s
91:	learn: 13.0653588	total: 2.19s	remaining: 2.56s
92:	learn: 12.9569271	total: 2.21s	remaining: 2.54s
93:	learn: 12.7887232	total: 2.23s	remaining: 2.51s
94:	learn: 12.6654219	total: 2.25s	remaining: 2.49s
95:	learn: 12.5942081	total: 2.27s	remaining: 2.46s
96:	learn: 12.5016735	total: 2.3s	remaining: 2.45s
97:	learn: 12.3851734	total: 2.33s	remaining: 2.43s
98:	learn: 12.2915943	total: 2.36s	remaining: 2.4s
99:	learn: 12.1817773	total: 2.38s	remaining: 2.38s
100:	learn: 12.1001084	total: 2.4s	remaining: 2.35s
101:	learn: 12.0125762	total: 2.43s	remaining: 2.33s
102:	learn: 11.9053086	total: 2.45s	remaining: 2.31s
103:	learn: 11.8108884	total: 2.47s	remaining: 2.28s
104:	learn: 11.7134008	total: 2.5s	remaining: 2.26s
105:	learn: 11.6403098	total: 2.52s	remaining: 2.24s
106:	learn: 11.5677512	total: 2.55s	remaining: 2.21s
107:	learn: 11.4706639	total: 2.57s	remaining: 2.19s
108:	learn: 11.3799422	total: 2.59s	remaining: 2.16s
109:	learn: 11.3099240	total: 2.61s	remaining: 2.14s
110:	learn: 11.2242582	total: 2.63s	remaining: 2.11s
111:	learn: 11.1639839	total: 2.65s	remaining: 2.08s
112:	learn: 11.0851749	total: 2.67s	remaining: 2.06s
113:	learn: 11.0274408	total: 2.69s	remaining: 2.03s
114:	learn: 10.9469225	total: 2.72s	remaining: 2.01s
115:	learn: 10.8646495	total: 2.74s	remaining: 1.99s
116:	learn: 10.7956277	total: 2.77s	remaining: 1.96s
117:	learn: 10.7229339	total: 2.79s	remaining: 1.94s
118:	learn: 10.6717034	total: 2.81s	remaining: 1.91s
119:	learn: 10.6080096	total: 2.83s	remaining: 1.89s
120:	learn: 10.5414756	total: 2.86s	remaining: 1.86s
121:	learn: 10.4526074	total: 2.88s	remaining: 1.84s
122:	learn: 10.3937537	total: 2.9s	remaining: 1.82s
123:	learn: 10.3256424	total: 2.92s	remaining: 1.79s
124:	learn: 10.2541706	total: 2.95s	remaining: 1.77s
125:	learn: 10.1743339	total: 2.97s	remaining: 1.75s
126:	learn: 10.1205299	total: 3s	remaining: 1.72s
127:	learn: 10.0706006	total: 3.02s	remaining: 1.7s
128:	learn: 9.9907794	total: 3.04s	remaining: 1.67s
129:	learn: 9.9189908	total: 3.06s	remaining: 1.65s
130:	learn: 9.8515629	total: 3.08s	remaining: 1.62s
131:	learn: 9.8035447	total: 3.1s	remaining: 1.6s
132:	learn: 9.7276577	total: 3.12s	remaining: 1.57s
133:	learn: 9.6715830	total: 3.14s	remaining: 1.55s
134:	learn: 9.6029398	total: 3.16s	remaining: 1.52s
135:	learn: 9.5145475	total: 3.18s	remaining: 1.5s
136:	learn: 9.4394658	total: 3.21s	remaining: 1.48s
137:	learn: 9.3839963	total: 3.24s	remaining: 1.46s
138:	learn: 9.3282632	total: 3.26s	remaining: 1.43s
139:	learn: 9.2605763	total: 3.28s	remaining: 1.41s
140:	learn: 9.2038604	total: 3.31s	remaining: 1.38s
141:	learn: 9.1427762	total: 3.33s	remaining: 1.36s
142:	learn: 9.0911085	total: 3.35s	remaining: 1.34s
143:	learn: 9.0266186	total: 3.37s	remaining: 1.31s
144:	learn: 8.9619821	total: 3.4s	remaining: 1.29s
145:	learn: 8.9039459	total: 3.42s	remaining: 1.27s
146:	learn: 8.8472919	total: 3.44s	remaining: 1.24s
147:	learn: 8.7933789	total: 3.46s	remaining: 1.22s
148:	learn: 8.7305245	total: 3.49s	remaining: 1.19s
149:	learn: 8.6705924	total: 3.51s	remaining: 1.17s
150:	learn: 8.5950689	total: 3.53s	remaining: 1.15s
151:	learn: 8.5220923	total: 3.55s	remaining: 1.12s
152:	learn: 8.4711728	total: 3.57s	remaining: 1.1s
153:	learn: 8.4154002	total: 3.59s	remaining: 1.07s
154:	learn: 8.3525716	total: 3.61s	remaining: 1.05s
155:	learn: 8.2500576	total: 3.65s	remaining: 1.03s
156:	learn: 8.1975868	total: 3.67s	remaining: 1s
157:	learn: 8.1408778	total: 3.69s	remaining: 981ms
158:	learn: 8.0944498	total: 3.71s	remaining: 958ms
159:	learn: 8.0494005	total: 3.74s	remaining: 934ms
160:	learn: 7.9923207	total: 3.76s	remaining: 910ms
161:	learn: 7.9244042	total: 3.78s	remaining: 886ms
162:	learn: 7.8553521	total: 3.8s	remaining: 863ms
163:	learn: 7.8113057	total: 3.82s	remaining: 839ms
164:	learn: 7.7694977	total: 3.85s	remaining: 817ms
165:	learn: 7.7157854	total: 3.87s	remaining: 794ms
166:	learn: 7.6649983	total: 3.89s	remaining: 769ms
167:	learn: 7.6054169	total: 3.91s	remaining: 746ms
168:	learn: 7.5566318	total: 3.94s	remaining: 722ms
169:	learn: 7.5167923	total: 3.96s	remaining: 698ms
170:	learn: 7.4636141	total: 3.98s	remaining: 674ms
171:	learn: 7.4245697	total: 4s	remaining: 651ms
172:	learn: 7.3773340	total: 4.02s	remaining: 627ms
173:	learn: 7.3471282	total: 4.04s	remaining: 604ms
174:	learn: 7.3055610	total: 4.07s	remaining: 581ms
175:	learn: 7.2625255	total: 4.09s	remaining: 558ms
176:	learn: 7.2195019	total: 4.12s	remaining: 535ms
177:	learn: 7.1830907	total: 4.14s	remaining: 512ms
178:	learn: 7.1506543	total: 4.16s	remaining: 488ms
179:	learn: 7.1217634	total: 4.18s	remaining: 465ms
180:	learn: 7.0888873	total: 4.21s	remaining: 443ms
181:	learn: 7.0573402	total: 4.24s	remaining: 420ms
182:	learn: 7.0284924	total: 4.27s	remaining: 396ms
183:	learn: 6.9915582	total: 4.3s	remaining: 374ms
184:	learn: 6.9260265	total: 4.32s	remaining: 351ms
185:	learn: 6.8908911	total: 4.35s	remaining: 327ms
186:	learn: 6.8311295	total: 4.37s	remaining: 304ms
187:	learn: 6.7852318	total: 4.4s	remaining: 281ms
188:	learn: 6.7472131	total: 4.42s	remaining: 257ms
189:	learn: 6.7097405	total: 4.45s	remaining: 234ms
190:	learn: 6.6638060	total: 4.47s	remaining: 211ms
191:	learn: 6.6226054	total: 4.51s	remaining: 188ms
192:	learn: 6.5877421	total: 4.54s	remaining: 165ms
193:	learn: 6.5502032	total: 4.56s	remaining: 141ms
194:	learn: 6.5273033	total: 4.58s	remaining: 118ms
195:	learn: 6.4870752	total: 4.61s	remaining: 94.1ms
196:	learn: 6.4465018	total: 4.63s	remaining: 70.6ms
197:	learn: 6.4059530	total: 4.66s	remaining: 47ms
198:	learn: 6.3641752	total: 4.68s	remaining: 23.5ms
199:	learn: 6.3199674	total: 4.71s	remaining: 0us
0:	learn: 45.9374585	total: 2.6ms	remaining: 517ms
1:	learn: 44.9941372	total: 25.4ms	remaining: 2.52s
2:	learn: 44.2262139	total: 58.4ms	remaining: 3.84s
3:	learn: 43.4077369	total: 81.4ms	remaining: 3.99s
4:	learn: 42.4614795	total: 103ms	remaining: 4.04s
5:	learn: 41.7293035	total: 128ms	remaining: 4.15s
6:	learn: 40.9788334	total: 153ms	remaining: 4.21s
7:	learn: 40.2192521	total: 187ms	remaining: 4.49s
8:	learn: 39.3640339	total: 212ms	remaining: 4.5s
9:	learn: 38.5378070	total: 235ms	remaining: 4.47s
10:	learn: 37.8182939	total: 258ms	remaining: 4.42s
11:	learn: 37.1773569	total: 280ms	remaining: 4.38s
12:	learn: 36.4195124	total: 304ms	remaining: 4.37s
13:	learn: 35.5821022	total: 324ms	remaining: 4.3s
14:	learn: 35.0064478	total: 344ms	remaining: 4.25s
15:	learn: 34.2615732	total: 366ms	remaining: 4.21s
16:	learn: 33.5412554	total: 391ms	remaining: 4.21s
17:	learn: 32.9141508	total: 421ms	remaining: 4.26s
18:	learn: 32.2363942	total: 443ms	remaining: 4.22s
19:	learn: 31.7331387	total: 463ms	remaining: 4.17s
20:	learn: 31.0899756	total: 484ms	remaining: 4.12s
21:	learn: 30.6319944	total: 506ms	remaining: 4.09s
22:	learn: 30.1842367	total: 529ms	remaining: 4.07s
23:	learn: 29.6380878	total: 550ms	remaining: 4.03s
24:	learn: 29.2321241	total: 573ms	remaining: 4.01s
25:	learn: 28.7979520	total: 595ms	remaining: 3.98s
26:	learn: 28.2980553	total: 618ms	remaining: 3.96s
27:	learn: 27.8482566	total: 651ms	remaining: 4s
28:	learn: 27.4300154	total: 674ms	remaining: 3.97s
29:	learn: 27.0089070	total: 698ms	remaining: 3.95s
30:	learn: 26.6386533	total: 721ms	remaining: 3.93s
31:	learn: 26.1488739	total: 742ms	remaining: 3.9s
32:	learn: 25.7427326	total: 764ms	remaining: 3.87s
33:	learn: 25.4135376	total: 786ms	remaining: 3.83s
34:	learn: 25.1125079	total: 809ms	remaining: 3.81s
35:	learn: 24.7765508	total: 839ms	remaining: 3.82s
36:	learn: 24.4184054	total: 863ms	remaining: 3.8s
37:	learn: 24.1285465	total: 883ms	remaining: 3.76s
38:	learn: 23.7617767	total: 903ms	remaining: 3.73s
39:	learn: 23.4697237	total: 923ms	remaining: 3.69s
40:	learn: 23.1529572	total: 942ms	remaining: 3.65s
41:	learn: 22.9281680	total: 964ms	remaining: 3.63s
42:	learn: 22.5433571	total: 986ms	remaining: 3.6s
43:	learn: 22.2694210	total: 1.01s	remaining: 3.57s
44:	learn: 22.0626545	total: 1.03s	remaining: 3.57s
45:	learn: 21.7856336	total: 1.06s	remaining: 3.56s
46:	learn: 21.5744570	total: 1.09s	remaining: 3.54s
47:	learn: 21.3032312	total: 1.11s	remaining: 3.51s
48:	learn: 21.0549035	total: 1.13s	remaining: 3.5s
49:	learn: 20.7560738	total: 1.16s	remaining: 3.47s
50:	learn: 20.5666362	total: 1.18s	remaining: 3.44s
51:	learn: 20.2971913	total: 1.2s	remaining: 3.42s
52:	learn: 20.1128767	total: 1.22s	remaining: 3.39s
53:	learn: 19.9086266	total: 1.25s	remaining: 3.37s
54:	learn: 19.8505379	total: 1.28s	remaining: 3.37s
55:	learn: 19.6060818	total: 1.3s	remaining: 3.34s
56:	learn: 19.3463236	total: 1.32s	remaining: 3.31s
57:	learn: 19.1448943	total: 1.34s	remaining: 3.29s
58:	learn: 18.9303070	total: 1.36s	remaining: 3.26s
59:	learn: 18.7334702	total: 1.39s	remaining: 3.24s
60:	learn: 18.4745316	total: 1.41s	remaining: 3.21s
61:	learn: 18.3429058	total: 1.43s	remaining: 3.19s
62:	learn: 18.2349371	total: 1.45s	remaining: 3.16s
63:	learn: 18.0464198	total: 1.48s	remaining: 3.14s
64:	learn: 17.9551885	total: 1.51s	remaining: 3.15s
65:	learn: 17.8046513	total: 1.54s	remaining: 3.13s
66:	learn: 17.6580615	total: 1.56s	remaining: 3.1s
67:	learn: 17.5210179	total: 1.59s	remaining: 3.08s
68:	learn: 17.3683843	total: 1.61s	remaining: 3.06s
69:	learn: 17.2746349	total: 1.63s	remaining: 3.03s
70:	learn: 17.1657792	total: 1.65s	remaining: 3s
71:	learn: 17.0139366	total: 1.68s	remaining: 2.98s
72:	learn: 16.9273438	total: 1.71s	remaining: 2.97s
73:	learn: 16.7770796	total: 1.73s	remaining: 2.94s
74:	learn: 16.6273270	total: 1.75s	remaining: 2.92s
75:	learn: 16.4876252	total: 1.77s	remaining: 2.89s
76:	learn: 16.3403316	total: 1.79s	remaining: 2.86s
77:	learn: 16.2334666	total: 1.81s	remaining: 2.83s
78:	learn: 16.1246403	total: 1.83s	remaining: 2.81s
79:	learn: 16.1051765	total: 1.83s	remaining: 2.75s
80:	learn: 15.9789512	total: 1.86s	remaining: 2.73s
81:	learn: 15.8668312	total: 1.88s	remaining: 2.7s
82:	learn: 15.8286992	total: 1.91s	remaining: 2.69s
83:	learn: 15.7176535	total: 1.93s	remaining: 2.67s
84:	learn: 15.6304053	total: 1.96s	remaining: 2.65s
85:	learn: 15.5540487	total: 1.98s	remaining: 2.62s
86:	learn: 15.4358015	total: 2s	remaining: 2.6s
87:	learn: 15.3234993	total: 2.03s	remaining: 2.58s
88:	learn: 15.1846833	total: 2.05s	remaining: 2.55s
89:	learn: 15.0930916	total: 2.07s	remaining: 2.52s
90:	learn: 14.9870552	total: 2.09s	remaining: 2.5s
91:	learn: 14.9340350	total: 2.11s	remaining: 2.48s
92:	learn: 14.8819329	total: 2.14s	remaining: 2.46s
93:	learn: 14.8108947	total: 2.16s	remaining: 2.44s
94:	learn: 14.7229760	total: 2.18s	remaining: 2.41s
95:	learn: 14.6144792	total: 2.2s	remaining: 2.38s
96:	learn: 14.5117556	total: 2.22s	remaining: 2.36s
97:	learn: 14.4162730	total: 2.24s	remaining: 2.33s
98:	learn: 14.3472920	total: 2.26s	remaining: 2.31s
99:	learn: 14.2651631	total: 2.28s	remaining: 2.28s
100:	learn: 14.1622451	total: 2.31s	remaining: 2.26s
101:	learn: 14.0705359	total: 2.33s	remaining: 2.24s
102:	learn: 14.0187818	total: 2.36s	remaining: 2.22s
103:	learn: 13.9338223	total: 2.38s	remaining: 2.2s
104:	learn: 13.8404702	total: 2.4s	remaining: 2.18s
105:	learn: 13.7544908	total: 2.43s	remaining: 2.15s
106:	learn: 13.6910288	total: 2.45s	remaining: 2.13s
107:	learn: 13.6071469	total: 2.47s	remaining: 2.11s
108:	learn: 13.4768552	total: 2.49s	remaining: 2.08s
109:	learn: 13.3564611	total: 2.51s	remaining: 2.06s
110:	learn: 13.2980578	total: 2.54s	remaining: 2.03s
111:	learn: 13.2188287	total: 2.57s	remaining: 2.02s
112:	learn: 13.1286016	total: 2.59s	remaining: 1.99s
113:	learn: 13.0779405	total: 2.61s	remaining: 1.97s
114:	learn: 12.9750452	total: 2.63s	remaining: 1.94s
115:	learn: 12.9326416	total: 2.65s	remaining: 1.92s
116:	learn: 12.8432243	total: 2.67s	remaining: 1.9s
117:	learn: 12.7715202	total: 2.69s	remaining: 1.87s
118:	learn: 12.7282330	total: 2.71s	remaining: 1.85s
119:	learn: 12.6677950	total: 2.74s	remaining: 1.82s
120:	learn: 12.5864883	total: 2.76s	remaining: 1.8s
121:	learn: 12.5066953	total: 2.79s	remaining: 1.78s
122:	learn: 12.4318012	total: 2.81s	remaining: 1.76s
123:	learn: 12.3437350	total: 2.83s	remaining: 1.74s
124:	learn: 12.2463792	total: 2.85s	remaining: 1.71s
125:	learn: 12.1932562	total: 2.88s	remaining: 1.69s
126:	learn: 12.1366882	total: 2.9s	remaining: 1.67s
127:	learn: 12.0338743	total: 2.92s	remaining: 1.64s
128:	learn: 11.9764557	total: 2.94s	remaining: 1.62s
129:	learn: 11.9211302	total: 2.96s	remaining: 1.59s
130:	learn: 11.8275674	total: 2.98s	remaining: 1.57s
131:	learn: 11.7186241	total: 3.01s	remaining: 1.55s
132:	learn: 11.6485533	total: 3.03s	remaining: 1.52s
133:	learn: 11.6158707	total: 3.05s	remaining: 1.5s
134:	learn: 11.4647200	total: 3.07s	remaining: 1.48s
135:	learn: 11.3748863	total: 3.09s	remaining: 1.45s
136:	learn: 11.3013400	total: 3.11s	remaining: 1.43s
137:	learn: 11.1903084	total: 3.13s	remaining: 1.41s
138:	learn: 11.1470223	total: 3.15s	remaining: 1.38s
139:	learn: 11.0713577	total: 3.17s	remaining: 1.36s
140:	learn: 11.0239693	total: 3.19s	remaining: 1.33s
141:	learn: 10.9569574	total: 3.22s	remaining: 1.32s
142:	learn: 10.9107000	total: 3.25s	remaining: 1.29s
143:	learn: 10.8586101	total: 3.27s	remaining: 1.27s
144:	learn: 10.8190357	total: 3.29s	remaining: 1.25s
145:	learn: 10.7143494	total: 3.32s	remaining: 1.23s
146:	learn: 10.6676837	total: 3.34s	remaining: 1.2s
147:	learn: 10.6315748	total: 3.36s	remaining: 1.18s
148:	learn: 10.5678932	total: 3.38s	remaining: 1.16s
149:	learn: 10.4793966	total: 3.4s	remaining: 1.13s
150:	learn: 10.4350943	total: 3.43s	remaining: 1.11s
151:	learn: 10.3558788	total: 3.45s	remaining: 1.09s
152:	learn: 10.2784990	total: 3.48s	remaining: 1.07s
153:	learn: 10.1878032	total: 3.5s	remaining: 1.04s
154:	learn: 10.1379468	total: 3.52s	remaining: 1.02s
155:	learn: 10.0480828	total: 3.54s	remaining: 998ms
156:	learn: 10.0156188	total: 3.56s	remaining: 975ms
157:	learn: 9.9253786	total: 3.58s	remaining: 952ms
158:	learn: 9.8444639	total: 3.6s	remaining: 928ms
159:	learn: 9.7916495	total: 3.62s	remaining: 905ms
160:	learn: 9.7472719	total: 3.64s	remaining: 883ms
161:	learn: 9.6852400	total: 3.68s	remaining: 864ms
162:	learn: 9.5977386	total: 3.71s	remaining: 841ms
163:	learn: 9.5546075	total: 3.73s	remaining: 819ms
164:	learn: 9.5156850	total: 3.75s	remaining: 796ms
165:	learn: 9.4490086	total: 3.78s	remaining: 773ms
166:	learn: 9.3764688	total: 3.8s	remaining: 751ms
167:	learn: 9.3171235	total: 3.82s	remaining: 728ms
168:	learn: 9.2504597	total: 3.85s	remaining: 706ms
169:	learn: 9.2017237	total: 3.88s	remaining: 684ms
170:	learn: 9.1525831	total: 3.9s	remaining: 661ms
171:	learn: 9.0967290	total: 3.93s	remaining: 640ms
172:	learn: 9.0420243	total: 3.95s	remaining: 617ms
173:	learn: 9.0088541	total: 3.98s	remaining: 594ms
174:	learn: 8.9547669	total: 4s	remaining: 572ms
175:	learn: 8.8981494	total: 4.03s	remaining: 549ms
176:	learn: 8.8410061	total: 4.05s	remaining: 526ms
177:	learn: 8.7996640	total: 4.07s	remaining: 503ms
178:	learn: 8.7487862	total: 4.1s	remaining: 481ms
179:	learn: 8.7199782	total: 4.13s	remaining: 459ms
180:	learn: 8.6742407	total: 4.16s	remaining: 436ms
181:	learn: 8.6136666	total: 4.19s	remaining: 414ms
182:	learn: 8.5520812	total: 4.21s	remaining: 392ms
183:	learn: 8.4963824	total: 4.24s	remaining: 368ms
184:	learn: 8.4636666	total: 4.26s	remaining: 345ms
185:	learn: 8.3946037	total: 4.28s	remaining: 323ms
186:	learn: 8.3420698	total: 4.31s	remaining: 300ms
187:	learn: 8.2745887	total: 4.34s	remaining: 277ms
188:	learn: 8.2219687	total: 4.36s	remaining: 254ms
189:	learn: 8.1839189	total: 4.39s	remaining: 231ms
190:	learn: 8.1528847	total: 4.41s	remaining: 208ms
191:	learn: 8.1136114	total: 4.44s	remaining: 185ms
192:	learn: 8.0703520	total: 4.46s	remaining: 162ms
193:	learn: 8.0353076	total: 4.49s	remaining: 139ms
194:	learn: 7.9911522	total: 4.51s	remaining: 116ms
195:	learn: 7.9553013	total: 4.54s	remaining: 92.7ms
196:	learn: 7.9310850	total: 4.57s	remaining: 69.6ms
197:	learn: 7.9041172	total: 4.59s	remaining: 46.4ms
198:	learn: 7.8938382	total: 4.62s	remaining: 23.2ms
199:	learn: 7.8482459	total: 4.64s	remaining: 0us
0:	learn: 46.4538034	total: 23.3ms	remaining: 4.63s
1:	learn: 45.4517374	total: 45.6ms	remaining: 4.51s
2:	learn: 44.5278586	total: 73.5ms	remaining: 4.83s
3:	learn: 43.4085977	total: 95.7ms	remaining: 4.69s
4:	learn: 42.4277811	total: 118ms	remaining: 4.6s
5:	learn: 41.6326697	total: 140ms	remaining: 4.51s
6:	learn: 40.7538359	total: 161ms	remaining: 4.45s
7:	learn: 39.9527309	total: 183ms	remaining: 4.4s
8:	learn: 39.0753018	total: 204ms	remaining: 4.32s
9:	learn: 38.2762566	total: 226ms	remaining: 4.29s
10:	learn: 37.6931120	total: 246ms	remaining: 4.22s
11:	learn: 37.1152456	total: 269ms	remaining: 4.22s
12:	learn: 36.4260589	total: 297ms	remaining: 4.27s
13:	learn: 35.8227743	total: 324ms	remaining: 4.31s
14:	learn: 35.1895931	total: 348ms	remaining: 4.3s
15:	learn: 34.5173917	total: 372ms	remaining: 4.27s
16:	learn: 33.7580423	total: 394ms	remaining: 4.24s
17:	learn: 33.2817590	total: 418ms	remaining: 4.23s
18:	learn: 32.6094234	total: 440ms	remaining: 4.19s
19:	learn: 32.1663838	total: 460ms	remaining: 4.14s
20:	learn: 31.6118204	total: 483ms	remaining: 4.12s
21:	learn: 31.0524919	total: 505ms	remaining: 4.09s
22:	learn: 30.6530294	total: 533ms	remaining: 4.1s
23:	learn: 29.9638142	total: 554ms	remaining: 4.06s
24:	learn: 29.4784766	total: 576ms	remaining: 4.03s
25:	learn: 29.0431548	total: 598ms	remaining: 4s
26:	learn: 28.5923229	total: 618ms	remaining: 3.96s
27:	learn: 28.1646598	total: 640ms	remaining: 3.93s
28:	learn: 27.7320559	total: 663ms	remaining: 3.91s
29:	learn: 27.3472101	total: 687ms	remaining: 3.89s
30:	learn: 26.9299792	total: 712ms	remaining: 3.88s
31:	learn: 26.5961114	total: 744ms	remaining: 3.91s
32:	learn: 26.0427736	total: 770ms	remaining: 3.9s
33:	learn: 25.5746867	total: 794ms	remaining: 3.88s
34:	learn: 25.2866624	total: 818ms	remaining: 3.86s
35:	learn: 24.9462619	total: 842ms	remaining: 3.83s
36:	learn: 24.6276430	total: 863ms	remaining: 3.8s
37:	learn: 24.3408784	total: 883ms	remaining: 3.77s
38:	learn: 24.0950500	total: 906ms	remaining: 3.74s
39:	learn: 23.7192013	total: 935ms	remaining: 3.74s
40:	learn: 23.4131644	total: 961ms	remaining: 3.73s
41:	learn: 23.0871679	total: 984ms	remaining: 3.7s
42:	learn: 22.8237273	total: 1.01s	remaining: 3.67s
43:	learn: 22.5691307	total: 1.03s	remaining: 3.64s
44:	learn: 22.3341037	total: 1.05s	remaining: 3.61s
45:	learn: 22.0782394	total: 1.07s	remaining: 3.59s
46:	learn: 21.8287260	total: 1.09s	remaining: 3.56s
47:	learn: 21.4945293	total: 1.11s	remaining: 3.53s
48:	learn: 21.2779027	total: 1.13s	remaining: 3.5s
49:	learn: 21.0183245	total: 1.16s	remaining: 3.47s
50:	learn: 20.8304059	total: 1.18s	remaining: 3.46s
51:	learn: 20.6505224	total: 1.22s	remaining: 3.46s
52:	learn: 20.4434302	total: 1.24s	remaining: 3.44s
53:	learn: 20.2358596	total: 1.26s	remaining: 3.42s
54:	learn: 19.9248895	total: 1.29s	remaining: 3.39s
55:	learn: 19.6402054	total: 1.31s	remaining: 3.36s
56:	learn: 19.4863996	total: 1.33s	remaining: 3.33s
57:	learn: 19.2820242	total: 1.35s	remaining: 3.3s
58:	learn: 19.0309684	total: 1.37s	remaining: 3.27s
59:	learn: 18.9156855	total: 1.39s	remaining: 3.25s
60:	learn: 18.7362124	total: 1.42s	remaining: 3.24s
61:	learn: 18.5327109	total: 1.44s	remaining: 3.21s
62:	learn: 18.3473379	total: 1.46s	remaining: 3.19s
63:	learn: 18.1447985	total: 1.49s	remaining: 3.16s
64:	learn: 17.9782680	total: 1.51s	remaining: 3.13s
65:	learn: 17.7731055	total: 1.53s	remaining: 3.1s
66:	learn: 17.6666871	total: 1.55s	remaining: 3.08s
67:	learn: 17.4893685	total: 1.57s	remaining: 3.05s
68:	learn: 17.4081271	total: 1.59s	remaining: 3.03s
69:	learn: 17.2768910	total: 1.62s	remaining: 3s
70:	learn: 17.1686736	total: 1.65s	remaining: 3s
71:	learn: 17.0306633	total: 1.67s	remaining: 2.97s
72:	learn: 16.8387254	total: 1.7s	remaining: 2.95s
73:	learn: 16.6835666	total: 1.72s	remaining: 2.93s
74:	learn: 16.5275101	total: 1.75s	remaining: 2.91s
75:	learn: 16.3788685	total: 1.76s	remaining: 2.88s
76:	learn: 16.2632053	total: 1.79s	remaining: 2.86s
77:	learn: 16.1434405	total: 1.81s	remaining: 2.83s
78:	learn: 16.0439065	total: 1.83s	remaining: 2.81s
79:	learn: 15.9662547	total: 1.86s	remaining: 2.79s
80:	learn: 15.8312242	total: 1.89s	remaining: 2.77s
81:	learn: 15.7325519	total: 1.91s	remaining: 2.74s
82:	learn: 15.5842095	total: 1.93s	remaining: 2.72s
83:	learn: 15.4773774	total: 1.95s	remaining: 2.69s
84:	learn: 15.3840131	total: 1.97s	remaining: 2.66s
85:	learn: 15.2543240	total: 1.99s	remaining: 2.64s
86:	learn: 15.1770733	total: 2.01s	remaining: 2.61s
87:	learn: 15.0601980	total: 2.03s	remaining: 2.58s
88:	learn: 14.9710854	total: 2.05s	remaining: 2.56s
89:	learn: 14.8071359	total: 2.08s	remaining: 2.55s
90:	learn: 14.6765600	total: 2.1s	remaining: 2.52s
91:	learn: 14.6006761	total: 2.13s	remaining: 2.5s
92:	learn: 14.4927442	total: 2.15s	remaining: 2.48s
93:	learn: 14.3676298	total: 2.17s	remaining: 2.45s
94:	learn: 14.2821814	total: 2.19s	remaining: 2.43s
95:	learn: 14.1977772	total: 2.22s	remaining: 2.4s
96:	learn: 14.0716572	total: 2.24s	remaining: 2.38s
97:	learn: 13.9596234	total: 2.26s	remaining: 2.35s
98:	learn: 13.8995436	total: 2.29s	remaining: 2.33s
99:	learn: 13.8034385	total: 2.31s	remaining: 2.31s
100:	learn: 13.7120315	total: 2.33s	remaining: 2.28s
101:	learn: 13.6164659	total: 2.35s	remaining: 2.26s
102:	learn: 13.5209984	total: 2.37s	remaining: 2.23s
103:	learn: 13.4658429	total: 2.39s	remaining: 2.21s
104:	learn: 13.4053582	total: 2.41s	remaining: 2.18s
105:	learn: 13.3017497	total: 2.43s	remaining: 2.15s
106:	learn: 13.2206464	total: 2.45s	remaining: 2.13s
107:	learn: 13.1422514	total: 2.47s	remaining: 2.11s
108:	learn: 13.0835914	total: 2.5s	remaining: 2.09s
109:	learn: 13.0279614	total: 2.53s	remaining: 2.07s
110:	learn: 12.9774570	total: 2.55s	remaining: 2.04s
111:	learn: 12.9020485	total: 2.57s	remaining: 2.02s
112:	learn: 12.8173719	total: 2.6s	remaining: 2s
113:	learn: 12.7393239	total: 2.62s	remaining: 1.97s
114:	learn: 12.6367887	total: 2.64s	remaining: 1.95s
115:	learn: 12.5697725	total: 2.66s	remaining: 1.93s
116:	learn: 12.5006737	total: 2.68s	remaining: 1.9s
117:	learn: 12.4376486	total: 2.71s	remaining: 1.88s
118:	learn: 12.3261688	total: 2.73s	remaining: 1.86s
119:	learn: 12.2496645	total: 2.76s	remaining: 1.84s
120:	learn: 12.1857073	total: 2.78s	remaining: 1.81s
121:	learn: 12.1163525	total: 2.8s	remaining: 1.79s
122:	learn: 12.0585407	total: 2.82s	remaining: 1.76s
123:	learn: 11.9861032	total: 2.84s	remaining: 1.74s
124:	learn: 11.9047316	total: 2.86s	remaining: 1.71s
125:	learn: 11.8337331	total: 2.88s	remaining: 1.69s
126:	learn: 11.7759765	total: 2.91s	remaining: 1.67s
127:	learn: 11.7024093	total: 2.93s	remaining: 1.65s
128:	learn: 11.6081808	total: 2.95s	remaining: 1.63s
129:	learn: 11.5253220	total: 2.98s	remaining: 1.6s
130:	learn: 11.4331928	total: 3s	remaining: 1.58s
131:	learn: 11.3245888	total: 3.02s	remaining: 1.56s
132:	learn: 11.2624696	total: 3.04s	remaining: 1.53s
133:	learn: 11.1917257	total: 3.06s	remaining: 1.51s
134:	learn: 11.1329960	total: 3.09s	remaining: 1.49s
135:	learn: 10.9864277	total: 3.11s	remaining: 1.46s
136:	learn: 10.9137609	total: 3.14s	remaining: 1.44s
137:	learn: 10.8588357	total: 3.16s	remaining: 1.42s
138:	learn: 10.7899706	total: 3.18s	remaining: 1.4s
139:	learn: 10.7091023	total: 3.2s	remaining: 1.37s
140:	learn: 10.6292879	total: 3.22s	remaining: 1.35s
141:	learn: 10.5787824	total: 3.24s	remaining: 1.32s
142:	learn: 10.5123495	total: 3.27s	remaining: 1.3s
143:	learn: 10.4562492	total: 3.28s	remaining: 1.28s
144:	learn: 10.4136062	total: 3.31s	remaining: 1.25s
145:	learn: 10.3583573	total: 3.33s	remaining: 1.23s
146:	learn: 10.2893799	total: 3.35s	remaining: 1.21s
147:	learn: 10.2530112	total: 3.38s	remaining: 1.19s
148:	learn: 10.1988858	total: 3.4s	remaining: 1.17s
149:	learn: 10.1245445	total: 3.43s	remaining: 1.14s
150:	learn: 10.0526167	total: 3.45s	remaining: 1.12s
151:	learn: 9.9689378	total: 3.47s	remaining: 1.1s
152:	learn: 9.8847254	total: 3.49s	remaining: 1.07s
153:	learn: 9.7919570	total: 3.51s	remaining: 1.05s
154:	learn: 9.7062768	total: 3.54s	remaining: 1.03s
155:	learn: 9.6252403	total: 3.57s	remaining: 1.01s
156:	learn: 9.5455325	total: 3.6s	remaining: 986ms
157:	learn: 9.5012998	total: 3.62s	remaining: 963ms
158:	learn: 9.4103337	total: 3.65s	remaining: 941ms
159:	learn: 9.3338806	total: 3.67s	remaining: 918ms
160:	learn: 9.2751782	total: 3.69s	remaining: 895ms
161:	learn: 9.2004277	total: 3.72s	remaining: 872ms
162:	learn: 9.1274732	total: 3.74s	remaining: 849ms
163:	learn: 9.0698305	total: 3.77s	remaining: 827ms
164:	learn: 8.9898767	total: 3.79s	remaining: 805ms
165:	learn: 8.9222029	total: 3.83s	remaining: 784ms
166:	learn: 8.8424832	total: 3.86s	remaining: 763ms
167:	learn: 8.7750285	total: 3.89s	remaining: 740ms
168:	learn: 8.7299391	total: 3.91s	remaining: 718ms
169:	learn: 8.6768424	total: 3.94s	remaining: 695ms
170:	learn: 8.6340612	total: 3.96s	remaining: 671ms
171:	learn: 8.5724179	total: 3.98s	remaining: 649ms
172:	learn: 8.5112656	total: 4.01s	remaining: 626ms
173:	learn: 8.4606698	total: 4.04s	remaining: 604ms
174:	learn: 8.4018801	total: 4.06s	remaining: 581ms
175:	learn: 8.3389272	total: 4.08s	remaining: 557ms
176:	learn: 8.2957437	total: 4.12s	remaining: 535ms
177:	learn: 8.2520990	total: 4.14s	remaining: 512ms
178:	learn: 8.2029616	total: 4.16s	remaining: 488ms
179:	learn: 8.1508536	total: 4.19s	remaining: 465ms
180:	learn: 8.1118269	total: 4.21s	remaining: 442ms
181:	learn: 8.0464124	total: 4.25s	remaining: 420ms
182:	learn: 8.0001657	total: 4.28s	remaining: 397ms
183:	learn: 7.9678925	total: 4.3s	remaining: 374ms
184:	learn: 7.9047528	total: 4.33s	remaining: 351ms
185:	learn: 7.8524257	total: 4.36s	remaining: 328ms
186:	learn: 7.8097585	total: 4.38s	remaining: 305ms
187:	learn: 7.7807698	total: 4.41s	remaining: 281ms
188:	learn: 7.7460982	total: 4.43s	remaining: 258ms
189:	learn: 7.7136520	total: 4.45s	remaining: 234ms
190:	learn: 7.6792940	total: 4.49s	remaining: 211ms
191:	learn: 7.6218622	total: 4.51s	remaining: 188ms
192:	learn: 7.5944741	total: 4.54s	remaining: 165ms
193:	learn: 7.5522715	total: 4.56s	remaining: 141ms
194:	learn: 7.4858764	total: 4.58s	remaining: 118ms
195:	learn: 7.4564326	total: 4.62s	remaining: 94.2ms
196:	learn: 7.4027831	total: 4.64s	remaining: 70.6ms
197:	learn: 7.3494320	total: 4.66s	remaining: 47.1ms
198:	learn: 7.3217547	total: 4.7s	remaining: 23.6ms
199:	learn: 7.2645986	total: 4.73s	remaining: 0us
0:	learn: 27.3441720	total: 22.7ms	remaining: 2.25s
1:	learn: 26.7159954	total: 47.8ms	remaining: 2.34s
2:	learn: 26.0850318	total: 78.1ms	remaining: 2.52s
3:	learn: 25.4039656	total: 104ms	remaining: 2.49s
4:	learn: 24.7930659	total: 126ms	remaining: 2.39s
5:	learn: 24.2028590	total: 149ms	remaining: 2.34s
6:	learn: 23.6622902	total: 171ms	remaining: 2.27s
7:	learn: 23.1531175	total: 194ms	remaining: 2.23s
8:	learn: 22.7050792	total: 217ms	remaining: 2.19s
9:	learn: 22.2151788	total: 240ms	remaining: 2.16s
10:	learn: 21.7708844	total: 263ms	remaining: 2.13s
11:	learn: 21.2587174	total: 290ms	remaining: 2.12s
12:	learn: 20.7559870	total: 321ms	remaining: 2.15s
13:	learn: 20.3040842	total: 344ms	remaining: 2.11s
14:	learn: 19.9019524	total: 368ms	remaining: 2.09s
15:	learn: 19.5186012	total: 392ms	remaining: 2.06s
16:	learn: 19.1521621	total: 414ms	remaining: 2.02s
17:	learn: 18.7652180	total: 437ms	remaining: 1.99s
18:	learn: 18.4446446	total: 459ms	remaining: 1.96s
19:	learn: 18.0977650	total: 482ms	remaining: 1.93s
20:	learn: 17.7791328	total: 506ms	remaining: 1.9s
21:	learn: 17.4777648	total: 533ms	remaining: 1.89s
22:	learn: 17.1794361	total: 555ms	remaining: 1.86s
23:	learn: 16.8685032	total: 578ms	remaining: 1.83s
24:	learn: 16.6274695	total: 598ms	remaining: 1.79s
25:	learn: 16.3071099	total: 619ms	remaining: 1.76s
26:	learn: 16.0249663	total: 641ms	remaining: 1.73s
27:	learn: 15.7535309	total: 664ms	remaining: 1.71s
28:	learn: 15.4777235	total: 689ms	remaining: 1.69s
29:	learn: 15.2410825	total: 713ms	remaining: 1.66s
30:	learn: 15.0133002	total: 748ms	remaining: 1.66s
31:	learn: 14.8018912	total: 772ms	remaining: 1.64s
32:	learn: 14.5701546	total: 796ms	remaining: 1.62s
33:	learn: 14.3799060	total: 819ms	remaining: 1.59s
34:	learn: 14.0975095	total: 843ms	remaining: 1.56s
35:	learn: 13.8873493	total: 866ms	remaining: 1.54s
36:	learn: 13.6812023	total: 886ms	remaining: 1.51s
37:	learn: 13.4943017	total: 910ms	remaining: 1.48s
38:	learn: 13.3224094	total: 933ms	remaining: 1.46s
39:	learn: 13.0967901	total: 963ms	remaining: 1.44s
40:	learn: 12.9138190	total: 986ms	remaining: 1.42s
41:	learn: 12.7764458	total: 1.01s	remaining: 1.39s
42:	learn: 12.6593656	total: 1.03s	remaining: 1.36s
43:	learn: 12.5051105	total: 1.05s	remaining: 1.33s
44:	learn: 12.3057146	total: 1.07s	remaining: 1.31s
45:	learn: 12.1487674	total: 1.09s	remaining: 1.28s
46:	learn: 11.9614903	total: 1.12s	remaining: 1.26s
47:	learn: 11.7921265	total: 1.14s	remaining: 1.24s
48:	learn: 11.6572640	total: 1.17s	remaining: 1.22s
49:	learn: 11.5251463	total: 1.2s	remaining: 1.2s
50:	learn: 11.3789931	total: 1.22s	remaining: 1.17s
51:	learn: 11.2691375	total: 1.24s	remaining: 1.15s
52:	learn: 11.1161131	total: 1.26s	remaining: 1.12s
53:	learn: 11.0246399	total: 1.29s	remaining: 1.1s
54:	learn: 10.9152420	total: 1.31s	remaining: 1.07s
55:	learn: 10.7746769	total: 1.33s	remaining: 1.04s
56:	learn: 10.6222917	total: 1.35s	remaining: 1.02s
57:	learn: 10.5096115	total: 1.38s	remaining: 996ms
58:	learn: 10.3857030	total: 1.4s	remaining: 975ms
59:	learn: 10.2789057	total: 1.43s	remaining: 952ms
60:	learn: 10.1490749	total: 1.45s	remaining: 927ms
61:	learn: 10.0553291	total: 1.47s	remaining: 902ms
62:	learn: 9.9351043	total: 1.49s	remaining: 877ms
63:	learn: 9.8245261	total: 1.52s	remaining: 853ms
64:	learn: 9.7207577	total: 1.54s	remaining: 829ms
65:	learn: 9.5920661	total: 1.56s	remaining: 804ms
66:	learn: 9.4832767	total: 1.58s	remaining: 780ms
67:	learn: 9.3724149	total: 1.61s	remaining: 760ms
68:	learn: 9.2459801	total: 1.64s	remaining: 737ms
69:	learn: 9.1740635	total: 1.67s	remaining: 714ms
70:	learn: 9.1015730	total: 1.69s	remaining: 690ms
71:	learn: 9.0196460	total: 1.71s	remaining: 666ms
72:	learn: 8.9458977	total: 1.74s	remaining: 642ms
73:	learn: 8.8434400	total: 1.75s	remaining: 617ms
74:	learn: 8.7495151	total: 1.78s	remaining: 592ms
75:	learn: 8.6521348	total: 1.8s	remaining: 568ms
76:	learn: 8.5654483	total: 1.82s	remaining: 545ms
77:	learn: 8.4965765	total: 1.85s	remaining: 522ms
78:	learn: 8.4308736	total: 1.87s	remaining: 498ms
79:	learn: 8.3675601	total: 1.9s	remaining: 474ms
80:	learn: 8.3193887	total: 1.92s	remaining: 451ms
81:	learn: 8.2507990	total: 1.94s	remaining: 427ms
82:	learn: 8.1583259	total: 1.97s	remaining: 403ms
83:	learn: 8.0995902	total: 1.99s	remaining: 378ms
84:	learn: 8.0236655	total: 2.01s	remaining: 355ms
85:	learn: 7.9634698	total: 2.04s	remaining: 332ms
86:	learn: 7.9109081	total: 2.06s	remaining: 308ms
87:	learn: 7.8385006	total: 2.08s	remaining: 284ms
88:	learn: 7.7859488	total: 2.11s	remaining: 260ms
89:	learn: 7.7270142	total: 2.13s	remaining: 237ms
90:	learn: 7.6774253	total: 2.15s	remaining: 213ms
91:	learn: 7.6126552	total: 2.17s	remaining: 189ms
92:	learn: 7.5392178	total: 2.19s	remaining: 165ms
93:	learn: 7.4745082	total: 2.22s	remaining: 142ms
94:	learn: 7.4106939	total: 2.24s	remaining: 118ms
95:	learn: 7.3573350	total: 2.27s	remaining: 94.5ms
96:	learn: 7.2889777	total: 2.29s	remaining: 70.8ms
97:	learn: 7.2204939	total: 2.31s	remaining: 47.2ms
98:	learn: 7.1646465	total: 2.33s	remaining: 23.6ms
99:	learn: 7.1204610	total: 2.35s	remaining: 0us
0:	learn: 42.5494645	total: 20.8ms	remaining: 2.05s
1:	learn: 41.2913513	total: 42.7ms	remaining: 2.09s
2:	learn: 40.1676527	total: 65.2ms	remaining: 2.11s
3:	learn: 38.7664819	total: 95.9ms	remaining: 2.3s
4:	learn: 37.5407492	total: 119ms	remaining: 2.27s
5:	learn: 36.4295331	total: 141ms	remaining: 2.21s
6:	learn: 35.2895967	total: 162ms	remaining: 2.15s
7:	learn: 34.1884539	total: 185ms	remaining: 2.13s
8:	learn: 33.1817690	total: 205ms	remaining: 2.07s
9:	learn: 32.3518195	total: 225ms	remaining: 2.02s
10:	learn: 31.4837515	total: 245ms	remaining: 1.98s
11:	learn: 30.7255972	total: 266ms	remaining: 1.95s
12:	learn: 29.9298648	total: 287ms	remaining: 1.92s
13:	learn: 29.0574249	total: 315ms	remaining: 1.94s
14:	learn: 28.4097384	total: 338ms	remaining: 1.91s
15:	learn: 27.5317445	total: 359ms	remaining: 1.88s
16:	learn: 26.7911946	total: 379ms	remaining: 1.85s
17:	learn: 26.1103465	total: 401ms	remaining: 1.82s
18:	learn: 25.5295903	total: 422ms	remaining: 1.8s
19:	learn: 24.8544960	total: 443ms	remaining: 1.77s
20:	learn: 24.2772682	total: 463ms	remaining: 1.74s
21:	learn: 23.6936944	total: 485ms	remaining: 1.72s
22:	learn: 23.1300945	total: 507ms	remaining: 1.7s
23:	learn: 22.5333494	total: 540ms	remaining: 1.71s
24:	learn: 22.0553465	total: 563ms	remaining: 1.69s
25:	learn: 21.6253628	total: 585ms	remaining: 1.67s
26:	learn: 21.1396219	total: 608ms	remaining: 1.64s
27:	learn: 20.7382905	total: 631ms	remaining: 1.62s
28:	learn: 20.3233915	total: 652ms	remaining: 1.59s
29:	learn: 19.9323992	total: 674ms	remaining: 1.57s
30:	learn: 19.5650439	total: 695ms	remaining: 1.55s
31:	learn: 19.2165649	total: 718ms	remaining: 1.52s
32:	learn: 18.8890056	total: 744ms	remaining: 1.51s
33:	learn: 18.5523762	total: 768ms	remaining: 1.49s
34:	learn: 18.2666116	total: 789ms	remaining: 1.46s
35:	learn: 17.9216926	total: 811ms	remaining: 1.44s
36:	learn: 17.6118879	total: 833ms	remaining: 1.42s
37:	learn: 17.2653313	total: 853ms	remaining: 1.39s
38:	learn: 16.9946585	total: 873ms	remaining: 1.36s
39:	learn: 16.6842506	total: 894ms	remaining: 1.34s
40:	learn: 16.4102287	total: 915ms	remaining: 1.32s
41:	learn: 16.2288795	total: 940ms	remaining: 1.3s
42:	learn: 15.9623692	total: 965ms	remaining: 1.28s
43:	learn: 15.7308231	total: 987ms	remaining: 1.26s
44:	learn: 15.4695555	total: 1.01s	remaining: 1.23s
45:	learn: 15.2706809	total: 1.03s	remaining: 1.21s
46:	learn: 15.0182699	total: 1.05s	remaining: 1.19s
47:	learn: 14.7702088	total: 1.07s	remaining: 1.16s
48:	learn: 14.6303566	total: 1.09s	remaining: 1.14s
49:	learn: 14.4038016	total: 1.11s	remaining: 1.11s
50:	learn: 14.2309807	total: 1.14s	remaining: 1.09s
51:	learn: 14.0308425	total: 1.16s	remaining: 1.07s
52:	learn: 13.8201931	total: 1.18s	remaining: 1.05s
53:	learn: 13.6070078	total: 1.2s	remaining: 1.02s
54:	learn: 13.4230690	total: 1.23s	remaining: 1.01s
55:	learn: 13.2368649	total: 1.25s	remaining: 986ms
56:	learn: 13.0449556	total: 1.28s	remaining: 965ms
57:	learn: 12.8375669	total: 1.3s	remaining: 945ms
58:	learn: 12.6795194	total: 1.33s	remaining: 924ms
59:	learn: 12.5197211	total: 1.35s	remaining: 902ms
60:	learn: 12.4011717	total: 1.39s	remaining: 886ms
61:	learn: 12.2396104	total: 1.41s	remaining: 867ms
62:	learn: 12.0647878	total: 1.44s	remaining: 845ms
63:	learn: 11.9247719	total: 1.46s	remaining: 823ms
64:	learn: 11.7923634	total: 1.49s	remaining: 801ms
65:	learn: 11.6628246	total: 1.51s	remaining: 780ms
66:	learn: 11.5688935	total: 1.54s	remaining: 757ms
67:	learn: 11.4345056	total: 1.57s	remaining: 740ms
68:	learn: 11.3136955	total: 1.6s	remaining: 718ms
69:	learn: 11.2040357	total: 1.62s	remaining: 695ms
70:	learn: 11.1067773	total: 1.64s	remaining: 672ms
71:	learn: 10.9728105	total: 1.67s	remaining: 648ms
72:	learn: 10.8338607	total: 1.69s	remaining: 625ms
73:	learn: 10.7202016	total: 1.71s	remaining: 601ms
74:	learn: 10.5983746	total: 1.73s	remaining: 578ms
75:	learn: 10.4882458	total: 1.76s	remaining: 555ms
76:	learn: 10.3827604	total: 1.78s	remaining: 533ms
77:	learn: 10.2485726	total: 1.82s	remaining: 514ms
78:	learn: 10.1524716	total: 1.85s	remaining: 492ms
79:	learn: 10.0765127	total: 1.88s	remaining: 469ms
80:	learn: 9.9617067	total: 1.9s	remaining: 446ms
81:	learn: 9.8357151	total: 1.93s	remaining: 423ms
82:	learn: 9.7311644	total: 1.95s	remaining: 400ms
83:	learn: 9.6314802	total: 1.97s	remaining: 376ms
84:	learn: 9.5137958	total: 2s	remaining: 353ms
85:	learn: 9.4420485	total: 2.02s	remaining: 329ms
86:	learn: 9.3959294	total: 2.05s	remaining: 307ms
87:	learn: 9.3057742	total: 2.08s	remaining: 284ms
88:	learn: 9.2031484	total: 2.11s	remaining: 260ms
89:	learn: 9.0996948	total: 2.13s	remaining: 237ms
90:	learn: 9.0492278	total: 2.15s	remaining: 213ms
91:	learn: 8.9400377	total: 2.18s	remaining: 189ms
92:	learn: 8.8904458	total: 2.2s	remaining: 166ms
93:	learn: 8.8102982	total: 2.22s	remaining: 142ms
94:	learn: 8.7445451	total: 2.26s	remaining: 119ms
95:	learn: 8.6796106	total: 2.28s	remaining: 95.2ms
96:	learn: 8.5875790	total: 2.32s	remaining: 71.7ms
97:	learn: 8.5086871	total: 2.34s	remaining: 47.8ms
98:	learn: 8.4547244	total: 2.37s	remaining: 23.9ms
99:	learn: 8.3841281	total: 2.39s	remaining: 0us
0:	learn: 46.2258117	total: 3.07ms	remaining: 304ms
1:	learn: 45.1253456	total: 33.3ms	remaining: 1.63s
2:	learn: 43.7311767	total: 60.4ms	remaining: 1.95s
3:	learn: 42.4252819	total: 85.5ms	remaining: 2.05s
4:	learn: 41.1436655	total: 109ms	remaining: 2.06s
5:	learn: 40.0337136	total: 133ms	remaining: 2.08s
6:	learn: 38.9102686	total: 157ms	remaining: 2.09s
7:	learn: 37.7859737	total: 178ms	remaining: 2.04s
8:	learn: 36.7646905	total: 200ms	remaining: 2.02s
9:	learn: 35.9495481	total: 220ms	remaining: 1.98s
10:	learn: 35.0558185	total: 244ms	remaining: 1.98s
11:	learn: 34.1958090	total: 268ms	remaining: 1.96s
12:	learn: 33.3514013	total: 299ms	remaining: 2s
13:	learn: 32.3317086	total: 323ms	remaining: 1.99s
14:	learn: 31.5611046	total: 347ms	remaining: 1.96s
15:	learn: 30.6373573	total: 369ms	remaining: 1.94s
16:	learn: 29.8883669	total: 393ms	remaining: 1.92s
17:	learn: 29.2985952	total: 415ms	remaining: 1.89s
18:	learn: 28.6360550	total: 437ms	remaining: 1.86s
19:	learn: 27.9757056	total: 460ms	remaining: 1.84s
20:	learn: 27.2585835	total: 484ms	remaining: 1.82s
21:	learn: 26.6366391	total: 514ms	remaining: 1.82s
22:	learn: 26.1055455	total: 537ms	remaining: 1.8s
23:	learn: 25.4961568	total: 559ms	remaining: 1.77s
24:	learn: 25.1037435	total: 580ms	remaining: 1.74s
25:	learn: 24.5258982	total: 602ms	remaining: 1.71s
26:	learn: 23.9974764	total: 625ms	remaining: 1.69s
27:	learn: 23.5108419	total: 645ms	remaining: 1.66s
28:	learn: 23.0835773	total: 668ms	remaining: 1.64s
29:	learn: 22.5744350	total: 690ms	remaining: 1.61s
30:	learn: 22.1357783	total: 723ms	remaining: 1.61s
31:	learn: 21.7316226	total: 747ms	remaining: 1.59s
32:	learn: 21.4082899	total: 770ms	remaining: 1.56s
33:	learn: 20.9640138	total: 793ms	remaining: 1.54s
34:	learn: 20.6379417	total: 817ms	remaining: 1.52s
35:	learn: 20.2688010	total: 839ms	remaining: 1.49s
36:	learn: 19.8479214	total: 861ms	remaining: 1.47s
37:	learn: 19.5684638	total: 885ms	remaining: 1.44s
38:	learn: 19.1826919	total: 906ms	remaining: 1.42s
39:	learn: 18.9583308	total: 937ms	remaining: 1.41s
40:	learn: 18.6736002	total: 960ms	remaining: 1.38s
41:	learn: 18.3525328	total: 983ms	remaining: 1.36s
42:	learn: 17.9954191	total: 1s	remaining: 1.33s
43:	learn: 17.6991520	total: 1.03s	remaining: 1.31s
44:	learn: 17.3697888	total: 1.05s	remaining: 1.28s
45:	learn: 17.0519636	total: 1.07s	remaining: 1.26s
46:	learn: 16.7829795	total: 1.1s	remaining: 1.24s
47:	learn: 16.5108695	total: 1.12s	remaining: 1.22s
48:	learn: 16.2366816	total: 1.15s	remaining: 1.2s
49:	learn: 15.9947350	total: 1.18s	remaining: 1.18s
50:	learn: 15.7513561	total: 1.2s	remaining: 1.15s
51:	learn: 15.4328481	total: 1.22s	remaining: 1.13s
52:	learn: 15.2497907	total: 1.25s	remaining: 1.11s
53:	learn: 15.0417076	total: 1.27s	remaining: 1.08s
54:	learn: 14.8861891	total: 1.29s	remaining: 1.06s
55:	learn: 14.6497794	total: 1.31s	remaining: 1.03s
56:	learn: 14.3664771	total: 1.34s	remaining: 1.01s
57:	learn: 14.2358168	total: 1.36s	remaining: 989ms
58:	learn: 14.0712722	total: 1.39s	remaining: 964ms
59:	learn: 13.9191649	total: 1.41s	remaining: 938ms
60:	learn: 13.7032356	total: 1.43s	remaining: 913ms
61:	learn: 13.5029041	total: 1.45s	remaining: 889ms
62:	learn: 13.3568908	total: 1.47s	remaining: 865ms
63:	learn: 13.1332696	total: 1.5s	remaining: 841ms
64:	learn: 13.0323137	total: 1.52s	remaining: 818ms
65:	learn: 12.8622078	total: 1.54s	remaining: 795ms
66:	learn: 12.7088186	total: 1.57s	remaining: 775ms
67:	learn: 12.5524646	total: 1.6s	remaining: 753ms
68:	learn: 12.4646011	total: 1.62s	remaining: 729ms
69:	learn: 12.3900687	total: 1.64s	remaining: 705ms
70:	learn: 12.2908367	total: 1.67s	remaining: 681ms
71:	learn: 12.1294405	total: 1.69s	remaining: 658ms
72:	learn: 12.0359996	total: 1.71s	remaining: 633ms
73:	learn: 11.9244352	total: 1.73s	remaining: 609ms
74:	learn: 11.8312038	total: 1.75s	remaining: 585ms
75:	learn: 11.6622123	total: 1.78s	remaining: 562ms
76:	learn: 11.5959180	total: 1.81s	remaining: 540ms
77:	learn: 11.4538852	total: 1.83s	remaining: 517ms
78:	learn: 11.3700375	total: 1.86s	remaining: 493ms
79:	learn: 11.2101447	total: 1.88s	remaining: 469ms
80:	learn: 11.0614634	total: 1.9s	remaining: 445ms
81:	learn: 10.9029225	total: 1.92s	remaining: 422ms
82:	learn: 10.7792030	total: 1.94s	remaining: 398ms
83:	learn: 10.6279451	total: 1.97s	remaining: 375ms
84:	learn: 10.5530267	total: 1.99s	remaining: 352ms
85:	learn: 10.4577150	total: 2.02s	remaining: 329ms
86:	learn: 10.4076417	total: 2.05s	remaining: 306ms
87:	learn: 10.3166632	total: 2.07s	remaining: 282ms
88:	learn: 10.2018151	total: 2.09s	remaining: 259ms
89:	learn: 10.0698484	total: 2.12s	remaining: 235ms
90:	learn: 10.0162824	total: 2.14s	remaining: 212ms
91:	learn: 9.9352639	total: 2.16s	remaining: 188ms
92:	learn: 9.8316734	total: 2.18s	remaining: 164ms
93:	learn: 9.7195471	total: 2.2s	remaining: 141ms
94:	learn: 9.5914894	total: 2.23s	remaining: 118ms
95:	learn: 9.5151851	total: 2.26s	remaining: 94ms
96:	learn: 9.3911314	total: 2.28s	remaining: 70.5ms
97:	learn: 9.3417706	total: 2.3s	remaining: 46.9ms
98:	learn: 9.2708440	total: 2.32s	remaining: 23.4ms
99:	learn: 9.1660321	total: 2.34s	remaining: 0us
0:	learn: 45.8627255	total: 2.84ms	remaining: 281ms
1:	learn: 44.7432040	total: 25.1ms	remaining: 1.23s
2:	learn: 43.4398568	total: 56.1ms	remaining: 1.81s
3:	learn: 42.1495515	total: 81.4ms	remaining: 1.95s
4:	learn: 40.9712633	total: 105ms	remaining: 1.99s
5:	learn: 40.0119591	total: 128ms	remaining: 2s
6:	learn: 39.1914360	total: 151ms	remaining: 2.01s
7:	learn: 38.1861536	total: 171ms	remaining: 1.97s
8:	learn: 37.1477128	total: 191ms	remaining: 1.93s
9:	learn: 36.3044702	total: 212ms	remaining: 1.9s
10:	learn: 35.5837917	total: 233ms	remaining: 1.89s
11:	learn: 34.8664158	total: 255ms	remaining: 1.87s
12:	learn: 33.9129833	total: 282ms	remaining: 1.89s
13:	learn: 32.9094642	total: 307ms	remaining: 1.89s
14:	learn: 32.1965787	total: 328ms	remaining: 1.86s
15:	learn: 31.4598238	total: 348ms	remaining: 1.83s
16:	learn: 30.6578027	total: 368ms	remaining: 1.8s
17:	learn: 30.0227468	total: 389ms	remaining: 1.77s
18:	learn: 29.2954728	total: 408ms	remaining: 1.74s
19:	learn: 28.5928084	total: 428ms	remaining: 1.71s
20:	learn: 27.9445984	total: 450ms	remaining: 1.69s
21:	learn: 27.3493298	total: 473ms	remaining: 1.68s
22:	learn: 26.8491966	total: 499ms	remaining: 1.67s
23:	learn: 26.3177453	total: 528ms	remaining: 1.67s
24:	learn: 25.8134533	total: 550ms	remaining: 1.65s
25:	learn: 25.2000018	total: 573ms	remaining: 1.63s
26:	learn: 24.6570461	total: 596ms	remaining: 1.61s
27:	learn: 24.1062982	total: 615ms	remaining: 1.58s
28:	learn: 23.7489370	total: 636ms	remaining: 1.56s
29:	learn: 23.2050536	total: 657ms	remaining: 1.53s
30:	learn: 22.7824379	total: 679ms	remaining: 1.51s
31:	learn: 22.4052655	total: 706ms	remaining: 1.5s
32:	learn: 21.9525639	total: 729ms	remaining: 1.48s
33:	learn: 21.5482900	total: 751ms	remaining: 1.46s
34:	learn: 21.1900983	total: 772ms	remaining: 1.43s
35:	learn: 20.8243957	total: 792ms	remaining: 1.41s
36:	learn: 20.4401288	total: 813ms	remaining: 1.38s
37:	learn: 20.0960622	total: 832ms	remaining: 1.36s
38:	learn: 19.7795108	total: 851ms	remaining: 1.33s
39:	learn: 19.4922451	total: 873ms	remaining: 1.31s
40:	learn: 19.1827582	total: 895ms	remaining: 1.29s
41:	learn: 18.8902445	total: 921ms	remaining: 1.27s
42:	learn: 18.6833086	total: 951ms	remaining: 1.26s
43:	learn: 18.4251972	total: 972ms	remaining: 1.24s
44:	learn: 18.1471037	total: 995ms	remaining: 1.22s
45:	learn: 17.8420017	total: 1.02s	remaining: 1.19s
46:	learn: 17.6101998	total: 1.04s	remaining: 1.17s
47:	learn: 17.3353656	total: 1.06s	remaining: 1.15s
48:	learn: 17.1194789	total: 1.08s	remaining: 1.13s
49:	learn: 16.8898454	total: 1.1s	remaining: 1.1s
50:	learn: 16.6657497	total: 1.13s	remaining: 1.08s
51:	learn: 16.3832867	total: 1.16s	remaining: 1.07s
52:	learn: 16.2098226	total: 1.18s	remaining: 1.05s
53:	learn: 16.0045707	total: 1.2s	remaining: 1.02s
54:	learn: 15.8512887	total: 1.22s	remaining: 999ms
55:	learn: 15.6485628	total: 1.24s	remaining: 977ms
56:	learn: 15.4841428	total: 1.26s	remaining: 954ms
57:	learn: 15.3383158	total: 1.28s	remaining: 931ms
58:	learn: 15.2056282	total: 1.3s	remaining: 907ms
59:	learn: 15.0698337	total: 1.33s	remaining: 885ms
60:	learn: 14.8487796	total: 1.35s	remaining: 864ms
61:	learn: 14.7255751	total: 1.38s	remaining: 846ms
62:	learn: 14.6100414	total: 1.4s	remaining: 824ms
63:	learn: 14.3864212	total: 1.42s	remaining: 802ms
64:	learn: 14.2800460	total: 1.46s	remaining: 786ms
65:	learn: 14.1017299	total: 1.48s	remaining: 764ms
66:	learn: 13.9655015	total: 1.5s	remaining: 741ms
67:	learn: 13.8065764	total: 1.53s	remaining: 719ms
68:	learn: 13.7473285	total: 1.55s	remaining: 698ms
69:	learn: 13.6967309	total: 1.58s	remaining: 679ms
70:	learn: 13.6253255	total: 1.61s	remaining: 657ms
71:	learn: 13.4974926	total: 1.63s	remaining: 635ms
72:	learn: 13.4142694	total: 1.66s	remaining: 612ms
73:	learn: 13.2902600	total: 1.68s	remaining: 590ms
74:	learn: 13.1816461	total: 1.7s	remaining: 567ms
75:	learn: 13.0809498	total: 1.73s	remaining: 547ms
76:	learn: 12.9772285	total: 1.75s	remaining: 524ms
77:	learn: 12.8413858	total: 1.78s	remaining: 502ms
78:	learn: 12.7615799	total: 1.81s	remaining: 481ms
79:	learn: 12.5808659	total: 1.84s	remaining: 460ms
80:	learn: 12.4938330	total: 1.86s	remaining: 437ms
81:	learn: 12.3745576	total: 1.89s	remaining: 415ms
82:	learn: 12.2474104	total: 1.91s	remaining: 392ms
83:	learn: 12.1582297	total: 1.94s	remaining: 369ms
84:	learn: 12.0528081	total: 1.96s	remaining: 346ms
85:	learn: 11.9483355	total: 2s	remaining: 325ms
86:	learn: 11.8683204	total: 2.02s	remaining: 302ms
87:	learn: 11.7680945	total: 2.05s	remaining: 280ms
88:	learn: 11.6635447	total: 2.07s	remaining: 256ms
89:	learn: 11.5775031	total: 2.1s	remaining: 233ms
90:	learn: 11.4860538	total: 2.12s	remaining: 210ms
91:	learn: 11.3584960	total: 2.14s	remaining: 186ms
92:	learn: 11.2180285	total: 2.17s	remaining: 163ms
93:	learn: 11.0996558	total: 2.19s	remaining: 140ms
94:	learn: 10.9688832	total: 2.21s	remaining: 116ms
95:	learn: 10.9205457	total: 2.24s	remaining: 93.2ms
96:	learn: 10.8462783	total: 2.27s	remaining: 70.1ms
97:	learn: 10.7481890	total: 2.29s	remaining: 46.8ms
98:	learn: 10.6396315	total: 2.31s	remaining: 23.4ms
99:	learn: 10.5895308	total: 2.34s	remaining: 0us
0:	learn: 46.2892189	total: 20.2ms	remaining: 2s
1:	learn: 44.9732744	total: 47.3ms	remaining: 2.32s
2:	learn: 43.8887345	total: 74.3ms	remaining: 2.4s
3:	learn: 42.6526320	total: 98.9ms	remaining: 2.37s
4:	learn: 41.4812505	total: 120ms	remaining: 2.27s
5:	learn: 40.4431224	total: 142ms	remaining: 2.22s
6:	learn: 39.2936749	total: 164ms	remaining: 2.17s
7:	learn: 38.1961652	total: 185ms	remaining: 2.13s
8:	learn: 37.2194841	total: 206ms	remaining: 2.08s
9:	learn: 36.2518666	total: 229ms	remaining: 2.06s
10:	learn: 35.4919224	total: 251ms	remaining: 2.03s
11:	learn: 34.6975877	total: 275ms	remaining: 2.02s
12:	learn: 33.7869362	total: 304ms	remaining: 2.04s
13:	learn: 33.0646033	total: 329ms	remaining: 2.02s
14:	learn: 32.1821772	total: 352ms	remaining: 1.99s
15:	learn: 31.4340749	total: 375ms	remaining: 1.97s
16:	learn: 30.6504198	total: 399ms	remaining: 1.95s
17:	learn: 30.0090260	total: 422ms	remaining: 1.92s
18:	learn: 29.4233143	total: 445ms	remaining: 1.9s
19:	learn: 28.7661957	total: 468ms	remaining: 1.87s
20:	learn: 28.1570594	total: 490ms	remaining: 1.84s
21:	learn: 27.6140124	total: 521ms	remaining: 1.85s
22:	learn: 27.0130709	total: 544ms	remaining: 1.82s
23:	learn: 26.2648081	total: 565ms	remaining: 1.79s
24:	learn: 25.7963649	total: 588ms	remaining: 1.76s
25:	learn: 25.2713860	total: 609ms	remaining: 1.73s
26:	learn: 24.8080692	total: 632ms	remaining: 1.71s
27:	learn: 24.3042862	total: 655ms	remaining: 1.68s
28:	learn: 23.9097237	total: 678ms	remaining: 1.66s
29:	learn: 23.4953174	total: 703ms	remaining: 1.64s
30:	learn: 23.0484452	total: 735ms	remaining: 1.64s
31:	learn: 22.7100962	total: 758ms	remaining: 1.61s
32:	learn: 22.1662267	total: 782ms	remaining: 1.59s
33:	learn: 21.7339884	total: 805ms	remaining: 1.56s
34:	learn: 21.3699422	total: 828ms	remaining: 1.54s
35:	learn: 21.0249329	total: 851ms	remaining: 1.51s
36:	learn: 20.6187923	total: 872ms	remaining: 1.49s
37:	learn: 20.2401981	total: 897ms	remaining: 1.46s
38:	learn: 19.9712328	total: 924ms	remaining: 1.44s
39:	learn: 19.6429610	total: 950ms	remaining: 1.42s
40:	learn: 19.3281556	total: 970ms	remaining: 1.4s
41:	learn: 19.0925924	total: 992ms	remaining: 1.37s
42:	learn: 18.8118712	total: 1.01s	remaining: 1.34s
43:	learn: 18.5355748	total: 1.03s	remaining: 1.31s
44:	learn: 18.2783929	total: 1.05s	remaining: 1.29s
45:	learn: 17.9915490	total: 1.07s	remaining: 1.26s
46:	learn: 17.7323317	total: 1.1s	remaining: 1.24s
47:	learn: 17.4448307	total: 1.12s	remaining: 1.21s
48:	learn: 17.2419782	total: 1.15s	remaining: 1.2s
49:	learn: 16.9351352	total: 1.18s	remaining: 1.18s
50:	learn: 16.7728723	total: 1.2s	remaining: 1.16s
51:	learn: 16.5718087	total: 1.23s	remaining: 1.13s
52:	learn: 16.4047483	total: 1.25s	remaining: 1.11s
53:	learn: 16.2888950	total: 1.27s	remaining: 1.09s
54:	learn: 16.1353042	total: 1.3s	remaining: 1.06s
55:	learn: 15.9384012	total: 1.32s	remaining: 1.04s
56:	learn: 15.7488511	total: 1.34s	remaining: 1.01s
57:	learn: 15.5682846	total: 1.36s	remaining: 988ms
58:	learn: 15.3488716	total: 1.39s	remaining: 967ms
59:	learn: 15.2291272	total: 1.41s	remaining: 942ms
60:	learn: 15.0582519	total: 1.43s	remaining: 917ms
61:	learn: 14.8478458	total: 1.46s	remaining: 892ms
62:	learn: 14.6663416	total: 1.48s	remaining: 867ms
63:	learn: 14.4830825	total: 1.5s	remaining: 843ms
64:	learn: 14.3300895	total: 1.52s	remaining: 818ms
65:	learn: 14.1168590	total: 1.54s	remaining: 794ms
66:	learn: 13.9783298	total: 1.56s	remaining: 770ms
67:	learn: 13.8132857	total: 1.59s	remaining: 747ms
68:	learn: 13.7050863	total: 1.62s	remaining: 726ms
69:	learn: 13.5742501	total: 1.64s	remaining: 703ms
70:	learn: 13.4851362	total: 1.67s	remaining: 680ms
71:	learn: 13.3300610	total: 1.69s	remaining: 656ms
72:	learn: 13.2223060	total: 1.71s	remaining: 632ms
73:	learn: 13.0706731	total: 1.73s	remaining: 608ms
74:	learn: 12.9178099	total: 1.75s	remaining: 584ms
75:	learn: 12.7954645	total: 1.77s	remaining: 560ms
76:	learn: 12.7133688	total: 1.8s	remaining: 537ms
77:	learn: 12.5745537	total: 1.82s	remaining: 515ms
78:	learn: 12.4765302	total: 1.85s	remaining: 491ms
79:	learn: 12.3609145	total: 1.87s	remaining: 467ms
80:	learn: 12.2437759	total: 1.89s	remaining: 443ms
81:	learn: 12.1583763	total: 1.91s	remaining: 419ms
82:	learn: 12.0202500	total: 1.93s	remaining: 396ms
83:	learn: 11.9125166	total: 1.95s	remaining: 372ms
84:	learn: 11.8100729	total: 1.97s	remaining: 348ms
85:	learn: 11.7509521	total: 2s	remaining: 326ms
86:	learn: 11.6448436	total: 2.02s	remaining: 303ms
87:	learn: 11.5550170	total: 2.05s	remaining: 279ms
88:	learn: 11.4624708	total: 2.07s	remaining: 256ms
89:	learn: 11.3547761	total: 2.09s	remaining: 233ms
90:	learn: 11.2513910	total: 2.11s	remaining: 209ms
91:	learn: 11.1414483	total: 2.13s	remaining: 186ms
92:	learn: 11.0742264	total: 2.16s	remaining: 162ms
93:	learn: 10.9721772	total: 2.18s	remaining: 139ms
94:	learn: 10.9118054	total: 2.2s	remaining: 116ms
95:	learn: 10.8465290	total: 2.23s	remaining: 92.8ms
96:	learn: 10.7451745	total: 2.25s	remaining: 69.7ms
97:	learn: 10.6173565	total: 2.27s	remaining: 46.4ms
98:	learn: 10.5562158	total: 2.29s	remaining: 23.1ms
99:	learn: 10.4564960	total: 2.31s	remaining: 0us
0:	learn: 27.6871645	total: 5.3ms	remaining: 525ms
1:	learn: 27.3312003	total: 24.5ms	remaining: 1.2s
2:	learn: 26.9359558	total: 29.7ms	remaining: 960ms
3:	learn: 26.6055364	total: 34.7ms	remaining: 832ms
4:	learn: 26.1664924	total: 39.7ms	remaining: 755ms
5:	learn: 25.8515393	total: 45ms	remaining: 704ms
6:	learn: 25.4620036	total: 49.8ms	remaining: 662ms
7:	learn: 25.1669741	total: 54.9ms	remaining: 631ms
8:	learn: 24.8455454	total: 63.7ms	remaining: 644ms
9:	learn: 24.5106323	total: 75.2ms	remaining: 677ms
10:	learn: 24.1915228	total: 85.2ms	remaining: 689ms
11:	learn: 23.9076053	total: 94.4ms	remaining: 692ms
12:	learn: 23.6692445	total: 100ms	remaining: 671ms
13:	learn: 23.4343504	total: 106ms	remaining: 652ms
14:	learn: 23.2425280	total: 113ms	remaining: 638ms
15:	learn: 22.9254142	total: 119ms	remaining: 624ms
16:	learn: 22.6495489	total: 125ms	remaining: 611ms
17:	learn: 22.4343705	total: 131ms	remaining: 597ms
18:	learn: 22.2154202	total: 137ms	remaining: 584ms
19:	learn: 22.0592712	total: 143ms	remaining: 571ms
20:	learn: 21.7971944	total: 149ms	remaining: 559ms
21:	learn: 21.6128930	total: 155ms	remaining: 549ms
22:	learn: 21.3882946	total: 161ms	remaining: 541ms
23:	learn: 21.0912570	total: 167ms	remaining: 529ms
24:	learn: 20.8922857	total: 172ms	remaining: 516ms
25:	learn: 20.7150574	total: 177ms	remaining: 505ms
26:	learn: 20.5673183	total: 183ms	remaining: 494ms
27:	learn: 20.4331275	total: 188ms	remaining: 483ms
28:	learn: 20.2782866	total: 193ms	remaining: 473ms
29:	learn: 20.1061525	total: 198ms	remaining: 462ms
30:	learn: 19.9225948	total: 203ms	remaining: 452ms
31:	learn: 19.7809193	total: 208ms	remaining: 442ms
32:	learn: 19.6057771	total: 213ms	remaining: 432ms
33:	learn: 19.4391243	total: 218ms	remaining: 424ms
34:	learn: 19.2234365	total: 223ms	remaining: 415ms
35:	learn: 19.0214424	total: 228ms	remaining: 406ms
36:	learn: 18.8990643	total: 234ms	remaining: 398ms
37:	learn: 18.7473635	total: 239ms	remaining: 390ms
38:	learn: 18.6125192	total: 244ms	remaining: 382ms
39:	learn: 18.4977949	total: 250ms	remaining: 374ms
40:	learn: 18.3914568	total: 255ms	remaining: 367ms
41:	learn: 18.2541544	total: 260ms	remaining: 359ms
42:	learn: 18.1038984	total: 265ms	remaining: 351ms
43:	learn: 17.9706172	total: 270ms	remaining: 344ms
44:	learn: 17.8198810	total: 279ms	remaining: 341ms
45:	learn: 17.7102597	total: 288ms	remaining: 338ms
46:	learn: 17.6148228	total: 296ms	remaining: 333ms
47:	learn: 17.5115365	total: 301ms	remaining: 327ms
48:	learn: 17.3884162	total: 308ms	remaining: 320ms
49:	learn: 17.2857632	total: 313ms	remaining: 313ms
50:	learn: 17.1618843	total: 318ms	remaining: 306ms
51:	learn: 17.0529601	total: 323ms	remaining: 298ms
52:	learn: 16.9330273	total: 328ms	remaining: 291ms
53:	learn: 16.8206672	total: 333ms	remaining: 284ms
54:	learn: 16.7080356	total: 338ms	remaining: 277ms
55:	learn: 16.5874354	total: 343ms	remaining: 270ms
56:	learn: 16.4929860	total: 348ms	remaining: 263ms
57:	learn: 16.4269419	total: 353ms	remaining: 256ms
58:	learn: 16.3474026	total: 358ms	remaining: 249ms
59:	learn: 16.2515784	total: 363ms	remaining: 242ms
60:	learn: 16.1743901	total: 368ms	remaining: 235ms
61:	learn: 16.0389930	total: 373ms	remaining: 228ms
62:	learn: 15.9671636	total: 378ms	remaining: 222ms
63:	learn: 15.8928486	total: 383ms	remaining: 215ms
64:	learn: 15.8303841	total: 388ms	remaining: 209ms
65:	learn: 15.7612266	total: 393ms	remaining: 202ms
66:	learn: 15.6811172	total: 398ms	remaining: 196ms
67:	learn: 15.6262138	total: 402ms	remaining: 189ms
68:	learn: 15.5662508	total: 407ms	remaining: 183ms
69:	learn: 15.4804354	total: 412ms	remaining: 177ms
70:	learn: 15.4054915	total: 417ms	remaining: 170ms
71:	learn: 15.3271396	total: 422ms	remaining: 164ms
72:	learn: 15.2828359	total: 427ms	remaining: 158ms
73:	learn: 15.2197404	total: 432ms	remaining: 152ms
74:	learn: 15.1315902	total: 438ms	remaining: 146ms
75:	learn: 15.0780523	total: 443ms	remaining: 140ms
76:	learn: 14.9959155	total: 449ms	remaining: 134ms
77:	learn: 14.9265008	total: 454ms	remaining: 128ms
78:	learn: 14.8570189	total: 460ms	remaining: 122ms
79:	learn: 14.8060372	total: 465ms	remaining: 116ms
80:	learn: 14.7294676	total: 470ms	remaining: 110ms
81:	learn: 14.6708309	total: 478ms	remaining: 105ms
82:	learn: 14.5765370	total: 486ms	remaining: 99.6ms
83:	learn: 14.5312713	total: 495ms	remaining: 94.3ms
84:	learn: 14.4830327	total: 503ms	remaining: 88.7ms
85:	learn: 14.4296247	total: 511ms	remaining: 83.1ms
86:	learn: 14.3381470	total: 517ms	remaining: 77.2ms
87:	learn: 14.2638093	total: 522ms	remaining: 71.2ms
88:	learn: 14.2288435	total: 528ms	remaining: 65.3ms
89:	learn: 14.1489273	total: 534ms	remaining: 59.3ms
90:	learn: 14.0937923	total: 540ms	remaining: 53.4ms
91:	learn: 14.0334062	total: 546ms	remaining: 47.5ms
92:	learn: 13.9854696	total: 552ms	remaining: 41.6ms
93:	learn: 13.9444203	total: 558ms	remaining: 35.6ms
94:	learn: 13.9101523	total: 564ms	remaining: 29.7ms
95:	learn: 13.8460655	total: 569ms	remaining: 23.7ms
96:	learn: 13.7809420	total: 576ms	remaining: 17.8ms
97:	learn: 13.7270532	total: 582ms	remaining: 11.9ms
98:	learn: 13.6891300	total: 587ms	remaining: 5.93ms
99:	learn: 13.6569696	total: 593ms	remaining: 0us
0:	learn: 42.9754370	total: 5.39ms	remaining: 534ms
1:	learn: 42.2613272	total: 11.1ms	remaining: 542ms
2:	learn: 41.4729969	total: 16.7ms	remaining: 539ms
3:	learn: 40.7127004	total: 21.7ms	remaining: 520ms
4:	learn: 39.7775109	total: 26.8ms	remaining: 510ms
5:	learn: 39.1736663	total: 32.1ms	remaining: 502ms
6:	learn: 38.2981109	total: 40.9ms	remaining: 544ms
7:	learn: 37.5352984	total: 63.9ms	remaining: 734ms
8:	learn: 36.7771474	total: 69.1ms	remaining: 699ms
9:	learn: 36.0581366	total: 73.9ms	remaining: 665ms
10:	learn: 35.3542706	total: 78.7ms	remaining: 637ms
11:	learn: 34.6937007	total: 83.6ms	remaining: 613ms
12:	learn: 34.0408035	total: 88.6ms	remaining: 593ms
13:	learn: 33.3460240	total: 93.7ms	remaining: 575ms
14:	learn: 32.8086243	total: 98.4ms	remaining: 557ms
15:	learn: 32.1934462	total: 104ms	remaining: 544ms
16:	learn: 31.6465519	total: 108ms	remaining: 529ms
17:	learn: 31.2161293	total: 113ms	remaining: 516ms
18:	learn: 30.6730548	total: 118ms	remaining: 504ms
19:	learn: 30.3153659	total: 124ms	remaining: 494ms
20:	learn: 29.7661420	total: 129ms	remaining: 484ms
21:	learn: 29.2095664	total: 134ms	remaining: 474ms
22:	learn: 28.7509592	total: 138ms	remaining: 463ms
23:	learn: 28.4347528	total: 143ms	remaining: 454ms
24:	learn: 28.0551654	total: 149ms	remaining: 446ms
25:	learn: 27.7295952	total: 154ms	remaining: 437ms
26:	learn: 27.2329225	total: 158ms	remaining: 428ms
27:	learn: 26.9970607	total: 163ms	remaining: 419ms
28:	learn: 26.6596544	total: 168ms	remaining: 411ms
29:	learn: 26.2633576	total: 173ms	remaining: 403ms
30:	learn: 25.9761623	total: 178ms	remaining: 396ms
31:	learn: 25.6177371	total: 183ms	remaining: 389ms
32:	learn: 25.2165933	total: 189ms	remaining: 383ms
33:	learn: 24.8012870	total: 194ms	remaining: 376ms
34:	learn: 24.4772532	total: 199ms	remaining: 369ms
35:	learn: 24.1560359	total: 204ms	remaining: 363ms
36:	learn: 23.9688812	total: 209ms	remaining: 356ms
37:	learn: 23.6907607	total: 214ms	remaining: 349ms
38:	learn: 23.3885772	total: 219ms	remaining: 343ms
39:	learn: 23.2234939	total: 225ms	remaining: 337ms
40:	learn: 22.9785026	total: 234ms	remaining: 337ms
41:	learn: 22.6827268	total: 239ms	remaining: 330ms
42:	learn: 22.4564360	total: 245ms	remaining: 324ms
43:	learn: 22.2517827	total: 250ms	remaining: 318ms
44:	learn: 21.9858709	total: 257ms	remaining: 315ms
45:	learn: 21.7595870	total: 266ms	remaining: 312ms
46:	learn: 21.5929957	total: 277ms	remaining: 312ms
47:	learn: 21.4071752	total: 286ms	remaining: 309ms
48:	learn: 21.2186470	total: 291ms	remaining: 303ms
49:	learn: 21.0691824	total: 297ms	remaining: 297ms
50:	learn: 20.8921347	total: 302ms	remaining: 290ms
51:	learn: 20.6834229	total: 308ms	remaining: 284ms
52:	learn: 20.4718988	total: 314ms	remaining: 278ms
53:	learn: 20.3413889	total: 320ms	remaining: 273ms
54:	learn: 20.1785464	total: 326ms	remaining: 267ms
55:	learn: 19.9824314	total: 332ms	remaining: 261ms
56:	learn: 19.8217596	total: 338ms	remaining: 255ms
57:	learn: 19.6318474	total: 344ms	remaining: 249ms
58:	learn: 19.4962236	total: 350ms	remaining: 243ms
59:	learn: 19.3114985	total: 356ms	remaining: 237ms
60:	learn: 19.2181156	total: 361ms	remaining: 231ms
61:	learn: 19.0689614	total: 365ms	remaining: 224ms
62:	learn: 18.9563267	total: 370ms	remaining: 217ms
63:	learn: 18.8343083	total: 375ms	remaining: 211ms
64:	learn: 18.7050033	total: 380ms	remaining: 204ms
65:	learn: 18.6014163	total: 384ms	remaining: 198ms
66:	learn: 18.4910692	total: 389ms	remaining: 192ms
67:	learn: 18.3935194	total: 394ms	remaining: 185ms
68:	learn: 18.2825842	total: 399ms	remaining: 179ms
69:	learn: 18.1519267	total: 404ms	remaining: 173ms
70:	learn: 18.0527651	total: 409ms	remaining: 167ms
71:	learn: 17.9770106	total: 414ms	remaining: 161ms
72:	learn: 17.9151628	total: 419ms	remaining: 155ms
73:	learn: 17.7957486	total: 424ms	remaining: 149ms
74:	learn: 17.7025765	total: 429ms	remaining: 143ms
75:	learn: 17.5957242	total: 434ms	remaining: 137ms
76:	learn: 17.4683244	total: 439ms	remaining: 131ms
77:	learn: 17.3415729	total: 445ms	remaining: 125ms
78:	learn: 17.2886896	total: 450ms	remaining: 120ms
79:	learn: 17.2280922	total: 457ms	remaining: 114ms
80:	learn: 17.1188996	total: 466ms	remaining: 109ms
81:	learn: 17.0236450	total: 473ms	remaining: 104ms
82:	learn: 16.9046661	total: 479ms	remaining: 98.2ms
83:	learn: 16.7930633	total: 486ms	remaining: 92.6ms
84:	learn: 16.6870100	total: 491ms	remaining: 86.7ms
85:	learn: 16.5512107	total: 496ms	remaining: 80.7ms
86:	learn: 16.4353400	total: 501ms	remaining: 74.8ms
87:	learn: 16.3256461	total: 506ms	remaining: 69ms
88:	learn: 16.2968057	total: 511ms	remaining: 63.1ms
89:	learn: 16.2136078	total: 516ms	remaining: 57.3ms
90:	learn: 16.1596096	total: 520ms	remaining: 51.5ms
91:	learn: 16.1164050	total: 525ms	remaining: 45.7ms
92:	learn: 16.0660454	total: 530ms	remaining: 39.9ms
93:	learn: 16.0380611	total: 535ms	remaining: 34.2ms
94:	learn: 15.9494441	total: 540ms	remaining: 28.4ms
95:	learn: 15.8874840	total: 545ms	remaining: 22.7ms
96:	learn: 15.8288234	total: 550ms	remaining: 17ms
97:	learn: 15.7562787	total: 555ms	remaining: 11.3ms
98:	learn: 15.6822678	total: 560ms	remaining: 5.65ms
99:	learn: 15.5901500	total: 564ms	remaining: 0us
0:	learn: 46.4504871	total: 5.34ms	remaining: 529ms
1:	learn: 45.7240114	total: 10.1ms	remaining: 494ms
2:	learn: 45.0308025	total: 15.4ms	remaining: 497ms
3:	learn: 44.1111169	total: 20.5ms	remaining: 492ms
4:	learn: 43.3925352	total: 25.8ms	remaining: 491ms
5:	learn: 42.7856354	total: 31.3ms	remaining: 490ms
6:	learn: 42.1998170	total: 36.5ms	remaining: 485ms
7:	learn: 41.3532708	total: 41.9ms	remaining: 482ms
8:	learn: 40.7314571	total: 53.4ms	remaining: 540ms
9:	learn: 39.9838066	total: 64.4ms	remaining: 579ms
10:	learn: 39.4168243	total: 72.8ms	remaining: 589ms
11:	learn: 39.0148769	total: 80.1ms	remaining: 588ms
12:	learn: 38.3055855	total: 85.9ms	remaining: 575ms
13:	learn: 37.7343198	total: 92.3ms	remaining: 567ms
14:	learn: 37.4177463	total: 98ms	remaining: 555ms
15:	learn: 36.9043298	total: 104ms	remaining: 545ms
16:	learn: 36.3139174	total: 110ms	remaining: 536ms
17:	learn: 35.7200448	total: 116ms	remaining: 528ms
18:	learn: 35.3763394	total: 122ms	remaining: 520ms
19:	learn: 34.7666728	total: 127ms	remaining: 509ms
20:	learn: 34.2642890	total: 132ms	remaining: 497ms
21:	learn: 33.8196936	total: 137ms	remaining: 486ms
22:	learn: 33.4205669	total: 143ms	remaining: 478ms
23:	learn: 32.8565493	total: 149ms	remaining: 470ms
24:	learn: 32.5287132	total: 155ms	remaining: 464ms
25:	learn: 32.2142064	total: 160ms	remaining: 455ms
26:	learn: 31.9258854	total: 164ms	remaining: 444ms
27:	learn: 31.4083665	total: 169ms	remaining: 435ms
28:	learn: 31.1615620	total: 174ms	remaining: 425ms
29:	learn: 30.6948867	total: 178ms	remaining: 416ms
30:	learn: 30.3185108	total: 183ms	remaining: 407ms
31:	learn: 29.9245223	total: 187ms	remaining: 398ms
32:	learn: 29.6683643	total: 192ms	remaining: 390ms
33:	learn: 29.3868143	total: 197ms	remaining: 382ms
34:	learn: 29.1105699	total: 201ms	remaining: 373ms
35:	learn: 28.8274848	total: 206ms	remaining: 365ms
36:	learn: 28.5478288	total: 211ms	remaining: 359ms
37:	learn: 28.2355121	total: 216ms	remaining: 352ms
38:	learn: 28.0182564	total: 221ms	remaining: 346ms
39:	learn: 27.7654405	total: 226ms	remaining: 339ms
40:	learn: 27.5720477	total: 231ms	remaining: 333ms
41:	learn: 27.3182782	total: 237ms	remaining: 327ms
42:	learn: 26.9504431	total: 245ms	remaining: 325ms
43:	learn: 26.7281906	total: 252ms	remaining: 321ms
44:	learn: 26.5390008	total: 259ms	remaining: 317ms
45:	learn: 26.3781338	total: 265ms	remaining: 311ms
46:	learn: 26.1763177	total: 271ms	remaining: 305ms
47:	learn: 25.9417647	total: 277ms	remaining: 300ms
48:	learn: 25.7528045	total: 283ms	remaining: 295ms
49:	learn: 25.6336897	total: 288ms	remaining: 288ms
50:	learn: 25.4800426	total: 293ms	remaining: 281ms
51:	learn: 25.2895681	total: 297ms	remaining: 275ms
52:	learn: 25.0827111	total: 302ms	remaining: 268ms
53:	learn: 24.7987678	total: 307ms	remaining: 261ms
54:	learn: 24.6309982	total: 311ms	remaining: 255ms
55:	learn: 24.3526776	total: 316ms	remaining: 249ms
56:	learn: 24.1689125	total: 321ms	remaining: 242ms
57:	learn: 23.9802039	total: 326ms	remaining: 236ms
58:	learn: 23.8059432	total: 331ms	remaining: 230ms
59:	learn: 23.6006403	total: 335ms	remaining: 224ms
60:	learn: 23.2948382	total: 340ms	remaining: 218ms
61:	learn: 23.1338922	total: 345ms	remaining: 212ms
62:	learn: 22.9581269	total: 351ms	remaining: 206ms
63:	learn: 22.8263127	total: 356ms	remaining: 200ms
64:	learn: 22.6966006	total: 361ms	remaining: 194ms
65:	learn: 22.6012389	total: 366ms	remaining: 189ms
66:	learn: 22.4220244	total: 371ms	remaining: 183ms
67:	learn: 22.3148342	total: 376ms	remaining: 177ms
68:	learn: 22.1543592	total: 381ms	remaining: 171ms
69:	learn: 22.0614050	total: 386ms	remaining: 165ms
70:	learn: 21.9134025	total: 391ms	remaining: 160ms
71:	learn: 21.8198101	total: 395ms	remaining: 154ms
72:	learn: 21.6944173	total: 400ms	remaining: 148ms
73:	learn: 21.4727420	total: 405ms	remaining: 142ms
74:	learn: 21.3000560	total: 410ms	remaining: 137ms
75:	learn: 21.1884740	total: 415ms	remaining: 131ms
76:	learn: 21.0321317	total: 419ms	remaining: 125ms
77:	learn: 20.9371793	total: 424ms	remaining: 120ms
78:	learn: 20.6800341	total: 429ms	remaining: 114ms
79:	learn: 20.5629904	total: 434ms	remaining: 108ms
80:	learn: 20.4098217	total: 439ms	remaining: 103ms
81:	learn: 20.2139261	total: 444ms	remaining: 97.5ms
82:	learn: 20.1024260	total: 449ms	remaining: 92ms
83:	learn: 19.9835855	total: 454ms	remaining: 86.5ms
84:	learn: 19.9018880	total: 459ms	remaining: 81ms
85:	learn: 19.7819843	total: 468ms	remaining: 76.1ms
86:	learn: 19.6352780	total: 479ms	remaining: 71.6ms
87:	learn: 19.4888328	total: 487ms	remaining: 66.4ms
88:	learn: 19.4365121	total: 496ms	remaining: 61.3ms
89:	learn: 19.3427430	total: 502ms	remaining: 55.8ms
90:	learn: 19.2884907	total: 508ms	remaining: 50.3ms
91:	learn: 19.1898932	total: 514ms	remaining: 44.7ms
92:	learn: 19.0775661	total: 520ms	remaining: 39.1ms
93:	learn: 19.0334055	total: 526ms	remaining: 33.6ms
94:	learn: 18.9381916	total: 532ms	remaining: 28ms
95:	learn: 18.8471198	total: 538ms	remaining: 22.4ms
96:	learn: 18.7136478	total: 544ms	remaining: 16.8ms
97:	learn: 18.6633102	total: 551ms	remaining: 11.2ms
98:	learn: 18.5887516	total: 557ms	remaining: 5.63ms
99:	learn: 18.4841597	total: 564ms	remaining: 0us
0:	learn: 46.2172336	total: 6.02ms	remaining: 596ms
1:	learn: 45.4248871	total: 11.5ms	remaining: 564ms
2:	learn: 44.8702937	total: 16.8ms	remaining: 542ms
3:	learn: 44.2019212	total: 22.3ms	remaining: 536ms
4:	learn: 43.4805210	total: 27.3ms	remaining: 520ms
5:	learn: 42.7336269	total: 32.7ms	remaining: 512ms
6:	learn: 42.0396670	total: 38.2ms	remaining: 507ms
7:	learn: 41.5668459	total: 43.5ms	remaining: 501ms
8:	learn: 40.8999125	total: 48.7ms	remaining: 493ms
9:	learn: 40.3358512	total: 58.1ms	remaining: 523ms
10:	learn: 39.7511489	total: 66.6ms	remaining: 539ms
11:	learn: 39.0775416	total: 73.8ms	remaining: 541ms
12:	learn: 38.5204735	total: 79.4ms	remaining: 531ms
13:	learn: 38.2087509	total: 85.7ms	remaining: 527ms
14:	learn: 37.7259552	total: 90.8ms	remaining: 515ms
15:	learn: 37.1646397	total: 96.2ms	remaining: 505ms
16:	learn: 36.7093520	total: 102ms	remaining: 496ms
17:	learn: 36.2212308	total: 107ms	remaining: 488ms
18:	learn: 35.8682156	total: 112ms	remaining: 479ms
19:	learn: 35.6026383	total: 117ms	remaining: 468ms
20:	learn: 35.1739725	total: 122ms	remaining: 461ms
21:	learn: 34.5938003	total: 128ms	remaining: 453ms
22:	learn: 34.1479056	total: 133ms	remaining: 444ms
23:	learn: 33.8759356	total: 138ms	remaining: 438ms
24:	learn: 33.2898426	total: 143ms	remaining: 430ms
25:	learn: 32.9220237	total: 149ms	remaining: 423ms
26:	learn: 32.4324374	total: 153ms	remaining: 414ms
27:	learn: 32.1726327	total: 158ms	remaining: 407ms
28:	learn: 31.8020879	total: 163ms	remaining: 400ms
29:	learn: 31.4329781	total: 168ms	remaining: 392ms
30:	learn: 30.9995282	total: 173ms	remaining: 385ms
31:	learn: 30.6815978	total: 178ms	remaining: 378ms
32:	learn: 30.2991029	total: 183ms	remaining: 372ms
33:	learn: 30.0354202	total: 188ms	remaining: 364ms
34:	learn: 29.7620535	total: 193ms	remaining: 358ms
35:	learn: 29.4552589	total: 197ms	remaining: 351ms
36:	learn: 29.2634399	total: 202ms	remaining: 345ms
37:	learn: 28.8345135	total: 207ms	remaining: 338ms
38:	learn: 28.5551142	total: 212ms	remaining: 332ms
39:	learn: 28.3258809	total: 217ms	remaining: 326ms
40:	learn: 28.0835564	total: 222ms	remaining: 319ms
41:	learn: 27.7517159	total: 227ms	remaining: 313ms
42:	learn: 27.5427595	total: 231ms	remaining: 307ms
43:	learn: 27.3925105	total: 237ms	remaining: 301ms
44:	learn: 27.2377120	total: 241ms	remaining: 295ms
45:	learn: 26.9930398	total: 247ms	remaining: 290ms
46:	learn: 26.7748687	total: 252ms	remaining: 284ms
47:	learn: 26.5856986	total: 257ms	remaining: 278ms
48:	learn: 26.4344153	total: 262ms	remaining: 273ms
49:	learn: 26.3263456	total: 271ms	remaining: 271ms
50:	learn: 26.2048412	total: 282ms	remaining: 271ms
51:	learn: 26.0608546	total: 290ms	remaining: 267ms
52:	learn: 25.9428146	total: 297ms	remaining: 263ms
53:	learn: 25.7578029	total: 303ms	remaining: 258ms
54:	learn: 25.5696792	total: 308ms	remaining: 252ms
55:	learn: 25.3291935	total: 314ms	remaining: 247ms
56:	learn: 25.1388942	total: 320ms	remaining: 241ms
57:	learn: 24.9853945	total: 325ms	remaining: 236ms
58:	learn: 24.8037785	total: 331ms	remaining: 230ms
59:	learn: 24.5326704	total: 337ms	remaining: 224ms
60:	learn: 24.2208240	total: 342ms	remaining: 219ms
61:	learn: 24.0774015	total: 348ms	remaining: 213ms
62:	learn: 23.9705824	total: 353ms	remaining: 207ms
63:	learn: 23.8877665	total: 359ms	remaining: 202ms
64:	learn: 23.7309043	total: 365ms	remaining: 197ms
65:	learn: 23.5820140	total: 371ms	remaining: 191ms
66:	learn: 23.3762012	total: 376ms	remaining: 185ms
67:	learn: 23.2317502	total: 381ms	remaining: 179ms
68:	learn: 23.0868331	total: 386ms	remaining: 173ms
69:	learn: 22.9642758	total: 395ms	remaining: 169ms
70:	learn: 22.8085341	total: 400ms	remaining: 163ms
71:	learn: 22.6834294	total: 405ms	remaining: 157ms
72:	learn: 22.6152922	total: 410ms	remaining: 151ms
73:	learn: 22.3675145	total: 415ms	remaining: 146ms
74:	learn: 22.3023338	total: 419ms	remaining: 140ms
75:	learn: 22.1866833	total: 424ms	remaining: 134ms
76:	learn: 22.0163130	total: 429ms	remaining: 128ms
77:	learn: 21.9691306	total: 434ms	remaining: 123ms
78:	learn: 21.9004647	total: 439ms	remaining: 117ms
79:	learn: 21.7931869	total: 445ms	remaining: 111ms
80:	learn: 21.6747916	total: 450ms	remaining: 105ms
81:	learn: 21.5187568	total: 455ms	remaining: 99.9ms
82:	learn: 21.3124880	total: 461ms	remaining: 94.4ms
83:	learn: 21.1979524	total: 470ms	remaining: 89.6ms
84:	learn: 21.1311130	total: 478ms	remaining: 84.4ms
85:	learn: 21.0606062	total: 485ms	remaining: 79ms
86:	learn: 20.9900935	total: 491ms	remaining: 73.4ms
87:	learn: 20.8908054	total: 497ms	remaining: 67.8ms
88:	learn: 20.8088525	total: 502ms	remaining: 62.1ms
89:	learn: 20.7300955	total: 507ms	remaining: 56.3ms
90:	learn: 20.6130276	total: 512ms	remaining: 50.6ms
91:	learn: 20.5437508	total: 517ms	remaining: 45ms
92:	learn: 20.5029426	total: 522ms	remaining: 39.3ms
93:	learn: 20.4416708	total: 527ms	remaining: 33.6ms
94:	learn: 20.3917812	total: 531ms	remaining: 28ms
95:	learn: 20.3305024	total: 536ms	remaining: 22.3ms
96:	learn: 20.2375704	total: 541ms	remaining: 16.7ms
97:	learn: 20.1835197	total: 546ms	remaining: 11.1ms
98:	learn: 20.1246834	total: 550ms	remaining: 5.56ms
99:	learn: 20.0506334	total: 555ms	remaining: 0us
0:	learn: 46.7334648	total: 5.37ms	remaining: 531ms
1:	learn: 46.2069876	total: 10.7ms	remaining: 522ms
2:	learn: 45.3699967	total: 15.8ms	remaining: 512ms
3:	learn: 44.6866787	total: 20.5ms	remaining: 491ms
4:	learn: 43.8536031	total: 25ms	remaining: 475ms
5:	learn: 43.4716853	total: 30ms	remaining: 470ms
6:	learn: 42.9929637	total: 35.1ms	remaining: 466ms
7:	learn: 42.4952169	total: 40.2ms	remaining: 462ms
8:	learn: 41.7548337	total: 45.1ms	remaining: 456ms
9:	learn: 41.1054415	total: 50.3ms	remaining: 453ms
10:	learn: 40.4827492	total: 55.4ms	remaining: 448ms
11:	learn: 39.7605907	total: 60.5ms	remaining: 443ms
12:	learn: 39.2532558	total: 69.3ms	remaining: 464ms
13:	learn: 38.6572753	total: 78.6ms	remaining: 483ms
14:	learn: 38.2886959	total: 87.7ms	remaining: 497ms
15:	learn: 37.7816612	total: 95.7ms	remaining: 502ms
16:	learn: 37.1680589	total: 102ms	remaining: 496ms
17:	learn: 36.5753004	total: 107ms	remaining: 488ms
18:	learn: 36.2339458	total: 113ms	remaining: 480ms
19:	learn: 35.9159716	total: 119ms	remaining: 475ms
20:	learn: 35.4591743	total: 125ms	remaining: 469ms
21:	learn: 34.8726070	total: 130ms	remaining: 462ms
22:	learn: 34.3903591	total: 136ms	remaining: 457ms
23:	learn: 34.1236827	total: 142ms	remaining: 451ms
24:	learn: 33.8026540	total: 148ms	remaining: 444ms
25:	learn: 33.4594822	total: 168ms	remaining: 479ms
26:	learn: 33.1338910	total: 174ms	remaining: 471ms
27:	learn: 32.8527106	total: 179ms	remaining: 460ms
28:	learn: 32.4923829	total: 184ms	remaining: 451ms
29:	learn: 32.0560533	total: 189ms	remaining: 441ms
30:	learn: 31.6614408	total: 194ms	remaining: 431ms
31:	learn: 31.2796040	total: 199ms	remaining: 422ms
32:	learn: 30.8214741	total: 203ms	remaining: 413ms
33:	learn: 30.5908694	total: 208ms	remaining: 404ms
34:	learn: 30.3637356	total: 212ms	remaining: 394ms
35:	learn: 30.0446511	total: 217ms	remaining: 387ms
36:	learn: 29.8792549	total: 222ms	remaining: 379ms
37:	learn: 29.5488457	total: 227ms	remaining: 370ms
38:	learn: 29.2808568	total: 232ms	remaining: 363ms
39:	learn: 29.0603765	total: 238ms	remaining: 356ms
40:	learn: 28.8272425	total: 243ms	remaining: 349ms
41:	learn: 28.4753580	total: 248ms	remaining: 342ms
42:	learn: 28.2963614	total: 253ms	remaining: 336ms
43:	learn: 28.1054768	total: 259ms	remaining: 330ms
44:	learn: 27.9038093	total: 267ms	remaining: 326ms
45:	learn: 27.6305487	total: 276ms	remaining: 324ms
46:	learn: 27.4457907	total: 283ms	remaining: 319ms
47:	learn: 27.1855957	total: 294ms	remaining: 319ms
48:	learn: 26.9987934	total: 300ms	remaining: 312ms
49:	learn: 26.7881067	total: 305ms	remaining: 305ms
50:	learn: 26.6385231	total: 310ms	remaining: 297ms
51:	learn: 26.4661755	total: 315ms	remaining: 290ms
52:	learn: 26.3331868	total: 320ms	remaining: 284ms
53:	learn: 26.0353476	total: 325ms	remaining: 277ms
54:	learn: 25.8257147	total: 330ms	remaining: 270ms
55:	learn: 25.5924383	total: 336ms	remaining: 264ms
56:	learn: 25.4082209	total: 341ms	remaining: 257ms
57:	learn: 25.2350104	total: 346ms	remaining: 251ms
58:	learn: 25.1789867	total: 351ms	remaining: 244ms
59:	learn: 24.9111359	total: 356ms	remaining: 237ms
60:	learn: 24.6314503	total: 361ms	remaining: 231ms
61:	learn: 24.4297999	total: 365ms	remaining: 224ms
62:	learn: 24.3126171	total: 370ms	remaining: 217ms
63:	learn: 24.1544005	total: 375ms	remaining: 211ms
64:	learn: 24.0197950	total: 380ms	remaining: 205ms
65:	learn: 23.8483087	total: 385ms	remaining: 198ms
66:	learn: 23.6624915	total: 389ms	remaining: 192ms
67:	learn: 23.5068105	total: 394ms	remaining: 185ms
68:	learn: 23.4266187	total: 399ms	remaining: 179ms
69:	learn: 23.3535388	total: 404ms	remaining: 173ms
70:	learn: 23.2477190	total: 409ms	remaining: 167ms
71:	learn: 23.1877634	total: 414ms	remaining: 161ms
72:	learn: 23.1344720	total: 418ms	remaining: 155ms
73:	learn: 22.9498234	total: 423ms	remaining: 149ms
74:	learn: 22.9068295	total: 428ms	remaining: 143ms
75:	learn: 22.7368434	total: 434ms	remaining: 137ms
76:	learn: 22.6084901	total: 439ms	remaining: 131ms
77:	learn: 22.4690295	total: 444ms	remaining: 125ms
78:	learn: 22.3970100	total: 449ms	remaining: 119ms
79:	learn: 22.3025537	total: 454ms	remaining: 113ms
80:	learn: 22.2089293	total: 459ms	remaining: 108ms
81:	learn: 22.0522107	total: 469ms	remaining: 103ms
82:	learn: 21.9368213	total: 477ms	remaining: 97.8ms
83:	learn: 21.7968322	total: 488ms	remaining: 93ms
84:	learn: 21.7416164	total: 497ms	remaining: 87.6ms
85:	learn: 21.6031099	total: 502ms	remaining: 81.7ms
86:	learn: 21.4530627	total: 508ms	remaining: 75.9ms
87:	learn: 21.3118417	total: 513ms	remaining: 70ms
88:	learn: 21.2760431	total: 519ms	remaining: 64.2ms
89:	learn: 21.2071350	total: 525ms	remaining: 58.3ms
90:	learn: 21.1051001	total: 530ms	remaining: 52.5ms
91:	learn: 21.0246142	total: 536ms	remaining: 46.6ms
92:	learn: 20.9834999	total: 542ms	remaining: 40.8ms
93:	learn: 20.8989393	total: 547ms	remaining: 34.9ms
94:	learn: 20.8262231	total: 552ms	remaining: 29.1ms
95:	learn: 20.7369110	total: 558ms	remaining: 23.3ms
96:	learn: 20.6409587	total: 564ms	remaining: 17.4ms
97:	learn: 20.5553641	total: 570ms	remaining: 11.6ms
98:	learn: 20.4317232	total: 574ms	remaining: 5.8ms
99:	learn: 20.3708681	total: 579ms	remaining: 0us
0:	learn: 27.3776612	total: 18.1ms	remaining: 1.8s
1:	learn: 26.7619003	total: 38.1ms	remaining: 1.87s
2:	learn: 26.0057626	total: 60.2ms	remaining: 1.95s
3:	learn: 25.4280982	total: 84.7ms	remaining: 2.03s
4:	learn: 24.8347609	total: 104ms	remaining: 1.98s
5:	learn: 24.2526574	total: 122ms	remaining: 1.91s
6:	learn: 23.7478806	total: 140ms	remaining: 1.86s
7:	learn: 23.2677666	total: 158ms	remaining: 1.82s
8:	learn: 22.7564310	total: 177ms	remaining: 1.79s
9:	learn: 22.2873770	total: 195ms	remaining: 1.75s
10:	learn: 21.8088174	total: 213ms	remaining: 1.72s
11:	learn: 21.4086875	total: 232ms	remaining: 1.7s
12:	learn: 20.9489217	total: 250ms	remaining: 1.67s
13:	learn: 20.4585233	total: 275ms	remaining: 1.69s
14:	learn: 20.0177760	total: 297ms	remaining: 1.68s
15:	learn: 19.5981890	total: 320ms	remaining: 1.68s
16:	learn: 19.2041885	total: 341ms	remaining: 1.66s
17:	learn: 18.8422550	total: 362ms	remaining: 1.65s
18:	learn: 18.4774037	total: 383ms	remaining: 1.63s
19:	learn: 18.0931699	total: 404ms	remaining: 1.62s
20:	learn: 17.6856423	total: 425ms	remaining: 1.6s
21:	learn: 17.3394010	total: 443ms	remaining: 1.57s
22:	learn: 17.0165204	total: 462ms	remaining: 1.55s
23:	learn: 16.7728230	total: 482ms	remaining: 1.53s
24:	learn: 16.5020155	total: 511ms	remaining: 1.53s
25:	learn: 16.2110813	total: 532ms	remaining: 1.51s
26:	learn: 15.9439416	total: 550ms	remaining: 1.49s
27:	learn: 15.6605702	total: 571ms	remaining: 1.47s
28:	learn: 15.4180978	total: 589ms	remaining: 1.44s
29:	learn: 15.1463921	total: 607ms	remaining: 1.42s
30:	learn: 14.8961946	total: 625ms	remaining: 1.39s
31:	learn: 14.6763296	total: 647ms	remaining: 1.37s
32:	learn: 14.4161484	total: 669ms	remaining: 1.36s
33:	learn: 14.1748686	total: 690ms	remaining: 1.34s
34:	learn: 13.9722494	total: 719ms	remaining: 1.33s
35:	learn: 13.7632896	total: 745ms	remaining: 1.32s
36:	learn: 13.5572592	total: 766ms	remaining: 1.3s
37:	learn: 13.3896577	total: 790ms	remaining: 1.29s
38:	learn: 13.2796441	total: 810ms	remaining: 1.27s
39:	learn: 13.0896679	total: 834ms	remaining: 1.25s
40:	learn: 12.8898238	total: 853ms	remaining: 1.23s
41:	learn: 12.6824069	total: 873ms	remaining: 1.21s
42:	learn: 12.5459667	total: 894ms	remaining: 1.19s
43:	learn: 12.3859203	total: 915ms	remaining: 1.16s
44:	learn: 12.2099364	total: 945ms	remaining: 1.15s
45:	learn: 12.0649044	total: 966ms	remaining: 1.13s
46:	learn: 11.8934147	total: 986ms	remaining: 1.11s
47:	learn: 11.7212144	total: 1s	remaining: 1.09s
48:	learn: 11.5585360	total: 1.02s	remaining: 1.07s
49:	learn: 11.4204354	total: 1.04s	remaining: 1.04s
50:	learn: 11.3264427	total: 1.06s	remaining: 1.02s
51:	learn: 11.2063486	total: 1.08s	remaining: 1s
52:	learn: 11.0712206	total: 1.1s	remaining: 980ms
53:	learn: 10.9205088	total: 1.13s	remaining: 960ms
54:	learn: 10.8155412	total: 1.16s	remaining: 949ms
55:	learn: 10.7286854	total: 1.18s	remaining: 930ms
56:	learn: 10.6088466	total: 1.21s	remaining: 910ms
57:	learn: 10.4999885	total: 1.23s	remaining: 891ms
58:	learn: 10.4022194	total: 1.25s	remaining: 872ms
59:	learn: 10.3147130	total: 1.27s	remaining: 849ms
60:	learn: 10.2011489	total: 1.29s	remaining: 827ms
61:	learn: 10.1094372	total: 1.31s	remaining: 804ms
62:	learn: 10.0248970	total: 1.33s	remaining: 784ms
63:	learn: 9.9192710	total: 1.35s	remaining: 763ms
64:	learn: 9.8577360	total: 1.38s	remaining: 745ms
65:	learn: 9.7737103	total: 1.41s	remaining: 724ms
66:	learn: 9.6706617	total: 1.43s	remaining: 703ms
67:	learn: 9.6042727	total: 1.45s	remaining: 681ms
68:	learn: 9.5355377	total: 1.47s	remaining: 658ms
69:	learn: 9.4615216	total: 1.49s	remaining: 637ms
70:	learn: 9.3702045	total: 1.5s	remaining: 615ms
71:	learn: 9.3035392	total: 1.52s	remaining: 592ms
72:	learn: 9.2322686	total: 1.54s	remaining: 571ms
73:	learn: 9.1431916	total: 1.56s	remaining: 550ms
74:	learn: 9.0869466	total: 1.59s	remaining: 531ms
75:	learn: 9.0117390	total: 1.62s	remaining: 511ms
76:	learn: 8.9580443	total: 1.64s	remaining: 490ms
77:	learn: 8.8649939	total: 1.66s	remaining: 469ms
78:	learn: 8.7792713	total: 1.68s	remaining: 447ms
79:	learn: 8.7164606	total: 1.71s	remaining: 426ms
80:	learn: 8.6340559	total: 1.73s	remaining: 405ms
81:	learn: 8.5697104	total: 1.75s	remaining: 383ms
82:	learn: 8.5273758	total: 1.77s	remaining: 362ms
83:	learn: 8.4394788	total: 1.79s	remaining: 341ms
84:	learn: 8.3672415	total: 1.81s	remaining: 320ms
85:	learn: 8.2813444	total: 1.83s	remaining: 299ms
86:	learn: 8.1994983	total: 1.85s	remaining: 277ms
87:	learn: 8.1003577	total: 1.87s	remaining: 255ms
88:	learn: 8.0501976	total: 1.89s	remaining: 234ms
89:	learn: 7.9718830	total: 1.91s	remaining: 212ms
90:	learn: 7.9114534	total: 1.93s	remaining: 191ms
91:	learn: 7.8319856	total: 1.95s	remaining: 169ms
92:	learn: 7.7731246	total: 1.97s	remaining: 148ms
93:	learn: 7.7165850	total: 1.99s	remaining: 127ms
94:	learn: 7.6448498	total: 2.02s	remaining: 106ms
95:	learn: 7.5709919	total: 2.04s	remaining: 85.1ms
96:	learn: 7.5184082	total: 2.06s	remaining: 63.8ms
97:	learn: 7.4786866	total: 2.08s	remaining: 42.5ms
98:	learn: 7.4301201	total: 2.1s	remaining: 21.3ms
99:	learn: 7.3416932	total: 2.12s	remaining: 0us
0:	learn: 42.6391731	total: 21.1ms	remaining: 2.09s
1:	learn: 41.2755994	total: 39.1ms	remaining: 1.92s
2:	learn: 40.1418308	total: 56.9ms	remaining: 1.84s
3:	learn: 38.9707156	total: 75ms	remaining: 1.8s
4:	learn: 37.8723622	total: 93.8ms	remaining: 1.78s
5:	learn: 36.6981834	total: 112ms	remaining: 1.75s
6:	learn: 35.6210108	total: 130ms	remaining: 1.73s
7:	learn: 34.5154078	total: 150ms	remaining: 1.73s
8:	learn: 33.4581011	total: 168ms	remaining: 1.7s
9:	learn: 32.5872455	total: 186ms	remaining: 1.68s
10:	learn: 31.6311510	total: 204ms	remaining: 1.65s
11:	learn: 30.8222401	total: 226ms	remaining: 1.65s
12:	learn: 29.9305192	total: 245ms	remaining: 1.64s
13:	learn: 29.0742133	total: 267ms	remaining: 1.64s
14:	learn: 28.3687544	total: 293ms	remaining: 1.66s
15:	learn: 27.5730558	total: 319ms	remaining: 1.67s
16:	learn: 26.9376082	total: 341ms	remaining: 1.67s
17:	learn: 26.2254949	total: 363ms	remaining: 1.65s
18:	learn: 25.5974939	total: 385ms	remaining: 1.64s
19:	learn: 25.0097187	total: 406ms	remaining: 1.63s
20:	learn: 24.3722243	total: 425ms	remaining: 1.6s
21:	learn: 23.8249140	total: 443ms	remaining: 1.57s
22:	learn: 23.3953969	total: 465ms	remaining: 1.56s
23:	learn: 22.8726238	total: 489ms	remaining: 1.55s
24:	learn: 22.3407723	total: 518ms	remaining: 1.55s
25:	learn: 21.8360330	total: 538ms	remaining: 1.53s
26:	learn: 21.4050665	total: 541ms	remaining: 1.46s
27:	learn: 20.9389245	total: 559ms	remaining: 1.44s
28:	learn: 20.5166767	total: 580ms	remaining: 1.42s
29:	learn: 20.1190641	total: 599ms	remaining: 1.4s
30:	learn: 19.7189491	total: 619ms	remaining: 1.38s
31:	learn: 19.3748181	total: 638ms	remaining: 1.36s
32:	learn: 19.0116312	total: 658ms	remaining: 1.33s
33:	learn: 18.6982407	total: 679ms	remaining: 1.32s
34:	learn: 18.3109965	total: 699ms	remaining: 1.3s
35:	learn: 17.9620798	total: 731ms	remaining: 1.3s
36:	learn: 17.6396740	total: 755ms	remaining: 1.28s
37:	learn: 17.3596962	total: 777ms	remaining: 1.27s
38:	learn: 17.0107107	total: 799ms	remaining: 1.25s
39:	learn: 16.7000770	total: 822ms	remaining: 1.23s
40:	learn: 16.4406609	total: 833ms	remaining: 1.2s
41:	learn: 16.2482533	total: 851ms	remaining: 1.17s
42:	learn: 16.0039366	total: 869ms	remaining: 1.15s
43:	learn: 15.7538572	total: 889ms	remaining: 1.13s
44:	learn: 15.5095380	total: 910ms	remaining: 1.11s
45:	learn: 15.2678319	total: 936ms	remaining: 1.1s
46:	learn: 15.0494495	total: 960ms	remaining: 1.08s
47:	learn: 14.8347400	total: 981ms	remaining: 1.06s
48:	learn: 14.6035398	total: 1s	remaining: 1.04s
49:	learn: 14.3913639	total: 1.02s	remaining: 1.02s
50:	learn: 14.1928022	total: 1.04s	remaining: 1s
51:	learn: 13.9985580	total: 1.06s	remaining: 982ms
52:	learn: 13.8322220	total: 1.08s	remaining: 960ms
53:	learn: 13.6455937	total: 1.1s	remaining: 939ms
54:	learn: 13.4402019	total: 1.12s	remaining: 920ms
55:	learn: 13.2899163	total: 1.14s	remaining: 899ms
56:	learn: 13.1694614	total: 1.17s	remaining: 885ms
57:	learn: 13.0722892	total: 1.2s	remaining: 867ms
58:	learn: 12.9065251	total: 1.22s	remaining: 849ms
59:	learn: 12.6992885	total: 1.24s	remaining: 829ms
60:	learn: 12.5384562	total: 1.27s	remaining: 811ms
61:	learn: 12.4105591	total: 1.29s	remaining: 789ms
62:	learn: 12.2952504	total: 1.31s	remaining: 769ms
63:	learn: 12.1427365	total: 1.33s	remaining: 748ms
64:	learn: 11.9954361	total: 1.35s	remaining: 728ms
65:	learn: 11.8161234	total: 1.38s	remaining: 712ms
66:	learn: 11.6849978	total: 1.4s	remaining: 692ms
67:	learn: 11.5405300	total: 1.43s	remaining: 671ms
68:	learn: 11.3806762	total: 1.45s	remaining: 649ms
69:	learn: 11.2746848	total: 1.46s	remaining: 628ms
70:	learn: 11.1518256	total: 1.48s	remaining: 606ms
71:	learn: 11.0730779	total: 1.51s	remaining: 586ms
72:	learn: 10.9736725	total: 1.53s	remaining: 566ms
73:	learn: 10.8430563	total: 1.55s	remaining: 546ms
74:	learn: 10.7142220	total: 1.58s	remaining: 528ms
75:	learn: 10.6141640	total: 1.61s	remaining: 508ms
76:	learn: 10.5264853	total: 1.63s	remaining: 488ms
77:	learn: 10.3929390	total: 1.65s	remaining: 467ms
78:	learn: 10.3163176	total: 1.68s	remaining: 445ms
79:	learn: 10.2171240	total: 1.7s	remaining: 424ms
80:	learn: 10.1381738	total: 1.71s	remaining: 402ms
81:	learn: 10.0402437	total: 1.74s	remaining: 381ms
82:	learn: 9.9223565	total: 1.75s	remaining: 360ms
83:	learn: 9.8184057	total: 1.78s	remaining: 339ms
84:	learn: 9.7221978	total: 1.8s	remaining: 319ms
85:	learn: 9.6417031	total: 1.83s	remaining: 298ms
86:	learn: 9.5593969	total: 1.85s	remaining: 276ms
87:	learn: 9.4678992	total: 1.87s	remaining: 255ms
88:	learn: 9.3855757	total: 1.89s	remaining: 233ms
89:	learn: 9.2884031	total: 1.91s	remaining: 212ms
90:	learn: 9.2099382	total: 1.93s	remaining: 191ms
91:	learn: 9.1357061	total: 1.95s	remaining: 170ms
92:	learn: 9.0690328	total: 1.97s	remaining: 148ms
93:	learn: 8.9904694	total: 2s	remaining: 128ms
94:	learn: 8.9256893	total: 2.02s	remaining: 107ms
95:	learn: 8.8600084	total: 2.05s	remaining: 85.3ms
96:	learn: 8.8091154	total: 2.07s	remaining: 64ms
97:	learn: 8.7280528	total: 2.09s	remaining: 42.7ms
98:	learn: 8.6761440	total: 2.11s	remaining: 21.4ms
99:	learn: 8.6181192	total: 2.14s	remaining: 0us
0:	learn: 45.9988128	total: 22.2ms	remaining: 2.19s
1:	learn: 44.7653841	total: 48.9ms	remaining: 2.39s
2:	learn: 43.4693688	total: 71.8ms	remaining: 2.32s
3:	learn: 42.2495168	total: 94.5ms	remaining: 2.27s
4:	learn: 41.2273909	total: 117ms	remaining: 2.22s
5:	learn: 40.0623352	total: 138ms	remaining: 2.16s
6:	learn: 39.0139162	total: 161ms	remaining: 2.13s
7:	learn: 37.9905503	total: 183ms	remaining: 2.11s
8:	learn: 37.1460179	total: 207ms	remaining: 2.09s
9:	learn: 36.1321769	total: 229ms	remaining: 2.06s
10:	learn: 35.2434048	total: 251ms	remaining: 2.03s
11:	learn: 34.3919476	total: 275ms	remaining: 2.02s
12:	learn: 33.5464400	total: 303ms	remaining: 2.03s
13:	learn: 32.5752711	total: 330ms	remaining: 2.03s
14:	learn: 31.8573507	total: 351ms	remaining: 1.99s
15:	learn: 31.1481980	total: 372ms	remaining: 1.95s
16:	learn: 30.4578224	total: 393ms	remaining: 1.92s
17:	learn: 29.8404841	total: 416ms	remaining: 1.9s
18:	learn: 29.1314604	total: 435ms	remaining: 1.85s
19:	learn: 28.5024706	total: 455ms	remaining: 1.82s
20:	learn: 27.9368896	total: 473ms	remaining: 1.78s
21:	learn: 27.2136491	total: 494ms	remaining: 1.75s
22:	learn: 26.6230078	total: 514ms	remaining: 1.72s
23:	learn: 26.0604635	total: 542ms	remaining: 1.72s
24:	learn: 25.6309424	total: 562ms	remaining: 1.68s
25:	learn: 25.1761698	total: 581ms	remaining: 1.65s
26:	learn: 24.6368216	total: 599ms	remaining: 1.62s
27:	learn: 24.1028972	total: 617ms	remaining: 1.59s
28:	learn: 23.3990224	total: 635ms	remaining: 1.55s
29:	learn: 22.9088559	total: 653ms	remaining: 1.52s
30:	learn: 22.4793217	total: 672ms	remaining: 1.5s
31:	learn: 22.0592669	total: 692ms	remaining: 1.47s
32:	learn: 21.6715811	total: 712ms	remaining: 1.45s
33:	learn: 21.1907911	total: 739ms	remaining: 1.44s
34:	learn: 20.8045504	total: 764ms	remaining: 1.42s
35:	learn: 20.4670784	total: 786ms	remaining: 1.4s
36:	learn: 20.0165788	total: 809ms	remaining: 1.38s
37:	learn: 19.6859173	total: 832ms	remaining: 1.36s
38:	learn: 19.3641283	total: 853ms	remaining: 1.33s
39:	learn: 19.0291194	total: 874ms	remaining: 1.31s
40:	learn: 18.7204204	total: 894ms	remaining: 1.29s
41:	learn: 18.4000101	total: 917ms	remaining: 1.27s
42:	learn: 18.0910445	total: 940ms	remaining: 1.25s
43:	learn: 17.8354609	total: 968ms	remaining: 1.23s
44:	learn: 17.4982243	total: 989ms	remaining: 1.21s
45:	learn: 17.1895897	total: 1.01s	remaining: 1.18s
46:	learn: 16.9440833	total: 1.02s	remaining: 1.16s
47:	learn: 16.6112102	total: 1.04s	remaining: 1.13s
48:	learn: 16.3320235	total: 1.06s	remaining: 1.11s
49:	learn: 16.0523610	total: 1.08s	remaining: 1.08s
50:	learn: 15.8256738	total: 1.1s	remaining: 1.06s
51:	learn: 15.5699393	total: 1.12s	remaining: 1.03s
52:	learn: 15.3531799	total: 1.14s	remaining: 1.01s
53:	learn: 15.1364230	total: 1.17s	remaining: 992ms
54:	learn: 15.0012063	total: 1.19s	remaining: 976ms
55:	learn: 14.7171740	total: 1.22s	remaining: 956ms
56:	learn: 14.5897576	total: 1.22s	remaining: 920ms
57:	learn: 14.3886878	total: 1.24s	remaining: 898ms
58:	learn: 14.1942115	total: 1.26s	remaining: 876ms
59:	learn: 14.0135398	total: 1.28s	remaining: 856ms
60:	learn: 13.8118263	total: 1.3s	remaining: 834ms
61:	learn: 13.6444047	total: 1.32s	remaining: 811ms
62:	learn: 13.4728078	total: 1.34s	remaining: 790ms
63:	learn: 13.3104934	total: 1.37s	remaining: 769ms
64:	learn: 13.1385144	total: 1.39s	remaining: 750ms
65:	learn: 13.0087777	total: 1.42s	remaining: 730ms
66:	learn: 12.8457835	total: 1.44s	remaining: 709ms
67:	learn: 12.6975263	total: 1.46s	remaining: 687ms
68:	learn: 12.5582839	total: 1.48s	remaining: 664ms
69:	learn: 12.4210776	total: 1.5s	remaining: 642ms
70:	learn: 12.2737286	total: 1.52s	remaining: 619ms
71:	learn: 12.1587075	total: 1.54s	remaining: 597ms
72:	learn: 12.0323022	total: 1.56s	remaining: 576ms
73:	learn: 11.8667900	total: 1.58s	remaining: 556ms
74:	learn: 11.6990385	total: 1.61s	remaining: 536ms
75:	learn: 11.5755058	total: 1.63s	remaining: 514ms
76:	learn: 11.4954152	total: 1.65s	remaining: 493ms
77:	learn: 11.3827464	total: 1.67s	remaining: 471ms
78:	learn: 11.2924968	total: 1.69s	remaining: 450ms
79:	learn: 11.1938217	total: 1.71s	remaining: 428ms
80:	learn: 11.0766477	total: 1.73s	remaining: 406ms
81:	learn: 10.9824487	total: 1.75s	remaining: 384ms
82:	learn: 10.8707168	total: 1.77s	remaining: 363ms
83:	learn: 10.7746205	total: 1.79s	remaining: 342ms
84:	learn: 10.6738461	total: 1.82s	remaining: 321ms
85:	learn: 10.5871227	total: 1.84s	remaining: 299ms
86:	learn: 10.4566607	total: 1.86s	remaining: 278ms
87:	learn: 10.3506633	total: 1.88s	remaining: 256ms
88:	learn: 10.2104644	total: 1.9s	remaining: 235ms
89:	learn: 10.0965839	total: 1.93s	remaining: 214ms
90:	learn: 9.9802927	total: 1.95s	remaining: 193ms
91:	learn: 9.9195276	total: 1.97s	remaining: 171ms
92:	learn: 9.8559698	total: 1.99s	remaining: 150ms
93:	learn: 9.7396780	total: 2.02s	remaining: 129ms
94:	learn: 9.6945725	total: 2.05s	remaining: 108ms
95:	learn: 9.5897565	total: 2.07s	remaining: 86.4ms
96:	learn: 9.5012011	total: 2.1s	remaining: 64.9ms
97:	learn: 9.4123715	total: 2.12s	remaining: 43.3ms
98:	learn: 9.3288366	total: 2.15s	remaining: 21.7ms
99:	learn: 9.2648715	total: 2.17s	remaining: 0us
0:	learn: 45.5336925	total: 29.5ms	remaining: 2.92s
1:	learn: 44.2714175	total: 53.7ms	remaining: 2.63s
2:	learn: 43.1477944	total: 74.9ms	remaining: 2.42s
3:	learn: 41.9891776	total: 94.5ms	remaining: 2.27s
4:	learn: 41.0638986	total: 114ms	remaining: 2.16s
5:	learn: 39.9800801	total: 134ms	remaining: 2.09s
6:	learn: 38.9048061	total: 153ms	remaining: 2.03s
7:	learn: 38.0749429	total: 173ms	remaining: 1.99s
8:	learn: 37.3966644	total: 193ms	remaining: 1.95s
9:	learn: 36.4671331	total: 213ms	remaining: 1.91s
10:	learn: 35.6649217	total: 233ms	remaining: 1.89s
11:	learn: 34.8793657	total: 256ms	remaining: 1.87s
12:	learn: 34.0737401	total: 277ms	remaining: 1.86s
13:	learn: 33.2560999	total: 299ms	remaining: 1.83s
14:	learn: 32.4184623	total: 326ms	remaining: 1.85s
15:	learn: 31.6803206	total: 350ms	remaining: 1.84s
16:	learn: 30.9276344	total: 372ms	remaining: 1.81s
17:	learn: 30.3590041	total: 393ms	remaining: 1.79s
18:	learn: 29.7789888	total: 417ms	remaining: 1.78s
19:	learn: 29.1098261	total: 441ms	remaining: 1.76s
20:	learn: 28.4824889	total: 462ms	remaining: 1.74s
21:	learn: 27.9675744	total: 484ms	remaining: 1.71s
22:	learn: 27.4793215	total: 507ms	remaining: 1.7s
23:	learn: 26.8920542	total: 536ms	remaining: 1.7s
24:	learn: 26.2736657	total: 558ms	remaining: 1.68s
25:	learn: 25.6908003	total: 579ms	remaining: 1.65s
26:	learn: 25.1288844	total: 600ms	remaining: 1.62s
27:	learn: 24.6933320	total: 621ms	remaining: 1.6s
28:	learn: 24.1372567	total: 641ms	remaining: 1.57s
29:	learn: 23.7103515	total: 660ms	remaining: 1.54s
30:	learn: 23.1647499	total: 682ms	remaining: 1.52s
31:	learn: 22.7009216	total: 703ms	remaining: 1.49s
32:	learn: 22.2792229	total: 735ms	remaining: 1.49s
33:	learn: 21.8004244	total: 760ms	remaining: 1.48s
34:	learn: 21.3578361	total: 782ms	remaining: 1.45s
35:	learn: 21.0262832	total: 804ms	remaining: 1.43s
36:	learn: 20.5787502	total: 824ms	remaining: 1.4s
37:	learn: 20.3083055	total: 847ms	remaining: 1.38s
38:	learn: 19.9902529	total: 865ms	remaining: 1.35s
39:	learn: 19.6059571	total: 885ms	remaining: 1.33s
40:	learn: 19.3890959	total: 906ms	remaining: 1.3s
41:	learn: 19.0549255	total: 927ms	remaining: 1.28s
42:	learn: 18.7283215	total: 958ms	remaining: 1.27s
43:	learn: 18.4448725	total: 979ms	remaining: 1.25s
44:	learn: 18.1578001	total: 1000ms	remaining: 1.22s
45:	learn: 17.8777474	total: 1.02s	remaining: 1.2s
46:	learn: 17.6428221	total: 1.04s	remaining: 1.17s
47:	learn: 17.3887752	total: 1.06s	remaining: 1.15s
48:	learn: 17.1475761	total: 1.08s	remaining: 1.13s
49:	learn: 16.9064363	total: 1.1s	remaining: 1.1s
50:	learn: 16.6414681	total: 1.13s	remaining: 1.08s
51:	learn: 16.4549974	total: 1.15s	remaining: 1.06s
52:	learn: 16.2617558	total: 1.18s	remaining: 1.04s
53:	learn: 16.0258241	total: 1.2s	remaining: 1.02s
54:	learn: 15.7694686	total: 1.22s	remaining: 1s
55:	learn: 15.5449602	total: 1.24s	remaining: 978ms
56:	learn: 15.3515330	total: 1.26s	remaining: 955ms
57:	learn: 15.1120403	total: 1.29s	remaining: 932ms
58:	learn: 14.9131368	total: 1.31s	remaining: 910ms
59:	learn: 14.8021921	total: 1.33s	remaining: 886ms
60:	learn: 14.6564259	total: 1.35s	remaining: 865ms
61:	learn: 14.5253260	total: 1.38s	remaining: 844ms
62:	learn: 14.3975427	total: 1.4s	remaining: 822ms
63:	learn: 14.3060204	total: 1.42s	remaining: 799ms
64:	learn: 14.1283681	total: 1.44s	remaining: 776ms
65:	learn: 14.0159063	total: 1.46s	remaining: 752ms
66:	learn: 13.8712541	total: 1.48s	remaining: 729ms
67:	learn: 13.7852998	total: 1.5s	remaining: 706ms
68:	learn: 13.6790164	total: 1.52s	remaining: 684ms
69:	learn: 13.5253745	total: 1.54s	remaining: 661ms
70:	learn: 13.3959663	total: 1.56s	remaining: 639ms
71:	learn: 13.2062955	total: 1.58s	remaining: 617ms
72:	learn: 13.0788709	total: 1.61s	remaining: 597ms
73:	learn: 12.9513184	total: 1.64s	remaining: 575ms
74:	learn: 12.8198556	total: 1.66s	remaining: 553ms
75:	learn: 12.7137549	total: 1.68s	remaining: 531ms
76:	learn: 12.6243477	total: 1.71s	remaining: 509ms
77:	learn: 12.5241564	total: 1.73s	remaining: 487ms
78:	learn: 12.4445782	total: 1.75s	remaining: 464ms
79:	learn: 12.3816501	total: 1.77s	remaining: 442ms
80:	learn: 12.2846914	total: 1.79s	remaining: 419ms
81:	learn: 12.1419498	total: 1.81s	remaining: 398ms
82:	learn: 12.0846494	total: 1.84s	remaining: 376ms
83:	learn: 11.9851484	total: 1.86s	remaining: 354ms
84:	learn: 11.8905738	total: 1.88s	remaining: 331ms
85:	learn: 11.7718790	total: 1.9s	remaining: 309ms
86:	learn: 11.6854413	total: 1.91s	remaining: 286ms
87:	learn: 11.6206110	total: 1.94s	remaining: 264ms
88:	learn: 11.5376098	total: 1.96s	remaining: 242ms
89:	learn: 11.4235068	total: 1.98s	remaining: 220ms
90:	learn: 11.3477955	total: 2s	remaining: 197ms
91:	learn: 11.2663772	total: 2.02s	remaining: 175ms
92:	learn: 11.1916556	total: 2.05s	remaining: 154ms
93:	learn: 11.0921504	total: 2.07s	remaining: 132ms
94:	learn: 10.9622375	total: 2.09s	remaining: 110ms
95:	learn: 10.8882085	total: 2.11s	remaining: 88ms
96:	learn: 10.8086218	total: 2.13s	remaining: 66ms
97:	learn: 10.7552220	total: 2.15s	remaining: 44ms
98:	learn: 10.6929666	total: 2.17s	remaining: 21.9ms
99:	learn: 10.6200033	total: 2.19s	remaining: 0us
0:	learn: 46.3366259	total: 18.3ms	remaining: 1.81s
1:	learn: 45.2205278	total: 38.1ms	remaining: 1.87s
2:	learn: 43.9887404	total: 56.8ms	remaining: 1.84s
3:	learn: 42.8240666	total: 74.5ms	remaining: 1.79s
4:	learn: 41.6086617	total: 96.8ms	remaining: 1.84s
5:	learn: 40.5606446	total: 115ms	remaining: 1.8s
6:	learn: 39.6241326	total: 134ms	remaining: 1.78s
7:	learn: 39.0016852	total: 153ms	remaining: 1.76s
8:	learn: 37.8501670	total: 173ms	remaining: 1.75s
9:	learn: 37.0215474	total: 195ms	remaining: 1.75s
10:	learn: 36.0215020	total: 224ms	remaining: 1.81s
11:	learn: 35.2421331	total: 248ms	remaining: 1.82s
12:	learn: 34.5416837	total: 270ms	remaining: 1.8s
13:	learn: 33.7787649	total: 292ms	remaining: 1.79s
14:	learn: 32.9860883	total: 312ms	remaining: 1.77s
15:	learn: 32.2123752	total: 333ms	remaining: 1.75s
16:	learn: 31.3564648	total: 352ms	remaining: 1.72s
17:	learn: 30.7859979	total: 372ms	remaining: 1.69s
18:	learn: 30.1443515	total: 391ms	remaining: 1.67s
19:	learn: 29.4880724	total: 413ms	remaining: 1.65s
20:	learn: 28.9635727	total: 438ms	remaining: 1.65s
21:	learn: 28.4853342	total: 457ms	remaining: 1.62s
22:	learn: 27.9796348	total: 475ms	remaining: 1.59s
23:	learn: 27.4360487	total: 493ms	remaining: 1.56s
24:	learn: 26.8685214	total: 511ms	remaining: 1.53s
25:	learn: 26.1769206	total: 530ms	remaining: 1.51s
26:	learn: 25.7146048	total: 547ms	remaining: 1.48s
27:	learn: 25.2614850	total: 566ms	remaining: 1.46s
28:	learn: 24.6626472	total: 586ms	remaining: 1.44s
29:	learn: 24.2501259	total: 608ms	remaining: 1.42s
30:	learn: 23.7892661	total: 638ms	remaining: 1.42s
31:	learn: 23.2729078	total: 662ms	remaining: 1.41s
32:	learn: 22.8969731	total: 684ms	remaining: 1.39s
33:	learn: 22.4567570	total: 706ms	remaining: 1.37s
34:	learn: 22.0569858	total: 728ms	remaining: 1.35s
35:	learn: 21.7317775	total: 746ms	remaining: 1.33s
36:	learn: 21.3890971	total: 765ms	remaining: 1.3s
37:	learn: 21.0664504	total: 786ms	remaining: 1.28s
38:	learn: 20.7379659	total: 808ms	remaining: 1.26s
39:	learn: 20.4423699	total: 829ms	remaining: 1.24s
40:	learn: 20.1526720	total: 854ms	remaining: 1.23s
41:	learn: 19.8706547	total: 873ms	remaining: 1.21s
42:	learn: 19.5139134	total: 893ms	remaining: 1.18s
43:	learn: 19.3495951	total: 913ms	remaining: 1.16s
44:	learn: 19.1314757	total: 932ms	remaining: 1.14s
45:	learn: 18.7971159	total: 951ms	remaining: 1.12s
46:	learn: 18.5447051	total: 970ms	remaining: 1.09s
47:	learn: 18.2328785	total: 988ms	remaining: 1.07s
48:	learn: 17.9622938	total: 1.01s	remaining: 1.05s
49:	learn: 17.7264205	total: 1.03s	remaining: 1.03s
50:	learn: 17.4530592	total: 1.06s	remaining: 1.02s
51:	learn: 17.2236644	total: 1.08s	remaining: 998ms
52:	learn: 17.0122792	total: 1.1s	remaining: 978ms
53:	learn: 16.7599064	total: 1.13s	remaining: 959ms
54:	learn: 16.5146699	total: 1.15s	remaining: 938ms
55:	learn: 16.2531414	total: 1.17s	remaining: 916ms
56:	learn: 16.0997208	total: 1.19s	remaining: 897ms
57:	learn: 15.8452412	total: 1.21s	remaining: 874ms
58:	learn: 15.6294900	total: 1.23s	remaining: 853ms
59:	learn: 15.4564548	total: 1.25s	remaining: 831ms
60:	learn: 15.2978533	total: 1.27s	remaining: 810ms
61:	learn: 15.0976912	total: 1.29s	remaining: 793ms
62:	learn: 14.9094446	total: 1.31s	remaining: 771ms
63:	learn: 14.7415094	total: 1.33s	remaining: 749ms
64:	learn: 14.6123806	total: 1.35s	remaining: 726ms
65:	learn: 14.4744916	total: 1.37s	remaining: 704ms
66:	learn: 14.3212717	total: 1.39s	remaining: 683ms
67:	learn: 14.1768047	total: 1.42s	remaining: 667ms
68:	learn: 14.0387344	total: 1.44s	remaining: 646ms
69:	learn: 13.8987579	total: 1.46s	remaining: 627ms
70:	learn: 13.7825740	total: 1.49s	remaining: 607ms
71:	learn: 13.6818548	total: 1.52s	remaining: 590ms
72:	learn: 13.5356993	total: 1.54s	remaining: 570ms
73:	learn: 13.4408704	total: 1.57s	remaining: 550ms
74:	learn: 13.2992218	total: 1.59s	remaining: 530ms
75:	learn: 13.1547092	total: 1.61s	remaining: 510ms
76:	learn: 13.0800189	total: 1.64s	remaining: 489ms
77:	learn: 12.9434711	total: 1.66s	remaining: 468ms
78:	learn: 12.8327325	total: 1.69s	remaining: 449ms
79:	learn: 12.7238946	total: 1.72s	remaining: 430ms
80:	learn: 12.6229528	total: 1.74s	remaining: 409ms
81:	learn: 12.5216078	total: 1.76s	remaining: 387ms
82:	learn: 12.4182254	total: 1.78s	remaining: 366ms
83:	learn: 12.3097978	total: 1.8s	remaining: 344ms
84:	learn: 12.1852056	total: 1.82s	remaining: 322ms
85:	learn: 12.0739627	total: 1.84s	remaining: 300ms
86:	learn: 11.9475583	total: 1.86s	remaining: 278ms
87:	learn: 11.8403806	total: 1.88s	remaining: 257ms
88:	learn: 11.7294124	total: 1.9s	remaining: 235ms
89:	learn: 11.6395689	total: 1.93s	remaining: 214ms
90:	learn: 11.5510643	total: 1.95s	remaining: 193ms
91:	learn: 11.4455301	total: 1.98s	remaining: 172ms
92:	learn: 11.3368661	total: 2s	remaining: 151ms
93:	learn: 11.2270796	total: 2.02s	remaining: 129ms
94:	learn: 11.1168414	total: 2.04s	remaining: 108ms
95:	learn: 11.0310985	total: 2.07s	remaining: 86.1ms
96:	learn: 10.9735185	total: 2.09s	remaining: 64.6ms
97:	learn: 10.8575874	total: 2.11s	remaining: 43ms
98:	learn: 10.7816173	total: 2.13s	remaining: 21.5ms
99:	learn: 10.7111737	total: 2.15s	remaining: 0us
0:	learn: 27.5467896	total: 19.9ms	remaining: 3.96s
1:	learn: 27.0680701	total: 40.9ms	remaining: 4.05s
2:	learn: 26.5343560	total: 61.9ms	remaining: 4.07s
3:	learn: 26.1627388	total: 82.9ms	remaining: 4.06s
4:	learn: 25.6788161	total: 105ms	remaining: 4.08s
5:	learn: 25.1796993	total: 125ms	remaining: 4.04s
6:	learn: 24.7618861	total: 157ms	remaining: 4.33s
7:	learn: 24.4052648	total: 182ms	remaining: 4.37s
8:	learn: 24.0145743	total: 205ms	remaining: 4.35s
9:	learn: 23.6326509	total: 226ms	remaining: 4.3s
10:	learn: 23.1980803	total: 249ms	remaining: 4.27s
11:	learn: 22.8128450	total: 269ms	remaining: 4.22s
12:	learn: 22.4543181	total: 288ms	remaining: 4.15s
13:	learn: 22.0627490	total: 311ms	remaining: 4.13s
14:	learn: 21.7356381	total: 332ms	remaining: 4.09s
15:	learn: 21.3576528	total: 377ms	remaining: 4.33s
16:	learn: 20.9953639	total: 397ms	remaining: 4.27s
17:	learn: 20.7418953	total: 416ms	remaining: 4.2s
18:	learn: 20.4337246	total: 435ms	remaining: 4.14s
19:	learn: 20.1184543	total: 454ms	remaining: 4.09s
20:	learn: 19.7611211	total: 474ms	remaining: 4.04s
21:	learn: 19.4769044	total: 494ms	remaining: 4s
22:	learn: 19.2318989	total: 514ms	remaining: 3.95s
23:	learn: 19.0476159	total: 536ms	remaining: 3.93s
24:	learn: 18.8122256	total: 562ms	remaining: 3.93s
25:	learn: 18.5633342	total: 593ms	remaining: 3.97s
26:	learn: 18.3169243	total: 597ms	remaining: 3.82s
27:	learn: 18.0627337	total: 617ms	remaining: 3.79s
28:	learn: 17.8964068	total: 640ms	remaining: 3.77s
29:	learn: 17.6413721	total: 663ms	remaining: 3.75s
30:	learn: 17.4074030	total: 684ms	remaining: 3.73s
31:	learn: 17.1741331	total: 705ms	remaining: 3.7s
32:	learn: 16.9719203	total: 728ms	remaining: 3.68s
33:	learn: 16.7768268	total: 754ms	remaining: 3.68s
34:	learn: 16.5620878	total: 778ms	remaining: 3.67s
35:	learn: 16.3185355	total: 801ms	remaining: 3.65s
36:	learn: 16.1033868	total: 821ms	remaining: 3.62s
37:	learn: 15.9374702	total: 841ms	remaining: 3.59s
38:	learn: 15.7558907	total: 861ms	remaining: 3.56s
39:	learn: 15.6093227	total: 882ms	remaining: 3.53s
40:	learn: 15.3807433	total: 901ms	remaining: 3.5s
41:	learn: 15.2247737	total: 921ms	remaining: 3.46s
42:	learn: 14.9806114	total: 942ms	remaining: 3.44s
43:	learn: 14.8223122	total: 965ms	remaining: 3.42s
44:	learn: 14.6807973	total: 989ms	remaining: 3.41s
45:	learn: 14.5522845	total: 1.02s	remaining: 3.42s
46:	learn: 14.4107984	total: 1.04s	remaining: 3.4s
47:	learn: 14.2989274	total: 1.07s	remaining: 3.38s
48:	learn: 14.1243557	total: 1.09s	remaining: 3.35s
49:	learn: 13.9822596	total: 1.11s	remaining: 3.33s
50:	learn: 13.8563717	total: 1.13s	remaining: 3.31s
51:	learn: 13.7197225	total: 1.15s	remaining: 3.28s
52:	learn: 13.5869165	total: 1.17s	remaining: 3.26s
53:	learn: 13.4282146	total: 1.2s	remaining: 3.23s
54:	learn: 13.3080783	total: 1.22s	remaining: 3.22s
55:	learn: 13.1757199	total: 1.24s	remaining: 3.2s
56:	learn: 13.0890522	total: 1.26s	remaining: 3.17s
57:	learn: 12.9693334	total: 1.28s	remaining: 3.14s
58:	learn: 12.8656736	total: 1.3s	remaining: 3.11s
59:	learn: 12.7624851	total: 1.32s	remaining: 3.08s
60:	learn: 12.6429258	total: 1.34s	remaining: 3.05s
61:	learn: 12.5474728	total: 1.36s	remaining: 3.02s
62:	learn: 12.4375178	total: 1.38s	remaining: 2.99s
63:	learn: 12.3337549	total: 1.4s	remaining: 2.97s
64:	learn: 12.2208696	total: 1.42s	remaining: 2.96s
65:	learn: 12.1041855	total: 1.45s	remaining: 2.95s
66:	learn: 11.9934935	total: 1.47s	remaining: 2.93s
67:	learn: 11.8755104	total: 1.5s	remaining: 2.9s
68:	learn: 11.7732877	total: 1.52s	remaining: 2.88s
69:	learn: 11.6837172	total: 1.54s	remaining: 2.86s
70:	learn: 11.5919175	total: 1.56s	remaining: 2.83s
71:	learn: 11.5071758	total: 1.58s	remaining: 2.81s
72:	learn: 11.4473042	total: 1.6s	remaining: 2.79s
73:	learn: 11.3506919	total: 1.62s	remaining: 2.76s
74:	learn: 11.2483249	total: 1.65s	remaining: 2.75s
75:	learn: 11.1913605	total: 1.67s	remaining: 2.73s
76:	learn: 11.1043267	total: 1.69s	remaining: 2.71s
77:	learn: 11.0063168	total: 1.71s	remaining: 2.68s
78:	learn: 10.9254796	total: 1.73s	remaining: 2.65s
79:	learn: 10.8263071	total: 1.75s	remaining: 2.62s
80:	learn: 10.7531059	total: 1.77s	remaining: 2.6s
81:	learn: 10.6896768	total: 1.79s	remaining: 2.57s
82:	learn: 10.6034681	total: 1.81s	remaining: 2.55s
83:	learn: 10.5159133	total: 1.83s	remaining: 2.52s
84:	learn: 10.4434563	total: 1.85s	remaining: 2.5s
85:	learn: 10.3709079	total: 1.88s	remaining: 2.49s
86:	learn: 10.3061829	total: 1.9s	remaining: 2.47s
87:	learn: 10.2608132	total: 1.92s	remaining: 2.45s
88:	learn: 10.1736338	total: 1.94s	remaining: 2.42s
89:	learn: 10.0885012	total: 1.96s	remaining: 2.4s
90:	learn: 10.0337309	total: 1.99s	remaining: 2.38s
91:	learn: 9.9758392	total: 2s	remaining: 2.35s
92:	learn: 9.8870117	total: 2.02s	remaining: 2.33s
93:	learn: 9.8077732	total: 2.04s	remaining: 2.3s
94:	learn: 9.7135409	total: 2.07s	remaining: 2.28s
95:	learn: 9.6341854	total: 2.09s	remaining: 2.27s
96:	learn: 9.5790423	total: 2.11s	remaining: 2.24s
97:	learn: 9.5158535	total: 2.13s	remaining: 2.22s
98:	learn: 9.4707296	total: 2.15s	remaining: 2.19s
99:	learn: 9.3997718	total: 2.17s	remaining: 2.17s
100:	learn: 9.3300948	total: 2.19s	remaining: 2.15s
101:	learn: 9.2678794	total: 2.21s	remaining: 2.12s
102:	learn: 9.2135445	total: 2.23s	remaining: 2.1s
103:	learn: 9.1774382	total: 2.25s	remaining: 2.08s
104:	learn: 9.1411747	total: 2.27s	remaining: 2.05s
105:	learn: 9.0714633	total: 2.3s	remaining: 2.04s
106:	learn: 9.0283498	total: 2.33s	remaining: 2.02s
107:	learn: 8.9822832	total: 2.35s	remaining: 2s
108:	learn: 8.9269786	total: 2.37s	remaining: 1.98s
109:	learn: 8.8844134	total: 2.39s	remaining: 1.96s
110:	learn: 8.8411557	total: 2.41s	remaining: 1.93s
111:	learn: 8.7949992	total: 2.43s	remaining: 1.91s
112:	learn: 8.7541601	total: 2.45s	remaining: 1.89s
113:	learn: 8.6903414	total: 2.47s	remaining: 1.86s
114:	learn: 8.6334340	total: 2.5s	remaining: 1.84s
115:	learn: 8.5733848	total: 2.52s	remaining: 1.82s
116:	learn: 8.5233612	total: 2.54s	remaining: 1.8s
117:	learn: 8.4557467	total: 2.56s	remaining: 1.78s
118:	learn: 8.4074673	total: 2.58s	remaining: 1.76s
119:	learn: 8.3462613	total: 2.6s	remaining: 1.73s
120:	learn: 8.3116172	total: 2.62s	remaining: 1.71s
121:	learn: 8.2772734	total: 2.64s	remaining: 1.69s
122:	learn: 8.2399615	total: 2.66s	remaining: 1.66s
123:	learn: 8.1899492	total: 2.69s	remaining: 1.65s
124:	learn: 8.1399508	total: 2.71s	remaining: 1.63s
125:	learn: 8.0974791	total: 2.73s	remaining: 1.61s
126:	learn: 8.0439068	total: 2.76s	remaining: 1.58s
127:	learn: 8.0011231	total: 2.78s	remaining: 1.56s
128:	learn: 7.9648000	total: 2.8s	remaining: 1.54s
129:	learn: 7.9205463	total: 2.83s	remaining: 1.52s
130:	learn: 7.8861918	total: 2.85s	remaining: 1.5s
131:	learn: 7.8426734	total: 2.87s	remaining: 1.48s
132:	learn: 7.7808473	total: 2.89s	remaining: 1.46s
133:	learn: 7.7588830	total: 2.92s	remaining: 1.44s
134:	learn: 7.7208354	total: 2.94s	remaining: 1.42s
135:	learn: 7.6832009	total: 2.97s	remaining: 1.4s
136:	learn: 7.6489816	total: 2.99s	remaining: 1.37s
137:	learn: 7.6052064	total: 3.01s	remaining: 1.35s
138:	learn: 7.5767556	total: 3.03s	remaining: 1.33s
139:	learn: 7.5423647	total: 3.05s	remaining: 1.31s
140:	learn: 7.4910023	total: 3.08s	remaining: 1.29s
141:	learn: 7.4482152	total: 3.11s	remaining: 1.27s
142:	learn: 7.4290249	total: 3.13s	remaining: 1.25s
143:	learn: 7.3787224	total: 3.16s	remaining: 1.23s
144:	learn: 7.3310921	total: 3.19s	remaining: 1.21s
145:	learn: 7.2685836	total: 3.21s	remaining: 1.19s
146:	learn: 7.2367369	total: 3.23s	remaining: 1.17s
147:	learn: 7.2039225	total: 3.26s	remaining: 1.15s
148:	learn: 7.1552420	total: 3.28s	remaining: 1.12s
149:	learn: 7.1200744	total: 3.3s	remaining: 1.1s
150:	learn: 7.0709170	total: 3.33s	remaining: 1.08s
151:	learn: 7.0316433	total: 3.37s	remaining: 1.06s
152:	learn: 6.9976068	total: 3.39s	remaining: 1.04s
153:	learn: 6.9549446	total: 3.41s	remaining: 1.02s
154:	learn: 6.9117671	total: 3.44s	remaining: 998ms
155:	learn: 6.8678412	total: 3.46s	remaining: 976ms
156:	learn: 6.8352541	total: 3.48s	remaining: 953ms
157:	learn: 6.8079569	total: 3.5s	remaining: 930ms
158:	learn: 6.7753416	total: 3.52s	remaining: 908ms
159:	learn: 6.7536850	total: 3.55s	remaining: 887ms
160:	learn: 6.7205643	total: 3.58s	remaining: 868ms
161:	learn: 6.6790291	total: 3.61s	remaining: 847ms
162:	learn: 6.6489125	total: 3.63s	remaining: 825ms
163:	learn: 6.6243412	total: 3.66s	remaining: 803ms
164:	learn: 6.5849298	total: 3.68s	remaining: 781ms
165:	learn: 6.5695704	total: 3.7s	remaining: 759ms
166:	learn: 6.5349747	total: 3.73s	remaining: 736ms
167:	learn: 6.4871810	total: 3.75s	remaining: 714ms
168:	learn: 6.4496084	total: 3.77s	remaining: 692ms
169:	learn: 6.4137654	total: 3.8s	remaining: 671ms
170:	learn: 6.3728109	total: 3.82s	remaining: 649ms
171:	learn: 6.3306392	total: 3.85s	remaining: 628ms
172:	learn: 6.2990104	total: 3.88s	remaining: 605ms
173:	learn: 6.2837204	total: 3.9s	remaining: 583ms
174:	learn: 6.2433465	total: 3.92s	remaining: 560ms
175:	learn: 6.2145328	total: 3.94s	remaining: 537ms
176:	learn: 6.1721908	total: 3.96s	remaining: 515ms
177:	learn: 6.1380169	total: 3.99s	remaining: 493ms
178:	learn: 6.1017656	total: 4.01s	remaining: 471ms
179:	learn: 6.0626665	total: 4.04s	remaining: 449ms
180:	learn: 6.0461952	total: 4.07s	remaining: 427ms
181:	learn: 6.0172697	total: 4.1s	remaining: 405ms
182:	learn: 5.9856992	total: 4.12s	remaining: 383ms
183:	learn: 5.9478487	total: 4.14s	remaining: 360ms
184:	learn: 5.9081783	total: 4.17s	remaining: 338ms
185:	learn: 5.8851916	total: 4.19s	remaining: 315ms
186:	learn: 5.8517386	total: 4.21s	remaining: 293ms
187:	learn: 5.8285753	total: 4.24s	remaining: 270ms
188:	learn: 5.7940926	total: 4.27s	remaining: 248ms
189:	learn: 5.7659749	total: 4.29s	remaining: 226ms
190:	learn: 5.7478550	total: 4.31s	remaining: 203ms
191:	learn: 5.7215872	total: 4.34s	remaining: 181ms
192:	learn: 5.6855264	total: 4.37s	remaining: 158ms
193:	learn: 5.6500976	total: 4.39s	remaining: 136ms
194:	learn: 5.6095973	total: 4.42s	remaining: 113ms
195:	learn: 5.5759839	total: 4.44s	remaining: 90.6ms
196:	learn: 5.5501497	total: 4.47s	remaining: 68ms
197:	learn: 5.5125773	total: 4.5s	remaining: 45.4ms
198:	learn: 5.4735750	total: 4.52s	remaining: 22.7ms
199:	learn: 5.4583140	total: 4.55s	remaining: 0us
0:	learn: 42.9926207	total: 24.7ms	remaining: 4.92s
1:	learn: 41.9318955	total: 49.4ms	remaining: 4.89s
2:	learn: 41.0022152	total: 88.9ms	remaining: 5.84s
3:	learn: 40.1316455	total: 113ms	remaining: 5.51s
4:	learn: 39.3025337	total: 136ms	remaining: 5.31s
5:	learn: 38.2742529	total: 160ms	remaining: 5.17s
6:	learn: 37.3862274	total: 184ms	remaining: 5.07s
7:	learn: 36.4195721	total: 207ms	remaining: 4.97s
8:	learn: 35.7209650	total: 230ms	remaining: 4.87s
9:	learn: 34.8505622	total: 254ms	remaining: 4.83s
10:	learn: 34.0461426	total: 280ms	remaining: 4.8s
11:	learn: 33.3894212	total: 308ms	remaining: 4.82s
12:	learn: 32.5545835	total: 344ms	remaining: 4.94s
13:	learn: 31.7211463	total: 367ms	remaining: 4.87s
14:	learn: 31.0440401	total: 390ms	remaining: 4.81s
15:	learn: 30.3845013	total: 416ms	remaining: 4.78s
16:	learn: 29.8020882	total: 438ms	remaining: 4.71s
17:	learn: 29.2132262	total: 461ms	remaining: 4.66s
18:	learn: 28.5262512	total: 482ms	remaining: 4.59s
19:	learn: 27.8276439	total: 505ms	remaining: 4.54s
20:	learn: 27.2324195	total: 529ms	remaining: 4.5s
21:	learn: 26.7543625	total: 556ms	remaining: 4.5s
22:	learn: 26.3175298	total: 579ms	remaining: 4.46s
23:	learn: 25.8967125	total: 608ms	remaining: 4.46s
24:	learn: 25.3222501	total: 628ms	remaining: 4.4s
25:	learn: 24.8107258	total: 649ms	remaining: 4.35s
26:	learn: 24.3897671	total: 652ms	remaining: 4.18s
27:	learn: 23.9914208	total: 673ms	remaining: 4.13s
28:	learn: 23.5529513	total: 694ms	remaining: 4.09s
29:	learn: 23.1877842	total: 718ms	remaining: 4.07s
30:	learn: 22.8394086	total: 745ms	remaining: 4.06s
31:	learn: 22.4793141	total: 778ms	remaining: 4.08s
32:	learn: 22.1926518	total: 804ms	remaining: 4.07s
33:	learn: 21.8606860	total: 827ms	remaining: 4.04s
34:	learn: 21.4947094	total: 858ms	remaining: 4.04s
35:	learn: 21.1482380	total: 880ms	remaining: 4.01s
36:	learn: 20.8239544	total: 902ms	remaining: 3.97s
37:	learn: 20.5150933	total: 924ms	remaining: 3.94s
38:	learn: 20.1599880	total: 947ms	remaining: 3.91s
39:	learn: 19.8759507	total: 978ms	remaining: 3.91s
40:	learn: 19.5853513	total: 993ms	remaining: 3.85s
41:	learn: 19.4990617	total: 996ms	remaining: 3.75s
42:	learn: 19.2904285	total: 1.02s	remaining: 3.71s
43:	learn: 19.0060840	total: 1.04s	remaining: 3.68s
44:	learn: 18.7979613	total: 1.06s	remaining: 3.65s
45:	learn: 18.5730707	total: 1.08s	remaining: 3.62s
46:	learn: 18.3768212	total: 1.11s	remaining: 3.61s
47:	learn: 18.1147100	total: 1.13s	remaining: 3.58s
48:	learn: 17.8159562	total: 1.15s	remaining: 3.55s
49:	learn: 17.5839856	total: 1.19s	remaining: 3.56s
50:	learn: 17.4120110	total: 1.21s	remaining: 3.54s
51:	learn: 17.2382256	total: 1.24s	remaining: 3.52s
52:	learn: 17.0121500	total: 1.26s	remaining: 3.49s
53:	learn: 16.7907092	total: 1.28s	remaining: 3.46s
54:	learn: 16.6218039	total: 1.3s	remaining: 3.44s
55:	learn: 16.4327809	total: 1.32s	remaining: 3.4s
56:	learn: 16.2206056	total: 1.35s	remaining: 3.38s
57:	learn: 16.0996886	total: 1.38s	remaining: 3.37s
58:	learn: 15.9136733	total: 1.41s	remaining: 3.36s
59:	learn: 15.7543521	total: 1.43s	remaining: 3.33s
60:	learn: 15.5825313	total: 1.45s	remaining: 3.3s
61:	learn: 15.4010722	total: 1.47s	remaining: 3.28s
62:	learn: 15.2435421	total: 1.49s	remaining: 3.25s
63:	learn: 15.1051044	total: 1.52s	remaining: 3.23s
64:	learn: 14.9539750	total: 1.54s	remaining: 3.2s
65:	learn: 14.8213115	total: 1.56s	remaining: 3.17s
66:	learn: 14.7224184	total: 1.59s	remaining: 3.15s
67:	learn: 14.5238762	total: 1.63s	remaining: 3.17s
68:	learn: 14.3254679	total: 1.66s	remaining: 3.15s
69:	learn: 14.2246196	total: 1.68s	remaining: 3.12s
70:	learn: 14.0666647	total: 1.71s	remaining: 3.1s
71:	learn: 13.9605706	total: 1.73s	remaining: 3.07s
72:	learn: 13.8507597	total: 1.75s	remaining: 3.04s
73:	learn: 13.7339190	total: 1.77s	remaining: 3.01s
74:	learn: 13.6863761	total: 1.79s	remaining: 2.98s
75:	learn: 13.5658578	total: 1.82s	remaining: 2.97s
76:	learn: 13.4554508	total: 1.84s	remaining: 2.95s
77:	learn: 13.3644073	total: 1.87s	remaining: 2.93s
78:	learn: 13.2572594	total: 1.9s	remaining: 2.9s
79:	learn: 13.1701563	total: 1.92s	remaining: 2.87s
80:	learn: 13.0640002	total: 1.94s	remaining: 2.85s
81:	learn: 12.9526375	total: 1.96s	remaining: 2.82s
82:	learn: 12.8448135	total: 1.99s	remaining: 2.8s
83:	learn: 12.7231228	total: 2.01s	remaining: 2.78s
84:	learn: 12.5890300	total: 2.04s	remaining: 2.76s
85:	learn: 12.4491533	total: 2.06s	remaining: 2.73s
86:	learn: 12.3145494	total: 2.09s	remaining: 2.71s
87:	learn: 12.2535348	total: 2.11s	remaining: 2.69s
88:	learn: 12.1984046	total: 2.14s	remaining: 2.67s
89:	learn: 12.1604813	total: 2.17s	remaining: 2.65s
90:	learn: 12.0643817	total: 2.19s	remaining: 2.62s
91:	learn: 11.9715230	total: 2.21s	remaining: 2.6s
92:	learn: 11.8696994	total: 2.24s	remaining: 2.58s
93:	learn: 11.7765073	total: 2.27s	remaining: 2.56s
94:	learn: 11.6783712	total: 2.29s	remaining: 2.53s
95:	learn: 11.6258045	total: 2.31s	remaining: 2.5s
96:	learn: 11.5262897	total: 2.33s	remaining: 2.48s
97:	learn: 11.4355051	total: 2.35s	remaining: 2.45s
98:	learn: 11.3469700	total: 2.38s	remaining: 2.43s
99:	learn: 11.2812844	total: 2.4s	remaining: 2.4s
100:	learn: 11.1926035	total: 2.42s	remaining: 2.38s
101:	learn: 11.1280192	total: 2.45s	remaining: 2.36s
102:	learn: 11.0508229	total: 2.48s	remaining: 2.34s
103:	learn: 10.9804462	total: 2.51s	remaining: 2.31s
104:	learn: 10.9152956	total: 2.53s	remaining: 2.29s
105:	learn: 10.8365067	total: 2.56s	remaining: 2.27s
106:	learn: 10.7817140	total: 2.58s	remaining: 2.24s
107:	learn: 10.7059777	total: 2.6s	remaining: 2.21s
108:	learn: 10.6260340	total: 2.62s	remaining: 2.19s
109:	learn: 10.5423564	total: 2.66s	remaining: 2.18s
110:	learn: 10.4989232	total: 2.69s	remaining: 2.15s
111:	learn: 10.4467606	total: 2.71s	remaining: 2.13s
112:	learn: 10.3685116	total: 2.73s	remaining: 2.1s
113:	learn: 10.2865937	total: 2.75s	remaining: 2.08s
114:	learn: 10.2296268	total: 2.77s	remaining: 2.05s
115:	learn: 10.1906427	total: 2.79s	remaining: 2.02s
116:	learn: 10.1437775	total: 2.81s	remaining: 2s
117:	learn: 10.1028189	total: 2.84s	remaining: 1.97s
118:	learn: 10.0453078	total: 2.86s	remaining: 1.95s
119:	learn: 9.9973288	total: 2.9s	remaining: 1.93s
120:	learn: 9.9355459	total: 2.92s	remaining: 1.91s
121:	learn: 9.8840000	total: 2.95s	remaining: 1.88s
122:	learn: 9.8637795	total: 2.97s	remaining: 1.86s
123:	learn: 9.7998368	total: 2.99s	remaining: 1.83s
124:	learn: 9.7120051	total: 3.02s	remaining: 1.81s
125:	learn: 9.6436634	total: 3.04s	remaining: 1.78s
126:	learn: 9.5903060	total: 3.06s	remaining: 1.76s
127:	learn: 9.5239998	total: 3.09s	remaining: 1.74s
128:	learn: 9.4706107	total: 3.12s	remaining: 1.72s
129:	learn: 9.4243350	total: 3.14s	remaining: 1.69s
130:	learn: 9.3771981	total: 3.17s	remaining: 1.67s
131:	learn: 9.3319455	total: 3.19s	remaining: 1.64s
132:	learn: 9.2589088	total: 3.21s	remaining: 1.62s
133:	learn: 9.2312438	total: 3.23s	remaining: 1.59s
134:	learn: 9.1832306	total: 3.25s	remaining: 1.56s
135:	learn: 9.1377444	total: 3.27s	remaining: 1.54s
136:	learn: 9.0988463	total: 3.3s	remaining: 1.52s
137:	learn: 9.0534782	total: 3.33s	remaining: 1.5s
138:	learn: 8.9848070	total: 3.36s	remaining: 1.47s
139:	learn: 8.9497061	total: 3.38s	remaining: 1.45s
140:	learn: 8.9258905	total: 3.41s	remaining: 1.43s
141:	learn: 8.8715435	total: 3.43s	remaining: 1.4s
142:	learn: 8.8316763	total: 3.46s	remaining: 1.38s
143:	learn: 8.7590092	total: 3.48s	remaining: 1.35s
144:	learn: 8.7249757	total: 3.5s	remaining: 1.33s
145:	learn: 8.6819757	total: 3.53s	remaining: 1.3s
146:	learn: 8.6304476	total: 3.55s	remaining: 1.28s
147:	learn: 8.5640394	total: 3.58s	remaining: 1.26s
148:	learn: 8.5277172	total: 3.6s	remaining: 1.23s
149:	learn: 8.4596322	total: 3.62s	remaining: 1.21s
150:	learn: 8.3992348	total: 3.65s	remaining: 1.18s
151:	learn: 8.3496991	total: 3.67s	remaining: 1.16s
152:	learn: 8.2930953	total: 3.69s	remaining: 1.13s
153:	learn: 8.2562084	total: 3.71s	remaining: 1.11s
154:	learn: 8.2029279	total: 3.74s	remaining: 1.08s
155:	learn: 8.1653055	total: 3.77s	remaining: 1.06s
156:	learn: 8.1133690	total: 3.8s	remaining: 1.04s
157:	learn: 8.0482828	total: 3.82s	remaining: 1.01s
158:	learn: 8.0060251	total: 3.84s	remaining: 991ms
159:	learn: 7.9747671	total: 3.87s	remaining: 967ms
160:	learn: 7.9380210	total: 3.89s	remaining: 942ms
161:	learn: 7.8978888	total: 3.92s	remaining: 920ms
162:	learn: 7.8408472	total: 3.95s	remaining: 897ms
163:	learn: 7.8052289	total: 3.98s	remaining: 873ms
164:	learn: 7.7532049	total: 4s	remaining: 848ms
165:	learn: 7.7163635	total: 4.02s	remaining: 823ms
166:	learn: 7.6803890	total: 4.04s	remaining: 799ms
167:	learn: 7.6348034	total: 4.06s	remaining: 774ms
168:	learn: 7.5922831	total: 4.08s	remaining: 749ms
169:	learn: 7.5294905	total: 4.11s	remaining: 725ms
170:	learn: 7.5034404	total: 4.13s	remaining: 700ms
171:	learn: 7.4585315	total: 4.15s	remaining: 675ms
172:	learn: 7.3869248	total: 4.17s	remaining: 651ms
173:	learn: 7.3434759	total: 4.19s	remaining: 627ms
174:	learn: 7.2986802	total: 4.22s	remaining: 603ms
175:	learn: 7.2541427	total: 4.24s	remaining: 579ms
176:	learn: 7.2284611	total: 4.27s	remaining: 555ms
177:	learn: 7.1828521	total: 4.29s	remaining: 530ms
178:	learn: 7.1373050	total: 4.31s	remaining: 506ms
179:	learn: 7.1126552	total: 4.33s	remaining: 481ms
180:	learn: 7.0638576	total: 4.35s	remaining: 457ms
181:	learn: 7.0192711	total: 4.37s	remaining: 432ms
182:	learn: 6.9816129	total: 4.39s	remaining: 408ms
183:	learn: 6.9541954	total: 4.42s	remaining: 385ms
184:	learn: 6.9111408	total: 4.44s	remaining: 360ms
185:	learn: 6.8770181	total: 4.46s	remaining: 336ms
186:	learn: 6.8525387	total: 4.49s	remaining: 312ms
187:	learn: 6.8370868	total: 4.5s	remaining: 288ms
188:	learn: 6.7890843	total: 4.53s	remaining: 263ms
189:	learn: 6.7547976	total: 4.54s	remaining: 239ms
190:	learn: 6.7161335	total: 4.57s	remaining: 215ms
191:	learn: 6.6873604	total: 4.59s	remaining: 191ms
192:	learn: 6.6428130	total: 4.61s	remaining: 167ms
193:	learn: 6.5963180	total: 4.64s	remaining: 144ms
194:	learn: 6.5601136	total: 4.67s	remaining: 120ms
195:	learn: 6.5308359	total: 4.69s	remaining: 95.7ms
196:	learn: 6.5141670	total: 4.71s	remaining: 71.8ms
197:	learn: 6.4694863	total: 4.74s	remaining: 47.8ms
198:	learn: 6.4363955	total: 4.76s	remaining: 23.9ms
199:	learn: 6.3863688	total: 4.78s	remaining: 0us
0:	learn: 46.3266214	total: 19.6ms	remaining: 3.91s
1:	learn: 45.1514312	total: 39.7ms	remaining: 3.93s
2:	learn: 44.1597260	total: 61.7ms	remaining: 4.05s
3:	learn: 43.3312581	total: 81.6ms	remaining: 4s
4:	learn: 42.2544790	total: 103ms	remaining: 4.03s
5:	learn: 41.4327745	total: 123ms	remaining: 3.98s
6:	learn: 40.5876528	total: 142ms	remaining: 3.93s
7:	learn: 39.8244581	total: 165ms	remaining: 3.95s
8:	learn: 39.0259762	total: 187ms	remaining: 3.97s
9:	learn: 38.0775608	total: 219ms	remaining: 4.17s
10:	learn: 37.5303598	total: 244ms	remaining: 4.18s
11:	learn: 36.8182638	total: 267ms	remaining: 4.18s
12:	learn: 36.1926770	total: 291ms	remaining: 4.18s
13:	learn: 35.3678676	total: 313ms	remaining: 4.15s
14:	learn: 34.7135576	total: 334ms	remaining: 4.12s
15:	learn: 34.0868578	total: 355ms	remaining: 4.08s
16:	learn: 33.3917608	total: 377ms	remaining: 4.06s
17:	learn: 32.8468089	total: 399ms	remaining: 4.03s
18:	learn: 32.1641109	total: 428ms	remaining: 4.08s
19:	learn: 31.6438269	total: 451ms	remaining: 4.06s
20:	learn: 31.1283566	total: 470ms	remaining: 4s
21:	learn: 30.4995785	total: 489ms	remaining: 3.96s
22:	learn: 30.0052433	total: 510ms	remaining: 3.92s
23:	learn: 29.5387468	total: 530ms	remaining: 3.89s
24:	learn: 29.0769319	total: 549ms	remaining: 3.84s
25:	learn: 28.6815017	total: 570ms	remaining: 3.81s
26:	learn: 28.2580471	total: 592ms	remaining: 3.79s
27:	learn: 27.9023835	total: 614ms	remaining: 3.77s
28:	learn: 27.4643921	total: 644ms	remaining: 3.8s
29:	learn: 27.0297350	total: 667ms	remaining: 3.78s
30:	learn: 26.6109927	total: 690ms	remaining: 3.76s
31:	learn: 26.1717234	total: 712ms	remaining: 3.74s
32:	learn: 25.7657009	total: 736ms	remaining: 3.73s
33:	learn: 25.3655630	total: 756ms	remaining: 3.69s
34:	learn: 24.9552495	total: 775ms	remaining: 3.65s
35:	learn: 24.6587249	total: 796ms	remaining: 3.63s
36:	learn: 24.1629997	total: 824ms	remaining: 3.63s
37:	learn: 23.8708337	total: 848ms	remaining: 3.61s
38:	learn: 23.5244511	total: 868ms	remaining: 3.58s
39:	learn: 23.1849323	total: 887ms	remaining: 3.55s
40:	learn: 22.9351049	total: 908ms	remaining: 3.52s
41:	learn: 22.5277714	total: 927ms	remaining: 3.49s
42:	learn: 22.2395030	total: 949ms	remaining: 3.47s
43:	learn: 22.0299814	total: 970ms	remaining: 3.44s
44:	learn: 21.6885189	total: 992ms	remaining: 3.42s
45:	learn: 21.3288224	total: 1.01s	remaining: 3.39s
46:	learn: 21.0899946	total: 1.03s	remaining: 3.37s
47:	learn: 20.8247347	total: 1.07s	remaining: 3.38s
48:	learn: 20.5036358	total: 1.09s	remaining: 3.36s
49:	learn: 20.1622332	total: 1.11s	remaining: 3.34s
50:	learn: 19.9564962	total: 1.13s	remaining: 3.31s
51:	learn: 19.7533770	total: 1.15s	remaining: 3.29s
52:	learn: 19.5817440	total: 1.17s	remaining: 3.25s
53:	learn: 19.3640916	total: 1.19s	remaining: 3.22s
54:	learn: 19.2561089	total: 1.21s	remaining: 3.19s
55:	learn: 19.0461047	total: 1.23s	remaining: 3.17s
56:	learn: 18.7888958	total: 1.25s	remaining: 3.14s
57:	learn: 18.5675327	total: 1.28s	remaining: 3.13s
58:	learn: 18.3523517	total: 1.3s	remaining: 3.1s
59:	learn: 18.1831957	total: 1.32s	remaining: 3.07s
60:	learn: 17.9920208	total: 1.33s	remaining: 3.04s
61:	learn: 17.8042217	total: 1.35s	remaining: 3.02s
62:	learn: 17.6855735	total: 1.38s	remaining: 2.99s
63:	learn: 17.4623156	total: 1.4s	remaining: 2.97s
64:	learn: 17.3086540	total: 1.42s	remaining: 2.94s
65:	learn: 17.1005708	total: 1.43s	remaining: 2.91s
66:	learn: 16.9122145	total: 1.46s	remaining: 2.89s
67:	learn: 16.7666446	total: 1.48s	remaining: 2.88s
68:	learn: 16.6234993	total: 1.51s	remaining: 2.86s
69:	learn: 16.4035590	total: 1.53s	remaining: 2.84s
70:	learn: 16.2483077	total: 1.55s	remaining: 2.82s
71:	learn: 16.0606167	total: 1.57s	remaining: 2.79s
72:	learn: 15.9344107	total: 1.59s	remaining: 2.77s
73:	learn: 15.7668192	total: 1.61s	remaining: 2.74s
74:	learn: 15.5833782	total: 1.63s	remaining: 2.72s
75:	learn: 15.4263720	total: 1.65s	remaining: 2.69s
76:	learn: 15.3208364	total: 1.68s	remaining: 2.68s
77:	learn: 15.1982265	total: 1.7s	remaining: 2.66s
78:	learn: 15.0779040	total: 1.72s	remaining: 2.63s
79:	learn: 14.9608105	total: 1.74s	remaining: 2.6s
80:	learn: 14.7888514	total: 1.76s	remaining: 2.58s
81:	learn: 14.6665763	total: 1.78s	remaining: 2.56s
82:	learn: 14.5838729	total: 1.8s	remaining: 2.53s
83:	learn: 14.4740569	total: 1.81s	remaining: 2.5s
84:	learn: 14.3288121	total: 1.83s	remaining: 2.48s
85:	learn: 14.2289255	total: 1.85s	remaining: 2.46s
86:	learn: 14.1016858	total: 1.88s	remaining: 2.44s
87:	learn: 13.9584118	total: 1.91s	remaining: 2.42s
88:	learn: 13.8573066	total: 1.93s	remaining: 2.4s
89:	learn: 13.7468438	total: 1.95s	remaining: 2.38s
90:	learn: 13.6485024	total: 1.97s	remaining: 2.36s
91:	learn: 13.5168517	total: 1.99s	remaining: 2.34s
92:	learn: 13.4303631	total: 2.02s	remaining: 2.32s
93:	learn: 13.3104458	total: 2.04s	remaining: 2.3s
94:	learn: 13.2180209	total: 2.06s	remaining: 2.28s
95:	learn: 13.1130752	total: 2.08s	remaining: 2.26s
96:	learn: 12.9990802	total: 2.11s	remaining: 2.24s
97:	learn: 12.9542182	total: 2.13s	remaining: 2.21s
98:	learn: 12.8588744	total: 2.15s	remaining: 2.19s
99:	learn: 12.7258962	total: 2.17s	remaining: 2.17s
100:	learn: 12.6352268	total: 2.19s	remaining: 2.14s
101:	learn: 12.5619522	total: 2.21s	remaining: 2.12s
102:	learn: 12.4634337	total: 2.23s	remaining: 2.1s
103:	learn: 12.3609898	total: 2.24s	remaining: 2.07s
104:	learn: 12.2125688	total: 2.26s	remaining: 2.05s
105:	learn: 12.1486953	total: 2.29s	remaining: 2.03s
106:	learn: 12.0898441	total: 2.32s	remaining: 2.01s
107:	learn: 12.0010232	total: 2.34s	remaining: 1.99s
108:	learn: 11.9176187	total: 2.36s	remaining: 1.97s
109:	learn: 11.8371178	total: 2.38s	remaining: 1.95s
110:	learn: 11.7788535	total: 2.41s	remaining: 1.93s
111:	learn: 11.6950379	total: 2.43s	remaining: 1.91s
112:	learn: 11.5654368	total: 2.45s	remaining: 1.88s
113:	learn: 11.4875190	total: 2.46s	remaining: 1.86s
114:	learn: 11.3710623	total: 2.49s	remaining: 1.84s
115:	learn: 11.2824160	total: 2.51s	remaining: 1.82s
116:	learn: 11.2154904	total: 2.54s	remaining: 1.8s
117:	learn: 11.1156693	total: 2.56s	remaining: 1.78s
118:	learn: 11.0246386	total: 2.57s	remaining: 1.75s
119:	learn: 10.9408189	total: 2.59s	remaining: 1.73s
120:	learn: 10.8948758	total: 2.62s	remaining: 1.71s
121:	learn: 10.8181533	total: 2.64s	remaining: 1.69s
122:	learn: 10.7773891	total: 2.67s	remaining: 1.67s
123:	learn: 10.7102903	total: 2.69s	remaining: 1.65s
124:	learn: 10.6398196	total: 2.71s	remaining: 1.63s
125:	learn: 10.5724929	total: 2.74s	remaining: 1.61s
126:	learn: 10.5053766	total: 2.76s	remaining: 1.59s
127:	learn: 10.4586496	total: 2.79s	remaining: 1.57s
128:	learn: 10.3564151	total: 2.81s	remaining: 1.55s
129:	learn: 10.2759173	total: 2.83s	remaining: 1.53s
130:	learn: 10.2053847	total: 2.86s	remaining: 1.51s
131:	learn: 10.1569693	total: 2.88s	remaining: 1.48s
132:	learn: 10.0939422	total: 2.91s	remaining: 1.47s
133:	learn: 10.0598247	total: 2.94s	remaining: 1.45s
134:	learn: 10.0024727	total: 2.96s	remaining: 1.43s
135:	learn: 9.9528111	total: 2.99s	remaining: 1.41s
136:	learn: 9.8945114	total: 3.01s	remaining: 1.38s
137:	learn: 9.8346449	total: 3.04s	remaining: 1.36s
138:	learn: 9.7449422	total: 3.06s	remaining: 1.34s
139:	learn: 9.6851089	total: 3.08s	remaining: 1.32s
140:	learn: 9.6140363	total: 3.1s	remaining: 1.3s
141:	learn: 9.5496776	total: 3.12s	remaining: 1.27s
142:	learn: 9.4851950	total: 3.14s	remaining: 1.25s
143:	learn: 9.4142786	total: 3.17s	remaining: 1.23s
144:	learn: 9.3481846	total: 3.19s	remaining: 1.21s
145:	learn: 9.3028915	total: 3.22s	remaining: 1.19s
146:	learn: 9.2633103	total: 3.24s	remaining: 1.17s
147:	learn: 9.2202725	total: 3.27s	remaining: 1.15s
148:	learn: 9.1901978	total: 3.29s	remaining: 1.13s
149:	learn: 9.1399499	total: 3.31s	remaining: 1.1s
150:	learn: 9.0844800	total: 3.33s	remaining: 1.08s
151:	learn: 9.0268509	total: 3.35s	remaining: 1.06s
152:	learn: 8.9454080	total: 3.37s	remaining: 1.04s
153:	learn: 8.8961891	total: 3.4s	remaining: 1.02s
154:	learn: 8.8461471	total: 3.42s	remaining: 995ms
155:	learn: 8.7827134	total: 3.44s	remaining: 972ms
156:	learn: 8.7126457	total: 3.46s	remaining: 949ms
157:	learn: 8.6457355	total: 3.48s	remaining: 926ms
158:	learn: 8.5973469	total: 3.5s	remaining: 903ms
159:	learn: 8.5238781	total: 3.52s	remaining: 881ms
160:	learn: 8.4753874	total: 3.54s	remaining: 858ms
161:	learn: 8.4102398	total: 3.57s	remaining: 837ms
162:	learn: 8.3427298	total: 3.59s	remaining: 815ms
163:	learn: 8.2879829	total: 3.62s	remaining: 794ms
164:	learn: 8.2017948	total: 3.64s	remaining: 773ms
165:	learn: 8.1414522	total: 3.67s	remaining: 751ms
166:	learn: 8.0997373	total: 3.69s	remaining: 729ms
167:	learn: 8.0426513	total: 3.71s	remaining: 706ms
168:	learn: 8.0171299	total: 3.73s	remaining: 684ms
169:	learn: 7.9860244	total: 3.75s	remaining: 662ms
170:	learn: 7.9243600	total: 3.77s	remaining: 640ms
171:	learn: 7.8888500	total: 3.8s	remaining: 618ms
172:	learn: 7.8429133	total: 3.83s	remaining: 597ms
173:	learn: 7.7878355	total: 3.85s	remaining: 575ms
174:	learn: 7.7477647	total: 3.87s	remaining: 553ms
175:	learn: 7.6996609	total: 3.89s	remaining: 530ms
176:	learn: 7.6508695	total: 3.91s	remaining: 508ms
177:	learn: 7.6228709	total: 3.93s	remaining: 486ms
178:	learn: 7.5427816	total: 3.95s	remaining: 463ms
179:	learn: 7.4993051	total: 3.97s	remaining: 441ms
180:	learn: 7.4506031	total: 3.99s	remaining: 419ms
181:	learn: 7.4126852	total: 4.01s	remaining: 397ms
182:	learn: 7.3727232	total: 4.04s	remaining: 376ms
183:	learn: 7.3245476	total: 4.07s	remaining: 354ms
184:	learn: 7.2930719	total: 4.09s	remaining: 332ms
185:	learn: 7.2609171	total: 4.12s	remaining: 310ms
186:	learn: 7.2219298	total: 4.14s	remaining: 288ms
187:	learn: 7.1686640	total: 4.16s	remaining: 266ms
188:	learn: 7.1391386	total: 4.18s	remaining: 243ms
189:	learn: 7.0834226	total: 4.2s	remaining: 221ms
190:	learn: 7.0356769	total: 4.22s	remaining: 199ms
191:	learn: 6.9895273	total: 4.26s	remaining: 177ms
192:	learn: 6.9461560	total: 4.28s	remaining: 155ms
193:	learn: 6.9066032	total: 4.3s	remaining: 133ms
194:	learn: 6.8510364	total: 4.32s	remaining: 111ms
195:	learn: 6.8372660	total: 4.34s	remaining: 88.5ms
196:	learn: 6.8214482	total: 4.36s	remaining: 66.4ms
197:	learn: 6.7734991	total: 4.38s	remaining: 44.2ms
198:	learn: 6.7326852	total: 4.4s	remaining: 22.1ms
199:	learn: 6.7110050	total: 4.42s	remaining: 0us
0:	learn: 45.9215573	total: 21.6ms	remaining: 4.29s
1:	learn: 44.9284313	total: 45.3ms	remaining: 4.49s
2:	learn: 44.0711345	total: 64.1ms	remaining: 4.21s
3:	learn: 43.1946732	total: 83.9ms	remaining: 4.11s
4:	learn: 42.3849301	total: 105ms	remaining: 4.09s
5:	learn: 41.3846783	total: 125ms	remaining: 4.04s
6:	learn: 40.5478596	total: 154ms	remaining: 4.24s
7:	learn: 39.7877107	total: 178ms	remaining: 4.27s
8:	learn: 39.2235376	total: 197ms	remaining: 4.18s
9:	learn: 38.1495756	total: 216ms	remaining: 4.11s
10:	learn: 37.3934113	total: 236ms	remaining: 4.05s
11:	learn: 36.8586441	total: 255ms	remaining: 3.99s
12:	learn: 36.0985370	total: 274ms	remaining: 3.94s
13:	learn: 35.3452538	total: 293ms	remaining: 3.89s
14:	learn: 34.5427415	total: 310ms	remaining: 3.83s
15:	learn: 33.9683642	total: 331ms	remaining: 3.81s
16:	learn: 33.4589244	total: 354ms	remaining: 3.81s
17:	learn: 32.9407753	total: 378ms	remaining: 3.82s
18:	learn: 32.4280468	total: 409ms	remaining: 3.9s
19:	learn: 31.7257475	total: 432ms	remaining: 3.89s
20:	learn: 31.1717140	total: 455ms	remaining: 3.88s
21:	learn: 30.6995996	total: 476ms	remaining: 3.85s
22:	learn: 30.2724641	total: 498ms	remaining: 3.83s
23:	learn: 29.7428509	total: 517ms	remaining: 3.79s
24:	learn: 29.1882571	total: 537ms	remaining: 3.76s
25:	learn: 28.7327799	total: 556ms	remaining: 3.72s
26:	learn: 28.2833877	total: 576ms	remaining: 3.69s
27:	learn: 27.9927194	total: 601ms	remaining: 3.69s
28:	learn: 27.4458955	total: 626ms	remaining: 3.69s
29:	learn: 27.0894181	total: 646ms	remaining: 3.66s
30:	learn: 26.6809084	total: 665ms	remaining: 3.63s
31:	learn: 26.2884767	total: 685ms	remaining: 3.6s
32:	learn: 25.8641383	total: 704ms	remaining: 3.56s
33:	learn: 25.4731759	total: 724ms	remaining: 3.53s
34:	learn: 25.1288573	total: 743ms	remaining: 3.5s
35:	learn: 24.7440894	total: 764ms	remaining: 3.48s
36:	learn: 24.4112270	total: 787ms	remaining: 3.46s
37:	learn: 24.0727081	total: 817ms	remaining: 3.48s
38:	learn: 23.7431725	total: 838ms	remaining: 3.46s
39:	learn: 23.4247988	total: 860ms	remaining: 3.44s
40:	learn: 23.1336117	total: 883ms	remaining: 3.42s
41:	learn: 22.8507281	total: 904ms	remaining: 3.4s
42:	learn: 22.5904652	total: 924ms	remaining: 3.37s
43:	learn: 22.3442324	total: 946ms	remaining: 3.35s
44:	learn: 22.0327536	total: 967ms	remaining: 3.33s
45:	learn: 21.7539265	total: 988ms	remaining: 3.31s
46:	learn: 21.5196696	total: 1.01s	remaining: 3.3s
47:	learn: 21.2340877	total: 1.04s	remaining: 3.29s
48:	learn: 20.9294404	total: 1.06s	remaining: 3.25s
49:	learn: 20.7129883	total: 1.07s	remaining: 3.22s
50:	learn: 20.4874120	total: 1.09s	remaining: 3.19s
51:	learn: 20.2801665	total: 1.11s	remaining: 3.17s
52:	learn: 20.1451290	total: 1.13s	remaining: 3.14s
53:	learn: 19.8893935	total: 1.15s	remaining: 3.11s
54:	learn: 19.6356393	total: 1.17s	remaining: 3.08s
55:	learn: 19.3929976	total: 1.19s	remaining: 3.05s
56:	learn: 19.1603234	total: 1.21s	remaining: 3.03s
57:	learn: 18.9606558	total: 1.24s	remaining: 3.03s
58:	learn: 18.7611006	total: 1.26s	remaining: 3.02s
59:	learn: 18.5930939	total: 1.28s	remaining: 3s
60:	learn: 18.4565961	total: 1.31s	remaining: 2.98s
61:	learn: 18.2641722	total: 1.33s	remaining: 2.95s
62:	learn: 18.1150502	total: 1.35s	remaining: 2.93s
63:	learn: 17.9331117	total: 1.36s	remaining: 2.9s
64:	learn: 17.7523560	total: 1.39s	remaining: 2.88s
65:	learn: 17.6211697	total: 1.4s	remaining: 2.85s
66:	learn: 17.4779253	total: 1.43s	remaining: 2.83s
67:	learn: 17.3972874	total: 1.45s	remaining: 2.82s
68:	learn: 17.3096715	total: 1.48s	remaining: 2.8s
69:	learn: 17.1933586	total: 1.5s	remaining: 2.78s
70:	learn: 17.0431030	total: 1.51s	remaining: 2.75s
71:	learn: 16.8568825	total: 1.53s	remaining: 2.73s
72:	learn: 16.7246266	total: 1.55s	remaining: 2.7s
73:	learn: 16.5696941	total: 1.57s	remaining: 2.68s
74:	learn: 16.4412110	total: 1.59s	remaining: 2.65s
75:	learn: 16.3346865	total: 1.61s	remaining: 2.63s
76:	learn: 16.1904210	total: 1.63s	remaining: 2.6s
77:	learn: 16.0299007	total: 1.65s	remaining: 2.58s
78:	learn: 15.9351887	total: 1.68s	remaining: 2.58s
79:	learn: 15.8037331	total: 1.71s	remaining: 2.56s
80:	learn: 15.6793752	total: 1.73s	remaining: 2.54s
81:	learn: 15.5259970	total: 1.75s	remaining: 2.52s
82:	learn: 15.4520966	total: 1.77s	remaining: 2.5s
83:	learn: 15.3523282	total: 1.79s	remaining: 2.47s
84:	learn: 15.3157447	total: 1.81s	remaining: 2.44s
85:	learn: 15.2372888	total: 1.82s	remaining: 2.42s
86:	learn: 15.0923008	total: 1.84s	remaining: 2.4s
87:	learn: 15.0181842	total: 1.86s	remaining: 2.37s
88:	learn: 14.8366764	total: 1.89s	remaining: 2.36s
89:	learn: 14.7247654	total: 1.92s	remaining: 2.35s
90:	learn: 14.6431207	total: 1.94s	remaining: 2.33s
91:	learn: 14.5705776	total: 1.97s	remaining: 2.31s
92:	learn: 14.4640014	total: 1.99s	remaining: 2.29s
93:	learn: 14.3666041	total: 2.01s	remaining: 2.27s
94:	learn: 14.3112685	total: 2.03s	remaining: 2.24s
95:	learn: 14.2184161	total: 2.05s	remaining: 2.22s
96:	learn: 14.1032991	total: 2.08s	remaining: 2.21s
97:	learn: 14.0586875	total: 2.11s	remaining: 2.19s
98:	learn: 13.9507118	total: 2.13s	remaining: 2.17s
99:	learn: 13.8778041	total: 2.15s	remaining: 2.15s
100:	learn: 13.7728695	total: 2.18s	remaining: 2.13s
101:	learn: 13.6608543	total: 2.2s	remaining: 2.12s
102:	learn: 13.5550488	total: 2.23s	remaining: 2.1s
103:	learn: 13.4489779	total: 2.25s	remaining: 2.08s
104:	learn: 13.3804592	total: 2.28s	remaining: 2.06s
105:	learn: 13.2836433	total: 2.31s	remaining: 2.04s
106:	learn: 13.2203501	total: 2.33s	remaining: 2.03s
107:	learn: 13.1493422	total: 2.36s	remaining: 2.01s
108:	learn: 13.0600009	total: 2.38s	remaining: 1.99s
109:	learn: 12.9684426	total: 2.4s	remaining: 1.96s
110:	learn: 12.9028699	total: 2.42s	remaining: 1.94s
111:	learn: 12.7963752	total: 2.44s	remaining: 1.92s
112:	learn: 12.7080153	total: 2.46s	remaining: 1.89s
113:	learn: 12.6204740	total: 2.48s	remaining: 1.87s
114:	learn: 12.5027992	total: 2.5s	remaining: 1.85s
115:	learn: 12.4544452	total: 2.53s	remaining: 1.83s
116:	learn: 12.3924059	total: 2.56s	remaining: 1.81s
117:	learn: 12.3170363	total: 2.58s	remaining: 1.79s
118:	learn: 12.2485670	total: 2.6s	remaining: 1.77s
119:	learn: 12.1257095	total: 2.62s	remaining: 1.75s
120:	learn: 12.0604229	total: 2.65s	remaining: 1.73s
121:	learn: 12.0088875	total: 2.67s	remaining: 1.7s
122:	learn: 11.9284487	total: 2.69s	remaining: 1.68s
123:	learn: 11.8528694	total: 2.71s	remaining: 1.66s
124:	learn: 11.7717673	total: 2.74s	remaining: 1.64s
125:	learn: 11.7240723	total: 2.76s	remaining: 1.62s
126:	learn: 11.6715318	total: 2.78s	remaining: 1.6s
127:	learn: 11.6276994	total: 2.8s	remaining: 1.58s
128:	learn: 11.5431431	total: 2.82s	remaining: 1.55s
129:	learn: 11.4385709	total: 2.84s	remaining: 1.53s
130:	learn: 11.3627369	total: 2.86s	remaining: 1.51s
131:	learn: 11.2970131	total: 2.88s	remaining: 1.48s
132:	learn: 11.2322847	total: 2.9s	remaining: 1.46s
133:	learn: 11.1846367	total: 2.93s	remaining: 1.44s
134:	learn: 11.1543979	total: 2.96s	remaining: 1.42s
135:	learn: 11.0823544	total: 2.98s	remaining: 1.4s
136:	learn: 11.0487163	total: 3s	remaining: 1.38s
137:	learn: 10.9832607	total: 3.02s	remaining: 1.36s
138:	learn: 10.9130824	total: 3.04s	remaining: 1.34s
139:	learn: 10.8579745	total: 3.07s	remaining: 1.31s
140:	learn: 10.7828907	total: 3.09s	remaining: 1.29s
141:	learn: 10.7103000	total: 3.11s	remaining: 1.27s
142:	learn: 10.6237800	total: 3.13s	remaining: 1.25s
143:	learn: 10.5716544	total: 3.16s	remaining: 1.23s
144:	learn: 10.4976092	total: 3.18s	remaining: 1.21s
145:	learn: 10.4313055	total: 3.2s	remaining: 1.19s
146:	learn: 10.3999486	total: 3.22s	remaining: 1.16s
147:	learn: 10.3502867	total: 3.24s	remaining: 1.14s
148:	learn: 10.3019991	total: 3.26s	remaining: 1.12s
149:	learn: 10.2488923	total: 3.28s	remaining: 1.09s
150:	learn: 10.1888838	total: 3.3s	remaining: 1.07s
151:	learn: 10.1116260	total: 3.32s	remaining: 1.05s
152:	learn: 10.0637742	total: 3.35s	remaining: 1.03s
153:	learn: 10.0463529	total: 3.38s	remaining: 1.01s
154:	learn: 9.9940485	total: 3.4s	remaining: 988ms
155:	learn: 9.9547623	total: 3.43s	remaining: 967ms
156:	learn: 9.8883659	total: 3.45s	remaining: 944ms
157:	learn: 9.8547995	total: 3.47s	remaining: 923ms
158:	learn: 9.7999920	total: 3.49s	remaining: 900ms
159:	learn: 9.7417080	total: 3.51s	remaining: 878ms
160:	learn: 9.6704634	total: 3.54s	remaining: 856ms
161:	learn: 9.6398702	total: 3.56s	remaining: 834ms
162:	learn: 9.5435727	total: 3.59s	remaining: 814ms
163:	learn: 9.4983201	total: 3.61s	remaining: 792ms
164:	learn: 9.4633708	total: 3.63s	remaining: 769ms
165:	learn: 9.4354208	total: 3.65s	remaining: 747ms
166:	learn: 9.3806854	total: 3.67s	remaining: 725ms
167:	learn: 9.3711495	total: 3.69s	remaining: 702ms
168:	learn: 9.3437714	total: 3.71s	remaining: 680ms
169:	learn: 9.2939136	total: 3.73s	remaining: 658ms
170:	learn: 9.2634408	total: 3.75s	remaining: 636ms
171:	learn: 9.2095802	total: 3.77s	remaining: 614ms
172:	learn: 9.1367149	total: 3.8s	remaining: 594ms
173:	learn: 9.0999811	total: 3.83s	remaining: 572ms
174:	learn: 9.0367025	total: 3.85s	remaining: 550ms
175:	learn: 8.9715179	total: 3.87s	remaining: 528ms
176:	learn: 8.9149353	total: 3.89s	remaining: 506ms
177:	learn: 8.8782863	total: 3.91s	remaining: 484ms
178:	learn: 8.8540567	total: 3.93s	remaining: 461ms
179:	learn: 8.8250018	total: 3.95s	remaining: 439ms
180:	learn: 8.7872819	total: 3.98s	remaining: 418ms
181:	learn: 8.7315187	total: 4s	remaining: 396ms
182:	learn: 8.6696386	total: 4.03s	remaining: 374ms
183:	learn: 8.6137125	total: 4.05s	remaining: 352ms
184:	learn: 8.5526564	total: 4.07s	remaining: 330ms
185:	learn: 8.4978425	total: 4.08s	remaining: 308ms
186:	learn: 8.4696701	total: 4.11s	remaining: 285ms
187:	learn: 8.4148472	total: 4.13s	remaining: 263ms
188:	learn: 8.3597806	total: 4.14s	remaining: 241ms
189:	learn: 8.2960142	total: 4.16s	remaining: 219ms
190:	learn: 8.2542563	total: 4.19s	remaining: 197ms
191:	learn: 8.2272414	total: 4.21s	remaining: 175ms
192:	learn: 8.2002236	total: 4.24s	remaining: 154ms
193:	learn: 8.1459890	total: 4.26s	remaining: 132ms
194:	learn: 8.1086196	total: 4.29s	remaining: 110ms
195:	learn: 8.0560727	total: 4.31s	remaining: 88ms
196:	learn: 8.0094006	total: 4.33s	remaining: 66ms
197:	learn: 7.9587782	total: 4.36s	remaining: 44ms
198:	learn: 7.9133276	total: 4.38s	remaining: 22ms
199:	learn: 7.8533351	total: 4.39s	remaining: 0us
0:	learn: 46.7822310	total: 18.7ms	remaining: 3.72s
1:	learn: 45.7821607	total: 36.6ms	remaining: 3.63s
2:	learn: 44.8561967	total: 55ms	remaining: 3.61s
3:	learn: 43.8403748	total: 73.6ms	remaining: 3.6s
4:	learn: 43.0453118	total: 93.6ms	remaining: 3.65s
5:	learn: 42.2563327	total: 113ms	remaining: 3.66s
6:	learn: 41.3419698	total: 133ms	remaining: 3.67s
7:	learn: 40.5164894	total: 160ms	remaining: 3.83s
8:	learn: 39.8924326	total: 186ms	remaining: 3.94s
9:	learn: 39.0363549	total: 207ms	remaining: 3.93s
10:	learn: 38.3058916	total: 228ms	remaining: 3.92s
11:	learn: 37.6507668	total: 249ms	remaining: 3.9s
12:	learn: 36.8661647	total: 270ms	remaining: 3.89s
13:	learn: 36.1668195	total: 290ms	remaining: 3.86s
14:	learn: 35.4405316	total: 309ms	remaining: 3.81s
15:	learn: 34.7706167	total: 331ms	remaining: 3.81s
16:	learn: 34.0932139	total: 355ms	remaining: 3.82s
17:	learn: 33.5806864	total: 379ms	remaining: 3.83s
18:	learn: 32.9827022	total: 398ms	remaining: 3.79s
19:	learn: 32.3339103	total: 417ms	remaining: 3.75s
20:	learn: 31.7658637	total: 436ms	remaining: 3.71s
21:	learn: 31.3001942	total: 455ms	remaining: 3.68s
22:	learn: 30.8802168	total: 474ms	remaining: 3.65s
23:	learn: 30.5086494	total: 494ms	remaining: 3.62s
24:	learn: 30.0097170	total: 512ms	remaining: 3.58s
25:	learn: 29.5185440	total: 531ms	remaining: 3.55s
26:	learn: 29.1325379	total: 552ms	remaining: 3.54s
27:	learn: 28.8194880	total: 577ms	remaining: 3.54s
28:	learn: 28.2457676	total: 603ms	remaining: 3.55s
29:	learn: 27.8248381	total: 625ms	remaining: 3.54s
30:	learn: 27.4206428	total: 646ms	remaining: 3.52s
31:	learn: 26.9688365	total: 667ms	remaining: 3.5s
32:	learn: 26.6098298	total: 690ms	remaining: 3.49s
33:	learn: 26.0979119	total: 709ms	remaining: 3.46s
34:	learn: 25.7628382	total: 729ms	remaining: 3.44s
35:	learn: 25.4503633	total: 748ms	remaining: 3.41s
36:	learn: 25.1459394	total: 768ms	remaining: 3.38s
37:	learn: 24.8310510	total: 789ms	remaining: 3.36s
38:	learn: 24.5019544	total: 815ms	remaining: 3.36s
39:	learn: 24.1193536	total: 834ms	remaining: 3.34s
40:	learn: 23.8351675	total: 853ms	remaining: 3.31s
41:	learn: 23.5419329	total: 870ms	remaining: 3.27s
42:	learn: 23.2736224	total: 889ms	remaining: 3.24s
43:	learn: 23.0174601	total: 907ms	remaining: 3.21s
44:	learn: 22.7145721	total: 927ms	remaining: 3.19s
45:	learn: 22.4737593	total: 949ms	remaining: 3.18s
46:	learn: 22.1964499	total: 968ms	remaining: 3.15s
47:	learn: 21.9273921	total: 990ms	remaining: 3.13s
48:	learn: 21.6532339	total: 1.01s	remaining: 3.12s
49:	learn: 21.3297885	total: 1.04s	remaining: 3.13s
50:	learn: 21.1049787	total: 1.06s	remaining: 3.1s
51:	learn: 20.9509899	total: 1.08s	remaining: 3.08s
52:	learn: 20.7119187	total: 1.1s	remaining: 3.06s
53:	learn: 20.4608975	total: 1.12s	remaining: 3.04s
54:	learn: 20.2456983	total: 1.14s	remaining: 3.02s
55:	learn: 20.0181848	total: 1.16s	remaining: 2.99s
56:	learn: 19.8324126	total: 1.17s	remaining: 2.92s
57:	learn: 19.6043971	total: 1.19s	remaining: 2.9s
58:	learn: 19.4054712	total: 1.21s	remaining: 2.89s
59:	learn: 19.2208737	total: 1.23s	remaining: 2.88s
60:	learn: 19.0690326	total: 1.25s	remaining: 2.85s
61:	learn: 18.8243788	total: 1.27s	remaining: 2.83s
62:	learn: 18.6625426	total: 1.29s	remaining: 2.8s
63:	learn: 18.5435992	total: 1.31s	remaining: 2.78s
64:	learn: 18.3580575	total: 1.32s	remaining: 2.75s
65:	learn: 18.2180113	total: 1.34s	remaining: 2.73s
66:	learn: 18.0592330	total: 1.36s	remaining: 2.71s
67:	learn: 17.8657351	total: 1.39s	remaining: 2.69s
68:	learn: 17.7056637	total: 1.41s	remaining: 2.67s
69:	learn: 17.5530012	total: 1.43s	remaining: 2.66s
70:	learn: 17.3253539	total: 1.46s	remaining: 2.65s
71:	learn: 17.1678051	total: 1.48s	remaining: 2.63s
72:	learn: 17.0772983	total: 1.5s	remaining: 2.61s
73:	learn: 16.9029188	total: 1.52s	remaining: 2.59s
74:	learn: 16.7184145	total: 1.54s	remaining: 2.57s
75:	learn: 16.6277772	total: 1.56s	remaining: 2.55s
76:	learn: 16.4736973	total: 1.58s	remaining: 2.53s
77:	learn: 16.3110197	total: 1.6s	remaining: 2.5s
78:	learn: 16.2013306	total: 1.62s	remaining: 2.48s
79:	learn: 16.0773253	total: 1.66s	remaining: 2.49s
80:	learn: 15.9767004	total: 1.69s	remaining: 2.48s
81:	learn: 15.8505072	total: 1.71s	remaining: 2.46s
82:	learn: 15.7325434	total: 1.73s	remaining: 2.44s
83:	learn: 15.6079941	total: 1.75s	remaining: 2.41s
84:	learn: 15.4640876	total: 1.77s	remaining: 2.39s
85:	learn: 15.3186379	total: 1.79s	remaining: 2.37s
86:	learn: 15.2243889	total: 1.81s	remaining: 2.35s
87:	learn: 15.1521861	total: 1.83s	remaining: 2.33s
88:	learn: 15.0102313	total: 1.86s	remaining: 2.31s
89:	learn: 14.9033387	total: 1.88s	remaining: 2.3s
90:	learn: 14.7499627	total: 1.91s	remaining: 2.29s
91:	learn: 14.5773387	total: 1.93s	remaining: 2.27s
92:	learn: 14.5036877	total: 1.95s	remaining: 2.25s
93:	learn: 14.3848877	total: 1.98s	remaining: 2.23s
94:	learn: 14.3146248	total: 2s	remaining: 2.21s
95:	learn: 14.2028225	total: 2.02s	remaining: 2.19s
96:	learn: 14.1210694	total: 2.04s	remaining: 2.17s
97:	learn: 13.9922309	total: 2.06s	remaining: 2.15s
98:	learn: 13.9278869	total: 2.09s	remaining: 2.13s
99:	learn: 13.8722336	total: 2.11s	remaining: 2.11s
100:	learn: 13.8027312	total: 2.13s	remaining: 2.09s
101:	learn: 13.6955150	total: 2.15s	remaining: 2.07s
102:	learn: 13.6249600	total: 2.17s	remaining: 2.04s
103:	learn: 13.5387957	total: 2.19s	remaining: 2.02s
104:	learn: 13.4952931	total: 2.21s	remaining: 2s
105:	learn: 13.3809253	total: 2.23s	remaining: 1.98s
106:	learn: 13.2936050	total: 2.25s	remaining: 1.96s
107:	learn: 13.2190146	total: 2.28s	remaining: 1.94s
108:	learn: 13.1176305	total: 2.31s	remaining: 1.93s
109:	learn: 12.9918546	total: 2.33s	remaining: 1.91s
110:	learn: 12.9217870	total: 2.35s	remaining: 1.89s
111:	learn: 12.8560371	total: 2.38s	remaining: 1.87s
112:	learn: 12.7830178	total: 2.4s	remaining: 1.85s
113:	learn: 12.7089425	total: 2.42s	remaining: 1.83s
114:	learn: 12.6183965	total: 2.44s	remaining: 1.81s
115:	learn: 12.5248959	total: 2.47s	remaining: 1.79s
116:	learn: 12.4473869	total: 2.49s	remaining: 1.76s
117:	learn: 12.3691451	total: 2.52s	remaining: 1.75s
118:	learn: 12.2780346	total: 2.54s	remaining: 1.73s
119:	learn: 12.1932999	total: 2.56s	remaining: 1.71s
120:	learn: 12.1292305	total: 2.58s	remaining: 1.68s
121:	learn: 12.0738894	total: 2.6s	remaining: 1.66s
122:	learn: 12.0131256	total: 2.62s	remaining: 1.64s
123:	learn: 11.9163924	total: 2.64s	remaining: 1.62s
124:	learn: 11.8342851	total: 2.66s	remaining: 1.6s
125:	learn: 11.7574444	total: 2.68s	remaining: 1.57s
126:	learn: 11.6909809	total: 2.7s	remaining: 1.55s
127:	learn: 11.6349840	total: 2.73s	remaining: 1.54s
128:	learn: 11.5534164	total: 2.76s	remaining: 1.52s
129:	learn: 11.4769774	total: 2.78s	remaining: 1.5s
130:	learn: 11.4293194	total: 2.8s	remaining: 1.48s
131:	learn: 11.3392710	total: 2.82s	remaining: 1.45s
132:	learn: 11.3020809	total: 2.85s	remaining: 1.43s
133:	learn: 11.2458141	total: 2.87s	remaining: 1.41s
134:	learn: 11.1780043	total: 2.89s	remaining: 1.39s
135:	learn: 11.1094892	total: 2.91s	remaining: 1.37s
136:	learn: 11.0482317	total: 2.93s	remaining: 1.35s
137:	learn: 10.9928609	total: 2.96s	remaining: 1.33s
138:	learn: 10.8782641	total: 2.98s	remaining: 1.31s
139:	learn: 10.8068918	total: 3s	remaining: 1.28s
140:	learn: 10.7281707	total: 3.02s	remaining: 1.26s
141:	learn: 10.6630047	total: 3.04s	remaining: 1.24s
142:	learn: 10.5820619	total: 3.06s	remaining: 1.22s
143:	learn: 10.5275719	total: 3.08s	remaining: 1.2s
144:	learn: 10.4536775	total: 3.09s	remaining: 1.17s
145:	learn: 10.3667297	total: 3.11s	remaining: 1.15s
146:	learn: 10.3113645	total: 3.14s	remaining: 1.13s
147:	learn: 10.2506720	total: 3.16s	remaining: 1.11s
148:	learn: 10.1815199	total: 3.19s	remaining: 1.09s
149:	learn: 10.1210630	total: 3.21s	remaining: 1.07s
150:	learn: 10.0607434	total: 3.23s	remaining: 1.05s
151:	learn: 9.9682935	total: 3.25s	remaining: 1.03s
152:	learn: 9.9258231	total: 3.28s	remaining: 1.01s
153:	learn: 9.8508685	total: 3.3s	remaining: 985ms
154:	learn: 9.7974763	total: 3.32s	remaining: 963ms
155:	learn: 9.7046997	total: 3.34s	remaining: 942ms
156:	learn: 9.6517521	total: 3.37s	remaining: 923ms
157:	learn: 9.5843511	total: 3.39s	remaining: 901ms
158:	learn: 9.5317124	total: 3.41s	remaining: 879ms
159:	learn: 9.4685152	total: 3.43s	remaining: 857ms
160:	learn: 9.4073484	total: 3.45s	remaining: 836ms
161:	learn: 9.3415358	total: 3.47s	remaining: 815ms
162:	learn: 9.2764418	total: 3.49s	remaining: 793ms
163:	learn: 9.2262344	total: 3.51s	remaining: 771ms
164:	learn: 9.1727385	total: 3.53s	remaining: 750ms
165:	learn: 9.0916817	total: 3.56s	remaining: 728ms
166:	learn: 9.0352255	total: 3.59s	remaining: 709ms
167:	learn: 8.9925762	total: 3.61s	remaining: 688ms
168:	learn: 8.9189665	total: 3.63s	remaining: 667ms
169:	learn: 8.8561510	total: 3.66s	remaining: 645ms
170:	learn: 8.8061101	total: 3.68s	remaining: 624ms
171:	learn: 8.7678736	total: 3.7s	remaining: 602ms
172:	learn: 8.7029468	total: 3.72s	remaining: 580ms
173:	learn: 8.6743446	total: 3.74s	remaining: 559ms
174:	learn: 8.6205771	total: 3.76s	remaining: 538ms
175:	learn: 8.5820649	total: 3.79s	remaining: 517ms
176:	learn: 8.5354484	total: 3.81s	remaining: 496ms
177:	learn: 8.5203645	total: 3.83s	remaining: 474ms
178:	learn: 8.4300845	total: 3.85s	remaining: 452ms
179:	learn: 8.3630891	total: 3.87s	remaining: 430ms
180:	learn: 8.3212146	total: 3.89s	remaining: 408ms
181:	learn: 8.2791743	total: 3.91s	remaining: 386ms
182:	learn: 8.2274885	total: 3.92s	remaining: 365ms
183:	learn: 8.1885224	total: 3.94s	remaining: 343ms
184:	learn: 8.1605467	total: 3.97s	remaining: 322ms
185:	learn: 8.1027759	total: 4s	remaining: 301ms
186:	learn: 8.0660143	total: 4.02s	remaining: 280ms
187:	learn: 8.0160573	total: 4.04s	remaining: 258ms
188:	learn: 7.9740032	total: 4.06s	remaining: 237ms
189:	learn: 7.8893524	total: 4.09s	remaining: 215ms
190:	learn: 7.8399096	total: 4.11s	remaining: 193ms
191:	learn: 7.8154601	total: 4.12s	remaining: 172ms
192:	learn: 7.7535369	total: 4.14s	remaining: 150ms
193:	learn: 7.7158570	total: 4.16s	remaining: 129ms
194:	learn: 7.6598850	total: 4.18s	remaining: 107ms
195:	learn: 7.6170092	total: 4.21s	remaining: 85.9ms
196:	learn: 7.5574492	total: 4.23s	remaining: 64.4ms
197:	learn: 7.5095826	total: 4.25s	remaining: 42.9ms
198:	learn: 7.4636116	total: 4.27s	remaining: 21.4ms
199:	learn: 7.4101012	total: 4.29s	remaining: 0us
0:	learn: 27.5467896	total: 18.4ms	remaining: 3.66s
1:	learn: 27.0680701	total: 39.5ms	remaining: 3.91s
2:	learn: 26.5343560	total: 60.9ms	remaining: 4s
3:	learn: 26.1627388	total: 90.6ms	remaining: 4.44s
4:	learn: 25.6788161	total: 114ms	remaining: 4.44s
5:	learn: 25.1796993	total: 136ms	remaining: 4.41s
6:	learn: 24.7618861	total: 159ms	remaining: 4.38s
7:	learn: 24.4052648	total: 182ms	remaining: 4.36s
8:	learn: 24.0145743	total: 201ms	remaining: 4.27s
9:	learn: 23.6326509	total: 222ms	remaining: 4.21s
10:	learn: 23.1980803	total: 240ms	remaining: 4.13s
11:	learn: 22.8128450	total: 261ms	remaining: 4.1s
12:	learn: 22.4543181	total: 283ms	remaining: 4.06s
13:	learn: 22.0627490	total: 308ms	remaining: 4.1s
14:	learn: 21.7356381	total: 330ms	remaining: 4.07s
15:	learn: 21.3576528	total: 349ms	remaining: 4.01s
16:	learn: 20.9953639	total: 369ms	remaining: 3.97s
17:	learn: 20.7418953	total: 388ms	remaining: 3.92s
18:	learn: 20.4337246	total: 408ms	remaining: 3.88s
19:	learn: 20.1184543	total: 427ms	remaining: 3.84s
20:	learn: 19.7611211	total: 445ms	remaining: 3.8s
21:	learn: 19.4769044	total: 463ms	remaining: 3.75s
22:	learn: 19.2318989	total: 484ms	remaining: 3.73s
23:	learn: 19.0476159	total: 505ms	remaining: 3.7s
24:	learn: 18.8122256	total: 534ms	remaining: 3.74s
25:	learn: 18.5633342	total: 557ms	remaining: 3.73s
26:	learn: 18.3169243	total: 560ms	remaining: 3.59s
27:	learn: 18.0627337	total: 582ms	remaining: 3.58s
28:	learn: 17.8964068	total: 604ms	remaining: 3.56s
29:	learn: 17.6413721	total: 626ms	remaining: 3.55s
30:	learn: 17.4074030	total: 645ms	remaining: 3.52s
31:	learn: 17.1741331	total: 663ms	remaining: 3.48s
32:	learn: 16.9719203	total: 683ms	remaining: 3.46s
33:	learn: 16.7768268	total: 704ms	remaining: 3.44s
34:	learn: 16.5620878	total: 730ms	remaining: 3.44s
35:	learn: 16.3185355	total: 753ms	remaining: 3.43s
36:	learn: 16.1033868	total: 772ms	remaining: 3.4s
37:	learn: 15.9374702	total: 790ms	remaining: 3.37s
38:	learn: 15.7558907	total: 809ms	remaining: 3.34s
39:	learn: 15.6093227	total: 827ms	remaining: 3.31s
40:	learn: 15.3807433	total: 845ms	remaining: 3.28s
41:	learn: 15.2247737	total: 864ms	remaining: 3.25s
42:	learn: 14.9806114	total: 883ms	remaining: 3.22s
43:	learn: 14.8223122	total: 903ms	remaining: 3.2s
44:	learn: 14.6807973	total: 924ms	remaining: 3.18s
45:	learn: 14.5522845	total: 946ms	remaining: 3.17s
46:	learn: 14.4107984	total: 977ms	remaining: 3.18s
47:	learn: 14.2989274	total: 999ms	remaining: 3.16s
48:	learn: 14.1243557	total: 1.02s	remaining: 3.15s
49:	learn: 13.9822596	total: 1.04s	remaining: 3.12s
50:	learn: 13.8563717	total: 1.06s	remaining: 3.1s
51:	learn: 13.7197225	total: 1.08s	remaining: 3.09s
52:	learn: 13.5869165	total: 1.1s	remaining: 3.06s
53:	learn: 13.4282146	total: 1.12s	remaining: 3.03s
54:	learn: 13.3080783	total: 1.16s	remaining: 3.04s
55:	learn: 13.1757199	total: 1.19s	remaining: 3.05s
56:	learn: 13.0890522	total: 1.21s	remaining: 3.03s
57:	learn: 12.9693334	total: 1.23s	remaining: 3.01s
58:	learn: 12.8656736	total: 1.25s	remaining: 2.99s
59:	learn: 12.7624851	total: 1.27s	remaining: 2.97s
60:	learn: 12.6429258	total: 1.29s	remaining: 2.95s
61:	learn: 12.5474728	total: 1.31s	remaining: 2.93s
62:	learn: 12.4375178	total: 1.34s	remaining: 2.91s
63:	learn: 12.3337549	total: 1.36s	remaining: 2.89s
64:	learn: 12.2208696	total: 1.39s	remaining: 2.88s
65:	learn: 12.1041855	total: 1.41s	remaining: 2.87s
66:	learn: 11.9934935	total: 1.44s	remaining: 2.85s
67:	learn: 11.8755104	total: 1.46s	remaining: 2.83s
68:	learn: 11.7732877	total: 1.48s	remaining: 2.81s
69:	learn: 11.6837172	total: 1.5s	remaining: 2.79s
70:	learn: 11.5919175	total: 1.52s	remaining: 2.77s
71:	learn: 11.5071758	total: 1.54s	remaining: 2.75s
72:	learn: 11.4473042	total: 1.57s	remaining: 2.73s
73:	learn: 11.3506919	total: 1.59s	remaining: 2.71s
74:	learn: 11.2483249	total: 1.62s	remaining: 2.7s
75:	learn: 11.1913605	total: 1.64s	remaining: 2.68s
76:	learn: 11.1043267	total: 1.67s	remaining: 2.66s
77:	learn: 11.0063168	total: 1.69s	remaining: 2.64s
78:	learn: 10.9254796	total: 1.71s	remaining: 2.62s
79:	learn: 10.8263071	total: 1.73s	remaining: 2.59s
80:	learn: 10.7531059	total: 1.75s	remaining: 2.57s
81:	learn: 10.6896768	total: 1.77s	remaining: 2.54s
82:	learn: 10.6034681	total: 1.79s	remaining: 2.52s
83:	learn: 10.5159133	total: 1.81s	remaining: 2.5s
84:	learn: 10.4434563	total: 1.84s	remaining: 2.49s
85:	learn: 10.3709079	total: 1.87s	remaining: 2.47s
86:	learn: 10.3061829	total: 1.89s	remaining: 2.45s
87:	learn: 10.2608132	total: 1.91s	remaining: 2.43s
88:	learn: 10.1736338	total: 1.93s	remaining: 2.41s
89:	learn: 10.0885012	total: 1.95s	remaining: 2.39s
90:	learn: 10.0337309	total: 1.97s	remaining: 2.36s
91:	learn: 9.9758392	total: 1.99s	remaining: 2.34s
92:	learn: 9.8870117	total: 2.02s	remaining: 2.32s
93:	learn: 9.8077732	total: 2.04s	remaining: 2.3s
94:	learn: 9.7135409	total: 2.07s	remaining: 2.28s
95:	learn: 9.6341854	total: 2.09s	remaining: 2.26s
96:	learn: 9.5790423	total: 2.11s	remaining: 2.24s
97:	learn: 9.5158535	total: 2.13s	remaining: 2.22s
98:	learn: 9.4707296	total: 2.15s	remaining: 2.19s
99:	learn: 9.3997718	total: 2.17s	remaining: 2.17s
100:	learn: 9.3300948	total: 2.19s	remaining: 2.15s
101:	learn: 9.2678794	total: 2.22s	remaining: 2.13s
102:	learn: 9.2135445	total: 2.24s	remaining: 2.11s
103:	learn: 9.1774382	total: 2.27s	remaining: 2.1s
104:	learn: 9.1411747	total: 2.3s	remaining: 2.08s
105:	learn: 9.0714633	total: 2.32s	remaining: 2.06s
106:	learn: 9.0283498	total: 2.34s	remaining: 2.04s
107:	learn: 8.9822832	total: 2.37s	remaining: 2.01s
108:	learn: 8.9269786	total: 2.39s	remaining: 1.99s
109:	learn: 8.8844134	total: 2.41s	remaining: 1.97s
110:	learn: 8.8411557	total: 2.42s	remaining: 1.94s
111:	learn: 8.7949992	total: 2.44s	remaining: 1.92s
112:	learn: 8.7541601	total: 2.47s	remaining: 1.9s
113:	learn: 8.6903414	total: 2.49s	remaining: 1.88s
114:	learn: 8.6334340	total: 2.52s	remaining: 1.86s
115:	learn: 8.5733848	total: 2.54s	remaining: 1.84s
116:	learn: 8.5233612	total: 2.56s	remaining: 1.81s
117:	learn: 8.4557467	total: 2.58s	remaining: 1.79s
118:	learn: 8.4074673	total: 2.6s	remaining: 1.77s
119:	learn: 8.3462613	total: 2.62s	remaining: 1.75s
120:	learn: 8.3116172	total: 2.64s	remaining: 1.72s
121:	learn: 8.2772734	total: 2.66s	remaining: 1.7s
122:	learn: 8.2399615	total: 2.68s	remaining: 1.68s
123:	learn: 8.1899492	total: 2.71s	remaining: 1.66s
124:	learn: 8.1399508	total: 2.73s	remaining: 1.64s
125:	learn: 8.0974791	total: 2.76s	remaining: 1.62s
126:	learn: 8.0439068	total: 2.78s	remaining: 1.6s
127:	learn: 8.0011231	total: 2.8s	remaining: 1.58s
128:	learn: 7.9648000	total: 2.83s	remaining: 1.55s
129:	learn: 7.9205463	total: 2.85s	remaining: 1.53s
130:	learn: 7.8861918	total: 2.87s	remaining: 1.51s
131:	learn: 7.8426734	total: 2.89s	remaining: 1.49s
132:	learn: 7.7808473	total: 2.91s	remaining: 1.47s
133:	learn: 7.7588830	total: 2.94s	remaining: 1.45s
134:	learn: 7.7208354	total: 2.96s	remaining: 1.43s
135:	learn: 7.6832009	total: 2.98s	remaining: 1.4s
136:	learn: 7.6489816	total: 3s	remaining: 1.38s
137:	learn: 7.6052064	total: 3.02s	remaining: 1.36s
138:	learn: 7.5767556	total: 3.04s	remaining: 1.33s
139:	learn: 7.5423647	total: 3.06s	remaining: 1.31s
140:	learn: 7.4910023	total: 3.08s	remaining: 1.29s
141:	learn: 7.4482152	total: 3.1s	remaining: 1.27s
142:	learn: 7.4290249	total: 3.13s	remaining: 1.25s
143:	learn: 7.3787224	total: 3.15s	remaining: 1.22s
144:	learn: 7.3310921	total: 3.18s	remaining: 1.21s
145:	learn: 7.2685836	total: 3.2s	remaining: 1.18s
146:	learn: 7.2367369	total: 3.23s	remaining: 1.16s
147:	learn: 7.2039225	total: 3.25s	remaining: 1.14s
148:	learn: 7.1552420	total: 3.27s	remaining: 1.12s
149:	learn: 7.1200744	total: 3.29s	remaining: 1.1s
150:	learn: 7.0709170	total: 3.31s	remaining: 1.07s
151:	learn: 7.0316433	total: 3.33s	remaining: 1.05s
152:	learn: 6.9976068	total: 3.36s	remaining: 1.03s
153:	learn: 6.9549446	total: 3.38s	remaining: 1.01s
154:	learn: 6.9117671	total: 3.4s	remaining: 989ms
155:	learn: 6.8678412	total: 3.42s	remaining: 966ms
156:	learn: 6.8352541	total: 3.44s	remaining: 944ms
157:	learn: 6.8079569	total: 3.46s	remaining: 921ms
158:	learn: 6.7753416	total: 3.49s	remaining: 899ms
159:	learn: 6.7536850	total: 3.5s	remaining: 876ms
160:	learn: 6.7205643	total: 3.53s	remaining: 854ms
161:	learn: 6.6790291	total: 3.55s	remaining: 832ms
162:	learn: 6.6489125	total: 3.57s	remaining: 810ms
163:	learn: 6.6243412	total: 3.6s	remaining: 790ms
164:	learn: 6.5849298	total: 3.62s	remaining: 769ms
165:	learn: 6.5695704	total: 3.65s	remaining: 747ms
166:	learn: 6.5349747	total: 3.67s	remaining: 725ms
167:	learn: 6.4871810	total: 3.69s	remaining: 702ms
168:	learn: 6.4496084	total: 3.71s	remaining: 680ms
169:	learn: 6.4137654	total: 3.73s	remaining: 658ms
170:	learn: 6.3728109	total: 3.75s	remaining: 635ms
171:	learn: 6.3306392	total: 3.77s	remaining: 613ms
172:	learn: 6.2990104	total: 3.79s	remaining: 592ms
173:	learn: 6.2837204	total: 3.81s	remaining: 570ms
174:	learn: 6.2433465	total: 3.83s	remaining: 548ms
175:	learn: 6.2145328	total: 3.85s	remaining: 525ms
176:	learn: 6.1721908	total: 3.87s	remaining: 503ms
177:	learn: 6.1380169	total: 3.89s	remaining: 481ms
178:	learn: 6.1017656	total: 3.91s	remaining: 458ms
179:	learn: 6.0626665	total: 3.92s	remaining: 436ms
180:	learn: 6.0461952	total: 3.94s	remaining: 414ms
181:	learn: 6.0172697	total: 3.96s	remaining: 392ms
182:	learn: 5.9856992	total: 3.98s	remaining: 370ms
183:	learn: 5.9478487	total: 4.01s	remaining: 348ms
184:	learn: 5.9081783	total: 4.03s	remaining: 327ms
185:	learn: 5.8851916	total: 4.05s	remaining: 305ms
186:	learn: 5.8517386	total: 4.08s	remaining: 283ms
187:	learn: 5.8285753	total: 4.1s	remaining: 262ms
188:	learn: 5.7940926	total: 4.12s	remaining: 240ms
189:	learn: 5.7659749	total: 4.14s	remaining: 218ms
190:	learn: 5.7478550	total: 4.16s	remaining: 196ms
191:	learn: 5.7215872	total: 4.18s	remaining: 174ms
192:	learn: 5.6855264	total: 4.2s	remaining: 152ms
193:	learn: 5.6500976	total: 4.22s	remaining: 130ms
194:	learn: 5.6095973	total: 4.25s	remaining: 109ms
195:	learn: 5.5759839	total: 4.27s	remaining: 87.1ms
196:	learn: 5.5501497	total: 4.29s	remaining: 65.3ms
197:	learn: 5.5125773	total: 4.31s	remaining: 43.5ms
198:	learn: 5.4735750	total: 4.33s	remaining: 21.8ms
199:	learn: 5.4583140	total: 4.35s	remaining: 0us
0:	learn: 42.9926207	total: 19.1ms	remaining: 3.79s
1:	learn: 41.9318955	total: 41.6ms	remaining: 4.12s
2:	learn: 41.0022152	total: 70.7ms	remaining: 4.64s
3:	learn: 40.1316455	total: 93ms	remaining: 4.56s
4:	learn: 39.3025337	total: 115ms	remaining: 4.5s
5:	learn: 38.2742529	total: 137ms	remaining: 4.42s
6:	learn: 37.3862274	total: 158ms	remaining: 4.36s
7:	learn: 36.4195721	total: 179ms	remaining: 4.3s
8:	learn: 35.7209650	total: 200ms	remaining: 4.24s
9:	learn: 34.8505622	total: 218ms	remaining: 4.15s
10:	learn: 34.0461426	total: 238ms	remaining: 4.09s
11:	learn: 33.3894212	total: 265ms	remaining: 4.15s
12:	learn: 32.5545835	total: 288ms	remaining: 4.14s
13:	learn: 31.7211463	total: 308ms	remaining: 4.09s
14:	learn: 31.0440401	total: 327ms	remaining: 4.03s
15:	learn: 30.3845013	total: 345ms	remaining: 3.97s
16:	learn: 29.8020882	total: 364ms	remaining: 3.92s
17:	learn: 29.2132262	total: 383ms	remaining: 3.87s
18:	learn: 28.5262512	total: 401ms	remaining: 3.82s
19:	learn: 27.8276439	total: 422ms	remaining: 3.79s
20:	learn: 27.2324195	total: 440ms	remaining: 3.75s
21:	learn: 26.7543625	total: 460ms	remaining: 3.72s
22:	learn: 26.3175298	total: 481ms	remaining: 3.7s
23:	learn: 25.8967125	total: 500ms	remaining: 3.67s
24:	learn: 25.3222501	total: 528ms	remaining: 3.7s
25:	learn: 24.8107258	total: 551ms	remaining: 3.69s
26:	learn: 24.3897671	total: 554ms	remaining: 3.55s
27:	learn: 23.9914208	total: 576ms	remaining: 3.54s
28:	learn: 23.5529513	total: 597ms	remaining: 3.52s
29:	learn: 23.1877842	total: 628ms	remaining: 3.56s
30:	learn: 22.8394086	total: 649ms	remaining: 3.54s
31:	learn: 22.4793141	total: 671ms	remaining: 3.52s
32:	learn: 22.1926518	total: 693ms	remaining: 3.5s
33:	learn: 21.8606860	total: 717ms	remaining: 3.5s
34:	learn: 21.4947094	total: 746ms	remaining: 3.52s
35:	learn: 21.1482380	total: 770ms	remaining: 3.51s
36:	learn: 20.8239544	total: 790ms	remaining: 3.48s
37:	learn: 20.5150933	total: 811ms	remaining: 3.46s
38:	learn: 20.1599880	total: 832ms	remaining: 3.44s
39:	learn: 19.8759507	total: 853ms	remaining: 3.41s
40:	learn: 19.5853513	total: 865ms	remaining: 3.35s
41:	learn: 19.4990617	total: 867ms	remaining: 3.26s
42:	learn: 19.2904285	total: 888ms	remaining: 3.24s
43:	learn: 19.0060840	total: 919ms	remaining: 3.26s
44:	learn: 18.7979613	total: 955ms	remaining: 3.29s
45:	learn: 18.5730707	total: 982ms	remaining: 3.29s
46:	learn: 18.3768212	total: 1.01s	remaining: 3.28s
47:	learn: 18.1147100	total: 1.03s	remaining: 3.27s
48:	learn: 17.8159562	total: 1.05s	remaining: 3.25s
49:	learn: 17.5839856	total: 1.08s	remaining: 3.23s
50:	learn: 17.4120110	total: 1.1s	remaining: 3.21s
51:	learn: 17.2382256	total: 1.12s	remaining: 3.19s
52:	learn: 17.0121500	total: 1.15s	remaining: 3.18s
53:	learn: 16.7907092	total: 1.19s	remaining: 3.21s
54:	learn: 16.6218039	total: 1.21s	remaining: 3.19s
55:	learn: 16.4327809	total: 1.23s	remaining: 3.16s
56:	learn: 16.2206056	total: 1.25s	remaining: 3.14s
57:	learn: 16.0996886	total: 1.27s	remaining: 3.12s
58:	learn: 15.9136733	total: 1.29s	remaining: 3.09s
59:	learn: 15.7543521	total: 1.31s	remaining: 3.07s
60:	learn: 15.5825313	total: 1.34s	remaining: 3.05s
61:	learn: 15.4010722	total: 1.36s	remaining: 3.03s
62:	learn: 15.2435421	total: 1.39s	remaining: 3.02s
63:	learn: 15.1051044	total: 1.42s	remaining: 3.01s
64:	learn: 14.9539750	total: 1.45s	remaining: 3.01s
65:	learn: 14.8213115	total: 1.47s	remaining: 2.99s
66:	learn: 14.7224184	total: 1.5s	remaining: 2.97s
67:	learn: 14.5238762	total: 1.52s	remaining: 2.95s
68:	learn: 14.3254679	total: 1.54s	remaining: 2.92s
69:	learn: 14.2246196	total: 1.56s	remaining: 2.9s
70:	learn: 14.0666647	total: 1.59s	remaining: 2.89s
71:	learn: 13.9605706	total: 1.62s	remaining: 2.87s
72:	learn: 13.8507597	total: 1.64s	remaining: 2.85s
73:	learn: 13.7339190	total: 1.66s	remaining: 2.83s
74:	learn: 13.6863761	total: 1.69s	remaining: 2.82s
75:	learn: 13.5658578	total: 1.71s	remaining: 2.79s
76:	learn: 13.4554508	total: 1.74s	remaining: 2.77s
77:	learn: 13.3644073	total: 1.76s	remaining: 2.75s
78:	learn: 13.2572594	total: 1.78s	remaining: 2.73s
79:	learn: 13.1701563	total: 1.81s	remaining: 2.72s
80:	learn: 13.0640002	total: 1.84s	remaining: 2.7s
81:	learn: 12.9526375	total: 1.86s	remaining: 2.68s
82:	learn: 12.8448135	total: 1.88s	remaining: 2.66s
83:	learn: 12.7231228	total: 1.91s	remaining: 2.63s
84:	learn: 12.5890300	total: 1.93s	remaining: 2.61s
85:	learn: 12.4491533	total: 1.96s	remaining: 2.6s
86:	learn: 12.3145494	total: 1.98s	remaining: 2.58s
87:	learn: 12.2535348	total: 2.01s	remaining: 2.56s
88:	learn: 12.1984046	total: 2.04s	remaining: 2.54s
89:	learn: 12.1604813	total: 2.06s	remaining: 2.52s
90:	learn: 12.0643817	total: 2.08s	remaining: 2.49s
91:	learn: 11.9715230	total: 2.1s	remaining: 2.47s
92:	learn: 11.8696994	total: 2.12s	remaining: 2.44s
93:	learn: 11.7765073	total: 2.15s	remaining: 2.42s
94:	learn: 11.6783712	total: 2.17s	remaining: 2.4s
95:	learn: 11.6258045	total: 2.2s	remaining: 2.39s
96:	learn: 11.5262897	total: 2.23s	remaining: 2.37s
97:	learn: 11.4355051	total: 2.25s	remaining: 2.35s
98:	learn: 11.3469700	total: 2.28s	remaining: 2.33s
99:	learn: 11.2812844	total: 2.3s	remaining: 2.3s
100:	learn: 11.1926035	total: 2.33s	remaining: 2.28s
101:	learn: 11.1280192	total: 2.35s	remaining: 2.26s
102:	learn: 11.0508229	total: 2.37s	remaining: 2.23s
103:	learn: 10.9804462	total: 2.39s	remaining: 2.21s
104:	learn: 10.9152956	total: 2.42s	remaining: 2.19s
105:	learn: 10.8365067	total: 2.44s	remaining: 2.16s
106:	learn: 10.7817140	total: 2.48s	remaining: 2.15s
107:	learn: 10.7059777	total: 2.5s	remaining: 2.13s
108:	learn: 10.6260340	total: 2.52s	remaining: 2.1s
109:	learn: 10.5423564	total: 2.54s	remaining: 2.07s
110:	learn: 10.4989232	total: 2.55s	remaining: 2.05s
111:	learn: 10.4467606	total: 2.58s	remaining: 2.02s
112:	learn: 10.3685116	total: 2.6s	remaining: 2s
113:	learn: 10.2865937	total: 2.62s	remaining: 1.98s
114:	learn: 10.2296268	total: 2.64s	remaining: 1.95s
115:	learn: 10.1906427	total: 2.67s	remaining: 1.93s
116:	learn: 10.1437775	total: 2.69s	remaining: 1.91s
117:	learn: 10.1028189	total: 2.72s	remaining: 1.89s
118:	learn: 10.0453078	total: 2.74s	remaining: 1.86s
119:	learn: 9.9973288	total: 2.76s	remaining: 1.84s
120:	learn: 9.9355459	total: 2.79s	remaining: 1.82s
121:	learn: 9.8840000	total: 2.81s	remaining: 1.79s
122:	learn: 9.8637795	total: 2.83s	remaining: 1.77s
123:	learn: 9.7998368	total: 2.85s	remaining: 1.74s
124:	learn: 9.7120051	total: 2.87s	remaining: 1.72s
125:	learn: 9.6436634	total: 2.9s	remaining: 1.7s
126:	learn: 9.5903060	total: 2.92s	remaining: 1.68s
127:	learn: 9.5239998	total: 2.94s	remaining: 1.65s
128:	learn: 9.4706107	total: 2.96s	remaining: 1.63s
129:	learn: 9.4243350	total: 2.98s	remaining: 1.6s
130:	learn: 9.3771981	total: 3s	remaining: 1.58s
131:	learn: 9.3319455	total: 3.02s	remaining: 1.55s
132:	learn: 9.2589088	total: 3.04s	remaining: 1.53s
133:	learn: 9.2312438	total: 3.06s	remaining: 1.51s
134:	learn: 9.1832306	total: 3.09s	remaining: 1.49s
135:	learn: 9.1377444	total: 3.12s	remaining: 1.47s
136:	learn: 9.0988463	total: 3.14s	remaining: 1.44s
137:	learn: 9.0534782	total: 3.17s	remaining: 1.42s
138:	learn: 8.9848070	total: 3.19s	remaining: 1.4s
139:	learn: 8.9497061	total: 3.21s	remaining: 1.38s
140:	learn: 8.9258905	total: 3.23s	remaining: 1.35s
141:	learn: 8.8715435	total: 3.25s	remaining: 1.33s
142:	learn: 8.8316763	total: 3.27s	remaining: 1.3s
143:	learn: 8.7590092	total: 3.29s	remaining: 1.28s
144:	learn: 8.7249757	total: 3.32s	remaining: 1.26s
145:	learn: 8.6819757	total: 3.35s	remaining: 1.24s
146:	learn: 8.6304476	total: 3.36s	remaining: 1.21s
147:	learn: 8.5640394	total: 3.38s	remaining: 1.19s
148:	learn: 8.5277172	total: 3.4s	remaining: 1.17s
149:	learn: 8.4596322	total: 3.42s	remaining: 1.14s
150:	learn: 8.3992348	total: 3.44s	remaining: 1.12s
151:	learn: 8.3496991	total: 3.46s	remaining: 1.09s
152:	learn: 8.2930953	total: 3.49s	remaining: 1.07s
153:	learn: 8.2562084	total: 3.51s	remaining: 1.05s
154:	learn: 8.2029279	total: 3.53s	remaining: 1.02s
155:	learn: 8.1653055	total: 3.56s	remaining: 1s
156:	learn: 8.1133690	total: 3.58s	remaining: 982ms
157:	learn: 8.0482828	total: 3.61s	remaining: 959ms
158:	learn: 8.0060251	total: 3.63s	remaining: 936ms
159:	learn: 7.9747671	total: 3.65s	remaining: 913ms
160:	learn: 7.9380210	total: 3.67s	remaining: 890ms
161:	learn: 7.8978888	total: 3.69s	remaining: 866ms
162:	learn: 7.8408472	total: 3.72s	remaining: 844ms
163:	learn: 7.8052289	total: 3.75s	remaining: 823ms
164:	learn: 7.7532049	total: 3.77s	remaining: 800ms
165:	learn: 7.7163635	total: 3.79s	remaining: 777ms
166:	learn: 7.6803890	total: 3.81s	remaining: 753ms
167:	learn: 7.6348034	total: 3.83s	remaining: 730ms
168:	learn: 7.5922831	total: 3.85s	remaining: 707ms
169:	learn: 7.5294905	total: 3.87s	remaining: 683ms
170:	learn: 7.5034404	total: 3.89s	remaining: 660ms
171:	learn: 7.4585315	total: 3.91s	remaining: 637ms
172:	learn: 7.3869248	total: 3.94s	remaining: 615ms
173:	learn: 7.3434759	total: 3.97s	remaining: 593ms
174:	learn: 7.2986802	total: 3.99s	remaining: 570ms
175:	learn: 7.2541427	total: 4.02s	remaining: 548ms
176:	learn: 7.2284611	total: 4.04s	remaining: 525ms
177:	learn: 7.1828521	total: 4.06s	remaining: 502ms
178:	learn: 7.1373050	total: 4.08s	remaining: 479ms
179:	learn: 7.1126552	total: 4.11s	remaining: 456ms
180:	learn: 7.0638576	total: 4.13s	remaining: 434ms
181:	learn: 7.0192711	total: 4.16s	remaining: 411ms
182:	learn: 6.9816129	total: 4.18s	remaining: 389ms
183:	learn: 6.9541954	total: 4.2s	remaining: 366ms
184:	learn: 6.9111408	total: 4.22s	remaining: 343ms
185:	learn: 6.8770181	total: 4.24s	remaining: 319ms
186:	learn: 6.8525387	total: 4.26s	remaining: 296ms
187:	learn: 6.8370868	total: 4.28s	remaining: 273ms
188:	learn: 6.7890843	total: 4.3s	remaining: 250ms
189:	learn: 6.7547976	total: 4.32s	remaining: 228ms
190:	learn: 6.7161335	total: 4.34s	remaining: 205ms
191:	learn: 6.6873604	total: 4.36s	remaining: 182ms
192:	learn: 6.6428130	total: 4.39s	remaining: 159ms
193:	learn: 6.5963180	total: 4.42s	remaining: 137ms
194:	learn: 6.5601136	total: 4.44s	remaining: 114ms
195:	learn: 6.5308359	total: 4.46s	remaining: 91ms
196:	learn: 6.5141670	total: 4.48s	remaining: 68.2ms
197:	learn: 6.4694863	total: 4.5s	remaining: 45.4ms
198:	learn: 6.4363955	total: 4.52s	remaining: 22.7ms
199:	learn: 6.3863688	total: 4.54s	remaining: 0us
0:	learn: 46.3266214	total: 19.1ms	remaining: 3.81s
1:	learn: 45.1514312	total: 37.6ms	remaining: 3.73s
2:	learn: 44.1597260	total: 56.4ms	remaining: 3.7s
3:	learn: 43.3312581	total: 75.1ms	remaining: 3.68s
4:	learn: 42.2544790	total: 94.2ms	remaining: 3.67s
5:	learn: 41.4327745	total: 113ms	remaining: 3.66s
6:	learn: 40.5876528	total: 133ms	remaining: 3.66s
7:	learn: 39.8244581	total: 151ms	remaining: 3.62s
8:	learn: 39.0259762	total: 173ms	remaining: 3.66s
9:	learn: 38.0775608	total: 195ms	remaining: 3.71s
10:	learn: 37.5303598	total: 223ms	remaining: 3.83s
11:	learn: 36.8182638	total: 246ms	remaining: 3.85s
12:	learn: 36.1926770	total: 268ms	remaining: 3.86s
13:	learn: 35.3678676	total: 290ms	remaining: 3.86s
14:	learn: 34.7135576	total: 313ms	remaining: 3.87s
15:	learn: 34.0868578	total: 332ms	remaining: 3.82s
16:	learn: 33.3917608	total: 353ms	remaining: 3.8s
17:	learn: 32.8468089	total: 374ms	remaining: 3.78s
18:	learn: 32.1641109	total: 396ms	remaining: 3.77s
19:	learn: 31.6438269	total: 423ms	remaining: 3.81s
20:	learn: 31.1283566	total: 444ms	remaining: 3.79s
21:	learn: 30.4995785	total: 464ms	remaining: 3.75s
22:	learn: 30.0052433	total: 482ms	remaining: 3.71s
23:	learn: 29.5387468	total: 504ms	remaining: 3.69s
24:	learn: 29.0769319	total: 525ms	remaining: 3.67s
25:	learn: 28.6815017	total: 547ms	remaining: 3.66s
26:	learn: 28.2580471	total: 567ms	remaining: 3.63s
27:	learn: 27.9023835	total: 588ms	remaining: 3.61s
28:	learn: 27.4643921	total: 609ms	remaining: 3.59s
29:	learn: 27.0297350	total: 637ms	remaining: 3.61s
30:	learn: 26.6109927	total: 658ms	remaining: 3.59s
31:	learn: 26.1717234	total: 680ms	remaining: 3.57s
32:	learn: 25.7657009	total: 702ms	remaining: 3.55s
33:	learn: 25.3655630	total: 723ms	remaining: 3.53s
34:	learn: 24.9552495	total: 742ms	remaining: 3.5s
35:	learn: 24.6587249	total: 762ms	remaining: 3.47s
36:	learn: 24.1629997	total: 781ms	remaining: 3.44s
37:	learn: 23.8708337	total: 802ms	remaining: 3.42s
38:	learn: 23.5244511	total: 825ms	remaining: 3.41s
39:	learn: 23.1849323	total: 850ms	remaining: 3.4s
40:	learn: 22.9351049	total: 871ms	remaining: 3.38s
41:	learn: 22.5277714	total: 890ms	remaining: 3.35s
42:	learn: 22.2395030	total: 909ms	remaining: 3.32s
43:	learn: 22.0299814	total: 928ms	remaining: 3.29s
44:	learn: 21.6885189	total: 948ms	remaining: 3.26s
45:	learn: 21.3288224	total: 967ms	remaining: 3.24s
46:	learn: 21.0899946	total: 986ms	remaining: 3.21s
47:	learn: 20.8247347	total: 1.01s	remaining: 3.19s
48:	learn: 20.5036358	total: 1.03s	remaining: 3.17s
49:	learn: 20.1622332	total: 1.06s	remaining: 3.17s
50:	learn: 19.9564962	total: 1.08s	remaining: 3.16s
51:	learn: 19.7533770	total: 1.1s	remaining: 3.13s
52:	learn: 19.5817440	total: 1.12s	remaining: 3.11s
53:	learn: 19.3640916	total: 1.15s	remaining: 3.1s
54:	learn: 19.2561089	total: 1.17s	remaining: 3.07s
55:	learn: 19.0461047	total: 1.18s	remaining: 3.05s
56:	learn: 18.7888958	total: 1.2s	remaining: 3.02s
57:	learn: 18.5675327	total: 1.23s	remaining: 3s
58:	learn: 18.3523517	total: 1.25s	remaining: 2.99s
59:	learn: 18.1831957	total: 1.27s	remaining: 2.98s
60:	learn: 17.9920208	total: 1.29s	remaining: 2.95s
61:	learn: 17.8042217	total: 1.31s	remaining: 2.92s
62:	learn: 17.6855735	total: 1.33s	remaining: 2.89s
63:	learn: 17.4623156	total: 1.35s	remaining: 2.88s
64:	learn: 17.3086540	total: 1.38s	remaining: 2.86s
65:	learn: 17.1005708	total: 1.4s	remaining: 2.83s
66:	learn: 16.9122145	total: 1.42s	remaining: 2.82s
67:	learn: 16.7666446	total: 1.45s	remaining: 2.81s
68:	learn: 16.6234993	total: 1.47s	remaining: 2.79s
69:	learn: 16.4035590	total: 1.49s	remaining: 2.77s
70:	learn: 16.2483077	total: 1.52s	remaining: 2.76s
71:	learn: 16.0606167	total: 1.54s	remaining: 2.74s
72:	learn: 15.9344107	total: 1.56s	remaining: 2.72s
73:	learn: 15.7668192	total: 1.59s	remaining: 2.7s
74:	learn: 15.5833782	total: 1.61s	remaining: 2.68s
75:	learn: 15.4263720	total: 1.63s	remaining: 2.66s
76:	learn: 15.3208364	total: 1.65s	remaining: 2.64s
77:	learn: 15.1982265	total: 1.68s	remaining: 2.63s
78:	learn: 15.0779040	total: 1.7s	remaining: 2.61s
79:	learn: 14.9608105	total: 1.72s	remaining: 2.59s
80:	learn: 14.7888514	total: 1.74s	remaining: 2.56s
81:	learn: 14.6665763	total: 1.76s	remaining: 2.54s
82:	learn: 14.5838729	total: 1.78s	remaining: 2.51s
83:	learn: 14.4740569	total: 1.8s	remaining: 2.49s
84:	learn: 14.3288121	total: 1.82s	remaining: 2.46s
85:	learn: 14.2289255	total: 1.84s	remaining: 2.44s
86:	learn: 14.1016858	total: 1.87s	remaining: 2.43s
87:	learn: 13.9584118	total: 1.9s	remaining: 2.42s
88:	learn: 13.8573066	total: 1.92s	remaining: 2.4s
89:	learn: 13.7468438	total: 1.94s	remaining: 2.38s
90:	learn: 13.6485024	total: 1.97s	remaining: 2.35s
91:	learn: 13.5168517	total: 1.99s	remaining: 2.34s
92:	learn: 13.4303631	total: 2.01s	remaining: 2.31s
93:	learn: 13.3104458	total: 2.03s	remaining: 2.29s
94:	learn: 13.2180209	total: 2.05s	remaining: 2.27s
95:	learn: 13.1130752	total: 2.07s	remaining: 2.25s
96:	learn: 12.9990802	total: 2.1s	remaining: 2.23s
97:	learn: 12.9542182	total: 2.13s	remaining: 2.21s
98:	learn: 12.8588744	total: 2.15s	remaining: 2.19s
99:	learn: 12.7258962	total: 2.17s	remaining: 2.17s
100:	learn: 12.6352268	total: 2.19s	remaining: 2.14s
101:	learn: 12.5619522	total: 2.21s	remaining: 2.12s
102:	learn: 12.4634337	total: 2.23s	remaining: 2.1s
103:	learn: 12.3609898	total: 2.24s	remaining: 2.07s
104:	learn: 12.2125688	total: 2.27s	remaining: 2.05s
105:	learn: 12.1486953	total: 2.29s	remaining: 2.03s
106:	learn: 12.0898441	total: 2.31s	remaining: 2.01s
107:	learn: 12.0010232	total: 2.34s	remaining: 1.99s
108:	learn: 11.9176187	total: 2.36s	remaining: 1.97s
109:	learn: 11.8371178	total: 2.38s	remaining: 1.95s
110:	learn: 11.7788535	total: 2.41s	remaining: 1.93s
111:	learn: 11.6950379	total: 2.43s	remaining: 1.91s
112:	learn: 11.5654368	total: 2.45s	remaining: 1.89s
113:	learn: 11.4875190	total: 2.47s	remaining: 1.86s
114:	learn: 11.3710623	total: 2.5s	remaining: 1.84s
115:	learn: 11.2824160	total: 2.53s	remaining: 1.83s
116:	learn: 11.2154904	total: 2.55s	remaining: 1.81s
117:	learn: 11.1156693	total: 2.57s	remaining: 1.79s
118:	learn: 11.0246386	total: 2.59s	remaining: 1.76s
119:	learn: 10.9408189	total: 2.61s	remaining: 1.74s
120:	learn: 10.8948758	total: 2.63s	remaining: 1.72s
121:	learn: 10.8181533	total: 2.66s	remaining: 1.7s
122:	learn: 10.7773891	total: 2.68s	remaining: 1.68s
123:	learn: 10.7102903	total: 2.7s	remaining: 1.66s
124:	learn: 10.6398196	total: 2.73s	remaining: 1.64s
125:	learn: 10.5724929	total: 2.76s	remaining: 1.62s
126:	learn: 10.5053766	total: 2.78s	remaining: 1.6s
127:	learn: 10.4586496	total: 2.8s	remaining: 1.58s
128:	learn: 10.3564151	total: 2.83s	remaining: 1.55s
129:	learn: 10.2759173	total: 2.85s	remaining: 1.53s
130:	learn: 10.2053847	total: 2.87s	remaining: 1.51s
131:	learn: 10.1569693	total: 2.89s	remaining: 1.49s
132:	learn: 10.0939422	total: 2.91s	remaining: 1.47s
133:	learn: 10.0598247	total: 2.93s	remaining: 1.44s
134:	learn: 10.0024727	total: 2.96s	remaining: 1.43s
135:	learn: 9.9528111	total: 2.98s	remaining: 1.4s
136:	learn: 9.8945114	total: 3s	remaining: 1.38s
137:	learn: 9.8346449	total: 3.02s	remaining: 1.36s
138:	learn: 9.7449422	total: 3.05s	remaining: 1.34s
139:	learn: 9.6851089	total: 3.07s	remaining: 1.31s
140:	learn: 9.6140363	total: 3.08s	remaining: 1.29s
141:	learn: 9.5496776	total: 3.1s	remaining: 1.27s
142:	learn: 9.4851950	total: 3.13s	remaining: 1.25s
143:	learn: 9.4142786	total: 3.16s	remaining: 1.23s
144:	learn: 9.3481846	total: 3.18s	remaining: 1.21s
145:	learn: 9.3028915	total: 3.2s	remaining: 1.19s
146:	learn: 9.2633103	total: 3.23s	remaining: 1.16s
147:	learn: 9.2202725	total: 3.25s	remaining: 1.14s
148:	learn: 9.1901978	total: 3.27s	remaining: 1.12s
149:	learn: 9.1399499	total: 3.3s	remaining: 1.1s
150:	learn: 9.0844800	total: 3.32s	remaining: 1.08s
151:	learn: 9.0268509	total: 3.34s	remaining: 1.05s
152:	learn: 8.9454080	total: 3.36s	remaining: 1.03s
153:	learn: 8.8961891	total: 3.39s	remaining: 1.01s
154:	learn: 8.8461471	total: 3.41s	remaining: 991ms
155:	learn: 8.7827134	total: 3.43s	remaining: 968ms
156:	learn: 8.7126457	total: 3.45s	remaining: 945ms
157:	learn: 8.6457355	total: 3.47s	remaining: 923ms
158:	learn: 8.5973469	total: 3.49s	remaining: 900ms
159:	learn: 8.5238781	total: 3.51s	remaining: 878ms
160:	learn: 8.4753874	total: 3.53s	remaining: 856ms
161:	learn: 8.4102398	total: 3.55s	remaining: 833ms
162:	learn: 8.3427298	total: 3.57s	remaining: 811ms
163:	learn: 8.2879829	total: 3.6s	remaining: 790ms
164:	learn: 8.2017948	total: 3.62s	remaining: 769ms
165:	learn: 8.1414522	total: 3.65s	remaining: 747ms
166:	learn: 8.0997373	total: 3.67s	remaining: 725ms
167:	learn: 8.0426513	total: 3.69s	remaining: 703ms
168:	learn: 8.0171299	total: 3.71s	remaining: 681ms
169:	learn: 7.9860244	total: 3.73s	remaining: 659ms
170:	learn: 7.9243600	total: 3.75s	remaining: 637ms
171:	learn: 7.8888500	total: 3.78s	remaining: 615ms
172:	learn: 7.8429133	total: 3.8s	remaining: 594ms
173:	learn: 7.7878355	total: 3.83s	remaining: 572ms
174:	learn: 7.7477647	total: 3.85s	remaining: 550ms
175:	learn: 7.6996609	total: 3.87s	remaining: 527ms
176:	learn: 7.6508695	total: 3.88s	remaining: 505ms
177:	learn: 7.6228709	total: 3.9s	remaining: 483ms
178:	learn: 7.5427816	total: 3.92s	remaining: 460ms
179:	learn: 7.4993051	total: 3.94s	remaining: 438ms
180:	learn: 7.4506031	total: 3.96s	remaining: 416ms
181:	learn: 7.4126852	total: 3.99s	remaining: 394ms
182:	learn: 7.3727232	total: 4.02s	remaining: 373ms
183:	learn: 7.3245476	total: 4.04s	remaining: 351ms
184:	learn: 7.2930719	total: 4.06s	remaining: 330ms
185:	learn: 7.2609171	total: 4.09s	remaining: 308ms
186:	learn: 7.2219298	total: 4.11s	remaining: 286ms
187:	learn: 7.1686640	total: 4.13s	remaining: 264ms
188:	learn: 7.1391386	total: 4.15s	remaining: 242ms
189:	learn: 7.0834226	total: 4.17s	remaining: 219ms
190:	learn: 7.0356769	total: 4.19s	remaining: 197ms
191:	learn: 6.9895273	total: 4.21s	remaining: 176ms
192:	learn: 6.9461560	total: 4.24s	remaining: 154ms
193:	learn: 6.9066032	total: 4.26s	remaining: 132ms
194:	learn: 6.8510364	total: 4.28s	remaining: 110ms
195:	learn: 6.8372660	total: 4.29s	remaining: 87.7ms
196:	learn: 6.8214482	total: 4.32s	remaining: 65.7ms
197:	learn: 6.7734991	total: 4.33s	remaining: 43.8ms
198:	learn: 6.7326852	total: 4.36s	remaining: 21.9ms
199:	learn: 6.7110050	total: 4.38s	remaining: 0us
0:	learn: 45.9215573	total: 19.8ms	remaining: 3.93s
1:	learn: 44.9284313	total: 43.1ms	remaining: 4.27s
2:	learn: 44.0711345	total: 65.7ms	remaining: 4.31s
3:	learn: 43.1946732	total: 88.8ms	remaining: 4.35s
4:	learn: 42.3849301	total: 108ms	remaining: 4.23s
5:	learn: 41.3846783	total: 129ms	remaining: 4.18s
6:	learn: 40.5478596	total: 150ms	remaining: 4.13s
7:	learn: 39.7877107	total: 173ms	remaining: 4.14s
8:	learn: 39.2235376	total: 201ms	remaining: 4.26s
9:	learn: 38.1495756	total: 224ms	remaining: 4.25s
10:	learn: 37.3934113	total: 245ms	remaining: 4.21s
11:	learn: 36.8586441	total: 267ms	remaining: 4.18s
12:	learn: 36.0985370	total: 286ms	remaining: 4.11s
13:	learn: 35.3452538	total: 306ms	remaining: 4.07s
14:	learn: 34.5427415	total: 325ms	remaining: 4.01s
15:	learn: 33.9683642	total: 344ms	remaining: 3.95s
16:	learn: 33.4589244	total: 365ms	remaining: 3.93s
17:	learn: 32.9407753	total: 386ms	remaining: 3.9s
18:	learn: 32.4280468	total: 417ms	remaining: 3.97s
19:	learn: 31.7257475	total: 440ms	remaining: 3.96s
20:	learn: 31.1717140	total: 462ms	remaining: 3.93s
21:	learn: 30.6995996	total: 484ms	remaining: 3.91s
22:	learn: 30.2724641	total: 505ms	remaining: 3.89s
23:	learn: 29.7428509	total: 525ms	remaining: 3.85s
24:	learn: 29.1882571	total: 544ms	remaining: 3.81s
25:	learn: 28.7327799	total: 562ms	remaining: 3.76s
26:	learn: 28.2833877	total: 582ms	remaining: 3.73s
27:	learn: 27.9927194	total: 608ms	remaining: 3.73s
28:	learn: 27.4458955	total: 631ms	remaining: 3.72s
29:	learn: 27.0894181	total: 649ms	remaining: 3.68s
30:	learn: 26.6809084	total: 669ms	remaining: 3.65s
31:	learn: 26.2884767	total: 688ms	remaining: 3.61s
32:	learn: 25.8641383	total: 714ms	remaining: 3.62s
33:	learn: 25.4731759	total: 735ms	remaining: 3.59s
34:	learn: 25.1288573	total: 758ms	remaining: 3.57s
35:	learn: 24.7440894	total: 778ms	remaining: 3.54s
36:	learn: 24.4112270	total: 802ms	remaining: 3.53s
37:	learn: 24.0727081	total: 826ms	remaining: 3.52s
38:	learn: 23.7431725	total: 864ms	remaining: 3.56s
39:	learn: 23.4247988	total: 887ms	remaining: 3.55s
40:	learn: 23.1336117	total: 911ms	remaining: 3.53s
41:	learn: 22.8507281	total: 934ms	remaining: 3.51s
42:	learn: 22.5904652	total: 958ms	remaining: 3.5s
43:	learn: 22.3442324	total: 978ms	remaining: 3.47s
44:	learn: 22.0327536	total: 1s	remaining: 3.45s
45:	learn: 21.7539265	total: 1.02s	remaining: 3.43s
46:	learn: 21.5196696	total: 1.06s	remaining: 3.44s
47:	learn: 21.2340877	total: 1.08s	remaining: 3.42s
48:	learn: 20.9294404	total: 1.1s	remaining: 3.39s
49:	learn: 20.7129883	total: 1.13s	remaining: 3.39s
50:	learn: 20.4874120	total: 1.15s	remaining: 3.37s
51:	learn: 20.2801665	total: 1.17s	remaining: 3.34s
52:	learn: 20.1451290	total: 1.2s	remaining: 3.32s
53:	learn: 19.8893935	total: 1.22s	remaining: 3.29s
54:	learn: 19.6356393	total: 1.24s	remaining: 3.26s
55:	learn: 19.3929976	total: 1.26s	remaining: 3.25s
56:	learn: 19.1603234	total: 1.29s	remaining: 3.25s
57:	learn: 18.9606558	total: 1.32s	remaining: 3.23s
58:	learn: 18.7611006	total: 1.34s	remaining: 3.21s
59:	learn: 18.5930939	total: 1.38s	remaining: 3.21s
60:	learn: 18.4565961	total: 1.4s	remaining: 3.19s
61:	learn: 18.2641722	total: 1.42s	remaining: 3.16s
62:	learn: 18.1150502	total: 1.44s	remaining: 3.14s
63:	learn: 17.9331117	total: 1.47s	remaining: 3.12s
64:	learn: 17.7523560	total: 1.5s	remaining: 3.11s
65:	learn: 17.6211697	total: 1.52s	remaining: 3.08s
66:	learn: 17.4779253	total: 1.54s	remaining: 3.06s
67:	learn: 17.3972874	total: 1.56s	remaining: 3.03s
68:	learn: 17.3096715	total: 1.58s	remaining: 3s
69:	learn: 17.1933586	total: 1.6s	remaining: 2.98s
70:	learn: 17.0431030	total: 1.63s	remaining: 2.97s
71:	learn: 16.8568825	total: 1.66s	remaining: 2.94s
72:	learn: 16.7246266	total: 1.68s	remaining: 2.93s
73:	learn: 16.5696941	total: 1.71s	remaining: 2.92s
74:	learn: 16.4412110	total: 1.74s	remaining: 2.9s
75:	learn: 16.3346865	total: 1.76s	remaining: 2.87s
76:	learn: 16.1904210	total: 1.78s	remaining: 2.85s
77:	learn: 16.0299007	total: 1.81s	remaining: 2.83s
78:	learn: 15.9351887	total: 1.83s	remaining: 2.81s
79:	learn: 15.8037331	total: 1.85s	remaining: 2.78s
80:	learn: 15.6793752	total: 1.88s	remaining: 2.76s
81:	learn: 15.5259970	total: 1.91s	remaining: 2.75s
82:	learn: 15.4520966	total: 1.94s	remaining: 2.73s
83:	learn: 15.3523282	total: 1.96s	remaining: 2.7s
84:	learn: 15.3157447	total: 1.98s	remaining: 2.68s
85:	learn: 15.2372888	total: 2s	remaining: 2.65s
86:	learn: 15.0923008	total: 2.02s	remaining: 2.63s
87:	learn: 15.0181842	total: 2.04s	remaining: 2.6s
88:	learn: 14.8366764	total: 2.07s	remaining: 2.58s
89:	learn: 14.7247654	total: 2.09s	remaining: 2.55s
90:	learn: 14.6431207	total: 2.11s	remaining: 2.53s
91:	learn: 14.5705776	total: 2.15s	remaining: 2.53s
92:	learn: 14.4640014	total: 2.17s	remaining: 2.5s
93:	learn: 14.3666041	total: 2.2s	remaining: 2.48s
94:	learn: 14.3112685	total: 2.22s	remaining: 2.46s
95:	learn: 14.2184161	total: 2.24s	remaining: 2.43s
96:	learn: 14.1032991	total: 2.27s	remaining: 2.41s
97:	learn: 14.0586875	total: 2.29s	remaining: 2.38s
98:	learn: 13.9507118	total: 2.31s	remaining: 2.36s
99:	learn: 13.8778041	total: 2.34s	remaining: 2.34s
100:	learn: 13.7728695	total: 2.37s	remaining: 2.32s
101:	learn: 13.6608543	total: 2.39s	remaining: 2.3s
102:	learn: 13.5550488	total: 2.42s	remaining: 2.28s
103:	learn: 13.4489779	total: 2.44s	remaining: 2.25s
104:	learn: 13.3804592	total: 2.46s	remaining: 2.23s
105:	learn: 13.2836433	total: 2.48s	remaining: 2.2s
106:	learn: 13.2203501	total: 2.5s	remaining: 2.18s
107:	learn: 13.1493422	total: 2.53s	remaining: 2.15s
108:	learn: 13.0600009	total: 2.56s	remaining: 2.13s
109:	learn: 12.9684426	total: 2.58s	remaining: 2.11s
110:	learn: 12.9028699	total: 2.61s	remaining: 2.09s
111:	learn: 12.7963752	total: 2.63s	remaining: 2.07s
112:	learn: 12.7080153	total: 2.66s	remaining: 2.05s
113:	learn: 12.6204740	total: 2.69s	remaining: 2.03s
114:	learn: 12.5027992	total: 2.71s	remaining: 2s
115:	learn: 12.4544452	total: 2.73s	remaining: 1.98s
116:	learn: 12.3924059	total: 2.75s	remaining: 1.95s
117:	learn: 12.3170363	total: 2.78s	remaining: 1.93s
118:	learn: 12.2485670	total: 2.8s	remaining: 1.91s
119:	learn: 12.1257095	total: 2.83s	remaining: 1.88s
120:	learn: 12.0604229	total: 2.85s	remaining: 1.86s
121:	learn: 12.0088875	total: 2.87s	remaining: 1.83s
122:	learn: 11.9284487	total: 2.89s	remaining: 1.81s
123:	learn: 11.8528694	total: 2.92s	remaining: 1.79s
124:	learn: 11.7717673	total: 2.94s	remaining: 1.76s
125:	learn: 11.7240723	total: 2.96s	remaining: 1.74s
126:	learn: 11.6715318	total: 2.98s	remaining: 1.71s
127:	learn: 11.6276994	total: 3.01s	remaining: 1.7s
128:	learn: 11.5431431	total: 3.04s	remaining: 1.67s
129:	learn: 11.4385709	total: 3.07s	remaining: 1.65s
130:	learn: 11.3627369	total: 3.09s	remaining: 1.63s
131:	learn: 11.2970131	total: 3.11s	remaining: 1.6s
132:	learn: 11.2322847	total: 3.14s	remaining: 1.58s
133:	learn: 11.1846367	total: 3.16s	remaining: 1.55s
134:	learn: 11.1543979	total: 3.19s	remaining: 1.54s
135:	learn: 11.0823544	total: 3.22s	remaining: 1.51s
136:	learn: 11.0487163	total: 3.24s	remaining: 1.49s
137:	learn: 10.9832607	total: 3.26s	remaining: 1.47s
138:	learn: 10.9130824	total: 3.28s	remaining: 1.44s
139:	learn: 10.8579745	total: 3.3s	remaining: 1.42s
140:	learn: 10.7828907	total: 3.32s	remaining: 1.39s
141:	learn: 10.7103000	total: 3.34s	remaining: 1.37s
142:	learn: 10.6237800	total: 3.37s	remaining: 1.34s
143:	learn: 10.5716544	total: 3.39s	remaining: 1.32s
144:	learn: 10.4976092	total: 3.42s	remaining: 1.3s
145:	learn: 10.4313055	total: 3.45s	remaining: 1.27s
146:	learn: 10.3999486	total: 3.48s	remaining: 1.25s
147:	learn: 10.3502867	total: 3.5s	remaining: 1.23s
148:	learn: 10.3019991	total: 3.52s	remaining: 1.21s
149:	learn: 10.2488923	total: 3.54s	remaining: 1.18s
150:	learn: 10.1888838	total: 3.57s	remaining: 1.16s
151:	learn: 10.1116260	total: 3.59s	remaining: 1.13s
152:	learn: 10.0637742	total: 3.62s	remaining: 1.11s
153:	learn: 10.0463529	total: 3.64s	remaining: 1.09s
154:	learn: 9.9940485	total: 3.67s	remaining: 1.06s
155:	learn: 9.9547623	total: 3.7s	remaining: 1.04s
156:	learn: 9.8883659	total: 3.72s	remaining: 1.02s
157:	learn: 9.8547995	total: 3.74s	remaining: 994ms
158:	learn: 9.7999920	total: 3.76s	remaining: 969ms
159:	learn: 9.7417080	total: 3.78s	remaining: 945ms
160:	learn: 9.6704634	total: 3.8s	remaining: 921ms
161:	learn: 9.6398702	total: 3.82s	remaining: 897ms
162:	learn: 9.5435727	total: 3.85s	remaining: 873ms
163:	learn: 9.4983201	total: 3.88s	remaining: 852ms
164:	learn: 9.4633708	total: 3.9s	remaining: 828ms
165:	learn: 9.4354208	total: 3.94s	remaining: 807ms
166:	learn: 9.3806854	total: 3.96s	remaining: 783ms
167:	learn: 9.3711495	total: 3.98s	remaining: 759ms
168:	learn: 9.3437714	total: 4s	remaining: 735ms
169:	learn: 9.2939136	total: 4.03s	remaining: 711ms
170:	learn: 9.2634408	total: 4.06s	remaining: 688ms
171:	learn: 9.2095802	total: 4.08s	remaining: 665ms
172:	learn: 9.1367149	total: 4.11s	remaining: 641ms
173:	learn: 9.0999811	total: 4.13s	remaining: 617ms
174:	learn: 9.0367025	total: 4.15s	remaining: 592ms
175:	learn: 8.9715179	total: 4.17s	remaining: 568ms
176:	learn: 8.9149353	total: 4.2s	remaining: 545ms
177:	learn: 8.8782863	total: 4.21s	remaining: 521ms
178:	learn: 8.8540567	total: 4.24s	remaining: 497ms
179:	learn: 8.8250018	total: 4.26s	remaining: 474ms
180:	learn: 8.7872819	total: 4.29s	remaining: 451ms
181:	learn: 8.7315187	total: 4.32s	remaining: 427ms
182:	learn: 8.6696386	total: 4.34s	remaining: 404ms
183:	learn: 8.6137125	total: 4.37s	remaining: 380ms
184:	learn: 8.5526564	total: 4.39s	remaining: 356ms
185:	learn: 8.4978425	total: 4.41s	remaining: 332ms
186:	learn: 8.4696701	total: 4.43s	remaining: 308ms
187:	learn: 8.4148472	total: 4.47s	remaining: 285ms
188:	learn: 8.3597806	total: 4.5s	remaining: 262ms
189:	learn: 8.2960142	total: 4.52s	remaining: 238ms
190:	learn: 8.2542563	total: 4.54s	remaining: 214ms
191:	learn: 8.2272414	total: 4.56s	remaining: 190ms
192:	learn: 8.2002236	total: 4.58s	remaining: 166ms
193:	learn: 8.1459890	total: 4.6s	remaining: 142ms
194:	learn: 8.1086196	total: 4.62s	remaining: 119ms
195:	learn: 8.0560727	total: 4.64s	remaining: 94.8ms
196:	learn: 8.0094006	total: 4.67s	remaining: 71.1ms
197:	learn: 7.9587782	total: 4.7s	remaining: 47.5ms
198:	learn: 7.9133276	total: 4.73s	remaining: 23.8ms
199:	learn: 7.8533351	total: 4.75s	remaining: 0us
0:	learn: 46.7822310	total: 21.5ms	remaining: 4.28s
1:	learn: 45.7821607	total: 42.7ms	remaining: 4.22s
2:	learn: 44.8561967	total: 63.7ms	remaining: 4.18s
3:	learn: 43.8403748	total: 83.7ms	remaining: 4.1s
4:	learn: 43.0453118	total: 104ms	remaining: 4.06s
5:	learn: 42.2563327	total: 126ms	remaining: 4.06s
6:	learn: 41.3419698	total: 151ms	remaining: 4.17s
7:	learn: 40.5164894	total: 174ms	remaining: 4.17s
8:	learn: 39.8924326	total: 194ms	remaining: 4.13s
9:	learn: 39.0363549	total: 216ms	remaining: 4.1s
10:	learn: 38.3058916	total: 236ms	remaining: 4.05s
11:	learn: 37.6507668	total: 255ms	remaining: 3.99s
12:	learn: 36.8661647	total: 275ms	remaining: 3.95s
13:	learn: 36.1668195	total: 296ms	remaining: 3.93s
14:	learn: 35.4405316	total: 318ms	remaining: 3.92s
15:	learn: 34.7706167	total: 339ms	remaining: 3.9s
16:	learn: 34.0932139	total: 370ms	remaining: 3.99s
17:	learn: 33.5806864	total: 395ms	remaining: 3.99s
18:	learn: 32.9827022	total: 417ms	remaining: 3.97s
19:	learn: 32.3339103	total: 439ms	remaining: 3.95s
20:	learn: 31.7658637	total: 460ms	remaining: 3.92s
21:	learn: 31.3001942	total: 483ms	remaining: 3.91s
22:	learn: 30.8802168	total: 503ms	remaining: 3.87s
23:	learn: 30.5086494	total: 525ms	remaining: 3.85s
24:	learn: 30.0097170	total: 548ms	remaining: 3.83s
25:	learn: 29.5185440	total: 574ms	remaining: 3.84s
26:	learn: 29.1325379	total: 599ms	remaining: 3.84s
27:	learn: 28.8194880	total: 618ms	remaining: 3.8s
28:	learn: 28.2457676	total: 639ms	remaining: 3.77s
29:	learn: 27.8248381	total: 658ms	remaining: 3.73s
30:	learn: 27.4206428	total: 678ms	remaining: 3.7s
31:	learn: 26.9688365	total: 699ms	remaining: 3.67s
32:	learn: 26.6098298	total: 718ms	remaining: 3.63s
33:	learn: 26.0979119	total: 739ms	remaining: 3.61s
34:	learn: 25.7628382	total: 761ms	remaining: 3.59s
35:	learn: 25.4503633	total: 783ms	remaining: 3.57s
36:	learn: 25.1459394	total: 813ms	remaining: 3.58s
37:	learn: 24.8310510	total: 837ms	remaining: 3.57s
38:	learn: 24.5019544	total: 858ms	remaining: 3.54s
39:	learn: 24.1193536	total: 881ms	remaining: 3.52s
40:	learn: 23.8351675	total: 904ms	remaining: 3.5s
41:	learn: 23.5419329	total: 924ms	remaining: 3.47s
42:	learn: 23.2736224	total: 945ms	remaining: 3.45s
43:	learn: 23.0174601	total: 968ms	remaining: 3.43s
44:	learn: 22.7145721	total: 990ms	remaining: 3.41s
45:	learn: 22.4737593	total: 1.02s	remaining: 3.42s
46:	learn: 22.1964499	total: 1.04s	remaining: 3.39s
47:	learn: 21.9273921	total: 1.06s	remaining: 3.37s
48:	learn: 21.6532339	total: 1.08s	remaining: 3.34s
49:	learn: 21.3297885	total: 1.1s	remaining: 3.31s
50:	learn: 21.1049787	total: 1.12s	remaining: 3.28s
51:	learn: 20.9509899	total: 1.14s	remaining: 3.25s
52:	learn: 20.7119187	total: 1.16s	remaining: 3.22s
53:	learn: 20.4608975	total: 1.19s	remaining: 3.2s
54:	learn: 20.2456983	total: 1.21s	remaining: 3.2s
55:	learn: 20.0181848	total: 1.24s	remaining: 3.19s
56:	learn: 19.8324126	total: 1.24s	remaining: 3.12s
57:	learn: 19.6043971	total: 1.26s	remaining: 3.1s
58:	learn: 19.4054712	total: 1.29s	remaining: 3.07s
59:	learn: 19.2208737	total: 1.31s	remaining: 3.05s
60:	learn: 19.0690326	total: 1.33s	remaining: 3.03s
61:	learn: 18.8243788	total: 1.35s	remaining: 3s
62:	learn: 18.6625426	total: 1.37s	remaining: 2.98s
63:	learn: 18.5435992	total: 1.39s	remaining: 2.95s
64:	learn: 18.3580575	total: 1.41s	remaining: 2.92s
65:	learn: 18.2180113	total: 1.43s	remaining: 2.91s
66:	learn: 18.0592330	total: 1.46s	remaining: 2.9s
67:	learn: 17.8657351	total: 1.48s	remaining: 2.87s
68:	learn: 17.7056637	total: 1.5s	remaining: 2.84s
69:	learn: 17.5530012	total: 1.52s	remaining: 2.82s
70:	learn: 17.3253539	total: 1.54s	remaining: 2.79s
71:	learn: 17.1678051	total: 1.56s	remaining: 2.77s
72:	learn: 17.0772983	total: 1.58s	remaining: 2.74s
73:	learn: 16.9029188	total: 1.59s	remaining: 2.72s
74:	learn: 16.7184145	total: 1.62s	remaining: 2.69s
75:	learn: 16.6277772	total: 1.64s	remaining: 2.68s
76:	learn: 16.4736973	total: 1.67s	remaining: 2.66s
77:	learn: 16.3110197	total: 1.69s	remaining: 2.64s
78:	learn: 16.2013306	total: 1.71s	remaining: 2.62s
79:	learn: 16.0773253	total: 1.73s	remaining: 2.6s
80:	learn: 15.9767004	total: 1.76s	remaining: 2.58s
81:	learn: 15.8505072	total: 1.78s	remaining: 2.56s
82:	learn: 15.7325434	total: 1.8s	remaining: 2.54s
83:	learn: 15.6079941	total: 1.82s	remaining: 2.51s
84:	learn: 15.4640876	total: 1.84s	remaining: 2.49s
85:	learn: 15.3186379	total: 1.87s	remaining: 2.48s
86:	learn: 15.2243889	total: 1.89s	remaining: 2.46s
87:	learn: 15.1521861	total: 1.91s	remaining: 2.43s
88:	learn: 15.0102313	total: 1.93s	remaining: 2.41s
89:	learn: 14.9033387	total: 1.95s	remaining: 2.39s
90:	learn: 14.7499627	total: 1.97s	remaining: 2.36s
91:	learn: 14.5773387	total: 1.99s	remaining: 2.34s
92:	learn: 14.5036877	total: 2.01s	remaining: 2.31s
93:	learn: 14.3848877	total: 2.03s	remaining: 2.29s
94:	learn: 14.3146248	total: 2.05s	remaining: 2.27s
95:	learn: 14.2028225	total: 2.08s	remaining: 2.25s
96:	learn: 14.1210694	total: 2.1s	remaining: 2.23s
97:	learn: 13.9922309	total: 2.13s	remaining: 2.21s
98:	learn: 13.9278869	total: 2.15s	remaining: 2.19s
99:	learn: 13.8722336	total: 2.17s	remaining: 2.17s
100:	learn: 13.8027312	total: 2.19s	remaining: 2.15s
101:	learn: 13.6955150	total: 2.21s	remaining: 2.12s
102:	learn: 13.6249600	total: 2.23s	remaining: 2.1s
103:	learn: 13.5387957	total: 2.25s	remaining: 2.07s
104:	learn: 13.4952931	total: 2.27s	remaining: 2.05s
105:	learn: 13.3809253	total: 2.29s	remaining: 2.04s
106:	learn: 13.2936050	total: 2.31s	remaining: 2.01s
107:	learn: 13.2190146	total: 2.33s	remaining: 1.99s
108:	learn: 13.1176305	total: 2.35s	remaining: 1.96s
109:	learn: 12.9918546	total: 2.37s	remaining: 1.94s
110:	learn: 12.9217870	total: 2.38s	remaining: 1.91s
111:	learn: 12.8560371	total: 2.4s	remaining: 1.89s
112:	learn: 12.7830178	total: 2.42s	remaining: 1.86s
113:	learn: 12.7089425	total: 2.44s	remaining: 1.84s
114:	learn: 12.6183965	total: 2.46s	remaining: 1.82s
115:	learn: 12.5248959	total: 2.48s	remaining: 1.79s
116:	learn: 12.4473869	total: 2.51s	remaining: 1.78s
117:	learn: 12.3691451	total: 2.53s	remaining: 1.76s
118:	learn: 12.2780346	total: 2.55s	remaining: 1.74s
119:	learn: 12.1932999	total: 2.57s	remaining: 1.71s
120:	learn: 12.1292305	total: 2.59s	remaining: 1.69s
121:	learn: 12.0738894	total: 2.62s	remaining: 1.67s
122:	learn: 12.0131256	total: 2.63s	remaining: 1.65s
123:	learn: 11.9163924	total: 2.65s	remaining: 1.63s
124:	learn: 11.8342851	total: 2.67s	remaining: 1.6s
125:	learn: 11.7574444	total: 2.69s	remaining: 1.58s
126:	learn: 11.6909809	total: 2.71s	remaining: 1.56s
127:	learn: 11.6349840	total: 2.73s	remaining: 1.54s
128:	learn: 11.5534164	total: 2.75s	remaining: 1.52s
129:	learn: 11.4769774	total: 2.77s	remaining: 1.49s
130:	learn: 11.4293194	total: 2.79s	remaining: 1.47s
131:	learn: 11.3392710	total: 2.82s	remaining: 1.45s
132:	learn: 11.3020809	total: 2.84s	remaining: 1.43s
133:	learn: 11.2458141	total: 2.86s	remaining: 1.41s
134:	learn: 11.1780043	total: 2.88s	remaining: 1.39s
135:	learn: 11.1094892	total: 2.9s	remaining: 1.36s
136:	learn: 11.0482317	total: 2.93s	remaining: 1.34s
137:	learn: 10.9928609	total: 2.95s	remaining: 1.33s
138:	learn: 10.8782641	total: 2.98s	remaining: 1.31s
139:	learn: 10.8068918	total: 3s	remaining: 1.29s
140:	learn: 10.7281707	total: 3.02s	remaining: 1.26s
141:	learn: 10.6630047	total: 3.05s	remaining: 1.24s
142:	learn: 10.5820619	total: 3.07s	remaining: 1.22s
143:	learn: 10.5275719	total: 3.09s	remaining: 1.2s
144:	learn: 10.4536775	total: 3.11s	remaining: 1.18s
145:	learn: 10.3667297	total: 3.13s	remaining: 1.16s
146:	learn: 10.3113645	total: 3.16s	remaining: 1.14s
147:	learn: 10.2506720	total: 3.18s	remaining: 1.12s
148:	learn: 10.1815199	total: 3.2s	remaining: 1.1s
149:	learn: 10.1210630	total: 3.23s	remaining: 1.07s
150:	learn: 10.0607434	total: 3.24s	remaining: 1.05s
151:	learn: 9.9682935	total: 3.26s	remaining: 1.03s
152:	learn: 9.9258231	total: 3.28s	remaining: 1.01s
153:	learn: 9.8508685	total: 3.3s	remaining: 987ms
154:	learn: 9.7974763	total: 3.32s	remaining: 965ms
155:	learn: 9.7046997	total: 3.35s	remaining: 943ms
156:	learn: 9.6517521	total: 3.38s	remaining: 925ms
157:	learn: 9.5843511	total: 3.4s	remaining: 904ms
158:	learn: 9.5317124	total: 3.42s	remaining: 883ms
159:	learn: 9.4685152	total: 3.45s	remaining: 862ms
160:	learn: 9.4073484	total: 3.47s	remaining: 841ms
161:	learn: 9.3415358	total: 3.49s	remaining: 819ms
162:	learn: 9.2764418	total: 3.51s	remaining: 797ms
163:	learn: 9.2262344	total: 3.53s	remaining: 776ms
164:	learn: 9.1727385	total: 3.56s	remaining: 755ms
165:	learn: 9.0916817	total: 3.58s	remaining: 734ms
166:	learn: 9.0352255	total: 3.61s	remaining: 713ms
167:	learn: 8.9925762	total: 3.63s	remaining: 691ms
168:	learn: 8.9189665	total: 3.65s	remaining: 669ms
169:	learn: 8.8561510	total: 3.67s	remaining: 647ms
170:	learn: 8.8061101	total: 3.69s	remaining: 625ms
171:	learn: 8.7678736	total: 3.7s	remaining: 603ms
172:	learn: 8.7029468	total: 3.72s	remaining: 581ms
173:	learn: 8.6743446	total: 3.74s	remaining: 559ms
174:	learn: 8.6205771	total: 3.76s	remaining: 537ms
175:	learn: 8.5820649	total: 3.78s	remaining: 516ms
176:	learn: 8.5354484	total: 3.81s	remaining: 496ms
177:	learn: 8.5203645	total: 3.84s	remaining: 474ms
178:	learn: 8.4300845	total: 3.86s	remaining: 452ms
179:	learn: 8.3630891	total: 3.88s	remaining: 431ms
180:	learn: 8.3212146	total: 3.9s	remaining: 409ms
181:	learn: 8.2791743	total: 3.92s	remaining: 387ms
182:	learn: 8.2274885	total: 3.94s	remaining: 366ms
183:	learn: 8.1885224	total: 3.95s	remaining: 344ms
184:	learn: 8.1605467	total: 3.97s	remaining: 322ms
185:	learn: 8.1027759	total: 4s	remaining: 301ms
186:	learn: 8.0660143	total: 4.03s	remaining: 280ms
187:	learn: 8.0160573	total: 4.05s	remaining: 258ms
188:	learn: 7.9740032	total: 4.07s	remaining: 237ms
189:	learn: 7.8893524	total: 4.09s	remaining: 215ms
190:	learn: 7.8399096	total: 4.11s	remaining: 194ms
191:	learn: 7.8154601	total: 4.13s	remaining: 172ms
192:	learn: 7.7535369	total: 4.15s	remaining: 151ms
193:	learn: 7.7158570	total: 4.17s	remaining: 129ms
194:	learn: 7.6598850	total: 4.19s	remaining: 107ms
195:	learn: 7.6170092	total: 4.21s	remaining: 85.9ms
196:	learn: 7.5574492	total: 4.23s	remaining: 64.4ms
197:	learn: 7.5095826	total: 4.26s	remaining: 43ms
198:	learn: 7.4636116	total: 4.28s	remaining: 21.5ms
199:	learn: 7.4101012	total: 4.3s	remaining: 0us
0:	learn: 27.5267205	total: 23.7ms	remaining: 4.71s
1:	learn: 27.0297320	total: 48.1ms	remaining: 4.76s
2:	learn: 26.5510417	total: 80.1ms	remaining: 5.26s
3:	learn: 26.1221185	total: 88.6ms	remaining: 4.34s
4:	learn: 25.6690036	total: 113ms	remaining: 4.4s
5:	learn: 25.2709759	total: 137ms	remaining: 4.42s
6:	learn: 24.8033327	total: 160ms	remaining: 4.42s
7:	learn: 24.4258966	total: 185ms	remaining: 4.43s
8:	learn: 24.0351254	total: 209ms	remaining: 4.42s
9:	learn: 23.6271871	total: 233ms	remaining: 4.42s
10:	learn: 23.1709164	total: 256ms	remaining: 4.39s
11:	learn: 22.8341448	total: 280ms	remaining: 4.38s
12:	learn: 22.5508255	total: 313ms	remaining: 4.5s
13:	learn: 22.1650870	total: 341ms	remaining: 4.52s
14:	learn: 21.8409545	total: 365ms	remaining: 4.5s
15:	learn: 21.5838916	total: 389ms	remaining: 4.47s
16:	learn: 21.2570767	total: 414ms	remaining: 4.46s
17:	learn: 20.9351602	total: 439ms	remaining: 4.44s
18:	learn: 20.6431553	total: 463ms	remaining: 4.41s
19:	learn: 20.3451843	total: 487ms	remaining: 4.38s
20:	learn: 20.0903893	total: 518ms	remaining: 4.41s
21:	learn: 19.7708525	total: 544ms	remaining: 4.4s
22:	learn: 19.5129016	total: 568ms	remaining: 4.37s
23:	learn: 19.2789838	total: 591ms	remaining: 4.33s
24:	learn: 19.0285247	total: 616ms	remaining: 4.31s
25:	learn: 18.7740774	total: 640ms	remaining: 4.28s
26:	learn: 18.4131270	total: 664ms	remaining: 4.25s
27:	learn: 18.1935928	total: 688ms	remaining: 4.23s
28:	learn: 17.9185293	total: 712ms	remaining: 4.2s
29:	learn: 17.6818825	total: 743ms	remaining: 4.21s
30:	learn: 17.4551687	total: 771ms	remaining: 4.2s
31:	learn: 17.2687322	total: 795ms	remaining: 4.17s
32:	learn: 17.0648633	total: 821ms	remaining: 4.16s
33:	learn: 16.8298981	total: 847ms	remaining: 4.14s
34:	learn: 16.6371395	total: 871ms	remaining: 4.11s
35:	learn: 16.4706695	total: 894ms	remaining: 4.07s
36:	learn: 16.2417258	total: 918ms	remaining: 4.04s
37:	learn: 16.0550250	total: 953ms	remaining: 4.06s
38:	learn: 15.8743430	total: 991ms	remaining: 4.09s
39:	learn: 15.7086215	total: 1.02s	remaining: 4.07s
40:	learn: 15.5349794	total: 1.04s	remaining: 4.05s
41:	learn: 15.3661561	total: 1.07s	remaining: 4.04s
42:	learn: 15.1953294	total: 1.1s	remaining: 4.02s
43:	learn: 15.0239038	total: 1.13s	remaining: 4s
44:	learn: 14.8773748	total: 1.16s	remaining: 3.98s
45:	learn: 14.6611861	total: 1.19s	remaining: 3.98s
46:	learn: 14.5252257	total: 1.22s	remaining: 3.96s
47:	learn: 14.3792699	total: 1.25s	remaining: 3.94s
48:	learn: 14.2511628	total: 1.27s	remaining: 3.92s
49:	learn: 14.1345616	total: 1.31s	remaining: 3.93s
50:	learn: 13.9884078	total: 1.34s	remaining: 3.91s
51:	learn: 13.8664210	total: 1.36s	remaining: 3.89s
52:	learn: 13.7317425	total: 1.39s	remaining: 3.86s
53:	learn: 13.6052633	total: 1.42s	remaining: 3.84s
54:	learn: 13.4989783	total: 1.45s	remaining: 3.83s
55:	learn: 13.3711614	total: 1.48s	remaining: 3.81s
56:	learn: 13.2500078	total: 1.51s	remaining: 3.78s
57:	learn: 13.1495677	total: 1.54s	remaining: 3.77s
58:	learn: 13.0270356	total: 1.57s	remaining: 3.75s
59:	learn: 12.9010466	total: 1.59s	remaining: 3.72s
60:	learn: 12.7690116	total: 1.62s	remaining: 3.69s
61:	learn: 12.6721291	total: 1.65s	remaining: 3.67s
62:	learn: 12.5556250	total: 1.69s	remaining: 3.67s
63:	learn: 12.4465816	total: 1.72s	remaining: 3.65s
64:	learn: 12.3321066	total: 1.74s	remaining: 3.62s
65:	learn: 12.2170303	total: 1.78s	remaining: 3.61s
66:	learn: 12.1113674	total: 1.81s	remaining: 3.59s
67:	learn: 12.0224784	total: 1.83s	remaining: 3.56s
68:	learn: 11.9394297	total: 1.86s	remaining: 3.54s
69:	learn: 11.8303621	total: 1.89s	remaining: 3.51s
70:	learn: 11.7377540	total: 1.92s	remaining: 3.49s
71:	learn: 11.6367962	total: 1.95s	remaining: 3.47s
72:	learn: 11.5501496	total: 1.98s	remaining: 3.44s
73:	learn: 11.4493525	total: 2s	remaining: 3.41s
74:	learn: 11.3454123	total: 2.04s	remaining: 3.4s
75:	learn: 11.2512257	total: 2.07s	remaining: 3.37s
76:	learn: 11.1778585	total: 2.09s	remaining: 3.35s
77:	learn: 11.1109993	total: 2.12s	remaining: 3.32s
78:	learn: 11.0176987	total: 2.16s	remaining: 3.3s
79:	learn: 10.9457927	total: 2.19s	remaining: 3.28s
80:	learn: 10.8639363	total: 2.21s	remaining: 3.25s
81:	learn: 10.7872782	total: 2.24s	remaining: 3.22s
82:	learn: 10.6570129	total: 2.27s	remaining: 3.21s
83:	learn: 10.5760595	total: 2.3s	remaining: 3.18s
84:	learn: 10.4763853	total: 2.33s	remaining: 3.15s
85:	learn: 10.3931190	total: 2.36s	remaining: 3.13s
86:	learn: 10.3021565	total: 2.39s	remaining: 3.1s
87:	learn: 10.2202312	total: 2.42s	remaining: 3.08s
88:	learn: 10.1376195	total: 2.44s	remaining: 3.05s
89:	learn: 10.0481135	total: 2.47s	remaining: 3.02s
90:	learn: 9.9436402	total: 2.5s	remaining: 3s
91:	learn: 9.8883469	total: 2.53s	remaining: 2.97s
92:	learn: 9.8391453	total: 2.56s	remaining: 2.94s
93:	learn: 9.7559058	total: 2.59s	remaining: 2.92s
94:	learn: 9.7036404	total: 2.62s	remaining: 2.9s
95:	learn: 9.6339700	total: 2.65s	remaining: 2.87s
96:	learn: 9.5423437	total: 2.68s	remaining: 2.84s
97:	learn: 9.4694485	total: 2.71s	remaining: 2.82s
98:	learn: 9.3961815	total: 2.74s	remaining: 2.8s
99:	learn: 9.3398252	total: 2.77s	remaining: 2.77s
100:	learn: 9.2935490	total: 2.8s	remaining: 2.74s
101:	learn: 9.2264612	total: 2.83s	remaining: 2.71s
102:	learn: 9.1591537	total: 2.86s	remaining: 2.69s
103:	learn: 9.1096974	total: 2.88s	remaining: 2.66s
104:	learn: 9.0402122	total: 2.91s	remaining: 2.63s
105:	learn: 8.9683889	total: 2.94s	remaining: 2.6s
106:	learn: 8.9035307	total: 2.96s	remaining: 2.58s
107:	learn: 8.8402259	total: 3s	remaining: 2.56s
108:	learn: 8.7773911	total: 3.04s	remaining: 2.53s
109:	learn: 8.7025820	total: 3.06s	remaining: 2.51s
110:	learn: 8.6421216	total: 3.09s	remaining: 2.48s
111:	learn: 8.6017544	total: 3.12s	remaining: 2.45s
112:	learn: 8.5548626	total: 3.15s	remaining: 2.42s
113:	learn: 8.4992734	total: 3.17s	remaining: 2.39s
114:	learn: 8.4610970	total: 3.2s	remaining: 2.37s
115:	learn: 8.4038241	total: 3.24s	remaining: 2.34s
116:	learn: 8.3619090	total: 3.26s	remaining: 2.31s
117:	learn: 8.3076220	total: 3.3s	remaining: 2.29s
118:	learn: 8.2517766	total: 3.33s	remaining: 2.26s
119:	learn: 8.2074723	total: 3.35s	remaining: 2.23s
120:	learn: 8.1543738	total: 3.38s	remaining: 2.21s
121:	learn: 8.1040466	total: 3.4s	remaining: 2.18s
122:	learn: 8.0635009	total: 3.43s	remaining: 2.15s
123:	learn: 8.0202842	total: 3.47s	remaining: 2.12s
124:	learn: 7.9875970	total: 3.49s	remaining: 2.1s
125:	learn: 7.9325212	total: 3.53s	remaining: 2.07s
126:	learn: 7.9020290	total: 3.56s	remaining: 2.05s
127:	learn: 7.8515713	total: 3.59s	remaining: 2.02s
128:	learn: 7.8105577	total: 3.62s	remaining: 1.99s
129:	learn: 7.7794800	total: 3.65s	remaining: 1.96s
130:	learn: 7.7189049	total: 3.67s	remaining: 1.93s
131:	learn: 7.6676908	total: 3.71s	remaining: 1.91s
132:	learn: 7.6175263	total: 3.74s	remaining: 1.89s
133:	learn: 7.5756123	total: 3.77s	remaining: 1.86s
134:	learn: 7.5319541	total: 3.8s	remaining: 1.83s
135:	learn: 7.4770928	total: 3.83s	remaining: 1.8s
136:	learn: 7.4238892	total: 3.85s	remaining: 1.77s
137:	learn: 7.3904567	total: 3.88s	remaining: 1.74s
138:	learn: 7.3398209	total: 3.9s	remaining: 1.71s
139:	learn: 7.3033888	total: 3.93s	remaining: 1.69s
140:	learn: 7.2478465	total: 3.98s	remaining: 1.66s
141:	learn: 7.2063378	total: 4.01s	remaining: 1.64s
142:	learn: 7.1743925	total: 4.03s	remaining: 1.61s
143:	learn: 7.1424325	total: 4.06s	remaining: 1.58s
144:	learn: 7.1053244	total: 4.09s	remaining: 1.55s
145:	learn: 7.0697464	total: 4.12s	remaining: 1.52s
146:	learn: 7.0358400	total: 4.14s	remaining: 1.49s
147:	learn: 7.0052202	total: 4.17s	remaining: 1.47s
148:	learn: 6.9605461	total: 4.21s	remaining: 1.44s
149:	learn: 6.9296251	total: 4.24s	remaining: 1.41s
150:	learn: 6.8966440	total: 4.26s	remaining: 1.38s
151:	learn: 6.8598989	total: 4.29s	remaining: 1.35s
152:	learn: 6.8258947	total: 4.32s	remaining: 1.33s
153:	learn: 6.7746867	total: 4.34s	remaining: 1.3s
154:	learn: 6.7339621	total: 4.37s	remaining: 1.27s
155:	learn: 6.6892818	total: 4.41s	remaining: 1.24s
156:	learn: 6.6551188	total: 4.44s	remaining: 1.22s
157:	learn: 6.6101469	total: 4.47s	remaining: 1.19s
158:	learn: 6.5682910	total: 4.5s	remaining: 1.16s
159:	learn: 6.5324628	total: 4.53s	remaining: 1.13s
160:	learn: 6.4964901	total: 4.55s	remaining: 1.1s
161:	learn: 6.4574422	total: 4.58s	remaining: 1.07s
162:	learn: 6.4198366	total: 4.61s	remaining: 1.05s
163:	learn: 6.3960124	total: 4.64s	remaining: 1.02s
164:	learn: 6.3584522	total: 4.68s	remaining: 993ms
165:	learn: 6.3234969	total: 4.71s	remaining: 964ms
166:	learn: 6.2790169	total: 4.73s	remaining: 936ms
167:	learn: 6.2322601	total: 4.76s	remaining: 907ms
168:	learn: 6.2069447	total: 4.79s	remaining: 878ms
169:	learn: 6.1655187	total: 4.82s	remaining: 850ms
170:	learn: 6.1327685	total: 4.84s	remaining: 822ms
171:	learn: 6.0940435	total: 4.88s	remaining: 794ms
172:	learn: 6.0496032	total: 4.91s	remaining: 766ms
173:	learn: 6.0139582	total: 4.94s	remaining: 739ms
174:	learn: 5.9701293	total: 4.97s	remaining: 710ms
175:	learn: 5.9344034	total: 5s	remaining: 682ms
176:	learn: 5.8981198	total: 5.03s	remaining: 653ms
177:	learn: 5.8589414	total: 5.05s	remaining: 625ms
178:	learn: 5.8288766	total: 5.09s	remaining: 597ms
179:	learn: 5.7933689	total: 5.12s	remaining: 568ms
180:	learn: 5.7573047	total: 5.14s	remaining: 540ms
181:	learn: 5.7344764	total: 5.18s	remaining: 512ms
182:	learn: 5.7107730	total: 5.2s	remaining: 483ms
183:	learn: 5.6764723	total: 5.23s	remaining: 455ms
184:	learn: 5.6466489	total: 5.26s	remaining: 426ms
185:	learn: 5.6117025	total: 5.29s	remaining: 398ms
186:	learn: 5.5702695	total: 5.32s	remaining: 370ms
187:	learn: 5.5397006	total: 5.35s	remaining: 341ms
188:	learn: 5.5019375	total: 5.38s	remaining: 313ms
189:	learn: 5.4658715	total: 5.41s	remaining: 285ms
190:	learn: 5.4334513	total: 5.44s	remaining: 256ms
191:	learn: 5.4190693	total: 5.47s	remaining: 228ms
192:	learn: 5.3810480	total: 5.5s	remaining: 199ms
193:	learn: 5.3485204	total: 5.53s	remaining: 171ms
194:	learn: 5.3230681	total: 5.56s	remaining: 143ms
195:	learn: 5.2814853	total: 5.59s	remaining: 114ms
196:	learn: 5.2717381	total: 5.61s	remaining: 85.5ms
197:	learn: 5.2433576	total: 5.65s	remaining: 57ms
198:	learn: 5.2342737	total: 5.67s	remaining: 28.5ms
199:	learn: 5.1867289	total: 5.71s	remaining: 0us
0:	learn: 42.7705174	total: 28.4ms	remaining: 5.65s
1:	learn: 41.7656178	total: 54.7ms	remaining: 5.41s
2:	learn: 40.8179156	total: 82.2ms	remaining: 5.4s
3:	learn: 39.6523791	total: 89.7ms	remaining: 4.39s
4:	learn: 38.7129138	total: 116ms	remaining: 4.54s
5:	learn: 37.8422176	total: 145ms	remaining: 4.69s
6:	learn: 36.8116359	total: 188ms	remaining: 5.19s
7:	learn: 36.0052487	total: 215ms	remaining: 5.15s
8:	learn: 35.2849975	total: 242ms	remaining: 5.14s
9:	learn: 34.4756781	total: 269ms	remaining: 5.11s
10:	learn: 33.6653999	total: 295ms	remaining: 5.06s
11:	learn: 32.7620757	total: 322ms	remaining: 5.04s
12:	learn: 32.0480959	total: 351ms	remaining: 5.05s
13:	learn: 31.4172082	total: 387ms	remaining: 5.15s
14:	learn: 30.8340727	total: 415ms	remaining: 5.12s
15:	learn: 30.2683567	total: 451ms	remaining: 5.19s
16:	learn: 29.8492136	total: 480ms	remaining: 5.16s
17:	learn: 29.2125099	total: 506ms	remaining: 5.11s
18:	learn: 28.6054738	total: 533ms	remaining: 5.08s
19:	learn: 28.0640663	total: 561ms	remaining: 5.04s
20:	learn: 27.5413586	total: 594ms	remaining: 5.06s
21:	learn: 26.9873574	total: 621ms	remaining: 5.02s
22:	learn: 26.3484257	total: 648ms	remaining: 4.99s
23:	learn: 25.8429212	total: 682ms	remaining: 5s
24:	learn: 25.3750345	total: 709ms	remaining: 4.96s
25:	learn: 24.8995542	total: 737ms	remaining: 4.93s
26:	learn: 24.4763414	total: 740ms	remaining: 4.74s
27:	learn: 24.0223071	total: 767ms	remaining: 4.71s
28:	learn: 23.5490716	total: 795ms	remaining: 4.69s
29:	learn: 23.2249502	total: 834ms	remaining: 4.73s
30:	learn: 22.8048550	total: 861ms	remaining: 4.69s
31:	learn: 22.5381351	total: 889ms	remaining: 4.67s
32:	learn: 22.1317703	total: 925ms	remaining: 4.68s
33:	learn: 21.7444080	total: 953ms	remaining: 4.65s
34:	learn: 21.3990423	total: 981ms	remaining: 4.63s
35:	learn: 21.1239746	total: 1.01s	remaining: 4.6s
36:	learn: 20.8039218	total: 1.04s	remaining: 4.57s
37:	learn: 20.5044886	total: 1.07s	remaining: 4.57s
38:	learn: 20.2580104	total: 1.1s	remaining: 4.54s
39:	learn: 19.9234991	total: 1.13s	remaining: 4.5s
40:	learn: 19.6150872	total: 1.16s	remaining: 4.5s
41:	learn: 19.3387395	total: 1.19s	remaining: 4.47s
42:	learn: 19.1094717	total: 1.21s	remaining: 4.43s
43:	learn: 18.8720442	total: 1.25s	remaining: 4.42s
44:	learn: 18.5949279	total: 1.27s	remaining: 4.39s
45:	learn: 18.3092362	total: 1.3s	remaining: 4.36s
46:	learn: 18.0869723	total: 1.33s	remaining: 4.33s
47:	learn: 17.8480253	total: 1.36s	remaining: 4.29s
48:	learn: 17.6697203	total: 1.39s	remaining: 4.27s
49:	learn: 17.4805106	total: 1.42s	remaining: 4.26s
50:	learn: 17.2762453	total: 1.45s	remaining: 4.23s
51:	learn: 17.0525457	total: 1.48s	remaining: 4.22s
52:	learn: 16.8777174	total: 1.51s	remaining: 4.19s
53:	learn: 16.6928868	total: 1.54s	remaining: 4.16s
54:	learn: 16.5257601	total: 1.56s	remaining: 4.12s
55:	learn: 16.3285949	total: 1.59s	remaining: 4.09s
56:	learn: 16.1573162	total: 1.62s	remaining: 4.06s
57:	learn: 15.9898094	total: 1.65s	remaining: 4.05s
58:	learn: 15.8177173	total: 1.68s	remaining: 4.02s
59:	learn: 15.6220285	total: 1.72s	remaining: 4.01s
60:	learn: 15.4921595	total: 1.75s	remaining: 3.99s
61:	learn: 15.2259668	total: 1.78s	remaining: 3.97s
62:	learn: 15.0578599	total: 1.81s	remaining: 3.94s
63:	learn: 14.8598966	total: 1.84s	remaining: 3.91s
64:	learn: 14.7079676	total: 1.86s	remaining: 3.87s
65:	learn: 14.5262302	total: 1.9s	remaining: 3.86s
66:	learn: 14.3947423	total: 1.94s	remaining: 3.84s
67:	learn: 14.2508493	total: 1.97s	remaining: 3.81s
68:	learn: 14.1502560	total: 1.99s	remaining: 3.78s
69:	learn: 13.9997992	total: 2.02s	remaining: 3.75s
70:	learn: 13.8600785	total: 2.05s	remaining: 3.72s
71:	learn: 13.7348317	total: 2.07s	remaining: 3.69s
72:	learn: 13.6556478	total: 2.1s	remaining: 3.66s
73:	learn: 13.5217356	total: 2.14s	remaining: 3.64s
74:	learn: 13.4231392	total: 2.18s	remaining: 3.63s
75:	learn: 13.2847848	total: 2.2s	remaining: 3.6s
76:	learn: 13.1458481	total: 2.23s	remaining: 3.56s
77:	learn: 13.0475561	total: 2.26s	remaining: 3.53s
78:	learn: 12.9445908	total: 2.29s	remaining: 3.5s
79:	learn: 12.8213077	total: 2.31s	remaining: 3.47s
80:	learn: 12.7210762	total: 2.34s	remaining: 3.44s
81:	learn: 12.6320186	total: 2.37s	remaining: 3.41s
82:	learn: 12.5362788	total: 2.41s	remaining: 3.39s
83:	learn: 12.4350353	total: 2.43s	remaining: 3.36s
84:	learn: 12.3601174	total: 2.46s	remaining: 3.33s
85:	learn: 12.2940655	total: 2.49s	remaining: 3.3s
86:	learn: 12.2055695	total: 2.52s	remaining: 3.27s
87:	learn: 12.1249471	total: 2.54s	remaining: 3.23s
88:	learn: 12.0198476	total: 2.57s	remaining: 3.2s
89:	learn: 11.9560995	total: 2.6s	remaining: 3.17s
90:	learn: 11.8997810	total: 2.64s	remaining: 3.16s
91:	learn: 11.8272800	total: 2.66s	remaining: 3.13s
92:	learn: 11.7398723	total: 2.69s	remaining: 3.1s
93:	learn: 11.6996897	total: 2.72s	remaining: 3.07s
94:	learn: 11.5707058	total: 2.75s	remaining: 3.04s
95:	learn: 11.4454892	total: 2.77s	remaining: 3s
96:	learn: 11.3786021	total: 2.8s	remaining: 2.98s
97:	learn: 11.2823760	total: 2.83s	remaining: 2.94s
98:	learn: 11.1929769	total: 2.87s	remaining: 2.93s
99:	learn: 11.1117188	total: 2.9s	remaining: 2.9s
100:	learn: 11.0443487	total: 2.93s	remaining: 2.87s
101:	learn: 10.9544034	total: 2.96s	remaining: 2.84s
102:	learn: 10.8897010	total: 2.98s	remaining: 2.81s
103:	learn: 10.8066831	total: 3.01s	remaining: 2.78s
104:	learn: 10.7378345	total: 3.04s	remaining: 2.75s
105:	learn: 10.6720239	total: 3.06s	remaining: 2.72s
106:	learn: 10.6053924	total: 3.11s	remaining: 2.71s
107:	learn: 10.5352672	total: 3.14s	remaining: 2.68s
108:	learn: 10.4698192	total: 3.17s	remaining: 2.65s
109:	learn: 10.3932540	total: 3.2s	remaining: 2.62s
110:	learn: 10.3302850	total: 3.22s	remaining: 2.58s
111:	learn: 10.2386464	total: 3.25s	remaining: 2.55s
112:	learn: 10.1614263	total: 3.28s	remaining: 2.52s
113:	learn: 10.1246223	total: 3.31s	remaining: 2.5s
114:	learn: 10.0376415	total: 3.34s	remaining: 2.47s
115:	learn: 9.9533922	total: 3.38s	remaining: 2.44s
116:	learn: 9.9116832	total: 3.4s	remaining: 2.41s
117:	learn: 9.8262895	total: 3.43s	remaining: 2.38s
118:	learn: 9.7550180	total: 3.46s	remaining: 2.35s
119:	learn: 9.6335263	total: 3.48s	remaining: 2.32s
120:	learn: 9.5729126	total: 3.51s	remaining: 2.29s
121:	learn: 9.4973694	total: 3.55s	remaining: 2.27s
122:	learn: 9.4234732	total: 3.58s	remaining: 2.24s
123:	learn: 9.3688511	total: 3.62s	remaining: 2.21s
124:	learn: 9.3131658	total: 3.64s	remaining: 2.19s
125:	learn: 9.2438024	total: 3.67s	remaining: 2.16s
126:	learn: 9.1906870	total: 3.7s	remaining: 2.13s
127:	learn: 9.1517009	total: 3.73s	remaining: 2.1s
128:	learn: 9.0807473	total: 3.76s	remaining: 2.07s
129:	learn: 9.0380225	total: 3.79s	remaining: 2.04s
130:	learn: 9.0003912	total: 3.81s	remaining: 2.01s
131:	learn: 8.9192469	total: 3.85s	remaining: 1.98s
132:	learn: 8.8535215	total: 3.87s	remaining: 1.95s
133:	learn: 8.8131428	total: 3.9s	remaining: 1.92s
134:	learn: 8.7593274	total: 3.93s	remaining: 1.89s
135:	learn: 8.7015525	total: 3.97s	remaining: 1.87s
136:	learn: 8.6407713	total: 4s	remaining: 1.84s
137:	learn: 8.5518756	total: 4.03s	remaining: 1.81s
138:	learn: 8.5058763	total: 4.06s	remaining: 1.78s
139:	learn: 8.4269041	total: 4.1s	remaining: 1.76s
140:	learn: 8.3587465	total: 4.12s	remaining: 1.73s
141:	learn: 8.2765653	total: 4.16s	remaining: 1.7s
142:	learn: 8.2346336	total: 4.19s	remaining: 1.67s
143:	learn: 8.1850701	total: 4.21s	remaining: 1.64s
144:	learn: 8.1340056	total: 4.24s	remaining: 1.61s
145:	learn: 8.0755445	total: 4.27s	remaining: 1.58s
146:	learn: 8.0340646	total: 4.29s	remaining: 1.55s
147:	learn: 7.9794679	total: 4.32s	remaining: 1.52s
148:	learn: 7.9112254	total: 4.36s	remaining: 1.49s
149:	learn: 7.8581019	total: 4.39s	remaining: 1.46s
150:	learn: 7.8080015	total: 4.42s	remaining: 1.43s
151:	learn: 7.7571579	total: 4.45s	remaining: 1.4s
152:	learn: 7.6995804	total: 4.47s	remaining: 1.37s
153:	learn: 7.6356250	total: 4.5s	remaining: 1.34s
154:	learn: 7.5942229	total: 4.53s	remaining: 1.31s
155:	learn: 7.5376240	total: 4.56s	remaining: 1.28s
156:	learn: 7.4951124	total: 4.59s	remaining: 1.26s
157:	learn: 7.4552667	total: 4.62s	remaining: 1.23s
158:	learn: 7.3992394	total: 4.65s	remaining: 1.2s
159:	learn: 7.3647438	total: 4.68s	remaining: 1.17s
160:	learn: 7.3092700	total: 4.7s	remaining: 1.14s
161:	learn: 7.2770042	total: 4.73s	remaining: 1.11s
162:	learn: 7.2585241	total: 4.76s	remaining: 1.08s
163:	learn: 7.2417757	total: 4.78s	remaining: 1.05s
164:	learn: 7.1943168	total: 4.82s	remaining: 1.02s
165:	learn: 7.1744675	total: 4.85s	remaining: 994ms
166:	learn: 7.1343559	total: 4.88s	remaining: 965ms
167:	learn: 7.1028128	total: 4.91s	remaining: 935ms
168:	learn: 7.0573171	total: 4.94s	remaining: 906ms
169:	learn: 6.9993075	total: 4.96s	remaining: 876ms
170:	learn: 6.9513510	total: 4.99s	remaining: 847ms
171:	learn: 6.9058701	total: 5.02s	remaining: 817ms
172:	learn: 6.8569156	total: 5.06s	remaining: 790ms
173:	learn: 6.8113961	total: 5.09s	remaining: 760ms
174:	learn: 6.7709772	total: 5.11s	remaining: 731ms
175:	learn: 6.7315058	total: 5.14s	remaining: 701ms
176:	learn: 6.6835509	total: 5.17s	remaining: 672ms
177:	learn: 6.6493245	total: 5.2s	remaining: 642ms
178:	learn: 6.6189204	total: 5.22s	remaining: 613ms
179:	learn: 6.5819690	total: 5.26s	remaining: 584ms
180:	learn: 6.5491324	total: 5.29s	remaining: 555ms
181:	learn: 6.5086060	total: 5.32s	remaining: 526ms
182:	learn: 6.4648748	total: 5.35s	remaining: 497ms
183:	learn: 6.4368748	total: 5.38s	remaining: 468ms
184:	learn: 6.4016410	total: 5.41s	remaining: 438ms
185:	learn: 6.3655740	total: 5.43s	remaining: 409ms
186:	learn: 6.3236780	total: 5.46s	remaining: 380ms
187:	learn: 6.2898164	total: 5.5s	remaining: 351ms
188:	learn: 6.2551311	total: 5.52s	remaining: 321ms
189:	learn: 6.2414730	total: 5.56s	remaining: 293ms
190:	learn: 6.2134145	total: 5.58s	remaining: 263ms
191:	learn: 6.1510986	total: 5.61s	remaining: 234ms
192:	learn: 6.1135210	total: 5.64s	remaining: 204ms
193:	learn: 6.0698374	total: 5.67s	remaining: 175ms
194:	learn: 6.0286009	total: 5.7s	remaining: 146ms
195:	learn: 5.9974556	total: 5.73s	remaining: 117ms
196:	learn: 5.9582225	total: 5.76s	remaining: 87.7ms
197:	learn: 5.9251268	total: 5.79s	remaining: 58.5ms
198:	learn: 5.9012186	total: 5.82s	remaining: 29.3ms
199:	learn: 5.8691774	total: 5.85s	remaining: 0us
0:	learn: 46.4051117	total: 28.9ms	remaining: 5.75s
1:	learn: 45.3311808	total: 55.9ms	remaining: 5.53s
2:	learn: 44.2355531	total: 82.9ms	remaining: 5.44s
3:	learn: 43.2958733	total: 110ms	remaining: 5.38s
4:	learn: 42.3536589	total: 136ms	remaining: 5.31s
5:	learn: 41.4859961	total: 171ms	remaining: 5.53s
6:	learn: 40.5534910	total: 198ms	remaining: 5.47s
7:	learn: 39.7060893	total: 225ms	remaining: 5.39s
8:	learn: 38.8439981	total: 252ms	remaining: 5.34s
9:	learn: 38.2669414	total: 279ms	remaining: 5.3s
10:	learn: 37.6759770	total: 316ms	remaining: 5.43s
11:	learn: 36.9869277	total: 347ms	remaining: 5.43s
12:	learn: 36.3901257	total: 375ms	remaining: 5.39s
13:	learn: 35.7917302	total: 402ms	remaining: 5.34s
14:	learn: 35.2174952	total: 437ms	remaining: 5.39s
15:	learn: 34.5826754	total: 465ms	remaining: 5.34s
16:	learn: 34.0874316	total: 492ms	remaining: 5.3s
17:	learn: 33.5003568	total: 526ms	remaining: 5.32s
18:	learn: 32.7934787	total: 554ms	remaining: 5.28s
19:	learn: 31.9083319	total: 581ms	remaining: 5.23s
20:	learn: 31.2930063	total: 608ms	remaining: 5.18s
21:	learn: 30.7897560	total: 634ms	remaining: 5.13s
22:	learn: 30.1479920	total: 669ms	remaining: 5.14s
23:	learn: 29.5764365	total: 696ms	remaining: 5.1s
24:	learn: 29.0910861	total: 723ms	remaining: 5.06s
25:	learn: 28.4397299	total: 759ms	remaining: 5.08s
26:	learn: 27.8228369	total: 788ms	remaining: 5.05s
27:	learn: 27.3877661	total: 816ms	remaining: 5.01s
28:	learn: 26.9261524	total: 843ms	remaining: 4.97s
29:	learn: 26.5038338	total: 870ms	remaining: 4.93s
30:	learn: 26.2151044	total: 906ms	remaining: 4.94s
31:	learn: 25.8170458	total: 933ms	remaining: 4.9s
32:	learn: 25.4852966	total: 960ms	remaining: 4.86s
33:	learn: 25.0288024	total: 996ms	remaining: 4.86s
34:	learn: 24.6327933	total: 1.02s	remaining: 4.83s
35:	learn: 24.1334075	total: 1.05s	remaining: 4.79s
36:	learn: 23.7648659	total: 1.08s	remaining: 4.75s
37:	learn: 23.4059601	total: 1.1s	remaining: 4.71s
38:	learn: 23.0824106	total: 1.14s	remaining: 4.7s
39:	learn: 22.8059757	total: 1.17s	remaining: 4.66s
40:	learn: 22.5306226	total: 1.2s	remaining: 4.66s
41:	learn: 22.2219847	total: 1.23s	remaining: 4.63s
42:	learn: 21.8972204	total: 1.26s	remaining: 4.6s
43:	learn: 21.5236072	total: 1.29s	remaining: 4.56s
44:	learn: 21.2553689	total: 1.31s	remaining: 4.53s
45:	learn: 20.8401171	total: 1.34s	remaining: 4.49s
46:	learn: 20.5752228	total: 1.37s	remaining: 4.46s
47:	learn: 20.3528352	total: 1.41s	remaining: 4.47s
48:	learn: 20.1615025	total: 1.44s	remaining: 4.44s
49:	learn: 19.8957215	total: 1.47s	remaining: 4.4s
50:	learn: 19.6512654	total: 1.49s	remaining: 4.36s
51:	learn: 19.4334583	total: 1.52s	remaining: 4.33s
52:	learn: 19.1886760	total: 1.55s	remaining: 4.29s
53:	learn: 18.8797014	total: 1.58s	remaining: 4.26s
54:	learn: 18.6166876	total: 1.6s	remaining: 4.22s
55:	learn: 18.3791724	total: 1.64s	remaining: 4.22s
56:	learn: 18.2115659	total: 1.68s	remaining: 4.21s
57:	learn: 18.0722693	total: 1.7s	remaining: 4.17s
58:	learn: 17.8852192	total: 1.73s	remaining: 4.14s
59:	learn: 17.7272446	total: 1.76s	remaining: 4.11s
60:	learn: 17.4942483	total: 1.79s	remaining: 4.07s
61:	learn: 17.3054937	total: 1.81s	remaining: 4.04s
62:	learn: 17.1549585	total: 1.84s	remaining: 4.01s
63:	learn: 16.9975916	total: 1.88s	remaining: 4s
64:	learn: 16.8858589	total: 1.91s	remaining: 3.97s
65:	learn: 16.6701164	total: 1.94s	remaining: 3.93s
66:	learn: 16.5500620	total: 1.96s	remaining: 3.9s
67:	learn: 16.3458753	total: 1.99s	remaining: 3.86s
68:	learn: 16.1878838	total: 2.02s	remaining: 3.83s
69:	learn: 16.0305134	total: 2.05s	remaining: 3.8s
70:	learn: 15.8487627	total: 2.08s	remaining: 3.78s
71:	learn: 15.6683766	total: 2.12s	remaining: 3.77s
72:	learn: 15.5077137	total: 2.15s	remaining: 3.73s
73:	learn: 15.4103876	total: 2.17s	remaining: 3.7s
74:	learn: 15.2840688	total: 2.2s	remaining: 3.67s
75:	learn: 15.1507590	total: 2.23s	remaining: 3.64s
76:	learn: 14.9825337	total: 2.26s	remaining: 3.6s
77:	learn: 14.8044062	total: 2.28s	remaining: 3.57s
78:	learn: 14.6711374	total: 2.32s	remaining: 3.55s
79:	learn: 14.5318692	total: 2.34s	remaining: 3.52s
80:	learn: 14.4181194	total: 2.38s	remaining: 3.5s
81:	learn: 14.2559532	total: 2.4s	remaining: 3.46s
82:	learn: 14.1026042	total: 2.43s	remaining: 3.43s
83:	learn: 13.9184961	total: 2.46s	remaining: 3.4s
84:	learn: 13.7905556	total: 2.49s	remaining: 3.37s
85:	learn: 13.6755541	total: 2.52s	remaining: 3.34s
86:	learn: 13.5644560	total: 2.55s	remaining: 3.31s
87:	learn: 13.4412378	total: 2.58s	remaining: 3.28s
88:	learn: 13.3271667	total: 2.61s	remaining: 3.26s
89:	learn: 13.2634410	total: 2.64s	remaining: 3.23s
90:	learn: 13.1463553	total: 2.67s	remaining: 3.2s
91:	learn: 13.0389944	total: 2.7s	remaining: 3.17s
92:	learn: 12.9605830	total: 2.73s	remaining: 3.14s
93:	learn: 12.8819119	total: 2.76s	remaining: 3.11s
94:	learn: 12.8038551	total: 2.78s	remaining: 3.08s
95:	learn: 12.7013498	total: 2.81s	remaining: 3.04s
96:	learn: 12.6011350	total: 2.84s	remaining: 3.02s
97:	learn: 12.4949377	total: 2.87s	remaining: 2.99s
98:	learn: 12.3808699	total: 2.9s	remaining: 2.96s
99:	learn: 12.2551864	total: 2.93s	remaining: 2.93s
100:	learn: 12.1590434	total: 2.96s	remaining: 2.9s
101:	learn: 12.0701882	total: 2.99s	remaining: 2.87s
102:	learn: 11.9724049	total: 3.02s	remaining: 2.84s
103:	learn: 11.9003953	total: 3.04s	remaining: 2.81s
104:	learn: 11.8213364	total: 3.07s	remaining: 2.78s
105:	learn: 11.7342445	total: 3.11s	remaining: 2.75s
106:	learn: 11.6402394	total: 3.13s	remaining: 2.72s
107:	learn: 11.5251390	total: 3.17s	remaining: 2.7s
108:	learn: 11.4184182	total: 3.19s	remaining: 2.67s
109:	learn: 11.3344360	total: 3.22s	remaining: 2.63s
110:	learn: 11.2622852	total: 3.25s	remaining: 2.6s
111:	learn: 11.1790951	total: 3.27s	remaining: 2.57s
112:	learn: 11.0982174	total: 3.3s	remaining: 2.54s
113:	learn: 11.0028461	total: 3.34s	remaining: 2.52s
114:	learn: 10.9167653	total: 3.37s	remaining: 2.49s
115:	learn: 10.8493708	total: 3.4s	remaining: 2.46s
116:	learn: 10.7763226	total: 3.42s	remaining: 2.43s
117:	learn: 10.7057684	total: 3.45s	remaining: 2.4s
118:	learn: 10.6264693	total: 3.48s	remaining: 2.37s
119:	learn: 10.5711538	total: 3.51s	remaining: 2.34s
120:	learn: 10.4653048	total: 3.54s	remaining: 2.31s
121:	learn: 10.3852668	total: 3.58s	remaining: 2.29s
122:	learn: 10.3250160	total: 3.61s	remaining: 2.26s
123:	learn: 10.2399308	total: 3.63s	remaining: 2.23s
124:	learn: 10.1420007	total: 3.66s	remaining: 2.19s
125:	learn: 10.0732762	total: 3.69s	remaining: 2.17s
126:	learn: 9.9940788	total: 3.71s	remaining: 2.13s
127:	learn: 9.9355996	total: 3.74s	remaining: 2.1s
128:	learn: 9.8497364	total: 3.77s	remaining: 2.07s
129:	learn: 9.7895966	total: 3.81s	remaining: 2.05s
130:	learn: 9.6875558	total: 3.84s	remaining: 2.02s
131:	learn: 9.6104126	total: 3.87s	remaining: 1.99s
132:	learn: 9.5492690	total: 3.9s	remaining: 1.96s
133:	learn: 9.4721709	total: 3.92s	remaining: 1.93s
134:	learn: 9.4178189	total: 3.95s	remaining: 1.9s
135:	learn: 9.3728501	total: 3.98s	remaining: 1.87s
136:	learn: 9.3177755	total: 4s	remaining: 1.84s
137:	learn: 9.2373853	total: 4.04s	remaining: 1.81s
138:	learn: 9.1782253	total: 4.08s	remaining: 1.79s
139:	learn: 9.0990070	total: 4.1s	remaining: 1.76s
140:	learn: 9.0322138	total: 4.13s	remaining: 1.73s
141:	learn: 8.9513335	total: 4.16s	remaining: 1.7s
142:	learn: 8.9060598	total: 4.18s	remaining: 1.67s
143:	learn: 8.8583333	total: 4.21s	remaining: 1.64s
144:	learn: 8.7916062	total: 4.25s	remaining: 1.61s
145:	learn: 8.7421371	total: 4.28s	remaining: 1.58s
146:	learn: 8.6831819	total: 4.31s	remaining: 1.55s
147:	learn: 8.6357395	total: 4.34s	remaining: 1.52s
148:	learn: 8.5967062	total: 4.37s	remaining: 1.5s
149:	learn: 8.5402882	total: 4.39s	remaining: 1.46s
150:	learn: 8.5035819	total: 4.42s	remaining: 1.44s
151:	learn: 8.4428420	total: 4.46s	remaining: 1.41s
152:	learn: 8.3862981	total: 4.49s	remaining: 1.38s
153:	learn: 8.3449516	total: 4.51s	remaining: 1.35s
154:	learn: 8.2974681	total: 4.55s	remaining: 1.32s
155:	learn: 8.2445471	total: 4.57s	remaining: 1.29s
156:	learn: 8.1944830	total: 4.6s	remaining: 1.26s
157:	learn: 8.1233294	total: 4.63s	remaining: 1.23s
158:	learn: 8.0686011	total: 4.66s	remaining: 1.2s
159:	learn: 8.0017590	total: 4.69s	remaining: 1.17s
160:	learn: 7.9684685	total: 4.72s	remaining: 1.14s
161:	learn: 7.9203748	total: 4.75s	remaining: 1.11s
162:	learn: 7.8498597	total: 4.78s	remaining: 1.08s
163:	learn: 7.8013320	total: 4.81s	remaining: 1.05s
164:	learn: 7.7409599	total: 4.84s	remaining: 1.03s
165:	learn: 7.7062957	total: 4.87s	remaining: 997ms
166:	learn: 7.6445487	total: 4.9s	remaining: 969ms
167:	learn: 7.5991646	total: 4.93s	remaining: 939ms
168:	learn: 7.5571767	total: 4.96s	remaining: 909ms
169:	learn: 7.5269914	total: 4.98s	remaining: 879ms
170:	learn: 7.4754414	total: 5.01s	remaining: 850ms
171:	learn: 7.4256871	total: 5.04s	remaining: 821ms
172:	learn: 7.3831192	total: 5.08s	remaining: 793ms
173:	learn: 7.3552148	total: 5.11s	remaining: 763ms
174:	learn: 7.3096199	total: 5.13s	remaining: 734ms
175:	learn: 7.2317367	total: 5.16s	remaining: 704ms
176:	learn: 7.2010444	total: 5.19s	remaining: 675ms
177:	learn: 7.1509220	total: 5.22s	remaining: 645ms
178:	learn: 7.0958885	total: 5.25s	remaining: 616ms
179:	learn: 7.0364497	total: 5.28s	remaining: 587ms
180:	learn: 7.0019327	total: 5.32s	remaining: 558ms
181:	learn: 6.9673170	total: 5.34s	remaining: 529ms
182:	learn: 6.9126684	total: 5.37s	remaining: 499ms
183:	learn: 6.8712651	total: 5.4s	remaining: 469ms
184:	learn: 6.8295644	total: 5.42s	remaining: 440ms
185:	learn: 6.7901113	total: 5.45s	remaining: 410ms
186:	learn: 6.7460089	total: 5.48s	remaining: 381ms
187:	learn: 6.7088216	total: 5.51s	remaining: 352ms
188:	learn: 6.6627755	total: 5.55s	remaining: 323ms
189:	learn: 6.6265720	total: 5.58s	remaining: 294ms
190:	learn: 6.5856555	total: 5.61s	remaining: 264ms
191:	learn: 6.5557671	total: 5.63s	remaining: 235ms
192:	learn: 6.5162767	total: 5.66s	remaining: 205ms
193:	learn: 6.4897095	total: 5.69s	remaining: 176ms
194:	learn: 6.4501228	total: 5.72s	remaining: 147ms
195:	learn: 6.4130432	total: 5.76s	remaining: 118ms
196:	learn: 6.3785503	total: 5.79s	remaining: 88.1ms
197:	learn: 6.3359295	total: 5.81s	remaining: 58.7ms
198:	learn: 6.3074660	total: 5.84s	remaining: 29.3ms
199:	learn: 6.2771006	total: 5.87s	remaining: 0us
0:	learn: 45.9785919	total: 28ms	remaining: 5.57s
1:	learn: 44.9581939	total: 66.5ms	remaining: 6.58s
2:	learn: 43.9091127	total: 95.8ms	remaining: 6.29s
3:	learn: 42.7984962	total: 122ms	remaining: 6s
4:	learn: 41.9715841	total: 157ms	remaining: 6.13s
5:	learn: 41.2949683	total: 184ms	remaining: 5.96s
6:	learn: 40.4494730	total: 210ms	remaining: 5.79s
7:	learn: 39.6906390	total: 237ms	remaining: 5.68s
8:	learn: 38.6718680	total: 264ms	remaining: 5.59s
9:	learn: 37.9176664	total: 293ms	remaining: 5.58s
10:	learn: 36.9169551	total: 326ms	remaining: 5.6s
11:	learn: 36.1670753	total: 353ms	remaining: 5.52s
12:	learn: 35.6362382	total: 387ms	remaining: 5.56s
13:	learn: 35.0764262	total: 413ms	remaining: 5.49s
14:	learn: 34.5241023	total: 440ms	remaining: 5.43s
15:	learn: 33.9112917	total: 467ms	remaining: 5.38s
16:	learn: 33.1023896	total: 495ms	remaining: 5.32s
17:	learn: 32.5227767	total: 530ms	remaining: 5.36s
18:	learn: 31.9685385	total: 559ms	remaining: 5.32s
19:	learn: 31.4048780	total: 586ms	remaining: 5.27s
20:	learn: 30.9173286	total: 621ms	remaining: 5.29s
21:	learn: 30.4889417	total: 648ms	remaining: 5.24s
22:	learn: 29.9957742	total: 675ms	remaining: 5.2s
23:	learn: 29.5532403	total: 704ms	remaining: 5.16s
24:	learn: 29.0869023	total: 735ms	remaining: 5.14s
25:	learn: 28.7131197	total: 767ms	remaining: 5.13s
26:	learn: 28.2622970	total: 794ms	remaining: 5.09s
27:	learn: 27.7045502	total: 820ms	remaining: 5.04s
28:	learn: 27.2689985	total: 847ms	remaining: 5s
29:	learn: 26.8937625	total: 884ms	remaining: 5.01s
30:	learn: 26.4723305	total: 912ms	remaining: 4.97s
31:	learn: 26.0613360	total: 940ms	remaining: 4.93s
32:	learn: 25.7354314	total: 978ms	remaining: 4.95s
33:	learn: 25.4365901	total: 1s	remaining: 4.91s
34:	learn: 25.0579971	total: 1.03s	remaining: 4.87s
35:	learn: 24.6756006	total: 1.06s	remaining: 4.84s
36:	learn: 24.3211908	total: 1.09s	remaining: 4.8s
37:	learn: 23.8567945	total: 1.13s	remaining: 4.8s
38:	learn: 23.5856536	total: 1.16s	remaining: 4.78s
39:	learn: 23.3552361	total: 1.19s	remaining: 4.74s
40:	learn: 23.1477272	total: 1.21s	remaining: 4.71s
41:	learn: 22.8497360	total: 1.24s	remaining: 4.66s
42:	learn: 22.5809198	total: 1.26s	remaining: 4.62s
43:	learn: 22.2522495	total: 1.29s	remaining: 4.58s
44:	learn: 21.9258917	total: 1.32s	remaining: 4.54s
45:	learn: 21.6933205	total: 1.35s	remaining: 4.53s
46:	learn: 21.4423031	total: 1.39s	remaining: 4.52s
47:	learn: 21.1573471	total: 1.42s	remaining: 4.48s
48:	learn: 20.9677940	total: 1.44s	remaining: 4.45s
49:	learn: 20.7417189	total: 1.47s	remaining: 4.42s
50:	learn: 20.5010597	total: 1.5s	remaining: 4.38s
51:	learn: 20.2654074	total: 1.53s	remaining: 4.34s
52:	learn: 20.0568837	total: 1.55s	remaining: 4.31s
53:	learn: 19.8187698	total: 1.58s	remaining: 4.28s
54:	learn: 19.5549335	total: 1.62s	remaining: 4.27s
55:	learn: 19.4061951	total: 1.65s	remaining: 4.24s
56:	learn: 19.2259890	total: 1.67s	remaining: 4.2s
57:	learn: 19.0335945	total: 1.7s	remaining: 4.16s
58:	learn: 18.8545847	total: 1.73s	remaining: 4.13s
59:	learn: 18.7070231	total: 1.75s	remaining: 4.09s
60:	learn: 18.5923917	total: 1.78s	remaining: 4.06s
61:	learn: 18.4429719	total: 1.82s	remaining: 4.06s
62:	learn: 18.2825510	total: 1.86s	remaining: 4.04s
63:	learn: 18.1358848	total: 1.89s	remaining: 4.01s
64:	learn: 18.0102396	total: 1.92s	remaining: 3.98s
65:	learn: 17.7782817	total: 1.94s	remaining: 3.94s
66:	learn: 17.6293839	total: 1.97s	remaining: 3.91s
67:	learn: 17.4950966	total: 2s	remaining: 3.88s
68:	learn: 17.3213878	total: 2.03s	remaining: 3.85s
69:	learn: 17.1833201	total: 2.06s	remaining: 3.83s
70:	learn: 17.0063684	total: 2.09s	remaining: 3.81s
71:	learn: 16.8322437	total: 2.12s	remaining: 3.77s
72:	learn: 16.7058593	total: 2.15s	remaining: 3.74s
73:	learn: 16.5781086	total: 2.17s	remaining: 3.7s
74:	learn: 16.4536927	total: 2.2s	remaining: 3.67s
75:	learn: 16.3555875	total: 2.23s	remaining: 3.64s
76:	learn: 16.2112488	total: 2.27s	remaining: 3.63s
77:	learn: 16.0933871	total: 2.3s	remaining: 3.6s
78:	learn: 15.9482175	total: 2.33s	remaining: 3.56s
79:	learn: 15.8457078	total: 2.36s	remaining: 3.54s
80:	learn: 15.7756914	total: 2.39s	remaining: 3.51s
81:	learn: 15.5938239	total: 2.42s	remaining: 3.48s
82:	learn: 15.4879475	total: 2.44s	remaining: 3.44s
83:	learn: 15.3387701	total: 2.47s	remaining: 3.41s
84:	learn: 15.2647310	total: 2.5s	remaining: 3.39s
85:	learn: 15.1407574	total: 2.53s	remaining: 3.35s
86:	learn: 15.0412643	total: 2.56s	remaining: 3.32s
87:	learn: 14.9524567	total: 2.59s	remaining: 3.3s
88:	learn: 14.8463137	total: 2.62s	remaining: 3.26s
89:	learn: 14.8165046	total: 2.64s	remaining: 3.23s
90:	learn: 14.7199993	total: 2.67s	remaining: 3.2s
91:	learn: 14.5961218	total: 2.71s	remaining: 3.18s
92:	learn: 14.5344312	total: 2.74s	remaining: 3.15s
93:	learn: 14.4678730	total: 2.77s	remaining: 3.12s
94:	learn: 14.3960901	total: 2.79s	remaining: 3.09s
95:	learn: 14.3119443	total: 2.83s	remaining: 3.06s
96:	learn: 14.2240868	total: 2.86s	remaining: 3.03s
97:	learn: 14.1399837	total: 2.88s	remaining: 3s
98:	learn: 14.0533759	total: 2.92s	remaining: 2.98s
99:	learn: 13.9950351	total: 2.94s	remaining: 2.94s
100:	learn: 13.9668089	total: 2.97s	remaining: 2.91s
101:	learn: 13.8990424	total: 3s	remaining: 2.88s
102:	learn: 13.8340683	total: 3.02s	remaining: 2.85s
103:	learn: 13.7327129	total: 3.05s	remaining: 2.82s
104:	learn: 13.6486423	total: 3.09s	remaining: 2.8s
105:	learn: 13.5711702	total: 3.12s	remaining: 2.77s
106:	learn: 13.4854890	total: 3.15s	remaining: 2.74s
107:	learn: 13.4388981	total: 3.18s	remaining: 2.71s
108:	learn: 13.3841681	total: 3.21s	remaining: 2.68s
109:	learn: 13.3413203	total: 3.24s	remaining: 2.65s
110:	learn: 13.2546145	total: 3.26s	remaining: 2.62s
111:	learn: 13.1224088	total: 3.29s	remaining: 2.58s
112:	learn: 13.0483840	total: 3.33s	remaining: 2.56s
113:	learn: 12.9420766	total: 3.36s	remaining: 2.53s
114:	learn: 12.8450150	total: 3.39s	remaining: 2.5s
115:	learn: 12.7888251	total: 3.41s	remaining: 2.47s
116:	learn: 12.6799890	total: 3.44s	remaining: 2.44s
117:	learn: 12.5945228	total: 3.47s	remaining: 2.41s
118:	learn: 12.5339805	total: 3.49s	remaining: 2.38s
119:	learn: 12.4793198	total: 3.52s	remaining: 2.35s
120:	learn: 12.3781390	total: 3.56s	remaining: 2.32s
121:	learn: 12.2893424	total: 3.6s	remaining: 2.3s
122:	learn: 12.2616723	total: 3.63s	remaining: 2.27s
123:	learn: 12.1746282	total: 3.65s	remaining: 2.24s
124:	learn: 12.1196215	total: 3.68s	remaining: 2.21s
125:	learn: 12.0370415	total: 3.71s	remaining: 2.18s
126:	learn: 11.9415303	total: 3.74s	remaining: 2.15s
127:	learn: 11.8996847	total: 3.76s	remaining: 2.12s
128:	learn: 11.8076357	total: 3.8s	remaining: 2.09s
129:	learn: 11.7251501	total: 3.83s	remaining: 2.06s
130:	learn: 11.5876348	total: 3.86s	remaining: 2.03s
131:	learn: 11.5558440	total: 3.89s	remaining: 2s
132:	learn: 11.5195517	total: 3.92s	remaining: 1.97s
133:	learn: 11.4063126	total: 3.94s	remaining: 1.94s
134:	learn: 11.3308352	total: 3.97s	remaining: 1.91s
135:	learn: 11.2558622	total: 4.01s	remaining: 1.89s
136:	learn: 11.1852237	total: 4.04s	remaining: 1.86s
137:	learn: 11.1192132	total: 4.08s	remaining: 1.83s
138:	learn: 11.0556272	total: 4.11s	remaining: 1.8s
139:	learn: 10.9786475	total: 4.14s	remaining: 1.77s
140:	learn: 10.8902191	total: 4.16s	remaining: 1.74s
141:	learn: 10.7700682	total: 4.19s	remaining: 1.71s
142:	learn: 10.7124196	total: 4.23s	remaining: 1.68s
143:	learn: 10.6306072	total: 4.25s	remaining: 1.65s
144:	learn: 10.5643229	total: 4.28s	remaining: 1.62s
145:	learn: 10.5265368	total: 4.31s	remaining: 1.59s
146:	learn: 10.4558055	total: 4.34s	remaining: 1.57s
147:	learn: 10.4039694	total: 4.37s	remaining: 1.54s
148:	learn: 10.3408237	total: 4.4s	remaining: 1.5s
149:	learn: 10.2627966	total: 4.43s	remaining: 1.48s
150:	learn: 10.2002141	total: 4.46s	remaining: 1.45s
151:	learn: 10.1626210	total: 4.49s	remaining: 1.42s
152:	learn: 10.0834794	total: 4.52s	remaining: 1.39s
153:	learn: 9.9995676	total: 4.55s	remaining: 1.36s
154:	learn: 9.9436133	total: 4.58s	remaining: 1.33s
155:	learn: 9.8673146	total: 4.61s	remaining: 1.3s
156:	learn: 9.8084429	total: 4.64s	remaining: 1.27s
157:	learn: 9.7721516	total: 4.67s	remaining: 1.24s
158:	learn: 9.7203234	total: 4.7s	remaining: 1.21s
159:	learn: 9.6884849	total: 4.72s	remaining: 1.18s
160:	learn: 9.6265782	total: 4.75s	remaining: 1.15s
161:	learn: 9.5698813	total: 4.78s	remaining: 1.12s
162:	learn: 9.5196743	total: 4.81s	remaining: 1.09s
163:	learn: 9.4594680	total: 4.84s	remaining: 1.06s
164:	learn: 9.3614639	total: 4.86s	remaining: 1.03s
165:	learn: 9.3347501	total: 4.9s	remaining: 1s
166:	learn: 9.2855497	total: 4.93s	remaining: 974ms
167:	learn: 9.2245774	total: 4.96s	remaining: 944ms
168:	learn: 9.1420534	total: 4.99s	remaining: 915ms
169:	learn: 9.1004496	total: 5.01s	remaining: 885ms
170:	learn: 9.0266486	total: 5.04s	remaining: 855ms
171:	learn: 8.9919149	total: 5.08s	remaining: 827ms
172:	learn: 8.9495456	total: 5.11s	remaining: 797ms
173:	learn: 8.8972894	total: 5.14s	remaining: 768ms
174:	learn: 8.8040524	total: 5.16s	remaining: 738ms
175:	learn: 8.6901310	total: 5.19s	remaining: 708ms
176:	learn: 8.6469342	total: 5.22s	remaining: 678ms
177:	learn: 8.5999257	total: 5.24s	remaining: 648ms
178:	learn: 8.5454570	total: 5.27s	remaining: 618ms
179:	learn: 8.4374612	total: 5.31s	remaining: 590ms
180:	learn: 8.3873914	total: 5.34s	remaining: 561ms
181:	learn: 8.3287576	total: 5.37s	remaining: 531ms
182:	learn: 8.2760159	total: 5.4s	remaining: 501ms
183:	learn: 8.2249773	total: 5.42s	remaining: 472ms
184:	learn: 8.1848138	total: 5.45s	remaining: 442ms
185:	learn: 8.1305667	total: 5.48s	remaining: 412ms
186:	learn: 8.0871204	total: 5.5s	remaining: 383ms
187:	learn: 8.0585067	total: 5.54s	remaining: 354ms
188:	learn: 7.9992910	total: 5.57s	remaining: 324ms
189:	learn: 7.9679618	total: 5.6s	remaining: 295ms
190:	learn: 7.9334248	total: 5.63s	remaining: 265ms
191:	learn: 7.8768409	total: 5.65s	remaining: 236ms
192:	learn: 7.8241554	total: 5.68s	remaining: 206ms
193:	learn: 7.7761628	total: 5.71s	remaining: 176ms
194:	learn: 7.7243412	total: 5.73s	remaining: 147ms
195:	learn: 7.6744569	total: 5.76s	remaining: 118ms
196:	learn: 7.6122525	total: 5.81s	remaining: 88.4ms
197:	learn: 7.5666339	total: 5.83s	remaining: 58.9ms
198:	learn: 7.5357403	total: 5.86s	remaining: 29.5ms
199:	learn: 7.5042596	total: 5.89s	remaining: 0us
0:	learn: 46.6705057	total: 27.6ms	remaining: 5.49s
1:	learn: 45.6228942	total: 63.2ms	remaining: 6.26s
2:	learn: 44.6011857	total: 91.3ms	remaining: 5.99s
3:	learn: 43.4944730	total: 117ms	remaining: 5.73s
4:	learn: 42.7214061	total: 152ms	remaining: 5.91s
5:	learn: 41.8717386	total: 179ms	remaining: 5.79s
6:	learn: 41.0828465	total: 205ms	remaining: 5.67s
7:	learn: 40.3693162	total: 232ms	remaining: 5.57s
8:	learn: 39.5504439	total: 259ms	remaining: 5.49s
9:	learn: 38.8028188	total: 288ms	remaining: 5.47s
10:	learn: 37.8021607	total: 324ms	remaining: 5.58s
11:	learn: 37.0316047	total: 339ms	remaining: 5.31s
12:	learn: 36.4697449	total: 366ms	remaining: 5.27s
13:	learn: 35.7324928	total: 401ms	remaining: 5.32s
14:	learn: 35.0670311	total: 429ms	remaining: 5.29s
15:	learn: 34.5416158	total: 455ms	remaining: 5.23s
16:	learn: 33.8060657	total: 482ms	remaining: 5.19s
17:	learn: 33.2764048	total: 511ms	remaining: 5.16s
18:	learn: 32.7985056	total: 544ms	remaining: 5.18s
19:	learn: 32.2684820	total: 570ms	remaining: 5.13s
20:	learn: 31.7897893	total: 596ms	remaining: 5.08s
21:	learn: 31.3010339	total: 631ms	remaining: 5.1s
22:	learn: 30.8508227	total: 658ms	remaining: 5.06s
23:	learn: 30.3168654	total: 684ms	remaining: 5.02s
24:	learn: 29.8575867	total: 711ms	remaining: 4.98s
25:	learn: 29.3623615	total: 747ms	remaining: 5s
26:	learn: 28.9848451	total: 777ms	remaining: 4.98s
27:	learn: 28.6994426	total: 805ms	remaining: 4.95s
28:	learn: 28.2896051	total: 834ms	remaining: 4.92s
29:	learn: 27.8326651	total: 870ms	remaining: 4.93s
30:	learn: 27.3512730	total: 897ms	remaining: 4.89s
31:	learn: 27.0818307	total: 924ms	remaining: 4.85s
32:	learn: 26.6738197	total: 951ms	remaining: 4.82s
33:	learn: 26.3390302	total: 987ms	remaining: 4.82s
34:	learn: 25.9635842	total: 1.01s	remaining: 4.78s
35:	learn: 25.6937525	total: 1.04s	remaining: 4.74s
36:	learn: 25.3141815	total: 1.07s	remaining: 4.7s
37:	learn: 25.0097733	total: 1.09s	remaining: 4.67s
38:	learn: 24.7491704	total: 1.13s	remaining: 4.67s
39:	learn: 24.3823525	total: 1.16s	remaining: 4.65s
40:	learn: 24.3094117	total: 1.17s	remaining: 4.52s
41:	learn: 23.9596755	total: 1.2s	remaining: 4.5s
42:	learn: 23.6550442	total: 1.22s	remaining: 4.46s
43:	learn: 23.4055797	total: 1.25s	remaining: 4.43s
44:	learn: 23.2484825	total: 1.28s	remaining: 4.4s
45:	learn: 22.9509665	total: 1.3s	remaining: 4.36s
46:	learn: 22.7288116	total: 1.33s	remaining: 4.33s
47:	learn: 22.4239204	total: 1.36s	remaining: 4.32s
48:	learn: 22.2223864	total: 1.39s	remaining: 4.29s
49:	learn: 21.9306439	total: 1.42s	remaining: 4.27s
50:	learn: 21.7134680	total: 1.45s	remaining: 4.24s
51:	learn: 21.6063065	total: 1.48s	remaining: 4.2s
52:	learn: 21.2300249	total: 1.5s	remaining: 4.17s
53:	learn: 20.9961502	total: 1.53s	remaining: 4.13s
54:	learn: 20.7428171	total: 1.55s	remaining: 4.1s
55:	learn: 20.5043370	total: 1.58s	remaining: 4.07s
56:	learn: 20.3343057	total: 1.62s	remaining: 4.06s
57:	learn: 20.1503869	total: 1.65s	remaining: 4.05s
58:	learn: 19.9571627	total: 1.68s	remaining: 4.02s
59:	learn: 19.7166454	total: 1.71s	remaining: 4s
60:	learn: 19.5460796	total: 1.74s	remaining: 3.96s
61:	learn: 19.3319423	total: 1.77s	remaining: 3.94s
62:	learn: 19.1518266	total: 1.79s	remaining: 3.9s
63:	learn: 18.9801712	total: 1.82s	remaining: 3.87s
64:	learn: 18.8325481	total: 1.86s	remaining: 3.87s
65:	learn: 18.6545881	total: 1.89s	remaining: 3.84s
66:	learn: 18.4172473	total: 1.92s	remaining: 3.81s
67:	learn: 18.2145056	total: 1.94s	remaining: 3.77s
68:	learn: 18.0294470	total: 1.97s	remaining: 3.74s
69:	learn: 17.8764636	total: 2s	remaining: 3.71s
70:	learn: 17.7552517	total: 2.02s	remaining: 3.68s
71:	learn: 17.6134211	total: 2.05s	remaining: 3.65s
72:	learn: 17.4607644	total: 2.09s	remaining: 3.64s
73:	learn: 17.3425090	total: 2.13s	remaining: 3.62s
74:	learn: 17.2255418	total: 2.16s	remaining: 3.59s
75:	learn: 17.0908608	total: 2.18s	remaining: 3.56s
76:	learn: 16.9227981	total: 2.21s	remaining: 3.53s
77:	learn: 16.8243171	total: 2.24s	remaining: 3.5s
78:	learn: 16.7020719	total: 2.26s	remaining: 3.47s
79:	learn: 16.5231147	total: 2.29s	remaining: 3.44s
80:	learn: 16.3550704	total: 2.33s	remaining: 3.42s
81:	learn: 16.2531768	total: 2.36s	remaining: 3.4s
82:	learn: 16.1529156	total: 2.39s	remaining: 3.37s
83:	learn: 15.9391779	total: 2.42s	remaining: 3.33s
84:	learn: 15.8578694	total: 2.44s	remaining: 3.3s
85:	learn: 15.7783743	total: 2.47s	remaining: 3.27s
86:	learn: 15.6452604	total: 2.5s	remaining: 3.24s
87:	learn: 15.5300223	total: 2.53s	remaining: 3.22s
88:	learn: 15.4195831	total: 2.56s	remaining: 3.19s
89:	learn: 15.3071897	total: 2.6s	remaining: 3.17s
90:	learn: 15.1446058	total: 2.62s	remaining: 3.14s
91:	learn: 15.0547501	total: 2.65s	remaining: 3.11s
92:	learn: 14.9463447	total: 2.67s	remaining: 3.08s
93:	learn: 14.8747810	total: 2.7s	remaining: 3.05s
94:	learn: 14.7579258	total: 2.73s	remaining: 3.02s
95:	learn: 14.5927582	total: 2.76s	remaining: 2.99s
96:	learn: 14.4834761	total: 2.79s	remaining: 2.96s
97:	learn: 14.3683779	total: 2.82s	remaining: 2.93s
98:	learn: 14.2648032	total: 2.85s	remaining: 2.91s
99:	learn: 14.1339217	total: 2.88s	remaining: 2.88s
100:	learn: 14.0310235	total: 2.9s	remaining: 2.84s
101:	learn: 13.9879404	total: 2.93s	remaining: 2.81s
102:	learn: 13.9040350	total: 2.96s	remaining: 2.78s
103:	learn: 13.7925222	total: 3s	remaining: 2.77s
104:	learn: 13.6858242	total: 3.02s	remaining: 2.73s
105:	learn: 13.6086485	total: 3.05s	remaining: 2.71s
106:	learn: 13.4889682	total: 3.09s	remaining: 2.68s
107:	learn: 13.4306844	total: 3.12s	remaining: 2.65s
108:	learn: 13.3494423	total: 3.14s	remaining: 2.62s
109:	learn: 13.2980456	total: 3.17s	remaining: 2.59s
110:	learn: 13.2178503	total: 3.2s	remaining: 2.57s
111:	learn: 13.1206341	total: 3.23s	remaining: 2.54s
112:	learn: 13.0342536	total: 3.26s	remaining: 2.51s
113:	learn: 12.9673581	total: 3.28s	remaining: 2.48s
114:	learn: 12.9135734	total: 3.32s	remaining: 2.45s
115:	learn: 12.8196081	total: 3.35s	remaining: 2.42s
116:	learn: 12.7423806	total: 3.37s	remaining: 2.39s
117:	learn: 12.6465809	total: 3.4s	remaining: 2.36s
118:	learn: 12.5409295	total: 3.44s	remaining: 2.34s
119:	learn: 12.4767279	total: 3.47s	remaining: 2.31s
120:	learn: 12.3985254	total: 3.49s	remaining: 2.28s
121:	learn: 12.3212540	total: 3.52s	remaining: 2.25s
122:	learn: 12.2156139	total: 3.55s	remaining: 2.22s
123:	learn: 12.1479467	total: 3.58s	remaining: 2.2s
124:	learn: 12.0688168	total: 3.61s	remaining: 2.17s
125:	learn: 11.9864853	total: 3.64s	remaining: 2.14s
126:	learn: 11.8820716	total: 3.67s	remaining: 2.11s
127:	learn: 11.8059716	total: 3.7s	remaining: 2.08s
128:	learn: 11.7348830	total: 3.73s	remaining: 2.05s
129:	learn: 11.6193507	total: 3.75s	remaining: 2.02s
130:	learn: 11.5318657	total: 3.78s	remaining: 1.99s
131:	learn: 11.4432593	total: 3.81s	remaining: 1.97s
132:	learn: 11.3634921	total: 3.84s	remaining: 1.94s
133:	learn: 11.2572496	total: 3.88s	remaining: 1.91s
134:	learn: 11.1739063	total: 3.91s	remaining: 1.88s
135:	learn: 11.0896076	total: 3.94s	remaining: 1.85s
136:	learn: 10.9977136	total: 3.96s	remaining: 1.82s
137:	learn: 10.9178772	total: 3.99s	remaining: 1.79s
138:	learn: 10.8341868	total: 4.02s	remaining: 1.76s
139:	learn: 10.7709446	total: 4.05s	remaining: 1.73s
140:	learn: 10.7143619	total: 4.08s	remaining: 1.71s
141:	learn: 10.6467044	total: 4.11s	remaining: 1.68s
142:	learn: 10.5672440	total: 4.14s	remaining: 1.65s
143:	learn: 10.5263954	total: 4.17s	remaining: 1.62s
144:	learn: 10.4421936	total: 4.19s	remaining: 1.59s
145:	learn: 10.3788524	total: 4.22s	remaining: 1.56s
146:	learn: 10.3330662	total: 4.25s	remaining: 1.53s
147:	learn: 10.2703985	total: 4.27s	remaining: 1.5s
148:	learn: 10.2306029	total: 4.31s	remaining: 1.48s
149:	learn: 10.1640453	total: 4.35s	remaining: 1.45s
150:	learn: 10.1074372	total: 4.38s	remaining: 1.42s
151:	learn: 10.0083802	total: 4.4s	remaining: 1.39s
152:	learn: 9.9286493	total: 4.43s	remaining: 1.36s
153:	learn: 9.8439094	total: 4.46s	remaining: 1.33s
154:	learn: 9.7935130	total: 4.48s	remaining: 1.3s
155:	learn: 9.7063100	total: 4.51s	remaining: 1.27s
156:	learn: 9.6212511	total: 4.55s	remaining: 1.25s
157:	learn: 9.5539536	total: 4.58s	remaining: 1.22s
158:	learn: 9.5111986	total: 4.61s	remaining: 1.19s
159:	learn: 9.4514714	total: 4.63s	remaining: 1.16s
160:	learn: 9.3984668	total: 4.66s	remaining: 1.13s
161:	learn: 9.3014614	total: 4.69s	remaining: 1.1s
162:	learn: 9.2612077	total: 4.71s	remaining: 1.07s
163:	learn: 9.1913405	total: 4.75s	remaining: 1.04s
164:	learn: 9.0985411	total: 4.78s	remaining: 1.01s
165:	learn: 8.9848588	total: 4.82s	remaining: 986ms
166:	learn: 8.9405060	total: 4.84s	remaining: 957ms
167:	learn: 8.8613581	total: 4.87s	remaining: 927ms
168:	learn: 8.8162054	total: 4.89s	remaining: 898ms
169:	learn: 8.7045984	total: 4.92s	remaining: 868ms
170:	learn: 8.6428434	total: 4.95s	remaining: 839ms
171:	learn: 8.5947772	total: 4.98s	remaining: 811ms
172:	learn: 8.5378565	total: 5.01s	remaining: 782ms
173:	learn: 8.4802817	total: 5.04s	remaining: 754ms
174:	learn: 8.4303521	total: 5.07s	remaining: 725ms
175:	learn: 8.3791829	total: 5.1s	remaining: 695ms
176:	learn: 8.3284224	total: 5.12s	remaining: 666ms
177:	learn: 8.2772660	total: 5.15s	remaining: 637ms
178:	learn: 8.2166103	total: 5.19s	remaining: 608ms
179:	learn: 8.1793476	total: 5.22s	remaining: 580ms
180:	learn: 8.1310868	total: 5.24s	remaining: 551ms
181:	learn: 8.0778463	total: 5.28s	remaining: 522ms
182:	learn: 7.9947801	total: 5.31s	remaining: 493ms
183:	learn: 7.9560354	total: 5.33s	remaining: 464ms
184:	learn: 7.9272267	total: 5.36s	remaining: 435ms
185:	learn: 7.8835530	total: 5.39s	remaining: 405ms
186:	learn: 7.8117290	total: 5.42s	remaining: 377ms
187:	learn: 7.7803523	total: 5.45s	remaining: 348ms
188:	learn: 7.7232848	total: 5.48s	remaining: 319ms
189:	learn: 7.6676567	total: 5.5s	remaining: 290ms
190:	learn: 7.6309823	total: 5.54s	remaining: 261ms
191:	learn: 7.5951129	total: 5.56s	remaining: 232ms
192:	learn: 7.5293860	total: 5.59s	remaining: 203ms
193:	learn: 7.4823609	total: 5.62s	remaining: 174ms
194:	learn: 7.4313754	total: 5.65s	remaining: 145ms
195:	learn: 7.3714501	total: 5.68s	remaining: 116ms
196:	learn: 7.3219917	total: 5.71s	remaining: 86.9ms
197:	learn: 7.2822511	total: 5.74s	remaining: 57.9ms
198:	learn: 7.2376111	total: 5.77s	remaining: 29ms
199:	learn: 7.2259164	total: 5.8s	remaining: 0us
0:	learn: 27.3441720	total: 24.7ms	remaining: 2.44s
1:	learn: 26.7159954	total: 47.5ms	remaining: 2.33s
2:	learn: 26.0850318	total: 71.3ms	remaining: 2.31s
3:	learn: 25.4039656	total: 94.2ms	remaining: 2.26s
4:	learn: 24.7930659	total: 117ms	remaining: 2.22s
5:	learn: 24.2028590	total: 142ms	remaining: 2.22s
6:	learn: 23.6622902	total: 164ms	remaining: 2.19s
7:	learn: 23.1531175	total: 187ms	remaining: 2.15s
8:	learn: 22.7050792	total: 217ms	remaining: 2.2s
9:	learn: 22.2151788	total: 239ms	remaining: 2.15s
10:	learn: 21.7708844	total: 262ms	remaining: 2.12s
11:	learn: 21.2587174	total: 288ms	remaining: 2.11s
12:	learn: 20.7559870	total: 317ms	remaining: 2.12s
13:	learn: 20.3040842	total: 347ms	remaining: 2.13s
14:	learn: 19.9019524	total: 371ms	remaining: 2.1s
15:	learn: 19.5186012	total: 396ms	remaining: 2.08s
16:	learn: 19.1521621	total: 421ms	remaining: 2.05s
17:	learn: 18.7652180	total: 453ms	remaining: 2.06s
18:	learn: 18.4446446	total: 478ms	remaining: 2.04s
19:	learn: 18.0977650	total: 506ms	remaining: 2.02s
20:	learn: 17.7791328	total: 536ms	remaining: 2.02s
21:	learn: 17.4777648	total: 560ms	remaining: 1.99s
22:	learn: 17.1794361	total: 584ms	remaining: 1.96s
23:	learn: 16.8685032	total: 608ms	remaining: 1.92s
24:	learn: 16.6274695	total: 629ms	remaining: 1.89s
25:	learn: 16.3071099	total: 652ms	remaining: 1.86s
26:	learn: 16.0249663	total: 677ms	remaining: 1.83s
27:	learn: 15.7535309	total: 709ms	remaining: 1.82s
28:	learn: 15.4777235	total: 744ms	remaining: 1.82s
29:	learn: 15.2410825	total: 771ms	remaining: 1.8s
30:	learn: 15.0133002	total: 796ms	remaining: 1.77s
31:	learn: 14.8018912	total: 821ms	remaining: 1.74s
32:	learn: 14.5701546	total: 847ms	remaining: 1.72s
33:	learn: 14.3799060	total: 870ms	remaining: 1.69s
34:	learn: 14.0975095	total: 895ms	remaining: 1.66s
35:	learn: 13.8873493	total: 920ms	remaining: 1.63s
36:	learn: 13.6812023	total: 946ms	remaining: 1.61s
37:	learn: 13.4943017	total: 984ms	remaining: 1.6s
38:	learn: 13.3224094	total: 1.01s	remaining: 1.57s
39:	learn: 13.0967901	total: 1.03s	remaining: 1.54s
40:	learn: 12.9138190	total: 1.05s	remaining: 1.51s
41:	learn: 12.7764458	total: 1.08s	remaining: 1.49s
42:	learn: 12.6593656	total: 1.1s	remaining: 1.46s
43:	learn: 12.5051105	total: 1.12s	remaining: 1.43s
44:	learn: 12.3057146	total: 1.15s	remaining: 1.41s
45:	learn: 12.1487674	total: 1.18s	remaining: 1.38s
46:	learn: 11.9614903	total: 1.2s	remaining: 1.36s
47:	learn: 11.7921265	total: 1.24s	remaining: 1.34s
48:	learn: 11.6572640	total: 1.26s	remaining: 1.31s
49:	learn: 11.5251463	total: 1.29s	remaining: 1.29s
50:	learn: 11.3789931	total: 1.31s	remaining: 1.26s
51:	learn: 11.2691375	total: 1.33s	remaining: 1.23s
52:	learn: 11.1161131	total: 1.35s	remaining: 1.2s
53:	learn: 11.0246399	total: 1.38s	remaining: 1.17s
54:	learn: 10.9152420	total: 1.41s	remaining: 1.15s
55:	learn: 10.7746769	total: 1.43s	remaining: 1.13s
56:	learn: 10.6222917	total: 1.47s	remaining: 1.1s
57:	learn: 10.5096115	total: 1.49s	remaining: 1.08s
58:	learn: 10.3857030	total: 1.51s	remaining: 1.05s
59:	learn: 10.2789057	total: 1.54s	remaining: 1.02s
60:	learn: 10.1490749	total: 1.56s	remaining: 998ms
61:	learn: 10.0553291	total: 1.58s	remaining: 972ms
62:	learn: 9.9351043	total: 1.62s	remaining: 952ms
63:	learn: 9.8245261	total: 1.65s	remaining: 926ms
64:	learn: 9.7207577	total: 1.67s	remaining: 901ms
65:	learn: 9.5920661	total: 1.7s	remaining: 874ms
66:	learn: 9.4832767	total: 1.73s	remaining: 852ms
67:	learn: 9.3724149	total: 1.75s	remaining: 824ms
68:	learn: 9.2459801	total: 1.78s	remaining: 798ms
69:	learn: 9.1740635	total: 1.8s	remaining: 772ms
70:	learn: 9.1015730	total: 1.83s	remaining: 747ms
71:	learn: 9.0196460	total: 1.85s	remaining: 721ms
72:	learn: 8.9458977	total: 1.88s	remaining: 695ms
73:	learn: 8.8434400	total: 1.9s	remaining: 669ms
74:	learn: 8.7495151	total: 1.93s	remaining: 643ms
75:	learn: 8.6521348	total: 1.95s	remaining: 616ms
76:	learn: 8.5654483	total: 1.98s	remaining: 593ms
77:	learn: 8.4965765	total: 2.01s	remaining: 566ms
78:	learn: 8.4308736	total: 2.04s	remaining: 543ms
79:	learn: 8.3675601	total: 2.07s	remaining: 517ms
80:	learn: 8.3193887	total: 2.09s	remaining: 491ms
81:	learn: 8.2507990	total: 2.12s	remaining: 465ms
82:	learn: 8.1583259	total: 2.14s	remaining: 439ms
83:	learn: 8.0995902	total: 2.17s	remaining: 413ms
84:	learn: 8.0236655	total: 2.19s	remaining: 387ms
85:	learn: 7.9634698	total: 2.22s	remaining: 361ms
86:	learn: 7.9109081	total: 2.25s	remaining: 337ms
87:	learn: 7.8385006	total: 2.28s	remaining: 311ms
88:	learn: 7.7859488	total: 2.3s	remaining: 285ms
89:	learn: 7.7270142	total: 2.33s	remaining: 259ms
90:	learn: 7.6774253	total: 2.35s	remaining: 232ms
91:	learn: 7.6126552	total: 2.37s	remaining: 206ms
92:	learn: 7.5392178	total: 2.4s	remaining: 180ms
93:	learn: 7.4745082	total: 2.42s	remaining: 154ms
94:	learn: 7.4106939	total: 2.44s	remaining: 129ms
95:	learn: 7.3573350	total: 2.48s	remaining: 103ms
96:	learn: 7.2889777	total: 2.51s	remaining: 77.6ms
97:	learn: 7.2204939	total: 2.54s	remaining: 51.8ms
98:	learn: 7.1646465	total: 2.56s	remaining: 25.9ms
99:	learn: 7.1204610	total: 2.58s	remaining: 0us
0:	learn: 42.5494645	total: 23.7ms	remaining: 2.34s
1:	learn: 41.2913513	total: 51.4ms	remaining: 2.52s
2:	learn: 40.1676527	total: 79.4ms	remaining: 2.57s
3:	learn: 38.7664819	total: 102ms	remaining: 2.45s
4:	learn: 37.5407492	total: 126ms	remaining: 2.39s
5:	learn: 36.4295331	total: 155ms	remaining: 2.43s
6:	learn: 35.2895967	total: 179ms	remaining: 2.38s
7:	learn: 34.1884539	total: 202ms	remaining: 2.33s
8:	learn: 33.1817690	total: 224ms	remaining: 2.27s
9:	learn: 32.3518195	total: 248ms	remaining: 2.23s
10:	learn: 31.4837515	total: 273ms	remaining: 2.21s
11:	learn: 30.7255972	total: 308ms	remaining: 2.26s
12:	learn: 29.9298648	total: 336ms	remaining: 2.25s
13:	learn: 29.0574249	total: 360ms	remaining: 2.21s
14:	learn: 28.4097384	total: 385ms	remaining: 2.18s
15:	learn: 27.5317445	total: 418ms	remaining: 2.19s
16:	learn: 26.7911946	total: 442ms	remaining: 2.16s
17:	learn: 26.1103465	total: 470ms	remaining: 2.14s
18:	learn: 25.5295903	total: 498ms	remaining: 2.12s
19:	learn: 24.8544960	total: 524ms	remaining: 2.1s
20:	learn: 24.2772682	total: 547ms	remaining: 2.06s
21:	learn: 23.6936944	total: 571ms	remaining: 2.02s
22:	learn: 23.1300945	total: 594ms	remaining: 1.99s
23:	learn: 22.5333494	total: 618ms	remaining: 1.96s
24:	learn: 22.0553465	total: 641ms	remaining: 1.92s
25:	learn: 21.6253628	total: 672ms	remaining: 1.91s
26:	learn: 21.1396219	total: 696ms	remaining: 1.88s
27:	learn: 20.7382905	total: 728ms	remaining: 1.87s
28:	learn: 20.3233915	total: 756ms	remaining: 1.85s
29:	learn: 19.9323992	total: 781ms	remaining: 1.82s
30:	learn: 19.5650439	total: 807ms	remaining: 1.79s
31:	learn: 19.2165649	total: 833ms	remaining: 1.77s
32:	learn: 18.8890056	total: 855ms	remaining: 1.74s
33:	learn: 18.5523762	total: 877ms	remaining: 1.7s
34:	learn: 18.2666116	total: 901ms	remaining: 1.67s
35:	learn: 17.9216926	total: 935ms	remaining: 1.66s
36:	learn: 17.6118879	total: 965ms	remaining: 1.64s
37:	learn: 17.2653313	total: 990ms	remaining: 1.61s
38:	learn: 16.9946585	total: 1.01s	remaining: 1.58s
39:	learn: 16.6842506	total: 1.04s	remaining: 1.55s
40:	learn: 16.4102287	total: 1.06s	remaining: 1.53s
41:	learn: 16.2288795	total: 1.08s	remaining: 1.5s
42:	learn: 15.9623692	total: 1.11s	remaining: 1.47s
43:	learn: 15.7308231	total: 1.13s	remaining: 1.44s
44:	learn: 15.4695555	total: 1.18s	remaining: 1.44s
45:	learn: 15.2706809	total: 1.2s	remaining: 1.41s
46:	learn: 15.0182699	total: 1.22s	remaining: 1.38s
47:	learn: 14.7702088	total: 1.25s	remaining: 1.35s
48:	learn: 14.6303566	total: 1.27s	remaining: 1.33s
49:	learn: 14.4038016	total: 1.3s	remaining: 1.3s
50:	learn: 14.2309807	total: 1.32s	remaining: 1.27s
51:	learn: 14.0308425	total: 1.35s	remaining: 1.24s
52:	learn: 13.8201931	total: 1.38s	remaining: 1.22s
53:	learn: 13.6070078	total: 1.4s	remaining: 1.19s
54:	learn: 13.4230690	total: 1.43s	remaining: 1.17s
55:	learn: 13.2368649	total: 1.46s	remaining: 1.14s
56:	learn: 13.0449556	total: 1.48s	remaining: 1.12s
57:	learn: 12.8375669	total: 1.5s	remaining: 1.09s
58:	learn: 12.6795194	total: 1.53s	remaining: 1.06s
59:	learn: 12.5197211	total: 1.55s	remaining: 1.03s
60:	learn: 12.4011717	total: 1.59s	remaining: 1.01s
61:	learn: 12.2396104	total: 1.61s	remaining: 989ms
62:	learn: 12.0647878	total: 1.64s	remaining: 962ms
63:	learn: 11.9247719	total: 1.66s	remaining: 935ms
64:	learn: 11.7923634	total: 1.7s	remaining: 913ms
65:	learn: 11.6628246	total: 1.72s	remaining: 885ms
66:	learn: 11.5688935	total: 1.74s	remaining: 859ms
67:	learn: 11.4345056	total: 1.77s	remaining: 833ms
68:	learn: 11.3136955	total: 1.8s	remaining: 807ms
69:	learn: 11.2040357	total: 1.82s	remaining: 781ms
70:	learn: 11.1067773	total: 1.84s	remaining: 753ms
71:	learn: 10.9728105	total: 1.87s	remaining: 726ms
72:	learn: 10.8338607	total: 1.89s	remaining: 700ms
73:	learn: 10.7202016	total: 1.91s	remaining: 673ms
74:	learn: 10.5983746	total: 1.95s	remaining: 649ms
75:	learn: 10.4882458	total: 1.97s	remaining: 623ms
76:	learn: 10.3827604	total: 2.01s	remaining: 599ms
77:	learn: 10.2485726	total: 2.03s	remaining: 573ms
78:	learn: 10.1524716	total: 2.06s	remaining: 547ms
79:	learn: 10.0765127	total: 2.08s	remaining: 521ms
80:	learn: 9.9617067	total: 2.11s	remaining: 495ms
81:	learn: 9.8357151	total: 2.13s	remaining: 468ms
82:	learn: 9.7311644	total: 2.15s	remaining: 442ms
83:	learn: 9.6314802	total: 2.19s	remaining: 417ms
84:	learn: 9.5137958	total: 2.22s	remaining: 391ms
85:	learn: 9.4420485	total: 2.25s	remaining: 366ms
86:	learn: 9.3959294	total: 2.27s	remaining: 339ms
87:	learn: 9.3057742	total: 2.29s	remaining: 312ms
88:	learn: 9.2031484	total: 2.31s	remaining: 286ms
89:	learn: 9.0996948	total: 2.34s	remaining: 260ms
90:	learn: 9.0492278	total: 2.36s	remaining: 233ms
91:	learn: 8.9400377	total: 2.38s	remaining: 207ms
92:	learn: 8.8904458	total: 2.41s	remaining: 181ms
93:	learn: 8.8102982	total: 2.44s	remaining: 156ms
94:	learn: 8.7445451	total: 2.47s	remaining: 130ms
95:	learn: 8.6796106	total: 2.5s	remaining: 104ms
96:	learn: 8.5875790	total: 2.52s	remaining: 78ms
97:	learn: 8.5086871	total: 2.55s	remaining: 52ms
98:	learn: 8.4547244	total: 2.57s	remaining: 26ms
99:	learn: 8.3841281	total: 2.59s	remaining: 0us
0:	learn: 46.2258117	total: 3.82ms	remaining: 378ms
1:	learn: 45.1253456	total: 31.9ms	remaining: 1.56s
2:	learn: 43.7311767	total: 56.1ms	remaining: 1.81s
3:	learn: 42.4252819	total: 77.7ms	remaining: 1.86s
4:	learn: 41.1436655	total: 109ms	remaining: 2.07s
5:	learn: 40.0337136	total: 131ms	remaining: 2.05s
6:	learn: 38.9102686	total: 154ms	remaining: 2.05s
7:	learn: 37.7859737	total: 178ms	remaining: 2.04s
8:	learn: 36.7646905	total: 202ms	remaining: 2.04s
9:	learn: 35.9495481	total: 228ms	remaining: 2.05s
10:	learn: 35.0558185	total: 262ms	remaining: 2.12s
11:	learn: 34.1958090	total: 288ms	remaining: 2.11s
12:	learn: 33.3514013	total: 313ms	remaining: 2.09s
13:	learn: 32.3317086	total: 338ms	remaining: 2.07s
14:	learn: 31.5611046	total: 372ms	remaining: 2.11s
15:	learn: 30.6373573	total: 396ms	remaining: 2.08s
16:	learn: 29.8883669	total: 421ms	remaining: 2.05s
17:	learn: 29.2985952	total: 447ms	remaining: 2.04s
18:	learn: 28.6360550	total: 477ms	remaining: 2.04s
19:	learn: 27.9757056	total: 501ms	remaining: 2s
20:	learn: 27.2585835	total: 525ms	remaining: 1.98s
21:	learn: 26.6366391	total: 549ms	remaining: 1.95s
22:	learn: 26.1055455	total: 573ms	remaining: 1.92s
23:	learn: 25.4961568	total: 597ms	remaining: 1.89s
24:	learn: 25.1037435	total: 627ms	remaining: 1.88s
25:	learn: 24.5258982	total: 652ms	remaining: 1.86s
26:	learn: 23.9974764	total: 679ms	remaining: 1.83s
27:	learn: 23.5108419	total: 710ms	remaining: 1.82s
28:	learn: 23.0835773	total: 736ms	remaining: 1.8s
29:	learn: 22.5744350	total: 761ms	remaining: 1.77s
30:	learn: 22.1357783	total: 785ms	remaining: 1.75s
31:	learn: 21.7316226	total: 810ms	remaining: 1.72s
32:	learn: 21.4082899	total: 835ms	remaining: 1.7s
33:	learn: 20.9640138	total: 869ms	remaining: 1.69s
34:	learn: 20.6379417	total: 894ms	remaining: 1.66s
35:	learn: 20.2688010	total: 924ms	remaining: 1.64s
36:	learn: 19.8479214	total: 949ms	remaining: 1.61s
37:	learn: 19.5684638	total: 973ms	remaining: 1.59s
38:	learn: 19.1826919	total: 997ms	remaining: 1.56s
39:	learn: 18.9583308	total: 1.02s	remaining: 1.53s
40:	learn: 18.6736002	total: 1.04s	remaining: 1.5s
41:	learn: 18.3525328	total: 1.07s	remaining: 1.48s
42:	learn: 17.9954191	total: 1.09s	remaining: 1.45s
43:	learn: 17.6991520	total: 1.14s	remaining: 1.44s
44:	learn: 17.3697888	total: 1.16s	remaining: 1.42s
45:	learn: 17.0519636	total: 1.18s	remaining: 1.39s
46:	learn: 16.7829795	total: 1.21s	remaining: 1.36s
47:	learn: 16.5108695	total: 1.23s	remaining: 1.34s
48:	learn: 16.2366816	total: 1.26s	remaining: 1.31s
49:	learn: 15.9947350	total: 1.28s	remaining: 1.28s
50:	learn: 15.7513561	total: 1.31s	remaining: 1.25s
51:	learn: 15.4328481	total: 1.34s	remaining: 1.23s
52:	learn: 15.2497907	total: 1.36s	remaining: 1.21s
53:	learn: 15.0417076	total: 1.39s	remaining: 1.19s
54:	learn: 14.8861891	total: 1.42s	remaining: 1.16s
55:	learn: 14.6497794	total: 1.44s	remaining: 1.13s
56:	learn: 14.3664771	total: 1.46s	remaining: 1.1s
57:	learn: 14.2358168	total: 1.49s	remaining: 1.08s
58:	learn: 14.0712722	total: 1.51s	remaining: 1.05s
59:	learn: 13.9191649	total: 1.54s	remaining: 1.03s
60:	learn: 13.7032356	total: 1.57s	remaining: 1s
61:	learn: 13.5029041	total: 1.59s	remaining: 978ms
62:	learn: 13.3568908	total: 1.62s	remaining: 951ms
63:	learn: 13.1332696	total: 1.65s	remaining: 930ms
64:	learn: 13.0323137	total: 1.68s	remaining: 903ms
65:	learn: 12.8622078	total: 1.7s	remaining: 876ms
66:	learn: 12.7088186	total: 1.73s	remaining: 853ms
67:	learn: 12.5524646	total: 1.76s	remaining: 828ms
68:	learn: 12.4646011	total: 1.78s	remaining: 801ms
69:	learn: 12.3900687	total: 1.8s	remaining: 774ms
70:	learn: 12.2908367	total: 1.83s	remaining: 747ms
71:	learn: 12.1294405	total: 1.85s	remaining: 721ms
72:	learn: 12.0359996	total: 1.88s	remaining: 697ms
73:	learn: 11.9244352	total: 1.91s	remaining: 670ms
74:	learn: 11.8312038	total: 1.93s	remaining: 644ms
75:	learn: 11.6622123	total: 1.96s	remaining: 618ms
76:	learn: 11.5959180	total: 1.99s	remaining: 593ms
77:	learn: 11.4538852	total: 2.01s	remaining: 568ms
78:	learn: 11.3700375	total: 2.04s	remaining: 542ms
79:	learn: 11.2101447	total: 2.06s	remaining: 516ms
80:	learn: 11.0614634	total: 2.09s	remaining: 490ms
81:	learn: 10.9029225	total: 2.11s	remaining: 464ms
82:	learn: 10.7792030	total: 2.15s	remaining: 439ms
83:	learn: 10.6279451	total: 2.17s	remaining: 414ms
84:	learn: 10.5530267	total: 2.2s	remaining: 388ms
85:	learn: 10.4577150	total: 2.23s	remaining: 362ms
86:	learn: 10.4076417	total: 2.25s	remaining: 336ms
87:	learn: 10.3166632	total: 2.27s	remaining: 310ms
88:	learn: 10.2018151	total: 2.3s	remaining: 284ms
89:	learn: 10.0698484	total: 2.32s	remaining: 258ms
90:	learn: 10.0162824	total: 2.34s	remaining: 232ms
91:	learn: 9.9352639	total: 2.36s	remaining: 206ms
92:	learn: 9.8316734	total: 2.4s	remaining: 180ms
93:	learn: 9.7195471	total: 2.43s	remaining: 155ms
94:	learn: 9.5914894	total: 2.46s	remaining: 129ms
95:	learn: 9.5151851	total: 2.48s	remaining: 103ms
96:	learn: 9.3911314	total: 2.51s	remaining: 77.6ms
97:	learn: 9.3417706	total: 2.53s	remaining: 51.7ms
98:	learn: 9.2708440	total: 2.56s	remaining: 25.8ms
99:	learn: 9.1660321	total: 2.58s	remaining: 0us
0:	learn: 45.8627255	total: 2.88ms	remaining: 285ms
1:	learn: 44.7432040	total: 28.3ms	remaining: 1.39s
2:	learn: 43.4398568	total: 50.2ms	remaining: 1.62s
3:	learn: 42.1495515	total: 79.3ms	remaining: 1.9s
4:	learn: 40.9712633	total: 103ms	remaining: 1.95s
5:	learn: 40.0119591	total: 126ms	remaining: 1.97s
6:	learn: 39.1914360	total: 148ms	remaining: 1.96s
7:	learn: 38.1861536	total: 171ms	remaining: 1.96s
8:	learn: 37.1477128	total: 195ms	remaining: 1.98s
9:	learn: 36.3044702	total: 224ms	remaining: 2.01s
10:	learn: 35.5837917	total: 257ms	remaining: 2.08s
11:	learn: 34.8664158	total: 282ms	remaining: 2.07s
12:	learn: 33.9129833	total: 307ms	remaining: 2.05s
13:	learn: 32.9094642	total: 341ms	remaining: 2.1s
14:	learn: 32.1965787	total: 366ms	remaining: 2.07s
15:	learn: 31.4598238	total: 392ms	remaining: 2.06s
16:	learn: 30.6578027	total: 417ms	remaining: 2.04s
17:	learn: 30.0227468	total: 447ms	remaining: 2.04s
18:	learn: 29.2954728	total: 473ms	remaining: 2.02s
19:	learn: 28.5928084	total: 495ms	remaining: 1.98s
20:	learn: 27.9445984	total: 519ms	remaining: 1.95s
21:	learn: 27.3493298	total: 541ms	remaining: 1.92s
22:	learn: 26.8491966	total: 564ms	remaining: 1.89s
23:	learn: 26.3177453	total: 595ms	remaining: 1.88s
24:	learn: 25.8134533	total: 619ms	remaining: 1.85s
25:	learn: 25.2000018	total: 644ms	remaining: 1.83s
26:	learn: 24.6570461	total: 678ms	remaining: 1.83s
27:	learn: 24.1062982	total: 704ms	remaining: 1.81s
28:	learn: 23.7489370	total: 728ms	remaining: 1.78s
29:	learn: 23.2050536	total: 753ms	remaining: 1.76s
30:	learn: 22.7824379	total: 778ms	remaining: 1.73s
31:	learn: 22.4052655	total: 803ms	remaining: 1.71s
32:	learn: 21.9525639	total: 826ms	remaining: 1.68s
33:	learn: 21.5482900	total: 860ms	remaining: 1.67s
34:	learn: 21.1900983	total: 889ms	remaining: 1.65s
35:	learn: 20.8243957	total: 914ms	remaining: 1.63s
36:	learn: 20.4401288	total: 937ms	remaining: 1.59s
37:	learn: 20.0960622	total: 961ms	remaining: 1.57s
38:	learn: 19.7795108	total: 985ms	remaining: 1.54s
39:	learn: 19.4922451	total: 1.01s	remaining: 1.51s
40:	learn: 19.1827582	total: 1.03s	remaining: 1.49s
41:	learn: 18.8902445	total: 1.06s	remaining: 1.47s
42:	learn: 18.6833086	total: 1.09s	remaining: 1.44s
43:	learn: 18.4251972	total: 1.12s	remaining: 1.43s
44:	learn: 18.1471037	total: 1.15s	remaining: 1.4s
45:	learn: 17.8420017	total: 1.17s	remaining: 1.38s
46:	learn: 17.6101998	total: 1.2s	remaining: 1.35s
47:	learn: 17.3353656	total: 1.22s	remaining: 1.32s
48:	learn: 17.1194789	total: 1.25s	remaining: 1.3s
49:	learn: 16.8898454	total: 1.27s	remaining: 1.27s
50:	learn: 16.6657497	total: 1.29s	remaining: 1.24s
51:	learn: 16.3832867	total: 1.32s	remaining: 1.22s
52:	learn: 16.2098226	total: 1.36s	remaining: 1.2s
53:	learn: 16.0045707	total: 1.38s	remaining: 1.18s
54:	learn: 15.8512887	total: 1.4s	remaining: 1.15s
55:	learn: 15.6485628	total: 1.43s	remaining: 1.12s
56:	learn: 15.4841428	total: 1.45s	remaining: 1.09s
57:	learn: 15.3383158	total: 1.47s	remaining: 1.07s
58:	learn: 15.2056282	total: 1.5s	remaining: 1.04s
59:	learn: 15.0698337	total: 1.52s	remaining: 1.01s
60:	learn: 14.8487796	total: 1.56s	remaining: 995ms
61:	learn: 14.7255751	total: 1.58s	remaining: 969ms
62:	learn: 14.6100414	total: 1.61s	remaining: 948ms
63:	learn: 14.3864212	total: 1.64s	remaining: 921ms
64:	learn: 14.2800460	total: 1.66s	remaining: 896ms
65:	learn: 14.1017299	total: 1.69s	remaining: 870ms
66:	learn: 13.9655015	total: 1.71s	remaining: 843ms
67:	learn: 13.8065764	total: 1.74s	remaining: 817ms
68:	learn: 13.7473285	total: 1.76s	remaining: 793ms
69:	learn: 13.6967309	total: 1.79s	remaining: 766ms
70:	learn: 13.6253255	total: 1.81s	remaining: 740ms
71:	learn: 13.4974926	total: 1.83s	remaining: 712ms
72:	learn: 13.4142694	total: 1.86s	remaining: 688ms
73:	learn: 13.2902600	total: 1.88s	remaining: 662ms
74:	learn: 13.1816461	total: 1.91s	remaining: 636ms
75:	learn: 13.0809498	total: 1.93s	remaining: 611ms
76:	learn: 12.9772285	total: 1.96s	remaining: 587ms
77:	learn: 12.8413858	total: 1.99s	remaining: 563ms
78:	learn: 12.7615799	total: 2.02s	remaining: 537ms
79:	learn: 12.5808659	total: 2.04s	remaining: 511ms
80:	learn: 12.4938330	total: 2.07s	remaining: 485ms
81:	learn: 12.3745576	total: 2.09s	remaining: 459ms
82:	learn: 12.2474104	total: 2.12s	remaining: 435ms
83:	learn: 12.1582297	total: 2.15s	remaining: 409ms
84:	learn: 12.0528081	total: 2.17s	remaining: 384ms
85:	learn: 11.9483355	total: 2.21s	remaining: 360ms
86:	learn: 11.8683204	total: 2.24s	remaining: 334ms
87:	learn: 11.7680945	total: 2.26s	remaining: 308ms
88:	learn: 11.6635447	total: 2.28s	remaining: 282ms
89:	learn: 11.5775031	total: 2.31s	remaining: 256ms
90:	learn: 11.4860538	total: 2.33s	remaining: 230ms
91:	learn: 11.3584960	total: 2.35s	remaining: 205ms
92:	learn: 11.2180285	total: 2.38s	remaining: 180ms
93:	learn: 11.0996558	total: 2.42s	remaining: 154ms
94:	learn: 10.9688832	total: 2.44s	remaining: 128ms
95:	learn: 10.9205457	total: 2.46s	remaining: 103ms
96:	learn: 10.8462783	total: 2.49s	remaining: 77ms
97:	learn: 10.7481890	total: 2.52s	remaining: 51.3ms
98:	learn: 10.6396315	total: 2.54s	remaining: 25.6ms
99:	learn: 10.5895308	total: 2.56s	remaining: 0us
0:	learn: 46.2892189	total: 23.4ms	remaining: 2.31s
1:	learn: 44.9732744	total: 45.3ms	remaining: 2.22s
2:	learn: 43.8887345	total: 76.3ms	remaining: 2.46s
3:	learn: 42.6526320	total: 99.8ms	remaining: 2.39s
4:	learn: 41.4812505	total: 123ms	remaining: 2.33s
5:	learn: 40.4431224	total: 146ms	remaining: 2.29s
6:	learn: 39.2936749	total: 170ms	remaining: 2.26s
7:	learn: 38.1961652	total: 194ms	remaining: 2.23s
8:	learn: 37.2194841	total: 229ms	remaining: 2.31s
9:	learn: 36.2518666	total: 254ms	remaining: 2.29s
10:	learn: 35.4919224	total: 278ms	remaining: 2.25s
11:	learn: 34.6975877	total: 304ms	remaining: 2.23s
12:	learn: 33.7869362	total: 337ms	remaining: 2.25s
13:	learn: 33.0646033	total: 361ms	remaining: 2.22s
14:	learn: 32.1821772	total: 385ms	remaining: 2.18s
15:	learn: 31.4340749	total: 416ms	remaining: 2.19s
16:	learn: 30.6504198	total: 442ms	remaining: 2.16s
17:	learn: 30.0090260	total: 465ms	remaining: 2.12s
18:	learn: 29.4233143	total: 489ms	remaining: 2.08s
19:	learn: 28.7661957	total: 512ms	remaining: 2.05s
20:	learn: 28.1570594	total: 535ms	remaining: 2.01s
21:	learn: 27.6140124	total: 559ms	remaining: 1.98s
22:	learn: 27.0130709	total: 591ms	remaining: 1.98s
23:	learn: 26.2648081	total: 614ms	remaining: 1.95s
24:	learn: 25.7963649	total: 644ms	remaining: 1.93s
25:	learn: 25.2713860	total: 672ms	remaining: 1.91s
26:	learn: 24.8080692	total: 695ms	remaining: 1.88s
27:	learn: 24.3042862	total: 720ms	remaining: 1.85s
28:	learn: 23.9097237	total: 744ms	remaining: 1.82s
29:	learn: 23.4953174	total: 769ms	remaining: 1.79s
30:	learn: 23.0484452	total: 793ms	remaining: 1.76s
31:	learn: 22.7100962	total: 816ms	remaining: 1.73s
32:	learn: 22.1662267	total: 846ms	remaining: 1.72s
33:	learn: 21.7339884	total: 876ms	remaining: 1.7s
34:	learn: 21.3699422	total: 902ms	remaining: 1.68s
35:	learn: 21.0249329	total: 926ms	remaining: 1.65s
36:	learn: 20.6187923	total: 948ms	remaining: 1.61s
37:	learn: 20.2401981	total: 970ms	remaining: 1.58s
38:	learn: 19.9712328	total: 992ms	remaining: 1.55s
39:	learn: 19.6429610	total: 1.01s	remaining: 1.52s
40:	learn: 19.3281556	total: 1.04s	remaining: 1.49s
41:	learn: 19.0925924	total: 1.06s	remaining: 1.47s
42:	learn: 18.8118712	total: 1.1s	remaining: 1.46s
43:	learn: 18.5355748	total: 1.13s	remaining: 1.43s
44:	learn: 18.2783929	total: 1.15s	remaining: 1.41s
45:	learn: 17.9915490	total: 1.18s	remaining: 1.38s
46:	learn: 17.7323317	total: 1.2s	remaining: 1.35s
47:	learn: 17.4448307	total: 1.23s	remaining: 1.33s
48:	learn: 17.2419782	total: 1.25s	remaining: 1.3s
49:	learn: 16.9351352	total: 1.27s	remaining: 1.27s
50:	learn: 16.7728723	total: 1.3s	remaining: 1.25s
51:	learn: 16.5718087	total: 1.33s	remaining: 1.23s
52:	learn: 16.4047483	total: 1.36s	remaining: 1.21s
53:	learn: 16.2888950	total: 1.38s	remaining: 1.18s
54:	learn: 16.1353042	total: 1.41s	remaining: 1.15s
55:	learn: 15.9384012	total: 1.43s	remaining: 1.12s
56:	learn: 15.7488511	total: 1.46s	remaining: 1.1s
57:	learn: 15.5682846	total: 1.48s	remaining: 1.07s
58:	learn: 15.3488716	total: 1.5s	remaining: 1.04s
59:	learn: 15.2291272	total: 1.54s	remaining: 1.03s
60:	learn: 15.0582519	total: 1.57s	remaining: 1s
61:	learn: 14.8478458	total: 1.59s	remaining: 978ms
62:	learn: 14.6663416	total: 1.63s	remaining: 956ms
63:	learn: 14.4830825	total: 1.65s	remaining: 929ms
64:	learn: 14.3300895	total: 1.68s	remaining: 902ms
65:	learn: 14.1168590	total: 1.7s	remaining: 875ms
66:	learn: 13.9783298	total: 1.72s	remaining: 848ms
67:	learn: 13.8132857	total: 1.75s	remaining: 822ms
68:	learn: 13.7050863	total: 1.78s	remaining: 799ms
69:	learn: 13.5742501	total: 1.8s	remaining: 772ms
70:	learn: 13.4851362	total: 1.82s	remaining: 745ms
71:	learn: 13.3300610	total: 1.85s	remaining: 719ms
72:	learn: 13.2223060	total: 1.88s	remaining: 695ms
73:	learn: 13.0706731	total: 1.9s	remaining: 668ms
74:	learn: 12.9178099	total: 1.92s	remaining: 641ms
75:	learn: 12.7954645	total: 1.95s	remaining: 615ms
76:	learn: 12.7133688	total: 1.97s	remaining: 589ms
77:	learn: 12.5745537	total: 2s	remaining: 565ms
78:	learn: 12.4765302	total: 2.03s	remaining: 540ms
79:	learn: 12.3609145	total: 2.05s	remaining: 514ms
80:	learn: 12.2437759	total: 2.08s	remaining: 488ms
81:	learn: 12.1583763	total: 2.1s	remaining: 462ms
82:	learn: 12.0202500	total: 2.13s	remaining: 437ms
83:	learn: 11.9125166	total: 2.16s	remaining: 411ms
84:	learn: 11.8100729	total: 2.19s	remaining: 387ms
85:	learn: 11.7509521	total: 2.22s	remaining: 361ms
86:	learn: 11.6448436	total: 2.24s	remaining: 335ms
87:	learn: 11.5550170	total: 2.26s	remaining: 309ms
88:	learn: 11.4624708	total: 2.29s	remaining: 283ms
89:	learn: 11.3547761	total: 2.31s	remaining: 257ms
90:	learn: 11.2513910	total: 2.33s	remaining: 231ms
91:	learn: 11.1414483	total: 2.36s	remaining: 205ms
92:	learn: 11.0742264	total: 2.39s	remaining: 180ms
93:	learn: 10.9721772	total: 2.42s	remaining: 155ms
94:	learn: 10.9118054	total: 2.45s	remaining: 129ms
95:	learn: 10.8465290	total: 2.47s	remaining: 103ms
96:	learn: 10.7451745	total: 2.5s	remaining: 77.2ms
97:	learn: 10.6173565	total: 2.52s	remaining: 51.5ms
98:	learn: 10.5562158	total: 2.54s	remaining: 25.7ms
99:	learn: 10.4564960	total: 2.57s	remaining: 0us
0:	learn: 27.5267205	total: 32.4ms	remaining: 6.45s
1:	learn: 27.0297320	total: 64.7ms	remaining: 6.4s
2:	learn: 26.5510417	total: 91.6ms	remaining: 6.02s
3:	learn: 26.1221185	total: 99.4ms	remaining: 4.87s
4:	learn: 25.6690036	total: 126ms	remaining: 4.92s
5:	learn: 25.2709759	total: 152ms	remaining: 4.91s
6:	learn: 24.8033327	total: 179ms	remaining: 4.94s
7:	learn: 24.4258966	total: 206ms	remaining: 4.95s
8:	learn: 24.0351254	total: 243ms	remaining: 5.16s
9:	learn: 23.6271871	total: 271ms	remaining: 5.15s
10:	learn: 23.1709164	total: 308ms	remaining: 5.28s
11:	learn: 22.8341448	total: 336ms	remaining: 5.26s
12:	learn: 22.5508255	total: 362ms	remaining: 5.21s
13:	learn: 22.1650870	total: 389ms	remaining: 5.16s
14:	learn: 21.8409545	total: 415ms	remaining: 5.12s
15:	learn: 21.5838916	total: 442ms	remaining: 5.09s
16:	learn: 21.2570767	total: 477ms	remaining: 5.13s
17:	learn: 20.9351602	total: 505ms	remaining: 5.1s
18:	learn: 20.6431553	total: 532ms	remaining: 5.06s
19:	learn: 20.3451843	total: 566ms	remaining: 5.09s
20:	learn: 20.0903893	total: 593ms	remaining: 5.05s
21:	learn: 19.7708525	total: 620ms	remaining: 5.01s
22:	learn: 19.5129016	total: 647ms	remaining: 4.98s
23:	learn: 19.2789838	total: 675ms	remaining: 4.95s
24:	learn: 19.0285247	total: 710ms	remaining: 4.97s
25:	learn: 18.7740774	total: 739ms	remaining: 4.95s
26:	learn: 18.4131270	total: 766ms	remaining: 4.91s
27:	learn: 18.1935928	total: 802ms	remaining: 4.93s
28:	learn: 17.9185293	total: 830ms	remaining: 4.89s
29:	learn: 17.6818825	total: 857ms	remaining: 4.85s
30:	learn: 17.4551687	total: 884ms	remaining: 4.82s
31:	learn: 17.2687322	total: 912ms	remaining: 4.79s
32:	learn: 17.0648633	total: 955ms	remaining: 4.83s
33:	learn: 16.8298981	total: 982ms	remaining: 4.79s
34:	learn: 16.6371395	total: 1.01s	remaining: 4.76s
35:	learn: 16.4706695	total: 1.04s	remaining: 4.76s
36:	learn: 16.2417258	total: 1.07s	remaining: 4.72s
37:	learn: 16.0550250	total: 1.1s	remaining: 4.68s
38:	learn: 15.8743430	total: 1.12s	remaining: 4.64s
39:	learn: 15.7086215	total: 1.15s	remaining: 4.61s
40:	learn: 15.5349794	total: 1.19s	remaining: 4.61s
41:	learn: 15.3661561	total: 1.22s	remaining: 4.58s
42:	learn: 15.1953294	total: 1.24s	remaining: 4.54s
43:	learn: 15.0239038	total: 1.28s	remaining: 4.54s
44:	learn: 14.8773748	total: 1.31s	remaining: 4.5s
45:	learn: 14.6611861	total: 1.33s	remaining: 4.47s
46:	learn: 14.5252257	total: 1.36s	remaining: 4.43s
47:	learn: 14.3792699	total: 1.4s	remaining: 4.42s
48:	learn: 14.2511628	total: 1.42s	remaining: 4.39s
49:	learn: 14.1345616	total: 1.45s	remaining: 4.35s
50:	learn: 13.9884078	total: 1.48s	remaining: 4.32s
51:	learn: 13.8664210	total: 1.5s	remaining: 4.28s
52:	learn: 13.7317425	total: 1.54s	remaining: 4.27s
53:	learn: 13.6052633	total: 1.57s	remaining: 4.25s
54:	learn: 13.4989783	total: 1.6s	remaining: 4.22s
55:	learn: 13.3711614	total: 1.63s	remaining: 4.19s
56:	learn: 13.2500078	total: 1.66s	remaining: 4.16s
57:	learn: 13.1495677	total: 1.69s	remaining: 4.13s
58:	learn: 13.0270356	total: 1.71s	remaining: 4.1s
59:	learn: 12.9010466	total: 1.74s	remaining: 4.06s
60:	learn: 12.7690116	total: 1.78s	remaining: 4.05s
61:	learn: 12.6721291	total: 1.8s	remaining: 4.01s
62:	learn: 12.5556250	total: 1.84s	remaining: 4s
63:	learn: 12.4465816	total: 1.86s	remaining: 3.96s
64:	learn: 12.3321066	total: 1.89s	remaining: 3.93s
65:	learn: 12.2170303	total: 1.92s	remaining: 3.89s
66:	learn: 12.1113674	total: 1.95s	remaining: 3.86s
67:	learn: 12.0224784	total: 1.97s	remaining: 3.83s
68:	learn: 11.9394297	total: 2.01s	remaining: 3.81s
69:	learn: 11.8303621	total: 2.03s	remaining: 3.78s
70:	learn: 11.7377540	total: 2.07s	remaining: 3.75s
71:	learn: 11.6367962	total: 2.1s	remaining: 3.73s
72:	learn: 11.5501496	total: 2.13s	remaining: 3.7s
73:	learn: 11.4493525	total: 2.15s	remaining: 3.67s
74:	learn: 11.3454123	total: 2.18s	remaining: 3.64s
75:	learn: 11.2512257	total: 2.21s	remaining: 3.61s
76:	learn: 11.1778585	total: 2.25s	remaining: 3.59s
77:	learn: 11.1109993	total: 2.28s	remaining: 3.56s
78:	learn: 11.0176987	total: 2.31s	remaining: 3.54s
79:	learn: 10.9457927	total: 2.33s	remaining: 3.5s
80:	learn: 10.8639363	total: 2.36s	remaining: 3.47s
81:	learn: 10.7872782	total: 2.39s	remaining: 3.44s
82:	learn: 10.6570129	total: 2.42s	remaining: 3.4s
83:	learn: 10.5760595	total: 2.44s	remaining: 3.37s
84:	learn: 10.4763853	total: 2.47s	remaining: 3.34s
85:	learn: 10.3931190	total: 2.5s	remaining: 3.32s
86:	learn: 10.3021565	total: 2.54s	remaining: 3.3s
87:	learn: 10.2202312	total: 2.57s	remaining: 3.27s
88:	learn: 10.1376195	total: 2.6s	remaining: 3.24s
89:	learn: 10.0481135	total: 2.62s	remaining: 3.21s
90:	learn: 9.9436402	total: 2.65s	remaining: 3.17s
91:	learn: 9.8883469	total: 2.68s	remaining: 3.15s
92:	learn: 9.8391453	total: 2.71s	remaining: 3.11s
93:	learn: 9.7559058	total: 2.74s	remaining: 3.1s
94:	learn: 9.7036404	total: 2.78s	remaining: 3.07s
95:	learn: 9.6339700	total: 2.8s	remaining: 3.04s
96:	learn: 9.5423437	total: 2.83s	remaining: 3s
97:	learn: 9.4694485	total: 2.86s	remaining: 2.97s
98:	learn: 9.3961815	total: 2.88s	remaining: 2.94s
99:	learn: 9.3398252	total: 2.91s	remaining: 2.91s
100:	learn: 9.2935490	total: 2.94s	remaining: 2.88s
101:	learn: 9.2264612	total: 2.97s	remaining: 2.85s
102:	learn: 9.1591537	total: 3.01s	remaining: 2.83s
103:	learn: 9.1096974	total: 3.04s	remaining: 2.8s
104:	learn: 9.0402122	total: 3.07s	remaining: 2.77s
105:	learn: 8.9683889	total: 3.1s	remaining: 2.75s
106:	learn: 8.9035307	total: 3.12s	remaining: 2.71s
107:	learn: 8.8402259	total: 3.15s	remaining: 2.68s
108:	learn: 8.7773911	total: 3.18s	remaining: 2.65s
109:	learn: 8.7025820	total: 3.21s	remaining: 2.63s
110:	learn: 8.6421216	total: 3.25s	remaining: 2.6s
111:	learn: 8.6017544	total: 3.27s	remaining: 2.57s
112:	learn: 8.5548626	total: 3.3s	remaining: 2.54s
113:	learn: 8.4992734	total: 3.33s	remaining: 2.51s
114:	learn: 8.4610970	total: 3.35s	remaining: 2.48s
115:	learn: 8.4038241	total: 3.38s	remaining: 2.45s
116:	learn: 8.3619090	total: 3.41s	remaining: 2.42s
117:	learn: 8.3076220	total: 3.46s	remaining: 2.4s
118:	learn: 8.2517766	total: 3.48s	remaining: 2.37s
119:	learn: 8.2074723	total: 3.51s	remaining: 2.34s
120:	learn: 8.1543738	total: 3.54s	remaining: 2.31s
121:	learn: 8.1040466	total: 3.56s	remaining: 2.28s
122:	learn: 8.0635009	total: 3.59s	remaining: 2.25s
123:	learn: 8.0202842	total: 3.62s	remaining: 2.22s
124:	learn: 7.9875970	total: 3.65s	remaining: 2.19s
125:	learn: 7.9325212	total: 3.68s	remaining: 2.16s
126:	learn: 7.9020290	total: 3.71s	remaining: 2.13s
127:	learn: 7.8515713	total: 3.74s	remaining: 2.1s
128:	learn: 7.8105577	total: 3.77s	remaining: 2.07s
129:	learn: 7.7794800	total: 3.79s	remaining: 2.04s
130:	learn: 7.7189049	total: 3.83s	remaining: 2.02s
131:	learn: 7.6676908	total: 3.86s	remaining: 1.99s
132:	learn: 7.6175263	total: 3.88s	remaining: 1.96s
133:	learn: 7.5756123	total: 3.91s	remaining: 1.93s
134:	learn: 7.5319541	total: 3.95s	remaining: 1.9s
135:	learn: 7.4770928	total: 3.98s	remaining: 1.87s
136:	learn: 7.4238892	total: 4s	remaining: 1.84s
137:	learn: 7.3904567	total: 4.03s	remaining: 1.81s
138:	learn: 7.3398209	total: 4.06s	remaining: 1.78s
139:	learn: 7.3033888	total: 4.1s	remaining: 1.76s
140:	learn: 7.2478465	total: 4.13s	remaining: 1.73s
141:	learn: 7.2063378	total: 4.15s	remaining: 1.7s
142:	learn: 7.1743925	total: 4.19s	remaining: 1.67s
143:	learn: 7.1424325	total: 4.21s	remaining: 1.64s
144:	learn: 7.1053244	total: 4.24s	remaining: 1.61s
145:	learn: 7.0697464	total: 4.27s	remaining: 1.58s
146:	learn: 7.0358400	total: 4.3s	remaining: 1.55s
147:	learn: 7.0052202	total: 4.33s	remaining: 1.52s
148:	learn: 6.9605461	total: 4.36s	remaining: 1.49s
149:	learn: 6.9296251	total: 4.39s	remaining: 1.46s
150:	learn: 6.8966440	total: 4.42s	remaining: 1.44s
151:	learn: 6.8598989	total: 4.45s	remaining: 1.41s
152:	learn: 6.8258947	total: 4.48s	remaining: 1.38s
153:	learn: 6.7746867	total: 4.5s	remaining: 1.34s
154:	learn: 6.7339621	total: 4.54s	remaining: 1.32s
155:	learn: 6.6892818	total: 4.57s	remaining: 1.29s
156:	learn: 6.6551188	total: 4.59s	remaining: 1.26s
157:	learn: 6.6101469	total: 4.62s	remaining: 1.23s
158:	learn: 6.5682910	total: 4.64s	remaining: 1.2s
159:	learn: 6.5324628	total: 4.68s	remaining: 1.17s
160:	learn: 6.4964901	total: 4.71s	remaining: 1.14s
161:	learn: 6.4574422	total: 4.73s	remaining: 1.11s
162:	learn: 6.4198366	total: 4.77s	remaining: 1.08s
163:	learn: 6.3960124	total: 4.8s	remaining: 1.05s
164:	learn: 6.3584522	total: 4.83s	remaining: 1.02s
165:	learn: 6.3234969	total: 4.85s	remaining: 994ms
166:	learn: 6.2790169	total: 4.88s	remaining: 964ms
167:	learn: 6.2322601	total: 4.92s	remaining: 936ms
168:	learn: 6.2069447	total: 4.94s	remaining: 907ms
169:	learn: 6.1655187	total: 4.97s	remaining: 877ms
170:	learn: 6.1327685	total: 5s	remaining: 849ms
171:	learn: 6.0940435	total: 5.03s	remaining: 819ms
172:	learn: 6.0496032	total: 5.06s	remaining: 790ms
173:	learn: 6.0139582	total: 5.09s	remaining: 760ms
174:	learn: 5.9701293	total: 5.11s	remaining: 731ms
175:	learn: 5.9344034	total: 5.15s	remaining: 702ms
176:	learn: 5.8981198	total: 5.18s	remaining: 673ms
177:	learn: 5.8589414	total: 5.2s	remaining: 643ms
178:	learn: 5.8288766	total: 5.24s	remaining: 615ms
179:	learn: 5.7933689	total: 5.27s	remaining: 586ms
180:	learn: 5.7573047	total: 5.3s	remaining: 556ms
181:	learn: 5.7344764	total: 5.33s	remaining: 527ms
182:	learn: 5.7107730	total: 5.35s	remaining: 497ms
183:	learn: 5.6764723	total: 5.39s	remaining: 469ms
184:	learn: 5.6466489	total: 5.42s	remaining: 439ms
185:	learn: 5.6117025	total: 5.45s	remaining: 410ms
186:	learn: 5.5702695	total: 5.48s	remaining: 381ms
187:	learn: 5.5397006	total: 5.51s	remaining: 351ms
188:	learn: 5.5019375	total: 5.53s	remaining: 322ms
189:	learn: 5.4658715	total: 5.56s	remaining: 293ms
190:	learn: 5.4334513	total: 5.59s	remaining: 263ms
191:	learn: 5.4190693	total: 5.61s	remaining: 234ms
192:	learn: 5.3810480	total: 5.66s	remaining: 205ms
193:	learn: 5.3485204	total: 5.68s	remaining: 176ms
194:	learn: 5.3230681	total: 5.71s	remaining: 146ms
195:	learn: 5.2814853	total: 5.74s	remaining: 117ms
196:	learn: 5.2717381	total: 5.76s	remaining: 87.8ms
197:	learn: 5.2433576	total: 5.79s	remaining: 58.5ms
198:	learn: 5.2342737	total: 5.82s	remaining: 29.2ms
199:	learn: 5.1867289	total: 5.85s	remaining: 0us
0:	learn: 42.7705174	total: 34.7ms	remaining: 6.91s
1:	learn: 41.7656178	total: 60.9ms	remaining: 6.03s
2:	learn: 40.8179156	total: 87.2ms	remaining: 5.73s
3:	learn: 39.6523791	total: 94.5ms	remaining: 4.63s
4:	learn: 38.7129138	total: 121ms	remaining: 4.72s
5:	learn: 37.8422176	total: 148ms	remaining: 4.79s
6:	learn: 36.8116359	total: 186ms	remaining: 5.12s
7:	learn: 36.0052487	total: 216ms	remaining: 5.18s
8:	learn: 35.2849975	total: 244ms	remaining: 5.17s
9:	learn: 34.4756781	total: 279ms	remaining: 5.3s
10:	learn: 33.6653999	total: 307ms	remaining: 5.28s
11:	learn: 32.7620757	total: 334ms	remaining: 5.23s
12:	learn: 32.0480959	total: 362ms	remaining: 5.2s
13:	learn: 31.4172082	total: 392ms	remaining: 5.21s
14:	learn: 30.8340727	total: 425ms	remaining: 5.25s
15:	learn: 30.2683567	total: 452ms	remaining: 5.2s
16:	learn: 29.8492136	total: 479ms	remaining: 5.16s
17:	learn: 29.2125099	total: 512ms	remaining: 5.18s
18:	learn: 28.6054738	total: 539ms	remaining: 5.14s
19:	learn: 28.0640663	total: 567ms	remaining: 5.1s
20:	learn: 27.5413586	total: 595ms	remaining: 5.07s
21:	learn: 26.9873574	total: 631ms	remaining: 5.1s
22:	learn: 26.3484257	total: 661ms	remaining: 5.08s
23:	learn: 25.8429212	total: 688ms	remaining: 5.05s
24:	learn: 25.3750345	total: 715ms	remaining: 5.01s
25:	learn: 24.8995542	total: 743ms	remaining: 4.97s
26:	learn: 24.4763414	total: 746ms	remaining: 4.78s
27:	learn: 24.0223071	total: 780ms	remaining: 4.79s
28:	learn: 23.5490716	total: 807ms	remaining: 4.75s
29:	learn: 23.2249502	total: 834ms	remaining: 4.73s
30:	learn: 22.8048550	total: 867ms	remaining: 4.73s
31:	learn: 22.5381351	total: 896ms	remaining: 4.7s
32:	learn: 22.1317703	total: 923ms	remaining: 4.67s
33:	learn: 21.7444080	total: 950ms	remaining: 4.64s
34:	learn: 21.3990423	total: 978ms	remaining: 4.61s
35:	learn: 21.1239746	total: 1.01s	remaining: 4.62s
36:	learn: 20.8039218	total: 1.04s	remaining: 4.6s
37:	learn: 20.5044886	total: 1.08s	remaining: 4.61s
38:	learn: 20.2580104	total: 1.11s	remaining: 4.58s
39:	learn: 19.9234991	total: 1.14s	remaining: 4.55s
40:	learn: 19.6150872	total: 1.17s	remaining: 4.52s
41:	learn: 19.3387395	total: 1.19s	remaining: 4.49s
42:	learn: 19.1094717	total: 1.22s	remaining: 4.45s
43:	learn: 18.8720442	total: 1.25s	remaining: 4.45s
44:	learn: 18.5949279	total: 1.28s	remaining: 4.42s
45:	learn: 18.3092362	total: 1.32s	remaining: 4.41s
46:	learn: 18.0869723	total: 1.34s	remaining: 4.38s
47:	learn: 17.8480253	total: 1.37s	remaining: 4.34s
48:	learn: 17.6697203	total: 1.4s	remaining: 4.31s
49:	learn: 17.4805106	total: 1.42s	remaining: 4.27s
50:	learn: 17.2762453	total: 1.45s	remaining: 4.24s
51:	learn: 17.0525457	total: 1.48s	remaining: 4.22s
52:	learn: 16.8777174	total: 1.51s	remaining: 4.19s
53:	learn: 16.6928868	total: 1.55s	remaining: 4.19s
54:	learn: 16.5257601	total: 1.58s	remaining: 4.16s
55:	learn: 16.3285949	total: 1.61s	remaining: 4.13s
56:	learn: 16.1573162	total: 1.63s	remaining: 4.1s
57:	learn: 15.9898094	total: 1.66s	remaining: 4.07s
58:	learn: 15.8177173	total: 1.69s	remaining: 4.04s
59:	learn: 15.6220285	total: 1.72s	remaining: 4.02s
60:	learn: 15.4921595	total: 1.76s	remaining: 4.01s
61:	learn: 15.2259668	total: 1.79s	remaining: 3.98s
62:	learn: 15.0578599	total: 1.81s	remaining: 3.95s
63:	learn: 14.8598966	total: 1.84s	remaining: 3.92s
64:	learn: 14.7079676	total: 1.87s	remaining: 3.88s
65:	learn: 14.5262302	total: 1.9s	remaining: 3.85s
66:	learn: 14.3947423	total: 1.92s	remaining: 3.82s
67:	learn: 14.2508493	total: 1.95s	remaining: 3.79s
68:	learn: 14.1502560	total: 2s	remaining: 3.79s
69:	learn: 13.9997992	total: 2.03s	remaining: 3.77s
70:	learn: 13.8600785	total: 2.06s	remaining: 3.73s
71:	learn: 13.7348317	total: 2.08s	remaining: 3.7s
72:	learn: 13.6556478	total: 2.11s	remaining: 3.67s
73:	learn: 13.5217356	total: 2.14s	remaining: 3.64s
74:	learn: 13.4231392	total: 2.16s	remaining: 3.6s
75:	learn: 13.2847848	total: 2.19s	remaining: 3.57s
76:	learn: 13.1458481	total: 2.23s	remaining: 3.57s
77:	learn: 13.0475561	total: 2.26s	remaining: 3.54s
78:	learn: 12.9445908	total: 2.29s	remaining: 3.5s
79:	learn: 12.8213077	total: 2.31s	remaining: 3.47s
80:	learn: 12.7210762	total: 2.34s	remaining: 3.44s
81:	learn: 12.6320186	total: 2.37s	remaining: 3.41s
82:	learn: 12.5362788	total: 2.4s	remaining: 3.38s
83:	learn: 12.4350353	total: 2.43s	remaining: 3.36s
84:	learn: 12.3601174	total: 2.47s	remaining: 3.34s
85:	learn: 12.2940655	total: 2.5s	remaining: 3.31s
86:	learn: 12.2055695	total: 2.52s	remaining: 3.28s
87:	learn: 12.1249471	total: 2.55s	remaining: 3.25s
88:	learn: 12.0198476	total: 2.58s	remaining: 3.21s
89:	learn: 11.9560995	total: 2.6s	remaining: 3.18s
90:	learn: 11.8997810	total: 2.64s	remaining: 3.16s
91:	learn: 11.8272800	total: 2.67s	remaining: 3.13s
92:	learn: 11.7398723	total: 2.69s	remaining: 3.1s
93:	learn: 11.6996897	total: 2.73s	remaining: 3.08s
94:	learn: 11.5707058	total: 2.75s	remaining: 3.04s
95:	learn: 11.4454892	total: 2.78s	remaining: 3.01s
96:	learn: 11.3786021	total: 2.81s	remaining: 2.98s
97:	learn: 11.2823760	total: 2.84s	remaining: 2.95s
98:	learn: 11.1929769	total: 2.87s	remaining: 2.93s
99:	learn: 11.1117188	total: 2.9s	remaining: 2.9s
100:	learn: 11.0443487	total: 2.93s	remaining: 2.87s
101:	learn: 10.9544034	total: 2.97s	remaining: 2.85s
102:	learn: 10.8897010	total: 3s	remaining: 2.82s
103:	learn: 10.8066831	total: 3.02s	remaining: 2.79s
104:	learn: 10.7378345	total: 3.05s	remaining: 2.76s
105:	learn: 10.6720239	total: 3.08s	remaining: 2.73s
106:	learn: 10.6053924	total: 3.11s	remaining: 2.71s
107:	learn: 10.5352672	total: 3.14s	remaining: 2.67s
108:	learn: 10.4698192	total: 3.17s	remaining: 2.64s
109:	learn: 10.3932540	total: 3.2s	remaining: 2.62s
110:	learn: 10.3302850	total: 3.23s	remaining: 2.59s
111:	learn: 10.2386464	total: 3.25s	remaining: 2.56s
112:	learn: 10.1614263	total: 3.28s	remaining: 2.53s
113:	learn: 10.1246223	total: 3.31s	remaining: 2.5s
114:	learn: 10.0376415	total: 3.35s	remaining: 2.47s
115:	learn: 9.9533922	total: 3.38s	remaining: 2.44s
116:	learn: 9.9116832	total: 3.4s	remaining: 2.41s
117:	learn: 9.8262895	total: 3.44s	remaining: 2.39s
118:	learn: 9.7550180	total: 3.47s	remaining: 2.36s
119:	learn: 9.6335263	total: 3.49s	remaining: 2.33s
120:	learn: 9.5729126	total: 3.52s	remaining: 2.3s
121:	learn: 9.4973694	total: 3.55s	remaining: 2.27s
122:	learn: 9.4234732	total: 3.58s	remaining: 2.24s
123:	learn: 9.3688511	total: 3.61s	remaining: 2.21s
124:	learn: 9.3131658	total: 3.64s	remaining: 2.18s
125:	learn: 9.2438024	total: 3.66s	remaining: 2.15s
126:	learn: 9.1906870	total: 3.7s	remaining: 2.13s
127:	learn: 9.1517009	total: 3.72s	remaining: 2.1s
128:	learn: 9.0807473	total: 3.75s	remaining: 2.06s
129:	learn: 9.0380225	total: 3.79s	remaining: 2.04s
130:	learn: 9.0003912	total: 3.81s	remaining: 2.01s
131:	learn: 8.9192469	total: 3.84s	remaining: 1.98s
132:	learn: 8.8535215	total: 3.87s	remaining: 1.95s
133:	learn: 8.8131428	total: 3.9s	remaining: 1.92s
134:	learn: 8.7593274	total: 3.94s	remaining: 1.89s
135:	learn: 8.7015525	total: 3.96s	remaining: 1.86s
136:	learn: 8.6407713	total: 3.99s	remaining: 1.83s
137:	learn: 8.5518756	total: 4.03s	remaining: 1.81s
138:	learn: 8.5058763	total: 4.05s	remaining: 1.78s
139:	learn: 8.4269041	total: 4.08s	remaining: 1.75s
140:	learn: 8.3587465	total: 4.11s	remaining: 1.72s
141:	learn: 8.2765653	total: 4.13s	remaining: 1.69s
142:	learn: 8.2346336	total: 4.17s	remaining: 1.66s
143:	learn: 8.1850701	total: 4.2s	remaining: 1.63s
144:	learn: 8.1340056	total: 4.23s	remaining: 1.61s
145:	learn: 8.0755445	total: 4.26s	remaining: 1.58s
146:	learn: 8.0340646	total: 4.29s	remaining: 1.55s
147:	learn: 7.9794679	total: 4.32s	remaining: 1.52s
148:	learn: 7.9112254	total: 4.35s	remaining: 1.49s
149:	learn: 7.8581019	total: 4.38s	remaining: 1.46s
150:	learn: 7.8080015	total: 4.41s	remaining: 1.43s
151:	learn: 7.7571579	total: 4.45s	remaining: 1.41s
152:	learn: 7.6995804	total: 4.48s	remaining: 1.38s
153:	learn: 7.6356250	total: 4.5s	remaining: 1.34s
154:	learn: 7.5942229	total: 4.53s	remaining: 1.32s
155:	learn: 7.5376240	total: 4.56s	remaining: 1.29s
156:	learn: 7.4951124	total: 4.59s	remaining: 1.26s
157:	learn: 7.4552667	total: 4.62s	remaining: 1.23s
158:	learn: 7.3992394	total: 4.64s	remaining: 1.2s
159:	learn: 7.3647438	total: 4.69s	remaining: 1.17s
160:	learn: 7.3092700	total: 4.72s	remaining: 1.14s
161:	learn: 7.2770042	total: 4.75s	remaining: 1.11s
162:	learn: 7.2585241	total: 4.77s	remaining: 1.08s
163:	learn: 7.2417757	total: 4.8s	remaining: 1.05s
164:	learn: 7.1943168	total: 4.83s	remaining: 1.02s
165:	learn: 7.1744675	total: 4.86s	remaining: 995ms
166:	learn: 7.1343559	total: 4.89s	remaining: 966ms
167:	learn: 7.1028128	total: 4.92s	remaining: 938ms
168:	learn: 7.0573171	total: 4.95s	remaining: 908ms
169:	learn: 6.9993075	total: 4.98s	remaining: 879ms
170:	learn: 6.9513510	total: 5.01s	remaining: 849ms
171:	learn: 6.9058701	total: 5.03s	remaining: 819ms
172:	learn: 6.8569156	total: 5.06s	remaining: 790ms
173:	learn: 6.8113961	total: 5.1s	remaining: 762ms
174:	learn: 6.7709772	total: 5.13s	remaining: 732ms
175:	learn: 6.7315058	total: 5.16s	remaining: 704ms
176:	learn: 6.6835509	total: 5.19s	remaining: 674ms
177:	learn: 6.6493245	total: 5.21s	remaining: 645ms
178:	learn: 6.6189204	total: 5.24s	remaining: 615ms
179:	learn: 6.5819690	total: 5.27s	remaining: 586ms
180:	learn: 6.5491324	total: 5.3s	remaining: 556ms
181:	learn: 6.5086060	total: 5.33s	remaining: 527ms
182:	learn: 6.4648748	total: 5.36s	remaining: 498ms
183:	learn: 6.4368748	total: 5.39s	remaining: 469ms
184:	learn: 6.4016410	total: 5.42s	remaining: 440ms
185:	learn: 6.3655740	total: 5.45s	remaining: 410ms
186:	learn: 6.3236780	total: 5.48s	remaining: 381ms
187:	learn: 6.2898164	total: 5.5s	remaining: 351ms
188:	learn: 6.2551311	total: 5.53s	remaining: 322ms
189:	learn: 6.2414730	total: 5.57s	remaining: 293ms
190:	learn: 6.2134145	total: 5.6s	remaining: 264ms
191:	learn: 6.1510986	total: 5.63s	remaining: 234ms
192:	learn: 6.1135210	total: 5.66s	remaining: 205ms
193:	learn: 6.0698374	total: 5.69s	remaining: 176ms
194:	learn: 6.0286009	total: 5.72s	remaining: 147ms
195:	learn: 5.9974556	total: 5.74s	remaining: 117ms
196:	learn: 5.9582225	total: 5.78s	remaining: 88ms
197:	learn: 5.9251268	total: 5.81s	remaining: 58.7ms
198:	learn: 5.9012186	total: 5.83s	remaining: 29.3ms
199:	learn: 5.8691774	total: 5.86s	remaining: 0us
0:	learn: 46.4051117	total: 35.6ms	remaining: 7.09s
1:	learn: 45.3311808	total: 65.1ms	remaining: 6.44s
2:	learn: 44.2355531	total: 103ms	remaining: 6.75s
3:	learn: 43.2958733	total: 131ms	remaining: 6.41s
4:	learn: 42.3536589	total: 159ms	remaining: 6.2s
5:	learn: 41.4859961	total: 187ms	remaining: 6.04s
6:	learn: 40.5534910	total: 214ms	remaining: 5.9s
7:	learn: 39.7060893	total: 241ms	remaining: 5.79s
8:	learn: 38.8439981	total: 277ms	remaining: 5.88s
9:	learn: 38.2669414	total: 310ms	remaining: 5.89s
10:	learn: 37.6759770	total: 338ms	remaining: 5.81s
11:	learn: 36.9869277	total: 365ms	remaining: 5.71s
12:	learn: 36.3901257	total: 391ms	remaining: 5.63s
13:	learn: 35.7917302	total: 418ms	remaining: 5.56s
14:	learn: 35.2174952	total: 445ms	remaining: 5.49s
15:	learn: 34.5826754	total: 472ms	remaining: 5.43s
16:	learn: 34.0874316	total: 509ms	remaining: 5.48s
17:	learn: 33.5003568	total: 541ms	remaining: 5.47s
18:	learn: 32.7934787	total: 568ms	remaining: 5.41s
19:	learn: 31.9083319	total: 595ms	remaining: 5.36s
20:	learn: 31.2930063	total: 623ms	remaining: 5.31s
21:	learn: 30.7897560	total: 650ms	remaining: 5.26s
22:	learn: 30.1479920	total: 677ms	remaining: 5.21s
23:	learn: 29.5764365	total: 705ms	remaining: 5.17s
24:	learn: 29.0910861	total: 742ms	remaining: 5.19s
25:	learn: 28.4397299	total: 778ms	remaining: 5.2s
26:	learn: 27.8228369	total: 804ms	remaining: 5.15s
27:	learn: 27.3877661	total: 830ms	remaining: 5.1s
28:	learn: 26.9261524	total: 857ms	remaining: 5.05s
29:	learn: 26.5038338	total: 883ms	remaining: 5s
30:	learn: 26.2151044	total: 910ms	remaining: 4.96s
31:	learn: 25.8170458	total: 937ms	remaining: 4.92s
32:	learn: 25.4852966	total: 975ms	remaining: 4.93s
33:	learn: 25.0288024	total: 1.01s	remaining: 4.95s
34:	learn: 24.6327933	total: 1.04s	remaining: 4.91s
35:	learn: 24.1334075	total: 1.07s	remaining: 4.88s
36:	learn: 23.7648659	total: 1.1s	remaining: 4.84s
37:	learn: 23.4059601	total: 1.12s	remaining: 4.79s
38:	learn: 23.0824106	total: 1.15s	remaining: 4.75s
39:	learn: 22.8059757	total: 1.18s	remaining: 4.72s
40:	learn: 22.5306226	total: 1.21s	remaining: 4.71s
41:	learn: 22.2219847	total: 1.25s	remaining: 4.7s
42:	learn: 21.8972204	total: 1.27s	remaining: 4.65s
43:	learn: 21.5236072	total: 1.3s	remaining: 4.62s
44:	learn: 21.2553689	total: 1.33s	remaining: 4.57s
45:	learn: 20.8401171	total: 1.36s	remaining: 4.54s
46:	learn: 20.5752228	total: 1.38s	remaining: 4.5s
47:	learn: 20.3528352	total: 1.42s	remaining: 4.49s
48:	learn: 20.1615025	total: 1.45s	remaining: 4.46s
49:	learn: 19.8957215	total: 1.48s	remaining: 4.45s
50:	learn: 19.6512654	total: 1.51s	remaining: 4.41s
51:	learn: 19.4334583	total: 1.54s	remaining: 4.38s
52:	learn: 19.1886760	total: 1.57s	remaining: 4.34s
53:	learn: 18.8797014	total: 1.6s	remaining: 4.32s
54:	learn: 18.6166876	total: 1.63s	remaining: 4.29s
55:	learn: 18.3791724	total: 1.65s	remaining: 4.25s
56:	learn: 18.2115659	total: 1.68s	remaining: 4.22s
57:	learn: 18.0722693	total: 1.71s	remaining: 4.18s
58:	learn: 17.8852192	total: 1.74s	remaining: 4.17s
59:	learn: 17.7272446	total: 1.77s	remaining: 4.13s
60:	learn: 17.4942483	total: 1.8s	remaining: 4.1s
61:	learn: 17.3054937	total: 1.83s	remaining: 4.08s
62:	learn: 17.1549585	total: 1.86s	remaining: 4.05s
63:	learn: 16.9975916	total: 1.89s	remaining: 4.02s
64:	learn: 16.8858589	total: 1.92s	remaining: 3.98s
65:	learn: 16.6701164	total: 1.94s	remaining: 3.94s
66:	learn: 16.5500620	total: 1.98s	remaining: 3.92s
67:	learn: 16.3458753	total: 2s	remaining: 3.89s
68:	learn: 16.1878838	total: 2.03s	remaining: 3.86s
69:	learn: 16.0305134	total: 2.08s	remaining: 3.85s
70:	learn: 15.8487627	total: 2.1s	remaining: 3.82s
71:	learn: 15.6683766	total: 2.13s	remaining: 3.79s
72:	learn: 15.5077137	total: 2.16s	remaining: 3.76s
73:	learn: 15.4103876	total: 2.19s	remaining: 3.72s
74:	learn: 15.2840688	total: 2.22s	remaining: 3.7s
75:	learn: 15.1507590	total: 2.25s	remaining: 3.67s
76:	learn: 14.9825337	total: 2.27s	remaining: 3.63s
77:	learn: 14.8044062	total: 2.31s	remaining: 3.61s
78:	learn: 14.6711374	total: 2.33s	remaining: 3.58s
79:	learn: 14.5318692	total: 2.36s	remaining: 3.54s
80:	learn: 14.4181194	total: 2.39s	remaining: 3.51s
81:	learn: 14.2559532	total: 2.42s	remaining: 3.48s
82:	learn: 14.1026042	total: 2.45s	remaining: 3.45s
83:	learn: 13.9184961	total: 2.48s	remaining: 3.42s
84:	learn: 13.7905556	total: 2.51s	remaining: 3.4s
85:	learn: 13.6755541	total: 2.54s	remaining: 3.37s
86:	learn: 13.5644560	total: 2.57s	remaining: 3.34s
87:	learn: 13.4412378	total: 2.6s	remaining: 3.3s
88:	learn: 13.3271667	total: 2.62s	remaining: 3.27s
89:	learn: 13.2634410	total: 2.65s	remaining: 3.24s
90:	learn: 13.1463553	total: 2.68s	remaining: 3.21s
91:	learn: 13.0389944	total: 2.71s	remaining: 3.19s
92:	learn: 12.9605830	total: 2.75s	remaining: 3.16s
93:	learn: 12.8819119	total: 2.77s	remaining: 3.13s
94:	learn: 12.8038551	total: 2.8s	remaining: 3.1s
95:	learn: 12.7013498	total: 2.83s	remaining: 3.06s
96:	learn: 12.6011350	total: 2.85s	remaining: 3.03s
97:	learn: 12.4949377	total: 2.88s	remaining: 3s
98:	learn: 12.3808699	total: 2.91s	remaining: 2.97s
99:	learn: 12.2551864	total: 2.94s	remaining: 2.94s
100:	learn: 12.1590434	total: 2.98s	remaining: 2.92s
101:	learn: 12.0701882	total: 3.01s	remaining: 2.89s
102:	learn: 11.9724049	total: 3.04s	remaining: 2.86s
103:	learn: 11.9003953	total: 3.06s	remaining: 2.83s
104:	learn: 11.8213364	total: 3.09s	remaining: 2.8s
105:	learn: 11.7342445	total: 3.12s	remaining: 2.77s
106:	learn: 11.6402394	total: 3.15s	remaining: 2.73s
107:	learn: 11.5251390	total: 3.18s	remaining: 2.71s
108:	learn: 11.4184182	total: 3.21s	remaining: 2.68s
109:	learn: 11.3344360	total: 3.24s	remaining: 2.65s
110:	learn: 11.2622852	total: 3.27s	remaining: 2.62s
111:	learn: 11.1790951	total: 3.29s	remaining: 2.59s
112:	learn: 11.0982174	total: 3.32s	remaining: 2.56s
113:	learn: 11.0028461	total: 3.35s	remaining: 2.53s
114:	learn: 10.9167653	total: 3.38s	remaining: 2.5s
115:	learn: 10.8493708	total: 3.42s	remaining: 2.48s
116:	learn: 10.7763226	total: 3.45s	remaining: 2.45s
117:	learn: 10.7057684	total: 3.48s	remaining: 2.42s
118:	learn: 10.6264693	total: 3.51s	remaining: 2.39s
119:	learn: 10.5711538	total: 3.53s	remaining: 2.35s
120:	learn: 10.4653048	total: 3.56s	remaining: 2.32s
121:	learn: 10.3852668	total: 3.59s	remaining: 2.3s
122:	learn: 10.3250160	total: 3.62s	remaining: 2.27s
123:	learn: 10.2399308	total: 3.65s	remaining: 2.24s
124:	learn: 10.1420007	total: 3.68s	remaining: 2.21s
125:	learn: 10.0732762	total: 3.71s	remaining: 2.18s
126:	learn: 9.9940788	total: 3.74s	remaining: 2.15s
127:	learn: 9.9355996	total: 3.76s	remaining: 2.12s
128:	learn: 9.8497364	total: 3.79s	remaining: 2.08s
129:	learn: 9.7895966	total: 3.82s	remaining: 2.06s
130:	learn: 9.6875558	total: 3.85s	remaining: 2.03s
131:	learn: 9.6104126	total: 3.88s	remaining: 2s
132:	learn: 9.5492690	total: 3.92s	remaining: 1.97s
133:	learn: 9.4721709	total: 3.94s	remaining: 1.94s
134:	learn: 9.4178189	total: 3.97s	remaining: 1.91s
135:	learn: 9.3728501	total: 4s	remaining: 1.88s
136:	learn: 9.3177755	total: 4.03s	remaining: 1.85s
137:	learn: 9.2373853	total: 4.06s	remaining: 1.82s
138:	learn: 9.1782253	total: 4.09s	remaining: 1.8s
139:	learn: 9.0990070	total: 4.12s	remaining: 1.76s
140:	learn: 9.0322138	total: 4.15s	remaining: 1.74s
141:	learn: 8.9513335	total: 4.18s	remaining: 1.71s
142:	learn: 8.9060598	total: 4.21s	remaining: 1.68s
143:	learn: 8.8583333	total: 4.23s	remaining: 1.65s
144:	learn: 8.7916062	total: 4.26s	remaining: 1.62s
145:	learn: 8.7421371	total: 4.3s	remaining: 1.59s
146:	learn: 8.6831819	total: 4.33s	remaining: 1.56s
147:	learn: 8.6357395	total: 4.36s	remaining: 1.53s
148:	learn: 8.5967062	total: 4.39s	remaining: 1.5s
149:	learn: 8.5402882	total: 4.42s	remaining: 1.47s
150:	learn: 8.5035819	total: 4.45s	remaining: 1.44s
151:	learn: 8.4428420	total: 4.48s	remaining: 1.41s
152:	learn: 8.3862981	total: 4.51s	remaining: 1.38s
153:	learn: 8.3449516	total: 4.53s	remaining: 1.35s
154:	learn: 8.2974681	total: 4.56s	remaining: 1.32s
155:	learn: 8.2445471	total: 4.59s	remaining: 1.29s
156:	learn: 8.1944830	total: 4.61s	remaining: 1.26s
157:	learn: 8.1233294	total: 4.65s	remaining: 1.24s
158:	learn: 8.0686011	total: 4.67s	remaining: 1.21s
159:	learn: 8.0017590	total: 4.71s	remaining: 1.18s
160:	learn: 7.9684685	total: 4.74s	remaining: 1.15s
161:	learn: 7.9203748	total: 4.77s	remaining: 1.12s
162:	learn: 7.8498597	total: 4.8s	remaining: 1.09s
163:	learn: 7.8013320	total: 4.82s	remaining: 1.06s
164:	learn: 7.7409599	total: 4.85s	remaining: 1.03s
165:	learn: 7.7062957	total: 4.89s	remaining: 1s
166:	learn: 7.6445487	total: 4.92s	remaining: 973ms
167:	learn: 7.5991646	total: 4.95s	remaining: 944ms
168:	learn: 7.5571767	total: 4.98s	remaining: 914ms
169:	learn: 7.5269914	total: 5.01s	remaining: 884ms
170:	learn: 7.4754414	total: 5.04s	remaining: 854ms
171:	learn: 7.4256871	total: 5.06s	remaining: 824ms
172:	learn: 7.3831192	total: 5.09s	remaining: 794ms
173:	learn: 7.3552148	total: 5.13s	remaining: 766ms
174:	learn: 7.3096199	total: 5.16s	remaining: 737ms
175:	learn: 7.2317367	total: 5.19s	remaining: 708ms
176:	learn: 7.2010444	total: 5.22s	remaining: 678ms
177:	learn: 7.1509220	total: 5.24s	remaining: 648ms
178:	learn: 7.0958885	total: 5.27s	remaining: 618ms
179:	learn: 7.0364497	total: 5.3s	remaining: 589ms
180:	learn: 7.0019327	total: 5.33s	remaining: 559ms
181:	learn: 6.9673170	total: 5.37s	remaining: 532ms
182:	learn: 6.9126684	total: 5.4s	remaining: 502ms
183:	learn: 6.8712651	total: 5.43s	remaining: 472ms
184:	learn: 6.8295644	total: 5.46s	remaining: 442ms
185:	learn: 6.7901113	total: 5.48s	remaining: 413ms
186:	learn: 6.7460089	total: 5.51s	remaining: 383ms
187:	learn: 6.7088216	total: 5.54s	remaining: 354ms
188:	learn: 6.6627755	total: 5.57s	remaining: 324ms
189:	learn: 6.6265720	total: 5.6s	remaining: 295ms
190:	learn: 6.5856555	total: 5.63s	remaining: 266ms
191:	learn: 6.5557671	total: 5.66s	remaining: 236ms
192:	learn: 6.5162767	total: 5.69s	remaining: 206ms
193:	learn: 6.4897095	total: 5.72s	remaining: 177ms
194:	learn: 6.4501228	total: 5.74s	remaining: 147ms
195:	learn: 6.4130432	total: 5.78s	remaining: 118ms
196:	learn: 6.3785503	total: 5.81s	remaining: 88.4ms
197:	learn: 6.3359295	total: 5.83s	remaining: 58.9ms
198:	learn: 6.3074660	total: 5.87s	remaining: 29.5ms
199:	learn: 6.2771006	total: 5.9s	remaining: 0us
0:	learn: 45.9785919	total: 31ms	remaining: 6.17s
1:	learn: 44.9581939	total: 70.1ms	remaining: 6.94s
2:	learn: 43.9091127	total: 98.2ms	remaining: 6.45s
3:	learn: 42.7984962	total: 126ms	remaining: 6.15s
4:	learn: 41.9715841	total: 154ms	remaining: 6.01s
5:	learn: 41.2949683	total: 181ms	remaining: 5.84s
6:	learn: 40.4494730	total: 213ms	remaining: 5.87s
7:	learn: 39.6906390	total: 239ms	remaining: 5.74s
8:	learn: 38.6718680	total: 266ms	remaining: 5.65s
9:	learn: 37.9176664	total: 294ms	remaining: 5.58s
10:	learn: 36.9169551	total: 329ms	remaining: 5.65s
11:	learn: 36.1670753	total: 356ms	remaining: 5.57s
12:	learn: 35.6362382	total: 382ms	remaining: 5.49s
13:	learn: 35.0764262	total: 408ms	remaining: 5.42s
14:	learn: 34.5241023	total: 435ms	remaining: 5.37s
15:	learn: 33.9112917	total: 469ms	remaining: 5.39s
16:	learn: 33.1023896	total: 496ms	remaining: 5.34s
17:	learn: 32.5227767	total: 523ms	remaining: 5.29s
18:	learn: 31.9685385	total: 562ms	remaining: 5.35s
19:	learn: 31.4048780	total: 589ms	remaining: 5.3s
20:	learn: 30.9173286	total: 616ms	remaining: 5.25s
21:	learn: 30.4889417	total: 643ms	remaining: 5.2s
22:	learn: 29.9957742	total: 671ms	remaining: 5.16s
23:	learn: 29.5532403	total: 704ms	remaining: 5.16s
24:	learn: 29.0869023	total: 732ms	remaining: 5.12s
25:	learn: 28.7131197	total: 760ms	remaining: 5.08s
26:	learn: 28.2622970	total: 794ms	remaining: 5.08s
27:	learn: 27.7045502	total: 821ms	remaining: 5.04s
28:	learn: 27.2689985	total: 847ms	remaining: 5s
29:	learn: 26.8937625	total: 873ms	remaining: 4.95s
30:	learn: 26.4723305	total: 899ms	remaining: 4.9s
31:	learn: 26.0613360	total: 933ms	remaining: 4.9s
32:	learn: 25.7354314	total: 961ms	remaining: 4.86s
33:	learn: 25.4365901	total: 987ms	remaining: 4.82s
34:	learn: 25.0579971	total: 1.02s	remaining: 4.83s
35:	learn: 24.6756006	total: 1.05s	remaining: 4.8s
36:	learn: 24.3211908	total: 1.08s	remaining: 4.78s
37:	learn: 23.8567945	total: 1.11s	remaining: 4.74s
38:	learn: 23.5856536	total: 1.14s	remaining: 4.71s
39:	learn: 23.3552361	total: 1.17s	remaining: 4.67s
40:	learn: 23.1477272	total: 1.2s	remaining: 4.67s
41:	learn: 22.8497360	total: 1.23s	remaining: 4.64s
42:	learn: 22.5809198	total: 1.26s	remaining: 4.62s
43:	learn: 22.2522495	total: 1.29s	remaining: 4.58s
44:	learn: 21.9258917	total: 1.32s	remaining: 4.55s
45:	learn: 21.6933205	total: 1.35s	remaining: 4.51s
46:	learn: 21.4423031	total: 1.37s	remaining: 4.47s
47:	learn: 21.1573471	total: 1.4s	remaining: 4.44s
48:	learn: 20.9677940	total: 1.44s	remaining: 4.45s
49:	learn: 20.7417189	total: 1.48s	remaining: 4.43s
50:	learn: 20.5010597	total: 1.5s	remaining: 4.4s
51:	learn: 20.2654074	total: 1.53s	remaining: 4.36s
52:	learn: 20.0568837	total: 1.56s	remaining: 4.33s
53:	learn: 19.8187698	total: 1.59s	remaining: 4.29s
54:	learn: 19.5549335	total: 1.61s	remaining: 4.26s
55:	learn: 19.4061951	total: 1.64s	remaining: 4.22s
56:	learn: 19.2259890	total: 1.69s	remaining: 4.23s
57:	learn: 19.0335945	total: 1.71s	remaining: 4.19s
58:	learn: 18.8545847	total: 1.74s	remaining: 4.16s
59:	learn: 18.7070231	total: 1.77s	remaining: 4.12s
60:	learn: 18.5923917	total: 1.79s	remaining: 4.08s
61:	learn: 18.4429719	total: 1.82s	remaining: 4.05s
62:	learn: 18.2825510	total: 1.85s	remaining: 4.02s
63:	learn: 18.1358848	total: 1.87s	remaining: 3.98s
64:	learn: 18.0102396	total: 1.91s	remaining: 3.97s
65:	learn: 17.7782817	total: 1.95s	remaining: 3.95s
66:	learn: 17.6293839	total: 1.97s	remaining: 3.92s
67:	learn: 17.4950966	total: 2s	remaining: 3.88s
68:	learn: 17.3213878	total: 2.03s	remaining: 3.85s
69:	learn: 17.1833201	total: 2.06s	remaining: 3.82s
70:	learn: 17.0063684	total: 2.09s	remaining: 3.79s
71:	learn: 16.8322437	total: 2.12s	remaining: 3.77s
72:	learn: 16.7058593	total: 2.15s	remaining: 3.73s
73:	learn: 16.5781086	total: 2.18s	remaining: 3.71s
74:	learn: 16.4536927	total: 2.21s	remaining: 3.68s
75:	learn: 16.3555875	total: 2.23s	remaining: 3.65s
76:	learn: 16.2112488	total: 2.26s	remaining: 3.61s
77:	learn: 16.0933871	total: 2.29s	remaining: 3.58s
78:	learn: 15.9482175	total: 2.33s	remaining: 3.56s
79:	learn: 15.8457078	total: 2.35s	remaining: 3.53s
80:	learn: 15.7756914	total: 2.38s	remaining: 3.5s
81:	learn: 15.5938239	total: 2.42s	remaining: 3.48s
82:	learn: 15.4879475	total: 2.45s	remaining: 3.45s
83:	learn: 15.3387701	total: 2.47s	remaining: 3.42s
84:	learn: 15.2647310	total: 2.5s	remaining: 3.38s
85:	learn: 15.1407574	total: 2.53s	remaining: 3.35s
86:	learn: 15.0412643	total: 2.56s	remaining: 3.33s
87:	learn: 14.9524567	total: 2.59s	remaining: 3.29s
88:	learn: 14.8463137	total: 2.62s	remaining: 3.26s
89:	learn: 14.8165046	total: 2.64s	remaining: 3.23s
90:	learn: 14.7199993	total: 2.68s	remaining: 3.21s
91:	learn: 14.5961218	total: 2.7s	remaining: 3.17s
92:	learn: 14.5344312	total: 2.73s	remaining: 3.14s
93:	learn: 14.4678730	total: 2.77s	remaining: 3.12s
94:	learn: 14.3960901	total: 2.8s	remaining: 3.09s
95:	learn: 14.3119443	total: 2.83s	remaining: 3.06s
96:	learn: 14.2240868	total: 2.85s	remaining: 3.03s
97:	learn: 14.1399837	total: 2.88s	remaining: 3s
98:	learn: 14.0533759	total: 2.92s	remaining: 2.98s
99:	learn: 13.9950351	total: 2.94s	remaining: 2.94s
100:	learn: 13.9668089	total: 2.97s	remaining: 2.91s
101:	learn: 13.8990424	total: 3s	remaining: 2.89s
102:	learn: 13.8340683	total: 3.03s	remaining: 2.86s
103:	learn: 13.7327129	total: 3.06s	remaining: 2.83s
104:	learn: 13.6486423	total: 3.09s	remaining: 2.79s
105:	learn: 13.5711702	total: 3.11s	remaining: 2.76s
106:	learn: 13.4854890	total: 3.15s	remaining: 2.74s
107:	learn: 13.4388981	total: 3.18s	remaining: 2.71s
108:	learn: 13.3841681	total: 3.22s	remaining: 2.69s
109:	learn: 13.3413203	total: 3.24s	remaining: 2.65s
110:	learn: 13.2546145	total: 3.27s	remaining: 2.62s
111:	learn: 13.1224088	total: 3.3s	remaining: 2.59s
112:	learn: 13.0483840	total: 3.33s	remaining: 2.56s
113:	learn: 12.9420766	total: 3.35s	remaining: 2.53s
114:	learn: 12.8450150	total: 3.38s	remaining: 2.5s
115:	learn: 12.7888251	total: 3.42s	remaining: 2.48s
116:	learn: 12.6799890	total: 3.45s	remaining: 2.45s
117:	learn: 12.5945228	total: 3.48s	remaining: 2.42s
118:	learn: 12.5339805	total: 3.5s	remaining: 2.38s
119:	learn: 12.4793198	total: 3.53s	remaining: 2.35s
120:	learn: 12.3781390	total: 3.56s	remaining: 2.32s
121:	learn: 12.2893424	total: 3.58s	remaining: 2.29s
122:	learn: 12.2616723	total: 3.62s	remaining: 2.27s
123:	learn: 12.1746282	total: 3.65s	remaining: 2.24s
124:	learn: 12.1196215	total: 3.68s	remaining: 2.21s
125:	learn: 12.0370415	total: 3.71s	remaining: 2.18s
126:	learn: 11.9415303	total: 3.74s	remaining: 2.15s
127:	learn: 11.8996847	total: 3.77s	remaining: 2.12s
128:	learn: 11.8076357	total: 3.79s	remaining: 2.09s
129:	learn: 11.7251501	total: 3.82s	remaining: 2.06s
130:	learn: 11.5876348	total: 3.85s	remaining: 2.03s
131:	learn: 11.5558440	total: 3.88s	remaining: 2s
132:	learn: 11.5195517	total: 3.92s	remaining: 1.97s
133:	learn: 11.4063126	total: 3.94s	remaining: 1.94s
134:	learn: 11.3308352	total: 3.97s	remaining: 1.91s
135:	learn: 11.2558622	total: 3.99s	remaining: 1.88s
136:	learn: 11.1852237	total: 4.02s	remaining: 1.85s
137:	learn: 11.1192132	total: 4.05s	remaining: 1.82s
138:	learn: 11.0556272	total: 4.08s	remaining: 1.79s
139:	learn: 10.9786475	total: 4.11s	remaining: 1.76s
140:	learn: 10.8902191	total: 4.15s	remaining: 1.74s
141:	learn: 10.7700682	total: 4.18s	remaining: 1.71s
142:	learn: 10.7124196	total: 4.2s	remaining: 1.68s
143:	learn: 10.6306072	total: 4.23s	remaining: 1.65s
144:	learn: 10.5643229	total: 4.26s	remaining: 1.62s
145:	learn: 10.5265368	total: 4.29s	remaining: 1.59s
146:	learn: 10.4558055	total: 4.32s	remaining: 1.56s
147:	learn: 10.4039694	total: 4.35s	remaining: 1.53s
148:	learn: 10.3408237	total: 4.38s	remaining: 1.5s
149:	learn: 10.2627966	total: 4.41s	remaining: 1.47s
150:	learn: 10.2002141	total: 4.43s	remaining: 1.44s
151:	learn: 10.1626210	total: 4.46s	remaining: 1.41s
152:	learn: 10.0834794	total: 4.5s	remaining: 1.38s
153:	learn: 9.9995676	total: 4.53s	remaining: 1.35s
154:	learn: 9.9436133	total: 4.55s	remaining: 1.32s
155:	learn: 9.8673146	total: 4.58s	remaining: 1.29s
156:	learn: 9.8084429	total: 4.61s	remaining: 1.26s
157:	learn: 9.7721516	total: 4.64s	remaining: 1.23s
158:	learn: 9.7203234	total: 4.67s	remaining: 1.21s
159:	learn: 9.6884849	total: 4.71s	remaining: 1.18s
160:	learn: 9.6265782	total: 4.74s	remaining: 1.15s
161:	learn: 9.5698813	total: 4.76s	remaining: 1.12s
162:	learn: 9.5196743	total: 4.79s	remaining: 1.09s
163:	learn: 9.4594680	total: 4.82s	remaining: 1.06s
164:	learn: 9.3614639	total: 4.84s	remaining: 1.03s
165:	learn: 9.3347501	total: 4.88s	remaining: 999ms
166:	learn: 9.2855497	total: 4.91s	remaining: 970ms
167:	learn: 9.2245774	total: 4.94s	remaining: 941ms
168:	learn: 9.1420534	total: 4.97s	remaining: 912ms
169:	learn: 9.1004496	total: 5s	remaining: 882ms
170:	learn: 9.0266486	total: 5.03s	remaining: 852ms
171:	learn: 8.9919149	total: 5.05s	remaining: 823ms
172:	learn: 8.9495456	total: 5.08s	remaining: 793ms
173:	learn: 8.8972894	total: 5.12s	remaining: 764ms
174:	learn: 8.8040524	total: 5.14s	remaining: 735ms
175:	learn: 8.6901310	total: 5.18s	remaining: 706ms
176:	learn: 8.6469342	total: 5.21s	remaining: 676ms
177:	learn: 8.5999257	total: 5.23s	remaining: 647ms
178:	learn: 8.5454570	total: 5.26s	remaining: 617ms
179:	learn: 8.4374612	total: 5.29s	remaining: 587ms
180:	learn: 8.3873914	total: 5.31s	remaining: 558ms
181:	learn: 8.3287576	total: 5.34s	remaining: 528ms
182:	learn: 8.2760159	total: 5.38s	remaining: 500ms
183:	learn: 8.2249773	total: 5.42s	remaining: 471ms
184:	learn: 8.1848138	total: 5.44s	remaining: 441ms
185:	learn: 8.1305667	total: 5.47s	remaining: 412ms
186:	learn: 8.0871204	total: 5.5s	remaining: 382ms
187:	learn: 8.0585067	total: 5.53s	remaining: 353ms
188:	learn: 7.9992910	total: 5.55s	remaining: 323ms
189:	learn: 7.9679618	total: 5.58s	remaining: 294ms
190:	learn: 7.9334248	total: 5.62s	remaining: 265ms
191:	learn: 7.8768409	total: 5.65s	remaining: 235ms
192:	learn: 7.8241554	total: 5.67s	remaining: 206ms
193:	learn: 7.7761628	total: 5.7s	remaining: 176ms
194:	learn: 7.7243412	total: 5.73s	remaining: 147ms
195:	learn: 7.6744569	total: 5.75s	remaining: 117ms
196:	learn: 7.6122525	total: 5.78s	remaining: 88.1ms
197:	learn: 7.5666339	total: 5.81s	remaining: 58.7ms
198:	learn: 7.5357403	total: 5.86s	remaining: 29.4ms
199:	learn: 7.5042596	total: 5.88s	remaining: 0us
0:	learn: 46.6705057	total: 26.9ms	remaining: 5.35s
1:	learn: 45.6228942	total: 53.9ms	remaining: 5.33s
2:	learn: 44.6011857	total: 89.8ms	remaining: 5.89s
3:	learn: 43.4944730	total: 119ms	remaining: 5.81s
4:	learn: 42.7214061	total: 145ms	remaining: 5.67s
5:	learn: 41.8717386	total: 172ms	remaining: 5.55s
6:	learn: 41.0828465	total: 199ms	remaining: 5.48s
7:	learn: 40.3693162	total: 232ms	remaining: 5.57s
8:	learn: 39.5504439	total: 261ms	remaining: 5.53s
9:	learn: 38.8028188	total: 292ms	remaining: 5.55s
10:	learn: 37.8021607	total: 328ms	remaining: 5.63s
11:	learn: 37.0316047	total: 342ms	remaining: 5.36s
12:	learn: 36.4697449	total: 371ms	remaining: 5.33s
13:	learn: 35.7324928	total: 398ms	remaining: 5.29s
14:	learn: 35.0670311	total: 425ms	remaining: 5.25s
15:	learn: 34.5416158	total: 452ms	remaining: 5.2s
16:	learn: 33.8060657	total: 487ms	remaining: 5.24s
17:	learn: 33.2764048	total: 515ms	remaining: 5.2s
18:	learn: 32.7985056	total: 548ms	remaining: 5.22s
19:	learn: 32.2684820	total: 574ms	remaining: 5.16s
20:	learn: 31.7897893	total: 601ms	remaining: 5.12s
21:	learn: 31.3010339	total: 628ms	remaining: 5.08s
22:	learn: 30.8508227	total: 655ms	remaining: 5.04s
23:	learn: 30.3168654	total: 683ms	remaining: 5s
24:	learn: 29.8575867	total: 718ms	remaining: 5.03s
25:	learn: 29.3623615	total: 755ms	remaining: 5.05s
26:	learn: 28.9848451	total: 783ms	remaining: 5.01s
27:	learn: 28.6994426	total: 812ms	remaining: 4.99s
28:	learn: 28.2896051	total: 841ms	remaining: 4.96s
29:	learn: 27.8326651	total: 872ms	remaining: 4.94s
30:	learn: 27.3512730	total: 898ms	remaining: 4.9s
31:	learn: 27.0818307	total: 926ms	remaining: 4.86s
32:	learn: 26.6738197	total: 965ms	remaining: 4.88s
33:	learn: 26.3390302	total: 994ms	remaining: 4.85s
34:	learn: 25.9635842	total: 1.02s	remaining: 4.81s
35:	learn: 25.6937525	total: 1.05s	remaining: 4.77s
36:	learn: 25.3141815	total: 1.07s	remaining: 4.74s
37:	learn: 25.0097733	total: 1.1s	remaining: 4.7s
38:	learn: 24.7491704	total: 1.13s	remaining: 4.66s
39:	learn: 24.3823525	total: 1.16s	remaining: 4.63s
40:	learn: 24.3094117	total: 1.16s	remaining: 4.5s
41:	learn: 23.9596755	total: 1.2s	remaining: 4.51s
42:	learn: 23.6550442	total: 1.23s	remaining: 4.51s
43:	learn: 23.4055797	total: 1.26s	remaining: 4.47s
44:	learn: 23.2484825	total: 1.29s	remaining: 4.44s
45:	learn: 22.9509665	total: 1.32s	remaining: 4.41s
46:	learn: 22.7288116	total: 1.34s	remaining: 4.37s
47:	learn: 22.4239204	total: 1.37s	remaining: 4.35s
48:	learn: 22.2223864	total: 1.41s	remaining: 4.33s
49:	learn: 21.9306439	total: 1.43s	remaining: 4.3s
50:	learn: 21.7134680	total: 1.47s	remaining: 4.29s
51:	learn: 21.6063065	total: 1.49s	remaining: 4.25s
52:	learn: 21.2300249	total: 1.52s	remaining: 4.21s
53:	learn: 20.9961502	total: 1.55s	remaining: 4.18s
54:	learn: 20.7428171	total: 1.58s	remaining: 4.17s
55:	learn: 20.5043370	total: 1.61s	remaining: 4.14s
56:	learn: 20.3343057	total: 1.64s	remaining: 4.11s
57:	learn: 20.1503869	total: 1.66s	remaining: 4.08s
58:	learn: 19.9571627	total: 1.69s	remaining: 4.04s
59:	learn: 19.7166454	total: 1.73s	remaining: 4.03s
60:	learn: 19.5460796	total: 1.75s	remaining: 4s
61:	learn: 19.3319423	total: 1.78s	remaining: 3.97s
62:	learn: 19.1518266	total: 1.82s	remaining: 3.95s
63:	learn: 18.9801712	total: 1.84s	remaining: 3.92s
64:	learn: 18.8325481	total: 1.87s	remaining: 3.89s
65:	learn: 18.6545881	total: 1.9s	remaining: 3.85s
66:	learn: 18.4172473	total: 1.93s	remaining: 3.82s
67:	learn: 18.2145056	total: 1.96s	remaining: 3.8s
68:	learn: 18.0294470	total: 1.99s	remaining: 3.77s
69:	learn: 17.8764636	total: 2.02s	remaining: 3.74s
70:	learn: 17.7552517	total: 2.05s	remaining: 3.73s
71:	learn: 17.6134211	total: 2.08s	remaining: 3.7s
72:	learn: 17.4607644	total: 2.11s	remaining: 3.67s
73:	learn: 17.3425090	total: 2.14s	remaining: 3.64s
74:	learn: 17.2255418	total: 2.17s	remaining: 3.61s
75:	learn: 17.0908608	total: 2.2s	remaining: 3.59s
76:	learn: 16.9227981	total: 2.23s	remaining: 3.56s
77:	learn: 16.8243171	total: 2.26s	remaining: 3.54s
78:	learn: 16.7020719	total: 2.29s	remaining: 3.51s
79:	learn: 16.5231147	total: 2.32s	remaining: 3.48s
80:	learn: 16.3550704	total: 2.34s	remaining: 3.44s
81:	learn: 16.2531768	total: 2.37s	remaining: 3.41s
82:	learn: 16.1529156	total: 2.4s	remaining: 3.38s
83:	learn: 15.9391779	total: 2.42s	remaining: 3.35s
84:	learn: 15.8578694	total: 2.46s	remaining: 3.33s
85:	learn: 15.7783743	total: 2.5s	remaining: 3.31s
86:	learn: 15.6452604	total: 2.52s	remaining: 3.28s
87:	learn: 15.5300223	total: 2.55s	remaining: 3.25s
88:	learn: 15.4195831	total: 2.58s	remaining: 3.22s
89:	learn: 15.3071897	total: 2.61s	remaining: 3.19s
90:	learn: 15.1446058	total: 2.63s	remaining: 3.16s
91:	learn: 15.0547501	total: 2.66s	remaining: 3.12s
92:	learn: 14.9463447	total: 2.7s	remaining: 3.11s
93:	learn: 14.8747810	total: 2.73s	remaining: 3.08s
94:	learn: 14.7579258	total: 2.76s	remaining: 3.05s
95:	learn: 14.5927582	total: 2.78s	remaining: 3.01s
96:	learn: 14.4834761	total: 2.81s	remaining: 2.98s
97:	learn: 14.3683779	total: 2.83s	remaining: 2.95s
98:	learn: 14.2648032	total: 2.86s	remaining: 2.92s
99:	learn: 14.1339217	total: 2.89s	remaining: 2.89s
100:	learn: 14.0310235	total: 2.93s	remaining: 2.88s
101:	learn: 13.9879404	total: 2.96s	remaining: 2.85s
102:	learn: 13.9040350	total: 2.99s	remaining: 2.81s
103:	learn: 13.7925222	total: 3.02s	remaining: 2.78s
104:	learn: 13.6858242	total: 3.04s	remaining: 2.75s
105:	learn: 13.6086485	total: 3.07s	remaining: 2.72s
106:	learn: 13.4889682	total: 3.1s	remaining: 2.69s
107:	learn: 13.4306844	total: 3.13s	remaining: 2.66s
108:	learn: 13.3494423	total: 3.16s	remaining: 2.64s
109:	learn: 13.2980456	total: 3.2s	remaining: 2.62s
110:	learn: 13.2178503	total: 3.22s	remaining: 2.58s
111:	learn: 13.1206341	total: 3.25s	remaining: 2.55s
112:	learn: 13.0342536	total: 3.28s	remaining: 2.52s
113:	learn: 12.9673581	total: 3.31s	remaining: 2.5s
114:	learn: 12.9135734	total: 3.34s	remaining: 2.47s
115:	learn: 12.8196081	total: 3.37s	remaining: 2.44s
116:	learn: 12.7423806	total: 3.39s	remaining: 2.41s
117:	learn: 12.6465809	total: 3.43s	remaining: 2.38s
118:	learn: 12.5409295	total: 3.46s	remaining: 2.35s
119:	learn: 12.4767279	total: 3.48s	remaining: 2.32s
120:	learn: 12.3985254	total: 3.51s	remaining: 2.29s
121:	learn: 12.3212540	total: 3.54s	remaining: 2.26s
122:	learn: 12.2156139	total: 3.58s	remaining: 2.24s
123:	learn: 12.1479467	total: 3.6s	remaining: 2.21s
124:	learn: 12.0688168	total: 3.63s	remaining: 2.18s
125:	learn: 11.9864853	total: 3.67s	remaining: 2.15s
126:	learn: 11.8820716	total: 3.69s	remaining: 2.12s
127:	learn: 11.8059716	total: 3.72s	remaining: 2.09s
128:	learn: 11.7348830	total: 3.75s	remaining: 2.06s
129:	learn: 11.6193507	total: 3.79s	remaining: 2.04s
130:	learn: 11.5318657	total: 3.82s	remaining: 2.01s
131:	learn: 11.4432593	total: 3.84s	remaining: 1.98s
132:	learn: 11.3634921	total: 3.87s	remaining: 1.95s
133:	learn: 11.2572496	total: 3.9s	remaining: 1.92s
134:	learn: 11.1739063	total: 3.93s	remaining: 1.89s
135:	learn: 11.0896076	total: 3.96s	remaining: 1.86s
136:	learn: 10.9977136	total: 4s	remaining: 1.84s
137:	learn: 10.9178772	total: 4.02s	remaining: 1.81s
138:	learn: 10.8341868	total: 4.05s	remaining: 1.78s
139:	learn: 10.7709446	total: 4.08s	remaining: 1.75s
140:	learn: 10.7143619	total: 4.11s	remaining: 1.72s
141:	learn: 10.6467044	total: 4.13s	remaining: 1.69s
142:	learn: 10.5672440	total: 4.17s	remaining: 1.66s
143:	learn: 10.5263954	total: 4.19s	remaining: 1.63s
144:	learn: 10.4421936	total: 4.23s	remaining: 1.6s
145:	learn: 10.3788524	total: 4.26s	remaining: 1.57s
146:	learn: 10.3330662	total: 4.29s	remaining: 1.54s
147:	learn: 10.2703985	total: 4.32s	remaining: 1.52s
148:	learn: 10.2306029	total: 4.34s	remaining: 1.49s
149:	learn: 10.1640453	total: 4.37s	remaining: 1.46s
150:	learn: 10.1074372	total: 4.4s	remaining: 1.43s
151:	learn: 10.0083802	total: 4.43s	remaining: 1.4s
152:	learn: 9.9286493	total: 4.47s	remaining: 1.37s
153:	learn: 9.8439094	total: 4.49s	remaining: 1.34s
154:	learn: 9.7935130	total: 4.52s	remaining: 1.31s
155:	learn: 9.7063100	total: 4.55s	remaining: 1.28s
156:	learn: 9.6212511	total: 4.57s	remaining: 1.25s
157:	learn: 9.5539536	total: 4.6s	remaining: 1.22s
158:	learn: 9.5111986	total: 4.63s	remaining: 1.19s
159:	learn: 9.4514714	total: 4.66s	remaining: 1.17s
160:	learn: 9.3984668	total: 4.7s	remaining: 1.14s
161:	learn: 9.3014614	total: 4.73s	remaining: 1.11s
162:	learn: 9.2612077	total: 4.75s	remaining: 1.08s
163:	learn: 9.1913405	total: 4.78s	remaining: 1.05s
164:	learn: 9.0985411	total: 4.81s	remaining: 1.02s
165:	learn: 8.9848588	total: 4.83s	remaining: 990ms
166:	learn: 8.9405060	total: 4.86s	remaining: 961ms
167:	learn: 8.8613581	total: 4.9s	remaining: 933ms
168:	learn: 8.8162054	total: 4.93s	remaining: 905ms
169:	learn: 8.7045984	total: 4.96s	remaining: 875ms
170:	learn: 8.6428434	total: 4.99s	remaining: 846ms
171:	learn: 8.5947772	total: 5.01s	remaining: 816ms
172:	learn: 8.5378565	total: 5.04s	remaining: 787ms
173:	learn: 8.4802817	total: 5.07s	remaining: 757ms
174:	learn: 8.4303521	total: 5.09s	remaining: 728ms
175:	learn: 8.3791829	total: 5.12s	remaining: 699ms
176:	learn: 8.3284224	total: 5.16s	remaining: 671ms
177:	learn: 8.2772660	total: 5.19s	remaining: 642ms
178:	learn: 8.2166103	total: 5.22s	remaining: 612ms
179:	learn: 8.1793476	total: 5.25s	remaining: 583ms
180:	learn: 8.1310868	total: 5.28s	remaining: 554ms
181:	learn: 8.0778463	total: 5.3s	remaining: 524ms
182:	learn: 7.9947801	total: 5.34s	remaining: 496ms
183:	learn: 7.9560354	total: 5.37s	remaining: 467ms
184:	learn: 7.9272267	total: 5.4s	remaining: 438ms
185:	learn: 7.8835530	total: 5.43s	remaining: 408ms
186:	learn: 7.8117290	total: 5.45s	remaining: 379ms
187:	learn: 7.7803523	total: 5.48s	remaining: 350ms
188:	learn: 7.7232848	total: 5.5s	remaining: 320ms
189:	learn: 7.6676567	total: 5.53s	remaining: 291ms
190:	learn: 7.6309823	total: 5.56s	remaining: 262ms
191:	learn: 7.5951129	total: 5.6s	remaining: 233ms
192:	learn: 7.5293860	total: 5.64s	remaining: 205ms
193:	learn: 7.4823609	total: 5.67s	remaining: 175ms
194:	learn: 7.4313754	total: 5.7s	remaining: 146ms
195:	learn: 7.3714501	total: 5.72s	remaining: 117ms
196:	learn: 7.3219917	total: 5.75s	remaining: 87.6ms
197:	learn: 7.2822511	total: 5.78s	remaining: 58.4ms
198:	learn: 7.2376111	total: 5.81s	remaining: 29.2ms
199:	learn: 7.2259164	total: 5.84s	remaining: 0us
0:	learn: 27.5585353	total: 4.98ms	remaining: 493ms
1:	learn: 27.1656995	total: 9.1ms	remaining: 446ms
2:	learn: 26.8590175	total: 13.5ms	remaining: 436ms
3:	learn: 26.5818406	total: 17.6ms	remaining: 422ms
4:	learn: 26.1148663	total: 22.2ms	remaining: 421ms
5:	learn: 25.7690484	total: 26.5ms	remaining: 415ms
6:	learn: 25.3489206	total: 30.8ms	remaining: 410ms
7:	learn: 24.9542406	total: 35.1ms	remaining: 404ms
8:	learn: 24.6777517	total: 40.1ms	remaining: 406ms
9:	learn: 24.3242344	total: 45.1ms	remaining: 406ms
10:	learn: 24.0383073	total: 49.8ms	remaining: 403ms
11:	learn: 23.7383420	total: 54.4ms	remaining: 399ms
12:	learn: 23.3461670	total: 58.8ms	remaining: 394ms
13:	learn: 23.0928636	total: 63.5ms	remaining: 390ms
14:	learn: 22.8770414	total: 68ms	remaining: 385ms
15:	learn: 22.6323214	total: 76ms	remaining: 399ms
16:	learn: 22.3597072	total: 83.5ms	remaining: 408ms
17:	learn: 22.1079813	total: 90ms	remaining: 410ms
18:	learn: 21.8421199	total: 95ms	remaining: 405ms
19:	learn: 21.6576508	total: 102ms	remaining: 406ms
20:	learn: 21.4301268	total: 107ms	remaining: 401ms
21:	learn: 21.2287388	total: 111ms	remaining: 395ms
22:	learn: 21.0553872	total: 116ms	remaining: 388ms
23:	learn: 20.8977091	total: 120ms	remaining: 381ms
24:	learn: 20.6619051	total: 125ms	remaining: 376ms
25:	learn: 20.5040955	total: 130ms	remaining: 370ms
26:	learn: 20.3181195	total: 135ms	remaining: 364ms
27:	learn: 20.0869436	total: 139ms	remaining: 357ms
28:	learn: 19.9375985	total: 143ms	remaining: 351ms
29:	learn: 19.8247516	total: 147ms	remaining: 344ms
30:	learn: 19.6261697	total: 152ms	remaining: 337ms
31:	learn: 19.4547236	total: 156ms	remaining: 331ms
32:	learn: 19.3157092	total: 160ms	remaining: 324ms
33:	learn: 19.1561419	total: 164ms	remaining: 318ms
34:	learn: 19.0453620	total: 168ms	remaining: 312ms
35:	learn: 18.8738574	total: 173ms	remaining: 307ms
36:	learn: 18.7072907	total: 177ms	remaining: 301ms
37:	learn: 18.5877943	total: 181ms	remaining: 295ms
38:	learn: 18.4436380	total: 185ms	remaining: 289ms
39:	learn: 18.3463356	total: 189ms	remaining: 284ms
40:	learn: 18.2008059	total: 193ms	remaining: 277ms
41:	learn: 18.0582079	total: 197ms	remaining: 272ms
42:	learn: 17.8891982	total: 202ms	remaining: 267ms
43:	learn: 17.7332246	total: 205ms	remaining: 261ms
44:	learn: 17.6206421	total: 210ms	remaining: 256ms
45:	learn: 17.4982800	total: 214ms	remaining: 252ms
46:	learn: 17.3970150	total: 219ms	remaining: 246ms
47:	learn: 17.3058203	total: 223ms	remaining: 242ms
48:	learn: 17.1789256	total: 227ms	remaining: 236ms
49:	learn: 17.0916229	total: 232ms	remaining: 232ms
50:	learn: 16.9859820	total: 236ms	remaining: 227ms
51:	learn: 16.8995582	total: 241ms	remaining: 222ms
52:	learn: 16.8137014	total: 245ms	remaining: 218ms
53:	learn: 16.7021451	total: 250ms	remaining: 213ms
54:	learn: 16.5895582	total: 255ms	remaining: 208ms
55:	learn: 16.5015639	total: 259ms	remaining: 204ms
56:	learn: 16.4356637	total: 264ms	remaining: 199ms
57:	learn: 16.3514525	total: 269ms	remaining: 195ms
58:	learn: 16.2401369	total: 278ms	remaining: 193ms
59:	learn: 16.1293223	total: 288ms	remaining: 192ms
60:	learn: 16.0271167	total: 296ms	remaining: 189ms
61:	learn: 15.9126257	total: 304ms	remaining: 187ms
62:	learn: 15.8391096	total: 309ms	remaining: 182ms
63:	learn: 15.7441773	total: 315ms	remaining: 177ms
64:	learn: 15.6885195	total: 320ms	remaining: 172ms
65:	learn: 15.6052039	total: 325ms	remaining: 167ms
66:	learn: 15.5074202	total: 331ms	remaining: 163ms
67:	learn: 15.4054338	total: 336ms	remaining: 158ms
68:	learn: 15.2885714	total: 341ms	remaining: 153ms
69:	learn: 15.2157472	total: 346ms	remaining: 148ms
70:	learn: 15.1031554	total: 350ms	remaining: 143ms
71:	learn: 15.0237470	total: 356ms	remaining: 138ms
72:	learn: 14.9756825	total: 362ms	remaining: 134ms
73:	learn: 14.8840596	total: 366ms	remaining: 129ms
74:	learn: 14.8077061	total: 371ms	remaining: 124ms
75:	learn: 14.7444437	total: 375ms	remaining: 118ms
76:	learn: 14.6751720	total: 379ms	remaining: 113ms
77:	learn: 14.5830333	total: 384ms	remaining: 108ms
78:	learn: 14.5241206	total: 388ms	remaining: 103ms
79:	learn: 14.4892731	total: 392ms	remaining: 98ms
80:	learn: 14.4256605	total: 396ms	remaining: 92.9ms
81:	learn: 14.3666860	total: 400ms	remaining: 87.9ms
82:	learn: 14.2938372	total: 405ms	remaining: 83ms
83:	learn: 14.2161532	total: 409ms	remaining: 77.9ms
84:	learn: 14.1582910	total: 414ms	remaining: 73ms
85:	learn: 14.1029153	total: 418ms	remaining: 68.1ms
86:	learn: 14.0475835	total: 423ms	remaining: 63.1ms
87:	learn: 13.9892661	total: 427ms	remaining: 58.2ms
88:	learn: 13.9481628	total: 431ms	remaining: 53.3ms
89:	learn: 13.8483991	total: 436ms	remaining: 48.4ms
90:	learn: 13.7775614	total: 441ms	remaining: 43.6ms
91:	learn: 13.7304585	total: 445ms	remaining: 38.7ms
92:	learn: 13.6783381	total: 450ms	remaining: 33.8ms
93:	learn: 13.6356964	total: 454ms	remaining: 29ms
94:	learn: 13.5924371	total: 459ms	remaining: 24.1ms
95:	learn: 13.5400746	total: 464ms	remaining: 19.3ms
96:	learn: 13.4897333	total: 472ms	remaining: 14.6ms
97:	learn: 13.4470321	total: 480ms	remaining: 9.79ms
98:	learn: 13.3856082	total: 487ms	remaining: 4.92ms
99:	learn: 13.3082371	total: 492ms	remaining: 0us
0:	learn: 43.0395283	total: 4.95ms	remaining: 490ms
1:	learn: 42.1130223	total: 9.16ms	remaining: 449ms
2:	learn: 41.1753409	total: 13.2ms	remaining: 426ms
3:	learn: 40.3637444	total: 17.1ms	remaining: 411ms
4:	learn: 39.6508088	total: 21.7ms	remaining: 412ms
5:	learn: 38.7217934	total: 25.8ms	remaining: 404ms
6:	learn: 37.8538055	total: 30.2ms	remaining: 401ms
7:	learn: 36.9793574	total: 34.4ms	remaining: 396ms
8:	learn: 36.3076984	total: 38.6ms	remaining: 390ms
9:	learn: 35.6673160	total: 42.8ms	remaining: 385ms
10:	learn: 34.8889800	total: 47.4ms	remaining: 384ms
11:	learn: 34.1675517	total: 51.3ms	remaining: 376ms
12:	learn: 33.6779564	total: 55.6ms	remaining: 372ms
13:	learn: 33.0710039	total: 60.2ms	remaining: 370ms
14:	learn: 32.4966674	total: 64.1ms	remaining: 363ms
15:	learn: 31.9492856	total: 68ms	remaining: 357ms
16:	learn: 31.5108129	total: 72.3ms	remaining: 353ms
17:	learn: 30.9804023	total: 76.5ms	remaining: 349ms
18:	learn: 30.4169089	total: 81.3ms	remaining: 347ms
19:	learn: 29.8930375	total: 85.7ms	remaining: 343ms
20:	learn: 29.3974421	total: 90.1ms	remaining: 339ms
21:	learn: 28.8792307	total: 94.2ms	remaining: 334ms
22:	learn: 28.3894474	total: 98.7ms	remaining: 330ms
23:	learn: 27.9921276	total: 103ms	remaining: 328ms
24:	learn: 27.6158887	total: 108ms	remaining: 324ms
25:	learn: 27.2866950	total: 113ms	remaining: 320ms
26:	learn: 26.8770708	total: 117ms	remaining: 317ms
27:	learn: 26.6233005	total: 122ms	remaining: 313ms
28:	learn: 26.2921934	total: 126ms	remaining: 310ms
29:	learn: 25.9156920	total: 132ms	remaining: 308ms
30:	learn: 25.5311106	total: 135ms	remaining: 301ms
31:	learn: 25.2178997	total: 143ms	remaining: 303ms
32:	learn: 24.8572196	total: 151ms	remaining: 308ms
33:	learn: 24.5849710	total: 157ms	remaining: 305ms
34:	learn: 24.2209190	total: 165ms	remaining: 306ms
35:	learn: 23.8708250	total: 171ms	remaining: 304ms
36:	learn: 23.5325279	total: 176ms	remaining: 300ms
37:	learn: 23.2116148	total: 181ms	remaining: 296ms
38:	learn: 22.9696787	total: 186ms	remaining: 292ms
39:	learn: 22.7936783	total: 192ms	remaining: 288ms
40:	learn: 22.6228847	total: 197ms	remaining: 283ms
41:	learn: 22.3691527	total: 202ms	remaining: 279ms
42:	learn: 22.1002173	total: 208ms	remaining: 276ms
43:	learn: 21.9157268	total: 213ms	remaining: 271ms
44:	learn: 21.7229102	total: 218ms	remaining: 267ms
45:	learn: 21.4642005	total: 223ms	remaining: 262ms
46:	learn: 21.3029442	total: 229ms	remaining: 258ms
47:	learn: 21.1469792	total: 234ms	remaining: 254ms
48:	learn: 20.9458235	total: 239ms	remaining: 249ms
49:	learn: 20.7335242	total: 244ms	remaining: 244ms
50:	learn: 20.5440269	total: 248ms	remaining: 238ms
51:	learn: 20.3661449	total: 253ms	remaining: 233ms
52:	learn: 20.2158134	total: 257ms	remaining: 228ms
53:	learn: 19.9934873	total: 261ms	remaining: 222ms
54:	learn: 19.7879739	total: 266ms	remaining: 217ms
55:	learn: 19.6630460	total: 271ms	remaining: 213ms
56:	learn: 19.5152729	total: 275ms	remaining: 208ms
57:	learn: 19.3581128	total: 280ms	remaining: 202ms
58:	learn: 19.2209303	total: 284ms	remaining: 197ms
59:	learn: 19.0965248	total: 288ms	remaining: 192ms
60:	learn: 19.0035954	total: 292ms	remaining: 187ms
61:	learn: 18.8554149	total: 297ms	remaining: 182ms
62:	learn: 18.7095427	total: 302ms	remaining: 177ms
63:	learn: 18.5751494	total: 306ms	remaining: 172ms
64:	learn: 18.4678251	total: 311ms	remaining: 167ms
65:	learn: 18.3500325	total: 315ms	remaining: 162ms
66:	learn: 18.2088983	total: 320ms	remaining: 157ms
67:	learn: 18.0737705	total: 324ms	remaining: 153ms
68:	learn: 17.9325058	total: 331ms	remaining: 149ms
69:	learn: 17.8003911	total: 338ms	remaining: 145ms
70:	learn: 17.7385366	total: 346ms	remaining: 141ms
71:	learn: 17.6106998	total: 352ms	remaining: 137ms
72:	learn: 17.4816270	total: 357ms	remaining: 132ms
73:	learn: 17.4025554	total: 362ms	remaining: 127ms
74:	learn: 17.2902108	total: 366ms	remaining: 122ms
75:	learn: 17.2158048	total: 371ms	remaining: 117ms
76:	learn: 17.1261053	total: 375ms	remaining: 112ms
77:	learn: 17.0308917	total: 380ms	remaining: 107ms
78:	learn: 16.9546705	total: 384ms	remaining: 102ms
79:	learn: 16.8319165	total: 388ms	remaining: 97ms
80:	learn: 16.7687017	total: 393ms	remaining: 92.1ms
81:	learn: 16.6972326	total: 397ms	remaining: 87.2ms
82:	learn: 16.6124580	total: 402ms	remaining: 82.3ms
83:	learn: 16.4999052	total: 407ms	remaining: 77.5ms
84:	learn: 16.4302484	total: 412ms	remaining: 72.6ms
85:	learn: 16.3201363	total: 416ms	remaining: 67.7ms
86:	learn: 16.2534314	total: 420ms	remaining: 62.8ms
87:	learn: 16.1720485	total: 425ms	remaining: 57.9ms
88:	learn: 16.0625751	total: 429ms	remaining: 53.1ms
89:	learn: 15.9135088	total: 434ms	remaining: 48.2ms
90:	learn: 15.8658863	total: 438ms	remaining: 43.3ms
91:	learn: 15.8066805	total: 442ms	remaining: 38.5ms
92:	learn: 15.7412103	total: 447ms	remaining: 33.6ms
93:	learn: 15.6542776	total: 451ms	remaining: 28.8ms
94:	learn: 15.5760334	total: 455ms	remaining: 24ms
95:	learn: 15.5434131	total: 460ms	remaining: 19.1ms
96:	learn: 15.4709561	total: 464ms	remaining: 14.4ms
97:	learn: 15.4449618	total: 468ms	remaining: 9.56ms
98:	learn: 15.3752761	total: 473ms	remaining: 4.77ms
99:	learn: 15.3106595	total: 477ms	remaining: 0us
0:	learn: 46.7142257	total: 8.87ms	remaining: 878ms
1:	learn: 45.7634153	total: 16.5ms	remaining: 808ms
2:	learn: 45.0054253	total: 23.7ms	remaining: 765ms
3:	learn: 44.2120432	total: 31.7ms	remaining: 762ms
4:	learn: 43.3960472	total: 37.4ms	remaining: 710ms
5:	learn: 42.8588120	total: 42.7ms	remaining: 668ms
6:	learn: 41.9533701	total: 48.7ms	remaining: 647ms
7:	learn: 41.2745030	total: 54.4ms	remaining: 625ms
8:	learn: 40.6797495	total: 59.5ms	remaining: 601ms
9:	learn: 39.9899571	total: 65.5ms	remaining: 590ms
10:	learn: 39.4682100	total: 71.1ms	remaining: 575ms
11:	learn: 39.0305595	total: 76.3ms	remaining: 559ms
12:	learn: 38.4200417	total: 81.4ms	remaining: 545ms
13:	learn: 37.8425194	total: 86.5ms	remaining: 532ms
14:	learn: 37.4203127	total: 91.5ms	remaining: 519ms
15:	learn: 36.9917688	total: 97ms	remaining: 509ms
16:	learn: 36.5544138	total: 102ms	remaining: 500ms
17:	learn: 36.0727019	total: 107ms	remaining: 487ms
18:	learn: 35.4835715	total: 111ms	remaining: 473ms
19:	learn: 34.9865654	total: 115ms	remaining: 461ms
20:	learn: 34.6063373	total: 119ms	remaining: 449ms
21:	learn: 34.0997289	total: 124ms	remaining: 438ms
22:	learn: 33.7313171	total: 128ms	remaining: 428ms
23:	learn: 33.3582000	total: 132ms	remaining: 418ms
24:	learn: 32.9432456	total: 136ms	remaining: 409ms
25:	learn: 32.5220888	total: 140ms	remaining: 400ms
26:	learn: 32.2172292	total: 145ms	remaining: 391ms
27:	learn: 31.8972904	total: 149ms	remaining: 383ms
28:	learn: 31.6405350	total: 153ms	remaining: 375ms
29:	learn: 31.4167702	total: 157ms	remaining: 367ms
30:	learn: 30.8541961	total: 159ms	remaining: 354ms
31:	learn: 30.5572111	total: 163ms	remaining: 346ms
32:	learn: 30.1700399	total: 167ms	remaining: 340ms
33:	learn: 29.8537271	total: 172ms	remaining: 334ms
34:	learn: 29.6192540	total: 177ms	remaining: 329ms
35:	learn: 29.3276362	total: 184ms	remaining: 327ms
36:	learn: 28.9985179	total: 190ms	remaining: 324ms
37:	learn: 28.7046880	total: 196ms	remaining: 320ms
38:	learn: 28.4412677	total: 203ms	remaining: 317ms
39:	learn: 28.1277292	total: 208ms	remaining: 312ms
40:	learn: 27.9000750	total: 214ms	remaining: 308ms
41:	learn: 27.5433162	total: 221ms	remaining: 305ms
42:	learn: 27.2493285	total: 225ms	remaining: 298ms
43:	learn: 26.9576632	total: 227ms	remaining: 289ms
44:	learn: 26.6177110	total: 231ms	remaining: 283ms
45:	learn: 26.2812456	total: 235ms	remaining: 276ms
46:	learn: 26.0803859	total: 239ms	remaining: 270ms
47:	learn: 25.9543581	total: 243ms	remaining: 264ms
48:	learn: 25.7951582	total: 248ms	remaining: 258ms
49:	learn: 25.6548184	total: 252ms	remaining: 252ms
50:	learn: 25.4010843	total: 256ms	remaining: 246ms
51:	learn: 24.9773937	total: 260ms	remaining: 240ms
52:	learn: 24.8026156	total: 265ms	remaining: 235ms
53:	learn: 24.5568053	total: 269ms	remaining: 229ms
54:	learn: 24.2281839	total: 273ms	remaining: 223ms
55:	learn: 23.9202795	total: 277ms	remaining: 218ms
56:	learn: 23.7625591	total: 281ms	remaining: 212ms
57:	learn: 23.5429721	total: 286ms	remaining: 207ms
58:	learn: 23.3175893	total: 290ms	remaining: 202ms
59:	learn: 23.2035130	total: 294ms	remaining: 196ms
60:	learn: 23.0232450	total: 298ms	remaining: 191ms
61:	learn: 22.8384958	total: 303ms	remaining: 186ms
62:	learn: 22.6499902	total: 307ms	remaining: 180ms
63:	learn: 22.4577426	total: 311ms	remaining: 175ms
64:	learn: 22.3333158	total: 316ms	remaining: 170ms
65:	learn: 22.2064131	total: 320ms	remaining: 165ms
66:	learn: 22.1434971	total: 324ms	remaining: 160ms
67:	learn: 21.9596519	total: 329ms	remaining: 155ms
68:	learn: 21.8475576	total: 333ms	remaining: 149ms
69:	learn: 21.6954745	total: 337ms	remaining: 145ms
70:	learn: 21.5635976	total: 342ms	remaining: 140ms
71:	learn: 21.4588506	total: 346ms	remaining: 135ms
72:	learn: 21.3527268	total: 350ms	remaining: 129ms
73:	learn: 21.2661288	total: 355ms	remaining: 125ms
74:	learn: 21.1817333	total: 359ms	remaining: 120ms
75:	learn: 21.0527553	total: 364ms	remaining: 115ms
76:	learn: 20.9229021	total: 368ms	remaining: 110ms
77:	learn: 20.7563946	total: 373ms	remaining: 105ms
78:	learn: 20.6569831	total: 378ms	remaining: 100ms
79:	learn: 20.4982663	total: 382ms	remaining: 95.6ms
80:	learn: 20.3185460	total: 387ms	remaining: 90.8ms
81:	learn: 20.2096241	total: 392ms	remaining: 86ms
82:	learn: 20.1274891	total: 397ms	remaining: 81.2ms
83:	learn: 20.0740139	total: 402ms	remaining: 76.5ms
84:	learn: 19.9630699	total: 410ms	remaining: 72.3ms
85:	learn: 19.8753899	total: 417ms	remaining: 67.9ms
86:	learn: 19.6563612	total: 426ms	remaining: 63.7ms
87:	learn: 19.4680232	total: 432ms	remaining: 58.9ms
88:	learn: 19.3503431	total: 438ms	remaining: 54.1ms
89:	learn: 19.2221379	total: 442ms	remaining: 49.2ms
90:	learn: 19.0732542	total: 448ms	remaining: 44.3ms
91:	learn: 18.9825190	total: 453ms	remaining: 39.4ms
92:	learn: 18.8839009	total: 462ms	remaining: 34.7ms
93:	learn: 18.8012219	total: 467ms	remaining: 29.8ms
94:	learn: 18.7172713	total: 472ms	remaining: 24.8ms
95:	learn: 18.6201170	total: 477ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 483ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 488ms	remaining: 9.95ms
98:	learn: 18.3289700	total: 493ms	remaining: 4.97ms
99:	learn: 18.2227333	total: 499ms	remaining: 0us
0:	learn: 46.3764524	total: 5.11ms	remaining: 506ms
1:	learn: 45.5561269	total: 8.99ms	remaining: 440ms
2:	learn: 44.8811245	total: 13ms	remaining: 420ms
3:	learn: 44.0788617	total: 16.9ms	remaining: 407ms
4:	learn: 43.3619790	total: 22ms	remaining: 418ms
5:	learn: 42.6912112	total: 26.1ms	remaining: 409ms
6:	learn: 42.2292118	total: 30.1ms	remaining: 401ms
7:	learn: 41.7725191	total: 34.3ms	remaining: 394ms
8:	learn: 41.1676614	total: 39.1ms	remaining: 395ms
9:	learn: 40.5771076	total: 43.4ms	remaining: 390ms
10:	learn: 39.8343757	total: 47.9ms	remaining: 388ms
11:	learn: 39.3761142	total: 52.4ms	remaining: 384ms
12:	learn: 38.5254692	total: 57.3ms	remaining: 383ms
13:	learn: 37.9629555	total: 62ms	remaining: 381ms
14:	learn: 37.4418438	total: 66.7ms	remaining: 378ms
15:	learn: 37.0507283	total: 75.7ms	remaining: 397ms
16:	learn: 36.6264217	total: 82.8ms	remaining: 404ms
17:	learn: 36.1114940	total: 90.1ms	remaining: 411ms
18:	learn: 35.7193862	total: 95.1ms	remaining: 405ms
19:	learn: 35.3301177	total: 101ms	remaining: 405ms
20:	learn: 35.0598280	total: 105ms	remaining: 395ms
21:	learn: 34.5469736	total: 110ms	remaining: 389ms
22:	learn: 34.2064215	total: 114ms	remaining: 381ms
23:	learn: 33.7280710	total: 118ms	remaining: 373ms
24:	learn: 33.3282940	total: 122ms	remaining: 366ms
25:	learn: 32.8478961	total: 126ms	remaining: 359ms
26:	learn: 32.5722164	total: 131ms	remaining: 353ms
27:	learn: 32.2457019	total: 135ms	remaining: 347ms
28:	learn: 31.9230495	total: 139ms	remaining: 341ms
29:	learn: 31.4311611	total: 144ms	remaining: 336ms
30:	learn: 30.9179052	total: 148ms	remaining: 330ms
31:	learn: 30.6201141	total: 152ms	remaining: 324ms
32:	learn: 30.3421106	total: 157ms	remaining: 318ms
33:	learn: 29.9885373	total: 161ms	remaining: 313ms
34:	learn: 29.7462780	total: 165ms	remaining: 307ms
35:	learn: 29.3607153	total: 169ms	remaining: 301ms
36:	learn: 29.1793078	total: 174ms	remaining: 296ms
37:	learn: 28.9276538	total: 179ms	remaining: 292ms
38:	learn: 28.6903934	total: 183ms	remaining: 287ms
39:	learn: 28.2095033	total: 188ms	remaining: 282ms
40:	learn: 27.7990608	total: 193ms	remaining: 278ms
41:	learn: 27.5406632	total: 198ms	remaining: 274ms
42:	learn: 27.2575376	total: 203ms	remaining: 269ms
43:	learn: 26.9741707	total: 208ms	remaining: 265ms
44:	learn: 26.6606899	total: 213ms	remaining: 260ms
45:	learn: 26.4015833	total: 217ms	remaining: 255ms
46:	learn: 26.1828993	total: 221ms	remaining: 249ms
47:	learn: 26.0233709	total: 224ms	remaining: 242ms
48:	learn: 25.9300399	total: 228ms	remaining: 237ms
49:	learn: 25.5861489	total: 232ms	remaining: 232ms
50:	learn: 25.4322012	total: 236ms	remaining: 227ms
51:	learn: 25.1595644	total: 241ms	remaining: 222ms
52:	learn: 24.9955303	total: 245ms	remaining: 218ms
53:	learn: 24.7273966	total: 250ms	remaining: 213ms
54:	learn: 24.5747978	total: 254ms	remaining: 208ms
55:	learn: 24.3807977	total: 258ms	remaining: 203ms
56:	learn: 24.1689569	total: 263ms	remaining: 198ms
57:	learn: 23.9898221	total: 267ms	remaining: 194ms
58:	learn: 23.7566414	total: 276ms	remaining: 192ms
59:	learn: 23.6641165	total: 284ms	remaining: 189ms
60:	learn: 23.5658066	total: 292ms	remaining: 187ms
61:	learn: 23.4338851	total: 299ms	remaining: 183ms
62:	learn: 23.2408837	total: 305ms	remaining: 179ms
63:	learn: 23.0642038	total: 309ms	remaining: 174ms
64:	learn: 22.9032045	total: 315ms	remaining: 170ms
65:	learn: 22.7736138	total: 320ms	remaining: 165ms
66:	learn: 22.6836443	total: 326ms	remaining: 160ms
67:	learn: 22.5983654	total: 331ms	remaining: 156ms
68:	learn: 22.4419813	total: 337ms	remaining: 151ms
69:	learn: 22.2863339	total: 342ms	remaining: 146ms
70:	learn: 22.1792943	total: 347ms	remaining: 142ms
71:	learn: 22.1130574	total: 362ms	remaining: 141ms
72:	learn: 21.9858161	total: 367ms	remaining: 136ms
73:	learn: 21.8577784	total: 372ms	remaining: 131ms
74:	learn: 21.7845222	total: 378ms	remaining: 126ms
75:	learn: 21.6831390	total: 383ms	remaining: 121ms
76:	learn: 21.6292521	total: 388ms	remaining: 116ms
77:	learn: 21.5789330	total: 393ms	remaining: 111ms
78:	learn: 21.5420942	total: 397ms	remaining: 105ms
79:	learn: 21.4280939	total: 401ms	remaining: 100ms
80:	learn: 21.3641165	total: 405ms	remaining: 95.1ms
81:	learn: 21.2734814	total: 410ms	remaining: 89.9ms
82:	learn: 21.2220323	total: 414ms	remaining: 84.8ms
83:	learn: 21.0625792	total: 419ms	remaining: 79.7ms
84:	learn: 20.9488320	total: 424ms	remaining: 74.8ms
85:	learn: 20.8504255	total: 428ms	remaining: 69.7ms
86:	learn: 20.7848510	total: 432ms	remaining: 64.6ms
87:	learn: 20.7247442	total: 437ms	remaining: 59.6ms
88:	learn: 20.5698590	total: 442ms	remaining: 54.6ms
89:	learn: 20.4067620	total: 446ms	remaining: 49.6ms
90:	learn: 20.3062482	total: 451ms	remaining: 44.6ms
91:	learn: 20.2029696	total: 456ms	remaining: 39.6ms
92:	learn: 20.1384849	total: 460ms	remaining: 34.6ms
93:	learn: 20.0260709	total: 465ms	remaining: 29.7ms
94:	learn: 19.9122100	total: 471ms	remaining: 24.8ms
95:	learn: 19.8648487	total: 479ms	remaining: 20ms
96:	learn: 19.8207072	total: 487ms	remaining: 15.1ms
97:	learn: 19.7261189	total: 494ms	remaining: 10.1ms
98:	learn: 19.7042438	total: 500ms	remaining: 5.05ms
99:	learn: 19.6546645	total: 505ms	remaining: 0us
0:	learn: 47.0239288	total: 4.13ms	remaining: 409ms
1:	learn: 46.2253829	total: 8.42ms	remaining: 412ms
2:	learn: 45.5580301	total: 12.9ms	remaining: 416ms
3:	learn: 44.7273237	total: 17.6ms	remaining: 423ms
4:	learn: 43.8867421	total: 21.4ms	remaining: 407ms
5:	learn: 43.3615911	total: 25.4ms	remaining: 399ms
6:	learn: 42.8548390	total: 30.3ms	remaining: 403ms
7:	learn: 42.1606758	total: 34.9ms	remaining: 401ms
8:	learn: 41.6625870	total: 38.9ms	remaining: 393ms
9:	learn: 40.9497092	total: 43.9ms	remaining: 395ms
10:	learn: 40.1886318	total: 49.1ms	remaining: 397ms
11:	learn: 39.7456423	total: 53.8ms	remaining: 395ms
12:	learn: 39.1171373	total: 58.1ms	remaining: 389ms
13:	learn: 38.5451069	total: 62.6ms	remaining: 384ms
14:	learn: 38.0155834	total: 67.3ms	remaining: 382ms
15:	learn: 37.5631354	total: 71.7ms	remaining: 376ms
16:	learn: 37.1030023	total: 75.6ms	remaining: 369ms
17:	learn: 36.4563029	total: 80.1ms	remaining: 365ms
18:	learn: 36.0160976	total: 84.2ms	remaining: 359ms
19:	learn: 35.5079827	total: 89.3ms	remaining: 357ms
20:	learn: 35.2111885	total: 94.5ms	remaining: 356ms
21:	learn: 34.9397465	total: 99.4ms	remaining: 352ms
22:	learn: 34.5270048	total: 104ms	remaining: 349ms
23:	learn: 34.0169260	total: 109ms	remaining: 345ms
24:	learn: 33.7454892	total: 114ms	remaining: 341ms
25:	learn: 33.2648157	total: 118ms	remaining: 336ms
26:	learn: 32.8899427	total: 127ms	remaining: 343ms
27:	learn: 32.6185050	total: 134ms	remaining: 345ms
28:	learn: 32.3528531	total: 144ms	remaining: 352ms
29:	learn: 32.0859923	total: 150ms	remaining: 349ms
30:	learn: 31.6511144	total: 156ms	remaining: 348ms
31:	learn: 31.2571765	total: 162ms	remaining: 344ms
32:	learn: 30.9770049	total: 167ms	remaining: 339ms
33:	learn: 30.6084872	total: 172ms	remaining: 334ms
34:	learn: 30.3448632	total: 177ms	remaining: 329ms
35:	learn: 30.0360942	total: 182ms	remaining: 324ms
36:	learn: 29.6648968	total: 188ms	remaining: 319ms
37:	learn: 29.3165114	total: 193ms	remaining: 315ms
38:	learn: 29.0829198	total: 198ms	remaining: 310ms
39:	learn: 28.7752064	total: 203ms	remaining: 305ms
40:	learn: 28.3622191	total: 208ms	remaining: 299ms
41:	learn: 28.1346631	total: 213ms	remaining: 294ms
42:	learn: 27.9585719	total: 219ms	remaining: 290ms
43:	learn: 27.6565566	total: 224ms	remaining: 285ms
44:	learn: 27.3616172	total: 229ms	remaining: 280ms
45:	learn: 27.0658637	total: 233ms	remaining: 274ms
46:	learn: 26.8660382	total: 238ms	remaining: 268ms
47:	learn: 26.6536078	total: 242ms	remaining: 263ms
48:	learn: 26.3524440	total: 247ms	remaining: 257ms
49:	learn: 26.1595277	total: 251ms	remaining: 251ms
50:	learn: 25.9273523	total: 255ms	remaining: 245ms
51:	learn: 25.7195580	total: 260ms	remaining: 240ms
52:	learn: 25.5730225	total: 264ms	remaining: 234ms
53:	learn: 25.3455276	total: 269ms	remaining: 229ms
54:	learn: 25.2289675	total: 273ms	remaining: 223ms
55:	learn: 25.0133024	total: 278ms	remaining: 218ms
56:	learn: 24.8406714	total: 282ms	remaining: 213ms
57:	learn: 24.6367857	total: 287ms	remaining: 208ms
58:	learn: 24.5338177	total: 292ms	remaining: 203ms
59:	learn: 24.3799964	total: 297ms	remaining: 198ms
60:	learn: 24.1447492	total: 301ms	remaining: 193ms
61:	learn: 23.9880495	total: 307ms	remaining: 188ms
62:	learn: 23.7140630	total: 312ms	remaining: 183ms
63:	learn: 23.5003791	total: 318ms	remaining: 179ms
64:	learn: 23.3207645	total: 326ms	remaining: 175ms
65:	learn: 23.1958356	total: 333ms	remaining: 172ms
66:	learn: 23.0471302	total: 339ms	remaining: 167ms
67:	learn: 22.8977183	total: 344ms	remaining: 162ms
68:	learn: 22.7187400	total: 350ms	remaining: 157ms
69:	learn: 22.6523405	total: 355ms	remaining: 152ms
70:	learn: 22.4767453	total: 359ms	remaining: 147ms
71:	learn: 22.3243677	total: 363ms	remaining: 141ms
72:	learn: 22.2133096	total: 368ms	remaining: 136ms
73:	learn: 22.1151713	total: 372ms	remaining: 131ms
74:	learn: 22.0296666	total: 377ms	remaining: 126ms
75:	learn: 21.9195980	total: 381ms	remaining: 120ms
76:	learn: 21.8401730	total: 386ms	remaining: 115ms
77:	learn: 21.8079797	total: 391ms	remaining: 110ms
78:	learn: 21.7274109	total: 396ms	remaining: 105ms
79:	learn: 21.6663032	total: 400ms	remaining: 99.9ms
80:	learn: 21.5633117	total: 404ms	remaining: 94.7ms
81:	learn: 21.4542467	total: 408ms	remaining: 89.5ms
82:	learn: 21.3177957	total: 412ms	remaining: 84.5ms
83:	learn: 21.1289167	total: 417ms	remaining: 79.4ms
84:	learn: 21.0297368	total: 421ms	remaining: 74.3ms
85:	learn: 20.9089564	total: 425ms	remaining: 69.3ms
86:	learn: 20.7653988	total: 430ms	remaining: 64.3ms
87:	learn: 20.6521894	total: 435ms	remaining: 59.3ms
88:	learn: 20.5193021	total: 439ms	remaining: 54.2ms
89:	learn: 20.4361620	total: 443ms	remaining: 49.2ms
90:	learn: 20.3546710	total: 448ms	remaining: 44.3ms
91:	learn: 20.2513296	total: 452ms	remaining: 39.3ms
92:	learn: 20.1605550	total: 456ms	remaining: 34.3ms
93:	learn: 20.0515942	total: 461ms	remaining: 29.4ms
94:	learn: 19.9800764	total: 465ms	remaining: 24.5ms
95:	learn: 19.8996532	total: 470ms	remaining: 19.6ms
96:	learn: 19.8450910	total: 474ms	remaining: 14.7ms
97:	learn: 19.7887346	total: 479ms	remaining: 9.78ms
98:	learn: 19.7230872	total: 483ms	remaining: 4.88ms
99:	learn: 19.6328825	total: 488ms	remaining: 0us
0:	learn: 27.6506730	total: 7.95ms	remaining: 787ms
1:	learn: 27.1638793	total: 13.1ms	remaining: 642ms
2:	learn: 26.8000665	total: 18.7ms	remaining: 603ms
3:	learn: 26.4256132	total: 23.9ms	remaining: 574ms
4:	learn: 26.0088351	total: 29.3ms	remaining: 557ms
5:	learn: 25.7558298	total: 35.4ms	remaining: 554ms
6:	learn: 25.3380711	total: 40.8ms	remaining: 542ms
7:	learn: 25.0571611	total: 46.1ms	remaining: 530ms
8:	learn: 24.6790148	total: 51.3ms	remaining: 519ms
9:	learn: 24.3600941	total: 56.8ms	remaining: 511ms
10:	learn: 24.1105667	total: 62ms	remaining: 502ms
11:	learn: 23.7736542	total: 67.2ms	remaining: 493ms
12:	learn: 23.5824429	total: 73ms	remaining: 489ms
13:	learn: 23.2658303	total: 79.1ms	remaining: 486ms
14:	learn: 23.0061886	total: 84.8ms	remaining: 481ms
15:	learn: 22.8060389	total: 89.7ms	remaining: 471ms
16:	learn: 22.5899735	total: 94.2ms	remaining: 460ms
17:	learn: 22.3625048	total: 98.6ms	remaining: 449ms
18:	learn: 22.0706477	total: 103ms	remaining: 441ms
19:	learn: 21.8739394	total: 108ms	remaining: 433ms
20:	learn: 21.6143650	total: 113ms	remaining: 424ms
21:	learn: 21.4571623	total: 117ms	remaining: 417ms
22:	learn: 21.2395769	total: 122ms	remaining: 408ms
23:	learn: 20.9801795	total: 126ms	remaining: 400ms
24:	learn: 20.8036808	total: 131ms	remaining: 393ms
25:	learn: 20.6387539	total: 135ms	remaining: 386ms
26:	learn: 20.4401427	total: 140ms	remaining: 380ms
27:	learn: 20.2879575	total: 145ms	remaining: 372ms
28:	learn: 20.0538664	total: 149ms	remaining: 366ms
29:	learn: 19.8363102	total: 154ms	remaining: 360ms
30:	learn: 19.7015446	total: 160ms	remaining: 355ms
31:	learn: 19.5483114	total: 164ms	remaining: 349ms
32:	learn: 19.4163053	total: 169ms	remaining: 343ms
33:	learn: 19.2880625	total: 174ms	remaining: 338ms
34:	learn: 19.1303389	total: 179ms	remaining: 333ms
35:	learn: 18.9237448	total: 187ms	remaining: 332ms
36:	learn: 18.8142925	total: 195ms	remaining: 331ms
37:	learn: 18.6994696	total: 201ms	remaining: 328ms
38:	learn: 18.5629211	total: 206ms	remaining: 323ms
39:	learn: 18.4600917	total: 212ms	remaining: 319ms
40:	learn: 18.3567139	total: 217ms	remaining: 312ms
41:	learn: 18.2120527	total: 221ms	remaining: 305ms
42:	learn: 18.0688062	total: 226ms	remaining: 299ms
43:	learn: 17.9250181	total: 230ms	remaining: 293ms
44:	learn: 17.8399138	total: 235ms	remaining: 287ms
45:	learn: 17.6720713	total: 239ms	remaining: 281ms
46:	learn: 17.5273091	total: 244ms	remaining: 275ms
47:	learn: 17.4232814	total: 248ms	remaining: 269ms
48:	learn: 17.2957579	total: 253ms	remaining: 263ms
49:	learn: 17.1892874	total: 257ms	remaining: 257ms
50:	learn: 17.0490355	total: 262ms	remaining: 251ms
51:	learn: 16.9666450	total: 266ms	remaining: 246ms
52:	learn: 16.8600056	total: 271ms	remaining: 240ms
53:	learn: 16.7542588	total: 275ms	remaining: 235ms
54:	learn: 16.6316077	total: 280ms	remaining: 229ms
55:	learn: 16.5588112	total: 285ms	remaining: 224ms
56:	learn: 16.5010186	total: 289ms	remaining: 218ms
57:	learn: 16.4081540	total: 294ms	remaining: 213ms
58:	learn: 16.3040451	total: 298ms	remaining: 207ms
59:	learn: 16.1890564	total: 303ms	remaining: 202ms
60:	learn: 16.0977103	total: 307ms	remaining: 196ms
61:	learn: 15.9627607	total: 311ms	remaining: 191ms
62:	learn: 15.9022248	total: 316ms	remaining: 185ms
63:	learn: 15.8151881	total: 320ms	remaining: 180ms
64:	learn: 15.7353125	total: 324ms	remaining: 175ms
65:	learn: 15.6312897	total: 329ms	remaining: 169ms
66:	learn: 15.5330927	total: 333ms	remaining: 164ms
67:	learn: 15.4698681	total: 338ms	remaining: 159ms
68:	learn: 15.4108571	total: 343ms	remaining: 154ms
69:	learn: 15.3492945	total: 348ms	remaining: 149ms
70:	learn: 15.3036540	total: 353ms	remaining: 144ms
71:	learn: 15.2390833	total: 358ms	remaining: 139ms
72:	learn: 15.1556327	total: 363ms	remaining: 134ms
73:	learn: 15.1016315	total: 376ms	remaining: 132ms
74:	learn: 15.0287076	total: 383ms	remaining: 128ms
75:	learn: 14.9530572	total: 390ms	remaining: 123ms
76:	learn: 14.8965517	total: 395ms	remaining: 118ms
77:	learn: 14.8125426	total: 401ms	remaining: 113ms
78:	learn: 14.7435359	total: 407ms	remaining: 108ms
79:	learn: 14.6963163	total: 412ms	remaining: 103ms
80:	learn: 14.6200060	total: 417ms	remaining: 97.9ms
81:	learn: 14.5707760	total: 423ms	remaining: 92.8ms
82:	learn: 14.5053651	total: 428ms	remaining: 87.6ms
83:	learn: 14.4115458	total: 433ms	remaining: 82.5ms
84:	learn: 14.3117159	total: 438ms	remaining: 77.4ms
85:	learn: 14.2511326	total: 444ms	remaining: 72.2ms
86:	learn: 14.1372486	total: 449ms	remaining: 67.1ms
87:	learn: 14.0992301	total: 454ms	remaining: 62ms
88:	learn: 14.0228331	total: 460ms	remaining: 56.9ms
89:	learn: 13.9249836	total: 465ms	remaining: 51.7ms
90:	learn: 13.8679364	total: 471ms	remaining: 46.5ms
91:	learn: 13.8405578	total: 476ms	remaining: 41.4ms
92:	learn: 13.7711325	total: 480ms	remaining: 36.2ms
93:	learn: 13.7357019	total: 486ms	remaining: 31ms
94:	learn: 13.6735271	total: 492ms	remaining: 25.9ms
95:	learn: 13.5682393	total: 496ms	remaining: 20.7ms
96:	learn: 13.5342610	total: 500ms	remaining: 15.5ms
97:	learn: 13.4710034	total: 505ms	remaining: 10.3ms
98:	learn: 13.4022402	total: 509ms	remaining: 5.14ms
99:	learn: 13.3351238	total: 513ms	remaining: 0us
0:	learn: 42.9181702	total: 5.3ms	remaining: 525ms
1:	learn: 42.0286736	total: 10.1ms	remaining: 495ms
2:	learn: 41.2764568	total: 14.8ms	remaining: 478ms
3:	learn: 40.4721918	total: 19.6ms	remaining: 470ms
4:	learn: 39.8518928	total: 24.2ms	remaining: 459ms
5:	learn: 39.2645479	total: 28.9ms	remaining: 453ms
6:	learn: 38.4453704	total: 36.7ms	remaining: 488ms
7:	learn: 37.7122059	total: 44.3ms	remaining: 509ms
8:	learn: 36.9185796	total: 51.1ms	remaining: 516ms
9:	learn: 36.1668427	total: 56.7ms	remaining: 510ms
10:	learn: 35.5639029	total: 62.6ms	remaining: 507ms
11:	learn: 34.7724193	total: 67.1ms	remaining: 492ms
12:	learn: 34.3053433	total: 71.7ms	remaining: 480ms
13:	learn: 33.6561327	total: 72.9ms	remaining: 448ms
14:	learn: 33.0134042	total: 77.2ms	remaining: 438ms
15:	learn: 32.4483300	total: 81.3ms	remaining: 427ms
16:	learn: 31.8581144	total: 85.3ms	remaining: 416ms
17:	learn: 31.2858301	total: 89.6ms	remaining: 408ms
18:	learn: 30.8483018	total: 94ms	remaining: 401ms
19:	learn: 30.4174622	total: 98.5ms	remaining: 394ms
20:	learn: 29.8994411	total: 103ms	remaining: 387ms
21:	learn: 29.5045355	total: 107ms	remaining: 380ms
22:	learn: 28.9923519	total: 112ms	remaining: 374ms
23:	learn: 28.4255717	total: 116ms	remaining: 367ms
24:	learn: 28.0283139	total: 121ms	remaining: 362ms
25:	learn: 27.7434814	total: 125ms	remaining: 355ms
26:	learn: 27.2770731	total: 129ms	remaining: 349ms
27:	learn: 26.8928270	total: 133ms	remaining: 342ms
28:	learn: 26.4282671	total: 137ms	remaining: 336ms
29:	learn: 26.0272764	total: 142ms	remaining: 331ms
30:	learn: 25.7579312	total: 146ms	remaining: 326ms
31:	learn: 25.4542434	total: 150ms	remaining: 320ms
32:	learn: 25.1232564	total: 155ms	remaining: 315ms
33:	learn: 24.8110795	total: 159ms	remaining: 309ms
34:	learn: 24.5077579	total: 164ms	remaining: 304ms
35:	learn: 24.1909000	total: 168ms	remaining: 299ms
36:	learn: 23.8719468	total: 173ms	remaining: 294ms
37:	learn: 23.5764366	total: 174ms	remaining: 284ms
38:	learn: 23.3468086	total: 178ms	remaining: 279ms
39:	learn: 23.0908771	total: 182ms	remaining: 274ms
40:	learn: 22.8580876	total: 187ms	remaining: 269ms
41:	learn: 22.6060825	total: 191ms	remaining: 264ms
42:	learn: 22.4125407	total: 196ms	remaining: 259ms
43:	learn: 22.1990617	total: 200ms	remaining: 254ms
44:	learn: 21.9716164	total: 204ms	remaining: 249ms
45:	learn: 21.8360935	total: 208ms	remaining: 245ms
46:	learn: 21.6169256	total: 213ms	remaining: 240ms
47:	learn: 21.4620612	total: 217ms	remaining: 235ms
48:	learn: 21.2894194	total: 222ms	remaining: 231ms
49:	learn: 21.1066266	total: 227ms	remaining: 227ms
50:	learn: 20.9484898	total: 232ms	remaining: 222ms
51:	learn: 20.7195338	total: 236ms	remaining: 218ms
52:	learn: 20.4899740	total: 241ms	remaining: 214ms
53:	learn: 20.3356583	total: 246ms	remaining: 209ms
54:	learn: 20.0754393	total: 251ms	remaining: 205ms
55:	learn: 19.9199159	total: 255ms	remaining: 200ms
56:	learn: 19.7761128	total: 260ms	remaining: 196ms
57:	learn: 19.6533060	total: 267ms	remaining: 194ms
58:	learn: 19.5113942	total: 275ms	remaining: 191ms
59:	learn: 19.3985022	total: 287ms	remaining: 191ms
60:	learn: 19.2683443	total: 294ms	remaining: 188ms
61:	learn: 19.1460824	total: 300ms	remaining: 184ms
62:	learn: 19.0042655	total: 305ms	remaining: 179ms
63:	learn: 18.8720873	total: 311ms	remaining: 175ms
64:	learn: 18.7183888	total: 316ms	remaining: 170ms
65:	learn: 18.5472360	total: 322ms	remaining: 166ms
66:	learn: 18.3976642	total: 327ms	remaining: 161ms
67:	learn: 18.2282851	total: 333ms	remaining: 156ms
68:	learn: 18.1469157	total: 338ms	remaining: 152ms
69:	learn: 18.0649494	total: 343ms	remaining: 147ms
70:	learn: 17.9485405	total: 348ms	remaining: 142ms
71:	learn: 17.8460261	total: 353ms	remaining: 137ms
72:	learn: 17.7679843	total: 359ms	remaining: 133ms
73:	learn: 17.5989290	total: 364ms	remaining: 128ms
74:	learn: 17.4381322	total: 368ms	remaining: 123ms
75:	learn: 17.3370886	total: 372ms	remaining: 118ms
76:	learn: 17.2675308	total: 377ms	remaining: 113ms
77:	learn: 17.1946430	total: 381ms	remaining: 107ms
78:	learn: 17.0923725	total: 385ms	remaining: 102ms
79:	learn: 17.0537265	total: 389ms	remaining: 97.3ms
80:	learn: 16.9456831	total: 394ms	remaining: 92.4ms
81:	learn: 16.8457353	total: 398ms	remaining: 87.4ms
82:	learn: 16.7469310	total: 403ms	remaining: 82.5ms
83:	learn: 16.6679953	total: 407ms	remaining: 77.5ms
84:	learn: 16.6274189	total: 411ms	remaining: 72.6ms
85:	learn: 16.5516530	total: 416ms	remaining: 67.7ms
86:	learn: 16.4886066	total: 420ms	remaining: 62.8ms
87:	learn: 16.3947859	total: 425ms	remaining: 57.9ms
88:	learn: 16.3406495	total: 429ms	remaining: 53.1ms
89:	learn: 16.3019195	total: 434ms	remaining: 48.2ms
90:	learn: 16.1860681	total: 439ms	remaining: 43.4ms
91:	learn: 16.1282812	total: 443ms	remaining: 38.6ms
92:	learn: 16.0303652	total: 448ms	remaining: 33.7ms
93:	learn: 15.9561692	total: 452ms	remaining: 28.9ms
94:	learn: 15.8733994	total: 458ms	remaining: 24.1ms
95:	learn: 15.8108833	total: 465ms	remaining: 19.4ms
96:	learn: 15.7606004	total: 472ms	remaining: 14.6ms
97:	learn: 15.6984664	total: 480ms	remaining: 9.79ms
98:	learn: 15.6223632	total: 486ms	remaining: 4.91ms
99:	learn: 15.5671136	total: 492ms	remaining: 0us
0:	learn: 46.4788614	total: 2.06ms	remaining: 204ms
1:	learn: 45.7608372	total: 7.14ms	remaining: 350ms
2:	learn: 44.8825004	total: 12.2ms	remaining: 394ms
3:	learn: 44.0362738	total: 16.9ms	remaining: 405ms
4:	learn: 43.2086374	total: 21.7ms	remaining: 412ms
5:	learn: 42.5835773	total: 26.5ms	remaining: 415ms
6:	learn: 41.9673269	total: 31.1ms	remaining: 414ms
7:	learn: 41.4748717	total: 35.6ms	remaining: 409ms
8:	learn: 40.7129183	total: 40.1ms	remaining: 405ms
9:	learn: 39.8900884	total: 45.1ms	remaining: 406ms
10:	learn: 39.4142193	total: 49.8ms	remaining: 403ms
11:	learn: 38.8645613	total: 54.3ms	remaining: 398ms
12:	learn: 38.2394731	total: 58.6ms	remaining: 392ms
13:	learn: 37.6834515	total: 62.6ms	remaining: 385ms
14:	learn: 37.0673507	total: 66.9ms	remaining: 379ms
15:	learn: 36.4728340	total: 71.2ms	remaining: 374ms
16:	learn: 36.0489086	total: 75.1ms	remaining: 367ms
17:	learn: 35.4744141	total: 79.8ms	remaining: 364ms
18:	learn: 35.0106021	total: 84ms	remaining: 358ms
19:	learn: 34.5586053	total: 88.2ms	remaining: 353ms
20:	learn: 34.1308223	total: 92.3ms	remaining: 347ms
21:	learn: 33.7701450	total: 97.4ms	remaining: 345ms
22:	learn: 33.4425444	total: 102ms	remaining: 341ms
23:	learn: 33.0296412	total: 107ms	remaining: 338ms
24:	learn: 32.6359803	total: 112ms	remaining: 335ms
25:	learn: 32.1846182	total: 117ms	remaining: 332ms
26:	learn: 31.7620230	total: 121ms	remaining: 328ms
27:	learn: 31.4669337	total: 126ms	remaining: 324ms
28:	learn: 31.0792062	total: 134ms	remaining: 329ms
29:	learn: 30.7970537	total: 143ms	remaining: 333ms
30:	learn: 30.4952215	total: 153ms	remaining: 339ms
31:	learn: 30.2845344	total: 160ms	remaining: 341ms
32:	learn: 29.9592732	total: 166ms	remaining: 337ms
33:	learn: 29.6798596	total: 171ms	remaining: 332ms
34:	learn: 29.3368905	total: 177ms	remaining: 328ms
35:	learn: 29.0621238	total: 182ms	remaining: 324ms
36:	learn: 28.6445375	total: 188ms	remaining: 320ms
37:	learn: 28.2418096	total: 193ms	remaining: 315ms
38:	learn: 27.9495390	total: 198ms	remaining: 310ms
39:	learn: 27.6958160	total: 204ms	remaining: 306ms
40:	learn: 27.4811189	total: 209ms	remaining: 300ms
41:	learn: 27.1494420	total: 214ms	remaining: 295ms
42:	learn: 26.8388873	total: 219ms	remaining: 290ms
43:	learn: 26.5721300	total: 225ms	remaining: 286ms
44:	learn: 26.3384738	total: 230ms	remaining: 281ms
45:	learn: 26.1894781	total: 235ms	remaining: 276ms
46:	learn: 25.9580198	total: 240ms	remaining: 271ms
47:	learn: 25.7897985	total: 245ms	remaining: 265ms
48:	learn: 25.6000271	total: 250ms	remaining: 260ms
49:	learn: 25.4130873	total: 254ms	remaining: 254ms
50:	learn: 25.1699061	total: 259ms	remaining: 249ms
51:	learn: 24.9324449	total: 263ms	remaining: 243ms
52:	learn: 24.7729152	total: 268ms	remaining: 238ms
53:	learn: 24.5026563	total: 273ms	remaining: 232ms
54:	learn: 24.2332627	total: 277ms	remaining: 227ms
55:	learn: 23.9611984	total: 282ms	remaining: 222ms
56:	learn: 23.7862603	total: 286ms	remaining: 216ms
57:	learn: 23.6318154	total: 290ms	remaining: 210ms
58:	learn: 23.4443306	total: 295ms	remaining: 205ms
59:	learn: 23.2581425	total: 300ms	remaining: 200ms
60:	learn: 23.0549901	total: 305ms	remaining: 195ms
61:	learn: 22.8666218	total: 310ms	remaining: 190ms
62:	learn: 22.6956739	total: 314ms	remaining: 184ms
63:	learn: 22.5068544	total: 319ms	remaining: 179ms
64:	learn: 22.1859147	total: 323ms	remaining: 174ms
65:	learn: 22.0462043	total: 331ms	remaining: 171ms
66:	learn: 21.9329563	total: 339ms	remaining: 167ms
67:	learn: 21.8029736	total: 346ms	remaining: 163ms
68:	learn: 21.6861091	total: 351ms	remaining: 158ms
69:	learn: 21.4838140	total: 358ms	remaining: 153ms
70:	learn: 21.3548921	total: 362ms	remaining: 148ms
71:	learn: 21.2244517	total: 366ms	remaining: 142ms
72:	learn: 21.0702958	total: 371ms	remaining: 137ms
73:	learn: 20.9224662	total: 375ms	remaining: 132ms
74:	learn: 20.8150357	total: 380ms	remaining: 127ms
75:	learn: 20.6962739	total: 384ms	remaining: 121ms
76:	learn: 20.5809258	total: 389ms	remaining: 116ms
77:	learn: 20.4735470	total: 393ms	remaining: 111ms
78:	learn: 20.3778167	total: 397ms	remaining: 106ms
79:	learn: 20.2211268	total: 402ms	remaining: 100ms
80:	learn: 20.1478678	total: 406ms	remaining: 95.2ms
81:	learn: 20.1032967	total: 410ms	remaining: 90.1ms
82:	learn: 19.9236300	total: 415ms	remaining: 85ms
83:	learn: 19.8151745	total: 419ms	remaining: 79.8ms
84:	learn: 19.7099856	total: 423ms	remaining: 74.6ms
85:	learn: 19.6264833	total: 427ms	remaining: 69.6ms
86:	learn: 19.4916361	total: 432ms	remaining: 64.5ms
87:	learn: 19.4050529	total: 437ms	remaining: 59.5ms
88:	learn: 19.2547065	total: 441ms	remaining: 54.4ms
89:	learn: 19.1610225	total: 445ms	remaining: 49.5ms
90:	learn: 19.0898958	total: 450ms	remaining: 44.5ms
91:	learn: 19.0489664	total: 455ms	remaining: 39.5ms
92:	learn: 18.9206240	total: 460ms	remaining: 34.6ms
93:	learn: 18.8636239	total: 465ms	remaining: 29.7ms
94:	learn: 18.8126187	total: 470ms	remaining: 24.8ms
95:	learn: 18.7579275	total: 475ms	remaining: 19.8ms
96:	learn: 18.6382753	total: 480ms	remaining: 14.9ms
97:	learn: 18.5397334	total: 485ms	remaining: 9.91ms
98:	learn: 18.4375951	total: 490ms	remaining: 4.95ms
99:	learn: 18.4033755	total: 495ms	remaining: 0us
0:	learn: 46.1068821	total: 3.98ms	remaining: 394ms
1:	learn: 45.3970261	total: 15.5ms	remaining: 758ms
2:	learn: 44.8732696	total: 21.9ms	remaining: 707ms
3:	learn: 44.1290184	total: 28.5ms	remaining: 685ms
4:	learn: 43.3290271	total: 33.9ms	remaining: 644ms
5:	learn: 42.7069090	total: 39.3ms	remaining: 616ms
6:	learn: 42.0572971	total: 45ms	remaining: 598ms
7:	learn: 41.4797924	total: 57.3ms	remaining: 659ms
8:	learn: 41.0023122	total: 63.2ms	remaining: 639ms
9:	learn: 40.5330570	total: 68.5ms	remaining: 616ms
10:	learn: 39.9726545	total: 74.3ms	remaining: 601ms
11:	learn: 39.3044053	total: 79.6ms	remaining: 583ms
12:	learn: 38.8169735	total: 85ms	remaining: 569ms
13:	learn: 38.2458761	total: 90.8ms	remaining: 558ms
14:	learn: 37.6280321	total: 96.6ms	remaining: 547ms
15:	learn: 37.0800610	total: 101ms	remaining: 532ms
16:	learn: 36.5489363	total: 106ms	remaining: 517ms
17:	learn: 36.0981456	total: 110ms	remaining: 502ms
18:	learn: 35.6956274	total: 115ms	remaining: 490ms
19:	learn: 35.1471999	total: 120ms	remaining: 479ms
20:	learn: 34.6235408	total: 125ms	remaining: 468ms
21:	learn: 34.1987018	total: 129ms	remaining: 458ms
22:	learn: 33.8985062	total: 133ms	remaining: 447ms
23:	learn: 33.3869017	total: 138ms	remaining: 436ms
24:	learn: 32.9100550	total: 142ms	remaining: 427ms
25:	learn: 32.4156208	total: 147ms	remaining: 417ms
26:	learn: 31.9320493	total: 151ms	remaining: 408ms
27:	learn: 31.5711468	total: 155ms	remaining: 399ms
28:	learn: 31.2404433	total: 160ms	remaining: 391ms
29:	learn: 30.8807946	total: 165ms	remaining: 384ms
30:	learn: 30.5948438	total: 169ms	remaining: 376ms
31:	learn: 30.3885560	total: 174ms	remaining: 369ms
32:	learn: 30.0625101	total: 178ms	remaining: 362ms
33:	learn: 29.9113114	total: 183ms	remaining: 355ms
34:	learn: 29.6983470	total: 187ms	remaining: 348ms
35:	learn: 29.4775849	total: 192ms	remaining: 342ms
36:	learn: 29.0538055	total: 200ms	remaining: 341ms
37:	learn: 28.6792318	total: 208ms	remaining: 339ms
38:	learn: 28.4231383	total: 214ms	remaining: 335ms
39:	learn: 28.1078565	total: 219ms	remaining: 329ms
40:	learn: 27.9079179	total: 225ms	remaining: 324ms
41:	learn: 27.6721506	total: 230ms	remaining: 317ms
42:	learn: 27.4228033	total: 234ms	remaining: 311ms
43:	learn: 27.1740534	total: 239ms	remaining: 304ms
44:	learn: 26.8584071	total: 243ms	remaining: 297ms
45:	learn: 26.6902083	total: 247ms	remaining: 290ms
46:	learn: 26.4855335	total: 252ms	remaining: 284ms
47:	learn: 26.2730822	total: 256ms	remaining: 277ms
48:	learn: 26.1058689	total: 260ms	remaining: 271ms
49:	learn: 25.8587318	total: 264ms	remaining: 264ms
50:	learn: 25.7558005	total: 269ms	remaining: 258ms
51:	learn: 25.5846925	total: 273ms	remaining: 252ms
52:	learn: 25.4249887	total: 278ms	remaining: 246ms
53:	learn: 25.1911054	total: 282ms	remaining: 240ms
54:	learn: 25.0544755	total: 286ms	remaining: 234ms
55:	learn: 24.8874006	total: 291ms	remaining: 228ms
56:	learn: 24.7736279	total: 295ms	remaining: 222ms
57:	learn: 24.6156255	total: 299ms	remaining: 217ms
58:	learn: 24.3962421	total: 303ms	remaining: 211ms
59:	learn: 24.2685129	total: 308ms	remaining: 205ms
60:	learn: 24.1874096	total: 312ms	remaining: 199ms
61:	learn: 24.0394287	total: 316ms	remaining: 194ms
62:	learn: 23.9281768	total: 321ms	remaining: 188ms
63:	learn: 23.7423900	total: 325ms	remaining: 183ms
64:	learn: 23.6015209	total: 330ms	remaining: 177ms
65:	learn: 23.4677943	total: 335ms	remaining: 172ms
66:	learn: 23.3215256	total: 340ms	remaining: 167ms
67:	learn: 23.1869360	total: 345ms	remaining: 162ms
68:	learn: 22.9691180	total: 349ms	remaining: 157ms
69:	learn: 22.7531657	total: 354ms	remaining: 152ms
70:	learn: 22.6133477	total: 359ms	remaining: 147ms
71:	learn: 22.3452758	total: 364ms	remaining: 142ms
72:	learn: 22.2065350	total: 369ms	remaining: 136ms
73:	learn: 22.1071155	total: 374ms	remaining: 131ms
74:	learn: 21.9740686	total: 378ms	remaining: 126ms
75:	learn: 21.8892033	total: 383ms	remaining: 121ms
76:	learn: 21.8267882	total: 388ms	remaining: 116ms
77:	learn: 21.7423479	total: 393ms	remaining: 111ms
78:	learn: 21.6242075	total: 402ms	remaining: 107ms
79:	learn: 21.5016910	total: 412ms	remaining: 103ms
80:	learn: 21.4806623	total: 413ms	remaining: 96.9ms
81:	learn: 21.3166637	total: 420ms	remaining: 92.2ms
82:	learn: 21.2222534	total: 428ms	remaining: 87.6ms
83:	learn: 21.1535708	total: 433ms	remaining: 82.5ms
84:	learn: 21.0858902	total: 439ms	remaining: 77.4ms
85:	learn: 20.9206003	total: 444ms	remaining: 72.3ms
86:	learn: 20.8674695	total: 449ms	remaining: 67.1ms
87:	learn: 20.8089875	total: 454ms	remaining: 62ms
88:	learn: 20.7085401	total: 459ms	remaining: 56.8ms
89:	learn: 20.5513468	total: 465ms	remaining: 51.6ms
90:	learn: 20.4586742	total: 470ms	remaining: 46.4ms
91:	learn: 20.3932149	total: 475ms	remaining: 41.3ms
92:	learn: 20.3000895	total: 480ms	remaining: 36.1ms
93:	learn: 20.2254009	total: 486ms	remaining: 31ms
94:	learn: 20.1750050	total: 491ms	remaining: 25.9ms
95:	learn: 20.0715579	total: 509ms	remaining: 21.2ms
96:	learn: 19.9920082	total: 514ms	remaining: 15.9ms
97:	learn: 19.9664401	total: 518ms	remaining: 10.6ms
98:	learn: 19.8689673	total: 522ms	remaining: 5.28ms
99:	learn: 19.7537356	total: 527ms	remaining: 0us
0:	learn: 46.8832143	total: 5.06ms	remaining: 501ms
1:	learn: 45.8700349	total: 11ms	remaining: 538ms
2:	learn: 45.0546867	total: 18.1ms	remaining: 586ms
3:	learn: 44.2829439	total: 25ms	remaining: 599ms
4:	learn: 43.4609042	total: 31.7ms	remaining: 603ms
5:	learn: 42.6754991	total: 37.1ms	remaining: 582ms
6:	learn: 41.9234935	total: 42.8ms	remaining: 569ms
7:	learn: 41.3987518	total: 49.4ms	remaining: 568ms
8:	learn: 40.6625066	total: 53.9ms	remaining: 545ms
9:	learn: 40.0029561	total: 58.2ms	remaining: 524ms
10:	learn: 39.3897033	total: 62.8ms	remaining: 508ms
11:	learn: 38.7741453	total: 66.9ms	remaining: 491ms
12:	learn: 38.1201100	total: 71.2ms	remaining: 476ms
13:	learn: 37.5129454	total: 75.8ms	remaining: 466ms
14:	learn: 37.2062206	total: 80.4ms	remaining: 455ms
15:	learn: 36.6831741	total: 84.6ms	remaining: 444ms
16:	learn: 36.2902788	total: 88.8ms	remaining: 434ms
17:	learn: 35.7639930	total: 93.4ms	remaining: 425ms
18:	learn: 35.2580953	total: 98.4ms	remaining: 420ms
19:	learn: 34.7809739	total: 103ms	remaining: 414ms
20:	learn: 34.1330433	total: 108ms	remaining: 408ms
21:	learn: 33.7302219	total: 113ms	remaining: 401ms
22:	learn: 33.3502495	total: 118ms	remaining: 394ms
23:	learn: 33.0067804	total: 122ms	remaining: 387ms
24:	learn: 32.6897855	total: 127ms	remaining: 380ms
25:	learn: 32.4361119	total: 131ms	remaining: 373ms
26:	learn: 32.1278981	total: 135ms	remaining: 365ms
27:	learn: 31.7863721	total: 139ms	remaining: 359ms
28:	learn: 31.4791450	total: 144ms	remaining: 352ms
29:	learn: 31.1760161	total: 148ms	remaining: 346ms
30:	learn: 30.9238888	total: 152ms	remaining: 339ms
31:	learn: 30.5500905	total: 156ms	remaining: 332ms
32:	learn: 30.3078126	total: 161ms	remaining: 326ms
33:	learn: 30.0480921	total: 165ms	remaining: 320ms
34:	learn: 29.8623884	total: 169ms	remaining: 314ms
35:	learn: 29.5991038	total: 173ms	remaining: 308ms
36:	learn: 29.4061161	total: 178ms	remaining: 302ms
37:	learn: 29.0269515	total: 182ms	remaining: 297ms
38:	learn: 28.8224959	total: 186ms	remaining: 292ms
39:	learn: 28.6417843	total: 191ms	remaining: 286ms
40:	learn: 28.3633368	total: 195ms	remaining: 280ms
41:	learn: 28.0200246	total: 199ms	remaining: 275ms
42:	learn: 27.7221254	total: 203ms	remaining: 269ms
43:	learn: 27.5105818	total: 207ms	remaining: 264ms
44:	learn: 27.3551010	total: 212ms	remaining: 259ms
45:	learn: 27.0787522	total: 216ms	remaining: 254ms
46:	learn: 26.8726317	total: 221ms	remaining: 249ms
47:	learn: 26.8003277	total: 225ms	remaining: 243ms
48:	learn: 26.5493785	total: 229ms	remaining: 238ms
49:	learn: 26.3699550	total: 234ms	remaining: 234ms
50:	learn: 26.1519631	total: 239ms	remaining: 229ms
51:	learn: 25.9277325	total: 243ms	remaining: 225ms
52:	learn: 25.7286035	total: 248ms	remaining: 220ms
53:	learn: 25.4999193	total: 254ms	remaining: 216ms
54:	learn: 25.3434703	total: 258ms	remaining: 211ms
55:	learn: 25.1497545	total: 266ms	remaining: 209ms
56:	learn: 24.9498143	total: 273ms	remaining: 206ms
57:	learn: 24.6509390	total: 283ms	remaining: 205ms
58:	learn: 24.5576144	total: 289ms	remaining: 201ms
59:	learn: 24.4265144	total: 297ms	remaining: 198ms
60:	learn: 24.3100706	total: 302ms	remaining: 193ms
61:	learn: 24.1727952	total: 308ms	remaining: 189ms
62:	learn: 24.0478558	total: 313ms	remaining: 184ms
63:	learn: 23.9124577	total: 318ms	remaining: 179ms
64:	learn: 23.7703718	total: 323ms	remaining: 174ms
65:	learn: 23.5975027	total: 329ms	remaining: 169ms
66:	learn: 23.4318077	total: 335ms	remaining: 165ms
67:	learn: 23.3099691	total: 340ms	remaining: 160ms
68:	learn: 23.1947982	total: 345ms	remaining: 155ms
69:	learn: 23.0260174	total: 350ms	remaining: 150ms
70:	learn: 22.8523100	total: 356ms	remaining: 145ms
71:	learn: 22.8028534	total: 362ms	remaining: 141ms
72:	learn: 22.6880658	total: 366ms	remaining: 135ms
73:	learn: 22.5956809	total: 370ms	remaining: 130ms
74:	learn: 22.4692932	total: 375ms	remaining: 125ms
75:	learn: 22.2863504	total: 379ms	remaining: 120ms
76:	learn: 22.1911237	total: 384ms	remaining: 115ms
77:	learn: 22.1098391	total: 388ms	remaining: 109ms
78:	learn: 22.0182738	total: 392ms	remaining: 104ms
79:	learn: 21.9306746	total: 397ms	remaining: 99.2ms
80:	learn: 21.7508233	total: 401ms	remaining: 94.1ms
81:	learn: 21.7108446	total: 405ms	remaining: 89ms
82:	learn: 21.5931852	total: 410ms	remaining: 83.9ms
83:	learn: 21.4480361	total: 414ms	remaining: 79ms
84:	learn: 21.3092119	total: 419ms	remaining: 73.9ms
85:	learn: 21.2605557	total: 423ms	remaining: 68.9ms
86:	learn: 21.1123597	total: 428ms	remaining: 63.9ms
87:	learn: 21.0115642	total: 432ms	remaining: 59ms
88:	learn: 20.9389040	total: 437ms	remaining: 54ms
89:	learn: 20.8300300	total: 441ms	remaining: 49ms
90:	learn: 20.7159733	total: 446ms	remaining: 44.1ms
91:	learn: 20.6282090	total: 451ms	remaining: 39.2ms
92:	learn: 20.5164529	total: 455ms	remaining: 34.3ms
93:	learn: 20.4692032	total: 461ms	remaining: 29.4ms
94:	learn: 20.3768451	total: 469ms	remaining: 24.7ms
95:	learn: 20.2808056	total: 476ms	remaining: 19.8ms
96:	learn: 20.2082089	total: 483ms	remaining: 14.9ms
97:	learn: 20.1698768	total: 488ms	remaining: 9.95ms
98:	learn: 20.1048816	total: 493ms	remaining: 4.98ms
99:	learn: 20.0086159	total: 498ms	remaining: 0us
0:	learn: 27.3776612	total: 17.6ms	remaining: 1.74s
1:	learn: 26.7619003	total: 35.6ms	remaining: 1.74s
2:	learn: 26.0057626	total: 52.9ms	remaining: 1.71s
3:	learn: 25.4280982	total: 71.1ms	remaining: 1.71s
4:	learn: 24.8347609	total: 89.3ms	remaining: 1.7s
5:	learn: 24.2526574	total: 108ms	remaining: 1.69s
6:	learn: 23.7478806	total: 129ms	remaining: 1.72s
7:	learn: 23.2677666	total: 158ms	remaining: 1.81s
8:	learn: 22.7564310	total: 179ms	remaining: 1.81s
9:	learn: 22.2873770	total: 201ms	remaining: 1.81s
10:	learn: 21.8088174	total: 223ms	remaining: 1.8s
11:	learn: 21.4086875	total: 245ms	remaining: 1.79s
12:	learn: 20.9489217	total: 263ms	remaining: 1.76s
13:	learn: 20.4585233	total: 282ms	remaining: 1.73s
14:	learn: 20.0177760	total: 302ms	remaining: 1.71s
15:	learn: 19.5981890	total: 325ms	remaining: 1.7s
16:	learn: 19.2041885	total: 348ms	remaining: 1.7s
17:	learn: 18.8422550	total: 377ms	remaining: 1.72s
18:	learn: 18.4774037	total: 399ms	remaining: 1.7s
19:	learn: 18.0931699	total: 420ms	remaining: 1.68s
20:	learn: 17.6856423	total: 440ms	remaining: 1.66s
21:	learn: 17.3394010	total: 461ms	remaining: 1.64s
22:	learn: 17.0165204	total: 481ms	remaining: 1.61s
23:	learn: 16.7728230	total: 501ms	remaining: 1.58s
24:	learn: 16.5020155	total: 522ms	remaining: 1.56s
25:	learn: 16.2110813	total: 543ms	remaining: 1.54s
26:	learn: 15.9439416	total: 565ms	remaining: 1.53s
27:	learn: 15.6605702	total: 596ms	remaining: 1.53s
28:	learn: 15.4180978	total: 619ms	remaining: 1.51s
29:	learn: 15.1463921	total: 640ms	remaining: 1.49s
30:	learn: 14.8961946	total: 662ms	remaining: 1.47s
31:	learn: 14.6763296	total: 683ms	remaining: 1.45s
32:	learn: 14.4161484	total: 702ms	remaining: 1.42s
33:	learn: 14.1748686	total: 721ms	remaining: 1.4s
34:	learn: 13.9722494	total: 742ms	remaining: 1.38s
35:	learn: 13.7632896	total: 764ms	remaining: 1.36s
36:	learn: 13.5572592	total: 786ms	remaining: 1.34s
37:	learn: 13.3896577	total: 811ms	remaining: 1.32s
38:	learn: 13.2796441	total: 831ms	remaining: 1.3s
39:	learn: 13.0896679	total: 851ms	remaining: 1.28s
40:	learn: 12.8898238	total: 871ms	remaining: 1.25s
41:	learn: 12.6824069	total: 890ms	remaining: 1.23s
42:	learn: 12.5459667	total: 908ms	remaining: 1.2s
43:	learn: 12.3859203	total: 929ms	remaining: 1.18s
44:	learn: 12.2099364	total: 949ms	remaining: 1.16s
45:	learn: 12.0649044	total: 970ms	remaining: 1.14s
46:	learn: 11.8934147	total: 991ms	remaining: 1.12s
47:	learn: 11.7212144	total: 1.02s	remaining: 1.11s
48:	learn: 11.5585360	total: 1.04s	remaining: 1.09s
49:	learn: 11.4204354	total: 1.07s	remaining: 1.07s
50:	learn: 11.3264427	total: 1.09s	remaining: 1.05s
51:	learn: 11.2063486	total: 1.11s	remaining: 1.03s
52:	learn: 11.0712206	total: 1.13s	remaining: 1s
53:	learn: 10.9205088	total: 1.15s	remaining: 982ms
54:	learn: 10.8155412	total: 1.17s	remaining: 958ms
55:	learn: 10.7286854	total: 1.19s	remaining: 937ms
56:	learn: 10.6088466	total: 1.21s	remaining: 915ms
57:	learn: 10.4999885	total: 1.24s	remaining: 899ms
58:	learn: 10.4022194	total: 1.26s	remaining: 876ms
59:	learn: 10.3147130	total: 1.28s	remaining: 853ms
60:	learn: 10.2011489	total: 1.3s	remaining: 831ms
61:	learn: 10.1094372	total: 1.32s	remaining: 807ms
62:	learn: 10.0248970	total: 1.34s	remaining: 785ms
63:	learn: 9.9192710	total: 1.35s	remaining: 762ms
64:	learn: 9.8577360	total: 1.37s	remaining: 739ms
65:	learn: 9.7737103	total: 1.39s	remaining: 717ms
66:	learn: 9.6706617	total: 1.42s	remaining: 698ms
67:	learn: 9.6042727	total: 1.44s	remaining: 678ms
68:	learn: 9.5355377	total: 1.46s	remaining: 658ms
69:	learn: 9.4615216	total: 1.49s	remaining: 638ms
70:	learn: 9.3702045	total: 1.51s	remaining: 618ms
71:	learn: 9.3035392	total: 1.53s	remaining: 597ms
72:	learn: 9.2322686	total: 1.56s	remaining: 576ms
73:	learn: 9.1431916	total: 1.58s	remaining: 555ms
74:	learn: 9.0869466	total: 1.6s	remaining: 534ms
75:	learn: 9.0117390	total: 1.62s	remaining: 512ms
76:	learn: 8.9580443	total: 1.65s	remaining: 493ms
77:	learn: 8.8649939	total: 1.67s	remaining: 472ms
78:	learn: 8.7792713	total: 1.69s	remaining: 450ms
79:	learn: 8.7164606	total: 1.71s	remaining: 428ms
80:	learn: 8.6340559	total: 1.73s	remaining: 406ms
81:	learn: 8.5697104	total: 1.75s	remaining: 384ms
82:	learn: 8.5273758	total: 1.77s	remaining: 363ms
83:	learn: 8.4394788	total: 1.79s	remaining: 342ms
84:	learn: 8.3672415	total: 1.81s	remaining: 320ms
85:	learn: 8.2813444	total: 1.84s	remaining: 299ms
86:	learn: 8.1994983	total: 1.87s	remaining: 279ms
87:	learn: 8.1003577	total: 1.89s	remaining: 258ms
88:	learn: 8.0501976	total: 1.91s	remaining: 237ms
89:	learn: 7.9718830	total: 1.94s	remaining: 215ms
90:	learn: 7.9114534	total: 1.96s	remaining: 194ms
91:	learn: 7.8319856	total: 1.98s	remaining: 172ms
92:	learn: 7.7731246	total: 2s	remaining: 151ms
93:	learn: 7.7165850	total: 2.02s	remaining: 129ms
94:	learn: 7.6448498	total: 2.04s	remaining: 107ms
95:	learn: 7.5709919	total: 2.07s	remaining: 86.2ms
96:	learn: 7.5184082	total: 2.09s	remaining: 64.7ms
97:	learn: 7.4786866	total: 2.11s	remaining: 43.1ms
98:	learn: 7.4301201	total: 2.13s	remaining: 21.5ms
99:	learn: 7.3416932	total: 2.15s	remaining: 0us
0:	learn: 42.6391731	total: 23ms	remaining: 2.28s
1:	learn: 41.2755994	total: 44.2ms	remaining: 2.17s
2:	learn: 40.1418308	total: 65.7ms	remaining: 2.13s
3:	learn: 38.9707156	total: 97.7ms	remaining: 2.34s
4:	learn: 37.8723622	total: 122ms	remaining: 2.31s
5:	learn: 36.6981834	total: 144ms	remaining: 2.25s
6:	learn: 35.6210108	total: 166ms	remaining: 2.21s
7:	learn: 34.5154078	total: 189ms	remaining: 2.17s
8:	learn: 33.4581011	total: 208ms	remaining: 2.11s
9:	learn: 32.5872455	total: 226ms	remaining: 2.04s
10:	learn: 31.6311510	total: 246ms	remaining: 1.99s
11:	learn: 30.8222401	total: 267ms	remaining: 1.96s
12:	learn: 29.9305192	total: 289ms	remaining: 1.94s
13:	learn: 29.0742133	total: 318ms	remaining: 1.95s
14:	learn: 28.3687544	total: 339ms	remaining: 1.92s
15:	learn: 27.5730558	total: 358ms	remaining: 1.88s
16:	learn: 26.9376082	total: 376ms	remaining: 1.84s
17:	learn: 26.2254949	total: 394ms	remaining: 1.8s
18:	learn: 25.5974939	total: 414ms	remaining: 1.76s
19:	learn: 25.0097187	total: 432ms	remaining: 1.73s
20:	learn: 24.3722243	total: 452ms	remaining: 1.7s
21:	learn: 23.8249140	total: 475ms	remaining: 1.68s
22:	learn: 23.3953969	total: 497ms	remaining: 1.66s
23:	learn: 22.8726238	total: 530ms	remaining: 1.68s
24:	learn: 22.3407723	total: 555ms	remaining: 1.67s
25:	learn: 21.8360330	total: 578ms	remaining: 1.65s
26:	learn: 21.4050665	total: 581ms	remaining: 1.57s
27:	learn: 20.9389245	total: 603ms	remaining: 1.55s
28:	learn: 20.5166767	total: 625ms	remaining: 1.53s
29:	learn: 20.1190641	total: 644ms	remaining: 1.5s
30:	learn: 19.7189491	total: 662ms	remaining: 1.47s
31:	learn: 19.3748181	total: 681ms	remaining: 1.45s
32:	learn: 19.0116312	total: 701ms	remaining: 1.42s
33:	learn: 18.6982407	total: 729ms	remaining: 1.41s
34:	learn: 18.3109965	total: 752ms	remaining: 1.4s
35:	learn: 17.9620798	total: 772ms	remaining: 1.37s
36:	learn: 17.6396740	total: 790ms	remaining: 1.34s
37:	learn: 17.3596962	total: 809ms	remaining: 1.32s
38:	learn: 17.0107107	total: 828ms	remaining: 1.29s
39:	learn: 16.7000770	total: 848ms	remaining: 1.27s
40:	learn: 16.4406609	total: 858ms	remaining: 1.24s
41:	learn: 16.2482533	total: 877ms	remaining: 1.21s
42:	learn: 16.0039366	total: 896ms	remaining: 1.19s
43:	learn: 15.7538572	total: 917ms	remaining: 1.17s
44:	learn: 15.5095380	total: 946ms	remaining: 1.16s
45:	learn: 15.2678319	total: 970ms	remaining: 1.14s
46:	learn: 15.0494495	total: 992ms	remaining: 1.12s
47:	learn: 14.8347400	total: 1.01s	remaining: 1.1s
48:	learn: 14.6035398	total: 1.04s	remaining: 1.08s
49:	learn: 14.3913639	total: 1.06s	remaining: 1.06s
50:	learn: 14.1928022	total: 1.08s	remaining: 1.04s
51:	learn: 13.9985580	total: 1.1s	remaining: 1.01s
52:	learn: 13.8322220	total: 1.12s	remaining: 994ms
53:	learn: 13.6455937	total: 1.15s	remaining: 977ms
54:	learn: 13.4402019	total: 1.17s	remaining: 959ms
55:	learn: 13.2899163	total: 1.19s	remaining: 937ms
56:	learn: 13.1694614	total: 1.21s	remaining: 915ms
57:	learn: 13.0722892	total: 1.23s	remaining: 892ms
58:	learn: 12.9065251	total: 1.25s	remaining: 870ms
59:	learn: 12.6992885	total: 1.27s	remaining: 848ms
60:	learn: 12.5384562	total: 1.29s	remaining: 826ms
61:	learn: 12.4105591	total: 1.31s	remaining: 804ms
62:	learn: 12.2952504	total: 1.33s	remaining: 784ms
63:	learn: 12.1427365	total: 1.36s	remaining: 765ms
64:	learn: 11.9954361	total: 1.39s	remaining: 749ms
65:	learn: 11.8161234	total: 1.42s	remaining: 729ms
66:	learn: 11.6849978	total: 1.44s	remaining: 708ms
67:	learn: 11.5405300	total: 1.46s	remaining: 687ms
68:	learn: 11.3806762	total: 1.48s	remaining: 667ms
69:	learn: 11.2746848	total: 1.5s	remaining: 645ms
70:	learn: 11.1518256	total: 1.52s	remaining: 623ms
71:	learn: 11.0730779	total: 1.54s	remaining: 601ms
72:	learn: 10.9736725	total: 1.57s	remaining: 580ms
73:	learn: 10.8430563	total: 1.59s	remaining: 560ms
74:	learn: 10.7142220	total: 1.62s	remaining: 539ms
75:	learn: 10.6141640	total: 1.64s	remaining: 517ms
76:	learn: 10.5264853	total: 1.66s	remaining: 495ms
77:	learn: 10.3929390	total: 1.68s	remaining: 474ms
78:	learn: 10.3163176	total: 1.7s	remaining: 452ms
79:	learn: 10.2171240	total: 1.72s	remaining: 431ms
80:	learn: 10.1381738	total: 1.74s	remaining: 409ms
81:	learn: 10.0402437	total: 1.77s	remaining: 388ms
82:	learn: 9.9223565	total: 1.79s	remaining: 367ms
83:	learn: 9.8184057	total: 1.82s	remaining: 347ms
84:	learn: 9.7221978	total: 1.84s	remaining: 325ms
85:	learn: 9.6417031	total: 1.86s	remaining: 304ms
86:	learn: 9.5593969	total: 1.89s	remaining: 282ms
87:	learn: 9.4678992	total: 1.91s	remaining: 260ms
88:	learn: 9.3855757	total: 1.93s	remaining: 238ms
89:	learn: 9.2884031	total: 1.95s	remaining: 217ms
90:	learn: 9.2099382	total: 1.97s	remaining: 195ms
91:	learn: 9.1357061	total: 1.99s	remaining: 173ms
92:	learn: 9.0690328	total: 2.02s	remaining: 152ms
93:	learn: 8.9904694	total: 2.04s	remaining: 131ms
94:	learn: 8.9256893	total: 2.06s	remaining: 109ms
95:	learn: 8.8600084	total: 2.08s	remaining: 86.9ms
96:	learn: 8.8091154	total: 2.11s	remaining: 65.2ms
97:	learn: 8.7280528	total: 2.13s	remaining: 43.4ms
98:	learn: 8.6761440	total: 2.14s	remaining: 21.7ms
99:	learn: 8.6181192	total: 2.16s	remaining: 0us
0:	learn: 45.9988128	total: 23.2ms	remaining: 2.3s
1:	learn: 44.7653841	total: 45.7ms	remaining: 2.24s
2:	learn: 43.4693688	total: 67ms	remaining: 2.17s
3:	learn: 42.2495168	total: 88.6ms	remaining: 2.13s
4:	learn: 41.2273909	total: 110ms	remaining: 2.1s
5:	learn: 40.0623352	total: 130ms	remaining: 2.04s
6:	learn: 39.0139162	total: 150ms	remaining: 1.99s
7:	learn: 37.9905503	total: 169ms	remaining: 1.94s
8:	learn: 37.1460179	total: 190ms	remaining: 1.93s
9:	learn: 36.1321769	total: 212ms	remaining: 1.91s
10:	learn: 35.2434048	total: 239ms	remaining: 1.93s
11:	learn: 34.3919476	total: 259ms	remaining: 1.9s
12:	learn: 33.5464400	total: 277ms	remaining: 1.85s
13:	learn: 32.5752711	total: 296ms	remaining: 1.81s
14:	learn: 31.8573507	total: 314ms	remaining: 1.78s
15:	learn: 31.1481980	total: 332ms	remaining: 1.74s
16:	learn: 30.4578224	total: 350ms	remaining: 1.71s
17:	learn: 29.8404841	total: 368ms	remaining: 1.68s
18:	learn: 29.1314604	total: 388ms	remaining: 1.65s
19:	learn: 28.5024706	total: 410ms	remaining: 1.64s
20:	learn: 27.9368896	total: 431ms	remaining: 1.62s
21:	learn: 27.2136491	total: 462ms	remaining: 1.64s
22:	learn: 26.6230078	total: 483ms	remaining: 1.62s
23:	learn: 26.0604635	total: 505ms	remaining: 1.6s
24:	learn: 25.6309424	total: 527ms	remaining: 1.58s
25:	learn: 25.1761698	total: 549ms	remaining: 1.56s
26:	learn: 24.6368216	total: 568ms	remaining: 1.54s
27:	learn: 24.1028972	total: 588ms	remaining: 1.51s
28:	learn: 23.3990224	total: 606ms	remaining: 1.48s
29:	learn: 22.9088559	total: 628ms	remaining: 1.47s
30:	learn: 22.4793217	total: 653ms	remaining: 1.45s
31:	learn: 22.0592669	total: 676ms	remaining: 1.44s
32:	learn: 21.6715811	total: 696ms	remaining: 1.41s
33:	learn: 21.1907911	total: 716ms	remaining: 1.39s
34:	learn: 20.8045504	total: 734ms	remaining: 1.36s
35:	learn: 20.4670784	total: 753ms	remaining: 1.34s
36:	learn: 20.0165788	total: 771ms	remaining: 1.31s
37:	learn: 19.6859173	total: 790ms	remaining: 1.29s
38:	learn: 19.3641283	total: 809ms	remaining: 1.26s
39:	learn: 19.0291194	total: 830ms	remaining: 1.24s
40:	learn: 18.7204204	total: 851ms	remaining: 1.22s
41:	learn: 18.4000101	total: 877ms	remaining: 1.21s
42:	learn: 18.0910445	total: 905ms	remaining: 1.2s
43:	learn: 17.8354609	total: 928ms	remaining: 1.18s
44:	learn: 17.4982243	total: 951ms	remaining: 1.16s
45:	learn: 17.1895897	total: 973ms	remaining: 1.14s
46:	learn: 16.9440833	total: 996ms	remaining: 1.12s
47:	learn: 16.6112102	total: 1.02s	remaining: 1.1s
48:	learn: 16.3320235	total: 1.04s	remaining: 1.08s
49:	learn: 16.0523610	total: 1.06s	remaining: 1.06s
50:	learn: 15.8256738	total: 1.08s	remaining: 1.04s
51:	learn: 15.5699393	total: 1.11s	remaining: 1.02s
52:	learn: 15.3531799	total: 1.13s	remaining: 1s
53:	learn: 15.1364230	total: 1.15s	remaining: 981ms
54:	learn: 15.0012063	total: 1.17s	remaining: 959ms
55:	learn: 14.7171740	total: 1.19s	remaining: 936ms
56:	learn: 14.5897576	total: 1.19s	remaining: 901ms
57:	learn: 14.3886878	total: 1.22s	remaining: 881ms
58:	learn: 14.1942115	total: 1.24s	remaining: 860ms
59:	learn: 14.0135398	total: 1.26s	remaining: 839ms
60:	learn: 13.8118263	total: 1.28s	remaining: 818ms
61:	learn: 13.6444047	total: 1.3s	remaining: 797ms
62:	learn: 13.4728078	total: 1.33s	remaining: 781ms
63:	learn: 13.3104934	total: 1.35s	remaining: 762ms
64:	learn: 13.1385144	total: 1.38s	remaining: 742ms
65:	learn: 13.0087777	total: 1.4s	remaining: 721ms
66:	learn: 12.8457835	total: 1.42s	remaining: 700ms
67:	learn: 12.6975263	total: 1.44s	remaining: 680ms
68:	learn: 12.5582839	total: 1.47s	remaining: 659ms
69:	learn: 12.4210776	total: 1.49s	remaining: 638ms
70:	learn: 12.2737286	total: 1.51s	remaining: 617ms
71:	learn: 12.1587075	total: 1.54s	remaining: 599ms
72:	learn: 12.0323022	total: 1.56s	remaining: 578ms
73:	learn: 11.8667900	total: 1.58s	remaining: 557ms
74:	learn: 11.6990385	total: 1.6s	remaining: 535ms
75:	learn: 11.5755058	total: 1.63s	remaining: 514ms
76:	learn: 11.4954152	total: 1.65s	remaining: 492ms
77:	learn: 11.3827464	total: 1.67s	remaining: 470ms
78:	learn: 11.2924968	total: 1.69s	remaining: 449ms
79:	learn: 11.1938217	total: 1.71s	remaining: 428ms
80:	learn: 11.0766477	total: 1.74s	remaining: 408ms
81:	learn: 10.9824487	total: 1.77s	remaining: 388ms
82:	learn: 10.8707168	total: 1.79s	remaining: 367ms
83:	learn: 10.7746205	total: 1.81s	remaining: 345ms
84:	learn: 10.6738461	total: 1.83s	remaining: 324ms
85:	learn: 10.5871227	total: 1.86s	remaining: 302ms
86:	learn: 10.4566607	total: 1.88s	remaining: 281ms
87:	learn: 10.3506633	total: 1.9s	remaining: 259ms
88:	learn: 10.2104644	total: 1.92s	remaining: 238ms
89:	learn: 10.0965839	total: 1.95s	remaining: 216ms
90:	learn: 9.9802927	total: 1.97s	remaining: 195ms
91:	learn: 9.9195276	total: 2s	remaining: 174ms
92:	learn: 9.8559698	total: 2.02s	remaining: 152ms
93:	learn: 9.7396780	total: 2.04s	remaining: 130ms
94:	learn: 9.6945725	total: 2.06s	remaining: 108ms
95:	learn: 9.5897565	total: 2.08s	remaining: 86.6ms
96:	learn: 9.5012011	total: 2.1s	remaining: 64.9ms
97:	learn: 9.4123715	total: 2.12s	remaining: 43.3ms
98:	learn: 9.3288366	total: 2.14s	remaining: 21.6ms
99:	learn: 9.2648715	total: 2.16s	remaining: 0us
0:	learn: 45.5336925	total: 21.6ms	remaining: 2.13s
1:	learn: 44.2714175	total: 43.3ms	remaining: 2.12s
2:	learn: 43.1477944	total: 65ms	remaining: 2.1s
3:	learn: 41.9891776	total: 84.7ms	remaining: 2.03s
4:	learn: 41.0638986	total: 103ms	remaining: 1.96s
5:	learn: 39.9800801	total: 121ms	remaining: 1.9s
6:	learn: 38.9048061	total: 142ms	remaining: 1.89s
7:	learn: 38.0749429	total: 163ms	remaining: 1.88s
8:	learn: 37.3966644	total: 193ms	remaining: 1.95s
9:	learn: 36.4671331	total: 213ms	remaining: 1.92s
10:	learn: 35.6649217	total: 231ms	remaining: 1.87s
11:	learn: 34.8793657	total: 249ms	remaining: 1.82s
12:	learn: 34.0737401	total: 267ms	remaining: 1.79s
13:	learn: 33.2560999	total: 286ms	remaining: 1.75s
14:	learn: 32.4184623	total: 304ms	remaining: 1.72s
15:	learn: 31.6803206	total: 322ms	remaining: 1.69s
16:	learn: 30.9276344	total: 342ms	remaining: 1.67s
17:	learn: 30.3590041	total: 363ms	remaining: 1.65s
18:	learn: 29.7789888	total: 389ms	remaining: 1.66s
19:	learn: 29.1098261	total: 413ms	remaining: 1.65s
20:	learn: 28.4824889	total: 435ms	remaining: 1.64s
21:	learn: 27.9675744	total: 458ms	remaining: 1.62s
22:	learn: 27.4793215	total: 479ms	remaining: 1.6s
23:	learn: 26.8920542	total: 500ms	remaining: 1.58s
24:	learn: 26.2736657	total: 519ms	remaining: 1.56s
25:	learn: 25.6908003	total: 539ms	remaining: 1.53s
26:	learn: 25.1288844	total: 557ms	remaining: 1.51s
27:	learn: 24.6933320	total: 577ms	remaining: 1.48s
28:	learn: 24.1372567	total: 598ms	remaining: 1.47s
29:	learn: 23.7103515	total: 628ms	remaining: 1.47s
30:	learn: 23.1647499	total: 651ms	remaining: 1.45s
31:	learn: 22.7009216	total: 670ms	remaining: 1.42s
32:	learn: 22.2792229	total: 689ms	remaining: 1.4s
33:	learn: 21.8004244	total: 708ms	remaining: 1.38s
34:	learn: 21.3578361	total: 728ms	remaining: 1.35s
35:	learn: 21.0262832	total: 746ms	remaining: 1.33s
36:	learn: 20.5787502	total: 765ms	remaining: 1.3s
37:	learn: 20.3083055	total: 784ms	remaining: 1.28s
38:	learn: 19.9902529	total: 803ms	remaining: 1.26s
39:	learn: 19.6059571	total: 826ms	remaining: 1.24s
40:	learn: 19.3890959	total: 858ms	remaining: 1.23s
41:	learn: 19.0549255	total: 881ms	remaining: 1.22s
42:	learn: 18.7283215	total: 903ms	remaining: 1.2s
43:	learn: 18.4448725	total: 923ms	remaining: 1.17s
44:	learn: 18.1578001	total: 945ms	remaining: 1.16s
45:	learn: 17.8777474	total: 963ms	remaining: 1.13s
46:	learn: 17.6428221	total: 984ms	remaining: 1.11s
47:	learn: 17.3887752	total: 1s	remaining: 1.08s
48:	learn: 17.1475761	total: 1.02s	remaining: 1.06s
49:	learn: 16.9064363	total: 1.04s	remaining: 1.04s
50:	learn: 16.6414681	total: 1.07s	remaining: 1.03s
51:	learn: 16.4549974	total: 1.09s	remaining: 1s
52:	learn: 16.2617558	total: 1.11s	remaining: 984ms
53:	learn: 16.0258241	total: 1.13s	remaining: 961ms
54:	learn: 15.7694686	total: 1.15s	remaining: 938ms
55:	learn: 15.5449602	total: 1.17s	remaining: 916ms
56:	learn: 15.3515330	total: 1.19s	remaining: 895ms
57:	learn: 15.1120403	total: 1.21s	remaining: 874ms
58:	learn: 14.9131368	total: 1.23s	remaining: 853ms
59:	learn: 14.8021921	total: 1.25s	remaining: 835ms
60:	learn: 14.6564259	total: 1.28s	remaining: 818ms
61:	learn: 14.5253260	total: 1.3s	remaining: 798ms
62:	learn: 14.3975427	total: 1.32s	remaining: 777ms
63:	learn: 14.3060204	total: 1.35s	remaining: 757ms
64:	learn: 14.1283681	total: 1.37s	remaining: 737ms
65:	learn: 14.0159063	total: 1.39s	remaining: 717ms
66:	learn: 13.8712541	total: 1.41s	remaining: 695ms
67:	learn: 13.7852998	total: 1.43s	remaining: 674ms
68:	learn: 13.6790164	total: 1.46s	remaining: 656ms
69:	learn: 13.5253745	total: 1.48s	remaining: 635ms
70:	learn: 13.3959663	total: 1.5s	remaining: 614ms
71:	learn: 13.2062955	total: 1.52s	remaining: 592ms
72:	learn: 13.0788709	total: 1.54s	remaining: 571ms
73:	learn: 12.9513184	total: 1.56s	remaining: 549ms
74:	learn: 12.8198556	total: 1.58s	remaining: 527ms
75:	learn: 12.7137549	total: 1.6s	remaining: 506ms
76:	learn: 12.6243477	total: 1.62s	remaining: 484ms
77:	learn: 12.5241564	total: 1.64s	remaining: 463ms
78:	learn: 12.4445782	total: 1.67s	remaining: 445ms
79:	learn: 12.3816501	total: 1.7s	remaining: 424ms
80:	learn: 12.2846914	total: 1.72s	remaining: 403ms
81:	learn: 12.1419498	total: 1.74s	remaining: 382ms
82:	learn: 12.0846494	total: 1.76s	remaining: 361ms
83:	learn: 11.9851484	total: 1.78s	remaining: 340ms
84:	learn: 11.8905738	total: 1.8s	remaining: 318ms
85:	learn: 11.7718790	total: 1.82s	remaining: 297ms
86:	learn: 11.6854413	total: 1.85s	remaining: 276ms
87:	learn: 11.6206110	total: 1.87s	remaining: 255ms
88:	learn: 11.5376098	total: 1.9s	remaining: 234ms
89:	learn: 11.4235068	total: 1.92s	remaining: 213ms
90:	learn: 11.3477955	total: 1.94s	remaining: 191ms
91:	learn: 11.2663772	total: 1.95s	remaining: 170ms
92:	learn: 11.1916556	total: 1.97s	remaining: 149ms
93:	learn: 11.0921504	total: 1.99s	remaining: 127ms
94:	learn: 10.9622375	total: 2.01s	remaining: 106ms
95:	learn: 10.8882085	total: 2.03s	remaining: 84.8ms
96:	learn: 10.8086218	total: 2.06s	remaining: 63.6ms
97:	learn: 10.7552220	total: 2.08s	remaining: 42.4ms
98:	learn: 10.6929666	total: 2.11s	remaining: 21.3ms
99:	learn: 10.6200033	total: 2.13s	remaining: 0us
0:	learn: 46.3366259	total: 20.5ms	remaining: 2.03s
1:	learn: 45.2205278	total: 41.9ms	remaining: 2.05s
2:	learn: 43.9887404	total: 61.8ms	remaining: 2s
3:	learn: 42.8240666	total: 81.7ms	remaining: 1.96s
4:	learn: 41.6086617	total: 109ms	remaining: 2.08s
5:	learn: 40.5606446	total: 134ms	remaining: 2.1s
6:	learn: 39.6241326	total: 154ms	remaining: 2.05s
7:	learn: 39.0016852	total: 176ms	remaining: 2.02s
8:	learn: 37.8501670	total: 194ms	remaining: 1.97s
9:	learn: 37.0215474	total: 214ms	remaining: 1.92s
10:	learn: 36.0215020	total: 233ms	remaining: 1.88s
11:	learn: 35.2421331	total: 254ms	remaining: 1.86s
12:	learn: 34.5416837	total: 274ms	remaining: 1.84s
13:	learn: 33.7787649	total: 295ms	remaining: 1.81s
14:	learn: 32.9860883	total: 314ms	remaining: 1.78s
15:	learn: 32.2123752	total: 335ms	remaining: 1.76s
16:	learn: 31.3564648	total: 366ms	remaining: 1.78s
17:	learn: 30.7859979	total: 388ms	remaining: 1.76s
18:	learn: 30.1443515	total: 410ms	remaining: 1.75s
19:	learn: 29.4880724	total: 431ms	remaining: 1.73s
20:	learn: 28.9635727	total: 452ms	remaining: 1.7s
21:	learn: 28.4853342	total: 470ms	remaining: 1.67s
22:	learn: 27.9796348	total: 489ms	remaining: 1.64s
23:	learn: 27.4360487	total: 509ms	remaining: 1.61s
24:	learn: 26.8685214	total: 536ms	remaining: 1.61s
25:	learn: 26.1769206	total: 558ms	remaining: 1.59s
26:	learn: 25.7146048	total: 578ms	remaining: 1.56s
27:	learn: 25.2614850	total: 596ms	remaining: 1.53s
28:	learn: 24.6626472	total: 615ms	remaining: 1.51s
29:	learn: 24.2501259	total: 634ms	remaining: 1.48s
30:	learn: 23.7892661	total: 655ms	remaining: 1.46s
31:	learn: 23.2729078	total: 674ms	remaining: 1.43s
32:	learn: 22.8969731	total: 692ms	remaining: 1.41s
33:	learn: 22.4567570	total: 711ms	remaining: 1.38s
34:	learn: 22.0569858	total: 732ms	remaining: 1.36s
35:	learn: 21.7317775	total: 753ms	remaining: 1.34s
36:	learn: 21.3890971	total: 781ms	remaining: 1.33s
37:	learn: 21.0664504	total: 803ms	remaining: 1.31s
38:	learn: 20.7379659	total: 825ms	remaining: 1.29s
39:	learn: 20.4423699	total: 847ms	remaining: 1.27s
40:	learn: 20.1526720	total: 870ms	remaining: 1.25s
41:	learn: 19.8706547	total: 888ms	remaining: 1.23s
42:	learn: 19.5139134	total: 907ms	remaining: 1.2s
43:	learn: 19.3495951	total: 927ms	remaining: 1.18s
44:	learn: 19.1314757	total: 948ms	remaining: 1.16s
45:	learn: 18.7971159	total: 970ms	remaining: 1.14s
46:	learn: 18.5447051	total: 999ms	remaining: 1.13s
47:	learn: 18.2328785	total: 1.02s	remaining: 1.1s
48:	learn: 17.9622938	total: 1.04s	remaining: 1.08s
49:	learn: 17.7264205	total: 1.06s	remaining: 1.06s
50:	learn: 17.4530592	total: 1.07s	remaining: 1.03s
51:	learn: 17.2236644	total: 1.09s	remaining: 1.01s
52:	learn: 17.0122792	total: 1.11s	remaining: 985ms
53:	learn: 16.7599064	total: 1.13s	remaining: 962ms
54:	learn: 16.5146699	total: 1.15s	remaining: 939ms
55:	learn: 16.2531414	total: 1.17s	remaining: 918ms
56:	learn: 16.0997208	total: 1.19s	remaining: 896ms
57:	learn: 15.8452412	total: 1.22s	remaining: 880ms
58:	learn: 15.6294900	total: 1.24s	remaining: 861ms
59:	learn: 15.4564548	total: 1.26s	remaining: 841ms
60:	learn: 15.2978533	total: 1.28s	remaining: 820ms
61:	learn: 15.0976912	total: 1.3s	remaining: 800ms
62:	learn: 14.9094446	total: 1.32s	remaining: 777ms
63:	learn: 14.7415094	total: 1.34s	remaining: 755ms
64:	learn: 14.6123806	total: 1.36s	remaining: 732ms
65:	learn: 14.4744916	total: 1.38s	remaining: 711ms
66:	learn: 14.3212717	total: 1.4s	remaining: 690ms
67:	learn: 14.1768047	total: 1.43s	remaining: 672ms
68:	learn: 14.0387344	total: 1.45s	remaining: 651ms
69:	learn: 13.8987579	total: 1.47s	remaining: 629ms
70:	learn: 13.7825740	total: 1.49s	remaining: 607ms
71:	learn: 13.6818548	total: 1.5s	remaining: 585ms
72:	learn: 13.5356993	total: 1.52s	remaining: 563ms
73:	learn: 13.4408704	total: 1.54s	remaining: 541ms
74:	learn: 13.2992218	total: 1.56s	remaining: 520ms
75:	learn: 13.1547092	total: 1.58s	remaining: 498ms
76:	learn: 13.0800189	total: 1.6s	remaining: 477ms
77:	learn: 12.9434711	total: 1.62s	remaining: 456ms
78:	learn: 12.8327325	total: 1.65s	remaining: 439ms
79:	learn: 12.7238946	total: 1.67s	remaining: 419ms
80:	learn: 12.6229528	total: 1.7s	remaining: 398ms
81:	learn: 12.5216078	total: 1.72s	remaining: 377ms
82:	learn: 12.4182254	total: 1.74s	remaining: 356ms
83:	learn: 12.3097978	total: 1.76s	remaining: 335ms
84:	learn: 12.1852056	total: 1.78s	remaining: 314ms
85:	learn: 12.0739627	total: 1.8s	remaining: 293ms
86:	learn: 11.9475583	total: 1.82s	remaining: 272ms
87:	learn: 11.8403806	total: 1.84s	remaining: 251ms
88:	learn: 11.7294124	total: 1.87s	remaining: 231ms
89:	learn: 11.6395689	total: 1.89s	remaining: 210ms
90:	learn: 11.5510643	total: 1.91s	remaining: 189ms
91:	learn: 11.4455301	total: 1.94s	remaining: 168ms
92:	learn: 11.3368661	total: 1.96s	remaining: 147ms
93:	learn: 11.2270796	total: 1.98s	remaining: 126ms
94:	learn: 11.1168414	total: 2s	remaining: 105ms
95:	learn: 11.0310985	total: 2.02s	remaining: 84.2ms
96:	learn: 10.9735185	total: 2.05s	remaining: 63.3ms
97:	learn: 10.8575874	total: 2.07s	remaining: 42.3ms
98:	learn: 10.7816173	total: 2.1s	remaining: 21.2ms
99:	learn: 10.7111737	total: 2.12s	remaining: 0us
0:	learn: 27.5585353	total: 4.76ms	remaining: 471ms
1:	learn: 27.1656995	total: 9.26ms	remaining: 454ms
2:	learn: 26.8590175	total: 13.4ms	remaining: 432ms
3:	learn: 26.5818406	total: 17.9ms	remaining: 430ms
4:	learn: 26.1148663	total: 22.5ms	remaining: 428ms
5:	learn: 25.7690484	total: 26.9ms	remaining: 422ms
6:	learn: 25.3489206	total: 31.4ms	remaining: 418ms
7:	learn: 24.9542406	total: 35.6ms	remaining: 410ms
8:	learn: 24.6777517	total: 40.5ms	remaining: 409ms
9:	learn: 24.3242344	total: 45.1ms	remaining: 406ms
10:	learn: 24.0383073	total: 50ms	remaining: 404ms
11:	learn: 23.7383420	total: 54.4ms	remaining: 399ms
12:	learn: 23.3461670	total: 58.9ms	remaining: 394ms
13:	learn: 23.0928636	total: 63ms	remaining: 387ms
14:	learn: 22.8770414	total: 68.1ms	remaining: 386ms
15:	learn: 22.6323214	total: 73.3ms	remaining: 385ms
16:	learn: 22.3597072	total: 78.1ms	remaining: 381ms
17:	learn: 22.1079813	total: 82.5ms	remaining: 376ms
18:	learn: 21.8421199	total: 87ms	remaining: 371ms
19:	learn: 21.6576508	total: 91.9ms	remaining: 368ms
20:	learn: 21.4301268	total: 97.7ms	remaining: 367ms
21:	learn: 21.2287388	total: 106ms	remaining: 374ms
22:	learn: 21.0553872	total: 113ms	remaining: 380ms
23:	learn: 20.8977091	total: 120ms	remaining: 379ms
24:	learn: 20.6619051	total: 125ms	remaining: 375ms
25:	learn: 20.5040955	total: 131ms	remaining: 373ms
26:	learn: 20.3181195	total: 135ms	remaining: 365ms
27:	learn: 20.0869436	total: 140ms	remaining: 359ms
28:	learn: 19.9375985	total: 144ms	remaining: 353ms
29:	learn: 19.8247516	total: 149ms	remaining: 347ms
30:	learn: 19.6261697	total: 153ms	remaining: 340ms
31:	learn: 19.4547236	total: 157ms	remaining: 334ms
32:	learn: 19.3157092	total: 162ms	remaining: 330ms
33:	learn: 19.1561419	total: 166ms	remaining: 323ms
34:	learn: 19.0453620	total: 171ms	remaining: 318ms
35:	learn: 18.8738574	total: 175ms	remaining: 312ms
36:	learn: 18.7072907	total: 180ms	remaining: 307ms
37:	learn: 18.5877943	total: 185ms	remaining: 301ms
38:	learn: 18.4436380	total: 189ms	remaining: 296ms
39:	learn: 18.3463356	total: 193ms	remaining: 290ms
40:	learn: 18.2008059	total: 198ms	remaining: 285ms
41:	learn: 18.0582079	total: 203ms	remaining: 280ms
42:	learn: 17.8891982	total: 207ms	remaining: 274ms
43:	learn: 17.7332246	total: 211ms	remaining: 268ms
44:	learn: 17.6206421	total: 216ms	remaining: 264ms
45:	learn: 17.4982800	total: 221ms	remaining: 259ms
46:	learn: 17.3970150	total: 225ms	remaining: 254ms
47:	learn: 17.3058203	total: 230ms	remaining: 249ms
48:	learn: 17.1789256	total: 235ms	remaining: 244ms
49:	learn: 17.0916229	total: 239ms	remaining: 239ms
50:	learn: 16.9859820	total: 243ms	remaining: 234ms
51:	learn: 16.8995582	total: 249ms	remaining: 229ms
52:	learn: 16.8137014	total: 252ms	remaining: 224ms
53:	learn: 16.7021451	total: 256ms	remaining: 218ms
54:	learn: 16.5895582	total: 261ms	remaining: 214ms
55:	learn: 16.5015639	total: 266ms	remaining: 209ms
56:	learn: 16.4356637	total: 271ms	remaining: 204ms
57:	learn: 16.3514525	total: 276ms	remaining: 200ms
58:	learn: 16.2401369	total: 281ms	remaining: 195ms
59:	learn: 16.1293223	total: 285ms	remaining: 190ms
60:	learn: 16.0271167	total: 290ms	remaining: 185ms
61:	learn: 15.9126257	total: 295ms	remaining: 181ms
62:	learn: 15.8391096	total: 303ms	remaining: 178ms
63:	learn: 15.7441773	total: 311ms	remaining: 175ms
64:	learn: 15.6885195	total: 320ms	remaining: 173ms
65:	learn: 15.6052039	total: 328ms	remaining: 169ms
66:	learn: 15.5074202	total: 334ms	remaining: 164ms
67:	learn: 15.4054338	total: 339ms	remaining: 160ms
68:	learn: 15.2885714	total: 344ms	remaining: 155ms
69:	learn: 15.2157472	total: 349ms	remaining: 150ms
70:	learn: 15.1031554	total: 355ms	remaining: 145ms
71:	learn: 15.0237470	total: 360ms	remaining: 140ms
72:	learn: 14.9756825	total: 366ms	remaining: 135ms
73:	learn: 14.8840596	total: 387ms	remaining: 136ms
74:	learn: 14.8077061	total: 393ms	remaining: 131ms
75:	learn: 14.7444437	total: 398ms	remaining: 126ms
76:	learn: 14.6751720	total: 402ms	remaining: 120ms
77:	learn: 14.5830333	total: 407ms	remaining: 115ms
78:	learn: 14.5241206	total: 411ms	remaining: 109ms
79:	learn: 14.4892731	total: 415ms	remaining: 104ms
80:	learn: 14.4256605	total: 420ms	remaining: 98.5ms
81:	learn: 14.3666860	total: 425ms	remaining: 93.2ms
82:	learn: 14.2938372	total: 430ms	remaining: 88ms
83:	learn: 14.2161532	total: 435ms	remaining: 82.8ms
84:	learn: 14.1582910	total: 440ms	remaining: 77.6ms
85:	learn: 14.1029153	total: 445ms	remaining: 72.4ms
86:	learn: 14.0475835	total: 449ms	remaining: 67.1ms
87:	learn: 13.9892661	total: 454ms	remaining: 61.9ms
88:	learn: 13.9481628	total: 459ms	remaining: 56.8ms
89:	learn: 13.8483991	total: 464ms	remaining: 51.6ms
90:	learn: 13.7775614	total: 468ms	remaining: 46.3ms
91:	learn: 13.7304585	total: 473ms	remaining: 41.1ms
92:	learn: 13.6783381	total: 478ms	remaining: 36ms
93:	learn: 13.6356964	total: 483ms	remaining: 30.8ms
94:	learn: 13.5924371	total: 487ms	remaining: 25.6ms
95:	learn: 13.5400746	total: 492ms	remaining: 20.5ms
96:	learn: 13.4897333	total: 496ms	remaining: 15.3ms
97:	learn: 13.4470321	total: 501ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 506ms	remaining: 5.11ms
99:	learn: 13.3082371	total: 513ms	remaining: 0us
0:	learn: 43.0395283	total: 4.83ms	remaining: 478ms
1:	learn: 42.1130223	total: 9.71ms	remaining: 476ms
2:	learn: 41.1753409	total: 14.5ms	remaining: 469ms
3:	learn: 40.3637444	total: 18.8ms	remaining: 452ms
4:	learn: 39.6508088	total: 23.1ms	remaining: 439ms
5:	learn: 38.7217934	total: 27.6ms	remaining: 433ms
6:	learn: 37.8538055	total: 31.9ms	remaining: 424ms
7:	learn: 36.9793574	total: 36.2ms	remaining: 417ms
8:	learn: 36.3076984	total: 40.5ms	remaining: 410ms
9:	learn: 35.6673160	total: 45ms	remaining: 405ms
10:	learn: 34.8889800	total: 49.3ms	remaining: 399ms
11:	learn: 34.1675517	total: 53.4ms	remaining: 391ms
12:	learn: 33.6779564	total: 57.6ms	remaining: 386ms
13:	learn: 33.0710039	total: 62ms	remaining: 381ms
14:	learn: 32.4966674	total: 66.2ms	remaining: 375ms
15:	learn: 31.9492856	total: 70.5ms	remaining: 370ms
16:	learn: 31.5108129	total: 74.5ms	remaining: 364ms
17:	learn: 30.9804023	total: 78.8ms	remaining: 359ms
18:	learn: 30.4169089	total: 82.8ms	remaining: 353ms
19:	learn: 29.8930375	total: 87ms	remaining: 348ms
20:	learn: 29.3974421	total: 91.4ms	remaining: 344ms
21:	learn: 28.8792307	total: 95.7ms	remaining: 339ms
22:	learn: 28.3894474	total: 99.7ms	remaining: 334ms
23:	learn: 27.9921276	total: 104ms	remaining: 330ms
24:	learn: 27.6158887	total: 108ms	remaining: 325ms
25:	learn: 27.2866950	total: 113ms	remaining: 321ms
26:	learn: 26.8770708	total: 117ms	remaining: 316ms
27:	learn: 26.6233005	total: 121ms	remaining: 312ms
28:	learn: 26.2921934	total: 126ms	remaining: 309ms
29:	learn: 25.9156920	total: 136ms	remaining: 317ms
30:	learn: 25.5311106	total: 137ms	remaining: 306ms
31:	learn: 25.2178997	total: 142ms	remaining: 302ms
32:	learn: 24.8572196	total: 147ms	remaining: 297ms
33:	learn: 24.5849710	total: 152ms	remaining: 294ms
34:	learn: 24.2209190	total: 160ms	remaining: 297ms
35:	learn: 23.8708250	total: 168ms	remaining: 299ms
36:	learn: 23.5325279	total: 176ms	remaining: 300ms
37:	learn: 23.2116148	total: 184ms	remaining: 300ms
38:	learn: 22.9696787	total: 189ms	remaining: 296ms
39:	learn: 22.7936783	total: 195ms	remaining: 292ms
40:	learn: 22.6228847	total: 200ms	remaining: 288ms
41:	learn: 22.3691527	total: 205ms	remaining: 283ms
42:	learn: 22.1002173	total: 210ms	remaining: 279ms
43:	learn: 21.9157268	total: 215ms	remaining: 274ms
44:	learn: 21.7229102	total: 220ms	remaining: 269ms
45:	learn: 21.4642005	total: 226ms	remaining: 265ms
46:	learn: 21.3029442	total: 231ms	remaining: 260ms
47:	learn: 21.1469792	total: 236ms	remaining: 255ms
48:	learn: 20.9458235	total: 241ms	remaining: 251ms
49:	learn: 20.7335242	total: 246ms	remaining: 246ms
50:	learn: 20.5440269	total: 252ms	remaining: 242ms
51:	learn: 20.3661449	total: 257ms	remaining: 237ms
52:	learn: 20.2158134	total: 261ms	remaining: 232ms
53:	learn: 19.9934873	total: 265ms	remaining: 226ms
54:	learn: 19.7879739	total: 270ms	remaining: 221ms
55:	learn: 19.6630460	total: 274ms	remaining: 215ms
56:	learn: 19.5152729	total: 279ms	remaining: 210ms
57:	learn: 19.3581128	total: 283ms	remaining: 205ms
58:	learn: 19.2209303	total: 287ms	remaining: 200ms
59:	learn: 19.0965248	total: 292ms	remaining: 195ms
60:	learn: 19.0035954	total: 296ms	remaining: 189ms
61:	learn: 18.8554149	total: 301ms	remaining: 185ms
62:	learn: 18.7095427	total: 306ms	remaining: 180ms
63:	learn: 18.5751494	total: 311ms	remaining: 175ms
64:	learn: 18.4678251	total: 315ms	remaining: 170ms
65:	learn: 18.3500325	total: 320ms	remaining: 165ms
66:	learn: 18.2088983	total: 325ms	remaining: 160ms
67:	learn: 18.0737705	total: 330ms	remaining: 155ms
68:	learn: 17.9325058	total: 334ms	remaining: 150ms
69:	learn: 17.8003911	total: 339ms	remaining: 145ms
70:	learn: 17.7385366	total: 344ms	remaining: 141ms
71:	learn: 17.6106998	total: 349ms	remaining: 136ms
72:	learn: 17.4816270	total: 355ms	remaining: 131ms
73:	learn: 17.4025554	total: 362ms	remaining: 127ms
74:	learn: 17.2902108	total: 370ms	remaining: 123ms
75:	learn: 17.2158048	total: 376ms	remaining: 119ms
76:	learn: 17.1261053	total: 381ms	remaining: 114ms
77:	learn: 17.0308917	total: 387ms	remaining: 109ms
78:	learn: 16.9546705	total: 392ms	remaining: 104ms
79:	learn: 16.8319165	total: 396ms	remaining: 99.1ms
80:	learn: 16.7687017	total: 401ms	remaining: 94ms
81:	learn: 16.6972326	total: 405ms	remaining: 88.9ms
82:	learn: 16.6124580	total: 410ms	remaining: 83.9ms
83:	learn: 16.4999052	total: 414ms	remaining: 78.8ms
84:	learn: 16.4302484	total: 418ms	remaining: 73.8ms
85:	learn: 16.3201363	total: 423ms	remaining: 68.8ms
86:	learn: 16.2534314	total: 427ms	remaining: 63.8ms
87:	learn: 16.1720485	total: 431ms	remaining: 58.8ms
88:	learn: 16.0625751	total: 436ms	remaining: 53.8ms
89:	learn: 15.9135088	total: 440ms	remaining: 48.9ms
90:	learn: 15.8658863	total: 444ms	remaining: 43.9ms
91:	learn: 15.8066805	total: 448ms	remaining: 39ms
92:	learn: 15.7412103	total: 452ms	remaining: 34ms
93:	learn: 15.6542776	total: 457ms	remaining: 29.2ms
94:	learn: 15.5760334	total: 461ms	remaining: 24.3ms
95:	learn: 15.5434131	total: 465ms	remaining: 19.4ms
96:	learn: 15.4709561	total: 470ms	remaining: 14.5ms
97:	learn: 15.4449618	total: 473ms	remaining: 9.66ms
98:	learn: 15.3752761	total: 478ms	remaining: 4.82ms
99:	learn: 15.3106595	total: 482ms	remaining: 0us
0:	learn: 46.7142257	total: 4.83ms	remaining: 478ms
1:	learn: 45.7634153	total: 8.79ms	remaining: 431ms
2:	learn: 45.0054253	total: 12.6ms	remaining: 408ms
3:	learn: 44.2120432	total: 16.8ms	remaining: 403ms
4:	learn: 43.3960472	total: 21.4ms	remaining: 406ms
5:	learn: 42.8588120	total: 25.9ms	remaining: 406ms
6:	learn: 41.9533701	total: 30.5ms	remaining: 405ms
7:	learn: 41.2745030	total: 35.4ms	remaining: 407ms
8:	learn: 40.6797495	total: 39.8ms	remaining: 403ms
9:	learn: 39.9899571	total: 44.7ms	remaining: 402ms
10:	learn: 39.4682100	total: 49.4ms	remaining: 400ms
11:	learn: 39.0305595	total: 58.2ms	remaining: 427ms
12:	learn: 38.4200417	total: 65.8ms	remaining: 440ms
13:	learn: 37.8425194	total: 74.6ms	remaining: 458ms
14:	learn: 37.4203127	total: 81.8ms	remaining: 464ms
15:	learn: 36.9917688	total: 87.2ms	remaining: 458ms
16:	learn: 36.5544138	total: 92.4ms	remaining: 451ms
17:	learn: 36.0727019	total: 97.8ms	remaining: 445ms
18:	learn: 35.4835715	total: 103ms	remaining: 439ms
19:	learn: 34.9865654	total: 109ms	remaining: 436ms
20:	learn: 34.6063373	total: 114ms	remaining: 430ms
21:	learn: 34.0997289	total: 119ms	remaining: 423ms
22:	learn: 33.7313171	total: 125ms	remaining: 418ms
23:	learn: 33.3582000	total: 130ms	remaining: 413ms
24:	learn: 32.9432456	total: 135ms	remaining: 406ms
25:	learn: 32.5220888	total: 140ms	remaining: 399ms
26:	learn: 32.2172292	total: 146ms	remaining: 394ms
27:	learn: 31.8972904	total: 152ms	remaining: 390ms
28:	learn: 31.6405350	total: 156ms	remaining: 383ms
29:	learn: 31.4167702	total: 161ms	remaining: 375ms
30:	learn: 30.8541961	total: 162ms	remaining: 361ms
31:	learn: 30.5572111	total: 167ms	remaining: 354ms
32:	learn: 30.1700399	total: 172ms	remaining: 349ms
33:	learn: 29.8537271	total: 176ms	remaining: 342ms
34:	learn: 29.6192540	total: 181ms	remaining: 336ms
35:	learn: 29.3276362	total: 185ms	remaining: 329ms
36:	learn: 28.9985179	total: 190ms	remaining: 323ms
37:	learn: 28.7046880	total: 195ms	remaining: 318ms
38:	learn: 28.4412677	total: 199ms	remaining: 311ms
39:	learn: 28.1277292	total: 204ms	remaining: 306ms
40:	learn: 27.9000750	total: 209ms	remaining: 300ms
41:	learn: 27.5433162	total: 214ms	remaining: 295ms
42:	learn: 27.2493285	total: 218ms	remaining: 290ms
43:	learn: 26.9576632	total: 220ms	remaining: 280ms
44:	learn: 26.6177110	total: 225ms	remaining: 275ms
45:	learn: 26.2812456	total: 230ms	remaining: 271ms
46:	learn: 26.0803859	total: 235ms	remaining: 265ms
47:	learn: 25.9543581	total: 240ms	remaining: 260ms
48:	learn: 25.7951582	total: 244ms	remaining: 254ms
49:	learn: 25.6548184	total: 249ms	remaining: 249ms
50:	learn: 25.4010843	total: 257ms	remaining: 247ms
51:	learn: 24.9773937	total: 264ms	remaining: 244ms
52:	learn: 24.8026156	total: 271ms	remaining: 240ms
53:	learn: 24.5568053	total: 276ms	remaining: 235ms
54:	learn: 24.2281839	total: 282ms	remaining: 230ms
55:	learn: 23.9202795	total: 285ms	remaining: 224ms
56:	learn: 23.7625591	total: 289ms	remaining: 218ms
57:	learn: 23.5429721	total: 293ms	remaining: 212ms
58:	learn: 23.3175893	total: 297ms	remaining: 207ms
59:	learn: 23.2035130	total: 301ms	remaining: 201ms
60:	learn: 23.0232450	total: 305ms	remaining: 195ms
61:	learn: 22.8384958	total: 309ms	remaining: 189ms
62:	learn: 22.6499902	total: 314ms	remaining: 184ms
63:	learn: 22.4577426	total: 318ms	remaining: 179ms
64:	learn: 22.3333158	total: 322ms	remaining: 174ms
65:	learn: 22.2064131	total: 326ms	remaining: 168ms
66:	learn: 22.1434971	total: 331ms	remaining: 163ms
67:	learn: 21.9596519	total: 336ms	remaining: 158ms
68:	learn: 21.8475576	total: 340ms	remaining: 153ms
69:	learn: 21.6954745	total: 345ms	remaining: 148ms
70:	learn: 21.5635976	total: 350ms	remaining: 143ms
71:	learn: 21.4588506	total: 354ms	remaining: 138ms
72:	learn: 21.3527268	total: 359ms	remaining: 133ms
73:	learn: 21.2661288	total: 363ms	remaining: 128ms
74:	learn: 21.1817333	total: 367ms	remaining: 122ms
75:	learn: 21.0527553	total: 371ms	remaining: 117ms
76:	learn: 20.9229021	total: 375ms	remaining: 112ms
77:	learn: 20.7563946	total: 379ms	remaining: 107ms
78:	learn: 20.6569831	total: 384ms	remaining: 102ms
79:	learn: 20.4982663	total: 388ms	remaining: 96.9ms
80:	learn: 20.3185460	total: 392ms	remaining: 91.9ms
81:	learn: 20.2096241	total: 396ms	remaining: 86.8ms
82:	learn: 20.1274891	total: 400ms	remaining: 81.9ms
83:	learn: 20.0740139	total: 404ms	remaining: 76.9ms
84:	learn: 19.9630699	total: 408ms	remaining: 71.9ms
85:	learn: 19.8753899	total: 412ms	remaining: 67ms
86:	learn: 19.6563612	total: 416ms	remaining: 62.2ms
87:	learn: 19.4680232	total: 421ms	remaining: 57.4ms
88:	learn: 19.3503431	total: 426ms	remaining: 52.6ms
89:	learn: 19.2221379	total: 430ms	remaining: 47.8ms
90:	learn: 19.0732542	total: 435ms	remaining: 43ms
91:	learn: 18.9825190	total: 439ms	remaining: 38.2ms
92:	learn: 18.8839009	total: 444ms	remaining: 33.4ms
93:	learn: 18.8012219	total: 452ms	remaining: 28.9ms
94:	learn: 18.7172713	total: 459ms	remaining: 24.2ms
95:	learn: 18.6201170	total: 469ms	remaining: 19.6ms
96:	learn: 18.5318611	total: 476ms	remaining: 14.7ms
97:	learn: 18.3833356	total: 482ms	remaining: 9.83ms
98:	learn: 18.3289700	total: 487ms	remaining: 4.92ms
99:	learn: 18.2227333	total: 492ms	remaining: 0us
0:	learn: 46.3764524	total: 4.69ms	remaining: 464ms
1:	learn: 45.5561269	total: 8.27ms	remaining: 405ms
2:	learn: 44.8811245	total: 12.1ms	remaining: 390ms
3:	learn: 44.0788617	total: 16.1ms	remaining: 386ms
4:	learn: 43.3619790	total: 20.3ms	remaining: 386ms
5:	learn: 42.6912112	total: 24.2ms	remaining: 379ms
6:	learn: 42.2292118	total: 28.1ms	remaining: 374ms
7:	learn: 41.7725191	total: 32.4ms	remaining: 373ms
8:	learn: 41.1676614	total: 36.5ms	remaining: 369ms
9:	learn: 40.5771076	total: 40.5ms	remaining: 365ms
10:	learn: 39.8343757	total: 44.3ms	remaining: 358ms
11:	learn: 39.3761142	total: 48.4ms	remaining: 355ms
12:	learn: 38.5254692	total: 52.6ms	remaining: 352ms
13:	learn: 37.9629555	total: 57.3ms	remaining: 352ms
14:	learn: 37.4418438	total: 61.2ms	remaining: 347ms
15:	learn: 37.0507283	total: 65.2ms	remaining: 343ms
16:	learn: 36.6264217	total: 69.8ms	remaining: 341ms
17:	learn: 36.1114940	total: 75.1ms	remaining: 342ms
18:	learn: 35.7193862	total: 80.3ms	remaining: 342ms
19:	learn: 35.3301177	total: 85.4ms	remaining: 342ms
20:	learn: 35.0598280	total: 93.8ms	remaining: 353ms
21:	learn: 34.5469736	total: 102ms	remaining: 360ms
22:	learn: 34.2064215	total: 109ms	remaining: 366ms
23:	learn: 33.7280710	total: 115ms	remaining: 363ms
24:	learn: 33.3282940	total: 120ms	remaining: 359ms
25:	learn: 32.8478961	total: 127ms	remaining: 360ms
26:	learn: 32.5722164	total: 131ms	remaining: 355ms
27:	learn: 32.2457019	total: 136ms	remaining: 349ms
28:	learn: 31.9230495	total: 141ms	remaining: 344ms
29:	learn: 31.4311611	total: 145ms	remaining: 339ms
30:	learn: 30.9179052	total: 150ms	remaining: 333ms
31:	learn: 30.6201141	total: 154ms	remaining: 328ms
32:	learn: 30.3421106	total: 159ms	remaining: 323ms
33:	learn: 29.9885373	total: 164ms	remaining: 318ms
34:	learn: 29.7462780	total: 169ms	remaining: 313ms
35:	learn: 29.3607153	total: 173ms	remaining: 308ms
36:	learn: 29.1793078	total: 178ms	remaining: 303ms
37:	learn: 28.9276538	total: 183ms	remaining: 298ms
38:	learn: 28.6903934	total: 187ms	remaining: 292ms
39:	learn: 28.2095033	total: 191ms	remaining: 287ms
40:	learn: 27.7990608	total: 195ms	remaining: 281ms
41:	learn: 27.5406632	total: 200ms	remaining: 276ms
42:	learn: 27.2575376	total: 204ms	remaining: 271ms
43:	learn: 26.9741707	total: 209ms	remaining: 266ms
44:	learn: 26.6606899	total: 213ms	remaining: 261ms
45:	learn: 26.4015833	total: 217ms	remaining: 255ms
46:	learn: 26.1828993	total: 221ms	remaining: 250ms
47:	learn: 26.0233709	total: 224ms	remaining: 243ms
48:	learn: 25.9300399	total: 228ms	remaining: 237ms
49:	learn: 25.5861489	total: 232ms	remaining: 232ms
50:	learn: 25.4322012	total: 236ms	remaining: 227ms
51:	learn: 25.1595644	total: 240ms	remaining: 222ms
52:	learn: 24.9955303	total: 244ms	remaining: 216ms
53:	learn: 24.7273966	total: 248ms	remaining: 211ms
54:	learn: 24.5747978	total: 253ms	remaining: 207ms
55:	learn: 24.3807977	total: 258ms	remaining: 202ms
56:	learn: 24.1689569	total: 262ms	remaining: 198ms
57:	learn: 23.9898221	total: 267ms	remaining: 193ms
58:	learn: 23.7566414	total: 271ms	remaining: 189ms
59:	learn: 23.6641165	total: 276ms	remaining: 184ms
60:	learn: 23.5658066	total: 281ms	remaining: 179ms
61:	learn: 23.4338851	total: 285ms	remaining: 175ms
62:	learn: 23.2408837	total: 290ms	remaining: 170ms
63:	learn: 23.0642038	total: 294ms	remaining: 165ms
64:	learn: 22.9032045	total: 298ms	remaining: 161ms
65:	learn: 22.7736138	total: 303ms	remaining: 156ms
66:	learn: 22.6836443	total: 310ms	remaining: 153ms
67:	learn: 22.5983654	total: 318ms	remaining: 150ms
68:	learn: 22.4419813	total: 326ms	remaining: 147ms
69:	learn: 22.2863339	total: 332ms	remaining: 142ms
70:	learn: 22.1792943	total: 340ms	remaining: 139ms
71:	learn: 22.1130574	total: 345ms	remaining: 134ms
72:	learn: 21.9858161	total: 350ms	remaining: 129ms
73:	learn: 21.8577784	total: 355ms	remaining: 125ms
74:	learn: 21.7845222	total: 360ms	remaining: 120ms
75:	learn: 21.6831390	total: 365ms	remaining: 115ms
76:	learn: 21.6292521	total: 370ms	remaining: 111ms
77:	learn: 21.5789330	total: 375ms	remaining: 106ms
78:	learn: 21.5420942	total: 380ms	remaining: 101ms
79:	learn: 21.4280939	total: 385ms	remaining: 96.2ms
80:	learn: 21.3641165	total: 389ms	remaining: 91.3ms
81:	learn: 21.2734814	total: 394ms	remaining: 86.4ms
82:	learn: 21.2220323	total: 398ms	remaining: 81.5ms
83:	learn: 21.0625792	total: 402ms	remaining: 76.7ms
84:	learn: 20.9488320	total: 408ms	remaining: 71.9ms
85:	learn: 20.8504255	total: 413ms	remaining: 67.3ms
86:	learn: 20.7848510	total: 418ms	remaining: 62.5ms
87:	learn: 20.7247442	total: 423ms	remaining: 57.6ms
88:	learn: 20.5698590	total: 427ms	remaining: 52.7ms
89:	learn: 20.4067620	total: 431ms	remaining: 47.9ms
90:	learn: 20.3062482	total: 435ms	remaining: 43ms
91:	learn: 20.2029696	total: 439ms	remaining: 38.2ms
92:	learn: 20.1384849	total: 443ms	remaining: 33.4ms
93:	learn: 20.0260709	total: 447ms	remaining: 28.5ms
94:	learn: 19.9122100	total: 451ms	remaining: 23.7ms
95:	learn: 19.8648487	total: 455ms	remaining: 19ms
96:	learn: 19.8207072	total: 460ms	remaining: 14.2ms
97:	learn: 19.7261189	total: 463ms	remaining: 9.46ms
98:	learn: 19.7042438	total: 467ms	remaining: 4.72ms
99:	learn: 19.6546645	total: 471ms	remaining: 0us
0:	learn: 47.0239288	total: 6.41ms	remaining: 635ms
1:	learn: 46.2253829	total: 10.7ms	remaining: 525ms
2:	learn: 45.5580301	total: 15.1ms	remaining: 487ms
3:	learn: 44.7273237	total: 19.2ms	remaining: 460ms
4:	learn: 43.8867421	total: 23.3ms	remaining: 443ms
5:	learn: 43.3615911	total: 27.5ms	remaining: 431ms
6:	learn: 42.8548390	total: 31.9ms	remaining: 423ms
7:	learn: 42.1606758	total: 36ms	remaining: 415ms
8:	learn: 41.6625870	total: 40.2ms	remaining: 406ms
9:	learn: 40.9497092	total: 44.5ms	remaining: 401ms
10:	learn: 40.1886318	total: 48.5ms	remaining: 393ms
11:	learn: 39.7456423	total: 53ms	remaining: 388ms
12:	learn: 39.1171373	total: 57.2ms	remaining: 383ms
13:	learn: 38.5451069	total: 61.6ms	remaining: 378ms
14:	learn: 38.0155834	total: 65.7ms	remaining: 372ms
15:	learn: 37.5631354	total: 70.1ms	remaining: 368ms
16:	learn: 37.1030023	total: 74.4ms	remaining: 363ms
17:	learn: 36.4563029	total: 78.6ms	remaining: 358ms
18:	learn: 36.0160976	total: 83.1ms	remaining: 354ms
19:	learn: 35.5079827	total: 87.4ms	remaining: 350ms
20:	learn: 35.2111885	total: 91.9ms	remaining: 346ms
21:	learn: 34.9397465	total: 96.2ms	remaining: 341ms
22:	learn: 34.5270048	total: 100ms	remaining: 335ms
23:	learn: 34.0169260	total: 105ms	remaining: 331ms
24:	learn: 33.7454892	total: 109ms	remaining: 327ms
25:	learn: 33.2648157	total: 113ms	remaining: 322ms
26:	learn: 32.8899427	total: 117ms	remaining: 317ms
27:	learn: 32.6185050	total: 121ms	remaining: 311ms
28:	learn: 32.3528531	total: 125ms	remaining: 305ms
29:	learn: 32.0859923	total: 129ms	remaining: 301ms
30:	learn: 31.6511144	total: 133ms	remaining: 296ms
31:	learn: 31.2571765	total: 137ms	remaining: 292ms
32:	learn: 30.9770049	total: 141ms	remaining: 287ms
33:	learn: 30.6084872	total: 146ms	remaining: 283ms
34:	learn: 30.3448632	total: 150ms	remaining: 278ms
35:	learn: 30.0360942	total: 155ms	remaining: 275ms
36:	learn: 29.6648968	total: 159ms	remaining: 271ms
37:	learn: 29.3165114	total: 164ms	remaining: 267ms
38:	learn: 29.0829198	total: 168ms	remaining: 263ms
39:	learn: 28.7752064	total: 173ms	remaining: 259ms
40:	learn: 28.3622191	total: 177ms	remaining: 255ms
41:	learn: 28.1346631	total: 182ms	remaining: 251ms
42:	learn: 27.9585719	total: 189ms	remaining: 251ms
43:	learn: 27.6565566	total: 197ms	remaining: 251ms
44:	learn: 27.3616172	total: 207ms	remaining: 253ms
45:	learn: 27.0658637	total: 217ms	remaining: 254ms
46:	learn: 26.8660382	total: 222ms	remaining: 250ms
47:	learn: 26.6536078	total: 228ms	remaining: 247ms
48:	learn: 26.3524440	total: 233ms	remaining: 242ms
49:	learn: 26.1595277	total: 238ms	remaining: 238ms
50:	learn: 25.9273523	total: 243ms	remaining: 233ms
51:	learn: 25.7195580	total: 248ms	remaining: 229ms
52:	learn: 25.5730225	total: 254ms	remaining: 225ms
53:	learn: 25.3455276	total: 259ms	remaining: 221ms
54:	learn: 25.2289675	total: 264ms	remaining: 216ms
55:	learn: 25.0133024	total: 269ms	remaining: 211ms
56:	learn: 24.8406714	total: 274ms	remaining: 206ms
57:	learn: 24.6367857	total: 279ms	remaining: 202ms
58:	learn: 24.5338177	total: 285ms	remaining: 198ms
59:	learn: 24.3799964	total: 291ms	remaining: 194ms
60:	learn: 24.1447492	total: 295ms	remaining: 188ms
61:	learn: 23.9880495	total: 299ms	remaining: 183ms
62:	learn: 23.7140630	total: 303ms	remaining: 178ms
63:	learn: 23.5003791	total: 307ms	remaining: 173ms
64:	learn: 23.3207645	total: 312ms	remaining: 168ms
65:	learn: 23.1958356	total: 315ms	remaining: 162ms
66:	learn: 23.0471302	total: 320ms	remaining: 158ms
67:	learn: 22.8977183	total: 325ms	remaining: 153ms
68:	learn: 22.7187400	total: 329ms	remaining: 148ms
69:	learn: 22.6523405	total: 333ms	remaining: 143ms
70:	learn: 22.4767453	total: 337ms	remaining: 138ms
71:	learn: 22.3243677	total: 341ms	remaining: 133ms
72:	learn: 22.2133096	total: 345ms	remaining: 127ms
73:	learn: 22.1151713	total: 349ms	remaining: 123ms
74:	learn: 22.0296666	total: 353ms	remaining: 118ms
75:	learn: 21.9195980	total: 357ms	remaining: 113ms
76:	learn: 21.8401730	total: 361ms	remaining: 108ms
77:	learn: 21.8079797	total: 365ms	remaining: 103ms
78:	learn: 21.7274109	total: 370ms	remaining: 98.3ms
79:	learn: 21.6663032	total: 374ms	remaining: 93.6ms
80:	learn: 21.5633117	total: 379ms	remaining: 88.9ms
81:	learn: 21.4542467	total: 383ms	remaining: 84.2ms
82:	learn: 21.3177957	total: 388ms	remaining: 79.4ms
83:	learn: 21.1289167	total: 392ms	remaining: 74.8ms
84:	learn: 21.0297368	total: 398ms	remaining: 70.2ms
85:	learn: 20.9089564	total: 405ms	remaining: 66ms
86:	learn: 20.7653988	total: 412ms	remaining: 61.6ms
87:	learn: 20.6521894	total: 419ms	remaining: 57.1ms
88:	learn: 20.5193021	total: 423ms	remaining: 52.3ms
89:	learn: 20.4361620	total: 429ms	remaining: 47.7ms
90:	learn: 20.3546710	total: 433ms	remaining: 42.9ms
91:	learn: 20.2513296	total: 437ms	remaining: 38ms
92:	learn: 20.1605550	total: 441ms	remaining: 33.2ms
93:	learn: 20.0515942	total: 445ms	remaining: 28.4ms
94:	learn: 19.9800764	total: 449ms	remaining: 23.7ms
95:	learn: 19.8996532	total: 453ms	remaining: 18.9ms
96:	learn: 19.8450910	total: 457ms	remaining: 14.1ms
97:	learn: 19.7887346	total: 461ms	remaining: 9.41ms
98:	learn: 19.7230872	total: 465ms	remaining: 4.7ms
99:	learn: 19.6328825	total: 469ms	remaining: 0us
0:	learn: 27.3441720	total: 20.3ms	remaining: 2.01s
1:	learn: 26.7159954	total: 39.7ms	remaining: 1.94s
2:	learn: 26.0850318	total: 59.1ms	remaining: 1.91s
3:	learn: 25.4039656	total: 80.3ms	remaining: 1.93s
4:	learn: 24.7930659	total: 101ms	remaining: 1.92s
5:	learn: 24.2028590	total: 127ms	remaining: 1.99s
6:	learn: 23.6622902	total: 153ms	remaining: 2.03s
7:	learn: 23.1531175	total: 175ms	remaining: 2.02s
8:	learn: 22.7050792	total: 198ms	remaining: 2s
9:	learn: 22.2151788	total: 219ms	remaining: 1.97s
10:	learn: 21.7708844	total: 242ms	remaining: 1.96s
11:	learn: 21.2587174	total: 264ms	remaining: 1.94s
12:	learn: 20.7559870	total: 286ms	remaining: 1.91s
13:	learn: 20.3040842	total: 308ms	remaining: 1.89s
14:	learn: 19.9019524	total: 337ms	remaining: 1.91s
15:	learn: 19.5186012	total: 357ms	remaining: 1.88s
16:	learn: 19.1521621	total: 377ms	remaining: 1.84s
17:	learn: 18.7652180	total: 396ms	remaining: 1.8s
18:	learn: 18.4446446	total: 416ms	remaining: 1.77s
19:	learn: 18.0977650	total: 435ms	remaining: 1.74s
20:	learn: 17.7791328	total: 456ms	remaining: 1.72s
21:	learn: 17.4777648	total: 476ms	remaining: 1.69s
22:	learn: 17.1794361	total: 500ms	remaining: 1.67s
23:	learn: 16.8685032	total: 523ms	remaining: 1.66s
24:	learn: 16.6274695	total: 557ms	remaining: 1.67s
25:	learn: 16.3071099	total: 582ms	remaining: 1.66s
26:	learn: 16.0249663	total: 606ms	remaining: 1.64s
27:	learn: 15.7535309	total: 630ms	remaining: 1.62s
28:	learn: 15.4777235	total: 654ms	remaining: 1.6s
29:	learn: 15.2410825	total: 679ms	remaining: 1.58s
30:	learn: 15.0133002	total: 702ms	remaining: 1.56s
31:	learn: 14.8018912	total: 724ms	remaining: 1.54s
32:	learn: 14.5701546	total: 748ms	remaining: 1.52s
33:	learn: 14.3799060	total: 772ms	remaining: 1.5s
34:	learn: 14.0975095	total: 801ms	remaining: 1.49s
35:	learn: 13.8873493	total: 825ms	remaining: 1.47s
36:	learn: 13.6812023	total: 847ms	remaining: 1.44s
37:	learn: 13.4943017	total: 868ms	remaining: 1.42s
38:	learn: 13.3224094	total: 891ms	remaining: 1.39s
39:	learn: 13.0967901	total: 914ms	remaining: 1.37s
40:	learn: 12.9138190	total: 937ms	remaining: 1.35s
41:	learn: 12.7764458	total: 959ms	remaining: 1.32s
42:	learn: 12.6593656	total: 990ms	remaining: 1.31s
43:	learn: 12.5051105	total: 1.01s	remaining: 1.29s
44:	learn: 12.3057146	total: 1.04s	remaining: 1.27s
45:	learn: 12.1487674	total: 1.06s	remaining: 1.24s
46:	learn: 11.9614903	total: 1.08s	remaining: 1.22s
47:	learn: 11.7921265	total: 1.1s	remaining: 1.19s
48:	learn: 11.6572640	total: 1.13s	remaining: 1.17s
49:	learn: 11.5251463	total: 1.15s	remaining: 1.15s
50:	learn: 11.3789931	total: 1.17s	remaining: 1.12s
51:	learn: 11.2691375	total: 1.19s	remaining: 1.1s
52:	learn: 11.1161131	total: 1.22s	remaining: 1.08s
53:	learn: 11.0246399	total: 1.24s	remaining: 1.05s
54:	learn: 10.9152420	total: 1.26s	remaining: 1.03s
55:	learn: 10.7746769	total: 1.28s	remaining: 1s
56:	learn: 10.6222917	total: 1.3s	remaining: 982ms
57:	learn: 10.5096115	total: 1.32s	remaining: 957ms
58:	learn: 10.3857030	total: 1.34s	remaining: 933ms
59:	learn: 10.2789057	total: 1.36s	remaining: 909ms
60:	learn: 10.1490749	total: 1.39s	remaining: 886ms
61:	learn: 10.0553291	total: 1.41s	remaining: 862ms
62:	learn: 9.9351043	total: 1.44s	remaining: 845ms
63:	learn: 9.8245261	total: 1.46s	remaining: 822ms
64:	learn: 9.7207577	total: 1.48s	remaining: 799ms
65:	learn: 9.5920661	total: 1.5s	remaining: 776ms
66:	learn: 9.4832767	total: 1.53s	remaining: 753ms
67:	learn: 9.3724149	total: 1.55s	remaining: 728ms
68:	learn: 9.2459801	total: 1.57s	remaining: 705ms
69:	learn: 9.1740635	total: 1.59s	remaining: 681ms
70:	learn: 9.1015730	total: 1.61s	remaining: 658ms
71:	learn: 9.0196460	total: 1.64s	remaining: 637ms
72:	learn: 8.9458977	total: 1.66s	remaining: 615ms
73:	learn: 8.8434400	total: 1.69s	remaining: 592ms
74:	learn: 8.7495151	total: 1.71s	remaining: 569ms
75:	learn: 8.6521348	total: 1.73s	remaining: 546ms
76:	learn: 8.5654483	total: 1.75s	remaining: 523ms
77:	learn: 8.4965765	total: 1.77s	remaining: 499ms
78:	learn: 8.4308736	total: 1.79s	remaining: 476ms
79:	learn: 8.3675601	total: 1.81s	remaining: 453ms
80:	learn: 8.3193887	total: 1.84s	remaining: 431ms
81:	learn: 8.2507990	total: 1.86s	remaining: 410ms
82:	learn: 8.1583259	total: 1.89s	remaining: 387ms
83:	learn: 8.0995902	total: 1.91s	remaining: 364ms
84:	learn: 8.0236655	total: 1.93s	remaining: 341ms
85:	learn: 7.9634698	total: 1.96s	remaining: 318ms
86:	learn: 7.9109081	total: 1.98s	remaining: 295ms
87:	learn: 7.8385006	total: 2s	remaining: 272ms
88:	learn: 7.7859488	total: 2.02s	remaining: 250ms
89:	learn: 7.7270142	total: 2.04s	remaining: 227ms
90:	learn: 7.6774253	total: 2.07s	remaining: 205ms
91:	learn: 7.6126552	total: 2.09s	remaining: 182ms
92:	learn: 7.5392178	total: 2.11s	remaining: 159ms
93:	learn: 7.4745082	total: 2.13s	remaining: 136ms
94:	learn: 7.4106939	total: 2.16s	remaining: 114ms
95:	learn: 7.3573350	total: 2.18s	remaining: 90.8ms
96:	learn: 7.2889777	total: 2.2s	remaining: 68ms
97:	learn: 7.2204939	total: 2.22s	remaining: 45.3ms
98:	learn: 7.1646465	total: 2.24s	remaining: 22.6ms
99:	learn: 7.1204610	total: 2.27s	remaining: 0us
0:	learn: 42.5494645	total: 22.1ms	remaining: 2.18s
1:	learn: 41.2913513	total: 46ms	remaining: 2.25s
2:	learn: 40.1676527	total: 66.8ms	remaining: 2.16s
3:	learn: 38.7664819	total: 87.6ms	remaining: 2.1s
4:	learn: 37.5407492	total: 109ms	remaining: 2.07s
5:	learn: 36.4295331	total: 132ms	remaining: 2.07s
6:	learn: 35.2895967	total: 161ms	remaining: 2.14s
7:	learn: 34.1884539	total: 186ms	remaining: 2.14s
8:	learn: 33.1817690	total: 209ms	remaining: 2.11s
9:	learn: 32.3518195	total: 229ms	remaining: 2.06s
10:	learn: 31.4837515	total: 251ms	remaining: 2.03s
11:	learn: 30.7255972	total: 273ms	remaining: 2s
12:	learn: 29.9298648	total: 295ms	remaining: 1.97s
13:	learn: 29.0574249	total: 316ms	remaining: 1.94s
14:	learn: 28.4097384	total: 339ms	remaining: 1.92s
15:	learn: 27.5317445	total: 363ms	remaining: 1.9s
16:	learn: 26.7911946	total: 394ms	remaining: 1.92s
17:	learn: 26.1103465	total: 419ms	remaining: 1.91s
18:	learn: 25.5295903	total: 444ms	remaining: 1.89s
19:	learn: 24.8544960	total: 466ms	remaining: 1.86s
20:	learn: 24.2772682	total: 490ms	remaining: 1.84s
21:	learn: 23.6936944	total: 514ms	remaining: 1.82s
22:	learn: 23.1300945	total: 536ms	remaining: 1.79s
23:	learn: 22.5333494	total: 562ms	remaining: 1.78s
24:	learn: 22.0553465	total: 588ms	remaining: 1.76s
25:	learn: 21.6253628	total: 608ms	remaining: 1.73s
26:	learn: 21.1396219	total: 630ms	remaining: 1.7s
27:	learn: 20.7382905	total: 652ms	remaining: 1.68s
28:	learn: 20.3233915	total: 675ms	remaining: 1.65s
29:	learn: 19.9323992	total: 697ms	remaining: 1.63s
30:	learn: 19.5650439	total: 717ms	remaining: 1.59s
31:	learn: 19.2165649	total: 738ms	remaining: 1.57s
32:	learn: 18.8890056	total: 760ms	remaining: 1.54s
33:	learn: 18.5523762	total: 784ms	remaining: 1.52s
34:	learn: 18.2666116	total: 807ms	remaining: 1.5s
35:	learn: 17.9216926	total: 837ms	remaining: 1.49s
36:	learn: 17.6118879	total: 862ms	remaining: 1.47s
37:	learn: 17.2653313	total: 886ms	remaining: 1.45s
38:	learn: 16.9946585	total: 910ms	remaining: 1.42s
39:	learn: 16.6842506	total: 934ms	remaining: 1.4s
40:	learn: 16.4102287	total: 955ms	remaining: 1.37s
41:	learn: 16.2288795	total: 978ms	remaining: 1.35s
42:	learn: 15.9623692	total: 1s	remaining: 1.33s
43:	learn: 15.7308231	total: 1.02s	remaining: 1.3s
44:	learn: 15.4695555	total: 1.05s	remaining: 1.29s
45:	learn: 15.2706809	total: 1.08s	remaining: 1.26s
46:	learn: 15.0182699	total: 1.1s	remaining: 1.24s
47:	learn: 14.7702088	total: 1.12s	remaining: 1.21s
48:	learn: 14.6303566	total: 1.14s	remaining: 1.19s
49:	learn: 14.4038016	total: 1.16s	remaining: 1.16s
50:	learn: 14.2309807	total: 1.18s	remaining: 1.14s
51:	learn: 14.0308425	total: 1.21s	remaining: 1.11s
52:	learn: 13.8201931	total: 1.23s	remaining: 1.09s
53:	learn: 13.6070078	total: 1.26s	remaining: 1.08s
54:	learn: 13.4230690	total: 1.29s	remaining: 1.05s
55:	learn: 13.2368649	total: 1.31s	remaining: 1.03s
56:	learn: 13.0449556	total: 1.33s	remaining: 1s
57:	learn: 12.8375669	total: 1.35s	remaining: 981ms
58:	learn: 12.6795194	total: 1.38s	remaining: 956ms
59:	learn: 12.5197211	total: 1.4s	remaining: 932ms
60:	learn: 12.4011717	total: 1.42s	remaining: 907ms
61:	learn: 12.2396104	total: 1.44s	remaining: 883ms
62:	learn: 12.0647878	total: 1.46s	remaining: 860ms
63:	learn: 11.9247719	total: 1.49s	remaining: 838ms
64:	learn: 11.7923634	total: 1.51s	remaining: 814ms
65:	learn: 11.6628246	total: 1.53s	remaining: 790ms
66:	learn: 11.5688935	total: 1.56s	remaining: 767ms
67:	learn: 11.4345056	total: 1.58s	remaining: 743ms
68:	learn: 11.3136955	total: 1.6s	remaining: 719ms
69:	learn: 11.2040357	total: 1.62s	remaining: 694ms
70:	learn: 11.1067773	total: 1.64s	remaining: 670ms
71:	learn: 10.9728105	total: 1.66s	remaining: 646ms
72:	learn: 10.8338607	total: 1.68s	remaining: 623ms
73:	learn: 10.7202016	total: 1.71s	remaining: 602ms
74:	learn: 10.5983746	total: 1.74s	remaining: 579ms
75:	learn: 10.4882458	total: 1.76s	remaining: 556ms
76:	learn: 10.3827604	total: 1.78s	remaining: 532ms
77:	learn: 10.2485726	total: 1.8s	remaining: 509ms
78:	learn: 10.1524716	total: 1.82s	remaining: 485ms
79:	learn: 10.0765127	total: 1.85s	remaining: 462ms
80:	learn: 9.9617067	total: 1.87s	remaining: 439ms
81:	learn: 9.8357151	total: 1.89s	remaining: 415ms
82:	learn: 9.7311644	total: 1.92s	remaining: 393ms
83:	learn: 9.6314802	total: 1.94s	remaining: 370ms
84:	learn: 9.5137958	total: 1.96s	remaining: 347ms
85:	learn: 9.4420485	total: 1.99s	remaining: 323ms
86:	learn: 9.3959294	total: 2.01s	remaining: 300ms
87:	learn: 9.3057742	total: 2.03s	remaining: 277ms
88:	learn: 9.2031484	total: 2.05s	remaining: 253ms
89:	learn: 9.0996948	total: 2.07s	remaining: 230ms
90:	learn: 9.0492278	total: 2.09s	remaining: 207ms
91:	learn: 8.9400377	total: 2.12s	remaining: 184ms
92:	learn: 8.8904458	total: 2.15s	remaining: 162ms
93:	learn: 8.8102982	total: 2.17s	remaining: 139ms
94:	learn: 8.7445451	total: 2.19s	remaining: 115ms
95:	learn: 8.6796106	total: 2.21s	remaining: 92.3ms
96:	learn: 8.5875790	total: 2.24s	remaining: 69.2ms
97:	learn: 8.5086871	total: 2.26s	remaining: 46.1ms
98:	learn: 8.4547244	total: 2.28s	remaining: 23ms
99:	learn: 8.3841281	total: 2.31s	remaining: 0us
0:	learn: 46.2258117	total: 2.72ms	remaining: 269ms
1:	learn: 45.1253456	total: 24.9ms	remaining: 1.22s
2:	learn: 43.7311767	total: 46.8ms	remaining: 1.51s
3:	learn: 42.4252819	total: 67.8ms	remaining: 1.63s
4:	learn: 41.1436655	total: 88.7ms	remaining: 1.69s
5:	learn: 40.0337136	total: 111ms	remaining: 1.73s
6:	learn: 38.9102686	total: 133ms	remaining: 1.76s
7:	learn: 37.7859737	total: 156ms	remaining: 1.8s
8:	learn: 36.7646905	total: 189ms	remaining: 1.91s
9:	learn: 35.9495481	total: 214ms	remaining: 1.92s
10:	learn: 35.0558185	total: 238ms	remaining: 1.92s
11:	learn: 34.1958090	total: 261ms	remaining: 1.91s
12:	learn: 33.3514013	total: 284ms	remaining: 1.9s
13:	learn: 32.3317086	total: 308ms	remaining: 1.89s
14:	learn: 31.5611046	total: 329ms	remaining: 1.86s
15:	learn: 30.6373573	total: 351ms	remaining: 1.84s
16:	learn: 29.8883669	total: 380ms	remaining: 1.86s
17:	learn: 29.2985952	total: 405ms	remaining: 1.85s
18:	learn: 28.6360550	total: 427ms	remaining: 1.82s
19:	learn: 27.9757056	total: 448ms	remaining: 1.79s
20:	learn: 27.2585835	total: 468ms	remaining: 1.76s
21:	learn: 26.6366391	total: 490ms	remaining: 1.74s
22:	learn: 26.1055455	total: 511ms	remaining: 1.71s
23:	learn: 25.4961568	total: 533ms	remaining: 1.69s
24:	learn: 25.1037435	total: 554ms	remaining: 1.66s
25:	learn: 24.5258982	total: 577ms	remaining: 1.64s
26:	learn: 23.9974764	total: 605ms	remaining: 1.63s
27:	learn: 23.5108419	total: 630ms	remaining: 1.62s
28:	learn: 23.0835773	total: 653ms	remaining: 1.6s
29:	learn: 22.5744350	total: 675ms	remaining: 1.57s
30:	learn: 22.1357783	total: 698ms	remaining: 1.55s
31:	learn: 21.7316226	total: 723ms	remaining: 1.53s
32:	learn: 21.4082899	total: 744ms	remaining: 1.51s
33:	learn: 20.9640138	total: 765ms	remaining: 1.48s
34:	learn: 20.6379417	total: 788ms	remaining: 1.46s
35:	learn: 20.2688010	total: 813ms	remaining: 1.45s
36:	learn: 19.8479214	total: 840ms	remaining: 1.43s
37:	learn: 19.5684638	total: 864ms	remaining: 1.41s
38:	learn: 19.1826919	total: 885ms	remaining: 1.38s
39:	learn: 18.9583308	total: 906ms	remaining: 1.36s
40:	learn: 18.6736002	total: 928ms	remaining: 1.33s
41:	learn: 18.3525328	total: 952ms	remaining: 1.31s
42:	learn: 17.9954191	total: 974ms	remaining: 1.29s
43:	learn: 17.6991520	total: 997ms	remaining: 1.27s
44:	learn: 17.3697888	total: 1.02s	remaining: 1.25s
45:	learn: 17.0519636	total: 1.05s	remaining: 1.24s
46:	learn: 16.7829795	total: 1.08s	remaining: 1.22s
47:	learn: 16.5108695	total: 1.1s	remaining: 1.19s
48:	learn: 16.2366816	total: 1.12s	remaining: 1.17s
49:	learn: 15.9947350	total: 1.15s	remaining: 1.15s
50:	learn: 15.7513561	total: 1.17s	remaining: 1.12s
51:	learn: 15.4328481	total: 1.19s	remaining: 1.09s
52:	learn: 15.2497907	total: 1.21s	remaining: 1.07s
53:	learn: 15.0417076	total: 1.23s	remaining: 1.05s
54:	learn: 14.8861891	total: 1.26s	remaining: 1.03s
55:	learn: 14.6497794	total: 1.28s	remaining: 1.01s
56:	learn: 14.3664771	total: 1.3s	remaining: 983ms
57:	learn: 14.2358168	total: 1.32s	remaining: 960ms
58:	learn: 14.0712722	total: 1.35s	remaining: 937ms
59:	learn: 13.9191649	total: 1.37s	remaining: 912ms
60:	learn: 13.7032356	total: 1.39s	remaining: 889ms
61:	learn: 13.5029041	total: 1.41s	remaining: 866ms
62:	learn: 13.3568908	total: 1.44s	remaining: 844ms
63:	learn: 13.1332696	total: 1.47s	remaining: 827ms
64:	learn: 13.0323137	total: 1.49s	remaining: 805ms
65:	learn: 12.8622078	total: 1.52s	remaining: 782ms
66:	learn: 12.7088186	total: 1.54s	remaining: 759ms
67:	learn: 12.5524646	total: 1.56s	remaining: 737ms
68:	learn: 12.4646011	total: 1.59s	remaining: 714ms
69:	learn: 12.3900687	total: 1.61s	remaining: 690ms
70:	learn: 12.2908367	total: 1.63s	remaining: 667ms
71:	learn: 12.1294405	total: 1.66s	remaining: 644ms
72:	learn: 12.0359996	total: 1.68s	remaining: 623ms
73:	learn: 11.9244352	total: 1.7s	remaining: 599ms
74:	learn: 11.8312038	total: 1.72s	remaining: 575ms
75:	learn: 11.6622123	total: 1.74s	remaining: 551ms
76:	learn: 11.5959180	total: 1.76s	remaining: 527ms
77:	learn: 11.4538852	total: 1.79s	remaining: 504ms
78:	learn: 11.3700375	total: 1.81s	remaining: 481ms
79:	learn: 11.2101447	total: 1.83s	remaining: 458ms
80:	learn: 11.0614634	total: 1.86s	remaining: 436ms
81:	learn: 10.9029225	total: 1.88s	remaining: 413ms
82:	learn: 10.7792030	total: 1.9s	remaining: 390ms
83:	learn: 10.6279451	total: 1.93s	remaining: 367ms
84:	learn: 10.5530267	total: 1.95s	remaining: 344ms
85:	learn: 10.4577150	total: 1.97s	remaining: 321ms
86:	learn: 10.4076417	total: 2s	remaining: 298ms
87:	learn: 10.3166632	total: 2.02s	remaining: 275ms
88:	learn: 10.2018151	total: 2.04s	remaining: 252ms
89:	learn: 10.0698484	total: 2.06s	remaining: 229ms
90:	learn: 10.0162824	total: 2.09s	remaining: 206ms
91:	learn: 9.9352639	total: 2.11s	remaining: 184ms
92:	learn: 9.8316734	total: 2.13s	remaining: 161ms
93:	learn: 9.7195471	total: 2.15s	remaining: 137ms
94:	learn: 9.5914894	total: 2.17s	remaining: 114ms
95:	learn: 9.5151851	total: 2.19s	remaining: 91.4ms
96:	learn: 9.3911314	total: 2.21s	remaining: 68.5ms
97:	learn: 9.3417706	total: 2.24s	remaining: 45.6ms
98:	learn: 9.2708440	total: 2.26s	remaining: 22.8ms
99:	learn: 9.1660321	total: 2.28s	remaining: 0us
0:	learn: 45.8627255	total: 2.67ms	remaining: 264ms
1:	learn: 44.7432040	total: 25.7ms	remaining: 1.26s
2:	learn: 43.4398568	total: 46.6ms	remaining: 1.5s
3:	learn: 42.1495515	total: 68.3ms	remaining: 1.64s
4:	learn: 40.9712633	total: 89.4ms	remaining: 1.7s
5:	learn: 40.0119591	total: 111ms	remaining: 1.74s
6:	learn: 39.1914360	total: 133ms	remaining: 1.76s
7:	learn: 38.1861536	total: 154ms	remaining: 1.77s
8:	learn: 37.1477128	total: 176ms	remaining: 1.78s
9:	learn: 36.3044702	total: 205ms	remaining: 1.85s
10:	learn: 35.5837917	total: 228ms	remaining: 1.85s
11:	learn: 34.8664158	total: 248ms	remaining: 1.82s
12:	learn: 33.9129833	total: 268ms	remaining: 1.79s
13:	learn: 32.9094642	total: 289ms	remaining: 1.77s
14:	learn: 32.1965787	total: 310ms	remaining: 1.75s
15:	learn: 31.4598238	total: 329ms	remaining: 1.73s
16:	learn: 30.6578027	total: 350ms	remaining: 1.71s
17:	learn: 30.0227468	total: 371ms	remaining: 1.69s
18:	learn: 29.2954728	total: 394ms	remaining: 1.68s
19:	learn: 28.5928084	total: 425ms	remaining: 1.7s
20:	learn: 27.9445984	total: 449ms	remaining: 1.69s
21:	learn: 27.3493298	total: 472ms	remaining: 1.67s
22:	learn: 26.8491966	total: 495ms	remaining: 1.66s
23:	learn: 26.3177453	total: 515ms	remaining: 1.63s
24:	learn: 25.8134533	total: 537ms	remaining: 1.61s
25:	learn: 25.2000018	total: 559ms	remaining: 1.59s
26:	learn: 24.6570461	total: 581ms	remaining: 1.57s
27:	learn: 24.1062982	total: 602ms	remaining: 1.55s
28:	learn: 23.7489370	total: 629ms	remaining: 1.54s
29:	learn: 23.2050536	total: 656ms	remaining: 1.53s
30:	learn: 22.7824379	total: 678ms	remaining: 1.51s
31:	learn: 22.4052655	total: 700ms	remaining: 1.49s
32:	learn: 21.9525639	total: 722ms	remaining: 1.47s
33:	learn: 21.5482900	total: 744ms	remaining: 1.44s
34:	learn: 21.1900983	total: 764ms	remaining: 1.42s
35:	learn: 20.8243957	total: 786ms	remaining: 1.4s
36:	learn: 20.4401288	total: 808ms	remaining: 1.38s
37:	learn: 20.0960622	total: 837ms	remaining: 1.37s
38:	learn: 19.7795108	total: 863ms	remaining: 1.35s
39:	learn: 19.4922451	total: 885ms	remaining: 1.33s
40:	learn: 19.1827582	total: 910ms	remaining: 1.31s
41:	learn: 18.8902445	total: 933ms	remaining: 1.29s
42:	learn: 18.6833086	total: 955ms	remaining: 1.27s
43:	learn: 18.4251972	total: 978ms	remaining: 1.24s
44:	learn: 18.1471037	total: 1s	remaining: 1.22s
45:	learn: 17.8420017	total: 1.02s	remaining: 1.2s
46:	learn: 17.6101998	total: 1.05s	remaining: 1.19s
47:	learn: 17.3353656	total: 1.07s	remaining: 1.17s
48:	learn: 17.1194789	total: 1.1s	remaining: 1.14s
49:	learn: 16.8898454	total: 1.12s	remaining: 1.12s
50:	learn: 16.6657497	total: 1.14s	remaining: 1.09s
51:	learn: 16.3832867	total: 1.16s	remaining: 1.07s
52:	learn: 16.2098226	total: 1.18s	remaining: 1.05s
53:	learn: 16.0045707	total: 1.21s	remaining: 1.03s
54:	learn: 15.8512887	total: 1.23s	remaining: 1s
55:	learn: 15.6485628	total: 1.26s	remaining: 987ms
56:	learn: 15.4841428	total: 1.28s	remaining: 969ms
57:	learn: 15.3383158	total: 1.31s	remaining: 947ms
58:	learn: 15.2056282	total: 1.33s	remaining: 925ms
59:	learn: 15.0698337	total: 1.35s	remaining: 903ms
60:	learn: 14.8487796	total: 1.38s	remaining: 882ms
61:	learn: 14.7255751	total: 1.4s	remaining: 858ms
62:	learn: 14.6100414	total: 1.42s	remaining: 835ms
63:	learn: 14.3864212	total: 1.45s	remaining: 813ms
64:	learn: 14.2800460	total: 1.47s	remaining: 793ms
65:	learn: 14.1017299	total: 1.5s	remaining: 772ms
66:	learn: 13.9655015	total: 1.52s	remaining: 748ms
67:	learn: 13.8065764	total: 1.54s	remaining: 725ms
68:	learn: 13.7473285	total: 1.56s	remaining: 702ms
69:	learn: 13.6967309	total: 1.59s	remaining: 680ms
70:	learn: 13.6253255	total: 1.61s	remaining: 658ms
71:	learn: 13.4974926	total: 1.63s	remaining: 635ms
72:	learn: 13.4142694	total: 1.66s	remaining: 613ms
73:	learn: 13.2902600	total: 1.68s	remaining: 590ms
74:	learn: 13.1816461	total: 1.71s	remaining: 571ms
75:	learn: 13.0809498	total: 1.74s	remaining: 549ms
76:	learn: 12.9772285	total: 1.76s	remaining: 526ms
77:	learn: 12.8413858	total: 1.78s	remaining: 503ms
78:	learn: 12.7615799	total: 1.81s	remaining: 480ms
79:	learn: 12.5808659	total: 1.83s	remaining: 457ms
80:	learn: 12.4938330	total: 1.85s	remaining: 434ms
81:	learn: 12.3745576	total: 1.87s	remaining: 411ms
82:	learn: 12.2474104	total: 1.9s	remaining: 390ms
83:	learn: 12.1582297	total: 1.93s	remaining: 367ms
84:	learn: 12.0528081	total: 1.95s	remaining: 344ms
85:	learn: 11.9483355	total: 1.97s	remaining: 321ms
86:	learn: 11.8683204	total: 1.99s	remaining: 297ms
87:	learn: 11.7680945	total: 2.01s	remaining: 274ms
88:	learn: 11.6635447	total: 2.03s	remaining: 251ms
89:	learn: 11.5775031	total: 2.05s	remaining: 228ms
90:	learn: 11.4860538	total: 2.08s	remaining: 205ms
91:	learn: 11.3584960	total: 2.1s	remaining: 183ms
92:	learn: 11.2180285	total: 2.13s	remaining: 161ms
93:	learn: 11.0996558	total: 2.16s	remaining: 138ms
94:	learn: 10.9688832	total: 2.18s	remaining: 115ms
95:	learn: 10.9205457	total: 2.21s	remaining: 92ms
96:	learn: 10.8462783	total: 2.23s	remaining: 69ms
97:	learn: 10.7481890	total: 2.25s	remaining: 46ms
98:	learn: 10.6396315	total: 2.27s	remaining: 23ms
99:	learn: 10.5895308	total: 2.29s	remaining: 0us
0:	learn: 46.2892189	total: 21.4ms	remaining: 2.11s
1:	learn: 44.9732744	total: 41.8ms	remaining: 2.05s
2:	learn: 43.8887345	total: 60.6ms	remaining: 1.96s
3:	learn: 42.6526320	total: 81.8ms	remaining: 1.96s
4:	learn: 41.4812505	total: 102ms	remaining: 1.94s
5:	learn: 40.4431224	total: 121ms	remaining: 1.89s
6:	learn: 39.2936749	total: 142ms	remaining: 1.89s
7:	learn: 38.1961652	total: 162ms	remaining: 1.86s
8:	learn: 37.2194841	total: 185ms	remaining: 1.87s
9:	learn: 36.2518666	total: 212ms	remaining: 1.91s
10:	learn: 35.4919224	total: 239ms	remaining: 1.93s
11:	learn: 34.6975877	total: 261ms	remaining: 1.92s
12:	learn: 33.7869362	total: 284ms	remaining: 1.9s
13:	learn: 33.0646033	total: 307ms	remaining: 1.88s
14:	learn: 32.1821772	total: 330ms	remaining: 1.87s
15:	learn: 31.4340749	total: 351ms	remaining: 1.84s
16:	learn: 30.6504198	total: 373ms	remaining: 1.82s
17:	learn: 30.0090260	total: 394ms	remaining: 1.79s
18:	learn: 29.4233143	total: 423ms	remaining: 1.8s
19:	learn: 28.7661957	total: 446ms	remaining: 1.78s
20:	learn: 28.1570594	total: 466ms	remaining: 1.75s
21:	learn: 27.6140124	total: 486ms	remaining: 1.72s
22:	learn: 27.0130709	total: 507ms	remaining: 1.7s
23:	learn: 26.2648081	total: 527ms	remaining: 1.67s
24:	learn: 25.7963649	total: 548ms	remaining: 1.64s
25:	learn: 25.2713860	total: 568ms	remaining: 1.62s
26:	learn: 24.8080692	total: 590ms	remaining: 1.59s
27:	learn: 24.3042862	total: 612ms	remaining: 1.57s
28:	learn: 23.9097237	total: 643ms	remaining: 1.57s
29:	learn: 23.4953174	total: 666ms	remaining: 1.55s
30:	learn: 23.0484452	total: 688ms	remaining: 1.53s
31:	learn: 22.7100962	total: 711ms	remaining: 1.51s
32:	learn: 22.1662267	total: 735ms	remaining: 1.49s
33:	learn: 21.7339884	total: 755ms	remaining: 1.47s
34:	learn: 21.3699422	total: 777ms	remaining: 1.44s
35:	learn: 21.0249329	total: 798ms	remaining: 1.42s
36:	learn: 20.6187923	total: 820ms	remaining: 1.4s
37:	learn: 20.2401981	total: 849ms	remaining: 1.39s
38:	learn: 19.9712328	total: 872ms	remaining: 1.36s
39:	learn: 19.6429610	total: 892ms	remaining: 1.34s
40:	learn: 19.3281556	total: 911ms	remaining: 1.31s
41:	learn: 19.0925924	total: 932ms	remaining: 1.29s
42:	learn: 18.8118712	total: 951ms	remaining: 1.26s
43:	learn: 18.5355748	total: 972ms	remaining: 1.24s
44:	learn: 18.2783929	total: 993ms	remaining: 1.21s
45:	learn: 17.9915490	total: 1.01s	remaining: 1.19s
46:	learn: 17.7323317	total: 1.04s	remaining: 1.18s
47:	learn: 17.4448307	total: 1.07s	remaining: 1.16s
48:	learn: 17.2419782	total: 1.09s	remaining: 1.13s
49:	learn: 16.9351352	total: 1.11s	remaining: 1.11s
50:	learn: 16.7728723	total: 1.13s	remaining: 1.09s
51:	learn: 16.5718087	total: 1.16s	remaining: 1.07s
52:	learn: 16.4047483	total: 1.18s	remaining: 1.04s
53:	learn: 16.2888950	total: 1.2s	remaining: 1.02s
54:	learn: 16.1353042	total: 1.22s	remaining: 998ms
55:	learn: 15.9384012	total: 1.24s	remaining: 977ms
56:	learn: 15.7488511	total: 1.27s	remaining: 960ms
57:	learn: 15.5682846	total: 1.3s	remaining: 939ms
58:	learn: 15.3488716	total: 1.32s	remaining: 916ms
59:	learn: 15.2291272	total: 1.34s	remaining: 894ms
60:	learn: 15.0582519	total: 1.36s	remaining: 871ms
61:	learn: 14.8478458	total: 1.38s	remaining: 848ms
62:	learn: 14.6663416	total: 1.41s	remaining: 826ms
63:	learn: 14.4830825	total: 1.43s	remaining: 804ms
64:	learn: 14.3300895	total: 1.45s	remaining: 782ms
65:	learn: 14.1168590	total: 1.48s	remaining: 762ms
66:	learn: 13.9783298	total: 1.51s	remaining: 742ms
67:	learn: 13.8132857	total: 1.53s	remaining: 720ms
68:	learn: 13.7050863	total: 1.55s	remaining: 698ms
69:	learn: 13.5742501	total: 1.57s	remaining: 675ms
70:	learn: 13.4851362	total: 1.6s	remaining: 653ms
71:	learn: 13.3300610	total: 1.62s	remaining: 630ms
72:	learn: 13.2223060	total: 1.64s	remaining: 607ms
73:	learn: 13.0706731	total: 1.66s	remaining: 584ms
74:	learn: 12.9178099	total: 1.69s	remaining: 562ms
75:	learn: 12.7954645	total: 1.71s	remaining: 542ms
76:	learn: 12.7133688	total: 1.74s	remaining: 519ms
77:	learn: 12.5745537	total: 1.76s	remaining: 496ms
78:	learn: 12.4765302	total: 1.78s	remaining: 472ms
79:	learn: 12.3609145	total: 1.8s	remaining: 449ms
80:	learn: 12.2437759	total: 1.82s	remaining: 427ms
81:	learn: 12.1583763	total: 1.84s	remaining: 404ms
82:	learn: 12.0202500	total: 1.86s	remaining: 381ms
83:	learn: 11.9125166	total: 1.89s	remaining: 359ms
84:	learn: 11.8100729	total: 1.91s	remaining: 337ms
85:	learn: 11.7509521	total: 1.94s	remaining: 316ms
86:	learn: 11.6448436	total: 1.97s	remaining: 294ms
87:	learn: 11.5550170	total: 1.99s	remaining: 271ms
88:	learn: 11.4624708	total: 2.01s	remaining: 249ms
89:	learn: 11.3547761	total: 2.03s	remaining: 226ms
90:	learn: 11.2513910	total: 2.05s	remaining: 203ms
91:	learn: 11.1414483	total: 2.08s	remaining: 181ms
92:	learn: 11.0742264	total: 2.1s	remaining: 158ms
93:	learn: 10.9721772	total: 2.12s	remaining: 135ms
94:	learn: 10.9118054	total: 2.15s	remaining: 113ms
95:	learn: 10.8465290	total: 2.17s	remaining: 90.5ms
96:	learn: 10.7451745	total: 2.19s	remaining: 67.8ms
97:	learn: 10.6173565	total: 2.21s	remaining: 45.2ms
98:	learn: 10.5562158	total: 2.24s	remaining: 22.6ms
99:	learn: 10.4564960	total: 2.26s	remaining: 0us
0:	learn: 27.6506730	total: 5.13ms	remaining: 508ms
1:	learn: 27.1638793	total: 9.75ms	remaining: 478ms
2:	learn: 26.8000665	total: 15ms	remaining: 484ms
3:	learn: 26.4256132	total: 21.9ms	remaining: 526ms
4:	learn: 26.0088351	total: 29.7ms	remaining: 564ms
5:	learn: 25.7558298	total: 41ms	remaining: 643ms
6:	learn: 25.3380711	total: 48.8ms	remaining: 648ms
7:	learn: 25.0571611	total: 55.6ms	remaining: 640ms
8:	learn: 24.6790148	total: 61.3ms	remaining: 620ms
9:	learn: 24.3600941	total: 67.1ms	remaining: 604ms
10:	learn: 24.1105667	total: 72.6ms	remaining: 587ms
11:	learn: 23.7736542	total: 78.1ms	remaining: 573ms
12:	learn: 23.5824429	total: 84ms	remaining: 562ms
13:	learn: 23.2658303	total: 89.4ms	remaining: 549ms
14:	learn: 23.0061886	total: 95.3ms	remaining: 540ms
15:	learn: 22.8060389	total: 100ms	remaining: 527ms
16:	learn: 22.5899735	total: 105ms	remaining: 513ms
17:	learn: 22.3625048	total: 110ms	remaining: 501ms
18:	learn: 22.0706477	total: 114ms	remaining: 487ms
19:	learn: 21.8739394	total: 120ms	remaining: 479ms
20:	learn: 21.6143650	total: 125ms	remaining: 470ms
21:	learn: 21.4571623	total: 130ms	remaining: 462ms
22:	learn: 21.2395769	total: 135ms	remaining: 453ms
23:	learn: 20.9801795	total: 140ms	remaining: 442ms
24:	learn: 20.8036808	total: 145ms	remaining: 434ms
25:	learn: 20.6387539	total: 149ms	remaining: 423ms
26:	learn: 20.4401427	total: 154ms	remaining: 417ms
27:	learn: 20.2879575	total: 159ms	remaining: 408ms
28:	learn: 20.0538664	total: 163ms	remaining: 399ms
29:	learn: 19.8363102	total: 167ms	remaining: 391ms
30:	learn: 19.7015446	total: 172ms	remaining: 383ms
31:	learn: 19.5483114	total: 177ms	remaining: 375ms
32:	learn: 19.4163053	total: 181ms	remaining: 368ms
33:	learn: 19.2880625	total: 186ms	remaining: 362ms
34:	learn: 19.1303389	total: 191ms	remaining: 354ms
35:	learn: 18.9237448	total: 196ms	remaining: 348ms
36:	learn: 18.8142925	total: 200ms	remaining: 341ms
37:	learn: 18.6994696	total: 205ms	remaining: 334ms
38:	learn: 18.5629211	total: 210ms	remaining: 328ms
39:	learn: 18.4600917	total: 215ms	remaining: 323ms
40:	learn: 18.3567139	total: 220ms	remaining: 316ms
41:	learn: 18.2120527	total: 225ms	remaining: 310ms
42:	learn: 18.0688062	total: 230ms	remaining: 305ms
43:	learn: 17.9250181	total: 235ms	remaining: 299ms
44:	learn: 17.8399138	total: 240ms	remaining: 294ms
45:	learn: 17.6720713	total: 245ms	remaining: 288ms
46:	learn: 17.5273091	total: 250ms	remaining: 282ms
47:	learn: 17.4232814	total: 255ms	remaining: 277ms
48:	learn: 17.2957579	total: 262ms	remaining: 273ms
49:	learn: 17.1892874	total: 269ms	remaining: 269ms
50:	learn: 17.0490355	total: 276ms	remaining: 265ms
51:	learn: 16.9666450	total: 281ms	remaining: 260ms
52:	learn: 16.8600056	total: 288ms	remaining: 255ms
53:	learn: 16.7542588	total: 293ms	remaining: 249ms
54:	learn: 16.6316077	total: 297ms	remaining: 243ms
55:	learn: 16.5588112	total: 302ms	remaining: 237ms
56:	learn: 16.5010186	total: 306ms	remaining: 231ms
57:	learn: 16.4081540	total: 311ms	remaining: 225ms
58:	learn: 16.3040451	total: 315ms	remaining: 219ms
59:	learn: 16.1890564	total: 320ms	remaining: 213ms
60:	learn: 16.0977103	total: 325ms	remaining: 208ms
61:	learn: 15.9627607	total: 329ms	remaining: 202ms
62:	learn: 15.9022248	total: 334ms	remaining: 196ms
63:	learn: 15.8151881	total: 339ms	remaining: 191ms
64:	learn: 15.7353125	total: 344ms	remaining: 185ms
65:	learn: 15.6312897	total: 348ms	remaining: 179ms
66:	learn: 15.5330927	total: 352ms	remaining: 174ms
67:	learn: 15.4698681	total: 357ms	remaining: 168ms
68:	learn: 15.4108571	total: 362ms	remaining: 162ms
69:	learn: 15.3492945	total: 366ms	remaining: 157ms
70:	learn: 15.3036540	total: 370ms	remaining: 151ms
71:	learn: 15.2390833	total: 375ms	remaining: 146ms
72:	learn: 15.1556327	total: 379ms	remaining: 140ms
73:	learn: 15.1016315	total: 384ms	remaining: 135ms
74:	learn: 15.0287076	total: 388ms	remaining: 129ms
75:	learn: 14.9530572	total: 393ms	remaining: 124ms
76:	learn: 14.8965517	total: 397ms	remaining: 119ms
77:	learn: 14.8125426	total: 401ms	remaining: 113ms
78:	learn: 14.7435359	total: 405ms	remaining: 108ms
79:	learn: 14.6963163	total: 411ms	remaining: 103ms
80:	learn: 14.6200060	total: 415ms	remaining: 97.3ms
81:	learn: 14.5707760	total: 419ms	remaining: 92.1ms
82:	learn: 14.5053651	total: 424ms	remaining: 86.9ms
83:	learn: 14.4115458	total: 429ms	remaining: 81.7ms
84:	learn: 14.3117159	total: 434ms	remaining: 76.5ms
85:	learn: 14.2511326	total: 438ms	remaining: 71.3ms
86:	learn: 14.1372486	total: 443ms	remaining: 66.2ms
87:	learn: 14.0992301	total: 448ms	remaining: 61.1ms
88:	learn: 14.0228331	total: 452ms	remaining: 55.9ms
89:	learn: 13.9249836	total: 458ms	remaining: 50.9ms
90:	learn: 13.8679364	total: 467ms	remaining: 46.2ms
91:	learn: 13.8405578	total: 477ms	remaining: 41.5ms
92:	learn: 13.7711325	total: 483ms	remaining: 36.4ms
93:	learn: 13.7357019	total: 491ms	remaining: 31.4ms
94:	learn: 13.6735271	total: 497ms	remaining: 26.1ms
95:	learn: 13.5682393	total: 502ms	remaining: 20.9ms
96:	learn: 13.5342610	total: 507ms	remaining: 15.7ms
97:	learn: 13.4710034	total: 512ms	remaining: 10.5ms
98:	learn: 13.4022402	total: 518ms	remaining: 5.24ms
99:	learn: 13.3351238	total: 524ms	remaining: 0us
0:	learn: 42.9181702	total: 4.87ms	remaining: 482ms
1:	learn: 42.0286736	total: 9.35ms	remaining: 458ms
2:	learn: 41.2764568	total: 13.8ms	remaining: 445ms
3:	learn: 40.4721918	total: 18.3ms	remaining: 440ms
4:	learn: 39.8518928	total: 22.8ms	remaining: 434ms
5:	learn: 39.2645479	total: 27.4ms	remaining: 429ms
6:	learn: 38.4453704	total: 32ms	remaining: 425ms
7:	learn: 37.7122059	total: 36.4ms	remaining: 419ms
8:	learn: 36.9185796	total: 40.8ms	remaining: 413ms
9:	learn: 36.1668427	total: 45.4ms	remaining: 408ms
10:	learn: 35.5639029	total: 50ms	remaining: 404ms
11:	learn: 34.7724193	total: 55.2ms	remaining: 405ms
12:	learn: 34.3053433	total: 59.7ms	remaining: 399ms
13:	learn: 33.6561327	total: 60.9ms	remaining: 374ms
14:	learn: 33.0134042	total: 65.3ms	remaining: 370ms
15:	learn: 32.4483300	total: 70.2ms	remaining: 368ms
16:	learn: 31.8581144	total: 74.8ms	remaining: 365ms
17:	learn: 31.2858301	total: 82.6ms	remaining: 376ms
18:	learn: 30.8483018	total: 89.5ms	remaining: 382ms
19:	learn: 30.4174622	total: 96.4ms	remaining: 386ms
20:	learn: 29.8994411	total: 102ms	remaining: 385ms
21:	learn: 29.5045355	total: 107ms	remaining: 381ms
22:	learn: 28.9923519	total: 113ms	remaining: 379ms
23:	learn: 28.4255717	total: 120ms	remaining: 380ms
24:	learn: 28.0283139	total: 125ms	remaining: 374ms
25:	learn: 27.7434814	total: 129ms	remaining: 368ms
26:	learn: 27.2770731	total: 134ms	remaining: 362ms
27:	learn: 26.8928270	total: 138ms	remaining: 356ms
28:	learn: 26.4282671	total: 143ms	remaining: 350ms
29:	learn: 26.0272764	total: 147ms	remaining: 344ms
30:	learn: 25.7579312	total: 152ms	remaining: 338ms
31:	learn: 25.4542434	total: 156ms	remaining: 332ms
32:	learn: 25.1232564	total: 161ms	remaining: 327ms
33:	learn: 24.8110795	total: 166ms	remaining: 322ms
34:	learn: 24.5077579	total: 170ms	remaining: 316ms
35:	learn: 24.1909000	total: 175ms	remaining: 311ms
36:	learn: 23.8719468	total: 179ms	remaining: 306ms
37:	learn: 23.5764366	total: 181ms	remaining: 295ms
38:	learn: 23.3468086	total: 185ms	remaining: 290ms
39:	learn: 23.0908771	total: 189ms	remaining: 284ms
40:	learn: 22.8580876	total: 194ms	remaining: 279ms
41:	learn: 22.6060825	total: 198ms	remaining: 274ms
42:	learn: 22.4125407	total: 203ms	remaining: 269ms
43:	learn: 22.1990617	total: 208ms	remaining: 264ms
44:	learn: 21.9716164	total: 212ms	remaining: 259ms
45:	learn: 21.8360935	total: 217ms	remaining: 254ms
46:	learn: 21.6169256	total: 221ms	remaining: 250ms
47:	learn: 21.4620612	total: 225ms	remaining: 244ms
48:	learn: 21.2894194	total: 230ms	remaining: 239ms
49:	learn: 21.1066266	total: 234ms	remaining: 234ms
50:	learn: 20.9484898	total: 239ms	remaining: 229ms
51:	learn: 20.7195338	total: 243ms	remaining: 225ms
52:	learn: 20.4899740	total: 248ms	remaining: 220ms
53:	learn: 20.3356583	total: 252ms	remaining: 215ms
54:	learn: 20.0754393	total: 257ms	remaining: 210ms
55:	learn: 19.9199159	total: 261ms	remaining: 205ms
56:	learn: 19.7761128	total: 266ms	remaining: 200ms
57:	learn: 19.6533060	total: 271ms	remaining: 196ms
58:	learn: 19.5113942	total: 276ms	remaining: 192ms
59:	learn: 19.3985022	total: 281ms	remaining: 187ms
60:	learn: 19.2683443	total: 285ms	remaining: 182ms
61:	learn: 19.1460824	total: 290ms	remaining: 178ms
62:	learn: 19.0042655	total: 295ms	remaining: 173ms
63:	learn: 18.8720873	total: 300ms	remaining: 169ms
64:	learn: 18.7183888	total: 309ms	remaining: 166ms
65:	learn: 18.5472360	total: 318ms	remaining: 164ms
66:	learn: 18.3976642	total: 326ms	remaining: 160ms
67:	learn: 18.2282851	total: 335ms	remaining: 157ms
68:	learn: 18.1469157	total: 340ms	remaining: 153ms
69:	learn: 18.0649494	total: 346ms	remaining: 148ms
70:	learn: 17.9485405	total: 351ms	remaining: 143ms
71:	learn: 17.8460261	total: 357ms	remaining: 139ms
72:	learn: 17.7679843	total: 364ms	remaining: 134ms
73:	learn: 17.5989290	total: 369ms	remaining: 130ms
74:	learn: 17.4381322	total: 375ms	remaining: 125ms
75:	learn: 17.3370886	total: 381ms	remaining: 120ms
76:	learn: 17.2675308	total: 387ms	remaining: 116ms
77:	learn: 17.1946430	total: 393ms	remaining: 111ms
78:	learn: 17.0923725	total: 399ms	remaining: 106ms
79:	learn: 17.0537265	total: 404ms	remaining: 101ms
80:	learn: 16.9456831	total: 409ms	remaining: 96ms
81:	learn: 16.8457353	total: 414ms	remaining: 90.8ms
82:	learn: 16.7469310	total: 418ms	remaining: 85.7ms
83:	learn: 16.6679953	total: 423ms	remaining: 80.5ms
84:	learn: 16.6274189	total: 427ms	remaining: 75.4ms
85:	learn: 16.5516530	total: 432ms	remaining: 70.3ms
86:	learn: 16.4886066	total: 436ms	remaining: 65.2ms
87:	learn: 16.3947859	total: 441ms	remaining: 60.1ms
88:	learn: 16.3406495	total: 445ms	remaining: 55ms
89:	learn: 16.3019195	total: 449ms	remaining: 49.9ms
90:	learn: 16.1860681	total: 454ms	remaining: 44.9ms
91:	learn: 16.1282812	total: 458ms	remaining: 39.9ms
92:	learn: 16.0303652	total: 462ms	remaining: 34.8ms
93:	learn: 15.9561692	total: 467ms	remaining: 29.8ms
94:	learn: 15.8733994	total: 472ms	remaining: 24.8ms
95:	learn: 15.8108833	total: 476ms	remaining: 19.9ms
96:	learn: 15.7606004	total: 481ms	remaining: 14.9ms
97:	learn: 15.6984664	total: 486ms	remaining: 9.92ms
98:	learn: 15.6223632	total: 491ms	remaining: 4.96ms
99:	learn: 15.5671136	total: 496ms	remaining: 0us
0:	learn: 46.4788614	total: 2.02ms	remaining: 200ms
1:	learn: 45.7608372	total: 6.65ms	remaining: 326ms
2:	learn: 44.8825004	total: 11ms	remaining: 355ms
3:	learn: 44.0362738	total: 15.3ms	remaining: 367ms
4:	learn: 43.2086374	total: 19.5ms	remaining: 370ms
5:	learn: 42.5835773	total: 23.8ms	remaining: 373ms
6:	learn: 41.9673269	total: 28.2ms	remaining: 375ms
7:	learn: 41.4748717	total: 32.5ms	remaining: 374ms
8:	learn: 40.7129183	total: 36.9ms	remaining: 373ms
9:	learn: 39.8900884	total: 41.2ms	remaining: 371ms
10:	learn: 39.4142193	total: 45.5ms	remaining: 368ms
11:	learn: 38.8645613	total: 49.7ms	remaining: 364ms
12:	learn: 38.2394731	total: 53.9ms	remaining: 361ms
13:	learn: 37.6834515	total: 58.1ms	remaining: 357ms
14:	learn: 37.0673507	total: 62.2ms	remaining: 352ms
15:	learn: 36.4728340	total: 66.8ms	remaining: 351ms
16:	learn: 36.0489086	total: 70.8ms	remaining: 346ms
17:	learn: 35.4744141	total: 75.1ms	remaining: 342ms
18:	learn: 35.0106021	total: 79.4ms	remaining: 338ms
19:	learn: 34.5586053	total: 83.7ms	remaining: 335ms
20:	learn: 34.1308223	total: 87.7ms	remaining: 330ms
21:	learn: 33.7701450	total: 91.8ms	remaining: 326ms
22:	learn: 33.4425444	total: 96.2ms	remaining: 322ms
23:	learn: 33.0296412	total: 101ms	remaining: 320ms
24:	learn: 32.6359803	total: 105ms	remaining: 316ms
25:	learn: 32.1846182	total: 110ms	remaining: 313ms
26:	learn: 31.7620230	total: 114ms	remaining: 309ms
27:	learn: 31.4669337	total: 119ms	remaining: 305ms
28:	learn: 31.0792062	total: 122ms	remaining: 300ms
29:	learn: 30.7970537	total: 127ms	remaining: 297ms
30:	learn: 30.4952215	total: 132ms	remaining: 294ms
31:	learn: 30.2845344	total: 137ms	remaining: 291ms
32:	learn: 29.9592732	total: 142ms	remaining: 287ms
33:	learn: 29.6798596	total: 146ms	remaining: 284ms
34:	learn: 29.3368905	total: 151ms	remaining: 280ms
35:	learn: 29.0621238	total: 156ms	remaining: 277ms
36:	learn: 28.6445375	total: 164ms	remaining: 279ms
37:	learn: 28.2418096	total: 172ms	remaining: 280ms
38:	learn: 27.9495390	total: 181ms	remaining: 283ms
39:	learn: 27.6958160	total: 188ms	remaining: 281ms
40:	learn: 27.4811189	total: 194ms	remaining: 279ms
41:	learn: 27.1494420	total: 199ms	remaining: 275ms
42:	learn: 26.8388873	total: 204ms	remaining: 271ms
43:	learn: 26.5721300	total: 209ms	remaining: 267ms
44:	learn: 26.3384738	total: 215ms	remaining: 262ms
45:	learn: 26.1894781	total: 220ms	remaining: 258ms
46:	learn: 25.9580198	total: 225ms	remaining: 254ms
47:	learn: 25.7897985	total: 231ms	remaining: 250ms
48:	learn: 25.6000271	total: 236ms	remaining: 245ms
49:	learn: 25.4130873	total: 240ms	remaining: 240ms
50:	learn: 25.1699061	total: 245ms	remaining: 236ms
51:	learn: 24.9324449	total: 250ms	remaining: 231ms
52:	learn: 24.7729152	total: 254ms	remaining: 226ms
53:	learn: 24.5026563	total: 259ms	remaining: 221ms
54:	learn: 24.2332627	total: 265ms	remaining: 217ms
55:	learn: 23.9611984	total: 271ms	remaining: 213ms
56:	learn: 23.7862603	total: 275ms	remaining: 208ms
57:	learn: 23.6318154	total: 280ms	remaining: 202ms
58:	learn: 23.4443306	total: 284ms	remaining: 197ms
59:	learn: 23.2581425	total: 288ms	remaining: 192ms
60:	learn: 23.0549901	total: 292ms	remaining: 187ms
61:	learn: 22.8666218	total: 297ms	remaining: 182ms
62:	learn: 22.6956739	total: 301ms	remaining: 177ms
63:	learn: 22.5068544	total: 305ms	remaining: 172ms
64:	learn: 22.1859147	total: 321ms	remaining: 173ms
65:	learn: 22.0462043	total: 325ms	remaining: 168ms
66:	learn: 21.9329563	total: 330ms	remaining: 163ms
67:	learn: 21.8029736	total: 335ms	remaining: 158ms
68:	learn: 21.6861091	total: 339ms	remaining: 152ms
69:	learn: 21.4838140	total: 344ms	remaining: 148ms
70:	learn: 21.3548921	total: 349ms	remaining: 143ms
71:	learn: 21.2244517	total: 356ms	remaining: 138ms
72:	learn: 21.0702958	total: 363ms	remaining: 134ms
73:	learn: 20.9224662	total: 371ms	remaining: 130ms
74:	learn: 20.8150357	total: 377ms	remaining: 126ms
75:	learn: 20.6962739	total: 383ms	remaining: 121ms
76:	learn: 20.5809258	total: 388ms	remaining: 116ms
77:	learn: 20.4735470	total: 392ms	remaining: 111ms
78:	learn: 20.3778167	total: 397ms	remaining: 106ms
79:	learn: 20.2211268	total: 402ms	remaining: 100ms
80:	learn: 20.1478678	total: 406ms	remaining: 95.3ms
81:	learn: 20.1032967	total: 411ms	remaining: 90.2ms
82:	learn: 19.9236300	total: 416ms	remaining: 85.1ms
83:	learn: 19.8151745	total: 420ms	remaining: 80.1ms
84:	learn: 19.7099856	total: 424ms	remaining: 74.9ms
85:	learn: 19.6264833	total: 429ms	remaining: 69.8ms
86:	learn: 19.4916361	total: 433ms	remaining: 64.7ms
87:	learn: 19.4050529	total: 437ms	remaining: 59.6ms
88:	learn: 19.2547065	total: 441ms	remaining: 54.6ms
89:	learn: 19.1610225	total: 446ms	remaining: 49.5ms
90:	learn: 19.0898958	total: 451ms	remaining: 44.6ms
91:	learn: 19.0489664	total: 455ms	remaining: 39.5ms
92:	learn: 18.9206240	total: 459ms	remaining: 34.5ms
93:	learn: 18.8636239	total: 463ms	remaining: 29.6ms
94:	learn: 18.8126187	total: 467ms	remaining: 24.6ms
95:	learn: 18.7579275	total: 471ms	remaining: 19.6ms
96:	learn: 18.6382753	total: 476ms	remaining: 14.7ms
97:	learn: 18.5397334	total: 480ms	remaining: 9.8ms
98:	learn: 18.4375951	total: 485ms	remaining: 4.9ms
99:	learn: 18.4033755	total: 490ms	remaining: 0us
0:	learn: 46.1068821	total: 2.09ms	remaining: 207ms
1:	learn: 45.3970261	total: 7.16ms	remaining: 351ms
2:	learn: 44.8732696	total: 11.9ms	remaining: 384ms
3:	learn: 44.1290184	total: 16.7ms	remaining: 401ms
4:	learn: 43.3290271	total: 21.4ms	remaining: 406ms
5:	learn: 42.7069090	total: 26ms	remaining: 407ms
6:	learn: 42.0572971	total: 32.7ms	remaining: 435ms
7:	learn: 41.4797924	total: 39.9ms	remaining: 459ms
8:	learn: 41.0023122	total: 49.8ms	remaining: 503ms
9:	learn: 40.5330570	total: 55.9ms	remaining: 503ms
10:	learn: 39.9726545	total: 63.6ms	remaining: 514ms
11:	learn: 39.3044053	total: 68.5ms	remaining: 502ms
12:	learn: 38.8169735	total: 73.3ms	remaining: 491ms
13:	learn: 38.2458761	total: 78.5ms	remaining: 482ms
14:	learn: 37.6280321	total: 83.5ms	remaining: 473ms
15:	learn: 37.0800610	total: 88.8ms	remaining: 466ms
16:	learn: 36.5489363	total: 94ms	remaining: 459ms
17:	learn: 36.0981456	total: 99.3ms	remaining: 452ms
18:	learn: 35.6956274	total: 105ms	remaining: 446ms
19:	learn: 35.1471999	total: 111ms	remaining: 443ms
20:	learn: 34.6235408	total: 116ms	remaining: 436ms
21:	learn: 34.1987018	total: 121ms	remaining: 428ms
22:	learn: 33.8985062	total: 126ms	remaining: 422ms
23:	learn: 33.3869017	total: 131ms	remaining: 415ms
24:	learn: 32.9100550	total: 137ms	remaining: 410ms
25:	learn: 32.4156208	total: 141ms	remaining: 402ms
26:	learn: 31.9320493	total: 146ms	remaining: 394ms
27:	learn: 31.5711468	total: 150ms	remaining: 387ms
28:	learn: 31.2404433	total: 155ms	remaining: 379ms
29:	learn: 30.8807946	total: 159ms	remaining: 372ms
30:	learn: 30.5948438	total: 164ms	remaining: 365ms
31:	learn: 30.3885560	total: 169ms	remaining: 358ms
32:	learn: 30.0625101	total: 172ms	remaining: 350ms
33:	learn: 29.9113114	total: 177ms	remaining: 343ms
34:	learn: 29.6983470	total: 181ms	remaining: 336ms
35:	learn: 29.4775849	total: 185ms	remaining: 330ms
36:	learn: 29.0538055	total: 189ms	remaining: 323ms
37:	learn: 28.6792318	total: 194ms	remaining: 316ms
38:	learn: 28.4231383	total: 198ms	remaining: 310ms
39:	learn: 28.1078565	total: 203ms	remaining: 304ms
40:	learn: 27.9079179	total: 207ms	remaining: 298ms
41:	learn: 27.6721506	total: 211ms	remaining: 292ms
42:	learn: 27.4228033	total: 216ms	remaining: 287ms
43:	learn: 27.1740534	total: 221ms	remaining: 282ms
44:	learn: 26.8584071	total: 226ms	remaining: 276ms
45:	learn: 26.6902083	total: 230ms	remaining: 271ms
46:	learn: 26.4855335	total: 235ms	remaining: 265ms
47:	learn: 26.2730822	total: 240ms	remaining: 260ms
48:	learn: 26.1058689	total: 245ms	remaining: 255ms
49:	learn: 25.8587318	total: 253ms	remaining: 253ms
50:	learn: 25.7558005	total: 262ms	remaining: 252ms
51:	learn: 25.5846925	total: 269ms	remaining: 248ms
52:	learn: 25.4249887	total: 275ms	remaining: 244ms
53:	learn: 25.1911054	total: 281ms	remaining: 239ms
54:	learn: 25.0544755	total: 285ms	remaining: 233ms
55:	learn: 24.8874006	total: 290ms	remaining: 228ms
56:	learn: 24.7736279	total: 294ms	remaining: 222ms
57:	learn: 24.6156255	total: 299ms	remaining: 216ms
58:	learn: 24.3962421	total: 303ms	remaining: 210ms
59:	learn: 24.2685129	total: 308ms	remaining: 205ms
60:	learn: 24.1874096	total: 312ms	remaining: 199ms
61:	learn: 24.0394287	total: 316ms	remaining: 194ms
62:	learn: 23.9281768	total: 320ms	remaining: 188ms
63:	learn: 23.7423900	total: 325ms	remaining: 183ms
64:	learn: 23.6015209	total: 329ms	remaining: 177ms
65:	learn: 23.4677943	total: 333ms	remaining: 172ms
66:	learn: 23.3215256	total: 337ms	remaining: 166ms
67:	learn: 23.1869360	total: 342ms	remaining: 161ms
68:	learn: 22.9691180	total: 346ms	remaining: 156ms
69:	learn: 22.7531657	total: 351ms	remaining: 150ms
70:	learn: 22.6133477	total: 354ms	remaining: 145ms
71:	learn: 22.3452758	total: 359ms	remaining: 140ms
72:	learn: 22.2065350	total: 363ms	remaining: 134ms
73:	learn: 22.1071155	total: 367ms	remaining: 129ms
74:	learn: 21.9740686	total: 371ms	remaining: 124ms
75:	learn: 21.8892033	total: 375ms	remaining: 118ms
76:	learn: 21.8267882	total: 379ms	remaining: 113ms
77:	learn: 21.7423479	total: 384ms	remaining: 108ms
78:	learn: 21.6242075	total: 388ms	remaining: 103ms
79:	learn: 21.5016910	total: 392ms	remaining: 98ms
80:	learn: 21.4806623	total: 393ms	remaining: 92.2ms
81:	learn: 21.3166637	total: 398ms	remaining: 87.3ms
82:	learn: 21.2222534	total: 402ms	remaining: 82.3ms
83:	learn: 21.1535708	total: 406ms	remaining: 77.4ms
84:	learn: 21.0858902	total: 410ms	remaining: 72.4ms
85:	learn: 20.9206003	total: 415ms	remaining: 67.6ms
86:	learn: 20.8674695	total: 420ms	remaining: 62.7ms
87:	learn: 20.8089875	total: 424ms	remaining: 57.9ms
88:	learn: 20.7085401	total: 430ms	remaining: 53.2ms
89:	learn: 20.5513468	total: 435ms	remaining: 48.3ms
90:	learn: 20.4586742	total: 440ms	remaining: 43.5ms
91:	learn: 20.3932149	total: 445ms	remaining: 38.7ms
92:	learn: 20.3000895	total: 454ms	remaining: 34.2ms
93:	learn: 20.2254009	total: 466ms	remaining: 29.7ms
94:	learn: 20.1750050	total: 472ms	remaining: 24.8ms
95:	learn: 20.0715579	total: 479ms	remaining: 20ms
96:	learn: 19.9920082	total: 485ms	remaining: 15ms
97:	learn: 19.9664401	total: 490ms	remaining: 10ms
98:	learn: 19.8689673	total: 495ms	remaining: 5ms
99:	learn: 19.7537356	total: 501ms	remaining: 0us
0:	learn: 46.8832143	total: 4.71ms	remaining: 466ms
1:	learn: 45.8700349	total: 9.03ms	remaining: 442ms
2:	learn: 45.0546867	total: 13.1ms	remaining: 423ms
3:	learn: 44.2829439	total: 17.5ms	remaining: 419ms
4:	learn: 43.4609042	total: 22ms	remaining: 418ms
5:	learn: 42.6754991	total: 26.5ms	remaining: 415ms
6:	learn: 41.9234935	total: 30.8ms	remaining: 409ms
7:	learn: 41.3987518	total: 34.9ms	remaining: 401ms
8:	learn: 40.6625066	total: 39.1ms	remaining: 396ms
9:	learn: 40.0029561	total: 43ms	remaining: 387ms
10:	learn: 39.3897033	total: 47.3ms	remaining: 383ms
11:	learn: 38.7741453	total: 51.9ms	remaining: 381ms
12:	learn: 38.1201100	total: 56.1ms	remaining: 375ms
13:	learn: 37.5129454	total: 60.1ms	remaining: 369ms
14:	learn: 37.2062206	total: 64.6ms	remaining: 366ms
15:	learn: 36.6831741	total: 69.3ms	remaining: 364ms
16:	learn: 36.2902788	total: 74ms	remaining: 361ms
17:	learn: 35.7639930	total: 78.9ms	remaining: 360ms
18:	learn: 35.2580953	total: 83.4ms	remaining: 356ms
19:	learn: 34.7809739	total: 87.9ms	remaining: 352ms
20:	learn: 34.1330433	total: 92.7ms	remaining: 349ms
21:	learn: 33.7302219	total: 99.4ms	remaining: 353ms
22:	learn: 33.3502495	total: 106ms	remaining: 356ms
23:	learn: 33.0067804	total: 114ms	remaining: 360ms
24:	learn: 32.6897855	total: 120ms	remaining: 360ms
25:	learn: 32.4361119	total: 125ms	remaining: 355ms
26:	learn: 32.1278981	total: 130ms	remaining: 353ms
27:	learn: 31.7863721	total: 135ms	remaining: 346ms
28:	learn: 31.4791450	total: 139ms	remaining: 340ms
29:	learn: 31.1760161	total: 143ms	remaining: 333ms
30:	learn: 30.9238888	total: 147ms	remaining: 328ms
31:	learn: 30.5500905	total: 152ms	remaining: 322ms
32:	learn: 30.3078126	total: 156ms	remaining: 316ms
33:	learn: 30.0480921	total: 160ms	remaining: 311ms
34:	learn: 29.8623884	total: 164ms	remaining: 305ms
35:	learn: 29.5991038	total: 168ms	remaining: 299ms
36:	learn: 29.4061161	total: 172ms	remaining: 294ms
37:	learn: 29.0269515	total: 177ms	remaining: 288ms
38:	learn: 28.8224959	total: 181ms	remaining: 283ms
39:	learn: 28.6417843	total: 185ms	remaining: 278ms
40:	learn: 28.3633368	total: 190ms	remaining: 273ms
41:	learn: 28.0200246	total: 194ms	remaining: 268ms
42:	learn: 27.7221254	total: 199ms	remaining: 263ms
43:	learn: 27.5105818	total: 203ms	remaining: 259ms
44:	learn: 27.3551010	total: 208ms	remaining: 254ms
45:	learn: 27.0787522	total: 212ms	remaining: 249ms
46:	learn: 26.8726317	total: 216ms	remaining: 244ms
47:	learn: 26.8003277	total: 220ms	remaining: 239ms
48:	learn: 26.5493785	total: 224ms	remaining: 234ms
49:	learn: 26.3699550	total: 229ms	remaining: 229ms
50:	learn: 26.1519631	total: 233ms	remaining: 224ms
51:	learn: 25.9277325	total: 238ms	remaining: 220ms
52:	learn: 25.7286035	total: 242ms	remaining: 214ms
53:	learn: 25.4999193	total: 246ms	remaining: 210ms
54:	learn: 25.3434703	total: 251ms	remaining: 205ms
55:	learn: 25.1497545	total: 254ms	remaining: 200ms
56:	learn: 24.9498143	total: 259ms	remaining: 196ms
57:	learn: 24.6509390	total: 263ms	remaining: 191ms
58:	learn: 24.5576144	total: 268ms	remaining: 186ms
59:	learn: 24.4265144	total: 272ms	remaining: 181ms
60:	learn: 24.3100706	total: 277ms	remaining: 177ms
61:	learn: 24.1727952	total: 282ms	remaining: 173ms
62:	learn: 24.0478558	total: 289ms	remaining: 170ms
63:	learn: 23.9124577	total: 296ms	remaining: 166ms
64:	learn: 23.7703718	total: 302ms	remaining: 163ms
65:	learn: 23.5975027	total: 308ms	remaining: 158ms
66:	learn: 23.4318077	total: 312ms	remaining: 154ms
67:	learn: 23.3099691	total: 318ms	remaining: 150ms
68:	learn: 23.1947982	total: 325ms	remaining: 146ms
69:	learn: 23.0260174	total: 329ms	remaining: 141ms
70:	learn: 22.8523100	total: 335ms	remaining: 137ms
71:	learn: 22.8028534	total: 340ms	remaining: 132ms
72:	learn: 22.6880658	total: 345ms	remaining: 128ms
73:	learn: 22.5956809	total: 350ms	remaining: 123ms
74:	learn: 22.4692932	total: 356ms	remaining: 119ms
75:	learn: 22.2863504	total: 361ms	remaining: 114ms
76:	learn: 22.1911237	total: 366ms	remaining: 109ms
77:	learn: 22.1098391	total: 372ms	remaining: 105ms
78:	learn: 22.0182738	total: 378ms	remaining: 100ms
79:	learn: 21.9306746	total: 383ms	remaining: 95.7ms
80:	learn: 21.7508233	total: 388ms	remaining: 91.1ms
81:	learn: 21.7108446	total: 393ms	remaining: 86.4ms
82:	learn: 21.5931852	total: 399ms	remaining: 81.6ms
83:	learn: 21.4480361	total: 403ms	remaining: 76.8ms
84:	learn: 21.3092119	total: 409ms	remaining: 72.2ms
85:	learn: 21.2605557	total: 414ms	remaining: 67.5ms
86:	learn: 21.1123597	total: 420ms	remaining: 62.7ms
87:	learn: 21.0115642	total: 425ms	remaining: 57.9ms
88:	learn: 20.9389040	total: 429ms	remaining: 53ms
89:	learn: 20.8300300	total: 433ms	remaining: 48.1ms
90:	learn: 20.7159733	total: 438ms	remaining: 43.3ms
91:	learn: 20.6282090	total: 442ms	remaining: 38.5ms
92:	learn: 20.5164529	total: 447ms	remaining: 33.6ms
93:	learn: 20.4692032	total: 451ms	remaining: 28.8ms
94:	learn: 20.3768451	total: 456ms	remaining: 24ms
95:	learn: 20.2808056	total: 461ms	remaining: 19.2ms
96:	learn: 20.2082089	total: 465ms	remaining: 14.4ms
97:	learn: 20.1698768	total: 470ms	remaining: 9.59ms
98:	learn: 20.1048816	total: 475ms	remaining: 4.79ms
99:	learn: 20.0086159	total: 479ms	remaining: 0us
0:	learn: 27.6871645	total: 9.46ms	remaining: 936ms
1:	learn: 27.3312003	total: 17.7ms	remaining: 868ms
2:	learn: 26.9359558	total: 23.3ms	remaining: 752ms
3:	learn: 26.6055364	total: 30.2ms	remaining: 724ms
4:	learn: 26.1664924	total: 35ms	remaining: 666ms
5:	learn: 25.8515393	total: 39.7ms	remaining: 622ms
6:	learn: 25.4620036	total: 44.3ms	remaining: 588ms
7:	learn: 25.1669741	total: 49.3ms	remaining: 567ms
8:	learn: 24.8455454	total: 54.2ms	remaining: 548ms
9:	learn: 24.5106323	total: 59.1ms	remaining: 532ms
10:	learn: 24.1915228	total: 64.1ms	remaining: 518ms
11:	learn: 23.9076053	total: 69ms	remaining: 506ms
12:	learn: 23.6692445	total: 73.9ms	remaining: 494ms
13:	learn: 23.4343504	total: 78.7ms	remaining: 483ms
14:	learn: 23.2425280	total: 83.8ms	remaining: 475ms
15:	learn: 22.9254142	total: 88.4ms	remaining: 464ms
16:	learn: 22.6495489	total: 93.2ms	remaining: 455ms
17:	learn: 22.4343705	total: 97.8ms	remaining: 446ms
18:	learn: 22.2154202	total: 102ms	remaining: 437ms
19:	learn: 22.0592712	total: 107ms	remaining: 429ms
20:	learn: 21.7971944	total: 112ms	remaining: 422ms
21:	learn: 21.6128930	total: 117ms	remaining: 415ms
22:	learn: 21.3882946	total: 122ms	remaining: 408ms
23:	learn: 21.0912570	total: 126ms	remaining: 400ms
24:	learn: 20.8922857	total: 131ms	remaining: 393ms
25:	learn: 20.7150574	total: 136ms	remaining: 386ms
26:	learn: 20.5673183	total: 141ms	remaining: 380ms
27:	learn: 20.4331275	total: 145ms	remaining: 374ms
28:	learn: 20.2782866	total: 150ms	remaining: 367ms
29:	learn: 20.1061525	total: 155ms	remaining: 361ms
30:	learn: 19.9225948	total: 160ms	remaining: 355ms
31:	learn: 19.7809193	total: 164ms	remaining: 349ms
32:	learn: 19.6057771	total: 169ms	remaining: 344ms
33:	learn: 19.4391243	total: 175ms	remaining: 339ms
34:	learn: 19.2234365	total: 180ms	remaining: 335ms
35:	learn: 19.0214424	total: 186ms	remaining: 330ms
36:	learn: 18.8990643	total: 191ms	remaining: 325ms
37:	learn: 18.7473635	total: 196ms	remaining: 320ms
38:	learn: 18.6125192	total: 202ms	remaining: 316ms
39:	learn: 18.4977949	total: 212ms	remaining: 317ms
40:	learn: 18.3914568	total: 219ms	remaining: 314ms
41:	learn: 18.2541544	total: 225ms	remaining: 311ms
42:	learn: 18.1038984	total: 231ms	remaining: 306ms
43:	learn: 17.9706172	total: 236ms	remaining: 300ms
44:	learn: 17.8198810	total: 242ms	remaining: 296ms
45:	learn: 17.7102597	total: 248ms	remaining: 291ms
46:	learn: 17.6148228	total: 254ms	remaining: 286ms
47:	learn: 17.5115365	total: 260ms	remaining: 281ms
48:	learn: 17.3884162	total: 266ms	remaining: 277ms
49:	learn: 17.2857632	total: 271ms	remaining: 271ms
50:	learn: 17.1618843	total: 277ms	remaining: 266ms
51:	learn: 17.0529601	total: 282ms	remaining: 260ms
52:	learn: 16.9330273	total: 287ms	remaining: 255ms
53:	learn: 16.8206672	total: 293ms	remaining: 250ms
54:	learn: 16.7080356	total: 298ms	remaining: 244ms
55:	learn: 16.5874354	total: 303ms	remaining: 238ms
56:	learn: 16.4929860	total: 308ms	remaining: 233ms
57:	learn: 16.4269419	total: 313ms	remaining: 227ms
58:	learn: 16.3474026	total: 318ms	remaining: 221ms
59:	learn: 16.2515784	total: 323ms	remaining: 215ms
60:	learn: 16.1743901	total: 327ms	remaining: 209ms
61:	learn: 16.0389930	total: 332ms	remaining: 204ms
62:	learn: 15.9671636	total: 337ms	remaining: 198ms
63:	learn: 15.8928486	total: 342ms	remaining: 192ms
64:	learn: 15.8303841	total: 346ms	remaining: 187ms
65:	learn: 15.7612266	total: 351ms	remaining: 181ms
66:	learn: 15.6811172	total: 356ms	remaining: 175ms
67:	learn: 15.6262138	total: 361ms	remaining: 170ms
68:	learn: 15.5662508	total: 367ms	remaining: 165ms
69:	learn: 15.4804354	total: 372ms	remaining: 159ms
70:	learn: 15.4054915	total: 377ms	remaining: 154ms
71:	learn: 15.3271396	total: 383ms	remaining: 149ms
72:	learn: 15.2828359	total: 388ms	remaining: 143ms
73:	learn: 15.2197404	total: 399ms	remaining: 140ms
74:	learn: 15.1315902	total: 407ms	remaining: 136ms
75:	learn: 15.0780523	total: 413ms	remaining: 131ms
76:	learn: 14.9959155	total: 420ms	remaining: 126ms
77:	learn: 14.9265008	total: 425ms	remaining: 120ms
78:	learn: 14.8570189	total: 430ms	remaining: 114ms
79:	learn: 14.8060372	total: 435ms	remaining: 109ms
80:	learn: 14.7294676	total: 440ms	remaining: 103ms
81:	learn: 14.6708309	total: 444ms	remaining: 97.6ms
82:	learn: 14.5765370	total: 449ms	remaining: 92ms
83:	learn: 14.5312713	total: 454ms	remaining: 86.5ms
84:	learn: 14.4830327	total: 459ms	remaining: 80.9ms
85:	learn: 14.4296247	total: 463ms	remaining: 75.4ms
86:	learn: 14.3381470	total: 468ms	remaining: 70ms
87:	learn: 14.2638093	total: 473ms	remaining: 64.5ms
88:	learn: 14.2288435	total: 478ms	remaining: 59ms
89:	learn: 14.1489273	total: 483ms	remaining: 53.6ms
90:	learn: 14.0937923	total: 487ms	remaining: 48.2ms
91:	learn: 14.0334062	total: 492ms	remaining: 42.8ms
92:	learn: 13.9854696	total: 497ms	remaining: 37.4ms
93:	learn: 13.9444203	total: 501ms	remaining: 32ms
94:	learn: 13.9101523	total: 506ms	remaining: 26.7ms
95:	learn: 13.8460655	total: 511ms	remaining: 21.3ms
96:	learn: 13.7809420	total: 516ms	remaining: 15.9ms
97:	learn: 13.7270532	total: 521ms	remaining: 10.6ms
98:	learn: 13.6891300	total: 526ms	remaining: 5.31ms
99:	learn: 13.6569696	total: 530ms	remaining: 0us
0:	learn: 42.9754370	total: 5.42ms	remaining: 536ms
1:	learn: 42.2613272	total: 10.6ms	remaining: 520ms
2:	learn: 41.4729969	total: 15.6ms	remaining: 503ms
3:	learn: 40.7127004	total: 20.5ms	remaining: 493ms
4:	learn: 39.7775109	total: 25.7ms	remaining: 489ms
5:	learn: 39.1736663	total: 34.3ms	remaining: 537ms
6:	learn: 38.2981109	total: 42.1ms	remaining: 560ms
7:	learn: 37.5352984	total: 51.5ms	remaining: 592ms
8:	learn: 36.7771474	total: 60.1ms	remaining: 608ms
9:	learn: 36.0581366	total: 65.7ms	remaining: 591ms
10:	learn: 35.3542706	total: 71.7ms	remaining: 580ms
11:	learn: 34.6937007	total: 77.1ms	remaining: 565ms
12:	learn: 34.0408035	total: 82.7ms	remaining: 554ms
13:	learn: 33.3460240	total: 88.4ms	remaining: 543ms
14:	learn: 32.8086243	total: 94ms	remaining: 533ms
15:	learn: 32.1934462	total: 100ms	remaining: 525ms
16:	learn: 31.6465519	total: 106ms	remaining: 518ms
17:	learn: 31.2161293	total: 112ms	remaining: 509ms
18:	learn: 30.6730548	total: 117ms	remaining: 498ms
19:	learn: 30.3153659	total: 123ms	remaining: 492ms
20:	learn: 29.7661420	total: 130ms	remaining: 487ms
21:	learn: 29.2095664	total: 135ms	remaining: 478ms
22:	learn: 28.7509592	total: 140ms	remaining: 470ms
23:	learn: 28.4347528	total: 145ms	remaining: 460ms
24:	learn: 28.0551654	total: 150ms	remaining: 451ms
25:	learn: 27.7295952	total: 156ms	remaining: 443ms
26:	learn: 27.2329225	total: 161ms	remaining: 435ms
27:	learn: 26.9970607	total: 166ms	remaining: 427ms
28:	learn: 26.6596544	total: 171ms	remaining: 419ms
29:	learn: 26.2633576	total: 176ms	remaining: 411ms
30:	learn: 25.9761623	total: 181ms	remaining: 403ms
31:	learn: 25.6177371	total: 186ms	remaining: 396ms
32:	learn: 25.2165933	total: 191ms	remaining: 389ms
33:	learn: 24.8012870	total: 197ms	remaining: 382ms
34:	learn: 24.4772532	total: 202ms	remaining: 375ms
35:	learn: 24.1560359	total: 207ms	remaining: 368ms
36:	learn: 23.9688812	total: 213ms	remaining: 362ms
37:	learn: 23.6907607	total: 218ms	remaining: 356ms
38:	learn: 23.3885772	total: 223ms	remaining: 349ms
39:	learn: 23.2234939	total: 228ms	remaining: 342ms
40:	learn: 22.9785026	total: 233ms	remaining: 336ms
41:	learn: 22.6827268	total: 238ms	remaining: 329ms
42:	learn: 22.4564360	total: 243ms	remaining: 323ms
43:	learn: 22.2517827	total: 248ms	remaining: 316ms
44:	learn: 21.9858709	total: 253ms	remaining: 310ms
45:	learn: 21.7595870	total: 263ms	remaining: 309ms
46:	learn: 21.5929957	total: 273ms	remaining: 308ms
47:	learn: 21.4071752	total: 280ms	remaining: 304ms
48:	learn: 21.2186470	total: 286ms	remaining: 298ms
49:	learn: 21.0691824	total: 292ms	remaining: 292ms
50:	learn: 20.8921347	total: 297ms	remaining: 285ms
51:	learn: 20.6834229	total: 302ms	remaining: 279ms
52:	learn: 20.4718988	total: 307ms	remaining: 272ms
53:	learn: 20.3413889	total: 312ms	remaining: 265ms
54:	learn: 20.1785464	total: 316ms	remaining: 259ms
55:	learn: 19.9824314	total: 321ms	remaining: 252ms
56:	learn: 19.8217596	total: 326ms	remaining: 246ms
57:	learn: 19.6318474	total: 331ms	remaining: 240ms
58:	learn: 19.4962236	total: 336ms	remaining: 234ms
59:	learn: 19.3114985	total: 341ms	remaining: 228ms
60:	learn: 19.2181156	total: 346ms	remaining: 222ms
61:	learn: 19.0689614	total: 351ms	remaining: 215ms
62:	learn: 18.9563267	total: 356ms	remaining: 209ms
63:	learn: 18.8343083	total: 361ms	remaining: 203ms
64:	learn: 18.7050033	total: 366ms	remaining: 197ms
65:	learn: 18.6014163	total: 371ms	remaining: 191ms
66:	learn: 18.4910692	total: 376ms	remaining: 185ms
67:	learn: 18.3935194	total: 381ms	remaining: 179ms
68:	learn: 18.2825842	total: 386ms	remaining: 173ms
69:	learn: 18.1519267	total: 391ms	remaining: 167ms
70:	learn: 18.0527651	total: 396ms	remaining: 162ms
71:	learn: 17.9770106	total: 401ms	remaining: 156ms
72:	learn: 17.9151628	total: 405ms	remaining: 150ms
73:	learn: 17.7957486	total: 411ms	remaining: 144ms
74:	learn: 17.7025765	total: 416ms	remaining: 139ms
75:	learn: 17.5957242	total: 420ms	remaining: 133ms
76:	learn: 17.4683244	total: 426ms	remaining: 127ms
77:	learn: 17.3415729	total: 431ms	remaining: 122ms
78:	learn: 17.2886896	total: 437ms	remaining: 116ms
79:	learn: 17.2280922	total: 442ms	remaining: 110ms
80:	learn: 17.1188996	total: 447ms	remaining: 105ms
81:	learn: 17.0236450	total: 452ms	remaining: 99.3ms
82:	learn: 16.9046661	total: 459ms	remaining: 94ms
83:	learn: 16.7930633	total: 467ms	remaining: 89ms
84:	learn: 16.6870100	total: 476ms	remaining: 84ms
85:	learn: 16.5512107	total: 484ms	remaining: 78.8ms
86:	learn: 16.4353400	total: 492ms	remaining: 73.5ms
87:	learn: 16.3256461	total: 498ms	remaining: 67.8ms
88:	learn: 16.2968057	total: 504ms	remaining: 62.3ms
89:	learn: 16.2136078	total: 510ms	remaining: 56.6ms
90:	learn: 16.1596096	total: 516ms	remaining: 51ms
91:	learn: 16.1164050	total: 522ms	remaining: 45.4ms
92:	learn: 16.0660454	total: 527ms	remaining: 39.7ms
93:	learn: 16.0380611	total: 533ms	remaining: 34ms
94:	learn: 15.9494441	total: 540ms	remaining: 28.4ms
95:	learn: 15.8874840	total: 545ms	remaining: 22.7ms
96:	learn: 15.8288234	total: 550ms	remaining: 17ms
97:	learn: 15.7562787	total: 557ms	remaining: 11.4ms
98:	learn: 15.6822678	total: 564ms	remaining: 5.69ms
99:	learn: 15.5901500	total: 569ms	remaining: 0us
0:	learn: 46.4504871	total: 5.16ms	remaining: 510ms
1:	learn: 45.7240114	total: 9.81ms	remaining: 481ms
2:	learn: 45.0308025	total: 14.6ms	remaining: 472ms
3:	learn: 44.1111169	total: 19.1ms	remaining: 458ms
4:	learn: 43.3925352	total: 24.5ms	remaining: 466ms
5:	learn: 42.7856354	total: 29.8ms	remaining: 466ms
6:	learn: 42.1998170	total: 34.6ms	remaining: 460ms
7:	learn: 41.3532708	total: 39.8ms	remaining: 458ms
8:	learn: 40.7314571	total: 45ms	remaining: 455ms
9:	learn: 39.9838066	total: 50.4ms	remaining: 453ms
10:	learn: 39.4168243	total: 57.4ms	remaining: 465ms
11:	learn: 39.0148769	total: 65.6ms	remaining: 481ms
12:	learn: 38.3055855	total: 73.9ms	remaining: 495ms
13:	learn: 37.7343198	total: 85.2ms	remaining: 523ms
14:	learn: 37.4177463	total: 90.5ms	remaining: 513ms
15:	learn: 36.9043298	total: 95.3ms	remaining: 500ms
16:	learn: 36.3139174	total: 99.9ms	remaining: 488ms
17:	learn: 35.7200448	total: 105ms	remaining: 477ms
18:	learn: 35.3763394	total: 109ms	remaining: 466ms
19:	learn: 34.7666728	total: 114ms	remaining: 456ms
20:	learn: 34.2642890	total: 119ms	remaining: 447ms
21:	learn: 33.8196936	total: 123ms	remaining: 437ms
22:	learn: 33.4205669	total: 128ms	remaining: 429ms
23:	learn: 32.8565493	total: 133ms	remaining: 420ms
24:	learn: 32.5287132	total: 137ms	remaining: 412ms
25:	learn: 32.2142064	total: 142ms	remaining: 405ms
26:	learn: 31.9258854	total: 147ms	remaining: 397ms
27:	learn: 31.4083665	total: 152ms	remaining: 390ms
28:	learn: 31.1615620	total: 156ms	remaining: 383ms
29:	learn: 30.6948867	total: 161ms	remaining: 376ms
30:	learn: 30.3185108	total: 166ms	remaining: 369ms
31:	learn: 29.9245223	total: 171ms	remaining: 363ms
32:	learn: 29.6683643	total: 175ms	remaining: 356ms
33:	learn: 29.3868143	total: 180ms	remaining: 350ms
34:	learn: 29.1105699	total: 185ms	remaining: 343ms
35:	learn: 28.8274848	total: 189ms	remaining: 337ms
36:	learn: 28.5478288	total: 195ms	remaining: 331ms
37:	learn: 28.2355121	total: 200ms	remaining: 327ms
38:	learn: 28.0182564	total: 206ms	remaining: 322ms
39:	learn: 27.7654405	total: 211ms	remaining: 316ms
40:	learn: 27.5720477	total: 216ms	remaining: 310ms
41:	learn: 27.3182782	total: 221ms	remaining: 305ms
42:	learn: 26.9504431	total: 227ms	remaining: 300ms
43:	learn: 26.7281906	total: 235ms	remaining: 300ms
44:	learn: 26.5390008	total: 243ms	remaining: 297ms
45:	learn: 26.3781338	total: 251ms	remaining: 294ms
46:	learn: 26.1763177	total: 256ms	remaining: 289ms
47:	learn: 25.9417647	total: 262ms	remaining: 284ms
48:	learn: 25.7528045	total: 269ms	remaining: 280ms
49:	learn: 25.6336897	total: 274ms	remaining: 274ms
50:	learn: 25.4800426	total: 279ms	remaining: 268ms
51:	learn: 25.2895681	total: 285ms	remaining: 264ms
52:	learn: 25.0827111	total: 291ms	remaining: 258ms
53:	learn: 24.7987678	total: 297ms	remaining: 253ms
54:	learn: 24.6309982	total: 303ms	remaining: 248ms
55:	learn: 24.3526776	total: 309ms	remaining: 243ms
56:	learn: 24.1689125	total: 315ms	remaining: 237ms
57:	learn: 23.9802039	total: 320ms	remaining: 232ms
58:	learn: 23.8059432	total: 326ms	remaining: 227ms
59:	learn: 23.6006403	total: 332ms	remaining: 221ms
60:	learn: 23.2948382	total: 338ms	remaining: 216ms
61:	learn: 23.1338922	total: 343ms	remaining: 210ms
62:	learn: 22.9581269	total: 349ms	remaining: 205ms
63:	learn: 22.8263127	total: 354ms	remaining: 199ms
64:	learn: 22.6966006	total: 359ms	remaining: 193ms
65:	learn: 22.6012389	total: 364ms	remaining: 187ms
66:	learn: 22.4220244	total: 369ms	remaining: 182ms
67:	learn: 22.3148342	total: 374ms	remaining: 176ms
68:	learn: 22.1543592	total: 378ms	remaining: 170ms
69:	learn: 22.0614050	total: 383ms	remaining: 164ms
70:	learn: 21.9134025	total: 388ms	remaining: 159ms
71:	learn: 21.8198101	total: 393ms	remaining: 153ms
72:	learn: 21.6944173	total: 398ms	remaining: 147ms
73:	learn: 21.4727420	total: 403ms	remaining: 142ms
74:	learn: 21.3000560	total: 408ms	remaining: 136ms
75:	learn: 21.1884740	total: 413ms	remaining: 130ms
76:	learn: 21.0321317	total: 419ms	remaining: 125ms
77:	learn: 20.9371793	total: 424ms	remaining: 120ms
78:	learn: 20.6800341	total: 429ms	remaining: 114ms
79:	learn: 20.5629904	total: 434ms	remaining: 109ms
80:	learn: 20.4098217	total: 439ms	remaining: 103ms
81:	learn: 20.2139261	total: 445ms	remaining: 97.6ms
82:	learn: 20.1024260	total: 454ms	remaining: 93ms
83:	learn: 19.9835855	total: 462ms	remaining: 87.9ms
84:	learn: 19.9018880	total: 468ms	remaining: 82.6ms
85:	learn: 19.7819843	total: 474ms	remaining: 77.2ms
86:	learn: 19.6352780	total: 480ms	remaining: 71.7ms
87:	learn: 19.4888328	total: 484ms	remaining: 66.1ms
88:	learn: 19.4365121	total: 489ms	remaining: 60.5ms
89:	learn: 19.3427430	total: 494ms	remaining: 54.9ms
90:	learn: 19.2884907	total: 499ms	remaining: 49.3ms
91:	learn: 19.1898932	total: 504ms	remaining: 43.8ms
92:	learn: 19.0775661	total: 509ms	remaining: 38.3ms
93:	learn: 19.0334055	total: 513ms	remaining: 32.8ms
94:	learn: 18.9381916	total: 518ms	remaining: 27.3ms
95:	learn: 18.8471198	total: 523ms	remaining: 21.8ms
96:	learn: 18.7136478	total: 528ms	remaining: 16.3ms
97:	learn: 18.6633102	total: 532ms	remaining: 10.9ms
98:	learn: 18.5887516	total: 537ms	remaining: 5.43ms
99:	learn: 18.4841597	total: 542ms	remaining: 0us
0:	learn: 46.2172336	total: 4.97ms	remaining: 492ms
1:	learn: 45.4248871	total: 9.81ms	remaining: 481ms
2:	learn: 44.8702937	total: 14.5ms	remaining: 469ms
3:	learn: 44.2019212	total: 19.4ms	remaining: 465ms
4:	learn: 43.4805210	total: 24.1ms	remaining: 458ms
5:	learn: 42.7336269	total: 29.2ms	remaining: 457ms
6:	learn: 42.0396670	total: 34.3ms	remaining: 455ms
7:	learn: 41.5668459	total: 39.7ms	remaining: 457ms
8:	learn: 40.8999125	total: 45.1ms	remaining: 456ms
9:	learn: 40.3358512	total: 50.1ms	remaining: 451ms
10:	learn: 39.7511489	total: 55.5ms	remaining: 449ms
11:	learn: 39.0775416	total: 60.3ms	remaining: 442ms
12:	learn: 38.5204735	total: 65.2ms	remaining: 436ms
13:	learn: 38.2087509	total: 70.5ms	remaining: 433ms
14:	learn: 37.7259552	total: 79.4ms	remaining: 450ms
15:	learn: 37.1646397	total: 87.9ms	remaining: 462ms
16:	learn: 36.7093520	total: 97.8ms	remaining: 477ms
17:	learn: 36.2212308	total: 106ms	remaining: 484ms
18:	learn: 35.8682156	total: 112ms	remaining: 477ms
19:	learn: 35.6026383	total: 118ms	remaining: 471ms
20:	learn: 35.1739725	total: 123ms	remaining: 464ms
21:	learn: 34.5938003	total: 129ms	remaining: 458ms
22:	learn: 34.1479056	total: 135ms	remaining: 452ms
23:	learn: 33.8759356	total: 141ms	remaining: 446ms
24:	learn: 33.2898426	total: 147ms	remaining: 440ms
25:	learn: 32.9220237	total: 152ms	remaining: 432ms
26:	learn: 32.4324374	total: 158ms	remaining: 426ms
27:	learn: 32.1726327	total: 163ms	remaining: 419ms
28:	learn: 31.8020879	total: 169ms	remaining: 413ms
29:	learn: 31.4329781	total: 175ms	remaining: 409ms
30:	learn: 30.9995282	total: 181ms	remaining: 403ms
31:	learn: 30.6815978	total: 186ms	remaining: 395ms
32:	learn: 30.2991029	total: 191ms	remaining: 388ms
33:	learn: 30.0354202	total: 196ms	remaining: 380ms
34:	learn: 29.7620535	total: 201ms	remaining: 372ms
35:	learn: 29.4552589	total: 205ms	remaining: 365ms
36:	learn: 29.2634399	total: 210ms	remaining: 358ms
37:	learn: 28.8345135	total: 215ms	remaining: 351ms
38:	learn: 28.5551142	total: 220ms	remaining: 344ms
39:	learn: 28.3258809	total: 225ms	remaining: 338ms
40:	learn: 28.0835564	total: 230ms	remaining: 331ms
41:	learn: 27.7517159	total: 235ms	remaining: 324ms
42:	learn: 27.5427595	total: 240ms	remaining: 318ms
43:	learn: 27.3925105	total: 245ms	remaining: 312ms
44:	learn: 27.2377120	total: 250ms	remaining: 306ms
45:	learn: 26.9930398	total: 255ms	remaining: 300ms
46:	learn: 26.7748687	total: 269ms	remaining: 303ms
47:	learn: 26.5856986	total: 279ms	remaining: 302ms
48:	learn: 26.4344153	total: 287ms	remaining: 299ms
49:	learn: 26.3263456	total: 293ms	remaining: 293ms
50:	learn: 26.2048412	total: 299ms	remaining: 287ms
51:	learn: 26.0608546	total: 305ms	remaining: 281ms
52:	learn: 25.9428146	total: 309ms	remaining: 274ms
53:	learn: 25.7578029	total: 314ms	remaining: 268ms
54:	learn: 25.5696792	total: 319ms	remaining: 261ms
55:	learn: 25.3291935	total: 324ms	remaining: 255ms
56:	learn: 25.1388942	total: 329ms	remaining: 248ms
57:	learn: 24.9853945	total: 334ms	remaining: 242ms
58:	learn: 24.8037785	total: 338ms	remaining: 235ms
59:	learn: 24.5326704	total: 343ms	remaining: 229ms
60:	learn: 24.2208240	total: 348ms	remaining: 223ms
61:	learn: 24.0774015	total: 354ms	remaining: 217ms
62:	learn: 23.9705824	total: 359ms	remaining: 211ms
63:	learn: 23.8877665	total: 364ms	remaining: 205ms
64:	learn: 23.7309043	total: 369ms	remaining: 199ms
65:	learn: 23.5820140	total: 374ms	remaining: 193ms
66:	learn: 23.3762012	total: 380ms	remaining: 187ms
67:	learn: 23.2317502	total: 384ms	remaining: 181ms
68:	learn: 23.0868331	total: 389ms	remaining: 175ms
69:	learn: 22.9642758	total: 394ms	remaining: 169ms
70:	learn: 22.8085341	total: 399ms	remaining: 163ms
71:	learn: 22.6834294	total: 404ms	remaining: 157ms
72:	learn: 22.6152922	total: 409ms	remaining: 151ms
73:	learn: 22.3675145	total: 414ms	remaining: 145ms
74:	learn: 22.3023338	total: 418ms	remaining: 139ms
75:	learn: 22.1866833	total: 423ms	remaining: 134ms
76:	learn: 22.0163130	total: 428ms	remaining: 128ms
77:	learn: 21.9691306	total: 432ms	remaining: 122ms
78:	learn: 21.9004647	total: 437ms	remaining: 116ms
79:	learn: 21.7931869	total: 442ms	remaining: 110ms
80:	learn: 21.6747916	total: 447ms	remaining: 105ms
81:	learn: 21.5187568	total: 452ms	remaining: 99.3ms
82:	learn: 21.3124880	total: 458ms	remaining: 93.7ms
83:	learn: 21.1979524	total: 462ms	remaining: 88.1ms
84:	learn: 21.1311130	total: 468ms	remaining: 82.5ms
85:	learn: 21.0606062	total: 476ms	remaining: 77.5ms
86:	learn: 20.9900935	total: 484ms	remaining: 72.3ms
87:	learn: 20.8908054	total: 495ms	remaining: 67.5ms
88:	learn: 20.8088525	total: 502ms	remaining: 62ms
89:	learn: 20.7300955	total: 508ms	remaining: 56.5ms
90:	learn: 20.6130276	total: 515ms	remaining: 50.9ms
91:	learn: 20.5437508	total: 520ms	remaining: 45.2ms
92:	learn: 20.5029426	total: 526ms	remaining: 39.6ms
93:	learn: 20.4416708	total: 531ms	remaining: 33.9ms
94:	learn: 20.3917812	total: 536ms	remaining: 28.2ms
95:	learn: 20.3305024	total: 542ms	remaining: 22.6ms
96:	learn: 20.2375704	total: 548ms	remaining: 17ms
97:	learn: 20.1835197	total: 553ms	remaining: 11.3ms
98:	learn: 20.1246834	total: 558ms	remaining: 5.64ms
99:	learn: 20.0506334	total: 563ms	remaining: 0us
0:	learn: 46.7334648	total: 5.27ms	remaining: 521ms
1:	learn: 46.2069876	total: 10.1ms	remaining: 493ms
2:	learn: 45.3699967	total: 14.8ms	remaining: 477ms
3:	learn: 44.6866787	total: 19.9ms	remaining: 477ms
4:	learn: 43.8536031	total: 24.8ms	remaining: 472ms
5:	learn: 43.4716853	total: 30ms	remaining: 470ms
6:	learn: 42.9929637	total: 35.2ms	remaining: 468ms
7:	learn: 42.4952169	total: 40.8ms	remaining: 469ms
8:	learn: 41.7548337	total: 46.1ms	remaining: 466ms
9:	learn: 41.1054415	total: 51ms	remaining: 459ms
10:	learn: 40.4827492	total: 56.1ms	remaining: 454ms
11:	learn: 39.7605907	total: 61.3ms	remaining: 449ms
12:	learn: 39.2532558	total: 70.7ms	remaining: 473ms
13:	learn: 38.6572753	total: 80ms	remaining: 491ms
14:	learn: 38.2886959	total: 86.6ms	remaining: 491ms
15:	learn: 37.7816612	total: 92ms	remaining: 483ms
16:	learn: 37.1680589	total: 98.3ms	remaining: 480ms
17:	learn: 36.5753004	total: 103ms	remaining: 471ms
18:	learn: 36.2339458	total: 108ms	remaining: 462ms
19:	learn: 35.9159716	total: 113ms	remaining: 453ms
20:	learn: 35.4591743	total: 118ms	remaining: 444ms
21:	learn: 34.8726070	total: 123ms	remaining: 435ms
22:	learn: 34.3903591	total: 128ms	remaining: 428ms
23:	learn: 34.1236827	total: 133ms	remaining: 420ms
24:	learn: 33.8026540	total: 137ms	remaining: 412ms
25:	learn: 33.4594822	total: 142ms	remaining: 406ms
26:	learn: 33.1338910	total: 148ms	remaining: 399ms
27:	learn: 32.8527106	total: 152ms	remaining: 392ms
28:	learn: 32.4923829	total: 157ms	remaining: 385ms
29:	learn: 32.0560533	total: 162ms	remaining: 379ms
30:	learn: 31.6614408	total: 167ms	remaining: 372ms
31:	learn: 31.2796040	total: 172ms	remaining: 365ms
32:	learn: 30.8214741	total: 176ms	remaining: 358ms
33:	learn: 30.5908694	total: 186ms	remaining: 362ms
34:	learn: 30.3637356	total: 191ms	remaining: 355ms
35:	learn: 30.0446511	total: 196ms	remaining: 348ms
36:	learn: 29.8792549	total: 201ms	remaining: 343ms
37:	learn: 29.5488457	total: 206ms	remaining: 336ms
38:	learn: 29.2808568	total: 211ms	remaining: 329ms
39:	learn: 29.0603765	total: 215ms	remaining: 323ms
40:	learn: 28.8272425	total: 220ms	remaining: 317ms
41:	learn: 28.4753580	total: 225ms	remaining: 310ms
42:	learn: 28.2963614	total: 229ms	remaining: 304ms
43:	learn: 28.1054768	total: 235ms	remaining: 298ms
44:	learn: 27.9038093	total: 239ms	remaining: 293ms
45:	learn: 27.6305487	total: 244ms	remaining: 287ms
46:	learn: 27.4457907	total: 249ms	remaining: 281ms
47:	learn: 27.1855957	total: 255ms	remaining: 276ms
48:	learn: 26.9987934	total: 260ms	remaining: 271ms
49:	learn: 26.7881067	total: 268ms	remaining: 268ms
50:	learn: 26.6385231	total: 276ms	remaining: 265ms
51:	learn: 26.4661755	total: 287ms	remaining: 265ms
52:	learn: 26.3331868	total: 295ms	remaining: 262ms
53:	learn: 26.0353476	total: 301ms	remaining: 256ms
54:	learn: 25.8257147	total: 307ms	remaining: 251ms
55:	learn: 25.5924383	total: 313ms	remaining: 246ms
56:	learn: 25.4082209	total: 318ms	remaining: 240ms
57:	learn: 25.2350104	total: 324ms	remaining: 235ms
58:	learn: 25.1789867	total: 329ms	remaining: 229ms
59:	learn: 24.9111359	total: 336ms	remaining: 224ms
60:	learn: 24.6314503	total: 342ms	remaining: 218ms
61:	learn: 24.4297999	total: 347ms	remaining: 213ms
62:	learn: 24.3126171	total: 353ms	remaining: 207ms
63:	learn: 24.1544005	total: 359ms	remaining: 202ms
64:	learn: 24.0197950	total: 365ms	remaining: 197ms
65:	learn: 23.8483087	total: 370ms	remaining: 191ms
66:	learn: 23.6624915	total: 375ms	remaining: 185ms
67:	learn: 23.5068105	total: 379ms	remaining: 179ms
68:	learn: 23.4266187	total: 384ms	remaining: 173ms
69:	learn: 23.3535388	total: 389ms	remaining: 167ms
70:	learn: 23.2477190	total: 394ms	remaining: 161ms
71:	learn: 23.1877634	total: 399ms	remaining: 155ms
72:	learn: 23.1344720	total: 404ms	remaining: 149ms
73:	learn: 22.9498234	total: 409ms	remaining: 144ms
74:	learn: 22.9068295	total: 414ms	remaining: 138ms
75:	learn: 22.7368434	total: 419ms	remaining: 132ms
76:	learn: 22.6084901	total: 424ms	remaining: 127ms
77:	learn: 22.4690295	total: 429ms	remaining: 121ms
78:	learn: 22.3970100	total: 435ms	remaining: 116ms
79:	learn: 22.3025537	total: 440ms	remaining: 110ms
80:	learn: 22.2089293	total: 445ms	remaining: 104ms
81:	learn: 22.0522107	total: 451ms	remaining: 98.9ms
82:	learn: 21.9368213	total: 456ms	remaining: 93.3ms
83:	learn: 21.7968322	total: 462ms	remaining: 88ms
84:	learn: 21.7416164	total: 470ms	remaining: 83ms
85:	learn: 21.6031099	total: 479ms	remaining: 78ms
86:	learn: 21.4530627	total: 486ms	remaining: 72.6ms
87:	learn: 21.3118417	total: 492ms	remaining: 67.1ms
88:	learn: 21.2760431	total: 505ms	remaining: 62.4ms
89:	learn: 21.2071350	total: 510ms	remaining: 56.7ms
90:	learn: 21.1051001	total: 515ms	remaining: 50.9ms
91:	learn: 21.0246142	total: 520ms	remaining: 45.2ms
92:	learn: 20.9834999	total: 525ms	remaining: 39.5ms
93:	learn: 20.8989393	total: 529ms	remaining: 33.8ms
94:	learn: 20.8262231	total: 534ms	remaining: 28.1ms
95:	learn: 20.7369110	total: 539ms	remaining: 22.5ms
96:	learn: 20.6409587	total: 544ms	remaining: 16.8ms
97:	learn: 20.5553641	total: 548ms	remaining: 11.2ms
98:	learn: 20.4317232	total: 553ms	remaining: 5.59ms
99:	learn: 20.3708681	total: 558ms	remaining: 0us
0:	learn: 27.3776612	total: 18.1ms	remaining: 1.79s
1:	learn: 26.7619003	total: 36ms	remaining: 1.76s
2:	learn: 26.0057626	total: 54.9ms	remaining: 1.77s
3:	learn: 25.4280982	total: 73.4ms	remaining: 1.76s
4:	learn: 24.8347609	total: 104ms	remaining: 1.97s
5:	learn: 24.2526574	total: 127ms	remaining: 1.99s
6:	learn: 23.7478806	total: 149ms	remaining: 1.99s
7:	learn: 23.2677666	total: 172ms	remaining: 1.98s
8:	learn: 22.7564310	total: 194ms	remaining: 1.96s
9:	learn: 22.2873770	total: 213ms	remaining: 1.91s
10:	learn: 21.8088174	total: 231ms	remaining: 1.87s
11:	learn: 21.4086875	total: 249ms	remaining: 1.83s
12:	learn: 20.9489217	total: 269ms	remaining: 1.8s
13:	learn: 20.4585233	total: 297ms	remaining: 1.83s
14:	learn: 20.0177760	total: 320ms	remaining: 1.81s
15:	learn: 19.5981890	total: 338ms	remaining: 1.78s
16:	learn: 19.2041885	total: 356ms	remaining: 1.74s
17:	learn: 18.8422550	total: 374ms	remaining: 1.7s
18:	learn: 18.4774037	total: 392ms	remaining: 1.67s
19:	learn: 18.0931699	total: 413ms	remaining: 1.65s
20:	learn: 17.6856423	total: 431ms	remaining: 1.62s
21:	learn: 17.3394010	total: 450ms	remaining: 1.59s
22:	learn: 17.0165204	total: 470ms	remaining: 1.57s
23:	learn: 16.7728230	total: 490ms	remaining: 1.55s
24:	learn: 16.5020155	total: 510ms	remaining: 1.53s
25:	learn: 16.2110813	total: 534ms	remaining: 1.52s
26:	learn: 15.9439416	total: 560ms	remaining: 1.51s
27:	learn: 15.6605702	total: 581ms	remaining: 1.49s
28:	learn: 15.4180978	total: 603ms	remaining: 1.48s
29:	learn: 15.1463921	total: 623ms	remaining: 1.45s
30:	learn: 14.8961946	total: 646ms	remaining: 1.44s
31:	learn: 14.6763296	total: 663ms	remaining: 1.41s
32:	learn: 14.4161484	total: 682ms	remaining: 1.38s
33:	learn: 14.1748686	total: 700ms	remaining: 1.36s
34:	learn: 13.9722494	total: 719ms	remaining: 1.33s
35:	learn: 13.7632896	total: 741ms	remaining: 1.32s
36:	learn: 13.5572592	total: 767ms	remaining: 1.3s
37:	learn: 13.3896577	total: 788ms	remaining: 1.28s
38:	learn: 13.2796441	total: 809ms	remaining: 1.26s
39:	learn: 13.0896679	total: 829ms	remaining: 1.24s
40:	learn: 12.8898238	total: 850ms	remaining: 1.22s
41:	learn: 12.6824069	total: 870ms	remaining: 1.2s
42:	learn: 12.5459667	total: 889ms	remaining: 1.18s
43:	learn: 12.3859203	total: 911ms	remaining: 1.16s
44:	learn: 12.2099364	total: 933ms	remaining: 1.14s
45:	learn: 12.0649044	total: 963ms	remaining: 1.13s
46:	learn: 11.8934147	total: 988ms	remaining: 1.11s
47:	learn: 11.7212144	total: 1.01s	remaining: 1.09s
48:	learn: 11.5585360	total: 1.03s	remaining: 1.07s
49:	learn: 11.4204354	total: 1.05s	remaining: 1.05s
50:	learn: 11.3264427	total: 1.08s	remaining: 1.03s
51:	learn: 11.2063486	total: 1.1s	remaining: 1.01s
52:	learn: 11.0712206	total: 1.12s	remaining: 993ms
53:	learn: 10.9205088	total: 1.14s	remaining: 972ms
54:	learn: 10.8155412	total: 1.17s	remaining: 957ms
55:	learn: 10.7286854	total: 1.19s	remaining: 938ms
56:	learn: 10.6088466	total: 1.21s	remaining: 916ms
57:	learn: 10.4999885	total: 1.24s	remaining: 895ms
58:	learn: 10.4022194	total: 1.26s	remaining: 874ms
59:	learn: 10.3147130	total: 1.28s	remaining: 852ms
60:	learn: 10.2011489	total: 1.3s	remaining: 831ms
61:	learn: 10.1094372	total: 1.32s	remaining: 810ms
62:	learn: 10.0248970	total: 1.34s	remaining: 788ms
63:	learn: 9.9192710	total: 1.36s	remaining: 768ms
64:	learn: 9.8577360	total: 1.39s	remaining: 747ms
65:	learn: 9.7737103	total: 1.42s	remaining: 729ms
66:	learn: 9.6706617	total: 1.44s	remaining: 710ms
67:	learn: 9.6042727	total: 1.46s	remaining: 688ms
68:	learn: 9.5355377	total: 1.49s	remaining: 668ms
69:	learn: 9.4615216	total: 1.51s	remaining: 647ms
70:	learn: 9.3702045	total: 1.53s	remaining: 625ms
71:	learn: 9.3035392	total: 1.55s	remaining: 603ms
72:	learn: 9.2322686	total: 1.57s	remaining: 581ms
73:	learn: 9.1431916	total: 1.59s	remaining: 560ms
74:	learn: 9.0869466	total: 1.62s	remaining: 541ms
75:	learn: 9.0117390	total: 1.65s	remaining: 520ms
76:	learn: 8.9580443	total: 1.67s	remaining: 498ms
77:	learn: 8.8649939	total: 1.69s	remaining: 476ms
78:	learn: 8.7792713	total: 1.71s	remaining: 453ms
79:	learn: 8.7164606	total: 1.72s	remaining: 431ms
80:	learn: 8.6340559	total: 1.74s	remaining: 409ms
81:	learn: 8.5697104	total: 1.76s	remaining: 387ms
82:	learn: 8.5273758	total: 1.78s	remaining: 365ms
83:	learn: 8.4394788	total: 1.8s	remaining: 344ms
84:	learn: 8.3672415	total: 1.83s	remaining: 324ms
85:	learn: 8.2813444	total: 1.86s	remaining: 303ms
86:	learn: 8.1994983	total: 1.88s	remaining: 281ms
87:	learn: 8.1003577	total: 1.9s	remaining: 260ms
88:	learn: 8.0501976	total: 1.93s	remaining: 238ms
89:	learn: 7.9718830	total: 1.95s	remaining: 216ms
90:	learn: 7.9114534	total: 1.97s	remaining: 195ms
91:	learn: 7.8319856	total: 1.99s	remaining: 173ms
92:	learn: 7.7731246	total: 2.01s	remaining: 151ms
93:	learn: 7.7165850	total: 2.03s	remaining: 129ms
94:	learn: 7.6448498	total: 2.05s	remaining: 108ms
95:	learn: 7.5709919	total: 2.07s	remaining: 86.4ms
96:	learn: 7.5184082	total: 2.09s	remaining: 64.7ms
97:	learn: 7.4786866	total: 2.11s	remaining: 43.1ms
98:	learn: 7.4301201	total: 2.13s	remaining: 21.5ms
99:	learn: 7.3416932	total: 2.15s	remaining: 0us
0:	learn: 42.6391731	total: 21ms	remaining: 2.08s
1:	learn: 41.2755994	total: 47.9ms	remaining: 2.35s
2:	learn: 40.1418308	total: 71.2ms	remaining: 2.3s
3:	learn: 38.9707156	total: 93.3ms	remaining: 2.24s
4:	learn: 37.8723622	total: 115ms	remaining: 2.19s
5:	learn: 36.6981834	total: 137ms	remaining: 2.14s
6:	learn: 35.6210108	total: 157ms	remaining: 2.08s
7:	learn: 34.5154078	total: 178ms	remaining: 2.04s
8:	learn: 33.4581011	total: 196ms	remaining: 1.99s
9:	learn: 32.5872455	total: 217ms	remaining: 1.96s
10:	learn: 31.6311510	total: 235ms	remaining: 1.9s
11:	learn: 30.8222401	total: 257ms	remaining: 1.88s
12:	learn: 29.9305192	total: 279ms	remaining: 1.86s
13:	learn: 29.0742133	total: 306ms	remaining: 1.88s
14:	learn: 28.3687544	total: 326ms	remaining: 1.84s
15:	learn: 27.5730558	total: 345ms	remaining: 1.81s
16:	learn: 26.9376082	total: 364ms	remaining: 1.77s
17:	learn: 26.2254949	total: 384ms	remaining: 1.75s
18:	learn: 25.5974939	total: 403ms	remaining: 1.72s
19:	learn: 25.0097187	total: 422ms	remaining: 1.69s
20:	learn: 24.3722243	total: 441ms	remaining: 1.66s
21:	learn: 23.8249140	total: 460ms	remaining: 1.63s
22:	learn: 23.3953969	total: 481ms	remaining: 1.61s
23:	learn: 22.8726238	total: 503ms	remaining: 1.59s
24:	learn: 22.3407723	total: 531ms	remaining: 1.59s
25:	learn: 21.8360330	total: 554ms	remaining: 1.58s
26:	learn: 21.4050665	total: 557ms	remaining: 1.5s
27:	learn: 20.9389245	total: 578ms	remaining: 1.49s
28:	learn: 20.5166767	total: 600ms	remaining: 1.47s
29:	learn: 20.1190641	total: 622ms	remaining: 1.45s
30:	learn: 19.7189491	total: 641ms	remaining: 1.43s
31:	learn: 19.3748181	total: 659ms	remaining: 1.4s
32:	learn: 19.0116312	total: 678ms	remaining: 1.38s
33:	learn: 18.6982407	total: 700ms	remaining: 1.36s
34:	learn: 18.3109965	total: 722ms	remaining: 1.34s
35:	learn: 17.9620798	total: 747ms	remaining: 1.33s
36:	learn: 17.6396740	total: 768ms	remaining: 1.31s
37:	learn: 17.3596962	total: 787ms	remaining: 1.28s
38:	learn: 17.0107107	total: 804ms	remaining: 1.26s
39:	learn: 16.7000770	total: 822ms	remaining: 1.23s
40:	learn: 16.4406609	total: 833ms	remaining: 1.2s
41:	learn: 16.2482533	total: 852ms	remaining: 1.18s
42:	learn: 16.0039366	total: 870ms	remaining: 1.15s
43:	learn: 15.7538572	total: 888ms	remaining: 1.13s
44:	learn: 15.5095380	total: 909ms	remaining: 1.11s
45:	learn: 15.2678319	total: 931ms	remaining: 1.09s
46:	learn: 15.0494495	total: 960ms	remaining: 1.08s
47:	learn: 14.8347400	total: 985ms	remaining: 1.07s
48:	learn: 14.6035398	total: 1.01s	remaining: 1.05s
49:	learn: 14.3913639	total: 1.03s	remaining: 1.03s
50:	learn: 14.1928022	total: 1.05s	remaining: 1.01s
51:	learn: 13.9985580	total: 1.07s	remaining: 987ms
52:	learn: 13.8322220	total: 1.09s	remaining: 965ms
53:	learn: 13.6455937	total: 1.11s	remaining: 945ms
54:	learn: 13.4402019	total: 1.13s	remaining: 925ms
55:	learn: 13.2899163	total: 1.15s	remaining: 907ms
56:	learn: 13.1694614	total: 1.18s	remaining: 894ms
57:	learn: 13.0722892	total: 1.21s	remaining: 876ms
58:	learn: 12.9065251	total: 1.23s	remaining: 855ms
59:	learn: 12.6992885	total: 1.25s	remaining: 834ms
60:	learn: 12.5384562	total: 1.27s	remaining: 813ms
61:	learn: 12.4105591	total: 1.29s	remaining: 792ms
62:	learn: 12.2952504	total: 1.31s	remaining: 770ms
63:	learn: 12.1427365	total: 1.33s	remaining: 750ms
64:	learn: 11.9954361	total: 1.36s	remaining: 731ms
65:	learn: 11.8161234	total: 1.38s	remaining: 713ms
66:	learn: 11.6849978	total: 1.41s	remaining: 696ms
67:	learn: 11.5405300	total: 1.44s	remaining: 676ms
68:	learn: 11.3806762	total: 1.46s	remaining: 656ms
69:	learn: 11.2746848	total: 1.48s	remaining: 636ms
70:	learn: 11.1518256	total: 1.5s	remaining: 615ms
71:	learn: 11.0730779	total: 1.52s	remaining: 593ms
72:	learn: 10.9736725	total: 1.55s	remaining: 572ms
73:	learn: 10.8430563	total: 1.57s	remaining: 551ms
74:	learn: 10.7142220	total: 1.59s	remaining: 531ms
75:	learn: 10.6141640	total: 1.62s	remaining: 512ms
76:	learn: 10.5264853	total: 1.64s	remaining: 491ms
77:	learn: 10.3929390	total: 1.66s	remaining: 469ms
78:	learn: 10.3163176	total: 1.68s	remaining: 447ms
79:	learn: 10.2171240	total: 1.7s	remaining: 426ms
80:	learn: 10.1381738	total: 1.72s	remaining: 404ms
81:	learn: 10.0402437	total: 1.74s	remaining: 382ms
82:	learn: 9.9223565	total: 1.76s	remaining: 361ms
83:	learn: 9.8184057	total: 1.78s	remaining: 340ms
84:	learn: 9.7221978	total: 1.8s	remaining: 319ms
85:	learn: 9.6417031	total: 1.84s	remaining: 299ms
86:	learn: 9.5593969	total: 1.86s	remaining: 278ms
87:	learn: 9.4678992	total: 1.89s	remaining: 257ms
88:	learn: 9.3855757	total: 1.91s	remaining: 236ms
89:	learn: 9.2884031	total: 1.93s	remaining: 215ms
90:	learn: 9.2099382	total: 1.96s	remaining: 194ms
91:	learn: 9.1357061	total: 1.98s	remaining: 172ms
92:	learn: 9.0690328	total: 2s	remaining: 150ms
93:	learn: 8.9904694	total: 2.03s	remaining: 129ms
94:	learn: 8.9256893	total: 2.05s	remaining: 108ms
95:	learn: 8.8600084	total: 2.07s	remaining: 86.3ms
96:	learn: 8.8091154	total: 2.09s	remaining: 64.7ms
97:	learn: 8.7280528	total: 2.11s	remaining: 43.1ms
98:	learn: 8.6761440	total: 2.13s	remaining: 21.5ms
99:	learn: 8.6181192	total: 2.15s	remaining: 0us
0:	learn: 45.9988128	total: 22ms	remaining: 2.18s
1:	learn: 44.7653841	total: 50.8ms	remaining: 2.49s
2:	learn: 43.4693688	total: 74.1ms	remaining: 2.4s
3:	learn: 42.2495168	total: 96.9ms	remaining: 2.32s
4:	learn: 41.2273909	total: 121ms	remaining: 2.29s
5:	learn: 40.0623352	total: 143ms	remaining: 2.24s
6:	learn: 39.0139162	total: 162ms	remaining: 2.15s
7:	learn: 37.9905503	total: 184ms	remaining: 2.11s
8:	learn: 37.1460179	total: 204ms	remaining: 2.06s
9:	learn: 36.1321769	total: 225ms	remaining: 2.02s
10:	learn: 35.2434048	total: 246ms	remaining: 1.99s
11:	learn: 34.3919476	total: 268ms	remaining: 1.96s
12:	learn: 33.5464400	total: 297ms	remaining: 1.99s
13:	learn: 32.5752711	total: 319ms	remaining: 1.96s
14:	learn: 31.8573507	total: 338ms	remaining: 1.92s
15:	learn: 31.1481980	total: 358ms	remaining: 1.88s
16:	learn: 30.4578224	total: 380ms	remaining: 1.85s
17:	learn: 29.8404841	total: 399ms	remaining: 1.82s
18:	learn: 29.1314604	total: 419ms	remaining: 1.78s
19:	learn: 28.5024706	total: 440ms	remaining: 1.76s
20:	learn: 27.9368896	total: 463ms	remaining: 1.74s
21:	learn: 27.2136491	total: 485ms	remaining: 1.72s
22:	learn: 26.6230078	total: 516ms	remaining: 1.73s
23:	learn: 26.0604635	total: 539ms	remaining: 1.71s
24:	learn: 25.6309424	total: 561ms	remaining: 1.68s
25:	learn: 25.1761698	total: 583ms	remaining: 1.66s
26:	learn: 24.6368216	total: 606ms	remaining: 1.64s
27:	learn: 24.1028972	total: 627ms	remaining: 1.61s
28:	learn: 23.3990224	total: 647ms	remaining: 1.58s
29:	learn: 22.9088559	total: 667ms	remaining: 1.55s
30:	learn: 22.4793217	total: 690ms	remaining: 1.54s
31:	learn: 22.0592669	total: 718ms	remaining: 1.52s
32:	learn: 21.6715811	total: 742ms	remaining: 1.51s
33:	learn: 21.1907911	total: 762ms	remaining: 1.48s
34:	learn: 20.8045504	total: 782ms	remaining: 1.45s
35:	learn: 20.4670784	total: 803ms	remaining: 1.43s
36:	learn: 20.0165788	total: 823ms	remaining: 1.4s
37:	learn: 19.6859173	total: 843ms	remaining: 1.38s
38:	learn: 19.3641283	total: 862ms	remaining: 1.35s
39:	learn: 19.0291194	total: 884ms	remaining: 1.32s
40:	learn: 18.7204204	total: 903ms	remaining: 1.3s
41:	learn: 18.4000101	total: 933ms	remaining: 1.29s
42:	learn: 18.0910445	total: 956ms	remaining: 1.27s
43:	learn: 17.8354609	total: 978ms	remaining: 1.25s
44:	learn: 17.4982243	total: 1s	remaining: 1.22s
45:	learn: 17.1895897	total: 1.02s	remaining: 1.2s
46:	learn: 16.9440833	total: 1.04s	remaining: 1.17s
47:	learn: 16.6112102	total: 1.06s	remaining: 1.15s
48:	learn: 16.3320235	total: 1.08s	remaining: 1.12s
49:	learn: 16.0523610	total: 1.1s	remaining: 1.1s
50:	learn: 15.8256738	total: 1.12s	remaining: 1.08s
51:	learn: 15.5699393	total: 1.15s	remaining: 1.06s
52:	learn: 15.3531799	total: 1.17s	remaining: 1.04s
53:	learn: 15.1364230	total: 1.19s	remaining: 1.01s
54:	learn: 15.0012063	total: 1.21s	remaining: 987ms
55:	learn: 14.7171740	total: 1.22s	remaining: 962ms
56:	learn: 14.5897576	total: 1.23s	remaining: 925ms
57:	learn: 14.3886878	total: 1.25s	remaining: 902ms
58:	learn: 14.1942115	total: 1.26s	remaining: 878ms
59:	learn: 14.0135398	total: 1.28s	remaining: 857ms
60:	learn: 13.8118263	total: 1.3s	remaining: 834ms
61:	learn: 13.6444047	total: 1.33s	remaining: 813ms
62:	learn: 13.4728078	total: 1.35s	remaining: 795ms
63:	learn: 13.3104934	total: 1.38s	remaining: 775ms
64:	learn: 13.1385144	total: 1.4s	remaining: 753ms
65:	learn: 13.0087777	total: 1.42s	remaining: 732ms
66:	learn: 12.8457835	total: 1.44s	remaining: 711ms
67:	learn: 12.6975263	total: 1.47s	remaining: 690ms
68:	learn: 12.5582839	total: 1.49s	remaining: 668ms
69:	learn: 12.4210776	total: 1.51s	remaining: 646ms
70:	learn: 12.2737286	total: 1.53s	remaining: 624ms
71:	learn: 12.1587075	total: 1.56s	remaining: 605ms
72:	learn: 12.0323022	total: 1.58s	remaining: 585ms
73:	learn: 11.8667900	total: 1.6s	remaining: 563ms
74:	learn: 11.6990385	total: 1.62s	remaining: 541ms
75:	learn: 11.5755058	total: 1.64s	remaining: 519ms
76:	learn: 11.4954152	total: 1.66s	remaining: 496ms
77:	learn: 11.3827464	total: 1.68s	remaining: 474ms
78:	learn: 11.2924968	total: 1.7s	remaining: 452ms
79:	learn: 11.1938217	total: 1.72s	remaining: 430ms
80:	learn: 11.0766477	total: 1.75s	remaining: 410ms
81:	learn: 10.9824487	total: 1.77s	remaining: 389ms
82:	learn: 10.8707168	total: 1.79s	remaining: 368ms
83:	learn: 10.7746205	total: 1.82s	remaining: 346ms
84:	learn: 10.6738461	total: 1.84s	remaining: 325ms
85:	learn: 10.5871227	total: 1.86s	remaining: 303ms
86:	learn: 10.4566607	total: 1.88s	remaining: 282ms
87:	learn: 10.3506633	total: 1.9s	remaining: 260ms
88:	learn: 10.2104644	total: 1.92s	remaining: 238ms
89:	learn: 10.0965839	total: 1.94s	remaining: 216ms
90:	learn: 9.9802927	total: 1.97s	remaining: 194ms
91:	learn: 9.9195276	total: 2s	remaining: 174ms
92:	learn: 9.8559698	total: 2.02s	remaining: 152ms
93:	learn: 9.7396780	total: 2.04s	remaining: 130ms
94:	learn: 9.6945725	total: 2.06s	remaining: 108ms
95:	learn: 9.5897565	total: 2.08s	remaining: 86.5ms
96:	learn: 9.5012011	total: 2.09s	remaining: 64.8ms
97:	learn: 9.4123715	total: 2.11s	remaining: 43.1ms
98:	learn: 9.3288366	total: 2.13s	remaining: 21.5ms
99:	learn: 9.2648715	total: 2.15s	remaining: 0us
0:	learn: 45.5336925	total: 25.7ms	remaining: 2.54s
1:	learn: 44.2714175	total: 46.8ms	remaining: 2.29s
2:	learn: 43.1477944	total: 68.3ms	remaining: 2.21s
3:	learn: 41.9891776	total: 89.7ms	remaining: 2.15s
4:	learn: 41.0638986	total: 112ms	remaining: 2.12s
5:	learn: 39.9800801	total: 130ms	remaining: 2.04s
6:	learn: 38.9048061	total: 149ms	remaining: 1.98s
7:	learn: 38.0749429	total: 171ms	remaining: 1.96s
8:	learn: 37.3966644	total: 192ms	remaining: 1.94s
9:	learn: 36.4671331	total: 218ms	remaining: 1.96s
10:	learn: 35.6649217	total: 237ms	remaining: 1.92s
11:	learn: 34.8793657	total: 255ms	remaining: 1.87s
12:	learn: 34.0737401	total: 273ms	remaining: 1.83s
13:	learn: 33.2560999	total: 293ms	remaining: 1.8s
14:	learn: 32.4184623	total: 311ms	remaining: 1.76s
15:	learn: 31.6803206	total: 329ms	remaining: 1.73s
16:	learn: 30.9276344	total: 348ms	remaining: 1.7s
17:	learn: 30.3590041	total: 375ms	remaining: 1.71s
18:	learn: 29.7789888	total: 397ms	remaining: 1.69s
19:	learn: 29.1098261	total: 424ms	remaining: 1.7s
20:	learn: 28.4824889	total: 453ms	remaining: 1.7s
21:	learn: 27.9675744	total: 477ms	remaining: 1.69s
22:	learn: 27.4793215	total: 507ms	remaining: 1.7s
23:	learn: 26.8920542	total: 532ms	remaining: 1.69s
24:	learn: 26.2736657	total: 553ms	remaining: 1.66s
25:	learn: 25.6908003	total: 575ms	remaining: 1.64s
26:	learn: 25.1288844	total: 597ms	remaining: 1.61s
27:	learn: 24.6933320	total: 622ms	remaining: 1.6s
28:	learn: 24.1372567	total: 643ms	remaining: 1.57s
29:	learn: 23.7103515	total: 676ms	remaining: 1.58s
30:	learn: 23.1647499	total: 698ms	remaining: 1.55s
31:	learn: 22.7009216	total: 719ms	remaining: 1.53s
32:	learn: 22.2792229	total: 748ms	remaining: 1.52s
33:	learn: 21.8004244	total: 769ms	remaining: 1.49s
34:	learn: 21.3578361	total: 790ms	remaining: 1.47s
35:	learn: 21.0262832	total: 811ms	remaining: 1.44s
36:	learn: 20.5787502	total: 833ms	remaining: 1.42s
37:	learn: 20.3083055	total: 855ms	remaining: 1.4s
38:	learn: 19.9902529	total: 882ms	remaining: 1.38s
39:	learn: 19.6059571	total: 912ms	remaining: 1.37s
40:	learn: 19.3890959	total: 935ms	remaining: 1.35s
41:	learn: 19.0549255	total: 960ms	remaining: 1.32s
42:	learn: 18.7283215	total: 984ms	remaining: 1.3s
43:	learn: 18.4448725	total: 1.01s	remaining: 1.29s
44:	learn: 18.1578001	total: 1.03s	remaining: 1.26s
45:	learn: 17.8777474	total: 1.06s	remaining: 1.24s
46:	learn: 17.6428221	total: 1.09s	remaining: 1.22s
47:	learn: 17.3887752	total: 1.11s	remaining: 1.2s
48:	learn: 17.1475761	total: 1.13s	remaining: 1.18s
49:	learn: 16.9064363	total: 1.16s	remaining: 1.16s
50:	learn: 16.6414681	total: 1.18s	remaining: 1.13s
51:	learn: 16.4549974	total: 1.2s	remaining: 1.1s
52:	learn: 16.2617558	total: 1.22s	remaining: 1.08s
53:	learn: 16.0258241	total: 1.24s	remaining: 1.05s
54:	learn: 15.7694686	total: 1.27s	remaining: 1.04s
55:	learn: 15.5449602	total: 1.3s	remaining: 1.02s
56:	learn: 15.3515330	total: 1.33s	remaining: 1s
57:	learn: 15.1120403	total: 1.35s	remaining: 980ms
58:	learn: 14.9131368	total: 1.38s	remaining: 957ms
59:	learn: 14.8021921	total: 1.4s	remaining: 934ms
60:	learn: 14.6564259	total: 1.42s	remaining: 909ms
61:	learn: 14.5253260	total: 1.44s	remaining: 885ms
62:	learn: 14.3975427	total: 1.47s	remaining: 866ms
63:	learn: 14.3060204	total: 1.5s	remaining: 845ms
64:	learn: 14.1283681	total: 1.53s	remaining: 825ms
65:	learn: 14.0159063	total: 1.55s	remaining: 800ms
66:	learn: 13.8712541	total: 1.57s	remaining: 775ms
67:	learn: 13.7852998	total: 1.59s	remaining: 750ms
68:	learn: 13.6790164	total: 1.61s	remaining: 726ms
69:	learn: 13.5253745	total: 1.64s	remaining: 702ms
70:	learn: 13.3959663	total: 1.66s	remaining: 678ms
71:	learn: 13.2062955	total: 1.69s	remaining: 656ms
72:	learn: 13.0788709	total: 1.72s	remaining: 635ms
73:	learn: 12.9513184	total: 1.74s	remaining: 611ms
74:	learn: 12.8198556	total: 1.76s	remaining: 588ms
75:	learn: 12.7137549	total: 1.8s	remaining: 567ms
76:	learn: 12.6243477	total: 1.82s	remaining: 543ms
77:	learn: 12.5241564	total: 1.84s	remaining: 519ms
78:	learn: 12.4445782	total: 1.86s	remaining: 495ms
79:	learn: 12.3816501	total: 1.88s	remaining: 471ms
80:	learn: 12.2846914	total: 1.91s	remaining: 448ms
81:	learn: 12.1419498	total: 1.93s	remaining: 425ms
82:	learn: 12.0846494	total: 1.95s	remaining: 400ms
83:	learn: 11.9851484	total: 1.97s	remaining: 376ms
84:	learn: 11.8905738	total: 1.99s	remaining: 352ms
85:	learn: 11.7718790	total: 2.01s	remaining: 328ms
86:	learn: 11.6854413	total: 2.03s	remaining: 304ms
87:	learn: 11.6206110	total: 2.05s	remaining: 280ms
88:	learn: 11.5376098	total: 2.08s	remaining: 257ms
89:	learn: 11.4235068	total: 2.1s	remaining: 233ms
90:	learn: 11.3477955	total: 2.13s	remaining: 211ms
91:	learn: 11.2663772	total: 2.15s	remaining: 187ms
92:	learn: 11.1916556	total: 2.18s	remaining: 164ms
93:	learn: 11.0921504	total: 2.2s	remaining: 140ms
94:	learn: 10.9622375	total: 2.22s	remaining: 117ms
95:	learn: 10.8882085	total: 2.25s	remaining: 93.6ms
96:	learn: 10.8086218	total: 2.26s	remaining: 70ms
97:	learn: 10.7552220	total: 2.28s	remaining: 46.6ms
98:	learn: 10.6929666	total: 2.31s	remaining: 23.3ms
99:	learn: 10.6200033	total: 2.33s	remaining: 0us
0:	learn: 46.3366259	total: 22.2ms	remaining: 2.2s
1:	learn: 45.2205278	total: 42.6ms	remaining: 2.09s
2:	learn: 43.9887404	total: 62.5ms	remaining: 2.02s
3:	learn: 42.8240666	total: 83.8ms	remaining: 2.01s
4:	learn: 41.6086617	total: 107ms	remaining: 2.04s
5:	learn: 40.5606446	total: 129ms	remaining: 2.02s
6:	learn: 39.6241326	total: 161ms	remaining: 2.14s
7:	learn: 39.0016852	total: 186ms	remaining: 2.13s
8:	learn: 37.8501670	total: 207ms	remaining: 2.1s
9:	learn: 37.0215474	total: 229ms	remaining: 2.06s
10:	learn: 36.0215020	total: 251ms	remaining: 2.03s
11:	learn: 35.2421331	total: 276ms	remaining: 2.02s
12:	learn: 34.5416837	total: 295ms	remaining: 1.97s
13:	learn: 33.7787649	total: 318ms	remaining: 1.95s
14:	learn: 32.9860883	total: 340ms	remaining: 1.93s
15:	learn: 32.2123752	total: 367ms	remaining: 1.93s
16:	learn: 31.3564648	total: 389ms	remaining: 1.9s
17:	learn: 30.7859979	total: 408ms	remaining: 1.86s
18:	learn: 30.1443515	total: 427ms	remaining: 1.82s
19:	learn: 29.4880724	total: 447ms	remaining: 1.79s
20:	learn: 28.9635727	total: 467ms	remaining: 1.75s
21:	learn: 28.4853342	total: 486ms	remaining: 1.72s
22:	learn: 27.9796348	total: 505ms	remaining: 1.69s
23:	learn: 27.4360487	total: 527ms	remaining: 1.67s
24:	learn: 26.8685214	total: 547ms	remaining: 1.64s
25:	learn: 26.1769206	total: 573ms	remaining: 1.63s
26:	learn: 25.7146048	total: 601ms	remaining: 1.62s
27:	learn: 25.2614850	total: 623ms	remaining: 1.6s
28:	learn: 24.6626472	total: 645ms	remaining: 1.58s
29:	learn: 24.2501259	total: 667ms	remaining: 1.56s
30:	learn: 23.7892661	total: 689ms	remaining: 1.53s
31:	learn: 23.2729078	total: 709ms	remaining: 1.51s
32:	learn: 22.8969731	total: 728ms	remaining: 1.48s
33:	learn: 22.4567570	total: 750ms	remaining: 1.46s
34:	learn: 22.0569858	total: 777ms	remaining: 1.44s
35:	learn: 21.7317775	total: 801ms	remaining: 1.42s
36:	learn: 21.3890971	total: 820ms	remaining: 1.4s
37:	learn: 21.0664504	total: 840ms	remaining: 1.37s
38:	learn: 20.7379659	total: 861ms	remaining: 1.35s
39:	learn: 20.4423699	total: 882ms	remaining: 1.32s
40:	learn: 20.1526720	total: 904ms	remaining: 1.3s
41:	learn: 19.8706547	total: 924ms	remaining: 1.28s
42:	learn: 19.5139134	total: 950ms	remaining: 1.26s
43:	learn: 19.3495951	total: 974ms	remaining: 1.24s
44:	learn: 19.1314757	total: 997ms	remaining: 1.22s
45:	learn: 18.7971159	total: 1.02s	remaining: 1.2s
46:	learn: 18.5447051	total: 1.04s	remaining: 1.17s
47:	learn: 18.2328785	total: 1.06s	remaining: 1.15s
48:	learn: 17.9622938	total: 1.09s	remaining: 1.13s
49:	learn: 17.7264205	total: 1.11s	remaining: 1.11s
50:	learn: 17.4530592	total: 1.13s	remaining: 1.08s
51:	learn: 17.2236644	total: 1.15s	remaining: 1.06s
52:	learn: 17.0122792	total: 1.17s	remaining: 1.04s
53:	learn: 16.7599064	total: 1.2s	remaining: 1.02s
54:	learn: 16.5146699	total: 1.22s	remaining: 1s
55:	learn: 16.2531414	total: 1.24s	remaining: 977ms
56:	learn: 16.0997208	total: 1.26s	remaining: 951ms
57:	learn: 15.8452412	total: 1.28s	remaining: 927ms
58:	learn: 15.6294900	total: 1.3s	remaining: 902ms
59:	learn: 15.4564548	total: 1.32s	remaining: 878ms
60:	learn: 15.2978533	total: 1.34s	remaining: 854ms
61:	learn: 15.0976912	total: 1.35s	remaining: 830ms
62:	learn: 14.9094446	total: 1.37s	remaining: 807ms
63:	learn: 14.7415094	total: 1.39s	remaining: 784ms
64:	learn: 14.6123806	total: 1.42s	remaining: 766ms
65:	learn: 14.4744916	total: 1.45s	remaining: 744ms
66:	learn: 14.3212717	total: 1.47s	remaining: 722ms
67:	learn: 14.1768047	total: 1.49s	remaining: 700ms
68:	learn: 14.0387344	total: 1.51s	remaining: 678ms
69:	learn: 13.8987579	total: 1.53s	remaining: 655ms
70:	learn: 13.7825740	total: 1.54s	remaining: 631ms
71:	learn: 13.6818548	total: 1.56s	remaining: 608ms
72:	learn: 13.5356993	total: 1.58s	remaining: 586ms
73:	learn: 13.4408704	total: 1.61s	remaining: 564ms
74:	learn: 13.2992218	total: 1.64s	remaining: 545ms
75:	learn: 13.1547092	total: 1.66s	remaining: 523ms
76:	learn: 13.0800189	total: 1.67s	remaining: 500ms
77:	learn: 12.9434711	total: 1.69s	remaining: 477ms
78:	learn: 12.8327325	total: 1.71s	remaining: 455ms
79:	learn: 12.7238946	total: 1.73s	remaining: 432ms
80:	learn: 12.6229528	total: 1.75s	remaining: 410ms
81:	learn: 12.5216078	total: 1.76s	remaining: 388ms
82:	learn: 12.4182254	total: 1.78s	remaining: 365ms
83:	learn: 12.3097978	total: 1.8s	remaining: 344ms
84:	learn: 12.1852056	total: 1.82s	remaining: 322ms
85:	learn: 12.0739627	total: 1.85s	remaining: 302ms
86:	learn: 11.9475583	total: 1.88s	remaining: 281ms
87:	learn: 11.8403806	total: 1.9s	remaining: 259ms
88:	learn: 11.7294124	total: 1.92s	remaining: 238ms
89:	learn: 11.6395689	total: 1.94s	remaining: 216ms
90:	learn: 11.5510643	total: 1.96s	remaining: 194ms
91:	learn: 11.4455301	total: 1.98s	remaining: 172ms
92:	learn: 11.3368661	total: 2s	remaining: 151ms
93:	learn: 11.2270796	total: 2.02s	remaining: 129ms
94:	learn: 11.1168414	total: 2.04s	remaining: 107ms
95:	learn: 11.0310985	total: 2.06s	remaining: 86ms
96:	learn: 10.9735185	total: 2.09s	remaining: 64.6ms
97:	learn: 10.8575874	total: 2.11s	remaining: 43ms
98:	learn: 10.7816173	total: 2.13s	remaining: 21.5ms
99:	learn: 10.7111737	total: 2.15s	remaining: 0us
0:	learn: 27.6506730	total: 4.92ms	remaining: 487ms
1:	learn: 27.1638793	total: 9.5ms	remaining: 466ms
2:	learn: 26.8000665	total: 14ms	remaining: 452ms
3:	learn: 26.4256132	total: 18.5ms	remaining: 444ms
4:	learn: 26.0088351	total: 23.1ms	remaining: 440ms
5:	learn: 25.7558298	total: 27.8ms	remaining: 435ms
6:	learn: 25.3380711	total: 32.8ms	remaining: 436ms
7:	learn: 25.0571611	total: 37.5ms	remaining: 431ms
8:	learn: 24.6790148	total: 42.3ms	remaining: 428ms
9:	learn: 24.3600941	total: 47.1ms	remaining: 424ms
10:	learn: 24.1105667	total: 51.7ms	remaining: 418ms
11:	learn: 23.7736542	total: 56.4ms	remaining: 414ms
12:	learn: 23.5824429	total: 61.8ms	remaining: 413ms
13:	learn: 23.2658303	total: 70.5ms	remaining: 433ms
14:	learn: 23.0061886	total: 79.6ms	remaining: 451ms
15:	learn: 22.8060389	total: 86.3ms	remaining: 453ms
16:	learn: 22.5899735	total: 94.7ms	remaining: 462ms
17:	learn: 22.3625048	total: 100ms	remaining: 456ms
18:	learn: 22.0706477	total: 106ms	remaining: 451ms
19:	learn: 21.8739394	total: 112ms	remaining: 447ms
20:	learn: 21.6143650	total: 118ms	remaining: 443ms
21:	learn: 21.4571623	total: 123ms	remaining: 436ms
22:	learn: 21.2395769	total: 128ms	remaining: 430ms
23:	learn: 20.9801795	total: 134ms	remaining: 424ms
24:	learn: 20.8036808	total: 139ms	remaining: 418ms
25:	learn: 20.6387539	total: 145ms	remaining: 412ms
26:	learn: 20.4401427	total: 150ms	remaining: 406ms
27:	learn: 20.2879575	total: 156ms	remaining: 400ms
28:	learn: 20.0538664	total: 162ms	remaining: 396ms
29:	learn: 19.8363102	total: 167ms	remaining: 390ms
30:	learn: 19.7015446	total: 172ms	remaining: 383ms
31:	learn: 19.5483114	total: 177ms	remaining: 375ms
32:	learn: 19.4163053	total: 182ms	remaining: 369ms
33:	learn: 19.2880625	total: 186ms	remaining: 362ms
34:	learn: 19.1303389	total: 191ms	remaining: 355ms
35:	learn: 18.9237448	total: 196ms	remaining: 348ms
36:	learn: 18.8142925	total: 201ms	remaining: 342ms
37:	learn: 18.6994696	total: 205ms	remaining: 335ms
38:	learn: 18.5629211	total: 210ms	remaining: 328ms
39:	learn: 18.4600917	total: 215ms	remaining: 322ms
40:	learn: 18.3567139	total: 220ms	remaining: 316ms
41:	learn: 18.2120527	total: 224ms	remaining: 310ms
42:	learn: 18.0688062	total: 229ms	remaining: 304ms
43:	learn: 17.9250181	total: 234ms	remaining: 298ms
44:	learn: 17.8399138	total: 239ms	remaining: 292ms
45:	learn: 17.6720713	total: 244ms	remaining: 286ms
46:	learn: 17.5273091	total: 248ms	remaining: 280ms
47:	learn: 17.4232814	total: 253ms	remaining: 274ms
48:	learn: 17.2957579	total: 258ms	remaining: 268ms
49:	learn: 17.1892874	total: 267ms	remaining: 267ms
50:	learn: 17.0490355	total: 275ms	remaining: 264ms
51:	learn: 16.9666450	total: 281ms	remaining: 260ms
52:	learn: 16.8600056	total: 287ms	remaining: 254ms
53:	learn: 16.7542588	total: 292ms	remaining: 249ms
54:	learn: 16.6316077	total: 297ms	remaining: 243ms
55:	learn: 16.5588112	total: 302ms	remaining: 237ms
56:	learn: 16.5010186	total: 306ms	remaining: 231ms
57:	learn: 16.4081540	total: 311ms	remaining: 225ms
58:	learn: 16.3040451	total: 315ms	remaining: 219ms
59:	learn: 16.1890564	total: 320ms	remaining: 213ms
60:	learn: 16.0977103	total: 324ms	remaining: 207ms
61:	learn: 15.9627607	total: 329ms	remaining: 202ms
62:	learn: 15.9022248	total: 334ms	remaining: 196ms
63:	learn: 15.8151881	total: 338ms	remaining: 190ms
64:	learn: 15.7353125	total: 343ms	remaining: 184ms
65:	learn: 15.6312897	total: 347ms	remaining: 179ms
66:	learn: 15.5330927	total: 351ms	remaining: 173ms
67:	learn: 15.4698681	total: 356ms	remaining: 167ms
68:	learn: 15.4108571	total: 360ms	remaining: 162ms
69:	learn: 15.3492945	total: 365ms	remaining: 156ms
70:	learn: 15.3036540	total: 369ms	remaining: 151ms
71:	learn: 15.2390833	total: 374ms	remaining: 145ms
72:	learn: 15.1556327	total: 378ms	remaining: 140ms
73:	learn: 15.1016315	total: 383ms	remaining: 135ms
74:	learn: 15.0287076	total: 388ms	remaining: 129ms
75:	learn: 14.9530572	total: 393ms	remaining: 124ms
76:	learn: 14.8965517	total: 397ms	remaining: 119ms
77:	learn: 14.8125426	total: 402ms	remaining: 113ms
78:	learn: 14.7435359	total: 411ms	remaining: 109ms
79:	learn: 14.6963163	total: 415ms	remaining: 104ms
80:	learn: 14.6200060	total: 419ms	remaining: 98.3ms
81:	learn: 14.5707760	total: 424ms	remaining: 93ms
82:	learn: 14.5053651	total: 428ms	remaining: 87.8ms
83:	learn: 14.4115458	total: 433ms	remaining: 82.5ms
84:	learn: 14.3117159	total: 441ms	remaining: 77.8ms
85:	learn: 14.2511326	total: 448ms	remaining: 72.9ms
86:	learn: 14.1372486	total: 455ms	remaining: 67.9ms
87:	learn: 14.0992301	total: 461ms	remaining: 62.9ms
88:	learn: 14.0228331	total: 466ms	remaining: 57.6ms
89:	learn: 13.9249836	total: 471ms	remaining: 52.4ms
90:	learn: 13.8679364	total: 479ms	remaining: 47.3ms
91:	learn: 13.8405578	total: 484ms	remaining: 42ms
92:	learn: 13.7711325	total: 489ms	remaining: 36.8ms
93:	learn: 13.7357019	total: 494ms	remaining: 31.5ms
94:	learn: 13.6735271	total: 499ms	remaining: 26.3ms
95:	learn: 13.5682393	total: 504ms	remaining: 21ms
96:	learn: 13.5342610	total: 510ms	remaining: 15.8ms
97:	learn: 13.4710034	total: 515ms	remaining: 10.5ms
98:	learn: 13.4022402	total: 520ms	remaining: 5.25ms
99:	learn: 13.3351238	total: 525ms	remaining: 0us
0:	learn: 42.9181702	total: 5.58ms	remaining: 553ms
1:	learn: 42.0286736	total: 10.1ms	remaining: 496ms
2:	learn: 41.2764568	total: 14.6ms	remaining: 471ms
3:	learn: 40.4721918	total: 19.1ms	remaining: 457ms
4:	learn: 39.8518928	total: 23.8ms	remaining: 452ms
5:	learn: 39.2645479	total: 28.3ms	remaining: 443ms
6:	learn: 38.4453704	total: 32.6ms	remaining: 434ms
7:	learn: 37.7122059	total: 36.9ms	remaining: 424ms
8:	learn: 36.9185796	total: 41.6ms	remaining: 420ms
9:	learn: 36.1668427	total: 46.1ms	remaining: 415ms
10:	learn: 35.5639029	total: 50.7ms	remaining: 410ms
11:	learn: 34.7724193	total: 55.6ms	remaining: 408ms
12:	learn: 34.3053433	total: 60.3ms	remaining: 403ms
13:	learn: 33.6561327	total: 61.6ms	remaining: 378ms
14:	learn: 33.0134042	total: 66.3ms	remaining: 376ms
15:	learn: 32.4483300	total: 71.4ms	remaining: 375ms
16:	learn: 31.8581144	total: 76.1ms	remaining: 371ms
17:	learn: 31.2858301	total: 80.7ms	remaining: 368ms
18:	learn: 30.8483018	total: 86ms	remaining: 367ms
19:	learn: 30.4174622	total: 91.2ms	remaining: 365ms
20:	learn: 29.8994411	total: 96.4ms	remaining: 363ms
21:	learn: 29.5045355	total: 105ms	remaining: 371ms
22:	learn: 28.9923519	total: 113ms	remaining: 379ms
23:	learn: 28.4255717	total: 121ms	remaining: 382ms
24:	learn: 28.0283139	total: 126ms	remaining: 379ms
25:	learn: 27.7434814	total: 133ms	remaining: 378ms
26:	learn: 27.2770731	total: 138ms	remaining: 372ms
27:	learn: 26.8928270	total: 143ms	remaining: 368ms
28:	learn: 26.4282671	total: 148ms	remaining: 362ms
29:	learn: 26.0272764	total: 153ms	remaining: 356ms
30:	learn: 25.7579312	total: 158ms	remaining: 351ms
31:	learn: 25.4542434	total: 163ms	remaining: 346ms
32:	learn: 25.1232564	total: 168ms	remaining: 341ms
33:	learn: 24.8110795	total: 173ms	remaining: 335ms
34:	learn: 24.5077579	total: 178ms	remaining: 331ms
35:	learn: 24.1909000	total: 183ms	remaining: 325ms
36:	learn: 23.8719468	total: 187ms	remaining: 319ms
37:	learn: 23.5764366	total: 189ms	remaining: 308ms
38:	learn: 23.3468086	total: 194ms	remaining: 303ms
39:	learn: 23.0908771	total: 198ms	remaining: 297ms
40:	learn: 22.8580876	total: 203ms	remaining: 292ms
41:	learn: 22.6060825	total: 207ms	remaining: 286ms
42:	learn: 22.4125407	total: 212ms	remaining: 281ms
43:	learn: 22.1990617	total: 216ms	remaining: 275ms
44:	learn: 21.9716164	total: 221ms	remaining: 270ms
45:	learn: 21.8360935	total: 225ms	remaining: 265ms
46:	learn: 21.6169256	total: 230ms	remaining: 259ms
47:	learn: 21.4620612	total: 234ms	remaining: 254ms
48:	learn: 21.2894194	total: 239ms	remaining: 248ms
49:	learn: 21.1066266	total: 243ms	remaining: 243ms
50:	learn: 20.9484898	total: 248ms	remaining: 238ms
51:	learn: 20.7195338	total: 253ms	remaining: 233ms
52:	learn: 20.4899740	total: 258ms	remaining: 228ms
53:	learn: 20.3356583	total: 262ms	remaining: 224ms
54:	learn: 20.0754393	total: 267ms	remaining: 218ms
55:	learn: 19.9199159	total: 272ms	remaining: 214ms
56:	learn: 19.7761128	total: 277ms	remaining: 209ms
57:	learn: 19.6533060	total: 282ms	remaining: 204ms
58:	learn: 19.5113942	total: 288ms	remaining: 200ms
59:	learn: 19.3985022	total: 293ms	remaining: 195ms
60:	learn: 19.2683443	total: 298ms	remaining: 191ms
61:	learn: 19.1460824	total: 306ms	remaining: 188ms
62:	learn: 19.0042655	total: 327ms	remaining: 192ms
63:	learn: 18.8720873	total: 332ms	remaining: 187ms
64:	learn: 18.7183888	total: 337ms	remaining: 182ms
65:	learn: 18.5472360	total: 342ms	remaining: 176ms
66:	learn: 18.3976642	total: 348ms	remaining: 171ms
67:	learn: 18.2282851	total: 353ms	remaining: 166ms
68:	learn: 18.1469157	total: 358ms	remaining: 161ms
69:	learn: 18.0649494	total: 364ms	remaining: 156ms
70:	learn: 17.9485405	total: 370ms	remaining: 151ms
71:	learn: 17.8460261	total: 375ms	remaining: 146ms
72:	learn: 17.7679843	total: 381ms	remaining: 141ms
73:	learn: 17.5989290	total: 386ms	remaining: 136ms
74:	learn: 17.4381322	total: 392ms	remaining: 131ms
75:	learn: 17.3370886	total: 399ms	remaining: 126ms
76:	learn: 17.2675308	total: 404ms	remaining: 121ms
77:	learn: 17.1946430	total: 408ms	remaining: 115ms
78:	learn: 17.0923725	total: 413ms	remaining: 110ms
79:	learn: 17.0537265	total: 417ms	remaining: 104ms
80:	learn: 16.9456831	total: 422ms	remaining: 99ms
81:	learn: 16.8457353	total: 427ms	remaining: 93.6ms
82:	learn: 16.7469310	total: 431ms	remaining: 88.3ms
83:	learn: 16.6679953	total: 436ms	remaining: 83.1ms
84:	learn: 16.6274189	total: 441ms	remaining: 77.8ms
85:	learn: 16.5516530	total: 445ms	remaining: 72.5ms
86:	learn: 16.4886066	total: 450ms	remaining: 67.3ms
87:	learn: 16.3947859	total: 455ms	remaining: 62.1ms
88:	learn: 16.3406495	total: 460ms	remaining: 56.8ms
89:	learn: 16.3019195	total: 465ms	remaining: 51.6ms
90:	learn: 16.1860681	total: 470ms	remaining: 46.5ms
91:	learn: 16.1282812	total: 475ms	remaining: 41.3ms
92:	learn: 16.0303652	total: 479ms	remaining: 36.1ms
93:	learn: 15.9561692	total: 484ms	remaining: 30.9ms
94:	learn: 15.8733994	total: 489ms	remaining: 25.8ms
95:	learn: 15.8108833	total: 495ms	remaining: 20.6ms
96:	learn: 15.7606004	total: 505ms	remaining: 15.6ms
97:	learn: 15.6984664	total: 512ms	remaining: 10.5ms
98:	learn: 15.6223632	total: 518ms	remaining: 5.23ms
99:	learn: 15.5671136	total: 523ms	remaining: 0us
0:	learn: 46.4788614	total: 2.05ms	remaining: 203ms
1:	learn: 45.7608372	total: 7.25ms	remaining: 355ms
2:	learn: 44.8825004	total: 12.3ms	remaining: 397ms
3:	learn: 44.0362738	total: 16.6ms	remaining: 399ms
4:	learn: 43.2086374	total: 21.5ms	remaining: 409ms
5:	learn: 42.5835773	total: 26.5ms	remaining: 415ms
6:	learn: 41.9673269	total: 31ms	remaining: 412ms
7:	learn: 41.4748717	total: 35.6ms	remaining: 410ms
8:	learn: 40.7129183	total: 40.5ms	remaining: 410ms
9:	learn: 39.8900884	total: 45.4ms	remaining: 409ms
10:	learn: 39.4142193	total: 50.1ms	remaining: 406ms
11:	learn: 38.8645613	total: 54.6ms	remaining: 401ms
12:	learn: 38.2394731	total: 59.4ms	remaining: 398ms
13:	learn: 37.6834515	total: 64.4ms	remaining: 395ms
14:	learn: 37.0673507	total: 68.9ms	remaining: 391ms
15:	learn: 36.4728340	total: 73.7ms	remaining: 387ms
16:	learn: 36.0489086	total: 78.7ms	remaining: 384ms
17:	learn: 35.4744141	total: 83.4ms	remaining: 380ms
18:	learn: 35.0106021	total: 87.8ms	remaining: 374ms
19:	learn: 34.5586053	total: 92.8ms	remaining: 371ms
20:	learn: 34.1308223	total: 98ms	remaining: 369ms
21:	learn: 33.7701450	total: 103ms	remaining: 364ms
22:	learn: 33.4425444	total: 108ms	remaining: 360ms
23:	learn: 33.0296412	total: 112ms	remaining: 356ms
24:	learn: 32.6359803	total: 117ms	remaining: 352ms
25:	learn: 32.1846182	total: 123ms	remaining: 349ms
26:	learn: 31.7620230	total: 129ms	remaining: 349ms
27:	learn: 31.4669337	total: 136ms	remaining: 351ms
28:	learn: 31.0792062	total: 144ms	remaining: 353ms
29:	learn: 30.7970537	total: 153ms	remaining: 358ms
30:	learn: 30.4952215	total: 161ms	remaining: 359ms
31:	learn: 30.2845344	total: 167ms	remaining: 354ms
32:	learn: 29.9592732	total: 172ms	remaining: 350ms
33:	learn: 29.6798596	total: 177ms	remaining: 345ms
34:	learn: 29.3368905	total: 183ms	remaining: 340ms
35:	learn: 29.0621238	total: 188ms	remaining: 335ms
36:	learn: 28.6445375	total: 194ms	remaining: 330ms
37:	learn: 28.2418096	total: 199ms	remaining: 325ms
38:	learn: 27.9495390	total: 205ms	remaining: 320ms
39:	learn: 27.6958160	total: 210ms	remaining: 315ms
40:	learn: 27.4811189	total: 215ms	remaining: 309ms
41:	learn: 27.1494420	total: 219ms	remaining: 303ms
42:	learn: 26.8388873	total: 224ms	remaining: 297ms
43:	learn: 26.5721300	total: 229ms	remaining: 292ms
44:	learn: 26.3384738	total: 235ms	remaining: 287ms
45:	learn: 26.1894781	total: 241ms	remaining: 283ms
46:	learn: 25.9580198	total: 245ms	remaining: 277ms
47:	learn: 25.7897985	total: 250ms	remaining: 271ms
48:	learn: 25.6000271	total: 255ms	remaining: 265ms
49:	learn: 25.4130873	total: 259ms	remaining: 259ms
50:	learn: 25.1699061	total: 264ms	remaining: 254ms
51:	learn: 24.9324449	total: 269ms	remaining: 248ms
52:	learn: 24.7729152	total: 273ms	remaining: 242ms
53:	learn: 24.5026563	total: 278ms	remaining: 237ms
54:	learn: 24.2332627	total: 282ms	remaining: 231ms
55:	learn: 23.9611984	total: 287ms	remaining: 226ms
56:	learn: 23.7862603	total: 292ms	remaining: 220ms
57:	learn: 23.6318154	total: 297ms	remaining: 215ms
58:	learn: 23.4443306	total: 302ms	remaining: 210ms
59:	learn: 23.2581425	total: 307ms	remaining: 205ms
60:	learn: 23.0549901	total: 312ms	remaining: 199ms
61:	learn: 22.8666218	total: 319ms	remaining: 195ms
62:	learn: 22.6956739	total: 326ms	remaining: 191ms
63:	learn: 22.5068544	total: 335ms	remaining: 188ms
64:	learn: 22.1859147	total: 343ms	remaining: 184ms
65:	learn: 22.0462043	total: 348ms	remaining: 179ms
66:	learn: 21.9329563	total: 355ms	remaining: 175ms
67:	learn: 21.8029736	total: 359ms	remaining: 169ms
68:	learn: 21.6861091	total: 364ms	remaining: 164ms
69:	learn: 21.4838140	total: 369ms	remaining: 158ms
70:	learn: 21.3548921	total: 374ms	remaining: 153ms
71:	learn: 21.2244517	total: 378ms	remaining: 147ms
72:	learn: 21.0702958	total: 383ms	remaining: 142ms
73:	learn: 20.9224662	total: 388ms	remaining: 136ms
74:	learn: 20.8150357	total: 393ms	remaining: 131ms
75:	learn: 20.6962739	total: 397ms	remaining: 125ms
76:	learn: 20.5809258	total: 402ms	remaining: 120ms
77:	learn: 20.4735470	total: 407ms	remaining: 115ms
78:	learn: 20.3778167	total: 412ms	remaining: 109ms
79:	learn: 20.2211268	total: 416ms	remaining: 104ms
80:	learn: 20.1478678	total: 420ms	remaining: 98.6ms
81:	learn: 20.1032967	total: 424ms	remaining: 93.2ms
82:	learn: 19.9236300	total: 429ms	remaining: 87.9ms
83:	learn: 19.8151745	total: 434ms	remaining: 82.6ms
84:	learn: 19.7099856	total: 438ms	remaining: 77.3ms
85:	learn: 19.6264833	total: 443ms	remaining: 72.1ms
86:	learn: 19.4916361	total: 447ms	remaining: 66.8ms
87:	learn: 19.4050529	total: 452ms	remaining: 61.6ms
88:	learn: 19.2547065	total: 456ms	remaining: 56.4ms
89:	learn: 19.1610225	total: 460ms	remaining: 51.2ms
90:	learn: 19.0898958	total: 465ms	remaining: 46ms
91:	learn: 19.0489664	total: 470ms	remaining: 40.9ms
92:	learn: 18.9206240	total: 474ms	remaining: 35.7ms
93:	learn: 18.8636239	total: 478ms	remaining: 30.5ms
94:	learn: 18.8126187	total: 483ms	remaining: 25.4ms
95:	learn: 18.7579275	total: 487ms	remaining: 20.3ms
96:	learn: 18.6382753	total: 492ms	remaining: 15.2ms
97:	learn: 18.5397334	total: 497ms	remaining: 10.1ms
98:	learn: 18.4375951	total: 501ms	remaining: 5.06ms
99:	learn: 18.4033755	total: 506ms	remaining: 0us
0:	learn: 46.1068821	total: 2.36ms	remaining: 234ms
1:	learn: 45.3970261	total: 7.59ms	remaining: 372ms
2:	learn: 44.8732696	total: 12.9ms	remaining: 418ms
3:	learn: 44.1290184	total: 18.7ms	remaining: 450ms
4:	learn: 43.3290271	total: 24.3ms	remaining: 462ms
5:	learn: 42.7069090	total: 29.9ms	remaining: 468ms
6:	learn: 42.0572971	total: 35.6ms	remaining: 472ms
7:	learn: 41.4797924	total: 56ms	remaining: 644ms
8:	learn: 41.0023122	total: 60.7ms	remaining: 614ms
9:	learn: 40.5330570	total: 65ms	remaining: 585ms
10:	learn: 39.9726545	total: 69ms	remaining: 558ms
11:	learn: 39.3044053	total: 73.2ms	remaining: 537ms
12:	learn: 38.8169735	total: 77.6ms	remaining: 519ms
13:	learn: 38.2458761	total: 81.6ms	remaining: 501ms
14:	learn: 37.6280321	total: 85.7ms	remaining: 486ms
15:	learn: 37.0800610	total: 90.1ms	remaining: 473ms
16:	learn: 36.5489363	total: 94.7ms	remaining: 462ms
17:	learn: 36.0981456	total: 99.1ms	remaining: 452ms
18:	learn: 35.6956274	total: 104ms	remaining: 442ms
19:	learn: 35.1471999	total: 108ms	remaining: 432ms
20:	learn: 34.6235408	total: 113ms	remaining: 425ms
21:	learn: 34.1987018	total: 118ms	remaining: 418ms
22:	learn: 33.8985062	total: 123ms	remaining: 411ms
23:	learn: 33.3869017	total: 128ms	remaining: 406ms
24:	learn: 32.9100550	total: 133ms	remaining: 400ms
25:	learn: 32.4156208	total: 138ms	remaining: 394ms
26:	learn: 31.9320493	total: 143ms	remaining: 387ms
27:	learn: 31.5711468	total: 148ms	remaining: 382ms
28:	learn: 31.2404433	total: 153ms	remaining: 375ms
29:	learn: 30.8807946	total: 158ms	remaining: 369ms
30:	learn: 30.5948438	total: 163ms	remaining: 363ms
31:	learn: 30.3885560	total: 171ms	remaining: 363ms
32:	learn: 30.0625101	total: 178ms	remaining: 362ms
33:	learn: 29.9113114	total: 185ms	remaining: 359ms
34:	learn: 29.6983470	total: 190ms	remaining: 354ms
35:	learn: 29.4775849	total: 196ms	remaining: 349ms
36:	learn: 29.0538055	total: 201ms	remaining: 342ms
37:	learn: 28.6792318	total: 205ms	remaining: 335ms
38:	learn: 28.4231383	total: 209ms	remaining: 327ms
39:	learn: 28.1078565	total: 214ms	remaining: 320ms
40:	learn: 27.9079179	total: 218ms	remaining: 313ms
41:	learn: 27.6721506	total: 222ms	remaining: 307ms
42:	learn: 27.4228033	total: 226ms	remaining: 300ms
43:	learn: 27.1740534	total: 231ms	remaining: 294ms
44:	learn: 26.8584071	total: 235ms	remaining: 288ms
45:	learn: 26.6902083	total: 239ms	remaining: 281ms
46:	learn: 26.4855335	total: 244ms	remaining: 275ms
47:	learn: 26.2730822	total: 248ms	remaining: 269ms
48:	learn: 26.1058689	total: 253ms	remaining: 263ms
49:	learn: 25.8587318	total: 257ms	remaining: 257ms
50:	learn: 25.7558005	total: 261ms	remaining: 251ms
51:	learn: 25.5846925	total: 265ms	remaining: 245ms
52:	learn: 25.4249887	total: 270ms	remaining: 239ms
53:	learn: 25.1911054	total: 274ms	remaining: 233ms
54:	learn: 25.0544755	total: 278ms	remaining: 227ms
55:	learn: 24.8874006	total: 282ms	remaining: 222ms
56:	learn: 24.7736279	total: 286ms	remaining: 216ms
57:	learn: 24.6156255	total: 290ms	remaining: 210ms
58:	learn: 24.3962421	total: 295ms	remaining: 205ms
59:	learn: 24.2685129	total: 299ms	remaining: 199ms
60:	learn: 24.1874096	total: 303ms	remaining: 194ms
61:	learn: 24.0394287	total: 308ms	remaining: 188ms
62:	learn: 23.9281768	total: 312ms	remaining: 183ms
63:	learn: 23.7423900	total: 316ms	remaining: 178ms
64:	learn: 23.6015209	total: 320ms	remaining: 173ms
65:	learn: 23.4677943	total: 325ms	remaining: 167ms
66:	learn: 23.3215256	total: 329ms	remaining: 162ms
67:	learn: 23.1869360	total: 334ms	remaining: 157ms
68:	learn: 22.9691180	total: 338ms	remaining: 152ms
69:	learn: 22.7531657	total: 343ms	remaining: 147ms
70:	learn: 22.6133477	total: 347ms	remaining: 142ms
71:	learn: 22.3452758	total: 352ms	remaining: 137ms
72:	learn: 22.2065350	total: 357ms	remaining: 132ms
73:	learn: 22.1071155	total: 362ms	remaining: 127ms
74:	learn: 21.9740686	total: 366ms	remaining: 122ms
75:	learn: 21.8892033	total: 370ms	remaining: 117ms
76:	learn: 21.8267882	total: 375ms	remaining: 112ms
77:	learn: 21.7423479	total: 383ms	remaining: 108ms
78:	learn: 21.6242075	total: 391ms	remaining: 104ms
79:	learn: 21.5016910	total: 399ms	remaining: 99.9ms
80:	learn: 21.4806623	total: 400ms	remaining: 93.9ms
81:	learn: 21.3166637	total: 419ms	remaining: 92ms
82:	learn: 21.2222534	total: 424ms	remaining: 86.9ms
83:	learn: 21.1535708	total: 429ms	remaining: 81.8ms
84:	learn: 21.0858902	total: 435ms	remaining: 76.7ms
85:	learn: 20.9206003	total: 440ms	remaining: 71.6ms
86:	learn: 20.8674695	total: 445ms	remaining: 66.5ms
87:	learn: 20.8089875	total: 451ms	remaining: 61.4ms
88:	learn: 20.7085401	total: 456ms	remaining: 56.4ms
89:	learn: 20.5513468	total: 461ms	remaining: 51.2ms
90:	learn: 20.4586742	total: 466ms	remaining: 46.1ms
91:	learn: 20.3932149	total: 472ms	remaining: 41ms
92:	learn: 20.3000895	total: 477ms	remaining: 35.9ms
93:	learn: 20.2254009	total: 482ms	remaining: 30.8ms
94:	learn: 20.1750050	total: 487ms	remaining: 25.6ms
95:	learn: 20.0715579	total: 492ms	remaining: 20.5ms
96:	learn: 19.9920082	total: 497ms	remaining: 15.4ms
97:	learn: 19.9664401	total: 501ms	remaining: 10.2ms
98:	learn: 19.8689673	total: 506ms	remaining: 5.11ms
99:	learn: 19.7537356	total: 510ms	remaining: 0us
0:	learn: 46.8832143	total: 7.55ms	remaining: 748ms
1:	learn: 45.8700349	total: 14.3ms	remaining: 702ms
2:	learn: 45.0546867	total: 20.9ms	remaining: 675ms
3:	learn: 44.2829439	total: 25.7ms	remaining: 617ms
4:	learn: 43.4609042	total: 31.1ms	remaining: 591ms
5:	learn: 42.6754991	total: 36.2ms	remaining: 567ms
6:	learn: 41.9234935	total: 42.6ms	remaining: 566ms
7:	learn: 41.3987518	total: 47.1ms	remaining: 542ms
8:	learn: 40.6625066	total: 51.3ms	remaining: 519ms
9:	learn: 40.0029561	total: 55.6ms	remaining: 500ms
10:	learn: 39.3897033	total: 59.9ms	remaining: 485ms
11:	learn: 38.7741453	total: 64.5ms	remaining: 473ms
12:	learn: 38.1201100	total: 68.7ms	remaining: 460ms
13:	learn: 37.5129454	total: 72.7ms	remaining: 447ms
14:	learn: 37.2062206	total: 77.1ms	remaining: 437ms
15:	learn: 36.6831741	total: 81.2ms	remaining: 426ms
16:	learn: 36.2902788	total: 85.5ms	remaining: 418ms
17:	learn: 35.7639930	total: 90.1ms	remaining: 410ms
18:	learn: 35.2580953	total: 94.2ms	remaining: 402ms
19:	learn: 34.7809739	total: 98.9ms	remaining: 396ms
20:	learn: 34.1330433	total: 103ms	remaining: 389ms
21:	learn: 33.7302219	total: 108ms	remaining: 382ms
22:	learn: 33.3502495	total: 112ms	remaining: 375ms
23:	learn: 33.0067804	total: 116ms	remaining: 368ms
24:	learn: 32.6897855	total: 121ms	remaining: 362ms
25:	learn: 32.4361119	total: 125ms	remaining: 356ms
26:	learn: 32.1278981	total: 129ms	remaining: 350ms
27:	learn: 31.7863721	total: 134ms	remaining: 343ms
28:	learn: 31.4791450	total: 138ms	remaining: 338ms
29:	learn: 31.1760161	total: 142ms	remaining: 332ms
30:	learn: 30.9238888	total: 147ms	remaining: 326ms
31:	learn: 30.5500905	total: 151ms	remaining: 321ms
32:	learn: 30.3078126	total: 155ms	remaining: 315ms
33:	learn: 30.0480921	total: 159ms	remaining: 309ms
34:	learn: 29.8623884	total: 163ms	remaining: 303ms
35:	learn: 29.5991038	total: 167ms	remaining: 298ms
36:	learn: 29.4061161	total: 172ms	remaining: 292ms
37:	learn: 29.0269515	total: 176ms	remaining: 287ms
38:	learn: 28.8224959	total: 180ms	remaining: 282ms
39:	learn: 28.6417843	total: 185ms	remaining: 277ms
40:	learn: 28.3633368	total: 189ms	remaining: 272ms
41:	learn: 28.0200246	total: 194ms	remaining: 267ms
42:	learn: 27.7221254	total: 198ms	remaining: 262ms
43:	learn: 27.5105818	total: 202ms	remaining: 257ms
44:	learn: 27.3551010	total: 207ms	remaining: 253ms
45:	learn: 27.0787522	total: 211ms	remaining: 248ms
46:	learn: 26.8726317	total: 215ms	remaining: 243ms
47:	learn: 26.8003277	total: 219ms	remaining: 237ms
48:	learn: 26.5493785	total: 224ms	remaining: 234ms
49:	learn: 26.3699550	total: 229ms	remaining: 229ms
50:	learn: 26.1519631	total: 234ms	remaining: 225ms
51:	learn: 25.9277325	total: 239ms	remaining: 221ms
52:	learn: 25.7286035	total: 244ms	remaining: 216ms
53:	learn: 25.4999193	total: 249ms	remaining: 212ms
54:	learn: 25.3434703	total: 254ms	remaining: 208ms
55:	learn: 25.1497545	total: 262ms	remaining: 206ms
56:	learn: 24.9498143	total: 273ms	remaining: 206ms
57:	learn: 24.6509390	total: 281ms	remaining: 203ms
58:	learn: 24.5576144	total: 288ms	remaining: 200ms
59:	learn: 24.4265144	total: 293ms	remaining: 196ms
60:	learn: 24.3100706	total: 298ms	remaining: 191ms
61:	learn: 24.1727952	total: 304ms	remaining: 186ms
62:	learn: 24.0478558	total: 309ms	remaining: 182ms
63:	learn: 23.9124577	total: 315ms	remaining: 177ms
64:	learn: 23.7703718	total: 320ms	remaining: 172ms
65:	learn: 23.5975027	total: 326ms	remaining: 168ms
66:	learn: 23.4318077	total: 331ms	remaining: 163ms
67:	learn: 23.3099691	total: 336ms	remaining: 158ms
68:	learn: 23.1947982	total: 341ms	remaining: 153ms
69:	learn: 23.0260174	total: 347ms	remaining: 149ms
70:	learn: 22.8523100	total: 352ms	remaining: 144ms
71:	learn: 22.8028534	total: 358ms	remaining: 139ms
72:	learn: 22.6880658	total: 362ms	remaining: 134ms
73:	learn: 22.5956809	total: 367ms	remaining: 129ms
74:	learn: 22.4692932	total: 372ms	remaining: 124ms
75:	learn: 22.2863504	total: 377ms	remaining: 119ms
76:	learn: 22.1911237	total: 381ms	remaining: 114ms
77:	learn: 22.1098391	total: 385ms	remaining: 109ms
78:	learn: 22.0182738	total: 390ms	remaining: 104ms
79:	learn: 21.9306746	total: 395ms	remaining: 98.6ms
80:	learn: 21.7508233	total: 399ms	remaining: 93.6ms
81:	learn: 21.7108446	total: 404ms	remaining: 88.6ms
82:	learn: 21.5931852	total: 408ms	remaining: 83.6ms
83:	learn: 21.4480361	total: 412ms	remaining: 78.5ms
84:	learn: 21.3092119	total: 417ms	remaining: 73.5ms
85:	learn: 21.2605557	total: 421ms	remaining: 68.6ms
86:	learn: 21.1123597	total: 426ms	remaining: 63.7ms
87:	learn: 21.0115642	total: 431ms	remaining: 58.8ms
88:	learn: 20.9389040	total: 436ms	remaining: 53.9ms
89:	learn: 20.8300300	total: 441ms	remaining: 49ms
90:	learn: 20.7159733	total: 445ms	remaining: 44ms
91:	learn: 20.6282090	total: 450ms	remaining: 39.2ms
92:	learn: 20.5164529	total: 457ms	remaining: 34.4ms
93:	learn: 20.4692032	total: 465ms	remaining: 29.7ms
94:	learn: 20.3768451	total: 472ms	remaining: 24.8ms
95:	learn: 20.2808056	total: 478ms	remaining: 19.9ms
96:	learn: 20.2082089	total: 484ms	remaining: 15ms
97:	learn: 20.1698768	total: 489ms	remaining: 9.98ms
98:	learn: 20.1048816	total: 494ms	remaining: 4.99ms
99:	learn: 20.0086159	total: 499ms	remaining: 0us
0:	learn: 27.3776612	total: 21.6ms	remaining: 2.14s
1:	learn: 26.7619003	total: 40ms	remaining: 1.96s
2:	learn: 26.0057626	total: 58.6ms	remaining: 1.89s
3:	learn: 25.4280982	total: 76.6ms	remaining: 1.84s
4:	learn: 24.8347609	total: 95.6ms	remaining: 1.81s
5:	learn: 24.2526574	total: 116ms	remaining: 1.82s
6:	learn: 23.7478806	total: 143ms	remaining: 1.9s
7:	learn: 23.2677666	total: 166ms	remaining: 1.91s
8:	learn: 22.7564310	total: 187ms	remaining: 1.89s
9:	learn: 22.2873770	total: 207ms	remaining: 1.86s
10:	learn: 21.8088174	total: 227ms	remaining: 1.84s
11:	learn: 21.4086875	total: 247ms	remaining: 1.81s
12:	learn: 20.9489217	total: 266ms	remaining: 1.78s
13:	learn: 20.4585233	total: 283ms	remaining: 1.74s
14:	learn: 20.0177760	total: 303ms	remaining: 1.71s
15:	learn: 19.5981890	total: 324ms	remaining: 1.7s
16:	learn: 19.2041885	total: 351ms	remaining: 1.71s
17:	learn: 18.8422550	total: 372ms	remaining: 1.7s
18:	learn: 18.4774037	total: 392ms	remaining: 1.67s
19:	learn: 18.0931699	total: 410ms	remaining: 1.64s
20:	learn: 17.6856423	total: 429ms	remaining: 1.61s
21:	learn: 17.3394010	total: 447ms	remaining: 1.58s
22:	learn: 17.0165204	total: 465ms	remaining: 1.55s
23:	learn: 16.7728230	total: 483ms	remaining: 1.53s
24:	learn: 16.5020155	total: 501ms	remaining: 1.5s
25:	learn: 16.2110813	total: 520ms	remaining: 1.48s
26:	learn: 15.9439416	total: 540ms	remaining: 1.46s
27:	learn: 15.6605702	total: 568ms	remaining: 1.46s
28:	learn: 15.4180978	total: 591ms	remaining: 1.45s
29:	learn: 15.1463921	total: 613ms	remaining: 1.43s
30:	learn: 14.8961946	total: 633ms	remaining: 1.41s
31:	learn: 14.6763296	total: 653ms	remaining: 1.39s
32:	learn: 14.4161484	total: 676ms	remaining: 1.37s
33:	learn: 14.1748686	total: 697ms	remaining: 1.35s
34:	learn: 13.9722494	total: 719ms	remaining: 1.33s
35:	learn: 13.7632896	total: 740ms	remaining: 1.31s
36:	learn: 13.5572592	total: 768ms	remaining: 1.31s
37:	learn: 13.3896577	total: 789ms	remaining: 1.29s
38:	learn: 13.2796441	total: 810ms	remaining: 1.27s
39:	learn: 13.0896679	total: 831ms	remaining: 1.25s
40:	learn: 12.8898238	total: 850ms	remaining: 1.22s
41:	learn: 12.6824069	total: 871ms	remaining: 1.2s
42:	learn: 12.5459667	total: 892ms	remaining: 1.18s
43:	learn: 12.3859203	total: 911ms	remaining: 1.16s
44:	learn: 12.2099364	total: 934ms	remaining: 1.14s
45:	learn: 12.0649044	total: 957ms	remaining: 1.12s
46:	learn: 11.8934147	total: 989ms	remaining: 1.11s
47:	learn: 11.7212144	total: 1.01s	remaining: 1.1s
48:	learn: 11.5585360	total: 1.04s	remaining: 1.08s
49:	learn: 11.4204354	total: 1.06s	remaining: 1.06s
50:	learn: 11.3264427	total: 1.08s	remaining: 1.04s
51:	learn: 11.2063486	total: 1.1s	remaining: 1.02s
52:	learn: 11.0712206	total: 1.13s	remaining: 998ms
53:	learn: 10.9205088	total: 1.15s	remaining: 976ms
54:	learn: 10.8155412	total: 1.17s	remaining: 954ms
55:	learn: 10.7286854	total: 1.19s	remaining: 938ms
56:	learn: 10.6088466	total: 1.22s	remaining: 919ms
57:	learn: 10.4999885	total: 1.24s	remaining: 896ms
58:	learn: 10.4022194	total: 1.26s	remaining: 874ms
59:	learn: 10.3147130	total: 1.28s	remaining: 851ms
60:	learn: 10.2011489	total: 1.29s	remaining: 828ms
61:	learn: 10.1094372	total: 1.31s	remaining: 807ms
62:	learn: 10.0248970	total: 1.34s	remaining: 785ms
63:	learn: 9.9192710	total: 1.36s	remaining: 763ms
64:	learn: 9.8577360	total: 1.39s	remaining: 747ms
65:	learn: 9.7737103	total: 1.41s	remaining: 727ms
66:	learn: 9.6706617	total: 1.44s	remaining: 707ms
67:	learn: 9.6042727	total: 1.46s	remaining: 686ms
68:	learn: 9.5355377	total: 1.48s	remaining: 666ms
69:	learn: 9.4615216	total: 1.5s	remaining: 644ms
70:	learn: 9.3702045	total: 1.52s	remaining: 622ms
71:	learn: 9.3035392	total: 1.54s	remaining: 600ms
72:	learn: 9.2322686	total: 1.56s	remaining: 579ms
73:	learn: 9.1431916	total: 1.58s	remaining: 557ms
74:	learn: 9.0869466	total: 1.61s	remaining: 538ms
75:	learn: 9.0117390	total: 1.64s	remaining: 517ms
76:	learn: 8.9580443	total: 1.66s	remaining: 495ms
77:	learn: 8.8649939	total: 1.67s	remaining: 472ms
78:	learn: 8.7792713	total: 1.69s	remaining: 450ms
79:	learn: 8.7164606	total: 1.71s	remaining: 428ms
80:	learn: 8.6340559	total: 1.73s	remaining: 406ms
81:	learn: 8.5697104	total: 1.75s	remaining: 384ms
82:	learn: 8.5273758	total: 1.77s	remaining: 363ms
83:	learn: 8.4394788	total: 1.79s	remaining: 342ms
84:	learn: 8.3672415	total: 1.82s	remaining: 322ms
85:	learn: 8.2813444	total: 1.85s	remaining: 301ms
86:	learn: 8.1994983	total: 1.87s	remaining: 279ms
87:	learn: 8.1003577	total: 1.89s	remaining: 258ms
88:	learn: 8.0501976	total: 1.91s	remaining: 237ms
89:	learn: 7.9718830	total: 1.94s	remaining: 215ms
90:	learn: 7.9114534	total: 1.95s	remaining: 193ms
91:	learn: 7.8319856	total: 1.97s	remaining: 172ms
92:	learn: 7.7731246	total: 1.99s	remaining: 150ms
93:	learn: 7.7165850	total: 2.02s	remaining: 129ms
94:	learn: 7.6448498	total: 2.05s	remaining: 108ms
95:	learn: 7.5709919	total: 2.07s	remaining: 86.2ms
96:	learn: 7.5184082	total: 2.09s	remaining: 64.6ms
97:	learn: 7.4786866	total: 2.11s	remaining: 43ms
98:	learn: 7.4301201	total: 2.13s	remaining: 21.5ms
99:	learn: 7.3416932	total: 2.15s	remaining: 0us
0:	learn: 42.6391731	total: 21.6ms	remaining: 2.14s
1:	learn: 41.2755994	total: 40.7ms	remaining: 2s
2:	learn: 40.1418308	total: 71.2ms	remaining: 2.3s
3:	learn: 38.9707156	total: 93.9ms	remaining: 2.25s
4:	learn: 37.8723622	total: 117ms	remaining: 2.21s
5:	learn: 36.6981834	total: 138ms	remaining: 2.16s
6:	learn: 35.6210108	total: 161ms	remaining: 2.14s
7:	learn: 34.5154078	total: 180ms	remaining: 2.07s
8:	learn: 33.4581011	total: 199ms	remaining: 2.01s
9:	learn: 32.5872455	total: 217ms	remaining: 1.96s
10:	learn: 31.6311510	total: 236ms	remaining: 1.91s
11:	learn: 30.8222401	total: 256ms	remaining: 1.88s
12:	learn: 29.9305192	total: 278ms	remaining: 1.86s
13:	learn: 29.0742133	total: 306ms	remaining: 1.88s
14:	learn: 28.3687544	total: 327ms	remaining: 1.85s
15:	learn: 27.5730558	total: 345ms	remaining: 1.81s
16:	learn: 26.9376082	total: 364ms	remaining: 1.78s
17:	learn: 26.2254949	total: 385ms	remaining: 1.75s
18:	learn: 25.5974939	total: 404ms	remaining: 1.72s
19:	learn: 25.0097187	total: 424ms	remaining: 1.7s
20:	learn: 24.3722243	total: 444ms	remaining: 1.67s
21:	learn: 23.8249140	total: 465ms	remaining: 1.65s
22:	learn: 23.3953969	total: 487ms	remaining: 1.63s
23:	learn: 22.8726238	total: 511ms	remaining: 1.62s
24:	learn: 22.3407723	total: 538ms	remaining: 1.61s
25:	learn: 21.8360330	total: 560ms	remaining: 1.59s
26:	learn: 21.4050665	total: 562ms	remaining: 1.52s
27:	learn: 20.9389245	total: 585ms	remaining: 1.5s
28:	learn: 20.5166767	total: 607ms	remaining: 1.49s
29:	learn: 20.1190641	total: 627ms	remaining: 1.46s
30:	learn: 19.7189491	total: 645ms	remaining: 1.44s
31:	learn: 19.3748181	total: 665ms	remaining: 1.41s
32:	learn: 19.0116312	total: 685ms	remaining: 1.39s
33:	learn: 18.6982407	total: 705ms	remaining: 1.37s
34:	learn: 18.3109965	total: 724ms	remaining: 1.34s
35:	learn: 17.9620798	total: 753ms	remaining: 1.34s
36:	learn: 17.6396740	total: 776ms	remaining: 1.32s
37:	learn: 17.3596962	total: 798ms	remaining: 1.3s
38:	learn: 17.0107107	total: 820ms	remaining: 1.28s
39:	learn: 16.7000770	total: 841ms	remaining: 1.26s
40:	learn: 16.4406609	total: 852ms	remaining: 1.23s
41:	learn: 16.2482533	total: 871ms	remaining: 1.2s
42:	learn: 16.0039366	total: 893ms	remaining: 1.18s
43:	learn: 15.7538572	total: 915ms	remaining: 1.16s
44:	learn: 15.5095380	total: 937ms	remaining: 1.15s
45:	learn: 15.2678319	total: 963ms	remaining: 1.13s
46:	learn: 15.0494495	total: 991ms	remaining: 1.12s
47:	learn: 14.8347400	total: 1.01s	remaining: 1.1s
48:	learn: 14.6035398	total: 1.03s	remaining: 1.08s
49:	learn: 14.3913639	total: 1.06s	remaining: 1.06s
50:	learn: 14.1928022	total: 1.08s	remaining: 1.04s
51:	learn: 13.9985580	total: 1.1s	remaining: 1.01s
52:	learn: 13.8322220	total: 1.12s	remaining: 996ms
53:	learn: 13.6455937	total: 1.15s	remaining: 980ms
54:	learn: 13.4402019	total: 1.17s	remaining: 961ms
55:	learn: 13.2899163	total: 1.2s	remaining: 940ms
56:	learn: 13.1694614	total: 1.22s	remaining: 918ms
57:	learn: 13.0722892	total: 1.24s	remaining: 896ms
58:	learn: 12.9065251	total: 1.26s	remaining: 873ms
59:	learn: 12.6992885	total: 1.28s	remaining: 853ms
60:	learn: 12.5384562	total: 1.3s	remaining: 831ms
61:	learn: 12.4105591	total: 1.32s	remaining: 810ms
62:	learn: 12.2952504	total: 1.34s	remaining: 790ms
63:	learn: 12.1427365	total: 1.37s	remaining: 771ms
64:	learn: 11.9954361	total: 1.4s	remaining: 754ms
65:	learn: 11.8161234	total: 1.42s	remaining: 732ms
66:	learn: 11.6849978	total: 1.45s	remaining: 713ms
67:	learn: 11.5405300	total: 1.47s	remaining: 691ms
68:	learn: 11.3806762	total: 1.49s	remaining: 669ms
69:	learn: 11.2746848	total: 1.51s	remaining: 649ms
70:	learn: 11.1518256	total: 1.54s	remaining: 628ms
71:	learn: 11.0730779	total: 1.56s	remaining: 607ms
72:	learn: 10.9736725	total: 1.58s	remaining: 585ms
73:	learn: 10.8430563	total: 1.61s	remaining: 565ms
74:	learn: 10.7142220	total: 1.63s	remaining: 544ms
75:	learn: 10.6141640	total: 1.65s	remaining: 521ms
76:	learn: 10.5264853	total: 1.67s	remaining: 499ms
77:	learn: 10.3929390	total: 1.69s	remaining: 476ms
78:	learn: 10.3163176	total: 1.71s	remaining: 454ms
79:	learn: 10.2171240	total: 1.73s	remaining: 432ms
80:	learn: 10.1381738	total: 1.75s	remaining: 410ms
81:	learn: 10.0402437	total: 1.77s	remaining: 389ms
82:	learn: 9.9223565	total: 1.79s	remaining: 368ms
83:	learn: 9.8184057	total: 1.83s	remaining: 348ms
84:	learn: 9.7221978	total: 1.85s	remaining: 327ms
85:	learn: 9.6417031	total: 1.87s	remaining: 305ms
86:	learn: 9.5593969	total: 1.9s	remaining: 283ms
87:	learn: 9.4678992	total: 1.92s	remaining: 261ms
88:	learn: 9.3855757	total: 1.94s	remaining: 240ms
89:	learn: 9.2884031	total: 1.96s	remaining: 218ms
90:	learn: 9.2099382	total: 1.98s	remaining: 196ms
91:	learn: 9.1357061	total: 2s	remaining: 174ms
92:	learn: 9.0690328	total: 2.03s	remaining: 153ms
93:	learn: 8.9904694	total: 2.05s	remaining: 131ms
94:	learn: 8.9256893	total: 2.07s	remaining: 109ms
95:	learn: 8.8600084	total: 2.09s	remaining: 87.2ms
96:	learn: 8.8091154	total: 2.11s	remaining: 65.4ms
97:	learn: 8.7280528	total: 2.13s	remaining: 43.6ms
98:	learn: 8.6761440	total: 2.15s	remaining: 21.8ms
99:	learn: 8.6181192	total: 2.17s	remaining: 0us
0:	learn: 45.9988128	total: 24.8ms	remaining: 2.46s
1:	learn: 44.7653841	total: 47.4ms	remaining: 2.32s
2:	learn: 43.4693688	total: 70.1ms	remaining: 2.27s
3:	learn: 42.2495168	total: 92.3ms	remaining: 2.22s
4:	learn: 41.2273909	total: 111ms	remaining: 2.11s
5:	learn: 40.0623352	total: 130ms	remaining: 2.03s
6:	learn: 39.0139162	total: 148ms	remaining: 1.97s
7:	learn: 37.9905503	total: 168ms	remaining: 1.93s
8:	learn: 37.1460179	total: 189ms	remaining: 1.92s
9:	learn: 36.1321769	total: 215ms	remaining: 1.94s
10:	learn: 35.2434048	total: 236ms	remaining: 1.91s
11:	learn: 34.3919476	total: 255ms	remaining: 1.87s
12:	learn: 33.5464400	total: 275ms	remaining: 1.84s
13:	learn: 32.5752711	total: 293ms	remaining: 1.8s
14:	learn: 31.8573507	total: 314ms	remaining: 1.78s
15:	learn: 31.1481980	total: 333ms	remaining: 1.75s
16:	learn: 30.4578224	total: 352ms	remaining: 1.72s
17:	learn: 29.8404841	total: 374ms	remaining: 1.71s
18:	learn: 29.1314604	total: 395ms	remaining: 1.68s
19:	learn: 28.5024706	total: 425ms	remaining: 1.7s
20:	learn: 27.9368896	total: 449ms	remaining: 1.69s
21:	learn: 27.2136491	total: 472ms	remaining: 1.67s
22:	learn: 26.6230078	total: 494ms	remaining: 1.65s
23:	learn: 26.0604635	total: 516ms	remaining: 1.64s
24:	learn: 25.6309424	total: 537ms	remaining: 1.61s
25:	learn: 25.1761698	total: 556ms	remaining: 1.58s
26:	learn: 24.6368216	total: 575ms	remaining: 1.55s
27:	learn: 24.1028972	total: 597ms	remaining: 1.54s
28:	learn: 23.3990224	total: 622ms	remaining: 1.52s
29:	learn: 22.9088559	total: 648ms	remaining: 1.51s
30:	learn: 22.4793217	total: 668ms	remaining: 1.49s
31:	learn: 22.0592669	total: 687ms	remaining: 1.46s
32:	learn: 21.6715811	total: 707ms	remaining: 1.43s
33:	learn: 21.1907911	total: 728ms	remaining: 1.41s
34:	learn: 20.8045504	total: 749ms	remaining: 1.39s
35:	learn: 20.4670784	total: 769ms	remaining: 1.37s
36:	learn: 20.0165788	total: 787ms	remaining: 1.34s
37:	learn: 19.6859173	total: 809ms	remaining: 1.32s
38:	learn: 19.3641283	total: 836ms	remaining: 1.31s
39:	learn: 19.0291194	total: 858ms	remaining: 1.29s
40:	learn: 18.7204204	total: 879ms	remaining: 1.26s
41:	learn: 18.4000101	total: 901ms	remaining: 1.24s
42:	learn: 18.0910445	total: 923ms	remaining: 1.22s
43:	learn: 17.8354609	total: 944ms	remaining: 1.2s
44:	learn: 17.4982243	total: 967ms	remaining: 1.18s
45:	learn: 17.1895897	total: 986ms	remaining: 1.16s
46:	learn: 16.9440833	total: 1s	remaining: 1.13s
47:	learn: 16.6112102	total: 1.02s	remaining: 1.11s
48:	learn: 16.3320235	total: 1.04s	remaining: 1.09s
49:	learn: 16.0523610	total: 1.07s	remaining: 1.07s
50:	learn: 15.8256738	total: 1.09s	remaining: 1.05s
51:	learn: 15.5699393	total: 1.11s	remaining: 1.02s
52:	learn: 15.3531799	total: 1.13s	remaining: 1s
53:	learn: 15.1364230	total: 1.15s	remaining: 977ms
54:	learn: 15.0012063	total: 1.17s	remaining: 954ms
55:	learn: 14.7171740	total: 1.18s	remaining: 931ms
56:	learn: 14.5897576	total: 1.19s	remaining: 895ms
57:	learn: 14.3886878	total: 1.21s	remaining: 874ms
58:	learn: 14.1942115	total: 1.23s	remaining: 852ms
59:	learn: 14.0135398	total: 1.25s	remaining: 831ms
60:	learn: 13.8118263	total: 1.27s	remaining: 812ms
61:	learn: 13.6444047	total: 1.3s	remaining: 795ms
62:	learn: 13.4728078	total: 1.32s	remaining: 775ms
63:	learn: 13.3104934	total: 1.34s	remaining: 754ms
64:	learn: 13.1385144	total: 1.36s	remaining: 734ms
65:	learn: 13.0087777	total: 1.39s	remaining: 713ms
66:	learn: 12.8457835	total: 1.4s	remaining: 692ms
67:	learn: 12.6975263	total: 1.42s	remaining: 670ms
68:	learn: 12.5582839	total: 1.45s	remaining: 650ms
69:	learn: 12.4210776	total: 1.47s	remaining: 629ms
70:	learn: 12.2737286	total: 1.49s	remaining: 610ms
71:	learn: 12.1587075	total: 1.51s	remaining: 588ms
72:	learn: 12.0323022	total: 1.53s	remaining: 568ms
73:	learn: 11.8667900	total: 1.55s	remaining: 546ms
74:	learn: 11.6990385	total: 1.57s	remaining: 524ms
75:	learn: 11.5755058	total: 1.59s	remaining: 502ms
76:	learn: 11.4954152	total: 1.61s	remaining: 481ms
77:	learn: 11.3827464	total: 1.63s	remaining: 460ms
78:	learn: 11.2924968	total: 1.65s	remaining: 439ms
79:	learn: 11.1938217	total: 1.67s	remaining: 418ms
80:	learn: 11.0766477	total: 1.7s	remaining: 399ms
81:	learn: 10.9824487	total: 1.73s	remaining: 380ms
82:	learn: 10.8707168	total: 1.75s	remaining: 359ms
83:	learn: 10.7746205	total: 1.77s	remaining: 338ms
84:	learn: 10.6738461	total: 1.8s	remaining: 317ms
85:	learn: 10.5871227	total: 1.82s	remaining: 297ms
86:	learn: 10.4566607	total: 1.84s	remaining: 275ms
87:	learn: 10.3506633	total: 1.86s	remaining: 254ms
88:	learn: 10.2104644	total: 1.88s	remaining: 233ms
89:	learn: 10.0965839	total: 1.91s	remaining: 213ms
90:	learn: 9.9802927	total: 1.94s	remaining: 191ms
91:	learn: 9.9195276	total: 1.96s	remaining: 170ms
92:	learn: 9.8559698	total: 1.98s	remaining: 149ms
93:	learn: 9.7396780	total: 2s	remaining: 128ms
94:	learn: 9.6945725	total: 2.02s	remaining: 106ms
95:	learn: 9.5897565	total: 2.04s	remaining: 85ms
96:	learn: 9.5012011	total: 2.06s	remaining: 63.7ms
97:	learn: 9.4123715	total: 2.08s	remaining: 42.4ms
98:	learn: 9.3288366	total: 2.1s	remaining: 21.2ms
99:	learn: 9.2648715	total: 2.13s	remaining: 0us
0:	learn: 45.5336925	total: 21.4ms	remaining: 2.12s
1:	learn: 44.2714175	total: 42.8ms	remaining: 2.1s
2:	learn: 43.1477944	total: 62.5ms	remaining: 2.02s
3:	learn: 41.9891776	total: 82.3ms	remaining: 1.98s
4:	learn: 41.0638986	total: 104ms	remaining: 1.98s
5:	learn: 39.9800801	total: 125ms	remaining: 1.96s
6:	learn: 38.9048061	total: 154ms	remaining: 2.05s
7:	learn: 38.0749429	total: 177ms	remaining: 2.03s
8:	learn: 37.3966644	total: 198ms	remaining: 2s
9:	learn: 36.4671331	total: 218ms	remaining: 1.96s
10:	learn: 35.6649217	total: 237ms	remaining: 1.92s
11:	learn: 34.8793657	total: 258ms	remaining: 1.89s
12:	learn: 34.0737401	total: 276ms	remaining: 1.85s
13:	learn: 33.2560999	total: 295ms	remaining: 1.81s
14:	learn: 32.4184623	total: 317ms	remaining: 1.8s
15:	learn: 31.6803206	total: 341ms	remaining: 1.79s
16:	learn: 30.9276344	total: 371ms	remaining: 1.81s
17:	learn: 30.3590041	total: 393ms	remaining: 1.79s
18:	learn: 29.7789888	total: 416ms	remaining: 1.77s
19:	learn: 29.1098261	total: 438ms	remaining: 1.75s
20:	learn: 28.4824889	total: 460ms	remaining: 1.73s
21:	learn: 27.9675744	total: 482ms	remaining: 1.71s
22:	learn: 27.4793215	total: 502ms	remaining: 1.68s
23:	learn: 26.8920542	total: 522ms	remaining: 1.65s
24:	learn: 26.2736657	total: 550ms	remaining: 1.65s
25:	learn: 25.6908003	total: 573ms	remaining: 1.63s
26:	learn: 25.1288844	total: 594ms	remaining: 1.61s
27:	learn: 24.6933320	total: 616ms	remaining: 1.58s
28:	learn: 24.1372567	total: 638ms	remaining: 1.56s
29:	learn: 23.7103515	total: 657ms	remaining: 1.53s
30:	learn: 23.1647499	total: 678ms	remaining: 1.51s
31:	learn: 22.7009216	total: 699ms	remaining: 1.49s
32:	learn: 22.2792229	total: 720ms	remaining: 1.46s
33:	learn: 21.8004244	total: 743ms	remaining: 1.44s
34:	learn: 21.3578361	total: 772ms	remaining: 1.43s
35:	learn: 21.0262832	total: 801ms	remaining: 1.42s
36:	learn: 20.5787502	total: 823ms	remaining: 1.4s
37:	learn: 20.3083055	total: 847ms	remaining: 1.38s
38:	learn: 19.9902529	total: 871ms	remaining: 1.36s
39:	learn: 19.6059571	total: 891ms	remaining: 1.34s
40:	learn: 19.3890959	total: 910ms	remaining: 1.31s
41:	learn: 19.0549255	total: 930ms	remaining: 1.28s
42:	learn: 18.7283215	total: 951ms	remaining: 1.26s
43:	learn: 18.4448725	total: 975ms	remaining: 1.24s
44:	learn: 18.1578001	total: 1s	remaining: 1.22s
45:	learn: 17.8777474	total: 1.02s	remaining: 1.2s
46:	learn: 17.6428221	total: 1.04s	remaining: 1.17s
47:	learn: 17.3887752	total: 1.06s	remaining: 1.15s
48:	learn: 17.1475761	total: 1.08s	remaining: 1.12s
49:	learn: 16.9064363	total: 1.09s	remaining: 1.09s
50:	learn: 16.6414681	total: 1.11s	remaining: 1.07s
51:	learn: 16.4549974	total: 1.13s	remaining: 1.04s
52:	learn: 16.2617558	total: 1.15s	remaining: 1.02s
53:	learn: 16.0258241	total: 1.17s	remaining: 998ms
54:	learn: 15.7694686	total: 1.19s	remaining: 975ms
55:	learn: 15.5449602	total: 1.22s	remaining: 962ms
56:	learn: 15.3515330	total: 1.25s	remaining: 942ms
57:	learn: 15.1120403	total: 1.27s	remaining: 921ms
58:	learn: 14.9131368	total: 1.29s	remaining: 899ms
59:	learn: 14.8021921	total: 1.32s	remaining: 878ms
60:	learn: 14.6564259	total: 1.34s	remaining: 857ms
61:	learn: 14.5253260	total: 1.36s	remaining: 833ms
62:	learn: 14.3975427	total: 1.38s	remaining: 809ms
63:	learn: 14.3060204	total: 1.4s	remaining: 786ms
64:	learn: 14.1283681	total: 1.42s	remaining: 765ms
65:	learn: 14.0159063	total: 1.44s	remaining: 744ms
66:	learn: 13.8712541	total: 1.46s	remaining: 721ms
67:	learn: 13.7852998	total: 1.48s	remaining: 698ms
68:	learn: 13.6790164	total: 1.5s	remaining: 674ms
69:	learn: 13.5253745	total: 1.52s	remaining: 651ms
70:	learn: 13.3959663	total: 1.54s	remaining: 628ms
71:	learn: 13.2062955	total: 1.56s	remaining: 605ms
72:	learn: 13.0788709	total: 1.57s	remaining: 582ms
73:	learn: 12.9513184	total: 1.59s	remaining: 560ms
74:	learn: 12.8198556	total: 1.61s	remaining: 538ms
75:	learn: 12.7137549	total: 1.64s	remaining: 517ms
76:	learn: 12.6243477	total: 1.67s	remaining: 499ms
77:	learn: 12.5241564	total: 1.69s	remaining: 477ms
78:	learn: 12.4445782	total: 1.71s	remaining: 455ms
79:	learn: 12.3816501	total: 1.73s	remaining: 434ms
80:	learn: 12.2846914	total: 1.75s	remaining: 412ms
81:	learn: 12.1419498	total: 1.77s	remaining: 390ms
82:	learn: 12.0846494	total: 1.79s	remaining: 367ms
83:	learn: 11.9851484	total: 1.81s	remaining: 345ms
84:	learn: 11.8905738	total: 1.83s	remaining: 323ms
85:	learn: 11.7718790	total: 1.85s	remaining: 302ms
86:	learn: 11.6854413	total: 1.88s	remaining: 281ms
87:	learn: 11.6206110	total: 1.9s	remaining: 259ms
88:	learn: 11.5376098	total: 1.92s	remaining: 237ms
89:	learn: 11.4235068	total: 1.94s	remaining: 215ms
90:	learn: 11.3477955	total: 1.95s	remaining: 193ms
91:	learn: 11.2663772	total: 1.97s	remaining: 172ms
92:	learn: 11.1916556	total: 1.99s	remaining: 150ms
93:	learn: 11.0921504	total: 2.01s	remaining: 128ms
94:	learn: 10.9622375	total: 2.03s	remaining: 107ms
95:	learn: 10.8882085	total: 2.05s	remaining: 85.3ms
96:	learn: 10.8086218	total: 2.07s	remaining: 63.9ms
97:	learn: 10.7552220	total: 2.1s	remaining: 42.8ms
98:	learn: 10.6929666	total: 2.12s	remaining: 21.4ms
99:	learn: 10.6200033	total: 2.14s	remaining: 0us
0:	learn: 46.3366259	total: 18.4ms	remaining: 1.83s
1:	learn: 45.2205278	total: 36.5ms	remaining: 1.79s
2:	learn: 43.9887404	total: 56.2ms	remaining: 1.82s
3:	learn: 42.8240666	total: 77.8ms	remaining: 1.87s
4:	learn: 41.6086617	total: 97.9ms	remaining: 1.86s
5:	learn: 40.5606446	total: 128ms	remaining: 2.01s
6:	learn: 39.6241326	total: 148ms	remaining: 1.96s
7:	learn: 39.0016852	total: 165ms	remaining: 1.9s
8:	learn: 37.8501670	total: 184ms	remaining: 1.86s
9:	learn: 37.0215474	total: 203ms	remaining: 1.83s
10:	learn: 36.0215020	total: 222ms	remaining: 1.79s
11:	learn: 35.2421331	total: 241ms	remaining: 1.77s
12:	learn: 34.5416837	total: 259ms	remaining: 1.74s
13:	learn: 33.7787649	total: 279ms	remaining: 1.71s
14:	learn: 32.9860883	total: 303ms	remaining: 1.72s
15:	learn: 32.2123752	total: 328ms	remaining: 1.72s
16:	learn: 31.3564648	total: 352ms	remaining: 1.72s
17:	learn: 30.7859979	total: 373ms	remaining: 1.7s
18:	learn: 30.1443515	total: 396ms	remaining: 1.69s
19:	learn: 29.4880724	total: 418ms	remaining: 1.67s
20:	learn: 28.9635727	total: 441ms	remaining: 1.66s
21:	learn: 28.4853342	total: 461ms	remaining: 1.63s
22:	learn: 27.9796348	total: 481ms	remaining: 1.61s
23:	learn: 27.4360487	total: 501ms	remaining: 1.59s
24:	learn: 26.8685214	total: 525ms	remaining: 1.57s
25:	learn: 26.1769206	total: 551ms	remaining: 1.57s
26:	learn: 25.7146048	total: 577ms	remaining: 1.56s
27:	learn: 25.2614850	total: 596ms	remaining: 1.53s
28:	learn: 24.6626472	total: 615ms	remaining: 1.51s
29:	learn: 24.2501259	total: 636ms	remaining: 1.48s
30:	learn: 23.7892661	total: 657ms	remaining: 1.46s
31:	learn: 23.2729078	total: 679ms	remaining: 1.44s
32:	learn: 22.8969731	total: 700ms	remaining: 1.42s
33:	learn: 22.4567570	total: 722ms	remaining: 1.4s
34:	learn: 22.0569858	total: 742ms	remaining: 1.38s
35:	learn: 21.7317775	total: 763ms	remaining: 1.36s
36:	learn: 21.3890971	total: 795ms	remaining: 1.35s
37:	learn: 21.0664504	total: 820ms	remaining: 1.34s
38:	learn: 20.7379659	total: 840ms	remaining: 1.31s
39:	learn: 20.4423699	total: 863ms	remaining: 1.29s
40:	learn: 20.1526720	total: 887ms	remaining: 1.28s
41:	learn: 19.8706547	total: 909ms	remaining: 1.25s
42:	learn: 19.5139134	total: 928ms	remaining: 1.23s
43:	learn: 19.3495951	total: 949ms	remaining: 1.21s
44:	learn: 19.1314757	total: 971ms	remaining: 1.19s
45:	learn: 18.7971159	total: 995ms	remaining: 1.17s
46:	learn: 18.5447051	total: 1.02s	remaining: 1.15s
47:	learn: 18.2328785	total: 1.04s	remaining: 1.13s
48:	learn: 17.9622938	total: 1.06s	remaining: 1.11s
49:	learn: 17.7264205	total: 1.08s	remaining: 1.08s
50:	learn: 17.4530592	total: 1.1s	remaining: 1.06s
51:	learn: 17.2236644	total: 1.12s	remaining: 1.04s
52:	learn: 17.0122792	total: 1.15s	remaining: 1.02s
53:	learn: 16.7599064	total: 1.16s	remaining: 992ms
54:	learn: 16.5146699	total: 1.19s	remaining: 972ms
55:	learn: 16.2531414	total: 1.21s	remaining: 951ms
56:	learn: 16.0997208	total: 1.24s	remaining: 935ms
57:	learn: 15.8452412	total: 1.26s	remaining: 915ms
58:	learn: 15.6294900	total: 1.29s	remaining: 894ms
59:	learn: 15.4564548	total: 1.31s	remaining: 873ms
60:	learn: 15.2978533	total: 1.33s	remaining: 852ms
61:	learn: 15.0976912	total: 1.35s	remaining: 830ms
62:	learn: 14.9094446	total: 1.37s	remaining: 807ms
63:	learn: 14.7415094	total: 1.39s	remaining: 784ms
64:	learn: 14.6123806	total: 1.42s	remaining: 763ms
65:	learn: 14.4744916	total: 1.44s	remaining: 743ms
66:	learn: 14.3212717	total: 1.47s	remaining: 723ms
67:	learn: 14.1768047	total: 1.49s	remaining: 701ms
68:	learn: 14.0387344	total: 1.51s	remaining: 678ms
69:	learn: 13.8987579	total: 1.53s	remaining: 655ms
70:	learn: 13.7825740	total: 1.55s	remaining: 633ms
71:	learn: 13.6818548	total: 1.57s	remaining: 611ms
72:	learn: 13.5356993	total: 1.59s	remaining: 589ms
73:	learn: 13.4408704	total: 1.61s	remaining: 567ms
74:	learn: 13.2992218	total: 1.63s	remaining: 545ms
75:	learn: 13.1547092	total: 1.66s	remaining: 525ms
76:	learn: 13.0800189	total: 1.69s	remaining: 504ms
77:	learn: 12.9434711	total: 1.71s	remaining: 481ms
78:	learn: 12.8327325	total: 1.73s	remaining: 460ms
79:	learn: 12.7238946	total: 1.75s	remaining: 438ms
80:	learn: 12.6229528	total: 1.77s	remaining: 416ms
81:	learn: 12.5216078	total: 1.79s	remaining: 393ms
82:	learn: 12.4182254	total: 1.81s	remaining: 371ms
83:	learn: 12.3097978	total: 1.83s	remaining: 349ms
84:	learn: 12.1852056	total: 1.85s	remaining: 327ms
85:	learn: 12.0739627	total: 1.88s	remaining: 306ms
86:	learn: 11.9475583	total: 1.9s	remaining: 284ms
87:	learn: 11.8403806	total: 1.92s	remaining: 262ms
88:	learn: 11.7294124	total: 1.94s	remaining: 240ms
89:	learn: 11.6395689	total: 1.96s	remaining: 218ms
90:	learn: 11.5510643	total: 1.98s	remaining: 196ms
91:	learn: 11.4455301	total: 2s	remaining: 174ms
92:	learn: 11.3368661	total: 2.02s	remaining: 152ms
93:	learn: 11.2270796	total: 2.04s	remaining: 130ms
94:	learn: 11.1168414	total: 2.07s	remaining: 109ms
95:	learn: 11.0310985	total: 2.09s	remaining: 87.1ms
96:	learn: 10.9735185	total: 2.11s	remaining: 65.4ms
97:	learn: 10.8575874	total: 2.14s	remaining: 43.6ms
98:	learn: 10.7816173	total: 2.16s	remaining: 21.8ms
99:	learn: 10.7111737	total: 2.18s	remaining: 0us
0:	learn: 27.6506730	total: 5.24ms	remaining: 519ms
1:	learn: 27.1638793	total: 9.38ms	remaining: 460ms
2:	learn: 26.8000665	total: 14ms	remaining: 453ms
3:	learn: 26.4256132	total: 18.9ms	remaining: 453ms
4:	learn: 26.0088351	total: 23.7ms	remaining: 450ms
5:	learn: 25.7558298	total: 28.5ms	remaining: 446ms
6:	learn: 25.3380711	total: 33.3ms	remaining: 442ms
7:	learn: 25.0571611	total: 38.1ms	remaining: 438ms
8:	learn: 24.6790148	total: 42.6ms	remaining: 431ms
9:	learn: 24.3600941	total: 47.3ms	remaining: 425ms
10:	learn: 24.1105667	total: 55.1ms	remaining: 445ms
11:	learn: 23.7736542	total: 62.5ms	remaining: 459ms
12:	learn: 23.5824429	total: 69.5ms	remaining: 465ms
13:	learn: 23.2658303	total: 75.3ms	remaining: 463ms
14:	learn: 23.0061886	total: 81.4ms	remaining: 462ms
15:	learn: 22.8060389	total: 86.3ms	remaining: 453ms
16:	learn: 22.5899735	total: 90.9ms	remaining: 444ms
17:	learn: 22.3625048	total: 95.8ms	remaining: 436ms
18:	learn: 22.0706477	total: 100ms	remaining: 427ms
19:	learn: 21.8739394	total: 105ms	remaining: 419ms
20:	learn: 21.6143650	total: 109ms	remaining: 411ms
21:	learn: 21.4571623	total: 114ms	remaining: 404ms
22:	learn: 21.2395769	total: 119ms	remaining: 397ms
23:	learn: 20.9801795	total: 123ms	remaining: 390ms
24:	learn: 20.8036808	total: 128ms	remaining: 384ms
25:	learn: 20.6387539	total: 133ms	remaining: 378ms
26:	learn: 20.4401427	total: 137ms	remaining: 371ms
27:	learn: 20.2879575	total: 142ms	remaining: 365ms
28:	learn: 20.0538664	total: 146ms	remaining: 359ms
29:	learn: 19.8363102	total: 151ms	remaining: 352ms
30:	learn: 19.7015446	total: 155ms	remaining: 346ms
31:	learn: 19.5483114	total: 160ms	remaining: 339ms
32:	learn: 19.4163053	total: 164ms	remaining: 334ms
33:	learn: 19.2880625	total: 169ms	remaining: 327ms
34:	learn: 19.1303389	total: 173ms	remaining: 321ms
35:	learn: 18.9237448	total: 178ms	remaining: 316ms
36:	learn: 18.8142925	total: 182ms	remaining: 310ms
37:	learn: 18.6994696	total: 187ms	remaining: 304ms
38:	learn: 18.5629211	total: 191ms	remaining: 299ms
39:	learn: 18.4600917	total: 196ms	remaining: 294ms
40:	learn: 18.3567139	total: 200ms	remaining: 288ms
41:	learn: 18.2120527	total: 205ms	remaining: 283ms
42:	learn: 18.0688062	total: 209ms	remaining: 278ms
43:	learn: 17.9250181	total: 214ms	remaining: 272ms
44:	learn: 17.8399138	total: 218ms	remaining: 267ms
45:	learn: 17.6720713	total: 223ms	remaining: 262ms
46:	learn: 17.5273091	total: 228ms	remaining: 257ms
47:	learn: 17.4232814	total: 233ms	remaining: 252ms
48:	learn: 17.2957579	total: 238ms	remaining: 247ms
49:	learn: 17.1892874	total: 242ms	remaining: 242ms
50:	learn: 17.0490355	total: 247ms	remaining: 238ms
51:	learn: 16.9666450	total: 252ms	remaining: 233ms
52:	learn: 16.8600056	total: 261ms	remaining: 231ms
53:	learn: 16.7542588	total: 271ms	remaining: 230ms
54:	learn: 16.6316077	total: 278ms	remaining: 227ms
55:	learn: 16.5588112	total: 286ms	remaining: 225ms
56:	learn: 16.5010186	total: 292ms	remaining: 220ms
57:	learn: 16.4081540	total: 297ms	remaining: 215ms
58:	learn: 16.3040451	total: 302ms	remaining: 210ms
59:	learn: 16.1890564	total: 308ms	remaining: 205ms
60:	learn: 16.0977103	total: 313ms	remaining: 200ms
61:	learn: 15.9627607	total: 325ms	remaining: 199ms
62:	learn: 15.9022248	total: 330ms	remaining: 194ms
63:	learn: 15.8151881	total: 335ms	remaining: 189ms
64:	learn: 15.7353125	total: 340ms	remaining: 183ms
65:	learn: 15.6312897	total: 346ms	remaining: 178ms
66:	learn: 15.5330927	total: 352ms	remaining: 173ms
67:	learn: 15.4698681	total: 356ms	remaining: 168ms
68:	learn: 15.4108571	total: 361ms	remaining: 162ms
69:	learn: 15.3492945	total: 366ms	remaining: 157ms
70:	learn: 15.3036540	total: 371ms	remaining: 151ms
71:	learn: 15.2390833	total: 375ms	remaining: 146ms
72:	learn: 15.1556327	total: 380ms	remaining: 141ms
73:	learn: 15.1016315	total: 384ms	remaining: 135ms
74:	learn: 15.0287076	total: 389ms	remaining: 130ms
75:	learn: 14.9530572	total: 393ms	remaining: 124ms
76:	learn: 14.8965517	total: 397ms	remaining: 119ms
77:	learn: 14.8125426	total: 417ms	remaining: 118ms
78:	learn: 14.7435359	total: 422ms	remaining: 112ms
79:	learn: 14.6963163	total: 427ms	remaining: 107ms
80:	learn: 14.6200060	total: 432ms	remaining: 101ms
81:	learn: 14.5707760	total: 437ms	remaining: 95.8ms
82:	learn: 14.5053651	total: 442ms	remaining: 90.4ms
83:	learn: 14.4115458	total: 446ms	remaining: 85ms
84:	learn: 14.3117159	total: 454ms	remaining: 80.1ms
85:	learn: 14.2511326	total: 462ms	remaining: 75.2ms
86:	learn: 14.1372486	total: 468ms	remaining: 69.9ms
87:	learn: 14.0992301	total: 473ms	remaining: 64.5ms
88:	learn: 14.0228331	total: 478ms	remaining: 59ms
89:	learn: 13.9249836	total: 482ms	remaining: 53.6ms
90:	learn: 13.8679364	total: 486ms	remaining: 48.1ms
91:	learn: 13.8405578	total: 491ms	remaining: 42.7ms
92:	learn: 13.7711325	total: 495ms	remaining: 37.3ms
93:	learn: 13.7357019	total: 500ms	remaining: 31.9ms
94:	learn: 13.6735271	total: 504ms	remaining: 26.5ms
95:	learn: 13.5682393	total: 509ms	remaining: 21.2ms
96:	learn: 13.5342610	total: 513ms	remaining: 15.9ms
97:	learn: 13.4710034	total: 518ms	remaining: 10.6ms
98:	learn: 13.4022402	total: 522ms	remaining: 5.27ms
99:	learn: 13.3351238	total: 526ms	remaining: 0us
0:	learn: 42.9181702	total: 5.02ms	remaining: 497ms
1:	learn: 42.0286736	total: 9.59ms	remaining: 470ms
2:	learn: 41.2764568	total: 14.1ms	remaining: 455ms
3:	learn: 40.4721918	total: 18.6ms	remaining: 446ms
4:	learn: 39.8518928	total: 22.8ms	remaining: 434ms
5:	learn: 39.2645479	total: 27.4ms	remaining: 430ms
6:	learn: 38.4453704	total: 31.9ms	remaining: 424ms
7:	learn: 37.7122059	total: 36.6ms	remaining: 421ms
8:	learn: 36.9185796	total: 40.7ms	remaining: 411ms
9:	learn: 36.1668427	total: 45.2ms	remaining: 407ms
10:	learn: 35.5639029	total: 50ms	remaining: 405ms
11:	learn: 34.7724193	total: 54.4ms	remaining: 399ms
12:	learn: 34.3053433	total: 58.8ms	remaining: 394ms
13:	learn: 33.6561327	total: 60ms	remaining: 369ms
14:	learn: 33.0134042	total: 64.1ms	remaining: 363ms
15:	learn: 32.4483300	total: 69.1ms	remaining: 363ms
16:	learn: 31.8581144	total: 74ms	remaining: 361ms
17:	learn: 31.2858301	total: 78.6ms	remaining: 358ms
18:	learn: 30.8483018	total: 83.6ms	remaining: 356ms
19:	learn: 30.4174622	total: 88.4ms	remaining: 354ms
20:	learn: 29.8994411	total: 93.1ms	remaining: 350ms
21:	learn: 29.5045355	total: 98.1ms	remaining: 348ms
22:	learn: 28.9923519	total: 106ms	remaining: 355ms
23:	learn: 28.4255717	total: 115ms	remaining: 363ms
24:	learn: 28.0283139	total: 122ms	remaining: 367ms
25:	learn: 27.7434814	total: 130ms	remaining: 371ms
26:	learn: 27.2770731	total: 136ms	remaining: 367ms
27:	learn: 26.8928270	total: 141ms	remaining: 363ms
28:	learn: 26.4282671	total: 146ms	remaining: 358ms
29:	learn: 26.0272764	total: 156ms	remaining: 365ms
30:	learn: 25.7579312	total: 161ms	remaining: 359ms
31:	learn: 25.4542434	total: 167ms	remaining: 354ms
32:	learn: 25.1232564	total: 172ms	remaining: 349ms
33:	learn: 24.8110795	total: 177ms	remaining: 343ms
34:	learn: 24.5077579	total: 181ms	remaining: 337ms
35:	learn: 24.1909000	total: 186ms	remaining: 330ms
36:	learn: 23.8719468	total: 191ms	remaining: 325ms
37:	learn: 23.5764366	total: 192ms	remaining: 313ms
38:	learn: 23.3468086	total: 197ms	remaining: 308ms
39:	learn: 23.0908771	total: 202ms	remaining: 303ms
40:	learn: 22.8580876	total: 208ms	remaining: 299ms
41:	learn: 22.6060825	total: 213ms	remaining: 295ms
42:	learn: 22.4125407	total: 219ms	remaining: 290ms
43:	learn: 22.1990617	total: 223ms	remaining: 284ms
44:	learn: 21.9716164	total: 228ms	remaining: 278ms
45:	learn: 21.8360935	total: 232ms	remaining: 272ms
46:	learn: 21.6169256	total: 236ms	remaining: 267ms
47:	learn: 21.4620612	total: 241ms	remaining: 261ms
48:	learn: 21.2894194	total: 245ms	remaining: 255ms
49:	learn: 21.1066266	total: 250ms	remaining: 250ms
50:	learn: 20.9484898	total: 254ms	remaining: 244ms
51:	learn: 20.7195338	total: 260ms	remaining: 240ms
52:	learn: 20.4899740	total: 265ms	remaining: 235ms
53:	learn: 20.3356583	total: 271ms	remaining: 230ms
54:	learn: 20.0754393	total: 276ms	remaining: 226ms
55:	learn: 19.9199159	total: 281ms	remaining: 221ms
56:	learn: 19.7761128	total: 286ms	remaining: 216ms
57:	learn: 19.6533060	total: 291ms	remaining: 210ms
58:	learn: 19.5113942	total: 296ms	remaining: 206ms
59:	learn: 19.3985022	total: 304ms	remaining: 203ms
60:	learn: 19.2683443	total: 312ms	remaining: 200ms
61:	learn: 19.1460824	total: 319ms	remaining: 195ms
62:	learn: 19.0042655	total: 324ms	remaining: 190ms
63:	learn: 18.8720873	total: 330ms	remaining: 186ms
64:	learn: 18.7183888	total: 335ms	remaining: 180ms
65:	learn: 18.5472360	total: 339ms	remaining: 175ms
66:	learn: 18.3976642	total: 344ms	remaining: 169ms
67:	learn: 18.2282851	total: 348ms	remaining: 164ms
68:	learn: 18.1469157	total: 353ms	remaining: 158ms
69:	learn: 18.0649494	total: 357ms	remaining: 153ms
70:	learn: 17.9485405	total: 363ms	remaining: 148ms
71:	learn: 17.8460261	total: 368ms	remaining: 143ms
72:	learn: 17.7679843	total: 372ms	remaining: 138ms
73:	learn: 17.5989290	total: 377ms	remaining: 133ms
74:	learn: 17.4381322	total: 382ms	remaining: 127ms
75:	learn: 17.3370886	total: 387ms	remaining: 122ms
76:	learn: 17.2675308	total: 391ms	remaining: 117ms
77:	learn: 17.1946430	total: 396ms	remaining: 112ms
78:	learn: 17.0923725	total: 400ms	remaining: 106ms
79:	learn: 17.0537265	total: 405ms	remaining: 101ms
80:	learn: 16.9456831	total: 409ms	remaining: 95.9ms
81:	learn: 16.8457353	total: 413ms	remaining: 90.7ms
82:	learn: 16.7469310	total: 418ms	remaining: 85.5ms
83:	learn: 16.6679953	total: 422ms	remaining: 80.4ms
84:	learn: 16.6274189	total: 427ms	remaining: 75.3ms
85:	learn: 16.5516530	total: 431ms	remaining: 70.2ms
86:	learn: 16.4886066	total: 435ms	remaining: 65.1ms
87:	learn: 16.3947859	total: 439ms	remaining: 59.9ms
88:	learn: 16.3406495	total: 444ms	remaining: 54.9ms
89:	learn: 16.3019195	total: 449ms	remaining: 49.9ms
90:	learn: 16.1860681	total: 453ms	remaining: 44.8ms
91:	learn: 16.1282812	total: 458ms	remaining: 39.8ms
92:	learn: 16.0303652	total: 462ms	remaining: 34.8ms
93:	learn: 15.9561692	total: 467ms	remaining: 29.8ms
94:	learn: 15.8733994	total: 471ms	remaining: 24.8ms
95:	learn: 15.8108833	total: 476ms	remaining: 19.8ms
96:	learn: 15.7606004	total: 481ms	remaining: 14.9ms
97:	learn: 15.6984664	total: 485ms	remaining: 9.9ms
98:	learn: 15.6223632	total: 490ms	remaining: 4.95ms
99:	learn: 15.5671136	total: 495ms	remaining: 0us
0:	learn: 46.4788614	total: 2.22ms	remaining: 220ms
1:	learn: 45.7608372	total: 7.63ms	remaining: 374ms
2:	learn: 44.8825004	total: 13ms	remaining: 422ms
3:	learn: 44.0362738	total: 18.3ms	remaining: 439ms
4:	learn: 43.2086374	total: 23.7ms	remaining: 450ms
5:	learn: 42.5835773	total: 28.7ms	remaining: 450ms
6:	learn: 41.9673269	total: 33.6ms	remaining: 447ms
7:	learn: 41.4748717	total: 38.7ms	remaining: 445ms
8:	learn: 40.7129183	total: 44.1ms	remaining: 446ms
9:	learn: 39.8900884	total: 49.8ms	remaining: 448ms
10:	learn: 39.4142193	total: 55.1ms	remaining: 446ms
11:	learn: 38.8645613	total: 59.3ms	remaining: 435ms
12:	learn: 38.2394731	total: 63.5ms	remaining: 425ms
13:	learn: 37.6834515	total: 67.5ms	remaining: 415ms
14:	learn: 37.0673507	total: 71.5ms	remaining: 405ms
15:	learn: 36.4728340	total: 75.8ms	remaining: 398ms
16:	learn: 36.0489086	total: 79.8ms	remaining: 390ms
17:	learn: 35.4744141	total: 84.1ms	remaining: 383ms
18:	learn: 35.0106021	total: 88.3ms	remaining: 377ms
19:	learn: 34.5586053	total: 92.7ms	remaining: 371ms
20:	learn: 34.1308223	total: 97.2ms	remaining: 366ms
21:	learn: 33.7701450	total: 102ms	remaining: 361ms
22:	learn: 33.4425444	total: 106ms	remaining: 355ms
23:	learn: 33.0296412	total: 110ms	remaining: 349ms
24:	learn: 32.6359803	total: 114ms	remaining: 343ms
25:	learn: 32.1846182	total: 119ms	remaining: 340ms
26:	learn: 31.7620230	total: 124ms	remaining: 334ms
27:	learn: 31.4669337	total: 128ms	remaining: 329ms
28:	learn: 31.0792062	total: 132ms	remaining: 323ms
29:	learn: 30.7970537	total: 137ms	remaining: 319ms
30:	learn: 30.4952215	total: 142ms	remaining: 316ms
31:	learn: 30.2845344	total: 147ms	remaining: 312ms
32:	learn: 29.9592732	total: 152ms	remaining: 308ms
33:	learn: 29.6798596	total: 156ms	remaining: 304ms
34:	learn: 29.3368905	total: 161ms	remaining: 300ms
35:	learn: 29.0621238	total: 169ms	remaining: 300ms
36:	learn: 28.6445375	total: 176ms	remaining: 299ms
37:	learn: 28.2418096	total: 183ms	remaining: 299ms
38:	learn: 27.9495390	total: 189ms	remaining: 296ms
39:	learn: 27.6958160	total: 195ms	remaining: 293ms
40:	learn: 27.4811189	total: 200ms	remaining: 288ms
41:	learn: 27.1494420	total: 205ms	remaining: 283ms
42:	learn: 26.8388873	total: 209ms	remaining: 277ms
43:	learn: 26.5721300	total: 213ms	remaining: 271ms
44:	learn: 26.3384738	total: 218ms	remaining: 266ms
45:	learn: 26.1894781	total: 222ms	remaining: 261ms
46:	learn: 25.9580198	total: 227ms	remaining: 256ms
47:	learn: 25.7897985	total: 231ms	remaining: 251ms
48:	learn: 25.6000271	total: 236ms	remaining: 245ms
49:	learn: 25.4130873	total: 240ms	remaining: 240ms
50:	learn: 25.1699061	total: 245ms	remaining: 235ms
51:	learn: 24.9324449	total: 249ms	remaining: 230ms
52:	learn: 24.7729152	total: 254ms	remaining: 225ms
53:	learn: 24.5026563	total: 259ms	remaining: 221ms
54:	learn: 24.2332627	total: 264ms	remaining: 216ms
55:	learn: 23.9611984	total: 269ms	remaining: 211ms
56:	learn: 23.7862603	total: 274ms	remaining: 206ms
57:	learn: 23.6318154	total: 278ms	remaining: 201ms
58:	learn: 23.4443306	total: 282ms	remaining: 196ms
59:	learn: 23.2581425	total: 287ms	remaining: 191ms
60:	learn: 23.0549901	total: 292ms	remaining: 186ms
61:	learn: 22.8666218	total: 296ms	remaining: 181ms
62:	learn: 22.6956739	total: 300ms	remaining: 176ms
63:	learn: 22.5068544	total: 304ms	remaining: 171ms
64:	learn: 22.1859147	total: 309ms	remaining: 166ms
65:	learn: 22.0462043	total: 313ms	remaining: 161ms
66:	learn: 21.9329563	total: 317ms	remaining: 156ms
67:	learn: 21.8029736	total: 321ms	remaining: 151ms
68:	learn: 21.6861091	total: 326ms	remaining: 147ms
69:	learn: 21.4838140	total: 331ms	remaining: 142ms
70:	learn: 21.3548921	total: 335ms	remaining: 137ms
71:	learn: 21.2244517	total: 340ms	remaining: 132ms
72:	learn: 21.0702958	total: 345ms	remaining: 127ms
73:	learn: 20.9224662	total: 349ms	remaining: 123ms
74:	learn: 20.8150357	total: 354ms	remaining: 118ms
75:	learn: 20.6962739	total: 359ms	remaining: 113ms
76:	learn: 20.5809258	total: 364ms	remaining: 109ms
77:	learn: 20.4735470	total: 372ms	remaining: 105ms
78:	learn: 20.3778167	total: 380ms	remaining: 101ms
79:	learn: 20.2211268	total: 390ms	remaining: 97.5ms
80:	learn: 20.1478678	total: 396ms	remaining: 92.9ms
81:	learn: 20.1032967	total: 403ms	remaining: 88.4ms
82:	learn: 19.9236300	total: 408ms	remaining: 83.6ms
83:	learn: 19.8151745	total: 414ms	remaining: 78.8ms
84:	learn: 19.7099856	total: 419ms	remaining: 73.9ms
85:	learn: 19.6264833	total: 424ms	remaining: 69ms
86:	learn: 19.4916361	total: 429ms	remaining: 64.2ms
87:	learn: 19.4050529	total: 435ms	remaining: 59.3ms
88:	learn: 19.2547065	total: 440ms	remaining: 54.4ms
89:	learn: 19.1610225	total: 445ms	remaining: 49.4ms
90:	learn: 19.0898958	total: 450ms	remaining: 44.6ms
91:	learn: 19.0489664	total: 455ms	remaining: 39.6ms
92:	learn: 18.9206240	total: 461ms	remaining: 34.7ms
93:	learn: 18.8636239	total: 467ms	remaining: 29.8ms
94:	learn: 18.8126187	total: 472ms	remaining: 24.9ms
95:	learn: 18.7579275	total: 477ms	remaining: 19.9ms
96:	learn: 18.6382753	total: 481ms	remaining: 14.9ms
97:	learn: 18.5397334	total: 486ms	remaining: 9.91ms
98:	learn: 18.4375951	total: 490ms	remaining: 4.95ms
99:	learn: 18.4033755	total: 495ms	remaining: 0us
0:	learn: 46.1068821	total: 2.63ms	remaining: 260ms
1:	learn: 45.3970261	total: 9.86ms	remaining: 483ms
2:	learn: 44.8732696	total: 16.9ms	remaining: 545ms
3:	learn: 44.1290184	total: 23.3ms	remaining: 560ms
4:	learn: 43.3290271	total: 28.2ms	remaining: 536ms
5:	learn: 42.7069090	total: 33.7ms	remaining: 528ms
6:	learn: 42.0572971	total: 39.1ms	remaining: 519ms
7:	learn: 41.4797924	total: 45.7ms	remaining: 525ms
8:	learn: 41.0023122	total: 50.6ms	remaining: 512ms
9:	learn: 40.5330570	total: 54.6ms	remaining: 491ms
10:	learn: 39.9726545	total: 59.1ms	remaining: 478ms
11:	learn: 39.3044053	total: 63.5ms	remaining: 466ms
12:	learn: 38.8169735	total: 67.6ms	remaining: 452ms
13:	learn: 38.2458761	total: 71.7ms	remaining: 440ms
14:	learn: 37.6280321	total: 75.9ms	remaining: 430ms
15:	learn: 37.0800610	total: 80.2ms	remaining: 421ms
16:	learn: 36.5489363	total: 84.6ms	remaining: 413ms
17:	learn: 36.0981456	total: 88.6ms	remaining: 404ms
18:	learn: 35.6956274	total: 92.9ms	remaining: 396ms
19:	learn: 35.1471999	total: 97.2ms	remaining: 389ms
20:	learn: 34.6235408	total: 101ms	remaining: 381ms
21:	learn: 34.1987018	total: 106ms	remaining: 375ms
22:	learn: 33.8985062	total: 111ms	remaining: 370ms
23:	learn: 33.3869017	total: 115ms	remaining: 365ms
24:	learn: 32.9100550	total: 120ms	remaining: 360ms
25:	learn: 32.4156208	total: 125ms	remaining: 355ms
26:	learn: 31.9320493	total: 129ms	remaining: 348ms
27:	learn: 31.5711468	total: 133ms	remaining: 342ms
28:	learn: 31.2404433	total: 138ms	remaining: 337ms
29:	learn: 30.8807946	total: 142ms	remaining: 332ms
30:	learn: 30.5948438	total: 146ms	remaining: 326ms
31:	learn: 30.3885560	total: 151ms	remaining: 321ms
32:	learn: 30.0625101	total: 156ms	remaining: 316ms
33:	learn: 29.9113114	total: 161ms	remaining: 312ms
34:	learn: 29.6983470	total: 165ms	remaining: 307ms
35:	learn: 29.4775849	total: 170ms	remaining: 302ms
36:	learn: 29.0538055	total: 175ms	remaining: 298ms
37:	learn: 28.6792318	total: 180ms	remaining: 293ms
38:	learn: 28.4231383	total: 184ms	remaining: 288ms
39:	learn: 28.1078565	total: 188ms	remaining: 282ms
40:	learn: 27.9079179	total: 193ms	remaining: 277ms
41:	learn: 27.6721506	total: 197ms	remaining: 273ms
42:	learn: 27.4228033	total: 201ms	remaining: 267ms
43:	learn: 27.1740534	total: 205ms	remaining: 261ms
44:	learn: 26.8584071	total: 210ms	remaining: 257ms
45:	learn: 26.6902083	total: 214ms	remaining: 252ms
46:	learn: 26.4855335	total: 218ms	remaining: 246ms
47:	learn: 26.2730822	total: 223ms	remaining: 241ms
48:	learn: 26.1058689	total: 228ms	remaining: 237ms
49:	learn: 25.8587318	total: 233ms	remaining: 233ms
50:	learn: 25.7558005	total: 237ms	remaining: 228ms
51:	learn: 25.5846925	total: 242ms	remaining: 223ms
52:	learn: 25.4249887	total: 247ms	remaining: 219ms
53:	learn: 25.1911054	total: 252ms	remaining: 214ms
54:	learn: 25.0544755	total: 256ms	remaining: 210ms
55:	learn: 24.8874006	total: 264ms	remaining: 207ms
56:	learn: 24.7736279	total: 271ms	remaining: 204ms
57:	learn: 24.6156255	total: 279ms	remaining: 202ms
58:	learn: 24.3962421	total: 286ms	remaining: 199ms
59:	learn: 24.2685129	total: 293ms	remaining: 196ms
60:	learn: 24.1874096	total: 299ms	remaining: 191ms
61:	learn: 24.0394287	total: 304ms	remaining: 186ms
62:	learn: 23.9281768	total: 309ms	remaining: 182ms
63:	learn: 23.7423900	total: 314ms	remaining: 177ms
64:	learn: 23.6015209	total: 320ms	remaining: 172ms
65:	learn: 23.4677943	total: 325ms	remaining: 168ms
66:	learn: 23.3215256	total: 331ms	remaining: 163ms
67:	learn: 23.1869360	total: 336ms	remaining: 158ms
68:	learn: 22.9691180	total: 341ms	remaining: 153ms
69:	learn: 22.7531657	total: 346ms	remaining: 148ms
70:	learn: 22.6133477	total: 352ms	remaining: 144ms
71:	learn: 22.3452758	total: 357ms	remaining: 139ms
72:	learn: 22.2065350	total: 363ms	remaining: 134ms
73:	learn: 22.1071155	total: 367ms	remaining: 129ms
74:	learn: 21.9740686	total: 371ms	remaining: 124ms
75:	learn: 21.8892033	total: 375ms	remaining: 118ms
76:	learn: 21.8267882	total: 379ms	remaining: 113ms
77:	learn: 21.7423479	total: 384ms	remaining: 108ms
78:	learn: 21.6242075	total: 388ms	remaining: 103ms
79:	learn: 21.5016910	total: 392ms	remaining: 98ms
80:	learn: 21.4806623	total: 393ms	remaining: 92.2ms
81:	learn: 21.3166637	total: 397ms	remaining: 87.1ms
82:	learn: 21.2222534	total: 401ms	remaining: 82.1ms
83:	learn: 21.1535708	total: 405ms	remaining: 77.1ms
84:	learn: 21.0858902	total: 409ms	remaining: 72.2ms
85:	learn: 20.9206003	total: 414ms	remaining: 67.4ms
86:	learn: 20.8674695	total: 418ms	remaining: 62.5ms
87:	learn: 20.8089875	total: 422ms	remaining: 57.6ms
88:	learn: 20.7085401	total: 427ms	remaining: 52.8ms
89:	learn: 20.5513468	total: 432ms	remaining: 48ms
90:	learn: 20.4586742	total: 438ms	remaining: 43.3ms
91:	learn: 20.3932149	total: 443ms	remaining: 38.5ms
92:	learn: 20.3000895	total: 448ms	remaining: 33.7ms
93:	learn: 20.2254009	total: 454ms	remaining: 29ms
94:	learn: 20.1750050	total: 459ms	remaining: 24.1ms
95:	learn: 20.0715579	total: 470ms	remaining: 19.6ms
96:	learn: 19.9920082	total: 481ms	remaining: 14.9ms
97:	learn: 19.9664401	total: 487ms	remaining: 9.94ms
98:	learn: 19.8689673	total: 494ms	remaining: 4.99ms
99:	learn: 19.7537356	total: 498ms	remaining: 0us
0:	learn: 46.8832143	total: 4.35ms	remaining: 431ms
1:	learn: 45.8700349	total: 8.5ms	remaining: 416ms
2:	learn: 45.0546867	total: 12.8ms	remaining: 415ms
3:	learn: 44.2829439	total: 17.6ms	remaining: 422ms
4:	learn: 43.4609042	total: 22.2ms	remaining: 422ms
5:	learn: 42.6754991	total: 26.8ms	remaining: 419ms
6:	learn: 41.9234935	total: 30.8ms	remaining: 409ms
7:	learn: 41.3987518	total: 39.1ms	remaining: 450ms
8:	learn: 40.6625066	total: 43.4ms	remaining: 439ms
9:	learn: 40.0029561	total: 47.3ms	remaining: 425ms
10:	learn: 39.3897033	total: 51.9ms	remaining: 420ms
11:	learn: 38.7741453	total: 56.2ms	remaining: 412ms
12:	learn: 38.1201100	total: 60.6ms	remaining: 406ms
13:	learn: 37.5129454	total: 64.8ms	remaining: 398ms
14:	learn: 37.2062206	total: 69.2ms	remaining: 392ms
15:	learn: 36.6831741	total: 73.2ms	remaining: 384ms
16:	learn: 36.2902788	total: 77.1ms	remaining: 376ms
17:	learn: 35.7639930	total: 81.5ms	remaining: 371ms
18:	learn: 35.2580953	total: 86.3ms	remaining: 368ms
19:	learn: 34.7809739	total: 91.1ms	remaining: 365ms
20:	learn: 34.1330433	total: 95.8ms	remaining: 360ms
21:	learn: 33.7302219	total: 100ms	remaining: 356ms
22:	learn: 33.3502495	total: 105ms	remaining: 353ms
23:	learn: 33.0067804	total: 110ms	remaining: 348ms
24:	learn: 32.6897855	total: 114ms	remaining: 343ms
25:	learn: 32.4361119	total: 122ms	remaining: 347ms
26:	learn: 32.1278981	total: 131ms	remaining: 353ms
27:	learn: 31.7863721	total: 141ms	remaining: 362ms
28:	learn: 31.4791450	total: 148ms	remaining: 363ms
29:	learn: 31.1760161	total: 153ms	remaining: 358ms
30:	learn: 30.9238888	total: 159ms	remaining: 354ms
31:	learn: 30.5500905	total: 164ms	remaining: 349ms
32:	learn: 30.3078126	total: 169ms	remaining: 344ms
33:	learn: 30.0480921	total: 175ms	remaining: 339ms
34:	learn: 29.8623884	total: 180ms	remaining: 334ms
35:	learn: 29.5991038	total: 186ms	remaining: 330ms
36:	learn: 29.4061161	total: 192ms	remaining: 327ms
37:	learn: 29.0269515	total: 199ms	remaining: 325ms
38:	learn: 28.8224959	total: 205ms	remaining: 320ms
39:	learn: 28.6417843	total: 210ms	remaining: 316ms
40:	learn: 28.3633368	total: 216ms	remaining: 311ms
41:	learn: 28.0200246	total: 222ms	remaining: 307ms
42:	learn: 27.7221254	total: 227ms	remaining: 300ms
43:	learn: 27.5105818	total: 231ms	remaining: 294ms
44:	learn: 27.3551010	total: 236ms	remaining: 289ms
45:	learn: 27.0787522	total: 241ms	remaining: 283ms
46:	learn: 26.8726317	total: 245ms	remaining: 276ms
47:	learn: 26.8003277	total: 249ms	remaining: 270ms
48:	learn: 26.5493785	total: 254ms	remaining: 264ms
49:	learn: 26.3699550	total: 258ms	remaining: 258ms
50:	learn: 26.1519631	total: 263ms	remaining: 253ms
51:	learn: 25.9277325	total: 268ms	remaining: 247ms
52:	learn: 25.7286035	total: 272ms	remaining: 241ms
53:	learn: 25.4999193	total: 276ms	remaining: 235ms
54:	learn: 25.3434703	total: 281ms	remaining: 230ms
55:	learn: 25.1497545	total: 285ms	remaining: 224ms
56:	learn: 24.9498143	total: 290ms	remaining: 219ms
57:	learn: 24.6509390	total: 295ms	remaining: 214ms
58:	learn: 24.5576144	total: 300ms	remaining: 208ms
59:	learn: 24.4265144	total: 305ms	remaining: 203ms
60:	learn: 24.3100706	total: 310ms	remaining: 198ms
61:	learn: 24.1727952	total: 317ms	remaining: 194ms
62:	learn: 24.0478558	total: 326ms	remaining: 191ms
63:	learn: 23.9124577	total: 334ms	remaining: 188ms
64:	learn: 23.7703718	total: 340ms	remaining: 183ms
65:	learn: 23.5975027	total: 346ms	remaining: 178ms
66:	learn: 23.4318077	total: 351ms	remaining: 173ms
67:	learn: 23.3099691	total: 356ms	remaining: 167ms
68:	learn: 23.1947982	total: 360ms	remaining: 162ms
69:	learn: 23.0260174	total: 365ms	remaining: 156ms
70:	learn: 22.8523100	total: 370ms	remaining: 151ms
71:	learn: 22.8028534	total: 374ms	remaining: 146ms
72:	learn: 22.6880658	total: 379ms	remaining: 140ms
73:	learn: 22.5956809	total: 384ms	remaining: 135ms
74:	learn: 22.4692932	total: 389ms	remaining: 130ms
75:	learn: 22.2863504	total: 393ms	remaining: 124ms
76:	learn: 22.1911237	total: 397ms	remaining: 119ms
77:	learn: 22.1098391	total: 402ms	remaining: 113ms
78:	learn: 22.0182738	total: 407ms	remaining: 108ms
79:	learn: 21.9306746	total: 412ms	remaining: 103ms
80:	learn: 21.7508233	total: 417ms	remaining: 97.7ms
81:	learn: 21.7108446	total: 421ms	remaining: 92.5ms
82:	learn: 21.5931852	total: 426ms	remaining: 87.2ms
83:	learn: 21.4480361	total: 430ms	remaining: 81.9ms
84:	learn: 21.3092119	total: 434ms	remaining: 76.6ms
85:	learn: 21.2605557	total: 438ms	remaining: 71.4ms
86:	learn: 21.1123597	total: 443ms	remaining: 66.2ms
87:	learn: 21.0115642	total: 448ms	remaining: 61ms
88:	learn: 20.9389040	total: 452ms	remaining: 55.9ms
89:	learn: 20.8300300	total: 456ms	remaining: 50.7ms
90:	learn: 20.7159733	total: 460ms	remaining: 45.5ms
91:	learn: 20.6282090	total: 465ms	remaining: 40.4ms
92:	learn: 20.5164529	total: 469ms	remaining: 35.3ms
93:	learn: 20.4692032	total: 473ms	remaining: 30.2ms
94:	learn: 20.3768451	total: 477ms	remaining: 25.1ms
95:	learn: 20.2808056	total: 482ms	remaining: 20.1ms
96:	learn: 20.2082089	total: 487ms	remaining: 15.1ms
97:	learn: 20.1698768	total: 491ms	remaining: 10ms
98:	learn: 20.1048816	total: 496ms	remaining: 5.01ms
99:	learn: 20.0086159	total: 500ms	remaining: 0us
0:	learn: 27.3441720	total: 22.4ms	remaining: 2.21s
1:	learn: 26.7159954	total: 45.3ms	remaining: 2.22s
2:	learn: 26.0850318	total: 68.1ms	remaining: 2.2s
3:	learn: 25.4039656	total: 87.6ms	remaining: 2.1s
4:	learn: 24.7930659	total: 106ms	remaining: 2.02s
5:	learn: 24.2028590	total: 126ms	remaining: 1.97s
6:	learn: 23.6622902	total: 148ms	remaining: 1.97s
7:	learn: 23.1531175	total: 174ms	remaining: 2s
8:	learn: 22.7050792	total: 198ms	remaining: 2s
9:	learn: 22.2151788	total: 217ms	remaining: 1.95s
10:	learn: 21.7708844	total: 237ms	remaining: 1.92s
11:	learn: 21.2587174	total: 258ms	remaining: 1.89s
12:	learn: 20.7559870	total: 276ms	remaining: 1.85s
13:	learn: 20.3040842	total: 296ms	remaining: 1.81s
14:	learn: 19.9019524	total: 316ms	remaining: 1.79s
15:	learn: 19.5186012	total: 336ms	remaining: 1.76s
16:	learn: 19.1521621	total: 357ms	remaining: 1.74s
17:	learn: 18.7652180	total: 378ms	remaining: 1.72s
18:	learn: 18.4446446	total: 409ms	remaining: 1.74s
19:	learn: 18.0977650	total: 434ms	remaining: 1.73s
20:	learn: 17.7791328	total: 455ms	remaining: 1.71s
21:	learn: 17.4777648	total: 478ms	remaining: 1.7s
22:	learn: 17.1794361	total: 500ms	remaining: 1.67s
23:	learn: 16.8685032	total: 520ms	remaining: 1.65s
24:	learn: 16.6274695	total: 540ms	remaining: 1.62s
25:	learn: 16.3071099	total: 559ms	remaining: 1.59s
26:	learn: 16.0249663	total: 580ms	remaining: 1.57s
27:	learn: 15.7535309	total: 602ms	remaining: 1.55s
28:	learn: 15.4777235	total: 628ms	remaining: 1.54s
29:	learn: 15.2410825	total: 648ms	remaining: 1.51s
30:	learn: 15.0133002	total: 670ms	remaining: 1.49s
31:	learn: 14.8018912	total: 692ms	remaining: 1.47s
32:	learn: 14.5701546	total: 713ms	remaining: 1.45s
33:	learn: 14.3799060	total: 736ms	remaining: 1.43s
34:	learn: 14.0975095	total: 758ms	remaining: 1.41s
35:	learn: 13.8873493	total: 781ms	remaining: 1.39s
36:	learn: 13.6812023	total: 809ms	remaining: 1.38s
37:	learn: 13.4943017	total: 835ms	remaining: 1.36s
38:	learn: 13.3224094	total: 861ms	remaining: 1.35s
39:	learn: 13.0967901	total: 885ms	remaining: 1.33s
40:	learn: 12.9138190	total: 908ms	remaining: 1.31s
41:	learn: 12.7764458	total: 932ms	remaining: 1.29s
42:	learn: 12.6593656	total: 956ms	remaining: 1.27s
43:	learn: 12.5051105	total: 976ms	remaining: 1.24s
44:	learn: 12.3057146	total: 998ms	remaining: 1.22s
45:	learn: 12.1487674	total: 1.02s	remaining: 1.2s
46:	learn: 11.9614903	total: 1.05s	remaining: 1.18s
47:	learn: 11.7921265	total: 1.08s	remaining: 1.17s
48:	learn: 11.6572640	total: 1.1s	remaining: 1.14s
49:	learn: 11.5251463	total: 1.12s	remaining: 1.12s
50:	learn: 11.3789931	total: 1.14s	remaining: 1.09s
51:	learn: 11.2691375	total: 1.16s	remaining: 1.07s
52:	learn: 11.1161131	total: 1.18s	remaining: 1.05s
53:	learn: 11.0246399	total: 1.2s	remaining: 1.02s
54:	learn: 10.9152420	total: 1.22s	remaining: 1s
55:	learn: 10.7746769	total: 1.25s	remaining: 980ms
56:	learn: 10.6222917	total: 1.28s	remaining: 965ms
57:	learn: 10.5096115	total: 1.3s	remaining: 945ms
58:	learn: 10.3857030	total: 1.33s	remaining: 923ms
59:	learn: 10.2789057	total: 1.35s	remaining: 902ms
60:	learn: 10.1490749	total: 1.38s	remaining: 879ms
61:	learn: 10.0553291	total: 1.4s	remaining: 858ms
62:	learn: 9.9351043	total: 1.42s	remaining: 835ms
63:	learn: 9.8245261	total: 1.45s	remaining: 813ms
64:	learn: 9.7207577	total: 1.47s	remaining: 793ms
65:	learn: 9.5920661	total: 1.5s	remaining: 772ms
66:	learn: 9.4832767	total: 1.52s	remaining: 749ms
67:	learn: 9.3724149	total: 1.54s	remaining: 726ms
68:	learn: 9.2459801	total: 1.56s	remaining: 703ms
69:	learn: 9.1740635	total: 1.58s	remaining: 680ms
70:	learn: 9.1015730	total: 1.61s	remaining: 657ms
71:	learn: 9.0196460	total: 1.63s	remaining: 634ms
72:	learn: 8.9458977	total: 1.65s	remaining: 610ms
73:	learn: 8.8434400	total: 1.67s	remaining: 588ms
74:	learn: 8.7495151	total: 1.71s	remaining: 569ms
75:	learn: 8.6521348	total: 1.73s	remaining: 547ms
76:	learn: 8.5654483	total: 1.75s	remaining: 524ms
77:	learn: 8.4965765	total: 1.78s	remaining: 501ms
78:	learn: 8.4308736	total: 1.8s	remaining: 479ms
79:	learn: 8.3675601	total: 1.82s	remaining: 455ms
80:	learn: 8.3193887	total: 1.84s	remaining: 432ms
81:	learn: 8.2507990	total: 1.86s	remaining: 409ms
82:	learn: 8.1583259	total: 1.89s	remaining: 386ms
83:	learn: 8.0995902	total: 1.91s	remaining: 365ms
84:	learn: 8.0236655	total: 1.94s	remaining: 341ms
85:	learn: 7.9634698	total: 1.96s	remaining: 318ms
86:	learn: 7.9109081	total: 1.97s	remaining: 295ms
87:	learn: 7.8385006	total: 2s	remaining: 272ms
88:	learn: 7.7859488	total: 2.02s	remaining: 249ms
89:	learn: 7.7270142	total: 2.04s	remaining: 226ms
90:	learn: 7.6774253	total: 2.06s	remaining: 204ms
91:	learn: 7.6126552	total: 2.08s	remaining: 181ms
92:	learn: 7.5392178	total: 2.1s	remaining: 158ms
93:	learn: 7.4745082	total: 2.13s	remaining: 136ms
94:	learn: 7.4106939	total: 2.16s	remaining: 114ms
95:	learn: 7.3573350	total: 2.18s	remaining: 90.9ms
96:	learn: 7.2889777	total: 2.2s	remaining: 68.1ms
97:	learn: 7.2204939	total: 2.23s	remaining: 45.4ms
98:	learn: 7.1646465	total: 2.25s	remaining: 22.7ms
99:	learn: 7.1204610	total: 2.27s	remaining: 0us
0:	learn: 42.5494645	total: 23.3ms	remaining: 2.31s
1:	learn: 41.2913513	total: 42.9ms	remaining: 2.1s
2:	learn: 40.1676527	total: 63.5ms	remaining: 2.05s
3:	learn: 38.7664819	total: 84.3ms	remaining: 2.02s
4:	learn: 37.5407492	total: 105ms	remaining: 2s
5:	learn: 36.4295331	total: 127ms	remaining: 1.99s
6:	learn: 35.2895967	total: 148ms	remaining: 1.97s
7:	learn: 34.1884539	total: 169ms	remaining: 1.94s
8:	learn: 33.1817690	total: 191ms	remaining: 1.93s
9:	learn: 32.3518195	total: 219ms	remaining: 1.97s
10:	learn: 31.4837515	total: 246ms	remaining: 1.99s
11:	learn: 30.7255972	total: 268ms	remaining: 1.96s
12:	learn: 29.9298648	total: 291ms	remaining: 1.95s
13:	learn: 29.0574249	total: 313ms	remaining: 1.92s
14:	learn: 28.4097384	total: 333ms	remaining: 1.89s
15:	learn: 27.5317445	total: 355ms	remaining: 1.86s
16:	learn: 26.7911946	total: 378ms	remaining: 1.84s
17:	learn: 26.1103465	total: 407ms	remaining: 1.85s
18:	learn: 25.5295903	total: 431ms	remaining: 1.84s
19:	learn: 24.8544960	total: 451ms	remaining: 1.8s
20:	learn: 24.2772682	total: 473ms	remaining: 1.78s
21:	learn: 23.6936944	total: 494ms	remaining: 1.75s
22:	learn: 23.1300945	total: 516ms	remaining: 1.73s
23:	learn: 22.5333494	total: 538ms	remaining: 1.7s
24:	learn: 22.0553465	total: 559ms	remaining: 1.68s
25:	learn: 21.6253628	total: 578ms	remaining: 1.65s
26:	learn: 21.1396219	total: 599ms	remaining: 1.62s
27:	learn: 20.7382905	total: 621ms	remaining: 1.6s
28:	learn: 20.3233915	total: 651ms	remaining: 1.59s
29:	learn: 19.9323992	total: 674ms	remaining: 1.57s
30:	learn: 19.5650439	total: 697ms	remaining: 1.55s
31:	learn: 19.2165649	total: 720ms	remaining: 1.53s
32:	learn: 18.8890056	total: 743ms	remaining: 1.51s
33:	learn: 18.5523762	total: 765ms	remaining: 1.48s
34:	learn: 18.2666116	total: 785ms	remaining: 1.46s
35:	learn: 17.9216926	total: 808ms	remaining: 1.44s
36:	learn: 17.6118879	total: 830ms	remaining: 1.41s
37:	learn: 17.2653313	total: 860ms	remaining: 1.4s
38:	learn: 16.9946585	total: 882ms	remaining: 1.38s
39:	learn: 16.6842506	total: 904ms	remaining: 1.35s
40:	learn: 16.4102287	total: 925ms	remaining: 1.33s
41:	learn: 16.2288795	total: 946ms	remaining: 1.3s
42:	learn: 15.9623692	total: 966ms	remaining: 1.28s
43:	learn: 15.7308231	total: 987ms	remaining: 1.26s
44:	learn: 15.4695555	total: 1.01s	remaining: 1.23s
45:	learn: 15.2706809	total: 1.03s	remaining: 1.21s
46:	learn: 15.0182699	total: 1.06s	remaining: 1.19s
47:	learn: 14.7702088	total: 1.08s	remaining: 1.17s
48:	learn: 14.6303566	total: 1.11s	remaining: 1.15s
49:	learn: 14.4038016	total: 1.13s	remaining: 1.13s
50:	learn: 14.2309807	total: 1.15s	remaining: 1.11s
51:	learn: 14.0308425	total: 1.18s	remaining: 1.08s
52:	learn: 13.8201931	total: 1.2s	remaining: 1.06s
53:	learn: 13.6070078	total: 1.22s	remaining: 1.04s
54:	learn: 13.4230690	total: 1.25s	remaining: 1.02s
55:	learn: 13.2368649	total: 1.27s	remaining: 998ms
56:	learn: 13.0449556	total: 1.3s	remaining: 980ms
57:	learn: 12.8375669	total: 1.32s	remaining: 957ms
58:	learn: 12.6795194	total: 1.34s	remaining: 935ms
59:	learn: 12.5197211	total: 1.37s	remaining: 912ms
60:	learn: 12.4011717	total: 1.39s	remaining: 889ms
61:	learn: 12.2396104	total: 1.41s	remaining: 865ms
62:	learn: 12.0647878	total: 1.43s	remaining: 842ms
63:	learn: 11.9247719	total: 1.46s	remaining: 820ms
64:	learn: 11.7923634	total: 1.49s	remaining: 802ms
65:	learn: 11.6628246	total: 1.52s	remaining: 782ms
66:	learn: 11.5688935	total: 1.54s	remaining: 758ms
67:	learn: 11.4345056	total: 1.56s	remaining: 736ms
68:	learn: 11.3136955	total: 1.59s	remaining: 713ms
69:	learn: 11.2040357	total: 1.61s	remaining: 690ms
70:	learn: 11.1067773	total: 1.63s	remaining: 667ms
71:	learn: 10.9728105	total: 1.65s	remaining: 643ms
72:	learn: 10.8338607	total: 1.69s	remaining: 623ms
73:	learn: 10.7202016	total: 1.71s	remaining: 602ms
74:	learn: 10.5983746	total: 1.74s	remaining: 579ms
75:	learn: 10.4882458	total: 1.76s	remaining: 556ms
76:	learn: 10.3827604	total: 1.78s	remaining: 532ms
77:	learn: 10.2485726	total: 1.8s	remaining: 509ms
78:	learn: 10.1524716	total: 1.83s	remaining: 486ms
79:	learn: 10.0765127	total: 1.85s	remaining: 463ms
80:	learn: 9.9617067	total: 1.87s	remaining: 439ms
81:	learn: 9.8357151	total: 1.9s	remaining: 416ms
82:	learn: 9.7311644	total: 1.93s	remaining: 395ms
83:	learn: 9.6314802	total: 1.95s	remaining: 372ms
84:	learn: 9.5137958	total: 1.98s	remaining: 349ms
85:	learn: 9.4420485	total: 2s	remaining: 326ms
86:	learn: 9.3959294	total: 2.02s	remaining: 303ms
87:	learn: 9.3057742	total: 2.05s	remaining: 279ms
88:	learn: 9.2031484	total: 2.07s	remaining: 256ms
89:	learn: 9.0996948	total: 2.09s	remaining: 232ms
90:	learn: 9.0492278	total: 2.12s	remaining: 209ms
91:	learn: 8.9400377	total: 2.14s	remaining: 186ms
92:	learn: 8.8904458	total: 2.17s	remaining: 163ms
93:	learn: 8.8102982	total: 2.19s	remaining: 140ms
94:	learn: 8.7445451	total: 2.21s	remaining: 116ms
95:	learn: 8.6796106	total: 2.23s	remaining: 93ms
96:	learn: 8.5875790	total: 2.25s	remaining: 69.7ms
97:	learn: 8.5086871	total: 2.27s	remaining: 46.4ms
98:	learn: 8.4547244	total: 2.29s	remaining: 23.2ms
99:	learn: 8.3841281	total: 2.32s	remaining: 0us
0:	learn: 46.2258117	total: 3.62ms	remaining: 359ms
1:	learn: 45.1253456	total: 27.5ms	remaining: 1.35s
2:	learn: 43.7311767	total: 51.8ms	remaining: 1.67s
3:	learn: 42.4252819	total: 75.1ms	remaining: 1.8s
4:	learn: 41.1436655	total: 98.3ms	remaining: 1.87s
5:	learn: 40.0337136	total: 121ms	remaining: 1.9s
6:	learn: 38.9102686	total: 142ms	remaining: 1.89s
7:	learn: 37.7859737	total: 165ms	remaining: 1.9s
8:	learn: 36.7646905	total: 188ms	remaining: 1.9s
9:	learn: 35.9495481	total: 217ms	remaining: 1.96s
10:	learn: 35.0558185	total: 239ms	remaining: 1.93s
11:	learn: 34.1958090	total: 261ms	remaining: 1.91s
12:	learn: 33.3514013	total: 284ms	remaining: 1.9s
13:	learn: 32.3317086	total: 306ms	remaining: 1.88s
14:	learn: 31.5611046	total: 327ms	remaining: 1.85s
15:	learn: 30.6373573	total: 347ms	remaining: 1.82s
16:	learn: 29.8883669	total: 369ms	remaining: 1.8s
17:	learn: 29.2985952	total: 390ms	remaining: 1.78s
18:	learn: 28.6360550	total: 413ms	remaining: 1.76s
19:	learn: 27.9757056	total: 444ms	remaining: 1.78s
20:	learn: 27.2585835	total: 467ms	remaining: 1.76s
21:	learn: 26.6366391	total: 489ms	remaining: 1.73s
22:	learn: 26.1055455	total: 511ms	remaining: 1.71s
23:	learn: 25.4961568	total: 535ms	remaining: 1.69s
24:	learn: 25.1037435	total: 555ms	remaining: 1.67s
25:	learn: 24.5258982	total: 576ms	remaining: 1.64s
26:	learn: 23.9974764	total: 596ms	remaining: 1.61s
27:	learn: 23.5108419	total: 618ms	remaining: 1.59s
28:	learn: 23.0835773	total: 644ms	remaining: 1.58s
29:	learn: 22.5744350	total: 670ms	remaining: 1.56s
30:	learn: 22.1357783	total: 691ms	remaining: 1.54s
31:	learn: 21.7316226	total: 716ms	remaining: 1.52s
32:	learn: 21.4082899	total: 742ms	remaining: 1.5s
33:	learn: 20.9640138	total: 768ms	remaining: 1.49s
34:	learn: 20.6379417	total: 794ms	remaining: 1.47s
35:	learn: 20.2688010	total: 816ms	remaining: 1.45s
36:	learn: 19.8479214	total: 843ms	remaining: 1.43s
37:	learn: 19.5684638	total: 869ms	remaining: 1.42s
38:	learn: 19.1826919	total: 892ms	remaining: 1.4s
39:	learn: 18.9583308	total: 915ms	remaining: 1.37s
40:	learn: 18.6736002	total: 937ms	remaining: 1.35s
41:	learn: 18.3525328	total: 962ms	remaining: 1.33s
42:	learn: 17.9954191	total: 983ms	remaining: 1.3s
43:	learn: 17.6991520	total: 1s	remaining: 1.28s
44:	learn: 17.3697888	total: 1.03s	remaining: 1.26s
45:	learn: 17.0519636	total: 1.05s	remaining: 1.23s
46:	learn: 16.7829795	total: 1.08s	remaining: 1.22s
47:	learn: 16.5108695	total: 1.1s	remaining: 1.19s
48:	learn: 16.2366816	total: 1.12s	remaining: 1.17s
49:	learn: 15.9947350	total: 1.14s	remaining: 1.14s
50:	learn: 15.7513561	total: 1.16s	remaining: 1.12s
51:	learn: 15.4328481	total: 1.18s	remaining: 1.09s
52:	learn: 15.2497907	total: 1.2s	remaining: 1.07s
53:	learn: 15.0417076	total: 1.22s	remaining: 1.04s
54:	learn: 14.8861891	total: 1.25s	remaining: 1.02s
55:	learn: 14.6497794	total: 1.27s	remaining: 996ms
56:	learn: 14.3664771	total: 1.3s	remaining: 981ms
57:	learn: 14.2358168	total: 1.32s	remaining: 958ms
58:	learn: 14.0712722	total: 1.34s	remaining: 935ms
59:	learn: 13.9191649	total: 1.37s	remaining: 912ms
60:	learn: 13.7032356	total: 1.39s	remaining: 890ms
61:	learn: 13.5029041	total: 1.41s	remaining: 864ms
62:	learn: 13.3568908	total: 1.43s	remaining: 840ms
63:	learn: 13.1332696	total: 1.45s	remaining: 816ms
64:	learn: 13.0323137	total: 1.47s	remaining: 794ms
65:	learn: 12.8622078	total: 1.5s	remaining: 775ms
66:	learn: 12.7088186	total: 1.52s	remaining: 751ms
67:	learn: 12.5524646	total: 1.54s	remaining: 727ms
68:	learn: 12.4646011	total: 1.56s	remaining: 703ms
69:	learn: 12.3900687	total: 1.58s	remaining: 680ms
70:	learn: 12.2908367	total: 1.6s	remaining: 656ms
71:	learn: 12.1294405	total: 1.62s	remaining: 632ms
72:	learn: 12.0359996	total: 1.64s	remaining: 608ms
73:	learn: 11.9244352	total: 1.67s	remaining: 585ms
74:	learn: 11.8312038	total: 1.69s	remaining: 563ms
75:	learn: 11.6622123	total: 1.72s	remaining: 542ms
76:	learn: 11.5959180	total: 1.74s	remaining: 520ms
77:	learn: 11.4538852	total: 1.76s	remaining: 497ms
78:	learn: 11.3700375	total: 1.78s	remaining: 475ms
79:	learn: 11.2101447	total: 1.81s	remaining: 452ms
80:	learn: 11.0614634	total: 1.83s	remaining: 429ms
81:	learn: 10.9029225	total: 1.85s	remaining: 406ms
82:	learn: 10.7792030	total: 1.87s	remaining: 383ms
83:	learn: 10.6279451	total: 1.9s	remaining: 362ms
84:	learn: 10.5530267	total: 1.92s	remaining: 339ms
85:	learn: 10.4577150	total: 1.95s	remaining: 318ms
86:	learn: 10.4076417	total: 1.98s	remaining: 295ms
87:	learn: 10.3166632	total: 2s	remaining: 272ms
88:	learn: 10.2018151	total: 2.02s	remaining: 250ms
89:	learn: 10.0698484	total: 2.04s	remaining: 227ms
90:	learn: 10.0162824	total: 2.07s	remaining: 205ms
91:	learn: 9.9352639	total: 2.1s	remaining: 183ms
92:	learn: 9.8316734	total: 2.13s	remaining: 161ms
93:	learn: 9.7195471	total: 2.16s	remaining: 138ms
94:	learn: 9.5914894	total: 2.18s	remaining: 115ms
95:	learn: 9.5151851	total: 2.21s	remaining: 92.1ms
96:	learn: 9.3911314	total: 2.23s	remaining: 69.1ms
97:	learn: 9.3417706	total: 2.26s	remaining: 46.1ms
98:	learn: 9.2708440	total: 2.28s	remaining: 23.1ms
99:	learn: 9.1660321	total: 2.31s	remaining: 0us
0:	learn: 45.8627255	total: 2.77ms	remaining: 274ms
1:	learn: 44.7432040	total: 33.5ms	remaining: 1.64s
2:	learn: 43.4398568	total: 56.7ms	remaining: 1.83s
3:	learn: 42.1495515	total: 79ms	remaining: 1.9s
4:	learn: 40.9712633	total: 101ms	remaining: 1.91s
5:	learn: 40.0119591	total: 124ms	remaining: 1.95s
6:	learn: 39.1914360	total: 147ms	remaining: 1.96s
7:	learn: 38.1861536	total: 171ms	remaining: 1.97s
8:	learn: 37.1477128	total: 196ms	remaining: 1.98s
9:	learn: 36.3044702	total: 230ms	remaining: 2.07s
10:	learn: 35.5837917	total: 257ms	remaining: 2.08s
11:	learn: 34.8664158	total: 288ms	remaining: 2.11s
12:	learn: 33.9129833	total: 313ms	remaining: 2.09s
13:	learn: 32.9094642	total: 337ms	remaining: 2.07s
14:	learn: 32.1965787	total: 360ms	remaining: 2.04s
15:	learn: 31.4598238	total: 383ms	remaining: 2.01s
16:	learn: 30.6578027	total: 407ms	remaining: 1.99s
17:	learn: 30.0227468	total: 430ms	remaining: 1.96s
18:	learn: 29.2954728	total: 462ms	remaining: 1.97s
19:	learn: 28.5928084	total: 486ms	remaining: 1.94s
20:	learn: 27.9445984	total: 508ms	remaining: 1.91s
21:	learn: 27.3493298	total: 539ms	remaining: 1.91s
22:	learn: 26.8491966	total: 562ms	remaining: 1.88s
23:	learn: 26.3177453	total: 587ms	remaining: 1.86s
24:	learn: 25.8134533	total: 610ms	remaining: 1.83s
25:	learn: 25.2000018	total: 635ms	remaining: 1.81s
26:	learn: 24.6570461	total: 662ms	remaining: 1.79s
27:	learn: 24.1062982	total: 689ms	remaining: 1.77s
28:	learn: 23.7489370	total: 712ms	remaining: 1.74s
29:	learn: 23.2050536	total: 737ms	remaining: 1.72s
30:	learn: 22.7824379	total: 759ms	remaining: 1.69s
31:	learn: 22.4052655	total: 782ms	remaining: 1.66s
32:	learn: 21.9525639	total: 803ms	remaining: 1.63s
33:	learn: 21.5482900	total: 826ms	remaining: 1.6s
34:	learn: 21.1900983	total: 850ms	remaining: 1.58s
35:	learn: 20.8243957	total: 881ms	remaining: 1.56s
36:	learn: 20.4401288	total: 906ms	remaining: 1.54s
37:	learn: 20.0960622	total: 928ms	remaining: 1.51s
38:	learn: 19.7795108	total: 951ms	remaining: 1.49s
39:	learn: 19.4922451	total: 974ms	remaining: 1.46s
40:	learn: 19.1827582	total: 994ms	remaining: 1.43s
41:	learn: 18.8902445	total: 1.01s	remaining: 1.4s
42:	learn: 18.6833086	total: 1.04s	remaining: 1.37s
43:	learn: 18.4251972	total: 1.06s	remaining: 1.35s
44:	learn: 18.1471037	total: 1.09s	remaining: 1.33s
45:	learn: 17.8420017	total: 1.11s	remaining: 1.31s
46:	learn: 17.6101998	total: 1.14s	remaining: 1.28s
47:	learn: 17.3353656	total: 1.16s	remaining: 1.26s
48:	learn: 17.1194789	total: 1.18s	remaining: 1.23s
49:	learn: 16.8898454	total: 1.21s	remaining: 1.21s
50:	learn: 16.6657497	total: 1.23s	remaining: 1.18s
51:	learn: 16.3832867	total: 1.25s	remaining: 1.16s
52:	learn: 16.2098226	total: 1.28s	remaining: 1.14s
53:	learn: 16.0045707	total: 1.31s	remaining: 1.11s
54:	learn: 15.8512887	total: 1.33s	remaining: 1.09s
55:	learn: 15.6485628	total: 1.35s	remaining: 1.06s
56:	learn: 15.4841428	total: 1.37s	remaining: 1.03s
57:	learn: 15.3383158	total: 1.4s	remaining: 1.01s
58:	learn: 15.2056282	total: 1.42s	remaining: 984ms
59:	learn: 15.0698337	total: 1.44s	remaining: 958ms
60:	learn: 14.8487796	total: 1.46s	remaining: 933ms
61:	learn: 14.7255751	total: 1.49s	remaining: 912ms
62:	learn: 14.6100414	total: 1.51s	remaining: 889ms
63:	learn: 14.3864212	total: 1.54s	remaining: 865ms
64:	learn: 14.2800460	total: 1.56s	remaining: 840ms
65:	learn: 14.1017299	total: 1.58s	remaining: 816ms
66:	learn: 13.9655015	total: 1.61s	remaining: 791ms
67:	learn: 13.8065764	total: 1.63s	remaining: 767ms
68:	learn: 13.7473285	total: 1.65s	remaining: 742ms
69:	learn: 13.6967309	total: 1.67s	remaining: 717ms
70:	learn: 13.6253255	total: 1.69s	remaining: 692ms
71:	learn: 13.4974926	total: 1.72s	remaining: 670ms
72:	learn: 13.4142694	total: 1.75s	remaining: 647ms
73:	learn: 13.2902600	total: 1.77s	remaining: 622ms
74:	learn: 13.1816461	total: 1.79s	remaining: 597ms
75:	learn: 13.0809498	total: 1.81s	remaining: 573ms
76:	learn: 12.9772285	total: 1.83s	remaining: 548ms
77:	learn: 12.8413858	total: 1.86s	remaining: 524ms
78:	learn: 12.7615799	total: 1.88s	remaining: 500ms
79:	learn: 12.5808659	total: 1.9s	remaining: 476ms
80:	learn: 12.4938330	total: 1.93s	remaining: 452ms
81:	learn: 12.3745576	total: 1.96s	remaining: 431ms
82:	learn: 12.2474104	total: 1.99s	remaining: 407ms
83:	learn: 12.1582297	total: 2.01s	remaining: 383ms
84:	learn: 12.0528081	total: 2.03s	remaining: 359ms
85:	learn: 11.9483355	total: 2.06s	remaining: 335ms
86:	learn: 11.8683204	total: 2.08s	remaining: 310ms
87:	learn: 11.7680945	total: 2.1s	remaining: 286ms
88:	learn: 11.6635447	total: 2.12s	remaining: 262ms
89:	learn: 11.5775031	total: 2.15s	remaining: 239ms
90:	learn: 11.4860538	total: 2.18s	remaining: 215ms
91:	learn: 11.3584960	total: 2.2s	remaining: 191ms
92:	learn: 11.2180285	total: 2.22s	remaining: 167ms
93:	learn: 11.0996558	total: 2.24s	remaining: 143ms
94:	learn: 10.9688832	total: 2.26s	remaining: 119ms
95:	learn: 10.9205457	total: 2.28s	remaining: 95.2ms
96:	learn: 10.8462783	total: 2.3s	remaining: 71.3ms
97:	learn: 10.7481890	total: 2.33s	remaining: 47.5ms
98:	learn: 10.6396315	total: 2.35s	remaining: 23.7ms
99:	learn: 10.5895308	total: 2.38s	remaining: 0us
0:	learn: 46.2892189	total: 22.8ms	remaining: 2.26s
1:	learn: 44.9732744	total: 45.7ms	remaining: 2.24s
2:	learn: 43.8887345	total: 68.6ms	remaining: 2.22s
3:	learn: 42.6526320	total: 90.8ms	remaining: 2.18s
4:	learn: 41.4812505	total: 113ms	remaining: 2.15s
5:	learn: 40.4431224	total: 137ms	remaining: 2.14s
6:	learn: 39.2936749	total: 165ms	remaining: 2.19s
7:	learn: 38.1961652	total: 187ms	remaining: 2.15s
8:	learn: 37.2194841	total: 207ms	remaining: 2.1s
9:	learn: 36.2518666	total: 229ms	remaining: 2.06s
10:	learn: 35.4919224	total: 249ms	remaining: 2.01s
11:	learn: 34.6975877	total: 270ms	remaining: 1.98s
12:	learn: 33.7869362	total: 293ms	remaining: 1.96s
13:	learn: 33.0646033	total: 315ms	remaining: 1.93s
14:	learn: 32.1821772	total: 337ms	remaining: 1.91s
15:	learn: 31.4340749	total: 363ms	remaining: 1.91s
16:	learn: 30.6504198	total: 390ms	remaining: 1.9s
17:	learn: 30.0090260	total: 412ms	remaining: 1.88s
18:	learn: 29.4233143	total: 436ms	remaining: 1.86s
19:	learn: 28.7661957	total: 458ms	remaining: 1.83s
20:	learn: 28.1570594	total: 480ms	remaining: 1.8s
21:	learn: 27.6140124	total: 501ms	remaining: 1.78s
22:	learn: 27.0130709	total: 520ms	remaining: 1.74s
23:	learn: 26.2648081	total: 543ms	remaining: 1.72s
24:	learn: 25.7963649	total: 564ms	remaining: 1.69s
25:	learn: 25.2713860	total: 592ms	remaining: 1.69s
26:	learn: 24.8080692	total: 615ms	remaining: 1.66s
27:	learn: 24.3042862	total: 635ms	remaining: 1.63s
28:	learn: 23.9097237	total: 655ms	remaining: 1.6s
29:	learn: 23.4953174	total: 676ms	remaining: 1.58s
30:	learn: 23.0484452	total: 697ms	remaining: 1.55s
31:	learn: 22.7100962	total: 718ms	remaining: 1.53s
32:	learn: 22.1662267	total: 738ms	remaining: 1.5s
33:	learn: 21.7339884	total: 763ms	remaining: 1.48s
34:	learn: 21.3699422	total: 787ms	remaining: 1.46s
35:	learn: 21.0249329	total: 811ms	remaining: 1.44s
36:	learn: 20.6187923	total: 833ms	remaining: 1.42s
37:	learn: 20.2401981	total: 855ms	remaining: 1.4s
38:	learn: 19.9712328	total: 877ms	remaining: 1.37s
39:	learn: 19.6429610	total: 900ms	remaining: 1.35s
40:	learn: 19.3281556	total: 921ms	remaining: 1.32s
41:	learn: 19.0925924	total: 941ms	remaining: 1.3s
42:	learn: 18.8118712	total: 962ms	remaining: 1.27s
43:	learn: 18.5355748	total: 983ms	remaining: 1.25s
44:	learn: 18.2783929	total: 1.01s	remaining: 1.23s
45:	learn: 17.9915490	total: 1.03s	remaining: 1.21s
46:	learn: 17.7323317	total: 1.05s	remaining: 1.19s
47:	learn: 17.4448307	total: 1.07s	remaining: 1.17s
48:	learn: 17.2419782	total: 1.09s	remaining: 1.14s
49:	learn: 16.9351352	total: 1.12s	remaining: 1.12s
50:	learn: 16.7728723	total: 1.14s	remaining: 1.09s
51:	learn: 16.5718087	total: 1.16s	remaining: 1.07s
52:	learn: 16.4047483	total: 1.18s	remaining: 1.04s
53:	learn: 16.2888950	total: 1.2s	remaining: 1.02s
54:	learn: 16.1353042	total: 1.22s	remaining: 997ms
55:	learn: 15.9384012	total: 1.25s	remaining: 979ms
56:	learn: 15.7488511	total: 1.27s	remaining: 960ms
57:	learn: 15.5682846	total: 1.29s	remaining: 937ms
58:	learn: 15.3488716	total: 1.32s	remaining: 915ms
59:	learn: 15.2291272	total: 1.34s	remaining: 892ms
60:	learn: 15.0582519	total: 1.36s	remaining: 871ms
61:	learn: 14.8478458	total: 1.38s	remaining: 848ms
62:	learn: 14.6663416	total: 1.4s	remaining: 824ms
63:	learn: 14.4830825	total: 1.43s	remaining: 802ms
64:	learn: 14.3300895	total: 1.46s	remaining: 784ms
65:	learn: 14.1168590	total: 1.48s	remaining: 762ms
66:	learn: 13.9783298	total: 1.5s	remaining: 739ms
67:	learn: 13.8132857	total: 1.52s	remaining: 715ms
68:	learn: 13.7050863	total: 1.54s	remaining: 691ms
69:	learn: 13.5742501	total: 1.56s	remaining: 669ms
70:	learn: 13.4851362	total: 1.58s	remaining: 646ms
71:	learn: 13.3300610	total: 1.6s	remaining: 623ms
72:	learn: 13.2223060	total: 1.62s	remaining: 601ms
73:	learn: 13.0706731	total: 1.65s	remaining: 578ms
74:	learn: 12.9178099	total: 1.67s	remaining: 558ms
75:	learn: 12.7954645	total: 1.7s	remaining: 536ms
76:	learn: 12.7133688	total: 1.72s	remaining: 514ms
77:	learn: 12.5745537	total: 1.74s	remaining: 491ms
78:	learn: 12.4765302	total: 1.76s	remaining: 469ms
79:	learn: 12.3609145	total: 1.79s	remaining: 447ms
80:	learn: 12.2437759	total: 1.81s	remaining: 425ms
81:	learn: 12.1583763	total: 1.84s	remaining: 403ms
82:	learn: 12.0202500	total: 1.86s	remaining: 381ms
83:	learn: 11.9125166	total: 1.89s	remaining: 361ms
84:	learn: 11.8100729	total: 1.92s	remaining: 339ms
85:	learn: 11.7509521	total: 1.94s	remaining: 316ms
86:	learn: 11.6448436	total: 1.97s	remaining: 294ms
87:	learn: 11.5550170	total: 1.99s	remaining: 271ms
88:	learn: 11.4624708	total: 2.01s	remaining: 249ms
89:	learn: 11.3547761	total: 2.04s	remaining: 226ms
90:	learn: 11.2513910	total: 2.06s	remaining: 204ms
91:	learn: 11.1414483	total: 2.08s	remaining: 181ms
92:	learn: 11.0742264	total: 2.12s	remaining: 159ms
93:	learn: 10.9721772	total: 2.14s	remaining: 137ms
94:	learn: 10.9118054	total: 2.17s	remaining: 115ms
95:	learn: 10.8465290	total: 2.2s	remaining: 91.7ms
96:	learn: 10.7451745	total: 2.23s	remaining: 68.8ms
97:	learn: 10.6173565	total: 2.25s	remaining: 45.9ms
98:	learn: 10.5562158	total: 2.27s	remaining: 22.9ms
99:	learn: 10.4564960	total: 2.3s	remaining: 0us
0:	learn: 27.3776612	total: 21.5ms	remaining: 2.13s
1:	learn: 26.7619003	total: 44.7ms	remaining: 2.19s
2:	learn: 26.0057626	total: 67.7ms	remaining: 2.19s
3:	learn: 25.4280982	total: 89.5ms	remaining: 2.15s
4:	learn: 24.8347609	total: 111ms	remaining: 2.1s
5:	learn: 24.2526574	total: 141ms	remaining: 2.21s
6:	learn: 23.7478806	total: 165ms	remaining: 2.19s
7:	learn: 23.2677666	total: 194ms	remaining: 2.23s
8:	learn: 22.7564310	total: 220ms	remaining: 2.22s
9:	learn: 22.2873770	total: 244ms	remaining: 2.19s
10:	learn: 21.8088174	total: 268ms	remaining: 2.17s
11:	learn: 21.4086875	total: 293ms	remaining: 2.15s
12:	learn: 20.9489217	total: 315ms	remaining: 2.11s
13:	learn: 20.4585233	total: 338ms	remaining: 2.08s
14:	learn: 20.0177760	total: 369ms	remaining: 2.09s
15:	learn: 19.5981890	total: 401ms	remaining: 2.1s
16:	learn: 19.2041885	total: 422ms	remaining: 2.06s
17:	learn: 18.8422550	total: 443ms	remaining: 2.02s
18:	learn: 18.4774037	total: 464ms	remaining: 1.98s
19:	learn: 18.0931699	total: 485ms	remaining: 1.94s
20:	learn: 17.6856423	total: 506ms	remaining: 1.9s
21:	learn: 17.3394010	total: 527ms	remaining: 1.87s
22:	learn: 17.0165204	total: 550ms	remaining: 1.84s
23:	learn: 16.7728230	total: 574ms	remaining: 1.82s
24:	learn: 16.5020155	total: 604ms	remaining: 1.81s
25:	learn: 16.2110813	total: 638ms	remaining: 1.82s
26:	learn: 15.9439416	total: 661ms	remaining: 1.79s
27:	learn: 15.6605702	total: 684ms	remaining: 1.76s
28:	learn: 15.4180978	total: 707ms	remaining: 1.73s
29:	learn: 15.1463921	total: 729ms	remaining: 1.7s
30:	learn: 14.8961946	total: 750ms	remaining: 1.67s
31:	learn: 14.6763296	total: 774ms	remaining: 1.64s
32:	learn: 14.4161484	total: 806ms	remaining: 1.64s
33:	learn: 14.1748686	total: 829ms	remaining: 1.61s
34:	learn: 13.9722494	total: 852ms	remaining: 1.58s
35:	learn: 13.7632896	total: 873ms	remaining: 1.55s
36:	learn: 13.5572592	total: 902ms	remaining: 1.53s
37:	learn: 13.3896577	total: 922ms	remaining: 1.5s
38:	learn: 13.2796441	total: 943ms	remaining: 1.48s
39:	learn: 13.0896679	total: 965ms	remaining: 1.45s
40:	learn: 12.8898238	total: 988ms	remaining: 1.42s
41:	learn: 12.6824069	total: 1.01s	remaining: 1.4s
42:	learn: 12.5459667	total: 1.04s	remaining: 1.38s
43:	learn: 12.3859203	total: 1.07s	remaining: 1.36s
44:	learn: 12.2099364	total: 1.09s	remaining: 1.34s
45:	learn: 12.0649044	total: 1.11s	remaining: 1.31s
46:	learn: 11.8934147	total: 1.15s	remaining: 1.29s
47:	learn: 11.7212144	total: 1.17s	remaining: 1.26s
48:	learn: 11.5585360	total: 1.19s	remaining: 1.24s
49:	learn: 11.4204354	total: 1.21s	remaining: 1.21s
50:	learn: 11.3264427	total: 1.24s	remaining: 1.19s
51:	learn: 11.2063486	total: 1.27s	remaining: 1.17s
52:	learn: 11.0712206	total: 1.29s	remaining: 1.14s
53:	learn: 10.9205088	total: 1.31s	remaining: 1.12s
54:	learn: 10.8155412	total: 1.33s	remaining: 1.09s
55:	learn: 10.7286854	total: 1.35s	remaining: 1.06s
56:	learn: 10.6088466	total: 1.38s	remaining: 1.04s
57:	learn: 10.4999885	total: 1.41s	remaining: 1.02s
58:	learn: 10.4022194	total: 1.43s	remaining: 995ms
59:	learn: 10.3147130	total: 1.47s	remaining: 978ms
60:	learn: 10.2011489	total: 1.49s	remaining: 953ms
61:	learn: 10.1094372	total: 1.51s	remaining: 929ms
62:	learn: 10.0248970	total: 1.54s	remaining: 904ms
63:	learn: 9.9192710	total: 1.56s	remaining: 879ms
64:	learn: 9.8577360	total: 1.58s	remaining: 852ms
65:	learn: 9.7737103	total: 1.6s	remaining: 827ms
66:	learn: 9.6706617	total: 1.63s	remaining: 802ms
67:	learn: 9.6042727	total: 1.66s	remaining: 783ms
68:	learn: 9.5355377	total: 1.69s	remaining: 758ms
69:	learn: 9.4615216	total: 1.71s	remaining: 732ms
70:	learn: 9.3702045	total: 1.73s	remaining: 706ms
71:	learn: 9.3035392	total: 1.75s	remaining: 680ms
72:	learn: 9.2322686	total: 1.77s	remaining: 655ms
73:	learn: 9.1431916	total: 1.79s	remaining: 630ms
74:	learn: 9.0869466	total: 1.82s	remaining: 606ms
75:	learn: 9.0117390	total: 1.84s	remaining: 581ms
76:	learn: 8.9580443	total: 1.86s	remaining: 557ms
77:	learn: 8.8649939	total: 1.9s	remaining: 536ms
78:	learn: 8.7792713	total: 1.93s	remaining: 512ms
79:	learn: 8.7164606	total: 1.95s	remaining: 487ms
80:	learn: 8.6340559	total: 1.97s	remaining: 462ms
81:	learn: 8.5697104	total: 1.99s	remaining: 437ms
82:	learn: 8.5273758	total: 2.01s	remaining: 413ms
83:	learn: 8.4394788	total: 2.04s	remaining: 388ms
84:	learn: 8.3672415	total: 2.06s	remaining: 363ms
85:	learn: 8.2813444	total: 2.08s	remaining: 339ms
86:	learn: 8.1994983	total: 2.11s	remaining: 315ms
87:	learn: 8.1003577	total: 2.13s	remaining: 290ms
88:	learn: 8.0501976	total: 2.15s	remaining: 266ms
89:	learn: 7.9718830	total: 2.17s	remaining: 241ms
90:	learn: 7.9114534	total: 2.19s	remaining: 216ms
91:	learn: 7.8319856	total: 2.21s	remaining: 192ms
92:	learn: 7.7731246	total: 2.23s	remaining: 168ms
93:	learn: 7.7165850	total: 2.25s	remaining: 144ms
94:	learn: 7.6448498	total: 2.28s	remaining: 120ms
95:	learn: 7.5709919	total: 2.31s	remaining: 96.1ms
96:	learn: 7.5184082	total: 2.33s	remaining: 72.1ms
97:	learn: 7.4786866	total: 2.35s	remaining: 48ms
98:	learn: 7.4301201	total: 2.38s	remaining: 24ms
99:	learn: 7.3416932	total: 2.4s	remaining: 0us
0:	learn: 42.6391731	total: 23.4ms	remaining: 2.32s
1:	learn: 41.2755994	total: 45.5ms	remaining: 2.23s
2:	learn: 40.1418308	total: 72ms	remaining: 2.33s
3:	learn: 38.9707156	total: 92.2ms	remaining: 2.21s
4:	learn: 37.8723622	total: 111ms	remaining: 2.12s
5:	learn: 36.6981834	total: 131ms	remaining: 2.05s
6:	learn: 35.6210108	total: 152ms	remaining: 2.02s
7:	learn: 34.5154078	total: 173ms	remaining: 1.99s
8:	learn: 33.4581011	total: 193ms	remaining: 1.95s
9:	learn: 32.5872455	total: 212ms	remaining: 1.91s
10:	learn: 31.6311510	total: 234ms	remaining: 1.89s
11:	learn: 30.8222401	total: 254ms	remaining: 1.86s
12:	learn: 29.9305192	total: 274ms	remaining: 1.84s
13:	learn: 29.0742133	total: 302ms	remaining: 1.85s
14:	learn: 28.3687544	total: 328ms	remaining: 1.86s
15:	learn: 27.5730558	total: 352ms	remaining: 1.85s
16:	learn: 26.9376082	total: 376ms	remaining: 1.83s
17:	learn: 26.2254949	total: 399ms	remaining: 1.82s
18:	learn: 25.5974939	total: 422ms	remaining: 1.8s
19:	learn: 25.0097187	total: 444ms	remaining: 1.78s
20:	learn: 24.3722243	total: 466ms	remaining: 1.75s
21:	learn: 23.8249140	total: 488ms	remaining: 1.73s
22:	learn: 23.3953969	total: 517ms	remaining: 1.73s
23:	learn: 22.8726238	total: 538ms	remaining: 1.7s
24:	learn: 22.3407723	total: 558ms	remaining: 1.67s
25:	learn: 21.8360330	total: 579ms	remaining: 1.65s
26:	learn: 21.4050665	total: 582ms	remaining: 1.57s
27:	learn: 20.9389245	total: 602ms	remaining: 1.55s
28:	learn: 20.5166767	total: 624ms	remaining: 1.53s
29:	learn: 20.1190641	total: 643ms	remaining: 1.5s
30:	learn: 19.7189491	total: 663ms	remaining: 1.48s
31:	learn: 19.3748181	total: 686ms	remaining: 1.46s
32:	learn: 19.0116312	total: 708ms	remaining: 1.44s
33:	learn: 18.6982407	total: 738ms	remaining: 1.43s
34:	learn: 18.3109965	total: 763ms	remaining: 1.42s
35:	learn: 17.9620798	total: 786ms	remaining: 1.4s
36:	learn: 17.6396740	total: 809ms	remaining: 1.38s
37:	learn: 17.3596962	total: 831ms	remaining: 1.36s
38:	learn: 17.0107107	total: 854ms	remaining: 1.33s
39:	learn: 16.7000770	total: 873ms	remaining: 1.31s
40:	learn: 16.4406609	total: 885ms	remaining: 1.27s
41:	learn: 16.2482533	total: 907ms	remaining: 1.25s
42:	learn: 16.0039366	total: 931ms	remaining: 1.23s
43:	learn: 15.7538572	total: 961ms	remaining: 1.22s
44:	learn: 15.5095380	total: 982ms	remaining: 1.2s
45:	learn: 15.2678319	total: 1s	remaining: 1.18s
46:	learn: 15.0494495	total: 1.02s	remaining: 1.15s
47:	learn: 14.8347400	total: 1.04s	remaining: 1.13s
48:	learn: 14.6035398	total: 1.06s	remaining: 1.11s
49:	learn: 14.3913639	total: 1.08s	remaining: 1.08s
50:	learn: 14.1928022	total: 1.1s	remaining: 1.06s
51:	learn: 13.9985580	total: 1.12s	remaining: 1.04s
52:	learn: 13.8322220	total: 1.14s	remaining: 1.01s
53:	learn: 13.6455937	total: 1.18s	remaining: 1s
54:	learn: 13.4402019	total: 1.2s	remaining: 984ms
55:	learn: 13.2899163	total: 1.22s	remaining: 962ms
56:	learn: 13.1694614	total: 1.25s	remaining: 940ms
57:	learn: 13.0722892	total: 1.27s	remaining: 918ms
58:	learn: 12.9065251	total: 1.29s	remaining: 895ms
59:	learn: 12.6992885	total: 1.31s	remaining: 871ms
60:	learn: 12.5384562	total: 1.33s	remaining: 849ms
61:	learn: 12.4105591	total: 1.35s	remaining: 827ms
62:	learn: 12.2952504	total: 1.37s	remaining: 806ms
63:	learn: 12.1427365	total: 1.4s	remaining: 787ms
64:	learn: 11.9954361	total: 1.42s	remaining: 765ms
65:	learn: 11.8161234	total: 1.44s	remaining: 743ms
66:	learn: 11.6849978	total: 1.46s	remaining: 720ms
67:	learn: 11.5405300	total: 1.48s	remaining: 697ms
68:	learn: 11.3806762	total: 1.5s	remaining: 674ms
69:	learn: 11.2746848	total: 1.52s	remaining: 651ms
70:	learn: 11.1518256	total: 1.54s	remaining: 629ms
71:	learn: 11.0730779	total: 1.56s	remaining: 607ms
72:	learn: 10.9736725	total: 1.58s	remaining: 585ms
73:	learn: 10.8430563	total: 1.61s	remaining: 566ms
74:	learn: 10.7142220	total: 1.64s	remaining: 546ms
75:	learn: 10.6141640	total: 1.66s	remaining: 524ms
76:	learn: 10.5264853	total: 1.68s	remaining: 502ms
77:	learn: 10.3929390	total: 1.7s	remaining: 480ms
78:	learn: 10.3163176	total: 1.72s	remaining: 457ms
79:	learn: 10.2171240	total: 1.74s	remaining: 435ms
80:	learn: 10.1381738	total: 1.76s	remaining: 413ms
81:	learn: 10.0402437	total: 1.78s	remaining: 391ms
82:	learn: 9.9223565	total: 1.81s	remaining: 370ms
83:	learn: 9.8184057	total: 1.83s	remaining: 349ms
84:	learn: 9.7221978	total: 1.85s	remaining: 327ms
85:	learn: 9.6417031	total: 1.87s	remaining: 304ms
86:	learn: 9.5593969	total: 1.89s	remaining: 282ms
87:	learn: 9.4678992	total: 1.91s	remaining: 260ms
88:	learn: 9.3855757	total: 1.93s	remaining: 238ms
89:	learn: 9.2884031	total: 1.95s	remaining: 216ms
90:	learn: 9.2099382	total: 1.97s	remaining: 195ms
91:	learn: 9.1357061	total: 1.99s	remaining: 173ms
92:	learn: 9.0690328	total: 2.01s	remaining: 151ms
93:	learn: 8.9904694	total: 2.04s	remaining: 130ms
94:	learn: 8.9256893	total: 2.06s	remaining: 109ms
95:	learn: 8.8600084	total: 2.09s	remaining: 86.9ms
96:	learn: 8.8091154	total: 2.11s	remaining: 65.2ms
97:	learn: 8.7280528	total: 2.13s	remaining: 43.5ms
98:	learn: 8.6761440	total: 2.15s	remaining: 21.7ms
99:	learn: 8.6181192	total: 2.17s	remaining: 0us
0:	learn: 45.9988128	total: 26.4ms	remaining: 2.61s
1:	learn: 44.7653841	total: 49.4ms	remaining: 2.42s
2:	learn: 43.4693688	total: 67.5ms	remaining: 2.18s
3:	learn: 42.2495168	total: 88.1ms	remaining: 2.11s
4:	learn: 41.2273909	total: 107ms	remaining: 2.03s
5:	learn: 40.0623352	total: 126ms	remaining: 1.98s
6:	learn: 39.0139162	total: 145ms	remaining: 1.93s
7:	learn: 37.9905503	total: 165ms	remaining: 1.89s
8:	learn: 37.1460179	total: 183ms	remaining: 1.85s
9:	learn: 36.1321769	total: 202ms	remaining: 1.82s
10:	learn: 35.2434048	total: 221ms	remaining: 1.78s
11:	learn: 34.3919476	total: 240ms	remaining: 1.76s
12:	learn: 33.5464400	total: 259ms	remaining: 1.73s
13:	learn: 32.5752711	total: 278ms	remaining: 1.71s
14:	learn: 31.8573507	total: 310ms	remaining: 1.76s
15:	learn: 31.1481980	total: 337ms	remaining: 1.77s
16:	learn: 30.4578224	total: 358ms	remaining: 1.75s
17:	learn: 29.8404841	total: 379ms	remaining: 1.73s
18:	learn: 29.1314604	total: 400ms	remaining: 1.71s
19:	learn: 28.5024706	total: 422ms	remaining: 1.69s
20:	learn: 27.9368896	total: 441ms	remaining: 1.66s
21:	learn: 27.2136491	total: 460ms	remaining: 1.63s
22:	learn: 26.6230078	total: 483ms	remaining: 1.62s
23:	learn: 26.0604635	total: 504ms	remaining: 1.6s
24:	learn: 25.6309424	total: 532ms	remaining: 1.6s
25:	learn: 25.1761698	total: 554ms	remaining: 1.58s
26:	learn: 24.6368216	total: 575ms	remaining: 1.55s
27:	learn: 24.1028972	total: 596ms	remaining: 1.53s
28:	learn: 23.3990224	total: 615ms	remaining: 1.5s
29:	learn: 22.9088559	total: 635ms	remaining: 1.48s
30:	learn: 22.4793217	total: 655ms	remaining: 1.46s
31:	learn: 22.0592669	total: 675ms	remaining: 1.43s
32:	learn: 21.6715811	total: 696ms	remaining: 1.41s
33:	learn: 21.1907911	total: 716ms	remaining: 1.39s
34:	learn: 20.8045504	total: 747ms	remaining: 1.39s
35:	learn: 20.4670784	total: 772ms	remaining: 1.37s
36:	learn: 20.0165788	total: 795ms	remaining: 1.35s
37:	learn: 19.6859173	total: 818ms	remaining: 1.33s
38:	learn: 19.3641283	total: 840ms	remaining: 1.31s
39:	learn: 19.0291194	total: 864ms	remaining: 1.3s
40:	learn: 18.7204204	total: 884ms	remaining: 1.27s
41:	learn: 18.4000101	total: 903ms	remaining: 1.25s
42:	learn: 18.0910445	total: 926ms	remaining: 1.23s
43:	learn: 17.8354609	total: 955ms	remaining: 1.22s
44:	learn: 17.4982243	total: 979ms	remaining: 1.2s
45:	learn: 17.1895897	total: 999ms	remaining: 1.17s
46:	learn: 16.9440833	total: 1.02s	remaining: 1.15s
47:	learn: 16.6112102	total: 1.04s	remaining: 1.13s
48:	learn: 16.3320235	total: 1.06s	remaining: 1.1s
49:	learn: 16.0523610	total: 1.08s	remaining: 1.08s
50:	learn: 15.8256738	total: 1.1s	remaining: 1.06s
51:	learn: 15.5699393	total: 1.12s	remaining: 1.04s
52:	learn: 15.3531799	total: 1.14s	remaining: 1.01s
53:	learn: 15.1364230	total: 1.17s	remaining: 998ms
54:	learn: 15.0012063	total: 1.2s	remaining: 979ms
55:	learn: 14.7171740	total: 1.22s	remaining: 957ms
56:	learn: 14.5897576	total: 1.22s	remaining: 921ms
57:	learn: 14.3886878	total: 1.24s	remaining: 901ms
58:	learn: 14.1942115	total: 1.27s	remaining: 881ms
59:	learn: 14.0135398	total: 1.29s	remaining: 861ms
60:	learn: 13.8118263	total: 1.31s	remaining: 839ms
61:	learn: 13.6444047	total: 1.33s	remaining: 818ms
62:	learn: 13.4728078	total: 1.36s	remaining: 797ms
63:	learn: 13.3104934	total: 1.39s	remaining: 781ms
64:	learn: 13.1385144	total: 1.41s	remaining: 760ms
65:	learn: 13.0087777	total: 1.43s	remaining: 738ms
66:	learn: 12.8457835	total: 1.45s	remaining: 716ms
67:	learn: 12.6975263	total: 1.47s	remaining: 694ms
68:	learn: 12.5582839	total: 1.49s	remaining: 671ms
69:	learn: 12.4210776	total: 1.51s	remaining: 649ms
70:	learn: 12.2737286	total: 1.53s	remaining: 627ms
71:	learn: 12.1587075	total: 1.55s	remaining: 604ms
72:	learn: 12.0323022	total: 1.58s	remaining: 586ms
73:	learn: 11.8667900	total: 1.61s	remaining: 565ms
74:	learn: 11.6990385	total: 1.63s	remaining: 544ms
75:	learn: 11.5755058	total: 1.65s	remaining: 522ms
76:	learn: 11.4954152	total: 1.68s	remaining: 501ms
77:	learn: 11.3827464	total: 1.7s	remaining: 479ms
78:	learn: 11.2924968	total: 1.72s	remaining: 458ms
79:	learn: 11.1938217	total: 1.74s	remaining: 435ms
80:	learn: 11.0766477	total: 1.76s	remaining: 413ms
81:	learn: 10.9824487	total: 1.78s	remaining: 392ms
82:	learn: 10.8707168	total: 1.81s	remaining: 371ms
83:	learn: 10.7746205	total: 1.83s	remaining: 350ms
84:	learn: 10.6738461	total: 1.86s	remaining: 328ms
85:	learn: 10.5871227	total: 1.88s	remaining: 305ms
86:	learn: 10.4566607	total: 1.9s	remaining: 284ms
87:	learn: 10.3506633	total: 1.92s	remaining: 262ms
88:	learn: 10.2104644	total: 1.94s	remaining: 240ms
89:	learn: 10.0965839	total: 1.96s	remaining: 218ms
90:	learn: 9.9802927	total: 1.98s	remaining: 196ms
91:	learn: 9.9195276	total: 2s	remaining: 174ms
92:	learn: 9.8559698	total: 2.03s	remaining: 153ms
93:	learn: 9.7396780	total: 2.06s	remaining: 131ms
94:	learn: 9.6945725	total: 2.08s	remaining: 109ms
95:	learn: 9.5897565	total: 2.1s	remaining: 87.6ms
96:	learn: 9.5012011	total: 2.12s	remaining: 65.7ms
97:	learn: 9.4123715	total: 2.15s	remaining: 43.8ms
98:	learn: 9.3288366	total: 2.17s	remaining: 21.9ms
99:	learn: 9.2648715	total: 2.18s	remaining: 0us
0:	learn: 45.5336925	total: 19.1ms	remaining: 1.89s
1:	learn: 44.2714175	total: 37.7ms	remaining: 1.85s
2:	learn: 43.1477944	total: 57.5ms	remaining: 1.86s
3:	learn: 41.9891776	total: 76.3ms	remaining: 1.83s
4:	learn: 41.0638986	total: 95.5ms	remaining: 1.81s
5:	learn: 39.9800801	total: 114ms	remaining: 1.78s
6:	learn: 38.9048061	total: 134ms	remaining: 1.78s
7:	learn: 38.0749429	total: 154ms	remaining: 1.77s
8:	learn: 37.3966644	total: 173ms	remaining: 1.75s
9:	learn: 36.4671331	total: 198ms	remaining: 1.78s
10:	learn: 35.6649217	total: 223ms	remaining: 1.81s
11:	learn: 34.8793657	total: 244ms	remaining: 1.79s
12:	learn: 34.0737401	total: 266ms	remaining: 1.78s
13:	learn: 33.2560999	total: 287ms	remaining: 1.76s
14:	learn: 32.4184623	total: 308ms	remaining: 1.75s
15:	learn: 31.6803206	total: 326ms	remaining: 1.71s
16:	learn: 30.9276344	total: 346ms	remaining: 1.69s
17:	learn: 30.3590041	total: 364ms	remaining: 1.66s
18:	learn: 29.7789888	total: 385ms	remaining: 1.64s
19:	learn: 29.1098261	total: 407ms	remaining: 1.63s
20:	learn: 28.4824889	total: 431ms	remaining: 1.62s
21:	learn: 27.9675744	total: 450ms	remaining: 1.59s
22:	learn: 27.4793215	total: 468ms	remaining: 1.57s
23:	learn: 26.8920542	total: 487ms	remaining: 1.54s
24:	learn: 26.2736657	total: 505ms	remaining: 1.51s
25:	learn: 25.6908003	total: 525ms	remaining: 1.49s
26:	learn: 25.1288844	total: 544ms	remaining: 1.47s
27:	learn: 24.6933320	total: 562ms	remaining: 1.45s
28:	learn: 24.1372567	total: 582ms	remaining: 1.43s
29:	learn: 23.7103515	total: 602ms	remaining: 1.4s
30:	learn: 23.1647499	total: 634ms	remaining: 1.41s
31:	learn: 22.7009216	total: 658ms	remaining: 1.4s
32:	learn: 22.2792229	total: 679ms	remaining: 1.38s
33:	learn: 21.8004244	total: 701ms	remaining: 1.36s
34:	learn: 21.3578361	total: 723ms	remaining: 1.34s
35:	learn: 21.0262832	total: 742ms	remaining: 1.32s
36:	learn: 20.5787502	total: 761ms	remaining: 1.29s
37:	learn: 20.3083055	total: 779ms	remaining: 1.27s
38:	learn: 19.9902529	total: 798ms	remaining: 1.25s
39:	learn: 19.6059571	total: 818ms	remaining: 1.23s
40:	learn: 19.3890959	total: 841ms	remaining: 1.21s
41:	learn: 19.0549255	total: 864ms	remaining: 1.19s
42:	learn: 18.7283215	total: 882ms	remaining: 1.17s
43:	learn: 18.4448725	total: 902ms	remaining: 1.15s
44:	learn: 18.1578001	total: 920ms	remaining: 1.12s
45:	learn: 17.8777474	total: 938ms	remaining: 1.1s
46:	learn: 17.6428221	total: 959ms	remaining: 1.08s
47:	learn: 17.3887752	total: 978ms	remaining: 1.06s
48:	learn: 17.1475761	total: 997ms	remaining: 1.04s
49:	learn: 16.9064363	total: 1.02s	remaining: 1.02s
50:	learn: 16.6414681	total: 1.04s	remaining: 996ms
51:	learn: 16.4549974	total: 1.06s	remaining: 982ms
52:	learn: 16.2617558	total: 1.09s	remaining: 968ms
53:	learn: 16.0258241	total: 1.11s	remaining: 950ms
54:	learn: 15.7694686	total: 1.14s	remaining: 930ms
55:	learn: 15.5449602	total: 1.16s	remaining: 910ms
56:	learn: 15.3515330	total: 1.18s	remaining: 889ms
57:	learn: 15.1120403	total: 1.2s	remaining: 866ms
58:	learn: 14.9131368	total: 1.22s	remaining: 845ms
59:	learn: 14.8021921	total: 1.24s	remaining: 824ms
60:	learn: 14.6564259	total: 1.26s	remaining: 808ms
61:	learn: 14.5253260	total: 1.29s	remaining: 789ms
62:	learn: 14.3975427	total: 1.31s	remaining: 767ms
63:	learn: 14.3060204	total: 1.32s	remaining: 745ms
64:	learn: 14.1283681	total: 1.34s	remaining: 723ms
65:	learn: 14.0159063	total: 1.36s	remaining: 701ms
66:	learn: 13.8712541	total: 1.38s	remaining: 680ms
67:	learn: 13.7852998	total: 1.4s	remaining: 659ms
68:	learn: 13.6790164	total: 1.42s	remaining: 637ms
69:	learn: 13.5253745	total: 1.44s	remaining: 617ms
70:	learn: 13.3959663	total: 1.46s	remaining: 596ms
71:	learn: 13.2062955	total: 1.49s	remaining: 578ms
72:	learn: 13.0788709	total: 1.51s	remaining: 559ms
73:	learn: 12.9513184	total: 1.53s	remaining: 539ms
74:	learn: 12.8198556	total: 1.57s	remaining: 522ms
75:	learn: 12.7137549	total: 1.59s	remaining: 502ms
76:	learn: 12.6243477	total: 1.61s	remaining: 482ms
77:	learn: 12.5241564	total: 1.63s	remaining: 461ms
78:	learn: 12.4445782	total: 1.66s	remaining: 440ms
79:	learn: 12.3816501	total: 1.68s	remaining: 421ms
80:	learn: 12.2846914	total: 1.71s	remaining: 402ms
81:	learn: 12.1419498	total: 1.73s	remaining: 381ms
82:	learn: 12.0846494	total: 1.75s	remaining: 360ms
83:	learn: 11.9851484	total: 1.77s	remaining: 338ms
84:	learn: 11.8905738	total: 1.8s	remaining: 317ms
85:	learn: 11.7718790	total: 1.83s	remaining: 297ms
86:	learn: 11.6854413	total: 1.85s	remaining: 276ms
87:	learn: 11.6206110	total: 1.87s	remaining: 255ms
88:	learn: 11.5376098	total: 1.89s	remaining: 234ms
89:	learn: 11.4235068	total: 1.92s	remaining: 214ms
90:	learn: 11.3477955	total: 1.95s	remaining: 193ms
91:	learn: 11.2663772	total: 1.97s	remaining: 172ms
92:	learn: 11.1916556	total: 2s	remaining: 150ms
93:	learn: 11.0921504	total: 2.02s	remaining: 129ms
94:	learn: 10.9622375	total: 2.04s	remaining: 108ms
95:	learn: 10.8882085	total: 2.08s	remaining: 86.5ms
96:	learn: 10.8086218	total: 2.1s	remaining: 64.9ms
97:	learn: 10.7552220	total: 2.13s	remaining: 43.4ms
98:	learn: 10.6929666	total: 2.15s	remaining: 21.7ms
99:	learn: 10.6200033	total: 2.17s	remaining: 0us
0:	learn: 46.3366259	total: 20.5ms	remaining: 2.02s
1:	learn: 45.2205278	total: 40ms	remaining: 1.96s
2:	learn: 43.9887404	total: 58.6ms	remaining: 1.9s
3:	learn: 42.8240666	total: 77.9ms	remaining: 1.87s
4:	learn: 41.6086617	total: 99.3ms	remaining: 1.89s
5:	learn: 40.5606446	total: 120ms	remaining: 1.88s
6:	learn: 39.6241326	total: 148ms	remaining: 1.97s
7:	learn: 39.0016852	total: 171ms	remaining: 1.97s
8:	learn: 37.8501670	total: 195ms	remaining: 1.97s
9:	learn: 37.0215474	total: 216ms	remaining: 1.95s
10:	learn: 36.0215020	total: 237ms	remaining: 1.91s
11:	learn: 35.2421331	total: 260ms	remaining: 1.9s
12:	learn: 34.5416837	total: 281ms	remaining: 1.88s
13:	learn: 33.7787649	total: 302ms	remaining: 1.85s
14:	learn: 32.9860883	total: 323ms	remaining: 1.83s
15:	learn: 32.2123752	total: 347ms	remaining: 1.82s
16:	learn: 31.3564648	total: 372ms	remaining: 1.81s
17:	learn: 30.7859979	total: 393ms	remaining: 1.79s
18:	learn: 30.1443515	total: 413ms	remaining: 1.76s
19:	learn: 29.4880724	total: 433ms	remaining: 1.73s
20:	learn: 28.9635727	total: 453ms	remaining: 1.7s
21:	learn: 28.4853342	total: 475ms	remaining: 1.68s
22:	learn: 27.9796348	total: 496ms	remaining: 1.66s
23:	learn: 27.4360487	total: 518ms	remaining: 1.64s
24:	learn: 26.8685214	total: 539ms	remaining: 1.62s
25:	learn: 26.1769206	total: 567ms	remaining: 1.61s
26:	learn: 25.7146048	total: 590ms	remaining: 1.59s
27:	learn: 25.2614850	total: 614ms	remaining: 1.58s
28:	learn: 24.6626472	total: 636ms	remaining: 1.56s
29:	learn: 24.2501259	total: 658ms	remaining: 1.53s
30:	learn: 23.7892661	total: 680ms	remaining: 1.51s
31:	learn: 23.2729078	total: 698ms	remaining: 1.48s
32:	learn: 22.8969731	total: 718ms	remaining: 1.46s
33:	learn: 22.4567570	total: 739ms	remaining: 1.43s
34:	learn: 22.0569858	total: 762ms	remaining: 1.42s
35:	learn: 21.7317775	total: 787ms	remaining: 1.4s
36:	learn: 21.3890971	total: 811ms	remaining: 1.38s
37:	learn: 21.0664504	total: 831ms	remaining: 1.36s
38:	learn: 20.7379659	total: 852ms	remaining: 1.33s
39:	learn: 20.4423699	total: 872ms	remaining: 1.31s
40:	learn: 20.1526720	total: 893ms	remaining: 1.28s
41:	learn: 19.8706547	total: 913ms	remaining: 1.26s
42:	learn: 19.5139134	total: 933ms	remaining: 1.24s
43:	learn: 19.3495951	total: 956ms	remaining: 1.22s
44:	learn: 19.1314757	total: 982ms	remaining: 1.2s
45:	learn: 18.7971159	total: 1s	remaining: 1.18s
46:	learn: 18.5447051	total: 1.03s	remaining: 1.16s
47:	learn: 18.2328785	total: 1.05s	remaining: 1.14s
48:	learn: 17.9622938	total: 1.07s	remaining: 1.12s
49:	learn: 17.7264205	total: 1.1s	remaining: 1.1s
50:	learn: 17.4530592	total: 1.12s	remaining: 1.07s
51:	learn: 17.2236644	total: 1.14s	remaining: 1.05s
52:	learn: 17.0122792	total: 1.16s	remaining: 1.03s
53:	learn: 16.7599064	total: 1.18s	remaining: 1.01s
54:	learn: 16.5146699	total: 1.21s	remaining: 991ms
55:	learn: 16.2531414	total: 1.23s	remaining: 968ms
56:	learn: 16.0997208	total: 1.25s	remaining: 946ms
57:	learn: 15.8452412	total: 1.27s	remaining: 921ms
58:	learn: 15.6294900	total: 1.29s	remaining: 898ms
59:	learn: 15.4564548	total: 1.31s	remaining: 874ms
60:	learn: 15.2978533	total: 1.33s	remaining: 851ms
61:	learn: 15.0976912	total: 1.35s	remaining: 828ms
62:	learn: 14.9094446	total: 1.37s	remaining: 805ms
63:	learn: 14.7415094	total: 1.39s	remaining: 782ms
64:	learn: 14.6123806	total: 1.41s	remaining: 760ms
65:	learn: 14.4744916	total: 1.44s	remaining: 742ms
66:	learn: 14.3212717	total: 1.46s	remaining: 721ms
67:	learn: 14.1768047	total: 1.49s	remaining: 700ms
68:	learn: 14.0387344	total: 1.51s	remaining: 679ms
69:	learn: 13.8987579	total: 1.53s	remaining: 657ms
70:	learn: 13.7825740	total: 1.55s	remaining: 635ms
71:	learn: 13.6818548	total: 1.57s	remaining: 613ms
72:	learn: 13.5356993	total: 1.6s	remaining: 591ms
73:	learn: 13.4408704	total: 1.62s	remaining: 568ms
74:	learn: 13.2992218	total: 1.65s	remaining: 548ms
75:	learn: 13.1547092	total: 1.67s	remaining: 527ms
76:	learn: 13.0800189	total: 1.69s	remaining: 504ms
77:	learn: 12.9434711	total: 1.71s	remaining: 481ms
78:	learn: 12.8327325	total: 1.73s	remaining: 459ms
79:	learn: 12.7238946	total: 1.75s	remaining: 436ms
80:	learn: 12.6229528	total: 1.77s	remaining: 414ms
81:	learn: 12.5216078	total: 1.78s	remaining: 392ms
82:	learn: 12.4182254	total: 1.81s	remaining: 371ms
83:	learn: 12.3097978	total: 1.83s	remaining: 349ms
84:	learn: 12.1852056	total: 1.86s	remaining: 328ms
85:	learn: 12.0739627	total: 1.88s	remaining: 307ms
86:	learn: 11.9475583	total: 1.91s	remaining: 285ms
87:	learn: 11.8403806	total: 1.93s	remaining: 263ms
88:	learn: 11.7294124	total: 1.95s	remaining: 241ms
89:	learn: 11.6395689	total: 1.97s	remaining: 219ms
90:	learn: 11.5510643	total: 1.99s	remaining: 197ms
91:	learn: 11.4455301	total: 2.01s	remaining: 175ms
92:	learn: 11.3368661	total: 2.03s	remaining: 153ms
93:	learn: 11.2270796	total: 2.05s	remaining: 131ms
94:	learn: 11.1168414	total: 2.08s	remaining: 109ms
95:	learn: 11.0310985	total: 2.1s	remaining: 87.6ms
96:	learn: 10.9735185	total: 2.12s	remaining: 65.7ms
97:	learn: 10.8575874	total: 2.14s	remaining: 43.7ms
98:	learn: 10.7816173	total: 2.16s	remaining: 21.8ms
99:	learn: 10.7111737	total: 2.18s	remaining: 0us
0:	learn: 27.3776612	total: 19.3ms	remaining: 1.91s
1:	learn: 26.7619003	total: 41ms	remaining: 2.01s
2:	learn: 26.0057626	total: 61.2ms	remaining: 1.98s
3:	learn: 25.4280982	total: 93.3ms	remaining: 2.24s
4:	learn: 24.8347609	total: 116ms	remaining: 2.2s
5:	learn: 24.2526574	total: 138ms	remaining: 2.16s
6:	learn: 23.7478806	total: 159ms	remaining: 2.11s
7:	learn: 23.2677666	total: 181ms	remaining: 2.08s
8:	learn: 22.7564310	total: 200ms	remaining: 2.02s
9:	learn: 22.2873770	total: 218ms	remaining: 1.97s
10:	learn: 21.8088174	total: 237ms	remaining: 1.92s
11:	learn: 21.4086875	total: 257ms	remaining: 1.89s
12:	learn: 20.9489217	total: 278ms	remaining: 1.86s
13:	learn: 20.4585233	total: 308ms	remaining: 1.89s
14:	learn: 20.0177760	total: 330ms	remaining: 1.87s
15:	learn: 19.5981890	total: 349ms	remaining: 1.83s
16:	learn: 19.2041885	total: 368ms	remaining: 1.79s
17:	learn: 18.8422550	total: 388ms	remaining: 1.77s
18:	learn: 18.4774037	total: 406ms	remaining: 1.73s
19:	learn: 18.0931699	total: 427ms	remaining: 1.71s
20:	learn: 17.6856423	total: 448ms	remaining: 1.68s
21:	learn: 17.3394010	total: 469ms	remaining: 1.66s
22:	learn: 17.0165204	total: 497ms	remaining: 1.66s
23:	learn: 16.7728230	total: 520ms	remaining: 1.65s
24:	learn: 16.5020155	total: 542ms	remaining: 1.63s
25:	learn: 16.2110813	total: 564ms	remaining: 1.6s
26:	learn: 15.9439416	total: 587ms	remaining: 1.59s
27:	learn: 15.6605702	total: 610ms	remaining: 1.57s
28:	learn: 15.4180978	total: 633ms	remaining: 1.55s
29:	learn: 15.1463921	total: 652ms	remaining: 1.52s
30:	learn: 14.8961946	total: 671ms	remaining: 1.49s
31:	learn: 14.6763296	total: 691ms	remaining: 1.47s
32:	learn: 14.4161484	total: 712ms	remaining: 1.44s
33:	learn: 14.1748686	total: 736ms	remaining: 1.43s
34:	learn: 13.9722494	total: 756ms	remaining: 1.4s
35:	learn: 13.7632896	total: 777ms	remaining: 1.38s
36:	learn: 13.5572592	total: 797ms	remaining: 1.36s
37:	learn: 13.3896577	total: 815ms	remaining: 1.33s
38:	learn: 13.2796441	total: 834ms	remaining: 1.3s
39:	learn: 13.0896679	total: 854ms	remaining: 1.28s
40:	learn: 12.8898238	total: 873ms	remaining: 1.26s
41:	learn: 12.6824069	total: 894ms	remaining: 1.23s
42:	learn: 12.5459667	total: 915ms	remaining: 1.21s
43:	learn: 12.3859203	total: 944ms	remaining: 1.2s
44:	learn: 12.2099364	total: 966ms	remaining: 1.18s
45:	learn: 12.0649044	total: 989ms	remaining: 1.16s
46:	learn: 11.8934147	total: 1.01s	remaining: 1.14s
47:	learn: 11.7212144	total: 1.03s	remaining: 1.12s
48:	learn: 11.5585360	total: 1.05s	remaining: 1.1s
49:	learn: 11.4204354	total: 1.07s	remaining: 1.07s
50:	learn: 11.3264427	total: 1.09s	remaining: 1.05s
51:	learn: 11.2063486	total: 1.11s	remaining: 1.03s
52:	learn: 11.0712206	total: 1.14s	remaining: 1.01s
53:	learn: 10.9205088	total: 1.16s	remaining: 988ms
54:	learn: 10.8155412	total: 1.18s	remaining: 967ms
55:	learn: 10.7286854	total: 1.2s	remaining: 943ms
56:	learn: 10.6088466	total: 1.22s	remaining: 919ms
57:	learn: 10.4999885	total: 1.24s	remaining: 896ms
58:	learn: 10.4022194	total: 1.25s	remaining: 872ms
59:	learn: 10.3147130	total: 1.27s	remaining: 849ms
60:	learn: 10.2011489	total: 1.29s	remaining: 826ms
61:	learn: 10.1094372	total: 1.31s	remaining: 805ms
62:	learn: 10.0248970	total: 1.34s	remaining: 785ms
63:	learn: 9.9192710	total: 1.37s	remaining: 769ms
64:	learn: 9.8577360	total: 1.39s	remaining: 748ms
65:	learn: 9.7737103	total: 1.41s	remaining: 727ms
66:	learn: 9.6706617	total: 1.43s	remaining: 705ms
67:	learn: 9.6042727	total: 1.45s	remaining: 684ms
68:	learn: 9.5355377	total: 1.48s	remaining: 663ms
69:	learn: 9.4615216	total: 1.5s	remaining: 641ms
70:	learn: 9.3702045	total: 1.52s	remaining: 622ms
71:	learn: 9.3035392	total: 1.54s	remaining: 601ms
72:	learn: 9.2322686	total: 1.58s	remaining: 584ms
73:	learn: 9.1431916	total: 1.6s	remaining: 563ms
74:	learn: 9.0869466	total: 1.62s	remaining: 541ms
75:	learn: 9.0117390	total: 1.65s	remaining: 519ms
76:	learn: 8.9580443	total: 1.67s	remaining: 499ms
77:	learn: 8.8649939	total: 1.69s	remaining: 478ms
78:	learn: 8.7792713	total: 1.72s	remaining: 456ms
79:	learn: 8.7164606	total: 1.74s	remaining: 435ms
80:	learn: 8.6340559	total: 1.77s	remaining: 415ms
81:	learn: 8.5697104	total: 1.8s	remaining: 395ms
82:	learn: 8.5273758	total: 1.82s	remaining: 373ms
83:	learn: 8.4394788	total: 1.85s	remaining: 352ms
84:	learn: 8.3672415	total: 1.87s	remaining: 330ms
85:	learn: 8.2813444	total: 1.89s	remaining: 308ms
86:	learn: 8.1994983	total: 1.91s	remaining: 286ms
87:	learn: 8.1003577	total: 1.94s	remaining: 265ms
88:	learn: 8.0501976	total: 1.97s	remaining: 243ms
89:	learn: 7.9718830	total: 2s	remaining: 222ms
90:	learn: 7.9114534	total: 2.02s	remaining: 200ms
91:	learn: 7.8319856	total: 2.04s	remaining: 177ms
92:	learn: 7.7731246	total: 2.06s	remaining: 155ms
93:	learn: 7.7165850	total: 2.08s	remaining: 133ms
94:	learn: 7.6448498	total: 2.1s	remaining: 111ms
95:	learn: 7.5709919	total: 2.12s	remaining: 88.5ms
96:	learn: 7.5184082	total: 2.15s	remaining: 66.4ms
97:	learn: 7.4786866	total: 2.17s	remaining: 44.4ms
98:	learn: 7.4301201	total: 2.2s	remaining: 22.2ms
99:	learn: 7.3416932	total: 2.23s	remaining: 0us
0:	learn: 42.6391731	total: 24.8ms	remaining: 2.45s
1:	learn: 41.2755994	total: 45.1ms	remaining: 2.21s
2:	learn: 40.1418308	total: 66.2ms	remaining: 2.14s
3:	learn: 38.9707156	total: 86.9ms	remaining: 2.08s
4:	learn: 37.8723622	total: 108ms	remaining: 2.05s
5:	learn: 36.6981834	total: 131ms	remaining: 2.05s
6:	learn: 35.6210108	total: 162ms	remaining: 2.15s
7:	learn: 34.5154078	total: 187ms	remaining: 2.15s
8:	learn: 33.4581011	total: 219ms	remaining: 2.21s
9:	learn: 32.5872455	total: 242ms	remaining: 2.17s
10:	learn: 31.6311510	total: 264ms	remaining: 2.14s
11:	learn: 30.8222401	total: 288ms	remaining: 2.11s
12:	learn: 29.9305192	total: 309ms	remaining: 2.07s
13:	learn: 29.0742133	total: 333ms	remaining: 2.05s
14:	learn: 28.3687544	total: 355ms	remaining: 2.01s
15:	learn: 27.5730558	total: 388ms	remaining: 2.04s
16:	learn: 26.9376082	total: 415ms	remaining: 2.02s
17:	learn: 26.2254949	total: 438ms	remaining: 1.99s
18:	learn: 25.5974939	total: 468ms	remaining: 2s
19:	learn: 25.0097187	total: 493ms	remaining: 1.97s
20:	learn: 24.3722243	total: 516ms	remaining: 1.94s
21:	learn: 23.8249140	total: 539ms	remaining: 1.91s
22:	learn: 23.3953969	total: 561ms	remaining: 1.88s
23:	learn: 22.8726238	total: 593ms	remaining: 1.88s
24:	learn: 22.3407723	total: 616ms	remaining: 1.85s
25:	learn: 21.8360330	total: 637ms	remaining: 1.81s
26:	learn: 21.4050665	total: 639ms	remaining: 1.73s
27:	learn: 20.9389245	total: 660ms	remaining: 1.7s
28:	learn: 20.5166767	total: 682ms	remaining: 1.67s
29:	learn: 20.1190641	total: 712ms	remaining: 1.66s
30:	learn: 19.7189491	total: 733ms	remaining: 1.63s
31:	learn: 19.3748181	total: 754ms	remaining: 1.6s
32:	learn: 19.0116312	total: 776ms	remaining: 1.57s
33:	learn: 18.6982407	total: 806ms	remaining: 1.56s
34:	learn: 18.3109965	total: 833ms	remaining: 1.55s
35:	learn: 17.9620798	total: 856ms	remaining: 1.52s
36:	learn: 17.6396740	total: 879ms	remaining: 1.5s
37:	learn: 17.3596962	total: 903ms	remaining: 1.47s
38:	learn: 17.0107107	total: 927ms	remaining: 1.45s
39:	learn: 16.7000770	total: 949ms	remaining: 1.42s
40:	learn: 16.4406609	total: 970ms	remaining: 1.4s
41:	learn: 16.2482533	total: 998ms	remaining: 1.38s
42:	learn: 16.0039366	total: 1.02s	remaining: 1.36s
43:	learn: 15.7538572	total: 1.05s	remaining: 1.33s
44:	learn: 15.5095380	total: 1.07s	remaining: 1.3s
45:	learn: 15.2678319	total: 1.09s	remaining: 1.28s
46:	learn: 15.0494495	total: 1.11s	remaining: 1.25s
47:	learn: 14.8347400	total: 1.13s	remaining: 1.23s
48:	learn: 14.6035398	total: 1.15s	remaining: 1.2s
49:	learn: 14.3913639	total: 1.18s	remaining: 1.18s
50:	learn: 14.1928022	total: 1.2s	remaining: 1.15s
51:	learn: 13.9985580	total: 1.23s	remaining: 1.13s
52:	learn: 13.8322220	total: 1.25s	remaining: 1.11s
53:	learn: 13.6455937	total: 1.28s	remaining: 1.09s
54:	learn: 13.4402019	total: 1.3s	remaining: 1.06s
55:	learn: 13.2899163	total: 1.32s	remaining: 1.04s
56:	learn: 13.1694614	total: 1.34s	remaining: 1.01s
57:	learn: 13.0722892	total: 1.36s	remaining: 987ms
58:	learn: 12.9065251	total: 1.39s	remaining: 963ms
59:	learn: 12.6992885	total: 1.41s	remaining: 938ms
60:	learn: 12.5384562	total: 1.44s	remaining: 920ms
61:	learn: 12.4105591	total: 1.46s	remaining: 895ms
62:	learn: 12.2952504	total: 1.48s	remaining: 870ms
63:	learn: 12.1427365	total: 1.5s	remaining: 844ms
64:	learn: 11.9954361	total: 1.52s	remaining: 819ms
65:	learn: 11.8161234	total: 1.54s	remaining: 794ms
66:	learn: 11.6849978	total: 1.56s	remaining: 769ms
67:	learn: 11.5405300	total: 1.58s	remaining: 744ms
68:	learn: 11.3806762	total: 1.6s	remaining: 720ms
69:	learn: 11.2746848	total: 1.62s	remaining: 696ms
70:	learn: 11.1518256	total: 1.66s	remaining: 676ms
71:	learn: 11.0730779	total: 1.68s	remaining: 653ms
72:	learn: 10.9736725	total: 1.7s	remaining: 630ms
73:	learn: 10.8430563	total: 1.73s	remaining: 606ms
74:	learn: 10.7142220	total: 1.75s	remaining: 583ms
75:	learn: 10.6141640	total: 1.77s	remaining: 558ms
76:	learn: 10.5264853	total: 1.79s	remaining: 534ms
77:	learn: 10.3929390	total: 1.81s	remaining: 510ms
78:	learn: 10.3163176	total: 1.83s	remaining: 487ms
79:	learn: 10.2171240	total: 1.86s	remaining: 464ms
80:	learn: 10.1381738	total: 1.88s	remaining: 441ms
81:	learn: 10.0402437	total: 1.9s	remaining: 417ms
82:	learn: 9.9223565	total: 1.92s	remaining: 393ms
83:	learn: 9.8184057	total: 1.94s	remaining: 370ms
84:	learn: 9.7221978	total: 1.96s	remaining: 346ms
85:	learn: 9.6417031	total: 1.98s	remaining: 322ms
86:	learn: 9.5593969	total: 2s	remaining: 299ms
87:	learn: 9.4678992	total: 2.02s	remaining: 275ms
88:	learn: 9.3855757	total: 2.04s	remaining: 252ms
89:	learn: 9.2884031	total: 2.07s	remaining: 230ms
90:	learn: 9.2099382	total: 2.09s	remaining: 207ms
91:	learn: 9.1357061	total: 2.12s	remaining: 184ms
92:	learn: 9.0690328	total: 2.14s	remaining: 161ms
93:	learn: 8.9904694	total: 2.16s	remaining: 138ms
94:	learn: 8.9256893	total: 2.18s	remaining: 115ms
95:	learn: 8.8600084	total: 2.21s	remaining: 92ms
96:	learn: 8.8091154	total: 2.23s	remaining: 68.9ms
97:	learn: 8.7280528	total: 2.25s	remaining: 45.9ms
98:	learn: 8.6761440	total: 2.27s	remaining: 22.9ms
99:	learn: 8.6181192	total: 2.29s	remaining: 0us
0:	learn: 45.9988128	total: 20.6ms	remaining: 2.04s
1:	learn: 44.7653841	total: 40.7ms	remaining: 1.99s
2:	learn: 43.4693688	total: 61.2ms	remaining: 1.98s
3:	learn: 42.2495168	total: 80.5ms	remaining: 1.93s
4:	learn: 41.2273909	total: 100ms	remaining: 1.9s
5:	learn: 40.0623352	total: 120ms	remaining: 1.88s
6:	learn: 39.0139162	total: 143ms	remaining: 1.9s
7:	learn: 37.9905503	total: 166ms	remaining: 1.91s
8:	learn: 37.1460179	total: 194ms	remaining: 1.96s
9:	learn: 36.1321769	total: 218ms	remaining: 1.96s
10:	learn: 35.2434048	total: 241ms	remaining: 1.95s
11:	learn: 34.3919476	total: 263ms	remaining: 1.93s
12:	learn: 33.5464400	total: 286ms	remaining: 1.91s
13:	learn: 32.5752711	total: 307ms	remaining: 1.88s
14:	learn: 31.8573507	total: 328ms	remaining: 1.85s
15:	learn: 31.1481980	total: 347ms	remaining: 1.82s
16:	learn: 30.4578224	total: 372ms	remaining: 1.81s
17:	learn: 29.8404841	total: 399ms	remaining: 1.82s
18:	learn: 29.1314604	total: 423ms	remaining: 1.8s
19:	learn: 28.5024706	total: 443ms	remaining: 1.77s
20:	learn: 27.9368896	total: 462ms	remaining: 1.74s
21:	learn: 27.2136491	total: 483ms	remaining: 1.71s
22:	learn: 26.6230078	total: 504ms	remaining: 1.69s
23:	learn: 26.0604635	total: 525ms	remaining: 1.66s
24:	learn: 25.6309424	total: 544ms	remaining: 1.63s
25:	learn: 25.1761698	total: 567ms	remaining: 1.61s
26:	learn: 24.6368216	total: 589ms	remaining: 1.59s
27:	learn: 24.1028972	total: 616ms	remaining: 1.58s
28:	learn: 23.3990224	total: 640ms	remaining: 1.57s
29:	learn: 22.9088559	total: 661ms	remaining: 1.54s
30:	learn: 22.4793217	total: 684ms	remaining: 1.52s
31:	learn: 22.0592669	total: 706ms	remaining: 1.5s
32:	learn: 21.6715811	total: 724ms	remaining: 1.47s
33:	learn: 21.1907911	total: 744ms	remaining: 1.44s
34:	learn: 20.8045504	total: 763ms	remaining: 1.42s
35:	learn: 20.4670784	total: 783ms	remaining: 1.39s
36:	learn: 20.0165788	total: 803ms	remaining: 1.37s
37:	learn: 19.6859173	total: 833ms	remaining: 1.36s
38:	learn: 19.3641283	total: 854ms	remaining: 1.33s
39:	learn: 19.0291194	total: 873ms	remaining: 1.31s
40:	learn: 18.7204204	total: 893ms	remaining: 1.28s
41:	learn: 18.4000101	total: 915ms	remaining: 1.26s
42:	learn: 18.0910445	total: 936ms	remaining: 1.24s
43:	learn: 17.8354609	total: 955ms	remaining: 1.21s
44:	learn: 17.4982243	total: 974ms	remaining: 1.19s
45:	learn: 17.1895897	total: 993ms	remaining: 1.17s
46:	learn: 16.9440833	total: 1.01s	remaining: 1.14s
47:	learn: 16.6112102	total: 1.04s	remaining: 1.12s
48:	learn: 16.3320235	total: 1.06s	remaining: 1.11s
49:	learn: 16.0523610	total: 1.09s	remaining: 1.09s
50:	learn: 15.8256738	total: 1.11s	remaining: 1.06s
51:	learn: 15.5699393	total: 1.13s	remaining: 1.04s
52:	learn: 15.3531799	total: 1.15s	remaining: 1.02s
53:	learn: 15.1364230	total: 1.17s	remaining: 995ms
54:	learn: 15.0012063	total: 1.19s	remaining: 971ms
55:	learn: 14.7171740	total: 1.21s	remaining: 948ms
56:	learn: 14.5897576	total: 1.21s	remaining: 912ms
57:	learn: 14.3886878	total: 1.23s	remaining: 890ms
58:	learn: 14.1942115	total: 1.26s	remaining: 874ms
59:	learn: 14.0135398	total: 1.28s	remaining: 853ms
60:	learn: 13.8118263	total: 1.3s	remaining: 831ms
61:	learn: 13.6444047	total: 1.32s	remaining: 808ms
62:	learn: 13.4728078	total: 1.34s	remaining: 786ms
63:	learn: 13.3104934	total: 1.36s	remaining: 764ms
64:	learn: 13.1385144	total: 1.38s	remaining: 742ms
65:	learn: 13.0087777	total: 1.4s	remaining: 719ms
66:	learn: 12.8457835	total: 1.42s	remaining: 698ms
67:	learn: 12.6975263	total: 1.44s	remaining: 676ms
68:	learn: 12.5582839	total: 1.47s	remaining: 659ms
69:	learn: 12.4210776	total: 1.49s	remaining: 639ms
70:	learn: 12.2737286	total: 1.51s	remaining: 618ms
71:	learn: 12.1587075	total: 1.53s	remaining: 597ms
72:	learn: 12.0323022	total: 1.56s	remaining: 576ms
73:	learn: 11.8667900	total: 1.58s	remaining: 554ms
74:	learn: 11.6990385	total: 1.59s	remaining: 532ms
75:	learn: 11.5755058	total: 1.61s	remaining: 510ms
76:	learn: 11.4954152	total: 1.64s	remaining: 488ms
77:	learn: 11.3827464	total: 1.66s	remaining: 468ms
78:	learn: 11.2924968	total: 1.68s	remaining: 448ms
79:	learn: 11.1938217	total: 1.71s	remaining: 426ms
80:	learn: 11.0766477	total: 1.72s	remaining: 404ms
81:	learn: 10.9824487	total: 1.74s	remaining: 382ms
82:	learn: 10.8707168	total: 1.76s	remaining: 361ms
83:	learn: 10.7746205	total: 1.78s	remaining: 339ms
84:	learn: 10.6738461	total: 1.8s	remaining: 318ms
85:	learn: 10.5871227	total: 1.82s	remaining: 297ms
86:	learn: 10.4566607	total: 1.84s	remaining: 275ms
87:	learn: 10.3506633	total: 1.86s	remaining: 254ms
88:	learn: 10.2104644	total: 1.89s	remaining: 234ms
89:	learn: 10.0965839	total: 1.92s	remaining: 213ms
90:	learn: 9.9802927	total: 1.94s	remaining: 192ms
91:	learn: 9.9195276	total: 1.96s	remaining: 171ms
92:	learn: 9.8559698	total: 1.99s	remaining: 149ms
93:	learn: 9.7396780	total: 2s	remaining: 128ms
94:	learn: 9.6945725	total: 2.02s	remaining: 107ms
95:	learn: 9.5897565	total: 2.05s	remaining: 85.3ms
96:	learn: 9.5012011	total: 2.07s	remaining: 64ms
97:	learn: 9.4123715	total: 2.1s	remaining: 42.8ms
98:	learn: 9.3288366	total: 2.12s	remaining: 21.4ms
99:	learn: 9.2648715	total: 2.13s	remaining: 0us
0:	learn: 45.5336925	total: 19.2ms	remaining: 1.9s
1:	learn: 44.2714175	total: 38.4ms	remaining: 1.88s
2:	learn: 43.1477944	total: 56.8ms	remaining: 1.84s
3:	learn: 41.9891776	total: 76.1ms	remaining: 1.83s
4:	learn: 41.0638986	total: 98ms	remaining: 1.86s
5:	learn: 39.9800801	total: 124ms	remaining: 1.94s
6:	learn: 38.9048061	total: 150ms	remaining: 1.99s
7:	learn: 38.0749429	total: 172ms	remaining: 1.98s
8:	learn: 37.3966644	total: 194ms	remaining: 1.96s
9:	learn: 36.4671331	total: 215ms	remaining: 1.93s
10:	learn: 35.6649217	total: 239ms	remaining: 1.93s
11:	learn: 34.8793657	total: 259ms	remaining: 1.9s
12:	learn: 34.0737401	total: 278ms	remaining: 1.86s
13:	learn: 33.2560999	total: 298ms	remaining: 1.83s
14:	learn: 32.4184623	total: 319ms	remaining: 1.81s
15:	learn: 31.6803206	total: 345ms	remaining: 1.81s
16:	learn: 30.9276344	total: 368ms	remaining: 1.79s
17:	learn: 30.3590041	total: 389ms	remaining: 1.77s
18:	learn: 29.7789888	total: 408ms	remaining: 1.74s
19:	learn: 29.1098261	total: 429ms	remaining: 1.72s
20:	learn: 28.4824889	total: 451ms	remaining: 1.69s
21:	learn: 27.9675744	total: 469ms	remaining: 1.66s
22:	learn: 27.4793215	total: 489ms	remaining: 1.64s
23:	learn: 26.8920542	total: 511ms	remaining: 1.62s
24:	learn: 26.2736657	total: 533ms	remaining: 1.6s
25:	learn: 25.6908003	total: 563ms	remaining: 1.6s
26:	learn: 25.1288844	total: 587ms	remaining: 1.59s
27:	learn: 24.6933320	total: 611ms	remaining: 1.57s
28:	learn: 24.1372567	total: 634ms	remaining: 1.55s
29:	learn: 23.7103515	total: 653ms	remaining: 1.52s
30:	learn: 23.1647499	total: 676ms	remaining: 1.5s
31:	learn: 22.7009216	total: 695ms	remaining: 1.48s
32:	learn: 22.2792229	total: 716ms	remaining: 1.45s
33:	learn: 21.8004244	total: 737ms	remaining: 1.43s
34:	learn: 21.3578361	total: 760ms	remaining: 1.41s
35:	learn: 21.0262832	total: 787ms	remaining: 1.4s
36:	learn: 20.5787502	total: 809ms	remaining: 1.38s
37:	learn: 20.3083055	total: 829ms	remaining: 1.35s
38:	learn: 19.9902529	total: 850ms	remaining: 1.33s
39:	learn: 19.6059571	total: 870ms	remaining: 1.3s
40:	learn: 19.3890959	total: 890ms	remaining: 1.28s
41:	learn: 19.0549255	total: 909ms	remaining: 1.25s
42:	learn: 18.7283215	total: 928ms	remaining: 1.23s
43:	learn: 18.4448725	total: 951ms	remaining: 1.21s
44:	learn: 18.1578001	total: 975ms	remaining: 1.19s
45:	learn: 17.8777474	total: 1s	remaining: 1.18s
46:	learn: 17.6428221	total: 1.03s	remaining: 1.16s
47:	learn: 17.3887752	total: 1.05s	remaining: 1.14s
48:	learn: 17.1475761	total: 1.07s	remaining: 1.11s
49:	learn: 16.9064363	total: 1.09s	remaining: 1.09s
50:	learn: 16.6414681	total: 1.11s	remaining: 1.07s
51:	learn: 16.4549974	total: 1.13s	remaining: 1.05s
52:	learn: 16.2617558	total: 1.15s	remaining: 1.02s
53:	learn: 16.0258241	total: 1.18s	remaining: 1s
54:	learn: 15.7694686	total: 1.2s	remaining: 985ms
55:	learn: 15.5449602	total: 1.23s	remaining: 964ms
56:	learn: 15.3515330	total: 1.25s	remaining: 940ms
57:	learn: 15.1120403	total: 1.26s	remaining: 916ms
58:	learn: 14.9131368	total: 1.28s	remaining: 894ms
59:	learn: 14.8021921	total: 1.3s	remaining: 870ms
60:	learn: 14.6564259	total: 1.32s	remaining: 846ms
61:	learn: 14.5253260	total: 1.34s	remaining: 823ms
62:	learn: 14.3975427	total: 1.36s	remaining: 801ms
63:	learn: 14.3060204	total: 1.39s	remaining: 783ms
64:	learn: 14.1283681	total: 1.42s	remaining: 763ms
65:	learn: 14.0159063	total: 1.44s	remaining: 741ms
66:	learn: 13.8712541	total: 1.46s	remaining: 720ms
67:	learn: 13.7852998	total: 1.48s	remaining: 699ms
68:	learn: 13.6790164	total: 1.51s	remaining: 677ms
69:	learn: 13.5253745	total: 1.53s	remaining: 655ms
70:	learn: 13.3959663	total: 1.55s	remaining: 633ms
71:	learn: 13.2062955	total: 1.57s	remaining: 610ms
72:	learn: 13.0788709	total: 1.59s	remaining: 588ms
73:	learn: 12.9513184	total: 1.61s	remaining: 566ms
74:	learn: 12.8198556	total: 1.64s	remaining: 546ms
75:	learn: 12.7137549	total: 1.66s	remaining: 525ms
76:	learn: 12.6243477	total: 1.68s	remaining: 502ms
77:	learn: 12.5241564	total: 1.7s	remaining: 480ms
78:	learn: 12.4445782	total: 1.72s	remaining: 458ms
79:	learn: 12.3816501	total: 1.74s	remaining: 435ms
80:	learn: 12.2846914	total: 1.76s	remaining: 413ms
81:	learn: 12.1419498	total: 1.78s	remaining: 391ms
82:	learn: 12.0846494	total: 1.8s	remaining: 369ms
83:	learn: 11.9851484	total: 1.83s	remaining: 348ms
84:	learn: 11.8905738	total: 1.86s	remaining: 328ms
85:	learn: 11.7718790	total: 1.88s	remaining: 306ms
86:	learn: 11.6854413	total: 1.9s	remaining: 285ms
87:	learn: 11.6206110	total: 1.93s	remaining: 263ms
88:	learn: 11.5376098	total: 1.95s	remaining: 241ms
89:	learn: 11.4235068	total: 1.97s	remaining: 219ms
90:	learn: 11.3477955	total: 1.99s	remaining: 197ms
91:	learn: 11.2663772	total: 2.01s	remaining: 175ms
92:	learn: 11.1916556	total: 2.03s	remaining: 153ms
93:	learn: 11.0921504	total: 2.06s	remaining: 131ms
94:	learn: 10.9622375	total: 2.08s	remaining: 110ms
95:	learn: 10.8882085	total: 2.1s	remaining: 87.5ms
96:	learn: 10.8086218	total: 2.12s	remaining: 65.5ms
97:	learn: 10.7552220	total: 2.14s	remaining: 43.7ms
98:	learn: 10.6929666	total: 2.16s	remaining: 21.8ms
99:	learn: 10.6200033	total: 2.18s	remaining: 0us
0:	learn: 46.3366259	total: 25.3ms	remaining: 2.51s
1:	learn: 45.2205278	total: 51.6ms	remaining: 2.53s
2:	learn: 43.9887404	total: 73.8ms	remaining: 2.39s
3:	learn: 42.8240666	total: 95.8ms	remaining: 2.3s
4:	learn: 41.6086617	total: 117ms	remaining: 2.23s
5:	learn: 40.5606446	total: 136ms	remaining: 2.13s
6:	learn: 39.6241326	total: 156ms	remaining: 2.07s
7:	learn: 39.0016852	total: 173ms	remaining: 2s
8:	learn: 37.8501670	total: 192ms	remaining: 1.94s
9:	learn: 37.0215474	total: 210ms	remaining: 1.89s
10:	learn: 36.0215020	total: 228ms	remaining: 1.84s
11:	learn: 35.2421331	total: 247ms	remaining: 1.81s
12:	learn: 34.5416837	total: 266ms	remaining: 1.78s
13:	learn: 33.7787649	total: 289ms	remaining: 1.77s
14:	learn: 32.9860883	total: 315ms	remaining: 1.78s
15:	learn: 32.2123752	total: 333ms	remaining: 1.75s
16:	learn: 31.3564648	total: 352ms	remaining: 1.72s
17:	learn: 30.7859979	total: 371ms	remaining: 1.69s
18:	learn: 30.1443515	total: 390ms	remaining: 1.66s
19:	learn: 29.4880724	total: 408ms	remaining: 1.63s
20:	learn: 28.9635727	total: 426ms	remaining: 1.6s
21:	learn: 28.4853342	total: 444ms	remaining: 1.57s
22:	learn: 27.9796348	total: 464ms	remaining: 1.55s
23:	learn: 27.4360487	total: 484ms	remaining: 1.53s
24:	learn: 26.8685214	total: 504ms	remaining: 1.51s
25:	learn: 26.1769206	total: 530ms	remaining: 1.51s
26:	learn: 25.7146048	total: 557ms	remaining: 1.5s
27:	learn: 25.2614850	total: 579ms	remaining: 1.49s
28:	learn: 24.6626472	total: 600ms	remaining: 1.47s
29:	learn: 24.2501259	total: 620ms	remaining: 1.45s
30:	learn: 23.7892661	total: 643ms	remaining: 1.43s
31:	learn: 23.2729078	total: 663ms	remaining: 1.41s
32:	learn: 22.8969731	total: 682ms	remaining: 1.38s
33:	learn: 22.4567570	total: 703ms	remaining: 1.36s
34:	learn: 22.0569858	total: 728ms	remaining: 1.35s
35:	learn: 21.7317775	total: 751ms	remaining: 1.33s
36:	learn: 21.3890971	total: 769ms	remaining: 1.31s
37:	learn: 21.0664504	total: 787ms	remaining: 1.28s
38:	learn: 20.7379659	total: 805ms	remaining: 1.26s
39:	learn: 20.4423699	total: 824ms	remaining: 1.24s
40:	learn: 20.1526720	total: 842ms	remaining: 1.21s
41:	learn: 19.8706547	total: 862ms	remaining: 1.19s
42:	learn: 19.5139134	total: 881ms	remaining: 1.17s
43:	learn: 19.3495951	total: 902ms	remaining: 1.15s
44:	learn: 19.1314757	total: 923ms	remaining: 1.13s
45:	learn: 18.7971159	total: 951ms	remaining: 1.12s
46:	learn: 18.5447051	total: 972ms	remaining: 1.1s
47:	learn: 18.2328785	total: 994ms	remaining: 1.08s
48:	learn: 17.9622938	total: 1.01s	remaining: 1.06s
49:	learn: 17.7264205	total: 1.03s	remaining: 1.03s
50:	learn: 17.4530592	total: 1.06s	remaining: 1.01s
51:	learn: 17.2236644	total: 1.07s	remaining: 992ms
52:	learn: 17.0122792	total: 1.09s	remaining: 971ms
53:	learn: 16.7599064	total: 1.12s	remaining: 957ms
54:	learn: 16.5146699	total: 1.15s	remaining: 937ms
55:	learn: 16.2531414	total: 1.17s	remaining: 916ms
56:	learn: 16.0997208	total: 1.18s	remaining: 893ms
57:	learn: 15.8452412	total: 1.2s	remaining: 870ms
58:	learn: 15.6294900	total: 1.22s	remaining: 848ms
59:	learn: 15.4564548	total: 1.24s	remaining: 826ms
60:	learn: 15.2978533	total: 1.26s	remaining: 804ms
61:	learn: 15.0976912	total: 1.28s	remaining: 782ms
62:	learn: 14.9094446	total: 1.29s	remaining: 760ms
63:	learn: 14.7415094	total: 1.31s	remaining: 739ms
64:	learn: 14.6123806	total: 1.33s	remaining: 719ms
65:	learn: 14.4744916	total: 1.37s	remaining: 704ms
66:	learn: 14.3212717	total: 1.39s	remaining: 685ms
67:	learn: 14.1768047	total: 1.41s	remaining: 665ms
68:	learn: 14.0387344	total: 1.43s	remaining: 643ms
69:	learn: 13.8987579	total: 1.45s	remaining: 623ms
70:	learn: 13.7825740	total: 1.47s	remaining: 602ms
71:	learn: 13.6818548	total: 1.5s	remaining: 585ms
72:	learn: 13.5356993	total: 1.53s	remaining: 565ms
73:	learn: 13.4408704	total: 1.55s	remaining: 545ms
74:	learn: 13.2992218	total: 1.58s	remaining: 527ms
75:	learn: 13.1547092	total: 1.61s	remaining: 507ms
76:	learn: 13.0800189	total: 1.63s	remaining: 486ms
77:	learn: 12.9434711	total: 1.65s	remaining: 465ms
78:	learn: 12.8327325	total: 1.67s	remaining: 444ms
79:	learn: 12.7238946	total: 1.69s	remaining: 423ms
80:	learn: 12.6229528	total: 1.72s	remaining: 402ms
81:	learn: 12.5216078	total: 1.74s	remaining: 382ms
82:	learn: 12.4182254	total: 1.76s	remaining: 361ms
83:	learn: 12.3097978	total: 1.79s	remaining: 342ms
84:	learn: 12.1852056	total: 1.83s	remaining: 323ms
85:	learn: 12.0739627	total: 1.85s	remaining: 301ms
86:	learn: 11.9475583	total: 1.88s	remaining: 280ms
87:	learn: 11.8403806	total: 1.9s	remaining: 259ms
88:	learn: 11.7294124	total: 1.92s	remaining: 237ms
89:	learn: 11.6395689	total: 1.94s	remaining: 216ms
90:	learn: 11.5510643	total: 1.97s	remaining: 195ms
91:	learn: 11.4455301	total: 1.99s	remaining: 173ms
92:	learn: 11.3368661	total: 2.02s	remaining: 152ms
93:	learn: 11.2270796	total: 2.05s	remaining: 131ms
94:	learn: 11.1168414	total: 2.07s	remaining: 109ms
95:	learn: 11.0310985	total: 2.1s	remaining: 87.5ms
96:	learn: 10.9735185	total: 2.12s	remaining: 65.6ms
97:	learn: 10.8575874	total: 2.14s	remaining: 43.7ms
98:	learn: 10.7816173	total: 2.16s	remaining: 21.9ms
99:	learn: 10.7111737	total: 2.19s	remaining: 0us
0:	learn: 27.3351083	total: 26.9ms	remaining: 2.67s
1:	learn: 26.7523848	total: 54.2ms	remaining: 2.66s
2:	learn: 26.1326580	total: 81ms	remaining: 2.62s
3:	learn: 25.5584244	total: 108ms	remaining: 2.59s
4:	learn: 25.0458748	total: 143ms	remaining: 2.71s
5:	learn: 24.4868837	total: 170ms	remaining: 2.66s
6:	learn: 23.9306999	total: 204ms	remaining: 2.72s
7:	learn: 23.4799808	total: 233ms	remaining: 2.69s
8:	learn: 22.9510347	total: 261ms	remaining: 2.64s
9:	learn: 22.4529079	total: 287ms	remaining: 2.58s
10:	learn: 21.9320739	total: 314ms	remaining: 2.54s
11:	learn: 21.4729295	total: 340ms	remaining: 2.49s
12:	learn: 21.0885550	total: 375ms	remaining: 2.51s
13:	learn: 20.7063206	total: 403ms	remaining: 2.47s
14:	learn: 20.3539530	total: 440ms	remaining: 2.49s
15:	learn: 20.0071947	total: 468ms	remaining: 2.46s
16:	learn: 19.6579830	total: 497ms	remaining: 2.43s
17:	learn: 19.2450502	total: 524ms	remaining: 2.39s
18:	learn: 18.8010420	total: 553ms	remaining: 2.36s
19:	learn: 18.4055273	total: 581ms	remaining: 2.33s
20:	learn: 18.0395642	total: 621ms	remaining: 2.33s
21:	learn: 17.6568400	total: 654ms	remaining: 2.32s
22:	learn: 17.4284559	total: 684ms	remaining: 2.29s
23:	learn: 17.0957528	total: 710ms	remaining: 2.25s
24:	learn: 16.7636157	total: 737ms	remaining: 2.21s
25:	learn: 16.4987969	total: 764ms	remaining: 2.17s
26:	learn: 16.2204177	total: 792ms	remaining: 2.14s
27:	learn: 15.9525124	total: 819ms	remaining: 2.1s
28:	learn: 15.5905943	total: 845ms	remaining: 2.07s
29:	learn: 15.3628633	total: 884ms	remaining: 2.06s
30:	learn: 15.1420693	total: 923ms	remaining: 2.06s
31:	learn: 14.9419461	total: 952ms	remaining: 2.02s
32:	learn: 14.7386592	total: 979ms	remaining: 1.99s
33:	learn: 14.5398023	total: 1.01s	remaining: 1.95s
34:	learn: 14.2644206	total: 1.03s	remaining: 1.92s
35:	learn: 14.0168503	total: 1.06s	remaining: 1.88s
36:	learn: 13.7687637	total: 1.09s	remaining: 1.85s
37:	learn: 13.5855913	total: 1.13s	remaining: 1.84s
38:	learn: 13.3656902	total: 1.16s	remaining: 1.82s
39:	learn: 13.2111716	total: 1.19s	remaining: 1.78s
40:	learn: 13.0360149	total: 1.22s	remaining: 1.75s
41:	learn: 12.8789444	total: 1.24s	remaining: 1.72s
42:	learn: 12.6680179	total: 1.27s	remaining: 1.69s
43:	learn: 12.4892268	total: 1.3s	remaining: 1.65s
44:	learn: 12.3275828	total: 1.33s	remaining: 1.62s
45:	learn: 12.2035682	total: 1.38s	remaining: 1.62s
46:	learn: 12.0777397	total: 1.41s	remaining: 1.59s
47:	learn: 11.9055552	total: 1.43s	remaining: 1.55s
48:	learn: 11.7465481	total: 1.46s	remaining: 1.52s
49:	learn: 11.5961200	total: 1.49s	remaining: 1.49s
50:	learn: 11.4305519	total: 1.52s	remaining: 1.46s
51:	learn: 11.2794033	total: 1.54s	remaining: 1.43s
52:	learn: 11.1586950	total: 1.57s	remaining: 1.4s
53:	learn: 11.0432937	total: 1.62s	remaining: 1.38s
54:	learn: 10.9094838	total: 1.65s	remaining: 1.35s
55:	learn: 10.7713451	total: 1.68s	remaining: 1.32s
56:	learn: 10.6664177	total: 1.7s	remaining: 1.28s
57:	learn: 10.5600117	total: 1.73s	remaining: 1.25s
58:	learn: 10.4438974	total: 1.76s	remaining: 1.22s
59:	learn: 10.3294224	total: 1.79s	remaining: 1.19s
60:	learn: 10.2510301	total: 1.82s	remaining: 1.17s
61:	learn: 10.1363264	total: 1.85s	remaining: 1.14s
62:	learn: 10.0415049	total: 1.89s	remaining: 1.11s
63:	learn: 9.9499833	total: 1.92s	remaining: 1.08s
64:	learn: 9.8774263	total: 1.95s	remaining: 1.05s
65:	learn: 9.7458853	total: 1.97s	remaining: 1.02s
66:	learn: 9.6733951	total: 2s	remaining: 988ms
67:	learn: 9.5861856	total: 2.04s	remaining: 960ms
68:	learn: 9.4524193	total: 2.07s	remaining: 929ms
69:	learn: 9.3501165	total: 2.1s	remaining: 898ms
70:	learn: 9.3092902	total: 2.13s	remaining: 870ms
71:	learn: 9.2244222	total: 2.16s	remaining: 839ms
72:	learn: 9.1554253	total: 2.19s	remaining: 808ms
73:	learn: 9.1098892	total: 2.21s	remaining: 778ms
74:	learn: 9.0210213	total: 2.26s	remaining: 752ms
75:	learn: 8.9303181	total: 2.28s	remaining: 722ms
76:	learn: 8.8489769	total: 2.31s	remaining: 691ms
77:	learn: 8.7651580	total: 2.34s	remaining: 661ms
78:	learn: 8.7126796	total: 2.38s	remaining: 632ms
79:	learn: 8.6404554	total: 2.41s	remaining: 602ms
80:	learn: 8.5844756	total: 2.44s	remaining: 572ms
81:	learn: 8.5234333	total: 2.47s	remaining: 542ms
82:	learn: 8.4298762	total: 2.5s	remaining: 511ms
83:	learn: 8.3483002	total: 2.52s	remaining: 481ms
84:	learn: 8.2670647	total: 2.55s	remaining: 450ms
85:	learn: 8.1917398	total: 2.58s	remaining: 420ms
86:	learn: 8.1073642	total: 2.61s	remaining: 390ms
87:	learn: 8.0633288	total: 2.65s	remaining: 361ms
88:	learn: 8.0107997	total: 2.68s	remaining: 331ms
89:	learn: 7.9563547	total: 2.71s	remaining: 301ms
90:	learn: 7.8811408	total: 2.73s	remaining: 270ms
91:	learn: 7.8096107	total: 2.76s	remaining: 240ms
92:	learn: 7.7481700	total: 2.79s	remaining: 210ms
93:	learn: 7.6847843	total: 2.82s	remaining: 180ms
94:	learn: 7.6252335	total: 2.85s	remaining: 150ms
95:	learn: 7.5593148	total: 2.88s	remaining: 120ms
96:	learn: 7.5042331	total: 2.92s	remaining: 90.2ms
97:	learn: 7.4553707	total: 2.94s	remaining: 60.1ms
98:	learn: 7.4035691	total: 2.97s	remaining: 30ms
99:	learn: 7.3457537	total: 3s	remaining: 0us
0:	learn: 42.5901652	total: 27.8ms	remaining: 2.75s
1:	learn: 41.2917733	total: 65.3ms	remaining: 3.2s
2:	learn: 40.0285549	total: 102ms	remaining: 3.3s
3:	learn: 38.9051734	total: 129ms	remaining: 3.1s
4:	learn: 37.7712063	total: 158ms	remaining: 3s
5:	learn: 36.6826884	total: 185ms	remaining: 2.9s
6:	learn: 35.6341048	total: 212ms	remaining: 2.82s
7:	learn: 34.5035449	total: 238ms	remaining: 2.73s
8:	learn: 33.5636424	total: 265ms	remaining: 2.68s
9:	learn: 32.5970644	total: 292ms	remaining: 2.63s
10:	learn: 31.8528815	total: 326ms	remaining: 2.64s
11:	learn: 31.0330095	total: 361ms	remaining: 2.65s
12:	learn: 30.3119851	total: 388ms	remaining: 2.6s
13:	learn: 29.5212022	total: 415ms	remaining: 2.55s
14:	learn: 28.7182657	total: 442ms	remaining: 2.5s
15:	learn: 28.0433195	total: 469ms	remaining: 2.46s
16:	learn: 27.2966576	total: 497ms	remaining: 2.43s
17:	learn: 26.5122856	total: 533ms	remaining: 2.43s
18:	learn: 25.8998213	total: 561ms	remaining: 2.39s
19:	learn: 25.2416026	total: 597ms	remaining: 2.39s
20:	learn: 24.6399819	total: 626ms	remaining: 2.35s
21:	learn: 24.0372756	total: 653ms	remaining: 2.31s
22:	learn: 23.4553733	total: 681ms	remaining: 2.28s
23:	learn: 22.9027871	total: 715ms	remaining: 2.26s
24:	learn: 22.4470878	total: 743ms	remaining: 2.23s
25:	learn: 21.9143721	total: 769ms	remaining: 2.19s
26:	learn: 21.4979516	total: 795ms	remaining: 2.15s
27:	learn: 21.0867622	total: 830ms	remaining: 2.13s
28:	learn: 20.6187419	total: 857ms	remaining: 2.1s
29:	learn: 20.1662373	total: 885ms	remaining: 2.06s
30:	learn: 19.8225041	total: 913ms	remaining: 2.03s
31:	learn: 19.4539400	total: 951ms	remaining: 2.02s
32:	learn: 19.1127000	total: 978ms	remaining: 1.99s
33:	learn: 18.7767435	total: 1s	remaining: 1.95s
34:	learn: 18.4038779	total: 1.03s	remaining: 1.92s
35:	learn: 18.0021121	total: 1.07s	remaining: 1.9s
36:	learn: 17.6673419	total: 1.1s	remaining: 1.87s
37:	learn: 17.3562137	total: 1.13s	remaining: 1.84s
38:	learn: 17.0128082	total: 1.16s	remaining: 1.82s
39:	learn: 16.7572783	total: 1.19s	remaining: 1.79s
40:	learn: 16.4883778	total: 1.22s	remaining: 1.75s
41:	learn: 16.1756364	total: 1.24s	remaining: 1.72s
42:	learn: 15.9150506	total: 1.27s	remaining: 1.68s
43:	learn: 15.6787555	total: 1.3s	remaining: 1.65s
44:	learn: 15.3862120	total: 1.33s	remaining: 1.63s
45:	learn: 15.1512250	total: 1.36s	remaining: 1.6s
46:	learn: 14.9410960	total: 1.39s	remaining: 1.57s
47:	learn: 14.7086321	total: 1.42s	remaining: 1.54s
48:	learn: 14.5065360	total: 1.45s	remaining: 1.51s
49:	learn: 14.3007466	total: 1.48s	remaining: 1.48s
50:	learn: 14.0972724	total: 1.51s	remaining: 1.45s
51:	learn: 13.8793525	total: 1.53s	remaining: 1.42s
52:	learn: 13.6381311	total: 1.58s	remaining: 1.4s
53:	learn: 13.4603568	total: 1.6s	remaining: 1.37s
54:	learn: 13.2856920	total: 1.63s	remaining: 1.33s
55:	learn: 13.1350779	total: 1.66s	remaining: 1.3s
56:	learn: 13.0110083	total: 1.68s	remaining: 1.27s
57:	learn: 12.8405210	total: 1.71s	remaining: 1.24s
58:	learn: 12.6793938	total: 1.74s	remaining: 1.21s
59:	learn: 12.5497475	total: 1.77s	remaining: 1.18s
60:	learn: 12.4319334	total: 1.81s	remaining: 1.16s
61:	learn: 12.2780964	total: 1.84s	remaining: 1.13s
62:	learn: 12.1187174	total: 1.87s	remaining: 1.1s
63:	learn: 11.9635081	total: 1.89s	remaining: 1.06s
64:	learn: 11.8366366	total: 1.92s	remaining: 1.03s
65:	learn: 11.6598347	total: 1.95s	remaining: 1s
66:	learn: 11.5227416	total: 1.98s	remaining: 974ms
67:	learn: 11.4058818	total: 2.01s	remaining: 947ms
68:	learn: 11.2627892	total: 2.05s	remaining: 920ms
69:	learn: 11.1415094	total: 2.07s	remaining: 888ms
70:	learn: 11.0703329	total: 2.1s	remaining: 858ms
71:	learn: 10.9568944	total: 2.13s	remaining: 827ms
72:	learn: 10.8314078	total: 2.15s	remaining: 797ms
73:	learn: 10.7320013	total: 2.18s	remaining: 767ms
74:	learn: 10.6191666	total: 2.21s	remaining: 736ms
75:	learn: 10.5156798	total: 2.24s	remaining: 709ms
76:	learn: 10.4174442	total: 2.27s	remaining: 679ms
77:	learn: 10.3318165	total: 2.31s	remaining: 651ms
78:	learn: 10.2300435	total: 2.34s	remaining: 621ms
79:	learn: 10.1665911	total: 2.36s	remaining: 591ms
80:	learn: 10.1030585	total: 2.39s	remaining: 561ms
81:	learn: 10.0254875	total: 2.42s	remaining: 531ms
82:	learn: 9.9387640	total: 2.45s	remaining: 502ms
83:	learn: 9.8289920	total: 2.48s	remaining: 472ms
84:	learn: 9.7629500	total: 2.51s	remaining: 442ms
85:	learn: 9.6778611	total: 2.54s	remaining: 413ms
86:	learn: 9.5920617	total: 2.57s	remaining: 384ms
87:	learn: 9.4931297	total: 2.59s	remaining: 354ms
88:	learn: 9.4010604	total: 2.62s	remaining: 324ms
89:	learn: 9.3328614	total: 2.66s	remaining: 296ms
90:	learn: 9.2409094	total: 2.69s	remaining: 266ms
91:	learn: 9.1214245	total: 2.72s	remaining: 236ms
92:	learn: 9.0795335	total: 2.75s	remaining: 207ms
93:	learn: 8.9777250	total: 2.78s	remaining: 178ms
94:	learn: 8.9059891	total: 2.81s	remaining: 148ms
95:	learn: 8.8343294	total: 2.84s	remaining: 118ms
96:	learn: 8.7237295	total: 2.87s	remaining: 88.9ms
97:	learn: 8.6401509	total: 2.9s	remaining: 59.2ms
98:	learn: 8.5735108	total: 2.93s	remaining: 29.6ms
99:	learn: 8.5084579	total: 2.96s	remaining: 0us
0:	learn: 46.1633714	total: 28.4ms	remaining: 2.81s
1:	learn: 44.7904617	total: 66.8ms	remaining: 3.27s
2:	learn: 43.5292386	total: 102ms	remaining: 3.31s
3:	learn: 42.3776226	total: 132ms	remaining: 3.17s
4:	learn: 41.1726533	total: 163ms	remaining: 3.09s
5:	learn: 40.0256490	total: 191ms	remaining: 2.99s
6:	learn: 39.0318588	total: 218ms	remaining: 2.89s
7:	learn: 38.0361181	total: 244ms	remaining: 2.8s
8:	learn: 37.0398789	total: 272ms	remaining: 2.75s
9:	learn: 36.0525089	total: 303ms	remaining: 2.73s
10:	learn: 35.0926830	total: 344ms	remaining: 2.78s
11:	learn: 34.1467022	total: 371ms	remaining: 2.72s
12:	learn: 33.5625454	total: 398ms	remaining: 2.66s
13:	learn: 32.7993162	total: 426ms	remaining: 2.61s
14:	learn: 32.1179593	total: 452ms	remaining: 2.56s
15:	learn: 31.5382898	total: 480ms	remaining: 2.52s
16:	learn: 30.8398862	total: 514ms	remaining: 2.51s
17:	learn: 30.1060070	total: 543ms	remaining: 2.47s
18:	learn: 29.3826415	total: 577ms	remaining: 2.46s
19:	learn: 28.5809579	total: 605ms	remaining: 2.42s
20:	learn: 28.0104942	total: 632ms	remaining: 2.38s
21:	learn: 27.5189566	total: 660ms	remaining: 2.34s
22:	learn: 26.8603656	total: 686ms	remaining: 2.3s
23:	learn: 26.2547050	total: 713ms	remaining: 2.26s
24:	learn: 25.6559137	total: 741ms	remaining: 2.22s
25:	learn: 25.1148352	total: 775ms	remaining: 2.21s
26:	learn: 24.5782363	total: 812ms	remaining: 2.19s
27:	learn: 24.0350871	total: 838ms	remaining: 2.15s
28:	learn: 23.5119480	total: 864ms	remaining: 2.12s
29:	learn: 23.1119795	total: 890ms	remaining: 2.08s
30:	learn: 22.6838288	total: 917ms	remaining: 2.04s
31:	learn: 22.2554624	total: 944ms	remaining: 2.01s
32:	learn: 21.8241578	total: 982ms	remaining: 1.99s
33:	learn: 21.5062830	total: 1.01s	remaining: 1.96s
34:	learn: 21.0109226	total: 1.05s	remaining: 1.94s
35:	learn: 20.5518606	total: 1.07s	remaining: 1.91s
36:	learn: 20.1195339	total: 1.1s	remaining: 1.88s
37:	learn: 19.7143479	total: 1.13s	remaining: 1.84s
38:	learn: 19.3325253	total: 1.16s	remaining: 1.81s
39:	learn: 19.0310706	total: 1.19s	remaining: 1.79s
40:	learn: 18.7262797	total: 1.22s	remaining: 1.75s
41:	learn: 18.3611836	total: 1.25s	remaining: 1.72s
42:	learn: 17.9960838	total: 1.27s	remaining: 1.69s
43:	learn: 17.7058991	total: 1.3s	remaining: 1.66s
44:	learn: 17.3944673	total: 1.33s	remaining: 1.63s
45:	learn: 17.1283561	total: 1.36s	remaining: 1.6s
46:	learn: 16.8406890	total: 1.4s	remaining: 1.57s
47:	learn: 16.6072061	total: 1.42s	remaining: 1.54s
48:	learn: 16.3697411	total: 1.45s	remaining: 1.51s
49:	learn: 15.9995507	total: 1.48s	remaining: 1.48s
50:	learn: 15.7372570	total: 1.51s	remaining: 1.45s
51:	learn: 15.4840152	total: 1.54s	remaining: 1.43s
52:	learn: 15.2899590	total: 1.57s	remaining: 1.39s
53:	learn: 15.0111064	total: 1.6s	remaining: 1.36s
54:	learn: 14.7504952	total: 1.63s	remaining: 1.33s
55:	learn: 14.5309762	total: 1.66s	remaining: 1.3s
56:	learn: 14.3525677	total: 1.68s	remaining: 1.27s
57:	learn: 14.1816296	total: 1.71s	remaining: 1.24s
58:	learn: 13.9958516	total: 1.74s	remaining: 1.21s
59:	learn: 13.8356735	total: 1.77s	remaining: 1.18s
60:	learn: 13.6499824	total: 1.79s	remaining: 1.15s
61:	learn: 13.4621357	total: 1.82s	remaining: 1.12s
62:	learn: 13.3234970	total: 1.86s	remaining: 1.09s
63:	learn: 13.1407122	total: 1.89s	remaining: 1.06s
64:	learn: 13.0161177	total: 1.92s	remaining: 1.03s
65:	learn: 12.8361175	total: 1.95s	remaining: 1s
66:	learn: 12.7103117	total: 1.97s	remaining: 972ms
67:	learn: 12.5145429	total: 2.01s	remaining: 946ms
68:	learn: 12.3966318	total: 2.04s	remaining: 916ms
69:	learn: 12.2175623	total: 2.07s	remaining: 887ms
70:	learn: 12.0455583	total: 2.1s	remaining: 857ms
71:	learn: 11.9190589	total: 2.13s	remaining: 826ms
72:	learn: 11.7990452	total: 2.15s	remaining: 796ms
73:	learn: 11.6735331	total: 2.18s	remaining: 765ms
74:	learn: 11.5694753	total: 2.2s	remaining: 735ms
75:	learn: 11.4471422	total: 2.23s	remaining: 705ms
76:	learn: 11.3357642	total: 2.28s	remaining: 680ms
77:	learn: 11.2160164	total: 2.31s	remaining: 650ms
78:	learn: 11.1477947	total: 2.33s	remaining: 620ms
79:	learn: 11.0733969	total: 2.36s	remaining: 590ms
80:	learn: 10.9851608	total: 2.39s	remaining: 560ms
81:	learn: 10.8669537	total: 2.41s	remaining: 530ms
82:	learn: 10.7846130	total: 2.45s	remaining: 501ms
83:	learn: 10.6429068	total: 2.48s	remaining: 472ms
84:	learn: 10.5485368	total: 2.51s	remaining: 443ms
85:	learn: 10.4626750	total: 2.54s	remaining: 413ms
86:	learn: 10.3487863	total: 2.56s	remaining: 383ms
87:	learn: 10.2608682	total: 2.59s	remaining: 353ms
88:	learn: 10.1492862	total: 2.62s	remaining: 324ms
89:	learn: 10.0825429	total: 2.65s	remaining: 294ms
90:	learn: 9.9668337	total: 2.68s	remaining: 265ms
91:	learn: 9.8924239	total: 2.71s	remaining: 236ms
92:	learn: 9.7959729	total: 2.74s	remaining: 207ms
93:	learn: 9.7342503	total: 2.77s	remaining: 177ms
94:	learn: 9.6266181	total: 2.8s	remaining: 147ms
95:	learn: 9.5607316	total: 2.83s	remaining: 118ms
96:	learn: 9.4615938	total: 2.85s	remaining: 88.3ms
97:	learn: 9.3562852	total: 2.88s	remaining: 58.9ms
98:	learn: 9.2518786	total: 2.92s	remaining: 29.5ms
99:	learn: 9.2130065	total: 2.94s	remaining: 0us
0:	learn: 45.6477780	total: 26.7ms	remaining: 2.64s
1:	learn: 44.3885048	total: 61.2ms	remaining: 3s
2:	learn: 43.1316502	total: 88.2ms	remaining: 2.85s
3:	learn: 41.8123054	total: 127ms	remaining: 3.05s
4:	learn: 40.7214533	total: 158ms	remaining: 3s
5:	learn: 39.6276122	total: 186ms	remaining: 2.91s
6:	learn: 38.6471225	total: 213ms	remaining: 2.83s
7:	learn: 37.7493668	total: 241ms	remaining: 2.78s
8:	learn: 36.7733816	total: 269ms	remaining: 2.71s
9:	learn: 36.1233521	total: 304ms	remaining: 2.74s
10:	learn: 35.5715091	total: 332ms	remaining: 2.69s
11:	learn: 34.6287751	total: 369ms	remaining: 2.71s
12:	learn: 33.8024988	total: 397ms	remaining: 2.66s
13:	learn: 33.0699864	total: 424ms	remaining: 2.6s
14:	learn: 32.2267139	total: 451ms	remaining: 2.56s
15:	learn: 31.4879090	total: 479ms	remaining: 2.51s
16:	learn: 30.6681130	total: 505ms	remaining: 2.47s
17:	learn: 29.9739192	total: 540ms	remaining: 2.46s
18:	learn: 29.3293065	total: 568ms	remaining: 2.42s
19:	learn: 28.5893418	total: 605ms	remaining: 2.42s
20:	learn: 28.0793862	total: 633ms	remaining: 2.38s
21:	learn: 27.5553702	total: 659ms	remaining: 2.34s
22:	learn: 27.0123732	total: 687ms	remaining: 2.3s
23:	learn: 26.3897992	total: 714ms	remaining: 2.26s
24:	learn: 25.7405079	total: 741ms	remaining: 2.22s
25:	learn: 25.2366375	total: 768ms	remaining: 2.18s
26:	learn: 24.8040727	total: 806ms	remaining: 2.18s
27:	learn: 24.3831145	total: 841ms	remaining: 2.16s
28:	learn: 23.9264258	total: 868ms	remaining: 2.13s
29:	learn: 23.4965665	total: 894ms	remaining: 2.09s
30:	learn: 23.0750907	total: 922ms	remaining: 2.05s
31:	learn: 22.6177456	total: 949ms	remaining: 2.02s
32:	learn: 22.1936903	total: 975ms	remaining: 1.98s
33:	learn: 21.7237373	total: 1s	remaining: 1.95s
34:	learn: 21.2885821	total: 1.04s	remaining: 1.92s
35:	learn: 20.8773820	total: 1.07s	remaining: 1.91s
36:	learn: 20.5069022	total: 1.1s	remaining: 1.88s
37:	learn: 20.1026772	total: 1.13s	remaining: 1.84s
38:	learn: 19.7278063	total: 1.16s	remaining: 1.81s
39:	learn: 19.4576176	total: 1.18s	remaining: 1.78s
40:	learn: 19.1716041	total: 1.21s	remaining: 1.75s
41:	learn: 18.8541728	total: 1.24s	remaining: 1.71s
42:	learn: 18.6411979	total: 1.28s	remaining: 1.7s
43:	learn: 18.3146636	total: 1.31s	remaining: 1.67s
44:	learn: 18.0208582	total: 1.33s	remaining: 1.63s
45:	learn: 17.7344521	total: 1.36s	remaining: 1.6s
46:	learn: 17.4797974	total: 1.39s	remaining: 1.57s
47:	learn: 17.2182299	total: 1.41s	remaining: 1.53s
48:	learn: 16.9607453	total: 1.44s	remaining: 1.5s
49:	learn: 16.7297863	total: 1.48s	remaining: 1.48s
50:	learn: 16.4913674	total: 1.5s	remaining: 1.45s
51:	learn: 16.2886548	total: 1.54s	remaining: 1.42s
52:	learn: 16.0297055	total: 1.57s	remaining: 1.39s
53:	learn: 15.8558289	total: 1.59s	remaining: 1.36s
54:	learn: 15.6256772	total: 1.62s	remaining: 1.33s
55:	learn: 15.4571057	total: 1.65s	remaining: 1.29s
56:	learn: 15.2857211	total: 1.68s	remaining: 1.26s
57:	learn: 15.0790849	total: 1.71s	remaining: 1.24s
58:	learn: 14.8706573	total: 1.74s	remaining: 1.21s
59:	learn: 14.7142314	total: 1.77s	remaining: 1.18s
60:	learn: 14.5574075	total: 1.8s	remaining: 1.15s
61:	learn: 14.3831719	total: 1.82s	remaining: 1.12s
62:	learn: 14.2429846	total: 1.85s	remaining: 1.09s
63:	learn: 14.0982260	total: 1.88s	remaining: 1.05s
64:	learn: 13.9793470	total: 1.91s	remaining: 1.03s
65:	learn: 13.7843655	total: 1.94s	remaining: 1s
66:	learn: 13.6382336	total: 1.97s	remaining: 970ms
67:	learn: 13.5395713	total: 2.01s	remaining: 945ms
68:	learn: 13.3797741	total: 2.03s	remaining: 914ms
69:	learn: 13.2910103	total: 2.06s	remaining: 884ms
70:	learn: 13.1587887	total: 2.09s	remaining: 855ms
71:	learn: 13.0464642	total: 2.13s	remaining: 827ms
72:	learn: 12.9189091	total: 2.15s	remaining: 797ms
73:	learn: 12.8056893	total: 2.18s	remaining: 767ms
74:	learn: 12.6904403	total: 2.21s	remaining: 737ms
75:	learn: 12.5608506	total: 2.24s	remaining: 706ms
76:	learn: 12.4712551	total: 2.27s	remaining: 678ms
77:	learn: 12.3371889	total: 2.3s	remaining: 648ms
78:	learn: 12.2449022	total: 2.33s	remaining: 621ms
79:	learn: 12.2163788	total: 2.36s	remaining: 591ms
80:	learn: 12.1464820	total: 2.39s	remaining: 561ms
81:	learn: 12.0001066	total: 2.42s	remaining: 531ms
82:	learn: 11.8843691	total: 2.45s	remaining: 501ms
83:	learn: 11.7638631	total: 2.48s	remaining: 472ms
84:	learn: 11.6389646	total: 2.51s	remaining: 443ms
85:	learn: 11.5343065	total: 2.54s	remaining: 413ms
86:	learn: 11.4267531	total: 2.57s	remaining: 384ms
87:	learn: 11.3136728	total: 2.6s	remaining: 355ms
88:	learn: 11.2361574	total: 2.63s	remaining: 325ms
89:	learn: 11.1507886	total: 2.65s	remaining: 295ms
90:	learn: 11.0988952	total: 2.68s	remaining: 265ms
91:	learn: 10.9988426	total: 2.71s	remaining: 235ms
92:	learn: 10.9584792	total: 2.74s	remaining: 206ms
93:	learn: 10.8771461	total: 2.79s	remaining: 178ms
94:	learn: 10.8161358	total: 2.82s	remaining: 148ms
95:	learn: 10.7524450	total: 2.85s	remaining: 119ms
96:	learn: 10.6566836	total: 2.87s	remaining: 88.8ms
97:	learn: 10.5550602	total: 2.9s	remaining: 59.2ms
98:	learn: 10.4790583	total: 2.93s	remaining: 29.6ms
99:	learn: 10.4087354	total: 2.95s	remaining: 0us
0:	learn: 46.5398832	total: 29ms	remaining: 2.87s
1:	learn: 45.3142618	total: 63.7ms	remaining: 3.12s
2:	learn: 44.0378137	total: 91.4ms	remaining: 2.95s
3:	learn: 42.7976734	total: 118ms	remaining: 2.83s
4:	learn: 41.7080859	total: 145ms	remaining: 2.76s
5:	learn: 40.4513327	total: 172ms	remaining: 2.69s
6:	learn: 39.4903346	total: 200ms	remaining: 2.66s
7:	learn: 38.3767870	total: 237ms	remaining: 2.73s
8:	learn: 37.4056810	total: 266ms	remaining: 2.69s
9:	learn: 36.4947716	total: 300ms	remaining: 2.7s
10:	learn: 35.4421832	total: 328ms	remaining: 2.66s
11:	learn: 34.6183487	total: 343ms	remaining: 2.52s
12:	learn: 33.9603524	total: 369ms	remaining: 2.47s
13:	learn: 33.0635534	total: 396ms	remaining: 2.43s
14:	learn: 32.2067999	total: 429ms	remaining: 2.43s
15:	learn: 31.3961282	total: 459ms	remaining: 2.41s
16:	learn: 30.7113239	total: 485ms	remaining: 2.37s
17:	learn: 29.9919005	total: 512ms	remaining: 2.33s
18:	learn: 29.4016891	total: 546ms	remaining: 2.33s
19:	learn: 28.7435066	total: 572ms	remaining: 2.29s
20:	learn: 28.2283605	total: 599ms	remaining: 2.25s
21:	learn: 27.6749781	total: 626ms	remaining: 2.22s
22:	learn: 27.1695356	total: 654ms	remaining: 2.19s
23:	learn: 26.6842901	total: 690ms	remaining: 2.19s
24:	learn: 26.0987344	total: 720ms	remaining: 2.16s
25:	learn: 25.5266873	total: 747ms	remaining: 2.13s
26:	learn: 25.0200431	total: 775ms	remaining: 2.1s
27:	learn: 24.5972016	total: 811ms	remaining: 2.08s
28:	learn: 24.1557061	total: 838ms	remaining: 2.05s
29:	learn: 23.7405036	total: 865ms	remaining: 2.02s
30:	learn: 23.3574513	total: 894ms	remaining: 1.99s
31:	learn: 23.0493499	total: 926ms	remaining: 1.97s
32:	learn: 22.6480655	total: 953ms	remaining: 1.93s
33:	learn: 22.2777353	total: 979ms	remaining: 1.9s
34:	learn: 21.8294628	total: 1s	remaining: 1.87s
35:	learn: 21.4783115	total: 1.04s	remaining: 1.85s
36:	learn: 21.1271427	total: 1.07s	remaining: 1.81s
37:	learn: 20.7967443	total: 1.09s	remaining: 1.79s
38:	learn: 20.4949793	total: 1.13s	remaining: 1.77s
39:	learn: 20.1991695	total: 1.16s	remaining: 1.74s
40:	learn: 19.8869467	total: 1.19s	remaining: 1.71s
41:	learn: 19.5656862	total: 1.22s	remaining: 1.68s
42:	learn: 19.2415335	total: 1.24s	remaining: 1.65s
43:	learn: 18.9725471	total: 1.28s	remaining: 1.63s
44:	learn: 18.7035722	total: 1.31s	remaining: 1.6s
45:	learn: 18.3840395	total: 1.34s	remaining: 1.57s
46:	learn: 18.1486662	total: 1.37s	remaining: 1.54s
47:	learn: 17.8740440	total: 1.39s	remaining: 1.51s
48:	learn: 17.6056273	total: 1.42s	remaining: 1.48s
49:	learn: 17.4011083	total: 1.45s	remaining: 1.45s
50:	learn: 17.1935449	total: 1.47s	remaining: 1.42s
51:	learn: 16.9415227	total: 1.5s	remaining: 1.38s
52:	learn: 16.6568624	total: 1.54s	remaining: 1.36s
53:	learn: 16.4254479	total: 1.57s	remaining: 1.34s
54:	learn: 16.1958120	total: 1.6s	remaining: 1.31s
55:	learn: 15.9494332	total: 1.63s	remaining: 1.28s
56:	learn: 15.7736632	total: 1.66s	remaining: 1.25s
57:	learn: 15.6314122	total: 1.68s	remaining: 1.22s
58:	learn: 15.3707626	total: 1.71s	remaining: 1.19s
59:	learn: 15.2211664	total: 1.74s	remaining: 1.16s
60:	learn: 14.9939278	total: 1.77s	remaining: 1.13s
61:	learn: 14.8327626	total: 1.81s	remaining: 1.11s
62:	learn: 14.6555776	total: 1.83s	remaining: 1.08s
63:	learn: 14.5516961	total: 1.86s	remaining: 1.04s
64:	learn: 14.3660780	total: 1.89s	remaining: 1.01s
65:	learn: 14.1721909	total: 1.91s	remaining: 985ms
66:	learn: 14.0877696	total: 1.94s	remaining: 955ms
67:	learn: 13.9435793	total: 1.97s	remaining: 926ms
68:	learn: 13.7745805	total: 2.01s	remaining: 905ms
69:	learn: 13.6490858	total: 2.04s	remaining: 875ms
70:	learn: 13.5022080	total: 2.07s	remaining: 845ms
71:	learn: 13.3922163	total: 2.1s	remaining: 816ms
72:	learn: 13.2842701	total: 2.12s	remaining: 786ms
73:	learn: 13.1698693	total: 2.15s	remaining: 756ms
74:	learn: 13.0256610	total: 2.19s	remaining: 729ms
75:	learn: 12.8855147	total: 2.21s	remaining: 699ms
76:	learn: 12.7807971	total: 2.24s	remaining: 669ms
77:	learn: 12.6618407	total: 2.27s	remaining: 641ms
78:	learn: 12.5369866	total: 2.3s	remaining: 611ms
79:	learn: 12.4376925	total: 2.33s	remaining: 582ms
80:	learn: 12.3005012	total: 2.35s	remaining: 552ms
81:	learn: 12.1751315	total: 2.38s	remaining: 523ms
82:	learn: 12.0612289	total: 2.42s	remaining: 495ms
83:	learn: 11.9757193	total: 2.45s	remaining: 466ms
84:	learn: 11.8530411	total: 2.47s	remaining: 437ms
85:	learn: 11.7523616	total: 2.51s	remaining: 409ms
86:	learn: 11.6645272	total: 2.54s	remaining: 379ms
87:	learn: 11.5645111	total: 2.56s	remaining: 350ms
88:	learn: 11.4692480	total: 2.59s	remaining: 321ms
89:	learn: 11.3724902	total: 2.62s	remaining: 291ms
90:	learn: 11.2842147	total: 2.66s	remaining: 263ms
91:	learn: 11.1868295	total: 2.69s	remaining: 234ms
92:	learn: 11.0293625	total: 2.71s	remaining: 204ms
93:	learn: 10.9495625	total: 2.75s	remaining: 176ms
94:	learn: 10.8608168	total: 2.78s	remaining: 146ms
95:	learn: 10.7804780	total: 2.81s	remaining: 117ms
96:	learn: 10.6503623	total: 2.83s	remaining: 87.6ms
97:	learn: 10.5906748	total: 2.86s	remaining: 58.4ms
98:	learn: 10.4539468	total: 2.9s	remaining: 29.3ms
99:	learn: 10.3804160	total: 2.92s	remaining: 0us
avg_Mae_val de la población en la generación 8: 18.134142220060607 con std media = 9.162341102397848
Mae_val del Mejor modelo en la generación 8: 17.7789 con std = 9.1097
0:	learn: 27.5585353	total: 4.66ms	remaining: 462ms
1:	learn: 27.1656995	total: 8.87ms	remaining: 435ms
2:	learn: 26.8590175	total: 13.3ms	remaining: 430ms
3:	learn: 26.5818406	total: 17.5ms	remaining: 420ms
4:	learn: 26.1148663	total: 21.7ms	remaining: 412ms
5:	learn: 25.7690484	total: 25.9ms	remaining: 406ms
6:	learn: 25.3489206	total: 30ms	remaining: 399ms
7:	learn: 24.9542406	total: 34.9ms	remaining: 401ms
8:	learn: 24.6777517	total: 39.2ms	remaining: 396ms
9:	learn: 24.3242344	total: 43.6ms	remaining: 392ms
10:	learn: 24.0383073	total: 48.2ms	remaining: 390ms
11:	learn: 23.7383420	total: 52.6ms	remaining: 386ms
12:	learn: 23.3461670	total: 56.9ms	remaining: 381ms
13:	learn: 23.0928636	total: 61.6ms	remaining: 378ms
14:	learn: 22.8770414	total: 66ms	remaining: 374ms
15:	learn: 22.6323214	total: 70.7ms	remaining: 371ms
16:	learn: 22.3597072	total: 75.7ms	remaining: 370ms
17:	learn: 22.1079813	total: 82.2ms	remaining: 374ms
18:	learn: 21.8421199	total: 92.4ms	remaining: 394ms
19:	learn: 21.6576508	total: 101ms	remaining: 402ms
20:	learn: 21.4301268	total: 107ms	remaining: 401ms
21:	learn: 21.2287388	total: 113ms	remaining: 401ms
22:	learn: 21.0553872	total: 117ms	remaining: 393ms
23:	learn: 20.8977091	total: 121ms	remaining: 385ms
24:	learn: 20.6619051	total: 125ms	remaining: 376ms
25:	learn: 20.5040955	total: 130ms	remaining: 370ms
26:	learn: 20.3181195	total: 134ms	remaining: 362ms
27:	learn: 20.0869436	total: 138ms	remaining: 355ms
28:	learn: 19.9375985	total: 143ms	remaining: 349ms
29:	learn: 19.8247516	total: 147ms	remaining: 343ms
30:	learn: 19.6261697	total: 151ms	remaining: 336ms
31:	learn: 19.4547236	total: 155ms	remaining: 330ms
32:	learn: 19.3157092	total: 159ms	remaining: 324ms
33:	learn: 19.1561419	total: 164ms	remaining: 318ms
34:	learn: 19.0453620	total: 168ms	remaining: 312ms
35:	learn: 18.8738574	total: 173ms	remaining: 307ms
36:	learn: 18.7072907	total: 177ms	remaining: 301ms
37:	learn: 18.5877943	total: 181ms	remaining: 295ms
38:	learn: 18.4436380	total: 186ms	remaining: 290ms
39:	learn: 18.3463356	total: 190ms	remaining: 285ms
40:	learn: 18.2008059	total: 194ms	remaining: 279ms
41:	learn: 18.0582079	total: 199ms	remaining: 274ms
42:	learn: 17.8891982	total: 203ms	remaining: 269ms
43:	learn: 17.7332246	total: 207ms	remaining: 264ms
44:	learn: 17.6206421	total: 211ms	remaining: 258ms
45:	learn: 17.4982800	total: 216ms	remaining: 253ms
46:	learn: 17.3970150	total: 220ms	remaining: 248ms
47:	learn: 17.3058203	total: 224ms	remaining: 243ms
48:	learn: 17.1789256	total: 228ms	remaining: 237ms
49:	learn: 17.0916229	total: 232ms	remaining: 232ms
50:	learn: 16.9859820	total: 237ms	remaining: 227ms
51:	learn: 16.8995582	total: 241ms	remaining: 222ms
52:	learn: 16.8137014	total: 245ms	remaining: 217ms
53:	learn: 16.7021451	total: 250ms	remaining: 213ms
54:	learn: 16.5895582	total: 254ms	remaining: 208ms
55:	learn: 16.5015639	total: 259ms	remaining: 203ms
56:	learn: 16.4356637	total: 264ms	remaining: 199ms
57:	learn: 16.3514525	total: 269ms	remaining: 195ms
58:	learn: 16.2401369	total: 274ms	remaining: 190ms
59:	learn: 16.1293223	total: 278ms	remaining: 185ms
60:	learn: 16.0271167	total: 283ms	remaining: 181ms
61:	learn: 15.9126257	total: 288ms	remaining: 177ms
62:	learn: 15.8391096	total: 293ms	remaining: 172ms
63:	learn: 15.7441773	total: 302ms	remaining: 170ms
64:	learn: 15.6885195	total: 310ms	remaining: 167ms
65:	learn: 15.6052039	total: 318ms	remaining: 164ms
66:	learn: 15.5074202	total: 326ms	remaining: 161ms
67:	learn: 15.4054338	total: 331ms	remaining: 156ms
68:	learn: 15.2885714	total: 337ms	remaining: 151ms
69:	learn: 15.2157472	total: 342ms	remaining: 147ms
70:	learn: 15.1031554	total: 347ms	remaining: 142ms
71:	learn: 15.0237470	total: 352ms	remaining: 137ms
72:	learn: 14.9756825	total: 357ms	remaining: 132ms
73:	learn: 14.8840596	total: 362ms	remaining: 127ms
74:	learn: 14.8077061	total: 367ms	remaining: 122ms
75:	learn: 14.7444437	total: 373ms	remaining: 118ms
76:	learn: 14.6751720	total: 378ms	remaining: 113ms
77:	learn: 14.5830333	total: 383ms	remaining: 108ms
78:	learn: 14.5241206	total: 388ms	remaining: 103ms
79:	learn: 14.4892731	total: 394ms	remaining: 98.4ms
80:	learn: 14.4256605	total: 398ms	remaining: 93.4ms
81:	learn: 14.3666860	total: 403ms	remaining: 88.4ms
82:	learn: 14.2938372	total: 407ms	remaining: 83.3ms
83:	learn: 14.2161532	total: 411ms	remaining: 78.3ms
84:	learn: 14.1582910	total: 415ms	remaining: 73.2ms
85:	learn: 14.1029153	total: 419ms	remaining: 68.2ms
86:	learn: 14.0475835	total: 424ms	remaining: 63.3ms
87:	learn: 13.9892661	total: 428ms	remaining: 58.3ms
88:	learn: 13.9481628	total: 432ms	remaining: 53.4ms
89:	learn: 13.8483991	total: 437ms	remaining: 48.5ms
90:	learn: 13.7775614	total: 441ms	remaining: 43.6ms
91:	learn: 13.7304585	total: 446ms	remaining: 38.7ms
92:	learn: 13.6783381	total: 450ms	remaining: 33.8ms
93:	learn: 13.6356964	total: 454ms	remaining: 29ms
94:	learn: 13.5924371	total: 458ms	remaining: 24.1ms
95:	learn: 13.5400746	total: 463ms	remaining: 19.3ms
96:	learn: 13.4897333	total: 467ms	remaining: 14.5ms
97:	learn: 13.4470321	total: 472ms	remaining: 9.63ms
98:	learn: 13.3856082	total: 476ms	remaining: 4.81ms
99:	learn: 13.3082371	total: 481ms	remaining: 0us
0:	learn: 43.0395283	total: 5.18ms	remaining: 513ms
1:	learn: 42.1130223	total: 9.05ms	remaining: 444ms
2:	learn: 41.1753409	total: 13.3ms	remaining: 431ms
3:	learn: 40.3637444	total: 17.5ms	remaining: 419ms
4:	learn: 39.6508088	total: 21.8ms	remaining: 415ms
5:	learn: 38.7217934	total: 25.9ms	remaining: 406ms
6:	learn: 37.8538055	total: 29.9ms	remaining: 398ms
7:	learn: 36.9793574	total: 34.2ms	remaining: 393ms
8:	learn: 36.3076984	total: 38.7ms	remaining: 391ms
9:	learn: 35.6673160	total: 42.9ms	remaining: 386ms
10:	learn: 34.8889800	total: 47.3ms	remaining: 382ms
11:	learn: 34.1675517	total: 51.3ms	remaining: 376ms
12:	learn: 33.6779564	total: 55.6ms	remaining: 372ms
13:	learn: 33.0710039	total: 59.5ms	remaining: 366ms
14:	learn: 32.4966674	total: 63.7ms	remaining: 361ms
15:	learn: 31.9492856	total: 68ms	remaining: 357ms
16:	learn: 31.5108129	total: 72.6ms	remaining: 355ms
17:	learn: 30.9804023	total: 76.9ms	remaining: 351ms
18:	learn: 30.4169089	total: 81.3ms	remaining: 346ms
19:	learn: 29.8930375	total: 86ms	remaining: 344ms
20:	learn: 29.3974421	total: 90.5ms	remaining: 340ms
21:	learn: 28.8792307	total: 94.9ms	remaining: 337ms
22:	learn: 28.3894474	total: 99.1ms	remaining: 332ms
23:	learn: 27.9921276	total: 103ms	remaining: 327ms
24:	learn: 27.6158887	total: 108ms	remaining: 323ms
25:	learn: 27.2866950	total: 112ms	remaining: 318ms
26:	learn: 26.8770708	total: 116ms	remaining: 314ms
27:	learn: 26.6233005	total: 120ms	remaining: 310ms
28:	learn: 26.2921934	total: 125ms	remaining: 306ms
29:	learn: 25.9156920	total: 129ms	remaining: 302ms
30:	learn: 25.5311106	total: 131ms	remaining: 292ms
31:	learn: 25.2178997	total: 136ms	remaining: 289ms
32:	learn: 24.8572196	total: 141ms	remaining: 286ms
33:	learn: 24.5849710	total: 145ms	remaining: 282ms
34:	learn: 24.2209190	total: 150ms	remaining: 278ms
35:	learn: 23.8708250	total: 155ms	remaining: 275ms
36:	learn: 23.5325279	total: 159ms	remaining: 271ms
37:	learn: 23.2116148	total: 166ms	remaining: 272ms
38:	learn: 22.9696787	total: 174ms	remaining: 272ms
39:	learn: 22.7936783	total: 184ms	remaining: 276ms
40:	learn: 22.6228847	total: 192ms	remaining: 277ms
41:	learn: 22.3691527	total: 198ms	remaining: 273ms
42:	learn: 22.1002173	total: 203ms	remaining: 269ms
43:	learn: 21.9157268	total: 208ms	remaining: 265ms
44:	learn: 21.7229102	total: 213ms	remaining: 260ms
45:	learn: 21.4642005	total: 218ms	remaining: 256ms
46:	learn: 21.3029442	total: 223ms	remaining: 252ms
47:	learn: 21.1469792	total: 228ms	remaining: 247ms
48:	learn: 20.9458235	total: 234ms	remaining: 243ms
49:	learn: 20.7335242	total: 239ms	remaining: 239ms
50:	learn: 20.5440269	total: 244ms	remaining: 234ms
51:	learn: 20.3661449	total: 249ms	remaining: 230ms
52:	learn: 20.2158134	total: 254ms	remaining: 225ms
53:	learn: 19.9934873	total: 260ms	remaining: 221ms
54:	learn: 19.7879739	total: 265ms	remaining: 216ms
55:	learn: 19.6630460	total: 269ms	remaining: 211ms
56:	learn: 19.5152729	total: 273ms	remaining: 206ms
57:	learn: 19.3581128	total: 277ms	remaining: 201ms
58:	learn: 19.2209303	total: 282ms	remaining: 196ms
59:	learn: 19.0965248	total: 287ms	remaining: 191ms
60:	learn: 19.0035954	total: 291ms	remaining: 186ms
61:	learn: 18.8554149	total: 295ms	remaining: 181ms
62:	learn: 18.7095427	total: 299ms	remaining: 176ms
63:	learn: 18.5751494	total: 303ms	remaining: 171ms
64:	learn: 18.4678251	total: 308ms	remaining: 166ms
65:	learn: 18.3500325	total: 313ms	remaining: 161ms
66:	learn: 18.2088983	total: 317ms	remaining: 156ms
67:	learn: 18.0737705	total: 321ms	remaining: 151ms
68:	learn: 17.9325058	total: 325ms	remaining: 146ms
69:	learn: 17.8003911	total: 330ms	remaining: 142ms
70:	learn: 17.7385366	total: 335ms	remaining: 137ms
71:	learn: 17.6106998	total: 339ms	remaining: 132ms
72:	learn: 17.4816270	total: 344ms	remaining: 127ms
73:	learn: 17.4025554	total: 348ms	remaining: 122ms
74:	learn: 17.2902108	total: 353ms	remaining: 118ms
75:	learn: 17.2158048	total: 361ms	remaining: 114ms
76:	learn: 17.1261053	total: 368ms	remaining: 110ms
77:	learn: 17.0308917	total: 375ms	remaining: 106ms
78:	learn: 16.9546705	total: 380ms	remaining: 101ms
79:	learn: 16.8319165	total: 386ms	remaining: 96.5ms
80:	learn: 16.7687017	total: 391ms	remaining: 91.6ms
81:	learn: 16.6972326	total: 395ms	remaining: 86.8ms
82:	learn: 16.6124580	total: 400ms	remaining: 81.9ms
83:	learn: 16.4999052	total: 405ms	remaining: 77.1ms
84:	learn: 16.4302484	total: 409ms	remaining: 72.2ms
85:	learn: 16.3201363	total: 414ms	remaining: 67.3ms
86:	learn: 16.2534314	total: 418ms	remaining: 62.5ms
87:	learn: 16.1720485	total: 423ms	remaining: 57.6ms
88:	learn: 16.0625751	total: 427ms	remaining: 52.8ms
89:	learn: 15.9135088	total: 432ms	remaining: 48ms
90:	learn: 15.8658863	total: 436ms	remaining: 43.1ms
91:	learn: 15.8066805	total: 441ms	remaining: 38.3ms
92:	learn: 15.7412103	total: 445ms	remaining: 33.5ms
93:	learn: 15.6542776	total: 449ms	remaining: 28.7ms
94:	learn: 15.5760334	total: 454ms	remaining: 23.9ms
95:	learn: 15.5434131	total: 458ms	remaining: 19.1ms
96:	learn: 15.4709561	total: 462ms	remaining: 14.3ms
97:	learn: 15.4449618	total: 466ms	remaining: 9.5ms
98:	learn: 15.3752761	total: 470ms	remaining: 4.75ms
99:	learn: 15.3106595	total: 474ms	remaining: 0us
0:	learn: 46.7142257	total: 20.9ms	remaining: 2.07s
1:	learn: 45.7634153	total: 26.1ms	remaining: 1.28s
2:	learn: 45.0054253	total: 31ms	remaining: 1s
3:	learn: 44.2120432	total: 36ms	remaining: 864ms
4:	learn: 43.3960472	total: 41.6ms	remaining: 790ms
5:	learn: 42.8588120	total: 47.1ms	remaining: 739ms
6:	learn: 41.9533701	total: 52.2ms	remaining: 693ms
7:	learn: 41.2745030	total: 57.5ms	remaining: 661ms
8:	learn: 40.6797495	total: 62.6ms	remaining: 633ms
9:	learn: 39.9899571	total: 67.8ms	remaining: 610ms
10:	learn: 39.4682100	total: 73ms	remaining: 591ms
11:	learn: 39.0305595	total: 78ms	remaining: 572ms
12:	learn: 38.4200417	total: 83.3ms	remaining: 558ms
13:	learn: 37.8425194	total: 88.8ms	remaining: 545ms
14:	learn: 37.4203127	total: 94.7ms	remaining: 536ms
15:	learn: 36.9917688	total: 99.1ms	remaining: 521ms
16:	learn: 36.5544138	total: 104ms	remaining: 506ms
17:	learn: 36.0727019	total: 108ms	remaining: 491ms
18:	learn: 35.4835715	total: 112ms	remaining: 478ms
19:	learn: 34.9865654	total: 117ms	remaining: 467ms
20:	learn: 34.6063373	total: 121ms	remaining: 456ms
21:	learn: 34.0997289	total: 126ms	remaining: 446ms
22:	learn: 33.7313171	total: 130ms	remaining: 437ms
23:	learn: 33.3582000	total: 135ms	remaining: 428ms
24:	learn: 32.9432456	total: 140ms	remaining: 419ms
25:	learn: 32.5220888	total: 144ms	remaining: 411ms
26:	learn: 32.2172292	total: 149ms	remaining: 402ms
27:	learn: 31.8972904	total: 153ms	remaining: 394ms
28:	learn: 31.6405350	total: 158ms	remaining: 388ms
29:	learn: 31.4167702	total: 163ms	remaining: 380ms
30:	learn: 30.8541961	total: 165ms	remaining: 367ms
31:	learn: 30.5572111	total: 170ms	remaining: 360ms
32:	learn: 30.1700399	total: 175ms	remaining: 355ms
33:	learn: 29.8537271	total: 180ms	remaining: 349ms
34:	learn: 29.6192540	total: 185ms	remaining: 343ms
35:	learn: 29.3276362	total: 189ms	remaining: 337ms
36:	learn: 28.9985179	total: 194ms	remaining: 331ms
37:	learn: 28.7046880	total: 199ms	remaining: 324ms
38:	learn: 28.4412677	total: 203ms	remaining: 318ms
39:	learn: 28.1277292	total: 208ms	remaining: 311ms
40:	learn: 27.9000750	total: 212ms	remaining: 305ms
41:	learn: 27.5433162	total: 216ms	remaining: 299ms
42:	learn: 27.2493285	total: 221ms	remaining: 293ms
43:	learn: 26.9576632	total: 222ms	remaining: 283ms
44:	learn: 26.6177110	total: 227ms	remaining: 277ms
45:	learn: 26.2812456	total: 232ms	remaining: 272ms
46:	learn: 26.0803859	total: 236ms	remaining: 267ms
47:	learn: 25.9543581	total: 241ms	remaining: 261ms
48:	learn: 25.7951582	total: 246ms	remaining: 256ms
49:	learn: 25.6548184	total: 251ms	remaining: 251ms
50:	learn: 25.4010843	total: 256ms	remaining: 246ms
51:	learn: 24.9773937	total: 261ms	remaining: 241ms
52:	learn: 24.8026156	total: 267ms	remaining: 236ms
53:	learn: 24.5568053	total: 274ms	remaining: 234ms
54:	learn: 24.2281839	total: 288ms	remaining: 236ms
55:	learn: 23.9202795	total: 293ms	remaining: 230ms
56:	learn: 23.7625591	total: 299ms	remaining: 225ms
57:	learn: 23.5429721	total: 303ms	remaining: 220ms
58:	learn: 23.3175893	total: 307ms	remaining: 214ms
59:	learn: 23.2035130	total: 311ms	remaining: 208ms
60:	learn: 23.0232450	total: 316ms	remaining: 202ms
61:	learn: 22.8384958	total: 320ms	remaining: 196ms
62:	learn: 22.6499902	total: 325ms	remaining: 191ms
63:	learn: 22.4577426	total: 330ms	remaining: 185ms
64:	learn: 22.3333158	total: 334ms	remaining: 180ms
65:	learn: 22.2064131	total: 339ms	remaining: 175ms
66:	learn: 22.1434971	total: 343ms	remaining: 169ms
67:	learn: 21.9596519	total: 348ms	remaining: 164ms
68:	learn: 21.8475576	total: 353ms	remaining: 159ms
69:	learn: 21.6954745	total: 358ms	remaining: 154ms
70:	learn: 21.5635976	total: 363ms	remaining: 148ms
71:	learn: 21.4588506	total: 368ms	remaining: 143ms
72:	learn: 21.3527268	total: 373ms	remaining: 138ms
73:	learn: 21.2661288	total: 377ms	remaining: 133ms
74:	learn: 21.1817333	total: 382ms	remaining: 127ms
75:	learn: 21.0527553	total: 386ms	remaining: 122ms
76:	learn: 20.9229021	total: 391ms	remaining: 117ms
77:	learn: 20.7563946	total: 394ms	remaining: 111ms
78:	learn: 20.6569831	total: 399ms	remaining: 106ms
79:	learn: 20.4982663	total: 403ms	remaining: 101ms
80:	learn: 20.3185460	total: 408ms	remaining: 95.8ms
81:	learn: 20.2096241	total: 413ms	remaining: 90.7ms
82:	learn: 20.1274891	total: 418ms	remaining: 85.6ms
83:	learn: 20.0740139	total: 422ms	remaining: 80.5ms
84:	learn: 19.9630699	total: 427ms	remaining: 75.4ms
85:	learn: 19.8753899	total: 432ms	remaining: 70.3ms
86:	learn: 19.6563612	total: 437ms	remaining: 65.4ms
87:	learn: 19.4680232	total: 442ms	remaining: 60.3ms
88:	learn: 19.3503431	total: 446ms	remaining: 55.2ms
89:	learn: 19.2221379	total: 451ms	remaining: 50.2ms
90:	learn: 19.0732542	total: 456ms	remaining: 45.1ms
91:	learn: 18.9825190	total: 461ms	remaining: 40.1ms
92:	learn: 18.8839009	total: 470ms	remaining: 35.4ms
93:	learn: 18.8012219	total: 477ms	remaining: 30.5ms
94:	learn: 18.7172713	total: 485ms	remaining: 25.5ms
95:	learn: 18.6201170	total: 492ms	remaining: 20.5ms
96:	learn: 18.5318611	total: 498ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 504ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 509ms	remaining: 5.14ms
99:	learn: 18.2227333	total: 514ms	remaining: 0us
0:	learn: 46.3764524	total: 5.29ms	remaining: 524ms
1:	learn: 45.5561269	total: 9.99ms	remaining: 489ms
2:	learn: 44.8811245	total: 14.3ms	remaining: 463ms
3:	learn: 44.0788617	total: 18.5ms	remaining: 444ms
4:	learn: 43.3619790	total: 22.7ms	remaining: 431ms
5:	learn: 42.6912112	total: 27.3ms	remaining: 428ms
6:	learn: 42.2292118	total: 31.7ms	remaining: 422ms
7:	learn: 41.7725191	total: 36.2ms	remaining: 417ms
8:	learn: 41.1676614	total: 40.8ms	remaining: 412ms
9:	learn: 40.5771076	total: 44.7ms	remaining: 403ms
10:	learn: 39.8343757	total: 50.1ms	remaining: 405ms
11:	learn: 39.3761142	total: 54.6ms	remaining: 400ms
12:	learn: 38.5254692	total: 59.3ms	remaining: 397ms
13:	learn: 37.9629555	total: 64.4ms	remaining: 395ms
14:	learn: 37.4418438	total: 69.2ms	remaining: 392ms
15:	learn: 37.0507283	total: 73.7ms	remaining: 387ms
16:	learn: 36.6264217	total: 78.4ms	remaining: 383ms
17:	learn: 36.1114940	total: 83.8ms	remaining: 382ms
18:	learn: 35.7193862	total: 88.4ms	remaining: 377ms
19:	learn: 35.3301177	total: 93.2ms	remaining: 373ms
20:	learn: 35.0598280	total: 97.7ms	remaining: 367ms
21:	learn: 34.5469736	total: 103ms	remaining: 364ms
22:	learn: 34.2064215	total: 107ms	remaining: 360ms
23:	learn: 33.7280710	total: 115ms	remaining: 366ms
24:	learn: 33.3282940	total: 123ms	remaining: 370ms
25:	learn: 32.8478961	total: 131ms	remaining: 372ms
26:	learn: 32.5722164	total: 137ms	remaining: 370ms
27:	learn: 32.2457019	total: 142ms	remaining: 366ms
28:	learn: 31.9230495	total: 147ms	remaining: 361ms
29:	learn: 31.4311611	total: 152ms	remaining: 354ms
30:	learn: 30.9179052	total: 156ms	remaining: 348ms
31:	learn: 30.6201141	total: 160ms	remaining: 341ms
32:	learn: 30.3421106	total: 165ms	remaining: 335ms
33:	learn: 29.9885373	total: 169ms	remaining: 328ms
34:	learn: 29.7462780	total: 173ms	remaining: 322ms
35:	learn: 29.3607153	total: 177ms	remaining: 315ms
36:	learn: 29.1793078	total: 182ms	remaining: 309ms
37:	learn: 28.9276538	total: 186ms	remaining: 303ms
38:	learn: 28.6903934	total: 190ms	remaining: 298ms
39:	learn: 28.2095033	total: 194ms	remaining: 291ms
40:	learn: 27.7990608	total: 198ms	remaining: 285ms
41:	learn: 27.5406632	total: 203ms	remaining: 280ms
42:	learn: 27.2575376	total: 207ms	remaining: 274ms
43:	learn: 26.9741707	total: 211ms	remaining: 269ms
44:	learn: 26.6606899	total: 215ms	remaining: 263ms
45:	learn: 26.4015833	total: 220ms	remaining: 258ms
46:	learn: 26.1828993	total: 224ms	remaining: 253ms
47:	learn: 26.0233709	total: 226ms	remaining: 245ms
48:	learn: 25.9300399	total: 231ms	remaining: 240ms
49:	learn: 25.5861489	total: 235ms	remaining: 235ms
50:	learn: 25.4322012	total: 240ms	remaining: 230ms
51:	learn: 25.1595644	total: 244ms	remaining: 225ms
52:	learn: 24.9955303	total: 248ms	remaining: 220ms
53:	learn: 24.7273966	total: 252ms	remaining: 215ms
54:	learn: 24.5747978	total: 256ms	remaining: 210ms
55:	learn: 24.3807977	total: 261ms	remaining: 205ms
56:	learn: 24.1689569	total: 265ms	remaining: 200ms
57:	learn: 23.9898221	total: 269ms	remaining: 195ms
58:	learn: 23.7566414	total: 273ms	remaining: 190ms
59:	learn: 23.6641165	total: 278ms	remaining: 185ms
60:	learn: 23.5658066	total: 282ms	remaining: 180ms
61:	learn: 23.4338851	total: 287ms	remaining: 176ms
62:	learn: 23.2408837	total: 291ms	remaining: 171ms
63:	learn: 23.0642038	total: 296ms	remaining: 166ms
64:	learn: 22.9032045	total: 300ms	remaining: 162ms
65:	learn: 22.7736138	total: 304ms	remaining: 157ms
66:	learn: 22.6836443	total: 310ms	remaining: 153ms
67:	learn: 22.5983654	total: 317ms	remaining: 149ms
68:	learn: 22.4419813	total: 325ms	remaining: 146ms
69:	learn: 22.2863339	total: 334ms	remaining: 143ms
70:	learn: 22.1792943	total: 341ms	remaining: 139ms
71:	learn: 22.1130574	total: 347ms	remaining: 135ms
72:	learn: 21.9858161	total: 352ms	remaining: 130ms
73:	learn: 21.8577784	total: 357ms	remaining: 126ms
74:	learn: 21.7845222	total: 363ms	remaining: 121ms
75:	learn: 21.6831390	total: 369ms	remaining: 116ms
76:	learn: 21.6292521	total: 374ms	remaining: 112ms
77:	learn: 21.5789330	total: 380ms	remaining: 107ms
78:	learn: 21.5420942	total: 385ms	remaining: 102ms
79:	learn: 21.4280939	total: 391ms	remaining: 97.6ms
80:	learn: 21.3641165	total: 395ms	remaining: 92.7ms
81:	learn: 21.2734814	total: 400ms	remaining: 87.9ms
82:	learn: 21.2220323	total: 406ms	remaining: 83.1ms
83:	learn: 21.0625792	total: 411ms	remaining: 78.4ms
84:	learn: 20.9488320	total: 416ms	remaining: 73.3ms
85:	learn: 20.8504255	total: 419ms	remaining: 68.3ms
86:	learn: 20.7848510	total: 424ms	remaining: 63.3ms
87:	learn: 20.7247442	total: 428ms	remaining: 58.3ms
88:	learn: 20.5698590	total: 432ms	remaining: 53.4ms
89:	learn: 20.4067620	total: 436ms	remaining: 48.5ms
90:	learn: 20.3062482	total: 440ms	remaining: 43.5ms
91:	learn: 20.2029696	total: 444ms	remaining: 38.6ms
92:	learn: 20.1384849	total: 448ms	remaining: 33.8ms
93:	learn: 20.0260709	total: 452ms	remaining: 28.9ms
94:	learn: 19.9122100	total: 456ms	remaining: 24ms
95:	learn: 19.8648487	total: 460ms	remaining: 19.2ms
96:	learn: 19.8207072	total: 464ms	remaining: 14.4ms
97:	learn: 19.7261189	total: 468ms	remaining: 9.56ms
98:	learn: 19.7042438	total: 472ms	remaining: 4.77ms
99:	learn: 19.6546645	total: 477ms	remaining: 0us
0:	learn: 47.0239288	total: 7.57ms	remaining: 749ms
1:	learn: 46.2253829	total: 12.8ms	remaining: 628ms
2:	learn: 45.5580301	total: 18.6ms	remaining: 600ms
3:	learn: 44.7273237	total: 23.1ms	remaining: 555ms
4:	learn: 43.8867421	total: 27.3ms	remaining: 519ms
5:	learn: 43.3615911	total: 31.2ms	remaining: 489ms
6:	learn: 42.8548390	total: 35ms	remaining: 464ms
7:	learn: 42.1606758	total: 39.1ms	remaining: 450ms
8:	learn: 41.6625870	total: 43.2ms	remaining: 437ms
9:	learn: 40.9497092	total: 47.2ms	remaining: 425ms
10:	learn: 40.1886318	total: 51ms	remaining: 413ms
11:	learn: 39.7456423	total: 55.6ms	remaining: 408ms
12:	learn: 39.1171373	total: 59.3ms	remaining: 397ms
13:	learn: 38.5451069	total: 63.4ms	remaining: 389ms
14:	learn: 38.0155834	total: 67.6ms	remaining: 383ms
15:	learn: 37.5631354	total: 71.9ms	remaining: 377ms
16:	learn: 37.1030023	total: 76ms	remaining: 371ms
17:	learn: 36.4563029	total: 79.9ms	remaining: 364ms
18:	learn: 36.0160976	total: 84.7ms	remaining: 361ms
19:	learn: 35.5079827	total: 89.3ms	remaining: 357ms
20:	learn: 35.2111885	total: 93.6ms	remaining: 352ms
21:	learn: 34.9397465	total: 98ms	remaining: 348ms
22:	learn: 34.5270048	total: 103ms	remaining: 344ms
23:	learn: 34.0169260	total: 107ms	remaining: 340ms
24:	learn: 33.7454892	total: 112ms	remaining: 335ms
25:	learn: 33.2648157	total: 116ms	remaining: 331ms
26:	learn: 32.8899427	total: 120ms	remaining: 324ms
27:	learn: 32.6185050	total: 124ms	remaining: 319ms
28:	learn: 32.3528531	total: 128ms	remaining: 314ms
29:	learn: 32.0859923	total: 133ms	remaining: 310ms
30:	learn: 31.6511144	total: 137ms	remaining: 304ms
31:	learn: 31.2571765	total: 140ms	remaining: 298ms
32:	learn: 30.9770049	total: 145ms	remaining: 294ms
33:	learn: 30.6084872	total: 149ms	remaining: 289ms
34:	learn: 30.3448632	total: 152ms	remaining: 283ms
35:	learn: 30.0360942	total: 156ms	remaining: 278ms
36:	learn: 29.6648968	total: 161ms	remaining: 274ms
37:	learn: 29.3165114	total: 166ms	remaining: 271ms
38:	learn: 29.0829198	total: 170ms	remaining: 266ms
39:	learn: 28.7752064	total: 174ms	remaining: 261ms
40:	learn: 28.3622191	total: 179ms	remaining: 257ms
41:	learn: 28.1346631	total: 184ms	remaining: 254ms
42:	learn: 27.9585719	total: 188ms	remaining: 249ms
43:	learn: 27.6565566	total: 195ms	remaining: 248ms
44:	learn: 27.3616172	total: 202ms	remaining: 246ms
45:	learn: 27.0658637	total: 208ms	remaining: 245ms
46:	learn: 26.8660382	total: 217ms	remaining: 244ms
47:	learn: 26.6536078	total: 225ms	remaining: 244ms
48:	learn: 26.3524440	total: 231ms	remaining: 240ms
49:	learn: 26.1595277	total: 235ms	remaining: 235ms
50:	learn: 25.9273523	total: 241ms	remaining: 231ms
51:	learn: 25.7195580	total: 246ms	remaining: 227ms
52:	learn: 25.5730225	total: 251ms	remaining: 223ms
53:	learn: 25.3455276	total: 256ms	remaining: 218ms
54:	learn: 25.2289675	total: 261ms	remaining: 214ms
55:	learn: 25.0133024	total: 267ms	remaining: 210ms
56:	learn: 24.8406714	total: 271ms	remaining: 205ms
57:	learn: 24.6367857	total: 276ms	remaining: 200ms
58:	learn: 24.5338177	total: 280ms	remaining: 195ms
59:	learn: 24.3799964	total: 284ms	remaining: 189ms
60:	learn: 24.1447492	total: 288ms	remaining: 184ms
61:	learn: 23.9880495	total: 293ms	remaining: 179ms
62:	learn: 23.7140630	total: 297ms	remaining: 175ms
63:	learn: 23.5003791	total: 303ms	remaining: 170ms
64:	learn: 23.3207645	total: 309ms	remaining: 166ms
65:	learn: 23.1958356	total: 313ms	remaining: 161ms
66:	learn: 23.0471302	total: 317ms	remaining: 156ms
67:	learn: 22.8977183	total: 321ms	remaining: 151ms
68:	learn: 22.7187400	total: 325ms	remaining: 146ms
69:	learn: 22.6523405	total: 329ms	remaining: 141ms
70:	learn: 22.4767453	total: 333ms	remaining: 136ms
71:	learn: 22.3243677	total: 337ms	remaining: 131ms
72:	learn: 22.2133096	total: 341ms	remaining: 126ms
73:	learn: 22.1151713	total: 346ms	remaining: 122ms
74:	learn: 22.0296666	total: 350ms	remaining: 117ms
75:	learn: 21.9195980	total: 354ms	remaining: 112ms
76:	learn: 21.8401730	total: 358ms	remaining: 107ms
77:	learn: 21.8079797	total: 362ms	remaining: 102ms
78:	learn: 21.7274109	total: 367ms	remaining: 97.5ms
79:	learn: 21.6663032	total: 371ms	remaining: 92.7ms
80:	learn: 21.5633117	total: 375ms	remaining: 88ms
81:	learn: 21.4542467	total: 379ms	remaining: 83.2ms
82:	learn: 21.3177957	total: 384ms	remaining: 78.6ms
83:	learn: 21.1289167	total: 388ms	remaining: 73.9ms
84:	learn: 21.0297368	total: 396ms	remaining: 69.8ms
85:	learn: 20.9089564	total: 403ms	remaining: 65.6ms
86:	learn: 20.7653988	total: 410ms	remaining: 61.3ms
87:	learn: 20.6521894	total: 415ms	remaining: 56.7ms
88:	learn: 20.5193021	total: 422ms	remaining: 52.1ms
89:	learn: 20.4361620	total: 426ms	remaining: 47.4ms
90:	learn: 20.3546710	total: 431ms	remaining: 42.6ms
91:	learn: 20.2513296	total: 435ms	remaining: 37.9ms
92:	learn: 20.1605550	total: 440ms	remaining: 33.1ms
93:	learn: 20.0515942	total: 445ms	remaining: 28.4ms
94:	learn: 19.9800764	total: 449ms	remaining: 23.6ms
95:	learn: 19.8996532	total: 453ms	remaining: 18.9ms
96:	learn: 19.8450910	total: 457ms	remaining: 14.1ms
97:	learn: 19.7887346	total: 461ms	remaining: 9.42ms
98:	learn: 19.7230872	total: 466ms	remaining: 4.7ms
99:	learn: 19.6328825	total: 469ms	remaining: 0us
0:	learn: 27.3441720	total: 22.3ms	remaining: 2.21s
1:	learn: 26.7159954	total: 42.2ms	remaining: 2.06s
2:	learn: 26.0850318	total: 64.6ms	remaining: 2.09s
3:	learn: 25.4039656	total: 87.3ms	remaining: 2.1s
4:	learn: 24.7930659	total: 115ms	remaining: 2.18s
5:	learn: 24.2028590	total: 138ms	remaining: 2.16s
6:	learn: 23.6622902	total: 160ms	remaining: 2.13s
7:	learn: 23.1531175	total: 183ms	remaining: 2.1s
8:	learn: 22.7050792	total: 206ms	remaining: 2.08s
9:	learn: 22.2151788	total: 225ms	remaining: 2.03s
10:	learn: 21.7708844	total: 244ms	remaining: 1.97s
11:	learn: 21.2587174	total: 264ms	remaining: 1.93s
12:	learn: 20.7559870	total: 286ms	remaining: 1.91s
13:	learn: 20.3040842	total: 312ms	remaining: 1.92s
14:	learn: 19.9019524	total: 337ms	remaining: 1.91s
15:	learn: 19.5186012	total: 356ms	remaining: 1.87s
16:	learn: 19.1521621	total: 376ms	remaining: 1.83s
17:	learn: 18.7652180	total: 398ms	remaining: 1.81s
18:	learn: 18.4446446	total: 417ms	remaining: 1.78s
19:	learn: 18.0977650	total: 438ms	remaining: 1.75s
20:	learn: 17.7791328	total: 459ms	remaining: 1.73s
21:	learn: 17.4777648	total: 479ms	remaining: 1.7s
22:	learn: 17.1794361	total: 499ms	remaining: 1.67s
23:	learn: 16.8685032	total: 521ms	remaining: 1.65s
24:	learn: 16.6274695	total: 550ms	remaining: 1.65s
25:	learn: 16.3071099	total: 575ms	remaining: 1.64s
26:	learn: 16.0249663	total: 596ms	remaining: 1.61s
27:	learn: 15.7535309	total: 619ms	remaining: 1.59s
28:	learn: 15.4777235	total: 640ms	remaining: 1.57s
29:	learn: 15.2410825	total: 662ms	remaining: 1.54s
30:	learn: 15.0133002	total: 684ms	remaining: 1.52s
31:	learn: 14.8018912	total: 704ms	remaining: 1.5s
32:	learn: 14.5701546	total: 725ms	remaining: 1.47s
33:	learn: 14.3799060	total: 747ms	remaining: 1.45s
34:	learn: 14.0975095	total: 776ms	remaining: 1.44s
35:	learn: 13.8873493	total: 797ms	remaining: 1.42s
36:	learn: 13.6812023	total: 818ms	remaining: 1.39s
37:	learn: 13.4943017	total: 841ms	remaining: 1.37s
38:	learn: 13.3224094	total: 863ms	remaining: 1.35s
39:	learn: 13.0967901	total: 886ms	remaining: 1.33s
40:	learn: 12.9138190	total: 906ms	remaining: 1.3s
41:	learn: 12.7764458	total: 927ms	remaining: 1.28s
42:	learn: 12.6593656	total: 951ms	remaining: 1.26s
43:	learn: 12.5051105	total: 982ms	remaining: 1.25s
44:	learn: 12.3057146	total: 1.01s	remaining: 1.23s
45:	learn: 12.1487674	total: 1.03s	remaining: 1.21s
46:	learn: 11.9614903	total: 1.05s	remaining: 1.19s
47:	learn: 11.7921265	total: 1.08s	remaining: 1.17s
48:	learn: 11.6572640	total: 1.1s	remaining: 1.14s
49:	learn: 11.5251463	total: 1.12s	remaining: 1.12s
50:	learn: 11.3789931	total: 1.14s	remaining: 1.1s
51:	learn: 11.2691375	total: 1.17s	remaining: 1.08s
52:	learn: 11.1161131	total: 1.2s	remaining: 1.06s
53:	learn: 11.0246399	total: 1.22s	remaining: 1.04s
54:	learn: 10.9152420	total: 1.24s	remaining: 1.01s
55:	learn: 10.7746769	total: 1.26s	remaining: 993ms
56:	learn: 10.6222917	total: 1.28s	remaining: 969ms
57:	learn: 10.5096115	total: 1.31s	remaining: 946ms
58:	learn: 10.3857030	total: 1.33s	remaining: 923ms
59:	learn: 10.2789057	total: 1.35s	remaining: 900ms
60:	learn: 10.1490749	total: 1.37s	remaining: 878ms
61:	learn: 10.0553291	total: 1.4s	remaining: 859ms
62:	learn: 9.9351043	total: 1.43s	remaining: 839ms
63:	learn: 9.8245261	total: 1.45s	remaining: 817ms
64:	learn: 9.7207577	total: 1.48s	remaining: 795ms
65:	learn: 9.5920661	total: 1.5s	remaining: 772ms
66:	learn: 9.4832767	total: 1.52s	remaining: 750ms
67:	learn: 9.3724149	total: 1.54s	remaining: 727ms
68:	learn: 9.2459801	total: 1.57s	remaining: 705ms
69:	learn: 9.1740635	total: 1.59s	remaining: 682ms
70:	learn: 9.1015730	total: 1.62s	remaining: 661ms
71:	learn: 9.0196460	total: 1.64s	remaining: 639ms
72:	learn: 8.9458977	total: 1.66s	remaining: 615ms
73:	learn: 8.8434400	total: 1.69s	remaining: 592ms
74:	learn: 8.7495151	total: 1.71s	remaining: 570ms
75:	learn: 8.6521348	total: 1.73s	remaining: 546ms
76:	learn: 8.5654483	total: 1.75s	remaining: 524ms
77:	learn: 8.4965765	total: 1.78s	remaining: 501ms
78:	learn: 8.4308736	total: 1.8s	remaining: 478ms
79:	learn: 8.3675601	total: 1.83s	remaining: 458ms
80:	learn: 8.3193887	total: 1.85s	remaining: 435ms
81:	learn: 8.2507990	total: 1.88s	remaining: 412ms
82:	learn: 8.1583259	total: 1.9s	remaining: 389ms
83:	learn: 8.0995902	total: 1.92s	remaining: 366ms
84:	learn: 8.0236655	total: 1.94s	remaining: 343ms
85:	learn: 7.9634698	total: 1.97s	remaining: 320ms
86:	learn: 7.9109081	total: 1.99s	remaining: 297ms
87:	learn: 7.8385006	total: 2.01s	remaining: 274ms
88:	learn: 7.7859488	total: 2.04s	remaining: 252ms
89:	learn: 7.7270142	total: 2.06s	remaining: 229ms
90:	learn: 7.6774253	total: 2.08s	remaining: 206ms
91:	learn: 7.6126552	total: 2.1s	remaining: 183ms
92:	learn: 7.5392178	total: 2.12s	remaining: 160ms
93:	learn: 7.4745082	total: 2.14s	remaining: 137ms
94:	learn: 7.4106939	total: 2.16s	remaining: 114ms
95:	learn: 7.3573350	total: 2.19s	remaining: 91ms
96:	learn: 7.2889777	total: 2.21s	remaining: 68.3ms
97:	learn: 7.2204939	total: 2.24s	remaining: 45.6ms
98:	learn: 7.1646465	total: 2.26s	remaining: 22.8ms
99:	learn: 7.1204610	total: 2.28s	remaining: 0us
0:	learn: 42.5494645	total: 21.7ms	remaining: 2.15s
1:	learn: 41.2913513	total: 43ms	remaining: 2.1s
2:	learn: 40.1676527	total: 63.2ms	remaining: 2.04s
3:	learn: 38.7664819	total: 83.8ms	remaining: 2.01s
4:	learn: 37.5407492	total: 106ms	remaining: 2.02s
5:	learn: 36.4295331	total: 133ms	remaining: 2.08s
6:	learn: 35.2895967	total: 157ms	remaining: 2.08s
7:	learn: 34.1884539	total: 178ms	remaining: 2.05s
8:	learn: 33.1817690	total: 200ms	remaining: 2.02s
9:	learn: 32.3518195	total: 221ms	remaining: 1.99s
10:	learn: 31.4837515	total: 243ms	remaining: 1.96s
11:	learn: 30.7255972	total: 264ms	remaining: 1.94s
12:	learn: 29.9298648	total: 285ms	remaining: 1.91s
13:	learn: 29.0574249	total: 307ms	remaining: 1.89s
14:	learn: 28.4097384	total: 339ms	remaining: 1.92s
15:	learn: 27.5317445	total: 365ms	remaining: 1.92s
16:	learn: 26.7911946	total: 387ms	remaining: 1.89s
17:	learn: 26.1103465	total: 410ms	remaining: 1.86s
18:	learn: 25.5295903	total: 433ms	remaining: 1.84s
19:	learn: 24.8544960	total: 452ms	remaining: 1.81s
20:	learn: 24.2772682	total: 473ms	remaining: 1.78s
21:	learn: 23.6936944	total: 496ms	remaining: 1.76s
22:	learn: 23.1300945	total: 518ms	remaining: 1.73s
23:	learn: 22.5333494	total: 546ms	remaining: 1.73s
24:	learn: 22.0553465	total: 568ms	remaining: 1.71s
25:	learn: 21.6253628	total: 589ms	remaining: 1.68s
26:	learn: 21.1396219	total: 610ms	remaining: 1.65s
27:	learn: 20.7382905	total: 631ms	remaining: 1.62s
28:	learn: 20.3233915	total: 650ms	remaining: 1.59s
29:	learn: 19.9323992	total: 671ms	remaining: 1.56s
30:	learn: 19.5650439	total: 691ms	remaining: 1.54s
31:	learn: 19.2165649	total: 712ms	remaining: 1.51s
32:	learn: 18.8890056	total: 733ms	remaining: 1.49s
33:	learn: 18.5523762	total: 765ms	remaining: 1.49s
34:	learn: 18.2666116	total: 790ms	remaining: 1.47s
35:	learn: 17.9216926	total: 812ms	remaining: 1.44s
36:	learn: 17.6118879	total: 835ms	remaining: 1.42s
37:	learn: 17.2653313	total: 857ms	remaining: 1.4s
38:	learn: 16.9946585	total: 879ms	remaining: 1.38s
39:	learn: 16.6842506	total: 900ms	remaining: 1.35s
40:	learn: 16.4102287	total: 920ms	remaining: 1.32s
41:	learn: 16.2288795	total: 942ms	remaining: 1.3s
42:	learn: 15.9623692	total: 973ms	remaining: 1.29s
43:	learn: 15.7308231	total: 997ms	remaining: 1.27s
44:	learn: 15.4695555	total: 1.02s	remaining: 1.24s
45:	learn: 15.2706809	total: 1.04s	remaining: 1.22s
46:	learn: 15.0182699	total: 1.06s	remaining: 1.2s
47:	learn: 14.7702088	total: 1.08s	remaining: 1.17s
48:	learn: 14.6303566	total: 1.1s	remaining: 1.15s
49:	learn: 14.4038016	total: 1.13s	remaining: 1.13s
50:	learn: 14.2309807	total: 1.15s	remaining: 1.1s
51:	learn: 14.0308425	total: 1.18s	remaining: 1.09s
52:	learn: 13.8201931	total: 1.21s	remaining: 1.07s
53:	learn: 13.6070078	total: 1.23s	remaining: 1.05s
54:	learn: 13.4230690	total: 1.25s	remaining: 1.03s
55:	learn: 13.2368649	total: 1.28s	remaining: 1s
56:	learn: 13.0449556	total: 1.3s	remaining: 981ms
57:	learn: 12.8375669	total: 1.32s	remaining: 958ms
58:	learn: 12.6795194	total: 1.34s	remaining: 934ms
59:	learn: 12.5197211	total: 1.37s	remaining: 916ms
60:	learn: 12.4011717	total: 1.4s	remaining: 894ms
61:	learn: 12.2396104	total: 1.42s	remaining: 872ms
62:	learn: 12.0647878	total: 1.45s	remaining: 849ms
63:	learn: 11.9247719	total: 1.47s	remaining: 827ms
64:	learn: 11.7923634	total: 1.49s	remaining: 803ms
65:	learn: 11.6628246	total: 1.51s	remaining: 780ms
66:	learn: 11.5688935	total: 1.54s	remaining: 757ms
67:	learn: 11.4345056	total: 1.56s	remaining: 734ms
68:	learn: 11.3136955	total: 1.58s	remaining: 711ms
69:	learn: 11.2040357	total: 1.61s	remaining: 692ms
70:	learn: 11.1067773	total: 1.64s	remaining: 670ms
71:	learn: 10.9728105	total: 1.66s	remaining: 647ms
72:	learn: 10.8338607	total: 1.69s	remaining: 624ms
73:	learn: 10.7202016	total: 1.71s	remaining: 600ms
74:	learn: 10.5983746	total: 1.73s	remaining: 577ms
75:	learn: 10.4882458	total: 1.75s	remaining: 554ms
76:	learn: 10.3827604	total: 1.78s	remaining: 532ms
77:	learn: 10.2485726	total: 1.81s	remaining: 510ms
78:	learn: 10.1524716	total: 1.83s	remaining: 487ms
79:	learn: 10.0765127	total: 1.85s	remaining: 463ms
80:	learn: 9.9617067	total: 1.87s	remaining: 440ms
81:	learn: 9.8357151	total: 1.9s	remaining: 416ms
82:	learn: 9.7311644	total: 1.92s	remaining: 393ms
83:	learn: 9.6314802	total: 1.94s	remaining: 369ms
84:	learn: 9.5137958	total: 1.96s	remaining: 346ms
85:	learn: 9.4420485	total: 1.99s	remaining: 323ms
86:	learn: 9.3959294	total: 2.01s	remaining: 300ms
87:	learn: 9.3057742	total: 2.04s	remaining: 278ms
88:	learn: 9.2031484	total: 2.06s	remaining: 255ms
89:	learn: 9.0996948	total: 2.09s	remaining: 232ms
90:	learn: 9.0492278	total: 2.11s	remaining: 209ms
91:	learn: 8.9400377	total: 2.13s	remaining: 186ms
92:	learn: 8.8904458	total: 2.16s	remaining: 162ms
93:	learn: 8.8102982	total: 2.18s	remaining: 139ms
94:	learn: 8.7445451	total: 2.2s	remaining: 116ms
95:	learn: 8.6796106	total: 2.22s	remaining: 92.6ms
96:	learn: 8.5875790	total: 2.25s	remaining: 69.6ms
97:	learn: 8.5086871	total: 2.27s	remaining: 46.4ms
98:	learn: 8.4547244	total: 2.29s	remaining: 23.2ms
99:	learn: 8.3841281	total: 2.31s	remaining: 0us
0:	learn: 46.2258117	total: 2.88ms	remaining: 285ms
1:	learn: 45.1253456	total: 25.9ms	remaining: 1.27s
2:	learn: 43.7311767	total: 49.4ms	remaining: 1.59s
3:	learn: 42.4252819	total: 74.3ms	remaining: 1.78s
4:	learn: 41.1436655	total: 107ms	remaining: 2.03s
5:	learn: 40.0337136	total: 131ms	remaining: 2.05s
6:	learn: 38.9102686	total: 154ms	remaining: 2.04s
7:	learn: 37.7859737	total: 176ms	remaining: 2.03s
8:	learn: 36.7646905	total: 200ms	remaining: 2.02s
9:	learn: 35.9495481	total: 221ms	remaining: 1.99s
10:	learn: 35.0558185	total: 244ms	remaining: 1.98s
11:	learn: 34.1958090	total: 268ms	remaining: 1.96s
12:	learn: 33.3514013	total: 295ms	remaining: 1.97s
13:	learn: 32.3317086	total: 320ms	remaining: 1.97s
14:	learn: 31.5611046	total: 343ms	remaining: 1.94s
15:	learn: 30.6373573	total: 364ms	remaining: 1.91s
16:	learn: 29.8883669	total: 385ms	remaining: 1.88s
17:	learn: 29.2985952	total: 405ms	remaining: 1.84s
18:	learn: 28.6360550	total: 427ms	remaining: 1.82s
19:	learn: 27.9757056	total: 447ms	remaining: 1.79s
20:	learn: 27.2585835	total: 466ms	remaining: 1.75s
21:	learn: 26.6366391	total: 487ms	remaining: 1.73s
22:	learn: 26.1055455	total: 511ms	remaining: 1.71s
23:	learn: 25.4961568	total: 540ms	remaining: 1.71s
24:	learn: 25.1037435	total: 562ms	remaining: 1.69s
25:	learn: 24.5258982	total: 585ms	remaining: 1.67s
26:	learn: 23.9974764	total: 610ms	remaining: 1.65s
27:	learn: 23.5108419	total: 635ms	remaining: 1.63s
28:	learn: 23.0835773	total: 658ms	remaining: 1.61s
29:	learn: 22.5744350	total: 682ms	remaining: 1.59s
30:	learn: 22.1357783	total: 705ms	remaining: 1.57s
31:	learn: 21.7316226	total: 740ms	remaining: 1.57s
32:	learn: 21.4082899	total: 764ms	remaining: 1.55s
33:	learn: 20.9640138	total: 786ms	remaining: 1.53s
34:	learn: 20.6379417	total: 809ms	remaining: 1.5s
35:	learn: 20.2688010	total: 832ms	remaining: 1.48s
36:	learn: 19.8479214	total: 854ms	remaining: 1.45s
37:	learn: 19.5684638	total: 877ms	remaining: 1.43s
38:	learn: 19.1826919	total: 899ms	remaining: 1.41s
39:	learn: 18.9583308	total: 923ms	remaining: 1.39s
40:	learn: 18.6736002	total: 972ms	remaining: 1.4s
41:	learn: 18.3525328	total: 995ms	remaining: 1.37s
42:	learn: 17.9954191	total: 1.02s	remaining: 1.35s
43:	learn: 17.6991520	total: 1.04s	remaining: 1.33s
44:	learn: 17.3697888	total: 1.07s	remaining: 1.3s
45:	learn: 17.0519636	total: 1.09s	remaining: 1.28s
46:	learn: 16.7829795	total: 1.11s	remaining: 1.25s
47:	learn: 16.5108695	total: 1.14s	remaining: 1.23s
48:	learn: 16.2366816	total: 1.16s	remaining: 1.21s
49:	learn: 15.9947350	total: 1.19s	remaining: 1.19s
50:	learn: 15.7513561	total: 1.21s	remaining: 1.16s
51:	learn: 15.4328481	total: 1.23s	remaining: 1.14s
52:	learn: 15.2497907	total: 1.25s	remaining: 1.11s
53:	learn: 15.0417076	total: 1.27s	remaining: 1.08s
54:	learn: 14.8861891	total: 1.29s	remaining: 1.05s
55:	learn: 14.6497794	total: 1.31s	remaining: 1.03s
56:	learn: 14.3664771	total: 1.34s	remaining: 1.01s
57:	learn: 14.2358168	total: 1.36s	remaining: 986ms
58:	learn: 14.0712722	total: 1.38s	remaining: 962ms
59:	learn: 13.9191649	total: 1.41s	remaining: 938ms
60:	learn: 13.7032356	total: 1.43s	remaining: 913ms
61:	learn: 13.5029041	total: 1.45s	remaining: 889ms
62:	learn: 13.3568908	total: 1.47s	remaining: 865ms
63:	learn: 13.1332696	total: 1.49s	remaining: 839ms
64:	learn: 13.0323137	total: 1.51s	remaining: 814ms
65:	learn: 12.8622078	total: 1.53s	remaining: 789ms
66:	learn: 12.7088186	total: 1.56s	remaining: 768ms
67:	learn: 12.5524646	total: 1.58s	remaining: 746ms
68:	learn: 12.4646011	total: 1.61s	remaining: 722ms
69:	learn: 12.3900687	total: 1.63s	remaining: 697ms
70:	learn: 12.2908367	total: 1.65s	remaining: 673ms
71:	learn: 12.1294405	total: 1.67s	remaining: 649ms
72:	learn: 12.0359996	total: 1.69s	remaining: 624ms
73:	learn: 11.9244352	total: 1.71s	remaining: 601ms
74:	learn: 11.8312038	total: 1.73s	remaining: 577ms
75:	learn: 11.6622123	total: 1.76s	remaining: 558ms
76:	learn: 11.5959180	total: 1.79s	remaining: 535ms
77:	learn: 11.4538852	total: 1.81s	remaining: 511ms
78:	learn: 11.3700375	total: 1.83s	remaining: 488ms
79:	learn: 11.2101447	total: 1.86s	remaining: 464ms
80:	learn: 11.0614634	total: 1.88s	remaining: 441ms
81:	learn: 10.9029225	total: 1.9s	remaining: 417ms
82:	learn: 10.7792030	total: 1.92s	remaining: 394ms
83:	learn: 10.6279451	total: 1.95s	remaining: 371ms
84:	learn: 10.5530267	total: 1.97s	remaining: 347ms
85:	learn: 10.4577150	total: 2s	remaining: 325ms
86:	learn: 10.4076417	total: 2.02s	remaining: 302ms
87:	learn: 10.3166632	total: 2.04s	remaining: 279ms
88:	learn: 10.2018151	total: 2.06s	remaining: 255ms
89:	learn: 10.0698484	total: 2.1s	remaining: 233ms
90:	learn: 10.0162824	total: 2.12s	remaining: 210ms
91:	learn: 9.9352639	total: 2.15s	remaining: 187ms
92:	learn: 9.8316734	total: 2.17s	remaining: 163ms
93:	learn: 9.7195471	total: 2.2s	remaining: 140ms
94:	learn: 9.5914894	total: 2.23s	remaining: 117ms
95:	learn: 9.5151851	total: 2.25s	remaining: 93.9ms
96:	learn: 9.3911314	total: 2.28s	remaining: 70.5ms
97:	learn: 9.3417706	total: 2.3s	remaining: 47ms
98:	learn: 9.2708440	total: 2.33s	remaining: 23.5ms
99:	learn: 9.1660321	total: 2.35s	remaining: 0us
0:	learn: 45.8627255	total: 2.64ms	remaining: 261ms
1:	learn: 44.7432040	total: 33.8ms	remaining: 1.65s
2:	learn: 43.4398568	total: 64.1ms	remaining: 2.07s
3:	learn: 42.1495515	total: 85.4ms	remaining: 2.05s
4:	learn: 40.9712633	total: 108ms	remaining: 2.06s
5:	learn: 40.0119591	total: 130ms	remaining: 2.04s
6:	learn: 39.1914360	total: 152ms	remaining: 2.02s
7:	learn: 38.1861536	total: 176ms	remaining: 2.02s
8:	learn: 37.1477128	total: 200ms	remaining: 2.02s
9:	learn: 36.3044702	total: 225ms	remaining: 2.03s
10:	learn: 35.5837917	total: 256ms	remaining: 2.07s
11:	learn: 34.8664158	total: 281ms	remaining: 2.06s
12:	learn: 33.9129833	total: 315ms	remaining: 2.11s
13:	learn: 32.9094642	total: 339ms	remaining: 2.08s
14:	learn: 32.1965787	total: 365ms	remaining: 2.07s
15:	learn: 31.4598238	total: 387ms	remaining: 2.03s
16:	learn: 30.6578027	total: 412ms	remaining: 2.01s
17:	learn: 30.0227468	total: 437ms	remaining: 1.99s
18:	learn: 29.2954728	total: 467ms	remaining: 1.99s
19:	learn: 28.5928084	total: 491ms	remaining: 1.97s
20:	learn: 27.9445984	total: 514ms	remaining: 1.93s
21:	learn: 27.3493298	total: 535ms	remaining: 1.9s
22:	learn: 26.8491966	total: 565ms	remaining: 1.89s
23:	learn: 26.3177453	total: 588ms	remaining: 1.86s
24:	learn: 25.8134533	total: 610ms	remaining: 1.83s
25:	learn: 25.2000018	total: 635ms	remaining: 1.8s
26:	learn: 24.6570461	total: 664ms	remaining: 1.79s
27:	learn: 24.1062982	total: 694ms	remaining: 1.78s
28:	learn: 23.7489370	total: 718ms	remaining: 1.76s
29:	learn: 23.2050536	total: 743ms	remaining: 1.73s
30:	learn: 22.7824379	total: 767ms	remaining: 1.71s
31:	learn: 22.4052655	total: 795ms	remaining: 1.69s
32:	learn: 21.9525639	total: 829ms	remaining: 1.68s
33:	learn: 21.5482900	total: 854ms	remaining: 1.66s
34:	learn: 21.1900983	total: 884ms	remaining: 1.64s
35:	learn: 20.8243957	total: 909ms	remaining: 1.62s
36:	learn: 20.4401288	total: 933ms	remaining: 1.59s
37:	learn: 20.0960622	total: 954ms	remaining: 1.56s
38:	learn: 19.7795108	total: 979ms	remaining: 1.53s
39:	learn: 19.4922451	total: 1s	remaining: 1.5s
40:	learn: 19.1827582	total: 1.02s	remaining: 1.47s
41:	learn: 18.8902445	total: 1.05s	remaining: 1.45s
42:	learn: 18.6833086	total: 1.08s	remaining: 1.43s
43:	learn: 18.4251972	total: 1.11s	remaining: 1.41s
44:	learn: 18.1471037	total: 1.14s	remaining: 1.39s
45:	learn: 17.8420017	total: 1.17s	remaining: 1.37s
46:	learn: 17.6101998	total: 1.19s	remaining: 1.34s
47:	learn: 17.3353656	total: 1.22s	remaining: 1.32s
48:	learn: 17.1194789	total: 1.24s	remaining: 1.29s
49:	learn: 16.8898454	total: 1.26s	remaining: 1.26s
50:	learn: 16.6657497	total: 1.29s	remaining: 1.24s
51:	learn: 16.3832867	total: 1.31s	remaining: 1.21s
52:	learn: 16.2098226	total: 1.35s	remaining: 1.2s
53:	learn: 16.0045707	total: 1.38s	remaining: 1.17s
54:	learn: 15.8512887	total: 1.4s	remaining: 1.15s
55:	learn: 15.6485628	total: 1.42s	remaining: 1.12s
56:	learn: 15.4841428	total: 1.45s	remaining: 1.09s
57:	learn: 15.3383158	total: 1.47s	remaining: 1.06s
58:	learn: 15.2056282	total: 1.49s	remaining: 1.04s
59:	learn: 15.0698337	total: 1.52s	remaining: 1.01s
60:	learn: 14.8487796	total: 1.55s	remaining: 991ms
61:	learn: 14.7255751	total: 1.59s	remaining: 972ms
62:	learn: 14.6100414	total: 1.61s	remaining: 947ms
63:	learn: 14.3864212	total: 1.64s	remaining: 920ms
64:	learn: 14.2800460	total: 1.66s	remaining: 894ms
65:	learn: 14.1017299	total: 1.68s	remaining: 866ms
66:	learn: 13.9655015	total: 1.7s	remaining: 839ms
67:	learn: 13.8065764	total: 1.73s	remaining: 812ms
68:	learn: 13.7473285	total: 1.75s	remaining: 786ms
69:	learn: 13.6967309	total: 1.78s	remaining: 761ms
70:	learn: 13.6253255	total: 1.8s	remaining: 736ms
71:	learn: 13.4974926	total: 1.83s	remaining: 713ms
72:	learn: 13.4142694	total: 1.86s	remaining: 687ms
73:	learn: 13.2902600	total: 1.88s	remaining: 660ms
74:	learn: 13.1816461	total: 1.9s	remaining: 634ms
75:	learn: 13.0809498	total: 1.92s	remaining: 608ms
76:	learn: 12.9772285	total: 1.95s	remaining: 581ms
77:	learn: 12.8413858	total: 1.97s	remaining: 556ms
78:	learn: 12.7615799	total: 1.99s	remaining: 530ms
79:	learn: 12.5808659	total: 2.03s	remaining: 507ms
80:	learn: 12.4938330	total: 2.05s	remaining: 482ms
81:	learn: 12.3745576	total: 2.09s	remaining: 458ms
82:	learn: 12.2474104	total: 2.11s	remaining: 433ms
83:	learn: 12.1582297	total: 2.14s	remaining: 407ms
84:	learn: 12.0528081	total: 2.16s	remaining: 381ms
85:	learn: 11.9483355	total: 2.19s	remaining: 356ms
86:	learn: 11.8683204	total: 2.21s	remaining: 330ms
87:	learn: 11.7680945	total: 2.24s	remaining: 306ms
88:	learn: 11.6635447	total: 2.27s	remaining: 280ms
89:	learn: 11.5775031	total: 2.29s	remaining: 254ms
90:	learn: 11.4860538	total: 2.31s	remaining: 229ms
91:	learn: 11.3584960	total: 2.34s	remaining: 204ms
92:	learn: 11.2180285	total: 2.36s	remaining: 178ms
93:	learn: 11.0996558	total: 2.39s	remaining: 152ms
94:	learn: 10.9688832	total: 2.41s	remaining: 127ms
95:	learn: 10.9205457	total: 2.45s	remaining: 102ms
96:	learn: 10.8462783	total: 2.47s	remaining: 76.5ms
97:	learn: 10.7481890	total: 2.5s	remaining: 51ms
98:	learn: 10.6396315	total: 2.52s	remaining: 25.5ms
99:	learn: 10.5895308	total: 2.54s	remaining: 0us
0:	learn: 46.2892189	total: 30ms	remaining: 2.97s
1:	learn: 44.9732744	total: 62.8ms	remaining: 3.08s
2:	learn: 43.8887345	total: 86.3ms	remaining: 2.79s
3:	learn: 42.6526320	total: 110ms	remaining: 2.63s
4:	learn: 41.4812505	total: 133ms	remaining: 2.54s
5:	learn: 40.4431224	total: 157ms	remaining: 2.46s
6:	learn: 39.2936749	total: 181ms	remaining: 2.4s
7:	learn: 38.1961652	total: 202ms	remaining: 2.32s
8:	learn: 37.2194841	total: 225ms	remaining: 2.28s
9:	learn: 36.2518666	total: 247ms	remaining: 2.22s
10:	learn: 35.4919224	total: 270ms	remaining: 2.18s
11:	learn: 34.6975877	total: 304ms	remaining: 2.23s
12:	learn: 33.7869362	total: 337ms	remaining: 2.25s
13:	learn: 33.0646033	total: 365ms	remaining: 2.24s
14:	learn: 32.1821772	total: 390ms	remaining: 2.21s
15:	learn: 31.4340749	total: 415ms	remaining: 2.18s
16:	learn: 30.6504198	total: 442ms	remaining: 2.16s
17:	learn: 30.0090260	total: 465ms	remaining: 2.12s
18:	learn: 29.4233143	total: 488ms	remaining: 2.08s
19:	learn: 28.7661957	total: 513ms	remaining: 2.05s
20:	learn: 28.1570594	total: 547ms	remaining: 2.06s
21:	learn: 27.6140124	total: 579ms	remaining: 2.05s
22:	learn: 27.0130709	total: 604ms	remaining: 2.02s
23:	learn: 26.2648081	total: 626ms	remaining: 1.98s
24:	learn: 25.7963649	total: 649ms	remaining: 1.95s
25:	learn: 25.2713860	total: 672ms	remaining: 1.91s
26:	learn: 24.8080692	total: 696ms	remaining: 1.88s
27:	learn: 24.3042862	total: 721ms	remaining: 1.85s
28:	learn: 23.9097237	total: 753ms	remaining: 1.84s
29:	learn: 23.4953174	total: 779ms	remaining: 1.82s
30:	learn: 23.0484452	total: 804ms	remaining: 1.79s
31:	learn: 22.7100962	total: 835ms	remaining: 1.77s
32:	learn: 22.1662267	total: 860ms	remaining: 1.75s
33:	learn: 21.7339884	total: 883ms	remaining: 1.71s
34:	learn: 21.3699422	total: 908ms	remaining: 1.69s
35:	learn: 21.0249329	total: 934ms	remaining: 1.66s
36:	learn: 20.6187923	total: 960ms	remaining: 1.63s
37:	learn: 20.2401981	total: 988ms	remaining: 1.61s
38:	learn: 19.9712328	total: 1.01s	remaining: 1.58s
39:	learn: 19.6429610	total: 1.03s	remaining: 1.55s
40:	learn: 19.3281556	total: 1.05s	remaining: 1.52s
41:	learn: 19.0925924	total: 1.08s	remaining: 1.5s
42:	learn: 18.8118712	total: 1.11s	remaining: 1.47s
43:	learn: 18.5355748	total: 1.13s	remaining: 1.44s
44:	learn: 18.2783929	total: 1.16s	remaining: 1.42s
45:	learn: 17.9915490	total: 1.19s	remaining: 1.39s
46:	learn: 17.7323317	total: 1.22s	remaining: 1.37s
47:	learn: 17.4448307	total: 1.24s	remaining: 1.34s
48:	learn: 17.2419782	total: 1.27s	remaining: 1.32s
49:	learn: 16.9351352	total: 1.29s	remaining: 1.29s
50:	learn: 16.7728723	total: 1.32s	remaining: 1.26s
51:	learn: 16.5718087	total: 1.35s	remaining: 1.25s
52:	learn: 16.4047483	total: 1.37s	remaining: 1.22s
53:	learn: 16.2888950	total: 1.4s	remaining: 1.19s
54:	learn: 16.1353042	total: 1.43s	remaining: 1.17s
55:	learn: 15.9384012	total: 1.45s	remaining: 1.14s
56:	learn: 15.7488511	total: 1.48s	remaining: 1.11s
57:	learn: 15.5682846	total: 1.5s	remaining: 1.09s
58:	learn: 15.3488716	total: 1.53s	remaining: 1.06s
59:	learn: 15.2291272	total: 1.55s	remaining: 1.03s
60:	learn: 15.0582519	total: 1.57s	remaining: 1.01s
61:	learn: 14.8478458	total: 1.61s	remaining: 985ms
62:	learn: 14.6663416	total: 1.64s	remaining: 965ms
63:	learn: 14.4830825	total: 1.67s	remaining: 939ms
64:	learn: 14.3300895	total: 1.69s	remaining: 912ms
65:	learn: 14.1168590	total: 1.72s	remaining: 886ms
66:	learn: 13.9783298	total: 1.75s	remaining: 860ms
67:	learn: 13.8132857	total: 1.77s	remaining: 833ms
68:	learn: 13.7050863	total: 1.79s	remaining: 806ms
69:	learn: 13.5742501	total: 1.82s	remaining: 780ms
70:	learn: 13.4851362	total: 1.85s	remaining: 755ms
71:	learn: 13.3300610	total: 1.88s	remaining: 732ms
72:	learn: 13.2223060	total: 1.91s	remaining: 706ms
73:	learn: 13.0706731	total: 1.93s	remaining: 679ms
74:	learn: 12.9178099	total: 1.96s	remaining: 653ms
75:	learn: 12.7954645	total: 1.98s	remaining: 626ms
76:	learn: 12.7133688	total: 2.01s	remaining: 600ms
77:	learn: 12.5745537	total: 2.03s	remaining: 574ms
78:	learn: 12.4765302	total: 2.06s	remaining: 549ms
79:	learn: 12.3609145	total: 2.09s	remaining: 523ms
80:	learn: 12.2437759	total: 2.12s	remaining: 496ms
81:	learn: 12.1583763	total: 2.15s	remaining: 472ms
82:	learn: 12.0202500	total: 2.18s	remaining: 446ms
83:	learn: 11.9125166	total: 2.21s	remaining: 420ms
84:	learn: 11.8100729	total: 2.23s	remaining: 394ms
85:	learn: 11.7509521	total: 2.26s	remaining: 367ms
86:	learn: 11.6448436	total: 2.29s	remaining: 342ms
87:	learn: 11.5550170	total: 2.32s	remaining: 316ms
88:	learn: 11.4624708	total: 2.34s	remaining: 289ms
89:	learn: 11.3547761	total: 2.36s	remaining: 263ms
90:	learn: 11.2513910	total: 2.39s	remaining: 236ms
91:	learn: 11.1414483	total: 2.42s	remaining: 211ms
92:	learn: 11.0742264	total: 2.45s	remaining: 184ms
93:	learn: 10.9721772	total: 2.47s	remaining: 158ms
94:	learn: 10.9118054	total: 2.5s	remaining: 131ms
95:	learn: 10.8465290	total: 2.53s	remaining: 106ms
96:	learn: 10.7451745	total: 2.56s	remaining: 79.2ms
97:	learn: 10.6173565	total: 2.59s	remaining: 52.9ms
98:	learn: 10.5562158	total: 2.63s	remaining: 26.5ms
99:	learn: 10.4564960	total: 2.65s	remaining: 0us
0:	learn: 27.6506730	total: 5.15ms	remaining: 510ms
1:	learn: 27.1638793	total: 9.55ms	remaining: 468ms
2:	learn: 26.8000665	total: 14.8ms	remaining: 479ms
3:	learn: 26.4256132	total: 19.5ms	remaining: 467ms
4:	learn: 26.0088351	total: 24.6ms	remaining: 468ms
5:	learn: 25.7558298	total: 29.4ms	remaining: 461ms
6:	learn: 25.3380711	total: 34.2ms	remaining: 454ms
7:	learn: 25.0571611	total: 38.8ms	remaining: 447ms
8:	learn: 24.6790148	total: 43.5ms	remaining: 440ms
9:	learn: 24.3600941	total: 48.1ms	remaining: 433ms
10:	learn: 24.1105667	total: 52.4ms	remaining: 424ms
11:	learn: 23.7736542	total: 57.6ms	remaining: 422ms
12:	learn: 23.5824429	total: 62.2ms	remaining: 416ms
13:	learn: 23.2658303	total: 67ms	remaining: 411ms
14:	learn: 23.0061886	total: 71.7ms	remaining: 406ms
15:	learn: 22.8060389	total: 76.3ms	remaining: 401ms
16:	learn: 22.5899735	total: 80.8ms	remaining: 395ms
17:	learn: 22.3625048	total: 85.4ms	remaining: 389ms
18:	learn: 22.0706477	total: 90.2ms	remaining: 384ms
19:	learn: 21.8739394	total: 95.1ms	remaining: 380ms
20:	learn: 21.6143650	total: 99.6ms	remaining: 375ms
21:	learn: 21.4571623	total: 105ms	remaining: 371ms
22:	learn: 21.2395769	total: 109ms	remaining: 366ms
23:	learn: 20.9801795	total: 114ms	remaining: 362ms
24:	learn: 20.8036808	total: 119ms	remaining: 358ms
25:	learn: 20.6387539	total: 124ms	remaining: 353ms
26:	learn: 20.4401427	total: 129ms	remaining: 348ms
27:	learn: 20.2879575	total: 134ms	remaining: 343ms
28:	learn: 20.0538664	total: 138ms	remaining: 339ms
29:	learn: 19.8363102	total: 143ms	remaining: 334ms
30:	learn: 19.7015446	total: 148ms	remaining: 330ms
31:	learn: 19.5483114	total: 153ms	remaining: 325ms
32:	learn: 19.4163053	total: 158ms	remaining: 321ms
33:	learn: 19.2880625	total: 163ms	remaining: 317ms
34:	learn: 19.1303389	total: 169ms	remaining: 313ms
35:	learn: 18.9237448	total: 174ms	remaining: 309ms
36:	learn: 18.8142925	total: 179ms	remaining: 305ms
37:	learn: 18.6994696	total: 184ms	remaining: 300ms
38:	learn: 18.5629211	total: 193ms	remaining: 302ms
39:	learn: 18.4600917	total: 201ms	remaining: 301ms
40:	learn: 18.3567139	total: 209ms	remaining: 301ms
41:	learn: 18.2120527	total: 217ms	remaining: 299ms
42:	learn: 18.0688062	total: 223ms	remaining: 295ms
43:	learn: 17.9250181	total: 228ms	remaining: 291ms
44:	learn: 17.8399138	total: 234ms	remaining: 286ms
45:	learn: 17.6720713	total: 239ms	remaining: 281ms
46:	learn: 17.5273091	total: 244ms	remaining: 276ms
47:	learn: 17.4232814	total: 250ms	remaining: 271ms
48:	learn: 17.2957579	total: 255ms	remaining: 266ms
49:	learn: 17.1892874	total: 261ms	remaining: 261ms
50:	learn: 17.0490355	total: 267ms	remaining: 256ms
51:	learn: 16.9666450	total: 272ms	remaining: 251ms
52:	learn: 16.8600056	total: 278ms	remaining: 246ms
53:	learn: 16.7542588	total: 283ms	remaining: 241ms
54:	learn: 16.6316077	total: 288ms	remaining: 236ms
55:	learn: 16.5588112	total: 294ms	remaining: 231ms
56:	learn: 16.5010186	total: 299ms	remaining: 226ms
57:	learn: 16.4081540	total: 304ms	remaining: 220ms
58:	learn: 16.3040451	total: 309ms	remaining: 214ms
59:	learn: 16.1890564	total: 314ms	remaining: 209ms
60:	learn: 16.0977103	total: 319ms	remaining: 204ms
61:	learn: 15.9627607	total: 323ms	remaining: 198ms
62:	learn: 15.9022248	total: 327ms	remaining: 192ms
63:	learn: 15.8151881	total: 332ms	remaining: 187ms
64:	learn: 15.7353125	total: 338ms	remaining: 182ms
65:	learn: 15.6312897	total: 343ms	remaining: 177ms
66:	learn: 15.5330927	total: 348ms	remaining: 171ms
67:	learn: 15.4698681	total: 353ms	remaining: 166ms
68:	learn: 15.4108571	total: 358ms	remaining: 161ms
69:	learn: 15.3492945	total: 363ms	remaining: 155ms
70:	learn: 15.3036540	total: 368ms	remaining: 150ms
71:	learn: 15.2390833	total: 372ms	remaining: 145ms
72:	learn: 15.1556327	total: 377ms	remaining: 140ms
73:	learn: 15.1016315	total: 383ms	remaining: 134ms
74:	learn: 15.0287076	total: 392ms	remaining: 131ms
75:	learn: 14.9530572	total: 401ms	remaining: 127ms
76:	learn: 14.8965517	total: 407ms	remaining: 122ms
77:	learn: 14.8125426	total: 413ms	remaining: 116ms
78:	learn: 14.7435359	total: 419ms	remaining: 111ms
79:	learn: 14.6963163	total: 423ms	remaining: 106ms
80:	learn: 14.6200060	total: 427ms	remaining: 100ms
81:	learn: 14.5707760	total: 432ms	remaining: 94.9ms
82:	learn: 14.5053651	total: 437ms	remaining: 89.5ms
83:	learn: 14.4115458	total: 441ms	remaining: 84ms
84:	learn: 14.3117159	total: 446ms	remaining: 78.7ms
85:	learn: 14.2511326	total: 451ms	remaining: 73.4ms
86:	learn: 14.1372486	total: 456ms	remaining: 68.1ms
87:	learn: 14.0992301	total: 461ms	remaining: 62.8ms
88:	learn: 14.0228331	total: 465ms	remaining: 57.5ms
89:	learn: 13.9249836	total: 470ms	remaining: 52.2ms
90:	learn: 13.8679364	total: 475ms	remaining: 47ms
91:	learn: 13.8405578	total: 480ms	remaining: 41.7ms
92:	learn: 13.7711325	total: 484ms	remaining: 36.4ms
93:	learn: 13.7357019	total: 489ms	remaining: 31.2ms
94:	learn: 13.6735271	total: 493ms	remaining: 26ms
95:	learn: 13.5682393	total: 498ms	remaining: 20.7ms
96:	learn: 13.5342610	total: 502ms	remaining: 15.5ms
97:	learn: 13.4710034	total: 507ms	remaining: 10.4ms
98:	learn: 13.4022402	total: 513ms	remaining: 5.18ms
99:	learn: 13.3351238	total: 517ms	remaining: 0us
0:	learn: 42.9181702	total: 5.42ms	remaining: 536ms
1:	learn: 42.0286736	total: 10.2ms	remaining: 501ms
2:	learn: 41.2764568	total: 14.9ms	remaining: 480ms
3:	learn: 40.4721918	total: 20.1ms	remaining: 482ms
4:	learn: 39.8518928	total: 25.4ms	remaining: 482ms
5:	learn: 39.2645479	total: 34.2ms	remaining: 536ms
6:	learn: 38.4453704	total: 42.3ms	remaining: 562ms
7:	learn: 37.7122059	total: 51.5ms	remaining: 593ms
8:	learn: 36.9185796	total: 60ms	remaining: 607ms
9:	learn: 36.1668427	total: 65.8ms	remaining: 592ms
10:	learn: 35.5639029	total: 71.7ms	remaining: 580ms
11:	learn: 34.7724193	total: 77.4ms	remaining: 568ms
12:	learn: 34.3053433	total: 83.5ms	remaining: 558ms
13:	learn: 33.6561327	total: 85.2ms	remaining: 523ms
14:	learn: 33.0134042	total: 91.1ms	remaining: 516ms
15:	learn: 32.4483300	total: 96.3ms	remaining: 505ms
16:	learn: 31.8581144	total: 102ms	remaining: 497ms
17:	learn: 31.2858301	total: 107ms	remaining: 487ms
18:	learn: 30.8483018	total: 112ms	remaining: 479ms
19:	learn: 30.4174622	total: 135ms	remaining: 539ms
20:	learn: 29.8994411	total: 140ms	remaining: 527ms
21:	learn: 29.5045355	total: 145ms	remaining: 515ms
22:	learn: 28.9923519	total: 150ms	remaining: 502ms
23:	learn: 28.4255717	total: 155ms	remaining: 491ms
24:	learn: 28.0283139	total: 160ms	remaining: 480ms
25:	learn: 27.7434814	total: 165ms	remaining: 470ms
26:	learn: 27.2770731	total: 170ms	remaining: 460ms
27:	learn: 26.8928270	total: 175ms	remaining: 449ms
28:	learn: 26.4282671	total: 180ms	remaining: 440ms
29:	learn: 26.0272764	total: 184ms	remaining: 430ms
30:	learn: 25.7579312	total: 189ms	remaining: 421ms
31:	learn: 25.4542434	total: 194ms	remaining: 412ms
32:	learn: 25.1232564	total: 199ms	remaining: 404ms
33:	learn: 24.8110795	total: 204ms	remaining: 396ms
34:	learn: 24.5077579	total: 209ms	remaining: 387ms
35:	learn: 24.1909000	total: 213ms	remaining: 379ms
36:	learn: 23.8719468	total: 218ms	remaining: 371ms
37:	learn: 23.5764366	total: 220ms	remaining: 358ms
38:	learn: 23.3468086	total: 225ms	remaining: 351ms
39:	learn: 23.0908771	total: 230ms	remaining: 345ms
40:	learn: 22.8580876	total: 235ms	remaining: 338ms
41:	learn: 22.6060825	total: 241ms	remaining: 333ms
42:	learn: 22.4125407	total: 246ms	remaining: 326ms
43:	learn: 22.1990617	total: 251ms	remaining: 320ms
44:	learn: 21.9716164	total: 256ms	remaining: 313ms
45:	learn: 21.8360935	total: 266ms	remaining: 312ms
46:	learn: 21.6169256	total: 274ms	remaining: 310ms
47:	learn: 21.4620612	total: 282ms	remaining: 305ms
48:	learn: 21.2894194	total: 287ms	remaining: 299ms
49:	learn: 21.1066266	total: 293ms	remaining: 293ms
50:	learn: 20.9484898	total: 298ms	remaining: 287ms
51:	learn: 20.7195338	total: 303ms	remaining: 280ms
52:	learn: 20.4899740	total: 308ms	remaining: 273ms
53:	learn: 20.3356583	total: 312ms	remaining: 266ms
54:	learn: 20.0754393	total: 317ms	remaining: 259ms
55:	learn: 19.9199159	total: 322ms	remaining: 253ms
56:	learn: 19.7761128	total: 326ms	remaining: 246ms
57:	learn: 19.6533060	total: 331ms	remaining: 240ms
58:	learn: 19.5113942	total: 336ms	remaining: 233ms
59:	learn: 19.3985022	total: 341ms	remaining: 227ms
60:	learn: 19.2683443	total: 345ms	remaining: 221ms
61:	learn: 19.1460824	total: 350ms	remaining: 214ms
62:	learn: 19.0042655	total: 354ms	remaining: 208ms
63:	learn: 18.8720873	total: 360ms	remaining: 202ms
64:	learn: 18.7183888	total: 364ms	remaining: 196ms
65:	learn: 18.5472360	total: 369ms	remaining: 190ms
66:	learn: 18.3976642	total: 373ms	remaining: 184ms
67:	learn: 18.2282851	total: 378ms	remaining: 178ms
68:	learn: 18.1469157	total: 382ms	remaining: 172ms
69:	learn: 18.0649494	total: 387ms	remaining: 166ms
70:	learn: 17.9485405	total: 392ms	remaining: 160ms
71:	learn: 17.8460261	total: 396ms	remaining: 154ms
72:	learn: 17.7679843	total: 401ms	remaining: 148ms
73:	learn: 17.5989290	total: 406ms	remaining: 143ms
74:	learn: 17.4381322	total: 411ms	remaining: 137ms
75:	learn: 17.3370886	total: 415ms	remaining: 131ms
76:	learn: 17.2675308	total: 420ms	remaining: 125ms
77:	learn: 17.1946430	total: 424ms	remaining: 120ms
78:	learn: 17.0923725	total: 429ms	remaining: 114ms
79:	learn: 17.0537265	total: 434ms	remaining: 108ms
80:	learn: 16.9456831	total: 439ms	remaining: 103ms
81:	learn: 16.8457353	total: 444ms	remaining: 97.4ms
82:	learn: 16.7469310	total: 449ms	remaining: 91.9ms
83:	learn: 16.6679953	total: 454ms	remaining: 86.4ms
84:	learn: 16.6274189	total: 462ms	remaining: 81.5ms
85:	learn: 16.5516530	total: 470ms	remaining: 76.5ms
86:	learn: 16.4886066	total: 478ms	remaining: 71.5ms
87:	learn: 16.3947859	total: 486ms	remaining: 66.3ms
88:	learn: 16.3406495	total: 492ms	remaining: 60.8ms
89:	learn: 16.3019195	total: 497ms	remaining: 55.3ms
90:	learn: 16.1860681	total: 503ms	remaining: 49.7ms
91:	learn: 16.1282812	total: 508ms	remaining: 44.2ms
92:	learn: 16.0303652	total: 514ms	remaining: 38.7ms
93:	learn: 15.9561692	total: 519ms	remaining: 33.1ms
94:	learn: 15.8733994	total: 524ms	remaining: 27.6ms
95:	learn: 15.8108833	total: 529ms	remaining: 22.1ms
96:	learn: 15.7606004	total: 535ms	remaining: 16.5ms
97:	learn: 15.6984664	total: 540ms	remaining: 11ms
98:	learn: 15.6223632	total: 545ms	remaining: 5.5ms
99:	learn: 15.5671136	total: 550ms	remaining: 0us
0:	learn: 46.4788614	total: 1.86ms	remaining: 185ms
1:	learn: 45.7608372	total: 6.23ms	remaining: 305ms
2:	learn: 44.8825004	total: 10.8ms	remaining: 349ms
3:	learn: 44.0362738	total: 15.1ms	remaining: 362ms
4:	learn: 43.2086374	total: 19.7ms	remaining: 375ms
5:	learn: 42.5835773	total: 24.5ms	remaining: 384ms
6:	learn: 41.9673269	total: 29.6ms	remaining: 394ms
7:	learn: 41.4748717	total: 34.2ms	remaining: 394ms
8:	learn: 40.7129183	total: 41.8ms	remaining: 423ms
9:	learn: 39.8900884	total: 48.9ms	remaining: 440ms
10:	learn: 39.4142193	total: 56.5ms	remaining: 457ms
11:	learn: 38.8645613	total: 61.7ms	remaining: 453ms
12:	learn: 38.2394731	total: 66.7ms	remaining: 446ms
13:	learn: 37.6834515	total: 72.1ms	remaining: 443ms
14:	learn: 37.0673507	total: 79.1ms	remaining: 448ms
15:	learn: 36.4728340	total: 84.3ms	remaining: 442ms
16:	learn: 36.0489086	total: 89.2ms	remaining: 435ms
17:	learn: 35.4744141	total: 93.8ms	remaining: 427ms
18:	learn: 35.0106021	total: 98.1ms	remaining: 418ms
19:	learn: 34.5586053	total: 103ms	remaining: 410ms
20:	learn: 34.1308223	total: 107ms	remaining: 404ms
21:	learn: 33.7701450	total: 112ms	remaining: 395ms
22:	learn: 33.4425444	total: 116ms	remaining: 388ms
23:	learn: 33.0296412	total: 121ms	remaining: 382ms
24:	learn: 32.6359803	total: 125ms	remaining: 376ms
25:	learn: 32.1846182	total: 130ms	remaining: 369ms
26:	learn: 31.7620230	total: 134ms	remaining: 363ms
27:	learn: 31.4669337	total: 139ms	remaining: 356ms
28:	learn: 31.0792062	total: 143ms	remaining: 350ms
29:	learn: 30.7970537	total: 148ms	remaining: 345ms
30:	learn: 30.4952215	total: 152ms	remaining: 338ms
31:	learn: 30.2845344	total: 156ms	remaining: 332ms
32:	learn: 29.9592732	total: 161ms	remaining: 326ms
33:	learn: 29.6798596	total: 165ms	remaining: 321ms
34:	learn: 29.3368905	total: 170ms	remaining: 315ms
35:	learn: 29.0621238	total: 175ms	remaining: 310ms
36:	learn: 28.6445375	total: 179ms	remaining: 305ms
37:	learn: 28.2418096	total: 184ms	remaining: 300ms
38:	learn: 27.9495390	total: 188ms	remaining: 294ms
39:	learn: 27.6958160	total: 193ms	remaining: 289ms
40:	learn: 27.4811189	total: 197ms	remaining: 284ms
41:	learn: 27.1494420	total: 202ms	remaining: 279ms
42:	learn: 26.8388873	total: 206ms	remaining: 274ms
43:	learn: 26.5721300	total: 211ms	remaining: 269ms
44:	learn: 26.3384738	total: 216ms	remaining: 264ms
45:	learn: 26.1894781	total: 220ms	remaining: 258ms
46:	learn: 25.9580198	total: 225ms	remaining: 254ms
47:	learn: 25.7897985	total: 230ms	remaining: 249ms
48:	learn: 25.6000271	total: 235ms	remaining: 244ms
49:	learn: 25.4130873	total: 240ms	remaining: 240ms
50:	learn: 25.1699061	total: 245ms	remaining: 235ms
51:	learn: 24.9324449	total: 249ms	remaining: 230ms
52:	learn: 24.7729152	total: 255ms	remaining: 226ms
53:	learn: 24.5026563	total: 264ms	remaining: 225ms
54:	learn: 24.2332627	total: 272ms	remaining: 223ms
55:	learn: 23.9611984	total: 282ms	remaining: 222ms
56:	learn: 23.7862603	total: 290ms	remaining: 219ms
57:	learn: 23.6318154	total: 296ms	remaining: 214ms
58:	learn: 23.4443306	total: 316ms	remaining: 220ms
59:	learn: 23.2581425	total: 322ms	remaining: 215ms
60:	learn: 23.0549901	total: 328ms	remaining: 209ms
61:	learn: 22.8666218	total: 333ms	remaining: 204ms
62:	learn: 22.6956739	total: 338ms	remaining: 199ms
63:	learn: 22.5068544	total: 343ms	remaining: 193ms
64:	learn: 22.1859147	total: 349ms	remaining: 188ms
65:	learn: 22.0462043	total: 355ms	remaining: 183ms
66:	learn: 21.9329563	total: 360ms	remaining: 177ms
67:	learn: 21.8029736	total: 365ms	remaining: 172ms
68:	learn: 21.6861091	total: 370ms	remaining: 166ms
69:	learn: 21.4838140	total: 375ms	remaining: 161ms
70:	learn: 21.3548921	total: 380ms	remaining: 155ms
71:	learn: 21.2244517	total: 384ms	remaining: 149ms
72:	learn: 21.0702958	total: 388ms	remaining: 144ms
73:	learn: 20.9224662	total: 393ms	remaining: 138ms
74:	learn: 20.8150357	total: 397ms	remaining: 132ms
75:	learn: 20.6962739	total: 402ms	remaining: 127ms
76:	learn: 20.5809258	total: 406ms	remaining: 121ms
77:	learn: 20.4735470	total: 411ms	remaining: 116ms
78:	learn: 20.3778167	total: 415ms	remaining: 110ms
79:	learn: 20.2211268	total: 420ms	remaining: 105ms
80:	learn: 20.1478678	total: 425ms	remaining: 99.7ms
81:	learn: 20.1032967	total: 430ms	remaining: 94.3ms
82:	learn: 19.9236300	total: 434ms	remaining: 88.9ms
83:	learn: 19.8151745	total: 440ms	remaining: 83.7ms
84:	learn: 19.7099856	total: 444ms	remaining: 78.4ms
85:	learn: 19.6264833	total: 449ms	remaining: 73.1ms
86:	learn: 19.4916361	total: 455ms	remaining: 68ms
87:	learn: 19.4050529	total: 463ms	remaining: 63.2ms
88:	learn: 19.2547065	total: 471ms	remaining: 58.3ms
89:	learn: 19.1610225	total: 478ms	remaining: 53.1ms
90:	learn: 19.0898958	total: 483ms	remaining: 47.8ms
91:	learn: 19.0489664	total: 489ms	remaining: 42.5ms
92:	learn: 18.9206240	total: 494ms	remaining: 37.1ms
93:	learn: 18.8636239	total: 498ms	remaining: 31.8ms
94:	learn: 18.8126187	total: 503ms	remaining: 26.4ms
95:	learn: 18.7579275	total: 507ms	remaining: 21.1ms
96:	learn: 18.6382753	total: 512ms	remaining: 15.8ms
97:	learn: 18.5397334	total: 516ms	remaining: 10.5ms
98:	learn: 18.4375951	total: 521ms	remaining: 5.26ms
99:	learn: 18.4033755	total: 526ms	remaining: 0us
0:	learn: 46.1068821	total: 2ms	remaining: 199ms
1:	learn: 45.3970261	total: 6.57ms	remaining: 322ms
2:	learn: 44.8732696	total: 10.6ms	remaining: 344ms
3:	learn: 44.1290184	total: 15.1ms	remaining: 361ms
4:	learn: 43.3290271	total: 19.6ms	remaining: 372ms
5:	learn: 42.7069090	total: 24.6ms	remaining: 385ms
6:	learn: 42.0572971	total: 28.9ms	remaining: 384ms
7:	learn: 41.4797924	total: 33ms	remaining: 380ms
8:	learn: 41.0023122	total: 37.7ms	remaining: 381ms
9:	learn: 40.5330570	total: 42.6ms	remaining: 383ms
10:	learn: 39.9726545	total: 47.6ms	remaining: 385ms
11:	learn: 39.3044053	total: 52.6ms	remaining: 386ms
12:	learn: 38.8169735	total: 57.9ms	remaining: 388ms
13:	learn: 38.2458761	total: 62.8ms	remaining: 386ms
14:	learn: 37.6280321	total: 67.8ms	remaining: 384ms
15:	learn: 37.0800610	total: 73.1ms	remaining: 384ms
16:	learn: 36.5489363	total: 78.3ms	remaining: 382ms
17:	learn: 36.0981456	total: 83.2ms	remaining: 379ms
18:	learn: 35.6956274	total: 90.8ms	remaining: 387ms
19:	learn: 35.1471999	total: 98.8ms	remaining: 395ms
20:	learn: 34.6235408	total: 106ms	remaining: 400ms
21:	learn: 34.1987018	total: 113ms	remaining: 400ms
22:	learn: 33.8985062	total: 120ms	remaining: 403ms
23:	learn: 33.3869017	total: 126ms	remaining: 399ms
24:	learn: 32.9100550	total: 131ms	remaining: 394ms
25:	learn: 32.4156208	total: 137ms	remaining: 389ms
26:	learn: 31.9320493	total: 142ms	remaining: 384ms
27:	learn: 31.5711468	total: 148ms	remaining: 379ms
28:	learn: 31.2404433	total: 153ms	remaining: 375ms
29:	learn: 30.8807946	total: 158ms	remaining: 369ms
30:	learn: 30.5948438	total: 164ms	remaining: 365ms
31:	learn: 30.3885560	total: 169ms	remaining: 359ms
32:	learn: 30.0625101	total: 174ms	remaining: 353ms
33:	learn: 29.9113114	total: 179ms	remaining: 348ms
34:	learn: 29.6983470	total: 185ms	remaining: 343ms
35:	learn: 29.4775849	total: 191ms	remaining: 339ms
36:	learn: 29.0538055	total: 195ms	remaining: 332ms
37:	learn: 28.6792318	total: 200ms	remaining: 326ms
38:	learn: 28.4231383	total: 204ms	remaining: 319ms
39:	learn: 28.1078565	total: 208ms	remaining: 313ms
40:	learn: 27.9079179	total: 213ms	remaining: 307ms
41:	learn: 27.6721506	total: 217ms	remaining: 300ms
42:	learn: 27.4228033	total: 222ms	remaining: 294ms
43:	learn: 27.1740534	total: 227ms	remaining: 288ms
44:	learn: 26.8584071	total: 231ms	remaining: 282ms
45:	learn: 26.6902083	total: 235ms	remaining: 276ms
46:	learn: 26.4855335	total: 240ms	remaining: 271ms
47:	learn: 26.2730822	total: 245ms	remaining: 265ms
48:	learn: 26.1058689	total: 249ms	remaining: 259ms
49:	learn: 25.8587318	total: 254ms	remaining: 254ms
50:	learn: 25.7558005	total: 259ms	remaining: 249ms
51:	learn: 25.5846925	total: 263ms	remaining: 243ms
52:	learn: 25.4249887	total: 268ms	remaining: 238ms
53:	learn: 25.1911054	total: 273ms	remaining: 233ms
54:	learn: 25.0544755	total: 278ms	remaining: 227ms
55:	learn: 24.8874006	total: 283ms	remaining: 222ms
56:	learn: 24.7736279	total: 288ms	remaining: 217ms
57:	learn: 24.6156255	total: 296ms	remaining: 214ms
58:	learn: 24.3962421	total: 304ms	remaining: 211ms
59:	learn: 24.2685129	total: 311ms	remaining: 207ms
60:	learn: 24.1874096	total: 316ms	remaining: 202ms
61:	learn: 24.0394287	total: 321ms	remaining: 197ms
62:	learn: 23.9281768	total: 326ms	remaining: 191ms
63:	learn: 23.7423900	total: 330ms	remaining: 186ms
64:	learn: 23.6015209	total: 335ms	remaining: 180ms
65:	learn: 23.4677943	total: 339ms	remaining: 175ms
66:	learn: 23.3215256	total: 343ms	remaining: 169ms
67:	learn: 23.1869360	total: 348ms	remaining: 164ms
68:	learn: 22.9691180	total: 353ms	remaining: 159ms
69:	learn: 22.7531657	total: 357ms	remaining: 153ms
70:	learn: 22.6133477	total: 361ms	remaining: 148ms
71:	learn: 22.3452758	total: 366ms	remaining: 142ms
72:	learn: 22.2065350	total: 370ms	remaining: 137ms
73:	learn: 22.1071155	total: 374ms	remaining: 131ms
74:	learn: 21.9740686	total: 378ms	remaining: 126ms
75:	learn: 21.8892033	total: 382ms	remaining: 121ms
76:	learn: 21.8267882	total: 386ms	remaining: 115ms
77:	learn: 21.7423479	total: 390ms	remaining: 110ms
78:	learn: 21.6242075	total: 395ms	remaining: 105ms
79:	learn: 21.5016910	total: 399ms	remaining: 99.8ms
80:	learn: 21.4806623	total: 400ms	remaining: 93.8ms
81:	learn: 21.3166637	total: 404ms	remaining: 88.7ms
82:	learn: 21.2222534	total: 409ms	remaining: 83.7ms
83:	learn: 21.1535708	total: 413ms	remaining: 78.8ms
84:	learn: 21.0858902	total: 418ms	remaining: 73.7ms
85:	learn: 20.9206003	total: 423ms	remaining: 68.8ms
86:	learn: 20.8674695	total: 427ms	remaining: 63.8ms
87:	learn: 20.8089875	total: 431ms	remaining: 58.8ms
88:	learn: 20.7085401	total: 436ms	remaining: 53.8ms
89:	learn: 20.5513468	total: 440ms	remaining: 48.9ms
90:	learn: 20.4586742	total: 445ms	remaining: 44ms
91:	learn: 20.3932149	total: 449ms	remaining: 39ms
92:	learn: 20.3000895	total: 453ms	remaining: 34.1ms
93:	learn: 20.2254009	total: 458ms	remaining: 29.2ms
94:	learn: 20.1750050	total: 463ms	remaining: 24.4ms
95:	learn: 20.0715579	total: 467ms	remaining: 19.5ms
96:	learn: 19.9920082	total: 472ms	remaining: 14.6ms
97:	learn: 19.9664401	total: 477ms	remaining: 9.73ms
98:	learn: 19.8689673	total: 481ms	remaining: 4.86ms
99:	learn: 19.7537356	total: 488ms	remaining: 0us
0:	learn: 46.8832143	total: 5.42ms	remaining: 536ms
1:	learn: 45.8700349	total: 10.8ms	remaining: 530ms
2:	learn: 45.0546867	total: 15.8ms	remaining: 512ms
3:	learn: 44.2829439	total: 21ms	remaining: 504ms
4:	learn: 43.4609042	total: 26.2ms	remaining: 497ms
5:	learn: 42.6754991	total: 30.9ms	remaining: 484ms
6:	learn: 41.9234935	total: 36.5ms	remaining: 484ms
7:	learn: 41.3987518	total: 41.9ms	remaining: 481ms
8:	learn: 40.6625066	total: 47ms	remaining: 475ms
9:	learn: 40.0029561	total: 51ms	remaining: 459ms
10:	learn: 39.3897033	total: 55.2ms	remaining: 447ms
11:	learn: 38.7741453	total: 59.4ms	remaining: 436ms
12:	learn: 38.1201100	total: 63.7ms	remaining: 426ms
13:	learn: 37.5129454	total: 67.9ms	remaining: 417ms
14:	learn: 37.2062206	total: 72.9ms	remaining: 413ms
15:	learn: 36.6831741	total: 77.3ms	remaining: 406ms
16:	learn: 36.2902788	total: 81.9ms	remaining: 400ms
17:	learn: 35.7639930	total: 86.5ms	remaining: 394ms
18:	learn: 35.2580953	total: 91.1ms	remaining: 389ms
19:	learn: 34.7809739	total: 95.6ms	remaining: 383ms
20:	learn: 34.1330433	total: 100ms	remaining: 377ms
21:	learn: 33.7302219	total: 105ms	remaining: 374ms
22:	learn: 33.3502495	total: 110ms	remaining: 368ms
23:	learn: 33.0067804	total: 114ms	remaining: 362ms
24:	learn: 32.6897855	total: 119ms	remaining: 358ms
25:	learn: 32.4361119	total: 124ms	remaining: 353ms
26:	learn: 32.1278981	total: 129ms	remaining: 348ms
27:	learn: 31.7863721	total: 133ms	remaining: 343ms
28:	learn: 31.4791450	total: 138ms	remaining: 338ms
29:	learn: 31.1760161	total: 142ms	remaining: 332ms
30:	learn: 30.9238888	total: 147ms	remaining: 328ms
31:	learn: 30.5500905	total: 155ms	remaining: 330ms
32:	learn: 30.3078126	total: 163ms	remaining: 331ms
33:	learn: 30.0480921	total: 170ms	remaining: 330ms
34:	learn: 29.8623884	total: 175ms	remaining: 325ms
35:	learn: 29.5991038	total: 182ms	remaining: 323ms
36:	learn: 29.4061161	total: 186ms	remaining: 317ms
37:	learn: 29.0269515	total: 190ms	remaining: 311ms
38:	learn: 28.8224959	total: 195ms	remaining: 305ms
39:	learn: 28.6417843	total: 199ms	remaining: 299ms
40:	learn: 28.3633368	total: 204ms	remaining: 293ms
41:	learn: 28.0200246	total: 208ms	remaining: 287ms
42:	learn: 27.7221254	total: 212ms	remaining: 281ms
43:	learn: 27.5105818	total: 216ms	remaining: 275ms
44:	learn: 27.3551010	total: 221ms	remaining: 270ms
45:	learn: 27.0787522	total: 225ms	remaining: 264ms
46:	learn: 26.8726317	total: 229ms	remaining: 258ms
47:	learn: 26.8003277	total: 233ms	remaining: 252ms
48:	learn: 26.5493785	total: 237ms	remaining: 247ms
49:	learn: 26.3699550	total: 242ms	remaining: 242ms
50:	learn: 26.1519631	total: 246ms	remaining: 236ms
51:	learn: 25.9277325	total: 250ms	remaining: 231ms
52:	learn: 25.7286035	total: 254ms	remaining: 226ms
53:	learn: 25.4999193	total: 259ms	remaining: 220ms
54:	learn: 25.3434703	total: 263ms	remaining: 215ms
55:	learn: 25.1497545	total: 267ms	remaining: 210ms
56:	learn: 24.9498143	total: 271ms	remaining: 205ms
57:	learn: 24.6509390	total: 275ms	remaining: 199ms
58:	learn: 24.5576144	total: 279ms	remaining: 194ms
59:	learn: 24.4265144	total: 283ms	remaining: 189ms
60:	learn: 24.3100706	total: 287ms	remaining: 184ms
61:	learn: 24.1727952	total: 292ms	remaining: 179ms
62:	learn: 24.0478558	total: 296ms	remaining: 174ms
63:	learn: 23.9124577	total: 300ms	remaining: 169ms
64:	learn: 23.7703718	total: 305ms	remaining: 164ms
65:	learn: 23.5975027	total: 309ms	remaining: 159ms
66:	learn: 23.4318077	total: 313ms	remaining: 154ms
67:	learn: 23.3099691	total: 318ms	remaining: 150ms
68:	learn: 23.1947982	total: 322ms	remaining: 145ms
69:	learn: 23.0260174	total: 326ms	remaining: 140ms
70:	learn: 22.8523100	total: 331ms	remaining: 135ms
71:	learn: 22.8028534	total: 336ms	remaining: 131ms
72:	learn: 22.6880658	total: 340ms	remaining: 126ms
73:	learn: 22.5956809	total: 345ms	remaining: 121ms
74:	learn: 22.4692932	total: 350ms	remaining: 117ms
75:	learn: 22.2863504	total: 355ms	remaining: 112ms
76:	learn: 22.1911237	total: 359ms	remaining: 107ms
77:	learn: 22.1098391	total: 366ms	remaining: 103ms
78:	learn: 22.0182738	total: 374ms	remaining: 99.3ms
79:	learn: 21.9306746	total: 384ms	remaining: 96.1ms
80:	learn: 21.7508233	total: 390ms	remaining: 91.5ms
81:	learn: 21.7108446	total: 398ms	remaining: 87.3ms
82:	learn: 21.5931852	total: 407ms	remaining: 83.3ms
83:	learn: 21.4480361	total: 412ms	remaining: 78.5ms
84:	learn: 21.3092119	total: 417ms	remaining: 73.6ms
85:	learn: 21.2605557	total: 422ms	remaining: 68.8ms
86:	learn: 21.1123597	total: 428ms	remaining: 63.9ms
87:	learn: 21.0115642	total: 433ms	remaining: 59.1ms
88:	learn: 20.9389040	total: 438ms	remaining: 54.2ms
89:	learn: 20.8300300	total: 443ms	remaining: 49.2ms
90:	learn: 20.7159733	total: 448ms	remaining: 44.3ms
91:	learn: 20.6282090	total: 453ms	remaining: 39.4ms
92:	learn: 20.5164529	total: 458ms	remaining: 34.5ms
93:	learn: 20.4692032	total: 464ms	remaining: 29.6ms
94:	learn: 20.3768451	total: 470ms	remaining: 24.7ms
95:	learn: 20.2808056	total: 475ms	remaining: 19.8ms
96:	learn: 20.2082089	total: 480ms	remaining: 14.8ms
97:	learn: 20.1698768	total: 485ms	remaining: 9.9ms
98:	learn: 20.1048816	total: 490ms	remaining: 4.95ms
99:	learn: 20.0086159	total: 495ms	remaining: 0us
0:	learn: 27.6871645	total: 5.34ms	remaining: 529ms
1:	learn: 27.3312003	total: 10.5ms	remaining: 514ms
2:	learn: 26.9359558	total: 15.3ms	remaining: 494ms
3:	learn: 26.6055364	total: 21.6ms	remaining: 519ms
4:	learn: 26.1664924	total: 30ms	remaining: 571ms
5:	learn: 25.8515393	total: 38.3ms	remaining: 600ms
6:	learn: 25.4620036	total: 44.5ms	remaining: 591ms
7:	learn: 25.1669741	total: 51.2ms	remaining: 588ms
8:	learn: 24.8455454	total: 56.2ms	remaining: 568ms
9:	learn: 24.5106323	total: 60.8ms	remaining: 548ms
10:	learn: 24.1915228	total: 65.7ms	remaining: 531ms
11:	learn: 23.9076053	total: 70.3ms	remaining: 516ms
12:	learn: 23.6692445	total: 75ms	remaining: 502ms
13:	learn: 23.4343504	total: 80.1ms	remaining: 492ms
14:	learn: 23.2425280	total: 85.4ms	remaining: 484ms
15:	learn: 22.9254142	total: 90.1ms	remaining: 473ms
16:	learn: 22.6495489	total: 94.7ms	remaining: 462ms
17:	learn: 22.4343705	total: 99.4ms	remaining: 453ms
18:	learn: 22.2154202	total: 104ms	remaining: 443ms
19:	learn: 22.0592712	total: 109ms	remaining: 435ms
20:	learn: 21.7971944	total: 114ms	remaining: 427ms
21:	learn: 21.6128930	total: 119ms	remaining: 421ms
22:	learn: 21.3882946	total: 123ms	remaining: 413ms
23:	learn: 21.0912570	total: 128ms	remaining: 406ms
24:	learn: 20.8922857	total: 133ms	remaining: 399ms
25:	learn: 20.7150574	total: 138ms	remaining: 392ms
26:	learn: 20.5673183	total: 143ms	remaining: 386ms
27:	learn: 20.4331275	total: 147ms	remaining: 379ms
28:	learn: 20.2782866	total: 152ms	remaining: 373ms
29:	learn: 20.1061525	total: 157ms	remaining: 366ms
30:	learn: 19.9225948	total: 161ms	remaining: 359ms
31:	learn: 19.7809193	total: 166ms	remaining: 353ms
32:	learn: 19.6057771	total: 171ms	remaining: 347ms
33:	learn: 19.4391243	total: 176ms	remaining: 341ms
34:	learn: 19.2234365	total: 180ms	remaining: 335ms
35:	learn: 19.0214424	total: 186ms	remaining: 330ms
36:	learn: 18.8990643	total: 191ms	remaining: 325ms
37:	learn: 18.7473635	total: 196ms	remaining: 319ms
38:	learn: 18.6125192	total: 200ms	remaining: 313ms
39:	learn: 18.4977949	total: 205ms	remaining: 308ms
40:	learn: 18.3914568	total: 210ms	remaining: 302ms
41:	learn: 18.2541544	total: 215ms	remaining: 297ms
42:	learn: 18.1038984	total: 220ms	remaining: 291ms
43:	learn: 17.9706172	total: 225ms	remaining: 286ms
44:	learn: 17.8198810	total: 231ms	remaining: 283ms
45:	learn: 17.7102597	total: 239ms	remaining: 281ms
46:	learn: 17.6148228	total: 247ms	remaining: 278ms
47:	learn: 17.5115365	total: 254ms	remaining: 275ms
48:	learn: 17.3884162	total: 260ms	remaining: 270ms
49:	learn: 17.2857632	total: 266ms	remaining: 266ms
50:	learn: 17.1618843	total: 273ms	remaining: 262ms
51:	learn: 17.0529601	total: 278ms	remaining: 257ms
52:	learn: 16.9330273	total: 284ms	remaining: 252ms
53:	learn: 16.8206672	total: 290ms	remaining: 247ms
54:	learn: 16.7080356	total: 296ms	remaining: 242ms
55:	learn: 16.5874354	total: 301ms	remaining: 237ms
56:	learn: 16.4929860	total: 307ms	remaining: 232ms
57:	learn: 16.4269419	total: 313ms	remaining: 227ms
58:	learn: 16.3474026	total: 319ms	remaining: 222ms
59:	learn: 16.2515784	total: 325ms	remaining: 217ms
60:	learn: 16.1743901	total: 330ms	remaining: 211ms
61:	learn: 16.0389930	total: 336ms	remaining: 206ms
62:	learn: 15.9671636	total: 341ms	remaining: 200ms
63:	learn: 15.8928486	total: 347ms	remaining: 195ms
64:	learn: 15.8303841	total: 353ms	remaining: 190ms
65:	learn: 15.7612266	total: 360ms	remaining: 185ms
66:	learn: 15.6811172	total: 364ms	remaining: 179ms
67:	learn: 15.6262138	total: 369ms	remaining: 174ms
68:	learn: 15.5662508	total: 374ms	remaining: 168ms
69:	learn: 15.4804354	total: 379ms	remaining: 162ms
70:	learn: 15.4054915	total: 383ms	remaining: 157ms
71:	learn: 15.3271396	total: 388ms	remaining: 151ms
72:	learn: 15.2828359	total: 393ms	remaining: 145ms
73:	learn: 15.2197404	total: 398ms	remaining: 140ms
74:	learn: 15.1315902	total: 403ms	remaining: 134ms
75:	learn: 15.0780523	total: 407ms	remaining: 129ms
76:	learn: 14.9959155	total: 412ms	remaining: 123ms
77:	learn: 14.9265008	total: 417ms	remaining: 118ms
78:	learn: 14.8570189	total: 422ms	remaining: 112ms
79:	learn: 14.8060372	total: 427ms	remaining: 107ms
80:	learn: 14.7294676	total: 433ms	remaining: 101ms
81:	learn: 14.6708309	total: 438ms	remaining: 96.1ms
82:	learn: 14.5765370	total: 443ms	remaining: 90.7ms
83:	learn: 14.5312713	total: 448ms	remaining: 85.3ms
84:	learn: 14.4830327	total: 455ms	remaining: 80.4ms
85:	learn: 14.4296247	total: 464ms	remaining: 75.5ms
86:	learn: 14.3381470	total: 472ms	remaining: 70.5ms
87:	learn: 14.2638093	total: 477ms	remaining: 65.1ms
88:	learn: 14.2288435	total: 484ms	remaining: 59.8ms
89:	learn: 14.1489273	total: 488ms	remaining: 54.2ms
90:	learn: 14.0937923	total: 493ms	remaining: 48.8ms
91:	learn: 14.0334062	total: 498ms	remaining: 43.3ms
92:	learn: 13.9854696	total: 503ms	remaining: 37.9ms
93:	learn: 13.9444203	total: 508ms	remaining: 32.4ms
94:	learn: 13.9101523	total: 513ms	remaining: 27ms
95:	learn: 13.8460655	total: 518ms	remaining: 21.6ms
96:	learn: 13.7809420	total: 523ms	remaining: 16.2ms
97:	learn: 13.7270532	total: 528ms	remaining: 10.8ms
98:	learn: 13.6891300	total: 532ms	remaining: 5.38ms
99:	learn: 13.6569696	total: 538ms	remaining: 0us
0:	learn: 42.9754370	total: 5.15ms	remaining: 510ms
1:	learn: 42.2613272	total: 10.1ms	remaining: 494ms
2:	learn: 41.4729969	total: 14.9ms	remaining: 481ms
3:	learn: 40.7127004	total: 19.9ms	remaining: 477ms
4:	learn: 39.7775109	total: 24.6ms	remaining: 468ms
5:	learn: 39.1736663	total: 29.5ms	remaining: 462ms
6:	learn: 38.2981109	total: 34.7ms	remaining: 461ms
7:	learn: 37.5352984	total: 39.4ms	remaining: 453ms
8:	learn: 36.7771474	total: 44.5ms	remaining: 450ms
9:	learn: 36.0581366	total: 50ms	remaining: 450ms
10:	learn: 35.3542706	total: 55.3ms	remaining: 447ms
11:	learn: 34.6937007	total: 60.4ms	remaining: 443ms
12:	learn: 34.0408035	total: 65.3ms	remaining: 437ms
13:	learn: 33.3460240	total: 70.3ms	remaining: 432ms
14:	learn: 32.8086243	total: 75.2ms	remaining: 426ms
15:	learn: 32.1934462	total: 80.5ms	remaining: 423ms
16:	learn: 31.6465519	total: 89.9ms	remaining: 439ms
17:	learn: 31.2161293	total: 98.2ms	remaining: 447ms
18:	learn: 30.6730548	total: 108ms	remaining: 459ms
19:	learn: 30.3153659	total: 116ms	remaining: 464ms
20:	learn: 29.7661420	total: 122ms	remaining: 459ms
21:	learn: 29.2095664	total: 127ms	remaining: 452ms
22:	learn: 28.7509592	total: 133ms	remaining: 445ms
23:	learn: 28.4347528	total: 139ms	remaining: 440ms
24:	learn: 28.0551654	total: 145ms	remaining: 435ms
25:	learn: 27.7295952	total: 151ms	remaining: 431ms
26:	learn: 27.2329225	total: 157ms	remaining: 425ms
27:	learn: 26.9970607	total: 163ms	remaining: 419ms
28:	learn: 26.6596544	total: 169ms	remaining: 413ms
29:	learn: 26.2633576	total: 174ms	remaining: 406ms
30:	learn: 25.9761623	total: 180ms	remaining: 401ms
31:	learn: 25.6177371	total: 186ms	remaining: 396ms
32:	learn: 25.2165933	total: 191ms	remaining: 388ms
33:	learn: 24.8012870	total: 196ms	remaining: 381ms
34:	learn: 24.4772532	total: 201ms	remaining: 373ms
35:	learn: 24.1560359	total: 206ms	remaining: 365ms
36:	learn: 23.9688812	total: 211ms	remaining: 359ms
37:	learn: 23.6907607	total: 215ms	remaining: 351ms
38:	learn: 23.3885772	total: 220ms	remaining: 344ms
39:	learn: 23.2234939	total: 225ms	remaining: 337ms
40:	learn: 22.9785026	total: 230ms	remaining: 330ms
41:	learn: 22.6827268	total: 234ms	remaining: 323ms
42:	learn: 22.4564360	total: 239ms	remaining: 317ms
43:	learn: 22.2517827	total: 244ms	remaining: 311ms
44:	learn: 21.9858709	total: 249ms	remaining: 304ms
45:	learn: 21.7595870	total: 253ms	remaining: 298ms
46:	learn: 21.5929957	total: 258ms	remaining: 291ms
47:	learn: 21.4071752	total: 264ms	remaining: 286ms
48:	learn: 21.2186470	total: 268ms	remaining: 279ms
49:	learn: 21.0691824	total: 273ms	remaining: 273ms
50:	learn: 20.8921347	total: 278ms	remaining: 268ms
51:	learn: 20.6834229	total: 283ms	remaining: 261ms
52:	learn: 20.4718988	total: 288ms	remaining: 256ms
53:	learn: 20.3413889	total: 294ms	remaining: 251ms
54:	learn: 20.1785464	total: 303ms	remaining: 248ms
55:	learn: 19.9824314	total: 310ms	remaining: 244ms
56:	learn: 19.8217596	total: 317ms	remaining: 239ms
57:	learn: 19.6318474	total: 323ms	remaining: 234ms
58:	learn: 19.4962236	total: 328ms	remaining: 228ms
59:	learn: 19.3114985	total: 333ms	remaining: 222ms
60:	learn: 19.2181156	total: 338ms	remaining: 216ms
61:	learn: 19.0689614	total: 343ms	remaining: 210ms
62:	learn: 18.9563267	total: 349ms	remaining: 205ms
63:	learn: 18.8343083	total: 355ms	remaining: 200ms
64:	learn: 18.7050033	total: 360ms	remaining: 194ms
65:	learn: 18.6014163	total: 366ms	remaining: 188ms
66:	learn: 18.4910692	total: 371ms	remaining: 183ms
67:	learn: 18.3935194	total: 376ms	remaining: 177ms
68:	learn: 18.2825842	total: 382ms	remaining: 171ms
69:	learn: 18.1519267	total: 387ms	remaining: 166ms
70:	learn: 18.0527651	total: 392ms	remaining: 160ms
71:	learn: 17.9770106	total: 397ms	remaining: 154ms
72:	learn: 17.9151628	total: 402ms	remaining: 149ms
73:	learn: 17.7957486	total: 407ms	remaining: 143ms
74:	learn: 17.7025765	total: 412ms	remaining: 137ms
75:	learn: 17.5957242	total: 416ms	remaining: 131ms
76:	learn: 17.4683244	total: 421ms	remaining: 126ms
77:	learn: 17.3415729	total: 426ms	remaining: 120ms
78:	learn: 17.2886896	total: 431ms	remaining: 115ms
79:	learn: 17.2280922	total: 435ms	remaining: 109ms
80:	learn: 17.1188996	total: 441ms	remaining: 103ms
81:	learn: 17.0236450	total: 446ms	remaining: 97.8ms
82:	learn: 16.9046661	total: 450ms	remaining: 92.3ms
83:	learn: 16.7930633	total: 455ms	remaining: 86.7ms
84:	learn: 16.6870100	total: 460ms	remaining: 81.3ms
85:	learn: 16.5512107	total: 466ms	remaining: 75.8ms
86:	learn: 16.4353400	total: 471ms	remaining: 70.4ms
87:	learn: 16.3256461	total: 476ms	remaining: 64.9ms
88:	learn: 16.2968057	total: 481ms	remaining: 59.5ms
89:	learn: 16.2136078	total: 486ms	remaining: 54ms
90:	learn: 16.1596096	total: 495ms	remaining: 49ms
91:	learn: 16.1164050	total: 504ms	remaining: 43.8ms
92:	learn: 16.0660454	total: 513ms	remaining: 38.6ms
93:	learn: 16.0380611	total: 522ms	remaining: 33.3ms
94:	learn: 15.9494441	total: 528ms	remaining: 27.8ms
95:	learn: 15.8874840	total: 534ms	remaining: 22.3ms
96:	learn: 15.8288234	total: 540ms	remaining: 16.7ms
97:	learn: 15.7562787	total: 546ms	remaining: 11.1ms
98:	learn: 15.6822678	total: 552ms	remaining: 5.57ms
99:	learn: 15.5901500	total: 557ms	remaining: 0us
0:	learn: 46.4504871	total: 4.92ms	remaining: 487ms
1:	learn: 45.7240114	total: 9.62ms	remaining: 471ms
2:	learn: 45.0308025	total: 14.6ms	remaining: 471ms
3:	learn: 44.1111169	total: 19.3ms	remaining: 463ms
4:	learn: 43.3925352	total: 23.9ms	remaining: 455ms
5:	learn: 42.7856354	total: 28.9ms	remaining: 453ms
6:	learn: 42.1998170	total: 33.8ms	remaining: 449ms
7:	learn: 41.3532708	total: 38.6ms	remaining: 444ms
8:	learn: 40.7314571	total: 43.5ms	remaining: 440ms
9:	learn: 39.9838066	total: 48.8ms	remaining: 439ms
10:	learn: 39.4168243	total: 53.6ms	remaining: 434ms
11:	learn: 39.0148769	total: 58.6ms	remaining: 429ms
12:	learn: 38.3055855	total: 63.6ms	remaining: 426ms
13:	learn: 37.7343198	total: 68.8ms	remaining: 423ms
14:	learn: 37.4177463	total: 74ms	remaining: 420ms
15:	learn: 36.9043298	total: 79.2ms	remaining: 416ms
16:	learn: 36.3139174	total: 84.3ms	remaining: 412ms
17:	learn: 35.7200448	total: 89.5ms	remaining: 408ms
18:	learn: 35.3763394	total: 95.8ms	remaining: 409ms
19:	learn: 34.7666728	total: 105ms	remaining: 419ms
20:	learn: 34.2642890	total: 112ms	remaining: 423ms
21:	learn: 33.8196936	total: 118ms	remaining: 420ms
22:	learn: 33.4205669	total: 125ms	remaining: 419ms
23:	learn: 32.8565493	total: 130ms	remaining: 412ms
24:	learn: 32.5287132	total: 135ms	remaining: 405ms
25:	learn: 32.2142064	total: 140ms	remaining: 398ms
26:	learn: 31.9258854	total: 144ms	remaining: 390ms
27:	learn: 31.4083665	total: 149ms	remaining: 384ms
28:	learn: 31.1615620	total: 154ms	remaining: 378ms
29:	learn: 30.6948867	total: 159ms	remaining: 371ms
30:	learn: 30.3185108	total: 164ms	remaining: 364ms
31:	learn: 29.9245223	total: 169ms	remaining: 358ms
32:	learn: 29.6683643	total: 174ms	remaining: 352ms
33:	learn: 29.3868143	total: 179ms	remaining: 347ms
34:	learn: 29.1105699	total: 184ms	remaining: 342ms
35:	learn: 28.8274848	total: 189ms	remaining: 337ms
36:	learn: 28.5478288	total: 195ms	remaining: 331ms
37:	learn: 28.2355121	total: 200ms	remaining: 326ms
38:	learn: 28.0182564	total: 205ms	remaining: 320ms
39:	learn: 27.7654405	total: 210ms	remaining: 314ms
40:	learn: 27.5720477	total: 214ms	remaining: 309ms
41:	learn: 27.3182782	total: 219ms	remaining: 303ms
42:	learn: 26.9504431	total: 224ms	remaining: 298ms
43:	learn: 26.7281906	total: 230ms	remaining: 292ms
44:	learn: 26.5390008	total: 234ms	remaining: 287ms
45:	learn: 26.3781338	total: 240ms	remaining: 281ms
46:	learn: 26.1763177	total: 245ms	remaining: 276ms
47:	learn: 25.9417647	total: 250ms	remaining: 271ms
48:	learn: 25.7528045	total: 255ms	remaining: 266ms
49:	learn: 25.6336897	total: 261ms	remaining: 261ms
50:	learn: 25.4800426	total: 266ms	remaining: 255ms
51:	learn: 25.2895681	total: 271ms	remaining: 250ms
52:	learn: 25.0827111	total: 276ms	remaining: 245ms
53:	learn: 24.7987678	total: 281ms	remaining: 240ms
54:	learn: 24.6309982	total: 286ms	remaining: 234ms
55:	learn: 24.3526776	total: 294ms	remaining: 231ms
56:	learn: 24.1689125	total: 303ms	remaining: 229ms
57:	learn: 23.9802039	total: 315ms	remaining: 228ms
58:	learn: 23.8059432	total: 324ms	remaining: 225ms
59:	learn: 23.6006403	total: 330ms	remaining: 220ms
60:	learn: 23.2948382	total: 336ms	remaining: 215ms
61:	learn: 23.1338922	total: 342ms	remaining: 210ms
62:	learn: 22.9581269	total: 348ms	remaining: 205ms
63:	learn: 22.8263127	total: 354ms	remaining: 199ms
64:	learn: 22.6966006	total: 360ms	remaining: 194ms
65:	learn: 22.6012389	total: 367ms	remaining: 189ms
66:	learn: 22.4220244	total: 373ms	remaining: 184ms
67:	learn: 22.3148342	total: 379ms	remaining: 178ms
68:	learn: 22.1543592	total: 385ms	remaining: 173ms
69:	learn: 22.0614050	total: 391ms	remaining: 168ms
70:	learn: 21.9134025	total: 397ms	remaining: 162ms
71:	learn: 21.8198101	total: 403ms	remaining: 157ms
72:	learn: 21.6944173	total: 409ms	remaining: 151ms
73:	learn: 21.4727420	total: 414ms	remaining: 145ms
74:	learn: 21.3000560	total: 419ms	remaining: 140ms
75:	learn: 21.1884740	total: 424ms	remaining: 134ms
76:	learn: 21.0321317	total: 430ms	remaining: 128ms
77:	learn: 20.9371793	total: 435ms	remaining: 123ms
78:	learn: 20.6800341	total: 440ms	remaining: 117ms
79:	learn: 20.5629904	total: 446ms	remaining: 111ms
80:	learn: 20.4098217	total: 451ms	remaining: 106ms
81:	learn: 20.2139261	total: 457ms	remaining: 100ms
82:	learn: 20.1024260	total: 462ms	remaining: 94.7ms
83:	learn: 19.9835855	total: 468ms	remaining: 89.1ms
84:	learn: 19.9018880	total: 473ms	remaining: 83.5ms
85:	learn: 19.7819843	total: 479ms	remaining: 78ms
86:	learn: 19.6352780	total: 484ms	remaining: 72.4ms
87:	learn: 19.4888328	total: 490ms	remaining: 66.8ms
88:	learn: 19.4365121	total: 496ms	remaining: 61.3ms
89:	learn: 19.3427430	total: 506ms	remaining: 56.2ms
90:	learn: 19.2884907	total: 514ms	remaining: 50.8ms
91:	learn: 19.1898932	total: 520ms	remaining: 45.2ms
92:	learn: 19.0775661	total: 527ms	remaining: 39.7ms
93:	learn: 19.0334055	total: 532ms	remaining: 34ms
94:	learn: 18.9381916	total: 537ms	remaining: 28.3ms
95:	learn: 18.8471198	total: 543ms	remaining: 22.6ms
96:	learn: 18.7136478	total: 548ms	remaining: 16.9ms
97:	learn: 18.6633102	total: 554ms	remaining: 11.3ms
98:	learn: 18.5887516	total: 559ms	remaining: 5.64ms
99:	learn: 18.4841597	total: 564ms	remaining: 0us
0:	learn: 46.2172336	total: 5.53ms	remaining: 547ms
1:	learn: 45.4248871	total: 10.7ms	remaining: 523ms
2:	learn: 44.8702937	total: 15.8ms	remaining: 512ms
3:	learn: 44.2019212	total: 20.8ms	remaining: 499ms
4:	learn: 43.4805210	total: 25.6ms	remaining: 487ms
5:	learn: 42.7336269	total: 30.6ms	remaining: 479ms
6:	learn: 42.0396670	total: 35.1ms	remaining: 466ms
7:	learn: 41.5668459	total: 39.8ms	remaining: 458ms
8:	learn: 40.8999125	total: 44.4ms	remaining: 449ms
9:	learn: 40.3358512	total: 49.2ms	remaining: 443ms
10:	learn: 39.7511489	total: 54.3ms	remaining: 440ms
11:	learn: 39.0775416	total: 59.3ms	remaining: 435ms
12:	learn: 38.5204735	total: 63.9ms	remaining: 427ms
13:	learn: 38.2087509	total: 68.6ms	remaining: 421ms
14:	learn: 37.7259552	total: 73.7ms	remaining: 418ms
15:	learn: 37.1646397	total: 78.5ms	remaining: 412ms
16:	learn: 36.7093520	total: 83.5ms	remaining: 407ms
17:	learn: 36.2212308	total: 89ms	remaining: 405ms
18:	learn: 35.8682156	total: 93.9ms	remaining: 400ms
19:	learn: 35.6026383	total: 98.7ms	remaining: 395ms
20:	learn: 35.1739725	total: 105ms	remaining: 396ms
21:	learn: 34.5938003	total: 116ms	remaining: 410ms
22:	learn: 34.1479056	total: 127ms	remaining: 424ms
23:	learn: 33.8759356	total: 136ms	remaining: 431ms
24:	learn: 33.2898426	total: 142ms	remaining: 426ms
25:	learn: 32.9220237	total: 149ms	remaining: 423ms
26:	learn: 32.4324374	total: 155ms	remaining: 419ms
27:	learn: 32.1726327	total: 162ms	remaining: 415ms
28:	learn: 31.8020879	total: 168ms	remaining: 411ms
29:	learn: 31.4329781	total: 174ms	remaining: 406ms
30:	learn: 30.9995282	total: 181ms	remaining: 402ms
31:	learn: 30.6815978	total: 188ms	remaining: 399ms
32:	learn: 30.2991029	total: 194ms	remaining: 394ms
33:	learn: 30.0354202	total: 200ms	remaining: 388ms
34:	learn: 29.7620535	total: 206ms	remaining: 383ms
35:	learn: 29.4552589	total: 213ms	remaining: 378ms
36:	learn: 29.2634399	total: 217ms	remaining: 370ms
37:	learn: 28.8345135	total: 223ms	remaining: 364ms
38:	learn: 28.5551142	total: 228ms	remaining: 357ms
39:	learn: 28.3258809	total: 233ms	remaining: 350ms
40:	learn: 28.0835564	total: 238ms	remaining: 343ms
41:	learn: 27.7517159	total: 243ms	remaining: 335ms
42:	learn: 27.5427595	total: 247ms	remaining: 328ms
43:	learn: 27.3925105	total: 252ms	remaining: 321ms
44:	learn: 27.2377120	total: 257ms	remaining: 314ms
45:	learn: 26.9930398	total: 262ms	remaining: 307ms
46:	learn: 26.7748687	total: 267ms	remaining: 301ms
47:	learn: 26.5856986	total: 272ms	remaining: 294ms
48:	learn: 26.4344153	total: 276ms	remaining: 288ms
49:	learn: 26.3263456	total: 284ms	remaining: 284ms
50:	learn: 26.2048412	total: 292ms	remaining: 280ms
51:	learn: 26.0608546	total: 300ms	remaining: 277ms
52:	learn: 25.9428146	total: 305ms	remaining: 270ms
53:	learn: 25.7578029	total: 310ms	remaining: 264ms
54:	learn: 25.5696792	total: 316ms	remaining: 258ms
55:	learn: 25.3291935	total: 323ms	remaining: 254ms
56:	learn: 25.1388942	total: 329ms	remaining: 248ms
57:	learn: 24.9853945	total: 334ms	remaining: 242ms
58:	learn: 24.8037785	total: 338ms	remaining: 235ms
59:	learn: 24.5326704	total: 343ms	remaining: 229ms
60:	learn: 24.2208240	total: 348ms	remaining: 223ms
61:	learn: 24.0774015	total: 353ms	remaining: 217ms
62:	learn: 23.9705824	total: 358ms	remaining: 210ms
63:	learn: 23.8877665	total: 363ms	remaining: 204ms
64:	learn: 23.7309043	total: 368ms	remaining: 198ms
65:	learn: 23.5820140	total: 373ms	remaining: 192ms
66:	learn: 23.3762012	total: 378ms	remaining: 186ms
67:	learn: 23.2317502	total: 383ms	remaining: 180ms
68:	learn: 23.0868331	total: 388ms	remaining: 174ms
69:	learn: 22.9642758	total: 392ms	remaining: 168ms
70:	learn: 22.8085341	total: 397ms	remaining: 162ms
71:	learn: 22.6834294	total: 402ms	remaining: 156ms
72:	learn: 22.6152922	total: 408ms	remaining: 151ms
73:	learn: 22.3675145	total: 412ms	remaining: 145ms
74:	learn: 22.3023338	total: 417ms	remaining: 139ms
75:	learn: 22.1866833	total: 422ms	remaining: 133ms
76:	learn: 22.0163130	total: 427ms	remaining: 127ms
77:	learn: 21.9691306	total: 431ms	remaining: 122ms
78:	learn: 21.9004647	total: 437ms	remaining: 116ms
79:	learn: 21.7931869	total: 442ms	remaining: 110ms
80:	learn: 21.6747916	total: 446ms	remaining: 105ms
81:	learn: 21.5187568	total: 451ms	remaining: 99ms
82:	learn: 21.3124880	total: 457ms	remaining: 93.5ms
83:	learn: 21.1979524	total: 462ms	remaining: 87.9ms
84:	learn: 21.1311130	total: 466ms	remaining: 82.3ms
85:	learn: 21.0606062	total: 472ms	remaining: 76.8ms
86:	learn: 20.9900935	total: 477ms	remaining: 71.3ms
87:	learn: 20.8908054	total: 482ms	remaining: 65.8ms
88:	learn: 20.8088525	total: 488ms	remaining: 60.3ms
89:	learn: 20.7300955	total: 493ms	remaining: 54.8ms
90:	learn: 20.6130276	total: 499ms	remaining: 49.3ms
91:	learn: 20.5437508	total: 504ms	remaining: 43.8ms
92:	learn: 20.5029426	total: 514ms	remaining: 38.7ms
93:	learn: 20.4416708	total: 524ms	remaining: 33.5ms
94:	learn: 20.3917812	total: 533ms	remaining: 28.1ms
95:	learn: 20.3305024	total: 541ms	remaining: 22.6ms
96:	learn: 20.2375704	total: 548ms	remaining: 16.9ms
97:	learn: 20.1835197	total: 553ms	remaining: 11.3ms
98:	learn: 20.1246834	total: 559ms	remaining: 5.64ms
99:	learn: 20.0506334	total: 564ms	remaining: 0us
0:	learn: 46.7334648	total: 5.62ms	remaining: 556ms
1:	learn: 46.2069876	total: 10.5ms	remaining: 514ms
2:	learn: 45.3699967	total: 15.1ms	remaining: 489ms
3:	learn: 44.6866787	total: 20ms	remaining: 481ms
4:	learn: 43.8536031	total: 24.6ms	remaining: 468ms
5:	learn: 43.4716853	total: 29.5ms	remaining: 462ms
6:	learn: 42.9929637	total: 34.4ms	remaining: 458ms
7:	learn: 42.4952169	total: 39.1ms	remaining: 450ms
8:	learn: 41.7548337	total: 43.5ms	remaining: 440ms
9:	learn: 41.1054415	total: 48.2ms	remaining: 434ms
10:	learn: 40.4827492	total: 53.4ms	remaining: 432ms
11:	learn: 39.7605907	total: 58.2ms	remaining: 427ms
12:	learn: 39.2532558	total: 62.9ms	remaining: 421ms
13:	learn: 38.6572753	total: 67.5ms	remaining: 415ms
14:	learn: 38.2886959	total: 72.4ms	remaining: 410ms
15:	learn: 37.7816612	total: 77.6ms	remaining: 408ms
16:	learn: 37.1680589	total: 83ms	remaining: 405ms
17:	learn: 36.5753004	total: 88.6ms	remaining: 404ms
18:	learn: 36.2339458	total: 93.8ms	remaining: 400ms
19:	learn: 35.9159716	total: 98.9ms	remaining: 395ms
20:	learn: 35.4591743	total: 105ms	remaining: 394ms
21:	learn: 34.8726070	total: 114ms	remaining: 403ms
22:	learn: 34.3903591	total: 123ms	remaining: 411ms
23:	learn: 34.1236827	total: 129ms	remaining: 410ms
24:	learn: 33.8026540	total: 136ms	remaining: 407ms
25:	learn: 33.4594822	total: 141ms	remaining: 402ms
26:	learn: 33.1338910	total: 146ms	remaining: 395ms
27:	learn: 32.8527106	total: 151ms	remaining: 388ms
28:	learn: 32.4923829	total: 156ms	remaining: 382ms
29:	learn: 32.0560533	total: 161ms	remaining: 375ms
30:	learn: 31.6614408	total: 166ms	remaining: 369ms
31:	learn: 31.2796040	total: 171ms	remaining: 363ms
32:	learn: 30.8214741	total: 176ms	remaining: 357ms
33:	learn: 30.5908694	total: 180ms	remaining: 350ms
34:	learn: 30.3637356	total: 185ms	remaining: 344ms
35:	learn: 30.0446511	total: 190ms	remaining: 338ms
36:	learn: 29.8792549	total: 195ms	remaining: 332ms
37:	learn: 29.5488457	total: 200ms	remaining: 327ms
38:	learn: 29.2808568	total: 205ms	remaining: 321ms
39:	learn: 29.0603765	total: 210ms	remaining: 315ms
40:	learn: 28.8272425	total: 215ms	remaining: 309ms
41:	learn: 28.4753580	total: 220ms	remaining: 303ms
42:	learn: 28.2963614	total: 224ms	remaining: 297ms
43:	learn: 28.1054768	total: 229ms	remaining: 292ms
44:	learn: 27.9038093	total: 234ms	remaining: 286ms
45:	learn: 27.6305487	total: 239ms	remaining: 281ms
46:	learn: 27.4457907	total: 244ms	remaining: 275ms
47:	learn: 27.1855957	total: 249ms	remaining: 269ms
48:	learn: 26.9987934	total: 253ms	remaining: 264ms
49:	learn: 26.7881067	total: 258ms	remaining: 258ms
50:	learn: 26.6385231	total: 264ms	remaining: 253ms
51:	learn: 26.4661755	total: 268ms	remaining: 248ms
52:	learn: 26.3331868	total: 273ms	remaining: 242ms
53:	learn: 26.0353476	total: 278ms	remaining: 237ms
54:	learn: 25.8257147	total: 283ms	remaining: 232ms
55:	learn: 25.5924383	total: 288ms	remaining: 226ms
56:	learn: 25.4082209	total: 293ms	remaining: 221ms
57:	learn: 25.2350104	total: 298ms	remaining: 216ms
58:	learn: 25.1789867	total: 304ms	remaining: 211ms
59:	learn: 24.9111359	total: 312ms	remaining: 208ms
60:	learn: 24.6314503	total: 321ms	remaining: 205ms
61:	learn: 24.4297999	total: 332ms	remaining: 203ms
62:	learn: 24.3126171	total: 340ms	remaining: 199ms
63:	learn: 24.1544005	total: 345ms	remaining: 194ms
64:	learn: 24.0197950	total: 351ms	remaining: 189ms
65:	learn: 23.8483087	total: 356ms	remaining: 184ms
66:	learn: 23.6624915	total: 362ms	remaining: 178ms
67:	learn: 23.5068105	total: 368ms	remaining: 173ms
68:	learn: 23.4266187	total: 374ms	remaining: 168ms
69:	learn: 23.3535388	total: 379ms	remaining: 163ms
70:	learn: 23.2477190	total: 385ms	remaining: 157ms
71:	learn: 23.1877634	total: 391ms	remaining: 152ms
72:	learn: 23.1344720	total: 396ms	remaining: 146ms
73:	learn: 22.9498234	total: 402ms	remaining: 141ms
74:	learn: 22.9068295	total: 409ms	remaining: 136ms
75:	learn: 22.7368434	total: 414ms	remaining: 131ms
76:	learn: 22.6084901	total: 419ms	remaining: 125ms
77:	learn: 22.4690295	total: 424ms	remaining: 120ms
78:	learn: 22.3970100	total: 429ms	remaining: 114ms
79:	learn: 22.3025537	total: 433ms	remaining: 108ms
80:	learn: 22.2089293	total: 438ms	remaining: 103ms
81:	learn: 22.0522107	total: 443ms	remaining: 97.3ms
82:	learn: 21.9368213	total: 448ms	remaining: 91.8ms
83:	learn: 21.7968322	total: 453ms	remaining: 86.4ms
84:	learn: 21.7416164	total: 458ms	remaining: 80.9ms
85:	learn: 21.6031099	total: 463ms	remaining: 75.4ms
86:	learn: 21.4530627	total: 468ms	remaining: 69.9ms
87:	learn: 21.3118417	total: 473ms	remaining: 64.5ms
88:	learn: 21.2760431	total: 478ms	remaining: 59.1ms
89:	learn: 21.2071350	total: 483ms	remaining: 53.7ms
90:	learn: 21.1051001	total: 489ms	remaining: 48.3ms
91:	learn: 21.0246142	total: 494ms	remaining: 43ms
92:	learn: 20.9834999	total: 499ms	remaining: 37.6ms
93:	learn: 20.8989393	total: 505ms	remaining: 32.3ms
94:	learn: 20.8262231	total: 510ms	remaining: 26.9ms
95:	learn: 20.7369110	total: 516ms	remaining: 21.5ms
96:	learn: 20.6409587	total: 524ms	remaining: 16.2ms
97:	learn: 20.5553641	total: 533ms	remaining: 10.9ms
98:	learn: 20.4317232	total: 540ms	remaining: 5.46ms
99:	learn: 20.3708681	total: 546ms	remaining: 0us
0:	learn: 27.3776612	total: 20.9ms	remaining: 2.07s
1:	learn: 26.7619003	total: 39.3ms	remaining: 1.93s
2:	learn: 26.0057626	total: 57.2ms	remaining: 1.85s
3:	learn: 25.4280982	total: 75.3ms	remaining: 1.81s
4:	learn: 24.8347609	total: 93.7ms	remaining: 1.78s
5:	learn: 24.2526574	total: 114ms	remaining: 1.78s
6:	learn: 23.7478806	total: 134ms	remaining: 1.77s
7:	learn: 23.2677666	total: 161ms	remaining: 1.85s
8:	learn: 22.7564310	total: 185ms	remaining: 1.87s
9:	learn: 22.2873770	total: 208ms	remaining: 1.87s
10:	learn: 21.8088174	total: 228ms	remaining: 1.84s
11:	learn: 21.4086875	total: 249ms	remaining: 1.83s
12:	learn: 20.9489217	total: 271ms	remaining: 1.82s
13:	learn: 20.4585233	total: 290ms	remaining: 1.78s
14:	learn: 20.0177760	total: 308ms	remaining: 1.74s
15:	learn: 19.5981890	total: 326ms	remaining: 1.71s
16:	learn: 19.2041885	total: 346ms	remaining: 1.69s
17:	learn: 18.8422550	total: 367ms	remaining: 1.67s
18:	learn: 18.4774037	total: 392ms	remaining: 1.67s
19:	learn: 18.0931699	total: 412ms	remaining: 1.65s
20:	learn: 17.6856423	total: 429ms	remaining: 1.61s
21:	learn: 17.3394010	total: 447ms	remaining: 1.58s
22:	learn: 17.0165204	total: 466ms	remaining: 1.56s
23:	learn: 16.7728230	total: 485ms	remaining: 1.53s
24:	learn: 16.5020155	total: 504ms	remaining: 1.51s
25:	learn: 16.2110813	total: 525ms	remaining: 1.49s
26:	learn: 15.9439416	total: 547ms	remaining: 1.48s
27:	learn: 15.6605702	total: 569ms	remaining: 1.46s
28:	learn: 15.4180978	total: 597ms	remaining: 1.46s
29:	learn: 15.1463921	total: 621ms	remaining: 1.45s
30:	learn: 14.8961946	total: 643ms	remaining: 1.43s
31:	learn: 14.6763296	total: 666ms	remaining: 1.41s
32:	learn: 14.4161484	total: 687ms	remaining: 1.39s
33:	learn: 14.1748686	total: 710ms	remaining: 1.38s
34:	learn: 13.9722494	total: 730ms	remaining: 1.36s
35:	learn: 13.7632896	total: 751ms	remaining: 1.33s
36:	learn: 13.5572592	total: 771ms	remaining: 1.31s
37:	learn: 13.3896577	total: 799ms	remaining: 1.3s
38:	learn: 13.2796441	total: 824ms	remaining: 1.29s
39:	learn: 13.0896679	total: 844ms	remaining: 1.27s
40:	learn: 12.8898238	total: 864ms	remaining: 1.24s
41:	learn: 12.6824069	total: 886ms	remaining: 1.22s
42:	learn: 12.5459667	total: 908ms	remaining: 1.2s
43:	learn: 12.3859203	total: 929ms	remaining: 1.18s
44:	learn: 12.2099364	total: 951ms	remaining: 1.16s
45:	learn: 12.0649044	total: 973ms	remaining: 1.14s
46:	learn: 11.8934147	total: 1s	remaining: 1.13s
47:	learn: 11.7212144	total: 1.03s	remaining: 1.11s
48:	learn: 11.5585360	total: 1.05s	remaining: 1.09s
49:	learn: 11.4204354	total: 1.07s	remaining: 1.07s
50:	learn: 11.3264427	total: 1.09s	remaining: 1.05s
51:	learn: 11.2063486	total: 1.12s	remaining: 1.03s
52:	learn: 11.0712206	total: 1.14s	remaining: 1.01s
53:	learn: 10.9205088	total: 1.16s	remaining: 992ms
54:	learn: 10.8155412	total: 1.19s	remaining: 972ms
55:	learn: 10.7286854	total: 1.21s	remaining: 951ms
56:	learn: 10.6088466	total: 1.24s	remaining: 937ms
57:	learn: 10.4999885	total: 1.27s	remaining: 917ms
58:	learn: 10.4022194	total: 1.29s	remaining: 894ms
59:	learn: 10.3147130	total: 1.31s	remaining: 871ms
60:	learn: 10.2011489	total: 1.33s	remaining: 849ms
61:	learn: 10.1094372	total: 1.35s	remaining: 825ms
62:	learn: 10.0248970	total: 1.36s	remaining: 802ms
63:	learn: 9.9192710	total: 1.39s	remaining: 779ms
64:	learn: 9.8577360	total: 1.4s	remaining: 756ms
65:	learn: 9.7737103	total: 1.42s	remaining: 734ms
66:	learn: 9.6706617	total: 1.45s	remaining: 715ms
67:	learn: 9.6042727	total: 1.47s	remaining: 694ms
68:	learn: 9.5355377	total: 1.5s	remaining: 673ms
69:	learn: 9.4615216	total: 1.52s	remaining: 652ms
70:	learn: 9.3702045	total: 1.54s	remaining: 631ms
71:	learn: 9.3035392	total: 1.56s	remaining: 608ms
72:	learn: 9.2322686	total: 1.58s	remaining: 585ms
73:	learn: 9.1431916	total: 1.6s	remaining: 563ms
74:	learn: 9.0869466	total: 1.62s	remaining: 541ms
75:	learn: 9.0117390	total: 1.65s	remaining: 522ms
76:	learn: 8.9580443	total: 1.67s	remaining: 499ms
77:	learn: 8.8649939	total: 1.69s	remaining: 477ms
78:	learn: 8.7792713	total: 1.71s	remaining: 455ms
79:	learn: 8.7164606	total: 1.73s	remaining: 432ms
80:	learn: 8.6340559	total: 1.75s	remaining: 410ms
81:	learn: 8.5697104	total: 1.77s	remaining: 388ms
82:	learn: 8.5273758	total: 1.78s	remaining: 366ms
83:	learn: 8.4394788	total: 1.8s	remaining: 344ms
84:	learn: 8.3672415	total: 1.83s	remaining: 322ms
85:	learn: 8.2813444	total: 1.85s	remaining: 301ms
86:	learn: 8.1994983	total: 1.88s	remaining: 281ms
87:	learn: 8.1003577	total: 1.9s	remaining: 259ms
88:	learn: 8.0501976	total: 1.92s	remaining: 238ms
89:	learn: 7.9718830	total: 1.95s	remaining: 216ms
90:	learn: 7.9114534	total: 1.97s	remaining: 195ms
91:	learn: 7.8319856	total: 1.99s	remaining: 173ms
92:	learn: 7.7731246	total: 2.01s	remaining: 151ms
93:	learn: 7.7165850	total: 2.03s	remaining: 129ms
94:	learn: 7.6448498	total: 2.05s	remaining: 108ms
95:	learn: 7.5709919	total: 2.07s	remaining: 86.4ms
96:	learn: 7.5184082	total: 2.1s	remaining: 64.9ms
97:	learn: 7.4786866	total: 2.12s	remaining: 43.2ms
98:	learn: 7.4301201	total: 2.14s	remaining: 21.6ms
99:	learn: 7.3416932	total: 2.16s	remaining: 0us
0:	learn: 42.6391731	total: 19.8ms	remaining: 1.96s
1:	learn: 41.2755994	total: 39.3ms	remaining: 1.92s
2:	learn: 40.1418308	total: 60.7ms	remaining: 1.96s
3:	learn: 38.9707156	total: 85.6ms	remaining: 2.05s
4:	learn: 37.8723622	total: 113ms	remaining: 2.15s
5:	learn: 36.6981834	total: 134ms	remaining: 2.1s
6:	learn: 35.6210108	total: 157ms	remaining: 2.08s
7:	learn: 34.5154078	total: 178ms	remaining: 2.05s
8:	learn: 33.4581011	total: 199ms	remaining: 2.01s
9:	learn: 32.5872455	total: 217ms	remaining: 1.96s
10:	learn: 31.6311510	total: 236ms	remaining: 1.91s
11:	learn: 30.8222401	total: 258ms	remaining: 1.89s
12:	learn: 29.9305192	total: 280ms	remaining: 1.87s
13:	learn: 29.0742133	total: 303ms	remaining: 1.86s
14:	learn: 28.3687544	total: 323ms	remaining: 1.83s
15:	learn: 27.5730558	total: 341ms	remaining: 1.79s
16:	learn: 26.9376082	total: 360ms	remaining: 1.76s
17:	learn: 26.2254949	total: 380ms	remaining: 1.73s
18:	learn: 25.5974939	total: 399ms	remaining: 1.7s
19:	learn: 25.0097187	total: 420ms	remaining: 1.68s
20:	learn: 24.3722243	total: 441ms	remaining: 1.66s
21:	learn: 23.8249140	total: 460ms	remaining: 1.63s
22:	learn: 23.3953969	total: 481ms	remaining: 1.61s
23:	learn: 22.8726238	total: 507ms	remaining: 1.6s
24:	learn: 22.3407723	total: 533ms	remaining: 1.6s
25:	learn: 21.8360330	total: 554ms	remaining: 1.58s
26:	learn: 21.4050665	total: 557ms	remaining: 1.5s
27:	learn: 20.9389245	total: 578ms	remaining: 1.49s
28:	learn: 20.5166767	total: 600ms	remaining: 1.47s
29:	learn: 20.1190641	total: 621ms	remaining: 1.45s
30:	learn: 19.7189491	total: 640ms	remaining: 1.43s
31:	learn: 19.3748181	total: 658ms	remaining: 1.4s
32:	learn: 19.0116312	total: 679ms	remaining: 1.38s
33:	learn: 18.6982407	total: 710ms	remaining: 1.38s
34:	learn: 18.3109965	total: 734ms	remaining: 1.36s
35:	learn: 17.9620798	total: 753ms	remaining: 1.34s
36:	learn: 17.6396740	total: 773ms	remaining: 1.31s
37:	learn: 17.3596962	total: 792ms	remaining: 1.29s
38:	learn: 17.0107107	total: 813ms	remaining: 1.27s
39:	learn: 16.7000770	total: 834ms	remaining: 1.25s
40:	learn: 16.4406609	total: 846ms	remaining: 1.22s
41:	learn: 16.2482533	total: 865ms	remaining: 1.2s
42:	learn: 16.0039366	total: 887ms	remaining: 1.18s
43:	learn: 15.7538572	total: 908ms	remaining: 1.16s
44:	learn: 15.5095380	total: 935ms	remaining: 1.14s
45:	learn: 15.2678319	total: 965ms	remaining: 1.13s
46:	learn: 15.0494495	total: 988ms	remaining: 1.11s
47:	learn: 14.8347400	total: 1.01s	remaining: 1.09s
48:	learn: 14.6035398	total: 1.03s	remaining: 1.07s
49:	learn: 14.3913639	total: 1.05s	remaining: 1.05s
50:	learn: 14.1928022	total: 1.07s	remaining: 1.03s
51:	learn: 13.9985580	total: 1.09s	remaining: 1.01s
52:	learn: 13.8322220	total: 1.11s	remaining: 989ms
53:	learn: 13.6455937	total: 1.14s	remaining: 968ms
54:	learn: 13.4402019	total: 1.16s	remaining: 948ms
55:	learn: 13.2899163	total: 1.19s	remaining: 932ms
56:	learn: 13.1694614	total: 1.21s	remaining: 910ms
57:	learn: 13.0722892	total: 1.23s	remaining: 889ms
58:	learn: 12.9065251	total: 1.25s	remaining: 867ms
59:	learn: 12.6992885	total: 1.27s	remaining: 846ms
60:	learn: 12.5384562	total: 1.29s	remaining: 825ms
61:	learn: 12.4105591	total: 1.31s	remaining: 802ms
62:	learn: 12.2952504	total: 1.33s	remaining: 781ms
63:	learn: 12.1427365	total: 1.35s	remaining: 760ms
64:	learn: 11.9954361	total: 1.37s	remaining: 738ms
65:	learn: 11.8161234	total: 1.4s	remaining: 722ms
66:	learn: 11.6849978	total: 1.43s	remaining: 703ms
67:	learn: 11.5405300	total: 1.45s	remaining: 683ms
68:	learn: 11.3806762	total: 1.48s	remaining: 663ms
69:	learn: 11.2746848	total: 1.5s	remaining: 643ms
70:	learn: 11.1518256	total: 1.52s	remaining: 620ms
71:	learn: 11.0730779	total: 1.54s	remaining: 599ms
72:	learn: 10.9736725	total: 1.56s	remaining: 578ms
73:	learn: 10.8430563	total: 1.58s	remaining: 557ms
74:	learn: 10.7142220	total: 1.61s	remaining: 539ms
75:	learn: 10.6141640	total: 1.64s	remaining: 517ms
76:	learn: 10.5264853	total: 1.66s	remaining: 495ms
77:	learn: 10.3929390	total: 1.68s	remaining: 473ms
78:	learn: 10.3163176	total: 1.7s	remaining: 452ms
79:	learn: 10.2171240	total: 1.72s	remaining: 430ms
80:	learn: 10.1381738	total: 1.74s	remaining: 408ms
81:	learn: 10.0402437	total: 1.76s	remaining: 386ms
82:	learn: 9.9223565	total: 1.78s	remaining: 365ms
83:	learn: 9.8184057	total: 1.8s	remaining: 343ms
84:	learn: 9.7221978	total: 1.83s	remaining: 324ms
85:	learn: 9.6417031	total: 1.86s	remaining: 303ms
86:	learn: 9.5593969	total: 1.88s	remaining: 282ms
87:	learn: 9.4678992	total: 1.91s	remaining: 260ms
88:	learn: 9.3855757	total: 1.93s	remaining: 239ms
89:	learn: 9.2884031	total: 1.96s	remaining: 217ms
90:	learn: 9.2099382	total: 1.98s	remaining: 196ms
91:	learn: 9.1357061	total: 2s	remaining: 174ms
92:	learn: 9.0690328	total: 2.03s	remaining: 153ms
93:	learn: 8.9904694	total: 2.05s	remaining: 131ms
94:	learn: 8.9256893	total: 2.07s	remaining: 109ms
95:	learn: 8.8600084	total: 2.09s	remaining: 87.2ms
96:	learn: 8.8091154	total: 2.11s	remaining: 65.4ms
97:	learn: 8.7280528	total: 2.13s	remaining: 43.5ms
98:	learn: 8.6761440	total: 2.15s	remaining: 21.8ms
99:	learn: 8.6181192	total: 2.17s	remaining: 0us
0:	learn: 45.9988128	total: 27.6ms	remaining: 2.73s
1:	learn: 44.7653841	total: 54ms	remaining: 2.65s
2:	learn: 43.4693688	total: 77.7ms	remaining: 2.51s
3:	learn: 42.2495168	total: 100ms	remaining: 2.4s
4:	learn: 41.2273909	total: 123ms	remaining: 2.33s
5:	learn: 40.0623352	total: 143ms	remaining: 2.23s
6:	learn: 39.0139162	total: 162ms	remaining: 2.16s
7:	learn: 37.9905503	total: 181ms	remaining: 2.09s
8:	learn: 37.1460179	total: 201ms	remaining: 2.03s
9:	learn: 36.1321769	total: 219ms	remaining: 1.97s
10:	learn: 35.2434048	total: 237ms	remaining: 1.92s
11:	learn: 34.3919476	total: 255ms	remaining: 1.87s
12:	learn: 33.5464400	total: 280ms	remaining: 1.87s
13:	learn: 32.5752711	total: 304ms	remaining: 1.87s
14:	learn: 31.8573507	total: 323ms	remaining: 1.83s
15:	learn: 31.1481980	total: 343ms	remaining: 1.8s
16:	learn: 30.4578224	total: 362ms	remaining: 1.77s
17:	learn: 29.8404841	total: 382ms	remaining: 1.74s
18:	learn: 29.1314604	total: 400ms	remaining: 1.7s
19:	learn: 28.5024706	total: 419ms	remaining: 1.68s
20:	learn: 27.9368896	total: 437ms	remaining: 1.65s
21:	learn: 27.2136491	total: 457ms	remaining: 1.62s
22:	learn: 26.6230078	total: 478ms	remaining: 1.6s
23:	learn: 26.0604635	total: 498ms	remaining: 1.58s
24:	learn: 25.6309424	total: 522ms	remaining: 1.57s
25:	learn: 25.1761698	total: 549ms	remaining: 1.56s
26:	learn: 24.6368216	total: 570ms	remaining: 1.54s
27:	learn: 24.1028972	total: 592ms	remaining: 1.52s
28:	learn: 23.3990224	total: 614ms	remaining: 1.5s
29:	learn: 22.9088559	total: 636ms	remaining: 1.48s
30:	learn: 22.4793217	total: 656ms	remaining: 1.46s
31:	learn: 22.0592669	total: 675ms	remaining: 1.43s
32:	learn: 21.6715811	total: 695ms	remaining: 1.41s
33:	learn: 21.1907911	total: 718ms	remaining: 1.39s
34:	learn: 20.8045504	total: 743ms	remaining: 1.38s
35:	learn: 20.4670784	total: 762ms	remaining: 1.35s
36:	learn: 20.0165788	total: 781ms	remaining: 1.33s
37:	learn: 19.6859173	total: 800ms	remaining: 1.3s
38:	learn: 19.3641283	total: 821ms	remaining: 1.28s
39:	learn: 19.0291194	total: 841ms	remaining: 1.26s
40:	learn: 18.7204204	total: 859ms	remaining: 1.24s
41:	learn: 18.4000101	total: 880ms	remaining: 1.21s
42:	learn: 18.0910445	total: 900ms	remaining: 1.19s
43:	learn: 17.8354609	total: 921ms	remaining: 1.17s
44:	learn: 17.4982243	total: 947ms	remaining: 1.16s
45:	learn: 17.1895897	total: 973ms	remaining: 1.14s
46:	learn: 16.9440833	total: 995ms	remaining: 1.12s
47:	learn: 16.6112102	total: 1.02s	remaining: 1.1s
48:	learn: 16.3320235	total: 1.04s	remaining: 1.08s
49:	learn: 16.0523610	total: 1.06s	remaining: 1.06s
50:	learn: 15.8256738	total: 1.08s	remaining: 1.03s
51:	learn: 15.5699393	total: 1.1s	remaining: 1.01s
52:	learn: 15.3531799	total: 1.12s	remaining: 992ms
53:	learn: 15.1364230	total: 1.14s	remaining: 971ms
54:	learn: 15.0012063	total: 1.16s	remaining: 953ms
55:	learn: 14.7171740	total: 1.19s	remaining: 933ms
56:	learn: 14.5897576	total: 1.19s	remaining: 897ms
57:	learn: 14.3886878	total: 1.21s	remaining: 877ms
58:	learn: 14.1942115	total: 1.23s	remaining: 856ms
59:	learn: 14.0135398	total: 1.25s	remaining: 834ms
60:	learn: 13.8118263	total: 1.27s	remaining: 813ms
61:	learn: 13.6444047	total: 1.29s	remaining: 793ms
62:	learn: 13.4728078	total: 1.32s	remaining: 774ms
63:	learn: 13.3104934	total: 1.34s	remaining: 753ms
64:	learn: 13.1385144	total: 1.36s	remaining: 735ms
65:	learn: 13.0087777	total: 1.39s	remaining: 717ms
66:	learn: 12.8457835	total: 1.41s	remaining: 696ms
67:	learn: 12.6975263	total: 1.43s	remaining: 675ms
68:	learn: 12.5582839	total: 1.45s	remaining: 654ms
69:	learn: 12.4210776	total: 1.48s	remaining: 633ms
70:	learn: 12.2737286	total: 1.5s	remaining: 611ms
71:	learn: 12.1587075	total: 1.51s	remaining: 589ms
72:	learn: 12.0323022	total: 1.53s	remaining: 567ms
73:	learn: 11.8667900	total: 1.55s	remaining: 546ms
74:	learn: 11.6990385	total: 1.57s	remaining: 525ms
75:	learn: 11.5755058	total: 1.6s	remaining: 506ms
76:	learn: 11.4954152	total: 1.63s	remaining: 485ms
77:	learn: 11.3827464	total: 1.64s	remaining: 464ms
78:	learn: 11.2924968	total: 1.66s	remaining: 442ms
79:	learn: 11.1938217	total: 1.68s	remaining: 420ms
80:	learn: 11.0766477	total: 1.7s	remaining: 398ms
81:	learn: 10.9824487	total: 1.72s	remaining: 377ms
82:	learn: 10.8707168	total: 1.73s	remaining: 355ms
83:	learn: 10.7746205	total: 1.75s	remaining: 334ms
84:	learn: 10.6738461	total: 1.78s	remaining: 315ms
85:	learn: 10.5871227	total: 1.82s	remaining: 296ms
86:	learn: 10.4566607	total: 1.84s	remaining: 276ms
87:	learn: 10.3506633	total: 1.87s	remaining: 255ms
88:	learn: 10.2104644	total: 1.89s	remaining: 234ms
89:	learn: 10.0965839	total: 1.92s	remaining: 213ms
90:	learn: 9.9802927	total: 1.94s	remaining: 192ms
91:	learn: 9.9195276	total: 1.96s	remaining: 171ms
92:	learn: 9.8559698	total: 1.98s	remaining: 149ms
93:	learn: 9.7396780	total: 2.01s	remaining: 128ms
94:	learn: 9.6945725	total: 2.04s	remaining: 107ms
95:	learn: 9.5897565	total: 2.07s	remaining: 86.2ms
96:	learn: 9.5012011	total: 2.09s	remaining: 64.7ms
97:	learn: 9.4123715	total: 2.11s	remaining: 43.1ms
98:	learn: 9.3288366	total: 2.13s	remaining: 21.6ms
99:	learn: 9.2648715	total: 2.16s	remaining: 0us
0:	learn: 45.5336925	total: 24.9ms	remaining: 2.46s
1:	learn: 44.2714175	total: 48.8ms	remaining: 2.39s
2:	learn: 43.1477944	total: 72.2ms	remaining: 2.33s
3:	learn: 41.9891776	total: 95.8ms	remaining: 2.3s
4:	learn: 41.0638986	total: 119ms	remaining: 2.27s
5:	learn: 39.9800801	total: 143ms	remaining: 2.23s
6:	learn: 38.9048061	total: 163ms	remaining: 2.16s
7:	learn: 38.0749429	total: 184ms	remaining: 2.12s
8:	learn: 37.3966644	total: 205ms	remaining: 2.07s
9:	learn: 36.4671331	total: 224ms	remaining: 2.02s
10:	learn: 35.6649217	total: 245ms	remaining: 1.98s
11:	learn: 34.8793657	total: 267ms	remaining: 1.96s
12:	learn: 34.0737401	total: 295ms	remaining: 1.97s
13:	learn: 33.2560999	total: 319ms	remaining: 1.96s
14:	learn: 32.4184623	total: 338ms	remaining: 1.92s
15:	learn: 31.6803206	total: 358ms	remaining: 1.88s
16:	learn: 30.9276344	total: 378ms	remaining: 1.85s
17:	learn: 30.3590041	total: 398ms	remaining: 1.81s
18:	learn: 29.7789888	total: 418ms	remaining: 1.78s
19:	learn: 29.1098261	total: 438ms	remaining: 1.75s
20:	learn: 28.4824889	total: 457ms	remaining: 1.72s
21:	learn: 27.9675744	total: 477ms	remaining: 1.69s
22:	learn: 27.4793215	total: 499ms	remaining: 1.67s
23:	learn: 26.8920542	total: 526ms	remaining: 1.66s
24:	learn: 26.2736657	total: 552ms	remaining: 1.66s
25:	learn: 25.6908003	total: 575ms	remaining: 1.64s
26:	learn: 25.1288844	total: 597ms	remaining: 1.61s
27:	learn: 24.6933320	total: 620ms	remaining: 1.59s
28:	learn: 24.1372567	total: 642ms	remaining: 1.57s
29:	learn: 23.7103515	total: 664ms	remaining: 1.55s
30:	learn: 23.1647499	total: 686ms	remaining: 1.53s
31:	learn: 22.7009216	total: 707ms	remaining: 1.5s
32:	learn: 22.2792229	total: 737ms	remaining: 1.5s
33:	learn: 21.8004244	total: 759ms	remaining: 1.47s
34:	learn: 21.3578361	total: 779ms	remaining: 1.45s
35:	learn: 21.0262832	total: 800ms	remaining: 1.42s
36:	learn: 20.5787502	total: 821ms	remaining: 1.4s
37:	learn: 20.3083055	total: 839ms	remaining: 1.37s
38:	learn: 19.9902529	total: 860ms	remaining: 1.34s
39:	learn: 19.6059571	total: 879ms	remaining: 1.32s
40:	learn: 19.3890959	total: 900ms	remaining: 1.29s
41:	learn: 19.0549255	total: 920ms	remaining: 1.27s
42:	learn: 18.7283215	total: 952ms	remaining: 1.26s
43:	learn: 18.4448725	total: 978ms	remaining: 1.24s
44:	learn: 18.1578001	total: 1s	remaining: 1.22s
45:	learn: 17.8777474	total: 1.02s	remaining: 1.2s
46:	learn: 17.6428221	total: 1.04s	remaining: 1.18s
47:	learn: 17.3887752	total: 1.06s	remaining: 1.15s
48:	learn: 17.1475761	total: 1.08s	remaining: 1.13s
49:	learn: 16.9064363	total: 1.1s	remaining: 1.1s
50:	learn: 16.6414681	total: 1.13s	remaining: 1.08s
51:	learn: 16.4549974	total: 1.15s	remaining: 1.06s
52:	learn: 16.2617558	total: 1.18s	remaining: 1.04s
53:	learn: 16.0258241	total: 1.2s	remaining: 1.02s
54:	learn: 15.7694686	total: 1.22s	remaining: 996ms
55:	learn: 15.5449602	total: 1.24s	remaining: 973ms
56:	learn: 15.3515330	total: 1.26s	remaining: 949ms
57:	learn: 15.1120403	total: 1.28s	remaining: 925ms
58:	learn: 14.9131368	total: 1.3s	remaining: 901ms
59:	learn: 14.8021921	total: 1.32s	remaining: 878ms
60:	learn: 14.6564259	total: 1.34s	remaining: 856ms
61:	learn: 14.5253260	total: 1.36s	remaining: 833ms
62:	learn: 14.3975427	total: 1.39s	remaining: 815ms
63:	learn: 14.3060204	total: 1.41s	remaining: 795ms
64:	learn: 14.1283681	total: 1.43s	remaining: 773ms
65:	learn: 14.0159063	total: 1.46s	remaining: 750ms
66:	learn: 13.8712541	total: 1.48s	remaining: 729ms
67:	learn: 13.7852998	total: 1.5s	remaining: 708ms
68:	learn: 13.6790164	total: 1.52s	remaining: 684ms
69:	learn: 13.5253745	total: 1.54s	remaining: 661ms
70:	learn: 13.3959663	total: 1.56s	remaining: 639ms
71:	learn: 13.2062955	total: 1.58s	remaining: 617ms
72:	learn: 13.0788709	total: 1.61s	remaining: 597ms
73:	learn: 12.9513184	total: 1.64s	remaining: 576ms
74:	learn: 12.8198556	total: 1.66s	remaining: 553ms
75:	learn: 12.7137549	total: 1.68s	remaining: 530ms
76:	learn: 12.6243477	total: 1.7s	remaining: 507ms
77:	learn: 12.5241564	total: 1.72s	remaining: 484ms
78:	learn: 12.4445782	total: 1.74s	remaining: 462ms
79:	learn: 12.3816501	total: 1.76s	remaining: 440ms
80:	learn: 12.2846914	total: 1.78s	remaining: 417ms
81:	learn: 12.1419498	total: 1.8s	remaining: 395ms
82:	learn: 12.0846494	total: 1.83s	remaining: 375ms
83:	learn: 11.9851484	total: 1.86s	remaining: 354ms
84:	learn: 11.8905738	total: 1.88s	remaining: 332ms
85:	learn: 11.7718790	total: 1.9s	remaining: 310ms
86:	learn: 11.6854413	total: 1.93s	remaining: 288ms
87:	learn: 11.6206110	total: 1.95s	remaining: 266ms
88:	learn: 11.5376098	total: 1.97s	remaining: 243ms
89:	learn: 11.4235068	total: 1.99s	remaining: 221ms
90:	learn: 11.3477955	total: 2.01s	remaining: 199ms
91:	learn: 11.2663772	total: 2.03s	remaining: 177ms
92:	learn: 11.1916556	total: 2.06s	remaining: 155ms
93:	learn: 11.0921504	total: 2.08s	remaining: 133ms
94:	learn: 10.9622375	total: 2.1s	remaining: 110ms
95:	learn: 10.8882085	total: 2.11s	remaining: 88.1ms
96:	learn: 10.8086218	total: 2.13s	remaining: 65.9ms
97:	learn: 10.7552220	total: 2.15s	remaining: 43.9ms
98:	learn: 10.6929666	total: 2.17s	remaining: 21.9ms
99:	learn: 10.6200033	total: 2.19s	remaining: 0us
0:	learn: 46.3366259	total: 22ms	remaining: 2.18s
1:	learn: 45.2205278	total: 44.5ms	remaining: 2.18s
2:	learn: 43.9887404	total: 65.2ms	remaining: 2.11s
3:	learn: 42.8240666	total: 85.4ms	remaining: 2.05s
4:	learn: 41.6086617	total: 106ms	remaining: 2.01s
5:	learn: 40.5606446	total: 124ms	remaining: 1.94s
6:	learn: 39.6241326	total: 143ms	remaining: 1.9s
7:	learn: 39.0016852	total: 163ms	remaining: 1.88s
8:	learn: 37.8501670	total: 184ms	remaining: 1.86s
9:	learn: 37.0215474	total: 212ms	remaining: 1.91s
10:	learn: 36.0215020	total: 233ms	remaining: 1.89s
11:	learn: 35.2421331	total: 251ms	remaining: 1.84s
12:	learn: 34.5416837	total: 271ms	remaining: 1.81s
13:	learn: 33.7787649	total: 290ms	remaining: 1.78s
14:	learn: 32.9860883	total: 308ms	remaining: 1.74s
15:	learn: 32.2123752	total: 327ms	remaining: 1.72s
16:	learn: 31.3564648	total: 345ms	remaining: 1.69s
17:	learn: 30.7859979	total: 367ms	remaining: 1.67s
18:	learn: 30.1443515	total: 387ms	remaining: 1.65s
19:	learn: 29.4880724	total: 417ms	remaining: 1.67s
20:	learn: 28.9635727	total: 440ms	remaining: 1.66s
21:	learn: 28.4853342	total: 462ms	remaining: 1.64s
22:	learn: 27.9796348	total: 484ms	remaining: 1.62s
23:	learn: 27.4360487	total: 504ms	remaining: 1.59s
24:	learn: 26.8685214	total: 527ms	remaining: 1.58s
25:	learn: 26.1769206	total: 547ms	remaining: 1.56s
26:	learn: 25.7146048	total: 567ms	remaining: 1.53s
27:	learn: 25.2614850	total: 586ms	remaining: 1.51s
28:	learn: 24.6626472	total: 607ms	remaining: 1.49s
29:	learn: 24.2501259	total: 636ms	remaining: 1.48s
30:	learn: 23.7892661	total: 657ms	remaining: 1.46s
31:	learn: 23.2729078	total: 675ms	remaining: 1.43s
32:	learn: 22.8969731	total: 696ms	remaining: 1.41s
33:	learn: 22.4567570	total: 715ms	remaining: 1.39s
34:	learn: 22.0569858	total: 733ms	remaining: 1.36s
35:	learn: 21.7317775	total: 751ms	remaining: 1.33s
36:	learn: 21.3890971	total: 769ms	remaining: 1.31s
37:	learn: 21.0664504	total: 787ms	remaining: 1.28s
38:	learn: 20.7379659	total: 806ms	remaining: 1.26s
39:	learn: 20.4423699	total: 826ms	remaining: 1.24s
40:	learn: 20.1526720	total: 855ms	remaining: 1.23s
41:	learn: 19.8706547	total: 879ms	remaining: 1.21s
42:	learn: 19.5139134	total: 900ms	remaining: 1.19s
43:	learn: 19.3495951	total: 921ms	remaining: 1.17s
44:	learn: 19.1314757	total: 943ms	remaining: 1.15s
45:	learn: 18.7971159	total: 966ms	remaining: 1.13s
46:	learn: 18.5447051	total: 985ms	remaining: 1.11s
47:	learn: 18.2328785	total: 1s	remaining: 1.09s
48:	learn: 17.9622938	total: 1.02s	remaining: 1.06s
49:	learn: 17.7264205	total: 1.04s	remaining: 1.04s
50:	learn: 17.4530592	total: 1.07s	remaining: 1.03s
51:	learn: 17.2236644	total: 1.09s	remaining: 1.01s
52:	learn: 17.0122792	total: 1.11s	remaining: 983ms
53:	learn: 16.7599064	total: 1.13s	remaining: 960ms
54:	learn: 16.5146699	total: 1.14s	remaining: 937ms
55:	learn: 16.2531414	total: 1.16s	remaining: 915ms
56:	learn: 16.0997208	total: 1.18s	remaining: 892ms
57:	learn: 15.8452412	total: 1.2s	remaining: 869ms
58:	learn: 15.6294900	total: 1.22s	remaining: 847ms
59:	learn: 15.4564548	total: 1.24s	remaining: 827ms
60:	learn: 15.2978533	total: 1.26s	remaining: 805ms
61:	learn: 15.0976912	total: 1.29s	remaining: 791ms
62:	learn: 14.9094446	total: 1.31s	remaining: 772ms
63:	learn: 14.7415094	total: 1.33s	remaining: 751ms
64:	learn: 14.6123806	total: 1.36s	remaining: 731ms
65:	learn: 14.4744916	total: 1.38s	remaining: 709ms
66:	learn: 14.3212717	total: 1.4s	remaining: 688ms
67:	learn: 14.1768047	total: 1.42s	remaining: 666ms
68:	learn: 14.0387344	total: 1.43s	remaining: 645ms
69:	learn: 13.8987579	total: 1.45s	remaining: 623ms
70:	learn: 13.7825740	total: 1.47s	remaining: 602ms
71:	learn: 13.6818548	total: 1.51s	remaining: 588ms
72:	learn: 13.5356993	total: 1.53s	remaining: 568ms
73:	learn: 13.4408704	total: 1.56s	remaining: 547ms
74:	learn: 13.2992218	total: 1.58s	remaining: 526ms
75:	learn: 13.1547092	total: 1.6s	remaining: 506ms
76:	learn: 13.0800189	total: 1.62s	remaining: 485ms
77:	learn: 12.9434711	total: 1.64s	remaining: 464ms
78:	learn: 12.8327325	total: 1.66s	remaining: 442ms
79:	learn: 12.7238946	total: 1.69s	remaining: 422ms
80:	learn: 12.6229528	total: 1.71s	remaining: 402ms
81:	learn: 12.5216078	total: 1.74s	remaining: 382ms
82:	learn: 12.4182254	total: 1.77s	remaining: 363ms
83:	learn: 12.3097978	total: 1.79s	remaining: 342ms
84:	learn: 12.1852056	total: 1.82s	remaining: 321ms
85:	learn: 12.0739627	total: 1.84s	remaining: 300ms
86:	learn: 11.9475583	total: 1.87s	remaining: 279ms
87:	learn: 11.8403806	total: 1.89s	remaining: 257ms
88:	learn: 11.7294124	total: 1.91s	remaining: 236ms
89:	learn: 11.6395689	total: 1.94s	remaining: 215ms
90:	learn: 11.5510643	total: 1.97s	remaining: 194ms
91:	learn: 11.4455301	total: 1.99s	remaining: 173ms
92:	learn: 11.3368661	total: 2.01s	remaining: 151ms
93:	learn: 11.2270796	total: 2.04s	remaining: 130ms
94:	learn: 11.1168414	total: 2.06s	remaining: 108ms
95:	learn: 11.0310985	total: 2.08s	remaining: 86.6ms
96:	learn: 10.9735185	total: 2.1s	remaining: 65ms
97:	learn: 10.8575874	total: 2.12s	remaining: 43.3ms
98:	learn: 10.7816173	total: 2.14s	remaining: 21.6ms
99:	learn: 10.7111737	total: 2.18s	remaining: 0us
0:	learn: 27.6506730	total: 5.89ms	remaining: 584ms
1:	learn: 27.1638793	total: 11.3ms	remaining: 555ms
2:	learn: 26.8000665	total: 16.8ms	remaining: 543ms
3:	learn: 26.4256132	total: 21.3ms	remaining: 512ms
4:	learn: 26.0088351	total: 25.7ms	remaining: 488ms
5:	learn: 25.7558298	total: 30.1ms	remaining: 471ms
6:	learn: 25.3380711	total: 34.7ms	remaining: 461ms
7:	learn: 25.0571611	total: 39.2ms	remaining: 451ms
8:	learn: 24.6790148	total: 43.5ms	remaining: 440ms
9:	learn: 24.3600941	total: 48.3ms	remaining: 435ms
10:	learn: 24.1105667	total: 52.9ms	remaining: 428ms
11:	learn: 23.7736542	total: 57.2ms	remaining: 420ms
12:	learn: 23.5824429	total: 61.9ms	remaining: 414ms
13:	learn: 23.2658303	total: 66.1ms	remaining: 406ms
14:	learn: 23.0061886	total: 70.7ms	remaining: 401ms
15:	learn: 22.8060389	total: 75.4ms	remaining: 396ms
16:	learn: 22.5899735	total: 80.4ms	remaining: 392ms
17:	learn: 22.3625048	total: 85.4ms	remaining: 389ms
18:	learn: 22.0706477	total: 90.6ms	remaining: 386ms
19:	learn: 21.8739394	total: 95.1ms	remaining: 380ms
20:	learn: 21.6143650	total: 99.9ms	remaining: 376ms
21:	learn: 21.4571623	total: 105ms	remaining: 371ms
22:	learn: 21.2395769	total: 110ms	remaining: 368ms
23:	learn: 20.9801795	total: 115ms	remaining: 364ms
24:	learn: 20.8036808	total: 120ms	remaining: 360ms
25:	learn: 20.6387539	total: 125ms	remaining: 356ms
26:	learn: 20.4401427	total: 130ms	remaining: 351ms
27:	learn: 20.2879575	total: 137ms	remaining: 353ms
28:	learn: 20.0538664	total: 145ms	remaining: 356ms
29:	learn: 19.8363102	total: 152ms	remaining: 355ms
30:	learn: 19.7015446	total: 159ms	remaining: 353ms
31:	learn: 19.5483114	total: 165ms	remaining: 351ms
32:	learn: 19.4163053	total: 170ms	remaining: 345ms
33:	learn: 19.2880625	total: 175ms	remaining: 339ms
34:	learn: 19.1303389	total: 180ms	remaining: 333ms
35:	learn: 18.9237448	total: 184ms	remaining: 327ms
36:	learn: 18.8142925	total: 189ms	remaining: 321ms
37:	learn: 18.6994696	total: 194ms	remaining: 316ms
38:	learn: 18.5629211	total: 198ms	remaining: 310ms
39:	learn: 18.4600917	total: 203ms	remaining: 305ms
40:	learn: 18.3567139	total: 208ms	remaining: 299ms
41:	learn: 18.2120527	total: 212ms	remaining: 293ms
42:	learn: 18.0688062	total: 217ms	remaining: 287ms
43:	learn: 17.9250181	total: 221ms	remaining: 282ms
44:	learn: 17.8399138	total: 226ms	remaining: 276ms
45:	learn: 17.6720713	total: 231ms	remaining: 271ms
46:	learn: 17.5273091	total: 235ms	remaining: 265ms
47:	learn: 17.4232814	total: 240ms	remaining: 260ms
48:	learn: 17.2957579	total: 245ms	remaining: 255ms
49:	learn: 17.1892874	total: 250ms	remaining: 250ms
50:	learn: 17.0490355	total: 255ms	remaining: 245ms
51:	learn: 16.9666450	total: 260ms	remaining: 240ms
52:	learn: 16.8600056	total: 265ms	remaining: 235ms
53:	learn: 16.7542588	total: 270ms	remaining: 230ms
54:	learn: 16.6316077	total: 274ms	remaining: 224ms
55:	learn: 16.5588112	total: 279ms	remaining: 219ms
56:	learn: 16.5010186	total: 285ms	remaining: 215ms
57:	learn: 16.4081540	total: 289ms	remaining: 209ms
58:	learn: 16.3040451	total: 293ms	remaining: 204ms
59:	learn: 16.1890564	total: 298ms	remaining: 199ms
60:	learn: 16.0977103	total: 303ms	remaining: 194ms
61:	learn: 15.9627607	total: 308ms	remaining: 189ms
62:	learn: 15.9022248	total: 313ms	remaining: 184ms
63:	learn: 15.8151881	total: 318ms	remaining: 179ms
64:	learn: 15.7353125	total: 322ms	remaining: 174ms
65:	learn: 15.6312897	total: 327ms	remaining: 169ms
66:	learn: 15.5330927	total: 333ms	remaining: 164ms
67:	learn: 15.4698681	total: 341ms	remaining: 160ms
68:	learn: 15.4108571	total: 354ms	remaining: 159ms
69:	learn: 15.3492945	total: 360ms	remaining: 154ms
70:	learn: 15.3036540	total: 368ms	remaining: 150ms
71:	learn: 15.2390833	total: 373ms	remaining: 145ms
72:	learn: 15.1556327	total: 379ms	remaining: 140ms
73:	learn: 15.1016315	total: 384ms	remaining: 135ms
74:	learn: 15.0287076	total: 390ms	remaining: 130ms
75:	learn: 14.9530572	total: 395ms	remaining: 125ms
76:	learn: 14.8965517	total: 401ms	remaining: 120ms
77:	learn: 14.8125426	total: 407ms	remaining: 115ms
78:	learn: 14.7435359	total: 412ms	remaining: 110ms
79:	learn: 14.6963163	total: 417ms	remaining: 104ms
80:	learn: 14.6200060	total: 422ms	remaining: 99ms
81:	learn: 14.5707760	total: 427ms	remaining: 93.7ms
82:	learn: 14.5053651	total: 432ms	remaining: 88.5ms
83:	learn: 14.4115458	total: 438ms	remaining: 83.5ms
84:	learn: 14.3117159	total: 444ms	remaining: 78.3ms
85:	learn: 14.2511326	total: 448ms	remaining: 73ms
86:	learn: 14.1372486	total: 453ms	remaining: 67.7ms
87:	learn: 14.0992301	total: 458ms	remaining: 62.5ms
88:	learn: 14.0228331	total: 463ms	remaining: 57.2ms
89:	learn: 13.9249836	total: 467ms	remaining: 51.9ms
90:	learn: 13.8679364	total: 472ms	remaining: 46.7ms
91:	learn: 13.8405578	total: 477ms	remaining: 41.5ms
92:	learn: 13.7711325	total: 482ms	remaining: 36.2ms
93:	learn: 13.7357019	total: 486ms	remaining: 31ms
94:	learn: 13.6735271	total: 491ms	remaining: 25.8ms
95:	learn: 13.5682393	total: 495ms	remaining: 20.6ms
96:	learn: 13.5342610	total: 500ms	remaining: 15.5ms
97:	learn: 13.4710034	total: 505ms	remaining: 10.3ms
98:	learn: 13.4022402	total: 511ms	remaining: 5.16ms
99:	learn: 13.3351238	total: 515ms	remaining: 0us
0:	learn: 42.9181702	total: 5.48ms	remaining: 542ms
1:	learn: 42.0286736	total: 9.83ms	remaining: 482ms
2:	learn: 41.2764568	total: 14.9ms	remaining: 483ms
3:	learn: 40.4721918	total: 19.6ms	remaining: 471ms
4:	learn: 39.8518928	total: 24.6ms	remaining: 468ms
5:	learn: 39.2645479	total: 29.4ms	remaining: 460ms
6:	learn: 38.4453704	total: 34.3ms	remaining: 456ms
7:	learn: 37.7122059	total: 39.1ms	remaining: 449ms
8:	learn: 36.9185796	total: 43.7ms	remaining: 442ms
9:	learn: 36.1668427	total: 48.9ms	remaining: 441ms
10:	learn: 35.5639029	total: 53.5ms	remaining: 433ms
11:	learn: 34.7724193	total: 58.3ms	remaining: 428ms
12:	learn: 34.3053433	total: 62.8ms	remaining: 421ms
13:	learn: 33.6561327	total: 64.1ms	remaining: 394ms
14:	learn: 33.0134042	total: 68.3ms	remaining: 387ms
15:	learn: 32.4483300	total: 72.8ms	remaining: 382ms
16:	learn: 31.8581144	total: 77.2ms	remaining: 377ms
17:	learn: 31.2858301	total: 82.4ms	remaining: 375ms
18:	learn: 30.8483018	total: 87.3ms	remaining: 372ms
19:	learn: 30.4174622	total: 91.7ms	remaining: 367ms
20:	learn: 29.8994411	total: 96.1ms	remaining: 362ms
21:	learn: 29.5045355	total: 101ms	remaining: 360ms
22:	learn: 28.9923519	total: 107ms	remaining: 357ms
23:	learn: 28.4255717	total: 111ms	remaining: 353ms
24:	learn: 28.0283139	total: 117ms	remaining: 350ms
25:	learn: 27.7434814	total: 122ms	remaining: 348ms
26:	learn: 27.2770731	total: 128ms	remaining: 345ms
27:	learn: 26.8928270	total: 133ms	remaining: 342ms
28:	learn: 26.4282671	total: 138ms	remaining: 337ms
29:	learn: 26.0272764	total: 143ms	remaining: 333ms
30:	learn: 25.7579312	total: 149ms	remaining: 332ms
31:	learn: 25.4542434	total: 157ms	remaining: 333ms
32:	learn: 25.1232564	total: 164ms	remaining: 333ms
33:	learn: 24.8110795	total: 172ms	remaining: 334ms
34:	learn: 24.5077579	total: 180ms	remaining: 334ms
35:	learn: 24.1909000	total: 185ms	remaining: 329ms
36:	learn: 23.8719468	total: 191ms	remaining: 324ms
37:	learn: 23.5764366	total: 192ms	remaining: 314ms
38:	learn: 23.3468086	total: 198ms	remaining: 309ms
39:	learn: 23.0908771	total: 203ms	remaining: 305ms
40:	learn: 22.8580876	total: 209ms	remaining: 301ms
41:	learn: 22.6060825	total: 215ms	remaining: 297ms
42:	learn: 22.4125407	total: 220ms	remaining: 292ms
43:	learn: 22.1990617	total: 225ms	remaining: 287ms
44:	learn: 21.9716164	total: 230ms	remaining: 282ms
45:	learn: 21.8360935	total: 236ms	remaining: 277ms
46:	learn: 21.6169256	total: 241ms	remaining: 272ms
47:	learn: 21.4620612	total: 246ms	remaining: 267ms
48:	learn: 21.2894194	total: 252ms	remaining: 262ms
49:	learn: 21.1066266	total: 258ms	remaining: 258ms
50:	learn: 20.9484898	total: 263ms	remaining: 253ms
51:	learn: 20.7195338	total: 268ms	remaining: 247ms
52:	learn: 20.4899740	total: 272ms	remaining: 241ms
53:	learn: 20.3356583	total: 277ms	remaining: 236ms
54:	learn: 20.0754393	total: 282ms	remaining: 231ms
55:	learn: 19.9199159	total: 286ms	remaining: 225ms
56:	learn: 19.7761128	total: 291ms	remaining: 220ms
57:	learn: 19.6533060	total: 296ms	remaining: 214ms
58:	learn: 19.5113942	total: 301ms	remaining: 209ms
59:	learn: 19.3985022	total: 305ms	remaining: 204ms
60:	learn: 19.2683443	total: 310ms	remaining: 198ms
61:	learn: 19.1460824	total: 315ms	remaining: 193ms
62:	learn: 19.0042655	total: 320ms	remaining: 188ms
63:	learn: 18.8720873	total: 326ms	remaining: 183ms
64:	learn: 18.7183888	total: 331ms	remaining: 178ms
65:	learn: 18.5472360	total: 336ms	remaining: 173ms
66:	learn: 18.3976642	total: 341ms	remaining: 168ms
67:	learn: 18.2282851	total: 346ms	remaining: 163ms
68:	learn: 18.1469157	total: 355ms	remaining: 160ms
69:	learn: 18.0649494	total: 363ms	remaining: 156ms
70:	learn: 17.9485405	total: 370ms	remaining: 151ms
71:	learn: 17.8460261	total: 375ms	remaining: 146ms
72:	learn: 17.7679843	total: 382ms	remaining: 141ms
73:	learn: 17.5989290	total: 387ms	remaining: 136ms
74:	learn: 17.4381322	total: 391ms	remaining: 130ms
75:	learn: 17.3370886	total: 396ms	remaining: 125ms
76:	learn: 17.2675308	total: 400ms	remaining: 120ms
77:	learn: 17.1946430	total: 405ms	remaining: 114ms
78:	learn: 17.0923725	total: 409ms	remaining: 109ms
79:	learn: 17.0537265	total: 414ms	remaining: 103ms
80:	learn: 16.9456831	total: 418ms	remaining: 98ms
81:	learn: 16.8457353	total: 422ms	remaining: 92.7ms
82:	learn: 16.7469310	total: 427ms	remaining: 87.4ms
83:	learn: 16.6679953	total: 432ms	remaining: 82.2ms
84:	learn: 16.6274189	total: 436ms	remaining: 77ms
85:	learn: 16.5516530	total: 440ms	remaining: 71.7ms
86:	learn: 16.4886066	total: 445ms	remaining: 66.5ms
87:	learn: 16.3947859	total: 449ms	remaining: 61.3ms
88:	learn: 16.3406495	total: 454ms	remaining: 56.1ms
89:	learn: 16.3019195	total: 458ms	remaining: 50.9ms
90:	learn: 16.1860681	total: 463ms	remaining: 45.8ms
91:	learn: 16.1282812	total: 467ms	remaining: 40.6ms
92:	learn: 16.0303652	total: 472ms	remaining: 35.5ms
93:	learn: 15.9561692	total: 476ms	remaining: 30.4ms
94:	learn: 15.8733994	total: 481ms	remaining: 25.3ms
95:	learn: 15.8108833	total: 486ms	remaining: 20.2ms
96:	learn: 15.7606004	total: 490ms	remaining: 15.2ms
97:	learn: 15.6984664	total: 495ms	remaining: 10.1ms
98:	learn: 15.6223632	total: 500ms	remaining: 5.05ms
99:	learn: 15.5671136	total: 505ms	remaining: 0us
0:	learn: 46.4788614	total: 2.02ms	remaining: 200ms
1:	learn: 45.7608372	total: 8.65ms	remaining: 424ms
2:	learn: 44.8825004	total: 16.2ms	remaining: 523ms
3:	learn: 44.0362738	total: 25.3ms	remaining: 608ms
4:	learn: 43.2086374	total: 32.1ms	remaining: 610ms
5:	learn: 42.5835773	total: 39.6ms	remaining: 620ms
6:	learn: 41.9673269	total: 44.8ms	remaining: 595ms
7:	learn: 41.4748717	total: 49.9ms	remaining: 574ms
8:	learn: 40.7129183	total: 55ms	remaining: 556ms
9:	learn: 39.8900884	total: 60.6ms	remaining: 545ms
10:	learn: 39.4142193	total: 65.8ms	remaining: 533ms
11:	learn: 38.8645613	total: 70.7ms	remaining: 518ms
12:	learn: 38.2394731	total: 87.4ms	remaining: 585ms
13:	learn: 37.6834515	total: 92.5ms	remaining: 568ms
14:	learn: 37.0673507	total: 98ms	remaining: 555ms
15:	learn: 36.4728340	total: 104ms	remaining: 546ms
16:	learn: 36.0489086	total: 109ms	remaining: 530ms
17:	learn: 35.4744141	total: 113ms	remaining: 515ms
18:	learn: 35.0106021	total: 118ms	remaining: 501ms
19:	learn: 34.5586053	total: 122ms	remaining: 488ms
20:	learn: 34.1308223	total: 126ms	remaining: 476ms
21:	learn: 33.7701450	total: 131ms	remaining: 465ms
22:	learn: 33.4425444	total: 135ms	remaining: 453ms
23:	learn: 33.0296412	total: 140ms	remaining: 443ms
24:	learn: 32.6359803	total: 144ms	remaining: 433ms
25:	learn: 32.1846182	total: 149ms	remaining: 423ms
26:	learn: 31.7620230	total: 153ms	remaining: 413ms
27:	learn: 31.4669337	total: 157ms	remaining: 404ms
28:	learn: 31.0792062	total: 161ms	remaining: 395ms
29:	learn: 30.7970537	total: 166ms	remaining: 386ms
30:	learn: 30.4952215	total: 170ms	remaining: 378ms
31:	learn: 30.2845344	total: 174ms	remaining: 369ms
32:	learn: 29.9592732	total: 178ms	remaining: 362ms
33:	learn: 29.6798596	total: 182ms	remaining: 354ms
34:	learn: 29.3368905	total: 187ms	remaining: 347ms
35:	learn: 29.0621238	total: 191ms	remaining: 340ms
36:	learn: 28.6445375	total: 196ms	remaining: 334ms
37:	learn: 28.2418096	total: 200ms	remaining: 327ms
38:	learn: 27.9495390	total: 204ms	remaining: 320ms
39:	learn: 27.6958160	total: 209ms	remaining: 314ms
40:	learn: 27.4811189	total: 214ms	remaining: 308ms
41:	learn: 27.1494420	total: 218ms	remaining: 302ms
42:	learn: 26.8388873	total: 223ms	remaining: 296ms
43:	learn: 26.5721300	total: 228ms	remaining: 290ms
44:	learn: 26.3384738	total: 236ms	remaining: 288ms
45:	learn: 26.1894781	total: 243ms	remaining: 285ms
46:	learn: 25.9580198	total: 251ms	remaining: 283ms
47:	learn: 25.7897985	total: 256ms	remaining: 278ms
48:	learn: 25.6000271	total: 262ms	remaining: 273ms
49:	learn: 25.4130873	total: 268ms	remaining: 268ms
50:	learn: 25.1699061	total: 275ms	remaining: 264ms
51:	learn: 24.9324449	total: 280ms	remaining: 259ms
52:	learn: 24.7729152	total: 285ms	remaining: 253ms
53:	learn: 24.5026563	total: 290ms	remaining: 247ms
54:	learn: 24.2332627	total: 295ms	remaining: 241ms
55:	learn: 23.9611984	total: 299ms	remaining: 235ms
56:	learn: 23.7862603	total: 304ms	remaining: 229ms
57:	learn: 23.6318154	total: 308ms	remaining: 223ms
58:	learn: 23.4443306	total: 312ms	remaining: 217ms
59:	learn: 23.2581425	total: 317ms	remaining: 211ms
60:	learn: 23.0549901	total: 322ms	remaining: 206ms
61:	learn: 22.8666218	total: 326ms	remaining: 200ms
62:	learn: 22.6956739	total: 330ms	remaining: 194ms
63:	learn: 22.5068544	total: 335ms	remaining: 188ms
64:	learn: 22.1859147	total: 339ms	remaining: 183ms
65:	learn: 22.0462043	total: 343ms	remaining: 177ms
66:	learn: 21.9329563	total: 347ms	remaining: 171ms
67:	learn: 21.8029736	total: 351ms	remaining: 165ms
68:	learn: 21.6861091	total: 356ms	remaining: 160ms
69:	learn: 21.4838140	total: 360ms	remaining: 154ms
70:	learn: 21.3548921	total: 364ms	remaining: 149ms
71:	learn: 21.2244517	total: 369ms	remaining: 143ms
72:	learn: 21.0702958	total: 373ms	remaining: 138ms
73:	learn: 20.9224662	total: 378ms	remaining: 133ms
74:	learn: 20.8150357	total: 382ms	remaining: 127ms
75:	learn: 20.6962739	total: 386ms	remaining: 122ms
76:	learn: 20.5809258	total: 391ms	remaining: 117ms
77:	learn: 20.4735470	total: 395ms	remaining: 111ms
78:	learn: 20.3778167	total: 399ms	remaining: 106ms
79:	learn: 20.2211268	total: 404ms	remaining: 101ms
80:	learn: 20.1478678	total: 408ms	remaining: 95.8ms
81:	learn: 20.1032967	total: 412ms	remaining: 90.5ms
82:	learn: 19.9236300	total: 417ms	remaining: 85.4ms
83:	learn: 19.8151745	total: 421ms	remaining: 80.3ms
84:	learn: 19.7099856	total: 426ms	remaining: 75.1ms
85:	learn: 19.6264833	total: 430ms	remaining: 70ms
86:	learn: 19.4916361	total: 435ms	remaining: 64.9ms
87:	learn: 19.4050529	total: 439ms	remaining: 59.9ms
88:	learn: 19.2547065	total: 444ms	remaining: 54.9ms
89:	learn: 19.1610225	total: 449ms	remaining: 49.9ms
90:	learn: 19.0898958	total: 453ms	remaining: 44.8ms
91:	learn: 19.0489664	total: 458ms	remaining: 39.9ms
92:	learn: 18.9206240	total: 463ms	remaining: 34.9ms
93:	learn: 18.8636239	total: 470ms	remaining: 30ms
94:	learn: 18.8126187	total: 478ms	remaining: 25.1ms
95:	learn: 18.7579275	total: 487ms	remaining: 20.3ms
96:	learn: 18.6382753	total: 493ms	remaining: 15.3ms
97:	learn: 18.5397334	total: 501ms	remaining: 10.2ms
98:	learn: 18.4375951	total: 506ms	remaining: 5.11ms
99:	learn: 18.4033755	total: 511ms	remaining: 0us
0:	learn: 46.1068821	total: 1.9ms	remaining: 188ms
1:	learn: 45.3970261	total: 6.33ms	remaining: 310ms
2:	learn: 44.8732696	total: 10.6ms	remaining: 342ms
3:	learn: 44.1290184	total: 14.6ms	remaining: 350ms
4:	learn: 43.3290271	total: 18.8ms	remaining: 358ms
5:	learn: 42.7069090	total: 23.1ms	remaining: 362ms
6:	learn: 42.0572971	total: 27.4ms	remaining: 364ms
7:	learn: 41.4797924	total: 31.5ms	remaining: 362ms
8:	learn: 41.0023122	total: 35.9ms	remaining: 363ms
9:	learn: 40.5330570	total: 40.3ms	remaining: 363ms
10:	learn: 39.9726545	total: 44.5ms	remaining: 360ms
11:	learn: 39.3044053	total: 48.6ms	remaining: 357ms
12:	learn: 38.8169735	total: 52.5ms	remaining: 351ms
13:	learn: 38.2458761	total: 56.7ms	remaining: 349ms
14:	learn: 37.6280321	total: 61.2ms	remaining: 347ms
15:	learn: 37.0800610	total: 65.4ms	remaining: 343ms
16:	learn: 36.5489363	total: 70.6ms	remaining: 345ms
17:	learn: 36.0981456	total: 75.3ms	remaining: 343ms
18:	learn: 35.6956274	total: 79.8ms	remaining: 340ms
19:	learn: 35.1471999	total: 85ms	remaining: 340ms
20:	learn: 34.6235408	total: 89.7ms	remaining: 338ms
21:	learn: 34.1987018	total: 94.8ms	remaining: 336ms
22:	learn: 33.8985062	total: 99.7ms	remaining: 334ms
23:	learn: 33.3869017	total: 104ms	remaining: 330ms
24:	learn: 32.9100550	total: 109ms	remaining: 327ms
25:	learn: 32.4156208	total: 114ms	remaining: 324ms
26:	learn: 31.9320493	total: 123ms	remaining: 332ms
27:	learn: 31.5711468	total: 130ms	remaining: 335ms
28:	learn: 31.2404433	total: 137ms	remaining: 335ms
29:	learn: 30.8807946	total: 142ms	remaining: 331ms
30:	learn: 30.5948438	total: 147ms	remaining: 328ms
31:	learn: 30.3885560	total: 152ms	remaining: 322ms
32:	learn: 30.0625101	total: 156ms	remaining: 317ms
33:	learn: 29.9113114	total: 160ms	remaining: 311ms
34:	learn: 29.6983470	total: 165ms	remaining: 306ms
35:	learn: 29.4775849	total: 169ms	remaining: 301ms
36:	learn: 29.0538055	total: 173ms	remaining: 295ms
37:	learn: 28.6792318	total: 178ms	remaining: 290ms
38:	learn: 28.4231383	total: 182ms	remaining: 285ms
39:	learn: 28.1078565	total: 186ms	remaining: 279ms
40:	learn: 27.9079179	total: 190ms	remaining: 274ms
41:	learn: 27.6721506	total: 195ms	remaining: 269ms
42:	learn: 27.4228033	total: 199ms	remaining: 264ms
43:	learn: 27.1740534	total: 204ms	remaining: 259ms
44:	learn: 26.8584071	total: 208ms	remaining: 254ms
45:	learn: 26.6902083	total: 213ms	remaining: 250ms
46:	learn: 26.4855335	total: 217ms	remaining: 244ms
47:	learn: 26.2730822	total: 221ms	remaining: 239ms
48:	learn: 26.1058689	total: 225ms	remaining: 235ms
49:	learn: 25.8587318	total: 230ms	remaining: 230ms
50:	learn: 25.7558005	total: 234ms	remaining: 225ms
51:	learn: 25.5846925	total: 238ms	remaining: 220ms
52:	learn: 25.4249887	total: 242ms	remaining: 215ms
53:	learn: 25.1911054	total: 246ms	remaining: 210ms
54:	learn: 25.0544755	total: 251ms	remaining: 205ms
55:	learn: 24.8874006	total: 256ms	remaining: 201ms
56:	learn: 24.7736279	total: 260ms	remaining: 196ms
57:	learn: 24.6156255	total: 264ms	remaining: 192ms
58:	learn: 24.3962421	total: 269ms	remaining: 187ms
59:	learn: 24.2685129	total: 273ms	remaining: 182ms
60:	learn: 24.1874096	total: 277ms	remaining: 177ms
61:	learn: 24.0394287	total: 282ms	remaining: 173ms
62:	learn: 23.9281768	total: 286ms	remaining: 168ms
63:	learn: 23.7423900	total: 290ms	remaining: 163ms
64:	learn: 23.6015209	total: 295ms	remaining: 159ms
65:	learn: 23.4677943	total: 299ms	remaining: 154ms
66:	learn: 23.3215256	total: 304ms	remaining: 150ms
67:	learn: 23.1869360	total: 309ms	remaining: 145ms
68:	learn: 22.9691180	total: 314ms	remaining: 141ms
69:	learn: 22.7531657	total: 318ms	remaining: 136ms
70:	learn: 22.6133477	total: 323ms	remaining: 132ms
71:	learn: 22.3452758	total: 328ms	remaining: 127ms
72:	learn: 22.2065350	total: 336ms	remaining: 124ms
73:	learn: 22.1071155	total: 343ms	remaining: 120ms
74:	learn: 21.9740686	total: 352ms	remaining: 117ms
75:	learn: 21.8892033	total: 358ms	remaining: 113ms
76:	learn: 21.8267882	total: 364ms	remaining: 109ms
77:	learn: 21.7423479	total: 370ms	remaining: 104ms
78:	learn: 21.6242075	total: 376ms	remaining: 99.9ms
79:	learn: 21.5016910	total: 381ms	remaining: 95.3ms
80:	learn: 21.4806623	total: 382ms	remaining: 89.6ms
81:	learn: 21.3166637	total: 387ms	remaining: 85ms
82:	learn: 21.2222534	total: 392ms	remaining: 80.4ms
83:	learn: 21.1535708	total: 397ms	remaining: 75.7ms
84:	learn: 21.0858902	total: 402ms	remaining: 71ms
85:	learn: 20.9206003	total: 408ms	remaining: 66.4ms
86:	learn: 20.8674695	total: 413ms	remaining: 61.7ms
87:	learn: 20.8089875	total: 417ms	remaining: 56.9ms
88:	learn: 20.7085401	total: 423ms	remaining: 52.3ms
89:	learn: 20.5513468	total: 428ms	remaining: 47.6ms
90:	learn: 20.4586742	total: 433ms	remaining: 42.9ms
91:	learn: 20.3932149	total: 438ms	remaining: 38.1ms
92:	learn: 20.3000895	total: 442ms	remaining: 33.3ms
93:	learn: 20.2254009	total: 446ms	remaining: 28.5ms
94:	learn: 20.1750050	total: 451ms	remaining: 23.7ms
95:	learn: 20.0715579	total: 455ms	remaining: 19ms
96:	learn: 19.9920082	total: 459ms	remaining: 14.2ms
97:	learn: 19.9664401	total: 463ms	remaining: 9.46ms
98:	learn: 19.8689673	total: 468ms	remaining: 4.72ms
99:	learn: 19.7537356	total: 472ms	remaining: 0us
0:	learn: 46.8832143	total: 4.96ms	remaining: 491ms
1:	learn: 45.8700349	total: 9.73ms	remaining: 477ms
2:	learn: 45.0546867	total: 18.7ms	remaining: 605ms
3:	learn: 44.2829439	total: 26.4ms	remaining: 633ms
4:	learn: 43.4609042	total: 33.1ms	remaining: 630ms
5:	learn: 42.6754991	total: 38.4ms	remaining: 602ms
6:	learn: 41.9234935	total: 44.1ms	remaining: 586ms
7:	learn: 41.3987518	total: 48.3ms	remaining: 555ms
8:	learn: 40.6625066	total: 52.6ms	remaining: 532ms
9:	learn: 40.0029561	total: 56.7ms	remaining: 510ms
10:	learn: 39.3897033	total: 61.4ms	remaining: 496ms
11:	learn: 38.7741453	total: 66.2ms	remaining: 485ms
12:	learn: 38.1201100	total: 70.6ms	remaining: 472ms
13:	learn: 37.5129454	total: 75ms	remaining: 461ms
14:	learn: 37.2062206	total: 79.5ms	remaining: 451ms
15:	learn: 36.6831741	total: 83.7ms	remaining: 439ms
16:	learn: 36.2902788	total: 88ms	remaining: 430ms
17:	learn: 35.7639930	total: 92.7ms	remaining: 422ms
18:	learn: 35.2580953	total: 96.9ms	remaining: 413ms
19:	learn: 34.7809739	total: 102ms	remaining: 406ms
20:	learn: 34.1330433	total: 106ms	remaining: 400ms
21:	learn: 33.7302219	total: 111ms	remaining: 392ms
22:	learn: 33.3502495	total: 115ms	remaining: 386ms
23:	learn: 33.0067804	total: 119ms	remaining: 378ms
24:	learn: 32.6897855	total: 124ms	remaining: 373ms
25:	learn: 32.4361119	total: 129ms	remaining: 366ms
26:	learn: 32.1278981	total: 133ms	remaining: 360ms
27:	learn: 31.7863721	total: 138ms	remaining: 354ms
28:	learn: 31.4791450	total: 142ms	remaining: 348ms
29:	learn: 31.1760161	total: 147ms	remaining: 342ms
30:	learn: 30.9238888	total: 151ms	remaining: 336ms
31:	learn: 30.5500905	total: 156ms	remaining: 331ms
32:	learn: 30.3078126	total: 160ms	remaining: 325ms
33:	learn: 30.0480921	total: 164ms	remaining: 319ms
34:	learn: 29.8623884	total: 169ms	remaining: 313ms
35:	learn: 29.5991038	total: 173ms	remaining: 308ms
36:	learn: 29.4061161	total: 177ms	remaining: 302ms
37:	learn: 29.0269515	total: 182ms	remaining: 296ms
38:	learn: 28.8224959	total: 186ms	remaining: 291ms
39:	learn: 28.6417843	total: 190ms	remaining: 285ms
40:	learn: 28.3633368	total: 194ms	remaining: 280ms
41:	learn: 28.0200246	total: 199ms	remaining: 274ms
42:	learn: 27.7221254	total: 203ms	remaining: 269ms
43:	learn: 27.5105818	total: 208ms	remaining: 264ms
44:	learn: 27.3551010	total: 213ms	remaining: 260ms
45:	learn: 27.0787522	total: 218ms	remaining: 255ms
46:	learn: 26.8726317	total: 222ms	remaining: 251ms
47:	learn: 26.8003277	total: 227ms	remaining: 246ms
48:	learn: 26.5493785	total: 232ms	remaining: 241ms
49:	learn: 26.3699550	total: 237ms	remaining: 237ms
50:	learn: 26.1519631	total: 242ms	remaining: 232ms
51:	learn: 25.9277325	total: 246ms	remaining: 227ms
52:	learn: 25.7286035	total: 251ms	remaining: 222ms
53:	learn: 25.4999193	total: 256ms	remaining: 218ms
54:	learn: 25.3434703	total: 262ms	remaining: 214ms
55:	learn: 25.1497545	total: 269ms	remaining: 212ms
56:	learn: 24.9498143	total: 279ms	remaining: 210ms
57:	learn: 24.6509390	total: 286ms	remaining: 207ms
58:	learn: 24.5576144	total: 294ms	remaining: 204ms
59:	learn: 24.4265144	total: 299ms	remaining: 199ms
60:	learn: 24.3100706	total: 317ms	remaining: 203ms
61:	learn: 24.1727952	total: 322ms	remaining: 198ms
62:	learn: 24.0478558	total: 328ms	remaining: 192ms
63:	learn: 23.9124577	total: 332ms	remaining: 187ms
64:	learn: 23.7703718	total: 336ms	remaining: 181ms
65:	learn: 23.5975027	total: 341ms	remaining: 176ms
66:	learn: 23.4318077	total: 346ms	remaining: 170ms
67:	learn: 23.3099691	total: 351ms	remaining: 165ms
68:	learn: 23.1947982	total: 355ms	remaining: 160ms
69:	learn: 23.0260174	total: 360ms	remaining: 154ms
70:	learn: 22.8523100	total: 365ms	remaining: 149ms
71:	learn: 22.8028534	total: 371ms	remaining: 144ms
72:	learn: 22.6880658	total: 376ms	remaining: 139ms
73:	learn: 22.5956809	total: 382ms	remaining: 134ms
74:	learn: 22.4692932	total: 387ms	remaining: 129ms
75:	learn: 22.2863504	total: 392ms	remaining: 124ms
76:	learn: 22.1911237	total: 397ms	remaining: 119ms
77:	learn: 22.1098391	total: 402ms	remaining: 113ms
78:	learn: 22.0182738	total: 406ms	remaining: 108ms
79:	learn: 21.9306746	total: 411ms	remaining: 103ms
80:	learn: 21.7508233	total: 416ms	remaining: 97.5ms
81:	learn: 21.7108446	total: 421ms	remaining: 92.3ms
82:	learn: 21.5931852	total: 427ms	remaining: 87.4ms
83:	learn: 21.4480361	total: 432ms	remaining: 82.2ms
84:	learn: 21.3092119	total: 437ms	remaining: 77ms
85:	learn: 21.2605557	total: 442ms	remaining: 71.9ms
86:	learn: 21.1123597	total: 447ms	remaining: 66.8ms
87:	learn: 21.0115642	total: 452ms	remaining: 61.7ms
88:	learn: 20.9389040	total: 457ms	remaining: 56.5ms
89:	learn: 20.8300300	total: 462ms	remaining: 51.3ms
90:	learn: 20.7159733	total: 467ms	remaining: 46.2ms
91:	learn: 20.6282090	total: 472ms	remaining: 41ms
92:	learn: 20.5164529	total: 481ms	remaining: 36.2ms
93:	learn: 20.4692032	total: 490ms	remaining: 31.3ms
94:	learn: 20.3768451	total: 496ms	remaining: 26.1ms
95:	learn: 20.2808056	total: 502ms	remaining: 20.9ms
96:	learn: 20.2082089	total: 507ms	remaining: 15.7ms
97:	learn: 20.1698768	total: 511ms	remaining: 10.4ms
98:	learn: 20.1048816	total: 516ms	remaining: 5.21ms
99:	learn: 20.0086159	total: 520ms	remaining: 0us
0:	learn: 27.3776612	total: 19.6ms	remaining: 1.94s
1:	learn: 26.7619003	total: 37.4ms	remaining: 1.83s
2:	learn: 26.0057626	total: 55.8ms	remaining: 1.8s
3:	learn: 25.4280982	total: 74.4ms	remaining: 1.78s
4:	learn: 24.8347609	total: 92ms	remaining: 1.75s
5:	learn: 24.2526574	total: 112ms	remaining: 1.75s
6:	learn: 23.7478806	total: 133ms	remaining: 1.76s
7:	learn: 23.2677666	total: 161ms	remaining: 1.85s
8:	learn: 22.7564310	total: 184ms	remaining: 1.86s
9:	learn: 22.2873770	total: 206ms	remaining: 1.85s
10:	learn: 21.8088174	total: 227ms	remaining: 1.83s
11:	learn: 21.4086875	total: 248ms	remaining: 1.82s
12:	learn: 20.9489217	total: 269ms	remaining: 1.8s
13:	learn: 20.4585233	total: 288ms	remaining: 1.77s
14:	learn: 20.0177760	total: 311ms	remaining: 1.76s
15:	learn: 19.5981890	total: 333ms	remaining: 1.75s
16:	learn: 19.2041885	total: 358ms	remaining: 1.75s
17:	learn: 18.8422550	total: 376ms	remaining: 1.71s
18:	learn: 18.4774037	total: 396ms	remaining: 1.69s
19:	learn: 18.0931699	total: 414ms	remaining: 1.66s
20:	learn: 17.6856423	total: 434ms	remaining: 1.63s
21:	learn: 17.3394010	total: 454ms	remaining: 1.61s
22:	learn: 17.0165204	total: 474ms	remaining: 1.59s
23:	learn: 16.7728230	total: 494ms	remaining: 1.56s
24:	learn: 16.5020155	total: 515ms	remaining: 1.55s
25:	learn: 16.2110813	total: 541ms	remaining: 1.54s
26:	learn: 15.9439416	total: 564ms	remaining: 1.52s
27:	learn: 15.6605702	total: 585ms	remaining: 1.5s
28:	learn: 15.4180978	total: 608ms	remaining: 1.49s
29:	learn: 15.1463921	total: 631ms	remaining: 1.47s
30:	learn: 14.8961946	total: 654ms	remaining: 1.45s
31:	learn: 14.6763296	total: 678ms	remaining: 1.44s
32:	learn: 14.4161484	total: 701ms	remaining: 1.42s
33:	learn: 14.1748686	total: 723ms	remaining: 1.4s
34:	learn: 13.9722494	total: 745ms	remaining: 1.38s
35:	learn: 13.7632896	total: 768ms	remaining: 1.36s
36:	learn: 13.5572592	total: 795ms	remaining: 1.35s
37:	learn: 13.3896577	total: 815ms	remaining: 1.33s
38:	learn: 13.2796441	total: 834ms	remaining: 1.3s
39:	learn: 13.0896679	total: 855ms	remaining: 1.28s
40:	learn: 12.8898238	total: 876ms	remaining: 1.26s
41:	learn: 12.6824069	total: 896ms	remaining: 1.24s
42:	learn: 12.5459667	total: 916ms	remaining: 1.21s
43:	learn: 12.3859203	total: 936ms	remaining: 1.19s
44:	learn: 12.2099364	total: 957ms	remaining: 1.17s
45:	learn: 12.0649044	total: 978ms	remaining: 1.15s
46:	learn: 11.8934147	total: 1.01s	remaining: 1.13s
47:	learn: 11.7212144	total: 1.03s	remaining: 1.11s
48:	learn: 11.5585360	total: 1.05s	remaining: 1.09s
49:	learn: 11.4204354	total: 1.07s	remaining: 1.07s
50:	learn: 11.3264427	total: 1.09s	remaining: 1.05s
51:	learn: 11.2063486	total: 1.11s	remaining: 1.03s
52:	learn: 11.0712206	total: 1.13s	remaining: 1s
53:	learn: 10.9205088	total: 1.15s	remaining: 982ms
54:	learn: 10.8155412	total: 1.17s	remaining: 959ms
55:	learn: 10.7286854	total: 1.19s	remaining: 936ms
56:	learn: 10.6088466	total: 1.22s	remaining: 919ms
57:	learn: 10.4999885	total: 1.24s	remaining: 899ms
58:	learn: 10.4022194	total: 1.26s	remaining: 876ms
59:	learn: 10.3147130	total: 1.28s	remaining: 853ms
60:	learn: 10.2011489	total: 1.3s	remaining: 831ms
61:	learn: 10.1094372	total: 1.32s	remaining: 808ms
62:	learn: 10.0248970	total: 1.34s	remaining: 785ms
63:	learn: 9.9192710	total: 1.36s	remaining: 763ms
64:	learn: 9.8577360	total: 1.38s	remaining: 742ms
65:	learn: 9.7737103	total: 1.4s	remaining: 721ms
66:	learn: 9.6706617	total: 1.42s	remaining: 700ms
67:	learn: 9.6042727	total: 1.45s	remaining: 683ms
68:	learn: 9.5355377	total: 1.47s	remaining: 661ms
69:	learn: 9.4615216	total: 1.49s	remaining: 640ms
70:	learn: 9.3702045	total: 1.51s	remaining: 618ms
71:	learn: 9.3035392	total: 1.54s	remaining: 598ms
72:	learn: 9.2322686	total: 1.55s	remaining: 575ms
73:	learn: 9.1431916	total: 1.57s	remaining: 553ms
74:	learn: 9.0869466	total: 1.59s	remaining: 531ms
75:	learn: 9.0117390	total: 1.61s	remaining: 510ms
76:	learn: 8.9580443	total: 1.64s	remaining: 489ms
77:	learn: 8.8649939	total: 1.66s	remaining: 468ms
78:	learn: 8.7792713	total: 1.68s	remaining: 447ms
79:	learn: 8.7164606	total: 1.7s	remaining: 425ms
80:	learn: 8.6340559	total: 1.72s	remaining: 404ms
81:	learn: 8.5697104	total: 1.74s	remaining: 382ms
82:	learn: 8.5273758	total: 1.76s	remaining: 361ms
83:	learn: 8.4394788	total: 1.78s	remaining: 339ms
84:	learn: 8.3672415	total: 1.8s	remaining: 318ms
85:	learn: 8.2813444	total: 1.82s	remaining: 297ms
86:	learn: 8.1994983	total: 1.84s	remaining: 275ms
87:	learn: 8.1003577	total: 1.88s	remaining: 256ms
88:	learn: 8.0501976	total: 1.9s	remaining: 235ms
89:	learn: 7.9718830	total: 1.93s	remaining: 214ms
90:	learn: 7.9114534	total: 1.95s	remaining: 193ms
91:	learn: 7.8319856	total: 1.97s	remaining: 171ms
92:	learn: 7.7731246	total: 1.99s	remaining: 150ms
93:	learn: 7.7165850	total: 2.01s	remaining: 128ms
94:	learn: 7.6448498	total: 2.03s	remaining: 107ms
95:	learn: 7.5709919	total: 2.05s	remaining: 85.6ms
96:	learn: 7.5184082	total: 2.08s	remaining: 64.4ms
97:	learn: 7.4786866	total: 2.11s	remaining: 43ms
98:	learn: 7.4301201	total: 2.13s	remaining: 21.5ms
99:	learn: 7.3416932	total: 2.17s	remaining: 0us
0:	learn: 42.6391731	total: 26.9ms	remaining: 2.66s
1:	learn: 41.2755994	total: 50.5ms	remaining: 2.47s
2:	learn: 40.1418308	total: 82.1ms	remaining: 2.65s
3:	learn: 38.9707156	total: 118ms	remaining: 2.83s
4:	learn: 37.8723622	total: 141ms	remaining: 2.69s
5:	learn: 36.6981834	total: 165ms	remaining: 2.58s
6:	learn: 35.6210108	total: 192ms	remaining: 2.54s
7:	learn: 34.5154078	total: 215ms	remaining: 2.48s
8:	learn: 33.4581011	total: 237ms	remaining: 2.39s
9:	learn: 32.5872455	total: 260ms	remaining: 2.34s
10:	learn: 31.6311510	total: 290ms	remaining: 2.35s
11:	learn: 30.8222401	total: 316ms	remaining: 2.32s
12:	learn: 29.9305192	total: 336ms	remaining: 2.25s
13:	learn: 29.0742133	total: 358ms	remaining: 2.2s
14:	learn: 28.3687544	total: 379ms	remaining: 2.15s
15:	learn: 27.5730558	total: 401ms	remaining: 2.1s
16:	learn: 26.9376082	total: 420ms	remaining: 2.05s
17:	learn: 26.2254949	total: 440ms	remaining: 2s
18:	learn: 25.5974939	total: 459ms	remaining: 1.96s
19:	learn: 25.0097187	total: 483ms	remaining: 1.93s
20:	learn: 24.3722243	total: 508ms	remaining: 1.91s
21:	learn: 23.8249140	total: 541ms	remaining: 1.92s
22:	learn: 23.3953969	total: 565ms	remaining: 1.89s
23:	learn: 22.8726238	total: 589ms	remaining: 1.87s
24:	learn: 22.3407723	total: 612ms	remaining: 1.83s
25:	learn: 21.8360330	total: 635ms	remaining: 1.81s
26:	learn: 21.4050665	total: 639ms	remaining: 1.73s
27:	learn: 20.9389245	total: 661ms	remaining: 1.7s
28:	learn: 20.5166767	total: 684ms	remaining: 1.67s
29:	learn: 20.1190641	total: 709ms	remaining: 1.65s
30:	learn: 19.7189491	total: 739ms	remaining: 1.64s
31:	learn: 19.3748181	total: 762ms	remaining: 1.62s
32:	learn: 19.0116312	total: 783ms	remaining: 1.59s
33:	learn: 18.6982407	total: 805ms	remaining: 1.56s
34:	learn: 18.3109965	total: 827ms	remaining: 1.53s
35:	learn: 17.9620798	total: 848ms	remaining: 1.51s
36:	learn: 17.6396740	total: 869ms	remaining: 1.48s
37:	learn: 17.3596962	total: 889ms	remaining: 1.45s
38:	learn: 17.0107107	total: 910ms	remaining: 1.42s
39:	learn: 16.7000770	total: 935ms	remaining: 1.4s
40:	learn: 16.4406609	total: 996ms	remaining: 1.43s
41:	learn: 16.2482533	total: 1.04s	remaining: 1.43s
42:	learn: 16.0039366	total: 1.08s	remaining: 1.44s
43:	learn: 15.7538572	total: 1.11s	remaining: 1.42s
44:	learn: 15.5095380	total: 1.15s	remaining: 1.4s
45:	learn: 15.2678319	total: 1.18s	remaining: 1.39s
46:	learn: 15.0494495	total: 1.2s	remaining: 1.35s
47:	learn: 14.8347400	total: 1.22s	remaining: 1.32s
48:	learn: 14.6035398	total: 1.25s	remaining: 1.29s
49:	learn: 14.3913639	total: 1.27s	remaining: 1.27s
50:	learn: 14.1928022	total: 1.29s	remaining: 1.24s
51:	learn: 13.9985580	total: 1.31s	remaining: 1.21s
52:	learn: 13.8322220	total: 1.33s	remaining: 1.18s
53:	learn: 13.6455937	total: 1.35s	remaining: 1.15s
54:	learn: 13.4402019	total: 1.38s	remaining: 1.13s
55:	learn: 13.2899163	total: 1.42s	remaining: 1.12s
56:	learn: 13.1694614	total: 1.45s	remaining: 1.09s
57:	learn: 13.0722892	total: 1.47s	remaining: 1.06s
58:	learn: 12.9065251	total: 1.49s	remaining: 1.03s
59:	learn: 12.6992885	total: 1.51s	remaining: 1.01s
60:	learn: 12.5384562	total: 1.54s	remaining: 982ms
61:	learn: 12.4105591	total: 1.56s	remaining: 955ms
62:	learn: 12.2952504	total: 1.58s	remaining: 930ms
63:	learn: 12.1427365	total: 1.61s	remaining: 907ms
64:	learn: 11.9954361	total: 1.64s	remaining: 884ms
65:	learn: 11.8161234	total: 1.66s	remaining: 856ms
66:	learn: 11.6849978	total: 1.68s	remaining: 830ms
67:	learn: 11.5405300	total: 1.71s	remaining: 803ms
68:	learn: 11.3806762	total: 1.73s	remaining: 776ms
69:	learn: 11.2746848	total: 1.75s	remaining: 749ms
70:	learn: 11.1518256	total: 1.77s	remaining: 722ms
71:	learn: 11.0730779	total: 1.79s	remaining: 697ms
72:	learn: 10.9736725	total: 1.81s	remaining: 671ms
73:	learn: 10.8430563	total: 1.85s	remaining: 649ms
74:	learn: 10.7142220	total: 1.87s	remaining: 624ms
75:	learn: 10.6141640	total: 1.9s	remaining: 599ms
76:	learn: 10.5264853	total: 1.92s	remaining: 573ms
77:	learn: 10.3929390	total: 1.94s	remaining: 548ms
78:	learn: 10.3163176	total: 1.97s	remaining: 523ms
79:	learn: 10.2171240	total: 1.99s	remaining: 497ms
80:	learn: 10.1381738	total: 2.01s	remaining: 472ms
81:	learn: 10.0402437	total: 2.04s	remaining: 448ms
82:	learn: 9.9223565	total: 2.06s	remaining: 423ms
83:	learn: 9.8184057	total: 2.08s	remaining: 397ms
84:	learn: 9.7221978	total: 2.1s	remaining: 371ms
85:	learn: 9.6417031	total: 2.12s	remaining: 346ms
86:	learn: 9.5593969	total: 2.14s	remaining: 320ms
87:	learn: 9.4678992	total: 2.16s	remaining: 295ms
88:	learn: 9.3855757	total: 2.19s	remaining: 270ms
89:	learn: 9.2884031	total: 2.2s	remaining: 245ms
90:	learn: 9.2099382	total: 2.23s	remaining: 220ms
91:	learn: 9.1357061	total: 2.25s	remaining: 196ms
92:	learn: 9.0690328	total: 2.28s	remaining: 172ms
93:	learn: 8.9904694	total: 2.3s	remaining: 147ms
94:	learn: 8.9256893	total: 2.33s	remaining: 123ms
95:	learn: 8.8600084	total: 2.35s	remaining: 97.9ms
96:	learn: 8.8091154	total: 2.37s	remaining: 73.3ms
97:	learn: 8.7280528	total: 2.39s	remaining: 48.8ms
98:	learn: 8.6761440	total: 2.41s	remaining: 24.4ms
99:	learn: 8.6181192	total: 2.43s	remaining: 0us
0:	learn: 45.9988128	total: 21.4ms	remaining: 2.12s
1:	learn: 44.7653841	total: 41.6ms	remaining: 2.04s
2:	learn: 43.4693688	total: 66ms	remaining: 2.13s
3:	learn: 42.2495168	total: 86.4ms	remaining: 2.07s
4:	learn: 41.2273909	total: 108ms	remaining: 2.05s
5:	learn: 40.0623352	total: 126ms	remaining: 1.98s
6:	learn: 39.0139162	total: 146ms	remaining: 1.94s
7:	learn: 37.9905503	total: 167ms	remaining: 1.92s
8:	learn: 37.1460179	total: 189ms	remaining: 1.91s
9:	learn: 36.1321769	total: 212ms	remaining: 1.91s
10:	learn: 35.2434048	total: 232ms	remaining: 1.88s
11:	learn: 34.3919476	total: 253ms	remaining: 1.85s
12:	learn: 33.5464400	total: 275ms	remaining: 1.84s
13:	learn: 32.5752711	total: 302ms	remaining: 1.86s
14:	learn: 31.8573507	total: 325ms	remaining: 1.84s
15:	learn: 31.1481980	total: 344ms	remaining: 1.8s
16:	learn: 30.4578224	total: 362ms	remaining: 1.77s
17:	learn: 29.8404841	total: 381ms	remaining: 1.74s
18:	learn: 29.1314604	total: 401ms	remaining: 1.71s
19:	learn: 28.5024706	total: 422ms	remaining: 1.69s
20:	learn: 27.9368896	total: 444ms	remaining: 1.67s
21:	learn: 27.2136491	total: 466ms	remaining: 1.65s
22:	learn: 26.6230078	total: 490ms	remaining: 1.64s
23:	learn: 26.0604635	total: 520ms	remaining: 1.65s
24:	learn: 25.6309424	total: 547ms	remaining: 1.64s
25:	learn: 25.1761698	total: 598ms	remaining: 1.7s
26:	learn: 24.6368216	total: 625ms	remaining: 1.69s
27:	learn: 24.1028972	total: 656ms	remaining: 1.69s
28:	learn: 23.3990224	total: 683ms	remaining: 1.67s
29:	learn: 22.9088559	total: 709ms	remaining: 1.65s
30:	learn: 22.4793217	total: 758ms	remaining: 1.69s
31:	learn: 22.0592669	total: 795ms	remaining: 1.69s
32:	learn: 21.6715811	total: 822ms	remaining: 1.67s
33:	learn: 21.1907911	total: 849ms	remaining: 1.65s
34:	learn: 20.8045504	total: 870ms	remaining: 1.61s
35:	learn: 20.4670784	total: 890ms	remaining: 1.58s
36:	learn: 20.0165788	total: 913ms	remaining: 1.55s
37:	learn: 19.6859173	total: 937ms	remaining: 1.53s
38:	learn: 19.3641283	total: 975ms	remaining: 1.52s
39:	learn: 19.0291194	total: 1s	remaining: 1.5s
40:	learn: 18.7204204	total: 1.03s	remaining: 1.48s
41:	learn: 18.4000101	total: 1.06s	remaining: 1.47s
42:	learn: 18.0910445	total: 1.1s	remaining: 1.45s
43:	learn: 17.8354609	total: 1.13s	remaining: 1.44s
44:	learn: 17.4982243	total: 1.16s	remaining: 1.42s
45:	learn: 17.1895897	total: 1.22s	remaining: 1.44s
46:	learn: 16.9440833	total: 1.26s	remaining: 1.42s
47:	learn: 16.6112102	total: 1.29s	remaining: 1.4s
48:	learn: 16.3320235	total: 1.33s	remaining: 1.38s
49:	learn: 16.0523610	total: 1.4s	remaining: 1.4s
50:	learn: 15.8256738	total: 1.43s	remaining: 1.37s
51:	learn: 15.5699393	total: 1.45s	remaining: 1.34s
52:	learn: 15.3531799	total: 1.47s	remaining: 1.31s
53:	learn: 15.1364230	total: 1.5s	remaining: 1.28s
54:	learn: 15.0012063	total: 1.52s	remaining: 1.25s
55:	learn: 14.7171740	total: 1.55s	remaining: 1.22s
56:	learn: 14.5897576	total: 1.55s	remaining: 1.17s
57:	learn: 14.3886878	total: 1.58s	remaining: 1.14s
58:	learn: 14.1942115	total: 1.6s	remaining: 1.11s
59:	learn: 14.0135398	total: 1.63s	remaining: 1.08s
60:	learn: 13.8118263	total: 1.65s	remaining: 1.05s
61:	learn: 13.6444047	total: 1.68s	remaining: 1.03s
62:	learn: 13.4728078	total: 1.72s	remaining: 1.01s
63:	learn: 13.3104934	total: 1.75s	remaining: 984ms
64:	learn: 13.1385144	total: 1.77s	remaining: 956ms
65:	learn: 13.0087777	total: 1.8s	remaining: 928ms
66:	learn: 12.8457835	total: 1.82s	remaining: 899ms
67:	learn: 12.6975263	total: 1.86s	remaining: 874ms
68:	learn: 12.5582839	total: 1.89s	remaining: 851ms
69:	learn: 12.4210776	total: 1.93s	remaining: 829ms
70:	learn: 12.2737286	total: 1.96s	remaining: 802ms
71:	learn: 12.1587075	total: 1.99s	remaining: 773ms
72:	learn: 12.0323022	total: 2.01s	remaining: 744ms
73:	learn: 11.8667900	total: 2.04s	remaining: 715ms
74:	learn: 11.6990385	total: 2.06s	remaining: 687ms
75:	learn: 11.5755058	total: 2.09s	remaining: 659ms
76:	learn: 11.4954152	total: 2.11s	remaining: 632ms
77:	learn: 11.3827464	total: 2.17s	remaining: 614ms
78:	learn: 11.2924968	total: 2.21s	remaining: 587ms
79:	learn: 11.1938217	total: 2.24s	remaining: 560ms
80:	learn: 11.0766477	total: 2.27s	remaining: 533ms
81:	learn: 10.9824487	total: 2.3s	remaining: 504ms
82:	learn: 10.8707168	total: 2.32s	remaining: 475ms
83:	learn: 10.7746205	total: 2.35s	remaining: 447ms
84:	learn: 10.6738461	total: 2.38s	remaining: 420ms
85:	learn: 10.5871227	total: 2.41s	remaining: 392ms
86:	learn: 10.4566607	total: 2.43s	remaining: 363ms
87:	learn: 10.3506633	total: 2.45s	remaining: 334ms
88:	learn: 10.2104644	total: 2.48s	remaining: 307ms
89:	learn: 10.0965839	total: 2.54s	remaining: 282ms
90:	learn: 9.9802927	total: 2.58s	remaining: 255ms
91:	learn: 9.9195276	total: 2.62s	remaining: 228ms
92:	learn: 9.8559698	total: 2.65s	remaining: 199ms
93:	learn: 9.7396780	total: 2.67s	remaining: 171ms
94:	learn: 9.6945725	total: 2.69s	remaining: 142ms
95:	learn: 9.5897565	total: 2.72s	remaining: 113ms
96:	learn: 9.5012011	total: 2.74s	remaining: 84.6ms
97:	learn: 9.4123715	total: 2.76s	remaining: 56.3ms
98:	learn: 9.3288366	total: 2.78s	remaining: 28.1ms
99:	learn: 9.2648715	total: 2.81s	remaining: 0us
0:	learn: 45.5336925	total: 34.3ms	remaining: 3.39s
1:	learn: 44.2714175	total: 57.6ms	remaining: 2.82s
2:	learn: 43.1477944	total: 86.2ms	remaining: 2.79s
3:	learn: 41.9891776	total: 109ms	remaining: 2.63s
4:	learn: 41.0638986	total: 135ms	remaining: 2.57s
5:	learn: 39.9800801	total: 159ms	remaining: 2.49s
6:	learn: 38.9048061	total: 182ms	remaining: 2.42s
7:	learn: 38.0749429	total: 207ms	remaining: 2.37s
8:	learn: 37.3966644	total: 231ms	remaining: 2.33s
9:	learn: 36.4671331	total: 256ms	remaining: 2.3s
10:	learn: 35.6649217	total: 280ms	remaining: 2.26s
11:	learn: 34.8793657	total: 310ms	remaining: 2.27s
12:	learn: 34.0737401	total: 334ms	remaining: 2.24s
13:	learn: 33.2560999	total: 355ms	remaining: 2.18s
14:	learn: 32.4184623	total: 376ms	remaining: 2.13s
15:	learn: 31.6803206	total: 396ms	remaining: 2.08s
16:	learn: 30.9276344	total: 417ms	remaining: 2.04s
17:	learn: 30.3590041	total: 438ms	remaining: 1.99s
18:	learn: 29.7789888	total: 460ms	remaining: 1.96s
19:	learn: 29.1098261	total: 481ms	remaining: 1.92s
20:	learn: 28.4824889	total: 503ms	remaining: 1.89s
21:	learn: 27.9675744	total: 532ms	remaining: 1.89s
22:	learn: 27.4793215	total: 558ms	remaining: 1.87s
23:	learn: 26.8920542	total: 582ms	remaining: 1.84s
24:	learn: 26.2736657	total: 605ms	remaining: 1.81s
25:	learn: 25.6908003	total: 628ms	remaining: 1.79s
26:	learn: 25.1288844	total: 651ms	remaining: 1.76s
27:	learn: 24.6933320	total: 675ms	remaining: 1.73s
28:	learn: 24.1372567	total: 697ms	remaining: 1.71s
29:	learn: 23.7103515	total: 719ms	remaining: 1.68s
30:	learn: 23.1647499	total: 742ms	remaining: 1.65s
31:	learn: 22.7009216	total: 773ms	remaining: 1.64s
32:	learn: 22.2792229	total: 795ms	remaining: 1.61s
33:	learn: 21.8004244	total: 834ms	remaining: 1.62s
34:	learn: 21.3578361	total: 863ms	remaining: 1.6s
35:	learn: 21.0262832	total: 888ms	remaining: 1.58s
36:	learn: 20.5787502	total: 912ms	remaining: 1.55s
37:	learn: 20.3083055	total: 936ms	remaining: 1.53s
38:	learn: 19.9902529	total: 969ms	remaining: 1.52s
39:	learn: 19.6059571	total: 1s	remaining: 1.5s
40:	learn: 19.3890959	total: 1.03s	remaining: 1.48s
41:	learn: 19.0549255	total: 1.05s	remaining: 1.45s
42:	learn: 18.7283215	total: 1.08s	remaining: 1.44s
43:	learn: 18.4448725	total: 1.11s	remaining: 1.41s
44:	learn: 18.1578001	total: 1.13s	remaining: 1.38s
45:	learn: 17.8777474	total: 1.15s	remaining: 1.35s
46:	learn: 17.6428221	total: 1.19s	remaining: 1.34s
47:	learn: 17.3887752	total: 1.21s	remaining: 1.31s
48:	learn: 17.1475761	total: 1.24s	remaining: 1.29s
49:	learn: 16.9064363	total: 1.26s	remaining: 1.26s
50:	learn: 16.6414681	total: 1.28s	remaining: 1.23s
51:	learn: 16.4549974	total: 1.3s	remaining: 1.2s
52:	learn: 16.2617558	total: 1.33s	remaining: 1.18s
53:	learn: 16.0258241	total: 1.35s	remaining: 1.15s
54:	learn: 15.7694686	total: 1.37s	remaining: 1.12s
55:	learn: 15.5449602	total: 1.4s	remaining: 1.1s
56:	learn: 15.3515330	total: 1.43s	remaining: 1.08s
57:	learn: 15.1120403	total: 1.46s	remaining: 1.06s
58:	learn: 14.9131368	total: 1.48s	remaining: 1.03s
59:	learn: 14.8021921	total: 1.51s	remaining: 1s
60:	learn: 14.6564259	total: 1.53s	remaining: 977ms
61:	learn: 14.5253260	total: 1.55s	remaining: 952ms
62:	learn: 14.3975427	total: 1.57s	remaining: 924ms
63:	learn: 14.3060204	total: 1.6s	remaining: 899ms
64:	learn: 14.1283681	total: 1.62s	remaining: 873ms
65:	learn: 14.0159063	total: 1.65s	remaining: 850ms
66:	learn: 13.8712541	total: 1.67s	remaining: 823ms
67:	learn: 13.7852998	total: 1.69s	remaining: 796ms
68:	learn: 13.6790164	total: 1.71s	remaining: 770ms
69:	learn: 13.5253745	total: 1.73s	remaining: 743ms
70:	learn: 13.3959663	total: 1.75s	remaining: 716ms
71:	learn: 13.2062955	total: 1.77s	remaining: 691ms
72:	learn: 13.0788709	total: 1.79s	remaining: 664ms
73:	learn: 12.9513184	total: 1.82s	remaining: 639ms
74:	learn: 12.8198556	total: 1.84s	remaining: 614ms
75:	learn: 12.7137549	total: 1.87s	remaining: 592ms
76:	learn: 12.6243477	total: 1.9s	remaining: 566ms
77:	learn: 12.5241564	total: 1.92s	remaining: 541ms
78:	learn: 12.4445782	total: 1.94s	remaining: 516ms
79:	learn: 12.3816501	total: 1.96s	remaining: 490ms
80:	learn: 12.2846914	total: 1.98s	remaining: 466ms
81:	learn: 12.1419498	total: 2s	remaining: 440ms
82:	learn: 12.0846494	total: 2.02s	remaining: 415ms
83:	learn: 11.9851484	total: 2.05s	remaining: 390ms
84:	learn: 11.8905738	total: 2.08s	remaining: 367ms
85:	learn: 11.7718790	total: 2.1s	remaining: 343ms
86:	learn: 11.6854413	total: 2.12s	remaining: 317ms
87:	learn: 11.6206110	total: 2.15s	remaining: 293ms
88:	learn: 11.5376098	total: 2.17s	remaining: 268ms
89:	learn: 11.4235068	total: 2.19s	remaining: 243ms
90:	learn: 11.3477955	total: 2.21s	remaining: 219ms
91:	learn: 11.2663772	total: 2.23s	remaining: 194ms
92:	learn: 11.1916556	total: 2.26s	remaining: 170ms
93:	learn: 11.0921504	total: 2.29s	remaining: 146ms
94:	learn: 10.9622375	total: 2.32s	remaining: 122ms
95:	learn: 10.8882085	total: 2.34s	remaining: 97.6ms
96:	learn: 10.8086218	total: 2.37s	remaining: 73.2ms
97:	learn: 10.7552220	total: 2.39s	remaining: 48.8ms
98:	learn: 10.6929666	total: 2.42s	remaining: 24.4ms
99:	learn: 10.6200033	total: 2.44s	remaining: 0us
0:	learn: 46.3366259	total: 21.6ms	remaining: 2.13s
1:	learn: 45.2205278	total: 41.6ms	remaining: 2.04s
2:	learn: 43.9887404	total: 62.1ms	remaining: 2.01s
3:	learn: 42.8240666	total: 83.5ms	remaining: 2s
4:	learn: 41.6086617	total: 102ms	remaining: 1.94s
5:	learn: 40.5606446	total: 121ms	remaining: 1.9s
6:	learn: 39.6241326	total: 142ms	remaining: 1.89s
7:	learn: 39.0016852	total: 164ms	remaining: 1.89s
8:	learn: 37.8501670	total: 194ms	remaining: 1.96s
9:	learn: 37.0215474	total: 217ms	remaining: 1.96s
10:	learn: 36.0215020	total: 241ms	remaining: 1.95s
11:	learn: 35.2421331	total: 265ms	remaining: 1.94s
12:	learn: 34.5416837	total: 294ms	remaining: 1.97s
13:	learn: 33.7787649	total: 320ms	remaining: 1.97s
14:	learn: 32.9860883	total: 342ms	remaining: 1.94s
15:	learn: 32.2123752	total: 365ms	remaining: 1.92s
16:	learn: 31.3564648	total: 389ms	remaining: 1.9s
17:	learn: 30.7859979	total: 428ms	remaining: 1.95s
18:	learn: 30.1443515	total: 449ms	remaining: 1.91s
19:	learn: 29.4880724	total: 469ms	remaining: 1.88s
20:	learn: 28.9635727	total: 490ms	remaining: 1.84s
21:	learn: 28.4853342	total: 511ms	remaining: 1.81s
22:	learn: 27.9796348	total: 534ms	remaining: 1.79s
23:	learn: 27.4360487	total: 564ms	remaining: 1.78s
24:	learn: 26.8685214	total: 586ms	remaining: 1.76s
25:	learn: 26.1769206	total: 621ms	remaining: 1.77s
26:	learn: 25.7146048	total: 649ms	remaining: 1.75s
27:	learn: 25.2614850	total: 671ms	remaining: 1.73s
28:	learn: 24.6626472	total: 694ms	remaining: 1.7s
29:	learn: 24.2501259	total: 720ms	remaining: 1.68s
30:	learn: 23.7892661	total: 742ms	remaining: 1.65s
31:	learn: 23.2729078	total: 764ms	remaining: 1.62s
32:	learn: 22.8969731	total: 785ms	remaining: 1.59s
33:	learn: 22.4567570	total: 808ms	remaining: 1.57s
34:	learn: 22.0569858	total: 831ms	remaining: 1.54s
35:	learn: 21.7317775	total: 861ms	remaining: 1.53s
36:	learn: 21.3890971	total: 885ms	remaining: 1.51s
37:	learn: 21.0664504	total: 907ms	remaining: 1.48s
38:	learn: 20.7379659	total: 929ms	remaining: 1.45s
39:	learn: 20.4423699	total: 949ms	remaining: 1.42s
40:	learn: 20.1526720	total: 970ms	remaining: 1.4s
41:	learn: 19.8706547	total: 991ms	remaining: 1.37s
42:	learn: 19.5139134	total: 1.01s	remaining: 1.34s
43:	learn: 19.3495951	total: 1.03s	remaining: 1.31s
44:	learn: 19.1314757	total: 1.08s	remaining: 1.32s
45:	learn: 18.7971159	total: 1.12s	remaining: 1.31s
46:	learn: 18.5447051	total: 1.14s	remaining: 1.29s
47:	learn: 18.2328785	total: 1.17s	remaining: 1.26s
48:	learn: 17.9622938	total: 1.19s	remaining: 1.24s
49:	learn: 17.7264205	total: 1.22s	remaining: 1.22s
50:	learn: 17.4530592	total: 1.24s	remaining: 1.19s
51:	learn: 17.2236644	total: 1.26s	remaining: 1.16s
52:	learn: 17.0122792	total: 1.28s	remaining: 1.14s
53:	learn: 16.7599064	total: 1.32s	remaining: 1.12s
54:	learn: 16.5146699	total: 1.34s	remaining: 1.1s
55:	learn: 16.2531414	total: 1.37s	remaining: 1.07s
56:	learn: 16.0997208	total: 1.39s	remaining: 1.05s
57:	learn: 15.8452412	total: 1.42s	remaining: 1.02s
58:	learn: 15.6294900	total: 1.44s	remaining: 1000ms
59:	learn: 15.4564548	total: 1.46s	remaining: 976ms
60:	learn: 15.2978533	total: 1.49s	remaining: 950ms
61:	learn: 15.0976912	total: 1.52s	remaining: 931ms
62:	learn: 14.9094446	total: 1.55s	remaining: 908ms
63:	learn: 14.7415094	total: 1.57s	remaining: 883ms
64:	learn: 14.6123806	total: 1.59s	remaining: 858ms
65:	learn: 14.4744916	total: 1.62s	remaining: 833ms
66:	learn: 14.3212717	total: 1.64s	remaining: 808ms
67:	learn: 14.1768047	total: 1.66s	remaining: 780ms
68:	learn: 14.0387344	total: 1.68s	remaining: 754ms
69:	learn: 13.8987579	total: 1.7s	remaining: 727ms
70:	learn: 13.7825740	total: 1.72s	remaining: 702ms
71:	learn: 13.6818548	total: 1.74s	remaining: 678ms
72:	learn: 13.5356993	total: 1.76s	remaining: 653ms
73:	learn: 13.4408704	total: 1.78s	remaining: 626ms
74:	learn: 13.2992218	total: 1.8s	remaining: 601ms
75:	learn: 13.1547092	total: 1.82s	remaining: 575ms
76:	learn: 13.0800189	total: 1.84s	remaining: 550ms
77:	learn: 12.9434711	total: 1.86s	remaining: 525ms
78:	learn: 12.8327325	total: 1.89s	remaining: 502ms
79:	learn: 12.7238946	total: 1.91s	remaining: 478ms
80:	learn: 12.6229528	total: 1.95s	remaining: 457ms
81:	learn: 12.5216078	total: 1.97s	remaining: 433ms
82:	learn: 12.4182254	total: 2s	remaining: 410ms
83:	learn: 12.3097978	total: 2.03s	remaining: 386ms
84:	learn: 12.1852056	total: 2.05s	remaining: 363ms
85:	learn: 12.0739627	total: 2.08s	remaining: 339ms
86:	learn: 11.9475583	total: 2.11s	remaining: 315ms
87:	learn: 11.8403806	total: 2.13s	remaining: 291ms
88:	learn: 11.7294124	total: 2.16s	remaining: 267ms
89:	learn: 11.6395689	total: 2.19s	remaining: 243ms
90:	learn: 11.5510643	total: 2.22s	remaining: 220ms
91:	learn: 11.4455301	total: 2.25s	remaining: 196ms
92:	learn: 11.3368661	total: 2.27s	remaining: 171ms
93:	learn: 11.2270796	total: 2.29s	remaining: 147ms
94:	learn: 11.1168414	total: 2.32s	remaining: 122ms
95:	learn: 11.0310985	total: 2.34s	remaining: 97.4ms
96:	learn: 10.9735185	total: 2.36s	remaining: 73.1ms
97:	learn: 10.8575874	total: 2.39s	remaining: 48.8ms
98:	learn: 10.7816173	total: 2.42s	remaining: 24.5ms
99:	learn: 10.7111737	total: 2.45s	remaining: 0us
0:	learn: 27.6506730	total: 5.31ms	remaining: 526ms
1:	learn: 27.1638793	total: 10.3ms	remaining: 502ms
2:	learn: 26.8000665	total: 15.1ms	remaining: 487ms
3:	learn: 26.4256132	total: 19.9ms	remaining: 477ms
4:	learn: 26.0088351	total: 25.1ms	remaining: 477ms
5:	learn: 25.7558298	total: 29.9ms	remaining: 468ms
6:	learn: 25.3380711	total: 34.4ms	remaining: 457ms
7:	learn: 25.0571611	total: 39.3ms	remaining: 452ms
8:	learn: 24.6790148	total: 44.1ms	remaining: 446ms
9:	learn: 24.3600941	total: 48.9ms	remaining: 440ms
10:	learn: 24.1105667	total: 53.7ms	remaining: 435ms
11:	learn: 23.7736542	total: 58.9ms	remaining: 432ms
12:	learn: 23.5824429	total: 63.8ms	remaining: 427ms
13:	learn: 23.2658303	total: 68.9ms	remaining: 423ms
14:	learn: 23.0061886	total: 76.3ms	remaining: 432ms
15:	learn: 22.8060389	total: 83.4ms	remaining: 438ms
16:	learn: 22.5899735	total: 91.7ms	remaining: 447ms
17:	learn: 22.3625048	total: 100ms	remaining: 458ms
18:	learn: 22.0706477	total: 107ms	remaining: 454ms
19:	learn: 21.8739394	total: 111ms	remaining: 444ms
20:	learn: 21.6143650	total: 116ms	remaining: 436ms
21:	learn: 21.4571623	total: 122ms	remaining: 431ms
22:	learn: 21.2395769	total: 126ms	remaining: 423ms
23:	learn: 20.9801795	total: 131ms	remaining: 416ms
24:	learn: 20.8036808	total: 136ms	remaining: 409ms
25:	learn: 20.6387539	total: 141ms	remaining: 402ms
26:	learn: 20.4401427	total: 146ms	remaining: 394ms
27:	learn: 20.2879575	total: 150ms	remaining: 386ms
28:	learn: 20.0538664	total: 155ms	remaining: 380ms
29:	learn: 19.8363102	total: 160ms	remaining: 373ms
30:	learn: 19.7015446	total: 164ms	remaining: 365ms
31:	learn: 19.5483114	total: 169ms	remaining: 359ms
32:	learn: 19.4163053	total: 174ms	remaining: 353ms
33:	learn: 19.2880625	total: 178ms	remaining: 345ms
34:	learn: 19.1303389	total: 182ms	remaining: 338ms
35:	learn: 18.9237448	total: 187ms	remaining: 332ms
36:	learn: 18.8142925	total: 191ms	remaining: 326ms
37:	learn: 18.6994696	total: 196ms	remaining: 319ms
38:	learn: 18.5629211	total: 201ms	remaining: 314ms
39:	learn: 18.4600917	total: 205ms	remaining: 308ms
40:	learn: 18.3567139	total: 210ms	remaining: 302ms
41:	learn: 18.2120527	total: 214ms	remaining: 296ms
42:	learn: 18.0688062	total: 219ms	remaining: 290ms
43:	learn: 17.9250181	total: 223ms	remaining: 284ms
44:	learn: 17.8399138	total: 228ms	remaining: 278ms
45:	learn: 17.6720713	total: 232ms	remaining: 273ms
46:	learn: 17.5273091	total: 237ms	remaining: 267ms
47:	learn: 17.4232814	total: 242ms	remaining: 262ms
48:	learn: 17.2957579	total: 247ms	remaining: 257ms
49:	learn: 17.1892874	total: 252ms	remaining: 252ms
50:	learn: 17.0490355	total: 257ms	remaining: 247ms
51:	learn: 16.9666450	total: 262ms	remaining: 241ms
52:	learn: 16.8600056	total: 267ms	remaining: 236ms
53:	learn: 16.7542588	total: 272ms	remaining: 231ms
54:	learn: 16.6316077	total: 280ms	remaining: 229ms
55:	learn: 16.5588112	total: 289ms	remaining: 227ms
56:	learn: 16.5010186	total: 298ms	remaining: 225ms
57:	learn: 16.4081540	total: 306ms	remaining: 221ms
58:	learn: 16.3040451	total: 311ms	remaining: 216ms
59:	learn: 16.1890564	total: 317ms	remaining: 212ms
60:	learn: 16.0977103	total: 323ms	remaining: 206ms
61:	learn: 15.9627607	total: 328ms	remaining: 201ms
62:	learn: 15.9022248	total: 334ms	remaining: 196ms
63:	learn: 15.8151881	total: 339ms	remaining: 191ms
64:	learn: 15.7353125	total: 344ms	remaining: 185ms
65:	learn: 15.6312897	total: 350ms	remaining: 180ms
66:	learn: 15.5330927	total: 354ms	remaining: 175ms
67:	learn: 15.4698681	total: 359ms	remaining: 169ms
68:	learn: 15.4108571	total: 364ms	remaining: 164ms
69:	learn: 15.3492945	total: 369ms	remaining: 158ms
70:	learn: 15.3036540	total: 374ms	remaining: 153ms
71:	learn: 15.2390833	total: 380ms	remaining: 148ms
72:	learn: 15.1556327	total: 385ms	remaining: 142ms
73:	learn: 15.1016315	total: 390ms	remaining: 137ms
74:	learn: 15.0287076	total: 395ms	remaining: 132ms
75:	learn: 14.9530572	total: 400ms	remaining: 126ms
76:	learn: 14.8965517	total: 404ms	remaining: 121ms
77:	learn: 14.8125426	total: 409ms	remaining: 115ms
78:	learn: 14.7435359	total: 414ms	remaining: 110ms
79:	learn: 14.6963163	total: 418ms	remaining: 105ms
80:	learn: 14.6200060	total: 423ms	remaining: 99.2ms
81:	learn: 14.5707760	total: 428ms	remaining: 94ms
82:	learn: 14.5053651	total: 433ms	remaining: 88.7ms
83:	learn: 14.4115458	total: 438ms	remaining: 83.5ms
84:	learn: 14.3117159	total: 444ms	remaining: 78.3ms
85:	learn: 14.2511326	total: 449ms	remaining: 73ms
86:	learn: 14.1372486	total: 454ms	remaining: 67.8ms
87:	learn: 14.0992301	total: 458ms	remaining: 62.5ms
88:	learn: 14.0228331	total: 463ms	remaining: 57.3ms
89:	learn: 13.9249836	total: 468ms	remaining: 52ms
90:	learn: 13.8679364	total: 473ms	remaining: 46.8ms
91:	learn: 13.8405578	total: 481ms	remaining: 41.8ms
92:	learn: 13.7711325	total: 488ms	remaining: 36.8ms
93:	learn: 13.7357019	total: 495ms	remaining: 31.6ms
94:	learn: 13.6735271	total: 500ms	remaining: 26.3ms
95:	learn: 13.5682393	total: 506ms	remaining: 21.1ms
96:	learn: 13.5342610	total: 511ms	remaining: 15.8ms
97:	learn: 13.4710034	total: 515ms	remaining: 10.5ms
98:	learn: 13.4022402	total: 520ms	remaining: 5.25ms
99:	learn: 13.3351238	total: 524ms	remaining: 0us
0:	learn: 42.9181702	total: 5.87ms	remaining: 581ms
1:	learn: 42.0286736	total: 10.4ms	remaining: 511ms
2:	learn: 41.2764568	total: 15ms	remaining: 484ms
3:	learn: 40.4721918	total: 19.6ms	remaining: 470ms
4:	learn: 39.8518928	total: 23.9ms	remaining: 455ms
5:	learn: 39.2645479	total: 28.2ms	remaining: 442ms
6:	learn: 38.4453704	total: 32.6ms	remaining: 432ms
7:	learn: 37.7122059	total: 37.5ms	remaining: 432ms
8:	learn: 36.9185796	total: 41.9ms	remaining: 424ms
9:	learn: 36.1668427	total: 46.1ms	remaining: 415ms
10:	learn: 35.5639029	total: 50.2ms	remaining: 406ms
11:	learn: 34.7724193	total: 55.3ms	remaining: 405ms
12:	learn: 34.3053433	total: 59.7ms	remaining: 399ms
13:	learn: 33.6561327	total: 60.9ms	remaining: 374ms
14:	learn: 33.0134042	total: 65.4ms	remaining: 371ms
15:	learn: 32.4483300	total: 70.4ms	remaining: 369ms
16:	learn: 31.8581144	total: 75.1ms	remaining: 366ms
17:	learn: 31.2858301	total: 79.8ms	remaining: 363ms
18:	learn: 30.8483018	total: 84.7ms	remaining: 361ms
19:	learn: 30.4174622	total: 89.8ms	remaining: 359ms
20:	learn: 29.8994411	total: 94.5ms	remaining: 356ms
21:	learn: 29.5045355	total: 99.3ms	remaining: 352ms
22:	learn: 28.9923519	total: 106ms	remaining: 354ms
23:	learn: 28.4255717	total: 114ms	remaining: 360ms
24:	learn: 28.0283139	total: 122ms	remaining: 367ms
25:	learn: 27.7434814	total: 131ms	remaining: 372ms
26:	learn: 27.2770731	total: 139ms	remaining: 377ms
27:	learn: 26.8928270	total: 145ms	remaining: 373ms
28:	learn: 26.4282671	total: 151ms	remaining: 369ms
29:	learn: 26.0272764	total: 156ms	remaining: 364ms
30:	learn: 25.7579312	total: 162ms	remaining: 360ms
31:	learn: 25.4542434	total: 167ms	remaining: 355ms
32:	learn: 25.1232564	total: 172ms	remaining: 350ms
33:	learn: 24.8110795	total: 178ms	remaining: 345ms
34:	learn: 24.5077579	total: 183ms	remaining: 340ms
35:	learn: 24.1909000	total: 188ms	remaining: 334ms
36:	learn: 23.8719468	total: 193ms	remaining: 329ms
37:	learn: 23.5764366	total: 194ms	remaining: 317ms
38:	learn: 23.3468086	total: 200ms	remaining: 312ms
39:	learn: 23.0908771	total: 205ms	remaining: 308ms
40:	learn: 22.8580876	total: 211ms	remaining: 303ms
41:	learn: 22.6060825	total: 216ms	remaining: 298ms
42:	learn: 22.4125407	total: 220ms	remaining: 292ms
43:	learn: 22.1990617	total: 225ms	remaining: 286ms
44:	learn: 21.9716164	total: 229ms	remaining: 280ms
45:	learn: 21.8360935	total: 234ms	remaining: 274ms
46:	learn: 21.6169256	total: 238ms	remaining: 268ms
47:	learn: 21.4620612	total: 242ms	remaining: 262ms
48:	learn: 21.2894194	total: 247ms	remaining: 257ms
49:	learn: 21.1066266	total: 251ms	remaining: 251ms
50:	learn: 20.9484898	total: 255ms	remaining: 245ms
51:	learn: 20.7195338	total: 260ms	remaining: 240ms
52:	learn: 20.4899740	total: 265ms	remaining: 235ms
53:	learn: 20.3356583	total: 270ms	remaining: 230ms
54:	learn: 20.0754393	total: 275ms	remaining: 225ms
55:	learn: 19.9199159	total: 280ms	remaining: 220ms
56:	learn: 19.7761128	total: 292ms	remaining: 220ms
57:	learn: 19.6533060	total: 298ms	remaining: 216ms
58:	learn: 19.5113942	total: 303ms	remaining: 211ms
59:	learn: 19.3985022	total: 313ms	remaining: 209ms
60:	learn: 19.2683443	total: 321ms	remaining: 205ms
61:	learn: 19.1460824	total: 328ms	remaining: 201ms
62:	learn: 19.0042655	total: 334ms	remaining: 196ms
63:	learn: 18.8720873	total: 341ms	remaining: 192ms
64:	learn: 18.7183888	total: 345ms	remaining: 186ms
65:	learn: 18.5472360	total: 349ms	remaining: 180ms
66:	learn: 18.3976642	total: 354ms	remaining: 174ms
67:	learn: 18.2282851	total: 358ms	remaining: 169ms
68:	learn: 18.1469157	total: 364ms	remaining: 163ms
69:	learn: 18.0649494	total: 368ms	remaining: 158ms
70:	learn: 17.9485405	total: 373ms	remaining: 152ms
71:	learn: 17.8460261	total: 378ms	remaining: 147ms
72:	learn: 17.7679843	total: 383ms	remaining: 142ms
73:	learn: 17.5989290	total: 388ms	remaining: 136ms
74:	learn: 17.4381322	total: 392ms	remaining: 131ms
75:	learn: 17.3370886	total: 397ms	remaining: 125ms
76:	learn: 17.2675308	total: 401ms	remaining: 120ms
77:	learn: 17.1946430	total: 405ms	remaining: 114ms
78:	learn: 17.0923725	total: 410ms	remaining: 109ms
79:	learn: 17.0537265	total: 414ms	remaining: 103ms
80:	learn: 16.9456831	total: 418ms	remaining: 98ms
81:	learn: 16.8457353	total: 422ms	remaining: 92.6ms
82:	learn: 16.7469310	total: 427ms	remaining: 87.4ms
83:	learn: 16.6679953	total: 432ms	remaining: 82.2ms
84:	learn: 16.6274189	total: 436ms	remaining: 77ms
85:	learn: 16.5516530	total: 441ms	remaining: 71.8ms
86:	learn: 16.4886066	total: 446ms	remaining: 66.6ms
87:	learn: 16.3947859	total: 450ms	remaining: 61.4ms
88:	learn: 16.3406495	total: 455ms	remaining: 56.3ms
89:	learn: 16.3019195	total: 460ms	remaining: 51.1ms
90:	learn: 16.1860681	total: 465ms	remaining: 45.9ms
91:	learn: 16.1282812	total: 470ms	remaining: 40.8ms
92:	learn: 16.0303652	total: 475ms	remaining: 35.7ms
93:	learn: 15.9561692	total: 479ms	remaining: 30.6ms
94:	learn: 15.8733994	total: 484ms	remaining: 25.5ms
95:	learn: 15.8108833	total: 489ms	remaining: 20.4ms
96:	learn: 15.7606004	total: 494ms	remaining: 15.3ms
97:	learn: 15.6984664	total: 499ms	remaining: 10.2ms
98:	learn: 15.6223632	total: 507ms	remaining: 5.12ms
99:	learn: 15.5671136	total: 515ms	remaining: 0us
0:	learn: 46.4788614	total: 2.97ms	remaining: 294ms
1:	learn: 45.7608372	total: 8.96ms	remaining: 439ms
2:	learn: 44.8825004	total: 13.7ms	remaining: 444ms
3:	learn: 44.0362738	total: 18.6ms	remaining: 448ms
4:	learn: 43.2086374	total: 23.6ms	remaining: 447ms
5:	learn: 42.5835773	total: 28.4ms	remaining: 445ms
6:	learn: 41.9673269	total: 33.8ms	remaining: 449ms
7:	learn: 41.4748717	total: 38.8ms	remaining: 446ms
8:	learn: 40.7129183	total: 44.2ms	remaining: 447ms
9:	learn: 39.8900884	total: 49.8ms	remaining: 448ms
10:	learn: 39.4142193	total: 54.8ms	remaining: 443ms
11:	learn: 38.8645613	total: 59.7ms	remaining: 438ms
12:	learn: 38.2394731	total: 65ms	remaining: 435ms
13:	learn: 37.6834515	total: 70ms	remaining: 430ms
14:	learn: 37.0673507	total: 74.9ms	remaining: 424ms
15:	learn: 36.4728340	total: 80.4ms	remaining: 422ms
16:	learn: 36.0489086	total: 85.9ms	remaining: 420ms
17:	learn: 35.4744141	total: 91.5ms	remaining: 417ms
18:	learn: 35.0106021	total: 99.8ms	remaining: 425ms
19:	learn: 34.5586053	total: 106ms	remaining: 426ms
20:	learn: 34.1308223	total: 113ms	remaining: 427ms
21:	learn: 33.7701450	total: 118ms	remaining: 419ms
22:	learn: 33.4425444	total: 123ms	remaining: 412ms
23:	learn: 33.0296412	total: 129ms	remaining: 407ms
24:	learn: 32.6359803	total: 135ms	remaining: 406ms
25:	learn: 32.1846182	total: 140ms	remaining: 398ms
26:	learn: 31.7620230	total: 144ms	remaining: 390ms
27:	learn: 31.4669337	total: 149ms	remaining: 383ms
28:	learn: 31.0792062	total: 154ms	remaining: 376ms
29:	learn: 30.7970537	total: 158ms	remaining: 370ms
30:	learn: 30.4952215	total: 164ms	remaining: 364ms
31:	learn: 30.2845344	total: 168ms	remaining: 358ms
32:	learn: 29.9592732	total: 173ms	remaining: 351ms
33:	learn: 29.6798596	total: 178ms	remaining: 346ms
34:	learn: 29.3368905	total: 183ms	remaining: 340ms
35:	learn: 29.0621238	total: 189ms	remaining: 335ms
36:	learn: 28.6445375	total: 193ms	remaining: 329ms
37:	learn: 28.2418096	total: 198ms	remaining: 323ms
38:	learn: 27.9495390	total: 203ms	remaining: 318ms
39:	learn: 27.6958160	total: 209ms	remaining: 313ms
40:	learn: 27.4811189	total: 214ms	remaining: 308ms
41:	learn: 27.1494420	total: 219ms	remaining: 303ms
42:	learn: 26.8388873	total: 224ms	remaining: 297ms
43:	learn: 26.5721300	total: 230ms	remaining: 292ms
44:	learn: 26.3384738	total: 235ms	remaining: 287ms
45:	learn: 26.1894781	total: 240ms	remaining: 282ms
46:	learn: 25.9580198	total: 246ms	remaining: 278ms
47:	learn: 25.7897985	total: 251ms	remaining: 272ms
48:	learn: 25.6000271	total: 257ms	remaining: 267ms
49:	learn: 25.4130873	total: 262ms	remaining: 262ms
50:	learn: 25.1699061	total: 268ms	remaining: 257ms
51:	learn: 24.9324449	total: 274ms	remaining: 253ms
52:	learn: 24.7729152	total: 279ms	remaining: 248ms
53:	learn: 24.5026563	total: 285ms	remaining: 243ms
54:	learn: 24.2332627	total: 291ms	remaining: 238ms
55:	learn: 23.9611984	total: 296ms	remaining: 233ms
56:	learn: 23.7862603	total: 302ms	remaining: 227ms
57:	learn: 23.6318154	total: 307ms	remaining: 222ms
58:	learn: 23.4443306	total: 312ms	remaining: 217ms
59:	learn: 23.2581425	total: 319ms	remaining: 213ms
60:	learn: 23.0549901	total: 328ms	remaining: 210ms
61:	learn: 22.8666218	total: 340ms	remaining: 208ms
62:	learn: 22.6956739	total: 348ms	remaining: 204ms
63:	learn: 22.5068544	total: 354ms	remaining: 199ms
64:	learn: 22.1859147	total: 359ms	remaining: 193ms
65:	learn: 22.0462043	total: 364ms	remaining: 188ms
66:	learn: 21.9329563	total: 370ms	remaining: 182ms
67:	learn: 21.8029736	total: 376ms	remaining: 177ms
68:	learn: 21.6861091	total: 382ms	remaining: 172ms
69:	learn: 21.4838140	total: 388ms	remaining: 166ms
70:	learn: 21.3548921	total: 394ms	remaining: 161ms
71:	learn: 21.2244517	total: 399ms	remaining: 155ms
72:	learn: 21.0702958	total: 404ms	remaining: 149ms
73:	learn: 20.9224662	total: 410ms	remaining: 144ms
74:	learn: 20.8150357	total: 416ms	remaining: 139ms
75:	learn: 20.6962739	total: 421ms	remaining: 133ms
76:	learn: 20.5809258	total: 426ms	remaining: 127ms
77:	learn: 20.4735470	total: 431ms	remaining: 122ms
78:	learn: 20.3778167	total: 436ms	remaining: 116ms
79:	learn: 20.2211268	total: 441ms	remaining: 110ms
80:	learn: 20.1478678	total: 446ms	remaining: 105ms
81:	learn: 20.1032967	total: 451ms	remaining: 99ms
82:	learn: 19.9236300	total: 456ms	remaining: 93.4ms
83:	learn: 19.8151745	total: 461ms	remaining: 87.8ms
84:	learn: 19.7099856	total: 466ms	remaining: 82.2ms
85:	learn: 19.6264833	total: 471ms	remaining: 76.7ms
86:	learn: 19.4916361	total: 476ms	remaining: 71.1ms
87:	learn: 19.4050529	total: 481ms	remaining: 65.6ms
88:	learn: 19.2547065	total: 487ms	remaining: 60.2ms
89:	learn: 19.1610225	total: 492ms	remaining: 54.6ms
90:	learn: 19.0898958	total: 497ms	remaining: 49.2ms
91:	learn: 19.0489664	total: 503ms	remaining: 43.8ms
92:	learn: 18.9206240	total: 509ms	remaining: 38.3ms
93:	learn: 18.8636239	total: 518ms	remaining: 33.1ms
94:	learn: 18.8126187	total: 531ms	remaining: 28ms
95:	learn: 18.7579275	total: 539ms	remaining: 22.5ms
96:	learn: 18.6382753	total: 545ms	remaining: 16.9ms
97:	learn: 18.5397334	total: 551ms	remaining: 11.2ms
98:	learn: 18.4375951	total: 555ms	remaining: 5.61ms
99:	learn: 18.4033755	total: 560ms	remaining: 0us
0:	learn: 46.1068821	total: 2.22ms	remaining: 220ms
1:	learn: 45.3970261	total: 7.37ms	remaining: 361ms
2:	learn: 44.8732696	total: 12.1ms	remaining: 391ms
3:	learn: 44.1290184	total: 17.1ms	remaining: 410ms
4:	learn: 43.3290271	total: 21.9ms	remaining: 417ms
5:	learn: 42.7069090	total: 26.8ms	remaining: 419ms
6:	learn: 42.0572971	total: 31.8ms	remaining: 422ms
7:	learn: 41.4797924	total: 37.1ms	remaining: 427ms
8:	learn: 41.0023122	total: 41.9ms	remaining: 423ms
9:	learn: 40.5330570	total: 46.2ms	remaining: 416ms
10:	learn: 39.9726545	total: 51.1ms	remaining: 413ms
11:	learn: 39.3044053	total: 55.7ms	remaining: 408ms
12:	learn: 38.8169735	total: 60.1ms	remaining: 402ms
13:	learn: 38.2458761	total: 64.7ms	remaining: 398ms
14:	learn: 37.6280321	total: 69.3ms	remaining: 393ms
15:	learn: 37.0800610	total: 73.8ms	remaining: 387ms
16:	learn: 36.5489363	total: 78ms	remaining: 381ms
17:	learn: 36.0981456	total: 83ms	remaining: 378ms
18:	learn: 35.6956274	total: 87.9ms	remaining: 375ms
19:	learn: 35.1471999	total: 92.7ms	remaining: 371ms
20:	learn: 34.6235408	total: 97.6ms	remaining: 367ms
21:	learn: 34.1987018	total: 102ms	remaining: 363ms
22:	learn: 33.8985062	total: 107ms	remaining: 358ms
23:	learn: 33.3869017	total: 112ms	remaining: 353ms
24:	learn: 32.9100550	total: 120ms	remaining: 361ms
25:	learn: 32.4156208	total: 128ms	remaining: 364ms
26:	learn: 31.9320493	total: 139ms	remaining: 375ms
27:	learn: 31.5711468	total: 147ms	remaining: 377ms
28:	learn: 31.2404433	total: 152ms	remaining: 373ms
29:	learn: 30.8807946	total: 158ms	remaining: 369ms
30:	learn: 30.5948438	total: 164ms	remaining: 365ms
31:	learn: 30.3885560	total: 169ms	remaining: 360ms
32:	learn: 30.0625101	total: 175ms	remaining: 354ms
33:	learn: 29.9113114	total: 180ms	remaining: 350ms
34:	learn: 29.6983470	total: 186ms	remaining: 345ms
35:	learn: 29.4775849	total: 191ms	remaining: 340ms
36:	learn: 29.0538055	total: 197ms	remaining: 336ms
37:	learn: 28.6792318	total: 202ms	remaining: 330ms
38:	learn: 28.4231383	total: 208ms	remaining: 325ms
39:	learn: 28.1078565	total: 214ms	remaining: 320ms
40:	learn: 27.9079179	total: 219ms	remaining: 315ms
41:	learn: 27.6721506	total: 223ms	remaining: 309ms
42:	learn: 27.4228033	total: 228ms	remaining: 303ms
43:	learn: 27.1740534	total: 233ms	remaining: 297ms
44:	learn: 26.8584071	total: 237ms	remaining: 290ms
45:	learn: 26.6902083	total: 242ms	remaining: 284ms
46:	learn: 26.4855335	total: 246ms	remaining: 278ms
47:	learn: 26.2730822	total: 251ms	remaining: 272ms
48:	learn: 26.1058689	total: 256ms	remaining: 266ms
49:	learn: 25.8587318	total: 261ms	remaining: 261ms
50:	learn: 25.7558005	total: 265ms	remaining: 255ms
51:	learn: 25.5846925	total: 269ms	remaining: 248ms
52:	learn: 25.4249887	total: 274ms	remaining: 243ms
53:	learn: 25.1911054	total: 279ms	remaining: 238ms
54:	learn: 25.0544755	total: 284ms	remaining: 232ms
55:	learn: 24.8874006	total: 289ms	remaining: 227ms
56:	learn: 24.7736279	total: 294ms	remaining: 222ms
57:	learn: 24.6156255	total: 298ms	remaining: 216ms
58:	learn: 24.3962421	total: 303ms	remaining: 211ms
59:	learn: 24.2685129	total: 308ms	remaining: 205ms
60:	learn: 24.1874096	total: 323ms	remaining: 206ms
61:	learn: 24.0394287	total: 330ms	remaining: 202ms
62:	learn: 23.9281768	total: 335ms	remaining: 197ms
63:	learn: 23.7423900	total: 342ms	remaining: 192ms
64:	learn: 23.6015209	total: 347ms	remaining: 187ms
65:	learn: 23.4677943	total: 351ms	remaining: 181ms
66:	learn: 23.3215256	total: 356ms	remaining: 175ms
67:	learn: 23.1869360	total: 360ms	remaining: 170ms
68:	learn: 22.9691180	total: 365ms	remaining: 164ms
69:	learn: 22.7531657	total: 370ms	remaining: 158ms
70:	learn: 22.6133477	total: 374ms	remaining: 153ms
71:	learn: 22.3452758	total: 379ms	remaining: 147ms
72:	learn: 22.2065350	total: 384ms	remaining: 142ms
73:	learn: 22.1071155	total: 388ms	remaining: 136ms
74:	learn: 21.9740686	total: 392ms	remaining: 131ms
75:	learn: 21.8892033	total: 396ms	remaining: 125ms
76:	learn: 21.8267882	total: 401ms	remaining: 120ms
77:	learn: 21.7423479	total: 405ms	remaining: 114ms
78:	learn: 21.6242075	total: 410ms	remaining: 109ms
79:	learn: 21.5016910	total: 414ms	remaining: 103ms
80:	learn: 21.4806623	total: 415ms	remaining: 97.3ms
81:	learn: 21.3166637	total: 419ms	remaining: 92ms
82:	learn: 21.2222534	total: 424ms	remaining: 86.8ms
83:	learn: 21.1535708	total: 429ms	remaining: 81.6ms
84:	learn: 21.0858902	total: 433ms	remaining: 76.4ms
85:	learn: 20.9206003	total: 438ms	remaining: 71.3ms
86:	learn: 20.8674695	total: 443ms	remaining: 66.2ms
87:	learn: 20.8089875	total: 448ms	remaining: 61.1ms
88:	learn: 20.7085401	total: 453ms	remaining: 55.9ms
89:	learn: 20.5513468	total: 457ms	remaining: 50.8ms
90:	learn: 20.4586742	total: 462ms	remaining: 45.6ms
91:	learn: 20.3932149	total: 466ms	remaining: 40.5ms
92:	learn: 20.3000895	total: 471ms	remaining: 35.4ms
93:	learn: 20.2254009	total: 476ms	remaining: 30.4ms
94:	learn: 20.1750050	total: 480ms	remaining: 25.3ms
95:	learn: 20.0715579	total: 485ms	remaining: 20.2ms
96:	learn: 19.9920082	total: 490ms	remaining: 15.2ms
97:	learn: 19.9664401	total: 495ms	remaining: 10.1ms
98:	learn: 19.8689673	total: 500ms	remaining: 5.05ms
99:	learn: 19.7537356	total: 506ms	remaining: 0us
0:	learn: 46.8832143	total: 6.68ms	remaining: 662ms
1:	learn: 45.8700349	total: 12.3ms	remaining: 602ms
2:	learn: 45.0546867	total: 18.2ms	remaining: 590ms
3:	learn: 44.2829439	total: 23.8ms	remaining: 571ms
4:	learn: 43.4609042	total: 29.4ms	remaining: 558ms
5:	learn: 42.6754991	total: 35ms	remaining: 548ms
6:	learn: 41.9234935	total: 40.7ms	remaining: 541ms
7:	learn: 41.3987518	total: 46.4ms	remaining: 534ms
8:	learn: 40.6625066	total: 52ms	remaining: 526ms
9:	learn: 40.0029561	total: 58ms	remaining: 522ms
10:	learn: 39.3897033	total: 62.9ms	remaining: 509ms
11:	learn: 38.7741453	total: 67.9ms	remaining: 498ms
12:	learn: 38.1201100	total: 72.2ms	remaining: 483ms
13:	learn: 37.5129454	total: 76.8ms	remaining: 472ms
14:	learn: 37.2062206	total: 81.9ms	remaining: 464ms
15:	learn: 36.6831741	total: 86.4ms	remaining: 453ms
16:	learn: 36.2902788	total: 91.2ms	remaining: 445ms
17:	learn: 35.7639930	total: 96.2ms	remaining: 438ms
18:	learn: 35.2580953	total: 100ms	remaining: 428ms
19:	learn: 34.7809739	total: 105ms	remaining: 421ms
20:	learn: 34.1330433	total: 110ms	remaining: 413ms
21:	learn: 33.7302219	total: 114ms	remaining: 405ms
22:	learn: 33.3502495	total: 119ms	remaining: 399ms
23:	learn: 33.0067804	total: 124ms	remaining: 394ms
24:	learn: 32.6897855	total: 130ms	remaining: 390ms
25:	learn: 32.4361119	total: 136ms	remaining: 386ms
26:	learn: 32.1278981	total: 141ms	remaining: 382ms
27:	learn: 31.7863721	total: 146ms	remaining: 376ms
28:	learn: 31.4791450	total: 152ms	remaining: 372ms
29:	learn: 31.1760161	total: 162ms	remaining: 377ms
30:	learn: 30.9238888	total: 170ms	remaining: 378ms
31:	learn: 30.5500905	total: 178ms	remaining: 378ms
32:	learn: 30.3078126	total: 183ms	remaining: 372ms
33:	learn: 30.0480921	total: 191ms	remaining: 370ms
34:	learn: 29.8623884	total: 196ms	remaining: 364ms
35:	learn: 29.5991038	total: 201ms	remaining: 357ms
36:	learn: 29.4061161	total: 206ms	remaining: 351ms
37:	learn: 29.0269515	total: 211ms	remaining: 345ms
38:	learn: 28.8224959	total: 216ms	remaining: 338ms
39:	learn: 28.6417843	total: 221ms	remaining: 332ms
40:	learn: 28.3633368	total: 226ms	remaining: 326ms
41:	learn: 28.0200246	total: 232ms	remaining: 320ms
42:	learn: 27.7221254	total: 237ms	remaining: 314ms
43:	learn: 27.5105818	total: 242ms	remaining: 308ms
44:	learn: 27.3551010	total: 247ms	remaining: 301ms
45:	learn: 27.0787522	total: 251ms	remaining: 295ms
46:	learn: 26.8726317	total: 256ms	remaining: 289ms
47:	learn: 26.8003277	total: 261ms	remaining: 282ms
48:	learn: 26.5493785	total: 265ms	remaining: 276ms
49:	learn: 26.3699550	total: 270ms	remaining: 270ms
50:	learn: 26.1519631	total: 275ms	remaining: 264ms
51:	learn: 25.9277325	total: 280ms	remaining: 258ms
52:	learn: 25.7286035	total: 284ms	remaining: 252ms
53:	learn: 25.4999193	total: 289ms	remaining: 246ms
54:	learn: 25.3434703	total: 294ms	remaining: 240ms
55:	learn: 25.1497545	total: 298ms	remaining: 235ms
56:	learn: 24.9498143	total: 303ms	remaining: 229ms
57:	learn: 24.6509390	total: 308ms	remaining: 223ms
58:	learn: 24.5576144	total: 313ms	remaining: 218ms
59:	learn: 24.4265144	total: 319ms	remaining: 213ms
60:	learn: 24.3100706	total: 325ms	remaining: 208ms
61:	learn: 24.1727952	total: 330ms	remaining: 202ms
62:	learn: 24.0478558	total: 336ms	remaining: 197ms
63:	learn: 23.9124577	total: 341ms	remaining: 192ms
64:	learn: 23.7703718	total: 347ms	remaining: 187ms
65:	learn: 23.5975027	total: 352ms	remaining: 181ms
66:	learn: 23.4318077	total: 361ms	remaining: 178ms
67:	learn: 23.3099691	total: 377ms	remaining: 177ms
68:	learn: 23.1947982	total: 388ms	remaining: 174ms
69:	learn: 23.0260174	total: 395ms	remaining: 169ms
70:	learn: 22.8523100	total: 402ms	remaining: 164ms
71:	learn: 22.8028534	total: 408ms	remaining: 159ms
72:	learn: 22.6880658	total: 414ms	remaining: 153ms
73:	learn: 22.5956809	total: 420ms	remaining: 148ms
74:	learn: 22.4692932	total: 426ms	remaining: 142ms
75:	learn: 22.2863504	total: 432ms	remaining: 136ms
76:	learn: 22.1911237	total: 438ms	remaining: 131ms
77:	learn: 22.1098391	total: 443ms	remaining: 125ms
78:	learn: 22.0182738	total: 449ms	remaining: 119ms
79:	learn: 21.9306746	total: 455ms	remaining: 114ms
80:	learn: 21.7508233	total: 460ms	remaining: 108ms
81:	learn: 21.7108446	total: 465ms	remaining: 102ms
82:	learn: 21.5931852	total: 470ms	remaining: 96.3ms
83:	learn: 21.4480361	total: 475ms	remaining: 90.4ms
84:	learn: 21.3092119	total: 479ms	remaining: 84.6ms
85:	learn: 21.2605557	total: 484ms	remaining: 78.8ms
86:	learn: 21.1123597	total: 488ms	remaining: 73ms
87:	learn: 21.0115642	total: 493ms	remaining: 67.2ms
88:	learn: 20.9389040	total: 498ms	remaining: 61.5ms
89:	learn: 20.8300300	total: 503ms	remaining: 55.9ms
90:	learn: 20.7159733	total: 507ms	remaining: 50.2ms
91:	learn: 20.6282090	total: 512ms	remaining: 44.5ms
92:	learn: 20.5164529	total: 517ms	remaining: 38.9ms
93:	learn: 20.4692032	total: 522ms	remaining: 33.3ms
94:	learn: 20.3768451	total: 529ms	remaining: 27.9ms
95:	learn: 20.2808056	total: 537ms	remaining: 22.4ms
96:	learn: 20.2082089	total: 544ms	remaining: 16.8ms
97:	learn: 20.1698768	total: 550ms	remaining: 11.2ms
98:	learn: 20.1048816	total: 555ms	remaining: 5.61ms
99:	learn: 20.0086159	total: 561ms	remaining: 0us
0:	learn: 27.3441720	total: 24.7ms	remaining: 2.45s
1:	learn: 26.7159954	total: 49.3ms	remaining: 2.42s
2:	learn: 26.0850318	total: 73.7ms	remaining: 2.38s
3:	learn: 25.4039656	total: 97.4ms	remaining: 2.34s
4:	learn: 24.7930659	total: 122ms	remaining: 2.32s
5:	learn: 24.2028590	total: 146ms	remaining: 2.29s
6:	learn: 23.6622902	total: 176ms	remaining: 2.34s
7:	learn: 23.1531175	total: 206ms	remaining: 2.37s
8:	learn: 22.7050792	total: 232ms	remaining: 2.35s
9:	learn: 22.2151788	total: 258ms	remaining: 2.32s
10:	learn: 21.7708844	total: 291ms	remaining: 2.36s
11:	learn: 21.2587174	total: 314ms	remaining: 2.31s
12:	learn: 20.7559870	total: 338ms	remaining: 2.27s
13:	learn: 20.3040842	total: 364ms	remaining: 2.23s
14:	learn: 19.9019524	total: 389ms	remaining: 2.21s
15:	learn: 19.5186012	total: 422ms	remaining: 2.22s
16:	learn: 19.1521621	total: 453ms	remaining: 2.21s
17:	learn: 18.7652180	total: 477ms	remaining: 2.17s
18:	learn: 18.4446446	total: 501ms	remaining: 2.14s
19:	learn: 18.0977650	total: 526ms	remaining: 2.1s
20:	learn: 17.7791328	total: 554ms	remaining: 2.08s
21:	learn: 17.4777648	total: 579ms	remaining: 2.05s
22:	learn: 17.1794361	total: 607ms	remaining: 2.03s
23:	learn: 16.8685032	total: 642ms	remaining: 2.03s
24:	learn: 16.6274695	total: 668ms	remaining: 2s
25:	learn: 16.3071099	total: 692ms	remaining: 1.97s
26:	learn: 16.0249663	total: 717ms	remaining: 1.94s
27:	learn: 15.7535309	total: 743ms	remaining: 1.91s
28:	learn: 15.4777235	total: 767ms	remaining: 1.88s
29:	learn: 15.2410825	total: 792ms	remaining: 1.85s
30:	learn: 15.0133002	total: 828ms	remaining: 1.84s
31:	learn: 14.8018912	total: 856ms	remaining: 1.82s
32:	learn: 14.5701546	total: 884ms	remaining: 1.79s
33:	learn: 14.3799060	total: 908ms	remaining: 1.76s
34:	learn: 14.0975095	total: 933ms	remaining: 1.73s
35:	learn: 13.8873493	total: 956ms	remaining: 1.7s
36:	learn: 13.6812023	total: 979ms	remaining: 1.67s
37:	learn: 13.4943017	total: 1s	remaining: 1.64s
38:	learn: 13.3224094	total: 1.03s	remaining: 1.61s
39:	learn: 13.0967901	total: 1.07s	remaining: 1.61s
40:	learn: 12.9138190	total: 1.1s	remaining: 1.58s
41:	learn: 12.7764458	total: 1.13s	remaining: 1.56s
42:	learn: 12.6593656	total: 1.15s	remaining: 1.53s
43:	learn: 12.5051105	total: 1.18s	remaining: 1.5s
44:	learn: 12.3057146	total: 1.2s	remaining: 1.47s
45:	learn: 12.1487674	total: 1.23s	remaining: 1.44s
46:	learn: 11.9614903	total: 1.25s	remaining: 1.41s
47:	learn: 11.7921265	total: 1.28s	remaining: 1.39s
48:	learn: 11.6572640	total: 1.3s	remaining: 1.36s
49:	learn: 11.5251463	total: 1.33s	remaining: 1.33s
50:	learn: 11.3789931	total: 1.36s	remaining: 1.3s
51:	learn: 11.2691375	total: 1.38s	remaining: 1.27s
52:	learn: 11.1161131	total: 1.41s	remaining: 1.25s
53:	learn: 11.0246399	total: 1.43s	remaining: 1.22s
54:	learn: 10.9152420	total: 1.46s	remaining: 1.19s
55:	learn: 10.7746769	total: 1.49s	remaining: 1.17s
56:	learn: 10.6222917	total: 1.52s	remaining: 1.15s
57:	learn: 10.5096115	total: 1.55s	remaining: 1.12s
58:	learn: 10.3857030	total: 1.57s	remaining: 1.09s
59:	learn: 10.2789057	total: 1.61s	remaining: 1.07s
60:	learn: 10.1490749	total: 1.63s	remaining: 1.04s
61:	learn: 10.0553291	total: 1.66s	remaining: 1.02s
62:	learn: 9.9351043	total: 1.69s	remaining: 990ms
63:	learn: 9.8245261	total: 1.72s	remaining: 968ms
64:	learn: 9.7207577	total: 1.75s	remaining: 941ms
65:	learn: 9.5920661	total: 1.77s	remaining: 914ms
66:	learn: 9.4832767	total: 1.8s	remaining: 886ms
67:	learn: 9.3724149	total: 1.82s	remaining: 858ms
68:	learn: 9.2459801	total: 1.85s	remaining: 831ms
69:	learn: 9.1740635	total: 1.88s	remaining: 807ms
70:	learn: 9.1015730	total: 1.92s	remaining: 782ms
71:	learn: 9.0196460	total: 1.94s	remaining: 756ms
72:	learn: 8.9458977	total: 1.97s	remaining: 729ms
73:	learn: 8.8434400	total: 2s	remaining: 702ms
74:	learn: 8.7495151	total: 2.02s	remaining: 675ms
75:	learn: 8.6521348	total: 2.05s	remaining: 647ms
76:	learn: 8.5654483	total: 2.08s	remaining: 620ms
77:	learn: 8.4965765	total: 2.11s	remaining: 594ms
78:	learn: 8.4308736	total: 2.13s	remaining: 567ms
79:	learn: 8.3675601	total: 2.16s	remaining: 540ms
80:	learn: 8.3193887	total: 2.19s	remaining: 514ms
81:	learn: 8.2507990	total: 2.22s	remaining: 487ms
82:	learn: 8.1583259	total: 2.24s	remaining: 459ms
83:	learn: 8.0995902	total: 2.27s	remaining: 432ms
84:	learn: 8.0236655	total: 2.29s	remaining: 404ms
85:	learn: 7.9634698	total: 2.32s	remaining: 377ms
86:	learn: 7.9109081	total: 2.35s	remaining: 351ms
87:	learn: 7.8385006	total: 2.38s	remaining: 325ms
88:	learn: 7.7859488	total: 2.43s	remaining: 300ms
89:	learn: 7.7270142	total: 2.45s	remaining: 273ms
90:	learn: 7.6774253	total: 2.48s	remaining: 245ms
91:	learn: 7.6126552	total: 2.51s	remaining: 218ms
92:	learn: 7.5392178	total: 2.53s	remaining: 191ms
93:	learn: 7.4745082	total: 2.56s	remaining: 163ms
94:	learn: 7.4106939	total: 2.58s	remaining: 136ms
95:	learn: 7.3573350	total: 2.62s	remaining: 109ms
96:	learn: 7.2889777	total: 2.64s	remaining: 81.8ms
97:	learn: 7.2204939	total: 2.67s	remaining: 54.5ms
98:	learn: 7.1646465	total: 2.7s	remaining: 27.3ms
99:	learn: 7.1204610	total: 2.73s	remaining: 0us
0:	learn: 42.5494645	total: 34.5ms	remaining: 3.41s
1:	learn: 41.2913513	total: 77.6ms	remaining: 3.8s
2:	learn: 40.1676527	total: 105ms	remaining: 3.4s
3:	learn: 38.7664819	total: 130ms	remaining: 3.13s
4:	learn: 37.5407492	total: 156ms	remaining: 2.96s
5:	learn: 36.4295331	total: 178ms	remaining: 2.79s
6:	learn: 35.2895967	total: 201ms	remaining: 2.67s
7:	learn: 34.1884539	total: 227ms	remaining: 2.61s
8:	learn: 33.1817690	total: 258ms	remaining: 2.61s
9:	learn: 32.3518195	total: 283ms	remaining: 2.55s
10:	learn: 31.4837515	total: 308ms	remaining: 2.49s
11:	learn: 30.7255972	total: 338ms	remaining: 2.48s
12:	learn: 29.9298648	total: 362ms	remaining: 2.42s
13:	learn: 29.0574249	total: 387ms	remaining: 2.38s
14:	learn: 28.4097384	total: 412ms	remaining: 2.33s
15:	learn: 27.5317445	total: 436ms	remaining: 2.29s
16:	learn: 26.7911946	total: 462ms	remaining: 2.25s
17:	learn: 26.1103465	total: 495ms	remaining: 2.25s
18:	learn: 25.5295903	total: 520ms	remaining: 2.22s
19:	learn: 24.8544960	total: 555ms	remaining: 2.22s
20:	learn: 24.2772682	total: 580ms	remaining: 2.18s
21:	learn: 23.6936944	total: 606ms	remaining: 2.15s
22:	learn: 23.1300945	total: 632ms	remaining: 2.12s
23:	learn: 22.5333494	total: 657ms	remaining: 2.08s
24:	learn: 22.0553465	total: 681ms	remaining: 2.04s
25:	learn: 21.6253628	total: 703ms	remaining: 2s
26:	learn: 21.1396219	total: 725ms	remaining: 1.96s
27:	learn: 20.7382905	total: 759ms	remaining: 1.95s
28:	learn: 20.3233915	total: 790ms	remaining: 1.93s
29:	learn: 19.9323992	total: 815ms	remaining: 1.9s
30:	learn: 19.5650439	total: 840ms	remaining: 1.87s
31:	learn: 19.2165649	total: 865ms	remaining: 1.84s
32:	learn: 18.8890056	total: 888ms	remaining: 1.8s
33:	learn: 18.5523762	total: 913ms	remaining: 1.77s
34:	learn: 18.2666116	total: 938ms	remaining: 1.74s
35:	learn: 17.9216926	total: 964ms	remaining: 1.71s
36:	learn: 17.6118879	total: 1s	remaining: 1.71s
37:	learn: 17.2653313	total: 1.04s	remaining: 1.69s
38:	learn: 16.9946585	total: 1.06s	remaining: 1.66s
39:	learn: 16.6842506	total: 1.09s	remaining: 1.63s
40:	learn: 16.4102287	total: 1.11s	remaining: 1.6s
41:	learn: 16.2288795	total: 1.14s	remaining: 1.57s
42:	learn: 15.9623692	total: 1.17s	remaining: 1.55s
43:	learn: 15.7308231	total: 1.2s	remaining: 1.53s
44:	learn: 15.4695555	total: 1.23s	remaining: 1.5s
45:	learn: 15.2706809	total: 1.25s	remaining: 1.47s
46:	learn: 15.0182699	total: 1.28s	remaining: 1.44s
47:	learn: 14.7702088	total: 1.31s	remaining: 1.42s
48:	learn: 14.6303566	total: 1.34s	remaining: 1.39s
49:	learn: 14.4038016	total: 1.37s	remaining: 1.37s
50:	learn: 14.2309807	total: 1.39s	remaining: 1.34s
51:	learn: 14.0308425	total: 1.43s	remaining: 1.32s
52:	learn: 13.8201931	total: 1.46s	remaining: 1.29s
53:	learn: 13.6070078	total: 1.49s	remaining: 1.26s
54:	learn: 13.4230690	total: 1.51s	remaining: 1.24s
55:	learn: 13.2368649	total: 1.54s	remaining: 1.21s
56:	learn: 13.0449556	total: 1.57s	remaining: 1.18s
57:	learn: 12.8375669	total: 1.59s	remaining: 1.15s
58:	learn: 12.6795194	total: 1.62s	remaining: 1.12s
59:	learn: 12.5197211	total: 1.64s	remaining: 1.1s
60:	learn: 12.4011717	total: 1.68s	remaining: 1.07s
61:	learn: 12.2396104	total: 1.7s	remaining: 1.04s
62:	learn: 12.0647878	total: 1.73s	remaining: 1.01s
63:	learn: 11.9247719	total: 1.75s	remaining: 985ms
64:	learn: 11.7923634	total: 1.78s	remaining: 957ms
65:	learn: 11.6628246	total: 1.8s	remaining: 928ms
66:	learn: 11.5688935	total: 1.83s	remaining: 904ms
67:	learn: 11.4345056	total: 1.86s	remaining: 876ms
68:	learn: 11.3136955	total: 1.9s	remaining: 852ms
69:	learn: 11.2040357	total: 1.92s	remaining: 823ms
70:	learn: 11.1067773	total: 1.95s	remaining: 796ms
71:	learn: 10.9728105	total: 1.97s	remaining: 768ms
72:	learn: 10.8338607	total: 2s	remaining: 740ms
73:	learn: 10.7202016	total: 2.02s	remaining: 711ms
74:	learn: 10.5983746	total: 2.05s	remaining: 683ms
75:	learn: 10.4882458	total: 2.08s	remaining: 657ms
76:	learn: 10.3827604	total: 2.11s	remaining: 631ms
77:	learn: 10.2485726	total: 2.14s	remaining: 603ms
78:	learn: 10.1524716	total: 2.16s	remaining: 575ms
79:	learn: 10.0765127	total: 2.19s	remaining: 547ms
80:	learn: 9.9617067	total: 2.21s	remaining: 519ms
81:	learn: 9.8357151	total: 2.24s	remaining: 491ms
82:	learn: 9.7311644	total: 2.26s	remaining: 463ms
83:	learn: 9.6314802	total: 2.29s	remaining: 436ms
84:	learn: 9.5137958	total: 2.32s	remaining: 410ms
85:	learn: 9.4420485	total: 2.35s	remaining: 382ms
86:	learn: 9.3959294	total: 2.38s	remaining: 356ms
87:	learn: 9.3057742	total: 2.4s	remaining: 328ms
88:	learn: 9.2031484	total: 2.43s	remaining: 300ms
89:	learn: 9.0996948	total: 2.45s	remaining: 273ms
90:	learn: 9.0492278	total: 2.48s	remaining: 245ms
91:	learn: 8.9400377	total: 2.5s	remaining: 217ms
92:	learn: 8.8904458	total: 2.53s	remaining: 190ms
93:	learn: 8.8102982	total: 2.56s	remaining: 163ms
94:	learn: 8.7445451	total: 2.58s	remaining: 136ms
95:	learn: 8.6796106	total: 2.6s	remaining: 109ms
96:	learn: 8.5875790	total: 2.64s	remaining: 81.6ms
97:	learn: 8.5086871	total: 2.66s	remaining: 54.3ms
98:	learn: 8.4547244	total: 2.68s	remaining: 27.1ms
99:	learn: 8.3841281	total: 2.71s	remaining: 0us
0:	learn: 46.2258117	total: 2.86ms	remaining: 283ms
1:	learn: 45.1253456	total: 28.6ms	remaining: 1.4s
2:	learn: 43.7311767	total: 55.8ms	remaining: 1.8s
3:	learn: 42.4252819	total: 80.1ms	remaining: 1.92s
4:	learn: 41.1436655	total: 103ms	remaining: 1.95s
5:	learn: 40.0337136	total: 127ms	remaining: 1.99s
6:	learn: 38.9102686	total: 159ms	remaining: 2.12s
7:	learn: 37.7859737	total: 187ms	remaining: 2.15s
8:	learn: 36.7646905	total: 219ms	remaining: 2.21s
9:	learn: 35.9495481	total: 241ms	remaining: 2.17s
10:	learn: 35.0558185	total: 266ms	remaining: 2.15s
11:	learn: 34.1958090	total: 290ms	remaining: 2.13s
12:	learn: 33.3514013	total: 315ms	remaining: 2.11s
13:	learn: 32.3317086	total: 340ms	remaining: 2.09s
14:	learn: 31.5611046	total: 367ms	remaining: 2.08s
15:	learn: 30.6373573	total: 400ms	remaining: 2.1s
16:	learn: 29.8883669	total: 437ms	remaining: 2.13s
17:	learn: 29.2985952	total: 462ms	remaining: 2.1s
18:	learn: 28.6360550	total: 488ms	remaining: 2.08s
19:	learn: 27.9757056	total: 511ms	remaining: 2.04s
20:	learn: 27.2585835	total: 536ms	remaining: 2.02s
21:	learn: 26.6366391	total: 560ms	remaining: 1.99s
22:	learn: 26.1055455	total: 584ms	remaining: 1.95s
23:	learn: 25.4961568	total: 613ms	remaining: 1.94s
24:	learn: 25.1037435	total: 640ms	remaining: 1.92s
25:	learn: 24.5258982	total: 663ms	remaining: 1.89s
26:	learn: 23.9974764	total: 697ms	remaining: 1.88s
27:	learn: 23.5108419	total: 721ms	remaining: 1.85s
28:	learn: 23.0835773	total: 745ms	remaining: 1.82s
29:	learn: 22.5744350	total: 768ms	remaining: 1.79s
30:	learn: 22.1357783	total: 792ms	remaining: 1.76s
31:	learn: 21.7316226	total: 818ms	remaining: 1.74s
32:	learn: 21.4082899	total: 851ms	remaining: 1.73s
33:	learn: 20.9640138	total: 876ms	remaining: 1.7s
34:	learn: 20.6379417	total: 902ms	remaining: 1.68s
35:	learn: 20.2688010	total: 927ms	remaining: 1.65s
36:	learn: 19.8479214	total: 960ms	remaining: 1.64s
37:	learn: 19.5684638	total: 984ms	remaining: 1.6s
38:	learn: 19.1826919	total: 1.01s	remaining: 1.58s
39:	learn: 18.9583308	total: 1.03s	remaining: 1.55s
40:	learn: 18.6736002	total: 1.06s	remaining: 1.53s
41:	learn: 18.3525328	total: 1.09s	remaining: 1.51s
42:	learn: 17.9954191	total: 1.12s	remaining: 1.48s
43:	learn: 17.6991520	total: 1.14s	remaining: 1.45s
44:	learn: 17.3697888	total: 1.17s	remaining: 1.43s
45:	learn: 17.0519636	total: 1.2s	remaining: 1.41s
46:	learn: 16.7829795	total: 1.23s	remaining: 1.38s
47:	learn: 16.5108695	total: 1.25s	remaining: 1.36s
48:	learn: 16.2366816	total: 1.29s	remaining: 1.34s
49:	learn: 15.9947350	total: 1.31s	remaining: 1.31s
50:	learn: 15.7513561	total: 1.34s	remaining: 1.29s
51:	learn: 15.4328481	total: 1.36s	remaining: 1.26s
52:	learn: 15.2497907	total: 1.39s	remaining: 1.23s
53:	learn: 15.0417076	total: 1.41s	remaining: 1.2s
54:	learn: 14.8861891	total: 1.44s	remaining: 1.17s
55:	learn: 14.6497794	total: 1.47s	remaining: 1.16s
56:	learn: 14.3664771	total: 1.5s	remaining: 1.13s
57:	learn: 14.2358168	total: 1.52s	remaining: 1.1s
58:	learn: 14.0712722	total: 1.54s	remaining: 1.07s
59:	learn: 13.9191649	total: 1.57s	remaining: 1.04s
60:	learn: 13.7032356	total: 1.59s	remaining: 1.01s
61:	learn: 13.5029041	total: 1.61s	remaining: 988ms
62:	learn: 13.3568908	total: 1.64s	remaining: 961ms
63:	learn: 13.1332696	total: 1.66s	remaining: 934ms
64:	learn: 13.0323137	total: 1.69s	remaining: 911ms
65:	learn: 12.8622078	total: 1.73s	remaining: 890ms
66:	learn: 12.7088186	total: 1.75s	remaining: 863ms
67:	learn: 12.5524646	total: 1.78s	remaining: 837ms
68:	learn: 12.4646011	total: 1.8s	remaining: 810ms
69:	learn: 12.3900687	total: 1.83s	remaining: 783ms
70:	learn: 12.2908367	total: 1.85s	remaining: 756ms
71:	learn: 12.1294405	total: 1.88s	remaining: 730ms
72:	learn: 12.0359996	total: 1.9s	remaining: 704ms
73:	learn: 11.9244352	total: 1.93s	remaining: 678ms
74:	learn: 11.8312038	total: 1.95s	remaining: 650ms
75:	learn: 11.6622123	total: 1.98s	remaining: 626ms
76:	learn: 11.5959180	total: 2s	remaining: 599ms
77:	learn: 11.4538852	total: 2.03s	remaining: 572ms
78:	learn: 11.3700375	total: 2.05s	remaining: 545ms
79:	learn: 11.2101447	total: 2.08s	remaining: 519ms
80:	learn: 11.0614634	total: 2.11s	remaining: 494ms
81:	learn: 10.9029225	total: 2.13s	remaining: 469ms
82:	learn: 10.7792030	total: 2.16s	remaining: 443ms
83:	learn: 10.6279451	total: 2.19s	remaining: 416ms
84:	learn: 10.5530267	total: 2.22s	remaining: 391ms
85:	learn: 10.4577150	total: 2.24s	remaining: 365ms
86:	learn: 10.4076417	total: 2.26s	remaining: 338ms
87:	learn: 10.3166632	total: 2.29s	remaining: 312ms
88:	learn: 10.2018151	total: 2.32s	remaining: 286ms
89:	learn: 10.0698484	total: 2.34s	remaining: 260ms
90:	learn: 10.0162824	total: 2.37s	remaining: 234ms
91:	learn: 9.9352639	total: 2.39s	remaining: 208ms
92:	learn: 9.8316734	total: 2.41s	remaining: 182ms
93:	learn: 9.7195471	total: 2.44s	remaining: 156ms
94:	learn: 9.5914894	total: 2.47s	remaining: 130ms
95:	learn: 9.5151851	total: 2.49s	remaining: 104ms
96:	learn: 9.3911314	total: 2.52s	remaining: 77.8ms
97:	learn: 9.3417706	total: 2.54s	remaining: 51.9ms
98:	learn: 9.2708440	total: 2.58s	remaining: 26ms
99:	learn: 9.1660321	total: 2.6s	remaining: 0us
0:	learn: 45.8627255	total: 2.4ms	remaining: 238ms
1:	learn: 44.7432040	total: 24.3ms	remaining: 1.19s
2:	learn: 43.4398568	total: 46.6ms	remaining: 1.51s
3:	learn: 42.1495515	total: 68.8ms	remaining: 1.65s
4:	learn: 40.9712633	total: 93.3ms	remaining: 1.77s
5:	learn: 40.0119591	total: 129ms	remaining: 2.02s
6:	learn: 39.1914360	total: 152ms	remaining: 2.02s
7:	learn: 38.1861536	total: 177ms	remaining: 2.04s
8:	learn: 37.1477128	total: 198ms	remaining: 2.01s
9:	learn: 36.3044702	total: 220ms	remaining: 1.98s
10:	learn: 35.5837917	total: 242ms	remaining: 1.96s
11:	learn: 34.8664158	total: 264ms	remaining: 1.94s
12:	learn: 33.9129833	total: 287ms	remaining: 1.92s
13:	learn: 32.9094642	total: 312ms	remaining: 1.92s
14:	learn: 32.1965787	total: 341ms	remaining: 1.93s
15:	learn: 31.4598238	total: 377ms	remaining: 1.98s
16:	learn: 30.6578027	total: 402ms	remaining: 1.96s
17:	learn: 30.0227468	total: 425ms	remaining: 1.94s
18:	learn: 29.2954728	total: 449ms	remaining: 1.91s
19:	learn: 28.5928084	total: 475ms	remaining: 1.9s
20:	learn: 27.9445984	total: 499ms	remaining: 1.88s
21:	learn: 27.3493298	total: 525ms	remaining: 1.86s
22:	learn: 26.8491966	total: 553ms	remaining: 1.85s
23:	learn: 26.3177453	total: 578ms	remaining: 1.83s
24:	learn: 25.8134533	total: 600ms	remaining: 1.8s
25:	learn: 25.2000018	total: 632ms	remaining: 1.8s
26:	learn: 24.6570461	total: 654ms	remaining: 1.77s
27:	learn: 24.1062982	total: 677ms	remaining: 1.74s
28:	learn: 23.7489370	total: 701ms	remaining: 1.72s
29:	learn: 23.2050536	total: 724ms	remaining: 1.69s
30:	learn: 22.7824379	total: 749ms	remaining: 1.67s
31:	learn: 22.4052655	total: 774ms	remaining: 1.64s
32:	learn: 21.9525639	total: 803ms	remaining: 1.63s
33:	learn: 21.5482900	total: 831ms	remaining: 1.61s
34:	learn: 21.1900983	total: 853ms	remaining: 1.58s
35:	learn: 20.8243957	total: 887ms	remaining: 1.58s
36:	learn: 20.4401288	total: 911ms	remaining: 1.55s
37:	learn: 20.0960622	total: 933ms	remaining: 1.52s
38:	learn: 19.7795108	total: 957ms	remaining: 1.5s
39:	learn: 19.4922451	total: 981ms	remaining: 1.47s
40:	learn: 19.1827582	total: 1.01s	remaining: 1.46s
41:	learn: 18.8902445	total: 1.04s	remaining: 1.43s
42:	learn: 18.6833086	total: 1.06s	remaining: 1.4s
43:	learn: 18.4251972	total: 1.08s	remaining: 1.38s
44:	learn: 18.1471037	total: 1.1s	remaining: 1.35s
45:	learn: 17.8420017	total: 1.13s	remaining: 1.33s
46:	learn: 17.6101998	total: 1.15s	remaining: 1.3s
47:	learn: 17.3353656	total: 1.18s	remaining: 1.27s
48:	learn: 17.1194789	total: 1.2s	remaining: 1.25s
49:	learn: 16.8898454	total: 1.24s	remaining: 1.24s
50:	learn: 16.6657497	total: 1.26s	remaining: 1.21s
51:	learn: 16.3832867	total: 1.29s	remaining: 1.19s
52:	learn: 16.2098226	total: 1.31s	remaining: 1.16s
53:	learn: 16.0045707	total: 1.34s	remaining: 1.14s
54:	learn: 15.8512887	total: 1.36s	remaining: 1.11s
55:	learn: 15.6485628	total: 1.39s	remaining: 1.09s
56:	learn: 15.4841428	total: 1.42s	remaining: 1.07s
57:	learn: 15.3383158	total: 1.45s	remaining: 1.05s
58:	learn: 15.2056282	total: 1.47s	remaining: 1.02s
59:	learn: 15.0698337	total: 1.5s	remaining: 997ms
60:	learn: 14.8487796	total: 1.52s	remaining: 970ms
61:	learn: 14.7255751	total: 1.54s	remaining: 943ms
62:	learn: 14.6100414	total: 1.56s	remaining: 917ms
63:	learn: 14.3864212	total: 1.58s	remaining: 891ms
64:	learn: 14.2800460	total: 1.61s	remaining: 865ms
65:	learn: 14.1017299	total: 1.64s	remaining: 845ms
66:	learn: 13.9655015	total: 1.67s	remaining: 821ms
67:	learn: 13.8065764	total: 1.69s	remaining: 797ms
68:	learn: 13.7473285	total: 1.72s	remaining: 773ms
69:	learn: 13.6967309	total: 1.74s	remaining: 747ms
70:	learn: 13.6253255	total: 1.77s	remaining: 722ms
71:	learn: 13.4974926	total: 1.79s	remaining: 697ms
72:	learn: 13.4142694	total: 1.82s	remaining: 672ms
73:	learn: 13.2902600	total: 1.84s	remaining: 647ms
74:	learn: 13.1816461	total: 1.87s	remaining: 624ms
75:	learn: 13.0809498	total: 1.9s	remaining: 600ms
76:	learn: 12.9772285	total: 1.93s	remaining: 575ms
77:	learn: 12.8413858	total: 1.95s	remaining: 550ms
78:	learn: 12.7615799	total: 1.97s	remaining: 524ms
79:	learn: 12.5808659	total: 2s	remaining: 499ms
80:	learn: 12.4938330	total: 2.02s	remaining: 474ms
81:	learn: 12.3745576	total: 2.04s	remaining: 448ms
82:	learn: 12.2474104	total: 2.07s	remaining: 423ms
83:	learn: 12.1582297	total: 2.09s	remaining: 399ms
84:	learn: 12.0528081	total: 2.13s	remaining: 376ms
85:	learn: 11.9483355	total: 2.16s	remaining: 351ms
86:	learn: 11.8683204	total: 2.18s	remaining: 326ms
87:	learn: 11.7680945	total: 2.21s	remaining: 301ms
88:	learn: 11.6635447	total: 2.23s	remaining: 276ms
89:	learn: 11.5775031	total: 2.25s	remaining: 250ms
90:	learn: 11.4860538	total: 2.28s	remaining: 225ms
91:	learn: 11.3584960	total: 2.3s	remaining: 200ms
92:	learn: 11.2180285	total: 2.33s	remaining: 175ms
93:	learn: 11.0996558	total: 2.36s	remaining: 150ms
94:	learn: 10.9688832	total: 2.38s	remaining: 126ms
95:	learn: 10.9205457	total: 2.41s	remaining: 100ms
96:	learn: 10.8462783	total: 2.43s	remaining: 75.3ms
97:	learn: 10.7481890	total: 2.46s	remaining: 50.1ms
98:	learn: 10.6396315	total: 2.48s	remaining: 25ms
99:	learn: 10.5895308	total: 2.5s	remaining: 0us
0:	learn: 46.2892189	total: 23.9ms	remaining: 2.36s
1:	learn: 44.9732744	total: 48.3ms	remaining: 2.37s
2:	learn: 43.8887345	total: 74.1ms	remaining: 2.4s
3:	learn: 42.6526320	total: 95.7ms	remaining: 2.3s
4:	learn: 41.4812505	total: 125ms	remaining: 2.38s
5:	learn: 40.4431224	total: 147ms	remaining: 2.31s
6:	learn: 39.2936749	total: 170ms	remaining: 2.26s
7:	learn: 38.1961652	total: 198ms	remaining: 2.28s
8:	learn: 37.2194841	total: 224ms	remaining: 2.27s
9:	learn: 36.2518666	total: 245ms	remaining: 2.21s
10:	learn: 35.4919224	total: 267ms	remaining: 2.16s
11:	learn: 34.6975877	total: 289ms	remaining: 2.12s
12:	learn: 33.7869362	total: 313ms	remaining: 2.09s
13:	learn: 33.0646033	total: 334ms	remaining: 2.05s
14:	learn: 32.1821772	total: 366ms	remaining: 2.07s
15:	learn: 31.4340749	total: 393ms	remaining: 2.06s
16:	learn: 30.6504198	total: 425ms	remaining: 2.07s
17:	learn: 30.0090260	total: 449ms	remaining: 2.04s
18:	learn: 29.4233143	total: 475ms	remaining: 2.02s
19:	learn: 28.7661957	total: 499ms	remaining: 2s
20:	learn: 28.1570594	total: 524ms	remaining: 1.97s
21:	learn: 27.6140124	total: 545ms	remaining: 1.93s
22:	learn: 27.0130709	total: 568ms	remaining: 1.9s
23:	learn: 26.2648081	total: 592ms	remaining: 1.87s
24:	learn: 25.7963649	total: 631ms	remaining: 1.89s
25:	learn: 25.2713860	total: 653ms	remaining: 1.86s
26:	learn: 24.8080692	total: 676ms	remaining: 1.83s
27:	learn: 24.3042862	total: 699ms	remaining: 1.8s
28:	learn: 23.9097237	total: 721ms	remaining: 1.76s
29:	learn: 23.4953174	total: 743ms	remaining: 1.73s
30:	learn: 23.0484452	total: 764ms	remaining: 1.7s
31:	learn: 22.7100962	total: 787ms	remaining: 1.67s
32:	learn: 22.1662267	total: 811ms	remaining: 1.65s
33:	learn: 21.7339884	total: 844ms	remaining: 1.64s
34:	learn: 21.3699422	total: 879ms	remaining: 1.63s
35:	learn: 21.0249329	total: 905ms	remaining: 1.61s
36:	learn: 20.6187923	total: 930ms	remaining: 1.58s
37:	learn: 20.2401981	total: 956ms	remaining: 1.56s
38:	learn: 19.9712328	total: 978ms	remaining: 1.53s
39:	learn: 19.6429610	total: 1s	remaining: 1.5s
40:	learn: 19.3281556	total: 1.03s	remaining: 1.48s
41:	learn: 19.0925924	total: 1.06s	remaining: 1.46s
42:	learn: 18.8118712	total: 1.08s	remaining: 1.43s
43:	learn: 18.5355748	total: 1.1s	remaining: 1.4s
44:	learn: 18.2783929	total: 1.13s	remaining: 1.38s
45:	learn: 17.9915490	total: 1.16s	remaining: 1.35s
46:	learn: 17.7323317	total: 1.18s	remaining: 1.33s
47:	learn: 17.4448307	total: 1.2s	remaining: 1.3s
48:	learn: 17.2419782	total: 1.22s	remaining: 1.27s
49:	learn: 16.9351352	total: 1.25s	remaining: 1.25s
50:	learn: 16.7728723	total: 1.28s	remaining: 1.23s
51:	learn: 16.5718087	total: 1.3s	remaining: 1.2s
52:	learn: 16.4047483	total: 1.33s	remaining: 1.18s
53:	learn: 16.2888950	total: 1.35s	remaining: 1.15s
54:	learn: 16.1353042	total: 1.38s	remaining: 1.13s
55:	learn: 15.9384012	total: 1.41s	remaining: 1.11s
56:	learn: 15.7488511	total: 1.43s	remaining: 1.08s
57:	learn: 15.5682846	total: 1.46s	remaining: 1.06s
58:	learn: 15.3488716	total: 1.49s	remaining: 1.03s
59:	learn: 15.2291272	total: 1.51s	remaining: 1.01s
60:	learn: 15.0582519	total: 1.53s	remaining: 981ms
61:	learn: 14.8478458	total: 1.56s	remaining: 954ms
62:	learn: 14.6663416	total: 1.58s	remaining: 927ms
63:	learn: 14.4830825	total: 1.6s	remaining: 900ms
64:	learn: 14.3300895	total: 1.63s	remaining: 879ms
65:	learn: 14.1168590	total: 1.66s	remaining: 854ms
66:	learn: 13.9783298	total: 1.69s	remaining: 833ms
67:	learn: 13.8132857	total: 1.72s	remaining: 808ms
68:	learn: 13.7050863	total: 1.74s	remaining: 782ms
69:	learn: 13.5742501	total: 1.76s	remaining: 757ms
70:	learn: 13.4851362	total: 1.79s	remaining: 731ms
71:	learn: 13.3300610	total: 1.81s	remaining: 706ms
72:	learn: 13.2223060	total: 1.84s	remaining: 680ms
73:	learn: 13.0706731	total: 1.86s	remaining: 653ms
74:	learn: 12.9178099	total: 1.89s	remaining: 631ms
75:	learn: 12.7954645	total: 1.92s	remaining: 607ms
76:	learn: 12.7133688	total: 1.95s	remaining: 582ms
77:	learn: 12.5745537	total: 1.97s	remaining: 556ms
78:	learn: 12.4765302	total: 1.99s	remaining: 530ms
79:	learn: 12.3609145	total: 2.01s	remaining: 503ms
80:	learn: 12.2437759	total: 2.04s	remaining: 478ms
81:	learn: 12.1583763	total: 2.06s	remaining: 452ms
82:	learn: 12.0202500	total: 2.08s	remaining: 427ms
83:	learn: 11.9125166	total: 2.12s	remaining: 403ms
84:	learn: 11.8100729	total: 2.15s	remaining: 379ms
85:	learn: 11.7509521	total: 2.17s	remaining: 354ms
86:	learn: 11.6448436	total: 2.2s	remaining: 329ms
87:	learn: 11.5550170	total: 2.22s	remaining: 303ms
88:	learn: 11.4624708	total: 2.24s	remaining: 277ms
89:	learn: 11.3547761	total: 2.27s	remaining: 252ms
90:	learn: 11.2513910	total: 2.29s	remaining: 226ms
91:	learn: 11.1414483	total: 2.31s	remaining: 201ms
92:	learn: 11.0742264	total: 2.34s	remaining: 176ms
93:	learn: 10.9721772	total: 2.37s	remaining: 151ms
94:	learn: 10.9118054	total: 2.4s	remaining: 126ms
95:	learn: 10.8465290	total: 2.42s	remaining: 101ms
96:	learn: 10.7451745	total: 2.44s	remaining: 75.6ms
97:	learn: 10.6173565	total: 2.47s	remaining: 50.3ms
98:	learn: 10.5562158	total: 2.49s	remaining: 25.1ms
99:	learn: 10.4564960	total: 2.51s	remaining: 0us
0:	learn: 27.3776612	total: 24ms	remaining: 2.38s
1:	learn: 26.7619003	total: 48.5ms	remaining: 2.38s
2:	learn: 26.0057626	total: 69.2ms	remaining: 2.24s
3:	learn: 25.4280982	total: 90.1ms	remaining: 2.16s
4:	learn: 24.8347609	total: 121ms	remaining: 2.29s
5:	learn: 24.2526574	total: 149ms	remaining: 2.33s
6:	learn: 23.7478806	total: 175ms	remaining: 2.33s
7:	learn: 23.2677666	total: 197ms	remaining: 2.27s
8:	learn: 22.7564310	total: 218ms	remaining: 2.21s
9:	learn: 22.2873770	total: 241ms	remaining: 2.17s
10:	learn: 21.8088174	total: 262ms	remaining: 2.12s
11:	learn: 21.4086875	total: 285ms	remaining: 2.09s
12:	learn: 20.9489217	total: 308ms	remaining: 2.06s
13:	learn: 20.4585233	total: 330ms	remaining: 2.02s
14:	learn: 20.0177760	total: 359ms	remaining: 2.03s
15:	learn: 19.5981890	total: 381ms	remaining: 2s
16:	learn: 19.2041885	total: 411ms	remaining: 2s
17:	learn: 18.8422550	total: 438ms	remaining: 1.99s
18:	learn: 18.4774037	total: 463ms	remaining: 1.97s
19:	learn: 18.0931699	total: 487ms	remaining: 1.95s
20:	learn: 17.6856423	total: 512ms	remaining: 1.93s
21:	learn: 17.3394010	total: 533ms	remaining: 1.89s
22:	learn: 17.0165204	total: 556ms	remaining: 1.86s
23:	learn: 16.7728230	total: 580ms	remaining: 1.84s
24:	learn: 16.5020155	total: 606ms	remaining: 1.82s
25:	learn: 16.2110813	total: 645ms	remaining: 1.84s
26:	learn: 15.9439416	total: 667ms	remaining: 1.8s
27:	learn: 15.6605702	total: 690ms	remaining: 1.77s
28:	learn: 15.4180978	total: 711ms	remaining: 1.74s
29:	learn: 15.1463921	total: 734ms	remaining: 1.71s
30:	learn: 14.8961946	total: 756ms	remaining: 1.68s
31:	learn: 14.6763296	total: 780ms	remaining: 1.66s
32:	learn: 14.4161484	total: 804ms	remaining: 1.63s
33:	learn: 14.1748686	total: 833ms	remaining: 1.62s
34:	learn: 13.9722494	total: 861ms	remaining: 1.6s
35:	learn: 13.7632896	total: 894ms	remaining: 1.59s
36:	learn: 13.5572592	total: 918ms	remaining: 1.56s
37:	learn: 13.3896577	total: 942ms	remaining: 1.54s
38:	learn: 13.2796441	total: 966ms	remaining: 1.51s
39:	learn: 13.0896679	total: 988ms	remaining: 1.48s
40:	learn: 12.8898238	total: 1.01s	remaining: 1.46s
41:	learn: 12.6824069	total: 1.04s	remaining: 1.44s
42:	learn: 12.5459667	total: 1.06s	remaining: 1.41s
43:	learn: 12.3859203	total: 1.08s	remaining: 1.38s
44:	learn: 12.2099364	total: 1.11s	remaining: 1.35s
45:	learn: 12.0649044	total: 1.13s	remaining: 1.33s
46:	learn: 11.8934147	total: 1.16s	remaining: 1.31s
47:	learn: 11.7212144	total: 1.18s	remaining: 1.28s
48:	learn: 11.5585360	total: 1.2s	remaining: 1.25s
49:	learn: 11.4204354	total: 1.23s	remaining: 1.23s
50:	learn: 11.3264427	total: 1.26s	remaining: 1.21s
51:	learn: 11.2063486	total: 1.29s	remaining: 1.19s
52:	learn: 11.0712206	total: 1.31s	remaining: 1.16s
53:	learn: 10.9205088	total: 1.34s	remaining: 1.14s
54:	learn: 10.8155412	total: 1.36s	remaining: 1.11s
55:	learn: 10.7286854	total: 1.38s	remaining: 1.09s
56:	learn: 10.6088466	total: 1.42s	remaining: 1.07s
57:	learn: 10.4999885	total: 1.44s	remaining: 1.04s
58:	learn: 10.4022194	total: 1.47s	remaining: 1.02s
59:	learn: 10.3147130	total: 1.49s	remaining: 996ms
60:	learn: 10.2011489	total: 1.52s	remaining: 970ms
61:	learn: 10.1094372	total: 1.54s	remaining: 944ms
62:	learn: 10.0248970	total: 1.56s	remaining: 918ms
63:	learn: 9.9192710	total: 1.58s	remaining: 892ms
64:	learn: 9.8577360	total: 1.61s	remaining: 867ms
65:	learn: 9.7737103	total: 1.64s	remaining: 845ms
66:	learn: 9.6706617	total: 1.67s	remaining: 824ms
67:	learn: 9.6042727	total: 1.7s	remaining: 800ms
68:	learn: 9.5355377	total: 1.72s	remaining: 775ms
69:	learn: 9.4615216	total: 1.75s	remaining: 750ms
70:	learn: 9.3702045	total: 1.77s	remaining: 724ms
71:	learn: 9.3035392	total: 1.8s	remaining: 699ms
72:	learn: 9.2322686	total: 1.82s	remaining: 673ms
73:	learn: 9.1431916	total: 1.84s	remaining: 647ms
74:	learn: 9.0869466	total: 1.87s	remaining: 623ms
75:	learn: 9.0117390	total: 1.9s	remaining: 599ms
76:	learn: 8.9580443	total: 1.92s	remaining: 573ms
77:	learn: 8.8649939	total: 1.95s	remaining: 549ms
78:	learn: 8.7792713	total: 1.97s	remaining: 523ms
79:	learn: 8.7164606	total: 1.99s	remaining: 498ms
80:	learn: 8.6340559	total: 2.01s	remaining: 473ms
81:	learn: 8.5697104	total: 2.04s	remaining: 447ms
82:	learn: 8.5273758	total: 2.06s	remaining: 423ms
83:	learn: 8.4394788	total: 2.09s	remaining: 398ms
84:	learn: 8.3672415	total: 2.12s	remaining: 373ms
85:	learn: 8.2813444	total: 2.14s	remaining: 348ms
86:	learn: 8.1994983	total: 2.16s	remaining: 323ms
87:	learn: 8.1003577	total: 2.19s	remaining: 299ms
88:	learn: 8.0501976	total: 2.22s	remaining: 274ms
89:	learn: 7.9718830	total: 2.24s	remaining: 249ms
90:	learn: 7.9114534	total: 2.27s	remaining: 224ms
91:	learn: 7.8319856	total: 2.3s	remaining: 200ms
92:	learn: 7.7731246	total: 2.32s	remaining: 175ms
93:	learn: 7.7165850	total: 2.35s	remaining: 150ms
94:	learn: 7.6448498	total: 2.37s	remaining: 125ms
95:	learn: 7.5709919	total: 2.39s	remaining: 99.6ms
96:	learn: 7.5184082	total: 2.41s	remaining: 74.7ms
97:	learn: 7.4786866	total: 2.44s	remaining: 49.7ms
98:	learn: 7.4301201	total: 2.47s	remaining: 24.9ms
99:	learn: 7.3416932	total: 2.49s	remaining: 0us
0:	learn: 42.6391731	total: 24.5ms	remaining: 2.43s
1:	learn: 41.2755994	total: 48.1ms	remaining: 2.36s
2:	learn: 40.1418308	total: 73.6ms	remaining: 2.38s
3:	learn: 38.9707156	total: 96.1ms	remaining: 2.31s
4:	learn: 37.8723622	total: 119ms	remaining: 2.26s
5:	learn: 36.6981834	total: 144ms	remaining: 2.26s
6:	learn: 35.6210108	total: 167ms	remaining: 2.23s
7:	learn: 34.5154078	total: 196ms	remaining: 2.25s
8:	learn: 33.4581011	total: 229ms	remaining: 2.31s
9:	learn: 32.5872455	total: 250ms	remaining: 2.25s
10:	learn: 31.6311510	total: 273ms	remaining: 2.21s
11:	learn: 30.8222401	total: 294ms	remaining: 2.16s
12:	learn: 29.9305192	total: 315ms	remaining: 2.11s
13:	learn: 29.0742133	total: 337ms	remaining: 2.07s
14:	learn: 28.3687544	total: 359ms	remaining: 2.03s
15:	learn: 27.5730558	total: 381ms	remaining: 2s
16:	learn: 26.9376082	total: 403ms	remaining: 1.97s
17:	learn: 26.2254949	total: 432ms	remaining: 1.97s
18:	learn: 25.5974939	total: 469ms	remaining: 2s
19:	learn: 25.0097187	total: 492ms	remaining: 1.97s
20:	learn: 24.3722243	total: 516ms	remaining: 1.94s
21:	learn: 23.8249140	total: 541ms	remaining: 1.92s
22:	learn: 23.3953969	total: 564ms	remaining: 1.89s
23:	learn: 22.8726238	total: 587ms	remaining: 1.86s
24:	learn: 22.3407723	total: 611ms	remaining: 1.83s
25:	learn: 21.8360330	total: 642ms	remaining: 1.83s
26:	learn: 21.4050665	total: 645ms	remaining: 1.74s
27:	learn: 20.9389245	total: 668ms	remaining: 1.72s
28:	learn: 20.5166767	total: 690ms	remaining: 1.69s
29:	learn: 20.1190641	total: 711ms	remaining: 1.66s
30:	learn: 19.7189491	total: 742ms	remaining: 1.65s
31:	learn: 19.3748181	total: 763ms	remaining: 1.62s
32:	learn: 19.0116312	total: 785ms	remaining: 1.59s
33:	learn: 18.6982407	total: 809ms	remaining: 1.57s
34:	learn: 18.3109965	total: 832ms	remaining: 1.54s
35:	learn: 17.9620798	total: 862ms	remaining: 1.53s
36:	learn: 17.6396740	total: 888ms	remaining: 1.51s
37:	learn: 17.3596962	total: 911ms	remaining: 1.49s
38:	learn: 17.0107107	total: 936ms	remaining: 1.46s
39:	learn: 16.7000770	total: 959ms	remaining: 1.44s
40:	learn: 16.4406609	total: 973ms	remaining: 1.4s
41:	learn: 16.2482533	total: 1s	remaining: 1.38s
42:	learn: 16.0039366	total: 1.02s	remaining: 1.36s
43:	learn: 15.7538572	total: 1.05s	remaining: 1.33s
44:	learn: 15.5095380	total: 1.08s	remaining: 1.32s
45:	learn: 15.2678319	total: 1.1s	remaining: 1.29s
46:	learn: 15.0494495	total: 1.13s	remaining: 1.27s
47:	learn: 14.8347400	total: 1.15s	remaining: 1.24s
48:	learn: 14.6035398	total: 1.17s	remaining: 1.22s
49:	learn: 14.3913639	total: 1.19s	remaining: 1.19s
50:	learn: 14.1928022	total: 1.22s	remaining: 1.17s
51:	learn: 13.9985580	total: 1.24s	remaining: 1.15s
52:	learn: 13.8322220	total: 1.27s	remaining: 1.13s
53:	learn: 13.6455937	total: 1.3s	remaining: 1.1s
54:	learn: 13.4402019	total: 1.32s	remaining: 1.08s
55:	learn: 13.2899163	total: 1.35s	remaining: 1.06s
56:	learn: 13.1694614	total: 1.37s	remaining: 1.03s
57:	learn: 13.0722892	total: 1.4s	remaining: 1.01s
58:	learn: 12.9065251	total: 1.42s	remaining: 986ms
59:	learn: 12.6992885	total: 1.44s	remaining: 961ms
60:	learn: 12.5384562	total: 1.47s	remaining: 941ms
61:	learn: 12.4105591	total: 1.5s	remaining: 918ms
62:	learn: 12.2952504	total: 1.53s	remaining: 897ms
63:	learn: 12.1427365	total: 1.55s	remaining: 872ms
64:	learn: 11.9954361	total: 1.57s	remaining: 848ms
65:	learn: 11.8161234	total: 1.6s	remaining: 823ms
66:	learn: 11.6849978	total: 1.62s	remaining: 798ms
67:	learn: 11.5405300	total: 1.64s	remaining: 772ms
68:	learn: 11.3806762	total: 1.66s	remaining: 747ms
69:	learn: 11.2746848	total: 1.69s	remaining: 723ms
70:	learn: 11.1518256	total: 1.72s	remaining: 702ms
71:	learn: 11.0730779	total: 1.75s	remaining: 679ms
72:	learn: 10.9736725	total: 1.78s	remaining: 658ms
73:	learn: 10.8430563	total: 1.8s	remaining: 633ms
74:	learn: 10.7142220	total: 1.83s	remaining: 609ms
75:	learn: 10.6141640	total: 1.85s	remaining: 585ms
76:	learn: 10.5264853	total: 1.87s	remaining: 560ms
77:	learn: 10.3929390	total: 1.9s	remaining: 535ms
78:	learn: 10.3163176	total: 1.92s	remaining: 511ms
79:	learn: 10.2171240	total: 1.95s	remaining: 488ms
80:	learn: 10.1381738	total: 1.97s	remaining: 463ms
81:	learn: 10.0402437	total: 2s	remaining: 439ms
82:	learn: 9.9223565	total: 2.03s	remaining: 416ms
83:	learn: 9.8184057	total: 2.06s	remaining: 392ms
84:	learn: 9.7221978	total: 2.08s	remaining: 367ms
85:	learn: 9.6417031	total: 2.1s	remaining: 342ms
86:	learn: 9.5593969	total: 2.13s	remaining: 319ms
87:	learn: 9.4678992	total: 2.16s	remaining: 295ms
88:	learn: 9.3855757	total: 2.19s	remaining: 270ms
89:	learn: 9.2884031	total: 2.21s	remaining: 246ms
90:	learn: 9.2099382	total: 2.23s	remaining: 221ms
91:	learn: 9.1357061	total: 2.26s	remaining: 196ms
92:	learn: 9.0690328	total: 2.28s	remaining: 172ms
93:	learn: 8.9904694	total: 2.31s	remaining: 148ms
94:	learn: 8.9256893	total: 2.34s	remaining: 123ms
95:	learn: 8.8600084	total: 2.36s	remaining: 98.5ms
96:	learn: 8.8091154	total: 2.39s	remaining: 73.9ms
97:	learn: 8.7280528	total: 2.41s	remaining: 49.2ms
98:	learn: 8.6761440	total: 2.43s	remaining: 24.6ms
99:	learn: 8.6181192	total: 2.45s	remaining: 0us
0:	learn: 45.9988128	total: 22.6ms	remaining: 2.24s
1:	learn: 44.7653841	total: 44.7ms	remaining: 2.19s
2:	learn: 43.4693688	total: 72.8ms	remaining: 2.35s
3:	learn: 42.2495168	total: 111ms	remaining: 2.67s
4:	learn: 41.2273909	total: 138ms	remaining: 2.62s
5:	learn: 40.0623352	total: 163ms	remaining: 2.55s
6:	learn: 39.0139162	total: 186ms	remaining: 2.48s
7:	learn: 37.9905503	total: 208ms	remaining: 2.39s
8:	learn: 37.1460179	total: 232ms	remaining: 2.34s
9:	learn: 36.1321769	total: 255ms	remaining: 2.3s
10:	learn: 35.2434048	total: 278ms	remaining: 2.25s
11:	learn: 34.3919476	total: 307ms	remaining: 2.25s
12:	learn: 33.5464400	total: 332ms	remaining: 2.22s
13:	learn: 32.5752711	total: 354ms	remaining: 2.17s
14:	learn: 31.8573507	total: 384ms	remaining: 2.18s
15:	learn: 31.1481980	total: 406ms	remaining: 2.13s
16:	learn: 30.4578224	total: 429ms	remaining: 2.09s
17:	learn: 29.8404841	total: 450ms	remaining: 2.05s
18:	learn: 29.1314604	total: 473ms	remaining: 2.02s
19:	learn: 28.5024706	total: 497ms	remaining: 1.99s
20:	learn: 27.9368896	total: 525ms	remaining: 1.98s
21:	learn: 27.2136491	total: 554ms	remaining: 1.96s
22:	learn: 26.6230078	total: 576ms	remaining: 1.93s
23:	learn: 26.0604635	total: 600ms	remaining: 1.9s
24:	learn: 25.6309424	total: 635ms	remaining: 1.9s
25:	learn: 25.1761698	total: 659ms	remaining: 1.88s
26:	learn: 24.6368216	total: 681ms	remaining: 1.84s
27:	learn: 24.1028972	total: 706ms	remaining: 1.81s
28:	learn: 23.3990224	total: 736ms	remaining: 1.8s
29:	learn: 22.9088559	total: 759ms	remaining: 1.77s
30:	learn: 22.4793217	total: 780ms	remaining: 1.74s
31:	learn: 22.0592669	total: 801ms	remaining: 1.7s
32:	learn: 21.6715811	total: 822ms	remaining: 1.67s
33:	learn: 21.1907911	total: 843ms	remaining: 1.64s
34:	learn: 20.8045504	total: 864ms	remaining: 1.6s
35:	learn: 20.4670784	total: 893ms	remaining: 1.59s
36:	learn: 20.0165788	total: 921ms	remaining: 1.57s
37:	learn: 19.6859173	total: 947ms	remaining: 1.54s
38:	learn: 19.3641283	total: 971ms	remaining: 1.52s
39:	learn: 19.0291194	total: 995ms	remaining: 1.49s
40:	learn: 18.7204204	total: 1.02s	remaining: 1.46s
41:	learn: 18.4000101	total: 1.04s	remaining: 1.44s
42:	learn: 18.0910445	total: 1.06s	remaining: 1.41s
43:	learn: 17.8354609	total: 1.09s	remaining: 1.38s
44:	learn: 17.4982243	total: 1.11s	remaining: 1.36s
45:	learn: 17.1895897	total: 1.14s	remaining: 1.34s
46:	learn: 16.9440833	total: 1.17s	remaining: 1.31s
47:	learn: 16.6112102	total: 1.19s	remaining: 1.29s
48:	learn: 16.3320235	total: 1.22s	remaining: 1.27s
49:	learn: 16.0523610	total: 1.24s	remaining: 1.24s
50:	learn: 15.8256738	total: 1.26s	remaining: 1.21s
51:	learn: 15.5699393	total: 1.28s	remaining: 1.18s
52:	learn: 15.3531799	total: 1.3s	remaining: 1.16s
53:	learn: 15.1364230	total: 1.33s	remaining: 1.13s
54:	learn: 15.0012063	total: 1.35s	remaining: 1.1s
55:	learn: 14.7171740	total: 1.38s	remaining: 1.08s
56:	learn: 14.5897576	total: 1.38s	remaining: 1.04s
57:	learn: 14.3886878	total: 1.41s	remaining: 1.02s
58:	learn: 14.1942115	total: 1.44s	remaining: 999ms
59:	learn: 14.0135398	total: 1.46s	remaining: 974ms
60:	learn: 13.8118263	total: 1.48s	remaining: 949ms
61:	learn: 13.6444047	total: 1.51s	remaining: 925ms
62:	learn: 13.4728078	total: 1.53s	remaining: 898ms
63:	learn: 13.3104934	total: 1.55s	remaining: 873ms
64:	learn: 13.1385144	total: 1.57s	remaining: 847ms
65:	learn: 13.0087777	total: 1.6s	remaining: 825ms
66:	learn: 12.8457835	total: 1.63s	remaining: 800ms
67:	learn: 12.6975263	total: 1.65s	remaining: 778ms
68:	learn: 12.5582839	total: 1.67s	remaining: 752ms
69:	learn: 12.4210776	total: 1.7s	remaining: 726ms
70:	learn: 12.2737286	total: 1.72s	remaining: 701ms
71:	learn: 12.1587075	total: 1.74s	remaining: 676ms
72:	learn: 12.0323022	total: 1.76s	remaining: 650ms
73:	learn: 11.8667900	total: 1.78s	remaining: 626ms
74:	learn: 11.6990385	total: 1.81s	remaining: 603ms
75:	learn: 11.5755058	total: 1.84s	remaining: 580ms
76:	learn: 11.4954152	total: 1.86s	remaining: 556ms
77:	learn: 11.3827464	total: 1.89s	remaining: 534ms
78:	learn: 11.2924968	total: 1.92s	remaining: 509ms
79:	learn: 11.1938217	total: 1.94s	remaining: 485ms
80:	learn: 11.0766477	total: 1.96s	remaining: 460ms
81:	learn: 10.9824487	total: 1.98s	remaining: 435ms
82:	learn: 10.8707168	total: 2.01s	remaining: 411ms
83:	learn: 10.7746205	total: 2.03s	remaining: 387ms
84:	learn: 10.6738461	total: 2.05s	remaining: 362ms
85:	learn: 10.5871227	total: 2.07s	remaining: 338ms
86:	learn: 10.4566607	total: 2.09s	remaining: 313ms
87:	learn: 10.3506633	total: 2.12s	remaining: 289ms
88:	learn: 10.2104644	total: 2.15s	remaining: 265ms
89:	learn: 10.0965839	total: 2.17s	remaining: 241ms
90:	learn: 9.9802927	total: 2.19s	remaining: 217ms
91:	learn: 9.9195276	total: 2.21s	remaining: 193ms
92:	learn: 9.8559698	total: 2.24s	remaining: 169ms
93:	learn: 9.7396780	total: 2.27s	remaining: 145ms
94:	learn: 9.6945725	total: 2.3s	remaining: 121ms
95:	learn: 9.5897565	total: 2.32s	remaining: 96.8ms
96:	learn: 9.5012011	total: 2.35s	remaining: 72.5ms
97:	learn: 9.4123715	total: 2.37s	remaining: 48.3ms
98:	learn: 9.3288366	total: 2.39s	remaining: 24.2ms
99:	learn: 9.2648715	total: 2.42s	remaining: 0us
0:	learn: 45.5336925	total: 20.6ms	remaining: 2.04s
1:	learn: 44.2714175	total: 41.3ms	remaining: 2.02s
2:	learn: 43.1477944	total: 63.6ms	remaining: 2.06s
3:	learn: 41.9891776	total: 83.9ms	remaining: 2.01s
4:	learn: 41.0638986	total: 105ms	remaining: 1.99s
5:	learn: 39.9800801	total: 126ms	remaining: 1.97s
6:	learn: 38.9048061	total: 147ms	remaining: 1.96s
7:	learn: 38.0749429	total: 170ms	remaining: 1.96s
8:	learn: 37.3966644	total: 200ms	remaining: 2.02s
9:	learn: 36.4671331	total: 233ms	remaining: 2.1s
10:	learn: 35.6649217	total: 258ms	remaining: 2.08s
11:	learn: 34.8793657	total: 281ms	remaining: 2.06s
12:	learn: 34.0737401	total: 306ms	remaining: 2.04s
13:	learn: 33.2560999	total: 326ms	remaining: 2s
14:	learn: 32.4184623	total: 348ms	remaining: 1.97s
15:	learn: 31.6803206	total: 375ms	remaining: 1.97s
16:	learn: 30.9276344	total: 401ms	remaining: 1.96s
17:	learn: 30.3590041	total: 422ms	remaining: 1.92s
18:	learn: 29.7789888	total: 443ms	remaining: 1.89s
19:	learn: 29.1098261	total: 470ms	remaining: 1.88s
20:	learn: 28.4824889	total: 490ms	remaining: 1.84s
21:	learn: 27.9675744	total: 511ms	remaining: 1.81s
22:	learn: 27.4793215	total: 532ms	remaining: 1.78s
23:	learn: 26.8920542	total: 552ms	remaining: 1.75s
24:	learn: 26.2736657	total: 574ms	remaining: 1.72s
25:	learn: 25.6908003	total: 604ms	remaining: 1.72s
26:	learn: 25.1288844	total: 632ms	remaining: 1.71s
27:	learn: 24.6933320	total: 655ms	remaining: 1.68s
28:	learn: 24.1372567	total: 680ms	remaining: 1.66s
29:	learn: 23.7103515	total: 714ms	remaining: 1.67s
30:	learn: 23.1647499	total: 737ms	remaining: 1.64s
31:	learn: 22.7009216	total: 761ms	remaining: 1.62s
32:	learn: 22.2792229	total: 784ms	remaining: 1.59s
33:	learn: 21.8004244	total: 811ms	remaining: 1.57s
34:	learn: 21.3578361	total: 836ms	remaining: 1.55s
35:	learn: 21.0262832	total: 858ms	remaining: 1.52s
36:	learn: 20.5787502	total: 880ms	remaining: 1.5s
37:	learn: 20.3083055	total: 900ms	remaining: 1.47s
38:	learn: 19.9902529	total: 921ms	remaining: 1.44s
39:	learn: 19.6059571	total: 943ms	remaining: 1.41s
40:	learn: 19.3890959	total: 974ms	remaining: 1.4s
41:	learn: 19.0549255	total: 997ms	remaining: 1.38s
42:	learn: 18.7283215	total: 1.03s	remaining: 1.37s
43:	learn: 18.4448725	total: 1.06s	remaining: 1.34s
44:	learn: 18.1578001	total: 1.08s	remaining: 1.32s
45:	learn: 17.8777474	total: 1.1s	remaining: 1.29s
46:	learn: 17.6428221	total: 1.13s	remaining: 1.27s
47:	learn: 17.3887752	total: 1.15s	remaining: 1.25s
48:	learn: 17.1475761	total: 1.17s	remaining: 1.22s
49:	learn: 16.9064363	total: 1.19s	remaining: 1.19s
50:	learn: 16.6414681	total: 1.21s	remaining: 1.17s
51:	learn: 16.4549974	total: 1.24s	remaining: 1.15s
52:	learn: 16.2617558	total: 1.27s	remaining: 1.13s
53:	learn: 16.0258241	total: 1.3s	remaining: 1.1s
54:	learn: 15.7694686	total: 1.32s	remaining: 1.08s
55:	learn: 15.5449602	total: 1.34s	remaining: 1.05s
56:	learn: 15.3515330	total: 1.36s	remaining: 1.03s
57:	learn: 15.1120403	total: 1.39s	remaining: 1s
58:	learn: 14.9131368	total: 1.41s	remaining: 978ms
59:	learn: 14.8021921	total: 1.43s	remaining: 953ms
60:	learn: 14.6564259	total: 1.45s	remaining: 929ms
61:	learn: 14.5253260	total: 1.48s	remaining: 909ms
62:	learn: 14.3975427	total: 1.52s	remaining: 891ms
63:	learn: 14.3060204	total: 1.54s	remaining: 866ms
64:	learn: 14.1283681	total: 1.56s	remaining: 841ms
65:	learn: 14.0159063	total: 1.58s	remaining: 816ms
66:	learn: 13.8712541	total: 1.61s	remaining: 791ms
67:	learn: 13.7852998	total: 1.63s	remaining: 767ms
68:	learn: 13.6790164	total: 1.65s	remaining: 742ms
69:	learn: 13.5253745	total: 1.67s	remaining: 718ms
70:	learn: 13.3959663	total: 1.7s	remaining: 695ms
71:	learn: 13.2062955	total: 1.73s	remaining: 671ms
72:	learn: 13.0788709	total: 1.75s	remaining: 649ms
73:	learn: 12.9513184	total: 1.78s	remaining: 624ms
74:	learn: 12.8198556	total: 1.8s	remaining: 599ms
75:	learn: 12.7137549	total: 1.82s	remaining: 575ms
76:	learn: 12.6243477	total: 1.84s	remaining: 550ms
77:	learn: 12.5241564	total: 1.86s	remaining: 526ms
78:	learn: 12.4445782	total: 1.89s	remaining: 501ms
79:	learn: 12.3816501	total: 1.92s	remaining: 479ms
80:	learn: 12.2846914	total: 1.94s	remaining: 456ms
81:	learn: 12.1419498	total: 1.97s	remaining: 432ms
82:	learn: 12.0846494	total: 1.99s	remaining: 407ms
83:	learn: 11.9851484	total: 2.02s	remaining: 385ms
84:	learn: 11.8905738	total: 2.04s	remaining: 360ms
85:	learn: 11.7718790	total: 2.06s	remaining: 336ms
86:	learn: 11.6854413	total: 2.08s	remaining: 312ms
87:	learn: 11.6206110	total: 2.1s	remaining: 287ms
88:	learn: 11.5376098	total: 2.13s	remaining: 264ms
89:	learn: 11.4235068	total: 2.16s	remaining: 240ms
90:	learn: 11.3477955	total: 2.18s	remaining: 215ms
91:	learn: 11.2663772	total: 2.2s	remaining: 191ms
92:	learn: 11.1916556	total: 2.22s	remaining: 167ms
93:	learn: 11.0921504	total: 2.25s	remaining: 143ms
94:	learn: 10.9622375	total: 2.27s	remaining: 119ms
95:	learn: 10.8882085	total: 2.29s	remaining: 95.4ms
96:	learn: 10.8086218	total: 2.31s	remaining: 71.6ms
97:	learn: 10.7552220	total: 2.34s	remaining: 47.8ms
98:	learn: 10.6929666	total: 2.37s	remaining: 23.9ms
99:	learn: 10.6200033	total: 2.39s	remaining: 0us
0:	learn: 46.3366259	total: 20.5ms	remaining: 2.03s
1:	learn: 45.2205278	total: 41.6ms	remaining: 2.04s
2:	learn: 43.9887404	total: 67.1ms	remaining: 2.17s
3:	learn: 42.8240666	total: 91.3ms	remaining: 2.19s
4:	learn: 41.6086617	total: 124ms	remaining: 2.35s
5:	learn: 40.5606446	total: 147ms	remaining: 2.31s
6:	learn: 39.6241326	total: 171ms	remaining: 2.27s
7:	learn: 39.0016852	total: 195ms	remaining: 2.24s
8:	learn: 37.8501670	total: 218ms	remaining: 2.2s
9:	learn: 37.0215474	total: 239ms	remaining: 2.15s
10:	learn: 36.0215020	total: 260ms	remaining: 2.11s
11:	learn: 35.2421331	total: 285ms	remaining: 2.09s
12:	learn: 34.5416837	total: 314ms	remaining: 2.1s
13:	learn: 33.7787649	total: 337ms	remaining: 2.07s
14:	learn: 32.9860883	total: 366ms	remaining: 2.07s
15:	learn: 32.2123752	total: 387ms	remaining: 2.03s
16:	learn: 31.3564648	total: 408ms	remaining: 1.99s
17:	learn: 30.7859979	total: 428ms	remaining: 1.95s
18:	learn: 30.1443515	total: 449ms	remaining: 1.91s
19:	learn: 29.4880724	total: 469ms	remaining: 1.88s
20:	learn: 28.9635727	total: 492ms	remaining: 1.85s
21:	learn: 28.4853342	total: 517ms	remaining: 1.83s
22:	learn: 27.9796348	total: 550ms	remaining: 1.84s
23:	learn: 27.4360487	total: 576ms	remaining: 1.82s
24:	learn: 26.8685214	total: 600ms	remaining: 1.8s
25:	learn: 26.1769206	total: 630ms	remaining: 1.79s
26:	learn: 25.7146048	total: 652ms	remaining: 1.76s
27:	learn: 25.2614850	total: 674ms	remaining: 1.73s
28:	learn: 24.6626472	total: 696ms	remaining: 1.7s
29:	learn: 24.2501259	total: 717ms	remaining: 1.67s
30:	learn: 23.7892661	total: 741ms	remaining: 1.65s
31:	learn: 23.2729078	total: 768ms	remaining: 1.63s
32:	learn: 22.8969731	total: 793ms	remaining: 1.61s
33:	learn: 22.4567570	total: 814ms	remaining: 1.58s
34:	learn: 22.0569858	total: 836ms	remaining: 1.55s
35:	learn: 21.7317775	total: 858ms	remaining: 1.52s
36:	learn: 21.3890971	total: 888ms	remaining: 1.51s
37:	learn: 21.0664504	total: 910ms	remaining: 1.48s
38:	learn: 20.7379659	total: 932ms	remaining: 1.46s
39:	learn: 20.4423699	total: 954ms	remaining: 1.43s
40:	learn: 20.1526720	total: 987ms	remaining: 1.42s
41:	learn: 19.8706547	total: 1.01s	remaining: 1.4s
42:	learn: 19.5139134	total: 1.04s	remaining: 1.37s
43:	learn: 19.3495951	total: 1.06s	remaining: 1.35s
44:	learn: 19.1314757	total: 1.08s	remaining: 1.33s
45:	learn: 18.7971159	total: 1.11s	remaining: 1.3s
46:	learn: 18.5447051	total: 1.14s	remaining: 1.28s
47:	learn: 18.2328785	total: 1.16s	remaining: 1.26s
48:	learn: 17.9622938	total: 1.19s	remaining: 1.24s
49:	learn: 17.7264205	total: 1.21s	remaining: 1.21s
50:	learn: 17.4530592	total: 1.23s	remaining: 1.18s
51:	learn: 17.2236644	total: 1.25s	remaining: 1.16s
52:	learn: 17.0122792	total: 1.28s	remaining: 1.13s
53:	learn: 16.7599064	total: 1.3s	remaining: 1.1s
54:	learn: 16.5146699	total: 1.32s	remaining: 1.08s
55:	learn: 16.2531414	total: 1.34s	remaining: 1.05s
56:	learn: 16.0997208	total: 1.36s	remaining: 1.03s
57:	learn: 15.8452412	total: 1.39s	remaining: 1.01s
58:	learn: 15.6294900	total: 1.41s	remaining: 983ms
59:	learn: 15.4564548	total: 1.44s	remaining: 961ms
60:	learn: 15.2978533	total: 1.47s	remaining: 937ms
61:	learn: 15.0976912	total: 1.49s	remaining: 912ms
62:	learn: 14.9094446	total: 1.51s	remaining: 888ms
63:	learn: 14.7415094	total: 1.54s	remaining: 864ms
64:	learn: 14.6123806	total: 1.56s	remaining: 839ms
65:	learn: 14.4744916	total: 1.58s	remaining: 814ms
66:	learn: 14.3212717	total: 1.6s	remaining: 789ms
67:	learn: 14.1768047	total: 1.62s	remaining: 764ms
68:	learn: 14.0387344	total: 1.65s	remaining: 743ms
69:	learn: 13.8987579	total: 1.68s	remaining: 721ms
70:	learn: 13.7825740	total: 1.7s	remaining: 696ms
71:	learn: 13.6818548	total: 1.72s	remaining: 670ms
72:	learn: 13.5356993	total: 1.75s	remaining: 645ms
73:	learn: 13.4408704	total: 1.76s	remaining: 620ms
74:	learn: 13.2992218	total: 1.79s	remaining: 596ms
75:	learn: 13.1547092	total: 1.81s	remaining: 571ms
76:	learn: 13.0800189	total: 1.83s	remaining: 548ms
77:	learn: 12.9434711	total: 1.86s	remaining: 524ms
78:	learn: 12.8327325	total: 1.89s	remaining: 503ms
79:	learn: 12.7238946	total: 1.91s	remaining: 479ms
80:	learn: 12.6229528	total: 1.94s	remaining: 454ms
81:	learn: 12.5216078	total: 1.96s	remaining: 430ms
82:	learn: 12.4182254	total: 1.98s	remaining: 406ms
83:	learn: 12.3097978	total: 2s	remaining: 382ms
84:	learn: 12.1852056	total: 2.02s	remaining: 357ms
85:	learn: 12.0739627	total: 2.05s	remaining: 333ms
86:	learn: 11.9475583	total: 2.08s	remaining: 310ms
87:	learn: 11.8403806	total: 2.1s	remaining: 286ms
88:	learn: 11.7294124	total: 2.12s	remaining: 262ms
89:	learn: 11.6395689	total: 2.15s	remaining: 239ms
90:	learn: 11.5510643	total: 2.17s	remaining: 215ms
91:	learn: 11.4455301	total: 2.19s	remaining: 190ms
92:	learn: 11.3368661	total: 2.21s	remaining: 166ms
93:	learn: 11.2270796	total: 2.23s	remaining: 142ms
94:	learn: 11.1168414	total: 2.25s	remaining: 119ms
95:	learn: 11.0310985	total: 2.28s	remaining: 95ms
96:	learn: 10.9735185	total: 2.31s	remaining: 71.4ms
97:	learn: 10.8575874	total: 2.33s	remaining: 47.6ms
98:	learn: 10.7816173	total: 2.36s	remaining: 23.8ms
99:	learn: 10.7111737	total: 2.39s	remaining: 0us
0:	learn: 27.3776612	total: 21ms	remaining: 2.08s
1:	learn: 26.7619003	total: 41.9ms	remaining: 2.06s
2:	learn: 26.0057626	total: 65.5ms	remaining: 2.12s
3:	learn: 25.4280982	total: 95.7ms	remaining: 2.29s
4:	learn: 24.8347609	total: 119ms	remaining: 2.25s
5:	learn: 24.2526574	total: 140ms	remaining: 2.19s
6:	learn: 23.7478806	total: 163ms	remaining: 2.17s
7:	learn: 23.2677666	total: 184ms	remaining: 2.11s
8:	learn: 22.7564310	total: 204ms	remaining: 2.07s
9:	learn: 22.2873770	total: 225ms	remaining: 2.02s
10:	learn: 21.8088174	total: 253ms	remaining: 2.05s
11:	learn: 21.4086875	total: 275ms	remaining: 2.02s
12:	learn: 20.9489217	total: 300ms	remaining: 2.01s
13:	learn: 20.4585233	total: 328ms	remaining: 2.02s
14:	learn: 20.0177760	total: 354ms	remaining: 2.01s
15:	learn: 19.5981890	total: 378ms	remaining: 1.99s
16:	learn: 19.2041885	total: 402ms	remaining: 1.96s
17:	learn: 18.8422550	total: 428ms	remaining: 1.95s
18:	learn: 18.4774037	total: 449ms	remaining: 1.92s
19:	learn: 18.0931699	total: 474ms	remaining: 1.89s
20:	learn: 17.6856423	total: 503ms	remaining: 1.89s
21:	learn: 17.3394010	total: 534ms	remaining: 1.89s
22:	learn: 17.0165204	total: 556ms	remaining: 1.86s
23:	learn: 16.7728230	total: 577ms	remaining: 1.82s
24:	learn: 16.5020155	total: 598ms	remaining: 1.79s
25:	learn: 16.2110813	total: 619ms	remaining: 1.76s
26:	learn: 15.9439416	total: 640ms	remaining: 1.73s
27:	learn: 15.6605702	total: 661ms	remaining: 1.7s
28:	learn: 15.4180978	total: 681ms	remaining: 1.67s
29:	learn: 15.1463921	total: 704ms	remaining: 1.64s
30:	learn: 14.8961946	total: 726ms	remaining: 1.62s
31:	learn: 14.6763296	total: 763ms	remaining: 1.62s
32:	learn: 14.4161484	total: 788ms	remaining: 1.6s
33:	learn: 14.1748686	total: 811ms	remaining: 1.57s
34:	learn: 13.9722494	total: 836ms	remaining: 1.55s
35:	learn: 13.7632896	total: 859ms	remaining: 1.53s
36:	learn: 13.5572592	total: 882ms	remaining: 1.5s
37:	learn: 13.3896577	total: 903ms	remaining: 1.47s
38:	learn: 13.2796441	total: 925ms	remaining: 1.45s
39:	learn: 13.0896679	total: 948ms	remaining: 1.42s
40:	learn: 12.8898238	total: 976ms	remaining: 1.4s
41:	learn: 12.6824069	total: 1s	remaining: 1.39s
42:	learn: 12.5459667	total: 1.03s	remaining: 1.36s
43:	learn: 12.3859203	total: 1.05s	remaining: 1.33s
44:	learn: 12.2099364	total: 1.07s	remaining: 1.31s
45:	learn: 12.0649044	total: 1.09s	remaining: 1.28s
46:	learn: 11.8934147	total: 1.11s	remaining: 1.26s
47:	learn: 11.7212144	total: 1.14s	remaining: 1.23s
48:	learn: 11.5585360	total: 1.16s	remaining: 1.21s
49:	learn: 11.4204354	total: 1.19s	remaining: 1.19s
50:	learn: 11.3264427	total: 1.21s	remaining: 1.17s
51:	learn: 11.2063486	total: 1.25s	remaining: 1.15s
52:	learn: 11.0712206	total: 1.27s	remaining: 1.13s
53:	learn: 10.9205088	total: 1.29s	remaining: 1.1s
54:	learn: 10.8155412	total: 1.31s	remaining: 1.08s
55:	learn: 10.7286854	total: 1.34s	remaining: 1.05s
56:	learn: 10.6088466	total: 1.36s	remaining: 1.03s
57:	learn: 10.4999885	total: 1.38s	remaining: 1s
58:	learn: 10.4022194	total: 1.41s	remaining: 982ms
59:	learn: 10.3147130	total: 1.43s	remaining: 957ms
60:	learn: 10.2011489	total: 1.46s	remaining: 931ms
61:	learn: 10.1094372	total: 1.48s	remaining: 905ms
62:	learn: 10.0248970	total: 1.5s	remaining: 884ms
63:	learn: 9.9192710	total: 1.53s	remaining: 859ms
64:	learn: 9.8577360	total: 1.55s	remaining: 834ms
65:	learn: 9.7737103	total: 1.57s	remaining: 808ms
66:	learn: 9.6706617	total: 1.59s	remaining: 784ms
67:	learn: 9.6042727	total: 1.62s	remaining: 762ms
68:	learn: 9.5355377	total: 1.65s	remaining: 740ms
69:	learn: 9.4615216	total: 1.67s	remaining: 716ms
70:	learn: 9.3702045	total: 1.69s	remaining: 692ms
71:	learn: 9.3035392	total: 1.72s	remaining: 668ms
72:	learn: 9.2322686	total: 1.75s	remaining: 647ms
73:	learn: 9.1431916	total: 1.77s	remaining: 622ms
74:	learn: 9.0869466	total: 1.79s	remaining: 598ms
75:	learn: 9.0117390	total: 1.82s	remaining: 575ms
76:	learn: 8.9580443	total: 1.85s	remaining: 552ms
77:	learn: 8.8649939	total: 1.87s	remaining: 527ms
78:	learn: 8.7792713	total: 1.89s	remaining: 503ms
79:	learn: 8.7164606	total: 1.91s	remaining: 478ms
80:	learn: 8.6340559	total: 1.93s	remaining: 453ms
81:	learn: 8.5697104	total: 1.95s	remaining: 429ms
82:	learn: 8.5273758	total: 1.97s	remaining: 404ms
83:	learn: 8.4394788	total: 2s	remaining: 382ms
84:	learn: 8.3672415	total: 2.03s	remaining: 359ms
85:	learn: 8.2813444	total: 2.06s	remaining: 335ms
86:	learn: 8.1994983	total: 2.08s	remaining: 311ms
87:	learn: 8.1003577	total: 2.11s	remaining: 287ms
88:	learn: 8.0501976	total: 2.13s	remaining: 263ms
89:	learn: 7.9718830	total: 2.15s	remaining: 239ms
90:	learn: 7.9114534	total: 2.17s	remaining: 215ms
91:	learn: 7.8319856	total: 2.19s	remaining: 191ms
92:	learn: 7.7731246	total: 2.22s	remaining: 167ms
93:	learn: 7.7165850	total: 2.25s	remaining: 144ms
94:	learn: 7.6448498	total: 2.28s	remaining: 120ms
95:	learn: 7.5709919	total: 2.3s	remaining: 95.9ms
96:	learn: 7.5184082	total: 2.32s	remaining: 71.9ms
97:	learn: 7.4786866	total: 2.34s	remaining: 47.8ms
98:	learn: 7.4301201	total: 2.37s	remaining: 23.9ms
99:	learn: 7.3416932	total: 2.39s	remaining: 0us
0:	learn: 42.6391731	total: 22.8ms	remaining: 2.26s
1:	learn: 41.2755994	total: 52ms	remaining: 2.55s
2:	learn: 40.1418308	total: 75.2ms	remaining: 2.43s
3:	learn: 38.9707156	total: 97.7ms	remaining: 2.34s
4:	learn: 37.8723622	total: 120ms	remaining: 2.28s
5:	learn: 36.6981834	total: 143ms	remaining: 2.24s
6:	learn: 35.6210108	total: 163ms	remaining: 2.17s
7:	learn: 34.5154078	total: 183ms	remaining: 2.1s
8:	learn: 33.4581011	total: 202ms	remaining: 2.05s
9:	learn: 32.5872455	total: 222ms	remaining: 2s
10:	learn: 31.6311510	total: 242ms	remaining: 1.96s
11:	learn: 30.8222401	total: 264ms	remaining: 1.94s
12:	learn: 29.9305192	total: 285ms	remaining: 1.91s
13:	learn: 29.0742133	total: 314ms	remaining: 1.93s
14:	learn: 28.3687544	total: 337ms	remaining: 1.91s
15:	learn: 27.5730558	total: 358ms	remaining: 1.88s
16:	learn: 26.9376082	total: 378ms	remaining: 1.84s
17:	learn: 26.2254949	total: 397ms	remaining: 1.81s
18:	learn: 25.5974939	total: 419ms	remaining: 1.78s
19:	learn: 25.0097187	total: 439ms	remaining: 1.76s
20:	learn: 24.3722243	total: 460ms	remaining: 1.73s
21:	learn: 23.8249140	total: 482ms	remaining: 1.71s
22:	learn: 23.3953969	total: 505ms	remaining: 1.69s
23:	learn: 22.8726238	total: 532ms	remaining: 1.69s
24:	learn: 22.3407723	total: 555ms	remaining: 1.66s
25:	learn: 21.8360330	total: 577ms	remaining: 1.64s
26:	learn: 21.4050665	total: 581ms	remaining: 1.57s
27:	learn: 20.9389245	total: 604ms	remaining: 1.55s
28:	learn: 20.5166767	total: 625ms	remaining: 1.53s
29:	learn: 20.1190641	total: 647ms	remaining: 1.51s
30:	learn: 19.7189491	total: 668ms	remaining: 1.49s
31:	learn: 19.3748181	total: 688ms	remaining: 1.46s
32:	learn: 19.0116312	total: 716ms	remaining: 1.45s
33:	learn: 18.6982407	total: 741ms	remaining: 1.44s
34:	learn: 18.3109965	total: 761ms	remaining: 1.41s
35:	learn: 17.9620798	total: 780ms	remaining: 1.39s
36:	learn: 17.6396740	total: 800ms	remaining: 1.36s
37:	learn: 17.3596962	total: 821ms	remaining: 1.34s
38:	learn: 17.0107107	total: 842ms	remaining: 1.32s
39:	learn: 16.7000770	total: 864ms	remaining: 1.29s
40:	learn: 16.4406609	total: 876ms	remaining: 1.26s
41:	learn: 16.2482533	total: 897ms	remaining: 1.24s
42:	learn: 16.0039366	total: 919ms	remaining: 1.22s
43:	learn: 15.7538572	total: 944ms	remaining: 1.2s
44:	learn: 15.5095380	total: 972ms	remaining: 1.19s
45:	learn: 15.2678319	total: 994ms	remaining: 1.17s
46:	learn: 15.0494495	total: 1.02s	remaining: 1.15s
47:	learn: 14.8347400	total: 1.04s	remaining: 1.12s
48:	learn: 14.6035398	total: 1.06s	remaining: 1.1s
49:	learn: 14.3913639	total: 1.08s	remaining: 1.08s
50:	learn: 14.1928022	total: 1.1s	remaining: 1.06s
51:	learn: 13.9985580	total: 1.12s	remaining: 1.04s
52:	learn: 13.8322220	total: 1.15s	remaining: 1.02s
53:	learn: 13.6455937	total: 1.17s	remaining: 1000ms
54:	learn: 13.4402019	total: 1.2s	remaining: 979ms
55:	learn: 13.2899163	total: 1.22s	remaining: 956ms
56:	learn: 13.1694614	total: 1.24s	remaining: 933ms
57:	learn: 13.0722892	total: 1.26s	remaining: 910ms
58:	learn: 12.9065251	total: 1.28s	remaining: 887ms
59:	learn: 12.6992885	total: 1.3s	remaining: 864ms
60:	learn: 12.5384562	total: 1.32s	remaining: 842ms
61:	learn: 12.4105591	total: 1.34s	remaining: 821ms
62:	learn: 12.2952504	total: 1.36s	remaining: 802ms
63:	learn: 12.1427365	total: 1.39s	remaining: 783ms
64:	learn: 11.9954361	total: 1.42s	remaining: 762ms
65:	learn: 11.8161234	total: 1.44s	remaining: 741ms
66:	learn: 11.6849978	total: 1.46s	remaining: 719ms
67:	learn: 11.5405300	total: 1.48s	remaining: 697ms
68:	learn: 11.3806762	total: 1.5s	remaining: 675ms
69:	learn: 11.2746848	total: 1.52s	remaining: 652ms
70:	learn: 11.1518256	total: 1.54s	remaining: 630ms
71:	learn: 11.0730779	total: 1.56s	remaining: 609ms
72:	learn: 10.9736725	total: 1.59s	remaining: 588ms
73:	learn: 10.8430563	total: 1.61s	remaining: 567ms
74:	learn: 10.7142220	total: 1.63s	remaining: 545ms
75:	learn: 10.6141640	total: 1.65s	remaining: 522ms
76:	learn: 10.5264853	total: 1.67s	remaining: 500ms
77:	learn: 10.3929390	total: 1.69s	remaining: 478ms
78:	learn: 10.3163176	total: 1.71s	remaining: 456ms
79:	learn: 10.2171240	total: 1.74s	remaining: 434ms
80:	learn: 10.1381738	total: 1.76s	remaining: 412ms
81:	learn: 10.0402437	total: 1.78s	remaining: 390ms
82:	learn: 9.9223565	total: 1.8s	remaining: 370ms
83:	learn: 9.8184057	total: 1.83s	remaining: 348ms
84:	learn: 9.7221978	total: 1.85s	remaining: 327ms
85:	learn: 9.6417031	total: 1.87s	remaining: 305ms
86:	learn: 9.5593969	total: 1.89s	remaining: 283ms
87:	learn: 9.4678992	total: 1.91s	remaining: 261ms
88:	learn: 9.3855757	total: 1.93s	remaining: 239ms
89:	learn: 9.2884031	total: 1.95s	remaining: 217ms
90:	learn: 9.2099382	total: 1.97s	remaining: 195ms
91:	learn: 9.1357061	total: 1.99s	remaining: 173ms
92:	learn: 9.0690328	total: 2.02s	remaining: 152ms
93:	learn: 8.9904694	total: 2.04s	remaining: 130ms
94:	learn: 8.9256893	total: 2.06s	remaining: 108ms
95:	learn: 8.8600084	total: 2.08s	remaining: 86.6ms
96:	learn: 8.8091154	total: 2.1s	remaining: 64.8ms
97:	learn: 8.7280528	total: 2.12s	remaining: 43.2ms
98:	learn: 8.6761440	total: 2.13s	remaining: 21.6ms
99:	learn: 8.6181192	total: 2.15s	remaining: 0us
0:	learn: 45.9988128	total: 27.2ms	remaining: 2.69s
1:	learn: 44.7653841	total: 50.1ms	remaining: 2.46s
2:	learn: 43.4693688	total: 71.4ms	remaining: 2.31s
3:	learn: 42.2495168	total: 91.9ms	remaining: 2.21s
4:	learn: 41.2273909	total: 112ms	remaining: 2.13s
5:	learn: 40.0623352	total: 133ms	remaining: 2.09s
6:	learn: 39.0139162	total: 152ms	remaining: 2.02s
7:	learn: 37.9905503	total: 171ms	remaining: 1.96s
8:	learn: 37.1460179	total: 189ms	remaining: 1.91s
9:	learn: 36.1321769	total: 208ms	remaining: 1.87s
10:	learn: 35.2434048	total: 226ms	remaining: 1.83s
11:	learn: 34.3919476	total: 244ms	remaining: 1.79s
12:	learn: 33.5464400	total: 266ms	remaining: 1.78s
13:	learn: 32.5752711	total: 286ms	remaining: 1.76s
14:	learn: 31.8573507	total: 314ms	remaining: 1.78s
15:	learn: 31.1481980	total: 335ms	remaining: 1.76s
16:	learn: 30.4578224	total: 355ms	remaining: 1.73s
17:	learn: 29.8404841	total: 374ms	remaining: 1.7s
18:	learn: 29.1314604	total: 392ms	remaining: 1.67s
19:	learn: 28.5024706	total: 410ms	remaining: 1.64s
20:	learn: 27.9368896	total: 429ms	remaining: 1.61s
21:	learn: 27.2136491	total: 448ms	remaining: 1.59s
22:	learn: 26.6230078	total: 466ms	remaining: 1.56s
23:	learn: 26.0604635	total: 485ms	remaining: 1.54s
24:	learn: 25.6309424	total: 512ms	remaining: 1.54s
25:	learn: 25.1761698	total: 534ms	remaining: 1.52s
26:	learn: 24.6368216	total: 556ms	remaining: 1.5s
27:	learn: 24.1028972	total: 577ms	remaining: 1.48s
28:	learn: 23.3990224	total: 598ms	remaining: 1.47s
29:	learn: 22.9088559	total: 620ms	remaining: 1.45s
30:	learn: 22.4793217	total: 640ms	remaining: 1.42s
31:	learn: 22.0592669	total: 660ms	remaining: 1.4s
32:	learn: 21.6715811	total: 679ms	remaining: 1.38s
33:	learn: 21.1907911	total: 698ms	remaining: 1.35s
34:	learn: 20.8045504	total: 719ms	remaining: 1.33s
35:	learn: 20.4670784	total: 745ms	remaining: 1.32s
36:	learn: 20.0165788	total: 769ms	remaining: 1.31s
37:	learn: 19.6859173	total: 788ms	remaining: 1.28s
38:	learn: 19.3641283	total: 806ms	remaining: 1.26s
39:	learn: 19.0291194	total: 826ms	remaining: 1.24s
40:	learn: 18.7204204	total: 844ms	remaining: 1.21s
41:	learn: 18.4000101	total: 862ms	remaining: 1.19s
42:	learn: 18.0910445	total: 881ms	remaining: 1.17s
43:	learn: 17.8354609	total: 900ms	remaining: 1.14s
44:	learn: 17.4982243	total: 920ms	remaining: 1.12s
45:	learn: 17.1895897	total: 942ms	remaining: 1.1s
46:	learn: 16.9440833	total: 972ms	remaining: 1.1s
47:	learn: 16.6112102	total: 998ms	remaining: 1.08s
48:	learn: 16.3320235	total: 1.02s	remaining: 1.06s
49:	learn: 16.0523610	total: 1.04s	remaining: 1.04s
50:	learn: 15.8256738	total: 1.06s	remaining: 1.02s
51:	learn: 15.5699393	total: 1.09s	remaining: 1s
52:	learn: 15.3531799	total: 1.1s	remaining: 981ms
53:	learn: 15.1364230	total: 1.13s	remaining: 961ms
54:	learn: 15.0012063	total: 1.15s	remaining: 941ms
55:	learn: 14.7171740	total: 1.17s	remaining: 920ms
56:	learn: 14.5897576	total: 1.17s	remaining: 886ms
57:	learn: 14.3886878	total: 1.2s	remaining: 871ms
58:	learn: 14.1942115	total: 1.23s	remaining: 852ms
59:	learn: 14.0135398	total: 1.25s	remaining: 830ms
60:	learn: 13.8118263	total: 1.26s	remaining: 809ms
61:	learn: 13.6444047	total: 1.28s	remaining: 788ms
62:	learn: 13.4728078	total: 1.31s	remaining: 767ms
63:	learn: 13.3104934	total: 1.33s	remaining: 746ms
64:	learn: 13.1385144	total: 1.35s	remaining: 727ms
65:	learn: 13.0087777	total: 1.37s	remaining: 707ms
66:	learn: 12.8457835	total: 1.41s	remaining: 693ms
67:	learn: 12.6975263	total: 1.43s	remaining: 674ms
68:	learn: 12.5582839	total: 1.45s	remaining: 654ms
69:	learn: 12.4210776	total: 1.48s	remaining: 632ms
70:	learn: 12.2737286	total: 1.5s	remaining: 611ms
71:	learn: 12.1587075	total: 1.51s	remaining: 589ms
72:	learn: 12.0323022	total: 1.54s	remaining: 568ms
73:	learn: 11.8667900	total: 1.56s	remaining: 547ms
74:	learn: 11.6990385	total: 1.58s	remaining: 526ms
75:	learn: 11.5755058	total: 1.6s	remaining: 504ms
76:	learn: 11.4954152	total: 1.62s	remaining: 485ms
77:	learn: 11.3827464	total: 1.65s	remaining: 465ms
78:	learn: 11.2924968	total: 1.67s	remaining: 444ms
79:	learn: 11.1938217	total: 1.69s	remaining: 424ms
80:	learn: 11.0766477	total: 1.72s	remaining: 403ms
81:	learn: 10.9824487	total: 1.74s	remaining: 382ms
82:	learn: 10.8707168	total: 1.76s	remaining: 361ms
83:	learn: 10.7746205	total: 1.78s	remaining: 340ms
84:	learn: 10.6738461	total: 1.8s	remaining: 319ms
85:	learn: 10.5871227	total: 1.83s	remaining: 298ms
86:	learn: 10.4566607	total: 1.86s	remaining: 278ms
87:	learn: 10.3506633	total: 1.88s	remaining: 256ms
88:	learn: 10.2104644	total: 1.9s	remaining: 235ms
89:	learn: 10.0965839	total: 1.92s	remaining: 214ms
90:	learn: 9.9802927	total: 1.95s	remaining: 193ms
91:	learn: 9.9195276	total: 1.97s	remaining: 171ms
92:	learn: 9.8559698	total: 1.99s	remaining: 149ms
93:	learn: 9.7396780	total: 2.01s	remaining: 128ms
94:	learn: 9.6945725	total: 2.03s	remaining: 107ms
95:	learn: 9.5897565	total: 2.05s	remaining: 85.6ms
96:	learn: 9.5012011	total: 2.08s	remaining: 64.4ms
97:	learn: 9.4123715	total: 2.1s	remaining: 42.9ms
98:	learn: 9.3288366	total: 2.13s	remaining: 21.5ms
99:	learn: 9.2648715	total: 2.15s	remaining: 0us
0:	learn: 45.5336925	total: 22.1ms	remaining: 2.19s
1:	learn: 44.2714175	total: 44.7ms	remaining: 2.19s
2:	learn: 43.1477944	total: 74.1ms	remaining: 2.39s
3:	learn: 41.9891776	total: 96.4ms	remaining: 2.31s
4:	learn: 41.0638986	total: 121ms	remaining: 2.29s
5:	learn: 39.9800801	total: 143ms	remaining: 2.24s
6:	learn: 38.9048061	total: 166ms	remaining: 2.2s
7:	learn: 38.0749429	total: 186ms	remaining: 2.13s
8:	learn: 37.3966644	total: 204ms	remaining: 2.06s
9:	learn: 36.4671331	total: 223ms	remaining: 2s
10:	learn: 35.6649217	total: 241ms	remaining: 1.95s
11:	learn: 34.8793657	total: 261ms	remaining: 1.92s
12:	learn: 34.0737401	total: 282ms	remaining: 1.89s
13:	learn: 33.2560999	total: 310ms	remaining: 1.9s
14:	learn: 32.4184623	total: 332ms	remaining: 1.88s
15:	learn: 31.6803206	total: 354ms	remaining: 1.86s
16:	learn: 30.9276344	total: 375ms	remaining: 1.83s
17:	learn: 30.3590041	total: 397ms	remaining: 1.81s
18:	learn: 29.7789888	total: 415ms	remaining: 1.77s
19:	learn: 29.1098261	total: 434ms	remaining: 1.73s
20:	learn: 28.4824889	total: 453ms	remaining: 1.7s
21:	learn: 27.9675744	total: 474ms	remaining: 1.68s
22:	learn: 27.4793215	total: 500ms	remaining: 1.67s
23:	learn: 26.8920542	total: 525ms	remaining: 1.66s
24:	learn: 26.2736657	total: 545ms	remaining: 1.64s
25:	learn: 25.6908003	total: 567ms	remaining: 1.61s
26:	learn: 25.1288844	total: 587ms	remaining: 1.59s
27:	learn: 24.6933320	total: 610ms	remaining: 1.57s
28:	learn: 24.1372567	total: 628ms	remaining: 1.54s
29:	learn: 23.7103515	total: 647ms	remaining: 1.51s
30:	learn: 23.1647499	total: 665ms	remaining: 1.48s
31:	learn: 22.7009216	total: 684ms	remaining: 1.45s
32:	learn: 22.2792229	total: 704ms	remaining: 1.43s
33:	learn: 21.8004244	total: 729ms	remaining: 1.42s
34:	learn: 21.3578361	total: 748ms	remaining: 1.39s
35:	learn: 21.0262832	total: 766ms	remaining: 1.36s
36:	learn: 20.5787502	total: 784ms	remaining: 1.33s
37:	learn: 20.3083055	total: 803ms	remaining: 1.31s
38:	learn: 19.9902529	total: 820ms	remaining: 1.28s
39:	learn: 19.6059571	total: 839ms	remaining: 1.26s
40:	learn: 19.3890959	total: 858ms	remaining: 1.23s
41:	learn: 19.0549255	total: 880ms	remaining: 1.22s
42:	learn: 18.7283215	total: 903ms	remaining: 1.2s
43:	learn: 18.4448725	total: 936ms	remaining: 1.19s
44:	learn: 18.1578001	total: 958ms	remaining: 1.17s
45:	learn: 17.8777474	total: 978ms	remaining: 1.15s
46:	learn: 17.6428221	total: 996ms	remaining: 1.12s
47:	learn: 17.3887752	total: 1.01s	remaining: 1.1s
48:	learn: 17.1475761	total: 1.03s	remaining: 1.07s
49:	learn: 16.9064363	total: 1.05s	remaining: 1.05s
50:	learn: 16.6414681	total: 1.07s	remaining: 1.03s
51:	learn: 16.4549974	total: 1.09s	remaining: 1s
52:	learn: 16.2617558	total: 1.11s	remaining: 983ms
53:	learn: 16.0258241	total: 1.13s	remaining: 962ms
54:	learn: 15.7694686	total: 1.15s	remaining: 944ms
55:	learn: 15.5449602	total: 1.17s	remaining: 922ms
56:	learn: 15.3515330	total: 1.19s	remaining: 899ms
57:	learn: 15.1120403	total: 1.21s	remaining: 877ms
58:	learn: 14.9131368	total: 1.23s	remaining: 854ms
59:	learn: 14.8021921	total: 1.25s	remaining: 832ms
60:	learn: 14.6564259	total: 1.26s	remaining: 809ms
61:	learn: 14.5253260	total: 1.28s	remaining: 787ms
62:	learn: 14.3975427	total: 1.3s	remaining: 766ms
63:	learn: 14.3060204	total: 1.32s	remaining: 744ms
64:	learn: 14.1283681	total: 1.35s	remaining: 726ms
65:	learn: 14.0159063	total: 1.37s	remaining: 708ms
66:	learn: 13.8712541	total: 1.39s	remaining: 686ms
67:	learn: 13.7852998	total: 1.42s	remaining: 667ms
68:	learn: 13.6790164	total: 1.44s	remaining: 646ms
69:	learn: 13.5253745	total: 1.46s	remaining: 625ms
70:	learn: 13.3959663	total: 1.48s	remaining: 604ms
71:	learn: 13.2062955	total: 1.5s	remaining: 582ms
72:	learn: 13.0788709	total: 1.52s	remaining: 561ms
73:	learn: 12.9513184	total: 1.54s	remaining: 540ms
74:	learn: 12.8198556	total: 1.56s	remaining: 521ms
75:	learn: 12.7137549	total: 1.59s	remaining: 502ms
76:	learn: 12.6243477	total: 1.61s	remaining: 481ms
77:	learn: 12.5241564	total: 1.63s	remaining: 461ms
78:	learn: 12.4445782	total: 1.66s	remaining: 440ms
79:	learn: 12.3816501	total: 1.68s	remaining: 419ms
80:	learn: 12.2846914	total: 1.7s	remaining: 398ms
81:	learn: 12.1419498	total: 1.72s	remaining: 377ms
82:	learn: 12.0846494	total: 1.74s	remaining: 356ms
83:	learn: 11.9851484	total: 1.76s	remaining: 335ms
84:	learn: 11.8905738	total: 1.79s	remaining: 316ms
85:	learn: 11.7718790	total: 1.82s	remaining: 296ms
86:	learn: 11.6854413	total: 1.84s	remaining: 275ms
87:	learn: 11.6206110	total: 1.87s	remaining: 255ms
88:	learn: 11.5376098	total: 1.89s	remaining: 234ms
89:	learn: 11.4235068	total: 1.91s	remaining: 212ms
90:	learn: 11.3477955	total: 1.93s	remaining: 191ms
91:	learn: 11.2663772	total: 1.96s	remaining: 170ms
92:	learn: 11.1916556	total: 1.98s	remaining: 149ms
93:	learn: 11.0921504	total: 2.01s	remaining: 128ms
94:	learn: 10.9622375	total: 2.03s	remaining: 107ms
95:	learn: 10.8882085	total: 2.06s	remaining: 85.7ms
96:	learn: 10.8086218	total: 2.08s	remaining: 64.3ms
97:	learn: 10.7552220	total: 2.1s	remaining: 42.8ms
98:	learn: 10.6929666	total: 2.12s	remaining: 21.4ms
99:	learn: 10.6200033	total: 2.14s	remaining: 0us
0:	learn: 46.3366259	total: 28.2ms	remaining: 2.79s
1:	learn: 45.2205278	total: 52.4ms	remaining: 2.57s
2:	learn: 43.9887404	total: 75.2ms	remaining: 2.43s
3:	learn: 42.8240666	total: 95.8ms	remaining: 2.3s
4:	learn: 41.6086617	total: 118ms	remaining: 2.25s
5:	learn: 40.5606446	total: 138ms	remaining: 2.15s
6:	learn: 39.6241326	total: 158ms	remaining: 2.1s
7:	learn: 39.0016852	total: 177ms	remaining: 2.04s
8:	learn: 37.8501670	total: 197ms	remaining: 2s
9:	learn: 37.0215474	total: 217ms	remaining: 1.95s
10:	learn: 36.0215020	total: 237ms	remaining: 1.92s
11:	learn: 35.2421331	total: 260ms	remaining: 1.9s
12:	learn: 34.5416837	total: 281ms	remaining: 1.88s
13:	learn: 33.7787649	total: 312ms	remaining: 1.91s
14:	learn: 32.9860883	total: 335ms	remaining: 1.9s
15:	learn: 32.2123752	total: 357ms	remaining: 1.87s
16:	learn: 31.3564648	total: 379ms	remaining: 1.85s
17:	learn: 30.7859979	total: 402ms	remaining: 1.83s
18:	learn: 30.1443515	total: 424ms	remaining: 1.81s
19:	learn: 29.4880724	total: 445ms	remaining: 1.78s
20:	learn: 28.9635727	total: 464ms	remaining: 1.75s
21:	learn: 28.4853342	total: 486ms	remaining: 1.72s
22:	learn: 27.9796348	total: 514ms	remaining: 1.72s
23:	learn: 27.4360487	total: 544ms	remaining: 1.72s
24:	learn: 26.8685214	total: 565ms	remaining: 1.69s
25:	learn: 26.1769206	total: 587ms	remaining: 1.67s
26:	learn: 25.7146048	total: 609ms	remaining: 1.65s
27:	learn: 25.2614850	total: 631ms	remaining: 1.62s
28:	learn: 24.6626472	total: 652ms	remaining: 1.59s
29:	learn: 24.2501259	total: 671ms	remaining: 1.57s
30:	learn: 23.7892661	total: 693ms	remaining: 1.54s
31:	learn: 23.2729078	total: 715ms	remaining: 1.52s
32:	learn: 22.8969731	total: 743ms	remaining: 1.51s
33:	learn: 22.4567570	total: 767ms	remaining: 1.49s
34:	learn: 22.0569858	total: 786ms	remaining: 1.46s
35:	learn: 21.7317775	total: 808ms	remaining: 1.44s
36:	learn: 21.3890971	total: 830ms	remaining: 1.41s
37:	learn: 21.0664504	total: 852ms	remaining: 1.39s
38:	learn: 20.7379659	total: 872ms	remaining: 1.36s
39:	learn: 20.4423699	total: 892ms	remaining: 1.34s
40:	learn: 20.1526720	total: 913ms	remaining: 1.31s
41:	learn: 19.8706547	total: 938ms	remaining: 1.29s
42:	learn: 19.5139134	total: 965ms	remaining: 1.28s
43:	learn: 19.3495951	total: 989ms	remaining: 1.26s
44:	learn: 19.1314757	total: 1.01s	remaining: 1.24s
45:	learn: 18.7971159	total: 1.03s	remaining: 1.21s
46:	learn: 18.5447051	total: 1.05s	remaining: 1.19s
47:	learn: 18.2328785	total: 1.07s	remaining: 1.17s
48:	learn: 17.9622938	total: 1.09s	remaining: 1.14s
49:	learn: 17.7264205	total: 1.11s	remaining: 1.11s
50:	learn: 17.4530592	total: 1.14s	remaining: 1.09s
51:	learn: 17.2236644	total: 1.16s	remaining: 1.07s
52:	learn: 17.0122792	total: 1.19s	remaining: 1.05s
53:	learn: 16.7599064	total: 1.21s	remaining: 1.03s
54:	learn: 16.5146699	total: 1.23s	remaining: 1.01s
55:	learn: 16.2531414	total: 1.26s	remaining: 989ms
56:	learn: 16.0997208	total: 1.28s	remaining: 965ms
57:	learn: 15.8452412	total: 1.3s	remaining: 941ms
58:	learn: 15.6294900	total: 1.32s	remaining: 917ms
59:	learn: 15.4564548	total: 1.34s	remaining: 893ms
60:	learn: 15.2978533	total: 1.36s	remaining: 872ms
61:	learn: 15.0976912	total: 1.39s	remaining: 853ms
62:	learn: 14.9094446	total: 1.41s	remaining: 830ms
63:	learn: 14.7415094	total: 1.44s	remaining: 807ms
64:	learn: 14.6123806	total: 1.46s	remaining: 784ms
65:	learn: 14.4744916	total: 1.48s	remaining: 761ms
66:	learn: 14.3212717	total: 1.5s	remaining: 738ms
67:	learn: 14.1768047	total: 1.52s	remaining: 714ms
68:	learn: 14.0387344	total: 1.54s	remaining: 691ms
69:	learn: 13.8987579	total: 1.56s	remaining: 669ms
70:	learn: 13.7825740	total: 1.59s	remaining: 648ms
71:	learn: 13.6818548	total: 1.61s	remaining: 626ms
72:	learn: 13.5356993	total: 1.63s	remaining: 602ms
73:	learn: 13.4408704	total: 1.65s	remaining: 580ms
74:	learn: 13.2992218	total: 1.67s	remaining: 558ms
75:	learn: 13.1547092	total: 1.69s	remaining: 535ms
76:	learn: 13.0800189	total: 1.71s	remaining: 511ms
77:	learn: 12.9434711	total: 1.73s	remaining: 488ms
78:	learn: 12.8327325	total: 1.75s	remaining: 465ms
79:	learn: 12.7238946	total: 1.77s	remaining: 442ms
80:	learn: 12.6229528	total: 1.79s	remaining: 421ms
81:	learn: 12.5216078	total: 1.82s	remaining: 399ms
82:	learn: 12.4182254	total: 1.84s	remaining: 377ms
83:	learn: 12.3097978	total: 1.86s	remaining: 355ms
84:	learn: 12.1852056	total: 1.88s	remaining: 333ms
85:	learn: 12.0739627	total: 1.9s	remaining: 310ms
86:	learn: 11.9475583	total: 1.92s	remaining: 287ms
87:	learn: 11.8403806	total: 1.94s	remaining: 265ms
88:	learn: 11.7294124	total: 1.96s	remaining: 242ms
89:	learn: 11.6395689	total: 1.98s	remaining: 220ms
90:	learn: 11.5510643	total: 2s	remaining: 198ms
91:	learn: 11.4455301	total: 2.03s	remaining: 176ms
92:	learn: 11.3368661	total: 2.05s	remaining: 154ms
93:	learn: 11.2270796	total: 2.07s	remaining: 132ms
94:	learn: 11.1168414	total: 2.09s	remaining: 110ms
95:	learn: 11.0310985	total: 2.12s	remaining: 88.1ms
96:	learn: 10.9735185	total: 2.13s	remaining: 66ms
97:	learn: 10.8575874	total: 2.15s	remaining: 43.9ms
98:	learn: 10.7816173	total: 2.17s	remaining: 21.9ms
99:	learn: 10.7111737	total: 2.19s	remaining: 0us
0:	learn: 27.3351083	total: 25.3ms	remaining: 2.5s
1:	learn: 26.7523848	total: 51.4ms	remaining: 2.52s
2:	learn: 26.1326580	total: 75.3ms	remaining: 2.44s
3:	learn: 25.5584244	total: 99.4ms	remaining: 2.38s
4:	learn: 25.0458748	total: 123ms	remaining: 2.33s
5:	learn: 24.4868837	total: 147ms	remaining: 2.31s
6:	learn: 23.9306999	total: 172ms	remaining: 2.28s
7:	learn: 23.4799808	total: 205ms	remaining: 2.35s
8:	learn: 22.9510347	total: 230ms	remaining: 2.33s
9:	learn: 22.4529079	total: 255ms	remaining: 2.29s
10:	learn: 21.9320739	total: 280ms	remaining: 2.26s
11:	learn: 21.4729295	total: 306ms	remaining: 2.24s
12:	learn: 21.0885550	total: 330ms	remaining: 2.21s
13:	learn: 20.7063206	total: 355ms	remaining: 2.18s
14:	learn: 20.3539530	total: 380ms	remaining: 2.15s
15:	learn: 20.0071947	total: 412ms	remaining: 2.17s
16:	learn: 19.6579830	total: 439ms	remaining: 2.14s
17:	learn: 19.2450502	total: 465ms	remaining: 2.12s
18:	learn: 18.8010420	total: 489ms	remaining: 2.08s
19:	learn: 18.4055273	total: 514ms	remaining: 2.05s
20:	learn: 18.0395642	total: 538ms	remaining: 2.02s
21:	learn: 17.6568400	total: 563ms	remaining: 2s
22:	learn: 17.4284559	total: 587ms	remaining: 1.96s
23:	learn: 17.0957528	total: 618ms	remaining: 1.96s
24:	learn: 16.7636157	total: 646ms	remaining: 1.94s
25:	learn: 16.4987969	total: 670ms	remaining: 1.91s
26:	learn: 16.2204177	total: 694ms	remaining: 1.88s
27:	learn: 15.9525124	total: 719ms	remaining: 1.85s
28:	learn: 15.5905943	total: 742ms	remaining: 1.82s
29:	learn: 15.3628633	total: 772ms	remaining: 1.8s
30:	learn: 15.1420693	total: 800ms	remaining: 1.78s
31:	learn: 14.9419461	total: 829ms	remaining: 1.76s
32:	learn: 14.7386592	total: 865ms	remaining: 1.75s
33:	learn: 14.5398023	total: 892ms	remaining: 1.73s
34:	learn: 14.2644206	total: 920ms	remaining: 1.71s
35:	learn: 14.0168503	total: 949ms	remaining: 1.69s
36:	learn: 13.7687637	total: 977ms	remaining: 1.66s
37:	learn: 13.5855913	total: 1.01s	remaining: 1.65s
38:	learn: 13.3656902	total: 1.04s	remaining: 1.63s
39:	learn: 13.2111716	total: 1.08s	remaining: 1.61s
40:	learn: 13.0360149	total: 1.1s	remaining: 1.59s
41:	learn: 12.8789444	total: 1.13s	remaining: 1.56s
42:	learn: 12.6680179	total: 1.16s	remaining: 1.54s
43:	learn: 12.4892268	total: 1.19s	remaining: 1.51s
44:	learn: 12.3275828	total: 1.21s	remaining: 1.48s
45:	learn: 12.2035682	total: 1.25s	remaining: 1.47s
46:	learn: 12.0777397	total: 1.28s	remaining: 1.44s
47:	learn: 11.9055552	total: 1.31s	remaining: 1.42s
48:	learn: 11.7465481	total: 1.34s	remaining: 1.4s
49:	learn: 11.5961200	total: 1.37s	remaining: 1.37s
50:	learn: 11.4305519	total: 1.4s	remaining: 1.34s
51:	learn: 11.2794033	total: 1.43s	remaining: 1.32s
52:	learn: 11.1586950	total: 1.46s	remaining: 1.29s
53:	learn: 11.0432937	total: 1.49s	remaining: 1.27s
54:	learn: 10.9094838	total: 1.53s	remaining: 1.25s
55:	learn: 10.7713451	total: 1.55s	remaining: 1.22s
56:	learn: 10.6664177	total: 1.58s	remaining: 1.19s
57:	learn: 10.5600117	total: 1.61s	remaining: 1.17s
58:	learn: 10.4438974	total: 1.64s	remaining: 1.14s
59:	learn: 10.3294224	total: 1.66s	remaining: 1.11s
60:	learn: 10.2510301	total: 1.69s	remaining: 1.08s
61:	learn: 10.1363264	total: 1.73s	remaining: 1.06s
62:	learn: 10.0415049	total: 1.76s	remaining: 1.04s
63:	learn: 9.9499833	total: 1.79s	remaining: 1.01s
64:	learn: 9.8774263	total: 1.82s	remaining: 980ms
65:	learn: 9.7458853	total: 1.85s	remaining: 952ms
66:	learn: 9.6733951	total: 1.88s	remaining: 924ms
67:	learn: 9.5861856	total: 1.9s	remaining: 896ms
68:	learn: 9.4524193	total: 1.94s	remaining: 871ms
69:	learn: 9.3501165	total: 1.97s	remaining: 843ms
70:	learn: 9.3092902	total: 2s	remaining: 818ms
71:	learn: 9.2244222	total: 2.03s	remaining: 790ms
72:	learn: 9.1554253	total: 2.06s	remaining: 761ms
73:	learn: 9.1098892	total: 2.08s	remaining: 733ms
74:	learn: 9.0210213	total: 2.11s	remaining: 704ms
75:	learn: 8.9303181	total: 2.15s	remaining: 678ms
76:	learn: 8.8489769	total: 2.18s	remaining: 650ms
77:	learn: 8.7651580	total: 2.2s	remaining: 622ms
78:	learn: 8.7126796	total: 2.24s	remaining: 596ms
79:	learn: 8.6404554	total: 2.27s	remaining: 567ms
80:	learn: 8.5844756	total: 2.29s	remaining: 538ms
81:	learn: 8.5234333	total: 2.32s	remaining: 510ms
82:	learn: 8.4298762	total: 2.35s	remaining: 481ms
83:	learn: 8.3483002	total: 2.38s	remaining: 454ms
84:	learn: 8.2670647	total: 2.41s	remaining: 426ms
85:	learn: 8.1917398	total: 2.44s	remaining: 397ms
86:	learn: 8.1073642	total: 2.47s	remaining: 369ms
87:	learn: 8.0633288	total: 2.51s	remaining: 342ms
88:	learn: 8.0107997	total: 2.53s	remaining: 313ms
89:	learn: 7.9563547	total: 2.56s	remaining: 285ms
90:	learn: 7.8811408	total: 2.59s	remaining: 256ms
91:	learn: 7.8096107	total: 2.62s	remaining: 228ms
92:	learn: 7.7481700	total: 2.65s	remaining: 200ms
93:	learn: 7.6847843	total: 2.68s	remaining: 171ms
94:	learn: 7.6252335	total: 2.71s	remaining: 142ms
95:	learn: 7.5593148	total: 2.74s	remaining: 114ms
96:	learn: 7.5042331	total: 2.77s	remaining: 85.6ms
97:	learn: 7.4553707	total: 2.79s	remaining: 57ms
98:	learn: 7.4035691	total: 2.83s	remaining: 28.6ms
99:	learn: 7.3457537	total: 2.86s	remaining: 0us
0:	learn: 42.5901652	total: 25.9ms	remaining: 2.57s
1:	learn: 41.2917733	total: 52.2ms	remaining: 2.56s
2:	learn: 40.0285549	total: 79.1ms	remaining: 2.56s
3:	learn: 38.9051734	total: 116ms	remaining: 2.78s
4:	learn: 37.7712063	total: 154ms	remaining: 2.92s
5:	learn: 36.6826884	total: 183ms	remaining: 2.87s
6:	learn: 35.6341048	total: 210ms	remaining: 2.79s
7:	learn: 34.5035449	total: 238ms	remaining: 2.74s
8:	learn: 33.5636424	total: 267ms	remaining: 2.69s
9:	learn: 32.5970644	total: 293ms	remaining: 2.64s
10:	learn: 31.8528815	total: 320ms	remaining: 2.59s
11:	learn: 31.0330095	total: 355ms	remaining: 2.61s
12:	learn: 30.3119851	total: 389ms	remaining: 2.6s
13:	learn: 29.5212022	total: 416ms	remaining: 2.56s
14:	learn: 28.7182657	total: 443ms	remaining: 2.51s
15:	learn: 28.0433195	total: 471ms	remaining: 2.47s
16:	learn: 27.2966576	total: 499ms	remaining: 2.44s
17:	learn: 26.5122856	total: 527ms	remaining: 2.4s
18:	learn: 25.8998213	total: 555ms	remaining: 2.36s
19:	learn: 25.2416026	total: 591ms	remaining: 2.36s
20:	learn: 24.6399819	total: 629ms	remaining: 2.37s
21:	learn: 24.0372756	total: 657ms	remaining: 2.33s
22:	learn: 23.4553733	total: 685ms	remaining: 2.29s
23:	learn: 22.9027871	total: 711ms	remaining: 2.25s
24:	learn: 22.4470878	total: 738ms	remaining: 2.21s
25:	learn: 21.9143721	total: 765ms	remaining: 2.18s
26:	learn: 21.4979516	total: 793ms	remaining: 2.14s
27:	learn: 21.0867622	total: 827ms	remaining: 2.13s
28:	learn: 20.6187419	total: 864ms	remaining: 2.12s
29:	learn: 20.1662373	total: 893ms	remaining: 2.08s
30:	learn: 19.8225041	total: 923ms	remaining: 2.05s
31:	learn: 19.4539400	total: 950ms	remaining: 2.02s
32:	learn: 19.1127000	total: 977ms	remaining: 1.98s
33:	learn: 18.7767435	total: 1s	remaining: 1.95s
34:	learn: 18.4038779	total: 1.04s	remaining: 1.93s
35:	learn: 18.0021121	total: 1.07s	remaining: 1.9s
36:	learn: 17.6673419	total: 1.1s	remaining: 1.88s
37:	learn: 17.3562137	total: 1.13s	remaining: 1.85s
38:	learn: 17.0128082	total: 1.16s	remaining: 1.81s
39:	learn: 16.7572783	total: 1.19s	remaining: 1.78s
40:	learn: 16.4883778	total: 1.21s	remaining: 1.75s
41:	learn: 16.1756364	total: 1.25s	remaining: 1.73s
42:	learn: 15.9150506	total: 1.28s	remaining: 1.7s
43:	learn: 15.6787555	total: 1.31s	remaining: 1.66s
44:	learn: 15.3862120	total: 1.34s	remaining: 1.64s
45:	learn: 15.1512250	total: 1.37s	remaining: 1.61s
46:	learn: 14.9410960	total: 1.4s	remaining: 1.58s
47:	learn: 14.7086321	total: 1.43s	remaining: 1.55s
48:	learn: 14.5065360	total: 1.46s	remaining: 1.52s
49:	learn: 14.3007466	total: 1.49s	remaining: 1.49s
50:	learn: 14.0972724	total: 1.52s	remaining: 1.46s
51:	learn: 13.8793525	total: 1.55s	remaining: 1.43s
52:	learn: 13.6381311	total: 1.57s	remaining: 1.4s
53:	learn: 13.4603568	total: 1.61s	remaining: 1.37s
54:	learn: 13.2856920	total: 1.64s	remaining: 1.34s
55:	learn: 13.1350779	total: 1.67s	remaining: 1.31s
56:	learn: 13.0110083	total: 1.7s	remaining: 1.28s
57:	learn: 12.8405210	total: 1.73s	remaining: 1.25s
58:	learn: 12.6793938	total: 1.76s	remaining: 1.22s
59:	learn: 12.5497475	total: 1.78s	remaining: 1.19s
60:	learn: 12.4319334	total: 1.81s	remaining: 1.16s
61:	learn: 12.2780964	total: 1.85s	remaining: 1.13s
62:	learn: 12.1187174	total: 1.87s	remaining: 1.1s
63:	learn: 11.9635081	total: 1.91s	remaining: 1.07s
64:	learn: 11.8366366	total: 1.94s	remaining: 1.04s
65:	learn: 11.6598347	total: 1.97s	remaining: 1.01s
66:	learn: 11.5227416	total: 1.99s	remaining: 982ms
67:	learn: 11.4058818	total: 2.02s	remaining: 952ms
68:	learn: 11.2627892	total: 2.05s	remaining: 921ms
69:	learn: 11.1415094	total: 2.09s	remaining: 894ms
70:	learn: 11.0703329	total: 2.12s	remaining: 865ms
71:	learn: 10.9568944	total: 2.15s	remaining: 834ms
72:	learn: 10.8314078	total: 2.17s	remaining: 804ms
73:	learn: 10.7320013	total: 2.2s	remaining: 774ms
74:	learn: 10.6191666	total: 2.23s	remaining: 743ms
75:	learn: 10.5156798	total: 2.26s	remaining: 713ms
76:	learn: 10.4174442	total: 2.28s	remaining: 682ms
77:	learn: 10.3318165	total: 2.32s	remaining: 654ms
78:	learn: 10.2300435	total: 2.36s	remaining: 627ms
79:	learn: 10.1665911	total: 2.38s	remaining: 596ms
80:	learn: 10.1030585	total: 2.41s	remaining: 566ms
81:	learn: 10.0254875	total: 2.44s	remaining: 536ms
82:	learn: 9.9387640	total: 2.47s	remaining: 505ms
83:	learn: 9.8289920	total: 2.49s	remaining: 475ms
84:	learn: 9.7629500	total: 2.52s	remaining: 445ms
85:	learn: 9.6778611	total: 2.56s	remaining: 416ms
86:	learn: 9.5920617	total: 2.59s	remaining: 387ms
87:	learn: 9.4931297	total: 2.62s	remaining: 357ms
88:	learn: 9.4010604	total: 2.65s	remaining: 327ms
89:	learn: 9.3328614	total: 2.67s	remaining: 297ms
90:	learn: 9.2409094	total: 2.7s	remaining: 267ms
91:	learn: 9.1214245	total: 2.73s	remaining: 237ms
92:	learn: 9.0795335	total: 2.76s	remaining: 207ms
93:	learn: 8.9777250	total: 2.79s	remaining: 178ms
94:	learn: 8.9059891	total: 2.83s	remaining: 149ms
95:	learn: 8.8343294	total: 2.85s	remaining: 119ms
96:	learn: 8.7237295	total: 2.88s	remaining: 89.2ms
97:	learn: 8.6401509	total: 2.91s	remaining: 59.4ms
98:	learn: 8.5735108	total: 2.94s	remaining: 29.7ms
99:	learn: 8.5084579	total: 2.96s	remaining: 0us
0:	learn: 46.1633714	total: 28.4ms	remaining: 2.81s
1:	learn: 44.7904617	total: 55.3ms	remaining: 2.71s
2:	learn: 43.5292386	total: 91ms	remaining: 2.94s
3:	learn: 42.3776226	total: 119ms	remaining: 2.87s
4:	learn: 41.1726533	total: 147ms	remaining: 2.79s
5:	learn: 40.0256490	total: 173ms	remaining: 2.71s
6:	learn: 39.0318588	total: 201ms	remaining: 2.67s
7:	learn: 38.0361181	total: 233ms	remaining: 2.68s
8:	learn: 37.0398789	total: 265ms	remaining: 2.68s
9:	learn: 36.0525089	total: 292ms	remaining: 2.63s
10:	learn: 35.0926830	total: 320ms	remaining: 2.59s
11:	learn: 34.1467022	total: 356ms	remaining: 2.61s
12:	learn: 33.5625454	total: 383ms	remaining: 2.56s
13:	learn: 32.7993162	total: 410ms	remaining: 2.52s
14:	learn: 32.1179593	total: 439ms	remaining: 2.49s
15:	learn: 31.5382898	total: 476ms	remaining: 2.5s
16:	learn: 30.8398862	total: 503ms	remaining: 2.46s
17:	learn: 30.1060070	total: 531ms	remaining: 2.42s
18:	learn: 29.3826415	total: 558ms	remaining: 2.38s
19:	learn: 28.5809579	total: 593ms	remaining: 2.37s
20:	learn: 28.0104942	total: 621ms	remaining: 2.33s
21:	learn: 27.5189566	total: 648ms	remaining: 2.29s
22:	learn: 26.8603656	total: 684ms	remaining: 2.29s
23:	learn: 26.2547050	total: 712ms	remaining: 2.25s
24:	learn: 25.6559137	total: 740ms	remaining: 2.22s
25:	learn: 25.1148352	total: 768ms	remaining: 2.19s
26:	learn: 24.5782363	total: 796ms	remaining: 2.15s
27:	learn: 24.0350871	total: 830ms	remaining: 2.13s
28:	learn: 23.5119480	total: 857ms	remaining: 2.1s
29:	learn: 23.1119795	total: 885ms	remaining: 2.06s
30:	learn: 22.6838288	total: 920ms	remaining: 2.05s
31:	learn: 22.2554624	total: 950ms	remaining: 2.02s
32:	learn: 21.8241578	total: 978ms	remaining: 1.99s
33:	learn: 21.5062830	total: 1s	remaining: 1.95s
34:	learn: 21.0109226	total: 1.03s	remaining: 1.92s
35:	learn: 20.5518606	total: 1.07s	remaining: 1.9s
36:	learn: 20.1195339	total: 1.09s	remaining: 1.86s
37:	learn: 19.7143479	total: 1.12s	remaining: 1.83s
38:	learn: 19.3325253	total: 1.16s	remaining: 1.81s
39:	learn: 19.0310706	total: 1.19s	remaining: 1.78s
40:	learn: 18.7262797	total: 1.21s	remaining: 1.75s
41:	learn: 18.3611836	total: 1.24s	remaining: 1.71s
42:	learn: 17.9960838	total: 1.27s	remaining: 1.68s
43:	learn: 17.7058991	total: 1.3s	remaining: 1.65s
44:	learn: 17.3944673	total: 1.33s	remaining: 1.63s
45:	learn: 17.1283561	total: 1.37s	remaining: 1.61s
46:	learn: 16.8406890	total: 1.4s	remaining: 1.58s
47:	learn: 16.6072061	total: 1.43s	remaining: 1.54s
48:	learn: 16.3697411	total: 1.46s	remaining: 1.51s
49:	learn: 15.9995507	total: 1.48s	remaining: 1.48s
50:	learn: 15.7372570	total: 1.51s	remaining: 1.45s
51:	learn: 15.4840152	total: 1.54s	remaining: 1.42s
52:	learn: 15.2899590	total: 1.58s	remaining: 1.41s
53:	learn: 15.0111064	total: 1.61s	remaining: 1.37s
54:	learn: 14.7504952	total: 1.64s	remaining: 1.34s
55:	learn: 14.5309762	total: 1.67s	remaining: 1.31s
56:	learn: 14.3525677	total: 1.69s	remaining: 1.28s
57:	learn: 14.1816296	total: 1.72s	remaining: 1.25s
58:	learn: 13.9958516	total: 1.75s	remaining: 1.22s
59:	learn: 13.8356735	total: 1.79s	remaining: 1.19s
60:	learn: 13.6499824	total: 1.82s	remaining: 1.17s
61:	learn: 13.4621357	total: 1.85s	remaining: 1.14s
62:	learn: 13.3234970	total: 1.88s	remaining: 1.1s
63:	learn: 13.1407122	total: 1.91s	remaining: 1.07s
64:	learn: 13.0161177	total: 1.94s	remaining: 1.04s
65:	learn: 12.8361175	total: 1.96s	remaining: 1.01s
66:	learn: 12.7103117	total: 2s	remaining: 984ms
67:	learn: 12.5145429	total: 2.03s	remaining: 954ms
68:	learn: 12.3966318	total: 2.06s	remaining: 927ms
69:	learn: 12.2175623	total: 2.09s	remaining: 896ms
70:	learn: 12.0455583	total: 2.12s	remaining: 865ms
71:	learn: 11.9190589	total: 2.15s	remaining: 834ms
72:	learn: 11.7990452	total: 2.17s	remaining: 804ms
73:	learn: 11.6735331	total: 2.2s	remaining: 773ms
74:	learn: 11.5694753	total: 2.24s	remaining: 746ms
75:	learn: 11.4471422	total: 2.27s	remaining: 715ms
76:	learn: 11.3357642	total: 2.29s	remaining: 685ms
77:	learn: 11.2160164	total: 2.33s	remaining: 658ms
78:	learn: 11.1477947	total: 2.36s	remaining: 627ms
79:	learn: 11.0733969	total: 2.38s	remaining: 596ms
80:	learn: 10.9851608	total: 2.42s	remaining: 567ms
81:	learn: 10.8669537	total: 2.45s	remaining: 539ms
82:	learn: 10.7846130	total: 2.48s	remaining: 508ms
83:	learn: 10.6429068	total: 2.51s	remaining: 478ms
84:	learn: 10.5485368	total: 2.54s	remaining: 448ms
85:	learn: 10.4626750	total: 2.57s	remaining: 419ms
86:	learn: 10.3487863	total: 2.6s	remaining: 389ms
87:	learn: 10.2608682	total: 2.63s	remaining: 358ms
88:	learn: 10.1492862	total: 2.66s	remaining: 329ms
89:	learn: 10.0825429	total: 2.69s	remaining: 299ms
90:	learn: 9.9668337	total: 2.72s	remaining: 269ms
91:	learn: 9.8924239	total: 2.75s	remaining: 239ms
92:	learn: 9.7959729	total: 2.77s	remaining: 209ms
93:	learn: 9.7342503	total: 2.81s	remaining: 179ms
94:	learn: 9.6266181	total: 2.84s	remaining: 149ms
95:	learn: 9.5607316	total: 2.88s	remaining: 120ms
96:	learn: 9.4615938	total: 2.9s	remaining: 89.8ms
97:	learn: 9.3562852	total: 2.93s	remaining: 59.9ms
98:	learn: 9.2518786	total: 2.96s	remaining: 29.9ms
99:	learn: 9.2130065	total: 2.99s	remaining: 0us
0:	learn: 45.6477780	total: 27.7ms	remaining: 2.74s
1:	learn: 44.3885048	total: 69.6ms	remaining: 3.41s
2:	learn: 43.1316502	total: 96.4ms	remaining: 3.12s
3:	learn: 41.8123054	total: 124ms	remaining: 2.97s
4:	learn: 40.7214533	total: 152ms	remaining: 2.88s
5:	learn: 39.6276122	total: 179ms	remaining: 2.81s
6:	learn: 38.6471225	total: 206ms	remaining: 2.73s
7:	learn: 37.7493668	total: 232ms	remaining: 2.67s
8:	learn: 36.7733816	total: 259ms	remaining: 2.62s
9:	learn: 36.1233521	total: 286ms	remaining: 2.58s
10:	learn: 35.5715091	total: 333ms	remaining: 2.7s
11:	learn: 34.6287751	total: 361ms	remaining: 2.65s
12:	learn: 33.8024988	total: 390ms	remaining: 2.61s
13:	learn: 33.0699864	total: 418ms	remaining: 2.57s
14:	learn: 32.2267139	total: 446ms	remaining: 2.53s
15:	learn: 31.4879090	total: 472ms	remaining: 2.48s
16:	learn: 30.6681130	total: 500ms	remaining: 2.44s
17:	learn: 29.9739192	total: 529ms	remaining: 2.41s
18:	learn: 29.3293065	total: 573ms	remaining: 2.44s
19:	learn: 28.5893418	total: 602ms	remaining: 2.41s
20:	learn: 28.0793862	total: 629ms	remaining: 2.37s
21:	learn: 27.5553702	total: 657ms	remaining: 2.33s
22:	learn: 27.0123732	total: 684ms	remaining: 2.29s
23:	learn: 26.3897992	total: 712ms	remaining: 2.25s
24:	learn: 25.7405079	total: 741ms	remaining: 2.22s
25:	learn: 25.2366375	total: 775ms	remaining: 2.21s
26:	learn: 24.8040727	total: 810ms	remaining: 2.19s
27:	learn: 24.3831145	total: 837ms	remaining: 2.15s
28:	learn: 23.9264258	total: 866ms	remaining: 2.12s
29:	learn: 23.4965665	total: 893ms	remaining: 2.08s
30:	learn: 23.0750907	total: 921ms	remaining: 2.05s
31:	learn: 22.6177456	total: 948ms	remaining: 2.01s
32:	learn: 22.1936903	total: 983ms	remaining: 2s
33:	learn: 21.7237373	total: 1.01s	remaining: 1.97s
34:	learn: 21.2885821	total: 1.04s	remaining: 1.93s
35:	learn: 20.8773820	total: 1.08s	remaining: 1.91s
36:	learn: 20.5069022	total: 1.1s	remaining: 1.88s
37:	learn: 20.1026772	total: 1.13s	remaining: 1.84s
38:	learn: 19.7278063	total: 1.16s	remaining: 1.81s
39:	learn: 19.4576176	total: 1.18s	remaining: 1.78s
40:	learn: 19.1716041	total: 1.22s	remaining: 1.75s
41:	learn: 18.8541728	total: 1.25s	remaining: 1.72s
42:	learn: 18.6411979	total: 1.27s	remaining: 1.69s
43:	learn: 18.3146636	total: 1.31s	remaining: 1.66s
44:	learn: 18.0208582	total: 1.33s	remaining: 1.63s
45:	learn: 17.7344521	total: 1.36s	remaining: 1.6s
46:	learn: 17.4797974	total: 1.39s	remaining: 1.57s
47:	learn: 17.2182299	total: 1.43s	remaining: 1.54s
48:	learn: 16.9607453	total: 1.46s	remaining: 1.51s
49:	learn: 16.7297863	total: 1.48s	remaining: 1.48s
50:	learn: 16.4913674	total: 1.51s	remaining: 1.45s
51:	learn: 16.2886548	total: 1.54s	remaining: 1.42s
52:	learn: 16.0297055	total: 1.57s	remaining: 1.39s
53:	learn: 15.8558289	total: 1.6s	remaining: 1.36s
54:	learn: 15.6256772	total: 1.63s	remaining: 1.33s
55:	learn: 15.4571057	total: 1.66s	remaining: 1.3s
56:	learn: 15.2857211	total: 1.69s	remaining: 1.27s
57:	learn: 15.0790849	total: 1.72s	remaining: 1.24s
58:	learn: 14.8706573	total: 1.74s	remaining: 1.21s
59:	learn: 14.7142314	total: 1.77s	remaining: 1.18s
60:	learn: 14.5574075	total: 1.81s	remaining: 1.16s
61:	learn: 14.3831719	total: 1.83s	remaining: 1.12s
62:	learn: 14.2429846	total: 1.86s	remaining: 1.09s
63:	learn: 14.0982260	total: 1.9s	remaining: 1.07s
64:	learn: 13.9793470	total: 1.93s	remaining: 1.04s
65:	learn: 13.7843655	total: 1.96s	remaining: 1.01s
66:	learn: 13.6382336	total: 1.98s	remaining: 977ms
67:	learn: 13.5395713	total: 2.01s	remaining: 947ms
68:	learn: 13.3797741	total: 2.04s	remaining: 919ms
69:	learn: 13.2910103	total: 2.08s	remaining: 890ms
70:	learn: 13.1587887	total: 2.11s	remaining: 862ms
71:	learn: 13.0464642	total: 2.14s	remaining: 831ms
72:	learn: 12.9189091	total: 2.17s	remaining: 801ms
73:	learn: 12.8056893	total: 2.19s	remaining: 771ms
74:	learn: 12.6904403	total: 2.22s	remaining: 741ms
75:	learn: 12.5608506	total: 2.25s	remaining: 711ms
76:	learn: 12.4712551	total: 2.28s	remaining: 682ms
77:	learn: 12.3371889	total: 2.32s	remaining: 656ms
78:	learn: 12.2449022	total: 2.35s	remaining: 625ms
79:	learn: 12.2163788	total: 2.38s	remaining: 595ms
80:	learn: 12.1464820	total: 2.41s	remaining: 565ms
81:	learn: 12.0001066	total: 2.43s	remaining: 534ms
82:	learn: 11.8843691	total: 2.46s	remaining: 504ms
83:	learn: 11.7638631	total: 2.5s	remaining: 475ms
84:	learn: 11.6389646	total: 2.52s	remaining: 445ms
85:	learn: 11.5343065	total: 2.56s	remaining: 417ms
86:	learn: 11.4267531	total: 2.59s	remaining: 387ms
87:	learn: 11.3136728	total: 2.61s	remaining: 357ms
88:	learn: 11.2361574	total: 2.64s	remaining: 327ms
89:	learn: 11.1507886	total: 2.67s	remaining: 297ms
90:	learn: 11.0988952	total: 2.71s	remaining: 268ms
91:	learn: 10.9988426	total: 2.73s	remaining: 238ms
92:	learn: 10.9584792	total: 2.76s	remaining: 208ms
93:	learn: 10.8771461	total: 2.8s	remaining: 179ms
94:	learn: 10.8161358	total: 2.82s	remaining: 149ms
95:	learn: 10.7524450	total: 2.85s	remaining: 119ms
96:	learn: 10.6566836	total: 2.88s	remaining: 89ms
97:	learn: 10.5550602	total: 2.91s	remaining: 59.5ms
98:	learn: 10.4790583	total: 2.94s	remaining: 29.7ms
99:	learn: 10.4087354	total: 2.97s	remaining: 0us
0:	learn: 46.5398832	total: 26.7ms	remaining: 2.65s
1:	learn: 45.3142618	total: 53.9ms	remaining: 2.64s
2:	learn: 44.0378137	total: 89.2ms	remaining: 2.88s
3:	learn: 42.7976734	total: 122ms	remaining: 2.93s
4:	learn: 41.7080859	total: 149ms	remaining: 2.84s
5:	learn: 40.4513327	total: 177ms	remaining: 2.77s
6:	learn: 39.4903346	total: 204ms	remaining: 2.71s
7:	learn: 38.3767870	total: 232ms	remaining: 2.67s
8:	learn: 37.4056810	total: 258ms	remaining: 2.61s
9:	learn: 36.4947716	total: 285ms	remaining: 2.57s
10:	learn: 35.4421832	total: 322ms	remaining: 2.6s
11:	learn: 34.6183487	total: 346ms	remaining: 2.54s
12:	learn: 33.9603524	total: 375ms	remaining: 2.51s
13:	learn: 33.0635534	total: 403ms	remaining: 2.47s
14:	learn: 32.2067999	total: 429ms	remaining: 2.43s
15:	learn: 31.3961282	total: 457ms	remaining: 2.4s
16:	learn: 30.7113239	total: 484ms	remaining: 2.36s
17:	learn: 29.9919005	total: 511ms	remaining: 2.33s
18:	learn: 29.4016891	total: 539ms	remaining: 2.3s
19:	learn: 28.7435066	total: 579ms	remaining: 2.32s
20:	learn: 28.2283605	total: 609ms	remaining: 2.29s
21:	learn: 27.6749781	total: 637ms	remaining: 2.26s
22:	learn: 27.1695356	total: 663ms	remaining: 2.22s
23:	learn: 26.6842901	total: 691ms	remaining: 2.19s
24:	learn: 26.0987344	total: 719ms	remaining: 2.16s
25:	learn: 25.5266873	total: 748ms	remaining: 2.13s
26:	learn: 25.0200431	total: 776ms	remaining: 2.1s
27:	learn: 24.5972016	total: 828ms	remaining: 2.13s
28:	learn: 24.1557061	total: 857ms	remaining: 2.1s
29:	learn: 23.7405036	total: 884ms	remaining: 2.06s
30:	learn: 23.3574513	total: 912ms	remaining: 2.03s
31:	learn: 23.0493499	total: 939ms	remaining: 2s
32:	learn: 22.6480655	total: 966ms	remaining: 1.96s
33:	learn: 22.2777353	total: 994ms	remaining: 1.93s
34:	learn: 21.8294628	total: 1.03s	remaining: 1.91s
35:	learn: 21.4783115	total: 1.06s	remaining: 1.88s
36:	learn: 21.1271427	total: 1.1s	remaining: 1.87s
37:	learn: 20.7967443	total: 1.12s	remaining: 1.83s
38:	learn: 20.4949793	total: 1.15s	remaining: 1.8s
39:	learn: 20.1991695	total: 1.18s	remaining: 1.77s
40:	learn: 19.8869467	total: 1.21s	remaining: 1.74s
41:	learn: 19.5656862	total: 1.23s	remaining: 1.71s
42:	learn: 19.2415335	total: 1.28s	remaining: 1.69s
43:	learn: 18.9725471	total: 1.3s	remaining: 1.66s
44:	learn: 18.7035722	total: 1.34s	remaining: 1.64s
45:	learn: 18.3840395	total: 1.37s	remaining: 1.61s
46:	learn: 18.1486662	total: 1.4s	remaining: 1.58s
47:	learn: 17.8740440	total: 1.43s	remaining: 1.55s
48:	learn: 17.6056273	total: 1.46s	remaining: 1.52s
49:	learn: 17.4011083	total: 1.49s	remaining: 1.49s
50:	learn: 17.1935449	total: 1.52s	remaining: 1.46s
51:	learn: 16.9415227	total: 1.55s	remaining: 1.43s
52:	learn: 16.6568624	total: 1.58s	remaining: 1.41s
53:	learn: 16.4254479	total: 1.61s	remaining: 1.37s
54:	learn: 16.1958120	total: 1.64s	remaining: 1.34s
55:	learn: 15.9494332	total: 1.67s	remaining: 1.31s
56:	learn: 15.7736632	total: 1.7s	remaining: 1.28s
57:	learn: 15.6314122	total: 1.74s	remaining: 1.26s
58:	learn: 15.3707626	total: 1.77s	remaining: 1.23s
59:	learn: 15.2211664	total: 1.8s	remaining: 1.2s
60:	learn: 14.9939278	total: 1.83s	remaining: 1.17s
61:	learn: 14.8327626	total: 1.86s	remaining: 1.14s
62:	learn: 14.6555776	total: 1.89s	remaining: 1.11s
63:	learn: 14.5516961	total: 1.92s	remaining: 1.08s
64:	learn: 14.3660780	total: 1.95s	remaining: 1.05s
65:	learn: 14.1721909	total: 1.98s	remaining: 1.02s
66:	learn: 14.0877696	total: 2s	remaining: 988ms
67:	learn: 13.9435793	total: 2.03s	remaining: 957ms
68:	learn: 13.7745805	total: 2.06s	remaining: 927ms
69:	learn: 13.6490858	total: 2.1s	remaining: 900ms
70:	learn: 13.5022080	total: 2.14s	remaining: 873ms
71:	learn: 13.3922163	total: 2.16s	remaining: 841ms
72:	learn: 13.2842701	total: 2.19s	remaining: 810ms
73:	learn: 13.1698693	total: 2.22s	remaining: 779ms
74:	learn: 13.0256610	total: 2.25s	remaining: 749ms
75:	learn: 12.8855147	total: 2.27s	remaining: 718ms
76:	learn: 12.7807971	total: 2.3s	remaining: 687ms
77:	learn: 12.6618407	total: 2.34s	remaining: 659ms
78:	learn: 12.5369866	total: 2.37s	remaining: 631ms
79:	learn: 12.4376925	total: 2.4s	remaining: 600ms
80:	learn: 12.3005012	total: 2.43s	remaining: 570ms
81:	learn: 12.1751315	total: 2.46s	remaining: 539ms
82:	learn: 12.0612289	total: 2.48s	remaining: 509ms
83:	learn: 11.9757193	total: 2.51s	remaining: 478ms
84:	learn: 11.8530411	total: 2.54s	remaining: 448ms
85:	learn: 11.7523616	total: 2.58s	remaining: 421ms
86:	learn: 11.6645272	total: 2.61s	remaining: 390ms
87:	learn: 11.5645111	total: 2.64s	remaining: 360ms
88:	learn: 11.4692480	total: 2.67s	remaining: 330ms
89:	learn: 11.3724902	total: 2.7s	remaining: 300ms
90:	learn: 11.2842147	total: 2.72s	remaining: 269ms
91:	learn: 11.1868295	total: 2.75s	remaining: 239ms
92:	learn: 11.0293625	total: 2.78s	remaining: 209ms
93:	learn: 10.9495625	total: 2.81s	remaining: 180ms
94:	learn: 10.8608168	total: 2.85s	remaining: 150ms
95:	learn: 10.7804780	total: 2.88s	remaining: 120ms
96:	learn: 10.6503623	total: 2.91s	remaining: 90ms
97:	learn: 10.5906748	total: 2.94s	remaining: 59.9ms
98:	learn: 10.4539468	total: 2.96s	remaining: 29.9ms
99:	learn: 10.3804160	total: 2.99s	remaining: 0us
0:	learn: 27.5585353	total: 5.91ms	remaining: 585ms
1:	learn: 27.1656995	total: 11.1ms	remaining: 545ms
2:	learn: 26.8590175	total: 16.1ms	remaining: 520ms
3:	learn: 26.5818406	total: 21ms	remaining: 505ms
4:	learn: 26.1148663	total: 26.3ms	remaining: 500ms
5:	learn: 25.7690484	total: 32.2ms	remaining: 504ms
6:	learn: 25.3489206	total: 38.2ms	remaining: 507ms
7:	learn: 24.9542406	total: 43ms	remaining: 494ms
8:	learn: 24.6777517	total: 47.9ms	remaining: 484ms
9:	learn: 24.3242344	total: 52.5ms	remaining: 472ms
10:	learn: 24.0383073	total: 56.8ms	remaining: 460ms
11:	learn: 23.7383420	total: 61ms	remaining: 447ms
12:	learn: 23.3461670	total: 65.4ms	remaining: 438ms
13:	learn: 23.0928636	total: 69.7ms	remaining: 428ms
14:	learn: 22.8770414	total: 74.1ms	remaining: 420ms
15:	learn: 22.6323214	total: 78.6ms	remaining: 413ms
16:	learn: 22.3597072	total: 82.7ms	remaining: 404ms
17:	learn: 22.1079813	total: 87ms	remaining: 396ms
18:	learn: 21.8421199	total: 91.2ms	remaining: 389ms
19:	learn: 21.6576508	total: 95.9ms	remaining: 384ms
20:	learn: 21.4301268	total: 102ms	remaining: 383ms
21:	learn: 21.2287388	total: 108ms	remaining: 383ms
22:	learn: 21.0553872	total: 114ms	remaining: 380ms
23:	learn: 20.8977091	total: 119ms	remaining: 377ms
24:	learn: 20.6619051	total: 125ms	remaining: 375ms
25:	learn: 20.5040955	total: 131ms	remaining: 372ms
26:	learn: 20.3181195	total: 137ms	remaining: 371ms
27:	learn: 20.0869436	total: 144ms	remaining: 370ms
28:	learn: 19.9375985	total: 150ms	remaining: 367ms
29:	learn: 19.8247516	total: 155ms	remaining: 362ms
30:	learn: 19.6261697	total: 161ms	remaining: 359ms
31:	learn: 19.4547236	total: 170ms	remaining: 361ms
32:	learn: 19.3157092	total: 183ms	remaining: 372ms
33:	learn: 19.1561419	total: 195ms	remaining: 378ms
34:	learn: 19.0453620	total: 205ms	remaining: 381ms
35:	learn: 18.8738574	total: 223ms	remaining: 396ms
36:	learn: 18.7072907	total: 229ms	remaining: 390ms
37:	learn: 18.5877943	total: 235ms	remaining: 384ms
38:	learn: 18.4436380	total: 241ms	remaining: 376ms
39:	learn: 18.3463356	total: 247ms	remaining: 370ms
40:	learn: 18.2008059	total: 253ms	remaining: 364ms
41:	learn: 18.0582079	total: 258ms	remaining: 357ms
42:	learn: 17.8891982	total: 264ms	remaining: 350ms
43:	learn: 17.7332246	total: 269ms	remaining: 343ms
44:	learn: 17.6206421	total: 274ms	remaining: 335ms
45:	learn: 17.4982800	total: 280ms	remaining: 329ms
46:	learn: 17.3970150	total: 285ms	remaining: 322ms
47:	learn: 17.3058203	total: 290ms	remaining: 314ms
48:	learn: 17.1789256	total: 294ms	remaining: 306ms
49:	learn: 17.0916229	total: 298ms	remaining: 298ms
50:	learn: 16.9859820	total: 302ms	remaining: 291ms
51:	learn: 16.8995582	total: 307ms	remaining: 283ms
52:	learn: 16.8137014	total: 311ms	remaining: 276ms
53:	learn: 16.7021451	total: 316ms	remaining: 269ms
54:	learn: 16.5895582	total: 320ms	remaining: 262ms
55:	learn: 16.5015639	total: 324ms	remaining: 255ms
56:	learn: 16.4356637	total: 329ms	remaining: 248ms
57:	learn: 16.3514525	total: 334ms	remaining: 242ms
58:	learn: 16.2401369	total: 339ms	remaining: 235ms
59:	learn: 16.1293223	total: 343ms	remaining: 229ms
60:	learn: 16.0271167	total: 347ms	remaining: 222ms
61:	learn: 15.9126257	total: 352ms	remaining: 216ms
62:	learn: 15.8391096	total: 358ms	remaining: 210ms
63:	learn: 15.7441773	total: 363ms	remaining: 204ms
64:	learn: 15.6885195	total: 371ms	remaining: 200ms
65:	learn: 15.6052039	total: 378ms	remaining: 195ms
66:	learn: 15.5074202	total: 386ms	remaining: 190ms
67:	learn: 15.4054338	total: 393ms	remaining: 185ms
68:	learn: 15.2885714	total: 399ms	remaining: 179ms
69:	learn: 15.2157472	total: 404ms	remaining: 173ms
70:	learn: 15.1031554	total: 409ms	remaining: 167ms
71:	learn: 15.0237470	total: 414ms	remaining: 161ms
72:	learn: 14.9756825	total: 420ms	remaining: 155ms
73:	learn: 14.8840596	total: 425ms	remaining: 149ms
74:	learn: 14.8077061	total: 431ms	remaining: 144ms
75:	learn: 14.7444437	total: 453ms	remaining: 143ms
76:	learn: 14.6751720	total: 459ms	remaining: 137ms
77:	learn: 14.5830333	total: 465ms	remaining: 131ms
78:	learn: 14.5241206	total: 472ms	remaining: 125ms
79:	learn: 14.4892731	total: 477ms	remaining: 119ms
80:	learn: 14.4256605	total: 482ms	remaining: 113ms
81:	learn: 14.3666860	total: 488ms	remaining: 107ms
82:	learn: 14.2938372	total: 494ms	remaining: 101ms
83:	learn: 14.2161532	total: 501ms	remaining: 95.4ms
84:	learn: 14.1582910	total: 507ms	remaining: 89.4ms
85:	learn: 14.1029153	total: 512ms	remaining: 83.4ms
86:	learn: 14.0475835	total: 518ms	remaining: 77.4ms
87:	learn: 13.9892661	total: 523ms	remaining: 71.3ms
88:	learn: 13.9481628	total: 528ms	remaining: 65.2ms
89:	learn: 13.8483991	total: 533ms	remaining: 59.2ms
90:	learn: 13.7775614	total: 538ms	remaining: 53.2ms
91:	learn: 13.7304585	total: 544ms	remaining: 47.3ms
92:	learn: 13.6783381	total: 550ms	remaining: 41.4ms
93:	learn: 13.6356964	total: 555ms	remaining: 35.4ms
94:	learn: 13.5924371	total: 561ms	remaining: 29.5ms
95:	learn: 13.5400746	total: 570ms	remaining: 23.7ms
96:	learn: 13.4897333	total: 581ms	remaining: 18ms
97:	learn: 13.4470321	total: 592ms	remaining: 12.1ms
98:	learn: 13.3856082	total: 602ms	remaining: 6.08ms
99:	learn: 13.3082371	total: 607ms	remaining: 0us
0:	learn: 43.0395283	total: 10.8ms	remaining: 1.07s
1:	learn: 42.1130223	total: 16.3ms	remaining: 800ms
2:	learn: 41.1753409	total: 21.9ms	remaining: 707ms
3:	learn: 40.3637444	total: 26.8ms	remaining: 644ms
4:	learn: 39.6508088	total: 31.7ms	remaining: 603ms
5:	learn: 38.7217934	total: 36.7ms	remaining: 575ms
6:	learn: 37.8538055	total: 41.4ms	remaining: 550ms
7:	learn: 36.9793574	total: 46.5ms	remaining: 534ms
8:	learn: 36.3076984	total: 51.9ms	remaining: 524ms
9:	learn: 35.6673160	total: 69.3ms	remaining: 624ms
10:	learn: 34.8889800	total: 74.4ms	remaining: 602ms
11:	learn: 34.1675517	total: 79ms	remaining: 580ms
12:	learn: 33.6779564	total: 83.9ms	remaining: 562ms
13:	learn: 33.0710039	total: 88.3ms	remaining: 542ms
14:	learn: 32.4966674	total: 92.6ms	remaining: 524ms
15:	learn: 31.9492856	total: 97.2ms	remaining: 510ms
16:	learn: 31.5108129	total: 102ms	remaining: 496ms
17:	learn: 30.9804023	total: 110ms	remaining: 503ms
18:	learn: 30.4169089	total: 118ms	remaining: 503ms
19:	learn: 29.8930375	total: 127ms	remaining: 506ms
20:	learn: 29.3974421	total: 135ms	remaining: 507ms
21:	learn: 28.8792307	total: 140ms	remaining: 496ms
22:	learn: 28.3894474	total: 145ms	remaining: 486ms
23:	learn: 27.9921276	total: 150ms	remaining: 476ms
24:	learn: 27.6158887	total: 156ms	remaining: 467ms
25:	learn: 27.2866950	total: 161ms	remaining: 458ms
26:	learn: 26.8770708	total: 166ms	remaining: 450ms
27:	learn: 26.6233005	total: 171ms	remaining: 440ms
28:	learn: 26.2921934	total: 176ms	remaining: 432ms
29:	learn: 25.9156920	total: 182ms	remaining: 424ms
30:	learn: 25.5311106	total: 184ms	remaining: 409ms
31:	learn: 25.2178997	total: 189ms	remaining: 401ms
32:	learn: 24.8572196	total: 193ms	remaining: 392ms
33:	learn: 24.5849710	total: 198ms	remaining: 385ms
34:	learn: 24.2209190	total: 204ms	remaining: 378ms
35:	learn: 23.8708250	total: 208ms	remaining: 371ms
36:	learn: 23.5325279	total: 213ms	remaining: 362ms
37:	learn: 23.2116148	total: 217ms	remaining: 354ms
38:	learn: 22.9696787	total: 222ms	remaining: 347ms
39:	learn: 22.7936783	total: 226ms	remaining: 339ms
40:	learn: 22.6228847	total: 231ms	remaining: 332ms
41:	learn: 22.3691527	total: 236ms	remaining: 326ms
42:	learn: 22.1002173	total: 240ms	remaining: 318ms
43:	learn: 21.9157268	total: 245ms	remaining: 312ms
44:	learn: 21.7229102	total: 249ms	remaining: 305ms
45:	learn: 21.4642005	total: 254ms	remaining: 298ms
46:	learn: 21.3029442	total: 258ms	remaining: 291ms
47:	learn: 21.1469792	total: 262ms	remaining: 284ms
48:	learn: 20.9458235	total: 267ms	remaining: 278ms
49:	learn: 20.7335242	total: 272ms	remaining: 272ms
50:	learn: 20.5440269	total: 277ms	remaining: 266ms
51:	learn: 20.3661449	total: 282ms	remaining: 260ms
52:	learn: 20.2158134	total: 286ms	remaining: 254ms
53:	learn: 19.9934873	total: 291ms	remaining: 248ms
54:	learn: 19.7879739	total: 295ms	remaining: 242ms
55:	learn: 19.6630460	total: 300ms	remaining: 236ms
56:	learn: 19.5152729	total: 309ms	remaining: 233ms
57:	learn: 19.3581128	total: 316ms	remaining: 229ms
58:	learn: 19.2209303	total: 325ms	remaining: 226ms
59:	learn: 19.0965248	total: 332ms	remaining: 221ms
60:	learn: 19.0035954	total: 338ms	remaining: 216ms
61:	learn: 18.8554149	total: 343ms	remaining: 210ms
62:	learn: 18.7095427	total: 348ms	remaining: 204ms
63:	learn: 18.5751494	total: 360ms	remaining: 202ms
64:	learn: 18.4678251	total: 365ms	remaining: 196ms
65:	learn: 18.3500325	total: 370ms	remaining: 191ms
66:	learn: 18.2088983	total: 376ms	remaining: 185ms
67:	learn: 18.0737705	total: 381ms	remaining: 179ms
68:	learn: 17.9325058	total: 386ms	remaining: 173ms
69:	learn: 17.8003911	total: 391ms	remaining: 168ms
70:	learn: 17.7385366	total: 397ms	remaining: 162ms
71:	learn: 17.6106998	total: 403ms	remaining: 157ms
72:	learn: 17.4816270	total: 408ms	remaining: 151ms
73:	learn: 17.4025554	total: 412ms	remaining: 145ms
74:	learn: 17.2902108	total: 417ms	remaining: 139ms
75:	learn: 17.2158048	total: 421ms	remaining: 133ms
76:	learn: 17.1261053	total: 426ms	remaining: 127ms
77:	learn: 17.0308917	total: 431ms	remaining: 121ms
78:	learn: 16.9546705	total: 435ms	remaining: 116ms
79:	learn: 16.8319165	total: 439ms	remaining: 110ms
80:	learn: 16.7687017	total: 443ms	remaining: 104ms
81:	learn: 16.6972326	total: 448ms	remaining: 98.3ms
82:	learn: 16.6124580	total: 453ms	remaining: 92.8ms
83:	learn: 16.4999052	total: 458ms	remaining: 87.3ms
84:	learn: 16.4302484	total: 463ms	remaining: 81.7ms
85:	learn: 16.3201363	total: 468ms	remaining: 76.2ms
86:	learn: 16.2534314	total: 473ms	remaining: 70.7ms
87:	learn: 16.1720485	total: 478ms	remaining: 65.2ms
88:	learn: 16.0625751	total: 483ms	remaining: 59.7ms
89:	learn: 15.9135088	total: 488ms	remaining: 54.2ms
90:	learn: 15.8658863	total: 493ms	remaining: 48.7ms
91:	learn: 15.8066805	total: 498ms	remaining: 43.3ms
92:	learn: 15.7412103	total: 508ms	remaining: 38.2ms
93:	learn: 15.6542776	total: 518ms	remaining: 33.1ms
94:	learn: 15.5760334	total: 525ms	remaining: 27.6ms
95:	learn: 15.5434131	total: 533ms	remaining: 22.2ms
96:	learn: 15.4709561	total: 538ms	remaining: 16.6ms
97:	learn: 15.4449618	total: 544ms	remaining: 11.1ms
98:	learn: 15.3752761	total: 549ms	remaining: 5.55ms
99:	learn: 15.3106595	total: 555ms	remaining: 0us
0:	learn: 46.7142257	total: 5.72ms	remaining: 566ms
1:	learn: 45.7634153	total: 10.1ms	remaining: 497ms
2:	learn: 45.0054253	total: 14.6ms	remaining: 471ms
3:	learn: 44.2120432	total: 19.6ms	remaining: 470ms
4:	learn: 43.3960472	total: 24.4ms	remaining: 464ms
5:	learn: 42.8588120	total: 29ms	remaining: 454ms
6:	learn: 41.9533701	total: 33.5ms	remaining: 445ms
7:	learn: 41.2745030	total: 38.1ms	remaining: 438ms
8:	learn: 40.6797495	total: 42.9ms	remaining: 433ms
9:	learn: 39.9899571	total: 47.8ms	remaining: 430ms
10:	learn: 39.4682100	total: 53ms	remaining: 429ms
11:	learn: 39.0305595	total: 58ms	remaining: 425ms
12:	learn: 38.4200417	total: 62.6ms	remaining: 419ms
13:	learn: 37.8425194	total: 67.3ms	remaining: 413ms
14:	learn: 37.4203127	total: 71.6ms	remaining: 406ms
15:	learn: 36.9917688	total: 76.4ms	remaining: 401ms
16:	learn: 36.5544138	total: 80.9ms	remaining: 395ms
17:	learn: 36.0727019	total: 89.2ms	remaining: 406ms
18:	learn: 35.4835715	total: 96.5ms	remaining: 412ms
19:	learn: 34.9865654	total: 106ms	remaining: 422ms
20:	learn: 34.6063373	total: 112ms	remaining: 422ms
21:	learn: 34.0997289	total: 118ms	remaining: 420ms
22:	learn: 33.7313171	total: 124ms	remaining: 414ms
23:	learn: 33.3582000	total: 129ms	remaining: 408ms
24:	learn: 32.9432456	total: 134ms	remaining: 402ms
25:	learn: 32.5220888	total: 139ms	remaining: 396ms
26:	learn: 32.2172292	total: 144ms	remaining: 390ms
27:	learn: 31.8972904	total: 149ms	remaining: 384ms
28:	learn: 31.6405350	total: 154ms	remaining: 378ms
29:	learn: 31.4167702	total: 160ms	remaining: 373ms
30:	learn: 30.8541961	total: 162ms	remaining: 360ms
31:	learn: 30.5572111	total: 167ms	remaining: 355ms
32:	learn: 30.1700399	total: 172ms	remaining: 350ms
33:	learn: 29.8537271	total: 178ms	remaining: 345ms
34:	learn: 29.6192540	total: 183ms	remaining: 341ms
35:	learn: 29.3276362	total: 189ms	remaining: 336ms
36:	learn: 28.9985179	total: 193ms	remaining: 329ms
37:	learn: 28.7046880	total: 198ms	remaining: 323ms
38:	learn: 28.4412677	total: 203ms	remaining: 318ms
39:	learn: 28.1277292	total: 208ms	remaining: 312ms
40:	learn: 27.9000750	total: 213ms	remaining: 307ms
41:	learn: 27.5433162	total: 218ms	remaining: 302ms
42:	learn: 27.2493285	total: 223ms	remaining: 296ms
43:	learn: 26.9576632	total: 225ms	remaining: 287ms
44:	learn: 26.6177110	total: 230ms	remaining: 281ms
45:	learn: 26.2812456	total: 235ms	remaining: 276ms
46:	learn: 26.0803859	total: 240ms	remaining: 270ms
47:	learn: 25.9543581	total: 245ms	remaining: 265ms
48:	learn: 25.7951582	total: 250ms	remaining: 260ms
49:	learn: 25.6548184	total: 257ms	remaining: 257ms
50:	learn: 25.4010843	total: 264ms	remaining: 254ms
51:	learn: 24.9773937	total: 271ms	remaining: 250ms
52:	learn: 24.8026156	total: 278ms	remaining: 246ms
53:	learn: 24.5568053	total: 282ms	remaining: 240ms
54:	learn: 24.2281839	total: 287ms	remaining: 235ms
55:	learn: 23.9202795	total: 293ms	remaining: 230ms
56:	learn: 23.7625591	total: 299ms	remaining: 226ms
57:	learn: 23.5429721	total: 304ms	remaining: 220ms
58:	learn: 23.3175893	total: 310ms	remaining: 215ms
59:	learn: 23.2035130	total: 315ms	remaining: 210ms
60:	learn: 23.0232450	total: 320ms	remaining: 205ms
61:	learn: 22.8384958	total: 325ms	remaining: 199ms
62:	learn: 22.6499902	total: 333ms	remaining: 195ms
63:	learn: 22.4577426	total: 341ms	remaining: 192ms
64:	learn: 22.3333158	total: 348ms	remaining: 187ms
65:	learn: 22.2064131	total: 354ms	remaining: 183ms
66:	learn: 22.1434971	total: 361ms	remaining: 178ms
67:	learn: 21.9596519	total: 368ms	remaining: 173ms
68:	learn: 21.8475576	total: 374ms	remaining: 168ms
69:	learn: 21.6954745	total: 380ms	remaining: 163ms
70:	learn: 21.5635976	total: 387ms	remaining: 158ms
71:	learn: 21.4588506	total: 393ms	remaining: 153ms
72:	learn: 21.3527268	total: 397ms	remaining: 147ms
73:	learn: 21.2661288	total: 402ms	remaining: 141ms
74:	learn: 21.1817333	total: 407ms	remaining: 136ms
75:	learn: 21.0527553	total: 411ms	remaining: 130ms
76:	learn: 20.9229021	total: 415ms	remaining: 124ms
77:	learn: 20.7563946	total: 420ms	remaining: 118ms
78:	learn: 20.6569831	total: 424ms	remaining: 113ms
79:	learn: 20.4982663	total: 429ms	remaining: 107ms
80:	learn: 20.3185460	total: 434ms	remaining: 102ms
81:	learn: 20.2096241	total: 438ms	remaining: 96.2ms
82:	learn: 20.1274891	total: 443ms	remaining: 90.7ms
83:	learn: 20.0740139	total: 448ms	remaining: 85.3ms
84:	learn: 19.9630699	total: 452ms	remaining: 79.8ms
85:	learn: 19.8753899	total: 457ms	remaining: 74.5ms
86:	learn: 19.6563612	total: 462ms	remaining: 69ms
87:	learn: 19.4680232	total: 467ms	remaining: 63.7ms
88:	learn: 19.3503431	total: 472ms	remaining: 58.3ms
89:	learn: 19.2221379	total: 477ms	remaining: 53ms
90:	learn: 19.0732542	total: 485ms	remaining: 48ms
91:	learn: 18.9825190	total: 493ms	remaining: 42.9ms
92:	learn: 18.8839009	total: 501ms	remaining: 37.7ms
93:	learn: 18.8012219	total: 509ms	remaining: 32.5ms
94:	learn: 18.7172713	total: 514ms	remaining: 27ms
95:	learn: 18.6201170	total: 519ms	remaining: 21.6ms
96:	learn: 18.5318611	total: 524ms	remaining: 16.2ms
97:	learn: 18.3833356	total: 530ms	remaining: 10.8ms
98:	learn: 18.3289700	total: 535ms	remaining: 5.4ms
99:	learn: 18.2227333	total: 540ms	remaining: 0us
0:	learn: 46.3764524	total: 5ms	remaining: 495ms
1:	learn: 45.5561269	total: 8.96ms	remaining: 439ms
2:	learn: 44.8811245	total: 13.5ms	remaining: 437ms
3:	learn: 44.0788617	total: 17.7ms	remaining: 425ms
4:	learn: 43.3619790	total: 21.8ms	remaining: 415ms
5:	learn: 42.6912112	total: 26.2ms	remaining: 410ms
6:	learn: 42.2292118	total: 30.5ms	remaining: 405ms
7:	learn: 41.7725191	total: 34.6ms	remaining: 398ms
8:	learn: 41.1676614	total: 38.5ms	remaining: 389ms
9:	learn: 40.5771076	total: 42.4ms	remaining: 382ms
10:	learn: 39.8343757	total: 46.7ms	remaining: 378ms
11:	learn: 39.3761142	total: 51ms	remaining: 374ms
12:	learn: 38.5254692	total: 55.1ms	remaining: 369ms
13:	learn: 37.9629555	total: 59.4ms	remaining: 365ms
14:	learn: 37.4418438	total: 63.3ms	remaining: 359ms
15:	learn: 37.0507283	total: 67.3ms	remaining: 353ms
16:	learn: 36.6264217	total: 71.2ms	remaining: 348ms
17:	learn: 36.1114940	total: 75.9ms	remaining: 346ms
18:	learn: 35.7193862	total: 80.3ms	remaining: 342ms
19:	learn: 35.3301177	total: 84.9ms	remaining: 340ms
20:	learn: 35.0598280	total: 89.1ms	remaining: 335ms
21:	learn: 34.5469736	total: 93.6ms	remaining: 332ms
22:	learn: 34.2064215	total: 98ms	remaining: 328ms
23:	learn: 33.7280710	total: 103ms	remaining: 326ms
24:	learn: 33.3282940	total: 111ms	remaining: 334ms
25:	learn: 32.8478961	total: 119ms	remaining: 339ms
26:	learn: 32.5722164	total: 127ms	remaining: 343ms
27:	learn: 32.2457019	total: 135ms	remaining: 347ms
28:	learn: 31.9230495	total: 140ms	remaining: 343ms
29:	learn: 31.4311611	total: 145ms	remaining: 339ms
30:	learn: 30.9179052	total: 150ms	remaining: 335ms
31:	learn: 30.6201141	total: 156ms	remaining: 331ms
32:	learn: 30.3421106	total: 161ms	remaining: 327ms
33:	learn: 29.9885373	total: 166ms	remaining: 323ms
34:	learn: 29.7462780	total: 172ms	remaining: 319ms
35:	learn: 29.3607153	total: 177ms	remaining: 314ms
36:	learn: 29.1793078	total: 182ms	remaining: 310ms
37:	learn: 28.9276538	total: 187ms	remaining: 306ms
38:	learn: 28.6903934	total: 192ms	remaining: 301ms
39:	learn: 28.2095033	total: 197ms	remaining: 296ms
40:	learn: 27.7990608	total: 202ms	remaining: 291ms
41:	learn: 27.5406632	total: 209ms	remaining: 288ms
42:	learn: 27.2575376	total: 214ms	remaining: 284ms
43:	learn: 26.9741707	total: 219ms	remaining: 278ms
44:	learn: 26.6606899	total: 223ms	remaining: 273ms
45:	learn: 26.4015833	total: 228ms	remaining: 268ms
46:	learn: 26.1828993	total: 233ms	remaining: 263ms
47:	learn: 26.0233709	total: 238ms	remaining: 257ms
48:	learn: 25.9300399	total: 245ms	remaining: 255ms
49:	learn: 25.5861489	total: 251ms	remaining: 251ms
50:	learn: 25.4322012	total: 257ms	remaining: 247ms
51:	learn: 25.1595644	total: 263ms	remaining: 242ms
52:	learn: 24.9955303	total: 268ms	remaining: 238ms
53:	learn: 24.7273966	total: 274ms	remaining: 233ms
54:	learn: 24.5747978	total: 280ms	remaining: 229ms
55:	learn: 24.3807977	total: 286ms	remaining: 225ms
56:	learn: 24.1689569	total: 297ms	remaining: 224ms
57:	learn: 23.9898221	total: 303ms	remaining: 219ms
58:	learn: 23.7566414	total: 328ms	remaining: 228ms
59:	learn: 23.6641165	total: 338ms	remaining: 226ms
60:	learn: 23.5658066	total: 346ms	remaining: 221ms
61:	learn: 23.4338851	total: 362ms	remaining: 222ms
62:	learn: 23.2408837	total: 369ms	remaining: 217ms
63:	learn: 23.0642038	total: 376ms	remaining: 211ms
64:	learn: 22.9032045	total: 381ms	remaining: 205ms
65:	learn: 22.7736138	total: 386ms	remaining: 199ms
66:	learn: 22.6836443	total: 391ms	remaining: 193ms
67:	learn: 22.5983654	total: 396ms	remaining: 187ms
68:	learn: 22.4419813	total: 401ms	remaining: 180ms
69:	learn: 22.2863339	total: 406ms	remaining: 174ms
70:	learn: 22.1792943	total: 412ms	remaining: 168ms
71:	learn: 22.1130574	total: 418ms	remaining: 163ms
72:	learn: 21.9858161	total: 423ms	remaining: 156ms
73:	learn: 21.8577784	total: 427ms	remaining: 150ms
74:	learn: 21.7845222	total: 432ms	remaining: 144ms
75:	learn: 21.6831390	total: 436ms	remaining: 138ms
76:	learn: 21.6292521	total: 442ms	remaining: 132ms
77:	learn: 21.5789330	total: 448ms	remaining: 126ms
78:	learn: 21.5420942	total: 454ms	remaining: 121ms
79:	learn: 21.4280939	total: 460ms	remaining: 115ms
80:	learn: 21.3641165	total: 465ms	remaining: 109ms
81:	learn: 21.2734814	total: 470ms	remaining: 103ms
82:	learn: 21.2220323	total: 475ms	remaining: 97.2ms
83:	learn: 21.0625792	total: 480ms	remaining: 91.4ms
84:	learn: 20.9488320	total: 485ms	remaining: 85.6ms
85:	learn: 20.8504255	total: 490ms	remaining: 79.7ms
86:	learn: 20.7848510	total: 494ms	remaining: 73.9ms
87:	learn: 20.7247442	total: 499ms	remaining: 68.1ms
88:	learn: 20.5698590	total: 504ms	remaining: 62.3ms
89:	learn: 20.4067620	total: 509ms	remaining: 56.6ms
90:	learn: 20.3062482	total: 518ms	remaining: 51.3ms
91:	learn: 20.2029696	total: 527ms	remaining: 45.9ms
92:	learn: 20.1384849	total: 539ms	remaining: 40.5ms
93:	learn: 20.0260709	total: 548ms	remaining: 35ms
94:	learn: 19.9122100	total: 554ms	remaining: 29.1ms
95:	learn: 19.8648487	total: 560ms	remaining: 23.3ms
96:	learn: 19.8207072	total: 566ms	remaining: 17.5ms
97:	learn: 19.7261189	total: 573ms	remaining: 11.7ms
98:	learn: 19.7042438	total: 579ms	remaining: 5.85ms
99:	learn: 19.6546645	total: 585ms	remaining: 0us
0:	learn: 47.0239288	total: 5.47ms	remaining: 541ms
1:	learn: 46.2253829	total: 10.5ms	remaining: 514ms
2:	learn: 45.5580301	total: 15.3ms	remaining: 496ms
3:	learn: 44.7273237	total: 20.5ms	remaining: 491ms
4:	learn: 43.8867421	total: 25.6ms	remaining: 486ms
5:	learn: 43.3615911	total: 30.4ms	remaining: 477ms
6:	learn: 42.8548390	total: 35.3ms	remaining: 468ms
7:	learn: 42.1606758	total: 41ms	remaining: 472ms
8:	learn: 41.6625870	total: 46.1ms	remaining: 467ms
9:	learn: 40.9497092	total: 51.6ms	remaining: 464ms
10:	learn: 40.1886318	total: 57.1ms	remaining: 462ms
11:	learn: 39.7456423	total: 62.6ms	remaining: 459ms
12:	learn: 39.1171373	total: 67.8ms	remaining: 454ms
13:	learn: 38.5451069	total: 73.4ms	remaining: 451ms
14:	learn: 38.0155834	total: 78.8ms	remaining: 446ms
15:	learn: 37.5631354	total: 84.2ms	remaining: 442ms
16:	learn: 37.1030023	total: 95.8ms	remaining: 468ms
17:	learn: 36.4563029	total: 110ms	remaining: 503ms
18:	learn: 36.0160976	total: 132ms	remaining: 563ms
19:	learn: 35.5079827	total: 138ms	remaining: 552ms
20:	learn: 35.2111885	total: 144ms	remaining: 543ms
21:	learn: 34.9397465	total: 150ms	remaining: 533ms
22:	learn: 34.5270048	total: 163ms	remaining: 546ms
23:	learn: 34.0169260	total: 170ms	remaining: 538ms
24:	learn: 33.7454892	total: 175ms	remaining: 526ms
25:	learn: 33.2648157	total: 181ms	remaining: 514ms
26:	learn: 32.8899427	total: 186ms	remaining: 503ms
27:	learn: 32.6185050	total: 191ms	remaining: 491ms
28:	learn: 32.3528531	total: 196ms	remaining: 481ms
29:	learn: 32.0859923	total: 202ms	remaining: 472ms
30:	learn: 31.6511144	total: 207ms	remaining: 462ms
31:	learn: 31.2571765	total: 212ms	remaining: 450ms
32:	learn: 30.9770049	total: 216ms	remaining: 439ms
33:	learn: 30.6084872	total: 221ms	remaining: 428ms
34:	learn: 30.3448632	total: 225ms	remaining: 417ms
35:	learn: 30.0360942	total: 229ms	remaining: 407ms
36:	learn: 29.6648968	total: 234ms	remaining: 398ms
37:	learn: 29.3165114	total: 238ms	remaining: 388ms
38:	learn: 29.0829198	total: 242ms	remaining: 379ms
39:	learn: 28.7752064	total: 247ms	remaining: 371ms
40:	learn: 28.3622191	total: 251ms	remaining: 362ms
41:	learn: 28.1346631	total: 256ms	remaining: 354ms
42:	learn: 27.9585719	total: 260ms	remaining: 345ms
43:	learn: 27.6565566	total: 264ms	remaining: 336ms
44:	learn: 27.3616172	total: 269ms	remaining: 329ms
45:	learn: 27.0658637	total: 273ms	remaining: 321ms
46:	learn: 26.8660382	total: 278ms	remaining: 313ms
47:	learn: 26.6536078	total: 283ms	remaining: 306ms
48:	learn: 26.3524440	total: 288ms	remaining: 299ms
49:	learn: 26.1595277	total: 293ms	remaining: 293ms
50:	learn: 25.9273523	total: 298ms	remaining: 286ms
51:	learn: 25.7195580	total: 307ms	remaining: 284ms
52:	learn: 25.5730225	total: 314ms	remaining: 279ms
53:	learn: 25.3455276	total: 323ms	remaining: 275ms
54:	learn: 25.2289675	total: 329ms	remaining: 269ms
55:	learn: 25.0133024	total: 336ms	remaining: 264ms
56:	learn: 24.8406714	total: 340ms	remaining: 257ms
57:	learn: 24.6367857	total: 345ms	remaining: 250ms
58:	learn: 24.5338177	total: 351ms	remaining: 244ms
59:	learn: 24.3799964	total: 356ms	remaining: 237ms
60:	learn: 24.1447492	total: 361ms	remaining: 231ms
61:	learn: 23.9880495	total: 367ms	remaining: 225ms
62:	learn: 23.7140630	total: 372ms	remaining: 219ms
63:	learn: 23.5003791	total: 377ms	remaining: 212ms
64:	learn: 23.3207645	total: 383ms	remaining: 206ms
65:	learn: 23.1958356	total: 388ms	remaining: 200ms
66:	learn: 23.0471302	total: 393ms	remaining: 193ms
67:	learn: 22.8977183	total: 398ms	remaining: 187ms
68:	learn: 22.7187400	total: 403ms	remaining: 181ms
69:	learn: 22.6523405	total: 409ms	remaining: 175ms
70:	learn: 22.4767453	total: 413ms	remaining: 169ms
71:	learn: 22.3243677	total: 417ms	remaining: 162ms
72:	learn: 22.2133096	total: 422ms	remaining: 156ms
73:	learn: 22.1151713	total: 426ms	remaining: 150ms
74:	learn: 22.0296666	total: 430ms	remaining: 143ms
75:	learn: 21.9195980	total: 434ms	remaining: 137ms
76:	learn: 21.8401730	total: 439ms	remaining: 131ms
77:	learn: 21.8079797	total: 443ms	remaining: 125ms
78:	learn: 21.7274109	total: 447ms	remaining: 119ms
79:	learn: 21.6663032	total: 452ms	remaining: 113ms
80:	learn: 21.5633117	total: 456ms	remaining: 107ms
81:	learn: 21.4542467	total: 460ms	remaining: 101ms
82:	learn: 21.3177957	total: 465ms	remaining: 95.3ms
83:	learn: 21.1289167	total: 470ms	remaining: 89.6ms
84:	learn: 21.0297368	total: 475ms	remaining: 83.9ms
85:	learn: 20.9089564	total: 480ms	remaining: 78.1ms
86:	learn: 20.7653988	total: 485ms	remaining: 72.5ms
87:	learn: 20.6521894	total: 490ms	remaining: 66.8ms
88:	learn: 20.5193021	total: 494ms	remaining: 61.1ms
89:	learn: 20.4361620	total: 501ms	remaining: 55.7ms
90:	learn: 20.3546710	total: 509ms	remaining: 50.3ms
91:	learn: 20.2513296	total: 518ms	remaining: 45ms
92:	learn: 20.1605550	total: 524ms	remaining: 39.4ms
93:	learn: 20.0515942	total: 531ms	remaining: 33.9ms
94:	learn: 19.9800764	total: 537ms	remaining: 28.2ms
95:	learn: 19.8996532	total: 542ms	remaining: 22.6ms
96:	learn: 19.8450910	total: 547ms	remaining: 16.9ms
97:	learn: 19.7887346	total: 553ms	remaining: 11.3ms
98:	learn: 19.7230872	total: 558ms	remaining: 5.63ms
99:	learn: 19.6328825	total: 562ms	remaining: 0us
0:	learn: 27.8909741	total: 21.7ms	remaining: 6.48s
1:	learn: 27.7454242	total: 43.3ms	remaining: 6.45s
2:	learn: 27.6111999	total: 65.9ms	remaining: 6.52s
3:	learn: 27.4600863	total: 93.9ms	remaining: 6.95s
4:	learn: 27.3260335	total: 121ms	remaining: 7.15s
5:	learn: 27.1985740	total: 145ms	remaining: 7.08s
6:	learn: 27.0660624	total: 167ms	remaining: 7.01s
7:	learn: 26.9502628	total: 189ms	remaining: 6.91s
8:	learn: 26.8402973	total: 212ms	remaining: 6.85s
9:	learn: 26.7116533	total: 234ms	remaining: 6.78s
10:	learn: 26.5912304	total: 256ms	remaining: 6.72s
11:	learn: 26.4818560	total: 277ms	remaining: 6.64s
12:	learn: 26.3630522	total: 298ms	remaining: 6.58s
13:	learn: 26.2428640	total: 323ms	remaining: 6.6s
14:	learn: 26.1282325	total: 349ms	remaining: 6.63s
15:	learn: 26.0091410	total: 372ms	remaining: 6.6s
16:	learn: 25.8970089	total: 394ms	remaining: 6.56s
17:	learn: 25.7757055	total: 418ms	remaining: 6.54s
18:	learn: 25.6496251	total: 441ms	remaining: 6.52s
19:	learn: 25.5484901	total: 462ms	remaining: 6.46s
20:	learn: 25.4310248	total: 482ms	remaining: 6.41s
21:	learn: 25.3060633	total: 503ms	remaining: 6.36s
22:	learn: 25.1911135	total: 531ms	remaining: 6.39s
23:	learn: 25.0751115	total: 557ms	remaining: 6.4s
24:	learn: 24.9785444	total: 580ms	remaining: 6.38s
25:	learn: 24.8595879	total: 603ms	remaining: 6.35s
26:	learn: 24.7426277	total: 625ms	remaining: 6.32s
27:	learn: 24.6393116	total: 628ms	remaining: 6.1s
28:	learn: 24.5376847	total: 649ms	remaining: 6.06s
29:	learn: 24.4319233	total: 670ms	remaining: 6.03s
30:	learn: 24.3179642	total: 692ms	remaining: 6.01s
31:	learn: 24.2277640	total: 713ms	remaining: 5.97s
32:	learn: 24.1175303	total: 745ms	remaining: 6.02s
33:	learn: 24.0025830	total: 768ms	remaining: 6.01s
34:	learn: 23.8933138	total: 792ms	remaining: 5.99s
35:	learn: 23.7978848	total: 815ms	remaining: 5.98s
36:	learn: 23.6976272	total: 839ms	remaining: 5.97s
37:	learn: 23.5812052	total: 861ms	remaining: 5.93s
38:	learn: 23.4803621	total: 883ms	remaining: 5.91s
39:	learn: 23.3838152	total: 905ms	remaining: 5.88s
40:	learn: 23.2868223	total: 928ms	remaining: 5.86s
41:	learn: 23.1851207	total: 957ms	remaining: 5.88s
42:	learn: 23.0850575	total: 984ms	remaining: 5.88s
43:	learn: 22.9941965	total: 1.01s	remaining: 5.87s
44:	learn: 22.8932530	total: 1.03s	remaining: 5.85s
45:	learn: 22.8049000	total: 1.06s	remaining: 5.83s
46:	learn: 22.7182127	total: 1.08s	remaining: 5.82s
47:	learn: 22.6270080	total: 1.1s	remaining: 5.78s
48:	learn: 22.5359862	total: 1.12s	remaining: 5.76s
49:	learn: 22.4435640	total: 1.15s	remaining: 5.75s
50:	learn: 22.3511768	total: 1.18s	remaining: 5.78s
51:	learn: 22.2533392	total: 1.21s	remaining: 5.75s
52:	learn: 22.1598144	total: 1.23s	remaining: 5.73s
53:	learn: 22.0687311	total: 1.25s	remaining: 5.71s
54:	learn: 21.9783996	total: 1.28s	remaining: 5.69s
55:	learn: 21.8874106	total: 1.3s	remaining: 5.66s
56:	learn: 21.8003765	total: 1.32s	remaining: 5.63s
57:	learn: 21.6994378	total: 1.35s	remaining: 5.62s
58:	learn: 21.6017747	total: 1.37s	remaining: 5.62s
59:	learn: 21.5010446	total: 1.4s	remaining: 5.61s
60:	learn: 21.3964987	total: 1.43s	remaining: 5.58s
61:	learn: 21.2914416	total: 1.45s	remaining: 5.57s
62:	learn: 21.1944430	total: 1.47s	remaining: 5.54s
63:	learn: 21.0964015	total: 1.5s	remaining: 5.51s
64:	learn: 21.0103359	total: 1.52s	remaining: 5.48s
65:	learn: 20.9282967	total: 1.54s	remaining: 5.45s
66:	learn: 20.8538000	total: 1.56s	remaining: 5.43s
67:	learn: 20.7728703	total: 1.59s	remaining: 5.42s
68:	learn: 20.6867426	total: 1.62s	remaining: 5.42s
69:	learn: 20.5945815	total: 1.64s	remaining: 5.39s
70:	learn: 20.5135483	total: 1.66s	remaining: 5.37s
71:	learn: 20.4247509	total: 1.69s	remaining: 5.34s
72:	learn: 20.3179450	total: 1.71s	remaining: 5.32s
73:	learn: 20.2381739	total: 1.73s	remaining: 5.29s
74:	learn: 20.1427785	total: 1.75s	remaining: 5.26s
75:	learn: 20.0577678	total: 1.77s	remaining: 5.23s
76:	learn: 19.9895777	total: 1.8s	remaining: 5.21s
77:	learn: 19.9049210	total: 1.83s	remaining: 5.21s
78:	learn: 19.8195140	total: 1.85s	remaining: 5.19s
79:	learn: 19.7332657	total: 1.88s	remaining: 5.17s
80:	learn: 19.6510418	total: 1.9s	remaining: 5.15s
81:	learn: 19.5727878	total: 1.93s	remaining: 5.12s
82:	learn: 19.5171316	total: 1.95s	remaining: 5.09s
83:	learn: 19.4470417	total: 1.97s	remaining: 5.06s
84:	learn: 19.3651617	total: 1.99s	remaining: 5.03s
85:	learn: 19.2864544	total: 2.01s	remaining: 5s
86:	learn: 19.2079143	total: 2.04s	remaining: 5s
87:	learn: 19.1337475	total: 2.07s	remaining: 4.99s
88:	learn: 19.0524248	total: 2.09s	remaining: 4.96s
89:	learn: 18.9875806	total: 2.12s	remaining: 4.94s
90:	learn: 18.9135796	total: 2.14s	remaining: 4.91s
91:	learn: 18.8435998	total: 2.16s	remaining: 4.88s
92:	learn: 18.7754418	total: 2.18s	remaining: 4.85s
93:	learn: 18.6989733	total: 2.2s	remaining: 4.83s
94:	learn: 18.6253442	total: 2.23s	remaining: 4.8s
95:	learn: 18.5546084	total: 2.26s	remaining: 4.8s
96:	learn: 18.4860831	total: 2.28s	remaining: 4.77s
97:	learn: 18.4048784	total: 2.3s	remaining: 4.75s
98:	learn: 18.3325619	total: 2.33s	remaining: 4.72s
99:	learn: 18.2708179	total: 2.35s	remaining: 4.7s
100:	learn: 18.1949234	total: 2.37s	remaining: 4.67s
101:	learn: 18.1209623	total: 2.39s	remaining: 4.64s
102:	learn: 18.0439521	total: 2.41s	remaining: 4.62s
103:	learn: 17.9793178	total: 2.43s	remaining: 4.59s
104:	learn: 17.9200271	total: 2.46s	remaining: 4.57s
105:	learn: 17.8685025	total: 2.49s	remaining: 4.56s
106:	learn: 17.8030415	total: 2.51s	remaining: 4.53s
107:	learn: 17.7368977	total: 2.53s	remaining: 4.5s
108:	learn: 17.6750310	total: 2.56s	remaining: 4.48s
109:	learn: 17.6085180	total: 2.58s	remaining: 4.45s
110:	learn: 17.5476542	total: 2.6s	remaining: 4.42s
111:	learn: 17.4809765	total: 2.62s	remaining: 4.4s
112:	learn: 17.4231096	total: 2.64s	remaining: 4.37s
113:	learn: 17.3581008	total: 2.67s	remaining: 4.36s
114:	learn: 17.2955719	total: 2.7s	remaining: 4.34s
115:	learn: 17.2257082	total: 2.72s	remaining: 4.32s
116:	learn: 17.1668254	total: 2.74s	remaining: 4.29s
117:	learn: 17.1122745	total: 2.77s	remaining: 4.27s
118:	learn: 17.0386468	total: 2.79s	remaining: 4.24s
119:	learn: 16.9863122	total: 2.81s	remaining: 4.21s
120:	learn: 16.9295516	total: 2.83s	remaining: 4.19s
121:	learn: 16.8683764	total: 2.85s	remaining: 4.16s
122:	learn: 16.8214061	total: 2.88s	remaining: 4.14s
123:	learn: 16.7643379	total: 2.91s	remaining: 4.13s
124:	learn: 16.7080302	total: 2.93s	remaining: 4.1s
125:	learn: 16.6507689	total: 2.95s	remaining: 4.08s
126:	learn: 16.5941589	total: 2.98s	remaining: 4.05s
127:	learn: 16.5399113	total: 3s	remaining: 4.03s
128:	learn: 16.4839662	total: 3.02s	remaining: 4s
129:	learn: 16.4314318	total: 3.04s	remaining: 3.97s
130:	learn: 16.3733374	total: 3.06s	remaining: 3.95s
131:	learn: 16.3224352	total: 3.08s	remaining: 3.93s
132:	learn: 16.2632236	total: 3.12s	remaining: 3.91s
133:	learn: 16.1988942	total: 3.14s	remaining: 3.89s
134:	learn: 16.1293176	total: 3.16s	remaining: 3.87s
135:	learn: 16.0733899	total: 3.19s	remaining: 3.84s
136:	learn: 16.0158498	total: 3.21s	remaining: 3.82s
137:	learn: 15.9591967	total: 3.23s	remaining: 3.79s
138:	learn: 15.9052493	total: 3.25s	remaining: 3.77s
139:	learn: 15.8564159	total: 3.27s	remaining: 3.74s
140:	learn: 15.7936916	total: 3.29s	remaining: 3.72s
141:	learn: 15.7367541	total: 3.32s	remaining: 3.7s
142:	learn: 15.6804129	total: 3.35s	remaining: 3.68s
143:	learn: 15.6256309	total: 3.37s	remaining: 3.65s
144:	learn: 15.5736025	total: 3.39s	remaining: 3.63s
145:	learn: 15.5203399	total: 3.42s	remaining: 3.6s
146:	learn: 15.4718595	total: 3.44s	remaining: 3.58s
147:	learn: 15.4311226	total: 3.46s	remaining: 3.55s
148:	learn: 15.3907562	total: 3.48s	remaining: 3.53s
149:	learn: 15.3310063	total: 3.5s	remaining: 3.5s
150:	learn: 15.2806596	total: 3.53s	remaining: 3.49s
151:	learn: 15.2374668	total: 3.56s	remaining: 3.46s
152:	learn: 15.2101464	total: 3.56s	remaining: 3.42s
153:	learn: 15.1607573	total: 3.58s	remaining: 3.4s
154:	learn: 15.1134025	total: 3.61s	remaining: 3.38s
155:	learn: 15.0676613	total: 3.63s	remaining: 3.35s
156:	learn: 15.0264233	total: 3.66s	remaining: 3.33s
157:	learn: 14.9765283	total: 3.68s	remaining: 3.31s
158:	learn: 14.9267361	total: 3.71s	remaining: 3.29s
159:	learn: 14.8792787	total: 3.74s	remaining: 3.27s
160:	learn: 14.8339292	total: 3.76s	remaining: 3.25s
161:	learn: 14.7850928	total: 3.79s	remaining: 3.23s
162:	learn: 14.7346218	total: 3.81s	remaining: 3.2s
163:	learn: 14.6875906	total: 3.83s	remaining: 3.18s
164:	learn: 14.6412434	total: 3.86s	remaining: 3.16s
165:	learn: 14.5988877	total: 3.88s	remaining: 3.13s
166:	learn: 14.5478790	total: 3.9s	remaining: 3.11s
167:	learn: 14.4967177	total: 3.93s	remaining: 3.09s
168:	learn: 14.4421400	total: 3.96s	remaining: 3.07s
169:	learn: 14.3987778	total: 3.98s	remaining: 3.05s
170:	learn: 14.3531038	total: 4.01s	remaining: 3.02s
171:	learn: 14.3106522	total: 4.03s	remaining: 3s
172:	learn: 14.2686857	total: 4.05s	remaining: 2.98s
173:	learn: 14.2235837	total: 4.08s	remaining: 2.95s
174:	learn: 14.1805323	total: 4.1s	remaining: 2.93s
175:	learn: 14.1332040	total: 4.12s	remaining: 2.9s
176:	learn: 14.0968880	total: 4.15s	remaining: 2.88s
177:	learn: 14.0622759	total: 4.18s	remaining: 2.87s
178:	learn: 14.0319541	total: 4.2s	remaining: 2.84s
179:	learn: 13.9882771	total: 4.23s	remaining: 2.82s
180:	learn: 13.9496593	total: 4.25s	remaining: 2.79s
181:	learn: 13.9034141	total: 4.28s	remaining: 2.77s
182:	learn: 13.8597071	total: 4.3s	remaining: 2.75s
183:	learn: 13.8154296	total: 4.32s	remaining: 2.72s
184:	learn: 13.7751533	total: 4.34s	remaining: 2.7s
185:	learn: 13.7294220	total: 4.38s	remaining: 2.68s
186:	learn: 13.6908603	total: 4.4s	remaining: 2.66s
187:	learn: 13.6533068	total: 4.43s	remaining: 2.64s
188:	learn: 13.6186138	total: 4.45s	remaining: 2.61s
189:	learn: 13.5810553	total: 4.47s	remaining: 2.59s
190:	learn: 13.5378988	total: 4.5s	remaining: 2.57s
191:	learn: 13.4891599	total: 4.52s	remaining: 2.54s
192:	learn: 13.4482041	total: 4.54s	remaining: 2.52s
193:	learn: 13.4166054	total: 4.56s	remaining: 2.49s
194:	learn: 13.3823696	total: 4.58s	remaining: 2.47s
195:	learn: 13.3426564	total: 4.61s	remaining: 2.45s
196:	learn: 13.3012579	total: 4.64s	remaining: 2.43s
197:	learn: 13.2625524	total: 4.66s	remaining: 2.4s
198:	learn: 13.2251981	total: 4.69s	remaining: 2.38s
199:	learn: 13.1861520	total: 4.71s	remaining: 2.35s
200:	learn: 13.1502120	total: 4.73s	remaining: 2.33s
201:	learn: 13.1138371	total: 4.75s	remaining: 2.31s
202:	learn: 13.0770461	total: 4.78s	remaining: 2.28s
203:	learn: 13.0417879	total: 4.81s	remaining: 2.26s
204:	learn: 13.0006414	total: 4.83s	remaining: 2.24s
205:	learn: 12.9646369	total: 4.86s	remaining: 2.22s
206:	learn: 12.9276921	total: 4.88s	remaining: 2.19s
207:	learn: 12.8939897	total: 4.9s	remaining: 2.17s
208:	learn: 12.8655136	total: 4.93s	remaining: 2.15s
209:	learn: 12.8335451	total: 4.95s	remaining: 2.12s
210:	learn: 12.8006136	total: 4.97s	remaining: 2.1s
211:	learn: 12.7636296	total: 4.99s	remaining: 2.07s
212:	learn: 12.7280060	total: 5.02s	remaining: 2.05s
213:	learn: 12.6955534	total: 5.05s	remaining: 2.03s
214:	learn: 12.6515516	total: 5.08s	remaining: 2.01s
215:	learn: 12.6171156	total: 5.1s	remaining: 1.98s
216:	learn: 12.5794917	total: 5.12s	remaining: 1.96s
217:	learn: 12.5480598	total: 5.15s	remaining: 1.94s
218:	learn: 12.5146424	total: 5.17s	remaining: 1.91s
219:	learn: 12.4826603	total: 5.19s	remaining: 1.89s
220:	learn: 12.4551083	total: 5.21s	remaining: 1.86s
221:	learn: 12.4210815	total: 5.25s	remaining: 1.84s
222:	learn: 12.3944277	total: 5.28s	remaining: 1.82s
223:	learn: 12.3568814	total: 5.3s	remaining: 1.8s
224:	learn: 12.3274830	total: 5.32s	remaining: 1.77s
225:	learn: 12.2947157	total: 5.35s	remaining: 1.75s
226:	learn: 12.2549787	total: 5.37s	remaining: 1.73s
227:	learn: 12.2190737	total: 5.39s	remaining: 1.7s
228:	learn: 12.1830419	total: 5.42s	remaining: 1.68s
229:	learn: 12.1535286	total: 5.44s	remaining: 1.66s
230:	learn: 12.1209633	total: 5.47s	remaining: 1.64s
231:	learn: 12.1011719	total: 5.5s	remaining: 1.61s
232:	learn: 12.0655225	total: 5.52s	remaining: 1.59s
233:	learn: 12.0339911	total: 5.55s	remaining: 1.56s
234:	learn: 12.0009720	total: 5.57s	remaining: 1.54s
235:	learn: 11.9683468	total: 5.59s	remaining: 1.52s
236:	learn: 11.9414512	total: 5.62s	remaining: 1.49s
237:	learn: 11.9143496	total: 5.64s	remaining: 1.47s
238:	learn: 11.8813757	total: 5.67s	remaining: 1.45s
239:	learn: 11.8512196	total: 5.7s	remaining: 1.42s
240:	learn: 11.8188680	total: 5.72s	remaining: 1.4s
241:	learn: 11.7872942	total: 5.74s	remaining: 1.38s
242:	learn: 11.7584780	total: 5.77s	remaining: 1.35s
243:	learn: 11.7286464	total: 5.79s	remaining: 1.33s
244:	learn: 11.7065328	total: 5.81s	remaining: 1.3s
245:	learn: 11.6742266	total: 5.83s	remaining: 1.28s
246:	learn: 11.6358845	total: 5.86s	remaining: 1.26s
247:	learn: 11.6053686	total: 5.88s	remaining: 1.23s
248:	learn: 11.5799981	total: 5.91s	remaining: 1.21s
249:	learn: 11.5564368	total: 5.93s	remaining: 1.19s
250:	learn: 11.5420498	total: 5.96s	remaining: 1.16s
251:	learn: 11.5106262	total: 5.98s	remaining: 1.14s
252:	learn: 11.4806808	total: 6.01s	remaining: 1.12s
253:	learn: 11.4566114	total: 6.03s	remaining: 1.09s
254:	learn: 11.4254774	total: 6.05s	remaining: 1.07s
255:	learn: 11.3978729	total: 6.08s	remaining: 1.04s
256:	learn: 11.3657161	total: 6.1s	remaining: 1.02s
257:	learn: 11.3355668	total: 6.13s	remaining: 998ms
258:	learn: 11.3040620	total: 6.15s	remaining: 974ms
259:	learn: 11.2771416	total: 6.18s	remaining: 951ms
260:	learn: 11.2504011	total: 6.2s	remaining: 927ms
261:	learn: 11.2255899	total: 6.22s	remaining: 903ms
262:	learn: 11.1923276	total: 6.25s	remaining: 879ms
263:	learn: 11.1664304	total: 6.27s	remaining: 855ms
264:	learn: 11.1395918	total: 6.29s	remaining: 831ms
265:	learn: 11.1183251	total: 6.32s	remaining: 807ms
266:	learn: 11.0967429	total: 6.34s	remaining: 784ms
267:	learn: 11.0655190	total: 6.37s	remaining: 760ms
268:	learn: 11.0363278	total: 6.39s	remaining: 736ms
269:	learn: 11.0053978	total: 6.41s	remaining: 713ms
270:	learn: 10.9769137	total: 6.43s	remaining: 688ms
271:	learn: 10.9560195	total: 6.45s	remaining: 664ms
272:	learn: 10.9347914	total: 6.48s	remaining: 641ms
273:	learn: 10.9105501	total: 6.5s	remaining: 617ms
274:	learn: 10.8888259	total: 6.52s	remaining: 593ms
275:	learn: 10.8670844	total: 6.55s	remaining: 570ms
276:	learn: 10.8443821	total: 6.57s	remaining: 546ms
277:	learn: 10.8103858	total: 6.6s	remaining: 522ms
278:	learn: 10.7822665	total: 6.62s	remaining: 498ms
279:	learn: 10.7558379	total: 6.64s	remaining: 474ms
280:	learn: 10.7323901	total: 6.66s	remaining: 450ms
281:	learn: 10.7091335	total: 6.68s	remaining: 426ms
282:	learn: 10.6833968	total: 6.7s	remaining: 403ms
283:	learn: 10.6578926	total: 6.73s	remaining: 379ms
284:	learn: 10.6362577	total: 6.75s	remaining: 355ms
285:	learn: 10.6113525	total: 6.78s	remaining: 332ms
286:	learn: 10.5900301	total: 6.8s	remaining: 308ms
287:	learn: 10.5725049	total: 6.83s	remaining: 284ms
288:	learn: 10.5490299	total: 6.85s	remaining: 261ms
289:	learn: 10.5223988	total: 6.87s	remaining: 237ms
290:	learn: 10.4979486	total: 6.89s	remaining: 213ms
291:	learn: 10.4774612	total: 6.9s	remaining: 189ms
292:	learn: 10.4538360	total: 6.92s	remaining: 165ms
293:	learn: 10.4239842	total: 6.94s	remaining: 142ms
294:	learn: 10.4055855	total: 6.96s	remaining: 118ms
295:	learn: 10.3872750	total: 6.99s	remaining: 94.5ms
296:	learn: 10.3614579	total: 7.01s	remaining: 70.9ms
297:	learn: 10.3366670	total: 7.04s	remaining: 47.2ms
298:	learn: 10.3100256	total: 7.06s	remaining: 23.6ms
299:	learn: 10.2813491	total: 7.08s	remaining: 0us
0:	learn: 43.7152227	total: 22.2ms	remaining: 6.63s
1:	learn: 43.4541703	total: 51.3ms	remaining: 7.64s
2:	learn: 43.1578143	total: 75.5ms	remaining: 7.47s
3:	learn: 42.8783278	total: 96.9ms	remaining: 7.17s
4:	learn: 42.6072908	total: 119ms	remaining: 7.03s
5:	learn: 42.3444208	total: 142ms	remaining: 6.96s
6:	learn: 42.0672063	total: 164ms	remaining: 6.87s
7:	learn: 41.7932543	total: 187ms	remaining: 6.84s
8:	learn: 41.5306590	total: 208ms	remaining: 6.72s
9:	learn: 41.2812169	total: 230ms	remaining: 6.67s
10:	learn: 41.0331540	total: 251ms	remaining: 6.61s
11:	learn: 40.8231308	total: 273ms	remaining: 6.56s
12:	learn: 40.5899007	total: 300ms	remaining: 6.63s
13:	learn: 40.3346026	total: 327ms	remaining: 6.68s
14:	learn: 40.1139803	total: 349ms	remaining: 6.63s
15:	learn: 39.8388121	total: 372ms	remaining: 6.61s
16:	learn: 39.5736935	total: 394ms	remaining: 6.56s
17:	learn: 39.3283794	total: 417ms	remaining: 6.54s
18:	learn: 39.1203770	total: 438ms	remaining: 6.48s
19:	learn: 38.8686340	total: 460ms	remaining: 6.44s
20:	learn: 38.6284119	total: 481ms	remaining: 6.39s
21:	learn: 38.3922159	total: 504ms	remaining: 6.36s
22:	learn: 38.1843490	total: 534ms	remaining: 6.43s
23:	learn: 37.9201544	total: 557ms	remaining: 6.41s
24:	learn: 37.7010071	total: 578ms	remaining: 6.35s
25:	learn: 37.4916719	total: 601ms	remaining: 6.33s
26:	learn: 37.2493473	total: 623ms	remaining: 6.3s
27:	learn: 37.0272256	total: 626ms	remaining: 6.08s
28:	learn: 36.7936594	total: 648ms	remaining: 6.06s
29:	learn: 36.5622783	total: 668ms	remaining: 6.01s
30:	learn: 36.3206995	total: 690ms	remaining: 5.99s
31:	learn: 36.0921866	total: 712ms	remaining: 5.97s
32:	learn: 35.8568426	total: 737ms	remaining: 5.96s
33:	learn: 35.6642425	total: 766ms	remaining: 5.99s
34:	learn: 35.4602687	total: 789ms	remaining: 5.98s
35:	learn: 35.2260548	total: 812ms	remaining: 5.95s
36:	learn: 35.0250404	total: 844ms	remaining: 6s
37:	learn: 34.7954201	total: 869ms	remaining: 5.99s
38:	learn: 34.5616477	total: 893ms	remaining: 5.97s
39:	learn: 34.3769833	total: 917ms	remaining: 5.96s
40:	learn: 34.1782144	total: 942ms	remaining: 5.95s
41:	learn: 33.9982646	total: 981ms	remaining: 6.02s
42:	learn: 33.7930222	total: 1.01s	remaining: 6.02s
43:	learn: 33.6060625	total: 1.03s	remaining: 6.01s
44:	learn: 33.4242352	total: 1.06s	remaining: 6s
45:	learn: 33.2274741	total: 1.08s	remaining: 5.98s
46:	learn: 33.0522381	total: 1.1s	remaining: 5.95s
47:	learn: 32.8691924	total: 1.13s	remaining: 5.93s
48:	learn: 32.6903220	total: 1.15s	remaining: 5.91s
49:	learn: 32.5203590	total: 1.19s	remaining: 5.93s
50:	learn: 32.3218264	total: 1.21s	remaining: 5.92s
51:	learn: 32.1326864	total: 1.25s	remaining: 5.94s
52:	learn: 31.9431774	total: 1.27s	remaining: 5.92s
53:	learn: 31.7713238	total: 1.29s	remaining: 5.9s
54:	learn: 31.6084772	total: 1.32s	remaining: 5.87s
55:	learn: 31.4319830	total: 1.34s	remaining: 5.85s
56:	learn: 31.2348926	total: 1.37s	remaining: 5.83s
57:	learn: 31.0725808	total: 1.4s	remaining: 5.84s
58:	learn: 30.8961475	total: 1.43s	remaining: 5.83s
59:	learn: 30.7313327	total: 1.45s	remaining: 5.8s
60:	learn: 30.5547997	total: 1.48s	remaining: 5.82s
61:	learn: 30.3898331	total: 1.51s	remaining: 5.79s
62:	learn: 30.2020504	total: 1.53s	remaining: 5.76s
63:	learn: 30.0345876	total: 1.56s	remaining: 5.74s
64:	learn: 29.9019760	total: 1.58s	remaining: 5.73s
65:	learn: 29.7335152	total: 1.62s	remaining: 5.74s
66:	learn: 29.5869773	total: 1.64s	remaining: 5.71s
67:	learn: 29.4481027	total: 1.67s	remaining: 5.69s
68:	learn: 29.2982753	total: 1.69s	remaining: 5.67s
69:	learn: 29.1351630	total: 1.72s	remaining: 5.64s
70:	learn: 29.0085567	total: 1.75s	remaining: 5.64s
71:	learn: 28.8581541	total: 1.77s	remaining: 5.62s
72:	learn: 28.7113567	total: 1.8s	remaining: 5.59s
73:	learn: 28.5624552	total: 1.83s	remaining: 5.59s
74:	learn: 28.4154962	total: 1.85s	remaining: 5.57s
75:	learn: 28.2695903	total: 1.86s	remaining: 5.47s
76:	learn: 28.1120360	total: 1.88s	remaining: 5.45s
77:	learn: 27.9649546	total: 1.91s	remaining: 5.43s
78:	learn: 27.8247227	total: 1.93s	remaining: 5.41s
79:	learn: 27.6732443	total: 1.96s	remaining: 5.38s
80:	learn: 27.5207411	total: 1.98s	remaining: 5.35s
81:	learn: 27.3675493	total: 2.01s	remaining: 5.36s
82:	learn: 27.2235515	total: 2.05s	remaining: 5.35s
83:	learn: 27.1024501	total: 2.07s	remaining: 5.33s
84:	learn: 26.9517795	total: 2.1s	remaining: 5.3s
85:	learn: 26.8209326	total: 2.12s	remaining: 5.28s
86:	learn: 26.6741987	total: 2.15s	remaining: 5.25s
87:	learn: 26.5456609	total: 2.17s	remaining: 5.23s
88:	learn: 26.4057263	total: 2.2s	remaining: 5.21s
89:	learn: 26.2892156	total: 2.22s	remaining: 5.19s
90:	learn: 26.1798472	total: 2.26s	remaining: 5.19s
91:	learn: 26.0588644	total: 2.29s	remaining: 5.19s
92:	learn: 25.9471232	total: 2.32s	remaining: 5.17s
93:	learn: 25.8112758	total: 2.35s	remaining: 5.14s
94:	learn: 25.6767187	total: 2.37s	remaining: 5.11s
95:	learn: 25.5524711	total: 2.39s	remaining: 5.08s
96:	learn: 25.4312648	total: 2.42s	remaining: 5.06s
97:	learn: 25.3010368	total: 2.46s	remaining: 5.06s
98:	learn: 25.1828003	total: 2.48s	remaining: 5.04s
99:	learn: 25.0729136	total: 2.51s	remaining: 5.02s
100:	learn: 24.9491417	total: 2.54s	remaining: 5.01s
101:	learn: 24.8375479	total: 2.57s	remaining: 4.99s
102:	learn: 24.7258715	total: 2.59s	remaining: 4.96s
103:	learn: 24.6132311	total: 2.62s	remaining: 4.93s
104:	learn: 24.4911063	total: 2.64s	remaining: 4.9s
105:	learn: 24.3655873	total: 2.66s	remaining: 4.88s
106:	learn: 24.2576341	total: 2.69s	remaining: 4.86s
107:	learn: 24.1521045	total: 2.72s	remaining: 4.84s
108:	learn: 24.0283222	total: 2.75s	remaining: 4.81s
109:	learn: 23.9093633	total: 2.77s	remaining: 4.79s
110:	learn: 23.7875690	total: 2.8s	remaining: 4.77s
111:	learn: 23.6743709	total: 2.83s	remaining: 4.75s
112:	learn: 23.5794434	total: 2.85s	remaining: 4.72s
113:	learn: 23.4721902	total: 2.88s	remaining: 4.69s
114:	learn: 23.3737227	total: 2.91s	remaining: 4.68s
115:	learn: 23.2685547	total: 2.94s	remaining: 4.66s
116:	learn: 23.1632988	total: 2.96s	remaining: 4.63s
117:	learn: 23.0591176	total: 2.99s	remaining: 4.61s
118:	learn: 22.9710342	total: 3.01s	remaining: 4.58s
119:	learn: 22.8518610	total: 3.04s	remaining: 4.55s
120:	learn: 22.7571658	total: 3.07s	remaining: 4.54s
121:	learn: 22.6476333	total: 3.09s	remaining: 4.51s
122:	learn: 22.5406444	total: 3.12s	remaining: 4.49s
123:	learn: 22.4481789	total: 3.15s	remaining: 4.47s
124:	learn: 22.3371412	total: 3.17s	remaining: 4.44s
125:	learn: 22.2363838	total: 3.2s	remaining: 4.42s
126:	learn: 22.1424569	total: 3.23s	remaining: 4.39s
127:	learn: 22.0405435	total: 3.25s	remaining: 4.37s
128:	learn: 21.9560873	total: 3.27s	remaining: 4.34s
129:	learn: 21.8863114	total: 3.29s	remaining: 4.31s
130:	learn: 21.7920659	total: 3.33s	remaining: 4.29s
131:	learn: 21.6932516	total: 3.36s	remaining: 4.28s
132:	learn: 21.5922382	total: 3.39s	remaining: 4.25s
133:	learn: 21.5161138	total: 3.41s	remaining: 4.23s
134:	learn: 21.4223608	total: 3.44s	remaining: 4.2s
135:	learn: 21.3175823	total: 3.46s	remaining: 4.17s
136:	learn: 21.2307076	total: 3.48s	remaining: 4.15s
137:	learn: 21.1472687	total: 3.51s	remaining: 4.12s
138:	learn: 21.0453028	total: 3.53s	remaining: 4.09s
139:	learn: 20.9646544	total: 3.56s	remaining: 4.07s
140:	learn: 20.8732575	total: 3.6s	remaining: 4.05s
141:	learn: 20.7811458	total: 3.62s	remaining: 4.03s
142:	learn: 20.6980385	total: 3.65s	remaining: 4s
143:	learn: 20.6161666	total: 3.67s	remaining: 3.98s
144:	learn: 20.5217631	total: 3.7s	remaining: 3.95s
145:	learn: 20.4497223	total: 3.72s	remaining: 3.92s
146:	learn: 20.3642928	total: 3.75s	remaining: 3.9s
147:	learn: 20.2886195	total: 3.77s	remaining: 3.87s
148:	learn: 20.2031657	total: 3.8s	remaining: 3.85s
149:	learn: 20.1263557	total: 3.84s	remaining: 3.84s
150:	learn: 20.0547427	total: 3.86s	remaining: 3.81s
151:	learn: 19.9773344	total: 3.89s	remaining: 3.79s
152:	learn: 19.9028201	total: 3.91s	remaining: 3.76s
153:	learn: 19.8160522	total: 3.94s	remaining: 3.73s
154:	learn: 19.7345351	total: 3.96s	remaining: 3.7s
155:	learn: 19.6586410	total: 3.98s	remaining: 3.68s
156:	learn: 19.5844066	total: 4.02s	remaining: 3.66s
157:	learn: 19.5059690	total: 4.04s	remaining: 3.63s
158:	learn: 19.4345665	total: 4.07s	remaining: 3.61s
159:	learn: 19.3729247	total: 4.1s	remaining: 3.59s
160:	learn: 19.2940290	total: 4.13s	remaining: 3.56s
161:	learn: 19.2361152	total: 4.15s	remaining: 3.54s
162:	learn: 19.1564311	total: 4.17s	remaining: 3.51s
163:	learn: 19.0868280	total: 4.2s	remaining: 3.48s
164:	learn: 19.0102994	total: 4.23s	remaining: 3.46s
165:	learn: 18.9245210	total: 4.26s	remaining: 3.44s
166:	learn: 18.8498288	total: 4.29s	remaining: 3.41s
167:	learn: 18.7766690	total: 4.31s	remaining: 3.39s
168:	learn: 18.7082496	total: 4.34s	remaining: 3.36s
169:	learn: 18.6351920	total: 4.37s	remaining: 3.34s
170:	learn: 18.5623213	total: 4.39s	remaining: 3.31s
171:	learn: 18.4784598	total: 4.42s	remaining: 3.29s
172:	learn: 18.4047687	total: 4.45s	remaining: 3.27s
173:	learn: 18.3356706	total: 4.48s	remaining: 3.24s
174:	learn: 18.2673167	total: 4.5s	remaining: 3.22s
175:	learn: 18.1928824	total: 4.53s	remaining: 3.19s
176:	learn: 18.1268178	total: 4.55s	remaining: 3.16s
177:	learn: 18.0544238	total: 4.58s	remaining: 3.14s
178:	learn: 17.9860979	total: 4.6s	remaining: 3.11s
179:	learn: 17.9244440	total: 4.63s	remaining: 3.09s
180:	learn: 17.8535620	total: 4.66s	remaining: 3.07s
181:	learn: 17.7958165	total: 4.69s	remaining: 3.04s
182:	learn: 17.7402911	total: 4.71s	remaining: 3.01s
183:	learn: 17.6851908	total: 4.74s	remaining: 2.99s
184:	learn: 17.6130229	total: 4.76s	remaining: 2.96s
185:	learn: 17.5412491	total: 4.79s	remaining: 2.93s
186:	learn: 17.4843388	total: 4.81s	remaining: 2.91s
187:	learn: 17.4232451	total: 4.84s	remaining: 2.88s
188:	learn: 17.3547499	total: 4.88s	remaining: 2.87s
189:	learn: 17.3014574	total: 4.91s	remaining: 2.84s
190:	learn: 17.2424485	total: 4.93s	remaining: 2.81s
191:	learn: 17.1878263	total: 4.95s	remaining: 2.79s
192:	learn: 17.1228765	total: 4.98s	remaining: 2.76s
193:	learn: 17.0601899	total: 5s	remaining: 2.73s
194:	learn: 17.0056282	total: 5.03s	remaining: 2.71s
195:	learn: 16.9309201	total: 5.05s	remaining: 2.68s
196:	learn: 16.8679658	total: 5.08s	remaining: 2.66s
197:	learn: 16.8079830	total: 5.12s	remaining: 2.64s
198:	learn: 16.7623162	total: 5.14s	remaining: 2.61s
199:	learn: 16.7202834	total: 5.17s	remaining: 2.58s
200:	learn: 16.6719839	total: 5.2s	remaining: 2.56s
201:	learn: 16.6236626	total: 5.22s	remaining: 2.53s
202:	learn: 16.5619633	total: 5.24s	remaining: 2.5s
203:	learn: 16.5033532	total: 5.27s	remaining: 2.48s
204:	learn: 16.4507719	total: 5.3s	remaining: 2.46s
205:	learn: 16.4012674	total: 5.33s	remaining: 2.43s
206:	learn: 16.3533118	total: 5.35s	remaining: 2.4s
207:	learn: 16.2986397	total: 5.38s	remaining: 2.38s
208:	learn: 16.2420216	total: 5.41s	remaining: 2.35s
209:	learn: 16.1856617	total: 5.43s	remaining: 2.33s
210:	learn: 16.1342718	total: 5.46s	remaining: 2.3s
211:	learn: 16.0772431	total: 5.48s	remaining: 2.27s
212:	learn: 16.0318038	total: 5.51s	remaining: 2.25s
213:	learn: 15.9660557	total: 5.54s	remaining: 2.23s
214:	learn: 15.9154358	total: 5.57s	remaining: 2.2s
215:	learn: 15.8630892	total: 5.59s	remaining: 2.17s
216:	learn: 15.8050319	total: 5.62s	remaining: 2.15s
217:	learn: 15.7563904	total: 5.64s	remaining: 2.12s
218:	learn: 15.7074042	total: 5.67s	remaining: 2.1s
219:	learn: 15.6515231	total: 5.7s	remaining: 2.07s
220:	learn: 15.6030650	total: 5.72s	remaining: 2.04s
221:	learn: 15.5500827	total: 5.75s	remaining: 2.02s
222:	learn: 15.4972332	total: 5.78s	remaining: 2s
223:	learn: 15.4506449	total: 5.81s	remaining: 1.97s
224:	learn: 15.3972559	total: 5.83s	remaining: 1.94s
225:	learn: 15.3430402	total: 5.86s	remaining: 1.92s
226:	learn: 15.2962005	total: 5.89s	remaining: 1.89s
227:	learn: 15.2487710	total: 5.91s	remaining: 1.87s
228:	learn: 15.2053893	total: 5.94s	remaining: 1.84s
229:	learn: 15.1633951	total: 5.97s	remaining: 1.82s
230:	learn: 15.1202978	total: 6s	remaining: 1.79s
231:	learn: 15.0691662	total: 6.02s	remaining: 1.76s
232:	learn: 15.0158780	total: 6.05s	remaining: 1.74s
233:	learn: 14.9632329	total: 6.07s	remaining: 1.71s
234:	learn: 14.9179389	total: 6.1s	remaining: 1.69s
235:	learn: 14.8724464	total: 6.12s	remaining: 1.66s
236:	learn: 14.8205302	total: 6.14s	remaining: 1.63s
237:	learn: 14.7791401	total: 6.18s	remaining: 1.61s
238:	learn: 14.7253916	total: 6.21s	remaining: 1.58s
239:	learn: 14.6836545	total: 6.23s	remaining: 1.56s
240:	learn: 14.6415382	total: 6.26s	remaining: 1.53s
241:	learn: 14.5908296	total: 6.28s	remaining: 1.51s
242:	learn: 14.5476260	total: 6.31s	remaining: 1.48s
243:	learn: 14.5057459	total: 6.33s	remaining: 1.45s
244:	learn: 14.4612880	total: 6.36s	remaining: 1.43s
245:	learn: 14.4279319	total: 6.39s	remaining: 1.4s
246:	learn: 14.3795141	total: 6.42s	remaining: 1.38s
247:	learn: 14.3346521	total: 6.45s	remaining: 1.35s
248:	learn: 14.2915193	total: 6.48s	remaining: 1.33s
249:	learn: 14.2492833	total: 6.5s	remaining: 1.3s
250:	learn: 14.2124298	total: 6.53s	remaining: 1.27s
251:	learn: 14.1691629	total: 6.55s	remaining: 1.25s
252:	learn: 14.1238622	total: 6.58s	remaining: 1.22s
253:	learn: 14.0788315	total: 6.61s	remaining: 1.2s
254:	learn: 14.0341070	total: 6.64s	remaining: 1.17s
255:	learn: 13.9982762	total: 6.66s	remaining: 1.14s
256:	learn: 13.9618516	total: 6.69s	remaining: 1.12s
257:	learn: 13.9317416	total: 6.72s	remaining: 1.09s
258:	learn: 13.8904672	total: 6.74s	remaining: 1.07s
259:	learn: 13.8515162	total: 6.77s	remaining: 1.04s
260:	learn: 13.8084853	total: 6.79s	remaining: 1.01s
261:	learn: 13.7626436	total: 6.82s	remaining: 990ms
262:	learn: 13.7219194	total: 6.85s	remaining: 964ms
263:	learn: 13.6813564	total: 6.88s	remaining: 938ms
264:	learn: 13.6476847	total: 6.9s	remaining: 912ms
265:	learn: 13.6026451	total: 6.93s	remaining: 886ms
266:	learn: 13.5628070	total: 6.95s	remaining: 860ms
267:	learn: 13.5267139	total: 6.99s	remaining: 834ms
268:	learn: 13.4901774	total: 7.01s	remaining: 808ms
269:	learn: 13.4509942	total: 7.04s	remaining: 783ms
270:	learn: 13.4052181	total: 7.07s	remaining: 757ms
271:	learn: 13.3725535	total: 7.09s	remaining: 730ms
272:	learn: 13.3414763	total: 7.12s	remaining: 704ms
273:	learn: 13.3030862	total: 7.14s	remaining: 678ms
274:	learn: 13.2668157	total: 7.17s	remaining: 652ms
275:	learn: 13.2223450	total: 7.19s	remaining: 625ms
276:	learn: 13.1804358	total: 7.21s	remaining: 599ms
277:	learn: 13.1399325	total: 7.25s	remaining: 574ms
278:	learn: 13.1033304	total: 7.28s	remaining: 548ms
279:	learn: 13.0669058	total: 7.3s	remaining: 522ms
280:	learn: 13.0384671	total: 7.33s	remaining: 496ms
281:	learn: 13.0037789	total: 7.35s	remaining: 469ms
282:	learn: 12.9645250	total: 7.38s	remaining: 443ms
283:	learn: 12.9241108	total: 7.41s	remaining: 417ms
284:	learn: 12.8975080	total: 7.43s	remaining: 391ms
285:	learn: 12.8572669	total: 7.47s	remaining: 366ms
286:	learn: 12.8247786	total: 7.5s	remaining: 340ms
287:	learn: 12.7991121	total: 7.52s	remaining: 314ms
288:	learn: 12.7592983	total: 7.55s	remaining: 287ms
289:	learn: 12.7299599	total: 7.57s	remaining: 261ms
290:	learn: 12.6996664	total: 7.59s	remaining: 235ms
291:	learn: 12.6676675	total: 7.62s	remaining: 209ms
292:	learn: 12.6304459	total: 7.65s	remaining: 183ms
293:	learn: 12.6000320	total: 7.68s	remaining: 157ms
294:	learn: 12.5671112	total: 7.7s	remaining: 131ms
295:	learn: 12.5371864	total: 7.73s	remaining: 104ms
296:	learn: 12.5078024	total: 7.76s	remaining: 78.4ms
297:	learn: 12.4765847	total: 7.79s	remaining: 52.3ms
298:	learn: 12.4387052	total: 7.81s	remaining: 26.1ms
299:	learn: 12.4034594	total: 7.84s	remaining: 0us
0:	learn: 47.2066051	total: 2.98ms	remaining: 891ms
1:	learn: 46.9322506	total: 29ms	remaining: 4.32s
2:	learn: 46.6606656	total: 56ms	remaining: 5.54s
3:	learn: 46.3774499	total: 79.5ms	remaining: 5.88s
4:	learn: 46.1018596	total: 103ms	remaining: 6.06s
5:	learn: 45.8731555	total: 128ms	remaining: 6.25s
6:	learn: 45.6007817	total: 152ms	remaining: 6.36s
7:	learn: 45.3453141	total: 191ms	remaining: 6.98s
8:	learn: 45.0827993	total: 217ms	remaining: 7s
9:	learn: 44.8482508	total: 241ms	remaining: 7s
10:	learn: 44.5829021	total: 266ms	remaining: 6.99s
11:	learn: 44.3343788	total: 290ms	remaining: 6.97s
12:	learn: 44.1081283	total: 314ms	remaining: 6.94s
13:	learn: 43.8942877	total: 338ms	remaining: 6.91s
14:	learn: 43.6535050	total: 364ms	remaining: 6.91s
15:	learn: 43.3693245	total: 399ms	remaining: 7.09s
16:	learn: 43.0936657	total: 434ms	remaining: 7.22s
17:	learn: 42.8660960	total: 459ms	remaining: 7.18s
18:	learn: 42.6627313	total: 483ms	remaining: 7.14s
19:	learn: 42.4070768	total: 507ms	remaining: 7.1s
20:	learn: 42.1987495	total: 530ms	remaining: 7.04s
21:	learn: 41.9619243	total: 554ms	remaining: 7s
22:	learn: 41.6939241	total: 580ms	remaining: 6.98s
23:	learn: 41.4865537	total: 616ms	remaining: 7.08s
24:	learn: 41.2577043	total: 642ms	remaining: 7.06s
25:	learn: 41.0242935	total: 668ms	remaining: 7.04s
26:	learn: 40.8070747	total: 701ms	remaining: 7.08s
27:	learn: 40.5633167	total: 725ms	remaining: 7.04s
28:	learn: 40.3605859	total: 747ms	remaining: 6.98s
29:	learn: 40.1289330	total: 771ms	remaining: 6.94s
30:	learn: 39.9162572	total: 797ms	remaining: 6.92s
31:	learn: 39.7112366	total: 828ms	remaining: 6.93s
32:	learn: 39.5150807	total: 854ms	remaining: 6.91s
33:	learn: 39.3167500	total: 879ms	remaining: 6.87s
34:	learn: 39.0982445	total: 904ms	remaining: 6.85s
35:	learn: 38.9300488	total: 930ms	remaining: 6.82s
36:	learn: 38.7137713	total: 962ms	remaining: 6.84s
37:	learn: 38.5619202	total: 986ms	remaining: 6.8s
38:	learn: 38.3469017	total: 1.01s	remaining: 6.77s
39:	learn: 38.1799409	total: 1.04s	remaining: 6.79s
40:	learn: 38.0267019	total: 1.07s	remaining: 6.77s
41:	learn: 37.8292308	total: 1.1s	remaining: 6.73s
42:	learn: 37.6390603	total: 1.12s	remaining: 6.7s
43:	learn: 37.4462287	total: 1.15s	remaining: 6.67s
44:	learn: 37.2593518	total: 1.17s	remaining: 6.63s
45:	learn: 37.0460433	total: 1.19s	remaining: 6.59s
46:	learn: 36.9067561	total: 1.22s	remaining: 6.59s
47:	learn: 36.7368293	total: 1.26s	remaining: 6.6s
48:	learn: 36.5208932	total: 1.28s	remaining: 6.58s
49:	learn: 36.3434910	total: 1.31s	remaining: 6.54s
50:	learn: 36.1664717	total: 1.33s	remaining: 6.52s
51:	learn: 35.9767045	total: 1.36s	remaining: 6.49s
52:	learn: 35.8291871	total: 1.38s	remaining: 6.45s
53:	learn: 35.6334930	total: 1.41s	remaining: 6.41s
54:	learn: 35.4457979	total: 1.43s	remaining: 6.38s
55:	learn: 35.2876901	total: 1.46s	remaining: 6.35s
56:	learn: 35.0953841	total: 1.5s	remaining: 6.38s
57:	learn: 34.9349948	total: 1.52s	remaining: 6.34s
58:	learn: 34.7891044	total: 1.54s	remaining: 6.31s
59:	learn: 34.6307667	total: 1.57s	remaining: 6.28s
60:	learn: 34.4536402	total: 1.59s	remaining: 6.25s
61:	learn: 34.3115958	total: 1.62s	remaining: 6.22s
62:	learn: 34.1015612	total: 1.64s	remaining: 6.18s
63:	learn: 33.9396305	total: 1.67s	remaining: 6.15s
64:	learn: 33.7697101	total: 1.7s	remaining: 6.16s
65:	learn: 33.5942192	total: 1.74s	remaining: 6.16s
66:	learn: 33.4437209	total: 1.76s	remaining: 6.13s
67:	learn: 33.2713872	total: 1.79s	remaining: 6.1s
68:	learn: 33.1222742	total: 1.81s	remaining: 6.07s
69:	learn: 32.9491993	total: 1.84s	remaining: 6.03s
70:	learn: 32.7993999	total: 1.86s	remaining: 6s
71:	learn: 32.6389444	total: 1.89s	remaining: 5.97s
72:	learn: 32.5136777	total: 1.92s	remaining: 5.97s
73:	learn: 32.3250532	total: 1.95s	remaining: 5.94s
74:	learn: 32.1681212	total: 1.97s	remaining: 5.91s
75:	learn: 32.0305457	total: 2s	remaining: 5.91s
76:	learn: 31.8939124	total: 2.03s	remaining: 5.88s
77:	learn: 31.7307002	total: 2.05s	remaining: 5.84s
78:	learn: 31.5506551	total: 2.08s	remaining: 5.81s
79:	learn: 31.3585582	total: 2.1s	remaining: 5.78s
80:	learn: 31.2377884	total: 2.13s	remaining: 5.77s
81:	learn: 31.0872848	total: 2.16s	remaining: 5.74s
82:	learn: 30.9196897	total: 2.19s	remaining: 5.71s
83:	learn: 30.7627899	total: 2.21s	remaining: 5.68s
84:	learn: 30.6354581	total: 2.23s	remaining: 5.65s
85:	learn: 30.4812118	total: 2.27s	remaining: 5.64s
86:	learn: 30.3501393	total: 2.29s	remaining: 5.61s
87:	learn: 30.2317309	total: 2.32s	remaining: 5.58s
88:	learn: 30.0770872	total: 2.35s	remaining: 5.57s
89:	learn: 29.9517251	total: 2.38s	remaining: 5.54s
90:	learn: 29.8182899	total: 2.4s	remaining: 5.52s
91:	learn: 29.6614210	total: 2.43s	remaining: 5.49s
92:	learn: 29.5523686	total: 2.45s	remaining: 5.45s
93:	learn: 29.4053683	total: 2.47s	remaining: 5.42s
94:	learn: 29.2601476	total: 2.5s	remaining: 5.39s
95:	learn: 29.1182094	total: 2.53s	remaining: 5.37s
96:	learn: 28.9885050	total: 2.56s	remaining: 5.36s
97:	learn: 28.8780981	total: 2.59s	remaining: 5.33s
98:	learn: 28.7484395	total: 2.61s	remaining: 5.3s
99:	learn: 28.6007901	total: 2.64s	remaining: 5.27s
100:	learn: 28.4647305	total: 2.66s	remaining: 5.24s
101:	learn: 28.3447045	total: 2.69s	remaining: 5.21s
102:	learn: 28.2185610	total: 2.71s	remaining: 5.18s
103:	learn: 28.1000930	total: 2.73s	remaining: 5.16s
104:	learn: 28.0014447	total: 2.77s	remaining: 5.14s
105:	learn: 27.8804790	total: 2.8s	remaining: 5.13s
106:	learn: 27.7561524	total: 2.83s	remaining: 5.1s
107:	learn: 27.6414765	total: 2.85s	remaining: 5.07s
108:	learn: 27.4937136	total: 2.88s	remaining: 5.04s
109:	learn: 27.3682776	total: 2.9s	remaining: 5.01s
110:	learn: 27.2527017	total: 2.92s	remaining: 4.97s
111:	learn: 27.1409655	total: 2.95s	remaining: 4.95s
112:	learn: 27.0220901	total: 2.98s	remaining: 4.93s
113:	learn: 26.9171572	total: 3s	remaining: 4.9s
114:	learn: 26.7707607	total: 3.04s	remaining: 4.89s
115:	learn: 26.6374802	total: 3.06s	remaining: 4.86s
116:	learn: 26.5161962	total: 3.09s	remaining: 4.83s
117:	learn: 26.3939712	total: 3.11s	remaining: 4.8s
118:	learn: 26.2670228	total: 3.13s	remaining: 4.77s
119:	learn: 26.1658805	total: 3.16s	remaining: 4.74s
120:	learn: 26.0439756	total: 3.19s	remaining: 4.72s
121:	learn: 25.9319704	total: 3.22s	remaining: 4.7s
122:	learn: 25.8133601	total: 3.24s	remaining: 4.67s
123:	learn: 25.6838585	total: 3.27s	remaining: 4.64s
124:	learn: 25.5642851	total: 3.3s	remaining: 4.62s
125:	learn: 25.4551493	total: 3.32s	remaining: 4.59s
126:	learn: 25.3283382	total: 3.35s	remaining: 4.56s
127:	learn: 25.2303422	total: 3.38s	remaining: 4.54s
128:	learn: 25.1301231	total: 3.41s	remaining: 4.52s
129:	learn: 25.0059477	total: 3.43s	remaining: 4.49s
130:	learn: 24.9128714	total: 3.46s	remaining: 4.46s
131:	learn: 24.8270009	total: 3.48s	remaining: 4.43s
132:	learn: 24.7282856	total: 3.51s	remaining: 4.41s
133:	learn: 24.6068738	total: 3.53s	remaining: 4.38s
134:	learn: 24.4944609	total: 3.57s	remaining: 4.36s
135:	learn: 24.4007736	total: 3.59s	remaining: 4.33s
136:	learn: 24.2652984	total: 3.63s	remaining: 4.31s
137:	learn: 24.1998753	total: 3.63s	remaining: 4.26s
138:	learn: 24.1187576	total: 3.65s	remaining: 4.23s
139:	learn: 24.0053052	total: 3.68s	remaining: 4.2s
140:	learn: 23.9210487	total: 3.7s	remaining: 4.18s
141:	learn: 23.8220050	total: 3.73s	remaining: 4.15s
142:	learn: 23.7320610	total: 3.75s	remaining: 4.12s
143:	learn: 23.6304095	total: 3.78s	remaining: 4.09s
144:	learn: 23.5435925	total: 3.8s	remaining: 4.06s
145:	learn: 23.4490235	total: 3.84s	remaining: 4.05s
146:	learn: 23.3593062	total: 3.87s	remaining: 4.03s
147:	learn: 23.2441220	total: 3.9s	remaining: 4s
148:	learn: 23.1649310	total: 3.92s	remaining: 3.97s
149:	learn: 23.0937137	total: 3.94s	remaining: 3.94s
150:	learn: 23.0033824	total: 3.97s	remaining: 3.92s
151:	learn: 22.9105498	total: 3.99s	remaining: 3.89s
152:	learn: 22.8240080	total: 4.02s	remaining: 3.86s
153:	learn: 22.7410049	total: 4.04s	remaining: 3.83s
154:	learn: 22.6555811	total: 4.08s	remaining: 3.82s
155:	learn: 22.5562543	total: 4.11s	remaining: 3.79s
156:	learn: 22.4580905	total: 4.13s	remaining: 3.77s
157:	learn: 22.3853437	total: 4.16s	remaining: 3.74s
158:	learn: 22.2910058	total: 4.18s	remaining: 3.71s
159:	learn: 22.2026924	total: 4.21s	remaining: 3.68s
160:	learn: 22.1082691	total: 4.23s	remaining: 3.65s
161:	learn: 22.0485799	total: 4.26s	remaining: 3.63s
162:	learn: 21.9732579	total: 4.29s	remaining: 3.61s
163:	learn: 21.8694207	total: 4.32s	remaining: 3.58s
164:	learn: 21.7852612	total: 4.35s	remaining: 3.56s
165:	learn: 21.7256414	total: 4.38s	remaining: 3.53s
166:	learn: 21.6428497	total: 4.4s	remaining: 3.5s
167:	learn: 21.5677079	total: 4.42s	remaining: 3.48s
168:	learn: 21.4593059	total: 4.45s	remaining: 3.45s
169:	learn: 21.3886739	total: 4.48s	remaining: 3.42s
170:	learn: 21.3128676	total: 4.51s	remaining: 3.4s
171:	learn: 21.2261221	total: 4.54s	remaining: 3.38s
172:	learn: 21.1358765	total: 4.56s	remaining: 3.35s
173:	learn: 21.0667531	total: 4.59s	remaining: 3.32s
174:	learn: 20.9949684	total: 4.62s	remaining: 3.3s
175:	learn: 20.9197151	total: 4.65s	remaining: 3.27s
176:	learn: 20.8348829	total: 4.67s	remaining: 3.25s
177:	learn: 20.7684704	total: 4.7s	remaining: 3.22s
178:	learn: 20.6988083	total: 4.73s	remaining: 3.2s
179:	learn: 20.6152013	total: 4.76s	remaining: 3.17s
180:	learn: 20.5573648	total: 4.78s	remaining: 3.14s
181:	learn: 20.4712922	total: 4.81s	remaining: 3.12s
182:	learn: 20.3807903	total: 4.83s	remaining: 3.09s
183:	learn: 20.2970112	total: 4.86s	remaining: 3.06s
184:	learn: 20.2034240	total: 4.89s	remaining: 3.04s
185:	learn: 20.1175766	total: 4.92s	remaining: 3.02s
186:	learn: 20.0348028	total: 4.95s	remaining: 2.99s
187:	learn: 19.9683863	total: 4.98s	remaining: 2.96s
188:	learn: 19.9146008	total: 5s	remaining: 2.94s
189:	learn: 19.8485219	total: 5.03s	remaining: 2.91s
190:	learn: 19.7815231	total: 5.05s	remaining: 2.88s
191:	learn: 19.7226636	total: 5.08s	remaining: 2.85s
192:	learn: 19.6514314	total: 5.1s	remaining: 2.83s
193:	learn: 19.5874662	total: 5.13s	remaining: 2.8s
194:	learn: 19.5188482	total: 5.16s	remaining: 2.78s
195:	learn: 19.4132924	total: 5.19s	remaining: 2.75s
196:	learn: 19.3336041	total: 5.21s	remaining: 2.73s
197:	learn: 19.2540160	total: 5.24s	remaining: 2.7s
198:	learn: 19.1814868	total: 5.26s	remaining: 2.67s
199:	learn: 19.1375571	total: 5.29s	remaining: 2.64s
200:	learn: 19.0597510	total: 5.31s	remaining: 2.62s
201:	learn: 18.9987290	total: 5.33s	remaining: 2.59s
202:	learn: 18.9357168	total: 5.37s	remaining: 2.56s
203:	learn: 18.8809983	total: 5.4s	remaining: 2.54s
204:	learn: 18.7949653	total: 5.43s	remaining: 2.52s
205:	learn: 18.7468832	total: 5.45s	remaining: 2.49s
206:	learn: 18.6810375	total: 5.48s	remaining: 2.46s
207:	learn: 18.6260175	total: 5.5s	remaining: 2.43s
208:	learn: 18.5784866	total: 5.52s	remaining: 2.4s
209:	learn: 18.5195431	total: 5.55s	remaining: 2.38s
210:	learn: 18.4524044	total: 5.58s	remaining: 2.35s
211:	learn: 18.3675987	total: 5.61s	remaining: 2.33s
212:	learn: 18.3150235	total: 5.63s	remaining: 2.3s
213:	learn: 18.2483349	total: 5.67s	remaining: 2.28s
214:	learn: 18.2130927	total: 5.69s	remaining: 2.25s
215:	learn: 18.1515897	total: 5.71s	remaining: 2.22s
216:	learn: 18.0941982	total: 5.74s	remaining: 2.19s
217:	learn: 18.0262823	total: 5.76s	remaining: 2.17s
218:	learn: 17.9660967	total: 5.8s	remaining: 2.14s
219:	learn: 17.8985691	total: 5.82s	remaining: 2.12s
220:	learn: 17.8383582	total: 5.85s	remaining: 2.09s
221:	learn: 17.7535770	total: 5.87s	remaining: 2.06s
222:	learn: 17.7044922	total: 5.9s	remaining: 2.04s
223:	learn: 17.6537442	total: 5.93s	remaining: 2.01s
224:	learn: 17.6005077	total: 5.96s	remaining: 1.99s
225:	learn: 17.5458811	total: 5.98s	remaining: 1.96s
226:	learn: 17.4973124	total: 6.01s	remaining: 1.93s
227:	learn: 17.4191591	total: 6.04s	remaining: 1.91s
228:	learn: 17.3619650	total: 6.07s	remaining: 1.88s
229:	learn: 17.3229834	total: 6.09s	remaining: 1.85s
230:	learn: 17.2721322	total: 6.13s	remaining: 1.83s
231:	learn: 17.2213528	total: 6.15s	remaining: 1.8s
232:	learn: 17.1648847	total: 6.17s	remaining: 1.77s
233:	learn: 17.1171379	total: 6.2s	remaining: 1.75s
234:	learn: 17.0577754	total: 6.23s	remaining: 1.72s
235:	learn: 16.9936285	total: 6.26s	remaining: 1.7s
236:	learn: 16.9401659	total: 6.28s	remaining: 1.67s
237:	learn: 16.9011805	total: 6.31s	remaining: 1.64s
238:	learn: 16.8468936	total: 6.33s	remaining: 1.62s
239:	learn: 16.7983935	total: 6.36s	remaining: 1.59s
240:	learn: 16.7461195	total: 6.38s	remaining: 1.56s
241:	learn: 16.6915220	total: 6.41s	remaining: 1.54s
242:	learn: 16.6467209	total: 6.46s	remaining: 1.51s
243:	learn: 16.5847369	total: 6.48s	remaining: 1.49s
244:	learn: 16.5460628	total: 6.51s	remaining: 1.46s
245:	learn: 16.5015037	total: 6.53s	remaining: 1.43s
246:	learn: 16.4403631	total: 6.56s	remaining: 1.41s
247:	learn: 16.3877470	total: 6.58s	remaining: 1.38s
248:	learn: 16.3539553	total: 6.6s	remaining: 1.35s
249:	learn: 16.3015470	total: 6.64s	remaining: 1.33s
250:	learn: 16.2710475	total: 6.67s	remaining: 1.3s
251:	learn: 16.2318420	total: 6.69s	remaining: 1.27s
252:	learn: 16.1799554	total: 6.72s	remaining: 1.25s
253:	learn: 16.1251371	total: 6.75s	remaining: 1.22s
254:	learn: 16.0766054	total: 6.77s	remaining: 1.19s
255:	learn: 16.0331296	total: 6.8s	remaining: 1.17s
256:	learn: 15.9716433	total: 6.82s	remaining: 1.14s
257:	learn: 15.9451600	total: 6.85s	remaining: 1.11s
258:	learn: 15.9018757	total: 6.88s	remaining: 1.09s
259:	learn: 15.8381970	total: 6.9s	remaining: 1.06s
260:	learn: 15.7826727	total: 6.93s	remaining: 1.03s
261:	learn: 15.7313015	total: 6.95s	remaining: 1.01s
262:	learn: 15.6834037	total: 6.99s	remaining: 983ms
263:	learn: 15.6349428	total: 7.01s	remaining: 956ms
264:	learn: 15.5990545	total: 7.04s	remaining: 929ms
265:	learn: 15.5542522	total: 7.06s	remaining: 903ms
266:	learn: 15.5084378	total: 7.09s	remaining: 877ms
267:	learn: 15.4661775	total: 7.12s	remaining: 850ms
268:	learn: 15.4204295	total: 7.15s	remaining: 824ms
269:	learn: 15.3797436	total: 7.17s	remaining: 797ms
270:	learn: 15.3241643	total: 7.2s	remaining: 770ms
271:	learn: 15.2912031	total: 7.22s	remaining: 743ms
272:	learn: 15.2485093	total: 7.25s	remaining: 717ms
273:	learn: 15.2067344	total: 7.28s	remaining: 691ms
274:	learn: 15.1691348	total: 7.31s	remaining: 665ms
275:	learn: 15.1175909	total: 7.34s	remaining: 638ms
276:	learn: 15.0764791	total: 7.36s	remaining: 611ms
277:	learn: 15.0234203	total: 7.39s	remaining: 585ms
278:	learn: 14.9850104	total: 7.41s	remaining: 558ms
279:	learn: 14.9411345	total: 7.43s	remaining: 531ms
280:	learn: 14.8870327	total: 7.46s	remaining: 504ms
281:	learn: 14.8456947	total: 7.48s	remaining: 478ms
282:	learn: 14.8084255	total: 7.53s	remaining: 452ms
283:	learn: 14.7680170	total: 7.55s	remaining: 425ms
284:	learn: 14.7205578	total: 7.58s	remaining: 399ms
285:	learn: 14.6828419	total: 7.6s	remaining: 372ms
286:	learn: 14.6381094	total: 7.62s	remaining: 345ms
287:	learn: 14.5936873	total: 7.65s	remaining: 319ms
288:	learn: 14.5454139	total: 7.67s	remaining: 292ms
289:	learn: 14.5045998	total: 7.69s	remaining: 265ms
290:	learn: 14.4651034	total: 7.72s	remaining: 239ms
291:	learn: 14.4164592	total: 7.76s	remaining: 213ms
292:	learn: 14.3794254	total: 7.79s	remaining: 186ms
293:	learn: 14.3526912	total: 7.81s	remaining: 159ms
294:	learn: 14.3172040	total: 7.84s	remaining: 133ms
295:	learn: 14.2878426	total: 7.86s	remaining: 106ms
296:	learn: 14.2618876	total: 7.89s	remaining: 79.7ms
297:	learn: 14.2238562	total: 7.91s	remaining: 53.1ms
298:	learn: 14.1855861	total: 7.94s	remaining: 26.6ms
299:	learn: 14.1397364	total: 7.97s	remaining: 0us
0:	learn: 46.7870548	total: 2.73ms	remaining: 817ms
1:	learn: 46.5509556	total: 24.8ms	remaining: 3.7s
2:	learn: 46.2905959	total: 54.8ms	remaining: 5.42s
3:	learn: 46.0432953	total: 77.8ms	remaining: 5.76s
4:	learn: 45.7981156	total: 102ms	remaining: 6.04s
5:	learn: 45.5953537	total: 140ms	remaining: 6.84s
6:	learn: 45.3456158	total: 165ms	remaining: 6.91s
7:	learn: 45.1041876	total: 190ms	remaining: 6.92s
8:	learn: 44.8408594	total: 215ms	remaining: 6.96s
9:	learn: 44.6156712	total: 239ms	remaining: 6.94s
10:	learn: 44.3844027	total: 262ms	remaining: 6.87s
11:	learn: 44.1592646	total: 284ms	remaining: 6.82s
12:	learn: 43.9028580	total: 318ms	remaining: 7.01s
13:	learn: 43.6552529	total: 353ms	remaining: 7.21s
14:	learn: 43.4209626	total: 379ms	remaining: 7.2s
15:	learn: 43.1808263	total: 404ms	remaining: 7.17s
16:	learn: 42.9397693	total: 429ms	remaining: 7.14s
17:	learn: 42.7028326	total: 455ms	remaining: 7.13s
18:	learn: 42.4507836	total: 480ms	remaining: 7.1s
19:	learn: 42.2343115	total: 503ms	remaining: 7.04s
20:	learn: 42.0290334	total: 528ms	remaining: 7.01s
21:	learn: 41.7972515	total: 558ms	remaining: 7.04s
22:	learn: 41.5930066	total: 595ms	remaining: 7.17s
23:	learn: 41.3630345	total: 621ms	remaining: 7.14s
24:	learn: 41.1267274	total: 646ms	remaining: 7.11s
25:	learn: 40.8976157	total: 672ms	remaining: 7.08s
26:	learn: 40.7477253	total: 694ms	remaining: 7.02s
27:	learn: 40.5380037	total: 719ms	remaining: 6.98s
28:	learn: 40.3518359	total: 743ms	remaining: 6.94s
29:	learn: 40.1227880	total: 776ms	remaining: 6.98s
30:	learn: 39.9077340	total: 806ms	remaining: 6.99s
31:	learn: 39.7157645	total: 830ms	remaining: 6.95s
32:	learn: 39.4842991	total: 863ms	remaining: 6.98s
33:	learn: 39.2680222	total: 887ms	remaining: 6.94s
34:	learn: 39.1151353	total: 912ms	remaining: 6.91s
35:	learn: 38.9106437	total: 935ms	remaining: 6.86s
36:	learn: 38.6816637	total: 960ms	remaining: 6.82s
37:	learn: 38.5040898	total: 991ms	remaining: 6.83s
38:	learn: 38.2991789	total: 1.02s	remaining: 6.83s
39:	learn: 38.0905994	total: 1.04s	remaining: 6.79s
40:	learn: 37.8866149	total: 1.07s	remaining: 6.75s
41:	learn: 37.6672953	total: 1.09s	remaining: 6.72s
42:	learn: 37.4800472	total: 1.13s	remaining: 6.73s
43:	learn: 37.3135160	total: 1.15s	remaining: 6.68s
44:	learn: 37.1163679	total: 1.17s	remaining: 6.66s
45:	learn: 36.9226524	total: 1.2s	remaining: 6.63s
46:	learn: 36.7536687	total: 1.23s	remaining: 6.64s
47:	learn: 36.5708676	total: 1.26s	remaining: 6.61s
48:	learn: 36.3496982	total: 1.28s	remaining: 6.58s
49:	learn: 36.1876634	total: 1.31s	remaining: 6.54s
50:	learn: 36.0205452	total: 1.33s	remaining: 6.51s
51:	learn: 35.8569839	total: 1.35s	remaining: 6.46s
52:	learn: 35.7193741	total: 1.39s	remaining: 6.47s
53:	learn: 35.5490989	total: 1.41s	remaining: 6.44s
54:	learn: 35.3734082	total: 1.45s	remaining: 6.44s
55:	learn: 35.2037325	total: 1.47s	remaining: 6.41s
56:	learn: 35.0366875	total: 1.5s	remaining: 6.38s
57:	learn: 34.8664946	total: 1.52s	remaining: 6.35s
58:	learn: 34.7528679	total: 1.55s	remaining: 6.32s
59:	learn: 34.5990206	total: 1.57s	remaining: 6.28s
60:	learn: 34.4375256	total: 1.59s	remaining: 6.25s
61:	learn: 34.2757128	total: 1.62s	remaining: 6.22s
62:	learn: 34.1074596	total: 1.66s	remaining: 6.24s
63:	learn: 33.9134234	total: 1.68s	remaining: 6.21s
64:	learn: 33.7721658	total: 1.71s	remaining: 6.18s
65:	learn: 33.6151876	total: 1.74s	remaining: 6.15s
66:	learn: 33.4702332	total: 1.76s	remaining: 6.12s
67:	learn: 33.3063605	total: 1.78s	remaining: 6.08s
68:	learn: 33.1371803	total: 1.8s	remaining: 6.04s
69:	learn: 32.9938650	total: 1.83s	remaining: 6.01s
70:	learn: 32.8806069	total: 1.86s	remaining: 6s
71:	learn: 32.7337783	total: 1.9s	remaining: 6s
72:	learn: 32.6112632	total: 1.92s	remaining: 5.97s
73:	learn: 32.4373088	total: 1.95s	remaining: 5.94s
74:	learn: 32.2704069	total: 1.97s	remaining: 5.91s
75:	learn: 32.1309156	total: 1.97s	remaining: 5.81s
76:	learn: 31.9982204	total: 1.99s	remaining: 5.78s
77:	learn: 31.8386739	total: 2.02s	remaining: 5.74s
78:	learn: 31.6987206	total: 2.04s	remaining: 5.71s
79:	learn: 31.5499135	total: 2.07s	remaining: 5.7s
80:	learn: 31.4086186	total: 2.1s	remaining: 5.68s
81:	learn: 31.2612447	total: 2.13s	remaining: 5.66s
82:	learn: 31.1473521	total: 2.16s	remaining: 5.65s
83:	learn: 31.0256072	total: 2.19s	remaining: 5.62s
84:	learn: 30.8713816	total: 2.21s	remaining: 5.59s
85:	learn: 30.7375117	total: 2.23s	remaining: 5.56s
86:	learn: 30.6108390	total: 2.26s	remaining: 5.53s
87:	learn: 30.4713139	total: 2.29s	remaining: 5.52s
88:	learn: 30.3423055	total: 2.32s	remaining: 5.5s
89:	learn: 30.2207021	total: 2.34s	remaining: 5.47s
90:	learn: 30.0949179	total: 2.37s	remaining: 5.44s
91:	learn: 29.9729715	total: 2.39s	remaining: 5.41s
92:	learn: 29.8643086	total: 2.42s	remaining: 5.39s
93:	learn: 29.7665122	total: 2.45s	remaining: 5.36s
94:	learn: 29.6231497	total: 2.47s	remaining: 5.33s
95:	learn: 29.4789414	total: 2.51s	remaining: 5.33s
96:	learn: 29.3548309	total: 2.54s	remaining: 5.31s
97:	learn: 29.2140883	total: 2.56s	remaining: 5.28s
98:	learn: 29.0857263	total: 2.59s	remaining: 5.25s
99:	learn: 28.9844616	total: 2.61s	remaining: 5.22s
100:	learn: 28.8786360	total: 2.64s	remaining: 5.2s
101:	learn: 28.7366305	total: 2.66s	remaining: 5.17s
102:	learn: 28.6144208	total: 2.7s	remaining: 5.17s
103:	learn: 28.4909185	total: 2.73s	remaining: 5.14s
104:	learn: 28.3737308	total: 2.75s	remaining: 5.12s
105:	learn: 28.2474669	total: 2.78s	remaining: 5.09s
106:	learn: 28.1304845	total: 2.81s	remaining: 5.06s
107:	learn: 28.0219050	total: 2.83s	remaining: 5.03s
108:	learn: 27.9119273	total: 2.86s	remaining: 5s
109:	learn: 27.7940665	total: 2.88s	remaining: 4.98s
110:	learn: 27.6861210	total: 2.91s	remaining: 4.96s
111:	learn: 27.5494854	total: 2.94s	remaining: 4.94s
112:	learn: 27.4263503	total: 2.97s	remaining: 4.92s
113:	learn: 27.3187261	total: 3s	remaining: 4.89s
114:	learn: 27.2166072	total: 3.02s	remaining: 4.87s
115:	learn: 27.0966496	total: 3.05s	remaining: 4.83s
116:	learn: 26.9715404	total: 3.07s	remaining: 4.8s
117:	learn: 26.9000098	total: 3.1s	remaining: 4.78s
118:	learn: 26.7950464	total: 3.12s	remaining: 4.75s
119:	learn: 26.6670545	total: 3.15s	remaining: 4.73s
120:	learn: 26.5335862	total: 3.18s	remaining: 4.7s
121:	learn: 26.4604828	total: 3.21s	remaining: 4.68s
122:	learn: 26.3381204	total: 3.24s	remaining: 4.66s
123:	learn: 26.2222222	total: 3.26s	remaining: 4.63s
124:	learn: 26.1304443	total: 3.28s	remaining: 4.6s
125:	learn: 26.0221039	total: 3.31s	remaining: 4.57s
126:	learn: 25.9100900	total: 3.33s	remaining: 4.54s
127:	learn: 25.8080098	total: 3.36s	remaining: 4.52s
128:	learn: 25.7080133	total: 3.39s	remaining: 4.49s
129:	learn: 25.6040228	total: 3.42s	remaining: 4.47s
130:	learn: 25.5038062	total: 3.44s	remaining: 4.44s
131:	learn: 25.4035491	total: 3.47s	remaining: 4.41s
132:	learn: 25.2999779	total: 3.5s	remaining: 4.39s
133:	learn: 25.1973428	total: 3.52s	remaining: 4.37s
134:	learn: 25.0957273	total: 3.55s	remaining: 4.34s
135:	learn: 24.9765330	total: 3.58s	remaining: 4.32s
136:	learn: 24.8917171	total: 3.61s	remaining: 4.29s
137:	learn: 24.7841090	total: 3.63s	remaining: 4.26s
138:	learn: 24.6927568	total: 3.66s	remaining: 4.24s
139:	learn: 24.6129006	total: 3.68s	remaining: 4.21s
140:	learn: 24.5144267	total: 3.71s	remaining: 4.18s
141:	learn: 24.4313235	total: 3.73s	remaining: 4.15s
142:	learn: 24.3411218	total: 3.76s	remaining: 4.13s
143:	learn: 24.2573999	total: 3.8s	remaining: 4.11s
144:	learn: 24.1811369	total: 3.82s	remaining: 4.08s
145:	learn: 24.0879259	total: 3.85s	remaining: 4.06s
146:	learn: 23.9890446	total: 3.87s	remaining: 4.03s
147:	learn: 23.9041220	total: 3.9s	remaining: 4s
148:	learn: 23.8190377	total: 3.92s	remaining: 3.97s
149:	learn: 23.7441370	total: 3.94s	remaining: 3.94s
150:	learn: 23.6536711	total: 3.97s	remaining: 3.92s
151:	learn: 23.5617828	total: 3.99s	remaining: 3.89s
152:	learn: 23.4575126	total: 4.03s	remaining: 3.88s
153:	learn: 23.3545199	total: 4.06s	remaining: 3.85s
154:	learn: 23.2786188	total: 4.08s	remaining: 3.82s
155:	learn: 23.1932207	total: 4.11s	remaining: 3.79s
156:	learn: 23.1157521	total: 4.13s	remaining: 3.77s
157:	learn: 23.0525011	total: 4.16s	remaining: 3.74s
158:	learn: 22.9826131	total: 4.18s	remaining: 3.71s
159:	learn: 22.8971645	total: 4.21s	remaining: 3.68s
160:	learn: 22.8124108	total: 4.24s	remaining: 3.66s
161:	learn: 22.7259629	total: 4.27s	remaining: 3.64s
162:	learn: 22.6410461	total: 4.3s	remaining: 3.62s
163:	learn: 22.5475340	total: 4.33s	remaining: 3.59s
164:	learn: 22.4665910	total: 4.35s	remaining: 3.56s
165:	learn: 22.4018176	total: 4.37s	remaining: 3.53s
166:	learn: 22.3206923	total: 4.4s	remaining: 3.5s
167:	learn: 22.2605670	total: 4.42s	remaining: 3.47s
168:	learn: 22.1905861	total: 4.46s	remaining: 3.45s
169:	learn: 22.1262269	total: 4.48s	remaining: 3.43s
170:	learn: 22.0491308	total: 4.51s	remaining: 3.4s
171:	learn: 21.9817333	total: 4.53s	remaining: 3.37s
172:	learn: 21.9058044	total: 4.57s	remaining: 3.35s
173:	learn: 21.8241791	total: 4.59s	remaining: 3.32s
174:	learn: 21.7375817	total: 4.61s	remaining: 3.29s
175:	learn: 21.6472643	total: 4.64s	remaining: 3.27s
176:	learn: 21.5766827	total: 4.67s	remaining: 3.25s
177:	learn: 21.4878344	total: 4.7s	remaining: 3.22s
178:	learn: 21.4188640	total: 4.72s	remaining: 3.19s
179:	learn: 21.3385443	total: 4.75s	remaining: 3.17s
180:	learn: 21.2650011	total: 4.78s	remaining: 3.14s
181:	learn: 21.1772856	total: 4.81s	remaining: 3.12s
182:	learn: 21.1013252	total: 4.83s	remaining: 3.09s
183:	learn: 21.0237300	total: 4.86s	remaining: 3.06s
184:	learn: 20.9314435	total: 4.89s	remaining: 3.04s
185:	learn: 20.8664317	total: 4.92s	remaining: 3.01s
186:	learn: 20.8108514	total: 4.94s	remaining: 2.99s
187:	learn: 20.7363786	total: 4.97s	remaining: 2.96s
188:	learn: 20.6587434	total: 5s	remaining: 2.93s
189:	learn: 20.5954877	total: 5.02s	remaining: 2.91s
190:	learn: 20.5328286	total: 5.04s	remaining: 2.88s
191:	learn: 20.4669052	total: 5.07s	remaining: 2.85s
192:	learn: 20.3961092	total: 5.11s	remaining: 2.83s
193:	learn: 20.3346586	total: 5.14s	remaining: 2.81s
194:	learn: 20.2699707	total: 5.16s	remaining: 2.78s
195:	learn: 20.1688307	total: 5.19s	remaining: 2.75s
196:	learn: 20.1072185	total: 5.21s	remaining: 2.73s
197:	learn: 20.0248965	total: 5.24s	remaining: 2.7s
198:	learn: 19.9749040	total: 5.26s	remaining: 2.67s
199:	learn: 19.9141163	total: 5.29s	remaining: 2.65s
200:	learn: 19.8322942	total: 5.32s	remaining: 2.62s
201:	learn: 19.7695440	total: 5.36s	remaining: 2.6s
202:	learn: 19.7099364	total: 5.38s	remaining: 2.57s
203:	learn: 19.6431868	total: 5.41s	remaining: 2.54s
204:	learn: 19.5742365	total: 5.43s	remaining: 2.52s
205:	learn: 19.4926752	total: 5.46s	remaining: 2.49s
206:	learn: 19.4461217	total: 5.48s	remaining: 2.46s
207:	learn: 19.3968500	total: 5.51s	remaining: 2.44s
208:	learn: 19.3405955	total: 5.54s	remaining: 2.41s
209:	learn: 19.2827366	total: 5.57s	remaining: 2.38s
210:	learn: 19.2233617	total: 5.59s	remaining: 2.36s
211:	learn: 19.1454929	total: 5.62s	remaining: 2.33s
212:	learn: 19.0880463	total: 5.65s	remaining: 2.31s
213:	learn: 19.0234252	total: 5.67s	remaining: 2.28s
214:	learn: 18.9739747	total: 5.7s	remaining: 2.25s
215:	learn: 18.9243468	total: 5.72s	remaining: 2.23s
216:	learn: 18.8837475	total: 5.76s	remaining: 2.2s
217:	learn: 18.8278098	total: 5.79s	remaining: 2.18s
218:	learn: 18.7925834	total: 5.81s	remaining: 2.15s
219:	learn: 18.7381930	total: 5.84s	remaining: 2.12s
220:	learn: 18.6955420	total: 5.86s	remaining: 2.1s
221:	learn: 18.6371123	total: 5.89s	remaining: 2.07s
222:	learn: 18.5567836	total: 5.92s	remaining: 2.04s
223:	learn: 18.4913242	total: 5.95s	remaining: 2.02s
224:	learn: 18.4291923	total: 5.98s	remaining: 1.99s
225:	learn: 18.3684290	total: 6s	remaining: 1.97s
226:	learn: 18.3214289	total: 6.03s	remaining: 1.94s
227:	learn: 18.2559323	total: 6.06s	remaining: 1.91s
228:	learn: 18.2080430	total: 6.08s	remaining: 1.89s
229:	learn: 18.1427218	total: 6.11s	remaining: 1.86s
230:	learn: 18.0795023	total: 6.13s	remaining: 1.83s
231:	learn: 18.0263874	total: 6.17s	remaining: 1.81s
232:	learn: 17.9746300	total: 6.2s	remaining: 1.78s
233:	learn: 17.9230444	total: 6.23s	remaining: 1.76s
234:	learn: 17.8920017	total: 6.25s	remaining: 1.73s
235:	learn: 17.8210122	total: 6.28s	remaining: 1.7s
236:	learn: 17.7628665	total: 6.3s	remaining: 1.67s
237:	learn: 17.7044488	total: 6.32s	remaining: 1.65s
238:	learn: 17.6558079	total: 6.35s	remaining: 1.62s
239:	learn: 17.6061414	total: 6.38s	remaining: 1.59s
240:	learn: 17.5499135	total: 6.41s	remaining: 1.57s
241:	learn: 17.5079151	total: 6.45s	remaining: 1.54s
242:	learn: 17.4658116	total: 6.47s	remaining: 1.52s
243:	learn: 17.4073047	total: 6.5s	remaining: 1.49s
244:	learn: 17.3745022	total: 6.52s	remaining: 1.46s
245:	learn: 17.3357514	total: 6.54s	remaining: 1.44s
246:	learn: 17.3068297	total: 6.57s	remaining: 1.41s
247:	learn: 17.2634815	total: 6.59s	remaining: 1.38s
248:	learn: 17.2117369	total: 6.63s	remaining: 1.36s
249:	learn: 17.1587386	total: 6.66s	remaining: 1.33s
250:	learn: 17.1143843	total: 6.68s	remaining: 1.3s
251:	learn: 17.0739449	total: 6.72s	remaining: 1.28s
252:	learn: 17.0260606	total: 6.74s	remaining: 1.25s
253:	learn: 16.9834570	total: 6.77s	remaining: 1.23s
254:	learn: 16.9420746	total: 6.79s	remaining: 1.2s
255:	learn: 16.8913583	total: 6.82s	remaining: 1.17s
256:	learn: 16.8361972	total: 6.85s	remaining: 1.15s
257:	learn: 16.8015363	total: 6.88s	remaining: 1.12s
258:	learn: 16.7722675	total: 6.9s	remaining: 1.09s
259:	learn: 16.7270442	total: 6.93s	remaining: 1.07s
260:	learn: 16.6831627	total: 6.95s	remaining: 1.04s
261:	learn: 16.6434408	total: 6.99s	remaining: 1.01s
262:	learn: 16.6046513	total: 7.01s	remaining: 986ms
263:	learn: 16.5697297	total: 7.04s	remaining: 959ms
264:	learn: 16.5076111	total: 7.07s	remaining: 933ms
265:	learn: 16.4743242	total: 7.09s	remaining: 907ms
266:	learn: 16.4355076	total: 7.12s	remaining: 880ms
267:	learn: 16.3987254	total: 7.14s	remaining: 853ms
268:	learn: 16.3578512	total: 7.17s	remaining: 826ms
269:	learn: 16.3164137	total: 7.19s	remaining: 799ms
270:	learn: 16.2734218	total: 7.22s	remaining: 773ms
271:	learn: 16.2386336	total: 7.25s	remaining: 746ms
272:	learn: 16.2115930	total: 7.28s	remaining: 720ms
273:	learn: 16.1647178	total: 7.31s	remaining: 694ms
274:	learn: 16.1314533	total: 7.33s	remaining: 667ms
275:	learn: 16.0993418	total: 7.36s	remaining: 640ms
276:	learn: 16.0532680	total: 7.38s	remaining: 613ms
277:	learn: 15.9970623	total: 7.41s	remaining: 586ms
278:	learn: 15.9507754	total: 7.43s	remaining: 559ms
279:	learn: 15.9139085	total: 7.45s	remaining: 532ms
280:	learn: 15.8784290	total: 7.49s	remaining: 506ms
281:	learn: 15.8500276	total: 7.52s	remaining: 480ms
282:	learn: 15.8088728	total: 7.54s	remaining: 453ms
283:	learn: 15.7708631	total: 7.57s	remaining: 426ms
284:	learn: 15.7384477	total: 7.59s	remaining: 400ms
285:	learn: 15.6975787	total: 7.62s	remaining: 373ms
286:	learn: 15.6581989	total: 7.64s	remaining: 346ms
287:	learn: 15.6229063	total: 7.67s	remaining: 320ms
288:	learn: 15.5827583	total: 7.7s	remaining: 293ms
289:	learn: 15.5466794	total: 7.73s	remaining: 267ms
290:	learn: 15.5096633	total: 7.76s	remaining: 240ms
291:	learn: 15.4728289	total: 7.79s	remaining: 213ms
292:	learn: 15.4333441	total: 7.81s	remaining: 187ms
293:	learn: 15.3974059	total: 7.83s	remaining: 160ms
294:	learn: 15.3497460	total: 7.86s	remaining: 133ms
295:	learn: 15.3153853	total: 7.88s	remaining: 107ms
296:	learn: 15.2809401	total: 7.91s	remaining: 79.9ms
297:	learn: 15.2514602	total: 7.94s	remaining: 53.3ms
298:	learn: 15.2163632	total: 7.97s	remaining: 26.6ms
299:	learn: 15.1752827	total: 7.99s	remaining: 0us
0:	learn: 47.3866100	total: 31.6ms	remaining: 9.46s
1:	learn: 47.1426102	total: 54.9ms	remaining: 8.17s
2:	learn: 46.8912678	total: 85.5ms	remaining: 8.47s
3:	learn: 46.6074552	total: 112ms	remaining: 8.3s
4:	learn: 46.3343561	total: 137ms	remaining: 8.08s
5:	learn: 46.0821186	total: 162ms	remaining: 7.93s
6:	learn: 45.8220945	total: 186ms	remaining: 7.79s
7:	learn: 45.5648188	total: 209ms	remaining: 7.62s
8:	learn: 45.3118772	total: 232ms	remaining: 7.51s
9:	learn: 45.0577551	total: 258ms	remaining: 7.49s
10:	learn: 44.8202452	total: 294ms	remaining: 7.72s
11:	learn: 44.6018494	total: 325ms	remaining: 7.8s
12:	learn: 44.3639939	total: 352ms	remaining: 7.77s
13:	learn: 44.1260754	total: 378ms	remaining: 7.72s
14:	learn: 43.9085986	total: 404ms	remaining: 7.67s
15:	learn: 43.6831522	total: 431ms	remaining: 7.65s
16:	learn: 43.4382322	total: 456ms	remaining: 7.59s
17:	learn: 43.2049427	total: 482ms	remaining: 7.54s
18:	learn: 42.9703086	total: 518ms	remaining: 7.67s
19:	learn: 42.7260970	total: 546ms	remaining: 7.64s
20:	learn: 42.4976342	total: 579ms	remaining: 7.69s
21:	learn: 42.2715368	total: 604ms	remaining: 7.64s
22:	learn: 42.0297592	total: 631ms	remaining: 7.6s
23:	learn: 41.8357333	total: 654ms	remaining: 7.52s
24:	learn: 41.6061720	total: 677ms	remaining: 7.45s
25:	learn: 41.3859547	total: 703ms	remaining: 7.4s
26:	learn: 41.1703337	total: 729ms	remaining: 7.37s
27:	learn: 40.9556925	total: 758ms	remaining: 7.37s
28:	learn: 40.7837869	total: 785ms	remaining: 7.34s
29:	learn: 40.5834865	total: 810ms	remaining: 7.29s
30:	learn: 40.3902303	total: 845ms	remaining: 7.33s
31:	learn: 40.1905276	total: 868ms	remaining: 7.27s
32:	learn: 39.9393072	total: 891ms	remaining: 7.21s
33:	learn: 39.7725634	total: 915ms	remaining: 7.16s
34:	learn: 39.6086582	total: 940ms	remaining: 7.12s
35:	learn: 39.4239082	total: 973ms	remaining: 7.13s
36:	learn: 39.2195459	total: 999ms	remaining: 7.1s
37:	learn: 39.0268945	total: 1.02s	remaining: 7.06s
38:	learn: 38.8567143	total: 1.05s	remaining: 7.02s
39:	learn: 38.6564689	total: 1.07s	remaining: 6.98s
40:	learn: 38.4634144	total: 1.1s	remaining: 6.97s
41:	learn: 38.2574076	total: 1.13s	remaining: 6.92s
42:	learn: 38.0759189	total: 1.15s	remaining: 6.88s
43:	learn: 37.8762011	total: 1.18s	remaining: 6.88s
44:	learn: 37.6855185	total: 1.21s	remaining: 6.86s
45:	learn: 37.5247164	total: 1.24s	remaining: 6.82s
46:	learn: 37.3338876	total: 1.26s	remaining: 6.78s
47:	learn: 37.1348956	total: 1.28s	remaining: 6.75s
48:	learn: 37.0000826	total: 1.31s	remaining: 6.7s
49:	learn: 36.8314524	total: 1.33s	remaining: 6.66s
50:	learn: 36.6609492	total: 1.36s	remaining: 6.66s
51:	learn: 36.4906402	total: 1.39s	remaining: 6.63s
52:	learn: 36.3341244	total: 1.42s	remaining: 6.63s
53:	learn: 36.1983941	total: 1.45s	remaining: 6.6s
54:	learn: 36.0437712	total: 1.47s	remaining: 6.56s
55:	learn: 35.9047256	total: 1.5s	remaining: 6.53s
56:	learn: 35.7041614	total: 1.52s	remaining: 6.5s
57:	learn: 35.6344433	total: 1.52s	remaining: 6.36s
58:	learn: 35.4315645	total: 1.55s	remaining: 6.32s
59:	learn: 35.2659531	total: 1.57s	remaining: 6.28s
60:	learn: 35.0959404	total: 1.59s	remaining: 6.25s
61:	learn: 34.9228518	total: 1.63s	remaining: 6.26s
62:	learn: 34.7527576	total: 1.66s	remaining: 6.24s
63:	learn: 34.5885035	total: 1.68s	remaining: 6.21s
64:	learn: 34.4503426	total: 1.71s	remaining: 6.17s
65:	learn: 34.2692281	total: 1.73s	remaining: 6.14s
66:	learn: 34.1087294	total: 1.76s	remaining: 6.11s
67:	learn: 33.9503280	total: 1.78s	remaining: 6.08s
68:	learn: 33.8184729	total: 1.81s	remaining: 6.05s
69:	learn: 33.6278897	total: 1.84s	remaining: 6.04s
70:	learn: 33.4750481	total: 1.87s	remaining: 6.02s
71:	learn: 33.3216386	total: 1.9s	remaining: 6.01s
72:	learn: 33.1787868	total: 1.92s	remaining: 5.98s
73:	learn: 33.0207015	total: 1.95s	remaining: 5.95s
74:	learn: 32.8874907	total: 1.97s	remaining: 5.92s
75:	learn: 32.7368247	total: 1.99s	remaining: 5.88s
76:	learn: 32.6329647	total: 2.02s	remaining: 5.84s
77:	learn: 32.4984428	total: 2.04s	remaining: 5.82s
78:	learn: 32.3645588	total: 2.08s	remaining: 5.8s
79:	learn: 32.2140910	total: 2.1s	remaining: 5.78s
80:	learn: 32.1071328	total: 2.13s	remaining: 5.75s
81:	learn: 31.9594655	total: 2.16s	remaining: 5.74s
82:	learn: 31.8335545	total: 2.19s	remaining: 5.71s
83:	learn: 31.6941865	total: 2.21s	remaining: 5.68s
84:	learn: 31.5568398	total: 2.23s	remaining: 5.65s
85:	learn: 31.4241459	total: 2.26s	remaining: 5.63s
86:	learn: 31.2520769	total: 2.29s	remaining: 5.61s
87:	learn: 31.1305059	total: 2.32s	remaining: 5.58s
88:	learn: 30.9859239	total: 2.34s	remaining: 5.56s
89:	learn: 30.8609070	total: 2.37s	remaining: 5.53s
90:	learn: 30.7334170	total: 2.39s	remaining: 5.5s
91:	learn: 30.6026676	total: 2.42s	remaining: 5.48s
92:	learn: 30.4699786	total: 2.45s	remaining: 5.45s
93:	learn: 30.3354713	total: 2.48s	remaining: 5.43s
94:	learn: 30.1962656	total: 2.51s	remaining: 5.41s
95:	learn: 30.0840378	total: 2.53s	remaining: 5.38s
96:	learn: 29.9769788	total: 2.56s	remaining: 5.35s
97:	learn: 29.8484424	total: 2.58s	remaining: 5.32s
98:	learn: 29.7170503	total: 2.61s	remaining: 5.29s
99:	learn: 29.6074100	total: 2.63s	remaining: 5.26s
100:	learn: 29.4778106	total: 2.66s	remaining: 5.25s
101:	learn: 29.3374186	total: 2.69s	remaining: 5.22s
102:	learn: 29.2080076	total: 2.72s	remaining: 5.21s
103:	learn: 29.0873312	total: 2.75s	remaining: 5.18s
104:	learn: 28.9927551	total: 2.77s	remaining: 5.15s
105:	learn: 28.8317474	total: 2.8s	remaining: 5.12s
106:	learn: 28.7062652	total: 2.82s	remaining: 5.09s
107:	learn: 28.5773284	total: 2.85s	remaining: 5.06s
108:	learn: 28.4953947	total: 2.87s	remaining: 5.03s
109:	learn: 28.3602682	total: 2.9s	remaining: 5s
110:	learn: 28.2333815	total: 2.94s	remaining: 5s
111:	learn: 28.1240955	total: 2.96s	remaining: 4.97s
112:	learn: 28.0042081	total: 2.99s	remaining: 4.95s
113:	learn: 27.8755833	total: 3.01s	remaining: 4.92s
114:	learn: 27.7391286	total: 3.04s	remaining: 4.88s
115:	learn: 27.6288646	total: 3.06s	remaining: 4.85s
116:	learn: 27.5138297	total: 3.08s	remaining: 4.82s
117:	learn: 27.4048303	total: 3.11s	remaining: 4.79s
118:	learn: 27.2873207	total: 3.14s	remaining: 4.78s
119:	learn: 27.1580436	total: 3.17s	remaining: 4.75s
120:	learn: 27.0229609	total: 3.2s	remaining: 4.73s
121:	learn: 26.9179110	total: 3.22s	remaining: 4.7s
122:	learn: 26.7866067	total: 3.25s	remaining: 4.67s
123:	learn: 26.6723854	total: 3.27s	remaining: 4.64s
124:	learn: 26.5644705	total: 3.29s	remaining: 4.61s
125:	learn: 26.4683380	total: 3.32s	remaining: 4.58s
126:	learn: 26.3651594	total: 3.35s	remaining: 4.57s
127:	learn: 26.2423427	total: 3.38s	remaining: 4.54s
128:	learn: 26.1392360	total: 3.4s	remaining: 4.51s
129:	learn: 26.0364868	total: 3.43s	remaining: 4.48s
130:	learn: 25.9462554	total: 3.46s	remaining: 4.47s
131:	learn: 25.8200905	total: 3.48s	remaining: 4.43s
132:	learn: 25.7327936	total: 3.51s	remaining: 4.4s
133:	learn: 25.6651491	total: 3.53s	remaining: 4.37s
134:	learn: 25.5503487	total: 3.55s	remaining: 4.34s
135:	learn: 25.4384941	total: 3.58s	remaining: 4.32s
136:	learn: 25.3274461	total: 3.61s	remaining: 4.3s
137:	learn: 25.2392392	total: 3.64s	remaining: 4.27s
138:	learn: 25.1575283	total: 3.66s	remaining: 4.24s
139:	learn: 25.0580534	total: 3.69s	remaining: 4.21s
140:	learn: 24.9561545	total: 3.72s	remaining: 4.19s
141:	learn: 24.8525353	total: 3.74s	remaining: 4.16s
142:	learn: 24.7244185	total: 3.77s	remaining: 4.14s
143:	learn: 24.6347464	total: 3.8s	remaining: 4.12s
144:	learn: 24.5284082	total: 3.82s	remaining: 4.09s
145:	learn: 24.4410314	total: 3.85s	remaining: 4.06s
146:	learn: 24.3411270	total: 3.87s	remaining: 4.03s
147:	learn: 24.2571404	total: 3.9s	remaining: 4s
148:	learn: 24.1664004	total: 3.92s	remaining: 3.97s
149:	learn: 24.0921663	total: 3.94s	remaining: 3.94s
150:	learn: 24.0000920	total: 3.98s	remaining: 3.92s
151:	learn: 23.8989061	total: 4.01s	remaining: 3.9s
152:	learn: 23.8051021	total: 4.04s	remaining: 3.88s
153:	learn: 23.7140777	total: 4.06s	remaining: 3.85s
154:	learn: 23.6350863	total: 4.08s	remaining: 3.82s
155:	learn: 23.5453185	total: 4.11s	remaining: 3.79s
156:	learn: 23.4762777	total: 4.13s	remaining: 3.76s
157:	learn: 23.3964371	total: 4.16s	remaining: 3.73s
158:	learn: 23.3060877	total: 4.18s	remaining: 3.71s
159:	learn: 23.2410717	total: 4.21s	remaining: 3.69s
160:	learn: 23.1461269	total: 4.25s	remaining: 3.67s
161:	learn: 23.0550190	total: 4.27s	remaining: 3.64s
162:	learn: 22.9862832	total: 4.29s	remaining: 3.61s
163:	learn: 22.8730849	total: 4.32s	remaining: 3.58s
164:	learn: 22.7831631	total: 4.34s	remaining: 3.55s
165:	learn: 22.7121818	total: 4.37s	remaining: 3.53s
166:	learn: 22.6202215	total: 4.39s	remaining: 3.5s
167:	learn: 22.5433563	total: 4.43s	remaining: 3.48s
168:	learn: 22.4588142	total: 4.45s	remaining: 3.45s
169:	learn: 22.4211462	total: 4.46s	remaining: 3.41s
170:	learn: 22.3368333	total: 4.48s	remaining: 3.38s
171:	learn: 22.2529400	total: 4.52s	remaining: 3.36s
172:	learn: 22.1796508	total: 4.54s	remaining: 3.33s
173:	learn: 22.1038400	total: 4.57s	remaining: 3.31s
174:	learn: 22.0214875	total: 4.59s	remaining: 3.28s
175:	learn: 21.9596201	total: 4.62s	remaining: 3.26s
176:	learn: 21.9047679	total: 4.65s	remaining: 3.23s
177:	learn: 21.8305329	total: 4.68s	remaining: 3.21s
178:	learn: 21.7474635	total: 4.7s	remaining: 3.18s
179:	learn: 21.6838637	total: 4.73s	remaining: 3.15s
180:	learn: 21.6231038	total: 4.75s	remaining: 3.12s
181:	learn: 21.5530991	total: 4.78s	remaining: 3.1s
182:	learn: 21.4744081	total: 4.8s	remaining: 3.07s
183:	learn: 21.4002206	total: 4.83s	remaining: 3.04s
184:	learn: 21.3311448	total: 4.86s	remaining: 3.02s
185:	learn: 21.2663373	total: 4.89s	remaining: 3s
186:	learn: 21.1872896	total: 4.91s	remaining: 2.97s
187:	learn: 21.1149449	total: 4.94s	remaining: 2.94s
188:	learn: 21.0395139	total: 4.96s	remaining: 2.91s
189:	learn: 20.9687164	total: 4.98s	remaining: 2.88s
190:	learn: 20.9310992	total: 5.01s	remaining: 2.86s
191:	learn: 20.8588045	total: 5.04s	remaining: 2.83s
192:	learn: 20.8068052	total: 5.07s	remaining: 2.81s
193:	learn: 20.7445460	total: 5.09s	remaining: 2.78s
194:	learn: 20.6840110	total: 5.12s	remaining: 2.75s
195:	learn: 20.6281417	total: 5.14s	remaining: 2.73s
196:	learn: 20.5604201	total: 5.17s	remaining: 2.7s
197:	learn: 20.4807570	total: 5.19s	remaining: 2.67s
198:	learn: 20.4340054	total: 5.22s	remaining: 2.65s
199:	learn: 20.3819010	total: 5.24s	remaining: 2.62s
200:	learn: 20.3209962	total: 5.28s	remaining: 2.6s
201:	learn: 20.2680186	total: 5.31s	remaining: 2.58s
202:	learn: 20.2024573	total: 5.33s	remaining: 2.55s
203:	learn: 20.1283892	total: 5.36s	remaining: 2.52s
204:	learn: 20.0617914	total: 5.38s	remaining: 2.49s
205:	learn: 20.0011232	total: 5.41s	remaining: 2.47s
206:	learn: 19.9478089	total: 5.43s	remaining: 2.44s
207:	learn: 19.8811498	total: 5.45s	remaining: 2.41s
208:	learn: 19.8266470	total: 5.49s	remaining: 2.39s
209:	learn: 19.7584260	total: 5.51s	remaining: 2.36s
210:	learn: 19.6930201	total: 5.54s	remaining: 2.34s
211:	learn: 19.6371133	total: 5.57s	remaining: 2.31s
212:	learn: 19.5792826	total: 5.6s	remaining: 2.29s
213:	learn: 19.5165282	total: 5.62s	remaining: 2.26s
214:	learn: 19.4647405	total: 5.64s	remaining: 2.23s
215:	learn: 19.4045396	total: 5.67s	remaining: 2.2s
216:	learn: 19.3395383	total: 5.7s	remaining: 2.18s
217:	learn: 19.2771112	total: 5.73s	remaining: 2.15s
218:	learn: 19.2295294	total: 5.75s	remaining: 2.13s
219:	learn: 19.1755119	total: 5.78s	remaining: 2.1s
220:	learn: 19.1226534	total: 5.8s	remaining: 2.07s
221:	learn: 19.0487891	total: 5.84s	remaining: 2.05s
222:	learn: 19.0058991	total: 5.86s	remaining: 2.02s
223:	learn: 18.9460485	total: 5.88s	remaining: 2s
224:	learn: 18.9073701	total: 5.92s	remaining: 1.97s
225:	learn: 18.8677507	total: 5.94s	remaining: 1.95s
226:	learn: 18.8163333	total: 5.97s	remaining: 1.92s
227:	learn: 18.7679599	total: 5.99s	remaining: 1.89s
228:	learn: 18.7165756	total: 6.02s	remaining: 1.86s
229:	learn: 18.6605125	total: 6.04s	remaining: 1.84s
230:	learn: 18.6094425	total: 6.06s	remaining: 1.81s
231:	learn: 18.5576484	total: 6.1s	remaining: 1.79s
232:	learn: 18.5012159	total: 6.13s	remaining: 1.76s
233:	learn: 18.4593166	total: 6.16s	remaining: 1.74s
234:	learn: 18.4031765	total: 6.18s	remaining: 1.71s
235:	learn: 18.3459023	total: 6.21s	remaining: 1.68s
236:	learn: 18.3172764	total: 6.23s	remaining: 1.66s
237:	learn: 18.2472206	total: 6.25s	remaining: 1.63s
238:	learn: 18.1862965	total: 6.28s	remaining: 1.6s
239:	learn: 18.1146012	total: 6.31s	remaining: 1.58s
240:	learn: 18.0588447	total: 6.34s	remaining: 1.55s
241:	learn: 17.9987516	total: 6.37s	remaining: 1.53s
242:	learn: 17.9467371	total: 6.4s	remaining: 1.5s
243:	learn: 17.8837781	total: 6.42s	remaining: 1.47s
244:	learn: 17.8212642	total: 6.45s	remaining: 1.45s
245:	learn: 17.7759243	total: 6.47s	remaining: 1.42s
246:	learn: 17.7295650	total: 6.49s	remaining: 1.39s
247:	learn: 17.6805280	total: 6.52s	remaining: 1.37s
248:	learn: 17.6305571	total: 6.55s	remaining: 1.34s
249:	learn: 17.5806734	total: 6.57s	remaining: 1.31s
250:	learn: 17.5364826	total: 6.6s	remaining: 1.29s
251:	learn: 17.4937797	total: 6.63s	remaining: 1.26s
252:	learn: 17.4449942	total: 6.66s	remaining: 1.24s
253:	learn: 17.3822018	total: 6.68s	remaining: 1.21s
254:	learn: 17.3321374	total: 6.71s	remaining: 1.18s
255:	learn: 17.2925645	total: 6.73s	remaining: 1.16s
256:	learn: 17.2538857	total: 6.77s	remaining: 1.13s
257:	learn: 17.2041105	total: 6.79s	remaining: 1.1s
258:	learn: 17.1456541	total: 6.82s	remaining: 1.08s
259:	learn: 17.1038623	total: 6.84s	remaining: 1.05s
260:	learn: 17.0447376	total: 6.87s	remaining: 1.03s
261:	learn: 17.0034981	total: 6.9s	remaining: 1s
262:	learn: 16.9567643	total: 6.92s	remaining: 974ms
263:	learn: 16.9020578	total: 6.95s	remaining: 947ms
264:	learn: 16.8585850	total: 6.98s	remaining: 922ms
265:	learn: 16.8171458	total: 7s	remaining: 895ms
266:	learn: 16.7669542	total: 7.03s	remaining: 869ms
267:	learn: 16.7328560	total: 7.05s	remaining: 842ms
268:	learn: 16.6990433	total: 7.08s	remaining: 816ms
269:	learn: 16.6540554	total: 7.1s	remaining: 789ms
270:	learn: 16.6103987	total: 7.13s	remaining: 763ms
271:	learn: 16.5748192	total: 7.16s	remaining: 737ms
272:	learn: 16.5429372	total: 7.19s	remaining: 711ms
273:	learn: 16.5072397	total: 7.21s	remaining: 685ms
274:	learn: 16.4684978	total: 7.24s	remaining: 658ms
275:	learn: 16.4457766	total: 7.26s	remaining: 632ms
276:	learn: 16.4054138	total: 7.29s	remaining: 605ms
277:	learn: 16.3748248	total: 7.31s	remaining: 579ms
278:	learn: 16.3461752	total: 7.34s	remaining: 552ms
279:	learn: 16.2936436	total: 7.36s	remaining: 526ms
280:	learn: 16.2559779	total: 7.4s	remaining: 500ms
281:	learn: 16.2154264	total: 7.43s	remaining: 474ms
282:	learn: 16.1817521	total: 7.45s	remaining: 448ms
283:	learn: 16.1315295	total: 7.48s	remaining: 421ms
284:	learn: 16.0866868	total: 7.5s	remaining: 395ms
285:	learn: 16.0685868	total: 7.53s	remaining: 368ms
286:	learn: 16.0419346	total: 7.55s	remaining: 342ms
287:	learn: 16.0027886	total: 7.58s	remaining: 316ms
288:	learn: 15.9500871	total: 7.6s	remaining: 289ms
289:	learn: 15.9068464	total: 7.63s	remaining: 263ms
290:	learn: 15.8654849	total: 7.67s	remaining: 237ms
291:	learn: 15.8182506	total: 7.69s	remaining: 211ms
292:	learn: 15.7932566	total: 7.72s	remaining: 184ms
293:	learn: 15.7496330	total: 7.74s	remaining: 158ms
294:	learn: 15.7060484	total: 7.77s	remaining: 132ms
295:	learn: 15.6582263	total: 7.79s	remaining: 105ms
296:	learn: 15.6325770	total: 7.82s	remaining: 79ms
297:	learn: 15.6045661	total: 7.85s	remaining: 52.7ms
298:	learn: 15.5716255	total: 7.88s	remaining: 26.3ms
299:	learn: 15.5476987	total: 7.9s	remaining: 0us
0:	learn: 27.3716363	total: 5.54ms	remaining: 548ms
1:	learn: 26.7586038	total: 9.88ms	remaining: 484ms
2:	learn: 26.1513803	total: 14.5ms	remaining: 469ms
3:	learn: 25.6569249	total: 18.7ms	remaining: 448ms
4:	learn: 25.0448773	total: 23.1ms	remaining: 439ms
5:	learn: 24.6011243	total: 27.7ms	remaining: 434ms
6:	learn: 23.9665913	total: 32.3ms	remaining: 429ms
7:	learn: 23.5201950	total: 36.4ms	remaining: 419ms
8:	learn: 22.9901116	total: 41.2ms	remaining: 416ms
9:	learn: 22.5256710	total: 45.9ms	remaining: 413ms
10:	learn: 22.1598038	total: 50.8ms	remaining: 411ms
11:	learn: 21.7726663	total: 55.5ms	remaining: 407ms
12:	learn: 21.5014839	total: 60.4ms	remaining: 404ms
13:	learn: 21.1063605	total: 65.2ms	remaining: 401ms
14:	learn: 20.7648344	total: 70.1ms	remaining: 397ms
15:	learn: 20.4005501	total: 75.7ms	remaining: 398ms
16:	learn: 20.0308689	total: 83.9ms	remaining: 409ms
17:	learn: 19.7619894	total: 91.4ms	remaining: 417ms
18:	learn: 19.4006982	total: 100ms	remaining: 427ms
19:	learn: 19.1201126	total: 108ms	remaining: 431ms
20:	learn: 18.7774355	total: 113ms	remaining: 426ms
21:	learn: 18.5027646	total: 119ms	remaining: 421ms
22:	learn: 18.1958499	total: 124ms	remaining: 416ms
23:	learn: 18.0191187	total: 129ms	remaining: 409ms
24:	learn: 17.8387270	total: 135ms	remaining: 405ms
25:	learn: 17.5280679	total: 140ms	remaining: 398ms
26:	learn: 17.3062744	total: 145ms	remaining: 393ms
27:	learn: 17.0131776	total: 166ms	remaining: 427ms
28:	learn: 16.7409451	total: 172ms	remaining: 421ms
29:	learn: 16.5094615	total: 177ms	remaining: 412ms
30:	learn: 16.2691858	total: 181ms	remaining: 403ms
31:	learn: 16.0502592	total: 185ms	remaining: 394ms
32:	learn: 15.8734968	total: 190ms	remaining: 385ms
33:	learn: 15.6646527	total: 194ms	remaining: 377ms
34:	learn: 15.5331988	total: 199ms	remaining: 369ms
35:	learn: 15.2505462	total: 203ms	remaining: 361ms
36:	learn: 15.0313064	total: 208ms	remaining: 354ms
37:	learn: 14.8734366	total: 212ms	remaining: 346ms
38:	learn: 14.6699229	total: 217ms	remaining: 339ms
39:	learn: 14.5898168	total: 221ms	remaining: 332ms
40:	learn: 14.4208947	total: 226ms	remaining: 325ms
41:	learn: 14.2850223	total: 231ms	remaining: 318ms
42:	learn: 14.1442724	total: 235ms	remaining: 312ms
43:	learn: 13.9770221	total: 240ms	remaining: 305ms
44:	learn: 13.8778270	total: 244ms	remaining: 299ms
45:	learn: 13.6902000	total: 249ms	remaining: 292ms
46:	learn: 13.5674586	total: 254ms	remaining: 286ms
47:	learn: 13.3835423	total: 259ms	remaining: 280ms
48:	learn: 13.2779430	total: 264ms	remaining: 274ms
49:	learn: 13.1218837	total: 268ms	remaining: 268ms
50:	learn: 13.0063048	total: 273ms	remaining: 262ms
51:	learn: 12.8507410	total: 281ms	remaining: 259ms
52:	learn: 12.7455025	total: 288ms	remaining: 256ms
53:	learn: 12.6261811	total: 297ms	remaining: 253ms
54:	learn: 12.5173579	total: 305ms	remaining: 250ms
55:	learn: 12.4529502	total: 311ms	remaining: 244ms
56:	learn: 12.3944087	total: 316ms	remaining: 238ms
57:	learn: 12.2888055	total: 321ms	remaining: 233ms
58:	learn: 12.1806093	total: 326ms	remaining: 227ms
59:	learn: 12.0712110	total: 332ms	remaining: 221ms
60:	learn: 11.9961171	total: 337ms	remaining: 215ms
61:	learn: 11.8823972	total: 342ms	remaining: 210ms
62:	learn: 11.7943665	total: 348ms	remaining: 204ms
63:	learn: 11.7212181	total: 353ms	remaining: 198ms
64:	learn: 11.6362437	total: 358ms	remaining: 193ms
65:	learn: 11.5522591	total: 363ms	remaining: 187ms
66:	learn: 11.4500175	total: 369ms	remaining: 182ms
67:	learn: 11.3258387	total: 374ms	remaining: 176ms
68:	learn: 11.2482685	total: 379ms	remaining: 170ms
69:	learn: 11.1755209	total: 384ms	remaining: 165ms
70:	learn: 11.0887540	total: 388ms	remaining: 158ms
71:	learn: 11.0054578	total: 393ms	remaining: 153ms
72:	learn: 10.9318991	total: 397ms	remaining: 147ms
73:	learn: 10.8522001	total: 401ms	remaining: 141ms
74:	learn: 10.7674012	total: 405ms	remaining: 135ms
75:	learn: 10.7187991	total: 410ms	remaining: 130ms
76:	learn: 10.6548375	total: 415ms	remaining: 124ms
77:	learn: 10.6095260	total: 419ms	remaining: 118ms
78:	learn: 10.5658533	total: 423ms	remaining: 112ms
79:	learn: 10.5097785	total: 428ms	remaining: 107ms
80:	learn: 10.4527426	total: 433ms	remaining: 102ms
81:	learn: 10.3885391	total: 438ms	remaining: 96.1ms
82:	learn: 10.3299710	total: 443ms	remaining: 90.7ms
83:	learn: 10.2436190	total: 448ms	remaining: 85.3ms
84:	learn: 10.1749078	total: 453ms	remaining: 79.9ms
85:	learn: 10.0946062	total: 458ms	remaining: 74.5ms
86:	learn: 10.0390578	total: 462ms	remaining: 69.1ms
87:	learn: 9.9852955	total: 468ms	remaining: 63.8ms
88:	learn: 9.9302992	total: 475ms	remaining: 58.7ms
89:	learn: 9.8630695	total: 484ms	remaining: 53.8ms
90:	learn: 9.7805856	total: 495ms	remaining: 49ms
91:	learn: 9.7127178	total: 502ms	remaining: 43.6ms
92:	learn: 9.6557593	total: 508ms	remaining: 38.3ms
93:	learn: 9.5921286	total: 514ms	remaining: 32.8ms
94:	learn: 9.5187489	total: 519ms	remaining: 27.3ms
95:	learn: 9.4500955	total: 525ms	remaining: 21.9ms
96:	learn: 9.3834246	total: 530ms	remaining: 16.4ms
97:	learn: 9.3221422	total: 536ms	remaining: 10.9ms
98:	learn: 9.2581494	total: 542ms	remaining: 5.47ms
99:	learn: 9.2021708	total: 548ms	remaining: 0us
0:	learn: 42.4859206	total: 5.34ms	remaining: 529ms
1:	learn: 41.2348392	total: 9.83ms	remaining: 482ms
2:	learn: 39.9044703	total: 14.6ms	remaining: 471ms
3:	learn: 38.6081616	total: 18.9ms	remaining: 454ms
4:	learn: 37.4610571	total: 23.4ms	remaining: 444ms
5:	learn: 36.3390199	total: 28.3ms	remaining: 443ms
6:	learn: 35.1817084	total: 32.7ms	remaining: 434ms
7:	learn: 34.1132574	total: 37ms	remaining: 426ms
8:	learn: 33.4673440	total: 41.6ms	remaining: 421ms
9:	learn: 32.4688388	total: 47.1ms	remaining: 424ms
10:	learn: 31.5801915	total: 52.1ms	remaining: 421ms
11:	learn: 30.7270901	total: 57.1ms	remaining: 419ms
12:	learn: 30.1030598	total: 62.4ms	remaining: 418ms
13:	learn: 29.2931850	total: 63.9ms	remaining: 392ms
14:	learn: 28.5479304	total: 68.8ms	remaining: 390ms
15:	learn: 27.9377772	total: 73.6ms	remaining: 387ms
16:	learn: 27.2217220	total: 83.6ms	remaining: 408ms
17:	learn: 26.5521028	total: 99.8ms	remaining: 455ms
18:	learn: 25.9926990	total: 110ms	remaining: 469ms
19:	learn: 25.3989069	total: 117ms	remaining: 466ms
20:	learn: 24.8440572	total: 122ms	remaining: 459ms
21:	learn: 24.2947764	total: 128ms	remaining: 452ms
22:	learn: 23.7487326	total: 133ms	remaining: 445ms
23:	learn: 23.1892639	total: 139ms	remaining: 439ms
24:	learn: 22.7249056	total: 144ms	remaining: 432ms
25:	learn: 22.2987315	total: 150ms	remaining: 426ms
26:	learn: 21.9065428	total: 155ms	remaining: 420ms
27:	learn: 21.4981889	total: 161ms	remaining: 413ms
28:	learn: 21.0962886	total: 166ms	remaining: 407ms
29:	learn: 20.8295403	total: 172ms	remaining: 401ms
30:	learn: 20.6084828	total: 178ms	remaining: 395ms
31:	learn: 20.2966492	total: 183ms	remaining: 390ms
32:	learn: 19.9841639	total: 188ms	remaining: 382ms
33:	learn: 19.7208663	total: 193ms	remaining: 374ms
34:	learn: 19.4135423	total: 197ms	remaining: 367ms
35:	learn: 19.2034111	total: 202ms	remaining: 360ms
36:	learn: 18.9402581	total: 207ms	remaining: 352ms
37:	learn: 18.7382588	total: 211ms	remaining: 344ms
38:	learn: 18.4705302	total: 215ms	remaining: 337ms
39:	learn: 18.2354107	total: 220ms	remaining: 330ms
40:	learn: 17.9669553	total: 225ms	remaining: 323ms
41:	learn: 17.7329625	total: 229ms	remaining: 317ms
42:	learn: 17.4715711	total: 234ms	remaining: 310ms
43:	learn: 17.2285510	total: 239ms	remaining: 304ms
44:	learn: 17.0261018	total: 243ms	remaining: 297ms
45:	learn: 16.8373998	total: 248ms	remaining: 291ms
46:	learn: 16.6975431	total: 253ms	remaining: 285ms
47:	learn: 16.5029954	total: 258ms	remaining: 280ms
48:	learn: 16.3332890	total: 263ms	remaining: 274ms
49:	learn: 16.1354926	total: 268ms	remaining: 268ms
50:	learn: 16.0073114	total: 273ms	remaining: 262ms
51:	learn: 15.9043247	total: 278ms	remaining: 256ms
52:	learn: 15.7303782	total: 286ms	remaining: 254ms
53:	learn: 15.5560543	total: 293ms	remaining: 250ms
54:	learn: 15.3435331	total: 302ms	remaining: 247ms
55:	learn: 15.2045774	total: 309ms	remaining: 242ms
56:	learn: 15.0609857	total: 315ms	remaining: 238ms
57:	learn: 14.9370901	total: 320ms	remaining: 232ms
58:	learn: 14.8410465	total: 326ms	remaining: 227ms
59:	learn: 14.7081240	total: 332ms	remaining: 221ms
60:	learn: 14.5636282	total: 338ms	remaining: 216ms
61:	learn: 14.4606865	total: 343ms	remaining: 210ms
62:	learn: 14.3731446	total: 349ms	remaining: 205ms
63:	learn: 14.2045145	total: 354ms	remaining: 199ms
64:	learn: 14.0461252	total: 360ms	remaining: 194ms
65:	learn: 13.9195454	total: 365ms	remaining: 188ms
66:	learn: 13.8190753	total: 370ms	remaining: 182ms
67:	learn: 13.7252500	total: 375ms	remaining: 177ms
68:	learn: 13.6566471	total: 381ms	remaining: 171ms
69:	learn: 13.5121693	total: 386ms	remaining: 165ms
70:	learn: 13.4442080	total: 390ms	remaining: 159ms
71:	learn: 13.3279962	total: 394ms	remaining: 153ms
72:	learn: 13.2456458	total: 399ms	remaining: 148ms
73:	learn: 13.1417720	total: 404ms	remaining: 142ms
74:	learn: 13.0795807	total: 408ms	remaining: 136ms
75:	learn: 12.9858298	total: 413ms	remaining: 130ms
76:	learn: 12.9193581	total: 417ms	remaining: 125ms
77:	learn: 12.8008737	total: 422ms	remaining: 119ms
78:	learn: 12.7215618	total: 426ms	remaining: 113ms
79:	learn: 12.6252386	total: 431ms	remaining: 108ms
80:	learn: 12.5456193	total: 436ms	remaining: 102ms
81:	learn: 12.4550597	total: 440ms	remaining: 96.7ms
82:	learn: 12.3684000	total: 445ms	remaining: 91.2ms
83:	learn: 12.2904435	total: 450ms	remaining: 85.7ms
84:	learn: 12.2128737	total: 455ms	remaining: 80.2ms
85:	learn: 12.1069589	total: 460ms	remaining: 74.8ms
86:	learn: 11.9975688	total: 465ms	remaining: 69.4ms
87:	learn: 11.9113686	total: 474ms	remaining: 64.6ms
88:	learn: 11.8489375	total: 481ms	remaining: 59.4ms
89:	learn: 11.7446095	total: 489ms	remaining: 54.3ms
90:	learn: 11.6793247	total: 495ms	remaining: 49ms
91:	learn: 11.6120227	total: 501ms	remaining: 43.6ms
92:	learn: 11.5559096	total: 511ms	remaining: 38.5ms
93:	learn: 11.5063069	total: 517ms	remaining: 33ms
94:	learn: 11.4776305	total: 522ms	remaining: 27.5ms
95:	learn: 11.4163720	total: 528ms	remaining: 22ms
96:	learn: 11.3547170	total: 533ms	remaining: 16.5ms
97:	learn: 11.2947704	total: 539ms	remaining: 11ms
98:	learn: 11.2120192	total: 558ms	remaining: 5.63ms
99:	learn: 11.1607467	total: 563ms	remaining: 0us
0:	learn: 46.2258117	total: 9.93ms	remaining: 983ms
1:	learn: 45.1972950	total: 15.1ms	remaining: 739ms
2:	learn: 43.7957357	total: 19.8ms	remaining: 639ms
3:	learn: 42.5777391	total: 24.5ms	remaining: 588ms
4:	learn: 41.5327833	total: 29.1ms	remaining: 553ms
5:	learn: 40.4435276	total: 33.5ms	remaining: 524ms
6:	learn: 39.4670075	total: 38.2ms	remaining: 507ms
7:	learn: 38.7108484	total: 43ms	remaining: 494ms
8:	learn: 38.1402654	total: 48ms	remaining: 485ms
9:	learn: 37.2648485	total: 52.8ms	remaining: 475ms
10:	learn: 36.4694198	total: 57.6ms	remaining: 466ms
11:	learn: 35.5168067	total: 62.5ms	remaining: 458ms
12:	learn: 34.7782207	total: 67.6ms	remaining: 452ms
13:	learn: 33.9839024	total: 74ms	remaining: 454ms
14:	learn: 33.2222232	total: 81.3ms	remaining: 461ms
15:	learn: 32.4007311	total: 90.7ms	remaining: 476ms
16:	learn: 31.6552844	total: 98.5ms	remaining: 481ms
17:	learn: 30.9799186	total: 106ms	remaining: 484ms
18:	learn: 30.2888540	total: 112ms	remaining: 476ms
19:	learn: 29.7032334	total: 117ms	remaining: 468ms
20:	learn: 29.2886252	total: 122ms	remaining: 460ms
21:	learn: 28.7682793	total: 128ms	remaining: 453ms
22:	learn: 28.4016143	total: 133ms	remaining: 445ms
23:	learn: 27.6630864	total: 138ms	remaining: 438ms
24:	learn: 27.2033858	total: 144ms	remaining: 431ms
25:	learn: 26.5935061	total: 149ms	remaining: 424ms
26:	learn: 26.1389740	total: 154ms	remaining: 417ms
27:	learn: 25.7937555	total: 159ms	remaining: 409ms
28:	learn: 25.4247732	total: 164ms	remaining: 401ms
29:	learn: 24.9684460	total: 169ms	remaining: 395ms
30:	learn: 24.5885923	total: 175ms	remaining: 390ms
31:	learn: 24.2703978	total: 179ms	remaining: 381ms
32:	learn: 23.8387638	total: 184ms	remaining: 374ms
33:	learn: 23.6317607	total: 189ms	remaining: 367ms
34:	learn: 23.3263085	total: 193ms	remaining: 359ms
35:	learn: 22.9960495	total: 198ms	remaining: 352ms
36:	learn: 22.6616330	total: 202ms	remaining: 344ms
37:	learn: 22.1801596	total: 207ms	remaining: 338ms
38:	learn: 21.8114556	total: 212ms	remaining: 331ms
39:	learn: 21.5714330	total: 216ms	remaining: 324ms
40:	learn: 21.1089354	total: 221ms	remaining: 317ms
41:	learn: 20.8040772	total: 225ms	remaining: 311ms
42:	learn: 20.4965159	total: 230ms	remaining: 305ms
43:	learn: 20.2898724	total: 235ms	remaining: 299ms
44:	learn: 20.0169420	total: 240ms	remaining: 293ms
45:	learn: 19.8348803	total: 244ms	remaining: 287ms
46:	learn: 19.5554754	total: 249ms	remaining: 281ms
47:	learn: 19.2782294	total: 254ms	remaining: 275ms
48:	learn: 19.0395772	total: 259ms	remaining: 270ms
49:	learn: 18.7983211	total: 264ms	remaining: 264ms
50:	learn: 18.6396276	total: 268ms	remaining: 258ms
51:	learn: 18.4535258	total: 277ms	remaining: 255ms
52:	learn: 18.2777199	total: 284ms	remaining: 252ms
53:	learn: 18.0572244	total: 294ms	remaining: 250ms
54:	learn: 17.8213238	total: 301ms	remaining: 246ms
55:	learn: 17.5926067	total: 307ms	remaining: 241ms
56:	learn: 17.3990115	total: 312ms	remaining: 236ms
57:	learn: 17.2444936	total: 318ms	remaining: 230ms
58:	learn: 17.0900496	total: 324ms	remaining: 225ms
59:	learn: 16.8497932	total: 331ms	remaining: 220ms
60:	learn: 16.7335122	total: 337ms	remaining: 215ms
61:	learn: 16.5285847	total: 342ms	remaining: 210ms
62:	learn: 16.4326012	total: 348ms	remaining: 204ms
63:	learn: 16.2977130	total: 353ms	remaining: 199ms
64:	learn: 16.1876309	total: 358ms	remaining: 193ms
65:	learn: 16.0948338	total: 364ms	remaining: 188ms
66:	learn: 15.9055478	total: 370ms	remaining: 182ms
67:	learn: 15.8244487	total: 375ms	remaining: 177ms
68:	learn: 15.6064385	total: 379ms	remaining: 170ms
69:	learn: 15.4574801	total: 384ms	remaining: 165ms
70:	learn: 15.4064312	total: 388ms	remaining: 159ms
71:	learn: 15.2463289	total: 393ms	remaining: 153ms
72:	learn: 15.1083967	total: 397ms	remaining: 147ms
73:	learn: 14.8909334	total: 402ms	remaining: 141ms
74:	learn: 14.7646415	total: 406ms	remaining: 135ms
75:	learn: 14.6847350	total: 411ms	remaining: 130ms
76:	learn: 14.5941501	total: 415ms	remaining: 124ms
77:	learn: 14.5049987	total: 420ms	remaining: 118ms
78:	learn: 14.4043748	total: 425ms	remaining: 113ms
79:	learn: 14.2633292	total: 429ms	remaining: 107ms
80:	learn: 14.1257360	total: 434ms	remaining: 102ms
81:	learn: 14.0626940	total: 454ms	remaining: 99.6ms
82:	learn: 13.9429889	total: 459ms	remaining: 93.9ms
83:	learn: 13.8834534	total: 463ms	remaining: 88.2ms
84:	learn: 13.7361899	total: 468ms	remaining: 82.6ms
85:	learn: 13.6473170	total: 477ms	remaining: 77.6ms
86:	learn: 13.5168963	total: 486ms	remaining: 72.6ms
87:	learn: 13.3778373	total: 494ms	remaining: 67.4ms
88:	learn: 13.2827073	total: 503ms	remaining: 62.2ms
89:	learn: 13.1962748	total: 509ms	remaining: 56.6ms
90:	learn: 13.1317634	total: 515ms	remaining: 50.9ms
91:	learn: 12.9996032	total: 520ms	remaining: 45.2ms
92:	learn: 12.8843393	total: 526ms	remaining: 39.6ms
93:	learn: 12.8187378	total: 532ms	remaining: 33.9ms
94:	learn: 12.7176304	total: 537ms	remaining: 28.3ms
95:	learn: 12.6420924	total: 542ms	remaining: 22.6ms
96:	learn: 12.5500097	total: 549ms	remaining: 17ms
97:	learn: 12.4837866	total: 554ms	remaining: 11.3ms
98:	learn: 12.3597911	total: 559ms	remaining: 5.65ms
99:	learn: 12.2792795	total: 565ms	remaining: 0us
0:	learn: 45.8627255	total: 2.13ms	remaining: 211ms
1:	learn: 44.8162174	total: 6.91ms	remaining: 339ms
2:	learn: 43.9865430	total: 11.3ms	remaining: 366ms
3:	learn: 42.9919872	total: 15.9ms	remaining: 381ms
4:	learn: 41.8902122	total: 20.2ms	remaining: 384ms
5:	learn: 41.0496461	total: 24.7ms	remaining: 387ms
6:	learn: 40.0946649	total: 29.5ms	remaining: 392ms
7:	learn: 39.3893186	total: 34.4ms	remaining: 395ms
8:	learn: 38.5282166	total: 39.3ms	remaining: 397ms
9:	learn: 37.5895258	total: 44.2ms	remaining: 397ms
10:	learn: 36.7137467	total: 49.2ms	remaining: 398ms
11:	learn: 35.7818300	total: 54.2ms	remaining: 397ms
12:	learn: 34.8459255	total: 59.2ms	remaining: 396ms
13:	learn: 34.2225882	total: 65.4ms	remaining: 402ms
14:	learn: 33.4045891	total: 73.5ms	remaining: 417ms
15:	learn: 32.7931441	total: 82.1ms	remaining: 431ms
16:	learn: 32.2009164	total: 89ms	remaining: 435ms
17:	learn: 31.4431417	total: 96.6ms	remaining: 440ms
18:	learn: 30.6940787	total: 102ms	remaining: 435ms
19:	learn: 30.2032085	total: 108ms	remaining: 431ms
20:	learn: 29.6620038	total: 113ms	remaining: 424ms
21:	learn: 29.1329122	total: 118ms	remaining: 419ms
22:	learn: 28.9285069	total: 124ms	remaining: 413ms
23:	learn: 28.2773846	total: 129ms	remaining: 408ms
24:	learn: 27.6312201	total: 134ms	remaining: 403ms
25:	learn: 27.1224449	total: 140ms	remaining: 399ms
26:	learn: 26.7129115	total: 145ms	remaining: 393ms
27:	learn: 26.2030118	total: 150ms	remaining: 387ms
28:	learn: 25.8449000	total: 156ms	remaining: 382ms
29:	learn: 25.3832705	total: 162ms	remaining: 377ms
30:	learn: 24.9797913	total: 167ms	remaining: 372ms
31:	learn: 24.7190041	total: 172ms	remaining: 365ms
32:	learn: 24.4139846	total: 176ms	remaining: 358ms
33:	learn: 24.0085081	total: 181ms	remaining: 351ms
34:	learn: 23.7092621	total: 185ms	remaining: 344ms
35:	learn: 23.4620026	total: 190ms	remaining: 337ms
36:	learn: 23.0924724	total: 194ms	remaining: 331ms
37:	learn: 22.6471910	total: 199ms	remaining: 324ms
38:	learn: 22.3422405	total: 203ms	remaining: 318ms
39:	learn: 22.0391348	total: 208ms	remaining: 311ms
40:	learn: 21.7653773	total: 212ms	remaining: 306ms
41:	learn: 21.4652025	total: 217ms	remaining: 300ms
42:	learn: 21.1937288	total: 221ms	remaining: 294ms
43:	learn: 20.9481301	total: 226ms	remaining: 287ms
44:	learn: 20.7022718	total: 231ms	remaining: 282ms
45:	learn: 20.6128483	total: 235ms	remaining: 276ms
46:	learn: 20.5444203	total: 240ms	remaining: 271ms
47:	learn: 20.2652868	total: 245ms	remaining: 266ms
48:	learn: 20.0465015	total: 250ms	remaining: 260ms
49:	learn: 19.8485858	total: 255ms	remaining: 255ms
50:	learn: 19.6218360	total: 260ms	remaining: 250ms
51:	learn: 19.4340385	total: 268ms	remaining: 247ms
52:	learn: 19.2755253	total: 275ms	remaining: 244ms
53:	learn: 19.1513895	total: 285ms	remaining: 242ms
54:	learn: 18.9926498	total: 290ms	remaining: 238ms
55:	learn: 18.9138819	total: 298ms	remaining: 234ms
56:	learn: 18.7601521	total: 303ms	remaining: 228ms
57:	learn: 18.5383747	total: 308ms	remaining: 223ms
58:	learn: 18.3203725	total: 314ms	remaining: 218ms
59:	learn: 18.1486463	total: 319ms	remaining: 213ms
60:	learn: 18.0745744	total: 324ms	remaining: 207ms
61:	learn: 17.9860471	total: 329ms	remaining: 202ms
62:	learn: 17.8554657	total: 335ms	remaining: 197ms
63:	learn: 17.7725698	total: 340ms	remaining: 191ms
64:	learn: 17.6461546	total: 346ms	remaining: 186ms
65:	learn: 17.4876253	total: 351ms	remaining: 181ms
66:	learn: 17.3902491	total: 356ms	remaining: 175ms
67:	learn: 17.3074315	total: 361ms	remaining: 170ms
68:	learn: 17.1916970	total: 367ms	remaining: 165ms
69:	learn: 17.0036214	total: 371ms	remaining: 159ms
70:	learn: 16.9063477	total: 376ms	remaining: 154ms
71:	learn: 16.7543840	total: 380ms	remaining: 148ms
72:	learn: 16.5926263	total: 385ms	remaining: 142ms
73:	learn: 16.4828353	total: 390ms	remaining: 137ms
74:	learn: 16.3669301	total: 394ms	remaining: 131ms
75:	learn: 16.2378249	total: 398ms	remaining: 126ms
76:	learn: 16.1357752	total: 403ms	remaining: 120ms
77:	learn: 16.0178742	total: 407ms	remaining: 115ms
78:	learn: 15.9116966	total: 412ms	remaining: 109ms
79:	learn: 15.7262830	total: 416ms	remaining: 104ms
80:	learn: 15.7159723	total: 417ms	remaining: 97.7ms
81:	learn: 15.5586375	total: 421ms	remaining: 92.5ms
82:	learn: 15.4694360	total: 425ms	remaining: 87.1ms
83:	learn: 15.3275068	total: 430ms	remaining: 82ms
84:	learn: 15.1629281	total: 435ms	remaining: 76.8ms
85:	learn: 15.0586873	total: 440ms	remaining: 71.6ms
86:	learn: 14.9760174	total: 445ms	remaining: 66.4ms
87:	learn: 14.8800618	total: 449ms	remaining: 61.3ms
88:	learn: 14.7766054	total: 455ms	remaining: 56.2ms
89:	learn: 14.6906406	total: 459ms	remaining: 51ms
90:	learn: 14.6034436	total: 476ms	remaining: 47.1ms
91:	learn: 14.5330407	total: 485ms	remaining: 42.2ms
92:	learn: 14.5039218	total: 491ms	remaining: 36.9ms
93:	learn: 14.4182642	total: 496ms	remaining: 31.7ms
94:	learn: 14.3711363	total: 502ms	remaining: 26.4ms
95:	learn: 14.2590638	total: 507ms	remaining: 21.1ms
96:	learn: 14.1640312	total: 512ms	remaining: 15.8ms
97:	learn: 14.0693305	total: 517ms	remaining: 10.6ms
98:	learn: 13.9520103	total: 522ms	remaining: 5.28ms
99:	learn: 13.8600248	total: 528ms	remaining: 0us
0:	learn: 46.3790355	total: 5.22ms	remaining: 517ms
1:	learn: 44.9322264	total: 9.69ms	remaining: 475ms
2:	learn: 43.6452304	total: 14.2ms	remaining: 460ms
3:	learn: 42.6058006	total: 18.6ms	remaining: 446ms
4:	learn: 41.4421922	total: 23.6ms	remaining: 448ms
5:	learn: 40.4565773	total: 28.3ms	remaining: 443ms
6:	learn: 39.3776917	total: 32.8ms	remaining: 436ms
7:	learn: 38.4003857	total: 37.8ms	remaining: 435ms
8:	learn: 37.4288067	total: 42.5ms	remaining: 430ms
9:	learn: 36.5623656	total: 47ms	remaining: 423ms
10:	learn: 35.7389643	total: 52ms	remaining: 421ms
11:	learn: 34.7960924	total: 57.3ms	remaining: 420ms
12:	learn: 34.0156187	total: 62.1ms	remaining: 416ms
13:	learn: 33.2702023	total: 66.8ms	remaining: 411ms
14:	learn: 32.7554868	total: 71.8ms	remaining: 407ms
15:	learn: 32.0395687	total: 77.3ms	remaining: 406ms
16:	learn: 31.4793803	total: 82.4ms	remaining: 402ms
17:	learn: 30.8770173	total: 89.6ms	remaining: 408ms
18:	learn: 30.3071701	total: 98.3ms	remaining: 419ms
19:	learn: 29.6256037	total: 109ms	remaining: 437ms
20:	learn: 29.1224077	total: 118ms	remaining: 445ms
21:	learn: 28.6312349	total: 125ms	remaining: 442ms
22:	learn: 28.2178229	total: 131ms	remaining: 438ms
23:	learn: 27.8751859	total: 137ms	remaining: 433ms
24:	learn: 27.5885656	total: 143ms	remaining: 428ms
25:	learn: 27.3828327	total: 161ms	remaining: 457ms
26:	learn: 27.1654356	total: 166ms	remaining: 449ms
27:	learn: 26.6705724	total: 171ms	remaining: 441ms
28:	learn: 26.2420935	total: 177ms	remaining: 432ms
29:	learn: 25.9314906	total: 182ms	remaining: 424ms
30:	learn: 25.4679909	total: 187ms	remaining: 417ms
31:	learn: 25.0442298	total: 193ms	remaining: 409ms
32:	learn: 24.8946212	total: 197ms	remaining: 401ms
33:	learn: 24.4858057	total: 202ms	remaining: 391ms
34:	learn: 24.1558048	total: 206ms	remaining: 382ms
35:	learn: 23.8344043	total: 210ms	remaining: 374ms
36:	learn: 23.5433295	total: 215ms	remaining: 366ms
37:	learn: 23.1976742	total: 220ms	remaining: 358ms
38:	learn: 22.9284547	total: 224ms	remaining: 351ms
39:	learn: 22.8228111	total: 229ms	remaining: 343ms
40:	learn: 22.5248890	total: 233ms	remaining: 335ms
41:	learn: 22.2473427	total: 238ms	remaining: 328ms
42:	learn: 21.9883370	total: 242ms	remaining: 321ms
43:	learn: 21.7825052	total: 246ms	remaining: 314ms
44:	learn: 21.5752155	total: 251ms	remaining: 306ms
45:	learn: 21.3418301	total: 256ms	remaining: 300ms
46:	learn: 21.1437594	total: 260ms	remaining: 293ms
47:	learn: 21.0215777	total: 265ms	remaining: 287ms
48:	learn: 20.7473432	total: 270ms	remaining: 281ms
49:	learn: 20.4823805	total: 274ms	remaining: 274ms
50:	learn: 20.3609754	total: 279ms	remaining: 268ms
51:	learn: 20.2403089	total: 284ms	remaining: 262ms
52:	learn: 20.1310909	total: 290ms	remaining: 257ms
53:	learn: 19.9330687	total: 298ms	remaining: 254ms
54:	learn: 19.7246810	total: 307ms	remaining: 251ms
55:	learn: 19.5252152	total: 313ms	remaining: 246ms
56:	learn: 19.3485723	total: 319ms	remaining: 241ms
57:	learn: 19.1619803	total: 325ms	remaining: 235ms
58:	learn: 19.0365136	total: 330ms	remaining: 229ms
59:	learn: 18.8921146	total: 335ms	remaining: 223ms
60:	learn: 18.7924351	total: 339ms	remaining: 217ms
61:	learn: 18.5856121	total: 344ms	remaining: 211ms
62:	learn: 18.3782831	total: 349ms	remaining: 205ms
63:	learn: 18.2642221	total: 354ms	remaining: 199ms
64:	learn: 18.1420774	total: 358ms	remaining: 193ms
65:	learn: 17.9430729	total: 363ms	remaining: 187ms
66:	learn: 17.7334985	total: 367ms	remaining: 181ms
67:	learn: 17.6005273	total: 372ms	remaining: 175ms
68:	learn: 17.5129366	total: 376ms	remaining: 169ms
69:	learn: 17.4066411	total: 381ms	remaining: 163ms
70:	learn: 17.2755069	total: 386ms	remaining: 158ms
71:	learn: 17.1544654	total: 390ms	remaining: 152ms
72:	learn: 17.0271914	total: 395ms	remaining: 146ms
73:	learn: 16.9474801	total: 399ms	remaining: 140ms
74:	learn: 16.8579544	total: 404ms	remaining: 135ms
75:	learn: 16.7574463	total: 408ms	remaining: 129ms
76:	learn: 16.6586906	total: 413ms	remaining: 123ms
77:	learn: 16.5365221	total: 417ms	remaining: 118ms
78:	learn: 16.4109716	total: 422ms	remaining: 112ms
79:	learn: 16.2533395	total: 426ms	remaining: 107ms
80:	learn: 16.1257882	total: 431ms	remaining: 101ms
81:	learn: 16.0234034	total: 437ms	remaining: 95.8ms
82:	learn: 15.8574011	total: 442ms	remaining: 90.4ms
83:	learn: 15.7737788	total: 446ms	remaining: 84.9ms
84:	learn: 15.6806864	total: 450ms	remaining: 79.5ms
85:	learn: 15.5807484	total: 455ms	remaining: 74.1ms
86:	learn: 15.4928987	total: 461ms	remaining: 68.8ms
87:	learn: 15.4321572	total: 466ms	remaining: 63.5ms
88:	learn: 15.3722788	total: 471ms	remaining: 58.2ms
89:	learn: 15.2571272	total: 476ms	remaining: 52.9ms
90:	learn: 15.1198109	total: 481ms	remaining: 47.6ms
91:	learn: 15.0009209	total: 486ms	remaining: 42.2ms
92:	learn: 14.8967484	total: 495ms	remaining: 37.2ms
93:	learn: 14.8348358	total: 502ms	remaining: 32.1ms
94:	learn: 14.7607641	total: 511ms	remaining: 26.9ms
95:	learn: 14.5887689	total: 518ms	remaining: 21.6ms
96:	learn: 14.4962918	total: 524ms	remaining: 16.2ms
97:	learn: 14.4172436	total: 530ms	remaining: 10.8ms
98:	learn: 14.3676018	total: 535ms	remaining: 5.41ms
99:	learn: 14.2868270	total: 541ms	remaining: 0us
0:	learn: 27.3776612	total: 20.1ms	remaining: 1.99s
1:	learn: 26.7619003	total: 40.3ms	remaining: 1.97s
2:	learn: 26.0057626	total: 62.3ms	remaining: 2.02s
3:	learn: 25.4280982	total: 83.8ms	remaining: 2.01s
4:	learn: 24.8347609	total: 110ms	remaining: 2.09s
5:	learn: 24.2526574	total: 138ms	remaining: 2.15s
6:	learn: 23.7478806	total: 161ms	remaining: 2.14s
7:	learn: 23.2677666	total: 182ms	remaining: 2.09s
8:	learn: 22.7564310	total: 204ms	remaining: 2.06s
9:	learn: 22.2873770	total: 226ms	remaining: 2.03s
10:	learn: 21.8088174	total: 245ms	remaining: 1.98s
11:	learn: 21.4086875	total: 265ms	remaining: 1.94s
12:	learn: 20.9489217	total: 284ms	remaining: 1.9s
13:	learn: 20.4585233	total: 306ms	remaining: 1.88s
14:	learn: 20.0177760	total: 328ms	remaining: 1.86s
15:	learn: 19.5981890	total: 359ms	remaining: 1.89s
16:	learn: 19.2041885	total: 382ms	remaining: 1.86s
17:	learn: 18.8422550	total: 405ms	remaining: 1.84s
18:	learn: 18.4774037	total: 428ms	remaining: 1.82s
19:	learn: 18.0931699	total: 450ms	remaining: 1.8s
20:	learn: 17.6856423	total: 473ms	remaining: 1.78s
21:	learn: 17.3394010	total: 492ms	remaining: 1.75s
22:	learn: 17.0165204	total: 513ms	remaining: 1.72s
23:	learn: 16.7728230	total: 539ms	remaining: 1.71s
24:	learn: 16.5020155	total: 568ms	remaining: 1.7s
25:	learn: 16.2110813	total: 594ms	remaining: 1.69s
26:	learn: 15.9439416	total: 617ms	remaining: 1.67s
27:	learn: 15.6605702	total: 640ms	remaining: 1.64s
28:	learn: 15.4180978	total: 662ms	remaining: 1.62s
29:	learn: 15.1463921	total: 684ms	remaining: 1.6s
30:	learn: 14.8961946	total: 703ms	remaining: 1.56s
31:	learn: 14.6763296	total: 725ms	remaining: 1.54s
32:	learn: 14.4161484	total: 746ms	remaining: 1.51s
33:	learn: 14.1748686	total: 767ms	remaining: 1.49s
34:	learn: 13.9722494	total: 801ms	remaining: 1.49s
35:	learn: 13.7632896	total: 826ms	remaining: 1.47s
36:	learn: 13.5572592	total: 849ms	remaining: 1.45s
37:	learn: 13.3896577	total: 872ms	remaining: 1.42s
38:	learn: 13.2796441	total: 896ms	remaining: 1.4s
39:	learn: 13.0896679	total: 917ms	remaining: 1.37s
40:	learn: 12.8898238	total: 936ms	remaining: 1.35s
41:	learn: 12.6824069	total: 956ms	remaining: 1.32s
42:	learn: 12.5459667	total: 978ms	remaining: 1.3s
43:	learn: 12.3859203	total: 1s	remaining: 1.28s
44:	learn: 12.2099364	total: 1.03s	remaining: 1.26s
45:	learn: 12.0649044	total: 1.05s	remaining: 1.24s
46:	learn: 11.8934147	total: 1.08s	remaining: 1.21s
47:	learn: 11.7212144	total: 1.1s	remaining: 1.19s
48:	learn: 11.5585360	total: 1.12s	remaining: 1.17s
49:	learn: 11.4204354	total: 1.14s	remaining: 1.14s
50:	learn: 11.3264427	total: 1.16s	remaining: 1.12s
51:	learn: 11.2063486	total: 1.18s	remaining: 1.09s
52:	learn: 11.0712206	total: 1.22s	remaining: 1.08s
53:	learn: 10.9205088	total: 1.24s	remaining: 1.06s
54:	learn: 10.8155412	total: 1.26s	remaining: 1.03s
55:	learn: 10.7286854	total: 1.29s	remaining: 1.01s
56:	learn: 10.6088466	total: 1.31s	remaining: 988ms
57:	learn: 10.4999885	total: 1.33s	remaining: 965ms
58:	learn: 10.4022194	total: 1.35s	remaining: 940ms
59:	learn: 10.3147130	total: 1.37s	remaining: 915ms
60:	learn: 10.2011489	total: 1.4s	remaining: 892ms
61:	learn: 10.1094372	total: 1.42s	remaining: 872ms
62:	learn: 10.0248970	total: 1.45s	remaining: 851ms
63:	learn: 9.9192710	total: 1.47s	remaining: 828ms
64:	learn: 9.8577360	total: 1.49s	remaining: 805ms
65:	learn: 9.7737103	total: 1.52s	remaining: 782ms
66:	learn: 9.6706617	total: 1.54s	remaining: 759ms
67:	learn: 9.6042727	total: 1.56s	remaining: 735ms
68:	learn: 9.5355377	total: 1.58s	remaining: 711ms
69:	learn: 9.4615216	total: 1.6s	remaining: 687ms
70:	learn: 9.3702045	total: 1.62s	remaining: 664ms
71:	learn: 9.3035392	total: 1.66s	remaining: 644ms
72:	learn: 9.2322686	total: 1.68s	remaining: 621ms
73:	learn: 9.1431916	total: 1.7s	remaining: 597ms
74:	learn: 9.0869466	total: 1.72s	remaining: 574ms
75:	learn: 9.0117390	total: 1.74s	remaining: 550ms
76:	learn: 8.9580443	total: 1.76s	remaining: 527ms
77:	learn: 8.8649939	total: 1.78s	remaining: 503ms
78:	learn: 8.7792713	total: 1.8s	remaining: 479ms
79:	learn: 8.7164606	total: 1.82s	remaining: 456ms
80:	learn: 8.6340559	total: 1.85s	remaining: 433ms
81:	learn: 8.5697104	total: 1.88s	remaining: 412ms
82:	learn: 8.5273758	total: 1.9s	remaining: 389ms
83:	learn: 8.4394788	total: 1.92s	remaining: 366ms
84:	learn: 8.3672415	total: 1.94s	remaining: 342ms
85:	learn: 8.2813444	total: 1.96s	remaining: 320ms
86:	learn: 8.1994983	total: 1.98s	remaining: 296ms
87:	learn: 8.1003577	total: 2s	remaining: 273ms
88:	learn: 8.0501976	total: 2.02s	remaining: 249ms
89:	learn: 7.9718830	total: 2.04s	remaining: 227ms
90:	learn: 7.9114534	total: 2.06s	remaining: 204ms
91:	learn: 7.8319856	total: 2.09s	remaining: 182ms
92:	learn: 7.7731246	total: 2.11s	remaining: 159ms
93:	learn: 7.7165850	total: 2.13s	remaining: 136ms
94:	learn: 7.6448498	total: 2.15s	remaining: 113ms
95:	learn: 7.5709919	total: 2.18s	remaining: 90.7ms
96:	learn: 7.5184082	total: 2.2s	remaining: 67.9ms
97:	learn: 7.4786866	total: 2.21s	remaining: 45.2ms
98:	learn: 7.4301201	total: 2.23s	remaining: 22.6ms
99:	learn: 7.3416932	total: 2.25s	remaining: 0us
0:	learn: 42.6391731	total: 21.6ms	remaining: 2.13s
1:	learn: 41.2755994	total: 42.7ms	remaining: 2.09s
2:	learn: 40.1418308	total: 64ms	remaining: 2.07s
3:	learn: 38.9707156	total: 83.7ms	remaining: 2.01s
4:	learn: 37.8723622	total: 103ms	remaining: 1.95s
5:	learn: 36.6981834	total: 121ms	remaining: 1.9s
6:	learn: 35.6210108	total: 140ms	remaining: 1.86s
7:	learn: 34.5154078	total: 162ms	remaining: 1.86s
8:	learn: 33.4581011	total: 184ms	remaining: 1.86s
9:	learn: 32.5872455	total: 216ms	remaining: 1.95s
10:	learn: 31.6311510	total: 239ms	remaining: 1.93s
11:	learn: 30.8222401	total: 260ms	remaining: 1.91s
12:	learn: 29.9305192	total: 282ms	remaining: 1.89s
13:	learn: 29.0742133	total: 305ms	remaining: 1.87s
14:	learn: 28.3687544	total: 327ms	remaining: 1.85s
15:	learn: 27.5730558	total: 347ms	remaining: 1.82s
16:	learn: 26.9376082	total: 367ms	remaining: 1.79s
17:	learn: 26.2254949	total: 389ms	remaining: 1.77s
18:	learn: 25.5974939	total: 413ms	remaining: 1.76s
19:	learn: 25.0097187	total: 442ms	remaining: 1.77s
20:	learn: 24.3722243	total: 463ms	remaining: 1.74s
21:	learn: 23.8249140	total: 485ms	remaining: 1.72s
22:	learn: 23.3953969	total: 505ms	remaining: 1.69s
23:	learn: 22.8726238	total: 528ms	remaining: 1.67s
24:	learn: 22.3407723	total: 549ms	remaining: 1.65s
25:	learn: 21.8360330	total: 569ms	remaining: 1.62s
26:	learn: 21.4050665	total: 572ms	remaining: 1.54s
27:	learn: 20.9389245	total: 592ms	remaining: 1.52s
28:	learn: 20.5166767	total: 614ms	remaining: 1.5s
29:	learn: 20.1190641	total: 643ms	remaining: 1.5s
30:	learn: 19.7189491	total: 668ms	remaining: 1.49s
31:	learn: 19.3748181	total: 690ms	remaining: 1.47s
32:	learn: 19.0116312	total: 711ms	remaining: 1.44s
33:	learn: 18.6982407	total: 733ms	remaining: 1.42s
34:	learn: 18.3109965	total: 753ms	remaining: 1.4s
35:	learn: 17.9620798	total: 772ms	remaining: 1.37s
36:	learn: 17.6396740	total: 791ms	remaining: 1.35s
37:	learn: 17.3596962	total: 813ms	remaining: 1.33s
38:	learn: 17.0107107	total: 838ms	remaining: 1.31s
39:	learn: 16.7000770	total: 866ms	remaining: 1.3s
40:	learn: 16.4406609	total: 878ms	remaining: 1.26s
41:	learn: 16.2482533	total: 900ms	remaining: 1.24s
42:	learn: 16.0039366	total: 922ms	remaining: 1.22s
43:	learn: 15.7538572	total: 945ms	remaining: 1.2s
44:	learn: 15.5095380	total: 964ms	remaining: 1.18s
45:	learn: 15.2678319	total: 985ms	remaining: 1.16s
46:	learn: 15.0494495	total: 1s	remaining: 1.13s
47:	learn: 14.8347400	total: 1.03s	remaining: 1.11s
48:	learn: 14.6035398	total: 1.06s	remaining: 1.1s
49:	learn: 14.3913639	total: 1.08s	remaining: 1.08s
50:	learn: 14.1928022	total: 1.11s	remaining: 1.06s
51:	learn: 13.9985580	total: 1.13s	remaining: 1.04s
52:	learn: 13.8322220	total: 1.16s	remaining: 1.02s
53:	learn: 13.6455937	total: 1.18s	remaining: 1s
54:	learn: 13.4402019	total: 1.2s	remaining: 982ms
55:	learn: 13.2899163	total: 1.22s	remaining: 960ms
56:	learn: 13.1694614	total: 1.25s	remaining: 940ms
57:	learn: 13.0722892	total: 1.28s	remaining: 925ms
58:	learn: 12.9065251	total: 1.3s	remaining: 905ms
59:	learn: 12.6992885	total: 1.32s	remaining: 883ms
60:	learn: 12.5384562	total: 1.35s	remaining: 862ms
61:	learn: 12.4105591	total: 1.37s	remaining: 840ms
62:	learn: 12.2952504	total: 1.39s	remaining: 818ms
63:	learn: 12.1427365	total: 1.41s	remaining: 795ms
64:	learn: 11.9954361	total: 1.44s	remaining: 773ms
65:	learn: 11.8161234	total: 1.46s	remaining: 751ms
66:	learn: 11.6849978	total: 1.49s	remaining: 735ms
67:	learn: 11.5405300	total: 1.51s	remaining: 713ms
68:	learn: 11.3806762	total: 1.54s	remaining: 691ms
69:	learn: 11.2746848	total: 1.56s	remaining: 670ms
70:	learn: 11.1518256	total: 1.59s	remaining: 648ms
71:	learn: 11.0730779	total: 1.61s	remaining: 626ms
72:	learn: 10.9736725	total: 1.63s	remaining: 603ms
73:	learn: 10.8430563	total: 1.65s	remaining: 580ms
74:	learn: 10.7142220	total: 1.68s	remaining: 559ms
75:	learn: 10.6141640	total: 1.7s	remaining: 538ms
76:	learn: 10.5264853	total: 1.73s	remaining: 516ms
77:	learn: 10.3929390	total: 1.75s	remaining: 493ms
78:	learn: 10.3163176	total: 1.77s	remaining: 471ms
79:	learn: 10.2171240	total: 1.79s	remaining: 449ms
80:	learn: 10.1381738	total: 1.81s	remaining: 426ms
81:	learn: 10.0402437	total: 1.83s	remaining: 403ms
82:	learn: 9.9223565	total: 1.85s	remaining: 380ms
83:	learn: 9.8184057	total: 1.88s	remaining: 358ms
84:	learn: 9.7221978	total: 1.91s	remaining: 336ms
85:	learn: 9.6417031	total: 1.93s	remaining: 314ms
86:	learn: 9.5593969	total: 1.95s	remaining: 292ms
87:	learn: 9.4678992	total: 1.98s	remaining: 270ms
88:	learn: 9.3855757	total: 2s	remaining: 247ms
89:	learn: 9.2884031	total: 2.02s	remaining: 225ms
90:	learn: 9.2099382	total: 2.04s	remaining: 202ms
91:	learn: 9.1357061	total: 2.06s	remaining: 179ms
92:	learn: 9.0690328	total: 2.09s	remaining: 157ms
93:	learn: 8.9904694	total: 2.12s	remaining: 135ms
94:	learn: 8.9256893	total: 2.14s	remaining: 113ms
95:	learn: 8.8600084	total: 2.16s	remaining: 90.2ms
96:	learn: 8.8091154	total: 2.19s	remaining: 67.6ms
97:	learn: 8.7280528	total: 2.21s	remaining: 45.1ms
98:	learn: 8.6761440	total: 2.23s	remaining: 22.5ms
99:	learn: 8.6181192	total: 2.25s	remaining: 0us
0:	learn: 45.9988128	total: 28.4ms	remaining: 2.81s
1:	learn: 44.7653841	total: 52.1ms	remaining: 2.55s
2:	learn: 43.4693688	total: 72.7ms	remaining: 2.35s
3:	learn: 42.2495168	total: 95.5ms	remaining: 2.29s
4:	learn: 41.2273909	total: 117ms	remaining: 2.23s
5:	learn: 40.0623352	total: 139ms	remaining: 2.18s
6:	learn: 39.0139162	total: 160ms	remaining: 2.12s
7:	learn: 37.9905503	total: 181ms	remaining: 2.08s
8:	learn: 37.1460179	total: 202ms	remaining: 2.04s
9:	learn: 36.1321769	total: 223ms	remaining: 2.01s
10:	learn: 35.2434048	total: 244ms	remaining: 1.97s
11:	learn: 34.3919476	total: 265ms	remaining: 1.94s
12:	learn: 33.5464400	total: 287ms	remaining: 1.92s
13:	learn: 32.5752711	total: 318ms	remaining: 1.95s
14:	learn: 31.8573507	total: 341ms	remaining: 1.94s
15:	learn: 31.1481980	total: 364ms	remaining: 1.91s
16:	learn: 30.4578224	total: 387ms	remaining: 1.89s
17:	learn: 29.8404841	total: 409ms	remaining: 1.86s
18:	learn: 29.1314604	total: 428ms	remaining: 1.82s
19:	learn: 28.5024706	total: 448ms	remaining: 1.79s
20:	learn: 27.9368896	total: 469ms	remaining: 1.76s
21:	learn: 27.2136491	total: 490ms	remaining: 1.74s
22:	learn: 26.6230078	total: 516ms	remaining: 1.73s
23:	learn: 26.0604635	total: 542ms	remaining: 1.72s
24:	learn: 25.6309424	total: 565ms	remaining: 1.69s
25:	learn: 25.1761698	total: 589ms	remaining: 1.68s
26:	learn: 24.6368216	total: 610ms	remaining: 1.65s
27:	learn: 24.1028972	total: 634ms	remaining: 1.63s
28:	learn: 23.3990224	total: 653ms	remaining: 1.6s
29:	learn: 22.9088559	total: 675ms	remaining: 1.57s
30:	learn: 22.4793217	total: 698ms	remaining: 1.55s
31:	learn: 22.0592669	total: 722ms	remaining: 1.53s
32:	learn: 21.6715811	total: 752ms	remaining: 1.53s
33:	learn: 21.1907911	total: 774ms	remaining: 1.5s
34:	learn: 20.8045504	total: 796ms	remaining: 1.48s
35:	learn: 20.4670784	total: 820ms	remaining: 1.46s
36:	learn: 20.0165788	total: 844ms	remaining: 1.44s
37:	learn: 19.6859173	total: 864ms	remaining: 1.41s
38:	learn: 19.3641283	total: 885ms	remaining: 1.38s
39:	learn: 19.0291194	total: 907ms	remaining: 1.36s
40:	learn: 18.7204204	total: 928ms	remaining: 1.33s
41:	learn: 18.4000101	total: 960ms	remaining: 1.32s
42:	learn: 18.0910445	total: 984ms	remaining: 1.3s
43:	learn: 17.8354609	total: 1s	remaining: 1.28s
44:	learn: 17.4982243	total: 1.03s	remaining: 1.25s
45:	learn: 17.1895897	total: 1.05s	remaining: 1.23s
46:	learn: 16.9440833	total: 1.07s	remaining: 1.2s
47:	learn: 16.6112102	total: 1.09s	remaining: 1.18s
48:	learn: 16.3320235	total: 1.11s	remaining: 1.15s
49:	learn: 16.0523610	total: 1.13s	remaining: 1.13s
50:	learn: 15.8256738	total: 1.15s	remaining: 1.1s
51:	learn: 15.5699393	total: 1.18s	remaining: 1.09s
52:	learn: 15.3531799	total: 1.21s	remaining: 1.07s
53:	learn: 15.1364230	total: 1.23s	remaining: 1.05s
54:	learn: 15.0012063	total: 1.25s	remaining: 1.02s
55:	learn: 14.7171740	total: 1.27s	remaining: 998ms
56:	learn: 14.5897576	total: 1.27s	remaining: 961ms
57:	learn: 14.3886878	total: 1.29s	remaining: 936ms
58:	learn: 14.1942115	total: 1.31s	remaining: 911ms
59:	learn: 14.0135398	total: 1.33s	remaining: 886ms
60:	learn: 13.8118263	total: 1.35s	remaining: 864ms
61:	learn: 13.6444047	total: 1.37s	remaining: 842ms
62:	learn: 13.4728078	total: 1.4s	remaining: 824ms
63:	learn: 13.3104934	total: 1.43s	remaining: 802ms
64:	learn: 13.1385144	total: 1.45s	remaining: 779ms
65:	learn: 13.0087777	total: 1.47s	remaining: 757ms
66:	learn: 12.8457835	total: 1.49s	remaining: 733ms
67:	learn: 12.6975263	total: 1.51s	remaining: 709ms
68:	learn: 12.5582839	total: 1.52s	remaining: 686ms
69:	learn: 12.4210776	total: 1.54s	remaining: 662ms
70:	learn: 12.2737286	total: 1.56s	remaining: 640ms
71:	learn: 12.1587075	total: 1.59s	remaining: 617ms
72:	learn: 12.0323022	total: 1.62s	remaining: 598ms
73:	learn: 11.8667900	total: 1.64s	remaining: 576ms
74:	learn: 11.6990385	total: 1.66s	remaining: 554ms
75:	learn: 11.5755058	total: 1.68s	remaining: 531ms
76:	learn: 11.4954152	total: 1.71s	remaining: 509ms
77:	learn: 11.3827464	total: 1.72s	remaining: 486ms
78:	learn: 11.2924968	total: 1.74s	remaining: 463ms
79:	learn: 11.1938217	total: 1.76s	remaining: 441ms
80:	learn: 11.0766477	total: 1.79s	remaining: 419ms
81:	learn: 10.9824487	total: 1.81s	remaining: 399ms
82:	learn: 10.8707168	total: 1.84s	remaining: 377ms
83:	learn: 10.7746205	total: 1.86s	remaining: 355ms
84:	learn: 10.6738461	total: 1.89s	remaining: 333ms
85:	learn: 10.5871227	total: 1.91s	remaining: 310ms
86:	learn: 10.4566607	total: 1.93s	remaining: 288ms
87:	learn: 10.3506633	total: 1.94s	remaining: 265ms
88:	learn: 10.2104644	total: 1.96s	remaining: 243ms
89:	learn: 10.0965839	total: 1.99s	remaining: 221ms
90:	learn: 9.9802927	total: 2.01s	remaining: 199ms
91:	learn: 9.9195276	total: 2.04s	remaining: 177ms
92:	learn: 9.8559698	total: 2.06s	remaining: 155ms
93:	learn: 9.7396780	total: 2.08s	remaining: 133ms
94:	learn: 9.6945725	total: 2.1s	remaining: 111ms
95:	learn: 9.5897565	total: 2.13s	remaining: 88.6ms
96:	learn: 9.5012011	total: 2.14s	remaining: 66.3ms
97:	learn: 9.4123715	total: 2.16s	remaining: 44.1ms
98:	learn: 9.3288366	total: 2.18s	remaining: 22ms
99:	learn: 9.2648715	total: 2.2s	remaining: 0us
0:	learn: 45.5336925	total: 21.6ms	remaining: 2.14s
1:	learn: 44.2714175	total: 42.4ms	remaining: 2.08s
2:	learn: 43.1477944	total: 63.1ms	remaining: 2.04s
3:	learn: 41.9891776	total: 82.7ms	remaining: 1.98s
4:	learn: 41.0638986	total: 101ms	remaining: 1.91s
5:	learn: 39.9800801	total: 119ms	remaining: 1.86s
6:	learn: 38.9048061	total: 140ms	remaining: 1.86s
7:	learn: 38.0749429	total: 160ms	remaining: 1.84s
8:	learn: 37.3966644	total: 183ms	remaining: 1.85s
9:	learn: 36.4671331	total: 213ms	remaining: 1.92s
10:	learn: 35.6649217	total: 234ms	remaining: 1.9s
11:	learn: 34.8793657	total: 257ms	remaining: 1.88s
12:	learn: 34.0737401	total: 278ms	remaining: 1.86s
13:	learn: 33.2560999	total: 298ms	remaining: 1.83s
14:	learn: 32.4184623	total: 317ms	remaining: 1.79s
15:	learn: 31.6803206	total: 336ms	remaining: 1.76s
16:	learn: 30.9276344	total: 356ms	remaining: 1.74s
17:	learn: 30.3590041	total: 389ms	remaining: 1.77s
18:	learn: 29.7789888	total: 418ms	remaining: 1.78s
19:	learn: 29.1098261	total: 442ms	remaining: 1.77s
20:	learn: 28.4824889	total: 467ms	remaining: 1.76s
21:	learn: 27.9675744	total: 491ms	remaining: 1.74s
22:	learn: 27.4793215	total: 515ms	remaining: 1.72s
23:	learn: 26.8920542	total: 537ms	remaining: 1.7s
24:	learn: 26.2736657	total: 562ms	remaining: 1.69s
25:	learn: 25.6908003	total: 586ms	remaining: 1.67s
26:	learn: 25.1288844	total: 621ms	remaining: 1.68s
27:	learn: 24.6933320	total: 649ms	remaining: 1.67s
28:	learn: 24.1372567	total: 683ms	remaining: 1.67s
29:	learn: 23.7103515	total: 707ms	remaining: 1.65s
30:	learn: 23.1647499	total: 731ms	remaining: 1.63s
31:	learn: 22.7009216	total: 753ms	remaining: 1.6s
32:	learn: 22.2792229	total: 777ms	remaining: 1.58s
33:	learn: 21.8004244	total: 804ms	remaining: 1.56s
34:	learn: 21.3578361	total: 838ms	remaining: 1.56s
35:	learn: 21.0262832	total: 864ms	remaining: 1.53s
36:	learn: 20.5787502	total: 889ms	remaining: 1.51s
37:	learn: 20.3083055	total: 913ms	remaining: 1.49s
38:	learn: 19.9902529	total: 939ms	remaining: 1.47s
39:	learn: 19.6059571	total: 968ms	remaining: 1.45s
40:	learn: 19.3890959	total: 989ms	remaining: 1.42s
41:	learn: 19.0549255	total: 1.01s	remaining: 1.4s
42:	learn: 18.7283215	total: 1.04s	remaining: 1.39s
43:	learn: 18.4448725	total: 1.07s	remaining: 1.36s
44:	learn: 18.1578001	total: 1.09s	remaining: 1.34s
45:	learn: 17.8777474	total: 1.12s	remaining: 1.31s
46:	learn: 17.6428221	total: 1.14s	remaining: 1.29s
47:	learn: 17.3887752	total: 1.17s	remaining: 1.26s
48:	learn: 17.1475761	total: 1.19s	remaining: 1.24s
49:	learn: 16.9064363	total: 1.21s	remaining: 1.21s
50:	learn: 16.6414681	total: 1.24s	remaining: 1.19s
51:	learn: 16.4549974	total: 1.27s	remaining: 1.18s
52:	learn: 16.2617558	total: 1.3s	remaining: 1.15s
53:	learn: 16.0258241	total: 1.32s	remaining: 1.12s
54:	learn: 15.7694686	total: 1.34s	remaining: 1.1s
55:	learn: 15.5449602	total: 1.37s	remaining: 1.07s
56:	learn: 15.3515330	total: 1.39s	remaining: 1.05s
57:	learn: 15.1120403	total: 1.41s	remaining: 1.02s
58:	learn: 14.9131368	total: 1.43s	remaining: 996ms
59:	learn: 14.8021921	total: 1.46s	remaining: 972ms
60:	learn: 14.6564259	total: 1.5s	remaining: 957ms
61:	learn: 14.5253260	total: 1.52s	remaining: 932ms
62:	learn: 14.3975427	total: 1.54s	remaining: 907ms
63:	learn: 14.3060204	total: 1.57s	remaining: 882ms
64:	learn: 14.1283681	total: 1.59s	remaining: 857ms
65:	learn: 14.0159063	total: 1.61s	remaining: 831ms
66:	learn: 13.8712541	total: 1.64s	remaining: 808ms
67:	learn: 13.7852998	total: 1.66s	remaining: 782ms
68:	learn: 13.6790164	total: 1.69s	remaining: 758ms
69:	learn: 13.5253745	total: 1.72s	remaining: 735ms
70:	learn: 13.3959663	total: 1.74s	remaining: 710ms
71:	learn: 13.2062955	total: 1.76s	remaining: 686ms
72:	learn: 13.0788709	total: 1.79s	remaining: 661ms
73:	learn: 12.9513184	total: 1.81s	remaining: 636ms
74:	learn: 12.8198556	total: 1.83s	remaining: 611ms
75:	learn: 12.7137549	total: 1.85s	remaining: 585ms
76:	learn: 12.6243477	total: 1.88s	remaining: 560ms
77:	learn: 12.5241564	total: 1.9s	remaining: 536ms
78:	learn: 12.4445782	total: 1.93s	remaining: 513ms
79:	learn: 12.3816501	total: 1.96s	remaining: 489ms
80:	learn: 12.2846914	total: 1.98s	remaining: 465ms
81:	learn: 12.1419498	total: 2.01s	remaining: 442ms
82:	learn: 12.0846494	total: 2.04s	remaining: 417ms
83:	learn: 11.9851484	total: 2.06s	remaining: 392ms
84:	learn: 11.8905738	total: 2.08s	remaining: 367ms
85:	learn: 11.7718790	total: 2.1s	remaining: 342ms
86:	learn: 11.6854413	total: 2.13s	remaining: 318ms
87:	learn: 11.6206110	total: 2.16s	remaining: 294ms
88:	learn: 11.5376098	total: 2.18s	remaining: 270ms
89:	learn: 11.4235068	total: 2.21s	remaining: 245ms
90:	learn: 11.3477955	total: 2.23s	remaining: 221ms
91:	learn: 11.2663772	total: 2.25s	remaining: 196ms
92:	learn: 11.1916556	total: 2.28s	remaining: 172ms
93:	learn: 11.0921504	total: 2.3s	remaining: 147ms
94:	learn: 10.9622375	total: 2.33s	remaining: 122ms
95:	learn: 10.8882085	total: 2.35s	remaining: 97.8ms
96:	learn: 10.8086218	total: 2.38s	remaining: 73.6ms
97:	learn: 10.7552220	total: 2.4s	remaining: 49.1ms
98:	learn: 10.6929666	total: 2.43s	remaining: 24.5ms
99:	learn: 10.6200033	total: 2.45s	remaining: 0us
0:	learn: 46.3366259	total: 23.2ms	remaining: 2.3s
1:	learn: 45.2205278	total: 46.6ms	remaining: 2.29s
2:	learn: 43.9887404	total: 70.9ms	remaining: 2.29s
3:	learn: 42.8240666	total: 109ms	remaining: 2.62s
4:	learn: 41.6086617	total: 134ms	remaining: 2.55s
5:	learn: 40.5606446	total: 158ms	remaining: 2.48s
6:	learn: 39.6241326	total: 183ms	remaining: 2.43s
7:	learn: 39.0016852	total: 208ms	remaining: 2.39s
8:	learn: 37.8501670	total: 230ms	remaining: 2.32s
9:	learn: 37.0215474	total: 254ms	remaining: 2.29s
10:	learn: 36.0215020	total: 277ms	remaining: 2.24s
11:	learn: 35.2421331	total: 309ms	remaining: 2.26s
12:	learn: 34.5416837	total: 335ms	remaining: 2.24s
13:	learn: 33.7787649	total: 366ms	remaining: 2.25s
14:	learn: 32.9860883	total: 390ms	remaining: 2.21s
15:	learn: 32.2123752	total: 415ms	remaining: 2.18s
16:	learn: 31.3564648	total: 435ms	remaining: 2.12s
17:	learn: 30.7859979	total: 456ms	remaining: 2.08s
18:	learn: 30.1443515	total: 479ms	remaining: 2.04s
19:	learn: 29.4880724	total: 504ms	remaining: 2.02s
20:	learn: 28.9635727	total: 534ms	remaining: 2.01s
21:	learn: 28.4853342	total: 558ms	remaining: 1.98s
22:	learn: 27.9796348	total: 583ms	remaining: 1.95s
23:	learn: 27.4360487	total: 606ms	remaining: 1.92s
24:	learn: 26.8685214	total: 637ms	remaining: 1.91s
25:	learn: 26.1769206	total: 657ms	remaining: 1.87s
26:	learn: 25.7146048	total: 680ms	remaining: 1.84s
27:	learn: 25.2614850	total: 704ms	remaining: 1.81s
28:	learn: 24.6626472	total: 733ms	remaining: 1.79s
29:	learn: 24.2501259	total: 761ms	remaining: 1.77s
30:	learn: 23.7892661	total: 785ms	remaining: 1.75s
31:	learn: 23.2729078	total: 809ms	remaining: 1.72s
32:	learn: 22.8969731	total: 831ms	remaining: 1.69s
33:	learn: 22.4567570	total: 854ms	remaining: 1.66s
34:	learn: 22.0569858	total: 882ms	remaining: 1.64s
35:	learn: 21.7317775	total: 904ms	remaining: 1.61s
36:	learn: 21.3890971	total: 927ms	remaining: 1.58s
37:	learn: 21.0664504	total: 956ms	remaining: 1.56s
38:	learn: 20.7379659	total: 983ms	remaining: 1.54s
39:	learn: 20.4423699	total: 1.01s	remaining: 1.51s
40:	learn: 20.1526720	total: 1.03s	remaining: 1.49s
41:	learn: 19.8706547	total: 1.06s	remaining: 1.46s
42:	learn: 19.5139134	total: 1.08s	remaining: 1.43s
43:	learn: 19.3495951	total: 1.1s	remaining: 1.4s
44:	learn: 19.1314757	total: 1.12s	remaining: 1.37s
45:	learn: 18.7971159	total: 1.16s	remaining: 1.36s
46:	learn: 18.5447051	total: 1.19s	remaining: 1.34s
47:	learn: 18.2328785	total: 1.21s	remaining: 1.31s
48:	learn: 17.9622938	total: 1.23s	remaining: 1.28s
49:	learn: 17.7264205	total: 1.26s	remaining: 1.26s
50:	learn: 17.4530592	total: 1.28s	remaining: 1.23s
51:	learn: 17.2236644	total: 1.3s	remaining: 1.2s
52:	learn: 17.0122792	total: 1.32s	remaining: 1.17s
53:	learn: 16.7599064	total: 1.35s	remaining: 1.15s
54:	learn: 16.5146699	total: 1.38s	remaining: 1.13s
55:	learn: 16.2531414	total: 1.41s	remaining: 1.1s
56:	learn: 16.0997208	total: 1.44s	remaining: 1.08s
57:	learn: 15.8452412	total: 1.46s	remaining: 1.06s
58:	learn: 15.6294900	total: 1.49s	remaining: 1.03s
59:	learn: 15.4564548	total: 1.51s	remaining: 1s
60:	learn: 15.2978533	total: 1.53s	remaining: 978ms
61:	learn: 15.0976912	total: 1.55s	remaining: 952ms
62:	learn: 14.9094446	total: 1.59s	remaining: 932ms
63:	learn: 14.7415094	total: 1.61s	remaining: 907ms
64:	learn: 14.6123806	total: 1.64s	remaining: 881ms
65:	learn: 14.4744916	total: 1.66s	remaining: 855ms
66:	learn: 14.3212717	total: 1.69s	remaining: 833ms
67:	learn: 14.1768047	total: 1.71s	remaining: 807ms
68:	learn: 14.0387344	total: 1.74s	remaining: 781ms
69:	learn: 13.8987579	total: 1.76s	remaining: 754ms
70:	learn: 13.7825740	total: 1.79s	remaining: 732ms
71:	learn: 13.6818548	total: 1.82s	remaining: 707ms
72:	learn: 13.5356993	total: 1.84s	remaining: 681ms
73:	learn: 13.4408704	total: 1.86s	remaining: 655ms
74:	learn: 13.2992218	total: 1.89s	remaining: 629ms
75:	learn: 13.1547092	total: 1.91s	remaining: 603ms
76:	learn: 13.0800189	total: 1.93s	remaining: 577ms
77:	learn: 12.9434711	total: 1.96s	remaining: 554ms
78:	learn: 12.8327325	total: 1.99s	remaining: 529ms
79:	learn: 12.7238946	total: 2.02s	remaining: 506ms
80:	learn: 12.6229528	total: 2.05s	remaining: 481ms
81:	learn: 12.5216078	total: 2.07s	remaining: 455ms
82:	learn: 12.4182254	total: 2.1s	remaining: 429ms
83:	learn: 12.3097978	total: 2.12s	remaining: 404ms
84:	learn: 12.1852056	total: 2.14s	remaining: 378ms
85:	learn: 12.0739627	total: 2.16s	remaining: 352ms
86:	learn: 11.9475583	total: 2.19s	remaining: 327ms
87:	learn: 11.8403806	total: 2.23s	remaining: 304ms
88:	learn: 11.7294124	total: 2.25s	remaining: 279ms
89:	learn: 11.6395689	total: 2.28s	remaining: 253ms
90:	learn: 11.5510643	total: 2.3s	remaining: 228ms
91:	learn: 11.4455301	total: 2.32s	remaining: 202ms
92:	learn: 11.3368661	total: 2.35s	remaining: 177ms
93:	learn: 11.2270796	total: 2.37s	remaining: 151ms
94:	learn: 11.1168414	total: 2.4s	remaining: 126ms
95:	learn: 11.0310985	total: 2.43s	remaining: 101ms
96:	learn: 10.9735185	total: 2.46s	remaining: 76ms
97:	learn: 10.8575874	total: 2.48s	remaining: 50.6ms
98:	learn: 10.7816173	total: 2.51s	remaining: 25.4ms
99:	learn: 10.7111737	total: 2.54s	remaining: 0us
0:	learn: 27.5585353	total: 5.38ms	remaining: 533ms
1:	learn: 27.1656995	total: 10.2ms	remaining: 498ms
2:	learn: 26.8590175	total: 14.6ms	remaining: 472ms
3:	learn: 26.5818406	total: 18.9ms	remaining: 453ms
4:	learn: 26.1148663	total: 23.9ms	remaining: 454ms
5:	learn: 25.7690484	total: 32.6ms	remaining: 510ms
6:	learn: 25.3489206	total: 39.6ms	remaining: 526ms
7:	learn: 24.9542406	total: 47.1ms	remaining: 541ms
8:	learn: 24.6777517	total: 54ms	remaining: 546ms
9:	learn: 24.3242344	total: 59.7ms	remaining: 537ms
10:	learn: 24.0383073	total: 64.8ms	remaining: 524ms
11:	learn: 23.7383420	total: 70ms	remaining: 513ms
12:	learn: 23.3461670	total: 75.3ms	remaining: 504ms
13:	learn: 23.0928636	total: 80.3ms	remaining: 493ms
14:	learn: 22.8770414	total: 85.3ms	remaining: 484ms
15:	learn: 22.6323214	total: 91ms	remaining: 478ms
16:	learn: 22.3597072	total: 96.3ms	remaining: 470ms
17:	learn: 22.1079813	total: 102ms	remaining: 463ms
18:	learn: 21.8421199	total: 107ms	remaining: 455ms
19:	learn: 21.6576508	total: 112ms	remaining: 446ms
20:	learn: 21.4301268	total: 117ms	remaining: 440ms
21:	learn: 21.2287388	total: 122ms	remaining: 433ms
22:	learn: 21.0553872	total: 127ms	remaining: 426ms
23:	learn: 20.8977091	total: 132ms	remaining: 418ms
24:	learn: 20.6619051	total: 136ms	remaining: 407ms
25:	learn: 20.5040955	total: 140ms	remaining: 398ms
26:	learn: 20.3181195	total: 144ms	remaining: 390ms
27:	learn: 20.0869436	total: 149ms	remaining: 382ms
28:	learn: 19.9375985	total: 153ms	remaining: 374ms
29:	learn: 19.8247516	total: 157ms	remaining: 366ms
30:	learn: 19.6261697	total: 161ms	remaining: 359ms
31:	learn: 19.4547236	total: 165ms	remaining: 351ms
32:	learn: 19.3157092	total: 169ms	remaining: 344ms
33:	learn: 19.1561419	total: 174ms	remaining: 337ms
34:	learn: 19.0453620	total: 178ms	remaining: 331ms
35:	learn: 18.8738574	total: 182ms	remaining: 324ms
36:	learn: 18.7072907	total: 187ms	remaining: 318ms
37:	learn: 18.5877943	total: 191ms	remaining: 312ms
38:	learn: 18.4436380	total: 195ms	remaining: 306ms
39:	learn: 18.3463356	total: 200ms	remaining: 299ms
40:	learn: 18.2008059	total: 204ms	remaining: 294ms
41:	learn: 18.0582079	total: 209ms	remaining: 288ms
42:	learn: 17.8891982	total: 213ms	remaining: 283ms
43:	learn: 17.7332246	total: 217ms	remaining: 277ms
44:	learn: 17.6206421	total: 222ms	remaining: 271ms
45:	learn: 17.4982800	total: 226ms	remaining: 266ms
46:	learn: 17.3970150	total: 231ms	remaining: 261ms
47:	learn: 17.3058203	total: 236ms	remaining: 255ms
48:	learn: 17.1789256	total: 240ms	remaining: 250ms
49:	learn: 17.0916229	total: 245ms	remaining: 245ms
50:	learn: 16.9859820	total: 250ms	remaining: 240ms
51:	learn: 16.8995582	total: 255ms	remaining: 235ms
52:	learn: 16.8137014	total: 262ms	remaining: 233ms
53:	learn: 16.7021451	total: 271ms	remaining: 231ms
54:	learn: 16.5895582	total: 281ms	remaining: 230ms
55:	learn: 16.5015639	total: 291ms	remaining: 228ms
56:	learn: 16.4356637	total: 296ms	remaining: 223ms
57:	learn: 16.3514525	total: 301ms	remaining: 218ms
58:	learn: 16.2401369	total: 306ms	remaining: 213ms
59:	learn: 16.1293223	total: 311ms	remaining: 208ms
60:	learn: 16.0271167	total: 317ms	remaining: 202ms
61:	learn: 15.9126257	total: 322ms	remaining: 197ms
62:	learn: 15.8391096	total: 327ms	remaining: 192ms
63:	learn: 15.7441773	total: 332ms	remaining: 187ms
64:	learn: 15.6885195	total: 337ms	remaining: 182ms
65:	learn: 15.6052039	total: 342ms	remaining: 176ms
66:	learn: 15.5074202	total: 347ms	remaining: 171ms
67:	learn: 15.4054338	total: 353ms	remaining: 166ms
68:	learn: 15.2885714	total: 358ms	remaining: 161ms
69:	learn: 15.2157472	total: 363ms	remaining: 156ms
70:	learn: 15.1031554	total: 367ms	remaining: 150ms
71:	learn: 15.0237470	total: 371ms	remaining: 144ms
72:	learn: 14.9756825	total: 376ms	remaining: 139ms
73:	learn: 14.8840596	total: 380ms	remaining: 134ms
74:	learn: 14.8077061	total: 384ms	remaining: 128ms
75:	learn: 14.7444437	total: 389ms	remaining: 123ms
76:	learn: 14.6751720	total: 395ms	remaining: 118ms
77:	learn: 14.5830333	total: 400ms	remaining: 113ms
78:	learn: 14.5241206	total: 405ms	remaining: 108ms
79:	learn: 14.4892731	total: 409ms	remaining: 102ms
80:	learn: 14.4256605	total: 414ms	remaining: 97.1ms
81:	learn: 14.3666860	total: 419ms	remaining: 91.9ms
82:	learn: 14.2938372	total: 424ms	remaining: 86.8ms
83:	learn: 14.2161532	total: 429ms	remaining: 81.7ms
84:	learn: 14.1582910	total: 434ms	remaining: 76.6ms
85:	learn: 14.1029153	total: 439ms	remaining: 71.4ms
86:	learn: 14.0475835	total: 443ms	remaining: 66.3ms
87:	learn: 13.9892661	total: 448ms	remaining: 61.1ms
88:	learn: 13.9481628	total: 454ms	remaining: 56.1ms
89:	learn: 13.8483991	total: 461ms	remaining: 51.2ms
90:	learn: 13.7775614	total: 469ms	remaining: 46.3ms
91:	learn: 13.7304585	total: 478ms	remaining: 41.6ms
92:	learn: 13.6783381	total: 488ms	remaining: 36.8ms
93:	learn: 13.6356964	total: 494ms	remaining: 31.5ms
94:	learn: 13.5924371	total: 499ms	remaining: 26.3ms
95:	learn: 13.5400746	total: 505ms	remaining: 21ms
96:	learn: 13.4897333	total: 510ms	remaining: 15.8ms
97:	learn: 13.4470321	total: 515ms	remaining: 10.5ms
98:	learn: 13.3856082	total: 521ms	remaining: 5.26ms
99:	learn: 13.3082371	total: 527ms	remaining: 0us
0:	learn: 43.0395283	total: 4.84ms	remaining: 479ms
1:	learn: 42.1130223	total: 9.5ms	remaining: 465ms
2:	learn: 41.1753409	total: 14ms	remaining: 453ms
3:	learn: 40.3637444	total: 18.4ms	remaining: 442ms
4:	learn: 39.6508088	total: 23.2ms	remaining: 440ms
5:	learn: 38.7217934	total: 28.2ms	remaining: 441ms
6:	learn: 37.8538055	total: 32.9ms	remaining: 437ms
7:	learn: 36.9793574	total: 38.9ms	remaining: 448ms
8:	learn: 36.3076984	total: 44.5ms	remaining: 450ms
9:	learn: 35.6673160	total: 50.3ms	remaining: 453ms
10:	learn: 34.8889800	total: 56.4ms	remaining: 457ms
11:	learn: 34.1675517	total: 62.1ms	remaining: 455ms
12:	learn: 33.6779564	total: 68.6ms	remaining: 459ms
13:	learn: 33.0710039	total: 73.7ms	remaining: 453ms
14:	learn: 32.4966674	total: 79ms	remaining: 448ms
15:	learn: 31.9492856	total: 87.4ms	remaining: 459ms
16:	learn: 31.5108129	total: 95.1ms	remaining: 464ms
17:	learn: 30.9804023	total: 103ms	remaining: 471ms
18:	learn: 30.4169089	total: 110ms	remaining: 468ms
19:	learn: 29.8930375	total: 117ms	remaining: 470ms
20:	learn: 29.3974421	total: 123ms	remaining: 464ms
21:	learn: 28.8792307	total: 129ms	remaining: 459ms
22:	learn: 28.3894474	total: 135ms	remaining: 452ms
23:	learn: 27.9921276	total: 140ms	remaining: 444ms
24:	learn: 27.6158887	total: 146ms	remaining: 437ms
25:	learn: 27.2866950	total: 151ms	remaining: 429ms
26:	learn: 26.8770708	total: 156ms	remaining: 422ms
27:	learn: 26.6233005	total: 161ms	remaining: 414ms
28:	learn: 26.2921934	total: 167ms	remaining: 409ms
29:	learn: 25.9156920	total: 172ms	remaining: 402ms
30:	learn: 25.5311106	total: 174ms	remaining: 388ms
31:	learn: 25.2178997	total: 179ms	remaining: 380ms
32:	learn: 24.8572196	total: 184ms	remaining: 374ms
33:	learn: 24.5849710	total: 189ms	remaining: 367ms
34:	learn: 24.2209190	total: 194ms	remaining: 360ms
35:	learn: 23.8708250	total: 198ms	remaining: 353ms
36:	learn: 23.5325279	total: 203ms	remaining: 346ms
37:	learn: 23.2116148	total: 208ms	remaining: 339ms
38:	learn: 22.9696787	total: 212ms	remaining: 332ms
39:	learn: 22.7936783	total: 217ms	remaining: 325ms
40:	learn: 22.6228847	total: 221ms	remaining: 318ms
41:	learn: 22.3691527	total: 226ms	remaining: 312ms
42:	learn: 22.1002173	total: 230ms	remaining: 305ms
43:	learn: 21.9157268	total: 235ms	remaining: 299ms
44:	learn: 21.7229102	total: 240ms	remaining: 293ms
45:	learn: 21.4642005	total: 245ms	remaining: 287ms
46:	learn: 21.3029442	total: 249ms	remaining: 281ms
47:	learn: 21.1469792	total: 254ms	remaining: 275ms
48:	learn: 20.9458235	total: 259ms	remaining: 270ms
49:	learn: 20.7335242	total: 264ms	remaining: 264ms
50:	learn: 20.5440269	total: 269ms	remaining: 258ms
51:	learn: 20.3661449	total: 274ms	remaining: 253ms
52:	learn: 20.2158134	total: 281ms	remaining: 249ms
53:	learn: 19.9934873	total: 289ms	remaining: 246ms
54:	learn: 19.7879739	total: 298ms	remaining: 244ms
55:	learn: 19.6630460	total: 304ms	remaining: 239ms
56:	learn: 19.5152729	total: 312ms	remaining: 235ms
57:	learn: 19.3581128	total: 317ms	remaining: 229ms
58:	learn: 19.2209303	total: 322ms	remaining: 224ms
59:	learn: 19.0965248	total: 328ms	remaining: 219ms
60:	learn: 19.0035954	total: 333ms	remaining: 213ms
61:	learn: 18.8554149	total: 338ms	remaining: 207ms
62:	learn: 18.7095427	total: 344ms	remaining: 202ms
63:	learn: 18.5751494	total: 349ms	remaining: 196ms
64:	learn: 18.4678251	total: 354ms	remaining: 191ms
65:	learn: 18.3500325	total: 359ms	remaining: 185ms
66:	learn: 18.2088983	total: 364ms	remaining: 179ms
67:	learn: 18.0737705	total: 369ms	remaining: 174ms
68:	learn: 17.9325058	total: 375ms	remaining: 168ms
69:	learn: 17.8003911	total: 380ms	remaining: 163ms
70:	learn: 17.7385366	total: 386ms	remaining: 157ms
71:	learn: 17.6106998	total: 390ms	remaining: 152ms
72:	learn: 17.4816270	total: 395ms	remaining: 146ms
73:	learn: 17.4025554	total: 400ms	remaining: 140ms
74:	learn: 17.2902108	total: 404ms	remaining: 135ms
75:	learn: 17.2158048	total: 408ms	remaining: 129ms
76:	learn: 17.1261053	total: 413ms	remaining: 123ms
77:	learn: 17.0308917	total: 417ms	remaining: 118ms
78:	learn: 16.9546705	total: 421ms	remaining: 112ms
79:	learn: 16.8319165	total: 427ms	remaining: 107ms
80:	learn: 16.7687017	total: 431ms	remaining: 101ms
81:	learn: 16.6972326	total: 436ms	remaining: 95.6ms
82:	learn: 16.6124580	total: 440ms	remaining: 90.1ms
83:	learn: 16.4999052	total: 445ms	remaining: 84.8ms
84:	learn: 16.4302484	total: 450ms	remaining: 79.4ms
85:	learn: 16.3201363	total: 455ms	remaining: 74.1ms
86:	learn: 16.2534314	total: 460ms	remaining: 68.7ms
87:	learn: 16.1720485	total: 465ms	remaining: 63.4ms
88:	learn: 16.0625751	total: 469ms	remaining: 58ms
89:	learn: 15.9135088	total: 475ms	remaining: 52.7ms
90:	learn: 15.8658863	total: 484ms	remaining: 47.8ms
91:	learn: 15.8066805	total: 491ms	remaining: 42.7ms
92:	learn: 15.7412103	total: 499ms	remaining: 37.6ms
93:	learn: 15.6542776	total: 507ms	remaining: 32.4ms
94:	learn: 15.5760334	total: 512ms	remaining: 27ms
95:	learn: 15.5434131	total: 518ms	remaining: 21.6ms
96:	learn: 15.4709561	total: 523ms	remaining: 16.2ms
97:	learn: 15.4449618	total: 528ms	remaining: 10.8ms
98:	learn: 15.3752761	total: 533ms	remaining: 5.38ms
99:	learn: 15.3106595	total: 538ms	remaining: 0us
0:	learn: 46.7142257	total: 4.63ms	remaining: 458ms
1:	learn: 45.7634153	total: 9.6ms	remaining: 471ms
2:	learn: 45.0054253	total: 13.9ms	remaining: 448ms
3:	learn: 44.2120432	total: 18.1ms	remaining: 434ms
4:	learn: 43.3960472	total: 22.9ms	remaining: 436ms
5:	learn: 42.8588120	total: 27.3ms	remaining: 428ms
6:	learn: 41.9533701	total: 31.8ms	remaining: 423ms
7:	learn: 41.2745030	total: 36.5ms	remaining: 419ms
8:	learn: 40.6797495	total: 41.4ms	remaining: 419ms
9:	learn: 39.9899571	total: 46ms	remaining: 414ms
10:	learn: 39.4682100	total: 50.7ms	remaining: 410ms
11:	learn: 39.0305595	total: 56.6ms	remaining: 415ms
12:	learn: 38.4200417	total: 61.8ms	remaining: 414ms
13:	learn: 37.8425194	total: 66.8ms	remaining: 411ms
14:	learn: 37.4203127	total: 71.7ms	remaining: 406ms
15:	learn: 36.9917688	total: 76.8ms	remaining: 403ms
16:	learn: 36.5544138	total: 82.1ms	remaining: 401ms
17:	learn: 36.0727019	total: 90.6ms	remaining: 413ms
18:	learn: 35.4835715	total: 99.3ms	remaining: 423ms
19:	learn: 34.9865654	total: 109ms	remaining: 437ms
20:	learn: 34.6063373	total: 118ms	remaining: 446ms
21:	learn: 34.0997289	total: 124ms	remaining: 439ms
22:	learn: 33.7313171	total: 130ms	remaining: 434ms
23:	learn: 33.3582000	total: 135ms	remaining: 427ms
24:	learn: 32.9432456	total: 140ms	remaining: 420ms
25:	learn: 32.5220888	total: 146ms	remaining: 414ms
26:	learn: 32.2172292	total: 151ms	remaining: 407ms
27:	learn: 31.8972904	total: 156ms	remaining: 401ms
28:	learn: 31.6405350	total: 161ms	remaining: 395ms
29:	learn: 31.4167702	total: 167ms	remaining: 389ms
30:	learn: 30.8541961	total: 169ms	remaining: 376ms
31:	learn: 30.5572111	total: 174ms	remaining: 369ms
32:	learn: 30.1700399	total: 180ms	remaining: 365ms
33:	learn: 29.8537271	total: 186ms	remaining: 360ms
34:	learn: 29.6192540	total: 191ms	remaining: 355ms
35:	learn: 29.3276362	total: 196ms	remaining: 349ms
36:	learn: 28.9985179	total: 201ms	remaining: 343ms
37:	learn: 28.7046880	total: 206ms	remaining: 336ms
38:	learn: 28.4412677	total: 211ms	remaining: 330ms
39:	learn: 28.1277292	total: 216ms	remaining: 324ms
40:	learn: 27.9000750	total: 221ms	remaining: 319ms
41:	learn: 27.5433162	total: 226ms	remaining: 312ms
42:	learn: 27.2493285	total: 230ms	remaining: 306ms
43:	learn: 26.9576632	total: 232ms	remaining: 296ms
44:	learn: 26.6177110	total: 238ms	remaining: 290ms
45:	learn: 26.2812456	total: 242ms	remaining: 284ms
46:	learn: 26.0803859	total: 246ms	remaining: 278ms
47:	learn: 25.9543581	total: 251ms	remaining: 272ms
48:	learn: 25.7951582	total: 256ms	remaining: 266ms
49:	learn: 25.6548184	total: 261ms	remaining: 261ms
50:	learn: 25.4010843	total: 265ms	remaining: 255ms
51:	learn: 24.9773937	total: 270ms	remaining: 249ms
52:	learn: 24.8026156	total: 275ms	remaining: 244ms
53:	learn: 24.5568053	total: 280ms	remaining: 238ms
54:	learn: 24.2281839	total: 285ms	remaining: 233ms
55:	learn: 23.9202795	total: 292ms	remaining: 230ms
56:	learn: 23.7625591	total: 300ms	remaining: 226ms
57:	learn: 23.5429721	total: 310ms	remaining: 225ms
58:	learn: 23.3175893	total: 317ms	remaining: 220ms
59:	learn: 23.2035130	total: 323ms	remaining: 215ms
60:	learn: 23.0232450	total: 328ms	remaining: 210ms
61:	learn: 22.8384958	total: 333ms	remaining: 204ms
62:	learn: 22.6499902	total: 338ms	remaining: 199ms
63:	learn: 22.4577426	total: 344ms	remaining: 193ms
64:	learn: 22.3333158	total: 349ms	remaining: 188ms
65:	learn: 22.2064131	total: 354ms	remaining: 183ms
66:	learn: 22.1434971	total: 359ms	remaining: 177ms
67:	learn: 21.9596519	total: 365ms	remaining: 172ms
68:	learn: 21.8475576	total: 370ms	remaining: 166ms
69:	learn: 21.6954745	total: 375ms	remaining: 161ms
70:	learn: 21.5635976	total: 380ms	remaining: 155ms
71:	learn: 21.4588506	total: 386ms	remaining: 150ms
72:	learn: 21.3527268	total: 391ms	remaining: 145ms
73:	learn: 21.2661288	total: 396ms	remaining: 139ms
74:	learn: 21.1817333	total: 400ms	remaining: 133ms
75:	learn: 21.0527553	total: 404ms	remaining: 128ms
76:	learn: 20.9229021	total: 408ms	remaining: 122ms
77:	learn: 20.7563946	total: 413ms	remaining: 116ms
78:	learn: 20.6569831	total: 417ms	remaining: 111ms
79:	learn: 20.4982663	total: 421ms	remaining: 105ms
80:	learn: 20.3185460	total: 425ms	remaining: 99.8ms
81:	learn: 20.2096241	total: 430ms	remaining: 94.3ms
82:	learn: 20.1274891	total: 434ms	remaining: 88.8ms
83:	learn: 20.0740139	total: 438ms	remaining: 83.4ms
84:	learn: 19.9630699	total: 442ms	remaining: 78ms
85:	learn: 19.8753899	total: 446ms	remaining: 72.7ms
86:	learn: 19.6563612	total: 451ms	remaining: 67.4ms
87:	learn: 19.4680232	total: 455ms	remaining: 62.1ms
88:	learn: 19.3503431	total: 460ms	remaining: 56.8ms
89:	learn: 19.2221379	total: 465ms	remaining: 51.6ms
90:	learn: 19.0732542	total: 469ms	remaining: 46.4ms
91:	learn: 18.9825190	total: 474ms	remaining: 41.2ms
92:	learn: 18.8839009	total: 479ms	remaining: 36ms
93:	learn: 18.8012219	total: 483ms	remaining: 30.8ms
94:	learn: 18.7172713	total: 487ms	remaining: 25.6ms
95:	learn: 18.6201170	total: 492ms	remaining: 20.5ms
96:	learn: 18.5318611	total: 500ms	remaining: 15.5ms
97:	learn: 18.3833356	total: 507ms	remaining: 10.4ms
98:	learn: 18.3289700	total: 517ms	remaining: 5.22ms
99:	learn: 18.2227333	total: 525ms	remaining: 0us
0:	learn: 46.3764524	total: 4.95ms	remaining: 490ms
1:	learn: 45.5561269	total: 9.22ms	remaining: 452ms
2:	learn: 44.8811245	total: 13.4ms	remaining: 432ms
3:	learn: 44.0788617	total: 17.5ms	remaining: 419ms
4:	learn: 43.3619790	total: 21.4ms	remaining: 407ms
5:	learn: 42.6912112	total: 25.9ms	remaining: 406ms
6:	learn: 42.2292118	total: 30.2ms	remaining: 402ms
7:	learn: 41.7725191	total: 34.4ms	remaining: 395ms
8:	learn: 41.1676614	total: 38.2ms	remaining: 387ms
9:	learn: 40.5771076	total: 42.5ms	remaining: 383ms
10:	learn: 39.8343757	total: 47.1ms	remaining: 381ms
11:	learn: 39.3761142	total: 51.3ms	remaining: 376ms
12:	learn: 38.5254692	total: 55.4ms	remaining: 371ms
13:	learn: 37.9629555	total: 59.9ms	remaining: 368ms
14:	learn: 37.4418438	total: 64ms	remaining: 363ms
15:	learn: 37.0507283	total: 67.8ms	remaining: 356ms
16:	learn: 36.6264217	total: 72.4ms	remaining: 353ms
17:	learn: 36.1114940	total: 76.9ms	remaining: 350ms
18:	learn: 35.7193862	total: 81.2ms	remaining: 346ms
19:	learn: 35.3301177	total: 85.3ms	remaining: 341ms
20:	learn: 35.0598280	total: 90.1ms	remaining: 339ms
21:	learn: 34.5469736	total: 94.8ms	remaining: 336ms
22:	learn: 34.2064215	total: 99.5ms	remaining: 333ms
23:	learn: 33.7280710	total: 104ms	remaining: 329ms
24:	learn: 33.3282940	total: 108ms	remaining: 323ms
25:	learn: 32.8478961	total: 112ms	remaining: 319ms
26:	learn: 32.5722164	total: 116ms	remaining: 314ms
27:	learn: 32.2457019	total: 123ms	remaining: 317ms
28:	learn: 31.9230495	total: 131ms	remaining: 320ms
29:	learn: 31.4311611	total: 140ms	remaining: 328ms
30:	learn: 30.9179052	total: 146ms	remaining: 326ms
31:	learn: 30.6201141	total: 165ms	remaining: 350ms
32:	learn: 30.3421106	total: 170ms	remaining: 345ms
33:	learn: 29.9885373	total: 175ms	remaining: 339ms
34:	learn: 29.7462780	total: 180ms	remaining: 334ms
35:	learn: 29.3607153	total: 185ms	remaining: 329ms
36:	learn: 29.1793078	total: 190ms	remaining: 324ms
37:	learn: 28.9276538	total: 195ms	remaining: 318ms
38:	learn: 28.6903934	total: 200ms	remaining: 313ms
39:	learn: 28.2095033	total: 205ms	remaining: 307ms
40:	learn: 27.7990608	total: 210ms	remaining: 302ms
41:	learn: 27.5406632	total: 215ms	remaining: 297ms
42:	learn: 27.2575376	total: 220ms	remaining: 292ms
43:	learn: 26.9741707	total: 224ms	remaining: 286ms
44:	learn: 26.6606899	total: 228ms	remaining: 279ms
45:	learn: 26.4015833	total: 232ms	remaining: 273ms
46:	learn: 26.1828993	total: 237ms	remaining: 267ms
47:	learn: 26.0233709	total: 239ms	remaining: 259ms
48:	learn: 25.9300399	total: 243ms	remaining: 253ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 251ms	remaining: 241ms
51:	learn: 25.1595644	total: 255ms	remaining: 236ms
52:	learn: 24.9955303	total: 259ms	remaining: 230ms
53:	learn: 24.7273966	total: 263ms	remaining: 224ms
54:	learn: 24.5747978	total: 267ms	remaining: 218ms
55:	learn: 24.3807977	total: 272ms	remaining: 214ms
56:	learn: 24.1689569	total: 275ms	remaining: 208ms
57:	learn: 23.9898221	total: 279ms	remaining: 202ms
58:	learn: 23.7566414	total: 283ms	remaining: 197ms
59:	learn: 23.6641165	total: 288ms	remaining: 192ms
60:	learn: 23.5658066	total: 293ms	remaining: 187ms
61:	learn: 23.4338851	total: 297ms	remaining: 182ms
62:	learn: 23.2408837	total: 301ms	remaining: 177ms
63:	learn: 23.0642038	total: 306ms	remaining: 172ms
64:	learn: 22.9032045	total: 310ms	remaining: 167ms
65:	learn: 22.7736138	total: 314ms	remaining: 162ms
66:	learn: 22.6836443	total: 319ms	remaining: 157ms
67:	learn: 22.5983654	total: 327ms	remaining: 154ms
68:	learn: 22.4419813	total: 334ms	remaining: 150ms
69:	learn: 22.2863339	total: 342ms	remaining: 147ms
70:	learn: 22.1792943	total: 350ms	remaining: 143ms
71:	learn: 22.1130574	total: 355ms	remaining: 138ms
72:	learn: 21.9858161	total: 360ms	remaining: 133ms
73:	learn: 21.8577784	total: 365ms	remaining: 128ms
74:	learn: 21.7845222	total: 370ms	remaining: 123ms
75:	learn: 21.6831390	total: 376ms	remaining: 119ms
76:	learn: 21.6292521	total: 381ms	remaining: 114ms
77:	learn: 21.5789330	total: 386ms	remaining: 109ms
78:	learn: 21.5420942	total: 390ms	remaining: 104ms
79:	learn: 21.4280939	total: 395ms	remaining: 98.8ms
80:	learn: 21.3641165	total: 400ms	remaining: 93.9ms
81:	learn: 21.2734814	total: 405ms	remaining: 88.9ms
82:	learn: 21.2220323	total: 410ms	remaining: 84ms
83:	learn: 21.0625792	total: 416ms	remaining: 79.1ms
84:	learn: 20.9488320	total: 421ms	remaining: 74.3ms
85:	learn: 20.8504255	total: 425ms	remaining: 69.2ms
86:	learn: 20.7848510	total: 429ms	remaining: 64.1ms
87:	learn: 20.7247442	total: 433ms	remaining: 59ms
88:	learn: 20.5698590	total: 437ms	remaining: 54ms
89:	learn: 20.4067620	total: 441ms	remaining: 48.9ms
90:	learn: 20.3062482	total: 445ms	remaining: 44ms
91:	learn: 20.2029696	total: 449ms	remaining: 39ms
92:	learn: 20.1384849	total: 453ms	remaining: 34.1ms
93:	learn: 20.0260709	total: 457ms	remaining: 29.2ms
94:	learn: 19.9122100	total: 461ms	remaining: 24.3ms
95:	learn: 19.8648487	total: 465ms	remaining: 19.4ms
96:	learn: 19.8207072	total: 469ms	remaining: 14.5ms
97:	learn: 19.7261189	total: 473ms	remaining: 9.66ms
98:	learn: 19.7042438	total: 477ms	remaining: 4.82ms
99:	learn: 19.6546645	total: 482ms	remaining: 0us
0:	learn: 47.0239288	total: 7.63ms	remaining: 756ms
1:	learn: 46.2253829	total: 16.8ms	remaining: 822ms
2:	learn: 45.5580301	total: 23.9ms	remaining: 771ms
3:	learn: 44.7273237	total: 29.5ms	remaining: 707ms
4:	learn: 43.8867421	total: 34.7ms	remaining: 660ms
5:	learn: 43.3615911	total: 39.9ms	remaining: 625ms
6:	learn: 42.8548390	total: 45.4ms	remaining: 603ms
7:	learn: 42.1606758	total: 50.7ms	remaining: 583ms
8:	learn: 41.6625870	total: 55.7ms	remaining: 563ms
9:	learn: 40.9497092	total: 60.6ms	remaining: 546ms
10:	learn: 40.1886318	total: 66ms	remaining: 534ms
11:	learn: 39.7456423	total: 71.4ms	remaining: 523ms
12:	learn: 39.1171373	total: 77ms	remaining: 515ms
13:	learn: 38.5451069	total: 82.1ms	remaining: 504ms
14:	learn: 38.0155834	total: 87.6ms	remaining: 496ms
15:	learn: 37.5631354	total: 93.3ms	remaining: 490ms
16:	learn: 37.1030023	total: 98.9ms	remaining: 483ms
17:	learn: 36.4563029	total: 104ms	remaining: 472ms
18:	learn: 36.0160976	total: 108ms	remaining: 459ms
19:	learn: 35.5079827	total: 112ms	remaining: 447ms
20:	learn: 35.2111885	total: 116ms	remaining: 435ms
21:	learn: 34.9397465	total: 120ms	remaining: 426ms
22:	learn: 34.5270048	total: 124ms	remaining: 415ms
23:	learn: 34.0169260	total: 128ms	remaining: 405ms
24:	learn: 33.7454892	total: 132ms	remaining: 395ms
25:	learn: 33.2648157	total: 136ms	remaining: 388ms
26:	learn: 32.8899427	total: 140ms	remaining: 379ms
27:	learn: 32.6185050	total: 144ms	remaining: 371ms
28:	learn: 32.3528531	total: 148ms	remaining: 363ms
29:	learn: 32.0859923	total: 153ms	remaining: 357ms
30:	learn: 31.6511144	total: 157ms	remaining: 350ms
31:	learn: 31.2571765	total: 161ms	remaining: 343ms
32:	learn: 30.9770049	total: 165ms	remaining: 336ms
33:	learn: 30.6084872	total: 170ms	remaining: 330ms
34:	learn: 30.3448632	total: 175ms	remaining: 324ms
35:	learn: 30.0360942	total: 179ms	remaining: 319ms
36:	learn: 29.6648968	total: 184ms	remaining: 313ms
37:	learn: 29.3165114	total: 188ms	remaining: 307ms
38:	learn: 29.0829198	total: 192ms	remaining: 301ms
39:	learn: 28.7752064	total: 197ms	remaining: 295ms
40:	learn: 28.3622191	total: 204ms	remaining: 293ms
41:	learn: 28.1346631	total: 211ms	remaining: 292ms
42:	learn: 27.9585719	total: 218ms	remaining: 289ms
43:	learn: 27.6565566	total: 224ms	remaining: 285ms
44:	learn: 27.3616172	total: 229ms	remaining: 280ms
45:	learn: 27.0658637	total: 234ms	remaining: 274ms
46:	learn: 26.8660382	total: 238ms	remaining: 268ms
47:	learn: 26.6536078	total: 242ms	remaining: 262ms
48:	learn: 26.3524440	total: 246ms	remaining: 256ms
49:	learn: 26.1595277	total: 249ms	remaining: 249ms
50:	learn: 25.9273523	total: 254ms	remaining: 244ms
51:	learn: 25.7195580	total: 258ms	remaining: 238ms
52:	learn: 25.5730225	total: 262ms	remaining: 232ms
53:	learn: 25.3455276	total: 266ms	remaining: 226ms
54:	learn: 25.2289675	total: 270ms	remaining: 221ms
55:	learn: 25.0133024	total: 274ms	remaining: 215ms
56:	learn: 24.8406714	total: 278ms	remaining: 209ms
57:	learn: 24.6367857	total: 281ms	remaining: 204ms
58:	learn: 24.5338177	total: 285ms	remaining: 198ms
59:	learn: 24.3799964	total: 289ms	remaining: 193ms
60:	learn: 24.1447492	total: 293ms	remaining: 188ms
61:	learn: 23.9880495	total: 297ms	remaining: 182ms
62:	learn: 23.7140630	total: 302ms	remaining: 177ms
63:	learn: 23.5003791	total: 306ms	remaining: 172ms
64:	learn: 23.3207645	total: 310ms	remaining: 167ms
65:	learn: 23.1958356	total: 314ms	remaining: 162ms
66:	learn: 23.0471302	total: 318ms	remaining: 157ms
67:	learn: 22.8977183	total: 323ms	remaining: 152ms
68:	learn: 22.7187400	total: 327ms	remaining: 147ms
69:	learn: 22.6523405	total: 331ms	remaining: 142ms
70:	learn: 22.4767453	total: 335ms	remaining: 137ms
71:	learn: 22.3243677	total: 339ms	remaining: 132ms
72:	learn: 22.2133096	total: 343ms	remaining: 127ms
73:	learn: 22.1151713	total: 347ms	remaining: 122ms
74:	learn: 22.0296666	total: 352ms	remaining: 117ms
75:	learn: 21.9195980	total: 356ms	remaining: 112ms
76:	learn: 21.8401730	total: 360ms	remaining: 108ms
77:	learn: 21.8079797	total: 365ms	remaining: 103ms
78:	learn: 21.7274109	total: 370ms	remaining: 98.3ms
79:	learn: 21.6663032	total: 375ms	remaining: 93.7ms
80:	learn: 21.5633117	total: 380ms	remaining: 89.1ms
81:	learn: 21.4542467	total: 384ms	remaining: 84.4ms
82:	learn: 21.3177957	total: 389ms	remaining: 79.6ms
83:	learn: 21.1289167	total: 394ms	remaining: 75ms
84:	learn: 21.0297368	total: 400ms	remaining: 70.6ms
85:	learn: 20.9089564	total: 407ms	remaining: 66.2ms
86:	learn: 20.7653988	total: 415ms	remaining: 62ms
87:	learn: 20.6521894	total: 421ms	remaining: 57.4ms
88:	learn: 20.5193021	total: 428ms	remaining: 52.9ms
89:	learn: 20.4361620	total: 433ms	remaining: 48.2ms
90:	learn: 20.3546710	total: 439ms	remaining: 43.4ms
91:	learn: 20.2513296	total: 444ms	remaining: 38.6ms
92:	learn: 20.1605550	total: 449ms	remaining: 33.8ms
93:	learn: 20.0515942	total: 454ms	remaining: 29ms
94:	learn: 19.9800764	total: 459ms	remaining: 24.1ms
95:	learn: 19.8996532	total: 464ms	remaining: 19.3ms
96:	learn: 19.8450910	total: 472ms	remaining: 14.6ms
97:	learn: 19.7887346	total: 477ms	remaining: 9.73ms
98:	learn: 19.7230872	total: 482ms	remaining: 4.87ms
99:	learn: 19.6328825	total: 487ms	remaining: 0us
0:	learn: 27.3716363	total: 4.97ms	remaining: 492ms
1:	learn: 26.7586038	total: 9.49ms	remaining: 465ms
2:	learn: 26.1513803	total: 13.8ms	remaining: 445ms
3:	learn: 25.6569249	total: 18ms	remaining: 433ms
4:	learn: 25.0448773	total: 22.6ms	remaining: 429ms
5:	learn: 24.6011243	total: 26.8ms	remaining: 420ms
6:	learn: 23.9665913	total: 30.7ms	remaining: 408ms
7:	learn: 23.5201950	total: 35.3ms	remaining: 406ms
8:	learn: 22.9901116	total: 40.1ms	remaining: 405ms
9:	learn: 22.5256710	total: 44.7ms	remaining: 402ms
10:	learn: 22.1598038	total: 49ms	remaining: 397ms
11:	learn: 21.7726663	total: 53.8ms	remaining: 394ms
12:	learn: 21.5014839	total: 58.7ms	remaining: 393ms
13:	learn: 21.1063605	total: 63.2ms	remaining: 388ms
14:	learn: 20.7648344	total: 68.2ms	remaining: 387ms
15:	learn: 20.4005501	total: 76.6ms	remaining: 402ms
16:	learn: 20.0308689	total: 83.9ms	remaining: 410ms
17:	learn: 19.7619894	total: 92.3ms	remaining: 420ms
18:	learn: 19.4006982	total: 100ms	remaining: 427ms
19:	learn: 19.1201126	total: 106ms	remaining: 424ms
20:	learn: 18.7774355	total: 111ms	remaining: 418ms
21:	learn: 18.5027646	total: 117ms	remaining: 413ms
22:	learn: 18.1958499	total: 122ms	remaining: 409ms
23:	learn: 18.0191187	total: 128ms	remaining: 404ms
24:	learn: 17.8387270	total: 133ms	remaining: 399ms
25:	learn: 17.5280679	total: 138ms	remaining: 393ms
26:	learn: 17.3062744	total: 143ms	remaining: 387ms
27:	learn: 17.0131776	total: 149ms	remaining: 382ms
28:	learn: 16.7409451	total: 154ms	remaining: 377ms
29:	learn: 16.5094615	total: 159ms	remaining: 371ms
30:	learn: 16.2691858	total: 165ms	remaining: 368ms
31:	learn: 16.0502592	total: 171ms	remaining: 362ms
32:	learn: 15.8734968	total: 175ms	remaining: 355ms
33:	learn: 15.6646527	total: 179ms	remaining: 348ms
34:	learn: 15.5331988	total: 183ms	remaining: 341ms
35:	learn: 15.2505462	total: 188ms	remaining: 334ms
36:	learn: 15.0313064	total: 192ms	remaining: 327ms
37:	learn: 14.8734366	total: 196ms	remaining: 320ms
38:	learn: 14.6699229	total: 201ms	remaining: 314ms
39:	learn: 14.5898168	total: 205ms	remaining: 307ms
40:	learn: 14.4208947	total: 209ms	remaining: 301ms
41:	learn: 14.2850223	total: 213ms	remaining: 295ms
42:	learn: 14.1442724	total: 218ms	remaining: 289ms
43:	learn: 13.9770221	total: 222ms	remaining: 283ms
44:	learn: 13.8778270	total: 226ms	remaining: 276ms
45:	learn: 13.6902000	total: 230ms	remaining: 270ms
46:	learn: 13.5674586	total: 235ms	remaining: 265ms
47:	learn: 13.3835423	total: 240ms	remaining: 260ms
48:	learn: 13.2779430	total: 244ms	remaining: 254ms
49:	learn: 13.1218837	total: 249ms	remaining: 249ms
50:	learn: 13.0063048	total: 254ms	remaining: 244ms
51:	learn: 12.8507410	total: 258ms	remaining: 239ms
52:	learn: 12.7455025	total: 263ms	remaining: 233ms
53:	learn: 12.6261811	total: 272ms	remaining: 232ms
54:	learn: 12.5173579	total: 279ms	remaining: 229ms
55:	learn: 12.4529502	total: 288ms	remaining: 227ms
56:	learn: 12.3944087	total: 296ms	remaining: 224ms
57:	learn: 12.2888055	total: 302ms	remaining: 219ms
58:	learn: 12.1806093	total: 307ms	remaining: 213ms
59:	learn: 12.0712110	total: 313ms	remaining: 208ms
60:	learn: 11.9961171	total: 318ms	remaining: 203ms
61:	learn: 11.8823972	total: 323ms	remaining: 198ms
62:	learn: 11.7943665	total: 329ms	remaining: 193ms
63:	learn: 11.7212181	total: 334ms	remaining: 188ms
64:	learn: 11.6362437	total: 340ms	remaining: 183ms
65:	learn: 11.5522591	total: 345ms	remaining: 178ms
66:	learn: 11.4500175	total: 350ms	remaining: 173ms
67:	learn: 11.3258387	total: 355ms	remaining: 167ms
68:	learn: 11.2482685	total: 361ms	remaining: 162ms
69:	learn: 11.1755209	total: 367ms	remaining: 157ms
70:	learn: 11.0887540	total: 372ms	remaining: 152ms
71:	learn: 11.0054578	total: 376ms	remaining: 146ms
72:	learn: 10.9318991	total: 380ms	remaining: 141ms
73:	learn: 10.8522001	total: 385ms	remaining: 135ms
74:	learn: 10.7674012	total: 389ms	remaining: 130ms
75:	learn: 10.7187991	total: 394ms	remaining: 124ms
76:	learn: 10.6548375	total: 398ms	remaining: 119ms
77:	learn: 10.6095260	total: 402ms	remaining: 113ms
78:	learn: 10.5658533	total: 406ms	remaining: 108ms
79:	learn: 10.5097785	total: 410ms	remaining: 103ms
80:	learn: 10.4527426	total: 415ms	remaining: 97.3ms
81:	learn: 10.3885391	total: 419ms	remaining: 92ms
82:	learn: 10.3299710	total: 423ms	remaining: 86.7ms
83:	learn: 10.2436190	total: 428ms	remaining: 81.4ms
84:	learn: 10.1749078	total: 432ms	remaining: 76.3ms
85:	learn: 10.0946062	total: 437ms	remaining: 71.1ms
86:	learn: 10.0390578	total: 441ms	remaining: 66ms
87:	learn: 9.9852955	total: 446ms	remaining: 60.9ms
88:	learn: 9.9302992	total: 451ms	remaining: 55.7ms
89:	learn: 9.8630695	total: 456ms	remaining: 50.6ms
90:	learn: 9.7805856	total: 461ms	remaining: 45.6ms
91:	learn: 9.7127178	total: 468ms	remaining: 40.7ms
92:	learn: 9.6557593	total: 477ms	remaining: 35.9ms
93:	learn: 9.5921286	total: 486ms	remaining: 31ms
94:	learn: 9.5187489	total: 492ms	remaining: 25.9ms
95:	learn: 9.4500955	total: 511ms	remaining: 21.3ms
96:	learn: 9.3834246	total: 517ms	remaining: 16ms
97:	learn: 9.3221422	total: 523ms	remaining: 10.7ms
98:	learn: 9.2581494	total: 529ms	remaining: 5.34ms
99:	learn: 9.2021708	total: 535ms	remaining: 0us
0:	learn: 42.4859206	total: 4.78ms	remaining: 473ms
1:	learn: 41.2348392	total: 8.95ms	remaining: 439ms
2:	learn: 39.9044703	total: 13.2ms	remaining: 426ms
3:	learn: 38.6081616	total: 17.4ms	remaining: 417ms
4:	learn: 37.4610571	total: 21.7ms	remaining: 413ms
5:	learn: 36.3390199	total: 26.1ms	remaining: 408ms
6:	learn: 35.1817084	total: 30ms	remaining: 399ms
7:	learn: 34.1132574	total: 34.8ms	remaining: 400ms
8:	learn: 33.4673440	total: 39ms	remaining: 394ms
9:	learn: 32.4688388	total: 43.1ms	remaining: 388ms
10:	learn: 31.5801915	total: 47.7ms	remaining: 386ms
11:	learn: 30.7270901	total: 53.1ms	remaining: 390ms
12:	learn: 30.1030598	total: 57.8ms	remaining: 387ms
13:	learn: 29.2931850	total: 59.1ms	remaining: 363ms
14:	learn: 28.5479304	total: 63.6ms	remaining: 361ms
15:	learn: 27.9377772	total: 68.2ms	remaining: 358ms
16:	learn: 27.2217220	total: 72.9ms	remaining: 356ms
17:	learn: 26.5521028	total: 77.5ms	remaining: 353ms
18:	learn: 25.9926990	total: 82.7ms	remaining: 352ms
19:	learn: 25.3989069	total: 90.6ms	remaining: 362ms
20:	learn: 24.8440572	total: 98.7ms	remaining: 371ms
21:	learn: 24.2947764	total: 108ms	remaining: 382ms
22:	learn: 23.7487326	total: 116ms	remaining: 388ms
23:	learn: 23.1892639	total: 121ms	remaining: 383ms
24:	learn: 22.7249056	total: 126ms	remaining: 378ms
25:	learn: 22.2987315	total: 132ms	remaining: 374ms
26:	learn: 21.9065428	total: 137ms	remaining: 370ms
27:	learn: 21.4981889	total: 142ms	remaining: 366ms
28:	learn: 21.0962886	total: 147ms	remaining: 361ms
29:	learn: 20.8295403	total: 153ms	remaining: 356ms
30:	learn: 20.6084828	total: 158ms	remaining: 352ms
31:	learn: 20.2966492	total: 163ms	remaining: 347ms
32:	learn: 19.9841639	total: 168ms	remaining: 342ms
33:	learn: 19.7208663	total: 174ms	remaining: 338ms
34:	learn: 19.4135423	total: 179ms	remaining: 333ms
35:	learn: 19.2034111	total: 184ms	remaining: 328ms
36:	learn: 18.9402581	total: 189ms	remaining: 323ms
37:	learn: 18.7382588	total: 194ms	remaining: 316ms
38:	learn: 18.4705302	total: 198ms	remaining: 310ms
39:	learn: 18.2354107	total: 203ms	remaining: 304ms
40:	learn: 17.9669553	total: 207ms	remaining: 299ms
41:	learn: 17.7329625	total: 212ms	remaining: 293ms
42:	learn: 17.4715711	total: 216ms	remaining: 287ms
43:	learn: 17.2285510	total: 221ms	remaining: 281ms
44:	learn: 17.0261018	total: 225ms	remaining: 275ms
45:	learn: 16.8373998	total: 230ms	remaining: 270ms
46:	learn: 16.6975431	total: 234ms	remaining: 264ms
47:	learn: 16.5029954	total: 239ms	remaining: 259ms
48:	learn: 16.3332890	total: 243ms	remaining: 253ms
49:	learn: 16.1354926	total: 248ms	remaining: 248ms
50:	learn: 16.0073114	total: 252ms	remaining: 242ms
51:	learn: 15.9043247	total: 256ms	remaining: 237ms
52:	learn: 15.7303782	total: 261ms	remaining: 232ms
53:	learn: 15.5560543	total: 266ms	remaining: 227ms
54:	learn: 15.3435331	total: 271ms	remaining: 221ms
55:	learn: 15.2045774	total: 275ms	remaining: 216ms
56:	learn: 15.0609857	total: 281ms	remaining: 212ms
57:	learn: 14.9370901	total: 285ms	remaining: 207ms
58:	learn: 14.8410465	total: 290ms	remaining: 202ms
59:	learn: 14.7081240	total: 298ms	remaining: 199ms
60:	learn: 14.5636282	total: 306ms	remaining: 195ms
61:	learn: 14.4606865	total: 316ms	remaining: 194ms
62:	learn: 14.3731446	total: 322ms	remaining: 189ms
63:	learn: 14.2045145	total: 328ms	remaining: 185ms
64:	learn: 14.0461252	total: 334ms	remaining: 180ms
65:	learn: 13.9195454	total: 339ms	remaining: 175ms
66:	learn: 13.8190753	total: 344ms	remaining: 170ms
67:	learn: 13.7252500	total: 350ms	remaining: 165ms
68:	learn: 13.6566471	total: 355ms	remaining: 160ms
69:	learn: 13.5121693	total: 361ms	remaining: 155ms
70:	learn: 13.4442080	total: 366ms	remaining: 150ms
71:	learn: 13.3279962	total: 372ms	remaining: 145ms
72:	learn: 13.2456458	total: 377ms	remaining: 139ms
73:	learn: 13.1417720	total: 382ms	remaining: 134ms
74:	learn: 13.0795807	total: 387ms	remaining: 129ms
75:	learn: 12.9858298	total: 393ms	remaining: 124ms
76:	learn: 12.9193581	total: 398ms	remaining: 119ms
77:	learn: 12.8008737	total: 403ms	remaining: 114ms
78:	learn: 12.7215618	total: 407ms	remaining: 108ms
79:	learn: 12.6252386	total: 411ms	remaining: 103ms
80:	learn: 12.5456193	total: 416ms	remaining: 97.5ms
81:	learn: 12.4550597	total: 421ms	remaining: 92.4ms
82:	learn: 12.3684000	total: 425ms	remaining: 87.1ms
83:	learn: 12.2904435	total: 429ms	remaining: 81.8ms
84:	learn: 12.2128737	total: 434ms	remaining: 76.6ms
85:	learn: 12.1069589	total: 438ms	remaining: 71.3ms
86:	learn: 11.9975688	total: 443ms	remaining: 66.1ms
87:	learn: 11.9113686	total: 447ms	remaining: 61ms
88:	learn: 11.8489375	total: 451ms	remaining: 55.8ms
89:	learn: 11.7446095	total: 456ms	remaining: 50.6ms
90:	learn: 11.6793247	total: 460ms	remaining: 45.5ms
91:	learn: 11.6120227	total: 465ms	remaining: 40.4ms
92:	learn: 11.5559096	total: 470ms	remaining: 35.4ms
93:	learn: 11.5063069	total: 474ms	remaining: 30.3ms
94:	learn: 11.4776305	total: 479ms	remaining: 25.2ms
95:	learn: 11.4163720	total: 484ms	remaining: 20.2ms
96:	learn: 11.3547170	total: 489ms	remaining: 15.1ms
97:	learn: 11.2947704	total: 496ms	remaining: 10.1ms
98:	learn: 11.2120192	total: 503ms	remaining: 5.08ms
99:	learn: 11.1607467	total: 514ms	remaining: 0us
0:	learn: 46.2258117	total: 2.34ms	remaining: 232ms
1:	learn: 45.1972950	total: 7.59ms	remaining: 372ms
2:	learn: 43.7957357	total: 13.2ms	remaining: 427ms
3:	learn: 42.5777391	total: 18.5ms	remaining: 444ms
4:	learn: 41.5327833	total: 23.2ms	remaining: 441ms
5:	learn: 40.4435276	total: 27.3ms	remaining: 427ms
6:	learn: 39.4670075	total: 31.5ms	remaining: 419ms
7:	learn: 38.7108484	total: 35.8ms	remaining: 412ms
8:	learn: 38.1402654	total: 40.2ms	remaining: 407ms
9:	learn: 37.2648485	total: 44.6ms	remaining: 402ms
10:	learn: 36.4694198	total: 49.3ms	remaining: 399ms
11:	learn: 35.5168067	total: 53.7ms	remaining: 394ms
12:	learn: 34.7782207	total: 58.1ms	remaining: 389ms
13:	learn: 33.9839024	total: 62.2ms	remaining: 382ms
14:	learn: 33.2222232	total: 66.9ms	remaining: 379ms
15:	learn: 32.4007311	total: 71.6ms	remaining: 376ms
16:	learn: 31.6552844	total: 75.8ms	remaining: 370ms
17:	learn: 30.9799186	total: 80.2ms	remaining: 365ms
18:	learn: 30.2888540	total: 84.9ms	remaining: 362ms
19:	learn: 29.7032334	total: 89.4ms	remaining: 358ms
20:	learn: 29.2886252	total: 93.6ms	remaining: 352ms
21:	learn: 28.7682793	total: 98.2ms	remaining: 348ms
22:	learn: 28.4016143	total: 103ms	remaining: 346ms
23:	learn: 27.6630864	total: 108ms	remaining: 342ms
24:	learn: 27.2033858	total: 113ms	remaining: 338ms
25:	learn: 26.5935061	total: 117ms	remaining: 334ms
26:	learn: 26.1389740	total: 122ms	remaining: 330ms
27:	learn: 25.7937555	total: 127ms	remaining: 326ms
28:	learn: 25.4247732	total: 134ms	remaining: 328ms
29:	learn: 24.9684460	total: 142ms	remaining: 331ms
30:	learn: 24.5885923	total: 152ms	remaining: 338ms
31:	learn: 24.2703978	total: 159ms	remaining: 337ms
32:	learn: 23.8387638	total: 165ms	remaining: 334ms
33:	learn: 23.6317607	total: 170ms	remaining: 331ms
34:	learn: 23.3263085	total: 176ms	remaining: 327ms
35:	learn: 22.9960495	total: 182ms	remaining: 323ms
36:	learn: 22.6616330	total: 187ms	remaining: 319ms
37:	learn: 22.1801596	total: 193ms	remaining: 314ms
38:	learn: 21.8114556	total: 198ms	remaining: 309ms
39:	learn: 21.5714330	total: 203ms	remaining: 305ms
40:	learn: 21.1089354	total: 209ms	remaining: 301ms
41:	learn: 20.8040772	total: 214ms	remaining: 295ms
42:	learn: 20.4965159	total: 219ms	remaining: 290ms
43:	learn: 20.2898724	total: 224ms	remaining: 285ms
44:	learn: 20.0169420	total: 230ms	remaining: 281ms
45:	learn: 19.8348803	total: 235ms	remaining: 276ms
46:	learn: 19.5554754	total: 240ms	remaining: 270ms
47:	learn: 19.2782294	total: 244ms	remaining: 265ms
48:	learn: 19.0395772	total: 249ms	remaining: 259ms
49:	learn: 18.7983211	total: 253ms	remaining: 253ms
50:	learn: 18.6396276	total: 258ms	remaining: 247ms
51:	learn: 18.4535258	total: 262ms	remaining: 241ms
52:	learn: 18.2777199	total: 266ms	remaining: 236ms
53:	learn: 18.0572244	total: 270ms	remaining: 230ms
54:	learn: 17.8213238	total: 275ms	remaining: 225ms
55:	learn: 17.5926067	total: 280ms	remaining: 220ms
56:	learn: 17.3990115	total: 284ms	remaining: 214ms
57:	learn: 17.2444936	total: 288ms	remaining: 209ms
58:	learn: 17.0900496	total: 293ms	remaining: 204ms
59:	learn: 16.8497932	total: 298ms	remaining: 199ms
60:	learn: 16.7335122	total: 302ms	remaining: 193ms
61:	learn: 16.5285847	total: 307ms	remaining: 188ms
62:	learn: 16.4326012	total: 312ms	remaining: 183ms
63:	learn: 16.2977130	total: 316ms	remaining: 178ms
64:	learn: 16.1876309	total: 321ms	remaining: 173ms
65:	learn: 16.0948338	total: 326ms	remaining: 168ms
66:	learn: 15.9055478	total: 335ms	remaining: 165ms
67:	learn: 15.8244487	total: 342ms	remaining: 161ms
68:	learn: 15.6064385	total: 352ms	remaining: 158ms
69:	learn: 15.4574801	total: 361ms	remaining: 155ms
70:	learn: 15.4064312	total: 366ms	remaining: 150ms
71:	learn: 15.2463289	total: 372ms	remaining: 145ms
72:	learn: 15.1083967	total: 378ms	remaining: 140ms
73:	learn: 14.8909334	total: 383ms	remaining: 135ms
74:	learn: 14.7646415	total: 389ms	remaining: 130ms
75:	learn: 14.6847350	total: 394ms	remaining: 125ms
76:	learn: 14.5941501	total: 400ms	remaining: 119ms
77:	learn: 14.5049987	total: 406ms	remaining: 114ms
78:	learn: 14.4043748	total: 411ms	remaining: 109ms
79:	learn: 14.2633292	total: 416ms	remaining: 104ms
80:	learn: 14.1257360	total: 422ms	remaining: 99ms
81:	learn: 14.0626940	total: 428ms	remaining: 94ms
82:	learn: 13.9429889	total: 433ms	remaining: 88.7ms
83:	learn: 13.8834534	total: 438ms	remaining: 83.4ms
84:	learn: 13.7361899	total: 443ms	remaining: 78.1ms
85:	learn: 13.6473170	total: 447ms	remaining: 72.8ms
86:	learn: 13.5168963	total: 451ms	remaining: 67.4ms
87:	learn: 13.3778373	total: 456ms	remaining: 62.1ms
88:	learn: 13.2827073	total: 460ms	remaining: 56.8ms
89:	learn: 13.1962748	total: 464ms	remaining: 51.6ms
90:	learn: 13.1317634	total: 469ms	remaining: 46.4ms
91:	learn: 12.9996032	total: 473ms	remaining: 41.1ms
92:	learn: 12.8843393	total: 477ms	remaining: 35.9ms
93:	learn: 12.8187378	total: 482ms	remaining: 30.7ms
94:	learn: 12.7176304	total: 486ms	remaining: 25.6ms
95:	learn: 12.6420924	total: 491ms	remaining: 20.4ms
96:	learn: 12.5500097	total: 496ms	remaining: 15.3ms
97:	learn: 12.4837866	total: 501ms	remaining: 10.2ms
98:	learn: 12.3597911	total: 505ms	remaining: 5.11ms
99:	learn: 12.2792795	total: 510ms	remaining: 0us
0:	learn: 45.8627255	total: 2.3ms	remaining: 228ms
1:	learn: 44.8162174	total: 9.41ms	remaining: 461ms
2:	learn: 43.9865430	total: 14.7ms	remaining: 474ms
3:	learn: 42.9919872	total: 19.7ms	remaining: 473ms
4:	learn: 41.8902122	total: 25.1ms	remaining: 476ms
5:	learn: 41.0496461	total: 30.2ms	remaining: 474ms
6:	learn: 40.0946649	total: 35.5ms	remaining: 472ms
7:	learn: 39.3893186	total: 40.9ms	remaining: 470ms
8:	learn: 38.5282166	total: 46.2ms	remaining: 467ms
9:	learn: 37.5895258	total: 50.8ms	remaining: 457ms
10:	learn: 36.7137467	total: 56.1ms	remaining: 454ms
11:	learn: 35.7818300	total: 62ms	remaining: 454ms
12:	learn: 34.8459255	total: 66.8ms	remaining: 447ms
13:	learn: 34.2225882	total: 71.3ms	remaining: 438ms
14:	learn: 33.4045891	total: 75.8ms	remaining: 429ms
15:	learn: 32.7931441	total: 80.1ms	remaining: 420ms
16:	learn: 32.2009164	total: 84.4ms	remaining: 412ms
17:	learn: 31.4431417	total: 88.6ms	remaining: 404ms
18:	learn: 30.6940787	total: 93.2ms	remaining: 397ms
19:	learn: 30.2032085	total: 97.9ms	remaining: 392ms
20:	learn: 29.6620038	total: 102ms	remaining: 384ms
21:	learn: 29.1329122	total: 107ms	remaining: 378ms
22:	learn: 28.9285069	total: 111ms	remaining: 371ms
23:	learn: 28.2773846	total: 116ms	remaining: 366ms
24:	learn: 27.6312201	total: 120ms	remaining: 361ms
25:	learn: 27.1224449	total: 125ms	remaining: 355ms
26:	learn: 26.7129115	total: 129ms	remaining: 349ms
27:	learn: 26.2030118	total: 134ms	remaining: 345ms
28:	learn: 25.8449000	total: 139ms	remaining: 339ms
29:	learn: 25.3832705	total: 143ms	remaining: 335ms
30:	learn: 24.9797913	total: 149ms	remaining: 331ms
31:	learn: 24.7190041	total: 154ms	remaining: 327ms
32:	learn: 24.4139846	total: 158ms	remaining: 322ms
33:	learn: 24.0085081	total: 163ms	remaining: 317ms
34:	learn: 23.7092621	total: 172ms	remaining: 319ms
35:	learn: 23.4620026	total: 184ms	remaining: 327ms
36:	learn: 23.0924724	total: 192ms	remaining: 326ms
37:	learn: 22.6471910	total: 200ms	remaining: 326ms
38:	learn: 22.3422405	total: 205ms	remaining: 320ms
39:	learn: 22.0391348	total: 211ms	remaining: 316ms
40:	learn: 21.7653773	total: 216ms	remaining: 311ms
41:	learn: 21.4652025	total: 221ms	remaining: 306ms
42:	learn: 21.1937288	total: 227ms	remaining: 301ms
43:	learn: 20.9481301	total: 233ms	remaining: 296ms
44:	learn: 20.7022718	total: 239ms	remaining: 292ms
45:	learn: 20.6128483	total: 244ms	remaining: 286ms
46:	learn: 20.5444203	total: 249ms	remaining: 281ms
47:	learn: 20.2652868	total: 254ms	remaining: 275ms
48:	learn: 20.0465015	total: 259ms	remaining: 270ms
49:	learn: 19.8485858	total: 264ms	remaining: 264ms
50:	learn: 19.6218360	total: 270ms	remaining: 260ms
51:	learn: 19.4340385	total: 275ms	remaining: 254ms
52:	learn: 19.2755253	total: 280ms	remaining: 248ms
53:	learn: 19.1513895	total: 285ms	remaining: 242ms
54:	learn: 18.9926498	total: 289ms	remaining: 237ms
55:	learn: 18.9138819	total: 294ms	remaining: 231ms
56:	learn: 18.7601521	total: 298ms	remaining: 225ms
57:	learn: 18.5383747	total: 303ms	remaining: 219ms
58:	learn: 18.3203725	total: 308ms	remaining: 214ms
59:	learn: 18.1486463	total: 312ms	remaining: 208ms
60:	learn: 18.0745744	total: 317ms	remaining: 203ms
61:	learn: 17.9860471	total: 321ms	remaining: 197ms
62:	learn: 17.8554657	total: 326ms	remaining: 191ms
63:	learn: 17.7725698	total: 331ms	remaining: 186ms
64:	learn: 17.6461546	total: 336ms	remaining: 181ms
65:	learn: 17.4876253	total: 340ms	remaining: 175ms
66:	learn: 17.3902491	total: 345ms	remaining: 170ms
67:	learn: 17.3074315	total: 350ms	remaining: 165ms
68:	learn: 17.1916970	total: 357ms	remaining: 160ms
69:	learn: 17.0036214	total: 366ms	remaining: 157ms
70:	learn: 16.9063477	total: 378ms	remaining: 154ms
71:	learn: 16.7543840	total: 386ms	remaining: 150ms
72:	learn: 16.5926263	total: 392ms	remaining: 145ms
73:	learn: 16.4828353	total: 397ms	remaining: 140ms
74:	learn: 16.3669301	total: 403ms	remaining: 134ms
75:	learn: 16.2378249	total: 409ms	remaining: 129ms
76:	learn: 16.1357752	total: 414ms	remaining: 124ms
77:	learn: 16.0178742	total: 419ms	remaining: 118ms
78:	learn: 15.9116966	total: 425ms	remaining: 113ms
79:	learn: 15.7262830	total: 430ms	remaining: 107ms
80:	learn: 15.7159723	total: 431ms	remaining: 101ms
81:	learn: 15.5586375	total: 436ms	remaining: 95.7ms
82:	learn: 15.4694360	total: 441ms	remaining: 90.4ms
83:	learn: 15.3275068	total: 447ms	remaining: 85.1ms
84:	learn: 15.1629281	total: 452ms	remaining: 79.8ms
85:	learn: 15.0586873	total: 459ms	remaining: 74.7ms
86:	learn: 14.9760174	total: 464ms	remaining: 69.4ms
87:	learn: 14.8800618	total: 469ms	remaining: 63.9ms
88:	learn: 14.7766054	total: 473ms	remaining: 58.5ms
89:	learn: 14.6906406	total: 477ms	remaining: 53ms
90:	learn: 14.6034436	total: 481ms	remaining: 47.6ms
91:	learn: 14.5330407	total: 485ms	remaining: 42.2ms
92:	learn: 14.5039218	total: 490ms	remaining: 36.9ms
93:	learn: 14.4182642	total: 494ms	remaining: 31.6ms
94:	learn: 14.3711363	total: 499ms	remaining: 26.3ms
95:	learn: 14.2590638	total: 503ms	remaining: 20.9ms
96:	learn: 14.1640312	total: 507ms	remaining: 15.7ms
97:	learn: 14.0693305	total: 511ms	remaining: 10.4ms
98:	learn: 13.9520103	total: 516ms	remaining: 5.21ms
99:	learn: 13.8600248	total: 520ms	remaining: 0us
0:	learn: 46.3790355	total: 7.33ms	remaining: 726ms
1:	learn: 44.9322264	total: 13.3ms	remaining: 652ms
2:	learn: 43.6452304	total: 18.6ms	remaining: 602ms
3:	learn: 42.6058006	total: 23.8ms	remaining: 570ms
4:	learn: 41.4421922	total: 28.7ms	remaining: 545ms
5:	learn: 40.4565773	total: 34ms	remaining: 533ms
6:	learn: 39.3776917	total: 39.2ms	remaining: 521ms
7:	learn: 38.4003857	total: 44.5ms	remaining: 511ms
8:	learn: 37.4288067	total: 49.8ms	remaining: 503ms
9:	learn: 36.5623656	total: 54.6ms	remaining: 491ms
10:	learn: 35.7389643	total: 59.8ms	remaining: 484ms
11:	learn: 34.7960924	total: 65.2ms	remaining: 478ms
12:	learn: 34.0156187	total: 70ms	remaining: 469ms
13:	learn: 33.2702023	total: 75.6ms	remaining: 465ms
14:	learn: 32.7554868	total: 80.9ms	remaining: 458ms
15:	learn: 32.0395687	total: 85.1ms	remaining: 447ms
16:	learn: 31.4793803	total: 89.3ms	remaining: 436ms
17:	learn: 30.8770173	total: 93.8ms	remaining: 427ms
18:	learn: 30.3071701	total: 98.3ms	remaining: 419ms
19:	learn: 29.6256037	total: 103ms	remaining: 411ms
20:	learn: 29.1224077	total: 107ms	remaining: 402ms
21:	learn: 28.6312349	total: 111ms	remaining: 394ms
22:	learn: 28.2178229	total: 115ms	remaining: 386ms
23:	learn: 27.8751859	total: 120ms	remaining: 379ms
24:	learn: 27.5885656	total: 124ms	remaining: 371ms
25:	learn: 27.3828327	total: 128ms	remaining: 365ms
26:	learn: 27.1654356	total: 133ms	remaining: 358ms
27:	learn: 26.6705724	total: 137ms	remaining: 353ms
28:	learn: 26.2420935	total: 142ms	remaining: 347ms
29:	learn: 25.9314906	total: 146ms	remaining: 341ms
30:	learn: 25.4679909	total: 150ms	remaining: 334ms
31:	learn: 25.0442298	total: 155ms	remaining: 329ms
32:	learn: 24.8946212	total: 159ms	remaining: 324ms
33:	learn: 24.4858057	total: 164ms	remaining: 318ms
34:	learn: 24.1558048	total: 168ms	remaining: 313ms
35:	learn: 23.8344043	total: 173ms	remaining: 307ms
36:	learn: 23.5433295	total: 178ms	remaining: 302ms
37:	learn: 23.1976742	total: 183ms	remaining: 298ms
38:	learn: 22.9284547	total: 189ms	remaining: 296ms
39:	learn: 22.8228111	total: 199ms	remaining: 298ms
40:	learn: 22.5248890	total: 213ms	remaining: 307ms
41:	learn: 22.2473427	total: 223ms	remaining: 308ms
42:	learn: 21.9883370	total: 230ms	remaining: 304ms
43:	learn: 21.7825052	total: 236ms	remaining: 300ms
44:	learn: 21.5752155	total: 242ms	remaining: 295ms
45:	learn: 21.3418301	total: 247ms	remaining: 290ms
46:	learn: 21.1437594	total: 253ms	remaining: 285ms
47:	learn: 21.0215777	total: 259ms	remaining: 280ms
48:	learn: 20.7473432	total: 264ms	remaining: 275ms
49:	learn: 20.4823805	total: 270ms	remaining: 270ms
50:	learn: 20.3609754	total: 276ms	remaining: 265ms
51:	learn: 20.2403089	total: 281ms	remaining: 259ms
52:	learn: 20.1310909	total: 288ms	remaining: 255ms
53:	learn: 19.9330687	total: 295ms	remaining: 251ms
54:	learn: 19.7246810	total: 300ms	remaining: 245ms
55:	learn: 19.5252152	total: 305ms	remaining: 239ms
56:	learn: 19.3485723	total: 310ms	remaining: 234ms
57:	learn: 19.1619803	total: 315ms	remaining: 228ms
58:	learn: 19.0365136	total: 320ms	remaining: 223ms
59:	learn: 18.8921146	total: 325ms	remaining: 216ms
60:	learn: 18.7924351	total: 329ms	remaining: 211ms
61:	learn: 18.5856121	total: 334ms	remaining: 205ms
62:	learn: 18.3782831	total: 338ms	remaining: 199ms
63:	learn: 18.2642221	total: 343ms	remaining: 193ms
64:	learn: 18.1420774	total: 348ms	remaining: 187ms
65:	learn: 17.9430729	total: 352ms	remaining: 182ms
66:	learn: 17.7334985	total: 357ms	remaining: 176ms
67:	learn: 17.6005273	total: 362ms	remaining: 171ms
68:	learn: 17.5129366	total: 386ms	remaining: 173ms
69:	learn: 17.4066411	total: 395ms	remaining: 169ms
70:	learn: 17.2755069	total: 405ms	remaining: 166ms
71:	learn: 17.1544654	total: 413ms	remaining: 160ms
72:	learn: 17.0271914	total: 420ms	remaining: 155ms
73:	learn: 16.9474801	total: 426ms	remaining: 150ms
74:	learn: 16.8579544	total: 431ms	remaining: 144ms
75:	learn: 16.7574463	total: 437ms	remaining: 138ms
76:	learn: 16.6586906	total: 442ms	remaining: 132ms
77:	learn: 16.5365221	total: 448ms	remaining: 126ms
78:	learn: 16.4109716	total: 453ms	remaining: 121ms
79:	learn: 16.2533395	total: 459ms	remaining: 115ms
80:	learn: 16.1257882	total: 465ms	remaining: 109ms
81:	learn: 16.0234034	total: 471ms	remaining: 103ms
82:	learn: 15.8574011	total: 476ms	remaining: 97.4ms
83:	learn: 15.7737788	total: 481ms	remaining: 91.6ms
84:	learn: 15.6806864	total: 487ms	remaining: 85.9ms
85:	learn: 15.5807484	total: 492ms	remaining: 80.1ms
86:	learn: 15.4928987	total: 497ms	remaining: 74.3ms
87:	learn: 15.4321572	total: 502ms	remaining: 68.4ms
88:	learn: 15.3722788	total: 506ms	remaining: 62.6ms
89:	learn: 15.2571272	total: 511ms	remaining: 56.8ms
90:	learn: 15.1198109	total: 516ms	remaining: 51ms
91:	learn: 15.0009209	total: 520ms	remaining: 45.2ms
92:	learn: 14.8967484	total: 525ms	remaining: 39.5ms
93:	learn: 14.8348358	total: 529ms	remaining: 33.8ms
94:	learn: 14.7607641	total: 534ms	remaining: 28.1ms
95:	learn: 14.5887689	total: 538ms	remaining: 22.4ms
96:	learn: 14.4962918	total: 543ms	remaining: 16.8ms
97:	learn: 14.4172436	total: 547ms	remaining: 11.2ms
98:	learn: 14.3676018	total: 552ms	remaining: 5.58ms
99:	learn: 14.2868270	total: 557ms	remaining: 0us
0:	learn: 27.3716363	total: 9.09ms	remaining: 900ms
1:	learn: 26.7586038	total: 17.1ms	remaining: 836ms
2:	learn: 26.1513803	total: 23.1ms	remaining: 746ms
3:	learn: 25.6569249	total: 28.8ms	remaining: 691ms
4:	learn: 25.0448773	total: 34.2ms	remaining: 649ms
5:	learn: 24.6011243	total: 39.8ms	remaining: 624ms
6:	learn: 23.9665913	total: 45.3ms	remaining: 602ms
7:	learn: 23.5201950	total: 50.6ms	remaining: 581ms
8:	learn: 22.9901116	total: 55.7ms	remaining: 564ms
9:	learn: 22.5256710	total: 61.2ms	remaining: 550ms
10:	learn: 22.1598038	total: 66.3ms	remaining: 536ms
11:	learn: 21.7726663	total: 71.5ms	remaining: 525ms
12:	learn: 21.5014839	total: 77.2ms	remaining: 517ms
13:	learn: 21.1063605	total: 83.3ms	remaining: 511ms
14:	learn: 20.7648344	total: 88.3ms	remaining: 500ms
15:	learn: 20.4005501	total: 93ms	remaining: 488ms
16:	learn: 20.0308689	total: 98.1ms	remaining: 479ms
17:	learn: 19.7619894	total: 103ms	remaining: 467ms
18:	learn: 19.4006982	total: 107ms	remaining: 457ms
19:	learn: 19.1201126	total: 112ms	remaining: 448ms
20:	learn: 18.7774355	total: 117ms	remaining: 439ms
21:	learn: 18.5027646	total: 121ms	remaining: 430ms
22:	learn: 18.1958499	total: 126ms	remaining: 421ms
23:	learn: 18.0191187	total: 131ms	remaining: 414ms
24:	learn: 17.8387270	total: 135ms	remaining: 405ms
25:	learn: 17.5280679	total: 139ms	remaining: 396ms
26:	learn: 17.3062744	total: 143ms	remaining: 387ms
27:	learn: 17.0131776	total: 147ms	remaining: 379ms
28:	learn: 16.7409451	total: 152ms	remaining: 371ms
29:	learn: 16.5094615	total: 156ms	remaining: 364ms
30:	learn: 16.2691858	total: 161ms	remaining: 358ms
31:	learn: 16.0502592	total: 166ms	remaining: 352ms
32:	learn: 15.8734968	total: 170ms	remaining: 345ms
33:	learn: 15.6646527	total: 175ms	remaining: 340ms
34:	learn: 15.5331988	total: 179ms	remaining: 333ms
35:	learn: 15.2505462	total: 184ms	remaining: 327ms
36:	learn: 15.0313064	total: 190ms	remaining: 324ms
37:	learn: 14.8734366	total: 204ms	remaining: 333ms
38:	learn: 14.6699229	total: 214ms	remaining: 335ms
39:	learn: 14.5898168	total: 221ms	remaining: 332ms
40:	learn: 14.4208947	total: 227ms	remaining: 327ms
41:	learn: 14.2850223	total: 234ms	remaining: 322ms
42:	learn: 14.1442724	total: 239ms	remaining: 317ms
43:	learn: 13.9770221	total: 244ms	remaining: 311ms
44:	learn: 13.8778270	total: 250ms	remaining: 306ms
45:	learn: 13.6902000	total: 256ms	remaining: 300ms
46:	learn: 13.5674586	total: 261ms	remaining: 294ms
47:	learn: 13.3835423	total: 267ms	remaining: 289ms
48:	learn: 13.2779430	total: 273ms	remaining: 284ms
49:	learn: 13.1218837	total: 278ms	remaining: 278ms
50:	learn: 13.0063048	total: 283ms	remaining: 272ms
51:	learn: 12.8507410	total: 290ms	remaining: 267ms
52:	learn: 12.7455025	total: 296ms	remaining: 262ms
53:	learn: 12.6261811	total: 300ms	remaining: 256ms
54:	learn: 12.5173579	total: 305ms	remaining: 249ms
55:	learn: 12.4529502	total: 310ms	remaining: 243ms
56:	learn: 12.3944087	total: 314ms	remaining: 237ms
57:	learn: 12.2888055	total: 318ms	remaining: 231ms
58:	learn: 12.1806093	total: 323ms	remaining: 224ms
59:	learn: 12.0712110	total: 327ms	remaining: 218ms
60:	learn: 11.9961171	total: 332ms	remaining: 212ms
61:	learn: 11.8823972	total: 336ms	remaining: 206ms
62:	learn: 11.7943665	total: 342ms	remaining: 201ms
63:	learn: 11.7212181	total: 347ms	remaining: 195ms
64:	learn: 11.6362437	total: 351ms	remaining: 189ms
65:	learn: 11.5522591	total: 356ms	remaining: 184ms
66:	learn: 11.4500175	total: 361ms	remaining: 178ms
67:	learn: 11.3258387	total: 368ms	remaining: 173ms
68:	learn: 11.2482685	total: 376ms	remaining: 169ms
69:	learn: 11.1755209	total: 383ms	remaining: 164ms
70:	learn: 11.0887540	total: 389ms	remaining: 159ms
71:	learn: 11.0054578	total: 395ms	remaining: 153ms
72:	learn: 10.9318991	total: 402ms	remaining: 149ms
73:	learn: 10.8522001	total: 407ms	remaining: 143ms
74:	learn: 10.7674012	total: 413ms	remaining: 138ms
75:	learn: 10.7187991	total: 418ms	remaining: 132ms
76:	learn: 10.6548375	total: 424ms	remaining: 127ms
77:	learn: 10.6095260	total: 429ms	remaining: 121ms
78:	learn: 10.5658533	total: 435ms	remaining: 116ms
79:	learn: 10.5097785	total: 440ms	remaining: 110ms
80:	learn: 10.4527426	total: 446ms	remaining: 105ms
81:	learn: 10.3885391	total: 451ms	remaining: 99ms
82:	learn: 10.3299710	total: 456ms	remaining: 93.4ms
83:	learn: 10.2436190	total: 461ms	remaining: 87.9ms
84:	learn: 10.1749078	total: 467ms	remaining: 82.4ms
85:	learn: 10.0946062	total: 472ms	remaining: 76.8ms
86:	learn: 10.0390578	total: 477ms	remaining: 71.3ms
87:	learn: 9.9852955	total: 482ms	remaining: 65.7ms
88:	learn: 9.9302992	total: 488ms	remaining: 60.3ms
89:	learn: 9.8630695	total: 493ms	remaining: 54.8ms
90:	learn: 9.7805856	total: 498ms	remaining: 49.3ms
91:	learn: 9.7127178	total: 502ms	remaining: 43.7ms
92:	learn: 9.6557593	total: 507ms	remaining: 38.1ms
93:	learn: 9.5921286	total: 511ms	remaining: 32.6ms
94:	learn: 9.5187489	total: 515ms	remaining: 27.1ms
95:	learn: 9.4500955	total: 520ms	remaining: 21.7ms
96:	learn: 9.3834246	total: 524ms	remaining: 16.2ms
97:	learn: 9.3221422	total: 528ms	remaining: 10.8ms
98:	learn: 9.2581494	total: 532ms	remaining: 5.38ms
99:	learn: 9.2021708	total: 537ms	remaining: 0us
0:	learn: 42.4859206	total: 5.22ms	remaining: 517ms
1:	learn: 41.2348392	total: 9.72ms	remaining: 476ms
2:	learn: 39.9044703	total: 14.5ms	remaining: 469ms
3:	learn: 38.6081616	total: 19.6ms	remaining: 471ms
4:	learn: 37.4610571	total: 28.5ms	remaining: 541ms
5:	learn: 36.3390199	total: 37ms	remaining: 580ms
6:	learn: 35.1817084	total: 45.9ms	remaining: 609ms
7:	learn: 34.1132574	total: 54.4ms	remaining: 625ms
8:	learn: 33.4673440	total: 60ms	remaining: 607ms
9:	learn: 32.4688388	total: 65.6ms	remaining: 591ms
10:	learn: 31.5801915	total: 71ms	remaining: 574ms
11:	learn: 30.7270901	total: 76.8ms	remaining: 564ms
12:	learn: 30.1030598	total: 82.8ms	remaining: 554ms
13:	learn: 29.2931850	total: 84.7ms	remaining: 520ms
14:	learn: 28.5479304	total: 89.9ms	remaining: 510ms
15:	learn: 27.9377772	total: 95.6ms	remaining: 502ms
16:	learn: 27.2217220	total: 101ms	remaining: 491ms
17:	learn: 26.5521028	total: 106ms	remaining: 482ms
18:	learn: 25.9926990	total: 111ms	remaining: 472ms
19:	learn: 25.3989069	total: 116ms	remaining: 465ms
20:	learn: 24.8440572	total: 122ms	remaining: 459ms
21:	learn: 24.2947764	total: 127ms	remaining: 450ms
22:	learn: 23.7487326	total: 131ms	remaining: 440ms
23:	learn: 23.1892639	total: 136ms	remaining: 431ms
24:	learn: 22.7249056	total: 141ms	remaining: 422ms
25:	learn: 22.2987315	total: 146ms	remaining: 415ms
26:	learn: 21.9065428	total: 150ms	remaining: 406ms
27:	learn: 21.4981889	total: 155ms	remaining: 397ms
28:	learn: 21.0962886	total: 159ms	remaining: 388ms
29:	learn: 20.8295403	total: 163ms	remaining: 380ms
30:	learn: 20.6084828	total: 167ms	remaining: 372ms
31:	learn: 20.2966492	total: 171ms	remaining: 364ms
32:	learn: 19.9841639	total: 176ms	remaining: 356ms
33:	learn: 19.7208663	total: 180ms	remaining: 349ms
34:	learn: 19.4135423	total: 184ms	remaining: 342ms
35:	learn: 19.2034111	total: 189ms	remaining: 336ms
36:	learn: 18.9402581	total: 193ms	remaining: 329ms
37:	learn: 18.7382588	total: 197ms	remaining: 322ms
38:	learn: 18.4705302	total: 202ms	remaining: 316ms
39:	learn: 18.2354107	total: 206ms	remaining: 310ms
40:	learn: 17.9669553	total: 211ms	remaining: 304ms
41:	learn: 17.7329625	total: 215ms	remaining: 297ms
42:	learn: 17.4715711	total: 220ms	remaining: 292ms
43:	learn: 17.2285510	total: 225ms	remaining: 286ms
44:	learn: 17.0261018	total: 230ms	remaining: 281ms
45:	learn: 16.8373998	total: 235ms	remaining: 275ms
46:	learn: 16.6975431	total: 240ms	remaining: 270ms
47:	learn: 16.5029954	total: 244ms	remaining: 264ms
48:	learn: 16.3332890	total: 249ms	remaining: 259ms
49:	learn: 16.1354926	total: 257ms	remaining: 257ms
50:	learn: 16.0073114	total: 264ms	remaining: 254ms
51:	learn: 15.9043247	total: 274ms	remaining: 253ms
52:	learn: 15.7303782	total: 280ms	remaining: 248ms
53:	learn: 15.5560543	total: 286ms	remaining: 244ms
54:	learn: 15.3435331	total: 292ms	remaining: 239ms
55:	learn: 15.2045774	total: 297ms	remaining: 233ms
56:	learn: 15.0609857	total: 303ms	remaining: 228ms
57:	learn: 14.9370901	total: 308ms	remaining: 223ms
58:	learn: 14.8410465	total: 314ms	remaining: 218ms
59:	learn: 14.7081240	total: 319ms	remaining: 213ms
60:	learn: 14.5636282	total: 325ms	remaining: 208ms
61:	learn: 14.4606865	total: 330ms	remaining: 202ms
62:	learn: 14.3731446	total: 335ms	remaining: 197ms
63:	learn: 14.2045145	total: 340ms	remaining: 191ms
64:	learn: 14.0461252	total: 345ms	remaining: 186ms
65:	learn: 13.9195454	total: 351ms	remaining: 181ms
66:	learn: 13.8190753	total: 357ms	remaining: 176ms
67:	learn: 13.7252500	total: 361ms	remaining: 170ms
68:	learn: 13.6566471	total: 365ms	remaining: 164ms
69:	learn: 13.5121693	total: 370ms	remaining: 159ms
70:	learn: 13.4442080	total: 375ms	remaining: 153ms
71:	learn: 13.3279962	total: 379ms	remaining: 147ms
72:	learn: 13.2456458	total: 384ms	remaining: 142ms
73:	learn: 13.1417720	total: 388ms	remaining: 136ms
74:	learn: 13.0795807	total: 392ms	remaining: 131ms
75:	learn: 12.9858298	total: 397ms	remaining: 125ms
76:	learn: 12.9193581	total: 402ms	remaining: 120ms
77:	learn: 12.8008737	total: 407ms	remaining: 115ms
78:	learn: 12.7215618	total: 411ms	remaining: 109ms
79:	learn: 12.6252386	total: 416ms	remaining: 104ms
80:	learn: 12.5456193	total: 420ms	remaining: 98.6ms
81:	learn: 12.4550597	total: 425ms	remaining: 93.4ms
82:	learn: 12.3684000	total: 430ms	remaining: 88.1ms
83:	learn: 12.2904435	total: 435ms	remaining: 82.9ms
84:	learn: 12.2128737	total: 440ms	remaining: 77.7ms
85:	learn: 12.1069589	total: 445ms	remaining: 72.5ms
86:	learn: 11.9975688	total: 453ms	remaining: 67.7ms
87:	learn: 11.9113686	total: 461ms	remaining: 62.8ms
88:	learn: 11.8489375	total: 471ms	remaining: 58.2ms
89:	learn: 11.7446095	total: 477ms	remaining: 53ms
90:	learn: 11.6793247	total: 483ms	remaining: 47.8ms
91:	learn: 11.6120227	total: 489ms	remaining: 42.5ms
92:	learn: 11.5559096	total: 494ms	remaining: 37.2ms
93:	learn: 11.5063069	total: 499ms	remaining: 31.9ms
94:	learn: 11.4776305	total: 504ms	remaining: 26.5ms
95:	learn: 11.4163720	total: 510ms	remaining: 21.3ms
96:	learn: 11.3547170	total: 516ms	remaining: 15.9ms
97:	learn: 11.2947704	total: 521ms	remaining: 10.6ms
98:	learn: 11.2120192	total: 526ms	remaining: 5.32ms
99:	learn: 11.1607467	total: 531ms	remaining: 0us
0:	learn: 46.2258117	total: 1.93ms	remaining: 192ms
1:	learn: 45.1972950	total: 6.45ms	remaining: 316ms
2:	learn: 43.7957357	total: 10.9ms	remaining: 351ms
3:	learn: 42.5777391	total: 15.2ms	remaining: 364ms
4:	learn: 41.5327833	total: 19.3ms	remaining: 366ms
5:	learn: 40.4435276	total: 23.8ms	remaining: 373ms
6:	learn: 39.4670075	total: 28.1ms	remaining: 373ms
7:	learn: 38.7108484	total: 32.4ms	remaining: 373ms
8:	learn: 38.1402654	total: 37.1ms	remaining: 375ms
9:	learn: 37.2648485	total: 42.7ms	remaining: 384ms
10:	learn: 36.4694198	total: 47.7ms	remaining: 386ms
11:	learn: 35.5168067	total: 52.7ms	remaining: 386ms
12:	learn: 34.7782207	total: 57.5ms	remaining: 385ms
13:	learn: 33.9839024	total: 62.3ms	remaining: 383ms
14:	learn: 33.2222232	total: 67ms	remaining: 380ms
15:	learn: 32.4007311	total: 74.2ms	remaining: 389ms
16:	learn: 31.6552844	total: 81.8ms	remaining: 400ms
17:	learn: 30.9799186	total: 89.1ms	remaining: 406ms
18:	learn: 30.2888540	total: 96.2ms	remaining: 410ms
19:	learn: 29.7032334	total: 104ms	remaining: 415ms
20:	learn: 29.2886252	total: 109ms	remaining: 409ms
21:	learn: 28.7682793	total: 114ms	remaining: 405ms
22:	learn: 28.4016143	total: 119ms	remaining: 399ms
23:	learn: 27.6630864	total: 125ms	remaining: 395ms
24:	learn: 27.2033858	total: 130ms	remaining: 390ms
25:	learn: 26.5935061	total: 135ms	remaining: 385ms
26:	learn: 26.1389740	total: 140ms	remaining: 379ms
27:	learn: 25.7937555	total: 146ms	remaining: 375ms
28:	learn: 25.4247732	total: 151ms	remaining: 370ms
29:	learn: 24.9684460	total: 156ms	remaining: 365ms
30:	learn: 24.5885923	total: 162ms	remaining: 359ms
31:	learn: 24.2703978	total: 167ms	remaining: 355ms
32:	learn: 23.8387638	total: 172ms	remaining: 350ms
33:	learn: 23.6317607	total: 178ms	remaining: 345ms
34:	learn: 23.3263085	total: 182ms	remaining: 338ms
35:	learn: 22.9960495	total: 186ms	remaining: 331ms
36:	learn: 22.6616330	total: 191ms	remaining: 325ms
37:	learn: 22.1801596	total: 195ms	remaining: 318ms
38:	learn: 21.8114556	total: 199ms	remaining: 312ms
39:	learn: 21.5714330	total: 204ms	remaining: 306ms
40:	learn: 21.1089354	total: 208ms	remaining: 299ms
41:	learn: 20.8040772	total: 212ms	remaining: 293ms
42:	learn: 20.4965159	total: 216ms	remaining: 287ms
43:	learn: 20.2898724	total: 221ms	remaining: 281ms
44:	learn: 20.0169420	total: 225ms	remaining: 275ms
45:	learn: 19.8348803	total: 229ms	remaining: 269ms
46:	learn: 19.5554754	total: 234ms	remaining: 264ms
47:	learn: 19.2782294	total: 238ms	remaining: 258ms
48:	learn: 19.0395772	total: 243ms	remaining: 253ms
49:	learn: 18.7983211	total: 247ms	remaining: 247ms
50:	learn: 18.6396276	total: 252ms	remaining: 242ms
51:	learn: 18.4535258	total: 256ms	remaining: 237ms
52:	learn: 18.2777199	total: 261ms	remaining: 232ms
53:	learn: 18.0572244	total: 266ms	remaining: 227ms
54:	learn: 17.8213238	total: 271ms	remaining: 222ms
55:	learn: 17.5926067	total: 276ms	remaining: 217ms
56:	learn: 17.3990115	total: 281ms	remaining: 212ms
57:	learn: 17.2444936	total: 287ms	remaining: 208ms
58:	learn: 17.0900496	total: 295ms	remaining: 205ms
59:	learn: 16.8497932	total: 306ms	remaining: 204ms
60:	learn: 16.7335122	total: 312ms	remaining: 199ms
61:	learn: 16.5285847	total: 318ms	remaining: 195ms
62:	learn: 16.4326012	total: 324ms	remaining: 190ms
63:	learn: 16.2977130	total: 329ms	remaining: 185ms
64:	learn: 16.1876309	total: 335ms	remaining: 180ms
65:	learn: 16.0948338	total: 340ms	remaining: 175ms
66:	learn: 15.9055478	total: 345ms	remaining: 170ms
67:	learn: 15.8244487	total: 350ms	remaining: 165ms
68:	learn: 15.6064385	total: 356ms	remaining: 160ms
69:	learn: 15.4574801	total: 362ms	remaining: 155ms
70:	learn: 15.4064312	total: 368ms	remaining: 150ms
71:	learn: 15.2463289	total: 373ms	remaining: 145ms
72:	learn: 15.1083967	total: 379ms	remaining: 140ms
73:	learn: 14.8909334	total: 386ms	remaining: 135ms
74:	learn: 14.7646415	total: 391ms	remaining: 130ms
75:	learn: 14.6847350	total: 395ms	remaining: 125ms
76:	learn: 14.5941501	total: 400ms	remaining: 119ms
77:	learn: 14.5049987	total: 404ms	remaining: 114ms
78:	learn: 14.4043748	total: 408ms	remaining: 109ms
79:	learn: 14.2633292	total: 413ms	remaining: 103ms
80:	learn: 14.1257360	total: 417ms	remaining: 97.8ms
81:	learn: 14.0626940	total: 421ms	remaining: 92.4ms
82:	learn: 13.9429889	total: 425ms	remaining: 87.1ms
83:	learn: 13.8834534	total: 430ms	remaining: 81.8ms
84:	learn: 13.7361899	total: 434ms	remaining: 76.5ms
85:	learn: 13.6473170	total: 438ms	remaining: 71.3ms
86:	learn: 13.5168963	total: 442ms	remaining: 66.1ms
87:	learn: 13.3778373	total: 447ms	remaining: 60.9ms
88:	learn: 13.2827073	total: 451ms	remaining: 55.8ms
89:	learn: 13.1962748	total: 456ms	remaining: 50.6ms
90:	learn: 13.1317634	total: 461ms	remaining: 45.5ms
91:	learn: 12.9996032	total: 465ms	remaining: 40.5ms
92:	learn: 12.8843393	total: 470ms	remaining: 35.4ms
93:	learn: 12.8187378	total: 475ms	remaining: 30.3ms
94:	learn: 12.7176304	total: 480ms	remaining: 25.3ms
95:	learn: 12.6420924	total: 485ms	remaining: 20.2ms
96:	learn: 12.5500097	total: 489ms	remaining: 15.1ms
97:	learn: 12.4837866	total: 497ms	remaining: 10.1ms
98:	learn: 12.3597911	total: 504ms	remaining: 5.09ms
99:	learn: 12.2792795	total: 511ms	remaining: 0us
0:	learn: 45.8627255	total: 2.44ms	remaining: 242ms
1:	learn: 44.8162174	total: 8.46ms	remaining: 414ms
2:	learn: 43.9865430	total: 13.7ms	remaining: 441ms
3:	learn: 42.9919872	total: 18.7ms	remaining: 449ms
4:	learn: 41.8902122	total: 24.5ms	remaining: 466ms
5:	learn: 41.0496461	total: 30.9ms	remaining: 484ms
6:	learn: 40.0946649	total: 35.9ms	remaining: 477ms
7:	learn: 39.3893186	total: 40.6ms	remaining: 467ms
8:	learn: 38.5282166	total: 45.1ms	remaining: 456ms
9:	learn: 37.5895258	total: 49.7ms	remaining: 447ms
10:	learn: 36.7137467	total: 54.6ms	remaining: 442ms
11:	learn: 35.7818300	total: 59.4ms	remaining: 436ms
12:	learn: 34.8459255	total: 64.3ms	remaining: 430ms
13:	learn: 34.2225882	total: 69ms	remaining: 424ms
14:	learn: 33.4045891	total: 73.7ms	remaining: 418ms
15:	learn: 32.7931441	total: 78.4ms	remaining: 412ms
16:	learn: 32.2009164	total: 82.9ms	remaining: 405ms
17:	learn: 31.4431417	total: 87.5ms	remaining: 399ms
18:	learn: 30.6940787	total: 92.3ms	remaining: 394ms
19:	learn: 30.2032085	total: 97.3ms	remaining: 389ms
20:	learn: 29.6620038	total: 102ms	remaining: 385ms
21:	learn: 29.1329122	total: 107ms	remaining: 380ms
22:	learn: 28.9285069	total: 112ms	remaining: 375ms
23:	learn: 28.2773846	total: 117ms	remaining: 370ms
24:	learn: 27.6312201	total: 122ms	remaining: 367ms
25:	learn: 27.1224449	total: 127ms	remaining: 363ms
26:	learn: 26.7129115	total: 133ms	remaining: 358ms
27:	learn: 26.2030118	total: 137ms	remaining: 353ms
28:	learn: 25.8449000	total: 142ms	remaining: 348ms
29:	learn: 25.3832705	total: 147ms	remaining: 344ms
30:	learn: 24.9797913	total: 156ms	remaining: 346ms
31:	learn: 24.7190041	total: 164ms	remaining: 349ms
32:	learn: 24.4139846	total: 174ms	remaining: 352ms
33:	learn: 24.0085081	total: 180ms	remaining: 349ms
34:	learn: 23.7092621	total: 186ms	remaining: 346ms
35:	learn: 23.4620026	total: 192ms	remaining: 341ms
36:	learn: 23.0924724	total: 197ms	remaining: 336ms
37:	learn: 22.6471910	total: 203ms	remaining: 331ms
38:	learn: 22.3422405	total: 208ms	remaining: 325ms
39:	learn: 22.0391348	total: 213ms	remaining: 320ms
40:	learn: 21.7653773	total: 218ms	remaining: 314ms
41:	learn: 21.4652025	total: 223ms	remaining: 308ms
42:	learn: 21.1937288	total: 228ms	remaining: 303ms
43:	learn: 20.9481301	total: 234ms	remaining: 298ms
44:	learn: 20.7022718	total: 239ms	remaining: 292ms
45:	learn: 20.6128483	total: 244ms	remaining: 287ms
46:	learn: 20.5444203	total: 250ms	remaining: 282ms
47:	learn: 20.2652868	total: 255ms	remaining: 276ms
48:	learn: 20.0465015	total: 259ms	remaining: 270ms
49:	learn: 19.8485858	total: 264ms	remaining: 264ms
50:	learn: 19.6218360	total: 268ms	remaining: 258ms
51:	learn: 19.4340385	total: 273ms	remaining: 252ms
52:	learn: 19.2755253	total: 277ms	remaining: 246ms
53:	learn: 19.1513895	total: 281ms	remaining: 240ms
54:	learn: 18.9926498	total: 286ms	remaining: 234ms
55:	learn: 18.9138819	total: 290ms	remaining: 228ms
56:	learn: 18.7601521	total: 294ms	remaining: 222ms
57:	learn: 18.5383747	total: 299ms	remaining: 216ms
58:	learn: 18.3203725	total: 304ms	remaining: 211ms
59:	learn: 18.1486463	total: 308ms	remaining: 205ms
60:	learn: 18.0745744	total: 313ms	remaining: 200ms
61:	learn: 17.9860471	total: 318ms	remaining: 195ms
62:	learn: 17.8554657	total: 322ms	remaining: 189ms
63:	learn: 17.7725698	total: 327ms	remaining: 184ms
64:	learn: 17.6461546	total: 332ms	remaining: 179ms
65:	learn: 17.4876253	total: 337ms	remaining: 174ms
66:	learn: 17.3902491	total: 341ms	remaining: 168ms
67:	learn: 17.3074315	total: 346ms	remaining: 163ms
68:	learn: 17.1916970	total: 350ms	remaining: 157ms
69:	learn: 17.0036214	total: 355ms	remaining: 152ms
70:	learn: 16.9063477	total: 360ms	remaining: 147ms
71:	learn: 16.7543840	total: 368ms	remaining: 143ms
72:	learn: 16.5926263	total: 376ms	remaining: 139ms
73:	learn: 16.4828353	total: 385ms	remaining: 135ms
74:	learn: 16.3669301	total: 393ms	remaining: 131ms
75:	learn: 16.2378249	total: 398ms	remaining: 126ms
76:	learn: 16.1357752	total: 403ms	remaining: 121ms
77:	learn: 16.0178742	total: 409ms	remaining: 115ms
78:	learn: 15.9116966	total: 414ms	remaining: 110ms
79:	learn: 15.7262830	total: 419ms	remaining: 105ms
80:	learn: 15.7159723	total: 420ms	remaining: 98.5ms
81:	learn: 15.5586375	total: 425ms	remaining: 93.3ms
82:	learn: 15.4694360	total: 430ms	remaining: 88.1ms
83:	learn: 15.3275068	total: 435ms	remaining: 82.9ms
84:	learn: 15.1629281	total: 441ms	remaining: 77.9ms
85:	learn: 15.0586873	total: 447ms	remaining: 72.7ms
86:	learn: 14.9760174	total: 451ms	remaining: 67.5ms
87:	learn: 14.8800618	total: 457ms	remaining: 62.3ms
88:	learn: 14.7766054	total: 463ms	remaining: 57.2ms
89:	learn: 14.6906406	total: 467ms	remaining: 51.9ms
90:	learn: 14.6034436	total: 472ms	remaining: 46.7ms
91:	learn: 14.5330407	total: 476ms	remaining: 41.4ms
92:	learn: 14.5039218	total: 481ms	remaining: 36.2ms
93:	learn: 14.4182642	total: 485ms	remaining: 31ms
94:	learn: 14.3711363	total: 489ms	remaining: 25.8ms
95:	learn: 14.2590638	total: 494ms	remaining: 20.6ms
96:	learn: 14.1640312	total: 498ms	remaining: 15.4ms
97:	learn: 14.0693305	total: 502ms	remaining: 10.2ms
98:	learn: 13.9520103	total: 506ms	remaining: 5.11ms
99:	learn: 13.8600248	total: 510ms	remaining: 0us
0:	learn: 46.3790355	total: 8.01ms	remaining: 793ms
1:	learn: 44.9322264	total: 16.3ms	remaining: 797ms
2:	learn: 43.6452304	total: 23.6ms	remaining: 762ms
3:	learn: 42.6058006	total: 31.8ms	remaining: 763ms
4:	learn: 41.4421922	total: 37ms	remaining: 703ms
5:	learn: 40.4565773	total: 42ms	remaining: 657ms
6:	learn: 39.3776917	total: 47.4ms	remaining: 629ms
7:	learn: 38.4003857	total: 52.5ms	remaining: 603ms
8:	learn: 37.4288067	total: 57.6ms	remaining: 582ms
9:	learn: 36.5623656	total: 63.3ms	remaining: 570ms
10:	learn: 35.7389643	total: 68.5ms	remaining: 554ms
11:	learn: 34.7960924	total: 73.8ms	remaining: 541ms
12:	learn: 34.0156187	total: 79.3ms	remaining: 531ms
13:	learn: 33.2702023	total: 84.2ms	remaining: 517ms
14:	learn: 32.7554868	total: 89.7ms	remaining: 508ms
15:	learn: 32.0395687	total: 95.2ms	remaining: 500ms
16:	learn: 31.4793803	total: 100ms	remaining: 490ms
17:	learn: 30.8770173	total: 105ms	remaining: 476ms
18:	learn: 30.3071701	total: 109ms	remaining: 464ms
19:	learn: 29.6256037	total: 114ms	remaining: 454ms
20:	learn: 29.1224077	total: 118ms	remaining: 443ms
21:	learn: 28.6312349	total: 122ms	remaining: 432ms
22:	learn: 28.2178229	total: 126ms	remaining: 423ms
23:	learn: 27.8751859	total: 131ms	remaining: 414ms
24:	learn: 27.5885656	total: 135ms	remaining: 405ms
25:	learn: 27.3828327	total: 139ms	remaining: 396ms
26:	learn: 27.1654356	total: 143ms	remaining: 388ms
27:	learn: 26.6705724	total: 148ms	remaining: 381ms
28:	learn: 26.2420935	total: 153ms	remaining: 374ms
29:	learn: 25.9314906	total: 157ms	remaining: 367ms
30:	learn: 25.4679909	total: 161ms	remaining: 359ms
31:	learn: 25.0442298	total: 166ms	remaining: 352ms
32:	learn: 24.8946212	total: 170ms	remaining: 346ms
33:	learn: 24.4858057	total: 175ms	remaining: 339ms
34:	learn: 24.1558048	total: 179ms	remaining: 333ms
35:	learn: 23.8344043	total: 184ms	remaining: 327ms
36:	learn: 23.5433295	total: 189ms	remaining: 321ms
37:	learn: 23.1976742	total: 193ms	remaining: 315ms
38:	learn: 22.9284547	total: 198ms	remaining: 310ms
39:	learn: 22.8228111	total: 206ms	remaining: 309ms
40:	learn: 22.5248890	total: 213ms	remaining: 307ms
41:	learn: 22.2473427	total: 223ms	remaining: 308ms
42:	learn: 21.9883370	total: 230ms	remaining: 305ms
43:	learn: 21.7825052	total: 237ms	remaining: 301ms
44:	learn: 21.5752155	total: 242ms	remaining: 296ms
45:	learn: 21.3418301	total: 247ms	remaining: 290ms
46:	learn: 21.1437594	total: 253ms	remaining: 285ms
47:	learn: 21.0215777	total: 259ms	remaining: 280ms
48:	learn: 20.7473432	total: 265ms	remaining: 275ms
49:	learn: 20.4823805	total: 270ms	remaining: 270ms
50:	learn: 20.3609754	total: 276ms	remaining: 265ms
51:	learn: 20.2403089	total: 281ms	remaining: 259ms
52:	learn: 20.1310909	total: 286ms	remaining: 253ms
53:	learn: 19.9330687	total: 291ms	remaining: 248ms
54:	learn: 19.7246810	total: 296ms	remaining: 243ms
55:	learn: 19.5252152	total: 302ms	remaining: 237ms
56:	learn: 19.3485723	total: 306ms	remaining: 231ms
57:	learn: 19.1619803	total: 311ms	remaining: 225ms
58:	learn: 19.0365136	total: 315ms	remaining: 219ms
59:	learn: 18.8921146	total: 320ms	remaining: 213ms
60:	learn: 18.7924351	total: 324ms	remaining: 207ms
61:	learn: 18.5856121	total: 328ms	remaining: 201ms
62:	learn: 18.3782831	total: 332ms	remaining: 195ms
63:	learn: 18.2642221	total: 337ms	remaining: 189ms
64:	learn: 18.1420774	total: 341ms	remaining: 184ms
65:	learn: 17.9430729	total: 345ms	remaining: 178ms
66:	learn: 17.7334985	total: 349ms	remaining: 172ms
67:	learn: 17.6005273	total: 354ms	remaining: 167ms
68:	learn: 17.5129366	total: 358ms	remaining: 161ms
69:	learn: 17.4066411	total: 362ms	remaining: 155ms
70:	learn: 17.2755069	total: 367ms	remaining: 150ms
71:	learn: 17.1544654	total: 371ms	remaining: 144ms
72:	learn: 17.0271914	total: 376ms	remaining: 139ms
73:	learn: 16.9474801	total: 381ms	remaining: 134ms
74:	learn: 16.8579544	total: 385ms	remaining: 128ms
75:	learn: 16.7574463	total: 390ms	remaining: 123ms
76:	learn: 16.6586906	total: 395ms	remaining: 118ms
77:	learn: 16.5365221	total: 402ms	remaining: 113ms
78:	learn: 16.4109716	total: 410ms	remaining: 109ms
79:	learn: 16.2533395	total: 420ms	remaining: 105ms
80:	learn: 16.1257882	total: 425ms	remaining: 99.8ms
81:	learn: 16.0234034	total: 433ms	remaining: 95ms
82:	learn: 15.8574011	total: 438ms	remaining: 89.7ms
83:	learn: 15.7737788	total: 443ms	remaining: 84.4ms
84:	learn: 15.6806864	total: 458ms	remaining: 80.8ms
85:	learn: 15.5807484	total: 464ms	remaining: 75.5ms
86:	learn: 15.4928987	total: 469ms	remaining: 70.1ms
87:	learn: 15.4321572	total: 475ms	remaining: 64.7ms
88:	learn: 15.3722788	total: 480ms	remaining: 59.4ms
89:	learn: 15.2571272	total: 485ms	remaining: 53.9ms
90:	learn: 15.1198109	total: 491ms	remaining: 48.6ms
91:	learn: 15.0009209	total: 497ms	remaining: 43.2ms
92:	learn: 14.8967484	total: 502ms	remaining: 37.8ms
93:	learn: 14.8348358	total: 506ms	remaining: 32.3ms
94:	learn: 14.7607641	total: 511ms	remaining: 26.9ms
95:	learn: 14.5887689	total: 515ms	remaining: 21.5ms
96:	learn: 14.4962918	total: 520ms	remaining: 16.1ms
97:	learn: 14.4172436	total: 524ms	remaining: 10.7ms
98:	learn: 14.3676018	total: 529ms	remaining: 5.34ms
99:	learn: 14.2868270	total: 533ms	remaining: 0us
0:	learn: 27.5585353	total: 4.94ms	remaining: 489ms
1:	learn: 27.1656995	total: 9.17ms	remaining: 449ms
2:	learn: 26.8590175	total: 13.5ms	remaining: 438ms
3:	learn: 26.5818406	total: 17.9ms	remaining: 430ms
4:	learn: 26.1148663	total: 22.3ms	remaining: 424ms
5:	learn: 25.7690484	total: 26.5ms	remaining: 414ms
6:	learn: 25.3489206	total: 31.3ms	remaining: 416ms
7:	learn: 24.9542406	total: 39.4ms	remaining: 453ms
8:	learn: 24.6777517	total: 46.8ms	remaining: 473ms
9:	learn: 24.3242344	total: 55.5ms	remaining: 499ms
10:	learn: 24.0383073	total: 61.6ms	remaining: 499ms
11:	learn: 23.7383420	total: 67.7ms	remaining: 496ms
12:	learn: 23.3461670	total: 72.7ms	remaining: 486ms
13:	learn: 23.0928636	total: 77.6ms	remaining: 477ms
14:	learn: 22.8770414	total: 82.5ms	remaining: 468ms
15:	learn: 22.6323214	total: 87.6ms	remaining: 460ms
16:	learn: 22.3597072	total: 92.7ms	remaining: 453ms
17:	learn: 22.1079813	total: 98.1ms	remaining: 447ms
18:	learn: 21.8421199	total: 104ms	remaining: 441ms
19:	learn: 21.6576508	total: 109ms	remaining: 436ms
20:	learn: 21.4301268	total: 114ms	remaining: 429ms
21:	learn: 21.2287388	total: 119ms	remaining: 422ms
22:	learn: 21.0553872	total: 125ms	remaining: 417ms
23:	learn: 20.8977091	total: 130ms	remaining: 412ms
24:	learn: 20.6619051	total: 134ms	remaining: 402ms
25:	learn: 20.5040955	total: 138ms	remaining: 393ms
26:	learn: 20.3181195	total: 142ms	remaining: 385ms
27:	learn: 20.0869436	total: 147ms	remaining: 377ms
28:	learn: 19.9375985	total: 151ms	remaining: 369ms
29:	learn: 19.8247516	total: 155ms	remaining: 361ms
30:	learn: 19.6261697	total: 159ms	remaining: 353ms
31:	learn: 19.4547236	total: 163ms	remaining: 346ms
32:	learn: 19.3157092	total: 167ms	remaining: 339ms
33:	learn: 19.1561419	total: 171ms	remaining: 332ms
34:	learn: 19.0453620	total: 175ms	remaining: 325ms
35:	learn: 18.8738574	total: 179ms	remaining: 319ms
36:	learn: 18.7072907	total: 183ms	remaining: 312ms
37:	learn: 18.5877943	total: 187ms	remaining: 305ms
38:	learn: 18.4436380	total: 191ms	remaining: 299ms
39:	learn: 18.3463356	total: 195ms	remaining: 293ms
40:	learn: 18.2008059	total: 199ms	remaining: 286ms
41:	learn: 18.0582079	total: 203ms	remaining: 280ms
42:	learn: 17.8891982	total: 207ms	remaining: 274ms
43:	learn: 17.7332246	total: 211ms	remaining: 269ms
44:	learn: 17.6206421	total: 216ms	remaining: 263ms
45:	learn: 17.4982800	total: 219ms	remaining: 257ms
46:	learn: 17.3970150	total: 223ms	remaining: 252ms
47:	learn: 17.3058203	total: 228ms	remaining: 247ms
48:	learn: 17.1789256	total: 233ms	remaining: 242ms
49:	learn: 17.0916229	total: 237ms	remaining: 237ms
50:	learn: 16.9859820	total: 242ms	remaining: 232ms
51:	learn: 16.8995582	total: 249ms	remaining: 230ms
52:	learn: 16.8137014	total: 256ms	remaining: 227ms
53:	learn: 16.7021451	total: 264ms	remaining: 225ms
54:	learn: 16.5895582	total: 271ms	remaining: 221ms
55:	learn: 16.5015639	total: 278ms	remaining: 218ms
56:	learn: 16.4356637	total: 283ms	remaining: 214ms
57:	learn: 16.3514525	total: 289ms	remaining: 209ms
58:	learn: 16.2401369	total: 294ms	remaining: 204ms
59:	learn: 16.1293223	total: 298ms	remaining: 199ms
60:	learn: 16.0271167	total: 304ms	remaining: 194ms
61:	learn: 15.9126257	total: 309ms	remaining: 190ms
62:	learn: 15.8391096	total: 314ms	remaining: 185ms
63:	learn: 15.7441773	total: 319ms	remaining: 180ms
64:	learn: 15.6885195	total: 325ms	remaining: 175ms
65:	learn: 15.6052039	total: 330ms	remaining: 170ms
66:	learn: 15.5074202	total: 335ms	remaining: 165ms
67:	learn: 15.4054338	total: 341ms	remaining: 160ms
68:	learn: 15.2885714	total: 346ms	remaining: 156ms
69:	learn: 15.2157472	total: 351ms	remaining: 151ms
70:	learn: 15.1031554	total: 356ms	remaining: 145ms
71:	learn: 15.0237470	total: 360ms	remaining: 140ms
72:	learn: 14.9756825	total: 364ms	remaining: 135ms
73:	learn: 14.8840596	total: 368ms	remaining: 129ms
74:	learn: 14.8077061	total: 373ms	remaining: 124ms
75:	learn: 14.7444437	total: 377ms	remaining: 119ms
76:	learn: 14.6751720	total: 381ms	remaining: 114ms
77:	learn: 14.5830333	total: 385ms	remaining: 109ms
78:	learn: 14.5241206	total: 389ms	remaining: 103ms
79:	learn: 14.4892731	total: 393ms	remaining: 98.3ms
80:	learn: 14.4256605	total: 397ms	remaining: 93.2ms
81:	learn: 14.3666860	total: 402ms	remaining: 88.1ms
82:	learn: 14.2938372	total: 406ms	remaining: 83.1ms
83:	learn: 14.2161532	total: 410ms	remaining: 78ms
84:	learn: 14.1582910	total: 414ms	remaining: 73ms
85:	learn: 14.1029153	total: 418ms	remaining: 68.1ms
86:	learn: 14.0475835	total: 423ms	remaining: 63.2ms
87:	learn: 13.9892661	total: 427ms	remaining: 58.3ms
88:	learn: 13.9481628	total: 432ms	remaining: 53.4ms
89:	learn: 13.8483991	total: 436ms	remaining: 48.5ms
90:	learn: 13.7775614	total: 441ms	remaining: 43.6ms
91:	learn: 13.7304585	total: 445ms	remaining: 38.7ms
92:	learn: 13.6783381	total: 451ms	remaining: 33.9ms
93:	learn: 13.6356964	total: 459ms	remaining: 29.3ms
94:	learn: 13.5924371	total: 466ms	remaining: 24.5ms
95:	learn: 13.5400746	total: 473ms	remaining: 19.7ms
96:	learn: 13.4897333	total: 481ms	remaining: 14.9ms
97:	learn: 13.4470321	total: 487ms	remaining: 9.93ms
98:	learn: 13.3856082	total: 492ms	remaining: 4.97ms
99:	learn: 13.3082371	total: 497ms	remaining: 0us
0:	learn: 43.0395283	total: 4.57ms	remaining: 452ms
1:	learn: 42.1130223	total: 8.61ms	remaining: 422ms
2:	learn: 41.1753409	total: 12.7ms	remaining: 409ms
3:	learn: 40.3637444	total: 16.7ms	remaining: 401ms
4:	learn: 39.6508088	total: 20.9ms	remaining: 398ms
5:	learn: 38.7217934	total: 25.1ms	remaining: 394ms
6:	learn: 37.8538055	total: 28.9ms	remaining: 384ms
7:	learn: 36.9793574	total: 32.9ms	remaining: 379ms
8:	learn: 36.3076984	total: 37ms	remaining: 375ms
9:	learn: 35.6673160	total: 41.3ms	remaining: 371ms
10:	learn: 34.8889800	total: 45.3ms	remaining: 367ms
11:	learn: 34.1675517	total: 49.1ms	remaining: 360ms
12:	learn: 33.6779564	total: 53.8ms	remaining: 360ms
13:	learn: 33.0710039	total: 58ms	remaining: 357ms
14:	learn: 32.4966674	total: 62.1ms	remaining: 352ms
15:	learn: 31.9492856	total: 65.9ms	remaining: 346ms
16:	learn: 31.5108129	total: 70.1ms	remaining: 342ms
17:	learn: 30.9804023	total: 75.1ms	remaining: 342ms
18:	learn: 30.4169089	total: 80ms	remaining: 341ms
19:	learn: 29.8930375	total: 85ms	remaining: 340ms
20:	learn: 29.3974421	total: 90.1ms	remaining: 339ms
21:	learn: 28.8792307	total: 95ms	remaining: 337ms
22:	learn: 28.3894474	total: 99.9ms	remaining: 335ms
23:	learn: 27.9921276	total: 107ms	remaining: 338ms
24:	learn: 27.6158887	total: 114ms	remaining: 343ms
25:	learn: 27.2866950	total: 122ms	remaining: 347ms
26:	learn: 26.8770708	total: 129ms	remaining: 349ms
27:	learn: 26.6233005	total: 137ms	remaining: 352ms
28:	learn: 26.2921934	total: 142ms	remaining: 349ms
29:	learn: 25.9156920	total: 148ms	remaining: 346ms
30:	learn: 25.5311106	total: 150ms	remaining: 334ms
31:	learn: 25.2178997	total: 156ms	remaining: 331ms
32:	learn: 24.8572196	total: 161ms	remaining: 327ms
33:	learn: 24.5849710	total: 177ms	remaining: 344ms
34:	learn: 24.2209190	total: 182ms	remaining: 339ms
35:	learn: 23.8708250	total: 188ms	remaining: 333ms
36:	learn: 23.5325279	total: 192ms	remaining: 327ms
37:	learn: 23.2116148	total: 198ms	remaining: 323ms
38:	learn: 22.9696787	total: 203ms	remaining: 317ms
39:	learn: 22.7936783	total: 208ms	remaining: 312ms
40:	learn: 22.6228847	total: 212ms	remaining: 305ms
41:	learn: 22.3691527	total: 216ms	remaining: 298ms
42:	learn: 22.1002173	total: 220ms	remaining: 291ms
43:	learn: 21.9157268	total: 224ms	remaining: 285ms
44:	learn: 21.7229102	total: 228ms	remaining: 279ms
45:	learn: 21.4642005	total: 232ms	remaining: 272ms
46:	learn: 21.3029442	total: 236ms	remaining: 266ms
47:	learn: 21.1469792	total: 240ms	remaining: 260ms
48:	learn: 20.9458235	total: 244ms	remaining: 254ms
49:	learn: 20.7335242	total: 248ms	remaining: 248ms
50:	learn: 20.5440269	total: 253ms	remaining: 243ms
51:	learn: 20.3661449	total: 257ms	remaining: 237ms
52:	learn: 20.2158134	total: 261ms	remaining: 231ms
53:	learn: 19.9934873	total: 265ms	remaining: 226ms
54:	learn: 19.7879739	total: 269ms	remaining: 220ms
55:	learn: 19.6630460	total: 274ms	remaining: 215ms
56:	learn: 19.5152729	total: 279ms	remaining: 210ms
57:	learn: 19.3581128	total: 284ms	remaining: 205ms
58:	learn: 19.2209303	total: 288ms	remaining: 200ms
59:	learn: 19.0965248	total: 293ms	remaining: 195ms
60:	learn: 19.0035954	total: 297ms	remaining: 190ms
61:	learn: 18.8554149	total: 304ms	remaining: 186ms
62:	learn: 18.7095427	total: 311ms	remaining: 183ms
63:	learn: 18.5751494	total: 321ms	remaining: 181ms
64:	learn: 18.4678251	total: 328ms	remaining: 176ms
65:	learn: 18.3500325	total: 335ms	remaining: 173ms
66:	learn: 18.2088983	total: 341ms	remaining: 168ms
67:	learn: 18.0737705	total: 346ms	remaining: 163ms
68:	learn: 17.9325058	total: 352ms	remaining: 158ms
69:	learn: 17.8003911	total: 357ms	remaining: 153ms
70:	learn: 17.7385366	total: 363ms	remaining: 148ms
71:	learn: 17.6106998	total: 368ms	remaining: 143ms
72:	learn: 17.4816270	total: 374ms	remaining: 138ms
73:	learn: 17.4025554	total: 379ms	remaining: 133ms
74:	learn: 17.2902108	total: 384ms	remaining: 128ms
75:	learn: 17.2158048	total: 389ms	remaining: 123ms
76:	learn: 17.1261053	total: 395ms	remaining: 118ms
77:	learn: 17.0308917	total: 400ms	remaining: 113ms
78:	learn: 16.9546705	total: 405ms	remaining: 108ms
79:	learn: 16.8319165	total: 409ms	remaining: 102ms
80:	learn: 16.7687017	total: 413ms	remaining: 97ms
81:	learn: 16.6972326	total: 418ms	remaining: 91.7ms
82:	learn: 16.6124580	total: 422ms	remaining: 86.4ms
83:	learn: 16.4999052	total: 426ms	remaining: 81.2ms
84:	learn: 16.4302484	total: 430ms	remaining: 76ms
85:	learn: 16.3201363	total: 434ms	remaining: 70.7ms
86:	learn: 16.2534314	total: 439ms	remaining: 65.6ms
87:	learn: 16.1720485	total: 443ms	remaining: 60.4ms
88:	learn: 16.0625751	total: 447ms	remaining: 55.2ms
89:	learn: 15.9135088	total: 451ms	remaining: 50.1ms
90:	learn: 15.8658863	total: 455ms	remaining: 45ms
91:	learn: 15.8066805	total: 459ms	remaining: 39.9ms
92:	learn: 15.7412103	total: 464ms	remaining: 34.9ms
93:	learn: 15.6542776	total: 469ms	remaining: 29.9ms
94:	learn: 15.5760334	total: 473ms	remaining: 24.9ms
95:	learn: 15.5434131	total: 478ms	remaining: 19.9ms
96:	learn: 15.4709561	total: 483ms	remaining: 14.9ms
97:	learn: 15.4449618	total: 487ms	remaining: 9.95ms
98:	learn: 15.3752761	total: 492ms	remaining: 4.97ms
99:	learn: 15.3106595	total: 497ms	remaining: 0us
0:	learn: 46.7142257	total: 5.89ms	remaining: 583ms
1:	learn: 45.7634153	total: 11ms	remaining: 539ms
2:	learn: 45.0054253	total: 16.1ms	remaining: 519ms
3:	learn: 44.2120432	total: 21.7ms	remaining: 520ms
4:	learn: 43.3960472	total: 26.5ms	remaining: 504ms
5:	learn: 42.8588120	total: 32.2ms	remaining: 504ms
6:	learn: 41.9533701	total: 37.5ms	remaining: 498ms
7:	learn: 41.2745030	total: 42.4ms	remaining: 487ms
8:	learn: 40.6797495	total: 47.2ms	remaining: 477ms
9:	learn: 39.9899571	total: 52.6ms	remaining: 474ms
10:	learn: 39.4682100	total: 57.9ms	remaining: 468ms
11:	learn: 39.0305595	total: 61.8ms	remaining: 454ms
12:	learn: 38.4200417	total: 65.9ms	remaining: 441ms
13:	learn: 37.8425194	total: 70.1ms	remaining: 431ms
14:	learn: 37.4203127	total: 74.3ms	remaining: 421ms
15:	learn: 36.9917688	total: 78.3ms	remaining: 411ms
16:	learn: 36.5544138	total: 82.4ms	remaining: 402ms
17:	learn: 36.0727019	total: 86.3ms	remaining: 393ms
18:	learn: 35.4835715	total: 90.6ms	remaining: 386ms
19:	learn: 34.9865654	total: 94.9ms	remaining: 380ms
20:	learn: 34.6063373	total: 99ms	remaining: 372ms
21:	learn: 34.0997289	total: 103ms	remaining: 365ms
22:	learn: 33.7313171	total: 107ms	remaining: 359ms
23:	learn: 33.3582000	total: 111ms	remaining: 353ms
24:	learn: 32.9432456	total: 115ms	remaining: 346ms
25:	learn: 32.5220888	total: 120ms	remaining: 341ms
26:	learn: 32.2172292	total: 124ms	remaining: 335ms
27:	learn: 31.8972904	total: 129ms	remaining: 331ms
28:	learn: 31.6405350	total: 133ms	remaining: 326ms
29:	learn: 31.4167702	total: 138ms	remaining: 322ms
30:	learn: 30.8541961	total: 140ms	remaining: 311ms
31:	learn: 30.5572111	total: 144ms	remaining: 307ms
32:	learn: 30.1700399	total: 149ms	remaining: 303ms
33:	learn: 29.8537271	total: 153ms	remaining: 298ms
34:	learn: 29.6192540	total: 158ms	remaining: 294ms
35:	learn: 29.3276362	total: 167ms	remaining: 296ms
36:	learn: 28.9985179	total: 174ms	remaining: 296ms
37:	learn: 28.7046880	total: 182ms	remaining: 297ms
38:	learn: 28.4412677	total: 189ms	remaining: 296ms
39:	learn: 28.1277292	total: 195ms	remaining: 293ms
40:	learn: 27.9000750	total: 201ms	remaining: 289ms
41:	learn: 27.5433162	total: 206ms	remaining: 284ms
42:	learn: 27.2493285	total: 211ms	remaining: 280ms
43:	learn: 26.9576632	total: 213ms	remaining: 271ms
44:	learn: 26.6177110	total: 218ms	remaining: 266ms
45:	learn: 26.2812456	total: 223ms	remaining: 262ms
46:	learn: 26.0803859	total: 228ms	remaining: 257ms
47:	learn: 25.9543581	total: 233ms	remaining: 253ms
48:	learn: 25.7951582	total: 238ms	remaining: 248ms
49:	learn: 25.6548184	total: 244ms	remaining: 244ms
50:	learn: 25.4010843	total: 249ms	remaining: 240ms
51:	learn: 24.9773937	total: 254ms	remaining: 235ms
52:	learn: 24.8026156	total: 260ms	remaining: 230ms
53:	learn: 24.5568053	total: 265ms	remaining: 226ms
54:	learn: 24.2281839	total: 269ms	remaining: 220ms
55:	learn: 23.9202795	total: 273ms	remaining: 214ms
56:	learn: 23.7625591	total: 277ms	remaining: 209ms
57:	learn: 23.5429721	total: 281ms	remaining: 203ms
58:	learn: 23.3175893	total: 285ms	remaining: 198ms
59:	learn: 23.2035130	total: 289ms	remaining: 193ms
60:	learn: 23.0232450	total: 293ms	remaining: 187ms
61:	learn: 22.8384958	total: 297ms	remaining: 182ms
62:	learn: 22.6499902	total: 301ms	remaining: 177ms
63:	learn: 22.4577426	total: 305ms	remaining: 171ms
64:	learn: 22.3333158	total: 309ms	remaining: 166ms
65:	learn: 22.2064131	total: 313ms	remaining: 161ms
66:	learn: 22.1434971	total: 317ms	remaining: 156ms
67:	learn: 21.9596519	total: 321ms	remaining: 151ms
68:	learn: 21.8475576	total: 326ms	remaining: 147ms
69:	learn: 21.6954745	total: 331ms	remaining: 142ms
70:	learn: 21.5635976	total: 336ms	remaining: 137ms
71:	learn: 21.4588506	total: 340ms	remaining: 132ms
72:	learn: 21.3527268	total: 344ms	remaining: 127ms
73:	learn: 21.2661288	total: 350ms	remaining: 123ms
74:	learn: 21.1817333	total: 354ms	remaining: 118ms
75:	learn: 21.0527553	total: 361ms	remaining: 114ms
76:	learn: 20.9229021	total: 369ms	remaining: 110ms
77:	learn: 20.7563946	total: 376ms	remaining: 106ms
78:	learn: 20.6569831	total: 383ms	remaining: 102ms
79:	learn: 20.4982663	total: 391ms	remaining: 97.7ms
80:	learn: 20.3185460	total: 396ms	remaining: 92.8ms
81:	learn: 20.2096241	total: 401ms	remaining: 87.9ms
82:	learn: 20.1274891	total: 406ms	remaining: 83.1ms
83:	learn: 20.0740139	total: 411ms	remaining: 78.3ms
84:	learn: 19.9630699	total: 416ms	remaining: 73.4ms
85:	learn: 19.8753899	total: 421ms	remaining: 68.6ms
86:	learn: 19.6563612	total: 426ms	remaining: 63.7ms
87:	learn: 19.4680232	total: 432ms	remaining: 58.8ms
88:	learn: 19.3503431	total: 437ms	remaining: 54ms
89:	learn: 19.2221379	total: 442ms	remaining: 49.1ms
90:	learn: 19.0732542	total: 446ms	remaining: 44.1ms
91:	learn: 18.9825190	total: 452ms	remaining: 39.3ms
92:	learn: 18.8839009	total: 458ms	remaining: 34.4ms
93:	learn: 18.8012219	total: 462ms	remaining: 29.5ms
94:	learn: 18.7172713	total: 467ms	remaining: 24.6ms
95:	learn: 18.6201170	total: 470ms	remaining: 19.6ms
96:	learn: 18.5318611	total: 474ms	remaining: 14.7ms
97:	learn: 18.3833356	total: 478ms	remaining: 9.77ms
98:	learn: 18.3289700	total: 483ms	remaining: 4.88ms
99:	learn: 18.2227333	total: 487ms	remaining: 0us
0:	learn: 46.3764524	total: 4.84ms	remaining: 480ms
1:	learn: 45.5561269	total: 11ms	remaining: 537ms
2:	learn: 44.8811245	total: 18.7ms	remaining: 605ms
3:	learn: 44.0788617	total: 26.5ms	remaining: 636ms
4:	learn: 43.3619790	total: 34.1ms	remaining: 647ms
5:	learn: 42.6912112	total: 41.4ms	remaining: 649ms
6:	learn: 42.2292118	total: 46.8ms	remaining: 622ms
7:	learn: 41.7725191	total: 52.3ms	remaining: 601ms
8:	learn: 41.1676614	total: 57.5ms	remaining: 582ms
9:	learn: 40.5771076	total: 62.4ms	remaining: 562ms
10:	learn: 39.8343757	total: 67.4ms	remaining: 545ms
11:	learn: 39.3761142	total: 72.4ms	remaining: 531ms
12:	learn: 38.5254692	total: 77.5ms	remaining: 518ms
13:	learn: 37.9629555	total: 82.7ms	remaining: 508ms
14:	learn: 37.4418438	total: 88.2ms	remaining: 500ms
15:	learn: 37.0507283	total: 93.3ms	remaining: 490ms
16:	learn: 36.6264217	total: 98ms	remaining: 478ms
17:	learn: 36.1114940	total: 103ms	remaining: 470ms
18:	learn: 35.7193862	total: 108ms	remaining: 462ms
19:	learn: 35.3301177	total: 113ms	remaining: 453ms
20:	learn: 35.0598280	total: 118ms	remaining: 443ms
21:	learn: 34.5469736	total: 122ms	remaining: 431ms
22:	learn: 34.2064215	total: 126ms	remaining: 422ms
23:	learn: 33.7280710	total: 130ms	remaining: 411ms
24:	learn: 33.3282940	total: 134ms	remaining: 403ms
25:	learn: 32.8478961	total: 139ms	remaining: 395ms
26:	learn: 32.5722164	total: 144ms	remaining: 389ms
27:	learn: 32.2457019	total: 148ms	remaining: 381ms
28:	learn: 31.9230495	total: 153ms	remaining: 373ms
29:	learn: 31.4311611	total: 157ms	remaining: 367ms
30:	learn: 30.9179052	total: 161ms	remaining: 359ms
31:	learn: 30.6201141	total: 165ms	remaining: 351ms
32:	learn: 30.3421106	total: 169ms	remaining: 343ms
33:	learn: 29.9885373	total: 174ms	remaining: 337ms
34:	learn: 29.7462780	total: 178ms	remaining: 330ms
35:	learn: 29.3607153	total: 182ms	remaining: 324ms
36:	learn: 29.1793078	total: 187ms	remaining: 318ms
37:	learn: 28.9276538	total: 191ms	remaining: 312ms
38:	learn: 28.6903934	total: 196ms	remaining: 306ms
39:	learn: 28.2095033	total: 200ms	remaining: 299ms
40:	learn: 27.7990608	total: 204ms	remaining: 293ms
41:	learn: 27.5406632	total: 208ms	remaining: 288ms
42:	learn: 27.2575376	total: 213ms	remaining: 283ms
43:	learn: 26.9741707	total: 219ms	remaining: 278ms
44:	learn: 26.6606899	total: 224ms	remaining: 273ms
45:	learn: 26.4015833	total: 229ms	remaining: 269ms
46:	learn: 26.1828993	total: 234ms	remaining: 264ms
47:	learn: 26.0233709	total: 237ms	remaining: 256ms
48:	learn: 25.9300399	total: 242ms	remaining: 251ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 252ms	remaining: 242ms
51:	learn: 25.1595644	total: 257ms	remaining: 237ms
52:	learn: 24.9955303	total: 265ms	remaining: 235ms
53:	learn: 24.7273966	total: 273ms	remaining: 232ms
54:	learn: 24.5747978	total: 281ms	remaining: 230ms
55:	learn: 24.3807977	total: 288ms	remaining: 226ms
56:	learn: 24.1689569	total: 294ms	remaining: 222ms
57:	learn: 23.9898221	total: 299ms	remaining: 217ms
58:	learn: 23.7566414	total: 304ms	remaining: 211ms
59:	learn: 23.6641165	total: 310ms	remaining: 206ms
60:	learn: 23.5658066	total: 315ms	remaining: 201ms
61:	learn: 23.4338851	total: 320ms	remaining: 196ms
62:	learn: 23.2408837	total: 325ms	remaining: 191ms
63:	learn: 23.0642038	total: 330ms	remaining: 186ms
64:	learn: 22.9032045	total: 335ms	remaining: 181ms
65:	learn: 22.7736138	total: 341ms	remaining: 176ms
66:	learn: 22.6836443	total: 346ms	remaining: 171ms
67:	learn: 22.5983654	total: 351ms	remaining: 165ms
68:	learn: 22.4419813	total: 356ms	remaining: 160ms
69:	learn: 22.2863339	total: 362ms	remaining: 155ms
70:	learn: 22.1792943	total: 366ms	remaining: 150ms
71:	learn: 22.1130574	total: 371ms	remaining: 144ms
72:	learn: 21.9858161	total: 375ms	remaining: 139ms
73:	learn: 21.8577784	total: 379ms	remaining: 133ms
74:	learn: 21.7845222	total: 383ms	remaining: 128ms
75:	learn: 21.6831390	total: 387ms	remaining: 122ms
76:	learn: 21.6292521	total: 391ms	remaining: 117ms
77:	learn: 21.5789330	total: 396ms	remaining: 112ms
78:	learn: 21.5420942	total: 400ms	remaining: 106ms
79:	learn: 21.4280939	total: 404ms	remaining: 101ms
80:	learn: 21.3641165	total: 408ms	remaining: 95.8ms
81:	learn: 21.2734814	total: 412ms	remaining: 90.5ms
82:	learn: 21.2220323	total: 417ms	remaining: 85.4ms
83:	learn: 21.0625792	total: 421ms	remaining: 80.2ms
84:	learn: 20.9488320	total: 425ms	remaining: 75.1ms
85:	learn: 20.8504255	total: 430ms	remaining: 70ms
86:	learn: 20.7848510	total: 434ms	remaining: 64.9ms
87:	learn: 20.7247442	total: 439ms	remaining: 59.8ms
88:	learn: 20.5698590	total: 443ms	remaining: 54.8ms
89:	learn: 20.4067620	total: 448ms	remaining: 49.8ms
90:	learn: 20.3062482	total: 452ms	remaining: 44.7ms
91:	learn: 20.2029696	total: 460ms	remaining: 40ms
92:	learn: 20.1384849	total: 468ms	remaining: 35.2ms
93:	learn: 20.0260709	total: 477ms	remaining: 30.4ms
94:	learn: 19.9122100	total: 482ms	remaining: 25.4ms
95:	learn: 19.8648487	total: 489ms	remaining: 20.4ms
96:	learn: 19.8207072	total: 494ms	remaining: 15.3ms
97:	learn: 19.7261189	total: 499ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 504ms	remaining: 5.09ms
99:	learn: 19.6546645	total: 509ms	remaining: 0us
0:	learn: 47.0239288	total: 4.45ms	remaining: 441ms
1:	learn: 46.2253829	total: 8.54ms	remaining: 418ms
2:	learn: 45.5580301	total: 12.5ms	remaining: 405ms
3:	learn: 44.7273237	total: 16.3ms	remaining: 392ms
4:	learn: 43.8867421	total: 20.6ms	remaining: 391ms
5:	learn: 43.3615911	total: 24.8ms	remaining: 389ms
6:	learn: 42.8548390	total: 28.8ms	remaining: 382ms
7:	learn: 42.1606758	total: 32.7ms	remaining: 376ms
8:	learn: 41.6625870	total: 36.9ms	remaining: 373ms
9:	learn: 40.9497092	total: 40.8ms	remaining: 367ms
10:	learn: 40.1886318	total: 44.6ms	remaining: 361ms
11:	learn: 39.7456423	total: 48.6ms	remaining: 357ms
12:	learn: 39.1171373	total: 52.7ms	remaining: 353ms
13:	learn: 38.5451069	total: 56.7ms	remaining: 348ms
14:	learn: 38.0155834	total: 60.6ms	remaining: 343ms
15:	learn: 37.5631354	total: 64.5ms	remaining: 339ms
16:	learn: 37.1030023	total: 69ms	remaining: 337ms
17:	learn: 36.4563029	total: 73.7ms	remaining: 336ms
18:	learn: 36.0160976	total: 78.1ms	remaining: 333ms
19:	learn: 35.5079827	total: 82.6ms	remaining: 330ms
20:	learn: 35.2111885	total: 87.2ms	remaining: 328ms
21:	learn: 34.9397465	total: 91.7ms	remaining: 325ms
22:	learn: 34.5270048	total: 96.2ms	remaining: 322ms
23:	learn: 34.0169260	total: 102ms	remaining: 321ms
24:	learn: 33.7454892	total: 109ms	remaining: 328ms
25:	learn: 33.2648157	total: 117ms	remaining: 334ms
26:	learn: 32.8899427	total: 126ms	remaining: 341ms
27:	learn: 32.6185050	total: 136ms	remaining: 350ms
28:	learn: 32.3528531	total: 143ms	remaining: 350ms
29:	learn: 32.0859923	total: 149ms	remaining: 348ms
30:	learn: 31.6511144	total: 155ms	remaining: 346ms
31:	learn: 31.2571765	total: 161ms	remaining: 342ms
32:	learn: 30.9770049	total: 167ms	remaining: 338ms
33:	learn: 30.6084872	total: 172ms	remaining: 335ms
34:	learn: 30.3448632	total: 178ms	remaining: 330ms
35:	learn: 30.0360942	total: 184ms	remaining: 326ms
36:	learn: 29.6648968	total: 189ms	remaining: 322ms
37:	learn: 29.3165114	total: 195ms	remaining: 318ms
38:	learn: 29.0829198	total: 201ms	remaining: 314ms
39:	learn: 28.7752064	total: 207ms	remaining: 310ms
40:	learn: 28.3622191	total: 213ms	remaining: 306ms
41:	learn: 28.1346631	total: 218ms	remaining: 300ms
42:	learn: 27.9585719	total: 222ms	remaining: 295ms
43:	learn: 27.6565566	total: 227ms	remaining: 289ms
44:	learn: 27.3616172	total: 232ms	remaining: 283ms
45:	learn: 27.0658637	total: 236ms	remaining: 277ms
46:	learn: 26.8660382	total: 241ms	remaining: 272ms
47:	learn: 26.6536078	total: 245ms	remaining: 265ms
48:	learn: 26.3524440	total: 250ms	remaining: 260ms
49:	learn: 26.1595277	total: 254ms	remaining: 254ms
50:	learn: 25.9273523	total: 258ms	remaining: 248ms
51:	learn: 25.7195580	total: 263ms	remaining: 243ms
52:	learn: 25.5730225	total: 268ms	remaining: 237ms
53:	learn: 25.3455276	total: 272ms	remaining: 232ms
54:	learn: 25.2289675	total: 277ms	remaining: 227ms
55:	learn: 25.0133024	total: 282ms	remaining: 222ms
56:	learn: 24.8406714	total: 287ms	remaining: 217ms
57:	learn: 24.6367857	total: 292ms	remaining: 211ms
58:	learn: 24.5338177	total: 297ms	remaining: 206ms
59:	learn: 24.3799964	total: 305ms	remaining: 204ms
60:	learn: 24.1447492	total: 313ms	remaining: 200ms
61:	learn: 23.9880495	total: 322ms	remaining: 198ms
62:	learn: 23.7140630	total: 330ms	remaining: 194ms
63:	learn: 23.5003791	total: 335ms	remaining: 189ms
64:	learn: 23.3207645	total: 341ms	remaining: 183ms
65:	learn: 23.1958356	total: 346ms	remaining: 178ms
66:	learn: 23.0471302	total: 352ms	remaining: 173ms
67:	learn: 22.8977183	total: 357ms	remaining: 168ms
68:	learn: 22.7187400	total: 362ms	remaining: 163ms
69:	learn: 22.6523405	total: 368ms	remaining: 158ms
70:	learn: 22.4767453	total: 373ms	remaining: 152ms
71:	learn: 22.3243677	total: 378ms	remaining: 147ms
72:	learn: 22.2133096	total: 383ms	remaining: 142ms
73:	learn: 22.1151713	total: 388ms	remaining: 136ms
74:	learn: 22.0296666	total: 395ms	remaining: 132ms
75:	learn: 21.9195980	total: 401ms	remaining: 126ms
76:	learn: 21.8401730	total: 405ms	remaining: 121ms
77:	learn: 21.8079797	total: 410ms	remaining: 116ms
78:	learn: 21.7274109	total: 415ms	remaining: 110ms
79:	learn: 21.6663032	total: 421ms	remaining: 105ms
80:	learn: 21.5633117	total: 426ms	remaining: 99.8ms
81:	learn: 21.4542467	total: 430ms	remaining: 94.4ms
82:	learn: 21.3177957	total: 435ms	remaining: 89.1ms
83:	learn: 21.1289167	total: 439ms	remaining: 83.7ms
84:	learn: 21.0297368	total: 443ms	remaining: 78.2ms
85:	learn: 20.9089564	total: 448ms	remaining: 72.9ms
86:	learn: 20.7653988	total: 452ms	remaining: 67.6ms
87:	learn: 20.6521894	total: 456ms	remaining: 62.2ms
88:	learn: 20.5193021	total: 460ms	remaining: 56.8ms
89:	learn: 20.4361620	total: 464ms	remaining: 51.6ms
90:	learn: 20.3546710	total: 469ms	remaining: 46.4ms
91:	learn: 20.2513296	total: 473ms	remaining: 41.2ms
92:	learn: 20.1605550	total: 478ms	remaining: 36ms
93:	learn: 20.0515942	total: 482ms	remaining: 30.8ms
94:	learn: 19.9800764	total: 486ms	remaining: 25.6ms
95:	learn: 19.8996532	total: 491ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 496ms	remaining: 15.3ms
97:	learn: 19.7887346	total: 506ms	remaining: 10.3ms
98:	learn: 19.7230872	total: 513ms	remaining: 5.19ms
99:	learn: 19.6328825	total: 522ms	remaining: 0us
0:	learn: 27.3441720	total: 23.5ms	remaining: 2.32s
1:	learn: 26.7159954	total: 47ms	remaining: 2.3s
2:	learn: 26.0850318	total: 67.9ms	remaining: 2.19s
3:	learn: 25.4039656	total: 88.4ms	remaining: 2.12s
4:	learn: 24.7930659	total: 109ms	remaining: 2.07s
5:	learn: 24.2028590	total: 132ms	remaining: 2.08s
6:	learn: 23.6622902	total: 159ms	remaining: 2.12s
7:	learn: 23.1531175	total: 185ms	remaining: 2.13s
8:	learn: 22.7050792	total: 208ms	remaining: 2.11s
9:	learn: 22.2151788	total: 231ms	remaining: 2.08s
10:	learn: 21.7708844	total: 254ms	remaining: 2.06s
11:	learn: 21.2587174	total: 277ms	remaining: 2.03s
12:	learn: 20.7559870	total: 298ms	remaining: 2s
13:	learn: 20.3040842	total: 320ms	remaining: 1.96s
14:	learn: 19.9019524	total: 343ms	remaining: 1.94s
15:	learn: 19.5186012	total: 376ms	remaining: 1.97s
16:	learn: 19.1521621	total: 399ms	remaining: 1.95s
17:	learn: 18.7652180	total: 423ms	remaining: 1.93s
18:	learn: 18.4446446	total: 445ms	remaining: 1.9s
19:	learn: 18.0977650	total: 469ms	remaining: 1.87s
20:	learn: 17.7791328	total: 489ms	remaining: 1.84s
21:	learn: 17.4777648	total: 510ms	remaining: 1.81s
22:	learn: 17.1794361	total: 532ms	remaining: 1.78s
23:	learn: 16.8685032	total: 554ms	remaining: 1.75s
24:	learn: 16.6274695	total: 584ms	remaining: 1.75s
25:	learn: 16.3071099	total: 608ms	remaining: 1.73s
26:	learn: 16.0249663	total: 630ms	remaining: 1.7s
27:	learn: 15.7535309	total: 652ms	remaining: 1.68s
28:	learn: 15.4777235	total: 676ms	remaining: 1.66s
29:	learn: 15.2410825	total: 698ms	remaining: 1.63s
30:	learn: 15.0133002	total: 719ms	remaining: 1.6s
31:	learn: 14.8018912	total: 738ms	remaining: 1.57s
32:	learn: 14.5701546	total: 761ms	remaining: 1.54s
33:	learn: 14.3799060	total: 786ms	remaining: 1.53s
34:	learn: 14.0975095	total: 815ms	remaining: 1.51s
35:	learn: 13.8873493	total: 838ms	remaining: 1.49s
36:	learn: 13.6812023	total: 861ms	remaining: 1.47s
37:	learn: 13.4943017	total: 884ms	remaining: 1.44s
38:	learn: 13.3224094	total: 905ms	remaining: 1.42s
39:	learn: 13.0967901	total: 927ms	remaining: 1.39s
40:	learn: 12.9138190	total: 949ms	remaining: 1.37s
41:	learn: 12.7764458	total: 973ms	remaining: 1.34s
42:	learn: 12.6593656	total: 1s	remaining: 1.33s
43:	learn: 12.5051105	total: 1.03s	remaining: 1.31s
44:	learn: 12.3057146	total: 1.05s	remaining: 1.29s
45:	learn: 12.1487674	total: 1.08s	remaining: 1.26s
46:	learn: 11.9614903	total: 1.1s	remaining: 1.24s
47:	learn: 11.7921265	total: 1.12s	remaining: 1.22s
48:	learn: 11.6572640	total: 1.14s	remaining: 1.19s
49:	learn: 11.5251463	total: 1.17s	remaining: 1.17s
50:	learn: 11.3789931	total: 1.19s	remaining: 1.15s
51:	learn: 11.2691375	total: 1.22s	remaining: 1.13s
52:	learn: 11.1161131	total: 1.25s	remaining: 1.11s
53:	learn: 11.0246399	total: 1.27s	remaining: 1.08s
54:	learn: 10.9152420	total: 1.29s	remaining: 1.06s
55:	learn: 10.7746769	total: 1.32s	remaining: 1.03s
56:	learn: 10.6222917	total: 1.34s	remaining: 1.01s
57:	learn: 10.5096115	total: 1.36s	remaining: 985ms
58:	learn: 10.3857030	total: 1.38s	remaining: 961ms
59:	learn: 10.2789057	total: 1.41s	remaining: 937ms
60:	learn: 10.1490749	total: 1.44s	remaining: 919ms
61:	learn: 10.0553291	total: 1.46s	remaining: 897ms
62:	learn: 9.9351043	total: 1.49s	remaining: 873ms
63:	learn: 9.8245261	total: 1.51s	remaining: 850ms
64:	learn: 9.7207577	total: 1.54s	remaining: 827ms
65:	learn: 9.5920661	total: 1.56s	remaining: 803ms
66:	learn: 9.4832767	total: 1.58s	remaining: 778ms
67:	learn: 9.3724149	total: 1.6s	remaining: 754ms
68:	learn: 9.2459801	total: 1.63s	remaining: 730ms
69:	learn: 9.1740635	total: 1.66s	remaining: 710ms
70:	learn: 9.1015730	total: 1.68s	remaining: 687ms
71:	learn: 9.0196460	total: 1.71s	remaining: 664ms
72:	learn: 8.9458977	total: 1.73s	remaining: 640ms
73:	learn: 8.8434400	total: 1.75s	remaining: 616ms
74:	learn: 8.7495151	total: 1.78s	remaining: 592ms
75:	learn: 8.6521348	total: 1.8s	remaining: 568ms
76:	learn: 8.5654483	total: 1.82s	remaining: 544ms
77:	learn: 8.4965765	total: 1.84s	remaining: 521ms
78:	learn: 8.4308736	total: 1.88s	remaining: 499ms
79:	learn: 8.3675601	total: 1.9s	remaining: 476ms
80:	learn: 8.3193887	total: 1.93s	remaining: 452ms
81:	learn: 8.2507990	total: 1.95s	remaining: 428ms
82:	learn: 8.1583259	total: 1.97s	remaining: 404ms
83:	learn: 8.0995902	total: 1.99s	remaining: 380ms
84:	learn: 8.0236655	total: 2.01s	remaining: 355ms
85:	learn: 7.9634698	total: 2.04s	remaining: 331ms
86:	learn: 7.9109081	total: 2.06s	remaining: 307ms
87:	learn: 7.8385006	total: 2.09s	remaining: 285ms
88:	learn: 7.7859488	total: 2.11s	remaining: 261ms
89:	learn: 7.7270142	total: 2.13s	remaining: 237ms
90:	learn: 7.6774253	total: 2.16s	remaining: 213ms
91:	learn: 7.6126552	total: 2.18s	remaining: 189ms
92:	learn: 7.5392178	total: 2.2s	remaining: 166ms
93:	learn: 7.4745082	total: 2.22s	remaining: 142ms
94:	learn: 7.4106939	total: 2.24s	remaining: 118ms
95:	learn: 7.3573350	total: 2.27s	remaining: 94.4ms
96:	learn: 7.2889777	total: 2.29s	remaining: 70.8ms
97:	learn: 7.2204939	total: 2.33s	remaining: 47.5ms
98:	learn: 7.1646465	total: 2.35s	remaining: 23.7ms
99:	learn: 7.1204610	total: 2.37s	remaining: 0us
0:	learn: 42.5494645	total: 20.9ms	remaining: 2.07s
1:	learn: 41.2913513	total: 43.2ms	remaining: 2.12s
2:	learn: 40.1676527	total: 67.2ms	remaining: 2.17s
3:	learn: 38.7664819	total: 96.5ms	remaining: 2.31s
4:	learn: 37.5407492	total: 118ms	remaining: 2.24s
5:	learn: 36.4295331	total: 141ms	remaining: 2.21s
6:	learn: 35.2895967	total: 163ms	remaining: 2.17s
7:	learn: 34.1884539	total: 186ms	remaining: 2.14s
8:	learn: 33.1817690	total: 206ms	remaining: 2.08s
9:	learn: 32.3518195	total: 226ms	remaining: 2.03s
10:	learn: 31.4837515	total: 247ms	remaining: 1.99s
11:	learn: 30.7255972	total: 268ms	remaining: 1.97s
12:	learn: 29.9298648	total: 295ms	remaining: 1.97s
13:	learn: 29.0574249	total: 321ms	remaining: 1.97s
14:	learn: 28.4097384	total: 343ms	remaining: 1.94s
15:	learn: 27.5317445	total: 365ms	remaining: 1.92s
16:	learn: 26.7911946	total: 387ms	remaining: 1.89s
17:	learn: 26.1103465	total: 411ms	remaining: 1.87s
18:	learn: 25.5295903	total: 433ms	remaining: 1.84s
19:	learn: 24.8544960	total: 455ms	remaining: 1.82s
20:	learn: 24.2772682	total: 478ms	remaining: 1.8s
21:	learn: 23.6936944	total: 508ms	remaining: 1.8s
22:	learn: 23.1300945	total: 533ms	remaining: 1.78s
23:	learn: 22.5333494	total: 555ms	remaining: 1.76s
24:	learn: 22.0553465	total: 578ms	remaining: 1.73s
25:	learn: 21.6253628	total: 601ms	remaining: 1.71s
26:	learn: 21.1396219	total: 623ms	remaining: 1.68s
27:	learn: 20.7382905	total: 645ms	remaining: 1.66s
28:	learn: 20.3233915	total: 668ms	remaining: 1.63s
29:	learn: 19.9323992	total: 690ms	remaining: 1.61s
30:	learn: 19.5650439	total: 722ms	remaining: 1.6s
31:	learn: 19.2165649	total: 746ms	remaining: 1.58s
32:	learn: 18.8890056	total: 768ms	remaining: 1.56s
33:	learn: 18.5523762	total: 792ms	remaining: 1.54s
34:	learn: 18.2666116	total: 814ms	remaining: 1.51s
35:	learn: 17.9216926	total: 835ms	remaining: 1.49s
36:	learn: 17.6118879	total: 856ms	remaining: 1.46s
37:	learn: 17.2653313	total: 878ms	remaining: 1.43s
38:	learn: 16.9946585	total: 901ms	remaining: 1.41s
39:	learn: 16.6842506	total: 933ms	remaining: 1.4s
40:	learn: 16.4102287	total: 958ms	remaining: 1.38s
41:	learn: 16.2288795	total: 982ms	remaining: 1.36s
42:	learn: 15.9623692	total: 1.01s	remaining: 1.33s
43:	learn: 15.7308231	total: 1.03s	remaining: 1.31s
44:	learn: 15.4695555	total: 1.05s	remaining: 1.29s
45:	learn: 15.2706809	total: 1.08s	remaining: 1.26s
46:	learn: 15.0182699	total: 1.1s	remaining: 1.24s
47:	learn: 14.7702088	total: 1.13s	remaining: 1.22s
48:	learn: 14.6303566	total: 1.15s	remaining: 1.2s
49:	learn: 14.4038016	total: 1.18s	remaining: 1.18s
50:	learn: 14.2309807	total: 1.2s	remaining: 1.16s
51:	learn: 14.0308425	total: 1.23s	remaining: 1.13s
52:	learn: 13.8201931	total: 1.25s	remaining: 1.11s
53:	learn: 13.6070078	total: 1.27s	remaining: 1.08s
54:	learn: 13.4230690	total: 1.29s	remaining: 1.06s
55:	learn: 13.2368649	total: 1.31s	remaining: 1.03s
56:	learn: 13.0449556	total: 1.34s	remaining: 1.01s
57:	learn: 12.8375669	total: 1.37s	remaining: 993ms
58:	learn: 12.6795194	total: 1.4s	remaining: 971ms
59:	learn: 12.5197211	total: 1.42s	remaining: 947ms
60:	learn: 12.4011717	total: 1.44s	remaining: 923ms
61:	learn: 12.2396104	total: 1.47s	remaining: 899ms
62:	learn: 12.0647878	total: 1.49s	remaining: 874ms
63:	learn: 11.9247719	total: 1.51s	remaining: 850ms
64:	learn: 11.7923634	total: 1.53s	remaining: 825ms
65:	learn: 11.6628246	total: 1.55s	remaining: 801ms
66:	learn: 11.5688935	total: 1.58s	remaining: 781ms
67:	learn: 11.4345056	total: 1.61s	remaining: 758ms
68:	learn: 11.3136955	total: 1.63s	remaining: 734ms
69:	learn: 11.2040357	total: 1.66s	remaining: 711ms
70:	learn: 11.1067773	total: 1.68s	remaining: 687ms
71:	learn: 10.9728105	total: 1.71s	remaining: 664ms
72:	learn: 10.8338607	total: 1.73s	remaining: 640ms
73:	learn: 10.7202016	total: 1.75s	remaining: 616ms
74:	learn: 10.5983746	total: 1.78s	remaining: 595ms
75:	learn: 10.4882458	total: 1.81s	remaining: 573ms
76:	learn: 10.3827604	total: 1.84s	remaining: 549ms
77:	learn: 10.2485726	total: 1.86s	remaining: 525ms
78:	learn: 10.1524716	total: 1.89s	remaining: 501ms
79:	learn: 10.0765127	total: 1.91s	remaining: 477ms
80:	learn: 9.9617067	total: 1.93s	remaining: 453ms
81:	learn: 9.8357151	total: 1.95s	remaining: 429ms
82:	learn: 9.7311644	total: 1.98s	remaining: 405ms
83:	learn: 9.6314802	total: 2.01s	remaining: 384ms
84:	learn: 9.5137958	total: 2.04s	remaining: 360ms
85:	learn: 9.4420485	total: 2.06s	remaining: 336ms
86:	learn: 9.3959294	total: 2.09s	remaining: 312ms
87:	learn: 9.3057742	total: 2.11s	remaining: 288ms
88:	learn: 9.2031484	total: 2.13s	remaining: 264ms
89:	learn: 9.0996948	total: 2.15s	remaining: 240ms
90:	learn: 9.0492278	total: 2.18s	remaining: 216ms
91:	learn: 8.9400377	total: 2.21s	remaining: 192ms
92:	learn: 8.8904458	total: 2.23s	remaining: 168ms
93:	learn: 8.8102982	total: 2.26s	remaining: 144ms
94:	learn: 8.7445451	total: 2.28s	remaining: 120ms
95:	learn: 8.6796106	total: 2.3s	remaining: 96ms
96:	learn: 8.5875790	total: 2.33s	remaining: 72ms
97:	learn: 8.5086871	total: 2.35s	remaining: 47.9ms
98:	learn: 8.4547244	total: 2.37s	remaining: 24ms
99:	learn: 8.3841281	total: 2.4s	remaining: 0us
0:	learn: 46.2258117	total: 3.15ms	remaining: 312ms
1:	learn: 45.1253456	total: 26ms	remaining: 1.27s
2:	learn: 43.7311767	total: 47.7ms	remaining: 1.54s
3:	learn: 42.4252819	total: 71.8ms	remaining: 1.72s
4:	learn: 41.1436655	total: 93.4ms	remaining: 1.77s
5:	learn: 40.0337136	total: 114ms	remaining: 1.78s
6:	learn: 38.9102686	total: 137ms	remaining: 1.82s
7:	learn: 37.7859737	total: 160ms	remaining: 1.84s
8:	learn: 36.7646905	total: 190ms	remaining: 1.92s
9:	learn: 35.9495481	total: 212ms	remaining: 1.9s
10:	learn: 35.0558185	total: 235ms	remaining: 1.9s
11:	learn: 34.1958090	total: 257ms	remaining: 1.88s
12:	learn: 33.3514013	total: 278ms	remaining: 1.86s
13:	learn: 32.3317086	total: 299ms	remaining: 1.84s
14:	learn: 31.5611046	total: 322ms	remaining: 1.82s
15:	learn: 30.6373573	total: 344ms	remaining: 1.81s
16:	learn: 29.8883669	total: 371ms	remaining: 1.81s
17:	learn: 29.2985952	total: 398ms	remaining: 1.81s
18:	learn: 28.6360550	total: 421ms	remaining: 1.8s
19:	learn: 27.9757056	total: 444ms	remaining: 1.78s
20:	learn: 27.2585835	total: 467ms	remaining: 1.76s
21:	learn: 26.6366391	total: 488ms	remaining: 1.73s
22:	learn: 26.1055455	total: 509ms	remaining: 1.7s
23:	learn: 25.4961568	total: 532ms	remaining: 1.68s
24:	learn: 25.1037435	total: 554ms	remaining: 1.66s
25:	learn: 24.5258982	total: 583ms	remaining: 1.66s
26:	learn: 23.9974764	total: 607ms	remaining: 1.64s
27:	learn: 23.5108419	total: 630ms	remaining: 1.62s
28:	learn: 23.0835773	total: 652ms	remaining: 1.6s
29:	learn: 22.5744350	total: 675ms	remaining: 1.57s
30:	learn: 22.1357783	total: 696ms	remaining: 1.55s
31:	learn: 21.7316226	total: 717ms	remaining: 1.52s
32:	learn: 21.4082899	total: 738ms	remaining: 1.5s
33:	learn: 20.9640138	total: 761ms	remaining: 1.48s
34:	learn: 20.6379417	total: 790ms	remaining: 1.47s
35:	learn: 20.2688010	total: 816ms	remaining: 1.45s
36:	learn: 19.8479214	total: 837ms	remaining: 1.43s
37:	learn: 19.5684638	total: 861ms	remaining: 1.4s
38:	learn: 19.1826919	total: 883ms	remaining: 1.38s
39:	learn: 18.9583308	total: 905ms	remaining: 1.36s
40:	learn: 18.6736002	total: 927ms	remaining: 1.33s
41:	learn: 18.3525328	total: 950ms	remaining: 1.31s
42:	learn: 17.9954191	total: 974ms	remaining: 1.29s
43:	learn: 17.6991520	total: 1s	remaining: 1.28s
44:	learn: 17.3697888	total: 1.03s	remaining: 1.25s
45:	learn: 17.0519636	total: 1.05s	remaining: 1.23s
46:	learn: 16.7829795	total: 1.07s	remaining: 1.21s
47:	learn: 16.5108695	total: 1.09s	remaining: 1.19s
48:	learn: 16.2366816	total: 1.11s	remaining: 1.16s
49:	learn: 15.9947350	total: 1.14s	remaining: 1.14s
50:	learn: 15.7513561	total: 1.16s	remaining: 1.11s
51:	learn: 15.4328481	total: 1.18s	remaining: 1.09s
52:	learn: 15.2497907	total: 1.2s	remaining: 1.06s
53:	learn: 15.0417076	total: 1.23s	remaining: 1.05s
54:	learn: 14.8861891	total: 1.25s	remaining: 1.02s
55:	learn: 14.6497794	total: 1.27s	remaining: 1s
56:	learn: 14.3664771	total: 1.3s	remaining: 978ms
57:	learn: 14.2358168	total: 1.32s	remaining: 956ms
58:	learn: 14.0712722	total: 1.34s	remaining: 933ms
59:	learn: 13.9191649	total: 1.36s	remaining: 909ms
60:	learn: 13.7032356	total: 1.39s	remaining: 886ms
61:	learn: 13.5029041	total: 1.41s	remaining: 863ms
62:	learn: 13.3568908	total: 1.44s	remaining: 844ms
63:	learn: 13.1332696	total: 1.46s	remaining: 822ms
64:	learn: 13.0323137	total: 1.48s	remaining: 799ms
65:	learn: 12.8622078	total: 1.51s	remaining: 776ms
66:	learn: 12.7088186	total: 1.53s	remaining: 753ms
67:	learn: 12.5524646	total: 1.55s	remaining: 729ms
68:	learn: 12.4646011	total: 1.57s	remaining: 706ms
69:	learn: 12.3900687	total: 1.59s	remaining: 684ms
70:	learn: 12.2908367	total: 1.62s	remaining: 661ms
71:	learn: 12.1294405	total: 1.65s	remaining: 641ms
72:	learn: 12.0359996	total: 1.67s	remaining: 619ms
73:	learn: 11.9244352	total: 1.7s	remaining: 596ms
74:	learn: 11.8312038	total: 1.72s	remaining: 573ms
75:	learn: 11.6622123	total: 1.74s	remaining: 549ms
76:	learn: 11.5959180	total: 1.76s	remaining: 526ms
77:	learn: 11.4538852	total: 1.79s	remaining: 504ms
78:	learn: 11.3700375	total: 1.81s	remaining: 481ms
79:	learn: 11.2101447	total: 1.83s	remaining: 459ms
80:	learn: 11.0614634	total: 1.87s	remaining: 439ms
81:	learn: 10.9029225	total: 1.9s	remaining: 416ms
82:	learn: 10.7792030	total: 1.92s	remaining: 394ms
83:	learn: 10.6279451	total: 1.95s	remaining: 371ms
84:	learn: 10.5530267	total: 1.97s	remaining: 348ms
85:	learn: 10.4577150	total: 2s	remaining: 326ms
86:	learn: 10.4076417	total: 2.02s	remaining: 303ms
87:	learn: 10.3166632	total: 2.05s	remaining: 279ms
88:	learn: 10.2018151	total: 2.08s	remaining: 257ms
89:	learn: 10.0698484	total: 2.11s	remaining: 234ms
90:	learn: 10.0162824	total: 2.13s	remaining: 211ms
91:	learn: 9.9352639	total: 2.16s	remaining: 188ms
92:	learn: 9.8316734	total: 2.18s	remaining: 164ms
93:	learn: 9.7195471	total: 2.21s	remaining: 141ms
94:	learn: 9.5914894	total: 2.23s	remaining: 117ms
95:	learn: 9.5151851	total: 2.26s	remaining: 94.2ms
96:	learn: 9.3911314	total: 2.29s	remaining: 71ms
97:	learn: 9.3417706	total: 2.32s	remaining: 47.4ms
98:	learn: 9.2708440	total: 2.35s	remaining: 23.7ms
99:	learn: 9.1660321	total: 2.37s	remaining: 0us
0:	learn: 45.8627255	total: 2.47ms	remaining: 245ms
1:	learn: 44.7432040	total: 25.4ms	remaining: 1.24s
2:	learn: 43.4398568	total: 50.3ms	remaining: 1.63s
3:	learn: 42.1495515	total: 75.4ms	remaining: 1.81s
4:	learn: 40.9712633	total: 110ms	remaining: 2.08s
5:	learn: 40.0119591	total: 135ms	remaining: 2.12s
6:	learn: 39.1914360	total: 168ms	remaining: 2.23s
7:	learn: 38.1861536	total: 194ms	remaining: 2.23s
8:	learn: 37.1477128	total: 220ms	remaining: 2.22s
9:	learn: 36.3044702	total: 241ms	remaining: 2.17s
10:	learn: 35.5837917	total: 266ms	remaining: 2.15s
11:	learn: 34.8664158	total: 291ms	remaining: 2.13s
12:	learn: 33.9129833	total: 325ms	remaining: 2.17s
13:	learn: 32.9094642	total: 352ms	remaining: 2.16s
14:	learn: 32.1965787	total: 376ms	remaining: 2.13s
15:	learn: 31.4598238	total: 402ms	remaining: 2.11s
16:	learn: 30.6578027	total: 434ms	remaining: 2.12s
17:	learn: 30.0227468	total: 459ms	remaining: 2.09s
18:	learn: 29.2954728	total: 484ms	remaining: 2.06s
19:	learn: 28.5928084	total: 510ms	remaining: 2.04s
20:	learn: 27.9445984	total: 539ms	remaining: 2.03s
21:	learn: 27.3493298	total: 566ms	remaining: 2.01s
22:	learn: 26.8491966	total: 592ms	remaining: 1.98s
23:	learn: 26.3177453	total: 616ms	remaining: 1.95s
24:	learn: 25.8134533	total: 641ms	remaining: 1.92s
25:	learn: 25.2000018	total: 664ms	remaining: 1.89s
26:	learn: 24.6570461	total: 695ms	remaining: 1.88s
27:	learn: 24.1062982	total: 718ms	remaining: 1.84s
28:	learn: 23.7489370	total: 751ms	remaining: 1.84s
29:	learn: 23.2050536	total: 778ms	remaining: 1.82s
30:	learn: 22.7824379	total: 803ms	remaining: 1.79s
31:	learn: 22.4052655	total: 828ms	remaining: 1.76s
32:	learn: 21.9525639	total: 853ms	remaining: 1.73s
33:	learn: 21.5482900	total: 876ms	remaining: 1.7s
34:	learn: 21.1900983	total: 898ms	remaining: 1.67s
35:	learn: 20.8243957	total: 922ms	remaining: 1.64s
36:	learn: 20.4401288	total: 957ms	remaining: 1.63s
37:	learn: 20.0960622	total: 991ms	remaining: 1.62s
38:	learn: 19.7795108	total: 1.02s	remaining: 1.59s
39:	learn: 19.4922451	total: 1.04s	remaining: 1.56s
40:	learn: 19.1827582	total: 1.07s	remaining: 1.53s
41:	learn: 18.8902445	total: 1.09s	remaining: 1.51s
42:	learn: 18.6833086	total: 1.11s	remaining: 1.48s
43:	learn: 18.4251972	total: 1.14s	remaining: 1.45s
44:	learn: 18.1471037	total: 1.16s	remaining: 1.42s
45:	learn: 17.8420017	total: 1.19s	remaining: 1.4s
46:	learn: 17.6101998	total: 1.23s	remaining: 1.39s
47:	learn: 17.3353656	total: 1.25s	remaining: 1.36s
48:	learn: 17.1194789	total: 1.28s	remaining: 1.33s
49:	learn: 16.8898454	total: 1.3s	remaining: 1.3s
50:	learn: 16.6657497	total: 1.33s	remaining: 1.27s
51:	learn: 16.3832867	total: 1.35s	remaining: 1.25s
52:	learn: 16.2098226	total: 1.37s	remaining: 1.22s
53:	learn: 16.0045707	total: 1.41s	remaining: 1.2s
54:	learn: 15.8512887	total: 1.43s	remaining: 1.17s
55:	learn: 15.6485628	total: 1.47s	remaining: 1.15s
56:	learn: 15.4841428	total: 1.49s	remaining: 1.13s
57:	learn: 15.3383158	total: 1.52s	remaining: 1.1s
58:	learn: 15.2056282	total: 1.54s	remaining: 1.07s
59:	learn: 15.0698337	total: 1.56s	remaining: 1.04s
60:	learn: 14.8487796	total: 1.59s	remaining: 1.02s
61:	learn: 14.7255751	total: 1.62s	remaining: 995ms
62:	learn: 14.6100414	total: 1.65s	remaining: 968ms
63:	learn: 14.3864212	total: 1.67s	remaining: 941ms
64:	learn: 14.2800460	total: 1.7s	remaining: 914ms
65:	learn: 14.1017299	total: 1.73s	remaining: 891ms
66:	learn: 13.9655015	total: 1.75s	remaining: 863ms
67:	learn: 13.8065764	total: 1.77s	remaining: 835ms
68:	learn: 13.7473285	total: 1.8s	remaining: 809ms
69:	learn: 13.6967309	total: 1.82s	remaining: 782ms
70:	learn: 13.6253255	total: 1.86s	remaining: 759ms
71:	learn: 13.4974926	total: 1.88s	remaining: 732ms
72:	learn: 13.4142694	total: 1.91s	remaining: 705ms
73:	learn: 13.2902600	total: 1.93s	remaining: 679ms
74:	learn: 13.1816461	total: 1.96s	remaining: 652ms
75:	learn: 13.0809498	total: 1.99s	remaining: 627ms
76:	learn: 12.9772285	total: 2.01s	remaining: 601ms
77:	learn: 12.8413858	total: 2.04s	remaining: 577ms
78:	learn: 12.7615799	total: 2.07s	remaining: 551ms
79:	learn: 12.5808659	total: 2.1s	remaining: 524ms
80:	learn: 12.4938330	total: 2.12s	remaining: 498ms
81:	learn: 12.3745576	total: 2.15s	remaining: 471ms
82:	learn: 12.2474104	total: 2.17s	remaining: 445ms
83:	learn: 12.1582297	total: 2.19s	remaining: 418ms
84:	learn: 12.0528081	total: 2.22s	remaining: 391ms
85:	learn: 11.9483355	total: 2.25s	remaining: 366ms
86:	learn: 11.8683204	total: 2.28s	remaining: 341ms
87:	learn: 11.7680945	total: 2.31s	remaining: 315ms
88:	learn: 11.6635447	total: 2.33s	remaining: 288ms
89:	learn: 11.5775031	total: 2.36s	remaining: 262ms
90:	learn: 11.4860538	total: 2.38s	remaining: 236ms
91:	learn: 11.3584960	total: 2.4s	remaining: 209ms
92:	learn: 11.2180285	total: 2.43s	remaining: 183ms
93:	learn: 11.0996558	total: 2.45s	remaining: 157ms
94:	learn: 10.9688832	total: 2.49s	remaining: 131ms
95:	learn: 10.9205457	total: 2.53s	remaining: 105ms
96:	learn: 10.8462783	total: 2.55s	remaining: 78.9ms
97:	learn: 10.7481890	total: 2.58s	remaining: 52.6ms
98:	learn: 10.6396315	total: 2.6s	remaining: 26.3ms
99:	learn: 10.5895308	total: 2.63s	remaining: 0us
0:	learn: 46.2892189	total: 23.7ms	remaining: 2.35s
1:	learn: 44.9732744	total: 55.6ms	remaining: 2.73s
2:	learn: 43.8887345	total: 82.1ms	remaining: 2.65s
3:	learn: 42.6526320	total: 108ms	remaining: 2.58s
4:	learn: 41.4812505	total: 134ms	remaining: 2.54s
5:	learn: 40.4431224	total: 166ms	remaining: 2.6s
6:	learn: 39.2936749	total: 188ms	remaining: 2.5s
7:	learn: 38.1961652	total: 210ms	remaining: 2.42s
8:	learn: 37.2194841	total: 234ms	remaining: 2.36s
9:	learn: 36.2518666	total: 259ms	remaining: 2.33s
10:	learn: 35.4919224	total: 283ms	remaining: 2.29s
11:	learn: 34.6975877	total: 317ms	remaining: 2.33s
12:	learn: 33.7869362	total: 344ms	remaining: 2.3s
13:	learn: 33.0646033	total: 368ms	remaining: 2.26s
14:	learn: 32.1821772	total: 392ms	remaining: 2.22s
15:	learn: 31.4340749	total: 424ms	remaining: 2.23s
16:	learn: 30.6504198	total: 447ms	remaining: 2.18s
17:	learn: 30.0090260	total: 472ms	remaining: 2.15s
18:	learn: 29.4233143	total: 499ms	remaining: 2.13s
19:	learn: 28.7661957	total: 530ms	remaining: 2.12s
20:	learn: 28.1570594	total: 556ms	remaining: 2.09s
21:	learn: 27.6140124	total: 582ms	remaining: 2.06s
22:	learn: 27.0130709	total: 606ms	remaining: 2.03s
23:	learn: 26.2648081	total: 631ms	remaining: 2s
24:	learn: 25.7963649	total: 653ms	remaining: 1.96s
25:	learn: 25.2713860	total: 687ms	remaining: 1.96s
26:	learn: 24.8080692	total: 712ms	remaining: 1.93s
27:	learn: 24.3042862	total: 743ms	remaining: 1.91s
28:	learn: 23.9097237	total: 768ms	remaining: 1.88s
29:	learn: 23.4953174	total: 794ms	remaining: 1.85s
30:	learn: 23.0484452	total: 820ms	remaining: 1.82s
31:	learn: 22.7100962	total: 844ms	remaining: 1.79s
32:	learn: 22.1662267	total: 868ms	remaining: 1.76s
33:	learn: 21.7339884	total: 892ms	remaining: 1.73s
34:	learn: 21.3699422	total: 915ms	remaining: 1.7s
35:	learn: 21.0249329	total: 949ms	remaining: 1.69s
36:	learn: 20.6187923	total: 981ms	remaining: 1.67s
37:	learn: 20.2401981	total: 1.01s	remaining: 1.64s
38:	learn: 19.9712328	total: 1.03s	remaining: 1.61s
39:	learn: 19.6429610	total: 1.06s	remaining: 1.58s
40:	learn: 19.3281556	total: 1.08s	remaining: 1.56s
41:	learn: 19.0925924	total: 1.1s	remaining: 1.53s
42:	learn: 18.8118712	total: 1.13s	remaining: 1.5s
43:	learn: 18.5355748	total: 1.15s	remaining: 1.47s
44:	learn: 18.2783929	total: 1.19s	remaining: 1.45s
45:	learn: 17.9915490	total: 1.22s	remaining: 1.43s
46:	learn: 17.7323317	total: 1.25s	remaining: 1.4s
47:	learn: 17.4448307	total: 1.27s	remaining: 1.38s
48:	learn: 17.2419782	total: 1.29s	remaining: 1.35s
49:	learn: 16.9351352	total: 1.32s	remaining: 1.32s
50:	learn: 16.7728723	total: 1.34s	remaining: 1.29s
51:	learn: 16.5718087	total: 1.37s	remaining: 1.26s
52:	learn: 16.4047483	total: 1.4s	remaining: 1.24s
53:	learn: 16.2888950	total: 1.43s	remaining: 1.21s
54:	learn: 16.1353042	total: 1.45s	remaining: 1.19s
55:	learn: 15.9384012	total: 1.48s	remaining: 1.17s
56:	learn: 15.7488511	total: 1.51s	remaining: 1.14s
57:	learn: 15.5682846	total: 1.53s	remaining: 1.11s
58:	learn: 15.3488716	total: 1.55s	remaining: 1.08s
59:	learn: 15.2291272	total: 1.58s	remaining: 1.05s
60:	learn: 15.0582519	total: 1.61s	remaining: 1.03s
61:	learn: 14.8478458	total: 1.64s	remaining: 1s
62:	learn: 14.6663416	total: 1.66s	remaining: 975ms
63:	learn: 14.4830825	total: 1.69s	remaining: 948ms
64:	learn: 14.3300895	total: 1.71s	remaining: 921ms
65:	learn: 14.1168590	total: 1.74s	remaining: 898ms
66:	learn: 13.9783298	total: 1.77s	remaining: 871ms
67:	learn: 13.8132857	total: 1.79s	remaining: 845ms
68:	learn: 13.7050863	total: 1.83s	remaining: 823ms
69:	learn: 13.5742501	total: 1.86s	remaining: 796ms
70:	learn: 13.4851362	total: 1.88s	remaining: 769ms
71:	learn: 13.3300610	total: 1.91s	remaining: 742ms
72:	learn: 13.2223060	total: 1.93s	remaining: 715ms
73:	learn: 13.0706731	total: 1.95s	remaining: 687ms
74:	learn: 12.9178099	total: 1.98s	remaining: 660ms
75:	learn: 12.7954645	total: 2.01s	remaining: 635ms
76:	learn: 12.7133688	total: 2.04s	remaining: 610ms
77:	learn: 12.5745537	total: 2.07s	remaining: 583ms
78:	learn: 12.4765302	total: 2.09s	remaining: 556ms
79:	learn: 12.3609145	total: 2.12s	remaining: 529ms
80:	learn: 12.2437759	total: 2.14s	remaining: 502ms
81:	learn: 12.1583763	total: 2.16s	remaining: 475ms
82:	learn: 12.0202500	total: 2.19s	remaining: 448ms
83:	learn: 11.9125166	total: 2.21s	remaining: 421ms
84:	learn: 11.8100729	total: 2.24s	remaining: 396ms
85:	learn: 11.7509521	total: 2.28s	remaining: 371ms
86:	learn: 11.6448436	total: 2.3s	remaining: 344ms
87:	learn: 11.5550170	total: 2.33s	remaining: 317ms
88:	learn: 11.4624708	total: 2.35s	remaining: 291ms
89:	learn: 11.3547761	total: 2.37s	remaining: 264ms
90:	learn: 11.2513910	total: 2.4s	remaining: 237ms
91:	learn: 11.1414483	total: 2.42s	remaining: 211ms
92:	learn: 11.0742264	total: 2.45s	remaining: 185ms
93:	learn: 10.9721772	total: 2.48s	remaining: 158ms
94:	learn: 10.9118054	total: 2.5s	remaining: 132ms
95:	learn: 10.8465290	total: 2.54s	remaining: 106ms
96:	learn: 10.7451745	total: 2.56s	remaining: 79.3ms
97:	learn: 10.6173565	total: 2.58s	remaining: 52.8ms
98:	learn: 10.5562158	total: 2.61s	remaining: 26.3ms
99:	learn: 10.4564960	total: 2.63s	remaining: 0us
0:	learn: 27.8909741	total: 26ms	remaining: 7.76s
1:	learn: 27.7454242	total: 51.7ms	remaining: 7.71s
2:	learn: 27.6111999	total: 76.1ms	remaining: 7.53s
3:	learn: 27.4600863	total: 101ms	remaining: 7.44s
4:	learn: 27.3260335	total: 133ms	remaining: 7.86s
5:	learn: 27.1985740	total: 161ms	remaining: 7.88s
6:	learn: 27.0660624	total: 193ms	remaining: 8.06s
7:	learn: 26.9502628	total: 217ms	remaining: 7.94s
8:	learn: 26.8402973	total: 242ms	remaining: 7.83s
9:	learn: 26.7116533	total: 267ms	remaining: 7.74s
10:	learn: 26.5912304	total: 292ms	remaining: 7.66s
11:	learn: 26.4818560	total: 314ms	remaining: 7.54s
12:	learn: 26.3630522	total: 339ms	remaining: 7.48s
13:	learn: 26.2428640	total: 363ms	remaining: 7.41s
14:	learn: 26.1282325	total: 400ms	remaining: 7.6s
15:	learn: 26.0091410	total: 427ms	remaining: 7.58s
16:	learn: 25.8970089	total: 451ms	remaining: 7.51s
17:	learn: 25.7757055	total: 475ms	remaining: 7.44s
18:	learn: 25.6496251	total: 500ms	remaining: 7.39s
19:	learn: 25.5484901	total: 523ms	remaining: 7.32s
20:	learn: 25.4310248	total: 546ms	remaining: 7.25s
21:	learn: 25.3060633	total: 571ms	remaining: 7.21s
22:	learn: 25.1911135	total: 604ms	remaining: 7.28s
23:	learn: 25.0751115	total: 631ms	remaining: 7.26s
24:	learn: 24.9785444	total: 664ms	remaining: 7.3s
25:	learn: 24.8595879	total: 689ms	remaining: 7.26s
26:	learn: 24.7426277	total: 714ms	remaining: 7.21s
27:	learn: 24.6393116	total: 716ms	remaining: 6.96s
28:	learn: 24.5376847	total: 740ms	remaining: 6.92s
29:	learn: 24.4319233	total: 764ms	remaining: 6.87s
30:	learn: 24.3179642	total: 789ms	remaining: 6.84s
31:	learn: 24.2277640	total: 823ms	remaining: 6.89s
32:	learn: 24.1175303	total: 849ms	remaining: 6.87s
33:	learn: 24.0025830	total: 873ms	remaining: 6.83s
34:	learn: 23.8933138	total: 899ms	remaining: 6.8s
35:	learn: 23.7978848	total: 931ms	remaining: 6.83s
36:	learn: 23.6976272	total: 954ms	remaining: 6.78s
37:	learn: 23.5812052	total: 978ms	remaining: 6.74s
38:	learn: 23.4803621	total: 1s	remaining: 6.71s
39:	learn: 23.3838152	total: 1.04s	remaining: 6.74s
40:	learn: 23.2868223	total: 1.06s	remaining: 6.72s
41:	learn: 23.1851207	total: 1.09s	remaining: 6.7s
42:	learn: 23.0850575	total: 1.11s	remaining: 6.67s
43:	learn: 22.9941965	total: 1.14s	remaining: 6.65s
44:	learn: 22.8932530	total: 1.18s	remaining: 6.66s
45:	learn: 22.8049000	total: 1.2s	remaining: 6.63s
46:	learn: 22.7182127	total: 1.22s	remaining: 6.59s
47:	learn: 22.6270080	total: 1.26s	remaining: 6.61s
48:	learn: 22.5359862	total: 1.28s	remaining: 6.58s
49:	learn: 22.4435640	total: 1.31s	remaining: 6.54s
50:	learn: 22.3511768	total: 1.33s	remaining: 6.51s
51:	learn: 22.2533392	total: 1.36s	remaining: 6.48s
52:	learn: 22.1598144	total: 1.38s	remaining: 6.45s
53:	learn: 22.0687311	total: 1.41s	remaining: 6.41s
54:	learn: 21.9783996	total: 1.44s	remaining: 6.41s
55:	learn: 21.8874106	total: 1.47s	remaining: 6.41s
56:	learn: 21.8003765	total: 1.5s	remaining: 6.38s
57:	learn: 21.6994378	total: 1.52s	remaining: 6.35s
58:	learn: 21.6017747	total: 1.55s	remaining: 6.32s
59:	learn: 21.5010446	total: 1.57s	remaining: 6.29s
60:	learn: 21.3964987	total: 1.6s	remaining: 6.26s
61:	learn: 21.2914416	total: 1.62s	remaining: 6.22s
62:	learn: 21.1944430	total: 1.65s	remaining: 6.19s
63:	learn: 21.0964015	total: 1.67s	remaining: 6.17s
64:	learn: 21.0103359	total: 1.71s	remaining: 6.19s
65:	learn: 20.9282967	total: 1.74s	remaining: 6.17s
66:	learn: 20.8538000	total: 1.76s	remaining: 6.13s
67:	learn: 20.7728703	total: 1.79s	remaining: 6.1s
68:	learn: 20.6867426	total: 1.81s	remaining: 6.07s
69:	learn: 20.5945815	total: 1.84s	remaining: 6.04s
70:	learn: 20.5135483	total: 1.86s	remaining: 6.01s
71:	learn: 20.4247509	total: 1.89s	remaining: 5.98s
72:	learn: 20.3179450	total: 1.92s	remaining: 5.98s
73:	learn: 20.2381739	total: 1.95s	remaining: 5.95s
74:	learn: 20.1427785	total: 1.98s	remaining: 5.95s
75:	learn: 20.0577678	total: 2.01s	remaining: 5.92s
76:	learn: 19.9895777	total: 2.03s	remaining: 5.89s
77:	learn: 19.9049210	total: 2.06s	remaining: 5.86s
78:	learn: 19.8195140	total: 2.08s	remaining: 5.83s
79:	learn: 19.7332657	total: 2.11s	remaining: 5.8s
80:	learn: 19.6510418	total: 2.14s	remaining: 5.79s
81:	learn: 19.5727878	total: 2.17s	remaining: 5.76s
82:	learn: 19.5171316	total: 2.19s	remaining: 5.73s
83:	learn: 19.4470417	total: 2.22s	remaining: 5.7s
84:	learn: 19.3651617	total: 2.25s	remaining: 5.7s
85:	learn: 19.2864544	total: 2.27s	remaining: 5.66s
86:	learn: 19.2079143	total: 2.3s	remaining: 5.62s
87:	learn: 19.1337475	total: 2.32s	remaining: 5.59s
88:	learn: 19.0524248	total: 2.35s	remaining: 5.58s
89:	learn: 18.9875806	total: 2.38s	remaining: 5.56s
90:	learn: 18.9135796	total: 2.41s	remaining: 5.53s
91:	learn: 18.8435998	total: 2.43s	remaining: 5.5s
92:	learn: 18.7754418	total: 2.46s	remaining: 5.47s
93:	learn: 18.6989733	total: 2.49s	remaining: 5.45s
94:	learn: 18.6253442	total: 2.51s	remaining: 5.42s
95:	learn: 18.5546084	total: 2.54s	remaining: 5.39s
96:	learn: 18.4860831	total: 2.57s	remaining: 5.38s
97:	learn: 18.4048784	total: 2.6s	remaining: 5.35s
98:	learn: 18.3325619	total: 2.62s	remaining: 5.32s
99:	learn: 18.2708179	total: 2.65s	remaining: 5.29s
100:	learn: 18.1949234	total: 2.67s	remaining: 5.27s
101:	learn: 18.1209623	total: 2.7s	remaining: 5.24s
102:	learn: 18.0439521	total: 2.72s	remaining: 5.21s
103:	learn: 17.9793178	total: 2.75s	remaining: 5.19s
104:	learn: 17.9200271	total: 2.79s	remaining: 5.18s
105:	learn: 17.8685025	total: 2.81s	remaining: 5.15s
106:	learn: 17.8030415	total: 2.84s	remaining: 5.12s
107:	learn: 17.7368977	total: 2.86s	remaining: 5.09s
108:	learn: 17.6750310	total: 2.89s	remaining: 5.06s
109:	learn: 17.6085180	total: 2.91s	remaining: 5.03s
110:	learn: 17.5476542	total: 2.94s	remaining: 5s
111:	learn: 17.4809765	total: 2.96s	remaining: 4.97s
112:	learn: 17.4231096	total: 2.99s	remaining: 4.96s
113:	learn: 17.3581008	total: 3.03s	remaining: 4.94s
114:	learn: 17.2955719	total: 3.05s	remaining: 4.91s
115:	learn: 17.2257082	total: 3.08s	remaining: 4.89s
116:	learn: 17.1668254	total: 3.11s	remaining: 4.86s
117:	learn: 17.1122745	total: 3.13s	remaining: 4.83s
118:	learn: 17.0386468	total: 3.15s	remaining: 4.8s
119:	learn: 16.9863122	total: 3.18s	remaining: 4.77s
120:	learn: 16.9295516	total: 3.21s	remaining: 4.75s
121:	learn: 16.8683764	total: 3.24s	remaining: 4.73s
122:	learn: 16.8214061	total: 3.26s	remaining: 4.7s
123:	learn: 16.7643379	total: 3.3s	remaining: 4.68s
124:	learn: 16.7080302	total: 3.32s	remaining: 4.65s
125:	learn: 16.6507689	total: 3.35s	remaining: 4.62s
126:	learn: 16.5941589	total: 3.37s	remaining: 4.59s
127:	learn: 16.5399113	total: 3.39s	remaining: 4.56s
128:	learn: 16.4839662	total: 3.43s	remaining: 4.54s
129:	learn: 16.4314318	total: 3.46s	remaining: 4.52s
130:	learn: 16.3733374	total: 3.48s	remaining: 4.49s
131:	learn: 16.3224352	total: 3.51s	remaining: 4.46s
132:	learn: 16.2632236	total: 3.54s	remaining: 4.45s
133:	learn: 16.1988942	total: 3.57s	remaining: 4.42s
134:	learn: 16.1293176	total: 3.59s	remaining: 4.39s
135:	learn: 16.0733899	total: 3.62s	remaining: 4.37s
136:	learn: 16.0158498	total: 3.65s	remaining: 4.34s
137:	learn: 15.9591967	total: 3.67s	remaining: 4.31s
138:	learn: 15.9052493	total: 3.7s	remaining: 4.29s
139:	learn: 15.8564159	total: 3.73s	remaining: 4.26s
140:	learn: 15.7936916	total: 3.75s	remaining: 4.23s
141:	learn: 15.7367541	total: 3.78s	remaining: 4.2s
142:	learn: 15.6804129	total: 3.81s	remaining: 4.18s
143:	learn: 15.6256309	total: 3.83s	remaining: 4.15s
144:	learn: 15.5736025	total: 3.86s	remaining: 4.13s
145:	learn: 15.5203399	total: 3.89s	remaining: 4.1s
146:	learn: 15.4718595	total: 3.91s	remaining: 4.07s
147:	learn: 15.4311226	total: 3.94s	remaining: 4.04s
148:	learn: 15.3907562	total: 3.96s	remaining: 4.01s
149:	learn: 15.3310063	total: 3.99s	remaining: 3.99s
150:	learn: 15.2806596	total: 4.01s	remaining: 3.96s
151:	learn: 15.2374668	total: 4.03s	remaining: 3.92s
152:	learn: 15.2101464	total: 4.03s	remaining: 3.88s
153:	learn: 15.1607573	total: 4.07s	remaining: 3.86s
154:	learn: 15.1134025	total: 4.1s	remaining: 3.84s
155:	learn: 15.0676613	total: 4.13s	remaining: 3.81s
156:	learn: 15.0264233	total: 4.15s	remaining: 3.78s
157:	learn: 14.9765283	total: 4.18s	remaining: 3.75s
158:	learn: 14.9267361	total: 4.2s	remaining: 3.73s
159:	learn: 14.8792787	total: 4.22s	remaining: 3.7s
160:	learn: 14.8339292	total: 4.25s	remaining: 3.67s
161:	learn: 14.7850928	total: 4.28s	remaining: 3.65s
162:	learn: 14.7346218	total: 4.31s	remaining: 3.63s
163:	learn: 14.6875906	total: 4.34s	remaining: 3.6s
164:	learn: 14.6412434	total: 4.37s	remaining: 3.57s
165:	learn: 14.5988877	total: 4.39s	remaining: 3.54s
166:	learn: 14.5478790	total: 4.42s	remaining: 3.52s
167:	learn: 14.4967177	total: 4.44s	remaining: 3.49s
168:	learn: 14.4421400	total: 4.46s	remaining: 3.46s
169:	learn: 14.3987778	total: 4.49s	remaining: 3.43s
170:	learn: 14.3531038	total: 4.51s	remaining: 3.4s
171:	learn: 14.3106522	total: 4.54s	remaining: 3.38s
172:	learn: 14.2686857	total: 4.58s	remaining: 3.36s
173:	learn: 14.2235837	total: 4.6s	remaining: 3.33s
174:	learn: 14.1805323	total: 4.63s	remaining: 3.31s
175:	learn: 14.1332040	total: 4.65s	remaining: 3.28s
176:	learn: 14.0968880	total: 4.68s	remaining: 3.25s
177:	learn: 14.0622759	total: 4.7s	remaining: 3.22s
178:	learn: 14.0319541	total: 4.72s	remaining: 3.19s
179:	learn: 13.9882771	total: 4.75s	remaining: 3.17s
180:	learn: 13.9496593	total: 4.78s	remaining: 3.14s
181:	learn: 13.9034141	total: 4.81s	remaining: 3.12s
182:	learn: 13.8597071	total: 4.84s	remaining: 3.09s
183:	learn: 13.8154296	total: 4.86s	remaining: 3.07s
184:	learn: 13.7751533	total: 4.89s	remaining: 3.04s
185:	learn: 13.7294220	total: 4.91s	remaining: 3.01s
186:	learn: 13.6908603	total: 4.94s	remaining: 2.98s
187:	learn: 13.6533068	total: 4.96s	remaining: 2.95s
188:	learn: 13.6186138	total: 4.99s	remaining: 2.93s
189:	learn: 13.5810553	total: 5.02s	remaining: 2.9s
190:	learn: 13.5378988	total: 5.04s	remaining: 2.88s
191:	learn: 13.4891599	total: 5.07s	remaining: 2.85s
192:	learn: 13.4482041	total: 5.1s	remaining: 2.83s
193:	learn: 13.4166054	total: 5.12s	remaining: 2.8s
194:	learn: 13.3823696	total: 5.15s	remaining: 2.77s
195:	learn: 13.3426564	total: 5.17s	remaining: 2.74s
196:	learn: 13.3012579	total: 5.21s	remaining: 2.72s
197:	learn: 13.2625524	total: 5.23s	remaining: 2.7s
198:	learn: 13.2251981	total: 5.26s	remaining: 2.67s
199:	learn: 13.1861520	total: 5.28s	remaining: 2.64s
200:	learn: 13.1502120	total: 5.31s	remaining: 2.62s
201:	learn: 13.1138371	total: 5.33s	remaining: 2.59s
202:	learn: 13.0770461	total: 5.37s	remaining: 2.56s
203:	learn: 13.0417879	total: 5.39s	remaining: 2.54s
204:	learn: 13.0006414	total: 5.43s	remaining: 2.52s
205:	learn: 12.9646369	total: 5.45s	remaining: 2.49s
206:	learn: 12.9276921	total: 5.48s	remaining: 2.46s
207:	learn: 12.8939897	total: 5.5s	remaining: 2.43s
208:	learn: 12.8655136	total: 5.53s	remaining: 2.41s
209:	learn: 12.8335451	total: 5.55s	remaining: 2.38s
210:	learn: 12.8006136	total: 5.58s	remaining: 2.35s
211:	learn: 12.7636296	total: 5.6s	remaining: 2.32s
212:	learn: 12.7280060	total: 5.64s	remaining: 2.3s
213:	learn: 12.6955534	total: 5.67s	remaining: 2.28s
214:	learn: 12.6515516	total: 5.69s	remaining: 2.25s
215:	learn: 12.6171156	total: 5.72s	remaining: 2.22s
216:	learn: 12.5794917	total: 5.74s	remaining: 2.2s
217:	learn: 12.5480598	total: 5.77s	remaining: 2.17s
218:	learn: 12.5146424	total: 5.79s	remaining: 2.14s
219:	learn: 12.4826603	total: 5.82s	remaining: 2.12s
220:	learn: 12.4551083	total: 5.84s	remaining: 2.09s
221:	learn: 12.4210815	total: 5.88s	remaining: 2.07s
222:	learn: 12.3944277	total: 5.91s	remaining: 2.04s
223:	learn: 12.3568814	total: 5.93s	remaining: 2.01s
224:	learn: 12.3274830	total: 5.96s	remaining: 1.99s
225:	learn: 12.2947157	total: 5.98s	remaining: 1.96s
226:	learn: 12.2549787	total: 6s	remaining: 1.93s
227:	learn: 12.2190737	total: 6.03s	remaining: 1.9s
228:	learn: 12.1830419	total: 6.05s	remaining: 1.88s
229:	learn: 12.1535286	total: 6.09s	remaining: 1.85s
230:	learn: 12.1209633	total: 6.11s	remaining: 1.83s
231:	learn: 12.1011719	total: 6.14s	remaining: 1.8s
232:	learn: 12.0655225	total: 6.17s	remaining: 1.77s
233:	learn: 12.0339911	total: 6.2s	remaining: 1.75s
234:	learn: 12.0009720	total: 6.22s	remaining: 1.72s
235:	learn: 11.9683468	total: 6.24s	remaining: 1.69s
236:	learn: 11.9414512	total: 6.27s	remaining: 1.67s
237:	learn: 11.9143496	total: 6.3s	remaining: 1.64s
238:	learn: 11.8813757	total: 6.33s	remaining: 1.61s
239:	learn: 11.8512196	total: 6.35s	remaining: 1.59s
240:	learn: 11.8188680	total: 6.38s	remaining: 1.56s
241:	learn: 11.7872942	total: 6.41s	remaining: 1.54s
242:	learn: 11.7584780	total: 6.43s	remaining: 1.51s
243:	learn: 11.7286464	total: 6.46s	remaining: 1.48s
244:	learn: 11.7065328	total: 6.48s	remaining: 1.46s
245:	learn: 11.6742266	total: 6.52s	remaining: 1.43s
246:	learn: 11.6358845	total: 6.54s	remaining: 1.4s
247:	learn: 11.6053686	total: 6.57s	remaining: 1.38s
248:	learn: 11.5799981	total: 6.59s	remaining: 1.35s
249:	learn: 11.5564368	total: 6.62s	remaining: 1.32s
250:	learn: 11.5420498	total: 6.64s	remaining: 1.3s
251:	learn: 11.5106262	total: 6.67s	remaining: 1.27s
252:	learn: 11.4806808	total: 6.7s	remaining: 1.24s
253:	learn: 11.4566114	total: 6.73s	remaining: 1.22s
254:	learn: 11.4254774	total: 6.76s	remaining: 1.19s
255:	learn: 11.3978729	total: 6.78s	remaining: 1.17s
256:	learn: 11.3657161	total: 6.81s	remaining: 1.14s
257:	learn: 11.3355668	total: 6.83s	remaining: 1.11s
258:	learn: 11.3040620	total: 6.86s	remaining: 1.08s
259:	learn: 11.2771416	total: 6.88s	remaining: 1.06s
260:	learn: 11.2504011	total: 6.91s	remaining: 1.03s
261:	learn: 11.2255899	total: 6.93s	remaining: 1s
262:	learn: 11.1923276	total: 6.96s	remaining: 980ms
263:	learn: 11.1664304	total: 6.99s	remaining: 954ms
264:	learn: 11.1395918	total: 7.02s	remaining: 927ms
265:	learn: 11.1183251	total: 7.05s	remaining: 901ms
266:	learn: 11.0967429	total: 7.07s	remaining: 874ms
267:	learn: 11.0655190	total: 7.09s	remaining: 847ms
268:	learn: 11.0363278	total: 7.12s	remaining: 820ms
269:	learn: 11.0053978	total: 7.14s	remaining: 793ms
270:	learn: 10.9769137	total: 7.17s	remaining: 768ms
271:	learn: 10.9560195	total: 7.2s	remaining: 742ms
272:	learn: 10.9347914	total: 7.23s	remaining: 715ms
273:	learn: 10.9105501	total: 7.26s	remaining: 689ms
274:	learn: 10.8888259	total: 7.28s	remaining: 662ms
275:	learn: 10.8670844	total: 7.31s	remaining: 635ms
276:	learn: 10.8443821	total: 7.33s	remaining: 609ms
277:	learn: 10.8103858	total: 7.36s	remaining: 582ms
278:	learn: 10.7822665	total: 7.38s	remaining: 556ms
279:	learn: 10.7558379	total: 7.42s	remaining: 530ms
280:	learn: 10.7323901	total: 7.45s	remaining: 504ms
281:	learn: 10.7091335	total: 7.47s	remaining: 477ms
282:	learn: 10.6833968	total: 7.5s	remaining: 451ms
283:	learn: 10.6578926	total: 7.53s	remaining: 424ms
284:	learn: 10.6362577	total: 7.55s	remaining: 397ms
285:	learn: 10.6113525	total: 7.57s	remaining: 371ms
286:	learn: 10.5900301	total: 7.6s	remaining: 344ms
287:	learn: 10.5725049	total: 7.63s	remaining: 318ms
288:	learn: 10.5490299	total: 7.66s	remaining: 291ms
289:	learn: 10.5223988	total: 7.68s	remaining: 265ms
290:	learn: 10.4979486	total: 7.72s	remaining: 239ms
291:	learn: 10.4774612	total: 7.72s	remaining: 212ms
292:	learn: 10.4538360	total: 7.75s	remaining: 185ms
293:	learn: 10.4239842	total: 7.77s	remaining: 159ms
294:	learn: 10.4055855	total: 7.79s	remaining: 132ms
295:	learn: 10.3872750	total: 7.82s	remaining: 106ms
296:	learn: 10.3614579	total: 7.85s	remaining: 79.3ms
297:	learn: 10.3366670	total: 7.88s	remaining: 52.9ms
298:	learn: 10.3100256	total: 7.9s	remaining: 26.4ms
299:	learn: 10.2813491	total: 7.93s	remaining: 0us
0:	learn: 43.7152227	total: 32.3ms	remaining: 9.67s
1:	learn: 43.4541703	total: 67.9ms	remaining: 10.1s
2:	learn: 43.1578143	total: 93.4ms	remaining: 9.25s
3:	learn: 42.8783278	total: 118ms	remaining: 8.72s
4:	learn: 42.6072908	total: 143ms	remaining: 8.41s
5:	learn: 42.3444208	total: 166ms	remaining: 8.13s
6:	learn: 42.0672063	total: 191ms	remaining: 8.01s
7:	learn: 41.7932543	total: 215ms	remaining: 7.84s
8:	learn: 41.5306590	total: 238ms	remaining: 7.71s
9:	learn: 41.2812169	total: 264ms	remaining: 7.65s
10:	learn: 41.0331540	total: 297ms	remaining: 7.81s
11:	learn: 40.8231308	total: 328ms	remaining: 7.86s
12:	learn: 40.5899007	total: 352ms	remaining: 7.78s
13:	learn: 40.3346026	total: 377ms	remaining: 7.71s
14:	learn: 40.1139803	total: 402ms	remaining: 7.64s
15:	learn: 39.8388121	total: 428ms	remaining: 7.59s
16:	learn: 39.5736935	total: 450ms	remaining: 7.5s
17:	learn: 39.3283794	total: 474ms	remaining: 7.43s
18:	learn: 39.1203770	total: 500ms	remaining: 7.39s
19:	learn: 38.8686340	total: 535ms	remaining: 7.49s
20:	learn: 38.6284119	total: 569ms	remaining: 7.57s
21:	learn: 38.3922159	total: 595ms	remaining: 7.52s
22:	learn: 38.1843490	total: 620ms	remaining: 7.47s
23:	learn: 37.9201544	total: 646ms	remaining: 7.43s
24:	learn: 37.7010071	total: 670ms	remaining: 7.37s
25:	learn: 37.4916719	total: 695ms	remaining: 7.32s
26:	learn: 37.2493473	total: 726ms	remaining: 7.34s
27:	learn: 37.0272256	total: 731ms	remaining: 7.1s
28:	learn: 36.7936594	total: 759ms	remaining: 7.09s
29:	learn: 36.5622783	total: 783ms	remaining: 7.05s
30:	learn: 36.3206995	total: 809ms	remaining: 7.02s
31:	learn: 36.0921866	total: 843ms	remaining: 7.06s
32:	learn: 35.8568426	total: 866ms	remaining: 7.01s
33:	learn: 35.6642425	total: 889ms	remaining: 6.96s
34:	learn: 35.4602687	total: 914ms	remaining: 6.92s
35:	learn: 35.2260548	total: 943ms	remaining: 6.91s
36:	learn: 35.0250404	total: 973ms	remaining: 6.91s
37:	learn: 34.7954201	total: 998ms	remaining: 6.88s
38:	learn: 34.5616477	total: 1.02s	remaining: 6.85s
39:	learn: 34.3769833	total: 1.05s	remaining: 6.81s
40:	learn: 34.1782144	total: 1.08s	remaining: 6.82s
41:	learn: 33.9982646	total: 1.1s	remaining: 6.77s
42:	learn: 33.7930222	total: 1.13s	remaining: 6.74s
43:	learn: 33.6060625	total: 1.15s	remaining: 6.7s
44:	learn: 33.4242352	total: 1.19s	remaining: 6.72s
45:	learn: 33.2274741	total: 1.21s	remaining: 6.7s
46:	learn: 33.0522381	total: 1.24s	remaining: 6.67s
47:	learn: 32.8691924	total: 1.26s	remaining: 6.63s
48:	learn: 32.6903220	total: 1.29s	remaining: 6.61s
49:	learn: 32.5203590	total: 1.31s	remaining: 6.57s
50:	learn: 32.3218264	total: 1.34s	remaining: 6.57s
51:	learn: 32.1326864	total: 1.37s	remaining: 6.55s
52:	learn: 31.9431774	total: 1.41s	remaining: 6.55s
53:	learn: 31.7713238	total: 1.43s	remaining: 6.51s
54:	learn: 31.6084772	total: 1.45s	remaining: 6.47s
55:	learn: 31.4319830	total: 1.48s	remaining: 6.44s
56:	learn: 31.2348926	total: 1.5s	remaining: 6.41s
57:	learn: 31.0725808	total: 1.53s	remaining: 6.37s
58:	learn: 30.8961475	total: 1.55s	remaining: 6.34s
59:	learn: 30.7313327	total: 1.58s	remaining: 6.32s
60:	learn: 30.5547997	total: 1.62s	remaining: 6.34s
61:	learn: 30.3898331	total: 1.64s	remaining: 6.31s
62:	learn: 30.2020504	total: 1.67s	remaining: 6.27s
63:	learn: 30.0345876	total: 1.69s	remaining: 6.24s
64:	learn: 29.9019760	total: 1.72s	remaining: 6.2s
65:	learn: 29.7335152	total: 1.74s	remaining: 6.17s
66:	learn: 29.5869773	total: 1.76s	remaining: 6.13s
67:	learn: 29.4481027	total: 1.79s	remaining: 6.1s
68:	learn: 29.2982753	total: 1.82s	remaining: 6.08s
69:	learn: 29.1351630	total: 1.85s	remaining: 6.07s
70:	learn: 29.0085567	total: 1.88s	remaining: 6.06s
71:	learn: 28.8581541	total: 1.9s	remaining: 6.03s
72:	learn: 28.7113567	total: 1.93s	remaining: 6s
73:	learn: 28.5624552	total: 1.95s	remaining: 5.97s
74:	learn: 28.4154962	total: 1.98s	remaining: 5.94s
75:	learn: 28.2695903	total: 1.98s	remaining: 5.84s
76:	learn: 28.1120360	total: 2.01s	remaining: 5.81s
77:	learn: 27.9649546	total: 2.04s	remaining: 5.81s
78:	learn: 27.8247227	total: 2.07s	remaining: 5.78s
79:	learn: 27.6732443	total: 2.09s	remaining: 5.75s
80:	learn: 27.5207411	total: 2.12s	remaining: 5.72s
81:	learn: 27.3675493	total: 2.15s	remaining: 5.71s
82:	learn: 27.2235515	total: 2.17s	remaining: 5.68s
83:	learn: 27.1024501	total: 2.2s	remaining: 5.65s
84:	learn: 26.9517795	total: 2.23s	remaining: 5.63s
85:	learn: 26.8209326	total: 2.25s	remaining: 5.61s
86:	learn: 26.6741987	total: 2.28s	remaining: 5.58s
87:	learn: 26.5456609	total: 2.31s	remaining: 5.55s
88:	learn: 26.4057263	total: 2.33s	remaining: 5.53s
89:	learn: 26.2892156	total: 2.36s	remaining: 5.5s
90:	learn: 26.1798472	total: 2.38s	remaining: 5.48s
91:	learn: 26.0588644	total: 2.41s	remaining: 5.45s
92:	learn: 25.9471232	total: 2.43s	remaining: 5.42s
93:	learn: 25.8112758	total: 2.46s	remaining: 5.4s
94:	learn: 25.6767187	total: 2.49s	remaining: 5.38s
95:	learn: 25.5524711	total: 2.52s	remaining: 5.35s
96:	learn: 25.4312648	total: 2.54s	remaining: 5.32s
97:	learn: 25.3010368	total: 2.57s	remaining: 5.29s
98:	learn: 25.1828003	total: 2.59s	remaining: 5.27s
99:	learn: 25.0729136	total: 2.62s	remaining: 5.24s
100:	learn: 24.9491417	total: 2.65s	remaining: 5.23s
101:	learn: 24.8375479	total: 2.69s	remaining: 5.21s
102:	learn: 24.7258715	total: 2.71s	remaining: 5.18s
103:	learn: 24.6132311	total: 2.74s	remaining: 5.16s
104:	learn: 24.4911063	total: 2.76s	remaining: 5.13s
105:	learn: 24.3655873	total: 2.79s	remaining: 5.1s
106:	learn: 24.2576341	total: 2.81s	remaining: 5.07s
107:	learn: 24.1521045	total: 2.83s	remaining: 5.04s
108:	learn: 24.0283222	total: 2.86s	remaining: 5.01s
109:	learn: 23.9093633	total: 2.89s	remaining: 4.99s
110:	learn: 23.7875690	total: 2.93s	remaining: 4.98s
111:	learn: 23.6743709	total: 2.95s	remaining: 4.95s
112:	learn: 23.5794434	total: 2.98s	remaining: 4.93s
113:	learn: 23.4721902	total: 3s	remaining: 4.9s
114:	learn: 23.3737227	total: 3.02s	remaining: 4.87s
115:	learn: 23.2685547	total: 3.05s	remaining: 4.84s
116:	learn: 23.1632988	total: 3.08s	remaining: 4.81s
117:	learn: 23.0591176	total: 3.11s	remaining: 4.79s
118:	learn: 22.9710342	total: 3.14s	remaining: 4.77s
119:	learn: 22.8518610	total: 3.16s	remaining: 4.74s
120:	learn: 22.7571658	total: 3.19s	remaining: 4.72s
121:	learn: 22.6476333	total: 3.22s	remaining: 4.69s
122:	learn: 22.5406444	total: 3.24s	remaining: 4.66s
123:	learn: 22.4481789	total: 3.26s	remaining: 4.63s
124:	learn: 22.3371412	total: 3.29s	remaining: 4.6s
125:	learn: 22.2363838	total: 3.31s	remaining: 4.58s
126:	learn: 22.1424569	total: 3.35s	remaining: 4.56s
127:	learn: 22.0405435	total: 3.37s	remaining: 4.53s
128:	learn: 21.9560873	total: 3.4s	remaining: 4.5s
129:	learn: 21.8863114	total: 3.43s	remaining: 4.49s
130:	learn: 21.7920659	total: 3.45s	remaining: 4.46s
131:	learn: 21.6932516	total: 3.48s	remaining: 4.43s
132:	learn: 21.5922382	total: 3.5s	remaining: 4.4s
133:	learn: 21.5161138	total: 3.53s	remaining: 4.38s
134:	learn: 21.4223608	total: 3.56s	remaining: 4.35s
135:	learn: 21.3175823	total: 3.59s	remaining: 4.32s
136:	learn: 21.2307076	total: 3.61s	remaining: 4.3s
137:	learn: 21.1472687	total: 3.64s	remaining: 4.27s
138:	learn: 21.0453028	total: 3.66s	remaining: 4.24s
139:	learn: 20.9646544	total: 3.69s	remaining: 4.22s
140:	learn: 20.8732575	total: 3.72s	remaining: 4.19s
141:	learn: 20.7811458	total: 3.75s	remaining: 4.18s
142:	learn: 20.6980385	total: 3.78s	remaining: 4.15s
143:	learn: 20.6161666	total: 3.81s	remaining: 4.13s
144:	learn: 20.5217631	total: 3.83s	remaining: 4.1s
145:	learn: 20.4497223	total: 3.86s	remaining: 4.07s
146:	learn: 20.3642928	total: 3.88s	remaining: 4.04s
147:	learn: 20.2886195	total: 3.9s	remaining: 4.01s
148:	learn: 20.2031657	total: 3.93s	remaining: 3.99s
149:	learn: 20.1263557	total: 3.97s	remaining: 3.97s
150:	learn: 20.0547427	total: 4s	remaining: 3.94s
151:	learn: 19.9773344	total: 4.02s	remaining: 3.92s
152:	learn: 19.9028201	total: 4.05s	remaining: 3.89s
153:	learn: 19.8160522	total: 4.08s	remaining: 3.86s
154:	learn: 19.7345351	total: 4.1s	remaining: 3.83s
155:	learn: 19.6586410	total: 4.12s	remaining: 3.81s
156:	learn: 19.5844066	total: 4.15s	remaining: 3.78s
157:	learn: 19.5059690	total: 4.18s	remaining: 3.76s
158:	learn: 19.4345665	total: 4.21s	remaining: 3.73s
159:	learn: 19.3729247	total: 4.24s	remaining: 3.71s
160:	learn: 19.2940290	total: 4.26s	remaining: 3.68s
161:	learn: 19.2361152	total: 4.29s	remaining: 3.65s
162:	learn: 19.1564311	total: 4.31s	remaining: 3.62s
163:	learn: 19.0868280	total: 4.33s	remaining: 3.59s
164:	learn: 19.0102994	total: 4.36s	remaining: 3.57s
165:	learn: 18.9245210	total: 4.39s	remaining: 3.55s
166:	learn: 18.8498288	total: 4.42s	remaining: 3.52s
167:	learn: 18.7766690	total: 4.45s	remaining: 3.49s
168:	learn: 18.7082496	total: 4.47s	remaining: 3.46s
169:	learn: 18.6351920	total: 4.5s	remaining: 3.44s
170:	learn: 18.5623213	total: 4.53s	remaining: 3.42s
171:	learn: 18.4784598	total: 4.55s	remaining: 3.39s
172:	learn: 18.4047687	total: 4.58s	remaining: 3.36s
173:	learn: 18.3356706	total: 4.61s	remaining: 3.34s
174:	learn: 18.2673167	total: 4.63s	remaining: 3.31s
175:	learn: 18.1928824	total: 4.66s	remaining: 3.28s
176:	learn: 18.1268178	total: 4.69s	remaining: 3.26s
177:	learn: 18.0544238	total: 4.71s	remaining: 3.23s
178:	learn: 17.9860979	total: 4.75s	remaining: 3.21s
179:	learn: 17.9244440	total: 4.77s	remaining: 3.18s
180:	learn: 17.8535620	total: 4.79s	remaining: 3.15s
181:	learn: 17.7958165	total: 4.83s	remaining: 3.13s
182:	learn: 17.7402911	total: 4.86s	remaining: 3.1s
183:	learn: 17.6851908	total: 4.88s	remaining: 3.08s
184:	learn: 17.6130229	total: 4.91s	remaining: 3.05s
185:	learn: 17.5412491	total: 4.93s	remaining: 3.02s
186:	learn: 17.4843388	total: 4.95s	remaining: 2.99s
187:	learn: 17.4232451	total: 4.98s	remaining: 2.97s
188:	learn: 17.3547499	total: 5.01s	remaining: 2.94s
189:	learn: 17.3014574	total: 5.05s	remaining: 2.92s
190:	learn: 17.2424485	total: 5.08s	remaining: 2.9s
191:	learn: 17.1878263	total: 5.1s	remaining: 2.87s
192:	learn: 17.1228765	total: 5.13s	remaining: 2.84s
193:	learn: 17.0601899	total: 5.15s	remaining: 2.82s
194:	learn: 17.0056282	total: 5.18s	remaining: 2.79s
195:	learn: 16.9309201	total: 5.2s	remaining: 2.76s
196:	learn: 16.8679658	total: 5.23s	remaining: 2.73s
197:	learn: 16.8079830	total: 5.26s	remaining: 2.71s
198:	learn: 16.7623162	total: 5.3s	remaining: 2.69s
199:	learn: 16.7202834	total: 5.32s	remaining: 2.66s
200:	learn: 16.6719839	total: 5.35s	remaining: 2.63s
201:	learn: 16.6236626	total: 5.37s	remaining: 2.6s
202:	learn: 16.5619633	total: 5.39s	remaining: 2.58s
203:	learn: 16.5033532	total: 5.42s	remaining: 2.55s
204:	learn: 16.4507719	total: 5.44s	remaining: 2.52s
205:	learn: 16.4012674	total: 5.47s	remaining: 2.5s
206:	learn: 16.3533118	total: 5.5s	remaining: 2.47s
207:	learn: 16.2986397	total: 5.53s	remaining: 2.44s
208:	learn: 16.2420216	total: 5.56s	remaining: 2.42s
209:	learn: 16.1856617	total: 5.58s	remaining: 2.39s
210:	learn: 16.1342718	total: 5.61s	remaining: 2.37s
211:	learn: 16.0772431	total: 5.63s	remaining: 2.34s
212:	learn: 16.0318038	total: 5.66s	remaining: 2.31s
213:	learn: 15.9660557	total: 5.69s	remaining: 2.29s
214:	learn: 15.9154358	total: 5.72s	remaining: 2.26s
215:	learn: 15.8630892	total: 5.74s	remaining: 2.23s
216:	learn: 15.8050319	total: 5.77s	remaining: 2.21s
217:	learn: 15.7563904	total: 5.8s	remaining: 2.18s
218:	learn: 15.7074042	total: 5.83s	remaining: 2.15s
219:	learn: 15.6515231	total: 5.85s	remaining: 2.13s
220:	learn: 15.6030650	total: 5.88s	remaining: 2.1s
221:	learn: 15.5500827	total: 5.91s	remaining: 2.08s
222:	learn: 15.4972332	total: 5.93s	remaining: 2.05s
223:	learn: 15.4506449	total: 5.96s	remaining: 2.02s
224:	learn: 15.3972559	total: 5.98s	remaining: 1.99s
225:	learn: 15.3430402	total: 6.01s	remaining: 1.97s
226:	learn: 15.2962005	total: 6.03s	remaining: 1.94s
227:	learn: 15.2487710	total: 6.06s	remaining: 1.92s
228:	learn: 15.2053893	total: 6.09s	remaining: 1.89s
229:	learn: 15.1633951	total: 6.13s	remaining: 1.86s
230:	learn: 15.1202978	total: 6.15s	remaining: 1.84s
231:	learn: 15.0691662	total: 6.18s	remaining: 1.81s
232:	learn: 15.0158780	total: 6.2s	remaining: 1.78s
233:	learn: 14.9632329	total: 6.23s	remaining: 1.76s
234:	learn: 14.9179389	total: 6.25s	remaining: 1.73s
235:	learn: 14.8724464	total: 6.28s	remaining: 1.7s
236:	learn: 14.8205302	total: 6.3s	remaining: 1.67s
237:	learn: 14.7791401	total: 6.34s	remaining: 1.65s
238:	learn: 14.7253916	total: 6.37s	remaining: 1.62s
239:	learn: 14.6836545	total: 6.39s	remaining: 1.6s
240:	learn: 14.6415382	total: 6.42s	remaining: 1.57s
241:	learn: 14.5908296	total: 6.44s	remaining: 1.54s
242:	learn: 14.5476260	total: 6.47s	remaining: 1.52s
243:	learn: 14.5057459	total: 6.49s	remaining: 1.49s
244:	learn: 14.4612880	total: 6.52s	remaining: 1.46s
245:	learn: 14.4279319	total: 6.55s	remaining: 1.44s
246:	learn: 14.3795141	total: 6.58s	remaining: 1.41s
247:	learn: 14.3346521	total: 6.61s	remaining: 1.39s
248:	learn: 14.2915193	total: 6.63s	remaining: 1.36s
249:	learn: 14.2492833	total: 6.66s	remaining: 1.33s
250:	learn: 14.2124298	total: 6.68s	remaining: 1.3s
251:	learn: 14.1691629	total: 6.7s	remaining: 1.28s
252:	learn: 14.1238622	total: 6.73s	remaining: 1.25s
253:	learn: 14.0788315	total: 6.76s	remaining: 1.22s
254:	learn: 14.0341070	total: 6.79s	remaining: 1.2s
255:	learn: 13.9982762	total: 6.81s	remaining: 1.17s
256:	learn: 13.9618516	total: 6.84s	remaining: 1.14s
257:	learn: 13.9317416	total: 6.87s	remaining: 1.12s
258:	learn: 13.8904672	total: 6.9s	remaining: 1.09s
259:	learn: 13.8515162	total: 6.92s	remaining: 1.06s
260:	learn: 13.8084853	total: 6.95s	remaining: 1.04s
261:	learn: 13.7626436	total: 6.98s	remaining: 1.01s
262:	learn: 13.7219194	total: 7.01s	remaining: 986ms
263:	learn: 13.6813564	total: 7.03s	remaining: 959ms
264:	learn: 13.6476847	total: 7.06s	remaining: 932ms
265:	learn: 13.6026451	total: 7.08s	remaining: 905ms
266:	learn: 13.5628070	total: 7.11s	remaining: 879ms
267:	learn: 13.5267139	total: 7.13s	remaining: 852ms
268:	learn: 13.4901774	total: 7.16s	remaining: 825ms
269:	learn: 13.4509942	total: 7.19s	remaining: 799ms
270:	learn: 13.4052181	total: 7.22s	remaining: 772ms
271:	learn: 13.3725535	total: 7.24s	remaining: 746ms
272:	learn: 13.3414763	total: 7.27s	remaining: 719ms
273:	learn: 13.3030862	total: 7.29s	remaining: 692ms
274:	learn: 13.2668157	total: 7.32s	remaining: 665ms
275:	learn: 13.2223450	total: 7.34s	remaining: 638ms
276:	learn: 13.1804358	total: 7.37s	remaining: 612ms
277:	learn: 13.1399325	total: 7.41s	remaining: 586ms
278:	learn: 13.1033304	total: 7.43s	remaining: 559ms
279:	learn: 13.0669058	total: 7.46s	remaining: 533ms
280:	learn: 13.0384671	total: 7.48s	remaining: 506ms
281:	learn: 13.0037789	total: 7.51s	remaining: 479ms
282:	learn: 12.9645250	total: 7.53s	remaining: 452ms
283:	learn: 12.9241108	total: 7.56s	remaining: 426ms
284:	learn: 12.8975080	total: 7.59s	remaining: 399ms
285:	learn: 12.8572669	total: 7.62s	remaining: 373ms
286:	learn: 12.8247786	total: 7.65s	remaining: 347ms
287:	learn: 12.7991121	total: 7.68s	remaining: 320ms
288:	learn: 12.7592983	total: 7.7s	remaining: 293ms
289:	learn: 12.7299599	total: 7.72s	remaining: 266ms
290:	learn: 12.6996664	total: 7.75s	remaining: 240ms
291:	learn: 12.6676675	total: 7.77s	remaining: 213ms
292:	learn: 12.6304459	total: 7.8s	remaining: 186ms
293:	learn: 12.6000320	total: 7.83s	remaining: 160ms
294:	learn: 12.5671112	total: 7.86s	remaining: 133ms
295:	learn: 12.5371864	total: 7.88s	remaining: 107ms
296:	learn: 12.5078024	total: 7.92s	remaining: 80ms
297:	learn: 12.4765847	total: 7.94s	remaining: 53.3ms
298:	learn: 12.4387052	total: 7.97s	remaining: 26.6ms
299:	learn: 12.4034594	total: 7.99s	remaining: 0us
0:	learn: 47.2066051	total: 2.79ms	remaining: 833ms
1:	learn: 46.9322506	total: 27.2ms	remaining: 4.06s
2:	learn: 46.6606656	total: 50.4ms	remaining: 4.99s
3:	learn: 46.3774499	total: 75.1ms	remaining: 5.56s
4:	learn: 46.1018596	total: 99.6ms	remaining: 5.88s
5:	learn: 45.8731555	total: 125ms	remaining: 6.11s
6:	learn: 45.6007817	total: 159ms	remaining: 6.67s
7:	learn: 45.3453141	total: 189ms	remaining: 6.91s
8:	learn: 45.0827993	total: 215ms	remaining: 6.96s
9:	learn: 44.8482508	total: 239ms	remaining: 6.94s
10:	learn: 44.5829021	total: 264ms	remaining: 6.94s
11:	learn: 44.3343788	total: 288ms	remaining: 6.92s
12:	learn: 44.1081283	total: 310ms	remaining: 6.85s
13:	learn: 43.8942877	total: 335ms	remaining: 6.85s
14:	learn: 43.6535050	total: 361ms	remaining: 6.87s
15:	learn: 43.3693245	total: 395ms	remaining: 7.01s
16:	learn: 43.0936657	total: 427ms	remaining: 7.11s
17:	learn: 42.8660960	total: 452ms	remaining: 7.08s
18:	learn: 42.6627313	total: 478ms	remaining: 7.08s
19:	learn: 42.4070768	total: 503ms	remaining: 7.04s
20:	learn: 42.1987495	total: 526ms	remaining: 6.99s
21:	learn: 41.9619243	total: 551ms	remaining: 6.96s
22:	learn: 41.6939241	total: 575ms	remaining: 6.92s
23:	learn: 41.4865537	total: 609ms	remaining: 7s
24:	learn: 41.2577043	total: 635ms	remaining: 6.98s
25:	learn: 41.0242935	total: 661ms	remaining: 6.96s
26:	learn: 40.8070747	total: 693ms	remaining: 7.01s
27:	learn: 40.5633167	total: 717ms	remaining: 6.97s
28:	learn: 40.3605859	total: 739ms	remaining: 6.91s
29:	learn: 40.1289330	total: 764ms	remaining: 6.88s
30:	learn: 39.9162572	total: 789ms	remaining: 6.84s
31:	learn: 39.7112366	total: 824ms	remaining: 6.9s
32:	learn: 39.5150807	total: 850ms	remaining: 6.88s
33:	learn: 39.3167500	total: 875ms	remaining: 6.84s
34:	learn: 39.0982445	total: 901ms	remaining: 6.82s
35:	learn: 38.9300488	total: 926ms	remaining: 6.79s
36:	learn: 38.7137713	total: 958ms	remaining: 6.81s
37:	learn: 38.5619202	total: 983ms	remaining: 6.78s
38:	learn: 38.3469017	total: 1.02s	remaining: 6.81s
39:	learn: 38.1799409	total: 1.04s	remaining: 6.79s
40:	learn: 38.0267019	total: 1.07s	remaining: 6.76s
41:	learn: 37.8292308	total: 1.09s	remaining: 6.73s
42:	learn: 37.6390603	total: 1.12s	remaining: 6.7s
43:	learn: 37.4462287	total: 1.15s	remaining: 6.66s
44:	learn: 37.2593518	total: 1.17s	remaining: 6.62s
45:	learn: 37.0460433	total: 1.2s	remaining: 6.64s
46:	learn: 36.9067561	total: 1.23s	remaining: 6.61s
47:	learn: 36.7368293	total: 1.26s	remaining: 6.63s
48:	learn: 36.5208932	total: 1.29s	remaining: 6.6s
49:	learn: 36.3434910	total: 1.31s	remaining: 6.56s
50:	learn: 36.1664717	total: 1.34s	remaining: 6.53s
51:	learn: 35.9767045	total: 1.36s	remaining: 6.49s
52:	learn: 35.8291871	total: 1.38s	remaining: 6.45s
53:	learn: 35.6334930	total: 1.41s	remaining: 6.42s
54:	learn: 35.4457979	total: 1.43s	remaining: 6.39s
55:	learn: 35.2876901	total: 1.47s	remaining: 6.42s
56:	learn: 35.0953841	total: 1.5s	remaining: 6.39s
57:	learn: 34.9349948	total: 1.52s	remaining: 6.36s
58:	learn: 34.7891044	total: 1.55s	remaining: 6.33s
59:	learn: 34.6307667	total: 1.57s	remaining: 6.3s
60:	learn: 34.4536402	total: 1.6s	remaining: 6.26s
61:	learn: 34.3115958	total: 1.62s	remaining: 6.23s
62:	learn: 34.1015612	total: 1.65s	remaining: 6.2s
63:	learn: 33.9396305	total: 1.68s	remaining: 6.2s
64:	learn: 33.7697101	total: 1.7s	remaining: 6.16s
65:	learn: 33.5942192	total: 1.74s	remaining: 6.16s
66:	learn: 33.4437209	total: 1.76s	remaining: 6.13s
67:	learn: 33.2713872	total: 1.79s	remaining: 6.1s
68:	learn: 33.1222742	total: 1.81s	remaining: 6.06s
69:	learn: 32.9491993	total: 1.83s	remaining: 6.02s
70:	learn: 32.7993999	total: 1.86s	remaining: 5.99s
71:	learn: 32.6389444	total: 1.9s	remaining: 6s
72:	learn: 32.5136777	total: 1.92s	remaining: 5.98s
73:	learn: 32.3250532	total: 1.95s	remaining: 5.96s
74:	learn: 32.1681212	total: 1.98s	remaining: 5.93s
75:	learn: 32.0305457	total: 2.01s	remaining: 5.91s
76:	learn: 31.8939124	total: 2.03s	remaining: 5.88s
77:	learn: 31.7307002	total: 2.06s	remaining: 5.85s
78:	learn: 31.5506551	total: 2.08s	remaining: 5.83s
79:	learn: 31.3585582	total: 2.12s	remaining: 5.82s
80:	learn: 31.2377884	total: 2.14s	remaining: 5.79s
81:	learn: 31.0872848	total: 2.16s	remaining: 5.75s
82:	learn: 30.9196897	total: 2.19s	remaining: 5.73s
83:	learn: 30.7627899	total: 2.21s	remaining: 5.69s
84:	learn: 30.6354581	total: 2.24s	remaining: 5.68s
85:	learn: 30.4812118	total: 2.27s	remaining: 5.64s
86:	learn: 30.3501393	total: 2.29s	remaining: 5.61s
87:	learn: 30.2317309	total: 2.33s	remaining: 5.6s
88:	learn: 30.0770872	total: 2.35s	remaining: 5.58s
89:	learn: 29.9517251	total: 2.38s	remaining: 5.55s
90:	learn: 29.8182899	total: 2.4s	remaining: 5.52s
91:	learn: 29.6614210	total: 2.43s	remaining: 5.49s
92:	learn: 29.5523686	total: 2.45s	remaining: 5.45s
93:	learn: 29.4053683	total: 2.47s	remaining: 5.42s
94:	learn: 29.2601476	total: 2.51s	remaining: 5.41s
95:	learn: 29.1182094	total: 2.54s	remaining: 5.4s
96:	learn: 28.9885050	total: 2.56s	remaining: 5.37s
97:	learn: 28.8780981	total: 2.59s	remaining: 5.34s
98:	learn: 28.7484395	total: 2.61s	remaining: 5.31s
99:	learn: 28.6007901	total: 2.64s	remaining: 5.28s
100:	learn: 28.4647305	total: 2.66s	remaining: 5.25s
101:	learn: 28.3447045	total: 2.68s	remaining: 5.21s
102:	learn: 28.2185610	total: 2.71s	remaining: 5.18s
103:	learn: 28.1000930	total: 2.74s	remaining: 5.16s
104:	learn: 28.0014447	total: 2.78s	remaining: 5.16s
105:	learn: 27.8804790	total: 2.8s	remaining: 5.13s
106:	learn: 27.7561524	total: 2.83s	remaining: 5.1s
107:	learn: 27.6414765	total: 2.85s	remaining: 5.07s
108:	learn: 27.4937136	total: 2.87s	remaining: 5.04s
109:	learn: 27.3682776	total: 2.9s	remaining: 5.01s
110:	learn: 27.2527017	total: 2.92s	remaining: 4.98s
111:	learn: 27.1409655	total: 2.95s	remaining: 4.95s
112:	learn: 27.0220901	total: 2.98s	remaining: 4.94s
113:	learn: 26.9171572	total: 3.01s	remaining: 4.91s
114:	learn: 26.7707607	total: 3.04s	remaining: 4.9s
115:	learn: 26.6374802	total: 3.07s	remaining: 4.87s
116:	learn: 26.5161962	total: 3.09s	remaining: 4.84s
117:	learn: 26.3939712	total: 3.12s	remaining: 4.81s
118:	learn: 26.2670228	total: 3.14s	remaining: 4.78s
119:	learn: 26.1658805	total: 3.17s	remaining: 4.75s
120:	learn: 26.0439756	total: 3.2s	remaining: 4.73s
121:	learn: 25.9319704	total: 3.23s	remaining: 4.71s
122:	learn: 25.8133601	total: 3.25s	remaining: 4.68s
123:	learn: 25.6838585	total: 3.27s	remaining: 4.65s
124:	learn: 25.5642851	total: 3.31s	remaining: 4.63s
125:	learn: 25.4551493	total: 3.33s	remaining: 4.6s
126:	learn: 25.3283382	total: 3.36s	remaining: 4.57s
127:	learn: 25.2303422	total: 3.38s	remaining: 4.54s
128:	learn: 25.1301231	total: 3.42s	remaining: 4.53s
129:	learn: 25.0059477	total: 3.44s	remaining: 4.5s
130:	learn: 24.9128714	total: 3.47s	remaining: 4.47s
131:	learn: 24.8270009	total: 3.49s	remaining: 4.44s
132:	learn: 24.7282856	total: 3.52s	remaining: 4.41s
133:	learn: 24.6068738	total: 3.54s	remaining: 4.39s
134:	learn: 24.4944609	total: 3.57s	remaining: 4.36s
135:	learn: 24.4007736	total: 3.59s	remaining: 4.33s
136:	learn: 24.2652984	total: 3.62s	remaining: 4.31s
137:	learn: 24.1998753	total: 3.62s	remaining: 4.25s
138:	learn: 24.1187576	total: 3.65s	remaining: 4.23s
139:	learn: 24.0053052	total: 3.68s	remaining: 4.2s
140:	learn: 23.9210487	total: 3.7s	remaining: 4.17s
141:	learn: 23.8220050	total: 3.73s	remaining: 4.15s
142:	learn: 23.7320610	total: 3.75s	remaining: 4.12s
143:	learn: 23.6304095	total: 3.77s	remaining: 4.09s
144:	learn: 23.5435925	total: 3.81s	remaining: 4.07s
145:	learn: 23.4490235	total: 3.84s	remaining: 4.05s
146:	learn: 23.3593062	total: 3.86s	remaining: 4.02s
147:	learn: 23.2441220	total: 3.89s	remaining: 4s
148:	learn: 23.1649310	total: 3.91s	remaining: 3.97s
149:	learn: 23.0937137	total: 3.94s	remaining: 3.94s
150:	learn: 23.0033824	total: 3.96s	remaining: 3.91s
151:	learn: 22.9105498	total: 3.99s	remaining: 3.88s
152:	learn: 22.8240080	total: 4.01s	remaining: 3.85s
153:	learn: 22.7410049	total: 4.04s	remaining: 3.83s
154:	learn: 22.6555811	total: 4.08s	remaining: 3.82s
155:	learn: 22.5562543	total: 4.11s	remaining: 3.79s
156:	learn: 22.4580905	total: 4.13s	remaining: 3.76s
157:	learn: 22.3853437	total: 4.16s	remaining: 3.74s
158:	learn: 22.2910058	total: 4.18s	remaining: 3.71s
159:	learn: 22.2026924	total: 4.2s	remaining: 3.68s
160:	learn: 22.1082691	total: 4.23s	remaining: 3.65s
161:	learn: 22.0485799	total: 4.25s	remaining: 3.62s
162:	learn: 21.9732579	total: 4.28s	remaining: 3.6s
163:	learn: 21.8694207	total: 4.31s	remaining: 3.58s
164:	learn: 21.7852612	total: 4.34s	remaining: 3.55s
165:	learn: 21.7256414	total: 4.37s	remaining: 3.53s
166:	learn: 21.6428497	total: 4.39s	remaining: 3.5s
167:	learn: 21.5677079	total: 4.42s	remaining: 3.47s
168:	learn: 21.4593059	total: 4.45s	remaining: 3.44s
169:	learn: 21.3886739	total: 4.47s	remaining: 3.42s
170:	learn: 21.3128676	total: 4.5s	remaining: 3.4s
171:	learn: 21.2261221	total: 4.53s	remaining: 3.37s
172:	learn: 21.1358765	total: 4.55s	remaining: 3.34s
173:	learn: 21.0667531	total: 4.59s	remaining: 3.32s
174:	learn: 20.9949684	total: 4.61s	remaining: 3.29s
175:	learn: 20.9197151	total: 4.63s	remaining: 3.27s
176:	learn: 20.8348829	total: 4.66s	remaining: 3.24s
177:	learn: 20.7684704	total: 4.68s	remaining: 3.21s
178:	learn: 20.6988083	total: 4.72s	remaining: 3.19s
179:	learn: 20.6152013	total: 4.74s	remaining: 3.16s
180:	learn: 20.5573648	total: 4.77s	remaining: 3.13s
181:	learn: 20.4712922	total: 4.79s	remaining: 3.11s
182:	learn: 20.3807903	total: 4.82s	remaining: 3.08s
183:	learn: 20.2970112	total: 4.85s	remaining: 3.06s
184:	learn: 20.2034240	total: 4.88s	remaining: 3.03s
185:	learn: 20.1175766	total: 4.9s	remaining: 3s
186:	learn: 20.0348028	total: 4.93s	remaining: 2.98s
187:	learn: 19.9683863	total: 4.96s	remaining: 2.95s
188:	learn: 19.9146008	total: 4.98s	remaining: 2.93s
189:	learn: 19.8485219	total: 5.01s	remaining: 2.9s
190:	learn: 19.7815231	total: 5.03s	remaining: 2.87s
191:	learn: 19.7226636	total: 5.06s	remaining: 2.85s
192:	learn: 19.6514314	total: 5.08s	remaining: 2.82s
193:	learn: 19.5874662	total: 5.12s	remaining: 2.8s
194:	learn: 19.5188482	total: 5.15s	remaining: 2.77s
195:	learn: 19.4132924	total: 5.18s	remaining: 2.75s
196:	learn: 19.3336041	total: 5.2s	remaining: 2.72s
197:	learn: 19.2540160	total: 5.23s	remaining: 2.69s
198:	learn: 19.1814868	total: 5.25s	remaining: 2.66s
199:	learn: 19.1375571	total: 5.27s	remaining: 2.64s
200:	learn: 19.0597510	total: 5.3s	remaining: 2.61s
201:	learn: 18.9987290	total: 5.32s	remaining: 2.58s
202:	learn: 18.9357168	total: 5.35s	remaining: 2.56s
203:	learn: 18.8809983	total: 5.39s	remaining: 2.53s
204:	learn: 18.7949653	total: 5.41s	remaining: 2.51s
205:	learn: 18.7468832	total: 5.44s	remaining: 2.48s
206:	learn: 18.6810375	total: 5.46s	remaining: 2.45s
207:	learn: 18.6260175	total: 5.48s	remaining: 2.43s
208:	learn: 18.5784866	total: 5.51s	remaining: 2.4s
209:	learn: 18.5195431	total: 5.53s	remaining: 2.37s
210:	learn: 18.4524044	total: 5.57s	remaining: 2.35s
211:	learn: 18.3675987	total: 5.59s	remaining: 2.32s
212:	learn: 18.3150235	total: 5.62s	remaining: 2.29s
213:	learn: 18.2483349	total: 5.65s	remaining: 2.27s
214:	learn: 18.2130927	total: 5.68s	remaining: 2.24s
215:	learn: 18.1515897	total: 5.7s	remaining: 2.22s
216:	learn: 18.0941982	total: 5.73s	remaining: 2.19s
217:	learn: 18.0262823	total: 5.75s	remaining: 2.16s
218:	learn: 17.9660967	total: 5.78s	remaining: 2.14s
219:	learn: 17.8985691	total: 5.81s	remaining: 2.11s
220:	learn: 17.8383582	total: 5.83s	remaining: 2.09s
221:	learn: 17.7535770	total: 5.86s	remaining: 2.06s
222:	learn: 17.7044922	total: 5.9s	remaining: 2.04s
223:	learn: 17.6537442	total: 5.92s	remaining: 2.01s
224:	learn: 17.6005077	total: 5.95s	remaining: 1.98s
225:	learn: 17.5458811	total: 5.97s	remaining: 1.96s
226:	learn: 17.4973124	total: 6s	remaining: 1.93s
227:	learn: 17.4191591	total: 6.03s	remaining: 1.9s
228:	learn: 17.3619650	total: 6.05s	remaining: 1.88s
229:	learn: 17.3229834	total: 6.08s	remaining: 1.85s
230:	learn: 17.2721322	total: 6.11s	remaining: 1.82s
231:	learn: 17.2213528	total: 6.13s	remaining: 1.8s
232:	learn: 17.1648847	total: 6.16s	remaining: 1.77s
233:	learn: 17.1171379	total: 6.19s	remaining: 1.75s
234:	learn: 17.0577754	total: 6.22s	remaining: 1.72s
235:	learn: 16.9936285	total: 6.25s	remaining: 1.7s
236:	learn: 16.9401659	total: 6.28s	remaining: 1.67s
237:	learn: 16.9011805	total: 6.3s	remaining: 1.64s
238:	learn: 16.8468936	total: 6.33s	remaining: 1.61s
239:	learn: 16.7983935	total: 6.35s	remaining: 1.59s
240:	learn: 16.7461195	total: 6.37s	remaining: 1.56s
241:	learn: 16.6915220	total: 6.4s	remaining: 1.53s
242:	learn: 16.6467209	total: 6.44s	remaining: 1.51s
243:	learn: 16.5847369	total: 6.47s	remaining: 1.48s
244:	learn: 16.5460628	total: 6.49s	remaining: 1.46s
245:	learn: 16.5015037	total: 6.52s	remaining: 1.43s
246:	learn: 16.4403631	total: 6.54s	remaining: 1.4s
247:	learn: 16.3877470	total: 6.56s	remaining: 1.38s
248:	learn: 16.3539553	total: 6.59s	remaining: 1.35s
249:	learn: 16.3015470	total: 6.61s	remaining: 1.32s
250:	learn: 16.2710475	total: 6.64s	remaining: 1.3s
251:	learn: 16.2318420	total: 6.67s	remaining: 1.27s
252:	learn: 16.1799554	total: 6.7s	remaining: 1.25s
253:	learn: 16.1251371	total: 6.73s	remaining: 1.22s
254:	learn: 16.0766054	total: 6.75s	remaining: 1.19s
255:	learn: 16.0331296	total: 6.77s	remaining: 1.16s
256:	learn: 15.9716433	total: 6.8s	remaining: 1.14s
257:	learn: 15.9451600	total: 6.82s	remaining: 1.11s
258:	learn: 15.9018757	total: 6.86s	remaining: 1.08s
259:	learn: 15.8381970	total: 6.88s	remaining: 1.06s
260:	learn: 15.7826727	total: 6.91s	remaining: 1.03s
261:	learn: 15.7313015	total: 6.94s	remaining: 1.01s
262:	learn: 15.6834037	total: 6.97s	remaining: 980ms
263:	learn: 15.6349428	total: 6.99s	remaining: 953ms
264:	learn: 15.5990545	total: 7.01s	remaining: 927ms
265:	learn: 15.5542522	total: 7.04s	remaining: 900ms
266:	learn: 15.5084378	total: 7.07s	remaining: 874ms
267:	learn: 15.4661775	total: 7.1s	remaining: 848ms
268:	learn: 15.4204295	total: 7.13s	remaining: 821ms
269:	learn: 15.3797436	total: 7.15s	remaining: 795ms
270:	learn: 15.3241643	total: 7.18s	remaining: 768ms
271:	learn: 15.2912031	total: 7.21s	remaining: 742ms
272:	learn: 15.2485093	total: 7.23s	remaining: 715ms
273:	learn: 15.2067344	total: 7.26s	remaining: 689ms
274:	learn: 15.1691348	total: 7.29s	remaining: 663ms
275:	learn: 15.1175909	total: 7.31s	remaining: 636ms
276:	learn: 15.0764791	total: 7.34s	remaining: 609ms
277:	learn: 15.0234203	total: 7.36s	remaining: 583ms
278:	learn: 14.9850104	total: 7.39s	remaining: 556ms
279:	learn: 14.9411345	total: 7.41s	remaining: 530ms
280:	learn: 14.8870327	total: 7.44s	remaining: 503ms
281:	learn: 14.8456947	total: 7.47s	remaining: 477ms
282:	learn: 14.8084255	total: 7.5s	remaining: 451ms
283:	learn: 14.7680170	total: 7.53s	remaining: 424ms
284:	learn: 14.7205578	total: 7.55s	remaining: 398ms
285:	learn: 14.6828419	total: 7.58s	remaining: 371ms
286:	learn: 14.6381094	total: 7.6s	remaining: 344ms
287:	learn: 14.5936873	total: 7.63s	remaining: 318ms
288:	learn: 14.5454139	total: 7.65s	remaining: 291ms
289:	learn: 14.5045998	total: 7.67s	remaining: 265ms
290:	learn: 14.4651034	total: 7.7s	remaining: 238ms
291:	learn: 14.4164592	total: 7.74s	remaining: 212ms
292:	learn: 14.3794254	total: 7.76s	remaining: 185ms
293:	learn: 14.3526912	total: 7.79s	remaining: 159ms
294:	learn: 14.3172040	total: 7.81s	remaining: 132ms
295:	learn: 14.2878426	total: 7.84s	remaining: 106ms
296:	learn: 14.2618876	total: 7.86s	remaining: 79.4ms
297:	learn: 14.2238562	total: 7.89s	remaining: 53ms
298:	learn: 14.1855861	total: 7.92s	remaining: 26.5ms
299:	learn: 14.1397364	total: 7.95s	remaining: 0us
0:	learn: 46.7870548	total: 2.85ms	remaining: 853ms
1:	learn: 46.5509556	total: 33.3ms	remaining: 4.97s
2:	learn: 46.2905959	total: 56.8ms	remaining: 5.62s
3:	learn: 46.0432953	total: 79.8ms	remaining: 5.9s
4:	learn: 45.7981156	total: 104ms	remaining: 6.11s
5:	learn: 45.5953537	total: 133ms	remaining: 6.52s
6:	learn: 45.3456158	total: 160ms	remaining: 6.71s
7:	learn: 45.1041876	total: 185ms	remaining: 6.75s
8:	learn: 44.8408594	total: 209ms	remaining: 6.77s
9:	learn: 44.6156712	total: 234ms	remaining: 6.77s
10:	learn: 44.3844027	total: 257ms	remaining: 6.75s
11:	learn: 44.1592646	total: 289ms	remaining: 6.95s
12:	learn: 43.9028580	total: 314ms	remaining: 6.93s
13:	learn: 43.6552529	total: 344ms	remaining: 7.02s
14:	learn: 43.4209626	total: 370ms	remaining: 7.03s
15:	learn: 43.1808263	total: 395ms	remaining: 7.01s
16:	learn: 42.9397693	total: 420ms	remaining: 7s
17:	learn: 42.7028326	total: 446ms	remaining: 6.99s
18:	learn: 42.4507836	total: 468ms	remaining: 6.92s
19:	learn: 42.2343115	total: 491ms	remaining: 6.88s
20:	learn: 42.0290334	total: 516ms	remaining: 6.85s
21:	learn: 41.7972515	total: 548ms	remaining: 6.92s
22:	learn: 41.5930066	total: 580ms	remaining: 6.98s
23:	learn: 41.3630345	total: 606ms	remaining: 6.97s
24:	learn: 41.1267274	total: 632ms	remaining: 6.95s
25:	learn: 40.8976157	total: 656ms	remaining: 6.91s
26:	learn: 40.7477253	total: 681ms	remaining: 6.89s
27:	learn: 40.5380037	total: 704ms	remaining: 6.84s
28:	learn: 40.3518359	total: 729ms	remaining: 6.81s
29:	learn: 40.1227880	total: 753ms	remaining: 6.78s
30:	learn: 39.9077340	total: 784ms	remaining: 6.8s
31:	learn: 39.7157645	total: 817ms	remaining: 6.84s
32:	learn: 39.4842991	total: 843ms	remaining: 6.82s
33:	learn: 39.2680222	total: 867ms	remaining: 6.78s
34:	learn: 39.1151353	total: 891ms	remaining: 6.75s
35:	learn: 38.9106437	total: 915ms	remaining: 6.71s
36:	learn: 38.6816637	total: 939ms	remaining: 6.67s
37:	learn: 38.5040898	total: 964ms	remaining: 6.64s
38:	learn: 38.2991789	total: 997ms	remaining: 6.67s
39:	learn: 38.0905994	total: 1.02s	remaining: 6.65s
40:	learn: 37.8866149	total: 1.05s	remaining: 6.63s
41:	learn: 37.6672953	total: 1.08s	remaining: 6.63s
42:	learn: 37.4800472	total: 1.1s	remaining: 6.61s
43:	learn: 37.3135160	total: 1.13s	remaining: 6.56s
44:	learn: 37.1163679	total: 1.15s	remaining: 6.53s
45:	learn: 36.9226524	total: 1.18s	remaining: 6.51s
46:	learn: 36.7536687	total: 1.21s	remaining: 6.53s
47:	learn: 36.5708676	total: 1.24s	remaining: 6.5s
48:	learn: 36.3496982	total: 1.26s	remaining: 6.48s
49:	learn: 36.1876634	total: 1.29s	remaining: 6.45s
50:	learn: 36.0205452	total: 1.31s	remaining: 6.42s
51:	learn: 35.8569839	total: 1.34s	remaining: 6.42s
52:	learn: 35.7193741	total: 1.37s	remaining: 6.39s
53:	learn: 35.5490989	total: 1.4s	remaining: 6.36s
54:	learn: 35.3734082	total: 1.43s	remaining: 6.35s
55:	learn: 35.2037325	total: 1.45s	remaining: 6.33s
56:	learn: 35.0366875	total: 1.48s	remaining: 6.3s
57:	learn: 34.8664946	total: 1.5s	remaining: 6.27s
58:	learn: 34.7528679	total: 1.53s	remaining: 6.24s
59:	learn: 34.5990206	total: 1.55s	remaining: 6.2s
60:	learn: 34.4375256	total: 1.57s	remaining: 6.17s
61:	learn: 34.2757128	total: 1.61s	remaining: 6.17s
62:	learn: 34.1074596	total: 1.64s	remaining: 6.17s
63:	learn: 33.9134234	total: 1.66s	remaining: 6.13s
64:	learn: 33.7721658	total: 1.69s	remaining: 6.11s
65:	learn: 33.6151876	total: 1.71s	remaining: 6.08s
66:	learn: 33.4702332	total: 1.74s	remaining: 6.05s
67:	learn: 33.3063605	total: 1.76s	remaining: 6.02s
68:	learn: 33.1371803	total: 1.78s	remaining: 5.98s
69:	learn: 32.9938650	total: 1.81s	remaining: 5.95s
70:	learn: 32.8806069	total: 1.83s	remaining: 5.92s
71:	learn: 32.7337783	total: 1.87s	remaining: 5.93s
72:	learn: 32.6112632	total: 1.9s	remaining: 5.91s
73:	learn: 32.4373088	total: 1.93s	remaining: 5.88s
74:	learn: 32.2704069	total: 1.95s	remaining: 5.85s
75:	learn: 32.1309156	total: 1.95s	remaining: 5.75s
76:	learn: 31.9982204	total: 1.98s	remaining: 5.73s
77:	learn: 31.8386739	total: 2s	remaining: 5.69s
78:	learn: 31.6987206	total: 2.03s	remaining: 5.67s
79:	learn: 31.5499135	total: 2.05s	remaining: 5.64s
80:	learn: 31.4086186	total: 2.08s	remaining: 5.63s
81:	learn: 31.2612447	total: 2.11s	remaining: 5.6s
82:	learn: 31.1473521	total: 2.14s	remaining: 5.6s
83:	learn: 31.0256072	total: 2.17s	remaining: 5.57s
84:	learn: 30.8713816	total: 2.19s	remaining: 5.54s
85:	learn: 30.7375117	total: 2.21s	remaining: 5.51s
86:	learn: 30.6108390	total: 2.24s	remaining: 5.48s
87:	learn: 30.4713139	total: 2.26s	remaining: 5.45s
88:	learn: 30.3423055	total: 2.3s	remaining: 5.45s
89:	learn: 30.2207021	total: 2.32s	remaining: 5.42s
90:	learn: 30.0949179	total: 2.35s	remaining: 5.39s
91:	learn: 29.9729715	total: 2.37s	remaining: 5.36s
92:	learn: 29.8643086	total: 2.41s	remaining: 5.36s
93:	learn: 29.7665122	total: 2.43s	remaining: 5.33s
94:	learn: 29.6231497	total: 2.46s	remaining: 5.3s
95:	learn: 29.4789414	total: 2.48s	remaining: 5.27s
96:	learn: 29.3548309	total: 2.52s	remaining: 5.27s
97:	learn: 29.2140883	total: 2.54s	remaining: 5.24s
98:	learn: 29.0857263	total: 2.57s	remaining: 5.21s
99:	learn: 28.9844616	total: 2.59s	remaining: 5.18s
100:	learn: 28.8786360	total: 2.62s	remaining: 5.16s
101:	learn: 28.7366305	total: 2.64s	remaining: 5.12s
102:	learn: 28.6144208	total: 2.67s	remaining: 5.11s
103:	learn: 28.4909185	total: 2.69s	remaining: 5.08s
104:	learn: 28.3737308	total: 2.73s	remaining: 5.06s
105:	learn: 28.2474669	total: 2.75s	remaining: 5.04s
106:	learn: 28.1304845	total: 2.78s	remaining: 5.01s
107:	learn: 28.0219050	total: 2.81s	remaining: 4.99s
108:	learn: 27.9119273	total: 2.83s	remaining: 4.96s
109:	learn: 27.7940665	total: 2.85s	remaining: 4.93s
110:	learn: 27.6861210	total: 2.88s	remaining: 4.9s
111:	learn: 27.5494854	total: 2.9s	remaining: 4.87s
112:	learn: 27.4263503	total: 2.93s	remaining: 4.85s
113:	learn: 27.3187261	total: 2.97s	remaining: 4.84s
114:	learn: 27.2166072	total: 2.99s	remaining: 4.82s
115:	learn: 27.0966496	total: 3.02s	remaining: 4.79s
116:	learn: 26.9715404	total: 3.04s	remaining: 4.76s
117:	learn: 26.9000098	total: 3.07s	remaining: 4.73s
118:	learn: 26.7950464	total: 3.09s	remaining: 4.7s
119:	learn: 26.6670545	total: 3.11s	remaining: 4.67s
120:	learn: 26.5335862	total: 3.13s	remaining: 4.64s
121:	learn: 26.4604828	total: 3.16s	remaining: 4.61s
122:	learn: 26.3381204	total: 3.2s	remaining: 4.6s
123:	learn: 26.2222222	total: 3.23s	remaining: 4.58s
124:	learn: 26.1304443	total: 3.25s	remaining: 4.55s
125:	learn: 26.0221039	total: 3.27s	remaining: 4.52s
126:	learn: 25.9100900	total: 3.3s	remaining: 4.49s
127:	learn: 25.8080098	total: 3.32s	remaining: 4.46s
128:	learn: 25.7080133	total: 3.35s	remaining: 4.43s
129:	learn: 25.6040228	total: 3.37s	remaining: 4.41s
130:	learn: 25.5038062	total: 3.4s	remaining: 4.38s
131:	learn: 25.4035491	total: 3.43s	remaining: 4.36s
132:	learn: 25.2999779	total: 3.46s	remaining: 4.35s
133:	learn: 25.1973428	total: 3.49s	remaining: 4.32s
134:	learn: 25.0957273	total: 3.51s	remaining: 4.29s
135:	learn: 24.9765330	total: 3.54s	remaining: 4.26s
136:	learn: 24.8917171	total: 3.56s	remaining: 4.24s
137:	learn: 24.7841090	total: 3.58s	remaining: 4.21s
138:	learn: 24.6927568	total: 3.61s	remaining: 4.18s
139:	learn: 24.6129006	total: 3.64s	remaining: 4.16s
140:	learn: 24.5144267	total: 3.67s	remaining: 4.14s
141:	learn: 24.4313235	total: 3.7s	remaining: 4.12s
142:	learn: 24.3411218	total: 3.73s	remaining: 4.09s
143:	learn: 24.2573999	total: 3.75s	remaining: 4.07s
144:	learn: 24.1811369	total: 3.77s	remaining: 4.04s
145:	learn: 24.0879259	total: 3.8s	remaining: 4.01s
146:	learn: 23.9890446	total: 3.82s	remaining: 3.98s
147:	learn: 23.9041220	total: 3.85s	remaining: 3.96s
148:	learn: 23.8190377	total: 3.88s	remaining: 3.93s
149:	learn: 23.7441370	total: 3.9s	remaining: 3.9s
150:	learn: 23.6536711	total: 3.93s	remaining: 3.88s
151:	learn: 23.5617828	total: 3.96s	remaining: 3.86s
152:	learn: 23.4575126	total: 3.99s	remaining: 3.83s
153:	learn: 23.3545199	total: 4.01s	remaining: 3.8s
154:	learn: 23.2786188	total: 4.04s	remaining: 3.78s
155:	learn: 23.1932207	total: 4.07s	remaining: 3.76s
156:	learn: 23.1157521	total: 4.1s	remaining: 3.73s
157:	learn: 23.0525011	total: 4.12s	remaining: 3.7s
158:	learn: 22.9826131	total: 4.14s	remaining: 3.67s
159:	learn: 22.8971645	total: 4.17s	remaining: 3.65s
160:	learn: 22.8124108	total: 4.19s	remaining: 3.62s
161:	learn: 22.7259629	total: 4.22s	remaining: 3.6s
162:	learn: 22.6410461	total: 4.25s	remaining: 3.57s
163:	learn: 22.5475340	total: 4.28s	remaining: 3.55s
164:	learn: 22.4665910	total: 4.31s	remaining: 3.52s
165:	learn: 22.4018176	total: 4.33s	remaining: 3.5s
166:	learn: 22.3206923	total: 4.36s	remaining: 3.47s
167:	learn: 22.2605670	total: 4.38s	remaining: 3.44s
168:	learn: 22.1905861	total: 4.41s	remaining: 3.42s
169:	learn: 22.1262269	total: 4.43s	remaining: 3.39s
170:	learn: 22.0491308	total: 4.45s	remaining: 3.36s
171:	learn: 21.9817333	total: 4.48s	remaining: 3.34s
172:	learn: 21.9058044	total: 4.52s	remaining: 3.31s
173:	learn: 21.8241791	total: 4.54s	remaining: 3.29s
174:	learn: 21.7375817	total: 4.57s	remaining: 3.26s
175:	learn: 21.6472643	total: 4.59s	remaining: 3.23s
176:	learn: 21.5766827	total: 4.62s	remaining: 3.21s
177:	learn: 21.4878344	total: 4.64s	remaining: 3.18s
178:	learn: 21.4188640	total: 4.66s	remaining: 3.15s
179:	learn: 21.3385443	total: 4.69s	remaining: 3.13s
180:	learn: 21.2650011	total: 4.71s	remaining: 3.1s
181:	learn: 21.1772856	total: 4.75s	remaining: 3.08s
182:	learn: 21.1013252	total: 4.78s	remaining: 3.05s
183:	learn: 21.0237300	total: 4.8s	remaining: 3.03s
184:	learn: 20.9314435	total: 4.83s	remaining: 3s
185:	learn: 20.8664317	total: 4.85s	remaining: 2.97s
186:	learn: 20.8108514	total: 4.87s	remaining: 2.94s
187:	learn: 20.7363786	total: 4.9s	remaining: 2.92s
188:	learn: 20.6587434	total: 4.92s	remaining: 2.89s
189:	learn: 20.5954877	total: 4.95s	remaining: 2.86s
190:	learn: 20.5328286	total: 4.99s	remaining: 2.85s
191:	learn: 20.4669052	total: 5.01s	remaining: 2.82s
192:	learn: 20.3961092	total: 5.04s	remaining: 2.79s
193:	learn: 20.3346586	total: 5.06s	remaining: 2.77s
194:	learn: 20.2699707	total: 5.09s	remaining: 2.74s
195:	learn: 20.1688307	total: 5.11s	remaining: 2.71s
196:	learn: 20.1072185	total: 5.14s	remaining: 2.69s
197:	learn: 20.0248965	total: 5.16s	remaining: 2.66s
198:	learn: 19.9749040	total: 5.19s	remaining: 2.63s
199:	learn: 19.9141163	total: 5.22s	remaining: 2.61s
200:	learn: 19.8322942	total: 5.25s	remaining: 2.58s
201:	learn: 19.7695440	total: 5.28s	remaining: 2.56s
202:	learn: 19.7099364	total: 5.3s	remaining: 2.53s
203:	learn: 19.6431868	total: 5.33s	remaining: 2.51s
204:	learn: 19.5742365	total: 5.35s	remaining: 2.48s
205:	learn: 19.4926752	total: 5.38s	remaining: 2.45s
206:	learn: 19.4461217	total: 5.4s	remaining: 2.43s
207:	learn: 19.3968500	total: 5.43s	remaining: 2.4s
208:	learn: 19.3405955	total: 5.46s	remaining: 2.38s
209:	learn: 19.2827366	total: 5.49s	remaining: 2.35s
210:	learn: 19.2233617	total: 5.51s	remaining: 2.32s
211:	learn: 19.1454929	total: 5.54s	remaining: 2.3s
212:	learn: 19.0880463	total: 5.57s	remaining: 2.27s
213:	learn: 19.0234252	total: 5.59s	remaining: 2.25s
214:	learn: 18.9739747	total: 5.62s	remaining: 2.22s
215:	learn: 18.9243468	total: 5.65s	remaining: 2.2s
216:	learn: 18.8837475	total: 5.67s	remaining: 2.17s
217:	learn: 18.8278098	total: 5.7s	remaining: 2.14s
218:	learn: 18.7925834	total: 5.72s	remaining: 2.12s
219:	learn: 18.7381930	total: 5.75s	remaining: 2.09s
220:	learn: 18.6955420	total: 5.77s	remaining: 2.06s
221:	learn: 18.6371123	total: 5.8s	remaining: 2.04s
222:	learn: 18.5567836	total: 5.83s	remaining: 2.01s
223:	learn: 18.4913242	total: 5.86s	remaining: 1.99s
224:	learn: 18.4291923	total: 5.89s	remaining: 1.96s
225:	learn: 18.3684290	total: 5.92s	remaining: 1.94s
226:	learn: 18.3214289	total: 5.94s	remaining: 1.91s
227:	learn: 18.2559323	total: 5.97s	remaining: 1.88s
228:	learn: 18.2080430	total: 5.99s	remaining: 1.86s
229:	learn: 18.1427218	total: 6.01s	remaining: 1.83s
230:	learn: 18.0795023	total: 6.04s	remaining: 1.8s
231:	learn: 18.0263874	total: 6.07s	remaining: 1.78s
232:	learn: 17.9746300	total: 6.1s	remaining: 1.75s
233:	learn: 17.9230444	total: 6.13s	remaining: 1.73s
234:	learn: 17.8920017	total: 6.15s	remaining: 1.7s
235:	learn: 17.8210122	total: 6.18s	remaining: 1.68s
236:	learn: 17.7628665	total: 6.2s	remaining: 1.65s
237:	learn: 17.7044488	total: 6.22s	remaining: 1.62s
238:	learn: 17.6558079	total: 6.25s	remaining: 1.59s
239:	learn: 17.6061414	total: 6.28s	remaining: 1.57s
240:	learn: 17.5499135	total: 6.31s	remaining: 1.54s
241:	learn: 17.5079151	total: 6.34s	remaining: 1.52s
242:	learn: 17.4658116	total: 6.37s	remaining: 1.49s
243:	learn: 17.4073047	total: 6.39s	remaining: 1.47s
244:	learn: 17.3745022	total: 6.41s	remaining: 1.44s
245:	learn: 17.3357514	total: 6.44s	remaining: 1.41s
246:	learn: 17.3068297	total: 6.46s	remaining: 1.39s
247:	learn: 17.2634815	total: 6.49s	remaining: 1.36s
248:	learn: 17.2117369	total: 6.52s	remaining: 1.33s
249:	learn: 17.1587386	total: 6.55s	remaining: 1.31s
250:	learn: 17.1143843	total: 6.57s	remaining: 1.28s
251:	learn: 17.0739449	total: 6.61s	remaining: 1.26s
252:	learn: 17.0260606	total: 6.63s	remaining: 1.23s
253:	learn: 16.9834570	total: 6.66s	remaining: 1.21s
254:	learn: 16.9420746	total: 6.68s	remaining: 1.18s
255:	learn: 16.8913583	total: 6.71s	remaining: 1.15s
256:	learn: 16.8361972	total: 6.74s	remaining: 1.13s
257:	learn: 16.8015363	total: 6.76s	remaining: 1.1s
258:	learn: 16.7722675	total: 6.79s	remaining: 1.07s
259:	learn: 16.7270442	total: 6.81s	remaining: 1.05s
260:	learn: 16.6831627	total: 6.84s	remaining: 1.02s
261:	learn: 16.6434408	total: 6.87s	remaining: 996ms
262:	learn: 16.6046513	total: 6.89s	remaining: 970ms
263:	learn: 16.5697297	total: 6.92s	remaining: 943ms
264:	learn: 16.5076111	total: 6.95s	remaining: 918ms
265:	learn: 16.4743242	total: 6.98s	remaining: 892ms
266:	learn: 16.4355076	total: 7s	remaining: 865ms
267:	learn: 16.3987254	total: 7.03s	remaining: 839ms
268:	learn: 16.3578512	total: 7.05s	remaining: 813ms
269:	learn: 16.3164137	total: 7.08s	remaining: 786ms
270:	learn: 16.2734218	total: 7.1s	remaining: 760ms
271:	learn: 16.2386336	total: 7.13s	remaining: 734ms
272:	learn: 16.2115930	total: 7.17s	remaining: 709ms
273:	learn: 16.1647178	total: 7.19s	remaining: 682ms
274:	learn: 16.1314533	total: 7.21s	remaining: 656ms
275:	learn: 16.0993418	total: 7.24s	remaining: 630ms
276:	learn: 16.0532680	total: 7.27s	remaining: 603ms
277:	learn: 15.9970623	total: 7.29s	remaining: 577ms
278:	learn: 15.9507754	total: 7.31s	remaining: 550ms
279:	learn: 15.9139085	total: 7.34s	remaining: 524ms
280:	learn: 15.8784290	total: 7.37s	remaining: 498ms
281:	learn: 15.8500276	total: 7.4s	remaining: 473ms
282:	learn: 15.8088728	total: 7.43s	remaining: 446ms
283:	learn: 15.7708631	total: 7.45s	remaining: 420ms
284:	learn: 15.7384477	total: 7.48s	remaining: 394ms
285:	learn: 15.6975787	total: 7.5s	remaining: 367ms
286:	learn: 15.6581989	total: 7.53s	remaining: 341ms
287:	learn: 15.6229063	total: 7.55s	remaining: 315ms
288:	learn: 15.5827583	total: 7.58s	remaining: 289ms
289:	learn: 15.5466794	total: 7.61s	remaining: 263ms
290:	learn: 15.5096633	total: 7.65s	remaining: 237ms
291:	learn: 15.4728289	total: 7.67s	remaining: 210ms
292:	learn: 15.4333441	total: 7.7s	remaining: 184ms
293:	learn: 15.3974059	total: 7.72s	remaining: 158ms
294:	learn: 15.3497460	total: 7.74s	remaining: 131ms
295:	learn: 15.3153853	total: 7.77s	remaining: 105ms
296:	learn: 15.2809401	total: 7.79s	remaining: 78.7ms
297:	learn: 15.2514602	total: 7.83s	remaining: 52.5ms
298:	learn: 15.2163632	total: 7.86s	remaining: 26.3ms
299:	learn: 15.1752827	total: 7.88s	remaining: 0us
0:	learn: 47.3866100	total: 33ms	remaining: 9.86s
1:	learn: 47.1426102	total: 61.6ms	remaining: 9.19s
2:	learn: 46.8912678	total: 91.9ms	remaining: 9.1s
3:	learn: 46.6074552	total: 117ms	remaining: 8.63s
4:	learn: 46.3343561	total: 142ms	remaining: 8.38s
5:	learn: 46.0821186	total: 167ms	remaining: 8.2s
6:	learn: 45.8220945	total: 192ms	remaining: 8.04s
7:	learn: 45.5648188	total: 217ms	remaining: 7.93s
8:	learn: 45.3118772	total: 241ms	remaining: 7.8s
9:	learn: 45.0577551	total: 265ms	remaining: 7.69s
10:	learn: 44.8202452	total: 297ms	remaining: 7.81s
11:	learn: 44.6018494	total: 330ms	remaining: 7.92s
12:	learn: 44.3639939	total: 357ms	remaining: 7.89s
13:	learn: 44.1260754	total: 383ms	remaining: 7.82s
14:	learn: 43.9085986	total: 407ms	remaining: 7.73s
15:	learn: 43.6831522	total: 432ms	remaining: 7.67s
16:	learn: 43.4382322	total: 456ms	remaining: 7.59s
17:	learn: 43.2049427	total: 480ms	remaining: 7.52s
18:	learn: 42.9703086	total: 506ms	remaining: 7.49s
19:	learn: 42.7260970	total: 537ms	remaining: 7.52s
20:	learn: 42.4976342	total: 570ms	remaining: 7.58s
21:	learn: 42.2715368	total: 594ms	remaining: 7.51s
22:	learn: 42.0297592	total: 619ms	remaining: 7.46s
23:	learn: 41.8357333	total: 645ms	remaining: 7.42s
24:	learn: 41.6061720	total: 669ms	remaining: 7.36s
25:	learn: 41.3859547	total: 693ms	remaining: 7.31s
26:	learn: 41.1703337	total: 717ms	remaining: 7.25s
27:	learn: 40.9556925	total: 751ms	remaining: 7.3s
28:	learn: 40.7837869	total: 777ms	remaining: 7.26s
29:	learn: 40.5834865	total: 803ms	remaining: 7.23s
30:	learn: 40.3902303	total: 836ms	remaining: 7.25s
31:	learn: 40.1905276	total: 861ms	remaining: 7.21s
32:	learn: 39.9393072	total: 884ms	remaining: 7.15s
33:	learn: 39.7725634	total: 908ms	remaining: 7.1s
34:	learn: 39.6086582	total: 932ms	remaining: 7.06s
35:	learn: 39.4239082	total: 967ms	remaining: 7.09s
36:	learn: 39.2195459	total: 993ms	remaining: 7.06s
37:	learn: 39.0268945	total: 1.02s	remaining: 7.02s
38:	learn: 38.8567143	total: 1.04s	remaining: 6.97s
39:	learn: 38.6564689	total: 1.07s	remaining: 6.93s
40:	learn: 38.4634144	total: 1.1s	remaining: 6.93s
41:	learn: 38.2574076	total: 1.12s	remaining: 6.89s
42:	learn: 38.0759189	total: 1.14s	remaining: 6.84s
43:	learn: 37.8762011	total: 1.18s	remaining: 6.84s
44:	learn: 37.6855185	total: 1.2s	remaining: 6.81s
45:	learn: 37.5247164	total: 1.23s	remaining: 6.77s
46:	learn: 37.3338876	total: 1.25s	remaining: 6.74s
47:	learn: 37.1348956	total: 1.28s	remaining: 6.7s
48:	learn: 37.0000826	total: 1.3s	remaining: 6.66s
49:	learn: 36.8314524	total: 1.32s	remaining: 6.62s
50:	learn: 36.6609492	total: 1.36s	remaining: 6.62s
51:	learn: 36.4906402	total: 1.39s	remaining: 6.62s
52:	learn: 36.3341244	total: 1.41s	remaining: 6.58s
53:	learn: 36.1983941	total: 1.44s	remaining: 6.55s
54:	learn: 36.0437712	total: 1.46s	remaining: 6.51s
55:	learn: 35.9047256	total: 1.49s	remaining: 6.48s
56:	learn: 35.7041614	total: 1.51s	remaining: 6.44s
57:	learn: 35.6344433	total: 1.51s	remaining: 6.31s
58:	learn: 35.4315645	total: 1.54s	remaining: 6.28s
59:	learn: 35.2659531	total: 1.56s	remaining: 6.25s
60:	learn: 35.0959404	total: 1.59s	remaining: 6.25s
61:	learn: 34.9228518	total: 1.63s	remaining: 6.26s
62:	learn: 34.7527576	total: 1.66s	remaining: 6.23s
63:	learn: 34.5885035	total: 1.68s	remaining: 6.2s
64:	learn: 34.4503426	total: 1.71s	remaining: 6.17s
65:	learn: 34.2692281	total: 1.73s	remaining: 6.13s
66:	learn: 34.1087294	total: 1.75s	remaining: 6.09s
67:	learn: 33.9503280	total: 1.78s	remaining: 6.07s
68:	learn: 33.8184729	total: 1.81s	remaining: 6.06s
69:	learn: 33.6278897	total: 1.84s	remaining: 6.04s
70:	learn: 33.4750481	total: 1.86s	remaining: 6.01s
71:	learn: 33.3216386	total: 1.9s	remaining: 6s
72:	learn: 33.1787868	total: 1.92s	remaining: 5.97s
73:	learn: 33.0207015	total: 1.95s	remaining: 5.94s
74:	learn: 32.8874907	total: 1.97s	remaining: 5.91s
75:	learn: 32.7368247	total: 2s	remaining: 5.88s
76:	learn: 32.6329647	total: 2.02s	remaining: 5.87s
77:	learn: 32.4984428	total: 2.06s	remaining: 5.85s
78:	learn: 32.3645588	total: 2.08s	remaining: 5.82s
79:	learn: 32.2140910	total: 2.11s	remaining: 5.79s
80:	learn: 32.1071328	total: 2.13s	remaining: 5.77s
81:	learn: 31.9594655	total: 2.16s	remaining: 5.75s
82:	learn: 31.8335545	total: 2.19s	remaining: 5.72s
83:	learn: 31.6941865	total: 2.21s	remaining: 5.69s
84:	learn: 31.5568398	total: 2.24s	remaining: 5.66s
85:	learn: 31.4241459	total: 2.27s	remaining: 5.66s
86:	learn: 31.2520769	total: 2.3s	remaining: 5.62s
87:	learn: 31.1305059	total: 2.32s	remaining: 5.59s
88:	learn: 30.9859239	total: 2.35s	remaining: 5.56s
89:	learn: 30.8609070	total: 2.37s	remaining: 5.53s
90:	learn: 30.7334170	total: 2.39s	remaining: 5.5s
91:	learn: 30.6026676	total: 2.43s	remaining: 5.49s
92:	learn: 30.4699786	total: 2.45s	remaining: 5.46s
93:	learn: 30.3354713	total: 2.48s	remaining: 5.44s
94:	learn: 30.1962656	total: 2.51s	remaining: 5.41s
95:	learn: 30.0840378	total: 2.53s	remaining: 5.38s
96:	learn: 29.9769788	total: 2.56s	remaining: 5.35s
97:	learn: 29.8484424	total: 2.58s	remaining: 5.32s
98:	learn: 29.7170503	total: 2.6s	remaining: 5.29s
99:	learn: 29.6074100	total: 2.63s	remaining: 5.26s
100:	learn: 29.4778106	total: 2.65s	remaining: 5.23s
101:	learn: 29.3374186	total: 2.69s	remaining: 5.22s
102:	learn: 29.2080076	total: 2.72s	remaining: 5.2s
103:	learn: 29.0873312	total: 2.74s	remaining: 5.17s
104:	learn: 28.9927551	total: 2.77s	remaining: 5.14s
105:	learn: 28.8317474	total: 2.79s	remaining: 5.11s
106:	learn: 28.7062652	total: 2.82s	remaining: 5.08s
107:	learn: 28.5773284	total: 2.84s	remaining: 5.05s
108:	learn: 28.4953947	total: 2.87s	remaining: 5.02s
109:	learn: 28.3602682	total: 2.9s	remaining: 5s
110:	learn: 28.2333815	total: 2.93s	remaining: 5s
111:	learn: 28.1240955	total: 2.96s	remaining: 4.97s
112:	learn: 28.0042081	total: 2.98s	remaining: 4.94s
113:	learn: 27.8755833	total: 3.01s	remaining: 4.91s
114:	learn: 27.7391286	total: 3.03s	remaining: 4.88s
115:	learn: 27.6288646	total: 3.06s	remaining: 4.85s
116:	learn: 27.5138297	total: 3.08s	remaining: 4.82s
117:	learn: 27.4048303	total: 3.12s	remaining: 4.8s
118:	learn: 27.2873207	total: 3.14s	remaining: 4.78s
119:	learn: 27.1580436	total: 3.17s	remaining: 4.75s
120:	learn: 27.0229609	total: 3.2s	remaining: 4.74s
121:	learn: 26.9179110	total: 3.22s	remaining: 4.71s
122:	learn: 26.7866067	total: 3.25s	remaining: 4.67s
123:	learn: 26.6723854	total: 3.27s	remaining: 4.64s
124:	learn: 26.5644705	total: 3.29s	remaining: 4.61s
125:	learn: 26.4683380	total: 3.33s	remaining: 4.59s
126:	learn: 26.3651594	total: 3.35s	remaining: 4.57s
127:	learn: 26.2423427	total: 3.38s	remaining: 4.54s
128:	learn: 26.1392360	total: 3.4s	remaining: 4.51s
129:	learn: 26.0364868	total: 3.43s	remaining: 4.49s
130:	learn: 25.9462554	total: 3.46s	remaining: 4.46s
131:	learn: 25.8200905	total: 3.48s	remaining: 4.43s
132:	learn: 25.7327936	total: 3.51s	remaining: 4.4s
133:	learn: 25.6651491	total: 3.54s	remaining: 4.38s
134:	learn: 25.5503487	total: 3.56s	remaining: 4.36s
135:	learn: 25.4384941	total: 3.59s	remaining: 4.33s
136:	learn: 25.3274461	total: 3.62s	remaining: 4.3s
137:	learn: 25.2392392	total: 3.64s	remaining: 4.27s
138:	learn: 25.1575283	total: 3.66s	remaining: 4.24s
139:	learn: 25.0580534	total: 3.69s	remaining: 4.21s
140:	learn: 24.9561545	total: 3.72s	remaining: 4.2s
141:	learn: 24.8525353	total: 3.75s	remaining: 4.18s
142:	learn: 24.7244185	total: 3.78s	remaining: 4.15s
143:	learn: 24.6347464	total: 3.81s	remaining: 4.13s
144:	learn: 24.5284082	total: 3.83s	remaining: 4.1s
145:	learn: 24.4410314	total: 3.86s	remaining: 4.07s
146:	learn: 24.3411270	total: 3.88s	remaining: 4.04s
147:	learn: 24.2571404	total: 3.91s	remaining: 4.01s
148:	learn: 24.1664004	total: 3.94s	remaining: 3.99s
149:	learn: 24.0921663	total: 3.97s	remaining: 3.97s
150:	learn: 24.0000920	total: 4.01s	remaining: 3.95s
151:	learn: 23.8989061	total: 4.03s	remaining: 3.93s
152:	learn: 23.8051021	total: 4.06s	remaining: 3.9s
153:	learn: 23.7140777	total: 4.08s	remaining: 3.87s
154:	learn: 23.6350863	total: 4.11s	remaining: 3.84s
155:	learn: 23.5453185	total: 4.13s	remaining: 3.81s
156:	learn: 23.4762777	total: 4.16s	remaining: 3.79s
157:	learn: 23.3964371	total: 4.19s	remaining: 3.77s
158:	learn: 23.3060877	total: 4.21s	remaining: 3.74s
159:	learn: 23.2410717	total: 4.24s	remaining: 3.71s
160:	learn: 23.1461269	total: 4.27s	remaining: 3.69s
161:	learn: 23.0550190	total: 4.3s	remaining: 3.66s
162:	learn: 22.9862832	total: 4.32s	remaining: 3.63s
163:	learn: 22.8730849	total: 4.34s	remaining: 3.6s
164:	learn: 22.7831631	total: 4.37s	remaining: 3.57s
165:	learn: 22.7121818	total: 4.4s	remaining: 3.55s
166:	learn: 22.6202215	total: 4.43s	remaining: 3.53s
167:	learn: 22.5433563	total: 4.45s	remaining: 3.5s
168:	learn: 22.4588142	total: 4.48s	remaining: 3.47s
169:	learn: 22.4211462	total: 4.48s	remaining: 3.43s
170:	learn: 22.3368333	total: 4.51s	remaining: 3.4s
171:	learn: 22.2529400	total: 4.54s	remaining: 3.38s
172:	learn: 22.1796508	total: 4.56s	remaining: 3.35s
173:	learn: 22.1038400	total: 4.59s	remaining: 3.33s
174:	learn: 22.0214875	total: 4.63s	remaining: 3.3s
175:	learn: 21.9596201	total: 4.65s	remaining: 3.27s
176:	learn: 21.9047679	total: 4.67s	remaining: 3.25s
177:	learn: 21.8305329	total: 4.7s	remaining: 3.22s
178:	learn: 21.7474635	total: 4.72s	remaining: 3.19s
179:	learn: 21.6838637	total: 4.75s	remaining: 3.17s
180:	learn: 21.6231038	total: 4.77s	remaining: 3.14s
181:	learn: 21.5530991	total: 4.8s	remaining: 3.12s
182:	learn: 21.4744081	total: 4.84s	remaining: 3.09s
183:	learn: 21.4002206	total: 4.86s	remaining: 3.07s
184:	learn: 21.3311448	total: 4.89s	remaining: 3.04s
185:	learn: 21.2663373	total: 4.91s	remaining: 3.01s
186:	learn: 21.1872896	total: 4.94s	remaining: 2.98s
187:	learn: 21.1149449	total: 4.96s	remaining: 2.96s
188:	learn: 21.0395139	total: 4.99s	remaining: 2.93s
189:	learn: 20.9687164	total: 5.01s	remaining: 2.9s
190:	learn: 20.9310992	total: 5.04s	remaining: 2.88s
191:	learn: 20.8588045	total: 5.08s	remaining: 2.86s
192:	learn: 20.8068052	total: 5.1s	remaining: 2.83s
193:	learn: 20.7445460	total: 5.13s	remaining: 2.8s
194:	learn: 20.6840110	total: 5.15s	remaining: 2.77s
195:	learn: 20.6281417	total: 5.18s	remaining: 2.75s
196:	learn: 20.5604201	total: 5.2s	remaining: 2.72s
197:	learn: 20.4807570	total: 5.23s	remaining: 2.69s
198:	learn: 20.4340054	total: 5.26s	remaining: 2.67s
199:	learn: 20.3819010	total: 5.29s	remaining: 2.64s
200:	learn: 20.3209962	total: 5.31s	remaining: 2.62s
201:	learn: 20.2680186	total: 5.34s	remaining: 2.59s
202:	learn: 20.2024573	total: 5.37s	remaining: 2.56s
203:	learn: 20.1283892	total: 5.39s	remaining: 2.54s
204:	learn: 20.0617914	total: 5.41s	remaining: 2.51s
205:	learn: 20.0011232	total: 5.44s	remaining: 2.48s
206:	learn: 19.9478089	total: 5.47s	remaining: 2.46s
207:	learn: 19.8811498	total: 5.5s	remaining: 2.43s
208:	learn: 19.8266470	total: 5.52s	remaining: 2.4s
209:	learn: 19.7584260	total: 5.54s	remaining: 2.38s
210:	learn: 19.6930201	total: 5.57s	remaining: 2.35s
211:	learn: 19.6371133	total: 5.6s	remaining: 2.33s
212:	learn: 19.5792826	total: 5.63s	remaining: 2.3s
213:	learn: 19.5165282	total: 5.65s	remaining: 2.27s
214:	learn: 19.4647405	total: 5.68s	remaining: 2.25s
215:	learn: 19.4045396	total: 5.71s	remaining: 2.22s
216:	learn: 19.3395383	total: 5.73s	remaining: 2.19s
217:	learn: 19.2771112	total: 5.76s	remaining: 2.17s
218:	learn: 19.2295294	total: 5.78s	remaining: 2.14s
219:	learn: 19.1755119	total: 5.81s	remaining: 2.11s
220:	learn: 19.1226534	total: 5.83s	remaining: 2.08s
221:	learn: 19.0487891	total: 5.87s	remaining: 2.06s
222:	learn: 19.0058991	total: 5.9s	remaining: 2.04s
223:	learn: 18.9460485	total: 5.92s	remaining: 2.01s
224:	learn: 18.9073701	total: 5.95s	remaining: 1.98s
225:	learn: 18.8677507	total: 5.97s	remaining: 1.96s
226:	learn: 18.8163333	total: 6s	remaining: 1.93s
227:	learn: 18.7679599	total: 6.02s	remaining: 1.9s
228:	learn: 18.7165756	total: 6.04s	remaining: 1.87s
229:	learn: 18.6605125	total: 6.07s	remaining: 1.85s
230:	learn: 18.6094425	total: 6.1s	remaining: 1.82s
231:	learn: 18.5576484	total: 6.13s	remaining: 1.8s
232:	learn: 18.5012159	total: 6.16s	remaining: 1.77s
233:	learn: 18.4593166	total: 6.18s	remaining: 1.74s
234:	learn: 18.4031765	total: 6.21s	remaining: 1.72s
235:	learn: 18.3459023	total: 6.23s	remaining: 1.69s
236:	learn: 18.3172764	total: 6.25s	remaining: 1.66s
237:	learn: 18.2472206	total: 6.28s	remaining: 1.64s
238:	learn: 18.1862965	total: 6.3s	remaining: 1.61s
239:	learn: 18.1146012	total: 6.34s	remaining: 1.58s
240:	learn: 18.0588447	total: 6.36s	remaining: 1.56s
241:	learn: 17.9987516	total: 6.39s	remaining: 1.53s
242:	learn: 17.9467371	total: 6.42s	remaining: 1.5s
243:	learn: 17.8837781	total: 6.44s	remaining: 1.48s
244:	learn: 17.8212642	total: 6.46s	remaining: 1.45s
245:	learn: 17.7759243	total: 6.49s	remaining: 1.42s
246:	learn: 17.7295650	total: 6.52s	remaining: 1.4s
247:	learn: 17.6805280	total: 6.55s	remaining: 1.37s
248:	learn: 17.6305571	total: 6.57s	remaining: 1.35s
249:	learn: 17.5806734	total: 6.6s	remaining: 1.32s
250:	learn: 17.5364826	total: 6.62s	remaining: 1.29s
251:	learn: 17.4937797	total: 6.65s	remaining: 1.27s
252:	learn: 17.4449942	total: 6.67s	remaining: 1.24s
253:	learn: 17.3822018	total: 6.7s	remaining: 1.21s
254:	learn: 17.3321374	total: 6.72s	remaining: 1.19s
255:	learn: 17.2925645	total: 6.75s	remaining: 1.16s
256:	learn: 17.2538857	total: 6.78s	remaining: 1.14s
257:	learn: 17.2041105	total: 6.81s	remaining: 1.11s
258:	learn: 17.1456541	total: 6.83s	remaining: 1.08s
259:	learn: 17.1038623	total: 6.86s	remaining: 1.05s
260:	learn: 17.0447376	total: 6.88s	remaining: 1.03s
261:	learn: 17.0034981	total: 6.91s	remaining: 1s
262:	learn: 16.9567643	total: 6.94s	remaining: 976ms
263:	learn: 16.9020578	total: 6.97s	remaining: 951ms
264:	learn: 16.8585850	total: 7s	remaining: 924ms
265:	learn: 16.8171458	total: 7.02s	remaining: 898ms
266:	learn: 16.7669542	total: 7.05s	remaining: 871ms
267:	learn: 16.7328560	total: 7.07s	remaining: 844ms
268:	learn: 16.6990433	total: 7.1s	remaining: 818ms
269:	learn: 16.6540554	total: 7.12s	remaining: 791ms
270:	learn: 16.6103987	total: 7.14s	remaining: 764ms
271:	learn: 16.5748192	total: 7.18s	remaining: 739ms
272:	learn: 16.5429372	total: 7.21s	remaining: 713ms
273:	learn: 16.5072397	total: 7.24s	remaining: 687ms
274:	learn: 16.4684978	total: 7.26s	remaining: 660ms
275:	learn: 16.4457766	total: 7.29s	remaining: 634ms
276:	learn: 16.4054138	total: 7.31s	remaining: 607ms
277:	learn: 16.3748248	total: 7.33s	remaining: 580ms
278:	learn: 16.3461752	total: 7.36s	remaining: 554ms
279:	learn: 16.2936436	total: 7.38s	remaining: 527ms
280:	learn: 16.2559779	total: 7.42s	remaining: 502ms
281:	learn: 16.2154264	total: 7.45s	remaining: 475ms
282:	learn: 16.1817521	total: 7.47s	remaining: 449ms
283:	learn: 16.1315295	total: 7.5s	remaining: 422ms
284:	learn: 16.0866868	total: 7.52s	remaining: 396ms
285:	learn: 16.0685868	total: 7.54s	remaining: 369ms
286:	learn: 16.0419346	total: 7.57s	remaining: 343ms
287:	learn: 16.0027886	total: 7.59s	remaining: 316ms
288:	learn: 15.9500871	total: 7.61s	remaining: 290ms
289:	learn: 15.9068464	total: 7.65s	remaining: 264ms
290:	learn: 15.8654849	total: 7.68s	remaining: 238ms
291:	learn: 15.8182506	total: 7.7s	remaining: 211ms
292:	learn: 15.7932566	total: 7.73s	remaining: 185ms
293:	learn: 15.7496330	total: 7.76s	remaining: 158ms
294:	learn: 15.7060484	total: 7.78s	remaining: 132ms
295:	learn: 15.6582263	total: 7.8s	remaining: 105ms
296:	learn: 15.6325770	total: 7.83s	remaining: 79ms
297:	learn: 15.6045661	total: 7.85s	remaining: 52.7ms
298:	learn: 15.5716255	total: 7.88s	remaining: 26.3ms
299:	learn: 15.5476987	total: 7.91s	remaining: 0us
0:	learn: 27.5585353	total: 5.58ms	remaining: 552ms
1:	learn: 27.1656995	total: 9.87ms	remaining: 484ms
2:	learn: 26.8590175	total: 14.3ms	remaining: 464ms
3:	learn: 26.5818406	total: 19ms	remaining: 457ms
4:	learn: 26.1148663	total: 23.4ms	remaining: 444ms
5:	learn: 25.7690484	total: 27.4ms	remaining: 429ms
6:	learn: 25.3489206	total: 31.6ms	remaining: 420ms
7:	learn: 24.9542406	total: 36.4ms	remaining: 419ms
8:	learn: 24.6777517	total: 41.2ms	remaining: 416ms
9:	learn: 24.3242344	total: 45.6ms	remaining: 411ms
10:	learn: 24.0383073	total: 50.2ms	remaining: 406ms
11:	learn: 23.7383420	total: 54.8ms	remaining: 402ms
12:	learn: 23.3461670	total: 59.2ms	remaining: 396ms
13:	learn: 23.0928636	total: 63.9ms	remaining: 392ms
14:	learn: 22.8770414	total: 71.3ms	remaining: 404ms
15:	learn: 22.6323214	total: 78.5ms	remaining: 412ms
16:	learn: 22.3597072	total: 87.4ms	remaining: 427ms
17:	learn: 22.1079813	total: 93.6ms	remaining: 426ms
18:	learn: 21.8421199	total: 101ms	remaining: 430ms
19:	learn: 21.6576508	total: 106ms	remaining: 424ms
20:	learn: 21.4301268	total: 111ms	remaining: 418ms
21:	learn: 21.2287388	total: 116ms	remaining: 412ms
22:	learn: 21.0553872	total: 121ms	remaining: 407ms
23:	learn: 20.8977091	total: 126ms	remaining: 400ms
24:	learn: 20.6619051	total: 131ms	remaining: 394ms
25:	learn: 20.5040955	total: 137ms	remaining: 389ms
26:	learn: 20.3181195	total: 142ms	remaining: 384ms
27:	learn: 20.0869436	total: 147ms	remaining: 377ms
28:	learn: 19.9375985	total: 152ms	remaining: 372ms
29:	learn: 19.8247516	total: 157ms	remaining: 367ms
30:	learn: 19.6261697	total: 162ms	remaining: 360ms
31:	learn: 19.4547236	total: 167ms	remaining: 355ms
32:	learn: 19.3157092	total: 173ms	remaining: 351ms
33:	learn: 19.1561419	total: 177ms	remaining: 344ms
34:	learn: 19.0453620	total: 181ms	remaining: 337ms
35:	learn: 18.8738574	total: 186ms	remaining: 330ms
36:	learn: 18.7072907	total: 190ms	remaining: 323ms
37:	learn: 18.5877943	total: 194ms	remaining: 317ms
38:	learn: 18.4436380	total: 199ms	remaining: 311ms
39:	learn: 18.3463356	total: 203ms	remaining: 305ms
40:	learn: 18.2008059	total: 208ms	remaining: 299ms
41:	learn: 18.0582079	total: 212ms	remaining: 293ms
42:	learn: 17.8891982	total: 216ms	remaining: 286ms
43:	learn: 17.7332246	total: 220ms	remaining: 280ms
44:	learn: 17.6206421	total: 225ms	remaining: 275ms
45:	learn: 17.4982800	total: 229ms	remaining: 269ms
46:	learn: 17.3970150	total: 234ms	remaining: 263ms
47:	learn: 17.3058203	total: 238ms	remaining: 258ms
48:	learn: 17.1789256	total: 243ms	remaining: 253ms
49:	learn: 17.0916229	total: 248ms	remaining: 248ms
50:	learn: 16.9859820	total: 252ms	remaining: 243ms
51:	learn: 16.8995582	total: 257ms	remaining: 237ms
52:	learn: 16.8137014	total: 262ms	remaining: 232ms
53:	learn: 16.7021451	total: 266ms	remaining: 227ms
54:	learn: 16.5895582	total: 273ms	remaining: 224ms
55:	learn: 16.5015639	total: 281ms	remaining: 221ms
56:	learn: 16.4356637	total: 290ms	remaining: 219ms
57:	learn: 16.3514525	total: 297ms	remaining: 215ms
58:	learn: 16.2401369	total: 304ms	remaining: 211ms
59:	learn: 16.1293223	total: 309ms	remaining: 206ms
60:	learn: 16.0271167	total: 315ms	remaining: 201ms
61:	learn: 15.9126257	total: 320ms	remaining: 196ms
62:	learn: 15.8391096	total: 326ms	remaining: 191ms
63:	learn: 15.7441773	total: 331ms	remaining: 186ms
64:	learn: 15.6885195	total: 336ms	remaining: 181ms
65:	learn: 15.6052039	total: 341ms	remaining: 176ms
66:	learn: 15.5074202	total: 346ms	remaining: 170ms
67:	learn: 15.4054338	total: 351ms	remaining: 165ms
68:	learn: 15.2885714	total: 356ms	remaining: 160ms
69:	learn: 15.2157472	total: 361ms	remaining: 155ms
70:	learn: 15.1031554	total: 366ms	remaining: 149ms
71:	learn: 15.0237470	total: 371ms	remaining: 144ms
72:	learn: 14.9756825	total: 376ms	remaining: 139ms
73:	learn: 14.8840596	total: 381ms	remaining: 134ms
74:	learn: 14.8077061	total: 385ms	remaining: 128ms
75:	learn: 14.7444437	total: 389ms	remaining: 123ms
76:	learn: 14.6751720	total: 394ms	remaining: 118ms
77:	learn: 14.5830333	total: 398ms	remaining: 112ms
78:	learn: 14.5241206	total: 402ms	remaining: 107ms
79:	learn: 14.4892731	total: 407ms	remaining: 102ms
80:	learn: 14.4256605	total: 411ms	remaining: 96.4ms
81:	learn: 14.3666860	total: 415ms	remaining: 91ms
82:	learn: 14.2938372	total: 419ms	remaining: 85.9ms
83:	learn: 14.2161532	total: 423ms	remaining: 80.6ms
84:	learn: 14.1582910	total: 427ms	remaining: 75.4ms
85:	learn: 14.1029153	total: 431ms	remaining: 70.2ms
86:	learn: 14.0475835	total: 436ms	remaining: 65.1ms
87:	learn: 13.9892661	total: 440ms	remaining: 60ms
88:	learn: 13.9481628	total: 445ms	remaining: 55ms
89:	learn: 13.8483991	total: 449ms	remaining: 49.9ms
90:	learn: 13.7775614	total: 453ms	remaining: 44.8ms
91:	learn: 13.7304585	total: 458ms	remaining: 39.8ms
92:	learn: 13.6783381	total: 463ms	remaining: 34.8ms
93:	learn: 13.6356964	total: 468ms	remaining: 29.8ms
94:	learn: 13.5924371	total: 476ms	remaining: 25ms
95:	learn: 13.5400746	total: 483ms	remaining: 20.1ms
96:	learn: 13.4897333	total: 492ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 498ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 504ms	remaining: 5.09ms
99:	learn: 13.3082371	total: 509ms	remaining: 0us
0:	learn: 43.0395283	total: 5.64ms	remaining: 558ms
1:	learn: 42.1130223	total: 9.48ms	remaining: 465ms
2:	learn: 41.1753409	total: 13.5ms	remaining: 436ms
3:	learn: 40.3637444	total: 18ms	remaining: 433ms
4:	learn: 39.6508088	total: 22.2ms	remaining: 423ms
5:	learn: 38.7217934	total: 26.6ms	remaining: 416ms
6:	learn: 37.8538055	total: 30.9ms	remaining: 410ms
7:	learn: 36.9793574	total: 35.1ms	remaining: 404ms
8:	learn: 36.3076984	total: 39.6ms	remaining: 400ms
9:	learn: 35.6673160	total: 43.7ms	remaining: 393ms
10:	learn: 34.8889800	total: 48.1ms	remaining: 389ms
11:	learn: 34.1675517	total: 52.6ms	remaining: 386ms
12:	learn: 33.6779564	total: 56.9ms	remaining: 381ms
13:	learn: 33.0710039	total: 61.2ms	remaining: 376ms
14:	learn: 32.4966674	total: 65.2ms	remaining: 370ms
15:	learn: 31.9492856	total: 69.5ms	remaining: 365ms
16:	learn: 31.5108129	total: 73.5ms	remaining: 359ms
17:	learn: 30.9804023	total: 78.1ms	remaining: 356ms
18:	learn: 30.4169089	total: 82.5ms	remaining: 352ms
19:	learn: 29.8930375	total: 87.2ms	remaining: 349ms
20:	learn: 29.3974421	total: 92ms	remaining: 346ms
21:	learn: 28.8792307	total: 96.3ms	remaining: 342ms
22:	learn: 28.3894474	total: 101ms	remaining: 338ms
23:	learn: 27.9921276	total: 106ms	remaining: 334ms
24:	learn: 27.6158887	total: 110ms	remaining: 331ms
25:	learn: 27.2866950	total: 118ms	remaining: 336ms
26:	learn: 26.8770708	total: 126ms	remaining: 342ms
27:	learn: 26.6233005	total: 135ms	remaining: 348ms
28:	learn: 26.2921934	total: 142ms	remaining: 347ms
29:	learn: 25.9156920	total: 148ms	remaining: 345ms
30:	learn: 25.5311106	total: 150ms	remaining: 334ms
31:	learn: 25.2178997	total: 155ms	remaining: 330ms
32:	learn: 24.8572196	total: 161ms	remaining: 327ms
33:	learn: 24.5849710	total: 167ms	remaining: 325ms
34:	learn: 24.2209190	total: 173ms	remaining: 322ms
35:	learn: 23.8708250	total: 179ms	remaining: 318ms
36:	learn: 23.5325279	total: 185ms	remaining: 315ms
37:	learn: 23.2116148	total: 190ms	remaining: 310ms
38:	learn: 22.9696787	total: 196ms	remaining: 306ms
39:	learn: 22.7936783	total: 200ms	remaining: 301ms
40:	learn: 22.6228847	total: 206ms	remaining: 297ms
41:	learn: 22.3691527	total: 212ms	remaining: 293ms
42:	learn: 22.1002173	total: 216ms	remaining: 287ms
43:	learn: 21.9157268	total: 220ms	remaining: 280ms
44:	learn: 21.7229102	total: 225ms	remaining: 274ms
45:	learn: 21.4642005	total: 229ms	remaining: 269ms
46:	learn: 21.3029442	total: 233ms	remaining: 263ms
47:	learn: 21.1469792	total: 237ms	remaining: 257ms
48:	learn: 20.9458235	total: 241ms	remaining: 251ms
49:	learn: 20.7335242	total: 246ms	remaining: 246ms
50:	learn: 20.5440269	total: 250ms	remaining: 240ms
51:	learn: 20.3661449	total: 254ms	remaining: 235ms
52:	learn: 20.2158134	total: 258ms	remaining: 229ms
53:	learn: 19.9934873	total: 263ms	remaining: 224ms
54:	learn: 19.7879739	total: 268ms	remaining: 219ms
55:	learn: 19.6630460	total: 272ms	remaining: 214ms
56:	learn: 19.5152729	total: 277ms	remaining: 209ms
57:	learn: 19.3581128	total: 282ms	remaining: 204ms
58:	learn: 19.2209303	total: 286ms	remaining: 199ms
59:	learn: 19.0965248	total: 291ms	remaining: 194ms
60:	learn: 19.0035954	total: 295ms	remaining: 189ms
61:	learn: 18.8554149	total: 300ms	remaining: 184ms
62:	learn: 18.7095427	total: 304ms	remaining: 179ms
63:	learn: 18.5751494	total: 309ms	remaining: 174ms
64:	learn: 18.4678251	total: 316ms	remaining: 170ms
65:	learn: 18.3500325	total: 324ms	remaining: 167ms
66:	learn: 18.2088983	total: 333ms	remaining: 164ms
67:	learn: 18.0737705	total: 339ms	remaining: 160ms
68:	learn: 17.9325058	total: 347ms	remaining: 156ms
69:	learn: 17.8003911	total: 352ms	remaining: 151ms
70:	learn: 17.7385366	total: 358ms	remaining: 146ms
71:	learn: 17.6106998	total: 363ms	remaining: 141ms
72:	learn: 17.4816270	total: 369ms	remaining: 136ms
73:	learn: 17.4025554	total: 374ms	remaining: 131ms
74:	learn: 17.2902108	total: 380ms	remaining: 127ms
75:	learn: 17.2158048	total: 386ms	remaining: 122ms
76:	learn: 17.1261053	total: 391ms	remaining: 117ms
77:	learn: 17.0308917	total: 396ms	remaining: 112ms
78:	learn: 16.9546705	total: 401ms	remaining: 107ms
79:	learn: 16.8319165	total: 406ms	remaining: 101ms
80:	learn: 16.7687017	total: 411ms	remaining: 96.3ms
81:	learn: 16.6972326	total: 416ms	remaining: 91.4ms
82:	learn: 16.6124580	total: 421ms	remaining: 86.2ms
83:	learn: 16.4999052	total: 425ms	remaining: 81ms
84:	learn: 16.4302484	total: 429ms	remaining: 75.8ms
85:	learn: 16.3201363	total: 434ms	remaining: 70.6ms
86:	learn: 16.2534314	total: 437ms	remaining: 65.4ms
87:	learn: 16.1720485	total: 442ms	remaining: 60.2ms
88:	learn: 16.0625751	total: 446ms	remaining: 55.1ms
89:	learn: 15.9135088	total: 451ms	remaining: 50.1ms
90:	learn: 15.8658863	total: 455ms	remaining: 45ms
91:	learn: 15.8066805	total: 460ms	remaining: 40ms
92:	learn: 15.7412103	total: 465ms	remaining: 35ms
93:	learn: 15.6542776	total: 470ms	remaining: 30ms
94:	learn: 15.5760334	total: 474ms	remaining: 25ms
95:	learn: 15.5434131	total: 479ms	remaining: 20ms
96:	learn: 15.4709561	total: 484ms	remaining: 15ms
97:	learn: 15.4449618	total: 489ms	remaining: 9.98ms
98:	learn: 15.3752761	total: 494ms	remaining: 4.99ms
99:	learn: 15.3106595	total: 499ms	remaining: 0us
0:	learn: 46.7142257	total: 6ms	remaining: 594ms
1:	learn: 45.7634153	total: 11.3ms	remaining: 552ms
2:	learn: 45.0054253	total: 16.4ms	remaining: 530ms
3:	learn: 44.2120432	total: 21.7ms	remaining: 520ms
4:	learn: 43.3960472	total: 26.6ms	remaining: 505ms
5:	learn: 42.8588120	total: 31.9ms	remaining: 501ms
6:	learn: 41.9533701	total: 37.2ms	remaining: 494ms
7:	learn: 41.2745030	total: 42.6ms	remaining: 490ms
8:	learn: 40.6797495	total: 48.2ms	remaining: 488ms
9:	learn: 39.9899571	total: 53.4ms	remaining: 480ms
10:	learn: 39.4682100	total: 57.7ms	remaining: 467ms
11:	learn: 39.0305595	total: 62.1ms	remaining: 455ms
12:	learn: 38.4200417	total: 66.2ms	remaining: 443ms
13:	learn: 37.8425194	total: 70.5ms	remaining: 433ms
14:	learn: 37.4203127	total: 75ms	remaining: 425ms
15:	learn: 36.9917688	total: 79ms	remaining: 415ms
16:	learn: 36.5544138	total: 83.2ms	remaining: 406ms
17:	learn: 36.0727019	total: 87.2ms	remaining: 397ms
18:	learn: 35.4835715	total: 91.5ms	remaining: 390ms
19:	learn: 34.9865654	total: 95.6ms	remaining: 382ms
20:	learn: 34.6063373	total: 99.8ms	remaining: 375ms
21:	learn: 34.0997289	total: 104ms	remaining: 369ms
22:	learn: 33.7313171	total: 109ms	remaining: 364ms
23:	learn: 33.3582000	total: 113ms	remaining: 358ms
24:	learn: 32.9432456	total: 117ms	remaining: 352ms
25:	learn: 32.5220888	total: 121ms	remaining: 345ms
26:	learn: 32.2172292	total: 126ms	remaining: 340ms
27:	learn: 31.8972904	total: 131ms	remaining: 336ms
28:	learn: 31.6405350	total: 136ms	remaining: 332ms
29:	learn: 31.4167702	total: 140ms	remaining: 327ms
30:	learn: 30.8541961	total: 142ms	remaining: 316ms
31:	learn: 30.5572111	total: 147ms	remaining: 312ms
32:	learn: 30.1700399	total: 151ms	remaining: 307ms
33:	learn: 29.8537271	total: 156ms	remaining: 303ms
34:	learn: 29.6192540	total: 164ms	remaining: 305ms
35:	learn: 29.3276362	total: 172ms	remaining: 305ms
36:	learn: 28.9985179	total: 180ms	remaining: 307ms
37:	learn: 28.7046880	total: 186ms	remaining: 304ms
38:	learn: 28.4412677	total: 192ms	remaining: 301ms
39:	learn: 28.1277292	total: 198ms	remaining: 297ms
40:	learn: 27.9000750	total: 203ms	remaining: 292ms
41:	learn: 27.5433162	total: 208ms	remaining: 287ms
42:	learn: 27.2493285	total: 213ms	remaining: 282ms
43:	learn: 26.9576632	total: 215ms	remaining: 274ms
44:	learn: 26.6177110	total: 220ms	remaining: 269ms
45:	learn: 26.2812456	total: 225ms	remaining: 264ms
46:	learn: 26.0803859	total: 230ms	remaining: 259ms
47:	learn: 25.9543581	total: 235ms	remaining: 255ms
48:	learn: 25.7951582	total: 240ms	remaining: 250ms
49:	learn: 25.6548184	total: 245ms	remaining: 245ms
50:	learn: 25.4010843	total: 251ms	remaining: 241ms
51:	learn: 24.9773937	total: 256ms	remaining: 237ms
52:	learn: 24.8026156	total: 261ms	remaining: 231ms
53:	learn: 24.5568053	total: 265ms	remaining: 226ms
54:	learn: 24.2281839	total: 270ms	remaining: 221ms
55:	learn: 23.9202795	total: 274ms	remaining: 215ms
56:	learn: 23.7625591	total: 278ms	remaining: 210ms
57:	learn: 23.5429721	total: 282ms	remaining: 204ms
58:	learn: 23.3175893	total: 286ms	remaining: 199ms
59:	learn: 23.2035130	total: 291ms	remaining: 194ms
60:	learn: 23.0232450	total: 295ms	remaining: 189ms
61:	learn: 22.8384958	total: 299ms	remaining: 183ms
62:	learn: 22.6499902	total: 304ms	remaining: 178ms
63:	learn: 22.4577426	total: 308ms	remaining: 173ms
64:	learn: 22.3333158	total: 312ms	remaining: 168ms
65:	learn: 22.2064131	total: 316ms	remaining: 163ms
66:	learn: 22.1434971	total: 321ms	remaining: 158ms
67:	learn: 21.9596519	total: 325ms	remaining: 153ms
68:	learn: 21.8475576	total: 330ms	remaining: 148ms
69:	learn: 21.6954745	total: 335ms	remaining: 143ms
70:	learn: 21.5635976	total: 339ms	remaining: 139ms
71:	learn: 21.4588506	total: 344ms	remaining: 134ms
72:	learn: 21.3527268	total: 348ms	remaining: 129ms
73:	learn: 21.2661288	total: 353ms	remaining: 124ms
74:	learn: 21.1817333	total: 362ms	remaining: 121ms
75:	learn: 21.0527553	total: 370ms	remaining: 117ms
76:	learn: 20.9229021	total: 376ms	remaining: 112ms
77:	learn: 20.7563946	total: 382ms	remaining: 108ms
78:	learn: 20.6569831	total: 387ms	remaining: 103ms
79:	learn: 20.4982663	total: 393ms	remaining: 98.1ms
80:	learn: 20.3185460	total: 398ms	remaining: 93.3ms
81:	learn: 20.2096241	total: 403ms	remaining: 88.5ms
82:	learn: 20.1274891	total: 408ms	remaining: 83.6ms
83:	learn: 20.0740139	total: 413ms	remaining: 78.7ms
84:	learn: 19.9630699	total: 419ms	remaining: 73.9ms
85:	learn: 19.8753899	total: 424ms	remaining: 69ms
86:	learn: 19.6563612	total: 429ms	remaining: 64.1ms
87:	learn: 19.4680232	total: 434ms	remaining: 59.2ms
88:	learn: 19.3503431	total: 439ms	remaining: 54.3ms
89:	learn: 19.2221379	total: 445ms	remaining: 49.4ms
90:	learn: 19.0732542	total: 450ms	remaining: 44.5ms
91:	learn: 18.9825190	total: 455ms	remaining: 39.5ms
92:	learn: 18.8839009	total: 459ms	remaining: 34.6ms
93:	learn: 18.8012219	total: 463ms	remaining: 29.6ms
94:	learn: 18.7172713	total: 468ms	remaining: 24.6ms
95:	learn: 18.6201170	total: 472ms	remaining: 19.7ms
96:	learn: 18.5318611	total: 476ms	remaining: 14.7ms
97:	learn: 18.3833356	total: 480ms	remaining: 9.79ms
98:	learn: 18.3289700	total: 484ms	remaining: 4.89ms
99:	learn: 18.2227333	total: 489ms	remaining: 0us
0:	learn: 46.3764524	total: 5.34ms	remaining: 528ms
1:	learn: 45.5561269	total: 9.99ms	remaining: 490ms
2:	learn: 44.8811245	total: 14.3ms	remaining: 462ms
3:	learn: 44.0788617	total: 18.6ms	remaining: 446ms
4:	learn: 43.3619790	total: 23.2ms	remaining: 441ms
5:	learn: 42.6912112	total: 27.9ms	remaining: 437ms
6:	learn: 42.2292118	total: 36ms	remaining: 478ms
7:	learn: 41.7725191	total: 43.7ms	remaining: 502ms
8:	learn: 41.1676614	total: 52.5ms	remaining: 531ms
9:	learn: 40.5771076	total: 61.4ms	remaining: 553ms
10:	learn: 39.8343757	total: 66.7ms	remaining: 540ms
11:	learn: 39.3761142	total: 72.4ms	remaining: 531ms
12:	learn: 38.5254692	total: 77.8ms	remaining: 521ms
13:	learn: 37.9629555	total: 83ms	remaining: 510ms
14:	learn: 37.4418438	total: 88.5ms	remaining: 501ms
15:	learn: 37.0507283	total: 93.6ms	remaining: 491ms
16:	learn: 36.6264217	total: 98.8ms	remaining: 482ms
17:	learn: 36.1114940	total: 104ms	remaining: 475ms
18:	learn: 35.7193862	total: 109ms	remaining: 467ms
19:	learn: 35.3301177	total: 115ms	remaining: 458ms
20:	learn: 35.0598280	total: 120ms	remaining: 450ms
21:	learn: 34.5469736	total: 125ms	remaining: 444ms
22:	learn: 34.2064215	total: 131ms	remaining: 439ms
23:	learn: 33.7280710	total: 137ms	remaining: 433ms
24:	learn: 33.3282940	total: 141ms	remaining: 424ms
25:	learn: 32.8478961	total: 146ms	remaining: 415ms
26:	learn: 32.5722164	total: 150ms	remaining: 406ms
27:	learn: 32.2457019	total: 154ms	remaining: 397ms
28:	learn: 31.9230495	total: 159ms	remaining: 389ms
29:	learn: 31.4311611	total: 163ms	remaining: 380ms
30:	learn: 30.9179052	total: 167ms	remaining: 372ms
31:	learn: 30.6201141	total: 171ms	remaining: 363ms
32:	learn: 30.3421106	total: 176ms	remaining: 357ms
33:	learn: 29.9885373	total: 180ms	remaining: 350ms
34:	learn: 29.7462780	total: 184ms	remaining: 342ms
35:	learn: 29.3607153	total: 189ms	remaining: 336ms
36:	learn: 29.1793078	total: 193ms	remaining: 329ms
37:	learn: 28.9276538	total: 197ms	remaining: 322ms
38:	learn: 28.6903934	total: 202ms	remaining: 315ms
39:	learn: 28.2095033	total: 206ms	remaining: 309ms
40:	learn: 27.7990608	total: 210ms	remaining: 303ms
41:	learn: 27.5406632	total: 215ms	remaining: 297ms
42:	learn: 27.2575376	total: 220ms	remaining: 291ms
43:	learn: 26.9741707	total: 224ms	remaining: 285ms
44:	learn: 26.6606899	total: 229ms	remaining: 279ms
45:	learn: 26.4015833	total: 233ms	remaining: 274ms
46:	learn: 26.1828993	total: 238ms	remaining: 268ms
47:	learn: 26.0233709	total: 241ms	remaining: 261ms
48:	learn: 25.9300399	total: 246ms	remaining: 256ms
49:	learn: 25.5861489	total: 250ms	remaining: 250ms
50:	learn: 25.4322012	total: 255ms	remaining: 245ms
51:	learn: 25.1595644	total: 264ms	remaining: 244ms
52:	learn: 24.9955303	total: 273ms	remaining: 242ms
53:	learn: 24.7273966	total: 281ms	remaining: 239ms
54:	learn: 24.5747978	total: 289ms	remaining: 236ms
55:	learn: 24.3807977	total: 294ms	remaining: 231ms
56:	learn: 24.1689569	total: 300ms	remaining: 226ms
57:	learn: 23.9898221	total: 305ms	remaining: 221ms
58:	learn: 23.7566414	total: 310ms	remaining: 216ms
59:	learn: 23.6641165	total: 315ms	remaining: 210ms
60:	learn: 23.5658066	total: 321ms	remaining: 205ms
61:	learn: 23.4338851	total: 326ms	remaining: 200ms
62:	learn: 23.2408837	total: 332ms	remaining: 195ms
63:	learn: 23.0642038	total: 337ms	remaining: 189ms
64:	learn: 22.9032045	total: 342ms	remaining: 184ms
65:	learn: 22.7736138	total: 347ms	remaining: 179ms
66:	learn: 22.6836443	total: 352ms	remaining: 173ms
67:	learn: 22.5983654	total: 358ms	remaining: 168ms
68:	learn: 22.4419813	total: 363ms	remaining: 163ms
69:	learn: 22.2863339	total: 368ms	remaining: 158ms
70:	learn: 22.1792943	total: 372ms	remaining: 152ms
71:	learn: 22.1130574	total: 377ms	remaining: 147ms
72:	learn: 21.9858161	total: 382ms	remaining: 141ms
73:	learn: 21.8577784	total: 386ms	remaining: 136ms
74:	learn: 21.7845222	total: 391ms	remaining: 130ms
75:	learn: 21.6831390	total: 395ms	remaining: 125ms
76:	learn: 21.6292521	total: 400ms	remaining: 119ms
77:	learn: 21.5789330	total: 405ms	remaining: 114ms
78:	learn: 21.5420942	total: 410ms	remaining: 109ms
79:	learn: 21.4280939	total: 414ms	remaining: 103ms
80:	learn: 21.3641165	total: 419ms	remaining: 98.2ms
81:	learn: 21.2734814	total: 423ms	remaining: 92.9ms
82:	learn: 21.2220323	total: 428ms	remaining: 87.7ms
83:	learn: 21.0625792	total: 433ms	remaining: 82.5ms
84:	learn: 20.9488320	total: 438ms	remaining: 77.2ms
85:	learn: 20.8504255	total: 442ms	remaining: 72ms
86:	learn: 20.7848510	total: 447ms	remaining: 66.7ms
87:	learn: 20.7247442	total: 451ms	remaining: 61.5ms
88:	learn: 20.5698590	total: 458ms	remaining: 56.6ms
89:	learn: 20.4067620	total: 465ms	remaining: 51.7ms
90:	learn: 20.3062482	total: 473ms	remaining: 46.8ms
91:	learn: 20.2029696	total: 481ms	remaining: 41.8ms
92:	learn: 20.1384849	total: 488ms	remaining: 36.7ms
93:	learn: 20.0260709	total: 494ms	remaining: 31.5ms
94:	learn: 19.9122100	total: 499ms	remaining: 26.2ms
95:	learn: 19.8648487	total: 504ms	remaining: 21ms
96:	learn: 19.8207072	total: 509ms	remaining: 15.7ms
97:	learn: 19.7261189	total: 514ms	remaining: 10.5ms
98:	learn: 19.7042438	total: 519ms	remaining: 5.24ms
99:	learn: 19.6546645	total: 524ms	remaining: 0us
0:	learn: 47.0239288	total: 13.1ms	remaining: 1.3s
1:	learn: 46.2253829	total: 17.7ms	remaining: 868ms
2:	learn: 45.5580301	total: 22.3ms	remaining: 722ms
3:	learn: 44.7273237	total: 26.9ms	remaining: 646ms
4:	learn: 43.8867421	total: 31.6ms	remaining: 601ms
5:	learn: 43.3615911	total: 36ms	remaining: 564ms
6:	learn: 42.8548390	total: 40.5ms	remaining: 538ms
7:	learn: 42.1606758	total: 45.7ms	remaining: 526ms
8:	learn: 41.6625870	total: 50.5ms	remaining: 510ms
9:	learn: 40.9497092	total: 54.6ms	remaining: 492ms
10:	learn: 40.1886318	total: 59.7ms	remaining: 483ms
11:	learn: 39.7456423	total: 64.8ms	remaining: 475ms
12:	learn: 39.1171373	total: 69.7ms	remaining: 467ms
13:	learn: 38.5451069	total: 74.2ms	remaining: 456ms
14:	learn: 38.0155834	total: 78.6ms	remaining: 446ms
15:	learn: 37.5631354	total: 83.1ms	remaining: 436ms
16:	learn: 37.1030023	total: 87.6ms	remaining: 428ms
17:	learn: 36.4563029	total: 92.4ms	remaining: 421ms
18:	learn: 36.0160976	total: 101ms	remaining: 432ms
19:	learn: 35.5079827	total: 111ms	remaining: 445ms
20:	learn: 35.2111885	total: 118ms	remaining: 444ms
21:	learn: 34.9397465	total: 126ms	remaining: 448ms
22:	learn: 34.5270048	total: 131ms	remaining: 440ms
23:	learn: 34.0169260	total: 137ms	remaining: 433ms
24:	learn: 33.7454892	total: 142ms	remaining: 425ms
25:	learn: 33.2648157	total: 147ms	remaining: 418ms
26:	learn: 32.8899427	total: 152ms	remaining: 411ms
27:	learn: 32.6185050	total: 157ms	remaining: 404ms
28:	learn: 32.3528531	total: 162ms	remaining: 397ms
29:	learn: 32.0859923	total: 167ms	remaining: 391ms
30:	learn: 31.6511144	total: 173ms	remaining: 384ms
31:	learn: 31.2571765	total: 178ms	remaining: 377ms
32:	learn: 30.9770049	total: 183ms	remaining: 371ms
33:	learn: 30.6084872	total: 188ms	remaining: 365ms
34:	learn: 30.3448632	total: 193ms	remaining: 359ms
35:	learn: 30.0360942	total: 198ms	remaining: 352ms
36:	learn: 29.6648968	total: 202ms	remaining: 345ms
37:	learn: 29.3165114	total: 207ms	remaining: 337ms
38:	learn: 29.0829198	total: 211ms	remaining: 330ms
39:	learn: 28.7752064	total: 215ms	remaining: 323ms
40:	learn: 28.3622191	total: 219ms	remaining: 316ms
41:	learn: 28.1346631	total: 224ms	remaining: 309ms
42:	learn: 27.9585719	total: 228ms	remaining: 303ms
43:	learn: 27.6565566	total: 233ms	remaining: 296ms
44:	learn: 27.3616172	total: 237ms	remaining: 289ms
45:	learn: 27.0658637	total: 241ms	remaining: 283ms
46:	learn: 26.8660382	total: 246ms	remaining: 277ms
47:	learn: 26.6536078	total: 250ms	remaining: 270ms
48:	learn: 26.3524440	total: 253ms	remaining: 264ms
49:	learn: 26.1595277	total: 258ms	remaining: 258ms
50:	learn: 25.9273523	total: 262ms	remaining: 252ms
51:	learn: 25.7195580	total: 267ms	remaining: 246ms
52:	learn: 25.5730225	total: 271ms	remaining: 240ms
53:	learn: 25.3455276	total: 276ms	remaining: 235ms
54:	learn: 25.2289675	total: 280ms	remaining: 229ms
55:	learn: 25.0133024	total: 285ms	remaining: 224ms
56:	learn: 24.8406714	total: 289ms	remaining: 218ms
57:	learn: 24.6367857	total: 294ms	remaining: 213ms
58:	learn: 24.5338177	total: 302ms	remaining: 210ms
59:	learn: 24.3799964	total: 309ms	remaining: 206ms
60:	learn: 24.1447492	total: 317ms	remaining: 203ms
61:	learn: 23.9880495	total: 325ms	remaining: 199ms
62:	learn: 23.7140630	total: 331ms	remaining: 194ms
63:	learn: 23.5003791	total: 336ms	remaining: 189ms
64:	learn: 23.3207645	total: 341ms	remaining: 184ms
65:	learn: 23.1958356	total: 346ms	remaining: 178ms
66:	learn: 23.0471302	total: 351ms	remaining: 173ms
67:	learn: 22.8977183	total: 357ms	remaining: 168ms
68:	learn: 22.7187400	total: 362ms	remaining: 162ms
69:	learn: 22.6523405	total: 367ms	remaining: 157ms
70:	learn: 22.4767453	total: 372ms	remaining: 152ms
71:	learn: 22.3243677	total: 377ms	remaining: 147ms
72:	learn: 22.2133096	total: 382ms	remaining: 141ms
73:	learn: 22.1151713	total: 386ms	remaining: 136ms
74:	learn: 22.0296666	total: 392ms	remaining: 131ms
75:	learn: 21.9195980	total: 397ms	remaining: 125ms
76:	learn: 21.8401730	total: 402ms	remaining: 120ms
77:	learn: 21.8079797	total: 406ms	remaining: 115ms
78:	learn: 21.7274109	total: 411ms	remaining: 109ms
79:	learn: 21.6663032	total: 416ms	remaining: 104ms
80:	learn: 21.5633117	total: 420ms	remaining: 98.5ms
81:	learn: 21.4542467	total: 424ms	remaining: 93ms
82:	learn: 21.3177957	total: 428ms	remaining: 87.6ms
83:	learn: 21.1289167	total: 432ms	remaining: 82.3ms
84:	learn: 21.0297368	total: 436ms	remaining: 77ms
85:	learn: 20.9089564	total: 441ms	remaining: 71.8ms
86:	learn: 20.7653988	total: 446ms	remaining: 66.6ms
87:	learn: 20.6521894	total: 450ms	remaining: 61.3ms
88:	learn: 20.5193021	total: 454ms	remaining: 56.1ms
89:	learn: 20.4361620	total: 459ms	remaining: 51ms
90:	learn: 20.3546710	total: 464ms	remaining: 45.9ms
91:	learn: 20.2513296	total: 469ms	remaining: 40.8ms
92:	learn: 20.1605550	total: 473ms	remaining: 35.6ms
93:	learn: 20.0515942	total: 478ms	remaining: 30.5ms
94:	learn: 19.9800764	total: 484ms	remaining: 25.5ms
95:	learn: 19.8996532	total: 489ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 497ms	remaining: 15.4ms
97:	learn: 19.7887346	total: 505ms	remaining: 10.3ms
98:	learn: 19.7230872	total: 514ms	remaining: 5.19ms
99:	learn: 19.6328825	total: 519ms	remaining: 0us
0:	learn: 27.3776612	total: 22.6ms	remaining: 2.23s
1:	learn: 26.7619003	total: 46ms	remaining: 2.25s
2:	learn: 26.0057626	total: 68ms	remaining: 2.2s
3:	learn: 25.4280982	total: 89ms	remaining: 2.14s
4:	learn: 24.8347609	total: 112ms	remaining: 2.12s
5:	learn: 24.2526574	total: 135ms	remaining: 2.11s
6:	learn: 23.7478806	total: 168ms	remaining: 2.23s
7:	learn: 23.2677666	total: 195ms	remaining: 2.24s
8:	learn: 22.7564310	total: 219ms	remaining: 2.21s
9:	learn: 22.2873770	total: 244ms	remaining: 2.19s
10:	learn: 21.8088174	total: 273ms	remaining: 2.21s
11:	learn: 21.4086875	total: 296ms	remaining: 2.17s
12:	learn: 20.9489217	total: 319ms	remaining: 2.13s
13:	learn: 20.4585233	total: 343ms	remaining: 2.1s
14:	learn: 20.0177760	total: 372ms	remaining: 2.1s
15:	learn: 19.5981890	total: 400ms	remaining: 2.1s
16:	learn: 19.2041885	total: 424ms	remaining: 2.07s
17:	learn: 18.8422550	total: 448ms	remaining: 2.04s
18:	learn: 18.4774037	total: 471ms	remaining: 2.01s
19:	learn: 18.0931699	total: 496ms	remaining: 1.98s
20:	learn: 17.6856423	total: 525ms	remaining: 1.98s
21:	learn: 17.3394010	total: 547ms	remaining: 1.94s
22:	learn: 17.0165204	total: 569ms	remaining: 1.91s
23:	learn: 16.7728230	total: 599ms	remaining: 1.9s
24:	learn: 16.5020155	total: 626ms	remaining: 1.88s
25:	learn: 16.2110813	total: 651ms	remaining: 1.85s
26:	learn: 15.9439416	total: 675ms	remaining: 1.82s
27:	learn: 15.6605702	total: 699ms	remaining: 1.8s
28:	learn: 15.4180978	total: 723ms	remaining: 1.77s
29:	learn: 15.1463921	total: 745ms	remaining: 1.74s
30:	learn: 14.8961946	total: 768ms	remaining: 1.71s
31:	learn: 14.6763296	total: 791ms	remaining: 1.68s
32:	learn: 14.4161484	total: 825ms	remaining: 1.67s
33:	learn: 14.1748686	total: 850ms	remaining: 1.65s
34:	learn: 13.9722494	total: 873ms	remaining: 1.62s
35:	learn: 13.7632896	total: 897ms	remaining: 1.59s
36:	learn: 13.5572592	total: 920ms	remaining: 1.57s
37:	learn: 13.3896577	total: 943ms	remaining: 1.54s
38:	learn: 13.2796441	total: 964ms	remaining: 1.51s
39:	learn: 13.0896679	total: 986ms	remaining: 1.48s
40:	learn: 12.8898238	total: 1.01s	remaining: 1.45s
41:	learn: 12.6824069	total: 1.04s	remaining: 1.44s
42:	learn: 12.5459667	total: 1.06s	remaining: 1.41s
43:	learn: 12.3859203	total: 1.09s	remaining: 1.38s
44:	learn: 12.2099364	total: 1.11s	remaining: 1.36s
45:	learn: 12.0649044	total: 1.13s	remaining: 1.33s
46:	learn: 11.8934147	total: 1.15s	remaining: 1.3s
47:	learn: 11.7212144	total: 1.17s	remaining: 1.27s
48:	learn: 11.5585360	total: 1.2s	remaining: 1.25s
49:	learn: 11.4204354	total: 1.22s	remaining: 1.22s
50:	learn: 11.3264427	total: 1.25s	remaining: 1.2s
51:	learn: 11.2063486	total: 1.28s	remaining: 1.18s
52:	learn: 11.0712206	total: 1.3s	remaining: 1.15s
53:	learn: 10.9205088	total: 1.32s	remaining: 1.13s
54:	learn: 10.8155412	total: 1.35s	remaining: 1.1s
55:	learn: 10.7286854	total: 1.37s	remaining: 1.08s
56:	learn: 10.6088466	total: 1.4s	remaining: 1.05s
57:	learn: 10.4999885	total: 1.42s	remaining: 1.03s
58:	learn: 10.4022194	total: 1.44s	remaining: 1s
59:	learn: 10.3147130	total: 1.48s	remaining: 984ms
60:	learn: 10.2011489	total: 1.5s	remaining: 959ms
61:	learn: 10.1094372	total: 1.52s	remaining: 933ms
62:	learn: 10.0248970	total: 1.54s	remaining: 907ms
63:	learn: 9.9192710	total: 1.57s	remaining: 881ms
64:	learn: 9.8577360	total: 1.59s	remaining: 856ms
65:	learn: 9.7737103	total: 1.61s	remaining: 830ms
66:	learn: 9.6706617	total: 1.63s	remaining: 805ms
67:	learn: 9.6042727	total: 1.66s	remaining: 780ms
68:	learn: 9.5355377	total: 1.68s	remaining: 757ms
69:	learn: 9.4615216	total: 1.71s	remaining: 732ms
70:	learn: 9.3702045	total: 1.73s	remaining: 707ms
71:	learn: 9.3035392	total: 1.76s	remaining: 683ms
72:	learn: 9.2322686	total: 1.78s	remaining: 658ms
73:	learn: 9.1431916	total: 1.8s	remaining: 633ms
74:	learn: 9.0869466	total: 1.82s	remaining: 607ms
75:	learn: 9.0117390	total: 1.84s	remaining: 581ms
76:	learn: 8.9580443	total: 1.86s	remaining: 556ms
77:	learn: 8.8649939	total: 1.89s	remaining: 534ms
78:	learn: 8.7792713	total: 1.92s	remaining: 510ms
79:	learn: 8.7164606	total: 1.94s	remaining: 485ms
80:	learn: 8.6340559	total: 1.96s	remaining: 461ms
81:	learn: 8.5697104	total: 1.99s	remaining: 436ms
82:	learn: 8.5273758	total: 2.01s	remaining: 411ms
83:	learn: 8.4394788	total: 2.03s	remaining: 386ms
84:	learn: 8.3672415	total: 2.05s	remaining: 362ms
85:	learn: 8.2813444	total: 2.07s	remaining: 337ms
86:	learn: 8.1994983	total: 2.1s	remaining: 313ms
87:	learn: 8.1003577	total: 2.12s	remaining: 290ms
88:	learn: 8.0501976	total: 2.15s	remaining: 265ms
89:	learn: 7.9718830	total: 2.17s	remaining: 241ms
90:	learn: 7.9114534	total: 2.19s	remaining: 217ms
91:	learn: 7.8319856	total: 2.21s	remaining: 193ms
92:	learn: 7.7731246	total: 2.23s	remaining: 168ms
93:	learn: 7.7165850	total: 2.25s	remaining: 144ms
94:	learn: 7.6448498	total: 2.27s	remaining: 120ms
95:	learn: 7.5709919	total: 2.3s	remaining: 95.7ms
96:	learn: 7.5184082	total: 2.33s	remaining: 72ms
97:	learn: 7.4786866	total: 2.35s	remaining: 48ms
98:	learn: 7.4301201	total: 2.38s	remaining: 24ms
99:	learn: 7.3416932	total: 2.4s	remaining: 0us
0:	learn: 42.6391731	total: 19.3ms	remaining: 1.91s
1:	learn: 41.2755994	total: 43.3ms	remaining: 2.12s
2:	learn: 40.1418308	total: 65.3ms	remaining: 2.11s
3:	learn: 38.9707156	total: 92.7ms	remaining: 2.22s
4:	learn: 37.8723622	total: 116ms	remaining: 2.2s
5:	learn: 36.6981834	total: 140ms	remaining: 2.19s
6:	learn: 35.6210108	total: 162ms	remaining: 2.15s
7:	learn: 34.5154078	total: 186ms	remaining: 2.13s
8:	learn: 33.4581011	total: 206ms	remaining: 2.08s
9:	learn: 32.5872455	total: 226ms	remaining: 2.03s
10:	learn: 31.6311510	total: 248ms	remaining: 2.01s
11:	learn: 30.8222401	total: 270ms	remaining: 1.98s
12:	learn: 29.9305192	total: 299ms	remaining: 2s
13:	learn: 29.0742133	total: 323ms	remaining: 1.98s
14:	learn: 28.3687544	total: 346ms	remaining: 1.96s
15:	learn: 27.5730558	total: 368ms	remaining: 1.93s
16:	learn: 26.9376082	total: 391ms	remaining: 1.91s
17:	learn: 26.2254949	total: 413ms	remaining: 1.88s
18:	learn: 25.5974939	total: 435ms	remaining: 1.85s
19:	learn: 25.0097187	total: 458ms	remaining: 1.83s
20:	learn: 24.3722243	total: 478ms	remaining: 1.8s
21:	learn: 23.8249140	total: 507ms	remaining: 1.8s
22:	learn: 23.3953969	total: 532ms	remaining: 1.78s
23:	learn: 22.8726238	total: 555ms	remaining: 1.76s
24:	learn: 22.3407723	total: 578ms	remaining: 1.73s
25:	learn: 21.8360330	total: 601ms	remaining: 1.71s
26:	learn: 21.4050665	total: 605ms	remaining: 1.63s
27:	learn: 20.9389245	total: 626ms	remaining: 1.61s
28:	learn: 20.5166767	total: 646ms	remaining: 1.58s
29:	learn: 20.1190641	total: 667ms	remaining: 1.56s
30:	learn: 19.7189491	total: 689ms	remaining: 1.53s
31:	learn: 19.3748181	total: 712ms	remaining: 1.51s
32:	learn: 19.0116312	total: 741ms	remaining: 1.5s
33:	learn: 18.6982407	total: 764ms	remaining: 1.48s
34:	learn: 18.3109965	total: 786ms	remaining: 1.46s
35:	learn: 17.9620798	total: 808ms	remaining: 1.44s
36:	learn: 17.6396740	total: 830ms	remaining: 1.41s
37:	learn: 17.3596962	total: 849ms	remaining: 1.39s
38:	learn: 17.0107107	total: 868ms	remaining: 1.36s
39:	learn: 16.7000770	total: 887ms	remaining: 1.33s
40:	learn: 16.4406609	total: 899ms	remaining: 1.29s
41:	learn: 16.2482533	total: 920ms	remaining: 1.27s
42:	learn: 16.0039366	total: 951ms	remaining: 1.26s
43:	learn: 15.7538572	total: 974ms	remaining: 1.24s
44:	learn: 15.5095380	total: 996ms	remaining: 1.22s
45:	learn: 15.2678319	total: 1.02s	remaining: 1.2s
46:	learn: 15.0494495	total: 1.04s	remaining: 1.17s
47:	learn: 14.8347400	total: 1.06s	remaining: 1.15s
48:	learn: 14.6035398	total: 1.08s	remaining: 1.12s
49:	learn: 14.3913639	total: 1.1s	remaining: 1.1s
50:	learn: 14.1928022	total: 1.12s	remaining: 1.08s
51:	learn: 13.9985580	total: 1.15s	remaining: 1.06s
52:	learn: 13.8322220	total: 1.17s	remaining: 1.04s
53:	learn: 13.6455937	total: 1.2s	remaining: 1.02s
54:	learn: 13.4402019	total: 1.22s	remaining: 996ms
55:	learn: 13.2899163	total: 1.24s	remaining: 973ms
56:	learn: 13.1694614	total: 1.26s	remaining: 950ms
57:	learn: 13.0722892	total: 1.28s	remaining: 926ms
58:	learn: 12.9065251	total: 1.3s	remaining: 903ms
59:	learn: 12.6992885	total: 1.32s	remaining: 880ms
60:	learn: 12.5384562	total: 1.34s	remaining: 857ms
61:	learn: 12.4105591	total: 1.37s	remaining: 840ms
62:	learn: 12.2952504	total: 1.4s	remaining: 820ms
63:	learn: 12.1427365	total: 1.42s	remaining: 797ms
64:	learn: 11.9954361	total: 1.44s	remaining: 775ms
65:	learn: 11.8161234	total: 1.46s	remaining: 752ms
66:	learn: 11.6849978	total: 1.48s	remaining: 730ms
67:	learn: 11.5405300	total: 1.5s	remaining: 706ms
68:	learn: 11.3806762	total: 1.52s	remaining: 682ms
69:	learn: 11.2746848	total: 1.54s	remaining: 660ms
70:	learn: 11.1518256	total: 1.56s	remaining: 637ms
71:	learn: 11.0730779	total: 1.59s	remaining: 617ms
72:	learn: 10.9736725	total: 1.61s	remaining: 596ms
73:	learn: 10.8430563	total: 1.63s	remaining: 574ms
74:	learn: 10.7142220	total: 1.66s	remaining: 552ms
75:	learn: 10.6141640	total: 1.68s	remaining: 530ms
76:	learn: 10.5264853	total: 1.7s	remaining: 508ms
77:	learn: 10.3929390	total: 1.72s	remaining: 485ms
78:	learn: 10.3163176	total: 1.74s	remaining: 462ms
79:	learn: 10.2171240	total: 1.76s	remaining: 440ms
80:	learn: 10.1381738	total: 1.78s	remaining: 418ms
81:	learn: 10.0402437	total: 1.81s	remaining: 397ms
82:	learn: 9.9223565	total: 1.83s	remaining: 375ms
83:	learn: 9.8184057	total: 1.85s	remaining: 353ms
84:	learn: 9.7221978	total: 1.88s	remaining: 331ms
85:	learn: 9.6417031	total: 1.9s	remaining: 309ms
86:	learn: 9.5593969	total: 1.92s	remaining: 287ms
87:	learn: 9.4678992	total: 1.94s	remaining: 264ms
88:	learn: 9.3855757	total: 1.96s	remaining: 242ms
89:	learn: 9.2884031	total: 1.98s	remaining: 220ms
90:	learn: 9.2099382	total: 2s	remaining: 198ms
91:	learn: 9.1357061	total: 2.03s	remaining: 176ms
92:	learn: 9.0690328	total: 2.05s	remaining: 155ms
93:	learn: 8.9904694	total: 2.07s	remaining: 132ms
94:	learn: 8.9256893	total: 2.1s	remaining: 110ms
95:	learn: 8.8600084	total: 2.12s	remaining: 88.3ms
96:	learn: 8.8091154	total: 2.14s	remaining: 66.1ms
97:	learn: 8.7280528	total: 2.16s	remaining: 44ms
98:	learn: 8.6761440	total: 2.17s	remaining: 22ms
99:	learn: 8.6181192	total: 2.2s	remaining: 0us
0:	learn: 45.9988128	total: 21.7ms	remaining: 2.14s
1:	learn: 44.7653841	total: 43.4ms	remaining: 2.13s
2:	learn: 43.4693688	total: 64.1ms	remaining: 2.07s
3:	learn: 42.2495168	total: 83.1ms	remaining: 1.99s
4:	learn: 41.2273909	total: 102ms	remaining: 1.95s
5:	learn: 40.0623352	total: 121ms	remaining: 1.89s
6:	learn: 39.0139162	total: 148ms	remaining: 1.96s
7:	learn: 37.9905503	total: 171ms	remaining: 1.97s
8:	learn: 37.1460179	total: 202ms	remaining: 2.04s
9:	learn: 36.1321769	total: 229ms	remaining: 2.06s
10:	learn: 35.2434048	total: 253ms	remaining: 2.05s
11:	learn: 34.3919476	total: 276ms	remaining: 2.02s
12:	learn: 33.5464400	total: 299ms	remaining: 2s
13:	learn: 32.5752711	total: 323ms	remaining: 1.98s
14:	learn: 31.8573507	total: 347ms	remaining: 1.97s
15:	learn: 31.1481980	total: 370ms	remaining: 1.94s
16:	learn: 30.4578224	total: 397ms	remaining: 1.94s
17:	learn: 29.8404841	total: 427ms	remaining: 1.95s
18:	learn: 29.1314604	total: 459ms	remaining: 1.96s
19:	learn: 28.5024706	total: 483ms	remaining: 1.93s
20:	learn: 27.9368896	total: 507ms	remaining: 1.91s
21:	learn: 27.2136491	total: 528ms	remaining: 1.87s
22:	learn: 26.6230078	total: 549ms	remaining: 1.84s
23:	learn: 26.0604635	total: 570ms	remaining: 1.8s
24:	learn: 25.6309424	total: 593ms	remaining: 1.78s
25:	learn: 25.1761698	total: 617ms	remaining: 1.75s
26:	learn: 24.6368216	total: 648ms	remaining: 1.75s
27:	learn: 24.1028972	total: 674ms	remaining: 1.73s
28:	learn: 23.3990224	total: 698ms	remaining: 1.71s
29:	learn: 22.9088559	total: 730ms	remaining: 1.7s
30:	learn: 22.4793217	total: 755ms	remaining: 1.68s
31:	learn: 22.0592669	total: 776ms	remaining: 1.65s
32:	learn: 21.6715811	total: 799ms	remaining: 1.62s
33:	learn: 21.1907911	total: 823ms	remaining: 1.6s
34:	learn: 20.8045504	total: 849ms	remaining: 1.58s
35:	learn: 20.4670784	total: 878ms	remaining: 1.56s
36:	learn: 20.0165788	total: 902ms	remaining: 1.54s
37:	learn: 19.6859173	total: 927ms	remaining: 1.51s
38:	learn: 19.3641283	total: 950ms	remaining: 1.49s
39:	learn: 19.0291194	total: 982ms	remaining: 1.47s
40:	learn: 18.7204204	total: 1s	remaining: 1.45s
41:	learn: 18.4000101	total: 1.03s	remaining: 1.42s
42:	learn: 18.0910445	total: 1.06s	remaining: 1.4s
43:	learn: 17.8354609	total: 1.08s	remaining: 1.38s
44:	learn: 17.4982243	total: 1.11s	remaining: 1.36s
45:	learn: 17.1895897	total: 1.13s	remaining: 1.33s
46:	learn: 16.9440833	total: 1.16s	remaining: 1.31s
47:	learn: 16.6112102	total: 1.18s	remaining: 1.28s
48:	learn: 16.3320235	total: 1.2s	remaining: 1.25s
49:	learn: 16.0523610	total: 1.23s	remaining: 1.23s
50:	learn: 15.8256738	total: 1.26s	remaining: 1.21s
51:	learn: 15.5699393	total: 1.29s	remaining: 1.19s
52:	learn: 15.3531799	total: 1.31s	remaining: 1.17s
53:	learn: 15.1364230	total: 1.34s	remaining: 1.14s
54:	learn: 15.0012063	total: 1.36s	remaining: 1.11s
55:	learn: 14.7171740	total: 1.39s	remaining: 1.09s
56:	learn: 14.5897576	total: 1.39s	remaining: 1.05s
57:	learn: 14.3886878	total: 1.41s	remaining: 1.02s
58:	learn: 14.1942115	total: 1.43s	remaining: 997ms
59:	learn: 14.0135398	total: 1.47s	remaining: 977ms
60:	learn: 13.8118263	total: 1.49s	remaining: 954ms
61:	learn: 13.6444047	total: 1.52s	remaining: 934ms
62:	learn: 13.4728078	total: 1.55s	remaining: 909ms
63:	learn: 13.3104934	total: 1.57s	remaining: 884ms
64:	learn: 13.1385144	total: 1.59s	remaining: 858ms
65:	learn: 13.0087777	total: 1.61s	remaining: 832ms
66:	learn: 12.8457835	total: 1.64s	remaining: 807ms
67:	learn: 12.6975263	total: 1.67s	remaining: 786ms
68:	learn: 12.5582839	total: 1.7s	remaining: 763ms
69:	learn: 12.4210776	total: 1.72s	remaining: 738ms
70:	learn: 12.2737286	total: 1.75s	remaining: 713ms
71:	learn: 12.1587075	total: 1.77s	remaining: 688ms
72:	learn: 12.0323022	total: 1.8s	remaining: 666ms
73:	learn: 11.8667900	total: 1.82s	remaining: 640ms
74:	learn: 11.6990385	total: 1.85s	remaining: 615ms
75:	learn: 11.5755058	total: 1.87s	remaining: 591ms
76:	learn: 11.4954152	total: 1.9s	remaining: 568ms
77:	learn: 11.3827464	total: 1.93s	remaining: 544ms
78:	learn: 11.2924968	total: 1.95s	remaining: 519ms
79:	learn: 11.1938217	total: 1.98s	remaining: 494ms
80:	learn: 11.0766477	total: 2s	remaining: 469ms
81:	learn: 10.9824487	total: 2.02s	remaining: 444ms
82:	learn: 10.8707168	total: 2.05s	remaining: 420ms
83:	learn: 10.7746205	total: 2.08s	remaining: 395ms
84:	learn: 10.6738461	total: 2.11s	remaining: 372ms
85:	learn: 10.5871227	total: 2.13s	remaining: 347ms
86:	learn: 10.4566607	total: 2.16s	remaining: 322ms
87:	learn: 10.3506633	total: 2.18s	remaining: 297ms
88:	learn: 10.2104644	total: 2.21s	remaining: 273ms
89:	learn: 10.0965839	total: 2.23s	remaining: 248ms
90:	learn: 9.9802927	total: 2.25s	remaining: 223ms
91:	learn: 9.9195276	total: 2.27s	remaining: 198ms
92:	learn: 9.8559698	total: 2.31s	remaining: 174ms
93:	learn: 9.7396780	total: 2.34s	remaining: 149ms
94:	learn: 9.6945725	total: 2.36s	remaining: 124ms
95:	learn: 9.5897565	total: 2.39s	remaining: 99.5ms
96:	learn: 9.5012011	total: 2.41s	remaining: 74.6ms
97:	learn: 9.4123715	total: 2.44s	remaining: 49.7ms
98:	learn: 9.3288366	total: 2.46s	remaining: 24.8ms
99:	learn: 9.2648715	total: 2.48s	remaining: 0us
0:	learn: 45.5336925	total: 29.5ms	remaining: 2.92s
1:	learn: 44.2714175	total: 52.3ms	remaining: 2.56s
2:	learn: 43.1477944	total: 76.9ms	remaining: 2.49s
3:	learn: 41.9891776	total: 111ms	remaining: 2.66s
4:	learn: 41.0638986	total: 133ms	remaining: 2.53s
5:	learn: 39.9800801	total: 154ms	remaining: 2.41s
6:	learn: 38.9048061	total: 175ms	remaining: 2.32s
7:	learn: 38.0749429	total: 196ms	remaining: 2.25s
8:	learn: 37.3966644	total: 218ms	remaining: 2.21s
9:	learn: 36.4671331	total: 240ms	remaining: 2.16s
10:	learn: 35.6649217	total: 261ms	remaining: 2.11s
11:	learn: 34.8793657	total: 283ms	remaining: 2.08s
12:	learn: 34.0737401	total: 311ms	remaining: 2.08s
13:	learn: 33.2560999	total: 357ms	remaining: 2.19s
14:	learn: 32.4184623	total: 382ms	remaining: 2.16s
15:	learn: 31.6803206	total: 407ms	remaining: 2.13s
16:	learn: 30.9276344	total: 428ms	remaining: 2.09s
17:	learn: 30.3590041	total: 449ms	remaining: 2.05s
18:	learn: 29.7789888	total: 471ms	remaining: 2s
19:	learn: 29.1098261	total: 494ms	remaining: 1.97s
20:	learn: 28.4824889	total: 518ms	remaining: 1.95s
21:	learn: 27.9675744	total: 549ms	remaining: 1.95s
22:	learn: 27.4793215	total: 574ms	remaining: 1.92s
23:	learn: 26.8920542	total: 600ms	remaining: 1.9s
24:	learn: 26.2736657	total: 631ms	remaining: 1.89s
25:	learn: 25.6908003	total: 654ms	remaining: 1.86s
26:	learn: 25.1288844	total: 675ms	remaining: 1.82s
27:	learn: 24.6933320	total: 697ms	remaining: 1.79s
28:	learn: 24.1372567	total: 721ms	remaining: 1.76s
29:	learn: 23.7103515	total: 748ms	remaining: 1.75s
30:	learn: 23.1647499	total: 777ms	remaining: 1.73s
31:	learn: 22.7009216	total: 801ms	remaining: 1.7s
32:	learn: 22.2792229	total: 826ms	remaining: 1.68s
33:	learn: 21.8004244	total: 850ms	remaining: 1.65s
34:	learn: 21.3578361	total: 871ms	remaining: 1.62s
35:	learn: 21.0262832	total: 901ms	remaining: 1.6s
36:	learn: 20.5787502	total: 922ms	remaining: 1.57s
37:	learn: 20.3083055	total: 945ms	remaining: 1.54s
38:	learn: 19.9902529	total: 973ms	remaining: 1.52s
39:	learn: 19.6059571	total: 999ms	remaining: 1.5s
40:	learn: 19.3890959	total: 1.02s	remaining: 1.47s
41:	learn: 19.0549255	total: 1.05s	remaining: 1.44s
42:	learn: 18.7283215	total: 1.07s	remaining: 1.42s
43:	learn: 18.4448725	total: 1.09s	remaining: 1.39s
44:	learn: 18.1578001	total: 1.11s	remaining: 1.36s
45:	learn: 17.8777474	total: 1.15s	remaining: 1.34s
46:	learn: 17.6428221	total: 1.17s	remaining: 1.32s
47:	learn: 17.3887752	total: 1.2s	remaining: 1.3s
48:	learn: 17.1475761	total: 1.23s	remaining: 1.28s
49:	learn: 16.9064363	total: 1.25s	remaining: 1.25s
50:	learn: 16.6414681	total: 1.27s	remaining: 1.22s
51:	learn: 16.4549974	total: 1.3s	remaining: 1.2s
52:	learn: 16.2617558	total: 1.32s	remaining: 1.17s
53:	learn: 16.0258241	total: 1.34s	remaining: 1.14s
54:	learn: 15.7694686	total: 1.36s	remaining: 1.12s
55:	learn: 15.5449602	total: 1.39s	remaining: 1.09s
56:	learn: 15.3515330	total: 1.43s	remaining: 1.08s
57:	learn: 15.1120403	total: 1.45s	remaining: 1.05s
58:	learn: 14.9131368	total: 1.48s	remaining: 1.03s
59:	learn: 14.8021921	total: 1.5s	remaining: 1s
60:	learn: 14.6564259	total: 1.52s	remaining: 975ms
61:	learn: 14.5253260	total: 1.55s	remaining: 948ms
62:	learn: 14.3975427	total: 1.57s	remaining: 921ms
63:	learn: 14.3060204	total: 1.6s	remaining: 898ms
64:	learn: 14.1283681	total: 1.63s	remaining: 876ms
65:	learn: 14.0159063	total: 1.65s	remaining: 850ms
66:	learn: 13.8712541	total: 1.68s	remaining: 828ms
67:	learn: 13.7852998	total: 1.71s	remaining: 802ms
68:	learn: 13.6790164	total: 1.73s	remaining: 775ms
69:	learn: 13.5253745	total: 1.75s	remaining: 749ms
70:	learn: 13.3959663	total: 1.77s	remaining: 722ms
71:	learn: 13.2062955	total: 1.79s	remaining: 698ms
72:	learn: 13.0788709	total: 1.82s	remaining: 674ms
73:	learn: 12.9513184	total: 1.85s	remaining: 649ms
74:	learn: 12.8198556	total: 1.87s	remaining: 624ms
75:	learn: 12.7137549	total: 1.89s	remaining: 598ms
76:	learn: 12.6243477	total: 1.92s	remaining: 573ms
77:	learn: 12.5241564	total: 1.95s	remaining: 550ms
78:	learn: 12.4445782	total: 1.97s	remaining: 524ms
79:	learn: 12.3816501	total: 2s	remaining: 501ms
80:	learn: 12.2846914	total: 2.03s	remaining: 477ms
81:	learn: 12.1419498	total: 2.06s	remaining: 451ms
82:	learn: 12.0846494	total: 2.08s	remaining: 426ms
83:	learn: 11.9851484	total: 2.1s	remaining: 400ms
84:	learn: 11.8905738	total: 2.12s	remaining: 375ms
85:	learn: 11.7718790	total: 2.15s	remaining: 349ms
86:	learn: 11.6854413	total: 2.17s	remaining: 324ms
87:	learn: 11.6206110	total: 2.19s	remaining: 299ms
88:	learn: 11.5376098	total: 2.23s	remaining: 275ms
89:	learn: 11.4235068	total: 2.26s	remaining: 251ms
90:	learn: 11.3477955	total: 2.29s	remaining: 226ms
91:	learn: 11.2663772	total: 2.31s	remaining: 201ms
92:	learn: 11.1916556	total: 2.33s	remaining: 176ms
93:	learn: 11.0921504	total: 2.36s	remaining: 150ms
94:	learn: 10.9622375	total: 2.38s	remaining: 125ms
95:	learn: 10.8882085	total: 2.4s	remaining: 99.9ms
96:	learn: 10.8086218	total: 2.42s	remaining: 74.9ms
97:	learn: 10.7552220	total: 2.45s	remaining: 50ms
98:	learn: 10.6929666	total: 2.49s	remaining: 25.1ms
99:	learn: 10.6200033	total: 2.51s	remaining: 0us
0:	learn: 46.3366259	total: 21.2ms	remaining: 2.1s
1:	learn: 45.2205278	total: 42.8ms	remaining: 2.1s
2:	learn: 43.9887404	total: 64.6ms	remaining: 2.09s
3:	learn: 42.8240666	total: 95.4ms	remaining: 2.29s
4:	learn: 41.6086617	total: 121ms	remaining: 2.31s
5:	learn: 40.5606446	total: 146ms	remaining: 2.29s
6:	learn: 39.6241326	total: 169ms	remaining: 2.25s
7:	learn: 39.0016852	total: 192ms	remaining: 2.21s
8:	learn: 37.8501670	total: 215ms	remaining: 2.17s
9:	learn: 37.0215474	total: 244ms	remaining: 2.2s
10:	learn: 36.0215020	total: 268ms	remaining: 2.17s
11:	learn: 35.2421331	total: 292ms	remaining: 2.14s
12:	learn: 34.5416837	total: 323ms	remaining: 2.16s
13:	learn: 33.7787649	total: 348ms	remaining: 2.14s
14:	learn: 32.9860883	total: 371ms	remaining: 2.1s
15:	learn: 32.2123752	total: 396ms	remaining: 2.08s
16:	learn: 31.3564648	total: 421ms	remaining: 2.05s
17:	learn: 30.7859979	total: 443ms	remaining: 2.02s
18:	learn: 30.1443515	total: 463ms	remaining: 1.98s
19:	learn: 29.4880724	total: 494ms	remaining: 1.98s
20:	learn: 28.9635727	total: 523ms	remaining: 1.97s
21:	learn: 28.4853342	total: 552ms	remaining: 1.96s
22:	learn: 27.9796348	total: 575ms	remaining: 1.93s
23:	learn: 27.4360487	total: 600ms	remaining: 1.9s
24:	learn: 26.8685214	total: 624ms	remaining: 1.87s
25:	learn: 26.1769206	total: 647ms	remaining: 1.84s
26:	learn: 25.7146048	total: 668ms	remaining: 1.81s
27:	learn: 25.2614850	total: 689ms	remaining: 1.77s
28:	learn: 24.6626472	total: 712ms	remaining: 1.74s
29:	learn: 24.2501259	total: 736ms	remaining: 1.72s
30:	learn: 23.7892661	total: 773ms	remaining: 1.72s
31:	learn: 23.2729078	total: 797ms	remaining: 1.69s
32:	learn: 22.8969731	total: 821ms	remaining: 1.67s
33:	learn: 22.4567570	total: 845ms	remaining: 1.64s
34:	learn: 22.0569858	total: 868ms	remaining: 1.61s
35:	learn: 21.7317775	total: 889ms	remaining: 1.58s
36:	learn: 21.3890971	total: 912ms	remaining: 1.55s
37:	learn: 21.0664504	total: 936ms	remaining: 1.53s
38:	learn: 20.7379659	total: 964ms	remaining: 1.51s
39:	learn: 20.4423699	total: 995ms	remaining: 1.49s
40:	learn: 20.1526720	total: 1.02s	remaining: 1.47s
41:	learn: 19.8706547	total: 1.05s	remaining: 1.45s
42:	learn: 19.5139134	total: 1.08s	remaining: 1.43s
43:	learn: 19.3495951	total: 1.1s	remaining: 1.4s
44:	learn: 19.1314757	total: 1.12s	remaining: 1.37s
45:	learn: 18.7971159	total: 1.14s	remaining: 1.34s
46:	learn: 18.5447051	total: 1.16s	remaining: 1.31s
47:	learn: 18.2328785	total: 1.2s	remaining: 1.29s
48:	learn: 17.9622938	total: 1.22s	remaining: 1.27s
49:	learn: 17.7264205	total: 1.24s	remaining: 1.24s
50:	learn: 17.4530592	total: 1.27s	remaining: 1.22s
51:	learn: 17.2236644	total: 1.3s	remaining: 1.2s
52:	learn: 17.0122792	total: 1.32s	remaining: 1.17s
53:	learn: 16.7599064	total: 1.34s	remaining: 1.15s
54:	learn: 16.5146699	total: 1.37s	remaining: 1.12s
55:	learn: 16.2531414	total: 1.39s	remaining: 1.09s
56:	learn: 16.0997208	total: 1.42s	remaining: 1.07s
57:	learn: 15.8452412	total: 1.45s	remaining: 1.05s
58:	learn: 15.6294900	total: 1.47s	remaining: 1.02s
59:	learn: 15.4564548	total: 1.5s	remaining: 998ms
60:	learn: 15.2978533	total: 1.52s	remaining: 973ms
61:	learn: 15.0976912	total: 1.54s	remaining: 946ms
62:	learn: 14.9094446	total: 1.57s	remaining: 925ms
63:	learn: 14.7415094	total: 1.6s	remaining: 899ms
64:	learn: 14.6123806	total: 1.63s	remaining: 876ms
65:	learn: 14.4744916	total: 1.65s	remaining: 853ms
66:	learn: 14.3212717	total: 1.68s	remaining: 827ms
67:	learn: 14.1768047	total: 1.7s	remaining: 801ms
68:	learn: 14.0387344	total: 1.73s	remaining: 775ms
69:	learn: 13.8987579	total: 1.75s	remaining: 749ms
70:	learn: 13.7825740	total: 1.77s	remaining: 722ms
71:	learn: 13.6818548	total: 1.79s	remaining: 696ms
72:	learn: 13.5356993	total: 1.82s	remaining: 673ms
73:	learn: 13.4408704	total: 1.84s	remaining: 648ms
74:	learn: 13.2992218	total: 1.87s	remaining: 625ms
75:	learn: 13.1547092	total: 1.9s	remaining: 599ms
76:	learn: 13.0800189	total: 1.92s	remaining: 573ms
77:	learn: 12.9434711	total: 1.94s	remaining: 548ms
78:	learn: 12.8327325	total: 1.97s	remaining: 523ms
79:	learn: 12.7238946	total: 1.99s	remaining: 498ms
80:	learn: 12.6229528	total: 2.02s	remaining: 473ms
81:	learn: 12.5216078	total: 2.04s	remaining: 447ms
82:	learn: 12.4182254	total: 2.07s	remaining: 424ms
83:	learn: 12.3097978	total: 2.1s	remaining: 400ms
84:	learn: 12.1852056	total: 2.13s	remaining: 375ms
85:	learn: 12.0739627	total: 2.15s	remaining: 350ms
86:	learn: 11.9475583	total: 2.17s	remaining: 325ms
87:	learn: 11.8403806	total: 2.19s	remaining: 299ms
88:	learn: 11.7294124	total: 2.21s	remaining: 274ms
89:	learn: 11.6395689	total: 2.24s	remaining: 249ms
90:	learn: 11.5510643	total: 2.26s	remaining: 224ms
91:	learn: 11.4455301	total: 2.29s	remaining: 199ms
92:	learn: 11.3368661	total: 2.32s	remaining: 174ms
93:	learn: 11.2270796	total: 2.34s	remaining: 149ms
94:	learn: 11.1168414	total: 2.37s	remaining: 125ms
95:	learn: 11.0310985	total: 2.4s	remaining: 99.8ms
96:	learn: 10.9735185	total: 2.42s	remaining: 74.8ms
97:	learn: 10.8575874	total: 2.44s	remaining: 49.8ms
98:	learn: 10.7816173	total: 2.46s	remaining: 24.9ms
99:	learn: 10.7111737	total: 2.49s	remaining: 0us
avg_Mae_val de la población en la generación 9: 18.156907929681456 con std media = 9.093334575521716
Mae_val del Mejor modelo en la generación 9: 17.7789 con std = 9.1097
0:	learn: 27.5585353	total: 5.48ms	remaining: 543ms
1:	learn: 27.1656995	total: 10.7ms	remaining: 525ms
2:	learn: 26.8590175	total: 15.7ms	remaining: 508ms
3:	learn: 26.5818406	total: 20.4ms	remaining: 490ms
4:	learn: 26.1148663	total: 25.6ms	remaining: 486ms
5:	learn: 25.7690484	total: 30.9ms	remaining: 484ms
6:	learn: 25.3489206	total: 35.9ms	remaining: 477ms
7:	learn: 24.9542406	total: 40.5ms	remaining: 466ms
8:	learn: 24.6777517	total: 44.9ms	remaining: 454ms
9:	learn: 24.3242344	total: 49.3ms	remaining: 444ms
10:	learn: 24.0383073	total: 53.6ms	remaining: 434ms
11:	learn: 23.7383420	total: 57.8ms	remaining: 424ms
12:	learn: 23.3461670	total: 62ms	remaining: 415ms
13:	learn: 23.0928636	total: 66.2ms	remaining: 407ms
14:	learn: 22.8770414	total: 70.5ms	remaining: 400ms
15:	learn: 22.6323214	total: 74.5ms	remaining: 391ms
16:	learn: 22.3597072	total: 78.8ms	remaining: 385ms
17:	learn: 22.1079813	total: 82.8ms	remaining: 377ms
18:	learn: 21.8421199	total: 87.2ms	remaining: 372ms
19:	learn: 21.6576508	total: 91.5ms	remaining: 366ms
20:	learn: 21.4301268	total: 95.6ms	remaining: 360ms
21:	learn: 21.2287388	total: 100ms	remaining: 355ms
22:	learn: 21.0553872	total: 104ms	remaining: 349ms
23:	learn: 20.8977091	total: 108ms	remaining: 343ms
24:	learn: 20.6619051	total: 113ms	remaining: 338ms
25:	learn: 20.5040955	total: 118ms	remaining: 335ms
26:	learn: 20.3181195	total: 122ms	remaining: 331ms
27:	learn: 20.0869436	total: 127ms	remaining: 327ms
28:	learn: 19.9375985	total: 132ms	remaining: 323ms
29:	learn: 19.8247516	total: 136ms	remaining: 317ms
30:	learn: 19.6261697	total: 141ms	remaining: 313ms
31:	learn: 19.4547236	total: 145ms	remaining: 309ms
32:	learn: 19.3157092	total: 152ms	remaining: 309ms
33:	learn: 19.1561419	total: 160ms	remaining: 310ms
34:	learn: 19.0453620	total: 169ms	remaining: 314ms
35:	learn: 18.8738574	total: 176ms	remaining: 313ms
36:	learn: 18.7072907	total: 183ms	remaining: 311ms
37:	learn: 18.5877943	total: 188ms	remaining: 306ms
38:	learn: 18.4436380	total: 193ms	remaining: 303ms
39:	learn: 18.3463356	total: 199ms	remaining: 298ms
40:	learn: 18.2008059	total: 204ms	remaining: 293ms
41:	learn: 18.0582079	total: 209ms	remaining: 289ms
42:	learn: 17.8891982	total: 215ms	remaining: 285ms
43:	learn: 17.7332246	total: 220ms	remaining: 279ms
44:	learn: 17.6206421	total: 225ms	remaining: 275ms
45:	learn: 17.4982800	total: 230ms	remaining: 270ms
46:	learn: 17.3970150	total: 235ms	remaining: 265ms
47:	learn: 17.3058203	total: 240ms	remaining: 260ms
48:	learn: 17.1789256	total: 246ms	remaining: 256ms
49:	learn: 17.0916229	total: 251ms	remaining: 251ms
50:	learn: 16.9859820	total: 256ms	remaining: 246ms
51:	learn: 16.8995582	total: 260ms	remaining: 240ms
52:	learn: 16.8137014	total: 265ms	remaining: 235ms
53:	learn: 16.7021451	total: 269ms	remaining: 229ms
54:	learn: 16.5895582	total: 273ms	remaining: 223ms
55:	learn: 16.5015639	total: 278ms	remaining: 218ms
56:	learn: 16.4356637	total: 282ms	remaining: 213ms
57:	learn: 16.3514525	total: 287ms	remaining: 208ms
58:	learn: 16.2401369	total: 291ms	remaining: 202ms
59:	learn: 16.1293223	total: 295ms	remaining: 197ms
60:	learn: 16.0271167	total: 300ms	remaining: 192ms
61:	learn: 15.9126257	total: 304ms	remaining: 186ms
62:	learn: 15.8391096	total: 308ms	remaining: 181ms
63:	learn: 15.7441773	total: 312ms	remaining: 176ms
64:	learn: 15.6885195	total: 317ms	remaining: 171ms
65:	learn: 15.6052039	total: 321ms	remaining: 165ms
66:	learn: 15.5074202	total: 326ms	remaining: 160ms
67:	learn: 15.4054338	total: 330ms	remaining: 156ms
68:	learn: 15.2885714	total: 335ms	remaining: 151ms
69:	learn: 15.2157472	total: 340ms	remaining: 146ms
70:	learn: 15.1031554	total: 344ms	remaining: 141ms
71:	learn: 15.0237470	total: 349ms	remaining: 136ms
72:	learn: 14.9756825	total: 354ms	remaining: 131ms
73:	learn: 14.8840596	total: 359ms	remaining: 126ms
74:	learn: 14.8077061	total: 367ms	remaining: 122ms
75:	learn: 14.7444437	total: 375ms	remaining: 118ms
76:	learn: 14.6751720	total: 382ms	remaining: 114ms
77:	learn: 14.5830333	total: 390ms	remaining: 110ms
78:	learn: 14.5241206	total: 395ms	remaining: 105ms
79:	learn: 14.4892731	total: 400ms	remaining: 100ms
80:	learn: 14.4256605	total: 405ms	remaining: 95ms
81:	learn: 14.3666860	total: 410ms	remaining: 90.1ms
82:	learn: 14.2938372	total: 416ms	remaining: 85.2ms
83:	learn: 14.2161532	total: 422ms	remaining: 80.3ms
84:	learn: 14.1582910	total: 427ms	remaining: 75.4ms
85:	learn: 14.1029153	total: 433ms	remaining: 70.5ms
86:	learn: 14.0475835	total: 438ms	remaining: 65.5ms
87:	learn: 13.9892661	total: 444ms	remaining: 60.5ms
88:	learn: 13.9481628	total: 449ms	remaining: 55.5ms
89:	learn: 13.8483991	total: 454ms	remaining: 50.4ms
90:	learn: 13.7775614	total: 459ms	remaining: 45.4ms
91:	learn: 13.7304585	total: 465ms	remaining: 40.4ms
92:	learn: 13.6783381	total: 470ms	remaining: 35.4ms
93:	learn: 13.6356964	total: 475ms	remaining: 30.3ms
94:	learn: 13.5924371	total: 479ms	remaining: 25.2ms
95:	learn: 13.5400746	total: 484ms	remaining: 20.1ms
96:	learn: 13.4897333	total: 488ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 493ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 498ms	remaining: 5.03ms
99:	learn: 13.3082371	total: 502ms	remaining: 0us
0:	learn: 43.0395283	total: 5.47ms	remaining: 542ms
1:	learn: 42.1130223	total: 13.8ms	remaining: 675ms
2:	learn: 41.1753409	total: 21.2ms	remaining: 685ms
3:	learn: 40.3637444	total: 30.7ms	remaining: 736ms
4:	learn: 39.6508088	total: 36.9ms	remaining: 701ms
5:	learn: 38.7217934	total: 43.1ms	remaining: 676ms
6:	learn: 37.8538055	total: 48.6ms	remaining: 646ms
7:	learn: 36.9793574	total: 53.9ms	remaining: 620ms
8:	learn: 36.3076984	total: 59.1ms	remaining: 598ms
9:	learn: 35.6673160	total: 64.2ms	remaining: 578ms
10:	learn: 34.8889800	total: 69.8ms	remaining: 564ms
11:	learn: 34.1675517	total: 74.6ms	remaining: 547ms
12:	learn: 33.6779564	total: 79.9ms	remaining: 535ms
13:	learn: 33.0710039	total: 84.8ms	remaining: 521ms
14:	learn: 32.4966674	total: 89.5ms	remaining: 507ms
15:	learn: 31.9492856	total: 94.5ms	remaining: 496ms
16:	learn: 31.5108129	total: 100ms	remaining: 489ms
17:	learn: 30.9804023	total: 106ms	remaining: 482ms
18:	learn: 30.4169089	total: 110ms	remaining: 468ms
19:	learn: 29.8930375	total: 114ms	remaining: 457ms
20:	learn: 29.3974421	total: 119ms	remaining: 447ms
21:	learn: 28.8792307	total: 123ms	remaining: 436ms
22:	learn: 28.3894474	total: 127ms	remaining: 426ms
23:	learn: 27.9921276	total: 131ms	remaining: 415ms
24:	learn: 27.6158887	total: 135ms	remaining: 406ms
25:	learn: 27.2866950	total: 140ms	remaining: 397ms
26:	learn: 26.8770708	total: 144ms	remaining: 389ms
27:	learn: 26.6233005	total: 148ms	remaining: 380ms
28:	learn: 26.2921934	total: 152ms	remaining: 373ms
29:	learn: 25.9156920	total: 156ms	remaining: 365ms
30:	learn: 25.5311106	total: 158ms	remaining: 352ms
31:	learn: 25.2178997	total: 162ms	remaining: 345ms
32:	learn: 24.8572196	total: 167ms	remaining: 339ms
33:	learn: 24.5849710	total: 171ms	remaining: 331ms
34:	learn: 24.2209190	total: 175ms	remaining: 325ms
35:	learn: 23.8708250	total: 179ms	remaining: 319ms
36:	learn: 23.5325279	total: 183ms	remaining: 312ms
37:	learn: 23.2116148	total: 188ms	remaining: 306ms
38:	learn: 22.9696787	total: 192ms	remaining: 300ms
39:	learn: 22.7936783	total: 196ms	remaining: 294ms
40:	learn: 22.6228847	total: 200ms	remaining: 288ms
41:	learn: 22.3691527	total: 205ms	remaining: 283ms
42:	learn: 22.1002173	total: 209ms	remaining: 278ms
43:	learn: 21.9157268	total: 214ms	remaining: 272ms
44:	learn: 21.7229102	total: 218ms	remaining: 266ms
45:	learn: 21.4642005	total: 222ms	remaining: 261ms
46:	learn: 21.3029442	total: 227ms	remaining: 256ms
47:	learn: 21.1469792	total: 232ms	remaining: 251ms
48:	learn: 20.9458235	total: 236ms	remaining: 246ms
49:	learn: 20.7335242	total: 241ms	remaining: 241ms
50:	learn: 20.5440269	total: 245ms	remaining: 236ms
51:	learn: 20.3661449	total: 250ms	remaining: 231ms
52:	learn: 20.2158134	total: 255ms	remaining: 226ms
53:	learn: 19.9934873	total: 263ms	remaining: 224ms
54:	learn: 19.7879739	total: 270ms	remaining: 221ms
55:	learn: 19.6630460	total: 279ms	remaining: 220ms
56:	learn: 19.5152729	total: 288ms	remaining: 217ms
57:	learn: 19.3581128	total: 293ms	remaining: 212ms
58:	learn: 19.2209303	total: 299ms	remaining: 207ms
59:	learn: 19.0965248	total: 304ms	remaining: 203ms
60:	learn: 19.0035954	total: 309ms	remaining: 197ms
61:	learn: 18.8554149	total: 314ms	remaining: 192ms
62:	learn: 18.7095427	total: 319ms	remaining: 187ms
63:	learn: 18.5751494	total: 324ms	remaining: 182ms
64:	learn: 18.4678251	total: 329ms	remaining: 177ms
65:	learn: 18.3500325	total: 335ms	remaining: 172ms
66:	learn: 18.2088983	total: 340ms	remaining: 167ms
67:	learn: 18.0737705	total: 345ms	remaining: 162ms
68:	learn: 17.9325058	total: 350ms	remaining: 157ms
69:	learn: 17.8003911	total: 356ms	remaining: 152ms
70:	learn: 17.7385366	total: 361ms	remaining: 148ms
71:	learn: 17.6106998	total: 366ms	remaining: 142ms
72:	learn: 17.4816270	total: 371ms	remaining: 137ms
73:	learn: 17.4025554	total: 375ms	remaining: 132ms
74:	learn: 17.2902108	total: 379ms	remaining: 126ms
75:	learn: 17.2158048	total: 384ms	remaining: 121ms
76:	learn: 17.1261053	total: 389ms	remaining: 116ms
77:	learn: 17.0308917	total: 393ms	remaining: 111ms
78:	learn: 16.9546705	total: 398ms	remaining: 106ms
79:	learn: 16.8319165	total: 401ms	remaining: 100ms
80:	learn: 16.7687017	total: 406ms	remaining: 95.2ms
81:	learn: 16.6972326	total: 411ms	remaining: 90.1ms
82:	learn: 16.6124580	total: 415ms	remaining: 85ms
83:	learn: 16.4999052	total: 419ms	remaining: 79.9ms
84:	learn: 16.4302484	total: 424ms	remaining: 74.8ms
85:	learn: 16.3201363	total: 429ms	remaining: 69.8ms
86:	learn: 16.2534314	total: 433ms	remaining: 64.7ms
87:	learn: 16.1720485	total: 437ms	remaining: 59.7ms
88:	learn: 16.0625751	total: 442ms	remaining: 54.6ms
89:	learn: 15.9135088	total: 447ms	remaining: 49.6ms
90:	learn: 15.8658863	total: 451ms	remaining: 44.6ms
91:	learn: 15.8066805	total: 456ms	remaining: 39.6ms
92:	learn: 15.7412103	total: 465ms	remaining: 35ms
93:	learn: 15.6542776	total: 473ms	remaining: 30.2ms
94:	learn: 15.5760334	total: 481ms	remaining: 25.3ms
95:	learn: 15.5434131	total: 489ms	remaining: 20.4ms
96:	learn: 15.4709561	total: 494ms	remaining: 15.3ms
97:	learn: 15.4449618	total: 500ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 505ms	remaining: 5.1ms
99:	learn: 15.3106595	total: 510ms	remaining: 0us
0:	learn: 46.7142257	total: 4.91ms	remaining: 486ms
1:	learn: 45.7634153	total: 8.76ms	remaining: 429ms
2:	learn: 45.0054253	total: 13.4ms	remaining: 433ms
3:	learn: 44.2120432	total: 18.4ms	remaining: 441ms
4:	learn: 43.3960472	total: 22.5ms	remaining: 428ms
5:	learn: 42.8588120	total: 27.7ms	remaining: 434ms
6:	learn: 41.9533701	total: 32.3ms	remaining: 429ms
7:	learn: 41.2745030	total: 37ms	remaining: 426ms
8:	learn: 40.6797495	total: 41.6ms	remaining: 421ms
9:	learn: 39.9899571	total: 46.5ms	remaining: 418ms
10:	learn: 39.4682100	total: 51.4ms	remaining: 416ms
11:	learn: 39.0305595	total: 56.1ms	remaining: 412ms
12:	learn: 38.4200417	total: 60.9ms	remaining: 407ms
13:	learn: 37.8425194	total: 65.5ms	remaining: 403ms
14:	learn: 37.4203127	total: 70.2ms	remaining: 398ms
15:	learn: 36.9917688	total: 74.9ms	remaining: 393ms
16:	learn: 36.5544138	total: 79.7ms	remaining: 389ms
17:	learn: 36.0727019	total: 84.5ms	remaining: 385ms
18:	learn: 35.4835715	total: 89.7ms	remaining: 382ms
19:	learn: 34.9865654	total: 98.1ms	remaining: 393ms
20:	learn: 34.6063373	total: 105ms	remaining: 396ms
21:	learn: 34.0997289	total: 114ms	remaining: 403ms
22:	learn: 33.7313171	total: 122ms	remaining: 410ms
23:	learn: 33.3582000	total: 128ms	remaining: 406ms
24:	learn: 32.9432456	total: 134ms	remaining: 401ms
25:	learn: 32.5220888	total: 139ms	remaining: 396ms
26:	learn: 32.2172292	total: 144ms	remaining: 391ms
27:	learn: 31.8972904	total: 150ms	remaining: 385ms
28:	learn: 31.6405350	total: 155ms	remaining: 380ms
29:	learn: 31.4167702	total: 161ms	remaining: 375ms
30:	learn: 30.8541961	total: 163ms	remaining: 362ms
31:	learn: 30.5572111	total: 168ms	remaining: 357ms
32:	learn: 30.1700399	total: 174ms	remaining: 353ms
33:	learn: 29.8537271	total: 179ms	remaining: 348ms
34:	learn: 29.6192540	total: 184ms	remaining: 342ms
35:	learn: 29.3276362	total: 189ms	remaining: 336ms
36:	learn: 28.9985179	total: 195ms	remaining: 332ms
37:	learn: 28.7046880	total: 201ms	remaining: 328ms
38:	learn: 28.4412677	total: 206ms	remaining: 321ms
39:	learn: 28.1277292	total: 210ms	remaining: 315ms
40:	learn: 27.9000750	total: 215ms	remaining: 309ms
41:	learn: 27.5433162	total: 219ms	remaining: 302ms
42:	learn: 27.2493285	total: 223ms	remaining: 296ms
43:	learn: 26.9576632	total: 225ms	remaining: 286ms
44:	learn: 26.6177110	total: 230ms	remaining: 281ms
45:	learn: 26.2812456	total: 234ms	remaining: 275ms
46:	learn: 26.0803859	total: 238ms	remaining: 269ms
47:	learn: 25.9543581	total: 243ms	remaining: 263ms
48:	learn: 25.7951582	total: 247ms	remaining: 257ms
49:	learn: 25.6548184	total: 251ms	remaining: 251ms
50:	learn: 25.4010843	total: 257ms	remaining: 247ms
51:	learn: 24.9773937	total: 262ms	remaining: 242ms
52:	learn: 24.8026156	total: 267ms	remaining: 237ms
53:	learn: 24.5568053	total: 272ms	remaining: 232ms
54:	learn: 24.2281839	total: 277ms	remaining: 227ms
55:	learn: 23.9202795	total: 282ms	remaining: 222ms
56:	learn: 23.7625591	total: 287ms	remaining: 217ms
57:	learn: 23.5429721	total: 296ms	remaining: 214ms
58:	learn: 23.3175893	total: 304ms	remaining: 211ms
59:	learn: 23.2035130	total: 314ms	remaining: 209ms
60:	learn: 23.0232450	total: 321ms	remaining: 205ms
61:	learn: 22.8384958	total: 327ms	remaining: 200ms
62:	learn: 22.6499902	total: 333ms	remaining: 195ms
63:	learn: 22.4577426	total: 338ms	remaining: 190ms
64:	learn: 22.3333158	total: 343ms	remaining: 185ms
65:	learn: 22.2064131	total: 348ms	remaining: 179ms
66:	learn: 22.1434971	total: 353ms	remaining: 174ms
67:	learn: 21.9596519	total: 359ms	remaining: 169ms
68:	learn: 21.8475576	total: 364ms	remaining: 164ms
69:	learn: 21.6954745	total: 370ms	remaining: 159ms
70:	learn: 21.5635976	total: 376ms	remaining: 153ms
71:	learn: 21.4588506	total: 381ms	remaining: 148ms
72:	learn: 21.3527268	total: 386ms	remaining: 143ms
73:	learn: 21.2661288	total: 391ms	remaining: 138ms
74:	learn: 21.1817333	total: 397ms	remaining: 132ms
75:	learn: 21.0527553	total: 402ms	remaining: 127ms
76:	learn: 20.9229021	total: 407ms	remaining: 122ms
77:	learn: 20.7563946	total: 411ms	remaining: 116ms
78:	learn: 20.6569831	total: 416ms	remaining: 111ms
79:	learn: 20.4982663	total: 421ms	remaining: 105ms
80:	learn: 20.3185460	total: 426ms	remaining: 99.8ms
81:	learn: 20.2096241	total: 430ms	remaining: 94.4ms
82:	learn: 20.1274891	total: 434ms	remaining: 89ms
83:	learn: 20.0740139	total: 439ms	remaining: 83.6ms
84:	learn: 19.9630699	total: 444ms	remaining: 78.3ms
85:	learn: 19.8753899	total: 448ms	remaining: 73ms
86:	learn: 19.6563612	total: 453ms	remaining: 67.7ms
87:	learn: 19.4680232	total: 458ms	remaining: 62.4ms
88:	learn: 19.3503431	total: 463ms	remaining: 57.2ms
89:	learn: 19.2221379	total: 467ms	remaining: 51.9ms
90:	learn: 19.0732542	total: 472ms	remaining: 46.7ms
91:	learn: 18.9825190	total: 477ms	remaining: 41.5ms
92:	learn: 18.8839009	total: 482ms	remaining: 36.3ms
93:	learn: 18.8012219	total: 486ms	remaining: 31ms
94:	learn: 18.7172713	total: 491ms	remaining: 25.8ms
95:	learn: 18.6201170	total: 499ms	remaining: 20.8ms
96:	learn: 18.5318611	total: 507ms	remaining: 15.7ms
97:	learn: 18.3833356	total: 515ms	remaining: 10.5ms
98:	learn: 18.3289700	total: 523ms	remaining: 5.29ms
99:	learn: 18.2227333	total: 528ms	remaining: 0us
0:	learn: 46.3764524	total: 6.18ms	remaining: 612ms
1:	learn: 45.5561269	total: 10.8ms	remaining: 530ms
2:	learn: 44.8811245	total: 15.8ms	remaining: 511ms
3:	learn: 44.0788617	total: 19.9ms	remaining: 477ms
4:	learn: 43.3619790	total: 23.8ms	remaining: 452ms
5:	learn: 42.6912112	total: 28.1ms	remaining: 440ms
6:	learn: 42.2292118	total: 32.5ms	remaining: 432ms
7:	learn: 41.7725191	total: 37ms	remaining: 426ms
8:	learn: 41.1676614	total: 41.4ms	remaining: 418ms
9:	learn: 40.5771076	total: 46.4ms	remaining: 417ms
10:	learn: 39.8343757	total: 50.8ms	remaining: 411ms
11:	learn: 39.3761142	total: 54.9ms	remaining: 403ms
12:	learn: 38.5254692	total: 59.6ms	remaining: 399ms
13:	learn: 37.9629555	total: 64.4ms	remaining: 395ms
14:	learn: 37.4418438	total: 69.3ms	remaining: 393ms
15:	learn: 37.0507283	total: 74.4ms	remaining: 390ms
16:	learn: 36.6264217	total: 79.2ms	remaining: 387ms
17:	learn: 36.1114940	total: 83.9ms	remaining: 382ms
18:	learn: 35.7193862	total: 88.9ms	remaining: 379ms
19:	learn: 35.3301177	total: 93.6ms	remaining: 374ms
20:	learn: 35.0598280	total: 98.4ms	remaining: 370ms
21:	learn: 34.5469736	total: 103ms	remaining: 366ms
22:	learn: 34.2064215	total: 108ms	remaining: 363ms
23:	learn: 33.7280710	total: 116ms	remaining: 368ms
24:	learn: 33.3282940	total: 124ms	remaining: 371ms
25:	learn: 32.8478961	total: 132ms	remaining: 375ms
26:	learn: 32.5722164	total: 138ms	remaining: 372ms
27:	learn: 32.2457019	total: 144ms	remaining: 371ms
28:	learn: 31.9230495	total: 149ms	remaining: 365ms
29:	learn: 31.4311611	total: 154ms	remaining: 359ms
30:	learn: 30.9179052	total: 159ms	remaining: 354ms
31:	learn: 30.6201141	total: 165ms	remaining: 350ms
32:	learn: 30.3421106	total: 170ms	remaining: 345ms
33:	learn: 29.9885373	total: 175ms	remaining: 341ms
34:	learn: 29.7462780	total: 181ms	remaining: 336ms
35:	learn: 29.3607153	total: 186ms	remaining: 331ms
36:	learn: 29.1793078	total: 191ms	remaining: 326ms
37:	learn: 28.9276538	total: 197ms	remaining: 321ms
38:	learn: 28.6903934	total: 202ms	remaining: 316ms
39:	learn: 28.2095033	total: 207ms	remaining: 311ms
40:	learn: 27.7990608	total: 213ms	remaining: 307ms
41:	learn: 27.5406632	total: 218ms	remaining: 302ms
42:	learn: 27.2575376	total: 224ms	remaining: 296ms
43:	learn: 26.9741707	total: 228ms	remaining: 290ms
44:	learn: 26.6606899	total: 232ms	remaining: 284ms
45:	learn: 26.4015833	total: 238ms	remaining: 279ms
46:	learn: 26.1828993	total: 242ms	remaining: 273ms
47:	learn: 26.0233709	total: 245ms	remaining: 265ms
48:	learn: 25.9300399	total: 249ms	remaining: 259ms
49:	learn: 25.5861489	total: 253ms	remaining: 253ms
50:	learn: 25.4322012	total: 258ms	remaining: 248ms
51:	learn: 25.1595644	total: 263ms	remaining: 243ms
52:	learn: 24.9955303	total: 268ms	remaining: 238ms
53:	learn: 24.7273966	total: 273ms	remaining: 232ms
54:	learn: 24.5747978	total: 278ms	remaining: 227ms
55:	learn: 24.3807977	total: 283ms	remaining: 222ms
56:	learn: 24.1689569	total: 287ms	remaining: 216ms
57:	learn: 23.9898221	total: 292ms	remaining: 211ms
58:	learn: 23.7566414	total: 296ms	remaining: 206ms
59:	learn: 23.6641165	total: 301ms	remaining: 200ms
60:	learn: 23.5658066	total: 306ms	remaining: 196ms
61:	learn: 23.4338851	total: 314ms	remaining: 192ms
62:	learn: 23.2408837	total: 326ms	remaining: 191ms
63:	learn: 23.0642038	total: 332ms	remaining: 187ms
64:	learn: 22.9032045	total: 339ms	remaining: 183ms
65:	learn: 22.7736138	total: 345ms	remaining: 178ms
66:	learn: 22.6836443	total: 350ms	remaining: 172ms
67:	learn: 22.5983654	total: 355ms	remaining: 167ms
68:	learn: 22.4419813	total: 361ms	remaining: 162ms
69:	learn: 22.2863339	total: 366ms	remaining: 157ms
70:	learn: 22.1792943	total: 371ms	remaining: 152ms
71:	learn: 22.1130574	total: 376ms	remaining: 146ms
72:	learn: 21.9858161	total: 382ms	remaining: 141ms
73:	learn: 21.8577784	total: 387ms	remaining: 136ms
74:	learn: 21.7845222	total: 392ms	remaining: 131ms
75:	learn: 21.6831390	total: 397ms	remaining: 125ms
76:	learn: 21.6292521	total: 402ms	remaining: 120ms
77:	learn: 21.5789330	total: 408ms	remaining: 115ms
78:	learn: 21.5420942	total: 412ms	remaining: 110ms
79:	learn: 21.4280939	total: 416ms	remaining: 104ms
80:	learn: 21.3641165	total: 420ms	remaining: 98.5ms
81:	learn: 21.2734814	total: 424ms	remaining: 93.1ms
82:	learn: 21.2220323	total: 429ms	remaining: 87.8ms
83:	learn: 21.0625792	total: 433ms	remaining: 82.5ms
84:	learn: 20.9488320	total: 437ms	remaining: 77.1ms
85:	learn: 20.8504255	total: 441ms	remaining: 71.8ms
86:	learn: 20.7848510	total: 445ms	remaining: 66.5ms
87:	learn: 20.7247442	total: 449ms	remaining: 61.3ms
88:	learn: 20.5698590	total: 454ms	remaining: 56.1ms
89:	learn: 20.4067620	total: 458ms	remaining: 50.9ms
90:	learn: 20.3062482	total: 463ms	remaining: 45.8ms
91:	learn: 20.2029696	total: 467ms	remaining: 40.6ms
92:	learn: 20.1384849	total: 472ms	remaining: 35.5ms
93:	learn: 20.0260709	total: 476ms	remaining: 30.4ms
94:	learn: 19.9122100	total: 481ms	remaining: 25.3ms
95:	learn: 19.8648487	total: 485ms	remaining: 20.2ms
96:	learn: 19.8207072	total: 490ms	remaining: 15.2ms
97:	learn: 19.7261189	total: 495ms	remaining: 10.1ms
98:	learn: 19.7042438	total: 499ms	remaining: 5.04ms
99:	learn: 19.6546645	total: 504ms	remaining: 0us
0:	learn: 47.0239288	total: 5.26ms	remaining: 521ms
1:	learn: 46.2253829	total: 10.5ms	remaining: 514ms
2:	learn: 45.5580301	total: 15.8ms	remaining: 512ms
3:	learn: 44.7273237	total: 20.9ms	remaining: 501ms
4:	learn: 43.8867421	total: 25.9ms	remaining: 492ms
5:	learn: 43.3615911	total: 30.6ms	remaining: 479ms
6:	learn: 42.8548390	total: 36ms	remaining: 478ms
7:	learn: 42.1606758	total: 41.2ms	remaining: 474ms
8:	learn: 41.6625870	total: 46.1ms	remaining: 466ms
9:	learn: 40.9497092	total: 50.4ms	remaining: 453ms
10:	learn: 40.1886318	total: 54.9ms	remaining: 444ms
11:	learn: 39.7456423	total: 59.1ms	remaining: 433ms
12:	learn: 39.1171373	total: 62.9ms	remaining: 421ms
13:	learn: 38.5451069	total: 67.1ms	remaining: 412ms
14:	learn: 38.0155834	total: 71.2ms	remaining: 403ms
15:	learn: 37.5631354	total: 75.4ms	remaining: 396ms
16:	learn: 37.1030023	total: 79.2ms	remaining: 387ms
17:	learn: 36.4563029	total: 83.4ms	remaining: 380ms
18:	learn: 36.0160976	total: 87.5ms	remaining: 373ms
19:	learn: 35.5079827	total: 91.4ms	remaining: 366ms
20:	learn: 35.2111885	total: 95.2ms	remaining: 358ms
21:	learn: 34.9397465	total: 99ms	remaining: 351ms
22:	learn: 34.5270048	total: 104ms	remaining: 349ms
23:	learn: 34.0169260	total: 109ms	remaining: 345ms
24:	learn: 33.7454892	total: 113ms	remaining: 340ms
25:	learn: 33.2648157	total: 118ms	remaining: 336ms
26:	learn: 32.8899427	total: 123ms	remaining: 333ms
27:	learn: 32.6185050	total: 128ms	remaining: 328ms
28:	learn: 32.3528531	total: 133ms	remaining: 325ms
29:	learn: 32.0859923	total: 138ms	remaining: 321ms
30:	learn: 31.6511144	total: 142ms	remaining: 315ms
31:	learn: 31.2571765	total: 146ms	remaining: 311ms
32:	learn: 30.9770049	total: 153ms	remaining: 310ms
33:	learn: 30.6084872	total: 160ms	remaining: 311ms
34:	learn: 30.3448632	total: 168ms	remaining: 311ms
35:	learn: 30.0360942	total: 182ms	remaining: 323ms
36:	learn: 29.6648968	total: 187ms	remaining: 319ms
37:	learn: 29.3165114	total: 192ms	remaining: 314ms
38:	learn: 29.0829198	total: 197ms	remaining: 308ms
39:	learn: 28.7752064	total: 202ms	remaining: 303ms
40:	learn: 28.3622191	total: 208ms	remaining: 299ms
41:	learn: 28.1346631	total: 213ms	remaining: 294ms
42:	learn: 27.9585719	total: 218ms	remaining: 289ms
43:	learn: 27.6565566	total: 223ms	remaining: 284ms
44:	learn: 27.3616172	total: 228ms	remaining: 279ms
45:	learn: 27.0658637	total: 233ms	remaining: 274ms
46:	learn: 26.8660382	total: 238ms	remaining: 269ms
47:	learn: 26.6536078	total: 244ms	remaining: 264ms
48:	learn: 26.3524440	total: 250ms	remaining: 260ms
49:	learn: 26.1595277	total: 255ms	remaining: 255ms
50:	learn: 25.9273523	total: 259ms	remaining: 249ms
51:	learn: 25.7195580	total: 264ms	remaining: 244ms
52:	learn: 25.5730225	total: 268ms	remaining: 238ms
53:	learn: 25.3455276	total: 273ms	remaining: 232ms
54:	learn: 25.2289675	total: 277ms	remaining: 226ms
55:	learn: 25.0133024	total: 281ms	remaining: 221ms
56:	learn: 24.8406714	total: 286ms	remaining: 215ms
57:	learn: 24.6367857	total: 289ms	remaining: 210ms
58:	learn: 24.5338177	total: 294ms	remaining: 204ms
59:	learn: 24.3799964	total: 298ms	remaining: 198ms
60:	learn: 24.1447492	total: 302ms	remaining: 193ms
61:	learn: 23.9880495	total: 306ms	remaining: 187ms
62:	learn: 23.7140630	total: 310ms	remaining: 182ms
63:	learn: 23.5003791	total: 314ms	remaining: 176ms
64:	learn: 23.3207645	total: 318ms	remaining: 171ms
65:	learn: 23.1958356	total: 323ms	remaining: 166ms
66:	learn: 23.0471302	total: 328ms	remaining: 161ms
67:	learn: 22.8977183	total: 332ms	remaining: 156ms
68:	learn: 22.7187400	total: 336ms	remaining: 151ms
69:	learn: 22.6523405	total: 341ms	remaining: 146ms
70:	learn: 22.4767453	total: 345ms	remaining: 141ms
71:	learn: 22.3243677	total: 353ms	remaining: 137ms
72:	learn: 22.2133096	total: 361ms	remaining: 134ms
73:	learn: 22.1151713	total: 371ms	remaining: 130ms
74:	learn: 22.0296666	total: 377ms	remaining: 126ms
75:	learn: 21.9195980	total: 384ms	remaining: 121ms
76:	learn: 21.8401730	total: 389ms	remaining: 116ms
77:	learn: 21.8079797	total: 394ms	remaining: 111ms
78:	learn: 21.7274109	total: 400ms	remaining: 106ms
79:	learn: 21.6663032	total: 405ms	remaining: 101ms
80:	learn: 21.5633117	total: 410ms	remaining: 96.1ms
81:	learn: 21.4542467	total: 415ms	remaining: 91.1ms
82:	learn: 21.3177957	total: 420ms	remaining: 86.1ms
83:	learn: 21.1289167	total: 426ms	remaining: 81.1ms
84:	learn: 21.0297368	total: 431ms	remaining: 76.1ms
85:	learn: 20.9089564	total: 436ms	remaining: 70.9ms
86:	learn: 20.7653988	total: 441ms	remaining: 65.9ms
87:	learn: 20.6521894	total: 446ms	remaining: 60.8ms
88:	learn: 20.5193021	total: 451ms	remaining: 55.8ms
89:	learn: 20.4361620	total: 455ms	remaining: 50.6ms
90:	learn: 20.3546710	total: 459ms	remaining: 45.4ms
91:	learn: 20.2513296	total: 463ms	remaining: 40.3ms
92:	learn: 20.1605550	total: 468ms	remaining: 35.2ms
93:	learn: 20.0515942	total: 472ms	remaining: 30.1ms
94:	learn: 19.9800764	total: 476ms	remaining: 25ms
95:	learn: 19.8996532	total: 480ms	remaining: 20ms
96:	learn: 19.8450910	total: 484ms	remaining: 15ms
97:	learn: 19.7887346	total: 488ms	remaining: 9.95ms
98:	learn: 19.7230872	total: 491ms	remaining: 4.96ms
99:	learn: 19.6328825	total: 496ms	remaining: 0us
0:	learn: 27.8909741	total: 29ms	remaining: 8.66s
1:	learn: 27.7454242	total: 51.6ms	remaining: 7.69s
2:	learn: 27.6111999	total: 74ms	remaining: 7.33s
3:	learn: 27.4600863	total: 95.8ms	remaining: 7.09s
4:	learn: 27.3260335	total: 118ms	remaining: 6.99s
5:	learn: 27.1985740	total: 137ms	remaining: 6.71s
6:	learn: 27.0660624	total: 156ms	remaining: 6.53s
7:	learn: 26.9502628	total: 175ms	remaining: 6.39s
8:	learn: 26.8402973	total: 196ms	remaining: 6.34s
9:	learn: 26.7116533	total: 217ms	remaining: 6.29s
10:	learn: 26.5912304	total: 246ms	remaining: 6.46s
11:	learn: 26.4818560	total: 272ms	remaining: 6.52s
12:	learn: 26.3630522	total: 293ms	remaining: 6.47s
13:	learn: 26.2428640	total: 316ms	remaining: 6.45s
14:	learn: 26.1282325	total: 338ms	remaining: 6.42s
15:	learn: 26.0091410	total: 358ms	remaining: 6.36s
16:	learn: 25.8970089	total: 379ms	remaining: 6.31s
17:	learn: 25.7757055	total: 399ms	remaining: 6.25s
18:	learn: 25.6496251	total: 421ms	remaining: 6.23s
19:	learn: 25.5484901	total: 442ms	remaining: 6.19s
20:	learn: 25.4310248	total: 472ms	remaining: 6.27s
21:	learn: 25.3060633	total: 494ms	remaining: 6.25s
22:	learn: 25.1911135	total: 517ms	remaining: 6.23s
23:	learn: 25.0751115	total: 540ms	remaining: 6.21s
24:	learn: 24.9785444	total: 563ms	remaining: 6.19s
25:	learn: 24.8595879	total: 583ms	remaining: 6.14s
26:	learn: 24.7426277	total: 602ms	remaining: 6.09s
27:	learn: 24.6393116	total: 605ms	remaining: 5.88s
28:	learn: 24.5376847	total: 625ms	remaining: 5.84s
29:	learn: 24.4319233	total: 646ms	remaining: 5.81s
30:	learn: 24.3179642	total: 668ms	remaining: 5.79s
31:	learn: 24.2277640	total: 699ms	remaining: 5.85s
32:	learn: 24.1175303	total: 723ms	remaining: 5.85s
33:	learn: 24.0025830	total: 747ms	remaining: 5.85s
34:	learn: 23.8933138	total: 771ms	remaining: 5.84s
35:	learn: 23.7978848	total: 795ms	remaining: 5.83s
36:	learn: 23.6976272	total: 817ms	remaining: 5.8s
37:	learn: 23.5812052	total: 840ms	remaining: 5.79s
38:	learn: 23.4803621	total: 862ms	remaining: 5.77s
39:	learn: 23.3838152	total: 892ms	remaining: 5.8s
40:	learn: 23.2868223	total: 918ms	remaining: 5.8s
41:	learn: 23.1851207	total: 941ms	remaining: 5.78s
42:	learn: 23.0850575	total: 965ms	remaining: 5.77s
43:	learn: 22.9941965	total: 989ms	remaining: 5.75s
44:	learn: 22.8932530	total: 1.01s	remaining: 5.74s
45:	learn: 22.8049000	total: 1.03s	remaining: 5.72s
46:	learn: 22.7182127	total: 1.06s	remaining: 5.69s
47:	learn: 22.6270080	total: 1.08s	remaining: 5.68s
48:	learn: 22.5359862	total: 1.11s	remaining: 5.7s
49:	learn: 22.4435640	total: 1.14s	remaining: 5.68s
50:	learn: 22.3511768	total: 1.16s	remaining: 5.66s
51:	learn: 22.2533392	total: 1.18s	remaining: 5.64s
52:	learn: 22.1598144	total: 1.21s	remaining: 5.62s
53:	learn: 22.0687311	total: 1.23s	remaining: 5.59s
54:	learn: 21.9783996	total: 1.25s	remaining: 5.55s
55:	learn: 21.8874106	total: 1.27s	remaining: 5.54s
56:	learn: 21.8003765	total: 1.29s	remaining: 5.52s
57:	learn: 21.6994378	total: 1.32s	remaining: 5.53s
58:	learn: 21.6017747	total: 1.35s	remaining: 5.51s
59:	learn: 21.5010446	total: 1.37s	remaining: 5.49s
60:	learn: 21.3964987	total: 1.4s	remaining: 5.47s
61:	learn: 21.2914416	total: 1.42s	remaining: 5.46s
62:	learn: 21.1944430	total: 1.44s	remaining: 5.43s
63:	learn: 21.0964015	total: 1.46s	remaining: 5.4s
64:	learn: 21.0103359	total: 1.49s	remaining: 5.38s
65:	learn: 20.9282967	total: 1.51s	remaining: 5.36s
66:	learn: 20.8538000	total: 1.54s	remaining: 5.36s
67:	learn: 20.7728703	total: 1.57s	remaining: 5.35s
68:	learn: 20.6867426	total: 1.59s	remaining: 5.33s
69:	learn: 20.5945815	total: 1.62s	remaining: 5.31s
70:	learn: 20.5135483	total: 1.64s	remaining: 5.29s
71:	learn: 20.4247509	total: 1.66s	remaining: 5.26s
72:	learn: 20.3179450	total: 1.68s	remaining: 5.23s
73:	learn: 20.2381739	total: 1.71s	remaining: 5.21s
74:	learn: 20.1427785	total: 1.73s	remaining: 5.18s
75:	learn: 20.0577678	total: 1.76s	remaining: 5.18s
76:	learn: 19.9895777	total: 1.78s	remaining: 5.16s
77:	learn: 19.9049210	total: 1.8s	remaining: 5.14s
78:	learn: 19.8195140	total: 1.83s	remaining: 5.11s
79:	learn: 19.7332657	total: 1.85s	remaining: 5.09s
80:	learn: 19.6510418	total: 1.87s	remaining: 5.06s
81:	learn: 19.5727878	total: 1.89s	remaining: 5.03s
82:	learn: 19.5171316	total: 1.91s	remaining: 5s
83:	learn: 19.4470417	total: 1.94s	remaining: 4.98s
84:	learn: 19.3651617	total: 1.96s	remaining: 4.96s
85:	learn: 19.2864544	total: 1.99s	remaining: 4.95s
86:	learn: 19.2079143	total: 2.01s	remaining: 4.92s
87:	learn: 19.1337475	total: 2.03s	remaining: 4.9s
88:	learn: 19.0524248	total: 2.06s	remaining: 4.88s
89:	learn: 18.9875806	total: 2.08s	remaining: 4.85s
90:	learn: 18.9135796	total: 2.1s	remaining: 4.82s
91:	learn: 18.8435998	total: 2.12s	remaining: 4.79s
92:	learn: 18.7754418	total: 2.14s	remaining: 4.77s
93:	learn: 18.6989733	total: 2.18s	remaining: 4.77s
94:	learn: 18.6253442	total: 2.2s	remaining: 4.75s
95:	learn: 18.5546084	total: 2.22s	remaining: 4.72s
96:	learn: 18.4860831	total: 2.24s	remaining: 4.7s
97:	learn: 18.4048784	total: 2.27s	remaining: 4.67s
98:	learn: 18.3325619	total: 2.29s	remaining: 4.65s
99:	learn: 18.2708179	total: 2.31s	remaining: 4.62s
100:	learn: 18.1949234	total: 2.33s	remaining: 4.6s
101:	learn: 18.1209623	total: 2.36s	remaining: 4.57s
102:	learn: 18.0439521	total: 2.38s	remaining: 4.56s
103:	learn: 17.9793178	total: 2.41s	remaining: 4.54s
104:	learn: 17.9200271	total: 2.44s	remaining: 4.52s
105:	learn: 17.8685025	total: 2.46s	remaining: 4.5s
106:	learn: 17.8030415	total: 2.48s	remaining: 4.47s
107:	learn: 17.7368977	total: 2.5s	remaining: 4.45s
108:	learn: 17.6750310	total: 2.52s	remaining: 4.42s
109:	learn: 17.6085180	total: 2.54s	remaining: 4.39s
110:	learn: 17.5476542	total: 2.56s	remaining: 4.37s
111:	learn: 17.4809765	total: 2.6s	remaining: 4.36s
112:	learn: 17.4231096	total: 2.62s	remaining: 4.34s
113:	learn: 17.3581008	total: 2.64s	remaining: 4.31s
114:	learn: 17.2955719	total: 2.67s	remaining: 4.29s
115:	learn: 17.2257082	total: 2.69s	remaining: 4.27s
116:	learn: 17.1668254	total: 2.71s	remaining: 4.24s
117:	learn: 17.1122745	total: 2.73s	remaining: 4.21s
118:	learn: 17.0386468	total: 2.75s	remaining: 4.19s
119:	learn: 16.9863122	total: 2.77s	remaining: 4.16s
120:	learn: 16.9295516	total: 2.8s	remaining: 4.15s
121:	learn: 16.8683764	total: 2.83s	remaining: 4.13s
122:	learn: 16.8214061	total: 2.85s	remaining: 4.11s
123:	learn: 16.7643379	total: 2.88s	remaining: 4.08s
124:	learn: 16.7080302	total: 2.9s	remaining: 4.06s
125:	learn: 16.6507689	total: 2.92s	remaining: 4.03s
126:	learn: 16.5941589	total: 2.94s	remaining: 4.01s
127:	learn: 16.5399113	total: 2.96s	remaining: 3.98s
128:	learn: 16.4839662	total: 2.98s	remaining: 3.96s
129:	learn: 16.4314318	total: 3.01s	remaining: 3.94s
130:	learn: 16.3733374	total: 3.04s	remaining: 3.92s
131:	learn: 16.3224352	total: 3.06s	remaining: 3.9s
132:	learn: 16.2632236	total: 3.08s	remaining: 3.87s
133:	learn: 16.1988942	total: 3.11s	remaining: 3.85s
134:	learn: 16.1293176	total: 3.13s	remaining: 3.82s
135:	learn: 16.0733899	total: 3.15s	remaining: 3.8s
136:	learn: 16.0158498	total: 3.17s	remaining: 3.77s
137:	learn: 15.9591967	total: 3.19s	remaining: 3.75s
138:	learn: 15.9052493	total: 3.21s	remaining: 3.72s
139:	learn: 15.8564159	total: 3.24s	remaining: 3.71s
140:	learn: 15.7936916	total: 3.27s	remaining: 3.68s
141:	learn: 15.7367541	total: 3.29s	remaining: 3.66s
142:	learn: 15.6804129	total: 3.31s	remaining: 3.63s
143:	learn: 15.6256309	total: 3.33s	remaining: 3.61s
144:	learn: 15.5736025	total: 3.35s	remaining: 3.59s
145:	learn: 15.5203399	total: 3.38s	remaining: 3.57s
146:	learn: 15.4718595	total: 3.4s	remaining: 3.54s
147:	learn: 15.4311226	total: 3.43s	remaining: 3.52s
148:	learn: 15.3907562	total: 3.46s	remaining: 3.51s
149:	learn: 15.3310063	total: 3.49s	remaining: 3.49s
150:	learn: 15.2806596	total: 3.52s	remaining: 3.47s
151:	learn: 15.2374668	total: 3.54s	remaining: 3.45s
152:	learn: 15.2101464	total: 3.54s	remaining: 3.41s
153:	learn: 15.1607573	total: 3.57s	remaining: 3.38s
154:	learn: 15.1134025	total: 3.59s	remaining: 3.36s
155:	learn: 15.0676613	total: 3.62s	remaining: 3.34s
156:	learn: 15.0264233	total: 3.64s	remaining: 3.32s
157:	learn: 14.9765283	total: 3.68s	remaining: 3.31s
158:	learn: 14.9267361	total: 3.7s	remaining: 3.28s
159:	learn: 14.8792787	total: 3.73s	remaining: 3.26s
160:	learn: 14.8339292	total: 3.76s	remaining: 3.25s
161:	learn: 14.7850928	total: 3.78s	remaining: 3.22s
162:	learn: 14.7346218	total: 3.81s	remaining: 3.2s
163:	learn: 14.6875906	total: 3.83s	remaining: 3.18s
164:	learn: 14.6412434	total: 3.86s	remaining: 3.16s
165:	learn: 14.5988877	total: 3.89s	remaining: 3.14s
166:	learn: 14.5478790	total: 3.92s	remaining: 3.12s
167:	learn: 14.4967177	total: 3.94s	remaining: 3.1s
168:	learn: 14.4421400	total: 3.97s	remaining: 3.08s
169:	learn: 14.3987778	total: 4s	remaining: 3.06s
170:	learn: 14.3531038	total: 4.02s	remaining: 3.04s
171:	learn: 14.3106522	total: 4.05s	remaining: 3.01s
172:	learn: 14.2686857	total: 4.07s	remaining: 2.99s
173:	learn: 14.2235837	total: 4.11s	remaining: 2.97s
174:	learn: 14.1805323	total: 4.14s	remaining: 2.95s
175:	learn: 14.1332040	total: 4.16s	remaining: 2.93s
176:	learn: 14.0968880	total: 4.19s	remaining: 2.91s
177:	learn: 14.0622759	total: 4.21s	remaining: 2.89s
178:	learn: 14.0319541	total: 4.24s	remaining: 2.86s
179:	learn: 13.9882771	total: 4.27s	remaining: 2.85s
180:	learn: 13.9496593	total: 4.29s	remaining: 2.82s
181:	learn: 13.9034141	total: 4.33s	remaining: 2.81s
182:	learn: 13.8597071	total: 4.35s	remaining: 2.78s
183:	learn: 13.8154296	total: 4.38s	remaining: 2.76s
184:	learn: 13.7751533	total: 4.41s	remaining: 2.74s
185:	learn: 13.7294220	total: 4.43s	remaining: 2.72s
186:	learn: 13.6908603	total: 4.46s	remaining: 2.69s
187:	learn: 13.6533068	total: 4.48s	remaining: 2.67s
188:	learn: 13.6186138	total: 4.51s	remaining: 2.65s
189:	learn: 13.5810553	total: 4.55s	remaining: 2.63s
190:	learn: 13.5378988	total: 4.57s	remaining: 2.61s
191:	learn: 13.4891599	total: 4.6s	remaining: 2.59s
192:	learn: 13.4482041	total: 4.62s	remaining: 2.56s
193:	learn: 13.4166054	total: 4.65s	remaining: 2.54s
194:	learn: 13.3823696	total: 4.67s	remaining: 2.52s
195:	learn: 13.3426564	total: 4.7s	remaining: 2.49s
196:	learn: 13.3012579	total: 4.72s	remaining: 2.47s
197:	learn: 13.2625524	total: 4.76s	remaining: 2.45s
198:	learn: 13.2251981	total: 4.78s	remaining: 2.43s
199:	learn: 13.1861520	total: 4.81s	remaining: 2.41s
200:	learn: 13.1502120	total: 4.84s	remaining: 2.38s
201:	learn: 13.1138371	total: 4.86s	remaining: 2.36s
202:	learn: 13.0770461	total: 4.88s	remaining: 2.33s
203:	learn: 13.0417879	total: 4.91s	remaining: 2.31s
204:	learn: 13.0006414	total: 4.93s	remaining: 2.29s
205:	learn: 12.9646369	total: 4.97s	remaining: 2.27s
206:	learn: 12.9276921	total: 4.99s	remaining: 2.24s
207:	learn: 12.8939897	total: 5.02s	remaining: 2.22s
208:	learn: 12.8655136	total: 5.04s	remaining: 2.19s
209:	learn: 12.8335451	total: 5.08s	remaining: 2.18s
210:	learn: 12.8006136	total: 5.1s	remaining: 2.15s
211:	learn: 12.7636296	total: 5.12s	remaining: 2.13s
212:	learn: 12.7280060	total: 5.15s	remaining: 2.1s
213:	learn: 12.6955534	total: 5.18s	remaining: 2.08s
214:	learn: 12.6515516	total: 5.21s	remaining: 2.06s
215:	learn: 12.6171156	total: 5.24s	remaining: 2.04s
216:	learn: 12.5794917	total: 5.26s	remaining: 2.01s
217:	learn: 12.5480598	total: 5.29s	remaining: 1.99s
218:	learn: 12.5146424	total: 5.32s	remaining: 1.97s
219:	learn: 12.4826603	total: 5.35s	remaining: 1.94s
220:	learn: 12.4551083	total: 5.37s	remaining: 1.92s
221:	learn: 12.4210815	total: 5.4s	remaining: 1.9s
222:	learn: 12.3944277	total: 5.43s	remaining: 1.87s
223:	learn: 12.3568814	total: 5.45s	remaining: 1.85s
224:	learn: 12.3274830	total: 5.48s	remaining: 1.83s
225:	learn: 12.2947157	total: 5.5s	remaining: 1.8s
226:	learn: 12.2549787	total: 5.53s	remaining: 1.78s
227:	learn: 12.2190737	total: 5.55s	remaining: 1.75s
228:	learn: 12.1830419	total: 5.59s	remaining: 1.73s
229:	learn: 12.1535286	total: 5.62s	remaining: 1.71s
230:	learn: 12.1209633	total: 5.64s	remaining: 1.69s
231:	learn: 12.1011719	total: 5.67s	remaining: 1.66s
232:	learn: 12.0655225	total: 5.7s	remaining: 1.64s
233:	learn: 12.0339911	total: 5.72s	remaining: 1.61s
234:	learn: 12.0009720	total: 5.74s	remaining: 1.59s
235:	learn: 11.9683468	total: 5.77s	remaining: 1.56s
236:	learn: 11.9414512	total: 5.79s	remaining: 1.54s
237:	learn: 11.9143496	total: 5.83s	remaining: 1.52s
238:	learn: 11.8813757	total: 5.86s	remaining: 1.5s
239:	learn: 11.8512196	total: 5.88s	remaining: 1.47s
240:	learn: 11.8188680	total: 5.91s	remaining: 1.45s
241:	learn: 11.7872942	total: 5.94s	remaining: 1.42s
242:	learn: 11.7584780	total: 5.96s	remaining: 1.4s
243:	learn: 11.7286464	total: 5.98s	remaining: 1.37s
244:	learn: 11.7065328	total: 6.01s	remaining: 1.35s
245:	learn: 11.6742266	total: 6.04s	remaining: 1.32s
246:	learn: 11.6358845	total: 6.07s	remaining: 1.3s
247:	learn: 11.6053686	total: 6.09s	remaining: 1.28s
248:	learn: 11.5799981	total: 6.12s	remaining: 1.25s
249:	learn: 11.5564368	total: 6.15s	remaining: 1.23s
250:	learn: 11.5420498	total: 6.17s	remaining: 1.21s
251:	learn: 11.5106262	total: 6.2s	remaining: 1.18s
252:	learn: 11.4806808	total: 6.23s	remaining: 1.16s
253:	learn: 11.4566114	total: 6.26s	remaining: 1.13s
254:	learn: 11.4254774	total: 6.29s	remaining: 1.11s
255:	learn: 11.3978729	total: 6.31s	remaining: 1.08s
256:	learn: 11.3657161	total: 6.34s	remaining: 1.06s
257:	learn: 11.3355668	total: 6.37s	remaining: 1.04s
258:	learn: 11.3040620	total: 6.39s	remaining: 1.01s
259:	learn: 11.2771416	total: 6.42s	remaining: 988ms
260:	learn: 11.2504011	total: 6.44s	remaining: 963ms
261:	learn: 11.2255899	total: 6.47s	remaining: 939ms
262:	learn: 11.1923276	total: 6.5s	remaining: 915ms
263:	learn: 11.1664304	total: 6.53s	remaining: 890ms
264:	learn: 11.1395918	total: 6.55s	remaining: 865ms
265:	learn: 11.1183251	total: 6.58s	remaining: 841ms
266:	learn: 11.0967429	total: 6.6s	remaining: 816ms
267:	learn: 11.0655190	total: 6.63s	remaining: 792ms
268:	learn: 11.0363278	total: 6.66s	remaining: 767ms
269:	learn: 11.0053978	total: 6.69s	remaining: 743ms
270:	learn: 10.9769137	total: 6.71s	remaining: 719ms
271:	learn: 10.9560195	total: 6.74s	remaining: 694ms
272:	learn: 10.9347914	total: 6.76s	remaining: 669ms
273:	learn: 10.9105501	total: 6.79s	remaining: 644ms
274:	learn: 10.8888259	total: 6.81s	remaining: 619ms
275:	learn: 10.8670844	total: 6.84s	remaining: 595ms
276:	learn: 10.8443821	total: 6.86s	remaining: 570ms
277:	learn: 10.8103858	total: 6.9s	remaining: 546ms
278:	learn: 10.7822665	total: 6.93s	remaining: 521ms
279:	learn: 10.7558379	total: 6.95s	remaining: 497ms
280:	learn: 10.7323901	total: 6.98s	remaining: 472ms
281:	learn: 10.7091335	total: 7s	remaining: 447ms
282:	learn: 10.6833968	total: 7.03s	remaining: 422ms
283:	learn: 10.6578926	total: 7.05s	remaining: 397ms
284:	learn: 10.6362577	total: 7.08s	remaining: 372ms
285:	learn: 10.6113525	total: 7.11s	remaining: 348ms
286:	learn: 10.5900301	total: 7.14s	remaining: 323ms
287:	learn: 10.5725049	total: 7.17s	remaining: 299ms
288:	learn: 10.5490299	total: 7.19s	remaining: 274ms
289:	learn: 10.5223988	total: 7.22s	remaining: 249ms
290:	learn: 10.4979486	total: 7.24s	remaining: 224ms
291:	learn: 10.4774612	total: 7.25s	remaining: 199ms
292:	learn: 10.4538360	total: 7.27s	remaining: 174ms
293:	learn: 10.4239842	total: 7.3s	remaining: 149ms
294:	learn: 10.4055855	total: 7.33s	remaining: 124ms
295:	learn: 10.3872750	total: 7.35s	remaining: 99.4ms
296:	learn: 10.3614579	total: 7.38s	remaining: 74.5ms
297:	learn: 10.3366670	total: 7.41s	remaining: 49.8ms
298:	learn: 10.3100256	total: 7.44s	remaining: 24.9ms
299:	learn: 10.2813491	total: 7.46s	remaining: 0us
0:	learn: 43.7152227	total: 25.8ms	remaining: 7.72s
1:	learn: 43.4541703	total: 51.2ms	remaining: 7.62s
2:	learn: 43.1578143	total: 76.4ms	remaining: 7.56s
3:	learn: 42.8783278	total: 98.9ms	remaining: 7.32s
4:	learn: 42.6072908	total: 123ms	remaining: 7.24s
5:	learn: 42.3444208	total: 146ms	remaining: 7.16s
6:	learn: 42.0672063	total: 171ms	remaining: 7.17s
7:	learn: 41.7932543	total: 209ms	remaining: 7.64s
8:	learn: 41.5306590	total: 235ms	remaining: 7.6s
9:	learn: 41.2812169	total: 260ms	remaining: 7.54s
10:	learn: 41.0331540	total: 286ms	remaining: 7.52s
11:	learn: 40.8231308	total: 311ms	remaining: 7.45s
12:	learn: 40.5899007	total: 335ms	remaining: 7.39s
13:	learn: 40.3346026	total: 361ms	remaining: 7.37s
14:	learn: 40.1139803	total: 391ms	remaining: 7.42s
15:	learn: 39.8388121	total: 421ms	remaining: 7.46s
16:	learn: 39.5736935	total: 447ms	remaining: 7.43s
17:	learn: 39.3283794	total: 481ms	remaining: 7.53s
18:	learn: 39.1203770	total: 506ms	remaining: 7.49s
19:	learn: 38.8686340	total: 530ms	remaining: 7.42s
20:	learn: 38.6284119	total: 555ms	remaining: 7.37s
21:	learn: 38.3922159	total: 579ms	remaining: 7.32s
22:	learn: 38.1843490	total: 610ms	remaining: 7.34s
23:	learn: 37.9201544	total: 640ms	remaining: 7.36s
24:	learn: 37.7010071	total: 665ms	remaining: 7.31s
25:	learn: 37.4916719	total: 689ms	remaining: 7.26s
26:	learn: 37.2493473	total: 716ms	remaining: 7.24s
27:	learn: 37.0272256	total: 719ms	remaining: 6.98s
28:	learn: 36.7936594	total: 749ms	remaining: 7s
29:	learn: 36.5622783	total: 772ms	remaining: 6.95s
30:	learn: 36.3206995	total: 797ms	remaining: 6.91s
31:	learn: 36.0921866	total: 822ms	remaining: 6.88s
32:	learn: 35.8568426	total: 857ms	remaining: 6.93s
33:	learn: 35.6642425	total: 884ms	remaining: 6.91s
34:	learn: 35.4602687	total: 908ms	remaining: 6.88s
35:	learn: 35.2260548	total: 934ms	remaining: 6.85s
36:	learn: 35.0250404	total: 960ms	remaining: 6.83s
37:	learn: 34.7954201	total: 992ms	remaining: 6.84s
38:	learn: 34.5616477	total: 1.01s	remaining: 6.79s
39:	learn: 34.3769833	total: 1.04s	remaining: 6.76s
40:	learn: 34.1782144	total: 1.07s	remaining: 6.78s
41:	learn: 33.9982646	total: 1.1s	remaining: 6.75s
42:	learn: 33.7930222	total: 1.12s	remaining: 6.72s
43:	learn: 33.6060625	total: 1.15s	remaining: 6.69s
44:	learn: 33.4242352	total: 1.18s	remaining: 6.66s
45:	learn: 33.2274741	total: 1.2s	remaining: 6.63s
46:	learn: 33.0522381	total: 1.22s	remaining: 6.59s
47:	learn: 32.8691924	total: 1.26s	remaining: 6.61s
48:	learn: 32.6903220	total: 1.29s	remaining: 6.61s
49:	learn: 32.5203590	total: 1.32s	remaining: 6.58s
50:	learn: 32.3218264	total: 1.34s	remaining: 6.56s
51:	learn: 32.1326864	total: 1.37s	remaining: 6.53s
52:	learn: 31.9431774	total: 1.39s	remaining: 6.5s
53:	learn: 31.7713238	total: 1.42s	remaining: 6.46s
54:	learn: 31.6084772	total: 1.44s	remaining: 6.42s
55:	learn: 31.4319830	total: 1.46s	remaining: 6.38s
56:	learn: 31.2348926	total: 1.49s	remaining: 6.36s
57:	learn: 31.0725808	total: 1.53s	remaining: 6.39s
58:	learn: 30.8961475	total: 1.55s	remaining: 6.35s
59:	learn: 30.7313327	total: 1.58s	remaining: 6.32s
60:	learn: 30.5547997	total: 1.6s	remaining: 6.29s
61:	learn: 30.3898331	total: 1.63s	remaining: 6.26s
62:	learn: 30.2020504	total: 1.65s	remaining: 6.22s
63:	learn: 30.0345876	total: 1.68s	remaining: 6.19s
64:	learn: 29.9019760	total: 1.7s	remaining: 6.16s
65:	learn: 29.7335152	total: 1.74s	remaining: 6.15s
66:	learn: 29.5869773	total: 1.76s	remaining: 6.13s
67:	learn: 29.4481027	total: 1.79s	remaining: 6.12s
68:	learn: 29.2982753	total: 1.82s	remaining: 6.09s
69:	learn: 29.1351630	total: 1.84s	remaining: 6.06s
70:	learn: 29.0085567	total: 1.86s	remaining: 6.02s
71:	learn: 28.8581541	total: 1.89s	remaining: 5.98s
72:	learn: 28.7113567	total: 1.91s	remaining: 5.95s
73:	learn: 28.5624552	total: 1.95s	remaining: 5.94s
74:	learn: 28.4154962	total: 1.98s	remaining: 5.93s
75:	learn: 28.2695903	total: 1.98s	remaining: 5.83s
76:	learn: 28.1120360	total: 2s	remaining: 5.8s
77:	learn: 27.9649546	total: 2.03s	remaining: 5.77s
78:	learn: 27.8247227	total: 2.06s	remaining: 5.76s
79:	learn: 27.6732443	total: 2.08s	remaining: 5.74s
80:	learn: 27.5207411	total: 2.11s	remaining: 5.71s
81:	learn: 27.3675493	total: 2.14s	remaining: 5.69s
82:	learn: 27.2235515	total: 2.17s	remaining: 5.67s
83:	learn: 27.1024501	total: 2.19s	remaining: 5.64s
84:	learn: 26.9517795	total: 2.22s	remaining: 5.61s
85:	learn: 26.8209326	total: 2.24s	remaining: 5.58s
86:	learn: 26.6741987	total: 2.27s	remaining: 5.55s
87:	learn: 26.5456609	total: 2.3s	remaining: 5.53s
88:	learn: 26.4057263	total: 2.32s	remaining: 5.5s
89:	learn: 26.2892156	total: 2.35s	remaining: 5.47s
90:	learn: 26.1798472	total: 2.38s	remaining: 5.45s
91:	learn: 26.0588644	total: 2.4s	remaining: 5.43s
92:	learn: 25.9471232	total: 2.43s	remaining: 5.4s
93:	learn: 25.8112758	total: 2.45s	remaining: 5.38s
94:	learn: 25.6767187	total: 2.48s	remaining: 5.35s
95:	learn: 25.5524711	total: 2.5s	remaining: 5.32s
96:	learn: 25.4312648	total: 2.53s	remaining: 5.29s
97:	learn: 25.3010368	total: 2.56s	remaining: 5.27s
98:	learn: 25.1828003	total: 2.58s	remaining: 5.24s
99:	learn: 25.0729136	total: 2.62s	remaining: 5.23s
100:	learn: 24.9491417	total: 2.64s	remaining: 5.21s
101:	learn: 24.8375479	total: 2.67s	remaining: 5.18s
102:	learn: 24.7258715	total: 2.69s	remaining: 5.15s
103:	learn: 24.6132311	total: 2.72s	remaining: 5.13s
104:	learn: 24.4911063	total: 2.74s	remaining: 5.09s
105:	learn: 24.3655873	total: 2.77s	remaining: 5.06s
106:	learn: 24.2576341	total: 2.79s	remaining: 5.03s
107:	learn: 24.1521045	total: 2.82s	remaining: 5.01s
108:	learn: 24.0283222	total: 2.85s	remaining: 5s
109:	learn: 23.9093633	total: 2.88s	remaining: 4.98s
110:	learn: 23.7875690	total: 2.9s	remaining: 4.95s
111:	learn: 23.6743709	total: 2.93s	remaining: 4.92s
112:	learn: 23.5794434	total: 2.96s	remaining: 4.89s
113:	learn: 23.4721902	total: 2.98s	remaining: 4.86s
114:	learn: 23.3737227	total: 3s	remaining: 4.83s
115:	learn: 23.2685547	total: 3.03s	remaining: 4.8s
116:	learn: 23.1632988	total: 3.05s	remaining: 4.78s
117:	learn: 23.0591176	total: 3.09s	remaining: 4.77s
118:	learn: 22.9710342	total: 3.12s	remaining: 4.74s
119:	learn: 22.8518610	total: 3.15s	remaining: 4.72s
120:	learn: 22.7571658	total: 3.17s	remaining: 4.69s
121:	learn: 22.6476333	total: 3.19s	remaining: 4.66s
122:	learn: 22.5406444	total: 3.22s	remaining: 4.63s
123:	learn: 22.4481789	total: 3.24s	remaining: 4.6s
124:	learn: 22.3371412	total: 3.27s	remaining: 4.58s
125:	learn: 22.2363838	total: 3.3s	remaining: 4.56s
126:	learn: 22.1424569	total: 3.33s	remaining: 4.54s
127:	learn: 22.0405435	total: 3.36s	remaining: 4.51s
128:	learn: 21.9560873	total: 3.38s	remaining: 4.48s
129:	learn: 21.8863114	total: 3.41s	remaining: 4.45s
130:	learn: 21.7920659	total: 3.43s	remaining: 4.42s
131:	learn: 21.6932516	total: 3.45s	remaining: 4.4s
132:	learn: 21.5922382	total: 3.48s	remaining: 4.37s
133:	learn: 21.5161138	total: 3.51s	remaining: 4.35s
134:	learn: 21.4223608	total: 3.54s	remaining: 4.32s
135:	learn: 21.3175823	total: 3.56s	remaining: 4.3s
136:	learn: 21.2307076	total: 3.59s	remaining: 4.28s
137:	learn: 21.1472687	total: 3.62s	remaining: 4.25s
138:	learn: 21.0453028	total: 3.64s	remaining: 4.22s
139:	learn: 20.9646544	total: 3.67s	remaining: 4.19s
140:	learn: 20.8732575	total: 3.69s	remaining: 4.16s
141:	learn: 20.7811458	total: 3.73s	remaining: 4.15s
142:	learn: 20.6980385	total: 3.75s	remaining: 4.12s
143:	learn: 20.6161666	total: 3.78s	remaining: 4.09s
144:	learn: 20.5217631	total: 3.8s	remaining: 4.07s
145:	learn: 20.4497223	total: 3.83s	remaining: 4.04s
146:	learn: 20.3642928	total: 3.86s	remaining: 4.02s
147:	learn: 20.2886195	total: 3.88s	remaining: 3.99s
148:	learn: 20.2031657	total: 3.91s	remaining: 3.96s
149:	learn: 20.1263557	total: 3.95s	remaining: 3.95s
150:	learn: 20.0547427	total: 3.97s	remaining: 3.92s
151:	learn: 19.9773344	total: 4s	remaining: 3.89s
152:	learn: 19.9028201	total: 4.02s	remaining: 3.87s
153:	learn: 19.8160522	total: 4.05s	remaining: 3.84s
154:	learn: 19.7345351	total: 4.07s	remaining: 3.81s
155:	learn: 19.6586410	total: 4.09s	remaining: 3.78s
156:	learn: 19.5844066	total: 4.13s	remaining: 3.76s
157:	learn: 19.5059690	total: 4.16s	remaining: 3.74s
158:	learn: 19.4345665	total: 4.18s	remaining: 3.71s
159:	learn: 19.3729247	total: 4.21s	remaining: 3.68s
160:	learn: 19.2940290	total: 4.24s	remaining: 3.66s
161:	learn: 19.2361152	total: 4.26s	remaining: 3.63s
162:	learn: 19.1564311	total: 4.28s	remaining: 3.6s
163:	learn: 19.0868280	total: 4.31s	remaining: 3.57s
164:	learn: 19.0102994	total: 4.33s	remaining: 3.55s
165:	learn: 18.9245210	total: 4.37s	remaining: 3.52s
166:	learn: 18.8498288	total: 4.4s	remaining: 3.5s
167:	learn: 18.7766690	total: 4.42s	remaining: 3.48s
168:	learn: 18.7082496	total: 4.45s	remaining: 3.45s
169:	learn: 18.6351920	total: 4.47s	remaining: 3.42s
170:	learn: 18.5623213	total: 4.5s	remaining: 3.39s
171:	learn: 18.4784598	total: 4.52s	remaining: 3.36s
172:	learn: 18.4047687	total: 4.54s	remaining: 3.34s
173:	learn: 18.3356706	total: 4.58s	remaining: 3.31s
174:	learn: 18.2673167	total: 4.6s	remaining: 3.29s
175:	learn: 18.1928824	total: 4.64s	remaining: 3.27s
176:	learn: 18.1268178	total: 4.66s	remaining: 3.24s
177:	learn: 18.0544238	total: 4.69s	remaining: 3.21s
178:	learn: 17.9860979	total: 4.71s	remaining: 3.18s
179:	learn: 17.9244440	total: 4.74s	remaining: 3.16s
180:	learn: 17.8535620	total: 4.76s	remaining: 3.13s
181:	learn: 17.7958165	total: 4.79s	remaining: 3.1s
182:	learn: 17.7402911	total: 4.82s	remaining: 3.08s
183:	learn: 17.6851908	total: 4.84s	remaining: 3.05s
184:	learn: 17.6130229	total: 4.87s	remaining: 3.03s
185:	learn: 17.5412491	total: 4.91s	remaining: 3.01s
186:	learn: 17.4843388	total: 4.93s	remaining: 2.98s
187:	learn: 17.4232451	total: 4.96s	remaining: 2.95s
188:	learn: 17.3547499	total: 4.98s	remaining: 2.93s
189:	learn: 17.3014574	total: 5.01s	remaining: 2.9s
190:	learn: 17.2424485	total: 5.04s	remaining: 2.88s
191:	learn: 17.1878263	total: 5.06s	remaining: 2.85s
192:	learn: 17.1228765	total: 5.09s	remaining: 2.82s
193:	learn: 17.0601899	total: 5.11s	remaining: 2.79s
194:	learn: 17.0056282	total: 5.14s	remaining: 2.77s
195:	learn: 16.9309201	total: 5.17s	remaining: 2.74s
196:	learn: 16.8679658	total: 5.2s	remaining: 2.72s
197:	learn: 16.8079830	total: 5.23s	remaining: 2.69s
198:	learn: 16.7623162	total: 5.25s	remaining: 2.67s
199:	learn: 16.7202834	total: 5.28s	remaining: 2.64s
200:	learn: 16.6719839	total: 5.3s	remaining: 2.61s
201:	learn: 16.6236626	total: 5.33s	remaining: 2.58s
202:	learn: 16.5619633	total: 5.35s	remaining: 2.56s
203:	learn: 16.5033532	total: 5.38s	remaining: 2.53s
204:	learn: 16.4507719	total: 5.4s	remaining: 2.5s
205:	learn: 16.4012674	total: 5.44s	remaining: 2.48s
206:	learn: 16.3533118	total: 5.47s	remaining: 2.46s
207:	learn: 16.2986397	total: 5.49s	remaining: 2.43s
208:	learn: 16.2420216	total: 5.52s	remaining: 2.4s
209:	learn: 16.1856617	total: 5.54s	remaining: 2.38s
210:	learn: 16.1342718	total: 5.57s	remaining: 2.35s
211:	learn: 16.0772431	total: 5.59s	remaining: 2.32s
212:	learn: 16.0318038	total: 5.62s	remaining: 2.29s
213:	learn: 15.9660557	total: 5.65s	remaining: 2.27s
214:	learn: 15.9154358	total: 5.68s	remaining: 2.25s
215:	learn: 15.8630892	total: 5.71s	remaining: 2.22s
216:	learn: 15.8050319	total: 5.74s	remaining: 2.19s
217:	learn: 15.7563904	total: 5.76s	remaining: 2.17s
218:	learn: 15.7074042	total: 5.78s	remaining: 2.14s
219:	learn: 15.6515231	total: 5.81s	remaining: 2.11s
220:	learn: 15.6030650	total: 5.83s	remaining: 2.08s
221:	learn: 15.5500827	total: 5.87s	remaining: 2.06s
222:	learn: 15.4972332	total: 5.89s	remaining: 2.03s
223:	learn: 15.4506449	total: 5.92s	remaining: 2.01s
224:	learn: 15.3972559	total: 5.95s	remaining: 1.98s
225:	learn: 15.3430402	total: 5.98s	remaining: 1.96s
226:	learn: 15.2962005	total: 6s	remaining: 1.93s
227:	learn: 15.2487710	total: 6.03s	remaining: 1.9s
228:	learn: 15.2053893	total: 6.06s	remaining: 1.88s
229:	learn: 15.1633951	total: 6.08s	remaining: 1.85s
230:	learn: 15.1202978	total: 6.11s	remaining: 1.82s
231:	learn: 15.0691662	total: 6.13s	remaining: 1.8s
232:	learn: 15.0158780	total: 6.16s	remaining: 1.77s
233:	learn: 14.9632329	total: 6.18s	remaining: 1.74s
234:	learn: 14.9179389	total: 6.22s	remaining: 1.72s
235:	learn: 14.8724464	total: 6.24s	remaining: 1.69s
236:	learn: 14.8205302	total: 6.26s	remaining: 1.67s
237:	learn: 14.7791401	total: 6.3s	remaining: 1.64s
238:	learn: 14.7253916	total: 6.33s	remaining: 1.61s
239:	learn: 14.6836545	total: 6.35s	remaining: 1.59s
240:	learn: 14.6415382	total: 6.38s	remaining: 1.56s
241:	learn: 14.5908296	total: 6.4s	remaining: 1.53s
242:	learn: 14.5476260	total: 6.42s	remaining: 1.51s
243:	learn: 14.5057459	total: 6.45s	remaining: 1.48s
244:	learn: 14.4612880	total: 6.48s	remaining: 1.46s
245:	learn: 14.4279319	total: 6.51s	remaining: 1.43s
246:	learn: 14.3795141	total: 6.54s	remaining: 1.4s
247:	learn: 14.3346521	total: 6.56s	remaining: 1.38s
248:	learn: 14.2915193	total: 6.59s	remaining: 1.35s
249:	learn: 14.2492833	total: 6.61s	remaining: 1.32s
250:	learn: 14.2124298	total: 6.64s	remaining: 1.29s
251:	learn: 14.1691629	total: 6.66s	remaining: 1.27s
252:	learn: 14.1238622	total: 6.69s	remaining: 1.24s
253:	learn: 14.0788315	total: 6.71s	remaining: 1.22s
254:	learn: 14.0341070	total: 6.75s	remaining: 1.19s
255:	learn: 13.9982762	total: 6.78s	remaining: 1.17s
256:	learn: 13.9618516	total: 6.8s	remaining: 1.14s
257:	learn: 13.9317416	total: 6.83s	remaining: 1.11s
258:	learn: 13.8904672	total: 6.86s	remaining: 1.08s
259:	learn: 13.8515162	total: 6.88s	remaining: 1.06s
260:	learn: 13.8084853	total: 6.91s	remaining: 1.03s
261:	learn: 13.7626436	total: 6.94s	remaining: 1.01s
262:	learn: 13.7219194	total: 6.97s	remaining: 981ms
263:	learn: 13.6813564	total: 7.01s	remaining: 955ms
264:	learn: 13.6476847	total: 7.03s	remaining: 929ms
265:	learn: 13.6026451	total: 7.06s	remaining: 902ms
266:	learn: 13.5628070	total: 7.08s	remaining: 875ms
267:	learn: 13.5267139	total: 7.11s	remaining: 848ms
268:	learn: 13.4901774	total: 7.13s	remaining: 822ms
269:	learn: 13.4509942	total: 7.16s	remaining: 795ms
270:	learn: 13.4052181	total: 7.19s	remaining: 769ms
271:	learn: 13.3725535	total: 7.21s	remaining: 743ms
272:	learn: 13.3414763	total: 7.24s	remaining: 716ms
273:	learn: 13.3030862	total: 7.27s	remaining: 690ms
274:	learn: 13.2668157	total: 7.3s	remaining: 663ms
275:	learn: 13.2223450	total: 7.32s	remaining: 637ms
276:	learn: 13.1804358	total: 7.34s	remaining: 610ms
277:	learn: 13.1399325	total: 7.37s	remaining: 583ms
278:	learn: 13.1033304	total: 7.4s	remaining: 557ms
279:	learn: 13.0669058	total: 7.43s	remaining: 530ms
280:	learn: 13.0384671	total: 7.45s	remaining: 504ms
281:	learn: 13.0037789	total: 7.48s	remaining: 477ms
282:	learn: 12.9645250	total: 7.5s	remaining: 451ms
283:	learn: 12.9241108	total: 7.53s	remaining: 424ms
284:	learn: 12.8975080	total: 7.56s	remaining: 398ms
285:	learn: 12.8572669	total: 7.58s	remaining: 371ms
286:	learn: 12.8247786	total: 7.62s	remaining: 345ms
287:	learn: 12.7991121	total: 7.64s	remaining: 319ms
288:	learn: 12.7592983	total: 7.67s	remaining: 292ms
289:	learn: 12.7299599	total: 7.7s	remaining: 265ms
290:	learn: 12.6996664	total: 7.72s	remaining: 239ms
291:	learn: 12.6676675	total: 7.74s	remaining: 212ms
292:	learn: 12.6304459	total: 7.77s	remaining: 186ms
293:	learn: 12.6000320	total: 7.8s	remaining: 159ms
294:	learn: 12.5671112	total: 7.83s	remaining: 133ms
295:	learn: 12.5371864	total: 7.86s	remaining: 106ms
296:	learn: 12.5078024	total: 7.89s	remaining: 79.7ms
297:	learn: 12.4765847	total: 7.91s	remaining: 53.1ms
298:	learn: 12.4387052	total: 7.94s	remaining: 26.5ms
299:	learn: 12.4034594	total: 7.96s	remaining: 0us
0:	learn: 47.2066051	total: 2.97ms	remaining: 889ms
1:	learn: 46.9322506	total: 28.7ms	remaining: 4.28s
2:	learn: 46.6606656	total: 53.4ms	remaining: 5.29s
3:	learn: 46.3774499	total: 86.4ms	remaining: 6.4s
4:	learn: 46.1018596	total: 111ms	remaining: 6.55s
5:	learn: 45.8731555	total: 134ms	remaining: 6.55s
6:	learn: 45.6007817	total: 157ms	remaining: 6.56s
7:	learn: 45.3453141	total: 181ms	remaining: 6.62s
8:	learn: 45.0827993	total: 204ms	remaining: 6.6s
9:	learn: 44.8482508	total: 227ms	remaining: 6.57s
10:	learn: 44.5829021	total: 251ms	remaining: 6.6s
11:	learn: 44.3343788	total: 277ms	remaining: 6.65s
12:	learn: 44.1081283	total: 308ms	remaining: 6.8s
13:	learn: 43.8942877	total: 342ms	remaining: 6.98s
14:	learn: 43.6535050	total: 366ms	remaining: 6.96s
15:	learn: 43.3693245	total: 390ms	remaining: 6.93s
16:	learn: 43.0936657	total: 414ms	remaining: 6.9s
17:	learn: 42.8660960	total: 439ms	remaining: 6.88s
18:	learn: 42.6627313	total: 463ms	remaining: 6.85s
19:	learn: 42.4070768	total: 488ms	remaining: 6.83s
20:	learn: 42.1987495	total: 520ms	remaining: 6.91s
21:	learn: 41.9619243	total: 547ms	remaining: 6.91s
22:	learn: 41.6939241	total: 572ms	remaining: 6.89s
23:	learn: 41.4865537	total: 604ms	remaining: 6.94s
24:	learn: 41.2577043	total: 628ms	remaining: 6.91s
25:	learn: 41.0242935	total: 650ms	remaining: 6.85s
26:	learn: 40.8070747	total: 674ms	remaining: 6.82s
27:	learn: 40.5633167	total: 699ms	remaining: 6.79s
28:	learn: 40.3605859	total: 733ms	remaining: 6.85s
29:	learn: 40.1289330	total: 761ms	remaining: 6.85s
30:	learn: 39.9162572	total: 787ms	remaining: 6.83s
31:	learn: 39.7112366	total: 813ms	remaining: 6.81s
32:	learn: 39.5150807	total: 839ms	remaining: 6.78s
33:	learn: 39.3167500	total: 873ms	remaining: 6.83s
34:	learn: 39.0982445	total: 898ms	remaining: 6.8s
35:	learn: 38.9300488	total: 928ms	remaining: 6.8s
36:	learn: 38.7137713	total: 958ms	remaining: 6.81s
37:	learn: 38.5619202	total: 984ms	remaining: 6.78s
38:	learn: 38.3469017	total: 1.01s	remaining: 6.75s
39:	learn: 38.1799409	total: 1.03s	remaining: 6.72s
40:	learn: 38.0267019	total: 1.06s	remaining: 6.69s
41:	learn: 37.8292308	total: 1.08s	remaining: 6.66s
42:	learn: 37.6390603	total: 1.12s	remaining: 6.68s
43:	learn: 37.4462287	total: 1.14s	remaining: 6.65s
44:	learn: 37.2593518	total: 1.18s	remaining: 6.67s
45:	learn: 37.0460433	total: 1.2s	remaining: 6.63s
46:	learn: 36.9067561	total: 1.23s	remaining: 6.6s
47:	learn: 36.7368293	total: 1.25s	remaining: 6.58s
48:	learn: 36.5208932	total: 1.28s	remaining: 6.55s
49:	learn: 36.3434910	total: 1.3s	remaining: 6.51s
50:	learn: 36.1664717	total: 1.32s	remaining: 6.47s
51:	learn: 35.9767045	total: 1.35s	remaining: 6.43s
52:	learn: 35.8291871	total: 1.38s	remaining: 6.43s
53:	learn: 35.6334930	total: 1.41s	remaining: 6.43s
54:	learn: 35.4457979	total: 1.44s	remaining: 6.4s
55:	learn: 35.2876901	total: 1.46s	remaining: 6.38s
56:	learn: 35.0953841	total: 1.49s	remaining: 6.34s
57:	learn: 34.9349948	total: 1.51s	remaining: 6.31s
58:	learn: 34.7891044	total: 1.54s	remaining: 6.28s
59:	learn: 34.6307667	total: 1.56s	remaining: 6.24s
60:	learn: 34.4536402	total: 1.58s	remaining: 6.21s
61:	learn: 34.3115958	total: 1.61s	remaining: 6.19s
62:	learn: 34.1015612	total: 1.65s	remaining: 6.21s
63:	learn: 33.9396305	total: 1.67s	remaining: 6.17s
64:	learn: 33.7697101	total: 1.7s	remaining: 6.14s
65:	learn: 33.5942192	total: 1.73s	remaining: 6.12s
66:	learn: 33.4437209	total: 1.75s	remaining: 6.09s
67:	learn: 33.2713872	total: 1.77s	remaining: 6.06s
68:	learn: 33.1222742	total: 1.8s	remaining: 6.03s
69:	learn: 32.9491993	total: 1.82s	remaining: 6s
70:	learn: 32.7993999	total: 1.86s	remaining: 6s
71:	learn: 32.6389444	total: 1.89s	remaining: 5.99s
72:	learn: 32.5136777	total: 1.92s	remaining: 5.98s
73:	learn: 32.3250532	total: 1.95s	remaining: 5.95s
74:	learn: 32.1681212	total: 1.97s	remaining: 5.92s
75:	learn: 32.0305457	total: 2s	remaining: 5.89s
76:	learn: 31.8939124	total: 2.02s	remaining: 5.87s
77:	learn: 31.7307002	total: 2.06s	remaining: 5.86s
78:	learn: 31.5506551	total: 2.08s	remaining: 5.83s
79:	learn: 31.3585582	total: 2.11s	remaining: 5.81s
80:	learn: 31.2377884	total: 2.14s	remaining: 5.78s
81:	learn: 31.0872848	total: 2.16s	remaining: 5.75s
82:	learn: 30.9196897	total: 2.19s	remaining: 5.74s
83:	learn: 30.7627899	total: 2.22s	remaining: 5.7s
84:	learn: 30.6354581	total: 2.24s	remaining: 5.67s
85:	learn: 30.4812118	total: 2.27s	remaining: 5.64s
86:	learn: 30.3501393	total: 2.3s	remaining: 5.63s
87:	learn: 30.2317309	total: 2.33s	remaining: 5.6s
88:	learn: 30.0770872	total: 2.35s	remaining: 5.58s
89:	learn: 29.9517251	total: 2.38s	remaining: 5.55s
90:	learn: 29.8182899	total: 2.4s	remaining: 5.52s
91:	learn: 29.6614210	total: 2.43s	remaining: 5.5s
92:	learn: 29.5523686	total: 2.46s	remaining: 5.47s
93:	learn: 29.4053683	total: 2.48s	remaining: 5.44s
94:	learn: 29.2601476	total: 2.52s	remaining: 5.43s
95:	learn: 29.1182094	total: 2.54s	remaining: 5.41s
96:	learn: 28.9885050	total: 2.57s	remaining: 5.38s
97:	learn: 28.8780981	total: 2.6s	remaining: 5.35s
98:	learn: 28.7484395	total: 2.62s	remaining: 5.32s
99:	learn: 28.6007901	total: 2.64s	remaining: 5.29s
100:	learn: 28.4647305	total: 2.67s	remaining: 5.26s
101:	learn: 28.3447045	total: 2.7s	remaining: 5.24s
102:	learn: 28.2185610	total: 2.73s	remaining: 5.23s
103:	learn: 28.1000930	total: 2.76s	remaining: 5.2s
104:	learn: 28.0014447	total: 2.78s	remaining: 5.17s
105:	learn: 27.8804790	total: 2.81s	remaining: 5.14s
106:	learn: 27.7561524	total: 2.83s	remaining: 5.11s
107:	learn: 27.6414765	total: 2.86s	remaining: 5.08s
108:	learn: 27.4937136	total: 2.88s	remaining: 5.05s
109:	learn: 27.3682776	total: 2.91s	remaining: 5.02s
110:	learn: 27.2527017	total: 2.94s	remaining: 5.01s
111:	learn: 27.1409655	total: 2.98s	remaining: 5s
112:	learn: 27.0220901	total: 3s	remaining: 4.97s
113:	learn: 26.9171572	total: 3.02s	remaining: 4.93s
114:	learn: 26.7707607	total: 3.05s	remaining: 4.9s
115:	learn: 26.6374802	total: 3.07s	remaining: 4.87s
116:	learn: 26.5161962	total: 3.1s	remaining: 4.84s
117:	learn: 26.3939712	total: 3.12s	remaining: 4.82s
118:	learn: 26.2670228	total: 3.15s	remaining: 4.8s
119:	learn: 26.1658805	total: 3.18s	remaining: 4.77s
120:	learn: 26.0439756	total: 3.2s	remaining: 4.74s
121:	learn: 25.9319704	total: 3.24s	remaining: 4.72s
122:	learn: 25.8133601	total: 3.26s	remaining: 4.69s
123:	learn: 25.6838585	total: 3.29s	remaining: 4.66s
124:	learn: 25.5642851	total: 3.31s	remaining: 4.63s
125:	learn: 25.4551493	total: 3.33s	remaining: 4.6s
126:	learn: 25.3283382	total: 3.37s	remaining: 4.58s
127:	learn: 25.2303422	total: 3.39s	remaining: 4.56s
128:	learn: 25.1301231	total: 3.42s	remaining: 4.53s
129:	learn: 25.0059477	total: 3.44s	remaining: 4.5s
130:	learn: 24.9128714	total: 3.48s	remaining: 4.49s
131:	learn: 24.8270009	total: 3.5s	remaining: 4.46s
132:	learn: 24.7282856	total: 3.52s	remaining: 4.43s
133:	learn: 24.6068738	total: 3.55s	remaining: 4.4s
134:	learn: 24.4944609	total: 3.58s	remaining: 4.38s
135:	learn: 24.4007736	total: 3.61s	remaining: 4.35s
136:	learn: 24.2652984	total: 3.63s	remaining: 4.32s
137:	learn: 24.1998753	total: 3.63s	remaining: 4.27s
138:	learn: 24.1187576	total: 3.66s	remaining: 4.24s
139:	learn: 24.0053052	total: 3.69s	remaining: 4.21s
140:	learn: 23.9210487	total: 3.71s	remaining: 4.18s
141:	learn: 23.8220050	total: 3.74s	remaining: 4.16s
142:	learn: 23.7320610	total: 3.77s	remaining: 4.13s
143:	learn: 23.6304095	total: 3.8s	remaining: 4.12s
144:	learn: 23.5435925	total: 3.83s	remaining: 4.09s
145:	learn: 23.4490235	total: 3.85s	remaining: 4.06s
146:	learn: 23.3593062	total: 3.88s	remaining: 4.04s
147:	learn: 23.2441220	total: 3.9s	remaining: 4.01s
148:	learn: 23.1649310	total: 3.93s	remaining: 3.98s
149:	learn: 23.0937137	total: 3.95s	remaining: 3.95s
150:	learn: 23.0033824	total: 3.98s	remaining: 3.92s
151:	learn: 22.9105498	total: 4.01s	remaining: 3.9s
152:	learn: 22.8240080	total: 4.04s	remaining: 3.88s
153:	learn: 22.7410049	total: 4.06s	remaining: 3.85s
154:	learn: 22.6555811	total: 4.09s	remaining: 3.83s
155:	learn: 22.5562543	total: 4.11s	remaining: 3.8s
156:	learn: 22.4580905	total: 4.14s	remaining: 3.77s
157:	learn: 22.3853437	total: 4.16s	remaining: 3.74s
158:	learn: 22.2910058	total: 4.19s	remaining: 3.71s
159:	learn: 22.2026924	total: 4.21s	remaining: 3.69s
160:	learn: 22.1082691	total: 4.24s	remaining: 3.66s
161:	learn: 22.0485799	total: 4.28s	remaining: 3.65s
162:	learn: 21.9732579	total: 4.3s	remaining: 3.62s
163:	learn: 21.8694207	total: 4.33s	remaining: 3.59s
164:	learn: 21.7852612	total: 4.36s	remaining: 3.56s
165:	learn: 21.7256414	total: 4.38s	remaining: 3.54s
166:	learn: 21.6428497	total: 4.4s	remaining: 3.51s
167:	learn: 21.5677079	total: 4.43s	remaining: 3.48s
168:	learn: 21.4593059	total: 4.45s	remaining: 3.45s
169:	learn: 21.3886739	total: 4.49s	remaining: 3.43s
170:	learn: 21.3128676	total: 4.51s	remaining: 3.4s
171:	learn: 21.2261221	total: 4.54s	remaining: 3.38s
172:	learn: 21.1358765	total: 4.57s	remaining: 3.36s
173:	learn: 21.0667531	total: 4.59s	remaining: 3.33s
174:	learn: 20.9949684	total: 4.62s	remaining: 3.3s
175:	learn: 20.9197151	total: 4.64s	remaining: 3.27s
176:	learn: 20.8348829	total: 4.67s	remaining: 3.24s
177:	learn: 20.7684704	total: 4.7s	remaining: 3.22s
178:	learn: 20.6988083	total: 4.72s	remaining: 3.19s
179:	learn: 20.6152013	total: 4.75s	remaining: 3.17s
180:	learn: 20.5573648	total: 4.78s	remaining: 3.14s
181:	learn: 20.4712922	total: 4.81s	remaining: 3.12s
182:	learn: 20.3807903	total: 4.83s	remaining: 3.09s
183:	learn: 20.2970112	total: 4.86s	remaining: 3.06s
184:	learn: 20.2034240	total: 4.88s	remaining: 3.03s
185:	learn: 20.1175766	total: 4.91s	remaining: 3.01s
186:	learn: 20.0348028	total: 4.94s	remaining: 2.99s
187:	learn: 19.9683863	total: 4.96s	remaining: 2.96s
188:	learn: 19.9146008	total: 4.99s	remaining: 2.93s
189:	learn: 19.8485219	total: 5.01s	remaining: 2.9s
190:	learn: 19.7815231	total: 5.05s	remaining: 2.88s
191:	learn: 19.7226636	total: 5.07s	remaining: 2.85s
192:	learn: 19.6514314	total: 5.1s	remaining: 2.83s
193:	learn: 19.5874662	total: 5.13s	remaining: 2.8s
194:	learn: 19.5188482	total: 5.16s	remaining: 2.78s
195:	learn: 19.4132924	total: 5.18s	remaining: 2.75s
196:	learn: 19.3336041	total: 5.21s	remaining: 2.72s
197:	learn: 19.2540160	total: 5.23s	remaining: 2.7s
198:	learn: 19.1814868	total: 5.26s	remaining: 2.67s
199:	learn: 19.1375571	total: 5.28s	remaining: 2.64s
200:	learn: 19.0597510	total: 5.31s	remaining: 2.62s
201:	learn: 18.9987290	total: 5.35s	remaining: 2.59s
202:	learn: 18.9357168	total: 5.37s	remaining: 2.57s
203:	learn: 18.8809983	total: 5.4s	remaining: 2.54s
204:	learn: 18.7949653	total: 5.42s	remaining: 2.51s
205:	learn: 18.7468832	total: 5.45s	remaining: 2.48s
206:	learn: 18.6810375	total: 5.47s	remaining: 2.46s
207:	learn: 18.6260175	total: 5.5s	remaining: 2.43s
208:	learn: 18.5784866	total: 5.52s	remaining: 2.4s
209:	learn: 18.5195431	total: 5.55s	remaining: 2.38s
210:	learn: 18.4524044	total: 5.59s	remaining: 2.36s
211:	learn: 18.3675987	total: 5.61s	remaining: 2.33s
212:	learn: 18.3150235	total: 5.64s	remaining: 2.3s
213:	learn: 18.2483349	total: 5.66s	remaining: 2.28s
214:	learn: 18.2130927	total: 5.69s	remaining: 2.25s
215:	learn: 18.1515897	total: 5.71s	remaining: 2.22s
216:	learn: 18.0941982	total: 5.74s	remaining: 2.19s
217:	learn: 18.0262823	total: 5.77s	remaining: 2.17s
218:	learn: 17.9660967	total: 5.79s	remaining: 2.14s
219:	learn: 17.8985691	total: 5.83s	remaining: 2.12s
220:	learn: 17.8383582	total: 5.86s	remaining: 2.09s
221:	learn: 17.7535770	total: 5.88s	remaining: 2.07s
222:	learn: 17.7044922	total: 5.9s	remaining: 2.04s
223:	learn: 17.6537442	total: 5.93s	remaining: 2.01s
224:	learn: 17.6005077	total: 5.95s	remaining: 1.98s
225:	learn: 17.5458811	total: 5.99s	remaining: 1.96s
226:	learn: 17.4973124	total: 6.01s	remaining: 1.93s
227:	learn: 17.4191591	total: 6.04s	remaining: 1.91s
228:	learn: 17.3619650	total: 6.07s	remaining: 1.88s
229:	learn: 17.3229834	total: 6.1s	remaining: 1.85s
230:	learn: 17.2721322	total: 6.12s	remaining: 1.83s
231:	learn: 17.2213528	total: 6.14s	remaining: 1.8s
232:	learn: 17.1648847	total: 6.17s	remaining: 1.77s
233:	learn: 17.1171379	total: 6.2s	remaining: 1.75s
234:	learn: 17.0577754	total: 6.23s	remaining: 1.72s
235:	learn: 16.9936285	total: 6.25s	remaining: 1.7s
236:	learn: 16.9401659	total: 6.28s	remaining: 1.67s
237:	learn: 16.9011805	total: 6.3s	remaining: 1.64s
238:	learn: 16.8468936	total: 6.33s	remaining: 1.61s
239:	learn: 16.7983935	total: 6.36s	remaining: 1.59s
240:	learn: 16.7461195	total: 6.39s	remaining: 1.56s
241:	learn: 16.6915220	total: 6.42s	remaining: 1.54s
242:	learn: 16.6467209	total: 6.45s	remaining: 1.51s
243:	learn: 16.5847369	total: 6.47s	remaining: 1.49s
244:	learn: 16.5460628	total: 6.5s	remaining: 1.46s
245:	learn: 16.5015037	total: 6.52s	remaining: 1.43s
246:	learn: 16.4403631	total: 6.54s	remaining: 1.4s
247:	learn: 16.3877470	total: 6.57s	remaining: 1.38s
248:	learn: 16.3539553	total: 6.59s	remaining: 1.35s
249:	learn: 16.3015470	total: 6.63s	remaining: 1.33s
250:	learn: 16.2710475	total: 6.66s	remaining: 1.3s
251:	learn: 16.2318420	total: 6.68s	remaining: 1.27s
252:	learn: 16.1799554	total: 6.71s	remaining: 1.25s
253:	learn: 16.1251371	total: 6.73s	remaining: 1.22s
254:	learn: 16.0766054	total: 6.76s	remaining: 1.19s
255:	learn: 16.0331296	total: 6.78s	remaining: 1.17s
256:	learn: 15.9716433	total: 6.81s	remaining: 1.14s
257:	learn: 15.9451600	total: 6.84s	remaining: 1.11s
258:	learn: 15.9018757	total: 6.87s	remaining: 1.09s
259:	learn: 15.8381970	total: 6.91s	remaining: 1.06s
260:	learn: 15.7826727	total: 6.93s	remaining: 1.03s
261:	learn: 15.7313015	total: 6.96s	remaining: 1.01s
262:	learn: 15.6834037	total: 6.98s	remaining: 982ms
263:	learn: 15.6349428	total: 7s	remaining: 955ms
264:	learn: 15.5990545	total: 7.03s	remaining: 928ms
265:	learn: 15.5542522	total: 7.06s	remaining: 902ms
266:	learn: 15.5084378	total: 7.09s	remaining: 876ms
267:	learn: 15.4661775	total: 7.11s	remaining: 849ms
268:	learn: 15.4204295	total: 7.14s	remaining: 823ms
269:	learn: 15.3797436	total: 7.17s	remaining: 796ms
270:	learn: 15.3241643	total: 7.19s	remaining: 770ms
271:	learn: 15.2912031	total: 7.22s	remaining: 743ms
272:	learn: 15.2485093	total: 7.24s	remaining: 716ms
273:	learn: 15.2067344	total: 7.28s	remaining: 691ms
274:	learn: 15.1691348	total: 7.3s	remaining: 664ms
275:	learn: 15.1175909	total: 7.33s	remaining: 637ms
276:	learn: 15.0764791	total: 7.35s	remaining: 611ms
277:	learn: 15.0234203	total: 7.38s	remaining: 584ms
278:	learn: 14.9850104	total: 7.41s	remaining: 558ms
279:	learn: 14.9411345	total: 7.44s	remaining: 531ms
280:	learn: 14.8870327	total: 7.46s	remaining: 505ms
281:	learn: 14.8456947	total: 7.49s	remaining: 478ms
282:	learn: 14.8084255	total: 7.52s	remaining: 452ms
283:	learn: 14.7680170	total: 7.54s	remaining: 425ms
284:	learn: 14.7205578	total: 7.57s	remaining: 398ms
285:	learn: 14.6828419	total: 7.6s	remaining: 372ms
286:	learn: 14.6381094	total: 7.62s	remaining: 345ms
287:	learn: 14.5936873	total: 7.64s	remaining: 318ms
288:	learn: 14.5454139	total: 7.67s	remaining: 292ms
289:	learn: 14.5045998	total: 7.71s	remaining: 266ms
290:	learn: 14.4651034	total: 7.73s	remaining: 239ms
291:	learn: 14.4164592	total: 7.76s	remaining: 213ms
292:	learn: 14.3794254	total: 7.78s	remaining: 186ms
293:	learn: 14.3526912	total: 7.81s	remaining: 159ms
294:	learn: 14.3172040	total: 7.83s	remaining: 133ms
295:	learn: 14.2878426	total: 7.86s	remaining: 106ms
296:	learn: 14.2618876	total: 7.88s	remaining: 79.6ms
297:	learn: 14.2238562	total: 7.92s	remaining: 53.1ms
298:	learn: 14.1855861	total: 7.95s	remaining: 26.6ms
299:	learn: 14.1397364	total: 7.98s	remaining: 0us
0:	learn: 46.7870548	total: 2.67ms	remaining: 797ms
1:	learn: 46.5509556	total: 27.5ms	remaining: 4.1s
2:	learn: 46.2905959	total: 58.6ms	remaining: 5.8s
3:	learn: 46.0432953	total: 86.5ms	remaining: 6.4s
4:	learn: 45.7981156	total: 113ms	remaining: 6.65s
5:	learn: 45.5953537	total: 138ms	remaining: 6.76s
6:	learn: 45.3456158	total: 163ms	remaining: 6.82s
7:	learn: 45.1041876	total: 184ms	remaining: 6.72s
8:	learn: 44.8408594	total: 215ms	remaining: 6.95s
9:	learn: 44.6156712	total: 237ms	remaining: 6.87s
10:	learn: 44.3844027	total: 262ms	remaining: 6.87s
11:	learn: 44.1592646	total: 291ms	remaining: 6.97s
12:	learn: 43.9028580	total: 323ms	remaining: 7.13s
13:	learn: 43.6552529	total: 348ms	remaining: 7.1s
14:	learn: 43.4209626	total: 373ms	remaining: 7.09s
15:	learn: 43.1808263	total: 399ms	remaining: 7.08s
16:	learn: 42.9397693	total: 421ms	remaining: 7s
17:	learn: 42.7028326	total: 445ms	remaining: 6.97s
18:	learn: 42.4507836	total: 476ms	remaining: 7.03s
19:	learn: 42.2343115	total: 501ms	remaining: 7.01s
20:	learn: 42.0290334	total: 533ms	remaining: 7.08s
21:	learn: 41.7972515	total: 558ms	remaining: 7.06s
22:	learn: 41.5930066	total: 583ms	remaining: 7.02s
23:	learn: 41.3630345	total: 609ms	remaining: 7s
24:	learn: 41.1267274	total: 634ms	remaining: 6.98s
25:	learn: 40.8976157	total: 659ms	remaining: 6.94s
26:	learn: 40.7477253	total: 684ms	remaining: 6.91s
27:	learn: 40.5380037	total: 708ms	remaining: 6.88s
28:	learn: 40.3518359	total: 754ms	remaining: 7.04s
29:	learn: 40.1227880	total: 780ms	remaining: 7.02s
30:	learn: 39.9077340	total: 805ms	remaining: 6.98s
31:	learn: 39.7157645	total: 829ms	remaining: 6.95s
32:	learn: 39.4842991	total: 855ms	remaining: 6.92s
33:	learn: 39.2680222	total: 880ms	remaining: 6.89s
34:	learn: 39.1151353	total: 904ms	remaining: 6.85s
35:	learn: 38.9106437	total: 935ms	remaining: 6.85s
36:	learn: 38.6816637	total: 967ms	remaining: 6.88s
37:	learn: 38.5040898	total: 993ms	remaining: 6.84s
38:	learn: 38.2991789	total: 1.02s	remaining: 6.86s
39:	learn: 38.0905994	total: 1.05s	remaining: 6.82s
40:	learn: 37.8866149	total: 1.07s	remaining: 6.78s
41:	learn: 37.6672953	total: 1.1s	remaining: 6.74s
42:	learn: 37.4800472	total: 1.12s	remaining: 6.69s
43:	learn: 37.3135160	total: 1.14s	remaining: 6.65s
44:	learn: 37.1163679	total: 1.18s	remaining: 6.67s
45:	learn: 36.9226524	total: 1.2s	remaining: 6.64s
46:	learn: 36.7536687	total: 1.23s	remaining: 6.61s
47:	learn: 36.5708676	total: 1.25s	remaining: 6.57s
48:	learn: 36.3496982	total: 1.28s	remaining: 6.59s
49:	learn: 36.1876634	total: 1.31s	remaining: 6.54s
50:	learn: 36.0205452	total: 1.33s	remaining: 6.51s
51:	learn: 35.8569839	total: 1.36s	remaining: 6.48s
52:	learn: 35.7193741	total: 1.39s	remaining: 6.47s
53:	learn: 35.5490989	total: 1.42s	remaining: 6.45s
54:	learn: 35.3734082	total: 1.44s	remaining: 6.42s
55:	learn: 35.2037325	total: 1.47s	remaining: 6.39s
56:	learn: 35.0366875	total: 1.49s	remaining: 6.35s
57:	learn: 34.8664946	total: 1.51s	remaining: 6.32s
58:	learn: 34.7528679	total: 1.54s	remaining: 6.31s
59:	learn: 34.5990206	total: 1.57s	remaining: 6.28s
60:	learn: 34.4375256	total: 1.6s	remaining: 6.28s
61:	learn: 34.2757128	total: 1.63s	remaining: 6.25s
62:	learn: 34.1074596	total: 1.65s	remaining: 6.22s
63:	learn: 33.9134234	total: 1.68s	remaining: 6.19s
64:	learn: 33.7721658	total: 1.7s	remaining: 6.16s
65:	learn: 33.6151876	total: 1.73s	remaining: 6.12s
66:	learn: 33.4702332	total: 1.75s	remaining: 6.09s
67:	learn: 33.3063605	total: 1.78s	remaining: 6.08s
68:	learn: 33.1371803	total: 1.82s	remaining: 6.09s
69:	learn: 32.9938650	total: 1.84s	remaining: 6.06s
70:	learn: 32.8806069	total: 1.87s	remaining: 6.03s
71:	learn: 32.7337783	total: 1.89s	remaining: 6s
72:	learn: 32.6112632	total: 1.92s	remaining: 5.96s
73:	learn: 32.4373088	total: 1.94s	remaining: 5.93s
74:	learn: 32.2704069	total: 1.97s	remaining: 5.9s
75:	learn: 32.1309156	total: 1.97s	remaining: 5.8s
76:	learn: 31.9982204	total: 1.99s	remaining: 5.77s
77:	learn: 31.8386739	total: 2.02s	remaining: 5.77s
78:	learn: 31.6987206	total: 2.05s	remaining: 5.73s
79:	learn: 31.5499135	total: 2.08s	remaining: 5.73s
80:	learn: 31.4086186	total: 2.11s	remaining: 5.7s
81:	learn: 31.2612447	total: 2.13s	remaining: 5.66s
82:	learn: 31.1473521	total: 2.15s	remaining: 5.63s
83:	learn: 31.0256072	total: 2.18s	remaining: 5.6s
84:	learn: 30.8713816	total: 2.2s	remaining: 5.57s
85:	learn: 30.7375117	total: 2.23s	remaining: 5.55s
86:	learn: 30.6108390	total: 2.26s	remaining: 5.53s
87:	learn: 30.4713139	total: 2.29s	remaining: 5.5s
88:	learn: 30.3423055	total: 2.31s	remaining: 5.48s
89:	learn: 30.2207021	total: 2.34s	remaining: 5.47s
90:	learn: 30.0949179	total: 2.37s	remaining: 5.44s
91:	learn: 29.9729715	total: 2.39s	remaining: 5.41s
92:	learn: 29.8643086	total: 2.42s	remaining: 5.38s
93:	learn: 29.7665122	total: 2.45s	remaining: 5.37s
94:	learn: 29.6231497	total: 2.48s	remaining: 5.35s
95:	learn: 29.4789414	total: 2.5s	remaining: 5.32s
96:	learn: 29.3548309	total: 2.53s	remaining: 5.29s
97:	learn: 29.2140883	total: 2.55s	remaining: 5.26s
98:	learn: 29.0857263	total: 2.58s	remaining: 5.23s
99:	learn: 28.9844616	total: 2.61s	remaining: 5.22s
100:	learn: 28.8786360	total: 2.63s	remaining: 5.19s
101:	learn: 28.7366305	total: 2.67s	remaining: 5.17s
102:	learn: 28.6144208	total: 2.69s	remaining: 5.15s
103:	learn: 28.4909185	total: 2.72s	remaining: 5.12s
104:	learn: 28.3737308	total: 2.74s	remaining: 5.09s
105:	learn: 28.2474669	total: 2.77s	remaining: 5.07s
106:	learn: 28.1304845	total: 2.79s	remaining: 5.04s
107:	learn: 28.0219050	total: 2.82s	remaining: 5.01s
108:	learn: 27.9119273	total: 2.84s	remaining: 4.98s
109:	learn: 27.7940665	total: 2.87s	remaining: 4.96s
110:	learn: 27.6861210	total: 2.9s	remaining: 4.95s
111:	learn: 27.5494854	total: 2.93s	remaining: 4.92s
112:	learn: 27.4263503	total: 2.96s	remaining: 4.89s
113:	learn: 27.3187261	total: 2.98s	remaining: 4.87s
114:	learn: 27.2166072	total: 3.01s	remaining: 4.84s
115:	learn: 27.0966496	total: 3.03s	remaining: 4.8s
116:	learn: 26.9715404	total: 3.06s	remaining: 4.78s
117:	learn: 26.9000098	total: 3.08s	remaining: 4.75s
118:	learn: 26.7950464	total: 3.11s	remaining: 4.73s
119:	learn: 26.6670545	total: 3.15s	remaining: 4.72s
120:	learn: 26.5335862	total: 3.17s	remaining: 4.69s
121:	learn: 26.4604828	total: 3.2s	remaining: 4.66s
122:	learn: 26.3381204	total: 3.22s	remaining: 4.63s
123:	learn: 26.2222222	total: 3.24s	remaining: 4.6s
124:	learn: 26.1304443	total: 3.27s	remaining: 4.57s
125:	learn: 26.0221039	total: 3.29s	remaining: 4.55s
126:	learn: 25.9100900	total: 3.33s	remaining: 4.53s
127:	learn: 25.8080098	total: 3.35s	remaining: 4.5s
128:	learn: 25.7080133	total: 3.38s	remaining: 4.47s
129:	learn: 25.6040228	total: 3.41s	remaining: 4.46s
130:	learn: 25.5038062	total: 3.43s	remaining: 4.43s
131:	learn: 25.4035491	total: 3.46s	remaining: 4.4s
132:	learn: 25.2999779	total: 3.48s	remaining: 4.37s
133:	learn: 25.1973428	total: 3.5s	remaining: 4.34s
134:	learn: 25.0957273	total: 3.54s	remaining: 4.33s
135:	learn: 24.9765330	total: 3.57s	remaining: 4.3s
136:	learn: 24.8917171	total: 3.59s	remaining: 4.28s
137:	learn: 24.7841090	total: 3.62s	remaining: 4.25s
138:	learn: 24.6927568	total: 3.64s	remaining: 4.22s
139:	learn: 24.6129006	total: 3.67s	remaining: 4.2s
140:	learn: 24.5144267	total: 3.7s	remaining: 4.17s
141:	learn: 24.4313235	total: 3.73s	remaining: 4.15s
142:	learn: 24.3411218	total: 3.76s	remaining: 4.13s
143:	learn: 24.2573999	total: 3.79s	remaining: 4.1s
144:	learn: 24.1811369	total: 3.81s	remaining: 4.07s
145:	learn: 24.0879259	total: 3.83s	remaining: 4.04s
146:	learn: 23.9890446	total: 3.86s	remaining: 4.02s
147:	learn: 23.9041220	total: 3.88s	remaining: 3.99s
148:	learn: 23.8190377	total: 3.92s	remaining: 3.97s
149:	learn: 23.7441370	total: 3.94s	remaining: 3.94s
150:	learn: 23.6536711	total: 3.97s	remaining: 3.92s
151:	learn: 23.5617828	total: 4s	remaining: 3.89s
152:	learn: 23.4575126	total: 4.02s	remaining: 3.87s
153:	learn: 23.3545199	total: 4.05s	remaining: 3.84s
154:	learn: 23.2786188	total: 4.07s	remaining: 3.81s
155:	learn: 23.1932207	total: 4.1s	remaining: 3.78s
156:	learn: 23.1157521	total: 4.12s	remaining: 3.75s
157:	learn: 23.0525011	total: 4.14s	remaining: 3.72s
158:	learn: 22.9826131	total: 4.18s	remaining: 3.71s
159:	learn: 22.8971645	total: 4.21s	remaining: 3.68s
160:	learn: 22.8124108	total: 4.23s	remaining: 3.65s
161:	learn: 22.7259629	total: 4.26s	remaining: 3.63s
162:	learn: 22.6410461	total: 4.28s	remaining: 3.6s
163:	learn: 22.5475340	total: 4.31s	remaining: 3.57s
164:	learn: 22.4665910	total: 4.33s	remaining: 3.54s
165:	learn: 22.4018176	total: 4.36s	remaining: 3.52s
166:	learn: 22.3206923	total: 4.39s	remaining: 3.49s
167:	learn: 22.2605670	total: 4.41s	remaining: 3.47s
168:	learn: 22.1905861	total: 4.45s	remaining: 3.45s
169:	learn: 22.1262269	total: 4.47s	remaining: 3.42s
170:	learn: 22.0491308	total: 4.5s	remaining: 3.39s
171:	learn: 21.9817333	total: 4.52s	remaining: 3.36s
172:	learn: 21.9058044	total: 4.54s	remaining: 3.33s
173:	learn: 21.8241791	total: 4.57s	remaining: 3.31s
174:	learn: 21.7375817	total: 4.6s	remaining: 3.28s
175:	learn: 21.6472643	total: 4.62s	remaining: 3.26s
176:	learn: 21.5766827	total: 4.65s	remaining: 3.23s
177:	learn: 21.4878344	total: 4.67s	remaining: 3.2s
178:	learn: 21.4188640	total: 4.71s	remaining: 3.18s
179:	learn: 21.3385443	total: 4.73s	remaining: 3.15s
180:	learn: 21.2650011	total: 4.76s	remaining: 3.13s
181:	learn: 21.1772856	total: 4.78s	remaining: 3.1s
182:	learn: 21.1013252	total: 4.82s	remaining: 3.08s
183:	learn: 21.0237300	total: 4.84s	remaining: 3.05s
184:	learn: 20.9314435	total: 4.87s	remaining: 3.02s
185:	learn: 20.8664317	total: 4.89s	remaining: 3s
186:	learn: 20.8108514	total: 4.91s	remaining: 2.97s
187:	learn: 20.7363786	total: 4.94s	remaining: 2.94s
188:	learn: 20.6587434	total: 4.97s	remaining: 2.92s
189:	learn: 20.5954877	total: 4.99s	remaining: 2.89s
190:	learn: 20.5328286	total: 5.02s	remaining: 2.87s
191:	learn: 20.4669052	total: 5.05s	remaining: 2.84s
192:	learn: 20.3961092	total: 5.08s	remaining: 2.81s
193:	learn: 20.3346586	total: 5.1s	remaining: 2.79s
194:	learn: 20.2699707	total: 5.13s	remaining: 2.76s
195:	learn: 20.1688307	total: 5.15s	remaining: 2.73s
196:	learn: 20.1072185	total: 5.18s	remaining: 2.71s
197:	learn: 20.0248965	total: 5.2s	remaining: 2.68s
198:	learn: 19.9749040	total: 5.24s	remaining: 2.66s
199:	learn: 19.9141163	total: 5.26s	remaining: 2.63s
200:	learn: 19.8322942	total: 5.29s	remaining: 2.6s
201:	learn: 19.7695440	total: 5.32s	remaining: 2.58s
202:	learn: 19.7099364	total: 5.34s	remaining: 2.55s
203:	learn: 19.6431868	total: 5.36s	remaining: 2.52s
204:	learn: 19.5742365	total: 5.39s	remaining: 2.5s
205:	learn: 19.4926752	total: 5.41s	remaining: 2.47s
206:	learn: 19.4461217	total: 5.44s	remaining: 2.44s
207:	learn: 19.3968500	total: 5.47s	remaining: 2.42s
208:	learn: 19.3405955	total: 5.5s	remaining: 2.4s
209:	learn: 19.2827366	total: 5.53s	remaining: 2.37s
210:	learn: 19.2233617	total: 5.55s	remaining: 2.34s
211:	learn: 19.1454929	total: 5.58s	remaining: 2.31s
212:	learn: 19.0880463	total: 5.6s	remaining: 2.29s
213:	learn: 19.0234252	total: 5.62s	remaining: 2.26s
214:	learn: 18.9739747	total: 5.65s	remaining: 2.23s
215:	learn: 18.9243468	total: 5.68s	remaining: 2.21s
216:	learn: 18.8837475	total: 5.71s	remaining: 2.18s
217:	learn: 18.8278098	total: 5.73s	remaining: 2.15s
218:	learn: 18.7925834	total: 5.76s	remaining: 2.13s
219:	learn: 18.7381930	total: 5.79s	remaining: 2.1s
220:	learn: 18.6955420	total: 5.81s	remaining: 2.08s
221:	learn: 18.6371123	total: 5.83s	remaining: 2.05s
222:	learn: 18.5567836	total: 5.86s	remaining: 2.02s
223:	learn: 18.4913242	total: 5.89s	remaining: 2s
224:	learn: 18.4291923	total: 5.92s	remaining: 1.97s
225:	learn: 18.3684290	total: 5.94s	remaining: 1.95s
226:	learn: 18.3214289	total: 5.97s	remaining: 1.92s
227:	learn: 18.2559323	total: 5.99s	remaining: 1.89s
228:	learn: 18.2080430	total: 6.03s	remaining: 1.87s
229:	learn: 18.1427218	total: 6.05s	remaining: 1.84s
230:	learn: 18.0795023	total: 6.08s	remaining: 1.82s
231:	learn: 18.0263874	total: 6.11s	remaining: 1.79s
232:	learn: 17.9746300	total: 6.13s	remaining: 1.76s
233:	learn: 17.9230444	total: 6.16s	remaining: 1.74s
234:	learn: 17.8920017	total: 6.18s	remaining: 1.71s
235:	learn: 17.8210122	total: 6.21s	remaining: 1.68s
236:	learn: 17.7628665	total: 6.23s	remaining: 1.66s
237:	learn: 17.7044488	total: 6.25s	remaining: 1.63s
238:	learn: 17.6558079	total: 6.29s	remaining: 1.6s
239:	learn: 17.6061414	total: 6.32s	remaining: 1.58s
240:	learn: 17.5499135	total: 6.34s	remaining: 1.55s
241:	learn: 17.5079151	total: 6.37s	remaining: 1.53s
242:	learn: 17.4658116	total: 6.39s	remaining: 1.5s
243:	learn: 17.4073047	total: 6.42s	remaining: 1.47s
244:	learn: 17.3745022	total: 6.44s	remaining: 1.45s
245:	learn: 17.3357514	total: 6.46s	remaining: 1.42s
246:	learn: 17.3068297	total: 6.49s	remaining: 1.39s
247:	learn: 17.2634815	total: 6.52s	remaining: 1.37s
248:	learn: 17.2117369	total: 6.56s	remaining: 1.34s
249:	learn: 17.1587386	total: 6.58s	remaining: 1.32s
250:	learn: 17.1143843	total: 6.61s	remaining: 1.29s
251:	learn: 17.0739449	total: 6.63s	remaining: 1.26s
252:	learn: 17.0260606	total: 6.66s	remaining: 1.24s
253:	learn: 16.9834570	total: 6.68s	remaining: 1.21s
254:	learn: 16.9420746	total: 6.7s	remaining: 1.18s
255:	learn: 16.8913583	total: 6.74s	remaining: 1.16s
256:	learn: 16.8361972	total: 6.77s	remaining: 1.13s
257:	learn: 16.8015363	total: 6.79s	remaining: 1.1s
258:	learn: 16.7722675	total: 6.82s	remaining: 1.08s
259:	learn: 16.7270442	total: 6.85s	remaining: 1.05s
260:	learn: 16.6831627	total: 6.87s	remaining: 1.03s
261:	learn: 16.6434408	total: 6.9s	remaining: 1s
262:	learn: 16.6046513	total: 6.92s	remaining: 974ms
263:	learn: 16.5697297	total: 6.96s	remaining: 949ms
264:	learn: 16.5076111	total: 6.98s	remaining: 922ms
265:	learn: 16.4743242	total: 7.01s	remaining: 896ms
266:	learn: 16.4355076	total: 7.03s	remaining: 869ms
267:	learn: 16.3987254	total: 7.05s	remaining: 842ms
268:	learn: 16.3578512	total: 7.08s	remaining: 817ms
269:	learn: 16.3164137	total: 7.11s	remaining: 790ms
270:	learn: 16.2734218	total: 7.14s	remaining: 764ms
271:	learn: 16.2386336	total: 7.17s	remaining: 738ms
272:	learn: 16.2115930	total: 7.2s	remaining: 712ms
273:	learn: 16.1647178	total: 7.22s	remaining: 685ms
274:	learn: 16.1314533	total: 7.25s	remaining: 659ms
275:	learn: 16.0993418	total: 7.27s	remaining: 632ms
276:	learn: 16.0532680	total: 7.29s	remaining: 606ms
277:	learn: 15.9970623	total: 7.32s	remaining: 579ms
278:	learn: 15.9507754	total: 7.35s	remaining: 553ms
279:	learn: 15.9139085	total: 7.38s	remaining: 528ms
280:	learn: 15.8784290	total: 7.41s	remaining: 501ms
281:	learn: 15.8500276	total: 7.43s	remaining: 475ms
282:	learn: 15.8088728	total: 7.46s	remaining: 448ms
283:	learn: 15.7708631	total: 7.49s	remaining: 422ms
284:	learn: 15.7384477	total: 7.51s	remaining: 395ms
285:	learn: 15.6975787	total: 7.53s	remaining: 369ms
286:	learn: 15.6581989	total: 7.56s	remaining: 342ms
287:	learn: 15.6229063	total: 7.6s	remaining: 317ms
288:	learn: 15.5827583	total: 7.63s	remaining: 290ms
289:	learn: 15.5466794	total: 7.65s	remaining: 264ms
290:	learn: 15.5096633	total: 7.68s	remaining: 238ms
291:	learn: 15.4728289	total: 7.71s	remaining: 211ms
292:	learn: 15.4333441	total: 7.73s	remaining: 185ms
293:	learn: 15.3974059	total: 7.75s	remaining: 158ms
294:	learn: 15.3497460	total: 7.79s	remaining: 132ms
295:	learn: 15.3153853	total: 7.81s	remaining: 106ms
296:	learn: 15.2809401	total: 7.84s	remaining: 79.2ms
297:	learn: 15.2514602	total: 7.87s	remaining: 52.8ms
298:	learn: 15.2163632	total: 7.89s	remaining: 26.4ms
299:	learn: 15.1752827	total: 7.92s	remaining: 0us
0:	learn: 47.3866100	total: 26.7ms	remaining: 7.98s
1:	learn: 47.1426102	total: 51.8ms	remaining: 7.72s
2:	learn: 46.8912678	total: 76.8ms	remaining: 7.6s
3:	learn: 46.6074552	total: 102ms	remaining: 7.55s
4:	learn: 46.3343561	total: 125ms	remaining: 7.38s
5:	learn: 46.0821186	total: 148ms	remaining: 7.27s
6:	learn: 45.8220945	total: 170ms	remaining: 7.12s
7:	learn: 45.5648188	total: 203ms	remaining: 7.4s
8:	learn: 45.3118772	total: 225ms	remaining: 7.26s
9:	learn: 45.0577551	total: 248ms	remaining: 7.18s
10:	learn: 44.8202452	total: 272ms	remaining: 7.16s
11:	learn: 44.6018494	total: 302ms	remaining: 7.25s
12:	learn: 44.3639939	total: 332ms	remaining: 7.32s
13:	learn: 44.1260754	total: 357ms	remaining: 7.3s
14:	learn: 43.9085986	total: 382ms	remaining: 7.25s
15:	learn: 43.6831522	total: 406ms	remaining: 7.21s
16:	learn: 43.4382322	total: 430ms	remaining: 7.16s
17:	learn: 43.2049427	total: 461ms	remaining: 7.23s
18:	learn: 42.9703086	total: 486ms	remaining: 7.19s
19:	learn: 42.7260970	total: 512ms	remaining: 7.17s
20:	learn: 42.4976342	total: 542ms	remaining: 7.21s
21:	learn: 42.2715368	total: 568ms	remaining: 7.17s
22:	learn: 42.0297592	total: 593ms	remaining: 7.14s
23:	learn: 41.8357333	total: 618ms	remaining: 7.11s
24:	learn: 41.6061720	total: 643ms	remaining: 7.07s
25:	learn: 41.3859547	total: 668ms	remaining: 7.04s
26:	learn: 41.1703337	total: 694ms	remaining: 7.02s
27:	learn: 40.9556925	total: 728ms	remaining: 7.07s
28:	learn: 40.7837869	total: 758ms	remaining: 7.08s
29:	learn: 40.5834865	total: 783ms	remaining: 7.05s
30:	learn: 40.3902303	total: 807ms	remaining: 7s
31:	learn: 40.1905276	total: 832ms	remaining: 6.97s
32:	learn: 39.9393072	total: 858ms	remaining: 6.94s
33:	learn: 39.7725634	total: 880ms	remaining: 6.88s
34:	learn: 39.6086582	total: 904ms	remaining: 6.84s
35:	learn: 39.4239082	total: 928ms	remaining: 6.81s
36:	learn: 39.2195459	total: 963ms	remaining: 6.84s
37:	learn: 39.0268945	total: 995ms	remaining: 6.86s
38:	learn: 38.8567143	total: 1.02s	remaining: 6.82s
39:	learn: 38.6564689	total: 1.04s	remaining: 6.79s
40:	learn: 38.4634144	total: 1.07s	remaining: 6.76s
41:	learn: 38.2574076	total: 1.09s	remaining: 6.72s
42:	learn: 38.0759189	total: 1.12s	remaining: 6.68s
43:	learn: 37.8762011	total: 1.14s	remaining: 6.64s
44:	learn: 37.6855185	total: 1.17s	remaining: 6.64s
45:	learn: 37.5247164	total: 1.2s	remaining: 6.63s
46:	learn: 37.3338876	total: 1.23s	remaining: 6.6s
47:	learn: 37.1348956	total: 1.26s	remaining: 6.6s
48:	learn: 37.0000826	total: 1.28s	remaining: 6.57s
49:	learn: 36.8314524	total: 1.3s	remaining: 6.53s
50:	learn: 36.6609492	total: 1.33s	remaining: 6.49s
51:	learn: 36.4906402	total: 1.36s	remaining: 6.47s
52:	learn: 36.3341244	total: 1.39s	remaining: 6.47s
53:	learn: 36.1983941	total: 1.41s	remaining: 6.44s
54:	learn: 36.0437712	total: 1.44s	remaining: 6.41s
55:	learn: 35.9047256	total: 1.46s	remaining: 6.38s
56:	learn: 35.7041614	total: 1.49s	remaining: 6.35s
57:	learn: 35.6344433	total: 1.49s	remaining: 6.22s
58:	learn: 35.4315645	total: 1.52s	remaining: 6.22s
59:	learn: 35.2659531	total: 1.54s	remaining: 6.18s
60:	learn: 35.0959404	total: 1.57s	remaining: 6.14s
61:	learn: 34.9228518	total: 1.6s	remaining: 6.15s
62:	learn: 34.7527576	total: 1.63s	remaining: 6.13s
63:	learn: 34.5885035	total: 1.65s	remaining: 6.1s
64:	learn: 34.4503426	total: 1.68s	remaining: 6.07s
65:	learn: 34.2692281	total: 1.71s	remaining: 6.05s
66:	learn: 34.1087294	total: 1.73s	remaining: 6.01s
67:	learn: 33.9503280	total: 1.75s	remaining: 5.99s
68:	learn: 33.8184729	total: 1.79s	remaining: 5.98s
69:	learn: 33.6278897	total: 1.82s	remaining: 5.98s
70:	learn: 33.4750481	total: 1.84s	remaining: 5.95s
71:	learn: 33.3216386	total: 1.87s	remaining: 5.92s
72:	learn: 33.1787868	total: 1.9s	remaining: 5.89s
73:	learn: 33.0207015	total: 1.92s	remaining: 5.86s
74:	learn: 32.8874907	total: 1.94s	remaining: 5.83s
75:	learn: 32.7368247	total: 1.97s	remaining: 5.8s
76:	learn: 32.6329647	total: 1.99s	remaining: 5.77s
77:	learn: 32.4984428	total: 2.02s	remaining: 5.76s
78:	learn: 32.3645588	total: 2.06s	remaining: 5.76s
79:	learn: 32.2140910	total: 2.08s	remaining: 5.73s
80:	learn: 32.1071328	total: 2.11s	remaining: 5.7s
81:	learn: 31.9594655	total: 2.13s	remaining: 5.67s
82:	learn: 31.8335545	total: 2.16s	remaining: 5.64s
83:	learn: 31.6941865	total: 2.18s	remaining: 5.61s
84:	learn: 31.5568398	total: 2.21s	remaining: 5.58s
85:	learn: 31.4241459	total: 2.24s	remaining: 5.57s
86:	learn: 31.2520769	total: 2.26s	remaining: 5.54s
87:	learn: 31.1305059	total: 2.29s	remaining: 5.51s
88:	learn: 30.9859239	total: 2.32s	remaining: 5.5s
89:	learn: 30.8609070	total: 2.35s	remaining: 5.48s
90:	learn: 30.7334170	total: 2.37s	remaining: 5.44s
91:	learn: 30.6026676	total: 2.4s	remaining: 5.42s
92:	learn: 30.4699786	total: 2.42s	remaining: 5.39s
93:	learn: 30.3354713	total: 2.45s	remaining: 5.37s
94:	learn: 30.1962656	total: 2.48s	remaining: 5.35s
95:	learn: 30.0840378	total: 2.5s	remaining: 5.32s
96:	learn: 29.9769788	total: 2.53s	remaining: 5.29s
97:	learn: 29.8484424	total: 2.55s	remaining: 5.26s
98:	learn: 29.7170503	total: 2.58s	remaining: 5.25s
99:	learn: 29.6074100	total: 2.61s	remaining: 5.22s
100:	learn: 29.4778106	total: 2.63s	remaining: 5.19s
101:	learn: 29.3374186	total: 2.67s	remaining: 5.18s
102:	learn: 29.2080076	total: 2.69s	remaining: 5.16s
103:	learn: 29.0873312	total: 2.72s	remaining: 5.13s
104:	learn: 28.9927551	total: 2.75s	remaining: 5.1s
105:	learn: 28.8317474	total: 2.77s	remaining: 5.07s
106:	learn: 28.7062652	total: 2.8s	remaining: 5.04s
107:	learn: 28.5773284	total: 2.82s	remaining: 5.02s
108:	learn: 28.4953947	total: 2.86s	remaining: 5s
109:	learn: 28.3602682	total: 2.89s	remaining: 4.99s
110:	learn: 28.2333815	total: 2.92s	remaining: 4.96s
111:	learn: 28.1240955	total: 2.94s	remaining: 4.94s
112:	learn: 28.0042081	total: 2.97s	remaining: 4.91s
113:	learn: 27.8755833	total: 2.99s	remaining: 4.88s
114:	learn: 27.7391286	total: 3.02s	remaining: 4.85s
115:	learn: 27.6288646	total: 3.04s	remaining: 4.82s
116:	learn: 27.5138297	total: 3.07s	remaining: 4.8s
117:	learn: 27.4048303	total: 3.11s	remaining: 4.8s
118:	learn: 27.2873207	total: 3.14s	remaining: 4.77s
119:	learn: 27.1580436	total: 3.16s	remaining: 4.74s
120:	learn: 27.0229609	total: 3.19s	remaining: 4.71s
121:	learn: 26.9179110	total: 3.21s	remaining: 4.68s
122:	learn: 26.7866067	total: 3.23s	remaining: 4.66s
123:	learn: 26.6723854	total: 3.26s	remaining: 4.63s
124:	learn: 26.5644705	total: 3.29s	remaining: 4.61s
125:	learn: 26.4683380	total: 3.32s	remaining: 4.58s
126:	learn: 26.3651594	total: 3.34s	remaining: 4.55s
127:	learn: 26.2423427	total: 3.38s	remaining: 4.54s
128:	learn: 26.1392360	total: 3.4s	remaining: 4.51s
129:	learn: 26.0364868	total: 3.42s	remaining: 4.48s
130:	learn: 25.9462554	total: 3.45s	remaining: 4.45s
131:	learn: 25.8200905	total: 3.47s	remaining: 4.41s
132:	learn: 25.7327936	total: 3.49s	remaining: 4.39s
133:	learn: 25.6651491	total: 3.52s	remaining: 4.36s
134:	learn: 25.5503487	total: 3.55s	remaining: 4.34s
135:	learn: 25.4384941	total: 3.58s	remaining: 4.31s
136:	learn: 25.3274461	total: 3.6s	remaining: 4.29s
137:	learn: 25.2392392	total: 3.64s	remaining: 4.27s
138:	learn: 25.1575283	total: 3.66s	remaining: 4.24s
139:	learn: 25.0580534	total: 3.69s	remaining: 4.21s
140:	learn: 24.9561545	total: 3.71s	remaining: 4.19s
141:	learn: 24.8525353	total: 3.75s	remaining: 4.17s
142:	learn: 24.7244185	total: 3.77s	remaining: 4.14s
143:	learn: 24.6347464	total: 3.8s	remaining: 4.11s
144:	learn: 24.5284082	total: 3.82s	remaining: 4.09s
145:	learn: 24.4410314	total: 3.85s	remaining: 4.06s
146:	learn: 24.3411270	total: 3.87s	remaining: 4.03s
147:	learn: 24.2571404	total: 3.9s	remaining: 4.01s
148:	learn: 24.1664004	total: 3.93s	remaining: 3.98s
149:	learn: 24.0921663	total: 3.96s	remaining: 3.96s
150:	learn: 24.0000920	total: 3.98s	remaining: 3.93s
151:	learn: 23.8989061	total: 4.01s	remaining: 3.9s
152:	learn: 23.8051021	total: 4.04s	remaining: 3.88s
153:	learn: 23.7140777	total: 4.06s	remaining: 3.85s
154:	learn: 23.6350863	total: 4.08s	remaining: 3.82s
155:	learn: 23.5453185	total: 4.11s	remaining: 3.79s
156:	learn: 23.4762777	total: 4.13s	remaining: 3.76s
157:	learn: 23.3964371	total: 4.17s	remaining: 3.75s
158:	learn: 23.3060877	total: 4.2s	remaining: 3.72s
159:	learn: 23.2410717	total: 4.22s	remaining: 3.7s
160:	learn: 23.1461269	total: 4.25s	remaining: 3.67s
161:	learn: 23.0550190	total: 4.27s	remaining: 3.64s
162:	learn: 22.9862832	total: 4.3s	remaining: 3.61s
163:	learn: 22.8730849	total: 4.32s	remaining: 3.58s
164:	learn: 22.7831631	total: 4.35s	remaining: 3.56s
165:	learn: 22.7121818	total: 4.38s	remaining: 3.53s
166:	learn: 22.6202215	total: 4.4s	remaining: 3.51s
167:	learn: 22.5433563	total: 4.44s	remaining: 3.48s
168:	learn: 22.4588142	total: 4.46s	remaining: 3.46s
169:	learn: 22.4211462	total: 4.46s	remaining: 3.41s
170:	learn: 22.3368333	total: 4.49s	remaining: 3.38s
171:	learn: 22.2529400	total: 4.51s	remaining: 3.35s
172:	learn: 22.1796508	total: 4.53s	remaining: 3.33s
173:	learn: 22.1038400	total: 4.56s	remaining: 3.3s
174:	learn: 22.0214875	total: 4.59s	remaining: 3.28s
175:	learn: 21.9596201	total: 4.62s	remaining: 3.25s
176:	learn: 21.9047679	total: 4.64s	remaining: 3.23s
177:	learn: 21.8305329	total: 4.67s	remaining: 3.2s
178:	learn: 21.7474635	total: 4.7s	remaining: 3.18s
179:	learn: 21.6838637	total: 4.72s	remaining: 3.15s
180:	learn: 21.6231038	total: 4.75s	remaining: 3.12s
181:	learn: 21.5530991	total: 4.77s	remaining: 3.1s
182:	learn: 21.4744081	total: 4.81s	remaining: 3.07s
183:	learn: 21.4002206	total: 4.83s	remaining: 3.05s
184:	learn: 21.3311448	total: 4.86s	remaining: 3.02s
185:	learn: 21.2663373	total: 4.88s	remaining: 2.99s
186:	learn: 21.1872896	total: 4.91s	remaining: 2.97s
187:	learn: 21.1149449	total: 4.94s	remaining: 2.94s
188:	learn: 21.0395139	total: 4.97s	remaining: 2.92s
189:	learn: 20.9687164	total: 5s	remaining: 2.89s
190:	learn: 20.9310992	total: 5.03s	remaining: 2.87s
191:	learn: 20.8588045	total: 5.06s	remaining: 2.84s
192:	learn: 20.8068052	total: 5.08s	remaining: 2.82s
193:	learn: 20.7445460	total: 5.11s	remaining: 2.79s
194:	learn: 20.6840110	total: 5.13s	remaining: 2.76s
195:	learn: 20.6281417	total: 5.15s	remaining: 2.73s
196:	learn: 20.5604201	total: 5.18s	remaining: 2.71s
197:	learn: 20.4807570	total: 5.2s	remaining: 2.68s
198:	learn: 20.4340054	total: 5.25s	remaining: 2.66s
199:	learn: 20.3819010	total: 5.27s	remaining: 2.63s
200:	learn: 20.3209962	total: 5.29s	remaining: 2.61s
201:	learn: 20.2680186	total: 5.32s	remaining: 2.58s
202:	learn: 20.2024573	total: 5.34s	remaining: 2.55s
203:	learn: 20.1283892	total: 5.37s	remaining: 2.53s
204:	learn: 20.0617914	total: 5.39s	remaining: 2.5s
205:	learn: 20.0011232	total: 5.42s	remaining: 2.47s
206:	learn: 19.9478089	total: 5.45s	remaining: 2.45s
207:	learn: 19.8811498	total: 5.47s	remaining: 2.42s
208:	learn: 19.8266470	total: 5.51s	remaining: 2.4s
209:	learn: 19.7584260	total: 5.53s	remaining: 2.37s
210:	learn: 19.6930201	total: 5.56s	remaining: 2.34s
211:	learn: 19.6371133	total: 5.58s	remaining: 2.32s
212:	learn: 19.5792826	total: 5.6s	remaining: 2.29s
213:	learn: 19.5165282	total: 5.63s	remaining: 2.26s
214:	learn: 19.4647405	total: 5.67s	remaining: 2.24s
215:	learn: 19.4045396	total: 5.69s	remaining: 2.21s
216:	learn: 19.3395383	total: 5.72s	remaining: 2.19s
217:	learn: 19.2771112	total: 5.75s	remaining: 2.16s
218:	learn: 19.2295294	total: 5.78s	remaining: 2.14s
219:	learn: 19.1755119	total: 5.8s	remaining: 2.11s
220:	learn: 19.1226534	total: 5.83s	remaining: 2.08s
221:	learn: 19.0487891	total: 5.86s	remaining: 2.06s
222:	learn: 19.0058991	total: 5.9s	remaining: 2.04s
223:	learn: 18.9460485	total: 5.92s	remaining: 2.01s
224:	learn: 18.9073701	total: 5.95s	remaining: 1.98s
225:	learn: 18.8677507	total: 5.97s	remaining: 1.96s
226:	learn: 18.8163333	total: 6s	remaining: 1.93s
227:	learn: 18.7679599	total: 6.02s	remaining: 1.9s
228:	learn: 18.7165756	total: 6.05s	remaining: 1.88s
229:	learn: 18.6605125	total: 6.09s	remaining: 1.85s
230:	learn: 18.6094425	total: 6.12s	remaining: 1.83s
231:	learn: 18.5576484	total: 6.14s	remaining: 1.8s
232:	learn: 18.5012159	total: 6.17s	remaining: 1.77s
233:	learn: 18.4593166	total: 6.19s	remaining: 1.75s
234:	learn: 18.4031765	total: 6.22s	remaining: 1.72s
235:	learn: 18.3459023	total: 6.24s	remaining: 1.69s
236:	learn: 18.3172764	total: 6.26s	remaining: 1.67s
237:	learn: 18.2472206	total: 6.29s	remaining: 1.64s
238:	learn: 18.1862965	total: 6.33s	remaining: 1.62s
239:	learn: 18.1146012	total: 6.36s	remaining: 1.59s
240:	learn: 18.0588447	total: 6.38s	remaining: 1.56s
241:	learn: 17.9987516	total: 6.41s	remaining: 1.53s
242:	learn: 17.9467371	total: 6.43s	remaining: 1.51s
243:	learn: 17.8837781	total: 6.45s	remaining: 1.48s
244:	learn: 17.8212642	total: 6.48s	remaining: 1.45s
245:	learn: 17.7759243	total: 6.5s	remaining: 1.43s
246:	learn: 17.7295650	total: 6.53s	remaining: 1.4s
247:	learn: 17.6805280	total: 6.56s	remaining: 1.38s
248:	learn: 17.6305571	total: 6.59s	remaining: 1.35s
249:	learn: 17.5806734	total: 6.62s	remaining: 1.32s
250:	learn: 17.5364826	total: 6.64s	remaining: 1.3s
251:	learn: 17.4937797	total: 6.67s	remaining: 1.27s
252:	learn: 17.4449942	total: 6.69s	remaining: 1.24s
253:	learn: 17.3822018	total: 6.72s	remaining: 1.22s
254:	learn: 17.3321374	total: 6.75s	remaining: 1.19s
255:	learn: 17.2925645	total: 6.78s	remaining: 1.16s
256:	learn: 17.2538857	total: 6.8s	remaining: 1.14s
257:	learn: 17.2041105	total: 6.83s	remaining: 1.11s
258:	learn: 17.1456541	total: 6.86s	remaining: 1.08s
259:	learn: 17.1038623	total: 6.88s	remaining: 1.06s
260:	learn: 17.0447376	total: 6.9s	remaining: 1.03s
261:	learn: 17.0034981	total: 6.93s	remaining: 1s
262:	learn: 16.9567643	total: 6.96s	remaining: 980ms
263:	learn: 16.9020578	total: 6.99s	remaining: 953ms
264:	learn: 16.8585850	total: 7.02s	remaining: 927ms
265:	learn: 16.8171458	total: 7.04s	remaining: 900ms
266:	learn: 16.7669542	total: 7.07s	remaining: 873ms
267:	learn: 16.7328560	total: 7.09s	remaining: 847ms
268:	learn: 16.6990433	total: 7.12s	remaining: 821ms
269:	learn: 16.6540554	total: 7.15s	remaining: 795ms
270:	learn: 16.6103987	total: 7.18s	remaining: 769ms
271:	learn: 16.5748192	total: 7.21s	remaining: 742ms
272:	learn: 16.5429372	total: 7.23s	remaining: 715ms
273:	learn: 16.5072397	total: 7.26s	remaining: 689ms
274:	learn: 16.4684978	total: 7.28s	remaining: 662ms
275:	learn: 16.4457766	total: 7.3s	remaining: 635ms
276:	learn: 16.4054138	total: 7.33s	remaining: 609ms
277:	learn: 16.3748248	total: 7.37s	remaining: 583ms
278:	learn: 16.3461752	total: 7.4s	remaining: 557ms
279:	learn: 16.2936436	total: 7.42s	remaining: 530ms
280:	learn: 16.2559779	total: 7.45s	remaining: 503ms
281:	learn: 16.2154264	total: 7.47s	remaining: 477ms
282:	learn: 16.1817521	total: 7.49s	remaining: 450ms
283:	learn: 16.1315295	total: 7.51s	remaining: 423ms
284:	learn: 16.0866868	total: 7.54s	remaining: 397ms
285:	learn: 16.0685868	total: 7.56s	remaining: 370ms
286:	learn: 16.0419346	total: 7.59s	remaining: 344ms
287:	learn: 16.0027886	total: 7.63s	remaining: 318ms
288:	learn: 15.9500871	total: 7.66s	remaining: 291ms
289:	learn: 15.9068464	total: 7.68s	remaining: 265ms
290:	learn: 15.8654849	total: 7.71s	remaining: 238ms
291:	learn: 15.8182506	total: 7.73s	remaining: 212ms
292:	learn: 15.7932566	total: 7.75s	remaining: 185ms
293:	learn: 15.7496330	total: 7.78s	remaining: 159ms
294:	learn: 15.7060484	total: 7.81s	remaining: 132ms
295:	learn: 15.6582263	total: 7.84s	remaining: 106ms
296:	learn: 15.6325770	total: 7.87s	remaining: 79.5ms
297:	learn: 15.6045661	total: 7.9s	remaining: 53ms
298:	learn: 15.5716255	total: 7.92s	remaining: 26.5ms
299:	learn: 15.5476987	total: 7.95s	remaining: 0us
0:	learn: 27.3716363	total: 6.1ms	remaining: 604ms
1:	learn: 26.7586038	total: 11.4ms	remaining: 559ms
2:	learn: 26.1513803	total: 16.6ms	remaining: 537ms
3:	learn: 25.6569249	total: 21.9ms	remaining: 525ms
4:	learn: 25.0448773	total: 27.4ms	remaining: 520ms
5:	learn: 24.6011243	total: 32.7ms	remaining: 512ms
6:	learn: 23.9665913	total: 38.2ms	remaining: 508ms
7:	learn: 23.5201950	total: 43.2ms	remaining: 496ms
8:	learn: 22.9901116	total: 47.3ms	remaining: 478ms
9:	learn: 22.5256710	total: 51.9ms	remaining: 467ms
10:	learn: 22.1598038	total: 55.8ms	remaining: 451ms
11:	learn: 21.7726663	total: 60.7ms	remaining: 445ms
12:	learn: 21.5014839	total: 65.2ms	remaining: 436ms
13:	learn: 21.1063605	total: 70ms	remaining: 430ms
14:	learn: 20.7648344	total: 74.6ms	remaining: 423ms
15:	learn: 20.4005501	total: 78.9ms	remaining: 414ms
16:	learn: 20.0308689	total: 83.6ms	remaining: 408ms
17:	learn: 19.7619894	total: 87.9ms	remaining: 400ms
18:	learn: 19.4006982	total: 92.2ms	remaining: 393ms
19:	learn: 19.1201126	total: 96.7ms	remaining: 387ms
20:	learn: 18.7774355	total: 101ms	remaining: 381ms
21:	learn: 18.5027646	total: 106ms	remaining: 374ms
22:	learn: 18.1958499	total: 110ms	remaining: 368ms
23:	learn: 18.0191187	total: 114ms	remaining: 362ms
24:	learn: 17.8387270	total: 119ms	remaining: 356ms
25:	learn: 17.5280679	total: 123ms	remaining: 351ms
26:	learn: 17.3062744	total: 128ms	remaining: 345ms
27:	learn: 17.0131776	total: 132ms	remaining: 341ms
28:	learn: 16.7409451	total: 137ms	remaining: 337ms
29:	learn: 16.5094615	total: 142ms	remaining: 332ms
30:	learn: 16.2691858	total: 147ms	remaining: 327ms
31:	learn: 16.0502592	total: 152ms	remaining: 322ms
32:	learn: 15.8734968	total: 157ms	remaining: 318ms
33:	learn: 15.6646527	total: 161ms	remaining: 313ms
34:	learn: 15.5331988	total: 167ms	remaining: 309ms
35:	learn: 15.2505462	total: 175ms	remaining: 311ms
36:	learn: 15.0313064	total: 183ms	remaining: 312ms
37:	learn: 14.8734366	total: 193ms	remaining: 315ms
38:	learn: 14.6699229	total: 200ms	remaining: 313ms
39:	learn: 14.5898168	total: 206ms	remaining: 309ms
40:	learn: 14.4208947	total: 211ms	remaining: 304ms
41:	learn: 14.2850223	total: 216ms	remaining: 298ms
42:	learn: 14.1442724	total: 221ms	remaining: 293ms
43:	learn: 13.9770221	total: 227ms	remaining: 288ms
44:	learn: 13.8778270	total: 232ms	remaining: 283ms
45:	learn: 13.6902000	total: 237ms	remaining: 279ms
46:	learn: 13.5674586	total: 243ms	remaining: 274ms
47:	learn: 13.3835423	total: 248ms	remaining: 269ms
48:	learn: 13.2779430	total: 253ms	remaining: 264ms
49:	learn: 13.1218837	total: 259ms	remaining: 259ms
50:	learn: 13.0063048	total: 264ms	remaining: 254ms
51:	learn: 12.8507410	total: 269ms	remaining: 249ms
52:	learn: 12.7455025	total: 274ms	remaining: 243ms
53:	learn: 12.6261811	total: 279ms	remaining: 238ms
54:	learn: 12.5173579	total: 284ms	remaining: 232ms
55:	learn: 12.4529502	total: 288ms	remaining: 227ms
56:	learn: 12.3944087	total: 293ms	remaining: 221ms
57:	learn: 12.2888055	total: 297ms	remaining: 215ms
58:	learn: 12.1806093	total: 302ms	remaining: 210ms
59:	learn: 12.0712110	total: 306ms	remaining: 204ms
60:	learn: 11.9961171	total: 311ms	remaining: 199ms
61:	learn: 11.8823972	total: 316ms	remaining: 193ms
62:	learn: 11.7943665	total: 320ms	remaining: 188ms
63:	learn: 11.7212181	total: 325ms	remaining: 183ms
64:	learn: 11.6362437	total: 330ms	remaining: 177ms
65:	learn: 11.5522591	total: 334ms	remaining: 172ms
66:	learn: 11.4500175	total: 339ms	remaining: 167ms
67:	learn: 11.3258387	total: 344ms	remaining: 162ms
68:	learn: 11.2482685	total: 349ms	remaining: 157ms
69:	learn: 11.1755209	total: 354ms	remaining: 152ms
70:	learn: 11.0887540	total: 359ms	remaining: 147ms
71:	learn: 11.0054578	total: 364ms	remaining: 141ms
72:	learn: 10.9318991	total: 372ms	remaining: 138ms
73:	learn: 10.8522001	total: 380ms	remaining: 133ms
74:	learn: 10.7674012	total: 390ms	remaining: 130ms
75:	learn: 10.7187991	total: 397ms	remaining: 125ms
76:	learn: 10.6548375	total: 403ms	remaining: 120ms
77:	learn: 10.6095260	total: 408ms	remaining: 115ms
78:	learn: 10.5658533	total: 413ms	remaining: 110ms
79:	learn: 10.5097785	total: 419ms	remaining: 105ms
80:	learn: 10.4527426	total: 424ms	remaining: 99.5ms
81:	learn: 10.3885391	total: 429ms	remaining: 94.2ms
82:	learn: 10.3299710	total: 435ms	remaining: 89ms
83:	learn: 10.2436190	total: 440ms	remaining: 83.9ms
84:	learn: 10.1749078	total: 446ms	remaining: 78.6ms
85:	learn: 10.0946062	total: 451ms	remaining: 73.5ms
86:	learn: 10.0390578	total: 456ms	remaining: 68.2ms
87:	learn: 9.9852955	total: 462ms	remaining: 63ms
88:	learn: 9.9302992	total: 468ms	remaining: 57.8ms
89:	learn: 9.8630695	total: 473ms	remaining: 52.5ms
90:	learn: 9.7805856	total: 477ms	remaining: 47.2ms
91:	learn: 9.7127178	total: 482ms	remaining: 41.9ms
92:	learn: 9.6557593	total: 487ms	remaining: 36.6ms
93:	learn: 9.5921286	total: 491ms	remaining: 31.3ms
94:	learn: 9.5187489	total: 495ms	remaining: 26.1ms
95:	learn: 9.4500955	total: 500ms	remaining: 20.8ms
96:	learn: 9.3834246	total: 504ms	remaining: 15.6ms
97:	learn: 9.3221422	total: 509ms	remaining: 10.4ms
98:	learn: 9.2581494	total: 514ms	remaining: 5.19ms
99:	learn: 9.2021708	total: 518ms	remaining: 0us
0:	learn: 42.4859206	total: 8.16ms	remaining: 808ms
1:	learn: 41.2348392	total: 15.6ms	remaining: 766ms
2:	learn: 39.9044703	total: 21.1ms	remaining: 683ms
3:	learn: 38.6081616	total: 26.1ms	remaining: 627ms
4:	learn: 37.4610571	total: 31.3ms	remaining: 595ms
5:	learn: 36.3390199	total: 36.6ms	remaining: 574ms
6:	learn: 35.1817084	total: 42.2ms	remaining: 560ms
7:	learn: 34.1132574	total: 47.6ms	remaining: 547ms
8:	learn: 33.4673440	total: 52.9ms	remaining: 535ms
9:	learn: 32.4688388	total: 58ms	remaining: 522ms
10:	learn: 31.5801915	total: 63.5ms	remaining: 514ms
11:	learn: 30.7270901	total: 68.6ms	remaining: 503ms
12:	learn: 30.1030598	total: 73.9ms	remaining: 494ms
13:	learn: 29.2931850	total: 75.2ms	remaining: 462ms
14:	learn: 28.5479304	total: 80.5ms	remaining: 456ms
15:	learn: 27.9377772	total: 85.9ms	remaining: 451ms
16:	learn: 27.2217220	total: 90.4ms	remaining: 442ms
17:	learn: 26.5521028	total: 95.2ms	remaining: 434ms
18:	learn: 25.9926990	total: 99.9ms	remaining: 426ms
19:	learn: 25.3989069	total: 105ms	remaining: 418ms
20:	learn: 24.8440572	total: 109ms	remaining: 410ms
21:	learn: 24.2947764	total: 114ms	remaining: 402ms
22:	learn: 23.7487326	total: 118ms	remaining: 394ms
23:	learn: 23.1892639	total: 122ms	remaining: 387ms
24:	learn: 22.7249056	total: 126ms	remaining: 379ms
25:	learn: 22.2987315	total: 131ms	remaining: 373ms
26:	learn: 21.9065428	total: 136ms	remaining: 367ms
27:	learn: 21.4981889	total: 141ms	remaining: 362ms
28:	learn: 21.0962886	total: 145ms	remaining: 355ms
29:	learn: 20.8295403	total: 150ms	remaining: 350ms
30:	learn: 20.6084828	total: 154ms	remaining: 343ms
31:	learn: 20.2966492	total: 159ms	remaining: 337ms
32:	learn: 19.9841639	total: 163ms	remaining: 331ms
33:	learn: 19.7208663	total: 168ms	remaining: 326ms
34:	learn: 19.4135423	total: 173ms	remaining: 321ms
35:	learn: 19.2034111	total: 177ms	remaining: 316ms
36:	learn: 18.9402581	total: 183ms	remaining: 311ms
37:	learn: 18.7382588	total: 187ms	remaining: 305ms
38:	learn: 18.4705302	total: 192ms	remaining: 301ms
39:	learn: 18.2354107	total: 197ms	remaining: 296ms
40:	learn: 17.9669553	total: 205ms	remaining: 295ms
41:	learn: 17.7329625	total: 213ms	remaining: 294ms
42:	learn: 17.4715711	total: 223ms	remaining: 296ms
43:	learn: 17.2285510	total: 231ms	remaining: 293ms
44:	learn: 17.0261018	total: 236ms	remaining: 289ms
45:	learn: 16.8373998	total: 242ms	remaining: 284ms
46:	learn: 16.6975431	total: 247ms	remaining: 279ms
47:	learn: 16.5029954	total: 253ms	remaining: 274ms
48:	learn: 16.3332890	total: 258ms	remaining: 269ms
49:	learn: 16.1354926	total: 263ms	remaining: 263ms
50:	learn: 16.0073114	total: 269ms	remaining: 258ms
51:	learn: 15.9043247	total: 274ms	remaining: 253ms
52:	learn: 15.7303782	total: 280ms	remaining: 248ms
53:	learn: 15.5560543	total: 284ms	remaining: 242ms
54:	learn: 15.3435331	total: 290ms	remaining: 237ms
55:	learn: 15.2045774	total: 296ms	remaining: 232ms
56:	learn: 15.0609857	total: 301ms	remaining: 227ms
57:	learn: 14.9370901	total: 306ms	remaining: 221ms
58:	learn: 14.8410465	total: 310ms	remaining: 215ms
59:	learn: 14.7081240	total: 314ms	remaining: 209ms
60:	learn: 14.5636282	total: 319ms	remaining: 204ms
61:	learn: 14.4606865	total: 324ms	remaining: 198ms
62:	learn: 14.3731446	total: 328ms	remaining: 193ms
63:	learn: 14.2045145	total: 333ms	remaining: 187ms
64:	learn: 14.0461252	total: 338ms	remaining: 182ms
65:	learn: 13.9195454	total: 343ms	remaining: 177ms
66:	learn: 13.8190753	total: 347ms	remaining: 171ms
67:	learn: 13.7252500	total: 352ms	remaining: 166ms
68:	learn: 13.6566471	total: 356ms	remaining: 160ms
69:	learn: 13.5121693	total: 361ms	remaining: 155ms
70:	learn: 13.4442080	total: 366ms	remaining: 149ms
71:	learn: 13.3279962	total: 371ms	remaining: 144ms
72:	learn: 13.2456458	total: 375ms	remaining: 139ms
73:	learn: 13.1417720	total: 380ms	remaining: 134ms
74:	learn: 13.0795807	total: 385ms	remaining: 128ms
75:	learn: 12.9858298	total: 390ms	remaining: 123ms
76:	learn: 12.9193581	total: 395ms	remaining: 118ms
77:	learn: 12.8008737	total: 404ms	remaining: 114ms
78:	learn: 12.7215618	total: 413ms	remaining: 110ms
79:	learn: 12.6252386	total: 423ms	remaining: 106ms
80:	learn: 12.5456193	total: 431ms	remaining: 101ms
81:	learn: 12.4550597	total: 436ms	remaining: 95.8ms
82:	learn: 12.3684000	total: 441ms	remaining: 90.4ms
83:	learn: 12.2904435	total: 447ms	remaining: 85.1ms
84:	learn: 12.2128737	total: 452ms	remaining: 79.8ms
85:	learn: 12.1069589	total: 457ms	remaining: 74.5ms
86:	learn: 11.9975688	total: 463ms	remaining: 69.1ms
87:	learn: 11.9113686	total: 468ms	remaining: 63.9ms
88:	learn: 11.8489375	total: 474ms	remaining: 58.5ms
89:	learn: 11.7446095	total: 479ms	remaining: 53.3ms
90:	learn: 11.6793247	total: 484ms	remaining: 47.9ms
91:	learn: 11.6120227	total: 489ms	remaining: 42.6ms
92:	learn: 11.5559096	total: 495ms	remaining: 37.3ms
93:	learn: 11.5063069	total: 501ms	remaining: 32ms
94:	learn: 11.4776305	total: 505ms	remaining: 26.6ms
95:	learn: 11.4163720	total: 510ms	remaining: 21.3ms
96:	learn: 11.3547170	total: 515ms	remaining: 15.9ms
97:	learn: 11.2947704	total: 519ms	remaining: 10.6ms
98:	learn: 11.2120192	total: 524ms	remaining: 5.29ms
99:	learn: 11.1607467	total: 528ms	remaining: 0us
0:	learn: 46.2258117	total: 2.22ms	remaining: 220ms
1:	learn: 45.1972950	total: 7.55ms	remaining: 370ms
2:	learn: 43.7957357	total: 12.2ms	remaining: 394ms
3:	learn: 42.5777391	total: 17.1ms	remaining: 411ms
4:	learn: 41.5327833	total: 22.2ms	remaining: 422ms
5:	learn: 40.4435276	total: 30.4ms	remaining: 476ms
6:	learn: 39.4670075	total: 38.5ms	remaining: 511ms
7:	learn: 38.7108484	total: 48.3ms	remaining: 555ms
8:	learn: 38.1402654	total: 54.4ms	remaining: 551ms
9:	learn: 37.2648485	total: 60.8ms	remaining: 548ms
10:	learn: 36.4694198	total: 66.5ms	remaining: 538ms
11:	learn: 35.5168067	total: 71.8ms	remaining: 526ms
12:	learn: 34.7782207	total: 77.3ms	remaining: 517ms
13:	learn: 33.9839024	total: 82.9ms	remaining: 509ms
14:	learn: 33.2222232	total: 88.2ms	remaining: 500ms
15:	learn: 32.4007311	total: 93.3ms	remaining: 490ms
16:	learn: 31.6552844	total: 98.6ms	remaining: 481ms
17:	learn: 30.9799186	total: 104ms	remaining: 473ms
18:	learn: 30.2888540	total: 109ms	remaining: 464ms
19:	learn: 29.7032334	total: 114ms	remaining: 457ms
20:	learn: 29.2886252	total: 119ms	remaining: 449ms
21:	learn: 28.7682793	total: 124ms	remaining: 440ms
22:	learn: 28.4016143	total: 130ms	remaining: 434ms
23:	learn: 27.6630864	total: 135ms	remaining: 429ms
24:	learn: 27.2033858	total: 140ms	remaining: 420ms
25:	learn: 26.5935061	total: 145ms	remaining: 412ms
26:	learn: 26.1389740	total: 149ms	remaining: 403ms
27:	learn: 25.7937555	total: 154ms	remaining: 396ms
28:	learn: 25.4247732	total: 158ms	remaining: 388ms
29:	learn: 24.9684460	total: 163ms	remaining: 380ms
30:	learn: 24.5885923	total: 167ms	remaining: 372ms
31:	learn: 24.2703978	total: 172ms	remaining: 366ms
32:	learn: 23.8387638	total: 177ms	remaining: 358ms
33:	learn: 23.6317607	total: 181ms	remaining: 352ms
34:	learn: 23.3263085	total: 186ms	remaining: 345ms
35:	learn: 22.9960495	total: 191ms	remaining: 339ms
36:	learn: 22.6616330	total: 195ms	remaining: 332ms
37:	learn: 22.1801596	total: 200ms	remaining: 326ms
38:	learn: 21.8114556	total: 205ms	remaining: 320ms
39:	learn: 21.5714330	total: 209ms	remaining: 313ms
40:	learn: 21.1089354	total: 213ms	remaining: 307ms
41:	learn: 20.8040772	total: 218ms	remaining: 301ms
42:	learn: 20.4965159	total: 223ms	remaining: 296ms
43:	learn: 20.2898724	total: 228ms	remaining: 290ms
44:	learn: 20.0169420	total: 233ms	remaining: 285ms
45:	learn: 19.8348803	total: 238ms	remaining: 280ms
46:	learn: 19.5554754	total: 243ms	remaining: 274ms
47:	learn: 19.2782294	total: 248ms	remaining: 269ms
48:	learn: 19.0395772	total: 255ms	remaining: 266ms
49:	learn: 18.7983211	total: 263ms	remaining: 263ms
50:	learn: 18.6396276	total: 273ms	remaining: 262ms
51:	learn: 18.4535258	total: 279ms	remaining: 258ms
52:	learn: 18.2777199	total: 287ms	remaining: 254ms
53:	learn: 18.0572244	total: 292ms	remaining: 249ms
54:	learn: 17.8213238	total: 297ms	remaining: 243ms
55:	learn: 17.5926067	total: 303ms	remaining: 238ms
56:	learn: 17.3990115	total: 308ms	remaining: 232ms
57:	learn: 17.2444936	total: 314ms	remaining: 227ms
58:	learn: 17.0900496	total: 319ms	remaining: 222ms
59:	learn: 16.8497932	total: 324ms	remaining: 216ms
60:	learn: 16.7335122	total: 330ms	remaining: 211ms
61:	learn: 16.5285847	total: 335ms	remaining: 205ms
62:	learn: 16.4326012	total: 340ms	remaining: 200ms
63:	learn: 16.2977130	total: 345ms	remaining: 194ms
64:	learn: 16.1876309	total: 351ms	remaining: 189ms
65:	learn: 16.0948338	total: 356ms	remaining: 184ms
66:	learn: 15.9055478	total: 361ms	remaining: 178ms
67:	learn: 15.8244487	total: 367ms	remaining: 173ms
68:	learn: 15.6064385	total: 372ms	remaining: 167ms
69:	learn: 15.4574801	total: 377ms	remaining: 161ms
70:	learn: 15.4064312	total: 382ms	remaining: 156ms
71:	learn: 15.2463289	total: 386ms	remaining: 150ms
72:	learn: 15.1083967	total: 391ms	remaining: 145ms
73:	learn: 14.8909334	total: 396ms	remaining: 139ms
74:	learn: 14.7646415	total: 401ms	remaining: 134ms
75:	learn: 14.6847350	total: 405ms	remaining: 128ms
76:	learn: 14.5941501	total: 410ms	remaining: 122ms
77:	learn: 14.5049987	total: 415ms	remaining: 117ms
78:	learn: 14.4043748	total: 419ms	remaining: 111ms
79:	learn: 14.2633292	total: 424ms	remaining: 106ms
80:	learn: 14.1257360	total: 429ms	remaining: 101ms
81:	learn: 14.0626940	total: 434ms	remaining: 95.3ms
82:	learn: 13.9429889	total: 439ms	remaining: 89.9ms
83:	learn: 13.8834534	total: 443ms	remaining: 84.5ms
84:	learn: 13.7361899	total: 452ms	remaining: 79.7ms
85:	learn: 13.6473170	total: 460ms	remaining: 75ms
86:	learn: 13.5168963	total: 470ms	remaining: 70.2ms
87:	learn: 13.3778373	total: 478ms	remaining: 65.2ms
88:	learn: 13.2827073	total: 483ms	remaining: 59.7ms
89:	learn: 13.1962748	total: 489ms	remaining: 54.3ms
90:	learn: 13.1317634	total: 494ms	remaining: 48.9ms
91:	learn: 12.9996032	total: 499ms	remaining: 43.4ms
92:	learn: 12.8843393	total: 505ms	remaining: 38ms
93:	learn: 12.8187378	total: 511ms	remaining: 32.6ms
94:	learn: 12.7176304	total: 516ms	remaining: 27.2ms
95:	learn: 12.6420924	total: 522ms	remaining: 21.7ms
96:	learn: 12.5500097	total: 528ms	remaining: 16.3ms
97:	learn: 12.4837866	total: 533ms	remaining: 10.9ms
98:	learn: 12.3597911	total: 538ms	remaining: 5.44ms
99:	learn: 12.2792795	total: 544ms	remaining: 0us
0:	learn: 45.8627255	total: 4.76ms	remaining: 472ms
1:	learn: 44.8162174	total: 9.94ms	remaining: 487ms
2:	learn: 43.9865430	total: 14.3ms	remaining: 461ms
3:	learn: 42.9919872	total: 18.1ms	remaining: 436ms
4:	learn: 41.8902122	total: 22.7ms	remaining: 432ms
5:	learn: 41.0496461	total: 27.5ms	remaining: 430ms
6:	learn: 40.0946649	total: 32.5ms	remaining: 431ms
7:	learn: 39.3893186	total: 37.2ms	remaining: 428ms
8:	learn: 38.5282166	total: 42ms	remaining: 425ms
9:	learn: 37.5895258	total: 46.6ms	remaining: 419ms
10:	learn: 36.7137467	total: 51.2ms	remaining: 414ms
11:	learn: 35.7818300	total: 56.2ms	remaining: 412ms
12:	learn: 34.8459255	total: 64.8ms	remaining: 434ms
13:	learn: 34.2225882	total: 75.1ms	remaining: 461ms
14:	learn: 33.4045891	total: 84.2ms	remaining: 477ms
15:	learn: 32.7931441	total: 91.9ms	remaining: 483ms
16:	learn: 32.2009164	total: 97.4ms	remaining: 476ms
17:	learn: 31.4431417	total: 103ms	remaining: 468ms
18:	learn: 30.6940787	total: 108ms	remaining: 461ms
19:	learn: 30.2032085	total: 113ms	remaining: 453ms
20:	learn: 29.6620038	total: 118ms	remaining: 445ms
21:	learn: 29.1329122	total: 124ms	remaining: 439ms
22:	learn: 28.9285069	total: 129ms	remaining: 432ms
23:	learn: 28.2773846	total: 135ms	remaining: 426ms
24:	learn: 27.6312201	total: 140ms	remaining: 420ms
25:	learn: 27.1224449	total: 145ms	remaining: 414ms
26:	learn: 26.7129115	total: 150ms	remaining: 406ms
27:	learn: 26.2030118	total: 156ms	remaining: 400ms
28:	learn: 25.8449000	total: 161ms	remaining: 394ms
29:	learn: 25.3832705	total: 166ms	remaining: 388ms
30:	learn: 24.9797913	total: 170ms	remaining: 379ms
31:	learn: 24.7190041	total: 175ms	remaining: 371ms
32:	learn: 24.4139846	total: 179ms	remaining: 364ms
33:	learn: 24.0085081	total: 184ms	remaining: 357ms
34:	learn: 23.7092621	total: 188ms	remaining: 348ms
35:	learn: 23.4620026	total: 192ms	remaining: 341ms
36:	learn: 23.0924724	total: 197ms	remaining: 335ms
37:	learn: 22.6471910	total: 201ms	remaining: 328ms
38:	learn: 22.3422405	total: 206ms	remaining: 322ms
39:	learn: 22.0391348	total: 211ms	remaining: 316ms
40:	learn: 21.7653773	total: 215ms	remaining: 310ms
41:	learn: 21.4652025	total: 220ms	remaining: 303ms
42:	learn: 21.1937288	total: 224ms	remaining: 297ms
43:	learn: 20.9481301	total: 229ms	remaining: 292ms
44:	learn: 20.7022718	total: 234ms	remaining: 286ms
45:	learn: 20.6128483	total: 239ms	remaining: 280ms
46:	learn: 20.5444203	total: 244ms	remaining: 275ms
47:	learn: 20.2652868	total: 248ms	remaining: 269ms
48:	learn: 20.0465015	total: 253ms	remaining: 263ms
49:	learn: 19.8485858	total: 260ms	remaining: 260ms
50:	learn: 19.6218360	total: 269ms	remaining: 258ms
51:	learn: 19.4340385	total: 277ms	remaining: 256ms
52:	learn: 19.2755253	total: 284ms	remaining: 252ms
53:	learn: 19.1513895	total: 292ms	remaining: 249ms
54:	learn: 18.9926498	total: 298ms	remaining: 244ms
55:	learn: 18.9138819	total: 303ms	remaining: 238ms
56:	learn: 18.7601521	total: 309ms	remaining: 233ms
57:	learn: 18.5383747	total: 315ms	remaining: 228ms
58:	learn: 18.3203725	total: 321ms	remaining: 223ms
59:	learn: 18.1486463	total: 326ms	remaining: 217ms
60:	learn: 18.0745744	total: 331ms	remaining: 212ms
61:	learn: 17.9860471	total: 337ms	remaining: 206ms
62:	learn: 17.8554657	total: 343ms	remaining: 201ms
63:	learn: 17.7725698	total: 348ms	remaining: 196ms
64:	learn: 17.6461546	total: 353ms	remaining: 190ms
65:	learn: 17.4876253	total: 359ms	remaining: 185ms
66:	learn: 17.3902491	total: 364ms	remaining: 179ms
67:	learn: 17.3074315	total: 369ms	remaining: 174ms
68:	learn: 17.1916970	total: 374ms	remaining: 168ms
69:	learn: 17.0036214	total: 378ms	remaining: 162ms
70:	learn: 16.9063477	total: 382ms	remaining: 156ms
71:	learn: 16.7543840	total: 387ms	remaining: 150ms
72:	learn: 16.5926263	total: 391ms	remaining: 145ms
73:	learn: 16.4828353	total: 396ms	remaining: 139ms
74:	learn: 16.3669301	total: 400ms	remaining: 133ms
75:	learn: 16.2378249	total: 404ms	remaining: 128ms
76:	learn: 16.1357752	total: 409ms	remaining: 122ms
77:	learn: 16.0178742	total: 413ms	remaining: 117ms
78:	learn: 15.9116966	total: 418ms	remaining: 111ms
79:	learn: 15.7262830	total: 423ms	remaining: 106ms
80:	learn: 15.7159723	total: 423ms	remaining: 99.3ms
81:	learn: 15.5586375	total: 428ms	remaining: 94ms
82:	learn: 15.4694360	total: 433ms	remaining: 88.7ms
83:	learn: 15.3275068	total: 438ms	remaining: 83.4ms
84:	learn: 15.1629281	total: 443ms	remaining: 78.2ms
85:	learn: 15.0586873	total: 448ms	remaining: 72.9ms
86:	learn: 14.9760174	total: 453ms	remaining: 67.7ms
87:	learn: 14.8800618	total: 459ms	remaining: 62.6ms
88:	learn: 14.7766054	total: 467ms	remaining: 57.7ms
89:	learn: 14.6906406	total: 474ms	remaining: 52.7ms
90:	learn: 14.6034436	total: 481ms	remaining: 47.6ms
91:	learn: 14.5330407	total: 487ms	remaining: 42.3ms
92:	learn: 14.5039218	total: 495ms	remaining: 37.2ms
93:	learn: 14.4182642	total: 500ms	remaining: 31.9ms
94:	learn: 14.3711363	total: 505ms	remaining: 26.6ms
95:	learn: 14.2590638	total: 511ms	remaining: 21.3ms
96:	learn: 14.1640312	total: 516ms	remaining: 16ms
97:	learn: 14.0693305	total: 521ms	remaining: 10.6ms
98:	learn: 13.9520103	total: 527ms	remaining: 5.33ms
99:	learn: 13.8600248	total: 532ms	remaining: 0us
0:	learn: 46.3790355	total: 5.16ms	remaining: 511ms
1:	learn: 44.9322264	total: 9.83ms	remaining: 482ms
2:	learn: 43.6452304	total: 14.3ms	remaining: 462ms
3:	learn: 42.6058006	total: 18.9ms	remaining: 452ms
4:	learn: 41.4421922	total: 23.5ms	remaining: 447ms
5:	learn: 40.4565773	total: 27.8ms	remaining: 436ms
6:	learn: 39.3776917	total: 32.8ms	remaining: 436ms
7:	learn: 38.4003857	total: 37.2ms	remaining: 427ms
8:	learn: 37.4288067	total: 41.8ms	remaining: 422ms
9:	learn: 36.5623656	total: 46.3ms	remaining: 417ms
10:	learn: 35.7389643	total: 51.1ms	remaining: 414ms
11:	learn: 34.7960924	total: 56.2ms	remaining: 412ms
12:	learn: 34.0156187	total: 60.8ms	remaining: 407ms
13:	learn: 33.2702023	total: 65.6ms	remaining: 403ms
14:	learn: 32.7554868	total: 70.2ms	remaining: 398ms
15:	learn: 32.0395687	total: 75.2ms	remaining: 395ms
16:	learn: 31.4793803	total: 80.4ms	remaining: 393ms
17:	learn: 30.8770173	total: 88.7ms	remaining: 404ms
18:	learn: 30.3071701	total: 96.4ms	remaining: 411ms
19:	learn: 29.6256037	total: 106ms	remaining: 423ms
20:	learn: 29.1224077	total: 113ms	remaining: 426ms
21:	learn: 28.6312349	total: 118ms	remaining: 419ms
22:	learn: 28.2178229	total: 123ms	remaining: 413ms
23:	learn: 27.8751859	total: 129ms	remaining: 407ms
24:	learn: 27.5885656	total: 134ms	remaining: 401ms
25:	learn: 27.3828327	total: 139ms	remaining: 396ms
26:	learn: 27.1654356	total: 144ms	remaining: 390ms
27:	learn: 26.6705724	total: 150ms	remaining: 386ms
28:	learn: 26.2420935	total: 155ms	remaining: 380ms
29:	learn: 25.9314906	total: 161ms	remaining: 375ms
30:	learn: 25.4679909	total: 166ms	remaining: 371ms
31:	learn: 25.0442298	total: 172ms	remaining: 365ms
32:	learn: 24.8946212	total: 178ms	remaining: 361ms
33:	learn: 24.4858057	total: 183ms	remaining: 356ms
34:	learn: 24.1558048	total: 189ms	remaining: 350ms
35:	learn: 23.8344043	total: 193ms	remaining: 344ms
36:	learn: 23.5433295	total: 198ms	remaining: 337ms
37:	learn: 23.1976742	total: 203ms	remaining: 331ms
38:	learn: 22.9284547	total: 207ms	remaining: 324ms
39:	learn: 22.8228111	total: 212ms	remaining: 318ms
40:	learn: 22.5248890	total: 217ms	remaining: 312ms
41:	learn: 22.2473427	total: 222ms	remaining: 306ms
42:	learn: 21.9883370	total: 226ms	remaining: 300ms
43:	learn: 21.7825052	total: 231ms	remaining: 294ms
44:	learn: 21.5752155	total: 236ms	remaining: 289ms
45:	learn: 21.3418301	total: 241ms	remaining: 283ms
46:	learn: 21.1437594	total: 246ms	remaining: 278ms
47:	learn: 21.0215777	total: 251ms	remaining: 272ms
48:	learn: 20.7473432	total: 256ms	remaining: 266ms
49:	learn: 20.4823805	total: 261ms	remaining: 261ms
50:	learn: 20.3609754	total: 266ms	remaining: 256ms
51:	learn: 20.2403089	total: 271ms	remaining: 250ms
52:	learn: 20.1310909	total: 276ms	remaining: 245ms
53:	learn: 19.9330687	total: 281ms	remaining: 240ms
54:	learn: 19.7246810	total: 286ms	remaining: 234ms
55:	learn: 19.5252152	total: 291ms	remaining: 229ms
56:	learn: 19.3485723	total: 301ms	remaining: 227ms
57:	learn: 19.1619803	total: 309ms	remaining: 224ms
58:	learn: 19.0365136	total: 318ms	remaining: 221ms
59:	learn: 18.8921146	total: 325ms	remaining: 217ms
60:	learn: 18.7924351	total: 331ms	remaining: 211ms
61:	learn: 18.5856121	total: 336ms	remaining: 206ms
62:	learn: 18.3782831	total: 341ms	remaining: 201ms
63:	learn: 18.2642221	total: 347ms	remaining: 195ms
64:	learn: 18.1420774	total: 353ms	remaining: 190ms
65:	learn: 17.9430729	total: 358ms	remaining: 184ms
66:	learn: 17.7334985	total: 363ms	remaining: 179ms
67:	learn: 17.6005273	total: 369ms	remaining: 174ms
68:	learn: 17.5129366	total: 374ms	remaining: 168ms
69:	learn: 17.4066411	total: 380ms	remaining: 163ms
70:	learn: 17.2755069	total: 385ms	remaining: 157ms
71:	learn: 17.1544654	total: 390ms	remaining: 152ms
72:	learn: 17.0271914	total: 396ms	remaining: 146ms
73:	learn: 16.9474801	total: 401ms	remaining: 141ms
74:	learn: 16.8579544	total: 406ms	remaining: 135ms
75:	learn: 16.7574463	total: 410ms	remaining: 130ms
76:	learn: 16.6586906	total: 415ms	remaining: 124ms
77:	learn: 16.5365221	total: 419ms	remaining: 118ms
78:	learn: 16.4109716	total: 424ms	remaining: 113ms
79:	learn: 16.2533395	total: 429ms	remaining: 107ms
80:	learn: 16.1257882	total: 434ms	remaining: 102ms
81:	learn: 16.0234034	total: 438ms	remaining: 96.2ms
82:	learn: 15.8574011	total: 443ms	remaining: 90.7ms
83:	learn: 15.7737788	total: 447ms	remaining: 85.2ms
84:	learn: 15.6806864	total: 452ms	remaining: 79.7ms
85:	learn: 15.5807484	total: 457ms	remaining: 74.3ms
86:	learn: 15.4928987	total: 462ms	remaining: 69ms
87:	learn: 15.4321572	total: 467ms	remaining: 63.7ms
88:	learn: 15.3722788	total: 472ms	remaining: 58.4ms
89:	learn: 15.2571272	total: 477ms	remaining: 53ms
90:	learn: 15.1198109	total: 482ms	remaining: 47.7ms
91:	learn: 15.0009209	total: 487ms	remaining: 42.3ms
92:	learn: 14.8967484	total: 494ms	remaining: 37.2ms
93:	learn: 14.8348358	total: 502ms	remaining: 32ms
94:	learn: 14.7607641	total: 509ms	remaining: 26.8ms
95:	learn: 14.5887689	total: 516ms	remaining: 21.5ms
96:	learn: 14.4962918	total: 524ms	remaining: 16.2ms
97:	learn: 14.4172436	total: 530ms	remaining: 10.8ms
98:	learn: 14.3676018	total: 535ms	remaining: 5.4ms
99:	learn: 14.2868270	total: 540ms	remaining: 0us
0:	learn: 27.3776612	total: 19.2ms	remaining: 1.9s
1:	learn: 26.7619003	total: 39.1ms	remaining: 1.91s
2:	learn: 26.0057626	total: 59.3ms	remaining: 1.92s
3:	learn: 25.4280982	total: 82.2ms	remaining: 1.97s
4:	learn: 24.8347609	total: 103ms	remaining: 1.96s
5:	learn: 24.2526574	total: 134ms	remaining: 2.1s
6:	learn: 23.7478806	total: 156ms	remaining: 2.08s
7:	learn: 23.2677666	total: 177ms	remaining: 2.03s
8:	learn: 22.7564310	total: 198ms	remaining: 2s
9:	learn: 22.2873770	total: 217ms	remaining: 1.95s
10:	learn: 21.8088174	total: 237ms	remaining: 1.92s
11:	learn: 21.4086875	total: 258ms	remaining: 1.89s
12:	learn: 20.9489217	total: 278ms	remaining: 1.86s
13:	learn: 20.4585233	total: 300ms	remaining: 1.84s
14:	learn: 20.0177760	total: 320ms	remaining: 1.81s
15:	learn: 19.5981890	total: 353ms	remaining: 1.85s
16:	learn: 19.2041885	total: 377ms	remaining: 1.84s
17:	learn: 18.8422550	total: 400ms	remaining: 1.82s
18:	learn: 18.4774037	total: 422ms	remaining: 1.8s
19:	learn: 18.0931699	total: 444ms	remaining: 1.77s
20:	learn: 17.6856423	total: 463ms	remaining: 1.74s
21:	learn: 17.3394010	total: 483ms	remaining: 1.71s
22:	learn: 17.0165204	total: 504ms	remaining: 1.69s
23:	learn: 16.7728230	total: 526ms	remaining: 1.66s
24:	learn: 16.5020155	total: 547ms	remaining: 1.64s
25:	learn: 16.2110813	total: 580ms	remaining: 1.65s
26:	learn: 15.9439416	total: 604ms	remaining: 1.63s
27:	learn: 15.6605702	total: 627ms	remaining: 1.61s
28:	learn: 15.4180978	total: 650ms	remaining: 1.59s
29:	learn: 15.1463921	total: 673ms	remaining: 1.57s
30:	learn: 14.8961946	total: 695ms	remaining: 1.55s
31:	learn: 14.6763296	total: 714ms	remaining: 1.52s
32:	learn: 14.4161484	total: 735ms	remaining: 1.49s
33:	learn: 14.1748686	total: 756ms	remaining: 1.47s
34:	learn: 13.9722494	total: 784ms	remaining: 1.46s
35:	learn: 13.7632896	total: 810ms	remaining: 1.44s
36:	learn: 13.5572592	total: 833ms	remaining: 1.42s
37:	learn: 13.3896577	total: 856ms	remaining: 1.4s
38:	learn: 13.2796441	total: 877ms	remaining: 1.37s
39:	learn: 13.0896679	total: 899ms	remaining: 1.35s
40:	learn: 12.8898238	total: 918ms	remaining: 1.32s
41:	learn: 12.6824069	total: 939ms	remaining: 1.3s
42:	learn: 12.5459667	total: 960ms	remaining: 1.27s
43:	learn: 12.3859203	total: 987ms	remaining: 1.26s
44:	learn: 12.2099364	total: 1.01s	remaining: 1.24s
45:	learn: 12.0649044	total: 1.04s	remaining: 1.22s
46:	learn: 11.8934147	total: 1.06s	remaining: 1.19s
47:	learn: 11.7212144	total: 1.08s	remaining: 1.17s
48:	learn: 11.5585360	total: 1.1s	remaining: 1.15s
49:	learn: 11.4204354	total: 1.12s	remaining: 1.12s
50:	learn: 11.3264427	total: 1.14s	remaining: 1.1s
51:	learn: 11.2063486	total: 1.17s	remaining: 1.08s
52:	learn: 11.0712206	total: 1.2s	remaining: 1.06s
53:	learn: 10.9205088	total: 1.22s	remaining: 1.04s
54:	learn: 10.8155412	total: 1.25s	remaining: 1.02s
55:	learn: 10.7286854	total: 1.27s	remaining: 997ms
56:	learn: 10.6088466	total: 1.29s	remaining: 975ms
57:	learn: 10.4999885	total: 1.31s	remaining: 952ms
58:	learn: 10.4022194	total: 1.33s	remaining: 927ms
59:	learn: 10.3147130	total: 1.36s	remaining: 904ms
60:	learn: 10.2011489	total: 1.38s	remaining: 880ms
61:	learn: 10.1094372	total: 1.41s	remaining: 861ms
62:	learn: 10.0248970	total: 1.43s	remaining: 839ms
63:	learn: 9.9192710	total: 1.45s	remaining: 816ms
64:	learn: 9.8577360	total: 1.47s	remaining: 793ms
65:	learn: 9.7737103	total: 1.5s	remaining: 770ms
66:	learn: 9.6706617	total: 1.51s	remaining: 745ms
67:	learn: 9.6042727	total: 1.53s	remaining: 721ms
68:	learn: 9.5355377	total: 1.55s	remaining: 697ms
69:	learn: 9.4615216	total: 1.57s	remaining: 675ms
70:	learn: 9.3702045	total: 1.6s	remaining: 652ms
71:	learn: 9.3035392	total: 1.63s	remaining: 632ms
72:	learn: 9.2322686	total: 1.65s	remaining: 610ms
73:	learn: 9.1431916	total: 1.67s	remaining: 587ms
74:	learn: 9.0869466	total: 1.69s	remaining: 565ms
75:	learn: 9.0117390	total: 1.72s	remaining: 542ms
76:	learn: 8.9580443	total: 1.73s	remaining: 518ms
77:	learn: 8.8649939	total: 1.75s	remaining: 494ms
78:	learn: 8.7792713	total: 1.77s	remaining: 471ms
79:	learn: 8.7164606	total: 1.79s	remaining: 449ms
80:	learn: 8.6340559	total: 1.82s	remaining: 427ms
81:	learn: 8.5697104	total: 1.85s	remaining: 406ms
82:	learn: 8.5273758	total: 1.87s	remaining: 384ms
83:	learn: 8.4394788	total: 1.89s	remaining: 361ms
84:	learn: 8.3672415	total: 1.92s	remaining: 338ms
85:	learn: 8.2813444	total: 1.94s	remaining: 315ms
86:	learn: 8.1994983	total: 1.96s	remaining: 292ms
87:	learn: 8.1003577	total: 1.98s	remaining: 270ms
88:	learn: 8.0501976	total: 2s	remaining: 247ms
89:	learn: 7.9718830	total: 2.02s	remaining: 224ms
90:	learn: 7.9114534	total: 2.04s	remaining: 202ms
91:	learn: 7.8319856	total: 2.07s	remaining: 180ms
92:	learn: 7.7731246	total: 2.09s	remaining: 158ms
93:	learn: 7.7165850	total: 2.12s	remaining: 135ms
94:	learn: 7.6448498	total: 2.14s	remaining: 112ms
95:	learn: 7.5709919	total: 2.16s	remaining: 90ms
96:	learn: 7.5184082	total: 2.18s	remaining: 67.4ms
97:	learn: 7.4786866	total: 2.2s	remaining: 44.9ms
98:	learn: 7.4301201	total: 2.22s	remaining: 22.4ms
99:	learn: 7.3416932	total: 2.24s	remaining: 0us
0:	learn: 42.6391731	total: 22ms	remaining: 2.18s
1:	learn: 41.2755994	total: 43.4ms	remaining: 2.13s
2:	learn: 40.1418308	total: 61.9ms	remaining: 2s
3:	learn: 38.9707156	total: 81ms	remaining: 1.94s
4:	learn: 37.8723622	total: 99.6ms	remaining: 1.89s
5:	learn: 36.6981834	total: 121ms	remaining: 1.9s
6:	learn: 35.6210108	total: 143ms	remaining: 1.91s
7:	learn: 34.5154078	total: 171ms	remaining: 1.97s
8:	learn: 33.4581011	total: 194ms	remaining: 1.96s
9:	learn: 32.5872455	total: 216ms	remaining: 1.95s
10:	learn: 31.6311510	total: 239ms	remaining: 1.94s
11:	learn: 30.8222401	total: 263ms	remaining: 1.93s
12:	learn: 29.9305192	total: 283ms	remaining: 1.89s
13:	learn: 29.0742133	total: 301ms	remaining: 1.85s
14:	learn: 28.3687544	total: 322ms	remaining: 1.82s
15:	learn: 27.5730558	total: 345ms	remaining: 1.81s
16:	learn: 26.9376082	total: 373ms	remaining: 1.82s
17:	learn: 26.2254949	total: 394ms	remaining: 1.8s
18:	learn: 25.5974939	total: 417ms	remaining: 1.78s
19:	learn: 25.0097187	total: 438ms	remaining: 1.75s
20:	learn: 24.3722243	total: 461ms	remaining: 1.73s
21:	learn: 23.8249140	total: 483ms	remaining: 1.71s
22:	learn: 23.3953969	total: 501ms	remaining: 1.68s
23:	learn: 22.8726238	total: 519ms	remaining: 1.64s
24:	learn: 22.3407723	total: 542ms	remaining: 1.62s
25:	learn: 21.8360330	total: 564ms	remaining: 1.61s
26:	learn: 21.4050665	total: 568ms	remaining: 1.54s
27:	learn: 20.9389245	total: 596ms	remaining: 1.53s
28:	learn: 20.5166767	total: 618ms	remaining: 1.51s
29:	learn: 20.1190641	total: 639ms	remaining: 1.49s
30:	learn: 19.7189491	total: 661ms	remaining: 1.47s
31:	learn: 19.3748181	total: 682ms	remaining: 1.45s
32:	learn: 19.0116312	total: 700ms	remaining: 1.42s
33:	learn: 18.6982407	total: 719ms	remaining: 1.4s
34:	learn: 18.3109965	total: 737ms	remaining: 1.37s
35:	learn: 17.9620798	total: 761ms	remaining: 1.35s
36:	learn: 17.6396740	total: 790ms	remaining: 1.34s
37:	learn: 17.3596962	total: 819ms	remaining: 1.34s
38:	learn: 17.0107107	total: 843ms	remaining: 1.32s
39:	learn: 16.7000770	total: 868ms	remaining: 1.3s
40:	learn: 16.4406609	total: 880ms	remaining: 1.27s
41:	learn: 16.2482533	total: 903ms	remaining: 1.25s
42:	learn: 16.0039366	total: 931ms	remaining: 1.23s
43:	learn: 15.7538572	total: 954ms	remaining: 1.21s
44:	learn: 15.5095380	total: 978ms	remaining: 1.2s
45:	learn: 15.2678319	total: 1s	remaining: 1.18s
46:	learn: 15.0494495	total: 1.03s	remaining: 1.17s
47:	learn: 14.8347400	total: 1.06s	remaining: 1.15s
48:	learn: 14.6035398	total: 1.08s	remaining: 1.13s
49:	learn: 14.3913639	total: 1.11s	remaining: 1.11s
50:	learn: 14.1928022	total: 1.13s	remaining: 1.09s
51:	learn: 13.9985580	total: 1.15s	remaining: 1.06s
52:	learn: 13.8322220	total: 1.17s	remaining: 1.04s
53:	learn: 13.6455937	total: 1.2s	remaining: 1.02s
54:	learn: 13.4402019	total: 1.22s	remaining: 999ms
55:	learn: 13.2899163	total: 1.25s	remaining: 984ms
56:	learn: 13.1694614	total: 1.28s	remaining: 963ms
57:	learn: 13.0722892	total: 1.3s	remaining: 941ms
58:	learn: 12.9065251	total: 1.32s	remaining: 919ms
59:	learn: 12.6992885	total: 1.35s	remaining: 898ms
60:	learn: 12.5384562	total: 1.37s	remaining: 873ms
61:	learn: 12.4105591	total: 1.39s	remaining: 850ms
62:	learn: 12.2952504	total: 1.41s	remaining: 826ms
63:	learn: 12.1427365	total: 1.43s	remaining: 804ms
64:	learn: 11.9954361	total: 1.46s	remaining: 786ms
65:	learn: 11.8161234	total: 1.48s	remaining: 765ms
66:	learn: 11.6849978	total: 1.51s	remaining: 742ms
67:	learn: 11.5405300	total: 1.53s	remaining: 720ms
68:	learn: 11.3806762	total: 1.55s	remaining: 697ms
69:	learn: 11.2746848	total: 1.57s	remaining: 674ms
70:	learn: 11.1518256	total: 1.59s	remaining: 651ms
71:	learn: 11.0730779	total: 1.61s	remaining: 627ms
72:	learn: 10.9736725	total: 1.63s	remaining: 605ms
73:	learn: 10.8430563	total: 1.66s	remaining: 584ms
74:	learn: 10.7142220	total: 1.69s	remaining: 564ms
75:	learn: 10.6141640	total: 1.72s	remaining: 542ms
76:	learn: 10.5264853	total: 1.74s	remaining: 520ms
77:	learn: 10.3929390	total: 1.76s	remaining: 497ms
78:	learn: 10.3163176	total: 1.79s	remaining: 475ms
79:	learn: 10.2171240	total: 1.81s	remaining: 452ms
80:	learn: 10.1381738	total: 1.83s	remaining: 429ms
81:	learn: 10.0402437	total: 1.85s	remaining: 407ms
82:	learn: 9.9223565	total: 1.88s	remaining: 384ms
83:	learn: 9.8184057	total: 1.9s	remaining: 363ms
84:	learn: 9.7221978	total: 1.93s	remaining: 341ms
85:	learn: 9.6417031	total: 1.95s	remaining: 318ms
86:	learn: 9.5593969	total: 1.98s	remaining: 295ms
87:	learn: 9.4678992	total: 2s	remaining: 273ms
88:	learn: 9.3855757	total: 2.02s	remaining: 250ms
89:	learn: 9.2884031	total: 2.04s	remaining: 227ms
90:	learn: 9.2099382	total: 2.06s	remaining: 204ms
91:	learn: 9.1357061	total: 2.09s	remaining: 181ms
92:	learn: 9.0690328	total: 2.12s	remaining: 159ms
93:	learn: 8.9904694	total: 2.14s	remaining: 137ms
94:	learn: 8.9256893	total: 2.16s	remaining: 114ms
95:	learn: 8.8600084	total: 2.19s	remaining: 91.2ms
96:	learn: 8.8091154	total: 2.21s	remaining: 68.4ms
97:	learn: 8.7280528	total: 2.23s	remaining: 45.6ms
98:	learn: 8.6761440	total: 2.25s	remaining: 22.8ms
99:	learn: 8.6181192	total: 2.28s	remaining: 0us
0:	learn: 45.9988128	total: 26ms	remaining: 2.57s
1:	learn: 44.7653841	total: 49.8ms	remaining: 2.44s
2:	learn: 43.4693688	total: 72.7ms	remaining: 2.35s
3:	learn: 42.2495168	total: 95.5ms	remaining: 2.29s
4:	learn: 41.2273909	total: 116ms	remaining: 2.2s
5:	learn: 40.0623352	total: 137ms	remaining: 2.15s
6:	learn: 39.0139162	total: 160ms	remaining: 2.12s
7:	learn: 37.9905503	total: 182ms	remaining: 2.09s
8:	learn: 37.1460179	total: 211ms	remaining: 2.13s
9:	learn: 36.1321769	total: 234ms	remaining: 2.1s
10:	learn: 35.2434048	total: 257ms	remaining: 2.08s
11:	learn: 34.3919476	total: 280ms	remaining: 2.05s
12:	learn: 33.5464400	total: 303ms	remaining: 2.03s
13:	learn: 32.5752711	total: 324ms	remaining: 1.99s
14:	learn: 31.8573507	total: 345ms	remaining: 1.96s
15:	learn: 31.1481980	total: 367ms	remaining: 1.93s
16:	learn: 30.4578224	total: 388ms	remaining: 1.9s
17:	learn: 29.8404841	total: 420ms	remaining: 1.91s
18:	learn: 29.1314604	total: 447ms	remaining: 1.9s
19:	learn: 28.5024706	total: 470ms	remaining: 1.88s
20:	learn: 27.9368896	total: 492ms	remaining: 1.85s
21:	learn: 27.2136491	total: 514ms	remaining: 1.82s
22:	learn: 26.6230078	total: 537ms	remaining: 1.8s
23:	learn: 26.0604635	total: 559ms	remaining: 1.77s
24:	learn: 25.6309424	total: 582ms	remaining: 1.75s
25:	learn: 25.1761698	total: 602ms	remaining: 1.71s
26:	learn: 24.6368216	total: 632ms	remaining: 1.71s
27:	learn: 24.1028972	total: 659ms	remaining: 1.69s
28:	learn: 23.3990224	total: 682ms	remaining: 1.67s
29:	learn: 22.9088559	total: 706ms	remaining: 1.65s
30:	learn: 22.4793217	total: 730ms	remaining: 1.63s
31:	learn: 22.0592669	total: 752ms	remaining: 1.6s
32:	learn: 21.6715811	total: 772ms	remaining: 1.57s
33:	learn: 21.1907911	total: 794ms	remaining: 1.54s
34:	learn: 20.8045504	total: 815ms	remaining: 1.51s
35:	learn: 20.4670784	total: 844ms	remaining: 1.5s
36:	learn: 20.0165788	total: 867ms	remaining: 1.48s
37:	learn: 19.6859173	total: 890ms	remaining: 1.45s
38:	learn: 19.3641283	total: 912ms	remaining: 1.43s
39:	learn: 19.0291194	total: 937ms	remaining: 1.4s
40:	learn: 18.7204204	total: 960ms	remaining: 1.38s
41:	learn: 18.4000101	total: 982ms	remaining: 1.36s
42:	learn: 18.0910445	total: 1s	remaining: 1.33s
43:	learn: 17.8354609	total: 1.02s	remaining: 1.3s
44:	learn: 17.4982243	total: 1.05s	remaining: 1.28s
45:	learn: 17.1895897	total: 1.08s	remaining: 1.26s
46:	learn: 16.9440833	total: 1.1s	remaining: 1.24s
47:	learn: 16.6112102	total: 1.12s	remaining: 1.21s
48:	learn: 16.3320235	total: 1.14s	remaining: 1.19s
49:	learn: 16.0523610	total: 1.16s	remaining: 1.16s
50:	learn: 15.8256738	total: 1.18s	remaining: 1.14s
51:	learn: 15.5699393	total: 1.2s	remaining: 1.11s
52:	learn: 15.3531799	total: 1.22s	remaining: 1.09s
53:	learn: 15.1364230	total: 1.25s	remaining: 1.06s
54:	learn: 15.0012063	total: 1.27s	remaining: 1.04s
55:	learn: 14.7171740	total: 1.3s	remaining: 1.02s
56:	learn: 14.5897576	total: 1.3s	remaining: 983ms
57:	learn: 14.3886878	total: 1.32s	remaining: 959ms
58:	learn: 14.1942115	total: 1.34s	remaining: 935ms
59:	learn: 14.0135398	total: 1.37s	remaining: 912ms
60:	learn: 13.8118263	total: 1.39s	remaining: 888ms
61:	learn: 13.6444047	total: 1.41s	remaining: 865ms
62:	learn: 13.4728078	total: 1.43s	remaining: 841ms
63:	learn: 13.3104934	total: 1.45s	remaining: 817ms
64:	learn: 13.1385144	total: 1.48s	remaining: 797ms
65:	learn: 13.0087777	total: 1.51s	remaining: 776ms
66:	learn: 12.8457835	total: 1.53s	remaining: 753ms
67:	learn: 12.6975263	total: 1.55s	remaining: 730ms
68:	learn: 12.5582839	total: 1.57s	remaining: 707ms
69:	learn: 12.4210776	total: 1.59s	remaining: 683ms
70:	learn: 12.2737286	total: 1.61s	remaining: 659ms
71:	learn: 12.1587075	total: 1.64s	remaining: 636ms
72:	learn: 12.0323022	total: 1.66s	remaining: 613ms
73:	learn: 11.8667900	total: 1.68s	remaining: 591ms
74:	learn: 11.6990385	total: 1.71s	remaining: 569ms
75:	learn: 11.5755058	total: 1.73s	remaining: 546ms
76:	learn: 11.4954152	total: 1.75s	remaining: 523ms
77:	learn: 11.3827464	total: 1.77s	remaining: 500ms
78:	learn: 11.2924968	total: 1.79s	remaining: 477ms
79:	learn: 11.1938217	total: 1.81s	remaining: 453ms
80:	learn: 11.0766477	total: 1.83s	remaining: 430ms
81:	learn: 10.9824487	total: 1.85s	remaining: 407ms
82:	learn: 10.8707168	total: 1.88s	remaining: 385ms
83:	learn: 10.7746205	total: 1.91s	remaining: 364ms
84:	learn: 10.6738461	total: 1.93s	remaining: 341ms
85:	learn: 10.5871227	total: 1.95s	remaining: 318ms
86:	learn: 10.4566607	total: 1.98s	remaining: 295ms
87:	learn: 10.3506633	total: 2s	remaining: 273ms
88:	learn: 10.2104644	total: 2.02s	remaining: 250ms
89:	learn: 10.0965839	total: 2.04s	remaining: 226ms
90:	learn: 9.9802927	total: 2.06s	remaining: 203ms
91:	learn: 9.9195276	total: 2.08s	remaining: 181ms
92:	learn: 9.8559698	total: 2.1s	remaining: 158ms
93:	learn: 9.7396780	total: 2.13s	remaining: 136ms
94:	learn: 9.6945725	total: 2.15s	remaining: 113ms
95:	learn: 9.5897565	total: 2.18s	remaining: 90.7ms
96:	learn: 9.5012011	total: 2.2s	remaining: 68ms
97:	learn: 9.4123715	total: 2.22s	remaining: 45.3ms
98:	learn: 9.3288366	total: 2.24s	remaining: 22.6ms
99:	learn: 9.2648715	total: 2.26s	remaining: 0us
0:	learn: 45.5336925	total: 30.4ms	remaining: 3.01s
1:	learn: 44.2714175	total: 54.1ms	remaining: 2.65s
2:	learn: 43.1477944	total: 74.6ms	remaining: 2.41s
3:	learn: 41.9891776	total: 96.5ms	remaining: 2.31s
4:	learn: 41.0638986	total: 118ms	remaining: 2.24s
5:	learn: 39.9800801	total: 138ms	remaining: 2.16s
6:	learn: 38.9048061	total: 156ms	remaining: 2.07s
7:	learn: 38.0749429	total: 174ms	remaining: 2s
8:	learn: 37.3966644	total: 192ms	remaining: 1.94s
9:	learn: 36.4671331	total: 210ms	remaining: 1.89s
10:	learn: 35.6649217	total: 230ms	remaining: 1.86s
11:	learn: 34.8793657	total: 248ms	remaining: 1.82s
12:	learn: 34.0737401	total: 268ms	remaining: 1.8s
13:	learn: 33.2560999	total: 289ms	remaining: 1.78s
14:	learn: 32.4184623	total: 318ms	remaining: 1.8s
15:	learn: 31.6803206	total: 343ms	remaining: 1.8s
16:	learn: 30.9276344	total: 365ms	remaining: 1.78s
17:	learn: 30.3590041	total: 386ms	remaining: 1.76s
18:	learn: 29.7789888	total: 408ms	remaining: 1.74s
19:	learn: 29.1098261	total: 431ms	remaining: 1.72s
20:	learn: 28.4824889	total: 449ms	remaining: 1.69s
21:	learn: 27.9675744	total: 475ms	remaining: 1.69s
22:	learn: 27.4793215	total: 498ms	remaining: 1.67s
23:	learn: 26.8920542	total: 526ms	remaining: 1.67s
24:	learn: 26.2736657	total: 561ms	remaining: 1.68s
25:	learn: 25.6908003	total: 586ms	remaining: 1.67s
26:	learn: 25.1288844	total: 610ms	remaining: 1.65s
27:	learn: 24.6933320	total: 633ms	remaining: 1.63s
28:	learn: 24.1372567	total: 657ms	remaining: 1.61s
29:	learn: 23.7103515	total: 677ms	remaining: 1.58s
30:	learn: 23.1647499	total: 698ms	remaining: 1.55s
31:	learn: 22.7009216	total: 721ms	remaining: 1.53s
32:	learn: 22.2792229	total: 749ms	remaining: 1.52s
33:	learn: 21.8004244	total: 778ms	remaining: 1.51s
34:	learn: 21.3578361	total: 810ms	remaining: 1.5s
35:	learn: 21.0262832	total: 834ms	remaining: 1.48s
36:	learn: 20.5787502	total: 858ms	remaining: 1.46s
37:	learn: 20.3083055	total: 878ms	remaining: 1.43s
38:	learn: 19.9902529	total: 900ms	remaining: 1.41s
39:	learn: 19.6059571	total: 923ms	remaining: 1.38s
40:	learn: 19.3890959	total: 948ms	remaining: 1.36s
41:	learn: 19.0549255	total: 977ms	remaining: 1.35s
42:	learn: 18.7283215	total: 1s	remaining: 1.33s
43:	learn: 18.4448725	total: 1.02s	remaining: 1.3s
44:	learn: 18.1578001	total: 1.06s	remaining: 1.29s
45:	learn: 17.8777474	total: 1.08s	remaining: 1.27s
46:	learn: 17.6428221	total: 1.1s	remaining: 1.24s
47:	learn: 17.3887752	total: 1.12s	remaining: 1.21s
48:	learn: 17.1475761	total: 1.14s	remaining: 1.19s
49:	learn: 16.9064363	total: 1.17s	remaining: 1.17s
50:	learn: 16.6414681	total: 1.2s	remaining: 1.15s
51:	learn: 16.4549974	total: 1.22s	remaining: 1.13s
52:	learn: 16.2617558	total: 1.25s	remaining: 1.11s
53:	learn: 16.0258241	total: 1.27s	remaining: 1.08s
54:	learn: 15.7694686	total: 1.29s	remaining: 1.06s
55:	learn: 15.5449602	total: 1.32s	remaining: 1.04s
56:	learn: 15.3515330	total: 1.34s	remaining: 1.01s
57:	learn: 15.1120403	total: 1.37s	remaining: 990ms
58:	learn: 14.9131368	total: 1.4s	remaining: 970ms
59:	learn: 14.8021921	total: 1.42s	remaining: 948ms
60:	learn: 14.6564259	total: 1.45s	remaining: 925ms
61:	learn: 14.5253260	total: 1.47s	remaining: 900ms
62:	learn: 14.3975427	total: 1.49s	remaining: 877ms
63:	learn: 14.3060204	total: 1.51s	remaining: 852ms
64:	learn: 14.1283681	total: 1.54s	remaining: 828ms
65:	learn: 14.0159063	total: 1.56s	remaining: 805ms
66:	learn: 13.8712541	total: 1.6s	remaining: 788ms
67:	learn: 13.7852998	total: 1.63s	remaining: 767ms
68:	learn: 13.6790164	total: 1.65s	remaining: 743ms
69:	learn: 13.5253745	total: 1.68s	remaining: 719ms
70:	learn: 13.3959663	total: 1.7s	remaining: 694ms
71:	learn: 13.2062955	total: 1.72s	remaining: 670ms
72:	learn: 13.0788709	total: 1.74s	remaining: 645ms
73:	learn: 12.9513184	total: 1.77s	remaining: 621ms
74:	learn: 12.8198556	total: 1.79s	remaining: 596ms
75:	learn: 12.7137549	total: 1.82s	remaining: 574ms
76:	learn: 12.6243477	total: 1.85s	remaining: 554ms
77:	learn: 12.5241564	total: 1.88s	remaining: 530ms
78:	learn: 12.4445782	total: 1.9s	remaining: 506ms
79:	learn: 12.3816501	total: 1.93s	remaining: 482ms
80:	learn: 12.2846914	total: 1.95s	remaining: 457ms
81:	learn: 12.1419498	total: 1.97s	remaining: 432ms
82:	learn: 12.0846494	total: 1.99s	remaining: 408ms
83:	learn: 11.9851484	total: 2.02s	remaining: 384ms
84:	learn: 11.8905738	total: 2.04s	remaining: 361ms
85:	learn: 11.7718790	total: 2.07s	remaining: 337ms
86:	learn: 11.6854413	total: 2.1s	remaining: 313ms
87:	learn: 11.6206110	total: 2.13s	remaining: 290ms
88:	learn: 11.5376098	total: 2.15s	remaining: 266ms
89:	learn: 11.4235068	total: 2.17s	remaining: 241ms
90:	learn: 11.3477955	total: 2.19s	remaining: 217ms
91:	learn: 11.2663772	total: 2.21s	remaining: 193ms
92:	learn: 11.1916556	total: 2.24s	remaining: 169ms
93:	learn: 11.0921504	total: 2.27s	remaining: 145ms
94:	learn: 10.9622375	total: 2.3s	remaining: 121ms
95:	learn: 10.8882085	total: 2.32s	remaining: 96.7ms
96:	learn: 10.8086218	total: 2.34s	remaining: 72.5ms
97:	learn: 10.7552220	total: 2.37s	remaining: 48.5ms
98:	learn: 10.6929666	total: 2.4s	remaining: 24.2ms
99:	learn: 10.6200033	total: 2.42s	remaining: 0us
0:	learn: 46.3366259	total: 22.6ms	remaining: 2.24s
1:	learn: 45.2205278	total: 45.7ms	remaining: 2.24s
2:	learn: 43.9887404	total: 70.2ms	remaining: 2.27s
3:	learn: 42.8240666	total: 94.7ms	remaining: 2.27s
4:	learn: 41.6086617	total: 116ms	remaining: 2.2s
5:	learn: 40.5606446	total: 137ms	remaining: 2.14s
6:	learn: 39.6241326	total: 162ms	remaining: 2.15s
7:	learn: 39.0016852	total: 193ms	remaining: 2.22s
8:	learn: 37.8501670	total: 230ms	remaining: 2.33s
9:	learn: 37.0215474	total: 254ms	remaining: 2.29s
10:	learn: 36.0215020	total: 279ms	remaining: 2.26s
11:	learn: 35.2421331	total: 305ms	remaining: 2.23s
12:	learn: 34.5416837	total: 326ms	remaining: 2.18s
13:	learn: 33.7787649	total: 348ms	remaining: 2.13s
14:	learn: 32.9860883	total: 373ms	remaining: 2.11s
15:	learn: 32.2123752	total: 395ms	remaining: 2.07s
16:	learn: 31.3564648	total: 427ms	remaining: 2.08s
17:	learn: 30.7859979	total: 453ms	remaining: 2.06s
18:	learn: 30.1443515	total: 478ms	remaining: 2.04s
19:	learn: 29.4880724	total: 512ms	remaining: 2.05s
20:	learn: 28.9635727	total: 533ms	remaining: 2s
21:	learn: 28.4853342	total: 555ms	remaining: 1.97s
22:	learn: 27.9796348	total: 577ms	remaining: 1.93s
23:	learn: 27.4360487	total: 600ms	remaining: 1.9s
24:	learn: 26.8685214	total: 627ms	remaining: 1.88s
25:	learn: 26.1769206	total: 656ms	remaining: 1.87s
26:	learn: 25.7146048	total: 680ms	remaining: 1.84s
27:	learn: 25.2614850	total: 705ms	remaining: 1.81s
28:	learn: 24.6626472	total: 729ms	remaining: 1.78s
29:	learn: 24.2501259	total: 759ms	remaining: 1.77s
30:	learn: 23.7892661	total: 781ms	remaining: 1.74s
31:	learn: 23.2729078	total: 803ms	remaining: 1.71s
32:	learn: 22.8969731	total: 832ms	remaining: 1.69s
33:	learn: 22.4567570	total: 859ms	remaining: 1.67s
34:	learn: 22.0569858	total: 882ms	remaining: 1.64s
35:	learn: 21.7317775	total: 906ms	remaining: 1.61s
36:	learn: 21.3890971	total: 930ms	remaining: 1.58s
37:	learn: 21.0664504	total: 952ms	remaining: 1.55s
38:	learn: 20.7379659	total: 974ms	remaining: 1.52s
39:	learn: 20.4423699	total: 999ms	remaining: 1.5s
40:	learn: 20.1526720	total: 1.03s	remaining: 1.48s
41:	learn: 19.8706547	total: 1.06s	remaining: 1.46s
42:	learn: 19.5139134	total: 1.08s	remaining: 1.44s
43:	learn: 19.3495951	total: 1.11s	remaining: 1.41s
44:	learn: 19.1314757	total: 1.13s	remaining: 1.39s
45:	learn: 18.7971159	total: 1.16s	remaining: 1.36s
46:	learn: 18.5447051	total: 1.18s	remaining: 1.33s
47:	learn: 18.2328785	total: 1.2s	remaining: 1.3s
48:	learn: 17.9622938	total: 1.23s	remaining: 1.28s
49:	learn: 17.7264205	total: 1.26s	remaining: 1.26s
50:	learn: 17.4530592	total: 1.3s	remaining: 1.25s
51:	learn: 17.2236644	total: 1.32s	remaining: 1.22s
52:	learn: 17.0122792	total: 1.34s	remaining: 1.19s
53:	learn: 16.7599064	total: 1.37s	remaining: 1.16s
54:	learn: 16.5146699	total: 1.39s	remaining: 1.14s
55:	learn: 16.2531414	total: 1.41s	remaining: 1.11s
56:	learn: 16.0997208	total: 1.43s	remaining: 1.08s
57:	learn: 15.8452412	total: 1.46s	remaining: 1.06s
58:	learn: 15.6294900	total: 1.49s	remaining: 1.03s
59:	learn: 15.4564548	total: 1.51s	remaining: 1.01s
60:	learn: 15.2978533	total: 1.54s	remaining: 982ms
61:	learn: 15.0976912	total: 1.57s	remaining: 961ms
62:	learn: 14.9094446	total: 1.59s	remaining: 934ms
63:	learn: 14.7415094	total: 1.61s	remaining: 906ms
64:	learn: 14.6123806	total: 1.63s	remaining: 878ms
65:	learn: 14.4744916	total: 1.65s	remaining: 852ms
66:	learn: 14.3212717	total: 1.68s	remaining: 826ms
67:	learn: 14.1768047	total: 1.71s	remaining: 804ms
68:	learn: 14.0387344	total: 1.73s	remaining: 779ms
69:	learn: 13.8987579	total: 1.76s	remaining: 753ms
70:	learn: 13.7825740	total: 1.78s	remaining: 728ms
71:	learn: 13.6818548	total: 1.8s	remaining: 702ms
72:	learn: 13.5356993	total: 1.83s	remaining: 679ms
73:	learn: 13.4408704	total: 1.85s	remaining: 652ms
74:	learn: 13.2992218	total: 1.88s	remaining: 626ms
75:	learn: 13.1547092	total: 1.9s	remaining: 601ms
76:	learn: 13.0800189	total: 1.93s	remaining: 578ms
77:	learn: 12.9434711	total: 1.96s	remaining: 553ms
78:	learn: 12.8327325	total: 1.98s	remaining: 527ms
79:	learn: 12.7238946	total: 2.01s	remaining: 502ms
80:	learn: 12.6229528	total: 2.03s	remaining: 477ms
81:	learn: 12.5216078	total: 2.05s	remaining: 451ms
82:	learn: 12.4182254	total: 2.08s	remaining: 427ms
83:	learn: 12.3097978	total: 2.11s	remaining: 402ms
84:	learn: 12.1852056	total: 2.14s	remaining: 378ms
85:	learn: 12.0739627	total: 2.17s	remaining: 353ms
86:	learn: 11.9475583	total: 2.19s	remaining: 327ms
87:	learn: 11.8403806	total: 2.21s	remaining: 302ms
88:	learn: 11.7294124	total: 2.24s	remaining: 276ms
89:	learn: 11.6395689	total: 2.26s	remaining: 251ms
90:	learn: 11.5510643	total: 2.28s	remaining: 226ms
91:	learn: 11.4455301	total: 2.31s	remaining: 201ms
92:	learn: 11.3368661	total: 2.33s	remaining: 175ms
93:	learn: 11.2270796	total: 2.36s	remaining: 151ms
94:	learn: 11.1168414	total: 2.39s	remaining: 126ms
95:	learn: 11.0310985	total: 2.41s	remaining: 101ms
96:	learn: 10.9735185	total: 2.44s	remaining: 75.4ms
97:	learn: 10.8575874	total: 2.46s	remaining: 50.2ms
98:	learn: 10.7816173	total: 2.48s	remaining: 25.1ms
99:	learn: 10.7111737	total: 2.5s	remaining: 0us
0:	learn: 27.5585353	total: 9.65ms	remaining: 955ms
1:	learn: 27.1656995	total: 15.1ms	remaining: 742ms
2:	learn: 26.8590175	total: 22.5ms	remaining: 729ms
3:	learn: 26.5818406	total: 28.1ms	remaining: 674ms
4:	learn: 26.1148663	total: 33.3ms	remaining: 632ms
5:	learn: 25.7690484	total: 38.4ms	remaining: 601ms
6:	learn: 25.3489206	total: 43.6ms	remaining: 579ms
7:	learn: 24.9542406	total: 49.1ms	remaining: 565ms
8:	learn: 24.6777517	total: 54.4ms	remaining: 550ms
9:	learn: 24.3242344	total: 59.7ms	remaining: 537ms
10:	learn: 24.0383073	total: 64.6ms	remaining: 523ms
11:	learn: 23.7383420	total: 69.7ms	remaining: 511ms
12:	learn: 23.3461670	total: 74.6ms	remaining: 499ms
13:	learn: 23.0928636	total: 79.2ms	remaining: 486ms
14:	learn: 22.8770414	total: 84.9ms	remaining: 481ms
15:	learn: 22.6323214	total: 90.5ms	remaining: 475ms
16:	learn: 22.3597072	total: 95ms	remaining: 464ms
17:	learn: 22.1079813	total: 99.5ms	remaining: 453ms
18:	learn: 21.8421199	total: 104ms	remaining: 445ms
19:	learn: 21.6576508	total: 109ms	remaining: 437ms
20:	learn: 21.4301268	total: 114ms	remaining: 429ms
21:	learn: 21.2287388	total: 119ms	remaining: 420ms
22:	learn: 21.0553872	total: 123ms	remaining: 412ms
23:	learn: 20.8977091	total: 127ms	remaining: 404ms
24:	learn: 20.6619051	total: 132ms	remaining: 397ms
25:	learn: 20.5040955	total: 137ms	remaining: 390ms
26:	learn: 20.3181195	total: 141ms	remaining: 382ms
27:	learn: 20.0869436	total: 146ms	remaining: 376ms
28:	learn: 19.9375985	total: 151ms	remaining: 369ms
29:	learn: 19.8247516	total: 155ms	remaining: 362ms
30:	learn: 19.6261697	total: 160ms	remaining: 356ms
31:	learn: 19.4547236	total: 165ms	remaining: 351ms
32:	learn: 19.3157092	total: 170ms	remaining: 345ms
33:	learn: 19.1561419	total: 175ms	remaining: 339ms
34:	learn: 19.0453620	total: 180ms	remaining: 333ms
35:	learn: 18.8738574	total: 184ms	remaining: 328ms
36:	learn: 18.7072907	total: 190ms	remaining: 323ms
37:	learn: 18.5877943	total: 199ms	remaining: 325ms
38:	learn: 18.4436380	total: 208ms	remaining: 325ms
39:	learn: 18.3463356	total: 216ms	remaining: 323ms
40:	learn: 18.2008059	total: 223ms	remaining: 321ms
41:	learn: 18.0582079	total: 228ms	remaining: 315ms
42:	learn: 17.8891982	total: 234ms	remaining: 310ms
43:	learn: 17.7332246	total: 239ms	remaining: 305ms
44:	learn: 17.6206421	total: 245ms	remaining: 299ms
45:	learn: 17.4982800	total: 251ms	remaining: 294ms
46:	learn: 17.3970150	total: 256ms	remaining: 289ms
47:	learn: 17.3058203	total: 261ms	remaining: 283ms
48:	learn: 17.1789256	total: 266ms	remaining: 277ms
49:	learn: 17.0916229	total: 271ms	remaining: 271ms
50:	learn: 16.9859820	total: 277ms	remaining: 266ms
51:	learn: 16.8995582	total: 281ms	remaining: 260ms
52:	learn: 16.8137014	total: 287ms	remaining: 254ms
53:	learn: 16.7021451	total: 293ms	remaining: 249ms
54:	learn: 16.5895582	total: 298ms	remaining: 244ms
55:	learn: 16.5015639	total: 302ms	remaining: 237ms
56:	learn: 16.4356637	total: 307ms	remaining: 231ms
57:	learn: 16.3514525	total: 311ms	remaining: 225ms
58:	learn: 16.2401369	total: 316ms	remaining: 219ms
59:	learn: 16.1293223	total: 320ms	remaining: 213ms
60:	learn: 16.0271167	total: 324ms	remaining: 207ms
61:	learn: 15.9126257	total: 328ms	remaining: 201ms
62:	learn: 15.8391096	total: 332ms	remaining: 195ms
63:	learn: 15.7441773	total: 337ms	remaining: 189ms
64:	learn: 15.6885195	total: 341ms	remaining: 184ms
65:	learn: 15.6052039	total: 346ms	remaining: 178ms
66:	learn: 15.5074202	total: 350ms	remaining: 173ms
67:	learn: 15.4054338	total: 355ms	remaining: 167ms
68:	learn: 15.2885714	total: 359ms	remaining: 161ms
69:	learn: 15.2157472	total: 364ms	remaining: 156ms
70:	learn: 15.1031554	total: 369ms	remaining: 151ms
71:	learn: 15.0237470	total: 373ms	remaining: 145ms
72:	learn: 14.9756825	total: 378ms	remaining: 140ms
73:	learn: 14.8840596	total: 382ms	remaining: 134ms
74:	learn: 14.8077061	total: 387ms	remaining: 129ms
75:	learn: 14.7444437	total: 394ms	remaining: 125ms
76:	learn: 14.6751720	total: 402ms	remaining: 120ms
77:	learn: 14.5830333	total: 408ms	remaining: 115ms
78:	learn: 14.5241206	total: 415ms	remaining: 110ms
79:	learn: 14.4892731	total: 420ms	remaining: 105ms
80:	learn: 14.4256605	total: 426ms	remaining: 99.9ms
81:	learn: 14.3666860	total: 431ms	remaining: 94.6ms
82:	learn: 14.2938372	total: 436ms	remaining: 89.4ms
83:	learn: 14.2161532	total: 442ms	remaining: 84.2ms
84:	learn: 14.1582910	total: 447ms	remaining: 79ms
85:	learn: 14.1029153	total: 452ms	remaining: 73.7ms
86:	learn: 14.0475835	total: 458ms	remaining: 68.4ms
87:	learn: 13.9892661	total: 463ms	remaining: 63.1ms
88:	learn: 13.9481628	total: 468ms	remaining: 57.9ms
89:	learn: 13.8483991	total: 473ms	remaining: 52.6ms
90:	learn: 13.7775614	total: 479ms	remaining: 47.4ms
91:	learn: 13.7304585	total: 485ms	remaining: 42.2ms
92:	learn: 13.6783381	total: 490ms	remaining: 36.9ms
93:	learn: 13.6356964	total: 494ms	remaining: 31.6ms
94:	learn: 13.5924371	total: 499ms	remaining: 26.3ms
95:	learn: 13.5400746	total: 503ms	remaining: 21ms
96:	learn: 13.4897333	total: 507ms	remaining: 15.7ms
97:	learn: 13.4470321	total: 512ms	remaining: 10.4ms
98:	learn: 13.3856082	total: 516ms	remaining: 5.21ms
99:	learn: 13.3082371	total: 520ms	remaining: 0us
0:	learn: 43.0395283	total: 5.58ms	remaining: 552ms
1:	learn: 42.1130223	total: 10.4ms	remaining: 509ms
2:	learn: 41.1753409	total: 15.2ms	remaining: 492ms
3:	learn: 40.3637444	total: 19.9ms	remaining: 476ms
4:	learn: 39.6508088	total: 28.6ms	remaining: 543ms
5:	learn: 38.7217934	total: 35.8ms	remaining: 561ms
6:	learn: 37.8538055	total: 43.8ms	remaining: 582ms
7:	learn: 36.9793574	total: 50.1ms	remaining: 577ms
8:	learn: 36.3076984	total: 56.1ms	remaining: 567ms
9:	learn: 35.6673160	total: 61.2ms	remaining: 551ms
10:	learn: 34.8889800	total: 66.5ms	remaining: 538ms
11:	learn: 34.1675517	total: 71.7ms	remaining: 526ms
12:	learn: 33.6779564	total: 77ms	remaining: 516ms
13:	learn: 33.0710039	total: 82ms	remaining: 504ms
14:	learn: 32.4966674	total: 87ms	remaining: 493ms
15:	learn: 31.9492856	total: 92.5ms	remaining: 486ms
16:	learn: 31.5108129	total: 98.2ms	remaining: 480ms
17:	learn: 30.9804023	total: 104ms	remaining: 473ms
18:	learn: 30.4169089	total: 109ms	remaining: 463ms
19:	learn: 29.8930375	total: 114ms	remaining: 455ms
20:	learn: 29.3974421	total: 119ms	remaining: 449ms
21:	learn: 28.8792307	total: 124ms	remaining: 439ms
22:	learn: 28.3894474	total: 128ms	remaining: 430ms
23:	learn: 27.9921276	total: 133ms	remaining: 420ms
24:	learn: 27.6158887	total: 137ms	remaining: 411ms
25:	learn: 27.2866950	total: 142ms	remaining: 403ms
26:	learn: 26.8770708	total: 147ms	remaining: 396ms
27:	learn: 26.6233005	total: 151ms	remaining: 389ms
28:	learn: 26.2921934	total: 156ms	remaining: 382ms
29:	learn: 25.9156920	total: 160ms	remaining: 374ms
30:	learn: 25.5311106	total: 162ms	remaining: 361ms
31:	learn: 25.2178997	total: 167ms	remaining: 354ms
32:	learn: 24.8572196	total: 171ms	remaining: 347ms
33:	learn: 24.5849710	total: 175ms	remaining: 340ms
34:	learn: 24.2209190	total: 179ms	remaining: 333ms
35:	learn: 23.8708250	total: 184ms	remaining: 327ms
36:	learn: 23.5325279	total: 188ms	remaining: 320ms
37:	learn: 23.2116148	total: 192ms	remaining: 314ms
38:	learn: 22.9696787	total: 196ms	remaining: 307ms
39:	learn: 22.7936783	total: 201ms	remaining: 301ms
40:	learn: 22.6228847	total: 205ms	remaining: 296ms
41:	learn: 22.3691527	total: 210ms	remaining: 290ms
42:	learn: 22.1002173	total: 214ms	remaining: 283ms
43:	learn: 21.9157268	total: 218ms	remaining: 277ms
44:	learn: 21.7229102	total: 222ms	remaining: 272ms
45:	learn: 21.4642005	total: 228ms	remaining: 267ms
46:	learn: 21.3029442	total: 232ms	remaining: 262ms
47:	learn: 21.1469792	total: 237ms	remaining: 257ms
48:	learn: 20.9458235	total: 242ms	remaining: 252ms
49:	learn: 20.7335242	total: 247ms	remaining: 247ms
50:	learn: 20.5440269	total: 252ms	remaining: 242ms
51:	learn: 20.3661449	total: 260ms	remaining: 240ms
52:	learn: 20.2158134	total: 267ms	remaining: 237ms
53:	learn: 19.9934873	total: 275ms	remaining: 235ms
54:	learn: 19.7879739	total: 281ms	remaining: 230ms
55:	learn: 19.6630460	total: 288ms	remaining: 226ms
56:	learn: 19.5152729	total: 293ms	remaining: 221ms
57:	learn: 19.3581128	total: 298ms	remaining: 216ms
58:	learn: 19.2209303	total: 304ms	remaining: 211ms
59:	learn: 19.0965248	total: 309ms	remaining: 206ms
60:	learn: 19.0035954	total: 314ms	remaining: 201ms
61:	learn: 18.8554149	total: 320ms	remaining: 196ms
62:	learn: 18.7095427	total: 325ms	remaining: 191ms
63:	learn: 18.5751494	total: 330ms	remaining: 186ms
64:	learn: 18.4678251	total: 335ms	remaining: 180ms
65:	learn: 18.3500325	total: 341ms	remaining: 176ms
66:	learn: 18.2088983	total: 346ms	remaining: 170ms
67:	learn: 18.0737705	total: 351ms	remaining: 165ms
68:	learn: 17.9325058	total: 357ms	remaining: 160ms
69:	learn: 17.8003911	total: 362ms	remaining: 155ms
70:	learn: 17.7385366	total: 367ms	remaining: 150ms
71:	learn: 17.6106998	total: 372ms	remaining: 144ms
72:	learn: 17.4816270	total: 376ms	remaining: 139ms
73:	learn: 17.4025554	total: 381ms	remaining: 134ms
74:	learn: 17.2902108	total: 385ms	remaining: 128ms
75:	learn: 17.2158048	total: 390ms	remaining: 123ms
76:	learn: 17.1261053	total: 395ms	remaining: 118ms
77:	learn: 17.0308917	total: 399ms	remaining: 113ms
78:	learn: 16.9546705	total: 404ms	remaining: 107ms
79:	learn: 16.8319165	total: 408ms	remaining: 102ms
80:	learn: 16.7687017	total: 413ms	remaining: 96.9ms
81:	learn: 16.6972326	total: 418ms	remaining: 91.7ms
82:	learn: 16.6124580	total: 423ms	remaining: 86.6ms
83:	learn: 16.4999052	total: 428ms	remaining: 81.4ms
84:	learn: 16.4302484	total: 432ms	remaining: 76.3ms
85:	learn: 16.3201363	total: 437ms	remaining: 71.2ms
86:	learn: 16.2534314	total: 442ms	remaining: 66.1ms
87:	learn: 16.1720485	total: 447ms	remaining: 60.9ms
88:	learn: 16.0625751	total: 455ms	remaining: 56.2ms
89:	learn: 15.9135088	total: 463ms	remaining: 51.4ms
90:	learn: 15.8658863	total: 472ms	remaining: 46.7ms
91:	learn: 15.8066805	total: 478ms	remaining: 41.5ms
92:	learn: 15.7412103	total: 485ms	remaining: 36.5ms
93:	learn: 15.6542776	total: 490ms	remaining: 31.3ms
94:	learn: 15.5760334	total: 495ms	remaining: 26.1ms
95:	learn: 15.5434131	total: 501ms	remaining: 20.9ms
96:	learn: 15.4709561	total: 506ms	remaining: 15.6ms
97:	learn: 15.4449618	total: 511ms	remaining: 10.4ms
98:	learn: 15.3752761	total: 516ms	remaining: 5.21ms
99:	learn: 15.3106595	total: 522ms	remaining: 0us
0:	learn: 46.7142257	total: 4.56ms	remaining: 451ms
1:	learn: 45.7634153	total: 9.26ms	remaining: 454ms
2:	learn: 45.0054253	total: 13.8ms	remaining: 446ms
3:	learn: 44.2120432	total: 18.3ms	remaining: 439ms
4:	learn: 43.3960472	total: 22.8ms	remaining: 433ms
5:	learn: 42.8588120	total: 27.7ms	remaining: 434ms
6:	learn: 41.9533701	total: 32.3ms	remaining: 429ms
7:	learn: 41.2745030	total: 36.8ms	remaining: 424ms
8:	learn: 40.6797495	total: 41.2ms	remaining: 417ms
9:	learn: 39.9899571	total: 46.2ms	remaining: 416ms
10:	learn: 39.4682100	total: 51.3ms	remaining: 415ms
11:	learn: 39.0305595	total: 56.5ms	remaining: 414ms
12:	learn: 38.4200417	total: 61.6ms	remaining: 412ms
13:	learn: 37.8425194	total: 66.4ms	remaining: 408ms
14:	learn: 37.4203127	total: 71ms	remaining: 402ms
15:	learn: 36.9917688	total: 75.4ms	remaining: 396ms
16:	learn: 36.5544138	total: 82.8ms	remaining: 404ms
17:	learn: 36.0727019	total: 89.8ms	remaining: 409ms
18:	learn: 35.4835715	total: 96.9ms	remaining: 413ms
19:	learn: 34.9865654	total: 102ms	remaining: 410ms
20:	learn: 34.6063373	total: 109ms	remaining: 410ms
21:	learn: 34.0997289	total: 114ms	remaining: 403ms
22:	learn: 33.7313171	total: 118ms	remaining: 396ms
23:	learn: 33.3582000	total: 123ms	remaining: 390ms
24:	learn: 32.9432456	total: 128ms	remaining: 383ms
25:	learn: 32.5220888	total: 132ms	remaining: 375ms
26:	learn: 32.2172292	total: 136ms	remaining: 368ms
27:	learn: 31.8972904	total: 141ms	remaining: 361ms
28:	learn: 31.6405350	total: 145ms	remaining: 354ms
29:	learn: 31.4167702	total: 149ms	remaining: 347ms
30:	learn: 30.8541961	total: 151ms	remaining: 336ms
31:	learn: 30.5572111	total: 156ms	remaining: 331ms
32:	learn: 30.1700399	total: 160ms	remaining: 326ms
33:	learn: 29.8537271	total: 165ms	remaining: 321ms
34:	learn: 29.6192540	total: 170ms	remaining: 315ms
35:	learn: 29.3276362	total: 175ms	remaining: 310ms
36:	learn: 28.9985179	total: 179ms	remaining: 305ms
37:	learn: 28.7046880	total: 184ms	remaining: 300ms
38:	learn: 28.4412677	total: 188ms	remaining: 295ms
39:	learn: 28.1277292	total: 193ms	remaining: 289ms
40:	learn: 27.9000750	total: 197ms	remaining: 284ms
41:	learn: 27.5433162	total: 202ms	remaining: 279ms
42:	learn: 27.2493285	total: 207ms	remaining: 274ms
43:	learn: 26.9576632	total: 208ms	remaining: 265ms
44:	learn: 26.6177110	total: 213ms	remaining: 260ms
45:	learn: 26.2812456	total: 217ms	remaining: 255ms
46:	learn: 26.0803859	total: 222ms	remaining: 250ms
47:	learn: 25.9543581	total: 226ms	remaining: 244ms
48:	learn: 25.7951582	total: 230ms	remaining: 239ms
49:	learn: 25.6548184	total: 235ms	remaining: 235ms
50:	learn: 25.4010843	total: 239ms	remaining: 229ms
51:	learn: 24.9773937	total: 243ms	remaining: 224ms
52:	learn: 24.8026156	total: 248ms	remaining: 220ms
53:	learn: 24.5568053	total: 252ms	remaining: 215ms
54:	learn: 24.2281839	total: 257ms	remaining: 210ms
55:	learn: 23.9202795	total: 261ms	remaining: 205ms
56:	learn: 23.7625591	total: 266ms	remaining: 201ms
57:	learn: 23.5429721	total: 271ms	remaining: 196ms
58:	learn: 23.3175893	total: 276ms	remaining: 192ms
59:	learn: 23.2035130	total: 284ms	remaining: 189ms
60:	learn: 23.0232450	total: 292ms	remaining: 187ms
61:	learn: 22.8384958	total: 302ms	remaining: 185ms
62:	learn: 22.6499902	total: 311ms	remaining: 183ms
63:	learn: 22.4577426	total: 316ms	remaining: 178ms
64:	learn: 22.3333158	total: 323ms	remaining: 174ms
65:	learn: 22.2064131	total: 328ms	remaining: 169ms
66:	learn: 22.1434971	total: 334ms	remaining: 164ms
67:	learn: 21.9596519	total: 339ms	remaining: 160ms
68:	learn: 21.8475576	total: 344ms	remaining: 155ms
69:	learn: 21.6954745	total: 350ms	remaining: 150ms
70:	learn: 21.5635976	total: 356ms	remaining: 145ms
71:	learn: 21.4588506	total: 361ms	remaining: 141ms
72:	learn: 21.3527268	total: 367ms	remaining: 136ms
73:	learn: 21.2661288	total: 372ms	remaining: 131ms
74:	learn: 21.1817333	total: 377ms	remaining: 126ms
75:	learn: 21.0527553	total: 383ms	remaining: 121ms
76:	learn: 20.9229021	total: 389ms	remaining: 116ms
77:	learn: 20.7563946	total: 393ms	remaining: 111ms
78:	learn: 20.6569831	total: 398ms	remaining: 106ms
79:	learn: 20.4982663	total: 402ms	remaining: 101ms
80:	learn: 20.3185460	total: 407ms	remaining: 95.4ms
81:	learn: 20.2096241	total: 411ms	remaining: 90.3ms
82:	learn: 20.1274891	total: 415ms	remaining: 85.1ms
83:	learn: 20.0740139	total: 419ms	remaining: 79.9ms
84:	learn: 19.9630699	total: 424ms	remaining: 74.8ms
85:	learn: 19.8753899	total: 429ms	remaining: 69.8ms
86:	learn: 19.6563612	total: 433ms	remaining: 64.8ms
87:	learn: 19.4680232	total: 438ms	remaining: 59.7ms
88:	learn: 19.3503431	total: 442ms	remaining: 54.7ms
89:	learn: 19.2221379	total: 447ms	remaining: 49.7ms
90:	learn: 19.0732542	total: 452ms	remaining: 44.7ms
91:	learn: 18.9825190	total: 457ms	remaining: 39.7ms
92:	learn: 18.8839009	total: 462ms	remaining: 34.7ms
93:	learn: 18.8012219	total: 466ms	remaining: 29.7ms
94:	learn: 18.7172713	total: 471ms	remaining: 24.8ms
95:	learn: 18.6201170	total: 476ms	remaining: 19.8ms
96:	learn: 18.5318611	total: 484ms	remaining: 15ms
97:	learn: 18.3833356	total: 492ms	remaining: 10ms
98:	learn: 18.3289700	total: 502ms	remaining: 5.07ms
99:	learn: 18.2227333	total: 508ms	remaining: 0us
0:	learn: 46.3764524	total: 4.76ms	remaining: 472ms
1:	learn: 45.5561269	total: 9.15ms	remaining: 448ms
2:	learn: 44.8811245	total: 13.6ms	remaining: 441ms
3:	learn: 44.0788617	total: 18.3ms	remaining: 439ms
4:	learn: 43.3619790	total: 22.8ms	remaining: 432ms
5:	learn: 42.6912112	total: 27.5ms	remaining: 430ms
6:	learn: 42.2292118	total: 32.1ms	remaining: 426ms
7:	learn: 41.7725191	total: 36.4ms	remaining: 418ms
8:	learn: 41.1676614	total: 40.4ms	remaining: 409ms
9:	learn: 40.5771076	total: 44.4ms	remaining: 400ms
10:	learn: 39.8343757	total: 48.9ms	remaining: 396ms
11:	learn: 39.3761142	total: 52.8ms	remaining: 388ms
12:	learn: 38.5254692	total: 57.5ms	remaining: 385ms
13:	learn: 37.9629555	total: 61.3ms	remaining: 377ms
14:	learn: 37.4418438	total: 65.4ms	remaining: 371ms
15:	learn: 37.0507283	total: 69.5ms	remaining: 365ms
16:	learn: 36.6264217	total: 74.3ms	remaining: 363ms
17:	learn: 36.1114940	total: 79.3ms	remaining: 361ms
18:	learn: 35.7193862	total: 84.5ms	remaining: 360ms
19:	learn: 35.3301177	total: 89.6ms	remaining: 358ms
20:	learn: 35.0598280	total: 94.5ms	remaining: 356ms
21:	learn: 34.5469736	total: 99.6ms	remaining: 353ms
22:	learn: 34.2064215	total: 104ms	remaining: 349ms
23:	learn: 33.7280710	total: 113ms	remaining: 358ms
24:	learn: 33.3282940	total: 121ms	remaining: 364ms
25:	learn: 32.8478961	total: 130ms	remaining: 370ms
26:	learn: 32.5722164	total: 138ms	remaining: 373ms
27:	learn: 32.2457019	total: 143ms	remaining: 368ms
28:	learn: 31.9230495	total: 148ms	remaining: 363ms
29:	learn: 31.4311611	total: 154ms	remaining: 359ms
30:	learn: 30.9179052	total: 159ms	remaining: 353ms
31:	learn: 30.6201141	total: 164ms	remaining: 349ms
32:	learn: 30.3421106	total: 170ms	remaining: 344ms
33:	learn: 29.9885373	total: 175ms	remaining: 339ms
34:	learn: 29.7462780	total: 180ms	remaining: 334ms
35:	learn: 29.3607153	total: 185ms	remaining: 328ms
36:	learn: 29.1793078	total: 190ms	remaining: 324ms
37:	learn: 28.9276538	total: 195ms	remaining: 318ms
38:	learn: 28.6903934	total: 200ms	remaining: 313ms
39:	learn: 28.2095033	total: 206ms	remaining: 309ms
40:	learn: 27.7990608	total: 211ms	remaining: 304ms
41:	learn: 27.5406632	total: 215ms	remaining: 297ms
42:	learn: 27.2575376	total: 220ms	remaining: 291ms
43:	learn: 26.9741707	total: 224ms	remaining: 285ms
44:	learn: 26.6606899	total: 228ms	remaining: 279ms
45:	learn: 26.4015833	total: 233ms	remaining: 273ms
46:	learn: 26.1828993	total: 237ms	remaining: 267ms
47:	learn: 26.0233709	total: 240ms	remaining: 260ms
48:	learn: 25.9300399	total: 244ms	remaining: 254ms
49:	learn: 25.5861489	total: 248ms	remaining: 248ms
50:	learn: 25.4322012	total: 253ms	remaining: 243ms
51:	learn: 25.1595644	total: 257ms	remaining: 238ms
52:	learn: 24.9955303	total: 262ms	remaining: 232ms
53:	learn: 24.7273966	total: 266ms	remaining: 227ms
54:	learn: 24.5747978	total: 270ms	remaining: 221ms
55:	learn: 24.3807977	total: 275ms	remaining: 216ms
56:	learn: 24.1689569	total: 279ms	remaining: 210ms
57:	learn: 23.9898221	total: 283ms	remaining: 205ms
58:	learn: 23.7566414	total: 287ms	remaining: 200ms
59:	learn: 23.6641165	total: 292ms	remaining: 195ms
60:	learn: 23.5658066	total: 296ms	remaining: 189ms
61:	learn: 23.4338851	total: 301ms	remaining: 184ms
62:	learn: 23.2408837	total: 305ms	remaining: 179ms
63:	learn: 23.0642038	total: 310ms	remaining: 174ms
64:	learn: 22.9032045	total: 315ms	remaining: 170ms
65:	learn: 22.7736138	total: 324ms	remaining: 167ms
66:	learn: 22.6836443	total: 333ms	remaining: 164ms
67:	learn: 22.5983654	total: 342ms	remaining: 161ms
68:	learn: 22.4419813	total: 350ms	remaining: 157ms
69:	learn: 22.2863339	total: 355ms	remaining: 152ms
70:	learn: 22.1792943	total: 361ms	remaining: 147ms
71:	learn: 22.1130574	total: 366ms	remaining: 142ms
72:	learn: 21.9858161	total: 372ms	remaining: 137ms
73:	learn: 21.8577784	total: 377ms	remaining: 133ms
74:	learn: 21.7845222	total: 382ms	remaining: 127ms
75:	learn: 21.6831390	total: 388ms	remaining: 122ms
76:	learn: 21.6292521	total: 393ms	remaining: 117ms
77:	learn: 21.5789330	total: 398ms	remaining: 112ms
78:	learn: 21.5420942	total: 402ms	remaining: 107ms
79:	learn: 21.4280939	total: 407ms	remaining: 102ms
80:	learn: 21.3641165	total: 412ms	remaining: 96.6ms
81:	learn: 21.2734814	total: 417ms	remaining: 91.5ms
82:	learn: 21.2220323	total: 422ms	remaining: 86.4ms
83:	learn: 21.0625792	total: 427ms	remaining: 81.3ms
84:	learn: 20.9488320	total: 432ms	remaining: 76.3ms
85:	learn: 20.8504255	total: 438ms	remaining: 71.3ms
86:	learn: 20.7848510	total: 443ms	remaining: 66.2ms
87:	learn: 20.7247442	total: 447ms	remaining: 61ms
88:	learn: 20.5698590	total: 451ms	remaining: 55.8ms
89:	learn: 20.4067620	total: 455ms	remaining: 50.6ms
90:	learn: 20.3062482	total: 459ms	remaining: 45.4ms
91:	learn: 20.2029696	total: 463ms	remaining: 40.3ms
92:	learn: 20.1384849	total: 468ms	remaining: 35.2ms
93:	learn: 20.0260709	total: 472ms	remaining: 30.1ms
94:	learn: 19.9122100	total: 476ms	remaining: 25.1ms
95:	learn: 19.8648487	total: 480ms	remaining: 20ms
96:	learn: 19.8207072	total: 485ms	remaining: 15ms
97:	learn: 19.7261189	total: 489ms	remaining: 9.99ms
98:	learn: 19.7042438	total: 494ms	remaining: 4.99ms
99:	learn: 19.6546645	total: 498ms	remaining: 0us
0:	learn: 47.0239288	total: 5.39ms	remaining: 534ms
1:	learn: 46.2253829	total: 10.6ms	remaining: 518ms
2:	learn: 45.5580301	total: 15.6ms	remaining: 505ms
3:	learn: 44.7273237	total: 21ms	remaining: 504ms
4:	learn: 43.8867421	total: 25.8ms	remaining: 491ms
5:	learn: 43.3615911	total: 30.8ms	remaining: 483ms
6:	learn: 42.8548390	total: 37.5ms	remaining: 498ms
7:	learn: 42.1606758	total: 42.4ms	remaining: 487ms
8:	learn: 41.6625870	total: 46.7ms	remaining: 472ms
9:	learn: 40.9497092	total: 52ms	remaining: 468ms
10:	learn: 40.1886318	total: 57.4ms	remaining: 464ms
11:	learn: 39.7456423	total: 61.7ms	remaining: 453ms
12:	learn: 39.1171373	total: 65.6ms	remaining: 439ms
13:	learn: 38.5451069	total: 69.8ms	remaining: 429ms
14:	learn: 38.0155834	total: 73.8ms	remaining: 418ms
15:	learn: 37.5631354	total: 77.9ms	remaining: 409ms
16:	learn: 37.1030023	total: 81.6ms	remaining: 398ms
17:	learn: 36.4563029	total: 85.4ms	remaining: 389ms
18:	learn: 36.0160976	total: 89.7ms	remaining: 382ms
19:	learn: 35.5079827	total: 93.7ms	remaining: 375ms
20:	learn: 35.2111885	total: 97.6ms	remaining: 367ms
21:	learn: 34.9397465	total: 101ms	remaining: 360ms
22:	learn: 34.5270048	total: 106ms	remaining: 353ms
23:	learn: 34.0169260	total: 110ms	remaining: 347ms
24:	learn: 33.7454892	total: 113ms	remaining: 340ms
25:	learn: 33.2648157	total: 118ms	remaining: 335ms
26:	learn: 32.8899427	total: 122ms	remaining: 329ms
27:	learn: 32.6185050	total: 126ms	remaining: 323ms
28:	learn: 32.3528531	total: 130ms	remaining: 318ms
29:	learn: 32.0859923	total: 134ms	remaining: 313ms
30:	learn: 31.6511144	total: 139ms	remaining: 309ms
31:	learn: 31.2571765	total: 143ms	remaining: 304ms
32:	learn: 30.9770049	total: 148ms	remaining: 300ms
33:	learn: 30.6084872	total: 152ms	remaining: 295ms
34:	learn: 30.3448632	total: 157ms	remaining: 291ms
35:	learn: 30.0360942	total: 162ms	remaining: 289ms
36:	learn: 29.6648968	total: 172ms	remaining: 292ms
37:	learn: 29.3165114	total: 180ms	remaining: 294ms
38:	learn: 29.0829198	total: 189ms	remaining: 296ms
39:	learn: 28.7752064	total: 195ms	remaining: 292ms
40:	learn: 28.3622191	total: 202ms	remaining: 290ms
41:	learn: 28.1346631	total: 207ms	remaining: 286ms
42:	learn: 27.9585719	total: 213ms	remaining: 282ms
43:	learn: 27.6565566	total: 218ms	remaining: 277ms
44:	learn: 27.3616172	total: 223ms	remaining: 272ms
45:	learn: 27.0658637	total: 228ms	remaining: 268ms
46:	learn: 26.8660382	total: 233ms	remaining: 263ms
47:	learn: 26.6536078	total: 241ms	remaining: 261ms
48:	learn: 26.3524440	total: 246ms	remaining: 256ms
49:	learn: 26.1595277	total: 250ms	remaining: 250ms
50:	learn: 25.9273523	total: 255ms	remaining: 245ms
51:	learn: 25.7195580	total: 260ms	remaining: 240ms
52:	learn: 25.5730225	total: 266ms	remaining: 235ms
53:	learn: 25.3455276	total: 271ms	remaining: 231ms
54:	learn: 25.2289675	total: 275ms	remaining: 225ms
55:	learn: 25.0133024	total: 280ms	remaining: 220ms
56:	learn: 24.8406714	total: 284ms	remaining: 214ms
57:	learn: 24.6367857	total: 288ms	remaining: 208ms
58:	learn: 24.5338177	total: 292ms	remaining: 203ms
59:	learn: 24.3799964	total: 296ms	remaining: 197ms
60:	learn: 24.1447492	total: 300ms	remaining: 192ms
61:	learn: 23.9880495	total: 304ms	remaining: 186ms
62:	learn: 23.7140630	total: 308ms	remaining: 181ms
63:	learn: 23.5003791	total: 312ms	remaining: 176ms
64:	learn: 23.3207645	total: 317ms	remaining: 171ms
65:	learn: 23.1958356	total: 322ms	remaining: 166ms
66:	learn: 23.0471302	total: 325ms	remaining: 160ms
67:	learn: 22.8977183	total: 330ms	remaining: 155ms
68:	learn: 22.7187400	total: 334ms	remaining: 150ms
69:	learn: 22.6523405	total: 339ms	remaining: 145ms
70:	learn: 22.4767453	total: 343ms	remaining: 140ms
71:	learn: 22.3243677	total: 348ms	remaining: 135ms
72:	learn: 22.2133096	total: 352ms	remaining: 130ms
73:	learn: 22.1151713	total: 357ms	remaining: 125ms
74:	learn: 22.0296666	total: 362ms	remaining: 121ms
75:	learn: 21.9195980	total: 366ms	remaining: 116ms
76:	learn: 21.8401730	total: 374ms	remaining: 112ms
77:	learn: 21.8079797	total: 381ms	remaining: 107ms
78:	learn: 21.7274109	total: 389ms	remaining: 103ms
79:	learn: 21.6663032	total: 395ms	remaining: 98.8ms
80:	learn: 21.5633117	total: 403ms	remaining: 94.6ms
81:	learn: 21.4542467	total: 408ms	remaining: 89.5ms
82:	learn: 21.3177957	total: 413ms	remaining: 84.5ms
83:	learn: 21.1289167	total: 418ms	remaining: 79.6ms
84:	learn: 21.0297368	total: 424ms	remaining: 74.8ms
85:	learn: 20.9089564	total: 429ms	remaining: 69.8ms
86:	learn: 20.7653988	total: 434ms	remaining: 64.9ms
87:	learn: 20.6521894	total: 439ms	remaining: 59.9ms
88:	learn: 20.5193021	total: 444ms	remaining: 54.9ms
89:	learn: 20.4361620	total: 449ms	remaining: 49.9ms
90:	learn: 20.3546710	total: 454ms	remaining: 44.9ms
91:	learn: 20.2513296	total: 459ms	remaining: 39.9ms
92:	learn: 20.1605550	total: 464ms	remaining: 35ms
93:	learn: 20.0515942	total: 470ms	remaining: 30ms
94:	learn: 19.9800764	total: 476ms	remaining: 25.1ms
95:	learn: 19.8996532	total: 480ms	remaining: 20ms
96:	learn: 19.8450910	total: 484ms	remaining: 15ms
97:	learn: 19.7887346	total: 489ms	remaining: 9.97ms
98:	learn: 19.7230872	total: 493ms	remaining: 4.98ms
99:	learn: 19.6328825	total: 497ms	remaining: 0us
0:	learn: 27.3716363	total: 4.99ms	remaining: 494ms
1:	learn: 26.7586038	total: 9.56ms	remaining: 469ms
2:	learn: 26.1513803	total: 14.1ms	remaining: 457ms
3:	learn: 25.6569249	total: 19ms	remaining: 457ms
4:	learn: 25.0448773	total: 26.4ms	remaining: 502ms
5:	learn: 24.6011243	total: 33.8ms	remaining: 530ms
6:	learn: 23.9665913	total: 43.6ms	remaining: 579ms
7:	learn: 23.5201950	total: 49.2ms	remaining: 566ms
8:	learn: 22.9901116	total: 56.6ms	remaining: 573ms
9:	learn: 22.5256710	total: 61.8ms	remaining: 556ms
10:	learn: 22.1598038	total: 66.6ms	remaining: 539ms
11:	learn: 21.7726663	total: 71.9ms	remaining: 527ms
12:	learn: 21.5014839	total: 77.1ms	remaining: 516ms
13:	learn: 21.1063605	total: 82.7ms	remaining: 508ms
14:	learn: 20.7648344	total: 88ms	remaining: 499ms
15:	learn: 20.4005501	total: 93.5ms	remaining: 491ms
16:	learn: 20.0308689	total: 98.9ms	remaining: 483ms
17:	learn: 19.7619894	total: 104ms	remaining: 474ms
18:	learn: 19.4006982	total: 109ms	remaining: 464ms
19:	learn: 19.1201126	total: 114ms	remaining: 458ms
20:	learn: 18.7774355	total: 120ms	remaining: 450ms
21:	learn: 18.5027646	total: 125ms	remaining: 443ms
22:	learn: 18.1958499	total: 129ms	remaining: 433ms
23:	learn: 18.0191187	total: 134ms	remaining: 424ms
24:	learn: 17.8387270	total: 138ms	remaining: 414ms
25:	learn: 17.5280679	total: 143ms	remaining: 406ms
26:	learn: 17.3062744	total: 147ms	remaining: 396ms
27:	learn: 17.0131776	total: 151ms	remaining: 388ms
28:	learn: 16.7409451	total: 155ms	remaining: 380ms
29:	learn: 16.5094615	total: 160ms	remaining: 373ms
30:	learn: 16.2691858	total: 164ms	remaining: 365ms
31:	learn: 16.0502592	total: 168ms	remaining: 357ms
32:	learn: 15.8734968	total: 172ms	remaining: 349ms
33:	learn: 15.6646527	total: 176ms	remaining: 343ms
34:	learn: 15.5331988	total: 181ms	remaining: 336ms
35:	learn: 15.2505462	total: 185ms	remaining: 329ms
36:	learn: 15.0313064	total: 189ms	remaining: 322ms
37:	learn: 14.8734366	total: 194ms	remaining: 317ms
38:	learn: 14.6699229	total: 198ms	remaining: 310ms
39:	learn: 14.5898168	total: 203ms	remaining: 305ms
40:	learn: 14.4208947	total: 207ms	remaining: 298ms
41:	learn: 14.2850223	total: 212ms	remaining: 292ms
42:	learn: 14.1442724	total: 216ms	remaining: 286ms
43:	learn: 13.9770221	total: 221ms	remaining: 281ms
44:	learn: 13.8778270	total: 225ms	remaining: 275ms
45:	learn: 13.6902000	total: 230ms	remaining: 270ms
46:	learn: 13.5674586	total: 235ms	remaining: 265ms
47:	learn: 13.3835423	total: 240ms	remaining: 259ms
48:	learn: 13.2779430	total: 244ms	remaining: 254ms
49:	learn: 13.1218837	total: 249ms	remaining: 249ms
50:	learn: 13.0063048	total: 256ms	remaining: 246ms
51:	learn: 12.8507410	total: 265ms	remaining: 244ms
52:	learn: 12.7455025	total: 272ms	remaining: 241ms
53:	learn: 12.6261811	total: 277ms	remaining: 236ms
54:	learn: 12.5173579	total: 283ms	remaining: 231ms
55:	learn: 12.4529502	total: 288ms	remaining: 227ms
56:	learn: 12.3944087	total: 293ms	remaining: 221ms
57:	learn: 12.2888055	total: 299ms	remaining: 217ms
58:	learn: 12.1806093	total: 304ms	remaining: 211ms
59:	learn: 12.0712110	total: 310ms	remaining: 206ms
60:	learn: 11.9961171	total: 315ms	remaining: 201ms
61:	learn: 11.8823972	total: 320ms	remaining: 196ms
62:	learn: 11.7943665	total: 325ms	remaining: 191ms
63:	learn: 11.7212181	total: 330ms	remaining: 186ms
64:	learn: 11.6362437	total: 335ms	remaining: 180ms
65:	learn: 11.5522591	total: 341ms	remaining: 176ms
66:	learn: 11.4500175	total: 346ms	remaining: 171ms
67:	learn: 11.3258387	total: 351ms	remaining: 165ms
68:	learn: 11.2482685	total: 355ms	remaining: 160ms
69:	learn: 11.1755209	total: 360ms	remaining: 154ms
70:	learn: 11.0887540	total: 364ms	remaining: 149ms
71:	learn: 11.0054578	total: 368ms	remaining: 143ms
72:	learn: 10.9318991	total: 373ms	remaining: 138ms
73:	learn: 10.8522001	total: 377ms	remaining: 132ms
74:	learn: 10.7674012	total: 381ms	remaining: 127ms
75:	learn: 10.7187991	total: 386ms	remaining: 122ms
76:	learn: 10.6548375	total: 390ms	remaining: 116ms
77:	learn: 10.6095260	total: 394ms	remaining: 111ms
78:	learn: 10.5658533	total: 398ms	remaining: 106ms
79:	learn: 10.5097785	total: 402ms	remaining: 101ms
80:	learn: 10.4527426	total: 407ms	remaining: 95.5ms
81:	learn: 10.3885391	total: 412ms	remaining: 90.4ms
82:	learn: 10.3299710	total: 417ms	remaining: 85.3ms
83:	learn: 10.2436190	total: 421ms	remaining: 80.3ms
84:	learn: 10.1749078	total: 426ms	remaining: 75.2ms
85:	learn: 10.0946062	total: 431ms	remaining: 70.1ms
86:	learn: 10.0390578	total: 436ms	remaining: 65.1ms
87:	learn: 9.9852955	total: 440ms	remaining: 60ms
88:	learn: 9.9302992	total: 448ms	remaining: 55.4ms
89:	learn: 9.8630695	total: 456ms	remaining: 50.6ms
90:	learn: 9.7805856	total: 465ms	remaining: 46ms
91:	learn: 9.7127178	total: 471ms	remaining: 41ms
92:	learn: 9.6557593	total: 478ms	remaining: 36ms
93:	learn: 9.5921286	total: 483ms	remaining: 30.8ms
94:	learn: 9.5187489	total: 488ms	remaining: 25.7ms
95:	learn: 9.4500955	total: 494ms	remaining: 20.6ms
96:	learn: 9.3834246	total: 499ms	remaining: 15.4ms
97:	learn: 9.3221422	total: 504ms	remaining: 10.3ms
98:	learn: 9.2581494	total: 509ms	remaining: 5.14ms
99:	learn: 9.2021708	total: 515ms	remaining: 0us
0:	learn: 42.4859206	total: 4.25ms	remaining: 421ms
1:	learn: 41.2348392	total: 8.72ms	remaining: 427ms
2:	learn: 39.9044703	total: 13.2ms	remaining: 428ms
3:	learn: 38.6081616	total: 17.5ms	remaining: 420ms
4:	learn: 37.4610571	total: 22.3ms	remaining: 424ms
5:	learn: 36.3390199	total: 27.5ms	remaining: 432ms
6:	learn: 35.1817084	total: 32.3ms	remaining: 429ms
7:	learn: 34.1132574	total: 37.1ms	remaining: 426ms
8:	learn: 33.4673440	total: 41.9ms	remaining: 424ms
9:	learn: 32.4688388	total: 46.9ms	remaining: 422ms
10:	learn: 31.5801915	total: 52.1ms	remaining: 422ms
11:	learn: 30.7270901	total: 57.3ms	remaining: 420ms
12:	learn: 30.1030598	total: 62.4ms	remaining: 418ms
13:	learn: 29.2931850	total: 63.7ms	remaining: 391ms
14:	learn: 28.5479304	total: 68.3ms	remaining: 387ms
15:	learn: 27.9377772	total: 72.8ms	remaining: 382ms
16:	learn: 27.2217220	total: 77.5ms	remaining: 378ms
17:	learn: 26.5521028	total: 82.3ms	remaining: 375ms
18:	learn: 25.9926990	total: 90.2ms	remaining: 385ms
19:	learn: 25.3989069	total: 98.6ms	remaining: 394ms
20:	learn: 24.8440572	total: 108ms	remaining: 404ms
21:	learn: 24.2947764	total: 116ms	remaining: 410ms
22:	learn: 23.7487326	total: 121ms	remaining: 405ms
23:	learn: 23.1892639	total: 126ms	remaining: 400ms
24:	learn: 22.7249056	total: 132ms	remaining: 395ms
25:	learn: 22.2987315	total: 137ms	remaining: 390ms
26:	learn: 21.9065428	total: 142ms	remaining: 385ms
27:	learn: 21.4981889	total: 148ms	remaining: 380ms
28:	learn: 21.0962886	total: 153ms	remaining: 375ms
29:	learn: 20.8295403	total: 158ms	remaining: 370ms
30:	learn: 20.6084828	total: 165ms	remaining: 366ms
31:	learn: 20.2966492	total: 170ms	remaining: 361ms
32:	learn: 19.9841639	total: 175ms	remaining: 356ms
33:	learn: 19.7208663	total: 181ms	remaining: 352ms
34:	learn: 19.4135423	total: 188ms	remaining: 348ms
35:	learn: 19.2034111	total: 192ms	remaining: 342ms
36:	learn: 18.9402581	total: 197ms	remaining: 335ms
37:	learn: 18.7382588	total: 201ms	remaining: 328ms
38:	learn: 18.4705302	total: 206ms	remaining: 321ms
39:	learn: 18.2354107	total: 210ms	remaining: 315ms
40:	learn: 17.9669553	total: 214ms	remaining: 308ms
41:	learn: 17.7329625	total: 219ms	remaining: 302ms
42:	learn: 17.4715711	total: 223ms	remaining: 296ms
43:	learn: 17.2285510	total: 228ms	remaining: 290ms
44:	learn: 17.0261018	total: 233ms	remaining: 285ms
45:	learn: 16.8373998	total: 237ms	remaining: 278ms
46:	learn: 16.6975431	total: 242ms	remaining: 272ms
47:	learn: 16.5029954	total: 246ms	remaining: 267ms
48:	learn: 16.3332890	total: 251ms	remaining: 262ms
49:	learn: 16.1354926	total: 256ms	remaining: 256ms
50:	learn: 16.0073114	total: 261ms	remaining: 250ms
51:	learn: 15.9043247	total: 265ms	remaining: 245ms
52:	learn: 15.7303782	total: 270ms	remaining: 240ms
53:	learn: 15.5560543	total: 275ms	remaining: 234ms
54:	learn: 15.3435331	total: 281ms	remaining: 230ms
55:	learn: 15.2045774	total: 288ms	remaining: 227ms
56:	learn: 15.0609857	total: 296ms	remaining: 223ms
57:	learn: 14.9370901	total: 304ms	remaining: 220ms
58:	learn: 14.8410465	total: 312ms	remaining: 217ms
59:	learn: 14.7081240	total: 318ms	remaining: 212ms
60:	learn: 14.5636282	total: 323ms	remaining: 207ms
61:	learn: 14.4606865	total: 328ms	remaining: 201ms
62:	learn: 14.3731446	total: 334ms	remaining: 196ms
63:	learn: 14.2045145	total: 339ms	remaining: 191ms
64:	learn: 14.0461252	total: 345ms	remaining: 186ms
65:	learn: 13.9195454	total: 350ms	remaining: 180ms
66:	learn: 13.8190753	total: 355ms	remaining: 175ms
67:	learn: 13.7252500	total: 361ms	remaining: 170ms
68:	learn: 13.6566471	total: 366ms	remaining: 164ms
69:	learn: 13.5121693	total: 371ms	remaining: 159ms
70:	learn: 13.4442080	total: 377ms	remaining: 154ms
71:	learn: 13.3279962	total: 383ms	remaining: 149ms
72:	learn: 13.2456458	total: 387ms	remaining: 143ms
73:	learn: 13.1417720	total: 392ms	remaining: 138ms
74:	learn: 13.0795807	total: 397ms	remaining: 132ms
75:	learn: 12.9858298	total: 402ms	remaining: 127ms
76:	learn: 12.9193581	total: 406ms	remaining: 121ms
77:	learn: 12.8008737	total: 411ms	remaining: 116ms
78:	learn: 12.7215618	total: 415ms	remaining: 110ms
79:	learn: 12.6252386	total: 420ms	remaining: 105ms
80:	learn: 12.5456193	total: 424ms	remaining: 99.4ms
81:	learn: 12.4550597	total: 428ms	remaining: 94ms
82:	learn: 12.3684000	total: 432ms	remaining: 88.6ms
83:	learn: 12.2904435	total: 437ms	remaining: 83.2ms
84:	learn: 12.2128737	total: 441ms	remaining: 77.8ms
85:	learn: 12.1069589	total: 446ms	remaining: 72.6ms
86:	learn: 11.9975688	total: 450ms	remaining: 67.3ms
87:	learn: 11.9113686	total: 455ms	remaining: 62ms
88:	learn: 11.8489375	total: 460ms	remaining: 56.8ms
89:	learn: 11.7446095	total: 464ms	remaining: 51.6ms
90:	learn: 11.6793247	total: 469ms	remaining: 46.4ms
91:	learn: 11.6120227	total: 474ms	remaining: 41.2ms
92:	learn: 11.5559096	total: 480ms	remaining: 36.2ms
93:	learn: 11.5063069	total: 488ms	remaining: 31.2ms
94:	learn: 11.4776305	total: 498ms	remaining: 26.2ms
95:	learn: 11.4163720	total: 505ms	remaining: 21ms
96:	learn: 11.3547170	total: 512ms	remaining: 15.8ms
97:	learn: 11.2947704	total: 517ms	remaining: 10.6ms
98:	learn: 11.2120192	total: 523ms	remaining: 5.28ms
99:	learn: 11.1607467	total: 528ms	remaining: 0us
0:	learn: 46.2258117	total: 1.93ms	remaining: 191ms
1:	learn: 45.1972950	total: 6.79ms	remaining: 333ms
2:	learn: 43.7957357	total: 11.1ms	remaining: 359ms
3:	learn: 42.5777391	total: 15.5ms	remaining: 372ms
4:	learn: 41.5327833	total: 20ms	remaining: 380ms
5:	learn: 40.4435276	total: 24.3ms	remaining: 380ms
6:	learn: 39.4670075	total: 28.5ms	remaining: 379ms
7:	learn: 38.7108484	total: 32.7ms	remaining: 376ms
8:	learn: 38.1402654	total: 37.1ms	remaining: 376ms
9:	learn: 37.2648485	total: 41.9ms	remaining: 377ms
10:	learn: 36.4694198	total: 46.5ms	remaining: 376ms
11:	learn: 35.5168067	total: 50.9ms	remaining: 373ms
12:	learn: 34.7782207	total: 55.5ms	remaining: 371ms
13:	learn: 33.9839024	total: 60ms	remaining: 369ms
14:	learn: 33.2222232	total: 64.3ms	remaining: 364ms
15:	learn: 32.4007311	total: 68.7ms	remaining: 361ms
16:	learn: 31.6552844	total: 73.3ms	remaining: 358ms
17:	learn: 30.9799186	total: 78ms	remaining: 356ms
18:	learn: 30.2888540	total: 82.7ms	remaining: 353ms
19:	learn: 29.7032334	total: 87.5ms	remaining: 350ms
20:	learn: 29.2886252	total: 92ms	remaining: 346ms
21:	learn: 28.7682793	total: 96.8ms	remaining: 343ms
22:	learn: 28.4016143	total: 102ms	remaining: 340ms
23:	learn: 27.6630864	total: 110ms	remaining: 348ms
24:	learn: 27.2033858	total: 119ms	remaining: 356ms
25:	learn: 26.5935061	total: 127ms	remaining: 363ms
26:	learn: 26.1389740	total: 135ms	remaining: 366ms
27:	learn: 25.7937555	total: 140ms	remaining: 361ms
28:	learn: 25.4247732	total: 145ms	remaining: 355ms
29:	learn: 24.9684460	total: 151ms	remaining: 352ms
30:	learn: 24.5885923	total: 156ms	remaining: 348ms
31:	learn: 24.2703978	total: 161ms	remaining: 342ms
32:	learn: 23.8387638	total: 167ms	remaining: 339ms
33:	learn: 23.6317607	total: 172ms	remaining: 334ms
34:	learn: 23.3263085	total: 177ms	remaining: 329ms
35:	learn: 22.9960495	total: 183ms	remaining: 325ms
36:	learn: 22.6616330	total: 188ms	remaining: 320ms
37:	learn: 22.1801596	total: 193ms	remaining: 314ms
38:	learn: 21.8114556	total: 198ms	remaining: 309ms
39:	learn: 21.5714330	total: 204ms	remaining: 306ms
40:	learn: 21.1089354	total: 209ms	remaining: 300ms
41:	learn: 20.8040772	total: 213ms	remaining: 294ms
42:	learn: 20.4965159	total: 217ms	remaining: 288ms
43:	learn: 20.2898724	total: 222ms	remaining: 282ms
44:	learn: 20.0169420	total: 227ms	remaining: 277ms
45:	learn: 19.8348803	total: 231ms	remaining: 272ms
46:	learn: 19.5554754	total: 236ms	remaining: 266ms
47:	learn: 19.2782294	total: 240ms	remaining: 260ms
48:	learn: 19.0395772	total: 245ms	remaining: 255ms
49:	learn: 18.7983211	total: 249ms	remaining: 249ms
50:	learn: 18.6396276	total: 253ms	remaining: 243ms
51:	learn: 18.4535258	total: 258ms	remaining: 238ms
52:	learn: 18.2777199	total: 262ms	remaining: 232ms
53:	learn: 18.0572244	total: 266ms	remaining: 227ms
54:	learn: 17.8213238	total: 271ms	remaining: 222ms
55:	learn: 17.5926067	total: 276ms	remaining: 217ms
56:	learn: 17.3990115	total: 281ms	remaining: 212ms
57:	learn: 17.2444936	total: 285ms	remaining: 207ms
58:	learn: 17.0900496	total: 290ms	remaining: 202ms
59:	learn: 16.8497932	total: 295ms	remaining: 196ms
60:	learn: 16.7335122	total: 299ms	remaining: 191ms
61:	learn: 16.5285847	total: 304ms	remaining: 186ms
62:	learn: 16.4326012	total: 312ms	remaining: 183ms
63:	learn: 16.2977130	total: 319ms	remaining: 180ms
64:	learn: 16.1876309	total: 329ms	remaining: 177ms
65:	learn: 16.0948338	total: 337ms	remaining: 174ms
66:	learn: 15.9055478	total: 343ms	remaining: 169ms
67:	learn: 15.8244487	total: 348ms	remaining: 164ms
68:	learn: 15.6064385	total: 354ms	remaining: 159ms
69:	learn: 15.4574801	total: 360ms	remaining: 154ms
70:	learn: 15.4064312	total: 365ms	remaining: 149ms
71:	learn: 15.2463289	total: 371ms	remaining: 144ms
72:	learn: 15.1083967	total: 376ms	remaining: 139ms
73:	learn: 14.8909334	total: 382ms	remaining: 134ms
74:	learn: 14.7646415	total: 387ms	remaining: 129ms
75:	learn: 14.6847350	total: 391ms	remaining: 124ms
76:	learn: 14.5941501	total: 396ms	remaining: 118ms
77:	learn: 14.5049987	total: 402ms	remaining: 113ms
78:	learn: 14.4043748	total: 407ms	remaining: 108ms
79:	learn: 14.2633292	total: 412ms	remaining: 103ms
80:	learn: 14.1257360	total: 417ms	remaining: 97.7ms
81:	learn: 14.0626940	total: 421ms	remaining: 92.5ms
82:	learn: 13.9429889	total: 426ms	remaining: 87.3ms
83:	learn: 13.8834534	total: 431ms	remaining: 82.1ms
84:	learn: 13.7361899	total: 436ms	remaining: 76.9ms
85:	learn: 13.6473170	total: 441ms	remaining: 71.8ms
86:	learn: 13.5168963	total: 446ms	remaining: 66.6ms
87:	learn: 13.3778373	total: 451ms	remaining: 61.5ms
88:	learn: 13.2827073	total: 456ms	remaining: 56.3ms
89:	learn: 13.1962748	total: 460ms	remaining: 51.1ms
90:	learn: 13.1317634	total: 464ms	remaining: 45.9ms
91:	learn: 12.9996032	total: 469ms	remaining: 40.8ms
92:	learn: 12.8843393	total: 474ms	remaining: 35.7ms
93:	learn: 12.8187378	total: 479ms	remaining: 30.6ms
94:	learn: 12.7176304	total: 484ms	remaining: 25.5ms
95:	learn: 12.6420924	total: 488ms	remaining: 20.3ms
96:	learn: 12.5500097	total: 493ms	remaining: 15.3ms
97:	learn: 12.4837866	total: 500ms	remaining: 10.2ms
98:	learn: 12.3597911	total: 507ms	remaining: 5.13ms
99:	learn: 12.2792795	total: 516ms	remaining: 0us
0:	learn: 45.8627255	total: 2.25ms	remaining: 222ms
1:	learn: 44.8162174	total: 7.97ms	remaining: 391ms
2:	learn: 43.9865430	total: 13ms	remaining: 420ms
3:	learn: 42.9919872	total: 18ms	remaining: 432ms
4:	learn: 41.8902122	total: 23.3ms	remaining: 444ms
5:	learn: 41.0496461	total: 28.1ms	remaining: 440ms
6:	learn: 40.0946649	total: 33.8ms	remaining: 450ms
7:	learn: 39.3893186	total: 39.5ms	remaining: 454ms
8:	learn: 38.5282166	total: 44ms	remaining: 445ms
9:	learn: 37.5895258	total: 48.6ms	remaining: 438ms
10:	learn: 36.7137467	total: 53ms	remaining: 429ms
11:	learn: 35.7818300	total: 57.5ms	remaining: 421ms
12:	learn: 34.8459255	total: 61.9ms	remaining: 414ms
13:	learn: 34.2225882	total: 66.2ms	remaining: 407ms
14:	learn: 33.4045891	total: 70.6ms	remaining: 400ms
15:	learn: 32.7931441	total: 75.2ms	remaining: 395ms
16:	learn: 32.2009164	total: 79.7ms	remaining: 389ms
17:	learn: 31.4431417	total: 83.8ms	remaining: 382ms
18:	learn: 30.6940787	total: 87.9ms	remaining: 375ms
19:	learn: 30.2032085	total: 92.5ms	remaining: 370ms
20:	learn: 29.6620038	total: 96.8ms	remaining: 364ms
21:	learn: 29.1329122	total: 101ms	remaining: 358ms
22:	learn: 28.9285069	total: 105ms	remaining: 352ms
23:	learn: 28.2773846	total: 110ms	remaining: 348ms
24:	learn: 27.6312201	total: 114ms	remaining: 343ms
25:	learn: 27.1224449	total: 118ms	remaining: 337ms
26:	learn: 26.7129115	total: 123ms	remaining: 332ms
27:	learn: 26.2030118	total: 128ms	remaining: 329ms
28:	learn: 25.8449000	total: 134ms	remaining: 329ms
29:	learn: 25.3832705	total: 141ms	remaining: 329ms
30:	learn: 24.9797913	total: 148ms	remaining: 329ms
31:	learn: 24.7190041	total: 153ms	remaining: 326ms
32:	learn: 24.4139846	total: 158ms	remaining: 321ms
33:	learn: 24.0085081	total: 163ms	remaining: 316ms
34:	learn: 23.7092621	total: 168ms	remaining: 312ms
35:	learn: 23.4620026	total: 175ms	remaining: 311ms
36:	learn: 23.0924724	total: 180ms	remaining: 306ms
37:	learn: 22.6471910	total: 185ms	remaining: 302ms
38:	learn: 22.3422405	total: 190ms	remaining: 297ms
39:	learn: 22.0391348	total: 195ms	remaining: 293ms
40:	learn: 21.7653773	total: 201ms	remaining: 289ms
41:	learn: 21.4652025	total: 206ms	remaining: 284ms
42:	learn: 21.1937288	total: 211ms	remaining: 279ms
43:	learn: 20.9481301	total: 216ms	remaining: 275ms
44:	learn: 20.7022718	total: 221ms	remaining: 271ms
45:	learn: 20.6128483	total: 226ms	remaining: 266ms
46:	learn: 20.5444203	total: 232ms	remaining: 261ms
47:	learn: 20.2652868	total: 237ms	remaining: 257ms
48:	learn: 20.0465015	total: 242ms	remaining: 252ms
49:	learn: 19.8485858	total: 247ms	remaining: 247ms
50:	learn: 19.6218360	total: 252ms	remaining: 242ms
51:	learn: 19.4340385	total: 257ms	remaining: 237ms
52:	learn: 19.2755253	total: 262ms	remaining: 233ms
53:	learn: 19.1513895	total: 268ms	remaining: 229ms
54:	learn: 18.9926498	total: 274ms	remaining: 224ms
55:	learn: 18.9138819	total: 279ms	remaining: 219ms
56:	learn: 18.7601521	total: 283ms	remaining: 214ms
57:	learn: 18.5383747	total: 288ms	remaining: 209ms
58:	learn: 18.3203725	total: 293ms	remaining: 203ms
59:	learn: 18.1486463	total: 297ms	remaining: 198ms
60:	learn: 18.0745744	total: 301ms	remaining: 192ms
61:	learn: 17.9860471	total: 306ms	remaining: 187ms
62:	learn: 17.8554657	total: 310ms	remaining: 182ms
63:	learn: 17.7725698	total: 314ms	remaining: 177ms
64:	learn: 17.6461546	total: 319ms	remaining: 172ms
65:	learn: 17.4876253	total: 324ms	remaining: 167ms
66:	learn: 17.3902491	total: 328ms	remaining: 162ms
67:	learn: 17.3074315	total: 333ms	remaining: 157ms
68:	learn: 17.1916970	total: 338ms	remaining: 152ms
69:	learn: 17.0036214	total: 343ms	remaining: 147ms
70:	learn: 16.9063477	total: 347ms	remaining: 142ms
71:	learn: 16.7543840	total: 352ms	remaining: 137ms
72:	learn: 16.5926263	total: 360ms	remaining: 133ms
73:	learn: 16.4828353	total: 368ms	remaining: 129ms
74:	learn: 16.3669301	total: 377ms	remaining: 126ms
75:	learn: 16.2378249	total: 384ms	remaining: 121ms
76:	learn: 16.1357752	total: 390ms	remaining: 116ms
77:	learn: 16.0178742	total: 395ms	remaining: 111ms
78:	learn: 15.9116966	total: 400ms	remaining: 106ms
79:	learn: 15.7262830	total: 405ms	remaining: 101ms
80:	learn: 15.7159723	total: 406ms	remaining: 95.3ms
81:	learn: 15.5586375	total: 411ms	remaining: 90.3ms
82:	learn: 15.4694360	total: 417ms	remaining: 85.4ms
83:	learn: 15.3275068	total: 422ms	remaining: 80.4ms
84:	learn: 15.1629281	total: 427ms	remaining: 75.4ms
85:	learn: 15.0586873	total: 432ms	remaining: 70.4ms
86:	learn: 14.9760174	total: 437ms	remaining: 65.4ms
87:	learn: 14.8800618	total: 443ms	remaining: 60.4ms
88:	learn: 14.7766054	total: 448ms	remaining: 55.4ms
89:	learn: 14.6906406	total: 454ms	remaining: 50.4ms
90:	learn: 14.6034436	total: 459ms	remaining: 45.3ms
91:	learn: 14.5330407	total: 463ms	remaining: 40.3ms
92:	learn: 14.5039218	total: 467ms	remaining: 35.2ms
93:	learn: 14.4182642	total: 472ms	remaining: 30.1ms
94:	learn: 14.3711363	total: 476ms	remaining: 25.1ms
95:	learn: 14.2590638	total: 481ms	remaining: 20ms
96:	learn: 14.1640312	total: 485ms	remaining: 15ms
97:	learn: 14.0693305	total: 489ms	remaining: 9.97ms
98:	learn: 13.9520103	total: 493ms	remaining: 4.98ms
99:	learn: 13.8600248	total: 497ms	remaining: 0us
0:	learn: 46.3790355	total: 4.86ms	remaining: 481ms
1:	learn: 44.9322264	total: 9.81ms	remaining: 481ms
2:	learn: 43.6452304	total: 17.6ms	remaining: 571ms
3:	learn: 42.6058006	total: 25.4ms	remaining: 609ms
4:	learn: 41.4421922	total: 34.8ms	remaining: 660ms
5:	learn: 40.4565773	total: 40.1ms	remaining: 629ms
6:	learn: 39.3776917	total: 47.3ms	remaining: 628ms
7:	learn: 38.4003857	total: 52.5ms	remaining: 604ms
8:	learn: 37.4288067	total: 58ms	remaining: 587ms
9:	learn: 36.5623656	total: 63.3ms	remaining: 570ms
10:	learn: 35.7389643	total: 68.4ms	remaining: 554ms
11:	learn: 34.7960924	total: 73.9ms	remaining: 542ms
12:	learn: 34.0156187	total: 79.3ms	remaining: 531ms
13:	learn: 33.2702023	total: 84.5ms	remaining: 519ms
14:	learn: 32.7554868	total: 90.1ms	remaining: 511ms
15:	learn: 32.0395687	total: 95.3ms	remaining: 500ms
16:	learn: 31.4793803	total: 100ms	remaining: 489ms
17:	learn: 30.8770173	total: 106ms	remaining: 481ms
18:	learn: 30.3071701	total: 111ms	remaining: 474ms
19:	learn: 29.6256037	total: 116ms	remaining: 463ms
20:	learn: 29.1224077	total: 120ms	remaining: 452ms
21:	learn: 28.6312349	total: 124ms	remaining: 441ms
22:	learn: 28.2178229	total: 129ms	remaining: 431ms
23:	learn: 27.8751859	total: 133ms	remaining: 421ms
24:	learn: 27.5885656	total: 137ms	remaining: 411ms
25:	learn: 27.3828327	total: 141ms	remaining: 402ms
26:	learn: 27.1654356	total: 145ms	remaining: 393ms
27:	learn: 26.6705724	total: 150ms	remaining: 386ms
28:	learn: 26.2420935	total: 155ms	remaining: 379ms
29:	learn: 25.9314906	total: 160ms	remaining: 372ms
30:	learn: 25.4679909	total: 164ms	remaining: 366ms
31:	learn: 25.0442298	total: 169ms	remaining: 359ms
32:	learn: 24.8946212	total: 173ms	remaining: 352ms
33:	learn: 24.4858057	total: 178ms	remaining: 345ms
34:	learn: 24.1558048	total: 182ms	remaining: 338ms
35:	learn: 23.8344043	total: 186ms	remaining: 331ms
36:	learn: 23.5433295	total: 190ms	remaining: 324ms
37:	learn: 23.1976742	total: 195ms	remaining: 318ms
38:	learn: 22.9284547	total: 199ms	remaining: 311ms
39:	learn: 22.8228111	total: 203ms	remaining: 305ms
40:	learn: 22.5248890	total: 208ms	remaining: 299ms
41:	learn: 22.2473427	total: 212ms	remaining: 293ms
42:	learn: 21.9883370	total: 216ms	remaining: 287ms
43:	learn: 21.7825052	total: 220ms	remaining: 281ms
44:	learn: 21.5752155	total: 225ms	remaining: 275ms
45:	learn: 21.3418301	total: 230ms	remaining: 270ms
46:	learn: 21.1437594	total: 235ms	remaining: 265ms
47:	learn: 21.0215777	total: 239ms	remaining: 259ms
48:	learn: 20.7473432	total: 244ms	remaining: 254ms
49:	learn: 20.4823805	total: 248ms	remaining: 248ms
50:	learn: 20.3609754	total: 253ms	remaining: 243ms
51:	learn: 20.2403089	total: 258ms	remaining: 238ms
52:	learn: 20.1310909	total: 266ms	remaining: 236ms
53:	learn: 19.9330687	total: 274ms	remaining: 234ms
54:	learn: 19.7246810	total: 282ms	remaining: 231ms
55:	learn: 19.5252152	total: 290ms	remaining: 228ms
56:	learn: 19.3485723	total: 296ms	remaining: 223ms
57:	learn: 19.1619803	total: 302ms	remaining: 219ms
58:	learn: 19.0365136	total: 308ms	remaining: 214ms
59:	learn: 18.8921146	total: 313ms	remaining: 209ms
60:	learn: 18.7924351	total: 319ms	remaining: 204ms
61:	learn: 18.5856121	total: 325ms	remaining: 199ms
62:	learn: 18.3782831	total: 331ms	remaining: 194ms
63:	learn: 18.2642221	total: 336ms	remaining: 189ms
64:	learn: 18.1420774	total: 341ms	remaining: 184ms
65:	learn: 17.9430729	total: 346ms	remaining: 178ms
66:	learn: 17.7334985	total: 351ms	remaining: 173ms
67:	learn: 17.6005273	total: 357ms	remaining: 168ms
68:	learn: 17.5129366	total: 362ms	remaining: 163ms
69:	learn: 17.4066411	total: 367ms	remaining: 157ms
70:	learn: 17.2755069	total: 372ms	remaining: 152ms
71:	learn: 17.1544654	total: 377ms	remaining: 146ms
72:	learn: 17.0271914	total: 381ms	remaining: 141ms
73:	learn: 16.9474801	total: 386ms	remaining: 135ms
74:	learn: 16.8579544	total: 390ms	remaining: 130ms
75:	learn: 16.7574463	total: 394ms	remaining: 124ms
76:	learn: 16.6586906	total: 398ms	remaining: 119ms
77:	learn: 16.5365221	total: 403ms	remaining: 114ms
78:	learn: 16.4109716	total: 408ms	remaining: 108ms
79:	learn: 16.2533395	total: 412ms	remaining: 103ms
80:	learn: 16.1257882	total: 417ms	remaining: 97.7ms
81:	learn: 16.0234034	total: 421ms	remaining: 92.4ms
82:	learn: 15.8574011	total: 426ms	remaining: 87.3ms
83:	learn: 15.7737788	total: 431ms	remaining: 82.1ms
84:	learn: 15.6806864	total: 436ms	remaining: 76.9ms
85:	learn: 15.5807484	total: 440ms	remaining: 71.7ms
86:	learn: 15.4928987	total: 445ms	remaining: 66.5ms
87:	learn: 15.4321572	total: 450ms	remaining: 61.4ms
88:	learn: 15.3722788	total: 455ms	remaining: 56.2ms
89:	learn: 15.2571272	total: 464ms	remaining: 51.5ms
90:	learn: 15.1198109	total: 471ms	remaining: 46.6ms
91:	learn: 15.0009209	total: 480ms	remaining: 41.7ms
92:	learn: 14.8967484	total: 487ms	remaining: 36.7ms
93:	learn: 14.8348358	total: 492ms	remaining: 31.4ms
94:	learn: 14.7607641	total: 498ms	remaining: 26.2ms
95:	learn: 14.5887689	total: 504ms	remaining: 21ms
96:	learn: 14.4962918	total: 509ms	remaining: 15.7ms
97:	learn: 14.4172436	total: 515ms	remaining: 10.5ms
98:	learn: 14.3676018	total: 521ms	remaining: 5.26ms
99:	learn: 14.2868270	total: 526ms	remaining: 0us
0:	learn: 27.3716363	total: 4.7ms	remaining: 465ms
1:	learn: 26.7586038	total: 9.17ms	remaining: 449ms
2:	learn: 26.1513803	total: 13.3ms	remaining: 430ms
3:	learn: 25.6569249	total: 17.6ms	remaining: 421ms
4:	learn: 25.0448773	total: 21.9ms	remaining: 417ms
5:	learn: 24.6011243	total: 26.3ms	remaining: 412ms
6:	learn: 23.9665913	total: 30.6ms	remaining: 407ms
7:	learn: 23.5201950	total: 34.9ms	remaining: 402ms
8:	learn: 22.9901116	total: 39.5ms	remaining: 399ms
9:	learn: 22.5256710	total: 43.9ms	remaining: 395ms
10:	learn: 22.1598038	total: 48.2ms	remaining: 390ms
11:	learn: 21.7726663	total: 52.9ms	remaining: 388ms
12:	learn: 21.5014839	total: 57.8ms	remaining: 387ms
13:	learn: 21.1063605	total: 62.7ms	remaining: 385ms
14:	learn: 20.7648344	total: 67.3ms	remaining: 381ms
15:	learn: 20.4005501	total: 72.2ms	remaining: 379ms
16:	learn: 20.0308689	total: 76.8ms	remaining: 375ms
17:	learn: 19.7619894	total: 81.2ms	remaining: 370ms
18:	learn: 19.4006982	total: 85.8ms	remaining: 366ms
19:	learn: 19.1201126	total: 90.6ms	remaining: 362ms
20:	learn: 18.7774355	total: 99.1ms	remaining: 373ms
21:	learn: 18.5027646	total: 107ms	remaining: 379ms
22:	learn: 18.1958499	total: 116ms	remaining: 387ms
23:	learn: 18.0191187	total: 123ms	remaining: 390ms
24:	learn: 17.8387270	total: 129ms	remaining: 387ms
25:	learn: 17.5280679	total: 134ms	remaining: 381ms
26:	learn: 17.3062744	total: 139ms	remaining: 376ms
27:	learn: 17.0131776	total: 144ms	remaining: 371ms
28:	learn: 16.7409451	total: 150ms	remaining: 367ms
29:	learn: 16.5094615	total: 155ms	remaining: 362ms
30:	learn: 16.2691858	total: 169ms	remaining: 375ms
31:	learn: 16.0502592	total: 174ms	remaining: 369ms
32:	learn: 15.8734968	total: 179ms	remaining: 363ms
33:	learn: 15.6646527	total: 184ms	remaining: 358ms
34:	learn: 15.5331988	total: 190ms	remaining: 352ms
35:	learn: 15.2505462	total: 195ms	remaining: 347ms
36:	learn: 15.0313064	total: 200ms	remaining: 340ms
37:	learn: 14.8734366	total: 204ms	remaining: 333ms
38:	learn: 14.6699229	total: 208ms	remaining: 325ms
39:	learn: 14.5898168	total: 212ms	remaining: 318ms
40:	learn: 14.4208947	total: 217ms	remaining: 312ms
41:	learn: 14.2850223	total: 221ms	remaining: 305ms
42:	learn: 14.1442724	total: 225ms	remaining: 298ms
43:	learn: 13.9770221	total: 229ms	remaining: 292ms
44:	learn: 13.8778270	total: 233ms	remaining: 285ms
45:	learn: 13.6902000	total: 237ms	remaining: 279ms
46:	learn: 13.5674586	total: 241ms	remaining: 272ms
47:	learn: 13.3835423	total: 246ms	remaining: 266ms
48:	learn: 13.2779430	total: 250ms	remaining: 260ms
49:	learn: 13.1218837	total: 254ms	remaining: 254ms
50:	learn: 13.0063048	total: 259ms	remaining: 249ms
51:	learn: 12.8507410	total: 264ms	remaining: 243ms
52:	learn: 12.7455025	total: 269ms	remaining: 238ms
53:	learn: 12.6261811	total: 273ms	remaining: 233ms
54:	learn: 12.5173579	total: 278ms	remaining: 228ms
55:	learn: 12.4529502	total: 283ms	remaining: 223ms
56:	learn: 12.3944087	total: 288ms	remaining: 217ms
57:	learn: 12.2888055	total: 294ms	remaining: 213ms
58:	learn: 12.1806093	total: 302ms	remaining: 210ms
59:	learn: 12.0712110	total: 310ms	remaining: 207ms
60:	learn: 11.9961171	total: 318ms	remaining: 203ms
61:	learn: 11.8823972	total: 325ms	remaining: 199ms
62:	learn: 11.7943665	total: 331ms	remaining: 194ms
63:	learn: 11.7212181	total: 336ms	remaining: 189ms
64:	learn: 11.6362437	total: 342ms	remaining: 184ms
65:	learn: 11.5522591	total: 347ms	remaining: 179ms
66:	learn: 11.4500175	total: 352ms	remaining: 173ms
67:	learn: 11.3258387	total: 357ms	remaining: 168ms
68:	learn: 11.2482685	total: 362ms	remaining: 163ms
69:	learn: 11.1755209	total: 368ms	remaining: 158ms
70:	learn: 11.0887540	total: 373ms	remaining: 152ms
71:	learn: 11.0054578	total: 378ms	remaining: 147ms
72:	learn: 10.9318991	total: 383ms	remaining: 142ms
73:	learn: 10.8522001	total: 389ms	remaining: 137ms
74:	learn: 10.7674012	total: 394ms	remaining: 131ms
75:	learn: 10.7187991	total: 398ms	remaining: 126ms
76:	learn: 10.6548375	total: 403ms	remaining: 120ms
77:	learn: 10.6095260	total: 407ms	remaining: 115ms
78:	learn: 10.5658533	total: 411ms	remaining: 109ms
79:	learn: 10.5097785	total: 416ms	remaining: 104ms
80:	learn: 10.4527426	total: 420ms	remaining: 98.5ms
81:	learn: 10.3885391	total: 424ms	remaining: 93.1ms
82:	learn: 10.3299710	total: 429ms	remaining: 87.8ms
83:	learn: 10.2436190	total: 433ms	remaining: 82.5ms
84:	learn: 10.1749078	total: 438ms	remaining: 77.2ms
85:	learn: 10.0946062	total: 443ms	remaining: 72.1ms
86:	learn: 10.0390578	total: 447ms	remaining: 66.9ms
87:	learn: 9.9852955	total: 452ms	remaining: 61.6ms
88:	learn: 9.9302992	total: 456ms	remaining: 56.4ms
89:	learn: 9.8630695	total: 461ms	remaining: 51.3ms
90:	learn: 9.7805856	total: 466ms	remaining: 46.1ms
91:	learn: 9.7127178	total: 471ms	remaining: 41ms
92:	learn: 9.6557593	total: 476ms	remaining: 35.8ms
93:	learn: 9.5921286	total: 481ms	remaining: 30.7ms
94:	learn: 9.5187489	total: 485ms	remaining: 25.5ms
95:	learn: 9.4500955	total: 491ms	remaining: 20.4ms
96:	learn: 9.3834246	total: 498ms	remaining: 15.4ms
97:	learn: 9.3221422	total: 506ms	remaining: 10.3ms
98:	learn: 9.2581494	total: 515ms	remaining: 5.2ms
99:	learn: 9.2021708	total: 523ms	remaining: 0us
0:	learn: 42.4859206	total: 5.57ms	remaining: 551ms
1:	learn: 41.2348392	total: 11ms	remaining: 539ms
2:	learn: 39.9044703	total: 16.1ms	remaining: 522ms
3:	learn: 38.6081616	total: 20.5ms	remaining: 493ms
4:	learn: 37.4610571	total: 24.9ms	remaining: 472ms
5:	learn: 36.3390199	total: 29.2ms	remaining: 458ms
6:	learn: 35.1817084	total: 33.4ms	remaining: 444ms
7:	learn: 34.1132574	total: 37.5ms	remaining: 432ms
8:	learn: 33.4673440	total: 41.6ms	remaining: 421ms
9:	learn: 32.4688388	total: 46.1ms	remaining: 415ms
10:	learn: 31.5801915	total: 50.5ms	remaining: 409ms
11:	learn: 30.7270901	total: 54.9ms	remaining: 403ms
12:	learn: 30.1030598	total: 59.2ms	remaining: 396ms
13:	learn: 29.2931850	total: 60.4ms	remaining: 371ms
14:	learn: 28.5479304	total: 65ms	remaining: 368ms
15:	learn: 27.9377772	total: 69.1ms	remaining: 363ms
16:	learn: 27.2217220	total: 74.1ms	remaining: 362ms
17:	learn: 26.5521028	total: 78.6ms	remaining: 358ms
18:	learn: 25.9926990	total: 83.5ms	remaining: 356ms
19:	learn: 25.3989069	total: 88ms	remaining: 352ms
20:	learn: 24.8440572	total: 92.5ms	remaining: 348ms
21:	learn: 24.2947764	total: 97.3ms	remaining: 345ms
22:	learn: 23.7487326	total: 102ms	remaining: 341ms
23:	learn: 23.1892639	total: 107ms	remaining: 338ms
24:	learn: 22.7249056	total: 112ms	remaining: 335ms
25:	learn: 22.2987315	total: 116ms	remaining: 331ms
26:	learn: 21.9065428	total: 121ms	remaining: 327ms
27:	learn: 21.4981889	total: 130ms	remaining: 334ms
28:	learn: 21.0962886	total: 141ms	remaining: 346ms
29:	learn: 20.8295403	total: 150ms	remaining: 349ms
30:	learn: 20.6084828	total: 158ms	remaining: 352ms
31:	learn: 20.2966492	total: 164ms	remaining: 347ms
32:	learn: 19.9841639	total: 170ms	remaining: 345ms
33:	learn: 19.7208663	total: 175ms	remaining: 339ms
34:	learn: 19.4135423	total: 180ms	remaining: 334ms
35:	learn: 19.2034111	total: 186ms	remaining: 331ms
36:	learn: 18.9402581	total: 191ms	remaining: 326ms
37:	learn: 18.7382588	total: 197ms	remaining: 321ms
38:	learn: 18.4705302	total: 202ms	remaining: 316ms
39:	learn: 18.2354107	total: 207ms	remaining: 311ms
40:	learn: 17.9669553	total: 213ms	remaining: 306ms
41:	learn: 17.7329625	total: 218ms	remaining: 300ms
42:	learn: 17.4715711	total: 223ms	remaining: 296ms
43:	learn: 17.2285510	total: 229ms	remaining: 292ms
44:	learn: 17.0261018	total: 234ms	remaining: 287ms
45:	learn: 16.8373998	total: 245ms	remaining: 288ms
46:	learn: 16.6975431	total: 249ms	remaining: 281ms
47:	learn: 16.5029954	total: 254ms	remaining: 275ms
48:	learn: 16.3332890	total: 258ms	remaining: 269ms
49:	learn: 16.1354926	total: 262ms	remaining: 262ms
50:	learn: 16.0073114	total: 267ms	remaining: 256ms
51:	learn: 15.9043247	total: 271ms	remaining: 250ms
52:	learn: 15.7303782	total: 276ms	remaining: 245ms
53:	learn: 15.5560543	total: 281ms	remaining: 239ms
54:	learn: 15.3435331	total: 285ms	remaining: 234ms
55:	learn: 15.2045774	total: 290ms	remaining: 228ms
56:	learn: 15.0609857	total: 295ms	remaining: 223ms
57:	learn: 14.9370901	total: 300ms	remaining: 217ms
58:	learn: 14.8410465	total: 305ms	remaining: 212ms
59:	learn: 14.7081240	total: 310ms	remaining: 207ms
60:	learn: 14.5636282	total: 315ms	remaining: 201ms
61:	learn: 14.4606865	total: 319ms	remaining: 196ms
62:	learn: 14.3731446	total: 324ms	remaining: 191ms
63:	learn: 14.2045145	total: 333ms	remaining: 187ms
64:	learn: 14.0461252	total: 343ms	remaining: 185ms
65:	learn: 13.9195454	total: 351ms	remaining: 181ms
66:	learn: 13.8190753	total: 358ms	remaining: 177ms
67:	learn: 13.7252500	total: 364ms	remaining: 171ms
68:	learn: 13.6566471	total: 369ms	remaining: 166ms
69:	learn: 13.5121693	total: 374ms	remaining: 160ms
70:	learn: 13.4442080	total: 379ms	remaining: 155ms
71:	learn: 13.3279962	total: 385ms	remaining: 150ms
72:	learn: 13.2456458	total: 390ms	remaining: 144ms
73:	learn: 13.1417720	total: 396ms	remaining: 139ms
74:	learn: 13.0795807	total: 401ms	remaining: 134ms
75:	learn: 12.9858298	total: 406ms	remaining: 128ms
76:	learn: 12.9193581	total: 412ms	remaining: 123ms
77:	learn: 12.8008737	total: 417ms	remaining: 118ms
78:	learn: 12.7215618	total: 422ms	remaining: 112ms
79:	learn: 12.6252386	total: 428ms	remaining: 107ms
80:	learn: 12.5456193	total: 432ms	remaining: 101ms
81:	learn: 12.4550597	total: 437ms	remaining: 95.9ms
82:	learn: 12.3684000	total: 441ms	remaining: 90.3ms
83:	learn: 12.2904435	total: 446ms	remaining: 84.9ms
84:	learn: 12.2128737	total: 450ms	remaining: 79.4ms
85:	learn: 12.1069589	total: 454ms	remaining: 73.9ms
86:	learn: 11.9975688	total: 458ms	remaining: 68.5ms
87:	learn: 11.9113686	total: 463ms	remaining: 63.1ms
88:	learn: 11.8489375	total: 467ms	remaining: 57.7ms
89:	learn: 11.7446095	total: 472ms	remaining: 52.4ms
90:	learn: 11.6793247	total: 476ms	remaining: 47.1ms
91:	learn: 11.6120227	total: 480ms	remaining: 41.8ms
92:	learn: 11.5559096	total: 485ms	remaining: 36.5ms
93:	learn: 11.5063069	total: 489ms	remaining: 31.2ms
94:	learn: 11.4776305	total: 494ms	remaining: 26ms
95:	learn: 11.4163720	total: 499ms	remaining: 20.8ms
96:	learn: 11.3547170	total: 504ms	remaining: 15.6ms
97:	learn: 11.2947704	total: 508ms	remaining: 10.4ms
98:	learn: 11.2120192	total: 513ms	remaining: 5.18ms
99:	learn: 11.1607467	total: 518ms	remaining: 0us
0:	learn: 46.2258117	total: 2.23ms	remaining: 221ms
1:	learn: 45.1972950	total: 7.69ms	remaining: 377ms
2:	learn: 43.7957357	total: 13ms	remaining: 419ms
3:	learn: 42.5777391	total: 18.3ms	remaining: 440ms
4:	learn: 41.5327833	total: 23.9ms	remaining: 454ms
5:	learn: 40.4435276	total: 29.5ms	remaining: 462ms
6:	learn: 39.4670075	total: 35ms	remaining: 464ms
7:	learn: 38.7108484	total: 39.9ms	remaining: 458ms
8:	learn: 38.1402654	total: 46ms	remaining: 465ms
9:	learn: 37.2648485	total: 51.9ms	remaining: 467ms
10:	learn: 36.4694198	total: 56.5ms	remaining: 457ms
11:	learn: 35.5168067	total: 61.1ms	remaining: 448ms
12:	learn: 34.7782207	total: 65.6ms	remaining: 439ms
13:	learn: 33.9839024	total: 69.7ms	remaining: 428ms
14:	learn: 33.2222232	total: 74.2ms	remaining: 420ms
15:	learn: 32.4007311	total: 78.5ms	remaining: 412ms
16:	learn: 31.6552844	total: 82.6ms	remaining: 403ms
17:	learn: 30.9799186	total: 87.2ms	remaining: 397ms
18:	learn: 30.2888540	total: 91.4ms	remaining: 390ms
19:	learn: 29.7032334	total: 95.9ms	remaining: 383ms
20:	learn: 29.2886252	total: 100ms	remaining: 377ms
21:	learn: 28.7682793	total: 105ms	remaining: 372ms
22:	learn: 28.4016143	total: 109ms	remaining: 366ms
23:	learn: 27.6630864	total: 113ms	remaining: 359ms
24:	learn: 27.2033858	total: 118ms	remaining: 353ms
25:	learn: 26.5935061	total: 123ms	remaining: 349ms
26:	learn: 26.1389740	total: 127ms	remaining: 344ms
27:	learn: 25.7937555	total: 132ms	remaining: 339ms
28:	learn: 25.4247732	total: 136ms	remaining: 334ms
29:	learn: 24.9684460	total: 141ms	remaining: 330ms
30:	learn: 24.5885923	total: 146ms	remaining: 326ms
31:	learn: 24.2703978	total: 151ms	remaining: 321ms
32:	learn: 23.8387638	total: 160ms	remaining: 325ms
33:	learn: 23.6317607	total: 168ms	remaining: 326ms
34:	learn: 23.3263085	total: 178ms	remaining: 330ms
35:	learn: 22.9960495	total: 186ms	remaining: 330ms
36:	learn: 22.6616330	total: 191ms	remaining: 326ms
37:	learn: 22.1801596	total: 198ms	remaining: 322ms
38:	learn: 21.8114556	total: 203ms	remaining: 318ms
39:	learn: 21.5714330	total: 209ms	remaining: 313ms
40:	learn: 21.1089354	total: 214ms	remaining: 309ms
41:	learn: 20.8040772	total: 220ms	remaining: 304ms
42:	learn: 20.4965159	total: 226ms	remaining: 299ms
43:	learn: 20.2898724	total: 231ms	remaining: 294ms
44:	learn: 20.0169420	total: 236ms	remaining: 289ms
45:	learn: 19.8348803	total: 242ms	remaining: 284ms
46:	learn: 19.5554754	total: 247ms	remaining: 278ms
47:	learn: 19.2782294	total: 252ms	remaining: 273ms
48:	learn: 19.0395772	total: 258ms	remaining: 269ms
49:	learn: 18.7983211	total: 263ms	remaining: 263ms
50:	learn: 18.6396276	total: 268ms	remaining: 257ms
51:	learn: 18.4535258	total: 272ms	remaining: 251ms
52:	learn: 18.2777199	total: 277ms	remaining: 245ms
53:	learn: 18.0572244	total: 281ms	remaining: 239ms
54:	learn: 17.8213238	total: 286ms	remaining: 234ms
55:	learn: 17.5926067	total: 290ms	remaining: 228ms
56:	learn: 17.3990115	total: 295ms	remaining: 223ms
57:	learn: 17.2444936	total: 300ms	remaining: 217ms
58:	learn: 17.0900496	total: 305ms	remaining: 212ms
59:	learn: 16.8497932	total: 309ms	remaining: 206ms
60:	learn: 16.7335122	total: 313ms	remaining: 200ms
61:	learn: 16.5285847	total: 317ms	remaining: 194ms
62:	learn: 16.4326012	total: 322ms	remaining: 189ms
63:	learn: 16.2977130	total: 327ms	remaining: 184ms
64:	learn: 16.1876309	total: 331ms	remaining: 178ms
65:	learn: 16.0948338	total: 336ms	remaining: 173ms
66:	learn: 15.9055478	total: 341ms	remaining: 168ms
67:	learn: 15.8244487	total: 345ms	remaining: 163ms
68:	learn: 15.6064385	total: 350ms	remaining: 157ms
69:	learn: 15.4574801	total: 356ms	remaining: 153ms
70:	learn: 15.4064312	total: 364ms	remaining: 148ms
71:	learn: 15.2463289	total: 372ms	remaining: 144ms
72:	learn: 15.1083967	total: 379ms	remaining: 140ms
73:	learn: 14.8909334	total: 387ms	remaining: 136ms
74:	learn: 14.7646415	total: 392ms	remaining: 131ms
75:	learn: 14.6847350	total: 397ms	remaining: 125ms
76:	learn: 14.5941501	total: 403ms	remaining: 120ms
77:	learn: 14.5049987	total: 408ms	remaining: 115ms
78:	learn: 14.4043748	total: 414ms	remaining: 110ms
79:	learn: 14.2633292	total: 419ms	remaining: 105ms
80:	learn: 14.1257360	total: 424ms	remaining: 99.5ms
81:	learn: 14.0626940	total: 429ms	remaining: 94.3ms
82:	learn: 13.9429889	total: 435ms	remaining: 89.1ms
83:	learn: 13.8834534	total: 440ms	remaining: 83.8ms
84:	learn: 13.7361899	total: 445ms	remaining: 78.5ms
85:	learn: 13.6473170	total: 450ms	remaining: 73.3ms
86:	learn: 13.5168963	total: 456ms	remaining: 68.1ms
87:	learn: 13.3778373	total: 461ms	remaining: 62.9ms
88:	learn: 13.2827073	total: 465ms	remaining: 57.5ms
89:	learn: 13.1962748	total: 470ms	remaining: 52.2ms
90:	learn: 13.1317634	total: 474ms	remaining: 46.9ms
91:	learn: 12.9996032	total: 478ms	remaining: 41.6ms
92:	learn: 12.8843393	total: 483ms	remaining: 36.3ms
93:	learn: 12.8187378	total: 487ms	remaining: 31.1ms
94:	learn: 12.7176304	total: 491ms	remaining: 25.8ms
95:	learn: 12.6420924	total: 495ms	remaining: 20.6ms
96:	learn: 12.5500097	total: 499ms	remaining: 15.4ms
97:	learn: 12.4837866	total: 503ms	remaining: 10.3ms
98:	learn: 12.3597911	total: 508ms	remaining: 5.13ms
99:	learn: 12.2792795	total: 512ms	remaining: 0us
0:	learn: 45.8627255	total: 2.58ms	remaining: 256ms
1:	learn: 44.8162174	total: 8.07ms	remaining: 395ms
2:	learn: 43.9865430	total: 13.2ms	remaining: 428ms
3:	learn: 42.9919872	total: 18.5ms	remaining: 445ms
4:	learn: 41.8902122	total: 24.4ms	remaining: 463ms
5:	learn: 41.0496461	total: 30.1ms	remaining: 471ms
6:	learn: 40.0946649	total: 35.7ms	remaining: 475ms
7:	learn: 39.3893186	total: 41.3ms	remaining: 475ms
8:	learn: 38.5282166	total: 61.7ms	remaining: 624ms
9:	learn: 37.5895258	total: 66.5ms	remaining: 598ms
10:	learn: 36.7137467	total: 71ms	remaining: 574ms
11:	learn: 35.7818300	total: 75.1ms	remaining: 551ms
12:	learn: 34.8459255	total: 79.9ms	remaining: 535ms
13:	learn: 34.2225882	total: 84.6ms	remaining: 520ms
14:	learn: 33.4045891	total: 88.9ms	remaining: 504ms
15:	learn: 32.7931441	total: 93.3ms	remaining: 490ms
16:	learn: 32.2009164	total: 97.7ms	remaining: 477ms
17:	learn: 31.4431417	total: 102ms	remaining: 465ms
18:	learn: 30.6940787	total: 107ms	remaining: 455ms
19:	learn: 30.2032085	total: 111ms	remaining: 445ms
20:	learn: 29.6620038	total: 116ms	remaining: 436ms
21:	learn: 29.1329122	total: 121ms	remaining: 427ms
22:	learn: 28.9285069	total: 125ms	remaining: 419ms
23:	learn: 28.2773846	total: 129ms	remaining: 410ms
24:	learn: 27.6312201	total: 134ms	remaining: 403ms
25:	learn: 27.1224449	total: 139ms	remaining: 396ms
26:	learn: 26.7129115	total: 144ms	remaining: 390ms
27:	learn: 26.2030118	total: 149ms	remaining: 384ms
28:	learn: 25.8449000	total: 154ms	remaining: 377ms
29:	learn: 25.3832705	total: 159ms	remaining: 370ms
30:	learn: 24.9797913	total: 163ms	remaining: 363ms
31:	learn: 24.7190041	total: 168ms	remaining: 357ms
32:	learn: 24.4139846	total: 175ms	remaining: 356ms
33:	learn: 24.0085081	total: 183ms	remaining: 354ms
34:	learn: 23.7092621	total: 191ms	remaining: 355ms
35:	learn: 23.4620026	total: 198ms	remaining: 351ms
36:	learn: 23.0924724	total: 205ms	remaining: 350ms
37:	learn: 22.6471910	total: 211ms	remaining: 344ms
38:	learn: 22.3422405	total: 216ms	remaining: 338ms
39:	learn: 22.0391348	total: 221ms	remaining: 332ms
40:	learn: 21.7653773	total: 226ms	remaining: 326ms
41:	learn: 21.4652025	total: 232ms	remaining: 320ms
42:	learn: 21.1937288	total: 237ms	remaining: 314ms
43:	learn: 20.9481301	total: 242ms	remaining: 308ms
44:	learn: 20.7022718	total: 247ms	remaining: 302ms
45:	learn: 20.6128483	total: 253ms	remaining: 297ms
46:	learn: 20.5444203	total: 258ms	remaining: 291ms
47:	learn: 20.2652868	total: 263ms	remaining: 285ms
48:	learn: 20.0465015	total: 268ms	remaining: 279ms
49:	learn: 19.8485858	total: 274ms	remaining: 274ms
50:	learn: 19.6218360	total: 279ms	remaining: 268ms
51:	learn: 19.4340385	total: 283ms	remaining: 262ms
52:	learn: 19.2755253	total: 288ms	remaining: 255ms
53:	learn: 19.1513895	total: 292ms	remaining: 249ms
54:	learn: 18.9926498	total: 296ms	remaining: 243ms
55:	learn: 18.9138819	total: 301ms	remaining: 236ms
56:	learn: 18.7601521	total: 305ms	remaining: 230ms
57:	learn: 18.5383747	total: 309ms	remaining: 224ms
58:	learn: 18.3203725	total: 313ms	remaining: 218ms
59:	learn: 18.1486463	total: 317ms	remaining: 212ms
60:	learn: 18.0745744	total: 322ms	remaining: 206ms
61:	learn: 17.9860471	total: 326ms	remaining: 200ms
62:	learn: 17.8554657	total: 331ms	remaining: 194ms
63:	learn: 17.7725698	total: 335ms	remaining: 189ms
64:	learn: 17.6461546	total: 340ms	remaining: 183ms
65:	learn: 17.4876253	total: 345ms	remaining: 178ms
66:	learn: 17.3902491	total: 350ms	remaining: 172ms
67:	learn: 17.3074315	total: 354ms	remaining: 167ms
68:	learn: 17.1916970	total: 359ms	remaining: 161ms
69:	learn: 17.0036214	total: 364ms	remaining: 156ms
70:	learn: 16.9063477	total: 369ms	remaining: 151ms
71:	learn: 16.7543840	total: 377ms	remaining: 147ms
72:	learn: 16.5926263	total: 384ms	remaining: 142ms
73:	learn: 16.4828353	total: 393ms	remaining: 138ms
74:	learn: 16.3669301	total: 401ms	remaining: 134ms
75:	learn: 16.2378249	total: 406ms	remaining: 128ms
76:	learn: 16.1357752	total: 411ms	remaining: 123ms
77:	learn: 16.0178742	total: 416ms	remaining: 117ms
78:	learn: 15.9116966	total: 422ms	remaining: 112ms
79:	learn: 15.7262830	total: 427ms	remaining: 107ms
80:	learn: 15.7159723	total: 428ms	remaining: 100ms
81:	learn: 15.5586375	total: 433ms	remaining: 95.1ms
82:	learn: 15.4694360	total: 438ms	remaining: 89.7ms
83:	learn: 15.3275068	total: 444ms	remaining: 84.5ms
84:	learn: 15.1629281	total: 449ms	remaining: 79.2ms
85:	learn: 15.0586873	total: 454ms	remaining: 73.9ms
86:	learn: 14.9760174	total: 460ms	remaining: 68.7ms
87:	learn: 14.8800618	total: 466ms	remaining: 63.5ms
88:	learn: 14.7766054	total: 472ms	remaining: 58.3ms
89:	learn: 14.6906406	total: 477ms	remaining: 53ms
90:	learn: 14.6034436	total: 481ms	remaining: 47.6ms
91:	learn: 14.5330407	total: 486ms	remaining: 42.3ms
92:	learn: 14.5039218	total: 491ms	remaining: 36.9ms
93:	learn: 14.4182642	total: 495ms	remaining: 31.6ms
94:	learn: 14.3711363	total: 500ms	remaining: 26.3ms
95:	learn: 14.2590638	total: 504ms	remaining: 21ms
96:	learn: 14.1640312	total: 507ms	remaining: 15.7ms
97:	learn: 14.0693305	total: 512ms	remaining: 10.4ms
98:	learn: 13.9520103	total: 516ms	remaining: 5.21ms
99:	learn: 13.8600248	total: 520ms	remaining: 0us
0:	learn: 46.3790355	total: 8.09ms	remaining: 801ms
1:	learn: 44.9322264	total: 18.3ms	remaining: 898ms
2:	learn: 43.6452304	total: 24.4ms	remaining: 789ms
3:	learn: 42.6058006	total: 31.9ms	remaining: 766ms
4:	learn: 41.4421922	total: 37.2ms	remaining: 707ms
5:	learn: 40.4565773	total: 42.5ms	remaining: 665ms
6:	learn: 39.3776917	total: 48ms	remaining: 637ms
7:	learn: 38.4003857	total: 53.5ms	remaining: 616ms
8:	learn: 37.4288067	total: 58.7ms	remaining: 593ms
9:	learn: 36.5623656	total: 63.9ms	remaining: 575ms
10:	learn: 35.7389643	total: 69ms	remaining: 558ms
11:	learn: 34.7960924	total: 74.5ms	remaining: 546ms
12:	learn: 34.0156187	total: 79.7ms	remaining: 533ms
13:	learn: 33.2702023	total: 84.2ms	remaining: 517ms
14:	learn: 32.7554868	total: 89.9ms	remaining: 509ms
15:	learn: 32.0395687	total: 95.5ms	remaining: 501ms
16:	learn: 31.4793803	total: 99.9ms	remaining: 488ms
17:	learn: 30.8770173	total: 104ms	remaining: 475ms
18:	learn: 30.3071701	total: 109ms	remaining: 464ms
19:	learn: 29.6256037	total: 113ms	remaining: 453ms
20:	learn: 29.1224077	total: 117ms	remaining: 442ms
21:	learn: 28.6312349	total: 122ms	remaining: 431ms
22:	learn: 28.2178229	total: 126ms	remaining: 422ms
23:	learn: 27.8751859	total: 130ms	remaining: 411ms
24:	learn: 27.5885656	total: 134ms	remaining: 402ms
25:	learn: 27.3828327	total: 138ms	remaining: 394ms
26:	learn: 27.1654356	total: 143ms	remaining: 386ms
27:	learn: 26.6705724	total: 147ms	remaining: 378ms
28:	learn: 26.2420935	total: 152ms	remaining: 371ms
29:	learn: 25.9314906	total: 156ms	remaining: 364ms
30:	learn: 25.4679909	total: 160ms	remaining: 356ms
31:	learn: 25.0442298	total: 164ms	remaining: 349ms
32:	learn: 24.8946212	total: 169ms	remaining: 343ms
33:	learn: 24.4858057	total: 174ms	remaining: 337ms
34:	learn: 24.1558048	total: 178ms	remaining: 331ms
35:	learn: 23.8344043	total: 183ms	remaining: 325ms
36:	learn: 23.5433295	total: 187ms	remaining: 319ms
37:	learn: 23.1976742	total: 192ms	remaining: 313ms
38:	learn: 22.9284547	total: 197ms	remaining: 308ms
39:	learn: 22.8228111	total: 203ms	remaining: 305ms
40:	learn: 22.5248890	total: 211ms	remaining: 304ms
41:	learn: 22.2473427	total: 221ms	remaining: 305ms
42:	learn: 21.9883370	total: 226ms	remaining: 300ms
43:	learn: 21.7825052	total: 233ms	remaining: 297ms
44:	learn: 21.5752155	total: 239ms	remaining: 292ms
45:	learn: 21.3418301	total: 244ms	remaining: 287ms
46:	learn: 21.1437594	total: 249ms	remaining: 281ms
47:	learn: 21.0215777	total: 254ms	remaining: 275ms
48:	learn: 20.7473432	total: 260ms	remaining: 270ms
49:	learn: 20.4823805	total: 265ms	remaining: 265ms
50:	learn: 20.3609754	total: 270ms	remaining: 259ms
51:	learn: 20.2403089	total: 275ms	remaining: 254ms
52:	learn: 20.1310909	total: 280ms	remaining: 249ms
53:	learn: 19.9330687	total: 285ms	remaining: 243ms
54:	learn: 19.7246810	total: 290ms	remaining: 237ms
55:	learn: 19.5252152	total: 295ms	remaining: 232ms
56:	learn: 19.3485723	total: 301ms	remaining: 227ms
57:	learn: 19.1619803	total: 306ms	remaining: 222ms
58:	learn: 19.0365136	total: 310ms	remaining: 216ms
59:	learn: 18.8921146	total: 315ms	remaining: 210ms
60:	learn: 18.7924351	total: 319ms	remaining: 204ms
61:	learn: 18.5856121	total: 323ms	remaining: 198ms
62:	learn: 18.3782831	total: 327ms	remaining: 192ms
63:	learn: 18.2642221	total: 332ms	remaining: 187ms
64:	learn: 18.1420774	total: 336ms	remaining: 181ms
65:	learn: 17.9430729	total: 341ms	remaining: 175ms
66:	learn: 17.7334985	total: 345ms	remaining: 170ms
67:	learn: 17.6005273	total: 349ms	remaining: 164ms
68:	learn: 17.5129366	total: 354ms	remaining: 159ms
69:	learn: 17.4066411	total: 359ms	remaining: 154ms
70:	learn: 17.2755069	total: 363ms	remaining: 148ms
71:	learn: 17.1544654	total: 369ms	remaining: 143ms
72:	learn: 17.0271914	total: 374ms	remaining: 138ms
73:	learn: 16.9474801	total: 379ms	remaining: 133ms
74:	learn: 16.8579544	total: 384ms	remaining: 128ms
75:	learn: 16.7574463	total: 389ms	remaining: 123ms
76:	learn: 16.6586906	total: 394ms	remaining: 118ms
77:	learn: 16.5365221	total: 399ms	remaining: 113ms
78:	learn: 16.4109716	total: 408ms	remaining: 108ms
79:	learn: 16.2533395	total: 417ms	remaining: 104ms
80:	learn: 16.1257882	total: 425ms	remaining: 99.7ms
81:	learn: 16.0234034	total: 434ms	remaining: 95.3ms
82:	learn: 15.8574011	total: 439ms	remaining: 90ms
83:	learn: 15.7737788	total: 445ms	remaining: 84.7ms
84:	learn: 15.6806864	total: 450ms	remaining: 79.4ms
85:	learn: 15.5807484	total: 456ms	remaining: 74.2ms
86:	learn: 15.4928987	total: 461ms	remaining: 68.9ms
87:	learn: 15.4321572	total: 466ms	remaining: 63.6ms
88:	learn: 15.3722788	total: 472ms	remaining: 58.3ms
89:	learn: 15.2571272	total: 477ms	remaining: 53ms
90:	learn: 15.1198109	total: 482ms	remaining: 47.7ms
91:	learn: 15.0009209	total: 488ms	remaining: 42.4ms
92:	learn: 14.8967484	total: 493ms	remaining: 37.1ms
93:	learn: 14.8348358	total: 497ms	remaining: 31.7ms
94:	learn: 14.7607641	total: 503ms	remaining: 26.4ms
95:	learn: 14.5887689	total: 508ms	remaining: 21.2ms
96:	learn: 14.4962918	total: 513ms	remaining: 15.9ms
97:	learn: 14.4172436	total: 518ms	remaining: 10.6ms
98:	learn: 14.3676018	total: 522ms	remaining: 5.28ms
99:	learn: 14.2868270	total: 527ms	remaining: 0us
0:	learn: 27.5585353	total: 4.58ms	remaining: 454ms
1:	learn: 27.1656995	total: 9.08ms	remaining: 445ms
2:	learn: 26.8590175	total: 13.3ms	remaining: 432ms
3:	learn: 26.5818406	total: 17.8ms	remaining: 426ms
4:	learn: 26.1148663	total: 22.4ms	remaining: 426ms
5:	learn: 25.7690484	total: 26.7ms	remaining: 419ms
6:	learn: 25.3489206	total: 31.3ms	remaining: 416ms
7:	learn: 24.9542406	total: 35.9ms	remaining: 413ms
8:	learn: 24.6777517	total: 40.7ms	remaining: 411ms
9:	learn: 24.3242344	total: 45.3ms	remaining: 408ms
10:	learn: 24.0383073	total: 50ms	remaining: 404ms
11:	learn: 23.7383420	total: 55ms	remaining: 403ms
12:	learn: 23.3461670	total: 62.1ms	remaining: 415ms
13:	learn: 23.0928636	total: 68.9ms	remaining: 423ms
14:	learn: 22.8770414	total: 78.4ms	remaining: 444ms
15:	learn: 22.6323214	total: 86.3ms	remaining: 453ms
16:	learn: 22.3597072	total: 91.4ms	remaining: 446ms
17:	learn: 22.1079813	total: 96.5ms	remaining: 440ms
18:	learn: 21.8421199	total: 102ms	remaining: 433ms
19:	learn: 21.6576508	total: 107ms	remaining: 427ms
20:	learn: 21.4301268	total: 112ms	remaining: 420ms
21:	learn: 21.2287388	total: 117ms	remaining: 414ms
22:	learn: 21.0553872	total: 122ms	remaining: 408ms
23:	learn: 20.8977091	total: 127ms	remaining: 402ms
24:	learn: 20.6619051	total: 132ms	remaining: 396ms
25:	learn: 20.5040955	total: 137ms	remaining: 391ms
26:	learn: 20.3181195	total: 142ms	remaining: 385ms
27:	learn: 20.0869436	total: 147ms	remaining: 378ms
28:	learn: 19.9375985	total: 152ms	remaining: 372ms
29:	learn: 19.8247516	total: 158ms	remaining: 368ms
30:	learn: 19.6261697	total: 161ms	remaining: 359ms
31:	learn: 19.4547236	total: 165ms	remaining: 351ms
32:	learn: 19.3157092	total: 169ms	remaining: 343ms
33:	learn: 19.1561419	total: 173ms	remaining: 336ms
34:	learn: 19.0453620	total: 177ms	remaining: 328ms
35:	learn: 18.8738574	total: 181ms	remaining: 322ms
36:	learn: 18.7072907	total: 185ms	remaining: 315ms
37:	learn: 18.5877943	total: 190ms	remaining: 309ms
38:	learn: 18.4436380	total: 194ms	remaining: 303ms
39:	learn: 18.3463356	total: 198ms	remaining: 296ms
40:	learn: 18.2008059	total: 202ms	remaining: 290ms
41:	learn: 18.0582079	total: 206ms	remaining: 284ms
42:	learn: 17.8891982	total: 210ms	remaining: 279ms
43:	learn: 17.7332246	total: 214ms	remaining: 272ms
44:	learn: 17.6206421	total: 218ms	remaining: 267ms
45:	learn: 17.4982800	total: 223ms	remaining: 262ms
46:	learn: 17.3970150	total: 228ms	remaining: 257ms
47:	learn: 17.3058203	total: 232ms	remaining: 252ms
48:	learn: 17.1789256	total: 237ms	remaining: 247ms
49:	learn: 17.0916229	total: 242ms	remaining: 242ms
50:	learn: 16.9859820	total: 247ms	remaining: 237ms
51:	learn: 16.8995582	total: 251ms	remaining: 232ms
52:	learn: 16.8137014	total: 260ms	remaining: 231ms
53:	learn: 16.7021451	total: 268ms	remaining: 228ms
54:	learn: 16.5895582	total: 276ms	remaining: 225ms
55:	learn: 16.5015639	total: 282ms	remaining: 221ms
56:	learn: 16.4356637	total: 288ms	remaining: 217ms
57:	learn: 16.3514525	total: 294ms	remaining: 213ms
58:	learn: 16.2401369	total: 299ms	remaining: 208ms
59:	learn: 16.1293223	total: 304ms	remaining: 203ms
60:	learn: 16.0271167	total: 309ms	remaining: 198ms
61:	learn: 15.9126257	total: 315ms	remaining: 193ms
62:	learn: 15.8391096	total: 320ms	remaining: 188ms
63:	learn: 15.7441773	total: 325ms	remaining: 183ms
64:	learn: 15.6885195	total: 331ms	remaining: 178ms
65:	learn: 15.6052039	total: 336ms	remaining: 173ms
66:	learn: 15.5074202	total: 341ms	remaining: 168ms
67:	learn: 15.4054338	total: 346ms	remaining: 163ms
68:	learn: 15.2885714	total: 352ms	remaining: 158ms
69:	learn: 15.2157472	total: 357ms	remaining: 153ms
70:	learn: 15.1031554	total: 362ms	remaining: 148ms
71:	learn: 15.0237470	total: 367ms	remaining: 143ms
72:	learn: 14.9756825	total: 371ms	remaining: 137ms
73:	learn: 14.8840596	total: 375ms	remaining: 132ms
74:	learn: 14.8077061	total: 380ms	remaining: 127ms
75:	learn: 14.7444437	total: 385ms	remaining: 121ms
76:	learn: 14.6751720	total: 389ms	remaining: 116ms
77:	learn: 14.5830333	total: 392ms	remaining: 111ms
78:	learn: 14.5241206	total: 396ms	remaining: 105ms
79:	learn: 14.4892731	total: 401ms	remaining: 100ms
80:	learn: 14.4256605	total: 405ms	remaining: 95.1ms
81:	learn: 14.3666860	total: 409ms	remaining: 89.9ms
82:	learn: 14.2938372	total: 414ms	remaining: 84.7ms
83:	learn: 14.2161532	total: 419ms	remaining: 79.7ms
84:	learn: 14.1582910	total: 423ms	remaining: 74.6ms
85:	learn: 14.1029153	total: 428ms	remaining: 69.6ms
86:	learn: 14.0475835	total: 432ms	remaining: 64.6ms
87:	learn: 13.9892661	total: 436ms	remaining: 59.5ms
88:	learn: 13.9481628	total: 441ms	remaining: 54.5ms
89:	learn: 13.8483991	total: 445ms	remaining: 49.5ms
90:	learn: 13.7775614	total: 449ms	remaining: 44.4ms
91:	learn: 13.7304585	total: 457ms	remaining: 39.7ms
92:	learn: 13.6783381	total: 464ms	remaining: 34.9ms
93:	learn: 13.6356964	total: 475ms	remaining: 30.3ms
94:	learn: 13.5924371	total: 481ms	remaining: 25.3ms
95:	learn: 13.5400746	total: 488ms	remaining: 20.3ms
96:	learn: 13.4897333	total: 493ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 498ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 504ms	remaining: 5.09ms
99:	learn: 13.3082371	total: 513ms	remaining: 0us
0:	learn: 43.0395283	total: 4.23ms	remaining: 419ms
1:	learn: 42.1130223	total: 8.18ms	remaining: 401ms
2:	learn: 41.1753409	total: 12.1ms	remaining: 390ms
3:	learn: 40.3637444	total: 16.4ms	remaining: 393ms
4:	learn: 39.6508088	total: 20.3ms	remaining: 385ms
5:	learn: 38.7217934	total: 24.2ms	remaining: 380ms
6:	learn: 37.8538055	total: 28.3ms	remaining: 376ms
7:	learn: 36.9793574	total: 32.4ms	remaining: 372ms
8:	learn: 36.3076984	total: 36.5ms	remaining: 369ms
9:	learn: 35.6673160	total: 40.5ms	remaining: 364ms
10:	learn: 34.8889800	total: 44.7ms	remaining: 362ms
11:	learn: 34.1675517	total: 48.7ms	remaining: 357ms
12:	learn: 33.6779564	total: 53ms	remaining: 355ms
13:	learn: 33.0710039	total: 57.5ms	remaining: 353ms
14:	learn: 32.4966674	total: 61.7ms	remaining: 350ms
15:	learn: 31.9492856	total: 66.2ms	remaining: 347ms
16:	learn: 31.5108129	total: 70.9ms	remaining: 346ms
17:	learn: 30.9804023	total: 75.5ms	remaining: 344ms
18:	learn: 30.4169089	total: 79.9ms	remaining: 341ms
19:	learn: 29.8930375	total: 84.3ms	remaining: 337ms
20:	learn: 29.3974421	total: 88.9ms	remaining: 334ms
21:	learn: 28.8792307	total: 93.6ms	remaining: 332ms
22:	learn: 28.3894474	total: 102ms	remaining: 340ms
23:	learn: 27.9921276	total: 109ms	remaining: 345ms
24:	learn: 27.6158887	total: 118ms	remaining: 353ms
25:	learn: 27.2866950	total: 124ms	remaining: 352ms
26:	learn: 26.8770708	total: 130ms	remaining: 351ms
27:	learn: 26.6233005	total: 135ms	remaining: 347ms
28:	learn: 26.2921934	total: 140ms	remaining: 344ms
29:	learn: 25.9156920	total: 146ms	remaining: 340ms
30:	learn: 25.5311106	total: 148ms	remaining: 329ms
31:	learn: 25.2178997	total: 153ms	remaining: 325ms
32:	learn: 24.8572196	total: 158ms	remaining: 321ms
33:	learn: 24.5849710	total: 164ms	remaining: 318ms
34:	learn: 24.2209190	total: 169ms	remaining: 313ms
35:	learn: 23.8708250	total: 174ms	remaining: 309ms
36:	learn: 23.5325279	total: 179ms	remaining: 305ms
37:	learn: 23.2116148	total: 184ms	remaining: 300ms
38:	learn: 22.9696787	total: 189ms	remaining: 296ms
39:	learn: 22.7936783	total: 194ms	remaining: 291ms
40:	learn: 22.6228847	total: 199ms	remaining: 287ms
41:	learn: 22.3691527	total: 204ms	remaining: 282ms
42:	learn: 22.1002173	total: 209ms	remaining: 276ms
43:	learn: 21.9157268	total: 212ms	remaining: 270ms
44:	learn: 21.7229102	total: 217ms	remaining: 265ms
45:	learn: 21.4642005	total: 222ms	remaining: 260ms
46:	learn: 21.3029442	total: 226ms	remaining: 255ms
47:	learn: 21.1469792	total: 231ms	remaining: 250ms
48:	learn: 20.9458235	total: 235ms	remaining: 245ms
49:	learn: 20.7335242	total: 240ms	remaining: 240ms
50:	learn: 20.5440269	total: 245ms	remaining: 235ms
51:	learn: 20.3661449	total: 250ms	remaining: 231ms
52:	learn: 20.2158134	total: 254ms	remaining: 225ms
53:	learn: 19.9934873	total: 258ms	remaining: 220ms
54:	learn: 19.7879739	total: 263ms	remaining: 215ms
55:	learn: 19.6630460	total: 268ms	remaining: 210ms
56:	learn: 19.5152729	total: 272ms	remaining: 205ms
57:	learn: 19.3581128	total: 277ms	remaining: 200ms
58:	learn: 19.2209303	total: 282ms	remaining: 196ms
59:	learn: 19.0965248	total: 286ms	remaining: 191ms
60:	learn: 19.0035954	total: 291ms	remaining: 186ms
61:	learn: 18.8554149	total: 298ms	remaining: 182ms
62:	learn: 18.7095427	total: 305ms	remaining: 179ms
63:	learn: 18.5751494	total: 314ms	remaining: 176ms
64:	learn: 18.4678251	total: 320ms	remaining: 172ms
65:	learn: 18.3500325	total: 327ms	remaining: 169ms
66:	learn: 18.2088983	total: 333ms	remaining: 164ms
67:	learn: 18.0737705	total: 338ms	remaining: 159ms
68:	learn: 17.9325058	total: 344ms	remaining: 154ms
69:	learn: 17.8003911	total: 349ms	remaining: 150ms
70:	learn: 17.7385366	total: 354ms	remaining: 145ms
71:	learn: 17.6106998	total: 359ms	remaining: 140ms
72:	learn: 17.4816270	total: 364ms	remaining: 135ms
73:	learn: 17.4025554	total: 369ms	remaining: 130ms
74:	learn: 17.2902108	total: 375ms	remaining: 125ms
75:	learn: 17.2158048	total: 380ms	remaining: 120ms
76:	learn: 17.1261053	total: 385ms	remaining: 115ms
77:	learn: 17.0308917	total: 391ms	remaining: 110ms
78:	learn: 16.9546705	total: 396ms	remaining: 105ms
79:	learn: 16.8319165	total: 401ms	remaining: 100ms
80:	learn: 16.7687017	total: 405ms	remaining: 95ms
81:	learn: 16.6972326	total: 409ms	remaining: 89.8ms
82:	learn: 16.6124580	total: 413ms	remaining: 84.7ms
83:	learn: 16.4999052	total: 418ms	remaining: 79.6ms
84:	learn: 16.4302484	total: 422ms	remaining: 74.5ms
85:	learn: 16.3201363	total: 426ms	remaining: 69.3ms
86:	learn: 16.2534314	total: 430ms	remaining: 64.3ms
87:	learn: 16.1720485	total: 434ms	remaining: 59.2ms
88:	learn: 16.0625751	total: 439ms	remaining: 54.2ms
89:	learn: 15.9135088	total: 443ms	remaining: 49.2ms
90:	learn: 15.8658863	total: 448ms	remaining: 44.3ms
91:	learn: 15.8066805	total: 452ms	remaining: 39.3ms
92:	learn: 15.7412103	total: 456ms	remaining: 34.3ms
93:	learn: 15.6542776	total: 461ms	remaining: 29.4ms
94:	learn: 15.5760334	total: 466ms	remaining: 24.5ms
95:	learn: 15.5434131	total: 471ms	remaining: 19.6ms
96:	learn: 15.4709561	total: 475ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 480ms	remaining: 9.79ms
98:	learn: 15.3752761	total: 485ms	remaining: 4.89ms
99:	learn: 15.3106595	total: 489ms	remaining: 0us
0:	learn: 46.7142257	total: 5.24ms	remaining: 519ms
1:	learn: 45.7634153	total: 10.6ms	remaining: 519ms
2:	learn: 45.0054253	total: 15.7ms	remaining: 509ms
3:	learn: 44.2120432	total: 20.9ms	remaining: 501ms
4:	learn: 43.3960472	total: 25.6ms	remaining: 487ms
5:	learn: 42.8588120	total: 30.7ms	remaining: 481ms
6:	learn: 41.9533701	total: 35.4ms	remaining: 471ms
7:	learn: 41.2745030	total: 40.6ms	remaining: 467ms
8:	learn: 40.6797495	total: 46.5ms	remaining: 470ms
9:	learn: 39.9899571	total: 51.7ms	remaining: 465ms
10:	learn: 39.4682100	total: 56ms	remaining: 453ms
11:	learn: 39.0305595	total: 60.1ms	remaining: 441ms
12:	learn: 38.4200417	total: 64.1ms	remaining: 429ms
13:	learn: 37.8425194	total: 68.5ms	remaining: 421ms
14:	learn: 37.4203127	total: 72.5ms	remaining: 411ms
15:	learn: 36.9917688	total: 76.6ms	remaining: 402ms
16:	learn: 36.5544138	total: 80.7ms	remaining: 394ms
17:	learn: 36.0727019	total: 85.1ms	remaining: 388ms
18:	learn: 35.4835715	total: 89.3ms	remaining: 381ms
19:	learn: 34.9865654	total: 93.4ms	remaining: 374ms
20:	learn: 34.6063373	total: 97.3ms	remaining: 366ms
21:	learn: 34.0997289	total: 101ms	remaining: 360ms
22:	learn: 33.7313171	total: 105ms	remaining: 353ms
23:	learn: 33.3582000	total: 109ms	remaining: 346ms
24:	learn: 32.9432456	total: 113ms	remaining: 339ms
25:	learn: 32.5220888	total: 117ms	remaining: 334ms
26:	learn: 32.2172292	total: 122ms	remaining: 329ms
27:	learn: 31.8972904	total: 126ms	remaining: 324ms
28:	learn: 31.6405350	total: 130ms	remaining: 318ms
29:	learn: 31.4167702	total: 134ms	remaining: 313ms
30:	learn: 30.8541961	total: 136ms	remaining: 303ms
31:	learn: 30.5572111	total: 141ms	remaining: 299ms
32:	learn: 30.1700399	total: 146ms	remaining: 296ms
33:	learn: 29.8537271	total: 150ms	remaining: 292ms
34:	learn: 29.6192540	total: 155ms	remaining: 288ms
35:	learn: 29.3276362	total: 159ms	remaining: 284ms
36:	learn: 28.9985179	total: 164ms	remaining: 280ms
37:	learn: 28.7046880	total: 171ms	remaining: 279ms
38:	learn: 28.4412677	total: 180ms	remaining: 281ms
39:	learn: 28.1277292	total: 191ms	remaining: 287ms
40:	learn: 27.9000750	total: 198ms	remaining: 284ms
41:	learn: 27.5433162	total: 204ms	remaining: 282ms
42:	learn: 27.2493285	total: 210ms	remaining: 278ms
43:	learn: 26.9576632	total: 212ms	remaining: 269ms
44:	learn: 26.6177110	total: 227ms	remaining: 277ms
45:	learn: 26.2812456	total: 232ms	remaining: 272ms
46:	learn: 26.0803859	total: 237ms	remaining: 268ms
47:	learn: 25.9543581	total: 243ms	remaining: 263ms
48:	learn: 25.7951582	total: 248ms	remaining: 258ms
49:	learn: 25.6548184	total: 253ms	remaining: 253ms
50:	learn: 25.4010843	total: 259ms	remaining: 249ms
51:	learn: 24.9773937	total: 265ms	remaining: 244ms
52:	learn: 24.8026156	total: 270ms	remaining: 240ms
53:	learn: 24.5568053	total: 275ms	remaining: 234ms
54:	learn: 24.2281839	total: 280ms	remaining: 229ms
55:	learn: 23.9202795	total: 285ms	remaining: 224ms
56:	learn: 23.7625591	total: 289ms	remaining: 218ms
57:	learn: 23.5429721	total: 294ms	remaining: 213ms
58:	learn: 23.3175893	total: 299ms	remaining: 208ms
59:	learn: 23.2035130	total: 303ms	remaining: 202ms
60:	learn: 23.0232450	total: 307ms	remaining: 196ms
61:	learn: 22.8384958	total: 311ms	remaining: 191ms
62:	learn: 22.6499902	total: 315ms	remaining: 185ms
63:	learn: 22.4577426	total: 319ms	remaining: 180ms
64:	learn: 22.3333158	total: 324ms	remaining: 174ms
65:	learn: 22.2064131	total: 327ms	remaining: 169ms
66:	learn: 22.1434971	total: 331ms	remaining: 163ms
67:	learn: 21.9596519	total: 336ms	remaining: 158ms
68:	learn: 21.8475576	total: 341ms	remaining: 153ms
69:	learn: 21.6954745	total: 345ms	remaining: 148ms
70:	learn: 21.5635976	total: 350ms	remaining: 143ms
71:	learn: 21.4588506	total: 354ms	remaining: 138ms
72:	learn: 21.3527268	total: 358ms	remaining: 132ms
73:	learn: 21.2661288	total: 363ms	remaining: 128ms
74:	learn: 21.1817333	total: 368ms	remaining: 123ms
75:	learn: 21.0527553	total: 376ms	remaining: 119ms
76:	learn: 20.9229021	total: 384ms	remaining: 115ms
77:	learn: 20.7563946	total: 392ms	remaining: 111ms
78:	learn: 20.6569831	total: 400ms	remaining: 106ms
79:	learn: 20.4982663	total: 405ms	remaining: 101ms
80:	learn: 20.3185460	total: 411ms	remaining: 96.4ms
81:	learn: 20.2096241	total: 417ms	remaining: 91.6ms
82:	learn: 20.1274891	total: 424ms	remaining: 86.8ms
83:	learn: 20.0740139	total: 430ms	remaining: 82ms
84:	learn: 19.9630699	total: 436ms	remaining: 77ms
85:	learn: 19.8753899	total: 443ms	remaining: 72.1ms
86:	learn: 19.6563612	total: 449ms	remaining: 67.1ms
87:	learn: 19.4680232	total: 454ms	remaining: 62ms
88:	learn: 19.3503431	total: 460ms	remaining: 56.9ms
89:	learn: 19.2221379	total: 467ms	remaining: 51.9ms
90:	learn: 19.0732542	total: 473ms	remaining: 46.8ms
91:	learn: 18.9825190	total: 478ms	remaining: 41.6ms
92:	learn: 18.8839009	total: 483ms	remaining: 36.4ms
93:	learn: 18.8012219	total: 488ms	remaining: 31.2ms
94:	learn: 18.7172713	total: 493ms	remaining: 25.9ms
95:	learn: 18.6201170	total: 498ms	remaining: 20.7ms
96:	learn: 18.5318611	total: 503ms	remaining: 15.6ms
97:	learn: 18.3833356	total: 508ms	remaining: 10.4ms
98:	learn: 18.3289700	total: 512ms	remaining: 5.18ms
99:	learn: 18.2227333	total: 517ms	remaining: 0us
0:	learn: 46.3764524	total: 4.8ms	remaining: 475ms
1:	learn: 45.5561269	total: 8.86ms	remaining: 434ms
2:	learn: 44.8811245	total: 13.3ms	remaining: 429ms
3:	learn: 44.0788617	total: 20.3ms	remaining: 487ms
4:	learn: 43.3619790	total: 28.9ms	remaining: 550ms
5:	learn: 42.6912112	total: 38.4ms	remaining: 602ms
6:	learn: 42.2292118	total: 46.2ms	remaining: 614ms
7:	learn: 41.7725191	total: 51.5ms	remaining: 592ms
8:	learn: 41.1676614	total: 56.6ms	remaining: 572ms
9:	learn: 40.5771076	total: 61.6ms	remaining: 554ms
10:	learn: 39.8343757	total: 66.6ms	remaining: 539ms
11:	learn: 39.3761142	total: 71.7ms	remaining: 526ms
12:	learn: 38.5254692	total: 77.1ms	remaining: 516ms
13:	learn: 37.9629555	total: 82.3ms	remaining: 505ms
14:	learn: 37.4418438	total: 87.1ms	remaining: 494ms
15:	learn: 37.0507283	total: 92.3ms	remaining: 484ms
16:	learn: 36.6264217	total: 96.9ms	remaining: 473ms
17:	learn: 36.1114940	total: 102ms	remaining: 465ms
18:	learn: 35.7193862	total: 108ms	remaining: 459ms
19:	learn: 35.3301177	total: 113ms	remaining: 454ms
20:	learn: 35.0598280	total: 118ms	remaining: 445ms
21:	learn: 34.5469736	total: 123ms	remaining: 437ms
22:	learn: 34.2064215	total: 128ms	remaining: 428ms
23:	learn: 33.7280710	total: 133ms	remaining: 420ms
24:	learn: 33.3282940	total: 137ms	remaining: 412ms
25:	learn: 32.8478961	total: 141ms	remaining: 402ms
26:	learn: 32.5722164	total: 146ms	remaining: 394ms
27:	learn: 32.2457019	total: 149ms	remaining: 384ms
28:	learn: 31.9230495	total: 154ms	remaining: 376ms
29:	learn: 31.4311611	total: 158ms	remaining: 368ms
30:	learn: 30.9179052	total: 162ms	remaining: 361ms
31:	learn: 30.6201141	total: 167ms	remaining: 355ms
32:	learn: 30.3421106	total: 171ms	remaining: 347ms
33:	learn: 29.9885373	total: 175ms	remaining: 340ms
34:	learn: 29.7462780	total: 180ms	remaining: 334ms
35:	learn: 29.3607153	total: 184ms	remaining: 328ms
36:	learn: 29.1793078	total: 189ms	remaining: 322ms
37:	learn: 28.9276538	total: 193ms	remaining: 316ms
38:	learn: 28.6903934	total: 199ms	remaining: 311ms
39:	learn: 28.2095033	total: 203ms	remaining: 304ms
40:	learn: 27.7990608	total: 207ms	remaining: 298ms
41:	learn: 27.5406632	total: 211ms	remaining: 292ms
42:	learn: 27.2575376	total: 216ms	remaining: 286ms
43:	learn: 26.9741707	total: 224ms	remaining: 286ms
44:	learn: 26.6606899	total: 232ms	remaining: 284ms
45:	learn: 26.4015833	total: 241ms	remaining: 283ms
46:	learn: 26.1828993	total: 249ms	remaining: 281ms
47:	learn: 26.0233709	total: 252ms	remaining: 273ms
48:	learn: 25.9300399	total: 257ms	remaining: 268ms
49:	learn: 25.5861489	total: 262ms	remaining: 262ms
50:	learn: 25.4322012	total: 268ms	remaining: 257ms
51:	learn: 25.1595644	total: 273ms	remaining: 252ms
52:	learn: 24.9955303	total: 278ms	remaining: 247ms
53:	learn: 24.7273966	total: 284ms	remaining: 242ms
54:	learn: 24.5747978	total: 289ms	remaining: 236ms
55:	learn: 24.3807977	total: 294ms	remaining: 231ms
56:	learn: 24.1689569	total: 300ms	remaining: 226ms
57:	learn: 23.9898221	total: 305ms	remaining: 221ms
58:	learn: 23.7566414	total: 310ms	remaining: 215ms
59:	learn: 23.6641165	total: 315ms	remaining: 210ms
60:	learn: 23.5658066	total: 321ms	remaining: 205ms
61:	learn: 23.4338851	total: 326ms	remaining: 200ms
62:	learn: 23.2408837	total: 330ms	remaining: 194ms
63:	learn: 23.0642038	total: 334ms	remaining: 188ms
64:	learn: 22.9032045	total: 338ms	remaining: 182ms
65:	learn: 22.7736138	total: 342ms	remaining: 176ms
66:	learn: 22.6836443	total: 346ms	remaining: 171ms
67:	learn: 22.5983654	total: 350ms	remaining: 165ms
68:	learn: 22.4419813	total: 355ms	remaining: 159ms
69:	learn: 22.2863339	total: 359ms	remaining: 154ms
70:	learn: 22.1792943	total: 364ms	remaining: 148ms
71:	learn: 22.1130574	total: 368ms	remaining: 143ms
72:	learn: 21.9858161	total: 373ms	remaining: 138ms
73:	learn: 21.8577784	total: 377ms	remaining: 132ms
74:	learn: 21.7845222	total: 381ms	remaining: 127ms
75:	learn: 21.6831390	total: 386ms	remaining: 122ms
76:	learn: 21.6292521	total: 391ms	remaining: 117ms
77:	learn: 21.5789330	total: 395ms	remaining: 112ms
78:	learn: 21.5420942	total: 400ms	remaining: 106ms
79:	learn: 21.4280939	total: 404ms	remaining: 101ms
80:	learn: 21.3641165	total: 409ms	remaining: 95.9ms
81:	learn: 21.2734814	total: 414ms	remaining: 90.8ms
82:	learn: 21.2220323	total: 422ms	remaining: 86.3ms
83:	learn: 21.0625792	total: 429ms	remaining: 81.7ms
84:	learn: 20.9488320	total: 438ms	remaining: 77.3ms
85:	learn: 20.8504255	total: 445ms	remaining: 72.4ms
86:	learn: 20.7848510	total: 451ms	remaining: 67.3ms
87:	learn: 20.7247442	total: 457ms	remaining: 62.3ms
88:	learn: 20.5698590	total: 462ms	remaining: 57.1ms
89:	learn: 20.4067620	total: 467ms	remaining: 51.9ms
90:	learn: 20.3062482	total: 472ms	remaining: 46.7ms
91:	learn: 20.2029696	total: 477ms	remaining: 41.5ms
92:	learn: 20.1384849	total: 482ms	remaining: 36.3ms
93:	learn: 20.0260709	total: 487ms	remaining: 31.1ms
94:	learn: 19.9122100	total: 492ms	remaining: 25.9ms
95:	learn: 19.8648487	total: 497ms	remaining: 20.7ms
96:	learn: 19.8207072	total: 502ms	remaining: 15.5ms
97:	learn: 19.7261189	total: 507ms	remaining: 10.3ms
98:	learn: 19.7042438	total: 512ms	remaining: 5.17ms
99:	learn: 19.6546645	total: 518ms	remaining: 0us
0:	learn: 47.0239288	total: 4.16ms	remaining: 412ms
1:	learn: 46.2253829	total: 8.11ms	remaining: 397ms
2:	learn: 45.5580301	total: 12.2ms	remaining: 396ms
3:	learn: 44.7273237	total: 16.2ms	remaining: 388ms
4:	learn: 43.8867421	total: 19.9ms	remaining: 379ms
5:	learn: 43.3615911	total: 23.5ms	remaining: 369ms
6:	learn: 42.8548390	total: 27.8ms	remaining: 369ms
7:	learn: 42.1606758	total: 32.3ms	remaining: 372ms
8:	learn: 41.6625870	total: 36.7ms	remaining: 371ms
9:	learn: 40.9497092	total: 40.8ms	remaining: 368ms
10:	learn: 40.1886318	total: 45.3ms	remaining: 366ms
11:	learn: 39.7456423	total: 49.5ms	remaining: 363ms
12:	learn: 39.1171373	total: 53.8ms	remaining: 360ms
13:	learn: 38.5451069	total: 58.4ms	remaining: 359ms
14:	learn: 38.0155834	total: 65.2ms	remaining: 370ms
15:	learn: 37.5631354	total: 72.2ms	remaining: 379ms
16:	learn: 37.1030023	total: 79.5ms	remaining: 388ms
17:	learn: 36.4563029	total: 86.3ms	remaining: 393ms
18:	learn: 36.0160976	total: 93.7ms	remaining: 399ms
19:	learn: 35.5079827	total: 101ms	remaining: 405ms
20:	learn: 35.2111885	total: 106ms	remaining: 401ms
21:	learn: 34.9397465	total: 112ms	remaining: 396ms
22:	learn: 34.5270048	total: 117ms	remaining: 392ms
23:	learn: 34.0169260	total: 122ms	remaining: 388ms
24:	learn: 33.7454892	total: 127ms	remaining: 382ms
25:	learn: 33.2648157	total: 132ms	remaining: 377ms
26:	learn: 32.8899427	total: 138ms	remaining: 372ms
27:	learn: 32.6185050	total: 143ms	remaining: 367ms
28:	learn: 32.3528531	total: 148ms	remaining: 362ms
29:	learn: 32.0859923	total: 153ms	remaining: 357ms
30:	learn: 31.6511144	total: 158ms	remaining: 351ms
31:	learn: 31.2571765	total: 163ms	remaining: 347ms
32:	learn: 30.9770049	total: 169ms	remaining: 343ms
33:	learn: 30.6084872	total: 173ms	remaining: 336ms
34:	learn: 30.3448632	total: 178ms	remaining: 330ms
35:	learn: 30.0360942	total: 182ms	remaining: 324ms
36:	learn: 29.6648968	total: 187ms	remaining: 318ms
37:	learn: 29.3165114	total: 191ms	remaining: 312ms
38:	learn: 29.0829198	total: 196ms	remaining: 306ms
39:	learn: 28.7752064	total: 200ms	remaining: 300ms
40:	learn: 28.3622191	total: 204ms	remaining: 294ms
41:	learn: 28.1346631	total: 208ms	remaining: 287ms
42:	learn: 27.9585719	total: 212ms	remaining: 281ms
43:	learn: 27.6565566	total: 216ms	remaining: 275ms
44:	learn: 27.3616172	total: 220ms	remaining: 269ms
45:	learn: 27.0658637	total: 224ms	remaining: 263ms
46:	learn: 26.8660382	total: 228ms	remaining: 258ms
47:	learn: 26.6536078	total: 233ms	remaining: 252ms
48:	learn: 26.3524440	total: 237ms	remaining: 247ms
49:	learn: 26.1595277	total: 242ms	remaining: 242ms
50:	learn: 25.9273523	total: 246ms	remaining: 237ms
51:	learn: 25.7195580	total: 251ms	remaining: 232ms
52:	learn: 25.5730225	total: 255ms	remaining: 227ms
53:	learn: 25.3455276	total: 260ms	remaining: 221ms
54:	learn: 25.2289675	total: 268ms	remaining: 219ms
55:	learn: 25.0133024	total: 276ms	remaining: 216ms
56:	learn: 24.8406714	total: 285ms	remaining: 215ms
57:	learn: 24.6367857	total: 290ms	remaining: 210ms
58:	learn: 24.5338177	total: 297ms	remaining: 206ms
59:	learn: 24.3799964	total: 302ms	remaining: 201ms
60:	learn: 24.1447492	total: 307ms	remaining: 196ms
61:	learn: 23.9880495	total: 312ms	remaining: 191ms
62:	learn: 23.7140630	total: 318ms	remaining: 187ms
63:	learn: 23.5003791	total: 323ms	remaining: 182ms
64:	learn: 23.3207645	total: 328ms	remaining: 177ms
65:	learn: 23.1958356	total: 333ms	remaining: 172ms
66:	learn: 23.0471302	total: 338ms	remaining: 167ms
67:	learn: 22.8977183	total: 344ms	remaining: 162ms
68:	learn: 22.7187400	total: 349ms	remaining: 157ms
69:	learn: 22.6523405	total: 353ms	remaining: 151ms
70:	learn: 22.4767453	total: 358ms	remaining: 146ms
71:	learn: 22.3243677	total: 364ms	remaining: 141ms
72:	learn: 22.2133096	total: 368ms	remaining: 136ms
73:	learn: 22.1151713	total: 372ms	remaining: 131ms
74:	learn: 22.0296666	total: 376ms	remaining: 125ms
75:	learn: 21.9195980	total: 380ms	remaining: 120ms
76:	learn: 21.8401730	total: 384ms	remaining: 115ms
77:	learn: 21.8079797	total: 387ms	remaining: 109ms
78:	learn: 21.7274109	total: 391ms	remaining: 104ms
79:	learn: 21.6663032	total: 396ms	remaining: 98.9ms
80:	learn: 21.5633117	total: 399ms	remaining: 93.7ms
81:	learn: 21.4542467	total: 403ms	remaining: 88.5ms
82:	learn: 21.3177957	total: 408ms	remaining: 83.5ms
83:	learn: 21.1289167	total: 412ms	remaining: 78.5ms
84:	learn: 21.0297368	total: 416ms	remaining: 73.4ms
85:	learn: 20.9089564	total: 420ms	remaining: 68.4ms
86:	learn: 20.7653988	total: 424ms	remaining: 63.4ms
87:	learn: 20.6521894	total: 428ms	remaining: 58.4ms
88:	learn: 20.5193021	total: 433ms	remaining: 53.5ms
89:	learn: 20.4361620	total: 438ms	remaining: 48.6ms
90:	learn: 20.3546710	total: 442ms	remaining: 43.7ms
91:	learn: 20.2513296	total: 447ms	remaining: 38.8ms
92:	learn: 20.1605550	total: 451ms	remaining: 34ms
93:	learn: 20.0515942	total: 455ms	remaining: 29.1ms
94:	learn: 19.9800764	total: 460ms	remaining: 24.2ms
95:	learn: 19.8996532	total: 469ms	remaining: 19.5ms
96:	learn: 19.8450910	total: 477ms	remaining: 14.7ms
97:	learn: 19.7887346	total: 485ms	remaining: 9.89ms
98:	learn: 19.7230872	total: 496ms	remaining: 5.01ms
99:	learn: 19.6328825	total: 501ms	remaining: 0us
0:	learn: 27.3441720	total: 19.1ms	remaining: 1.9s
1:	learn: 26.7159954	total: 40ms	remaining: 1.96s
2:	learn: 26.0850318	total: 62.4ms	remaining: 2.02s
3:	learn: 25.4039656	total: 85.5ms	remaining: 2.05s
4:	learn: 24.7930659	total: 109ms	remaining: 2.06s
5:	learn: 24.2028590	total: 136ms	remaining: 2.14s
6:	learn: 23.6622902	total: 160ms	remaining: 2.12s
7:	learn: 23.1531175	total: 182ms	remaining: 2.09s
8:	learn: 22.7050792	total: 205ms	remaining: 2.08s
9:	learn: 22.2151788	total: 228ms	remaining: 2.05s
10:	learn: 21.7708844	total: 248ms	remaining: 2.01s
11:	learn: 21.2587174	total: 270ms	remaining: 1.98s
12:	learn: 20.7559870	total: 291ms	remaining: 1.95s
13:	learn: 20.3040842	total: 312ms	remaining: 1.92s
14:	learn: 19.9019524	total: 341ms	remaining: 1.93s
15:	learn: 19.5186012	total: 366ms	remaining: 1.92s
16:	learn: 19.1521621	total: 388ms	remaining: 1.9s
17:	learn: 18.7652180	total: 412ms	remaining: 1.88s
18:	learn: 18.4446446	total: 434ms	remaining: 1.85s
19:	learn: 18.0977650	total: 457ms	remaining: 1.83s
20:	learn: 17.7791328	total: 477ms	remaining: 1.79s
21:	learn: 17.4777648	total: 497ms	remaining: 1.76s
22:	learn: 17.1794361	total: 519ms	remaining: 1.74s
23:	learn: 16.8685032	total: 544ms	remaining: 1.72s
24:	learn: 16.6274695	total: 571ms	remaining: 1.71s
25:	learn: 16.3071099	total: 593ms	remaining: 1.69s
26:	learn: 16.0249663	total: 616ms	remaining: 1.67s
27:	learn: 15.7535309	total: 638ms	remaining: 1.64s
28:	learn: 15.4777235	total: 661ms	remaining: 1.62s
29:	learn: 15.2410825	total: 681ms	remaining: 1.59s
30:	learn: 15.0133002	total: 703ms	remaining: 1.56s
31:	learn: 14.8018912	total: 725ms	remaining: 1.54s
32:	learn: 14.5701546	total: 747ms	remaining: 1.52s
33:	learn: 14.3799060	total: 777ms	remaining: 1.51s
34:	learn: 14.0975095	total: 801ms	remaining: 1.49s
35:	learn: 13.8873493	total: 825ms	remaining: 1.47s
36:	learn: 13.6812023	total: 850ms	remaining: 1.45s
37:	learn: 13.4943017	total: 874ms	remaining: 1.43s
38:	learn: 13.3224094	total: 895ms	remaining: 1.4s
39:	learn: 13.0967901	total: 917ms	remaining: 1.38s
40:	learn: 12.9138190	total: 939ms	remaining: 1.35s
41:	learn: 12.7764458	total: 962ms	remaining: 1.33s
42:	learn: 12.6593656	total: 994ms	remaining: 1.32s
43:	learn: 12.5051105	total: 1.02s	remaining: 1.3s
44:	learn: 12.3057146	total: 1.04s	remaining: 1.27s
45:	learn: 12.1487674	total: 1.07s	remaining: 1.25s
46:	learn: 11.9614903	total: 1.09s	remaining: 1.23s
47:	learn: 11.7921265	total: 1.11s	remaining: 1.21s
48:	learn: 11.6572640	total: 1.14s	remaining: 1.18s
49:	learn: 11.5251463	total: 1.16s	remaining: 1.16s
50:	learn: 11.3789931	total: 1.18s	remaining: 1.14s
51:	learn: 11.2691375	total: 1.21s	remaining: 1.12s
52:	learn: 11.1161131	total: 1.24s	remaining: 1.1s
53:	learn: 11.0246399	total: 1.26s	remaining: 1.08s
54:	learn: 10.9152420	total: 1.29s	remaining: 1.05s
55:	learn: 10.7746769	total: 1.31s	remaining: 1.03s
56:	learn: 10.6222917	total: 1.33s	remaining: 1s
57:	learn: 10.5096115	total: 1.35s	remaining: 981ms
58:	learn: 10.3857030	total: 1.38s	remaining: 957ms
59:	learn: 10.2789057	total: 1.4s	remaining: 933ms
60:	learn: 10.1490749	total: 1.43s	remaining: 916ms
61:	learn: 10.0553291	total: 1.46s	remaining: 894ms
62:	learn: 9.9351043	total: 1.48s	remaining: 871ms
63:	learn: 9.8245261	total: 1.5s	remaining: 847ms
64:	learn: 9.7207577	total: 1.53s	remaining: 822ms
65:	learn: 9.5920661	total: 1.55s	remaining: 798ms
66:	learn: 9.4832767	total: 1.57s	remaining: 774ms
67:	learn: 9.3724149	total: 1.59s	remaining: 750ms
68:	learn: 9.2459801	total: 1.61s	remaining: 726ms
69:	learn: 9.1740635	total: 1.65s	remaining: 706ms
70:	learn: 9.1015730	total: 1.67s	remaining: 683ms
71:	learn: 9.0196460	total: 1.7s	remaining: 660ms
72:	learn: 8.9458977	total: 1.72s	remaining: 637ms
73:	learn: 8.8434400	total: 1.74s	remaining: 613ms
74:	learn: 8.7495151	total: 1.77s	remaining: 589ms
75:	learn: 8.6521348	total: 1.79s	remaining: 565ms
76:	learn: 8.5654483	total: 1.81s	remaining: 541ms
77:	learn: 8.4965765	total: 1.83s	remaining: 517ms
78:	learn: 8.4308736	total: 1.86s	remaining: 496ms
79:	learn: 8.3675601	total: 1.89s	remaining: 473ms
80:	learn: 8.3193887	total: 1.91s	remaining: 449ms
81:	learn: 8.2507990	total: 1.94s	remaining: 425ms
82:	learn: 8.1583259	total: 1.96s	remaining: 402ms
83:	learn: 8.0995902	total: 1.98s	remaining: 378ms
84:	learn: 8.0236655	total: 2.01s	remaining: 354ms
85:	learn: 7.9634698	total: 2.03s	remaining: 330ms
86:	learn: 7.9109081	total: 2.05s	remaining: 306ms
87:	learn: 7.8385006	total: 2.08s	remaining: 284ms
88:	learn: 7.7859488	total: 2.1s	remaining: 260ms
89:	learn: 7.7270142	total: 2.13s	remaining: 236ms
90:	learn: 7.6774253	total: 2.15s	remaining: 213ms
91:	learn: 7.6126552	total: 2.17s	remaining: 189ms
92:	learn: 7.5392178	total: 2.19s	remaining: 165ms
93:	learn: 7.4745082	total: 2.22s	remaining: 141ms
94:	learn: 7.4106939	total: 2.24s	remaining: 118ms
95:	learn: 7.3573350	total: 2.26s	remaining: 94.2ms
96:	learn: 7.2889777	total: 2.29s	remaining: 70.7ms
97:	learn: 7.2204939	total: 2.31s	remaining: 47.2ms
98:	learn: 7.1646465	total: 2.34s	remaining: 23.6ms
99:	learn: 7.1204610	total: 2.36s	remaining: 0us
0:	learn: 42.5494645	total: 20.9ms	remaining: 2.06s
1:	learn: 41.2913513	total: 43.4ms	remaining: 2.12s
2:	learn: 40.1676527	total: 66.3ms	remaining: 2.14s
3:	learn: 38.7664819	total: 88ms	remaining: 2.11s
4:	learn: 37.5407492	total: 117ms	remaining: 2.22s
5:	learn: 36.4295331	total: 140ms	remaining: 2.2s
6:	learn: 35.2895967	total: 164ms	remaining: 2.17s
7:	learn: 34.1884539	total: 186ms	remaining: 2.14s
8:	learn: 33.1817690	total: 209ms	remaining: 2.11s
9:	learn: 32.3518195	total: 231ms	remaining: 2.08s
10:	learn: 31.4837515	total: 252ms	remaining: 2.04s
11:	learn: 30.7255972	total: 272ms	remaining: 2s
12:	learn: 29.9298648	total: 294ms	remaining: 1.97s
13:	learn: 29.0574249	total: 322ms	remaining: 1.98s
14:	learn: 28.4097384	total: 349ms	remaining: 1.98s
15:	learn: 27.5317445	total: 372ms	remaining: 1.95s
16:	learn: 26.7911946	total: 395ms	remaining: 1.93s
17:	learn: 26.1103465	total: 417ms	remaining: 1.9s
18:	learn: 25.5295903	total: 440ms	remaining: 1.88s
19:	learn: 24.8544960	total: 462ms	remaining: 1.85s
20:	learn: 24.2772682	total: 484ms	remaining: 1.82s
21:	learn: 23.6936944	total: 504ms	remaining: 1.79s
22:	learn: 23.1300945	total: 537ms	remaining: 1.8s
23:	learn: 22.5333494	total: 563ms	remaining: 1.78s
24:	learn: 22.0553465	total: 585ms	remaining: 1.76s
25:	learn: 21.6253628	total: 608ms	remaining: 1.73s
26:	learn: 21.1396219	total: 632ms	remaining: 1.71s
27:	learn: 20.7382905	total: 651ms	remaining: 1.67s
28:	learn: 20.3233915	total: 670ms	remaining: 1.64s
29:	learn: 19.9323992	total: 693ms	remaining: 1.62s
30:	learn: 19.5650439	total: 715ms	remaining: 1.59s
31:	learn: 19.2165649	total: 742ms	remaining: 1.58s
32:	learn: 18.8890056	total: 769ms	remaining: 1.56s
33:	learn: 18.5523762	total: 791ms	remaining: 1.54s
34:	learn: 18.2666116	total: 814ms	remaining: 1.51s
35:	learn: 17.9216926	total: 837ms	remaining: 1.49s
36:	learn: 17.6118879	total: 859ms	remaining: 1.46s
37:	learn: 17.2653313	total: 882ms	remaining: 1.44s
38:	learn: 16.9946585	total: 904ms	remaining: 1.41s
39:	learn: 16.6842506	total: 926ms	remaining: 1.39s
40:	learn: 16.4102287	total: 956ms	remaining: 1.38s
41:	learn: 16.2288795	total: 982ms	remaining: 1.36s
42:	learn: 15.9623692	total: 1s	remaining: 1.33s
43:	learn: 15.7308231	total: 1.03s	remaining: 1.31s
44:	learn: 15.4695555	total: 1.05s	remaining: 1.28s
45:	learn: 15.2706809	total: 1.07s	remaining: 1.25s
46:	learn: 15.0182699	total: 1.09s	remaining: 1.23s
47:	learn: 14.7702088	total: 1.11s	remaining: 1.2s
48:	learn: 14.6303566	total: 1.13s	remaining: 1.18s
49:	learn: 14.4038016	total: 1.16s	remaining: 1.16s
50:	learn: 14.2309807	total: 1.19s	remaining: 1.14s
51:	learn: 14.0308425	total: 1.21s	remaining: 1.12s
52:	learn: 13.8201931	total: 1.24s	remaining: 1.1s
53:	learn: 13.6070078	total: 1.26s	remaining: 1.08s
54:	learn: 13.4230690	total: 1.28s	remaining: 1.05s
55:	learn: 13.2368649	total: 1.31s	remaining: 1.03s
56:	learn: 13.0449556	total: 1.33s	remaining: 1.01s
57:	learn: 12.8375669	total: 1.36s	remaining: 984ms
58:	learn: 12.6795194	total: 1.39s	remaining: 963ms
59:	learn: 12.5197211	total: 1.42s	remaining: 946ms
60:	learn: 12.4011717	total: 1.44s	remaining: 923ms
61:	learn: 12.2396104	total: 1.47s	remaining: 900ms
62:	learn: 12.0647878	total: 1.49s	remaining: 877ms
63:	learn: 11.9247719	total: 1.52s	remaining: 854ms
64:	learn: 11.7923634	total: 1.54s	remaining: 831ms
65:	learn: 11.6628246	total: 1.57s	remaining: 807ms
66:	learn: 11.5688935	total: 1.59s	remaining: 784ms
67:	learn: 11.4345056	total: 1.62s	remaining: 763ms
68:	learn: 11.3136955	total: 1.65s	remaining: 739ms
69:	learn: 11.2040357	total: 1.67s	remaining: 716ms
70:	learn: 11.1067773	total: 1.69s	remaining: 692ms
71:	learn: 10.9728105	total: 1.72s	remaining: 668ms
72:	learn: 10.8338607	total: 1.74s	remaining: 643ms
73:	learn: 10.7202016	total: 1.76s	remaining: 619ms
74:	learn: 10.5983746	total: 1.78s	remaining: 595ms
75:	learn: 10.4882458	total: 1.81s	remaining: 571ms
76:	learn: 10.3827604	total: 1.84s	remaining: 549ms
77:	learn: 10.2485726	total: 1.86s	remaining: 525ms
78:	learn: 10.1524716	total: 1.88s	remaining: 501ms
79:	learn: 10.0765127	total: 1.91s	remaining: 477ms
80:	learn: 9.9617067	total: 1.93s	remaining: 453ms
81:	learn: 9.8357151	total: 1.95s	remaining: 429ms
82:	learn: 9.7311644	total: 1.97s	remaining: 404ms
83:	learn: 9.6314802	total: 2s	remaining: 380ms
84:	learn: 9.5137958	total: 2.02s	remaining: 356ms
85:	learn: 9.4420485	total: 2.05s	remaining: 334ms
86:	learn: 9.3959294	total: 2.07s	remaining: 310ms
87:	learn: 9.3057742	total: 2.1s	remaining: 286ms
88:	learn: 9.2031484	total: 2.12s	remaining: 262ms
89:	learn: 9.0996948	total: 2.15s	remaining: 239ms
90:	learn: 9.0492278	total: 2.17s	remaining: 214ms
91:	learn: 8.9400377	total: 2.19s	remaining: 191ms
92:	learn: 8.8904458	total: 2.21s	remaining: 167ms
93:	learn: 8.8102982	total: 2.23s	remaining: 143ms
94:	learn: 8.7445451	total: 2.27s	remaining: 119ms
95:	learn: 8.6796106	total: 2.29s	remaining: 95.5ms
96:	learn: 8.5875790	total: 2.32s	remaining: 71.6ms
97:	learn: 8.5086871	total: 2.34s	remaining: 47.8ms
98:	learn: 8.4547244	total: 2.36s	remaining: 23.9ms
99:	learn: 8.3841281	total: 2.39s	remaining: 0us
0:	learn: 46.2258117	total: 3.55ms	remaining: 351ms
1:	learn: 45.1253456	total: 35.8ms	remaining: 1.75s
2:	learn: 43.7311767	total: 60.8ms	remaining: 1.97s
3:	learn: 42.4252819	total: 84.3ms	remaining: 2.02s
4:	learn: 41.1436655	total: 108ms	remaining: 2.06s
5:	learn: 40.0337136	total: 131ms	remaining: 2.06s
6:	learn: 38.9102686	total: 154ms	remaining: 2.05s
7:	learn: 37.7859737	total: 176ms	remaining: 2.02s
8:	learn: 36.7646905	total: 195ms	remaining: 1.97s
9:	learn: 35.9495481	total: 216ms	remaining: 1.94s
10:	learn: 35.0558185	total: 238ms	remaining: 1.93s
11:	learn: 34.1958090	total: 261ms	remaining: 1.91s
12:	learn: 33.3514013	total: 292ms	remaining: 1.95s
13:	learn: 32.3317086	total: 318ms	remaining: 1.95s
14:	learn: 31.5611046	total: 341ms	remaining: 1.93s
15:	learn: 30.6373573	total: 364ms	remaining: 1.91s
16:	learn: 29.8883669	total: 388ms	remaining: 1.89s
17:	learn: 29.2985952	total: 412ms	remaining: 1.88s
18:	learn: 28.6360550	total: 434ms	remaining: 1.85s
19:	learn: 27.9757056	total: 458ms	remaining: 1.83s
20:	learn: 27.2585835	total: 482ms	remaining: 1.81s
21:	learn: 26.6366391	total: 511ms	remaining: 1.81s
22:	learn: 26.1055455	total: 536ms	remaining: 1.79s
23:	learn: 25.4961568	total: 560ms	remaining: 1.77s
24:	learn: 25.1037435	total: 582ms	remaining: 1.75s
25:	learn: 24.5258982	total: 606ms	remaining: 1.72s
26:	learn: 23.9974764	total: 630ms	remaining: 1.7s
27:	learn: 23.5108419	total: 652ms	remaining: 1.68s
28:	learn: 23.0835773	total: 675ms	remaining: 1.65s
29:	learn: 22.5744350	total: 703ms	remaining: 1.64s
30:	learn: 22.1357783	total: 728ms	remaining: 1.62s
31:	learn: 21.7316226	total: 752ms	remaining: 1.6s
32:	learn: 21.4082899	total: 775ms	remaining: 1.57s
33:	learn: 20.9640138	total: 797ms	remaining: 1.55s
34:	learn: 20.6379417	total: 819ms	remaining: 1.52s
35:	learn: 20.2688010	total: 840ms	remaining: 1.49s
36:	learn: 19.8479214	total: 864ms	remaining: 1.47s
37:	learn: 19.5684638	total: 887ms	remaining: 1.45s
38:	learn: 19.1826919	total: 919ms	remaining: 1.44s
39:	learn: 18.9583308	total: 945ms	remaining: 1.42s
40:	learn: 18.6736002	total: 969ms	remaining: 1.39s
41:	learn: 18.3525328	total: 992ms	remaining: 1.37s
42:	learn: 17.9954191	total: 1.02s	remaining: 1.35s
43:	learn: 17.6991520	total: 1.04s	remaining: 1.32s
44:	learn: 17.3697888	total: 1.06s	remaining: 1.3s
45:	learn: 17.0519636	total: 1.09s	remaining: 1.28s
46:	learn: 16.7829795	total: 1.11s	remaining: 1.25s
47:	learn: 16.5108695	total: 1.14s	remaining: 1.24s
48:	learn: 16.2366816	total: 1.17s	remaining: 1.22s
49:	learn: 15.9947350	total: 1.19s	remaining: 1.19s
50:	learn: 15.7513561	total: 1.22s	remaining: 1.17s
51:	learn: 15.4328481	total: 1.24s	remaining: 1.15s
52:	learn: 15.2497907	total: 1.26s	remaining: 1.12s
53:	learn: 15.0417076	total: 1.28s	remaining: 1.09s
54:	learn: 14.8861891	total: 1.3s	remaining: 1.07s
55:	learn: 14.6497794	total: 1.33s	remaining: 1.04s
56:	learn: 14.3664771	total: 1.36s	remaining: 1.02s
57:	learn: 14.2358168	total: 1.38s	remaining: 1000ms
58:	learn: 14.0712722	total: 1.4s	remaining: 975ms
59:	learn: 13.9191649	total: 1.43s	remaining: 950ms
60:	learn: 13.7032356	total: 1.45s	remaining: 926ms
61:	learn: 13.5029041	total: 1.47s	remaining: 902ms
62:	learn: 13.3568908	total: 1.49s	remaining: 876ms
63:	learn: 13.1332696	total: 1.51s	remaining: 851ms
64:	learn: 13.0323137	total: 1.53s	remaining: 827ms
65:	learn: 12.8622078	total: 1.56s	remaining: 805ms
66:	learn: 12.7088186	total: 1.59s	remaining: 783ms
67:	learn: 12.5524646	total: 1.61s	remaining: 759ms
68:	learn: 12.4646011	total: 1.64s	remaining: 735ms
69:	learn: 12.3900687	total: 1.66s	remaining: 711ms
70:	learn: 12.2908367	total: 1.68s	remaining: 686ms
71:	learn: 12.1294405	total: 1.7s	remaining: 661ms
72:	learn: 12.0359996	total: 1.72s	remaining: 637ms
73:	learn: 11.9244352	total: 1.74s	remaining: 612ms
74:	learn: 11.8312038	total: 1.77s	remaining: 591ms
75:	learn: 11.6622123	total: 1.8s	remaining: 567ms
76:	learn: 11.5959180	total: 1.82s	remaining: 543ms
77:	learn: 11.4538852	total: 1.84s	remaining: 520ms
78:	learn: 11.3700375	total: 1.86s	remaining: 496ms
79:	learn: 11.2101447	total: 1.89s	remaining: 472ms
80:	learn: 11.0614634	total: 1.91s	remaining: 447ms
81:	learn: 10.9029225	total: 1.93s	remaining: 423ms
82:	learn: 10.7792030	total: 1.95s	remaining: 399ms
83:	learn: 10.6279451	total: 1.98s	remaining: 377ms
84:	learn: 10.5530267	total: 2s	remaining: 354ms
85:	learn: 10.4577150	total: 2.03s	remaining: 330ms
86:	learn: 10.4076417	total: 2.05s	remaining: 307ms
87:	learn: 10.3166632	total: 2.07s	remaining: 283ms
88:	learn: 10.2018151	total: 2.1s	remaining: 259ms
89:	learn: 10.0698484	total: 2.12s	remaining: 235ms
90:	learn: 10.0162824	total: 2.14s	remaining: 212ms
91:	learn: 9.9352639	total: 2.16s	remaining: 188ms
92:	learn: 9.8316734	total: 2.19s	remaining: 164ms
93:	learn: 9.7195471	total: 2.21s	remaining: 141ms
94:	learn: 9.5914894	total: 2.24s	remaining: 118ms
95:	learn: 9.5151851	total: 2.26s	remaining: 94.2ms
96:	learn: 9.3911314	total: 2.28s	remaining: 70.6ms
97:	learn: 9.3417706	total: 2.3s	remaining: 47ms
98:	learn: 9.2708440	total: 2.33s	remaining: 23.5ms
99:	learn: 9.1660321	total: 2.35s	remaining: 0us
0:	learn: 45.8627255	total: 3.65ms	remaining: 362ms
1:	learn: 44.7432040	total: 31.1ms	remaining: 1.52s
2:	learn: 43.4398568	total: 53.8ms	remaining: 1.74s
3:	learn: 42.1495515	total: 76.4ms	remaining: 1.83s
4:	learn: 40.9712633	total: 98.1ms	remaining: 1.86s
5:	learn: 40.0119591	total: 121ms	remaining: 1.89s
6:	learn: 39.1914360	total: 141ms	remaining: 1.87s
7:	learn: 38.1861536	total: 162ms	remaining: 1.86s
8:	learn: 37.1477128	total: 183ms	remaining: 1.85s
9:	learn: 36.3044702	total: 206ms	remaining: 1.85s
10:	learn: 35.5837917	total: 235ms	remaining: 1.9s
11:	learn: 34.8664158	total: 259ms	remaining: 1.9s
12:	learn: 33.9129833	total: 281ms	remaining: 1.88s
13:	learn: 32.9094642	total: 305ms	remaining: 1.87s
14:	learn: 32.1965787	total: 328ms	remaining: 1.86s
15:	learn: 31.4598238	total: 349ms	remaining: 1.83s
16:	learn: 30.6578027	total: 370ms	remaining: 1.8s
17:	learn: 30.0227468	total: 388ms	remaining: 1.77s
18:	learn: 29.2954728	total: 410ms	remaining: 1.75s
19:	learn: 28.5928084	total: 434ms	remaining: 1.74s
20:	learn: 27.9445984	total: 464ms	remaining: 1.74s
21:	learn: 27.3493298	total: 485ms	remaining: 1.72s
22:	learn: 26.8491966	total: 508ms	remaining: 1.7s
23:	learn: 26.3177453	total: 531ms	remaining: 1.68s
24:	learn: 25.8134533	total: 562ms	remaining: 1.69s
25:	learn: 25.2000018	total: 585ms	remaining: 1.67s
26:	learn: 24.6570461	total: 610ms	remaining: 1.65s
27:	learn: 24.1062982	total: 636ms	remaining: 1.63s
28:	learn: 23.7489370	total: 666ms	remaining: 1.63s
29:	learn: 23.2050536	total: 696ms	remaining: 1.62s
30:	learn: 22.7824379	total: 721ms	remaining: 1.6s
31:	learn: 22.4052655	total: 747ms	remaining: 1.59s
32:	learn: 21.9525639	total: 771ms	remaining: 1.56s
33:	learn: 21.5482900	total: 794ms	remaining: 1.54s
34:	learn: 21.1900983	total: 821ms	remaining: 1.52s
35:	learn: 20.8243957	total: 845ms	remaining: 1.5s
36:	learn: 20.4401288	total: 876ms	remaining: 1.49s
37:	learn: 20.0960622	total: 901ms	remaining: 1.47s
38:	learn: 19.7795108	total: 927ms	remaining: 1.45s
39:	learn: 19.4922451	total: 951ms	remaining: 1.43s
40:	learn: 19.1827582	total: 978ms	remaining: 1.41s
41:	learn: 18.8902445	total: 1s	remaining: 1.38s
42:	learn: 18.6833086	total: 1.02s	remaining: 1.36s
43:	learn: 18.4251972	total: 1.05s	remaining: 1.34s
44:	learn: 18.1471037	total: 1.09s	remaining: 1.33s
45:	learn: 17.8420017	total: 1.12s	remaining: 1.31s
46:	learn: 17.6101998	total: 1.14s	remaining: 1.29s
47:	learn: 17.3353656	total: 1.17s	remaining: 1.26s
48:	learn: 17.1194789	total: 1.19s	remaining: 1.24s
49:	learn: 16.8898454	total: 1.22s	remaining: 1.22s
50:	learn: 16.6657497	total: 1.24s	remaining: 1.19s
51:	learn: 16.3832867	total: 1.26s	remaining: 1.17s
52:	learn: 16.2098226	total: 1.29s	remaining: 1.15s
53:	learn: 16.0045707	total: 1.32s	remaining: 1.13s
54:	learn: 15.8512887	total: 1.35s	remaining: 1.11s
55:	learn: 15.6485628	total: 1.38s	remaining: 1.08s
56:	learn: 15.4841428	total: 1.41s	remaining: 1.06s
57:	learn: 15.3383158	total: 1.43s	remaining: 1.03s
58:	learn: 15.2056282	total: 1.45s	remaining: 1.01s
59:	learn: 15.0698337	total: 1.48s	remaining: 986ms
60:	learn: 14.8487796	total: 1.51s	remaining: 966ms
61:	learn: 14.7255751	total: 1.53s	remaining: 941ms
62:	learn: 14.6100414	total: 1.56s	remaining: 917ms
63:	learn: 14.3864212	total: 1.59s	remaining: 893ms
64:	learn: 14.2800460	total: 1.62s	remaining: 873ms
65:	learn: 14.1017299	total: 1.64s	remaining: 847ms
66:	learn: 13.9655015	total: 1.67s	remaining: 822ms
67:	learn: 13.8065764	total: 1.69s	remaining: 797ms
68:	learn: 13.7473285	total: 1.72s	remaining: 774ms
69:	learn: 13.6967309	total: 1.75s	remaining: 750ms
70:	learn: 13.6253255	total: 1.78s	remaining: 726ms
71:	learn: 13.4974926	total: 1.8s	remaining: 701ms
72:	learn: 13.4142694	total: 1.82s	remaining: 675ms
73:	learn: 13.2902600	total: 1.85s	remaining: 650ms
74:	learn: 13.1816461	total: 1.88s	remaining: 627ms
75:	learn: 13.0809498	total: 1.91s	remaining: 602ms
76:	learn: 12.9772285	total: 1.94s	remaining: 579ms
77:	learn: 12.8413858	total: 1.97s	remaining: 555ms
78:	learn: 12.7615799	total: 1.99s	remaining: 530ms
79:	learn: 12.5808659	total: 2.02s	remaining: 504ms
80:	learn: 12.4938330	total: 2.04s	remaining: 479ms
81:	learn: 12.3745576	total: 2.06s	remaining: 453ms
82:	learn: 12.2474104	total: 2.09s	remaining: 427ms
83:	learn: 12.1582297	total: 2.11s	remaining: 402ms
84:	learn: 12.0528081	total: 2.14s	remaining: 378ms
85:	learn: 11.9483355	total: 2.17s	remaining: 353ms
86:	learn: 11.8683204	total: 2.2s	remaining: 329ms
87:	learn: 11.7680945	total: 2.22s	remaining: 303ms
88:	learn: 11.6635447	total: 2.25s	remaining: 278ms
89:	learn: 11.5775031	total: 2.27s	remaining: 253ms
90:	learn: 11.4860538	total: 2.3s	remaining: 227ms
91:	learn: 11.3584960	total: 2.32s	remaining: 202ms
92:	learn: 11.2180285	total: 2.35s	remaining: 177ms
93:	learn: 11.0996558	total: 2.37s	remaining: 151ms
94:	learn: 10.9688832	total: 2.41s	remaining: 127ms
95:	learn: 10.9205457	total: 2.43s	remaining: 101ms
96:	learn: 10.8462783	total: 2.46s	remaining: 76.1ms
97:	learn: 10.7481890	total: 2.48s	remaining: 50.7ms
98:	learn: 10.6396315	total: 2.51s	remaining: 25.4ms
99:	learn: 10.5895308	total: 2.53s	remaining: 0us
0:	learn: 46.2892189	total: 28.4ms	remaining: 2.81s
1:	learn: 44.9732744	total: 54.3ms	remaining: 2.66s
2:	learn: 43.8887345	total: 80ms	remaining: 2.59s
3:	learn: 42.6526320	total: 105ms	remaining: 2.51s
4:	learn: 41.4812505	total: 134ms	remaining: 2.54s
5:	learn: 40.4431224	total: 157ms	remaining: 2.46s
6:	learn: 39.2936749	total: 182ms	remaining: 2.41s
7:	learn: 38.1961652	total: 207ms	remaining: 2.38s
8:	learn: 37.2194841	total: 243ms	remaining: 2.46s
9:	learn: 36.2518666	total: 269ms	remaining: 2.42s
10:	learn: 35.4919224	total: 295ms	remaining: 2.38s
11:	learn: 34.6975877	total: 319ms	remaining: 2.34s
12:	learn: 33.7869362	total: 344ms	remaining: 2.3s
13:	learn: 33.0646033	total: 368ms	remaining: 2.26s
14:	learn: 32.1821772	total: 400ms	remaining: 2.27s
15:	learn: 31.4340749	total: 423ms	remaining: 2.22s
16:	learn: 30.6504198	total: 457ms	remaining: 2.23s
17:	learn: 30.0090260	total: 483ms	remaining: 2.2s
18:	learn: 29.4233143	total: 508ms	remaining: 2.16s
19:	learn: 28.7661957	total: 533ms	remaining: 2.13s
20:	learn: 28.1570594	total: 558ms	remaining: 2.1s
21:	learn: 27.6140124	total: 581ms	remaining: 2.06s
22:	learn: 27.0130709	total: 607ms	remaining: 2.03s
23:	learn: 26.2648081	total: 635ms	remaining: 2.01s
24:	learn: 25.7963649	total: 674ms	remaining: 2.02s
25:	learn: 25.2713860	total: 699ms	remaining: 1.99s
26:	learn: 24.8080692	total: 723ms	remaining: 1.95s
27:	learn: 24.3042862	total: 747ms	remaining: 1.92s
28:	learn: 23.9097237	total: 772ms	remaining: 1.89s
29:	learn: 23.4953174	total: 794ms	remaining: 1.85s
30:	learn: 23.0484452	total: 818ms	remaining: 1.82s
31:	learn: 22.7100962	total: 842ms	remaining: 1.79s
32:	learn: 22.1662267	total: 875ms	remaining: 1.78s
33:	learn: 21.7339884	total: 902ms	remaining: 1.75s
34:	learn: 21.3699422	total: 934ms	remaining: 1.73s
35:	learn: 21.0249329	total: 959ms	remaining: 1.7s
36:	learn: 20.6187923	total: 984ms	remaining: 1.67s
37:	learn: 20.2401981	total: 1.01s	remaining: 1.64s
38:	learn: 19.9712328	total: 1.03s	remaining: 1.61s
39:	learn: 19.6429610	total: 1.06s	remaining: 1.59s
40:	learn: 19.3281556	total: 1.1s	remaining: 1.58s
41:	learn: 19.0925924	total: 1.12s	remaining: 1.55s
42:	learn: 18.8118712	total: 1.15s	remaining: 1.52s
43:	learn: 18.5355748	total: 1.17s	remaining: 1.49s
44:	learn: 18.2783929	total: 1.21s	remaining: 1.47s
45:	learn: 17.9915490	total: 1.23s	remaining: 1.44s
46:	learn: 17.7323317	total: 1.25s	remaining: 1.41s
47:	learn: 17.4448307	total: 1.28s	remaining: 1.38s
48:	learn: 17.2419782	total: 1.3s	remaining: 1.36s
49:	learn: 16.9351352	total: 1.34s	remaining: 1.34s
50:	learn: 16.7728723	total: 1.36s	remaining: 1.31s
51:	learn: 16.5718087	total: 1.39s	remaining: 1.28s
52:	learn: 16.4047483	total: 1.41s	remaining: 1.25s
53:	learn: 16.2888950	total: 1.44s	remaining: 1.23s
54:	learn: 16.1353042	total: 1.47s	remaining: 1.2s
55:	learn: 15.9384012	total: 1.49s	remaining: 1.17s
56:	learn: 15.7488511	total: 1.52s	remaining: 1.15s
57:	learn: 15.5682846	total: 1.55s	remaining: 1.12s
58:	learn: 15.3488716	total: 1.58s	remaining: 1.09s
59:	learn: 15.2291272	total: 1.6s	remaining: 1.07s
60:	learn: 15.0582519	total: 1.63s	remaining: 1.04s
61:	learn: 14.8478458	total: 1.65s	remaining: 1.01s
62:	learn: 14.6663416	total: 1.68s	remaining: 984ms
63:	learn: 14.4830825	total: 1.71s	remaining: 961ms
64:	learn: 14.3300895	total: 1.74s	remaining: 938ms
65:	learn: 14.1168590	total: 1.77s	remaining: 911ms
66:	learn: 13.9783298	total: 1.79s	remaining: 883ms
67:	learn: 13.8132857	total: 1.82s	remaining: 856ms
68:	learn: 13.7050863	total: 1.85s	remaining: 829ms
69:	learn: 13.5742501	total: 1.87s	remaining: 802ms
70:	learn: 13.4851362	total: 1.9s	remaining: 774ms
71:	learn: 13.3300610	total: 1.92s	remaining: 747ms
72:	learn: 13.2223060	total: 1.95s	remaining: 721ms
73:	learn: 13.0706731	total: 1.99s	remaining: 699ms
74:	learn: 12.9178099	total: 2.02s	remaining: 673ms
75:	learn: 12.7954645	total: 2.04s	remaining: 646ms
76:	learn: 12.7133688	total: 2.07s	remaining: 619ms
77:	learn: 12.5745537	total: 2.1s	remaining: 591ms
78:	learn: 12.4765302	total: 2.12s	remaining: 564ms
79:	learn: 12.3609145	total: 2.15s	remaining: 536ms
80:	learn: 12.2437759	total: 2.17s	remaining: 509ms
81:	learn: 12.1583763	total: 2.21s	remaining: 485ms
82:	learn: 12.0202500	total: 2.23s	remaining: 457ms
83:	learn: 11.9125166	total: 2.26s	remaining: 430ms
84:	learn: 11.8100729	total: 2.28s	remaining: 403ms
85:	learn: 11.7509521	total: 2.31s	remaining: 376ms
86:	learn: 11.6448436	total: 2.33s	remaining: 349ms
87:	learn: 11.5550170	total: 2.36s	remaining: 322ms
88:	learn: 11.4624708	total: 2.38s	remaining: 295ms
89:	learn: 11.3547761	total: 2.42s	remaining: 269ms
90:	learn: 11.2513910	total: 2.45s	remaining: 242ms
91:	learn: 11.1414483	total: 2.47s	remaining: 215ms
92:	learn: 11.0742264	total: 2.5s	remaining: 188ms
93:	learn: 10.9721772	total: 2.53s	remaining: 161ms
94:	learn: 10.9118054	total: 2.55s	remaining: 134ms
95:	learn: 10.8465290	total: 2.58s	remaining: 107ms
96:	learn: 10.7451745	total: 2.6s	remaining: 80.4ms
97:	learn: 10.6173565	total: 2.63s	remaining: 53.8ms
98:	learn: 10.5562158	total: 2.66s	remaining: 26.9ms
99:	learn: 10.4564960	total: 2.69s	remaining: 0us
0:	learn: 27.8909741	total: 22.7ms	remaining: 6.8s
1:	learn: 27.7454242	total: 45.8ms	remaining: 6.82s
2:	learn: 27.6111999	total: 69.4ms	remaining: 6.87s
3:	learn: 27.4600863	total: 109ms	remaining: 8.04s
4:	learn: 27.3260335	total: 135ms	remaining: 7.94s
5:	learn: 27.1985740	total: 161ms	remaining: 7.9s
6:	learn: 27.0660624	total: 186ms	remaining: 7.78s
7:	learn: 26.9502628	total: 211ms	remaining: 7.71s
8:	learn: 26.8402973	total: 235ms	remaining: 7.59s
9:	learn: 26.7116533	total: 258ms	remaining: 7.48s
10:	learn: 26.5912304	total: 283ms	remaining: 7.44s
11:	learn: 26.4818560	total: 310ms	remaining: 7.43s
12:	learn: 26.3630522	total: 342ms	remaining: 7.56s
13:	learn: 26.2428640	total: 378ms	remaining: 7.73s
14:	learn: 26.1282325	total: 404ms	remaining: 7.68s
15:	learn: 26.0091410	total: 428ms	remaining: 7.6s
16:	learn: 25.8970089	total: 455ms	remaining: 7.57s
17:	learn: 25.7757055	total: 479ms	remaining: 7.51s
18:	learn: 25.6496251	total: 504ms	remaining: 7.46s
19:	learn: 25.5484901	total: 536ms	remaining: 7.5s
20:	learn: 25.4310248	total: 565ms	remaining: 7.5s
21:	learn: 25.3060633	total: 590ms	remaining: 7.45s
22:	learn: 25.1911135	total: 615ms	remaining: 7.41s
23:	learn: 25.0751115	total: 650ms	remaining: 7.47s
24:	learn: 24.9785444	total: 673ms	remaining: 7.41s
25:	learn: 24.8595879	total: 695ms	remaining: 7.32s
26:	learn: 24.7426277	total: 719ms	remaining: 7.27s
27:	learn: 24.6393116	total: 722ms	remaining: 7.01s
28:	learn: 24.5376847	total: 747ms	remaining: 6.98s
29:	learn: 24.4319233	total: 782ms	remaining: 7.04s
30:	learn: 24.3179642	total: 808ms	remaining: 7.01s
31:	learn: 24.2277640	total: 834ms	remaining: 6.98s
32:	learn: 24.1175303	total: 859ms	remaining: 6.95s
33:	learn: 24.0025830	total: 893ms	remaining: 6.99s
34:	learn: 23.8933138	total: 916ms	remaining: 6.94s
35:	learn: 23.7978848	total: 939ms	remaining: 6.88s
36:	learn: 23.6976272	total: 964ms	remaining: 6.85s
37:	learn: 23.5812052	total: 989ms	remaining: 6.82s
38:	learn: 23.4803621	total: 1.02s	remaining: 6.86s
39:	learn: 23.3838152	total: 1.05s	remaining: 6.83s
40:	learn: 23.2868223	total: 1.08s	remaining: 6.8s
41:	learn: 23.1851207	total: 1.1s	remaining: 6.77s
42:	learn: 23.0850575	total: 1.13s	remaining: 6.74s
43:	learn: 22.9941965	total: 1.16s	remaining: 6.75s
44:	learn: 22.8932530	total: 1.19s	remaining: 6.73s
45:	learn: 22.8049000	total: 1.22s	remaining: 6.73s
46:	learn: 22.7182127	total: 1.24s	remaining: 6.7s
47:	learn: 22.6270080	total: 1.27s	remaining: 6.67s
48:	learn: 22.5359862	total: 1.29s	remaining: 6.64s
49:	learn: 22.4435640	total: 1.32s	remaining: 6.61s
50:	learn: 22.3511768	total: 1.34s	remaining: 6.57s
51:	learn: 22.2533392	total: 1.37s	remaining: 6.53s
52:	learn: 22.1598144	total: 1.39s	remaining: 6.5s
53:	learn: 22.0687311	total: 1.43s	remaining: 6.53s
54:	learn: 21.9783996	total: 1.46s	remaining: 6.51s
55:	learn: 21.8874106	total: 1.49s	remaining: 6.48s
56:	learn: 21.8003765	total: 1.51s	remaining: 6.44s
57:	learn: 21.6994378	total: 1.54s	remaining: 6.41s
58:	learn: 21.6017747	total: 1.56s	remaining: 6.38s
59:	learn: 21.5010446	total: 1.58s	remaining: 6.34s
60:	learn: 21.3964987	total: 1.61s	remaining: 6.33s
61:	learn: 21.2914416	total: 1.64s	remaining: 6.31s
62:	learn: 21.1944430	total: 1.67s	remaining: 6.28s
63:	learn: 21.0964015	total: 1.7s	remaining: 6.28s
64:	learn: 21.0103359	total: 1.73s	remaining: 6.25s
65:	learn: 20.9282967	total: 1.75s	remaining: 6.21s
66:	learn: 20.8538000	total: 1.78s	remaining: 6.18s
67:	learn: 20.7728703	total: 1.8s	remaining: 6.15s
68:	learn: 20.6867426	total: 1.83s	remaining: 6.14s
69:	learn: 20.5945815	total: 1.86s	remaining: 6.12s
70:	learn: 20.5135483	total: 1.89s	remaining: 6.09s
71:	learn: 20.4247509	total: 1.91s	remaining: 6.06s
72:	learn: 20.3179450	total: 1.94s	remaining: 6.03s
73:	learn: 20.2381739	total: 1.97s	remaining: 6.02s
74:	learn: 20.1427785	total: 1.99s	remaining: 5.98s
75:	learn: 20.0577678	total: 2.02s	remaining: 5.95s
76:	learn: 19.9895777	total: 2.05s	remaining: 5.93s
77:	learn: 19.9049210	total: 2.08s	remaining: 5.92s
78:	learn: 19.8195140	total: 2.1s	remaining: 5.89s
79:	learn: 19.7332657	total: 2.13s	remaining: 5.86s
80:	learn: 19.6510418	total: 2.15s	remaining: 5.83s
81:	learn: 19.5727878	total: 2.18s	remaining: 5.79s
82:	learn: 19.5171316	total: 2.21s	remaining: 5.77s
83:	learn: 19.4470417	total: 2.23s	remaining: 5.74s
84:	learn: 19.3651617	total: 2.26s	remaining: 5.72s
85:	learn: 19.2864544	total: 2.3s	remaining: 5.71s
86:	learn: 19.2079143	total: 2.32s	remaining: 5.69s
87:	learn: 19.1337475	total: 2.35s	remaining: 5.65s
88:	learn: 19.0524248	total: 2.37s	remaining: 5.62s
89:	learn: 18.9875806	total: 2.4s	remaining: 5.59s
90:	learn: 18.9135796	total: 2.42s	remaining: 5.56s
91:	learn: 18.8435998	total: 2.45s	remaining: 5.53s
92:	learn: 18.7754418	total: 2.48s	remaining: 5.53s
93:	learn: 18.6989733	total: 2.52s	remaining: 5.51s
94:	learn: 18.6253442	total: 2.54s	remaining: 5.48s
95:	learn: 18.5546084	total: 2.56s	remaining: 5.45s
96:	learn: 18.4860831	total: 2.59s	remaining: 5.42s
97:	learn: 18.4048784	total: 2.61s	remaining: 5.39s
98:	learn: 18.3325619	total: 2.64s	remaining: 5.35s
99:	learn: 18.2708179	total: 2.66s	remaining: 5.32s
100:	learn: 18.1949234	total: 2.68s	remaining: 5.29s
101:	learn: 18.1209623	total: 2.72s	remaining: 5.28s
102:	learn: 18.0439521	total: 2.75s	remaining: 5.27s
103:	learn: 17.9793178	total: 2.78s	remaining: 5.24s
104:	learn: 17.9200271	total: 2.8s	remaining: 5.21s
105:	learn: 17.8685025	total: 2.83s	remaining: 5.17s
106:	learn: 17.8030415	total: 2.85s	remaining: 5.14s
107:	learn: 17.7368977	total: 2.88s	remaining: 5.12s
108:	learn: 17.6750310	total: 2.9s	remaining: 5.09s
109:	learn: 17.6085180	total: 2.94s	remaining: 5.07s
110:	learn: 17.5476542	total: 2.96s	remaining: 5.04s
111:	learn: 17.4809765	total: 2.99s	remaining: 5.01s
112:	learn: 17.4231096	total: 3.02s	remaining: 5s
113:	learn: 17.3581008	total: 3.04s	remaining: 4.96s
114:	learn: 17.2955719	total: 3.07s	remaining: 4.93s
115:	learn: 17.2257082	total: 3.09s	remaining: 4.9s
116:	learn: 17.1668254	total: 3.12s	remaining: 4.87s
117:	learn: 17.1122745	total: 3.15s	remaining: 4.85s
118:	learn: 17.0386468	total: 3.17s	remaining: 4.83s
119:	learn: 16.9863122	total: 3.2s	remaining: 4.8s
120:	learn: 16.9295516	total: 3.22s	remaining: 4.77s
121:	learn: 16.8683764	total: 3.26s	remaining: 4.75s
122:	learn: 16.8214061	total: 3.28s	remaining: 4.72s
123:	learn: 16.7643379	total: 3.31s	remaining: 4.69s
124:	learn: 16.7080302	total: 3.33s	remaining: 4.66s
125:	learn: 16.6507689	total: 3.36s	remaining: 4.64s
126:	learn: 16.5941589	total: 3.39s	remaining: 4.61s
127:	learn: 16.5399113	total: 3.41s	remaining: 4.59s
128:	learn: 16.4839662	total: 3.44s	remaining: 4.56s
129:	learn: 16.4314318	total: 3.46s	remaining: 4.53s
130:	learn: 16.3733374	total: 3.49s	remaining: 4.5s
131:	learn: 16.3224352	total: 3.52s	remaining: 4.48s
132:	learn: 16.2632236	total: 3.54s	remaining: 4.45s
133:	learn: 16.1988942	total: 3.58s	remaining: 4.43s
134:	learn: 16.1293176	total: 3.6s	remaining: 4.4s
135:	learn: 16.0733899	total: 3.63s	remaining: 4.37s
136:	learn: 16.0158498	total: 3.65s	remaining: 4.35s
137:	learn: 15.9591967	total: 3.68s	remaining: 4.32s
138:	learn: 15.9052493	total: 3.71s	remaining: 4.29s
139:	learn: 15.8564159	total: 3.73s	remaining: 4.26s
140:	learn: 15.7936916	total: 3.75s	remaining: 4.23s
141:	learn: 15.7367541	total: 3.79s	remaining: 4.22s
142:	learn: 15.6804129	total: 3.82s	remaining: 4.19s
143:	learn: 15.6256309	total: 3.85s	remaining: 4.17s
144:	learn: 15.5736025	total: 3.87s	remaining: 4.14s
145:	learn: 15.5203399	total: 3.9s	remaining: 4.11s
146:	learn: 15.4718595	total: 3.92s	remaining: 4.08s
147:	learn: 15.4311226	total: 3.94s	remaining: 4.05s
148:	learn: 15.3907562	total: 3.96s	remaining: 4.02s
149:	learn: 15.3310063	total: 4s	remaining: 4s
150:	learn: 15.2806596	total: 4.03s	remaining: 3.97s
151:	learn: 15.2374668	total: 4.06s	remaining: 3.95s
152:	learn: 15.2101464	total: 4.06s	remaining: 3.9s
153:	learn: 15.1607573	total: 4.09s	remaining: 3.87s
154:	learn: 15.1134025	total: 4.11s	remaining: 3.85s
155:	learn: 15.0676613	total: 4.13s	remaining: 3.82s
156:	learn: 15.0264233	total: 4.16s	remaining: 3.79s
157:	learn: 14.9765283	total: 4.19s	remaining: 3.76s
158:	learn: 14.9267361	total: 4.22s	remaining: 3.74s
159:	learn: 14.8792787	total: 4.25s	remaining: 3.72s
160:	learn: 14.8339292	total: 4.27s	remaining: 3.69s
161:	learn: 14.7850928	total: 4.31s	remaining: 3.67s
162:	learn: 14.7346218	total: 4.33s	remaining: 3.64s
163:	learn: 14.6875906	total: 4.35s	remaining: 3.61s
164:	learn: 14.6412434	total: 4.38s	remaining: 3.58s
165:	learn: 14.5988877	total: 4.4s	remaining: 3.55s
166:	learn: 14.5478790	total: 4.43s	remaining: 3.53s
167:	learn: 14.4967177	total: 4.46s	remaining: 3.51s
168:	learn: 14.4421400	total: 4.49s	remaining: 3.48s
169:	learn: 14.3987778	total: 4.51s	remaining: 3.45s
170:	learn: 14.3531038	total: 4.54s	remaining: 3.42s
171:	learn: 14.3106522	total: 4.57s	remaining: 3.4s
172:	learn: 14.2686857	total: 4.59s	remaining: 3.37s
173:	learn: 14.2235837	total: 4.62s	remaining: 3.34s
174:	learn: 14.1805323	total: 4.64s	remaining: 3.32s
175:	learn: 14.1332040	total: 4.68s	remaining: 3.29s
176:	learn: 14.0968880	total: 4.7s	remaining: 3.27s
177:	learn: 14.0622759	total: 4.73s	remaining: 3.24s
178:	learn: 14.0319541	total: 4.75s	remaining: 3.21s
179:	learn: 13.9882771	total: 4.78s	remaining: 3.18s
180:	learn: 13.9496593	total: 4.8s	remaining: 3.16s
181:	learn: 13.9034141	total: 4.83s	remaining: 3.13s
182:	learn: 13.8597071	total: 4.87s	remaining: 3.11s
183:	learn: 13.8154296	total: 4.89s	remaining: 3.08s
184:	learn: 13.7751533	total: 4.92s	remaining: 3.06s
185:	learn: 13.7294220	total: 4.94s	remaining: 3.03s
186:	learn: 13.6908603	total: 4.96s	remaining: 3s
187:	learn: 13.6533068	total: 4.99s	remaining: 2.97s
188:	learn: 13.6186138	total: 5.01s	remaining: 2.94s
189:	learn: 13.5810553	total: 5.04s	remaining: 2.92s
190:	learn: 13.5378988	total: 5.07s	remaining: 2.89s
191:	learn: 13.4891599	total: 5.11s	remaining: 2.87s
192:	learn: 13.4482041	total: 5.13s	remaining: 2.84s
193:	learn: 13.4166054	total: 5.15s	remaining: 2.82s
194:	learn: 13.3823696	total: 5.18s	remaining: 2.79s
195:	learn: 13.3426564	total: 5.2s	remaining: 2.76s
196:	learn: 13.3012579	total: 5.23s	remaining: 2.73s
197:	learn: 13.2625524	total: 5.25s	remaining: 2.71s
198:	learn: 13.2251981	total: 5.29s	remaining: 2.68s
199:	learn: 13.1861520	total: 5.31s	remaining: 2.66s
200:	learn: 13.1502120	total: 5.34s	remaining: 2.63s
201:	learn: 13.1138371	total: 5.37s	remaining: 2.61s
202:	learn: 13.0770461	total: 5.4s	remaining: 2.58s
203:	learn: 13.0417879	total: 5.42s	remaining: 2.55s
204:	learn: 13.0006414	total: 5.45s	remaining: 2.52s
205:	learn: 12.9646369	total: 5.47s	remaining: 2.5s
206:	learn: 12.9276921	total: 5.5s	remaining: 2.47s
207:	learn: 12.8939897	total: 5.53s	remaining: 2.44s
208:	learn: 12.8655136	total: 5.55s	remaining: 2.42s
209:	learn: 12.8335451	total: 5.58s	remaining: 2.39s
210:	learn: 12.8006136	total: 5.61s	remaining: 2.37s
211:	learn: 12.7636296	total: 5.63s	remaining: 2.34s
212:	learn: 12.7280060	total: 5.66s	remaining: 2.31s
213:	learn: 12.6955534	total: 5.68s	remaining: 2.28s
214:	learn: 12.6515516	total: 5.71s	remaining: 2.26s
215:	learn: 12.6171156	total: 5.74s	remaining: 2.23s
216:	learn: 12.5794917	total: 5.76s	remaining: 2.2s
217:	learn: 12.5480598	total: 5.79s	remaining: 2.18s
218:	learn: 12.5146424	total: 5.82s	remaining: 2.15s
219:	learn: 12.4826603	total: 5.84s	remaining: 2.12s
220:	learn: 12.4551083	total: 5.87s	remaining: 2.1s
221:	learn: 12.4210815	total: 5.89s	remaining: 2.07s
222:	learn: 12.3944277	total: 5.93s	remaining: 2.05s
223:	learn: 12.3568814	total: 5.96s	remaining: 2.02s
224:	learn: 12.3274830	total: 5.98s	remaining: 1.99s
225:	learn: 12.2947157	total: 6.01s	remaining: 1.97s
226:	learn: 12.2549787	total: 6.03s	remaining: 1.94s
227:	learn: 12.2190737	total: 6.06s	remaining: 1.91s
228:	learn: 12.1830419	total: 6.08s	remaining: 1.88s
229:	learn: 12.1535286	total: 6.11s	remaining: 1.86s
230:	learn: 12.1209633	total: 6.14s	remaining: 1.83s
231:	learn: 12.1011719	total: 6.17s	remaining: 1.81s
232:	learn: 12.0655225	total: 6.2s	remaining: 1.78s
233:	learn: 12.0339911	total: 6.22s	remaining: 1.75s
234:	learn: 12.0009720	total: 6.25s	remaining: 1.73s
235:	learn: 11.9683468	total: 6.28s	remaining: 1.7s
236:	learn: 11.9414512	total: 6.3s	remaining: 1.67s
237:	learn: 11.9143496	total: 6.33s	remaining: 1.65s
238:	learn: 11.8813757	total: 6.36s	remaining: 1.62s
239:	learn: 11.8512196	total: 6.39s	remaining: 1.6s
240:	learn: 11.8188680	total: 6.42s	remaining: 1.57s
241:	learn: 11.7872942	total: 6.45s	remaining: 1.54s
242:	learn: 11.7584780	total: 6.47s	remaining: 1.52s
243:	learn: 11.7286464	total: 6.5s	remaining: 1.49s
244:	learn: 11.7065328	total: 6.52s	remaining: 1.46s
245:	learn: 11.6742266	total: 6.55s	remaining: 1.44s
246:	learn: 11.6358845	total: 6.58s	remaining: 1.41s
247:	learn: 11.6053686	total: 6.6s	remaining: 1.38s
248:	learn: 11.5799981	total: 6.63s	remaining: 1.36s
249:	learn: 11.5564368	total: 6.66s	remaining: 1.33s
250:	learn: 11.5420498	total: 6.69s	remaining: 1.3s
251:	learn: 11.5106262	total: 6.71s	remaining: 1.28s
252:	learn: 11.4806808	total: 6.74s	remaining: 1.25s
253:	learn: 11.4566114	total: 6.76s	remaining: 1.22s
254:	learn: 11.4254774	total: 6.79s	remaining: 1.2s
255:	learn: 11.3978729	total: 6.82s	remaining: 1.17s
256:	learn: 11.3657161	total: 6.84s	remaining: 1.15s
257:	learn: 11.3355668	total: 6.87s	remaining: 1.12s
258:	learn: 11.3040620	total: 6.9s	remaining: 1.09s
259:	learn: 11.2771416	total: 6.93s	remaining: 1.07s
260:	learn: 11.2504011	total: 6.95s	remaining: 1.04s
261:	learn: 11.2255899	total: 6.98s	remaining: 1.01s
262:	learn: 11.1923276	total: 7s	remaining: 985ms
263:	learn: 11.1664304	total: 7.03s	remaining: 959ms
264:	learn: 11.1395918	total: 7.06s	remaining: 932ms
265:	learn: 11.1183251	total: 7.08s	remaining: 905ms
266:	learn: 11.0967429	total: 7.11s	remaining: 879ms
267:	learn: 11.0655190	total: 7.13s	remaining: 852ms
268:	learn: 11.0363278	total: 7.16s	remaining: 825ms
269:	learn: 11.0053978	total: 7.19s	remaining: 799ms
270:	learn: 10.9769137	total: 7.21s	remaining: 772ms
271:	learn: 10.9560195	total: 7.25s	remaining: 746ms
272:	learn: 10.9347914	total: 7.28s	remaining: 720ms
273:	learn: 10.9105501	total: 7.3s	remaining: 693ms
274:	learn: 10.8888259	total: 7.32s	remaining: 666ms
275:	learn: 10.8670844	total: 7.35s	remaining: 639ms
276:	learn: 10.8443821	total: 7.37s	remaining: 612ms
277:	learn: 10.8103858	total: 7.39s	remaining: 585ms
278:	learn: 10.7822665	total: 7.42s	remaining: 558ms
279:	learn: 10.7558379	total: 7.45s	remaining: 532ms
280:	learn: 10.7323901	total: 7.48s	remaining: 506ms
281:	learn: 10.7091335	total: 7.51s	remaining: 479ms
282:	learn: 10.6833968	total: 7.53s	remaining: 453ms
283:	learn: 10.6578926	total: 7.56s	remaining: 426ms
284:	learn: 10.6362577	total: 7.58s	remaining: 399ms
285:	learn: 10.6113525	total: 7.61s	remaining: 372ms
286:	learn: 10.5900301	total: 7.63s	remaining: 346ms
287:	learn: 10.5725049	total: 7.66s	remaining: 319ms
288:	learn: 10.5490299	total: 7.69s	remaining: 293ms
289:	learn: 10.5223988	total: 7.72s	remaining: 266ms
290:	learn: 10.4979486	total: 7.74s	remaining: 240ms
291:	learn: 10.4774612	total: 7.75s	remaining: 212ms
292:	learn: 10.4538360	total: 7.77s	remaining: 186ms
293:	learn: 10.4239842	total: 7.8s	remaining: 159ms
294:	learn: 10.4055855	total: 7.82s	remaining: 133ms
295:	learn: 10.3872750	total: 7.84s	remaining: 106ms
296:	learn: 10.3614579	total: 7.87s	remaining: 79.5ms
297:	learn: 10.3366670	total: 7.89s	remaining: 53ms
298:	learn: 10.3100256	total: 7.93s	remaining: 26.5ms
299:	learn: 10.2813491	total: 7.96s	remaining: 0us
0:	learn: 43.7152227	total: 21.6ms	remaining: 6.46s
1:	learn: 43.4541703	total: 45.8ms	remaining: 6.83s
2:	learn: 43.1578143	total: 70ms	remaining: 6.93s
3:	learn: 42.8783278	total: 103ms	remaining: 7.62s
4:	learn: 42.6072908	total: 130ms	remaining: 7.65s
5:	learn: 42.3444208	total: 156ms	remaining: 7.64s
6:	learn: 42.0672063	total: 182ms	remaining: 7.6s
7:	learn: 41.7932543	total: 208ms	remaining: 7.58s
8:	learn: 41.5306590	total: 232ms	remaining: 7.51s
9:	learn: 41.2812169	total: 266ms	remaining: 7.72s
10:	learn: 41.0331540	total: 298ms	remaining: 7.83s
11:	learn: 40.8231308	total: 328ms	remaining: 7.88s
12:	learn: 40.5899007	total: 354ms	remaining: 7.8s
13:	learn: 40.3346026	total: 378ms	remaining: 7.73s
14:	learn: 40.1139803	total: 404ms	remaining: 7.67s
15:	learn: 39.8388121	total: 430ms	remaining: 7.63s
16:	learn: 39.5736935	total: 453ms	remaining: 7.55s
17:	learn: 39.3283794	total: 478ms	remaining: 7.49s
18:	learn: 39.1203770	total: 505ms	remaining: 7.46s
19:	learn: 38.8686340	total: 543ms	remaining: 7.6s
20:	learn: 38.6284119	total: 568ms	remaining: 7.54s
21:	learn: 38.3922159	total: 592ms	remaining: 7.48s
22:	learn: 38.1843490	total: 618ms	remaining: 7.45s
23:	learn: 37.9201544	total: 641ms	remaining: 7.38s
24:	learn: 37.7010071	total: 666ms	remaining: 7.32s
25:	learn: 37.4916719	total: 692ms	remaining: 7.29s
26:	learn: 37.2493473	total: 716ms	remaining: 7.24s
27:	learn: 37.0272256	total: 720ms	remaining: 6.99s
28:	learn: 36.7936594	total: 752ms	remaining: 7.03s
29:	learn: 36.5622783	total: 785ms	remaining: 7.06s
30:	learn: 36.3206995	total: 810ms	remaining: 7.03s
31:	learn: 36.0921866	total: 835ms	remaining: 6.99s
32:	learn: 35.8568426	total: 860ms	remaining: 6.96s
33:	learn: 35.6642425	total: 882ms	remaining: 6.9s
34:	learn: 35.4602687	total: 906ms	remaining: 6.86s
35:	learn: 35.2260548	total: 931ms	remaining: 6.83s
36:	learn: 35.0250404	total: 969ms	remaining: 6.89s
37:	learn: 34.7954201	total: 996ms	remaining: 6.87s
38:	learn: 34.5616477	total: 1.02s	remaining: 6.83s
39:	learn: 34.3769833	total: 1.05s	remaining: 6.85s
40:	learn: 34.1782144	total: 1.08s	remaining: 6.81s
41:	learn: 33.9982646	total: 1.1s	remaining: 6.77s
42:	learn: 33.7930222	total: 1.13s	remaining: 6.74s
43:	learn: 33.6060625	total: 1.16s	remaining: 6.75s
44:	learn: 33.4242352	total: 1.19s	remaining: 6.73s
45:	learn: 33.2274741	total: 1.21s	remaining: 6.7s
46:	learn: 33.0522381	total: 1.24s	remaining: 6.67s
47:	learn: 32.8691924	total: 1.26s	remaining: 6.64s
48:	learn: 32.6903220	total: 1.29s	remaining: 6.6s
49:	learn: 32.5203590	total: 1.32s	remaining: 6.59s
50:	learn: 32.3218264	total: 1.34s	remaining: 6.55s
51:	learn: 32.1326864	total: 1.37s	remaining: 6.52s
52:	learn: 31.9431774	total: 1.4s	remaining: 6.53s
53:	learn: 31.7713238	total: 1.43s	remaining: 6.51s
54:	learn: 31.6084772	total: 1.45s	remaining: 6.48s
55:	learn: 31.4319830	total: 1.48s	remaining: 6.44s
56:	learn: 31.2348926	total: 1.5s	remaining: 6.41s
57:	learn: 31.0725808	total: 1.52s	remaining: 6.37s
58:	learn: 30.8961475	total: 1.55s	remaining: 6.33s
59:	learn: 30.7313327	total: 1.58s	remaining: 6.33s
60:	learn: 30.5547997	total: 1.61s	remaining: 6.32s
61:	learn: 30.3898331	total: 1.64s	remaining: 6.3s
62:	learn: 30.2020504	total: 1.67s	remaining: 6.26s
63:	learn: 30.0345876	total: 1.69s	remaining: 6.23s
64:	learn: 29.9019760	total: 1.72s	remaining: 6.2s
65:	learn: 29.7335152	total: 1.74s	remaining: 6.17s
66:	learn: 29.5869773	total: 1.76s	remaining: 6.13s
67:	learn: 29.4481027	total: 1.79s	remaining: 6.1s
68:	learn: 29.2982753	total: 1.82s	remaining: 6.1s
69:	learn: 29.1351630	total: 1.85s	remaining: 6.09s
70:	learn: 29.0085567	total: 1.88s	remaining: 6.05s
71:	learn: 28.8581541	total: 1.9s	remaining: 6.02s
72:	learn: 28.7113567	total: 1.93s	remaining: 5.99s
73:	learn: 28.5624552	total: 1.95s	remaining: 5.96s
74:	learn: 28.4154962	total: 1.98s	remaining: 5.93s
75:	learn: 28.2695903	total: 1.98s	remaining: 5.83s
76:	learn: 28.1120360	total: 2s	remaining: 5.8s
77:	learn: 27.9649546	total: 2.03s	remaining: 5.77s
78:	learn: 27.8247227	total: 2.06s	remaining: 5.76s
79:	learn: 27.6732443	total: 2.09s	remaining: 5.76s
80:	learn: 27.5207411	total: 2.12s	remaining: 5.73s
81:	learn: 27.3675493	total: 2.14s	remaining: 5.7s
82:	learn: 27.2235515	total: 2.17s	remaining: 5.67s
83:	learn: 27.1024501	total: 2.19s	remaining: 5.64s
84:	learn: 26.9517795	total: 2.22s	remaining: 5.62s
85:	learn: 26.8209326	total: 2.24s	remaining: 5.59s
86:	learn: 26.6741987	total: 2.28s	remaining: 5.58s
87:	learn: 26.5456609	total: 2.3s	remaining: 5.55s
88:	learn: 26.4057263	total: 2.33s	remaining: 5.52s
89:	learn: 26.2892156	total: 2.36s	remaining: 5.51s
90:	learn: 26.1798472	total: 2.38s	remaining: 5.48s
91:	learn: 26.0588644	total: 2.41s	remaining: 5.45s
92:	learn: 25.9471232	total: 2.43s	remaining: 5.42s
93:	learn: 25.8112758	total: 2.46s	remaining: 5.39s
94:	learn: 25.6767187	total: 2.49s	remaining: 5.37s
95:	learn: 25.5524711	total: 2.52s	remaining: 5.35s
96:	learn: 25.4312648	total: 2.54s	remaining: 5.32s
97:	learn: 25.3010368	total: 2.57s	remaining: 5.29s
98:	learn: 25.1828003	total: 2.59s	remaining: 5.27s
99:	learn: 25.0729136	total: 2.62s	remaining: 5.25s
100:	learn: 24.9491417	total: 2.65s	remaining: 5.22s
101:	learn: 24.8375479	total: 2.67s	remaining: 5.19s
102:	learn: 24.7258715	total: 2.71s	remaining: 5.17s
103:	learn: 24.6132311	total: 2.73s	remaining: 5.15s
104:	learn: 24.4911063	total: 2.76s	remaining: 5.12s
105:	learn: 24.3655873	total: 2.78s	remaining: 5.09s
106:	learn: 24.2576341	total: 2.81s	remaining: 5.06s
107:	learn: 24.1521045	total: 2.83s	remaining: 5.04s
108:	learn: 24.0283222	total: 2.86s	remaining: 5s
109:	learn: 23.9093633	total: 2.89s	remaining: 4.99s
110:	learn: 23.7875690	total: 2.92s	remaining: 4.97s
111:	learn: 23.6743709	total: 2.94s	remaining: 4.94s
112:	learn: 23.5794434	total: 2.97s	remaining: 4.91s
113:	learn: 23.4721902	total: 3s	remaining: 4.89s
114:	learn: 23.3737227	total: 3.02s	remaining: 4.86s
115:	learn: 23.2685547	total: 3.04s	remaining: 4.83s
116:	learn: 23.1632988	total: 3.07s	remaining: 4.8s
117:	learn: 23.0591176	total: 3.09s	remaining: 4.77s
118:	learn: 22.9710342	total: 3.13s	remaining: 4.77s
119:	learn: 22.8518610	total: 3.16s	remaining: 4.74s
120:	learn: 22.7571658	total: 3.19s	remaining: 4.71s
121:	learn: 22.6476333	total: 3.21s	remaining: 4.69s
122:	learn: 22.5406444	total: 3.24s	remaining: 4.66s
123:	learn: 22.4481789	total: 3.26s	remaining: 4.63s
124:	learn: 22.3371412	total: 3.28s	remaining: 4.59s
125:	learn: 22.2363838	total: 3.31s	remaining: 4.57s
126:	learn: 22.1424569	total: 3.34s	remaining: 4.55s
127:	learn: 22.0405435	total: 3.37s	remaining: 4.52s
128:	learn: 21.9560873	total: 3.4s	remaining: 4.5s
129:	learn: 21.8863114	total: 3.42s	remaining: 4.48s
130:	learn: 21.7920659	total: 3.45s	remaining: 4.45s
131:	learn: 21.6932516	total: 3.47s	remaining: 4.42s
132:	learn: 21.5922382	total: 3.5s	remaining: 4.39s
133:	learn: 21.5161138	total: 3.52s	remaining: 4.36s
134:	learn: 21.4223608	total: 3.55s	remaining: 4.34s
135:	learn: 21.3175823	total: 3.58s	remaining: 4.32s
136:	learn: 21.2307076	total: 3.61s	remaining: 4.29s
137:	learn: 21.1472687	total: 3.63s	remaining: 4.26s
138:	learn: 21.0453028	total: 3.67s	remaining: 4.25s
139:	learn: 20.9646544	total: 3.69s	remaining: 4.22s
140:	learn: 20.8732575	total: 3.71s	remaining: 4.19s
141:	learn: 20.7811458	total: 3.74s	remaining: 4.16s
142:	learn: 20.6980385	total: 3.76s	remaining: 4.13s
143:	learn: 20.6161666	total: 3.8s	remaining: 4.11s
144:	learn: 20.5217631	total: 3.83s	remaining: 4.09s
145:	learn: 20.4497223	total: 3.85s	remaining: 4.06s
146:	learn: 20.3642928	total: 3.88s	remaining: 4.03s
147:	learn: 20.2886195	total: 3.9s	remaining: 4.01s
148:	learn: 20.2031657	total: 3.93s	remaining: 3.98s
149:	learn: 20.1263557	total: 3.96s	remaining: 3.96s
150:	learn: 20.0547427	total: 3.98s	remaining: 3.93s
151:	learn: 19.9773344	total: 4.02s	remaining: 3.91s
152:	learn: 19.9028201	total: 4.04s	remaining: 3.88s
153:	learn: 19.8160522	total: 4.07s	remaining: 3.85s
154:	learn: 19.7345351	total: 4.09s	remaining: 3.83s
155:	learn: 19.6586410	total: 4.12s	remaining: 3.8s
156:	learn: 19.5844066	total: 4.14s	remaining: 3.77s
157:	learn: 19.5059690	total: 4.17s	remaining: 3.74s
158:	learn: 19.4345665	total: 4.21s	remaining: 3.73s
159:	learn: 19.3729247	total: 4.23s	remaining: 3.71s
160:	learn: 19.2940290	total: 4.26s	remaining: 3.68s
161:	learn: 19.2361152	total: 4.29s	remaining: 3.65s
162:	learn: 19.1564311	total: 4.31s	remaining: 3.62s
163:	learn: 19.0868280	total: 4.33s	remaining: 3.59s
164:	learn: 19.0102994	total: 4.36s	remaining: 3.56s
165:	learn: 18.9245210	total: 4.38s	remaining: 3.54s
166:	learn: 18.8498288	total: 4.41s	remaining: 3.51s
167:	learn: 18.7766690	total: 4.45s	remaining: 3.49s
168:	learn: 18.7082496	total: 4.47s	remaining: 3.47s
169:	learn: 18.6351920	total: 4.5s	remaining: 3.44s
170:	learn: 18.5623213	total: 4.52s	remaining: 3.41s
171:	learn: 18.4784598	total: 4.55s	remaining: 3.38s
172:	learn: 18.4047687	total: 4.57s	remaining: 3.35s
173:	learn: 18.3356706	total: 4.59s	remaining: 3.33s
174:	learn: 18.2673167	total: 4.62s	remaining: 3.3s
175:	learn: 18.1928824	total: 4.65s	remaining: 3.27s
176:	learn: 18.1268178	total: 4.68s	remaining: 3.25s
177:	learn: 18.0544238	total: 4.71s	remaining: 3.23s
178:	learn: 17.9860979	total: 4.73s	remaining: 3.2s
179:	learn: 17.9244440	total: 4.76s	remaining: 3.17s
180:	learn: 17.8535620	total: 4.78s	remaining: 3.15s
181:	learn: 17.7958165	total: 4.81s	remaining: 3.12s
182:	learn: 17.7402911	total: 4.83s	remaining: 3.09s
183:	learn: 17.6851908	total: 4.86s	remaining: 3.06s
184:	learn: 17.6130229	total: 4.89s	remaining: 3.04s
185:	learn: 17.5412491	total: 4.92s	remaining: 3.01s
186:	learn: 17.4843388	total: 4.94s	remaining: 2.99s
187:	learn: 17.4232451	total: 4.98s	remaining: 2.97s
188:	learn: 17.3547499	total: 5s	remaining: 2.94s
189:	learn: 17.3014574	total: 5.03s	remaining: 2.91s
190:	learn: 17.2424485	total: 5.05s	remaining: 2.88s
191:	learn: 17.1878263	total: 5.08s	remaining: 2.85s
192:	learn: 17.1228765	total: 5.11s	remaining: 2.83s
193:	learn: 17.0601899	total: 5.13s	remaining: 2.81s
194:	learn: 17.0056282	total: 5.16s	remaining: 2.78s
195:	learn: 16.9309201	total: 5.19s	remaining: 2.75s
196:	learn: 16.8679658	total: 5.21s	remaining: 2.73s
197:	learn: 16.8079830	total: 5.24s	remaining: 2.7s
198:	learn: 16.7623162	total: 5.27s	remaining: 2.67s
199:	learn: 16.7202834	total: 5.29s	remaining: 2.65s
200:	learn: 16.6719839	total: 5.32s	remaining: 2.62s
201:	learn: 16.6236626	total: 5.35s	remaining: 2.6s
202:	learn: 16.5619633	total: 5.38s	remaining: 2.57s
203:	learn: 16.5033532	total: 5.4s	remaining: 2.54s
204:	learn: 16.4507719	total: 5.43s	remaining: 2.52s
205:	learn: 16.4012674	total: 5.45s	remaining: 2.49s
206:	learn: 16.3533118	total: 5.49s	remaining: 2.47s
207:	learn: 16.2986397	total: 5.51s	remaining: 2.44s
208:	learn: 16.2420216	total: 5.54s	remaining: 2.41s
209:	learn: 16.1856617	total: 5.57s	remaining: 2.39s
210:	learn: 16.1342718	total: 5.6s	remaining: 2.36s
211:	learn: 16.0772431	total: 5.62s	remaining: 2.33s
212:	learn: 16.0318038	total: 5.65s	remaining: 2.31s
213:	learn: 15.9660557	total: 5.67s	remaining: 2.28s
214:	learn: 15.9154358	total: 5.69s	remaining: 2.25s
215:	learn: 15.8630892	total: 5.72s	remaining: 2.23s
216:	learn: 15.8050319	total: 5.76s	remaining: 2.2s
217:	learn: 15.7563904	total: 5.79s	remaining: 2.18s
218:	learn: 15.7074042	total: 5.81s	remaining: 2.15s
219:	learn: 15.6515231	total: 5.84s	remaining: 2.12s
220:	learn: 15.6030650	total: 5.86s	remaining: 2.09s
221:	learn: 15.5500827	total: 5.88s	remaining: 2.07s
222:	learn: 15.4972332	total: 5.91s	remaining: 2.04s
223:	learn: 15.4506449	total: 5.94s	remaining: 2.02s
224:	learn: 15.3972559	total: 5.97s	remaining: 1.99s
225:	learn: 15.3430402	total: 5.99s	remaining: 1.96s
226:	learn: 15.2962005	total: 6.03s	remaining: 1.94s
227:	learn: 15.2487710	total: 6.05s	remaining: 1.91s
228:	learn: 15.2053893	total: 6.08s	remaining: 1.88s
229:	learn: 15.1633951	total: 6.1s	remaining: 1.86s
230:	learn: 15.1202978	total: 6.13s	remaining: 1.83s
231:	learn: 15.0691662	total: 6.15s	remaining: 1.8s
232:	learn: 15.0158780	total: 6.18s	remaining: 1.78s
233:	learn: 14.9632329	total: 6.21s	remaining: 1.75s
234:	learn: 14.9179389	total: 6.24s	remaining: 1.72s
235:	learn: 14.8724464	total: 6.26s	remaining: 1.7s
236:	learn: 14.8205302	total: 6.29s	remaining: 1.67s
237:	learn: 14.7791401	total: 6.32s	remaining: 1.65s
238:	learn: 14.7253916	total: 6.34s	remaining: 1.62s
239:	learn: 14.6836545	total: 6.37s	remaining: 1.59s
240:	learn: 14.6415382	total: 6.4s	remaining: 1.57s
241:	learn: 14.5908296	total: 6.43s	remaining: 1.54s
242:	learn: 14.5476260	total: 6.45s	remaining: 1.51s
243:	learn: 14.5057459	total: 6.48s	remaining: 1.49s
244:	learn: 14.4612880	total: 6.5s	remaining: 1.46s
245:	learn: 14.4279319	total: 6.53s	remaining: 1.43s
246:	learn: 14.3795141	total: 6.56s	remaining: 1.41s
247:	learn: 14.3346521	total: 6.58s	remaining: 1.38s
248:	learn: 14.2915193	total: 6.62s	remaining: 1.35s
249:	learn: 14.2492833	total: 6.64s	remaining: 1.33s
250:	learn: 14.2124298	total: 6.67s	remaining: 1.3s
251:	learn: 14.1691629	total: 6.69s	remaining: 1.27s
252:	learn: 14.1238622	total: 6.72s	remaining: 1.25s
253:	learn: 14.0788315	total: 6.74s	remaining: 1.22s
254:	learn: 14.0341070	total: 6.77s	remaining: 1.19s
255:	learn: 13.9982762	total: 6.8s	remaining: 1.17s
256:	learn: 13.9618516	total: 6.83s	remaining: 1.14s
257:	learn: 13.9317416	total: 6.86s	remaining: 1.12s
258:	learn: 13.8904672	total: 6.88s	remaining: 1.09s
259:	learn: 13.8515162	total: 6.91s	remaining: 1.06s
260:	learn: 13.8084853	total: 6.93s	remaining: 1.03s
261:	learn: 13.7626436	total: 6.96s	remaining: 1.01s
262:	learn: 13.7219194	total: 6.98s	remaining: 982ms
263:	learn: 13.6813564	total: 7s	remaining: 955ms
264:	learn: 13.6476847	total: 7.04s	remaining: 930ms
265:	learn: 13.6026451	total: 7.07s	remaining: 904ms
266:	learn: 13.5628070	total: 7.1s	remaining: 877ms
267:	learn: 13.5267139	total: 7.12s	remaining: 850ms
268:	learn: 13.4901774	total: 7.14s	remaining: 823ms
269:	learn: 13.4509942	total: 7.17s	remaining: 797ms
270:	learn: 13.4052181	total: 7.19s	remaining: 770ms
271:	learn: 13.3725535	total: 7.22s	remaining: 743ms
272:	learn: 13.3414763	total: 7.25s	remaining: 717ms
273:	learn: 13.3030862	total: 7.28s	remaining: 691ms
274:	learn: 13.2668157	total: 7.31s	remaining: 664ms
275:	learn: 13.2223450	total: 7.34s	remaining: 638ms
276:	learn: 13.1804358	total: 7.37s	remaining: 612ms
277:	learn: 13.1399325	total: 7.39s	remaining: 585ms
278:	learn: 13.1033304	total: 7.42s	remaining: 558ms
279:	learn: 13.0669058	total: 7.44s	remaining: 532ms
280:	learn: 13.0384671	total: 7.48s	remaining: 506ms
281:	learn: 13.0037789	total: 7.5s	remaining: 479ms
282:	learn: 12.9645250	total: 7.53s	remaining: 452ms
283:	learn: 12.9241108	total: 7.55s	remaining: 426ms
284:	learn: 12.8975080	total: 7.58s	remaining: 399ms
285:	learn: 12.8572669	total: 7.61s	remaining: 373ms
286:	learn: 12.8247786	total: 7.63s	remaining: 346ms
287:	learn: 12.7991121	total: 7.66s	remaining: 319ms
288:	learn: 12.7592983	total: 7.69s	remaining: 293ms
289:	learn: 12.7299599	total: 7.72s	remaining: 266ms
290:	learn: 12.6996664	total: 7.74s	remaining: 239ms
291:	learn: 12.6676675	total: 7.77s	remaining: 213ms
292:	learn: 12.6304459	total: 7.79s	remaining: 186ms
293:	learn: 12.6000320	total: 7.82s	remaining: 159ms
294:	learn: 12.5671112	total: 7.85s	remaining: 133ms
295:	learn: 12.5371864	total: 7.87s	remaining: 106ms
296:	learn: 12.5078024	total: 7.9s	remaining: 79.8ms
297:	learn: 12.4765847	total: 7.93s	remaining: 53.2ms
298:	learn: 12.4387052	total: 7.96s	remaining: 26.6ms
299:	learn: 12.4034594	total: 7.98s	remaining: 0us
0:	learn: 47.2066051	total: 3.04ms	remaining: 910ms
1:	learn: 46.9322506	total: 26.8ms	remaining: 3.99s
2:	learn: 46.6606656	total: 51.6ms	remaining: 5.11s
3:	learn: 46.3774499	total: 85.7ms	remaining: 6.34s
4:	learn: 46.1018596	total: 116ms	remaining: 6.82s
5:	learn: 45.8731555	total: 150ms	remaining: 7.33s
6:	learn: 45.6007817	total: 175ms	remaining: 7.32s
7:	learn: 45.3453141	total: 200ms	remaining: 7.31s
8:	learn: 45.0827993	total: 225ms	remaining: 7.27s
9:	learn: 44.8482508	total: 250ms	remaining: 7.26s
10:	learn: 44.5829021	total: 284ms	remaining: 7.46s
11:	learn: 44.3343788	total: 314ms	remaining: 7.54s
12:	learn: 44.1081283	total: 340ms	remaining: 7.5s
13:	learn: 43.8942877	total: 365ms	remaining: 7.46s
14:	learn: 43.6535050	total: 391ms	remaining: 7.43s
15:	learn: 43.3693245	total: 423ms	remaining: 7.51s
16:	learn: 43.0936657	total: 448ms	remaining: 7.46s
17:	learn: 42.8660960	total: 472ms	remaining: 7.4s
18:	learn: 42.6627313	total: 498ms	remaining: 7.37s
19:	learn: 42.4070768	total: 531ms	remaining: 7.44s
20:	learn: 42.1987495	total: 557ms	remaining: 7.4s
21:	learn: 41.9619243	total: 582ms	remaining: 7.36s
22:	learn: 41.6939241	total: 607ms	remaining: 7.31s
23:	learn: 41.4865537	total: 632ms	remaining: 7.27s
24:	learn: 41.2577043	total: 656ms	remaining: 7.21s
25:	learn: 41.0242935	total: 688ms	remaining: 7.25s
26:	learn: 40.8070747	total: 715ms	remaining: 7.23s
27:	learn: 40.5633167	total: 749ms	remaining: 7.28s
28:	learn: 40.3605859	total: 775ms	remaining: 7.24s
29:	learn: 40.1289330	total: 800ms	remaining: 7.2s
30:	learn: 39.9162572	total: 825ms	remaining: 7.16s
31:	learn: 39.7112366	total: 850ms	remaining: 7.11s
32:	learn: 39.5150807	total: 873ms	remaining: 7.06s
33:	learn: 39.3167500	total: 897ms	remaining: 7.01s
34:	learn: 39.0982445	total: 935ms	remaining: 7.08s
35:	learn: 38.9300488	total: 962ms	remaining: 7.05s
36:	learn: 38.7137713	total: 987ms	remaining: 7.02s
37:	learn: 38.5619202	total: 1.01s	remaining: 6.97s
38:	learn: 38.3469017	total: 1.04s	remaining: 6.94s
39:	learn: 38.1799409	total: 1.06s	remaining: 6.89s
40:	learn: 38.0267019	total: 1.08s	remaining: 6.86s
41:	learn: 37.8292308	total: 1.11s	remaining: 6.82s
42:	learn: 37.6390603	total: 1.14s	remaining: 6.78s
43:	learn: 37.4462287	total: 1.17s	remaining: 6.8s
44:	learn: 37.2593518	total: 1.2s	remaining: 6.81s
45:	learn: 37.0460433	total: 1.23s	remaining: 6.78s
46:	learn: 36.9067561	total: 1.25s	remaining: 6.75s
47:	learn: 36.7368293	total: 1.28s	remaining: 6.72s
48:	learn: 36.5208932	total: 1.3s	remaining: 6.68s
49:	learn: 36.3434910	total: 1.33s	remaining: 6.65s
50:	learn: 36.1664717	total: 1.35s	remaining: 6.62s
51:	learn: 35.9767045	total: 1.39s	remaining: 6.62s
52:	learn: 35.8291871	total: 1.41s	remaining: 6.59s
53:	learn: 35.6334930	total: 1.44s	remaining: 6.55s
54:	learn: 35.4457979	total: 1.47s	remaining: 6.56s
55:	learn: 35.2876901	total: 1.5s	remaining: 6.51s
56:	learn: 35.0953841	total: 1.52s	remaining: 6.47s
57:	learn: 34.9349948	total: 1.54s	remaining: 6.43s
58:	learn: 34.7891044	total: 1.56s	remaining: 6.39s
59:	learn: 34.6307667	total: 1.59s	remaining: 6.38s
60:	learn: 34.4536402	total: 1.62s	remaining: 6.36s
61:	learn: 34.3115958	total: 1.65s	remaining: 6.33s
62:	learn: 34.1015612	total: 1.67s	remaining: 6.3s
63:	learn: 33.9396305	total: 1.7s	remaining: 6.26s
64:	learn: 33.7697101	total: 1.73s	remaining: 6.25s
65:	learn: 33.5942192	total: 1.75s	remaining: 6.22s
66:	learn: 33.4437209	total: 1.78s	remaining: 6.18s
67:	learn: 33.2713872	total: 1.81s	remaining: 6.16s
68:	learn: 33.1222742	total: 1.83s	remaining: 6.14s
69:	learn: 32.9491993	total: 1.86s	remaining: 6.12s
70:	learn: 32.7993999	total: 1.89s	remaining: 6.08s
71:	learn: 32.6389444	total: 1.91s	remaining: 6.05s
72:	learn: 32.5136777	total: 1.94s	remaining: 6.02s
73:	learn: 32.3250532	total: 1.96s	remaining: 5.99s
74:	learn: 32.1681212	total: 1.99s	remaining: 5.98s
75:	learn: 32.0305457	total: 2.03s	remaining: 5.98s
76:	learn: 31.8939124	total: 2.05s	remaining: 5.95s
77:	learn: 31.7307002	total: 2.08s	remaining: 5.92s
78:	learn: 31.5506551	total: 2.1s	remaining: 5.89s
79:	learn: 31.3585582	total: 2.13s	remaining: 5.86s
80:	learn: 31.2377884	total: 2.15s	remaining: 5.83s
81:	learn: 31.0872848	total: 2.18s	remaining: 5.79s
82:	learn: 30.9196897	total: 2.21s	remaining: 5.77s
83:	learn: 30.7627899	total: 2.25s	remaining: 5.78s
84:	learn: 30.6354581	total: 2.27s	remaining: 5.75s
85:	learn: 30.4812118	total: 2.3s	remaining: 5.72s
86:	learn: 30.3501393	total: 2.33s	remaining: 5.69s
87:	learn: 30.2317309	total: 2.35s	remaining: 5.67s
88:	learn: 30.0770872	total: 2.38s	remaining: 5.64s
89:	learn: 29.9517251	total: 2.4s	remaining: 5.61s
90:	learn: 29.8182899	total: 2.43s	remaining: 5.57s
91:	learn: 29.6614210	total: 2.46s	remaining: 5.56s
92:	learn: 29.5523686	total: 2.49s	remaining: 5.54s
93:	learn: 29.4053683	total: 2.52s	remaining: 5.52s
94:	learn: 29.2601476	total: 2.54s	remaining: 5.49s
95:	learn: 29.1182094	total: 2.57s	remaining: 5.46s
96:	learn: 28.9885050	total: 2.59s	remaining: 5.43s
97:	learn: 28.8780981	total: 2.62s	remaining: 5.4s
98:	learn: 28.7484395	total: 2.64s	remaining: 5.37s
99:	learn: 28.6007901	total: 2.67s	remaining: 5.34s
100:	learn: 28.4647305	total: 2.7s	remaining: 5.32s
101:	learn: 28.3447045	total: 2.73s	remaining: 5.3s
102:	learn: 28.2185610	total: 2.75s	remaining: 5.27s
103:	learn: 28.1000930	total: 2.79s	remaining: 5.25s
104:	learn: 28.0014447	total: 2.81s	remaining: 5.22s
105:	learn: 27.8804790	total: 2.84s	remaining: 5.19s
106:	learn: 27.7561524	total: 2.86s	remaining: 5.16s
107:	learn: 27.6414765	total: 2.89s	remaining: 5.13s
108:	learn: 27.4937136	total: 2.92s	remaining: 5.11s
109:	learn: 27.3682776	total: 2.94s	remaining: 5.08s
110:	learn: 27.2527017	total: 2.96s	remaining: 5.05s
111:	learn: 27.1409655	total: 2.99s	remaining: 5.02s
112:	learn: 27.0220901	total: 3.02s	remaining: 4.99s
113:	learn: 26.9171572	total: 3.05s	remaining: 4.97s
114:	learn: 26.7707607	total: 3.07s	remaining: 4.94s
115:	learn: 26.6374802	total: 3.1s	remaining: 4.91s
116:	learn: 26.5161962	total: 3.13s	remaining: 4.89s
117:	learn: 26.3939712	total: 3.16s	remaining: 4.87s
118:	learn: 26.2670228	total: 3.18s	remaining: 4.84s
119:	learn: 26.1658805	total: 3.21s	remaining: 4.81s
120:	learn: 26.0439756	total: 3.23s	remaining: 4.78s
121:	learn: 25.9319704	total: 3.26s	remaining: 4.75s
122:	learn: 25.8133601	total: 3.29s	remaining: 4.73s
123:	learn: 25.6838585	total: 3.31s	remaining: 4.7s
124:	learn: 25.5642851	total: 3.35s	remaining: 4.68s
125:	learn: 25.4551493	total: 3.37s	remaining: 4.66s
126:	learn: 25.3283382	total: 3.4s	remaining: 4.63s
127:	learn: 25.2303422	total: 3.42s	remaining: 4.6s
128:	learn: 25.1301231	total: 3.45s	remaining: 4.57s
129:	learn: 25.0059477	total: 3.47s	remaining: 4.54s
130:	learn: 24.9128714	total: 3.5s	remaining: 4.51s
131:	learn: 24.8270009	total: 3.52s	remaining: 4.48s
132:	learn: 24.7282856	total: 3.55s	remaining: 4.46s
133:	learn: 24.6068738	total: 3.58s	remaining: 4.44s
134:	learn: 24.4944609	total: 3.61s	remaining: 4.41s
135:	learn: 24.4007736	total: 3.63s	remaining: 4.38s
136:	learn: 24.2652984	total: 3.66s	remaining: 4.35s
137:	learn: 24.1998753	total: 3.66s	remaining: 4.3s
138:	learn: 24.1187576	total: 3.69s	remaining: 4.27s
139:	learn: 24.0053052	total: 3.71s	remaining: 4.24s
140:	learn: 23.9210487	total: 3.73s	remaining: 4.21s
141:	learn: 23.8220050	total: 3.76s	remaining: 4.18s
142:	learn: 23.7320610	total: 3.79s	remaining: 4.17s
143:	learn: 23.6304095	total: 3.83s	remaining: 4.14s
144:	learn: 23.5435925	total: 3.85s	remaining: 4.12s
145:	learn: 23.4490235	total: 3.88s	remaining: 4.09s
146:	learn: 23.3593062	total: 3.9s	remaining: 4.06s
147:	learn: 23.2441220	total: 3.93s	remaining: 4.03s
148:	learn: 23.1649310	total: 3.95s	remaining: 4s
149:	learn: 23.0937137	total: 3.98s	remaining: 3.98s
150:	learn: 23.0033824	total: 4.01s	remaining: 3.95s
151:	learn: 22.9105498	total: 4.03s	remaining: 3.93s
152:	learn: 22.8240080	total: 4.06s	remaining: 3.9s
153:	learn: 22.7410049	total: 4.09s	remaining: 3.88s
154:	learn: 22.6555811	total: 4.12s	remaining: 3.85s
155:	learn: 22.5562543	total: 4.14s	remaining: 3.82s
156:	learn: 22.4580905	total: 4.17s	remaining: 3.79s
157:	learn: 22.3853437	total: 4.19s	remaining: 3.77s
158:	learn: 22.2910058	total: 4.22s	remaining: 3.75s
159:	learn: 22.2026924	total: 4.25s	remaining: 3.72s
160:	learn: 22.1082691	total: 4.27s	remaining: 3.69s
161:	learn: 22.0485799	total: 4.3s	remaining: 3.66s
162:	learn: 21.9732579	total: 4.32s	remaining: 3.63s
163:	learn: 21.8694207	total: 4.35s	remaining: 3.61s
164:	learn: 21.7852612	total: 4.38s	remaining: 3.58s
165:	learn: 21.7256414	total: 4.4s	remaining: 3.55s
166:	learn: 21.6428497	total: 4.43s	remaining: 3.53s
167:	learn: 21.5677079	total: 4.46s	remaining: 3.51s
168:	learn: 21.4593059	total: 4.49s	remaining: 3.48s
169:	learn: 21.3886739	total: 4.51s	remaining: 3.45s
170:	learn: 21.3128676	total: 4.54s	remaining: 3.42s
171:	learn: 21.2261221	total: 4.56s	remaining: 3.4s
172:	learn: 21.1358765	total: 4.59s	remaining: 3.37s
173:	learn: 21.0667531	total: 4.62s	remaining: 3.35s
174:	learn: 20.9949684	total: 4.65s	remaining: 3.32s
175:	learn: 20.9197151	total: 4.68s	remaining: 3.3s
176:	learn: 20.8348829	total: 4.71s	remaining: 3.27s
177:	learn: 20.7684704	total: 4.73s	remaining: 3.24s
178:	learn: 20.6988083	total: 4.75s	remaining: 3.21s
179:	learn: 20.6152013	total: 4.78s	remaining: 3.19s
180:	learn: 20.5573648	total: 4.8s	remaining: 3.16s
181:	learn: 20.4712922	total: 4.83s	remaining: 3.13s
182:	learn: 20.3807903	total: 4.86s	remaining: 3.11s
183:	learn: 20.2970112	total: 4.9s	remaining: 3.09s
184:	learn: 20.2034240	total: 4.92s	remaining: 3.06s
185:	learn: 20.1175766	total: 4.95s	remaining: 3.03s
186:	learn: 20.0348028	total: 4.97s	remaining: 3s
187:	learn: 19.9683863	total: 5s	remaining: 2.98s
188:	learn: 19.9146008	total: 5.02s	remaining: 2.95s
189:	learn: 19.8485219	total: 5.05s	remaining: 2.92s
190:	learn: 19.7815231	total: 5.08s	remaining: 2.9s
191:	learn: 19.7226636	total: 5.11s	remaining: 2.88s
192:	learn: 19.6514314	total: 5.14s	remaining: 2.85s
193:	learn: 19.5874662	total: 5.16s	remaining: 2.82s
194:	learn: 19.5188482	total: 5.19s	remaining: 2.79s
195:	learn: 19.4132924	total: 5.21s	remaining: 2.77s
196:	learn: 19.3336041	total: 5.24s	remaining: 2.74s
197:	learn: 19.2540160	total: 5.26s	remaining: 2.71s
198:	learn: 19.1814868	total: 5.29s	remaining: 2.68s
199:	learn: 19.1375571	total: 5.32s	remaining: 2.66s
200:	learn: 19.0597510	total: 5.35s	remaining: 2.63s
201:	learn: 18.9987290	total: 5.37s	remaining: 2.61s
202:	learn: 18.9357168	total: 5.41s	remaining: 2.58s
203:	learn: 18.8809983	total: 5.43s	remaining: 2.55s
204:	learn: 18.7949653	total: 5.45s	remaining: 2.53s
205:	learn: 18.7468832	total: 5.48s	remaining: 2.5s
206:	learn: 18.6810375	total: 5.5s	remaining: 2.47s
207:	learn: 18.6260175	total: 5.54s	remaining: 2.45s
208:	learn: 18.5784866	total: 5.56s	remaining: 2.42s
209:	learn: 18.5195431	total: 5.59s	remaining: 2.4s
210:	learn: 18.4524044	total: 5.61s	remaining: 2.37s
211:	learn: 18.3675987	total: 5.64s	remaining: 2.34s
212:	learn: 18.3150235	total: 5.67s	remaining: 2.32s
213:	learn: 18.2483349	total: 5.7s	remaining: 2.29s
214:	learn: 18.2130927	total: 5.72s	remaining: 2.26s
215:	learn: 18.1515897	total: 5.76s	remaining: 2.24s
216:	learn: 18.0941982	total: 5.78s	remaining: 2.21s
217:	learn: 18.0262823	total: 5.81s	remaining: 2.18s
218:	learn: 17.9660967	total: 5.83s	remaining: 2.16s
219:	learn: 17.8985691	total: 5.86s	remaining: 2.13s
220:	learn: 17.8383582	total: 5.88s	remaining: 2.1s
221:	learn: 17.7535770	total: 5.91s	remaining: 2.08s
222:	learn: 17.7044922	total: 5.94s	remaining: 2.05s
223:	learn: 17.6537442	total: 5.97s	remaining: 2.03s
224:	learn: 17.6005077	total: 6s	remaining: 2s
225:	learn: 17.5458811	total: 6.02s	remaining: 1.97s
226:	learn: 17.4973124	total: 6.05s	remaining: 1.95s
227:	learn: 17.4191591	total: 6.08s	remaining: 1.92s
228:	learn: 17.3619650	total: 6.1s	remaining: 1.89s
229:	learn: 17.3229834	total: 6.13s	remaining: 1.86s
230:	learn: 17.2721322	total: 6.15s	remaining: 1.84s
231:	learn: 17.2213528	total: 6.19s	remaining: 1.81s
232:	learn: 17.1648847	total: 6.21s	remaining: 1.79s
233:	learn: 17.1171379	total: 6.24s	remaining: 1.76s
234:	learn: 17.0577754	total: 6.26s	remaining: 1.73s
235:	learn: 16.9936285	total: 6.29s	remaining: 1.71s
236:	learn: 16.9401659	total: 6.31s	remaining: 1.68s
237:	learn: 16.9011805	total: 6.34s	remaining: 1.65s
238:	learn: 16.8468936	total: 6.37s	remaining: 1.62s
239:	learn: 16.7983935	total: 6.4s	remaining: 1.6s
240:	learn: 16.7461195	total: 6.42s	remaining: 1.57s
241:	learn: 16.6915220	total: 6.46s	remaining: 1.55s
242:	learn: 16.6467209	total: 6.48s	remaining: 1.52s
243:	learn: 16.5847369	total: 6.5s	remaining: 1.49s
244:	learn: 16.5460628	total: 6.53s	remaining: 1.47s
245:	learn: 16.5015037	total: 6.55s	remaining: 1.44s
246:	learn: 16.4403631	total: 6.58s	remaining: 1.41s
247:	learn: 16.3877470	total: 6.61s	remaining: 1.39s
248:	learn: 16.3539553	total: 6.64s	remaining: 1.36s
249:	learn: 16.3015470	total: 6.66s	remaining: 1.33s
250:	learn: 16.2710475	total: 6.69s	remaining: 1.3s
251:	learn: 16.2318420	total: 6.72s	remaining: 1.28s
252:	learn: 16.1799554	total: 6.75s	remaining: 1.25s
253:	learn: 16.1251371	total: 6.77s	remaining: 1.23s
254:	learn: 16.0766054	total: 6.8s	remaining: 1.2s
255:	learn: 16.0331296	total: 6.83s	remaining: 1.17s
256:	learn: 15.9716433	total: 6.85s	remaining: 1.15s
257:	learn: 15.9451600	total: 6.88s	remaining: 1.12s
258:	learn: 15.9018757	total: 6.9s	remaining: 1.09s
259:	learn: 15.8381970	total: 6.93s	remaining: 1.06s
260:	learn: 15.7826727	total: 6.96s	remaining: 1.04s
261:	learn: 15.7313015	total: 6.98s	remaining: 1.01s
262:	learn: 15.6834037	total: 7.01s	remaining: 986ms
263:	learn: 15.6349428	total: 7.04s	remaining: 961ms
264:	learn: 15.5990545	total: 7.07s	remaining: 934ms
265:	learn: 15.5542522	total: 7.09s	remaining: 907ms
266:	learn: 15.5084378	total: 7.12s	remaining: 880ms
267:	learn: 15.4661775	total: 7.14s	remaining: 853ms
268:	learn: 15.4204295	total: 7.17s	remaining: 826ms
269:	learn: 15.3797436	total: 7.19s	remaining: 799ms
270:	learn: 15.3241643	total: 7.22s	remaining: 773ms
271:	learn: 15.2912031	total: 7.26s	remaining: 747ms
272:	learn: 15.2485093	total: 7.28s	remaining: 720ms
273:	learn: 15.2067344	total: 7.31s	remaining: 694ms
274:	learn: 15.1691348	total: 7.33s	remaining: 667ms
275:	learn: 15.1175909	total: 7.36s	remaining: 640ms
276:	learn: 15.0764791	total: 7.38s	remaining: 613ms
277:	learn: 15.0234203	total: 7.41s	remaining: 586ms
278:	learn: 14.9850104	total: 7.43s	remaining: 559ms
279:	learn: 14.9411345	total: 7.46s	remaining: 533ms
280:	learn: 14.8870327	total: 7.5s	remaining: 507ms
281:	learn: 14.8456947	total: 7.52s	remaining: 480ms
282:	learn: 14.8084255	total: 7.55s	remaining: 453ms
283:	learn: 14.7680170	total: 7.57s	remaining: 427ms
284:	learn: 14.7205578	total: 7.6s	remaining: 400ms
285:	learn: 14.6828419	total: 7.62s	remaining: 373ms
286:	learn: 14.6381094	total: 7.64s	remaining: 346ms
287:	learn: 14.5936873	total: 7.67s	remaining: 320ms
288:	learn: 14.5454139	total: 7.7s	remaining: 293ms
289:	learn: 14.5045998	total: 7.73s	remaining: 267ms
290:	learn: 14.4651034	total: 7.76s	remaining: 240ms
291:	learn: 14.4164592	total: 7.79s	remaining: 213ms
292:	learn: 14.3794254	total: 7.81s	remaining: 187ms
293:	learn: 14.3526912	total: 7.83s	remaining: 160ms
294:	learn: 14.3172040	total: 7.86s	remaining: 133ms
295:	learn: 14.2878426	total: 7.88s	remaining: 107ms
296:	learn: 14.2618876	total: 7.92s	remaining: 80ms
297:	learn: 14.2238562	total: 7.94s	remaining: 53.3ms
298:	learn: 14.1855861	total: 7.97s	remaining: 26.6ms
299:	learn: 14.1397364	total: 7.99s	remaining: 0us
0:	learn: 46.7870548	total: 2.71ms	remaining: 811ms
1:	learn: 46.5509556	total: 33.1ms	remaining: 4.93s
2:	learn: 46.2905959	total: 60.6ms	remaining: 6s
3:	learn: 46.0432953	total: 84.3ms	remaining: 6.24s
4:	learn: 45.7981156	total: 109ms	remaining: 6.41s
5:	learn: 45.5953537	total: 133ms	remaining: 6.49s
6:	learn: 45.3456158	total: 157ms	remaining: 6.57s
7:	learn: 45.1041876	total: 180ms	remaining: 6.56s
8:	learn: 44.8408594	total: 203ms	remaining: 6.57s
9:	learn: 44.6156712	total: 226ms	remaining: 6.56s
10:	learn: 44.3844027	total: 259ms	remaining: 6.8s
11:	learn: 44.1592646	total: 288ms	remaining: 6.91s
12:	learn: 43.9028580	total: 317ms	remaining: 7s
13:	learn: 43.6552529	total: 342ms	remaining: 6.99s
14:	learn: 43.4209626	total: 367ms	remaining: 6.98s
15:	learn: 43.1808263	total: 393ms	remaining: 6.97s
16:	learn: 42.9397693	total: 417ms	remaining: 6.94s
17:	learn: 42.7028326	total: 440ms	remaining: 6.9s
18:	learn: 42.4507836	total: 465ms	remaining: 6.88s
19:	learn: 42.2343115	total: 490ms	remaining: 6.86s
20:	learn: 42.0290334	total: 532ms	remaining: 7.07s
21:	learn: 41.7972515	total: 558ms	remaining: 7.04s
22:	learn: 41.5930066	total: 584ms	remaining: 7.03s
23:	learn: 41.3630345	total: 609ms	remaining: 7s
24:	learn: 41.1267274	total: 632ms	remaining: 6.95s
25:	learn: 40.8976157	total: 656ms	remaining: 6.91s
26:	learn: 40.7477253	total: 681ms	remaining: 6.88s
27:	learn: 40.5380037	total: 706ms	remaining: 6.86s
28:	learn: 40.3518359	total: 737ms	remaining: 6.89s
29:	learn: 40.1227880	total: 765ms	remaining: 6.88s
30:	learn: 39.9077340	total: 797ms	remaining: 6.92s
31:	learn: 39.7157645	total: 823ms	remaining: 6.89s
32:	learn: 39.4842991	total: 850ms	remaining: 6.87s
33:	learn: 39.2680222	total: 874ms	remaining: 6.84s
34:	learn: 39.1151353	total: 899ms	remaining: 6.8s
35:	learn: 38.9106437	total: 939ms	remaining: 6.88s
36:	learn: 38.6816637	total: 965ms	remaining: 6.86s
37:	learn: 38.5040898	total: 990ms	remaining: 6.83s
38:	learn: 38.2991789	total: 1.01s	remaining: 6.79s
39:	learn: 38.0905994	total: 1.04s	remaining: 6.76s
40:	learn: 37.8866149	total: 1.07s	remaining: 6.75s
41:	learn: 37.6672953	total: 1.09s	remaining: 6.7s
42:	learn: 37.4800472	total: 1.11s	remaining: 6.66s
43:	learn: 37.3135160	total: 1.14s	remaining: 6.63s
44:	learn: 37.1163679	total: 1.17s	remaining: 6.64s
45:	learn: 36.9226524	total: 1.2s	remaining: 6.62s
46:	learn: 36.7536687	total: 1.22s	remaining: 6.59s
47:	learn: 36.5708676	total: 1.25s	remaining: 6.57s
48:	learn: 36.3496982	total: 1.27s	remaining: 6.53s
49:	learn: 36.1876634	total: 1.3s	remaining: 6.5s
50:	learn: 36.0205452	total: 1.33s	remaining: 6.49s
51:	learn: 35.8569839	total: 1.35s	remaining: 6.45s
52:	learn: 35.7193741	total: 1.39s	remaining: 6.46s
53:	learn: 35.5490989	total: 1.41s	remaining: 6.44s
54:	learn: 35.3734082	total: 1.44s	remaining: 6.41s
55:	learn: 35.2037325	total: 1.46s	remaining: 6.38s
56:	learn: 35.0366875	total: 1.49s	remaining: 6.34s
57:	learn: 34.8664946	total: 1.51s	remaining: 6.32s
58:	learn: 34.7528679	total: 1.54s	remaining: 6.28s
59:	learn: 34.5990206	total: 1.56s	remaining: 6.24s
60:	learn: 34.4375256	total: 1.59s	remaining: 6.23s
61:	learn: 34.2757128	total: 1.63s	remaining: 6.24s
62:	learn: 34.1074596	total: 1.65s	remaining: 6.22s
63:	learn: 33.9134234	total: 1.68s	remaining: 6.19s
64:	learn: 33.7721658	total: 1.7s	remaining: 6.16s
65:	learn: 33.6151876	total: 1.73s	remaining: 6.13s
66:	learn: 33.4702332	total: 1.75s	remaining: 6.09s
67:	learn: 33.3063605	total: 1.77s	remaining: 6.05s
68:	learn: 33.1371803	total: 1.8s	remaining: 6.02s
69:	learn: 32.9938650	total: 1.82s	remaining: 5.99s
70:	learn: 32.8806069	total: 1.86s	remaining: 6s
71:	learn: 32.7337783	total: 1.89s	remaining: 5.98s
72:	learn: 32.6112632	total: 1.91s	remaining: 5.95s
73:	learn: 32.4373088	total: 1.94s	remaining: 5.92s
74:	learn: 32.2704069	total: 1.96s	remaining: 5.89s
75:	learn: 32.1309156	total: 1.97s	remaining: 5.79s
76:	learn: 31.9982204	total: 1.99s	remaining: 5.76s
77:	learn: 31.8386739	total: 2.01s	remaining: 5.73s
78:	learn: 31.6987206	total: 2.04s	remaining: 5.7s
79:	learn: 31.5499135	total: 2.07s	remaining: 5.71s
80:	learn: 31.4086186	total: 2.1s	remaining: 5.68s
81:	learn: 31.2612447	total: 2.13s	remaining: 5.67s
82:	learn: 31.1473521	total: 2.16s	remaining: 5.65s
83:	learn: 31.0256072	total: 2.18s	remaining: 5.62s
84:	learn: 30.8713816	total: 2.21s	remaining: 5.58s
85:	learn: 30.7375117	total: 2.23s	remaining: 5.55s
86:	learn: 30.6108390	total: 2.26s	remaining: 5.52s
87:	learn: 30.4713139	total: 2.29s	remaining: 5.51s
88:	learn: 30.3423055	total: 2.31s	remaining: 5.49s
89:	learn: 30.2207021	total: 2.34s	remaining: 5.46s
90:	learn: 30.0949179	total: 2.36s	remaining: 5.43s
91:	learn: 29.9729715	total: 2.4s	remaining: 5.42s
92:	learn: 29.8643086	total: 2.42s	remaining: 5.39s
93:	learn: 29.7665122	total: 2.45s	remaining: 5.36s
94:	learn: 29.6231497	total: 2.47s	remaining: 5.33s
95:	learn: 29.4789414	total: 2.51s	remaining: 5.33s
96:	learn: 29.3548309	total: 2.53s	remaining: 5.3s
97:	learn: 29.2140883	total: 2.56s	remaining: 5.27s
98:	learn: 29.0857263	total: 2.58s	remaining: 5.24s
99:	learn: 28.9844616	total: 2.61s	remaining: 5.21s
100:	learn: 28.8786360	total: 2.63s	remaining: 5.18s
101:	learn: 28.7366305	total: 2.67s	remaining: 5.17s
102:	learn: 28.6144208	total: 2.69s	remaining: 5.15s
103:	learn: 28.4909185	total: 2.72s	remaining: 5.13s
104:	learn: 28.3737308	total: 2.75s	remaining: 5.11s
105:	learn: 28.2474669	total: 2.77s	remaining: 5.08s
106:	learn: 28.1304845	total: 2.8s	remaining: 5.05s
107:	learn: 28.0219050	total: 2.82s	remaining: 5.02s
108:	learn: 27.9119273	total: 2.85s	remaining: 4.99s
109:	learn: 27.7940665	total: 2.87s	remaining: 4.96s
110:	learn: 27.6861210	total: 2.89s	remaining: 4.93s
111:	learn: 27.5494854	total: 2.94s	remaining: 4.93s
112:	learn: 27.4263503	total: 2.96s	remaining: 4.9s
113:	learn: 27.3187261	total: 2.98s	remaining: 4.87s
114:	learn: 27.2166072	total: 3.01s	remaining: 4.84s
115:	learn: 27.0966496	total: 3.04s	remaining: 4.82s
116:	learn: 26.9715404	total: 3.06s	remaining: 4.78s
117:	learn: 26.9000098	total: 3.08s	remaining: 4.75s
118:	learn: 26.7950464	total: 3.11s	remaining: 4.73s
119:	learn: 26.6670545	total: 3.14s	remaining: 4.71s
120:	learn: 26.5335862	total: 3.18s	remaining: 4.7s
121:	learn: 26.4604828	total: 3.2s	remaining: 4.67s
122:	learn: 26.3381204	total: 3.23s	remaining: 4.64s
123:	learn: 26.2222222	total: 3.25s	remaining: 4.62s
124:	learn: 26.1304443	total: 3.27s	remaining: 4.58s
125:	learn: 26.0221039	total: 3.3s	remaining: 4.55s
126:	learn: 25.9100900	total: 3.32s	remaining: 4.53s
127:	learn: 25.8080098	total: 3.35s	remaining: 4.51s
128:	learn: 25.7080133	total: 3.38s	remaining: 4.48s
129:	learn: 25.6040228	total: 3.41s	remaining: 4.45s
130:	learn: 25.5038062	total: 3.44s	remaining: 4.44s
131:	learn: 25.4035491	total: 3.46s	remaining: 4.41s
132:	learn: 25.2999779	total: 3.49s	remaining: 4.38s
133:	learn: 25.1973428	total: 3.51s	remaining: 4.35s
134:	learn: 25.0957273	total: 3.54s	remaining: 4.32s
135:	learn: 24.9765330	total: 3.57s	remaining: 4.3s
136:	learn: 24.8917171	total: 3.6s	remaining: 4.28s
137:	learn: 24.7841090	total: 3.62s	remaining: 4.25s
138:	learn: 24.6927568	total: 3.65s	remaining: 4.22s
139:	learn: 24.6129006	total: 3.67s	remaining: 4.2s
140:	learn: 24.5144267	total: 3.7s	remaining: 4.18s
141:	learn: 24.4313235	total: 3.73s	remaining: 4.15s
142:	learn: 24.3411218	total: 3.75s	remaining: 4.12s
143:	learn: 24.2573999	total: 3.79s	remaining: 4.1s
144:	learn: 24.1811369	total: 3.81s	remaining: 4.08s
145:	learn: 24.0879259	total: 3.84s	remaining: 4.05s
146:	learn: 23.9890446	total: 3.86s	remaining: 4.02s
147:	learn: 23.9041220	total: 3.89s	remaining: 3.99s
148:	learn: 23.8190377	total: 3.91s	remaining: 3.96s
149:	learn: 23.7441370	total: 3.94s	remaining: 3.94s
150:	learn: 23.6536711	total: 3.97s	remaining: 3.92s
151:	learn: 23.5617828	total: 4.01s	remaining: 3.9s
152:	learn: 23.4575126	total: 4.04s	remaining: 3.88s
153:	learn: 23.3545199	total: 4.06s	remaining: 3.85s
154:	learn: 23.2786188	total: 4.08s	remaining: 3.82s
155:	learn: 23.1932207	total: 4.11s	remaining: 3.79s
156:	learn: 23.1157521	total: 4.13s	remaining: 3.77s
157:	learn: 23.0525011	total: 4.16s	remaining: 3.74s
158:	learn: 22.9826131	total: 4.18s	remaining: 3.71s
159:	learn: 22.8971645	total: 4.2s	remaining: 3.68s
160:	learn: 22.8124108	total: 4.25s	remaining: 3.67s
161:	learn: 22.7259629	total: 4.27s	remaining: 3.64s
162:	learn: 22.6410461	total: 4.29s	remaining: 3.61s
163:	learn: 22.5475340	total: 4.32s	remaining: 3.58s
164:	learn: 22.4665910	total: 4.34s	remaining: 3.55s
165:	learn: 22.4018176	total: 4.37s	remaining: 3.53s
166:	learn: 22.3206923	total: 4.39s	remaining: 3.5s
167:	learn: 22.2605670	total: 4.42s	remaining: 3.47s
168:	learn: 22.1905861	total: 4.45s	remaining: 3.45s
169:	learn: 22.1262269	total: 4.48s	remaining: 3.43s
170:	learn: 22.0491308	total: 4.52s	remaining: 3.41s
171:	learn: 21.9817333	total: 4.54s	remaining: 3.38s
172:	learn: 21.9058044	total: 4.57s	remaining: 3.35s
173:	learn: 21.8241791	total: 4.59s	remaining: 3.32s
174:	learn: 21.7375817	total: 4.61s	remaining: 3.29s
175:	learn: 21.6472643	total: 4.63s	remaining: 3.27s
176:	learn: 21.5766827	total: 4.66s	remaining: 3.24s
177:	learn: 21.4878344	total: 4.69s	remaining: 3.21s
178:	learn: 21.4188640	total: 4.72s	remaining: 3.19s
179:	learn: 21.3385443	total: 4.74s	remaining: 3.16s
180:	learn: 21.2650011	total: 4.78s	remaining: 3.14s
181:	learn: 21.1772856	total: 4.8s	remaining: 3.11s
182:	learn: 21.1013252	total: 4.82s	remaining: 3.08s
183:	learn: 21.0237300	total: 4.85s	remaining: 3.06s
184:	learn: 20.9314435	total: 4.87s	remaining: 3.03s
185:	learn: 20.8664317	total: 4.9s	remaining: 3.01s
186:	learn: 20.8108514	total: 4.93s	remaining: 2.98s
187:	learn: 20.7363786	total: 4.95s	remaining: 2.95s
188:	learn: 20.6587434	total: 4.98s	remaining: 2.92s
189:	learn: 20.5954877	total: 5s	remaining: 2.9s
190:	learn: 20.5328286	total: 5.02s	remaining: 2.87s
191:	learn: 20.4669052	total: 5.05s	remaining: 2.84s
192:	learn: 20.3961092	total: 5.07s	remaining: 2.81s
193:	learn: 20.3346586	total: 5.1s	remaining: 2.79s
194:	learn: 20.2699707	total: 5.13s	remaining: 2.76s
195:	learn: 20.1688307	total: 5.15s	remaining: 2.73s
196:	learn: 20.1072185	total: 5.17s	remaining: 2.7s
197:	learn: 20.0248965	total: 5.2s	remaining: 2.68s
198:	learn: 19.9749040	total: 5.22s	remaining: 2.65s
199:	learn: 19.9141163	total: 5.24s	remaining: 2.62s
200:	learn: 19.8322942	total: 5.26s	remaining: 2.59s
201:	learn: 19.7695440	total: 5.28s	remaining: 2.56s
202:	learn: 19.7099364	total: 5.3s	remaining: 2.54s
203:	learn: 19.6431868	total: 5.33s	remaining: 2.51s
204:	learn: 19.5742365	total: 5.36s	remaining: 2.48s
205:	learn: 19.4926752	total: 5.38s	remaining: 2.46s
206:	learn: 19.4461217	total: 5.41s	remaining: 2.43s
207:	learn: 19.3968500	total: 5.43s	remaining: 2.4s
208:	learn: 19.3405955	total: 5.45s	remaining: 2.37s
209:	learn: 19.2827366	total: 5.48s	remaining: 2.35s
210:	learn: 19.2233617	total: 5.5s	remaining: 2.32s
211:	learn: 19.1454929	total: 5.53s	remaining: 2.29s
212:	learn: 19.0880463	total: 5.56s	remaining: 2.27s
213:	learn: 19.0234252	total: 5.58s	remaining: 2.24s
214:	learn: 18.9739747	total: 5.61s	remaining: 2.22s
215:	learn: 18.9243468	total: 5.63s	remaining: 2.19s
216:	learn: 18.8837475	total: 5.65s	remaining: 2.16s
217:	learn: 18.8278098	total: 5.67s	remaining: 2.13s
218:	learn: 18.7925834	total: 5.7s	remaining: 2.11s
219:	learn: 18.7381930	total: 5.72s	remaining: 2.08s
220:	learn: 18.6955420	total: 5.74s	remaining: 2.05s
221:	learn: 18.6371123	total: 5.77s	remaining: 2.03s
222:	learn: 18.5567836	total: 5.8s	remaining: 2s
223:	learn: 18.4913242	total: 5.82s	remaining: 1.97s
224:	learn: 18.4291923	total: 5.84s	remaining: 1.95s
225:	learn: 18.3684290	total: 5.87s	remaining: 1.92s
226:	learn: 18.3214289	total: 5.89s	remaining: 1.89s
227:	learn: 18.2559323	total: 5.91s	remaining: 1.87s
228:	learn: 18.2080430	total: 5.94s	remaining: 1.84s
229:	learn: 18.1427218	total: 5.96s	remaining: 1.81s
230:	learn: 18.0795023	total: 5.99s	remaining: 1.79s
231:	learn: 18.0263874	total: 6.02s	remaining: 1.76s
232:	learn: 17.9746300	total: 6.04s	remaining: 1.74s
233:	learn: 17.9230444	total: 6.06s	remaining: 1.71s
234:	learn: 17.8920017	total: 6.09s	remaining: 1.68s
235:	learn: 17.8210122	total: 6.11s	remaining: 1.66s
236:	learn: 17.7628665	total: 6.13s	remaining: 1.63s
237:	learn: 17.7044488	total: 6.15s	remaining: 1.6s
238:	learn: 17.6558079	total: 6.18s	remaining: 1.58s
239:	learn: 17.6061414	total: 6.21s	remaining: 1.55s
240:	learn: 17.5499135	total: 6.23s	remaining: 1.52s
241:	learn: 17.5079151	total: 6.25s	remaining: 1.5s
242:	learn: 17.4658116	total: 6.28s	remaining: 1.47s
243:	learn: 17.4073047	total: 6.3s	remaining: 1.45s
244:	learn: 17.3745022	total: 6.32s	remaining: 1.42s
245:	learn: 17.3357514	total: 6.35s	remaining: 1.39s
246:	learn: 17.3068297	total: 6.37s	remaining: 1.37s
247:	learn: 17.2634815	total: 6.39s	remaining: 1.34s
248:	learn: 17.2117369	total: 6.42s	remaining: 1.31s
249:	learn: 17.1587386	total: 6.45s	remaining: 1.29s
250:	learn: 17.1143843	total: 6.47s	remaining: 1.26s
251:	learn: 17.0739449	total: 6.5s	remaining: 1.24s
252:	learn: 17.0260606	total: 6.52s	remaining: 1.21s
253:	learn: 16.9834570	total: 6.54s	remaining: 1.18s
254:	learn: 16.9420746	total: 6.56s	remaining: 1.16s
255:	learn: 16.8913583	total: 6.58s	remaining: 1.13s
256:	learn: 16.8361972	total: 6.61s	remaining: 1.1s
257:	learn: 16.8015363	total: 6.64s	remaining: 1.08s
258:	learn: 16.7722675	total: 6.67s	remaining: 1.05s
259:	learn: 16.7270442	total: 6.69s	remaining: 1.03s
260:	learn: 16.6831627	total: 6.71s	remaining: 1s
261:	learn: 16.6434408	total: 6.74s	remaining: 978ms
262:	learn: 16.6046513	total: 6.76s	remaining: 951ms
263:	learn: 16.5697297	total: 6.78s	remaining: 925ms
264:	learn: 16.5076111	total: 6.8s	remaining: 899ms
265:	learn: 16.4743242	total: 6.83s	remaining: 873ms
266:	learn: 16.4355076	total: 6.86s	remaining: 848ms
267:	learn: 16.3987254	total: 6.89s	remaining: 822ms
268:	learn: 16.3578512	total: 6.91s	remaining: 797ms
269:	learn: 16.3164137	total: 6.93s	remaining: 771ms
270:	learn: 16.2734218	total: 6.96s	remaining: 745ms
271:	learn: 16.2386336	total: 6.98s	remaining: 719ms
272:	learn: 16.2115930	total: 7s	remaining: 693ms
273:	learn: 16.1647178	total: 7.03s	remaining: 667ms
274:	learn: 16.1314533	total: 7.05s	remaining: 641ms
275:	learn: 16.0993418	total: 7.08s	remaining: 616ms
276:	learn: 16.0532680	total: 7.1s	remaining: 590ms
277:	learn: 15.9970623	total: 7.13s	remaining: 564ms
278:	learn: 15.9507754	total: 7.15s	remaining: 538ms
279:	learn: 15.9139085	total: 7.17s	remaining: 512ms
280:	learn: 15.8784290	total: 7.19s	remaining: 486ms
281:	learn: 15.8500276	total: 7.21s	remaining: 460ms
282:	learn: 15.8088728	total: 7.23s	remaining: 435ms
283:	learn: 15.7708631	total: 7.26s	remaining: 409ms
284:	learn: 15.7384477	total: 7.29s	remaining: 383ms
285:	learn: 15.6975787	total: 7.31s	remaining: 358ms
286:	learn: 15.6581989	total: 7.33s	remaining: 332ms
287:	learn: 15.6229063	total: 7.36s	remaining: 307ms
288:	learn: 15.5827583	total: 7.38s	remaining: 281ms
289:	learn: 15.5466794	total: 7.4s	remaining: 255ms
290:	learn: 15.5096633	total: 7.42s	remaining: 230ms
291:	learn: 15.4728289	total: 7.45s	remaining: 204ms
292:	learn: 15.4333441	total: 7.47s	remaining: 178ms
293:	learn: 15.3974059	total: 7.5s	remaining: 153ms
294:	learn: 15.3497460	total: 7.52s	remaining: 128ms
295:	learn: 15.3153853	total: 7.55s	remaining: 102ms
296:	learn: 15.2809401	total: 7.57s	remaining: 76.5ms
297:	learn: 15.2514602	total: 7.59s	remaining: 51ms
298:	learn: 15.2163632	total: 7.62s	remaining: 25.5ms
299:	learn: 15.1752827	total: 7.64s	remaining: 0us
0:	learn: 47.3866100	total: 22.3ms	remaining: 6.66s
1:	learn: 47.1426102	total: 44.9ms	remaining: 6.68s
2:	learn: 46.8912678	total: 67.3ms	remaining: 6.66s
3:	learn: 46.6074552	total: 88ms	remaining: 6.51s
4:	learn: 46.3343561	total: 109ms	remaining: 6.41s
5:	learn: 46.0821186	total: 131ms	remaining: 6.41s
6:	learn: 45.8220945	total: 154ms	remaining: 6.46s
7:	learn: 45.5648188	total: 178ms	remaining: 6.5s
8:	learn: 45.3118772	total: 211ms	remaining: 6.82s
9:	learn: 45.0577551	total: 236ms	remaining: 6.84s
10:	learn: 44.8202452	total: 259ms	remaining: 6.81s
11:	learn: 44.6018494	total: 283ms	remaining: 6.8s
12:	learn: 44.3639939	total: 307ms	remaining: 6.77s
13:	learn: 44.1260754	total: 327ms	remaining: 6.68s
14:	learn: 43.9085986	total: 350ms	remaining: 6.64s
15:	learn: 43.6831522	total: 372ms	remaining: 6.6s
16:	learn: 43.4382322	total: 396ms	remaining: 6.59s
17:	learn: 43.2049427	total: 425ms	remaining: 6.66s
18:	learn: 42.9703086	total: 450ms	remaining: 6.66s
19:	learn: 42.7260970	total: 475ms	remaining: 6.64s
20:	learn: 42.4976342	total: 498ms	remaining: 6.61s
21:	learn: 42.2715368	total: 520ms	remaining: 6.58s
22:	learn: 42.0297592	total: 542ms	remaining: 6.53s
23:	learn: 41.8357333	total: 562ms	remaining: 6.46s
24:	learn: 41.6061720	total: 585ms	remaining: 6.43s
25:	learn: 41.3859547	total: 607ms	remaining: 6.39s
26:	learn: 41.1703337	total: 639ms	remaining: 6.46s
27:	learn: 40.9556925	total: 665ms	remaining: 6.46s
28:	learn: 40.7837869	total: 687ms	remaining: 6.42s
29:	learn: 40.5834865	total: 711ms	remaining: 6.4s
30:	learn: 40.3902303	total: 733ms	remaining: 6.36s
31:	learn: 40.1905276	total: 755ms	remaining: 6.32s
32:	learn: 39.9393072	total: 776ms	remaining: 6.28s
33:	learn: 39.7725634	total: 797ms	remaining: 6.23s
34:	learn: 39.6086582	total: 818ms	remaining: 6.19s
35:	learn: 39.4239082	total: 847ms	remaining: 6.21s
36:	learn: 39.2195459	total: 872ms	remaining: 6.2s
37:	learn: 39.0268945	total: 895ms	remaining: 6.17s
38:	learn: 38.8567143	total: 917ms	remaining: 6.14s
39:	learn: 38.6564689	total: 940ms	remaining: 6.11s
40:	learn: 38.4634144	total: 961ms	remaining: 6.07s
41:	learn: 38.2574076	total: 982ms	remaining: 6.03s
42:	learn: 38.0759189	total: 1s	remaining: 6s
43:	learn: 37.8762011	total: 1.03s	remaining: 5.97s
44:	learn: 37.6855185	total: 1.05s	remaining: 5.95s
45:	learn: 37.5247164	total: 1.08s	remaining: 5.96s
46:	learn: 37.3338876	total: 1.1s	remaining: 5.93s
47:	learn: 37.1348956	total: 1.12s	remaining: 5.9s
48:	learn: 37.0000826	total: 1.15s	remaining: 5.88s
49:	learn: 36.8314524	total: 1.17s	remaining: 5.85s
50:	learn: 36.6609492	total: 1.19s	remaining: 5.83s
51:	learn: 36.4906402	total: 1.22s	remaining: 5.81s
52:	learn: 36.3341244	total: 1.24s	remaining: 5.79s
53:	learn: 36.1983941	total: 1.27s	remaining: 5.78s
54:	learn: 36.0437712	total: 1.3s	remaining: 5.8s
55:	learn: 35.9047256	total: 1.33s	remaining: 5.8s
56:	learn: 35.7041614	total: 1.36s	remaining: 5.78s
57:	learn: 35.6344433	total: 1.36s	remaining: 5.67s
58:	learn: 35.4315645	total: 1.38s	remaining: 5.65s
59:	learn: 35.2659531	total: 1.41s	remaining: 5.62s
60:	learn: 35.0959404	total: 1.43s	remaining: 5.6s
61:	learn: 34.9228518	total: 1.45s	remaining: 5.58s
62:	learn: 34.7527576	total: 1.48s	remaining: 5.57s
63:	learn: 34.5885035	total: 1.51s	remaining: 5.57s
64:	learn: 34.4503426	total: 1.53s	remaining: 5.55s
65:	learn: 34.2692281	total: 1.56s	remaining: 5.53s
66:	learn: 34.1087294	total: 1.59s	remaining: 5.54s
67:	learn: 33.9503280	total: 1.62s	remaining: 5.51s
68:	learn: 33.8184729	total: 1.64s	remaining: 5.49s
69:	learn: 33.6278897	total: 1.66s	remaining: 5.46s
70:	learn: 33.4750481	total: 1.69s	remaining: 5.44s
71:	learn: 33.3216386	total: 1.72s	remaining: 5.45s
72:	learn: 33.1787868	total: 1.75s	remaining: 5.44s
73:	learn: 33.0207015	total: 1.77s	remaining: 5.42s
74:	learn: 32.8874907	total: 1.8s	remaining: 5.4s
75:	learn: 32.7368247	total: 1.82s	remaining: 5.38s
76:	learn: 32.6329647	total: 1.86s	remaining: 5.38s
77:	learn: 32.4984428	total: 1.88s	remaining: 5.35s
78:	learn: 32.3645588	total: 1.91s	remaining: 5.33s
79:	learn: 32.2140910	total: 1.94s	remaining: 5.33s
80:	learn: 32.1071328	total: 1.97s	remaining: 5.31s
81:	learn: 31.9594655	total: 1.99s	remaining: 5.29s
82:	learn: 31.8335545	total: 2.02s	remaining: 5.27s
83:	learn: 31.6941865	total: 2.04s	remaining: 5.25s
84:	learn: 31.5568398	total: 2.06s	remaining: 5.22s
85:	learn: 31.4241459	total: 2.09s	remaining: 5.2s
86:	learn: 31.2520769	total: 2.13s	remaining: 5.21s
87:	learn: 31.1305059	total: 2.16s	remaining: 5.21s
88:	learn: 30.9859239	total: 2.19s	remaining: 5.18s
89:	learn: 30.8609070	total: 2.21s	remaining: 5.16s
90:	learn: 30.7334170	total: 2.23s	remaining: 5.13s
91:	learn: 30.6026676	total: 2.26s	remaining: 5.11s
92:	learn: 30.4699786	total: 2.29s	remaining: 5.09s
93:	learn: 30.3354713	total: 2.31s	remaining: 5.06s
94:	learn: 30.1962656	total: 2.35s	remaining: 5.06s
95:	learn: 30.0840378	total: 2.37s	remaining: 5.04s
96:	learn: 29.9769788	total: 2.4s	remaining: 5.04s
97:	learn: 29.8484424	total: 2.43s	remaining: 5.01s
98:	learn: 29.7170503	total: 2.46s	remaining: 4.99s
99:	learn: 29.6074100	total: 2.48s	remaining: 4.96s
100:	learn: 29.4778106	total: 2.5s	remaining: 4.93s
101:	learn: 29.3374186	total: 2.52s	remaining: 4.9s
102:	learn: 29.2080076	total: 2.55s	remaining: 4.88s
103:	learn: 29.0873312	total: 2.59s	remaining: 4.87s
104:	learn: 28.9927551	total: 2.61s	remaining: 4.85s
105:	learn: 28.8317474	total: 2.64s	remaining: 4.83s
106:	learn: 28.7062652	total: 2.67s	remaining: 4.81s
107:	learn: 28.5773284	total: 2.69s	remaining: 4.79s
108:	learn: 28.4953947	total: 2.72s	remaining: 4.76s
109:	learn: 28.3602682	total: 2.74s	remaining: 4.73s
110:	learn: 28.2333815	total: 2.77s	remaining: 4.71s
111:	learn: 28.1240955	total: 2.8s	remaining: 4.69s
112:	learn: 28.0042081	total: 2.82s	remaining: 4.67s
113:	learn: 27.8755833	total: 2.85s	remaining: 4.64s
114:	learn: 27.7391286	total: 2.87s	remaining: 4.62s
115:	learn: 27.6288646	total: 2.9s	remaining: 4.59s
116:	learn: 27.5138297	total: 2.92s	remaining: 4.58s
117:	learn: 27.4048303	total: 2.95s	remaining: 4.55s
118:	learn: 27.2873207	total: 2.97s	remaining: 4.52s
119:	learn: 27.1580436	total: 3.01s	remaining: 4.51s
120:	learn: 27.0229609	total: 3.04s	remaining: 4.49s
121:	learn: 26.9179110	total: 3.06s	remaining: 4.46s
122:	learn: 26.7866067	total: 3.08s	remaining: 4.44s
123:	learn: 26.6723854	total: 3.11s	remaining: 4.41s
124:	learn: 26.5644705	total: 3.13s	remaining: 4.39s
125:	learn: 26.4683380	total: 3.16s	remaining: 4.37s
126:	learn: 26.3651594	total: 3.2s	remaining: 4.36s
127:	learn: 26.2423427	total: 3.23s	remaining: 4.34s
128:	learn: 26.1392360	total: 3.25s	remaining: 4.31s
129:	learn: 26.0364868	total: 3.28s	remaining: 4.29s
130:	learn: 25.9462554	total: 3.3s	remaining: 4.26s
131:	learn: 25.8200905	total: 3.33s	remaining: 4.24s
132:	learn: 25.7327936	total: 3.35s	remaining: 4.21s
133:	learn: 25.6651491	total: 3.38s	remaining: 4.18s
134:	learn: 25.5503487	total: 3.4s	remaining: 4.16s
135:	learn: 25.4384941	total: 3.43s	remaining: 4.14s
136:	learn: 25.3274461	total: 3.47s	remaining: 4.13s
137:	learn: 25.2392392	total: 3.49s	remaining: 4.1s
138:	learn: 25.1575283	total: 3.52s	remaining: 4.07s
139:	learn: 25.0580534	total: 3.54s	remaining: 4.05s
140:	learn: 24.9561545	total: 3.57s	remaining: 4.02s
141:	learn: 24.8525353	total: 3.59s	remaining: 3.99s
142:	learn: 24.7244185	total: 3.61s	remaining: 3.97s
143:	learn: 24.6347464	total: 3.64s	remaining: 3.95s
144:	learn: 24.5284082	total: 3.67s	remaining: 3.92s
145:	learn: 24.4410314	total: 3.7s	remaining: 3.9s
146:	learn: 24.3411270	total: 3.73s	remaining: 3.88s
147:	learn: 24.2571404	total: 3.75s	remaining: 3.85s
148:	learn: 24.1664004	total: 3.78s	remaining: 3.83s
149:	learn: 24.0921663	total: 3.8s	remaining: 3.8s
150:	learn: 24.0000920	total: 3.83s	remaining: 3.78s
151:	learn: 23.8989061	total: 3.86s	remaining: 3.76s
152:	learn: 23.8051021	total: 3.88s	remaining: 3.73s
153:	learn: 23.7140777	total: 3.91s	remaining: 3.71s
154:	learn: 23.6350863	total: 3.93s	remaining: 3.68s
155:	learn: 23.5453185	total: 3.96s	remaining: 3.65s
156:	learn: 23.4762777	total: 3.99s	remaining: 3.63s
157:	learn: 23.3964371	total: 4.01s	remaining: 3.6s
158:	learn: 23.3060877	total: 4.04s	remaining: 3.58s
159:	learn: 23.2410717	total: 4.07s	remaining: 3.56s
160:	learn: 23.1461269	total: 4.09s	remaining: 3.53s
161:	learn: 23.0550190	total: 4.12s	remaining: 3.51s
162:	learn: 22.9862832	total: 4.14s	remaining: 3.48s
163:	learn: 22.8730849	total: 4.17s	remaining: 3.46s
164:	learn: 22.7831631	total: 4.19s	remaining: 3.43s
165:	learn: 22.7121818	total: 4.22s	remaining: 3.4s
166:	learn: 22.6202215	total: 4.25s	remaining: 3.38s
167:	learn: 22.5433563	total: 4.28s	remaining: 3.36s
168:	learn: 22.4588142	total: 4.31s	remaining: 3.34s
169:	learn: 22.4211462	total: 4.31s	remaining: 3.3s
170:	learn: 22.3368333	total: 4.34s	remaining: 3.27s
171:	learn: 22.2529400	total: 4.36s	remaining: 3.25s
172:	learn: 22.1796508	total: 4.39s	remaining: 3.22s
173:	learn: 22.1038400	total: 4.41s	remaining: 3.19s
174:	learn: 22.0214875	total: 4.44s	remaining: 3.17s
175:	learn: 21.9596201	total: 4.46s	remaining: 3.14s
176:	learn: 21.9047679	total: 4.5s	remaining: 3.13s
177:	learn: 21.8305329	total: 4.53s	remaining: 3.11s
178:	learn: 21.7474635	total: 4.56s	remaining: 3.08s
179:	learn: 21.6838637	total: 4.58s	remaining: 3.06s
180:	learn: 21.6231038	total: 4.61s	remaining: 3.03s
181:	learn: 21.5530991	total: 4.63s	remaining: 3s
182:	learn: 21.4744081	total: 4.65s	remaining: 2.97s
183:	learn: 21.4002206	total: 4.68s	remaining: 2.95s
184:	learn: 21.3311448	total: 4.71s	remaining: 2.93s
185:	learn: 21.2663373	total: 4.74s	remaining: 2.9s
186:	learn: 21.1872896	total: 4.76s	remaining: 2.88s
187:	learn: 21.1149449	total: 4.8s	remaining: 2.86s
188:	learn: 21.0395139	total: 4.82s	remaining: 2.83s
189:	learn: 20.9687164	total: 4.85s	remaining: 2.81s
190:	learn: 20.9310992	total: 4.87s	remaining: 2.78s
191:	learn: 20.8588045	total: 4.9s	remaining: 2.76s
192:	learn: 20.8068052	total: 4.93s	remaining: 2.73s
193:	learn: 20.7445460	total: 4.96s	remaining: 2.71s
194:	learn: 20.6840110	total: 4.98s	remaining: 2.68s
195:	learn: 20.6281417	total: 5.01s	remaining: 2.66s
196:	learn: 20.5604201	total: 5.03s	remaining: 2.63s
197:	learn: 20.4807570	total: 5.06s	remaining: 2.61s
198:	learn: 20.4340054	total: 5.09s	remaining: 2.58s
199:	learn: 20.3819010	total: 5.11s	remaining: 2.56s
200:	learn: 20.3209962	total: 5.14s	remaining: 2.53s
201:	learn: 20.2680186	total: 5.17s	remaining: 2.51s
202:	learn: 20.2024573	total: 5.2s	remaining: 2.48s
203:	learn: 20.1283892	total: 5.22s	remaining: 2.46s
204:	learn: 20.0617914	total: 5.25s	remaining: 2.43s
205:	learn: 20.0011232	total: 5.27s	remaining: 2.41s
206:	learn: 19.9478089	total: 5.3s	remaining: 2.38s
207:	learn: 19.8811498	total: 5.33s	remaining: 2.36s
208:	learn: 19.8266470	total: 5.37s	remaining: 2.34s
209:	learn: 19.7584260	total: 5.4s	remaining: 2.31s
210:	learn: 19.6930201	total: 5.42s	remaining: 2.29s
211:	learn: 19.6371133	total: 5.45s	remaining: 2.26s
212:	learn: 19.5792826	total: 5.47s	remaining: 2.24s
213:	learn: 19.5165282	total: 5.5s	remaining: 2.21s
214:	learn: 19.4647405	total: 5.52s	remaining: 2.18s
215:	learn: 19.4045396	total: 5.55s	remaining: 2.16s
216:	learn: 19.3395383	total: 5.59s	remaining: 2.14s
217:	learn: 19.2771112	total: 5.62s	remaining: 2.11s
218:	learn: 19.2295294	total: 5.64s	remaining: 2.09s
219:	learn: 19.1755119	total: 5.67s	remaining: 2.06s
220:	learn: 19.1226534	total: 5.69s	remaining: 2.03s
221:	learn: 19.0487891	total: 5.71s	remaining: 2.01s
222:	learn: 19.0058991	total: 5.74s	remaining: 1.98s
223:	learn: 18.9460485	total: 5.76s	remaining: 1.96s
224:	learn: 18.9073701	total: 5.8s	remaining: 1.93s
225:	learn: 18.8677507	total: 5.82s	remaining: 1.91s
226:	learn: 18.8163333	total: 5.85s	remaining: 1.88s
227:	learn: 18.7679599	total: 5.88s	remaining: 1.86s
228:	learn: 18.7165756	total: 5.9s	remaining: 1.83s
229:	learn: 18.6605125	total: 5.93s	remaining: 1.8s
230:	learn: 18.6094425	total: 5.95s	remaining: 1.78s
231:	learn: 18.5576484	total: 5.98s	remaining: 1.75s
232:	learn: 18.5012159	total: 6.01s	remaining: 1.73s
233:	learn: 18.4593166	total: 6.04s	remaining: 1.7s
234:	learn: 18.4031765	total: 6.06s	remaining: 1.68s
235:	learn: 18.3459023	total: 6.09s	remaining: 1.65s
236:	learn: 18.3172764	total: 6.12s	remaining: 1.63s
237:	learn: 18.2472206	total: 6.15s	remaining: 1.6s
238:	learn: 18.1862965	total: 6.17s	remaining: 1.57s
239:	learn: 18.1146012	total: 6.2s	remaining: 1.55s
240:	learn: 18.0588447	total: 6.23s	remaining: 1.52s
241:	learn: 17.9987516	total: 6.25s	remaining: 1.5s
242:	learn: 17.9467371	total: 6.28s	remaining: 1.47s
243:	learn: 17.8837781	total: 6.3s	remaining: 1.45s
244:	learn: 17.8212642	total: 6.33s	remaining: 1.42s
245:	learn: 17.7759243	total: 6.35s	remaining: 1.39s
246:	learn: 17.7295650	total: 6.38s	remaining: 1.37s
247:	learn: 17.6805280	total: 6.41s	remaining: 1.34s
248:	learn: 17.6305571	total: 6.44s	remaining: 1.32s
249:	learn: 17.5806734	total: 6.46s	remaining: 1.29s
250:	learn: 17.5364826	total: 6.49s	remaining: 1.27s
251:	learn: 17.4937797	total: 6.51s	remaining: 1.24s
252:	learn: 17.4449942	total: 6.54s	remaining: 1.21s
253:	learn: 17.3822018	total: 6.56s	remaining: 1.19s
254:	learn: 17.3321374	total: 6.59s	remaining: 1.16s
255:	learn: 17.2925645	total: 6.61s	remaining: 1.14s
256:	learn: 17.2538857	total: 6.66s	remaining: 1.11s
257:	learn: 17.2041105	total: 6.68s	remaining: 1.09s
258:	learn: 17.1456541	total: 6.71s	remaining: 1.06s
259:	learn: 17.1038623	total: 6.73s	remaining: 1.03s
260:	learn: 17.0447376	total: 6.75s	remaining: 1.01s
261:	learn: 17.0034981	total: 6.78s	remaining: 983ms
262:	learn: 16.9567643	total: 6.8s	remaining: 957ms
263:	learn: 16.9020578	total: 6.83s	remaining: 932ms
264:	learn: 16.8585850	total: 6.87s	remaining: 907ms
265:	learn: 16.8171458	total: 6.89s	remaining: 881ms
266:	learn: 16.7669542	total: 6.92s	remaining: 856ms
267:	learn: 16.7328560	total: 6.95s	remaining: 830ms
268:	learn: 16.6990433	total: 6.97s	remaining: 804ms
269:	learn: 16.6540554	total: 7s	remaining: 778ms
270:	learn: 16.6103987	total: 7.02s	remaining: 752ms
271:	learn: 16.5748192	total: 7.05s	remaining: 726ms
272:	learn: 16.5429372	total: 7.08s	remaining: 701ms
273:	learn: 16.5072397	total: 7.11s	remaining: 675ms
274:	learn: 16.4684978	total: 7.13s	remaining: 649ms
275:	learn: 16.4457766	total: 7.16s	remaining: 623ms
276:	learn: 16.4054138	total: 7.19s	remaining: 597ms
277:	learn: 16.3748248	total: 7.22s	remaining: 571ms
278:	learn: 16.3461752	total: 7.24s	remaining: 545ms
279:	learn: 16.2936436	total: 7.27s	remaining: 519ms
280:	learn: 16.2559779	total: 7.3s	remaining: 494ms
281:	learn: 16.2154264	total: 7.32s	remaining: 468ms
282:	learn: 16.1817521	total: 7.35s	remaining: 441ms
283:	learn: 16.1315295	total: 7.37s	remaining: 415ms
284:	learn: 16.0866868	total: 7.4s	remaining: 389ms
285:	learn: 16.0685868	total: 7.42s	remaining: 363ms
286:	learn: 16.0419346	total: 7.45s	remaining: 337ms
287:	learn: 16.0027886	total: 7.48s	remaining: 312ms
288:	learn: 15.9500871	total: 7.51s	remaining: 286ms
289:	learn: 15.9068464	total: 7.54s	remaining: 260ms
290:	learn: 15.8654849	total: 7.56s	remaining: 234ms
291:	learn: 15.8182506	total: 7.59s	remaining: 208ms
292:	learn: 15.7932566	total: 7.61s	remaining: 182ms
293:	learn: 15.7496330	total: 7.63s	remaining: 156ms
294:	learn: 15.7060484	total: 7.66s	remaining: 130ms
295:	learn: 15.6582263	total: 7.68s	remaining: 104ms
296:	learn: 15.6325770	total: 7.72s	remaining: 78ms
297:	learn: 15.6045661	total: 7.75s	remaining: 52ms
298:	learn: 15.5716255	total: 7.77s	remaining: 26ms
299:	learn: 15.5476987	total: 7.8s	remaining: 0us
0:	learn: 27.5585353	total: 5.28ms	remaining: 523ms
1:	learn: 27.1656995	total: 9.56ms	remaining: 469ms
2:	learn: 26.8590175	total: 14.8ms	remaining: 480ms
3:	learn: 26.5818406	total: 21.7ms	remaining: 521ms
4:	learn: 26.1148663	total: 29.3ms	remaining: 556ms
5:	learn: 25.7690484	total: 36.9ms	remaining: 577ms
6:	learn: 25.3489206	total: 44.6ms	remaining: 592ms
7:	learn: 24.9542406	total: 50.1ms	remaining: 576ms
8:	learn: 24.6777517	total: 55.2ms	remaining: 558ms
9:	learn: 24.3242344	total: 60.3ms	remaining: 543ms
10:	learn: 24.0383073	total: 65.4ms	remaining: 529ms
11:	learn: 23.7383420	total: 70.6ms	remaining: 518ms
12:	learn: 23.3461670	total: 75.6ms	remaining: 506ms
13:	learn: 23.0928636	total: 80.6ms	remaining: 495ms
14:	learn: 22.8770414	total: 86.5ms	remaining: 490ms
15:	learn: 22.6323214	total: 91.4ms	remaining: 480ms
16:	learn: 22.3597072	total: 96.7ms	remaining: 472ms
17:	learn: 22.1079813	total: 102ms	remaining: 464ms
18:	learn: 21.8421199	total: 106ms	remaining: 453ms
19:	learn: 21.6576508	total: 111ms	remaining: 446ms
20:	learn: 21.4301268	total: 117ms	remaining: 441ms
21:	learn: 21.2287388	total: 122ms	remaining: 432ms
22:	learn: 21.0553872	total: 126ms	remaining: 422ms
23:	learn: 20.8977091	total: 130ms	remaining: 413ms
24:	learn: 20.6619051	total: 135ms	remaining: 404ms
25:	learn: 20.5040955	total: 139ms	remaining: 395ms
26:	learn: 20.3181195	total: 143ms	remaining: 386ms
27:	learn: 20.0869436	total: 147ms	remaining: 378ms
28:	learn: 19.9375985	total: 151ms	remaining: 371ms
29:	learn: 19.8247516	total: 156ms	remaining: 364ms
30:	learn: 19.6261697	total: 160ms	remaining: 356ms
31:	learn: 19.4547236	total: 164ms	remaining: 349ms
32:	learn: 19.3157092	total: 168ms	remaining: 342ms
33:	learn: 19.1561419	total: 173ms	remaining: 335ms
34:	learn: 19.0453620	total: 177ms	remaining: 328ms
35:	learn: 18.8738574	total: 181ms	remaining: 322ms
36:	learn: 18.7072907	total: 185ms	remaining: 315ms
37:	learn: 18.5877943	total: 190ms	remaining: 310ms
38:	learn: 18.4436380	total: 195ms	remaining: 305ms
39:	learn: 18.3463356	total: 200ms	remaining: 299ms
40:	learn: 18.2008059	total: 204ms	remaining: 294ms
41:	learn: 18.0582079	total: 209ms	remaining: 289ms
42:	learn: 17.8891982	total: 215ms	remaining: 285ms
43:	learn: 17.7332246	total: 219ms	remaining: 279ms
44:	learn: 17.6206421	total: 224ms	remaining: 274ms
45:	learn: 17.4982800	total: 229ms	remaining: 269ms
46:	learn: 17.3970150	total: 234ms	remaining: 263ms
47:	learn: 17.3058203	total: 239ms	remaining: 258ms
48:	learn: 17.1789256	total: 243ms	remaining: 253ms
49:	learn: 17.0916229	total: 248ms	remaining: 248ms
50:	learn: 16.9859820	total: 252ms	remaining: 243ms
51:	learn: 16.8995582	total: 257ms	remaining: 237ms
52:	learn: 16.8137014	total: 264ms	remaining: 234ms
53:	learn: 16.7021451	total: 271ms	remaining: 231ms
54:	learn: 16.5895582	total: 278ms	remaining: 228ms
55:	learn: 16.5015639	total: 285ms	remaining: 224ms
56:	learn: 16.4356637	total: 293ms	remaining: 221ms
57:	learn: 16.3514525	total: 299ms	remaining: 216ms
58:	learn: 16.2401369	total: 304ms	remaining: 211ms
59:	learn: 16.1293223	total: 309ms	remaining: 206ms
60:	learn: 16.0271167	total: 314ms	remaining: 201ms
61:	learn: 15.9126257	total: 319ms	remaining: 196ms
62:	learn: 15.8391096	total: 325ms	remaining: 191ms
63:	learn: 15.7441773	total: 330ms	remaining: 186ms
64:	learn: 15.6885195	total: 335ms	remaining: 180ms
65:	learn: 15.6052039	total: 340ms	remaining: 175ms
66:	learn: 15.5074202	total: 345ms	remaining: 170ms
67:	learn: 15.4054338	total: 351ms	remaining: 165ms
68:	learn: 15.2885714	total: 356ms	remaining: 160ms
69:	learn: 15.2157472	total: 362ms	remaining: 155ms
70:	learn: 15.1031554	total: 367ms	remaining: 150ms
71:	learn: 15.0237470	total: 372ms	remaining: 145ms
72:	learn: 14.9756825	total: 376ms	remaining: 139ms
73:	learn: 14.8840596	total: 381ms	remaining: 134ms
74:	learn: 14.8077061	total: 385ms	remaining: 128ms
75:	learn: 14.7444437	total: 389ms	remaining: 123ms
76:	learn: 14.6751720	total: 393ms	remaining: 117ms
77:	learn: 14.5830333	total: 397ms	remaining: 112ms
78:	learn: 14.5241206	total: 402ms	remaining: 107ms
79:	learn: 14.4892731	total: 406ms	remaining: 102ms
80:	learn: 14.4256605	total: 410ms	remaining: 96.3ms
81:	learn: 14.3666860	total: 415ms	remaining: 91.1ms
82:	learn: 14.2938372	total: 420ms	remaining: 85.9ms
83:	learn: 14.2161532	total: 424ms	remaining: 80.8ms
84:	learn: 14.1582910	total: 428ms	remaining: 75.6ms
85:	learn: 14.1029153	total: 433ms	remaining: 70.5ms
86:	learn: 14.0475835	total: 438ms	remaining: 65.4ms
87:	learn: 13.9892661	total: 442ms	remaining: 60.3ms
88:	learn: 13.9481628	total: 448ms	remaining: 55.3ms
89:	learn: 13.8483991	total: 452ms	remaining: 50.2ms
90:	learn: 13.7775614	total: 456ms	remaining: 45.1ms
91:	learn: 13.7304585	total: 461ms	remaining: 40.1ms
92:	learn: 13.6783381	total: 468ms	remaining: 35.2ms
93:	learn: 13.6356964	total: 475ms	remaining: 30.3ms
94:	learn: 13.5924371	total: 484ms	remaining: 25.5ms
95:	learn: 13.5400746	total: 491ms	remaining: 20.4ms
96:	learn: 13.4897333	total: 498ms	remaining: 15.4ms
97:	learn: 13.4470321	total: 503ms	remaining: 10.3ms
98:	learn: 13.3856082	total: 509ms	remaining: 5.14ms
99:	learn: 13.3082371	total: 514ms	remaining: 0us
0:	learn: 43.0395283	total: 4.86ms	remaining: 481ms
1:	learn: 42.1130223	total: 9.02ms	remaining: 442ms
2:	learn: 41.1753409	total: 13.7ms	remaining: 442ms
3:	learn: 40.3637444	total: 17.5ms	remaining: 420ms
4:	learn: 39.6508088	total: 21.8ms	remaining: 415ms
5:	learn: 38.7217934	total: 26ms	remaining: 408ms
6:	learn: 37.8538055	total: 30.2ms	remaining: 402ms
7:	learn: 36.9793574	total: 34.3ms	remaining: 395ms
8:	learn: 36.3076984	total: 38.8ms	remaining: 392ms
9:	learn: 35.6673160	total: 42.9ms	remaining: 386ms
10:	learn: 34.8889800	total: 47.4ms	remaining: 383ms
11:	learn: 34.1675517	total: 51.5ms	remaining: 378ms
12:	learn: 33.6779564	total: 56.5ms	remaining: 378ms
13:	learn: 33.0710039	total: 60.9ms	remaining: 374ms
14:	learn: 32.4966674	total: 65.1ms	remaining: 369ms
15:	learn: 31.9492856	total: 69.1ms	remaining: 363ms
16:	learn: 31.5108129	total: 73.8ms	remaining: 361ms
17:	learn: 30.9804023	total: 78.4ms	remaining: 357ms
18:	learn: 30.4169089	total: 83.2ms	remaining: 355ms
19:	learn: 29.8930375	total: 87.6ms	remaining: 350ms
20:	learn: 29.3974421	total: 92.1ms	remaining: 346ms
21:	learn: 28.8792307	total: 96.7ms	remaining: 343ms
22:	learn: 28.3894474	total: 101ms	remaining: 340ms
23:	learn: 27.9921276	total: 108ms	remaining: 341ms
24:	learn: 27.6158887	total: 117ms	remaining: 351ms
25:	learn: 27.2866950	total: 127ms	remaining: 362ms
26:	learn: 26.8770708	total: 135ms	remaining: 365ms
27:	learn: 26.6233005	total: 143ms	remaining: 368ms
28:	learn: 26.2921934	total: 148ms	remaining: 363ms
29:	learn: 25.9156920	total: 154ms	remaining: 358ms
30:	learn: 25.5311106	total: 156ms	remaining: 346ms
31:	learn: 25.2178997	total: 161ms	remaining: 343ms
32:	learn: 24.8572196	total: 167ms	remaining: 339ms
33:	learn: 24.5849710	total: 172ms	remaining: 335ms
34:	learn: 24.2209190	total: 178ms	remaining: 330ms
35:	learn: 23.8708250	total: 183ms	remaining: 325ms
36:	learn: 23.5325279	total: 188ms	remaining: 319ms
37:	learn: 23.2116148	total: 193ms	remaining: 314ms
38:	learn: 22.9696787	total: 197ms	remaining: 309ms
39:	learn: 22.7936783	total: 203ms	remaining: 304ms
40:	learn: 22.6228847	total: 208ms	remaining: 299ms
41:	learn: 22.3691527	total: 213ms	remaining: 295ms
42:	learn: 22.1002173	total: 217ms	remaining: 288ms
43:	learn: 21.9157268	total: 222ms	remaining: 282ms
44:	learn: 21.7229102	total: 226ms	remaining: 277ms
45:	learn: 21.4642005	total: 230ms	remaining: 270ms
46:	learn: 21.3029442	total: 234ms	remaining: 264ms
47:	learn: 21.1469792	total: 239ms	remaining: 259ms
48:	learn: 20.9458235	total: 243ms	remaining: 253ms
49:	learn: 20.7335242	total: 247ms	remaining: 247ms
50:	learn: 20.5440269	total: 252ms	remaining: 242ms
51:	learn: 20.3661449	total: 257ms	remaining: 237ms
52:	learn: 20.2158134	total: 261ms	remaining: 231ms
53:	learn: 19.9934873	total: 265ms	remaining: 226ms
54:	learn: 19.7879739	total: 270ms	remaining: 221ms
55:	learn: 19.6630460	total: 275ms	remaining: 216ms
56:	learn: 19.5152729	total: 280ms	remaining: 211ms
57:	learn: 19.3581128	total: 284ms	remaining: 206ms
58:	learn: 19.2209303	total: 289ms	remaining: 201ms
59:	learn: 19.0965248	total: 293ms	remaining: 196ms
60:	learn: 19.0035954	total: 298ms	remaining: 190ms
61:	learn: 18.8554149	total: 303ms	remaining: 185ms
62:	learn: 18.7095427	total: 312ms	remaining: 183ms
63:	learn: 18.5751494	total: 319ms	remaining: 179ms
64:	learn: 18.4678251	total: 328ms	remaining: 176ms
65:	learn: 18.3500325	total: 336ms	remaining: 173ms
66:	learn: 18.2088983	total: 341ms	remaining: 168ms
67:	learn: 18.0737705	total: 346ms	remaining: 163ms
68:	learn: 17.9325058	total: 351ms	remaining: 158ms
69:	learn: 17.8003911	total: 356ms	remaining: 153ms
70:	learn: 17.7385366	total: 361ms	remaining: 148ms
71:	learn: 17.6106998	total: 366ms	remaining: 143ms
72:	learn: 17.4816270	total: 372ms	remaining: 138ms
73:	learn: 17.4025554	total: 391ms	remaining: 137ms
74:	learn: 17.2902108	total: 397ms	remaining: 132ms
75:	learn: 17.2158048	total: 402ms	remaining: 127ms
76:	learn: 17.1261053	total: 407ms	remaining: 121ms
77:	learn: 17.0308917	total: 411ms	remaining: 116ms
78:	learn: 16.9546705	total: 415ms	remaining: 110ms
79:	learn: 16.8319165	total: 420ms	remaining: 105ms
80:	learn: 16.7687017	total: 424ms	remaining: 99.4ms
81:	learn: 16.6972326	total: 428ms	remaining: 94ms
82:	learn: 16.6124580	total: 432ms	remaining: 88.6ms
83:	learn: 16.4999052	total: 437ms	remaining: 83.2ms
84:	learn: 16.4302484	total: 440ms	remaining: 77.7ms
85:	learn: 16.3201363	total: 444ms	remaining: 72.3ms
86:	learn: 16.2534314	total: 449ms	remaining: 67ms
87:	learn: 16.1720485	total: 453ms	remaining: 61.8ms
88:	learn: 16.0625751	total: 458ms	remaining: 56.6ms
89:	learn: 15.9135088	total: 462ms	remaining: 51.3ms
90:	learn: 15.8658863	total: 467ms	remaining: 46.1ms
91:	learn: 15.8066805	total: 471ms	remaining: 41ms
92:	learn: 15.7412103	total: 476ms	remaining: 35.8ms
93:	learn: 15.6542776	total: 481ms	remaining: 30.7ms
94:	learn: 15.5760334	total: 485ms	remaining: 25.6ms
95:	learn: 15.5434131	total: 490ms	remaining: 20.4ms
96:	learn: 15.4709561	total: 495ms	remaining: 15.3ms
97:	learn: 15.4449618	total: 499ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 507ms	remaining: 5.12ms
99:	learn: 15.3106595	total: 515ms	remaining: 0us
0:	learn: 46.7142257	total: 5.92ms	remaining: 586ms
1:	learn: 45.7634153	total: 11.2ms	remaining: 548ms
2:	learn: 45.0054253	total: 16ms	remaining: 517ms
3:	learn: 44.2120432	total: 21.3ms	remaining: 511ms
4:	learn: 43.3960472	total: 27.2ms	remaining: 517ms
5:	learn: 42.8588120	total: 32ms	remaining: 502ms
6:	learn: 41.9533701	total: 36.4ms	remaining: 483ms
7:	learn: 41.2745030	total: 41ms	remaining: 472ms
8:	learn: 40.6797495	total: 46ms	remaining: 465ms
9:	learn: 39.9899571	total: 50.9ms	remaining: 458ms
10:	learn: 39.4682100	total: 55.7ms	remaining: 451ms
11:	learn: 39.0305595	total: 60.5ms	remaining: 444ms
12:	learn: 38.4200417	total: 65.3ms	remaining: 437ms
13:	learn: 37.8425194	total: 70.2ms	remaining: 431ms
14:	learn: 37.4203127	total: 75.1ms	remaining: 425ms
15:	learn: 36.9917688	total: 79.7ms	remaining: 419ms
16:	learn: 36.5544138	total: 83.9ms	remaining: 410ms
17:	learn: 36.0727019	total: 88.7ms	remaining: 404ms
18:	learn: 35.4835715	total: 93.2ms	remaining: 397ms
19:	learn: 34.9865654	total: 97.6ms	remaining: 391ms
20:	learn: 34.6063373	total: 102ms	remaining: 385ms
21:	learn: 34.0997289	total: 107ms	remaining: 379ms
22:	learn: 33.7313171	total: 112ms	remaining: 374ms
23:	learn: 33.3582000	total: 116ms	remaining: 368ms
24:	learn: 32.9432456	total: 121ms	remaining: 363ms
25:	learn: 32.5220888	total: 126ms	remaining: 357ms
26:	learn: 32.2172292	total: 131ms	remaining: 353ms
27:	learn: 31.8972904	total: 135ms	remaining: 347ms
28:	learn: 31.6405350	total: 144ms	remaining: 354ms
29:	learn: 31.4167702	total: 152ms	remaining: 355ms
30:	learn: 30.8541961	total: 156ms	remaining: 348ms
31:	learn: 30.5572111	total: 163ms	remaining: 346ms
32:	learn: 30.1700399	total: 171ms	remaining: 347ms
33:	learn: 29.8537271	total: 176ms	remaining: 342ms
34:	learn: 29.6192540	total: 181ms	remaining: 337ms
35:	learn: 29.3276362	total: 187ms	remaining: 332ms
36:	learn: 28.9985179	total: 192ms	remaining: 326ms
37:	learn: 28.7046880	total: 197ms	remaining: 321ms
38:	learn: 28.4412677	total: 202ms	remaining: 316ms
39:	learn: 28.1277292	total: 207ms	remaining: 311ms
40:	learn: 27.9000750	total: 213ms	remaining: 306ms
41:	learn: 27.5433162	total: 218ms	remaining: 301ms
42:	learn: 27.2493285	total: 223ms	remaining: 296ms
43:	learn: 26.9576632	total: 225ms	remaining: 286ms
44:	learn: 26.6177110	total: 230ms	remaining: 281ms
45:	learn: 26.2812456	total: 235ms	remaining: 276ms
46:	learn: 26.0803859	total: 241ms	remaining: 271ms
47:	learn: 25.9543581	total: 245ms	remaining: 265ms
48:	learn: 25.7951582	total: 249ms	remaining: 259ms
49:	learn: 25.6548184	total: 253ms	remaining: 253ms
50:	learn: 25.4010843	total: 258ms	remaining: 248ms
51:	learn: 24.9773937	total: 262ms	remaining: 242ms
52:	learn: 24.8026156	total: 266ms	remaining: 236ms
53:	learn: 24.5568053	total: 271ms	remaining: 231ms
54:	learn: 24.2281839	total: 275ms	remaining: 225ms
55:	learn: 23.9202795	total: 279ms	remaining: 219ms
56:	learn: 23.7625591	total: 283ms	remaining: 214ms
57:	learn: 23.5429721	total: 288ms	remaining: 209ms
58:	learn: 23.3175893	total: 292ms	remaining: 203ms
59:	learn: 23.2035130	total: 296ms	remaining: 198ms
60:	learn: 23.0232450	total: 301ms	remaining: 192ms
61:	learn: 22.8384958	total: 305ms	remaining: 187ms
62:	learn: 22.6499902	total: 310ms	remaining: 182ms
63:	learn: 22.4577426	total: 315ms	remaining: 177ms
64:	learn: 22.3333158	total: 320ms	remaining: 172ms
65:	learn: 22.2064131	total: 324ms	remaining: 167ms
66:	learn: 22.1434971	total: 329ms	remaining: 162ms
67:	learn: 21.9596519	total: 333ms	remaining: 157ms
68:	learn: 21.8475576	total: 341ms	remaining: 153ms
69:	learn: 21.6954745	total: 349ms	remaining: 150ms
70:	learn: 21.5635976	total: 358ms	remaining: 146ms
71:	learn: 21.4588506	total: 364ms	remaining: 142ms
72:	learn: 21.3527268	total: 372ms	remaining: 137ms
73:	learn: 21.2661288	total: 377ms	remaining: 132ms
74:	learn: 21.1817333	total: 382ms	remaining: 127ms
75:	learn: 21.0527553	total: 387ms	remaining: 122ms
76:	learn: 20.9229021	total: 392ms	remaining: 117ms
77:	learn: 20.7563946	total: 397ms	remaining: 112ms
78:	learn: 20.6569831	total: 402ms	remaining: 107ms
79:	learn: 20.4982663	total: 408ms	remaining: 102ms
80:	learn: 20.3185460	total: 413ms	remaining: 96.9ms
81:	learn: 20.2096241	total: 418ms	remaining: 91.8ms
82:	learn: 20.1274891	total: 423ms	remaining: 86.7ms
83:	learn: 20.0740139	total: 428ms	remaining: 81.6ms
84:	learn: 19.9630699	total: 433ms	remaining: 76.5ms
85:	learn: 19.8753899	total: 439ms	remaining: 71.4ms
86:	learn: 19.6563612	total: 443ms	remaining: 66.2ms
87:	learn: 19.4680232	total: 448ms	remaining: 61ms
88:	learn: 19.3503431	total: 452ms	remaining: 55.8ms
89:	learn: 19.2221379	total: 456ms	remaining: 50.7ms
90:	learn: 19.0732542	total: 460ms	remaining: 45.5ms
91:	learn: 18.9825190	total: 464ms	remaining: 40.4ms
92:	learn: 18.8839009	total: 469ms	remaining: 35.3ms
93:	learn: 18.8012219	total: 473ms	remaining: 30.2ms
94:	learn: 18.7172713	total: 477ms	remaining: 25.1ms
95:	learn: 18.6201170	total: 482ms	remaining: 20.1ms
96:	learn: 18.5318611	total: 486ms	remaining: 15ms
97:	learn: 18.3833356	total: 490ms	remaining: 10ms
98:	learn: 18.3289700	total: 495ms	remaining: 5ms
99:	learn: 18.2227333	total: 499ms	remaining: 0us
0:	learn: 46.3764524	total: 8.11ms	remaining: 803ms
1:	learn: 45.5561269	total: 15.9ms	remaining: 777ms
2:	learn: 44.8811245	total: 23.8ms	remaining: 768ms
3:	learn: 44.0788617	total: 32ms	remaining: 768ms
4:	learn: 43.3619790	total: 37.8ms	remaining: 718ms
5:	learn: 42.6912112	total: 42.8ms	remaining: 671ms
6:	learn: 42.2292118	total: 48.3ms	remaining: 642ms
7:	learn: 41.7725191	total: 53.7ms	remaining: 618ms
8:	learn: 41.1676614	total: 58.7ms	remaining: 594ms
9:	learn: 40.5771076	total: 63.8ms	remaining: 575ms
10:	learn: 39.8343757	total: 69.5ms	remaining: 562ms
11:	learn: 39.3761142	total: 74.7ms	remaining: 547ms
12:	learn: 38.5254692	total: 79.9ms	remaining: 534ms
13:	learn: 37.9629555	total: 85.2ms	remaining: 524ms
14:	learn: 37.4418438	total: 89.8ms	remaining: 509ms
15:	learn: 37.0507283	total: 94.9ms	remaining: 498ms
16:	learn: 36.6264217	total: 100ms	remaining: 489ms
17:	learn: 36.1114940	total: 105ms	remaining: 479ms
18:	learn: 35.7193862	total: 110ms	remaining: 467ms
19:	learn: 35.3301177	total: 114ms	remaining: 458ms
20:	learn: 35.0598280	total: 119ms	remaining: 449ms
21:	learn: 34.5469736	total: 124ms	remaining: 441ms
22:	learn: 34.2064215	total: 129ms	remaining: 432ms
23:	learn: 33.7280710	total: 134ms	remaining: 423ms
24:	learn: 33.3282940	total: 138ms	remaining: 415ms
25:	learn: 32.8478961	total: 142ms	remaining: 405ms
26:	learn: 32.5722164	total: 147ms	remaining: 396ms
27:	learn: 32.2457019	total: 150ms	remaining: 387ms
28:	learn: 31.9230495	total: 155ms	remaining: 379ms
29:	learn: 31.4311611	total: 159ms	remaining: 372ms
30:	learn: 30.9179052	total: 163ms	remaining: 364ms
31:	learn: 30.6201141	total: 167ms	remaining: 356ms
32:	learn: 30.3421106	total: 172ms	remaining: 349ms
33:	learn: 29.9885373	total: 177ms	remaining: 343ms
34:	learn: 29.7462780	total: 181ms	remaining: 337ms
35:	learn: 29.3607153	total: 186ms	remaining: 331ms
36:	learn: 29.1793078	total: 191ms	remaining: 325ms
37:	learn: 28.9276538	total: 196ms	remaining: 319ms
38:	learn: 28.6903934	total: 201ms	remaining: 314ms
39:	learn: 28.2095033	total: 206ms	remaining: 308ms
40:	learn: 27.7990608	total: 214ms	remaining: 308ms
41:	learn: 27.5406632	total: 221ms	remaining: 305ms
42:	learn: 27.2575376	total: 230ms	remaining: 304ms
43:	learn: 26.9741707	total: 238ms	remaining: 303ms
44:	learn: 26.6606899	total: 243ms	remaining: 297ms
45:	learn: 26.4015833	total: 248ms	remaining: 292ms
46:	learn: 26.1828993	total: 253ms	remaining: 286ms
47:	learn: 26.0233709	total: 256ms	remaining: 278ms
48:	learn: 25.9300399	total: 261ms	remaining: 272ms
49:	learn: 25.5861489	total: 267ms	remaining: 267ms
50:	learn: 25.4322012	total: 272ms	remaining: 261ms
51:	learn: 25.1595644	total: 277ms	remaining: 256ms
52:	learn: 24.9955303	total: 282ms	remaining: 250ms
53:	learn: 24.7273966	total: 287ms	remaining: 244ms
54:	learn: 24.5747978	total: 292ms	remaining: 239ms
55:	learn: 24.3807977	total: 297ms	remaining: 234ms
56:	learn: 24.1689569	total: 303ms	remaining: 229ms
57:	learn: 23.9898221	total: 307ms	remaining: 223ms
58:	learn: 23.7566414	total: 312ms	remaining: 217ms
59:	learn: 23.6641165	total: 316ms	remaining: 210ms
60:	learn: 23.5658066	total: 319ms	remaining: 204ms
61:	learn: 23.4338851	total: 324ms	remaining: 198ms
62:	learn: 23.2408837	total: 328ms	remaining: 192ms
63:	learn: 23.0642038	total: 332ms	remaining: 186ms
64:	learn: 22.9032045	total: 336ms	remaining: 181ms
65:	learn: 22.7736138	total: 340ms	remaining: 175ms
66:	learn: 22.6836443	total: 344ms	remaining: 170ms
67:	learn: 22.5983654	total: 348ms	remaining: 164ms
68:	learn: 22.4419813	total: 353ms	remaining: 158ms
69:	learn: 22.2863339	total: 357ms	remaining: 153ms
70:	learn: 22.1792943	total: 361ms	remaining: 148ms
71:	learn: 22.1130574	total: 365ms	remaining: 142ms
72:	learn: 21.9858161	total: 370ms	remaining: 137ms
73:	learn: 21.8577784	total: 374ms	remaining: 131ms
74:	learn: 21.7845222	total: 378ms	remaining: 126ms
75:	learn: 21.6831390	total: 383ms	remaining: 121ms
76:	learn: 21.6292521	total: 387ms	remaining: 116ms
77:	learn: 21.5789330	total: 392ms	remaining: 110ms
78:	learn: 21.5420942	total: 396ms	remaining: 105ms
79:	learn: 21.4280939	total: 401ms	remaining: 100ms
80:	learn: 21.3641165	total: 408ms	remaining: 95.8ms
81:	learn: 21.2734814	total: 416ms	remaining: 91.4ms
82:	learn: 21.2220323	total: 425ms	remaining: 87ms
83:	learn: 21.0625792	total: 432ms	remaining: 82.4ms
84:	learn: 20.9488320	total: 438ms	remaining: 77.3ms
85:	learn: 20.8504255	total: 443ms	remaining: 72.1ms
86:	learn: 20.7848510	total: 448ms	remaining: 67ms
87:	learn: 20.7247442	total: 453ms	remaining: 61.8ms
88:	learn: 20.5698590	total: 458ms	remaining: 56.6ms
89:	learn: 20.4067620	total: 463ms	remaining: 51.5ms
90:	learn: 20.3062482	total: 468ms	remaining: 46.3ms
91:	learn: 20.2029696	total: 473ms	remaining: 41.2ms
92:	learn: 20.1384849	total: 479ms	remaining: 36ms
93:	learn: 20.0260709	total: 485ms	remaining: 30.9ms
94:	learn: 19.9122100	total: 490ms	remaining: 25.8ms
95:	learn: 19.8648487	total: 495ms	remaining: 20.6ms
96:	learn: 19.8207072	total: 501ms	remaining: 15.5ms
97:	learn: 19.7261189	total: 507ms	remaining: 10.3ms
98:	learn: 19.7042438	total: 511ms	remaining: 5.16ms
99:	learn: 19.6546645	total: 516ms	remaining: 0us
0:	learn: 47.0239288	total: 5.28ms	remaining: 523ms
1:	learn: 46.2253829	total: 9.52ms	remaining: 467ms
2:	learn: 45.5580301	total: 13.6ms	remaining: 439ms
3:	learn: 44.7273237	total: 18ms	remaining: 433ms
4:	learn: 43.8867421	total: 22.8ms	remaining: 433ms
5:	learn: 43.3615911	total: 27.6ms	remaining: 432ms
6:	learn: 42.8548390	total: 32.2ms	remaining: 428ms
7:	learn: 42.1606758	total: 36.4ms	remaining: 418ms
8:	learn: 41.6625870	total: 40.6ms	remaining: 410ms
9:	learn: 40.9497092	total: 44.9ms	remaining: 404ms
10:	learn: 40.1886318	total: 49.4ms	remaining: 400ms
11:	learn: 39.7456423	total: 53.9ms	remaining: 395ms
12:	learn: 39.1171373	total: 61.2ms	remaining: 410ms
13:	learn: 38.5451069	total: 68.6ms	remaining: 421ms
14:	learn: 38.0155834	total: 79ms	remaining: 448ms
15:	learn: 37.5631354	total: 85.1ms	remaining: 447ms
16:	learn: 37.1030023	total: 91.2ms	remaining: 445ms
17:	learn: 36.4563029	total: 96.3ms	remaining: 439ms
18:	learn: 36.0160976	total: 101ms	remaining: 432ms
19:	learn: 35.5079827	total: 107ms	remaining: 426ms
20:	learn: 35.2111885	total: 112ms	remaining: 421ms
21:	learn: 34.9397465	total: 117ms	remaining: 415ms
22:	learn: 34.5270048	total: 122ms	remaining: 407ms
23:	learn: 34.0169260	total: 127ms	remaining: 403ms
24:	learn: 33.7454892	total: 132ms	remaining: 397ms
25:	learn: 33.2648157	total: 138ms	remaining: 392ms
26:	learn: 32.8899427	total: 142ms	remaining: 385ms
27:	learn: 32.6185050	total: 147ms	remaining: 378ms
28:	learn: 32.3528531	total: 153ms	remaining: 374ms
29:	learn: 32.0859923	total: 158ms	remaining: 369ms
30:	learn: 31.6511144	total: 162ms	remaining: 361ms
31:	learn: 31.2571765	total: 166ms	remaining: 353ms
32:	learn: 30.9770049	total: 171ms	remaining: 346ms
33:	learn: 30.6084872	total: 175ms	remaining: 339ms
34:	learn: 30.3448632	total: 179ms	remaining: 332ms
35:	learn: 30.0360942	total: 183ms	remaining: 325ms
36:	learn: 29.6648968	total: 187ms	remaining: 319ms
37:	learn: 29.3165114	total: 192ms	remaining: 313ms
38:	learn: 29.0829198	total: 196ms	remaining: 307ms
39:	learn: 28.7752064	total: 200ms	remaining: 300ms
40:	learn: 28.3622191	total: 204ms	remaining: 294ms
41:	learn: 28.1346631	total: 209ms	remaining: 288ms
42:	learn: 27.9585719	total: 213ms	remaining: 282ms
43:	learn: 27.6565566	total: 218ms	remaining: 277ms
44:	learn: 27.3616172	total: 222ms	remaining: 271ms
45:	learn: 27.0658637	total: 226ms	remaining: 266ms
46:	learn: 26.8660382	total: 231ms	remaining: 260ms
47:	learn: 26.6536078	total: 236ms	remaining: 255ms
48:	learn: 26.3524440	total: 240ms	remaining: 250ms
49:	learn: 26.1595277	total: 244ms	remaining: 244ms
50:	learn: 25.9273523	total: 249ms	remaining: 239ms
51:	learn: 25.7195580	total: 255ms	remaining: 236ms
52:	learn: 25.5730225	total: 262ms	remaining: 233ms
53:	learn: 25.3455276	total: 270ms	remaining: 230ms
54:	learn: 25.2289675	total: 277ms	remaining: 227ms
55:	learn: 25.0133024	total: 285ms	remaining: 224ms
56:	learn: 24.8406714	total: 294ms	remaining: 222ms
57:	learn: 24.6367857	total: 299ms	remaining: 217ms
58:	learn: 24.5338177	total: 304ms	remaining: 211ms
59:	learn: 24.3799964	total: 325ms	remaining: 217ms
60:	learn: 24.1447492	total: 330ms	remaining: 211ms
61:	learn: 23.9880495	total: 336ms	remaining: 206ms
62:	learn: 23.7140630	total: 340ms	remaining: 200ms
63:	learn: 23.5003791	total: 346ms	remaining: 195ms
64:	learn: 23.3207645	total: 352ms	remaining: 189ms
65:	learn: 23.1958356	total: 356ms	remaining: 183ms
66:	learn: 23.0471302	total: 360ms	remaining: 177ms
67:	learn: 22.8977183	total: 364ms	remaining: 171ms
68:	learn: 22.7187400	total: 368ms	remaining: 165ms
69:	learn: 22.6523405	total: 372ms	remaining: 160ms
70:	learn: 22.4767453	total: 376ms	remaining: 154ms
71:	learn: 22.3243677	total: 380ms	remaining: 148ms
72:	learn: 22.2133096	total: 385ms	remaining: 142ms
73:	learn: 22.1151713	total: 389ms	remaining: 137ms
74:	learn: 22.0296666	total: 393ms	remaining: 131ms
75:	learn: 21.9195980	total: 397ms	remaining: 125ms
76:	learn: 21.8401730	total: 402ms	remaining: 120ms
77:	learn: 21.8079797	total: 406ms	remaining: 115ms
78:	learn: 21.7274109	total: 410ms	remaining: 109ms
79:	learn: 21.6663032	total: 414ms	remaining: 104ms
80:	learn: 21.5633117	total: 418ms	remaining: 98.2ms
81:	learn: 21.4542467	total: 423ms	remaining: 92.8ms
82:	learn: 21.3177957	total: 427ms	remaining: 87.6ms
83:	learn: 21.1289167	total: 433ms	remaining: 82.4ms
84:	learn: 21.0297368	total: 437ms	remaining: 77.2ms
85:	learn: 20.9089564	total: 442ms	remaining: 72ms
86:	learn: 20.7653988	total: 447ms	remaining: 66.7ms
87:	learn: 20.6521894	total: 452ms	remaining: 61.6ms
88:	learn: 20.5193021	total: 460ms	remaining: 56.8ms
89:	learn: 20.4361620	total: 467ms	remaining: 51.9ms
90:	learn: 20.3546710	total: 476ms	remaining: 47.1ms
91:	learn: 20.2513296	total: 484ms	remaining: 42.1ms
92:	learn: 20.1605550	total: 489ms	remaining: 36.8ms
93:	learn: 20.0515942	total: 495ms	remaining: 31.6ms
94:	learn: 19.9800764	total: 500ms	remaining: 26.3ms
95:	learn: 19.8996532	total: 506ms	remaining: 21.1ms
96:	learn: 19.8450910	total: 512ms	remaining: 15.8ms
97:	learn: 19.7887346	total: 517ms	remaining: 10.6ms
98:	learn: 19.7230872	total: 523ms	remaining: 5.28ms
99:	learn: 19.6328825	total: 528ms	remaining: 0us
0:	learn: 27.3776612	total: 20.6ms	remaining: 2.04s
1:	learn: 26.7619003	total: 42ms	remaining: 2.06s
2:	learn: 26.0057626	total: 63.7ms	remaining: 2.06s
3:	learn: 25.4280982	total: 86.2ms	remaining: 2.07s
4:	learn: 24.8347609	total: 117ms	remaining: 2.22s
5:	learn: 24.2526574	total: 148ms	remaining: 2.32s
6:	learn: 23.7478806	total: 172ms	remaining: 2.29s
7:	learn: 23.2677666	total: 195ms	remaining: 2.24s
8:	learn: 22.7564310	total: 218ms	remaining: 2.2s
9:	learn: 22.2873770	total: 241ms	remaining: 2.17s
10:	learn: 21.8088174	total: 263ms	remaining: 2.12s
11:	learn: 21.4086875	total: 286ms	remaining: 2.1s
12:	learn: 20.9489217	total: 309ms	remaining: 2.06s
13:	learn: 20.4585233	total: 341ms	remaining: 2.09s
14:	learn: 20.0177760	total: 367ms	remaining: 2.08s
15:	learn: 19.5981890	total: 392ms	remaining: 2.06s
16:	learn: 19.2041885	total: 425ms	remaining: 2.08s
17:	learn: 18.8422550	total: 448ms	remaining: 2.04s
18:	learn: 18.4774037	total: 469ms	remaining: 2s
19:	learn: 18.0931699	total: 490ms	remaining: 1.96s
20:	learn: 17.6856423	total: 513ms	remaining: 1.93s
21:	learn: 17.3394010	total: 537ms	remaining: 1.9s
22:	learn: 17.0165204	total: 565ms	remaining: 1.89s
23:	learn: 16.7728230	total: 591ms	remaining: 1.87s
24:	learn: 16.5020155	total: 615ms	remaining: 1.85s
25:	learn: 16.2110813	total: 640ms	remaining: 1.82s
26:	learn: 15.9439416	total: 671ms	remaining: 1.81s
27:	learn: 15.6605702	total: 692ms	remaining: 1.78s
28:	learn: 15.4180978	total: 716ms	remaining: 1.75s
29:	learn: 15.1463921	total: 739ms	remaining: 1.72s
30:	learn: 14.8961946	total: 766ms	remaining: 1.71s
31:	learn: 14.6763296	total: 794ms	remaining: 1.69s
32:	learn: 14.4161484	total: 818ms	remaining: 1.66s
33:	learn: 14.1748686	total: 842ms	remaining: 1.63s
34:	learn: 13.9722494	total: 866ms	remaining: 1.61s
35:	learn: 13.7632896	total: 889ms	remaining: 1.58s
36:	learn: 13.5572592	total: 919ms	remaining: 1.56s
37:	learn: 13.3896577	total: 940ms	remaining: 1.53s
38:	learn: 13.2796441	total: 964ms	remaining: 1.51s
39:	learn: 13.0896679	total: 989ms	remaining: 1.48s
40:	learn: 12.8898238	total: 1.02s	remaining: 1.47s
41:	learn: 12.6824069	total: 1.05s	remaining: 1.44s
42:	learn: 12.5459667	total: 1.07s	remaining: 1.42s
43:	learn: 12.3859203	total: 1.09s	remaining: 1.39s
44:	learn: 12.2099364	total: 1.12s	remaining: 1.37s
45:	learn: 12.0649044	total: 1.14s	remaining: 1.34s
46:	learn: 11.8934147	total: 1.16s	remaining: 1.31s
47:	learn: 11.7212144	total: 1.19s	remaining: 1.29s
48:	learn: 11.5585360	total: 1.22s	remaining: 1.27s
49:	learn: 11.4204354	total: 1.25s	remaining: 1.25s
50:	learn: 11.3264427	total: 1.27s	remaining: 1.22s
51:	learn: 11.2063486	total: 1.3s	remaining: 1.2s
52:	learn: 11.0712206	total: 1.32s	remaining: 1.17s
53:	learn: 10.9205088	total: 1.35s	remaining: 1.15s
54:	learn: 10.8155412	total: 1.37s	remaining: 1.12s
55:	learn: 10.7286854	total: 1.39s	remaining: 1.09s
56:	learn: 10.6088466	total: 1.42s	remaining: 1.07s
57:	learn: 10.4999885	total: 1.45s	remaining: 1.05s
58:	learn: 10.4022194	total: 1.48s	remaining: 1.03s
59:	learn: 10.3147130	total: 1.5s	remaining: 1s
60:	learn: 10.2011489	total: 1.53s	remaining: 976ms
61:	learn: 10.1094372	total: 1.55s	remaining: 950ms
62:	learn: 10.0248970	total: 1.57s	remaining: 924ms
63:	learn: 9.9192710	total: 1.59s	remaining: 898ms
64:	learn: 9.8577360	total: 1.62s	remaining: 871ms
65:	learn: 9.7737103	total: 1.64s	remaining: 847ms
66:	learn: 9.6706617	total: 1.67s	remaining: 825ms
67:	learn: 9.6042727	total: 1.7s	remaining: 799ms
68:	learn: 9.5355377	total: 1.73s	remaining: 777ms
69:	learn: 9.4615216	total: 1.75s	remaining: 752ms
70:	learn: 9.3702045	total: 1.77s	remaining: 725ms
71:	learn: 9.3035392	total: 1.8s	remaining: 699ms
72:	learn: 9.2322686	total: 1.82s	remaining: 673ms
73:	learn: 9.1431916	total: 1.84s	remaining: 648ms
74:	learn: 9.0869466	total: 1.87s	remaining: 625ms
75:	learn: 9.0117390	total: 1.9s	remaining: 600ms
76:	learn: 8.9580443	total: 1.92s	remaining: 574ms
77:	learn: 8.8649939	total: 1.95s	remaining: 549ms
78:	learn: 8.7792713	total: 1.98s	remaining: 526ms
79:	learn: 8.7164606	total: 2s	remaining: 501ms
80:	learn: 8.6340559	total: 2.02s	remaining: 475ms
81:	learn: 8.5697104	total: 2.06s	remaining: 452ms
82:	learn: 8.5273758	total: 2.08s	remaining: 427ms
83:	learn: 8.4394788	total: 2.11s	remaining: 402ms
84:	learn: 8.3672415	total: 2.13s	remaining: 377ms
85:	learn: 8.2813444	total: 2.16s	remaining: 351ms
86:	learn: 8.1994983	total: 2.18s	remaining: 326ms
87:	learn: 8.1003577	total: 2.2s	remaining: 300ms
88:	learn: 8.0501976	total: 2.23s	remaining: 275ms
89:	learn: 7.9718830	total: 2.26s	remaining: 251ms
90:	learn: 7.9114534	total: 2.29s	remaining: 226ms
91:	learn: 7.8319856	total: 2.31s	remaining: 201ms
92:	learn: 7.7731246	total: 2.34s	remaining: 176ms
93:	learn: 7.7165850	total: 2.36s	remaining: 151ms
94:	learn: 7.6448498	total: 2.39s	remaining: 126ms
95:	learn: 7.5709919	total: 2.41s	remaining: 100ms
96:	learn: 7.5184082	total: 2.43s	remaining: 75.2ms
97:	learn: 7.4786866	total: 2.46s	remaining: 50.1ms
98:	learn: 7.4301201	total: 2.49s	remaining: 25.1ms
99:	learn: 7.3416932	total: 2.52s	remaining: 0us
0:	learn: 42.6391731	total: 21.2ms	remaining: 2.1s
1:	learn: 41.2755994	total: 43.1ms	remaining: 2.11s
2:	learn: 40.1418308	total: 66.3ms	remaining: 2.14s
3:	learn: 38.9707156	total: 88.9ms	remaining: 2.13s
4:	learn: 37.8723622	total: 120ms	remaining: 2.27s
5:	learn: 36.6981834	total: 146ms	remaining: 2.29s
6:	learn: 35.6210108	total: 171ms	remaining: 2.27s
7:	learn: 34.5154078	total: 195ms	remaining: 2.24s
8:	learn: 33.4581011	total: 220ms	remaining: 2.23s
9:	learn: 32.5872455	total: 248ms	remaining: 2.23s
10:	learn: 31.6311510	total: 269ms	remaining: 2.18s
11:	learn: 30.8222401	total: 291ms	remaining: 2.13s
12:	learn: 29.9305192	total: 315ms	remaining: 2.1s
13:	learn: 29.0742133	total: 344ms	remaining: 2.11s
14:	learn: 28.3687544	total: 368ms	remaining: 2.09s
15:	learn: 27.5730558	total: 393ms	remaining: 2.06s
16:	learn: 26.9376082	total: 417ms	remaining: 2.04s
17:	learn: 26.2254949	total: 443ms	remaining: 2.02s
18:	learn: 25.5974939	total: 463ms	remaining: 1.98s
19:	learn: 25.0097187	total: 488ms	remaining: 1.95s
20:	learn: 24.3722243	total: 522ms	remaining: 1.96s
21:	learn: 23.8249140	total: 557ms	remaining: 1.97s
22:	learn: 23.3953969	total: 583ms	remaining: 1.95s
23:	learn: 22.8726238	total: 607ms	remaining: 1.92s
24:	learn: 22.3407723	total: 632ms	remaining: 1.9s
25:	learn: 21.8360330	total: 657ms	remaining: 1.87s
26:	learn: 21.4050665	total: 660ms	remaining: 1.78s
27:	learn: 20.9389245	total: 682ms	remaining: 1.75s
28:	learn: 20.5166767	total: 704ms	remaining: 1.72s
29:	learn: 20.1190641	total: 727ms	remaining: 1.7s
30:	learn: 19.7189491	total: 769ms	remaining: 1.71s
31:	learn: 19.3748181	total: 801ms	remaining: 1.7s
32:	learn: 19.0116312	total: 825ms	remaining: 1.67s
33:	learn: 18.6982407	total: 849ms	remaining: 1.65s
34:	learn: 18.3109965	total: 872ms	remaining: 1.62s
35:	learn: 17.9620798	total: 893ms	remaining: 1.59s
36:	learn: 17.6396740	total: 917ms	remaining: 1.56s
37:	learn: 17.3596962	total: 941ms	remaining: 1.53s
38:	learn: 17.0107107	total: 970ms	remaining: 1.52s
39:	learn: 16.7000770	total: 1000ms	remaining: 1.5s
40:	learn: 16.4406609	total: 1.01s	remaining: 1.46s
41:	learn: 16.2482533	total: 1.03s	remaining: 1.43s
42:	learn: 16.0039366	total: 1.07s	remaining: 1.42s
43:	learn: 15.7538572	total: 1.09s	remaining: 1.39s
44:	learn: 15.5095380	total: 1.11s	remaining: 1.36s
45:	learn: 15.2678319	total: 1.14s	remaining: 1.33s
46:	learn: 15.0494495	total: 1.17s	remaining: 1.31s
47:	learn: 14.8347400	total: 1.19s	remaining: 1.29s
48:	learn: 14.6035398	total: 1.22s	remaining: 1.27s
49:	learn: 14.3913639	total: 1.24s	remaining: 1.24s
50:	learn: 14.1928022	total: 1.26s	remaining: 1.22s
51:	learn: 13.9985580	total: 1.29s	remaining: 1.19s
52:	learn: 13.8322220	total: 1.31s	remaining: 1.16s
53:	learn: 13.6455937	total: 1.34s	remaining: 1.14s
54:	learn: 13.4402019	total: 1.36s	remaining: 1.12s
55:	learn: 13.2899163	total: 1.39s	remaining: 1.09s
56:	learn: 13.1694614	total: 1.42s	remaining: 1.07s
57:	learn: 13.0722892	total: 1.44s	remaining: 1.05s
58:	learn: 12.9065251	total: 1.47s	remaining: 1.02s
59:	learn: 12.6992885	total: 1.49s	remaining: 996ms
60:	learn: 12.5384562	total: 1.52s	remaining: 970ms
61:	learn: 12.4105591	total: 1.54s	remaining: 945ms
62:	learn: 12.2952504	total: 1.56s	remaining: 919ms
63:	learn: 12.1427365	total: 1.6s	remaining: 898ms
64:	learn: 11.9954361	total: 1.63s	remaining: 877ms
65:	learn: 11.8161234	total: 1.65s	remaining: 852ms
66:	learn: 11.6849978	total: 1.68s	remaining: 826ms
67:	learn: 11.5405300	total: 1.7s	remaining: 800ms
68:	learn: 11.3806762	total: 1.72s	remaining: 775ms
69:	learn: 11.2746848	total: 1.75s	remaining: 749ms
70:	learn: 11.1518256	total: 1.77s	remaining: 723ms
71:	learn: 11.0730779	total: 1.79s	remaining: 697ms
72:	learn: 10.9736725	total: 1.81s	remaining: 671ms
73:	learn: 10.8430563	total: 1.85s	remaining: 649ms
74:	learn: 10.7142220	total: 1.88s	remaining: 626ms
75:	learn: 10.6141640	total: 1.9s	remaining: 601ms
76:	learn: 10.5264853	total: 1.93s	remaining: 575ms
77:	learn: 10.3929390	total: 1.95s	remaining: 550ms
78:	learn: 10.3163176	total: 1.97s	remaining: 524ms
79:	learn: 10.2171240	total: 1.99s	remaining: 499ms
80:	learn: 10.1381738	total: 2.02s	remaining: 473ms
81:	learn: 10.0402437	total: 2.04s	remaining: 448ms
82:	learn: 9.9223565	total: 2.07s	remaining: 425ms
83:	learn: 9.8184057	total: 2.1s	remaining: 400ms
84:	learn: 9.7221978	total: 2.13s	remaining: 376ms
85:	learn: 9.6417031	total: 2.15s	remaining: 351ms
86:	learn: 9.5593969	total: 2.18s	remaining: 326ms
87:	learn: 9.4678992	total: 2.2s	remaining: 300ms
88:	learn: 9.3855757	total: 2.22s	remaining: 275ms
89:	learn: 9.2884031	total: 2.24s	remaining: 249ms
90:	learn: 9.2099382	total: 2.27s	remaining: 224ms
91:	learn: 9.1357061	total: 2.29s	remaining: 199ms
92:	learn: 9.0690328	total: 2.32s	remaining: 175ms
93:	learn: 8.9904694	total: 2.35s	remaining: 150ms
94:	learn: 8.9256893	total: 2.38s	remaining: 125ms
95:	learn: 8.8600084	total: 2.4s	remaining: 100ms
96:	learn: 8.8091154	total: 2.42s	remaining: 74.9ms
97:	learn: 8.7280528	total: 2.44s	remaining: 49.9ms
98:	learn: 8.6761440	total: 2.46s	remaining: 24.9ms
99:	learn: 8.6181192	total: 2.49s	remaining: 0us
0:	learn: 45.9988128	total: 23.6ms	remaining: 2.34s
1:	learn: 44.7653841	total: 47.2ms	remaining: 2.31s
2:	learn: 43.4693688	total: 73ms	remaining: 2.36s
3:	learn: 42.2495168	total: 93.5ms	remaining: 2.25s
4:	learn: 41.2273909	total: 115ms	remaining: 2.19s
5:	learn: 40.0623352	total: 146ms	remaining: 2.29s
6:	learn: 39.0139162	total: 169ms	remaining: 2.25s
7:	learn: 37.9905503	total: 200ms	remaining: 2.29s
8:	learn: 37.1460179	total: 228ms	remaining: 2.31s
9:	learn: 36.1321769	total: 253ms	remaining: 2.28s
10:	learn: 35.2434048	total: 276ms	remaining: 2.24s
11:	learn: 34.3919476	total: 298ms	remaining: 2.19s
12:	learn: 33.5464400	total: 323ms	remaining: 2.16s
13:	learn: 32.5752711	total: 344ms	remaining: 2.11s
14:	learn: 31.8573507	total: 367ms	remaining: 2.08s
15:	learn: 31.1481980	total: 398ms	remaining: 2.09s
16:	learn: 30.4578224	total: 422ms	remaining: 2.06s
17:	learn: 29.8404841	total: 451ms	remaining: 2.05s
18:	learn: 29.1314604	total: 475ms	remaining: 2.03s
19:	learn: 28.5024706	total: 499ms	remaining: 2s
20:	learn: 27.9368896	total: 523ms	remaining: 1.97s
21:	learn: 27.2136491	total: 548ms	remaining: 1.94s
22:	learn: 26.6230078	total: 570ms	remaining: 1.91s
23:	learn: 26.0604635	total: 591ms	remaining: 1.87s
24:	learn: 25.6309424	total: 615ms	remaining: 1.84s
25:	learn: 25.1761698	total: 640ms	remaining: 1.82s
26:	learn: 24.6368216	total: 679ms	remaining: 1.84s
27:	learn: 24.1028972	total: 704ms	remaining: 1.81s
28:	learn: 23.3990224	total: 730ms	remaining: 1.79s
29:	learn: 22.9088559	total: 754ms	remaining: 1.76s
30:	learn: 22.4793217	total: 776ms	remaining: 1.73s
31:	learn: 22.0592669	total: 796ms	remaining: 1.69s
32:	learn: 21.6715811	total: 818ms	remaining: 1.66s
33:	learn: 21.1907911	total: 842ms	remaining: 1.63s
34:	learn: 20.8045504	total: 871ms	remaining: 1.62s
35:	learn: 20.4670784	total: 899ms	remaining: 1.6s
36:	learn: 20.0165788	total: 930ms	remaining: 1.58s
37:	learn: 19.6859173	total: 954ms	remaining: 1.56s
38:	learn: 19.3641283	total: 979ms	remaining: 1.53s
39:	learn: 19.0291194	total: 1s	remaining: 1.5s
40:	learn: 18.7204204	total: 1.02s	remaining: 1.47s
41:	learn: 18.4000101	total: 1.05s	remaining: 1.45s
42:	learn: 18.0910445	total: 1.08s	remaining: 1.44s
43:	learn: 17.8354609	total: 1.11s	remaining: 1.41s
44:	learn: 17.4982243	total: 1.14s	remaining: 1.39s
45:	learn: 17.1895897	total: 1.16s	remaining: 1.36s
46:	learn: 16.9440833	total: 1.2s	remaining: 1.35s
47:	learn: 16.6112102	total: 1.22s	remaining: 1.32s
48:	learn: 16.3320235	total: 1.24s	remaining: 1.29s
49:	learn: 16.0523610	total: 1.27s	remaining: 1.27s
50:	learn: 15.8256738	total: 1.3s	remaining: 1.25s
51:	learn: 15.5699393	total: 1.32s	remaining: 1.22s
52:	learn: 15.3531799	total: 1.35s	remaining: 1.2s
53:	learn: 15.1364230	total: 1.37s	remaining: 1.17s
54:	learn: 15.0012063	total: 1.4s	remaining: 1.14s
55:	learn: 14.7171740	total: 1.42s	remaining: 1.11s
56:	learn: 14.5897576	total: 1.42s	remaining: 1.07s
57:	learn: 14.3886878	total: 1.44s	remaining: 1.04s
58:	learn: 14.1942115	total: 1.47s	remaining: 1.02s
59:	learn: 14.0135398	total: 1.5s	remaining: 1s
60:	learn: 13.8118263	total: 1.53s	remaining: 979ms
61:	learn: 13.6444047	total: 1.55s	remaining: 953ms
62:	learn: 13.4728078	total: 1.58s	remaining: 927ms
63:	learn: 13.3104934	total: 1.6s	remaining: 902ms
64:	learn: 13.1385144	total: 1.63s	remaining: 876ms
65:	learn: 13.0087777	total: 1.65s	remaining: 850ms
66:	learn: 12.8457835	total: 1.67s	remaining: 823ms
67:	learn: 12.6975263	total: 1.69s	remaining: 797ms
68:	learn: 12.5582839	total: 1.73s	remaining: 778ms
69:	learn: 12.4210776	total: 1.76s	remaining: 753ms
70:	learn: 12.2737286	total: 1.78s	remaining: 728ms
71:	learn: 12.1587075	total: 1.81s	remaining: 703ms
72:	learn: 12.0323022	total: 1.83s	remaining: 678ms
73:	learn: 11.8667900	total: 1.85s	remaining: 652ms
74:	learn: 11.6990385	total: 1.88s	remaining: 625ms
75:	learn: 11.5755058	total: 1.9s	remaining: 599ms
76:	learn: 11.4954152	total: 1.92s	remaining: 574ms
77:	learn: 11.3827464	total: 1.95s	remaining: 551ms
78:	learn: 11.2924968	total: 1.98s	remaining: 526ms
79:	learn: 11.1938217	total: 2.01s	remaining: 503ms
80:	learn: 11.0766477	total: 2.04s	remaining: 478ms
81:	learn: 10.9824487	total: 2.06s	remaining: 452ms
82:	learn: 10.8707168	total: 2.08s	remaining: 427ms
83:	learn: 10.7746205	total: 2.1s	remaining: 401ms
84:	learn: 10.6738461	total: 2.13s	remaining: 375ms
85:	learn: 10.5871227	total: 2.16s	remaining: 351ms
86:	learn: 10.4566607	total: 2.19s	remaining: 327ms
87:	learn: 10.3506633	total: 2.21s	remaining: 302ms
88:	learn: 10.2104644	total: 2.24s	remaining: 277ms
89:	learn: 10.0965839	total: 2.27s	remaining: 252ms
90:	learn: 9.9802927	total: 2.29s	remaining: 227ms
91:	learn: 9.9195276	total: 2.31s	remaining: 201ms
92:	learn: 9.8559698	total: 2.33s	remaining: 176ms
93:	learn: 9.7396780	total: 2.36s	remaining: 151ms
94:	learn: 9.6945725	total: 2.39s	remaining: 126ms
95:	learn: 9.5897565	total: 2.42s	remaining: 101ms
96:	learn: 9.5012011	total: 2.44s	remaining: 75.4ms
97:	learn: 9.4123715	total: 2.46s	remaining: 50.3ms
98:	learn: 9.3288366	total: 2.49s	remaining: 25.1ms
99:	learn: 9.2648715	total: 2.52s	remaining: 0us
0:	learn: 45.5336925	total: 24.9ms	remaining: 2.47s
1:	learn: 44.2714175	total: 57ms	remaining: 2.79s
2:	learn: 43.1477944	total: 80ms	remaining: 2.58s
3:	learn: 41.9891776	total: 104ms	remaining: 2.5s
4:	learn: 41.0638986	total: 128ms	remaining: 2.44s
5:	learn: 39.9800801	total: 152ms	remaining: 2.38s
6:	learn: 38.9048061	total: 174ms	remaining: 2.31s
7:	learn: 38.0749429	total: 196ms	remaining: 2.25s
8:	learn: 37.3966644	total: 219ms	remaining: 2.21s
9:	learn: 36.4671331	total: 239ms	remaining: 2.15s
10:	learn: 35.6649217	total: 270ms	remaining: 2.19s
11:	learn: 34.8793657	total: 295ms	remaining: 2.16s
12:	learn: 34.0737401	total: 325ms	remaining: 2.17s
13:	learn: 33.2560999	total: 349ms	remaining: 2.14s
14:	learn: 32.4184623	total: 373ms	remaining: 2.11s
15:	learn: 31.6803206	total: 397ms	remaining: 2.08s
16:	learn: 30.9276344	total: 422ms	remaining: 2.06s
17:	learn: 30.3590041	total: 445ms	remaining: 2.03s
18:	learn: 29.7789888	total: 466ms	remaining: 1.99s
19:	learn: 29.1098261	total: 489ms	remaining: 1.96s
20:	learn: 28.4824889	total: 517ms	remaining: 1.95s
21:	learn: 27.9675744	total: 554ms	remaining: 1.96s
22:	learn: 27.4793215	total: 577ms	remaining: 1.93s
23:	learn: 26.8920542	total: 602ms	remaining: 1.9s
24:	learn: 26.2736657	total: 626ms	remaining: 1.88s
25:	learn: 25.6908003	total: 648ms	remaining: 1.84s
26:	learn: 25.1288844	total: 669ms	remaining: 1.81s
27:	learn: 24.6933320	total: 694ms	remaining: 1.78s
28:	learn: 24.1372567	total: 716ms	remaining: 1.75s
29:	learn: 23.7103515	total: 747ms	remaining: 1.74s
30:	learn: 23.1647499	total: 773ms	remaining: 1.72s
31:	learn: 22.7009216	total: 803ms	remaining: 1.71s
32:	learn: 22.2792229	total: 827ms	remaining: 1.68s
33:	learn: 21.8004244	total: 851ms	remaining: 1.65s
34:	learn: 21.3578361	total: 871ms	remaining: 1.62s
35:	learn: 21.0262832	total: 892ms	remaining: 1.58s
36:	learn: 20.5787502	total: 916ms	remaining: 1.56s
37:	learn: 20.3083055	total: 941ms	remaining: 1.53s
38:	learn: 19.9902529	total: 971ms	remaining: 1.52s
39:	learn: 19.6059571	total: 997ms	remaining: 1.5s
40:	learn: 19.3890959	total: 1.02s	remaining: 1.47s
41:	learn: 19.0549255	total: 1.04s	remaining: 1.44s
42:	learn: 18.7283215	total: 1.07s	remaining: 1.42s
43:	learn: 18.4448725	total: 1.1s	remaining: 1.4s
44:	learn: 18.1578001	total: 1.12s	remaining: 1.37s
45:	learn: 17.8777474	total: 1.14s	remaining: 1.34s
46:	learn: 17.6428221	total: 1.16s	remaining: 1.31s
47:	learn: 17.3887752	total: 1.2s	remaining: 1.29s
48:	learn: 17.1475761	total: 1.22s	remaining: 1.27s
49:	learn: 16.9064363	total: 1.24s	remaining: 1.24s
50:	learn: 16.6414681	total: 1.27s	remaining: 1.22s
51:	learn: 16.4549974	total: 1.29s	remaining: 1.19s
52:	learn: 16.2617558	total: 1.32s	remaining: 1.17s
53:	learn: 16.0258241	total: 1.34s	remaining: 1.14s
54:	learn: 15.7694686	total: 1.37s	remaining: 1.12s
55:	learn: 15.5449602	total: 1.4s	remaining: 1.1s
56:	learn: 15.3515330	total: 1.42s	remaining: 1.07s
57:	learn: 15.1120403	total: 1.45s	remaining: 1.05s
58:	learn: 14.9131368	total: 1.47s	remaining: 1.02s
59:	learn: 14.8021921	total: 1.49s	remaining: 996ms
60:	learn: 14.6564259	total: 1.51s	remaining: 968ms
61:	learn: 14.5253260	total: 1.54s	remaining: 942ms
62:	learn: 14.3975427	total: 1.56s	remaining: 915ms
63:	learn: 14.3060204	total: 1.59s	remaining: 894ms
64:	learn: 14.1283681	total: 1.62s	remaining: 874ms
65:	learn: 14.0159063	total: 1.65s	remaining: 849ms
66:	learn: 13.8712541	total: 1.67s	remaining: 824ms
67:	learn: 13.7852998	total: 1.7s	remaining: 798ms
68:	learn: 13.6790164	total: 1.72s	remaining: 773ms
69:	learn: 13.5253745	total: 1.74s	remaining: 747ms
70:	learn: 13.3959663	total: 1.76s	remaining: 721ms
71:	learn: 13.2062955	total: 1.79s	remaining: 695ms
72:	learn: 13.0788709	total: 1.81s	remaining: 669ms
73:	learn: 12.9513184	total: 1.84s	remaining: 646ms
74:	learn: 12.8198556	total: 1.87s	remaining: 625ms
75:	learn: 12.7137549	total: 1.9s	remaining: 600ms
76:	learn: 12.6243477	total: 1.92s	remaining: 574ms
77:	learn: 12.5241564	total: 1.94s	remaining: 548ms
78:	learn: 12.4445782	total: 1.97s	remaining: 522ms
79:	learn: 12.3816501	total: 1.99s	remaining: 497ms
80:	learn: 12.2846914	total: 2.01s	remaining: 472ms
81:	learn: 12.1419498	total: 2.04s	remaining: 448ms
82:	learn: 12.0846494	total: 2.07s	remaining: 424ms
83:	learn: 11.9851484	total: 2.09s	remaining: 398ms
84:	learn: 11.8905738	total: 2.12s	remaining: 374ms
85:	learn: 11.7718790	total: 2.14s	remaining: 349ms
86:	learn: 11.6854413	total: 2.17s	remaining: 324ms
87:	learn: 11.6206110	total: 2.19s	remaining: 298ms
88:	learn: 11.5376098	total: 2.21s	remaining: 273ms
89:	learn: 11.4235068	total: 2.23s	remaining: 248ms
90:	learn: 11.3477955	total: 2.25s	remaining: 223ms
91:	learn: 11.2663772	total: 2.29s	remaining: 199ms
92:	learn: 11.1916556	total: 2.31s	remaining: 174ms
93:	learn: 11.0921504	total: 2.33s	remaining: 149ms
94:	learn: 10.9622375	total: 2.36s	remaining: 124ms
95:	learn: 10.8882085	total: 2.39s	remaining: 99.6ms
96:	learn: 10.8086218	total: 2.41s	remaining: 74.6ms
97:	learn: 10.7552220	total: 2.43s	remaining: 49.7ms
98:	learn: 10.6929666	total: 2.46s	remaining: 24.8ms
99:	learn: 10.6200033	total: 2.48s	remaining: 0us
0:	learn: 46.3366259	total: 23.5ms	remaining: 2.33s
1:	learn: 45.2205278	total: 47.9ms	remaining: 2.35s
2:	learn: 43.9887404	total: 70.6ms	remaining: 2.28s
3:	learn: 42.8240666	total: 91.6ms	remaining: 2.2s
4:	learn: 41.6086617	total: 113ms	remaining: 2.14s
5:	learn: 40.5606446	total: 143ms	remaining: 2.24s
6:	learn: 39.6241326	total: 171ms	remaining: 2.27s
7:	learn: 39.0016852	total: 200ms	remaining: 2.3s
8:	learn: 37.8501670	total: 223ms	remaining: 2.25s
9:	learn: 37.0215474	total: 248ms	remaining: 2.23s
10:	learn: 36.0215020	total: 271ms	remaining: 2.19s
11:	learn: 35.2421331	total: 294ms	remaining: 2.15s
12:	learn: 34.5416837	total: 314ms	remaining: 2.1s
13:	learn: 33.7787649	total: 336ms	remaining: 2.06s
14:	learn: 32.9860883	total: 359ms	remaining: 2.03s
15:	learn: 32.2123752	total: 383ms	remaining: 2.01s
16:	learn: 31.3564648	total: 422ms	remaining: 2.06s
17:	learn: 30.7859979	total: 446ms	remaining: 2.03s
18:	learn: 30.1443515	total: 469ms	remaining: 2s
19:	learn: 29.4880724	total: 492ms	remaining: 1.97s
20:	learn: 28.9635727	total: 516ms	remaining: 1.94s
21:	learn: 28.4853342	total: 537ms	remaining: 1.9s
22:	learn: 27.9796348	total: 559ms	remaining: 1.87s
23:	learn: 27.4360487	total: 581ms	remaining: 1.84s
24:	learn: 26.8685214	total: 606ms	remaining: 1.82s
25:	learn: 26.1769206	total: 636ms	remaining: 1.81s
26:	learn: 25.7146048	total: 659ms	remaining: 1.78s
27:	learn: 25.2614850	total: 691ms	remaining: 1.78s
28:	learn: 24.6626472	total: 713ms	remaining: 1.75s
29:	learn: 24.2501259	total: 736ms	remaining: 1.72s
30:	learn: 23.7892661	total: 756ms	remaining: 1.68s
31:	learn: 23.2729078	total: 779ms	remaining: 1.65s
32:	learn: 22.8969731	total: 807ms	remaining: 1.64s
33:	learn: 22.4567570	total: 836ms	remaining: 1.62s
34:	learn: 22.0569858	total: 860ms	remaining: 1.6s
35:	learn: 21.7317775	total: 884ms	remaining: 1.57s
36:	learn: 21.3890971	total: 907ms	remaining: 1.54s
37:	learn: 21.0664504	total: 938ms	remaining: 1.53s
38:	learn: 20.7379659	total: 961ms	remaining: 1.5s
39:	learn: 20.4423699	total: 983ms	remaining: 1.47s
40:	learn: 20.1526720	total: 1.01s	remaining: 1.45s
41:	learn: 19.8706547	total: 1.03s	remaining: 1.42s
42:	learn: 19.5139134	total: 1.06s	remaining: 1.41s
43:	learn: 19.3495951	total: 1.09s	remaining: 1.38s
44:	learn: 19.1314757	total: 1.11s	remaining: 1.36s
45:	learn: 18.7971159	total: 1.13s	remaining: 1.33s
46:	learn: 18.5447051	total: 1.16s	remaining: 1.31s
47:	learn: 18.2328785	total: 1.18s	remaining: 1.28s
48:	learn: 17.9622938	total: 1.21s	remaining: 1.26s
49:	learn: 17.7264205	total: 1.23s	remaining: 1.23s
50:	learn: 17.4530592	total: 1.26s	remaining: 1.21s
51:	learn: 17.2236644	total: 1.29s	remaining: 1.19s
52:	learn: 17.0122792	total: 1.31s	remaining: 1.17s
53:	learn: 16.7599064	total: 1.34s	remaining: 1.14s
54:	learn: 16.5146699	total: 1.36s	remaining: 1.11s
55:	learn: 16.2531414	total: 1.39s	remaining: 1.09s
56:	learn: 16.0997208	total: 1.41s	remaining: 1.06s
57:	learn: 15.8452412	total: 1.43s	remaining: 1.04s
58:	learn: 15.6294900	total: 1.46s	remaining: 1.01s
59:	learn: 15.4564548	total: 1.49s	remaining: 995ms
60:	learn: 15.2978533	total: 1.52s	remaining: 971ms
61:	learn: 15.0976912	total: 1.54s	remaining: 946ms
62:	learn: 14.9094446	total: 1.57s	remaining: 920ms
63:	learn: 14.7415094	total: 1.59s	remaining: 894ms
64:	learn: 14.6123806	total: 1.61s	remaining: 868ms
65:	learn: 14.4744916	total: 1.63s	remaining: 841ms
66:	learn: 14.3212717	total: 1.66s	remaining: 816ms
67:	learn: 14.1768047	total: 1.69s	remaining: 793ms
68:	learn: 14.0387344	total: 1.71s	remaining: 769ms
69:	learn: 13.8987579	total: 1.74s	remaining: 747ms
70:	learn: 13.7825740	total: 1.77s	remaining: 721ms
71:	learn: 13.6818548	total: 1.79s	remaining: 696ms
72:	learn: 13.5356993	total: 1.81s	remaining: 670ms
73:	learn: 13.4408704	total: 1.83s	remaining: 644ms
74:	learn: 13.2992218	total: 1.85s	remaining: 618ms
75:	learn: 13.1547092	total: 1.88s	remaining: 593ms
76:	learn: 13.0800189	total: 1.9s	remaining: 568ms
77:	learn: 12.9434711	total: 1.93s	remaining: 545ms
78:	learn: 12.8327325	total: 1.96s	remaining: 520ms
79:	learn: 12.7238946	total: 1.98s	remaining: 495ms
80:	learn: 12.6229528	total: 2.01s	remaining: 472ms
81:	learn: 12.5216078	total: 2.04s	remaining: 447ms
82:	learn: 12.4182254	total: 2.06s	remaining: 422ms
83:	learn: 12.3097978	total: 2.08s	remaining: 397ms
84:	learn: 12.1852056	total: 2.11s	remaining: 373ms
85:	learn: 12.0739627	total: 2.14s	remaining: 348ms
86:	learn: 11.9475583	total: 2.16s	remaining: 323ms
87:	learn: 11.8403806	total: 2.19s	remaining: 298ms
88:	learn: 11.7294124	total: 2.21s	remaining: 273ms
89:	learn: 11.6395689	total: 2.23s	remaining: 248ms
90:	learn: 11.5510643	total: 2.26s	remaining: 224ms
91:	learn: 11.4455301	total: 2.29s	remaining: 199ms
92:	learn: 11.3368661	total: 2.32s	remaining: 174ms
93:	learn: 11.2270796	total: 2.34s	remaining: 150ms
94:	learn: 11.1168414	total: 2.37s	remaining: 125ms
95:	learn: 11.0310985	total: 2.39s	remaining: 99.7ms
96:	learn: 10.9735185	total: 2.42s	remaining: 74.8ms
97:	learn: 10.8575874	total: 2.44s	remaining: 49.8ms
98:	learn: 10.7816173	total: 2.46s	remaining: 24.8ms
99:	learn: 10.7111737	total: 2.48s	remaining: 0us
0:	learn: 27.7143805	total: 9.2ms	remaining: 911ms
1:	learn: 27.2245894	total: 16.4ms	remaining: 805ms
2:	learn: 26.8693029	total: 24.3ms	remaining: 787ms
3:	learn: 26.4713217	total: 31.7ms	remaining: 761ms
4:	learn: 26.1261794	total: 37.1ms	remaining: 705ms
5:	learn: 25.8160419	total: 42.1ms	remaining: 660ms
6:	learn: 25.3860050	total: 47.2ms	remaining: 627ms
7:	learn: 25.0621682	total: 52.5ms	remaining: 603ms
8:	learn: 24.7574429	total: 57.5ms	remaining: 582ms
9:	learn: 24.5154734	total: 62.7ms	remaining: 564ms
10:	learn: 24.2199118	total: 67.6ms	remaining: 547ms
11:	learn: 23.9774955	total: 72.6ms	remaining: 533ms
12:	learn: 23.7755558	total: 77.8ms	remaining: 520ms
13:	learn: 23.4384476	total: 82.9ms	remaining: 509ms
14:	learn: 23.2035324	total: 87.3ms	remaining: 495ms
15:	learn: 22.9925293	total: 92.4ms	remaining: 485ms
16:	learn: 22.7981113	total: 98.2ms	remaining: 480ms
17:	learn: 22.5829245	total: 103ms	remaining: 467ms
18:	learn: 22.4131931	total: 107ms	remaining: 454ms
19:	learn: 22.1833629	total: 111ms	remaining: 444ms
20:	learn: 21.9660824	total: 115ms	remaining: 434ms
21:	learn: 21.7281998	total: 119ms	remaining: 422ms
22:	learn: 21.5000824	total: 123ms	remaining: 413ms
23:	learn: 21.2717031	total: 128ms	remaining: 404ms
24:	learn: 21.0926073	total: 132ms	remaining: 396ms
25:	learn: 20.8922144	total: 136ms	remaining: 386ms
26:	learn: 20.7498215	total: 140ms	remaining: 379ms
27:	learn: 20.5781754	total: 141ms	remaining: 363ms
28:	learn: 20.4294665	total: 146ms	remaining: 356ms
29:	learn: 20.2273985	total: 150ms	remaining: 349ms
30:	learn: 20.0920234	total: 154ms	remaining: 342ms
31:	learn: 19.9311712	total: 158ms	remaining: 337ms
32:	learn: 19.7852359	total: 163ms	remaining: 330ms
33:	learn: 19.6211007	total: 167ms	remaining: 324ms
34:	learn: 19.4806501	total: 171ms	remaining: 317ms
35:	learn: 19.3415380	total: 175ms	remaining: 312ms
36:	learn: 19.2075499	total: 180ms	remaining: 306ms
37:	learn: 19.0582745	total: 184ms	remaining: 301ms
38:	learn: 18.8852020	total: 189ms	remaining: 295ms
39:	learn: 18.6868677	total: 193ms	remaining: 290ms
40:	learn: 18.5481481	total: 198ms	remaining: 284ms
41:	learn: 18.4508846	total: 202ms	remaining: 279ms
42:	learn: 18.3650555	total: 209ms	remaining: 276ms
43:	learn: 18.1818415	total: 215ms	remaining: 274ms
44:	learn: 18.0782035	total: 225ms	remaining: 275ms
45:	learn: 17.9724472	total: 231ms	remaining: 271ms
46:	learn: 17.8657480	total: 239ms	remaining: 269ms
47:	learn: 17.7217309	total: 244ms	remaining: 264ms
48:	learn: 17.6403061	total: 249ms	remaining: 259ms
49:	learn: 17.5245570	total: 254ms	remaining: 254ms
50:	learn: 17.3976790	total: 259ms	remaining: 249ms
51:	learn: 17.2544460	total: 264ms	remaining: 244ms
52:	learn: 17.1507940	total: 269ms	remaining: 239ms
53:	learn: 17.0391276	total: 274ms	remaining: 233ms
54:	learn: 16.9348155	total: 279ms	remaining: 228ms
55:	learn: 16.8475635	total: 284ms	remaining: 223ms
56:	learn: 16.7691656	total: 289ms	remaining: 218ms
57:	learn: 16.6277836	total: 294ms	remaining: 213ms
58:	learn: 16.5524230	total: 298ms	remaining: 207ms
59:	learn: 16.4614442	total: 304ms	remaining: 202ms
60:	learn: 16.3077836	total: 309ms	remaining: 198ms
61:	learn: 16.2278133	total: 314ms	remaining: 193ms
62:	learn: 16.1288632	total: 318ms	remaining: 187ms
63:	learn: 16.0734717	total: 323ms	remaining: 181ms
64:	learn: 16.0085754	total: 327ms	remaining: 176ms
65:	learn: 15.9278700	total: 331ms	remaining: 170ms
66:	learn: 15.8320321	total: 335ms	remaining: 165ms
67:	learn: 15.7706425	total: 339ms	remaining: 160ms
68:	learn: 15.6404344	total: 344ms	remaining: 155ms
69:	learn: 15.5678129	total: 348ms	remaining: 149ms
70:	learn: 15.4980047	total: 352ms	remaining: 144ms
71:	learn: 15.4324207	total: 357ms	remaining: 139ms
72:	learn: 15.3551877	total: 362ms	remaining: 134ms
73:	learn: 15.2930769	total: 366ms	remaining: 129ms
74:	learn: 15.2307174	total: 370ms	remaining: 123ms
75:	learn: 15.1600937	total: 375ms	remaining: 118ms
76:	learn: 15.0837614	total: 379ms	remaining: 113ms
77:	learn: 15.0185989	total: 384ms	remaining: 108ms
78:	learn: 14.9300717	total: 388ms	remaining: 103ms
79:	learn: 14.8928389	total: 392ms	remaining: 98.1ms
80:	learn: 14.8250040	total: 397ms	remaining: 93.1ms
81:	learn: 14.7906114	total: 401ms	remaining: 88.1ms
82:	learn: 14.7214118	total: 406ms	remaining: 83.2ms
83:	learn: 14.6657875	total: 414ms	remaining: 78.9ms
84:	learn: 14.6085682	total: 421ms	remaining: 74.3ms
85:	learn: 14.5334097	total: 429ms	remaining: 69.9ms
86:	learn: 14.4681230	total: 436ms	remaining: 65.2ms
87:	learn: 14.4088334	total: 442ms	remaining: 60.3ms
88:	learn: 14.3541312	total: 447ms	remaining: 55.3ms
89:	learn: 14.2923636	total: 453ms	remaining: 50.3ms
90:	learn: 14.2339259	total: 458ms	remaining: 45.3ms
91:	learn: 14.1439983	total: 463ms	remaining: 40.3ms
92:	learn: 14.0701371	total: 468ms	remaining: 35.2ms
93:	learn: 13.9770736	total: 473ms	remaining: 30.2ms
94:	learn: 13.9275801	total: 478ms	remaining: 25.2ms
95:	learn: 13.8717050	total: 484ms	remaining: 20.2ms
96:	learn: 13.7821340	total: 489ms	remaining: 15.1ms
97:	learn: 13.7383865	total: 495ms	remaining: 10.1ms
98:	learn: 13.6850693	total: 500ms	remaining: 5.05ms
99:	learn: 13.6273539	total: 505ms	remaining: 0us
0:	learn: 43.2118728	total: 4.45ms	remaining: 441ms
1:	learn: 42.3090111	total: 8.53ms	remaining: 418ms
2:	learn: 41.3060764	total: 12.6ms	remaining: 406ms
3:	learn: 40.3653958	total: 16.9ms	remaining: 406ms
4:	learn: 39.5006331	total: 21.2ms	remaining: 402ms
5:	learn: 38.6473041	total: 25ms	remaining: 391ms
6:	learn: 37.8560875	total: 28.9ms	remaining: 384ms
7:	learn: 37.0772701	total: 33.5ms	remaining: 386ms
8:	learn: 36.3260704	total: 38ms	remaining: 384ms
9:	learn: 35.7300393	total: 42.5ms	remaining: 383ms
10:	learn: 34.9336547	total: 47.3ms	remaining: 383ms
11:	learn: 34.1758190	total: 52ms	remaining: 381ms
12:	learn: 33.5120760	total: 56.6ms	remaining: 379ms
13:	learn: 32.8731142	total: 61.3ms	remaining: 377ms
14:	learn: 32.3579595	total: 66.2ms	remaining: 375ms
15:	learn: 31.7969963	total: 73.5ms	remaining: 386ms
16:	learn: 31.3472797	total: 81ms	remaining: 395ms
17:	learn: 30.7865884	total: 89.7ms	remaining: 409ms
18:	learn: 30.3876486	total: 97.6ms	remaining: 416ms
19:	learn: 29.8840575	total: 103ms	remaining: 411ms
20:	learn: 29.3584237	total: 108ms	remaining: 408ms
21:	learn: 28.9965200	total: 114ms	remaining: 403ms
22:	learn: 28.6117225	total: 119ms	remaining: 398ms
23:	learn: 28.1147832	total: 124ms	remaining: 393ms
24:	learn: 27.7857774	total: 129ms	remaining: 388ms
25:	learn: 27.3181226	total: 134ms	remaining: 382ms
26:	learn: 26.9019101	total: 139ms	remaining: 376ms
27:	learn: 26.6957004	total: 144ms	remaining: 370ms
28:	learn: 26.2816390	total: 149ms	remaining: 364ms
29:	learn: 25.9107534	total: 154ms	remaining: 358ms
30:	learn: 25.5773085	total: 158ms	remaining: 352ms
31:	learn: 25.1916035	total: 164ms	remaining: 348ms
32:	learn: 24.8819670	total: 169ms	remaining: 343ms
33:	learn: 24.5580488	total: 173ms	remaining: 336ms
34:	learn: 24.3088624	total: 177ms	remaining: 329ms
35:	learn: 23.9890893	total: 181ms	remaining: 322ms
36:	learn: 23.7266073	total: 185ms	remaining: 315ms
37:	learn: 23.4886046	total: 189ms	remaining: 308ms
38:	learn: 23.2786313	total: 193ms	remaining: 302ms
39:	learn: 23.0060540	total: 197ms	remaining: 295ms
40:	learn: 22.7848361	total: 201ms	remaining: 290ms
41:	learn: 22.5485511	total: 206ms	remaining: 284ms
42:	learn: 22.3113565	total: 210ms	remaining: 278ms
43:	learn: 22.1296084	total: 214ms	remaining: 273ms
44:	learn: 21.8514989	total: 219ms	remaining: 267ms
45:	learn: 21.6540201	total: 223ms	remaining: 262ms
46:	learn: 21.4203535	total: 228ms	remaining: 257ms
47:	learn: 21.2317196	total: 232ms	remaining: 252ms
48:	learn: 21.0547467	total: 237ms	remaining: 246ms
49:	learn: 20.9192535	total: 241ms	remaining: 241ms
50:	learn: 20.6975386	total: 245ms	remaining: 236ms
51:	learn: 20.5839720	total: 250ms	remaining: 231ms
52:	learn: 20.4528901	total: 258ms	remaining: 228ms
53:	learn: 20.3392419	total: 265ms	remaining: 226ms
54:	learn: 20.1518693	total: 277ms	remaining: 226ms
55:	learn: 19.9928770	total: 283ms	remaining: 222ms
56:	learn: 19.8042028	total: 289ms	remaining: 218ms
57:	learn: 19.7000879	total: 294ms	remaining: 213ms
58:	learn: 19.5524154	total: 300ms	remaining: 208ms
59:	learn: 19.4366908	total: 305ms	remaining: 204ms
60:	learn: 19.2739134	total: 311ms	remaining: 199ms
61:	learn: 19.1499266	total: 316ms	remaining: 194ms
62:	learn: 18.9948972	total: 321ms	remaining: 188ms
63:	learn: 18.8952299	total: 326ms	remaining: 183ms
64:	learn: 18.7545430	total: 331ms	remaining: 178ms
65:	learn: 18.6315116	total: 336ms	remaining: 173ms
66:	learn: 18.5164994	total: 340ms	remaining: 168ms
67:	learn: 18.3983038	total: 346ms	remaining: 163ms
68:	learn: 18.2803212	total: 351ms	remaining: 158ms
69:	learn: 18.1738467	total: 356ms	remaining: 152ms
70:	learn: 18.0884235	total: 360ms	remaining: 147ms
71:	learn: 18.0129445	total: 364ms	remaining: 141ms
72:	learn: 17.8582158	total: 368ms	remaining: 136ms
73:	learn: 17.7473705	total: 372ms	remaining: 131ms
74:	learn: 17.6431421	total: 377ms	remaining: 126ms
75:	learn: 17.5398511	total: 381ms	remaining: 120ms
76:	learn: 17.4404598	total: 385ms	remaining: 115ms
77:	learn: 17.3477525	total: 389ms	remaining: 110ms
78:	learn: 17.2283831	total: 393ms	remaining: 105ms
79:	learn: 17.0767035	total: 397ms	remaining: 99.3ms
80:	learn: 16.9732705	total: 401ms	remaining: 94ms
81:	learn: 16.8927449	total: 405ms	remaining: 88.9ms
82:	learn: 16.8145625	total: 409ms	remaining: 83.9ms
83:	learn: 16.7290845	total: 414ms	remaining: 78.9ms
84:	learn: 16.6661414	total: 419ms	remaining: 73.9ms
85:	learn: 16.5875575	total: 423ms	remaining: 68.9ms
86:	learn: 16.4578580	total: 427ms	remaining: 63.9ms
87:	learn: 16.4243550	total: 432ms	remaining: 58.9ms
88:	learn: 16.3251337	total: 436ms	remaining: 53.9ms
89:	learn: 16.2516385	total: 440ms	remaining: 48.9ms
90:	learn: 16.1226518	total: 445ms	remaining: 44ms
91:	learn: 16.0718308	total: 451ms	remaining: 39.3ms
92:	learn: 15.9636735	total: 458ms	remaining: 34.5ms
93:	learn: 15.8923693	total: 466ms	remaining: 29.7ms
94:	learn: 15.8270425	total: 473ms	remaining: 24.9ms
95:	learn: 15.7449077	total: 480ms	remaining: 20ms
96:	learn: 15.6978936	total: 485ms	remaining: 15ms
97:	learn: 15.6527285	total: 490ms	remaining: 10ms
98:	learn: 15.5557320	total: 496ms	remaining: 5.01ms
99:	learn: 15.4399171	total: 501ms	remaining: 0us
0:	learn: 46.7092506	total: 6.42ms	remaining: 636ms
1:	learn: 45.8266821	total: 11.7ms	remaining: 573ms
2:	learn: 45.0052023	total: 16.1ms	remaining: 521ms
3:	learn: 44.3828795	total: 20.8ms	remaining: 500ms
4:	learn: 43.7255353	total: 25.6ms	remaining: 487ms
5:	learn: 43.1663831	total: 30.4ms	remaining: 476ms
6:	learn: 42.3875189	total: 35.3ms	remaining: 469ms
7:	learn: 41.7839075	total: 40ms	remaining: 460ms
8:	learn: 41.0740108	total: 44.4ms	remaining: 449ms
9:	learn: 40.3846647	total: 49ms	remaining: 441ms
10:	learn: 39.8821046	total: 54ms	remaining: 437ms
11:	learn: 39.1807254	total: 58.9ms	remaining: 432ms
12:	learn: 38.7153028	total: 63.4ms	remaining: 424ms
13:	learn: 38.0474495	total: 68.2ms	remaining: 419ms
14:	learn: 37.3844461	total: 73.3ms	remaining: 415ms
15:	learn: 36.9210704	total: 79.3ms	remaining: 416ms
16:	learn: 36.3160964	total: 84.4ms	remaining: 412ms
17:	learn: 35.8915826	total: 89.6ms	remaining: 408ms
18:	learn: 35.5519989	total: 95.2ms	remaining: 406ms
19:	learn: 35.1437045	total: 100ms	remaining: 402ms
20:	learn: 34.6387799	total: 110ms	remaining: 413ms
21:	learn: 34.2437068	total: 118ms	remaining: 417ms
22:	learn: 33.8262100	total: 126ms	remaining: 422ms
23:	learn: 33.4683000	total: 132ms	remaining: 418ms
24:	learn: 32.9996389	total: 147ms	remaining: 442ms
25:	learn: 32.6942147	total: 153ms	remaining: 435ms
26:	learn: 32.3016096	total: 158ms	remaining: 427ms
27:	learn: 31.9517346	total: 163ms	remaining: 420ms
28:	learn: 31.5277387	total: 169ms	remaining: 413ms
29:	learn: 31.2545365	total: 174ms	remaining: 406ms
30:	learn: 31.0510813	total: 180ms	remaining: 400ms
31:	learn: 30.6383830	total: 185ms	remaining: 394ms
32:	learn: 30.2800150	total: 190ms	remaining: 386ms
33:	learn: 29.9559797	total: 195ms	remaining: 379ms
34:	learn: 29.5802745	total: 200ms	remaining: 372ms
35:	learn: 29.2605111	total: 205ms	remaining: 365ms
36:	learn: 28.9582434	total: 211ms	remaining: 359ms
37:	learn: 28.6149387	total: 215ms	remaining: 351ms
38:	learn: 28.3980091	total: 219ms	remaining: 343ms
39:	learn: 28.1704520	total: 224ms	remaining: 336ms
40:	learn: 27.8881319	total: 228ms	remaining: 328ms
41:	learn: 27.5805731	total: 233ms	remaining: 322ms
42:	learn: 27.3520567	total: 237ms	remaining: 314ms
43:	learn: 27.1039679	total: 242ms	remaining: 308ms
44:	learn: 26.8472623	total: 246ms	remaining: 300ms
45:	learn: 26.5757869	total: 250ms	remaining: 294ms
46:	learn: 26.4579118	total: 255ms	remaining: 287ms
47:	learn: 26.1279008	total: 259ms	remaining: 281ms
48:	learn: 25.8503346	total: 264ms	remaining: 274ms
49:	learn: 25.7039015	total: 268ms	remaining: 268ms
50:	learn: 25.4317154	total: 273ms	remaining: 263ms
51:	learn: 25.3028008	total: 279ms	remaining: 257ms
52:	learn: 25.1906194	total: 284ms	remaining: 252ms
53:	learn: 25.0082790	total: 289ms	remaining: 246ms
54:	learn: 24.8264791	total: 294ms	remaining: 241ms
55:	learn: 24.5961365	total: 299ms	remaining: 235ms
56:	learn: 24.4007690	total: 307ms	remaining: 232ms
57:	learn: 24.2476228	total: 315ms	remaining: 228ms
58:	learn: 23.9582465	total: 325ms	remaining: 226ms
59:	learn: 23.7247243	total: 335ms	remaining: 223ms
60:	learn: 23.5379970	total: 341ms	remaining: 218ms
61:	learn: 23.3908530	total: 347ms	remaining: 212ms
62:	learn: 23.2123241	total: 353ms	remaining: 207ms
63:	learn: 23.1010345	total: 359ms	remaining: 202ms
64:	learn: 22.9032423	total: 365ms	remaining: 196ms
65:	learn: 22.7815198	total: 371ms	remaining: 191ms
66:	learn: 22.6325063	total: 376ms	remaining: 185ms
67:	learn: 22.5406071	total: 381ms	remaining: 179ms
68:	learn: 22.4413332	total: 387ms	remaining: 174ms
69:	learn: 22.3005609	total: 392ms	remaining: 168ms
70:	learn: 22.1779345	total: 397ms	remaining: 162ms
71:	learn: 22.0491576	total: 403ms	remaining: 157ms
72:	learn: 21.9379106	total: 408ms	remaining: 151ms
73:	learn: 21.7597096	total: 413ms	remaining: 145ms
74:	learn: 21.6042300	total: 417ms	remaining: 139ms
75:	learn: 21.4644642	total: 421ms	remaining: 133ms
76:	learn: 21.3811287	total: 425ms	remaining: 127ms
77:	learn: 21.3089276	total: 430ms	remaining: 121ms
78:	learn: 21.1654429	total: 434ms	remaining: 115ms
79:	learn: 20.9602460	total: 438ms	remaining: 109ms
80:	learn: 20.7959461	total: 442ms	remaining: 104ms
81:	learn: 20.5861156	total: 446ms	remaining: 98ms
82:	learn: 20.5120680	total: 450ms	remaining: 92.2ms
83:	learn: 20.3997233	total: 455ms	remaining: 86.6ms
84:	learn: 20.2499469	total: 459ms	remaining: 81ms
85:	learn: 20.1117768	total: 464ms	remaining: 75.5ms
86:	learn: 20.0617643	total: 468ms	remaining: 70ms
87:	learn: 19.9609182	total: 473ms	remaining: 64.5ms
88:	learn: 19.8763814	total: 478ms	remaining: 59.1ms
89:	learn: 19.7843516	total: 483ms	remaining: 53.6ms
90:	learn: 19.6926200	total: 487ms	remaining: 48.2ms
91:	learn: 19.5686774	total: 492ms	remaining: 42.8ms
92:	learn: 19.4727236	total: 499ms	remaining: 37.5ms
93:	learn: 19.3780174	total: 506ms	remaining: 32.3ms
94:	learn: 19.2840650	total: 515ms	remaining: 27.1ms
95:	learn: 19.1747368	total: 522ms	remaining: 21.7ms
96:	learn: 19.1273306	total: 531ms	remaining: 16.4ms
97:	learn: 19.0413946	total: 536ms	remaining: 10.9ms
98:	learn: 18.8980682	total: 541ms	remaining: 5.47ms
99:	learn: 18.7799962	total: 547ms	remaining: 0us
0:	learn: 46.4426352	total: 5.5ms	remaining: 545ms
1:	learn: 45.5770653	total: 11.1ms	remaining: 543ms
2:	learn: 44.6956685	total: 15.8ms	remaining: 511ms
3:	learn: 43.9934709	total: 20.1ms	remaining: 482ms
4:	learn: 43.3008183	total: 24.6ms	remaining: 467ms
5:	learn: 42.7510022	total: 28.9ms	remaining: 453ms
6:	learn: 42.0237555	total: 32.8ms	remaining: 436ms
7:	learn: 41.5354996	total: 37.3ms	remaining: 429ms
8:	learn: 41.0264055	total: 41.5ms	remaining: 420ms
9:	learn: 40.5267003	total: 45.7ms	remaining: 411ms
10:	learn: 39.8363942	total: 50.2ms	remaining: 406ms
11:	learn: 39.2014089	total: 55.2ms	remaining: 405ms
12:	learn: 38.7943524	total: 60.1ms	remaining: 402ms
13:	learn: 38.1664113	total: 64.7ms	remaining: 398ms
14:	learn: 37.7492773	total: 68.9ms	remaining: 390ms
15:	learn: 37.2369693	total: 73.3ms	remaining: 385ms
16:	learn: 36.6953383	total: 77.7ms	remaining: 379ms
17:	learn: 36.3580916	total: 81.9ms	remaining: 373ms
18:	learn: 35.8637745	total: 86.3ms	remaining: 368ms
19:	learn: 35.4299153	total: 90.6ms	remaining: 362ms
20:	learn: 34.8794879	total: 95.3ms	remaining: 359ms
21:	learn: 34.3253348	total: 99.5ms	remaining: 353ms
22:	learn: 33.9307096	total: 107ms	remaining: 357ms
23:	learn: 33.5952896	total: 114ms	remaining: 362ms
24:	learn: 33.1314051	total: 123ms	remaining: 370ms
25:	learn: 32.8502968	total: 130ms	remaining: 370ms
26:	learn: 32.4430184	total: 138ms	remaining: 372ms
27:	learn: 32.0721224	total: 143ms	remaining: 369ms
28:	learn: 31.7977479	total: 149ms	remaining: 365ms
29:	learn: 31.3999469	total: 154ms	remaining: 360ms
30:	learn: 31.1179360	total: 160ms	remaining: 357ms
31:	learn: 30.7712852	total: 166ms	remaining: 352ms
32:	learn: 30.2912977	total: 172ms	remaining: 349ms
33:	learn: 29.9920376	total: 178ms	remaining: 345ms
34:	learn: 29.6637918	total: 183ms	remaining: 340ms
35:	learn: 29.3522959	total: 188ms	remaining: 335ms
36:	learn: 29.0482516	total: 193ms	remaining: 329ms
37:	learn: 28.7956656	total: 198ms	remaining: 323ms
38:	learn: 28.4845569	total: 203ms	remaining: 318ms
39:	learn: 28.3038067	total: 208ms	remaining: 312ms
40:	learn: 28.1185263	total: 213ms	remaining: 306ms
41:	learn: 27.8012563	total: 217ms	remaining: 300ms
42:	learn: 27.5184259	total: 222ms	remaining: 294ms
43:	learn: 27.3019892	total: 226ms	remaining: 288ms
44:	learn: 27.0494594	total: 231ms	remaining: 282ms
45:	learn: 26.8054317	total: 235ms	remaining: 276ms
46:	learn: 26.6554974	total: 239ms	remaining: 270ms
47:	learn: 26.3568392	total: 244ms	remaining: 264ms
48:	learn: 26.1045872	total: 248ms	remaining: 258ms
49:	learn: 25.9807311	total: 252ms	remaining: 252ms
50:	learn: 25.7104640	total: 256ms	remaining: 246ms
51:	learn: 25.6019547	total: 260ms	remaining: 240ms
52:	learn: 25.5011930	total: 265ms	remaining: 235ms
53:	learn: 25.2291639	total: 269ms	remaining: 229ms
54:	learn: 24.9952313	total: 273ms	remaining: 224ms
55:	learn: 24.8195031	total: 277ms	remaining: 218ms
56:	learn: 24.5591684	total: 282ms	remaining: 213ms
57:	learn: 24.4163080	total: 287ms	remaining: 208ms
58:	learn: 24.2328188	total: 291ms	remaining: 202ms
59:	learn: 24.0087408	total: 296ms	remaining: 197ms
60:	learn: 23.8918912	total: 301ms	remaining: 192ms
61:	learn: 23.7537024	total: 306ms	remaining: 187ms
62:	learn: 23.5466923	total: 311ms	remaining: 182ms
63:	learn: 23.3903724	total: 317ms	remaining: 178ms
64:	learn: 23.3257785	total: 324ms	remaining: 175ms
65:	learn: 23.2839464	total: 332ms	remaining: 171ms
66:	learn: 23.1476036	total: 341ms	remaining: 168ms
67:	learn: 22.9480972	total: 348ms	remaining: 164ms
68:	learn: 22.7537529	total: 354ms	remaining: 159ms
69:	learn: 22.6209544	total: 359ms	remaining: 154ms
70:	learn: 22.5058753	total: 364ms	remaining: 149ms
71:	learn: 22.4068656	total: 369ms	remaining: 143ms
72:	learn: 22.3254150	total: 374ms	remaining: 138ms
73:	learn: 22.1784174	total: 380ms	remaining: 133ms
74:	learn: 22.1095388	total: 385ms	remaining: 128ms
75:	learn: 21.9958083	total: 390ms	remaining: 123ms
76:	learn: 21.8728475	total: 395ms	remaining: 118ms
77:	learn: 21.7975828	total: 401ms	remaining: 113ms
78:	learn: 21.7133267	total: 406ms	remaining: 108ms
79:	learn: 21.6023410	total: 410ms	remaining: 103ms
80:	learn: 21.5254474	total: 415ms	remaining: 97.3ms
81:	learn: 21.3307418	total: 419ms	remaining: 91.9ms
82:	learn: 21.2411976	total: 423ms	remaining: 86.6ms
83:	learn: 21.1091386	total: 427ms	remaining: 81.3ms
84:	learn: 21.0526747	total: 431ms	remaining: 76.1ms
85:	learn: 20.9083817	total: 435ms	remaining: 70.8ms
86:	learn: 20.8767767	total: 439ms	remaining: 65.6ms
87:	learn: 20.8143988	total: 443ms	remaining: 60.4ms
88:	learn: 20.7127697	total: 447ms	remaining: 55.3ms
89:	learn: 20.6112504	total: 451ms	remaining: 50.1ms
90:	learn: 20.4609960	total: 455ms	remaining: 45ms
91:	learn: 20.3648890	total: 459ms	remaining: 39.9ms
92:	learn: 20.3052040	total: 463ms	remaining: 34.9ms
93:	learn: 20.2587865	total: 467ms	remaining: 29.8ms
94:	learn: 20.2096406	total: 472ms	remaining: 24.9ms
95:	learn: 20.1301385	total: 477ms	remaining: 19.9ms
96:	learn: 20.0401359	total: 481ms	remaining: 14.9ms
97:	learn: 19.9791591	total: 486ms	remaining: 9.91ms
98:	learn: 19.9237318	total: 490ms	remaining: 4.95ms
99:	learn: 19.8009190	total: 494ms	remaining: 0us
0:	learn: 46.9286701	total: 5.4ms	remaining: 535ms
1:	learn: 46.2851598	total: 10.3ms	remaining: 504ms
2:	learn: 45.4586007	total: 15.3ms	remaining: 496ms
3:	learn: 44.6581393	total: 20.7ms	remaining: 496ms
4:	learn: 43.8231644	total: 25.9ms	remaining: 492ms
5:	learn: 43.2906569	total: 30.9ms	remaining: 484ms
6:	learn: 42.5095813	total: 36.3ms	remaining: 482ms
7:	learn: 41.9310465	total: 41.5ms	remaining: 478ms
8:	learn: 41.2083262	total: 45.8ms	remaining: 463ms
9:	learn: 40.6852547	total: 50.9ms	remaining: 458ms
10:	learn: 39.9637018	total: 56.1ms	remaining: 454ms
11:	learn: 39.2804189	total: 61ms	remaining: 448ms
12:	learn: 38.8804017	total: 65ms	remaining: 435ms
13:	learn: 38.3826597	total: 68.7ms	remaining: 422ms
14:	learn: 37.9240424	total: 72.2ms	remaining: 409ms
15:	learn: 37.4312070	total: 75.7ms	remaining: 398ms
16:	learn: 36.8803673	total: 79.9ms	remaining: 390ms
17:	learn: 36.5496582	total: 84.2ms	remaining: 383ms
18:	learn: 36.2078375	total: 88.3ms	remaining: 377ms
19:	learn: 35.6806593	total: 92.2ms	remaining: 369ms
20:	learn: 35.1512154	total: 95.9ms	remaining: 361ms
21:	learn: 34.6013055	total: 100ms	remaining: 355ms
22:	learn: 34.2380102	total: 104ms	remaining: 349ms
23:	learn: 33.8720185	total: 108ms	remaining: 343ms
24:	learn: 33.4426135	total: 113ms	remaining: 338ms
25:	learn: 33.1471186	total: 117ms	remaining: 333ms
26:	learn: 32.8018279	total: 121ms	remaining: 327ms
27:	learn: 32.4498594	total: 125ms	remaining: 321ms
28:	learn: 31.9749480	total: 129ms	remaining: 315ms
29:	learn: 31.6470735	total: 133ms	remaining: 311ms
30:	learn: 31.4265242	total: 137ms	remaining: 306ms
31:	learn: 31.0753325	total: 141ms	remaining: 301ms
32:	learn: 30.7192494	total: 146ms	remaining: 296ms
33:	learn: 30.3547940	total: 150ms	remaining: 291ms
34:	learn: 30.1296593	total: 154ms	remaining: 286ms
35:	learn: 29.9367140	total: 158ms	remaining: 282ms
36:	learn: 29.6248477	total: 163ms	remaining: 278ms
37:	learn: 29.3156707	total: 172ms	remaining: 281ms
38:	learn: 29.1534039	total: 181ms	remaining: 284ms
39:	learn: 28.9351289	total: 191ms	remaining: 286ms
40:	learn: 28.7057685	total: 198ms	remaining: 286ms
41:	learn: 28.3132521	total: 204ms	remaining: 282ms
42:	learn: 28.0739054	total: 225ms	remaining: 298ms
43:	learn: 27.8135917	total: 230ms	remaining: 293ms
44:	learn: 27.5376804	total: 235ms	remaining: 287ms
45:	learn: 27.3195849	total: 240ms	remaining: 281ms
46:	learn: 27.1681104	total: 244ms	remaining: 276ms
47:	learn: 27.0122442	total: 249ms	remaining: 270ms
48:	learn: 26.7819409	total: 253ms	remaining: 264ms
49:	learn: 26.6429308	total: 259ms	remaining: 259ms
50:	learn: 26.3482899	total: 264ms	remaining: 254ms
51:	learn: 26.2432755	total: 268ms	remaining: 247ms
52:	learn: 26.0811102	total: 272ms	remaining: 241ms
53:	learn: 25.9398113	total: 276ms	remaining: 235ms
54:	learn: 25.7891395	total: 279ms	remaining: 229ms
55:	learn: 25.6185338	total: 283ms	remaining: 223ms
56:	learn: 25.3293977	total: 287ms	remaining: 216ms
57:	learn: 25.1918906	total: 291ms	remaining: 210ms
58:	learn: 25.0503990	total: 294ms	remaining: 204ms
59:	learn: 24.8225776	total: 298ms	remaining: 199ms
60:	learn: 24.5969153	total: 302ms	remaining: 193ms
61:	learn: 24.4657353	total: 305ms	remaining: 187ms
62:	learn: 24.2861000	total: 309ms	remaining: 182ms
63:	learn: 24.1719148	total: 313ms	remaining: 176ms
64:	learn: 24.0547875	total: 317ms	remaining: 171ms
65:	learn: 23.9156724	total: 321ms	remaining: 165ms
66:	learn: 23.7604012	total: 325ms	remaining: 160ms
67:	learn: 23.6265679	total: 329ms	remaining: 155ms
68:	learn: 23.5372255	total: 333ms	remaining: 150ms
69:	learn: 23.3286241	total: 337ms	remaining: 145ms
70:	learn: 23.1806465	total: 341ms	remaining: 139ms
71:	learn: 23.0652081	total: 346ms	remaining: 135ms
72:	learn: 22.9231023	total: 350ms	remaining: 130ms
73:	learn: 22.8020380	total: 355ms	remaining: 125ms
74:	learn: 22.6525036	total: 359ms	remaining: 120ms
75:	learn: 22.5616268	total: 364ms	remaining: 115ms
76:	learn: 22.4395250	total: 372ms	remaining: 111ms
77:	learn: 22.3732379	total: 380ms	remaining: 107ms
78:	learn: 22.2300874	total: 389ms	remaining: 103ms
79:	learn: 22.0209882	total: 396ms	remaining: 98.9ms
80:	learn: 21.8703996	total: 401ms	remaining: 94ms
81:	learn: 21.7222039	total: 406ms	remaining: 89ms
82:	learn: 21.5903685	total: 410ms	remaining: 84.1ms
83:	learn: 21.4915083	total: 415ms	remaining: 79.1ms
84:	learn: 21.3320736	total: 421ms	remaining: 74.3ms
85:	learn: 21.2295060	total: 426ms	remaining: 69.4ms
86:	learn: 21.1983620	total: 432ms	remaining: 64.5ms
87:	learn: 21.1404156	total: 436ms	remaining: 59.5ms
88:	learn: 21.0684840	total: 441ms	remaining: 54.5ms
89:	learn: 20.9269197	total: 446ms	remaining: 49.5ms
90:	learn: 20.8614606	total: 451ms	remaining: 44.6ms
91:	learn: 20.6642996	total: 456ms	remaining: 39.6ms
92:	learn: 20.5612705	total: 461ms	remaining: 34.7ms
93:	learn: 20.5264997	total: 467ms	remaining: 29.8ms
94:	learn: 20.4532331	total: 471ms	remaining: 24.8ms
95:	learn: 20.3700696	total: 475ms	remaining: 19.8ms
96:	learn: 20.2671574	total: 478ms	remaining: 14.8ms
97:	learn: 20.1761207	total: 482ms	remaining: 9.84ms
98:	learn: 20.0533799	total: 486ms	remaining: 4.91ms
99:	learn: 19.9890055	total: 490ms	remaining: 0us
0:	learn: 27.5585353	total: 4.69ms	remaining: 465ms
1:	learn: 27.1656995	total: 9.11ms	remaining: 447ms
2:	learn: 26.8590175	total: 13.5ms	remaining: 435ms
3:	learn: 26.5818406	total: 17.9ms	remaining: 430ms
4:	learn: 26.1148663	total: 22.3ms	remaining: 423ms
5:	learn: 25.7690484	total: 27.5ms	remaining: 431ms
6:	learn: 25.3489206	total: 35ms	remaining: 465ms
7:	learn: 24.9542406	total: 42.4ms	remaining: 487ms
8:	learn: 24.6777517	total: 50.3ms	remaining: 509ms
9:	learn: 24.3242344	total: 58ms	remaining: 522ms
10:	learn: 24.0383073	total: 62.9ms	remaining: 509ms
11:	learn: 23.7383420	total: 67.8ms	remaining: 497ms
12:	learn: 23.3461670	total: 73.5ms	remaining: 492ms
13:	learn: 23.0928636	total: 78.6ms	remaining: 483ms
14:	learn: 22.8770414	total: 84.1ms	remaining: 476ms
15:	learn: 22.6323214	total: 89.5ms	remaining: 470ms
16:	learn: 22.3597072	total: 94.9ms	remaining: 463ms
17:	learn: 22.1079813	total: 101ms	remaining: 458ms
18:	learn: 21.8421199	total: 106ms	remaining: 451ms
19:	learn: 21.6576508	total: 111ms	remaining: 446ms
20:	learn: 21.4301268	total: 116ms	remaining: 438ms
21:	learn: 21.2287388	total: 121ms	remaining: 429ms
22:	learn: 21.0553872	total: 127ms	remaining: 424ms
23:	learn: 20.8977091	total: 132ms	remaining: 419ms
24:	learn: 20.6619051	total: 137ms	remaining: 410ms
25:	learn: 20.5040955	total: 141ms	remaining: 402ms
26:	learn: 20.3181195	total: 145ms	remaining: 393ms
27:	learn: 20.0869436	total: 150ms	remaining: 385ms
28:	learn: 19.9375985	total: 154ms	remaining: 376ms
29:	learn: 19.8247516	total: 158ms	remaining: 369ms
30:	learn: 19.6261697	total: 162ms	remaining: 361ms
31:	learn: 19.4547236	total: 166ms	remaining: 352ms
32:	learn: 19.3157092	total: 170ms	remaining: 345ms
33:	learn: 19.1561419	total: 174ms	remaining: 338ms
34:	learn: 19.0453620	total: 178ms	remaining: 331ms
35:	learn: 18.8738574	total: 182ms	remaining: 324ms
36:	learn: 18.7072907	total: 186ms	remaining: 317ms
37:	learn: 18.5877943	total: 190ms	remaining: 310ms
38:	learn: 18.4436380	total: 195ms	remaining: 304ms
39:	learn: 18.3463356	total: 199ms	remaining: 298ms
40:	learn: 18.2008059	total: 203ms	remaining: 292ms
41:	learn: 18.0582079	total: 207ms	remaining: 286ms
42:	learn: 17.8891982	total: 212ms	remaining: 281ms
43:	learn: 17.7332246	total: 217ms	remaining: 276ms
44:	learn: 17.6206421	total: 221ms	remaining: 270ms
45:	learn: 17.4982800	total: 226ms	remaining: 265ms
46:	learn: 17.3970150	total: 231ms	remaining: 260ms
47:	learn: 17.3058203	total: 235ms	remaining: 255ms
48:	learn: 17.1789256	total: 240ms	remaining: 250ms
49:	learn: 17.0916229	total: 245ms	remaining: 245ms
50:	learn: 16.9859820	total: 249ms	remaining: 239ms
51:	learn: 16.8995582	total: 253ms	remaining: 234ms
52:	learn: 16.8137014	total: 258ms	remaining: 229ms
53:	learn: 16.7021451	total: 266ms	remaining: 227ms
54:	learn: 16.5895582	total: 274ms	remaining: 224ms
55:	learn: 16.5015639	total: 282ms	remaining: 222ms
56:	learn: 16.4356637	total: 290ms	remaining: 219ms
57:	learn: 16.3514525	total: 295ms	remaining: 214ms
58:	learn: 16.2401369	total: 301ms	remaining: 209ms
59:	learn: 16.1293223	total: 306ms	remaining: 204ms
60:	learn: 16.0271167	total: 311ms	remaining: 199ms
61:	learn: 15.9126257	total: 316ms	remaining: 194ms
62:	learn: 15.8391096	total: 321ms	remaining: 189ms
63:	learn: 15.7441773	total: 326ms	remaining: 184ms
64:	learn: 15.6885195	total: 332ms	remaining: 179ms
65:	learn: 15.6052039	total: 336ms	remaining: 173ms
66:	learn: 15.5074202	total: 342ms	remaining: 168ms
67:	learn: 15.4054338	total: 346ms	remaining: 163ms
68:	learn: 15.2885714	total: 352ms	remaining: 158ms
69:	learn: 15.2157472	total: 357ms	remaining: 153ms
70:	learn: 15.1031554	total: 361ms	remaining: 148ms
71:	learn: 15.0237470	total: 365ms	remaining: 142ms
72:	learn: 14.9756825	total: 369ms	remaining: 136ms
73:	learn: 14.8840596	total: 373ms	remaining: 131ms
74:	learn: 14.8077061	total: 377ms	remaining: 126ms
75:	learn: 14.7444437	total: 381ms	remaining: 120ms
76:	learn: 14.6751720	total: 386ms	remaining: 115ms
77:	learn: 14.5830333	total: 390ms	remaining: 110ms
78:	learn: 14.5241206	total: 394ms	remaining: 105ms
79:	learn: 14.4892731	total: 398ms	remaining: 99.4ms
80:	learn: 14.4256605	total: 402ms	remaining: 94.3ms
81:	learn: 14.3666860	total: 406ms	remaining: 89.1ms
82:	learn: 14.2938372	total: 410ms	remaining: 84ms
83:	learn: 14.2161532	total: 414ms	remaining: 78.8ms
84:	learn: 14.1582910	total: 418ms	remaining: 73.8ms
85:	learn: 14.1029153	total: 423ms	remaining: 68.9ms
86:	learn: 14.0475835	total: 428ms	remaining: 63.9ms
87:	learn: 13.9892661	total: 432ms	remaining: 58.9ms
88:	learn: 13.9481628	total: 437ms	remaining: 54ms
89:	learn: 13.8483991	total: 442ms	remaining: 49.1ms
90:	learn: 13.7775614	total: 446ms	remaining: 44.1ms
91:	learn: 13.7304585	total: 450ms	remaining: 39.1ms
92:	learn: 13.6783381	total: 455ms	remaining: 34.3ms
93:	learn: 13.6356964	total: 463ms	remaining: 29.6ms
94:	learn: 13.5924371	total: 471ms	remaining: 24.8ms
95:	learn: 13.5400746	total: 480ms	remaining: 20ms
96:	learn: 13.4897333	total: 487ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 493ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 498ms	remaining: 5.03ms
99:	learn: 13.3082371	total: 503ms	remaining: 0us
0:	learn: 43.0395283	total: 4.46ms	remaining: 441ms
1:	learn: 42.1130223	total: 8.64ms	remaining: 423ms
2:	learn: 41.1753409	total: 12.9ms	remaining: 417ms
3:	learn: 40.3637444	total: 17.3ms	remaining: 415ms
4:	learn: 39.6508088	total: 21.2ms	remaining: 403ms
5:	learn: 38.7217934	total: 25.3ms	remaining: 396ms
6:	learn: 37.8538055	total: 29.4ms	remaining: 391ms
7:	learn: 36.9793574	total: 33.3ms	remaining: 383ms
8:	learn: 36.3076984	total: 37.5ms	remaining: 379ms
9:	learn: 35.6673160	total: 41.6ms	remaining: 374ms
10:	learn: 34.8889800	total: 45.8ms	remaining: 371ms
11:	learn: 34.1675517	total: 49.9ms	remaining: 366ms
12:	learn: 33.6779564	total: 54.1ms	remaining: 362ms
13:	learn: 33.0710039	total: 58.5ms	remaining: 359ms
14:	learn: 32.4966674	total: 62.8ms	remaining: 356ms
15:	learn: 31.9492856	total: 67.1ms	remaining: 352ms
16:	learn: 31.5108129	total: 71.7ms	remaining: 350ms
17:	learn: 30.9804023	total: 76.9ms	remaining: 350ms
18:	learn: 30.4169089	total: 82.5ms	remaining: 352ms
19:	learn: 29.8930375	total: 87.5ms	remaining: 350ms
20:	learn: 29.3974421	total: 92.8ms	remaining: 349ms
21:	learn: 28.8792307	total: 98ms	remaining: 348ms
22:	learn: 28.3894474	total: 103ms	remaining: 345ms
23:	learn: 27.9921276	total: 108ms	remaining: 341ms
24:	learn: 27.6158887	total: 116ms	remaining: 347ms
25:	learn: 27.2866950	total: 124ms	remaining: 353ms
26:	learn: 26.8770708	total: 134ms	remaining: 363ms
27:	learn: 26.6233005	total: 141ms	remaining: 363ms
28:	learn: 26.2921934	total: 148ms	remaining: 362ms
29:	learn: 25.9156920	total: 154ms	remaining: 358ms
30:	learn: 25.5311106	total: 156ms	remaining: 346ms
31:	learn: 25.2178997	total: 161ms	remaining: 342ms
32:	learn: 24.8572196	total: 167ms	remaining: 339ms
33:	learn: 24.5849710	total: 172ms	remaining: 334ms
34:	learn: 24.2209190	total: 177ms	remaining: 329ms
35:	learn: 23.8708250	total: 183ms	remaining: 325ms
36:	learn: 23.5325279	total: 188ms	remaining: 320ms
37:	learn: 23.2116148	total: 193ms	remaining: 316ms
38:	learn: 22.9696787	total: 199ms	remaining: 311ms
39:	learn: 22.7936783	total: 204ms	remaining: 306ms
40:	learn: 22.6228847	total: 210ms	remaining: 302ms
41:	learn: 22.3691527	total: 216ms	remaining: 298ms
42:	learn: 22.1002173	total: 220ms	remaining: 292ms
43:	learn: 21.9157268	total: 225ms	remaining: 286ms
44:	learn: 21.7229102	total: 229ms	remaining: 280ms
45:	learn: 21.4642005	total: 234ms	remaining: 274ms
46:	learn: 21.3029442	total: 239ms	remaining: 269ms
47:	learn: 21.1469792	total: 243ms	remaining: 264ms
48:	learn: 20.9458235	total: 248ms	remaining: 258ms
49:	learn: 20.7335242	total: 253ms	remaining: 253ms
50:	learn: 20.5440269	total: 257ms	remaining: 247ms
51:	learn: 20.3661449	total: 262ms	remaining: 242ms
52:	learn: 20.2158134	total: 267ms	remaining: 236ms
53:	learn: 19.9934873	total: 271ms	remaining: 231ms
54:	learn: 19.7879739	total: 276ms	remaining: 225ms
55:	learn: 19.6630460	total: 280ms	remaining: 220ms
56:	learn: 19.5152729	total: 284ms	remaining: 215ms
57:	learn: 19.3581128	total: 289ms	remaining: 209ms
58:	learn: 19.2209303	total: 294ms	remaining: 204ms
59:	learn: 19.0965248	total: 299ms	remaining: 199ms
60:	learn: 19.0035954	total: 304ms	remaining: 194ms
61:	learn: 18.8554149	total: 308ms	remaining: 189ms
62:	learn: 18.7095427	total: 316ms	remaining: 186ms
63:	learn: 18.5751494	total: 324ms	remaining: 182ms
64:	learn: 18.4678251	total: 333ms	remaining: 179ms
65:	learn: 18.3500325	total: 340ms	remaining: 175ms
66:	learn: 18.2088983	total: 345ms	remaining: 170ms
67:	learn: 18.0737705	total: 351ms	remaining: 165ms
68:	learn: 17.9325058	total: 356ms	remaining: 160ms
69:	learn: 17.8003911	total: 362ms	remaining: 155ms
70:	learn: 17.7385366	total: 367ms	remaining: 150ms
71:	learn: 17.6106998	total: 372ms	remaining: 145ms
72:	learn: 17.4816270	total: 377ms	remaining: 140ms
73:	learn: 17.4025554	total: 383ms	remaining: 135ms
74:	learn: 17.2902108	total: 388ms	remaining: 129ms
75:	learn: 17.2158048	total: 393ms	remaining: 124ms
76:	learn: 17.1261053	total: 398ms	remaining: 119ms
77:	learn: 17.0308917	total: 403ms	remaining: 114ms
78:	learn: 16.9546705	total: 408ms	remaining: 109ms
79:	learn: 16.8319165	total: 414ms	remaining: 104ms
80:	learn: 16.7687017	total: 419ms	remaining: 98.2ms
81:	learn: 16.6972326	total: 423ms	remaining: 92.8ms
82:	learn: 16.6124580	total: 427ms	remaining: 87.4ms
83:	learn: 16.4999052	total: 431ms	remaining: 82.1ms
84:	learn: 16.4302484	total: 436ms	remaining: 76.9ms
85:	learn: 16.3201363	total: 440ms	remaining: 71.7ms
86:	learn: 16.2534314	total: 445ms	remaining: 66.4ms
87:	learn: 16.1720485	total: 449ms	remaining: 61.2ms
88:	learn: 16.0625751	total: 453ms	remaining: 56ms
89:	learn: 15.9135088	total: 458ms	remaining: 50.8ms
90:	learn: 15.8658863	total: 462ms	remaining: 45.7ms
91:	learn: 15.8066805	total: 466ms	remaining: 40.6ms
92:	learn: 15.7412103	total: 471ms	remaining: 35.4ms
93:	learn: 15.6542776	total: 475ms	remaining: 30.3ms
94:	learn: 15.5760334	total: 480ms	remaining: 25.3ms
95:	learn: 15.5434131	total: 485ms	remaining: 20.2ms
96:	learn: 15.4709561	total: 490ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 494ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 499ms	remaining: 5.04ms
99:	learn: 15.3106595	total: 504ms	remaining: 0us
0:	learn: 46.7142257	total: 5.99ms	remaining: 593ms
1:	learn: 45.7634153	total: 11.9ms	remaining: 584ms
2:	learn: 45.0054253	total: 17ms	remaining: 551ms
3:	learn: 44.2120432	total: 22ms	remaining: 527ms
4:	learn: 43.3960472	total: 27.4ms	remaining: 520ms
5:	learn: 42.8588120	total: 32.4ms	remaining: 507ms
6:	learn: 41.9533701	total: 37.1ms	remaining: 493ms
7:	learn: 41.2745030	total: 42.5ms	remaining: 489ms
8:	learn: 40.6797495	total: 48.3ms	remaining: 488ms
9:	learn: 39.9899571	total: 52.9ms	remaining: 476ms
10:	learn: 39.4682100	total: 57.7ms	remaining: 467ms
11:	learn: 39.0305595	total: 61.9ms	remaining: 454ms
12:	learn: 38.4200417	total: 66ms	remaining: 441ms
13:	learn: 37.8425194	total: 69.7ms	remaining: 428ms
14:	learn: 37.4203127	total: 73.6ms	remaining: 417ms
15:	learn: 36.9917688	total: 77.3ms	remaining: 406ms
16:	learn: 36.5544138	total: 81.6ms	remaining: 399ms
17:	learn: 36.0727019	total: 85.6ms	remaining: 390ms
18:	learn: 35.4835715	total: 89.7ms	remaining: 382ms
19:	learn: 34.9865654	total: 93.5ms	remaining: 374ms
20:	learn: 34.6063373	total: 97.9ms	remaining: 368ms
21:	learn: 34.0997289	total: 102ms	remaining: 362ms
22:	learn: 33.7313171	total: 106ms	remaining: 356ms
23:	learn: 33.3582000	total: 110ms	remaining: 349ms
24:	learn: 32.9432456	total: 114ms	remaining: 343ms
25:	learn: 32.5220888	total: 119ms	remaining: 339ms
26:	learn: 32.2172292	total: 124ms	remaining: 334ms
27:	learn: 31.8972904	total: 128ms	remaining: 329ms
28:	learn: 31.6405350	total: 133ms	remaining: 325ms
29:	learn: 31.4167702	total: 137ms	remaining: 319ms
30:	learn: 30.8541961	total: 139ms	remaining: 308ms
31:	learn: 30.5572111	total: 143ms	remaining: 304ms
32:	learn: 30.1700399	total: 148ms	remaining: 300ms
33:	learn: 29.8537271	total: 156ms	remaining: 302ms
34:	learn: 29.6192540	total: 163ms	remaining: 303ms
35:	learn: 29.3276362	total: 181ms	remaining: 321ms
36:	learn: 28.9985179	total: 186ms	remaining: 316ms
37:	learn: 28.7046880	total: 191ms	remaining: 311ms
38:	learn: 28.4412677	total: 196ms	remaining: 306ms
39:	learn: 28.1277292	total: 201ms	remaining: 301ms
40:	learn: 27.9000750	total: 206ms	remaining: 297ms
41:	learn: 27.5433162	total: 211ms	remaining: 292ms
42:	learn: 27.2493285	total: 217ms	remaining: 287ms
43:	learn: 26.9576632	total: 219ms	remaining: 278ms
44:	learn: 26.6177110	total: 224ms	remaining: 273ms
45:	learn: 26.2812456	total: 229ms	remaining: 269ms
46:	learn: 26.0803859	total: 233ms	remaining: 263ms
47:	learn: 25.9543581	total: 239ms	remaining: 258ms
48:	learn: 25.7951582	total: 244ms	remaining: 254ms
49:	learn: 25.6548184	total: 249ms	remaining: 249ms
50:	learn: 25.4010843	total: 253ms	remaining: 243ms
51:	learn: 24.9773937	total: 257ms	remaining: 237ms
52:	learn: 24.8026156	total: 261ms	remaining: 231ms
53:	learn: 24.5568053	total: 265ms	remaining: 226ms
54:	learn: 24.2281839	total: 270ms	remaining: 221ms
55:	learn: 23.9202795	total: 274ms	remaining: 215ms
56:	learn: 23.7625591	total: 278ms	remaining: 210ms
57:	learn: 23.5429721	total: 281ms	remaining: 204ms
58:	learn: 23.3175893	total: 285ms	remaining: 198ms
59:	learn: 23.2035130	total: 290ms	remaining: 193ms
60:	learn: 23.0232450	total: 294ms	remaining: 188ms
61:	learn: 22.8384958	total: 298ms	remaining: 182ms
62:	learn: 22.6499902	total: 301ms	remaining: 177ms
63:	learn: 22.4577426	total: 305ms	remaining: 172ms
64:	learn: 22.3333158	total: 309ms	remaining: 167ms
65:	learn: 22.2064131	total: 314ms	remaining: 162ms
66:	learn: 22.1434971	total: 318ms	remaining: 157ms
67:	learn: 21.9596519	total: 322ms	remaining: 152ms
68:	learn: 21.8475576	total: 326ms	remaining: 147ms
69:	learn: 21.6954745	total: 331ms	remaining: 142ms
70:	learn: 21.5635976	total: 336ms	remaining: 137ms
71:	learn: 21.4588506	total: 340ms	remaining: 132ms
72:	learn: 21.3527268	total: 345ms	remaining: 127ms
73:	learn: 21.2661288	total: 349ms	remaining: 123ms
74:	learn: 21.1817333	total: 354ms	remaining: 118ms
75:	learn: 21.0527553	total: 358ms	remaining: 113ms
76:	learn: 20.9229021	total: 364ms	remaining: 109ms
77:	learn: 20.7563946	total: 372ms	remaining: 105ms
78:	learn: 20.6569831	total: 381ms	remaining: 101ms
79:	learn: 20.4982663	total: 388ms	remaining: 97.1ms
80:	learn: 20.3185460	total: 397ms	remaining: 93.1ms
81:	learn: 20.2096241	total: 402ms	remaining: 88.3ms
82:	learn: 20.1274891	total: 407ms	remaining: 83.4ms
83:	learn: 20.0740139	total: 412ms	remaining: 78.5ms
84:	learn: 19.9630699	total: 417ms	remaining: 73.7ms
85:	learn: 19.8753899	total: 423ms	remaining: 68.8ms
86:	learn: 19.6563612	total: 428ms	remaining: 64ms
87:	learn: 19.4680232	total: 433ms	remaining: 59ms
88:	learn: 19.3503431	total: 438ms	remaining: 54.1ms
89:	learn: 19.2221379	total: 443ms	remaining: 49.2ms
90:	learn: 19.0732542	total: 448ms	remaining: 44.3ms
91:	learn: 18.9825190	total: 452ms	remaining: 39.3ms
92:	learn: 18.8839009	total: 458ms	remaining: 34.4ms
93:	learn: 18.8012219	total: 463ms	remaining: 29.6ms
94:	learn: 18.7172713	total: 468ms	remaining: 24.6ms
95:	learn: 18.6201170	total: 472ms	remaining: 19.7ms
96:	learn: 18.5318611	total: 476ms	remaining: 14.7ms
97:	learn: 18.3833356	total: 481ms	remaining: 9.81ms
98:	learn: 18.3289700	total: 485ms	remaining: 4.9ms
99:	learn: 18.2227333	total: 490ms	remaining: 0us
0:	learn: 46.3764524	total: 4.71ms	remaining: 467ms
1:	learn: 45.5561269	total: 8.88ms	remaining: 435ms
2:	learn: 44.8811245	total: 13ms	remaining: 420ms
3:	learn: 44.0788617	total: 17.8ms	remaining: 426ms
4:	learn: 43.3619790	total: 22ms	remaining: 419ms
5:	learn: 42.6912112	total: 29.4ms	remaining: 461ms
6:	learn: 42.2292118	total: 36.9ms	remaining: 490ms
7:	learn: 41.7725191	total: 46.1ms	remaining: 530ms
8:	learn: 41.1676614	total: 51.9ms	remaining: 525ms
9:	learn: 40.5771076	total: 59.5ms	remaining: 536ms
10:	learn: 39.8343757	total: 64.7ms	remaining: 524ms
11:	learn: 39.3761142	total: 69.9ms	remaining: 513ms
12:	learn: 38.5254692	total: 75.1ms	remaining: 503ms
13:	learn: 37.9629555	total: 80.2ms	remaining: 493ms
14:	learn: 37.4418438	total: 85.5ms	remaining: 484ms
15:	learn: 37.0507283	total: 90.5ms	remaining: 475ms
16:	learn: 36.6264217	total: 95.5ms	remaining: 466ms
17:	learn: 36.1114940	total: 101ms	remaining: 459ms
18:	learn: 35.7193862	total: 106ms	remaining: 451ms
19:	learn: 35.3301177	total: 111ms	remaining: 443ms
20:	learn: 35.0598280	total: 116ms	remaining: 435ms
21:	learn: 34.5469736	total: 121ms	remaining: 429ms
22:	learn: 34.2064215	total: 126ms	remaining: 423ms
23:	learn: 33.7280710	total: 130ms	remaining: 413ms
24:	learn: 33.3282940	total: 134ms	remaining: 403ms
25:	learn: 32.8478961	total: 138ms	remaining: 394ms
26:	learn: 32.5722164	total: 143ms	remaining: 385ms
27:	learn: 32.2457019	total: 147ms	remaining: 377ms
28:	learn: 31.9230495	total: 151ms	remaining: 369ms
29:	learn: 31.4311611	total: 155ms	remaining: 361ms
30:	learn: 30.9179052	total: 159ms	remaining: 354ms
31:	learn: 30.6201141	total: 163ms	remaining: 347ms
32:	learn: 30.3421106	total: 168ms	remaining: 340ms
33:	learn: 29.9885373	total: 171ms	remaining: 333ms
34:	learn: 29.7462780	total: 175ms	remaining: 326ms
35:	learn: 29.3607153	total: 179ms	remaining: 319ms
36:	learn: 29.1793078	total: 183ms	remaining: 312ms
37:	learn: 28.9276538	total: 187ms	remaining: 305ms
38:	learn: 28.6903934	total: 192ms	remaining: 300ms
39:	learn: 28.2095033	total: 195ms	remaining: 293ms
40:	learn: 27.7990608	total: 199ms	remaining: 287ms
41:	learn: 27.5406632	total: 203ms	remaining: 281ms
42:	learn: 27.2575376	total: 208ms	remaining: 276ms
43:	learn: 26.9741707	total: 212ms	remaining: 270ms
44:	learn: 26.6606899	total: 216ms	remaining: 264ms
45:	learn: 26.4015833	total: 220ms	remaining: 259ms
46:	learn: 26.1828993	total: 225ms	remaining: 254ms
47:	learn: 26.0233709	total: 228ms	remaining: 247ms
48:	learn: 25.9300399	total: 232ms	remaining: 242ms
49:	learn: 25.5861489	total: 236ms	remaining: 236ms
50:	learn: 25.4322012	total: 241ms	remaining: 232ms
51:	learn: 25.1595644	total: 245ms	remaining: 227ms
52:	learn: 24.9955303	total: 250ms	remaining: 222ms
53:	learn: 24.7273966	total: 254ms	remaining: 217ms
54:	learn: 24.5747978	total: 263ms	remaining: 215ms
55:	learn: 24.3807977	total: 271ms	remaining: 213ms
56:	learn: 24.1689569	total: 280ms	remaining: 211ms
57:	learn: 23.9898221	total: 287ms	remaining: 208ms
58:	learn: 23.7566414	total: 293ms	remaining: 204ms
59:	learn: 23.6641165	total: 298ms	remaining: 199ms
60:	learn: 23.5658066	total: 304ms	remaining: 194ms
61:	learn: 23.4338851	total: 309ms	remaining: 189ms
62:	learn: 23.2408837	total: 314ms	remaining: 184ms
63:	learn: 23.0642038	total: 319ms	remaining: 179ms
64:	learn: 22.9032045	total: 324ms	remaining: 175ms
65:	learn: 22.7736138	total: 329ms	remaining: 170ms
66:	learn: 22.6836443	total: 334ms	remaining: 164ms
67:	learn: 22.5983654	total: 340ms	remaining: 160ms
68:	learn: 22.4419813	total: 346ms	remaining: 155ms
69:	learn: 22.2863339	total: 350ms	remaining: 150ms
70:	learn: 22.1792943	total: 354ms	remaining: 145ms
71:	learn: 22.1130574	total: 358ms	remaining: 139ms
72:	learn: 21.9858161	total: 363ms	remaining: 134ms
73:	learn: 21.8577784	total: 367ms	remaining: 129ms
74:	learn: 21.7845222	total: 371ms	remaining: 124ms
75:	learn: 21.6831390	total: 374ms	remaining: 118ms
76:	learn: 21.6292521	total: 378ms	remaining: 113ms
77:	learn: 21.5789330	total: 383ms	remaining: 108ms
78:	learn: 21.5420942	total: 386ms	remaining: 103ms
79:	learn: 21.4280939	total: 391ms	remaining: 97.6ms
80:	learn: 21.3641165	total: 395ms	remaining: 92.6ms
81:	learn: 21.2734814	total: 399ms	remaining: 87.6ms
82:	learn: 21.2220323	total: 403ms	remaining: 82.6ms
83:	learn: 21.0625792	total: 408ms	remaining: 77.7ms
84:	learn: 20.9488320	total: 412ms	remaining: 72.7ms
85:	learn: 20.8504255	total: 416ms	remaining: 67.8ms
86:	learn: 20.7848510	total: 421ms	remaining: 62.9ms
87:	learn: 20.7247442	total: 425ms	remaining: 58ms
88:	learn: 20.5698590	total: 430ms	remaining: 53.1ms
89:	learn: 20.4067620	total: 434ms	remaining: 48.2ms
90:	learn: 20.3062482	total: 439ms	remaining: 43.4ms
91:	learn: 20.2029696	total: 444ms	remaining: 38.6ms
92:	learn: 20.1384849	total: 450ms	remaining: 33.9ms
93:	learn: 20.0260709	total: 459ms	remaining: 29.3ms
94:	learn: 19.9122100	total: 467ms	remaining: 24.6ms
95:	learn: 19.8648487	total: 475ms	remaining: 19.8ms
96:	learn: 19.8207072	total: 483ms	remaining: 14.9ms
97:	learn: 19.7261189	total: 488ms	remaining: 9.96ms
98:	learn: 19.7042438	total: 493ms	remaining: 4.98ms
99:	learn: 19.6546645	total: 498ms	remaining: 0us
0:	learn: 47.0239288	total: 5.62ms	remaining: 557ms
1:	learn: 46.2253829	total: 10.9ms	remaining: 536ms
2:	learn: 45.5580301	total: 14.7ms	remaining: 476ms
3:	learn: 44.7273237	total: 18.7ms	remaining: 450ms
4:	learn: 43.8867421	total: 22.8ms	remaining: 434ms
5:	learn: 43.3615911	total: 26.6ms	remaining: 417ms
6:	learn: 42.8548390	total: 30.6ms	remaining: 407ms
7:	learn: 42.1606758	total: 34.7ms	remaining: 399ms
8:	learn: 41.6625870	total: 38.6ms	remaining: 390ms
9:	learn: 40.9497092	total: 42.9ms	remaining: 386ms
10:	learn: 40.1886318	total: 47.2ms	remaining: 382ms
11:	learn: 39.7456423	total: 51.1ms	remaining: 375ms
12:	learn: 39.1171373	total: 54.9ms	remaining: 367ms
13:	learn: 38.5451069	total: 58.7ms	remaining: 360ms
14:	learn: 38.0155834	total: 63.2ms	remaining: 358ms
15:	learn: 37.5631354	total: 67.5ms	remaining: 354ms
16:	learn: 37.1030023	total: 71.3ms	remaining: 348ms
17:	learn: 36.4563029	total: 75.1ms	remaining: 342ms
18:	learn: 36.0160976	total: 79.5ms	remaining: 339ms
19:	learn: 35.5079827	total: 83.9ms	remaining: 336ms
20:	learn: 35.2111885	total: 88.5ms	remaining: 333ms
21:	learn: 34.9397465	total: 92.8ms	remaining: 329ms
22:	learn: 34.5270048	total: 97.2ms	remaining: 325ms
23:	learn: 34.0169260	total: 102ms	remaining: 322ms
24:	learn: 33.7454892	total: 106ms	remaining: 318ms
25:	learn: 33.2648157	total: 110ms	remaining: 314ms
26:	learn: 32.8899427	total: 117ms	remaining: 317ms
27:	learn: 32.6185050	total: 124ms	remaining: 320ms
28:	learn: 32.3528531	total: 134ms	remaining: 327ms
29:	learn: 32.0859923	total: 140ms	remaining: 326ms
30:	learn: 31.6511144	total: 147ms	remaining: 327ms
31:	learn: 31.2571765	total: 153ms	remaining: 324ms
32:	learn: 30.9770049	total: 158ms	remaining: 320ms
33:	learn: 30.6084872	total: 163ms	remaining: 316ms
34:	learn: 30.3448632	total: 168ms	remaining: 312ms
35:	learn: 30.0360942	total: 173ms	remaining: 308ms
36:	learn: 29.6648968	total: 179ms	remaining: 304ms
37:	learn: 29.3165114	total: 184ms	remaining: 300ms
38:	learn: 29.0829198	total: 189ms	remaining: 296ms
39:	learn: 28.7752064	total: 194ms	remaining: 291ms
40:	learn: 28.3622191	total: 199ms	remaining: 286ms
41:	learn: 28.1346631	total: 204ms	remaining: 282ms
42:	learn: 27.9585719	total: 209ms	remaining: 277ms
43:	learn: 27.6565566	total: 214ms	remaining: 273ms
44:	learn: 27.3616172	total: 219ms	remaining: 268ms
45:	learn: 27.0658637	total: 223ms	remaining: 262ms
46:	learn: 26.8660382	total: 227ms	remaining: 256ms
47:	learn: 26.6536078	total: 231ms	remaining: 250ms
48:	learn: 26.3524440	total: 235ms	remaining: 245ms
49:	learn: 26.1595277	total: 239ms	remaining: 239ms
50:	learn: 25.9273523	total: 243ms	remaining: 233ms
51:	learn: 25.7195580	total: 247ms	remaining: 228ms
52:	learn: 25.5730225	total: 251ms	remaining: 223ms
53:	learn: 25.3455276	total: 256ms	remaining: 218ms
54:	learn: 25.2289675	total: 259ms	remaining: 212ms
55:	learn: 25.0133024	total: 264ms	remaining: 207ms
56:	learn: 24.8406714	total: 268ms	remaining: 202ms
57:	learn: 24.6367857	total: 273ms	remaining: 197ms
58:	learn: 24.5338177	total: 276ms	remaining: 192ms
59:	learn: 24.3799964	total: 281ms	remaining: 187ms
60:	learn: 24.1447492	total: 285ms	remaining: 182ms
61:	learn: 23.9880495	total: 290ms	remaining: 178ms
62:	learn: 23.7140630	total: 295ms	remaining: 173ms
63:	learn: 23.5003791	total: 299ms	remaining: 168ms
64:	learn: 23.3207645	total: 304ms	remaining: 163ms
65:	learn: 23.1958356	total: 308ms	remaining: 159ms
66:	learn: 23.0471302	total: 313ms	remaining: 154ms
67:	learn: 22.8977183	total: 320ms	remaining: 151ms
68:	learn: 22.7187400	total: 327ms	remaining: 147ms
69:	learn: 22.6523405	total: 337ms	remaining: 144ms
70:	learn: 22.4767453	total: 343ms	remaining: 140ms
71:	learn: 22.3243677	total: 349ms	remaining: 136ms
72:	learn: 22.2133096	total: 354ms	remaining: 131ms
73:	learn: 22.1151713	total: 359ms	remaining: 126ms
74:	learn: 22.0296666	total: 364ms	remaining: 121ms
75:	learn: 21.9195980	total: 369ms	remaining: 117ms
76:	learn: 21.8401730	total: 374ms	remaining: 112ms
77:	learn: 21.8079797	total: 380ms	remaining: 107ms
78:	learn: 21.7274109	total: 385ms	remaining: 102ms
79:	learn: 21.6663032	total: 391ms	remaining: 97.7ms
80:	learn: 21.5633117	total: 397ms	remaining: 93.1ms
81:	learn: 21.4542467	total: 403ms	remaining: 88.4ms
82:	learn: 21.3177957	total: 408ms	remaining: 83.5ms
83:	learn: 21.1289167	total: 414ms	remaining: 78.8ms
84:	learn: 21.0297368	total: 420ms	remaining: 74.1ms
85:	learn: 20.9089564	total: 424ms	remaining: 69ms
86:	learn: 20.7653988	total: 429ms	remaining: 64.1ms
87:	learn: 20.6521894	total: 434ms	remaining: 59.1ms
88:	learn: 20.5193021	total: 438ms	remaining: 54.1ms
89:	learn: 20.4361620	total: 443ms	remaining: 49.2ms
90:	learn: 20.3546710	total: 447ms	remaining: 44.2ms
91:	learn: 20.2513296	total: 451ms	remaining: 39.2ms
92:	learn: 20.1605550	total: 455ms	remaining: 34.3ms
93:	learn: 20.0515942	total: 459ms	remaining: 29.3ms
94:	learn: 19.9800764	total: 465ms	remaining: 24.5ms
95:	learn: 19.8996532	total: 469ms	remaining: 19.5ms
96:	learn: 19.8450910	total: 473ms	remaining: 14.6ms
97:	learn: 19.7887346	total: 477ms	remaining: 9.73ms
98:	learn: 19.7230872	total: 481ms	remaining: 4.86ms
99:	learn: 19.6328825	total: 486ms	remaining: 0us
0:	learn: 27.5585353	total: 14.7ms	remaining: 1.45s
1:	learn: 27.1656995	total: 19.6ms	remaining: 959ms
2:	learn: 26.8590175	total: 24.6ms	remaining: 797ms
3:	learn: 26.5818406	total: 29.9ms	remaining: 717ms
4:	learn: 26.1148663	total: 35.3ms	remaining: 670ms
5:	learn: 25.7690484	total: 39.9ms	remaining: 625ms
6:	learn: 25.3489206	total: 44.6ms	remaining: 592ms
7:	learn: 24.9542406	total: 49.7ms	remaining: 572ms
8:	learn: 24.6777517	total: 54.9ms	remaining: 555ms
9:	learn: 24.3242344	total: 59.6ms	remaining: 537ms
10:	learn: 24.0383073	total: 64ms	remaining: 518ms
11:	learn: 23.7383420	total: 68.4ms	remaining: 501ms
12:	learn: 23.3461670	total: 72.8ms	remaining: 487ms
13:	learn: 23.0928636	total: 77.4ms	remaining: 476ms
14:	learn: 22.8770414	total: 81.4ms	remaining: 461ms
15:	learn: 22.6323214	total: 85.5ms	remaining: 449ms
16:	learn: 22.3597072	total: 89.8ms	remaining: 439ms
17:	learn: 22.1079813	total: 93.5ms	remaining: 426ms
18:	learn: 21.8421199	total: 97.7ms	remaining: 416ms
19:	learn: 21.6576508	total: 102ms	remaining: 407ms
20:	learn: 21.4301268	total: 105ms	remaining: 397ms
21:	learn: 21.2287388	total: 110ms	remaining: 389ms
22:	learn: 21.0553872	total: 114ms	remaining: 381ms
23:	learn: 20.8977091	total: 118ms	remaining: 374ms
24:	learn: 20.6619051	total: 122ms	remaining: 365ms
25:	learn: 20.5040955	total: 126ms	remaining: 358ms
26:	learn: 20.3181195	total: 130ms	remaining: 351ms
27:	learn: 20.0869436	total: 134ms	remaining: 345ms
28:	learn: 19.9375985	total: 138ms	remaining: 339ms
29:	learn: 19.8247516	total: 142ms	remaining: 332ms
30:	learn: 19.6261697	total: 147ms	remaining: 326ms
31:	learn: 19.4547236	total: 151ms	remaining: 321ms
32:	learn: 19.3157092	total: 155ms	remaining: 315ms
33:	learn: 19.1561419	total: 160ms	remaining: 310ms
34:	learn: 19.0453620	total: 165ms	remaining: 306ms
35:	learn: 18.8738574	total: 169ms	remaining: 301ms
36:	learn: 18.7072907	total: 174ms	remaining: 296ms
37:	learn: 18.5877943	total: 178ms	remaining: 291ms
38:	learn: 18.4436380	total: 186ms	remaining: 291ms
39:	learn: 18.3463356	total: 193ms	remaining: 290ms
40:	learn: 18.2008059	total: 202ms	remaining: 291ms
41:	learn: 18.0582079	total: 208ms	remaining: 287ms
42:	learn: 17.8891982	total: 215ms	remaining: 285ms
43:	learn: 17.7332246	total: 220ms	remaining: 280ms
44:	learn: 17.6206421	total: 225ms	remaining: 275ms
45:	learn: 17.4982800	total: 230ms	remaining: 270ms
46:	learn: 17.3970150	total: 235ms	remaining: 265ms
47:	learn: 17.3058203	total: 240ms	remaining: 260ms
48:	learn: 17.1789256	total: 246ms	remaining: 256ms
49:	learn: 17.0916229	total: 252ms	remaining: 252ms
50:	learn: 16.9859820	total: 257ms	remaining: 247ms
51:	learn: 16.8995582	total: 263ms	remaining: 242ms
52:	learn: 16.8137014	total: 267ms	remaining: 237ms
53:	learn: 16.7021451	total: 273ms	remaining: 233ms
54:	learn: 16.5895582	total: 278ms	remaining: 228ms
55:	learn: 16.5015639	total: 284ms	remaining: 223ms
56:	learn: 16.4356637	total: 288ms	remaining: 218ms
57:	learn: 16.3514525	total: 293ms	remaining: 212ms
58:	learn: 16.2401369	total: 297ms	remaining: 207ms
59:	learn: 16.1293223	total: 302ms	remaining: 201ms
60:	learn: 16.0271167	total: 306ms	remaining: 196ms
61:	learn: 15.9126257	total: 311ms	remaining: 191ms
62:	learn: 15.8391096	total: 315ms	remaining: 185ms
63:	learn: 15.7441773	total: 320ms	remaining: 180ms
64:	learn: 15.6885195	total: 325ms	remaining: 175ms
65:	learn: 15.6052039	total: 329ms	remaining: 169ms
66:	learn: 15.5074202	total: 334ms	remaining: 165ms
67:	learn: 15.4054338	total: 339ms	remaining: 159ms
68:	learn: 15.2885714	total: 343ms	remaining: 154ms
69:	learn: 15.2157472	total: 348ms	remaining: 149ms
70:	learn: 15.1031554	total: 353ms	remaining: 144ms
71:	learn: 15.0237470	total: 358ms	remaining: 139ms
72:	learn: 14.9756825	total: 363ms	remaining: 134ms
73:	learn: 14.8840596	total: 368ms	remaining: 129ms
74:	learn: 14.8077061	total: 373ms	remaining: 124ms
75:	learn: 14.7444437	total: 378ms	remaining: 120ms
76:	learn: 14.6751720	total: 388ms	remaining: 116ms
77:	learn: 14.5830333	total: 398ms	remaining: 112ms
78:	learn: 14.5241206	total: 409ms	remaining: 109ms
79:	learn: 14.4892731	total: 418ms	remaining: 105ms
80:	learn: 14.4256605	total: 424ms	remaining: 99.3ms
81:	learn: 14.3666860	total: 429ms	remaining: 94.3ms
82:	learn: 14.2938372	total: 435ms	remaining: 89.1ms
83:	learn: 14.2161532	total: 441ms	remaining: 84ms
84:	learn: 14.1582910	total: 447ms	remaining: 78.8ms
85:	learn: 14.1029153	total: 453ms	remaining: 73.7ms
86:	learn: 14.0475835	total: 459ms	remaining: 68.6ms
87:	learn: 13.9892661	total: 465ms	remaining: 63.4ms
88:	learn: 13.9481628	total: 470ms	remaining: 58.1ms
89:	learn: 13.8483991	total: 475ms	remaining: 52.8ms
90:	learn: 13.7775614	total: 481ms	remaining: 47.6ms
91:	learn: 13.7304585	total: 487ms	remaining: 42.4ms
92:	learn: 13.6783381	total: 492ms	remaining: 37.1ms
93:	learn: 13.6356964	total: 497ms	remaining: 31.7ms
94:	learn: 13.5924371	total: 501ms	remaining: 26.4ms
95:	learn: 13.5400746	total: 506ms	remaining: 21.1ms
96:	learn: 13.4897333	total: 510ms	remaining: 15.8ms
97:	learn: 13.4470321	total: 515ms	remaining: 10.5ms
98:	learn: 13.3856082	total: 519ms	remaining: 5.24ms
99:	learn: 13.3082371	total: 524ms	remaining: 0us
0:	learn: 43.0395283	total: 5.54ms	remaining: 549ms
1:	learn: 42.1130223	total: 10.6ms	remaining: 521ms
2:	learn: 41.1753409	total: 15.8ms	remaining: 511ms
3:	learn: 40.3637444	total: 26.4ms	remaining: 634ms
4:	learn: 39.6508088	total: 41ms	remaining: 779ms
5:	learn: 38.7217934	total: 47.5ms	remaining: 744ms
6:	learn: 37.8538055	total: 54.1ms	remaining: 718ms
7:	learn: 36.9793574	total: 59.5ms	remaining: 684ms
8:	learn: 36.3076984	total: 65ms	remaining: 657ms
9:	learn: 35.6673160	total: 70.1ms	remaining: 631ms
10:	learn: 34.8889800	total: 75.6ms	remaining: 612ms
11:	learn: 34.1675517	total: 80.8ms	remaining: 593ms
12:	learn: 33.6779564	total: 86.1ms	remaining: 576ms
13:	learn: 33.0710039	total: 91.4ms	remaining: 561ms
14:	learn: 32.4966674	total: 96.5ms	remaining: 547ms
15:	learn: 31.9492856	total: 101ms	remaining: 532ms
16:	learn: 31.5108129	total: 107ms	remaining: 521ms
17:	learn: 30.9804023	total: 112ms	remaining: 512ms
18:	learn: 30.4169089	total: 117ms	remaining: 500ms
19:	learn: 29.8930375	total: 122ms	remaining: 487ms
20:	learn: 29.3974421	total: 126ms	remaining: 475ms
21:	learn: 28.8792307	total: 131ms	remaining: 463ms
22:	learn: 28.3894474	total: 135ms	remaining: 451ms
23:	learn: 27.9921276	total: 139ms	remaining: 441ms
24:	learn: 27.6158887	total: 144ms	remaining: 431ms
25:	learn: 27.2866950	total: 148ms	remaining: 421ms
26:	learn: 26.8770708	total: 152ms	remaining: 412ms
27:	learn: 26.6233005	total: 157ms	remaining: 403ms
28:	learn: 26.2921934	total: 161ms	remaining: 394ms
29:	learn: 25.9156920	total: 165ms	remaining: 386ms
30:	learn: 25.5311106	total: 167ms	remaining: 372ms
31:	learn: 25.2178997	total: 172ms	remaining: 365ms
32:	learn: 24.8572196	total: 176ms	remaining: 358ms
33:	learn: 24.5849710	total: 180ms	remaining: 350ms
34:	learn: 24.2209190	total: 184ms	remaining: 343ms
35:	learn: 23.8708250	total: 189ms	remaining: 335ms
36:	learn: 23.5325279	total: 193ms	remaining: 328ms
37:	learn: 23.2116148	total: 197ms	remaining: 322ms
38:	learn: 22.9696787	total: 201ms	remaining: 315ms
39:	learn: 22.7936783	total: 205ms	remaining: 308ms
40:	learn: 22.6228847	total: 209ms	remaining: 301ms
41:	learn: 22.3691527	total: 214ms	remaining: 295ms
42:	learn: 22.1002173	total: 218ms	remaining: 289ms
43:	learn: 21.9157268	total: 222ms	remaining: 283ms
44:	learn: 21.7229102	total: 226ms	remaining: 277ms
45:	learn: 21.4642005	total: 231ms	remaining: 271ms
46:	learn: 21.3029442	total: 235ms	remaining: 265ms
47:	learn: 21.1469792	total: 240ms	remaining: 260ms
48:	learn: 20.9458235	total: 245ms	remaining: 255ms
49:	learn: 20.7335242	total: 250ms	remaining: 250ms
50:	learn: 20.5440269	total: 255ms	remaining: 245ms
51:	learn: 20.3661449	total: 260ms	remaining: 240ms
52:	learn: 20.2158134	total: 265ms	remaining: 235ms
53:	learn: 19.9934873	total: 275ms	remaining: 234ms
54:	learn: 19.7879739	total: 282ms	remaining: 231ms
55:	learn: 19.6630460	total: 292ms	remaining: 229ms
56:	learn: 19.5152729	total: 300ms	remaining: 226ms
57:	learn: 19.3581128	total: 305ms	remaining: 221ms
58:	learn: 19.2209303	total: 310ms	remaining: 216ms
59:	learn: 19.0965248	total: 316ms	remaining: 210ms
60:	learn: 19.0035954	total: 321ms	remaining: 205ms
61:	learn: 18.8554149	total: 327ms	remaining: 200ms
62:	learn: 18.7095427	total: 332ms	remaining: 195ms
63:	learn: 18.5751494	total: 338ms	remaining: 190ms
64:	learn: 18.4678251	total: 343ms	remaining: 185ms
65:	learn: 18.3500325	total: 348ms	remaining: 179ms
66:	learn: 18.2088983	total: 354ms	remaining: 174ms
67:	learn: 18.0737705	total: 359ms	remaining: 169ms
68:	learn: 17.9325058	total: 364ms	remaining: 164ms
69:	learn: 17.8003911	total: 370ms	remaining: 158ms
70:	learn: 17.7385366	total: 375ms	remaining: 153ms
71:	learn: 17.6106998	total: 379ms	remaining: 147ms
72:	learn: 17.4816270	total: 383ms	remaining: 142ms
73:	learn: 17.4025554	total: 387ms	remaining: 136ms
74:	learn: 17.2902108	total: 392ms	remaining: 131ms
75:	learn: 17.2158048	total: 396ms	remaining: 125ms
76:	learn: 17.1261053	total: 400ms	remaining: 119ms
77:	learn: 17.0308917	total: 404ms	remaining: 114ms
78:	learn: 16.9546705	total: 408ms	remaining: 108ms
79:	learn: 16.8319165	total: 413ms	remaining: 103ms
80:	learn: 16.7687017	total: 417ms	remaining: 97.9ms
81:	learn: 16.6972326	total: 422ms	remaining: 92.5ms
82:	learn: 16.6124580	total: 426ms	remaining: 87.3ms
83:	learn: 16.4999052	total: 431ms	remaining: 82.1ms
84:	learn: 16.4302484	total: 436ms	remaining: 76.9ms
85:	learn: 16.3201363	total: 440ms	remaining: 71.7ms
86:	learn: 16.2534314	total: 445ms	remaining: 66.5ms
87:	learn: 16.1720485	total: 449ms	remaining: 61.3ms
88:	learn: 16.0625751	total: 454ms	remaining: 56.1ms
89:	learn: 15.9135088	total: 458ms	remaining: 50.9ms
90:	learn: 15.8658863	total: 464ms	remaining: 45.9ms
91:	learn: 15.8066805	total: 472ms	remaining: 41ms
92:	learn: 15.7412103	total: 480ms	remaining: 36.2ms
93:	learn: 15.6542776	total: 488ms	remaining: 31.2ms
94:	learn: 15.5760334	total: 497ms	remaining: 26.1ms
95:	learn: 15.5434131	total: 502ms	remaining: 20.9ms
96:	learn: 15.4709561	total: 507ms	remaining: 15.7ms
97:	learn: 15.4449618	total: 513ms	remaining: 10.5ms
98:	learn: 15.3752761	total: 518ms	remaining: 5.23ms
99:	learn: 15.3106595	total: 524ms	remaining: 0us
0:	learn: 46.7142257	total: 4.87ms	remaining: 482ms
1:	learn: 45.7634153	total: 9.64ms	remaining: 473ms
2:	learn: 45.0054253	total: 14.8ms	remaining: 477ms
3:	learn: 44.2120432	total: 19.2ms	remaining: 461ms
4:	learn: 43.3960472	total: 23.6ms	remaining: 448ms
5:	learn: 42.8588120	total: 28.2ms	remaining: 441ms
6:	learn: 41.9533701	total: 32.5ms	remaining: 432ms
7:	learn: 41.2745030	total: 36.8ms	remaining: 423ms
8:	learn: 40.6797495	total: 41.1ms	remaining: 415ms
9:	learn: 39.9899571	total: 45.9ms	remaining: 413ms
10:	learn: 39.4682100	total: 50.4ms	remaining: 408ms
11:	learn: 39.0305595	total: 54.6ms	remaining: 400ms
12:	learn: 38.4200417	total: 59ms	remaining: 395ms
13:	learn: 37.8425194	total: 63.9ms	remaining: 392ms
14:	learn: 37.4203127	total: 68.5ms	remaining: 388ms
15:	learn: 36.9917688	total: 73.3ms	remaining: 385ms
16:	learn: 36.5544138	total: 78.4ms	remaining: 383ms
17:	learn: 36.0727019	total: 82.9ms	remaining: 378ms
18:	learn: 35.4835715	total: 87.7ms	remaining: 374ms
19:	learn: 34.9865654	total: 93.1ms	remaining: 372ms
20:	learn: 34.6063373	total: 102ms	remaining: 383ms
21:	learn: 34.0997289	total: 109ms	remaining: 386ms
22:	learn: 33.7313171	total: 118ms	remaining: 394ms
23:	learn: 33.3582000	total: 125ms	remaining: 397ms
24:	learn: 32.9432456	total: 131ms	remaining: 393ms
25:	learn: 32.5220888	total: 136ms	remaining: 387ms
26:	learn: 32.2172292	total: 141ms	remaining: 382ms
27:	learn: 31.8972904	total: 147ms	remaining: 377ms
28:	learn: 31.6405350	total: 152ms	remaining: 371ms
29:	learn: 31.4167702	total: 157ms	remaining: 366ms
30:	learn: 30.8541961	total: 159ms	remaining: 353ms
31:	learn: 30.5572111	total: 164ms	remaining: 348ms
32:	learn: 30.1700399	total: 169ms	remaining: 344ms
33:	learn: 29.8537271	total: 175ms	remaining: 339ms
34:	learn: 29.6192540	total: 180ms	remaining: 334ms
35:	learn: 29.3276362	total: 186ms	remaining: 330ms
36:	learn: 28.9985179	total: 192ms	remaining: 326ms
37:	learn: 28.7046880	total: 197ms	remaining: 322ms
38:	learn: 28.4412677	total: 202ms	remaining: 316ms
39:	learn: 28.1277292	total: 207ms	remaining: 310ms
40:	learn: 27.9000750	total: 211ms	remaining: 304ms
41:	learn: 27.5433162	total: 215ms	remaining: 297ms
42:	learn: 27.2493285	total: 220ms	remaining: 291ms
43:	learn: 26.9576632	total: 222ms	remaining: 282ms
44:	learn: 26.6177110	total: 226ms	remaining: 276ms
45:	learn: 26.2812456	total: 230ms	remaining: 270ms
46:	learn: 26.0803859	total: 235ms	remaining: 265ms
47:	learn: 25.9543581	total: 239ms	remaining: 259ms
48:	learn: 25.7951582	total: 243ms	remaining: 253ms
49:	learn: 25.6548184	total: 248ms	remaining: 248ms
50:	learn: 25.4010843	total: 252ms	remaining: 242ms
51:	learn: 24.9773937	total: 257ms	remaining: 237ms
52:	learn: 24.8026156	total: 262ms	remaining: 232ms
53:	learn: 24.5568053	total: 266ms	remaining: 227ms
54:	learn: 24.2281839	total: 271ms	remaining: 222ms
55:	learn: 23.9202795	total: 276ms	remaining: 217ms
56:	learn: 23.7625591	total: 280ms	remaining: 212ms
57:	learn: 23.5429721	total: 285ms	remaining: 206ms
58:	learn: 23.3175893	total: 290ms	remaining: 202ms
59:	learn: 23.2035130	total: 299ms	remaining: 199ms
60:	learn: 23.0232450	total: 309ms	remaining: 198ms
61:	learn: 22.8384958	total: 316ms	remaining: 194ms
62:	learn: 22.6499902	total: 335ms	remaining: 197ms
63:	learn: 22.4577426	total: 341ms	remaining: 192ms
64:	learn: 22.3333158	total: 347ms	remaining: 187ms
65:	learn: 22.2064131	total: 353ms	remaining: 182ms
66:	learn: 22.1434971	total: 358ms	remaining: 176ms
67:	learn: 21.9596519	total: 363ms	remaining: 171ms
68:	learn: 21.8475576	total: 369ms	remaining: 166ms
69:	learn: 21.6954745	total: 374ms	remaining: 160ms
70:	learn: 21.5635976	total: 379ms	remaining: 155ms
71:	learn: 21.4588506	total: 385ms	remaining: 150ms
72:	learn: 21.3527268	total: 391ms	remaining: 144ms
73:	learn: 21.2661288	total: 395ms	remaining: 139ms
74:	learn: 21.1817333	total: 399ms	remaining: 133ms
75:	learn: 21.0527553	total: 404ms	remaining: 127ms
76:	learn: 20.9229021	total: 408ms	remaining: 122ms
77:	learn: 20.7563946	total: 412ms	remaining: 116ms
78:	learn: 20.6569831	total: 416ms	remaining: 111ms
79:	learn: 20.4982663	total: 420ms	remaining: 105ms
80:	learn: 20.3185460	total: 424ms	remaining: 99.6ms
81:	learn: 20.2096241	total: 429ms	remaining: 94.1ms
82:	learn: 20.1274891	total: 433ms	remaining: 88.6ms
83:	learn: 20.0740139	total: 437ms	remaining: 83.2ms
84:	learn: 19.9630699	total: 441ms	remaining: 77.8ms
85:	learn: 19.8753899	total: 445ms	remaining: 72.5ms
86:	learn: 19.6563612	total: 450ms	remaining: 67.2ms
87:	learn: 19.4680232	total: 454ms	remaining: 61.9ms
88:	learn: 19.3503431	total: 458ms	remaining: 56.6ms
89:	learn: 19.2221379	total: 463ms	remaining: 51.4ms
90:	learn: 19.0732542	total: 467ms	remaining: 46.2ms
91:	learn: 18.9825190	total: 472ms	remaining: 41ms
92:	learn: 18.8839009	total: 476ms	remaining: 35.8ms
93:	learn: 18.8012219	total: 481ms	remaining: 30.7ms
94:	learn: 18.7172713	total: 485ms	remaining: 25.5ms
95:	learn: 18.6201170	total: 489ms	remaining: 20.4ms
96:	learn: 18.5318611	total: 499ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 507ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 515ms	remaining: 5.2ms
99:	learn: 18.2227333	total: 523ms	remaining: 0us
0:	learn: 46.3764524	total: 5.03ms	remaining: 498ms
1:	learn: 45.5561269	total: 9.58ms	remaining: 469ms
2:	learn: 44.8811245	total: 14.7ms	remaining: 477ms
3:	learn: 44.0788617	total: 19.4ms	remaining: 467ms
4:	learn: 43.3619790	total: 24.3ms	remaining: 461ms
5:	learn: 42.6912112	total: 29.3ms	remaining: 460ms
6:	learn: 42.2292118	total: 34ms	remaining: 452ms
7:	learn: 41.7725191	total: 38.6ms	remaining: 444ms
8:	learn: 41.1676614	total: 43.5ms	remaining: 440ms
9:	learn: 40.5771076	total: 48.3ms	remaining: 434ms
10:	learn: 39.8343757	total: 53.1ms	remaining: 430ms
11:	learn: 39.3761142	total: 58.1ms	remaining: 426ms
12:	learn: 38.5254692	total: 63ms	remaining: 422ms
13:	learn: 37.9629555	total: 68ms	remaining: 418ms
14:	learn: 37.4418438	total: 73.3ms	remaining: 415ms
15:	learn: 37.0507283	total: 78.5ms	remaining: 412ms
16:	learn: 36.6264217	total: 83.8ms	remaining: 409ms
17:	learn: 36.1114940	total: 89.4ms	remaining: 407ms
18:	learn: 35.7193862	total: 94.5ms	remaining: 403ms
19:	learn: 35.3301177	total: 100ms	remaining: 401ms
20:	learn: 35.0598280	total: 106ms	remaining: 398ms
21:	learn: 34.5469736	total: 117ms	remaining: 413ms
22:	learn: 34.2064215	total: 128ms	remaining: 428ms
23:	learn: 33.7280710	total: 135ms	remaining: 426ms
24:	learn: 33.3282940	total: 142ms	remaining: 427ms
25:	learn: 32.8478961	total: 148ms	remaining: 420ms
26:	learn: 32.5722164	total: 153ms	remaining: 414ms
27:	learn: 32.2457019	total: 158ms	remaining: 407ms
28:	learn: 31.9230495	total: 164ms	remaining: 401ms
29:	learn: 31.4311611	total: 169ms	remaining: 395ms
30:	learn: 30.9179052	total: 175ms	remaining: 390ms
31:	learn: 30.6201141	total: 181ms	remaining: 384ms
32:	learn: 30.3421106	total: 186ms	remaining: 378ms
33:	learn: 29.9885373	total: 192ms	remaining: 372ms
34:	learn: 29.7462780	total: 196ms	remaining: 365ms
35:	learn: 29.3607153	total: 202ms	remaining: 359ms
36:	learn: 29.1793078	total: 208ms	remaining: 354ms
37:	learn: 28.9276538	total: 213ms	remaining: 348ms
38:	learn: 28.6903934	total: 218ms	remaining: 340ms
39:	learn: 28.2095033	total: 222ms	remaining: 333ms
40:	learn: 27.7990608	total: 227ms	remaining: 327ms
41:	learn: 27.5406632	total: 231ms	remaining: 319ms
42:	learn: 27.2575376	total: 236ms	remaining: 312ms
43:	learn: 26.9741707	total: 240ms	remaining: 306ms
44:	learn: 26.6606899	total: 245ms	remaining: 300ms
45:	learn: 26.4015833	total: 250ms	remaining: 293ms
46:	learn: 26.1828993	total: 254ms	remaining: 287ms
47:	learn: 26.0233709	total: 257ms	remaining: 279ms
48:	learn: 25.9300399	total: 262ms	remaining: 273ms
49:	learn: 25.5861489	total: 267ms	remaining: 267ms
50:	learn: 25.4322012	total: 272ms	remaining: 261ms
51:	learn: 25.1595644	total: 277ms	remaining: 256ms
52:	learn: 24.9955303	total: 282ms	remaining: 250ms
53:	learn: 24.7273966	total: 286ms	remaining: 244ms
54:	learn: 24.5747978	total: 291ms	remaining: 238ms
55:	learn: 24.3807977	total: 296ms	remaining: 232ms
56:	learn: 24.1689569	total: 300ms	remaining: 227ms
57:	learn: 23.9898221	total: 307ms	remaining: 222ms
58:	learn: 23.7566414	total: 314ms	remaining: 218ms
59:	learn: 23.6641165	total: 321ms	remaining: 214ms
60:	learn: 23.5658066	total: 329ms	remaining: 210ms
61:	learn: 23.4338851	total: 336ms	remaining: 206ms
62:	learn: 23.2408837	total: 342ms	remaining: 201ms
63:	learn: 23.0642038	total: 347ms	remaining: 195ms
64:	learn: 22.9032045	total: 352ms	remaining: 189ms
65:	learn: 22.7736138	total: 357ms	remaining: 184ms
66:	learn: 22.6836443	total: 362ms	remaining: 178ms
67:	learn: 22.5983654	total: 367ms	remaining: 173ms
68:	learn: 22.4419813	total: 372ms	remaining: 167ms
69:	learn: 22.2863339	total: 377ms	remaining: 162ms
70:	learn: 22.1792943	total: 383ms	remaining: 156ms
71:	learn: 22.1130574	total: 388ms	remaining: 151ms
72:	learn: 21.9858161	total: 392ms	remaining: 145ms
73:	learn: 21.8577784	total: 397ms	remaining: 140ms
74:	learn: 21.7845222	total: 403ms	remaining: 134ms
75:	learn: 21.6831390	total: 408ms	remaining: 129ms
76:	learn: 21.6292521	total: 412ms	remaining: 123ms
77:	learn: 21.5789330	total: 416ms	remaining: 117ms
78:	learn: 21.5420942	total: 420ms	remaining: 112ms
79:	learn: 21.4280939	total: 424ms	remaining: 106ms
80:	learn: 21.3641165	total: 429ms	remaining: 101ms
81:	learn: 21.2734814	total: 433ms	remaining: 95ms
82:	learn: 21.2220323	total: 437ms	remaining: 89.6ms
83:	learn: 21.0625792	total: 441ms	remaining: 84.1ms
84:	learn: 20.9488320	total: 446ms	remaining: 78.7ms
85:	learn: 20.8504255	total: 450ms	remaining: 73.3ms
86:	learn: 20.7848510	total: 455ms	remaining: 67.9ms
87:	learn: 20.7247442	total: 459ms	remaining: 62.5ms
88:	learn: 20.5698590	total: 463ms	remaining: 57.2ms
89:	learn: 20.4067620	total: 467ms	remaining: 51.9ms
90:	learn: 20.3062482	total: 472ms	remaining: 46.7ms
91:	learn: 20.2029696	total: 477ms	remaining: 41.5ms
92:	learn: 20.1384849	total: 482ms	remaining: 36.2ms
93:	learn: 20.0260709	total: 486ms	remaining: 31ms
94:	learn: 19.9122100	total: 490ms	remaining: 25.8ms
95:	learn: 19.8648487	total: 495ms	remaining: 20.6ms
96:	learn: 19.8207072	total: 499ms	remaining: 15.4ms
97:	learn: 19.7261189	total: 507ms	remaining: 10.3ms
98:	learn: 19.7042438	total: 514ms	remaining: 5.19ms
99:	learn: 19.6546645	total: 523ms	remaining: 0us
0:	learn: 47.0239288	total: 5.45ms	remaining: 539ms
1:	learn: 46.2253829	total: 10.3ms	remaining: 505ms
2:	learn: 45.5580301	total: 15.6ms	remaining: 504ms
3:	learn: 44.7273237	total: 21.4ms	remaining: 512ms
4:	learn: 43.8867421	total: 25.8ms	remaining: 490ms
5:	learn: 43.3615911	total: 30ms	remaining: 469ms
6:	learn: 42.8548390	total: 34.5ms	remaining: 459ms
7:	learn: 42.1606758	total: 39.4ms	remaining: 453ms
8:	learn: 41.6625870	total: 43.8ms	remaining: 443ms
9:	learn: 40.9497092	total: 48.4ms	remaining: 435ms
10:	learn: 40.1886318	total: 52.5ms	remaining: 425ms
11:	learn: 39.7456423	total: 57.3ms	remaining: 420ms
12:	learn: 39.1171373	total: 61.7ms	remaining: 413ms
13:	learn: 38.5451069	total: 66.4ms	remaining: 408ms
14:	learn: 38.0155834	total: 71.4ms	remaining: 405ms
15:	learn: 37.5631354	total: 76.5ms	remaining: 402ms
16:	learn: 37.1030023	total: 81.3ms	remaining: 397ms
17:	learn: 36.4563029	total: 85.5ms	remaining: 389ms
18:	learn: 36.0160976	total: 89.9ms	remaining: 383ms
19:	learn: 35.5079827	total: 94.5ms	remaining: 378ms
20:	learn: 35.2111885	total: 99.1ms	remaining: 373ms
21:	learn: 34.9397465	total: 104ms	remaining: 367ms
22:	learn: 34.5270048	total: 108ms	remaining: 363ms
23:	learn: 34.0169260	total: 113ms	remaining: 358ms
24:	learn: 33.7454892	total: 118ms	remaining: 354ms
25:	learn: 33.2648157	total: 123ms	remaining: 349ms
26:	learn: 32.8899427	total: 128ms	remaining: 346ms
27:	learn: 32.6185050	total: 136ms	remaining: 349ms
28:	learn: 32.3528531	total: 143ms	remaining: 351ms
29:	learn: 32.0859923	total: 152ms	remaining: 354ms
30:	learn: 31.6511144	total: 159ms	remaining: 354ms
31:	learn: 31.2571765	total: 164ms	remaining: 349ms
32:	learn: 30.9770049	total: 170ms	remaining: 344ms
33:	learn: 30.6084872	total: 175ms	remaining: 340ms
34:	learn: 30.3448632	total: 181ms	remaining: 336ms
35:	learn: 30.0360942	total: 187ms	remaining: 333ms
36:	learn: 29.6648968	total: 193ms	remaining: 328ms
37:	learn: 29.3165114	total: 198ms	remaining: 324ms
38:	learn: 29.0829198	total: 204ms	remaining: 319ms
39:	learn: 28.7752064	total: 210ms	remaining: 314ms
40:	learn: 28.3622191	total: 215ms	remaining: 309ms
41:	learn: 28.1346631	total: 220ms	remaining: 304ms
42:	learn: 27.9585719	total: 226ms	remaining: 299ms
43:	learn: 27.6565566	total: 231ms	remaining: 294ms
44:	learn: 27.3616172	total: 235ms	remaining: 288ms
45:	learn: 27.0658637	total: 239ms	remaining: 281ms
46:	learn: 26.8660382	total: 243ms	remaining: 274ms
47:	learn: 26.6536078	total: 247ms	remaining: 268ms
48:	learn: 26.3524440	total: 251ms	remaining: 261ms
49:	learn: 26.1595277	total: 255ms	remaining: 255ms
50:	learn: 25.9273523	total: 259ms	remaining: 249ms
51:	learn: 25.7195580	total: 263ms	remaining: 243ms
52:	learn: 25.5730225	total: 267ms	remaining: 237ms
53:	learn: 25.3455276	total: 271ms	remaining: 231ms
54:	learn: 25.2289675	total: 275ms	remaining: 225ms
55:	learn: 25.0133024	total: 279ms	remaining: 219ms
56:	learn: 24.8406714	total: 283ms	remaining: 214ms
57:	learn: 24.6367857	total: 287ms	remaining: 208ms
58:	learn: 24.5338177	total: 292ms	remaining: 203ms
59:	learn: 24.3799964	total: 296ms	remaining: 197ms
60:	learn: 24.1447492	total: 301ms	remaining: 192ms
61:	learn: 23.9880495	total: 306ms	remaining: 187ms
62:	learn: 23.7140630	total: 310ms	remaining: 182ms
63:	learn: 23.5003791	total: 315ms	remaining: 177ms
64:	learn: 23.3207645	total: 320ms	remaining: 172ms
65:	learn: 23.1958356	total: 324ms	remaining: 167ms
66:	learn: 23.0471302	total: 330ms	remaining: 162ms
67:	learn: 22.8977183	total: 339ms	remaining: 159ms
68:	learn: 22.7187400	total: 346ms	remaining: 156ms
69:	learn: 22.6523405	total: 357ms	remaining: 153ms
70:	learn: 22.4767453	total: 365ms	remaining: 149ms
71:	learn: 22.3243677	total: 370ms	remaining: 144ms
72:	learn: 22.2133096	total: 376ms	remaining: 139ms
73:	learn: 22.1151713	total: 381ms	remaining: 134ms
74:	learn: 22.0296666	total: 387ms	remaining: 129ms
75:	learn: 21.9195980	total: 392ms	remaining: 124ms
76:	learn: 21.8401730	total: 399ms	remaining: 119ms
77:	learn: 21.8079797	total: 405ms	remaining: 114ms
78:	learn: 21.7274109	total: 410ms	remaining: 109ms
79:	learn: 21.6663032	total: 415ms	remaining: 104ms
80:	learn: 21.5633117	total: 420ms	remaining: 98.4ms
81:	learn: 21.4542467	total: 425ms	remaining: 93.3ms
82:	learn: 21.3177957	total: 430ms	remaining: 88.1ms
83:	learn: 21.1289167	total: 435ms	remaining: 82.9ms
84:	learn: 21.0297368	total: 440ms	remaining: 77.6ms
85:	learn: 20.9089564	total: 444ms	remaining: 72.3ms
86:	learn: 20.7653988	total: 448ms	remaining: 67ms
87:	learn: 20.6521894	total: 452ms	remaining: 61.7ms
88:	learn: 20.5193021	total: 457ms	remaining: 56.4ms
89:	learn: 20.4361620	total: 461ms	remaining: 51.2ms
90:	learn: 20.3546710	total: 465ms	remaining: 46ms
91:	learn: 20.2513296	total: 470ms	remaining: 40.9ms
92:	learn: 20.1605550	total: 475ms	remaining: 35.7ms
93:	learn: 20.0515942	total: 479ms	remaining: 30.6ms
94:	learn: 19.9800764	total: 484ms	remaining: 25.5ms
95:	learn: 19.8996532	total: 488ms	remaining: 20.3ms
96:	learn: 19.8450910	total: 493ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 498ms	remaining: 10.2ms
98:	learn: 19.7230872	total: 503ms	remaining: 5.08ms
99:	learn: 19.6328825	total: 508ms	remaining: 0us
0:	learn: 27.5585353	total: 7.16ms	remaining: 709ms
1:	learn: 27.1656995	total: 14.9ms	remaining: 732ms
2:	learn: 26.8590175	total: 19.8ms	remaining: 640ms
3:	learn: 26.5818406	total: 24.7ms	remaining: 593ms
4:	learn: 26.1148663	total: 29.9ms	remaining: 568ms
5:	learn: 25.7690484	total: 34.9ms	remaining: 546ms
6:	learn: 25.3489206	total: 40.3ms	remaining: 535ms
7:	learn: 24.9542406	total: 52.5ms	remaining: 604ms
8:	learn: 24.6777517	total: 57.8ms	remaining: 585ms
9:	learn: 24.3242344	total: 63.7ms	remaining: 574ms
10:	learn: 24.0383073	total: 68.5ms	remaining: 554ms
11:	learn: 23.7383420	total: 73.1ms	remaining: 536ms
12:	learn: 23.3461670	total: 78.3ms	remaining: 524ms
13:	learn: 23.0928636	total: 83.9ms	remaining: 515ms
14:	learn: 22.8770414	total: 87.8ms	remaining: 497ms
15:	learn: 22.6323214	total: 91.8ms	remaining: 482ms
16:	learn: 22.3597072	total: 96ms	remaining: 469ms
17:	learn: 22.1079813	total: 101ms	remaining: 458ms
18:	learn: 21.8421199	total: 105ms	remaining: 447ms
19:	learn: 21.6576508	total: 109ms	remaining: 434ms
20:	learn: 21.4301268	total: 112ms	remaining: 423ms
21:	learn: 21.2287388	total: 117ms	remaining: 414ms
22:	learn: 21.0553872	total: 121ms	remaining: 404ms
23:	learn: 20.8977091	total: 125ms	remaining: 395ms
24:	learn: 20.6619051	total: 129ms	remaining: 387ms
25:	learn: 20.5040955	total: 133ms	remaining: 379ms
26:	learn: 20.3181195	total: 137ms	remaining: 371ms
27:	learn: 20.0869436	total: 141ms	remaining: 363ms
28:	learn: 19.9375985	total: 146ms	remaining: 357ms
29:	learn: 19.8247516	total: 150ms	remaining: 351ms
30:	learn: 19.6261697	total: 155ms	remaining: 344ms
31:	learn: 19.4547236	total: 159ms	remaining: 338ms
32:	learn: 19.3157092	total: 163ms	remaining: 331ms
33:	learn: 19.1561419	total: 168ms	remaining: 326ms
34:	learn: 19.0453620	total: 173ms	remaining: 321ms
35:	learn: 18.8738574	total: 179ms	remaining: 318ms
36:	learn: 18.7072907	total: 186ms	remaining: 318ms
37:	learn: 18.5877943	total: 196ms	remaining: 319ms
38:	learn: 18.4436380	total: 202ms	remaining: 316ms
39:	learn: 18.3463356	total: 210ms	remaining: 315ms
40:	learn: 18.2008059	total: 215ms	remaining: 309ms
41:	learn: 18.0582079	total: 221ms	remaining: 305ms
42:	learn: 17.8891982	total: 226ms	remaining: 300ms
43:	learn: 17.7332246	total: 231ms	remaining: 294ms
44:	learn: 17.6206421	total: 237ms	remaining: 289ms
45:	learn: 17.4982800	total: 242ms	remaining: 284ms
46:	learn: 17.3970150	total: 247ms	remaining: 278ms
47:	learn: 17.3058203	total: 252ms	remaining: 273ms
48:	learn: 17.1789256	total: 257ms	remaining: 268ms
49:	learn: 17.0916229	total: 262ms	remaining: 262ms
50:	learn: 16.9859820	total: 267ms	remaining: 256ms
51:	learn: 16.8995582	total: 272ms	remaining: 251ms
52:	learn: 16.8137014	total: 278ms	remaining: 246ms
53:	learn: 16.7021451	total: 282ms	remaining: 240ms
54:	learn: 16.5895582	total: 286ms	remaining: 234ms
55:	learn: 16.5015639	total: 290ms	remaining: 228ms
56:	learn: 16.4356637	total: 294ms	remaining: 222ms
57:	learn: 16.3514525	total: 298ms	remaining: 216ms
58:	learn: 16.2401369	total: 302ms	remaining: 210ms
59:	learn: 16.1293223	total: 306ms	remaining: 204ms
60:	learn: 16.0271167	total: 311ms	remaining: 199ms
61:	learn: 15.9126257	total: 315ms	remaining: 193ms
62:	learn: 15.8391096	total: 319ms	remaining: 187ms
63:	learn: 15.7441773	total: 323ms	remaining: 182ms
64:	learn: 15.6885195	total: 327ms	remaining: 176ms
65:	learn: 15.6052039	total: 331ms	remaining: 171ms
66:	learn: 15.5074202	total: 335ms	remaining: 165ms
67:	learn: 15.4054338	total: 340ms	remaining: 160ms
68:	learn: 15.2885714	total: 344ms	remaining: 155ms
69:	learn: 15.2157472	total: 348ms	remaining: 149ms
70:	learn: 15.1031554	total: 352ms	remaining: 144ms
71:	learn: 15.0237470	total: 357ms	remaining: 139ms
72:	learn: 14.9756825	total: 361ms	remaining: 134ms
73:	learn: 14.8840596	total: 366ms	remaining: 129ms
74:	learn: 14.8077061	total: 371ms	remaining: 124ms
75:	learn: 14.7444437	total: 375ms	remaining: 118ms
76:	learn: 14.6751720	total: 380ms	remaining: 114ms
77:	learn: 14.5830333	total: 385ms	remaining: 108ms
78:	learn: 14.5241206	total: 390ms	remaining: 104ms
79:	learn: 14.4892731	total: 397ms	remaining: 99.4ms
80:	learn: 14.4256605	total: 405ms	remaining: 95.1ms
81:	learn: 14.3666860	total: 414ms	remaining: 90.8ms
82:	learn: 14.2938372	total: 420ms	remaining: 86.1ms
83:	learn: 14.2161532	total: 426ms	remaining: 81.1ms
84:	learn: 14.1582910	total: 431ms	remaining: 76.1ms
85:	learn: 14.1029153	total: 436ms	remaining: 71ms
86:	learn: 14.0475835	total: 441ms	remaining: 65.9ms
87:	learn: 13.9892661	total: 446ms	remaining: 60.9ms
88:	learn: 13.9481628	total: 451ms	remaining: 55.8ms
89:	learn: 13.8483991	total: 456ms	remaining: 50.7ms
90:	learn: 13.7775614	total: 462ms	remaining: 45.7ms
91:	learn: 13.7304585	total: 467ms	remaining: 40.6ms
92:	learn: 13.6783381	total: 472ms	remaining: 35.5ms
93:	learn: 13.6356964	total: 476ms	remaining: 30.4ms
94:	learn: 13.5924371	total: 481ms	remaining: 25.3ms
95:	learn: 13.5400746	total: 487ms	remaining: 20.3ms
96:	learn: 13.4897333	total: 492ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 496ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 500ms	remaining: 5.05ms
99:	learn: 13.3082371	total: 504ms	remaining: 0us
0:	learn: 43.0395283	total: 4.79ms	remaining: 475ms
1:	learn: 42.1130223	total: 8.76ms	remaining: 429ms
2:	learn: 41.1753409	total: 12.6ms	remaining: 409ms
3:	learn: 40.3637444	total: 16.9ms	remaining: 405ms
4:	learn: 39.6508088	total: 21.4ms	remaining: 406ms
5:	learn: 38.7217934	total: 26.1ms	remaining: 408ms
6:	learn: 37.8538055	total: 30.5ms	remaining: 405ms
7:	learn: 36.9793574	total: 35ms	remaining: 402ms
8:	learn: 36.3076984	total: 39.6ms	remaining: 401ms
9:	learn: 35.6673160	total: 44ms	remaining: 396ms
10:	learn: 34.8889800	total: 48.4ms	remaining: 392ms
11:	learn: 34.1675517	total: 54.8ms	remaining: 402ms
12:	learn: 33.6779564	total: 63.1ms	remaining: 422ms
13:	learn: 33.0710039	total: 71.2ms	remaining: 437ms
14:	learn: 32.4966674	total: 77.1ms	remaining: 437ms
15:	learn: 31.9492856	total: 94.5ms	remaining: 496ms
16:	learn: 31.5108129	total: 98.9ms	remaining: 483ms
17:	learn: 30.9804023	total: 104ms	remaining: 472ms
18:	learn: 30.4169089	total: 108ms	remaining: 460ms
19:	learn: 29.8930375	total: 112ms	remaining: 450ms
20:	learn: 29.3974421	total: 117ms	remaining: 441ms
21:	learn: 28.8792307	total: 122ms	remaining: 432ms
22:	learn: 28.3894474	total: 126ms	remaining: 422ms
23:	learn: 27.9921276	total: 130ms	remaining: 412ms
24:	learn: 27.6158887	total: 134ms	remaining: 403ms
25:	learn: 27.2866950	total: 139ms	remaining: 395ms
26:	learn: 26.8770708	total: 143ms	remaining: 386ms
27:	learn: 26.6233005	total: 147ms	remaining: 378ms
28:	learn: 26.2921934	total: 151ms	remaining: 369ms
29:	learn: 25.9156920	total: 155ms	remaining: 361ms
30:	learn: 25.5311106	total: 156ms	remaining: 348ms
31:	learn: 25.2178997	total: 160ms	remaining: 341ms
32:	learn: 24.8572196	total: 165ms	remaining: 335ms
33:	learn: 24.5849710	total: 169ms	remaining: 327ms
34:	learn: 24.2209190	total: 173ms	remaining: 321ms
35:	learn: 23.8708250	total: 177ms	remaining: 314ms
36:	learn: 23.5325279	total: 181ms	remaining: 308ms
37:	learn: 23.2116148	total: 185ms	remaining: 302ms
38:	learn: 22.9696787	total: 189ms	remaining: 296ms
39:	learn: 22.7936783	total: 194ms	remaining: 290ms
40:	learn: 22.6228847	total: 198ms	remaining: 284ms
41:	learn: 22.3691527	total: 202ms	remaining: 279ms
42:	learn: 22.1002173	total: 206ms	remaining: 273ms
43:	learn: 21.9157268	total: 210ms	remaining: 268ms
44:	learn: 21.7229102	total: 214ms	remaining: 262ms
45:	learn: 21.4642005	total: 219ms	remaining: 257ms
46:	learn: 21.3029442	total: 223ms	remaining: 252ms
47:	learn: 21.1469792	total: 228ms	remaining: 247ms
48:	learn: 20.9458235	total: 232ms	remaining: 242ms
49:	learn: 20.7335242	total: 237ms	remaining: 237ms
50:	learn: 20.5440269	total: 241ms	remaining: 232ms
51:	learn: 20.3661449	total: 246ms	remaining: 227ms
52:	learn: 20.2158134	total: 250ms	remaining: 222ms
53:	learn: 19.9934873	total: 258ms	remaining: 220ms
54:	learn: 19.7879739	total: 266ms	remaining: 218ms
55:	learn: 19.6630460	total: 276ms	remaining: 217ms
56:	learn: 19.5152729	total: 282ms	remaining: 213ms
57:	learn: 19.3581128	total: 289ms	remaining: 209ms
58:	learn: 19.2209303	total: 294ms	remaining: 204ms
59:	learn: 19.0965248	total: 299ms	remaining: 199ms
60:	learn: 19.0035954	total: 304ms	remaining: 194ms
61:	learn: 18.8554149	total: 309ms	remaining: 190ms
62:	learn: 18.7095427	total: 314ms	remaining: 185ms
63:	learn: 18.5751494	total: 319ms	remaining: 180ms
64:	learn: 18.4678251	total: 325ms	remaining: 175ms
65:	learn: 18.3500325	total: 330ms	remaining: 170ms
66:	learn: 18.2088983	total: 336ms	remaining: 165ms
67:	learn: 18.0737705	total: 341ms	remaining: 160ms
68:	learn: 17.9325058	total: 346ms	remaining: 155ms
69:	learn: 17.8003911	total: 351ms	remaining: 151ms
70:	learn: 17.7385366	total: 357ms	remaining: 146ms
71:	learn: 17.6106998	total: 362ms	remaining: 141ms
72:	learn: 17.4816270	total: 367ms	remaining: 136ms
73:	learn: 17.4025554	total: 372ms	remaining: 131ms
74:	learn: 17.2902108	total: 376ms	remaining: 125ms
75:	learn: 17.2158048	total: 381ms	remaining: 120ms
76:	learn: 17.1261053	total: 386ms	remaining: 115ms
77:	learn: 17.0308917	total: 390ms	remaining: 110ms
78:	learn: 16.9546705	total: 395ms	remaining: 105ms
79:	learn: 16.8319165	total: 400ms	remaining: 100ms
80:	learn: 16.7687017	total: 404ms	remaining: 94.8ms
81:	learn: 16.6972326	total: 408ms	remaining: 89.6ms
82:	learn: 16.6124580	total: 412ms	remaining: 84.5ms
83:	learn: 16.4999052	total: 417ms	remaining: 79.5ms
84:	learn: 16.4302484	total: 422ms	remaining: 74.5ms
85:	learn: 16.3201363	total: 427ms	remaining: 69.4ms
86:	learn: 16.2534314	total: 431ms	remaining: 64.4ms
87:	learn: 16.1720485	total: 436ms	remaining: 59.5ms
88:	learn: 16.0625751	total: 441ms	remaining: 54.5ms
89:	learn: 15.9135088	total: 445ms	remaining: 49.5ms
90:	learn: 15.8658863	total: 452ms	remaining: 44.7ms
91:	learn: 15.8066805	total: 459ms	remaining: 39.9ms
92:	learn: 15.7412103	total: 466ms	remaining: 35.1ms
93:	learn: 15.6542776	total: 475ms	remaining: 30.3ms
94:	learn: 15.5760334	total: 483ms	remaining: 25.4ms
95:	learn: 15.5434131	total: 489ms	remaining: 20.4ms
96:	learn: 15.4709561	total: 494ms	remaining: 15.3ms
97:	learn: 15.4449618	total: 499ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 505ms	remaining: 5.1ms
99:	learn: 15.3106595	total: 510ms	remaining: 0us
0:	learn: 46.7142257	total: 4.52ms	remaining: 447ms
1:	learn: 45.7634153	total: 8.47ms	remaining: 415ms
2:	learn: 45.0054253	total: 12.5ms	remaining: 404ms
3:	learn: 44.2120432	total: 16.6ms	remaining: 397ms
4:	learn: 43.3960472	total: 20.7ms	remaining: 394ms
5:	learn: 42.8588120	total: 25ms	remaining: 391ms
6:	learn: 41.9533701	total: 29.2ms	remaining: 387ms
7:	learn: 41.2745030	total: 33ms	remaining: 379ms
8:	learn: 40.6797495	total: 37.6ms	remaining: 380ms
9:	learn: 39.9899571	total: 41.9ms	remaining: 377ms
10:	learn: 39.4682100	total: 45.8ms	remaining: 371ms
11:	learn: 39.0305595	total: 50.5ms	remaining: 370ms
12:	learn: 38.4200417	total: 54.4ms	remaining: 364ms
13:	learn: 37.8425194	total: 58.6ms	remaining: 360ms
14:	learn: 37.4203127	total: 62.4ms	remaining: 354ms
15:	learn: 36.9917688	total: 66.8ms	remaining: 351ms
16:	learn: 36.5544138	total: 71ms	remaining: 347ms
17:	learn: 36.0727019	total: 75.7ms	remaining: 345ms
18:	learn: 35.4835715	total: 80.3ms	remaining: 343ms
19:	learn: 34.9865654	total: 84.8ms	remaining: 339ms
20:	learn: 34.6063373	total: 89.3ms	remaining: 336ms
21:	learn: 34.0997289	total: 93.9ms	remaining: 333ms
22:	learn: 33.7313171	total: 98.9ms	remaining: 331ms
23:	learn: 33.3582000	total: 107ms	remaining: 337ms
24:	learn: 32.9432456	total: 114ms	remaining: 342ms
25:	learn: 32.5220888	total: 122ms	remaining: 349ms
26:	learn: 32.2172292	total: 128ms	remaining: 346ms
27:	learn: 31.8972904	total: 135ms	remaining: 347ms
28:	learn: 31.6405350	total: 140ms	remaining: 343ms
29:	learn: 31.4167702	total: 145ms	remaining: 339ms
30:	learn: 30.8541961	total: 147ms	remaining: 328ms
31:	learn: 30.5572111	total: 152ms	remaining: 324ms
32:	learn: 30.1700399	total: 158ms	remaining: 320ms
33:	learn: 29.8537271	total: 163ms	remaining: 316ms
34:	learn: 29.6192540	total: 168ms	remaining: 312ms
35:	learn: 29.3276362	total: 174ms	remaining: 308ms
36:	learn: 28.9985179	total: 179ms	remaining: 304ms
37:	learn: 28.7046880	total: 184ms	remaining: 300ms
38:	learn: 28.4412677	total: 189ms	remaining: 295ms
39:	learn: 28.1277292	total: 193ms	remaining: 290ms
40:	learn: 27.9000750	total: 199ms	remaining: 286ms
41:	learn: 27.5433162	total: 204ms	remaining: 282ms
42:	learn: 27.2493285	total: 209ms	remaining: 277ms
43:	learn: 26.9576632	total: 210ms	remaining: 268ms
44:	learn: 26.6177110	total: 214ms	remaining: 262ms
45:	learn: 26.2812456	total: 219ms	remaining: 257ms
46:	learn: 26.0803859	total: 222ms	remaining: 251ms
47:	learn: 25.9543581	total: 226ms	remaining: 245ms
48:	learn: 25.7951582	total: 230ms	remaining: 240ms
49:	learn: 25.6548184	total: 235ms	remaining: 235ms
50:	learn: 25.4010843	total: 239ms	remaining: 229ms
51:	learn: 24.9773937	total: 243ms	remaining: 224ms
52:	learn: 24.8026156	total: 247ms	remaining: 219ms
53:	learn: 24.5568053	total: 252ms	remaining: 214ms
54:	learn: 24.2281839	total: 256ms	remaining: 209ms
55:	learn: 23.9202795	total: 260ms	remaining: 204ms
56:	learn: 23.7625591	total: 265ms	remaining: 200ms
57:	learn: 23.5429721	total: 269ms	remaining: 195ms
58:	learn: 23.3175893	total: 274ms	remaining: 190ms
59:	learn: 23.2035130	total: 278ms	remaining: 186ms
60:	learn: 23.0232450	total: 283ms	remaining: 181ms
61:	learn: 22.8384958	total: 288ms	remaining: 176ms
62:	learn: 22.6499902	total: 292ms	remaining: 172ms
63:	learn: 22.4577426	total: 297ms	remaining: 167ms
64:	learn: 22.3333158	total: 306ms	remaining: 165ms
65:	learn: 22.2064131	total: 316ms	remaining: 163ms
66:	learn: 22.1434971	total: 322ms	remaining: 159ms
67:	learn: 21.9596519	total: 330ms	remaining: 155ms
68:	learn: 21.8475576	total: 335ms	remaining: 150ms
69:	learn: 21.6954745	total: 340ms	remaining: 146ms
70:	learn: 21.5635976	total: 345ms	remaining: 141ms
71:	learn: 21.4588506	total: 350ms	remaining: 136ms
72:	learn: 21.3527268	total: 356ms	remaining: 132ms
73:	learn: 21.2661288	total: 361ms	remaining: 127ms
74:	learn: 21.1817333	total: 366ms	remaining: 122ms
75:	learn: 21.0527553	total: 372ms	remaining: 118ms
76:	learn: 20.9229021	total: 378ms	remaining: 113ms
77:	learn: 20.7563946	total: 383ms	remaining: 108ms
78:	learn: 20.6569831	total: 388ms	remaining: 103ms
79:	learn: 20.4982663	total: 393ms	remaining: 98.2ms
80:	learn: 20.3185460	total: 398ms	remaining: 93.4ms
81:	learn: 20.2096241	total: 403ms	remaining: 88.4ms
82:	learn: 20.1274891	total: 407ms	remaining: 83.4ms
83:	learn: 20.0740139	total: 411ms	remaining: 78.2ms
84:	learn: 19.9630699	total: 415ms	remaining: 73.2ms
85:	learn: 19.8753899	total: 419ms	remaining: 68.2ms
86:	learn: 19.6563612	total: 423ms	remaining: 63.3ms
87:	learn: 19.4680232	total: 427ms	remaining: 58.3ms
88:	learn: 19.3503431	total: 431ms	remaining: 53.3ms
89:	learn: 19.2221379	total: 435ms	remaining: 48.3ms
90:	learn: 19.0732542	total: 439ms	remaining: 43.4ms
91:	learn: 18.9825190	total: 444ms	remaining: 38.6ms
92:	learn: 18.8839009	total: 448ms	remaining: 33.7ms
93:	learn: 18.8012219	total: 452ms	remaining: 28.9ms
94:	learn: 18.7172713	total: 456ms	remaining: 24ms
95:	learn: 18.6201170	total: 460ms	remaining: 19.2ms
96:	learn: 18.5318611	total: 465ms	remaining: 14.4ms
97:	learn: 18.3833356	total: 470ms	remaining: 9.58ms
98:	learn: 18.3289700	total: 474ms	remaining: 4.79ms
99:	learn: 18.2227333	total: 479ms	remaining: 0us
0:	learn: 46.3764524	total: 5.57ms	remaining: 552ms
1:	learn: 45.5561269	total: 10.5ms	remaining: 514ms
2:	learn: 44.8811245	total: 15.4ms	remaining: 498ms
3:	learn: 44.0788617	total: 20.3ms	remaining: 487ms
4:	learn: 43.3619790	total: 25.5ms	remaining: 484ms
5:	learn: 42.6912112	total: 31ms	remaining: 485ms
6:	learn: 42.2292118	total: 36.7ms	remaining: 488ms
7:	learn: 41.7725191	total: 42ms	remaining: 482ms
8:	learn: 41.1676614	total: 46.8ms	remaining: 473ms
9:	learn: 40.5771076	total: 52.6ms	remaining: 474ms
10:	learn: 39.8343757	total: 58.1ms	remaining: 470ms
11:	learn: 39.3761142	total: 62.6ms	remaining: 459ms
12:	learn: 38.5254692	total: 66.8ms	remaining: 447ms
13:	learn: 37.9629555	total: 70.9ms	remaining: 435ms
14:	learn: 37.4418438	total: 74.9ms	remaining: 424ms
15:	learn: 37.0507283	total: 78.4ms	remaining: 412ms
16:	learn: 36.6264217	total: 82.1ms	remaining: 401ms
17:	learn: 36.1114940	total: 86.5ms	remaining: 394ms
18:	learn: 35.7193862	total: 90.5ms	remaining: 386ms
19:	learn: 35.3301177	total: 94.6ms	remaining: 379ms
20:	learn: 35.0598280	total: 98.4ms	remaining: 370ms
21:	learn: 34.5469736	total: 103ms	remaining: 364ms
22:	learn: 34.2064215	total: 106ms	remaining: 356ms
23:	learn: 33.7280710	total: 110ms	remaining: 348ms
24:	learn: 33.3282940	total: 115ms	remaining: 344ms
25:	learn: 32.8478961	total: 119ms	remaining: 339ms
26:	learn: 32.5722164	total: 123ms	remaining: 332ms
27:	learn: 32.2457019	total: 127ms	remaining: 326ms
28:	learn: 31.9230495	total: 132ms	remaining: 322ms
29:	learn: 31.4311611	total: 136ms	remaining: 317ms
30:	learn: 30.9179052	total: 141ms	remaining: 313ms
31:	learn: 30.6201141	total: 146ms	remaining: 310ms
32:	learn: 30.3421106	total: 150ms	remaining: 305ms
33:	learn: 29.9885373	total: 155ms	remaining: 300ms
34:	learn: 29.7462780	total: 159ms	remaining: 296ms
35:	learn: 29.3607153	total: 167ms	remaining: 297ms
36:	learn: 29.1793078	total: 175ms	remaining: 297ms
37:	learn: 28.9276538	total: 182ms	remaining: 298ms
38:	learn: 28.6903934	total: 189ms	remaining: 295ms
39:	learn: 28.2095033	total: 196ms	remaining: 294ms
40:	learn: 27.7990608	total: 201ms	remaining: 289ms
41:	learn: 27.5406632	total: 206ms	remaining: 285ms
42:	learn: 27.2575376	total: 212ms	remaining: 281ms
43:	learn: 26.9741707	total: 217ms	remaining: 276ms
44:	learn: 26.6606899	total: 222ms	remaining: 272ms
45:	learn: 26.4015833	total: 227ms	remaining: 267ms
46:	learn: 26.1828993	total: 232ms	remaining: 262ms
47:	learn: 26.0233709	total: 236ms	remaining: 255ms
48:	learn: 25.9300399	total: 240ms	remaining: 250ms
49:	learn: 25.5861489	total: 246ms	remaining: 246ms
50:	learn: 25.4322012	total: 251ms	remaining: 241ms
51:	learn: 25.1595644	total: 256ms	remaining: 236ms
52:	learn: 24.9955303	total: 262ms	remaining: 232ms
53:	learn: 24.7273966	total: 268ms	remaining: 228ms
54:	learn: 24.5747978	total: 273ms	remaining: 223ms
55:	learn: 24.3807977	total: 277ms	remaining: 218ms
56:	learn: 24.1689569	total: 282ms	remaining: 213ms
57:	learn: 23.9898221	total: 286ms	remaining: 207ms
58:	learn: 23.7566414	total: 290ms	remaining: 201ms
59:	learn: 23.6641165	total: 294ms	remaining: 196ms
60:	learn: 23.5658066	total: 298ms	remaining: 191ms
61:	learn: 23.4338851	total: 303ms	remaining: 186ms
62:	learn: 23.2408837	total: 307ms	remaining: 180ms
63:	learn: 23.0642038	total: 311ms	remaining: 175ms
64:	learn: 22.9032045	total: 316ms	remaining: 170ms
65:	learn: 22.7736138	total: 320ms	remaining: 165ms
66:	learn: 22.6836443	total: 324ms	remaining: 160ms
67:	learn: 22.5983654	total: 329ms	remaining: 155ms
68:	learn: 22.4419813	total: 334ms	remaining: 150ms
69:	learn: 22.2863339	total: 338ms	remaining: 145ms
70:	learn: 22.1792943	total: 343ms	remaining: 140ms
71:	learn: 22.1130574	total: 348ms	remaining: 135ms
72:	learn: 21.9858161	total: 352ms	remaining: 130ms
73:	learn: 21.8577784	total: 357ms	remaining: 125ms
74:	learn: 21.7845222	total: 362ms	remaining: 121ms
75:	learn: 21.6831390	total: 369ms	remaining: 117ms
76:	learn: 21.6292521	total: 376ms	remaining: 112ms
77:	learn: 21.5789330	total: 385ms	remaining: 109ms
78:	learn: 21.5420942	total: 391ms	remaining: 104ms
79:	learn: 21.4280939	total: 398ms	remaining: 99.5ms
80:	learn: 21.3641165	total: 403ms	remaining: 94.6ms
81:	learn: 21.2734814	total: 408ms	remaining: 89.7ms
82:	learn: 21.2220323	total: 414ms	remaining: 84.7ms
83:	learn: 21.0625792	total: 419ms	remaining: 79.9ms
84:	learn: 20.9488320	total: 425ms	remaining: 74.9ms
85:	learn: 20.8504255	total: 430ms	remaining: 70ms
86:	learn: 20.7848510	total: 435ms	remaining: 65ms
87:	learn: 20.7247442	total: 440ms	remaining: 60ms
88:	learn: 20.5698590	total: 445ms	remaining: 55ms
89:	learn: 20.4067620	total: 450ms	remaining: 50ms
90:	learn: 20.3062482	total: 455ms	remaining: 45ms
91:	learn: 20.2029696	total: 460ms	remaining: 40ms
92:	learn: 20.1384849	total: 465ms	remaining: 35ms
93:	learn: 20.0260709	total: 470ms	remaining: 30ms
94:	learn: 19.9122100	total: 474ms	remaining: 25ms
95:	learn: 19.8648487	total: 479ms	remaining: 19.9ms
96:	learn: 19.8207072	total: 483ms	remaining: 14.9ms
97:	learn: 19.7261189	total: 487ms	remaining: 9.94ms
98:	learn: 19.7042438	total: 491ms	remaining: 4.96ms
99:	learn: 19.6546645	total: 495ms	remaining: 0us
0:	learn: 47.0239288	total: 4.72ms	remaining: 467ms
1:	learn: 46.2253829	total: 9.24ms	remaining: 453ms
2:	learn: 45.5580301	total: 13.4ms	remaining: 434ms
3:	learn: 44.7273237	total: 18.2ms	remaining: 437ms
4:	learn: 43.8867421	total: 24.8ms	remaining: 471ms
5:	learn: 43.3615911	total: 32.3ms	remaining: 506ms
6:	learn: 42.8548390	total: 40.2ms	remaining: 534ms
7:	learn: 42.1606758	total: 47.1ms	remaining: 541ms
8:	learn: 41.6625870	total: 54.5ms	remaining: 551ms
9:	learn: 40.9497092	total: 59.4ms	remaining: 535ms
10:	learn: 40.1886318	total: 64.2ms	remaining: 519ms
11:	learn: 39.7456423	total: 69.3ms	remaining: 509ms
12:	learn: 39.1171373	total: 74.3ms	remaining: 497ms
13:	learn: 38.5451069	total: 79.4ms	remaining: 487ms
14:	learn: 38.0155834	total: 85.3ms	remaining: 483ms
15:	learn: 37.5631354	total: 90.3ms	remaining: 474ms
16:	learn: 37.1030023	total: 95.4ms	remaining: 466ms
17:	learn: 36.4563029	total: 100ms	remaining: 458ms
18:	learn: 36.0160976	total: 106ms	remaining: 450ms
19:	learn: 35.5079827	total: 110ms	remaining: 440ms
20:	learn: 35.2111885	total: 115ms	remaining: 433ms
21:	learn: 34.9397465	total: 120ms	remaining: 427ms
22:	learn: 34.5270048	total: 125ms	remaining: 419ms
23:	learn: 34.0169260	total: 129ms	remaining: 409ms
24:	learn: 33.7454892	total: 133ms	remaining: 400ms
25:	learn: 33.2648157	total: 138ms	remaining: 393ms
26:	learn: 32.8899427	total: 142ms	remaining: 384ms
27:	learn: 32.6185050	total: 146ms	remaining: 375ms
28:	learn: 32.3528531	total: 150ms	remaining: 367ms
29:	learn: 32.0859923	total: 153ms	remaining: 358ms
30:	learn: 31.6511144	total: 158ms	remaining: 351ms
31:	learn: 31.2571765	total: 162ms	remaining: 344ms
32:	learn: 30.9770049	total: 165ms	remaining: 336ms
33:	learn: 30.6084872	total: 170ms	remaining: 329ms
34:	learn: 30.3448632	total: 174ms	remaining: 323ms
35:	learn: 30.0360942	total: 178ms	remaining: 316ms
36:	learn: 29.6648968	total: 182ms	remaining: 309ms
37:	learn: 29.3165114	total: 186ms	remaining: 303ms
38:	learn: 29.0829198	total: 190ms	remaining: 297ms
39:	learn: 28.7752064	total: 195ms	remaining: 292ms
40:	learn: 28.3622191	total: 199ms	remaining: 286ms
41:	learn: 28.1346631	total: 203ms	remaining: 281ms
42:	learn: 27.9585719	total: 208ms	remaining: 275ms
43:	learn: 27.6565566	total: 211ms	remaining: 269ms
44:	learn: 27.3616172	total: 215ms	remaining: 263ms
45:	learn: 27.0658637	total: 220ms	remaining: 258ms
46:	learn: 26.8660382	total: 225ms	remaining: 253ms
47:	learn: 26.6536078	total: 229ms	remaining: 248ms
48:	learn: 26.3524440	total: 234ms	remaining: 243ms
49:	learn: 26.1595277	total: 238ms	remaining: 238ms
50:	learn: 25.9273523	total: 243ms	remaining: 233ms
51:	learn: 25.7195580	total: 247ms	remaining: 228ms
52:	learn: 25.5730225	total: 253ms	remaining: 224ms
53:	learn: 25.3455276	total: 261ms	remaining: 222ms
54:	learn: 25.2289675	total: 267ms	remaining: 219ms
55:	learn: 25.0133024	total: 275ms	remaining: 216ms
56:	learn: 24.8406714	total: 282ms	remaining: 213ms
57:	learn: 24.6367857	total: 288ms	remaining: 208ms
58:	learn: 24.5338177	total: 293ms	remaining: 204ms
59:	learn: 24.3799964	total: 299ms	remaining: 199ms
60:	learn: 24.1447492	total: 304ms	remaining: 194ms
61:	learn: 23.9880495	total: 309ms	remaining: 189ms
62:	learn: 23.7140630	total: 314ms	remaining: 184ms
63:	learn: 23.5003791	total: 319ms	remaining: 179ms
64:	learn: 23.3207645	total: 324ms	remaining: 174ms
65:	learn: 23.1958356	total: 329ms	remaining: 170ms
66:	learn: 23.0471302	total: 334ms	remaining: 165ms
67:	learn: 22.8977183	total: 339ms	remaining: 160ms
68:	learn: 22.7187400	total: 344ms	remaining: 155ms
69:	learn: 22.6523405	total: 350ms	remaining: 150ms
70:	learn: 22.4767453	total: 355ms	remaining: 145ms
71:	learn: 22.3243677	total: 358ms	remaining: 139ms
72:	learn: 22.2133096	total: 362ms	remaining: 134ms
73:	learn: 22.1151713	total: 367ms	remaining: 129ms
74:	learn: 22.0296666	total: 371ms	remaining: 124ms
75:	learn: 21.9195980	total: 375ms	remaining: 118ms
76:	learn: 21.8401730	total: 379ms	remaining: 113ms
77:	learn: 21.8079797	total: 383ms	remaining: 108ms
78:	learn: 21.7274109	total: 387ms	remaining: 103ms
79:	learn: 21.6663032	total: 391ms	remaining: 97.6ms
80:	learn: 21.5633117	total: 394ms	remaining: 92.5ms
81:	learn: 21.4542467	total: 398ms	remaining: 87.4ms
82:	learn: 21.3177957	total: 403ms	remaining: 82.5ms
83:	learn: 21.1289167	total: 407ms	remaining: 77.5ms
84:	learn: 21.0297368	total: 411ms	remaining: 72.5ms
85:	learn: 20.9089564	total: 415ms	remaining: 67.5ms
86:	learn: 20.7653988	total: 432ms	remaining: 64.6ms
87:	learn: 20.6521894	total: 436ms	remaining: 59.5ms
88:	learn: 20.5193021	total: 441ms	remaining: 54.5ms
89:	learn: 20.4361620	total: 445ms	remaining: 49.5ms
90:	learn: 20.3546710	total: 453ms	remaining: 44.8ms
91:	learn: 20.2513296	total: 462ms	remaining: 40.1ms
92:	learn: 20.1605550	total: 473ms	remaining: 35.6ms
93:	learn: 20.0515942	total: 479ms	remaining: 30.6ms
94:	learn: 19.9800764	total: 497ms	remaining: 26.1ms
95:	learn: 19.8996532	total: 502ms	remaining: 20.9ms
96:	learn: 19.8450910	total: 508ms	remaining: 15.7ms
97:	learn: 19.7887346	total: 513ms	remaining: 10.5ms
98:	learn: 19.7230872	total: 518ms	remaining: 5.24ms
99:	learn: 19.6328825	total: 524ms	remaining: 0us
0:	learn: 27.7143805	total: 4.32ms	remaining: 428ms
1:	learn: 27.2245894	total: 8.29ms	remaining: 406ms
2:	learn: 26.8693029	total: 12ms	remaining: 387ms
3:	learn: 26.4713217	total: 15.9ms	remaining: 383ms
4:	learn: 26.1261794	total: 19.7ms	remaining: 375ms
5:	learn: 25.8160419	total: 23.6ms	remaining: 370ms
6:	learn: 25.3860050	total: 27.4ms	remaining: 364ms
7:	learn: 25.0621682	total: 31.6ms	remaining: 363ms
8:	learn: 24.7574429	total: 35.8ms	remaining: 362ms
9:	learn: 24.5154734	total: 39.6ms	remaining: 357ms
10:	learn: 24.2199118	total: 43.9ms	remaining: 355ms
11:	learn: 23.9774955	total: 47.8ms	remaining: 351ms
12:	learn: 23.7755558	total: 52ms	remaining: 348ms
13:	learn: 23.4384476	total: 56.3ms	remaining: 346ms
14:	learn: 23.2035324	total: 60.5ms	remaining: 343ms
15:	learn: 22.9925293	total: 65ms	remaining: 341ms
16:	learn: 22.7981113	total: 69ms	remaining: 337ms
17:	learn: 22.5829245	total: 73.1ms	remaining: 333ms
18:	learn: 22.4131931	total: 93.4ms	remaining: 398ms
19:	learn: 22.1833629	total: 102ms	remaining: 406ms
20:	learn: 21.9660824	total: 113ms	remaining: 425ms
21:	learn: 21.7281998	total: 119ms	remaining: 420ms
22:	learn: 21.5000824	total: 125ms	remaining: 417ms
23:	learn: 21.2717031	total: 130ms	remaining: 412ms
24:	learn: 21.0926073	total: 136ms	remaining: 407ms
25:	learn: 20.8922144	total: 141ms	remaining: 400ms
26:	learn: 20.7498215	total: 147ms	remaining: 397ms
27:	learn: 20.5781754	total: 148ms	remaining: 382ms
28:	learn: 20.4294665	total: 154ms	remaining: 377ms
29:	learn: 20.2273985	total: 160ms	remaining: 373ms
30:	learn: 20.0920234	total: 165ms	remaining: 368ms
31:	learn: 19.9311712	total: 170ms	remaining: 362ms
32:	learn: 19.7852359	total: 175ms	remaining: 356ms
33:	learn: 19.6211007	total: 181ms	remaining: 352ms
34:	learn: 19.4806501	total: 187ms	remaining: 347ms
35:	learn: 19.3415380	total: 191ms	remaining: 340ms
36:	learn: 19.2075499	total: 196ms	remaining: 334ms
37:	learn: 19.0582745	total: 200ms	remaining: 327ms
38:	learn: 18.8852020	total: 205ms	remaining: 320ms
39:	learn: 18.6868677	total: 210ms	remaining: 315ms
40:	learn: 18.5481481	total: 214ms	remaining: 308ms
41:	learn: 18.4508846	total: 219ms	remaining: 302ms
42:	learn: 18.3650555	total: 223ms	remaining: 296ms
43:	learn: 18.1818415	total: 227ms	remaining: 289ms
44:	learn: 18.0782035	total: 232ms	remaining: 284ms
45:	learn: 17.9724472	total: 237ms	remaining: 278ms
46:	learn: 17.8657480	total: 241ms	remaining: 272ms
47:	learn: 17.7217309	total: 246ms	remaining: 267ms
48:	learn: 17.6403061	total: 251ms	remaining: 261ms
49:	learn: 17.5245570	total: 256ms	remaining: 256ms
50:	learn: 17.3976790	total: 261ms	remaining: 251ms
51:	learn: 17.2544460	total: 266ms	remaining: 245ms
52:	learn: 17.1507940	total: 270ms	remaining: 240ms
53:	learn: 17.0391276	total: 275ms	remaining: 234ms
54:	learn: 16.9348155	total: 280ms	remaining: 229ms
55:	learn: 16.8475635	total: 287ms	remaining: 225ms
56:	learn: 16.7691656	total: 296ms	remaining: 223ms
57:	learn: 16.6277836	total: 302ms	remaining: 219ms
58:	learn: 16.5524230	total: 309ms	remaining: 215ms
59:	learn: 16.4614442	total: 314ms	remaining: 209ms
60:	learn: 16.3077836	total: 319ms	remaining: 204ms
61:	learn: 16.2278133	total: 324ms	remaining: 199ms
62:	learn: 16.1288632	total: 329ms	remaining: 193ms
63:	learn: 16.0734717	total: 335ms	remaining: 188ms
64:	learn: 16.0085754	total: 340ms	remaining: 183ms
65:	learn: 15.9278700	total: 345ms	remaining: 178ms
66:	learn: 15.8320321	total: 350ms	remaining: 172ms
67:	learn: 15.7706425	total: 355ms	remaining: 167ms
68:	learn: 15.6404344	total: 360ms	remaining: 162ms
69:	learn: 15.5678129	total: 365ms	remaining: 157ms
70:	learn: 15.4980047	total: 371ms	remaining: 151ms
71:	learn: 15.4324207	total: 376ms	remaining: 146ms
72:	learn: 15.3551877	total: 381ms	remaining: 141ms
73:	learn: 15.2930769	total: 385ms	remaining: 135ms
74:	learn: 15.2307174	total: 389ms	remaining: 130ms
75:	learn: 15.1600937	total: 393ms	remaining: 124ms
76:	learn: 15.0837614	total: 397ms	remaining: 119ms
77:	learn: 15.0185989	total: 401ms	remaining: 113ms
78:	learn: 14.9300717	total: 405ms	remaining: 108ms
79:	learn: 14.8928389	total: 408ms	remaining: 102ms
80:	learn: 14.8250040	total: 413ms	remaining: 96.8ms
81:	learn: 14.7906114	total: 417ms	remaining: 91.5ms
82:	learn: 14.7214118	total: 421ms	remaining: 86.2ms
83:	learn: 14.6657875	total: 425ms	remaining: 80.9ms
84:	learn: 14.6085682	total: 429ms	remaining: 75.6ms
85:	learn: 14.5334097	total: 432ms	remaining: 70.4ms
86:	learn: 14.4681230	total: 436ms	remaining: 65.2ms
87:	learn: 14.4088334	total: 441ms	remaining: 60.1ms
88:	learn: 14.3541312	total: 446ms	remaining: 55.1ms
89:	learn: 14.2923636	total: 450ms	remaining: 50ms
90:	learn: 14.2339259	total: 455ms	remaining: 45ms
91:	learn: 14.1439983	total: 460ms	remaining: 40ms
92:	learn: 14.0701371	total: 464ms	remaining: 34.9ms
93:	learn: 13.9770736	total: 469ms	remaining: 29.9ms
94:	learn: 13.9275801	total: 477ms	remaining: 25.1ms
95:	learn: 13.8717050	total: 485ms	remaining: 20.2ms
96:	learn: 13.7821340	total: 495ms	remaining: 15.3ms
97:	learn: 13.7383865	total: 500ms	remaining: 10.2ms
98:	learn: 13.6850693	total: 519ms	remaining: 5.24ms
99:	learn: 13.6273539	total: 524ms	remaining: 0us
0:	learn: 43.2118728	total: 3.93ms	remaining: 389ms
1:	learn: 42.3090111	total: 8.1ms	remaining: 397ms
2:	learn: 41.3060764	total: 12.1ms	remaining: 390ms
3:	learn: 40.3653958	total: 15.7ms	remaining: 376ms
4:	learn: 39.5006331	total: 19.6ms	remaining: 372ms
5:	learn: 38.6473041	total: 23.7ms	remaining: 372ms
6:	learn: 37.8560875	total: 27.5ms	remaining: 366ms
7:	learn: 37.0772701	total: 31.3ms	remaining: 360ms
8:	learn: 36.3260704	total: 35.2ms	remaining: 356ms
9:	learn: 35.7300393	total: 39.4ms	remaining: 354ms
10:	learn: 34.9336547	total: 43.3ms	remaining: 351ms
11:	learn: 34.1758190	total: 47.3ms	remaining: 347ms
12:	learn: 33.5120760	total: 51.1ms	remaining: 342ms
13:	learn: 32.8731142	total: 55.5ms	remaining: 341ms
14:	learn: 32.3579595	total: 59.9ms	remaining: 339ms
15:	learn: 31.7969963	total: 63.9ms	remaining: 336ms
16:	learn: 31.3472797	total: 67.7ms	remaining: 330ms
17:	learn: 30.7865884	total: 71.9ms	remaining: 328ms
18:	learn: 30.3876486	total: 76.3ms	remaining: 325ms
19:	learn: 29.8840575	total: 80.3ms	remaining: 321ms
20:	learn: 29.3584237	total: 84.3ms	remaining: 317ms
21:	learn: 28.9965200	total: 88.7ms	remaining: 314ms
22:	learn: 28.6117225	total: 93.4ms	remaining: 313ms
23:	learn: 28.1147832	total: 97.5ms	remaining: 309ms
24:	learn: 27.7857774	total: 102ms	remaining: 306ms
25:	learn: 27.3181226	total: 109ms	remaining: 309ms
26:	learn: 26.9019101	total: 116ms	remaining: 314ms
27:	learn: 26.6957004	total: 125ms	remaining: 321ms
28:	learn: 26.2816390	total: 132ms	remaining: 322ms
29:	learn: 25.9107534	total: 139ms	remaining: 324ms
30:	learn: 25.5773085	total: 144ms	remaining: 320ms
31:	learn: 25.1916035	total: 149ms	remaining: 316ms
32:	learn: 24.8819670	total: 154ms	remaining: 312ms
33:	learn: 24.5580488	total: 159ms	remaining: 308ms
34:	learn: 24.3088624	total: 164ms	remaining: 305ms
35:	learn: 23.9890893	total: 170ms	remaining: 301ms
36:	learn: 23.7266073	total: 174ms	remaining: 297ms
37:	learn: 23.4886046	total: 179ms	remaining: 293ms
38:	learn: 23.2786313	total: 184ms	remaining: 288ms
39:	learn: 23.0060540	total: 189ms	remaining: 283ms
40:	learn: 22.7848361	total: 193ms	remaining: 278ms
41:	learn: 22.5485511	total: 199ms	remaining: 275ms
42:	learn: 22.3113565	total: 204ms	remaining: 270ms
43:	learn: 22.1296084	total: 208ms	remaining: 265ms
44:	learn: 21.8514989	total: 212ms	remaining: 259ms
45:	learn: 21.6540201	total: 216ms	remaining: 254ms
46:	learn: 21.4203535	total: 220ms	remaining: 248ms
47:	learn: 21.2317196	total: 224ms	remaining: 242ms
48:	learn: 21.0547467	total: 228ms	remaining: 237ms
49:	learn: 20.9192535	total: 232ms	remaining: 232ms
50:	learn: 20.6975386	total: 236ms	remaining: 226ms
51:	learn: 20.5839720	total: 240ms	remaining: 221ms
52:	learn: 20.4528901	total: 243ms	remaining: 216ms
53:	learn: 20.3392419	total: 247ms	remaining: 211ms
54:	learn: 20.1518693	total: 251ms	remaining: 205ms
55:	learn: 19.9928770	total: 255ms	remaining: 201ms
56:	learn: 19.8042028	total: 259ms	remaining: 195ms
57:	learn: 19.7000879	total: 263ms	remaining: 190ms
58:	learn: 19.5524154	total: 267ms	remaining: 185ms
59:	learn: 19.4366908	total: 271ms	remaining: 181ms
60:	learn: 19.2739134	total: 275ms	remaining: 176ms
61:	learn: 19.1499266	total: 280ms	remaining: 171ms
62:	learn: 18.9948972	total: 284ms	remaining: 167ms
63:	learn: 18.8952299	total: 289ms	remaining: 162ms
64:	learn: 18.7545430	total: 293ms	remaining: 158ms
65:	learn: 18.6315116	total: 297ms	remaining: 153ms
66:	learn: 18.5164994	total: 302ms	remaining: 149ms
67:	learn: 18.3983038	total: 308ms	remaining: 145ms
68:	learn: 18.2803212	total: 315ms	remaining: 141ms
69:	learn: 18.1738467	total: 322ms	remaining: 138ms
70:	learn: 18.0884235	total: 330ms	remaining: 135ms
71:	learn: 18.0129445	total: 338ms	remaining: 131ms
72:	learn: 17.8582158	total: 343ms	remaining: 127ms
73:	learn: 17.7473705	total: 348ms	remaining: 122ms
74:	learn: 17.6431421	total: 353ms	remaining: 118ms
75:	learn: 17.5398511	total: 358ms	remaining: 113ms
76:	learn: 17.4404598	total: 363ms	remaining: 109ms
77:	learn: 17.3477525	total: 369ms	remaining: 104ms
78:	learn: 17.2283831	total: 374ms	remaining: 99.4ms
79:	learn: 17.0767035	total: 380ms	remaining: 95ms
80:	learn: 16.9732705	total: 385ms	remaining: 90.4ms
81:	learn: 16.8927449	total: 391ms	remaining: 85.8ms
82:	learn: 16.8145625	total: 396ms	remaining: 81.1ms
83:	learn: 16.7290845	total: 401ms	remaining: 76.4ms
84:	learn: 16.6661414	total: 407ms	remaining: 71.8ms
85:	learn: 16.5875575	total: 411ms	remaining: 66.9ms
86:	learn: 16.4578580	total: 415ms	remaining: 62ms
87:	learn: 16.4243550	total: 419ms	remaining: 57.1ms
88:	learn: 16.3251337	total: 422ms	remaining: 52.2ms
89:	learn: 16.2516385	total: 426ms	remaining: 47.4ms
90:	learn: 16.1226518	total: 430ms	remaining: 42.6ms
91:	learn: 16.0718308	total: 434ms	remaining: 37.7ms
92:	learn: 15.9636735	total: 438ms	remaining: 32.9ms
93:	learn: 15.8923693	total: 442ms	remaining: 28.2ms
94:	learn: 15.8270425	total: 446ms	remaining: 23.5ms
95:	learn: 15.7449077	total: 450ms	remaining: 18.7ms
96:	learn: 15.6978936	total: 453ms	remaining: 14ms
97:	learn: 15.6527285	total: 458ms	remaining: 9.35ms
98:	learn: 15.5557320	total: 462ms	remaining: 4.67ms
99:	learn: 15.4399171	total: 466ms	remaining: 0us
0:	learn: 46.7092506	total: 5.54ms	remaining: 548ms
1:	learn: 45.8266821	total: 10.7ms	remaining: 523ms
2:	learn: 45.0052023	total: 15.7ms	remaining: 506ms
3:	learn: 44.3828795	total: 21ms	remaining: 505ms
4:	learn: 43.7255353	total: 26.4ms	remaining: 502ms
5:	learn: 43.1663831	total: 31.4ms	remaining: 491ms
6:	learn: 42.3875189	total: 36.7ms	remaining: 487ms
7:	learn: 41.7839075	total: 41.7ms	remaining: 479ms
8:	learn: 41.0740108	total: 46.4ms	remaining: 469ms
9:	learn: 40.3846647	total: 52ms	remaining: 468ms
10:	learn: 39.8821046	total: 57.3ms	remaining: 463ms
11:	learn: 39.1807254	total: 62ms	remaining: 455ms
12:	learn: 38.7153028	total: 65.7ms	remaining: 440ms
13:	learn: 38.0474495	total: 69.5ms	remaining: 427ms
14:	learn: 37.3844461	total: 73.4ms	remaining: 416ms
15:	learn: 36.9210704	total: 77.6ms	remaining: 408ms
16:	learn: 36.3160964	total: 82ms	remaining: 400ms
17:	learn: 35.8915826	total: 85.9ms	remaining: 391ms
18:	learn: 35.5519989	total: 89.8ms	remaining: 383ms
19:	learn: 35.1437045	total: 94ms	remaining: 376ms
20:	learn: 34.6387799	total: 97.7ms	remaining: 368ms
21:	learn: 34.2437068	total: 101ms	remaining: 360ms
22:	learn: 33.8262100	total: 105ms	remaining: 353ms
23:	learn: 33.4683000	total: 109ms	remaining: 346ms
24:	learn: 32.9996389	total: 113ms	remaining: 339ms
25:	learn: 32.6942147	total: 117ms	remaining: 333ms
26:	learn: 32.3016096	total: 121ms	remaining: 326ms
27:	learn: 31.9517346	total: 124ms	remaining: 320ms
28:	learn: 31.5277387	total: 129ms	remaining: 315ms
29:	learn: 31.2545365	total: 133ms	remaining: 310ms
30:	learn: 31.0510813	total: 137ms	remaining: 305ms
31:	learn: 30.6383830	total: 141ms	remaining: 299ms
32:	learn: 30.2800150	total: 145ms	remaining: 295ms
33:	learn: 29.9559797	total: 150ms	remaining: 292ms
34:	learn: 29.5802745	total: 155ms	remaining: 288ms
35:	learn: 29.2605111	total: 159ms	remaining: 283ms
36:	learn: 28.9582434	total: 164ms	remaining: 279ms
37:	learn: 28.6149387	total: 168ms	remaining: 274ms
38:	learn: 28.3980091	total: 173ms	remaining: 270ms
39:	learn: 28.1704520	total: 178ms	remaining: 267ms
40:	learn: 27.8881319	total: 186ms	remaining: 268ms
41:	learn: 27.5805731	total: 194ms	remaining: 268ms
42:	learn: 27.3520567	total: 202ms	remaining: 268ms
43:	learn: 27.1039679	total: 210ms	remaining: 267ms
44:	learn: 26.8472623	total: 215ms	remaining: 262ms
45:	learn: 26.5757869	total: 220ms	remaining: 258ms
46:	learn: 26.4579118	total: 225ms	remaining: 253ms
47:	learn: 26.1279008	total: 229ms	remaining: 248ms
48:	learn: 25.8503346	total: 234ms	remaining: 244ms
49:	learn: 25.7039015	total: 239ms	remaining: 239ms
50:	learn: 25.4317154	total: 244ms	remaining: 235ms
51:	learn: 25.3028008	total: 249ms	remaining: 230ms
52:	learn: 25.1906194	total: 254ms	remaining: 225ms
53:	learn: 25.0082790	total: 260ms	remaining: 221ms
54:	learn: 24.8264791	total: 264ms	remaining: 216ms
55:	learn: 24.5961365	total: 270ms	remaining: 212ms
56:	learn: 24.4007690	total: 276ms	remaining: 208ms
57:	learn: 24.2476228	total: 281ms	remaining: 203ms
58:	learn: 23.9582465	total: 285ms	remaining: 198ms
59:	learn: 23.7247243	total: 289ms	remaining: 193ms
60:	learn: 23.5379970	total: 293ms	remaining: 187ms
61:	learn: 23.3908530	total: 297ms	remaining: 182ms
62:	learn: 23.2123241	total: 301ms	remaining: 177ms
63:	learn: 23.1010345	total: 304ms	remaining: 171ms
64:	learn: 22.9032423	total: 308ms	remaining: 166ms
65:	learn: 22.7815198	total: 312ms	remaining: 161ms
66:	learn: 22.6325063	total: 316ms	remaining: 156ms
67:	learn: 22.5406071	total: 320ms	remaining: 151ms
68:	learn: 22.4413332	total: 324ms	remaining: 146ms
69:	learn: 22.3005609	total: 328ms	remaining: 141ms
70:	learn: 22.1779345	total: 332ms	remaining: 136ms
71:	learn: 22.0491576	total: 336ms	remaining: 131ms
72:	learn: 21.9379106	total: 340ms	remaining: 126ms
73:	learn: 21.7597096	total: 345ms	remaining: 121ms
74:	learn: 21.6042300	total: 349ms	remaining: 116ms
75:	learn: 21.4644642	total: 353ms	remaining: 111ms
76:	learn: 21.3811287	total: 357ms	remaining: 107ms
77:	learn: 21.3089276	total: 361ms	remaining: 102ms
78:	learn: 21.1654429	total: 366ms	remaining: 97.3ms
79:	learn: 20.9602460	total: 371ms	remaining: 92.6ms
80:	learn: 20.7959461	total: 376ms	remaining: 88.2ms
81:	learn: 20.5861156	total: 383ms	remaining: 84.1ms
82:	learn: 20.5120680	total: 391ms	remaining: 80ms
83:	learn: 20.3997233	total: 398ms	remaining: 75.8ms
84:	learn: 20.2499469	total: 406ms	remaining: 71.6ms
85:	learn: 20.1117768	total: 411ms	remaining: 66.8ms
86:	learn: 20.0617643	total: 416ms	remaining: 62.1ms
87:	learn: 19.9609182	total: 421ms	remaining: 57.4ms
88:	learn: 19.8763814	total: 426ms	remaining: 52.6ms
89:	learn: 19.7843516	total: 431ms	remaining: 47.9ms
90:	learn: 19.6926200	total: 436ms	remaining: 43.1ms
91:	learn: 19.5686774	total: 441ms	remaining: 38.3ms
92:	learn: 19.4727236	total: 446ms	remaining: 33.6ms
93:	learn: 19.3780174	total: 451ms	remaining: 28.8ms
94:	learn: 19.2840650	total: 456ms	remaining: 24ms
95:	learn: 19.1747368	total: 461ms	remaining: 19.2ms
96:	learn: 19.1273306	total: 465ms	remaining: 14.4ms
97:	learn: 19.0413946	total: 471ms	remaining: 9.6ms
98:	learn: 18.8980682	total: 476ms	remaining: 4.81ms
99:	learn: 18.7799962	total: 481ms	remaining: 0us
0:	learn: 46.4426352	total: 4.17ms	remaining: 412ms
1:	learn: 45.5770653	total: 8.92ms	remaining: 437ms
2:	learn: 44.6956685	total: 12.6ms	remaining: 407ms
3:	learn: 43.9934709	total: 16.2ms	remaining: 388ms
4:	learn: 43.3008183	total: 19.9ms	remaining: 378ms
5:	learn: 42.7510022	total: 24.2ms	remaining: 379ms
6:	learn: 42.0237555	total: 28.5ms	remaining: 379ms
7:	learn: 41.5354996	total: 32.8ms	remaining: 377ms
8:	learn: 41.0264055	total: 37.2ms	remaining: 376ms
9:	learn: 40.5267003	total: 41.5ms	remaining: 374ms
10:	learn: 39.8363942	total: 45.8ms	remaining: 371ms
11:	learn: 39.2014089	total: 50.2ms	remaining: 368ms
12:	learn: 38.7943524	total: 54.6ms	remaining: 366ms
13:	learn: 38.1664113	total: 63.3ms	remaining: 389ms
14:	learn: 37.7492773	total: 70.7ms	remaining: 401ms
15:	learn: 37.2369693	total: 78.7ms	remaining: 413ms
16:	learn: 36.6953383	total: 84.4ms	remaining: 412ms
17:	learn: 36.3580916	total: 90.4ms	remaining: 412ms
18:	learn: 35.8637745	total: 95.6ms	remaining: 408ms
19:	learn: 35.4299153	total: 101ms	remaining: 403ms
20:	learn: 34.8794879	total: 106ms	remaining: 398ms
21:	learn: 34.3253348	total: 111ms	remaining: 393ms
22:	learn: 33.9307096	total: 116ms	remaining: 388ms
23:	learn: 33.5952896	total: 121ms	remaining: 383ms
24:	learn: 33.1314051	total: 126ms	remaining: 378ms
25:	learn: 32.8502968	total: 131ms	remaining: 373ms
26:	learn: 32.4430184	total: 136ms	remaining: 368ms
27:	learn: 32.0721224	total: 141ms	remaining: 362ms
28:	learn: 31.7977479	total: 146ms	remaining: 357ms
29:	learn: 31.3999469	total: 151ms	remaining: 351ms
30:	learn: 31.1179360	total: 156ms	remaining: 348ms
31:	learn: 30.7712852	total: 162ms	remaining: 344ms
32:	learn: 30.2912977	total: 166ms	remaining: 337ms
33:	learn: 29.9920376	total: 170ms	remaining: 330ms
34:	learn: 29.6637918	total: 173ms	remaining: 322ms
35:	learn: 29.3522959	total: 177ms	remaining: 315ms
36:	learn: 29.0482516	total: 181ms	remaining: 308ms
37:	learn: 28.7956656	total: 185ms	remaining: 301ms
38:	learn: 28.4845569	total: 188ms	remaining: 295ms
39:	learn: 28.3038067	total: 192ms	remaining: 288ms
40:	learn: 28.1185263	total: 196ms	remaining: 282ms
41:	learn: 27.8012563	total: 200ms	remaining: 276ms
42:	learn: 27.5184259	total: 204ms	remaining: 270ms
43:	learn: 27.3019892	total: 208ms	remaining: 265ms
44:	learn: 27.0494594	total: 212ms	remaining: 259ms
45:	learn: 26.8054317	total: 215ms	remaining: 253ms
46:	learn: 26.6554974	total: 220ms	remaining: 248ms
47:	learn: 26.3568392	total: 223ms	remaining: 242ms
48:	learn: 26.1045872	total: 227ms	remaining: 236ms
49:	learn: 25.9807311	total: 230ms	remaining: 230ms
50:	learn: 25.7104640	total: 235ms	remaining: 225ms
51:	learn: 25.6019547	total: 239ms	remaining: 221ms
52:	learn: 25.5011930	total: 243ms	remaining: 216ms
53:	learn: 25.2291639	total: 247ms	remaining: 211ms
54:	learn: 24.9952313	total: 252ms	remaining: 206ms
55:	learn: 24.8195031	total: 256ms	remaining: 201ms
56:	learn: 24.5591684	total: 260ms	remaining: 196ms
57:	learn: 24.4163080	total: 264ms	remaining: 191ms
58:	learn: 24.2328188	total: 271ms	remaining: 189ms
59:	learn: 24.0087408	total: 279ms	remaining: 186ms
60:	learn: 23.8918912	total: 287ms	remaining: 184ms
61:	learn: 23.7537024	total: 294ms	remaining: 180ms
62:	learn: 23.5466923	total: 302ms	remaining: 177ms
63:	learn: 23.3903724	total: 307ms	remaining: 173ms
64:	learn: 23.3257785	total: 312ms	remaining: 168ms
65:	learn: 23.2839464	total: 317ms	remaining: 163ms
66:	learn: 23.1476036	total: 322ms	remaining: 159ms
67:	learn: 22.9480972	total: 328ms	remaining: 154ms
68:	learn: 22.7537529	total: 333ms	remaining: 150ms
69:	learn: 22.6209544	total: 338ms	remaining: 145ms
70:	learn: 22.5058753	total: 343ms	remaining: 140ms
71:	learn: 22.4068656	total: 349ms	remaining: 136ms
72:	learn: 22.3254150	total: 353ms	remaining: 131ms
73:	learn: 22.1784174	total: 359ms	remaining: 126ms
74:	learn: 22.1095388	total: 364ms	remaining: 121ms
75:	learn: 21.9958083	total: 369ms	remaining: 117ms
76:	learn: 21.8728475	total: 374ms	remaining: 112ms
77:	learn: 21.7975828	total: 378ms	remaining: 107ms
78:	learn: 21.7133267	total: 381ms	remaining: 101ms
79:	learn: 21.6023410	total: 385ms	remaining: 96.2ms
80:	learn: 21.5254474	total: 390ms	remaining: 91.4ms
81:	learn: 21.3307418	total: 394ms	remaining: 86.4ms
82:	learn: 21.2411976	total: 398ms	remaining: 81.5ms
83:	learn: 21.1091386	total: 402ms	remaining: 76.5ms
84:	learn: 21.0526747	total: 405ms	remaining: 71.5ms
85:	learn: 20.9083817	total: 410ms	remaining: 66.7ms
86:	learn: 20.8767767	total: 414ms	remaining: 61.9ms
87:	learn: 20.8143988	total: 418ms	remaining: 57.1ms
88:	learn: 20.7127697	total: 423ms	remaining: 52.3ms
89:	learn: 20.6112504	total: 428ms	remaining: 47.5ms
90:	learn: 20.4609960	total: 432ms	remaining: 42.8ms
91:	learn: 20.3648890	total: 437ms	remaining: 38ms
92:	learn: 20.3052040	total: 442ms	remaining: 33.3ms
93:	learn: 20.2587865	total: 447ms	remaining: 28.5ms
94:	learn: 20.2096406	total: 452ms	remaining: 23.8ms
95:	learn: 20.1301385	total: 457ms	remaining: 19ms
96:	learn: 20.0401359	total: 462ms	remaining: 14.3ms
97:	learn: 19.9791591	total: 466ms	remaining: 9.52ms
98:	learn: 19.9237318	total: 472ms	remaining: 4.76ms
99:	learn: 19.8009190	total: 479ms	remaining: 0us
0:	learn: 46.9286701	total: 5.74ms	remaining: 568ms
1:	learn: 46.2851598	total: 10.5ms	remaining: 515ms
2:	learn: 45.4586007	total: 15.4ms	remaining: 498ms
3:	learn: 44.6581393	total: 21.2ms	remaining: 508ms
4:	learn: 43.8231644	total: 25.8ms	remaining: 490ms
5:	learn: 43.2906569	total: 31ms	remaining: 486ms
6:	learn: 42.5095813	total: 36.7ms	remaining: 488ms
7:	learn: 41.9310465	total: 41.9ms	remaining: 482ms
8:	learn: 41.2083262	total: 46.4ms	remaining: 469ms
9:	learn: 40.6852547	total: 50.3ms	remaining: 453ms
10:	learn: 39.9637018	total: 54.6ms	remaining: 442ms
11:	learn: 39.2804189	total: 59ms	remaining: 433ms
12:	learn: 38.8804017	total: 63.4ms	remaining: 424ms
13:	learn: 38.3826597	total: 67.4ms	remaining: 414ms
14:	learn: 37.9240424	total: 71.2ms	remaining: 403ms
15:	learn: 37.4312070	total: 74.9ms	remaining: 393ms
16:	learn: 36.8803673	total: 78.8ms	remaining: 385ms
17:	learn: 36.5496582	total: 82.7ms	remaining: 377ms
18:	learn: 36.2078375	total: 87.3ms	remaining: 372ms
19:	learn: 35.6806593	total: 91.9ms	remaining: 368ms
20:	learn: 35.1512154	total: 96.2ms	remaining: 362ms
21:	learn: 34.6013055	total: 101ms	remaining: 356ms
22:	learn: 34.2380102	total: 105ms	remaining: 351ms
23:	learn: 33.8720185	total: 110ms	remaining: 348ms
24:	learn: 33.4426135	total: 114ms	remaining: 343ms
25:	learn: 33.1471186	total: 119ms	remaining: 339ms
26:	learn: 32.8018279	total: 124ms	remaining: 336ms
27:	learn: 32.4498594	total: 129ms	remaining: 332ms
28:	learn: 31.9749480	total: 134ms	remaining: 328ms
29:	learn: 31.6470735	total: 138ms	remaining: 323ms
30:	learn: 31.4265242	total: 146ms	remaining: 325ms
31:	learn: 31.0753325	total: 153ms	remaining: 325ms
32:	learn: 30.7192494	total: 161ms	remaining: 328ms
33:	learn: 30.3547940	total: 169ms	remaining: 329ms
34:	learn: 30.1296593	total: 177ms	remaining: 328ms
35:	learn: 29.9367140	total: 182ms	remaining: 323ms
36:	learn: 29.6248477	total: 187ms	remaining: 318ms
37:	learn: 29.3156707	total: 192ms	remaining: 313ms
38:	learn: 29.1534039	total: 198ms	remaining: 309ms
39:	learn: 28.9351289	total: 203ms	remaining: 304ms
40:	learn: 28.7057685	total: 208ms	remaining: 299ms
41:	learn: 28.3132521	total: 213ms	remaining: 294ms
42:	learn: 28.0739054	total: 219ms	remaining: 290ms
43:	learn: 27.8135917	total: 223ms	remaining: 284ms
44:	learn: 27.5376804	total: 228ms	remaining: 279ms
45:	learn: 27.3195849	total: 233ms	remaining: 273ms
46:	learn: 27.1681104	total: 238ms	remaining: 268ms
47:	learn: 27.0122442	total: 243ms	remaining: 264ms
48:	learn: 26.7819409	total: 247ms	remaining: 257ms
49:	learn: 26.6429308	total: 251ms	remaining: 251ms
50:	learn: 26.3482899	total: 255ms	remaining: 245ms
51:	learn: 26.2432755	total: 259ms	remaining: 239ms
52:	learn: 26.0811102	total: 262ms	remaining: 233ms
53:	learn: 25.9398113	total: 266ms	remaining: 227ms
54:	learn: 25.7891395	total: 270ms	remaining: 221ms
55:	learn: 25.6185338	total: 274ms	remaining: 215ms
56:	learn: 25.3293977	total: 278ms	remaining: 210ms
57:	learn: 25.1918906	total: 282ms	remaining: 204ms
58:	learn: 25.0503990	total: 285ms	remaining: 198ms
59:	learn: 24.8225776	total: 289ms	remaining: 193ms
60:	learn: 24.5969153	total: 293ms	remaining: 187ms
61:	learn: 24.4657353	total: 297ms	remaining: 182ms
62:	learn: 24.2861000	total: 300ms	remaining: 176ms
63:	learn: 24.1719148	total: 304ms	remaining: 171ms
64:	learn: 24.0547875	total: 309ms	remaining: 166ms
65:	learn: 23.9156724	total: 313ms	remaining: 161ms
66:	learn: 23.7604012	total: 317ms	remaining: 156ms
67:	learn: 23.6265679	total: 322ms	remaining: 151ms
68:	learn: 23.5372255	total: 326ms	remaining: 146ms
69:	learn: 23.3286241	total: 330ms	remaining: 141ms
70:	learn: 23.1806465	total: 335ms	remaining: 137ms
71:	learn: 23.0652081	total: 339ms	remaining: 132ms
72:	learn: 22.9231023	total: 346ms	remaining: 128ms
73:	learn: 22.8020380	total: 353ms	remaining: 124ms
74:	learn: 22.6525036	total: 361ms	remaining: 120ms
75:	learn: 22.5616268	total: 369ms	remaining: 117ms
76:	learn: 22.4395250	total: 374ms	remaining: 112ms
77:	learn: 22.3732379	total: 380ms	remaining: 107ms
78:	learn: 22.2300874	total: 385ms	remaining: 102ms
79:	learn: 22.0209882	total: 390ms	remaining: 97.5ms
80:	learn: 21.8703996	total: 395ms	remaining: 92.7ms
81:	learn: 21.7222039	total: 400ms	remaining: 87.9ms
82:	learn: 21.5903685	total: 406ms	remaining: 83.1ms
83:	learn: 21.4915083	total: 411ms	remaining: 78.2ms
84:	learn: 21.3320736	total: 416ms	remaining: 73.4ms
85:	learn: 21.2295060	total: 421ms	remaining: 68.5ms
86:	learn: 21.1983620	total: 425ms	remaining: 63.5ms
87:	learn: 21.1404156	total: 430ms	remaining: 58.6ms
88:	learn: 21.0684840	total: 435ms	remaining: 53.8ms
89:	learn: 20.9269197	total: 440ms	remaining: 48.9ms
90:	learn: 20.8614606	total: 444ms	remaining: 43.9ms
91:	learn: 20.6642996	total: 448ms	remaining: 38.9ms
92:	learn: 20.5612705	total: 451ms	remaining: 34ms
93:	learn: 20.5264997	total: 456ms	remaining: 29.1ms
94:	learn: 20.4532331	total: 459ms	remaining: 24.2ms
95:	learn: 20.3700696	total: 463ms	remaining: 19.3ms
96:	learn: 20.2671574	total: 467ms	remaining: 14.4ms
97:	learn: 20.1761207	total: 471ms	remaining: 9.62ms
98:	learn: 20.0533799	total: 475ms	remaining: 4.79ms
99:	learn: 19.9890055	total: 479ms	remaining: 0us
0:	learn: 27.5585353	total: 4.91ms	remaining: 486ms
1:	learn: 27.1656995	total: 9.45ms	remaining: 463ms
2:	learn: 26.8590175	total: 17.3ms	remaining: 559ms
3:	learn: 26.5818406	total: 24.2ms	remaining: 580ms
4:	learn: 26.1148663	total: 33.1ms	remaining: 629ms
5:	learn: 25.7690484	total: 38.9ms	remaining: 610ms
6:	learn: 25.3489206	total: 46.1ms	remaining: 613ms
7:	learn: 24.9542406	total: 51ms	remaining: 586ms
8:	learn: 24.6777517	total: 56.4ms	remaining: 571ms
9:	learn: 24.3242344	total: 61.5ms	remaining: 553ms
10:	learn: 24.0383073	total: 66.4ms	remaining: 537ms
11:	learn: 23.7383420	total: 71.9ms	remaining: 527ms
12:	learn: 23.3461670	total: 76.9ms	remaining: 514ms
13:	learn: 23.0928636	total: 81.7ms	remaining: 502ms
14:	learn: 22.8770414	total: 86.7ms	remaining: 491ms
15:	learn: 22.6323214	total: 92.1ms	remaining: 483ms
16:	learn: 22.3597072	total: 97ms	remaining: 473ms
17:	learn: 22.1079813	total: 102ms	remaining: 463ms
18:	learn: 21.8421199	total: 107ms	remaining: 456ms
19:	learn: 21.6576508	total: 112ms	remaining: 450ms
20:	learn: 21.4301268	total: 116ms	remaining: 437ms
21:	learn: 21.2287388	total: 120ms	remaining: 427ms
22:	learn: 21.0553872	total: 124ms	remaining: 417ms
23:	learn: 20.8977091	total: 128ms	remaining: 407ms
24:	learn: 20.6619051	total: 132ms	remaining: 397ms
25:	learn: 20.5040955	total: 137ms	remaining: 389ms
26:	learn: 20.3181195	total: 141ms	remaining: 381ms
27:	learn: 20.0869436	total: 145ms	remaining: 373ms
28:	learn: 19.9375985	total: 149ms	remaining: 364ms
29:	learn: 19.8247516	total: 153ms	remaining: 357ms
30:	learn: 19.6261697	total: 156ms	remaining: 348ms
31:	learn: 19.4547236	total: 161ms	remaining: 341ms
32:	learn: 19.3157092	total: 164ms	remaining: 334ms
33:	learn: 19.1561419	total: 168ms	remaining: 327ms
34:	learn: 19.0453620	total: 173ms	remaining: 321ms
35:	learn: 18.8738574	total: 177ms	remaining: 315ms
36:	learn: 18.7072907	total: 181ms	remaining: 309ms
37:	learn: 18.5877943	total: 185ms	remaining: 303ms
38:	learn: 18.4436380	total: 190ms	remaining: 296ms
39:	learn: 18.3463356	total: 194ms	remaining: 291ms
40:	learn: 18.2008059	total: 198ms	remaining: 285ms
41:	learn: 18.0582079	total: 202ms	remaining: 279ms
42:	learn: 17.8891982	total: 206ms	remaining: 273ms
43:	learn: 17.7332246	total: 209ms	remaining: 267ms
44:	learn: 17.6206421	total: 214ms	remaining: 261ms
45:	learn: 17.4982800	total: 218ms	remaining: 255ms
46:	learn: 17.3970150	total: 221ms	remaining: 250ms
47:	learn: 17.3058203	total: 226ms	remaining: 244ms
48:	learn: 17.1789256	total: 231ms	remaining: 240ms
49:	learn: 17.0916229	total: 235ms	remaining: 235ms
50:	learn: 16.9859820	total: 240ms	remaining: 230ms
51:	learn: 16.8995582	total: 244ms	remaining: 225ms
52:	learn: 16.8137014	total: 248ms	remaining: 220ms
53:	learn: 16.7021451	total: 253ms	remaining: 215ms
54:	learn: 16.5895582	total: 257ms	remaining: 210ms
55:	learn: 16.5015639	total: 263ms	remaining: 207ms
56:	learn: 16.4356637	total: 271ms	remaining: 204ms
57:	learn: 16.3514525	total: 282ms	remaining: 204ms
58:	learn: 16.2401369	total: 289ms	remaining: 201ms
59:	learn: 16.1293223	total: 297ms	remaining: 198ms
60:	learn: 16.0271167	total: 302ms	remaining: 193ms
61:	learn: 15.9126257	total: 308ms	remaining: 189ms
62:	learn: 15.8391096	total: 313ms	remaining: 184ms
63:	learn: 15.7441773	total: 319ms	remaining: 180ms
64:	learn: 15.6885195	total: 324ms	remaining: 175ms
65:	learn: 15.6052039	total: 329ms	remaining: 170ms
66:	learn: 15.5074202	total: 335ms	remaining: 165ms
67:	learn: 15.4054338	total: 340ms	remaining: 160ms
68:	learn: 15.2885714	total: 346ms	remaining: 155ms
69:	learn: 15.2157472	total: 351ms	remaining: 150ms
70:	learn: 15.1031554	total: 356ms	remaining: 145ms
71:	learn: 15.0237470	total: 361ms	remaining: 140ms
72:	learn: 14.9756825	total: 366ms	remaining: 135ms
73:	learn: 14.8840596	total: 372ms	remaining: 131ms
74:	learn: 14.8077061	total: 377ms	remaining: 126ms
75:	learn: 14.7444437	total: 383ms	remaining: 121ms
76:	learn: 14.6751720	total: 388ms	remaining: 116ms
77:	learn: 14.5830333	total: 392ms	remaining: 111ms
78:	learn: 14.5241206	total: 396ms	remaining: 105ms
79:	learn: 14.4892731	total: 400ms	remaining: 100ms
80:	learn: 14.4256605	total: 404ms	remaining: 94.8ms
81:	learn: 14.3666860	total: 408ms	remaining: 89.6ms
82:	learn: 14.2938372	total: 413ms	remaining: 84.6ms
83:	learn: 14.2161532	total: 417ms	remaining: 79.5ms
84:	learn: 14.1582910	total: 421ms	remaining: 74.3ms
85:	learn: 14.1029153	total: 426ms	remaining: 69.3ms
86:	learn: 14.0475835	total: 431ms	remaining: 64.3ms
87:	learn: 13.9892661	total: 435ms	remaining: 59.4ms
88:	learn: 13.9481628	total: 440ms	remaining: 54.4ms
89:	learn: 13.8483991	total: 444ms	remaining: 49.4ms
90:	learn: 13.7775614	total: 449ms	remaining: 44.4ms
91:	learn: 13.7304585	total: 453ms	remaining: 39.4ms
92:	learn: 13.6783381	total: 458ms	remaining: 34.5ms
93:	learn: 13.6356964	total: 466ms	remaining: 29.7ms
94:	learn: 13.5924371	total: 474ms	remaining: 24.9ms
95:	learn: 13.5400746	total: 483ms	remaining: 20.1ms
96:	learn: 13.4897333	total: 488ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 496ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 501ms	remaining: 5.06ms
99:	learn: 13.3082371	total: 506ms	remaining: 0us
0:	learn: 43.0395283	total: 4.19ms	remaining: 415ms
1:	learn: 42.1130223	total: 8.41ms	remaining: 412ms
2:	learn: 41.1753409	total: 12.5ms	remaining: 405ms
3:	learn: 40.3637444	total: 16.5ms	remaining: 396ms
4:	learn: 39.6508088	total: 20.2ms	remaining: 384ms
5:	learn: 38.7217934	total: 24.2ms	remaining: 380ms
6:	learn: 37.8538055	total: 28.3ms	remaining: 376ms
7:	learn: 36.9793574	total: 32.1ms	remaining: 370ms
8:	learn: 36.3076984	total: 36.4ms	remaining: 368ms
9:	learn: 35.6673160	total: 40.7ms	remaining: 366ms
10:	learn: 34.8889800	total: 45.3ms	remaining: 367ms
11:	learn: 34.1675517	total: 50ms	remaining: 366ms
12:	learn: 33.6779564	total: 54.1ms	remaining: 362ms
13:	learn: 33.0710039	total: 58.7ms	remaining: 361ms
14:	learn: 32.4966674	total: 62.7ms	remaining: 356ms
15:	learn: 31.9492856	total: 66.8ms	remaining: 351ms
16:	learn: 31.5108129	total: 71.3ms	remaining: 348ms
17:	learn: 30.9804023	total: 76.1ms	remaining: 347ms
18:	learn: 30.4169089	total: 80.5ms	remaining: 343ms
19:	learn: 29.8930375	total: 84.8ms	remaining: 339ms
20:	learn: 29.3974421	total: 89.5ms	remaining: 337ms
21:	learn: 28.8792307	total: 94.2ms	remaining: 334ms
22:	learn: 28.3894474	total: 98.5ms	remaining: 330ms
23:	learn: 27.9921276	total: 103ms	remaining: 326ms
24:	learn: 27.6158887	total: 111ms	remaining: 332ms
25:	learn: 27.2866950	total: 117ms	remaining: 334ms
26:	learn: 26.8770708	total: 126ms	remaining: 341ms
27:	learn: 26.6233005	total: 132ms	remaining: 339ms
28:	learn: 26.2921934	total: 139ms	remaining: 341ms
29:	learn: 25.9156920	total: 144ms	remaining: 337ms
30:	learn: 25.5311106	total: 146ms	remaining: 326ms
31:	learn: 25.2178997	total: 152ms	remaining: 323ms
32:	learn: 24.8572196	total: 157ms	remaining: 320ms
33:	learn: 24.5849710	total: 163ms	remaining: 316ms
34:	learn: 24.2209190	total: 168ms	remaining: 312ms
35:	learn: 23.8708250	total: 173ms	remaining: 307ms
36:	learn: 23.5325279	total: 178ms	remaining: 303ms
37:	learn: 23.2116148	total: 183ms	remaining: 299ms
38:	learn: 22.9696787	total: 188ms	remaining: 294ms
39:	learn: 22.7936783	total: 193ms	remaining: 289ms
40:	learn: 22.6228847	total: 198ms	remaining: 285ms
41:	learn: 22.3691527	total: 204ms	remaining: 281ms
42:	learn: 22.1002173	total: 208ms	remaining: 276ms
43:	learn: 21.9157268	total: 212ms	remaining: 269ms
44:	learn: 21.7229102	total: 216ms	remaining: 264ms
45:	learn: 21.4642005	total: 220ms	remaining: 258ms
46:	learn: 21.3029442	total: 224ms	remaining: 252ms
47:	learn: 21.1469792	total: 227ms	remaining: 246ms
48:	learn: 20.9458235	total: 231ms	remaining: 241ms
49:	learn: 20.7335242	total: 235ms	remaining: 235ms
50:	learn: 20.5440269	total: 239ms	remaining: 230ms
51:	learn: 20.3661449	total: 243ms	remaining: 225ms
52:	learn: 20.2158134	total: 247ms	remaining: 219ms
53:	learn: 19.9934873	total: 252ms	remaining: 214ms
54:	learn: 19.7879739	total: 256ms	remaining: 209ms
55:	learn: 19.6630460	total: 260ms	remaining: 205ms
56:	learn: 19.5152729	total: 265ms	remaining: 200ms
57:	learn: 19.3581128	total: 269ms	remaining: 195ms
58:	learn: 19.2209303	total: 274ms	remaining: 191ms
59:	learn: 19.0965248	total: 279ms	remaining: 186ms
60:	learn: 19.0035954	total: 283ms	remaining: 181ms
61:	learn: 18.8554149	total: 288ms	remaining: 176ms
62:	learn: 18.7095427	total: 292ms	remaining: 171ms
63:	learn: 18.5751494	total: 296ms	remaining: 166ms
64:	learn: 18.4678251	total: 300ms	remaining: 162ms
65:	learn: 18.3500325	total: 309ms	remaining: 159ms
66:	learn: 18.2088983	total: 317ms	remaining: 156ms
67:	learn: 18.0737705	total: 325ms	remaining: 153ms
68:	learn: 17.9325058	total: 344ms	remaining: 154ms
69:	learn: 17.8003911	total: 349ms	remaining: 150ms
70:	learn: 17.7385366	total: 354ms	remaining: 145ms
71:	learn: 17.6106998	total: 359ms	remaining: 140ms
72:	learn: 17.4816270	total: 364ms	remaining: 135ms
73:	learn: 17.4025554	total: 370ms	remaining: 130ms
74:	learn: 17.2902108	total: 375ms	remaining: 125ms
75:	learn: 17.2158048	total: 380ms	remaining: 120ms
76:	learn: 17.1261053	total: 385ms	remaining: 115ms
77:	learn: 17.0308917	total: 390ms	remaining: 110ms
78:	learn: 16.9546705	total: 396ms	remaining: 105ms
79:	learn: 16.8319165	total: 401ms	remaining: 100ms
80:	learn: 16.7687017	total: 406ms	remaining: 95.2ms
81:	learn: 16.6972326	total: 410ms	remaining: 90ms
82:	learn: 16.6124580	total: 414ms	remaining: 84.8ms
83:	learn: 16.4999052	total: 418ms	remaining: 79.7ms
84:	learn: 16.4302484	total: 422ms	remaining: 74.6ms
85:	learn: 16.3201363	total: 427ms	remaining: 69.5ms
86:	learn: 16.2534314	total: 430ms	remaining: 64.3ms
87:	learn: 16.1720485	total: 434ms	remaining: 59.2ms
88:	learn: 16.0625751	total: 438ms	remaining: 54.2ms
89:	learn: 15.9135088	total: 443ms	remaining: 49.2ms
90:	learn: 15.8658863	total: 447ms	remaining: 44.2ms
91:	learn: 15.8066805	total: 451ms	remaining: 39.2ms
92:	learn: 15.7412103	total: 455ms	remaining: 34.2ms
93:	learn: 15.6542776	total: 459ms	remaining: 29.3ms
94:	learn: 15.5760334	total: 463ms	remaining: 24.4ms
95:	learn: 15.5434131	total: 467ms	remaining: 19.5ms
96:	learn: 15.4709561	total: 472ms	remaining: 14.6ms
97:	learn: 15.4449618	total: 477ms	remaining: 9.73ms
98:	learn: 15.3752761	total: 481ms	remaining: 4.86ms
99:	learn: 15.3106595	total: 486ms	remaining: 0us
0:	learn: 46.7142257	total: 5.45ms	remaining: 540ms
1:	learn: 45.7634153	total: 11ms	remaining: 541ms
2:	learn: 45.0054253	total: 16.2ms	remaining: 522ms
3:	learn: 44.2120432	total: 21ms	remaining: 504ms
4:	learn: 43.3960472	total: 26.5ms	remaining: 504ms
5:	learn: 42.8588120	total: 31.6ms	remaining: 495ms
6:	learn: 41.9533701	total: 36.9ms	remaining: 491ms
7:	learn: 41.2745030	total: 42.5ms	remaining: 488ms
8:	learn: 40.6797495	total: 47.3ms	remaining: 478ms
9:	learn: 39.9899571	total: 52.8ms	remaining: 475ms
10:	learn: 39.4682100	total: 58.1ms	remaining: 470ms
11:	learn: 39.0305595	total: 62.5ms	remaining: 459ms
12:	learn: 38.4200417	total: 66.7ms	remaining: 446ms
13:	learn: 37.8425194	total: 70.5ms	remaining: 433ms
14:	learn: 37.4203127	total: 74.4ms	remaining: 421ms
15:	learn: 36.9917688	total: 78.8ms	remaining: 414ms
16:	learn: 36.5544138	total: 83ms	remaining: 405ms
17:	learn: 36.0727019	total: 87.1ms	remaining: 397ms
18:	learn: 35.4835715	total: 91.1ms	remaining: 388ms
19:	learn: 34.9865654	total: 95.3ms	remaining: 381ms
20:	learn: 34.6063373	total: 99.5ms	remaining: 374ms
21:	learn: 34.0997289	total: 104ms	remaining: 367ms
22:	learn: 33.7313171	total: 108ms	remaining: 361ms
23:	learn: 33.3582000	total: 112ms	remaining: 355ms
24:	learn: 32.9432456	total: 116ms	remaining: 348ms
25:	learn: 32.5220888	total: 120ms	remaining: 342ms
26:	learn: 32.2172292	total: 124ms	remaining: 336ms
27:	learn: 31.8972904	total: 129ms	remaining: 331ms
28:	learn: 31.6405350	total: 133ms	remaining: 326ms
29:	learn: 31.4167702	total: 138ms	remaining: 321ms
30:	learn: 30.8541961	total: 140ms	remaining: 311ms
31:	learn: 30.5572111	total: 144ms	remaining: 307ms
32:	learn: 30.1700399	total: 150ms	remaining: 304ms
33:	learn: 29.8537271	total: 154ms	remaining: 299ms
34:	learn: 29.6192540	total: 159ms	remaining: 295ms
35:	learn: 29.3276362	total: 164ms	remaining: 292ms
36:	learn: 28.9985179	total: 172ms	remaining: 292ms
37:	learn: 28.7046880	total: 180ms	remaining: 293ms
38:	learn: 28.4412677	total: 189ms	remaining: 295ms
39:	learn: 28.1277292	total: 198ms	remaining: 297ms
40:	learn: 27.9000750	total: 205ms	remaining: 294ms
41:	learn: 27.5433162	total: 210ms	remaining: 291ms
42:	learn: 27.2493285	total: 216ms	remaining: 286ms
43:	learn: 26.9576632	total: 218ms	remaining: 278ms
44:	learn: 26.6177110	total: 224ms	remaining: 274ms
45:	learn: 26.2812456	total: 231ms	remaining: 271ms
46:	learn: 26.0803859	total: 236ms	remaining: 266ms
47:	learn: 25.9543581	total: 242ms	remaining: 262ms
48:	learn: 25.7951582	total: 247ms	remaining: 257ms
49:	learn: 25.6548184	total: 254ms	remaining: 254ms
50:	learn: 25.4010843	total: 259ms	remaining: 249ms
51:	learn: 24.9773937	total: 265ms	remaining: 244ms
52:	learn: 24.8026156	total: 271ms	remaining: 240ms
53:	learn: 24.5568053	total: 275ms	remaining: 234ms
54:	learn: 24.2281839	total: 280ms	remaining: 229ms
55:	learn: 23.9202795	total: 284ms	remaining: 223ms
56:	learn: 23.7625591	total: 289ms	remaining: 218ms
57:	learn: 23.5429721	total: 293ms	remaining: 212ms
58:	learn: 23.3175893	total: 297ms	remaining: 206ms
59:	learn: 23.2035130	total: 301ms	remaining: 201ms
60:	learn: 23.0232450	total: 306ms	remaining: 195ms
61:	learn: 22.8384958	total: 310ms	remaining: 190ms
62:	learn: 22.6499902	total: 314ms	remaining: 185ms
63:	learn: 22.4577426	total: 318ms	remaining: 179ms
64:	learn: 22.3333158	total: 323ms	remaining: 174ms
65:	learn: 22.2064131	total: 328ms	remaining: 169ms
66:	learn: 22.1434971	total: 332ms	remaining: 164ms
67:	learn: 21.9596519	total: 337ms	remaining: 158ms
68:	learn: 21.8475576	total: 342ms	remaining: 154ms
69:	learn: 21.6954745	total: 346ms	remaining: 148ms
70:	learn: 21.5635976	total: 350ms	remaining: 143ms
71:	learn: 21.4588506	total: 355ms	remaining: 138ms
72:	learn: 21.3527268	total: 362ms	remaining: 134ms
73:	learn: 21.2661288	total: 369ms	remaining: 130ms
74:	learn: 21.1817333	total: 377ms	remaining: 126ms
75:	learn: 21.0527553	total: 385ms	remaining: 122ms
76:	learn: 20.9229021	total: 393ms	remaining: 117ms
77:	learn: 20.7563946	total: 398ms	remaining: 112ms
78:	learn: 20.6569831	total: 403ms	remaining: 107ms
79:	learn: 20.4982663	total: 408ms	remaining: 102ms
80:	learn: 20.3185460	total: 413ms	remaining: 96.9ms
81:	learn: 20.2096241	total: 419ms	remaining: 91.9ms
82:	learn: 20.1274891	total: 424ms	remaining: 86.8ms
83:	learn: 20.0740139	total: 429ms	remaining: 81.8ms
84:	learn: 19.9630699	total: 434ms	remaining: 76.6ms
85:	learn: 19.8753899	total: 439ms	remaining: 71.5ms
86:	learn: 19.6563612	total: 445ms	remaining: 66.4ms
87:	learn: 19.4680232	total: 449ms	remaining: 61.3ms
88:	learn: 19.3503431	total: 455ms	remaining: 56.2ms
89:	learn: 19.2221379	total: 460ms	remaining: 51.1ms
90:	learn: 19.0732542	total: 465ms	remaining: 45.9ms
91:	learn: 18.9825190	total: 469ms	remaining: 40.8ms
92:	learn: 18.8839009	total: 473ms	remaining: 35.6ms
93:	learn: 18.8012219	total: 477ms	remaining: 30.4ms
94:	learn: 18.7172713	total: 481ms	remaining: 25.3ms
95:	learn: 18.6201170	total: 486ms	remaining: 20.2ms
96:	learn: 18.5318611	total: 490ms	remaining: 15.2ms
97:	learn: 18.3833356	total: 495ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 499ms	remaining: 5.04ms
99:	learn: 18.2227333	total: 504ms	remaining: 0us
0:	learn: 46.3764524	total: 5.11ms	remaining: 506ms
1:	learn: 45.5561269	total: 13.1ms	remaining: 642ms
2:	learn: 44.8811245	total: 20ms	remaining: 647ms
3:	learn: 44.0788617	total: 28.7ms	remaining: 688ms
4:	learn: 43.3619790	total: 34.5ms	remaining: 656ms
5:	learn: 42.6912112	total: 41.7ms	remaining: 653ms
6:	learn: 42.2292118	total: 47ms	remaining: 624ms
7:	learn: 41.7725191	total: 52.1ms	remaining: 599ms
8:	learn: 41.1676614	total: 57.9ms	remaining: 585ms
9:	learn: 40.5771076	total: 62.5ms	remaining: 562ms
10:	learn: 39.8343757	total: 67.6ms	remaining: 547ms
11:	learn: 39.3761142	total: 72.8ms	remaining: 534ms
12:	learn: 38.5254692	total: 77.9ms	remaining: 521ms
13:	learn: 37.9629555	total: 83.3ms	remaining: 512ms
14:	learn: 37.4418438	total: 88.6ms	remaining: 502ms
15:	learn: 37.0507283	total: 93.5ms	remaining: 491ms
16:	learn: 36.6264217	total: 98ms	remaining: 478ms
17:	learn: 36.1114940	total: 103ms	remaining: 471ms
18:	learn: 35.7193862	total: 109ms	remaining: 465ms
19:	learn: 35.3301177	total: 113ms	remaining: 453ms
20:	learn: 35.0598280	total: 117ms	remaining: 441ms
21:	learn: 34.5469736	total: 121ms	remaining: 430ms
22:	learn: 34.2064215	total: 125ms	remaining: 420ms
23:	learn: 33.7280710	total: 129ms	remaining: 409ms
24:	learn: 33.3282940	total: 134ms	remaining: 401ms
25:	learn: 32.8478961	total: 138ms	remaining: 392ms
26:	learn: 32.5722164	total: 142ms	remaining: 384ms
27:	learn: 32.2457019	total: 146ms	remaining: 375ms
28:	learn: 31.9230495	total: 150ms	remaining: 367ms
29:	learn: 31.4311611	total: 154ms	remaining: 359ms
30:	learn: 30.9179052	total: 158ms	remaining: 352ms
31:	learn: 30.6201141	total: 163ms	remaining: 347ms
32:	learn: 30.3421106	total: 168ms	remaining: 341ms
33:	learn: 29.9885373	total: 172ms	remaining: 333ms
34:	learn: 29.7462780	total: 176ms	remaining: 326ms
35:	learn: 29.3607153	total: 181ms	remaining: 321ms
36:	learn: 29.1793078	total: 185ms	remaining: 316ms
37:	learn: 28.9276538	total: 190ms	remaining: 309ms
38:	learn: 28.6903934	total: 194ms	remaining: 304ms
39:	learn: 28.2095033	total: 199ms	remaining: 298ms
40:	learn: 27.7990608	total: 203ms	remaining: 292ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 212ms	remaining: 281ms
43:	learn: 26.9741707	total: 220ms	remaining: 280ms
44:	learn: 26.6606899	total: 228ms	remaining: 278ms
45:	learn: 26.4015833	total: 237ms	remaining: 278ms
46:	learn: 26.1828993	total: 245ms	remaining: 276ms
47:	learn: 26.0233709	total: 248ms	remaining: 269ms
48:	learn: 25.9300399	total: 253ms	remaining: 264ms
49:	learn: 25.5861489	total: 258ms	remaining: 258ms
50:	learn: 25.4322012	total: 264ms	remaining: 253ms
51:	learn: 25.1595644	total: 269ms	remaining: 248ms
52:	learn: 24.9955303	total: 274ms	remaining: 243ms
53:	learn: 24.7273966	total: 279ms	remaining: 237ms
54:	learn: 24.5747978	total: 284ms	remaining: 232ms
55:	learn: 24.3807977	total: 289ms	remaining: 227ms
56:	learn: 24.1689569	total: 294ms	remaining: 222ms
57:	learn: 23.9898221	total: 299ms	remaining: 217ms
58:	learn: 23.7566414	total: 304ms	remaining: 211ms
59:	learn: 23.6641165	total: 309ms	remaining: 206ms
60:	learn: 23.5658066	total: 314ms	remaining: 201ms
61:	learn: 23.4338851	total: 319ms	remaining: 195ms
62:	learn: 23.2408837	total: 322ms	remaining: 189ms
63:	learn: 23.0642038	total: 326ms	remaining: 183ms
64:	learn: 22.9032045	total: 330ms	remaining: 178ms
65:	learn: 22.7736138	total: 334ms	remaining: 172ms
66:	learn: 22.6836443	total: 338ms	remaining: 167ms
67:	learn: 22.5983654	total: 342ms	remaining: 161ms
68:	learn: 22.4419813	total: 347ms	remaining: 156ms
69:	learn: 22.2863339	total: 351ms	remaining: 150ms
70:	learn: 22.1792943	total: 355ms	remaining: 145ms
71:	learn: 22.1130574	total: 359ms	remaining: 140ms
72:	learn: 21.9858161	total: 363ms	remaining: 134ms
73:	learn: 21.8577784	total: 367ms	remaining: 129ms
74:	learn: 21.7845222	total: 371ms	remaining: 124ms
75:	learn: 21.6831390	total: 375ms	remaining: 118ms
76:	learn: 21.6292521	total: 379ms	remaining: 113ms
77:	learn: 21.5789330	total: 384ms	remaining: 108ms
78:	learn: 21.5420942	total: 389ms	remaining: 103ms
79:	learn: 21.4280939	total: 393ms	remaining: 98.2ms
80:	learn: 21.3641165	total: 397ms	remaining: 93.2ms
81:	learn: 21.2734814	total: 402ms	remaining: 88.2ms
82:	learn: 21.2220323	total: 407ms	remaining: 83.3ms
83:	learn: 21.0625792	total: 413ms	remaining: 78.7ms
84:	learn: 20.9488320	total: 421ms	remaining: 74.2ms
85:	learn: 20.8504255	total: 429ms	remaining: 69.8ms
86:	learn: 20.7848510	total: 435ms	remaining: 65.1ms
87:	learn: 20.7247442	total: 443ms	remaining: 60.4ms
88:	learn: 20.5698590	total: 448ms	remaining: 55.3ms
89:	learn: 20.4067620	total: 453ms	remaining: 50.4ms
90:	learn: 20.3062482	total: 459ms	remaining: 45.4ms
91:	learn: 20.2029696	total: 465ms	remaining: 40.4ms
92:	learn: 20.1384849	total: 470ms	remaining: 35.4ms
93:	learn: 20.0260709	total: 475ms	remaining: 30.3ms
94:	learn: 19.9122100	total: 481ms	remaining: 25.3ms
95:	learn: 19.8648487	total: 486ms	remaining: 20.2ms
96:	learn: 19.8207072	total: 491ms	remaining: 15.2ms
97:	learn: 19.7261189	total: 495ms	remaining: 10.1ms
98:	learn: 19.7042438	total: 500ms	remaining: 5.05ms
99:	learn: 19.6546645	total: 505ms	remaining: 0us
0:	learn: 47.0239288	total: 4.42ms	remaining: 437ms
1:	learn: 46.2253829	total: 8.51ms	remaining: 417ms
2:	learn: 45.5580301	total: 12.9ms	remaining: 417ms
3:	learn: 44.7273237	total: 17.3ms	remaining: 415ms
4:	learn: 43.8867421	total: 21.3ms	remaining: 406ms
5:	learn: 43.3615911	total: 25.3ms	remaining: 397ms
6:	learn: 42.8548390	total: 29.6ms	remaining: 393ms
7:	learn: 42.1606758	total: 33.9ms	remaining: 389ms
8:	learn: 41.6625870	total: 38.5ms	remaining: 389ms
9:	learn: 40.9497092	total: 42.6ms	remaining: 384ms
10:	learn: 40.1886318	total: 47.3ms	remaining: 383ms
11:	learn: 39.7456423	total: 51.8ms	remaining: 380ms
12:	learn: 39.1171373	total: 56.3ms	remaining: 377ms
13:	learn: 38.5451069	total: 60.9ms	remaining: 374ms
14:	learn: 38.0155834	total: 68.6ms	remaining: 389ms
15:	learn: 37.5631354	total: 76ms	remaining: 399ms
16:	learn: 37.1030023	total: 83.1ms	remaining: 406ms
17:	learn: 36.4563029	total: 89.6ms	remaining: 408ms
18:	learn: 36.0160976	total: 97.5ms	remaining: 416ms
19:	learn: 35.5079827	total: 103ms	remaining: 411ms
20:	learn: 35.2111885	total: 108ms	remaining: 407ms
21:	learn: 34.9397465	total: 114ms	remaining: 405ms
22:	learn: 34.5270048	total: 120ms	remaining: 402ms
23:	learn: 34.0169260	total: 125ms	remaining: 397ms
24:	learn: 33.7454892	total: 131ms	remaining: 393ms
25:	learn: 33.2648157	total: 137ms	remaining: 390ms
26:	learn: 32.8899427	total: 142ms	remaining: 384ms
27:	learn: 32.6185050	total: 147ms	remaining: 378ms
28:	learn: 32.3528531	total: 153ms	remaining: 374ms
29:	learn: 32.0859923	total: 158ms	remaining: 368ms
30:	learn: 31.6511144	total: 163ms	remaining: 363ms
31:	learn: 31.2571765	total: 169ms	remaining: 360ms
32:	learn: 30.9770049	total: 174ms	remaining: 354ms
33:	learn: 30.6084872	total: 179ms	remaining: 347ms
34:	learn: 30.3448632	total: 183ms	remaining: 340ms
35:	learn: 30.0360942	total: 188ms	remaining: 334ms
36:	learn: 29.6648968	total: 192ms	remaining: 327ms
37:	learn: 29.3165114	total: 196ms	remaining: 320ms
38:	learn: 29.0829198	total: 200ms	remaining: 314ms
39:	learn: 28.7752064	total: 205ms	remaining: 307ms
40:	learn: 28.3622191	total: 209ms	remaining: 300ms
41:	learn: 28.1346631	total: 213ms	remaining: 294ms
42:	learn: 27.9585719	total: 217ms	remaining: 288ms
43:	learn: 27.6565566	total: 221ms	remaining: 282ms
44:	learn: 27.3616172	total: 226ms	remaining: 276ms
45:	learn: 27.0658637	total: 230ms	remaining: 270ms
46:	learn: 26.8660382	total: 234ms	remaining: 264ms
47:	learn: 26.6536078	total: 238ms	remaining: 258ms
48:	learn: 26.3524440	total: 242ms	remaining: 252ms
49:	learn: 26.1595277	total: 247ms	remaining: 247ms
50:	learn: 25.9273523	total: 251ms	remaining: 241ms
51:	learn: 25.7195580	total: 256ms	remaining: 236ms
52:	learn: 25.5730225	total: 260ms	remaining: 231ms
53:	learn: 25.3455276	total: 265ms	remaining: 226ms
54:	learn: 25.2289675	total: 270ms	remaining: 221ms
55:	learn: 25.0133024	total: 275ms	remaining: 216ms
56:	learn: 24.8406714	total: 282ms	remaining: 213ms
57:	learn: 24.6367857	total: 290ms	remaining: 210ms
58:	learn: 24.5338177	total: 300ms	remaining: 208ms
59:	learn: 24.3799964	total: 306ms	remaining: 204ms
60:	learn: 24.1447492	total: 312ms	remaining: 200ms
61:	learn: 23.9880495	total: 317ms	remaining: 194ms
62:	learn: 23.7140630	total: 322ms	remaining: 189ms
63:	learn: 23.5003791	total: 327ms	remaining: 184ms
64:	learn: 23.3207645	total: 332ms	remaining: 179ms
65:	learn: 23.1958356	total: 337ms	remaining: 174ms
66:	learn: 23.0471302	total: 343ms	remaining: 169ms
67:	learn: 22.8977183	total: 348ms	remaining: 164ms
68:	learn: 22.7187400	total: 354ms	remaining: 159ms
69:	learn: 22.6523405	total: 359ms	remaining: 154ms
70:	learn: 22.4767453	total: 363ms	remaining: 148ms
71:	learn: 22.3243677	total: 368ms	remaining: 143ms
72:	learn: 22.2133096	total: 374ms	remaining: 138ms
73:	learn: 22.1151713	total: 378ms	remaining: 133ms
74:	learn: 22.0296666	total: 382ms	remaining: 127ms
75:	learn: 21.9195980	total: 387ms	remaining: 122ms
76:	learn: 21.8401730	total: 390ms	remaining: 117ms
77:	learn: 21.8079797	total: 394ms	remaining: 111ms
78:	learn: 21.7274109	total: 399ms	remaining: 106ms
79:	learn: 21.6663032	total: 403ms	remaining: 101ms
80:	learn: 21.5633117	total: 407ms	remaining: 95.5ms
81:	learn: 21.4542467	total: 411ms	remaining: 90.2ms
82:	learn: 21.3177957	total: 415ms	remaining: 85ms
83:	learn: 21.1289167	total: 419ms	remaining: 79.8ms
84:	learn: 21.0297368	total: 423ms	remaining: 74.6ms
85:	learn: 20.9089564	total: 427ms	remaining: 69.6ms
86:	learn: 20.7653988	total: 432ms	remaining: 64.5ms
87:	learn: 20.6521894	total: 436ms	remaining: 59.5ms
88:	learn: 20.5193021	total: 440ms	remaining: 54.4ms
89:	learn: 20.4361620	total: 445ms	remaining: 49.4ms
90:	learn: 20.3546710	total: 449ms	remaining: 44.4ms
91:	learn: 20.2513296	total: 454ms	remaining: 39.4ms
92:	learn: 20.1605550	total: 458ms	remaining: 34.5ms
93:	learn: 20.0515942	total: 463ms	remaining: 29.5ms
94:	learn: 19.9800764	total: 467ms	remaining: 24.6ms
95:	learn: 19.8996532	total: 471ms	remaining: 19.6ms
96:	learn: 19.8450910	total: 478ms	remaining: 14.8ms
97:	learn: 19.7887346	total: 486ms	remaining: 9.91ms
98:	learn: 19.7230872	total: 494ms	remaining: 4.99ms
99:	learn: 19.6328825	total: 500ms	remaining: 0us
0:	learn: 27.5585353	total: 5.72ms	remaining: 567ms
1:	learn: 27.1656995	total: 10.8ms	remaining: 531ms
2:	learn: 26.8590175	total: 14.8ms	remaining: 480ms
3:	learn: 26.5818406	total: 19ms	remaining: 455ms
4:	learn: 26.1148663	total: 22.9ms	remaining: 435ms
5:	learn: 25.7690484	total: 26.7ms	remaining: 418ms
6:	learn: 25.3489206	total: 31ms	remaining: 411ms
7:	learn: 24.9542406	total: 34.9ms	remaining: 402ms
8:	learn: 24.6777517	total: 39.1ms	remaining: 395ms
9:	learn: 24.3242344	total: 43.3ms	remaining: 390ms
10:	learn: 24.0383073	total: 47ms	remaining: 381ms
11:	learn: 23.7383420	total: 51ms	remaining: 374ms
12:	learn: 23.3461670	total: 54.9ms	remaining: 368ms
13:	learn: 23.0928636	total: 59.1ms	remaining: 363ms
14:	learn: 22.8770414	total: 63.2ms	remaining: 358ms
15:	learn: 22.6323214	total: 67ms	remaining: 352ms
16:	learn: 22.3597072	total: 71.1ms	remaining: 347ms
17:	learn: 22.1079813	total: 75.4ms	remaining: 344ms
18:	learn: 21.8421199	total: 79.6ms	remaining: 339ms
19:	learn: 21.6576508	total: 83.4ms	remaining: 334ms
20:	learn: 21.4301268	total: 87.3ms	remaining: 329ms
21:	learn: 21.2287388	total: 91.8ms	remaining: 326ms
22:	learn: 21.0553872	total: 96.1ms	remaining: 322ms
23:	learn: 20.8977091	total: 101ms	remaining: 318ms
24:	learn: 20.6619051	total: 105ms	remaining: 315ms
25:	learn: 20.5040955	total: 110ms	remaining: 313ms
26:	learn: 20.3181195	total: 114ms	remaining: 309ms
27:	learn: 20.0869436	total: 119ms	remaining: 305ms
28:	learn: 19.9375985	total: 123ms	remaining: 301ms
29:	learn: 19.8247516	total: 128ms	remaining: 299ms
30:	learn: 19.6261697	total: 136ms	remaining: 303ms
31:	learn: 19.4547236	total: 143ms	remaining: 304ms
32:	learn: 19.3157092	total: 153ms	remaining: 310ms
33:	learn: 19.1561419	total: 168ms	remaining: 326ms
34:	learn: 19.0453620	total: 173ms	remaining: 321ms
35:	learn: 18.8738574	total: 178ms	remaining: 317ms
36:	learn: 18.7072907	total: 183ms	remaining: 312ms
37:	learn: 18.5877943	total: 188ms	remaining: 307ms
38:	learn: 18.4436380	total: 194ms	remaining: 303ms
39:	learn: 18.3463356	total: 199ms	remaining: 299ms
40:	learn: 18.2008059	total: 204ms	remaining: 294ms
41:	learn: 18.0582079	total: 209ms	remaining: 289ms
42:	learn: 17.8891982	total: 214ms	remaining: 284ms
43:	learn: 17.7332246	total: 219ms	remaining: 279ms
44:	learn: 17.6206421	total: 224ms	remaining: 274ms
45:	learn: 17.4982800	total: 229ms	remaining: 269ms
46:	learn: 17.3970150	total: 233ms	remaining: 263ms
47:	learn: 17.3058203	total: 238ms	remaining: 257ms
48:	learn: 17.1789256	total: 242ms	remaining: 252ms
49:	learn: 17.0916229	total: 246ms	remaining: 246ms
50:	learn: 16.9859820	total: 250ms	remaining: 240ms
51:	learn: 16.8995582	total: 254ms	remaining: 234ms
52:	learn: 16.8137014	total: 258ms	remaining: 229ms
53:	learn: 16.7021451	total: 262ms	remaining: 223ms
54:	learn: 16.5895582	total: 266ms	remaining: 218ms
55:	learn: 16.5015639	total: 271ms	remaining: 213ms
56:	learn: 16.4356637	total: 275ms	remaining: 208ms
57:	learn: 16.3514525	total: 280ms	remaining: 202ms
58:	learn: 16.2401369	total: 284ms	remaining: 198ms
59:	learn: 16.1293223	total: 288ms	remaining: 192ms
60:	learn: 16.0271167	total: 293ms	remaining: 187ms
61:	learn: 15.9126257	total: 297ms	remaining: 182ms
62:	learn: 15.8391096	total: 302ms	remaining: 177ms
63:	learn: 15.7441773	total: 306ms	remaining: 172ms
64:	learn: 15.6885195	total: 311ms	remaining: 168ms
65:	learn: 15.6052039	total: 316ms	remaining: 163ms
66:	learn: 15.5074202	total: 320ms	remaining: 158ms
67:	learn: 15.4054338	total: 325ms	remaining: 153ms
68:	learn: 15.2885714	total: 333ms	remaining: 150ms
69:	learn: 15.2157472	total: 340ms	remaining: 146ms
70:	learn: 15.1031554	total: 348ms	remaining: 142ms
71:	learn: 15.0237470	total: 355ms	remaining: 138ms
72:	learn: 14.9756825	total: 360ms	remaining: 133ms
73:	learn: 14.8840596	total: 366ms	remaining: 129ms
74:	learn: 14.8077061	total: 371ms	remaining: 124ms
75:	learn: 14.7444437	total: 376ms	remaining: 119ms
76:	learn: 14.6751720	total: 381ms	remaining: 114ms
77:	learn: 14.5830333	total: 386ms	remaining: 109ms
78:	learn: 14.5241206	total: 391ms	remaining: 104ms
79:	learn: 14.4892731	total: 396ms	remaining: 99.1ms
80:	learn: 14.4256605	total: 401ms	remaining: 94.2ms
81:	learn: 14.3666860	total: 407ms	remaining: 89.2ms
82:	learn: 14.2938372	total: 412ms	remaining: 84.4ms
83:	learn: 14.2161532	total: 417ms	remaining: 79.4ms
84:	learn: 14.1582910	total: 422ms	remaining: 74.5ms
85:	learn: 14.1029153	total: 428ms	remaining: 69.6ms
86:	learn: 14.0475835	total: 432ms	remaining: 64.6ms
87:	learn: 13.9892661	total: 436ms	remaining: 59.4ms
88:	learn: 13.9481628	total: 441ms	remaining: 54.5ms
89:	learn: 13.8483991	total: 444ms	remaining: 49.4ms
90:	learn: 13.7775614	total: 448ms	remaining: 44.3ms
91:	learn: 13.7304585	total: 452ms	remaining: 39.3ms
92:	learn: 13.6783381	total: 456ms	remaining: 34.3ms
93:	learn: 13.6356964	total: 461ms	remaining: 29.4ms
94:	learn: 13.5924371	total: 465ms	remaining: 24.5ms
95:	learn: 13.5400746	total: 469ms	remaining: 19.5ms
96:	learn: 13.4897333	total: 473ms	remaining: 14.6ms
97:	learn: 13.4470321	total: 478ms	remaining: 9.74ms
98:	learn: 13.3856082	total: 482ms	remaining: 4.87ms
99:	learn: 13.3082371	total: 486ms	remaining: 0us
0:	learn: 43.0395283	total: 5.99ms	remaining: 593ms
1:	learn: 42.1130223	total: 11.2ms	remaining: 548ms
2:	learn: 41.1753409	total: 16.3ms	remaining: 527ms
3:	learn: 40.3637444	total: 21.6ms	remaining: 518ms
4:	learn: 39.6508088	total: 26.7ms	remaining: 508ms
5:	learn: 38.7217934	total: 31.7ms	remaining: 497ms
6:	learn: 37.8538055	total: 37.1ms	remaining: 493ms
7:	learn: 36.9793574	total: 41.7ms	remaining: 480ms
8:	learn: 36.3076984	total: 46.6ms	remaining: 471ms
9:	learn: 35.6673160	total: 52.1ms	remaining: 469ms
10:	learn: 34.8889800	total: 57.7ms	remaining: 467ms
11:	learn: 34.1675517	total: 62.5ms	remaining: 458ms
12:	learn: 33.6779564	total: 67.6ms	remaining: 453ms
13:	learn: 33.0710039	total: 72.7ms	remaining: 447ms
14:	learn: 32.4966674	total: 77.1ms	remaining: 437ms
15:	learn: 31.9492856	total: 81.8ms	remaining: 430ms
16:	learn: 31.5108129	total: 86.1ms	remaining: 420ms
17:	learn: 30.9804023	total: 91.2ms	remaining: 415ms
18:	learn: 30.4169089	total: 95.2ms	remaining: 406ms
19:	learn: 29.8930375	total: 99.2ms	remaining: 397ms
20:	learn: 29.3974421	total: 103ms	remaining: 389ms
21:	learn: 28.8792307	total: 108ms	remaining: 383ms
22:	learn: 28.3894474	total: 112ms	remaining: 375ms
23:	learn: 27.9921276	total: 116ms	remaining: 368ms
24:	learn: 27.6158887	total: 120ms	remaining: 361ms
25:	learn: 27.2866950	total: 125ms	remaining: 355ms
26:	learn: 26.8770708	total: 129ms	remaining: 350ms
27:	learn: 26.6233005	total: 134ms	remaining: 344ms
28:	learn: 26.2921934	total: 138ms	remaining: 338ms
29:	learn: 25.9156920	total: 143ms	remaining: 333ms
30:	learn: 25.5311106	total: 144ms	remaining: 321ms
31:	learn: 25.2178997	total: 149ms	remaining: 316ms
32:	learn: 24.8572196	total: 153ms	remaining: 311ms
33:	learn: 24.5849710	total: 158ms	remaining: 306ms
34:	learn: 24.2209190	total: 166ms	remaining: 308ms
35:	learn: 23.8708250	total: 174ms	remaining: 309ms
36:	learn: 23.5325279	total: 183ms	remaining: 312ms
37:	learn: 23.2116148	total: 191ms	remaining: 311ms
38:	learn: 22.9696787	total: 195ms	remaining: 306ms
39:	learn: 22.7936783	total: 200ms	remaining: 301ms
40:	learn: 22.6228847	total: 205ms	remaining: 295ms
41:	learn: 22.3691527	total: 210ms	remaining: 291ms
42:	learn: 22.1002173	total: 216ms	remaining: 286ms
43:	learn: 21.9157268	total: 221ms	remaining: 281ms
44:	learn: 21.7229102	total: 226ms	remaining: 276ms
45:	learn: 21.4642005	total: 231ms	remaining: 271ms
46:	learn: 21.3029442	total: 236ms	remaining: 266ms
47:	learn: 21.1469792	total: 241ms	remaining: 261ms
48:	learn: 20.9458235	total: 246ms	remaining: 256ms
49:	learn: 20.7335242	total: 251ms	remaining: 251ms
50:	learn: 20.5440269	total: 256ms	remaining: 246ms
51:	learn: 20.3661449	total: 261ms	remaining: 241ms
52:	learn: 20.2158134	total: 266ms	remaining: 236ms
53:	learn: 19.9934873	total: 270ms	remaining: 230ms
54:	learn: 19.7879739	total: 274ms	remaining: 224ms
55:	learn: 19.6630460	total: 278ms	remaining: 218ms
56:	learn: 19.5152729	total: 282ms	remaining: 213ms
57:	learn: 19.3581128	total: 287ms	remaining: 208ms
58:	learn: 19.2209303	total: 291ms	remaining: 202ms
59:	learn: 19.0965248	total: 296ms	remaining: 197ms
60:	learn: 19.0035954	total: 300ms	remaining: 192ms
61:	learn: 18.8554149	total: 304ms	remaining: 186ms
62:	learn: 18.7095427	total: 308ms	remaining: 181ms
63:	learn: 18.5751494	total: 312ms	remaining: 175ms
64:	learn: 18.4678251	total: 316ms	remaining: 170ms
65:	learn: 18.3500325	total: 320ms	remaining: 165ms
66:	learn: 18.2088983	total: 324ms	remaining: 160ms
67:	learn: 18.0737705	total: 329ms	remaining: 155ms
68:	learn: 17.9325058	total: 334ms	remaining: 150ms
69:	learn: 17.8003911	total: 338ms	remaining: 145ms
70:	learn: 17.7385366	total: 343ms	remaining: 140ms
71:	learn: 17.6106998	total: 347ms	remaining: 135ms
72:	learn: 17.4816270	total: 352ms	remaining: 130ms
73:	learn: 17.4025554	total: 357ms	remaining: 125ms
74:	learn: 17.2902108	total: 365ms	remaining: 122ms
75:	learn: 17.2158048	total: 372ms	remaining: 118ms
76:	learn: 17.1261053	total: 381ms	remaining: 114ms
77:	learn: 17.0308917	total: 388ms	remaining: 109ms
78:	learn: 16.9546705	total: 394ms	remaining: 105ms
79:	learn: 16.8319165	total: 399ms	remaining: 99.8ms
80:	learn: 16.7687017	total: 404ms	remaining: 94.9ms
81:	learn: 16.6972326	total: 409ms	remaining: 89.9ms
82:	learn: 16.6124580	total: 415ms	remaining: 84.9ms
83:	learn: 16.4999052	total: 420ms	remaining: 80ms
84:	learn: 16.4302484	total: 425ms	remaining: 75ms
85:	learn: 16.3201363	total: 430ms	remaining: 69.9ms
86:	learn: 16.2534314	total: 435ms	remaining: 64.9ms
87:	learn: 16.1720485	total: 440ms	remaining: 59.9ms
88:	learn: 16.0625751	total: 444ms	remaining: 54.9ms
89:	learn: 15.9135088	total: 449ms	remaining: 49.9ms
90:	learn: 15.8658863	total: 454ms	remaining: 44.9ms
91:	learn: 15.8066805	total: 459ms	remaining: 40ms
92:	learn: 15.7412103	total: 464ms	remaining: 34.9ms
93:	learn: 15.6542776	total: 468ms	remaining: 29.9ms
94:	learn: 15.5760334	total: 472ms	remaining: 24.9ms
95:	learn: 15.5434131	total: 476ms	remaining: 19.8ms
96:	learn: 15.4709561	total: 480ms	remaining: 14.8ms
97:	learn: 15.4449618	total: 484ms	remaining: 9.88ms
98:	learn: 15.3752761	total: 488ms	remaining: 4.93ms
99:	learn: 15.3106595	total: 493ms	remaining: 0us
0:	learn: 46.7142257	total: 5.17ms	remaining: 512ms
1:	learn: 45.7634153	total: 10ms	remaining: 490ms
2:	learn: 45.0054253	total: 14.5ms	remaining: 469ms
3:	learn: 44.2120432	total: 21.6ms	remaining: 519ms
4:	learn: 43.3960472	total: 28.7ms	remaining: 545ms
5:	learn: 42.8588120	total: 35.7ms	remaining: 559ms
6:	learn: 41.9533701	total: 42.8ms	remaining: 569ms
7:	learn: 41.2745030	total: 50.5ms	remaining: 581ms
8:	learn: 40.6797495	total: 55.6ms	remaining: 562ms
9:	learn: 39.9899571	total: 61ms	remaining: 549ms
10:	learn: 39.4682100	total: 66.4ms	remaining: 537ms
11:	learn: 39.0305595	total: 71.8ms	remaining: 526ms
12:	learn: 38.4200417	total: 77.2ms	remaining: 517ms
13:	learn: 37.8425194	total: 82.2ms	remaining: 505ms
14:	learn: 37.4203127	total: 87.5ms	remaining: 496ms
15:	learn: 36.9917688	total: 92.7ms	remaining: 487ms
16:	learn: 36.5544138	total: 98ms	remaining: 478ms
17:	learn: 36.0727019	total: 103ms	remaining: 469ms
18:	learn: 35.4835715	total: 108ms	remaining: 459ms
19:	learn: 34.9865654	total: 113ms	remaining: 452ms
20:	learn: 34.6063373	total: 118ms	remaining: 446ms
21:	learn: 34.0997289	total: 123ms	remaining: 435ms
22:	learn: 33.7313171	total: 127ms	remaining: 426ms
23:	learn: 33.3582000	total: 131ms	remaining: 415ms
24:	learn: 32.9432456	total: 135ms	remaining: 405ms
25:	learn: 32.5220888	total: 139ms	remaining: 395ms
26:	learn: 32.2172292	total: 143ms	remaining: 386ms
27:	learn: 31.8972904	total: 147ms	remaining: 378ms
28:	learn: 31.6405350	total: 151ms	remaining: 370ms
29:	learn: 31.4167702	total: 155ms	remaining: 362ms
30:	learn: 30.8541961	total: 157ms	remaining: 349ms
31:	learn: 30.5572111	total: 161ms	remaining: 342ms
32:	learn: 30.1700399	total: 165ms	remaining: 335ms
33:	learn: 29.8537271	total: 169ms	remaining: 328ms
34:	learn: 29.6192540	total: 173ms	remaining: 322ms
35:	learn: 29.3276362	total: 177ms	remaining: 315ms
36:	learn: 28.9985179	total: 182ms	remaining: 309ms
37:	learn: 28.7046880	total: 186ms	remaining: 304ms
38:	learn: 28.4412677	total: 190ms	remaining: 297ms
39:	learn: 28.1277292	total: 194ms	remaining: 291ms
40:	learn: 27.9000750	total: 199ms	remaining: 286ms
41:	learn: 27.5433162	total: 203ms	remaining: 280ms
42:	learn: 27.2493285	total: 207ms	remaining: 274ms
43:	learn: 26.9576632	total: 208ms	remaining: 265ms
44:	learn: 26.6177110	total: 212ms	remaining: 259ms
45:	learn: 26.2812456	total: 217ms	remaining: 255ms
46:	learn: 26.0803859	total: 221ms	remaining: 249ms
47:	learn: 25.9543581	total: 225ms	remaining: 244ms
48:	learn: 25.7951582	total: 229ms	remaining: 238ms
49:	learn: 25.6548184	total: 234ms	remaining: 234ms
50:	learn: 25.4010843	total: 238ms	remaining: 229ms
51:	learn: 24.9773937	total: 243ms	remaining: 224ms
52:	learn: 24.8026156	total: 247ms	remaining: 219ms
53:	learn: 24.5568053	total: 252ms	remaining: 215ms
54:	learn: 24.2281839	total: 256ms	remaining: 210ms
55:	learn: 23.9202795	total: 261ms	remaining: 205ms
56:	learn: 23.7625591	total: 266ms	remaining: 200ms
57:	learn: 23.5429721	total: 273ms	remaining: 197ms
58:	learn: 23.3175893	total: 281ms	remaining: 196ms
59:	learn: 23.2035130	total: 289ms	remaining: 193ms
60:	learn: 23.0232450	total: 296ms	remaining: 189ms
61:	learn: 22.8384958	total: 302ms	remaining: 185ms
62:	learn: 22.6499902	total: 307ms	remaining: 180ms
63:	learn: 22.4577426	total: 312ms	remaining: 175ms
64:	learn: 22.3333158	total: 317ms	remaining: 171ms
65:	learn: 22.2064131	total: 322ms	remaining: 166ms
66:	learn: 22.1434971	total: 327ms	remaining: 161ms
67:	learn: 21.9596519	total: 332ms	remaining: 156ms
68:	learn: 21.8475576	total: 338ms	remaining: 152ms
69:	learn: 21.6954745	total: 343ms	remaining: 147ms
70:	learn: 21.5635976	total: 348ms	remaining: 142ms
71:	learn: 21.4588506	total: 353ms	remaining: 137ms
72:	learn: 21.3527268	total: 358ms	remaining: 132ms
73:	learn: 21.2661288	total: 363ms	remaining: 128ms
74:	learn: 21.1817333	total: 368ms	remaining: 123ms
75:	learn: 21.0527553	total: 373ms	remaining: 118ms
76:	learn: 20.9229021	total: 377ms	remaining: 113ms
77:	learn: 20.7563946	total: 381ms	remaining: 107ms
78:	learn: 20.6569831	total: 385ms	remaining: 102ms
79:	learn: 20.4982663	total: 390ms	remaining: 97.4ms
80:	learn: 20.3185460	total: 394ms	remaining: 92.5ms
81:	learn: 20.2096241	total: 399ms	remaining: 87.6ms
82:	learn: 20.1274891	total: 404ms	remaining: 82.7ms
83:	learn: 20.0740139	total: 409ms	remaining: 77.8ms
84:	learn: 19.9630699	total: 428ms	remaining: 75.5ms
85:	learn: 19.8753899	total: 433ms	remaining: 70.5ms
86:	learn: 19.6563612	total: 438ms	remaining: 65.4ms
87:	learn: 19.4680232	total: 443ms	remaining: 60.3ms
88:	learn: 19.3503431	total: 447ms	remaining: 55.2ms
89:	learn: 19.2221379	total: 451ms	remaining: 50.2ms
90:	learn: 19.0732542	total: 456ms	remaining: 45.1ms
91:	learn: 18.9825190	total: 461ms	remaining: 40.1ms
92:	learn: 18.8839009	total: 469ms	remaining: 35.3ms
93:	learn: 18.8012219	total: 477ms	remaining: 30.4ms
94:	learn: 18.7172713	total: 485ms	remaining: 25.6ms
95:	learn: 18.6201170	total: 492ms	remaining: 20.5ms
96:	learn: 18.5318611	total: 498ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 504ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 509ms	remaining: 5.14ms
99:	learn: 18.2227333	total: 514ms	remaining: 0us
0:	learn: 46.3764524	total: 5.73ms	remaining: 567ms
1:	learn: 45.5561269	total: 9.88ms	remaining: 484ms
2:	learn: 44.8811245	total: 14.1ms	remaining: 455ms
3:	learn: 44.0788617	total: 17.9ms	remaining: 430ms
4:	learn: 43.3619790	total: 22.1ms	remaining: 420ms
5:	learn: 42.6912112	total: 26.1ms	remaining: 408ms
6:	learn: 42.2292118	total: 30.3ms	remaining: 402ms
7:	learn: 41.7725191	total: 34.1ms	remaining: 393ms
8:	learn: 41.1676614	total: 38.1ms	remaining: 385ms
9:	learn: 40.5771076	total: 42ms	remaining: 378ms
10:	learn: 39.8343757	total: 46.7ms	remaining: 378ms
11:	learn: 39.3761142	total: 50.5ms	remaining: 370ms
12:	learn: 38.5254692	total: 54.4ms	remaining: 364ms
13:	learn: 37.9629555	total: 58.6ms	remaining: 360ms
14:	learn: 37.4418438	total: 62.9ms	remaining: 356ms
15:	learn: 37.0507283	total: 66.5ms	remaining: 349ms
16:	learn: 36.6264217	total: 70.3ms	remaining: 343ms
17:	learn: 36.1114940	total: 74.6ms	remaining: 340ms
18:	learn: 35.7193862	total: 78.5ms	remaining: 335ms
19:	learn: 35.3301177	total: 82.8ms	remaining: 331ms
20:	learn: 35.0598280	total: 86.7ms	remaining: 326ms
21:	learn: 34.5469736	total: 91.4ms	remaining: 324ms
22:	learn: 34.2064215	total: 95.5ms	remaining: 320ms
23:	learn: 33.7280710	total: 99.8ms	remaining: 316ms
24:	learn: 33.3282940	total: 104ms	remaining: 312ms
25:	learn: 32.8478961	total: 109ms	remaining: 310ms
26:	learn: 32.5722164	total: 113ms	remaining: 306ms
27:	learn: 32.2457019	total: 118ms	remaining: 303ms
28:	learn: 31.9230495	total: 122ms	remaining: 300ms
29:	learn: 31.4311611	total: 130ms	remaining: 304ms
30:	learn: 30.9179052	total: 138ms	remaining: 307ms
31:	learn: 30.6201141	total: 145ms	remaining: 309ms
32:	learn: 30.3421106	total: 154ms	remaining: 312ms
33:	learn: 29.9885373	total: 159ms	remaining: 309ms
34:	learn: 29.7462780	total: 164ms	remaining: 305ms
35:	learn: 29.3607153	total: 170ms	remaining: 301ms
36:	learn: 29.1793078	total: 175ms	remaining: 298ms
37:	learn: 28.9276538	total: 180ms	remaining: 294ms
38:	learn: 28.6903934	total: 186ms	remaining: 290ms
39:	learn: 28.2095033	total: 191ms	remaining: 286ms
40:	learn: 27.7990608	total: 196ms	remaining: 282ms
41:	learn: 27.5406632	total: 201ms	remaining: 278ms
42:	learn: 27.2575376	total: 207ms	remaining: 274ms
43:	learn: 26.9741707	total: 211ms	remaining: 269ms
44:	learn: 26.6606899	total: 216ms	remaining: 264ms
45:	learn: 26.4015833	total: 222ms	remaining: 260ms
46:	learn: 26.1828993	total: 227ms	remaining: 256ms
47:	learn: 26.0233709	total: 229ms	remaining: 249ms
48:	learn: 25.9300399	total: 233ms	remaining: 243ms
49:	learn: 25.5861489	total: 238ms	remaining: 238ms
50:	learn: 25.4322012	total: 242ms	remaining: 232ms
51:	learn: 25.1595644	total: 246ms	remaining: 227ms
52:	learn: 24.9955303	total: 249ms	remaining: 221ms
53:	learn: 24.7273966	total: 253ms	remaining: 216ms
54:	learn: 24.5747978	total: 258ms	remaining: 211ms
55:	learn: 24.3807977	total: 262ms	remaining: 206ms
56:	learn: 24.1689569	total: 266ms	remaining: 201ms
57:	learn: 23.9898221	total: 270ms	remaining: 196ms
58:	learn: 23.7566414	total: 274ms	remaining: 191ms
59:	learn: 23.6641165	total: 278ms	remaining: 185ms
60:	learn: 23.5658066	total: 282ms	remaining: 180ms
61:	learn: 23.4338851	total: 286ms	remaining: 175ms
62:	learn: 23.2408837	total: 290ms	remaining: 170ms
63:	learn: 23.0642038	total: 294ms	remaining: 165ms
64:	learn: 22.9032045	total: 298ms	remaining: 161ms
65:	learn: 22.7736138	total: 303ms	remaining: 156ms
66:	learn: 22.6836443	total: 307ms	remaining: 151ms
67:	learn: 22.5983654	total: 312ms	remaining: 147ms
68:	learn: 22.4419813	total: 316ms	remaining: 142ms
69:	learn: 22.2863339	total: 321ms	remaining: 137ms
70:	learn: 22.1792943	total: 325ms	remaining: 133ms
71:	learn: 22.1130574	total: 330ms	remaining: 128ms
72:	learn: 21.9858161	total: 337ms	remaining: 125ms
73:	learn: 21.8577784	total: 346ms	remaining: 122ms
74:	learn: 21.7845222	total: 356ms	remaining: 119ms
75:	learn: 21.6831390	total: 362ms	remaining: 114ms
76:	learn: 21.6292521	total: 369ms	remaining: 110ms
77:	learn: 21.5789330	total: 374ms	remaining: 106ms
78:	learn: 21.5420942	total: 379ms	remaining: 101ms
79:	learn: 21.4280939	total: 384ms	remaining: 95.9ms
80:	learn: 21.3641165	total: 389ms	remaining: 91.2ms
81:	learn: 21.2734814	total: 394ms	remaining: 86.5ms
82:	learn: 21.2220323	total: 399ms	remaining: 81.8ms
83:	learn: 21.0625792	total: 405ms	remaining: 77.1ms
84:	learn: 20.9488320	total: 410ms	remaining: 72.3ms
85:	learn: 20.8504255	total: 414ms	remaining: 67.5ms
86:	learn: 20.7848510	total: 419ms	remaining: 62.6ms
87:	learn: 20.7247442	total: 424ms	remaining: 57.8ms
88:	learn: 20.5698590	total: 429ms	remaining: 53.1ms
89:	learn: 20.4067620	total: 435ms	remaining: 48.3ms
90:	learn: 20.3062482	total: 439ms	remaining: 43.4ms
91:	learn: 20.2029696	total: 443ms	remaining: 38.5ms
92:	learn: 20.1384849	total: 447ms	remaining: 33.6ms
93:	learn: 20.0260709	total: 451ms	remaining: 28.8ms
94:	learn: 19.9122100	total: 455ms	remaining: 23.9ms
95:	learn: 19.8648487	total: 459ms	remaining: 19.1ms
96:	learn: 19.8207072	total: 463ms	remaining: 14.3ms
97:	learn: 19.7261189	total: 467ms	remaining: 9.53ms
98:	learn: 19.7042438	total: 471ms	remaining: 4.76ms
99:	learn: 19.6546645	total: 475ms	remaining: 0us
0:	learn: 47.0239288	total: 4.61ms	remaining: 456ms
1:	learn: 46.2253829	total: 9.31ms	remaining: 456ms
2:	learn: 45.5580301	total: 13.7ms	remaining: 444ms
3:	learn: 44.7273237	total: 19.6ms	remaining: 470ms
4:	learn: 43.8867421	total: 26.8ms	remaining: 509ms
5:	learn: 43.3615911	total: 34.6ms	remaining: 543ms
6:	learn: 42.8548390	total: 42.2ms	remaining: 560ms
7:	learn: 42.1606758	total: 48.8ms	remaining: 561ms
8:	learn: 41.6625870	total: 53.9ms	remaining: 545ms
9:	learn: 40.9497092	total: 58.9ms	remaining: 530ms
10:	learn: 40.1886318	total: 64ms	remaining: 518ms
11:	learn: 39.7456423	total: 69.3ms	remaining: 508ms
12:	learn: 39.1171373	total: 74.2ms	remaining: 497ms
13:	learn: 38.5451069	total: 79.4ms	remaining: 488ms
14:	learn: 38.0155834	total: 84.8ms	remaining: 481ms
15:	learn: 37.5631354	total: 89.7ms	remaining: 471ms
16:	learn: 37.1030023	total: 94.6ms	remaining: 462ms
17:	learn: 36.4563029	total: 99.5ms	remaining: 453ms
18:	learn: 36.0160976	total: 105ms	remaining: 446ms
19:	learn: 35.5079827	total: 109ms	remaining: 438ms
20:	learn: 35.2111885	total: 114ms	remaining: 429ms
21:	learn: 34.9397465	total: 119ms	remaining: 423ms
22:	learn: 34.5270048	total: 125ms	remaining: 417ms
23:	learn: 34.0169260	total: 129ms	remaining: 408ms
24:	learn: 33.7454892	total: 133ms	remaining: 398ms
25:	learn: 33.2648157	total: 137ms	remaining: 389ms
26:	learn: 32.8899427	total: 141ms	remaining: 380ms
27:	learn: 32.6185050	total: 144ms	remaining: 371ms
28:	learn: 32.3528531	total: 149ms	remaining: 364ms
29:	learn: 32.0859923	total: 152ms	remaining: 356ms
30:	learn: 31.6511144	total: 156ms	remaining: 348ms
31:	learn: 31.2571765	total: 160ms	remaining: 341ms
32:	learn: 30.9770049	total: 165ms	remaining: 334ms
33:	learn: 30.6084872	total: 169ms	remaining: 327ms
34:	learn: 30.3448632	total: 172ms	remaining: 320ms
35:	learn: 30.0360942	total: 177ms	remaining: 315ms
36:	learn: 29.6648968	total: 181ms	remaining: 308ms
37:	learn: 29.3165114	total: 185ms	remaining: 302ms
38:	learn: 29.0829198	total: 189ms	remaining: 296ms
39:	learn: 28.7752064	total: 193ms	remaining: 290ms
40:	learn: 28.3622191	total: 197ms	remaining: 283ms
41:	learn: 28.1346631	total: 201ms	remaining: 278ms
42:	learn: 27.9585719	total: 206ms	remaining: 272ms
43:	learn: 27.6565566	total: 209ms	remaining: 267ms
44:	learn: 27.3616172	total: 213ms	remaining: 261ms
45:	learn: 27.0658637	total: 217ms	remaining: 255ms
46:	learn: 26.8660382	total: 222ms	remaining: 250ms
47:	learn: 26.6536078	total: 226ms	remaining: 245ms
48:	learn: 26.3524440	total: 231ms	remaining: 240ms
49:	learn: 26.1595277	total: 235ms	remaining: 235ms
50:	learn: 25.9273523	total: 239ms	remaining: 230ms
51:	learn: 25.7195580	total: 244ms	remaining: 225ms
52:	learn: 25.5730225	total: 248ms	remaining: 220ms
53:	learn: 25.3455276	total: 253ms	remaining: 215ms
54:	learn: 25.2289675	total: 261ms	remaining: 214ms
55:	learn: 25.0133024	total: 268ms	remaining: 211ms
56:	learn: 24.8406714	total: 276ms	remaining: 209ms
57:	learn: 24.6367857	total: 284ms	remaining: 206ms
58:	learn: 24.5338177	total: 290ms	remaining: 202ms
59:	learn: 24.3799964	total: 296ms	remaining: 197ms
60:	learn: 24.1447492	total: 301ms	remaining: 192ms
61:	learn: 23.9880495	total: 306ms	remaining: 188ms
62:	learn: 23.7140630	total: 312ms	remaining: 183ms
63:	learn: 23.5003791	total: 318ms	remaining: 179ms
64:	learn: 23.3207645	total: 324ms	remaining: 174ms
65:	learn: 23.1958356	total: 329ms	remaining: 170ms
66:	learn: 23.0471302	total: 334ms	remaining: 165ms
67:	learn: 22.8977183	total: 340ms	remaining: 160ms
68:	learn: 22.7187400	total: 345ms	remaining: 155ms
69:	learn: 22.6523405	total: 351ms	remaining: 150ms
70:	learn: 22.4767453	total: 356ms	remaining: 146ms
71:	learn: 22.3243677	total: 361ms	remaining: 140ms
72:	learn: 22.2133096	total: 365ms	remaining: 135ms
73:	learn: 22.1151713	total: 369ms	remaining: 130ms
74:	learn: 22.0296666	total: 374ms	remaining: 125ms
75:	learn: 21.9195980	total: 378ms	remaining: 119ms
76:	learn: 21.8401730	total: 382ms	remaining: 114ms
77:	learn: 21.8079797	total: 386ms	remaining: 109ms
78:	learn: 21.7274109	total: 390ms	remaining: 104ms
79:	learn: 21.6663032	total: 394ms	remaining: 98.5ms
80:	learn: 21.5633117	total: 398ms	remaining: 93.5ms
81:	learn: 21.4542467	total: 403ms	remaining: 88.4ms
82:	learn: 21.3177957	total: 407ms	remaining: 83.4ms
83:	learn: 21.1289167	total: 411ms	remaining: 78.3ms
84:	learn: 21.0297368	total: 415ms	remaining: 73.3ms
85:	learn: 20.9089564	total: 420ms	remaining: 68.3ms
86:	learn: 20.7653988	total: 425ms	remaining: 63.4ms
87:	learn: 20.6521894	total: 429ms	remaining: 58.5ms
88:	learn: 20.5193021	total: 434ms	remaining: 53.6ms
89:	learn: 20.4361620	total: 438ms	remaining: 48.6ms
90:	learn: 20.3546710	total: 442ms	remaining: 43.7ms
91:	learn: 20.2513296	total: 447ms	remaining: 38.8ms
92:	learn: 20.1605550	total: 451ms	remaining: 33.9ms
93:	learn: 20.0515942	total: 459ms	remaining: 29.3ms
94:	learn: 19.9800764	total: 467ms	remaining: 24.6ms
95:	learn: 19.8996532	total: 478ms	remaining: 19.9ms
96:	learn: 19.8450910	total: 485ms	remaining: 15ms
97:	learn: 19.7887346	total: 491ms	remaining: 10ms
98:	learn: 19.7230872	total: 496ms	remaining: 5.01ms
99:	learn: 19.6328825	total: 502ms	remaining: 0us
0:	learn: 27.5585353	total: 5.75ms	remaining: 570ms
1:	learn: 27.1656995	total: 10ms	remaining: 491ms
2:	learn: 26.8590175	total: 14.2ms	remaining: 460ms
3:	learn: 26.5818406	total: 18ms	remaining: 432ms
4:	learn: 26.1148663	total: 22ms	remaining: 418ms
5:	learn: 25.7690484	total: 26.2ms	remaining: 410ms
6:	learn: 25.3489206	total: 30.3ms	remaining: 402ms
7:	learn: 24.9542406	total: 34.5ms	remaining: 396ms
8:	learn: 24.6777517	total: 38.4ms	remaining: 388ms
9:	learn: 24.3242344	total: 42.6ms	remaining: 383ms
10:	learn: 24.0383073	total: 46.5ms	remaining: 376ms
11:	learn: 23.7383420	total: 50.3ms	remaining: 369ms
12:	learn: 23.3461670	total: 54.2ms	remaining: 363ms
13:	learn: 23.0928636	total: 58.4ms	remaining: 359ms
14:	learn: 22.8770414	total: 63.2ms	remaining: 358ms
15:	learn: 22.6323214	total: 67.4ms	remaining: 354ms
16:	learn: 22.3597072	total: 71.4ms	remaining: 349ms
17:	learn: 22.1079813	total: 75.4ms	remaining: 344ms
18:	learn: 21.8421199	total: 80.4ms	remaining: 343ms
19:	learn: 21.6576508	total: 84.6ms	remaining: 338ms
20:	learn: 21.4301268	total: 89.1ms	remaining: 335ms
21:	learn: 21.2287388	total: 93.5ms	remaining: 331ms
22:	learn: 21.0553872	total: 98.2ms	remaining: 329ms
23:	learn: 20.8977091	total: 102ms	remaining: 325ms
24:	learn: 20.6619051	total: 107ms	remaining: 321ms
25:	learn: 20.5040955	total: 116ms	remaining: 330ms
26:	learn: 20.3181195	total: 124ms	remaining: 335ms
27:	learn: 20.0869436	total: 133ms	remaining: 342ms
28:	learn: 19.9375985	total: 141ms	remaining: 344ms
29:	learn: 19.8247516	total: 146ms	remaining: 340ms
30:	learn: 19.6261697	total: 151ms	remaining: 336ms
31:	learn: 19.4547236	total: 156ms	remaining: 331ms
32:	learn: 19.3157092	total: 161ms	remaining: 327ms
33:	learn: 19.1561419	total: 167ms	remaining: 323ms
34:	learn: 19.0453620	total: 172ms	remaining: 319ms
35:	learn: 18.8738574	total: 177ms	remaining: 315ms
36:	learn: 18.7072907	total: 183ms	remaining: 311ms
37:	learn: 18.5877943	total: 188ms	remaining: 306ms
38:	learn: 18.4436380	total: 193ms	remaining: 302ms
39:	learn: 18.3463356	total: 198ms	remaining: 297ms
40:	learn: 18.2008059	total: 203ms	remaining: 291ms
41:	learn: 18.0582079	total: 207ms	remaining: 286ms
42:	learn: 17.8891982	total: 213ms	remaining: 282ms
43:	learn: 17.7332246	total: 218ms	remaining: 277ms
44:	learn: 17.6206421	total: 222ms	remaining: 271ms
45:	learn: 17.4982800	total: 226ms	remaining: 265ms
46:	learn: 17.3970150	total: 230ms	remaining: 259ms
47:	learn: 17.3058203	total: 234ms	remaining: 253ms
48:	learn: 17.1789256	total: 238ms	remaining: 247ms
49:	learn: 17.0916229	total: 242ms	remaining: 242ms
50:	learn: 16.9859820	total: 246ms	remaining: 236ms
51:	learn: 16.8995582	total: 250ms	remaining: 231ms
52:	learn: 16.8137014	total: 254ms	remaining: 226ms
53:	learn: 16.7021451	total: 259ms	remaining: 220ms
54:	learn: 16.5895582	total: 263ms	remaining: 215ms
55:	learn: 16.5015639	total: 267ms	remaining: 209ms
56:	learn: 16.4356637	total: 271ms	remaining: 204ms
57:	learn: 16.3514525	total: 276ms	remaining: 200ms
58:	learn: 16.2401369	total: 280ms	remaining: 195ms
59:	learn: 16.1293223	total: 284ms	remaining: 190ms
60:	learn: 16.0271167	total: 289ms	remaining: 185ms
61:	learn: 15.9126257	total: 293ms	remaining: 180ms
62:	learn: 15.8391096	total: 298ms	remaining: 175ms
63:	learn: 15.7441773	total: 302ms	remaining: 170ms
64:	learn: 15.6885195	total: 307ms	remaining: 165ms
65:	learn: 15.6052039	total: 313ms	remaining: 161ms
66:	learn: 15.5074202	total: 321ms	remaining: 158ms
67:	learn: 15.4054338	total: 328ms	remaining: 155ms
68:	learn: 15.2885714	total: 335ms	remaining: 151ms
69:	learn: 15.2157472	total: 343ms	remaining: 147ms
70:	learn: 15.1031554	total: 348ms	remaining: 142ms
71:	learn: 15.0237470	total: 354ms	remaining: 138ms
72:	learn: 14.9756825	total: 359ms	remaining: 133ms
73:	learn: 14.8840596	total: 364ms	remaining: 128ms
74:	learn: 14.8077061	total: 369ms	remaining: 123ms
75:	learn: 14.7444437	total: 374ms	remaining: 118ms
76:	learn: 14.6751720	total: 382ms	remaining: 114ms
77:	learn: 14.5830333	total: 387ms	remaining: 109ms
78:	learn: 14.5241206	total: 393ms	remaining: 104ms
79:	learn: 14.4892731	total: 397ms	remaining: 99.3ms
80:	learn: 14.4256605	total: 402ms	remaining: 94.2ms
81:	learn: 14.3666860	total: 407ms	remaining: 89.4ms
82:	learn: 14.2938372	total: 413ms	remaining: 84.6ms
83:	learn: 14.2161532	total: 417ms	remaining: 79.5ms
84:	learn: 14.1582910	total: 421ms	remaining: 74.3ms
85:	learn: 14.1029153	total: 425ms	remaining: 69.3ms
86:	learn: 14.0475835	total: 429ms	remaining: 64.2ms
87:	learn: 13.9892661	total: 434ms	remaining: 59.1ms
88:	learn: 13.9481628	total: 438ms	remaining: 54.1ms
89:	learn: 13.8483991	total: 442ms	remaining: 49.1ms
90:	learn: 13.7775614	total: 446ms	remaining: 44.1ms
91:	learn: 13.7304585	total: 450ms	remaining: 39.1ms
92:	learn: 13.6783381	total: 454ms	remaining: 34.2ms
93:	learn: 13.6356964	total: 458ms	remaining: 29.3ms
94:	learn: 13.5924371	total: 462ms	remaining: 24.3ms
95:	learn: 13.5400746	total: 467ms	remaining: 19.4ms
96:	learn: 13.4897333	total: 471ms	remaining: 14.6ms
97:	learn: 13.4470321	total: 475ms	remaining: 9.69ms
98:	learn: 13.3856082	total: 480ms	remaining: 4.84ms
99:	learn: 13.3082371	total: 484ms	remaining: 0us
0:	learn: 43.0395283	total: 5.39ms	remaining: 533ms
1:	learn: 42.1130223	total: 10.4ms	remaining: 508ms
2:	learn: 41.1753409	total: 15.6ms	remaining: 505ms
3:	learn: 40.3637444	total: 20.6ms	remaining: 494ms
4:	learn: 39.6508088	total: 25.6ms	remaining: 486ms
5:	learn: 38.7217934	total: 31ms	remaining: 486ms
6:	learn: 37.8538055	total: 35.8ms	remaining: 476ms
7:	learn: 36.9793574	total: 40.7ms	remaining: 468ms
8:	learn: 36.3076984	total: 46ms	remaining: 465ms
9:	learn: 35.6673160	total: 51ms	remaining: 459ms
10:	learn: 34.8889800	total: 56.2ms	remaining: 455ms
11:	learn: 34.1675517	total: 61.5ms	remaining: 451ms
12:	learn: 33.6779564	total: 67.2ms	remaining: 450ms
13:	learn: 33.0710039	total: 73.3ms	remaining: 450ms
14:	learn: 32.4966674	total: 77.1ms	remaining: 437ms
15:	learn: 31.9492856	total: 81.3ms	remaining: 427ms
16:	learn: 31.5108129	total: 85.3ms	remaining: 417ms
17:	learn: 30.9804023	total: 89.5ms	remaining: 408ms
18:	learn: 30.4169089	total: 93.4ms	remaining: 398ms
19:	learn: 29.8930375	total: 97ms	remaining: 388ms
20:	learn: 29.3974421	total: 102ms	remaining: 382ms
21:	learn: 28.8792307	total: 106ms	remaining: 374ms
22:	learn: 28.3894474	total: 110ms	remaining: 367ms
23:	learn: 27.9921276	total: 114ms	remaining: 360ms
24:	learn: 27.6158887	total: 118ms	remaining: 354ms
25:	learn: 27.2866950	total: 122ms	remaining: 348ms
26:	learn: 26.8770708	total: 126ms	remaining: 341ms
27:	learn: 26.6233005	total: 130ms	remaining: 335ms
28:	learn: 26.2921934	total: 135ms	remaining: 330ms
29:	learn: 25.9156920	total: 139ms	remaining: 325ms
30:	learn: 25.5311106	total: 141ms	remaining: 313ms
31:	learn: 25.2178997	total: 145ms	remaining: 309ms
32:	learn: 24.8572196	total: 150ms	remaining: 304ms
33:	learn: 24.5849710	total: 154ms	remaining: 300ms
34:	learn: 24.2209190	total: 159ms	remaining: 295ms
35:	learn: 23.8708250	total: 164ms	remaining: 291ms
36:	learn: 23.5325279	total: 170ms	remaining: 290ms
37:	learn: 23.2116148	total: 178ms	remaining: 291ms
38:	learn: 22.9696787	total: 186ms	remaining: 291ms
39:	learn: 22.7936783	total: 195ms	remaining: 292ms
40:	learn: 22.6228847	total: 202ms	remaining: 291ms
41:	learn: 22.3691527	total: 208ms	remaining: 287ms
42:	learn: 22.1002173	total: 214ms	remaining: 283ms
43:	learn: 21.9157268	total: 219ms	remaining: 278ms
44:	learn: 21.7229102	total: 224ms	remaining: 274ms
45:	learn: 21.4642005	total: 230ms	remaining: 270ms
46:	learn: 21.3029442	total: 236ms	remaining: 266ms
47:	learn: 21.1469792	total: 241ms	remaining: 261ms
48:	learn: 20.9458235	total: 246ms	remaining: 257ms
49:	learn: 20.7335242	total: 252ms	remaining: 252ms
50:	learn: 20.5440269	total: 257ms	remaining: 247ms
51:	learn: 20.3661449	total: 262ms	remaining: 242ms
52:	learn: 20.2158134	total: 267ms	remaining: 237ms
53:	learn: 19.9934873	total: 273ms	remaining: 232ms
54:	learn: 19.7879739	total: 278ms	remaining: 227ms
55:	learn: 19.6630460	total: 282ms	remaining: 222ms
56:	learn: 19.5152729	total: 286ms	remaining: 216ms
57:	learn: 19.3581128	total: 291ms	remaining: 211ms
58:	learn: 19.2209303	total: 295ms	remaining: 205ms
59:	learn: 19.0965248	total: 299ms	remaining: 200ms
60:	learn: 19.0035954	total: 303ms	remaining: 194ms
61:	learn: 18.8554149	total: 308ms	remaining: 189ms
62:	learn: 18.7095427	total: 312ms	remaining: 183ms
63:	learn: 18.5751494	total: 316ms	remaining: 178ms
64:	learn: 18.4678251	total: 321ms	remaining: 173ms
65:	learn: 18.3500325	total: 325ms	remaining: 168ms
66:	learn: 18.2088983	total: 330ms	remaining: 162ms
67:	learn: 18.0737705	total: 334ms	remaining: 157ms
68:	learn: 17.9325058	total: 339ms	remaining: 152ms
69:	learn: 17.8003911	total: 344ms	remaining: 147ms
70:	learn: 17.7385366	total: 349ms	remaining: 142ms
71:	learn: 17.6106998	total: 353ms	remaining: 137ms
72:	learn: 17.4816270	total: 358ms	remaining: 132ms
73:	learn: 17.4025554	total: 363ms	remaining: 128ms
74:	learn: 17.2902108	total: 368ms	remaining: 123ms
75:	learn: 17.2158048	total: 376ms	remaining: 119ms
76:	learn: 17.1261053	total: 384ms	remaining: 115ms
77:	learn: 17.0308917	total: 393ms	remaining: 111ms
78:	learn: 16.9546705	total: 399ms	remaining: 106ms
79:	learn: 16.8319165	total: 405ms	remaining: 101ms
80:	learn: 16.7687017	total: 411ms	remaining: 96.4ms
81:	learn: 16.6972326	total: 416ms	remaining: 91.4ms
82:	learn: 16.6124580	total: 422ms	remaining: 86.4ms
83:	learn: 16.4999052	total: 428ms	remaining: 81.5ms
84:	learn: 16.4302484	total: 433ms	remaining: 76.5ms
85:	learn: 16.3201363	total: 438ms	remaining: 71.4ms
86:	learn: 16.2534314	total: 444ms	remaining: 66.3ms
87:	learn: 16.1720485	total: 449ms	remaining: 61.3ms
88:	learn: 16.0625751	total: 455ms	remaining: 56.2ms
89:	learn: 15.9135088	total: 459ms	remaining: 51ms
90:	learn: 15.8658863	total: 465ms	remaining: 46ms
91:	learn: 15.8066805	total: 470ms	remaining: 40.9ms
92:	learn: 15.7412103	total: 475ms	remaining: 35.7ms
93:	learn: 15.6542776	total: 479ms	remaining: 30.6ms
94:	learn: 15.5760334	total: 483ms	remaining: 25.4ms
95:	learn: 15.5434131	total: 488ms	remaining: 20.3ms
96:	learn: 15.4709561	total: 492ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 496ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 500ms	remaining: 5.05ms
99:	learn: 15.3106595	total: 504ms	remaining: 0us
0:	learn: 46.7142257	total: 5.24ms	remaining: 519ms
1:	learn: 45.7634153	total: 9.8ms	remaining: 480ms
2:	learn: 45.0054253	total: 14.2ms	remaining: 458ms
3:	learn: 44.2120432	total: 19.3ms	remaining: 464ms
4:	learn: 43.3960472	total: 27.5ms	remaining: 522ms
5:	learn: 42.8588120	total: 35.1ms	remaining: 549ms
6:	learn: 41.9533701	total: 44ms	remaining: 584ms
7:	learn: 41.2745030	total: 52.6ms	remaining: 605ms
8:	learn: 40.6797495	total: 57.8ms	remaining: 584ms
9:	learn: 39.9899571	total: 62.8ms	remaining: 565ms
10:	learn: 39.4682100	total: 67.8ms	remaining: 549ms
11:	learn: 39.0305595	total: 73ms	remaining: 536ms
12:	learn: 38.4200417	total: 78.2ms	remaining: 523ms
13:	learn: 37.8425194	total: 83ms	remaining: 510ms
14:	learn: 37.4203127	total: 87.8ms	remaining: 498ms
15:	learn: 36.9917688	total: 93.1ms	remaining: 489ms
16:	learn: 36.5544138	total: 98.4ms	remaining: 480ms
17:	learn: 36.0727019	total: 103ms	remaining: 471ms
18:	learn: 35.4835715	total: 108ms	remaining: 460ms
19:	learn: 34.9865654	total: 113ms	remaining: 453ms
20:	learn: 34.6063373	total: 119ms	remaining: 446ms
21:	learn: 34.0997289	total: 124ms	remaining: 438ms
22:	learn: 33.7313171	total: 128ms	remaining: 428ms
23:	learn: 33.3582000	total: 132ms	remaining: 417ms
24:	learn: 32.9432456	total: 136ms	remaining: 408ms
25:	learn: 32.5220888	total: 140ms	remaining: 399ms
26:	learn: 32.2172292	total: 144ms	remaining: 390ms
27:	learn: 31.8972904	total: 149ms	remaining: 382ms
28:	learn: 31.6405350	total: 153ms	remaining: 374ms
29:	learn: 31.4167702	total: 156ms	remaining: 365ms
30:	learn: 30.8541961	total: 158ms	remaining: 352ms
31:	learn: 30.5572111	total: 162ms	remaining: 345ms
32:	learn: 30.1700399	total: 166ms	remaining: 338ms
33:	learn: 29.8537271	total: 170ms	remaining: 331ms
34:	learn: 29.6192540	total: 175ms	remaining: 324ms
35:	learn: 29.3276362	total: 179ms	remaining: 317ms
36:	learn: 28.9985179	total: 183ms	remaining: 311ms
37:	learn: 28.7046880	total: 187ms	remaining: 305ms
38:	learn: 28.4412677	total: 191ms	remaining: 299ms
39:	learn: 28.1277292	total: 196ms	remaining: 293ms
40:	learn: 27.9000750	total: 200ms	remaining: 288ms
41:	learn: 27.5433162	total: 204ms	remaining: 282ms
42:	learn: 27.2493285	total: 208ms	remaining: 276ms
43:	learn: 26.9576632	total: 210ms	remaining: 267ms
44:	learn: 26.6177110	total: 214ms	remaining: 261ms
45:	learn: 26.2812456	total: 218ms	remaining: 256ms
46:	learn: 26.0803859	total: 222ms	remaining: 250ms
47:	learn: 25.9543581	total: 226ms	remaining: 245ms
48:	learn: 25.7951582	total: 230ms	remaining: 240ms
49:	learn: 25.6548184	total: 235ms	remaining: 235ms
50:	learn: 25.4010843	total: 240ms	remaining: 230ms
51:	learn: 24.9773937	total: 244ms	remaining: 225ms
52:	learn: 24.8026156	total: 248ms	remaining: 220ms
53:	learn: 24.5568053	total: 253ms	remaining: 216ms
54:	learn: 24.2281839	total: 258ms	remaining: 211ms
55:	learn: 23.9202795	total: 263ms	remaining: 206ms
56:	learn: 23.7625591	total: 271ms	remaining: 205ms
57:	learn: 23.5429721	total: 278ms	remaining: 201ms
58:	learn: 23.3175893	total: 285ms	remaining: 198ms
59:	learn: 23.2035130	total: 290ms	remaining: 193ms
60:	learn: 23.0232450	total: 296ms	remaining: 189ms
61:	learn: 22.8384958	total: 300ms	remaining: 184ms
62:	learn: 22.6499902	total: 304ms	remaining: 178ms
63:	learn: 22.4577426	total: 308ms	remaining: 173ms
64:	learn: 22.3333158	total: 312ms	remaining: 168ms
65:	learn: 22.2064131	total: 316ms	remaining: 163ms
66:	learn: 22.1434971	total: 321ms	remaining: 158ms
67:	learn: 21.9596519	total: 324ms	remaining: 153ms
68:	learn: 21.8475576	total: 328ms	remaining: 148ms
69:	learn: 21.6954745	total: 332ms	remaining: 142ms
70:	learn: 21.5635976	total: 337ms	remaining: 138ms
71:	learn: 21.4588506	total: 341ms	remaining: 132ms
72:	learn: 21.3527268	total: 345ms	remaining: 127ms
73:	learn: 21.2661288	total: 349ms	remaining: 123ms
74:	learn: 21.1817333	total: 353ms	remaining: 118ms
75:	learn: 21.0527553	total: 357ms	remaining: 113ms
76:	learn: 20.9229021	total: 361ms	remaining: 108ms
77:	learn: 20.7563946	total: 365ms	remaining: 103ms
78:	learn: 20.6569831	total: 369ms	remaining: 98.1ms
79:	learn: 20.4982663	total: 373ms	remaining: 93.3ms
80:	learn: 20.3185460	total: 377ms	remaining: 88.5ms
81:	learn: 20.2096241	total: 381ms	remaining: 83.7ms
82:	learn: 20.1274891	total: 385ms	remaining: 78.9ms
83:	learn: 20.0740139	total: 389ms	remaining: 74.2ms
84:	learn: 19.9630699	total: 393ms	remaining: 69.4ms
85:	learn: 19.8753899	total: 398ms	remaining: 64.7ms
86:	learn: 19.6563612	total: 402ms	remaining: 60ms
87:	learn: 19.4680232	total: 406ms	remaining: 55.3ms
88:	learn: 19.3503431	total: 409ms	remaining: 50.6ms
89:	learn: 19.2221379	total: 414ms	remaining: 46ms
90:	learn: 19.0732542	total: 418ms	remaining: 41.4ms
91:	learn: 18.9825190	total: 422ms	remaining: 36.7ms
92:	learn: 18.8839009	total: 426ms	remaining: 32.1ms
93:	learn: 18.8012219	total: 430ms	remaining: 27.5ms
94:	learn: 18.7172713	total: 435ms	remaining: 22.9ms
95:	learn: 18.6201170	total: 439ms	remaining: 18.3ms
96:	learn: 18.5318611	total: 444ms	remaining: 13.7ms
97:	learn: 18.3833356	total: 448ms	remaining: 9.15ms
98:	learn: 18.3289700	total: 453ms	remaining: 4.57ms
99:	learn: 18.2227333	total: 457ms	remaining: 0us
0:	learn: 46.3764524	total: 5.7ms	remaining: 564ms
1:	learn: 45.5561269	total: 11.1ms	remaining: 542ms
2:	learn: 44.8811245	total: 16.2ms	remaining: 525ms
3:	learn: 44.0788617	total: 21.6ms	remaining: 519ms
4:	learn: 43.3619790	total: 27.1ms	remaining: 514ms
5:	learn: 42.6912112	total: 32.3ms	remaining: 506ms
6:	learn: 42.2292118	total: 37.5ms	remaining: 499ms
7:	learn: 41.7725191	total: 42.8ms	remaining: 492ms
8:	learn: 41.1676614	total: 47.5ms	remaining: 480ms
9:	learn: 40.5771076	total: 52.6ms	remaining: 473ms
10:	learn: 39.8343757	total: 58.3ms	remaining: 472ms
11:	learn: 39.3761142	total: 64.3ms	remaining: 471ms
12:	learn: 38.5254692	total: 68.6ms	remaining: 459ms
13:	learn: 37.9629555	total: 73.4ms	remaining: 451ms
14:	learn: 37.4418438	total: 77.9ms	remaining: 441ms
15:	learn: 37.0507283	total: 82.3ms	remaining: 432ms
16:	learn: 36.6264217	total: 86.7ms	remaining: 423ms
17:	learn: 36.1114940	total: 91.4ms	remaining: 417ms
18:	learn: 35.7193862	total: 96ms	remaining: 409ms
19:	learn: 35.3301177	total: 101ms	remaining: 402ms
20:	learn: 35.0598280	total: 105ms	remaining: 396ms
21:	learn: 34.5469736	total: 110ms	remaining: 389ms
22:	learn: 34.2064215	total: 114ms	remaining: 382ms
23:	learn: 33.7280710	total: 119ms	remaining: 376ms
24:	learn: 33.3282940	total: 123ms	remaining: 370ms
25:	learn: 32.8478961	total: 129ms	remaining: 366ms
26:	learn: 32.5722164	total: 134ms	remaining: 362ms
27:	learn: 32.2457019	total: 139ms	remaining: 357ms
28:	learn: 31.9230495	total: 144ms	remaining: 352ms
29:	learn: 31.4311611	total: 149ms	remaining: 347ms
30:	learn: 30.9179052	total: 154ms	remaining: 342ms
31:	learn: 30.6201141	total: 159ms	remaining: 337ms
32:	learn: 30.3421106	total: 164ms	remaining: 333ms
33:	learn: 29.9885373	total: 172ms	remaining: 334ms
34:	learn: 29.7462780	total: 180ms	remaining: 335ms
35:	learn: 29.3607153	total: 190ms	remaining: 338ms
36:	learn: 29.1793078	total: 197ms	remaining: 335ms
37:	learn: 28.9276538	total: 203ms	remaining: 332ms
38:	learn: 28.6903934	total: 209ms	remaining: 327ms
39:	learn: 28.2095033	total: 215ms	remaining: 322ms
40:	learn: 27.7990608	total: 220ms	remaining: 316ms
41:	learn: 27.5406632	total: 225ms	remaining: 311ms
42:	learn: 27.2575376	total: 232ms	remaining: 307ms
43:	learn: 26.9741707	total: 237ms	remaining: 302ms
44:	learn: 26.6606899	total: 243ms	remaining: 297ms
45:	learn: 26.4015833	total: 248ms	remaining: 291ms
46:	learn: 26.1828993	total: 253ms	remaining: 285ms
47:	learn: 26.0233709	total: 256ms	remaining: 277ms
48:	learn: 25.9300399	total: 260ms	remaining: 271ms
49:	learn: 25.5861489	total: 266ms	remaining: 266ms
50:	learn: 25.4322012	total: 271ms	remaining: 261ms
51:	learn: 25.1595644	total: 276ms	remaining: 255ms
52:	learn: 24.9955303	total: 280ms	remaining: 249ms
53:	learn: 24.7273966	total: 285ms	remaining: 243ms
54:	learn: 24.5747978	total: 290ms	remaining: 237ms
55:	learn: 24.3807977	total: 295ms	remaining: 231ms
56:	learn: 24.1689569	total: 300ms	remaining: 226ms
57:	learn: 23.9898221	total: 304ms	remaining: 220ms
58:	learn: 23.7566414	total: 309ms	remaining: 215ms
59:	learn: 23.6641165	total: 314ms	remaining: 209ms
60:	learn: 23.5658066	total: 319ms	remaining: 204ms
61:	learn: 23.4338851	total: 323ms	remaining: 198ms
62:	learn: 23.2408837	total: 327ms	remaining: 192ms
63:	learn: 23.0642038	total: 332ms	remaining: 187ms
64:	learn: 22.9032045	total: 337ms	remaining: 181ms
65:	learn: 22.7736138	total: 341ms	remaining: 176ms
66:	learn: 22.6836443	total: 346ms	remaining: 171ms
67:	learn: 22.5983654	total: 351ms	remaining: 165ms
68:	learn: 22.4419813	total: 356ms	remaining: 160ms
69:	learn: 22.2863339	total: 361ms	remaining: 155ms
70:	learn: 22.1792943	total: 366ms	remaining: 149ms
71:	learn: 22.1130574	total: 371ms	remaining: 144ms
72:	learn: 21.9858161	total: 376ms	remaining: 139ms
73:	learn: 21.8577784	total: 389ms	remaining: 137ms
74:	learn: 21.7845222	total: 401ms	remaining: 134ms
75:	learn: 21.6831390	total: 408ms	remaining: 129ms
76:	learn: 21.6292521	total: 414ms	remaining: 124ms
77:	learn: 21.5789330	total: 419ms	remaining: 118ms
78:	learn: 21.5420942	total: 424ms	remaining: 113ms
79:	learn: 21.4280939	total: 429ms	remaining: 107ms
80:	learn: 21.3641165	total: 434ms	remaining: 102ms
81:	learn: 21.2734814	total: 440ms	remaining: 96.5ms
82:	learn: 21.2220323	total: 445ms	remaining: 91.1ms
83:	learn: 21.0625792	total: 450ms	remaining: 85.8ms
84:	learn: 20.9488320	total: 456ms	remaining: 80.4ms
85:	learn: 20.8504255	total: 461ms	remaining: 75ms
86:	learn: 20.7848510	total: 466ms	remaining: 69.6ms
87:	learn: 20.7247442	total: 470ms	remaining: 64.1ms
88:	learn: 20.5698590	total: 476ms	remaining: 58.8ms
89:	learn: 20.4067620	total: 481ms	remaining: 53.4ms
90:	learn: 20.3062482	total: 485ms	remaining: 48ms
91:	learn: 20.2029696	total: 489ms	remaining: 42.6ms
92:	learn: 20.1384849	total: 493ms	remaining: 37.1ms
93:	learn: 20.0260709	total: 497ms	remaining: 31.7ms
94:	learn: 19.9122100	total: 501ms	remaining: 26.3ms
95:	learn: 19.8648487	total: 505ms	remaining: 21ms
96:	learn: 19.8207072	total: 509ms	remaining: 15.7ms
97:	learn: 19.7261189	total: 513ms	remaining: 10.5ms
98:	learn: 19.7042438	total: 516ms	remaining: 5.21ms
99:	learn: 19.6546645	total: 520ms	remaining: 0us
0:	learn: 47.0239288	total: 4.47ms	remaining: 443ms
1:	learn: 46.2253829	total: 9.14ms	remaining: 448ms
2:	learn: 45.5580301	total: 18.2ms	remaining: 588ms
3:	learn: 44.7273237	total: 25.4ms	remaining: 610ms
4:	learn: 43.8867421	total: 34.3ms	remaining: 652ms
5:	learn: 43.3615911	total: 41.1ms	remaining: 644ms
6:	learn: 42.8548390	total: 46.8ms	remaining: 621ms
7:	learn: 42.1606758	total: 51.9ms	remaining: 596ms
8:	learn: 41.6625870	total: 56.9ms	remaining: 576ms
9:	learn: 40.9497092	total: 61.9ms	remaining: 557ms
10:	learn: 40.1886318	total: 67.3ms	remaining: 544ms
11:	learn: 39.7456423	total: 72.4ms	remaining: 531ms
12:	learn: 39.1171373	total: 77.5ms	remaining: 519ms
13:	learn: 38.5451069	total: 82.7ms	remaining: 508ms
14:	learn: 38.0155834	total: 88ms	remaining: 499ms
15:	learn: 37.5631354	total: 93.2ms	remaining: 490ms
16:	learn: 37.1030023	total: 98.1ms	remaining: 479ms
17:	learn: 36.4563029	total: 103ms	remaining: 470ms
18:	learn: 36.0160976	total: 109ms	remaining: 464ms
19:	learn: 35.5079827	total: 114ms	remaining: 456ms
20:	learn: 35.2111885	total: 118ms	remaining: 445ms
21:	learn: 34.9397465	total: 122ms	remaining: 434ms
22:	learn: 34.5270048	total: 126ms	remaining: 422ms
23:	learn: 34.0169260	total: 130ms	remaining: 413ms
24:	learn: 33.7454892	total: 135ms	remaining: 404ms
25:	learn: 33.2648157	total: 139ms	remaining: 396ms
26:	learn: 32.8899427	total: 143ms	remaining: 387ms
27:	learn: 32.6185050	total: 147ms	remaining: 379ms
28:	learn: 32.3528531	total: 151ms	remaining: 370ms
29:	learn: 32.0859923	total: 155ms	remaining: 363ms
30:	learn: 31.6511144	total: 159ms	remaining: 355ms
31:	learn: 31.2571765	total: 163ms	remaining: 347ms
32:	learn: 30.9770049	total: 167ms	remaining: 340ms
33:	learn: 30.6084872	total: 172ms	remaining: 333ms
34:	learn: 30.3448632	total: 176ms	remaining: 326ms
35:	learn: 30.0360942	total: 180ms	remaining: 320ms
36:	learn: 29.6648968	total: 183ms	remaining: 312ms
37:	learn: 29.3165114	total: 188ms	remaining: 306ms
38:	learn: 29.0829198	total: 192ms	remaining: 300ms
39:	learn: 28.7752064	total: 196ms	remaining: 294ms
40:	learn: 28.3622191	total: 199ms	remaining: 287ms
41:	learn: 28.1346631	total: 203ms	remaining: 281ms
42:	learn: 27.9585719	total: 208ms	remaining: 275ms
43:	learn: 27.6565566	total: 211ms	remaining: 269ms
44:	learn: 27.3616172	total: 216ms	remaining: 263ms
45:	learn: 27.0658637	total: 220ms	remaining: 258ms
46:	learn: 26.8660382	total: 224ms	remaining: 252ms
47:	learn: 26.6536078	total: 228ms	remaining: 247ms
48:	learn: 26.3524440	total: 233ms	remaining: 242ms
49:	learn: 26.1595277	total: 237ms	remaining: 237ms
50:	learn: 25.9273523	total: 241ms	remaining: 232ms
51:	learn: 25.7195580	total: 246ms	remaining: 227ms
52:	learn: 25.5730225	total: 251ms	remaining: 222ms
53:	learn: 25.3455276	total: 255ms	remaining: 217ms
54:	learn: 25.2289675	total: 262ms	remaining: 215ms
55:	learn: 25.0133024	total: 270ms	remaining: 212ms
56:	learn: 24.8406714	total: 278ms	remaining: 210ms
57:	learn: 24.6367857	total: 284ms	remaining: 206ms
58:	learn: 24.5338177	total: 292ms	remaining: 203ms
59:	learn: 24.3799964	total: 297ms	remaining: 198ms
60:	learn: 24.1447492	total: 302ms	remaining: 193ms
61:	learn: 23.9880495	total: 307ms	remaining: 188ms
62:	learn: 23.7140630	total: 312ms	remaining: 183ms
63:	learn: 23.5003791	total: 317ms	remaining: 179ms
64:	learn: 23.3207645	total: 323ms	remaining: 174ms
65:	learn: 23.1958356	total: 328ms	remaining: 169ms
66:	learn: 23.0471302	total: 334ms	remaining: 164ms
67:	learn: 22.8977183	total: 338ms	remaining: 159ms
68:	learn: 22.7187400	total: 343ms	remaining: 154ms
69:	learn: 22.6523405	total: 348ms	remaining: 149ms
70:	learn: 22.4767453	total: 354ms	remaining: 145ms
71:	learn: 22.3243677	total: 359ms	remaining: 140ms
72:	learn: 22.2133096	total: 364ms	remaining: 135ms
73:	learn: 22.1151713	total: 368ms	remaining: 129ms
74:	learn: 22.0296666	total: 372ms	remaining: 124ms
75:	learn: 21.9195980	total: 375ms	remaining: 119ms
76:	learn: 21.8401730	total: 380ms	remaining: 113ms
77:	learn: 21.8079797	total: 383ms	remaining: 108ms
78:	learn: 21.7274109	total: 387ms	remaining: 103ms
79:	learn: 21.6663032	total: 391ms	remaining: 97.8ms
80:	learn: 21.5633117	total: 396ms	remaining: 92.8ms
81:	learn: 21.4542467	total: 400ms	remaining: 87.9ms
82:	learn: 21.3177957	total: 405ms	remaining: 83ms
83:	learn: 21.1289167	total: 410ms	remaining: 78.1ms
84:	learn: 21.0297368	total: 415ms	remaining: 73.2ms
85:	learn: 20.9089564	total: 419ms	remaining: 68.3ms
86:	learn: 20.7653988	total: 424ms	remaining: 63.4ms
87:	learn: 20.6521894	total: 429ms	remaining: 58.5ms
88:	learn: 20.5193021	total: 434ms	remaining: 53.6ms
89:	learn: 20.4361620	total: 439ms	remaining: 48.7ms
90:	learn: 20.3546710	total: 443ms	remaining: 43.9ms
91:	learn: 20.2513296	total: 448ms	remaining: 39ms
92:	learn: 20.1605550	total: 453ms	remaining: 34.1ms
93:	learn: 20.0515942	total: 458ms	remaining: 29.2ms
94:	learn: 19.9800764	total: 467ms	remaining: 24.6ms
95:	learn: 19.8996532	total: 475ms	remaining: 19.8ms
96:	learn: 19.8450910	total: 483ms	remaining: 14.9ms
97:	learn: 19.7887346	total: 491ms	remaining: 10ms
98:	learn: 19.7230872	total: 496ms	remaining: 5.01ms
99:	learn: 19.6328825	total: 502ms	remaining: 0us
0:	learn: 27.7143805	total: 4.42ms	remaining: 438ms
1:	learn: 27.2245894	total: 8.75ms	remaining: 429ms
2:	learn: 26.8693029	total: 13.3ms	remaining: 429ms
3:	learn: 26.4713217	total: 17.7ms	remaining: 424ms
4:	learn: 26.1261794	total: 21.9ms	remaining: 416ms
5:	learn: 25.8160419	total: 25.4ms	remaining: 397ms
6:	learn: 25.3860050	total: 29ms	remaining: 386ms
7:	learn: 25.0621682	total: 33.4ms	remaining: 384ms
8:	learn: 24.7574429	total: 38ms	remaining: 384ms
9:	learn: 24.5154734	total: 42.1ms	remaining: 379ms
10:	learn: 24.2199118	total: 46.4ms	remaining: 375ms
11:	learn: 23.9774955	total: 51.1ms	remaining: 375ms
12:	learn: 23.7755558	total: 55.6ms	remaining: 372ms
13:	learn: 23.4384476	total: 60.1ms	remaining: 369ms
14:	learn: 23.2035324	total: 64.6ms	remaining: 366ms
15:	learn: 22.9925293	total: 69.2ms	remaining: 363ms
16:	learn: 22.7981113	total: 73.8ms	remaining: 360ms
17:	learn: 22.5829245	total: 78.3ms	remaining: 357ms
18:	learn: 22.4131931	total: 83.3ms	remaining: 355ms
19:	learn: 22.1833629	total: 91.4ms	remaining: 366ms
20:	learn: 21.9660824	total: 99.1ms	remaining: 373ms
21:	learn: 21.7281998	total: 108ms	remaining: 382ms
22:	learn: 21.5000824	total: 115ms	remaining: 385ms
23:	learn: 21.2717031	total: 120ms	remaining: 381ms
24:	learn: 21.0926073	total: 125ms	remaining: 376ms
25:	learn: 20.8922144	total: 130ms	remaining: 371ms
26:	learn: 20.7498215	total: 135ms	remaining: 365ms
27:	learn: 20.5781754	total: 137ms	remaining: 351ms
28:	learn: 20.4294665	total: 142ms	remaining: 347ms
29:	learn: 20.2273985	total: 146ms	remaining: 341ms
30:	learn: 20.0920234	total: 151ms	remaining: 337ms
31:	learn: 19.9311712	total: 156ms	remaining: 332ms
32:	learn: 19.7852359	total: 161ms	remaining: 327ms
33:	learn: 19.6211007	total: 166ms	remaining: 323ms
34:	learn: 19.4806501	total: 171ms	remaining: 317ms
35:	learn: 19.3415380	total: 176ms	remaining: 313ms
36:	learn: 19.2075499	total: 181ms	remaining: 309ms
37:	learn: 19.0582745	total: 186ms	remaining: 303ms
38:	learn: 18.8852020	total: 189ms	remaining: 296ms
39:	learn: 18.6868677	total: 193ms	remaining: 290ms
40:	learn: 18.5481481	total: 198ms	remaining: 284ms
41:	learn: 18.4508846	total: 201ms	remaining: 278ms
42:	learn: 18.3650555	total: 205ms	remaining: 272ms
43:	learn: 18.1818415	total: 209ms	remaining: 266ms
44:	learn: 18.0782035	total: 213ms	remaining: 260ms
45:	learn: 17.9724472	total: 216ms	remaining: 254ms
46:	learn: 17.8657480	total: 220ms	remaining: 248ms
47:	learn: 17.7217309	total: 224ms	remaining: 243ms
48:	learn: 17.6403061	total: 228ms	remaining: 237ms
49:	learn: 17.5245570	total: 232ms	remaining: 232ms
50:	learn: 17.3976790	total: 236ms	remaining: 227ms
51:	learn: 17.2544460	total: 240ms	remaining: 222ms
52:	learn: 17.1507940	total: 244ms	remaining: 217ms
53:	learn: 17.0391276	total: 249ms	remaining: 212ms
54:	learn: 16.9348155	total: 254ms	remaining: 208ms
55:	learn: 16.8475635	total: 258ms	remaining: 203ms
56:	learn: 16.7691656	total: 263ms	remaining: 198ms
57:	learn: 16.6277836	total: 268ms	remaining: 194ms
58:	learn: 16.5524230	total: 272ms	remaining: 189ms
59:	learn: 16.4614442	total: 277ms	remaining: 185ms
60:	learn: 16.3077836	total: 282ms	remaining: 180ms
61:	learn: 16.2278133	total: 290ms	remaining: 178ms
62:	learn: 16.1288632	total: 297ms	remaining: 175ms
63:	learn: 16.0734717	total: 306ms	remaining: 172ms
64:	learn: 16.0085754	total: 312ms	remaining: 168ms
65:	learn: 15.9278700	total: 318ms	remaining: 164ms
66:	learn: 15.8320321	total: 323ms	remaining: 159ms
67:	learn: 15.7706425	total: 328ms	remaining: 155ms
68:	learn: 15.6404344	total: 333ms	remaining: 150ms
69:	learn: 15.5678129	total: 338ms	remaining: 145ms
70:	learn: 15.4980047	total: 343ms	remaining: 140ms
71:	learn: 15.4324207	total: 348ms	remaining: 135ms
72:	learn: 15.3551877	total: 353ms	remaining: 130ms
73:	learn: 15.2930769	total: 358ms	remaining: 126ms
74:	learn: 15.2307174	total: 363ms	remaining: 121ms
75:	learn: 15.1600937	total: 368ms	remaining: 116ms
76:	learn: 15.0837614	total: 372ms	remaining: 111ms
77:	learn: 15.0185989	total: 378ms	remaining: 107ms
78:	learn: 14.9300717	total: 384ms	remaining: 102ms
79:	learn: 14.8928389	total: 388ms	remaining: 96.9ms
80:	learn: 14.8250040	total: 391ms	remaining: 91.8ms
81:	learn: 14.7906114	total: 395ms	remaining: 86.7ms
82:	learn: 14.7214118	total: 399ms	remaining: 81.7ms
83:	learn: 14.6657875	total: 403ms	remaining: 76.8ms
84:	learn: 14.6085682	total: 407ms	remaining: 71.8ms
85:	learn: 14.5334097	total: 411ms	remaining: 67ms
86:	learn: 14.4681230	total: 415ms	remaining: 62.1ms
87:	learn: 14.4088334	total: 419ms	remaining: 57.2ms
88:	learn: 14.3541312	total: 423ms	remaining: 52.3ms
89:	learn: 14.2923636	total: 427ms	remaining: 47.5ms
90:	learn: 14.2339259	total: 431ms	remaining: 42.7ms
91:	learn: 14.1439983	total: 435ms	remaining: 37.8ms
92:	learn: 14.0701371	total: 439ms	remaining: 33ms
93:	learn: 13.9770736	total: 443ms	remaining: 28.3ms
94:	learn: 13.9275801	total: 447ms	remaining: 23.5ms
95:	learn: 13.8717050	total: 452ms	remaining: 18.8ms
96:	learn: 13.7821340	total: 456ms	remaining: 14.1ms
97:	learn: 13.7383865	total: 461ms	remaining: 9.4ms
98:	learn: 13.6850693	total: 465ms	remaining: 4.7ms
99:	learn: 13.6273539	total: 470ms	remaining: 0us
0:	learn: 43.2118728	total: 5.42ms	remaining: 536ms
1:	learn: 42.3090111	total: 10.6ms	remaining: 519ms
2:	learn: 41.3060764	total: 15.9ms	remaining: 514ms
3:	learn: 40.3653958	total: 20.9ms	remaining: 501ms
4:	learn: 39.5006331	total: 25.9ms	remaining: 493ms
5:	learn: 38.6473041	total: 30.8ms	remaining: 482ms
6:	learn: 37.8560875	total: 35.9ms	remaining: 477ms
7:	learn: 37.0772701	total: 40.6ms	remaining: 466ms
8:	learn: 36.3260704	total: 44.7ms	remaining: 452ms
9:	learn: 35.7300393	total: 50.1ms	remaining: 450ms
10:	learn: 34.9336547	total: 55.6ms	remaining: 450ms
11:	learn: 34.1758190	total: 60.1ms	remaining: 441ms
12:	learn: 33.5120760	total: 64ms	remaining: 428ms
13:	learn: 32.8731142	total: 68.3ms	remaining: 420ms
14:	learn: 32.3579595	total: 71.9ms	remaining: 407ms
15:	learn: 31.7969963	total: 75.8ms	remaining: 398ms
16:	learn: 31.3472797	total: 79.8ms	remaining: 389ms
17:	learn: 30.7865884	total: 83.8ms	remaining: 382ms
18:	learn: 30.3876486	total: 87.5ms	remaining: 373ms
19:	learn: 29.8840575	total: 91.6ms	remaining: 366ms
20:	learn: 29.3584237	total: 95.4ms	remaining: 359ms
21:	learn: 28.9965200	total: 99.6ms	remaining: 353ms
22:	learn: 28.6117225	total: 104ms	remaining: 348ms
23:	learn: 28.1147832	total: 108ms	remaining: 341ms
24:	learn: 27.7857774	total: 112ms	remaining: 335ms
25:	learn: 27.3181226	total: 116ms	remaining: 329ms
26:	learn: 26.9019101	total: 119ms	remaining: 323ms
27:	learn: 26.6957004	total: 123ms	remaining: 316ms
28:	learn: 26.2816390	total: 127ms	remaining: 311ms
29:	learn: 25.9107534	total: 131ms	remaining: 307ms
30:	learn: 25.5773085	total: 136ms	remaining: 303ms
31:	learn: 25.1916035	total: 140ms	remaining: 297ms
32:	learn: 24.8819670	total: 144ms	remaining: 292ms
33:	learn: 24.5580488	total: 148ms	remaining: 287ms
34:	learn: 24.3088624	total: 152ms	remaining: 283ms
35:	learn: 23.9890893	total: 156ms	remaining: 278ms
36:	learn: 23.7266073	total: 163ms	remaining: 277ms
37:	learn: 23.4886046	total: 170ms	remaining: 277ms
38:	learn: 23.2786313	total: 179ms	remaining: 279ms
39:	learn: 23.0060540	total: 185ms	remaining: 278ms
40:	learn: 22.7848361	total: 193ms	remaining: 278ms
41:	learn: 22.5485511	total: 198ms	remaining: 273ms
42:	learn: 22.3113565	total: 203ms	remaining: 269ms
43:	learn: 22.1296084	total: 209ms	remaining: 266ms
44:	learn: 21.8514989	total: 214ms	remaining: 261ms
45:	learn: 21.6540201	total: 218ms	remaining: 256ms
46:	learn: 21.4203535	total: 224ms	remaining: 253ms
47:	learn: 21.2317196	total: 229ms	remaining: 248ms
48:	learn: 21.0547467	total: 234ms	remaining: 243ms
49:	learn: 20.9192535	total: 239ms	remaining: 239ms
50:	learn: 20.6975386	total: 244ms	remaining: 234ms
51:	learn: 20.5839720	total: 249ms	remaining: 230ms
52:	learn: 20.4528901	total: 254ms	remaining: 225ms
53:	learn: 20.3392419	total: 259ms	remaining: 221ms
54:	learn: 20.1518693	total: 263ms	remaining: 215ms
55:	learn: 19.9928770	total: 267ms	remaining: 210ms
56:	learn: 19.8042028	total: 271ms	remaining: 204ms
57:	learn: 19.7000879	total: 275ms	remaining: 199ms
58:	learn: 19.5524154	total: 279ms	remaining: 194ms
59:	learn: 19.4366908	total: 282ms	remaining: 188ms
60:	learn: 19.2739134	total: 286ms	remaining: 183ms
61:	learn: 19.1499266	total: 290ms	remaining: 178ms
62:	learn: 18.9948972	total: 294ms	remaining: 172ms
63:	learn: 18.8952299	total: 298ms	remaining: 167ms
64:	learn: 18.7545430	total: 301ms	remaining: 162ms
65:	learn: 18.6315116	total: 305ms	remaining: 157ms
66:	learn: 18.5164994	total: 310ms	remaining: 153ms
67:	learn: 18.3983038	total: 315ms	remaining: 148ms
68:	learn: 18.2803212	total: 319ms	remaining: 143ms
69:	learn: 18.1738467	total: 324ms	remaining: 139ms
70:	learn: 18.0884235	total: 329ms	remaining: 134ms
71:	learn: 18.0129445	total: 333ms	remaining: 129ms
72:	learn: 17.8582158	total: 337ms	remaining: 125ms
73:	learn: 17.7473705	total: 341ms	remaining: 120ms
74:	learn: 17.6431421	total: 346ms	remaining: 115ms
75:	learn: 17.5398511	total: 350ms	remaining: 110ms
76:	learn: 17.4404598	total: 354ms	remaining: 106ms
77:	learn: 17.3477525	total: 361ms	remaining: 102ms
78:	learn: 17.2283831	total: 368ms	remaining: 97.8ms
79:	learn: 17.0767035	total: 380ms	remaining: 95.1ms
80:	learn: 16.9732705	total: 386ms	remaining: 90.6ms
81:	learn: 16.8927449	total: 393ms	remaining: 86.2ms
82:	learn: 16.8145625	total: 398ms	remaining: 81.6ms
83:	learn: 16.7290845	total: 404ms	remaining: 76.9ms
84:	learn: 16.6661414	total: 409ms	remaining: 72.2ms
85:	learn: 16.5875575	total: 416ms	remaining: 67.8ms
86:	learn: 16.4578580	total: 422ms	remaining: 63.1ms
87:	learn: 16.4243550	total: 428ms	remaining: 58.3ms
88:	learn: 16.3251337	total: 433ms	remaining: 53.6ms
89:	learn: 16.2516385	total: 439ms	remaining: 48.8ms
90:	learn: 16.1226518	total: 444ms	remaining: 44ms
91:	learn: 16.0718308	total: 450ms	remaining: 39.1ms
92:	learn: 15.9636735	total: 455ms	remaining: 34.3ms
93:	learn: 15.8923693	total: 461ms	remaining: 29.5ms
94:	learn: 15.8270425	total: 466ms	remaining: 24.5ms
95:	learn: 15.7449077	total: 470ms	remaining: 19.6ms
96:	learn: 15.6978936	total: 474ms	remaining: 14.7ms
97:	learn: 15.6527285	total: 478ms	remaining: 9.76ms
98:	learn: 15.5557320	total: 482ms	remaining: 4.87ms
99:	learn: 15.4399171	total: 486ms	remaining: 0us
0:	learn: 46.7092506	total: 4.44ms	remaining: 439ms
1:	learn: 45.8266821	total: 8.9ms	remaining: 436ms
2:	learn: 45.0052023	total: 13.5ms	remaining: 438ms
3:	learn: 44.3828795	total: 18.5ms	remaining: 444ms
4:	learn: 43.7255353	total: 22.9ms	remaining: 435ms
5:	learn: 43.1663831	total: 27.1ms	remaining: 424ms
6:	learn: 42.3875189	total: 31.3ms	remaining: 416ms
7:	learn: 41.7839075	total: 36ms	remaining: 414ms
8:	learn: 41.0740108	total: 40.3ms	remaining: 407ms
9:	learn: 40.3846647	total: 44.9ms	remaining: 404ms
10:	learn: 39.8821046	total: 52ms	remaining: 421ms
11:	learn: 39.1807254	total: 59.1ms	remaining: 434ms
12:	learn: 38.7153028	total: 67.1ms	remaining: 449ms
13:	learn: 38.0474495	total: 73.4ms	remaining: 451ms
14:	learn: 37.3844461	total: 80.4ms	remaining: 455ms
15:	learn: 36.9210704	total: 85.6ms	remaining: 449ms
16:	learn: 36.3160964	total: 90.9ms	remaining: 444ms
17:	learn: 35.8915826	total: 95.9ms	remaining: 437ms
18:	learn: 35.5519989	total: 101ms	remaining: 430ms
19:	learn: 35.1437045	total: 106ms	remaining: 423ms
20:	learn: 34.6387799	total: 111ms	remaining: 417ms
21:	learn: 34.2437068	total: 116ms	remaining: 411ms
22:	learn: 33.8262100	total: 121ms	remaining: 406ms
23:	learn: 33.4683000	total: 127ms	remaining: 401ms
24:	learn: 32.9996389	total: 132ms	remaining: 395ms
25:	learn: 32.6942147	total: 137ms	remaining: 389ms
26:	learn: 32.3016096	total: 142ms	remaining: 384ms
27:	learn: 31.9517346	total: 147ms	remaining: 379ms
28:	learn: 31.5277387	total: 151ms	remaining: 370ms
29:	learn: 31.2545365	total: 155ms	remaining: 362ms
30:	learn: 31.0510813	total: 160ms	remaining: 355ms
31:	learn: 30.6383830	total: 164ms	remaining: 348ms
32:	learn: 30.2800150	total: 168ms	remaining: 341ms
33:	learn: 29.9559797	total: 172ms	remaining: 333ms
34:	learn: 29.5802745	total: 176ms	remaining: 327ms
35:	learn: 29.2605111	total: 180ms	remaining: 320ms
36:	learn: 28.9582434	total: 184ms	remaining: 313ms
37:	learn: 28.6149387	total: 188ms	remaining: 306ms
38:	learn: 28.3980091	total: 191ms	remaining: 299ms
39:	learn: 28.1704520	total: 196ms	remaining: 293ms
40:	learn: 27.8881319	total: 199ms	remaining: 287ms
41:	learn: 27.5805731	total: 203ms	remaining: 280ms
42:	learn: 27.3520567	total: 207ms	remaining: 274ms
43:	learn: 27.1039679	total: 211ms	remaining: 269ms
44:	learn: 26.8472623	total: 216ms	remaining: 264ms
45:	learn: 26.5757869	total: 221ms	remaining: 259ms
46:	learn: 26.4579118	total: 226ms	remaining: 255ms
47:	learn: 26.1279008	total: 231ms	remaining: 250ms
48:	learn: 25.8503346	total: 236ms	remaining: 246ms
49:	learn: 25.7039015	total: 241ms	remaining: 241ms
50:	learn: 25.4317154	total: 246ms	remaining: 236ms
51:	learn: 25.3028008	total: 251ms	remaining: 232ms
52:	learn: 25.1906194	total: 256ms	remaining: 227ms
53:	learn: 25.0082790	total: 260ms	remaining: 222ms
54:	learn: 24.8264791	total: 269ms	remaining: 220ms
55:	learn: 24.5961365	total: 276ms	remaining: 217ms
56:	learn: 24.4007690	total: 286ms	remaining: 215ms
57:	learn: 24.2476228	total: 303ms	remaining: 220ms
58:	learn: 23.9582465	total: 309ms	remaining: 215ms
59:	learn: 23.7247243	total: 314ms	remaining: 209ms
60:	learn: 23.5379970	total: 320ms	remaining: 204ms
61:	learn: 23.3908530	total: 325ms	remaining: 199ms
62:	learn: 23.2123241	total: 330ms	remaining: 194ms
63:	learn: 23.1010345	total: 337ms	remaining: 189ms
64:	learn: 22.9032423	total: 342ms	remaining: 184ms
65:	learn: 22.7815198	total: 347ms	remaining: 179ms
66:	learn: 22.6325063	total: 352ms	remaining: 173ms
67:	learn: 22.5406071	total: 357ms	remaining: 168ms
68:	learn: 22.4413332	total: 362ms	remaining: 163ms
69:	learn: 22.3005609	total: 368ms	remaining: 158ms
70:	learn: 22.1779345	total: 372ms	remaining: 152ms
71:	learn: 22.0491576	total: 376ms	remaining: 146ms
72:	learn: 21.9379106	total: 380ms	remaining: 140ms
73:	learn: 21.7597096	total: 383ms	remaining: 135ms
74:	learn: 21.6042300	total: 387ms	remaining: 129ms
75:	learn: 21.4644642	total: 391ms	remaining: 124ms
76:	learn: 21.3811287	total: 395ms	remaining: 118ms
77:	learn: 21.3089276	total: 399ms	remaining: 112ms
78:	learn: 21.1654429	total: 403ms	remaining: 107ms
79:	learn: 20.9602460	total: 407ms	remaining: 102ms
80:	learn: 20.7959461	total: 411ms	remaining: 96.3ms
81:	learn: 20.5861156	total: 414ms	remaining: 90.9ms
82:	learn: 20.5120680	total: 418ms	remaining: 85.6ms
83:	learn: 20.3997233	total: 422ms	remaining: 80.3ms
84:	learn: 20.2499469	total: 426ms	remaining: 75.2ms
85:	learn: 20.1117768	total: 430ms	remaining: 70.1ms
86:	learn: 20.0617643	total: 435ms	remaining: 65ms
87:	learn: 19.9609182	total: 439ms	remaining: 59.9ms
88:	learn: 19.8763814	total: 443ms	remaining: 54.8ms
89:	learn: 19.7843516	total: 448ms	remaining: 49.8ms
90:	learn: 19.6926200	total: 452ms	remaining: 44.7ms
91:	learn: 19.5686774	total: 457ms	remaining: 39.7ms
92:	learn: 19.4727236	total: 465ms	remaining: 35ms
93:	learn: 19.3780174	total: 472ms	remaining: 30.1ms
94:	learn: 19.2840650	total: 480ms	remaining: 25.3ms
95:	learn: 19.1747368	total: 487ms	remaining: 20.3ms
96:	learn: 19.1273306	total: 493ms	remaining: 15.2ms
97:	learn: 19.0413946	total: 498ms	remaining: 10.2ms
98:	learn: 18.8980682	total: 503ms	remaining: 5.08ms
99:	learn: 18.7799962	total: 508ms	remaining: 0us
0:	learn: 46.4426352	total: 5.87ms	remaining: 581ms
1:	learn: 45.5770653	total: 9.96ms	remaining: 488ms
2:	learn: 44.6956685	total: 13.7ms	remaining: 443ms
3:	learn: 43.9934709	total: 17.7ms	remaining: 425ms
4:	learn: 43.3008183	total: 21.5ms	remaining: 409ms
5:	learn: 42.7510022	total: 25ms	remaining: 391ms
6:	learn: 42.0237555	total: 28.6ms	remaining: 380ms
7:	learn: 41.5354996	total: 32.4ms	remaining: 372ms
8:	learn: 41.0264055	total: 36.4ms	remaining: 368ms
9:	learn: 40.5267003	total: 40.3ms	remaining: 363ms
10:	learn: 39.8363942	total: 44.2ms	remaining: 358ms
11:	learn: 39.2014089	total: 48.2ms	remaining: 353ms
12:	learn: 38.7943524	total: 52.4ms	remaining: 351ms
13:	learn: 38.1664113	total: 56.1ms	remaining: 344ms
14:	learn: 37.7492773	total: 59.7ms	remaining: 338ms
15:	learn: 37.2369693	total: 63.6ms	remaining: 334ms
16:	learn: 36.6953383	total: 67.5ms	remaining: 330ms
17:	learn: 36.3580916	total: 71.4ms	remaining: 325ms
18:	learn: 35.8637745	total: 75.4ms	remaining: 322ms
19:	learn: 35.4299153	total: 79.5ms	remaining: 318ms
20:	learn: 34.8794879	total: 83.8ms	remaining: 315ms
21:	learn: 34.3253348	total: 88.6ms	remaining: 314ms
22:	learn: 33.9307096	total: 92.7ms	remaining: 310ms
23:	learn: 33.5952896	total: 96.6ms	remaining: 306ms
24:	learn: 33.1314051	total: 101ms	remaining: 302ms
25:	learn: 32.8502968	total: 105ms	remaining: 300ms
26:	learn: 32.4430184	total: 110ms	remaining: 296ms
27:	learn: 32.0721224	total: 114ms	remaining: 294ms
28:	learn: 31.7977479	total: 123ms	remaining: 301ms
29:	learn: 31.3999469	total: 131ms	remaining: 305ms
30:	learn: 31.1179360	total: 139ms	remaining: 310ms
31:	learn: 30.7712852	total: 146ms	remaining: 310ms
32:	learn: 30.2912977	total: 152ms	remaining: 308ms
33:	learn: 29.9920376	total: 157ms	remaining: 305ms
34:	learn: 29.6637918	total: 162ms	remaining: 301ms
35:	learn: 29.3522959	total: 167ms	remaining: 297ms
36:	learn: 29.0482516	total: 172ms	remaining: 292ms
37:	learn: 28.7956656	total: 176ms	remaining: 288ms
38:	learn: 28.4845569	total: 181ms	remaining: 283ms
39:	learn: 28.3038067	total: 186ms	remaining: 279ms
40:	learn: 28.1185263	total: 204ms	remaining: 293ms
41:	learn: 27.8012563	total: 210ms	remaining: 290ms
42:	learn: 27.5184259	total: 215ms	remaining: 285ms
43:	learn: 27.3019892	total: 219ms	remaining: 279ms
44:	learn: 27.0494594	total: 223ms	remaining: 273ms
45:	learn: 26.8054317	total: 227ms	remaining: 266ms
46:	learn: 26.6554974	total: 231ms	remaining: 260ms
47:	learn: 26.3568392	total: 234ms	remaining: 254ms
48:	learn: 26.1045872	total: 238ms	remaining: 248ms
49:	learn: 25.9807311	total: 242ms	remaining: 242ms
50:	learn: 25.7104640	total: 246ms	remaining: 236ms
51:	learn: 25.6019547	total: 249ms	remaining: 230ms
52:	learn: 25.5011930	total: 254ms	remaining: 225ms
53:	learn: 25.2291639	total: 257ms	remaining: 219ms
54:	learn: 24.9952313	total: 262ms	remaining: 214ms
55:	learn: 24.8195031	total: 265ms	remaining: 208ms
56:	learn: 24.5591684	total: 269ms	remaining: 203ms
57:	learn: 24.4163080	total: 272ms	remaining: 197ms
58:	learn: 24.2328188	total: 276ms	remaining: 192ms
59:	learn: 24.0087408	total: 281ms	remaining: 187ms
60:	learn: 23.8918912	total: 285ms	remaining: 182ms
61:	learn: 23.7537024	total: 290ms	remaining: 178ms
62:	learn: 23.5466923	total: 295ms	remaining: 173ms
63:	learn: 23.3903724	total: 299ms	remaining: 168ms
64:	learn: 23.3257785	total: 304ms	remaining: 163ms
65:	learn: 23.2839464	total: 308ms	remaining: 159ms
66:	learn: 23.1476036	total: 312ms	remaining: 154ms
67:	learn: 22.9480972	total: 322ms	remaining: 152ms
68:	learn: 22.7537529	total: 333ms	remaining: 150ms
69:	learn: 22.6209544	total: 340ms	remaining: 146ms
70:	learn: 22.5058753	total: 349ms	remaining: 142ms
71:	learn: 22.4068656	total: 354ms	remaining: 138ms
72:	learn: 22.3254150	total: 359ms	remaining: 133ms
73:	learn: 22.1784174	total: 365ms	remaining: 128ms
74:	learn: 22.1095388	total: 370ms	remaining: 123ms
75:	learn: 21.9958083	total: 375ms	remaining: 118ms
76:	learn: 21.8728475	total: 385ms	remaining: 115ms
77:	learn: 21.7975828	total: 390ms	remaining: 110ms
78:	learn: 21.7133267	total: 395ms	remaining: 105ms
79:	learn: 21.6023410	total: 400ms	remaining: 99.9ms
80:	learn: 21.5254474	total: 405ms	remaining: 95ms
81:	learn: 21.3307418	total: 410ms	remaining: 90ms
82:	learn: 21.2411976	total: 414ms	remaining: 84.9ms
83:	learn: 21.1091386	total: 419ms	remaining: 79.8ms
84:	learn: 21.0526747	total: 423ms	remaining: 74.7ms
85:	learn: 20.9083817	total: 427ms	remaining: 69.5ms
86:	learn: 20.8767767	total: 431ms	remaining: 64.3ms
87:	learn: 20.8143988	total: 435ms	remaining: 59.3ms
88:	learn: 20.7127697	total: 439ms	remaining: 54.3ms
89:	learn: 20.6112504	total: 443ms	remaining: 49.2ms
90:	learn: 20.4609960	total: 447ms	remaining: 44.2ms
91:	learn: 20.3648890	total: 451ms	remaining: 39.3ms
92:	learn: 20.3052040	total: 455ms	remaining: 34.3ms
93:	learn: 20.2587865	total: 459ms	remaining: 29.3ms
94:	learn: 20.2096406	total: 463ms	remaining: 24.4ms
95:	learn: 20.1301385	total: 467ms	remaining: 19.5ms
96:	learn: 20.0401359	total: 471ms	remaining: 14.6ms
97:	learn: 19.9791591	total: 476ms	remaining: 9.71ms
98:	learn: 19.9237318	total: 479ms	remaining: 4.84ms
99:	learn: 19.8009190	total: 483ms	remaining: 0us
0:	learn: 46.9286701	total: 7.24ms	remaining: 717ms
1:	learn: 46.2851598	total: 14.4ms	remaining: 706ms
2:	learn: 45.4586007	total: 19.6ms	remaining: 632ms
3:	learn: 44.6581393	total: 24.8ms	remaining: 596ms
4:	learn: 43.8231644	total: 30.2ms	remaining: 574ms
5:	learn: 43.2906569	total: 35.2ms	remaining: 551ms
6:	learn: 42.5095813	total: 40.1ms	remaining: 533ms
7:	learn: 41.9310465	total: 45.3ms	remaining: 521ms
8:	learn: 41.2083262	total: 50.5ms	remaining: 511ms
9:	learn: 40.6852547	total: 55.3ms	remaining: 498ms
10:	learn: 39.9637018	total: 60.2ms	remaining: 487ms
11:	learn: 39.2804189	total: 65.2ms	remaining: 478ms
12:	learn: 38.8804017	total: 69.6ms	remaining: 466ms
13:	learn: 38.3826597	total: 74.1ms	remaining: 455ms
14:	learn: 37.9240424	total: 79.2ms	remaining: 449ms
15:	learn: 37.4312070	total: 84.8ms	remaining: 445ms
16:	learn: 36.8803673	total: 88.3ms	remaining: 431ms
17:	learn: 36.5496582	total: 91.9ms	remaining: 419ms
18:	learn: 36.2078375	total: 95.8ms	remaining: 408ms
19:	learn: 35.6806593	total: 99.4ms	remaining: 398ms
20:	learn: 35.1512154	total: 103ms	remaining: 389ms
21:	learn: 34.6013055	total: 107ms	remaining: 380ms
22:	learn: 34.2380102	total: 111ms	remaining: 371ms
23:	learn: 33.8720185	total: 115ms	remaining: 364ms
24:	learn: 33.4426135	total: 118ms	remaining: 355ms
25:	learn: 33.1471186	total: 122ms	remaining: 348ms
26:	learn: 32.8018279	total: 126ms	remaining: 341ms
27:	learn: 32.4498594	total: 130ms	remaining: 334ms
28:	learn: 31.9749480	total: 134ms	remaining: 328ms
29:	learn: 31.6470735	total: 137ms	remaining: 321ms
30:	learn: 31.4265242	total: 141ms	remaining: 313ms
31:	learn: 31.0753325	total: 144ms	remaining: 307ms
32:	learn: 30.7192494	total: 148ms	remaining: 301ms
33:	learn: 30.3547940	total: 152ms	remaining: 296ms
34:	learn: 30.1296593	total: 157ms	remaining: 292ms
35:	learn: 29.9367140	total: 162ms	remaining: 287ms
36:	learn: 29.6248477	total: 166ms	remaining: 283ms
37:	learn: 29.3156707	total: 171ms	remaining: 279ms
38:	learn: 29.1534039	total: 176ms	remaining: 275ms
39:	learn: 28.9351289	total: 180ms	remaining: 271ms
40:	learn: 28.7057685	total: 185ms	remaining: 266ms
41:	learn: 28.3132521	total: 190ms	remaining: 262ms
42:	learn: 28.0739054	total: 198ms	remaining: 262ms
43:	learn: 27.8135917	total: 205ms	remaining: 261ms
44:	learn: 27.5376804	total: 214ms	remaining: 262ms
45:	learn: 27.3195849	total: 222ms	remaining: 261ms
46:	learn: 27.1681104	total: 227ms	remaining: 256ms
47:	learn: 27.0122442	total: 232ms	remaining: 251ms
48:	learn: 26.7819409	total: 237ms	remaining: 247ms
49:	learn: 26.6429308	total: 242ms	remaining: 242ms
50:	learn: 26.3482899	total: 247ms	remaining: 238ms
51:	learn: 26.2432755	total: 253ms	remaining: 233ms
52:	learn: 26.0811102	total: 258ms	remaining: 229ms
53:	learn: 25.9398113	total: 263ms	remaining: 224ms
54:	learn: 25.7891395	total: 268ms	remaining: 220ms
55:	learn: 25.6185338	total: 273ms	remaining: 215ms
56:	learn: 25.3293977	total: 278ms	remaining: 210ms
57:	learn: 25.1918906	total: 283ms	remaining: 205ms
58:	learn: 25.0503990	total: 288ms	remaining: 200ms
59:	learn: 24.8225776	total: 293ms	remaining: 196ms
60:	learn: 24.5969153	total: 297ms	remaining: 190ms
61:	learn: 24.4657353	total: 301ms	remaining: 184ms
62:	learn: 24.2861000	total: 305ms	remaining: 179ms
63:	learn: 24.1719148	total: 308ms	remaining: 173ms
64:	learn: 24.0547875	total: 312ms	remaining: 168ms
65:	learn: 23.9156724	total: 316ms	remaining: 163ms
66:	learn: 23.7604012	total: 321ms	remaining: 158ms
67:	learn: 23.6265679	total: 324ms	remaining: 153ms
68:	learn: 23.5372255	total: 328ms	remaining: 147ms
69:	learn: 23.3286241	total: 332ms	remaining: 142ms
70:	learn: 23.1806465	total: 337ms	remaining: 138ms
71:	learn: 23.0652081	total: 341ms	remaining: 133ms
72:	learn: 22.9231023	total: 345ms	remaining: 128ms
73:	learn: 22.8020380	total: 350ms	remaining: 123ms
74:	learn: 22.6525036	total: 355ms	remaining: 118ms
75:	learn: 22.5616268	total: 359ms	remaining: 113ms
76:	learn: 22.4395250	total: 364ms	remaining: 109ms
77:	learn: 22.3732379	total: 368ms	remaining: 104ms
78:	learn: 22.2300874	total: 373ms	remaining: 99ms
79:	learn: 22.0209882	total: 377ms	remaining: 94.2ms
80:	learn: 21.8703996	total: 381ms	remaining: 89.4ms
81:	learn: 21.7222039	total: 389ms	remaining: 85.3ms
82:	learn: 21.5903685	total: 397ms	remaining: 81.2ms
83:	learn: 21.4915083	total: 405ms	remaining: 77.1ms
84:	learn: 21.3320736	total: 411ms	remaining: 72.5ms
85:	learn: 21.2295060	total: 417ms	remaining: 67.9ms
86:	learn: 21.1983620	total: 423ms	remaining: 63.2ms
87:	learn: 21.1404156	total: 428ms	remaining: 58.3ms
88:	learn: 21.0684840	total: 433ms	remaining: 53.5ms
89:	learn: 20.9269197	total: 437ms	remaining: 48.6ms
90:	learn: 20.8614606	total: 443ms	remaining: 43.8ms
91:	learn: 20.6642996	total: 448ms	remaining: 38.9ms
92:	learn: 20.5612705	total: 453ms	remaining: 34.1ms
93:	learn: 20.5264997	total: 458ms	remaining: 29.2ms
94:	learn: 20.4532331	total: 463ms	remaining: 24.4ms
95:	learn: 20.3700696	total: 468ms	remaining: 19.5ms
96:	learn: 20.2671574	total: 472ms	remaining: 14.6ms
97:	learn: 20.1761207	total: 478ms	remaining: 9.75ms
98:	learn: 20.0533799	total: 483ms	remaining: 4.88ms
99:	learn: 19.9890055	total: 487ms	remaining: 0us
0:	learn: 27.7143805	total: 4.72ms	remaining: 468ms
1:	learn: 27.2245894	total: 8.77ms	remaining: 430ms
2:	learn: 26.8693029	total: 12.6ms	remaining: 407ms
3:	learn: 26.4713217	total: 16.8ms	remaining: 402ms
4:	learn: 26.1261794	total: 21.3ms	remaining: 405ms
5:	learn: 25.8160419	total: 25.5ms	remaining: 400ms
6:	learn: 25.3860050	total: 29.4ms	remaining: 390ms
7:	learn: 25.0621682	total: 33.9ms	remaining: 390ms
8:	learn: 24.7574429	total: 38.4ms	remaining: 388ms
9:	learn: 24.5154734	total: 42.6ms	remaining: 384ms
10:	learn: 24.2199118	total: 47ms	remaining: 380ms
11:	learn: 23.9774955	total: 51.8ms	remaining: 380ms
12:	learn: 23.7755558	total: 59.7ms	remaining: 400ms
13:	learn: 23.4384476	total: 66.6ms	remaining: 409ms
14:	learn: 23.2035324	total: 75.8ms	remaining: 430ms
15:	learn: 22.9925293	total: 83.3ms	remaining: 437ms
16:	learn: 22.7981113	total: 88.7ms	remaining: 433ms
17:	learn: 22.5829245	total: 93.7ms	remaining: 427ms
18:	learn: 22.4131931	total: 98.7ms	remaining: 421ms
19:	learn: 22.1833629	total: 104ms	remaining: 415ms
20:	learn: 21.9660824	total: 109ms	remaining: 409ms
21:	learn: 21.7281998	total: 114ms	remaining: 403ms
22:	learn: 21.5000824	total: 118ms	remaining: 396ms
23:	learn: 21.2717031	total: 123ms	remaining: 390ms
24:	learn: 21.0926073	total: 128ms	remaining: 384ms
25:	learn: 20.8922144	total: 133ms	remaining: 378ms
26:	learn: 20.7498215	total: 137ms	remaining: 371ms
27:	learn: 20.5781754	total: 139ms	remaining: 358ms
28:	learn: 20.4294665	total: 145ms	remaining: 354ms
29:	learn: 20.2273985	total: 150ms	remaining: 350ms
30:	learn: 20.0920234	total: 154ms	remaining: 342ms
31:	learn: 19.9311712	total: 158ms	remaining: 335ms
32:	learn: 19.7852359	total: 162ms	remaining: 328ms
33:	learn: 19.6211007	total: 165ms	remaining: 321ms
34:	learn: 19.4806501	total: 169ms	remaining: 314ms
35:	learn: 19.3415380	total: 173ms	remaining: 308ms
36:	learn: 19.2075499	total: 177ms	remaining: 301ms
37:	learn: 19.0582745	total: 180ms	remaining: 294ms
38:	learn: 18.8852020	total: 184ms	remaining: 288ms
39:	learn: 18.6868677	total: 188ms	remaining: 282ms
40:	learn: 18.5481481	total: 192ms	remaining: 277ms
41:	learn: 18.4508846	total: 196ms	remaining: 271ms
42:	learn: 18.3650555	total: 200ms	remaining: 266ms
43:	learn: 18.1818415	total: 204ms	remaining: 260ms
44:	learn: 18.0782035	total: 208ms	remaining: 255ms
45:	learn: 17.9724472	total: 213ms	remaining: 250ms
46:	learn: 17.8657480	total: 217ms	remaining: 245ms
47:	learn: 17.7217309	total: 221ms	remaining: 239ms
48:	learn: 17.6403061	total: 225ms	remaining: 234ms
49:	learn: 17.5245570	total: 229ms	remaining: 229ms
50:	learn: 17.3976790	total: 234ms	remaining: 225ms
51:	learn: 17.2544460	total: 239ms	remaining: 221ms
52:	learn: 17.1507940	total: 244ms	remaining: 217ms
53:	learn: 17.0391276	total: 249ms	remaining: 212ms
54:	learn: 16.9348155	total: 254ms	remaining: 208ms
55:	learn: 16.8475635	total: 259ms	remaining: 204ms
56:	learn: 16.7691656	total: 265ms	remaining: 200ms
57:	learn: 16.6277836	total: 273ms	remaining: 198ms
58:	learn: 16.5524230	total: 281ms	remaining: 195ms
59:	learn: 16.4614442	total: 290ms	remaining: 193ms
60:	learn: 16.3077836	total: 298ms	remaining: 190ms
61:	learn: 16.2278133	total: 303ms	remaining: 186ms
62:	learn: 16.1288632	total: 308ms	remaining: 181ms
63:	learn: 16.0734717	total: 313ms	remaining: 176ms
64:	learn: 16.0085754	total: 319ms	remaining: 172ms
65:	learn: 15.9278700	total: 324ms	remaining: 167ms
66:	learn: 15.8320321	total: 329ms	remaining: 162ms
67:	learn: 15.7706425	total: 334ms	remaining: 157ms
68:	learn: 15.6404344	total: 339ms	remaining: 152ms
69:	learn: 15.5678129	total: 344ms	remaining: 147ms
70:	learn: 15.4980047	total: 349ms	remaining: 142ms
71:	learn: 15.4324207	total: 353ms	remaining: 137ms
72:	learn: 15.3551877	total: 359ms	remaining: 133ms
73:	learn: 15.2930769	total: 364ms	remaining: 128ms
74:	learn: 15.2307174	total: 369ms	remaining: 123ms
75:	learn: 15.1600937	total: 374ms	remaining: 118ms
76:	learn: 15.0837614	total: 378ms	remaining: 113ms
77:	learn: 15.0185989	total: 382ms	remaining: 108ms
78:	learn: 14.9300717	total: 386ms	remaining: 103ms
79:	learn: 14.8928389	total: 390ms	remaining: 97.5ms
80:	learn: 14.8250040	total: 394ms	remaining: 92.5ms
81:	learn: 14.7906114	total: 399ms	remaining: 87.5ms
82:	learn: 14.7214118	total: 403ms	remaining: 82.6ms
83:	learn: 14.6657875	total: 408ms	remaining: 77.7ms
84:	learn: 14.6085682	total: 413ms	remaining: 72.9ms
85:	learn: 14.5334097	total: 417ms	remaining: 67.9ms
86:	learn: 14.4681230	total: 422ms	remaining: 63ms
87:	learn: 14.4088334	total: 426ms	remaining: 58.1ms
88:	learn: 14.3541312	total: 431ms	remaining: 53.2ms
89:	learn: 14.2923636	total: 435ms	remaining: 48.4ms
90:	learn: 14.2339259	total: 440ms	remaining: 43.5ms
91:	learn: 14.1439983	total: 444ms	remaining: 38.6ms
92:	learn: 14.0701371	total: 448ms	remaining: 33.7ms
93:	learn: 13.9770736	total: 453ms	remaining: 28.9ms
94:	learn: 13.9275801	total: 458ms	remaining: 24.1ms
95:	learn: 13.8717050	total: 465ms	remaining: 19.4ms
96:	learn: 13.7821340	total: 472ms	remaining: 14.6ms
97:	learn: 13.7383865	total: 487ms	remaining: 9.93ms
98:	learn: 13.6850693	total: 494ms	remaining: 4.99ms
99:	learn: 13.6273539	total: 499ms	remaining: 0us
0:	learn: 43.2118728	total: 5.37ms	remaining: 532ms
1:	learn: 42.3090111	total: 10.9ms	remaining: 533ms
2:	learn: 41.3060764	total: 15.2ms	remaining: 490ms
3:	learn: 40.3653958	total: 18.7ms	remaining: 449ms
4:	learn: 39.5006331	total: 22.5ms	remaining: 428ms
5:	learn: 38.6473041	total: 26.2ms	remaining: 410ms
6:	learn: 37.8560875	total: 30.2ms	remaining: 401ms
7:	learn: 37.0772701	total: 34.4ms	remaining: 395ms
8:	learn: 36.3260704	total: 38.3ms	remaining: 387ms
9:	learn: 35.7300393	total: 42.1ms	remaining: 379ms
10:	learn: 34.9336547	total: 45.8ms	remaining: 371ms
11:	learn: 34.1758190	total: 49.8ms	remaining: 365ms
12:	learn: 33.5120760	total: 53.5ms	remaining: 358ms
13:	learn: 32.8731142	total: 57.5ms	remaining: 353ms
14:	learn: 32.3579595	total: 61.1ms	remaining: 346ms
15:	learn: 31.7969963	total: 64.9ms	remaining: 341ms
16:	learn: 31.3472797	total: 69.6ms	remaining: 340ms
17:	learn: 30.7865884	total: 73.4ms	remaining: 334ms
18:	learn: 30.3876486	total: 77ms	remaining: 328ms
19:	learn: 29.8840575	total: 80.8ms	remaining: 323ms
20:	learn: 29.3584237	total: 85ms	remaining: 320ms
21:	learn: 28.9965200	total: 89.4ms	remaining: 317ms
22:	learn: 28.6117225	total: 93.9ms	remaining: 314ms
23:	learn: 28.1147832	total: 98.9ms	remaining: 313ms
24:	learn: 27.7857774	total: 104ms	remaining: 311ms
25:	learn: 27.3181226	total: 108ms	remaining: 308ms
26:	learn: 26.9019101	total: 113ms	remaining: 305ms
27:	learn: 26.6957004	total: 117ms	remaining: 302ms
28:	learn: 26.2816390	total: 122ms	remaining: 299ms
29:	learn: 25.9107534	total: 127ms	remaining: 296ms
30:	learn: 25.5773085	total: 133ms	remaining: 296ms
31:	learn: 25.1916035	total: 140ms	remaining: 299ms
32:	learn: 24.8819670	total: 148ms	remaining: 301ms
33:	learn: 24.5580488	total: 156ms	remaining: 303ms
34:	learn: 24.3088624	total: 163ms	remaining: 303ms
35:	learn: 23.9890893	total: 168ms	remaining: 299ms
36:	learn: 23.7266073	total: 173ms	remaining: 295ms
37:	learn: 23.4886046	total: 179ms	remaining: 292ms
38:	learn: 23.2786313	total: 184ms	remaining: 288ms
39:	learn: 23.0060540	total: 190ms	remaining: 285ms
40:	learn: 22.7848361	total: 195ms	remaining: 281ms
41:	learn: 22.5485511	total: 200ms	remaining: 277ms
42:	learn: 22.3113565	total: 206ms	remaining: 273ms
43:	learn: 22.1296084	total: 211ms	remaining: 269ms
44:	learn: 21.8514989	total: 216ms	remaining: 264ms
45:	learn: 21.6540201	total: 220ms	remaining: 259ms
46:	learn: 21.4203535	total: 226ms	remaining: 255ms
47:	learn: 21.2317196	total: 231ms	remaining: 250ms
48:	learn: 21.0547467	total: 236ms	remaining: 245ms
49:	learn: 20.9192535	total: 240ms	remaining: 240ms
50:	learn: 20.6975386	total: 244ms	remaining: 234ms
51:	learn: 20.5839720	total: 248ms	remaining: 229ms
52:	learn: 20.4528901	total: 252ms	remaining: 223ms
53:	learn: 20.3392419	total: 255ms	remaining: 218ms
54:	learn: 20.1518693	total: 259ms	remaining: 212ms
55:	learn: 19.9928770	total: 263ms	remaining: 207ms
56:	learn: 19.8042028	total: 267ms	remaining: 202ms
57:	learn: 19.7000879	total: 271ms	remaining: 196ms
58:	learn: 19.5524154	total: 275ms	remaining: 191ms
59:	learn: 19.4366908	total: 279ms	remaining: 186ms
60:	learn: 19.2739134	total: 283ms	remaining: 181ms
61:	learn: 19.1499266	total: 287ms	remaining: 176ms
62:	learn: 18.9948972	total: 291ms	remaining: 171ms
63:	learn: 18.8952299	total: 296ms	remaining: 166ms
64:	learn: 18.7545430	total: 300ms	remaining: 162ms
65:	learn: 18.6315116	total: 304ms	remaining: 157ms
66:	learn: 18.5164994	total: 325ms	remaining: 160ms
67:	learn: 18.3983038	total: 333ms	remaining: 157ms
68:	learn: 18.2803212	total: 340ms	remaining: 153ms
69:	learn: 18.1738467	total: 349ms	remaining: 150ms
70:	learn: 18.0884235	total: 355ms	remaining: 145ms
71:	learn: 18.0129445	total: 361ms	remaining: 140ms
72:	learn: 17.8582158	total: 366ms	remaining: 135ms
73:	learn: 17.7473705	total: 371ms	remaining: 130ms
74:	learn: 17.6431421	total: 376ms	remaining: 125ms
75:	learn: 17.5398511	total: 382ms	remaining: 120ms
76:	learn: 17.4404598	total: 386ms	remaining: 115ms
77:	learn: 17.3477525	total: 391ms	remaining: 110ms
78:	learn: 17.2283831	total: 397ms	remaining: 105ms
79:	learn: 17.0767035	total: 402ms	remaining: 101ms
80:	learn: 16.9732705	total: 407ms	remaining: 95.5ms
81:	learn: 16.8927449	total: 412ms	remaining: 90.5ms
82:	learn: 16.8145625	total: 417ms	remaining: 85.5ms
83:	learn: 16.7290845	total: 423ms	remaining: 80.5ms
84:	learn: 16.6661414	total: 428ms	remaining: 75.5ms
85:	learn: 16.5875575	total: 432ms	remaining: 70.3ms
86:	learn: 16.4578580	total: 436ms	remaining: 65.1ms
87:	learn: 16.4243550	total: 439ms	remaining: 59.9ms
88:	learn: 16.3251337	total: 443ms	remaining: 54.8ms
89:	learn: 16.2516385	total: 447ms	remaining: 49.7ms
90:	learn: 16.1226518	total: 451ms	remaining: 44.6ms
91:	learn: 16.0718308	total: 455ms	remaining: 39.5ms
92:	learn: 15.9636735	total: 458ms	remaining: 34.5ms
93:	learn: 15.8923693	total: 462ms	remaining: 29.5ms
94:	learn: 15.8270425	total: 466ms	remaining: 24.5ms
95:	learn: 15.7449077	total: 470ms	remaining: 19.6ms
96:	learn: 15.6978936	total: 474ms	remaining: 14.7ms
97:	learn: 15.6527285	total: 478ms	remaining: 9.75ms
98:	learn: 15.5557320	total: 482ms	remaining: 4.87ms
99:	learn: 15.4399171	total: 486ms	remaining: 0us
0:	learn: 46.7092506	total: 7.94ms	remaining: 786ms
1:	learn: 45.8266821	total: 15.9ms	remaining: 779ms
2:	learn: 45.0052023	total: 24.1ms	remaining: 778ms
3:	learn: 44.3828795	total: 29.2ms	remaining: 702ms
4:	learn: 43.7255353	total: 34.4ms	remaining: 654ms
5:	learn: 43.1663831	total: 39.8ms	remaining: 623ms
6:	learn: 42.3875189	total: 44.9ms	remaining: 597ms
7:	learn: 41.7839075	total: 50.1ms	remaining: 576ms
8:	learn: 41.0740108	total: 55.1ms	remaining: 557ms
9:	learn: 40.3846647	total: 60.4ms	remaining: 544ms
10:	learn: 39.8821046	total: 65.3ms	remaining: 528ms
11:	learn: 39.1807254	total: 70.3ms	remaining: 515ms
12:	learn: 38.7153028	total: 75.4ms	remaining: 504ms
13:	learn: 38.0474495	total: 79.8ms	remaining: 490ms
14:	learn: 37.3844461	total: 84.8ms	remaining: 481ms
15:	learn: 36.9210704	total: 90.7ms	remaining: 476ms
16:	learn: 36.3160964	total: 95.3ms	remaining: 466ms
17:	learn: 35.8915826	total: 99.5ms	remaining: 453ms
18:	learn: 35.5519989	total: 103ms	remaining: 441ms
19:	learn: 35.1437045	total: 107ms	remaining: 429ms
20:	learn: 34.6387799	total: 111ms	remaining: 419ms
21:	learn: 34.2437068	total: 115ms	remaining: 408ms
22:	learn: 33.8262100	total: 120ms	remaining: 400ms
23:	learn: 33.4683000	total: 124ms	remaining: 392ms
24:	learn: 32.9996389	total: 130ms	remaining: 390ms
25:	learn: 32.6942147	total: 135ms	remaining: 383ms
26:	learn: 32.3016096	total: 139ms	remaining: 377ms
27:	learn: 31.9517346	total: 144ms	remaining: 371ms
28:	learn: 31.5277387	total: 149ms	remaining: 364ms
29:	learn: 31.2545365	total: 154ms	remaining: 358ms
30:	learn: 31.0510813	total: 159ms	remaining: 354ms
31:	learn: 30.6383830	total: 164ms	remaining: 348ms
32:	learn: 30.2800150	total: 168ms	remaining: 341ms
33:	learn: 29.9559797	total: 173ms	remaining: 336ms
34:	learn: 29.5802745	total: 178ms	remaining: 330ms
35:	learn: 29.2605111	total: 182ms	remaining: 324ms
36:	learn: 28.9582434	total: 187ms	remaining: 318ms
37:	learn: 28.6149387	total: 191ms	remaining: 312ms
38:	learn: 28.3980091	total: 201ms	remaining: 315ms
39:	learn: 28.1704520	total: 208ms	remaining: 312ms
40:	learn: 27.8881319	total: 217ms	remaining: 312ms
41:	learn: 27.5805731	total: 224ms	remaining: 310ms
42:	learn: 27.3520567	total: 229ms	remaining: 304ms
43:	learn: 27.1039679	total: 235ms	remaining: 298ms
44:	learn: 26.8472623	total: 240ms	remaining: 293ms
45:	learn: 26.5757869	total: 245ms	remaining: 288ms
46:	learn: 26.4579118	total: 251ms	remaining: 283ms
47:	learn: 26.1279008	total: 256ms	remaining: 277ms
48:	learn: 25.8503346	total: 261ms	remaining: 272ms
49:	learn: 25.7039015	total: 266ms	remaining: 266ms
50:	learn: 25.4317154	total: 271ms	remaining: 261ms
51:	learn: 25.3028008	total: 277ms	remaining: 255ms
52:	learn: 25.1906194	total: 282ms	remaining: 250ms
53:	learn: 25.0082790	total: 286ms	remaining: 243ms
54:	learn: 24.8264791	total: 290ms	remaining: 237ms
55:	learn: 24.5961365	total: 294ms	remaining: 231ms
56:	learn: 24.4007690	total: 299ms	remaining: 225ms
57:	learn: 24.2476228	total: 303ms	remaining: 219ms
58:	learn: 23.9582465	total: 307ms	remaining: 213ms
59:	learn: 23.7247243	total: 311ms	remaining: 207ms
60:	learn: 23.5379970	total: 315ms	remaining: 201ms
61:	learn: 23.3908530	total: 319ms	remaining: 195ms
62:	learn: 23.2123241	total: 323ms	remaining: 190ms
63:	learn: 23.1010345	total: 327ms	remaining: 184ms
64:	learn: 22.9032423	total: 331ms	remaining: 178ms
65:	learn: 22.7815198	total: 335ms	remaining: 172ms
66:	learn: 22.6325063	total: 338ms	remaining: 167ms
67:	learn: 22.5406071	total: 342ms	remaining: 161ms
68:	learn: 22.4413332	total: 347ms	remaining: 156ms
69:	learn: 22.3005609	total: 351ms	remaining: 150ms
70:	learn: 22.1779345	total: 356ms	remaining: 145ms
71:	learn: 22.0491576	total: 360ms	remaining: 140ms
72:	learn: 21.9379106	total: 364ms	remaining: 135ms
73:	learn: 21.7597096	total: 369ms	remaining: 130ms
74:	learn: 21.6042300	total: 373ms	remaining: 124ms
75:	learn: 21.4644642	total: 377ms	remaining: 119ms
76:	learn: 21.3811287	total: 386ms	remaining: 115ms
77:	learn: 21.3089276	total: 393ms	remaining: 111ms
78:	learn: 21.1654429	total: 401ms	remaining: 107ms
79:	learn: 20.9602460	total: 409ms	remaining: 102ms
80:	learn: 20.7959461	total: 414ms	remaining: 97.1ms
81:	learn: 20.5861156	total: 419ms	remaining: 92ms
82:	learn: 20.5120680	total: 424ms	remaining: 86.9ms
83:	learn: 20.3997233	total: 429ms	remaining: 81.7ms
84:	learn: 20.2499469	total: 434ms	remaining: 76.6ms
85:	learn: 20.1117768	total: 439ms	remaining: 71.4ms
86:	learn: 20.0617643	total: 444ms	remaining: 66.3ms
87:	learn: 19.9609182	total: 449ms	remaining: 61.2ms
88:	learn: 19.8763814	total: 454ms	remaining: 56.1ms
89:	learn: 19.7843516	total: 458ms	remaining: 50.9ms
90:	learn: 19.6926200	total: 463ms	remaining: 45.8ms
91:	learn: 19.5686774	total: 468ms	remaining: 40.7ms
92:	learn: 19.4727236	total: 473ms	remaining: 35.6ms
93:	learn: 19.3780174	total: 478ms	remaining: 30.5ms
94:	learn: 19.2840650	total: 484ms	remaining: 25.5ms
95:	learn: 19.1747368	total: 488ms	remaining: 20.3ms
96:	learn: 19.1273306	total: 492ms	remaining: 15.2ms
97:	learn: 19.0413946	total: 496ms	remaining: 10.1ms
98:	learn: 18.8980682	total: 500ms	remaining: 5.05ms
99:	learn: 18.7799962	total: 504ms	remaining: 0us
0:	learn: 46.4426352	total: 4.46ms	remaining: 442ms
1:	learn: 45.5770653	total: 9.3ms	remaining: 456ms
2:	learn: 44.6956685	total: 14ms	remaining: 452ms
3:	learn: 43.9934709	total: 18.6ms	remaining: 445ms
4:	learn: 43.3008183	total: 23ms	remaining: 438ms
5:	learn: 42.7510022	total: 27.9ms	remaining: 438ms
6:	learn: 42.0237555	total: 35.8ms	remaining: 476ms
7:	learn: 41.5354996	total: 44.2ms	remaining: 509ms
8:	learn: 41.0264055	total: 53.1ms	remaining: 537ms
9:	learn: 40.5267003	total: 60.5ms	remaining: 544ms
10:	learn: 39.8363942	total: 65.8ms	remaining: 533ms
11:	learn: 39.2014089	total: 71.1ms	remaining: 522ms
12:	learn: 38.7943524	total: 76.6ms	remaining: 513ms
13:	learn: 38.1664113	total: 82ms	remaining: 504ms
14:	learn: 37.7492773	total: 86.7ms	remaining: 491ms
15:	learn: 37.2369693	total: 91.7ms	remaining: 481ms
16:	learn: 36.6953383	total: 96.7ms	remaining: 472ms
17:	learn: 36.3580916	total: 102ms	remaining: 463ms
18:	learn: 35.8637745	total: 107ms	remaining: 454ms
19:	learn: 35.4299153	total: 114ms	remaining: 456ms
20:	learn: 34.8794879	total: 118ms	remaining: 446ms
21:	learn: 34.3253348	total: 124ms	remaining: 438ms
22:	learn: 33.9307096	total: 129ms	remaining: 431ms
23:	learn: 33.5952896	total: 133ms	remaining: 421ms
24:	learn: 33.1314051	total: 137ms	remaining: 412ms
25:	learn: 32.8502968	total: 141ms	remaining: 402ms
26:	learn: 32.4430184	total: 145ms	remaining: 392ms
27:	learn: 32.0721224	total: 149ms	remaining: 383ms
28:	learn: 31.7977479	total: 153ms	remaining: 374ms
29:	learn: 31.3999469	total: 157ms	remaining: 365ms
30:	learn: 31.1179360	total: 160ms	remaining: 357ms
31:	learn: 30.7712852	total: 164ms	remaining: 348ms
32:	learn: 30.2912977	total: 168ms	remaining: 341ms
33:	learn: 29.9920376	total: 172ms	remaining: 333ms
34:	learn: 29.6637918	total: 176ms	remaining: 327ms
35:	learn: 29.3522959	total: 180ms	remaining: 319ms
36:	learn: 29.0482516	total: 183ms	remaining: 312ms
37:	learn: 28.7956656	total: 187ms	remaining: 306ms
38:	learn: 28.4845569	total: 191ms	remaining: 298ms
39:	learn: 28.3038067	total: 194ms	remaining: 292ms
40:	learn: 28.1185263	total: 198ms	remaining: 285ms
41:	learn: 27.8012563	total: 202ms	remaining: 279ms
42:	learn: 27.5184259	total: 206ms	remaining: 273ms
43:	learn: 27.3019892	total: 210ms	remaining: 267ms
44:	learn: 27.0494594	total: 214ms	remaining: 262ms
45:	learn: 26.8054317	total: 218ms	remaining: 256ms
46:	learn: 26.6554974	total: 222ms	remaining: 250ms
47:	learn: 26.3568392	total: 226ms	remaining: 245ms
48:	learn: 26.1045872	total: 230ms	remaining: 239ms
49:	learn: 25.9807311	total: 234ms	remaining: 234ms
50:	learn: 25.7104640	total: 239ms	remaining: 230ms
51:	learn: 25.6019547	total: 243ms	remaining: 225ms
52:	learn: 25.5011930	total: 248ms	remaining: 220ms
53:	learn: 25.2291639	total: 252ms	remaining: 215ms
54:	learn: 24.9952313	total: 256ms	remaining: 210ms
55:	learn: 24.8195031	total: 261ms	remaining: 205ms
56:	learn: 24.5591684	total: 269ms	remaining: 203ms
57:	learn: 24.4163080	total: 277ms	remaining: 200ms
58:	learn: 24.2328188	total: 285ms	remaining: 198ms
59:	learn: 24.0087408	total: 293ms	remaining: 195ms
60:	learn: 23.8918912	total: 298ms	remaining: 191ms
61:	learn: 23.7537024	total: 303ms	remaining: 186ms
62:	learn: 23.5466923	total: 309ms	remaining: 181ms
63:	learn: 23.3903724	total: 314ms	remaining: 176ms
64:	learn: 23.3257785	total: 318ms	remaining: 171ms
65:	learn: 23.2839464	total: 324ms	remaining: 167ms
66:	learn: 23.1476036	total: 329ms	remaining: 162ms
67:	learn: 22.9480972	total: 334ms	remaining: 157ms
68:	learn: 22.7537529	total: 339ms	remaining: 152ms
69:	learn: 22.6209544	total: 344ms	remaining: 147ms
70:	learn: 22.5058753	total: 348ms	remaining: 142ms
71:	learn: 22.4068656	total: 353ms	remaining: 137ms
72:	learn: 22.3254150	total: 358ms	remaining: 132ms
73:	learn: 22.1784174	total: 363ms	remaining: 128ms
74:	learn: 22.1095388	total: 369ms	remaining: 123ms
75:	learn: 21.9958083	total: 373ms	remaining: 118ms
76:	learn: 21.8728475	total: 376ms	remaining: 112ms
77:	learn: 21.7975828	total: 380ms	remaining: 107ms
78:	learn: 21.7133267	total: 384ms	remaining: 102ms
79:	learn: 21.6023410	total: 388ms	remaining: 97.1ms
80:	learn: 21.5254474	total: 392ms	remaining: 92ms
81:	learn: 21.3307418	total: 396ms	remaining: 87ms
82:	learn: 21.2411976	total: 400ms	remaining: 81.9ms
83:	learn: 21.1091386	total: 404ms	remaining: 76.9ms
84:	learn: 21.0526747	total: 407ms	remaining: 71.9ms
85:	learn: 20.9083817	total: 412ms	remaining: 67ms
86:	learn: 20.8767767	total: 415ms	remaining: 62.1ms
87:	learn: 20.8143988	total: 419ms	remaining: 57.1ms
88:	learn: 20.7127697	total: 423ms	remaining: 52.2ms
89:	learn: 20.6112504	total: 427ms	remaining: 47.4ms
90:	learn: 20.4609960	total: 431ms	remaining: 42.7ms
91:	learn: 20.3648890	total: 436ms	remaining: 37.9ms
92:	learn: 20.3052040	total: 440ms	remaining: 33.1ms
93:	learn: 20.2587865	total: 444ms	remaining: 28.4ms
94:	learn: 20.2096406	total: 448ms	remaining: 23.6ms
95:	learn: 20.1301385	total: 452ms	remaining: 18.9ms
96:	learn: 20.0401359	total: 456ms	remaining: 14.1ms
97:	learn: 19.9791591	total: 461ms	remaining: 9.4ms
98:	learn: 19.9237318	total: 468ms	remaining: 4.72ms
99:	learn: 19.8009190	total: 475ms	remaining: 0us
0:	learn: 46.9286701	total: 5.28ms	remaining: 522ms
1:	learn: 46.2851598	total: 10.6ms	remaining: 518ms
2:	learn: 45.4586007	total: 15.3ms	remaining: 493ms
3:	learn: 44.6581393	total: 20.5ms	remaining: 492ms
4:	learn: 43.8231644	total: 26.7ms	remaining: 508ms
5:	learn: 43.2906569	total: 32.3ms	remaining: 506ms
6:	learn: 42.5095813	total: 36.8ms	remaining: 488ms
7:	learn: 41.9310465	total: 41.5ms	remaining: 478ms
8:	learn: 41.2083262	total: 46ms	remaining: 465ms
9:	learn: 40.6852547	total: 50.6ms	remaining: 456ms
10:	learn: 39.9637018	total: 54.9ms	remaining: 444ms
11:	learn: 39.2804189	total: 59.4ms	remaining: 436ms
12:	learn: 38.8804017	total: 63.4ms	remaining: 424ms
13:	learn: 38.3826597	total: 67.2ms	remaining: 413ms
14:	learn: 37.9240424	total: 71ms	remaining: 402ms
15:	learn: 37.4312070	total: 75.4ms	remaining: 396ms
16:	learn: 36.8803673	total: 79.6ms	remaining: 389ms
17:	learn: 36.5496582	total: 83.5ms	remaining: 380ms
18:	learn: 36.2078375	total: 87.6ms	remaining: 373ms
19:	learn: 35.6806593	total: 91.3ms	remaining: 365ms
20:	learn: 35.1512154	total: 95.4ms	remaining: 359ms
21:	learn: 34.6013055	total: 99.1ms	remaining: 351ms
22:	learn: 34.2380102	total: 103ms	remaining: 346ms
23:	learn: 33.8720185	total: 108ms	remaining: 342ms
24:	learn: 33.4426135	total: 113ms	remaining: 338ms
25:	learn: 33.1471186	total: 117ms	remaining: 333ms
26:	learn: 32.8018279	total: 121ms	remaining: 327ms
27:	learn: 32.4498594	total: 126ms	remaining: 323ms
28:	learn: 31.9749480	total: 130ms	remaining: 319ms
29:	learn: 31.6470735	total: 135ms	remaining: 314ms
30:	learn: 31.4265242	total: 140ms	remaining: 312ms
31:	learn: 31.0753325	total: 148ms	remaining: 314ms
32:	learn: 30.7192494	total: 155ms	remaining: 315ms
33:	learn: 30.3547940	total: 163ms	remaining: 317ms
34:	learn: 30.1296593	total: 170ms	remaining: 316ms
35:	learn: 29.9367140	total: 176ms	remaining: 312ms
36:	learn: 29.6248477	total: 181ms	remaining: 308ms
37:	learn: 29.3156707	total: 186ms	remaining: 303ms
38:	learn: 29.1534039	total: 191ms	remaining: 299ms
39:	learn: 28.9351289	total: 196ms	remaining: 294ms
40:	learn: 28.7057685	total: 201ms	remaining: 289ms
41:	learn: 28.3132521	total: 206ms	remaining: 284ms
42:	learn: 28.0739054	total: 211ms	remaining: 280ms
43:	learn: 27.8135917	total: 216ms	remaining: 275ms
44:	learn: 27.5376804	total: 221ms	remaining: 270ms
45:	learn: 27.3195849	total: 226ms	remaining: 265ms
46:	learn: 27.1681104	total: 230ms	remaining: 259ms
47:	learn: 27.0122442	total: 235ms	remaining: 254ms
48:	learn: 26.7819409	total: 240ms	remaining: 250ms
49:	learn: 26.6429308	total: 244ms	remaining: 244ms
50:	learn: 26.3482899	total: 248ms	remaining: 238ms
51:	learn: 26.2432755	total: 252ms	remaining: 232ms
52:	learn: 26.0811102	total: 255ms	remaining: 227ms
53:	learn: 25.9398113	total: 259ms	remaining: 220ms
54:	learn: 25.7891395	total: 262ms	remaining: 215ms
55:	learn: 25.6185338	total: 266ms	remaining: 209ms
56:	learn: 25.3293977	total: 270ms	remaining: 204ms
57:	learn: 25.1918906	total: 274ms	remaining: 198ms
58:	learn: 25.0503990	total: 277ms	remaining: 193ms
59:	learn: 24.8225776	total: 281ms	remaining: 187ms
60:	learn: 24.5969153	total: 285ms	remaining: 182ms
61:	learn: 24.4657353	total: 290ms	remaining: 178ms
62:	learn: 24.2861000	total: 293ms	remaining: 172ms
63:	learn: 24.1719148	total: 297ms	remaining: 167ms
64:	learn: 24.0547875	total: 301ms	remaining: 162ms
65:	learn: 23.9156724	total: 306ms	remaining: 158ms
66:	learn: 23.7604012	total: 311ms	remaining: 153ms
67:	learn: 23.6265679	total: 315ms	remaining: 148ms
68:	learn: 23.5372255	total: 320ms	remaining: 144ms
69:	learn: 23.3286241	total: 325ms	remaining: 139ms
70:	learn: 23.1806465	total: 329ms	remaining: 134ms
71:	learn: 23.0652081	total: 333ms	remaining: 130ms
72:	learn: 22.9231023	total: 339ms	remaining: 125ms
73:	learn: 22.8020380	total: 346ms	remaining: 121ms
74:	learn: 22.6525036	total: 353ms	remaining: 118ms
75:	learn: 22.5616268	total: 361ms	remaining: 114ms
76:	learn: 22.4395250	total: 368ms	remaining: 110ms
77:	learn: 22.3732379	total: 374ms	remaining: 105ms
78:	learn: 22.2300874	total: 379ms	remaining: 101ms
79:	learn: 22.0209882	total: 384ms	remaining: 96ms
80:	learn: 21.8703996	total: 389ms	remaining: 91.2ms
81:	learn: 21.7222039	total: 394ms	remaining: 86.5ms
82:	learn: 21.5903685	total: 399ms	remaining: 81.8ms
83:	learn: 21.4915083	total: 404ms	remaining: 77ms
84:	learn: 21.3320736	total: 409ms	remaining: 72.2ms
85:	learn: 21.2295060	total: 414ms	remaining: 67.4ms
86:	learn: 21.1983620	total: 419ms	remaining: 62.6ms
87:	learn: 21.1404156	total: 424ms	remaining: 57.8ms
88:	learn: 21.0684840	total: 429ms	remaining: 53ms
89:	learn: 20.9269197	total: 434ms	remaining: 48.2ms
90:	learn: 20.8614606	total: 438ms	remaining: 43.3ms
91:	learn: 20.6642996	total: 442ms	remaining: 38.5ms
92:	learn: 20.5612705	total: 446ms	remaining: 33.6ms
93:	learn: 20.5264997	total: 449ms	remaining: 28.7ms
94:	learn: 20.4532331	total: 453ms	remaining: 23.8ms
95:	learn: 20.3700696	total: 457ms	remaining: 19ms
96:	learn: 20.2671574	total: 461ms	remaining: 14.2ms
97:	learn: 20.1761207	total: 464ms	remaining: 9.48ms
98:	learn: 20.0533799	total: 468ms	remaining: 4.73ms
99:	learn: 19.9890055	total: 472ms	remaining: 0us
0:	learn: 27.5585353	total: 4.97ms	remaining: 492ms
1:	learn: 27.1656995	total: 9.33ms	remaining: 457ms
2:	learn: 26.8590175	total: 15.6ms	remaining: 504ms
3:	learn: 26.5818406	total: 22.5ms	remaining: 541ms
4:	learn: 26.1148663	total: 30.2ms	remaining: 574ms
5:	learn: 25.7690484	total: 38.1ms	remaining: 597ms
6:	learn: 25.3489206	total: 44.4ms	remaining: 590ms
7:	learn: 24.9542406	total: 62.9ms	remaining: 723ms
8:	learn: 24.6777517	total: 68.1ms	remaining: 689ms
9:	learn: 24.3242344	total: 73.2ms	remaining: 659ms
10:	learn: 24.0383073	total: 78ms	remaining: 631ms
11:	learn: 23.7383420	total: 83ms	remaining: 609ms
12:	learn: 23.3461670	total: 88ms	remaining: 589ms
13:	learn: 23.0928636	total: 93.3ms	remaining: 573ms
14:	learn: 22.8770414	total: 98.3ms	remaining: 557ms
15:	learn: 22.6323214	total: 103ms	remaining: 542ms
16:	learn: 22.3597072	total: 109ms	remaining: 531ms
17:	learn: 22.1079813	total: 114ms	remaining: 519ms
18:	learn: 21.8421199	total: 118ms	remaining: 504ms
19:	learn: 21.6576508	total: 122ms	remaining: 489ms
20:	learn: 21.4301268	total: 126ms	remaining: 474ms
21:	learn: 21.2287388	total: 130ms	remaining: 462ms
22:	learn: 21.0553872	total: 134ms	remaining: 449ms
23:	learn: 20.8977091	total: 138ms	remaining: 437ms
24:	learn: 20.6619051	total: 142ms	remaining: 426ms
25:	learn: 20.5040955	total: 146ms	remaining: 416ms
26:	learn: 20.3181195	total: 150ms	remaining: 406ms
27:	learn: 20.0869436	total: 154ms	remaining: 397ms
28:	learn: 19.9375985	total: 158ms	remaining: 388ms
29:	learn: 19.8247516	total: 162ms	remaining: 379ms
30:	learn: 19.6261697	total: 166ms	remaining: 370ms
31:	learn: 19.4547236	total: 171ms	remaining: 362ms
32:	learn: 19.3157092	total: 174ms	remaining: 354ms
33:	learn: 19.1561419	total: 178ms	remaining: 346ms
34:	learn: 19.0453620	total: 182ms	remaining: 338ms
35:	learn: 18.8738574	total: 187ms	remaining: 332ms
36:	learn: 18.7072907	total: 190ms	remaining: 324ms
37:	learn: 18.5877943	total: 194ms	remaining: 317ms
38:	learn: 18.4436380	total: 199ms	remaining: 311ms
39:	learn: 18.3463356	total: 203ms	remaining: 305ms
40:	learn: 18.2008059	total: 207ms	remaining: 298ms
41:	learn: 18.0582079	total: 211ms	remaining: 291ms
42:	learn: 17.8891982	total: 215ms	remaining: 286ms
43:	learn: 17.7332246	total: 219ms	remaining: 279ms
44:	learn: 17.6206421	total: 224ms	remaining: 274ms
45:	learn: 17.4982800	total: 228ms	remaining: 268ms
46:	learn: 17.3970150	total: 232ms	remaining: 262ms
47:	learn: 17.3058203	total: 237ms	remaining: 256ms
48:	learn: 17.1789256	total: 242ms	remaining: 251ms
49:	learn: 17.0916229	total: 246ms	remaining: 246ms
50:	learn: 16.9859820	total: 250ms	remaining: 241ms
51:	learn: 16.8995582	total: 255ms	remaining: 235ms
52:	learn: 16.8137014	total: 259ms	remaining: 230ms
53:	learn: 16.7021451	total: 266ms	remaining: 227ms
54:	learn: 16.5895582	total: 273ms	remaining: 224ms
55:	learn: 16.5015639	total: 281ms	remaining: 221ms
56:	learn: 16.4356637	total: 288ms	remaining: 218ms
57:	learn: 16.3514525	total: 296ms	remaining: 214ms
58:	learn: 16.2401369	total: 301ms	remaining: 209ms
59:	learn: 16.1293223	total: 307ms	remaining: 205ms
60:	learn: 16.0271167	total: 312ms	remaining: 200ms
61:	learn: 15.9126257	total: 317ms	remaining: 195ms
62:	learn: 15.8391096	total: 322ms	remaining: 189ms
63:	learn: 15.7441773	total: 328ms	remaining: 184ms
64:	learn: 15.6885195	total: 333ms	remaining: 179ms
65:	learn: 15.6052039	total: 338ms	remaining: 174ms
66:	learn: 15.5074202	total: 343ms	remaining: 169ms
67:	learn: 15.4054338	total: 348ms	remaining: 164ms
68:	learn: 15.2885714	total: 353ms	remaining: 159ms
69:	learn: 15.2157472	total: 359ms	remaining: 154ms
70:	learn: 15.1031554	total: 364ms	remaining: 149ms
71:	learn: 15.0237470	total: 369ms	remaining: 143ms
72:	learn: 14.9756825	total: 373ms	remaining: 138ms
73:	learn: 14.8840596	total: 377ms	remaining: 132ms
74:	learn: 14.8077061	total: 381ms	remaining: 127ms
75:	learn: 14.7444437	total: 386ms	remaining: 122ms
76:	learn: 14.6751720	total: 390ms	remaining: 116ms
77:	learn: 14.5830333	total: 393ms	remaining: 111ms
78:	learn: 14.5241206	total: 398ms	remaining: 106ms
79:	learn: 14.4892731	total: 402ms	remaining: 100ms
80:	learn: 14.4256605	total: 406ms	remaining: 95.2ms
81:	learn: 14.3666860	total: 410ms	remaining: 89.9ms
82:	learn: 14.2938372	total: 414ms	remaining: 84.9ms
83:	learn: 14.2161532	total: 418ms	remaining: 79.7ms
84:	learn: 14.1582910	total: 422ms	remaining: 74.5ms
85:	learn: 14.1029153	total: 426ms	remaining: 69.4ms
86:	learn: 14.0475835	total: 431ms	remaining: 64.4ms
87:	learn: 13.9892661	total: 435ms	remaining: 59.3ms
88:	learn: 13.9481628	total: 440ms	remaining: 54.4ms
89:	learn: 13.8483991	total: 444ms	remaining: 49.4ms
90:	learn: 13.7775614	total: 449ms	remaining: 44.4ms
91:	learn: 13.7304585	total: 453ms	remaining: 39.4ms
92:	learn: 13.6783381	total: 458ms	remaining: 34.5ms
93:	learn: 13.6356964	total: 462ms	remaining: 29.5ms
94:	learn: 13.5924371	total: 469ms	remaining: 24.7ms
95:	learn: 13.5400746	total: 477ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 487ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 493ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 501ms	remaining: 5.06ms
99:	learn: 13.3082371	total: 506ms	remaining: 0us
0:	learn: 43.0395283	total: 4.99ms	remaining: 494ms
1:	learn: 42.1130223	total: 10.6ms	remaining: 522ms
2:	learn: 41.1753409	total: 16.3ms	remaining: 527ms
3:	learn: 40.3637444	total: 21.5ms	remaining: 517ms
4:	learn: 39.6508088	total: 26ms	remaining: 494ms
5:	learn: 38.7217934	total: 30.3ms	remaining: 474ms
6:	learn: 37.8538055	total: 34ms	remaining: 452ms
7:	learn: 36.9793574	total: 37.9ms	remaining: 436ms
8:	learn: 36.3076984	total: 42.3ms	remaining: 428ms
9:	learn: 35.6673160	total: 46.5ms	remaining: 419ms
10:	learn: 34.8889800	total: 50.5ms	remaining: 409ms
11:	learn: 34.1675517	total: 54.7ms	remaining: 401ms
12:	learn: 33.6779564	total: 58.9ms	remaining: 394ms
13:	learn: 33.0710039	total: 63.6ms	remaining: 390ms
14:	learn: 32.4966674	total: 68ms	remaining: 385ms
15:	learn: 31.9492856	total: 72.7ms	remaining: 382ms
16:	learn: 31.5108129	total: 76.8ms	remaining: 375ms
17:	learn: 30.9804023	total: 81.4ms	remaining: 371ms
18:	learn: 30.4169089	total: 86.1ms	remaining: 367ms
19:	learn: 29.8930375	total: 90.8ms	remaining: 363ms
20:	learn: 29.3974421	total: 95.7ms	remaining: 360ms
21:	learn: 28.8792307	total: 100ms	remaining: 355ms
22:	learn: 28.3894474	total: 105ms	remaining: 351ms
23:	learn: 27.9921276	total: 109ms	remaining: 346ms
24:	learn: 27.6158887	total: 114ms	remaining: 342ms
25:	learn: 27.2866950	total: 119ms	remaining: 339ms
26:	learn: 26.8770708	total: 128ms	remaining: 346ms
27:	learn: 26.6233005	total: 136ms	remaining: 349ms
28:	learn: 26.2921934	total: 144ms	remaining: 352ms
29:	learn: 25.9156920	total: 152ms	remaining: 354ms
30:	learn: 25.5311106	total: 154ms	remaining: 342ms
31:	learn: 25.2178997	total: 159ms	remaining: 337ms
32:	learn: 24.8572196	total: 164ms	remaining: 333ms
33:	learn: 24.5849710	total: 169ms	remaining: 328ms
34:	learn: 24.2209190	total: 174ms	remaining: 323ms
35:	learn: 23.8708250	total: 179ms	remaining: 318ms
36:	learn: 23.5325279	total: 184ms	remaining: 314ms
37:	learn: 23.2116148	total: 190ms	remaining: 310ms
38:	learn: 22.9696787	total: 195ms	remaining: 305ms
39:	learn: 22.7936783	total: 200ms	remaining: 300ms
40:	learn: 22.6228847	total: 205ms	remaining: 294ms
41:	learn: 22.3691527	total: 210ms	remaining: 290ms
42:	learn: 22.1002173	total: 216ms	remaining: 286ms
43:	learn: 21.9157268	total: 220ms	remaining: 280ms
44:	learn: 21.7229102	total: 224ms	remaining: 274ms
45:	learn: 21.4642005	total: 228ms	remaining: 268ms
46:	learn: 21.3029442	total: 232ms	remaining: 261ms
47:	learn: 21.1469792	total: 238ms	remaining: 258ms
48:	learn: 20.9458235	total: 242ms	remaining: 252ms
49:	learn: 20.7335242	total: 246ms	remaining: 246ms
50:	learn: 20.5440269	total: 250ms	remaining: 240ms
51:	learn: 20.3661449	total: 255ms	remaining: 235ms
52:	learn: 20.2158134	total: 259ms	remaining: 229ms
53:	learn: 19.9934873	total: 262ms	remaining: 223ms
54:	learn: 19.7879739	total: 266ms	remaining: 218ms
55:	learn: 19.6630460	total: 271ms	remaining: 213ms
56:	learn: 19.5152729	total: 275ms	remaining: 207ms
57:	learn: 19.3581128	total: 279ms	remaining: 202ms
58:	learn: 19.2209303	total: 283ms	remaining: 197ms
59:	learn: 19.0965248	total: 288ms	remaining: 192ms
60:	learn: 19.0035954	total: 292ms	remaining: 187ms
61:	learn: 18.8554149	total: 297ms	remaining: 182ms
62:	learn: 18.7095427	total: 301ms	remaining: 177ms
63:	learn: 18.5751494	total: 306ms	remaining: 172ms
64:	learn: 18.4678251	total: 310ms	remaining: 167ms
65:	learn: 18.3500325	total: 314ms	remaining: 162ms
66:	learn: 18.2088983	total: 320ms	remaining: 157ms
67:	learn: 18.0737705	total: 328ms	remaining: 154ms
68:	learn: 17.9325058	total: 335ms	remaining: 150ms
69:	learn: 17.8003911	total: 343ms	remaining: 147ms
70:	learn: 17.7385366	total: 350ms	remaining: 143ms
71:	learn: 17.6106998	total: 356ms	remaining: 138ms
72:	learn: 17.4816270	total: 361ms	remaining: 134ms
73:	learn: 17.4025554	total: 366ms	remaining: 129ms
74:	learn: 17.2902108	total: 371ms	remaining: 124ms
75:	learn: 17.2158048	total: 377ms	remaining: 119ms
76:	learn: 17.1261053	total: 382ms	remaining: 114ms
77:	learn: 17.0308917	total: 387ms	remaining: 109ms
78:	learn: 16.9546705	total: 392ms	remaining: 104ms
79:	learn: 16.8319165	total: 398ms	remaining: 99.5ms
80:	learn: 16.7687017	total: 403ms	remaining: 94.5ms
81:	learn: 16.6972326	total: 408ms	remaining: 89.5ms
82:	learn: 16.6124580	total: 413ms	remaining: 84.6ms
83:	learn: 16.4999052	total: 419ms	remaining: 79.7ms
84:	learn: 16.4302484	total: 423ms	remaining: 74.7ms
85:	learn: 16.3201363	total: 428ms	remaining: 69.6ms
86:	learn: 16.2534314	total: 431ms	remaining: 64.5ms
87:	learn: 16.1720485	total: 435ms	remaining: 59.4ms
88:	learn: 16.0625751	total: 440ms	remaining: 54.3ms
89:	learn: 15.9135088	total: 444ms	remaining: 49.4ms
90:	learn: 15.8658863	total: 449ms	remaining: 44.4ms
91:	learn: 15.8066805	total: 453ms	remaining: 39.4ms
92:	learn: 15.7412103	total: 458ms	remaining: 34.5ms
93:	learn: 15.6542776	total: 462ms	remaining: 29.5ms
94:	learn: 15.5760334	total: 467ms	remaining: 24.6ms
95:	learn: 15.5434131	total: 472ms	remaining: 19.7ms
96:	learn: 15.4709561	total: 476ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 480ms	remaining: 9.8ms
98:	learn: 15.3752761	total: 485ms	remaining: 4.9ms
99:	learn: 15.3106595	total: 490ms	remaining: 0us
0:	learn: 46.7142257	total: 7.97ms	remaining: 789ms
1:	learn: 45.7634153	total: 13.4ms	remaining: 656ms
2:	learn: 45.0054253	total: 18.6ms	remaining: 600ms
3:	learn: 44.2120432	total: 38.4ms	remaining: 921ms
4:	learn: 43.3960472	total: 43.5ms	remaining: 827ms
5:	learn: 42.8588120	total: 48.7ms	remaining: 764ms
6:	learn: 41.9533701	total: 53.9ms	remaining: 716ms
7:	learn: 41.2745030	total: 58.8ms	remaining: 676ms
8:	learn: 40.6797495	total: 63.8ms	remaining: 646ms
9:	learn: 39.9899571	total: 69.5ms	remaining: 625ms
10:	learn: 39.4682100	total: 74.9ms	remaining: 606ms
11:	learn: 39.0305595	total: 79.1ms	remaining: 580ms
12:	learn: 38.4200417	total: 83.3ms	remaining: 557ms
13:	learn: 37.8425194	total: 87.4ms	remaining: 537ms
14:	learn: 37.4203127	total: 91.4ms	remaining: 518ms
15:	learn: 36.9917688	total: 95.2ms	remaining: 500ms
16:	learn: 36.5544138	total: 99.4ms	remaining: 486ms
17:	learn: 36.0727019	total: 103ms	remaining: 470ms
18:	learn: 35.4835715	total: 107ms	remaining: 457ms
19:	learn: 34.9865654	total: 111ms	remaining: 445ms
20:	learn: 34.6063373	total: 116ms	remaining: 435ms
21:	learn: 34.0997289	total: 120ms	remaining: 425ms
22:	learn: 33.7313171	total: 124ms	remaining: 414ms
23:	learn: 33.3582000	total: 128ms	remaining: 404ms
24:	learn: 32.9432456	total: 132ms	remaining: 397ms
25:	learn: 32.5220888	total: 136ms	remaining: 388ms
26:	learn: 32.2172292	total: 140ms	remaining: 380ms
27:	learn: 31.8972904	total: 144ms	remaining: 371ms
28:	learn: 31.6405350	total: 149ms	remaining: 364ms
29:	learn: 31.4167702	total: 153ms	remaining: 357ms
30:	learn: 30.8541961	total: 155ms	remaining: 345ms
31:	learn: 30.5572111	total: 159ms	remaining: 339ms
32:	learn: 30.1700399	total: 164ms	remaining: 333ms
33:	learn: 29.8537271	total: 168ms	remaining: 327ms
34:	learn: 29.6192540	total: 173ms	remaining: 322ms
35:	learn: 29.3276362	total: 178ms	remaining: 317ms
36:	learn: 28.9985179	total: 185ms	remaining: 316ms
37:	learn: 28.7046880	total: 193ms	remaining: 314ms
38:	learn: 28.4412677	total: 200ms	remaining: 313ms
39:	learn: 28.1277292	total: 208ms	remaining: 312ms
40:	learn: 27.9000750	total: 215ms	remaining: 310ms
41:	learn: 27.5433162	total: 221ms	remaining: 305ms
42:	learn: 27.2493285	total: 226ms	remaining: 300ms
43:	learn: 26.9576632	total: 228ms	remaining: 290ms
44:	learn: 26.6177110	total: 233ms	remaining: 285ms
45:	learn: 26.2812456	total: 238ms	remaining: 280ms
46:	learn: 26.0803859	total: 243ms	remaining: 275ms
47:	learn: 25.9543581	total: 249ms	remaining: 269ms
48:	learn: 25.7951582	total: 254ms	remaining: 264ms
49:	learn: 25.6548184	total: 258ms	remaining: 258ms
50:	learn: 25.4010843	total: 263ms	remaining: 253ms
51:	learn: 24.9773937	total: 268ms	remaining: 248ms
52:	learn: 24.8026156	total: 274ms	remaining: 243ms
53:	learn: 24.5568053	total: 278ms	remaining: 237ms
54:	learn: 24.2281839	total: 283ms	remaining: 231ms
55:	learn: 23.9202795	total: 287ms	remaining: 225ms
56:	learn: 23.7625591	total: 291ms	remaining: 219ms
57:	learn: 23.5429721	total: 295ms	remaining: 214ms
58:	learn: 23.3175893	total: 299ms	remaining: 208ms
59:	learn: 23.2035130	total: 303ms	remaining: 202ms
60:	learn: 23.0232450	total: 307ms	remaining: 196ms
61:	learn: 22.8384958	total: 311ms	remaining: 190ms
62:	learn: 22.6499902	total: 315ms	remaining: 185ms
63:	learn: 22.4577426	total: 319ms	remaining: 179ms
64:	learn: 22.3333158	total: 323ms	remaining: 174ms
65:	learn: 22.2064131	total: 328ms	remaining: 169ms
66:	learn: 22.1434971	total: 332ms	remaining: 163ms
67:	learn: 21.9596519	total: 336ms	remaining: 158ms
68:	learn: 21.8475576	total: 341ms	remaining: 153ms
69:	learn: 21.6954745	total: 345ms	remaining: 148ms
70:	learn: 21.5635976	total: 350ms	remaining: 143ms
71:	learn: 21.4588506	total: 355ms	remaining: 138ms
72:	learn: 21.3527268	total: 359ms	remaining: 133ms
73:	learn: 21.2661288	total: 365ms	remaining: 128ms
74:	learn: 21.1817333	total: 370ms	remaining: 123ms
75:	learn: 21.0527553	total: 380ms	remaining: 120ms
76:	learn: 20.9229021	total: 392ms	remaining: 117ms
77:	learn: 20.7563946	total: 401ms	remaining: 113ms
78:	learn: 20.6569831	total: 406ms	remaining: 108ms
79:	learn: 20.4982663	total: 411ms	remaining: 103ms
80:	learn: 20.3185460	total: 416ms	remaining: 97.7ms
81:	learn: 20.2096241	total: 422ms	remaining: 92.6ms
82:	learn: 20.1274891	total: 427ms	remaining: 87.5ms
83:	learn: 20.0740139	total: 432ms	remaining: 82.3ms
84:	learn: 19.9630699	total: 438ms	remaining: 77.2ms
85:	learn: 19.8753899	total: 443ms	remaining: 72.1ms
86:	learn: 19.6563612	total: 448ms	remaining: 67ms
87:	learn: 19.4680232	total: 453ms	remaining: 61.8ms
88:	learn: 19.3503431	total: 458ms	remaining: 56.7ms
89:	learn: 19.2221379	total: 463ms	remaining: 51.4ms
90:	learn: 19.0732542	total: 468ms	remaining: 46.3ms
91:	learn: 18.9825190	total: 474ms	remaining: 41.2ms
92:	learn: 18.8839009	total: 478ms	remaining: 36ms
93:	learn: 18.8012219	total: 482ms	remaining: 30.8ms
94:	learn: 18.7172713	total: 487ms	remaining: 25.6ms
95:	learn: 18.6201170	total: 491ms	remaining: 20.5ms
96:	learn: 18.5318611	total: 495ms	remaining: 15.3ms
97:	learn: 18.3833356	total: 500ms	remaining: 10.2ms
98:	learn: 18.3289700	total: 504ms	remaining: 5.09ms
99:	learn: 18.2227333	total: 508ms	remaining: 0us
0:	learn: 46.3764524	total: 4.59ms	remaining: 454ms
1:	learn: 45.5561269	total: 8.95ms	remaining: 439ms
2:	learn: 44.8811245	total: 13.4ms	remaining: 435ms
3:	learn: 44.0788617	total: 17.7ms	remaining: 425ms
4:	learn: 43.3619790	total: 22.2ms	remaining: 422ms
5:	learn: 42.6912112	total: 26.7ms	remaining: 419ms
6:	learn: 42.2292118	total: 30.9ms	remaining: 411ms
7:	learn: 41.7725191	total: 35.4ms	remaining: 407ms
8:	learn: 41.1676614	total: 39.6ms	remaining: 401ms
9:	learn: 40.5771076	total: 45.3ms	remaining: 407ms
10:	learn: 39.8343757	total: 53.5ms	remaining: 433ms
11:	learn: 39.3761142	total: 61.1ms	remaining: 448ms
12:	learn: 38.5254692	total: 69ms	remaining: 462ms
13:	learn: 37.9629555	total: 76.9ms	remaining: 472ms
14:	learn: 37.4418438	total: 81.8ms	remaining: 464ms
15:	learn: 37.0507283	total: 87.2ms	remaining: 458ms
16:	learn: 36.6264217	total: 92.4ms	remaining: 451ms
17:	learn: 36.1114940	total: 97.7ms	remaining: 445ms
18:	learn: 35.7193862	total: 103ms	remaining: 439ms
19:	learn: 35.3301177	total: 108ms	remaining: 433ms
20:	learn: 35.0598280	total: 114ms	remaining: 427ms
21:	learn: 34.5469736	total: 119ms	remaining: 420ms
22:	learn: 34.2064215	total: 123ms	remaining: 413ms
23:	learn: 33.7280710	total: 128ms	remaining: 405ms
24:	learn: 33.3282940	total: 133ms	remaining: 398ms
25:	learn: 32.8478961	total: 138ms	remaining: 393ms
26:	learn: 32.5722164	total: 144ms	remaining: 389ms
27:	learn: 32.2457019	total: 148ms	remaining: 382ms
28:	learn: 31.9230495	total: 152ms	remaining: 373ms
29:	learn: 31.4311611	total: 156ms	remaining: 365ms
30:	learn: 30.9179052	total: 161ms	remaining: 359ms
31:	learn: 30.6201141	total: 165ms	remaining: 351ms
32:	learn: 30.3421106	total: 169ms	remaining: 344ms
33:	learn: 29.9885373	total: 173ms	remaining: 336ms
34:	learn: 29.7462780	total: 177ms	remaining: 329ms
35:	learn: 29.3607153	total: 181ms	remaining: 323ms
36:	learn: 29.1793078	total: 185ms	remaining: 316ms
37:	learn: 28.9276538	total: 189ms	remaining: 309ms
38:	learn: 28.6903934	total: 194ms	remaining: 304ms
39:	learn: 28.2095033	total: 198ms	remaining: 297ms
40:	learn: 27.7990608	total: 202ms	remaining: 291ms
41:	learn: 27.5406632	total: 206ms	remaining: 284ms
42:	learn: 27.2575376	total: 210ms	remaining: 279ms
43:	learn: 26.9741707	total: 214ms	remaining: 273ms
44:	learn: 26.6606899	total: 218ms	remaining: 267ms
45:	learn: 26.4015833	total: 222ms	remaining: 261ms
46:	learn: 26.1828993	total: 227ms	remaining: 256ms
47:	learn: 26.0233709	total: 230ms	remaining: 249ms
48:	learn: 25.9300399	total: 234ms	remaining: 244ms
49:	learn: 25.5861489	total: 239ms	remaining: 239ms
50:	learn: 25.4322012	total: 244ms	remaining: 234ms
51:	learn: 25.1595644	total: 248ms	remaining: 229ms
52:	learn: 24.9955303	total: 252ms	remaining: 224ms
53:	learn: 24.7273966	total: 257ms	remaining: 219ms
54:	learn: 24.5747978	total: 270ms	remaining: 221ms
55:	learn: 24.3807977	total: 279ms	remaining: 219ms
56:	learn: 24.1689569	total: 287ms	remaining: 216ms
57:	learn: 23.9898221	total: 292ms	remaining: 212ms
58:	learn: 23.7566414	total: 297ms	remaining: 207ms
59:	learn: 23.6641165	total: 302ms	remaining: 202ms
60:	learn: 23.5658066	total: 307ms	remaining: 196ms
61:	learn: 23.4338851	total: 312ms	remaining: 191ms
62:	learn: 23.2408837	total: 317ms	remaining: 186ms
63:	learn: 23.0642038	total: 322ms	remaining: 181ms
64:	learn: 22.9032045	total: 327ms	remaining: 176ms
65:	learn: 22.7736138	total: 345ms	remaining: 178ms
66:	learn: 22.6836443	total: 350ms	remaining: 173ms
67:	learn: 22.5983654	total: 354ms	remaining: 167ms
68:	learn: 22.4419813	total: 358ms	remaining: 161ms
69:	learn: 22.2863339	total: 363ms	remaining: 155ms
70:	learn: 22.1792943	total: 367ms	remaining: 150ms
71:	learn: 22.1130574	total: 372ms	remaining: 145ms
72:	learn: 21.9858161	total: 377ms	remaining: 139ms
73:	learn: 21.8577784	total: 381ms	remaining: 134ms
74:	learn: 21.7845222	total: 386ms	remaining: 129ms
75:	learn: 21.6831390	total: 390ms	remaining: 123ms
76:	learn: 21.6292521	total: 395ms	remaining: 118ms
77:	learn: 21.5789330	total: 399ms	remaining: 113ms
78:	learn: 21.5420942	total: 403ms	remaining: 107ms
79:	learn: 21.4280939	total: 408ms	remaining: 102ms
80:	learn: 21.3641165	total: 412ms	remaining: 96.6ms
81:	learn: 21.2734814	total: 416ms	remaining: 91.2ms
82:	learn: 21.2220323	total: 420ms	remaining: 86ms
83:	learn: 21.0625792	total: 424ms	remaining: 80.8ms
84:	learn: 20.9488320	total: 429ms	remaining: 75.7ms
85:	learn: 20.8504255	total: 433ms	remaining: 70.5ms
86:	learn: 20.7848510	total: 438ms	remaining: 65.4ms
87:	learn: 20.7247442	total: 442ms	remaining: 60.3ms
88:	learn: 20.5698590	total: 446ms	remaining: 55.2ms
89:	learn: 20.4067620	total: 451ms	remaining: 50.1ms
90:	learn: 20.3062482	total: 456ms	remaining: 45.1ms
91:	learn: 20.2029696	total: 464ms	remaining: 40.3ms
92:	learn: 20.1384849	total: 482ms	remaining: 36.3ms
93:	learn: 20.0260709	total: 489ms	remaining: 31.2ms
94:	learn: 19.9122100	total: 494ms	remaining: 26ms
95:	learn: 19.8648487	total: 499ms	remaining: 20.8ms
96:	learn: 19.8207072	total: 504ms	remaining: 15.6ms
97:	learn: 19.7261189	total: 509ms	remaining: 10.4ms
98:	learn: 19.7042438	total: 515ms	remaining: 5.2ms
99:	learn: 19.6546645	total: 520ms	remaining: 0us
0:	learn: 47.0239288	total: 4.11ms	remaining: 407ms
1:	learn: 46.2253829	total: 8.28ms	remaining: 406ms
2:	learn: 45.5580301	total: 12.2ms	remaining: 394ms
3:	learn: 44.7273237	total: 16.5ms	remaining: 397ms
4:	learn: 43.8867421	total: 20.8ms	remaining: 396ms
5:	learn: 43.3615911	total: 24.8ms	remaining: 389ms
6:	learn: 42.8548390	total: 28.5ms	remaining: 379ms
7:	learn: 42.1606758	total: 32.5ms	remaining: 374ms
8:	learn: 41.6625870	total: 36.3ms	remaining: 367ms
9:	learn: 40.9497092	total: 40.3ms	remaining: 362ms
10:	learn: 40.1886318	total: 44.4ms	remaining: 359ms
11:	learn: 39.7456423	total: 48.8ms	remaining: 358ms
12:	learn: 39.1171373	total: 52.5ms	remaining: 352ms
13:	learn: 38.5451069	total: 56.8ms	remaining: 349ms
14:	learn: 38.0155834	total: 60.7ms	remaining: 344ms
15:	learn: 37.5631354	total: 64.5ms	remaining: 339ms
16:	learn: 37.1030023	total: 68.6ms	remaining: 335ms
17:	learn: 36.4563029	total: 72.9ms	remaining: 332ms
18:	learn: 36.0160976	total: 77.4ms	remaining: 330ms
19:	learn: 35.5079827	total: 81.8ms	remaining: 327ms
20:	learn: 35.2111885	total: 86.1ms	remaining: 324ms
21:	learn: 34.9397465	total: 90.4ms	remaining: 321ms
22:	learn: 34.5270048	total: 94.8ms	remaining: 317ms
23:	learn: 34.0169260	total: 99ms	remaining: 314ms
24:	learn: 33.7454892	total: 104ms	remaining: 311ms
25:	learn: 33.2648157	total: 111ms	remaining: 317ms
26:	learn: 32.8899427	total: 119ms	remaining: 321ms
27:	learn: 32.6185050	total: 128ms	remaining: 329ms
28:	learn: 32.3528531	total: 134ms	remaining: 327ms
29:	learn: 32.0859923	total: 140ms	remaining: 327ms
30:	learn: 31.6511144	total: 145ms	remaining: 323ms
31:	learn: 31.2571765	total: 150ms	remaining: 319ms
32:	learn: 30.9770049	total: 155ms	remaining: 316ms
33:	learn: 30.6084872	total: 160ms	remaining: 311ms
34:	learn: 30.3448632	total: 165ms	remaining: 307ms
35:	learn: 30.0360942	total: 171ms	remaining: 303ms
36:	learn: 29.6648968	total: 176ms	remaining: 299ms
37:	learn: 29.3165114	total: 181ms	remaining: 295ms
38:	learn: 29.0829198	total: 187ms	remaining: 292ms
39:	learn: 28.7752064	total: 192ms	remaining: 288ms
40:	learn: 28.3622191	total: 197ms	remaining: 284ms
41:	learn: 28.1346631	total: 203ms	remaining: 280ms
42:	learn: 27.9585719	total: 208ms	remaining: 276ms
43:	learn: 27.6565566	total: 213ms	remaining: 271ms
44:	learn: 27.3616172	total: 217ms	remaining: 265ms
45:	learn: 27.0658637	total: 221ms	remaining: 259ms
46:	learn: 26.8660382	total: 225ms	remaining: 254ms
47:	learn: 26.6536078	total: 230ms	remaining: 249ms
48:	learn: 26.3524440	total: 235ms	remaining: 245ms
49:	learn: 26.1595277	total: 240ms	remaining: 240ms
50:	learn: 25.9273523	total: 244ms	remaining: 235ms
51:	learn: 25.7195580	total: 249ms	remaining: 230ms
52:	learn: 25.5730225	total: 254ms	remaining: 225ms
53:	learn: 25.3455276	total: 258ms	remaining: 220ms
54:	learn: 25.2289675	total: 263ms	remaining: 215ms
55:	learn: 25.0133024	total: 267ms	remaining: 210ms
56:	learn: 24.8406714	total: 272ms	remaining: 205ms
57:	learn: 24.6367857	total: 276ms	remaining: 200ms
58:	learn: 24.5338177	total: 281ms	remaining: 195ms
59:	learn: 24.3799964	total: 285ms	remaining: 190ms
60:	learn: 24.1447492	total: 290ms	remaining: 185ms
61:	learn: 23.9880495	total: 295ms	remaining: 181ms
62:	learn: 23.7140630	total: 299ms	remaining: 176ms
63:	learn: 23.5003791	total: 304ms	remaining: 171ms
64:	learn: 23.3207645	total: 313ms	remaining: 168ms
65:	learn: 23.1958356	total: 320ms	remaining: 165ms
66:	learn: 23.0471302	total: 328ms	remaining: 161ms
67:	learn: 22.8977183	total: 335ms	remaining: 158ms
68:	learn: 22.7187400	total: 341ms	remaining: 153ms
69:	learn: 22.6523405	total: 346ms	remaining: 148ms
70:	learn: 22.4767453	total: 351ms	remaining: 143ms
71:	learn: 22.3243677	total: 356ms	remaining: 138ms
72:	learn: 22.2133096	total: 361ms	remaining: 133ms
73:	learn: 22.1151713	total: 366ms	remaining: 129ms
74:	learn: 22.0296666	total: 371ms	remaining: 124ms
75:	learn: 21.9195980	total: 376ms	remaining: 119ms
76:	learn: 21.8401730	total: 381ms	remaining: 114ms
77:	learn: 21.8079797	total: 386ms	remaining: 109ms
78:	learn: 21.7274109	total: 391ms	remaining: 104ms
79:	learn: 21.6663032	total: 396ms	remaining: 99ms
80:	learn: 21.5633117	total: 401ms	remaining: 94.1ms
81:	learn: 21.4542467	total: 407ms	remaining: 89.3ms
82:	learn: 21.3177957	total: 411ms	remaining: 84.3ms
83:	learn: 21.1289167	total: 415ms	remaining: 79.1ms
84:	learn: 21.0297368	total: 419ms	remaining: 74ms
85:	learn: 20.9089564	total: 423ms	remaining: 68.9ms
86:	learn: 20.7653988	total: 428ms	remaining: 63.9ms
87:	learn: 20.6521894	total: 432ms	remaining: 58.9ms
88:	learn: 20.5193021	total: 436ms	remaining: 53.9ms
89:	learn: 20.4361620	total: 440ms	remaining: 48.9ms
90:	learn: 20.3546710	total: 444ms	remaining: 44ms
91:	learn: 20.2513296	total: 449ms	remaining: 39.1ms
92:	learn: 20.1605550	total: 454ms	remaining: 34.1ms
93:	learn: 20.0515942	total: 458ms	remaining: 29.2ms
94:	learn: 19.9800764	total: 462ms	remaining: 24.3ms
95:	learn: 19.8996532	total: 467ms	remaining: 19.4ms
96:	learn: 19.8450910	total: 471ms	remaining: 14.6ms
97:	learn: 19.7887346	total: 475ms	remaining: 9.7ms
98:	learn: 19.7230872	total: 479ms	remaining: 4.84ms
99:	learn: 19.6328825	total: 484ms	remaining: 0us
0:	learn: 27.5585353	total: 5.17ms	remaining: 512ms
1:	learn: 27.1656995	total: 10.1ms	remaining: 495ms
2:	learn: 26.8590175	total: 15.6ms	remaining: 503ms
3:	learn: 26.5818406	total: 20.5ms	remaining: 492ms
4:	learn: 26.1148663	total: 25.5ms	remaining: 484ms
5:	learn: 25.7690484	total: 39.3ms	remaining: 616ms
6:	learn: 25.3489206	total: 44.3ms	remaining: 588ms
7:	learn: 24.9542406	total: 48.8ms	remaining: 561ms
8:	learn: 24.6777517	total: 54.5ms	remaining: 551ms
9:	learn: 24.3242344	total: 59.8ms	remaining: 538ms
10:	learn: 24.0383073	total: 64.1ms	remaining: 518ms
11:	learn: 23.7383420	total: 68.3ms	remaining: 501ms
12:	learn: 23.3461670	total: 72.3ms	remaining: 484ms
13:	learn: 23.0928636	total: 76.1ms	remaining: 468ms
14:	learn: 22.8770414	total: 80ms	remaining: 453ms
15:	learn: 22.6323214	total: 84.1ms	remaining: 442ms
16:	learn: 22.3597072	total: 88.7ms	remaining: 433ms
17:	learn: 22.1079813	total: 92.5ms	remaining: 421ms
18:	learn: 21.8421199	total: 96.5ms	remaining: 411ms
19:	learn: 21.6576508	total: 101ms	remaining: 403ms
20:	learn: 21.4301268	total: 105ms	remaining: 395ms
21:	learn: 21.2287388	total: 109ms	remaining: 387ms
22:	learn: 21.0553872	total: 113ms	remaining: 379ms
23:	learn: 20.8977091	total: 117ms	remaining: 371ms
24:	learn: 20.6619051	total: 122ms	remaining: 365ms
25:	learn: 20.5040955	total: 125ms	remaining: 357ms
26:	learn: 20.3181195	total: 129ms	remaining: 350ms
27:	learn: 20.0869436	total: 133ms	remaining: 343ms
28:	learn: 19.9375985	total: 138ms	remaining: 337ms
29:	learn: 19.8247516	total: 142ms	remaining: 331ms
30:	learn: 19.6261697	total: 146ms	remaining: 324ms
31:	learn: 19.4547236	total: 150ms	remaining: 319ms
32:	learn: 19.3157092	total: 155ms	remaining: 314ms
33:	learn: 19.1561419	total: 160ms	remaining: 310ms
34:	learn: 19.0453620	total: 164ms	remaining: 304ms
35:	learn: 18.8738574	total: 168ms	remaining: 299ms
36:	learn: 18.7072907	total: 173ms	remaining: 294ms
37:	learn: 18.5877943	total: 177ms	remaining: 289ms
38:	learn: 18.4436380	total: 182ms	remaining: 285ms
39:	learn: 18.3463356	total: 192ms	remaining: 287ms
40:	learn: 18.2008059	total: 199ms	remaining: 286ms
41:	learn: 18.0582079	total: 207ms	remaining: 286ms
42:	learn: 17.8891982	total: 215ms	remaining: 285ms
43:	learn: 17.7332246	total: 220ms	remaining: 280ms
44:	learn: 17.6206421	total: 226ms	remaining: 276ms
45:	learn: 17.4982800	total: 231ms	remaining: 271ms
46:	learn: 17.3970150	total: 236ms	remaining: 266ms
47:	learn: 17.3058203	total: 241ms	remaining: 261ms
48:	learn: 17.1789256	total: 247ms	remaining: 257ms
49:	learn: 17.0916229	total: 252ms	remaining: 252ms
50:	learn: 16.9859820	total: 257ms	remaining: 247ms
51:	learn: 16.8995582	total: 262ms	remaining: 242ms
52:	learn: 16.8137014	total: 267ms	remaining: 237ms
53:	learn: 16.7021451	total: 272ms	remaining: 232ms
54:	learn: 16.5895582	total: 277ms	remaining: 227ms
55:	learn: 16.5015639	total: 284ms	remaining: 223ms
56:	learn: 16.4356637	total: 289ms	remaining: 218ms
57:	learn: 16.3514525	total: 294ms	remaining: 213ms
58:	learn: 16.2401369	total: 299ms	remaining: 208ms
59:	learn: 16.1293223	total: 304ms	remaining: 202ms
60:	learn: 16.0271167	total: 308ms	remaining: 197ms
61:	learn: 15.9126257	total: 312ms	remaining: 191ms
62:	learn: 15.8391096	total: 316ms	remaining: 186ms
63:	learn: 15.7441773	total: 320ms	remaining: 180ms
64:	learn: 15.6885195	total: 324ms	remaining: 175ms
65:	learn: 15.6052039	total: 328ms	remaining: 169ms
66:	learn: 15.5074202	total: 333ms	remaining: 164ms
67:	learn: 15.4054338	total: 338ms	remaining: 159ms
68:	learn: 15.2885714	total: 342ms	remaining: 154ms
69:	learn: 15.2157472	total: 346ms	remaining: 148ms
70:	learn: 15.1031554	total: 351ms	remaining: 143ms
71:	learn: 15.0237470	total: 355ms	remaining: 138ms
72:	learn: 14.9756825	total: 359ms	remaining: 133ms
73:	learn: 14.8840596	total: 364ms	remaining: 128ms
74:	learn: 14.8077061	total: 369ms	remaining: 123ms
75:	learn: 14.7444437	total: 373ms	remaining: 118ms
76:	learn: 14.6751720	total: 378ms	remaining: 113ms
77:	learn: 14.5830333	total: 383ms	remaining: 108ms
78:	learn: 14.5241206	total: 391ms	remaining: 104ms
79:	learn: 14.4892731	total: 399ms	remaining: 99.8ms
80:	learn: 14.4256605	total: 407ms	remaining: 95.5ms
81:	learn: 14.3666860	total: 415ms	remaining: 91.1ms
82:	learn: 14.2938372	total: 421ms	remaining: 86.2ms
83:	learn: 14.2161532	total: 426ms	remaining: 81.1ms
84:	learn: 14.1582910	total: 431ms	remaining: 76.1ms
85:	learn: 14.1029153	total: 436ms	remaining: 71ms
86:	learn: 14.0475835	total: 442ms	remaining: 66ms
87:	learn: 13.9892661	total: 447ms	remaining: 60.9ms
88:	learn: 13.9481628	total: 452ms	remaining: 55.9ms
89:	learn: 13.8483991	total: 457ms	remaining: 50.8ms
90:	learn: 13.7775614	total: 462ms	remaining: 45.7ms
91:	learn: 13.7304585	total: 467ms	remaining: 40.6ms
92:	learn: 13.6783381	total: 472ms	remaining: 35.6ms
93:	learn: 13.6356964	total: 478ms	remaining: 30.5ms
94:	learn: 13.5924371	total: 483ms	remaining: 25.4ms
95:	learn: 13.5400746	total: 487ms	remaining: 20.3ms
96:	learn: 13.4897333	total: 491ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 495ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 500ms	remaining: 5.04ms
99:	learn: 13.3082371	total: 504ms	remaining: 0us
0:	learn: 43.0395283	total: 5.07ms	remaining: 502ms
1:	learn: 42.1130223	total: 9.63ms	remaining: 472ms
2:	learn: 41.1753409	total: 29ms	remaining: 937ms
3:	learn: 40.3637444	total: 34.3ms	remaining: 824ms
4:	learn: 39.6508088	total: 41.2ms	remaining: 783ms
5:	learn: 38.7217934	total: 48.2ms	remaining: 756ms
6:	learn: 37.8538055	total: 55.6ms	remaining: 739ms
7:	learn: 36.9793574	total: 61.4ms	remaining: 706ms
8:	learn: 36.3076984	total: 67.9ms	remaining: 686ms
9:	learn: 35.6673160	total: 73.1ms	remaining: 658ms
10:	learn: 34.8889800	total: 78.5ms	remaining: 635ms
11:	learn: 34.1675517	total: 83.4ms	remaining: 611ms
12:	learn: 33.6779564	total: 88.6ms	remaining: 593ms
13:	learn: 33.0710039	total: 93.7ms	remaining: 576ms
14:	learn: 32.4966674	total: 98.8ms	remaining: 560ms
15:	learn: 31.9492856	total: 104ms	remaining: 544ms
16:	learn: 31.5108129	total: 109ms	remaining: 532ms
17:	learn: 30.9804023	total: 122ms	remaining: 557ms
18:	learn: 30.4169089	total: 127ms	remaining: 542ms
19:	learn: 29.8930375	total: 133ms	remaining: 533ms
20:	learn: 29.3974421	total: 140ms	remaining: 525ms
21:	learn: 28.8792307	total: 144ms	remaining: 512ms
22:	learn: 28.3894474	total: 149ms	remaining: 499ms
23:	learn: 27.9921276	total: 154ms	remaining: 488ms
24:	learn: 27.6158887	total: 159ms	remaining: 476ms
25:	learn: 27.2866950	total: 163ms	remaining: 465ms
26:	learn: 26.8770708	total: 168ms	remaining: 455ms
27:	learn: 26.6233005	total: 173ms	remaining: 444ms
28:	learn: 26.2921934	total: 177ms	remaining: 434ms
29:	learn: 25.9156920	total: 182ms	remaining: 424ms
30:	learn: 25.5311106	total: 184ms	remaining: 409ms
31:	learn: 25.2178997	total: 188ms	remaining: 400ms
32:	learn: 24.8572196	total: 193ms	remaining: 391ms
33:	learn: 24.5849710	total: 198ms	remaining: 384ms
34:	learn: 24.2209190	total: 202ms	remaining: 376ms
35:	learn: 23.8708250	total: 207ms	remaining: 368ms
36:	learn: 23.5325279	total: 212ms	remaining: 360ms
37:	learn: 23.2116148	total: 216ms	remaining: 353ms
38:	learn: 22.9696787	total: 221ms	remaining: 346ms
39:	learn: 22.7936783	total: 226ms	remaining: 339ms
40:	learn: 22.6228847	total: 231ms	remaining: 332ms
41:	learn: 22.3691527	total: 236ms	remaining: 326ms
42:	learn: 22.1002173	total: 241ms	remaining: 319ms
43:	learn: 21.9157268	total: 245ms	remaining: 312ms
44:	learn: 21.7229102	total: 250ms	remaining: 306ms
45:	learn: 21.4642005	total: 255ms	remaining: 300ms
46:	learn: 21.3029442	total: 260ms	remaining: 293ms
47:	learn: 21.1469792	total: 268ms	remaining: 290ms
48:	learn: 20.9458235	total: 275ms	remaining: 286ms
49:	learn: 20.7335242	total: 284ms	remaining: 284ms
50:	learn: 20.5440269	total: 290ms	remaining: 278ms
51:	learn: 20.3661449	total: 297ms	remaining: 274ms
52:	learn: 20.2158134	total: 302ms	remaining: 268ms
53:	learn: 19.9934873	total: 307ms	remaining: 262ms
54:	learn: 19.7879739	total: 312ms	remaining: 256ms
55:	learn: 19.6630460	total: 317ms	remaining: 249ms
56:	learn: 19.5152729	total: 323ms	remaining: 244ms
57:	learn: 19.3581128	total: 328ms	remaining: 238ms
58:	learn: 19.2209303	total: 333ms	remaining: 232ms
59:	learn: 19.0965248	total: 338ms	remaining: 225ms
60:	learn: 19.0035954	total: 343ms	remaining: 220ms
61:	learn: 18.8554149	total: 349ms	remaining: 214ms
62:	learn: 18.7095427	total: 353ms	remaining: 208ms
63:	learn: 18.5751494	total: 359ms	remaining: 202ms
64:	learn: 18.4678251	total: 364ms	remaining: 196ms
65:	learn: 18.3500325	total: 369ms	remaining: 190ms
66:	learn: 18.2088983	total: 373ms	remaining: 184ms
67:	learn: 18.0737705	total: 377ms	remaining: 177ms
68:	learn: 17.9325058	total: 381ms	remaining: 171ms
69:	learn: 17.8003911	total: 385ms	remaining: 165ms
70:	learn: 17.7385366	total: 389ms	remaining: 159ms
71:	learn: 17.6106998	total: 393ms	remaining: 153ms
72:	learn: 17.4816270	total: 398ms	remaining: 147ms
73:	learn: 17.4025554	total: 402ms	remaining: 141ms
74:	learn: 17.2902108	total: 406ms	remaining: 135ms
75:	learn: 17.2158048	total: 411ms	remaining: 130ms
76:	learn: 17.1261053	total: 415ms	remaining: 124ms
77:	learn: 17.0308917	total: 419ms	remaining: 118ms
78:	learn: 16.9546705	total: 424ms	remaining: 113ms
79:	learn: 16.8319165	total: 429ms	remaining: 107ms
80:	learn: 16.7687017	total: 434ms	remaining: 102ms
81:	learn: 16.6972326	total: 439ms	remaining: 96.3ms
82:	learn: 16.6124580	total: 444ms	remaining: 90.9ms
83:	learn: 16.4999052	total: 449ms	remaining: 85.5ms
84:	learn: 16.4302484	total: 453ms	remaining: 80ms
85:	learn: 16.3201363	total: 458ms	remaining: 74.6ms
86:	learn: 16.2534314	total: 468ms	remaining: 70ms
87:	learn: 16.1720485	total: 477ms	remaining: 65ms
88:	learn: 16.0625751	total: 485ms	remaining: 59.9ms
89:	learn: 15.9135088	total: 493ms	remaining: 54.7ms
90:	learn: 15.8658863	total: 498ms	remaining: 49.3ms
91:	learn: 15.8066805	total: 504ms	remaining: 43.8ms
92:	learn: 15.7412103	total: 509ms	remaining: 38.3ms
93:	learn: 15.6542776	total: 515ms	remaining: 32.9ms
94:	learn: 15.5760334	total: 520ms	remaining: 27.4ms
95:	learn: 15.5434131	total: 526ms	remaining: 21.9ms
96:	learn: 15.4709561	total: 532ms	remaining: 16.5ms
97:	learn: 15.4449618	total: 537ms	remaining: 11ms
98:	learn: 15.3752761	total: 543ms	remaining: 5.48ms
99:	learn: 15.3106595	total: 548ms	remaining: 0us
0:	learn: 46.7142257	total: 4.34ms	remaining: 430ms
1:	learn: 45.7634153	total: 8.5ms	remaining: 417ms
2:	learn: 45.0054253	total: 12.6ms	remaining: 407ms
3:	learn: 44.2120432	total: 16.7ms	remaining: 401ms
4:	learn: 43.3960472	total: 21.3ms	remaining: 404ms
5:	learn: 42.8588120	total: 25.3ms	remaining: 396ms
6:	learn: 41.9533701	total: 29.4ms	remaining: 390ms
7:	learn: 41.2745030	total: 33.7ms	remaining: 387ms
8:	learn: 40.6797495	total: 38.3ms	remaining: 387ms
9:	learn: 39.9899571	total: 43ms	remaining: 387ms
10:	learn: 39.4682100	total: 47.9ms	remaining: 388ms
11:	learn: 39.0305595	total: 52.5ms	remaining: 385ms
12:	learn: 38.4200417	total: 57.2ms	remaining: 383ms
13:	learn: 37.8425194	total: 61.9ms	remaining: 380ms
14:	learn: 37.4203127	total: 66.6ms	remaining: 377ms
15:	learn: 36.9917688	total: 75.2ms	remaining: 395ms
16:	learn: 36.5544138	total: 82.6ms	remaining: 404ms
17:	learn: 36.0727019	total: 91.7ms	remaining: 418ms
18:	learn: 35.4835715	total: 99.4ms	remaining: 424ms
19:	learn: 34.9865654	total: 105ms	remaining: 420ms
20:	learn: 34.6063373	total: 110ms	remaining: 414ms
21:	learn: 34.0997289	total: 115ms	remaining: 408ms
22:	learn: 33.7313171	total: 120ms	remaining: 403ms
23:	learn: 33.3582000	total: 125ms	remaining: 397ms
24:	learn: 32.9432456	total: 130ms	remaining: 391ms
25:	learn: 32.5220888	total: 136ms	remaining: 386ms
26:	learn: 32.2172292	total: 141ms	remaining: 382ms
27:	learn: 31.8972904	total: 147ms	remaining: 377ms
28:	learn: 31.6405350	total: 153ms	remaining: 375ms
29:	learn: 31.4167702	total: 158ms	remaining: 369ms
30:	learn: 30.8541961	total: 160ms	remaining: 357ms
31:	learn: 30.5572111	total: 166ms	remaining: 352ms
32:	learn: 30.1700399	total: 172ms	remaining: 349ms
33:	learn: 29.8537271	total: 176ms	remaining: 342ms
34:	learn: 29.6192540	total: 180ms	remaining: 335ms
35:	learn: 29.3276362	total: 185ms	remaining: 329ms
36:	learn: 28.9985179	total: 189ms	remaining: 322ms
37:	learn: 28.7046880	total: 193ms	remaining: 315ms
38:	learn: 28.4412677	total: 197ms	remaining: 309ms
39:	learn: 28.1277292	total: 201ms	remaining: 302ms
40:	learn: 27.9000750	total: 206ms	remaining: 296ms
41:	learn: 27.5433162	total: 210ms	remaining: 289ms
42:	learn: 27.2493285	total: 213ms	remaining: 283ms
43:	learn: 26.9576632	total: 215ms	remaining: 274ms
44:	learn: 26.6177110	total: 220ms	remaining: 268ms
45:	learn: 26.2812456	total: 224ms	remaining: 262ms
46:	learn: 26.0803859	total: 227ms	remaining: 256ms
47:	learn: 25.9543581	total: 231ms	remaining: 250ms
48:	learn: 25.7951582	total: 236ms	remaining: 245ms
49:	learn: 25.6548184	total: 240ms	remaining: 240ms
50:	learn: 25.4010843	total: 245ms	remaining: 235ms
51:	learn: 24.9773937	total: 249ms	remaining: 230ms
52:	learn: 24.8026156	total: 254ms	remaining: 226ms
53:	learn: 24.5568053	total: 260ms	remaining: 221ms
54:	learn: 24.2281839	total: 265ms	remaining: 217ms
55:	learn: 23.9202795	total: 273ms	remaining: 214ms
56:	learn: 23.7625591	total: 281ms	remaining: 212ms
57:	learn: 23.5429721	total: 290ms	remaining: 210ms
58:	learn: 23.3175893	total: 296ms	remaining: 206ms
59:	learn: 23.2035130	total: 302ms	remaining: 201ms
60:	learn: 23.0232450	total: 307ms	remaining: 197ms
61:	learn: 22.8384958	total: 313ms	remaining: 192ms
62:	learn: 22.6499902	total: 318ms	remaining: 187ms
63:	learn: 22.4577426	total: 323ms	remaining: 182ms
64:	learn: 22.3333158	total: 328ms	remaining: 177ms
65:	learn: 22.2064131	total: 333ms	remaining: 172ms
66:	learn: 22.1434971	total: 338ms	remaining: 167ms
67:	learn: 21.9596519	total: 344ms	remaining: 162ms
68:	learn: 21.8475576	total: 349ms	remaining: 157ms
69:	learn: 21.6954745	total: 353ms	remaining: 151ms
70:	learn: 21.5635976	total: 359ms	remaining: 146ms
71:	learn: 21.4588506	total: 364ms	remaining: 142ms
72:	learn: 21.3527268	total: 369ms	remaining: 137ms
73:	learn: 21.2661288	total: 373ms	remaining: 131ms
74:	learn: 21.1817333	total: 377ms	remaining: 126ms
75:	learn: 21.0527553	total: 382ms	remaining: 121ms
76:	learn: 20.9229021	total: 386ms	remaining: 115ms
77:	learn: 20.7563946	total: 390ms	remaining: 110ms
78:	learn: 20.6569831	total: 394ms	remaining: 105ms
79:	learn: 20.4982663	total: 398ms	remaining: 99.5ms
80:	learn: 20.3185460	total: 402ms	remaining: 94.3ms
81:	learn: 20.2096241	total: 406ms	remaining: 89.2ms
82:	learn: 20.1274891	total: 410ms	remaining: 84ms
83:	learn: 20.0740139	total: 414ms	remaining: 78.9ms
84:	learn: 19.9630699	total: 418ms	remaining: 73.8ms
85:	learn: 19.8753899	total: 422ms	remaining: 68.7ms
86:	learn: 19.6563612	total: 427ms	remaining: 63.8ms
87:	learn: 19.4680232	total: 431ms	remaining: 58.8ms
88:	learn: 19.3503431	total: 435ms	remaining: 53.8ms
89:	learn: 19.2221379	total: 439ms	remaining: 48.8ms
90:	learn: 19.0732542	total: 444ms	remaining: 43.9ms
91:	learn: 18.9825190	total: 448ms	remaining: 39ms
92:	learn: 18.8839009	total: 453ms	remaining: 34.1ms
93:	learn: 18.8012219	total: 458ms	remaining: 29.2ms
94:	learn: 18.7172713	total: 462ms	remaining: 24.3ms
95:	learn: 18.6201170	total: 467ms	remaining: 19.5ms
96:	learn: 18.5318611	total: 472ms	remaining: 14.6ms
97:	learn: 18.3833356	total: 481ms	remaining: 9.82ms
98:	learn: 18.3289700	total: 492ms	remaining: 4.97ms
99:	learn: 18.2227333	total: 509ms	remaining: 0us
0:	learn: 46.3764524	total: 5.65ms	remaining: 560ms
1:	learn: 45.5561269	total: 11.1ms	remaining: 545ms
2:	learn: 44.8811245	total: 15.6ms	remaining: 503ms
3:	learn: 44.0788617	total: 20ms	remaining: 480ms
4:	learn: 43.3619790	total: 24.6ms	remaining: 468ms
5:	learn: 42.6912112	total: 28.9ms	remaining: 452ms
6:	learn: 42.2292118	total: 33.1ms	remaining: 440ms
7:	learn: 41.7725191	total: 37.5ms	remaining: 431ms
8:	learn: 41.1676614	total: 41.7ms	remaining: 422ms
9:	learn: 40.5771076	total: 46.2ms	remaining: 416ms
10:	learn: 39.8343757	total: 50.5ms	remaining: 408ms
11:	learn: 39.3761142	total: 54.6ms	remaining: 400ms
12:	learn: 38.5254692	total: 58.9ms	remaining: 394ms
13:	learn: 37.9629555	total: 63.2ms	remaining: 388ms
14:	learn: 37.4418438	total: 67.7ms	remaining: 384ms
15:	learn: 37.0507283	total: 72ms	remaining: 378ms
16:	learn: 36.6264217	total: 75.9ms	remaining: 371ms
17:	learn: 36.1114940	total: 80.4ms	remaining: 366ms
18:	learn: 35.7193862	total: 85ms	remaining: 362ms
19:	learn: 35.3301177	total: 89.6ms	remaining: 358ms
20:	learn: 35.0598280	total: 93.9ms	remaining: 353ms
21:	learn: 34.5469736	total: 98.5ms	remaining: 349ms
22:	learn: 34.2064215	total: 103ms	remaining: 345ms
23:	learn: 33.7280710	total: 107ms	remaining: 340ms
24:	learn: 33.3282940	total: 112ms	remaining: 335ms
25:	learn: 32.8478961	total: 119ms	remaining: 338ms
26:	learn: 32.5722164	total: 126ms	remaining: 342ms
27:	learn: 32.2457019	total: 136ms	remaining: 349ms
28:	learn: 31.9230495	total: 142ms	remaining: 347ms
29:	learn: 31.4311611	total: 149ms	remaining: 349ms
30:	learn: 30.9179052	total: 155ms	remaining: 344ms
31:	learn: 30.6201141	total: 159ms	remaining: 339ms
32:	learn: 30.3421106	total: 165ms	remaining: 335ms
33:	learn: 29.9885373	total: 170ms	remaining: 330ms
34:	learn: 29.7462780	total: 175ms	remaining: 326ms
35:	learn: 29.3607153	total: 180ms	remaining: 320ms
36:	learn: 29.1793078	total: 185ms	remaining: 315ms
37:	learn: 28.9276538	total: 190ms	remaining: 310ms
38:	learn: 28.6903934	total: 195ms	remaining: 305ms
39:	learn: 28.2095033	total: 200ms	remaining: 300ms
40:	learn: 27.7990608	total: 205ms	remaining: 295ms
41:	learn: 27.5406632	total: 210ms	remaining: 290ms
42:	learn: 27.2575376	total: 215ms	remaining: 286ms
43:	learn: 26.9741707	total: 220ms	remaining: 280ms
44:	learn: 26.6606899	total: 224ms	remaining: 274ms
45:	learn: 26.4015833	total: 228ms	remaining: 268ms
46:	learn: 26.1828993	total: 233ms	remaining: 262ms
47:	learn: 26.0233709	total: 235ms	remaining: 254ms
48:	learn: 25.9300399	total: 239ms	remaining: 249ms
49:	learn: 25.5861489	total: 243ms	remaining: 243ms
50:	learn: 25.4322012	total: 246ms	remaining: 237ms
51:	learn: 25.1595644	total: 250ms	remaining: 231ms
52:	learn: 24.9955303	total: 254ms	remaining: 225ms
53:	learn: 24.7273966	total: 258ms	remaining: 220ms
54:	learn: 24.5747978	total: 262ms	remaining: 215ms
55:	learn: 24.3807977	total: 266ms	remaining: 209ms
56:	learn: 24.1689569	total: 270ms	remaining: 204ms
57:	learn: 23.9898221	total: 274ms	remaining: 199ms
58:	learn: 23.7566414	total: 278ms	remaining: 193ms
59:	learn: 23.6641165	total: 282ms	remaining: 188ms
60:	learn: 23.5658066	total: 286ms	remaining: 183ms
61:	learn: 23.4338851	total: 290ms	remaining: 178ms
62:	learn: 23.2408837	total: 294ms	remaining: 173ms
63:	learn: 23.0642038	total: 299ms	remaining: 168ms
64:	learn: 22.9032045	total: 303ms	remaining: 163ms
65:	learn: 22.7736138	total: 308ms	remaining: 158ms
66:	learn: 22.6836443	total: 312ms	remaining: 154ms
67:	learn: 22.5983654	total: 317ms	remaining: 149ms
68:	learn: 22.4419813	total: 321ms	remaining: 144ms
69:	learn: 22.2863339	total: 328ms	remaining: 140ms
70:	learn: 22.1792943	total: 335ms	remaining: 137ms
71:	learn: 22.1130574	total: 343ms	remaining: 134ms
72:	learn: 21.9858161	total: 349ms	remaining: 129ms
73:	learn: 21.8577784	total: 354ms	remaining: 124ms
74:	learn: 21.7845222	total: 359ms	remaining: 120ms
75:	learn: 21.6831390	total: 363ms	remaining: 115ms
76:	learn: 21.6292521	total: 367ms	remaining: 110ms
77:	learn: 21.5789330	total: 371ms	remaining: 105ms
78:	learn: 21.5420942	total: 375ms	remaining: 99.7ms
79:	learn: 21.4280939	total: 379ms	remaining: 94.8ms
80:	learn: 21.3641165	total: 383ms	remaining: 89.9ms
81:	learn: 21.2734814	total: 387ms	remaining: 85ms
82:	learn: 21.2220323	total: 391ms	remaining: 80.2ms
83:	learn: 21.0625792	total: 396ms	remaining: 75.4ms
84:	learn: 20.9488320	total: 400ms	remaining: 70.6ms
85:	learn: 20.8504255	total: 404ms	remaining: 65.8ms
86:	learn: 20.7848510	total: 409ms	remaining: 61.1ms
87:	learn: 20.7247442	total: 413ms	remaining: 56.3ms
88:	learn: 20.5698590	total: 417ms	remaining: 51.5ms
89:	learn: 20.4067620	total: 421ms	remaining: 46.8ms
90:	learn: 20.3062482	total: 425ms	remaining: 42ms
91:	learn: 20.2029696	total: 429ms	remaining: 37.3ms
92:	learn: 20.1384849	total: 433ms	remaining: 32.6ms
93:	learn: 20.0260709	total: 437ms	remaining: 27.9ms
94:	learn: 19.9122100	total: 441ms	remaining: 23.2ms
95:	learn: 19.8648487	total: 457ms	remaining: 19ms
96:	learn: 19.8207072	total: 461ms	remaining: 14.3ms
97:	learn: 19.7261189	total: 465ms	remaining: 9.49ms
98:	learn: 19.7042438	total: 469ms	remaining: 4.74ms
99:	learn: 19.6546645	total: 473ms	remaining: 0us
0:	learn: 47.0239288	total: 4.81ms	remaining: 476ms
1:	learn: 46.2253829	total: 9.23ms	remaining: 453ms
2:	learn: 45.5580301	total: 13.3ms	remaining: 431ms
3:	learn: 44.7273237	total: 31.6ms	remaining: 759ms
4:	learn: 43.8867421	total: 41.5ms	remaining: 788ms
5:	learn: 43.3615911	total: 49ms	remaining: 768ms
6:	learn: 42.8548390	total: 54ms	remaining: 717ms
7:	learn: 42.1606758	total: 58.9ms	remaining: 677ms
8:	learn: 41.6625870	total: 63.9ms	remaining: 646ms
9:	learn: 40.9497092	total: 69.1ms	remaining: 622ms
10:	learn: 40.1886318	total: 74.4ms	remaining: 602ms
11:	learn: 39.7456423	total: 79.4ms	remaining: 582ms
12:	learn: 39.1171373	total: 94.8ms	remaining: 634ms
13:	learn: 38.5451069	total: 99.8ms	remaining: 613ms
14:	learn: 38.0155834	total: 105ms	remaining: 593ms
15:	learn: 37.5631354	total: 110ms	remaining: 580ms
16:	learn: 37.1030023	total: 116ms	remaining: 568ms
17:	learn: 36.4563029	total: 120ms	remaining: 547ms
18:	learn: 36.0160976	total: 124ms	remaining: 530ms
19:	learn: 35.5079827	total: 128ms	remaining: 513ms
20:	learn: 35.2111885	total: 132ms	remaining: 497ms
21:	learn: 34.9397465	total: 136ms	remaining: 482ms
22:	learn: 34.5270048	total: 140ms	remaining: 469ms
23:	learn: 34.0169260	total: 145ms	remaining: 459ms
24:	learn: 33.7454892	total: 149ms	remaining: 446ms
25:	learn: 33.2648157	total: 153ms	remaining: 435ms
26:	learn: 32.8899427	total: 157ms	remaining: 424ms
27:	learn: 32.6185050	total: 161ms	remaining: 414ms
28:	learn: 32.3528531	total: 165ms	remaining: 404ms
29:	learn: 32.0859923	total: 169ms	remaining: 394ms
30:	learn: 31.6511144	total: 173ms	remaining: 385ms
31:	learn: 31.2571765	total: 177ms	remaining: 376ms
32:	learn: 30.9770049	total: 181ms	remaining: 367ms
33:	learn: 30.6084872	total: 185ms	remaining: 359ms
34:	learn: 30.3448632	total: 188ms	remaining: 350ms
35:	learn: 30.0360942	total: 193ms	remaining: 342ms
36:	learn: 29.6648968	total: 196ms	remaining: 334ms
37:	learn: 29.3165114	total: 200ms	remaining: 327ms
38:	learn: 29.0829198	total: 204ms	remaining: 319ms
39:	learn: 28.7752064	total: 207ms	remaining: 311ms
40:	learn: 28.3622191	total: 211ms	remaining: 304ms
41:	learn: 28.1346631	total: 216ms	remaining: 298ms
42:	learn: 27.9585719	total: 220ms	remaining: 291ms
43:	learn: 27.6565566	total: 223ms	remaining: 284ms
44:	learn: 27.3616172	total: 228ms	remaining: 278ms
45:	learn: 27.0658637	total: 232ms	remaining: 273ms
46:	learn: 26.8660382	total: 237ms	remaining: 267ms
47:	learn: 26.6536078	total: 241ms	remaining: 261ms
48:	learn: 26.3524440	total: 246ms	remaining: 256ms
49:	learn: 26.1595277	total: 250ms	remaining: 250ms
50:	learn: 25.9273523	total: 254ms	remaining: 244ms
51:	learn: 25.7195580	total: 259ms	remaining: 239ms
52:	learn: 25.5730225	total: 264ms	remaining: 234ms
53:	learn: 25.3455276	total: 272ms	remaining: 232ms
54:	learn: 25.2289675	total: 279ms	remaining: 228ms
55:	learn: 25.0133024	total: 288ms	remaining: 226ms
56:	learn: 24.8406714	total: 295ms	remaining: 222ms
57:	learn: 24.6367857	total: 301ms	remaining: 218ms
58:	learn: 24.5338177	total: 306ms	remaining: 212ms
59:	learn: 24.3799964	total: 310ms	remaining: 207ms
60:	learn: 24.1447492	total: 315ms	remaining: 202ms
61:	learn: 23.9880495	total: 320ms	remaining: 196ms
62:	learn: 23.7140630	total: 325ms	remaining: 191ms
63:	learn: 23.5003791	total: 330ms	remaining: 186ms
64:	learn: 23.3207645	total: 335ms	remaining: 180ms
65:	learn: 23.1958356	total: 340ms	remaining: 175ms
66:	learn: 23.0471302	total: 345ms	remaining: 170ms
67:	learn: 22.8977183	total: 350ms	remaining: 165ms
68:	learn: 22.7187400	total: 355ms	remaining: 160ms
69:	learn: 22.6523405	total: 360ms	remaining: 154ms
70:	learn: 22.4767453	total: 364ms	remaining: 149ms
71:	learn: 22.3243677	total: 368ms	remaining: 143ms
72:	learn: 22.2133096	total: 372ms	remaining: 137ms
73:	learn: 22.1151713	total: 376ms	remaining: 132ms
74:	learn: 22.0296666	total: 379ms	remaining: 126ms
75:	learn: 21.9195980	total: 383ms	remaining: 121ms
76:	learn: 21.8401730	total: 388ms	remaining: 116ms
77:	learn: 21.8079797	total: 393ms	remaining: 111ms
78:	learn: 21.7274109	total: 397ms	remaining: 106ms
79:	learn: 21.6663032	total: 402ms	remaining: 101ms
80:	learn: 21.5633117	total: 407ms	remaining: 95.4ms
81:	learn: 21.4542467	total: 411ms	remaining: 90.3ms
82:	learn: 21.3177957	total: 416ms	remaining: 85.2ms
83:	learn: 21.1289167	total: 421ms	remaining: 80.1ms
84:	learn: 21.0297368	total: 425ms	remaining: 75.1ms
85:	learn: 20.9089564	total: 430ms	remaining: 70ms
86:	learn: 20.7653988	total: 435ms	remaining: 65ms
87:	learn: 20.6521894	total: 439ms	remaining: 59.9ms
88:	learn: 20.5193021	total: 444ms	remaining: 54.8ms
89:	learn: 20.4361620	total: 448ms	remaining: 49.8ms
90:	learn: 20.3546710	total: 454ms	remaining: 44.9ms
91:	learn: 20.2513296	total: 462ms	remaining: 40.1ms
92:	learn: 20.1605550	total: 469ms	remaining: 35.3ms
93:	learn: 20.0515942	total: 477ms	remaining: 30.4ms
94:	learn: 19.9800764	total: 483ms	remaining: 25.4ms
95:	learn: 19.8996532	total: 489ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 494ms	remaining: 15.3ms
97:	learn: 19.7887346	total: 512ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 517ms	remaining: 5.22ms
99:	learn: 19.6328825	total: 522ms	remaining: 0us
avg_Mae_val de la población en la generación 10: 17.792073579256304 con std media = 9.175694703371684
Mae_val del Mejor modelo en la generación 10: 17.7789 con std = 9.1097
0:	learn: 27.7143805	total: 4.38ms	remaining: 434ms
1:	learn: 27.2245894	total: 8.21ms	remaining: 402ms
2:	learn: 26.8693029	total: 12.1ms	remaining: 393ms
3:	learn: 26.4713217	total: 16.1ms	remaining: 387ms
4:	learn: 26.1261794	total: 19.8ms	remaining: 376ms
5:	learn: 25.8160419	total: 23.5ms	remaining: 368ms
6:	learn: 25.3860050	total: 27.4ms	remaining: 364ms
7:	learn: 25.0621682	total: 31.5ms	remaining: 362ms
8:	learn: 24.7574429	total: 35.1ms	remaining: 355ms
9:	learn: 24.5154734	total: 39.3ms	remaining: 353ms
10:	learn: 24.2199118	total: 43.2ms	remaining: 350ms
11:	learn: 23.9774955	total: 47.4ms	remaining: 348ms
12:	learn: 23.7755558	total: 51.2ms	remaining: 342ms
13:	learn: 23.4384476	total: 55.1ms	remaining: 338ms
14:	learn: 23.2035324	total: 59.1ms	remaining: 335ms
15:	learn: 22.9925293	total: 63.5ms	remaining: 334ms
16:	learn: 22.7981113	total: 67.9ms	remaining: 331ms
17:	learn: 22.5829245	total: 72.1ms	remaining: 329ms
18:	learn: 22.4131931	total: 76.7ms	remaining: 327ms
19:	learn: 22.1833629	total: 81.3ms	remaining: 325ms
20:	learn: 21.9660824	total: 85.9ms	remaining: 323ms
21:	learn: 21.7281998	total: 90.2ms	remaining: 320ms
22:	learn: 21.5000824	total: 97.4ms	remaining: 326ms
23:	learn: 21.2717031	total: 105ms	remaining: 331ms
24:	learn: 21.0926073	total: 114ms	remaining: 341ms
25:	learn: 20.8922144	total: 119ms	remaining: 340ms
26:	learn: 20.7498215	total: 126ms	remaining: 342ms
27:	learn: 20.5781754	total: 128ms	remaining: 329ms
28:	learn: 20.4294665	total: 133ms	remaining: 326ms
29:	learn: 20.2273985	total: 138ms	remaining: 322ms
30:	learn: 20.0920234	total: 143ms	remaining: 319ms
31:	learn: 19.9311712	total: 148ms	remaining: 315ms
32:	learn: 19.7852359	total: 153ms	remaining: 311ms
33:	learn: 19.6211007	total: 158ms	remaining: 307ms
34:	learn: 19.4806501	total: 163ms	remaining: 303ms
35:	learn: 19.3415380	total: 168ms	remaining: 299ms
36:	learn: 19.2075499	total: 173ms	remaining: 295ms
37:	learn: 19.0582745	total: 178ms	remaining: 290ms
38:	learn: 18.8852020	total: 183ms	remaining: 286ms
39:	learn: 18.6868677	total: 188ms	remaining: 283ms
40:	learn: 18.5481481	total: 194ms	remaining: 279ms
41:	learn: 18.4508846	total: 198ms	remaining: 273ms
42:	learn: 18.3650555	total: 202ms	remaining: 268ms
43:	learn: 18.1818415	total: 206ms	remaining: 262ms
44:	learn: 18.0782035	total: 210ms	remaining: 256ms
45:	learn: 17.9724472	total: 214ms	remaining: 252ms
46:	learn: 17.8657480	total: 218ms	remaining: 246ms
47:	learn: 17.7217309	total: 222ms	remaining: 241ms
48:	learn: 17.6403061	total: 227ms	remaining: 236ms
49:	learn: 17.5245570	total: 231ms	remaining: 231ms
50:	learn: 17.3976790	total: 235ms	remaining: 225ms
51:	learn: 17.2544460	total: 239ms	remaining: 220ms
52:	learn: 17.1507940	total: 243ms	remaining: 216ms
53:	learn: 17.0391276	total: 247ms	remaining: 210ms
54:	learn: 16.9348155	total: 251ms	remaining: 205ms
55:	learn: 16.8475635	total: 255ms	remaining: 200ms
56:	learn: 16.7691656	total: 259ms	remaining: 196ms
57:	learn: 16.6277836	total: 264ms	remaining: 191ms
58:	learn: 16.5524230	total: 268ms	remaining: 186ms
59:	learn: 16.4614442	total: 272ms	remaining: 181ms
60:	learn: 16.3077836	total: 276ms	remaining: 177ms
61:	learn: 16.2278133	total: 281ms	remaining: 172ms
62:	learn: 16.1288632	total: 285ms	remaining: 167ms
63:	learn: 16.0734717	total: 291ms	remaining: 164ms
64:	learn: 16.0085754	total: 300ms	remaining: 162ms
65:	learn: 15.9278700	total: 308ms	remaining: 159ms
66:	learn: 15.8320321	total: 316ms	remaining: 156ms
67:	learn: 15.7706425	total: 325ms	remaining: 153ms
68:	learn: 15.6404344	total: 331ms	remaining: 149ms
69:	learn: 15.5678129	total: 336ms	remaining: 144ms
70:	learn: 15.4980047	total: 342ms	remaining: 140ms
71:	learn: 15.4324207	total: 347ms	remaining: 135ms
72:	learn: 15.3551877	total: 352ms	remaining: 130ms
73:	learn: 15.2930769	total: 357ms	remaining: 125ms
74:	learn: 15.2307174	total: 362ms	remaining: 121ms
75:	learn: 15.1600937	total: 367ms	remaining: 116ms
76:	learn: 15.0837614	total: 372ms	remaining: 111ms
77:	learn: 15.0185989	total: 378ms	remaining: 107ms
78:	learn: 14.9300717	total: 382ms	remaining: 102ms
79:	learn: 14.8928389	total: 387ms	remaining: 96.6ms
80:	learn: 14.8250040	total: 391ms	remaining: 91.8ms
81:	learn: 14.7906114	total: 396ms	remaining: 87ms
82:	learn: 14.7214118	total: 402ms	remaining: 82.4ms
83:	learn: 14.6657875	total: 408ms	remaining: 77.7ms
84:	learn: 14.6085682	total: 412ms	remaining: 72.8ms
85:	learn: 14.5334097	total: 417ms	remaining: 67.8ms
86:	learn: 14.4681230	total: 422ms	remaining: 63ms
87:	learn: 14.4088334	total: 426ms	remaining: 58.1ms
88:	learn: 14.3541312	total: 430ms	remaining: 53.2ms
89:	learn: 14.2923636	total: 434ms	remaining: 48.2ms
90:	learn: 14.2339259	total: 438ms	remaining: 43.3ms
91:	learn: 14.1439983	total: 442ms	remaining: 38.4ms
92:	learn: 14.0701371	total: 446ms	remaining: 33.6ms
93:	learn: 13.9770736	total: 450ms	remaining: 28.7ms
94:	learn: 13.9275801	total: 454ms	remaining: 23.9ms
95:	learn: 13.8717050	total: 458ms	remaining: 19.1ms
96:	learn: 13.7821340	total: 461ms	remaining: 14.3ms
97:	learn: 13.7383865	total: 465ms	remaining: 9.5ms
98:	learn: 13.6850693	total: 470ms	remaining: 4.75ms
99:	learn: 13.6273539	total: 474ms	remaining: 0us
0:	learn: 43.2118728	total: 5.92ms	remaining: 586ms
1:	learn: 42.3090111	total: 11.1ms	remaining: 545ms
2:	learn: 41.3060764	total: 16.6ms	remaining: 537ms
3:	learn: 40.3653958	total: 21.7ms	remaining: 521ms
4:	learn: 39.5006331	total: 27.3ms	remaining: 518ms
5:	learn: 38.6473041	total: 32.6ms	remaining: 511ms
6:	learn: 37.8560875	total: 37.5ms	remaining: 498ms
7:	learn: 37.0772701	total: 42.5ms	remaining: 489ms
8:	learn: 36.3260704	total: 47.7ms	remaining: 483ms
9:	learn: 35.7300393	total: 52.3ms	remaining: 471ms
10:	learn: 34.9336547	total: 57ms	remaining: 462ms
11:	learn: 34.1758190	total: 62.3ms	remaining: 457ms
12:	learn: 33.5120760	total: 67.1ms	remaining: 449ms
13:	learn: 32.8731142	total: 71.1ms	remaining: 437ms
14:	learn: 32.3579595	total: 75.4ms	remaining: 427ms
15:	learn: 31.7969963	total: 79.2ms	remaining: 416ms
16:	learn: 31.3472797	total: 83.1ms	remaining: 406ms
17:	learn: 30.7865884	total: 86.7ms	remaining: 395ms
18:	learn: 30.3876486	total: 90.7ms	remaining: 387ms
19:	learn: 29.8840575	total: 94.6ms	remaining: 378ms
20:	learn: 29.3584237	total: 98.6ms	remaining: 371ms
21:	learn: 28.9965200	total: 102ms	remaining: 362ms
22:	learn: 28.6117225	total: 106ms	remaining: 356ms
23:	learn: 28.1147832	total: 111ms	remaining: 351ms
24:	learn: 27.7857774	total: 115ms	remaining: 344ms
25:	learn: 27.3181226	total: 119ms	remaining: 337ms
26:	learn: 26.9019101	total: 123ms	remaining: 331ms
27:	learn: 26.6957004	total: 127ms	remaining: 325ms
28:	learn: 26.2816390	total: 130ms	remaining: 319ms
29:	learn: 25.9107534	total: 134ms	remaining: 313ms
30:	learn: 25.5773085	total: 139ms	remaining: 309ms
31:	learn: 25.1916035	total: 143ms	remaining: 304ms
32:	learn: 24.8819670	total: 147ms	remaining: 299ms
33:	learn: 24.5580488	total: 152ms	remaining: 295ms
34:	learn: 24.3088624	total: 156ms	remaining: 290ms
35:	learn: 23.9890893	total: 161ms	remaining: 285ms
36:	learn: 23.7266073	total: 165ms	remaining: 281ms
37:	learn: 23.4886046	total: 172ms	remaining: 281ms
38:	learn: 23.2786313	total: 180ms	remaining: 281ms
39:	learn: 23.0060540	total: 188ms	remaining: 282ms
40:	learn: 22.7848361	total: 194ms	remaining: 279ms
41:	learn: 22.5485511	total: 201ms	remaining: 278ms
42:	learn: 22.3113565	total: 206ms	remaining: 274ms
43:	learn: 22.1296084	total: 211ms	remaining: 269ms
44:	learn: 21.8514989	total: 217ms	remaining: 265ms
45:	learn: 21.6540201	total: 222ms	remaining: 260ms
46:	learn: 21.4203535	total: 227ms	remaining: 256ms
47:	learn: 21.2317196	total: 232ms	remaining: 251ms
48:	learn: 21.0547467	total: 237ms	remaining: 246ms
49:	learn: 20.9192535	total: 242ms	remaining: 242ms
50:	learn: 20.6975386	total: 247ms	remaining: 237ms
51:	learn: 20.5839720	total: 252ms	remaining: 233ms
52:	learn: 20.4528901	total: 257ms	remaining: 228ms
53:	learn: 20.3392419	total: 262ms	remaining: 223ms
54:	learn: 20.1518693	total: 268ms	remaining: 219ms
55:	learn: 19.9928770	total: 273ms	remaining: 215ms
56:	learn: 19.8042028	total: 278ms	remaining: 210ms
57:	learn: 19.7000879	total: 283ms	remaining: 205ms
58:	learn: 19.5524154	total: 288ms	remaining: 200ms
59:	learn: 19.4366908	total: 292ms	remaining: 195ms
60:	learn: 19.2739134	total: 296ms	remaining: 189ms
61:	learn: 19.1499266	total: 301ms	remaining: 185ms
62:	learn: 18.9948972	total: 305ms	remaining: 179ms
63:	learn: 18.8952299	total: 310ms	remaining: 174ms
64:	learn: 18.7545430	total: 313ms	remaining: 169ms
65:	learn: 18.6315116	total: 318ms	remaining: 164ms
66:	learn: 18.5164994	total: 322ms	remaining: 159ms
67:	learn: 18.3983038	total: 327ms	remaining: 154ms
68:	learn: 18.2803212	total: 331ms	remaining: 149ms
69:	learn: 18.1738467	total: 336ms	remaining: 144ms
70:	learn: 18.0884235	total: 340ms	remaining: 139ms
71:	learn: 18.0129445	total: 345ms	remaining: 134ms
72:	learn: 17.8582158	total: 349ms	remaining: 129ms
73:	learn: 17.7473705	total: 354ms	remaining: 124ms
74:	learn: 17.6431421	total: 359ms	remaining: 120ms
75:	learn: 17.5398511	total: 364ms	remaining: 115ms
76:	learn: 17.4404598	total: 371ms	remaining: 111ms
77:	learn: 17.3477525	total: 378ms	remaining: 107ms
78:	learn: 17.2283831	total: 387ms	remaining: 103ms
79:	learn: 17.0767035	total: 393ms	remaining: 98.3ms
80:	learn: 16.9732705	total: 400ms	remaining: 93.8ms
81:	learn: 16.8927449	total: 405ms	remaining: 89ms
82:	learn: 16.8145625	total: 411ms	remaining: 84.1ms
83:	learn: 16.7290845	total: 416ms	remaining: 79.2ms
84:	learn: 16.6661414	total: 421ms	remaining: 74.3ms
85:	learn: 16.5875575	total: 426ms	remaining: 69.4ms
86:	learn: 16.4578580	total: 432ms	remaining: 64.6ms
87:	learn: 16.4243550	total: 438ms	remaining: 59.7ms
88:	learn: 16.3251337	total: 442ms	remaining: 54.7ms
89:	learn: 16.2516385	total: 447ms	remaining: 49.7ms
90:	learn: 16.1226518	total: 452ms	remaining: 44.7ms
91:	learn: 16.0718308	total: 457ms	remaining: 39.8ms
92:	learn: 15.9636735	total: 463ms	remaining: 34.9ms
93:	learn: 15.8923693	total: 468ms	remaining: 29.8ms
94:	learn: 15.8270425	total: 472ms	remaining: 24.8ms
95:	learn: 15.7449077	total: 476ms	remaining: 19.8ms
96:	learn: 15.6978936	total: 480ms	remaining: 14.8ms
97:	learn: 15.6527285	total: 484ms	remaining: 9.87ms
98:	learn: 15.5557320	total: 488ms	remaining: 4.93ms
99:	learn: 15.4399171	total: 492ms	remaining: 0us
0:	learn: 46.7092506	total: 5.05ms	remaining: 500ms
1:	learn: 45.8266821	total: 9.83ms	remaining: 482ms
2:	learn: 45.0052023	total: 14.6ms	remaining: 472ms
3:	learn: 44.3828795	total: 18.9ms	remaining: 453ms
4:	learn: 43.7255353	total: 22.9ms	remaining: 435ms
5:	learn: 43.1663831	total: 27.3ms	remaining: 428ms
6:	learn: 42.3875189	total: 32.1ms	remaining: 427ms
7:	learn: 41.7839075	total: 39ms	remaining: 448ms
8:	learn: 41.0740108	total: 46.2ms	remaining: 467ms
9:	learn: 40.3846647	total: 54.4ms	remaining: 490ms
10:	learn: 39.8821046	total: 60.7ms	remaining: 491ms
11:	learn: 39.1807254	total: 68.5ms	remaining: 502ms
12:	learn: 38.7153028	total: 73.5ms	remaining: 492ms
13:	learn: 38.0474495	total: 79ms	remaining: 485ms
14:	learn: 37.3844461	total: 84ms	remaining: 476ms
15:	learn: 36.9210704	total: 89ms	remaining: 467ms
16:	learn: 36.3160964	total: 94.2ms	remaining: 460ms
17:	learn: 35.8915826	total: 99ms	remaining: 451ms
18:	learn: 35.5519989	total: 104ms	remaining: 443ms
19:	learn: 35.1437045	total: 109ms	remaining: 436ms
20:	learn: 34.6387799	total: 114ms	remaining: 430ms
21:	learn: 34.2437068	total: 119ms	remaining: 422ms
22:	learn: 33.8262100	total: 124ms	remaining: 415ms
23:	learn: 33.4683000	total: 128ms	remaining: 407ms
24:	learn: 32.9996389	total: 134ms	remaining: 402ms
25:	learn: 32.6942147	total: 140ms	remaining: 397ms
26:	learn: 32.3016096	total: 144ms	remaining: 389ms
27:	learn: 31.9517346	total: 148ms	remaining: 380ms
28:	learn: 31.5277387	total: 152ms	remaining: 372ms
29:	learn: 31.2545365	total: 156ms	remaining: 365ms
30:	learn: 31.0510813	total: 161ms	remaining: 358ms
31:	learn: 30.6383830	total: 165ms	remaining: 351ms
32:	learn: 30.2800150	total: 170ms	remaining: 345ms
33:	learn: 29.9559797	total: 173ms	remaining: 337ms
34:	learn: 29.5802745	total: 177ms	remaining: 329ms
35:	learn: 29.2605111	total: 180ms	remaining: 321ms
36:	learn: 28.9582434	total: 184ms	remaining: 314ms
37:	learn: 28.6149387	total: 189ms	remaining: 308ms
38:	learn: 28.3980091	total: 192ms	remaining: 301ms
39:	learn: 28.1704520	total: 197ms	remaining: 295ms
40:	learn: 27.8881319	total: 201ms	remaining: 289ms
41:	learn: 27.5805731	total: 205ms	remaining: 283ms
42:	learn: 27.3520567	total: 209ms	remaining: 277ms
43:	learn: 27.1039679	total: 213ms	remaining: 271ms
44:	learn: 26.8472623	total: 217ms	remaining: 265ms
45:	learn: 26.5757869	total: 222ms	remaining: 260ms
46:	learn: 26.4579118	total: 226ms	remaining: 255ms
47:	learn: 26.1279008	total: 231ms	remaining: 250ms
48:	learn: 25.8503346	total: 235ms	remaining: 244ms
49:	learn: 25.7039015	total: 239ms	remaining: 239ms
50:	learn: 25.4317154	total: 244ms	remaining: 234ms
51:	learn: 25.3028008	total: 248ms	remaining: 229ms
52:	learn: 25.1906194	total: 256ms	remaining: 227ms
53:	learn: 25.0082790	total: 263ms	remaining: 224ms
54:	learn: 24.8264791	total: 271ms	remaining: 221ms
55:	learn: 24.5961365	total: 277ms	remaining: 218ms
56:	learn: 24.4007690	total: 284ms	remaining: 215ms
57:	learn: 24.2476228	total: 289ms	remaining: 209ms
58:	learn: 23.9582465	total: 294ms	remaining: 204ms
59:	learn: 23.7247243	total: 299ms	remaining: 200ms
60:	learn: 23.5379970	total: 305ms	remaining: 195ms
61:	learn: 23.3908530	total: 310ms	remaining: 190ms
62:	learn: 23.2123241	total: 315ms	remaining: 185ms
63:	learn: 23.1010345	total: 320ms	remaining: 180ms
64:	learn: 22.9032423	total: 326ms	remaining: 175ms
65:	learn: 22.7815198	total: 331ms	remaining: 170ms
66:	learn: 22.6325063	total: 336ms	remaining: 165ms
67:	learn: 22.5406071	total: 340ms	remaining: 160ms
68:	learn: 22.4413332	total: 346ms	remaining: 155ms
69:	learn: 22.3005609	total: 351ms	remaining: 150ms
70:	learn: 22.1779345	total: 355ms	remaining: 145ms
71:	learn: 22.0491576	total: 360ms	remaining: 140ms
72:	learn: 21.9379106	total: 363ms	remaining: 134ms
73:	learn: 21.7597096	total: 367ms	remaining: 129ms
74:	learn: 21.6042300	total: 371ms	remaining: 124ms
75:	learn: 21.4644642	total: 375ms	remaining: 118ms
76:	learn: 21.3811287	total: 379ms	remaining: 113ms
77:	learn: 21.3089276	total: 383ms	remaining: 108ms
78:	learn: 21.1654429	total: 387ms	remaining: 103ms
79:	learn: 20.9602460	total: 391ms	remaining: 97.6ms
80:	learn: 20.7959461	total: 394ms	remaining: 92.5ms
81:	learn: 20.5861156	total: 398ms	remaining: 87.4ms
82:	learn: 20.5120680	total: 402ms	remaining: 82.4ms
83:	learn: 20.3997233	total: 406ms	remaining: 77.4ms
84:	learn: 20.2499469	total: 410ms	remaining: 72.4ms
85:	learn: 20.1117768	total: 414ms	remaining: 67.4ms
86:	learn: 20.0617643	total: 419ms	remaining: 62.6ms
87:	learn: 19.9609182	total: 424ms	remaining: 57.8ms
88:	learn: 19.8763814	total: 429ms	remaining: 53ms
89:	learn: 19.7843516	total: 433ms	remaining: 48.1ms
90:	learn: 19.6926200	total: 438ms	remaining: 43.3ms
91:	learn: 19.5686774	total: 442ms	remaining: 38.5ms
92:	learn: 19.4727236	total: 447ms	remaining: 33.6ms
93:	learn: 19.3780174	total: 454ms	remaining: 28.9ms
94:	learn: 19.2840650	total: 461ms	remaining: 24.3ms
95:	learn: 19.1747368	total: 468ms	remaining: 19.5ms
96:	learn: 19.1273306	total: 475ms	remaining: 14.7ms
97:	learn: 19.0413946	total: 484ms	remaining: 9.88ms
98:	learn: 18.8980682	total: 489ms	remaining: 4.94ms
99:	learn: 18.7799962	total: 495ms	remaining: 0us
0:	learn: 46.4426352	total: 5.37ms	remaining: 531ms
1:	learn: 45.5770653	total: 10.4ms	remaining: 507ms
2:	learn: 44.6956685	total: 15.6ms	remaining: 503ms
3:	learn: 43.9934709	total: 20.7ms	remaining: 497ms
4:	learn: 43.3008183	total: 24.9ms	remaining: 472ms
5:	learn: 42.7510022	total: 28.4ms	remaining: 445ms
6:	learn: 42.0237555	total: 32.1ms	remaining: 426ms
7:	learn: 41.5354996	total: 35.6ms	remaining: 410ms
8:	learn: 41.0264055	total: 39.6ms	remaining: 401ms
9:	learn: 40.5267003	total: 43.7ms	remaining: 393ms
10:	learn: 39.8363942	total: 47.5ms	remaining: 384ms
11:	learn: 39.2014089	total: 51.4ms	remaining: 377ms
12:	learn: 38.7943524	total: 55ms	remaining: 368ms
13:	learn: 38.1664113	total: 59.1ms	remaining: 363ms
14:	learn: 37.7492773	total: 62.9ms	remaining: 357ms
15:	learn: 37.2369693	total: 66.9ms	remaining: 351ms
16:	learn: 36.6953383	total: 70.7ms	remaining: 345ms
17:	learn: 36.3580916	total: 74.5ms	remaining: 340ms
18:	learn: 35.8637745	total: 78.7ms	remaining: 335ms
19:	learn: 35.4299153	total: 82.2ms	remaining: 329ms
20:	learn: 34.8794879	total: 86ms	remaining: 323ms
21:	learn: 34.3253348	total: 90.1ms	remaining: 320ms
22:	learn: 33.9307096	total: 94.7ms	remaining: 317ms
23:	learn: 33.5952896	total: 99.1ms	remaining: 314ms
24:	learn: 33.1314051	total: 103ms	remaining: 309ms
25:	learn: 32.8502968	total: 107ms	remaining: 306ms
26:	learn: 32.4430184	total: 112ms	remaining: 304ms
27:	learn: 32.0721224	total: 117ms	remaining: 300ms
28:	learn: 31.7977479	total: 121ms	remaining: 296ms
29:	learn: 31.3999469	total: 130ms	remaining: 303ms
30:	learn: 31.1179360	total: 137ms	remaining: 305ms
31:	learn: 30.7712852	total: 146ms	remaining: 310ms
32:	learn: 30.2912977	total: 153ms	remaining: 310ms
33:	learn: 29.9920376	total: 158ms	remaining: 307ms
34:	learn: 29.6637918	total: 163ms	remaining: 303ms
35:	learn: 29.3522959	total: 169ms	remaining: 300ms
36:	learn: 29.0482516	total: 174ms	remaining: 296ms
37:	learn: 28.7956656	total: 179ms	remaining: 292ms
38:	learn: 28.4845569	total: 184ms	remaining: 288ms
39:	learn: 28.3038067	total: 189ms	remaining: 284ms
40:	learn: 28.1185263	total: 195ms	remaining: 281ms
41:	learn: 27.8012563	total: 201ms	remaining: 277ms
42:	learn: 27.5184259	total: 206ms	remaining: 273ms
43:	learn: 27.3019892	total: 211ms	remaining: 269ms
44:	learn: 27.0494594	total: 217ms	remaining: 265ms
45:	learn: 26.8054317	total: 222ms	remaining: 261ms
46:	learn: 26.6554974	total: 228ms	remaining: 257ms
47:	learn: 26.3568392	total: 232ms	remaining: 251ms
48:	learn: 26.1045872	total: 236ms	remaining: 245ms
49:	learn: 25.9807311	total: 240ms	remaining: 240ms
50:	learn: 25.7104640	total: 244ms	remaining: 235ms
51:	learn: 25.6019547	total: 248ms	remaining: 229ms
52:	learn: 25.5011930	total: 252ms	remaining: 223ms
53:	learn: 25.2291639	total: 256ms	remaining: 218ms
54:	learn: 24.9952313	total: 260ms	remaining: 213ms
55:	learn: 24.8195031	total: 264ms	remaining: 207ms
56:	learn: 24.5591684	total: 268ms	remaining: 202ms
57:	learn: 24.4163080	total: 272ms	remaining: 197ms
58:	learn: 24.2328188	total: 276ms	remaining: 192ms
59:	learn: 24.0087408	total: 280ms	remaining: 187ms
60:	learn: 23.8918912	total: 284ms	remaining: 181ms
61:	learn: 23.7537024	total: 288ms	remaining: 177ms
62:	learn: 23.5466923	total: 293ms	remaining: 172ms
63:	learn: 23.3903724	total: 297ms	remaining: 167ms
64:	learn: 23.3257785	total: 302ms	remaining: 162ms
65:	learn: 23.2839464	total: 306ms	remaining: 158ms
66:	learn: 23.1476036	total: 310ms	remaining: 153ms
67:	learn: 22.9480972	total: 315ms	remaining: 148ms
68:	learn: 22.7537529	total: 319ms	remaining: 143ms
69:	learn: 22.6209544	total: 326ms	remaining: 140ms
70:	learn: 22.5058753	total: 333ms	remaining: 136ms
71:	learn: 22.4068656	total: 341ms	remaining: 132ms
72:	learn: 22.3254150	total: 348ms	remaining: 129ms
73:	learn: 22.1784174	total: 355ms	remaining: 125ms
74:	learn: 22.1095388	total: 360ms	remaining: 120ms
75:	learn: 21.9958083	total: 365ms	remaining: 115ms
76:	learn: 21.8728475	total: 370ms	remaining: 111ms
77:	learn: 21.7975828	total: 375ms	remaining: 106ms
78:	learn: 21.7133267	total: 381ms	remaining: 101ms
79:	learn: 21.6023410	total: 386ms	remaining: 96.4ms
80:	learn: 21.5254474	total: 391ms	remaining: 91.6ms
81:	learn: 21.3307418	total: 396ms	remaining: 86.9ms
82:	learn: 21.2411976	total: 401ms	remaining: 82.1ms
83:	learn: 21.1091386	total: 406ms	remaining: 77.3ms
84:	learn: 21.0526747	total: 411ms	remaining: 72.5ms
85:	learn: 20.9083817	total: 415ms	remaining: 67.6ms
86:	learn: 20.8767767	total: 420ms	remaining: 62.8ms
87:	learn: 20.8143988	total: 426ms	remaining: 58ms
88:	learn: 20.7127697	total: 431ms	remaining: 53.3ms
89:	learn: 20.6112504	total: 436ms	remaining: 48.4ms
90:	learn: 20.4609960	total: 440ms	remaining: 43.5ms
91:	learn: 20.3648890	total: 444ms	remaining: 38.6ms
92:	learn: 20.3052040	total: 449ms	remaining: 33.8ms
93:	learn: 20.2587865	total: 453ms	remaining: 28.9ms
94:	learn: 20.2096406	total: 458ms	remaining: 24.1ms
95:	learn: 20.1301385	total: 462ms	remaining: 19.2ms
96:	learn: 20.0401359	total: 466ms	remaining: 14.4ms
97:	learn: 19.9791591	total: 470ms	remaining: 9.59ms
98:	learn: 19.9237318	total: 474ms	remaining: 4.78ms
99:	learn: 19.8009190	total: 478ms	remaining: 0us
0:	learn: 46.9286701	total: 7ms	remaining: 694ms
1:	learn: 46.2851598	total: 26.2ms	remaining: 1.28s
2:	learn: 45.4586007	total: 31.2ms	remaining: 1.01s
3:	learn: 44.6581393	total: 36.3ms	remaining: 870ms
4:	learn: 43.8231644	total: 41.6ms	remaining: 790ms
5:	learn: 43.2906569	total: 46.4ms	remaining: 727ms
6:	learn: 42.5095813	total: 51.4ms	remaining: 683ms
7:	learn: 41.9310465	total: 56.3ms	remaining: 648ms
8:	learn: 41.2083262	total: 61.5ms	remaining: 622ms
9:	learn: 40.6852547	total: 66.2ms	remaining: 596ms
10:	learn: 39.9637018	total: 71ms	remaining: 574ms
11:	learn: 39.2804189	total: 75.9ms	remaining: 557ms
12:	learn: 38.8804017	total: 80ms	remaining: 536ms
13:	learn: 38.3826597	total: 84.9ms	remaining: 521ms
14:	learn: 37.9240424	total: 90ms	remaining: 510ms
15:	learn: 37.4312070	total: 95.4ms	remaining: 501ms
16:	learn: 36.8803673	total: 99.4ms	remaining: 485ms
17:	learn: 36.5496582	total: 103ms	remaining: 469ms
18:	learn: 36.2078375	total: 107ms	remaining: 455ms
19:	learn: 35.6806593	total: 111ms	remaining: 443ms
20:	learn: 35.1512154	total: 115ms	remaining: 431ms
21:	learn: 34.6013055	total: 119ms	remaining: 422ms
22:	learn: 34.2380102	total: 123ms	remaining: 411ms
23:	learn: 33.8720185	total: 126ms	remaining: 401ms
24:	learn: 33.4426135	total: 130ms	remaining: 391ms
25:	learn: 33.1471186	total: 134ms	remaining: 382ms
26:	learn: 32.8018279	total: 138ms	remaining: 373ms
27:	learn: 32.4498594	total: 142ms	remaining: 364ms
28:	learn: 31.9749480	total: 146ms	remaining: 357ms
29:	learn: 31.6470735	total: 149ms	remaining: 349ms
30:	learn: 31.4265242	total: 153ms	remaining: 340ms
31:	learn: 31.0753325	total: 156ms	remaining: 332ms
32:	learn: 30.7192494	total: 160ms	remaining: 326ms
33:	learn: 30.3547940	total: 165ms	remaining: 320ms
34:	learn: 30.1296593	total: 170ms	remaining: 315ms
35:	learn: 29.9367140	total: 174ms	remaining: 309ms
36:	learn: 29.6248477	total: 178ms	remaining: 303ms
37:	learn: 29.3156707	total: 182ms	remaining: 297ms
38:	learn: 29.1534039	total: 187ms	remaining: 292ms
39:	learn: 28.9351289	total: 191ms	remaining: 286ms
40:	learn: 28.7057685	total: 198ms	remaining: 285ms
41:	learn: 28.3132521	total: 205ms	remaining: 284ms
42:	learn: 28.0739054	total: 213ms	remaining: 283ms
43:	learn: 27.8135917	total: 220ms	remaining: 280ms
44:	learn: 27.5376804	total: 227ms	remaining: 278ms
45:	learn: 27.3195849	total: 232ms	remaining: 273ms
46:	learn: 27.1681104	total: 237ms	remaining: 268ms
47:	learn: 27.0122442	total: 242ms	remaining: 262ms
48:	learn: 26.7819409	total: 247ms	remaining: 257ms
49:	learn: 26.6429308	total: 253ms	remaining: 253ms
50:	learn: 26.3482899	total: 257ms	remaining: 247ms
51:	learn: 26.2432755	total: 262ms	remaining: 242ms
52:	learn: 26.0811102	total: 267ms	remaining: 237ms
53:	learn: 25.9398113	total: 272ms	remaining: 232ms
54:	learn: 25.7891395	total: 277ms	remaining: 227ms
55:	learn: 25.6185338	total: 282ms	remaining: 221ms
56:	learn: 25.3293977	total: 287ms	remaining: 216ms
57:	learn: 25.1918906	total: 293ms	remaining: 212ms
58:	learn: 25.0503990	total: 297ms	remaining: 206ms
59:	learn: 24.8225776	total: 301ms	remaining: 201ms
60:	learn: 24.5969153	total: 305ms	remaining: 195ms
61:	learn: 24.4657353	total: 308ms	remaining: 189ms
62:	learn: 24.2861000	total: 312ms	remaining: 183ms
63:	learn: 24.1719148	total: 316ms	remaining: 178ms
64:	learn: 24.0547875	total: 320ms	remaining: 172ms
65:	learn: 23.9156724	total: 323ms	remaining: 167ms
66:	learn: 23.7604012	total: 327ms	remaining: 161ms
67:	learn: 23.6265679	total: 331ms	remaining: 156ms
68:	learn: 23.5372255	total: 336ms	remaining: 151ms
69:	learn: 23.3286241	total: 340ms	remaining: 146ms
70:	learn: 23.1806465	total: 344ms	remaining: 140ms
71:	learn: 23.0652081	total: 348ms	remaining: 135ms
72:	learn: 22.9231023	total: 352ms	remaining: 130ms
73:	learn: 22.8020380	total: 356ms	remaining: 125ms
74:	learn: 22.6525036	total: 360ms	remaining: 120ms
75:	learn: 22.5616268	total: 364ms	remaining: 115ms
76:	learn: 22.4395250	total: 369ms	remaining: 110ms
77:	learn: 22.3732379	total: 373ms	remaining: 105ms
78:	learn: 22.2300874	total: 378ms	remaining: 100ms
79:	learn: 22.0209882	total: 382ms	remaining: 95.6ms
80:	learn: 21.8703996	total: 386ms	remaining: 90.6ms
81:	learn: 21.7222039	total: 391ms	remaining: 85.8ms
82:	learn: 21.5903685	total: 396ms	remaining: 81ms
83:	learn: 21.4915083	total: 403ms	remaining: 76.8ms
84:	learn: 21.3320736	total: 411ms	remaining: 72.5ms
85:	learn: 21.2295060	total: 419ms	remaining: 68.2ms
86:	learn: 21.1983620	total: 425ms	remaining: 63.5ms
87:	learn: 21.1404156	total: 431ms	remaining: 58.8ms
88:	learn: 21.0684840	total: 436ms	remaining: 53.9ms
89:	learn: 20.9269197	total: 442ms	remaining: 49.1ms
90:	learn: 20.8614606	total: 447ms	remaining: 44.2ms
91:	learn: 20.6642996	total: 452ms	remaining: 39.3ms
92:	learn: 20.5612705	total: 457ms	remaining: 34.4ms
93:	learn: 20.5264997	total: 463ms	remaining: 29.5ms
94:	learn: 20.4532331	total: 468ms	remaining: 24.6ms
95:	learn: 20.3700696	total: 473ms	remaining: 19.7ms
96:	learn: 20.2671574	total: 479ms	remaining: 14.8ms
97:	learn: 20.1761207	total: 483ms	remaining: 9.86ms
98:	learn: 20.0533799	total: 488ms	remaining: 4.93ms
99:	learn: 19.9890055	total: 494ms	remaining: 0us
0:	learn: 27.5585353	total: 4.37ms	remaining: 433ms
1:	learn: 27.1656995	total: 8.18ms	remaining: 401ms
2:	learn: 26.8590175	total: 12.1ms	remaining: 391ms
3:	learn: 26.5818406	total: 16.8ms	remaining: 402ms
4:	learn: 26.1148663	total: 21.1ms	remaining: 401ms
5:	learn: 25.7690484	total: 25.2ms	remaining: 395ms
6:	learn: 25.3489206	total: 29.4ms	remaining: 390ms
7:	learn: 24.9542406	total: 33.7ms	remaining: 387ms
8:	learn: 24.6777517	total: 38.3ms	remaining: 387ms
9:	learn: 24.3242344	total: 42.5ms	remaining: 382ms
10:	learn: 24.0383073	total: 46.8ms	remaining: 379ms
11:	learn: 23.7383420	total: 50.8ms	remaining: 372ms
12:	learn: 23.3461670	total: 55.3ms	remaining: 370ms
13:	learn: 23.0928636	total: 59.7ms	remaining: 367ms
14:	learn: 22.8770414	total: 64.7ms	remaining: 366ms
15:	learn: 22.6323214	total: 72.5ms	remaining: 381ms
16:	learn: 22.3597072	total: 79.4ms	remaining: 388ms
17:	learn: 22.1079813	total: 88.9ms	remaining: 405ms
18:	learn: 21.8421199	total: 95.3ms	remaining: 406ms
19:	learn: 21.6576508	total: 101ms	remaining: 405ms
20:	learn: 21.4301268	total: 107ms	remaining: 401ms
21:	learn: 21.2287388	total: 112ms	remaining: 398ms
22:	learn: 21.0553872	total: 118ms	remaining: 396ms
23:	learn: 20.8977091	total: 124ms	remaining: 392ms
24:	learn: 20.6619051	total: 130ms	remaining: 389ms
25:	learn: 20.5040955	total: 135ms	remaining: 385ms
26:	learn: 20.3181195	total: 141ms	remaining: 381ms
27:	learn: 20.0869436	total: 146ms	remaining: 376ms
28:	learn: 19.9375985	total: 151ms	remaining: 371ms
29:	learn: 19.8247516	total: 156ms	remaining: 363ms
30:	learn: 19.6261697	total: 161ms	remaining: 359ms
31:	learn: 19.4547236	total: 167ms	remaining: 354ms
32:	learn: 19.3157092	total: 171ms	remaining: 348ms
33:	learn: 19.1561419	total: 176ms	remaining: 342ms
34:	learn: 19.0453620	total: 180ms	remaining: 335ms
35:	learn: 18.8738574	total: 184ms	remaining: 328ms
36:	learn: 18.7072907	total: 189ms	remaining: 321ms
37:	learn: 18.5877943	total: 193ms	remaining: 315ms
38:	learn: 18.4436380	total: 198ms	remaining: 309ms
39:	learn: 18.3463356	total: 202ms	remaining: 302ms
40:	learn: 18.2008059	total: 206ms	remaining: 296ms
41:	learn: 18.0582079	total: 210ms	remaining: 291ms
42:	learn: 17.8891982	total: 215ms	remaining: 285ms
43:	learn: 17.7332246	total: 219ms	remaining: 279ms
44:	learn: 17.6206421	total: 224ms	remaining: 273ms
45:	learn: 17.4982800	total: 228ms	remaining: 267ms
46:	learn: 17.3970150	total: 232ms	remaining: 262ms
47:	learn: 17.3058203	total: 237ms	remaining: 257ms
48:	learn: 17.1789256	total: 241ms	remaining: 251ms
49:	learn: 17.0916229	total: 246ms	remaining: 246ms
50:	learn: 16.9859820	total: 251ms	remaining: 241ms
51:	learn: 16.8995582	total: 255ms	remaining: 235ms
52:	learn: 16.8137014	total: 260ms	remaining: 230ms
53:	learn: 16.7021451	total: 264ms	remaining: 225ms
54:	learn: 16.5895582	total: 270ms	remaining: 221ms
55:	learn: 16.5015639	total: 280ms	remaining: 220ms
56:	learn: 16.4356637	total: 291ms	remaining: 220ms
57:	learn: 16.3514525	total: 298ms	remaining: 216ms
58:	learn: 16.2401369	total: 305ms	remaining: 212ms
59:	learn: 16.1293223	total: 310ms	remaining: 207ms
60:	learn: 16.0271167	total: 316ms	remaining: 202ms
61:	learn: 15.9126257	total: 321ms	remaining: 197ms
62:	learn: 15.8391096	total: 327ms	remaining: 192ms
63:	learn: 15.7441773	total: 332ms	remaining: 187ms
64:	learn: 15.6885195	total: 338ms	remaining: 182ms
65:	learn: 15.6052039	total: 343ms	remaining: 177ms
66:	learn: 15.5074202	total: 349ms	remaining: 172ms
67:	learn: 15.4054338	total: 354ms	remaining: 166ms
68:	learn: 15.2885714	total: 359ms	remaining: 161ms
69:	learn: 15.2157472	total: 364ms	remaining: 156ms
70:	learn: 15.1031554	total: 369ms	remaining: 151ms
71:	learn: 15.0237470	total: 374ms	remaining: 145ms
72:	learn: 14.9756825	total: 378ms	remaining: 140ms
73:	learn: 14.8840596	total: 382ms	remaining: 134ms
74:	learn: 14.8077061	total: 387ms	remaining: 129ms
75:	learn: 14.7444437	total: 391ms	remaining: 124ms
76:	learn: 14.6751720	total: 396ms	remaining: 118ms
77:	learn: 14.5830333	total: 399ms	remaining: 113ms
78:	learn: 14.5241206	total: 403ms	remaining: 107ms
79:	learn: 14.4892731	total: 407ms	remaining: 102ms
80:	learn: 14.4256605	total: 411ms	remaining: 96.5ms
81:	learn: 14.3666860	total: 415ms	remaining: 91.2ms
82:	learn: 14.2938372	total: 420ms	remaining: 86ms
83:	learn: 14.2161532	total: 424ms	remaining: 80.8ms
84:	learn: 14.1582910	total: 428ms	remaining: 75.6ms
85:	learn: 14.1029153	total: 432ms	remaining: 70.4ms
86:	learn: 14.0475835	total: 436ms	remaining: 65.2ms
87:	learn: 13.9892661	total: 441ms	remaining: 60.1ms
88:	learn: 13.9481628	total: 446ms	remaining: 55.1ms
89:	learn: 13.8483991	total: 450ms	remaining: 50ms
90:	learn: 13.7775614	total: 454ms	remaining: 44.9ms
91:	learn: 13.7304585	total: 459ms	remaining: 39.9ms
92:	learn: 13.6783381	total: 463ms	remaining: 34.9ms
93:	learn: 13.6356964	total: 468ms	remaining: 29.8ms
94:	learn: 13.5924371	total: 472ms	remaining: 24.9ms
95:	learn: 13.5400746	total: 477ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 485ms	remaining: 15ms
97:	learn: 13.4470321	total: 493ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 500ms	remaining: 5.05ms
99:	learn: 13.3082371	total: 508ms	remaining: 0us
0:	learn: 43.0395283	total: 6.03ms	remaining: 597ms
1:	learn: 42.1130223	total: 11ms	remaining: 537ms
2:	learn: 41.1753409	total: 15ms	remaining: 485ms
3:	learn: 40.3637444	total: 19ms	remaining: 456ms
4:	learn: 39.6508088	total: 23.2ms	remaining: 440ms
5:	learn: 38.7217934	total: 27.3ms	remaining: 428ms
6:	learn: 37.8538055	total: 31.1ms	remaining: 414ms
7:	learn: 36.9793574	total: 35.3ms	remaining: 407ms
8:	learn: 36.3076984	total: 39.7ms	remaining: 401ms
9:	learn: 35.6673160	total: 43.7ms	remaining: 393ms
10:	learn: 34.8889800	total: 47.7ms	remaining: 386ms
11:	learn: 34.1675517	total: 51.9ms	remaining: 380ms
12:	learn: 33.6779564	total: 56.2ms	remaining: 376ms
13:	learn: 33.0710039	total: 60ms	remaining: 368ms
14:	learn: 32.4966674	total: 64.1ms	remaining: 363ms
15:	learn: 31.9492856	total: 68ms	remaining: 357ms
16:	learn: 31.5108129	total: 72.3ms	remaining: 353ms
17:	learn: 30.9804023	total: 76.4ms	remaining: 348ms
18:	learn: 30.4169089	total: 80.3ms	remaining: 342ms
19:	learn: 29.8930375	total: 84.3ms	remaining: 337ms
20:	learn: 29.3974421	total: 88.7ms	remaining: 333ms
21:	learn: 28.8792307	total: 92.7ms	remaining: 329ms
22:	learn: 28.3894474	total: 97.2ms	remaining: 325ms
23:	learn: 27.9921276	total: 102ms	remaining: 323ms
24:	learn: 27.6158887	total: 107ms	remaining: 320ms
25:	learn: 27.2866950	total: 111ms	remaining: 316ms
26:	learn: 26.8770708	total: 116ms	remaining: 313ms
27:	learn: 26.6233005	total: 120ms	remaining: 309ms
28:	learn: 26.2921934	total: 125ms	remaining: 306ms
29:	learn: 25.9156920	total: 130ms	remaining: 302ms
30:	learn: 25.5311106	total: 132ms	remaining: 293ms
31:	learn: 25.2178997	total: 139ms	remaining: 296ms
32:	learn: 24.8572196	total: 147ms	remaining: 299ms
33:	learn: 24.5849710	total: 155ms	remaining: 300ms
34:	learn: 24.2209190	total: 161ms	remaining: 299ms
35:	learn: 23.8708250	total: 167ms	remaining: 297ms
36:	learn: 23.5325279	total: 172ms	remaining: 293ms
37:	learn: 23.2116148	total: 177ms	remaining: 289ms
38:	learn: 22.9696787	total: 182ms	remaining: 285ms
39:	learn: 22.7936783	total: 187ms	remaining: 281ms
40:	learn: 22.6228847	total: 192ms	remaining: 277ms
41:	learn: 22.3691527	total: 198ms	remaining: 273ms
42:	learn: 22.1002173	total: 203ms	remaining: 269ms
43:	learn: 21.9157268	total: 221ms	remaining: 282ms
44:	learn: 21.7229102	total: 227ms	remaining: 277ms
45:	learn: 21.4642005	total: 231ms	remaining: 271ms
46:	learn: 21.3029442	total: 235ms	remaining: 265ms
47:	learn: 21.1469792	total: 239ms	remaining: 259ms
48:	learn: 20.9458235	total: 243ms	remaining: 253ms
49:	learn: 20.7335242	total: 248ms	remaining: 248ms
50:	learn: 20.5440269	total: 251ms	remaining: 242ms
51:	learn: 20.3661449	total: 255ms	remaining: 236ms
52:	learn: 20.2158134	total: 259ms	remaining: 230ms
53:	learn: 19.9934873	total: 264ms	remaining: 225ms
54:	learn: 19.7879739	total: 268ms	remaining: 219ms
55:	learn: 19.6630460	total: 272ms	remaining: 214ms
56:	learn: 19.5152729	total: 277ms	remaining: 209ms
57:	learn: 19.3581128	total: 281ms	remaining: 203ms
58:	learn: 19.2209303	total: 285ms	remaining: 198ms
59:	learn: 19.0965248	total: 289ms	remaining: 193ms
60:	learn: 19.0035954	total: 293ms	remaining: 187ms
61:	learn: 18.8554149	total: 297ms	remaining: 182ms
62:	learn: 18.7095427	total: 302ms	remaining: 177ms
63:	learn: 18.5751494	total: 307ms	remaining: 172ms
64:	learn: 18.4678251	total: 311ms	remaining: 168ms
65:	learn: 18.3500325	total: 316ms	remaining: 163ms
66:	learn: 18.2088983	total: 321ms	remaining: 158ms
67:	learn: 18.0737705	total: 325ms	remaining: 153ms
68:	learn: 17.9325058	total: 329ms	remaining: 148ms
69:	learn: 17.8003911	total: 337ms	remaining: 144ms
70:	learn: 17.7385366	total: 344ms	remaining: 141ms
71:	learn: 17.6106998	total: 355ms	remaining: 138ms
72:	learn: 17.4816270	total: 362ms	remaining: 134ms
73:	learn: 17.4025554	total: 368ms	remaining: 129ms
74:	learn: 17.2902108	total: 373ms	remaining: 124ms
75:	learn: 17.2158048	total: 379ms	remaining: 120ms
76:	learn: 17.1261053	total: 384ms	remaining: 115ms
77:	learn: 17.0308917	total: 390ms	remaining: 110ms
78:	learn: 16.9546705	total: 395ms	remaining: 105ms
79:	learn: 16.8319165	total: 401ms	remaining: 100ms
80:	learn: 16.7687017	total: 406ms	remaining: 95.2ms
81:	learn: 16.6972326	total: 411ms	remaining: 90.2ms
82:	learn: 16.6124580	total: 416ms	remaining: 85.2ms
83:	learn: 16.4999052	total: 421ms	remaining: 80.2ms
84:	learn: 16.4302484	total: 427ms	remaining: 75.3ms
85:	learn: 16.3201363	total: 432ms	remaining: 70.3ms
86:	learn: 16.2534314	total: 436ms	remaining: 65.2ms
87:	learn: 16.1720485	total: 441ms	remaining: 60.1ms
88:	learn: 16.0625751	total: 444ms	remaining: 54.9ms
89:	learn: 15.9135088	total: 448ms	remaining: 49.8ms
90:	learn: 15.8658863	total: 452ms	remaining: 44.8ms
91:	learn: 15.8066805	total: 457ms	remaining: 39.7ms
92:	learn: 15.7412103	total: 461ms	remaining: 34.7ms
93:	learn: 15.6542776	total: 465ms	remaining: 29.7ms
94:	learn: 15.5760334	total: 469ms	remaining: 24.7ms
95:	learn: 15.5434131	total: 474ms	remaining: 19.7ms
96:	learn: 15.4709561	total: 478ms	remaining: 14.8ms
97:	learn: 15.4449618	total: 483ms	remaining: 9.85ms
98:	learn: 15.3752761	total: 487ms	remaining: 4.92ms
99:	learn: 15.3106595	total: 491ms	remaining: 0us
0:	learn: 46.7142257	total: 6.01ms	remaining: 595ms
1:	learn: 45.7634153	total: 11.4ms	remaining: 557ms
2:	learn: 45.0054253	total: 16.8ms	remaining: 543ms
3:	learn: 44.2120432	total: 31.7ms	remaining: 762ms
4:	learn: 43.3960472	total: 37ms	remaining: 704ms
5:	learn: 42.8588120	total: 42.2ms	remaining: 661ms
6:	learn: 41.9533701	total: 47.8ms	remaining: 635ms
7:	learn: 41.2745030	total: 52.8ms	remaining: 608ms
8:	learn: 40.6797495	total: 58.2ms	remaining: 588ms
9:	learn: 39.9899571	total: 64.2ms	remaining: 578ms
10:	learn: 39.4682100	total: 70ms	remaining: 567ms
11:	learn: 39.0305595	total: 75ms	remaining: 550ms
12:	learn: 38.4200417	total: 78.9ms	remaining: 528ms
13:	learn: 37.8425194	total: 82.8ms	remaining: 509ms
14:	learn: 37.4203127	total: 86.8ms	remaining: 492ms
15:	learn: 36.9917688	total: 91.2ms	remaining: 479ms
16:	learn: 36.5544138	total: 95.7ms	remaining: 467ms
17:	learn: 36.0727019	total: 100ms	remaining: 456ms
18:	learn: 35.4835715	total: 104ms	remaining: 443ms
19:	learn: 34.9865654	total: 108ms	remaining: 433ms
20:	learn: 34.6063373	total: 112ms	remaining: 423ms
21:	learn: 34.0997289	total: 116ms	remaining: 413ms
22:	learn: 33.7313171	total: 121ms	remaining: 403ms
23:	learn: 33.3582000	total: 125ms	remaining: 397ms
24:	learn: 32.9432456	total: 130ms	remaining: 389ms
25:	learn: 32.5220888	total: 133ms	remaining: 380ms
26:	learn: 32.2172292	total: 137ms	remaining: 371ms
27:	learn: 31.8972904	total: 142ms	remaining: 365ms
28:	learn: 31.6405350	total: 146ms	remaining: 358ms
29:	learn: 31.4167702	total: 151ms	remaining: 352ms
30:	learn: 30.8541961	total: 153ms	remaining: 340ms
31:	learn: 30.5572111	total: 157ms	remaining: 334ms
32:	learn: 30.1700399	total: 162ms	remaining: 329ms
33:	learn: 29.8537271	total: 166ms	remaining: 323ms
34:	learn: 29.6192540	total: 171ms	remaining: 317ms
35:	learn: 29.3276362	total: 181ms	remaining: 322ms
36:	learn: 28.9985179	total: 188ms	remaining: 321ms
37:	learn: 28.7046880	total: 197ms	remaining: 321ms
38:	learn: 28.4412677	total: 205ms	remaining: 320ms
39:	learn: 28.1277292	total: 210ms	remaining: 315ms
40:	learn: 27.9000750	total: 215ms	remaining: 310ms
41:	learn: 27.5433162	total: 221ms	remaining: 305ms
42:	learn: 27.2493285	total: 226ms	remaining: 299ms
43:	learn: 26.9576632	total: 228ms	remaining: 290ms
44:	learn: 26.6177110	total: 246ms	remaining: 301ms
45:	learn: 26.2812456	total: 251ms	remaining: 295ms
46:	learn: 26.0803859	total: 256ms	remaining: 288ms
47:	learn: 25.9543581	total: 260ms	remaining: 282ms
48:	learn: 25.7951582	total: 265ms	remaining: 276ms
49:	learn: 25.6548184	total: 270ms	remaining: 270ms
50:	learn: 25.4010843	total: 275ms	remaining: 264ms
51:	learn: 24.9773937	total: 279ms	remaining: 257ms
52:	learn: 24.8026156	total: 283ms	remaining: 251ms
53:	learn: 24.5568053	total: 288ms	remaining: 245ms
54:	learn: 24.2281839	total: 292ms	remaining: 239ms
55:	learn: 23.9202795	total: 296ms	remaining: 233ms
56:	learn: 23.7625591	total: 301ms	remaining: 227ms
57:	learn: 23.5429721	total: 304ms	remaining: 220ms
58:	learn: 23.3175893	total: 308ms	remaining: 214ms
59:	learn: 23.2035130	total: 312ms	remaining: 208ms
60:	learn: 23.0232450	total: 317ms	remaining: 202ms
61:	learn: 22.8384958	total: 321ms	remaining: 196ms
62:	learn: 22.6499902	total: 325ms	remaining: 191ms
63:	learn: 22.4577426	total: 329ms	remaining: 185ms
64:	learn: 22.3333158	total: 333ms	remaining: 179ms
65:	learn: 22.2064131	total: 338ms	remaining: 174ms
66:	learn: 22.1434971	total: 342ms	remaining: 169ms
67:	learn: 21.9596519	total: 347ms	remaining: 163ms
68:	learn: 21.8475576	total: 351ms	remaining: 158ms
69:	learn: 21.6954745	total: 356ms	remaining: 152ms
70:	learn: 21.5635976	total: 360ms	remaining: 147ms
71:	learn: 21.4588506	total: 365ms	remaining: 142ms
72:	learn: 21.3527268	total: 370ms	remaining: 137ms
73:	learn: 21.2661288	total: 378ms	remaining: 133ms
74:	learn: 21.1817333	total: 385ms	remaining: 128ms
75:	learn: 21.0527553	total: 394ms	remaining: 124ms
76:	learn: 20.9229021	total: 400ms	remaining: 120ms
77:	learn: 20.7563946	total: 407ms	remaining: 115ms
78:	learn: 20.6569831	total: 412ms	remaining: 109ms
79:	learn: 20.4982663	total: 417ms	remaining: 104ms
80:	learn: 20.3185460	total: 422ms	remaining: 99.1ms
81:	learn: 20.2096241	total: 428ms	remaining: 94ms
82:	learn: 20.1274891	total: 433ms	remaining: 88.7ms
83:	learn: 20.0740139	total: 438ms	remaining: 83.5ms
84:	learn: 19.9630699	total: 444ms	remaining: 78.3ms
85:	learn: 19.8753899	total: 449ms	remaining: 73ms
86:	learn: 19.6563612	total: 454ms	remaining: 67.8ms
87:	learn: 19.4680232	total: 459ms	remaining: 62.6ms
88:	learn: 19.3503431	total: 464ms	remaining: 57.3ms
89:	learn: 19.2221379	total: 469ms	remaining: 52.1ms
90:	learn: 19.0732542	total: 474ms	remaining: 46.9ms
91:	learn: 18.9825190	total: 478ms	remaining: 41.6ms
92:	learn: 18.8839009	total: 482ms	remaining: 36.3ms
93:	learn: 18.8012219	total: 486ms	remaining: 31ms
94:	learn: 18.7172713	total: 490ms	remaining: 25.8ms
95:	learn: 18.6201170	total: 495ms	remaining: 20.6ms
96:	learn: 18.5318611	total: 499ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 503ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 508ms	remaining: 5.13ms
99:	learn: 18.2227333	total: 512ms	remaining: 0us
0:	learn: 46.3764524	total: 5.51ms	remaining: 545ms
1:	learn: 45.5561269	total: 10.8ms	remaining: 528ms
2:	learn: 44.8811245	total: 17.1ms	remaining: 554ms
3:	learn: 44.0788617	total: 21.9ms	remaining: 526ms
4:	learn: 43.3619790	total: 27.4ms	remaining: 520ms
5:	learn: 42.6912112	total: 32.8ms	remaining: 514ms
6:	learn: 42.2292118	total: 38.1ms	remaining: 506ms
7:	learn: 41.7725191	total: 49.8ms	remaining: 573ms
8:	learn: 41.1676614	total: 55ms	remaining: 556ms
9:	learn: 40.5771076	total: 60ms	remaining: 540ms
10:	learn: 39.8343757	total: 65.2ms	remaining: 527ms
11:	learn: 39.3761142	total: 70.6ms	remaining: 518ms
12:	learn: 38.5254692	total: 75.5ms	remaining: 505ms
13:	learn: 37.9629555	total: 80.5ms	remaining: 495ms
14:	learn: 37.4418438	total: 85.4ms	remaining: 484ms
15:	learn: 37.0507283	total: 90.3ms	remaining: 474ms
16:	learn: 36.6264217	total: 96.3ms	remaining: 470ms
17:	learn: 36.1114940	total: 102ms	remaining: 466ms
18:	learn: 35.7193862	total: 107ms	remaining: 454ms
19:	learn: 35.3301177	total: 111ms	remaining: 443ms
20:	learn: 35.0598280	total: 115ms	remaining: 433ms
21:	learn: 34.5469736	total: 119ms	remaining: 423ms
22:	learn: 34.2064215	total: 124ms	remaining: 414ms
23:	learn: 33.7280710	total: 127ms	remaining: 403ms
24:	learn: 33.3282940	total: 131ms	remaining: 394ms
25:	learn: 32.8478961	total: 135ms	remaining: 385ms
26:	learn: 32.5722164	total: 140ms	remaining: 377ms
27:	learn: 32.2457019	total: 144ms	remaining: 370ms
28:	learn: 31.9230495	total: 148ms	remaining: 363ms
29:	learn: 31.4311611	total: 153ms	remaining: 357ms
30:	learn: 30.9179052	total: 157ms	remaining: 350ms
31:	learn: 30.6201141	total: 161ms	remaining: 342ms
32:	learn: 30.3421106	total: 165ms	remaining: 336ms
33:	learn: 29.9885373	total: 169ms	remaining: 328ms
34:	learn: 29.7462780	total: 173ms	remaining: 321ms
35:	learn: 29.3607153	total: 177ms	remaining: 314ms
36:	learn: 29.1793078	total: 181ms	remaining: 308ms
37:	learn: 28.9276538	total: 185ms	remaining: 302ms
38:	learn: 28.6903934	total: 189ms	remaining: 296ms
39:	learn: 28.2095033	total: 193ms	remaining: 290ms
40:	learn: 27.7990608	total: 197ms	remaining: 284ms
41:	learn: 27.5406632	total: 201ms	remaining: 278ms
42:	learn: 27.2575376	total: 205ms	remaining: 272ms
43:	learn: 26.9741707	total: 209ms	remaining: 266ms
44:	learn: 26.6606899	total: 213ms	remaining: 261ms
45:	learn: 26.4015833	total: 218ms	remaining: 256ms
46:	learn: 26.1828993	total: 222ms	remaining: 250ms
47:	learn: 26.0233709	total: 224ms	remaining: 243ms
48:	learn: 25.9300399	total: 228ms	remaining: 237ms
49:	learn: 25.5861489	total: 233ms	remaining: 233ms
50:	learn: 25.4322012	total: 237ms	remaining: 228ms
51:	learn: 25.1595644	total: 242ms	remaining: 223ms
52:	learn: 24.9955303	total: 246ms	remaining: 219ms
53:	learn: 24.7273966	total: 251ms	remaining: 214ms
54:	learn: 24.5747978	total: 256ms	remaining: 209ms
55:	learn: 24.3807977	total: 260ms	remaining: 205ms
56:	learn: 24.1689569	total: 266ms	remaining: 201ms
57:	learn: 23.9898221	total: 292ms	remaining: 212ms
58:	learn: 23.7566414	total: 300ms	remaining: 209ms
59:	learn: 23.6641165	total: 305ms	remaining: 203ms
60:	learn: 23.5658066	total: 310ms	remaining: 198ms
61:	learn: 23.4338851	total: 315ms	remaining: 193ms
62:	learn: 23.2408837	total: 321ms	remaining: 188ms
63:	learn: 23.0642038	total: 326ms	remaining: 183ms
64:	learn: 22.9032045	total: 331ms	remaining: 178ms
65:	learn: 22.7736138	total: 337ms	remaining: 173ms
66:	learn: 22.6836443	total: 342ms	remaining: 168ms
67:	learn: 22.5983654	total: 347ms	remaining: 163ms
68:	learn: 22.4419813	total: 352ms	remaining: 158ms
69:	learn: 22.2863339	total: 357ms	remaining: 153ms
70:	learn: 22.1792943	total: 362ms	remaining: 148ms
71:	learn: 22.1130574	total: 371ms	remaining: 144ms
72:	learn: 21.9858161	total: 375ms	remaining: 139ms
73:	learn: 21.8577784	total: 380ms	remaining: 133ms
74:	learn: 21.7845222	total: 385ms	remaining: 128ms
75:	learn: 21.6831390	total: 389ms	remaining: 123ms
76:	learn: 21.6292521	total: 394ms	remaining: 118ms
77:	learn: 21.5789330	total: 399ms	remaining: 112ms
78:	learn: 21.5420942	total: 403ms	remaining: 107ms
79:	learn: 21.4280939	total: 407ms	remaining: 102ms
80:	learn: 21.3641165	total: 411ms	remaining: 96.5ms
81:	learn: 21.2734814	total: 416ms	remaining: 91.3ms
82:	learn: 21.2220323	total: 420ms	remaining: 86.1ms
83:	learn: 21.0625792	total: 425ms	remaining: 81ms
84:	learn: 20.9488320	total: 430ms	remaining: 75.8ms
85:	learn: 20.8504255	total: 434ms	remaining: 70.7ms
86:	learn: 20.7848510	total: 439ms	remaining: 65.6ms
87:	learn: 20.7247442	total: 443ms	remaining: 60.5ms
88:	learn: 20.5698590	total: 448ms	remaining: 55.4ms
89:	learn: 20.4067620	total: 453ms	remaining: 50.4ms
90:	learn: 20.3062482	total: 458ms	remaining: 45.3ms
91:	learn: 20.2029696	total: 463ms	remaining: 40.2ms
92:	learn: 20.1384849	total: 467ms	remaining: 35.2ms
93:	learn: 20.0260709	total: 473ms	remaining: 30.2ms
94:	learn: 19.9122100	total: 477ms	remaining: 25.1ms
95:	learn: 19.8648487	total: 482ms	remaining: 20.1ms
96:	learn: 19.8207072	total: 495ms	remaining: 15.3ms
97:	learn: 19.7261189	total: 503ms	remaining: 10.3ms
98:	learn: 19.7042438	total: 510ms	remaining: 5.15ms
99:	learn: 19.6546645	total: 517ms	remaining: 0us
0:	learn: 47.0239288	total: 5.76ms	remaining: 571ms
1:	learn: 46.2253829	total: 11.4ms	remaining: 557ms
2:	learn: 45.5580301	total: 15.9ms	remaining: 514ms
3:	learn: 44.7273237	total: 20.3ms	remaining: 487ms
4:	learn: 43.8867421	total: 25.2ms	remaining: 479ms
5:	learn: 43.3615911	total: 29.7ms	remaining: 465ms
6:	learn: 42.8548390	total: 34ms	remaining: 452ms
7:	learn: 42.1606758	total: 38.7ms	remaining: 445ms
8:	learn: 41.6625870	total: 43.1ms	remaining: 436ms
9:	learn: 40.9497092	total: 47.7ms	remaining: 429ms
10:	learn: 40.1886318	total: 52.3ms	remaining: 423ms
11:	learn: 39.7456423	total: 56.7ms	remaining: 416ms
12:	learn: 39.1171373	total: 61.4ms	remaining: 411ms
13:	learn: 38.5451069	total: 66.1ms	remaining: 406ms
14:	learn: 38.0155834	total: 71.4ms	remaining: 404ms
15:	learn: 37.5631354	total: 76.2ms	remaining: 400ms
16:	learn: 37.1030023	total: 81ms	remaining: 396ms
17:	learn: 36.4563029	total: 85.2ms	remaining: 388ms
18:	learn: 36.0160976	total: 89.9ms	remaining: 383ms
19:	learn: 35.5079827	total: 94.7ms	remaining: 379ms
20:	learn: 35.2111885	total: 99.5ms	remaining: 374ms
21:	learn: 34.9397465	total: 104ms	remaining: 369ms
22:	learn: 34.5270048	total: 109ms	remaining: 364ms
23:	learn: 34.0169260	total: 114ms	remaining: 360ms
24:	learn: 33.7454892	total: 119ms	remaining: 357ms
25:	learn: 33.2648157	total: 124ms	remaining: 353ms
26:	learn: 32.8899427	total: 139ms	remaining: 376ms
27:	learn: 32.6185050	total: 147ms	remaining: 378ms
28:	learn: 32.3528531	total: 155ms	remaining: 380ms
29:	learn: 32.0859923	total: 160ms	remaining: 373ms
30:	learn: 31.6511144	total: 166ms	remaining: 368ms
31:	learn: 31.2571765	total: 171ms	remaining: 363ms
32:	learn: 30.9770049	total: 176ms	remaining: 357ms
33:	learn: 30.6084872	total: 180ms	remaining: 350ms
34:	learn: 30.3448632	total: 185ms	remaining: 344ms
35:	learn: 30.0360942	total: 191ms	remaining: 339ms
36:	learn: 29.6648968	total: 196ms	remaining: 333ms
37:	learn: 29.3165114	total: 201ms	remaining: 328ms
38:	learn: 29.0829198	total: 206ms	remaining: 322ms
39:	learn: 28.7752064	total: 210ms	remaining: 316ms
40:	learn: 28.3622191	total: 215ms	remaining: 310ms
41:	learn: 28.1346631	total: 221ms	remaining: 305ms
42:	learn: 27.9585719	total: 226ms	remaining: 300ms
43:	learn: 27.6565566	total: 230ms	remaining: 293ms
44:	learn: 27.3616172	total: 234ms	remaining: 286ms
45:	learn: 27.0658637	total: 238ms	remaining: 279ms
46:	learn: 26.8660382	total: 242ms	remaining: 273ms
47:	learn: 26.6536078	total: 246ms	remaining: 266ms
48:	learn: 26.3524440	total: 250ms	remaining: 260ms
49:	learn: 26.1595277	total: 254ms	remaining: 254ms
50:	learn: 25.9273523	total: 258ms	remaining: 248ms
51:	learn: 25.7195580	total: 262ms	remaining: 242ms
52:	learn: 25.5730225	total: 266ms	remaining: 236ms
53:	learn: 25.3455276	total: 270ms	remaining: 230ms
54:	learn: 25.2289675	total: 274ms	remaining: 225ms
55:	learn: 25.0133024	total: 278ms	remaining: 219ms
56:	learn: 24.8406714	total: 282ms	remaining: 213ms
57:	learn: 24.6367857	total: 286ms	remaining: 207ms
58:	learn: 24.5338177	total: 291ms	remaining: 202ms
59:	learn: 24.3799964	total: 296ms	remaining: 197ms
60:	learn: 24.1447492	total: 300ms	remaining: 192ms
61:	learn: 23.9880495	total: 305ms	remaining: 187ms
62:	learn: 23.7140630	total: 309ms	remaining: 181ms
63:	learn: 23.5003791	total: 313ms	remaining: 176ms
64:	learn: 23.3207645	total: 318ms	remaining: 171ms
65:	learn: 23.1958356	total: 324ms	remaining: 167ms
66:	learn: 23.0471302	total: 333ms	remaining: 164ms
67:	learn: 22.8977183	total: 342ms	remaining: 161ms
68:	learn: 22.7187400	total: 349ms	remaining: 157ms
69:	learn: 22.6523405	total: 357ms	remaining: 153ms
70:	learn: 22.4767453	total: 362ms	remaining: 148ms
71:	learn: 22.3243677	total: 368ms	remaining: 143ms
72:	learn: 22.2133096	total: 373ms	remaining: 138ms
73:	learn: 22.1151713	total: 378ms	remaining: 133ms
74:	learn: 22.0296666	total: 394ms	remaining: 131ms
75:	learn: 21.9195980	total: 399ms	remaining: 126ms
76:	learn: 21.8401730	total: 404ms	remaining: 121ms
77:	learn: 21.8079797	total: 409ms	remaining: 115ms
78:	learn: 21.7274109	total: 414ms	remaining: 110ms
79:	learn: 21.6663032	total: 419ms	remaining: 105ms
80:	learn: 21.5633117	total: 424ms	remaining: 99.4ms
81:	learn: 21.4542467	total: 428ms	remaining: 94ms
82:	learn: 21.3177957	total: 432ms	remaining: 88.5ms
83:	learn: 21.1289167	total: 437ms	remaining: 83.2ms
84:	learn: 21.0297368	total: 441ms	remaining: 77.8ms
85:	learn: 20.9089564	total: 445ms	remaining: 72.4ms
86:	learn: 20.7653988	total: 449ms	remaining: 67.1ms
87:	learn: 20.6521894	total: 453ms	remaining: 61.8ms
88:	learn: 20.5193021	total: 457ms	remaining: 56.5ms
89:	learn: 20.4361620	total: 461ms	remaining: 51.2ms
90:	learn: 20.3546710	total: 465ms	remaining: 46ms
91:	learn: 20.2513296	total: 469ms	remaining: 40.8ms
92:	learn: 20.1605550	total: 473ms	remaining: 35.6ms
93:	learn: 20.0515942	total: 477ms	remaining: 30.4ms
94:	learn: 19.9800764	total: 481ms	remaining: 25.3ms
95:	learn: 19.8996532	total: 486ms	remaining: 20.2ms
96:	learn: 19.8450910	total: 490ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 494ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 499ms	remaining: 5.04ms
99:	learn: 19.6328825	total: 503ms	remaining: 0us
0:	learn: 27.5585353	total: 5.56ms	remaining: 550ms
1:	learn: 27.1656995	total: 10.9ms	remaining: 533ms
2:	learn: 26.8590175	total: 15.9ms	remaining: 514ms
3:	learn: 26.5818406	total: 20.6ms	remaining: 494ms
4:	learn: 26.1148663	total: 25.8ms	remaining: 490ms
5:	learn: 25.7690484	total: 30.7ms	remaining: 481ms
6:	learn: 25.3489206	total: 35.8ms	remaining: 476ms
7:	learn: 24.9542406	total: 41ms	remaining: 472ms
8:	learn: 24.6777517	total: 46.8ms	remaining: 473ms
9:	learn: 24.3242344	total: 52.4ms	remaining: 472ms
10:	learn: 24.0383073	total: 57.2ms	remaining: 463ms
11:	learn: 23.7383420	total: 61.8ms	remaining: 453ms
12:	learn: 23.3461670	total: 65.7ms	remaining: 440ms
13:	learn: 23.0928636	total: 69.7ms	remaining: 428ms
14:	learn: 22.8770414	total: 73.8ms	remaining: 418ms
15:	learn: 22.6323214	total: 77.8ms	remaining: 409ms
16:	learn: 22.3597072	total: 82.9ms	remaining: 405ms
17:	learn: 22.1079813	total: 88.3ms	remaining: 402ms
18:	learn: 21.8421199	total: 93.4ms	remaining: 398ms
19:	learn: 21.6576508	total: 97.9ms	remaining: 392ms
20:	learn: 21.4301268	total: 102ms	remaining: 385ms
21:	learn: 21.2287388	total: 107ms	remaining: 378ms
22:	learn: 21.0553872	total: 112ms	remaining: 374ms
23:	learn: 20.8977091	total: 116ms	remaining: 368ms
24:	learn: 20.6619051	total: 121ms	remaining: 362ms
25:	learn: 20.5040955	total: 125ms	remaining: 357ms
26:	learn: 20.3181195	total: 131ms	remaining: 353ms
27:	learn: 20.0869436	total: 135ms	remaining: 348ms
28:	learn: 19.9375985	total: 140ms	remaining: 344ms
29:	learn: 19.8247516	total: 145ms	remaining: 339ms
30:	learn: 19.6261697	total: 150ms	remaining: 335ms
31:	learn: 19.4547236	total: 155ms	remaining: 330ms
32:	learn: 19.3157092	total: 161ms	remaining: 326ms
33:	learn: 19.1561419	total: 171ms	remaining: 333ms
34:	learn: 19.0453620	total: 182ms	remaining: 339ms
35:	learn: 18.8738574	total: 190ms	remaining: 338ms
36:	learn: 18.7072907	total: 198ms	remaining: 338ms
37:	learn: 18.5877943	total: 204ms	remaining: 333ms
38:	learn: 18.4436380	total: 209ms	remaining: 328ms
39:	learn: 18.3463356	total: 215ms	remaining: 322ms
40:	learn: 18.2008059	total: 220ms	remaining: 317ms
41:	learn: 18.0582079	total: 226ms	remaining: 312ms
42:	learn: 17.8891982	total: 232ms	remaining: 307ms
43:	learn: 17.7332246	total: 238ms	remaining: 302ms
44:	learn: 17.6206421	total: 243ms	remaining: 297ms
45:	learn: 17.4982800	total: 248ms	remaining: 292ms
46:	learn: 17.3970150	total: 254ms	remaining: 286ms
47:	learn: 17.3058203	total: 260ms	remaining: 282ms
48:	learn: 17.1789256	total: 266ms	remaining: 276ms
49:	learn: 17.0916229	total: 270ms	remaining: 270ms
50:	learn: 16.9859820	total: 275ms	remaining: 264ms
51:	learn: 16.8995582	total: 279ms	remaining: 258ms
52:	learn: 16.8137014	total: 284ms	remaining: 252ms
53:	learn: 16.7021451	total: 288ms	remaining: 245ms
54:	learn: 16.5895582	total: 293ms	remaining: 239ms
55:	learn: 16.5015639	total: 297ms	remaining: 233ms
56:	learn: 16.4356637	total: 302ms	remaining: 228ms
57:	learn: 16.3514525	total: 307ms	remaining: 222ms
58:	learn: 16.2401369	total: 311ms	remaining: 216ms
59:	learn: 16.1293223	total: 315ms	remaining: 210ms
60:	learn: 16.0271167	total: 320ms	remaining: 205ms
61:	learn: 15.9126257	total: 325ms	remaining: 199ms
62:	learn: 15.8391096	total: 330ms	remaining: 194ms
63:	learn: 15.7441773	total: 335ms	remaining: 188ms
64:	learn: 15.6885195	total: 340ms	remaining: 183ms
65:	learn: 15.6052039	total: 344ms	remaining: 177ms
66:	learn: 15.5074202	total: 349ms	remaining: 172ms
67:	learn: 15.4054338	total: 353ms	remaining: 166ms
68:	learn: 15.2885714	total: 358ms	remaining: 161ms
69:	learn: 15.2157472	total: 366ms	remaining: 157ms
70:	learn: 15.1031554	total: 373ms	remaining: 152ms
71:	learn: 15.0237470	total: 382ms	remaining: 149ms
72:	learn: 14.9756825	total: 388ms	remaining: 143ms
73:	learn: 14.8840596	total: 394ms	remaining: 138ms
74:	learn: 14.8077061	total: 401ms	remaining: 134ms
75:	learn: 14.7444437	total: 407ms	remaining: 129ms
76:	learn: 14.6751720	total: 413ms	remaining: 123ms
77:	learn: 14.5830333	total: 418ms	remaining: 118ms
78:	learn: 14.5241206	total: 423ms	remaining: 112ms
79:	learn: 14.4892731	total: 428ms	remaining: 107ms
80:	learn: 14.4256605	total: 434ms	remaining: 102ms
81:	learn: 14.3666860	total: 439ms	remaining: 96.3ms
82:	learn: 14.2938372	total: 444ms	remaining: 91ms
83:	learn: 14.2161532	total: 449ms	remaining: 85.5ms
84:	learn: 14.1582910	total: 454ms	remaining: 80.2ms
85:	learn: 14.1029153	total: 460ms	remaining: 74.9ms
86:	learn: 14.0475835	total: 465ms	remaining: 69.5ms
87:	learn: 13.9892661	total: 469ms	remaining: 64ms
88:	learn: 13.9481628	total: 473ms	remaining: 58.5ms
89:	learn: 13.8483991	total: 478ms	remaining: 53.1ms
90:	learn: 13.7775614	total: 483ms	remaining: 47.7ms
91:	learn: 13.7304585	total: 487ms	remaining: 42.4ms
92:	learn: 13.6783381	total: 492ms	remaining: 37ms
93:	learn: 13.6356964	total: 496ms	remaining: 31.7ms
94:	learn: 13.5924371	total: 501ms	remaining: 26.3ms
95:	learn: 13.5400746	total: 505ms	remaining: 21ms
96:	learn: 13.4897333	total: 510ms	remaining: 15.8ms
97:	learn: 13.4470321	total: 515ms	remaining: 10.5ms
98:	learn: 13.3856082	total: 519ms	remaining: 5.24ms
99:	learn: 13.3082371	total: 524ms	remaining: 0us
0:	learn: 43.0395283	total: 6.79ms	remaining: 672ms
1:	learn: 42.1130223	total: 14.7ms	remaining: 720ms
2:	learn: 41.1753409	total: 19.8ms	remaining: 639ms
3:	learn: 40.3637444	total: 24.7ms	remaining: 593ms
4:	learn: 39.6508088	total: 29.8ms	remaining: 567ms
5:	learn: 38.7217934	total: 34.9ms	remaining: 546ms
6:	learn: 37.8538055	total: 39.9ms	remaining: 531ms
7:	learn: 36.9793574	total: 45ms	remaining: 518ms
8:	learn: 36.3076984	total: 50.5ms	remaining: 511ms
9:	learn: 35.6673160	total: 55.6ms	remaining: 501ms
10:	learn: 34.8889800	total: 60.8ms	remaining: 492ms
11:	learn: 34.1675517	total: 65.7ms	remaining: 482ms
12:	learn: 33.6779564	total: 71ms	remaining: 475ms
13:	learn: 33.0710039	total: 76.2ms	remaining: 468ms
14:	learn: 32.4966674	total: 81.1ms	remaining: 459ms
15:	learn: 31.9492856	total: 84.9ms	remaining: 446ms
16:	learn: 31.5108129	total: 89ms	remaining: 434ms
17:	learn: 30.9804023	total: 93.2ms	remaining: 425ms
18:	learn: 30.4169089	total: 97.2ms	remaining: 414ms
19:	learn: 29.8930375	total: 101ms	remaining: 405ms
20:	learn: 29.3974421	total: 105ms	remaining: 396ms
21:	learn: 28.8792307	total: 109ms	remaining: 387ms
22:	learn: 28.3894474	total: 113ms	remaining: 379ms
23:	learn: 27.9921276	total: 117ms	remaining: 371ms
24:	learn: 27.6158887	total: 121ms	remaining: 363ms
25:	learn: 27.2866950	total: 125ms	remaining: 357ms
26:	learn: 26.8770708	total: 129ms	remaining: 350ms
27:	learn: 26.6233005	total: 133ms	remaining: 343ms
28:	learn: 26.2921934	total: 138ms	remaining: 337ms
29:	learn: 25.9156920	total: 142ms	remaining: 332ms
30:	learn: 25.5311106	total: 144ms	remaining: 320ms
31:	learn: 25.2178997	total: 148ms	remaining: 314ms
32:	learn: 24.8572196	total: 152ms	remaining: 309ms
33:	learn: 24.5849710	total: 157ms	remaining: 306ms
34:	learn: 24.2209190	total: 162ms	remaining: 300ms
35:	learn: 23.8708250	total: 166ms	remaining: 296ms
36:	learn: 23.5325279	total: 171ms	remaining: 291ms
37:	learn: 23.2116148	total: 175ms	remaining: 286ms
38:	learn: 22.9696787	total: 179ms	remaining: 281ms
39:	learn: 22.7936783	total: 184ms	remaining: 276ms
40:	learn: 22.6228847	total: 189ms	remaining: 272ms
41:	learn: 22.3691527	total: 197ms	remaining: 272ms
42:	learn: 22.1002173	total: 204ms	remaining: 271ms
43:	learn: 21.9157268	total: 213ms	remaining: 271ms
44:	learn: 21.7229102	total: 218ms	remaining: 266ms
45:	learn: 21.4642005	total: 225ms	remaining: 264ms
46:	learn: 21.3029442	total: 230ms	remaining: 259ms
47:	learn: 21.1469792	total: 235ms	remaining: 254ms
48:	learn: 20.9458235	total: 240ms	remaining: 250ms
49:	learn: 20.7335242	total: 245ms	remaining: 245ms
50:	learn: 20.5440269	total: 250ms	remaining: 240ms
51:	learn: 20.3661449	total: 255ms	remaining: 236ms
52:	learn: 20.2158134	total: 261ms	remaining: 232ms
53:	learn: 19.9934873	total: 266ms	remaining: 227ms
54:	learn: 19.7879739	total: 272ms	remaining: 222ms
55:	learn: 19.6630460	total: 277ms	remaining: 217ms
56:	learn: 19.5152729	total: 282ms	remaining: 212ms
57:	learn: 19.3581128	total: 287ms	remaining: 208ms
58:	learn: 19.2209303	total: 292ms	remaining: 203ms
59:	learn: 19.0965248	total: 297ms	remaining: 198ms
60:	learn: 19.0035954	total: 301ms	remaining: 192ms
61:	learn: 18.8554149	total: 305ms	remaining: 187ms
62:	learn: 18.7095427	total: 309ms	remaining: 181ms
63:	learn: 18.5751494	total: 313ms	remaining: 176ms
64:	learn: 18.4678251	total: 317ms	remaining: 170ms
65:	learn: 18.3500325	total: 321ms	remaining: 165ms
66:	learn: 18.2088983	total: 325ms	remaining: 160ms
67:	learn: 18.0737705	total: 329ms	remaining: 155ms
68:	learn: 17.9325058	total: 333ms	remaining: 150ms
69:	learn: 17.8003911	total: 337ms	remaining: 144ms
70:	learn: 17.7385366	total: 341ms	remaining: 139ms
71:	learn: 17.6106998	total: 345ms	remaining: 134ms
72:	learn: 17.4816270	total: 349ms	remaining: 129ms
73:	learn: 17.4025554	total: 353ms	remaining: 124ms
74:	learn: 17.2902108	total: 358ms	remaining: 119ms
75:	learn: 17.2158048	total: 363ms	remaining: 115ms
76:	learn: 17.1261053	total: 367ms	remaining: 110ms
77:	learn: 17.0308917	total: 372ms	remaining: 105ms
78:	learn: 16.9546705	total: 376ms	remaining: 100ms
79:	learn: 16.8319165	total: 381ms	remaining: 95.2ms
80:	learn: 16.7687017	total: 385ms	remaining: 90.3ms
81:	learn: 16.6972326	total: 393ms	remaining: 86.2ms
82:	learn: 16.6124580	total: 400ms	remaining: 81.9ms
83:	learn: 16.4999052	total: 407ms	remaining: 77.6ms
84:	learn: 16.4302484	total: 415ms	remaining: 73.2ms
85:	learn: 16.3201363	total: 420ms	remaining: 68.3ms
86:	learn: 16.2534314	total: 425ms	remaining: 63.5ms
87:	learn: 16.1720485	total: 430ms	remaining: 58.7ms
88:	learn: 16.0625751	total: 435ms	remaining: 53.8ms
89:	learn: 15.9135088	total: 441ms	remaining: 48.9ms
90:	learn: 15.8658863	total: 446ms	remaining: 44.1ms
91:	learn: 15.8066805	total: 451ms	remaining: 39.2ms
92:	learn: 15.7412103	total: 456ms	remaining: 34.3ms
93:	learn: 15.6542776	total: 461ms	remaining: 29.4ms
94:	learn: 15.5760334	total: 466ms	remaining: 24.5ms
95:	learn: 15.5434131	total: 471ms	remaining: 19.6ms
96:	learn: 15.4709561	total: 477ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 482ms	remaining: 9.83ms
98:	learn: 15.3752761	total: 486ms	remaining: 4.91ms
99:	learn: 15.3106595	total: 491ms	remaining: 0us
0:	learn: 46.7142257	total: 4.58ms	remaining: 454ms
1:	learn: 45.7634153	total: 8.81ms	remaining: 432ms
2:	learn: 45.0054253	total: 13.1ms	remaining: 425ms
3:	learn: 44.2120432	total: 17.3ms	remaining: 415ms
4:	learn: 43.3960472	total: 21.1ms	remaining: 402ms
5:	learn: 42.8588120	total: 25.6ms	remaining: 401ms
6:	learn: 41.9533701	total: 30.2ms	remaining: 402ms
7:	learn: 41.2745030	total: 34.7ms	remaining: 399ms
8:	learn: 40.6797495	total: 39.3ms	remaining: 398ms
9:	learn: 39.9899571	total: 44.2ms	remaining: 398ms
10:	learn: 39.4682100	total: 48.8ms	remaining: 395ms
11:	learn: 39.0305595	total: 53.9ms	remaining: 395ms
12:	learn: 38.4200417	total: 58.9ms	remaining: 394ms
13:	learn: 37.8425194	total: 66.6ms	remaining: 409ms
14:	learn: 37.4203127	total: 74.4ms	remaining: 421ms
15:	learn: 36.9917688	total: 85.4ms	remaining: 448ms
16:	learn: 36.5544138	total: 94.4ms	remaining: 461ms
17:	learn: 36.0727019	total: 102ms	remaining: 465ms
18:	learn: 35.4835715	total: 108ms	remaining: 462ms
19:	learn: 34.9865654	total: 115ms	remaining: 460ms
20:	learn: 34.6063373	total: 121ms	remaining: 455ms
21:	learn: 34.0997289	total: 127ms	remaining: 449ms
22:	learn: 33.7313171	total: 133ms	remaining: 446ms
23:	learn: 33.3582000	total: 138ms	remaining: 437ms
24:	learn: 32.9432456	total: 144ms	remaining: 431ms
25:	learn: 32.5220888	total: 149ms	remaining: 423ms
26:	learn: 32.2172292	total: 154ms	remaining: 416ms
27:	learn: 31.8972904	total: 160ms	remaining: 411ms
28:	learn: 31.6405350	total: 165ms	remaining: 404ms
29:	learn: 31.4167702	total: 169ms	remaining: 395ms
30:	learn: 30.8541961	total: 171ms	remaining: 380ms
31:	learn: 30.5572111	total: 175ms	remaining: 373ms
32:	learn: 30.1700399	total: 180ms	remaining: 365ms
33:	learn: 29.8537271	total: 184ms	remaining: 357ms
34:	learn: 29.6192540	total: 189ms	remaining: 350ms
35:	learn: 29.3276362	total: 193ms	remaining: 343ms
36:	learn: 28.9985179	total: 198ms	remaining: 336ms
37:	learn: 28.7046880	total: 202ms	remaining: 330ms
38:	learn: 28.4412677	total: 206ms	remaining: 323ms
39:	learn: 28.1277292	total: 211ms	remaining: 316ms
40:	learn: 27.9000750	total: 215ms	remaining: 310ms
41:	learn: 27.5433162	total: 220ms	remaining: 303ms
42:	learn: 27.2493285	total: 224ms	remaining: 297ms
43:	learn: 26.9576632	total: 226ms	remaining: 287ms
44:	learn: 26.6177110	total: 230ms	remaining: 282ms
45:	learn: 26.2812456	total: 235ms	remaining: 276ms
46:	learn: 26.0803859	total: 240ms	remaining: 270ms
47:	learn: 25.9543581	total: 244ms	remaining: 264ms
48:	learn: 25.7951582	total: 249ms	remaining: 259ms
49:	learn: 25.6548184	total: 253ms	remaining: 253ms
50:	learn: 25.4010843	total: 258ms	remaining: 248ms
51:	learn: 24.9773937	total: 266ms	remaining: 246ms
52:	learn: 24.8026156	total: 274ms	remaining: 243ms
53:	learn: 24.5568053	total: 282ms	remaining: 240ms
54:	learn: 24.2281839	total: 288ms	remaining: 236ms
55:	learn: 23.9202795	total: 294ms	remaining: 231ms
56:	learn: 23.7625591	total: 299ms	remaining: 226ms
57:	learn: 23.5429721	total: 304ms	remaining: 220ms
58:	learn: 23.3175893	total: 310ms	remaining: 215ms
59:	learn: 23.2035130	total: 315ms	remaining: 210ms
60:	learn: 23.0232450	total: 320ms	remaining: 205ms
61:	learn: 22.8384958	total: 325ms	remaining: 199ms
62:	learn: 22.6499902	total: 330ms	remaining: 194ms
63:	learn: 22.4577426	total: 335ms	remaining: 189ms
64:	learn: 22.3333158	total: 341ms	remaining: 183ms
65:	learn: 22.2064131	total: 346ms	remaining: 178ms
66:	learn: 22.1434971	total: 350ms	remaining: 173ms
67:	learn: 21.9596519	total: 356ms	remaining: 167ms
68:	learn: 21.8475576	total: 361ms	remaining: 162ms
69:	learn: 21.6954745	total: 366ms	remaining: 157ms
70:	learn: 21.5635976	total: 370ms	remaining: 151ms
71:	learn: 21.4588506	total: 374ms	remaining: 146ms
72:	learn: 21.3527268	total: 378ms	remaining: 140ms
73:	learn: 21.2661288	total: 382ms	remaining: 134ms
74:	learn: 21.1817333	total: 386ms	remaining: 129ms
75:	learn: 21.0527553	total: 391ms	remaining: 123ms
76:	learn: 20.9229021	total: 395ms	remaining: 118ms
77:	learn: 20.7563946	total: 399ms	remaining: 112ms
78:	learn: 20.6569831	total: 402ms	remaining: 107ms
79:	learn: 20.4982663	total: 407ms	remaining: 102ms
80:	learn: 20.3185460	total: 411ms	remaining: 96.4ms
81:	learn: 20.2096241	total: 415ms	remaining: 91.1ms
82:	learn: 20.1274891	total: 419ms	remaining: 85.7ms
83:	learn: 20.0740139	total: 423ms	remaining: 80.6ms
84:	learn: 19.9630699	total: 427ms	remaining: 75.4ms
85:	learn: 19.8753899	total: 432ms	remaining: 70.3ms
86:	learn: 19.6563612	total: 437ms	remaining: 65.3ms
87:	learn: 19.4680232	total: 441ms	remaining: 60.2ms
88:	learn: 19.3503431	total: 446ms	remaining: 55.1ms
89:	learn: 19.2221379	total: 450ms	remaining: 50ms
90:	learn: 19.0732542	total: 455ms	remaining: 45ms
91:	learn: 18.9825190	total: 462ms	remaining: 40.2ms
92:	learn: 18.8839009	total: 469ms	remaining: 35.3ms
93:	learn: 18.8012219	total: 479ms	remaining: 30.5ms
94:	learn: 18.7172713	total: 484ms	remaining: 25.5ms
95:	learn: 18.6201170	total: 490ms	remaining: 20.4ms
96:	learn: 18.5318611	total: 496ms	remaining: 15.3ms
97:	learn: 18.3833356	total: 501ms	remaining: 10.2ms
98:	learn: 18.3289700	total: 506ms	remaining: 5.11ms
99:	learn: 18.2227333	total: 511ms	remaining: 0us
0:	learn: 46.3764524	total: 4.63ms	remaining: 458ms
1:	learn: 45.5561269	total: 9.18ms	remaining: 450ms
2:	learn: 44.8811245	total: 13.5ms	remaining: 436ms
3:	learn: 44.0788617	total: 17.6ms	remaining: 423ms
4:	learn: 43.3619790	total: 21.5ms	remaining: 409ms
5:	learn: 42.6912112	total: 25.9ms	remaining: 405ms
6:	learn: 42.2292118	total: 29.9ms	remaining: 397ms
7:	learn: 41.7725191	total: 33.8ms	remaining: 388ms
8:	learn: 41.1676614	total: 37.6ms	remaining: 380ms
9:	learn: 40.5771076	total: 42ms	remaining: 378ms
10:	learn: 39.8343757	total: 45.8ms	remaining: 371ms
11:	learn: 39.3761142	total: 50ms	remaining: 367ms
12:	learn: 38.5254692	total: 53.8ms	remaining: 360ms
13:	learn: 37.9629555	total: 57.8ms	remaining: 355ms
14:	learn: 37.4418438	total: 61.7ms	remaining: 350ms
15:	learn: 37.0507283	total: 66.5ms	remaining: 349ms
16:	learn: 36.6264217	total: 71ms	remaining: 346ms
17:	learn: 36.1114940	total: 75.9ms	remaining: 346ms
18:	learn: 35.7193862	total: 80.6ms	remaining: 344ms
19:	learn: 35.3301177	total: 85.5ms	remaining: 342ms
20:	learn: 35.0598280	total: 90ms	remaining: 339ms
21:	learn: 34.5469736	total: 94.6ms	remaining: 336ms
22:	learn: 34.2064215	total: 99.7ms	remaining: 334ms
23:	learn: 33.7280710	total: 108ms	remaining: 341ms
24:	learn: 33.3282940	total: 116ms	remaining: 347ms
25:	learn: 32.8478961	total: 123ms	remaining: 351ms
26:	learn: 32.5722164	total: 132ms	remaining: 356ms
27:	learn: 32.2457019	total: 137ms	remaining: 352ms
28:	learn: 31.9230495	total: 142ms	remaining: 349ms
29:	learn: 31.4311611	total: 148ms	remaining: 344ms
30:	learn: 30.9179052	total: 153ms	remaining: 339ms
31:	learn: 30.6201141	total: 158ms	remaining: 335ms
32:	learn: 30.3421106	total: 163ms	remaining: 331ms
33:	learn: 29.9885373	total: 168ms	remaining: 326ms
34:	learn: 29.7462780	total: 173ms	remaining: 321ms
35:	learn: 29.3607153	total: 178ms	remaining: 316ms
36:	learn: 29.1793078	total: 184ms	remaining: 312ms
37:	learn: 28.9276538	total: 188ms	remaining: 307ms
38:	learn: 28.6903934	total: 193ms	remaining: 302ms
39:	learn: 28.2095033	total: 199ms	remaining: 298ms
40:	learn: 27.7990608	total: 204ms	remaining: 293ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 211ms	remaining: 280ms
43:	learn: 26.9741707	total: 216ms	remaining: 274ms
44:	learn: 26.6606899	total: 220ms	remaining: 268ms
45:	learn: 26.4015833	total: 223ms	remaining: 262ms
46:	learn: 26.1828993	total: 227ms	remaining: 256ms
47:	learn: 26.0233709	total: 230ms	remaining: 249ms
48:	learn: 25.9300399	total: 234ms	remaining: 243ms
49:	learn: 25.5861489	total: 238ms	remaining: 238ms
50:	learn: 25.4322012	total: 242ms	remaining: 233ms
51:	learn: 25.1595644	total: 247ms	remaining: 228ms
52:	learn: 24.9955303	total: 251ms	remaining: 222ms
53:	learn: 24.7273966	total: 255ms	remaining: 217ms
54:	learn: 24.5747978	total: 258ms	remaining: 211ms
55:	learn: 24.3807977	total: 263ms	remaining: 206ms
56:	learn: 24.1689569	total: 267ms	remaining: 202ms
57:	learn: 23.9898221	total: 272ms	remaining: 197ms
58:	learn: 23.7566414	total: 276ms	remaining: 192ms
59:	learn: 23.6641165	total: 280ms	remaining: 187ms
60:	learn: 23.5658066	total: 293ms	remaining: 187ms
61:	learn: 23.4338851	total: 300ms	remaining: 184ms
62:	learn: 23.2408837	total: 307ms	remaining: 180ms
63:	learn: 23.0642038	total: 314ms	remaining: 177ms
64:	learn: 22.9032045	total: 321ms	remaining: 173ms
65:	learn: 22.7736138	total: 329ms	remaining: 169ms
66:	learn: 22.6836443	total: 334ms	remaining: 164ms
67:	learn: 22.5983654	total: 339ms	remaining: 159ms
68:	learn: 22.4419813	total: 358ms	remaining: 161ms
69:	learn: 22.2863339	total: 363ms	remaining: 156ms
70:	learn: 22.1792943	total: 368ms	remaining: 150ms
71:	learn: 22.1130574	total: 374ms	remaining: 145ms
72:	learn: 21.9858161	total: 379ms	remaining: 140ms
73:	learn: 21.8577784	total: 383ms	remaining: 135ms
74:	learn: 21.7845222	total: 389ms	remaining: 130ms
75:	learn: 21.6831390	total: 394ms	remaining: 124ms
76:	learn: 21.6292521	total: 399ms	remaining: 119ms
77:	learn: 21.5789330	total: 403ms	remaining: 114ms
78:	learn: 21.5420942	total: 407ms	remaining: 108ms
79:	learn: 21.4280939	total: 411ms	remaining: 103ms
80:	learn: 21.3641165	total: 415ms	remaining: 97.3ms
81:	learn: 21.2734814	total: 419ms	remaining: 92ms
82:	learn: 21.2220323	total: 423ms	remaining: 86.6ms
83:	learn: 21.0625792	total: 427ms	remaining: 81.3ms
84:	learn: 20.9488320	total: 431ms	remaining: 76ms
85:	learn: 20.8504255	total: 435ms	remaining: 70.7ms
86:	learn: 20.7848510	total: 438ms	remaining: 65.5ms
87:	learn: 20.7247442	total: 443ms	remaining: 60.4ms
88:	learn: 20.5698590	total: 447ms	remaining: 55.3ms
89:	learn: 20.4067620	total: 452ms	remaining: 50.2ms
90:	learn: 20.3062482	total: 456ms	remaining: 45.1ms
91:	learn: 20.2029696	total: 460ms	remaining: 40ms
92:	learn: 20.1384849	total: 465ms	remaining: 35ms
93:	learn: 20.0260709	total: 469ms	remaining: 29.9ms
94:	learn: 19.9122100	total: 474ms	remaining: 24.9ms
95:	learn: 19.8648487	total: 479ms	remaining: 19.9ms
96:	learn: 19.8207072	total: 483ms	remaining: 14.9ms
97:	learn: 19.7261189	total: 488ms	remaining: 9.96ms
98:	learn: 19.7042438	total: 493ms	remaining: 4.97ms
99:	learn: 19.6546645	total: 498ms	remaining: 0us
0:	learn: 47.0239288	total: 6.19ms	remaining: 612ms
1:	learn: 46.2253829	total: 11.7ms	remaining: 572ms
2:	learn: 45.5580301	total: 16.7ms	remaining: 540ms
3:	learn: 44.7273237	total: 22.4ms	remaining: 537ms
4:	learn: 43.8867421	total: 27.3ms	remaining: 519ms
5:	learn: 43.3615911	total: 32.5ms	remaining: 510ms
6:	learn: 42.8548390	total: 38ms	remaining: 505ms
7:	learn: 42.1606758	total: 43.5ms	remaining: 500ms
8:	learn: 41.6625870	total: 47.9ms	remaining: 484ms
9:	learn: 40.9497092	total: 52.1ms	remaining: 468ms
10:	learn: 40.1886318	total: 56.2ms	remaining: 455ms
11:	learn: 39.7456423	total: 60.7ms	remaining: 445ms
12:	learn: 39.1171373	total: 64.8ms	remaining: 434ms
13:	learn: 38.5451069	total: 68.8ms	remaining: 423ms
14:	learn: 38.0155834	total: 72.9ms	remaining: 413ms
15:	learn: 37.5631354	total: 77.2ms	remaining: 405ms
16:	learn: 37.1030023	total: 81.4ms	remaining: 397ms
17:	learn: 36.4563029	total: 85.5ms	remaining: 390ms
18:	learn: 36.0160976	total: 89.4ms	remaining: 381ms
19:	learn: 35.5079827	total: 93.7ms	remaining: 375ms
20:	learn: 35.2111885	total: 98.1ms	remaining: 369ms
21:	learn: 34.9397465	total: 102ms	remaining: 363ms
22:	learn: 34.5270048	total: 107ms	remaining: 357ms
23:	learn: 34.0169260	total: 111ms	remaining: 353ms
24:	learn: 33.7454892	total: 117ms	remaining: 350ms
25:	learn: 33.2648157	total: 121ms	remaining: 345ms
26:	learn: 32.8899427	total: 126ms	remaining: 341ms
27:	learn: 32.6185050	total: 131ms	remaining: 336ms
28:	learn: 32.3528531	total: 136ms	remaining: 333ms
29:	learn: 32.0859923	total: 141ms	remaining: 328ms
30:	learn: 31.6511144	total: 146ms	remaining: 325ms
31:	learn: 31.2571765	total: 156ms	remaining: 332ms
32:	learn: 30.9770049	total: 166ms	remaining: 337ms
33:	learn: 30.6084872	total: 173ms	remaining: 335ms
34:	learn: 30.3448632	total: 181ms	remaining: 335ms
35:	learn: 30.0360942	total: 187ms	remaining: 332ms
36:	learn: 29.6648968	total: 192ms	remaining: 327ms
37:	learn: 29.3165114	total: 197ms	remaining: 322ms
38:	learn: 29.0829198	total: 203ms	remaining: 317ms
39:	learn: 28.7752064	total: 208ms	remaining: 312ms
40:	learn: 28.3622191	total: 213ms	remaining: 306ms
41:	learn: 28.1346631	total: 219ms	remaining: 302ms
42:	learn: 27.9585719	total: 224ms	remaining: 297ms
43:	learn: 27.6565566	total: 229ms	remaining: 292ms
44:	learn: 27.3616172	total: 234ms	remaining: 286ms
45:	learn: 27.0658637	total: 241ms	remaining: 282ms
46:	learn: 26.8660382	total: 246ms	remaining: 278ms
47:	learn: 26.6536078	total: 251ms	remaining: 271ms
48:	learn: 26.3524440	total: 255ms	remaining: 265ms
49:	learn: 26.1595277	total: 259ms	remaining: 259ms
50:	learn: 25.9273523	total: 263ms	remaining: 252ms
51:	learn: 25.7195580	total: 267ms	remaining: 246ms
52:	learn: 25.5730225	total: 271ms	remaining: 240ms
53:	learn: 25.3455276	total: 275ms	remaining: 234ms
54:	learn: 25.2289675	total: 279ms	remaining: 228ms
55:	learn: 25.0133024	total: 283ms	remaining: 222ms
56:	learn: 24.8406714	total: 286ms	remaining: 216ms
57:	learn: 24.6367857	total: 290ms	remaining: 210ms
58:	learn: 24.5338177	total: 295ms	remaining: 205ms
59:	learn: 24.3799964	total: 299ms	remaining: 199ms
60:	learn: 24.1447492	total: 302ms	remaining: 193ms
61:	learn: 23.9880495	total: 306ms	remaining: 188ms
62:	learn: 23.7140630	total: 311ms	remaining: 183ms
63:	learn: 23.5003791	total: 316ms	remaining: 178ms
64:	learn: 23.3207645	total: 320ms	remaining: 172ms
65:	learn: 23.1958356	total: 325ms	remaining: 167ms
66:	learn: 23.0471302	total: 330ms	remaining: 162ms
67:	learn: 22.8977183	total: 334ms	remaining: 157ms
68:	learn: 22.7187400	total: 339ms	remaining: 152ms
69:	learn: 22.6523405	total: 344ms	remaining: 147ms
70:	learn: 22.4767453	total: 352ms	remaining: 144ms
71:	learn: 22.3243677	total: 360ms	remaining: 140ms
72:	learn: 22.2133096	total: 368ms	remaining: 136ms
73:	learn: 22.1151713	total: 375ms	remaining: 132ms
74:	learn: 22.0296666	total: 381ms	remaining: 127ms
75:	learn: 21.9195980	total: 387ms	remaining: 122ms
76:	learn: 21.8401730	total: 392ms	remaining: 117ms
77:	learn: 21.8079797	total: 397ms	remaining: 112ms
78:	learn: 21.7274109	total: 402ms	remaining: 107ms
79:	learn: 21.6663032	total: 408ms	remaining: 102ms
80:	learn: 21.5633117	total: 413ms	remaining: 96.9ms
81:	learn: 21.4542467	total: 418ms	remaining: 91.7ms
82:	learn: 21.3177957	total: 423ms	remaining: 86.6ms
83:	learn: 21.1289167	total: 428ms	remaining: 81.6ms
84:	learn: 21.0297368	total: 434ms	remaining: 76.5ms
85:	learn: 20.9089564	total: 439ms	remaining: 71.5ms
86:	learn: 20.7653988	total: 445ms	remaining: 66.5ms
87:	learn: 20.6521894	total: 450ms	remaining: 61.3ms
88:	learn: 20.5193021	total: 454ms	remaining: 56.1ms
89:	learn: 20.4361620	total: 458ms	remaining: 50.9ms
90:	learn: 20.3546710	total: 463ms	remaining: 45.8ms
91:	learn: 20.2513296	total: 467ms	remaining: 40.6ms
92:	learn: 20.1605550	total: 471ms	remaining: 35.5ms
93:	learn: 20.0515942	total: 476ms	remaining: 30.4ms
94:	learn: 19.9800764	total: 480ms	remaining: 25.3ms
95:	learn: 19.8996532	total: 485ms	remaining: 20.2ms
96:	learn: 19.8450910	total: 489ms	remaining: 15.1ms
97:	learn: 19.7887346	total: 493ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 497ms	remaining: 5.02ms
99:	learn: 19.6328825	total: 502ms	remaining: 0us
0:	learn: 27.5585353	total: 4.95ms	remaining: 490ms
1:	learn: 27.1656995	total: 11.7ms	remaining: 572ms
2:	learn: 26.8590175	total: 18.7ms	remaining: 606ms
3:	learn: 26.5818406	total: 27.3ms	remaining: 656ms
4:	learn: 26.1148663	total: 33.7ms	remaining: 640ms
5:	learn: 25.7690484	total: 41.3ms	remaining: 647ms
6:	learn: 25.3489206	total: 46.4ms	remaining: 617ms
7:	learn: 24.9542406	total: 51.6ms	remaining: 593ms
8:	learn: 24.6777517	total: 56.8ms	remaining: 574ms
9:	learn: 24.3242344	total: 62ms	remaining: 558ms
10:	learn: 24.0383073	total: 67.3ms	remaining: 544ms
11:	learn: 23.7383420	total: 72.5ms	remaining: 532ms
12:	learn: 23.3461670	total: 77.7ms	remaining: 520ms
13:	learn: 23.0928636	total: 83ms	remaining: 510ms
14:	learn: 22.8770414	total: 87.8ms	remaining: 498ms
15:	learn: 22.6323214	total: 93ms	remaining: 488ms
16:	learn: 22.3597072	total: 97.9ms	remaining: 478ms
17:	learn: 22.1079813	total: 103ms	remaining: 471ms
18:	learn: 21.8421199	total: 109ms	remaining: 465ms
19:	learn: 21.6576508	total: 113ms	remaining: 454ms
20:	learn: 21.4301268	total: 118ms	remaining: 442ms
21:	learn: 21.2287388	total: 121ms	remaining: 430ms
22:	learn: 21.0553872	total: 125ms	remaining: 420ms
23:	learn: 20.8977091	total: 130ms	remaining: 411ms
24:	learn: 20.6619051	total: 134ms	remaining: 401ms
25:	learn: 20.5040955	total: 138ms	remaining: 392ms
26:	learn: 20.3181195	total: 141ms	remaining: 383ms
27:	learn: 20.0869436	total: 146ms	remaining: 376ms
28:	learn: 19.9375985	total: 150ms	remaining: 367ms
29:	learn: 19.8247516	total: 154ms	remaining: 359ms
30:	learn: 19.6261697	total: 158ms	remaining: 351ms
31:	learn: 19.4547236	total: 162ms	remaining: 344ms
32:	learn: 19.3157092	total: 166ms	remaining: 337ms
33:	learn: 19.1561419	total: 170ms	remaining: 330ms
34:	learn: 19.0453620	total: 174ms	remaining: 322ms
35:	learn: 18.8738574	total: 178ms	remaining: 316ms
36:	learn: 18.7072907	total: 182ms	remaining: 310ms
37:	learn: 18.5877943	total: 186ms	remaining: 303ms
38:	learn: 18.4436380	total: 190ms	remaining: 297ms
39:	learn: 18.3463356	total: 194ms	remaining: 291ms
40:	learn: 18.2008059	total: 198ms	remaining: 285ms
41:	learn: 18.0582079	total: 203ms	remaining: 280ms
42:	learn: 17.8891982	total: 207ms	remaining: 275ms
43:	learn: 17.7332246	total: 211ms	remaining: 269ms
44:	learn: 17.6206421	total: 215ms	remaining: 263ms
45:	learn: 17.4982800	total: 220ms	remaining: 258ms
46:	learn: 17.3970150	total: 224ms	remaining: 253ms
47:	learn: 17.3058203	total: 229ms	remaining: 248ms
48:	learn: 17.1789256	total: 233ms	remaining: 243ms
49:	learn: 17.0916229	total: 238ms	remaining: 238ms
50:	learn: 16.9859820	total: 243ms	remaining: 233ms
51:	learn: 16.8995582	total: 247ms	remaining: 228ms
52:	learn: 16.8137014	total: 252ms	remaining: 223ms
53:	learn: 16.7021451	total: 259ms	remaining: 221ms
54:	learn: 16.5895582	total: 270ms	remaining: 221ms
55:	learn: 16.5015639	total: 278ms	remaining: 219ms
56:	learn: 16.4356637	total: 286ms	remaining: 215ms
57:	learn: 16.3514525	total: 291ms	remaining: 211ms
58:	learn: 16.2401369	total: 296ms	remaining: 206ms
59:	learn: 16.1293223	total: 301ms	remaining: 201ms
60:	learn: 16.0271167	total: 306ms	remaining: 196ms
61:	learn: 15.9126257	total: 312ms	remaining: 191ms
62:	learn: 15.8391096	total: 317ms	remaining: 186ms
63:	learn: 15.7441773	total: 322ms	remaining: 181ms
64:	learn: 15.6885195	total: 327ms	remaining: 176ms
65:	learn: 15.6052039	total: 332ms	remaining: 171ms
66:	learn: 15.5074202	total: 337ms	remaining: 166ms
67:	learn: 15.4054338	total: 343ms	remaining: 161ms
68:	learn: 15.2885714	total: 347ms	remaining: 156ms
69:	learn: 15.2157472	total: 353ms	remaining: 151ms
70:	learn: 15.1031554	total: 358ms	remaining: 146ms
71:	learn: 15.0237470	total: 362ms	remaining: 141ms
72:	learn: 14.9756825	total: 367ms	remaining: 136ms
73:	learn: 14.8840596	total: 371ms	remaining: 130ms
74:	learn: 14.8077061	total: 376ms	remaining: 125ms
75:	learn: 14.7444437	total: 380ms	remaining: 120ms
76:	learn: 14.6751720	total: 384ms	remaining: 115ms
77:	learn: 14.5830333	total: 389ms	remaining: 110ms
78:	learn: 14.5241206	total: 394ms	remaining: 105ms
79:	learn: 14.4892731	total: 398ms	remaining: 99.6ms
80:	learn: 14.4256605	total: 403ms	remaining: 94.6ms
81:	learn: 14.3666860	total: 408ms	remaining: 89.5ms
82:	learn: 14.2938372	total: 413ms	remaining: 84.5ms
83:	learn: 14.2161532	total: 418ms	remaining: 79.6ms
84:	learn: 14.1582910	total: 422ms	remaining: 74.5ms
85:	learn: 14.1029153	total: 426ms	remaining: 69.4ms
86:	learn: 14.0475835	total: 431ms	remaining: 64.4ms
87:	learn: 13.9892661	total: 436ms	remaining: 59.4ms
88:	learn: 13.9481628	total: 440ms	remaining: 54.4ms
89:	learn: 13.8483991	total: 445ms	remaining: 49.4ms
90:	learn: 13.7775614	total: 450ms	remaining: 44.5ms
91:	learn: 13.7304585	total: 454ms	remaining: 39.5ms
92:	learn: 13.6783381	total: 459ms	remaining: 34.6ms
93:	learn: 13.6356964	total: 464ms	remaining: 29.6ms
94:	learn: 13.5924371	total: 471ms	remaining: 24.8ms
95:	learn: 13.5400746	total: 479ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 487ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 496ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 504ms	remaining: 5.09ms
99:	learn: 13.3082371	total: 509ms	remaining: 0us
0:	learn: 43.0395283	total: 5.97ms	remaining: 592ms
1:	learn: 42.1130223	total: 10.5ms	remaining: 514ms
2:	learn: 41.1753409	total: 14.5ms	remaining: 468ms
3:	learn: 40.3637444	total: 18.4ms	remaining: 442ms
4:	learn: 39.6508088	total: 22.6ms	remaining: 429ms
5:	learn: 38.7217934	total: 26.8ms	remaining: 420ms
6:	learn: 37.8538055	total: 30.7ms	remaining: 408ms
7:	learn: 36.9793574	total: 35ms	remaining: 402ms
8:	learn: 36.3076984	total: 39.3ms	remaining: 398ms
9:	learn: 35.6673160	total: 43.7ms	remaining: 393ms
10:	learn: 34.8889800	total: 47.7ms	remaining: 386ms
11:	learn: 34.1675517	total: 51.4ms	remaining: 377ms
12:	learn: 33.6779564	total: 55.6ms	remaining: 372ms
13:	learn: 33.0710039	total: 59.5ms	remaining: 366ms
14:	learn: 32.4966674	total: 63.7ms	remaining: 361ms
15:	learn: 31.9492856	total: 67.6ms	remaining: 355ms
16:	learn: 31.5108129	total: 71.8ms	remaining: 351ms
17:	learn: 30.9804023	total: 76.2ms	remaining: 347ms
18:	learn: 30.4169089	total: 80.7ms	remaining: 344ms
19:	learn: 29.8930375	total: 84.9ms	remaining: 340ms
20:	learn: 29.3974421	total: 89.5ms	remaining: 337ms
21:	learn: 28.8792307	total: 94.1ms	remaining: 333ms
22:	learn: 28.3894474	total: 98.7ms	remaining: 330ms
23:	learn: 27.9921276	total: 103ms	remaining: 327ms
24:	learn: 27.6158887	total: 108ms	remaining: 323ms
25:	learn: 27.2866950	total: 112ms	remaining: 319ms
26:	learn: 26.8770708	total: 119ms	remaining: 323ms
27:	learn: 26.6233005	total: 127ms	remaining: 325ms
28:	learn: 26.2921934	total: 136ms	remaining: 333ms
29:	learn: 25.9156920	total: 142ms	remaining: 332ms
30:	learn: 25.5311106	total: 146ms	remaining: 325ms
31:	learn: 25.2178997	total: 152ms	remaining: 322ms
32:	learn: 24.8572196	total: 157ms	remaining: 319ms
33:	learn: 24.5849710	total: 162ms	remaining: 315ms
34:	learn: 24.2209190	total: 168ms	remaining: 312ms
35:	learn: 23.8708250	total: 173ms	remaining: 307ms
36:	learn: 23.5325279	total: 178ms	remaining: 304ms
37:	learn: 23.2116148	total: 184ms	remaining: 301ms
38:	learn: 22.9696787	total: 190ms	remaining: 296ms
39:	learn: 22.7936783	total: 194ms	remaining: 292ms
40:	learn: 22.6228847	total: 199ms	remaining: 287ms
41:	learn: 22.3691527	total: 204ms	remaining: 282ms
42:	learn: 22.1002173	total: 209ms	remaining: 277ms
43:	learn: 21.9157268	total: 214ms	remaining: 272ms
44:	learn: 21.7229102	total: 219ms	remaining: 268ms
45:	learn: 21.4642005	total: 223ms	remaining: 262ms
46:	learn: 21.3029442	total: 227ms	remaining: 257ms
47:	learn: 21.1469792	total: 231ms	remaining: 251ms
48:	learn: 20.9458235	total: 236ms	remaining: 246ms
49:	learn: 20.7335242	total: 240ms	remaining: 240ms
50:	learn: 20.5440269	total: 244ms	remaining: 234ms
51:	learn: 20.3661449	total: 248ms	remaining: 229ms
52:	learn: 20.2158134	total: 252ms	remaining: 224ms
53:	learn: 19.9934873	total: 256ms	remaining: 218ms
54:	learn: 19.7879739	total: 260ms	remaining: 213ms
55:	learn: 19.6630460	total: 264ms	remaining: 208ms
56:	learn: 19.5152729	total: 268ms	remaining: 203ms
57:	learn: 19.3581128	total: 272ms	remaining: 197ms
58:	learn: 19.2209303	total: 277ms	remaining: 192ms
59:	learn: 19.0965248	total: 281ms	remaining: 187ms
60:	learn: 19.0035954	total: 286ms	remaining: 183ms
61:	learn: 18.8554149	total: 291ms	remaining: 178ms
62:	learn: 18.7095427	total: 295ms	remaining: 173ms
63:	learn: 18.5751494	total: 299ms	remaining: 168ms
64:	learn: 18.4678251	total: 303ms	remaining: 163ms
65:	learn: 18.3500325	total: 308ms	remaining: 159ms
66:	learn: 18.2088983	total: 313ms	remaining: 154ms
67:	learn: 18.0737705	total: 321ms	remaining: 151ms
68:	learn: 17.9325058	total: 328ms	remaining: 147ms
69:	learn: 17.8003911	total: 338ms	remaining: 145ms
70:	learn: 17.7385366	total: 343ms	remaining: 140ms
71:	learn: 17.6106998	total: 350ms	remaining: 136ms
72:	learn: 17.4816270	total: 355ms	remaining: 131ms
73:	learn: 17.4025554	total: 360ms	remaining: 127ms
74:	learn: 17.2902108	total: 365ms	remaining: 122ms
75:	learn: 17.2158048	total: 370ms	remaining: 117ms
76:	learn: 17.1261053	total: 375ms	remaining: 112ms
77:	learn: 17.0308917	total: 380ms	remaining: 107ms
78:	learn: 16.9546705	total: 386ms	remaining: 103ms
79:	learn: 16.8319165	total: 391ms	remaining: 97.8ms
80:	learn: 16.7687017	total: 397ms	remaining: 93.1ms
81:	learn: 16.6972326	total: 401ms	remaining: 88.1ms
82:	learn: 16.6124580	total: 407ms	remaining: 83.3ms
83:	learn: 16.4999052	total: 412ms	remaining: 78.5ms
84:	learn: 16.4302484	total: 417ms	remaining: 73.6ms
85:	learn: 16.3201363	total: 421ms	remaining: 68.5ms
86:	learn: 16.2534314	total: 425ms	remaining: 63.5ms
87:	learn: 16.1720485	total: 429ms	remaining: 58.5ms
88:	learn: 16.0625751	total: 433ms	remaining: 53.5ms
89:	learn: 15.9135088	total: 437ms	remaining: 48.5ms
90:	learn: 15.8658863	total: 441ms	remaining: 43.6ms
91:	learn: 15.8066805	total: 445ms	remaining: 38.7ms
92:	learn: 15.7412103	total: 450ms	remaining: 33.8ms
93:	learn: 15.6542776	total: 454ms	remaining: 29ms
94:	learn: 15.5760334	total: 458ms	remaining: 24.1ms
95:	learn: 15.5434131	total: 462ms	remaining: 19.3ms
96:	learn: 15.4709561	total: 466ms	remaining: 14.4ms
97:	learn: 15.4449618	total: 470ms	remaining: 9.59ms
98:	learn: 15.3752761	total: 474ms	remaining: 4.79ms
99:	learn: 15.3106595	total: 478ms	remaining: 0us
0:	learn: 46.7142257	total: 7.75ms	remaining: 767ms
1:	learn: 45.7634153	total: 16.9ms	remaining: 827ms
2:	learn: 45.0054253	total: 22.7ms	remaining: 736ms
3:	learn: 44.2120432	total: 29ms	remaining: 695ms
4:	learn: 43.3960472	total: 34.1ms	remaining: 648ms
5:	learn: 42.8588120	total: 39.5ms	remaining: 618ms
6:	learn: 41.9533701	total: 56.9ms	remaining: 756ms
7:	learn: 41.2745030	total: 62.2ms	remaining: 715ms
8:	learn: 40.6797495	total: 67.5ms	remaining: 683ms
9:	learn: 39.9899571	total: 73ms	remaining: 657ms
10:	learn: 39.4682100	total: 78.2ms	remaining: 633ms
11:	learn: 39.0305595	total: 82.7ms	remaining: 606ms
12:	learn: 38.4200417	total: 87.9ms	remaining: 588ms
13:	learn: 37.8425194	total: 93.6ms	remaining: 575ms
14:	learn: 37.4203127	total: 97.8ms	remaining: 554ms
15:	learn: 36.9917688	total: 102ms	remaining: 535ms
16:	learn: 36.5544138	total: 106ms	remaining: 519ms
17:	learn: 36.0727019	total: 110ms	remaining: 503ms
18:	learn: 35.4835715	total: 114ms	remaining: 488ms
19:	learn: 34.9865654	total: 119ms	remaining: 474ms
20:	learn: 34.6063373	total: 123ms	remaining: 461ms
21:	learn: 34.0997289	total: 127ms	remaining: 450ms
22:	learn: 33.7313171	total: 131ms	remaining: 438ms
23:	learn: 33.3582000	total: 135ms	remaining: 427ms
24:	learn: 32.9432456	total: 139ms	remaining: 416ms
25:	learn: 32.5220888	total: 143ms	remaining: 407ms
26:	learn: 32.2172292	total: 147ms	remaining: 397ms
27:	learn: 31.8972904	total: 151ms	remaining: 388ms
28:	learn: 31.6405350	total: 155ms	remaining: 379ms
29:	learn: 31.4167702	total: 159ms	remaining: 371ms
30:	learn: 30.8541961	total: 161ms	remaining: 357ms
31:	learn: 30.5572111	total: 166ms	remaining: 352ms
32:	learn: 30.1700399	total: 170ms	remaining: 346ms
33:	learn: 29.8537271	total: 175ms	remaining: 340ms
34:	learn: 29.6192540	total: 180ms	remaining: 334ms
35:	learn: 29.3276362	total: 185ms	remaining: 328ms
36:	learn: 28.9985179	total: 189ms	remaining: 322ms
37:	learn: 28.7046880	total: 194ms	remaining: 316ms
38:	learn: 28.4412677	total: 200ms	remaining: 312ms
39:	learn: 28.1277292	total: 207ms	remaining: 311ms
40:	learn: 27.9000750	total: 215ms	remaining: 310ms
41:	learn: 27.5433162	total: 223ms	remaining: 307ms
42:	learn: 27.2493285	total: 231ms	remaining: 306ms
43:	learn: 26.9576632	total: 233ms	remaining: 296ms
44:	learn: 26.6177110	total: 238ms	remaining: 291ms
45:	learn: 26.2812456	total: 255ms	remaining: 299ms
46:	learn: 26.0803859	total: 260ms	remaining: 293ms
47:	learn: 25.9543581	total: 265ms	remaining: 287ms
48:	learn: 25.7951582	total: 270ms	remaining: 281ms
49:	learn: 25.6548184	total: 275ms	remaining: 275ms
50:	learn: 25.4010843	total: 280ms	remaining: 269ms
51:	learn: 24.9773937	total: 285ms	remaining: 263ms
52:	learn: 24.8026156	total: 291ms	remaining: 258ms
53:	learn: 24.5568053	total: 296ms	remaining: 253ms
54:	learn: 24.2281839	total: 302ms	remaining: 247ms
55:	learn: 23.9202795	total: 307ms	remaining: 241ms
56:	learn: 23.7625591	total: 312ms	remaining: 235ms
57:	learn: 23.5429721	total: 316ms	remaining: 229ms
58:	learn: 23.3175893	total: 321ms	remaining: 223ms
59:	learn: 23.2035130	total: 325ms	remaining: 217ms
60:	learn: 23.0232450	total: 330ms	remaining: 211ms
61:	learn: 22.8384958	total: 334ms	remaining: 205ms
62:	learn: 22.6499902	total: 338ms	remaining: 199ms
63:	learn: 22.4577426	total: 343ms	remaining: 193ms
64:	learn: 22.3333158	total: 347ms	remaining: 187ms
65:	learn: 22.2064131	total: 352ms	remaining: 181ms
66:	learn: 22.1434971	total: 356ms	remaining: 175ms
67:	learn: 21.9596519	total: 360ms	remaining: 169ms
68:	learn: 21.8475576	total: 365ms	remaining: 164ms
69:	learn: 21.6954745	total: 370ms	remaining: 159ms
70:	learn: 21.5635976	total: 374ms	remaining: 153ms
71:	learn: 21.4588506	total: 379ms	remaining: 147ms
72:	learn: 21.3527268	total: 383ms	remaining: 142ms
73:	learn: 21.2661288	total: 388ms	remaining: 136ms
74:	learn: 21.1817333	total: 392ms	remaining: 131ms
75:	learn: 21.0527553	total: 397ms	remaining: 125ms
76:	learn: 20.9229021	total: 406ms	remaining: 121ms
77:	learn: 20.7563946	total: 414ms	remaining: 117ms
78:	learn: 20.6569831	total: 422ms	remaining: 112ms
79:	learn: 20.4982663	total: 429ms	remaining: 107ms
80:	learn: 20.3185460	total: 435ms	remaining: 102ms
81:	learn: 20.2096241	total: 440ms	remaining: 96.7ms
82:	learn: 20.1274891	total: 446ms	remaining: 91.3ms
83:	learn: 20.0740139	total: 451ms	remaining: 85.9ms
84:	learn: 19.9630699	total: 457ms	remaining: 80.6ms
85:	learn: 19.8753899	total: 462ms	remaining: 75.1ms
86:	learn: 19.6563612	total: 467ms	remaining: 69.8ms
87:	learn: 19.4680232	total: 473ms	remaining: 64.4ms
88:	learn: 19.3503431	total: 478ms	remaining: 59.1ms
89:	learn: 19.2221379	total: 483ms	remaining: 53.7ms
90:	learn: 19.0732542	total: 488ms	remaining: 48.3ms
91:	learn: 18.9825190	total: 494ms	remaining: 43ms
92:	learn: 18.8839009	total: 500ms	remaining: 37.6ms
93:	learn: 18.8012219	total: 504ms	remaining: 32.2ms
94:	learn: 18.7172713	total: 508ms	remaining: 26.8ms
95:	learn: 18.6201170	total: 512ms	remaining: 21.3ms
96:	learn: 18.5318611	total: 517ms	remaining: 16ms
97:	learn: 18.3833356	total: 521ms	remaining: 10.6ms
98:	learn: 18.3289700	total: 525ms	remaining: 5.31ms
99:	learn: 18.2227333	total: 530ms	remaining: 0us
0:	learn: 46.3764524	total: 4.96ms	remaining: 491ms
1:	learn: 45.5561269	total: 9.44ms	remaining: 463ms
2:	learn: 44.8811245	total: 13.8ms	remaining: 445ms
3:	learn: 44.0788617	total: 18.1ms	remaining: 436ms
4:	learn: 43.3619790	total: 25.3ms	remaining: 481ms
5:	learn: 42.6912112	total: 32.4ms	remaining: 508ms
6:	learn: 42.2292118	total: 41.2ms	remaining: 548ms
7:	learn: 41.7725191	total: 47.5ms	remaining: 546ms
8:	learn: 41.1676614	total: 68.4ms	remaining: 692ms
9:	learn: 40.5771076	total: 73.4ms	remaining: 660ms
10:	learn: 39.8343757	total: 78.4ms	remaining: 634ms
11:	learn: 39.3761142	total: 83.5ms	remaining: 612ms
12:	learn: 38.5254692	total: 88.4ms	remaining: 592ms
13:	learn: 37.9629555	total: 93.7ms	remaining: 576ms
14:	learn: 37.4418438	total: 98.7ms	remaining: 559ms
15:	learn: 37.0507283	total: 103ms	remaining: 543ms
16:	learn: 36.6264217	total: 108ms	remaining: 527ms
17:	learn: 36.1114940	total: 113ms	remaining: 516ms
18:	learn: 35.7193862	total: 119ms	remaining: 507ms
19:	learn: 35.3301177	total: 123ms	remaining: 493ms
20:	learn: 35.0598280	total: 127ms	remaining: 479ms
21:	learn: 34.5469736	total: 131ms	remaining: 466ms
22:	learn: 34.2064215	total: 135ms	remaining: 453ms
23:	learn: 33.7280710	total: 139ms	remaining: 442ms
24:	learn: 33.3282940	total: 144ms	remaining: 431ms
25:	learn: 32.8478961	total: 148ms	remaining: 420ms
26:	learn: 32.5722164	total: 152ms	remaining: 410ms
27:	learn: 32.2457019	total: 155ms	remaining: 400ms
28:	learn: 31.9230495	total: 160ms	remaining: 391ms
29:	learn: 31.4311611	total: 164ms	remaining: 383ms
30:	learn: 30.9179052	total: 168ms	remaining: 374ms
31:	learn: 30.6201141	total: 172ms	remaining: 366ms
32:	learn: 30.3421106	total: 176ms	remaining: 358ms
33:	learn: 29.9885373	total: 180ms	remaining: 350ms
34:	learn: 29.7462780	total: 184ms	remaining: 342ms
35:	learn: 29.3607153	total: 188ms	remaining: 335ms
36:	learn: 29.1793078	total: 192ms	remaining: 328ms
37:	learn: 28.9276538	total: 196ms	remaining: 320ms
38:	learn: 28.6903934	total: 200ms	remaining: 313ms
39:	learn: 28.2095033	total: 204ms	remaining: 307ms
40:	learn: 27.7990608	total: 208ms	remaining: 300ms
41:	learn: 27.5406632	total: 212ms	remaining: 293ms
42:	learn: 27.2575376	total: 216ms	remaining: 287ms
43:	learn: 26.9741707	total: 221ms	remaining: 281ms
44:	learn: 26.6606899	total: 225ms	remaining: 275ms
45:	learn: 26.4015833	total: 229ms	remaining: 269ms
46:	learn: 26.1828993	total: 233ms	remaining: 263ms
47:	learn: 26.0233709	total: 236ms	remaining: 256ms
48:	learn: 25.9300399	total: 241ms	remaining: 250ms
49:	learn: 25.5861489	total: 245ms	remaining: 245ms
50:	learn: 25.4322012	total: 249ms	remaining: 239ms
51:	learn: 25.1595644	total: 254ms	remaining: 234ms
52:	learn: 24.9955303	total: 261ms	remaining: 232ms
53:	learn: 24.7273966	total: 270ms	remaining: 230ms
54:	learn: 24.5747978	total: 281ms	remaining: 230ms
55:	learn: 24.3807977	total: 288ms	remaining: 226ms
56:	learn: 24.1689569	total: 293ms	remaining: 221ms
57:	learn: 23.9898221	total: 298ms	remaining: 216ms
58:	learn: 23.7566414	total: 303ms	remaining: 211ms
59:	learn: 23.6641165	total: 308ms	remaining: 206ms
60:	learn: 23.5658066	total: 313ms	remaining: 200ms
61:	learn: 23.4338851	total: 319ms	remaining: 195ms
62:	learn: 23.2408837	total: 324ms	remaining: 190ms
63:	learn: 23.0642038	total: 329ms	remaining: 185ms
64:	learn: 22.9032045	total: 334ms	remaining: 180ms
65:	learn: 22.7736138	total: 340ms	remaining: 175ms
66:	learn: 22.6836443	total: 345ms	remaining: 170ms
67:	learn: 22.5983654	total: 350ms	remaining: 165ms
68:	learn: 22.4419813	total: 356ms	remaining: 160ms
69:	learn: 22.2863339	total: 361ms	remaining: 155ms
70:	learn: 22.1792943	total: 366ms	remaining: 149ms
71:	learn: 22.1130574	total: 370ms	remaining: 144ms
72:	learn: 21.9858161	total: 375ms	remaining: 139ms
73:	learn: 21.8577784	total: 380ms	remaining: 133ms
74:	learn: 21.7845222	total: 384ms	remaining: 128ms
75:	learn: 21.6831390	total: 389ms	remaining: 123ms
76:	learn: 21.6292521	total: 393ms	remaining: 117ms
77:	learn: 21.5789330	total: 398ms	remaining: 112ms
78:	learn: 21.5420942	total: 402ms	remaining: 107ms
79:	learn: 21.4280939	total: 407ms	remaining: 102ms
80:	learn: 21.3641165	total: 411ms	remaining: 96.5ms
81:	learn: 21.2734814	total: 416ms	remaining: 91.3ms
82:	learn: 21.2220323	total: 421ms	remaining: 86.2ms
83:	learn: 21.0625792	total: 426ms	remaining: 81.1ms
84:	learn: 20.9488320	total: 431ms	remaining: 76ms
85:	learn: 20.8504255	total: 435ms	remaining: 70.9ms
86:	learn: 20.7848510	total: 440ms	remaining: 65.7ms
87:	learn: 20.7247442	total: 445ms	remaining: 60.6ms
88:	learn: 20.5698590	total: 449ms	remaining: 55.5ms
89:	learn: 20.4067620	total: 455ms	remaining: 50.6ms
90:	learn: 20.3062482	total: 463ms	remaining: 45.8ms
91:	learn: 20.2029696	total: 470ms	remaining: 40.9ms
92:	learn: 20.1384849	total: 479ms	remaining: 36ms
93:	learn: 20.0260709	total: 486ms	remaining: 31ms
94:	learn: 19.9122100	total: 491ms	remaining: 25.9ms
95:	learn: 19.8648487	total: 496ms	remaining: 20.7ms
96:	learn: 19.8207072	total: 501ms	remaining: 15.5ms
97:	learn: 19.7261189	total: 506ms	remaining: 10.3ms
98:	learn: 19.7042438	total: 512ms	remaining: 5.17ms
99:	learn: 19.6546645	total: 517ms	remaining: 0us
0:	learn: 47.0239288	total: 4.52ms	remaining: 448ms
1:	learn: 46.2253829	total: 8.44ms	remaining: 414ms
2:	learn: 45.5580301	total: 12.4ms	remaining: 400ms
3:	learn: 44.7273237	total: 16.5ms	remaining: 396ms
4:	learn: 43.8867421	total: 20.3ms	remaining: 387ms
5:	learn: 43.3615911	total: 24.6ms	remaining: 385ms
6:	learn: 42.8548390	total: 28.8ms	remaining: 383ms
7:	learn: 42.1606758	total: 33.1ms	remaining: 380ms
8:	learn: 41.6625870	total: 37.5ms	remaining: 379ms
9:	learn: 40.9497092	total: 41.6ms	remaining: 375ms
10:	learn: 40.1886318	total: 45.5ms	remaining: 368ms
11:	learn: 39.7456423	total: 49.3ms	remaining: 361ms
12:	learn: 39.1171373	total: 53.2ms	remaining: 356ms
13:	learn: 38.5451069	total: 57.8ms	remaining: 355ms
14:	learn: 38.0155834	total: 62.5ms	remaining: 354ms
15:	learn: 37.5631354	total: 67.1ms	remaining: 352ms
16:	learn: 37.1030023	total: 71.6ms	remaining: 350ms
17:	learn: 36.4563029	total: 75.9ms	remaining: 346ms
18:	learn: 36.0160976	total: 80.3ms	remaining: 342ms
19:	learn: 35.5079827	total: 85.3ms	remaining: 341ms
20:	learn: 35.2111885	total: 90ms	remaining: 339ms
21:	learn: 34.9397465	total: 97.9ms	remaining: 347ms
22:	learn: 34.5270048	total: 105ms	remaining: 352ms
23:	learn: 34.0169260	total: 114ms	remaining: 362ms
24:	learn: 33.7454892	total: 121ms	remaining: 362ms
25:	learn: 33.2648157	total: 126ms	remaining: 360ms
26:	learn: 32.8899427	total: 132ms	remaining: 357ms
27:	learn: 32.6185050	total: 137ms	remaining: 353ms
28:	learn: 32.3528531	total: 143ms	remaining: 349ms
29:	learn: 32.0859923	total: 148ms	remaining: 346ms
30:	learn: 31.6511144	total: 154ms	remaining: 342ms
31:	learn: 31.2571765	total: 159ms	remaining: 339ms
32:	learn: 30.9770049	total: 165ms	remaining: 335ms
33:	learn: 30.6084872	total: 170ms	remaining: 331ms
34:	learn: 30.3448632	total: 176ms	remaining: 327ms
35:	learn: 30.0360942	total: 181ms	remaining: 322ms
36:	learn: 29.6648968	total: 186ms	remaining: 316ms
37:	learn: 29.3165114	total: 191ms	remaining: 312ms
38:	learn: 29.0829198	total: 197ms	remaining: 308ms
39:	learn: 28.7752064	total: 201ms	remaining: 302ms
40:	learn: 28.3622191	total: 205ms	remaining: 295ms
41:	learn: 28.1346631	total: 209ms	remaining: 289ms
42:	learn: 27.9585719	total: 214ms	remaining: 283ms
43:	learn: 27.6565566	total: 218ms	remaining: 277ms
44:	learn: 27.3616172	total: 222ms	remaining: 271ms
45:	learn: 27.0658637	total: 226ms	remaining: 266ms
46:	learn: 26.8660382	total: 231ms	remaining: 260ms
47:	learn: 26.6536078	total: 235ms	remaining: 255ms
48:	learn: 26.3524440	total: 239ms	remaining: 249ms
49:	learn: 26.1595277	total: 244ms	remaining: 244ms
50:	learn: 25.9273523	total: 248ms	remaining: 238ms
51:	learn: 25.7195580	total: 252ms	remaining: 233ms
52:	learn: 25.5730225	total: 256ms	remaining: 227ms
53:	learn: 25.3455276	total: 261ms	remaining: 222ms
54:	learn: 25.2289675	total: 266ms	remaining: 218ms
55:	learn: 25.0133024	total: 271ms	remaining: 213ms
56:	learn: 24.8406714	total: 276ms	remaining: 208ms
57:	learn: 24.6367857	total: 281ms	remaining: 203ms
58:	learn: 24.5338177	total: 286ms	remaining: 198ms
59:	learn: 24.3799964	total: 290ms	remaining: 193ms
60:	learn: 24.1447492	total: 296ms	remaining: 189ms
61:	learn: 23.9880495	total: 303ms	remaining: 186ms
62:	learn: 23.7140630	total: 311ms	remaining: 183ms
63:	learn: 23.5003791	total: 320ms	remaining: 180ms
64:	learn: 23.3207645	total: 328ms	remaining: 177ms
65:	learn: 23.1958356	total: 334ms	remaining: 172ms
66:	learn: 23.0471302	total: 350ms	remaining: 172ms
67:	learn: 22.8977183	total: 355ms	remaining: 167ms
68:	learn: 22.7187400	total: 360ms	remaining: 162ms
69:	learn: 22.6523405	total: 365ms	remaining: 157ms
70:	learn: 22.4767453	total: 370ms	remaining: 151ms
71:	learn: 22.3243677	total: 375ms	remaining: 146ms
72:	learn: 22.2133096	total: 380ms	remaining: 141ms
73:	learn: 22.1151713	total: 385ms	remaining: 135ms
74:	learn: 22.0296666	total: 391ms	remaining: 130ms
75:	learn: 21.9195980	total: 396ms	remaining: 125ms
76:	learn: 21.8401730	total: 400ms	remaining: 119ms
77:	learn: 21.8079797	total: 404ms	remaining: 114ms
78:	learn: 21.7274109	total: 408ms	remaining: 108ms
79:	learn: 21.6663032	total: 412ms	remaining: 103ms
80:	learn: 21.5633117	total: 416ms	remaining: 97.5ms
81:	learn: 21.4542467	total: 419ms	remaining: 92.1ms
82:	learn: 21.3177957	total: 424ms	remaining: 86.8ms
83:	learn: 21.1289167	total: 427ms	remaining: 81.4ms
84:	learn: 21.0297368	total: 431ms	remaining: 76.1ms
85:	learn: 20.9089564	total: 435ms	remaining: 70.9ms
86:	learn: 20.7653988	total: 440ms	remaining: 65.8ms
87:	learn: 20.6521894	total: 444ms	remaining: 60.6ms
88:	learn: 20.5193021	total: 448ms	remaining: 55.4ms
89:	learn: 20.4361620	total: 453ms	remaining: 50.3ms
90:	learn: 20.3546710	total: 457ms	remaining: 45.2ms
91:	learn: 20.2513296	total: 461ms	remaining: 40.1ms
92:	learn: 20.1605550	total: 466ms	remaining: 35ms
93:	learn: 20.0515942	total: 470ms	remaining: 30ms
94:	learn: 19.9800764	total: 475ms	remaining: 25ms
95:	learn: 19.8996532	total: 480ms	remaining: 20ms
96:	learn: 19.8450910	total: 483ms	remaining: 15ms
97:	learn: 19.7887346	total: 488ms	remaining: 9.96ms
98:	learn: 19.7230872	total: 495ms	remaining: 5ms
99:	learn: 19.6328825	total: 503ms	remaining: 0us
0:	learn: 27.7143805	total: 5.49ms	remaining: 543ms
1:	learn: 27.2245894	total: 10.9ms	remaining: 534ms
2:	learn: 26.8693029	total: 15.8ms	remaining: 510ms
3:	learn: 26.4713217	total: 19.9ms	remaining: 478ms
4:	learn: 26.1261794	total: 25.6ms	remaining: 486ms
5:	learn: 25.8160419	total: 30.7ms	remaining: 482ms
6:	learn: 25.3860050	total: 34.6ms	remaining: 460ms
7:	learn: 25.0621682	total: 38.4ms	remaining: 442ms
8:	learn: 24.7574429	total: 42.2ms	remaining: 426ms
9:	learn: 24.5154734	total: 46.3ms	remaining: 417ms
10:	learn: 24.2199118	total: 50.1ms	remaining: 405ms
11:	learn: 23.9774955	total: 53.7ms	remaining: 394ms
12:	learn: 23.7755558	total: 57.3ms	remaining: 384ms
13:	learn: 23.4384476	total: 61.5ms	remaining: 378ms
14:	learn: 23.2035324	total: 65.3ms	remaining: 370ms
15:	learn: 22.9925293	total: 69ms	remaining: 362ms
16:	learn: 22.7981113	total: 72.9ms	remaining: 356ms
17:	learn: 22.5829245	total: 76.7ms	remaining: 349ms
18:	learn: 22.4131931	total: 80.8ms	remaining: 344ms
19:	learn: 22.1833629	total: 84.5ms	remaining: 338ms
20:	learn: 21.9660824	total: 88.2ms	remaining: 332ms
21:	learn: 21.7281998	total: 92.2ms	remaining: 327ms
22:	learn: 21.5000824	total: 96.1ms	remaining: 322ms
23:	learn: 21.2717031	total: 99.9ms	remaining: 316ms
24:	learn: 21.0926073	total: 104ms	remaining: 311ms
25:	learn: 20.8922144	total: 108ms	remaining: 306ms
26:	learn: 20.7498215	total: 112ms	remaining: 303ms
27:	learn: 20.5781754	total: 114ms	remaining: 292ms
28:	learn: 20.4294665	total: 118ms	remaining: 289ms
29:	learn: 20.2273985	total: 122ms	remaining: 285ms
30:	learn: 20.0920234	total: 127ms	remaining: 282ms
31:	learn: 19.9311712	total: 131ms	remaining: 278ms
32:	learn: 19.7852359	total: 135ms	remaining: 275ms
33:	learn: 19.6211007	total: 141ms	remaining: 274ms
34:	learn: 19.4806501	total: 148ms	remaining: 276ms
35:	learn: 19.3415380	total: 155ms	remaining: 276ms
36:	learn: 19.2075499	total: 163ms	remaining: 278ms
37:	learn: 19.0582745	total: 170ms	remaining: 278ms
38:	learn: 18.8852020	total: 175ms	remaining: 274ms
39:	learn: 18.6868677	total: 180ms	remaining: 271ms
40:	learn: 18.5481481	total: 186ms	remaining: 267ms
41:	learn: 18.4508846	total: 195ms	remaining: 269ms
42:	learn: 18.3650555	total: 200ms	remaining: 265ms
43:	learn: 18.1818415	total: 205ms	remaining: 261ms
44:	learn: 18.0782035	total: 210ms	remaining: 257ms
45:	learn: 17.9724472	total: 215ms	remaining: 253ms
46:	learn: 17.8657480	total: 221ms	remaining: 249ms
47:	learn: 17.7217309	total: 226ms	remaining: 244ms
48:	learn: 17.6403061	total: 230ms	remaining: 239ms
49:	learn: 17.5245570	total: 236ms	remaining: 236ms
50:	learn: 17.3976790	total: 241ms	remaining: 231ms
51:	learn: 17.2544460	total: 245ms	remaining: 226ms
52:	learn: 17.1507940	total: 249ms	remaining: 221ms
53:	learn: 17.0391276	total: 253ms	remaining: 215ms
54:	learn: 16.9348155	total: 257ms	remaining: 210ms
55:	learn: 16.8475635	total: 261ms	remaining: 205ms
56:	learn: 16.7691656	total: 264ms	remaining: 199ms
57:	learn: 16.6277836	total: 268ms	remaining: 194ms
58:	learn: 16.5524230	total: 272ms	remaining: 189ms
59:	learn: 16.4614442	total: 276ms	remaining: 184ms
60:	learn: 16.3077836	total: 279ms	remaining: 179ms
61:	learn: 16.2278133	total: 283ms	remaining: 174ms
62:	learn: 16.1288632	total: 288ms	remaining: 169ms
63:	learn: 16.0734717	total: 291ms	remaining: 164ms
64:	learn: 16.0085754	total: 295ms	remaining: 159ms
65:	learn: 15.9278700	total: 299ms	remaining: 154ms
66:	learn: 15.8320321	total: 303ms	remaining: 149ms
67:	learn: 15.7706425	total: 308ms	remaining: 145ms
68:	learn: 15.6404344	total: 312ms	remaining: 140ms
69:	learn: 15.5678129	total: 316ms	remaining: 135ms
70:	learn: 15.4980047	total: 320ms	remaining: 131ms
71:	learn: 15.4324207	total: 325ms	remaining: 126ms
72:	learn: 15.3551877	total: 329ms	remaining: 122ms
73:	learn: 15.2930769	total: 334ms	remaining: 117ms
74:	learn: 15.2307174	total: 342ms	remaining: 114ms
75:	learn: 15.1600937	total: 349ms	remaining: 110ms
76:	learn: 15.0837614	total: 365ms	remaining: 109ms
77:	learn: 15.0185989	total: 370ms	remaining: 104ms
78:	learn: 14.9300717	total: 375ms	remaining: 99.7ms
79:	learn: 14.8928389	total: 380ms	remaining: 95ms
80:	learn: 14.8250040	total: 385ms	remaining: 90.2ms
81:	learn: 14.7906114	total: 389ms	remaining: 85.5ms
82:	learn: 14.7214118	total: 395ms	remaining: 80.8ms
83:	learn: 14.6657875	total: 400ms	remaining: 76.1ms
84:	learn: 14.6085682	total: 405ms	remaining: 71.4ms
85:	learn: 14.5334097	total: 424ms	remaining: 69.1ms
86:	learn: 14.4681230	total: 430ms	remaining: 64.2ms
87:	learn: 14.4088334	total: 434ms	remaining: 59.2ms
88:	learn: 14.3541312	total: 438ms	remaining: 54.1ms
89:	learn: 14.2923636	total: 442ms	remaining: 49.1ms
90:	learn: 14.2339259	total: 446ms	remaining: 44.1ms
91:	learn: 14.1439983	total: 450ms	remaining: 39.1ms
92:	learn: 14.0701371	total: 454ms	remaining: 34.2ms
93:	learn: 13.9770736	total: 458ms	remaining: 29.2ms
94:	learn: 13.9275801	total: 462ms	remaining: 24.3ms
95:	learn: 13.8717050	total: 466ms	remaining: 19.4ms
96:	learn: 13.7821340	total: 469ms	remaining: 14.5ms
97:	learn: 13.7383865	total: 473ms	remaining: 9.66ms
98:	learn: 13.6850693	total: 477ms	remaining: 4.82ms
99:	learn: 13.6273539	total: 482ms	remaining: 0us
0:	learn: 43.2118728	total: 4.77ms	remaining: 473ms
1:	learn: 42.3090111	total: 14.2ms	remaining: 695ms
2:	learn: 41.3060764	total: 21.3ms	remaining: 687ms
3:	learn: 40.3653958	total: 31ms	remaining: 743ms
4:	learn: 39.5006331	total: 40ms	remaining: 761ms
5:	learn: 38.6473041	total: 46.2ms	remaining: 724ms
6:	learn: 37.8560875	total: 52ms	remaining: 691ms
7:	learn: 37.0772701	total: 57.8ms	remaining: 664ms
8:	learn: 36.3260704	total: 63ms	remaining: 637ms
9:	learn: 35.7300393	total: 68.5ms	remaining: 616ms
10:	learn: 34.9336547	total: 73.9ms	remaining: 598ms
11:	learn: 34.1758190	total: 79ms	remaining: 579ms
12:	learn: 33.5120760	total: 84.2ms	remaining: 564ms
13:	learn: 32.8731142	total: 89.4ms	remaining: 549ms
14:	learn: 32.3579595	total: 93.6ms	remaining: 530ms
15:	learn: 31.7969963	total: 98.9ms	remaining: 519ms
16:	learn: 31.3472797	total: 104ms	remaining: 509ms
17:	learn: 30.7865884	total: 109ms	remaining: 496ms
18:	learn: 30.3876486	total: 113ms	remaining: 482ms
19:	learn: 29.8840575	total: 117ms	remaining: 469ms
20:	learn: 29.3584237	total: 122ms	remaining: 458ms
21:	learn: 28.9965200	total: 126ms	remaining: 446ms
22:	learn: 28.6117225	total: 130ms	remaining: 436ms
23:	learn: 28.1147832	total: 134ms	remaining: 424ms
24:	learn: 27.7857774	total: 138ms	remaining: 414ms
25:	learn: 27.3181226	total: 142ms	remaining: 403ms
26:	learn: 26.9019101	total: 146ms	remaining: 395ms
27:	learn: 26.6957004	total: 150ms	remaining: 385ms
28:	learn: 26.2816390	total: 154ms	remaining: 376ms
29:	learn: 25.9107534	total: 158ms	remaining: 368ms
30:	learn: 25.5773085	total: 162ms	remaining: 360ms
31:	learn: 25.1916035	total: 166ms	remaining: 353ms
32:	learn: 24.8819670	total: 170ms	remaining: 346ms
33:	learn: 24.5580488	total: 174ms	remaining: 338ms
34:	learn: 24.3088624	total: 179ms	remaining: 332ms
35:	learn: 23.9890893	total: 183ms	remaining: 324ms
36:	learn: 23.7266073	total: 187ms	remaining: 318ms
37:	learn: 23.4886046	total: 191ms	remaining: 311ms
38:	learn: 23.2786313	total: 194ms	remaining: 304ms
39:	learn: 23.0060540	total: 199ms	remaining: 298ms
40:	learn: 22.7848361	total: 203ms	remaining: 291ms
41:	learn: 22.5485511	total: 207ms	remaining: 286ms
42:	learn: 22.3113565	total: 211ms	remaining: 279ms
43:	learn: 22.1296084	total: 215ms	remaining: 273ms
44:	learn: 21.8514989	total: 218ms	remaining: 267ms
45:	learn: 21.6540201	total: 223ms	remaining: 262ms
46:	learn: 21.4203535	total: 228ms	remaining: 257ms
47:	learn: 21.2317196	total: 232ms	remaining: 251ms
48:	learn: 21.0547467	total: 237ms	remaining: 246ms
49:	learn: 20.9192535	total: 241ms	remaining: 241ms
50:	learn: 20.6975386	total: 246ms	remaining: 236ms
51:	learn: 20.5839720	total: 251ms	remaining: 231ms
52:	learn: 20.4528901	total: 258ms	remaining: 229ms
53:	learn: 20.3392419	total: 269ms	remaining: 229ms
54:	learn: 20.1518693	total: 277ms	remaining: 227ms
55:	learn: 19.9928770	total: 282ms	remaining: 222ms
56:	learn: 19.8042028	total: 287ms	remaining: 217ms
57:	learn: 19.7000879	total: 292ms	remaining: 212ms
58:	learn: 19.5524154	total: 297ms	remaining: 207ms
59:	learn: 19.4366908	total: 302ms	remaining: 202ms
60:	learn: 19.2739134	total: 308ms	remaining: 197ms
61:	learn: 19.1499266	total: 313ms	remaining: 192ms
62:	learn: 18.9948972	total: 318ms	remaining: 187ms
63:	learn: 18.8952299	total: 324ms	remaining: 182ms
64:	learn: 18.7545430	total: 329ms	remaining: 177ms
65:	learn: 18.6315116	total: 334ms	remaining: 172ms
66:	learn: 18.5164994	total: 339ms	remaining: 167ms
67:	learn: 18.3983038	total: 344ms	remaining: 162ms
68:	learn: 18.2803212	total: 348ms	remaining: 156ms
69:	learn: 18.1738467	total: 352ms	remaining: 151ms
70:	learn: 18.0884235	total: 356ms	remaining: 145ms
71:	learn: 18.0129445	total: 359ms	remaining: 140ms
72:	learn: 17.8582158	total: 363ms	remaining: 134ms
73:	learn: 17.7473705	total: 367ms	remaining: 129ms
74:	learn: 17.6431421	total: 371ms	remaining: 124ms
75:	learn: 17.5398511	total: 375ms	remaining: 118ms
76:	learn: 17.4404598	total: 379ms	remaining: 113ms
77:	learn: 17.3477525	total: 382ms	remaining: 108ms
78:	learn: 17.2283831	total: 387ms	remaining: 103ms
79:	learn: 17.0767035	total: 391ms	remaining: 97.7ms
80:	learn: 16.9732705	total: 395ms	remaining: 92.6ms
81:	learn: 16.8927449	total: 399ms	remaining: 87.6ms
82:	learn: 16.8145625	total: 403ms	remaining: 82.5ms
83:	learn: 16.7290845	total: 406ms	remaining: 77.4ms
84:	learn: 16.6661414	total: 411ms	remaining: 72.5ms
85:	learn: 16.5875575	total: 415ms	remaining: 67.6ms
86:	learn: 16.4578580	total: 420ms	remaining: 62.7ms
87:	learn: 16.4243550	total: 423ms	remaining: 57.7ms
88:	learn: 16.3251337	total: 428ms	remaining: 52.9ms
89:	learn: 16.2516385	total: 433ms	remaining: 48.1ms
90:	learn: 16.1226518	total: 437ms	remaining: 43.2ms
91:	learn: 16.0718308	total: 441ms	remaining: 38.4ms
92:	learn: 15.9636735	total: 447ms	remaining: 33.7ms
93:	learn: 15.8923693	total: 455ms	remaining: 29ms
94:	learn: 15.8270425	total: 462ms	remaining: 24.3ms
95:	learn: 15.7449077	total: 469ms	remaining: 19.5ms
96:	learn: 15.6978936	total: 475ms	remaining: 14.7ms
97:	learn: 15.6527285	total: 481ms	remaining: 9.82ms
98:	learn: 15.5557320	total: 486ms	remaining: 4.91ms
99:	learn: 15.4399171	total: 491ms	remaining: 0us
0:	learn: 46.7092506	total: 4.19ms	remaining: 415ms
1:	learn: 45.8266821	total: 7.93ms	remaining: 389ms
2:	learn: 45.0052023	total: 11.9ms	remaining: 384ms
3:	learn: 44.3828795	total: 15.8ms	remaining: 378ms
4:	learn: 43.7255353	total: 19.8ms	remaining: 376ms
5:	learn: 43.1663831	total: 23.5ms	remaining: 368ms
6:	learn: 42.3875189	total: 27.5ms	remaining: 365ms
7:	learn: 41.7839075	total: 31.3ms	remaining: 360ms
8:	learn: 41.0740108	total: 35.3ms	remaining: 357ms
9:	learn: 40.3846647	total: 39ms	remaining: 351ms
10:	learn: 39.8821046	total: 42.6ms	remaining: 345ms
11:	learn: 39.1807254	total: 46.5ms	remaining: 341ms
12:	learn: 38.7153028	total: 50.2ms	remaining: 336ms
13:	learn: 38.0474495	total: 54.2ms	remaining: 333ms
14:	learn: 37.3844461	total: 58.1ms	remaining: 329ms
15:	learn: 36.9210704	total: 62ms	remaining: 325ms
16:	learn: 36.3160964	total: 65.9ms	remaining: 322ms
17:	learn: 35.8915826	total: 69.8ms	remaining: 318ms
18:	learn: 35.5519989	total: 74.2ms	remaining: 316ms
19:	learn: 35.1437045	total: 78.4ms	remaining: 314ms
20:	learn: 34.6387799	total: 82.9ms	remaining: 312ms
21:	learn: 34.2437068	total: 87.2ms	remaining: 309ms
22:	learn: 33.8262100	total: 91.7ms	remaining: 307ms
23:	learn: 33.4683000	total: 95.9ms	remaining: 304ms
24:	learn: 32.9996389	total: 100ms	remaining: 301ms
25:	learn: 32.6942147	total: 105ms	remaining: 299ms
26:	learn: 32.3016096	total: 111ms	remaining: 300ms
27:	learn: 31.9517346	total: 118ms	remaining: 304ms
28:	learn: 31.5277387	total: 126ms	remaining: 308ms
29:	learn: 31.2545365	total: 133ms	remaining: 310ms
30:	learn: 31.0510813	total: 139ms	remaining: 310ms
31:	learn: 30.6383830	total: 145ms	remaining: 308ms
32:	learn: 30.2800150	total: 150ms	remaining: 305ms
33:	learn: 29.9559797	total: 155ms	remaining: 301ms
34:	learn: 29.5802745	total: 160ms	remaining: 298ms
35:	learn: 29.2605111	total: 166ms	remaining: 295ms
36:	learn: 28.9582434	total: 171ms	remaining: 291ms
37:	learn: 28.6149387	total: 176ms	remaining: 287ms
38:	learn: 28.3980091	total: 181ms	remaining: 283ms
39:	learn: 28.1704520	total: 185ms	remaining: 278ms
40:	learn: 27.8881319	total: 190ms	remaining: 274ms
41:	learn: 27.5805731	total: 195ms	remaining: 270ms
42:	learn: 27.3520567	total: 200ms	remaining: 265ms
43:	learn: 27.1039679	total: 205ms	remaining: 261ms
44:	learn: 26.8472623	total: 226ms	remaining: 277ms
45:	learn: 26.5757869	total: 231ms	remaining: 271ms
46:	learn: 26.4579118	total: 234ms	remaining: 264ms
47:	learn: 26.1279008	total: 238ms	remaining: 258ms
48:	learn: 25.8503346	total: 242ms	remaining: 251ms
49:	learn: 25.7039015	total: 245ms	remaining: 245ms
50:	learn: 25.4317154	total: 249ms	remaining: 239ms
51:	learn: 25.3028008	total: 253ms	remaining: 233ms
52:	learn: 25.1906194	total: 258ms	remaining: 228ms
53:	learn: 25.0082790	total: 262ms	remaining: 223ms
54:	learn: 24.8264791	total: 265ms	remaining: 217ms
55:	learn: 24.5961365	total: 269ms	remaining: 211ms
56:	learn: 24.4007690	total: 273ms	remaining: 206ms
57:	learn: 24.2476228	total: 278ms	remaining: 201ms
58:	learn: 23.9582465	total: 282ms	remaining: 196ms
59:	learn: 23.7247243	total: 287ms	remaining: 191ms
60:	learn: 23.5379970	total: 291ms	remaining: 186ms
61:	learn: 23.3908530	total: 295ms	remaining: 181ms
62:	learn: 23.2123241	total: 299ms	remaining: 176ms
63:	learn: 23.1010345	total: 304ms	remaining: 171ms
64:	learn: 22.9032423	total: 313ms	remaining: 169ms
65:	learn: 22.7815198	total: 322ms	remaining: 166ms
66:	learn: 22.6325063	total: 332ms	remaining: 163ms
67:	learn: 22.5406071	total: 338ms	remaining: 159ms
68:	learn: 22.4413332	total: 344ms	remaining: 155ms
69:	learn: 22.3005609	total: 350ms	remaining: 150ms
70:	learn: 22.1779345	total: 355ms	remaining: 145ms
71:	learn: 22.0491576	total: 360ms	remaining: 140ms
72:	learn: 21.9379106	total: 365ms	remaining: 135ms
73:	learn: 21.7597096	total: 370ms	remaining: 130ms
74:	learn: 21.6042300	total: 375ms	remaining: 125ms
75:	learn: 21.4644642	total: 380ms	remaining: 120ms
76:	learn: 21.3811287	total: 386ms	remaining: 115ms
77:	learn: 21.3089276	total: 391ms	remaining: 110ms
78:	learn: 21.1654429	total: 396ms	remaining: 105ms
79:	learn: 20.9602460	total: 401ms	remaining: 100ms
80:	learn: 20.7959461	total: 406ms	remaining: 95.3ms
81:	learn: 20.5861156	total: 412ms	remaining: 90.3ms
82:	learn: 20.5120680	total: 415ms	remaining: 85.1ms
83:	learn: 20.3997233	total: 420ms	remaining: 79.9ms
84:	learn: 20.2499469	total: 424ms	remaining: 74.8ms
85:	learn: 20.1117768	total: 428ms	remaining: 69.6ms
86:	learn: 20.0617643	total: 432ms	remaining: 64.5ms
87:	learn: 19.9609182	total: 436ms	remaining: 59.4ms
88:	learn: 19.8763814	total: 440ms	remaining: 54.4ms
89:	learn: 19.7843516	total: 444ms	remaining: 49.4ms
90:	learn: 19.6926200	total: 448ms	remaining: 44.4ms
91:	learn: 19.5686774	total: 453ms	remaining: 39.4ms
92:	learn: 19.4727236	total: 457ms	remaining: 34.4ms
93:	learn: 19.3780174	total: 462ms	remaining: 29.5ms
94:	learn: 19.2840650	total: 467ms	remaining: 24.6ms
95:	learn: 19.1747368	total: 471ms	remaining: 19.6ms
96:	learn: 19.1273306	total: 477ms	remaining: 14.7ms
97:	learn: 19.0413946	total: 482ms	remaining: 9.83ms
98:	learn: 18.8980682	total: 487ms	remaining: 4.92ms
99:	learn: 18.7799962	total: 492ms	remaining: 0us
0:	learn: 46.4426352	total: 5.59ms	remaining: 554ms
1:	learn: 45.5770653	total: 10.5ms	remaining: 516ms
2:	learn: 44.6956685	total: 15.6ms	remaining: 504ms
3:	learn: 43.9934709	total: 21ms	remaining: 503ms
4:	learn: 43.3008183	total: 25.9ms	remaining: 492ms
5:	learn: 42.7510022	total: 31ms	remaining: 485ms
6:	learn: 42.0237555	total: 36ms	remaining: 478ms
7:	learn: 41.5354996	total: 41.5ms	remaining: 477ms
8:	learn: 41.0264055	total: 46.6ms	remaining: 472ms
9:	learn: 40.5267003	total: 51ms	remaining: 459ms
10:	learn: 39.8363942	total: 56.5ms	remaining: 457ms
11:	learn: 39.2014089	total: 61.6ms	remaining: 452ms
12:	learn: 38.7943524	total: 66.6ms	remaining: 445ms
13:	learn: 38.1664113	total: 70.5ms	remaining: 433ms
14:	learn: 37.7492773	total: 74.4ms	remaining: 421ms
15:	learn: 37.2369693	total: 78.1ms	remaining: 410ms
16:	learn: 36.6953383	total: 82.1ms	remaining: 401ms
17:	learn: 36.3580916	total: 85.9ms	remaining: 391ms
18:	learn: 35.8637745	total: 90.2ms	remaining: 384ms
19:	learn: 35.4299153	total: 94.3ms	remaining: 377ms
20:	learn: 34.8794879	total: 99.1ms	remaining: 373ms
21:	learn: 34.3253348	total: 103ms	remaining: 366ms
22:	learn: 33.9307096	total: 107ms	remaining: 359ms
23:	learn: 33.5952896	total: 111ms	remaining: 351ms
24:	learn: 33.1314051	total: 115ms	remaining: 345ms
25:	learn: 32.8502968	total: 119ms	remaining: 339ms
26:	learn: 32.4430184	total: 123ms	remaining: 332ms
27:	learn: 32.0721224	total: 126ms	remaining: 325ms
28:	learn: 31.7977479	total: 130ms	remaining: 319ms
29:	learn: 31.3999469	total: 135ms	remaining: 314ms
30:	learn: 31.1179360	total: 139ms	remaining: 310ms
31:	learn: 30.7712852	total: 144ms	remaining: 305ms
32:	learn: 30.2912977	total: 148ms	remaining: 301ms
33:	learn: 29.9920376	total: 153ms	remaining: 296ms
34:	learn: 29.6637918	total: 157ms	remaining: 292ms
35:	learn: 29.3522959	total: 161ms	remaining: 287ms
36:	learn: 29.0482516	total: 167ms	remaining: 284ms
37:	learn: 28.7956656	total: 175ms	remaining: 286ms
38:	learn: 28.4845569	total: 184ms	remaining: 288ms
39:	learn: 28.3038067	total: 191ms	remaining: 286ms
40:	learn: 28.1185263	total: 199ms	remaining: 286ms
41:	learn: 27.8012563	total: 205ms	remaining: 283ms
42:	learn: 27.5184259	total: 210ms	remaining: 278ms
43:	learn: 27.3019892	total: 215ms	remaining: 273ms
44:	learn: 27.0494594	total: 220ms	remaining: 269ms
45:	learn: 26.8054317	total: 225ms	remaining: 264ms
46:	learn: 26.6554974	total: 230ms	remaining: 260ms
47:	learn: 26.3568392	total: 235ms	remaining: 255ms
48:	learn: 26.1045872	total: 240ms	remaining: 250ms
49:	learn: 25.9807311	total: 245ms	remaining: 245ms
50:	learn: 25.7104640	total: 250ms	remaining: 240ms
51:	learn: 25.6019547	total: 254ms	remaining: 235ms
52:	learn: 25.5011930	total: 259ms	remaining: 230ms
53:	learn: 25.2291639	total: 264ms	remaining: 225ms
54:	learn: 24.9952313	total: 269ms	remaining: 220ms
55:	learn: 24.8195031	total: 273ms	remaining: 214ms
56:	learn: 24.5591684	total: 276ms	remaining: 208ms
57:	learn: 24.4163080	total: 280ms	remaining: 203ms
58:	learn: 24.2328188	total: 284ms	remaining: 197ms
59:	learn: 24.0087408	total: 288ms	remaining: 192ms
60:	learn: 23.8918912	total: 292ms	remaining: 187ms
61:	learn: 23.7537024	total: 296ms	remaining: 181ms
62:	learn: 23.5466923	total: 300ms	remaining: 176ms
63:	learn: 23.3903724	total: 303ms	remaining: 171ms
64:	learn: 23.3257785	total: 308ms	remaining: 166ms
65:	learn: 23.2839464	total: 311ms	remaining: 160ms
66:	learn: 23.1476036	total: 315ms	remaining: 155ms
67:	learn: 22.9480972	total: 319ms	remaining: 150ms
68:	learn: 22.7537529	total: 323ms	remaining: 145ms
69:	learn: 22.6209544	total: 326ms	remaining: 140ms
70:	learn: 22.5058753	total: 330ms	remaining: 135ms
71:	learn: 22.4068656	total: 334ms	remaining: 130ms
72:	learn: 22.3254150	total: 339ms	remaining: 125ms
73:	learn: 22.1784174	total: 344ms	remaining: 121ms
74:	learn: 22.1095388	total: 348ms	remaining: 116ms
75:	learn: 21.9958083	total: 352ms	remaining: 111ms
76:	learn: 21.8728475	total: 356ms	remaining: 106ms
77:	learn: 21.7975828	total: 361ms	remaining: 102ms
78:	learn: 21.7133267	total: 365ms	remaining: 97ms
79:	learn: 21.6023410	total: 373ms	remaining: 93.1ms
80:	learn: 21.5254474	total: 379ms	remaining: 89ms
81:	learn: 21.3307418	total: 389ms	remaining: 85.3ms
82:	learn: 21.2411976	total: 394ms	remaining: 80.7ms
83:	learn: 21.1091386	total: 401ms	remaining: 76.4ms
84:	learn: 21.0526747	total: 406ms	remaining: 71.6ms
85:	learn: 20.9083817	total: 411ms	remaining: 66.9ms
86:	learn: 20.8767767	total: 417ms	remaining: 62.3ms
87:	learn: 20.8143988	total: 423ms	remaining: 57.7ms
88:	learn: 20.7127697	total: 428ms	remaining: 52.9ms
89:	learn: 20.6112504	total: 433ms	remaining: 48.1ms
90:	learn: 20.4609960	total: 438ms	remaining: 43.3ms
91:	learn: 20.3648890	total: 443ms	remaining: 38.5ms
92:	learn: 20.3052040	total: 447ms	remaining: 33.7ms
93:	learn: 20.2587865	total: 452ms	remaining: 28.8ms
94:	learn: 20.2096406	total: 457ms	remaining: 24.1ms
95:	learn: 20.1301385	total: 462ms	remaining: 19.3ms
96:	learn: 20.0401359	total: 467ms	remaining: 14.4ms
97:	learn: 19.9791591	total: 482ms	remaining: 9.84ms
98:	learn: 19.9237318	total: 486ms	remaining: 4.9ms
99:	learn: 19.8009190	total: 490ms	remaining: 0us
0:	learn: 46.9286701	total: 4.35ms	remaining: 431ms
1:	learn: 46.2851598	total: 8.59ms	remaining: 421ms
2:	learn: 45.4586007	total: 12.7ms	remaining: 411ms
3:	learn: 44.6581393	total: 16.8ms	remaining: 403ms
4:	learn: 43.8231644	total: 21.2ms	remaining: 404ms
5:	learn: 43.2906569	total: 25.3ms	remaining: 397ms
6:	learn: 42.5095813	total: 29.7ms	remaining: 395ms
7:	learn: 41.9310465	total: 33.8ms	remaining: 388ms
8:	learn: 41.2083262	total: 38.1ms	remaining: 386ms
9:	learn: 40.6852547	total: 44.8ms	remaining: 403ms
10:	learn: 39.9637018	total: 51.7ms	remaining: 419ms
11:	learn: 39.2804189	total: 60.3ms	remaining: 442ms
12:	learn: 38.8804017	total: 67ms	remaining: 448ms
13:	learn: 38.3826597	total: 74.6ms	remaining: 459ms
14:	learn: 37.9240424	total: 79.4ms	remaining: 450ms
15:	learn: 37.4312070	total: 84.3ms	remaining: 442ms
16:	learn: 36.8803673	total: 89.1ms	remaining: 435ms
17:	learn: 36.5496582	total: 94.2ms	remaining: 429ms
18:	learn: 36.2078375	total: 99.3ms	remaining: 423ms
19:	learn: 35.6806593	total: 104ms	remaining: 418ms
20:	learn: 35.1512154	total: 110ms	remaining: 412ms
21:	learn: 34.6013055	total: 115ms	remaining: 406ms
22:	learn: 34.2380102	total: 119ms	remaining: 400ms
23:	learn: 33.8720185	total: 124ms	remaining: 394ms
24:	learn: 33.4426135	total: 129ms	remaining: 387ms
25:	learn: 33.1471186	total: 134ms	remaining: 380ms
26:	learn: 32.8018279	total: 139ms	remaining: 375ms
27:	learn: 32.4498594	total: 144ms	remaining: 370ms
28:	learn: 31.9749480	total: 149ms	remaining: 364ms
29:	learn: 31.6470735	total: 153ms	remaining: 356ms
30:	learn: 31.4265242	total: 157ms	remaining: 349ms
31:	learn: 31.0753325	total: 161ms	remaining: 342ms
32:	learn: 30.7192494	total: 165ms	remaining: 335ms
33:	learn: 30.3547940	total: 168ms	remaining: 327ms
34:	learn: 30.1296593	total: 172ms	remaining: 320ms
35:	learn: 29.9367140	total: 176ms	remaining: 312ms
36:	learn: 29.6248477	total: 180ms	remaining: 306ms
37:	learn: 29.3156707	total: 183ms	remaining: 299ms
38:	learn: 29.1534039	total: 187ms	remaining: 292ms
39:	learn: 28.9351289	total: 190ms	remaining: 285ms
40:	learn: 28.7057685	total: 194ms	remaining: 279ms
41:	learn: 28.3132521	total: 198ms	remaining: 273ms
42:	learn: 28.0739054	total: 201ms	remaining: 267ms
43:	learn: 27.8135917	total: 206ms	remaining: 262ms
44:	learn: 27.5376804	total: 209ms	remaining: 256ms
45:	learn: 27.3195849	total: 214ms	remaining: 251ms
46:	learn: 27.1681104	total: 217ms	remaining: 245ms
47:	learn: 27.0122442	total: 222ms	remaining: 240ms
48:	learn: 26.7819409	total: 226ms	remaining: 235ms
49:	learn: 26.6429308	total: 230ms	remaining: 230ms
50:	learn: 26.3482899	total: 234ms	remaining: 225ms
51:	learn: 26.2432755	total: 239ms	remaining: 220ms
52:	learn: 26.0811102	total: 243ms	remaining: 215ms
53:	learn: 25.9398113	total: 246ms	remaining: 210ms
54:	learn: 25.7891395	total: 251ms	remaining: 205ms
55:	learn: 25.6185338	total: 258ms	remaining: 203ms
56:	learn: 25.3293977	total: 265ms	remaining: 200ms
57:	learn: 25.1918906	total: 273ms	remaining: 198ms
58:	learn: 25.0503990	total: 279ms	remaining: 194ms
59:	learn: 24.8225776	total: 298ms	remaining: 199ms
60:	learn: 24.5969153	total: 303ms	remaining: 194ms
61:	learn: 24.4657353	total: 309ms	remaining: 189ms
62:	learn: 24.2861000	total: 314ms	remaining: 184ms
63:	learn: 24.1719148	total: 320ms	remaining: 180ms
64:	learn: 24.0547875	total: 325ms	remaining: 175ms
65:	learn: 23.9156724	total: 330ms	remaining: 170ms
66:	learn: 23.7604012	total: 335ms	remaining: 165ms
67:	learn: 23.6265679	total: 340ms	remaining: 160ms
68:	learn: 23.5372255	total: 345ms	remaining: 155ms
69:	learn: 23.3286241	total: 351ms	remaining: 150ms
70:	learn: 23.1806465	total: 356ms	remaining: 145ms
71:	learn: 23.0652081	total: 360ms	remaining: 140ms
72:	learn: 22.9231023	total: 363ms	remaining: 134ms
73:	learn: 22.8020380	total: 367ms	remaining: 129ms
74:	learn: 22.6525036	total: 372ms	remaining: 124ms
75:	learn: 22.5616268	total: 376ms	remaining: 119ms
76:	learn: 22.4395250	total: 381ms	remaining: 114ms
77:	learn: 22.3732379	total: 386ms	remaining: 109ms
78:	learn: 22.2300874	total: 391ms	remaining: 104ms
79:	learn: 22.0209882	total: 395ms	remaining: 98.8ms
80:	learn: 21.8703996	total: 399ms	remaining: 93.7ms
81:	learn: 21.7222039	total: 404ms	remaining: 88.8ms
82:	learn: 21.5903685	total: 408ms	remaining: 83.6ms
83:	learn: 21.4915083	total: 412ms	remaining: 78.5ms
84:	learn: 21.3320736	total: 416ms	remaining: 73.4ms
85:	learn: 21.2295060	total: 421ms	remaining: 68.5ms
86:	learn: 21.1983620	total: 426ms	remaining: 63.6ms
87:	learn: 21.1404156	total: 431ms	remaining: 58.7ms
88:	learn: 21.0684840	total: 435ms	remaining: 53.8ms
89:	learn: 20.9269197	total: 440ms	remaining: 48.9ms
90:	learn: 20.8614606	total: 444ms	remaining: 43.9ms
91:	learn: 20.6642996	total: 449ms	remaining: 39ms
92:	learn: 20.5612705	total: 455ms	remaining: 34.3ms
93:	learn: 20.5264997	total: 462ms	remaining: 29.5ms
94:	learn: 20.4532331	total: 469ms	remaining: 24.7ms
95:	learn: 20.3700696	total: 477ms	remaining: 19.9ms
96:	learn: 20.2671574	total: 485ms	remaining: 15ms
97:	learn: 20.1761207	total: 490ms	remaining: 9.99ms
98:	learn: 20.0533799	total: 495ms	remaining: 5ms
99:	learn: 19.9890055	total: 500ms	remaining: 0us
0:	learn: 27.5585353	total: 5.72ms	remaining: 566ms
1:	learn: 27.1656995	total: 10.9ms	remaining: 536ms
2:	learn: 26.8590175	total: 15ms	remaining: 485ms
3:	learn: 26.5818406	total: 18.9ms	remaining: 455ms
4:	learn: 26.1148663	total: 23.4ms	remaining: 445ms
5:	learn: 25.7690484	total: 27.6ms	remaining: 433ms
6:	learn: 25.3489206	total: 31.7ms	remaining: 421ms
7:	learn: 24.9542406	total: 35.8ms	remaining: 412ms
8:	learn: 24.6777517	total: 40.1ms	remaining: 406ms
9:	learn: 24.3242344	total: 44.3ms	remaining: 398ms
10:	learn: 24.0383073	total: 48.3ms	remaining: 391ms
11:	learn: 23.7383420	total: 52ms	remaining: 382ms
12:	learn: 23.3461670	total: 55.7ms	remaining: 373ms
13:	learn: 23.0928636	total: 59.9ms	remaining: 368ms
14:	learn: 22.8770414	total: 63.6ms	remaining: 360ms
15:	learn: 22.6323214	total: 68.3ms	remaining: 359ms
16:	learn: 22.3597072	total: 72.5ms	remaining: 354ms
17:	learn: 22.1079813	total: 76.5ms	remaining: 348ms
18:	learn: 21.8421199	total: 81ms	remaining: 345ms
19:	learn: 21.6576508	total: 85.7ms	remaining: 343ms
20:	learn: 21.4301268	total: 89.8ms	remaining: 338ms
21:	learn: 21.2287388	total: 94.6ms	remaining: 335ms
22:	learn: 21.0553872	total: 99.1ms	remaining: 332ms
23:	learn: 20.8977091	total: 104ms	remaining: 328ms
24:	learn: 20.6619051	total: 108ms	remaining: 324ms
25:	learn: 20.5040955	total: 113ms	remaining: 321ms
26:	learn: 20.3181195	total: 121ms	remaining: 328ms
27:	learn: 20.0869436	total: 129ms	remaining: 331ms
28:	learn: 19.9375985	total: 138ms	remaining: 338ms
29:	learn: 19.8247516	total: 146ms	remaining: 340ms
30:	learn: 19.6261697	total: 151ms	remaining: 337ms
31:	learn: 19.4547236	total: 157ms	remaining: 334ms
32:	learn: 19.3157092	total: 162ms	remaining: 330ms
33:	learn: 19.1561419	total: 168ms	remaining: 326ms
34:	learn: 19.0453620	total: 173ms	remaining: 322ms
35:	learn: 18.8738574	total: 179ms	remaining: 318ms
36:	learn: 18.7072907	total: 184ms	remaining: 313ms
37:	learn: 18.5877943	total: 189ms	remaining: 308ms
38:	learn: 18.4436380	total: 194ms	remaining: 304ms
39:	learn: 18.3463356	total: 199ms	remaining: 299ms
40:	learn: 18.2008059	total: 204ms	remaining: 294ms
41:	learn: 18.0582079	total: 210ms	remaining: 290ms
42:	learn: 17.8891982	total: 216ms	remaining: 286ms
43:	learn: 17.7332246	total: 220ms	remaining: 280ms
44:	learn: 17.6206421	total: 224ms	remaining: 274ms
45:	learn: 17.4982800	total: 228ms	remaining: 268ms
46:	learn: 17.3970150	total: 232ms	remaining: 262ms
47:	learn: 17.3058203	total: 236ms	remaining: 256ms
48:	learn: 17.1789256	total: 240ms	remaining: 250ms
49:	learn: 17.0916229	total: 244ms	remaining: 244ms
50:	learn: 16.9859820	total: 249ms	remaining: 239ms
51:	learn: 16.8995582	total: 253ms	remaining: 233ms
52:	learn: 16.8137014	total: 257ms	remaining: 228ms
53:	learn: 16.7021451	total: 261ms	remaining: 222ms
54:	learn: 16.5895582	total: 265ms	remaining: 216ms
55:	learn: 16.5015639	total: 269ms	remaining: 211ms
56:	learn: 16.4356637	total: 273ms	remaining: 206ms
57:	learn: 16.3514525	total: 277ms	remaining: 201ms
58:	learn: 16.2401369	total: 281ms	remaining: 195ms
59:	learn: 16.1293223	total: 285ms	remaining: 190ms
60:	learn: 16.0271167	total: 289ms	remaining: 185ms
61:	learn: 15.9126257	total: 294ms	remaining: 180ms
62:	learn: 15.8391096	total: 298ms	remaining: 175ms
63:	learn: 15.7441773	total: 303ms	remaining: 170ms
64:	learn: 15.6885195	total: 307ms	remaining: 165ms
65:	learn: 15.6052039	total: 312ms	remaining: 161ms
66:	learn: 15.5074202	total: 317ms	remaining: 156ms
67:	learn: 15.4054338	total: 321ms	remaining: 151ms
68:	learn: 15.2885714	total: 327ms	remaining: 147ms
69:	learn: 15.2157472	total: 334ms	remaining: 143ms
70:	learn: 15.1031554	total: 342ms	remaining: 140ms
71:	learn: 15.0237470	total: 349ms	remaining: 136ms
72:	learn: 14.9756825	total: 356ms	remaining: 132ms
73:	learn: 14.8840596	total: 362ms	remaining: 127ms
74:	learn: 14.8077061	total: 367ms	remaining: 122ms
75:	learn: 14.7444437	total: 372ms	remaining: 117ms
76:	learn: 14.6751720	total: 377ms	remaining: 113ms
77:	learn: 14.5830333	total: 382ms	remaining: 108ms
78:	learn: 14.5241206	total: 387ms	remaining: 103ms
79:	learn: 14.4892731	total: 392ms	remaining: 98.1ms
80:	learn: 14.4256605	total: 397ms	remaining: 93.2ms
81:	learn: 14.3666860	total: 402ms	remaining: 88.3ms
82:	learn: 14.2938372	total: 407ms	remaining: 83.4ms
83:	learn: 14.2161532	total: 412ms	remaining: 78.5ms
84:	learn: 14.1582910	total: 417ms	remaining: 73.5ms
85:	learn: 14.1029153	total: 422ms	remaining: 68.7ms
86:	learn: 14.0475835	total: 428ms	remaining: 63.9ms
87:	learn: 13.9892661	total: 432ms	remaining: 59ms
88:	learn: 13.9481628	total: 437ms	remaining: 54ms
89:	learn: 13.8483991	total: 441ms	remaining: 49ms
90:	learn: 13.7775614	total: 446ms	remaining: 44.1ms
91:	learn: 13.7304585	total: 450ms	remaining: 39.1ms
92:	learn: 13.6783381	total: 454ms	remaining: 34.2ms
93:	learn: 13.6356964	total: 458ms	remaining: 29.3ms
94:	learn: 13.5924371	total: 462ms	remaining: 24.3ms
95:	learn: 13.5400746	total: 466ms	remaining: 19.4ms
96:	learn: 13.4897333	total: 470ms	remaining: 14.5ms
97:	learn: 13.4470321	total: 474ms	remaining: 9.68ms
98:	learn: 13.3856082	total: 479ms	remaining: 4.84ms
99:	learn: 13.3082371	total: 483ms	remaining: 0us
0:	learn: 43.0395283	total: 8.98ms	remaining: 889ms
1:	learn: 42.1130223	total: 16.1ms	remaining: 787ms
2:	learn: 41.1753409	total: 23.6ms	remaining: 764ms
3:	learn: 40.3637444	total: 28.7ms	remaining: 690ms
4:	learn: 39.6508088	total: 33.8ms	remaining: 642ms
5:	learn: 38.7217934	total: 39.1ms	remaining: 613ms
6:	learn: 37.8538055	total: 44.1ms	remaining: 586ms
7:	learn: 36.9793574	total: 49ms	remaining: 563ms
8:	learn: 36.3076984	total: 54.3ms	remaining: 549ms
9:	learn: 35.6673160	total: 59.2ms	remaining: 533ms
10:	learn: 34.8889800	total: 64.2ms	remaining: 520ms
11:	learn: 34.1675517	total: 69.3ms	remaining: 508ms
12:	learn: 33.6779564	total: 74.6ms	remaining: 499ms
13:	learn: 33.0710039	total: 79.1ms	remaining: 486ms
14:	learn: 32.4966674	total: 84.2ms	remaining: 477ms
15:	learn: 31.9492856	total: 89.7ms	remaining: 471ms
16:	learn: 31.5108129	total: 94ms	remaining: 459ms
17:	learn: 30.9804023	total: 98.1ms	remaining: 447ms
18:	learn: 30.4169089	total: 103ms	remaining: 437ms
19:	learn: 29.8930375	total: 107ms	remaining: 428ms
20:	learn: 29.3974421	total: 111ms	remaining: 419ms
21:	learn: 28.8792307	total: 116ms	remaining: 411ms
22:	learn: 28.3894474	total: 120ms	remaining: 400ms
23:	learn: 27.9921276	total: 124ms	remaining: 393ms
24:	learn: 27.6158887	total: 128ms	remaining: 385ms
25:	learn: 27.2866950	total: 132ms	remaining: 377ms
26:	learn: 26.8770708	total: 136ms	remaining: 369ms
27:	learn: 26.6233005	total: 141ms	remaining: 362ms
28:	learn: 26.2921934	total: 145ms	remaining: 354ms
29:	learn: 25.9156920	total: 149ms	remaining: 348ms
30:	learn: 25.5311106	total: 151ms	remaining: 336ms
31:	learn: 25.2178997	total: 155ms	remaining: 329ms
32:	learn: 24.8572196	total: 159ms	remaining: 324ms
33:	learn: 24.5849710	total: 164ms	remaining: 318ms
34:	learn: 24.2209190	total: 168ms	remaining: 313ms
35:	learn: 23.8708250	total: 173ms	remaining: 307ms
36:	learn: 23.5325279	total: 177ms	remaining: 302ms
37:	learn: 23.2116148	total: 182ms	remaining: 296ms
38:	learn: 22.9696787	total: 186ms	remaining: 291ms
39:	learn: 22.7936783	total: 190ms	remaining: 286ms
40:	learn: 22.6228847	total: 195ms	remaining: 281ms
41:	learn: 22.3691527	total: 203ms	remaining: 280ms
42:	learn: 22.1002173	total: 210ms	remaining: 279ms
43:	learn: 21.9157268	total: 220ms	remaining: 280ms
44:	learn: 21.7229102	total: 229ms	remaining: 280ms
45:	learn: 21.4642005	total: 234ms	remaining: 275ms
46:	learn: 21.3029442	total: 239ms	remaining: 270ms
47:	learn: 21.1469792	total: 244ms	remaining: 265ms
48:	learn: 20.9458235	total: 249ms	remaining: 260ms
49:	learn: 20.7335242	total: 255ms	remaining: 255ms
50:	learn: 20.5440269	total: 261ms	remaining: 250ms
51:	learn: 20.3661449	total: 266ms	remaining: 245ms
52:	learn: 20.2158134	total: 271ms	remaining: 241ms
53:	learn: 19.9934873	total: 276ms	remaining: 235ms
54:	learn: 19.7879739	total: 281ms	remaining: 230ms
55:	learn: 19.6630460	total: 287ms	remaining: 226ms
56:	learn: 19.5152729	total: 294ms	remaining: 221ms
57:	learn: 19.3581128	total: 299ms	remaining: 216ms
58:	learn: 19.2209303	total: 303ms	remaining: 211ms
59:	learn: 19.0965248	total: 308ms	remaining: 205ms
60:	learn: 19.0035954	total: 312ms	remaining: 200ms
61:	learn: 18.8554149	total: 318ms	remaining: 195ms
62:	learn: 18.7095427	total: 322ms	remaining: 189ms
63:	learn: 18.5751494	total: 326ms	remaining: 183ms
64:	learn: 18.4678251	total: 330ms	remaining: 178ms
65:	learn: 18.3500325	total: 335ms	remaining: 173ms
66:	learn: 18.2088983	total: 339ms	remaining: 167ms
67:	learn: 18.0737705	total: 344ms	remaining: 162ms
68:	learn: 17.9325058	total: 349ms	remaining: 157ms
69:	learn: 17.8003911	total: 353ms	remaining: 151ms
70:	learn: 17.7385366	total: 358ms	remaining: 146ms
71:	learn: 17.6106998	total: 362ms	remaining: 141ms
72:	learn: 17.4816270	total: 367ms	remaining: 136ms
73:	learn: 17.4025554	total: 371ms	remaining: 130ms
74:	learn: 17.2902108	total: 376ms	remaining: 125ms
75:	learn: 17.2158048	total: 381ms	remaining: 120ms
76:	learn: 17.1261053	total: 389ms	remaining: 116ms
77:	learn: 17.0308917	total: 396ms	remaining: 112ms
78:	learn: 16.9546705	total: 405ms	remaining: 108ms
79:	learn: 16.8319165	total: 413ms	remaining: 103ms
80:	learn: 16.7687017	total: 418ms	remaining: 98.1ms
81:	learn: 16.6972326	total: 424ms	remaining: 93ms
82:	learn: 16.6124580	total: 429ms	remaining: 87.9ms
83:	learn: 16.4999052	total: 435ms	remaining: 82.8ms
84:	learn: 16.4302484	total: 440ms	remaining: 77.7ms
85:	learn: 16.3201363	total: 445ms	remaining: 72.5ms
86:	learn: 16.2534314	total: 450ms	remaining: 67.2ms
87:	learn: 16.1720485	total: 455ms	remaining: 62ms
88:	learn: 16.0625751	total: 460ms	remaining: 56.8ms
89:	learn: 15.9135088	total: 465ms	remaining: 51.6ms
90:	learn: 15.8658863	total: 470ms	remaining: 46.4ms
91:	learn: 15.8066805	total: 475ms	remaining: 41.3ms
92:	learn: 15.7412103	total: 481ms	remaining: 36.2ms
93:	learn: 15.6542776	total: 485ms	remaining: 31ms
94:	learn: 15.5760334	total: 489ms	remaining: 25.8ms
95:	learn: 15.5434131	total: 494ms	remaining: 20.6ms
96:	learn: 15.4709561	total: 498ms	remaining: 15.4ms
97:	learn: 15.4449618	total: 502ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 507ms	remaining: 5.12ms
99:	learn: 15.3106595	total: 511ms	remaining: 0us
0:	learn: 46.7142257	total: 4.87ms	remaining: 483ms
1:	learn: 45.7634153	total: 9.37ms	remaining: 459ms
2:	learn: 45.0054253	total: 13.7ms	remaining: 444ms
3:	learn: 44.2120432	total: 18.1ms	remaining: 435ms
4:	learn: 43.3960472	total: 25.8ms	remaining: 490ms
5:	learn: 42.8588120	total: 33.1ms	remaining: 519ms
6:	learn: 41.9533701	total: 42.7ms	remaining: 568ms
7:	learn: 41.2745030	total: 48.6ms	remaining: 559ms
8:	learn: 40.6797495	total: 55.6ms	remaining: 562ms
9:	learn: 39.9899571	total: 60.7ms	remaining: 546ms
10:	learn: 39.4682100	total: 66.2ms	remaining: 536ms
11:	learn: 39.0305595	total: 71.5ms	remaining: 524ms
12:	learn: 38.4200417	total: 77.2ms	remaining: 517ms
13:	learn: 37.8425194	total: 82.7ms	remaining: 508ms
14:	learn: 37.4203127	total: 87.8ms	remaining: 498ms
15:	learn: 36.9917688	total: 93.6ms	remaining: 492ms
16:	learn: 36.5544138	total: 99.1ms	remaining: 484ms
17:	learn: 36.0727019	total: 104ms	remaining: 476ms
18:	learn: 35.4835715	total: 109ms	remaining: 466ms
19:	learn: 34.9865654	total: 114ms	remaining: 457ms
20:	learn: 34.6063373	total: 120ms	remaining: 450ms
21:	learn: 34.0997289	total: 125ms	remaining: 443ms
22:	learn: 33.7313171	total: 129ms	remaining: 432ms
23:	learn: 33.3582000	total: 133ms	remaining: 421ms
24:	learn: 32.9432456	total: 137ms	remaining: 411ms
25:	learn: 32.5220888	total: 141ms	remaining: 401ms
26:	learn: 32.2172292	total: 145ms	remaining: 392ms
27:	learn: 31.8972904	total: 149ms	remaining: 383ms
28:	learn: 31.6405350	total: 153ms	remaining: 374ms
29:	learn: 31.4167702	total: 157ms	remaining: 365ms
30:	learn: 30.8541961	total: 158ms	remaining: 352ms
31:	learn: 30.5572111	total: 162ms	remaining: 345ms
32:	learn: 30.1700399	total: 166ms	remaining: 338ms
33:	learn: 29.8537271	total: 171ms	remaining: 331ms
34:	learn: 29.6192540	total: 175ms	remaining: 324ms
35:	learn: 29.3276362	total: 179ms	remaining: 318ms
36:	learn: 28.9985179	total: 184ms	remaining: 313ms
37:	learn: 28.7046880	total: 189ms	remaining: 308ms
38:	learn: 28.4412677	total: 194ms	remaining: 303ms
39:	learn: 28.1277292	total: 199ms	remaining: 298ms
40:	learn: 27.9000750	total: 203ms	remaining: 292ms
41:	learn: 27.5433162	total: 207ms	remaining: 286ms
42:	learn: 27.2493285	total: 212ms	remaining: 281ms
43:	learn: 26.9576632	total: 213ms	remaining: 272ms
44:	learn: 26.6177110	total: 217ms	remaining: 266ms
45:	learn: 26.2812456	total: 221ms	remaining: 260ms
46:	learn: 26.0803859	total: 225ms	remaining: 254ms
47:	learn: 25.9543581	total: 230ms	remaining: 249ms
48:	learn: 25.7951582	total: 234ms	remaining: 244ms
49:	learn: 25.6548184	total: 239ms	remaining: 239ms
50:	learn: 25.4010843	total: 243ms	remaining: 234ms
51:	learn: 24.9773937	total: 248ms	remaining: 229ms
52:	learn: 24.8026156	total: 252ms	remaining: 224ms
53:	learn: 24.5568053	total: 257ms	remaining: 219ms
54:	learn: 24.2281839	total: 263ms	remaining: 215ms
55:	learn: 23.9202795	total: 270ms	remaining: 213ms
56:	learn: 23.7625591	total: 278ms	remaining: 210ms
57:	learn: 23.5429721	total: 286ms	remaining: 207ms
58:	learn: 23.3175893	total: 292ms	remaining: 203ms
59:	learn: 23.2035130	total: 298ms	remaining: 199ms
60:	learn: 23.0232450	total: 303ms	remaining: 194ms
61:	learn: 22.8384958	total: 308ms	remaining: 189ms
62:	learn: 22.6499902	total: 313ms	remaining: 184ms
63:	learn: 22.4577426	total: 318ms	remaining: 179ms
64:	learn: 22.3333158	total: 324ms	remaining: 174ms
65:	learn: 22.2064131	total: 328ms	remaining: 169ms
66:	learn: 22.1434971	total: 334ms	remaining: 164ms
67:	learn: 21.9596519	total: 339ms	remaining: 159ms
68:	learn: 21.8475576	total: 344ms	remaining: 155ms
69:	learn: 21.6954745	total: 349ms	remaining: 149ms
70:	learn: 21.5635976	total: 354ms	remaining: 144ms
71:	learn: 21.4588506	total: 359ms	remaining: 140ms
72:	learn: 21.3527268	total: 364ms	remaining: 135ms
73:	learn: 21.2661288	total: 369ms	remaining: 129ms
74:	learn: 21.1817333	total: 372ms	remaining: 124ms
75:	learn: 21.0527553	total: 377ms	remaining: 119ms
76:	learn: 20.9229021	total: 381ms	remaining: 114ms
77:	learn: 20.7563946	total: 385ms	remaining: 108ms
78:	learn: 20.6569831	total: 388ms	remaining: 103ms
79:	learn: 20.4982663	total: 392ms	remaining: 98.1ms
80:	learn: 20.3185460	total: 396ms	remaining: 93ms
81:	learn: 20.2096241	total: 401ms	remaining: 88ms
82:	learn: 20.1274891	total: 405ms	remaining: 83ms
83:	learn: 20.0740139	total: 409ms	remaining: 77.9ms
84:	learn: 19.9630699	total: 413ms	remaining: 72.9ms
85:	learn: 19.8753899	total: 417ms	remaining: 67.9ms
86:	learn: 19.6563612	total: 421ms	remaining: 62.9ms
87:	learn: 19.4680232	total: 426ms	remaining: 58.1ms
88:	learn: 19.3503431	total: 430ms	remaining: 53.1ms
89:	learn: 19.2221379	total: 434ms	remaining: 48.3ms
90:	learn: 19.0732542	total: 439ms	remaining: 43.4ms
91:	learn: 18.9825190	total: 443ms	remaining: 38.6ms
92:	learn: 18.8839009	total: 448ms	remaining: 33.7ms
93:	learn: 18.8012219	total: 452ms	remaining: 28.9ms
94:	learn: 18.7172713	total: 457ms	remaining: 24.1ms
95:	learn: 18.6201170	total: 465ms	remaining: 19.4ms
96:	learn: 18.5318611	total: 473ms	remaining: 14.6ms
97:	learn: 18.3833356	total: 481ms	remaining: 9.81ms
98:	learn: 18.3289700	total: 487ms	remaining: 4.92ms
99:	learn: 18.2227333	total: 493ms	remaining: 0us
0:	learn: 46.3764524	total: 6.02ms	remaining: 596ms
1:	learn: 45.5561269	total: 9.93ms	remaining: 487ms
2:	learn: 44.8811245	total: 13.8ms	remaining: 446ms
3:	learn: 44.0788617	total: 17.6ms	remaining: 423ms
4:	learn: 43.3619790	total: 21.7ms	remaining: 412ms
5:	learn: 42.6912112	total: 25.7ms	remaining: 403ms
6:	learn: 42.2292118	total: 29.7ms	remaining: 395ms
7:	learn: 41.7725191	total: 33.5ms	remaining: 385ms
8:	learn: 41.1676614	total: 37.5ms	remaining: 379ms
9:	learn: 40.5771076	total: 41.6ms	remaining: 374ms
10:	learn: 39.8343757	total: 45.4ms	remaining: 367ms
11:	learn: 39.3761142	total: 49.2ms	remaining: 361ms
12:	learn: 38.5254692	total: 53.4ms	remaining: 357ms
13:	learn: 37.9629555	total: 57.6ms	remaining: 354ms
14:	learn: 37.4418438	total: 61.5ms	remaining: 349ms
15:	learn: 37.0507283	total: 65.6ms	remaining: 344ms
16:	learn: 36.6264217	total: 69.8ms	remaining: 341ms
17:	learn: 36.1114940	total: 74.6ms	remaining: 340ms
18:	learn: 35.7193862	total: 78.7ms	remaining: 336ms
19:	learn: 35.3301177	total: 82.7ms	remaining: 331ms
20:	learn: 35.0598280	total: 87.1ms	remaining: 328ms
21:	learn: 34.5469736	total: 91.7ms	remaining: 325ms
22:	learn: 34.2064215	total: 95.8ms	remaining: 321ms
23:	learn: 33.7280710	total: 100ms	remaining: 317ms
24:	learn: 33.3282940	total: 104ms	remaining: 313ms
25:	learn: 32.8478961	total: 109ms	remaining: 310ms
26:	learn: 32.5722164	total: 114ms	remaining: 307ms
27:	learn: 32.2457019	total: 118ms	remaining: 304ms
28:	learn: 31.9230495	total: 127ms	remaining: 310ms
29:	learn: 31.4311611	total: 134ms	remaining: 312ms
30:	learn: 30.9179052	total: 141ms	remaining: 314ms
31:	learn: 30.6201141	total: 149ms	remaining: 317ms
32:	learn: 30.3421106	total: 154ms	remaining: 314ms
33:	learn: 29.9885373	total: 160ms	remaining: 310ms
34:	learn: 29.7462780	total: 166ms	remaining: 309ms
35:	learn: 29.3607153	total: 172ms	remaining: 305ms
36:	learn: 29.1793078	total: 177ms	remaining: 302ms
37:	learn: 28.9276538	total: 183ms	remaining: 299ms
38:	learn: 28.6903934	total: 189ms	remaining: 295ms
39:	learn: 28.2095033	total: 194ms	remaining: 292ms
40:	learn: 27.7990608	total: 199ms	remaining: 287ms
41:	learn: 27.5406632	total: 204ms	remaining: 282ms
42:	learn: 27.2575376	total: 209ms	remaining: 277ms
43:	learn: 26.9741707	total: 214ms	remaining: 273ms
44:	learn: 26.6606899	total: 220ms	remaining: 268ms
45:	learn: 26.4015833	total: 225ms	remaining: 264ms
46:	learn: 26.1828993	total: 230ms	remaining: 259ms
47:	learn: 26.0233709	total: 233ms	remaining: 252ms
48:	learn: 25.9300399	total: 237ms	remaining: 247ms
49:	learn: 25.5861489	total: 241ms	remaining: 241ms
50:	learn: 25.4322012	total: 245ms	remaining: 236ms
51:	learn: 25.1595644	total: 250ms	remaining: 231ms
52:	learn: 24.9955303	total: 254ms	remaining: 225ms
53:	learn: 24.7273966	total: 258ms	remaining: 220ms
54:	learn: 24.5747978	total: 263ms	remaining: 215ms
55:	learn: 24.3807977	total: 267ms	remaining: 210ms
56:	learn: 24.1689569	total: 272ms	remaining: 205ms
57:	learn: 23.9898221	total: 276ms	remaining: 200ms
58:	learn: 23.7566414	total: 280ms	remaining: 194ms
59:	learn: 23.6641165	total: 284ms	remaining: 189ms
60:	learn: 23.5658066	total: 289ms	remaining: 185ms
61:	learn: 23.4338851	total: 293ms	remaining: 180ms
62:	learn: 23.2408837	total: 298ms	remaining: 175ms
63:	learn: 23.0642038	total: 302ms	remaining: 170ms
64:	learn: 22.9032045	total: 307ms	remaining: 165ms
65:	learn: 22.7736138	total: 312ms	remaining: 160ms
66:	learn: 22.6836443	total: 316ms	remaining: 156ms
67:	learn: 22.5983654	total: 323ms	remaining: 152ms
68:	learn: 22.4419813	total: 330ms	remaining: 148ms
69:	learn: 22.2863339	total: 338ms	remaining: 145ms
70:	learn: 22.1792943	total: 345ms	remaining: 141ms
71:	learn: 22.1130574	total: 353ms	remaining: 137ms
72:	learn: 21.9858161	total: 358ms	remaining: 132ms
73:	learn: 21.8577784	total: 363ms	remaining: 128ms
74:	learn: 21.7845222	total: 368ms	remaining: 123ms
75:	learn: 21.6831390	total: 373ms	remaining: 118ms
76:	learn: 21.6292521	total: 378ms	remaining: 113ms
77:	learn: 21.5789330	total: 383ms	remaining: 108ms
78:	learn: 21.5420942	total: 388ms	remaining: 103ms
79:	learn: 21.4280939	total: 394ms	remaining: 98.4ms
80:	learn: 21.3641165	total: 399ms	remaining: 93.6ms
81:	learn: 21.2734814	total: 404ms	remaining: 88.7ms
82:	learn: 21.2220323	total: 409ms	remaining: 83.7ms
83:	learn: 21.0625792	total: 414ms	remaining: 78.9ms
84:	learn: 20.9488320	total: 419ms	remaining: 74ms
85:	learn: 20.8504255	total: 424ms	remaining: 69ms
86:	learn: 20.7848510	total: 428ms	remaining: 64ms
87:	learn: 20.7247442	total: 432ms	remaining: 59ms
88:	learn: 20.5698590	total: 436ms	remaining: 53.9ms
89:	learn: 20.4067620	total: 440ms	remaining: 48.9ms
90:	learn: 20.3062482	total: 445ms	remaining: 44ms
91:	learn: 20.2029696	total: 449ms	remaining: 39ms
92:	learn: 20.1384849	total: 453ms	remaining: 34.1ms
93:	learn: 20.0260709	total: 457ms	remaining: 29.2ms
94:	learn: 19.9122100	total: 461ms	remaining: 24.3ms
95:	learn: 19.8648487	total: 466ms	remaining: 19.4ms
96:	learn: 19.8207072	total: 470ms	remaining: 14.5ms
97:	learn: 19.7261189	total: 475ms	remaining: 9.69ms
98:	learn: 19.7042438	total: 480ms	remaining: 4.84ms
99:	learn: 19.6546645	total: 484ms	remaining: 0us
0:	learn: 47.0239288	total: 6.62ms	remaining: 656ms
1:	learn: 46.2253829	total: 14.3ms	remaining: 699ms
2:	learn: 45.5580301	total: 19.3ms	remaining: 626ms
3:	learn: 44.7273237	total: 24.6ms	remaining: 591ms
4:	learn: 43.8867421	total: 30ms	remaining: 569ms
5:	learn: 43.3615911	total: 35.2ms	remaining: 551ms
6:	learn: 42.8548390	total: 40.2ms	remaining: 534ms
7:	learn: 42.1606758	total: 45.7ms	remaining: 526ms
8:	learn: 41.6625870	total: 50.6ms	remaining: 512ms
9:	learn: 40.9497092	total: 55.7ms	remaining: 501ms
10:	learn: 40.1886318	total: 61.2ms	remaining: 495ms
11:	learn: 39.7456423	total: 66.5ms	remaining: 488ms
12:	learn: 39.1171373	total: 71.1ms	remaining: 476ms
13:	learn: 38.5451069	total: 76.8ms	remaining: 472ms
14:	learn: 38.0155834	total: 82.1ms	remaining: 465ms
15:	learn: 37.5631354	total: 86.8ms	remaining: 456ms
16:	learn: 37.1030023	total: 90.7ms	remaining: 443ms
17:	learn: 36.4563029	total: 94.5ms	remaining: 430ms
18:	learn: 36.0160976	total: 98.6ms	remaining: 420ms
19:	learn: 35.5079827	total: 102ms	remaining: 410ms
20:	learn: 35.2111885	total: 106ms	remaining: 400ms
21:	learn: 34.9397465	total: 110ms	remaining: 390ms
22:	learn: 34.5270048	total: 114ms	remaining: 383ms
23:	learn: 34.0169260	total: 118ms	remaining: 374ms
24:	learn: 33.7454892	total: 122ms	remaining: 367ms
25:	learn: 33.2648157	total: 126ms	remaining: 360ms
26:	learn: 32.8899427	total: 130ms	remaining: 352ms
27:	learn: 32.6185050	total: 135ms	remaining: 346ms
28:	learn: 32.3528531	total: 139ms	remaining: 340ms
29:	learn: 32.0859923	total: 143ms	remaining: 333ms
30:	learn: 31.6511144	total: 146ms	remaining: 326ms
31:	learn: 31.2571765	total: 151ms	remaining: 321ms
32:	learn: 30.9770049	total: 156ms	remaining: 316ms
33:	learn: 30.6084872	total: 160ms	remaining: 311ms
34:	learn: 30.3448632	total: 165ms	remaining: 306ms
35:	learn: 30.0360942	total: 169ms	remaining: 301ms
36:	learn: 29.6648968	total: 174ms	remaining: 295ms
37:	learn: 29.3165114	total: 178ms	remaining: 290ms
38:	learn: 29.0829198	total: 183ms	remaining: 286ms
39:	learn: 28.7752064	total: 190ms	remaining: 285ms
40:	learn: 28.3622191	total: 197ms	remaining: 284ms
41:	learn: 28.1346631	total: 206ms	remaining: 285ms
42:	learn: 27.9585719	total: 212ms	remaining: 281ms
43:	learn: 27.6565566	total: 218ms	remaining: 277ms
44:	learn: 27.3616172	total: 223ms	remaining: 273ms
45:	learn: 27.0658637	total: 228ms	remaining: 268ms
46:	learn: 26.8660382	total: 233ms	remaining: 263ms
47:	learn: 26.6536078	total: 238ms	remaining: 258ms
48:	learn: 26.3524440	total: 243ms	remaining: 253ms
49:	learn: 26.1595277	total: 248ms	remaining: 248ms
50:	learn: 25.9273523	total: 253ms	remaining: 243ms
51:	learn: 25.7195580	total: 258ms	remaining: 239ms
52:	learn: 25.5730225	total: 264ms	remaining: 234ms
53:	learn: 25.3455276	total: 268ms	remaining: 229ms
54:	learn: 25.2289675	total: 273ms	remaining: 224ms
55:	learn: 25.0133024	total: 279ms	remaining: 219ms
56:	learn: 24.8406714	total: 285ms	remaining: 215ms
57:	learn: 24.6367857	total: 289ms	remaining: 209ms
58:	learn: 24.5338177	total: 293ms	remaining: 204ms
59:	learn: 24.3799964	total: 297ms	remaining: 198ms
60:	learn: 24.1447492	total: 301ms	remaining: 192ms
61:	learn: 23.9880495	total: 305ms	remaining: 187ms
62:	learn: 23.7140630	total: 309ms	remaining: 181ms
63:	learn: 23.5003791	total: 313ms	remaining: 176ms
64:	learn: 23.3207645	total: 317ms	remaining: 170ms
65:	learn: 23.1958356	total: 321ms	remaining: 165ms
66:	learn: 23.0471302	total: 325ms	remaining: 160ms
67:	learn: 22.8977183	total: 329ms	remaining: 155ms
68:	learn: 22.7187400	total: 333ms	remaining: 150ms
69:	learn: 22.6523405	total: 337ms	remaining: 144ms
70:	learn: 22.4767453	total: 342ms	remaining: 140ms
71:	learn: 22.3243677	total: 346ms	remaining: 134ms
72:	learn: 22.2133096	total: 350ms	remaining: 129ms
73:	learn: 22.1151713	total: 354ms	remaining: 124ms
74:	learn: 22.0296666	total: 359ms	remaining: 120ms
75:	learn: 21.9195980	total: 363ms	remaining: 115ms
76:	learn: 21.8401730	total: 368ms	remaining: 110ms
77:	learn: 21.8079797	total: 372ms	remaining: 105ms
78:	learn: 21.7274109	total: 376ms	remaining: 100ms
79:	learn: 21.6663032	total: 381ms	remaining: 95.2ms
80:	learn: 21.5633117	total: 389ms	remaining: 91.2ms
81:	learn: 21.4542467	total: 397ms	remaining: 87.1ms
82:	learn: 21.3177957	total: 405ms	remaining: 82.9ms
83:	learn: 21.1289167	total: 411ms	remaining: 78.3ms
84:	learn: 21.0297368	total: 418ms	remaining: 73.7ms
85:	learn: 20.9089564	total: 423ms	remaining: 68.8ms
86:	learn: 20.7653988	total: 428ms	remaining: 64ms
87:	learn: 20.6521894	total: 434ms	remaining: 59.1ms
88:	learn: 20.5193021	total: 439ms	remaining: 54.2ms
89:	learn: 20.4361620	total: 457ms	remaining: 50.7ms
90:	learn: 20.3546710	total: 461ms	remaining: 45.6ms
91:	learn: 20.2513296	total: 466ms	remaining: 40.5ms
92:	learn: 20.1605550	total: 471ms	remaining: 35.5ms
93:	learn: 20.0515942	total: 477ms	remaining: 30.4ms
94:	learn: 19.9800764	total: 481ms	remaining: 25.3ms
95:	learn: 19.8996532	total: 486ms	remaining: 20.2ms
96:	learn: 19.8450910	total: 490ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 494ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 500ms	remaining: 5.05ms
99:	learn: 19.6328825	total: 505ms	remaining: 0us
0:	learn: 27.5585353	total: 5.03ms	remaining: 498ms
1:	learn: 27.1656995	total: 10.1ms	remaining: 495ms
2:	learn: 26.8590175	total: 15.4ms	remaining: 498ms
3:	learn: 26.5818406	total: 19.9ms	remaining: 477ms
4:	learn: 26.1148663	total: 25.9ms	remaining: 491ms
5:	learn: 25.7690484	total: 33.5ms	remaining: 524ms
6:	learn: 25.3489206	total: 41.8ms	remaining: 555ms
7:	learn: 24.9542406	total: 51.1ms	remaining: 588ms
8:	learn: 24.6777517	total: 60.9ms	remaining: 616ms
9:	learn: 24.3242344	total: 66.7ms	remaining: 600ms
10:	learn: 24.0383073	total: 72.7ms	remaining: 589ms
11:	learn: 23.7383420	total: 78.4ms	remaining: 575ms
12:	learn: 23.3461670	total: 84.2ms	remaining: 564ms
13:	learn: 23.0928636	total: 89.3ms	remaining: 549ms
14:	learn: 22.8770414	total: 94.3ms	remaining: 534ms
15:	learn: 22.6323214	total: 99.4ms	remaining: 522ms
16:	learn: 22.3597072	total: 105ms	remaining: 511ms
17:	learn: 22.1079813	total: 110ms	remaining: 499ms
18:	learn: 21.8421199	total: 114ms	remaining: 488ms
19:	learn: 21.6576508	total: 120ms	remaining: 479ms
20:	learn: 21.4301268	total: 125ms	remaining: 472ms
21:	learn: 21.2287388	total: 131ms	remaining: 463ms
22:	learn: 21.0553872	total: 135ms	remaining: 453ms
23:	learn: 20.8977091	total: 139ms	remaining: 441ms
24:	learn: 20.6619051	total: 143ms	remaining: 430ms
25:	learn: 20.5040955	total: 148ms	remaining: 420ms
26:	learn: 20.3181195	total: 152ms	remaining: 411ms
27:	learn: 20.0869436	total: 157ms	remaining: 403ms
28:	learn: 19.9375985	total: 161ms	remaining: 394ms
29:	learn: 19.8247516	total: 165ms	remaining: 385ms
30:	learn: 19.6261697	total: 169ms	remaining: 377ms
31:	learn: 19.4547236	total: 174ms	remaining: 369ms
32:	learn: 19.3157092	total: 178ms	remaining: 361ms
33:	learn: 19.1561419	total: 182ms	remaining: 354ms
34:	learn: 19.0453620	total: 187ms	remaining: 347ms
35:	learn: 18.8738574	total: 191ms	remaining: 339ms
36:	learn: 18.7072907	total: 195ms	remaining: 333ms
37:	learn: 18.5877943	total: 200ms	remaining: 326ms
38:	learn: 18.4436380	total: 204ms	remaining: 319ms
39:	learn: 18.3463356	total: 208ms	remaining: 313ms
40:	learn: 18.2008059	total: 213ms	remaining: 306ms
41:	learn: 18.0582079	total: 217ms	remaining: 299ms
42:	learn: 17.8891982	total: 221ms	remaining: 293ms
43:	learn: 17.7332246	total: 225ms	remaining: 287ms
44:	learn: 17.6206421	total: 230ms	remaining: 281ms
45:	learn: 17.4982800	total: 234ms	remaining: 275ms
46:	learn: 17.3970150	total: 239ms	remaining: 270ms
47:	learn: 17.3058203	total: 243ms	remaining: 264ms
48:	learn: 17.1789256	total: 248ms	remaining: 258ms
49:	learn: 17.0916229	total: 252ms	remaining: 252ms
50:	learn: 16.9859820	total: 258ms	remaining: 248ms
51:	learn: 16.8995582	total: 267ms	remaining: 246ms
52:	learn: 16.8137014	total: 274ms	remaining: 243ms
53:	learn: 16.7021451	total: 282ms	remaining: 241ms
54:	learn: 16.5895582	total: 292ms	remaining: 239ms
55:	learn: 16.5015639	total: 298ms	remaining: 234ms
56:	learn: 16.4356637	total: 304ms	remaining: 229ms
57:	learn: 16.3514525	total: 309ms	remaining: 224ms
58:	learn: 16.2401369	total: 314ms	remaining: 218ms
59:	learn: 16.1293223	total: 320ms	remaining: 213ms
60:	learn: 16.0271167	total: 325ms	remaining: 208ms
61:	learn: 15.9126257	total: 331ms	remaining: 203ms
62:	learn: 15.8391096	total: 336ms	remaining: 197ms
63:	learn: 15.7441773	total: 341ms	remaining: 192ms
64:	learn: 15.6885195	total: 346ms	remaining: 186ms
65:	learn: 15.6052039	total: 351ms	remaining: 181ms
66:	learn: 15.5074202	total: 356ms	remaining: 175ms
67:	learn: 15.4054338	total: 361ms	remaining: 170ms
68:	learn: 15.2885714	total: 366ms	remaining: 164ms
69:	learn: 15.2157472	total: 372ms	remaining: 160ms
70:	learn: 15.1031554	total: 378ms	remaining: 154ms
71:	learn: 15.0237470	total: 383ms	remaining: 149ms
72:	learn: 14.9756825	total: 389ms	remaining: 144ms
73:	learn: 14.8840596	total: 394ms	remaining: 138ms
74:	learn: 14.8077061	total: 398ms	remaining: 133ms
75:	learn: 14.7444437	total: 402ms	remaining: 127ms
76:	learn: 14.6751720	total: 407ms	remaining: 121ms
77:	learn: 14.5830333	total: 411ms	remaining: 116ms
78:	learn: 14.5241206	total: 415ms	remaining: 110ms
79:	learn: 14.4892731	total: 419ms	remaining: 105ms
80:	learn: 14.4256605	total: 424ms	remaining: 99.4ms
81:	learn: 14.3666860	total: 428ms	remaining: 94ms
82:	learn: 14.2938372	total: 433ms	remaining: 88.7ms
83:	learn: 14.2161532	total: 437ms	remaining: 83.3ms
84:	learn: 14.1582910	total: 442ms	remaining: 78ms
85:	learn: 14.1029153	total: 447ms	remaining: 72.7ms
86:	learn: 14.0475835	total: 451ms	remaining: 67.4ms
87:	learn: 13.9892661	total: 456ms	remaining: 62.2ms
88:	learn: 13.9481628	total: 485ms	remaining: 60ms
89:	learn: 13.8483991	total: 491ms	remaining: 54.5ms
90:	learn: 13.7775614	total: 496ms	remaining: 49.1ms
91:	learn: 13.7304585	total: 502ms	remaining: 43.6ms
92:	learn: 13.6783381	total: 507ms	remaining: 38.1ms
93:	learn: 13.6356964	total: 512ms	remaining: 32.7ms
94:	learn: 13.5924371	total: 517ms	remaining: 27.2ms
95:	learn: 13.5400746	total: 522ms	remaining: 21.8ms
96:	learn: 13.4897333	total: 527ms	remaining: 16.3ms
97:	learn: 13.4470321	total: 532ms	remaining: 10.9ms
98:	learn: 13.3856082	total: 537ms	remaining: 5.43ms
99:	learn: 13.3082371	total: 542ms	remaining: 0us
0:	learn: 43.0395283	total: 4.72ms	remaining: 467ms
1:	learn: 42.1130223	total: 8.55ms	remaining: 419ms
2:	learn: 41.1753409	total: 12.2ms	remaining: 393ms
3:	learn: 40.3637444	total: 16ms	remaining: 383ms
4:	learn: 39.6508088	total: 19.8ms	remaining: 377ms
5:	learn: 38.7217934	total: 24.1ms	remaining: 377ms
6:	learn: 37.8538055	total: 28.1ms	remaining: 374ms
7:	learn: 36.9793574	total: 31.9ms	remaining: 366ms
8:	learn: 36.3076984	total: 35.8ms	remaining: 362ms
9:	learn: 35.6673160	total: 40.7ms	remaining: 367ms
10:	learn: 34.8889800	total: 45.3ms	remaining: 367ms
11:	learn: 34.1675517	total: 49.5ms	remaining: 363ms
12:	learn: 33.6779564	total: 54ms	remaining: 361ms
13:	learn: 33.0710039	total: 58.5ms	remaining: 359ms
14:	learn: 32.4966674	total: 62.8ms	remaining: 356ms
15:	learn: 31.9492856	total: 67.2ms	remaining: 353ms
16:	learn: 31.5108129	total: 72ms	remaining: 351ms
17:	learn: 30.9804023	total: 79.3ms	remaining: 361ms
18:	learn: 30.4169089	total: 86.3ms	remaining: 368ms
19:	learn: 29.8930375	total: 94.8ms	remaining: 379ms
20:	learn: 29.3974421	total: 103ms	remaining: 387ms
21:	learn: 28.8792307	total: 108ms	remaining: 384ms
22:	learn: 28.3894474	total: 113ms	remaining: 379ms
23:	learn: 27.9921276	total: 118ms	remaining: 375ms
24:	learn: 27.6158887	total: 124ms	remaining: 371ms
25:	learn: 27.2866950	total: 129ms	remaining: 366ms
26:	learn: 26.8770708	total: 134ms	remaining: 362ms
27:	learn: 26.6233005	total: 139ms	remaining: 357ms
28:	learn: 26.2921934	total: 144ms	remaining: 353ms
29:	learn: 25.9156920	total: 149ms	remaining: 348ms
30:	learn: 25.5311106	total: 151ms	remaining: 336ms
31:	learn: 25.2178997	total: 156ms	remaining: 332ms
32:	learn: 24.8572196	total: 161ms	remaining: 327ms
33:	learn: 24.5849710	total: 166ms	remaining: 323ms
34:	learn: 24.2209190	total: 171ms	remaining: 318ms
35:	learn: 23.8708250	total: 176ms	remaining: 313ms
36:	learn: 23.5325279	total: 180ms	remaining: 306ms
37:	learn: 23.2116148	total: 184ms	remaining: 300ms
38:	learn: 22.9696787	total: 188ms	remaining: 294ms
39:	learn: 22.7936783	total: 192ms	remaining: 288ms
40:	learn: 22.6228847	total: 196ms	remaining: 283ms
41:	learn: 22.3691527	total: 201ms	remaining: 277ms
42:	learn: 22.1002173	total: 205ms	remaining: 271ms
43:	learn: 21.9157268	total: 209ms	remaining: 266ms
44:	learn: 21.7229102	total: 213ms	remaining: 261ms
45:	learn: 21.4642005	total: 217ms	remaining: 255ms
46:	learn: 21.3029442	total: 222ms	remaining: 250ms
47:	learn: 21.1469792	total: 225ms	remaining: 244ms
48:	learn: 20.9458235	total: 230ms	remaining: 239ms
49:	learn: 20.7335242	total: 234ms	remaining: 234ms
50:	learn: 20.5440269	total: 238ms	remaining: 229ms
51:	learn: 20.3661449	total: 243ms	remaining: 224ms
52:	learn: 20.2158134	total: 247ms	remaining: 219ms
53:	learn: 19.9934873	total: 252ms	remaining: 215ms
54:	learn: 19.7879739	total: 256ms	remaining: 210ms
55:	learn: 19.6630460	total: 261ms	remaining: 205ms
56:	learn: 19.5152729	total: 266ms	remaining: 201ms
57:	learn: 19.3581128	total: 270ms	remaining: 196ms
58:	learn: 19.2209303	total: 279ms	remaining: 194ms
59:	learn: 19.0965248	total: 287ms	remaining: 191ms
60:	learn: 19.0035954	total: 295ms	remaining: 189ms
61:	learn: 18.8554149	total: 302ms	remaining: 185ms
62:	learn: 18.7095427	total: 307ms	remaining: 180ms
63:	learn: 18.5751494	total: 313ms	remaining: 176ms
64:	learn: 18.4678251	total: 318ms	remaining: 171ms
65:	learn: 18.3500325	total: 323ms	remaining: 166ms
66:	learn: 18.2088983	total: 329ms	remaining: 162ms
67:	learn: 18.0737705	total: 334ms	remaining: 157ms
68:	learn: 17.9325058	total: 339ms	remaining: 152ms
69:	learn: 17.8003911	total: 344ms	remaining: 148ms
70:	learn: 17.7385366	total: 349ms	remaining: 143ms
71:	learn: 17.6106998	total: 354ms	remaining: 138ms
72:	learn: 17.4816270	total: 359ms	remaining: 133ms
73:	learn: 17.4025554	total: 364ms	remaining: 128ms
74:	learn: 17.2902108	total: 370ms	remaining: 123ms
75:	learn: 17.2158048	total: 375ms	remaining: 119ms
76:	learn: 17.1261053	total: 380ms	remaining: 113ms
77:	learn: 17.0308917	total: 384ms	remaining: 108ms
78:	learn: 16.9546705	total: 388ms	remaining: 103ms
79:	learn: 16.8319165	total: 392ms	remaining: 98.1ms
80:	learn: 16.7687017	total: 396ms	remaining: 93ms
81:	learn: 16.6972326	total: 401ms	remaining: 87.9ms
82:	learn: 16.6124580	total: 405ms	remaining: 83ms
83:	learn: 16.4999052	total: 409ms	remaining: 78ms
84:	learn: 16.4302484	total: 413ms	remaining: 73ms
85:	learn: 16.3201363	total: 418ms	remaining: 68ms
86:	learn: 16.2534314	total: 422ms	remaining: 63.1ms
87:	learn: 16.1720485	total: 427ms	remaining: 58.2ms
88:	learn: 16.0625751	total: 431ms	remaining: 53.3ms
89:	learn: 15.9135088	total: 437ms	remaining: 48.5ms
90:	learn: 15.8658863	total: 442ms	remaining: 43.7ms
91:	learn: 15.8066805	total: 447ms	remaining: 38.9ms
92:	learn: 15.7412103	total: 452ms	remaining: 34ms
93:	learn: 15.6542776	total: 457ms	remaining: 29.2ms
94:	learn: 15.5760334	total: 462ms	remaining: 24.3ms
95:	learn: 15.5434131	total: 467ms	remaining: 19.5ms
96:	learn: 15.4709561	total: 475ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 485ms	remaining: 9.89ms
98:	learn: 15.3752761	total: 496ms	remaining: 5.01ms
99:	learn: 15.3106595	total: 504ms	remaining: 0us
0:	learn: 46.7142257	total: 6.06ms	remaining: 600ms
1:	learn: 45.7634153	total: 12ms	remaining: 589ms
2:	learn: 45.0054253	total: 16.3ms	remaining: 528ms
3:	learn: 44.2120432	total: 20.4ms	remaining: 489ms
4:	learn: 43.3960472	total: 24.4ms	remaining: 464ms
5:	learn: 42.8588120	total: 28.8ms	remaining: 452ms
6:	learn: 41.9533701	total: 32.6ms	remaining: 433ms
7:	learn: 41.2745030	total: 36.7ms	remaining: 422ms
8:	learn: 40.6797495	total: 40.9ms	remaining: 414ms
9:	learn: 39.9899571	total: 45.2ms	remaining: 407ms
10:	learn: 39.4682100	total: 49.4ms	remaining: 399ms
11:	learn: 39.0305595	total: 53.7ms	remaining: 394ms
12:	learn: 38.4200417	total: 57.8ms	remaining: 387ms
13:	learn: 37.8425194	total: 62.1ms	remaining: 381ms
14:	learn: 37.4203127	total: 66.6ms	remaining: 377ms
15:	learn: 36.9917688	total: 70.5ms	remaining: 370ms
16:	learn: 36.5544138	total: 74.5ms	remaining: 364ms
17:	learn: 36.0727019	total: 78.8ms	remaining: 359ms
18:	learn: 35.4835715	total: 83.3ms	remaining: 355ms
19:	learn: 34.9865654	total: 88ms	remaining: 352ms
20:	learn: 34.6063373	total: 92.6ms	remaining: 349ms
21:	learn: 34.0997289	total: 97.6ms	remaining: 346ms
22:	learn: 33.7313171	total: 102ms	remaining: 342ms
23:	learn: 33.3582000	total: 107ms	remaining: 338ms
24:	learn: 32.9432456	total: 111ms	remaining: 333ms
25:	learn: 32.5220888	total: 116ms	remaining: 329ms
26:	learn: 32.2172292	total: 124ms	remaining: 335ms
27:	learn: 31.8972904	total: 132ms	remaining: 340ms
28:	learn: 31.6405350	total: 141ms	remaining: 344ms
29:	learn: 31.4167702	total: 148ms	remaining: 346ms
30:	learn: 30.8541961	total: 150ms	remaining: 335ms
31:	learn: 30.5572111	total: 156ms	remaining: 331ms
32:	learn: 30.1700399	total: 163ms	remaining: 332ms
33:	learn: 29.8537271	total: 169ms	remaining: 327ms
34:	learn: 29.6192540	total: 174ms	remaining: 323ms
35:	learn: 29.3276362	total: 180ms	remaining: 320ms
36:	learn: 28.9985179	total: 185ms	remaining: 316ms
37:	learn: 28.7046880	total: 191ms	remaining: 312ms
38:	learn: 28.4412677	total: 196ms	remaining: 307ms
39:	learn: 28.1277292	total: 201ms	remaining: 302ms
40:	learn: 27.9000750	total: 206ms	remaining: 297ms
41:	learn: 27.5433162	total: 212ms	remaining: 293ms
42:	learn: 27.2493285	total: 218ms	remaining: 289ms
43:	learn: 26.9576632	total: 220ms	remaining: 280ms
44:	learn: 26.6177110	total: 224ms	remaining: 274ms
45:	learn: 26.2812456	total: 229ms	remaining: 269ms
46:	learn: 26.0803859	total: 233ms	remaining: 263ms
47:	learn: 25.9543581	total: 238ms	remaining: 258ms
48:	learn: 25.7951582	total: 242ms	remaining: 252ms
49:	learn: 25.6548184	total: 247ms	remaining: 247ms
50:	learn: 25.4010843	total: 251ms	remaining: 241ms
51:	learn: 24.9773937	total: 256ms	remaining: 236ms
52:	learn: 24.8026156	total: 260ms	remaining: 231ms
53:	learn: 24.5568053	total: 265ms	remaining: 226ms
54:	learn: 24.2281839	total: 270ms	remaining: 221ms
55:	learn: 23.9202795	total: 274ms	remaining: 216ms
56:	learn: 23.7625591	total: 279ms	remaining: 210ms
57:	learn: 23.5429721	total: 283ms	remaining: 205ms
58:	learn: 23.3175893	total: 288ms	remaining: 200ms
59:	learn: 23.2035130	total: 292ms	remaining: 195ms
60:	learn: 23.0232450	total: 298ms	remaining: 190ms
61:	learn: 22.8384958	total: 302ms	remaining: 185ms
62:	learn: 22.6499902	total: 307ms	remaining: 180ms
63:	learn: 22.4577426	total: 311ms	remaining: 175ms
64:	learn: 22.3333158	total: 318ms	remaining: 171ms
65:	learn: 22.2064131	total: 325ms	remaining: 167ms
66:	learn: 22.1434971	total: 333ms	remaining: 164ms
67:	learn: 21.9596519	total: 340ms	remaining: 160ms
68:	learn: 21.8475576	total: 348ms	remaining: 156ms
69:	learn: 21.6954745	total: 354ms	remaining: 152ms
70:	learn: 21.5635976	total: 360ms	remaining: 147ms
71:	learn: 21.4588506	total: 365ms	remaining: 142ms
72:	learn: 21.3527268	total: 370ms	remaining: 137ms
73:	learn: 21.2661288	total: 376ms	remaining: 132ms
74:	learn: 21.1817333	total: 381ms	remaining: 127ms
75:	learn: 21.0527553	total: 386ms	remaining: 122ms
76:	learn: 20.9229021	total: 391ms	remaining: 117ms
77:	learn: 20.7563946	total: 396ms	remaining: 112ms
78:	learn: 20.6569831	total: 400ms	remaining: 106ms
79:	learn: 20.4982663	total: 406ms	remaining: 102ms
80:	learn: 20.3185460	total: 412ms	remaining: 96.6ms
81:	learn: 20.2096241	total: 416ms	remaining: 91.4ms
82:	learn: 20.1274891	total: 420ms	remaining: 86.1ms
83:	learn: 20.0740139	total: 424ms	remaining: 80.8ms
84:	learn: 19.9630699	total: 429ms	remaining: 75.6ms
85:	learn: 19.8753899	total: 433ms	remaining: 70.5ms
86:	learn: 19.6563612	total: 438ms	remaining: 65.4ms
87:	learn: 19.4680232	total: 442ms	remaining: 60.3ms
88:	learn: 19.3503431	total: 447ms	remaining: 55.2ms
89:	learn: 19.2221379	total: 451ms	remaining: 50.1ms
90:	learn: 19.0732542	total: 455ms	remaining: 45ms
91:	learn: 18.9825190	total: 460ms	remaining: 40ms
92:	learn: 18.8839009	total: 465ms	remaining: 35ms
93:	learn: 18.8012219	total: 469ms	remaining: 30ms
94:	learn: 18.7172713	total: 474ms	remaining: 24.9ms
95:	learn: 18.6201170	total: 479ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 484ms	remaining: 15ms
97:	learn: 18.3833356	total: 489ms	remaining: 9.97ms
98:	learn: 18.3289700	total: 494ms	remaining: 4.99ms
99:	learn: 18.2227333	total: 499ms	remaining: 0us
0:	learn: 46.3764524	total: 6.13ms	remaining: 607ms
1:	learn: 45.5561269	total: 11.1ms	remaining: 543ms
2:	learn: 44.8811245	total: 15.8ms	remaining: 512ms
3:	learn: 44.0788617	total: 21.1ms	remaining: 507ms
4:	learn: 43.3619790	total: 26.3ms	remaining: 499ms
5:	learn: 42.6912112	total: 31.4ms	remaining: 491ms
6:	learn: 42.2292118	total: 36.3ms	remaining: 483ms
7:	learn: 41.7725191	total: 41.5ms	remaining: 477ms
8:	learn: 41.1676614	total: 46.3ms	remaining: 468ms
9:	learn: 40.5771076	total: 50.9ms	remaining: 458ms
10:	learn: 39.8343757	total: 56.1ms	remaining: 454ms
11:	learn: 39.3761142	total: 61ms	remaining: 447ms
12:	learn: 38.5254692	total: 66.5ms	remaining: 445ms
13:	learn: 37.9629555	total: 70.9ms	remaining: 436ms
14:	learn: 37.4418438	total: 75.1ms	remaining: 425ms
15:	learn: 37.0507283	total: 79.1ms	remaining: 415ms
16:	learn: 36.6264217	total: 82.9ms	remaining: 405ms
17:	learn: 36.1114940	total: 87ms	remaining: 396ms
18:	learn: 35.7193862	total: 91ms	remaining: 388ms
19:	learn: 35.3301177	total: 95.1ms	remaining: 380ms
20:	learn: 35.0598280	total: 98.9ms	remaining: 372ms
21:	learn: 34.5469736	total: 103ms	remaining: 365ms
22:	learn: 34.2064215	total: 107ms	remaining: 358ms
23:	learn: 33.7280710	total: 111ms	remaining: 350ms
24:	learn: 33.3282940	total: 115ms	remaining: 344ms
25:	learn: 32.8478961	total: 119ms	remaining: 338ms
26:	learn: 32.5722164	total: 123ms	remaining: 332ms
27:	learn: 32.2457019	total: 127ms	remaining: 326ms
28:	learn: 31.9230495	total: 131ms	remaining: 321ms
29:	learn: 31.4311611	total: 135ms	remaining: 316ms
30:	learn: 30.9179052	total: 139ms	remaining: 310ms
31:	learn: 30.6201141	total: 143ms	remaining: 305ms
32:	learn: 30.3421106	total: 148ms	remaining: 301ms
33:	learn: 29.9885373	total: 153ms	remaining: 296ms
34:	learn: 29.7462780	total: 157ms	remaining: 292ms
35:	learn: 29.3607153	total: 162ms	remaining: 288ms
36:	learn: 29.1793078	total: 166ms	remaining: 283ms
37:	learn: 28.9276538	total: 171ms	remaining: 278ms
38:	learn: 28.6903934	total: 176ms	remaining: 275ms
39:	learn: 28.2095033	total: 181ms	remaining: 271ms
40:	learn: 27.7990608	total: 188ms	remaining: 271ms
41:	learn: 27.5406632	total: 195ms	remaining: 269ms
42:	learn: 27.2575376	total: 203ms	remaining: 269ms
43:	learn: 26.9741707	total: 209ms	remaining: 266ms
44:	learn: 26.6606899	total: 216ms	remaining: 263ms
45:	learn: 26.4015833	total: 220ms	remaining: 259ms
46:	learn: 26.1828993	total: 225ms	remaining: 254ms
47:	learn: 26.0233709	total: 229ms	remaining: 248ms
48:	learn: 25.9300399	total: 234ms	remaining: 243ms
49:	learn: 25.5861489	total: 239ms	remaining: 239ms
50:	learn: 25.4322012	total: 244ms	remaining: 234ms
51:	learn: 25.1595644	total: 250ms	remaining: 231ms
52:	learn: 24.9955303	total: 255ms	remaining: 226ms
53:	learn: 24.7273966	total: 260ms	remaining: 222ms
54:	learn: 24.5747978	total: 266ms	remaining: 217ms
55:	learn: 24.3807977	total: 270ms	remaining: 212ms
56:	learn: 24.1689569	total: 275ms	remaining: 207ms
57:	learn: 23.9898221	total: 281ms	remaining: 204ms
58:	learn: 23.7566414	total: 287ms	remaining: 199ms
59:	learn: 23.6641165	total: 291ms	remaining: 194ms
60:	learn: 23.5658066	total: 295ms	remaining: 189ms
61:	learn: 23.4338851	total: 300ms	remaining: 184ms
62:	learn: 23.2408837	total: 304ms	remaining: 179ms
63:	learn: 23.0642038	total: 309ms	remaining: 174ms
64:	learn: 22.9032045	total: 314ms	remaining: 169ms
65:	learn: 22.7736138	total: 319ms	remaining: 164ms
66:	learn: 22.6836443	total: 323ms	remaining: 159ms
67:	learn: 22.5983654	total: 328ms	remaining: 155ms
68:	learn: 22.4419813	total: 341ms	remaining: 153ms
69:	learn: 22.2863339	total: 345ms	remaining: 148ms
70:	learn: 22.1792943	total: 349ms	remaining: 143ms
71:	learn: 22.1130574	total: 354ms	remaining: 138ms
72:	learn: 21.9858161	total: 358ms	remaining: 132ms
73:	learn: 21.8577784	total: 363ms	remaining: 127ms
74:	learn: 21.7845222	total: 367ms	remaining: 122ms
75:	learn: 21.6831390	total: 372ms	remaining: 117ms
76:	learn: 21.6292521	total: 380ms	remaining: 113ms
77:	learn: 21.5789330	total: 389ms	remaining: 110ms
78:	learn: 21.5420942	total: 397ms	remaining: 106ms
79:	learn: 21.4280939	total: 405ms	remaining: 101ms
80:	learn: 21.3641165	total: 414ms	remaining: 97ms
81:	learn: 21.2734814	total: 418ms	remaining: 91.8ms
82:	learn: 21.2220323	total: 424ms	remaining: 86.9ms
83:	learn: 21.0625792	total: 430ms	remaining: 81.9ms
84:	learn: 20.9488320	total: 435ms	remaining: 76.7ms
85:	learn: 20.8504255	total: 440ms	remaining: 71.7ms
86:	learn: 20.7848510	total: 445ms	remaining: 66.6ms
87:	learn: 20.7247442	total: 450ms	remaining: 61.4ms
88:	learn: 20.5698590	total: 456ms	remaining: 56.3ms
89:	learn: 20.4067620	total: 461ms	remaining: 51.2ms
90:	learn: 20.3062482	total: 466ms	remaining: 46.1ms
91:	learn: 20.2029696	total: 470ms	remaining: 40.9ms
92:	learn: 20.1384849	total: 475ms	remaining: 35.8ms
93:	learn: 20.0260709	total: 481ms	remaining: 30.7ms
94:	learn: 19.9122100	total: 486ms	remaining: 25.6ms
95:	learn: 19.8648487	total: 490ms	remaining: 20.4ms
96:	learn: 19.8207072	total: 494ms	remaining: 15.3ms
97:	learn: 19.7261189	total: 499ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 503ms	remaining: 5.08ms
99:	learn: 19.6546645	total: 506ms	remaining: 0us
0:	learn: 47.0239288	total: 4.34ms	remaining: 430ms
1:	learn: 46.2253829	total: 9.09ms	remaining: 445ms
2:	learn: 45.5580301	total: 13.3ms	remaining: 430ms
3:	learn: 44.7273237	total: 17.4ms	remaining: 418ms
4:	learn: 43.8867421	total: 21.1ms	remaining: 402ms
5:	learn: 43.3615911	total: 25.4ms	remaining: 399ms
6:	learn: 42.8548390	total: 30ms	remaining: 399ms
7:	learn: 42.1606758	total: 34.3ms	remaining: 394ms
8:	learn: 41.6625870	total: 38.6ms	remaining: 391ms
9:	learn: 40.9497092	total: 42.8ms	remaining: 386ms
10:	learn: 40.1886318	total: 47.4ms	remaining: 384ms
11:	learn: 39.7456423	total: 52.2ms	remaining: 382ms
12:	learn: 39.1171373	total: 56.3ms	remaining: 377ms
13:	learn: 38.5451069	total: 64.3ms	remaining: 395ms
14:	learn: 38.0155834	total: 71.3ms	remaining: 404ms
15:	learn: 37.5631354	total: 79.2ms	remaining: 416ms
16:	learn: 37.1030023	total: 84.9ms	remaining: 414ms
17:	learn: 36.4563029	total: 92.2ms	remaining: 420ms
18:	learn: 36.0160976	total: 97.3ms	remaining: 415ms
19:	learn: 35.5079827	total: 102ms	remaining: 409ms
20:	learn: 35.2111885	total: 107ms	remaining: 404ms
21:	learn: 34.9397465	total: 112ms	remaining: 399ms
22:	learn: 34.5270048	total: 118ms	remaining: 396ms
23:	learn: 34.0169260	total: 125ms	remaining: 396ms
24:	learn: 33.7454892	total: 132ms	remaining: 396ms
25:	learn: 33.2648157	total: 138ms	remaining: 393ms
26:	learn: 32.8899427	total: 145ms	remaining: 391ms
27:	learn: 32.6185050	total: 150ms	remaining: 386ms
28:	learn: 32.3528531	total: 156ms	remaining: 383ms
29:	learn: 32.0859923	total: 162ms	remaining: 379ms
30:	learn: 31.6511144	total: 168ms	remaining: 373ms
31:	learn: 31.2571765	total: 173ms	remaining: 367ms
32:	learn: 30.9770049	total: 178ms	remaining: 361ms
33:	learn: 30.6084872	total: 182ms	remaining: 353ms
34:	learn: 30.3448632	total: 187ms	remaining: 347ms
35:	learn: 30.0360942	total: 192ms	remaining: 342ms
36:	learn: 29.6648968	total: 197ms	remaining: 335ms
37:	learn: 29.3165114	total: 201ms	remaining: 329ms
38:	learn: 29.0829198	total: 206ms	remaining: 322ms
39:	learn: 28.7752064	total: 209ms	remaining: 314ms
40:	learn: 28.3622191	total: 213ms	remaining: 307ms
41:	learn: 28.1346631	total: 217ms	remaining: 300ms
42:	learn: 27.9585719	total: 222ms	remaining: 294ms
43:	learn: 27.6565566	total: 226ms	remaining: 288ms
44:	learn: 27.3616172	total: 230ms	remaining: 282ms
45:	learn: 27.0658637	total: 235ms	remaining: 276ms
46:	learn: 26.8660382	total: 239ms	remaining: 270ms
47:	learn: 26.6536078	total: 243ms	remaining: 264ms
48:	learn: 26.3524440	total: 248ms	remaining: 258ms
49:	learn: 26.1595277	total: 252ms	remaining: 252ms
50:	learn: 25.9273523	total: 260ms	remaining: 250ms
51:	learn: 25.7195580	total: 281ms	remaining: 259ms
52:	learn: 25.5730225	total: 289ms	remaining: 256ms
53:	learn: 25.3455276	total: 294ms	remaining: 251ms
54:	learn: 25.2289675	total: 300ms	remaining: 245ms
55:	learn: 25.0133024	total: 306ms	remaining: 240ms
56:	learn: 24.8406714	total: 311ms	remaining: 235ms
57:	learn: 24.6367857	total: 317ms	remaining: 230ms
58:	learn: 24.5338177	total: 322ms	remaining: 224ms
59:	learn: 24.3799964	total: 328ms	remaining: 218ms
60:	learn: 24.1447492	total: 333ms	remaining: 213ms
61:	learn: 23.9880495	total: 338ms	remaining: 207ms
62:	learn: 23.7140630	total: 343ms	remaining: 201ms
63:	learn: 23.5003791	total: 347ms	remaining: 195ms
64:	learn: 23.3207645	total: 352ms	remaining: 190ms
65:	learn: 23.1958356	total: 357ms	remaining: 184ms
66:	learn: 23.0471302	total: 363ms	remaining: 179ms
67:	learn: 22.8977183	total: 366ms	remaining: 172ms
68:	learn: 22.7187400	total: 371ms	remaining: 167ms
69:	learn: 22.6523405	total: 375ms	remaining: 161ms
70:	learn: 22.4767453	total: 379ms	remaining: 155ms
71:	learn: 22.3243677	total: 383ms	remaining: 149ms
72:	learn: 22.2133096	total: 387ms	remaining: 143ms
73:	learn: 22.1151713	total: 390ms	remaining: 137ms
74:	learn: 22.0296666	total: 394ms	remaining: 131ms
75:	learn: 21.9195980	total: 398ms	remaining: 126ms
76:	learn: 21.8401730	total: 402ms	remaining: 120ms
77:	learn: 21.8079797	total: 406ms	remaining: 115ms
78:	learn: 21.7274109	total: 410ms	remaining: 109ms
79:	learn: 21.6663032	total: 414ms	remaining: 104ms
80:	learn: 21.5633117	total: 418ms	remaining: 98.1ms
81:	learn: 21.4542467	total: 422ms	remaining: 92.7ms
82:	learn: 21.3177957	total: 426ms	remaining: 87.3ms
83:	learn: 21.1289167	total: 431ms	remaining: 82ms
84:	learn: 21.0297368	total: 435ms	remaining: 76.8ms
85:	learn: 20.9089564	total: 439ms	remaining: 71.5ms
86:	learn: 20.7653988	total: 444ms	remaining: 66.3ms
87:	learn: 20.6521894	total: 448ms	remaining: 61.1ms
88:	learn: 20.5193021	total: 453ms	remaining: 55.9ms
89:	learn: 20.4361620	total: 457ms	remaining: 50.7ms
90:	learn: 20.3546710	total: 461ms	remaining: 45.6ms
91:	learn: 20.2513296	total: 467ms	remaining: 40.6ms
92:	learn: 20.1605550	total: 474ms	remaining: 35.7ms
93:	learn: 20.0515942	total: 483ms	remaining: 30.8ms
94:	learn: 19.9800764	total: 491ms	remaining: 25.8ms
95:	learn: 19.8996532	total: 498ms	remaining: 20.8ms
96:	learn: 19.8450910	total: 503ms	remaining: 15.6ms
97:	learn: 19.7887346	total: 509ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 514ms	remaining: 5.19ms
99:	learn: 19.6328825	total: 519ms	remaining: 0us
0:	learn: 27.5585353	total: 4.6ms	remaining: 455ms
1:	learn: 27.1656995	total: 8.5ms	remaining: 417ms
2:	learn: 26.8590175	total: 12.5ms	remaining: 405ms
3:	learn: 26.5818406	total: 16.7ms	remaining: 400ms
4:	learn: 26.1148663	total: 21.2ms	remaining: 403ms
5:	learn: 25.7690484	total: 24.9ms	remaining: 390ms
6:	learn: 25.3489206	total: 29ms	remaining: 385ms
7:	learn: 24.9542406	total: 33.3ms	remaining: 383ms
8:	learn: 24.6777517	total: 37.5ms	remaining: 379ms
9:	learn: 24.3242344	total: 41.9ms	remaining: 377ms
10:	learn: 24.0383073	total: 45.8ms	remaining: 371ms
11:	learn: 23.7383420	total: 50ms	remaining: 367ms
12:	learn: 23.3461670	total: 53.9ms	remaining: 361ms
13:	learn: 23.0928636	total: 58ms	remaining: 356ms
14:	learn: 22.8770414	total: 62.2ms	remaining: 352ms
15:	learn: 22.6323214	total: 66.8ms	remaining: 351ms
16:	learn: 22.3597072	total: 71.8ms	remaining: 350ms
17:	learn: 22.1079813	total: 76.5ms	remaining: 348ms
18:	learn: 21.8421199	total: 81.4ms	remaining: 347ms
19:	learn: 21.6576508	total: 86.1ms	remaining: 344ms
20:	learn: 21.4301268	total: 90.5ms	remaining: 341ms
21:	learn: 21.2287388	total: 95.1ms	remaining: 337ms
22:	learn: 21.0553872	total: 99.9ms	remaining: 335ms
23:	learn: 20.8977091	total: 110ms	remaining: 348ms
24:	learn: 20.6619051	total: 119ms	remaining: 357ms
25:	learn: 20.5040955	total: 126ms	remaining: 360ms
26:	learn: 20.3181195	total: 134ms	remaining: 362ms
27:	learn: 20.0869436	total: 139ms	remaining: 358ms
28:	learn: 19.9375985	total: 144ms	remaining: 353ms
29:	learn: 19.8247516	total: 149ms	remaining: 348ms
30:	learn: 19.6261697	total: 154ms	remaining: 343ms
31:	learn: 19.4547236	total: 159ms	remaining: 339ms
32:	learn: 19.3157092	total: 164ms	remaining: 334ms
33:	learn: 19.1561419	total: 171ms	remaining: 331ms
34:	learn: 19.0453620	total: 176ms	remaining: 328ms
35:	learn: 18.8738574	total: 182ms	remaining: 324ms
36:	learn: 18.7072907	total: 187ms	remaining: 319ms
37:	learn: 18.5877943	total: 193ms	remaining: 314ms
38:	learn: 18.4436380	total: 199ms	remaining: 311ms
39:	learn: 18.3463356	total: 220ms	remaining: 330ms
40:	learn: 18.2008059	total: 224ms	remaining: 322ms
41:	learn: 18.0582079	total: 229ms	remaining: 316ms
42:	learn: 17.8891982	total: 233ms	remaining: 309ms
43:	learn: 17.7332246	total: 237ms	remaining: 302ms
44:	learn: 17.6206421	total: 242ms	remaining: 296ms
45:	learn: 17.4982800	total: 246ms	remaining: 289ms
46:	learn: 17.3970150	total: 251ms	remaining: 283ms
47:	learn: 17.3058203	total: 256ms	remaining: 277ms
48:	learn: 17.1789256	total: 260ms	remaining: 271ms
49:	learn: 17.0916229	total: 265ms	remaining: 265ms
50:	learn: 16.9859820	total: 269ms	remaining: 259ms
51:	learn: 16.8995582	total: 274ms	remaining: 253ms
52:	learn: 16.8137014	total: 279ms	remaining: 247ms
53:	learn: 16.7021451	total: 284ms	remaining: 242ms
54:	learn: 16.5895582	total: 288ms	remaining: 236ms
55:	learn: 16.5015639	total: 293ms	remaining: 230ms
56:	learn: 16.4356637	total: 300ms	remaining: 226ms
57:	learn: 16.3514525	total: 307ms	remaining: 222ms
58:	learn: 16.2401369	total: 315ms	remaining: 219ms
59:	learn: 16.1293223	total: 323ms	remaining: 215ms
60:	learn: 16.0271167	total: 331ms	remaining: 212ms
61:	learn: 15.9126257	total: 337ms	remaining: 206ms
62:	learn: 15.8391096	total: 342ms	remaining: 201ms
63:	learn: 15.7441773	total: 358ms	remaining: 202ms
64:	learn: 15.6885195	total: 364ms	remaining: 196ms
65:	learn: 15.6052039	total: 369ms	remaining: 190ms
66:	learn: 15.5074202	total: 374ms	remaining: 184ms
67:	learn: 15.4054338	total: 380ms	remaining: 179ms
68:	learn: 15.2885714	total: 385ms	remaining: 173ms
69:	learn: 15.2157472	total: 391ms	remaining: 167ms
70:	learn: 15.1031554	total: 396ms	remaining: 162ms
71:	learn: 15.0237470	total: 402ms	remaining: 156ms
72:	learn: 14.9756825	total: 406ms	remaining: 150ms
73:	learn: 14.8840596	total: 410ms	remaining: 144ms
74:	learn: 14.8077061	total: 414ms	remaining: 138ms
75:	learn: 14.7444437	total: 419ms	remaining: 132ms
76:	learn: 14.6751720	total: 423ms	remaining: 126ms
77:	learn: 14.5830333	total: 427ms	remaining: 120ms
78:	learn: 14.5241206	total: 431ms	remaining: 115ms
79:	learn: 14.4892731	total: 435ms	remaining: 109ms
80:	learn: 14.4256605	total: 439ms	remaining: 103ms
81:	learn: 14.3666860	total: 443ms	remaining: 97.3ms
82:	learn: 14.2938372	total: 448ms	remaining: 91.7ms
83:	learn: 14.2161532	total: 452ms	remaining: 86.1ms
84:	learn: 14.1582910	total: 456ms	remaining: 80.5ms
85:	learn: 14.1029153	total: 460ms	remaining: 74.9ms
86:	learn: 14.0475835	total: 465ms	remaining: 69.5ms
87:	learn: 13.9892661	total: 470ms	remaining: 64ms
88:	learn: 13.9481628	total: 474ms	remaining: 58.6ms
89:	learn: 13.8483991	total: 479ms	remaining: 53.2ms
90:	learn: 13.7775614	total: 483ms	remaining: 47.8ms
91:	learn: 13.7304585	total: 488ms	remaining: 42.4ms
92:	learn: 13.6783381	total: 493ms	remaining: 37.1ms
93:	learn: 13.6356964	total: 498ms	remaining: 31.8ms
94:	learn: 13.5924371	total: 506ms	remaining: 26.6ms
95:	learn: 13.5400746	total: 513ms	remaining: 21.4ms
96:	learn: 13.4897333	total: 521ms	remaining: 16.1ms
97:	learn: 13.4470321	total: 529ms	remaining: 10.8ms
98:	learn: 13.3856082	total: 534ms	remaining: 5.4ms
99:	learn: 13.3082371	total: 539ms	remaining: 0us
0:	learn: 43.0395283	total: 4.16ms	remaining: 412ms
1:	learn: 42.1130223	total: 8.45ms	remaining: 414ms
2:	learn: 41.1753409	total: 12.6ms	remaining: 407ms
3:	learn: 40.3637444	total: 16.7ms	remaining: 400ms
4:	learn: 39.6508088	total: 20.6ms	remaining: 392ms
5:	learn: 38.7217934	total: 24.7ms	remaining: 387ms
6:	learn: 37.8538055	total: 29ms	remaining: 385ms
7:	learn: 36.9793574	total: 32.8ms	remaining: 377ms
8:	learn: 36.3076984	total: 36.8ms	remaining: 372ms
9:	learn: 35.6673160	total: 40.7ms	remaining: 366ms
10:	learn: 34.8889800	total: 44.9ms	remaining: 364ms
11:	learn: 34.1675517	total: 48.9ms	remaining: 358ms
12:	learn: 33.6779564	total: 53.2ms	remaining: 356ms
13:	learn: 33.0710039	total: 57.1ms	remaining: 350ms
14:	learn: 32.4966674	total: 61.6ms	remaining: 349ms
15:	learn: 31.9492856	total: 65.7ms	remaining: 345ms
16:	learn: 31.5108129	total: 70ms	remaining: 342ms
17:	learn: 30.9804023	total: 73.9ms	remaining: 336ms
18:	learn: 30.4169089	total: 78.2ms	remaining: 334ms
19:	learn: 29.8930375	total: 82.8ms	remaining: 331ms
20:	learn: 29.3974421	total: 87.5ms	remaining: 329ms
21:	learn: 28.8792307	total: 92.3ms	remaining: 327ms
22:	learn: 28.3894474	total: 97ms	remaining: 325ms
23:	learn: 27.9921276	total: 102ms	remaining: 322ms
24:	learn: 27.6158887	total: 106ms	remaining: 318ms
25:	learn: 27.2866950	total: 111ms	remaining: 316ms
26:	learn: 26.8770708	total: 119ms	remaining: 322ms
27:	learn: 26.6233005	total: 129ms	remaining: 331ms
28:	learn: 26.2921934	total: 136ms	remaining: 332ms
29:	learn: 25.9156920	total: 144ms	remaining: 335ms
30:	learn: 25.5311106	total: 146ms	remaining: 325ms
31:	learn: 25.2178997	total: 152ms	remaining: 322ms
32:	learn: 24.8572196	total: 157ms	remaining: 319ms
33:	learn: 24.5849710	total: 162ms	remaining: 314ms
34:	learn: 24.2209190	total: 167ms	remaining: 311ms
35:	learn: 23.8708250	total: 172ms	remaining: 307ms
36:	learn: 23.5325279	total: 178ms	remaining: 303ms
37:	learn: 23.2116148	total: 183ms	remaining: 299ms
38:	learn: 22.9696787	total: 189ms	remaining: 295ms
39:	learn: 22.7936783	total: 194ms	remaining: 290ms
40:	learn: 22.6228847	total: 198ms	remaining: 285ms
41:	learn: 22.3691527	total: 204ms	remaining: 282ms
42:	learn: 22.1002173	total: 210ms	remaining: 278ms
43:	learn: 21.9157268	total: 214ms	remaining: 272ms
44:	learn: 21.7229102	total: 218ms	remaining: 266ms
45:	learn: 21.4642005	total: 222ms	remaining: 260ms
46:	learn: 21.3029442	total: 226ms	remaining: 254ms
47:	learn: 21.1469792	total: 230ms	remaining: 249ms
48:	learn: 20.9458235	total: 234ms	remaining: 243ms
49:	learn: 20.7335242	total: 238ms	remaining: 238ms
50:	learn: 20.5440269	total: 242ms	remaining: 232ms
51:	learn: 20.3661449	total: 247ms	remaining: 228ms
52:	learn: 20.2158134	total: 251ms	remaining: 222ms
53:	learn: 19.9934873	total: 255ms	remaining: 217ms
54:	learn: 19.7879739	total: 260ms	remaining: 212ms
55:	learn: 19.6630460	total: 264ms	remaining: 207ms
56:	learn: 19.5152729	total: 268ms	remaining: 202ms
57:	learn: 19.3581128	total: 272ms	remaining: 197ms
58:	learn: 19.2209303	total: 277ms	remaining: 192ms
59:	learn: 19.0965248	total: 282ms	remaining: 188ms
60:	learn: 19.0035954	total: 287ms	remaining: 183ms
61:	learn: 18.8554149	total: 291ms	remaining: 178ms
62:	learn: 18.7095427	total: 296ms	remaining: 174ms
63:	learn: 18.5751494	total: 300ms	remaining: 169ms
64:	learn: 18.4678251	total: 304ms	remaining: 164ms
65:	learn: 18.3500325	total: 313ms	remaining: 161ms
66:	learn: 18.2088983	total: 322ms	remaining: 158ms
67:	learn: 18.0737705	total: 331ms	remaining: 156ms
68:	learn: 17.9325058	total: 339ms	remaining: 152ms
69:	learn: 17.8003911	total: 345ms	remaining: 148ms
70:	learn: 17.7385366	total: 365ms	remaining: 149ms
71:	learn: 17.6106998	total: 370ms	remaining: 144ms
72:	learn: 17.4816270	total: 376ms	remaining: 139ms
73:	learn: 17.4025554	total: 381ms	remaining: 134ms
74:	learn: 17.2902108	total: 387ms	remaining: 129ms
75:	learn: 17.2158048	total: 392ms	remaining: 124ms
76:	learn: 17.1261053	total: 398ms	remaining: 119ms
77:	learn: 17.0308917	total: 403ms	remaining: 114ms
78:	learn: 16.9546705	total: 409ms	remaining: 109ms
79:	learn: 16.8319165	total: 414ms	remaining: 104ms
80:	learn: 16.7687017	total: 419ms	remaining: 98.2ms
81:	learn: 16.6972326	total: 423ms	remaining: 92.9ms
82:	learn: 16.6124580	total: 428ms	remaining: 87.6ms
83:	learn: 16.4999052	total: 432ms	remaining: 82.4ms
84:	learn: 16.4302484	total: 437ms	remaining: 77.1ms
85:	learn: 16.3201363	total: 441ms	remaining: 71.8ms
86:	learn: 16.2534314	total: 445ms	remaining: 66.5ms
87:	learn: 16.1720485	total: 449ms	remaining: 61.3ms
88:	learn: 16.0625751	total: 453ms	remaining: 56ms
89:	learn: 15.9135088	total: 457ms	remaining: 50.8ms
90:	learn: 15.8658863	total: 461ms	remaining: 45.6ms
91:	learn: 15.8066805	total: 465ms	remaining: 40.5ms
92:	learn: 15.7412103	total: 470ms	remaining: 35.4ms
93:	learn: 15.6542776	total: 475ms	remaining: 30.3ms
94:	learn: 15.5760334	total: 479ms	remaining: 25.2ms
95:	learn: 15.5434131	total: 483ms	remaining: 20.1ms
96:	learn: 15.4709561	total: 488ms	remaining: 15.1ms
97:	learn: 15.4449618	total: 493ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 498ms	remaining: 5.03ms
99:	learn: 15.3106595	total: 503ms	remaining: 0us
0:	learn: 46.7142257	total: 6.12ms	remaining: 606ms
1:	learn: 45.7634153	total: 12.3ms	remaining: 602ms
2:	learn: 45.0054253	total: 18ms	remaining: 582ms
3:	learn: 44.2120432	total: 23.9ms	remaining: 573ms
4:	learn: 43.3960472	total: 29.3ms	remaining: 557ms
5:	learn: 42.8588120	total: 34.7ms	remaining: 544ms
6:	learn: 41.9533701	total: 39.7ms	remaining: 527ms
7:	learn: 41.2745030	total: 44.9ms	remaining: 517ms
8:	learn: 40.6797495	total: 50.8ms	remaining: 514ms
9:	learn: 39.9899571	total: 55.1ms	remaining: 496ms
10:	learn: 39.4682100	total: 59.4ms	remaining: 481ms
11:	learn: 39.0305595	total: 63.5ms	remaining: 465ms
12:	learn: 38.4200417	total: 67.9ms	remaining: 454ms
13:	learn: 37.8425194	total: 72.2ms	remaining: 444ms
14:	learn: 37.4203127	total: 76.3ms	remaining: 432ms
15:	learn: 36.9917688	total: 80.3ms	remaining: 422ms
16:	learn: 36.5544138	total: 84.8ms	remaining: 414ms
17:	learn: 36.0727019	total: 89.3ms	remaining: 407ms
18:	learn: 35.4835715	total: 93.6ms	remaining: 399ms
19:	learn: 34.9865654	total: 97.9ms	remaining: 392ms
20:	learn: 34.6063373	total: 103ms	remaining: 386ms
21:	learn: 34.0997289	total: 107ms	remaining: 379ms
22:	learn: 33.7313171	total: 111ms	remaining: 373ms
23:	learn: 33.3582000	total: 116ms	remaining: 366ms
24:	learn: 32.9432456	total: 120ms	remaining: 361ms
25:	learn: 32.5220888	total: 124ms	remaining: 353ms
26:	learn: 32.2172292	total: 129ms	remaining: 348ms
27:	learn: 31.8972904	total: 134ms	remaining: 344ms
28:	learn: 31.6405350	total: 138ms	remaining: 339ms
29:	learn: 31.4167702	total: 143ms	remaining: 334ms
30:	learn: 30.8541961	total: 145ms	remaining: 322ms
31:	learn: 30.5572111	total: 149ms	remaining: 317ms
32:	learn: 30.1700399	total: 154ms	remaining: 313ms
33:	learn: 29.8537271	total: 159ms	remaining: 308ms
34:	learn: 29.6192540	total: 176ms	remaining: 327ms
35:	learn: 29.3276362	total: 185ms	remaining: 329ms
36:	learn: 28.9985179	total: 192ms	remaining: 327ms
37:	learn: 28.7046880	total: 197ms	remaining: 322ms
38:	learn: 28.4412677	total: 203ms	remaining: 317ms
39:	learn: 28.1277292	total: 208ms	remaining: 312ms
40:	learn: 27.9000750	total: 213ms	remaining: 307ms
41:	learn: 27.5433162	total: 219ms	remaining: 302ms
42:	learn: 27.2493285	total: 224ms	remaining: 297ms
43:	learn: 26.9576632	total: 226ms	remaining: 288ms
44:	learn: 26.6177110	total: 231ms	remaining: 283ms
45:	learn: 26.2812456	total: 236ms	remaining: 277ms
46:	learn: 26.0803859	total: 241ms	remaining: 272ms
47:	learn: 25.9543581	total: 246ms	remaining: 267ms
48:	learn: 25.7951582	total: 251ms	remaining: 261ms
49:	learn: 25.6548184	total: 256ms	remaining: 256ms
50:	learn: 25.4010843	total: 262ms	remaining: 252ms
51:	learn: 24.9773937	total: 266ms	remaining: 246ms
52:	learn: 24.8026156	total: 270ms	remaining: 240ms
53:	learn: 24.5568053	total: 275ms	remaining: 234ms
54:	learn: 24.2281839	total: 279ms	remaining: 228ms
55:	learn: 23.9202795	total: 283ms	remaining: 222ms
56:	learn: 23.7625591	total: 287ms	remaining: 216ms
57:	learn: 23.5429721	total: 291ms	remaining: 211ms
58:	learn: 23.3175893	total: 295ms	remaining: 205ms
59:	learn: 23.2035130	total: 299ms	remaining: 199ms
60:	learn: 23.0232450	total: 303ms	remaining: 194ms
61:	learn: 22.8384958	total: 307ms	remaining: 188ms
62:	learn: 22.6499902	total: 311ms	remaining: 183ms
63:	learn: 22.4577426	total: 315ms	remaining: 177ms
64:	learn: 22.3333158	total: 319ms	remaining: 172ms
65:	learn: 22.2064131	total: 323ms	remaining: 166ms
66:	learn: 22.1434971	total: 328ms	remaining: 161ms
67:	learn: 21.9596519	total: 332ms	remaining: 156ms
68:	learn: 21.8475576	total: 337ms	remaining: 151ms
69:	learn: 21.6954745	total: 342ms	remaining: 146ms
70:	learn: 21.5635976	total: 346ms	remaining: 142ms
71:	learn: 21.4588506	total: 351ms	remaining: 136ms
72:	learn: 21.3527268	total: 355ms	remaining: 131ms
73:	learn: 21.2661288	total: 361ms	remaining: 127ms
74:	learn: 21.1817333	total: 370ms	remaining: 123ms
75:	learn: 21.0527553	total: 377ms	remaining: 119ms
76:	learn: 20.9229021	total: 385ms	remaining: 115ms
77:	learn: 20.7563946	total: 392ms	remaining: 111ms
78:	learn: 20.6569831	total: 398ms	remaining: 106ms
79:	learn: 20.4982663	total: 403ms	remaining: 101ms
80:	learn: 20.3185460	total: 408ms	remaining: 95.7ms
81:	learn: 20.2096241	total: 413ms	remaining: 90.7ms
82:	learn: 20.1274891	total: 418ms	remaining: 85.6ms
83:	learn: 20.0740139	total: 423ms	remaining: 80.6ms
84:	learn: 19.9630699	total: 428ms	remaining: 75.6ms
85:	learn: 19.8753899	total: 434ms	remaining: 70.6ms
86:	learn: 19.6563612	total: 439ms	remaining: 65.6ms
87:	learn: 19.4680232	total: 444ms	remaining: 60.6ms
88:	learn: 19.3503431	total: 449ms	remaining: 55.5ms
89:	learn: 19.2221379	total: 454ms	remaining: 50.4ms
90:	learn: 19.0732542	total: 459ms	remaining: 45.4ms
91:	learn: 18.9825190	total: 465ms	remaining: 40.4ms
92:	learn: 18.8839009	total: 469ms	remaining: 35.3ms
93:	learn: 18.8012219	total: 473ms	remaining: 30.2ms
94:	learn: 18.7172713	total: 477ms	remaining: 25.1ms
95:	learn: 18.6201170	total: 481ms	remaining: 20ms
96:	learn: 18.5318611	total: 485ms	remaining: 15ms
97:	learn: 18.3833356	total: 489ms	remaining: 9.98ms
98:	learn: 18.3289700	total: 493ms	remaining: 4.98ms
99:	learn: 18.2227333	total: 497ms	remaining: 0us
0:	learn: 46.3764524	total: 4.76ms	remaining: 471ms
1:	learn: 45.5561269	total: 9.22ms	remaining: 452ms
2:	learn: 44.8811245	total: 14.5ms	remaining: 469ms
3:	learn: 44.0788617	total: 22.4ms	remaining: 538ms
4:	learn: 43.3619790	total: 30.5ms	remaining: 579ms
5:	learn: 42.6912112	total: 44.6ms	remaining: 698ms
6:	learn: 42.2292118	total: 50ms	remaining: 664ms
7:	learn: 41.7725191	total: 55.1ms	remaining: 634ms
8:	learn: 41.1676614	total: 61ms	remaining: 617ms
9:	learn: 40.5771076	total: 66.4ms	remaining: 597ms
10:	learn: 39.8343757	total: 72ms	remaining: 583ms
11:	learn: 39.3761142	total: 77.8ms	remaining: 571ms
12:	learn: 38.5254692	total: 83.1ms	remaining: 556ms
13:	learn: 37.9629555	total: 88.5ms	remaining: 544ms
14:	learn: 37.4418438	total: 93.6ms	remaining: 531ms
15:	learn: 37.0507283	total: 98.3ms	remaining: 516ms
16:	learn: 36.6264217	total: 103ms	remaining: 502ms
17:	learn: 36.1114940	total: 108ms	remaining: 492ms
18:	learn: 35.7193862	total: 113ms	remaining: 482ms
19:	learn: 35.3301177	total: 118ms	remaining: 472ms
20:	learn: 35.0598280	total: 122ms	remaining: 459ms
21:	learn: 34.5469736	total: 126ms	remaining: 447ms
22:	learn: 34.2064215	total: 130ms	remaining: 436ms
23:	learn: 33.7280710	total: 134ms	remaining: 425ms
24:	learn: 33.3282940	total: 139ms	remaining: 416ms
25:	learn: 32.8478961	total: 143ms	remaining: 407ms
26:	learn: 32.5722164	total: 147ms	remaining: 398ms
27:	learn: 32.2457019	total: 151ms	remaining: 388ms
28:	learn: 31.9230495	total: 155ms	remaining: 379ms
29:	learn: 31.4311611	total: 159ms	remaining: 370ms
30:	learn: 30.9179052	total: 163ms	remaining: 362ms
31:	learn: 30.6201141	total: 167ms	remaining: 354ms
32:	learn: 30.3421106	total: 171ms	remaining: 347ms
33:	learn: 29.9885373	total: 175ms	remaining: 339ms
34:	learn: 29.7462780	total: 179ms	remaining: 332ms
35:	learn: 29.3607153	total: 183ms	remaining: 325ms
36:	learn: 29.1793078	total: 186ms	remaining: 318ms
37:	learn: 28.9276538	total: 190ms	remaining: 311ms
38:	learn: 28.6903934	total: 194ms	remaining: 304ms
39:	learn: 28.2095033	total: 198ms	remaining: 297ms
40:	learn: 27.7990608	total: 202ms	remaining: 291ms
41:	learn: 27.5406632	total: 206ms	remaining: 285ms
42:	learn: 27.2575376	total: 210ms	remaining: 279ms
43:	learn: 26.9741707	total: 215ms	remaining: 273ms
44:	learn: 26.6606899	total: 219ms	remaining: 268ms
45:	learn: 26.4015833	total: 223ms	remaining: 262ms
46:	learn: 26.1828993	total: 228ms	remaining: 257ms
47:	learn: 26.0233709	total: 230ms	remaining: 250ms
48:	learn: 25.9300399	total: 235ms	remaining: 245ms
49:	learn: 25.5861489	total: 239ms	remaining: 239ms
50:	learn: 25.4322012	total: 244ms	remaining: 234ms
51:	learn: 25.1595644	total: 249ms	remaining: 230ms
52:	learn: 24.9955303	total: 254ms	remaining: 225ms
53:	learn: 24.7273966	total: 258ms	remaining: 220ms
54:	learn: 24.5747978	total: 265ms	remaining: 217ms
55:	learn: 24.3807977	total: 273ms	remaining: 214ms
56:	learn: 24.1689569	total: 280ms	remaining: 212ms
57:	learn: 23.9898221	total: 287ms	remaining: 208ms
58:	learn: 23.7566414	total: 294ms	remaining: 205ms
59:	learn: 23.6641165	total: 299ms	remaining: 200ms
60:	learn: 23.5658066	total: 305ms	remaining: 195ms
61:	learn: 23.4338851	total: 310ms	remaining: 190ms
62:	learn: 23.2408837	total: 315ms	remaining: 185ms
63:	learn: 23.0642038	total: 320ms	remaining: 180ms
64:	learn: 22.9032045	total: 325ms	remaining: 175ms
65:	learn: 22.7736138	total: 330ms	remaining: 170ms
66:	learn: 22.6836443	total: 335ms	remaining: 165ms
67:	learn: 22.5983654	total: 340ms	remaining: 160ms
68:	learn: 22.4419813	total: 345ms	remaining: 155ms
69:	learn: 22.2863339	total: 350ms	remaining: 150ms
70:	learn: 22.1792943	total: 355ms	remaining: 145ms
71:	learn: 22.1130574	total: 361ms	remaining: 140ms
72:	learn: 21.9858161	total: 366ms	remaining: 135ms
73:	learn: 21.8577784	total: 370ms	remaining: 130ms
74:	learn: 21.7845222	total: 375ms	remaining: 125ms
75:	learn: 21.6831390	total: 379ms	remaining: 120ms
76:	learn: 21.6292521	total: 383ms	remaining: 114ms
77:	learn: 21.5789330	total: 387ms	remaining: 109ms
78:	learn: 21.5420942	total: 391ms	remaining: 104ms
79:	learn: 21.4280939	total: 396ms	remaining: 98.9ms
80:	learn: 21.3641165	total: 400ms	remaining: 93.8ms
81:	learn: 21.2734814	total: 404ms	remaining: 88.7ms
82:	learn: 21.2220323	total: 409ms	remaining: 83.7ms
83:	learn: 21.0625792	total: 413ms	remaining: 78.7ms
84:	learn: 20.9488320	total: 417ms	remaining: 73.7ms
85:	learn: 20.8504255	total: 421ms	remaining: 68.6ms
86:	learn: 20.7848510	total: 426ms	remaining: 63.7ms
87:	learn: 20.7247442	total: 431ms	remaining: 58.8ms
88:	learn: 20.5698590	total: 436ms	remaining: 53.9ms
89:	learn: 20.4067620	total: 441ms	remaining: 49ms
90:	learn: 20.3062482	total: 447ms	remaining: 44.2ms
91:	learn: 20.2029696	total: 452ms	remaining: 39.3ms
92:	learn: 20.1384849	total: 457ms	remaining: 34.4ms
93:	learn: 20.0260709	total: 463ms	remaining: 29.5ms
94:	learn: 19.9122100	total: 470ms	remaining: 24.7ms
95:	learn: 19.8648487	total: 478ms	remaining: 19.9ms
96:	learn: 19.8207072	total: 486ms	remaining: 15ms
97:	learn: 19.7261189	total: 492ms	remaining: 10ms
98:	learn: 19.7042438	total: 504ms	remaining: 5.09ms
99:	learn: 19.6546645	total: 509ms	remaining: 0us
0:	learn: 47.0239288	total: 4.36ms	remaining: 432ms
1:	learn: 46.2253829	total: 8.95ms	remaining: 439ms
2:	learn: 45.5580301	total: 12.9ms	remaining: 416ms
3:	learn: 44.7273237	total: 16.5ms	remaining: 397ms
4:	learn: 43.8867421	total: 20.7ms	remaining: 393ms
5:	learn: 43.3615911	total: 24.9ms	remaining: 390ms
6:	learn: 42.8548390	total: 30ms	remaining: 398ms
7:	learn: 42.1606758	total: 33.8ms	remaining: 389ms
8:	learn: 41.6625870	total: 37.7ms	remaining: 381ms
9:	learn: 40.9497092	total: 41.7ms	remaining: 375ms
10:	learn: 40.1886318	total: 46.2ms	remaining: 374ms
11:	learn: 39.7456423	total: 50.3ms	remaining: 369ms
12:	learn: 39.1171373	total: 54ms	remaining: 362ms
13:	learn: 38.5451069	total: 58ms	remaining: 356ms
14:	learn: 38.0155834	total: 62.5ms	remaining: 354ms
15:	learn: 37.5631354	total: 66.7ms	remaining: 350ms
16:	learn: 37.1030023	total: 70.6ms	remaining: 345ms
17:	learn: 36.4563029	total: 74.9ms	remaining: 341ms
18:	learn: 36.0160976	total: 79.4ms	remaining: 338ms
19:	learn: 35.5079827	total: 84ms	remaining: 336ms
20:	learn: 35.2111885	total: 88.2ms	remaining: 332ms
21:	learn: 34.9397465	total: 92.7ms	remaining: 329ms
22:	learn: 34.5270048	total: 97.7ms	remaining: 327ms
23:	learn: 34.0169260	total: 102ms	remaining: 323ms
24:	learn: 33.7454892	total: 106ms	remaining: 319ms
25:	learn: 33.2648157	total: 111ms	remaining: 316ms
26:	learn: 32.8899427	total: 121ms	remaining: 326ms
27:	learn: 32.6185050	total: 129ms	remaining: 331ms
28:	learn: 32.3528531	total: 136ms	remaining: 333ms
29:	learn: 32.0859923	total: 143ms	remaining: 334ms
30:	learn: 31.6511144	total: 149ms	remaining: 331ms
31:	learn: 31.2571765	total: 154ms	remaining: 326ms
32:	learn: 30.9770049	total: 158ms	remaining: 321ms
33:	learn: 30.6084872	total: 163ms	remaining: 317ms
34:	learn: 30.3448632	total: 169ms	remaining: 314ms
35:	learn: 30.0360942	total: 174ms	remaining: 309ms
36:	learn: 29.6648968	total: 179ms	remaining: 305ms
37:	learn: 29.3165114	total: 184ms	remaining: 301ms
38:	learn: 29.0829198	total: 189ms	remaining: 296ms
39:	learn: 28.7752064	total: 195ms	remaining: 292ms
40:	learn: 28.3622191	total: 199ms	remaining: 287ms
41:	learn: 28.1346631	total: 204ms	remaining: 282ms
42:	learn: 27.9585719	total: 209ms	remaining: 277ms
43:	learn: 27.6565566	total: 215ms	remaining: 273ms
44:	learn: 27.3616172	total: 219ms	remaining: 268ms
45:	learn: 27.0658637	total: 223ms	remaining: 262ms
46:	learn: 26.8660382	total: 227ms	remaining: 256ms
47:	learn: 26.6536078	total: 231ms	remaining: 250ms
48:	learn: 26.3524440	total: 235ms	remaining: 245ms
49:	learn: 26.1595277	total: 239ms	remaining: 239ms
50:	learn: 25.9273523	total: 243ms	remaining: 233ms
51:	learn: 25.7195580	total: 247ms	remaining: 228ms
52:	learn: 25.5730225	total: 251ms	remaining: 222ms
53:	learn: 25.3455276	total: 255ms	remaining: 217ms
54:	learn: 25.2289675	total: 259ms	remaining: 212ms
55:	learn: 25.0133024	total: 263ms	remaining: 207ms
56:	learn: 24.8406714	total: 267ms	remaining: 201ms
57:	learn: 24.6367857	total: 271ms	remaining: 196ms
58:	learn: 24.5338177	total: 275ms	remaining: 191ms
59:	learn: 24.3799964	total: 280ms	remaining: 187ms
60:	learn: 24.1447492	total: 284ms	remaining: 182ms
61:	learn: 23.9880495	total: 289ms	remaining: 177ms
62:	learn: 23.7140630	total: 293ms	remaining: 172ms
63:	learn: 23.5003791	total: 297ms	remaining: 167ms
64:	learn: 23.3207645	total: 302ms	remaining: 163ms
65:	learn: 23.1958356	total: 307ms	remaining: 158ms
66:	learn: 23.0471302	total: 315ms	remaining: 155ms
67:	learn: 22.8977183	total: 324ms	remaining: 152ms
68:	learn: 22.7187400	total: 334ms	remaining: 150ms
69:	learn: 22.6523405	total: 342ms	remaining: 146ms
70:	learn: 22.4767453	total: 347ms	remaining: 142ms
71:	learn: 22.3243677	total: 352ms	remaining: 137ms
72:	learn: 22.2133096	total: 357ms	remaining: 132ms
73:	learn: 22.1151713	total: 362ms	remaining: 127ms
74:	learn: 22.0296666	total: 367ms	remaining: 122ms
75:	learn: 21.9195980	total: 373ms	remaining: 118ms
76:	learn: 21.8401730	total: 377ms	remaining: 113ms
77:	learn: 21.8079797	total: 382ms	remaining: 108ms
78:	learn: 21.7274109	total: 387ms	remaining: 103ms
79:	learn: 21.6663032	total: 392ms	remaining: 98.1ms
80:	learn: 21.5633117	total: 397ms	remaining: 93.2ms
81:	learn: 21.4542467	total: 402ms	remaining: 88.2ms
82:	learn: 21.3177957	total: 407ms	remaining: 83.4ms
83:	learn: 21.1289167	total: 413ms	remaining: 78.6ms
84:	learn: 21.0297368	total: 417ms	remaining: 73.5ms
85:	learn: 20.9089564	total: 421ms	remaining: 68.5ms
86:	learn: 20.7653988	total: 425ms	remaining: 63.5ms
87:	learn: 20.6521894	total: 429ms	remaining: 58.5ms
88:	learn: 20.5193021	total: 434ms	remaining: 53.6ms
89:	learn: 20.4361620	total: 438ms	remaining: 48.6ms
90:	learn: 20.3546710	total: 441ms	remaining: 43.7ms
91:	learn: 20.2513296	total: 445ms	remaining: 38.7ms
92:	learn: 20.1605550	total: 449ms	remaining: 33.8ms
93:	learn: 20.0515942	total: 453ms	remaining: 28.9ms
94:	learn: 19.9800764	total: 458ms	remaining: 24.1ms
95:	learn: 19.8996532	total: 462ms	remaining: 19.2ms
96:	learn: 19.8450910	total: 466ms	remaining: 14.4ms
97:	learn: 19.7887346	total: 470ms	remaining: 9.58ms
98:	learn: 19.7230872	total: 474ms	remaining: 4.79ms
99:	learn: 19.6328825	total: 478ms	remaining: 0us
0:	learn: 27.7143805	total: 5.54ms	remaining: 549ms
1:	learn: 27.2245894	total: 10.6ms	remaining: 518ms
2:	learn: 26.8693029	total: 15.9ms	remaining: 515ms
3:	learn: 26.4713217	total: 28.3ms	remaining: 680ms
4:	learn: 26.1261794	total: 33.7ms	remaining: 640ms
5:	learn: 25.8160419	total: 38.7ms	remaining: 606ms
6:	learn: 25.3860050	total: 43.6ms	remaining: 579ms
7:	learn: 25.0621682	total: 48.6ms	remaining: 559ms
8:	learn: 24.7574429	total: 53.5ms	remaining: 541ms
9:	learn: 24.5154734	total: 58.6ms	remaining: 528ms
10:	learn: 24.2199118	total: 64.1ms	remaining: 518ms
11:	learn: 23.9774955	total: 67.9ms	remaining: 498ms
12:	learn: 23.7755558	total: 71.7ms	remaining: 480ms
13:	learn: 23.4384476	total: 75.5ms	remaining: 464ms
14:	learn: 23.2035324	total: 79.3ms	remaining: 450ms
15:	learn: 22.9925293	total: 83.3ms	remaining: 437ms
16:	learn: 22.7981113	total: 87.3ms	remaining: 426ms
17:	learn: 22.5829245	total: 91ms	remaining: 414ms
18:	learn: 22.4131931	total: 94.8ms	remaining: 404ms
19:	learn: 22.1833629	total: 98.2ms	remaining: 393ms
20:	learn: 21.9660824	total: 102ms	remaining: 384ms
21:	learn: 21.7281998	total: 106ms	remaining: 376ms
22:	learn: 21.5000824	total: 110ms	remaining: 368ms
23:	learn: 21.2717031	total: 114ms	remaining: 360ms
24:	learn: 21.0926073	total: 117ms	remaining: 352ms
25:	learn: 20.8922144	total: 121ms	remaining: 344ms
26:	learn: 20.7498215	total: 125ms	remaining: 338ms
27:	learn: 20.5781754	total: 126ms	remaining: 324ms
28:	learn: 20.4294665	total: 130ms	remaining: 318ms
29:	learn: 20.2273985	total: 134ms	remaining: 312ms
30:	learn: 20.0920234	total: 138ms	remaining: 307ms
31:	learn: 19.9311712	total: 142ms	remaining: 301ms
32:	learn: 19.7852359	total: 146ms	remaining: 295ms
33:	learn: 19.6211007	total: 150ms	remaining: 291ms
34:	learn: 19.4806501	total: 155ms	remaining: 287ms
35:	learn: 19.3415380	total: 159ms	remaining: 283ms
36:	learn: 19.2075499	total: 163ms	remaining: 278ms
37:	learn: 19.0582745	total: 168ms	remaining: 273ms
38:	learn: 18.8852020	total: 172ms	remaining: 270ms
39:	learn: 18.6868677	total: 177ms	remaining: 265ms
40:	learn: 18.5481481	total: 181ms	remaining: 261ms
41:	learn: 18.4508846	total: 189ms	remaining: 262ms
42:	learn: 18.3650555	total: 197ms	remaining: 261ms
43:	learn: 18.1818415	total: 205ms	remaining: 261ms
44:	learn: 18.0782035	total: 211ms	remaining: 258ms
45:	learn: 17.9724472	total: 218ms	remaining: 255ms
46:	learn: 17.8657480	total: 223ms	remaining: 251ms
47:	learn: 17.7217309	total: 228ms	remaining: 247ms
48:	learn: 17.6403061	total: 232ms	remaining: 242ms
49:	learn: 17.5245570	total: 238ms	remaining: 238ms
50:	learn: 17.3976790	total: 243ms	remaining: 233ms
51:	learn: 17.2544460	total: 248ms	remaining: 229ms
52:	learn: 17.1507940	total: 254ms	remaining: 225ms
53:	learn: 17.0391276	total: 259ms	remaining: 220ms
54:	learn: 16.9348155	total: 264ms	remaining: 216ms
55:	learn: 16.8475635	total: 269ms	remaining: 211ms
56:	learn: 16.7691656	total: 274ms	remaining: 207ms
57:	learn: 16.6277836	total: 279ms	remaining: 202ms
58:	learn: 16.5524230	total: 285ms	remaining: 198ms
59:	learn: 16.4614442	total: 289ms	remaining: 193ms
60:	learn: 16.3077836	total: 293ms	remaining: 188ms
61:	learn: 16.2278133	total: 298ms	remaining: 182ms
62:	learn: 16.1288632	total: 302ms	remaining: 177ms
63:	learn: 16.0734717	total: 306ms	remaining: 172ms
64:	learn: 16.0085754	total: 311ms	remaining: 168ms
65:	learn: 15.9278700	total: 316ms	remaining: 163ms
66:	learn: 15.8320321	total: 321ms	remaining: 158ms
67:	learn: 15.7706425	total: 326ms	remaining: 154ms
68:	learn: 15.6404344	total: 331ms	remaining: 149ms
69:	learn: 15.5678129	total: 335ms	remaining: 144ms
70:	learn: 15.4980047	total: 339ms	remaining: 138ms
71:	learn: 15.4324207	total: 343ms	remaining: 133ms
72:	learn: 15.3551877	total: 347ms	remaining: 128ms
73:	learn: 15.2930769	total: 351ms	remaining: 123ms
74:	learn: 15.2307174	total: 355ms	remaining: 118ms
75:	learn: 15.1600937	total: 359ms	remaining: 113ms
76:	learn: 15.0837614	total: 364ms	remaining: 109ms
77:	learn: 15.0185989	total: 368ms	remaining: 104ms
78:	learn: 14.9300717	total: 373ms	remaining: 99ms
79:	learn: 14.8928389	total: 377ms	remaining: 94.2ms
80:	learn: 14.8250040	total: 381ms	remaining: 89.4ms
81:	learn: 14.7906114	total: 385ms	remaining: 84.6ms
82:	learn: 14.7214118	total: 390ms	remaining: 79.9ms
83:	learn: 14.6657875	total: 395ms	remaining: 75.2ms
84:	learn: 14.6085682	total: 403ms	remaining: 71.2ms
85:	learn: 14.5334097	total: 411ms	remaining: 66.9ms
86:	learn: 14.4681230	total: 419ms	remaining: 62.6ms
87:	learn: 14.4088334	total: 427ms	remaining: 58.3ms
88:	learn: 14.3541312	total: 433ms	remaining: 53.5ms
89:	learn: 14.2923636	total: 438ms	remaining: 48.6ms
90:	learn: 14.2339259	total: 442ms	remaining: 43.8ms
91:	learn: 14.1439983	total: 448ms	remaining: 39ms
92:	learn: 14.0701371	total: 453ms	remaining: 34.1ms
93:	learn: 13.9770736	total: 458ms	remaining: 29.2ms
94:	learn: 13.9275801	total: 463ms	remaining: 24.4ms
95:	learn: 13.8717050	total: 469ms	remaining: 19.5ms
96:	learn: 13.7821340	total: 474ms	remaining: 14.6ms
97:	learn: 13.7383865	total: 479ms	remaining: 9.77ms
98:	learn: 13.6850693	total: 483ms	remaining: 4.88ms
99:	learn: 13.6273539	total: 488ms	remaining: 0us
0:	learn: 43.2118728	total: 4.18ms	remaining: 414ms
1:	learn: 42.3090111	total: 8.4ms	remaining: 411ms
2:	learn: 41.3060764	total: 12.5ms	remaining: 404ms
3:	learn: 40.3653958	total: 16.1ms	remaining: 386ms
4:	learn: 39.5006331	total: 20.6ms	remaining: 391ms
5:	learn: 38.6473041	total: 24.2ms	remaining: 379ms
6:	learn: 37.8560875	total: 28.2ms	remaining: 374ms
7:	learn: 37.0772701	total: 32.3ms	remaining: 372ms
8:	learn: 36.3260704	total: 36.5ms	remaining: 369ms
9:	learn: 35.7300393	total: 40.9ms	remaining: 368ms
10:	learn: 34.9336547	total: 45.1ms	remaining: 365ms
11:	learn: 34.1758190	total: 49.8ms	remaining: 365ms
12:	learn: 33.5120760	total: 54ms	remaining: 362ms
13:	learn: 32.8731142	total: 58.2ms	remaining: 358ms
14:	learn: 32.3579595	total: 62.5ms	remaining: 354ms
15:	learn: 31.7969963	total: 67.2ms	remaining: 353ms
16:	learn: 31.3472797	total: 75.7ms	remaining: 369ms
17:	learn: 30.7865884	total: 83.1ms	remaining: 379ms
18:	learn: 30.3876486	total: 91.9ms	remaining: 392ms
19:	learn: 29.8840575	total: 97.3ms	remaining: 389ms
20:	learn: 29.3584237	total: 104ms	remaining: 391ms
21:	learn: 28.9965200	total: 109ms	remaining: 386ms
22:	learn: 28.6117225	total: 114ms	remaining: 383ms
23:	learn: 28.1147832	total: 120ms	remaining: 379ms
24:	learn: 27.7857774	total: 125ms	remaining: 374ms
25:	learn: 27.3181226	total: 129ms	remaining: 368ms
26:	learn: 26.9019101	total: 134ms	remaining: 363ms
27:	learn: 26.6957004	total: 139ms	remaining: 358ms
28:	learn: 26.2816390	total: 145ms	remaining: 354ms
29:	learn: 25.9107534	total: 149ms	remaining: 348ms
30:	learn: 25.5773085	total: 154ms	remaining: 343ms
31:	learn: 25.1916035	total: 158ms	remaining: 337ms
32:	learn: 24.8819670	total: 163ms	remaining: 331ms
33:	learn: 24.5580488	total: 169ms	remaining: 328ms
34:	learn: 24.3088624	total: 174ms	remaining: 324ms
35:	learn: 23.9890893	total: 179ms	remaining: 318ms
36:	learn: 23.7266073	total: 182ms	remaining: 311ms
37:	learn: 23.4886046	total: 186ms	remaining: 304ms
38:	learn: 23.2786313	total: 190ms	remaining: 297ms
39:	learn: 23.0060540	total: 194ms	remaining: 291ms
40:	learn: 22.7848361	total: 198ms	remaining: 285ms
41:	learn: 22.5485511	total: 202ms	remaining: 278ms
42:	learn: 22.3113565	total: 206ms	remaining: 272ms
43:	learn: 22.1296084	total: 209ms	remaining: 266ms
44:	learn: 21.8514989	total: 213ms	remaining: 261ms
45:	learn: 21.6540201	total: 217ms	remaining: 255ms
46:	learn: 21.4203535	total: 221ms	remaining: 250ms
47:	learn: 21.2317196	total: 225ms	remaining: 244ms
48:	learn: 21.0547467	total: 229ms	remaining: 239ms
49:	learn: 20.9192535	total: 233ms	remaining: 233ms
50:	learn: 20.6975386	total: 237ms	remaining: 228ms
51:	learn: 20.5839720	total: 241ms	remaining: 222ms
52:	learn: 20.4528901	total: 245ms	remaining: 217ms
53:	learn: 20.3392419	total: 249ms	remaining: 212ms
54:	learn: 20.1518693	total: 254ms	remaining: 208ms
55:	learn: 19.9928770	total: 258ms	remaining: 203ms
56:	learn: 19.8042028	total: 263ms	remaining: 198ms
57:	learn: 19.7000879	total: 267ms	remaining: 193ms
58:	learn: 19.5524154	total: 271ms	remaining: 188ms
59:	learn: 19.4366908	total: 276ms	remaining: 184ms
60:	learn: 19.2739134	total: 281ms	remaining: 179ms
61:	learn: 19.1499266	total: 288ms	remaining: 176ms
62:	learn: 18.9948972	total: 295ms	remaining: 173ms
63:	learn: 18.8952299	total: 304ms	remaining: 171ms
64:	learn: 18.7545430	total: 311ms	remaining: 167ms
65:	learn: 18.6315116	total: 316ms	remaining: 163ms
66:	learn: 18.5164994	total: 321ms	remaining: 158ms
67:	learn: 18.3983038	total: 327ms	remaining: 154ms
68:	learn: 18.2803212	total: 332ms	remaining: 149ms
69:	learn: 18.1738467	total: 337ms	remaining: 144ms
70:	learn: 18.0884235	total: 342ms	remaining: 140ms
71:	learn: 18.0129445	total: 348ms	remaining: 135ms
72:	learn: 17.8582158	total: 353ms	remaining: 130ms
73:	learn: 17.7473705	total: 358ms	remaining: 126ms
74:	learn: 17.6431421	total: 363ms	remaining: 121ms
75:	learn: 17.5398511	total: 368ms	remaining: 116ms
76:	learn: 17.4404598	total: 372ms	remaining: 111ms
77:	learn: 17.3477525	total: 378ms	remaining: 107ms
78:	learn: 17.2283831	total: 384ms	remaining: 102ms
79:	learn: 17.0767035	total: 388ms	remaining: 96.9ms
80:	learn: 16.9732705	total: 391ms	remaining: 91.8ms
81:	learn: 16.8927449	total: 396ms	remaining: 86.9ms
82:	learn: 16.8145625	total: 399ms	remaining: 81.8ms
83:	learn: 16.7290845	total: 403ms	remaining: 76.8ms
84:	learn: 16.6661414	total: 407ms	remaining: 71.8ms
85:	learn: 16.5875575	total: 411ms	remaining: 66.9ms
86:	learn: 16.4578580	total: 415ms	remaining: 62ms
87:	learn: 16.4243550	total: 419ms	remaining: 57.1ms
88:	learn: 16.3251337	total: 422ms	remaining: 52.2ms
89:	learn: 16.2516385	total: 427ms	remaining: 47.4ms
90:	learn: 16.1226518	total: 430ms	remaining: 42.6ms
91:	learn: 16.0718308	total: 435ms	remaining: 37.8ms
92:	learn: 15.9636735	total: 440ms	remaining: 33.1ms
93:	learn: 15.8923693	total: 445ms	remaining: 28.4ms
94:	learn: 15.8270425	total: 449ms	remaining: 23.6ms
95:	learn: 15.7449077	total: 454ms	remaining: 18.9ms
96:	learn: 15.6978936	total: 458ms	remaining: 14.2ms
97:	learn: 15.6527285	total: 463ms	remaining: 9.45ms
98:	learn: 15.5557320	total: 471ms	remaining: 4.76ms
99:	learn: 15.4399171	total: 479ms	remaining: 0us
0:	learn: 46.7092506	total: 5.51ms	remaining: 546ms
1:	learn: 45.8266821	total: 10.8ms	remaining: 529ms
2:	learn: 45.0052023	total: 16.2ms	remaining: 525ms
3:	learn: 44.3828795	total: 21.5ms	remaining: 517ms
4:	learn: 43.7255353	total: 26.7ms	remaining: 507ms
5:	learn: 43.1663831	total: 31ms	remaining: 486ms
6:	learn: 42.3875189	total: 35.8ms	remaining: 476ms
7:	learn: 41.7839075	total: 41.3ms	remaining: 475ms
8:	learn: 41.0740108	total: 46.6ms	remaining: 471ms
9:	learn: 40.3846647	total: 50.9ms	remaining: 458ms
10:	learn: 39.8821046	total: 54.7ms	remaining: 442ms
11:	learn: 39.1807254	total: 58.7ms	remaining: 431ms
12:	learn: 38.7153028	total: 62.6ms	remaining: 419ms
13:	learn: 38.0474495	total: 66.7ms	remaining: 410ms
14:	learn: 37.3844461	total: 70.4ms	remaining: 399ms
15:	learn: 36.9210704	total: 74.3ms	remaining: 390ms
16:	learn: 36.3160964	total: 78.4ms	remaining: 383ms
17:	learn: 35.8915826	total: 82.4ms	remaining: 375ms
18:	learn: 35.5519989	total: 86.3ms	remaining: 368ms
19:	learn: 35.1437045	total: 90ms	remaining: 360ms
20:	learn: 34.6387799	total: 94ms	remaining: 354ms
21:	learn: 34.2437068	total: 98.2ms	remaining: 348ms
22:	learn: 33.8262100	total: 102ms	remaining: 341ms
23:	learn: 33.4683000	total: 106ms	remaining: 336ms
24:	learn: 32.9996389	total: 110ms	remaining: 330ms
25:	learn: 32.6942147	total: 115ms	remaining: 326ms
26:	learn: 32.3016096	total: 119ms	remaining: 322ms
27:	learn: 31.9517346	total: 123ms	remaining: 317ms
28:	learn: 31.5277387	total: 128ms	remaining: 313ms
29:	learn: 31.2545365	total: 132ms	remaining: 309ms
30:	learn: 31.0510813	total: 137ms	remaining: 304ms
31:	learn: 30.6383830	total: 141ms	remaining: 299ms
32:	learn: 30.2800150	total: 146ms	remaining: 296ms
33:	learn: 29.9559797	total: 153ms	remaining: 298ms
34:	learn: 29.5802745	total: 161ms	remaining: 298ms
35:	learn: 29.2605111	total: 171ms	remaining: 304ms
36:	learn: 28.9582434	total: 180ms	remaining: 307ms
37:	learn: 28.6149387	total: 185ms	remaining: 302ms
38:	learn: 28.3980091	total: 190ms	remaining: 297ms
39:	learn: 28.1704520	total: 195ms	remaining: 293ms
40:	learn: 27.8881319	total: 200ms	remaining: 288ms
41:	learn: 27.5805731	total: 205ms	remaining: 283ms
42:	learn: 27.3520567	total: 211ms	remaining: 279ms
43:	learn: 27.1039679	total: 216ms	remaining: 275ms
44:	learn: 26.8472623	total: 221ms	remaining: 270ms
45:	learn: 26.5757869	total: 227ms	remaining: 266ms
46:	learn: 26.4579118	total: 234ms	remaining: 263ms
47:	learn: 26.1279008	total: 239ms	remaining: 259ms
48:	learn: 25.8503346	total: 244ms	remaining: 254ms
49:	learn: 25.7039015	total: 250ms	remaining: 250ms
50:	learn: 25.4317154	total: 256ms	remaining: 246ms
51:	learn: 25.3028008	total: 260ms	remaining: 240ms
52:	learn: 25.1906194	total: 264ms	remaining: 234ms
53:	learn: 25.0082790	total: 269ms	remaining: 229ms
54:	learn: 24.8264791	total: 273ms	remaining: 223ms
55:	learn: 24.5961365	total: 277ms	remaining: 217ms
56:	learn: 24.4007690	total: 281ms	remaining: 212ms
57:	learn: 24.2476228	total: 285ms	remaining: 206ms
58:	learn: 23.9582465	total: 289ms	remaining: 201ms
59:	learn: 23.7247243	total: 294ms	remaining: 196ms
60:	learn: 23.5379970	total: 298ms	remaining: 191ms
61:	learn: 23.3908530	total: 302ms	remaining: 185ms
62:	learn: 23.2123241	total: 306ms	remaining: 180ms
63:	learn: 23.1010345	total: 310ms	remaining: 175ms
64:	learn: 22.9032423	total: 315ms	remaining: 170ms
65:	learn: 22.7815198	total: 320ms	remaining: 165ms
66:	learn: 22.6325063	total: 324ms	remaining: 160ms
67:	learn: 22.5406071	total: 328ms	remaining: 155ms
68:	learn: 22.4413332	total: 333ms	remaining: 150ms
69:	learn: 22.3005609	total: 337ms	remaining: 145ms
70:	learn: 22.1779345	total: 342ms	remaining: 140ms
71:	learn: 22.0491576	total: 347ms	remaining: 135ms
72:	learn: 21.9379106	total: 354ms	remaining: 131ms
73:	learn: 21.7597096	total: 362ms	remaining: 127ms
74:	learn: 21.6042300	total: 370ms	remaining: 123ms
75:	learn: 21.4644642	total: 376ms	remaining: 119ms
76:	learn: 21.3811287	total: 382ms	remaining: 114ms
77:	learn: 21.3089276	total: 387ms	remaining: 109ms
78:	learn: 21.1654429	total: 392ms	remaining: 104ms
79:	learn: 20.9602460	total: 398ms	remaining: 99.4ms
80:	learn: 20.7959461	total: 403ms	remaining: 94.4ms
81:	learn: 20.5861156	total: 408ms	remaining: 89.5ms
82:	learn: 20.5120680	total: 413ms	remaining: 84.7ms
83:	learn: 20.3997233	total: 419ms	remaining: 79.8ms
84:	learn: 20.2499469	total: 424ms	remaining: 74.8ms
85:	learn: 20.1117768	total: 429ms	remaining: 69.8ms
86:	learn: 20.0617643	total: 433ms	remaining: 64.7ms
87:	learn: 19.9609182	total: 438ms	remaining: 59.7ms
88:	learn: 19.8763814	total: 443ms	remaining: 54.7ms
89:	learn: 19.7843516	total: 447ms	remaining: 49.7ms
90:	learn: 19.6926200	total: 452ms	remaining: 44.7ms
91:	learn: 19.5686774	total: 457ms	remaining: 39.8ms
92:	learn: 19.4727236	total: 463ms	remaining: 34.8ms
93:	learn: 19.3780174	total: 468ms	remaining: 29.9ms
94:	learn: 19.2840650	total: 473ms	remaining: 24.9ms
95:	learn: 19.1747368	total: 477ms	remaining: 19.9ms
96:	learn: 19.1273306	total: 482ms	remaining: 14.9ms
97:	learn: 19.0413946	total: 487ms	remaining: 9.93ms
98:	learn: 18.8980682	total: 491ms	remaining: 4.96ms
99:	learn: 18.7799962	total: 495ms	remaining: 0us
0:	learn: 46.4426352	total: 8.75ms	remaining: 866ms
1:	learn: 45.5770653	total: 17ms	remaining: 831ms
2:	learn: 44.6956685	total: 22.5ms	remaining: 726ms
3:	learn: 43.9934709	total: 30ms	remaining: 721ms
4:	learn: 43.3008183	total: 34.9ms	remaining: 664ms
5:	learn: 42.7510022	total: 39.9ms	remaining: 625ms
6:	learn: 42.0237555	total: 44.8ms	remaining: 596ms
7:	learn: 41.5354996	total: 50ms	remaining: 575ms
8:	learn: 41.0264055	total: 55.3ms	remaining: 559ms
9:	learn: 40.5267003	total: 60.6ms	remaining: 545ms
10:	learn: 39.8363942	total: 65.5ms	remaining: 530ms
11:	learn: 39.2014089	total: 70.3ms	remaining: 515ms
12:	learn: 38.7943524	total: 75.8ms	remaining: 507ms
13:	learn: 38.1664113	total: 80.8ms	remaining: 497ms
14:	learn: 37.7492773	total: 85.2ms	remaining: 483ms
15:	learn: 37.2369693	total: 89.4ms	remaining: 469ms
16:	learn: 36.6953383	total: 94.8ms	remaining: 463ms
17:	learn: 36.3580916	total: 99.9ms	remaining: 455ms
18:	learn: 35.8637745	total: 105ms	remaining: 446ms
19:	learn: 35.4299153	total: 109ms	remaining: 434ms
20:	learn: 34.8794879	total: 113ms	remaining: 425ms
21:	learn: 34.3253348	total: 116ms	remaining: 413ms
22:	learn: 33.9307096	total: 120ms	remaining: 403ms
23:	learn: 33.5952896	total: 124ms	remaining: 393ms
24:	learn: 33.1314051	total: 128ms	remaining: 384ms
25:	learn: 32.8502968	total: 132ms	remaining: 375ms
26:	learn: 32.4430184	total: 136ms	remaining: 367ms
27:	learn: 32.0721224	total: 139ms	remaining: 359ms
28:	learn: 31.7977479	total: 144ms	remaining: 351ms
29:	learn: 31.3999469	total: 148ms	remaining: 344ms
30:	learn: 31.1179360	total: 152ms	remaining: 337ms
31:	learn: 30.7712852	total: 156ms	remaining: 331ms
32:	learn: 30.2912977	total: 159ms	remaining: 324ms
33:	learn: 29.9920376	total: 164ms	remaining: 317ms
34:	learn: 29.6637918	total: 168ms	remaining: 312ms
35:	learn: 29.3522959	total: 172ms	remaining: 306ms
36:	learn: 29.0482516	total: 177ms	remaining: 301ms
37:	learn: 28.7956656	total: 181ms	remaining: 296ms
38:	learn: 28.4845569	total: 186ms	remaining: 290ms
39:	learn: 28.3038067	total: 190ms	remaining: 285ms
40:	learn: 28.1185263	total: 194ms	remaining: 279ms
41:	learn: 27.8012563	total: 199ms	remaining: 274ms
42:	learn: 27.5184259	total: 206ms	remaining: 272ms
43:	learn: 27.3019892	total: 213ms	remaining: 270ms
44:	learn: 27.0494594	total: 222ms	remaining: 272ms
45:	learn: 26.8054317	total: 228ms	remaining: 267ms
46:	learn: 26.6554974	total: 235ms	remaining: 265ms
47:	learn: 26.3568392	total: 240ms	remaining: 260ms
48:	learn: 26.1045872	total: 245ms	remaining: 255ms
49:	learn: 25.9807311	total: 250ms	remaining: 250ms
50:	learn: 25.7104640	total: 256ms	remaining: 246ms
51:	learn: 25.6019547	total: 261ms	remaining: 241ms
52:	learn: 25.5011930	total: 266ms	remaining: 236ms
53:	learn: 25.2291639	total: 271ms	remaining: 231ms
54:	learn: 24.9952313	total: 276ms	remaining: 226ms
55:	learn: 24.8195031	total: 280ms	remaining: 220ms
56:	learn: 24.5591684	total: 285ms	remaining: 215ms
57:	learn: 24.4163080	total: 288ms	remaining: 209ms
58:	learn: 24.2328188	total: 293ms	remaining: 203ms
59:	learn: 24.0087408	total: 297ms	remaining: 198ms
60:	learn: 23.8918912	total: 301ms	remaining: 193ms
61:	learn: 23.7537024	total: 306ms	remaining: 188ms
62:	learn: 23.5466923	total: 311ms	remaining: 183ms
63:	learn: 23.3903724	total: 316ms	remaining: 178ms
64:	learn: 23.3257785	total: 320ms	remaining: 172ms
65:	learn: 23.2839464	total: 324ms	remaining: 167ms
66:	learn: 23.1476036	total: 328ms	remaining: 161ms
67:	learn: 22.9480972	total: 331ms	remaining: 156ms
68:	learn: 22.7537529	total: 335ms	remaining: 151ms
69:	learn: 22.6209544	total: 339ms	remaining: 145ms
70:	learn: 22.5058753	total: 342ms	remaining: 140ms
71:	learn: 22.4068656	total: 346ms	remaining: 135ms
72:	learn: 22.3254150	total: 350ms	remaining: 129ms
73:	learn: 22.1784174	total: 354ms	remaining: 124ms
74:	learn: 22.1095388	total: 358ms	remaining: 119ms
75:	learn: 21.9958083	total: 362ms	remaining: 114ms
76:	learn: 21.8728475	total: 366ms	remaining: 109ms
77:	learn: 21.7975828	total: 370ms	remaining: 104ms
78:	learn: 21.7133267	total: 375ms	remaining: 99.6ms
79:	learn: 21.6023410	total: 379ms	remaining: 94.7ms
80:	learn: 21.5254474	total: 383ms	remaining: 89.8ms
81:	learn: 21.3307418	total: 387ms	remaining: 85ms
82:	learn: 21.2411976	total: 392ms	remaining: 80.3ms
83:	learn: 21.1091386	total: 397ms	remaining: 75.5ms
84:	learn: 21.0526747	total: 401ms	remaining: 70.8ms
85:	learn: 20.9083817	total: 409ms	remaining: 66.7ms
86:	learn: 20.8767767	total: 417ms	remaining: 62.4ms
87:	learn: 20.8143988	total: 427ms	remaining: 58.3ms
88:	learn: 20.7127697	total: 434ms	remaining: 53.6ms
89:	learn: 20.6112504	total: 440ms	remaining: 48.9ms
90:	learn: 20.4609960	total: 445ms	remaining: 44ms
91:	learn: 20.3648890	total: 450ms	remaining: 39.2ms
92:	learn: 20.3052040	total: 455ms	remaining: 34.3ms
93:	learn: 20.2587865	total: 461ms	remaining: 29.4ms
94:	learn: 20.2096406	total: 465ms	remaining: 24.5ms
95:	learn: 20.1301385	total: 470ms	remaining: 19.6ms
96:	learn: 20.0401359	total: 476ms	remaining: 14.7ms
97:	learn: 19.9791591	total: 481ms	remaining: 9.82ms
98:	learn: 19.9237318	total: 486ms	remaining: 4.91ms
99:	learn: 19.8009190	total: 491ms	remaining: 0us
0:	learn: 46.9286701	total: 4.63ms	remaining: 458ms
1:	learn: 46.2851598	total: 8.25ms	remaining: 404ms
2:	learn: 45.4586007	total: 11.9ms	remaining: 386ms
3:	learn: 44.6581393	total: 16.1ms	remaining: 388ms
4:	learn: 43.8231644	total: 20.1ms	remaining: 383ms
5:	learn: 43.2906569	total: 23.7ms	remaining: 372ms
6:	learn: 42.5095813	total: 27.4ms	remaining: 363ms
7:	learn: 41.9310465	total: 31.4ms	remaining: 361ms
8:	learn: 41.2083262	total: 35.7ms	remaining: 361ms
9:	learn: 40.6852547	total: 40.1ms	remaining: 361ms
10:	learn: 39.9637018	total: 44ms	remaining: 356ms
11:	learn: 39.2804189	total: 48.6ms	remaining: 357ms
12:	learn: 38.8804017	total: 52.8ms	remaining: 353ms
13:	learn: 38.3826597	total: 56.7ms	remaining: 349ms
14:	learn: 37.9240424	total: 61.3ms	remaining: 347ms
15:	learn: 37.4312070	total: 66.1ms	remaining: 347ms
16:	learn: 36.8803673	total: 74.5ms	remaining: 364ms
17:	learn: 36.5496582	total: 81.5ms	remaining: 371ms
18:	learn: 36.2078375	total: 91ms	remaining: 388ms
19:	learn: 35.6806593	total: 96.4ms	remaining: 385ms
20:	learn: 35.1512154	total: 112ms	remaining: 421ms
21:	learn: 34.6013055	total: 117ms	remaining: 415ms
22:	learn: 34.2380102	total: 123ms	remaining: 410ms
23:	learn: 33.8720185	total: 129ms	remaining: 407ms
24:	learn: 33.4426135	total: 134ms	remaining: 401ms
25:	learn: 33.1471186	total: 139ms	remaining: 396ms
26:	learn: 32.8018279	total: 145ms	remaining: 392ms
27:	learn: 32.4498594	total: 150ms	remaining: 387ms
28:	learn: 31.9749480	total: 156ms	remaining: 381ms
29:	learn: 31.6470735	total: 160ms	remaining: 373ms
30:	learn: 31.4265242	total: 166ms	remaining: 368ms
31:	learn: 31.0753325	total: 171ms	remaining: 364ms
32:	learn: 30.7192494	total: 175ms	remaining: 356ms
33:	learn: 30.3547940	total: 179ms	remaining: 347ms
34:	learn: 30.1296593	total: 183ms	remaining: 340ms
35:	learn: 29.9367140	total: 187ms	remaining: 332ms
36:	learn: 29.6248477	total: 191ms	remaining: 325ms
37:	learn: 29.3156707	total: 195ms	remaining: 318ms
38:	learn: 29.1534039	total: 199ms	remaining: 311ms
39:	learn: 28.9351289	total: 202ms	remaining: 304ms
40:	learn: 28.7057685	total: 207ms	remaining: 297ms
41:	learn: 28.3132521	total: 210ms	remaining: 291ms
42:	learn: 28.0739054	total: 215ms	remaining: 284ms
43:	learn: 27.8135917	total: 219ms	remaining: 278ms
44:	learn: 27.5376804	total: 223ms	remaining: 272ms
45:	learn: 27.3195849	total: 226ms	remaining: 266ms
46:	learn: 27.1681104	total: 230ms	remaining: 260ms
47:	learn: 27.0122442	total: 235ms	remaining: 254ms
48:	learn: 26.7819409	total: 239ms	remaining: 249ms
49:	learn: 26.6429308	total: 244ms	remaining: 244ms
50:	learn: 26.3482899	total: 248ms	remaining: 238ms
51:	learn: 26.2432755	total: 253ms	remaining: 233ms
52:	learn: 26.0811102	total: 258ms	remaining: 228ms
53:	learn: 25.9398113	total: 262ms	remaining: 223ms
54:	learn: 25.7891395	total: 267ms	remaining: 218ms
55:	learn: 25.6185338	total: 272ms	remaining: 214ms
56:	learn: 25.3293977	total: 280ms	remaining: 211ms
57:	learn: 25.1918906	total: 287ms	remaining: 208ms
58:	learn: 25.0503990	total: 295ms	remaining: 205ms
59:	learn: 24.8225776	total: 303ms	remaining: 202ms
60:	learn: 24.5969153	total: 308ms	remaining: 197ms
61:	learn: 24.4657353	total: 313ms	remaining: 192ms
62:	learn: 24.2861000	total: 319ms	remaining: 187ms
63:	learn: 24.1719148	total: 324ms	remaining: 182ms
64:	learn: 24.0547875	total: 329ms	remaining: 177ms
65:	learn: 23.9156724	total: 335ms	remaining: 172ms
66:	learn: 23.7604012	total: 340ms	remaining: 167ms
67:	learn: 23.6265679	total: 344ms	remaining: 162ms
68:	learn: 23.5372255	total: 349ms	remaining: 157ms
69:	learn: 23.3286241	total: 353ms	remaining: 151ms
70:	learn: 23.1806465	total: 357ms	remaining: 146ms
71:	learn: 23.0652081	total: 361ms	remaining: 140ms
72:	learn: 22.9231023	total: 366ms	remaining: 135ms
73:	learn: 22.8020380	total: 370ms	remaining: 130ms
74:	learn: 22.6525036	total: 375ms	remaining: 125ms
75:	learn: 22.5616268	total: 380ms	remaining: 120ms
76:	learn: 22.4395250	total: 385ms	remaining: 115ms
77:	learn: 22.3732379	total: 389ms	remaining: 110ms
78:	learn: 22.2300874	total: 393ms	remaining: 104ms
79:	learn: 22.0209882	total: 397ms	remaining: 99.2ms
80:	learn: 21.8703996	total: 401ms	remaining: 94ms
81:	learn: 21.7222039	total: 405ms	remaining: 88.8ms
82:	learn: 21.5903685	total: 408ms	remaining: 83.6ms
83:	learn: 21.4915083	total: 412ms	remaining: 78.4ms
84:	learn: 21.3320736	total: 416ms	remaining: 73.4ms
85:	learn: 21.2295060	total: 420ms	remaining: 68.4ms
86:	learn: 21.1983620	total: 424ms	remaining: 63.3ms
87:	learn: 21.1404156	total: 428ms	remaining: 58.3ms
88:	learn: 21.0684840	total: 432ms	remaining: 53.4ms
89:	learn: 20.9269197	total: 436ms	remaining: 48.5ms
90:	learn: 20.8614606	total: 440ms	remaining: 43.6ms
91:	learn: 20.6642996	total: 445ms	remaining: 38.7ms
92:	learn: 20.5612705	total: 449ms	remaining: 33.8ms
93:	learn: 20.5264997	total: 454ms	remaining: 29ms
94:	learn: 20.4532331	total: 458ms	remaining: 24.1ms
95:	learn: 20.3700696	total: 462ms	remaining: 19.2ms
96:	learn: 20.2671574	total: 467ms	remaining: 14.4ms
97:	learn: 20.1761207	total: 473ms	remaining: 9.66ms
98:	learn: 20.0533799	total: 480ms	remaining: 4.85ms
99:	learn: 19.9890055	total: 489ms	remaining: 0us
0:	learn: 27.7143805	total: 4.87ms	remaining: 482ms
1:	learn: 27.2245894	total: 9.79ms	remaining: 480ms
2:	learn: 26.8693029	total: 15.3ms	remaining: 495ms
3:	learn: 26.4713217	total: 20.2ms	remaining: 486ms
4:	learn: 26.1261794	total: 24ms	remaining: 457ms
5:	learn: 25.8160419	total: 27.8ms	remaining: 435ms
6:	learn: 25.3860050	total: 31.4ms	remaining: 417ms
7:	learn: 25.0621682	total: 35.5ms	remaining: 408ms
8:	learn: 24.7574429	total: 39.3ms	remaining: 397ms
9:	learn: 24.5154734	total: 43.6ms	remaining: 392ms
10:	learn: 24.2199118	total: 47.2ms	remaining: 382ms
11:	learn: 23.9774955	total: 51ms	remaining: 374ms
12:	learn: 23.7755558	total: 54.7ms	remaining: 366ms
13:	learn: 23.4384476	total: 58.4ms	remaining: 359ms
14:	learn: 23.2035324	total: 62.2ms	remaining: 352ms
15:	learn: 22.9925293	total: 65.9ms	remaining: 346ms
16:	learn: 22.7981113	total: 69.9ms	remaining: 342ms
17:	learn: 22.5829245	total: 73.4ms	remaining: 335ms
18:	learn: 22.4131931	total: 77.3ms	remaining: 330ms
19:	learn: 22.1833629	total: 81.5ms	remaining: 326ms
20:	learn: 21.9660824	total: 85.5ms	remaining: 321ms
21:	learn: 21.7281998	total: 89.2ms	remaining: 316ms
22:	learn: 21.5000824	total: 93ms	remaining: 311ms
23:	learn: 21.2717031	total: 97.6ms	remaining: 309ms
24:	learn: 21.0926073	total: 102ms	remaining: 306ms
25:	learn: 20.8922144	total: 107ms	remaining: 304ms
26:	learn: 20.7498215	total: 111ms	remaining: 300ms
27:	learn: 20.5781754	total: 112ms	remaining: 289ms
28:	learn: 20.4294665	total: 116ms	remaining: 285ms
29:	learn: 20.2273985	total: 121ms	remaining: 282ms
30:	learn: 20.0920234	total: 126ms	remaining: 280ms
31:	learn: 19.9311712	total: 133ms	remaining: 282ms
32:	learn: 19.7852359	total: 140ms	remaining: 284ms
33:	learn: 19.6211007	total: 147ms	remaining: 286ms
34:	learn: 19.4806501	total: 154ms	remaining: 286ms
35:	learn: 19.3415380	total: 162ms	remaining: 288ms
36:	learn: 19.2075499	total: 166ms	remaining: 283ms
37:	learn: 19.0582745	total: 171ms	remaining: 280ms
38:	learn: 18.8852020	total: 177ms	remaining: 276ms
39:	learn: 18.6868677	total: 182ms	remaining: 272ms
40:	learn: 18.5481481	total: 187ms	remaining: 269ms
41:	learn: 18.4508846	total: 193ms	remaining: 266ms
42:	learn: 18.3650555	total: 197ms	remaining: 262ms
43:	learn: 18.1818415	total: 202ms	remaining: 257ms
44:	learn: 18.0782035	total: 207ms	remaining: 254ms
45:	learn: 17.9724472	total: 212ms	remaining: 249ms
46:	learn: 17.8657480	total: 217ms	remaining: 245ms
47:	learn: 17.7217309	total: 222ms	remaining: 240ms
48:	learn: 17.6403061	total: 227ms	remaining: 237ms
49:	learn: 17.5245570	total: 232ms	remaining: 232ms
50:	learn: 17.3976790	total: 235ms	remaining: 226ms
51:	learn: 17.2544460	total: 239ms	remaining: 221ms
52:	learn: 17.1507940	total: 243ms	remaining: 216ms
53:	learn: 17.0391276	total: 247ms	remaining: 210ms
54:	learn: 16.9348155	total: 251ms	remaining: 205ms
55:	learn: 16.8475635	total: 255ms	remaining: 200ms
56:	learn: 16.7691656	total: 259ms	remaining: 195ms
57:	learn: 16.6277836	total: 263ms	remaining: 190ms
58:	learn: 16.5524230	total: 266ms	remaining: 185ms
59:	learn: 16.4614442	total: 270ms	remaining: 180ms
60:	learn: 16.3077836	total: 274ms	remaining: 175ms
61:	learn: 16.2278133	total: 278ms	remaining: 170ms
62:	learn: 16.1288632	total: 281ms	remaining: 165ms
63:	learn: 16.0734717	total: 285ms	remaining: 160ms
64:	learn: 16.0085754	total: 289ms	remaining: 156ms
65:	learn: 15.9278700	total: 293ms	remaining: 151ms
66:	learn: 15.8320321	total: 297ms	remaining: 146ms
67:	learn: 15.7706425	total: 301ms	remaining: 142ms
68:	learn: 15.6404344	total: 305ms	remaining: 137ms
69:	learn: 15.5678129	total: 310ms	remaining: 133ms
70:	learn: 15.4980047	total: 314ms	remaining: 128ms
71:	learn: 15.4324207	total: 319ms	remaining: 124ms
72:	learn: 15.3551877	total: 323ms	remaining: 119ms
73:	learn: 15.2930769	total: 327ms	remaining: 115ms
74:	learn: 15.2307174	total: 331ms	remaining: 110ms
75:	learn: 15.1600937	total: 336ms	remaining: 106ms
76:	learn: 15.0837614	total: 340ms	remaining: 102ms
77:	learn: 15.0185989	total: 350ms	remaining: 98.7ms
78:	learn: 14.9300717	total: 358ms	remaining: 95.2ms
79:	learn: 14.8928389	total: 367ms	remaining: 91.8ms
80:	learn: 14.8250040	total: 375ms	remaining: 88ms
81:	learn: 14.7906114	total: 380ms	remaining: 83.5ms
82:	learn: 14.7214118	total: 385ms	remaining: 79ms
83:	learn: 14.6657875	total: 391ms	remaining: 74.4ms
84:	learn: 14.6085682	total: 396ms	remaining: 69.8ms
85:	learn: 14.5334097	total: 401ms	remaining: 65.3ms
86:	learn: 14.4681230	total: 406ms	remaining: 60.7ms
87:	learn: 14.4088334	total: 411ms	remaining: 56.1ms
88:	learn: 14.3541312	total: 416ms	remaining: 51.4ms
89:	learn: 14.2923636	total: 420ms	remaining: 46.7ms
90:	learn: 14.2339259	total: 424ms	remaining: 42ms
91:	learn: 14.1439983	total: 429ms	remaining: 37.3ms
92:	learn: 14.0701371	total: 433ms	remaining: 32.6ms
93:	learn: 13.9770736	total: 438ms	remaining: 28ms
94:	learn: 13.9275801	total: 443ms	remaining: 23.3ms
95:	learn: 13.8717050	total: 448ms	remaining: 18.7ms
96:	learn: 13.7821340	total: 452ms	remaining: 14ms
97:	learn: 13.7383865	total: 456ms	remaining: 9.31ms
98:	learn: 13.6850693	total: 460ms	remaining: 4.65ms
99:	learn: 13.6273539	total: 464ms	remaining: 0us
0:	learn: 43.2118728	total: 4.63ms	remaining: 459ms
1:	learn: 42.3090111	total: 9.06ms	remaining: 444ms
2:	learn: 41.3060764	total: 13.6ms	remaining: 441ms
3:	learn: 40.3653958	total: 18ms	remaining: 431ms
4:	learn: 39.5006331	total: 22.8ms	remaining: 433ms
5:	learn: 38.6473041	total: 27.3ms	remaining: 428ms
6:	learn: 37.8560875	total: 31.9ms	remaining: 423ms
7:	learn: 37.0772701	total: 36.2ms	remaining: 416ms
8:	learn: 36.3260704	total: 43.6ms	remaining: 441ms
9:	learn: 35.7300393	total: 51.5ms	remaining: 464ms
10:	learn: 34.9336547	total: 60.4ms	remaining: 489ms
11:	learn: 34.1758190	total: 68.4ms	remaining: 501ms
12:	learn: 33.5120760	total: 74.6ms	remaining: 499ms
13:	learn: 32.8731142	total: 80.2ms	remaining: 493ms
14:	learn: 32.3579595	total: 85.5ms	remaining: 485ms
15:	learn: 31.7969963	total: 91.1ms	remaining: 478ms
16:	learn: 31.3472797	total: 96.8ms	remaining: 472ms
17:	learn: 30.7865884	total: 102ms	remaining: 463ms
18:	learn: 30.3876486	total: 107ms	remaining: 456ms
19:	learn: 29.8840575	total: 112ms	remaining: 450ms
20:	learn: 29.3584237	total: 117ms	remaining: 442ms
21:	learn: 28.9965200	total: 123ms	remaining: 436ms
22:	learn: 28.6117225	total: 128ms	remaining: 429ms
23:	learn: 28.1147832	total: 134ms	remaining: 423ms
24:	learn: 27.7857774	total: 139ms	remaining: 417ms
25:	learn: 27.3181226	total: 144ms	remaining: 410ms
26:	learn: 26.9019101	total: 148ms	remaining: 401ms
27:	learn: 26.6957004	total: 152ms	remaining: 391ms
28:	learn: 26.2816390	total: 156ms	remaining: 382ms
29:	learn: 25.9107534	total: 160ms	remaining: 374ms
30:	learn: 25.5773085	total: 164ms	remaining: 365ms
31:	learn: 25.1916035	total: 168ms	remaining: 357ms
32:	learn: 24.8819670	total: 172ms	remaining: 349ms
33:	learn: 24.5580488	total: 176ms	remaining: 341ms
34:	learn: 24.3088624	total: 180ms	remaining: 334ms
35:	learn: 23.9890893	total: 184ms	remaining: 328ms
36:	learn: 23.7266073	total: 188ms	remaining: 321ms
37:	learn: 23.4886046	total: 193ms	remaining: 314ms
38:	learn: 23.2786313	total: 197ms	remaining: 308ms
39:	learn: 23.0060540	total: 201ms	remaining: 302ms
40:	learn: 22.7848361	total: 205ms	remaining: 295ms
41:	learn: 22.5485511	total: 209ms	remaining: 289ms
42:	learn: 22.3113565	total: 213ms	remaining: 282ms
43:	learn: 22.1296084	total: 217ms	remaining: 277ms
44:	learn: 21.8514989	total: 222ms	remaining: 271ms
45:	learn: 21.6540201	total: 226ms	remaining: 266ms
46:	learn: 21.4203535	total: 231ms	remaining: 260ms
47:	learn: 21.2317196	total: 236ms	remaining: 255ms
48:	learn: 21.0547467	total: 240ms	remaining: 250ms
49:	learn: 20.9192535	total: 245ms	remaining: 245ms
50:	learn: 20.6975386	total: 250ms	remaining: 240ms
51:	learn: 20.5839720	total: 257ms	remaining: 237ms
52:	learn: 20.4528901	total: 264ms	remaining: 234ms
53:	learn: 20.3392419	total: 274ms	remaining: 233ms
54:	learn: 20.1518693	total: 280ms	remaining: 229ms
55:	learn: 19.9928770	total: 287ms	remaining: 226ms
56:	learn: 19.8042028	total: 293ms	remaining: 221ms
57:	learn: 19.7000879	total: 298ms	remaining: 216ms
58:	learn: 19.5524154	total: 303ms	remaining: 210ms
59:	learn: 19.4366908	total: 308ms	remaining: 205ms
60:	learn: 19.2739134	total: 313ms	remaining: 200ms
61:	learn: 19.1499266	total: 318ms	remaining: 195ms
62:	learn: 18.9948972	total: 323ms	remaining: 190ms
63:	learn: 18.8952299	total: 328ms	remaining: 185ms
64:	learn: 18.7545430	total: 334ms	remaining: 180ms
65:	learn: 18.6315116	total: 338ms	remaining: 174ms
66:	learn: 18.5164994	total: 344ms	remaining: 169ms
67:	learn: 18.3983038	total: 349ms	remaining: 164ms
68:	learn: 18.2803212	total: 354ms	remaining: 159ms
69:	learn: 18.1738467	total: 358ms	remaining: 153ms
70:	learn: 18.0884235	total: 362ms	remaining: 148ms
71:	learn: 18.0129445	total: 366ms	remaining: 142ms
72:	learn: 17.8582158	total: 370ms	remaining: 137ms
73:	learn: 17.7473705	total: 374ms	remaining: 131ms
74:	learn: 17.6431421	total: 377ms	remaining: 126ms
75:	learn: 17.5398511	total: 381ms	remaining: 120ms
76:	learn: 17.4404598	total: 385ms	remaining: 115ms
77:	learn: 17.3477525	total: 389ms	remaining: 110ms
78:	learn: 17.2283831	total: 393ms	remaining: 104ms
79:	learn: 17.0767035	total: 397ms	remaining: 99.1ms
80:	learn: 16.9732705	total: 401ms	remaining: 94ms
81:	learn: 16.8927449	total: 405ms	remaining: 88.8ms
82:	learn: 16.8145625	total: 408ms	remaining: 83.6ms
83:	learn: 16.7290845	total: 412ms	remaining: 78.4ms
84:	learn: 16.6661414	total: 416ms	remaining: 73.4ms
85:	learn: 16.5875575	total: 420ms	remaining: 68.4ms
86:	learn: 16.4578580	total: 424ms	remaining: 63.4ms
87:	learn: 16.4243550	total: 429ms	remaining: 58.5ms
88:	learn: 16.3251337	total: 433ms	remaining: 53.5ms
89:	learn: 16.2516385	total: 438ms	remaining: 48.6ms
90:	learn: 16.1226518	total: 442ms	remaining: 43.7ms
91:	learn: 16.0718308	total: 446ms	remaining: 38.8ms
92:	learn: 15.9636735	total: 451ms	remaining: 34ms
93:	learn: 15.8923693	total: 468ms	remaining: 29.9ms
94:	learn: 15.8270425	total: 475ms	remaining: 25ms
95:	learn: 15.7449077	total: 481ms	remaining: 20ms
96:	learn: 15.6978936	total: 486ms	remaining: 15ms
97:	learn: 15.6527285	total: 492ms	remaining: 10ms
98:	learn: 15.5557320	total: 496ms	remaining: 5.01ms
99:	learn: 15.4399171	total: 502ms	remaining: 0us
0:	learn: 46.7092506	total: 4.14ms	remaining: 410ms
1:	learn: 45.8266821	total: 8.52ms	remaining: 418ms
2:	learn: 45.0052023	total: 12.8ms	remaining: 413ms
3:	learn: 44.3828795	total: 17ms	remaining: 407ms
4:	learn: 43.7255353	total: 20.6ms	remaining: 391ms
5:	learn: 43.1663831	total: 24.6ms	remaining: 385ms
6:	learn: 42.3875189	total: 29ms	remaining: 385ms
7:	learn: 41.7839075	total: 32.9ms	remaining: 378ms
8:	learn: 41.0740108	total: 36.8ms	remaining: 372ms
9:	learn: 40.3846647	total: 40.6ms	remaining: 365ms
10:	learn: 39.8821046	total: 44.4ms	remaining: 359ms
11:	learn: 39.1807254	total: 48.4ms	remaining: 355ms
12:	learn: 38.7153028	total: 51.9ms	remaining: 348ms
13:	learn: 38.0474495	total: 56.2ms	remaining: 345ms
14:	learn: 37.3844461	total: 60ms	remaining: 340ms
15:	learn: 36.9210704	total: 64ms	remaining: 336ms
16:	learn: 36.3160964	total: 67.9ms	remaining: 332ms
17:	learn: 35.8915826	total: 72.3ms	remaining: 329ms
18:	learn: 35.5519989	total: 76.8ms	remaining: 328ms
19:	learn: 35.1437045	total: 81.4ms	remaining: 326ms
20:	learn: 34.6387799	total: 85.5ms	remaining: 322ms
21:	learn: 34.2437068	total: 89.6ms	remaining: 318ms
22:	learn: 33.8262100	total: 93.7ms	remaining: 314ms
23:	learn: 33.4683000	total: 98ms	remaining: 310ms
24:	learn: 32.9996389	total: 102ms	remaining: 307ms
25:	learn: 32.6942147	total: 110ms	remaining: 312ms
26:	learn: 32.3016096	total: 118ms	remaining: 319ms
27:	learn: 31.9517346	total: 128ms	remaining: 328ms
28:	learn: 31.5277387	total: 136ms	remaining: 333ms
29:	learn: 31.2545365	total: 142ms	remaining: 330ms
30:	learn: 31.0510813	total: 147ms	remaining: 327ms
31:	learn: 30.6383830	total: 152ms	remaining: 323ms
32:	learn: 30.2800150	total: 157ms	remaining: 319ms
33:	learn: 29.9559797	total: 162ms	remaining: 315ms
34:	learn: 29.5802745	total: 167ms	remaining: 311ms
35:	learn: 29.2605111	total: 172ms	remaining: 306ms
36:	learn: 28.9582434	total: 177ms	remaining: 302ms
37:	learn: 28.6149387	total: 182ms	remaining: 297ms
38:	learn: 28.3980091	total: 187ms	remaining: 292ms
39:	learn: 28.1704520	total: 191ms	remaining: 287ms
40:	learn: 27.8881319	total: 196ms	remaining: 282ms
41:	learn: 27.5805731	total: 200ms	remaining: 277ms
42:	learn: 27.3520567	total: 206ms	remaining: 273ms
43:	learn: 27.1039679	total: 212ms	remaining: 270ms
44:	learn: 26.8472623	total: 216ms	remaining: 264ms
45:	learn: 26.5757869	total: 221ms	remaining: 259ms
46:	learn: 26.4579118	total: 225ms	remaining: 254ms
47:	learn: 26.1279008	total: 229ms	remaining: 248ms
48:	learn: 25.8503346	total: 232ms	remaining: 242ms
49:	learn: 25.7039015	total: 236ms	remaining: 236ms
50:	learn: 25.4317154	total: 240ms	remaining: 231ms
51:	learn: 25.3028008	total: 244ms	remaining: 225ms
52:	learn: 25.1906194	total: 248ms	remaining: 220ms
53:	learn: 25.0082790	total: 252ms	remaining: 215ms
54:	learn: 24.8264791	total: 256ms	remaining: 209ms
55:	learn: 24.5961365	total: 260ms	remaining: 204ms
56:	learn: 24.4007690	total: 263ms	remaining: 199ms
57:	learn: 24.2476228	total: 267ms	remaining: 193ms
58:	learn: 23.9582465	total: 272ms	remaining: 189ms
59:	learn: 23.7247243	total: 276ms	remaining: 184ms
60:	learn: 23.5379970	total: 281ms	remaining: 179ms
61:	learn: 23.3908530	total: 285ms	remaining: 175ms
62:	learn: 23.2123241	total: 290ms	remaining: 170ms
63:	learn: 23.1010345	total: 294ms	remaining: 165ms
64:	learn: 22.9032423	total: 298ms	remaining: 161ms
65:	learn: 22.7815198	total: 303ms	remaining: 156ms
66:	learn: 22.6325063	total: 312ms	remaining: 154ms
67:	learn: 22.5406071	total: 320ms	remaining: 150ms
68:	learn: 22.4413332	total: 335ms	remaining: 151ms
69:	learn: 22.3005609	total: 341ms	remaining: 146ms
70:	learn: 22.1779345	total: 346ms	remaining: 141ms
71:	learn: 22.0491576	total: 351ms	remaining: 137ms
72:	learn: 21.9379106	total: 356ms	remaining: 132ms
73:	learn: 21.7597096	total: 362ms	remaining: 127ms
74:	learn: 21.6042300	total: 374ms	remaining: 125ms
75:	learn: 21.4644642	total: 379ms	remaining: 120ms
76:	learn: 21.3811287	total: 385ms	remaining: 115ms
77:	learn: 21.3089276	total: 390ms	remaining: 110ms
78:	learn: 21.1654429	total: 395ms	remaining: 105ms
79:	learn: 20.9602460	total: 400ms	remaining: 100ms
80:	learn: 20.7959461	total: 405ms	remaining: 95ms
81:	learn: 20.5861156	total: 409ms	remaining: 89.9ms
82:	learn: 20.5120680	total: 413ms	remaining: 84.7ms
83:	learn: 20.3997233	total: 417ms	remaining: 79.5ms
84:	learn: 20.2499469	total: 422ms	remaining: 74.4ms
85:	learn: 20.1117768	total: 426ms	remaining: 69.3ms
86:	learn: 20.0617643	total: 430ms	remaining: 64.3ms
87:	learn: 19.9609182	total: 435ms	remaining: 59.3ms
88:	learn: 19.8763814	total: 439ms	remaining: 54.3ms
89:	learn: 19.7843516	total: 443ms	remaining: 49.3ms
90:	learn: 19.6926200	total: 448ms	remaining: 44.3ms
91:	learn: 19.5686774	total: 452ms	remaining: 39.3ms
92:	learn: 19.4727236	total: 456ms	remaining: 34.3ms
93:	learn: 19.3780174	total: 460ms	remaining: 29.4ms
94:	learn: 19.2840650	total: 465ms	remaining: 24.5ms
95:	learn: 19.1747368	total: 469ms	remaining: 19.6ms
96:	learn: 19.1273306	total: 474ms	remaining: 14.7ms
97:	learn: 19.0413946	total: 479ms	remaining: 9.77ms
98:	learn: 18.8980682	total: 484ms	remaining: 4.89ms
99:	learn: 18.7799962	total: 489ms	remaining: 0us
0:	learn: 46.4426352	total: 5.38ms	remaining: 533ms
1:	learn: 45.5770653	total: 10.3ms	remaining: 507ms
2:	learn: 44.6956685	total: 15.5ms	remaining: 501ms
3:	learn: 43.9934709	total: 20.5ms	remaining: 492ms
4:	learn: 43.3008183	total: 25.5ms	remaining: 484ms
5:	learn: 42.7510022	total: 30.5ms	remaining: 478ms
6:	learn: 42.0237555	total: 35ms	remaining: 466ms
7:	learn: 41.5354996	total: 40ms	remaining: 460ms
8:	learn: 41.0264055	total: 44.8ms	remaining: 453ms
9:	learn: 40.5267003	total: 49.9ms	remaining: 449ms
10:	learn: 39.8363942	total: 55.1ms	remaining: 446ms
11:	learn: 39.2014089	total: 59.1ms	remaining: 433ms
12:	learn: 38.7943524	total: 63.1ms	remaining: 423ms
13:	learn: 38.1664113	total: 66.9ms	remaining: 411ms
14:	learn: 37.7492773	total: 70.7ms	remaining: 401ms
15:	learn: 37.2369693	total: 74.4ms	remaining: 391ms
16:	learn: 36.6953383	total: 78.4ms	remaining: 383ms
17:	learn: 36.3580916	total: 82ms	remaining: 374ms
18:	learn: 35.8637745	total: 85.8ms	remaining: 366ms
19:	learn: 35.4299153	total: 89.6ms	remaining: 358ms
20:	learn: 34.8794879	total: 93.6ms	remaining: 352ms
21:	learn: 34.3253348	total: 97.4ms	remaining: 345ms
22:	learn: 33.9307096	total: 101ms	remaining: 339ms
23:	learn: 33.5952896	total: 106ms	remaining: 335ms
24:	learn: 33.1314051	total: 110ms	remaining: 329ms
25:	learn: 32.8502968	total: 113ms	remaining: 323ms
26:	learn: 32.4430184	total: 117ms	remaining: 317ms
27:	learn: 32.0721224	total: 121ms	remaining: 311ms
28:	learn: 31.7977479	total: 126ms	remaining: 307ms
29:	learn: 31.3999469	total: 130ms	remaining: 304ms
30:	learn: 31.1179360	total: 135ms	remaining: 299ms
31:	learn: 30.7712852	total: 139ms	remaining: 295ms
32:	learn: 30.2912977	total: 143ms	remaining: 290ms
33:	learn: 29.9920376	total: 147ms	remaining: 286ms
34:	learn: 29.6637918	total: 151ms	remaining: 281ms
35:	learn: 29.3522959	total: 155ms	remaining: 276ms
36:	learn: 29.0482516	total: 162ms	remaining: 276ms
37:	learn: 28.7956656	total: 170ms	remaining: 277ms
38:	learn: 28.4845569	total: 178ms	remaining: 279ms
39:	learn: 28.3038067	total: 185ms	remaining: 277ms
40:	learn: 28.1185263	total: 192ms	remaining: 277ms
41:	learn: 27.8012563	total: 198ms	remaining: 273ms
42:	learn: 27.5184259	total: 203ms	remaining: 269ms
43:	learn: 27.3019892	total: 208ms	remaining: 265ms
44:	learn: 27.0494594	total: 214ms	remaining: 261ms
45:	learn: 26.8054317	total: 219ms	remaining: 257ms
46:	learn: 26.6554974	total: 224ms	remaining: 252ms
47:	learn: 26.3568392	total: 229ms	remaining: 248ms
48:	learn: 26.1045872	total: 234ms	remaining: 243ms
49:	learn: 25.9807311	total: 238ms	remaining: 238ms
50:	learn: 25.7104640	total: 243ms	remaining: 234ms
51:	learn: 25.6019547	total: 247ms	remaining: 228ms
52:	learn: 25.5011930	total: 253ms	remaining: 224ms
53:	learn: 25.2291639	total: 258ms	remaining: 220ms
54:	learn: 24.9952313	total: 262ms	remaining: 215ms
55:	learn: 24.8195031	total: 266ms	remaining: 209ms
56:	learn: 24.5591684	total: 270ms	remaining: 204ms
57:	learn: 24.4163080	total: 275ms	remaining: 199ms
58:	learn: 24.2328188	total: 279ms	remaining: 194ms
59:	learn: 24.0087408	total: 283ms	remaining: 189ms
60:	learn: 23.8918912	total: 287ms	remaining: 184ms
61:	learn: 23.7537024	total: 291ms	remaining: 178ms
62:	learn: 23.5466923	total: 295ms	remaining: 173ms
63:	learn: 23.3903724	total: 299ms	remaining: 168ms
64:	learn: 23.3257785	total: 303ms	remaining: 163ms
65:	learn: 23.2839464	total: 307ms	remaining: 158ms
66:	learn: 23.1476036	total: 310ms	remaining: 153ms
67:	learn: 22.9480972	total: 315ms	remaining: 148ms
68:	learn: 22.7537529	total: 319ms	remaining: 143ms
69:	learn: 22.6209544	total: 323ms	remaining: 139ms
70:	learn: 22.5058753	total: 328ms	remaining: 134ms
71:	learn: 22.4068656	total: 332ms	remaining: 129ms
72:	learn: 22.3254150	total: 336ms	remaining: 124ms
73:	learn: 22.1784174	total: 340ms	remaining: 120ms
74:	learn: 22.1095388	total: 344ms	remaining: 115ms
75:	learn: 21.9958083	total: 348ms	remaining: 110ms
76:	learn: 21.8728475	total: 353ms	remaining: 105ms
77:	learn: 21.7975828	total: 360ms	remaining: 102ms
78:	learn: 21.7133267	total: 367ms	remaining: 97.6ms
79:	learn: 21.6023410	total: 375ms	remaining: 93.8ms
80:	learn: 21.5254474	total: 381ms	remaining: 89.4ms
81:	learn: 21.3307418	total: 388ms	remaining: 85.1ms
82:	learn: 21.2411976	total: 393ms	remaining: 80.5ms
83:	learn: 21.1091386	total: 398ms	remaining: 75.8ms
84:	learn: 21.0526747	total: 403ms	remaining: 71.1ms
85:	learn: 20.9083817	total: 408ms	remaining: 66.4ms
86:	learn: 20.8767767	total: 413ms	remaining: 61.7ms
87:	learn: 20.8143988	total: 418ms	remaining: 57ms
88:	learn: 20.7127697	total: 423ms	remaining: 52.3ms
89:	learn: 20.6112504	total: 429ms	remaining: 47.6ms
90:	learn: 20.4609960	total: 434ms	remaining: 42.9ms
91:	learn: 20.3648890	total: 438ms	remaining: 38.1ms
92:	learn: 20.3052040	total: 443ms	remaining: 33.3ms
93:	learn: 20.2587865	total: 448ms	remaining: 28.6ms
94:	learn: 20.2096406	total: 453ms	remaining: 23.8ms
95:	learn: 20.1301385	total: 458ms	remaining: 19.1ms
96:	learn: 20.0401359	total: 463ms	remaining: 14.3ms
97:	learn: 19.9791591	total: 467ms	remaining: 9.52ms
98:	learn: 19.9237318	total: 470ms	remaining: 4.75ms
99:	learn: 19.8009190	total: 474ms	remaining: 0us
0:	learn: 46.9286701	total: 4.01ms	remaining: 397ms
1:	learn: 46.2851598	total: 8.08ms	remaining: 396ms
2:	learn: 45.4586007	total: 11.8ms	remaining: 383ms
3:	learn: 44.6581393	total: 16ms	remaining: 384ms
4:	learn: 43.8231644	total: 20.8ms	remaining: 396ms
5:	learn: 43.2906569	total: 25.3ms	remaining: 397ms
6:	learn: 42.5095813	total: 29.4ms	remaining: 390ms
7:	learn: 41.9310465	total: 33.7ms	remaining: 387ms
8:	learn: 41.2083262	total: 37.8ms	remaining: 382ms
9:	learn: 40.6852547	total: 42.4ms	remaining: 381ms
10:	learn: 39.9637018	total: 46.9ms	remaining: 379ms
11:	learn: 39.2804189	total: 54.6ms	remaining: 400ms
12:	learn: 38.8804017	total: 62ms	remaining: 415ms
13:	learn: 38.3826597	total: 69.9ms	remaining: 429ms
14:	learn: 37.9240424	total: 75.5ms	remaining: 428ms
15:	learn: 37.4312070	total: 82.5ms	remaining: 433ms
16:	learn: 36.8803673	total: 87.7ms	remaining: 428ms
17:	learn: 36.5496582	total: 92.9ms	remaining: 423ms
18:	learn: 36.2078375	total: 98ms	remaining: 418ms
19:	learn: 35.6806593	total: 103ms	remaining: 411ms
20:	learn: 35.1512154	total: 108ms	remaining: 405ms
21:	learn: 34.6013055	total: 113ms	remaining: 400ms
22:	learn: 34.2380102	total: 118ms	remaining: 394ms
23:	learn: 33.8720185	total: 123ms	remaining: 389ms
24:	learn: 33.4426135	total: 128ms	remaining: 385ms
25:	learn: 33.1471186	total: 133ms	remaining: 380ms
26:	learn: 32.8018279	total: 138ms	remaining: 372ms
27:	learn: 32.4498594	total: 142ms	remaining: 365ms
28:	learn: 31.9749480	total: 147ms	remaining: 361ms
29:	learn: 31.6470735	total: 153ms	remaining: 356ms
30:	learn: 31.4265242	total: 156ms	remaining: 348ms
31:	learn: 31.0753325	total: 160ms	remaining: 340ms
32:	learn: 30.7192494	total: 164ms	remaining: 332ms
33:	learn: 30.3547940	total: 167ms	remaining: 325ms
34:	learn: 30.1296593	total: 171ms	remaining: 318ms
35:	learn: 29.9367140	total: 175ms	remaining: 311ms
36:	learn: 29.6248477	total: 178ms	remaining: 304ms
37:	learn: 29.3156707	total: 183ms	remaining: 298ms
38:	learn: 29.1534039	total: 186ms	remaining: 291ms
39:	learn: 28.9351289	total: 190ms	remaining: 285ms
40:	learn: 28.7057685	total: 193ms	remaining: 278ms
41:	learn: 28.3132521	total: 197ms	remaining: 273ms
42:	learn: 28.0739054	total: 201ms	remaining: 267ms
43:	learn: 27.8135917	total: 205ms	remaining: 260ms
44:	learn: 27.5376804	total: 208ms	remaining: 255ms
45:	learn: 27.3195849	total: 212ms	remaining: 249ms
46:	learn: 27.1681104	total: 216ms	remaining: 244ms
47:	learn: 27.0122442	total: 220ms	remaining: 238ms
48:	learn: 26.7819409	total: 224ms	remaining: 233ms
49:	learn: 26.6429308	total: 227ms	remaining: 227ms
50:	learn: 26.3482899	total: 232ms	remaining: 223ms
51:	learn: 26.2432755	total: 237ms	remaining: 219ms
52:	learn: 26.0811102	total: 241ms	remaining: 213ms
53:	learn: 25.9398113	total: 245ms	remaining: 209ms
54:	learn: 25.7891395	total: 250ms	remaining: 205ms
55:	learn: 25.6185338	total: 255ms	remaining: 200ms
56:	learn: 25.3293977	total: 260ms	remaining: 196ms
57:	learn: 25.1918906	total: 267ms	remaining: 193ms
58:	learn: 25.0503990	total: 274ms	remaining: 190ms
59:	learn: 24.8225776	total: 285ms	remaining: 190ms
60:	learn: 24.5969153	total: 292ms	remaining: 187ms
61:	learn: 24.4657353	total: 298ms	remaining: 182ms
62:	learn: 24.2861000	total: 303ms	remaining: 178ms
63:	learn: 24.1719148	total: 309ms	remaining: 174ms
64:	learn: 24.0547875	total: 314ms	remaining: 169ms
65:	learn: 23.9156724	total: 319ms	remaining: 164ms
66:	learn: 23.7604012	total: 324ms	remaining: 159ms
67:	learn: 23.6265679	total: 329ms	remaining: 155ms
68:	learn: 23.5372255	total: 334ms	remaining: 150ms
69:	learn: 23.3286241	total: 339ms	remaining: 145ms
70:	learn: 23.1806465	total: 344ms	remaining: 141ms
71:	learn: 23.0652081	total: 349ms	remaining: 136ms
72:	learn: 22.9231023	total: 354ms	remaining: 131ms
73:	learn: 22.8020380	total: 359ms	remaining: 126ms
74:	learn: 22.6525036	total: 365ms	remaining: 122ms
75:	learn: 22.5616268	total: 369ms	remaining: 117ms
76:	learn: 22.4395250	total: 373ms	remaining: 112ms
77:	learn: 22.3732379	total: 377ms	remaining: 106ms
78:	learn: 22.2300874	total: 382ms	remaining: 101ms
79:	learn: 22.0209882	total: 386ms	remaining: 96.4ms
80:	learn: 21.8703996	total: 390ms	remaining: 91.4ms
81:	learn: 21.7222039	total: 394ms	remaining: 86.4ms
82:	learn: 21.5903685	total: 398ms	remaining: 81.4ms
83:	learn: 21.4915083	total: 402ms	remaining: 76.6ms
84:	learn: 21.3320736	total: 407ms	remaining: 71.9ms
85:	learn: 21.2295060	total: 412ms	remaining: 67ms
86:	learn: 21.1983620	total: 417ms	remaining: 62.3ms
87:	learn: 21.1404156	total: 421ms	remaining: 57.4ms
88:	learn: 21.0684840	total: 426ms	remaining: 52.6ms
89:	learn: 20.9269197	total: 430ms	remaining: 47.8ms
90:	learn: 20.8614606	total: 434ms	remaining: 42.9ms
91:	learn: 20.6642996	total: 438ms	remaining: 38.1ms
92:	learn: 20.5612705	total: 443ms	remaining: 33.4ms
93:	learn: 20.5264997	total: 448ms	remaining: 28.6ms
94:	learn: 20.4532331	total: 452ms	remaining: 23.8ms
95:	learn: 20.3700696	total: 457ms	remaining: 19ms
96:	learn: 20.2671574	total: 461ms	remaining: 14.3ms
97:	learn: 20.1761207	total: 466ms	remaining: 9.51ms
98:	learn: 20.0533799	total: 470ms	remaining: 4.75ms
99:	learn: 19.9890055	total: 475ms	remaining: 0us
0:	learn: 27.5585353	total: 5.31ms	remaining: 526ms
1:	learn: 27.1656995	total: 10.5ms	remaining: 513ms
2:	learn: 26.8590175	total: 15.7ms	remaining: 507ms
3:	learn: 26.5818406	total: 20.5ms	remaining: 493ms
4:	learn: 26.1148663	total: 25.6ms	remaining: 487ms
5:	learn: 25.7690484	total: 30.9ms	remaining: 483ms
6:	learn: 25.3489206	total: 36.1ms	remaining: 480ms
7:	learn: 24.9542406	total: 41ms	remaining: 472ms
8:	learn: 24.6777517	total: 46.6ms	remaining: 471ms
9:	learn: 24.3242344	total: 51.9ms	remaining: 467ms
10:	learn: 24.0383073	total: 56.6ms	remaining: 458ms
11:	learn: 23.7383420	total: 60.7ms	remaining: 445ms
12:	learn: 23.3461670	total: 64.8ms	remaining: 433ms
13:	learn: 23.0928636	total: 68.6ms	remaining: 422ms
14:	learn: 22.8770414	total: 72.5ms	remaining: 411ms
15:	learn: 22.6323214	total: 76.2ms	remaining: 400ms
16:	learn: 22.3597072	total: 80.7ms	remaining: 394ms
17:	learn: 22.1079813	total: 84.5ms	remaining: 385ms
18:	learn: 21.8421199	total: 88.6ms	remaining: 378ms
19:	learn: 21.6576508	total: 92.7ms	remaining: 371ms
20:	learn: 21.4301268	total: 96.8ms	remaining: 364ms
21:	learn: 21.2287388	total: 101ms	remaining: 358ms
22:	learn: 21.0553872	total: 105ms	remaining: 353ms
23:	learn: 20.8977091	total: 110ms	remaining: 347ms
24:	learn: 20.6619051	total: 114ms	remaining: 341ms
25:	learn: 20.5040955	total: 118ms	remaining: 335ms
26:	learn: 20.3181195	total: 122ms	remaining: 330ms
27:	learn: 20.0869436	total: 126ms	remaining: 325ms
28:	learn: 19.9375985	total: 131ms	remaining: 320ms
29:	learn: 19.8247516	total: 135ms	remaining: 316ms
30:	learn: 19.6261697	total: 140ms	remaining: 311ms
31:	learn: 19.4547236	total: 144ms	remaining: 307ms
32:	learn: 19.3157092	total: 149ms	remaining: 303ms
33:	learn: 19.1561419	total: 154ms	remaining: 300ms
34:	learn: 19.0453620	total: 163ms	remaining: 303ms
35:	learn: 18.8738574	total: 171ms	remaining: 303ms
36:	learn: 18.7072907	total: 179ms	remaining: 304ms
37:	learn: 18.5877943	total: 186ms	remaining: 303ms
38:	learn: 18.4436380	total: 191ms	remaining: 299ms
39:	learn: 18.3463356	total: 197ms	remaining: 295ms
40:	learn: 18.2008059	total: 202ms	remaining: 291ms
41:	learn: 18.0582079	total: 207ms	remaining: 286ms
42:	learn: 17.8891982	total: 213ms	remaining: 282ms
43:	learn: 17.7332246	total: 218ms	remaining: 277ms
44:	learn: 17.6206421	total: 223ms	remaining: 272ms
45:	learn: 17.4982800	total: 228ms	remaining: 268ms
46:	learn: 17.3970150	total: 233ms	remaining: 263ms
47:	learn: 17.3058203	total: 238ms	remaining: 258ms
48:	learn: 17.1789256	total: 243ms	remaining: 253ms
49:	learn: 17.0916229	total: 248ms	remaining: 248ms
50:	learn: 16.9859820	total: 254ms	remaining: 244ms
51:	learn: 16.8995582	total: 259ms	remaining: 239ms
52:	learn: 16.8137014	total: 263ms	remaining: 233ms
53:	learn: 16.7021451	total: 267ms	remaining: 228ms
54:	learn: 16.5895582	total: 271ms	remaining: 222ms
55:	learn: 16.5015639	total: 275ms	remaining: 216ms
56:	learn: 16.4356637	total: 279ms	remaining: 211ms
57:	learn: 16.3514525	total: 283ms	remaining: 205ms
58:	learn: 16.2401369	total: 288ms	remaining: 200ms
59:	learn: 16.1293223	total: 292ms	remaining: 195ms
60:	learn: 16.0271167	total: 297ms	remaining: 190ms
61:	learn: 15.9126257	total: 301ms	remaining: 185ms
62:	learn: 15.8391096	total: 306ms	remaining: 180ms
63:	learn: 15.7441773	total: 310ms	remaining: 175ms
64:	learn: 15.6885195	total: 315ms	remaining: 169ms
65:	learn: 15.6052039	total: 319ms	remaining: 164ms
66:	learn: 15.5074202	total: 324ms	remaining: 160ms
67:	learn: 15.4054338	total: 329ms	remaining: 155ms
68:	learn: 15.2885714	total: 334ms	remaining: 150ms
69:	learn: 15.2157472	total: 339ms	remaining: 145ms
70:	learn: 15.1031554	total: 343ms	remaining: 140ms
71:	learn: 15.0237470	total: 348ms	remaining: 135ms
72:	learn: 14.9756825	total: 355ms	remaining: 131ms
73:	learn: 14.8840596	total: 363ms	remaining: 128ms
74:	learn: 14.8077061	total: 373ms	remaining: 124ms
75:	learn: 14.7444437	total: 380ms	remaining: 120ms
76:	learn: 14.6751720	total: 388ms	remaining: 116ms
77:	learn: 14.5830333	total: 393ms	remaining: 111ms
78:	learn: 14.5241206	total: 398ms	remaining: 106ms
79:	learn: 14.4892731	total: 403ms	remaining: 101ms
80:	learn: 14.4256605	total: 409ms	remaining: 95.8ms
81:	learn: 14.3666860	total: 414ms	remaining: 90.9ms
82:	learn: 14.2938372	total: 419ms	remaining: 85.9ms
83:	learn: 14.2161532	total: 424ms	remaining: 80.8ms
84:	learn: 14.1582910	total: 429ms	remaining: 75.8ms
85:	learn: 14.1029153	total: 434ms	remaining: 70.7ms
86:	learn: 14.0475835	total: 439ms	remaining: 65.6ms
87:	learn: 13.9892661	total: 444ms	remaining: 60.6ms
88:	learn: 13.9481628	total: 450ms	remaining: 55.6ms
89:	learn: 13.8483991	total: 454ms	remaining: 50.4ms
90:	learn: 13.7775614	total: 458ms	remaining: 45.3ms
91:	learn: 13.7304585	total: 463ms	remaining: 40.2ms
92:	learn: 13.6783381	total: 467ms	remaining: 35.1ms
93:	learn: 13.6356964	total: 471ms	remaining: 30ms
94:	learn: 13.5924371	total: 474ms	remaining: 25ms
95:	learn: 13.5400746	total: 479ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 483ms	remaining: 14.9ms
97:	learn: 13.4470321	total: 487ms	remaining: 9.94ms
98:	learn: 13.3856082	total: 491ms	remaining: 4.96ms
99:	learn: 13.3082371	total: 496ms	remaining: 0us
0:	learn: 43.0395283	total: 4.74ms	remaining: 469ms
1:	learn: 42.1130223	total: 9.27ms	remaining: 454ms
2:	learn: 41.1753409	total: 13.6ms	remaining: 438ms
3:	learn: 40.3637444	total: 18.3ms	remaining: 439ms
4:	learn: 39.6508088	total: 27.1ms	remaining: 514ms
5:	learn: 38.7217934	total: 36.3ms	remaining: 569ms
6:	learn: 37.8538055	total: 44.8ms	remaining: 595ms
7:	learn: 36.9793574	total: 53.1ms	remaining: 610ms
8:	learn: 36.3076984	total: 58.5ms	remaining: 592ms
9:	learn: 35.6673160	total: 63.8ms	remaining: 575ms
10:	learn: 34.8889800	total: 68.8ms	remaining: 557ms
11:	learn: 34.1675517	total: 74.2ms	remaining: 544ms
12:	learn: 33.6779564	total: 80ms	remaining: 536ms
13:	learn: 33.0710039	total: 85.3ms	remaining: 524ms
14:	learn: 32.4966674	total: 90.6ms	remaining: 514ms
15:	learn: 31.9492856	total: 96ms	remaining: 504ms
16:	learn: 31.5108129	total: 101ms	remaining: 494ms
17:	learn: 30.9804023	total: 106ms	remaining: 484ms
18:	learn: 30.4169089	total: 111ms	remaining: 475ms
19:	learn: 29.8930375	total: 117ms	remaining: 469ms
20:	learn: 29.3974421	total: 123ms	remaining: 462ms
21:	learn: 28.8792307	total: 128ms	remaining: 452ms
22:	learn: 28.3894474	total: 132ms	remaining: 442ms
23:	learn: 27.9921276	total: 136ms	remaining: 431ms
24:	learn: 27.6158887	total: 140ms	remaining: 421ms
25:	learn: 27.2866950	total: 145ms	remaining: 414ms
26:	learn: 26.8770708	total: 150ms	remaining: 405ms
27:	learn: 26.6233005	total: 154ms	remaining: 395ms
28:	learn: 26.2921934	total: 158ms	remaining: 386ms
29:	learn: 25.9156920	total: 162ms	remaining: 377ms
30:	learn: 25.5311106	total: 163ms	remaining: 363ms
31:	learn: 25.2178997	total: 167ms	remaining: 355ms
32:	learn: 24.8572196	total: 171ms	remaining: 347ms
33:	learn: 24.5849710	total: 175ms	remaining: 340ms
34:	learn: 24.2209190	total: 179ms	remaining: 333ms
35:	learn: 23.8708250	total: 183ms	remaining: 326ms
36:	learn: 23.5325279	total: 187ms	remaining: 319ms
37:	learn: 23.2116148	total: 192ms	remaining: 313ms
38:	learn: 22.9696787	total: 196ms	remaining: 306ms
39:	learn: 22.7936783	total: 200ms	remaining: 300ms
40:	learn: 22.6228847	total: 204ms	remaining: 294ms
41:	learn: 22.3691527	total: 208ms	remaining: 287ms
42:	learn: 22.1002173	total: 213ms	remaining: 282ms
43:	learn: 21.9157268	total: 217ms	remaining: 276ms
44:	learn: 21.7229102	total: 221ms	remaining: 271ms
45:	learn: 21.4642005	total: 226ms	remaining: 265ms
46:	learn: 21.3029442	total: 230ms	remaining: 260ms
47:	learn: 21.1469792	total: 235ms	remaining: 255ms
48:	learn: 20.9458235	total: 240ms	remaining: 249ms
49:	learn: 20.7335242	total: 244ms	remaining: 244ms
50:	learn: 20.5440269	total: 249ms	remaining: 240ms
51:	learn: 20.3661449	total: 258ms	remaining: 238ms
52:	learn: 20.2158134	total: 268ms	remaining: 238ms
53:	learn: 19.9934873	total: 278ms	remaining: 237ms
54:	learn: 19.7879739	total: 286ms	remaining: 234ms
55:	learn: 19.6630460	total: 292ms	remaining: 229ms
56:	learn: 19.5152729	total: 297ms	remaining: 224ms
57:	learn: 19.3581128	total: 302ms	remaining: 219ms
58:	learn: 19.2209303	total: 308ms	remaining: 214ms
59:	learn: 19.0965248	total: 313ms	remaining: 208ms
60:	learn: 19.0035954	total: 318ms	remaining: 203ms
61:	learn: 18.8554149	total: 323ms	remaining: 198ms
62:	learn: 18.7095427	total: 328ms	remaining: 193ms
63:	learn: 18.5751494	total: 333ms	remaining: 187ms
64:	learn: 18.4678251	total: 338ms	remaining: 182ms
65:	learn: 18.3500325	total: 343ms	remaining: 177ms
66:	learn: 18.2088983	total: 348ms	remaining: 171ms
67:	learn: 18.0737705	total: 353ms	remaining: 166ms
68:	learn: 17.9325058	total: 359ms	remaining: 161ms
69:	learn: 17.8003911	total: 364ms	remaining: 156ms
70:	learn: 17.7385366	total: 370ms	remaining: 151ms
71:	learn: 17.6106998	total: 375ms	remaining: 146ms
72:	learn: 17.4816270	total: 379ms	remaining: 140ms
73:	learn: 17.4025554	total: 383ms	remaining: 135ms
74:	learn: 17.2902108	total: 388ms	remaining: 129ms
75:	learn: 17.2158048	total: 392ms	remaining: 124ms
76:	learn: 17.1261053	total: 396ms	remaining: 118ms
77:	learn: 17.0308917	total: 400ms	remaining: 113ms
78:	learn: 16.9546705	total: 405ms	remaining: 108ms
79:	learn: 16.8319165	total: 409ms	remaining: 102ms
80:	learn: 16.7687017	total: 413ms	remaining: 97ms
81:	learn: 16.6972326	total: 418ms	remaining: 91.8ms
82:	learn: 16.6124580	total: 423ms	remaining: 86.7ms
83:	learn: 16.4999052	total: 428ms	remaining: 81.5ms
84:	learn: 16.4302484	total: 433ms	remaining: 76.3ms
85:	learn: 16.3201363	total: 437ms	remaining: 71.2ms
86:	learn: 16.2534314	total: 442ms	remaining: 66ms
87:	learn: 16.1720485	total: 447ms	remaining: 60.9ms
88:	learn: 16.0625751	total: 456ms	remaining: 56.3ms
89:	learn: 15.9135088	total: 465ms	remaining: 51.7ms
90:	learn: 15.8658863	total: 472ms	remaining: 46.7ms
91:	learn: 15.8066805	total: 480ms	remaining: 41.8ms
92:	learn: 15.7412103	total: 485ms	remaining: 36.5ms
93:	learn: 15.6542776	total: 491ms	remaining: 31.3ms
94:	learn: 15.5760334	total: 496ms	remaining: 26.1ms
95:	learn: 15.5434131	total: 501ms	remaining: 20.9ms
96:	learn: 15.4709561	total: 506ms	remaining: 15.7ms
97:	learn: 15.4449618	total: 511ms	remaining: 10.4ms
98:	learn: 15.3752761	total: 516ms	remaining: 5.21ms
99:	learn: 15.3106595	total: 521ms	remaining: 0us
0:	learn: 46.7142257	total: 4.66ms	remaining: 461ms
1:	learn: 45.7634153	total: 8.65ms	remaining: 424ms
2:	learn: 45.0054253	total: 12.8ms	remaining: 414ms
3:	learn: 44.2120432	total: 16.9ms	remaining: 405ms
4:	learn: 43.3960472	total: 21ms	remaining: 400ms
5:	learn: 42.8588120	total: 25.1ms	remaining: 393ms
6:	learn: 41.9533701	total: 29.2ms	remaining: 388ms
7:	learn: 41.2745030	total: 34.4ms	remaining: 396ms
8:	learn: 40.6797495	total: 38.2ms	remaining: 386ms
9:	learn: 39.9899571	total: 42.1ms	remaining: 379ms
10:	learn: 39.4682100	total: 46.9ms	remaining: 380ms
11:	learn: 39.0305595	total: 52ms	remaining: 381ms
12:	learn: 38.4200417	total: 56.8ms	remaining: 380ms
13:	learn: 37.8425194	total: 61.1ms	remaining: 376ms
14:	learn: 37.4203127	total: 65.9ms	remaining: 373ms
15:	learn: 36.9917688	total: 70.1ms	remaining: 368ms
16:	learn: 36.5544138	total: 74.4ms	remaining: 363ms
17:	learn: 36.0727019	total: 78.9ms	remaining: 359ms
18:	learn: 35.4835715	total: 84.7ms	remaining: 361ms
19:	learn: 34.9865654	total: 92.1ms	remaining: 368ms
20:	learn: 34.6063373	total: 101ms	remaining: 379ms
21:	learn: 34.0997289	total: 107ms	remaining: 381ms
22:	learn: 33.7313171	total: 115ms	remaining: 386ms
23:	learn: 33.3582000	total: 121ms	remaining: 382ms
24:	learn: 32.9432456	total: 126ms	remaining: 377ms
25:	learn: 32.5220888	total: 131ms	remaining: 373ms
26:	learn: 32.2172292	total: 136ms	remaining: 368ms
27:	learn: 31.8972904	total: 141ms	remaining: 364ms
28:	learn: 31.6405350	total: 147ms	remaining: 359ms
29:	learn: 31.4167702	total: 152ms	remaining: 354ms
30:	learn: 30.8541961	total: 154ms	remaining: 342ms
31:	learn: 30.5572111	total: 159ms	remaining: 338ms
32:	learn: 30.1700399	total: 164ms	remaining: 333ms
33:	learn: 29.8537271	total: 169ms	remaining: 328ms
34:	learn: 29.6192540	total: 175ms	remaining: 325ms
35:	learn: 29.3276362	total: 180ms	remaining: 320ms
36:	learn: 28.9985179	total: 184ms	remaining: 314ms
37:	learn: 28.7046880	total: 189ms	remaining: 308ms
38:	learn: 28.4412677	total: 193ms	remaining: 302ms
39:	learn: 28.1277292	total: 197ms	remaining: 296ms
40:	learn: 27.9000750	total: 202ms	remaining: 291ms
41:	learn: 27.5433162	total: 207ms	remaining: 285ms
42:	learn: 27.2493285	total: 211ms	remaining: 280ms
43:	learn: 26.9576632	total: 213ms	remaining: 271ms
44:	learn: 26.6177110	total: 217ms	remaining: 266ms
45:	learn: 26.2812456	total: 222ms	remaining: 260ms
46:	learn: 26.0803859	total: 226ms	remaining: 254ms
47:	learn: 25.9543581	total: 230ms	remaining: 249ms
48:	learn: 25.7951582	total: 234ms	remaining: 244ms
49:	learn: 25.6548184	total: 238ms	remaining: 238ms
50:	learn: 25.4010843	total: 242ms	remaining: 233ms
51:	learn: 24.9773937	total: 246ms	remaining: 227ms
52:	learn: 24.8026156	total: 251ms	remaining: 222ms
53:	learn: 24.5568053	total: 256ms	remaining: 218ms
54:	learn: 24.2281839	total: 260ms	remaining: 213ms
55:	learn: 23.9202795	total: 265ms	remaining: 208ms
56:	learn: 23.7625591	total: 270ms	remaining: 203ms
57:	learn: 23.5429721	total: 274ms	remaining: 199ms
58:	learn: 23.3175893	total: 279ms	remaining: 194ms
59:	learn: 23.2035130	total: 284ms	remaining: 189ms
60:	learn: 23.0232450	total: 293ms	remaining: 187ms
61:	learn: 22.8384958	total: 302ms	remaining: 185ms
62:	learn: 22.6499902	total: 310ms	remaining: 182ms
63:	learn: 22.4577426	total: 317ms	remaining: 178ms
64:	learn: 22.3333158	total: 323ms	remaining: 174ms
65:	learn: 22.2064131	total: 328ms	remaining: 169ms
66:	learn: 22.1434971	total: 333ms	remaining: 164ms
67:	learn: 21.9596519	total: 338ms	remaining: 159ms
68:	learn: 21.8475576	total: 344ms	remaining: 155ms
69:	learn: 21.6954745	total: 349ms	remaining: 150ms
70:	learn: 21.5635976	total: 354ms	remaining: 145ms
71:	learn: 21.4588506	total: 360ms	remaining: 140ms
72:	learn: 21.3527268	total: 365ms	remaining: 135ms
73:	learn: 21.2661288	total: 370ms	remaining: 130ms
74:	learn: 21.1817333	total: 375ms	remaining: 125ms
75:	learn: 21.0527553	total: 381ms	remaining: 120ms
76:	learn: 20.9229021	total: 386ms	remaining: 115ms
77:	learn: 20.7563946	total: 390ms	remaining: 110ms
78:	learn: 20.6569831	total: 394ms	remaining: 105ms
79:	learn: 20.4982663	total: 399ms	remaining: 99.6ms
80:	learn: 20.3185460	total: 403ms	remaining: 94.5ms
81:	learn: 20.2096241	total: 407ms	remaining: 89.3ms
82:	learn: 20.1274891	total: 411ms	remaining: 84.2ms
83:	learn: 20.0740139	total: 415ms	remaining: 79.1ms
84:	learn: 19.9630699	total: 420ms	remaining: 74ms
85:	learn: 19.8753899	total: 424ms	remaining: 69ms
86:	learn: 19.6563612	total: 428ms	remaining: 64ms
87:	learn: 19.4680232	total: 433ms	remaining: 59ms
88:	learn: 19.3503431	total: 437ms	remaining: 54ms
89:	learn: 19.2221379	total: 441ms	remaining: 49ms
90:	learn: 19.0732542	total: 445ms	remaining: 44ms
91:	learn: 18.9825190	total: 449ms	remaining: 39.1ms
92:	learn: 18.8839009	total: 454ms	remaining: 34.2ms
93:	learn: 18.8012219	total: 458ms	remaining: 29.2ms
94:	learn: 18.7172713	total: 462ms	remaining: 24.3ms
95:	learn: 18.6201170	total: 467ms	remaining: 19.5ms
96:	learn: 18.5318611	total: 471ms	remaining: 14.6ms
97:	learn: 18.3833356	total: 475ms	remaining: 9.7ms
98:	learn: 18.3289700	total: 480ms	remaining: 4.85ms
99:	learn: 18.2227333	total: 488ms	remaining: 0us
0:	learn: 46.3764524	total: 5.69ms	remaining: 563ms
1:	learn: 45.5561269	total: 11ms	remaining: 537ms
2:	learn: 44.8811245	total: 15.7ms	remaining: 509ms
3:	learn: 44.0788617	total: 20.7ms	remaining: 497ms
4:	learn: 43.3619790	total: 25.3ms	remaining: 481ms
5:	learn: 42.6912112	total: 30.6ms	remaining: 479ms
6:	learn: 42.2292118	total: 36.3ms	remaining: 482ms
7:	learn: 41.7725191	total: 41.1ms	remaining: 472ms
8:	learn: 41.1676614	total: 45ms	remaining: 455ms
9:	learn: 40.5771076	total: 49ms	remaining: 441ms
10:	learn: 39.8343757	total: 53.4ms	remaining: 432ms
11:	learn: 39.3761142	total: 57.2ms	remaining: 420ms
12:	learn: 38.5254692	total: 61.2ms	remaining: 410ms
13:	learn: 37.9629555	total: 65.1ms	remaining: 400ms
14:	learn: 37.4418438	total: 69.2ms	remaining: 392ms
15:	learn: 37.0507283	total: 73ms	remaining: 383ms
16:	learn: 36.6264217	total: 76.7ms	remaining: 374ms
17:	learn: 36.1114940	total: 80.5ms	remaining: 367ms
18:	learn: 35.7193862	total: 84.5ms	remaining: 360ms
19:	learn: 35.3301177	total: 88.8ms	remaining: 355ms
20:	learn: 35.0598280	total: 92.5ms	remaining: 348ms
21:	learn: 34.5469736	total: 96.8ms	remaining: 343ms
22:	learn: 34.2064215	total: 101ms	remaining: 338ms
23:	learn: 33.7280710	total: 105ms	remaining: 333ms
24:	learn: 33.3282940	total: 109ms	remaining: 328ms
25:	learn: 32.8478961	total: 114ms	remaining: 323ms
26:	learn: 32.5722164	total: 118ms	remaining: 319ms
27:	learn: 32.2457019	total: 122ms	remaining: 315ms
28:	learn: 31.9230495	total: 127ms	remaining: 310ms
29:	learn: 31.4311611	total: 131ms	remaining: 306ms
30:	learn: 30.9179052	total: 136ms	remaining: 303ms
31:	learn: 30.6201141	total: 141ms	remaining: 300ms
32:	learn: 30.3421106	total: 146ms	remaining: 296ms
33:	learn: 29.9885373	total: 152ms	remaining: 295ms
34:	learn: 29.7462780	total: 161ms	remaining: 299ms
35:	learn: 29.3607153	total: 172ms	remaining: 306ms
36:	learn: 29.1793078	total: 179ms	remaining: 304ms
37:	learn: 28.9276538	total: 186ms	remaining: 303ms
38:	learn: 28.6903934	total: 191ms	remaining: 299ms
39:	learn: 28.2095033	total: 197ms	remaining: 295ms
40:	learn: 27.7990608	total: 203ms	remaining: 291ms
41:	learn: 27.5406632	total: 209ms	remaining: 288ms
42:	learn: 27.2575376	total: 215ms	remaining: 284ms
43:	learn: 26.9741707	total: 220ms	remaining: 280ms
44:	learn: 26.6606899	total: 226ms	remaining: 276ms
45:	learn: 26.4015833	total: 231ms	remaining: 272ms
46:	learn: 26.1828993	total: 236ms	remaining: 267ms
47:	learn: 26.0233709	total: 240ms	remaining: 259ms
48:	learn: 25.9300399	total: 245ms	remaining: 255ms
49:	learn: 25.5861489	total: 250ms	remaining: 250ms
50:	learn: 25.4322012	total: 254ms	remaining: 244ms
51:	learn: 25.1595644	total: 259ms	remaining: 239ms
52:	learn: 24.9955303	total: 263ms	remaining: 233ms
53:	learn: 24.7273966	total: 267ms	remaining: 228ms
54:	learn: 24.5747978	total: 271ms	remaining: 222ms
55:	learn: 24.3807977	total: 275ms	remaining: 216ms
56:	learn: 24.1689569	total: 280ms	remaining: 211ms
57:	learn: 23.9898221	total: 284ms	remaining: 206ms
58:	learn: 23.7566414	total: 288ms	remaining: 200ms
59:	learn: 23.6641165	total: 292ms	remaining: 195ms
60:	learn: 23.5658066	total: 297ms	remaining: 190ms
61:	learn: 23.4338851	total: 301ms	remaining: 185ms
62:	learn: 23.2408837	total: 305ms	remaining: 179ms
63:	learn: 23.0642038	total: 309ms	remaining: 174ms
64:	learn: 22.9032045	total: 313ms	remaining: 169ms
65:	learn: 22.7736138	total: 318ms	remaining: 164ms
66:	learn: 22.6836443	total: 323ms	remaining: 159ms
67:	learn: 22.5983654	total: 327ms	remaining: 154ms
68:	learn: 22.4419813	total: 332ms	remaining: 149ms
69:	learn: 22.2863339	total: 337ms	remaining: 144ms
70:	learn: 22.1792943	total: 341ms	remaining: 139ms
71:	learn: 22.1130574	total: 346ms	remaining: 134ms
72:	learn: 21.9858161	total: 351ms	remaining: 130ms
73:	learn: 21.8577784	total: 360ms	remaining: 126ms
74:	learn: 21.7845222	total: 369ms	remaining: 123ms
75:	learn: 21.6831390	total: 376ms	remaining: 119ms
76:	learn: 21.6292521	total: 384ms	remaining: 115ms
77:	learn: 21.5789330	total: 389ms	remaining: 110ms
78:	learn: 21.5420942	total: 394ms	remaining: 105ms
79:	learn: 21.4280939	total: 399ms	remaining: 99.6ms
80:	learn: 21.3641165	total: 404ms	remaining: 94.7ms
81:	learn: 21.2734814	total: 409ms	remaining: 89.7ms
82:	learn: 21.2220323	total: 414ms	remaining: 84.7ms
83:	learn: 21.0625792	total: 419ms	remaining: 79.8ms
84:	learn: 20.9488320	total: 435ms	remaining: 76.8ms
85:	learn: 20.8504255	total: 440ms	remaining: 71.7ms
86:	learn: 20.7848510	total: 446ms	remaining: 66.6ms
87:	learn: 20.7247442	total: 451ms	remaining: 61.5ms
88:	learn: 20.5698590	total: 455ms	remaining: 56.2ms
89:	learn: 20.4067620	total: 459ms	remaining: 51ms
90:	learn: 20.3062482	total: 463ms	remaining: 45.8ms
91:	learn: 20.2029696	total: 467ms	remaining: 40.6ms
92:	learn: 20.1384849	total: 471ms	remaining: 35.4ms
93:	learn: 20.0260709	total: 475ms	remaining: 30.3ms
94:	learn: 19.9122100	total: 479ms	remaining: 25.2ms
95:	learn: 19.8648487	total: 484ms	remaining: 20.2ms
96:	learn: 19.8207072	total: 488ms	remaining: 15.1ms
97:	learn: 19.7261189	total: 492ms	remaining: 10ms
98:	learn: 19.7042438	total: 496ms	remaining: 5.01ms
99:	learn: 19.6546645	total: 500ms	remaining: 0us
0:	learn: 47.0239288	total: 7.86ms	remaining: 778ms
1:	learn: 46.2253829	total: 14.9ms	remaining: 732ms
2:	learn: 45.5580301	total: 22.9ms	remaining: 741ms
3:	learn: 44.7273237	total: 28.4ms	remaining: 682ms
4:	learn: 43.8867421	total: 35.4ms	remaining: 673ms
5:	learn: 43.3615911	total: 40.4ms	remaining: 633ms
6:	learn: 42.8548390	total: 45.6ms	remaining: 606ms
7:	learn: 42.1606758	total: 50.8ms	remaining: 585ms
8:	learn: 41.6625870	total: 55.5ms	remaining: 562ms
9:	learn: 40.9497092	total: 60.3ms	remaining: 543ms
10:	learn: 40.1886318	total: 65.6ms	remaining: 531ms
11:	learn: 39.7456423	total: 71ms	remaining: 520ms
12:	learn: 39.1171373	total: 76.3ms	remaining: 511ms
13:	learn: 38.5451069	total: 81.3ms	remaining: 499ms
14:	learn: 38.0155834	total: 85.6ms	remaining: 485ms
15:	learn: 37.5631354	total: 90.2ms	remaining: 474ms
16:	learn: 37.1030023	total: 95.1ms	remaining: 464ms
17:	learn: 36.4563029	total: 100ms	remaining: 456ms
18:	learn: 36.0160976	total: 105ms	remaining: 449ms
19:	learn: 35.5079827	total: 111ms	remaining: 442ms
20:	learn: 35.2111885	total: 114ms	remaining: 431ms
21:	learn: 34.9397465	total: 119ms	remaining: 421ms
22:	learn: 34.5270048	total: 123ms	remaining: 411ms
23:	learn: 34.0169260	total: 127ms	remaining: 402ms
24:	learn: 33.7454892	total: 131ms	remaining: 392ms
25:	learn: 33.2648157	total: 135ms	remaining: 384ms
26:	learn: 32.8899427	total: 139ms	remaining: 375ms
27:	learn: 32.6185050	total: 143ms	remaining: 367ms
28:	learn: 32.3528531	total: 147ms	remaining: 360ms
29:	learn: 32.0859923	total: 151ms	remaining: 353ms
30:	learn: 31.6511144	total: 155ms	remaining: 346ms
31:	learn: 31.2571765	total: 159ms	remaining: 338ms
32:	learn: 30.9770049	total: 163ms	remaining: 331ms
33:	learn: 30.6084872	total: 167ms	remaining: 325ms
34:	learn: 30.3448632	total: 172ms	remaining: 319ms
35:	learn: 30.0360942	total: 176ms	remaining: 313ms
36:	learn: 29.6648968	total: 180ms	remaining: 307ms
37:	learn: 29.3165114	total: 185ms	remaining: 302ms
38:	learn: 29.0829198	total: 189ms	remaining: 296ms
39:	learn: 28.7752064	total: 193ms	remaining: 290ms
40:	learn: 28.3622191	total: 199ms	remaining: 286ms
41:	learn: 28.1346631	total: 206ms	remaining: 284ms
42:	learn: 27.9585719	total: 213ms	remaining: 282ms
43:	learn: 27.6565566	total: 223ms	remaining: 283ms
44:	learn: 27.3616172	total: 228ms	remaining: 279ms
45:	learn: 27.0658637	total: 235ms	remaining: 276ms
46:	learn: 26.8660382	total: 241ms	remaining: 272ms
47:	learn: 26.6536078	total: 246ms	remaining: 266ms
48:	learn: 26.3524440	total: 251ms	remaining: 261ms
49:	learn: 26.1595277	total: 258ms	remaining: 258ms
50:	learn: 25.9273523	total: 263ms	remaining: 253ms
51:	learn: 25.7195580	total: 268ms	remaining: 248ms
52:	learn: 25.5730225	total: 273ms	remaining: 242ms
53:	learn: 25.3455276	total: 278ms	remaining: 237ms
54:	learn: 25.2289675	total: 283ms	remaining: 232ms
55:	learn: 25.0133024	total: 288ms	remaining: 226ms
56:	learn: 24.8406714	total: 293ms	remaining: 221ms
57:	learn: 24.6367857	total: 298ms	remaining: 216ms
58:	learn: 24.5338177	total: 303ms	remaining: 210ms
59:	learn: 24.3799964	total: 307ms	remaining: 204ms
60:	learn: 24.1447492	total: 311ms	remaining: 199ms
61:	learn: 23.9880495	total: 314ms	remaining: 193ms
62:	learn: 23.7140630	total: 318ms	remaining: 187ms
63:	learn: 23.5003791	total: 322ms	remaining: 181ms
64:	learn: 23.3207645	total: 327ms	remaining: 176ms
65:	learn: 23.1958356	total: 330ms	remaining: 170ms
66:	learn: 23.0471302	total: 334ms	remaining: 165ms
67:	learn: 22.8977183	total: 339ms	remaining: 159ms
68:	learn: 22.7187400	total: 342ms	remaining: 154ms
69:	learn: 22.6523405	total: 346ms	remaining: 148ms
70:	learn: 22.4767453	total: 350ms	remaining: 143ms
71:	learn: 22.3243677	total: 354ms	remaining: 138ms
72:	learn: 22.2133096	total: 358ms	remaining: 133ms
73:	learn: 22.1151713	total: 362ms	remaining: 127ms
74:	learn: 22.0296666	total: 367ms	remaining: 122ms
75:	learn: 21.9195980	total: 371ms	remaining: 117ms
76:	learn: 21.8401730	total: 376ms	remaining: 112ms
77:	learn: 21.8079797	total: 380ms	remaining: 107ms
78:	learn: 21.7274109	total: 385ms	remaining: 102ms
79:	learn: 21.6663032	total: 389ms	remaining: 97.2ms
80:	learn: 21.5633117	total: 393ms	remaining: 92.2ms
81:	learn: 21.4542467	total: 398ms	remaining: 87.3ms
82:	learn: 21.3177957	total: 404ms	remaining: 82.7ms
83:	learn: 21.1289167	total: 412ms	remaining: 78.4ms
84:	learn: 21.0297368	total: 420ms	remaining: 74.1ms
85:	learn: 20.9089564	total: 426ms	remaining: 69.4ms
86:	learn: 20.7653988	total: 434ms	remaining: 64.9ms
87:	learn: 20.6521894	total: 439ms	remaining: 59.9ms
88:	learn: 20.5193021	total: 444ms	remaining: 54.9ms
89:	learn: 20.4361620	total: 449ms	remaining: 49.9ms
90:	learn: 20.3546710	total: 454ms	remaining: 44.9ms
91:	learn: 20.2513296	total: 460ms	remaining: 40ms
92:	learn: 20.1605550	total: 465ms	remaining: 35ms
93:	learn: 20.0515942	total: 470ms	remaining: 30ms
94:	learn: 19.9800764	total: 475ms	remaining: 25ms
95:	learn: 19.8996532	total: 480ms	remaining: 20ms
96:	learn: 19.8450910	total: 484ms	remaining: 15ms
97:	learn: 19.7887346	total: 489ms	remaining: 9.98ms
98:	learn: 19.7230872	total: 494ms	remaining: 4.99ms
99:	learn: 19.6328825	total: 499ms	remaining: 0us
0:	learn: 27.5585353	total: 4.94ms	remaining: 489ms
1:	learn: 27.1656995	total: 9.82ms	remaining: 481ms
2:	learn: 26.8590175	total: 14ms	remaining: 453ms
3:	learn: 26.5818406	total: 18.5ms	remaining: 445ms
4:	learn: 26.1148663	total: 23.3ms	remaining: 443ms
5:	learn: 25.7690484	total: 28.1ms	remaining: 440ms
6:	learn: 25.3489206	total: 32.9ms	remaining: 438ms
7:	learn: 24.9542406	total: 37.8ms	remaining: 435ms
8:	learn: 24.6777517	total: 42.8ms	remaining: 433ms
9:	learn: 24.3242344	total: 47.9ms	remaining: 431ms
10:	learn: 24.0383073	total: 52.6ms	remaining: 425ms
11:	learn: 23.7383420	total: 57.7ms	remaining: 423ms
12:	learn: 23.3461670	total: 67.7ms	remaining: 453ms
13:	learn: 23.0928636	total: 75.3ms	remaining: 462ms
14:	learn: 22.8770414	total: 89.9ms	remaining: 509ms
15:	learn: 22.6323214	total: 96.4ms	remaining: 506ms
16:	learn: 22.3597072	total: 102ms	remaining: 500ms
17:	learn: 22.1079813	total: 108ms	remaining: 494ms
18:	learn: 21.8421199	total: 115ms	remaining: 488ms
19:	learn: 21.6576508	total: 121ms	remaining: 482ms
20:	learn: 21.4301268	total: 126ms	remaining: 474ms
21:	learn: 21.2287388	total: 132ms	remaining: 468ms
22:	learn: 21.0553872	total: 137ms	remaining: 459ms
23:	learn: 20.8977091	total: 143ms	remaining: 451ms
24:	learn: 20.6619051	total: 147ms	remaining: 442ms
25:	learn: 20.5040955	total: 153ms	remaining: 435ms
26:	learn: 20.3181195	total: 158ms	remaining: 427ms
27:	learn: 20.0869436	total: 163ms	remaining: 420ms
28:	learn: 19.9375985	total: 168ms	remaining: 411ms
29:	learn: 19.8247516	total: 172ms	remaining: 401ms
30:	learn: 19.6261697	total: 176ms	remaining: 392ms
31:	learn: 19.4547236	total: 180ms	remaining: 383ms
32:	learn: 19.3157092	total: 184ms	remaining: 374ms
33:	learn: 19.1561419	total: 189ms	remaining: 366ms
34:	learn: 19.0453620	total: 193ms	remaining: 359ms
35:	learn: 18.8738574	total: 197ms	remaining: 351ms
36:	learn: 18.7072907	total: 201ms	remaining: 343ms
37:	learn: 18.5877943	total: 206ms	remaining: 335ms
38:	learn: 18.4436380	total: 210ms	remaining: 329ms
39:	learn: 18.3463356	total: 215ms	remaining: 322ms
40:	learn: 18.2008059	total: 219ms	remaining: 315ms
41:	learn: 18.0582079	total: 224ms	remaining: 309ms
42:	learn: 17.8891982	total: 229ms	remaining: 303ms
43:	learn: 17.7332246	total: 233ms	remaining: 297ms
44:	learn: 17.6206421	total: 238ms	remaining: 291ms
45:	learn: 17.4982800	total: 243ms	remaining: 285ms
46:	learn: 17.3970150	total: 247ms	remaining: 279ms
47:	learn: 17.3058203	total: 252ms	remaining: 273ms
48:	learn: 17.1789256	total: 260ms	remaining: 270ms
49:	learn: 17.0916229	total: 267ms	remaining: 267ms
50:	learn: 16.9859820	total: 275ms	remaining: 264ms
51:	learn: 16.8995582	total: 281ms	remaining: 260ms
52:	learn: 16.8137014	total: 289ms	remaining: 256ms
53:	learn: 16.7021451	total: 300ms	remaining: 256ms
54:	learn: 16.5895582	total: 305ms	remaining: 249ms
55:	learn: 16.5015639	total: 310ms	remaining: 244ms
56:	learn: 16.4356637	total: 316ms	remaining: 238ms
57:	learn: 16.3514525	total: 321ms	remaining: 233ms
58:	learn: 16.2401369	total: 326ms	remaining: 227ms
59:	learn: 16.1293223	total: 332ms	remaining: 221ms
60:	learn: 16.0271167	total: 338ms	remaining: 216ms
61:	learn: 15.9126257	total: 343ms	remaining: 210ms
62:	learn: 15.8391096	total: 348ms	remaining: 204ms
63:	learn: 15.7441773	total: 353ms	remaining: 199ms
64:	learn: 15.6885195	total: 359ms	remaining: 193ms
65:	learn: 15.6052039	total: 363ms	remaining: 187ms
66:	learn: 15.5074202	total: 368ms	remaining: 181ms
67:	learn: 15.4054338	total: 372ms	remaining: 175ms
68:	learn: 15.2885714	total: 376ms	remaining: 169ms
69:	learn: 15.2157472	total: 380ms	remaining: 163ms
70:	learn: 15.1031554	total: 384ms	remaining: 157ms
71:	learn: 15.0237470	total: 388ms	remaining: 151ms
72:	learn: 14.9756825	total: 393ms	remaining: 145ms
73:	learn: 14.8840596	total: 398ms	remaining: 140ms
74:	learn: 14.8077061	total: 402ms	remaining: 134ms
75:	learn: 14.7444437	total: 407ms	remaining: 128ms
76:	learn: 14.6751720	total: 411ms	remaining: 123ms
77:	learn: 14.5830333	total: 416ms	remaining: 117ms
78:	learn: 14.5241206	total: 420ms	remaining: 112ms
79:	learn: 14.4892731	total: 425ms	remaining: 106ms
80:	learn: 14.4256605	total: 429ms	remaining: 101ms
81:	learn: 14.3666860	total: 433ms	remaining: 95.1ms
82:	learn: 14.2938372	total: 438ms	remaining: 89.7ms
83:	learn: 14.2161532	total: 443ms	remaining: 84.3ms
84:	learn: 14.1582910	total: 447ms	remaining: 78.9ms
85:	learn: 14.1029153	total: 455ms	remaining: 74.1ms
86:	learn: 14.0475835	total: 463ms	remaining: 69.1ms
87:	learn: 13.9892661	total: 471ms	remaining: 64.2ms
88:	learn: 13.9481628	total: 478ms	remaining: 59.1ms
89:	learn: 13.8483991	total: 483ms	remaining: 53.7ms
90:	learn: 13.7775614	total: 488ms	remaining: 48.3ms
91:	learn: 13.7304585	total: 493ms	remaining: 42.9ms
92:	learn: 13.6783381	total: 498ms	remaining: 37.5ms
93:	learn: 13.6356964	total: 503ms	remaining: 32.1ms
94:	learn: 13.5924371	total: 509ms	remaining: 26.8ms
95:	learn: 13.5400746	total: 514ms	remaining: 21.4ms
96:	learn: 13.4897333	total: 519ms	remaining: 16ms
97:	learn: 13.4470321	total: 524ms	remaining: 10.7ms
98:	learn: 13.3856082	total: 528ms	remaining: 5.34ms
99:	learn: 13.3082371	total: 533ms	remaining: 0us
0:	learn: 43.0395283	total: 5.03ms	remaining: 498ms
1:	learn: 42.1130223	total: 9.75ms	remaining: 478ms
2:	learn: 41.1753409	total: 14.4ms	remaining: 465ms
3:	learn: 40.3637444	total: 19.7ms	remaining: 473ms
4:	learn: 39.6508088	total: 24.2ms	remaining: 460ms
5:	learn: 38.7217934	total: 28.7ms	remaining: 450ms
6:	learn: 37.8538055	total: 32.9ms	remaining: 437ms
7:	learn: 36.9793574	total: 37.2ms	remaining: 428ms
8:	learn: 36.3076984	total: 41.1ms	remaining: 415ms
9:	learn: 35.6673160	total: 45.9ms	remaining: 413ms
10:	learn: 34.8889800	total: 50.2ms	remaining: 406ms
11:	learn: 34.1675517	total: 54.8ms	remaining: 402ms
12:	learn: 33.6779564	total: 59.4ms	remaining: 398ms
13:	learn: 33.0710039	total: 63.9ms	remaining: 392ms
14:	learn: 32.4966674	total: 68.2ms	remaining: 387ms
15:	learn: 31.9492856	total: 72.9ms	remaining: 383ms
16:	learn: 31.5108129	total: 77.6ms	remaining: 379ms
17:	learn: 30.9804023	total: 88.7ms	remaining: 404ms
18:	learn: 30.4169089	total: 97ms	remaining: 413ms
19:	learn: 29.8930375	total: 103ms	remaining: 413ms
20:	learn: 29.3974421	total: 111ms	remaining: 416ms
21:	learn: 28.8792307	total: 116ms	remaining: 412ms
22:	learn: 28.3894474	total: 121ms	remaining: 406ms
23:	learn: 27.9921276	total: 126ms	remaining: 399ms
24:	learn: 27.6158887	total: 131ms	remaining: 394ms
25:	learn: 27.2866950	total: 136ms	remaining: 388ms
26:	learn: 26.8770708	total: 142ms	remaining: 384ms
27:	learn: 26.6233005	total: 147ms	remaining: 378ms
28:	learn: 26.2921934	total: 152ms	remaining: 373ms
29:	learn: 25.9156920	total: 157ms	remaining: 367ms
30:	learn: 25.5311106	total: 159ms	remaining: 355ms
31:	learn: 25.2178997	total: 164ms	remaining: 348ms
32:	learn: 24.8572196	total: 169ms	remaining: 343ms
33:	learn: 24.5849710	total: 174ms	remaining: 339ms
34:	learn: 24.2209190	total: 180ms	remaining: 334ms
35:	learn: 23.8708250	total: 184ms	remaining: 327ms
36:	learn: 23.5325279	total: 188ms	remaining: 320ms
37:	learn: 23.2116148	total: 192ms	remaining: 313ms
38:	learn: 22.9696787	total: 196ms	remaining: 307ms
39:	learn: 22.7936783	total: 200ms	remaining: 300ms
40:	learn: 22.6228847	total: 204ms	remaining: 293ms
41:	learn: 22.3691527	total: 208ms	remaining: 287ms
42:	learn: 22.1002173	total: 212ms	remaining: 281ms
43:	learn: 21.9157268	total: 216ms	remaining: 275ms
44:	learn: 21.7229102	total: 220ms	remaining: 269ms
45:	learn: 21.4642005	total: 224ms	remaining: 263ms
46:	learn: 21.3029442	total: 229ms	remaining: 258ms
47:	learn: 21.1469792	total: 233ms	remaining: 252ms
48:	learn: 20.9458235	total: 237ms	remaining: 247ms
49:	learn: 20.7335242	total: 241ms	remaining: 241ms
50:	learn: 20.5440269	total: 246ms	remaining: 236ms
51:	learn: 20.3661449	total: 251ms	remaining: 231ms
52:	learn: 20.2158134	total: 255ms	remaining: 226ms
53:	learn: 19.9934873	total: 259ms	remaining: 221ms
54:	learn: 19.7879739	total: 264ms	remaining: 216ms
55:	learn: 19.6630460	total: 268ms	remaining: 211ms
56:	learn: 19.5152729	total: 273ms	remaining: 206ms
57:	learn: 19.3581128	total: 278ms	remaining: 201ms
58:	learn: 19.2209303	total: 286ms	remaining: 199ms
59:	learn: 19.0965248	total: 293ms	remaining: 195ms
60:	learn: 19.0035954	total: 301ms	remaining: 193ms
61:	learn: 18.8554149	total: 308ms	remaining: 189ms
62:	learn: 18.7095427	total: 314ms	remaining: 184ms
63:	learn: 18.5751494	total: 319ms	remaining: 179ms
64:	learn: 18.4678251	total: 324ms	remaining: 175ms
65:	learn: 18.3500325	total: 329ms	remaining: 170ms
66:	learn: 18.2088983	total: 335ms	remaining: 165ms
67:	learn: 18.0737705	total: 340ms	remaining: 160ms
68:	learn: 17.9325058	total: 345ms	remaining: 155ms
69:	learn: 17.8003911	total: 350ms	remaining: 150ms
70:	learn: 17.7385366	total: 356ms	remaining: 145ms
71:	learn: 17.6106998	total: 360ms	remaining: 140ms
72:	learn: 17.4816270	total: 365ms	remaining: 135ms
73:	learn: 17.4025554	total: 370ms	remaining: 130ms
74:	learn: 17.2902108	total: 374ms	remaining: 125ms
75:	learn: 17.2158048	total: 379ms	remaining: 120ms
76:	learn: 17.1261053	total: 384ms	remaining: 115ms
77:	learn: 17.0308917	total: 389ms	remaining: 110ms
78:	learn: 16.9546705	total: 393ms	remaining: 105ms
79:	learn: 16.8319165	total: 398ms	remaining: 99.4ms
80:	learn: 16.7687017	total: 401ms	remaining: 94.2ms
81:	learn: 16.6972326	total: 406ms	remaining: 89ms
82:	learn: 16.6124580	total: 410ms	remaining: 83.9ms
83:	learn: 16.4999052	total: 414ms	remaining: 78.9ms
84:	learn: 16.4302484	total: 418ms	remaining: 73.8ms
85:	learn: 16.3201363	total: 423ms	remaining: 68.8ms
86:	learn: 16.2534314	total: 427ms	remaining: 63.8ms
87:	learn: 16.1720485	total: 431ms	remaining: 58.8ms
88:	learn: 16.0625751	total: 436ms	remaining: 53.9ms
89:	learn: 15.9135088	total: 440ms	remaining: 48.9ms
90:	learn: 15.8658863	total: 445ms	remaining: 44ms
91:	learn: 15.8066805	total: 449ms	remaining: 39.1ms
92:	learn: 15.7412103	total: 454ms	remaining: 34.2ms
93:	learn: 15.6542776	total: 459ms	remaining: 29.3ms
94:	learn: 15.5760334	total: 464ms	remaining: 24.4ms
95:	learn: 15.5434131	total: 469ms	remaining: 19.5ms
96:	learn: 15.4709561	total: 473ms	remaining: 14.6ms
97:	learn: 15.4449618	total: 478ms	remaining: 9.76ms
98:	learn: 15.3752761	total: 489ms	remaining: 4.94ms
99:	learn: 15.3106595	total: 511ms	remaining: 0us
0:	learn: 46.7142257	total: 6.02ms	remaining: 596ms
1:	learn: 45.7634153	total: 11.2ms	remaining: 546ms
2:	learn: 45.0054253	total: 15.4ms	remaining: 498ms
3:	learn: 44.2120432	total: 19.4ms	remaining: 466ms
4:	learn: 43.3960472	total: 23.8ms	remaining: 453ms
5:	learn: 42.8588120	total: 27.7ms	remaining: 434ms
6:	learn: 41.9533701	total: 31.8ms	remaining: 423ms
7:	learn: 41.2745030	total: 35.9ms	remaining: 413ms
8:	learn: 40.6797495	total: 40ms	remaining: 405ms
9:	learn: 39.9899571	total: 44.7ms	remaining: 402ms
10:	learn: 39.4682100	total: 49.1ms	remaining: 397ms
11:	learn: 39.0305595	total: 53.8ms	remaining: 395ms
12:	learn: 38.4200417	total: 58.2ms	remaining: 389ms
13:	learn: 37.8425194	total: 62.4ms	remaining: 383ms
14:	learn: 37.4203127	total: 66.2ms	remaining: 375ms
15:	learn: 36.9917688	total: 70.2ms	remaining: 368ms
16:	learn: 36.5544138	total: 74.3ms	remaining: 363ms
17:	learn: 36.0727019	total: 78.6ms	remaining: 358ms
18:	learn: 35.4835715	total: 82.6ms	remaining: 352ms
19:	learn: 34.9865654	total: 86.9ms	remaining: 348ms
20:	learn: 34.6063373	total: 91.4ms	remaining: 344ms
21:	learn: 34.0997289	total: 96ms	remaining: 340ms
22:	learn: 33.7313171	total: 101ms	remaining: 337ms
23:	learn: 33.3582000	total: 105ms	remaining: 333ms
24:	learn: 32.9432456	total: 109ms	remaining: 328ms
25:	learn: 32.5220888	total: 114ms	remaining: 325ms
26:	learn: 32.2172292	total: 119ms	remaining: 322ms
27:	learn: 31.8972904	total: 127ms	remaining: 326ms
28:	learn: 31.6405350	total: 135ms	remaining: 329ms
29:	learn: 31.4167702	total: 142ms	remaining: 332ms
30:	learn: 30.8541961	total: 145ms	remaining: 323ms
31:	learn: 30.5572111	total: 153ms	remaining: 325ms
32:	learn: 30.1700399	total: 163ms	remaining: 330ms
33:	learn: 29.8537271	total: 168ms	remaining: 326ms
34:	learn: 29.6192540	total: 173ms	remaining: 322ms
35:	learn: 29.3276362	total: 178ms	remaining: 317ms
36:	learn: 28.9985179	total: 184ms	remaining: 313ms
37:	learn: 28.7046880	total: 189ms	remaining: 308ms
38:	learn: 28.4412677	total: 195ms	remaining: 304ms
39:	learn: 28.1277292	total: 200ms	remaining: 300ms
40:	learn: 27.9000750	total: 205ms	remaining: 295ms
41:	learn: 27.5433162	total: 210ms	remaining: 291ms
42:	learn: 27.2493285	total: 215ms	remaining: 285ms
43:	learn: 26.9576632	total: 217ms	remaining: 277ms
44:	learn: 26.6177110	total: 223ms	remaining: 273ms
45:	learn: 26.2812456	total: 229ms	remaining: 269ms
46:	learn: 26.0803859	total: 233ms	remaining: 262ms
47:	learn: 25.9543581	total: 237ms	remaining: 257ms
48:	learn: 25.7951582	total: 241ms	remaining: 251ms
49:	learn: 25.6548184	total: 245ms	remaining: 245ms
50:	learn: 25.4010843	total: 249ms	remaining: 240ms
51:	learn: 24.9773937	total: 254ms	remaining: 234ms
52:	learn: 24.8026156	total: 258ms	remaining: 229ms
53:	learn: 24.5568053	total: 262ms	remaining: 223ms
54:	learn: 24.2281839	total: 266ms	remaining: 218ms
55:	learn: 23.9202795	total: 271ms	remaining: 213ms
56:	learn: 23.7625591	total: 276ms	remaining: 208ms
57:	learn: 23.5429721	total: 280ms	remaining: 203ms
58:	learn: 23.3175893	total: 285ms	remaining: 198ms
59:	learn: 23.2035130	total: 289ms	remaining: 193ms
60:	learn: 23.0232450	total: 294ms	remaining: 188ms
61:	learn: 22.8384958	total: 298ms	remaining: 183ms
62:	learn: 22.6499902	total: 302ms	remaining: 178ms
63:	learn: 22.4577426	total: 307ms	remaining: 173ms
64:	learn: 22.3333158	total: 311ms	remaining: 168ms
65:	learn: 22.2064131	total: 315ms	remaining: 162ms
66:	learn: 22.1434971	total: 322ms	remaining: 159ms
67:	learn: 21.9596519	total: 330ms	remaining: 155ms
68:	learn: 21.8475576	total: 340ms	remaining: 153ms
69:	learn: 21.6954745	total: 346ms	remaining: 148ms
70:	learn: 21.5635976	total: 352ms	remaining: 144ms
71:	learn: 21.4588506	total: 357ms	remaining: 139ms
72:	learn: 21.3527268	total: 362ms	remaining: 134ms
73:	learn: 21.2661288	total: 367ms	remaining: 129ms
74:	learn: 21.1817333	total: 372ms	remaining: 124ms
75:	learn: 21.0527553	total: 378ms	remaining: 119ms
76:	learn: 20.9229021	total: 383ms	remaining: 114ms
77:	learn: 20.7563946	total: 388ms	remaining: 109ms
78:	learn: 20.6569831	total: 393ms	remaining: 105ms
79:	learn: 20.4982663	total: 398ms	remaining: 99.6ms
80:	learn: 20.3185460	total: 403ms	remaining: 94.6ms
81:	learn: 20.2096241	total: 409ms	remaining: 89.7ms
82:	learn: 20.1274891	total: 414ms	remaining: 84.8ms
83:	learn: 20.0740139	total: 419ms	remaining: 79.9ms
84:	learn: 19.9630699	total: 423ms	remaining: 74.7ms
85:	learn: 19.8753899	total: 428ms	remaining: 69.6ms
86:	learn: 19.6563612	total: 432ms	remaining: 64.5ms
87:	learn: 19.4680232	total: 436ms	remaining: 59.4ms
88:	learn: 19.3503431	total: 440ms	remaining: 54.4ms
89:	learn: 19.2221379	total: 444ms	remaining: 49.3ms
90:	learn: 19.0732542	total: 448ms	remaining: 44.3ms
91:	learn: 18.9825190	total: 452ms	remaining: 39.3ms
92:	learn: 18.8839009	total: 456ms	remaining: 34.3ms
93:	learn: 18.8012219	total: 460ms	remaining: 29.3ms
94:	learn: 18.7172713	total: 464ms	remaining: 24.4ms
95:	learn: 18.6201170	total: 468ms	remaining: 19.5ms
96:	learn: 18.5318611	total: 472ms	remaining: 14.6ms
97:	learn: 18.3833356	total: 476ms	remaining: 9.71ms
98:	learn: 18.3289700	total: 480ms	remaining: 4.85ms
99:	learn: 18.2227333	total: 484ms	remaining: 0us
0:	learn: 46.3764524	total: 4.84ms	remaining: 479ms
1:	learn: 45.5561269	total: 11.9ms	remaining: 583ms
2:	learn: 44.8811245	total: 18.8ms	remaining: 607ms
3:	learn: 44.0788617	total: 27.2ms	remaining: 652ms
4:	learn: 43.3619790	total: 33.4ms	remaining: 635ms
5:	learn: 42.6912112	total: 40.7ms	remaining: 638ms
6:	learn: 42.2292118	total: 45.9ms	remaining: 610ms
7:	learn: 41.7725191	total: 51.1ms	remaining: 588ms
8:	learn: 41.1676614	total: 56.2ms	remaining: 568ms
9:	learn: 40.5771076	total: 60.9ms	remaining: 548ms
10:	learn: 39.8343757	total: 66.2ms	remaining: 535ms
11:	learn: 39.3761142	total: 71.3ms	remaining: 523ms
12:	learn: 38.5254692	total: 76.5ms	remaining: 512ms
13:	learn: 37.9629555	total: 81.6ms	remaining: 501ms
14:	learn: 37.4418438	total: 86.9ms	remaining: 493ms
15:	learn: 37.0507283	total: 92ms	remaining: 483ms
16:	learn: 36.6264217	total: 96.8ms	remaining: 473ms
17:	learn: 36.1114940	total: 102ms	remaining: 463ms
18:	learn: 35.7193862	total: 107ms	remaining: 457ms
19:	learn: 35.3301177	total: 113ms	remaining: 450ms
20:	learn: 35.0598280	total: 117ms	remaining: 442ms
21:	learn: 34.5469736	total: 122ms	remaining: 431ms
22:	learn: 34.2064215	total: 125ms	remaining: 419ms
23:	learn: 33.7280710	total: 130ms	remaining: 411ms
24:	learn: 33.3282940	total: 134ms	remaining: 401ms
25:	learn: 32.8478961	total: 138ms	remaining: 392ms
26:	learn: 32.5722164	total: 142ms	remaining: 383ms
27:	learn: 32.2457019	total: 146ms	remaining: 374ms
28:	learn: 31.9230495	total: 150ms	remaining: 367ms
29:	learn: 31.4311611	total: 154ms	remaining: 359ms
30:	learn: 30.9179052	total: 158ms	remaining: 351ms
31:	learn: 30.6201141	total: 162ms	remaining: 344ms
32:	learn: 30.3421106	total: 166ms	remaining: 337ms
33:	learn: 29.9885373	total: 170ms	remaining: 331ms
34:	learn: 29.7462780	total: 174ms	remaining: 324ms
35:	learn: 29.3607153	total: 179ms	remaining: 318ms
36:	learn: 29.1793078	total: 184ms	remaining: 313ms
37:	learn: 28.9276538	total: 188ms	remaining: 307ms
38:	learn: 28.6903934	total: 192ms	remaining: 301ms
39:	learn: 28.2095033	total: 197ms	remaining: 295ms
40:	learn: 27.7990608	total: 201ms	remaining: 289ms
41:	learn: 27.5406632	total: 206ms	remaining: 284ms
42:	learn: 27.2575376	total: 211ms	remaining: 279ms
43:	learn: 26.9741707	total: 219ms	remaining: 278ms
44:	learn: 26.6606899	total: 226ms	remaining: 276ms
45:	learn: 26.4015833	total: 236ms	remaining: 276ms
46:	learn: 26.1828993	total: 243ms	remaining: 274ms
47:	learn: 26.0233709	total: 246ms	remaining: 267ms
48:	learn: 25.9300399	total: 251ms	remaining: 262ms
49:	learn: 25.5861489	total: 257ms	remaining: 257ms
50:	learn: 25.4322012	total: 262ms	remaining: 252ms
51:	learn: 25.1595644	total: 267ms	remaining: 246ms
52:	learn: 24.9955303	total: 272ms	remaining: 241ms
53:	learn: 24.7273966	total: 277ms	remaining: 236ms
54:	learn: 24.5747978	total: 282ms	remaining: 231ms
55:	learn: 24.3807977	total: 287ms	remaining: 226ms
56:	learn: 24.1689569	total: 292ms	remaining: 220ms
57:	learn: 23.9898221	total: 296ms	remaining: 214ms
58:	learn: 23.7566414	total: 300ms	remaining: 209ms
59:	learn: 23.6641165	total: 305ms	remaining: 203ms
60:	learn: 23.5658066	total: 309ms	remaining: 198ms
61:	learn: 23.4338851	total: 314ms	remaining: 193ms
62:	learn: 23.2408837	total: 319ms	remaining: 188ms
63:	learn: 23.0642038	total: 325ms	remaining: 183ms
64:	learn: 22.9032045	total: 329ms	remaining: 177ms
65:	learn: 22.7736138	total: 333ms	remaining: 171ms
66:	learn: 22.6836443	total: 337ms	remaining: 166ms
67:	learn: 22.5983654	total: 342ms	remaining: 161ms
68:	learn: 22.4419813	total: 346ms	remaining: 156ms
69:	learn: 22.2863339	total: 350ms	remaining: 150ms
70:	learn: 22.1792943	total: 354ms	remaining: 145ms
71:	learn: 22.1130574	total: 359ms	remaining: 140ms
72:	learn: 21.9858161	total: 364ms	remaining: 135ms
73:	learn: 21.8577784	total: 368ms	remaining: 129ms
74:	learn: 21.7845222	total: 373ms	remaining: 124ms
75:	learn: 21.6831390	total: 378ms	remaining: 119ms
76:	learn: 21.6292521	total: 383ms	remaining: 114ms
77:	learn: 21.5789330	total: 388ms	remaining: 109ms
78:	learn: 21.5420942	total: 393ms	remaining: 104ms
79:	learn: 21.4280939	total: 398ms	remaining: 99.5ms
80:	learn: 21.3641165	total: 403ms	remaining: 94.6ms
81:	learn: 21.2734814	total: 408ms	remaining: 89.6ms
82:	learn: 21.2220323	total: 413ms	remaining: 84.5ms
83:	learn: 21.0625792	total: 418ms	remaining: 79.6ms
84:	learn: 20.9488320	total: 423ms	remaining: 74.6ms
85:	learn: 20.8504255	total: 431ms	remaining: 70.1ms
86:	learn: 20.7848510	total: 438ms	remaining: 65.4ms
87:	learn: 20.7247442	total: 446ms	remaining: 60.9ms
88:	learn: 20.5698590	total: 453ms	remaining: 56ms
89:	learn: 20.4067620	total: 459ms	remaining: 51ms
90:	learn: 20.3062482	total: 464ms	remaining: 45.9ms
91:	learn: 20.2029696	total: 470ms	remaining: 40.8ms
92:	learn: 20.1384849	total: 475ms	remaining: 35.7ms
93:	learn: 20.0260709	total: 480ms	remaining: 30.6ms
94:	learn: 19.9122100	total: 486ms	remaining: 25.6ms
95:	learn: 19.8648487	total: 491ms	remaining: 20.5ms
96:	learn: 19.8207072	total: 497ms	remaining: 15.4ms
97:	learn: 19.7261189	total: 502ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 507ms	remaining: 5.12ms
99:	learn: 19.6546645	total: 512ms	remaining: 0us
0:	learn: 47.0239288	total: 4.49ms	remaining: 445ms
1:	learn: 46.2253829	total: 8.69ms	remaining: 426ms
2:	learn: 45.5580301	total: 12.5ms	remaining: 404ms
3:	learn: 44.7273237	total: 16.7ms	remaining: 401ms
4:	learn: 43.8867421	total: 20.5ms	remaining: 389ms
5:	learn: 43.3615911	total: 24.2ms	remaining: 379ms
6:	learn: 42.8548390	total: 28.4ms	remaining: 377ms
7:	learn: 42.1606758	total: 33ms	remaining: 379ms
8:	learn: 41.6625870	total: 37ms	remaining: 374ms
9:	learn: 40.9497092	total: 40.9ms	remaining: 368ms
10:	learn: 40.1886318	total: 45.3ms	remaining: 367ms
11:	learn: 39.7456423	total: 50.1ms	remaining: 367ms
12:	learn: 39.1171373	total: 54.5ms	remaining: 365ms
13:	learn: 38.5451069	total: 59.1ms	remaining: 363ms
14:	learn: 38.0155834	total: 63.6ms	remaining: 360ms
15:	learn: 37.5631354	total: 68.4ms	remaining: 359ms
16:	learn: 37.1030023	total: 72.8ms	remaining: 355ms
17:	learn: 36.4563029	total: 78.7ms	remaining: 358ms
18:	learn: 36.0160976	total: 86.2ms	remaining: 367ms
19:	learn: 35.5079827	total: 93.4ms	remaining: 373ms
20:	learn: 35.2111885	total: 102ms	remaining: 382ms
21:	learn: 34.9397465	total: 122ms	remaining: 433ms
22:	learn: 34.5270048	total: 127ms	remaining: 426ms
23:	learn: 34.0169260	total: 132ms	remaining: 418ms
24:	learn: 33.7454892	total: 137ms	remaining: 412ms
25:	learn: 33.2648157	total: 143ms	remaining: 406ms
26:	learn: 32.8899427	total: 148ms	remaining: 399ms
27:	learn: 32.6185050	total: 153ms	remaining: 393ms
28:	learn: 32.3528531	total: 158ms	remaining: 386ms
29:	learn: 32.0859923	total: 162ms	remaining: 378ms
30:	learn: 31.6511144	total: 167ms	remaining: 373ms
31:	learn: 31.2571765	total: 173ms	remaining: 368ms
32:	learn: 30.9770049	total: 177ms	remaining: 359ms
33:	learn: 30.6084872	total: 181ms	remaining: 351ms
34:	learn: 30.3448632	total: 185ms	remaining: 344ms
35:	learn: 30.0360942	total: 190ms	remaining: 337ms
36:	learn: 29.6648968	total: 194ms	remaining: 330ms
37:	learn: 29.3165114	total: 198ms	remaining: 323ms
38:	learn: 29.0829198	total: 202ms	remaining: 316ms
39:	learn: 28.7752064	total: 206ms	remaining: 309ms
40:	learn: 28.3622191	total: 210ms	remaining: 303ms
41:	learn: 28.1346631	total: 215ms	remaining: 296ms
42:	learn: 27.9585719	total: 218ms	remaining: 289ms
43:	learn: 27.6565566	total: 222ms	remaining: 283ms
44:	learn: 27.3616172	total: 226ms	remaining: 276ms
45:	learn: 27.0658637	total: 230ms	remaining: 270ms
46:	learn: 26.8660382	total: 234ms	remaining: 264ms
47:	learn: 26.6536078	total: 238ms	remaining: 258ms
48:	learn: 26.3524440	total: 243ms	remaining: 253ms
49:	learn: 26.1595277	total: 247ms	remaining: 247ms
50:	learn: 25.9273523	total: 252ms	remaining: 242ms
51:	learn: 25.7195580	total: 256ms	remaining: 236ms
52:	learn: 25.5730225	total: 261ms	remaining: 231ms
53:	learn: 25.3455276	total: 265ms	remaining: 226ms
54:	learn: 25.2289675	total: 269ms	remaining: 220ms
55:	learn: 25.0133024	total: 274ms	remaining: 215ms
56:	learn: 24.8406714	total: 278ms	remaining: 210ms
57:	learn: 24.6367857	total: 286ms	remaining: 207ms
58:	learn: 24.5338177	total: 294ms	remaining: 204ms
59:	learn: 24.3799964	total: 302ms	remaining: 202ms
60:	learn: 24.1447492	total: 310ms	remaining: 198ms
61:	learn: 23.9880495	total: 315ms	remaining: 193ms
62:	learn: 23.7140630	total: 320ms	remaining: 188ms
63:	learn: 23.5003791	total: 325ms	remaining: 183ms
64:	learn: 23.3207645	total: 331ms	remaining: 178ms
65:	learn: 23.1958356	total: 336ms	remaining: 173ms
66:	learn: 23.0471302	total: 341ms	remaining: 168ms
67:	learn: 22.8977183	total: 346ms	remaining: 163ms
68:	learn: 22.7187400	total: 351ms	remaining: 158ms
69:	learn: 22.6523405	total: 356ms	remaining: 153ms
70:	learn: 22.4767453	total: 360ms	remaining: 147ms
71:	learn: 22.3243677	total: 365ms	remaining: 142ms
72:	learn: 22.2133096	total: 369ms	remaining: 137ms
73:	learn: 22.1151713	total: 374ms	remaining: 132ms
74:	learn: 22.0296666	total: 396ms	remaining: 132ms
75:	learn: 21.9195980	total: 400ms	remaining: 126ms
76:	learn: 21.8401730	total: 404ms	remaining: 121ms
77:	learn: 21.8079797	total: 408ms	remaining: 115ms
78:	learn: 21.7274109	total: 412ms	remaining: 109ms
79:	learn: 21.6663032	total: 416ms	remaining: 104ms
80:	learn: 21.5633117	total: 420ms	remaining: 98.4ms
81:	learn: 21.4542467	total: 424ms	remaining: 93ms
82:	learn: 21.3177957	total: 428ms	remaining: 87.7ms
83:	learn: 21.1289167	total: 432ms	remaining: 82.4ms
84:	learn: 21.0297368	total: 436ms	remaining: 77ms
85:	learn: 20.9089564	total: 440ms	remaining: 71.7ms
86:	learn: 20.7653988	total: 445ms	remaining: 66.5ms
87:	learn: 20.6521894	total: 450ms	remaining: 61.3ms
88:	learn: 20.5193021	total: 454ms	remaining: 56.1ms
89:	learn: 20.4361620	total: 459ms	remaining: 51ms
90:	learn: 20.3546710	total: 463ms	remaining: 45.8ms
91:	learn: 20.2513296	total: 467ms	remaining: 40.6ms
92:	learn: 20.1605550	total: 472ms	remaining: 35.5ms
93:	learn: 20.0515942	total: 476ms	remaining: 30.4ms
94:	learn: 19.9800764	total: 485ms	remaining: 25.5ms
95:	learn: 19.8996532	total: 492ms	remaining: 20.5ms
96:	learn: 19.8450910	total: 501ms	remaining: 15.5ms
97:	learn: 19.7887346	total: 507ms	remaining: 10.3ms
98:	learn: 19.7230872	total: 513ms	remaining: 5.18ms
99:	learn: 19.6328825	total: 518ms	remaining: 0us
0:	learn: 27.5585353	total: 5.43ms	remaining: 538ms
1:	learn: 27.1656995	total: 9.47ms	remaining: 464ms
2:	learn: 26.8590175	total: 13.2ms	remaining: 426ms
3:	learn: 26.5818406	total: 16.9ms	remaining: 405ms
4:	learn: 26.1148663	total: 20.8ms	remaining: 396ms
5:	learn: 25.7690484	total: 24.6ms	remaining: 386ms
6:	learn: 25.3489206	total: 28.9ms	remaining: 384ms
7:	learn: 24.9542406	total: 32.9ms	remaining: 378ms
8:	learn: 24.6777517	total: 36.8ms	remaining: 372ms
9:	learn: 24.3242344	total: 41ms	remaining: 369ms
10:	learn: 24.0383073	total: 45.3ms	remaining: 366ms
11:	learn: 23.7383420	total: 49.2ms	remaining: 361ms
12:	learn: 23.3461670	total: 53.2ms	remaining: 356ms
13:	learn: 23.0928636	total: 57ms	remaining: 350ms
14:	learn: 22.8770414	total: 61ms	remaining: 346ms
15:	learn: 22.6323214	total: 65.4ms	remaining: 343ms
16:	learn: 22.3597072	total: 69.8ms	remaining: 341ms
17:	learn: 22.1079813	total: 73.8ms	remaining: 336ms
18:	learn: 21.8421199	total: 78.1ms	remaining: 333ms
19:	learn: 21.6576508	total: 82.6ms	remaining: 331ms
20:	learn: 21.4301268	total: 87ms	remaining: 327ms
21:	learn: 21.2287388	total: 91.5ms	remaining: 324ms
22:	learn: 21.0553872	total: 96.1ms	remaining: 322ms
23:	learn: 20.8977091	total: 101ms	remaining: 319ms
24:	learn: 20.6619051	total: 105ms	remaining: 314ms
25:	learn: 20.5040955	total: 109ms	remaining: 310ms
26:	learn: 20.3181195	total: 114ms	remaining: 309ms
27:	learn: 20.0869436	total: 122ms	remaining: 313ms
28:	learn: 19.9375985	total: 129ms	remaining: 316ms
29:	learn: 19.8247516	total: 136ms	remaining: 318ms
30:	learn: 19.6261697	total: 143ms	remaining: 318ms
31:	learn: 19.4547236	total: 149ms	remaining: 316ms
32:	learn: 19.3157092	total: 154ms	remaining: 312ms
33:	learn: 19.1561419	total: 160ms	remaining: 310ms
34:	learn: 19.0453620	total: 165ms	remaining: 306ms
35:	learn: 18.8738574	total: 170ms	remaining: 303ms
36:	learn: 18.7072907	total: 176ms	remaining: 299ms
37:	learn: 18.5877943	total: 181ms	remaining: 295ms
38:	learn: 18.4436380	total: 186ms	remaining: 292ms
39:	learn: 18.3463356	total: 192ms	remaining: 287ms
40:	learn: 18.2008059	total: 197ms	remaining: 283ms
41:	learn: 18.0582079	total: 202ms	remaining: 279ms
42:	learn: 17.8891982	total: 207ms	remaining: 274ms
43:	learn: 17.7332246	total: 212ms	remaining: 270ms
44:	learn: 17.6206421	total: 218ms	remaining: 266ms
45:	learn: 17.4982800	total: 222ms	remaining: 260ms
46:	learn: 17.3970150	total: 226ms	remaining: 255ms
47:	learn: 17.3058203	total: 231ms	remaining: 250ms
48:	learn: 17.1789256	total: 236ms	remaining: 246ms
49:	learn: 17.0916229	total: 241ms	remaining: 241ms
50:	learn: 16.9859820	total: 246ms	remaining: 236ms
51:	learn: 16.8995582	total: 250ms	remaining: 231ms
52:	learn: 16.8137014	total: 255ms	remaining: 226ms
53:	learn: 16.7021451	total: 260ms	remaining: 221ms
54:	learn: 16.5895582	total: 264ms	remaining: 216ms
55:	learn: 16.5015639	total: 269ms	remaining: 211ms
56:	learn: 16.4356637	total: 273ms	remaining: 206ms
57:	learn: 16.3514525	total: 278ms	remaining: 201ms
58:	learn: 16.2401369	total: 283ms	remaining: 196ms
59:	learn: 16.1293223	total: 287ms	remaining: 192ms
60:	learn: 16.0271167	total: 292ms	remaining: 187ms
61:	learn: 15.9126257	total: 296ms	remaining: 182ms
62:	learn: 15.8391096	total: 301ms	remaining: 177ms
63:	learn: 15.7441773	total: 305ms	remaining: 172ms
64:	learn: 15.6885195	total: 310ms	remaining: 167ms
65:	learn: 15.6052039	total: 315ms	remaining: 162ms
66:	learn: 15.5074202	total: 324ms	remaining: 159ms
67:	learn: 15.4054338	total: 331ms	remaining: 156ms
68:	learn: 15.2885714	total: 340ms	remaining: 153ms
69:	learn: 15.2157472	total: 346ms	remaining: 148ms
70:	learn: 15.1031554	total: 352ms	remaining: 144ms
71:	learn: 15.0237470	total: 357ms	remaining: 139ms
72:	learn: 14.9756825	total: 362ms	remaining: 134ms
73:	learn: 14.8840596	total: 368ms	remaining: 129ms
74:	learn: 14.8077061	total: 373ms	remaining: 124ms
75:	learn: 14.7444437	total: 379ms	remaining: 120ms
76:	learn: 14.6751720	total: 384ms	remaining: 115ms
77:	learn: 14.5830333	total: 390ms	remaining: 110ms
78:	learn: 14.5241206	total: 395ms	remaining: 105ms
79:	learn: 14.4892731	total: 401ms	remaining: 100ms
80:	learn: 14.4256605	total: 405ms	remaining: 95.1ms
81:	learn: 14.3666860	total: 411ms	remaining: 90.2ms
82:	learn: 14.2938372	total: 417ms	remaining: 85.4ms
83:	learn: 14.2161532	total: 422ms	remaining: 80.3ms
84:	learn: 14.1582910	total: 426ms	remaining: 75.2ms
85:	learn: 14.1029153	total: 430ms	remaining: 70.1ms
86:	learn: 14.0475835	total: 435ms	remaining: 64.9ms
87:	learn: 13.9892661	total: 439ms	remaining: 59.8ms
88:	learn: 13.9481628	total: 443ms	remaining: 54.8ms
89:	learn: 13.8483991	total: 448ms	remaining: 49.7ms
90:	learn: 13.7775614	total: 452ms	remaining: 44.7ms
91:	learn: 13.7304585	total: 460ms	remaining: 40ms
92:	learn: 13.6783381	total: 464ms	remaining: 34.9ms
93:	learn: 13.6356964	total: 468ms	remaining: 29.9ms
94:	learn: 13.5924371	total: 472ms	remaining: 24.8ms
95:	learn: 13.5400746	total: 477ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 481ms	remaining: 14.9ms
97:	learn: 13.4470321	total: 486ms	remaining: 9.91ms
98:	learn: 13.3856082	total: 490ms	remaining: 4.95ms
99:	learn: 13.3082371	total: 495ms	remaining: 0us
0:	learn: 43.0395283	total: 5.69ms	remaining: 563ms
1:	learn: 42.1130223	total: 10.7ms	remaining: 526ms
2:	learn: 41.1753409	total: 16ms	remaining: 517ms
3:	learn: 40.3637444	total: 21.2ms	remaining: 509ms
4:	learn: 39.6508088	total: 26.3ms	remaining: 499ms
5:	learn: 38.7217934	total: 31.4ms	remaining: 492ms
6:	learn: 37.8538055	total: 36.8ms	remaining: 490ms
7:	learn: 36.9793574	total: 41.4ms	remaining: 476ms
8:	learn: 36.3076984	total: 46.3ms	remaining: 468ms
9:	learn: 35.6673160	total: 52.1ms	remaining: 469ms
10:	learn: 34.8889800	total: 57.5ms	remaining: 465ms
11:	learn: 34.1675517	total: 61.4ms	remaining: 450ms
12:	learn: 33.6779564	total: 65.6ms	remaining: 439ms
13:	learn: 33.0710039	total: 70.4ms	remaining: 432ms
14:	learn: 32.4966674	total: 74.8ms	remaining: 424ms
15:	learn: 31.9492856	total: 78.9ms	remaining: 414ms
16:	learn: 31.5108129	total: 83ms	remaining: 405ms
17:	learn: 30.9804023	total: 87.2ms	remaining: 397ms
18:	learn: 30.4169089	total: 91.3ms	remaining: 389ms
19:	learn: 29.8930375	total: 95.3ms	remaining: 381ms
20:	learn: 29.3974421	total: 99.2ms	remaining: 373ms
21:	learn: 28.8792307	total: 103ms	remaining: 366ms
22:	learn: 28.3894474	total: 107ms	remaining: 358ms
23:	learn: 27.9921276	total: 111ms	remaining: 352ms
24:	learn: 27.6158887	total: 115ms	remaining: 346ms
25:	learn: 27.2866950	total: 119ms	remaining: 340ms
26:	learn: 26.8770708	total: 124ms	remaining: 335ms
27:	learn: 26.6233005	total: 128ms	remaining: 330ms
28:	learn: 26.2921934	total: 133ms	remaining: 325ms
29:	learn: 25.9156920	total: 137ms	remaining: 320ms
30:	learn: 25.5311106	total: 139ms	remaining: 309ms
31:	learn: 25.2178997	total: 144ms	remaining: 305ms
32:	learn: 24.8572196	total: 148ms	remaining: 301ms
33:	learn: 24.5849710	total: 153ms	remaining: 296ms
34:	learn: 24.2209190	total: 157ms	remaining: 292ms
35:	learn: 23.8708250	total: 164ms	remaining: 292ms
36:	learn: 23.5325279	total: 171ms	remaining: 292ms
37:	learn: 23.2116148	total: 179ms	remaining: 292ms
38:	learn: 22.9696787	total: 186ms	remaining: 291ms
39:	learn: 22.7936783	total: 193ms	remaining: 290ms
40:	learn: 22.6228847	total: 198ms	remaining: 285ms
41:	learn: 22.3691527	total: 203ms	remaining: 281ms
42:	learn: 22.1002173	total: 209ms	remaining: 277ms
43:	learn: 21.9157268	total: 214ms	remaining: 272ms
44:	learn: 21.7229102	total: 218ms	remaining: 267ms
45:	learn: 21.4642005	total: 223ms	remaining: 262ms
46:	learn: 21.3029442	total: 229ms	remaining: 258ms
47:	learn: 21.1469792	total: 234ms	remaining: 253ms
48:	learn: 20.9458235	total: 239ms	remaining: 248ms
49:	learn: 20.7335242	total: 244ms	remaining: 244ms
50:	learn: 20.5440269	total: 249ms	remaining: 239ms
51:	learn: 20.3661449	total: 253ms	remaining: 234ms
52:	learn: 20.2158134	total: 259ms	remaining: 229ms
53:	learn: 19.9934873	total: 264ms	remaining: 225ms
54:	learn: 19.7879739	total: 269ms	remaining: 220ms
55:	learn: 19.6630460	total: 273ms	remaining: 215ms
56:	learn: 19.5152729	total: 278ms	remaining: 209ms
57:	learn: 19.3581128	total: 282ms	remaining: 204ms
58:	learn: 19.2209303	total: 286ms	remaining: 198ms
59:	learn: 19.0965248	total: 290ms	remaining: 193ms
60:	learn: 19.0035954	total: 294ms	remaining: 188ms
61:	learn: 18.8554149	total: 298ms	remaining: 183ms
62:	learn: 18.7095427	total: 302ms	remaining: 177ms
63:	learn: 18.5751494	total: 306ms	remaining: 172ms
64:	learn: 18.4678251	total: 310ms	remaining: 167ms
65:	learn: 18.3500325	total: 314ms	remaining: 162ms
66:	learn: 18.2088983	total: 318ms	remaining: 157ms
67:	learn: 18.0737705	total: 323ms	remaining: 152ms
68:	learn: 17.9325058	total: 327ms	remaining: 147ms
69:	learn: 17.8003911	total: 331ms	remaining: 142ms
70:	learn: 17.7385366	total: 336ms	remaining: 137ms
71:	learn: 17.6106998	total: 340ms	remaining: 132ms
72:	learn: 17.4816270	total: 345ms	remaining: 128ms
73:	learn: 17.4025554	total: 349ms	remaining: 123ms
74:	learn: 17.2902108	total: 354ms	remaining: 118ms
75:	learn: 17.2158048	total: 359ms	remaining: 113ms
76:	learn: 17.1261053	total: 364ms	remaining: 109ms
77:	learn: 17.0308917	total: 372ms	remaining: 105ms
78:	learn: 16.9546705	total: 380ms	remaining: 101ms
79:	learn: 16.8319165	total: 388ms	remaining: 97.1ms
80:	learn: 16.7687017	total: 396ms	remaining: 92.8ms
81:	learn: 16.6972326	total: 401ms	remaining: 88ms
82:	learn: 16.6124580	total: 406ms	remaining: 83.2ms
83:	learn: 16.4999052	total: 412ms	remaining: 78.4ms
84:	learn: 16.4302484	total: 416ms	remaining: 73.5ms
85:	learn: 16.3201363	total: 422ms	remaining: 68.6ms
86:	learn: 16.2534314	total: 427ms	remaining: 63.8ms
87:	learn: 16.1720485	total: 432ms	remaining: 58.9ms
88:	learn: 16.0625751	total: 438ms	remaining: 54.1ms
89:	learn: 15.9135088	total: 443ms	remaining: 49.2ms
90:	learn: 15.8658863	total: 448ms	remaining: 44.3ms
91:	learn: 15.8066805	total: 453ms	remaining: 39.4ms
92:	learn: 15.7412103	total: 458ms	remaining: 34.5ms
93:	learn: 15.6542776	total: 463ms	remaining: 29.6ms
94:	learn: 15.5760334	total: 469ms	remaining: 24.7ms
95:	learn: 15.5434131	total: 473ms	remaining: 19.7ms
96:	learn: 15.4709561	total: 477ms	remaining: 14.8ms
97:	learn: 15.4449618	total: 482ms	remaining: 9.83ms
98:	learn: 15.3752761	total: 486ms	remaining: 4.91ms
99:	learn: 15.3106595	total: 490ms	remaining: 0us
0:	learn: 46.7142257	total: 4.74ms	remaining: 469ms
1:	learn: 45.7634153	total: 9.42ms	remaining: 462ms
2:	learn: 45.0054253	total: 13.7ms	remaining: 442ms
3:	learn: 44.2120432	total: 18ms	remaining: 433ms
4:	learn: 43.3960472	total: 22.6ms	remaining: 429ms
5:	learn: 42.8588120	total: 31ms	remaining: 486ms
6:	learn: 41.9533701	total: 38.2ms	remaining: 508ms
7:	learn: 41.2745030	total: 47.5ms	remaining: 546ms
8:	learn: 40.6797495	total: 53.8ms	remaining: 543ms
9:	learn: 39.9899571	total: 60.7ms	remaining: 546ms
10:	learn: 39.4682100	total: 65.8ms	remaining: 533ms
11:	learn: 39.0305595	total: 70.9ms	remaining: 520ms
12:	learn: 38.4200417	total: 76.2ms	remaining: 510ms
13:	learn: 37.8425194	total: 81.4ms	remaining: 500ms
14:	learn: 37.4203127	total: 86.5ms	remaining: 490ms
15:	learn: 36.9917688	total: 91.6ms	remaining: 481ms
16:	learn: 36.5544138	total: 97ms	remaining: 474ms
17:	learn: 36.0727019	total: 102ms	remaining: 467ms
18:	learn: 35.4835715	total: 108ms	remaining: 458ms
19:	learn: 34.9865654	total: 113ms	remaining: 450ms
20:	learn: 34.6063373	total: 118ms	remaining: 445ms
21:	learn: 34.0997289	total: 124ms	remaining: 441ms
22:	learn: 33.7313171	total: 129ms	remaining: 433ms
23:	learn: 33.3582000	total: 134ms	remaining: 425ms
24:	learn: 32.9432456	total: 139ms	remaining: 417ms
25:	learn: 32.5220888	total: 143ms	remaining: 408ms
26:	learn: 32.2172292	total: 159ms	remaining: 429ms
27:	learn: 31.8972904	total: 163ms	remaining: 420ms
28:	learn: 31.6405350	total: 168ms	remaining: 410ms
29:	learn: 31.4167702	total: 172ms	remaining: 401ms
30:	learn: 30.8541961	total: 174ms	remaining: 386ms
31:	learn: 30.5572111	total: 178ms	remaining: 377ms
32:	learn: 30.1700399	total: 182ms	remaining: 369ms
33:	learn: 29.8537271	total: 186ms	remaining: 360ms
34:	learn: 29.6192540	total: 190ms	remaining: 353ms
35:	learn: 29.3276362	total: 195ms	remaining: 346ms
36:	learn: 28.9985179	total: 199ms	remaining: 339ms
37:	learn: 28.7046880	total: 203ms	remaining: 332ms
38:	learn: 28.4412677	total: 208ms	remaining: 325ms
39:	learn: 28.1277292	total: 213ms	remaining: 319ms
40:	learn: 27.9000750	total: 217ms	remaining: 313ms
41:	learn: 27.5433162	total: 222ms	remaining: 306ms
42:	learn: 27.2493285	total: 226ms	remaining: 300ms
43:	learn: 26.9576632	total: 228ms	remaining: 290ms
44:	learn: 26.6177110	total: 233ms	remaining: 285ms
45:	learn: 26.2812456	total: 238ms	remaining: 279ms
46:	learn: 26.0803859	total: 242ms	remaining: 273ms
47:	learn: 25.9543581	total: 246ms	remaining: 267ms
48:	learn: 25.7951582	total: 251ms	remaining: 261ms
49:	learn: 25.6548184	total: 258ms	remaining: 258ms
50:	learn: 25.4010843	total: 266ms	remaining: 256ms
51:	learn: 24.9773937	total: 276ms	remaining: 255ms
52:	learn: 24.8026156	total: 283ms	remaining: 251ms
53:	learn: 24.5568053	total: 289ms	remaining: 246ms
54:	learn: 24.2281839	total: 295ms	remaining: 241ms
55:	learn: 23.9202795	total: 300ms	remaining: 236ms
56:	learn: 23.7625591	total: 306ms	remaining: 231ms
57:	learn: 23.5429721	total: 311ms	remaining: 225ms
58:	learn: 23.3175893	total: 316ms	remaining: 219ms
59:	learn: 23.2035130	total: 321ms	remaining: 214ms
60:	learn: 23.0232450	total: 326ms	remaining: 208ms
61:	learn: 22.8384958	total: 331ms	remaining: 203ms
62:	learn: 22.6499902	total: 336ms	remaining: 198ms
63:	learn: 22.4577426	total: 341ms	remaining: 192ms
64:	learn: 22.3333158	total: 347ms	remaining: 187ms
65:	learn: 22.2064131	total: 352ms	remaining: 181ms
66:	learn: 22.1434971	total: 357ms	remaining: 176ms
67:	learn: 21.9596519	total: 361ms	remaining: 170ms
68:	learn: 21.8475576	total: 366ms	remaining: 164ms
69:	learn: 21.6954745	total: 371ms	remaining: 159ms
70:	learn: 21.5635976	total: 376ms	remaining: 153ms
71:	learn: 21.4588506	total: 380ms	remaining: 148ms
72:	learn: 21.3527268	total: 384ms	remaining: 142ms
73:	learn: 21.2661288	total: 389ms	remaining: 137ms
74:	learn: 21.1817333	total: 393ms	remaining: 131ms
75:	learn: 21.0527553	total: 398ms	remaining: 126ms
76:	learn: 20.9229021	total: 402ms	remaining: 120ms
77:	learn: 20.7563946	total: 407ms	remaining: 115ms
78:	learn: 20.6569831	total: 411ms	remaining: 109ms
79:	learn: 20.4982663	total: 415ms	remaining: 104ms
80:	learn: 20.3185460	total: 420ms	remaining: 98.5ms
81:	learn: 20.2096241	total: 425ms	remaining: 93.2ms
82:	learn: 20.1274891	total: 429ms	remaining: 87.9ms
83:	learn: 20.0740139	total: 434ms	remaining: 82.7ms
84:	learn: 19.9630699	total: 439ms	remaining: 77.4ms
85:	learn: 19.8753899	total: 443ms	remaining: 72.2ms
86:	learn: 19.6563612	total: 448ms	remaining: 67ms
87:	learn: 19.4680232	total: 453ms	remaining: 61.8ms
88:	learn: 19.3503431	total: 461ms	remaining: 57ms
89:	learn: 19.2221379	total: 468ms	remaining: 52ms
90:	learn: 19.0732542	total: 478ms	remaining: 47.2ms
91:	learn: 18.9825190	total: 486ms	remaining: 42.3ms
92:	learn: 18.8839009	total: 491ms	remaining: 37ms
93:	learn: 18.8012219	total: 497ms	remaining: 31.7ms
94:	learn: 18.7172713	total: 501ms	remaining: 26.4ms
95:	learn: 18.6201170	total: 506ms	remaining: 21.1ms
96:	learn: 18.5318611	total: 511ms	remaining: 15.8ms
97:	learn: 18.3833356	total: 517ms	remaining: 10.5ms
98:	learn: 18.3289700	total: 522ms	remaining: 5.27ms
99:	learn: 18.2227333	total: 527ms	remaining: 0us
0:	learn: 46.3764524	total: 4.53ms	remaining: 449ms
1:	learn: 45.5561269	total: 8.48ms	remaining: 415ms
2:	learn: 44.8811245	total: 12.4ms	remaining: 402ms
3:	learn: 44.0788617	total: 16.6ms	remaining: 398ms
4:	learn: 43.3619790	total: 20.8ms	remaining: 395ms
5:	learn: 42.6912112	total: 25.3ms	remaining: 397ms
6:	learn: 42.2292118	total: 28.9ms	remaining: 384ms
7:	learn: 41.7725191	total: 33ms	remaining: 380ms
8:	learn: 41.1676614	total: 36.9ms	remaining: 374ms
9:	learn: 40.5771076	total: 41.3ms	remaining: 371ms
10:	learn: 39.8343757	total: 45.2ms	remaining: 366ms
11:	learn: 39.3761142	total: 49.2ms	remaining: 361ms
12:	learn: 38.5254692	total: 53.3ms	remaining: 357ms
13:	learn: 37.9629555	total: 58ms	remaining: 356ms
14:	learn: 37.4418438	total: 62.4ms	remaining: 353ms
15:	learn: 37.0507283	total: 66.7ms	remaining: 350ms
16:	learn: 36.6264217	total: 70.7ms	remaining: 345ms
17:	learn: 36.1114940	total: 75.4ms	remaining: 344ms
18:	learn: 35.7193862	total: 79.8ms	remaining: 340ms
19:	learn: 35.3301177	total: 84.3ms	remaining: 337ms
20:	learn: 35.0598280	total: 88.7ms	remaining: 334ms
21:	learn: 34.5469736	total: 95.1ms	remaining: 337ms
22:	learn: 34.2064215	total: 102ms	remaining: 343ms
23:	learn: 33.7280710	total: 110ms	remaining: 349ms
24:	learn: 33.3282940	total: 118ms	remaining: 354ms
25:	learn: 32.8478961	total: 125ms	remaining: 357ms
26:	learn: 32.5722164	total: 131ms	remaining: 354ms
27:	learn: 32.2457019	total: 136ms	remaining: 350ms
28:	learn: 31.9230495	total: 141ms	remaining: 346ms
29:	learn: 31.4311611	total: 147ms	remaining: 342ms
30:	learn: 30.9179052	total: 166ms	remaining: 369ms
31:	learn: 30.6201141	total: 171ms	remaining: 363ms
32:	learn: 30.3421106	total: 176ms	remaining: 357ms
33:	learn: 29.9885373	total: 181ms	remaining: 351ms
34:	learn: 29.7462780	total: 186ms	remaining: 345ms
35:	learn: 29.3607153	total: 191ms	remaining: 339ms
36:	learn: 29.1793078	total: 195ms	remaining: 332ms
37:	learn: 28.9276538	total: 199ms	remaining: 325ms
38:	learn: 28.6903934	total: 203ms	remaining: 318ms
39:	learn: 28.2095033	total: 207ms	remaining: 311ms
40:	learn: 27.7990608	total: 211ms	remaining: 304ms
41:	learn: 27.5406632	total: 215ms	remaining: 297ms
42:	learn: 27.2575376	total: 219ms	remaining: 291ms
43:	learn: 26.9741707	total: 223ms	remaining: 284ms
44:	learn: 26.6606899	total: 227ms	remaining: 278ms
45:	learn: 26.4015833	total: 231ms	remaining: 272ms
46:	learn: 26.1828993	total: 236ms	remaining: 266ms
47:	learn: 26.0233709	total: 238ms	remaining: 258ms
48:	learn: 25.9300399	total: 243ms	remaining: 252ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 252ms	remaining: 242ms
51:	learn: 25.1595644	total: 256ms	remaining: 236ms
52:	learn: 24.9955303	total: 261ms	remaining: 231ms
53:	learn: 24.7273966	total: 266ms	remaining: 226ms
54:	learn: 24.5747978	total: 270ms	remaining: 221ms
55:	learn: 24.3807977	total: 274ms	remaining: 216ms
56:	learn: 24.1689569	total: 279ms	remaining: 210ms
57:	learn: 23.9898221	total: 283ms	remaining: 205ms
58:	learn: 23.7566414	total: 288ms	remaining: 200ms
59:	learn: 23.6641165	total: 292ms	remaining: 195ms
60:	learn: 23.5658066	total: 300ms	remaining: 192ms
61:	learn: 23.4338851	total: 307ms	remaining: 188ms
62:	learn: 23.2408837	total: 316ms	remaining: 186ms
63:	learn: 23.0642038	total: 322ms	remaining: 181ms
64:	learn: 22.9032045	total: 329ms	remaining: 177ms
65:	learn: 22.7736138	total: 334ms	remaining: 172ms
66:	learn: 22.6836443	total: 339ms	remaining: 167ms
67:	learn: 22.5983654	total: 345ms	remaining: 162ms
68:	learn: 22.4419813	total: 350ms	remaining: 157ms
69:	learn: 22.2863339	total: 355ms	remaining: 152ms
70:	learn: 22.1792943	total: 360ms	remaining: 147ms
71:	learn: 22.1130574	total: 365ms	remaining: 142ms
72:	learn: 21.9858161	total: 371ms	remaining: 137ms
73:	learn: 21.8577784	total: 376ms	remaining: 132ms
74:	learn: 21.7845222	total: 381ms	remaining: 127ms
75:	learn: 21.6831390	total: 386ms	remaining: 122ms
76:	learn: 21.6292521	total: 391ms	remaining: 117ms
77:	learn: 21.5789330	total: 396ms	remaining: 112ms
78:	learn: 21.5420942	total: 400ms	remaining: 106ms
79:	learn: 21.4280939	total: 404ms	remaining: 101ms
80:	learn: 21.3641165	total: 408ms	remaining: 95.7ms
81:	learn: 21.2734814	total: 412ms	remaining: 90.4ms
82:	learn: 21.2220323	total: 416ms	remaining: 85.2ms
83:	learn: 21.0625792	total: 420ms	remaining: 80ms
84:	learn: 20.9488320	total: 424ms	remaining: 74.8ms
85:	learn: 20.8504255	total: 428ms	remaining: 69.7ms
86:	learn: 20.7848510	total: 432ms	remaining: 64.6ms
87:	learn: 20.7247442	total: 436ms	remaining: 59.4ms
88:	learn: 20.5698590	total: 440ms	remaining: 54.4ms
89:	learn: 20.4067620	total: 445ms	remaining: 49.4ms
90:	learn: 20.3062482	total: 449ms	remaining: 44.4ms
91:	learn: 20.2029696	total: 453ms	remaining: 39.4ms
92:	learn: 20.1384849	total: 458ms	remaining: 34.4ms
93:	learn: 20.0260709	total: 462ms	remaining: 29.5ms
94:	learn: 19.9122100	total: 467ms	remaining: 24.6ms
95:	learn: 19.8648487	total: 471ms	remaining: 19.6ms
96:	learn: 19.8207072	total: 476ms	remaining: 14.7ms
97:	learn: 19.7261189	total: 480ms	remaining: 9.8ms
98:	learn: 19.7042438	total: 485ms	remaining: 4.9ms
99:	learn: 19.6546645	total: 489ms	remaining: 0us
0:	learn: 47.0239288	total: 5.25ms	remaining: 520ms
1:	learn: 46.2253829	total: 9.71ms	remaining: 476ms
2:	learn: 45.5580301	total: 15ms	remaining: 485ms
3:	learn: 44.7273237	total: 20.8ms	remaining: 499ms
4:	learn: 43.8867421	total: 25.3ms	remaining: 480ms
5:	learn: 43.3615911	total: 29.1ms	remaining: 455ms
6:	learn: 42.8548390	total: 33.6ms	remaining: 446ms
7:	learn: 42.1606758	total: 37.4ms	remaining: 430ms
8:	learn: 41.6625870	total: 41.4ms	remaining: 418ms
9:	learn: 40.9497092	total: 46ms	remaining: 414ms
10:	learn: 40.1886318	total: 50.5ms	remaining: 408ms
11:	learn: 39.7456423	total: 54.8ms	remaining: 402ms
12:	learn: 39.1171373	total: 58.8ms	remaining: 393ms
13:	learn: 38.5451069	total: 62.5ms	remaining: 384ms
14:	learn: 38.0155834	total: 66.3ms	remaining: 376ms
15:	learn: 37.5631354	total: 70.1ms	remaining: 368ms
16:	learn: 37.1030023	total: 74.1ms	remaining: 362ms
17:	learn: 36.4563029	total: 78ms	remaining: 355ms
18:	learn: 36.0160976	total: 82ms	remaining: 350ms
19:	learn: 35.5079827	total: 86.3ms	remaining: 345ms
20:	learn: 35.2111885	total: 90.6ms	remaining: 341ms
21:	learn: 34.9397465	total: 94.6ms	remaining: 336ms
22:	learn: 34.5270048	total: 99ms	remaining: 331ms
23:	learn: 34.0169260	total: 103ms	remaining: 327ms
24:	learn: 33.7454892	total: 108ms	remaining: 324ms
25:	learn: 33.2648157	total: 112ms	remaining: 320ms
26:	learn: 32.8899427	total: 117ms	remaining: 316ms
27:	learn: 32.6185050	total: 121ms	remaining: 312ms
28:	learn: 32.3528531	total: 126ms	remaining: 309ms
29:	learn: 32.0859923	total: 130ms	remaining: 304ms
30:	learn: 31.6511144	total: 135ms	remaining: 299ms
31:	learn: 31.2571765	total: 139ms	remaining: 296ms
32:	learn: 30.9770049	total: 147ms	remaining: 299ms
33:	learn: 30.6084872	total: 154ms	remaining: 299ms
34:	learn: 30.3448632	total: 164ms	remaining: 304ms
35:	learn: 30.0360942	total: 170ms	remaining: 302ms
36:	learn: 29.6648968	total: 176ms	remaining: 299ms
37:	learn: 29.3165114	total: 181ms	remaining: 295ms
38:	learn: 29.0829198	total: 186ms	remaining: 291ms
39:	learn: 28.7752064	total: 191ms	remaining: 287ms
40:	learn: 28.3622191	total: 197ms	remaining: 283ms
41:	learn: 28.1346631	total: 202ms	remaining: 279ms
42:	learn: 27.9585719	total: 207ms	remaining: 275ms
43:	learn: 27.6565566	total: 212ms	remaining: 270ms
44:	learn: 27.3616172	total: 218ms	remaining: 266ms
45:	learn: 27.0658637	total: 223ms	remaining: 262ms
46:	learn: 26.8660382	total: 228ms	remaining: 258ms
47:	learn: 26.6536078	total: 233ms	remaining: 252ms
48:	learn: 26.3524440	total: 238ms	remaining: 248ms
49:	learn: 26.1595277	total: 244ms	remaining: 244ms
50:	learn: 25.9273523	total: 248ms	remaining: 238ms
51:	learn: 25.7195580	total: 252ms	remaining: 233ms
52:	learn: 25.5730225	total: 256ms	remaining: 227ms
53:	learn: 25.3455276	total: 260ms	remaining: 222ms
54:	learn: 25.2289675	total: 264ms	remaining: 216ms
55:	learn: 25.0133024	total: 268ms	remaining: 211ms
56:	learn: 24.8406714	total: 272ms	remaining: 205ms
57:	learn: 24.6367857	total: 276ms	remaining: 200ms
58:	learn: 24.5338177	total: 280ms	remaining: 194ms
59:	learn: 24.3799964	total: 284ms	remaining: 189ms
60:	learn: 24.1447492	total: 287ms	remaining: 184ms
61:	learn: 23.9880495	total: 292ms	remaining: 179ms
62:	learn: 23.7140630	total: 296ms	remaining: 174ms
63:	learn: 23.5003791	total: 300ms	remaining: 169ms
64:	learn: 23.3207645	total: 304ms	remaining: 164ms
65:	learn: 23.1958356	total: 310ms	remaining: 160ms
66:	learn: 23.0471302	total: 314ms	remaining: 155ms
67:	learn: 22.8977183	total: 319ms	remaining: 150ms
68:	learn: 22.7187400	total: 323ms	remaining: 145ms
69:	learn: 22.6523405	total: 327ms	remaining: 140ms
70:	learn: 22.4767453	total: 332ms	remaining: 136ms
71:	learn: 22.3243677	total: 336ms	remaining: 131ms
72:	learn: 22.2133096	total: 343ms	remaining: 127ms
73:	learn: 22.1151713	total: 351ms	remaining: 123ms
74:	learn: 22.0296666	total: 359ms	remaining: 120ms
75:	learn: 21.9195980	total: 366ms	remaining: 116ms
76:	learn: 21.8401730	total: 373ms	remaining: 111ms
77:	learn: 21.8079797	total: 378ms	remaining: 107ms
78:	learn: 21.7274109	total: 383ms	remaining: 102ms
79:	learn: 21.6663032	total: 388ms	remaining: 97.1ms
80:	learn: 21.5633117	total: 393ms	remaining: 92.3ms
81:	learn: 21.4542467	total: 399ms	remaining: 87.5ms
82:	learn: 21.3177957	total: 404ms	remaining: 82.8ms
83:	learn: 21.1289167	total: 409ms	remaining: 78ms
84:	learn: 21.0297368	total: 414ms	remaining: 73.1ms
85:	learn: 20.9089564	total: 420ms	remaining: 68.3ms
86:	learn: 20.7653988	total: 425ms	remaining: 63.4ms
87:	learn: 20.6521894	total: 429ms	remaining: 58.5ms
88:	learn: 20.5193021	total: 434ms	remaining: 53.7ms
89:	learn: 20.4361620	total: 439ms	remaining: 48.8ms
90:	learn: 20.3546710	total: 444ms	remaining: 43.9ms
91:	learn: 20.2513296	total: 448ms	remaining: 38.9ms
92:	learn: 20.1605550	total: 452ms	remaining: 34ms
93:	learn: 20.0515942	total: 455ms	remaining: 29.1ms
94:	learn: 19.9800764	total: 460ms	remaining: 24.2ms
95:	learn: 19.8996532	total: 464ms	remaining: 19.3ms
96:	learn: 19.8450910	total: 468ms	remaining: 14.5ms
97:	learn: 19.7887346	total: 472ms	remaining: 9.62ms
98:	learn: 19.7230872	total: 476ms	remaining: 4.81ms
99:	learn: 19.6328825	total: 481ms	remaining: 0us
0:	learn: 27.5585353	total: 9.51ms	remaining: 942ms
1:	learn: 27.1656995	total: 18.1ms	remaining: 888ms
2:	learn: 26.8590175	total: 25ms	remaining: 810ms
3:	learn: 26.5818406	total: 32.1ms	remaining: 771ms
4:	learn: 26.1148663	total: 37.6ms	remaining: 714ms
5:	learn: 25.7690484	total: 42.7ms	remaining: 668ms
6:	learn: 25.3489206	total: 48.1ms	remaining: 639ms
7:	learn: 24.9542406	total: 53.5ms	remaining: 615ms
8:	learn: 24.6777517	total: 59.1ms	remaining: 597ms
9:	learn: 24.3242344	total: 64.3ms	remaining: 579ms
10:	learn: 24.0383073	total: 69.4ms	remaining: 562ms
11:	learn: 23.7383420	total: 74.5ms	remaining: 546ms
12:	learn: 23.3461670	total: 79.8ms	remaining: 534ms
13:	learn: 23.0928636	total: 84.8ms	remaining: 521ms
14:	learn: 22.8770414	total: 90.1ms	remaining: 510ms
15:	learn: 22.6323214	total: 95.5ms	remaining: 501ms
16:	learn: 22.3597072	total: 101ms	remaining: 494ms
17:	learn: 22.1079813	total: 106ms	remaining: 481ms
18:	learn: 21.8421199	total: 111ms	remaining: 471ms
19:	learn: 21.6576508	total: 115ms	remaining: 459ms
20:	learn: 21.4301268	total: 119ms	remaining: 446ms
21:	learn: 21.2287388	total: 123ms	remaining: 434ms
22:	learn: 21.0553872	total: 127ms	remaining: 425ms
23:	learn: 20.8977091	total: 131ms	remaining: 416ms
24:	learn: 20.6619051	total: 135ms	remaining: 406ms
25:	learn: 20.5040955	total: 139ms	remaining: 396ms
26:	learn: 20.3181195	total: 143ms	remaining: 388ms
27:	learn: 20.0869436	total: 148ms	remaining: 379ms
28:	learn: 19.9375985	total: 151ms	remaining: 371ms
29:	learn: 19.8247516	total: 155ms	remaining: 363ms
30:	learn: 19.6261697	total: 160ms	remaining: 355ms
31:	learn: 19.4547236	total: 164ms	remaining: 347ms
32:	learn: 19.3157092	total: 168ms	remaining: 340ms
33:	learn: 19.1561419	total: 171ms	remaining: 333ms
34:	learn: 19.0453620	total: 175ms	remaining: 325ms
35:	learn: 18.8738574	total: 180ms	remaining: 319ms
36:	learn: 18.7072907	total: 183ms	remaining: 312ms
37:	learn: 18.5877943	total: 187ms	remaining: 306ms
38:	learn: 18.4436380	total: 192ms	remaining: 300ms
39:	learn: 18.3463356	total: 196ms	remaining: 294ms
40:	learn: 18.2008059	total: 201ms	remaining: 289ms
41:	learn: 18.0582079	total: 205ms	remaining: 283ms
42:	learn: 17.8891982	total: 209ms	remaining: 277ms
43:	learn: 17.7332246	total: 213ms	remaining: 271ms
44:	learn: 17.6206421	total: 217ms	remaining: 266ms
45:	learn: 17.4982800	total: 221ms	remaining: 259ms
46:	learn: 17.3970150	total: 225ms	remaining: 253ms
47:	learn: 17.3058203	total: 229ms	remaining: 248ms
48:	learn: 17.1789256	total: 234ms	remaining: 243ms
49:	learn: 17.0916229	total: 238ms	remaining: 238ms
50:	learn: 16.9859820	total: 243ms	remaining: 233ms
51:	learn: 16.8995582	total: 248ms	remaining: 229ms
52:	learn: 16.8137014	total: 252ms	remaining: 224ms
53:	learn: 16.7021451	total: 257ms	remaining: 219ms
54:	learn: 16.5895582	total: 261ms	remaining: 214ms
55:	learn: 16.5015639	total: 267ms	remaining: 210ms
56:	learn: 16.4356637	total: 275ms	remaining: 207ms
57:	learn: 16.3514525	total: 282ms	remaining: 204ms
58:	learn: 16.2401369	total: 291ms	remaining: 202ms
59:	learn: 16.1293223	total: 298ms	remaining: 199ms
60:	learn: 16.0271167	total: 304ms	remaining: 194ms
61:	learn: 15.9126257	total: 310ms	remaining: 190ms
62:	learn: 15.8391096	total: 315ms	remaining: 185ms
63:	learn: 15.7441773	total: 320ms	remaining: 180ms
64:	learn: 15.6885195	total: 326ms	remaining: 175ms
65:	learn: 15.6052039	total: 331ms	remaining: 171ms
66:	learn: 15.5074202	total: 337ms	remaining: 166ms
67:	learn: 15.4054338	total: 342ms	remaining: 161ms
68:	learn: 15.2885714	total: 347ms	remaining: 156ms
69:	learn: 15.2157472	total: 353ms	remaining: 151ms
70:	learn: 15.1031554	total: 358ms	remaining: 146ms
71:	learn: 15.0237470	total: 363ms	remaining: 141ms
72:	learn: 14.9756825	total: 369ms	remaining: 136ms
73:	learn: 14.8840596	total: 374ms	remaining: 131ms
74:	learn: 14.8077061	total: 378ms	remaining: 126ms
75:	learn: 14.7444437	total: 383ms	remaining: 121ms
76:	learn: 14.6751720	total: 388ms	remaining: 116ms
77:	learn: 14.5830333	total: 392ms	remaining: 111ms
78:	learn: 14.5241206	total: 396ms	remaining: 105ms
79:	learn: 14.4892731	total: 400ms	remaining: 100ms
80:	learn: 14.4256605	total: 405ms	remaining: 94.9ms
81:	learn: 14.3666860	total: 410ms	remaining: 89.9ms
82:	learn: 14.2938372	total: 415ms	remaining: 84.9ms
83:	learn: 14.2161532	total: 420ms	remaining: 80ms
84:	learn: 14.1582910	total: 425ms	remaining: 75ms
85:	learn: 14.1029153	total: 429ms	remaining: 69.9ms
86:	learn: 14.0475835	total: 435ms	remaining: 65ms
87:	learn: 13.9892661	total: 440ms	remaining: 60ms
88:	learn: 13.9481628	total: 445ms	remaining: 55ms
89:	learn: 13.8483991	total: 450ms	remaining: 50ms
90:	learn: 13.7775614	total: 454ms	remaining: 44.9ms
91:	learn: 13.7304585	total: 459ms	remaining: 40ms
92:	learn: 13.6783381	total: 464ms	remaining: 34.9ms
93:	learn: 13.6356964	total: 471ms	remaining: 30ms
94:	learn: 13.5924371	total: 477ms	remaining: 25.1ms
95:	learn: 13.5400746	total: 484ms	remaining: 20.2ms
96:	learn: 13.4897333	total: 492ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 499ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 504ms	remaining: 5.09ms
99:	learn: 13.3082371	total: 509ms	remaining: 0us
0:	learn: 43.0395283	total: 5.28ms	remaining: 523ms
1:	learn: 42.1130223	total: 9.42ms	remaining: 462ms
2:	learn: 41.1753409	total: 14ms	remaining: 451ms
3:	learn: 40.3637444	total: 18.1ms	remaining: 434ms
4:	learn: 39.6508088	total: 22.1ms	remaining: 420ms
5:	learn: 38.7217934	total: 26.1ms	remaining: 408ms
6:	learn: 37.8538055	total: 30ms	remaining: 398ms
7:	learn: 36.9793574	total: 33.7ms	remaining: 388ms
8:	learn: 36.3076984	total: 37.9ms	remaining: 384ms
9:	learn: 35.6673160	total: 42ms	remaining: 378ms
10:	learn: 34.8889800	total: 45.9ms	remaining: 371ms
11:	learn: 34.1675517	total: 49.7ms	remaining: 365ms
12:	learn: 33.6779564	total: 53.8ms	remaining: 360ms
13:	learn: 33.0710039	total: 58ms	remaining: 356ms
14:	learn: 32.4966674	total: 62ms	remaining: 351ms
15:	learn: 31.9492856	total: 66.3ms	remaining: 348ms
16:	learn: 31.5108129	total: 70.3ms	remaining: 343ms
17:	learn: 30.9804023	total: 75.2ms	remaining: 342ms
18:	learn: 30.4169089	total: 79.9ms	remaining: 340ms
19:	learn: 29.8930375	total: 84.3ms	remaining: 337ms
20:	learn: 29.3974421	total: 88.5ms	remaining: 333ms
21:	learn: 28.8792307	total: 93ms	remaining: 330ms
22:	learn: 28.3894474	total: 97.1ms	remaining: 325ms
23:	learn: 27.9921276	total: 102ms	remaining: 322ms
24:	learn: 27.6158887	total: 107ms	remaining: 320ms
25:	learn: 27.2866950	total: 119ms	remaining: 340ms
26:	learn: 26.8770708	total: 128ms	remaining: 345ms
27:	learn: 26.6233005	total: 135ms	remaining: 348ms
28:	learn: 26.2921934	total: 144ms	remaining: 353ms
29:	learn: 25.9156920	total: 150ms	remaining: 349ms
30:	learn: 25.5311106	total: 152ms	remaining: 338ms
31:	learn: 25.2178997	total: 157ms	remaining: 334ms
32:	learn: 24.8572196	total: 163ms	remaining: 330ms
33:	learn: 24.5849710	total: 168ms	remaining: 326ms
34:	learn: 24.2209190	total: 182ms	remaining: 339ms
35:	learn: 23.8708250	total: 188ms	remaining: 334ms
36:	learn: 23.5325279	total: 196ms	remaining: 333ms
37:	learn: 23.2116148	total: 201ms	remaining: 328ms
38:	learn: 22.9696787	total: 207ms	remaining: 323ms
39:	learn: 22.7936783	total: 213ms	remaining: 319ms
40:	learn: 22.6228847	total: 218ms	remaining: 313ms
41:	learn: 22.3691527	total: 223ms	remaining: 308ms
42:	learn: 22.1002173	total: 227ms	remaining: 301ms
43:	learn: 21.9157268	total: 232ms	remaining: 295ms
44:	learn: 21.7229102	total: 236ms	remaining: 288ms
45:	learn: 21.4642005	total: 240ms	remaining: 282ms
46:	learn: 21.3029442	total: 245ms	remaining: 276ms
47:	learn: 21.1469792	total: 249ms	remaining: 270ms
48:	learn: 20.9458235	total: 254ms	remaining: 264ms
49:	learn: 20.7335242	total: 258ms	remaining: 258ms
50:	learn: 20.5440269	total: 263ms	remaining: 253ms
51:	learn: 20.3661449	total: 268ms	remaining: 247ms
52:	learn: 20.2158134	total: 272ms	remaining: 242ms
53:	learn: 19.9934873	total: 277ms	remaining: 236ms
54:	learn: 19.7879739	total: 282ms	remaining: 231ms
55:	learn: 19.6630460	total: 287ms	remaining: 225ms
56:	learn: 19.5152729	total: 292ms	remaining: 220ms
57:	learn: 19.3581128	total: 297ms	remaining: 215ms
58:	learn: 19.2209303	total: 302ms	remaining: 210ms
59:	learn: 19.0965248	total: 307ms	remaining: 205ms
60:	learn: 19.0035954	total: 314ms	remaining: 201ms
61:	learn: 18.8554149	total: 322ms	remaining: 197ms
62:	learn: 18.7095427	total: 331ms	remaining: 195ms
63:	learn: 18.5751494	total: 349ms	remaining: 196ms
64:	learn: 18.4678251	total: 355ms	remaining: 191ms
65:	learn: 18.3500325	total: 360ms	remaining: 186ms
66:	learn: 18.2088983	total: 365ms	remaining: 180ms
67:	learn: 18.0737705	total: 370ms	remaining: 174ms
68:	learn: 17.9325058	total: 375ms	remaining: 169ms
69:	learn: 17.8003911	total: 380ms	remaining: 163ms
70:	learn: 17.7385366	total: 386ms	remaining: 157ms
71:	learn: 17.6106998	total: 391ms	remaining: 152ms
72:	learn: 17.4816270	total: 396ms	remaining: 146ms
73:	learn: 17.4025554	total: 401ms	remaining: 141ms
74:	learn: 17.2902108	total: 406ms	remaining: 135ms
75:	learn: 17.2158048	total: 411ms	remaining: 130ms
76:	learn: 17.1261053	total: 415ms	remaining: 124ms
77:	learn: 17.0308917	total: 419ms	remaining: 118ms
78:	learn: 16.9546705	total: 423ms	remaining: 113ms
79:	learn: 16.8319165	total: 427ms	remaining: 107ms
80:	learn: 16.7687017	total: 431ms	remaining: 101ms
81:	learn: 16.6972326	total: 435ms	remaining: 95.6ms
82:	learn: 16.6124580	total: 440ms	remaining: 90.1ms
83:	learn: 16.4999052	total: 444ms	remaining: 84.5ms
84:	learn: 16.4302484	total: 448ms	remaining: 79ms
85:	learn: 16.3201363	total: 452ms	remaining: 73.5ms
86:	learn: 16.2534314	total: 456ms	remaining: 68.1ms
87:	learn: 16.1720485	total: 460ms	remaining: 62.7ms
88:	learn: 16.0625751	total: 464ms	remaining: 57.3ms
89:	learn: 15.9135088	total: 468ms	remaining: 52ms
90:	learn: 15.8658863	total: 473ms	remaining: 46.8ms
91:	learn: 15.8066805	total: 478ms	remaining: 41.5ms
92:	learn: 15.7412103	total: 483ms	remaining: 36.3ms
93:	learn: 15.6542776	total: 487ms	remaining: 31.1ms
94:	learn: 15.5760334	total: 492ms	remaining: 25.9ms
95:	learn: 15.5434131	total: 497ms	remaining: 20.7ms
96:	learn: 15.4709561	total: 502ms	remaining: 15.5ms
97:	learn: 15.4449618	total: 509ms	remaining: 10.4ms
98:	learn: 15.3752761	total: 516ms	remaining: 5.21ms
99:	learn: 15.3106595	total: 525ms	remaining: 0us
0:	learn: 46.7142257	total: 5.5ms	remaining: 545ms
1:	learn: 45.7634153	total: 11.2ms	remaining: 546ms
2:	learn: 45.0054253	total: 16ms	remaining: 517ms
3:	learn: 44.2120432	total: 20.8ms	remaining: 500ms
4:	learn: 43.3960472	total: 26.8ms	remaining: 509ms
5:	learn: 42.8588120	total: 32.4ms	remaining: 508ms
6:	learn: 41.9533701	total: 36.9ms	remaining: 491ms
7:	learn: 41.2745030	total: 40.8ms	remaining: 469ms
8:	learn: 40.6797495	total: 45ms	remaining: 455ms
9:	learn: 39.9899571	total: 49.2ms	remaining: 443ms
10:	learn: 39.4682100	total: 53.2ms	remaining: 431ms
11:	learn: 39.0305595	total: 57.4ms	remaining: 421ms
12:	learn: 38.4200417	total: 61.5ms	remaining: 412ms
13:	learn: 37.8425194	total: 65.8ms	remaining: 404ms
14:	learn: 37.4203127	total: 69.8ms	remaining: 396ms
15:	learn: 36.9917688	total: 73.6ms	remaining: 386ms
16:	learn: 36.5544138	total: 77.9ms	remaining: 380ms
17:	learn: 36.0727019	total: 82ms	remaining: 374ms
18:	learn: 35.4835715	total: 86ms	remaining: 367ms
19:	learn: 34.9865654	total: 89.9ms	remaining: 360ms
20:	learn: 34.6063373	total: 94ms	remaining: 354ms
21:	learn: 34.0997289	total: 98.4ms	remaining: 349ms
22:	learn: 33.7313171	total: 103ms	remaining: 345ms
23:	learn: 33.3582000	total: 107ms	remaining: 340ms
24:	learn: 32.9432456	total: 112ms	remaining: 336ms
25:	learn: 32.5220888	total: 117ms	remaining: 332ms
26:	learn: 32.2172292	total: 121ms	remaining: 328ms
27:	learn: 31.8972904	total: 125ms	remaining: 322ms
28:	learn: 31.6405350	total: 143ms	remaining: 350ms
29:	learn: 31.4167702	total: 154ms	remaining: 358ms
30:	learn: 30.8541961	total: 156ms	remaining: 347ms
31:	learn: 30.5572111	total: 163ms	remaining: 347ms
32:	learn: 30.1700399	total: 169ms	remaining: 342ms
33:	learn: 29.8537271	total: 174ms	remaining: 338ms
34:	learn: 29.6192540	total: 180ms	remaining: 333ms
35:	learn: 29.3276362	total: 185ms	remaining: 329ms
36:	learn: 28.9985179	total: 191ms	remaining: 325ms
37:	learn: 28.7046880	total: 196ms	remaining: 320ms
38:	learn: 28.4412677	total: 201ms	remaining: 315ms
39:	learn: 28.1277292	total: 207ms	remaining: 310ms
40:	learn: 27.9000750	total: 212ms	remaining: 305ms
41:	learn: 27.5433162	total: 217ms	remaining: 300ms
42:	learn: 27.2493285	total: 222ms	remaining: 294ms
43:	learn: 26.9576632	total: 224ms	remaining: 285ms
44:	learn: 26.6177110	total: 229ms	remaining: 280ms
45:	learn: 26.2812456	total: 234ms	remaining: 274ms
46:	learn: 26.0803859	total: 238ms	remaining: 268ms
47:	learn: 25.9543581	total: 243ms	remaining: 263ms
48:	learn: 25.7951582	total: 247ms	remaining: 257ms
49:	learn: 25.6548184	total: 252ms	remaining: 252ms
50:	learn: 25.4010843	total: 257ms	remaining: 246ms
51:	learn: 24.9773937	total: 261ms	remaining: 241ms
52:	learn: 24.8026156	total: 266ms	remaining: 236ms
53:	learn: 24.5568053	total: 270ms	remaining: 230ms
54:	learn: 24.2281839	total: 275ms	remaining: 225ms
55:	learn: 23.9202795	total: 279ms	remaining: 219ms
56:	learn: 23.7625591	total: 284ms	remaining: 214ms
57:	learn: 23.5429721	total: 288ms	remaining: 209ms
58:	learn: 23.3175893	total: 293ms	remaining: 203ms
59:	learn: 23.2035130	total: 297ms	remaining: 198ms
60:	learn: 23.0232450	total: 301ms	remaining: 193ms
61:	learn: 22.8384958	total: 306ms	remaining: 188ms
62:	learn: 22.6499902	total: 311ms	remaining: 182ms
63:	learn: 22.4577426	total: 315ms	remaining: 177ms
64:	learn: 22.3333158	total: 320ms	remaining: 172ms
65:	learn: 22.2064131	total: 324ms	remaining: 167ms
66:	learn: 22.1434971	total: 329ms	remaining: 162ms
67:	learn: 21.9596519	total: 335ms	remaining: 158ms
68:	learn: 21.8475576	total: 348ms	remaining: 156ms
69:	learn: 21.6954745	total: 358ms	remaining: 153ms
70:	learn: 21.5635976	total: 365ms	remaining: 149ms
71:	learn: 21.4588506	total: 371ms	remaining: 144ms
72:	learn: 21.3527268	total: 376ms	remaining: 139ms
73:	learn: 21.2661288	total: 382ms	remaining: 134ms
74:	learn: 21.1817333	total: 387ms	remaining: 129ms
75:	learn: 21.0527553	total: 392ms	remaining: 124ms
76:	learn: 20.9229021	total: 397ms	remaining: 119ms
77:	learn: 20.7563946	total: 403ms	remaining: 114ms
78:	learn: 20.6569831	total: 408ms	remaining: 108ms
79:	learn: 20.4982663	total: 414ms	remaining: 103ms
80:	learn: 20.3185460	total: 418ms	remaining: 98.1ms
81:	learn: 20.2096241	total: 423ms	remaining: 92.9ms
82:	learn: 20.1274891	total: 429ms	remaining: 87.8ms
83:	learn: 20.0740139	total: 434ms	remaining: 82.6ms
84:	learn: 19.9630699	total: 438ms	remaining: 77.3ms
85:	learn: 19.8753899	total: 443ms	remaining: 72ms
86:	learn: 19.6563612	total: 447ms	remaining: 66.8ms
87:	learn: 19.4680232	total: 451ms	remaining: 61.5ms
88:	learn: 19.3503431	total: 456ms	remaining: 56.3ms
89:	learn: 19.2221379	total: 460ms	remaining: 51.1ms
90:	learn: 19.0732542	total: 464ms	remaining: 45.9ms
91:	learn: 18.9825190	total: 469ms	remaining: 40.8ms
92:	learn: 18.8839009	total: 473ms	remaining: 35.6ms
93:	learn: 18.8012219	total: 477ms	remaining: 30.5ms
94:	learn: 18.7172713	total: 482ms	remaining: 25.3ms
95:	learn: 18.6201170	total: 485ms	remaining: 20.2ms
96:	learn: 18.5318611	total: 489ms	remaining: 15.1ms
97:	learn: 18.3833356	total: 493ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 498ms	remaining: 5.03ms
99:	learn: 18.2227333	total: 503ms	remaining: 0us
0:	learn: 46.3764524	total: 7.95ms	remaining: 787ms
1:	learn: 45.5561269	total: 16.4ms	remaining: 803ms
2:	learn: 44.8811245	total: 22.1ms	remaining: 716ms
3:	learn: 44.0788617	total: 27.5ms	remaining: 661ms
4:	learn: 43.3619790	total: 32.9ms	remaining: 626ms
5:	learn: 42.6912112	total: 38.4ms	remaining: 602ms
6:	learn: 42.2292118	total: 43.8ms	remaining: 582ms
7:	learn: 41.7725191	total: 49ms	remaining: 563ms
8:	learn: 41.1676614	total: 54.1ms	remaining: 547ms
9:	learn: 40.5771076	total: 59.2ms	remaining: 533ms
10:	learn: 39.8343757	total: 64.7ms	remaining: 524ms
11:	learn: 39.3761142	total: 69.8ms	remaining: 512ms
12:	learn: 38.5254692	total: 74.5ms	remaining: 499ms
13:	learn: 37.9629555	total: 79.9ms	remaining: 491ms
14:	learn: 37.4418438	total: 85.1ms	remaining: 482ms
15:	learn: 37.0507283	total: 89.6ms	remaining: 470ms
16:	learn: 36.6264217	total: 94ms	remaining: 459ms
17:	learn: 36.1114940	total: 97.8ms	remaining: 446ms
18:	learn: 35.7193862	total: 102ms	remaining: 434ms
19:	learn: 35.3301177	total: 106ms	remaining: 422ms
20:	learn: 35.0598280	total: 110ms	remaining: 412ms
21:	learn: 34.5469736	total: 114ms	remaining: 403ms
22:	learn: 34.2064215	total: 117ms	remaining: 393ms
23:	learn: 33.7280710	total: 121ms	remaining: 384ms
24:	learn: 33.3282940	total: 126ms	remaining: 377ms
25:	learn: 32.8478961	total: 130ms	remaining: 370ms
26:	learn: 32.5722164	total: 134ms	remaining: 362ms
27:	learn: 32.2457019	total: 138ms	remaining: 355ms
28:	learn: 31.9230495	total: 142ms	remaining: 349ms
29:	learn: 31.4311611	total: 147ms	remaining: 343ms
30:	learn: 30.9179052	total: 152ms	remaining: 337ms
31:	learn: 30.6201141	total: 156ms	remaining: 332ms
32:	learn: 30.3421106	total: 161ms	remaining: 327ms
33:	learn: 29.9885373	total: 166ms	remaining: 322ms
34:	learn: 29.7462780	total: 170ms	remaining: 316ms
35:	learn: 29.3607153	total: 175ms	remaining: 311ms
36:	learn: 29.1793078	total: 179ms	remaining: 305ms
37:	learn: 28.9276538	total: 184ms	remaining: 300ms
38:	learn: 28.6903934	total: 189ms	remaining: 296ms
39:	learn: 28.2095033	total: 198ms	remaining: 297ms
40:	learn: 27.7990608	total: 205ms	remaining: 295ms
41:	learn: 27.5406632	total: 213ms	remaining: 294ms
42:	learn: 27.2575376	total: 221ms	remaining: 293ms
43:	learn: 26.9741707	total: 226ms	remaining: 288ms
44:	learn: 26.6606899	total: 232ms	remaining: 283ms
45:	learn: 26.4015833	total: 237ms	remaining: 278ms
46:	learn: 26.1828993	total: 242ms	remaining: 273ms
47:	learn: 26.0233709	total: 245ms	remaining: 265ms
48:	learn: 25.9300399	total: 250ms	remaining: 261ms
49:	learn: 25.5861489	total: 256ms	remaining: 256ms
50:	learn: 25.4322012	total: 261ms	remaining: 251ms
51:	learn: 25.1595644	total: 267ms	remaining: 246ms
52:	learn: 24.9955303	total: 272ms	remaining: 241ms
53:	learn: 24.7273966	total: 277ms	remaining: 236ms
54:	learn: 24.5747978	total: 282ms	remaining: 231ms
55:	learn: 24.3807977	total: 288ms	remaining: 227ms
56:	learn: 24.1689569	total: 294ms	remaining: 221ms
57:	learn: 23.9898221	total: 298ms	remaining: 216ms
58:	learn: 23.7566414	total: 303ms	remaining: 210ms
59:	learn: 23.6641165	total: 307ms	remaining: 205ms
60:	learn: 23.5658066	total: 311ms	remaining: 199ms
61:	learn: 23.4338851	total: 316ms	remaining: 193ms
62:	learn: 23.2408837	total: 320ms	remaining: 188ms
63:	learn: 23.0642038	total: 324ms	remaining: 182ms
64:	learn: 22.9032045	total: 328ms	remaining: 177ms
65:	learn: 22.7736138	total: 333ms	remaining: 172ms
66:	learn: 22.6836443	total: 338ms	remaining: 167ms
67:	learn: 22.5983654	total: 342ms	remaining: 161ms
68:	learn: 22.4419813	total: 347ms	remaining: 156ms
69:	learn: 22.2863339	total: 352ms	remaining: 151ms
70:	learn: 22.1792943	total: 357ms	remaining: 146ms
71:	learn: 22.1130574	total: 361ms	remaining: 141ms
72:	learn: 21.9858161	total: 366ms	remaining: 136ms
73:	learn: 21.8577784	total: 371ms	remaining: 130ms
74:	learn: 21.7845222	total: 375ms	remaining: 125ms
75:	learn: 21.6831390	total: 379ms	remaining: 120ms
76:	learn: 21.6292521	total: 384ms	remaining: 115ms
77:	learn: 21.5789330	total: 392ms	remaining: 110ms
78:	learn: 21.5420942	total: 398ms	remaining: 106ms
79:	learn: 21.4280939	total: 408ms	remaining: 102ms
80:	learn: 21.3641165	total: 413ms	remaining: 96.9ms
81:	learn: 21.2734814	total: 419ms	remaining: 92.1ms
82:	learn: 21.2220323	total: 425ms	remaining: 87ms
83:	learn: 21.0625792	total: 430ms	remaining: 81.9ms
84:	learn: 20.9488320	total: 435ms	remaining: 76.8ms
85:	learn: 20.8504255	total: 440ms	remaining: 71.7ms
86:	learn: 20.7848510	total: 460ms	remaining: 68.7ms
87:	learn: 20.7247442	total: 465ms	remaining: 63.4ms
88:	learn: 20.5698590	total: 469ms	remaining: 57.9ms
89:	learn: 20.4067620	total: 474ms	remaining: 52.7ms
90:	learn: 20.3062482	total: 479ms	remaining: 47.4ms
91:	learn: 20.2029696	total: 484ms	remaining: 42.1ms
92:	learn: 20.1384849	total: 488ms	remaining: 36.7ms
93:	learn: 20.0260709	total: 492ms	remaining: 31.4ms
94:	learn: 19.9122100	total: 496ms	remaining: 26.1ms
95:	learn: 19.8648487	total: 500ms	remaining: 20.8ms
96:	learn: 19.8207072	total: 505ms	remaining: 15.6ms
97:	learn: 19.7261189	total: 509ms	remaining: 10.4ms
98:	learn: 19.7042438	total: 513ms	remaining: 5.19ms
99:	learn: 19.6546645	total: 518ms	remaining: 0us
0:	learn: 47.0239288	total: 5.15ms	remaining: 510ms
1:	learn: 46.2253829	total: 9.88ms	remaining: 484ms
2:	learn: 45.5580301	total: 14.8ms	remaining: 478ms
3:	learn: 44.7273237	total: 20.1ms	remaining: 483ms
4:	learn: 43.8867421	total: 27.7ms	remaining: 526ms
5:	learn: 43.3615911	total: 35ms	remaining: 548ms
6:	learn: 42.8548390	total: 44.6ms	remaining: 593ms
7:	learn: 42.1606758	total: 52.8ms	remaining: 607ms
8:	learn: 41.6625870	total: 58.8ms	remaining: 595ms
9:	learn: 40.9497092	total: 64.3ms	remaining: 579ms
10:	learn: 40.1886318	total: 69.4ms	remaining: 562ms
11:	learn: 39.7456423	total: 74.6ms	remaining: 547ms
12:	learn: 39.1171373	total: 79.9ms	remaining: 534ms
13:	learn: 38.5451069	total: 85ms	remaining: 522ms
14:	learn: 38.0155834	total: 90.1ms	remaining: 510ms
15:	learn: 37.5631354	total: 95.5ms	remaining: 501ms
16:	learn: 37.1030023	total: 101ms	remaining: 491ms
17:	learn: 36.4563029	total: 105ms	remaining: 479ms
18:	learn: 36.0160976	total: 110ms	remaining: 470ms
19:	learn: 35.5079827	total: 116ms	remaining: 462ms
20:	learn: 35.2111885	total: 122ms	remaining: 457ms
21:	learn: 34.9397465	total: 127ms	remaining: 451ms
22:	learn: 34.5270048	total: 132ms	remaining: 441ms
23:	learn: 34.0169260	total: 136ms	remaining: 432ms
24:	learn: 33.7454892	total: 141ms	remaining: 424ms
25:	learn: 33.2648157	total: 146ms	remaining: 416ms
26:	learn: 32.8899427	total: 151ms	remaining: 408ms
27:	learn: 32.6185050	total: 155ms	remaining: 398ms
28:	learn: 32.3528531	total: 160ms	remaining: 391ms
29:	learn: 32.0859923	total: 164ms	remaining: 382ms
30:	learn: 31.6511144	total: 168ms	remaining: 374ms
31:	learn: 31.2571765	total: 172ms	remaining: 366ms
32:	learn: 30.9770049	total: 176ms	remaining: 358ms
33:	learn: 30.6084872	total: 180ms	remaining: 350ms
34:	learn: 30.3448632	total: 185ms	remaining: 343ms
35:	learn: 30.0360942	total: 189ms	remaining: 336ms
36:	learn: 29.6648968	total: 193ms	remaining: 329ms
37:	learn: 29.3165114	total: 197ms	remaining: 322ms
38:	learn: 29.0829198	total: 202ms	remaining: 316ms
39:	learn: 28.7752064	total: 207ms	remaining: 310ms
40:	learn: 28.3622191	total: 211ms	remaining: 303ms
41:	learn: 28.1346631	total: 215ms	remaining: 297ms
42:	learn: 27.9585719	total: 220ms	remaining: 291ms
43:	learn: 27.6565566	total: 224ms	remaining: 286ms
44:	learn: 27.3616172	total: 229ms	remaining: 280ms
45:	learn: 27.0658637	total: 234ms	remaining: 274ms
46:	learn: 26.8660382	total: 238ms	remaining: 269ms
47:	learn: 26.6536078	total: 243ms	remaining: 263ms
48:	learn: 26.3524440	total: 247ms	remaining: 258ms
49:	learn: 26.1595277	total: 252ms	remaining: 252ms
50:	learn: 25.9273523	total: 260ms	remaining: 250ms
51:	learn: 25.7195580	total: 268ms	remaining: 247ms
52:	learn: 25.5730225	total: 276ms	remaining: 245ms
53:	learn: 25.3455276	total: 281ms	remaining: 240ms
54:	learn: 25.2289675	total: 288ms	remaining: 236ms
55:	learn: 25.0133024	total: 293ms	remaining: 230ms
56:	learn: 24.8406714	total: 299ms	remaining: 225ms
57:	learn: 24.6367857	total: 304ms	remaining: 220ms
58:	learn: 24.5338177	total: 310ms	remaining: 215ms
59:	learn: 24.3799964	total: 315ms	remaining: 210ms
60:	learn: 24.1447492	total: 320ms	remaining: 205ms
61:	learn: 23.9880495	total: 325ms	remaining: 199ms
62:	learn: 23.7140630	total: 330ms	remaining: 194ms
63:	learn: 23.5003791	total: 335ms	remaining: 189ms
64:	learn: 23.3207645	total: 340ms	remaining: 183ms
65:	learn: 23.1958356	total: 345ms	remaining: 178ms
66:	learn: 23.0471302	total: 350ms	remaining: 173ms
67:	learn: 22.8977183	total: 355ms	remaining: 167ms
68:	learn: 22.7187400	total: 359ms	remaining: 161ms
69:	learn: 22.6523405	total: 363ms	remaining: 155ms
70:	learn: 22.4767453	total: 367ms	remaining: 150ms
71:	learn: 22.3243677	total: 371ms	remaining: 144ms
72:	learn: 22.2133096	total: 374ms	remaining: 138ms
73:	learn: 22.1151713	total: 378ms	remaining: 133ms
74:	learn: 22.0296666	total: 382ms	remaining: 127ms
75:	learn: 21.9195980	total: 386ms	remaining: 122ms
76:	learn: 21.8401730	total: 390ms	remaining: 117ms
77:	learn: 21.8079797	total: 394ms	remaining: 111ms
78:	learn: 21.7274109	total: 398ms	remaining: 106ms
79:	learn: 21.6663032	total: 402ms	remaining: 100ms
80:	learn: 21.5633117	total: 406ms	remaining: 95.3ms
81:	learn: 21.4542467	total: 410ms	remaining: 90ms
82:	learn: 21.3177957	total: 415ms	remaining: 85ms
83:	learn: 21.1289167	total: 419ms	remaining: 79.9ms
84:	learn: 21.0297368	total: 424ms	remaining: 74.8ms
85:	learn: 20.9089564	total: 429ms	remaining: 69.8ms
86:	learn: 20.7653988	total: 433ms	remaining: 64.7ms
87:	learn: 20.6521894	total: 437ms	remaining: 59.7ms
88:	learn: 20.5193021	total: 441ms	remaining: 54.5ms
89:	learn: 20.4361620	total: 446ms	remaining: 49.5ms
90:	learn: 20.3546710	total: 453ms	remaining: 44.8ms
91:	learn: 20.2513296	total: 461ms	remaining: 40.1ms
92:	learn: 20.1605550	total: 472ms	remaining: 35.5ms
93:	learn: 20.0515942	total: 479ms	remaining: 30.6ms
94:	learn: 19.9800764	total: 485ms	remaining: 25.5ms
95:	learn: 19.8996532	total: 490ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 496ms	remaining: 15.3ms
97:	learn: 19.7887346	total: 501ms	remaining: 10.2ms
98:	learn: 19.7230872	total: 506ms	remaining: 5.11ms
99:	learn: 19.6328825	total: 511ms	remaining: 0us
0:	learn: 27.5585353	total: 4.4ms	remaining: 436ms
1:	learn: 27.1656995	total: 8.38ms	remaining: 411ms
2:	learn: 26.8590175	total: 12.5ms	remaining: 403ms
3:	learn: 26.5818406	total: 16.6ms	remaining: 399ms
4:	learn: 26.1148663	total: 20.5ms	remaining: 389ms
5:	learn: 25.7690484	total: 24.4ms	remaining: 382ms
6:	learn: 25.3489206	total: 28.2ms	remaining: 375ms
7:	learn: 24.9542406	total: 32.5ms	remaining: 374ms
8:	learn: 24.6777517	total: 36.6ms	remaining: 370ms
9:	learn: 24.3242344	total: 40.7ms	remaining: 366ms
10:	learn: 24.0383073	total: 44.7ms	remaining: 362ms
11:	learn: 23.7383420	total: 48.8ms	remaining: 358ms
12:	learn: 23.3461670	total: 52.8ms	remaining: 353ms
13:	learn: 23.0928636	total: 56.9ms	remaining: 350ms
14:	learn: 22.8770414	total: 61.6ms	remaining: 349ms
15:	learn: 22.6323214	total: 65.8ms	remaining: 345ms
16:	learn: 22.3597072	total: 70ms	remaining: 342ms
17:	learn: 22.1079813	total: 74.1ms	remaining: 338ms
18:	learn: 21.8421199	total: 79.3ms	remaining: 338ms
19:	learn: 21.6576508	total: 84.2ms	remaining: 337ms
20:	learn: 21.4301268	total: 88.8ms	remaining: 334ms
21:	learn: 21.2287388	total: 93.3ms	remaining: 331ms
22:	learn: 21.0553872	total: 97.4ms	remaining: 326ms
23:	learn: 20.8977091	total: 102ms	remaining: 323ms
24:	learn: 20.6619051	total: 106ms	remaining: 319ms
25:	learn: 20.5040955	total: 111ms	remaining: 316ms
26:	learn: 20.3181195	total: 119ms	remaining: 323ms
27:	learn: 20.0869436	total: 126ms	remaining: 325ms
28:	learn: 19.9375985	total: 134ms	remaining: 329ms
29:	learn: 19.8247516	total: 141ms	remaining: 330ms
30:	learn: 19.6261697	total: 146ms	remaining: 326ms
31:	learn: 19.4547236	total: 152ms	remaining: 322ms
32:	learn: 19.3157092	total: 157ms	remaining: 318ms
33:	learn: 19.1561419	total: 162ms	remaining: 314ms
34:	learn: 19.0453620	total: 167ms	remaining: 310ms
35:	learn: 18.8738574	total: 172ms	remaining: 306ms
36:	learn: 18.7072907	total: 177ms	remaining: 301ms
37:	learn: 18.5877943	total: 182ms	remaining: 297ms
38:	learn: 18.4436380	total: 188ms	remaining: 293ms
39:	learn: 18.3463356	total: 193ms	remaining: 289ms
40:	learn: 18.2008059	total: 198ms	remaining: 284ms
41:	learn: 18.0582079	total: 202ms	remaining: 279ms
42:	learn: 17.8891982	total: 208ms	remaining: 276ms
43:	learn: 17.7332246	total: 213ms	remaining: 271ms
44:	learn: 17.6206421	total: 218ms	remaining: 266ms
45:	learn: 17.4982800	total: 222ms	remaining: 260ms
46:	learn: 17.3970150	total: 226ms	remaining: 254ms
47:	learn: 17.3058203	total: 230ms	remaining: 249ms
48:	learn: 17.1789256	total: 234ms	remaining: 243ms
49:	learn: 17.0916229	total: 238ms	remaining: 238ms
50:	learn: 16.9859820	total: 242ms	remaining: 233ms
51:	learn: 16.8995582	total: 246ms	remaining: 227ms
52:	learn: 16.8137014	total: 250ms	remaining: 222ms
53:	learn: 16.7021451	total: 254ms	remaining: 216ms
54:	learn: 16.5895582	total: 259ms	remaining: 212ms
55:	learn: 16.5015639	total: 263ms	remaining: 207ms
56:	learn: 16.4356637	total: 267ms	remaining: 201ms
57:	learn: 16.3514525	total: 271ms	remaining: 196ms
58:	learn: 16.2401369	total: 276ms	remaining: 192ms
59:	learn: 16.1293223	total: 280ms	remaining: 187ms
60:	learn: 16.0271167	total: 285ms	remaining: 182ms
61:	learn: 15.9126257	total: 289ms	remaining: 177ms
62:	learn: 15.8391096	total: 294ms	remaining: 173ms
63:	learn: 15.7441773	total: 299ms	remaining: 168ms
64:	learn: 15.6885195	total: 303ms	remaining: 163ms
65:	learn: 15.6052039	total: 307ms	remaining: 158ms
66:	learn: 15.5074202	total: 315ms	remaining: 155ms
67:	learn: 15.4054338	total: 323ms	remaining: 152ms
68:	learn: 15.2885714	total: 332ms	remaining: 149ms
69:	learn: 15.2157472	total: 337ms	remaining: 145ms
70:	learn: 15.1031554	total: 344ms	remaining: 141ms
71:	learn: 15.0237470	total: 350ms	remaining: 136ms
72:	learn: 14.9756825	total: 355ms	remaining: 131ms
73:	learn: 14.8840596	total: 360ms	remaining: 127ms
74:	learn: 14.8077061	total: 366ms	remaining: 122ms
75:	learn: 14.7444437	total: 371ms	remaining: 117ms
76:	learn: 14.6751720	total: 376ms	remaining: 112ms
77:	learn: 14.5830333	total: 382ms	remaining: 108ms
78:	learn: 14.5241206	total: 387ms	remaining: 103ms
79:	learn: 14.4892731	total: 392ms	remaining: 97.9ms
80:	learn: 14.4256605	total: 397ms	remaining: 93ms
81:	learn: 14.3666860	total: 401ms	remaining: 88.1ms
82:	learn: 14.2938372	total: 407ms	remaining: 83.3ms
83:	learn: 14.2161532	total: 412ms	remaining: 78.5ms
84:	learn: 14.1582910	total: 417ms	remaining: 73.5ms
85:	learn: 14.1029153	total: 421ms	remaining: 68.5ms
86:	learn: 14.0475835	total: 425ms	remaining: 63.5ms
87:	learn: 13.9892661	total: 429ms	remaining: 58.4ms
88:	learn: 13.9481628	total: 433ms	remaining: 53.5ms
89:	learn: 13.8483991	total: 437ms	remaining: 48.5ms
90:	learn: 13.7775614	total: 441ms	remaining: 43.6ms
91:	learn: 13.7304585	total: 445ms	remaining: 38.7ms
92:	learn: 13.6783381	total: 449ms	remaining: 33.8ms
93:	learn: 13.6356964	total: 453ms	remaining: 28.9ms
94:	learn: 13.5924371	total: 457ms	remaining: 24.1ms
95:	learn: 13.5400746	total: 461ms	remaining: 19.2ms
96:	learn: 13.4897333	total: 465ms	remaining: 14.4ms
97:	learn: 13.4470321	total: 470ms	remaining: 9.58ms
98:	learn: 13.3856082	total: 474ms	remaining: 4.79ms
99:	learn: 13.3082371	total: 478ms	remaining: 0us
0:	learn: 43.0395283	total: 5.8ms	remaining: 575ms
1:	learn: 42.1130223	total: 10.9ms	remaining: 533ms
2:	learn: 41.1753409	total: 16.8ms	remaining: 544ms
3:	learn: 40.3637444	total: 22.5ms	remaining: 540ms
4:	learn: 39.6508088	total: 27.8ms	remaining: 528ms
5:	learn: 38.7217934	total: 33.2ms	remaining: 520ms
6:	learn: 37.8538055	total: 38.4ms	remaining: 510ms
7:	learn: 36.9793574	total: 43.9ms	remaining: 504ms
8:	learn: 36.3076984	total: 49.4ms	remaining: 500ms
9:	learn: 35.6673160	total: 54.4ms	remaining: 490ms
10:	learn: 34.8889800	total: 59.1ms	remaining: 479ms
11:	learn: 34.1675517	total: 64.3ms	remaining: 471ms
12:	learn: 33.6779564	total: 70.1ms	remaining: 469ms
13:	learn: 33.0710039	total: 75.5ms	remaining: 464ms
14:	learn: 32.4966674	total: 80.3ms	remaining: 455ms
15:	learn: 31.9492856	total: 84.8ms	remaining: 445ms
16:	learn: 31.5108129	total: 89.3ms	remaining: 436ms
17:	learn: 30.9804023	total: 94.1ms	remaining: 429ms
18:	learn: 30.4169089	total: 98.3ms	remaining: 419ms
19:	learn: 29.8930375	total: 103ms	remaining: 410ms
20:	learn: 29.3974421	total: 107ms	remaining: 402ms
21:	learn: 28.8792307	total: 111ms	remaining: 395ms
22:	learn: 28.3894474	total: 116ms	remaining: 388ms
23:	learn: 27.9921276	total: 120ms	remaining: 380ms
24:	learn: 27.6158887	total: 124ms	remaining: 373ms
25:	learn: 27.2866950	total: 129ms	remaining: 368ms
26:	learn: 26.8770708	total: 133ms	remaining: 360ms
27:	learn: 26.6233005	total: 137ms	remaining: 353ms
28:	learn: 26.2921934	total: 142ms	remaining: 348ms
29:	learn: 25.9156920	total: 147ms	remaining: 343ms
30:	learn: 25.5311106	total: 149ms	remaining: 331ms
31:	learn: 25.2178997	total: 154ms	remaining: 326ms
32:	learn: 24.8572196	total: 158ms	remaining: 321ms
33:	learn: 24.5849710	total: 163ms	remaining: 315ms
34:	learn: 24.2209190	total: 167ms	remaining: 310ms
35:	learn: 23.8708250	total: 171ms	remaining: 304ms
36:	learn: 23.5325279	total: 178ms	remaining: 304ms
37:	learn: 23.2116148	total: 187ms	remaining: 304ms
38:	learn: 22.9696787	total: 196ms	remaining: 306ms
39:	learn: 22.7936783	total: 202ms	remaining: 302ms
40:	learn: 22.6228847	total: 208ms	remaining: 299ms
41:	learn: 22.3691527	total: 213ms	remaining: 295ms
42:	learn: 22.1002173	total: 218ms	remaining: 290ms
43:	learn: 21.9157268	total: 224ms	remaining: 284ms
44:	learn: 21.7229102	total: 229ms	remaining: 280ms
45:	learn: 21.4642005	total: 234ms	remaining: 275ms
46:	learn: 21.3029442	total: 239ms	remaining: 269ms
47:	learn: 21.1469792	total: 244ms	remaining: 264ms
48:	learn: 20.9458235	total: 249ms	remaining: 259ms
49:	learn: 20.7335242	total: 254ms	remaining: 254ms
50:	learn: 20.5440269	total: 259ms	remaining: 249ms
51:	learn: 20.3661449	total: 264ms	remaining: 244ms
52:	learn: 20.2158134	total: 269ms	remaining: 239ms
53:	learn: 19.9934873	total: 275ms	remaining: 234ms
54:	learn: 19.7879739	total: 279ms	remaining: 228ms
55:	learn: 19.6630460	total: 283ms	remaining: 222ms
56:	learn: 19.5152729	total: 287ms	remaining: 217ms
57:	learn: 19.3581128	total: 292ms	remaining: 211ms
58:	learn: 19.2209303	total: 296ms	remaining: 205ms
59:	learn: 19.0965248	total: 300ms	remaining: 200ms
60:	learn: 19.0035954	total: 304ms	remaining: 194ms
61:	learn: 18.8554149	total: 308ms	remaining: 189ms
62:	learn: 18.7095427	total: 312ms	remaining: 183ms
63:	learn: 18.5751494	total: 315ms	remaining: 177ms
64:	learn: 18.4678251	total: 320ms	remaining: 172ms
65:	learn: 18.3500325	total: 324ms	remaining: 167ms
66:	learn: 18.2088983	total: 328ms	remaining: 162ms
67:	learn: 18.0737705	total: 332ms	remaining: 156ms
68:	learn: 17.9325058	total: 337ms	remaining: 151ms
69:	learn: 17.8003911	total: 342ms	remaining: 146ms
70:	learn: 17.7385366	total: 346ms	remaining: 141ms
71:	learn: 17.6106998	total: 351ms	remaining: 136ms
72:	learn: 17.4816270	total: 356ms	remaining: 132ms
73:	learn: 17.4025554	total: 360ms	remaining: 127ms
74:	learn: 17.2902108	total: 365ms	remaining: 122ms
75:	learn: 17.2158048	total: 370ms	remaining: 117ms
76:	learn: 17.1261053	total: 378ms	remaining: 113ms
77:	learn: 17.0308917	total: 385ms	remaining: 109ms
78:	learn: 16.9546705	total: 395ms	remaining: 105ms
79:	learn: 16.8319165	total: 413ms	remaining: 103ms
80:	learn: 16.7687017	total: 419ms	remaining: 98.2ms
81:	learn: 16.6972326	total: 428ms	remaining: 94ms
82:	learn: 16.6124580	total: 433ms	remaining: 88.8ms
83:	learn: 16.4999052	total: 439ms	remaining: 83.6ms
84:	learn: 16.4302484	total: 444ms	remaining: 78.3ms
85:	learn: 16.3201363	total: 449ms	remaining: 73ms
86:	learn: 16.2534314	total: 453ms	remaining: 67.7ms
87:	learn: 16.1720485	total: 458ms	remaining: 62.5ms
88:	learn: 16.0625751	total: 464ms	remaining: 57.3ms
89:	learn: 15.9135088	total: 469ms	remaining: 52.1ms
90:	learn: 15.8658863	total: 474ms	remaining: 46.8ms
91:	learn: 15.8066805	total: 478ms	remaining: 41.6ms
92:	learn: 15.7412103	total: 482ms	remaining: 36.3ms
93:	learn: 15.6542776	total: 487ms	remaining: 31.1ms
94:	learn: 15.5760334	total: 490ms	remaining: 25.8ms
95:	learn: 15.5434131	total: 495ms	remaining: 20.6ms
96:	learn: 15.4709561	total: 499ms	remaining: 15.4ms
97:	learn: 15.4449618	total: 503ms	remaining: 10.3ms
98:	learn: 15.3752761	total: 508ms	remaining: 5.13ms
99:	learn: 15.3106595	total: 512ms	remaining: 0us
0:	learn: 46.7142257	total: 4.8ms	remaining: 475ms
1:	learn: 45.7634153	total: 9.13ms	remaining: 447ms
2:	learn: 45.0054253	total: 13.5ms	remaining: 436ms
3:	learn: 44.2120432	total: 18.1ms	remaining: 434ms
4:	learn: 43.3960472	total: 23.5ms	remaining: 446ms
5:	learn: 42.8588120	total: 31ms	remaining: 486ms
6:	learn: 41.9533701	total: 38.9ms	remaining: 516ms
7:	learn: 41.2745030	total: 46.5ms	remaining: 534ms
8:	learn: 40.6797495	total: 54.1ms	remaining: 547ms
9:	learn: 39.9899571	total: 59.4ms	remaining: 535ms
10:	learn: 39.4682100	total: 65ms	remaining: 526ms
11:	learn: 39.0305595	total: 70.5ms	remaining: 517ms
12:	learn: 38.4200417	total: 75.5ms	remaining: 505ms
13:	learn: 37.8425194	total: 80.6ms	remaining: 495ms
14:	learn: 37.4203127	total: 85.9ms	remaining: 487ms
15:	learn: 36.9917688	total: 91.3ms	remaining: 479ms
16:	learn: 36.5544138	total: 96.3ms	remaining: 470ms
17:	learn: 36.0727019	total: 101ms	remaining: 461ms
18:	learn: 35.4835715	total: 106ms	remaining: 452ms
19:	learn: 34.9865654	total: 110ms	remaining: 441ms
20:	learn: 34.6063373	total: 115ms	remaining: 431ms
21:	learn: 34.0997289	total: 119ms	remaining: 422ms
22:	learn: 33.7313171	total: 124ms	remaining: 416ms
23:	learn: 33.3582000	total: 130ms	remaining: 411ms
24:	learn: 32.9432456	total: 135ms	remaining: 405ms
25:	learn: 32.5220888	total: 139ms	remaining: 396ms
26:	learn: 32.2172292	total: 143ms	remaining: 387ms
27:	learn: 31.8972904	total: 147ms	remaining: 379ms
28:	learn: 31.6405350	total: 151ms	remaining: 370ms
29:	learn: 31.4167702	total: 155ms	remaining: 362ms
30:	learn: 30.8541961	total: 157ms	remaining: 349ms
31:	learn: 30.5572111	total: 161ms	remaining: 343ms
32:	learn: 30.1700399	total: 165ms	remaining: 336ms
33:	learn: 29.8537271	total: 169ms	remaining: 329ms
34:	learn: 29.6192540	total: 174ms	remaining: 323ms
35:	learn: 29.3276362	total: 178ms	remaining: 316ms
36:	learn: 28.9985179	total: 182ms	remaining: 310ms
37:	learn: 28.7046880	total: 186ms	remaining: 304ms
38:	learn: 28.4412677	total: 190ms	remaining: 298ms
39:	learn: 28.1277292	total: 195ms	remaining: 292ms
40:	learn: 27.9000750	total: 199ms	remaining: 286ms
41:	learn: 27.5433162	total: 203ms	remaining: 281ms
42:	learn: 27.2493285	total: 207ms	remaining: 275ms
43:	learn: 26.9576632	total: 209ms	remaining: 266ms
44:	learn: 26.6177110	total: 213ms	remaining: 260ms
45:	learn: 26.2812456	total: 217ms	remaining: 255ms
46:	learn: 26.0803859	total: 221ms	remaining: 250ms
47:	learn: 25.9543581	total: 226ms	remaining: 245ms
48:	learn: 25.7951582	total: 230ms	remaining: 240ms
49:	learn: 25.6548184	total: 235ms	remaining: 235ms
50:	learn: 25.4010843	total: 239ms	remaining: 230ms
51:	learn: 24.9773937	total: 244ms	remaining: 225ms
52:	learn: 24.8026156	total: 248ms	remaining: 220ms
53:	learn: 24.5568053	total: 253ms	remaining: 216ms
54:	learn: 24.2281839	total: 262ms	remaining: 215ms
55:	learn: 23.9202795	total: 269ms	remaining: 211ms
56:	learn: 23.7625591	total: 277ms	remaining: 209ms
57:	learn: 23.5429721	total: 285ms	remaining: 206ms
58:	learn: 23.3175893	total: 290ms	remaining: 202ms
59:	learn: 23.2035130	total: 296ms	remaining: 197ms
60:	learn: 23.0232450	total: 301ms	remaining: 193ms
61:	learn: 22.8384958	total: 306ms	remaining: 188ms
62:	learn: 22.6499902	total: 311ms	remaining: 183ms
63:	learn: 22.4577426	total: 317ms	remaining: 178ms
64:	learn: 22.3333158	total: 322ms	remaining: 173ms
65:	learn: 22.2064131	total: 327ms	remaining: 169ms
66:	learn: 22.1434971	total: 332ms	remaining: 164ms
67:	learn: 21.9596519	total: 337ms	remaining: 159ms
68:	learn: 21.8475576	total: 342ms	remaining: 153ms
69:	learn: 21.6954745	total: 347ms	remaining: 149ms
70:	learn: 21.5635976	total: 353ms	remaining: 144ms
71:	learn: 21.4588506	total: 357ms	remaining: 139ms
72:	learn: 21.3527268	total: 361ms	remaining: 134ms
73:	learn: 21.2661288	total: 365ms	remaining: 128ms
74:	learn: 21.1817333	total: 369ms	remaining: 123ms
75:	learn: 21.0527553	total: 374ms	remaining: 118ms
76:	learn: 20.9229021	total: 378ms	remaining: 113ms
77:	learn: 20.7563946	total: 383ms	remaining: 108ms
78:	learn: 20.6569831	total: 388ms	remaining: 103ms
79:	learn: 20.4982663	total: 392ms	remaining: 98ms
80:	learn: 20.3185460	total: 396ms	remaining: 93ms
81:	learn: 20.2096241	total: 401ms	remaining: 88ms
82:	learn: 20.1274891	total: 405ms	remaining: 83ms
83:	learn: 20.0740139	total: 409ms	remaining: 78ms
84:	learn: 19.9630699	total: 414ms	remaining: 73ms
85:	learn: 19.8753899	total: 419ms	remaining: 68.1ms
86:	learn: 19.6563612	total: 423ms	remaining: 63.3ms
87:	learn: 19.4680232	total: 428ms	remaining: 58.4ms
88:	learn: 19.3503431	total: 433ms	remaining: 53.5ms
89:	learn: 19.2221379	total: 437ms	remaining: 48.6ms
90:	learn: 19.0732542	total: 443ms	remaining: 43.8ms
91:	learn: 18.9825190	total: 448ms	remaining: 39ms
92:	learn: 18.8839009	total: 455ms	remaining: 34.3ms
93:	learn: 18.8012219	total: 466ms	remaining: 29.7ms
94:	learn: 18.7172713	total: 476ms	remaining: 25.1ms
95:	learn: 18.6201170	total: 484ms	remaining: 20.1ms
96:	learn: 18.5318611	total: 489ms	remaining: 15.1ms
97:	learn: 18.3833356	total: 495ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 501ms	remaining: 5.05ms
99:	learn: 18.2227333	total: 506ms	remaining: 0us
0:	learn: 46.3764524	total: 5.77ms	remaining: 571ms
1:	learn: 45.5561269	total: 11ms	remaining: 537ms
2:	learn: 44.8811245	total: 15.7ms	remaining: 507ms
3:	learn: 44.0788617	total: 20.2ms	remaining: 486ms
4:	learn: 43.3619790	total: 24.8ms	remaining: 471ms
5:	learn: 42.6912112	total: 29ms	remaining: 454ms
6:	learn: 42.2292118	total: 33.2ms	remaining: 441ms
7:	learn: 41.7725191	total: 37.3ms	remaining: 429ms
8:	learn: 41.1676614	total: 41.5ms	remaining: 420ms
9:	learn: 40.5771076	total: 45.5ms	remaining: 410ms
10:	learn: 39.8343757	total: 50ms	remaining: 405ms
11:	learn: 39.3761142	total: 54.5ms	remaining: 400ms
12:	learn: 38.5254692	total: 59.3ms	remaining: 397ms
13:	learn: 37.9629555	total: 63.3ms	remaining: 389ms
14:	learn: 37.4418438	total: 67.5ms	remaining: 383ms
15:	learn: 37.0507283	total: 71.7ms	remaining: 376ms
16:	learn: 36.6264217	total: 76.1ms	remaining: 372ms
17:	learn: 36.1114940	total: 80.6ms	remaining: 367ms
18:	learn: 35.7193862	total: 85.1ms	remaining: 363ms
19:	learn: 35.3301177	total: 89.6ms	remaining: 358ms
20:	learn: 35.0598280	total: 94ms	remaining: 354ms
21:	learn: 34.5469736	total: 98.5ms	remaining: 349ms
22:	learn: 34.2064215	total: 103ms	remaining: 346ms
23:	learn: 33.7280710	total: 110ms	remaining: 348ms
24:	learn: 33.3282940	total: 117ms	remaining: 351ms
25:	learn: 32.8478961	total: 125ms	remaining: 357ms
26:	learn: 32.5722164	total: 132ms	remaining: 357ms
27:	learn: 32.2457019	total: 140ms	remaining: 361ms
28:	learn: 31.9230495	total: 146ms	remaining: 357ms
29:	learn: 31.4311611	total: 151ms	remaining: 352ms
30:	learn: 30.9179052	total: 156ms	remaining: 348ms
31:	learn: 30.6201141	total: 162ms	remaining: 344ms
32:	learn: 30.3421106	total: 167ms	remaining: 339ms
33:	learn: 29.9885373	total: 173ms	remaining: 335ms
34:	learn: 29.7462780	total: 177ms	remaining: 329ms
35:	learn: 29.3607153	total: 183ms	remaining: 325ms
36:	learn: 29.1793078	total: 188ms	remaining: 320ms
37:	learn: 28.9276538	total: 193ms	remaining: 315ms
38:	learn: 28.6903934	total: 198ms	remaining: 309ms
39:	learn: 28.2095033	total: 203ms	remaining: 305ms
40:	learn: 27.7990608	total: 209ms	remaining: 300ms
41:	learn: 27.5406632	total: 213ms	remaining: 294ms
42:	learn: 27.2575376	total: 217ms	remaining: 287ms
43:	learn: 26.9741707	total: 221ms	remaining: 281ms
44:	learn: 26.6606899	total: 225ms	remaining: 275ms
45:	learn: 26.4015833	total: 229ms	remaining: 269ms
46:	learn: 26.1828993	total: 233ms	remaining: 263ms
47:	learn: 26.0233709	total: 235ms	remaining: 255ms
48:	learn: 25.9300399	total: 240ms	remaining: 249ms
49:	learn: 25.5861489	total: 244ms	remaining: 244ms
50:	learn: 25.4322012	total: 248ms	remaining: 238ms
51:	learn: 25.1595644	total: 251ms	remaining: 232ms
52:	learn: 24.9955303	total: 256ms	remaining: 227ms
53:	learn: 24.7273966	total: 260ms	remaining: 222ms
54:	learn: 24.5747978	total: 265ms	remaining: 216ms
55:	learn: 24.3807977	total: 269ms	remaining: 211ms
56:	learn: 24.1689569	total: 273ms	remaining: 206ms
57:	learn: 23.9898221	total: 278ms	remaining: 201ms
58:	learn: 23.7566414	total: 282ms	remaining: 196ms
59:	learn: 23.6641165	total: 286ms	remaining: 191ms
60:	learn: 23.5658066	total: 291ms	remaining: 186ms
61:	learn: 23.4338851	total: 295ms	remaining: 181ms
62:	learn: 23.2408837	total: 299ms	remaining: 176ms
63:	learn: 23.0642038	total: 304ms	remaining: 171ms
64:	learn: 22.9032045	total: 311ms	remaining: 167ms
65:	learn: 22.7736138	total: 318ms	remaining: 164ms
66:	learn: 22.6836443	total: 326ms	remaining: 160ms
67:	learn: 22.5983654	total: 335ms	remaining: 158ms
68:	learn: 22.4419813	total: 342ms	remaining: 154ms
69:	learn: 22.2863339	total: 348ms	remaining: 149ms
70:	learn: 22.1792943	total: 353ms	remaining: 144ms
71:	learn: 22.1130574	total: 358ms	remaining: 139ms
72:	learn: 21.9858161	total: 363ms	remaining: 134ms
73:	learn: 21.8577784	total: 369ms	remaining: 130ms
74:	learn: 21.7845222	total: 374ms	remaining: 125ms
75:	learn: 21.6831390	total: 379ms	remaining: 120ms
76:	learn: 21.6292521	total: 384ms	remaining: 115ms
77:	learn: 21.5789330	total: 389ms	remaining: 110ms
78:	learn: 21.5420942	total: 394ms	remaining: 105ms
79:	learn: 21.4280939	total: 399ms	remaining: 99.6ms
80:	learn: 21.3641165	total: 404ms	remaining: 94.7ms
81:	learn: 21.2734814	total: 409ms	remaining: 89.8ms
82:	learn: 21.2220323	total: 414ms	remaining: 84.8ms
83:	learn: 21.0625792	total: 418ms	remaining: 79.6ms
84:	learn: 20.9488320	total: 422ms	remaining: 74.5ms
85:	learn: 20.8504255	total: 426ms	remaining: 69.3ms
86:	learn: 20.7848510	total: 430ms	remaining: 64.2ms
87:	learn: 20.7247442	total: 434ms	remaining: 59.1ms
88:	learn: 20.5698590	total: 438ms	remaining: 54.1ms
89:	learn: 20.4067620	total: 442ms	remaining: 49.1ms
90:	learn: 20.3062482	total: 447ms	remaining: 44.2ms
91:	learn: 20.2029696	total: 452ms	remaining: 39.3ms
92:	learn: 20.1384849	total: 456ms	remaining: 34.3ms
93:	learn: 20.0260709	total: 460ms	remaining: 29.4ms
94:	learn: 19.9122100	total: 464ms	remaining: 24.4ms
95:	learn: 19.8648487	total: 468ms	remaining: 19.5ms
96:	learn: 19.8207072	total: 472ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 477ms	remaining: 9.74ms
98:	learn: 19.7042438	total: 482ms	remaining: 4.87ms
99:	learn: 19.6546645	total: 486ms	remaining: 0us
0:	learn: 47.0239288	total: 5.01ms	remaining: 496ms
1:	learn: 46.2253829	total: 9.97ms	remaining: 489ms
2:	learn: 45.5580301	total: 14.9ms	remaining: 482ms
3:	learn: 44.7273237	total: 20.2ms	remaining: 486ms
4:	learn: 43.8867421	total: 25.1ms	remaining: 477ms
5:	learn: 43.3615911	total: 30.1ms	remaining: 472ms
6:	learn: 42.8548390	total: 35.2ms	remaining: 468ms
7:	learn: 42.1606758	total: 40ms	remaining: 460ms
8:	learn: 41.6625870	total: 44.9ms	remaining: 454ms
9:	learn: 40.9497092	total: 49.5ms	remaining: 445ms
10:	learn: 40.1886318	total: 54.5ms	remaining: 441ms
11:	learn: 39.7456423	total: 59.6ms	remaining: 437ms
12:	learn: 39.1171373	total: 64.5ms	remaining: 432ms
13:	learn: 38.5451069	total: 68.9ms	remaining: 423ms
14:	learn: 38.0155834	total: 72.7ms	remaining: 412ms
15:	learn: 37.5631354	total: 76.9ms	remaining: 404ms
16:	learn: 37.1030023	total: 80.6ms	remaining: 393ms
17:	learn: 36.4563029	total: 84.3ms	remaining: 384ms
18:	learn: 36.0160976	total: 88.4ms	remaining: 377ms
19:	learn: 35.5079827	total: 92.1ms	remaining: 368ms
20:	learn: 35.2111885	total: 96ms	remaining: 361ms
21:	learn: 34.9397465	total: 99.8ms	remaining: 354ms
22:	learn: 34.5270048	total: 104ms	remaining: 348ms
23:	learn: 34.0169260	total: 108ms	remaining: 342ms
24:	learn: 33.7454892	total: 112ms	remaining: 335ms
25:	learn: 33.2648157	total: 116ms	remaining: 330ms
26:	learn: 32.8899427	total: 120ms	remaining: 324ms
27:	learn: 32.6185050	total: 124ms	remaining: 318ms
28:	learn: 32.3528531	total: 128ms	remaining: 312ms
29:	learn: 32.0859923	total: 132ms	remaining: 308ms
30:	learn: 31.6511144	total: 137ms	remaining: 304ms
31:	learn: 31.2571765	total: 141ms	remaining: 300ms
32:	learn: 30.9770049	total: 145ms	remaining: 295ms
33:	learn: 30.6084872	total: 149ms	remaining: 290ms
34:	learn: 30.3448632	total: 163ms	remaining: 303ms
35:	learn: 30.0360942	total: 183ms	remaining: 325ms
36:	learn: 29.6648968	total: 189ms	remaining: 322ms
37:	learn: 29.3165114	total: 197ms	remaining: 322ms
38:	learn: 29.0829198	total: 202ms	remaining: 316ms
39:	learn: 28.7752064	total: 208ms	remaining: 311ms
40:	learn: 28.3622191	total: 212ms	remaining: 306ms
41:	learn: 28.1346631	total: 218ms	remaining: 301ms
42:	learn: 27.9585719	total: 223ms	remaining: 296ms
43:	learn: 27.6565566	total: 228ms	remaining: 291ms
44:	learn: 27.3616172	total: 233ms	remaining: 285ms
45:	learn: 27.0658637	total: 239ms	remaining: 280ms
46:	learn: 26.8660382	total: 244ms	remaining: 275ms
47:	learn: 26.6536078	total: 249ms	remaining: 269ms
48:	learn: 26.3524440	total: 253ms	remaining: 264ms
49:	learn: 26.1595277	total: 258ms	remaining: 258ms
50:	learn: 25.9273523	total: 264ms	remaining: 254ms
51:	learn: 25.7195580	total: 269ms	remaining: 249ms
52:	learn: 25.5730225	total: 273ms	remaining: 242ms
53:	learn: 25.3455276	total: 278ms	remaining: 237ms
54:	learn: 25.2289675	total: 282ms	remaining: 230ms
55:	learn: 25.0133024	total: 286ms	remaining: 225ms
56:	learn: 24.8406714	total: 290ms	remaining: 219ms
57:	learn: 24.6367857	total: 295ms	remaining: 213ms
58:	learn: 24.5338177	total: 299ms	remaining: 208ms
59:	learn: 24.3799964	total: 303ms	remaining: 202ms
60:	learn: 24.1447492	total: 307ms	remaining: 196ms
61:	learn: 23.9880495	total: 312ms	remaining: 191ms
62:	learn: 23.7140630	total: 316ms	remaining: 186ms
63:	learn: 23.5003791	total: 320ms	remaining: 180ms
64:	learn: 23.3207645	total: 324ms	remaining: 174ms
65:	learn: 23.1958356	total: 329ms	remaining: 169ms
66:	learn: 23.0471302	total: 334ms	remaining: 164ms
67:	learn: 22.8977183	total: 339ms	remaining: 160ms
68:	learn: 22.7187400	total: 344ms	remaining: 154ms
69:	learn: 22.6523405	total: 349ms	remaining: 149ms
70:	learn: 22.4767453	total: 354ms	remaining: 144ms
71:	learn: 22.3243677	total: 359ms	remaining: 139ms
72:	learn: 22.2133096	total: 364ms	remaining: 135ms
73:	learn: 22.1151713	total: 372ms	remaining: 131ms
74:	learn: 22.0296666	total: 380ms	remaining: 127ms
75:	learn: 21.9195980	total: 388ms	remaining: 122ms
76:	learn: 21.8401730	total: 394ms	remaining: 118ms
77:	learn: 21.8079797	total: 400ms	remaining: 113ms
78:	learn: 21.7274109	total: 405ms	remaining: 108ms
79:	learn: 21.6663032	total: 410ms	remaining: 103ms
80:	learn: 21.5633117	total: 415ms	remaining: 97.5ms
81:	learn: 21.4542467	total: 421ms	remaining: 92.3ms
82:	learn: 21.3177957	total: 425ms	remaining: 87.1ms
83:	learn: 21.1289167	total: 431ms	remaining: 82.1ms
84:	learn: 21.0297368	total: 436ms	remaining: 77ms
85:	learn: 20.9089564	total: 442ms	remaining: 71.9ms
86:	learn: 20.7653988	total: 446ms	remaining: 66.7ms
87:	learn: 20.6521894	total: 451ms	remaining: 61.5ms
88:	learn: 20.5193021	total: 455ms	remaining: 56.3ms
89:	learn: 20.4361620	total: 460ms	remaining: 51.1ms
90:	learn: 20.3546710	total: 465ms	remaining: 46ms
91:	learn: 20.2513296	total: 471ms	remaining: 41ms
92:	learn: 20.1605550	total: 476ms	remaining: 35.8ms
93:	learn: 20.0515942	total: 479ms	remaining: 30.6ms
94:	learn: 19.9800764	total: 484ms	remaining: 25.5ms
95:	learn: 19.8996532	total: 488ms	remaining: 20.3ms
96:	learn: 19.8450910	total: 492ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 497ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 501ms	remaining: 5.05ms
99:	learn: 19.6328825	total: 505ms	remaining: 0us
0:	learn: 27.5585353	total: 4.62ms	remaining: 458ms
1:	learn: 27.1656995	total: 9.25ms	remaining: 453ms
2:	learn: 26.8590175	total: 16.5ms	remaining: 535ms
3:	learn: 26.5818406	total: 23.9ms	remaining: 573ms
4:	learn: 26.1148663	total: 33.1ms	remaining: 629ms
5:	learn: 25.7690484	total: 38.3ms	remaining: 600ms
6:	learn: 25.3489206	total: 46.1ms	remaining: 613ms
7:	learn: 24.9542406	total: 51.2ms	remaining: 589ms
8:	learn: 24.6777517	total: 56.3ms	remaining: 570ms
9:	learn: 24.3242344	total: 61.7ms	remaining: 555ms
10:	learn: 24.0383073	total: 66.6ms	remaining: 539ms
11:	learn: 23.7383420	total: 71.7ms	remaining: 526ms
12:	learn: 23.3461670	total: 76.9ms	remaining: 514ms
13:	learn: 23.0928636	total: 81.8ms	remaining: 503ms
14:	learn: 22.8770414	total: 86.7ms	remaining: 491ms
15:	learn: 22.6323214	total: 91.7ms	remaining: 481ms
16:	learn: 22.3597072	total: 97.2ms	remaining: 475ms
17:	learn: 22.1079813	total: 102ms	remaining: 463ms
18:	learn: 21.8421199	total: 107ms	remaining: 457ms
19:	learn: 21.6576508	total: 113ms	remaining: 451ms
20:	learn: 21.4301268	total: 117ms	remaining: 440ms
21:	learn: 21.2287388	total: 121ms	remaining: 430ms
22:	learn: 21.0553872	total: 125ms	remaining: 419ms
23:	learn: 20.8977091	total: 129ms	remaining: 410ms
24:	learn: 20.6619051	total: 134ms	remaining: 401ms
25:	learn: 20.5040955	total: 138ms	remaining: 393ms
26:	learn: 20.3181195	total: 142ms	remaining: 384ms
27:	learn: 20.0869436	total: 146ms	remaining: 376ms
28:	learn: 19.9375985	total: 150ms	remaining: 368ms
29:	learn: 19.8247516	total: 154ms	remaining: 360ms
30:	learn: 19.6261697	total: 158ms	remaining: 351ms
31:	learn: 19.4547236	total: 162ms	remaining: 344ms
32:	learn: 19.3157092	total: 166ms	remaining: 336ms
33:	learn: 19.1561419	total: 170ms	remaining: 329ms
34:	learn: 19.0453620	total: 173ms	remaining: 322ms
35:	learn: 18.8738574	total: 177ms	remaining: 315ms
36:	learn: 18.7072907	total: 182ms	remaining: 310ms
37:	learn: 18.5877943	total: 186ms	remaining: 303ms
38:	learn: 18.4436380	total: 190ms	remaining: 297ms
39:	learn: 18.3463356	total: 195ms	remaining: 292ms
40:	learn: 18.2008059	total: 199ms	remaining: 286ms
41:	learn: 18.0582079	total: 203ms	remaining: 281ms
42:	learn: 17.8891982	total: 207ms	remaining: 275ms
43:	learn: 17.7332246	total: 212ms	remaining: 269ms
44:	learn: 17.6206421	total: 216ms	remaining: 264ms
45:	learn: 17.4982800	total: 220ms	remaining: 258ms
46:	learn: 17.3970150	total: 224ms	remaining: 253ms
47:	learn: 17.3058203	total: 228ms	remaining: 247ms
48:	learn: 17.1789256	total: 233ms	remaining: 243ms
49:	learn: 17.0916229	total: 238ms	remaining: 238ms
50:	learn: 16.9859820	total: 243ms	remaining: 233ms
51:	learn: 16.8995582	total: 247ms	remaining: 228ms
52:	learn: 16.8137014	total: 252ms	remaining: 223ms
53:	learn: 16.7021451	total: 257ms	remaining: 219ms
54:	learn: 16.5895582	total: 265ms	remaining: 216ms
55:	learn: 16.5015639	total: 274ms	remaining: 215ms
56:	learn: 16.4356637	total: 283ms	remaining: 213ms
57:	learn: 16.3514525	total: 291ms	remaining: 210ms
58:	learn: 16.2401369	total: 296ms	remaining: 206ms
59:	learn: 16.1293223	total: 301ms	remaining: 201ms
60:	learn: 16.0271167	total: 306ms	remaining: 196ms
61:	learn: 15.9126257	total: 311ms	remaining: 191ms
62:	learn: 15.8391096	total: 316ms	remaining: 186ms
63:	learn: 15.7441773	total: 321ms	remaining: 181ms
64:	learn: 15.6885195	total: 326ms	remaining: 176ms
65:	learn: 15.6052039	total: 331ms	remaining: 171ms
66:	learn: 15.5074202	total: 336ms	remaining: 165ms
67:	learn: 15.4054338	total: 340ms	remaining: 160ms
68:	learn: 15.2885714	total: 345ms	remaining: 155ms
69:	learn: 15.2157472	total: 350ms	remaining: 150ms
70:	learn: 15.1031554	total: 355ms	remaining: 145ms
71:	learn: 15.0237470	total: 359ms	remaining: 140ms
72:	learn: 14.9756825	total: 364ms	remaining: 134ms
73:	learn: 14.8840596	total: 369ms	remaining: 129ms
74:	learn: 14.8077061	total: 374ms	remaining: 125ms
75:	learn: 14.7444437	total: 379ms	remaining: 120ms
76:	learn: 14.6751720	total: 383ms	remaining: 114ms
77:	learn: 14.5830333	total: 387ms	remaining: 109ms
78:	learn: 14.5241206	total: 391ms	remaining: 104ms
79:	learn: 14.4892731	total: 395ms	remaining: 98.7ms
80:	learn: 14.4256605	total: 399ms	remaining: 93.6ms
81:	learn: 14.3666860	total: 403ms	remaining: 88.4ms
82:	learn: 14.2938372	total: 407ms	remaining: 83.4ms
83:	learn: 14.2161532	total: 411ms	remaining: 78.3ms
84:	learn: 14.1582910	total: 415ms	remaining: 73.2ms
85:	learn: 14.1029153	total: 419ms	remaining: 68.2ms
86:	learn: 14.0475835	total: 423ms	remaining: 63.2ms
87:	learn: 13.9892661	total: 428ms	remaining: 58.4ms
88:	learn: 13.9481628	total: 432ms	remaining: 53.4ms
89:	learn: 13.8483991	total: 437ms	remaining: 48.5ms
90:	learn: 13.7775614	total: 441ms	remaining: 43.6ms
91:	learn: 13.7304585	total: 446ms	remaining: 38.8ms
92:	learn: 13.6783381	total: 450ms	remaining: 33.9ms
93:	learn: 13.6356964	total: 455ms	remaining: 29ms
94:	learn: 13.5924371	total: 462ms	remaining: 24.3ms
95:	learn: 13.5400746	total: 469ms	remaining: 19.5ms
96:	learn: 13.4897333	total: 478ms	remaining: 14.8ms
97:	learn: 13.4470321	total: 485ms	remaining: 9.9ms
98:	learn: 13.3856082	total: 493ms	remaining: 4.98ms
99:	learn: 13.3082371	total: 499ms	remaining: 0us
0:	learn: 43.0395283	total: 5.03ms	remaining: 498ms
1:	learn: 42.1130223	total: 8.85ms	remaining: 434ms
2:	learn: 41.1753409	total: 12.9ms	remaining: 417ms
3:	learn: 40.3637444	total: 17ms	remaining: 407ms
4:	learn: 39.6508088	total: 21.6ms	remaining: 410ms
5:	learn: 38.7217934	total: 25.5ms	remaining: 399ms
6:	learn: 37.8538055	total: 29.2ms	remaining: 388ms
7:	learn: 36.9793574	total: 33.3ms	remaining: 383ms
8:	learn: 36.3076984	total: 37.8ms	remaining: 383ms
9:	learn: 35.6673160	total: 41.8ms	remaining: 376ms
10:	learn: 34.8889800	total: 45.6ms	remaining: 369ms
11:	learn: 34.1675517	total: 49.6ms	remaining: 364ms
12:	learn: 33.6779564	total: 53.7ms	remaining: 360ms
13:	learn: 33.0710039	total: 57.8ms	remaining: 355ms
14:	learn: 32.4966674	total: 61.7ms	remaining: 350ms
15:	learn: 31.9492856	total: 66.1ms	remaining: 347ms
16:	learn: 31.5108129	total: 70.3ms	remaining: 343ms
17:	learn: 30.9804023	total: 74.6ms	remaining: 340ms
18:	learn: 30.4169089	total: 78.4ms	remaining: 334ms
19:	learn: 29.8930375	total: 82.7ms	remaining: 331ms
20:	learn: 29.3974421	total: 87.4ms	remaining: 329ms
21:	learn: 28.8792307	total: 92.2ms	remaining: 327ms
22:	learn: 28.3894474	total: 96.5ms	remaining: 323ms
23:	learn: 27.9921276	total: 101ms	remaining: 320ms
24:	learn: 27.6158887	total: 105ms	remaining: 316ms
25:	learn: 27.2866950	total: 110ms	remaining: 314ms
26:	learn: 26.8770708	total: 114ms	remaining: 309ms
27:	learn: 26.6233005	total: 122ms	remaining: 313ms
28:	learn: 26.2921934	total: 131ms	remaining: 320ms
29:	learn: 25.9156920	total: 139ms	remaining: 325ms
30:	learn: 25.5311106	total: 142ms	remaining: 316ms
31:	learn: 25.2178997	total: 149ms	remaining: 317ms
32:	learn: 24.8572196	total: 155ms	remaining: 314ms
33:	learn: 24.5849710	total: 160ms	remaining: 311ms
34:	learn: 24.2209190	total: 165ms	remaining: 307ms
35:	learn: 23.8708250	total: 170ms	remaining: 303ms
36:	learn: 23.5325279	total: 175ms	remaining: 299ms
37:	learn: 23.2116148	total: 181ms	remaining: 295ms
38:	learn: 22.9696787	total: 186ms	remaining: 290ms
39:	learn: 22.7936783	total: 191ms	remaining: 286ms
40:	learn: 22.6228847	total: 196ms	remaining: 282ms
41:	learn: 22.3691527	total: 201ms	remaining: 277ms
42:	learn: 22.1002173	total: 206ms	remaining: 273ms
43:	learn: 21.9157268	total: 210ms	remaining: 268ms
44:	learn: 21.7229102	total: 216ms	remaining: 264ms
45:	learn: 21.4642005	total: 223ms	remaining: 261ms
46:	learn: 21.3029442	total: 227ms	remaining: 256ms
47:	learn: 21.1469792	total: 232ms	remaining: 251ms
48:	learn: 20.9458235	total: 237ms	remaining: 246ms
49:	learn: 20.7335242	total: 241ms	remaining: 241ms
50:	learn: 20.5440269	total: 245ms	remaining: 236ms
51:	learn: 20.3661449	total: 250ms	remaining: 231ms
52:	learn: 20.2158134	total: 254ms	remaining: 226ms
53:	learn: 19.9934873	total: 259ms	remaining: 220ms
54:	learn: 19.7879739	total: 263ms	remaining: 215ms
55:	learn: 19.6630460	total: 268ms	remaining: 211ms
56:	learn: 19.5152729	total: 272ms	remaining: 205ms
57:	learn: 19.3581128	total: 277ms	remaining: 200ms
58:	learn: 19.2209303	total: 281ms	remaining: 196ms
59:	learn: 19.0965248	total: 286ms	remaining: 191ms
60:	learn: 19.0035954	total: 291ms	remaining: 186ms
61:	learn: 18.8554149	total: 295ms	remaining: 181ms
62:	learn: 18.7095427	total: 300ms	remaining: 176ms
63:	learn: 18.5751494	total: 304ms	remaining: 171ms
64:	learn: 18.4678251	total: 309ms	remaining: 166ms
65:	learn: 18.3500325	total: 313ms	remaining: 161ms
66:	learn: 18.2088983	total: 320ms	remaining: 158ms
67:	learn: 18.0737705	total: 327ms	remaining: 154ms
68:	learn: 17.9325058	total: 335ms	remaining: 150ms
69:	learn: 17.8003911	total: 343ms	remaining: 147ms
70:	learn: 17.7385366	total: 351ms	remaining: 143ms
71:	learn: 17.6106998	total: 356ms	remaining: 138ms
72:	learn: 17.4816270	total: 361ms	remaining: 133ms
73:	learn: 17.4025554	total: 366ms	remaining: 129ms
74:	learn: 17.2902108	total: 371ms	remaining: 124ms
75:	learn: 17.2158048	total: 376ms	remaining: 119ms
76:	learn: 17.1261053	total: 381ms	remaining: 114ms
77:	learn: 17.0308917	total: 387ms	remaining: 109ms
78:	learn: 16.9546705	total: 392ms	remaining: 104ms
79:	learn: 16.8319165	total: 397ms	remaining: 99.3ms
80:	learn: 16.7687017	total: 402ms	remaining: 94.4ms
81:	learn: 16.6972326	total: 407ms	remaining: 89.4ms
82:	learn: 16.6124580	total: 412ms	remaining: 84.4ms
83:	learn: 16.4999052	total: 417ms	remaining: 79.5ms
84:	learn: 16.4302484	total: 423ms	remaining: 74.6ms
85:	learn: 16.3201363	total: 427ms	remaining: 69.5ms
86:	learn: 16.2534314	total: 431ms	remaining: 64.4ms
87:	learn: 16.1720485	total: 435ms	remaining: 59.4ms
88:	learn: 16.0625751	total: 440ms	remaining: 54.3ms
89:	learn: 15.9135088	total: 444ms	remaining: 49.3ms
90:	learn: 15.8658863	total: 448ms	remaining: 44.3ms
91:	learn: 15.8066805	total: 452ms	remaining: 39.3ms
92:	learn: 15.7412103	total: 457ms	remaining: 34.4ms
93:	learn: 15.6542776	total: 461ms	remaining: 29.4ms
94:	learn: 15.5760334	total: 465ms	remaining: 24.5ms
95:	learn: 15.5434131	total: 470ms	remaining: 19.6ms
96:	learn: 15.4709561	total: 474ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 478ms	remaining: 9.75ms
98:	learn: 15.3752761	total: 483ms	remaining: 4.88ms
99:	learn: 15.3106595	total: 487ms	remaining: 0us
0:	learn: 46.7142257	total: 5.8ms	remaining: 574ms
1:	learn: 45.7634153	total: 11.4ms	remaining: 560ms
2:	learn: 45.0054253	total: 19.4ms	remaining: 626ms
3:	learn: 44.2120432	total: 24.7ms	remaining: 593ms
4:	learn: 43.3960472	total: 29.6ms	remaining: 562ms
5:	learn: 42.8588120	total: 34.6ms	remaining: 542ms
6:	learn: 41.9533701	total: 40ms	remaining: 531ms
7:	learn: 41.2745030	total: 44.8ms	remaining: 516ms
8:	learn: 40.6797495	total: 49.9ms	remaining: 504ms
9:	learn: 39.9899571	total: 55.2ms	remaining: 497ms
10:	learn: 39.4682100	total: 60.1ms	remaining: 487ms
11:	learn: 39.0305595	total: 64.9ms	remaining: 476ms
12:	learn: 38.4200417	total: 70.1ms	remaining: 469ms
13:	learn: 37.8425194	total: 75.9ms	remaining: 466ms
14:	learn: 37.4203127	total: 79.7ms	remaining: 452ms
15:	learn: 36.9917688	total: 84.2ms	remaining: 442ms
16:	learn: 36.5544138	total: 88.3ms	remaining: 431ms
17:	learn: 36.0727019	total: 92.5ms	remaining: 421ms
18:	learn: 35.4835715	total: 96.5ms	remaining: 412ms
19:	learn: 34.9865654	total: 101ms	remaining: 402ms
20:	learn: 34.6063373	total: 104ms	remaining: 393ms
21:	learn: 34.0997289	total: 109ms	remaining: 385ms
22:	learn: 33.7313171	total: 113ms	remaining: 377ms
23:	learn: 33.3582000	total: 117ms	remaining: 371ms
24:	learn: 32.9432456	total: 121ms	remaining: 363ms
25:	learn: 32.5220888	total: 125ms	remaining: 356ms
26:	learn: 32.2172292	total: 129ms	remaining: 350ms
27:	learn: 31.8972904	total: 133ms	remaining: 342ms
28:	learn: 31.6405350	total: 137ms	remaining: 336ms
29:	learn: 31.4167702	total: 141ms	remaining: 330ms
30:	learn: 30.8541961	total: 143ms	remaining: 319ms
31:	learn: 30.5572111	total: 148ms	remaining: 314ms
32:	learn: 30.1700399	total: 152ms	remaining: 310ms
33:	learn: 29.8537271	total: 157ms	remaining: 305ms
34:	learn: 29.6192540	total: 162ms	remaining: 301ms
35:	learn: 29.3276362	total: 166ms	remaining: 296ms
36:	learn: 28.9985179	total: 171ms	remaining: 291ms
37:	learn: 28.7046880	total: 175ms	remaining: 286ms
38:	learn: 28.4412677	total: 180ms	remaining: 282ms
39:	learn: 28.1277292	total: 188ms	remaining: 282ms
40:	learn: 27.9000750	total: 200ms	remaining: 288ms
41:	learn: 27.5433162	total: 206ms	remaining: 285ms
42:	learn: 27.2493285	total: 212ms	remaining: 281ms
43:	learn: 26.9576632	total: 215ms	remaining: 273ms
44:	learn: 26.6177110	total: 220ms	remaining: 269ms
45:	learn: 26.2812456	total: 225ms	remaining: 265ms
46:	learn: 26.0803859	total: 230ms	remaining: 260ms
47:	learn: 25.9543581	total: 235ms	remaining: 255ms
48:	learn: 25.7951582	total: 241ms	remaining: 250ms
49:	learn: 25.6548184	total: 246ms	remaining: 246ms
50:	learn: 25.4010843	total: 250ms	remaining: 241ms
51:	learn: 24.9773937	total: 256ms	remaining: 236ms
52:	learn: 24.8026156	total: 261ms	remaining: 232ms
53:	learn: 24.5568053	total: 266ms	remaining: 227ms
54:	learn: 24.2281839	total: 270ms	remaining: 221ms
55:	learn: 23.9202795	total: 275ms	remaining: 216ms
56:	learn: 23.7625591	total: 279ms	remaining: 210ms
57:	learn: 23.5429721	total: 283ms	remaining: 205ms
58:	learn: 23.3175893	total: 287ms	remaining: 200ms
59:	learn: 23.2035130	total: 291ms	remaining: 194ms
60:	learn: 23.0232450	total: 296ms	remaining: 189ms
61:	learn: 22.8384958	total: 301ms	remaining: 184ms
62:	learn: 22.6499902	total: 305ms	remaining: 179ms
63:	learn: 22.4577426	total: 309ms	remaining: 174ms
64:	learn: 22.3333158	total: 314ms	remaining: 169ms
65:	learn: 22.2064131	total: 318ms	remaining: 164ms
66:	learn: 22.1434971	total: 322ms	remaining: 158ms
67:	learn: 21.9596519	total: 325ms	remaining: 153ms
68:	learn: 21.8475576	total: 330ms	remaining: 148ms
69:	learn: 21.6954745	total: 334ms	remaining: 143ms
70:	learn: 21.5635976	total: 339ms	remaining: 138ms
71:	learn: 21.4588506	total: 344ms	remaining: 134ms
72:	learn: 21.3527268	total: 348ms	remaining: 129ms
73:	learn: 21.2661288	total: 352ms	remaining: 124ms
74:	learn: 21.1817333	total: 357ms	remaining: 119ms
75:	learn: 21.0527553	total: 361ms	remaining: 114ms
76:	learn: 20.9229021	total: 369ms	remaining: 110ms
77:	learn: 20.7563946	total: 377ms	remaining: 106ms
78:	learn: 20.6569831	total: 386ms	remaining: 103ms
79:	learn: 20.4982663	total: 393ms	remaining: 98.2ms
80:	learn: 20.3185460	total: 403ms	remaining: 94.6ms
81:	learn: 20.2096241	total: 409ms	remaining: 89.7ms
82:	learn: 20.1274891	total: 414ms	remaining: 84.8ms
83:	learn: 20.0740139	total: 419ms	remaining: 79.8ms
84:	learn: 19.9630699	total: 424ms	remaining: 74.9ms
85:	learn: 19.8753899	total: 430ms	remaining: 69.9ms
86:	learn: 19.6563612	total: 435ms	remaining: 65ms
87:	learn: 19.4680232	total: 440ms	remaining: 60ms
88:	learn: 19.3503431	total: 444ms	remaining: 54.9ms
89:	learn: 19.2221379	total: 449ms	remaining: 49.9ms
90:	learn: 19.0732542	total: 454ms	remaining: 44.9ms
91:	learn: 18.9825190	total: 460ms	remaining: 40ms
92:	learn: 18.8839009	total: 464ms	remaining: 34.9ms
93:	learn: 18.8012219	total: 468ms	remaining: 29.9ms
94:	learn: 18.7172713	total: 472ms	remaining: 24.9ms
95:	learn: 18.6201170	total: 477ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 481ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 485ms	remaining: 9.89ms
98:	learn: 18.3289700	total: 489ms	remaining: 4.93ms
99:	learn: 18.2227333	total: 492ms	remaining: 0us
0:	learn: 46.3764524	total: 4.54ms	remaining: 449ms
1:	learn: 45.5561269	total: 8.78ms	remaining: 430ms
2:	learn: 44.8811245	total: 13.1ms	remaining: 424ms
3:	learn: 44.0788617	total: 17.6ms	remaining: 422ms
4:	learn: 43.3619790	total: 22.7ms	remaining: 431ms
5:	learn: 42.6912112	total: 31.8ms	remaining: 499ms
6:	learn: 42.2292118	total: 39ms	remaining: 518ms
7:	learn: 41.7725191	total: 49.9ms	remaining: 573ms
8:	learn: 41.1676614	total: 57ms	remaining: 576ms
9:	learn: 40.5771076	total: 61.8ms	remaining: 556ms
10:	learn: 39.8343757	total: 67.2ms	remaining: 544ms
11:	learn: 39.3761142	total: 72.4ms	remaining: 531ms
12:	learn: 38.5254692	total: 77ms	remaining: 516ms
13:	learn: 37.9629555	total: 82.5ms	remaining: 507ms
14:	learn: 37.4418438	total: 87.5ms	remaining: 496ms
15:	learn: 37.0507283	total: 92.5ms	remaining: 486ms
16:	learn: 36.6264217	total: 98.2ms	remaining: 480ms
17:	learn: 36.1114940	total: 103ms	remaining: 471ms
18:	learn: 35.7193862	total: 108ms	remaining: 463ms
19:	learn: 35.3301177	total: 113ms	remaining: 454ms
20:	learn: 35.0598280	total: 119ms	remaining: 447ms
21:	learn: 34.5469736	total: 124ms	remaining: 439ms
22:	learn: 34.2064215	total: 130ms	remaining: 434ms
23:	learn: 33.7280710	total: 135ms	remaining: 427ms
24:	learn: 33.3282940	total: 140ms	remaining: 419ms
25:	learn: 32.8478961	total: 144ms	remaining: 410ms
26:	learn: 32.5722164	total: 148ms	remaining: 400ms
27:	learn: 32.2457019	total: 152ms	remaining: 392ms
28:	learn: 31.9230495	total: 157ms	remaining: 383ms
29:	learn: 31.4311611	total: 161ms	remaining: 375ms
30:	learn: 30.9179052	total: 165ms	remaining: 367ms
31:	learn: 30.6201141	total: 169ms	remaining: 359ms
32:	learn: 30.3421106	total: 173ms	remaining: 352ms
33:	learn: 29.9885373	total: 177ms	remaining: 344ms
34:	learn: 29.7462780	total: 181ms	remaining: 336ms
35:	learn: 29.3607153	total: 185ms	remaining: 329ms
36:	learn: 29.1793078	total: 189ms	remaining: 322ms
37:	learn: 28.9276538	total: 193ms	remaining: 316ms
38:	learn: 28.6903934	total: 197ms	remaining: 309ms
39:	learn: 28.2095033	total: 201ms	remaining: 302ms
40:	learn: 27.7990608	total: 207ms	remaining: 297ms
41:	learn: 27.5406632	total: 211ms	remaining: 291ms
42:	learn: 27.2575376	total: 215ms	remaining: 285ms
43:	learn: 26.9741707	total: 219ms	remaining: 279ms
44:	learn: 26.6606899	total: 225ms	remaining: 275ms
45:	learn: 26.4015833	total: 229ms	remaining: 269ms
46:	learn: 26.1828993	total: 233ms	remaining: 263ms
47:	learn: 26.0233709	total: 236ms	remaining: 256ms
48:	learn: 25.9300399	total: 241ms	remaining: 251ms
49:	learn: 25.5861489	total: 245ms	remaining: 245ms
50:	learn: 25.4322012	total: 250ms	remaining: 240ms
51:	learn: 25.1595644	total: 256ms	remaining: 236ms
52:	learn: 24.9955303	total: 263ms	remaining: 233ms
53:	learn: 24.7273966	total: 270ms	remaining: 230ms
54:	learn: 24.5747978	total: 278ms	remaining: 228ms
55:	learn: 24.3807977	total: 286ms	remaining: 225ms
56:	learn: 24.1689569	total: 291ms	remaining: 220ms
57:	learn: 23.9898221	total: 296ms	remaining: 215ms
58:	learn: 23.7566414	total: 301ms	remaining: 209ms
59:	learn: 23.6641165	total: 306ms	remaining: 204ms
60:	learn: 23.5658066	total: 312ms	remaining: 199ms
61:	learn: 23.4338851	total: 317ms	remaining: 194ms
62:	learn: 23.2408837	total: 321ms	remaining: 189ms
63:	learn: 23.0642038	total: 326ms	remaining: 184ms
64:	learn: 22.9032045	total: 331ms	remaining: 178ms
65:	learn: 22.7736138	total: 336ms	remaining: 173ms
66:	learn: 22.6836443	total: 340ms	remaining: 168ms
67:	learn: 22.5983654	total: 345ms	remaining: 163ms
68:	learn: 22.4419813	total: 351ms	remaining: 158ms
69:	learn: 22.2863339	total: 356ms	remaining: 152ms
70:	learn: 22.1792943	total: 361ms	remaining: 147ms
71:	learn: 22.1130574	total: 365ms	remaining: 142ms
72:	learn: 21.9858161	total: 369ms	remaining: 136ms
73:	learn: 21.8577784	total: 373ms	remaining: 131ms
74:	learn: 21.7845222	total: 377ms	remaining: 126ms
75:	learn: 21.6831390	total: 381ms	remaining: 120ms
76:	learn: 21.6292521	total: 385ms	remaining: 115ms
77:	learn: 21.5789330	total: 389ms	remaining: 110ms
78:	learn: 21.5420942	total: 393ms	remaining: 104ms
79:	learn: 21.4280939	total: 397ms	remaining: 99.2ms
80:	learn: 21.3641165	total: 401ms	remaining: 94ms
81:	learn: 21.2734814	total: 405ms	remaining: 88.9ms
82:	learn: 21.2220323	total: 409ms	remaining: 83.8ms
83:	learn: 21.0625792	total: 413ms	remaining: 78.7ms
84:	learn: 20.9488320	total: 418ms	remaining: 73.7ms
85:	learn: 20.8504255	total: 422ms	remaining: 68.8ms
86:	learn: 20.7848510	total: 427ms	remaining: 63.8ms
87:	learn: 20.7247442	total: 432ms	remaining: 58.9ms
88:	learn: 20.5698590	total: 436ms	remaining: 53.9ms
89:	learn: 20.4067620	total: 440ms	remaining: 48.9ms
90:	learn: 20.3062482	total: 444ms	remaining: 44ms
91:	learn: 20.2029696	total: 449ms	remaining: 39ms
92:	learn: 20.1384849	total: 454ms	remaining: 34.1ms
93:	learn: 20.0260709	total: 462ms	remaining: 29.5ms
94:	learn: 19.9122100	total: 470ms	remaining: 24.7ms
95:	learn: 19.8648487	total: 478ms	remaining: 19.9ms
96:	learn: 19.8207072	total: 485ms	remaining: 15ms
97:	learn: 19.7261189	total: 490ms	remaining: 10ms
98:	learn: 19.7042438	total: 495ms	remaining: 5ms
99:	learn: 19.6546645	total: 501ms	remaining: 0us
0:	learn: 47.0239288	total: 4.42ms	remaining: 437ms
1:	learn: 46.2253829	total: 8.86ms	remaining: 434ms
2:	learn: 45.5580301	total: 12.7ms	remaining: 409ms
3:	learn: 44.7273237	total: 16.6ms	remaining: 398ms
4:	learn: 43.8867421	total: 20.5ms	remaining: 389ms
5:	learn: 43.3615911	total: 24.7ms	remaining: 387ms
6:	learn: 42.8548390	total: 28.4ms	remaining: 378ms
7:	learn: 42.1606758	total: 32.1ms	remaining: 369ms
8:	learn: 41.6625870	total: 35.9ms	remaining: 363ms
9:	learn: 40.9497092	total: 39.7ms	remaining: 357ms
10:	learn: 40.1886318	total: 43.9ms	remaining: 355ms
11:	learn: 39.7456423	total: 48.5ms	remaining: 355ms
12:	learn: 39.1171373	total: 52.7ms	remaining: 353ms
13:	learn: 38.5451069	total: 57.3ms	remaining: 352ms
14:	learn: 38.0155834	total: 62.1ms	remaining: 352ms
15:	learn: 37.5631354	total: 66.5ms	remaining: 349ms
16:	learn: 37.1030023	total: 70.7ms	remaining: 345ms
17:	learn: 36.4563029	total: 75.6ms	remaining: 344ms
18:	learn: 36.0160976	total: 80.3ms	remaining: 342ms
19:	learn: 35.5079827	total: 84.8ms	remaining: 339ms
20:	learn: 35.2111885	total: 89.5ms	remaining: 337ms
21:	learn: 34.9397465	total: 94.1ms	remaining: 334ms
22:	learn: 34.5270048	total: 98.6ms	remaining: 330ms
23:	learn: 34.0169260	total: 103ms	remaining: 327ms
24:	learn: 33.7454892	total: 109ms	remaining: 328ms
25:	learn: 33.2648157	total: 117ms	remaining: 334ms
26:	learn: 32.8899427	total: 128ms	remaining: 347ms
27:	learn: 32.6185050	total: 135ms	remaining: 346ms
28:	learn: 32.3528531	total: 142ms	remaining: 347ms
29:	learn: 32.0859923	total: 147ms	remaining: 344ms
30:	learn: 31.6511144	total: 153ms	remaining: 341ms
31:	learn: 31.2571765	total: 158ms	remaining: 337ms
32:	learn: 30.9770049	total: 164ms	remaining: 333ms
33:	learn: 30.6084872	total: 169ms	remaining: 328ms
34:	learn: 30.3448632	total: 174ms	remaining: 323ms
35:	learn: 30.0360942	total: 179ms	remaining: 318ms
36:	learn: 29.6648968	total: 185ms	remaining: 314ms
37:	learn: 29.3165114	total: 190ms	remaining: 309ms
38:	learn: 29.0829198	total: 195ms	remaining: 305ms
39:	learn: 28.7752064	total: 200ms	remaining: 300ms
40:	learn: 28.3622191	total: 205ms	remaining: 296ms
41:	learn: 28.1346631	total: 211ms	remaining: 291ms
42:	learn: 27.9585719	total: 215ms	remaining: 285ms
43:	learn: 27.6565566	total: 219ms	remaining: 278ms
44:	learn: 27.3616172	total: 223ms	remaining: 272ms
45:	learn: 27.0658637	total: 227ms	remaining: 266ms
46:	learn: 26.8660382	total: 231ms	remaining: 260ms
47:	learn: 26.6536078	total: 235ms	remaining: 255ms
48:	learn: 26.3524440	total: 239ms	remaining: 249ms
49:	learn: 26.1595277	total: 243ms	remaining: 243ms
50:	learn: 25.9273523	total: 247ms	remaining: 237ms
51:	learn: 25.7195580	total: 252ms	remaining: 232ms
52:	learn: 25.5730225	total: 256ms	remaining: 227ms
53:	learn: 25.3455276	total: 260ms	remaining: 221ms
54:	learn: 25.2289675	total: 264ms	remaining: 216ms
55:	learn: 25.0133024	total: 268ms	remaining: 211ms
56:	learn: 24.8406714	total: 272ms	remaining: 205ms
57:	learn: 24.6367857	total: 276ms	remaining: 200ms
58:	learn: 24.5338177	total: 281ms	remaining: 195ms
59:	learn: 24.3799964	total: 285ms	remaining: 190ms
60:	learn: 24.1447492	total: 289ms	remaining: 185ms
61:	learn: 23.9880495	total: 294ms	remaining: 180ms
62:	learn: 23.7140630	total: 298ms	remaining: 175ms
63:	learn: 23.5003791	total: 303ms	remaining: 170ms
64:	learn: 23.3207645	total: 310ms	remaining: 167ms
65:	learn: 23.1958356	total: 317ms	remaining: 163ms
66:	learn: 23.0471302	total: 325ms	remaining: 160ms
67:	learn: 22.8977183	total: 332ms	remaining: 156ms
68:	learn: 22.7187400	total: 339ms	remaining: 152ms
69:	learn: 22.6523405	total: 345ms	remaining: 148ms
70:	learn: 22.4767453	total: 349ms	remaining: 143ms
71:	learn: 22.3243677	total: 354ms	remaining: 138ms
72:	learn: 22.2133096	total: 359ms	remaining: 133ms
73:	learn: 22.1151713	total: 364ms	remaining: 128ms
74:	learn: 22.0296666	total: 369ms	remaining: 123ms
75:	learn: 21.9195980	total: 374ms	remaining: 118ms
76:	learn: 21.8401730	total: 379ms	remaining: 113ms
77:	learn: 21.8079797	total: 384ms	remaining: 108ms
78:	learn: 21.7274109	total: 389ms	remaining: 103ms
79:	learn: 21.6663032	total: 394ms	remaining: 98.4ms
80:	learn: 21.5633117	total: 398ms	remaining: 93.4ms
81:	learn: 21.4542467	total: 404ms	remaining: 88.6ms
82:	learn: 21.3177957	total: 409ms	remaining: 83.8ms
83:	learn: 21.1289167	total: 414ms	remaining: 78.8ms
84:	learn: 21.0297368	total: 417ms	remaining: 73.7ms
85:	learn: 20.9089564	total: 421ms	remaining: 68.6ms
86:	learn: 20.7653988	total: 426ms	remaining: 63.6ms
87:	learn: 20.6521894	total: 430ms	remaining: 58.6ms
88:	learn: 20.5193021	total: 434ms	remaining: 53.6ms
89:	learn: 20.4361620	total: 438ms	remaining: 48.6ms
90:	learn: 20.3546710	total: 442ms	remaining: 43.7ms
91:	learn: 20.2513296	total: 446ms	remaining: 38.8ms
92:	learn: 20.1605550	total: 451ms	remaining: 33.9ms
93:	learn: 20.0515942	total: 455ms	remaining: 29.1ms
94:	learn: 19.9800764	total: 460ms	remaining: 24.2ms
95:	learn: 19.8996532	total: 464ms	remaining: 19.3ms
96:	learn: 19.8450910	total: 469ms	remaining: 14.5ms
97:	learn: 19.7887346	total: 473ms	remaining: 9.66ms
98:	learn: 19.7230872	total: 478ms	remaining: 4.83ms
99:	learn: 19.6328825	total: 482ms	remaining: 0us
0:	learn: 27.5585353	total: 5.6ms	remaining: 555ms
1:	learn: 27.1656995	total: 12ms	remaining: 586ms
2:	learn: 26.8590175	total: 17.3ms	remaining: 559ms
3:	learn: 26.5818406	total: 22.3ms	remaining: 534ms
4:	learn: 26.1148663	total: 27.8ms	remaining: 528ms
5:	learn: 25.7690484	total: 33ms	remaining: 517ms
6:	learn: 25.3489206	total: 37.8ms	remaining: 502ms
7:	learn: 24.9542406	total: 43.8ms	remaining: 503ms
8:	learn: 24.6777517	total: 49.4ms	remaining: 499ms
9:	learn: 24.3242344	total: 54ms	remaining: 486ms
10:	learn: 24.0383073	total: 58.5ms	remaining: 474ms
11:	learn: 23.7383420	total: 63.6ms	remaining: 466ms
12:	learn: 23.3461670	total: 68ms	remaining: 455ms
13:	learn: 23.0928636	total: 72.3ms	remaining: 444ms
14:	learn: 22.8770414	total: 76.4ms	remaining: 433ms
15:	learn: 22.6323214	total: 80.6ms	remaining: 423ms
16:	learn: 22.3597072	total: 84.8ms	remaining: 414ms
17:	learn: 22.1079813	total: 88.8ms	remaining: 405ms
18:	learn: 21.8421199	total: 92.9ms	remaining: 396ms
19:	learn: 21.6576508	total: 97.5ms	remaining: 390ms
20:	learn: 21.4301268	total: 102ms	remaining: 383ms
21:	learn: 21.2287388	total: 106ms	remaining: 375ms
22:	learn: 21.0553872	total: 110ms	remaining: 368ms
23:	learn: 20.8977091	total: 114ms	remaining: 361ms
24:	learn: 20.6619051	total: 119ms	remaining: 356ms
25:	learn: 20.5040955	total: 123ms	remaining: 351ms
26:	learn: 20.3181195	total: 128ms	remaining: 345ms
27:	learn: 20.0869436	total: 133ms	remaining: 341ms
28:	learn: 19.9375985	total: 137ms	remaining: 335ms
29:	learn: 19.8247516	total: 142ms	remaining: 330ms
30:	learn: 19.6261697	total: 146ms	remaining: 325ms
31:	learn: 19.4547236	total: 151ms	remaining: 321ms
32:	learn: 19.3157092	total: 159ms	remaining: 323ms
33:	learn: 19.1561419	total: 167ms	remaining: 323ms
34:	learn: 19.0453620	total: 176ms	remaining: 326ms
35:	learn: 18.8738574	total: 181ms	remaining: 323ms
36:	learn: 18.7072907	total: 188ms	remaining: 320ms
37:	learn: 18.5877943	total: 193ms	remaining: 314ms
38:	learn: 18.4436380	total: 198ms	remaining: 309ms
39:	learn: 18.3463356	total: 203ms	remaining: 304ms
40:	learn: 18.2008059	total: 208ms	remaining: 299ms
41:	learn: 18.0582079	total: 213ms	remaining: 294ms
42:	learn: 17.8891982	total: 218ms	remaining: 289ms
43:	learn: 17.7332246	total: 223ms	remaining: 284ms
44:	learn: 17.6206421	total: 228ms	remaining: 279ms
45:	learn: 17.4982800	total: 233ms	remaining: 273ms
46:	learn: 17.3970150	total: 238ms	remaining: 268ms
47:	learn: 17.3058203	total: 243ms	remaining: 263ms
48:	learn: 17.1789256	total: 248ms	remaining: 258ms
49:	learn: 17.0916229	total: 253ms	remaining: 253ms
50:	learn: 16.9859820	total: 258ms	remaining: 248ms
51:	learn: 16.8995582	total: 262ms	remaining: 242ms
52:	learn: 16.8137014	total: 266ms	remaining: 236ms
53:	learn: 16.7021451	total: 270ms	remaining: 230ms
54:	learn: 16.5895582	total: 274ms	remaining: 225ms
55:	learn: 16.5015639	total: 279ms	remaining: 219ms
56:	learn: 16.4356637	total: 283ms	remaining: 213ms
57:	learn: 16.3514525	total: 287ms	remaining: 208ms
58:	learn: 16.2401369	total: 291ms	remaining: 202ms
59:	learn: 16.1293223	total: 295ms	remaining: 197ms
60:	learn: 16.0271167	total: 299ms	remaining: 191ms
61:	learn: 15.9126257	total: 303ms	remaining: 186ms
62:	learn: 15.8391096	total: 307ms	remaining: 181ms
63:	learn: 15.7441773	total: 312ms	remaining: 175ms
64:	learn: 15.6885195	total: 316ms	remaining: 170ms
65:	learn: 15.6052039	total: 321ms	remaining: 165ms
66:	learn: 15.5074202	total: 326ms	remaining: 160ms
67:	learn: 15.4054338	total: 331ms	remaining: 156ms
68:	learn: 15.2885714	total: 335ms	remaining: 151ms
69:	learn: 15.2157472	total: 340ms	remaining: 146ms
70:	learn: 15.1031554	total: 344ms	remaining: 140ms
71:	learn: 15.0237470	total: 348ms	remaining: 136ms
72:	learn: 14.9756825	total: 356ms	remaining: 132ms
73:	learn: 14.8840596	total: 364ms	remaining: 128ms
74:	learn: 14.8077061	total: 374ms	remaining: 125ms
75:	learn: 14.7444437	total: 381ms	remaining: 120ms
76:	learn: 14.6751720	total: 387ms	remaining: 116ms
77:	learn: 14.5830333	total: 392ms	remaining: 111ms
78:	learn: 14.5241206	total: 397ms	remaining: 106ms
79:	learn: 14.4892731	total: 402ms	remaining: 101ms
80:	learn: 14.4256605	total: 407ms	remaining: 95.5ms
81:	learn: 14.3666860	total: 412ms	remaining: 90.5ms
82:	learn: 14.2938372	total: 417ms	remaining: 85.5ms
83:	learn: 14.2161532	total: 423ms	remaining: 80.5ms
84:	learn: 14.1582910	total: 428ms	remaining: 75.5ms
85:	learn: 14.1029153	total: 433ms	remaining: 70.5ms
86:	learn: 14.0475835	total: 438ms	remaining: 65.4ms
87:	learn: 13.9892661	total: 443ms	remaining: 60.4ms
88:	learn: 13.9481628	total: 448ms	remaining: 55.4ms
89:	learn: 13.8483991	total: 453ms	remaining: 50.3ms
90:	learn: 13.7775614	total: 457ms	remaining: 45.2ms
91:	learn: 13.7304585	total: 461ms	remaining: 40ms
92:	learn: 13.6783381	total: 465ms	remaining: 35ms
93:	learn: 13.6356964	total: 468ms	remaining: 29.9ms
94:	learn: 13.5924371	total: 473ms	remaining: 24.9ms
95:	learn: 13.5400746	total: 477ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 481ms	remaining: 14.9ms
97:	learn: 13.4470321	total: 486ms	remaining: 9.91ms
98:	learn: 13.3856082	total: 490ms	remaining: 4.95ms
99:	learn: 13.3082371	total: 496ms	remaining: 0us
0:	learn: 43.0395283	total: 8.58ms	remaining: 849ms
1:	learn: 42.1130223	total: 17.1ms	remaining: 838ms
2:	learn: 41.1753409	total: 28.7ms	remaining: 927ms
3:	learn: 40.3637444	total: 36.9ms	remaining: 885ms
4:	learn: 39.6508088	total: 42.7ms	remaining: 811ms
5:	learn: 38.7217934	total: 48.5ms	remaining: 760ms
6:	learn: 37.8538055	total: 54.3ms	remaining: 721ms
7:	learn: 36.9793574	total: 60.1ms	remaining: 692ms
8:	learn: 36.3076984	total: 66.1ms	remaining: 668ms
9:	learn: 35.6673160	total: 71.8ms	remaining: 646ms
10:	learn: 34.8889800	total: 77.3ms	remaining: 625ms
11:	learn: 34.1675517	total: 83.1ms	remaining: 609ms
12:	learn: 33.6779564	total: 89ms	remaining: 596ms
13:	learn: 33.0710039	total: 93.6ms	remaining: 575ms
14:	learn: 32.4966674	total: 99.3ms	remaining: 563ms
15:	learn: 31.9492856	total: 105ms	remaining: 550ms
16:	learn: 31.5108129	total: 109ms	remaining: 534ms
17:	learn: 30.9804023	total: 113ms	remaining: 517ms
18:	learn: 30.4169089	total: 118ms	remaining: 501ms
19:	learn: 29.8930375	total: 121ms	remaining: 485ms
20:	learn: 29.3974421	total: 125ms	remaining: 471ms
21:	learn: 28.8792307	total: 129ms	remaining: 458ms
22:	learn: 28.3894474	total: 133ms	remaining: 447ms
23:	learn: 27.9921276	total: 137ms	remaining: 435ms
24:	learn: 27.6158887	total: 141ms	remaining: 424ms
25:	learn: 27.2866950	total: 145ms	remaining: 414ms
26:	learn: 26.8770708	total: 150ms	remaining: 405ms
27:	learn: 26.6233005	total: 154ms	remaining: 395ms
28:	learn: 26.2921934	total: 158ms	remaining: 387ms
29:	learn: 25.9156920	total: 162ms	remaining: 379ms
30:	learn: 25.5311106	total: 164ms	remaining: 365ms
31:	learn: 25.2178997	total: 168ms	remaining: 358ms
32:	learn: 24.8572196	total: 172ms	remaining: 350ms
33:	learn: 24.5849710	total: 177ms	remaining: 343ms
34:	learn: 24.2209190	total: 181ms	remaining: 337ms
35:	learn: 23.8708250	total: 186ms	remaining: 331ms
36:	learn: 23.5325279	total: 190ms	remaining: 324ms
37:	learn: 23.2116148	total: 195ms	remaining: 318ms
38:	learn: 22.9696787	total: 199ms	remaining: 311ms
39:	learn: 22.7936783	total: 203ms	remaining: 305ms
40:	learn: 22.6228847	total: 208ms	remaining: 299ms
41:	learn: 22.3691527	total: 216ms	remaining: 298ms
42:	learn: 22.1002173	total: 224ms	remaining: 297ms
43:	learn: 21.9157268	total: 231ms	remaining: 294ms
44:	learn: 21.7229102	total: 239ms	remaining: 292ms
45:	learn: 21.4642005	total: 244ms	remaining: 287ms
46:	learn: 21.3029442	total: 249ms	remaining: 281ms
47:	learn: 21.1469792	total: 254ms	remaining: 276ms
48:	learn: 20.9458235	total: 260ms	remaining: 270ms
49:	learn: 20.7335242	total: 265ms	remaining: 265ms
50:	learn: 20.5440269	total: 270ms	remaining: 259ms
51:	learn: 20.3661449	total: 275ms	remaining: 254ms
52:	learn: 20.2158134	total: 280ms	remaining: 249ms
53:	learn: 19.9934873	total: 285ms	remaining: 243ms
54:	learn: 19.7879739	total: 291ms	remaining: 238ms
55:	learn: 19.6630460	total: 295ms	remaining: 232ms
56:	learn: 19.5152729	total: 300ms	remaining: 226ms
57:	learn: 19.3581128	total: 305ms	remaining: 221ms
58:	learn: 19.2209303	total: 310ms	remaining: 216ms
59:	learn: 19.0965248	total: 315ms	remaining: 210ms
60:	learn: 19.0035954	total: 319ms	remaining: 204ms
61:	learn: 18.8554149	total: 323ms	remaining: 198ms
62:	learn: 18.7095427	total: 327ms	remaining: 192ms
63:	learn: 18.5751494	total: 332ms	remaining: 187ms
64:	learn: 18.4678251	total: 336ms	remaining: 181ms
65:	learn: 18.3500325	total: 341ms	remaining: 175ms
66:	learn: 18.2088983	total: 345ms	remaining: 170ms
67:	learn: 18.0737705	total: 349ms	remaining: 164ms
68:	learn: 17.9325058	total: 353ms	remaining: 159ms
69:	learn: 17.8003911	total: 358ms	remaining: 154ms
70:	learn: 17.7385366	total: 362ms	remaining: 148ms
71:	learn: 17.6106998	total: 367ms	remaining: 143ms
72:	learn: 17.4816270	total: 371ms	remaining: 137ms
73:	learn: 17.4025554	total: 376ms	remaining: 132ms
74:	learn: 17.2902108	total: 380ms	remaining: 127ms
75:	learn: 17.2158048	total: 385ms	remaining: 122ms
76:	learn: 17.1261053	total: 389ms	remaining: 116ms
77:	learn: 17.0308917	total: 394ms	remaining: 111ms
78:	learn: 16.9546705	total: 399ms	remaining: 106ms
79:	learn: 16.8319165	total: 404ms	remaining: 101ms
80:	learn: 16.7687017	total: 414ms	remaining: 97.1ms
81:	learn: 16.6972326	total: 423ms	remaining: 92.9ms
82:	learn: 16.6124580	total: 433ms	remaining: 88.7ms
83:	learn: 16.4999052	total: 441ms	remaining: 83.9ms
84:	learn: 16.4302484	total: 446ms	remaining: 78.6ms
85:	learn: 16.3201363	total: 451ms	remaining: 73.4ms
86:	learn: 16.2534314	total: 456ms	remaining: 68.1ms
87:	learn: 16.1720485	total: 461ms	remaining: 62.8ms
88:	learn: 16.0625751	total: 466ms	remaining: 57.6ms
89:	learn: 15.9135088	total: 481ms	remaining: 53.4ms
90:	learn: 15.8658863	total: 486ms	remaining: 48.1ms
91:	learn: 15.8066805	total: 491ms	remaining: 42.7ms
92:	learn: 15.7412103	total: 496ms	remaining: 37.4ms
93:	learn: 15.6542776	total: 502ms	remaining: 32.1ms
94:	learn: 15.5760334	total: 507ms	remaining: 26.7ms
95:	learn: 15.5434131	total: 512ms	remaining: 21.3ms
96:	learn: 15.4709561	total: 516ms	remaining: 16ms
97:	learn: 15.4449618	total: 520ms	remaining: 10.6ms
98:	learn: 15.3752761	total: 524ms	remaining: 5.3ms
99:	learn: 15.3106595	total: 528ms	remaining: 0us
0:	learn: 46.7142257	total: 4.94ms	remaining: 489ms
1:	learn: 45.7634153	total: 9.61ms	remaining: 471ms
2:	learn: 45.0054253	total: 14.2ms	remaining: 459ms
3:	learn: 44.2120432	total: 18.9ms	remaining: 454ms
4:	learn: 43.3960472	total: 23.2ms	remaining: 441ms
5:	learn: 42.8588120	total: 27.7ms	remaining: 433ms
6:	learn: 41.9533701	total: 32.3ms	remaining: 429ms
7:	learn: 41.2745030	total: 39.2ms	remaining: 451ms
8:	learn: 40.6797495	total: 46.5ms	remaining: 470ms
9:	learn: 39.9899571	total: 56.8ms	remaining: 511ms
10:	learn: 39.4682100	total: 62.8ms	remaining: 508ms
11:	learn: 39.0305595	total: 70.3ms	remaining: 516ms
12:	learn: 38.4200417	total: 75.7ms	remaining: 506ms
13:	learn: 37.8425194	total: 80.6ms	remaining: 495ms
14:	learn: 37.4203127	total: 85.7ms	remaining: 486ms
15:	learn: 36.9917688	total: 90.7ms	remaining: 476ms
16:	learn: 36.5544138	total: 96.2ms	remaining: 469ms
17:	learn: 36.0727019	total: 101ms	remaining: 462ms
18:	learn: 35.4835715	total: 106ms	remaining: 454ms
19:	learn: 34.9865654	total: 112ms	remaining: 447ms
20:	learn: 34.6063373	total: 117ms	remaining: 441ms
21:	learn: 34.0997289	total: 122ms	remaining: 434ms
22:	learn: 33.7313171	total: 128ms	remaining: 427ms
23:	learn: 33.3582000	total: 133ms	remaining: 421ms
24:	learn: 32.9432456	total: 139ms	remaining: 416ms
25:	learn: 32.5220888	total: 143ms	remaining: 406ms
26:	learn: 32.2172292	total: 147ms	remaining: 396ms
27:	learn: 31.8972904	total: 151ms	remaining: 387ms
28:	learn: 31.6405350	total: 155ms	remaining: 379ms
29:	learn: 31.4167702	total: 159ms	remaining: 371ms
30:	learn: 30.8541961	total: 161ms	remaining: 357ms
31:	learn: 30.5572111	total: 165ms	remaining: 350ms
32:	learn: 30.1700399	total: 169ms	remaining: 343ms
33:	learn: 29.8537271	total: 173ms	remaining: 336ms
34:	learn: 29.6192540	total: 177ms	remaining: 329ms
35:	learn: 29.3276362	total: 181ms	remaining: 322ms
36:	learn: 28.9985179	total: 185ms	remaining: 315ms
37:	learn: 28.7046880	total: 190ms	remaining: 309ms
38:	learn: 28.4412677	total: 194ms	remaining: 303ms
39:	learn: 28.1277292	total: 198ms	remaining: 296ms
40:	learn: 27.9000750	total: 202ms	remaining: 291ms
41:	learn: 27.5433162	total: 207ms	remaining: 286ms
42:	learn: 27.2493285	total: 211ms	remaining: 280ms
43:	learn: 26.9576632	total: 213ms	remaining: 271ms
44:	learn: 26.6177110	total: 217ms	remaining: 265ms
45:	learn: 26.2812456	total: 222ms	remaining: 260ms
46:	learn: 26.0803859	total: 226ms	remaining: 255ms
47:	learn: 25.9543581	total: 231ms	remaining: 250ms
48:	learn: 25.7951582	total: 236ms	remaining: 245ms
49:	learn: 25.6548184	total: 240ms	remaining: 240ms
50:	learn: 25.4010843	total: 245ms	remaining: 235ms
51:	learn: 24.9773937	total: 249ms	remaining: 230ms
52:	learn: 24.8026156	total: 258ms	remaining: 228ms
53:	learn: 24.5568053	total: 266ms	remaining: 227ms
54:	learn: 24.2281839	total: 275ms	remaining: 225ms
55:	learn: 23.9202795	total: 282ms	remaining: 222ms
56:	learn: 23.7625591	total: 287ms	remaining: 217ms
57:	learn: 23.5429721	total: 292ms	remaining: 212ms
58:	learn: 23.3175893	total: 297ms	remaining: 207ms
59:	learn: 23.2035130	total: 302ms	remaining: 201ms
60:	learn: 23.0232450	total: 308ms	remaining: 197ms
61:	learn: 22.8384958	total: 313ms	remaining: 192ms
62:	learn: 22.6499902	total: 318ms	remaining: 187ms
63:	learn: 22.4577426	total: 323ms	remaining: 182ms
64:	learn: 22.3333158	total: 329ms	remaining: 177ms
65:	learn: 22.2064131	total: 334ms	remaining: 172ms
66:	learn: 22.1434971	total: 339ms	remaining: 167ms
67:	learn: 21.9596519	total: 344ms	remaining: 162ms
68:	learn: 21.8475576	total: 350ms	remaining: 157ms
69:	learn: 21.6954745	total: 355ms	remaining: 152ms
70:	learn: 21.5635976	total: 360ms	remaining: 147ms
71:	learn: 21.4588506	total: 364ms	remaining: 141ms
72:	learn: 21.3527268	total: 368ms	remaining: 136ms
73:	learn: 21.2661288	total: 372ms	remaining: 131ms
74:	learn: 21.1817333	total: 376ms	remaining: 125ms
75:	learn: 21.0527553	total: 380ms	remaining: 120ms
76:	learn: 20.9229021	total: 384ms	remaining: 115ms
77:	learn: 20.7563946	total: 388ms	remaining: 110ms
78:	learn: 20.6569831	total: 392ms	remaining: 104ms
79:	learn: 20.4982663	total: 396ms	remaining: 99ms
80:	learn: 20.3185460	total: 401ms	remaining: 94ms
81:	learn: 20.2096241	total: 405ms	remaining: 88.9ms
82:	learn: 20.1274891	total: 409ms	remaining: 83.7ms
83:	learn: 20.0740139	total: 413ms	remaining: 78.7ms
84:	learn: 19.9630699	total: 418ms	remaining: 73.8ms
85:	learn: 19.8753899	total: 422ms	remaining: 68.8ms
86:	learn: 19.6563612	total: 427ms	remaining: 63.8ms
87:	learn: 19.4680232	total: 431ms	remaining: 58.8ms
88:	learn: 19.3503431	total: 436ms	remaining: 53.8ms
89:	learn: 19.2221379	total: 440ms	remaining: 48.9ms
90:	learn: 19.0732542	total: 445ms	remaining: 44ms
91:	learn: 18.9825190	total: 451ms	remaining: 39.2ms
92:	learn: 18.8839009	total: 459ms	remaining: 34.5ms
93:	learn: 18.8012219	total: 466ms	remaining: 29.7ms
94:	learn: 18.7172713	total: 474ms	remaining: 24.9ms
95:	learn: 18.6201170	total: 482ms	remaining: 20.1ms
96:	learn: 18.5318611	total: 488ms	remaining: 15.1ms
97:	learn: 18.3833356	total: 493ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 499ms	remaining: 5.04ms
99:	learn: 18.2227333	total: 504ms	remaining: 0us
0:	learn: 46.3764524	total: 8.52ms	remaining: 843ms
1:	learn: 45.5561269	total: 12.4ms	remaining: 605ms
2:	learn: 44.8811245	total: 16.2ms	remaining: 523ms
3:	learn: 44.0788617	total: 19.9ms	remaining: 479ms
4:	learn: 43.3619790	total: 23.9ms	remaining: 455ms
5:	learn: 42.6912112	total: 27.7ms	remaining: 433ms
6:	learn: 42.2292118	total: 31.7ms	remaining: 421ms
7:	learn: 41.7725191	total: 35.7ms	remaining: 411ms
8:	learn: 41.1676614	total: 39.6ms	remaining: 400ms
9:	learn: 40.5771076	total: 43.7ms	remaining: 393ms
10:	learn: 39.8343757	total: 47.8ms	remaining: 387ms
11:	learn: 39.3761142	total: 52ms	remaining: 381ms
12:	learn: 38.5254692	total: 56ms	remaining: 375ms
13:	learn: 37.9629555	total: 60ms	remaining: 369ms
14:	learn: 37.4418438	total: 64ms	remaining: 362ms
15:	learn: 37.0507283	total: 68.3ms	remaining: 358ms
16:	learn: 36.6264217	total: 72.5ms	remaining: 354ms
17:	learn: 36.1114940	total: 77ms	remaining: 351ms
18:	learn: 35.7193862	total: 81.3ms	remaining: 346ms
19:	learn: 35.3301177	total: 85.8ms	remaining: 343ms
20:	learn: 35.0598280	total: 90ms	remaining: 339ms
21:	learn: 34.5469736	total: 94.7ms	remaining: 336ms
22:	learn: 34.2064215	total: 98.9ms	remaining: 331ms
23:	learn: 33.7280710	total: 107ms	remaining: 340ms
24:	learn: 33.3282940	total: 115ms	remaining: 345ms
25:	learn: 32.8478961	total: 124ms	remaining: 354ms
26:	learn: 32.5722164	total: 130ms	remaining: 353ms
27:	learn: 32.2457019	total: 137ms	remaining: 351ms
28:	learn: 31.9230495	total: 142ms	remaining: 347ms
29:	learn: 31.4311611	total: 147ms	remaining: 343ms
30:	learn: 30.9179052	total: 152ms	remaining: 338ms
31:	learn: 30.6201141	total: 157ms	remaining: 333ms
32:	learn: 30.3421106	total: 162ms	remaining: 329ms
33:	learn: 29.9885373	total: 167ms	remaining: 324ms
34:	learn: 29.7462780	total: 172ms	remaining: 319ms
35:	learn: 29.3607153	total: 177ms	remaining: 314ms
36:	learn: 29.1793078	total: 182ms	remaining: 310ms
37:	learn: 28.9276538	total: 187ms	remaining: 305ms
38:	learn: 28.6903934	total: 192ms	remaining: 300ms
39:	learn: 28.2095033	total: 197ms	remaining: 296ms
40:	learn: 27.7990608	total: 202ms	remaining: 291ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 211ms	remaining: 280ms
43:	learn: 26.9741707	total: 216ms	remaining: 275ms
44:	learn: 26.6606899	total: 220ms	remaining: 269ms
45:	learn: 26.4015833	total: 225ms	remaining: 264ms
46:	learn: 26.1828993	total: 229ms	remaining: 258ms
47:	learn: 26.0233709	total: 231ms	remaining: 250ms
48:	learn: 25.9300399	total: 235ms	remaining: 245ms
49:	learn: 25.5861489	total: 239ms	remaining: 239ms
50:	learn: 25.4322012	total: 244ms	remaining: 234ms
51:	learn: 25.1595644	total: 248ms	remaining: 229ms
52:	learn: 24.9955303	total: 252ms	remaining: 224ms
53:	learn: 24.7273966	total: 257ms	remaining: 219ms
54:	learn: 24.5747978	total: 262ms	remaining: 214ms
55:	learn: 24.3807977	total: 267ms	remaining: 210ms
56:	learn: 24.1689569	total: 272ms	remaining: 205ms
57:	learn: 23.9898221	total: 277ms	remaining: 201ms
58:	learn: 23.7566414	total: 282ms	remaining: 196ms
59:	learn: 23.6641165	total: 287ms	remaining: 191ms
60:	learn: 23.5658066	total: 291ms	remaining: 186ms
61:	learn: 23.4338851	total: 296ms	remaining: 182ms
62:	learn: 23.2408837	total: 301ms	remaining: 177ms
63:	learn: 23.0642038	total: 308ms	remaining: 173ms
64:	learn: 22.9032045	total: 315ms	remaining: 170ms
65:	learn: 22.7736138	total: 325ms	remaining: 167ms
66:	learn: 22.6836443	total: 332ms	remaining: 163ms
67:	learn: 22.5983654	total: 337ms	remaining: 159ms
68:	learn: 22.4419813	total: 342ms	remaining: 154ms
69:	learn: 22.2863339	total: 347ms	remaining: 149ms
70:	learn: 22.1792943	total: 353ms	remaining: 144ms
71:	learn: 22.1130574	total: 358ms	remaining: 139ms
72:	learn: 21.9858161	total: 363ms	remaining: 134ms
73:	learn: 21.8577784	total: 368ms	remaining: 129ms
74:	learn: 21.7845222	total: 374ms	remaining: 125ms
75:	learn: 21.6831390	total: 379ms	remaining: 120ms
76:	learn: 21.6292521	total: 384ms	remaining: 115ms
77:	learn: 21.5789330	total: 389ms	remaining: 110ms
78:	learn: 21.5420942	total: 394ms	remaining: 105ms
79:	learn: 21.4280939	total: 399ms	remaining: 99.8ms
80:	learn: 21.3641165	total: 404ms	remaining: 94.9ms
81:	learn: 21.2734814	total: 409ms	remaining: 89.7ms
82:	learn: 21.2220323	total: 413ms	remaining: 84.6ms
83:	learn: 21.0625792	total: 418ms	remaining: 79.5ms
84:	learn: 20.9488320	total: 422ms	remaining: 74.5ms
85:	learn: 20.8504255	total: 426ms	remaining: 69.4ms
86:	learn: 20.7848510	total: 431ms	remaining: 64.3ms
87:	learn: 20.7247442	total: 434ms	remaining: 59.2ms
88:	learn: 20.5698590	total: 439ms	remaining: 54.2ms
89:	learn: 20.4067620	total: 443ms	remaining: 49.3ms
90:	learn: 20.3062482	total: 447ms	remaining: 44.3ms
91:	learn: 20.2029696	total: 452ms	remaining: 39.3ms
92:	learn: 20.1384849	total: 456ms	remaining: 34.3ms
93:	learn: 20.0260709	total: 461ms	remaining: 29.4ms
94:	learn: 19.9122100	total: 465ms	remaining: 24.5ms
95:	learn: 19.8648487	total: 469ms	remaining: 19.5ms
96:	learn: 19.8207072	total: 473ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 478ms	remaining: 9.76ms
98:	learn: 19.7042438	total: 483ms	remaining: 4.87ms
99:	learn: 19.6546645	total: 487ms	remaining: 0us
0:	learn: 47.0239288	total: 5.66ms	remaining: 560ms
1:	learn: 46.2253829	total: 10.7ms	remaining: 525ms
2:	learn: 45.5580301	total: 15.8ms	remaining: 510ms
3:	learn: 44.7273237	total: 21ms	remaining: 504ms
4:	learn: 43.8867421	total: 26.2ms	remaining: 498ms
5:	learn: 43.3615911	total: 31.3ms	remaining: 490ms
6:	learn: 42.8548390	total: 36.6ms	remaining: 486ms
7:	learn: 42.1606758	total: 41.5ms	remaining: 478ms
8:	learn: 41.6625870	total: 46.6ms	remaining: 471ms
9:	learn: 40.9497092	total: 51.1ms	remaining: 460ms
10:	learn: 40.1886318	total: 56.5ms	remaining: 458ms
11:	learn: 39.7456423	total: 61.9ms	remaining: 454ms
12:	learn: 39.1171373	total: 66.2ms	remaining: 443ms
13:	learn: 38.5451069	total: 70.3ms	remaining: 432ms
14:	learn: 38.0155834	total: 74.5ms	remaining: 422ms
15:	learn: 37.5631354	total: 78.4ms	remaining: 412ms
16:	learn: 37.1030023	total: 82.4ms	remaining: 402ms
17:	learn: 36.4563029	total: 86.6ms	remaining: 394ms
18:	learn: 36.0160976	total: 90.8ms	remaining: 387ms
19:	learn: 35.5079827	total: 94.7ms	remaining: 379ms
20:	learn: 35.2111885	total: 98.6ms	remaining: 371ms
21:	learn: 34.9397465	total: 103ms	remaining: 365ms
22:	learn: 34.5270048	total: 107ms	remaining: 359ms
23:	learn: 34.0169260	total: 111ms	remaining: 352ms
24:	learn: 33.7454892	total: 115ms	remaining: 345ms
25:	learn: 33.2648157	total: 119ms	remaining: 340ms
26:	learn: 32.8899427	total: 123ms	remaining: 334ms
27:	learn: 32.6185050	total: 127ms	remaining: 327ms
28:	learn: 32.3528531	total: 131ms	remaining: 321ms
29:	learn: 32.0859923	total: 136ms	remaining: 317ms
30:	learn: 31.6511144	total: 140ms	remaining: 312ms
31:	learn: 31.2571765	total: 145ms	remaining: 308ms
32:	learn: 30.9770049	total: 149ms	remaining: 303ms
33:	learn: 30.6084872	total: 154ms	remaining: 298ms
34:	learn: 30.3448632	total: 158ms	remaining: 294ms
35:	learn: 30.0360942	total: 163ms	remaining: 290ms
36:	learn: 29.6648968	total: 168ms	remaining: 287ms
37:	learn: 29.3165114	total: 177ms	remaining: 289ms
38:	learn: 29.0829198	total: 185ms	remaining: 289ms
39:	learn: 28.7752064	total: 194ms	remaining: 291ms
40:	learn: 28.3622191	total: 200ms	remaining: 288ms
41:	learn: 28.1346631	total: 206ms	remaining: 284ms
42:	learn: 27.9585719	total: 211ms	remaining: 279ms
43:	learn: 27.6565566	total: 216ms	remaining: 275ms
44:	learn: 27.3616172	total: 221ms	remaining: 270ms
45:	learn: 27.0658637	total: 226ms	remaining: 266ms
46:	learn: 26.8660382	total: 232ms	remaining: 261ms
47:	learn: 26.6536078	total: 236ms	remaining: 256ms
48:	learn: 26.3524440	total: 242ms	remaining: 251ms
49:	learn: 26.1595277	total: 247ms	remaining: 247ms
50:	learn: 25.9273523	total: 251ms	remaining: 242ms
51:	learn: 25.7195580	total: 257ms	remaining: 237ms
52:	learn: 25.5730225	total: 261ms	remaining: 232ms
53:	learn: 25.3455276	total: 266ms	remaining: 227ms
54:	learn: 25.2289675	total: 272ms	remaining: 222ms
55:	learn: 25.0133024	total: 276ms	remaining: 217ms
56:	learn: 24.8406714	total: 280ms	remaining: 211ms
57:	learn: 24.6367857	total: 284ms	remaining: 206ms
58:	learn: 24.5338177	total: 288ms	remaining: 200ms
59:	learn: 24.3799964	total: 292ms	remaining: 195ms
60:	learn: 24.1447492	total: 296ms	remaining: 189ms
61:	learn: 23.9880495	total: 300ms	remaining: 184ms
62:	learn: 23.7140630	total: 304ms	remaining: 179ms
63:	learn: 23.5003791	total: 308ms	remaining: 173ms
64:	learn: 23.3207645	total: 313ms	remaining: 168ms
65:	learn: 23.1958356	total: 317ms	remaining: 163ms
66:	learn: 23.0471302	total: 322ms	remaining: 158ms
67:	learn: 22.8977183	total: 326ms	remaining: 153ms
68:	learn: 22.7187400	total: 330ms	remaining: 148ms
69:	learn: 22.6523405	total: 334ms	remaining: 143ms
70:	learn: 22.4767453	total: 338ms	remaining: 138ms
71:	learn: 22.3243677	total: 343ms	remaining: 133ms
72:	learn: 22.2133096	total: 347ms	remaining: 128ms
73:	learn: 22.1151713	total: 352ms	remaining: 124ms
74:	learn: 22.0296666	total: 358ms	remaining: 119ms
75:	learn: 21.9195980	total: 365ms	remaining: 115ms
76:	learn: 21.8401730	total: 372ms	remaining: 111ms
77:	learn: 21.8079797	total: 380ms	remaining: 107ms
78:	learn: 21.7274109	total: 389ms	remaining: 103ms
79:	learn: 21.6663032	total: 394ms	remaining: 98.4ms
80:	learn: 21.5633117	total: 399ms	remaining: 93.5ms
81:	learn: 21.4542467	total: 404ms	remaining: 88.7ms
82:	learn: 21.3177957	total: 410ms	remaining: 83.9ms
83:	learn: 21.1289167	total: 416ms	remaining: 79.1ms
84:	learn: 21.0297368	total: 421ms	remaining: 74.3ms
85:	learn: 20.9089564	total: 427ms	remaining: 69.5ms
86:	learn: 20.7653988	total: 432ms	remaining: 64.6ms
87:	learn: 20.6521894	total: 438ms	remaining: 59.7ms
88:	learn: 20.5193021	total: 443ms	remaining: 54.8ms
89:	learn: 20.4361620	total: 448ms	remaining: 49.8ms
90:	learn: 20.3546710	total: 453ms	remaining: 44.8ms
91:	learn: 20.2513296	total: 459ms	remaining: 39.9ms
92:	learn: 20.1605550	total: 462ms	remaining: 34.8ms
93:	learn: 20.0515942	total: 466ms	remaining: 29.8ms
94:	learn: 19.9800764	total: 470ms	remaining: 24.8ms
95:	learn: 19.8996532	total: 474ms	remaining: 19.8ms
96:	learn: 19.8450910	total: 478ms	remaining: 14.8ms
97:	learn: 19.7887346	total: 482ms	remaining: 9.84ms
98:	learn: 19.7230872	total: 486ms	remaining: 4.91ms
99:	learn: 19.6328825	total: 490ms	remaining: 0us
0:	learn: 27.5585353	total: 4.91ms	remaining: 486ms
1:	learn: 27.1656995	total: 9.3ms	remaining: 456ms
2:	learn: 26.8590175	total: 13.7ms	remaining: 443ms
3:	learn: 26.5818406	total: 17.8ms	remaining: 427ms
4:	learn: 26.1148663	total: 22.2ms	remaining: 422ms
5:	learn: 25.7690484	total: 26.4ms	remaining: 414ms
6:	learn: 25.3489206	total: 31.5ms	remaining: 418ms
7:	learn: 24.9542406	total: 39.3ms	remaining: 452ms
8:	learn: 24.6777517	total: 46.7ms	remaining: 472ms
9:	learn: 24.3242344	total: 55.5ms	remaining: 500ms
10:	learn: 24.0383073	total: 63ms	remaining: 510ms
11:	learn: 23.7383420	total: 67.9ms	remaining: 498ms
12:	learn: 23.3461670	total: 73ms	remaining: 489ms
13:	learn: 23.0928636	total: 78.2ms	remaining: 481ms
14:	learn: 22.8770414	total: 83.3ms	remaining: 472ms
15:	learn: 22.6323214	total: 88.6ms	remaining: 465ms
16:	learn: 22.3597072	total: 94.1ms	remaining: 459ms
17:	learn: 22.1079813	total: 99.2ms	remaining: 452ms
18:	learn: 21.8421199	total: 105ms	remaining: 447ms
19:	learn: 21.6576508	total: 110ms	remaining: 440ms
20:	learn: 21.4301268	total: 115ms	remaining: 434ms
21:	learn: 21.2287388	total: 120ms	remaining: 426ms
22:	learn: 21.0553872	total: 125ms	remaining: 419ms
23:	learn: 20.8977091	total: 130ms	remaining: 413ms
24:	learn: 20.6619051	total: 136ms	remaining: 407ms
25:	learn: 20.5040955	total: 140ms	remaining: 399ms
26:	learn: 20.3181195	total: 144ms	remaining: 390ms
27:	learn: 20.0869436	total: 149ms	remaining: 382ms
28:	learn: 19.9375985	total: 153ms	remaining: 374ms
29:	learn: 19.8247516	total: 157ms	remaining: 366ms
30:	learn: 19.6261697	total: 161ms	remaining: 359ms
31:	learn: 19.4547236	total: 166ms	remaining: 352ms
32:	learn: 19.3157092	total: 170ms	remaining: 346ms
33:	learn: 19.1561419	total: 175ms	remaining: 340ms
34:	learn: 19.0453620	total: 180ms	remaining: 335ms
35:	learn: 18.8738574	total: 185ms	remaining: 329ms
36:	learn: 18.7072907	total: 190ms	remaining: 323ms
37:	learn: 18.5877943	total: 195ms	remaining: 318ms
38:	learn: 18.4436380	total: 200ms	remaining: 313ms
39:	learn: 18.3463356	total: 205ms	remaining: 308ms
40:	learn: 18.2008059	total: 210ms	remaining: 303ms
41:	learn: 18.0582079	total: 216ms	remaining: 298ms
42:	learn: 17.8891982	total: 220ms	remaining: 292ms
43:	learn: 17.7332246	total: 226ms	remaining: 287ms
44:	learn: 17.6206421	total: 231ms	remaining: 282ms
45:	learn: 17.4982800	total: 235ms	remaining: 276ms
46:	learn: 17.3970150	total: 241ms	remaining: 271ms
47:	learn: 17.3058203	total: 246ms	remaining: 266ms
48:	learn: 17.1789256	total: 251ms	remaining: 261ms
49:	learn: 17.0916229	total: 256ms	remaining: 256ms
50:	learn: 16.9859820	total: 262ms	remaining: 252ms
51:	learn: 16.8995582	total: 270ms	remaining: 249ms
52:	learn: 16.8137014	total: 278ms	remaining: 247ms
53:	learn: 16.7021451	total: 286ms	remaining: 243ms
54:	learn: 16.5895582	total: 293ms	remaining: 240ms
55:	learn: 16.5015639	total: 298ms	remaining: 234ms
56:	learn: 16.4356637	total: 303ms	remaining: 229ms
57:	learn: 16.3514525	total: 309ms	remaining: 224ms
58:	learn: 16.2401369	total: 314ms	remaining: 218ms
59:	learn: 16.1293223	total: 320ms	remaining: 213ms
60:	learn: 16.0271167	total: 325ms	remaining: 208ms
61:	learn: 15.9126257	total: 330ms	remaining: 202ms
62:	learn: 15.8391096	total: 336ms	remaining: 197ms
63:	learn: 15.7441773	total: 341ms	remaining: 192ms
64:	learn: 15.6885195	total: 346ms	remaining: 186ms
65:	learn: 15.6052039	total: 351ms	remaining: 181ms
66:	learn: 15.5074202	total: 356ms	remaining: 175ms
67:	learn: 15.4054338	total: 361ms	remaining: 170ms
68:	learn: 15.2885714	total: 366ms	remaining: 164ms
69:	learn: 15.2157472	total: 371ms	remaining: 159ms
70:	learn: 15.1031554	total: 375ms	remaining: 153ms
71:	learn: 15.0237470	total: 379ms	remaining: 147ms
72:	learn: 14.9756825	total: 383ms	remaining: 142ms
73:	learn: 14.8840596	total: 387ms	remaining: 136ms
74:	learn: 14.8077061	total: 392ms	remaining: 131ms
75:	learn: 14.7444437	total: 396ms	remaining: 125ms
76:	learn: 14.6751720	total: 400ms	remaining: 120ms
77:	learn: 14.5830333	total: 405ms	remaining: 114ms
78:	learn: 14.5241206	total: 408ms	remaining: 109ms
79:	learn: 14.4892731	total: 412ms	remaining: 103ms
80:	learn: 14.4256605	total: 416ms	remaining: 97.6ms
81:	learn: 14.3666860	total: 421ms	remaining: 92.4ms
82:	learn: 14.2938372	total: 425ms	remaining: 87.1ms
83:	learn: 14.2161532	total: 429ms	remaining: 81.8ms
84:	learn: 14.1582910	total: 433ms	remaining: 76.5ms
85:	learn: 14.1029153	total: 438ms	remaining: 71.3ms
86:	learn: 14.0475835	total: 442ms	remaining: 66.1ms
87:	learn: 13.9892661	total: 447ms	remaining: 61ms
88:	learn: 13.9481628	total: 452ms	remaining: 55.8ms
89:	learn: 13.8483991	total: 456ms	remaining: 50.7ms
90:	learn: 13.7775614	total: 461ms	remaining: 45.6ms
91:	learn: 13.7304585	total: 465ms	remaining: 40.5ms
92:	learn: 13.6783381	total: 471ms	remaining: 35.4ms
93:	learn: 13.6356964	total: 479ms	remaining: 30.6ms
94:	learn: 13.5924371	total: 486ms	remaining: 25.6ms
95:	learn: 13.5400746	total: 494ms	remaining: 20.6ms
96:	learn: 13.4897333	total: 500ms	remaining: 15.5ms
97:	learn: 13.4470321	total: 507ms	remaining: 10.3ms
98:	learn: 13.3856082	total: 512ms	remaining: 5.17ms
99:	learn: 13.3082371	total: 517ms	remaining: 0us
0:	learn: 43.0395283	total: 5.3ms	remaining: 525ms
1:	learn: 42.1130223	total: 10.5ms	remaining: 516ms
2:	learn: 41.1753409	total: 15ms	remaining: 484ms
3:	learn: 40.3637444	total: 19.1ms	remaining: 459ms
4:	learn: 39.6508088	total: 23.2ms	remaining: 442ms
5:	learn: 38.7217934	total: 27.1ms	remaining: 425ms
6:	learn: 37.8538055	total: 31.1ms	remaining: 414ms
7:	learn: 36.9793574	total: 35.1ms	remaining: 403ms
8:	learn: 36.3076984	total: 39.1ms	remaining: 395ms
9:	learn: 35.6673160	total: 43.1ms	remaining: 388ms
10:	learn: 34.8889800	total: 47ms	remaining: 380ms
11:	learn: 34.1675517	total: 50.8ms	remaining: 373ms
12:	learn: 33.6779564	total: 55.2ms	remaining: 369ms
13:	learn: 33.0710039	total: 59.4ms	remaining: 365ms
14:	learn: 32.4966674	total: 63.5ms	remaining: 360ms
15:	learn: 31.9492856	total: 67.4ms	remaining: 354ms
16:	learn: 31.5108129	total: 71.9ms	remaining: 351ms
17:	learn: 30.9804023	total: 76.6ms	remaining: 349ms
18:	learn: 30.4169089	total: 80.8ms	remaining: 344ms
19:	learn: 29.8930375	total: 84.8ms	remaining: 339ms
20:	learn: 29.3974421	total: 89.5ms	remaining: 337ms
21:	learn: 28.8792307	total: 93.8ms	remaining: 333ms
22:	learn: 28.3894474	total: 98.1ms	remaining: 329ms
23:	learn: 27.9921276	total: 102ms	remaining: 324ms
24:	learn: 27.6158887	total: 107ms	remaining: 322ms
25:	learn: 27.2866950	total: 114ms	remaining: 325ms
26:	learn: 26.8770708	total: 122ms	remaining: 329ms
27:	learn: 26.6233005	total: 130ms	remaining: 335ms
28:	learn: 26.2921934	total: 137ms	remaining: 336ms
29:	learn: 25.9156920	total: 145ms	remaining: 339ms
30:	learn: 25.5311106	total: 147ms	remaining: 327ms
31:	learn: 25.2178997	total: 152ms	remaining: 323ms
32:	learn: 24.8572196	total: 157ms	remaining: 320ms
33:	learn: 24.5849710	total: 163ms	remaining: 316ms
34:	learn: 24.2209190	total: 168ms	remaining: 311ms
35:	learn: 23.8708250	total: 172ms	remaining: 307ms
36:	learn: 23.5325279	total: 178ms	remaining: 303ms
37:	learn: 23.2116148	total: 183ms	remaining: 299ms
38:	learn: 22.9696787	total: 189ms	remaining: 295ms
39:	learn: 22.7936783	total: 194ms	remaining: 291ms
40:	learn: 22.6228847	total: 199ms	remaining: 286ms
41:	learn: 22.3691527	total: 204ms	remaining: 282ms
42:	learn: 22.1002173	total: 210ms	remaining: 278ms
43:	learn: 21.9157268	total: 215ms	remaining: 273ms
44:	learn: 21.7229102	total: 218ms	remaining: 267ms
45:	learn: 21.4642005	total: 222ms	remaining: 261ms
46:	learn: 21.3029442	total: 226ms	remaining: 255ms
47:	learn: 21.1469792	total: 230ms	remaining: 249ms
48:	learn: 20.9458235	total: 234ms	remaining: 244ms
49:	learn: 20.7335242	total: 238ms	remaining: 238ms
50:	learn: 20.5440269	total: 242ms	remaining: 232ms
51:	learn: 20.3661449	total: 246ms	remaining: 227ms
52:	learn: 20.2158134	total: 250ms	remaining: 222ms
53:	learn: 19.9934873	total: 254ms	remaining: 216ms
54:	learn: 19.7879739	total: 258ms	remaining: 211ms
55:	learn: 19.6630460	total: 263ms	remaining: 207ms
56:	learn: 19.5152729	total: 268ms	remaining: 202ms
57:	learn: 19.3581128	total: 272ms	remaining: 197ms
58:	learn: 19.2209303	total: 277ms	remaining: 192ms
59:	learn: 19.0965248	total: 282ms	remaining: 188ms
60:	learn: 19.0035954	total: 287ms	remaining: 183ms
61:	learn: 18.8554149	total: 292ms	remaining: 179ms
62:	learn: 18.7095427	total: 297ms	remaining: 174ms
63:	learn: 18.5751494	total: 302ms	remaining: 170ms
64:	learn: 18.4678251	total: 306ms	remaining: 165ms
65:	learn: 18.3500325	total: 312ms	remaining: 161ms
66:	learn: 18.2088983	total: 320ms	remaining: 158ms
67:	learn: 18.0737705	total: 328ms	remaining: 154ms
68:	learn: 17.9325058	total: 339ms	remaining: 153ms
69:	learn: 17.8003911	total: 349ms	remaining: 149ms
70:	learn: 17.7385366	total: 355ms	remaining: 145ms
71:	learn: 17.6106998	total: 361ms	remaining: 140ms
72:	learn: 17.4816270	total: 366ms	remaining: 136ms
73:	learn: 17.4025554	total: 372ms	remaining: 131ms
74:	learn: 17.2902108	total: 378ms	remaining: 126ms
75:	learn: 17.2158048	total: 383ms	remaining: 121ms
76:	learn: 17.1261053	total: 389ms	remaining: 116ms
77:	learn: 17.0308917	total: 402ms	remaining: 114ms
78:	learn: 16.9546705	total: 409ms	remaining: 109ms
79:	learn: 16.8319165	total: 414ms	remaining: 104ms
80:	learn: 16.7687017	total: 419ms	remaining: 98.4ms
81:	learn: 16.6972326	total: 424ms	remaining: 93.1ms
82:	learn: 16.6124580	total: 429ms	remaining: 87.9ms
83:	learn: 16.4999052	total: 434ms	remaining: 82.6ms
84:	learn: 16.4302484	total: 439ms	remaining: 77.4ms
85:	learn: 16.3201363	total: 443ms	remaining: 72.1ms
86:	learn: 16.2534314	total: 448ms	remaining: 66.9ms
87:	learn: 16.1720485	total: 453ms	remaining: 61.7ms
88:	learn: 16.0625751	total: 457ms	remaining: 56.5ms
89:	learn: 15.9135088	total: 462ms	remaining: 51.4ms
90:	learn: 15.8658863	total: 467ms	remaining: 46.2ms
91:	learn: 15.8066805	total: 472ms	remaining: 41ms
92:	learn: 15.7412103	total: 477ms	remaining: 35.9ms
93:	learn: 15.6542776	total: 482ms	remaining: 30.8ms
94:	learn: 15.5760334	total: 487ms	remaining: 25.6ms
95:	learn: 15.5434131	total: 492ms	remaining: 20.5ms
96:	learn: 15.4709561	total: 497ms	remaining: 15.4ms
97:	learn: 15.4449618	total: 502ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 507ms	remaining: 5.12ms
99:	learn: 15.3106595	total: 514ms	remaining: 0us
0:	learn: 46.7142257	total: 10.1ms	remaining: 1000ms
1:	learn: 45.7634153	total: 15.8ms	remaining: 773ms
2:	learn: 45.0054253	total: 21.4ms	remaining: 692ms
3:	learn: 44.2120432	total: 28.3ms	remaining: 678ms
4:	learn: 43.3960472	total: 34.2ms	remaining: 649ms
5:	learn: 42.8588120	total: 39.4ms	remaining: 617ms
6:	learn: 41.9533701	total: 44.2ms	remaining: 587ms
7:	learn: 41.2745030	total: 48.7ms	remaining: 560ms
8:	learn: 40.6797495	total: 53.3ms	remaining: 539ms
9:	learn: 39.9899571	total: 57.9ms	remaining: 521ms
10:	learn: 39.4682100	total: 62.4ms	remaining: 505ms
11:	learn: 39.0305595	total: 66.9ms	remaining: 491ms
12:	learn: 38.4200417	total: 71.7ms	remaining: 480ms
13:	learn: 37.8425194	total: 76ms	remaining: 467ms
14:	learn: 37.4203127	total: 80.1ms	remaining: 454ms
15:	learn: 36.9917688	total: 84.6ms	remaining: 444ms
16:	learn: 36.5544138	total: 89.2ms	remaining: 435ms
17:	learn: 36.0727019	total: 93.6ms	remaining: 426ms
18:	learn: 35.4835715	total: 98.2ms	remaining: 419ms
19:	learn: 34.9865654	total: 103ms	remaining: 412ms
20:	learn: 34.6063373	total: 108ms	remaining: 406ms
21:	learn: 34.0997289	total: 113ms	remaining: 399ms
22:	learn: 33.7313171	total: 118ms	remaining: 394ms
23:	learn: 33.3582000	total: 122ms	remaining: 387ms
24:	learn: 32.9432456	total: 127ms	remaining: 381ms
25:	learn: 32.5220888	total: 131ms	remaining: 374ms
26:	learn: 32.2172292	total: 137ms	remaining: 371ms
27:	learn: 31.8972904	total: 145ms	remaining: 373ms
28:	learn: 31.6405350	total: 153ms	remaining: 374ms
29:	learn: 31.4167702	total: 161ms	remaining: 376ms
30:	learn: 30.8541961	total: 163ms	remaining: 364ms
31:	learn: 30.5572111	total: 171ms	remaining: 364ms
32:	learn: 30.1700399	total: 176ms	remaining: 358ms
33:	learn: 29.8537271	total: 182ms	remaining: 352ms
34:	learn: 29.6192540	total: 187ms	remaining: 347ms
35:	learn: 29.3276362	total: 192ms	remaining: 341ms
36:	learn: 28.9985179	total: 197ms	remaining: 336ms
37:	learn: 28.7046880	total: 203ms	remaining: 331ms
38:	learn: 28.4412677	total: 208ms	remaining: 325ms
39:	learn: 28.1277292	total: 213ms	remaining: 320ms
40:	learn: 27.9000750	total: 219ms	remaining: 315ms
41:	learn: 27.5433162	total: 224ms	remaining: 309ms
42:	learn: 27.2493285	total: 228ms	remaining: 303ms
43:	learn: 26.9576632	total: 230ms	remaining: 293ms
44:	learn: 26.6177110	total: 236ms	remaining: 288ms
45:	learn: 26.2812456	total: 241ms	remaining: 283ms
46:	learn: 26.0803859	total: 246ms	remaining: 277ms
47:	learn: 25.9543581	total: 250ms	remaining: 270ms
48:	learn: 25.7951582	total: 254ms	remaining: 264ms
49:	learn: 25.6548184	total: 257ms	remaining: 257ms
50:	learn: 25.4010843	total: 261ms	remaining: 251ms
51:	learn: 24.9773937	total: 265ms	remaining: 245ms
52:	learn: 24.8026156	total: 269ms	remaining: 239ms
53:	learn: 24.5568053	total: 273ms	remaining: 233ms
54:	learn: 24.2281839	total: 277ms	remaining: 227ms
55:	learn: 23.9202795	total: 281ms	remaining: 221ms
56:	learn: 23.7625591	total: 285ms	remaining: 215ms
57:	learn: 23.5429721	total: 289ms	remaining: 210ms
58:	learn: 23.3175893	total: 293ms	remaining: 204ms
59:	learn: 23.2035130	total: 298ms	remaining: 199ms
60:	learn: 23.0232450	total: 303ms	remaining: 194ms
61:	learn: 22.8384958	total: 307ms	remaining: 188ms
62:	learn: 22.6499902	total: 311ms	remaining: 183ms
63:	learn: 22.4577426	total: 316ms	remaining: 178ms
64:	learn: 22.3333158	total: 321ms	remaining: 173ms
65:	learn: 22.2064131	total: 325ms	remaining: 167ms
66:	learn: 22.1434971	total: 330ms	remaining: 162ms
67:	learn: 21.9596519	total: 334ms	remaining: 157ms
68:	learn: 21.8475576	total: 338ms	remaining: 152ms
69:	learn: 21.6954745	total: 343ms	remaining: 147ms
70:	learn: 21.5635976	total: 352ms	remaining: 144ms
71:	learn: 21.4588506	total: 359ms	remaining: 140ms
72:	learn: 21.3527268	total: 367ms	remaining: 136ms
73:	learn: 21.2661288	total: 375ms	remaining: 132ms
74:	learn: 21.1817333	total: 380ms	remaining: 127ms
75:	learn: 21.0527553	total: 385ms	remaining: 122ms
76:	learn: 20.9229021	total: 390ms	remaining: 117ms
77:	learn: 20.7563946	total: 395ms	remaining: 111ms
78:	learn: 20.6569831	total: 400ms	remaining: 106ms
79:	learn: 20.4982663	total: 405ms	remaining: 101ms
80:	learn: 20.3185460	total: 411ms	remaining: 96.3ms
81:	learn: 20.2096241	total: 416ms	remaining: 91.3ms
82:	learn: 20.1274891	total: 421ms	remaining: 86.2ms
83:	learn: 20.0740139	total: 426ms	remaining: 81.2ms
84:	learn: 19.9630699	total: 430ms	remaining: 76ms
85:	learn: 19.8753899	total: 436ms	remaining: 70.9ms
86:	learn: 19.6563612	total: 441ms	remaining: 65.9ms
87:	learn: 19.4680232	total: 446ms	remaining: 60.9ms
88:	learn: 19.3503431	total: 451ms	remaining: 55.7ms
89:	learn: 19.2221379	total: 455ms	remaining: 50.6ms
90:	learn: 19.0732542	total: 459ms	remaining: 45.4ms
91:	learn: 18.9825190	total: 464ms	remaining: 40.3ms
92:	learn: 18.8839009	total: 468ms	remaining: 35.2ms
93:	learn: 18.8012219	total: 472ms	remaining: 30.1ms
94:	learn: 18.7172713	total: 476ms	remaining: 25ms
95:	learn: 18.6201170	total: 481ms	remaining: 20ms
96:	learn: 18.5318611	total: 485ms	remaining: 15ms
97:	learn: 18.3833356	total: 489ms	remaining: 9.98ms
98:	learn: 18.3289700	total: 493ms	remaining: 4.98ms
99:	learn: 18.2227333	total: 498ms	remaining: 0us
0:	learn: 46.3764524	total: 7.62ms	remaining: 754ms
1:	learn: 45.5561269	total: 16.5ms	remaining: 810ms
2:	learn: 44.8811245	total: 22.5ms	remaining: 726ms
3:	learn: 44.0788617	total: 30ms	remaining: 720ms
4:	learn: 43.3619790	total: 35.5ms	remaining: 674ms
5:	learn: 42.6912112	total: 40.3ms	remaining: 632ms
6:	learn: 42.2292118	total: 45.6ms	remaining: 606ms
7:	learn: 41.7725191	total: 50.8ms	remaining: 584ms
8:	learn: 41.1676614	total: 55.8ms	remaining: 564ms
9:	learn: 40.5771076	total: 60.7ms	remaining: 547ms
10:	learn: 39.8343757	total: 65.8ms	remaining: 532ms
11:	learn: 39.3761142	total: 71ms	remaining: 520ms
12:	learn: 38.5254692	total: 76.1ms	remaining: 509ms
13:	learn: 37.9629555	total: 81.2ms	remaining: 499ms
14:	learn: 37.4418438	total: 85.8ms	remaining: 486ms
15:	learn: 37.0507283	total: 90.9ms	remaining: 477ms
16:	learn: 36.6264217	total: 95.9ms	remaining: 468ms
17:	learn: 36.1114940	total: 101ms	remaining: 459ms
18:	learn: 35.7193862	total: 105ms	remaining: 448ms
19:	learn: 35.3301177	total: 109ms	remaining: 437ms
20:	learn: 35.0598280	total: 113ms	remaining: 425ms
21:	learn: 34.5469736	total: 117ms	remaining: 414ms
22:	learn: 34.2064215	total: 121ms	remaining: 405ms
23:	learn: 33.7280710	total: 125ms	remaining: 396ms
24:	learn: 33.3282940	total: 129ms	remaining: 387ms
25:	learn: 32.8478961	total: 133ms	remaining: 378ms
26:	learn: 32.5722164	total: 137ms	remaining: 371ms
27:	learn: 32.2457019	total: 141ms	remaining: 362ms
28:	learn: 31.9230495	total: 145ms	remaining: 355ms
29:	learn: 31.4311611	total: 149ms	remaining: 347ms
30:	learn: 30.9179052	total: 153ms	remaining: 341ms
31:	learn: 30.6201141	total: 157ms	remaining: 334ms
32:	learn: 30.3421106	total: 161ms	remaining: 328ms
33:	learn: 29.9885373	total: 166ms	remaining: 321ms
34:	learn: 29.7462780	total: 170ms	remaining: 316ms
35:	learn: 29.3607153	total: 175ms	remaining: 311ms
36:	learn: 29.1793078	total: 180ms	remaining: 306ms
37:	learn: 28.9276538	total: 184ms	remaining: 301ms
38:	learn: 28.6903934	total: 189ms	remaining: 295ms
39:	learn: 28.2095033	total: 193ms	remaining: 290ms
40:	learn: 27.7990608	total: 197ms	remaining: 284ms
41:	learn: 27.5406632	total: 202ms	remaining: 279ms
42:	learn: 27.2575376	total: 211ms	remaining: 280ms
43:	learn: 26.9741707	total: 218ms	remaining: 278ms
44:	learn: 26.6606899	total: 227ms	remaining: 277ms
45:	learn: 26.4015833	total: 235ms	remaining: 276ms
46:	learn: 26.1828993	total: 241ms	remaining: 271ms
47:	learn: 26.0233709	total: 244ms	remaining: 264ms
48:	learn: 25.9300399	total: 249ms	remaining: 260ms
49:	learn: 25.5861489	total: 255ms	remaining: 255ms
50:	learn: 25.4322012	total: 261ms	remaining: 251ms
51:	learn: 25.1595644	total: 267ms	remaining: 246ms
52:	learn: 24.9955303	total: 272ms	remaining: 241ms
53:	learn: 24.7273966	total: 278ms	remaining: 237ms
54:	learn: 24.5747978	total: 283ms	remaining: 231ms
55:	learn: 24.3807977	total: 288ms	remaining: 226ms
56:	learn: 24.1689569	total: 293ms	remaining: 221ms
57:	learn: 23.9898221	total: 298ms	remaining: 216ms
58:	learn: 23.7566414	total: 304ms	remaining: 211ms
59:	learn: 23.6641165	total: 308ms	remaining: 205ms
60:	learn: 23.5658066	total: 312ms	remaining: 199ms
61:	learn: 23.4338851	total: 316ms	remaining: 194ms
62:	learn: 23.2408837	total: 320ms	remaining: 188ms
63:	learn: 23.0642038	total: 323ms	remaining: 182ms
64:	learn: 22.9032045	total: 327ms	remaining: 176ms
65:	learn: 22.7736138	total: 331ms	remaining: 171ms
66:	learn: 22.6836443	total: 335ms	remaining: 165ms
67:	learn: 22.5983654	total: 340ms	remaining: 160ms
68:	learn: 22.4419813	total: 344ms	remaining: 155ms
69:	learn: 22.2863339	total: 348ms	remaining: 149ms
70:	learn: 22.1792943	total: 353ms	remaining: 144ms
71:	learn: 22.1130574	total: 357ms	remaining: 139ms
72:	learn: 21.9858161	total: 361ms	remaining: 134ms
73:	learn: 21.8577784	total: 366ms	remaining: 128ms
74:	learn: 21.7845222	total: 370ms	remaining: 123ms
75:	learn: 21.6831390	total: 375ms	remaining: 118ms
76:	learn: 21.6292521	total: 379ms	remaining: 113ms
77:	learn: 21.5789330	total: 384ms	remaining: 108ms
78:	learn: 21.5420942	total: 388ms	remaining: 103ms
79:	learn: 21.4280939	total: 393ms	remaining: 98.2ms
80:	learn: 21.3641165	total: 398ms	remaining: 93.3ms
81:	learn: 21.2734814	total: 405ms	remaining: 88.9ms
82:	learn: 21.2220323	total: 412ms	remaining: 84.4ms
83:	learn: 21.0625792	total: 419ms	remaining: 79.8ms
84:	learn: 20.9488320	total: 426ms	remaining: 75.2ms
85:	learn: 20.8504255	total: 435ms	remaining: 70.8ms
86:	learn: 20.7848510	total: 441ms	remaining: 65.8ms
87:	learn: 20.7247442	total: 446ms	remaining: 60.9ms
88:	learn: 20.5698590	total: 452ms	remaining: 55.9ms
89:	learn: 20.4067620	total: 458ms	remaining: 50.9ms
90:	learn: 20.3062482	total: 463ms	remaining: 45.8ms
91:	learn: 20.2029696	total: 468ms	remaining: 40.7ms
92:	learn: 20.1384849	total: 474ms	remaining: 35.7ms
93:	learn: 20.0260709	total: 479ms	remaining: 30.6ms
94:	learn: 19.9122100	total: 484ms	remaining: 25.5ms
95:	learn: 19.8648487	total: 489ms	remaining: 20.4ms
96:	learn: 19.8207072	total: 494ms	remaining: 15.3ms
97:	learn: 19.7261189	total: 499ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 505ms	remaining: 5.1ms
99:	learn: 19.6546645	total: 510ms	remaining: 0us
0:	learn: 47.0239288	total: 4.73ms	remaining: 468ms
1:	learn: 46.2253829	total: 8.87ms	remaining: 435ms
2:	learn: 45.5580301	total: 12.7ms	remaining: 411ms
3:	learn: 44.7273237	total: 16.8ms	remaining: 403ms
4:	learn: 43.8867421	total: 20.5ms	remaining: 390ms
5:	learn: 43.3615911	total: 24.2ms	remaining: 379ms
6:	learn: 42.8548390	total: 28.6ms	remaining: 380ms
7:	learn: 42.1606758	total: 33ms	remaining: 379ms
8:	learn: 41.6625870	total: 37.4ms	remaining: 379ms
9:	learn: 40.9497092	total: 41.8ms	remaining: 376ms
10:	learn: 40.1886318	total: 46.3ms	remaining: 374ms
11:	learn: 39.7456423	total: 50.5ms	remaining: 370ms
12:	learn: 39.1171373	total: 55.1ms	remaining: 369ms
13:	learn: 38.5451069	total: 59.6ms	remaining: 366ms
14:	learn: 38.0155834	total: 64.1ms	remaining: 363ms
15:	learn: 37.5631354	total: 71.7ms	remaining: 376ms
16:	learn: 37.1030023	total: 79.4ms	remaining: 388ms
17:	learn: 36.4563029	total: 89ms	remaining: 405ms
18:	learn: 36.0160976	total: 94.4ms	remaining: 403ms
19:	learn: 35.5079827	total: 102ms	remaining: 406ms
20:	learn: 35.2111885	total: 107ms	remaining: 402ms
21:	learn: 34.9397465	total: 113ms	remaining: 400ms
22:	learn: 34.5270048	total: 118ms	remaining: 394ms
23:	learn: 34.0169260	total: 124ms	remaining: 393ms
24:	learn: 33.7454892	total: 129ms	remaining: 387ms
25:	learn: 33.2648157	total: 134ms	remaining: 382ms
26:	learn: 32.8899427	total: 139ms	remaining: 376ms
27:	learn: 32.6185050	total: 144ms	remaining: 371ms
28:	learn: 32.3528531	total: 149ms	remaining: 366ms
29:	learn: 32.0859923	total: 154ms	remaining: 360ms
30:	learn: 31.6511144	total: 159ms	remaining: 355ms
31:	learn: 31.2571765	total: 165ms	remaining: 350ms
32:	learn: 30.9770049	total: 170ms	remaining: 345ms
33:	learn: 30.6084872	total: 174ms	remaining: 338ms
34:	learn: 30.3448632	total: 178ms	remaining: 331ms
35:	learn: 30.0360942	total: 183ms	remaining: 325ms
36:	learn: 29.6648968	total: 186ms	remaining: 317ms
37:	learn: 29.3165114	total: 190ms	remaining: 311ms
38:	learn: 29.0829198	total: 194ms	remaining: 304ms
39:	learn: 28.7752064	total: 198ms	remaining: 297ms
40:	learn: 28.3622191	total: 203ms	remaining: 292ms
41:	learn: 28.1346631	total: 207ms	remaining: 286ms
42:	learn: 27.9585719	total: 212ms	remaining: 281ms
43:	learn: 27.6565566	total: 217ms	remaining: 276ms
44:	learn: 27.3616172	total: 221ms	remaining: 270ms
45:	learn: 27.0658637	total: 225ms	remaining: 264ms
46:	learn: 26.8660382	total: 230ms	remaining: 260ms
47:	learn: 26.6536078	total: 235ms	remaining: 255ms
48:	learn: 26.3524440	total: 240ms	remaining: 250ms
49:	learn: 26.1595277	total: 245ms	remaining: 245ms
50:	learn: 25.9273523	total: 249ms	remaining: 240ms
51:	learn: 25.7195580	total: 254ms	remaining: 235ms
52:	learn: 25.5730225	total: 259ms	remaining: 230ms
53:	learn: 25.3455276	total: 266ms	remaining: 227ms
54:	learn: 25.2289675	total: 274ms	remaining: 224ms
55:	learn: 25.0133024	total: 282ms	remaining: 222ms
56:	learn: 24.8406714	total: 290ms	remaining: 219ms
57:	learn: 24.6367857	total: 297ms	remaining: 215ms
58:	learn: 24.5338177	total: 302ms	remaining: 210ms
59:	learn: 24.3799964	total: 307ms	remaining: 205ms
60:	learn: 24.1447492	total: 312ms	remaining: 199ms
61:	learn: 23.9880495	total: 317ms	remaining: 194ms
62:	learn: 23.7140630	total: 322ms	remaining: 189ms
63:	learn: 23.5003791	total: 327ms	remaining: 184ms
64:	learn: 23.3207645	total: 332ms	remaining: 179ms
65:	learn: 23.1958356	total: 339ms	remaining: 175ms
66:	learn: 23.0471302	total: 344ms	remaining: 169ms
67:	learn: 22.8977183	total: 349ms	remaining: 164ms
68:	learn: 22.7187400	total: 354ms	remaining: 159ms
69:	learn: 22.6523405	total: 359ms	remaining: 154ms
70:	learn: 22.4767453	total: 364ms	remaining: 149ms
71:	learn: 22.3243677	total: 369ms	remaining: 143ms
72:	learn: 22.2133096	total: 373ms	remaining: 138ms
73:	learn: 22.1151713	total: 377ms	remaining: 132ms
74:	learn: 22.0296666	total: 381ms	remaining: 127ms
75:	learn: 21.9195980	total: 385ms	remaining: 122ms
76:	learn: 21.8401730	total: 389ms	remaining: 116ms
77:	learn: 21.8079797	total: 393ms	remaining: 111ms
78:	learn: 21.7274109	total: 397ms	remaining: 105ms
79:	learn: 21.6663032	total: 401ms	remaining: 100ms
80:	learn: 21.5633117	total: 405ms	remaining: 94.9ms
81:	learn: 21.4542467	total: 408ms	remaining: 89.6ms
82:	learn: 21.3177957	total: 412ms	remaining: 84.4ms
83:	learn: 21.1289167	total: 416ms	remaining: 79.3ms
84:	learn: 21.0297368	total: 420ms	remaining: 74.1ms
85:	learn: 20.9089564	total: 424ms	remaining: 69ms
86:	learn: 20.7653988	total: 429ms	remaining: 64.1ms
87:	learn: 20.6521894	total: 433ms	remaining: 59.1ms
88:	learn: 20.5193021	total: 438ms	remaining: 54.1ms
89:	learn: 20.4361620	total: 442ms	remaining: 49.1ms
90:	learn: 20.3546710	total: 446ms	remaining: 44.1ms
91:	learn: 20.2513296	total: 451ms	remaining: 39.2ms
92:	learn: 20.1605550	total: 455ms	remaining: 34.2ms
93:	learn: 20.0515942	total: 460ms	remaining: 29.4ms
94:	learn: 19.9800764	total: 467ms	remaining: 24.6ms
95:	learn: 19.8996532	total: 474ms	remaining: 19.7ms
96:	learn: 19.8450910	total: 483ms	remaining: 14.9ms
97:	learn: 19.7887346	total: 490ms	remaining: 9.99ms
98:	learn: 19.7230872	total: 498ms	remaining: 5.03ms
99:	learn: 19.6328825	total: 503ms	remaining: 0us
0:	learn: 27.5585353	total: 4.84ms	remaining: 480ms
1:	learn: 27.1656995	total: 8.87ms	remaining: 435ms
2:	learn: 26.8590175	total: 13ms	remaining: 419ms
3:	learn: 26.5818406	total: 17.2ms	remaining: 412ms
4:	learn: 26.1148663	total: 21.1ms	remaining: 401ms
5:	learn: 25.7690484	total: 25.1ms	remaining: 393ms
6:	learn: 25.3489206	total: 29.3ms	remaining: 390ms
7:	learn: 24.9542406	total: 33.9ms	remaining: 390ms
8:	learn: 24.6777517	total: 38.3ms	remaining: 387ms
9:	learn: 24.3242344	total: 42.5ms	remaining: 383ms
10:	learn: 24.0383073	total: 46.2ms	remaining: 374ms
11:	learn: 23.7383420	total: 50.5ms	remaining: 370ms
12:	learn: 23.3461670	total: 54.5ms	remaining: 364ms
13:	learn: 23.0928636	total: 58.7ms	remaining: 361ms
14:	learn: 22.8770414	total: 63.4ms	remaining: 359ms
15:	learn: 22.6323214	total: 68ms	remaining: 357ms
16:	learn: 22.3597072	total: 72.3ms	remaining: 353ms
17:	learn: 22.1079813	total: 76.6ms	remaining: 349ms
18:	learn: 21.8421199	total: 81.2ms	remaining: 346ms
19:	learn: 21.6576508	total: 86ms	remaining: 344ms
20:	learn: 21.4301268	total: 90.8ms	remaining: 342ms
21:	learn: 21.2287388	total: 95.1ms	remaining: 337ms
22:	learn: 21.0553872	total: 99.4ms	remaining: 333ms
23:	learn: 20.8977091	total: 104ms	remaining: 329ms
24:	learn: 20.6619051	total: 109ms	remaining: 326ms
25:	learn: 20.5040955	total: 116ms	remaining: 329ms
26:	learn: 20.3181195	total: 123ms	remaining: 332ms
27:	learn: 20.0869436	total: 130ms	remaining: 334ms
28:	learn: 19.9375985	total: 138ms	remaining: 337ms
29:	learn: 19.8247516	total: 145ms	remaining: 338ms
30:	learn: 19.6261697	total: 150ms	remaining: 334ms
31:	learn: 19.4547236	total: 156ms	remaining: 331ms
32:	learn: 19.3157092	total: 161ms	remaining: 327ms
33:	learn: 19.1561419	total: 166ms	remaining: 322ms
34:	learn: 19.0453620	total: 171ms	remaining: 318ms
35:	learn: 18.8738574	total: 176ms	remaining: 314ms
36:	learn: 18.7072907	total: 182ms	remaining: 309ms
37:	learn: 18.5877943	total: 187ms	remaining: 304ms
38:	learn: 18.4436380	total: 191ms	remaining: 299ms
39:	learn: 18.3463356	total: 196ms	remaining: 295ms
40:	learn: 18.2008059	total: 201ms	remaining: 289ms
41:	learn: 18.0582079	total: 206ms	remaining: 284ms
42:	learn: 17.8891982	total: 210ms	remaining: 279ms
43:	learn: 17.7332246	total: 215ms	remaining: 273ms
44:	learn: 17.6206421	total: 220ms	remaining: 269ms
45:	learn: 17.4982800	total: 226ms	remaining: 265ms
46:	learn: 17.3970150	total: 231ms	remaining: 260ms
47:	learn: 17.3058203	total: 235ms	remaining: 254ms
48:	learn: 17.1789256	total: 239ms	remaining: 249ms
49:	learn: 17.0916229	total: 244ms	remaining: 244ms
50:	learn: 16.9859820	total: 248ms	remaining: 238ms
51:	learn: 16.8995582	total: 253ms	remaining: 233ms
52:	learn: 16.8137014	total: 257ms	remaining: 228ms
53:	learn: 16.7021451	total: 261ms	remaining: 223ms
54:	learn: 16.5895582	total: 265ms	remaining: 217ms
55:	learn: 16.5015639	total: 269ms	remaining: 212ms
56:	learn: 16.4356637	total: 274ms	remaining: 207ms
57:	learn: 16.3514525	total: 279ms	remaining: 202ms
58:	learn: 16.2401369	total: 283ms	remaining: 197ms
59:	learn: 16.1293223	total: 288ms	remaining: 192ms
60:	learn: 16.0271167	total: 292ms	remaining: 187ms
61:	learn: 15.9126257	total: 297ms	remaining: 182ms
62:	learn: 15.8391096	total: 302ms	remaining: 177ms
63:	learn: 15.7441773	total: 307ms	remaining: 173ms
64:	learn: 15.6885195	total: 316ms	remaining: 170ms
65:	learn: 15.6052039	total: 325ms	remaining: 167ms
66:	learn: 15.5074202	total: 335ms	remaining: 165ms
67:	learn: 15.4054338	total: 342ms	remaining: 161ms
68:	learn: 15.2885714	total: 348ms	remaining: 156ms
69:	learn: 15.2157472	total: 353ms	remaining: 151ms
70:	learn: 15.1031554	total: 358ms	remaining: 146ms
71:	learn: 15.0237470	total: 363ms	remaining: 141ms
72:	learn: 14.9756825	total: 369ms	remaining: 136ms
73:	learn: 14.8840596	total: 374ms	remaining: 131ms
74:	learn: 14.8077061	total: 379ms	remaining: 126ms
75:	learn: 14.7444437	total: 384ms	remaining: 121ms
76:	learn: 14.6751720	total: 390ms	remaining: 116ms
77:	learn: 14.5830333	total: 395ms	remaining: 111ms
78:	learn: 14.5241206	total: 400ms	remaining: 106ms
79:	learn: 14.4892731	total: 405ms	remaining: 101ms
80:	learn: 14.4256605	total: 411ms	remaining: 96.3ms
81:	learn: 14.3666860	total: 415ms	remaining: 91ms
82:	learn: 14.2938372	total: 419ms	remaining: 85.8ms
83:	learn: 14.2161532	total: 423ms	remaining: 80.6ms
84:	learn: 14.1582910	total: 427ms	remaining: 75.4ms
85:	learn: 14.1029153	total: 432ms	remaining: 70.3ms
86:	learn: 14.0475835	total: 436ms	remaining: 65.2ms
87:	learn: 13.9892661	total: 441ms	remaining: 60.1ms
88:	learn: 13.9481628	total: 445ms	remaining: 55ms
89:	learn: 13.8483991	total: 449ms	remaining: 49.9ms
90:	learn: 13.7775614	total: 454ms	remaining: 44.9ms
91:	learn: 13.7304585	total: 459ms	remaining: 39.9ms
92:	learn: 13.6783381	total: 464ms	remaining: 34.9ms
93:	learn: 13.6356964	total: 469ms	remaining: 29.9ms
94:	learn: 13.5924371	total: 474ms	remaining: 24.9ms
95:	learn: 13.5400746	total: 479ms	remaining: 20ms
96:	learn: 13.4897333	total: 484ms	remaining: 15ms
97:	learn: 13.4470321	total: 489ms	remaining: 9.98ms
98:	learn: 13.3856082	total: 494ms	remaining: 4.99ms
99:	learn: 13.3082371	total: 499ms	remaining: 0us
0:	learn: 43.0395283	total: 5.5ms	remaining: 544ms
1:	learn: 42.1130223	total: 10.9ms	remaining: 533ms
2:	learn: 41.1753409	total: 16.4ms	remaining: 532ms
3:	learn: 40.3637444	total: 21.6ms	remaining: 518ms
4:	learn: 39.6508088	total: 26.5ms	remaining: 503ms
5:	learn: 38.7217934	total: 31.9ms	remaining: 500ms
6:	learn: 37.8538055	total: 36.6ms	remaining: 487ms
7:	learn: 36.9793574	total: 41.4ms	remaining: 476ms
8:	learn: 36.3076984	total: 46.7ms	remaining: 472ms
9:	learn: 35.6673160	total: 51.1ms	remaining: 460ms
10:	learn: 34.8889800	total: 56.7ms	remaining: 459ms
11:	learn: 34.1675517	total: 61.9ms	remaining: 454ms
12:	learn: 33.6779564	total: 66.4ms	remaining: 444ms
13:	learn: 33.0710039	total: 70.5ms	remaining: 433ms
14:	learn: 32.4966674	total: 74.7ms	remaining: 423ms
15:	learn: 31.9492856	total: 79ms	remaining: 415ms
16:	learn: 31.5108129	total: 83.2ms	remaining: 406ms
17:	learn: 30.9804023	total: 87.6ms	remaining: 399ms
18:	learn: 30.4169089	total: 91.6ms	remaining: 391ms
19:	learn: 29.8930375	total: 95.7ms	remaining: 383ms
20:	learn: 29.3974421	total: 100ms	remaining: 377ms
21:	learn: 28.8792307	total: 104ms	remaining: 370ms
22:	learn: 28.3894474	total: 108ms	remaining: 363ms
23:	learn: 27.9921276	total: 112ms	remaining: 356ms
24:	learn: 27.6158887	total: 117ms	remaining: 350ms
25:	learn: 27.2866950	total: 121ms	remaining: 344ms
26:	learn: 26.8770708	total: 125ms	remaining: 338ms
27:	learn: 26.6233005	total: 129ms	remaining: 331ms
28:	learn: 26.2921934	total: 133ms	remaining: 325ms
29:	learn: 25.9156920	total: 137ms	remaining: 320ms
30:	learn: 25.5311106	total: 139ms	remaining: 309ms
31:	learn: 25.2178997	total: 143ms	remaining: 304ms
32:	learn: 24.8572196	total: 148ms	remaining: 300ms
33:	learn: 24.5849710	total: 152ms	remaining: 296ms
34:	learn: 24.2209190	total: 157ms	remaining: 291ms
35:	learn: 23.8708250	total: 161ms	remaining: 287ms
36:	learn: 23.5325279	total: 166ms	remaining: 282ms
37:	learn: 23.2116148	total: 171ms	remaining: 278ms
38:	learn: 22.9696787	total: 175ms	remaining: 274ms
39:	learn: 22.7936783	total: 184ms	remaining: 276ms
40:	learn: 22.6228847	total: 192ms	remaining: 276ms
41:	learn: 22.3691527	total: 200ms	remaining: 276ms
42:	learn: 22.1002173	total: 207ms	remaining: 275ms
43:	learn: 21.9157268	total: 212ms	remaining: 270ms
44:	learn: 21.7229102	total: 217ms	remaining: 265ms
45:	learn: 21.4642005	total: 222ms	remaining: 261ms
46:	learn: 21.3029442	total: 227ms	remaining: 256ms
47:	learn: 21.1469792	total: 232ms	remaining: 251ms
48:	learn: 20.9458235	total: 237ms	remaining: 247ms
49:	learn: 20.7335242	total: 242ms	remaining: 242ms
50:	learn: 20.5440269	total: 247ms	remaining: 237ms
51:	learn: 20.3661449	total: 252ms	remaining: 233ms
52:	learn: 20.2158134	total: 258ms	remaining: 229ms
53:	learn: 19.9934873	total: 263ms	remaining: 224ms
54:	learn: 19.7879739	total: 268ms	remaining: 219ms
55:	learn: 19.6630460	total: 274ms	remaining: 215ms
56:	learn: 19.5152729	total: 279ms	remaining: 210ms
57:	learn: 19.3581128	total: 283ms	remaining: 205ms
58:	learn: 19.2209303	total: 288ms	remaining: 200ms
59:	learn: 19.0965248	total: 292ms	remaining: 195ms
60:	learn: 19.0035954	total: 297ms	remaining: 190ms
61:	learn: 18.8554149	total: 301ms	remaining: 184ms
62:	learn: 18.7095427	total: 305ms	remaining: 179ms
63:	learn: 18.5751494	total: 309ms	remaining: 174ms
64:	learn: 18.4678251	total: 313ms	remaining: 169ms
65:	learn: 18.3500325	total: 317ms	remaining: 163ms
66:	learn: 18.2088983	total: 322ms	remaining: 159ms
67:	learn: 18.0737705	total: 326ms	remaining: 154ms
68:	learn: 17.9325058	total: 330ms	remaining: 148ms
69:	learn: 17.8003911	total: 334ms	remaining: 143ms
70:	learn: 17.7385366	total: 338ms	remaining: 138ms
71:	learn: 17.6106998	total: 343ms	remaining: 133ms
72:	learn: 17.4816270	total: 347ms	remaining: 128ms
73:	learn: 17.4025554	total: 352ms	remaining: 124ms
74:	learn: 17.2902108	total: 356ms	remaining: 119ms
75:	learn: 17.2158048	total: 361ms	remaining: 114ms
76:	learn: 17.1261053	total: 366ms	remaining: 109ms
77:	learn: 17.0308917	total: 370ms	remaining: 104ms
78:	learn: 16.9546705	total: 377ms	remaining: 100ms
79:	learn: 16.8319165	total: 384ms	remaining: 96.1ms
80:	learn: 16.7687017	total: 393ms	remaining: 92.1ms
81:	learn: 16.6972326	total: 400ms	remaining: 87.8ms
82:	learn: 16.6124580	total: 407ms	remaining: 83.5ms
83:	learn: 16.4999052	total: 413ms	remaining: 78.6ms
84:	learn: 16.4302484	total: 418ms	remaining: 73.7ms
85:	learn: 16.3201363	total: 423ms	remaining: 68.8ms
86:	learn: 16.2534314	total: 428ms	remaining: 63.9ms
87:	learn: 16.1720485	total: 433ms	remaining: 59ms
88:	learn: 16.0625751	total: 438ms	remaining: 54.1ms
89:	learn: 15.9135088	total: 443ms	remaining: 49.2ms
90:	learn: 15.8658863	total: 449ms	remaining: 44.4ms
91:	learn: 15.8066805	total: 453ms	remaining: 39.4ms
92:	learn: 15.7412103	total: 458ms	remaining: 34.5ms
93:	learn: 15.6542776	total: 463ms	remaining: 29.5ms
94:	learn: 15.5760334	total: 468ms	remaining: 24.6ms
95:	learn: 15.5434131	total: 474ms	remaining: 19.8ms
96:	learn: 15.4709561	total: 478ms	remaining: 14.8ms
97:	learn: 15.4449618	total: 482ms	remaining: 9.84ms
98:	learn: 15.3752761	total: 486ms	remaining: 4.91ms
99:	learn: 15.3106595	total: 491ms	remaining: 0us
0:	learn: 46.7142257	total: 4.53ms	remaining: 449ms
1:	learn: 45.7634153	total: 8.58ms	remaining: 420ms
2:	learn: 45.0054253	total: 13.1ms	remaining: 425ms
3:	learn: 44.2120432	total: 17.7ms	remaining: 424ms
4:	learn: 43.3960472	total: 22.4ms	remaining: 425ms
5:	learn: 42.8588120	total: 26.9ms	remaining: 421ms
6:	learn: 41.9533701	total: 31.6ms	remaining: 420ms
7:	learn: 41.2745030	total: 36.3ms	remaining: 417ms
8:	learn: 40.6797495	total: 41ms	remaining: 415ms
9:	learn: 39.9899571	total: 46.1ms	remaining: 415ms
10:	learn: 39.4682100	total: 53.9ms	remaining: 436ms
11:	learn: 39.0305595	total: 61.2ms	remaining: 449ms
12:	learn: 38.4200417	total: 69.5ms	remaining: 465ms
13:	learn: 37.8425194	total: 77.6ms	remaining: 477ms
14:	learn: 37.4203127	total: 82.9ms	remaining: 470ms
15:	learn: 36.9917688	total: 88.1ms	remaining: 463ms
16:	learn: 36.5544138	total: 93.6ms	remaining: 457ms
17:	learn: 36.0727019	total: 99.2ms	remaining: 452ms
18:	learn: 35.4835715	total: 105ms	remaining: 447ms
19:	learn: 34.9865654	total: 110ms	remaining: 441ms
20:	learn: 34.6063373	total: 116ms	remaining: 436ms
21:	learn: 34.0997289	total: 121ms	remaining: 430ms
22:	learn: 33.7313171	total: 127ms	remaining: 425ms
23:	learn: 33.3582000	total: 144ms	remaining: 455ms
24:	learn: 32.9432456	total: 148ms	remaining: 445ms
25:	learn: 32.5220888	total: 152ms	remaining: 434ms
26:	learn: 32.2172292	total: 156ms	remaining: 423ms
27:	learn: 31.8972904	total: 161ms	remaining: 414ms
28:	learn: 31.6405350	total: 165ms	remaining: 404ms
29:	learn: 31.4167702	total: 169ms	remaining: 394ms
30:	learn: 30.8541961	total: 170ms	remaining: 379ms
31:	learn: 30.5572111	total: 175ms	remaining: 372ms
32:	learn: 30.1700399	total: 180ms	remaining: 365ms
33:	learn: 29.8537271	total: 184ms	remaining: 357ms
34:	learn: 29.6192540	total: 188ms	remaining: 349ms
35:	learn: 29.3276362	total: 192ms	remaining: 342ms
36:	learn: 28.9985179	total: 197ms	remaining: 335ms
37:	learn: 28.7046880	total: 201ms	remaining: 327ms
38:	learn: 28.4412677	total: 205ms	remaining: 321ms
39:	learn: 28.1277292	total: 211ms	remaining: 316ms
40:	learn: 27.9000750	total: 216ms	remaining: 310ms
41:	learn: 27.5433162	total: 221ms	remaining: 305ms
42:	learn: 27.2493285	total: 226ms	remaining: 299ms
43:	learn: 26.9576632	total: 228ms	remaining: 290ms
44:	learn: 26.6177110	total: 233ms	remaining: 285ms
45:	learn: 26.2812456	total: 238ms	remaining: 279ms
46:	learn: 26.0803859	total: 243ms	remaining: 274ms
47:	learn: 25.9543581	total: 247ms	remaining: 267ms
48:	learn: 25.7951582	total: 251ms	remaining: 262ms
49:	learn: 25.6548184	total: 256ms	remaining: 256ms
50:	learn: 25.4010843	total: 264ms	remaining: 254ms
51:	learn: 24.9773937	total: 272ms	remaining: 251ms
52:	learn: 24.8026156	total: 282ms	remaining: 250ms
53:	learn: 24.5568053	total: 290ms	remaining: 247ms
54:	learn: 24.2281839	total: 296ms	remaining: 242ms
55:	learn: 23.9202795	total: 301ms	remaining: 236ms
56:	learn: 23.7625591	total: 306ms	remaining: 231ms
57:	learn: 23.5429721	total: 311ms	remaining: 225ms
58:	learn: 23.3175893	total: 316ms	remaining: 220ms
59:	learn: 23.2035130	total: 322ms	remaining: 214ms
60:	learn: 23.0232450	total: 327ms	remaining: 209ms
61:	learn: 22.8384958	total: 332ms	remaining: 204ms
62:	learn: 22.6499902	total: 338ms	remaining: 199ms
63:	learn: 22.4577426	total: 343ms	remaining: 193ms
64:	learn: 22.3333158	total: 348ms	remaining: 188ms
65:	learn: 22.2064131	total: 354ms	remaining: 182ms
66:	learn: 22.1434971	total: 360ms	remaining: 177ms
67:	learn: 21.9596519	total: 364ms	remaining: 171ms
68:	learn: 21.8475576	total: 369ms	remaining: 166ms
69:	learn: 21.6954745	total: 373ms	remaining: 160ms
70:	learn: 21.5635976	total: 378ms	remaining: 155ms
71:	learn: 21.4588506	total: 383ms	remaining: 149ms
72:	learn: 21.3527268	total: 387ms	remaining: 143ms
73:	learn: 21.2661288	total: 392ms	remaining: 138ms
74:	learn: 21.1817333	total: 397ms	remaining: 132ms
75:	learn: 21.0527553	total: 401ms	remaining: 127ms
76:	learn: 20.9229021	total: 406ms	remaining: 121ms
77:	learn: 20.7563946	total: 410ms	remaining: 116ms
78:	learn: 20.6569831	total: 415ms	remaining: 110ms
79:	learn: 20.4982663	total: 419ms	remaining: 105ms
80:	learn: 20.3185460	total: 424ms	remaining: 99.5ms
81:	learn: 20.2096241	total: 429ms	remaining: 94.2ms
82:	learn: 20.1274891	total: 434ms	remaining: 88.9ms
83:	learn: 20.0740139	total: 438ms	remaining: 83.5ms
84:	learn: 19.9630699	total: 443ms	remaining: 78.2ms
85:	learn: 19.8753899	total: 448ms	remaining: 72.9ms
86:	learn: 19.6563612	total: 453ms	remaining: 67.7ms
87:	learn: 19.4680232	total: 463ms	remaining: 63.1ms
88:	learn: 19.3503431	total: 475ms	remaining: 58.7ms
89:	learn: 19.2221379	total: 481ms	remaining: 53.4ms
90:	learn: 19.0732542	total: 488ms	remaining: 48.2ms
91:	learn: 18.9825190	total: 493ms	remaining: 42.9ms
92:	learn: 18.8839009	total: 498ms	remaining: 37.5ms
93:	learn: 18.8012219	total: 503ms	remaining: 32.1ms
94:	learn: 18.7172713	total: 509ms	remaining: 26.8ms
95:	learn: 18.6201170	total: 514ms	remaining: 21.4ms
96:	learn: 18.5318611	total: 519ms	remaining: 16ms
97:	learn: 18.3833356	total: 524ms	remaining: 10.7ms
98:	learn: 18.3289700	total: 529ms	remaining: 5.34ms
99:	learn: 18.2227333	total: 534ms	remaining: 0us
0:	learn: 46.3764524	total: 4.49ms	remaining: 444ms
1:	learn: 45.5561269	total: 8.82ms	remaining: 432ms
2:	learn: 44.8811245	total: 13.1ms	remaining: 422ms
3:	learn: 44.0788617	total: 17.4ms	remaining: 417ms
4:	learn: 43.3619790	total: 21.3ms	remaining: 405ms
5:	learn: 42.6912112	total: 25.5ms	remaining: 400ms
6:	learn: 42.2292118	total: 29.5ms	remaining: 392ms
7:	learn: 41.7725191	total: 33.3ms	remaining: 383ms
8:	learn: 41.1676614	total: 37.4ms	remaining: 378ms
9:	learn: 40.5771076	total: 41.4ms	remaining: 373ms
10:	learn: 39.8343757	total: 46.2ms	remaining: 374ms
11:	learn: 39.3761142	total: 50.2ms	remaining: 368ms
12:	learn: 38.5254692	total: 54.4ms	remaining: 364ms
13:	learn: 37.9629555	total: 58.5ms	remaining: 360ms
14:	learn: 37.4418438	total: 63.2ms	remaining: 358ms
15:	learn: 37.0507283	total: 67.6ms	remaining: 355ms
16:	learn: 36.6264217	total: 71.8ms	remaining: 350ms
17:	learn: 36.1114940	total: 76.6ms	remaining: 349ms
18:	learn: 35.7193862	total: 81ms	remaining: 345ms
19:	learn: 35.3301177	total: 85.3ms	remaining: 341ms
20:	learn: 35.0598280	total: 89.6ms	remaining: 337ms
21:	learn: 34.5469736	total: 94.4ms	remaining: 335ms
22:	learn: 34.2064215	total: 101ms	remaining: 339ms
23:	learn: 33.7280710	total: 108ms	remaining: 343ms
24:	learn: 33.3282940	total: 117ms	remaining: 350ms
25:	learn: 32.8478961	total: 123ms	remaining: 350ms
26:	learn: 32.5722164	total: 130ms	remaining: 353ms
27:	learn: 32.2457019	total: 135ms	remaining: 348ms
28:	learn: 31.9230495	total: 141ms	remaining: 344ms
29:	learn: 31.4311611	total: 145ms	remaining: 339ms
30:	learn: 30.9179052	total: 151ms	remaining: 336ms
31:	learn: 30.6201141	total: 156ms	remaining: 332ms
32:	learn: 30.3421106	total: 161ms	remaining: 328ms
33:	learn: 29.9885373	total: 167ms	remaining: 324ms
34:	learn: 29.7462780	total: 172ms	remaining: 319ms
35:	learn: 29.3607153	total: 177ms	remaining: 314ms
36:	learn: 29.1793078	total: 182ms	remaining: 310ms
37:	learn: 28.9276538	total: 186ms	remaining: 304ms
38:	learn: 28.6903934	total: 192ms	remaining: 300ms
39:	learn: 28.2095033	total: 197ms	remaining: 296ms
40:	learn: 27.7990608	total: 201ms	remaining: 290ms
41:	learn: 27.5406632	total: 205ms	remaining: 284ms
42:	learn: 27.2575376	total: 209ms	remaining: 277ms
43:	learn: 26.9741707	total: 213ms	remaining: 271ms
44:	learn: 26.6606899	total: 217ms	remaining: 266ms
45:	learn: 26.4015833	total: 221ms	remaining: 260ms
46:	learn: 26.1828993	total: 225ms	remaining: 254ms
47:	learn: 26.0233709	total: 228ms	remaining: 247ms
48:	learn: 25.9300399	total: 232ms	remaining: 241ms
49:	learn: 25.5861489	total: 236ms	remaining: 236ms
50:	learn: 25.4322012	total: 240ms	remaining: 230ms
51:	learn: 25.1595644	total: 244ms	remaining: 225ms
52:	learn: 24.9955303	total: 248ms	remaining: 220ms
53:	learn: 24.7273966	total: 252ms	remaining: 215ms
54:	learn: 24.5747978	total: 257ms	remaining: 210ms
55:	learn: 24.3807977	total: 261ms	remaining: 205ms
56:	learn: 24.1689569	total: 264ms	remaining: 199ms
57:	learn: 23.9898221	total: 268ms	remaining: 194ms
58:	learn: 23.7566414	total: 272ms	remaining: 189ms
59:	learn: 23.6641165	total: 277ms	remaining: 185ms
60:	learn: 23.5658066	total: 281ms	remaining: 180ms
61:	learn: 23.4338851	total: 285ms	remaining: 175ms
62:	learn: 23.2408837	total: 290ms	remaining: 170ms
63:	learn: 23.0642038	total: 294ms	remaining: 165ms
64:	learn: 22.9032045	total: 298ms	remaining: 161ms
65:	learn: 22.7736138	total: 302ms	remaining: 156ms
66:	learn: 22.6836443	total: 307ms	remaining: 151ms
67:	learn: 22.5983654	total: 315ms	remaining: 148ms
68:	learn: 22.4419813	total: 323ms	remaining: 145ms
69:	learn: 22.2863339	total: 331ms	remaining: 142ms
70:	learn: 22.1792943	total: 338ms	remaining: 138ms
71:	learn: 22.1130574	total: 344ms	remaining: 134ms
72:	learn: 21.9858161	total: 349ms	remaining: 129ms
73:	learn: 21.8577784	total: 354ms	remaining: 125ms
74:	learn: 21.7845222	total: 365ms	remaining: 122ms
75:	learn: 21.6831390	total: 370ms	remaining: 117ms
76:	learn: 21.6292521	total: 375ms	remaining: 112ms
77:	learn: 21.5789330	total: 380ms	remaining: 107ms
78:	learn: 21.5420942	total: 385ms	remaining: 102ms
79:	learn: 21.4280939	total: 389ms	remaining: 97.4ms
80:	learn: 21.3641165	total: 395ms	remaining: 92.6ms
81:	learn: 21.2734814	total: 399ms	remaining: 87.7ms
82:	learn: 21.2220323	total: 405ms	remaining: 83ms
83:	learn: 21.0625792	total: 411ms	remaining: 78.2ms
84:	learn: 20.9488320	total: 416ms	remaining: 73.3ms
85:	learn: 20.8504255	total: 420ms	remaining: 68.3ms
86:	learn: 20.7848510	total: 424ms	remaining: 63.3ms
87:	learn: 20.7247442	total: 428ms	remaining: 58.3ms
88:	learn: 20.5698590	total: 432ms	remaining: 53.4ms
89:	learn: 20.4067620	total: 436ms	remaining: 48.4ms
90:	learn: 20.3062482	total: 440ms	remaining: 43.5ms
91:	learn: 20.2029696	total: 444ms	remaining: 38.6ms
92:	learn: 20.1384849	total: 448ms	remaining: 33.7ms
93:	learn: 20.0260709	total: 452ms	remaining: 28.9ms
94:	learn: 19.9122100	total: 456ms	remaining: 24ms
95:	learn: 19.8648487	total: 461ms	remaining: 19.2ms
96:	learn: 19.8207072	total: 465ms	remaining: 14.4ms
97:	learn: 19.7261189	total: 469ms	remaining: 9.57ms
98:	learn: 19.7042438	total: 474ms	remaining: 4.79ms
99:	learn: 19.6546645	total: 478ms	remaining: 0us
0:	learn: 47.0239288	total: 5.97ms	remaining: 591ms
1:	learn: 46.2253829	total: 11.3ms	remaining: 556ms
2:	learn: 45.5580301	total: 16.8ms	remaining: 542ms
3:	learn: 44.7273237	total: 21.8ms	remaining: 523ms
4:	learn: 43.8867421	total: 26.8ms	remaining: 509ms
5:	learn: 43.3615911	total: 31.9ms	remaining: 500ms
6:	learn: 42.8548390	total: 37ms	remaining: 491ms
7:	learn: 42.1606758	total: 42ms	remaining: 483ms
8:	learn: 41.6625870	total: 47.2ms	remaining: 477ms
9:	learn: 40.9497092	total: 52.3ms	remaining: 470ms
10:	learn: 40.1886318	total: 57ms	remaining: 461ms
11:	learn: 39.7456423	total: 62.4ms	remaining: 458ms
12:	learn: 39.1171373	total: 67.5ms	remaining: 452ms
13:	learn: 38.5451069	total: 73ms	remaining: 448ms
14:	learn: 38.0155834	total: 77.7ms	remaining: 440ms
15:	learn: 37.5631354	total: 82.4ms	remaining: 432ms
16:	learn: 37.1030023	total: 86.9ms	remaining: 424ms
17:	learn: 36.4563029	total: 91.7ms	remaining: 418ms
18:	learn: 36.0160976	total: 96.2ms	remaining: 410ms
19:	learn: 35.5079827	total: 101ms	remaining: 403ms
20:	learn: 35.2111885	total: 105ms	remaining: 396ms
21:	learn: 34.9397465	total: 110ms	remaining: 389ms
22:	learn: 34.5270048	total: 114ms	remaining: 382ms
23:	learn: 34.0169260	total: 118ms	remaining: 374ms
24:	learn: 33.7454892	total: 123ms	remaining: 368ms
25:	learn: 33.2648157	total: 127ms	remaining: 362ms
26:	learn: 32.8899427	total: 131ms	remaining: 355ms
27:	learn: 32.6185050	total: 135ms	remaining: 348ms
28:	learn: 32.3528531	total: 140ms	remaining: 343ms
29:	learn: 32.0859923	total: 145ms	remaining: 338ms
30:	learn: 31.6511144	total: 150ms	remaining: 334ms
31:	learn: 31.2571765	total: 155ms	remaining: 330ms
32:	learn: 30.9770049	total: 160ms	remaining: 324ms
33:	learn: 30.6084872	total: 164ms	remaining: 318ms
34:	learn: 30.3448632	total: 168ms	remaining: 313ms
35:	learn: 30.0360942	total: 173ms	remaining: 308ms
36:	learn: 29.6648968	total: 180ms	remaining: 306ms
37:	learn: 29.3165114	total: 187ms	remaining: 306ms
38:	learn: 29.0829198	total: 196ms	remaining: 306ms
39:	learn: 28.7752064	total: 202ms	remaining: 303ms
40:	learn: 28.3622191	total: 209ms	remaining: 301ms
41:	learn: 28.1346631	total: 214ms	remaining: 296ms
42:	learn: 27.9585719	total: 219ms	remaining: 291ms
43:	learn: 27.6565566	total: 225ms	remaining: 286ms
44:	learn: 27.3616172	total: 230ms	remaining: 281ms
45:	learn: 27.0658637	total: 235ms	remaining: 276ms
46:	learn: 26.8660382	total: 241ms	remaining: 271ms
47:	learn: 26.6536078	total: 246ms	remaining: 266ms
48:	learn: 26.3524440	total: 251ms	remaining: 261ms
49:	learn: 26.1595277	total: 256ms	remaining: 256ms
50:	learn: 25.9273523	total: 261ms	remaining: 251ms
51:	learn: 25.7195580	total: 266ms	remaining: 245ms
52:	learn: 25.5730225	total: 271ms	remaining: 240ms
53:	learn: 25.3455276	total: 276ms	remaining: 235ms
54:	learn: 25.2289675	total: 281ms	remaining: 230ms
55:	learn: 25.0133024	total: 285ms	remaining: 224ms
56:	learn: 24.8406714	total: 289ms	remaining: 218ms
57:	learn: 24.6367857	total: 293ms	remaining: 212ms
58:	learn: 24.5338177	total: 298ms	remaining: 207ms
59:	learn: 24.3799964	total: 301ms	remaining: 201ms
60:	learn: 24.1447492	total: 305ms	remaining: 195ms
61:	learn: 23.9880495	total: 310ms	remaining: 190ms
62:	learn: 23.7140630	total: 314ms	remaining: 184ms
63:	learn: 23.5003791	total: 318ms	remaining: 179ms
64:	learn: 23.3207645	total: 322ms	remaining: 174ms
65:	learn: 23.1958356	total: 326ms	remaining: 168ms
66:	learn: 23.0471302	total: 330ms	remaining: 163ms
67:	learn: 22.8977183	total: 335ms	remaining: 157ms
68:	learn: 22.7187400	total: 339ms	remaining: 152ms
69:	learn: 22.6523405	total: 343ms	remaining: 147ms
70:	learn: 22.4767453	total: 347ms	remaining: 142ms
71:	learn: 22.3243677	total: 352ms	remaining: 137ms
72:	learn: 22.2133096	total: 356ms	remaining: 132ms
73:	learn: 22.1151713	total: 361ms	remaining: 127ms
74:	learn: 22.0296666	total: 365ms	remaining: 122ms
75:	learn: 21.9195980	total: 370ms	remaining: 117ms
76:	learn: 21.8401730	total: 379ms	remaining: 113ms
77:	learn: 21.8079797	total: 386ms	remaining: 109ms
78:	learn: 21.7274109	total: 394ms	remaining: 105ms
79:	learn: 21.6663032	total: 400ms	remaining: 100ms
80:	learn: 21.5633117	total: 406ms	remaining: 95.3ms
81:	learn: 21.4542467	total: 411ms	remaining: 90.3ms
82:	learn: 21.3177957	total: 416ms	remaining: 85.3ms
83:	learn: 21.1289167	total: 421ms	remaining: 80.3ms
84:	learn: 21.0297368	total: 426ms	remaining: 75.2ms
85:	learn: 20.9089564	total: 431ms	remaining: 70.2ms
86:	learn: 20.7653988	total: 437ms	remaining: 65.2ms
87:	learn: 20.6521894	total: 442ms	remaining: 60.2ms
88:	learn: 20.5193021	total: 447ms	remaining: 55.2ms
89:	learn: 20.4361620	total: 452ms	remaining: 50.2ms
90:	learn: 20.3546710	total: 456ms	remaining: 45.1ms
91:	learn: 20.2513296	total: 461ms	remaining: 40.1ms
92:	learn: 20.1605550	total: 466ms	remaining: 35.1ms
93:	learn: 20.0515942	total: 472ms	remaining: 30.1ms
94:	learn: 19.9800764	total: 476ms	remaining: 25.1ms
95:	learn: 19.8996532	total: 480ms	remaining: 20ms
96:	learn: 19.8450910	total: 484ms	remaining: 15ms
97:	learn: 19.7887346	total: 488ms	remaining: 9.96ms
98:	learn: 19.7230872	total: 491ms	remaining: 4.96ms
99:	learn: 19.6328825	total: 495ms	remaining: 0us
0:	learn: 27.5585353	total: 5.01ms	remaining: 496ms
1:	learn: 27.1656995	total: 9.29ms	remaining: 455ms
2:	learn: 26.8590175	total: 13.4ms	remaining: 432ms
3:	learn: 26.5818406	total: 17.9ms	remaining: 429ms
4:	learn: 26.1148663	total: 22.4ms	remaining: 425ms
5:	learn: 25.7690484	total: 26.6ms	remaining: 417ms
6:	learn: 25.3489206	total: 34.6ms	remaining: 460ms
7:	learn: 24.9542406	total: 42.4ms	remaining: 488ms
8:	learn: 24.6777517	total: 51.7ms	remaining: 523ms
9:	learn: 24.3242344	total: 57.9ms	remaining: 521ms
10:	learn: 24.0383073	total: 63.7ms	remaining: 516ms
11:	learn: 23.7383420	total: 68.8ms	remaining: 505ms
12:	learn: 23.3461670	total: 74ms	remaining: 495ms
13:	learn: 23.0928636	total: 79ms	remaining: 485ms
14:	learn: 22.8770414	total: 84.1ms	remaining: 477ms
15:	learn: 22.6323214	total: 89.3ms	remaining: 469ms
16:	learn: 22.3597072	total: 94.3ms	remaining: 461ms
17:	learn: 22.1079813	total: 99.2ms	remaining: 452ms
18:	learn: 21.8421199	total: 104ms	remaining: 444ms
19:	learn: 21.6576508	total: 109ms	remaining: 437ms
20:	learn: 21.4301268	total: 114ms	remaining: 429ms
21:	learn: 21.2287388	total: 119ms	remaining: 421ms
22:	learn: 21.0553872	total: 124ms	remaining: 415ms
23:	learn: 20.8977091	total: 129ms	remaining: 410ms
24:	learn: 20.6619051	total: 135ms	remaining: 404ms
25:	learn: 20.5040955	total: 139ms	remaining: 396ms
26:	learn: 20.3181195	total: 144ms	remaining: 388ms
27:	learn: 20.0869436	total: 147ms	remaining: 379ms
28:	learn: 19.9375985	total: 152ms	remaining: 371ms
29:	learn: 19.8247516	total: 155ms	remaining: 363ms
30:	learn: 19.6261697	total: 160ms	remaining: 355ms
31:	learn: 19.4547236	total: 163ms	remaining: 347ms
32:	learn: 19.3157092	total: 167ms	remaining: 340ms
33:	learn: 19.1561419	total: 171ms	remaining: 333ms
34:	learn: 19.0453620	total: 176ms	remaining: 326ms
35:	learn: 18.8738574	total: 180ms	remaining: 320ms
36:	learn: 18.7072907	total: 184ms	remaining: 313ms
37:	learn: 18.5877943	total: 188ms	remaining: 306ms
38:	learn: 18.4436380	total: 192ms	remaining: 300ms
39:	learn: 18.3463356	total: 196ms	remaining: 294ms
40:	learn: 18.2008059	total: 200ms	remaining: 288ms
41:	learn: 18.0582079	total: 204ms	remaining: 281ms
42:	learn: 17.8891982	total: 208ms	remaining: 276ms
43:	learn: 17.7332246	total: 212ms	remaining: 270ms
44:	learn: 17.6206421	total: 217ms	remaining: 265ms
45:	learn: 17.4982800	total: 220ms	remaining: 259ms
46:	learn: 17.3970150	total: 224ms	remaining: 253ms
47:	learn: 17.3058203	total: 229ms	remaining: 248ms
48:	learn: 17.1789256	total: 233ms	remaining: 243ms
49:	learn: 17.0916229	total: 238ms	remaining: 238ms
50:	learn: 16.9859820	total: 242ms	remaining: 233ms
51:	learn: 16.8995582	total: 247ms	remaining: 228ms
52:	learn: 16.8137014	total: 252ms	remaining: 223ms
53:	learn: 16.7021451	total: 256ms	remaining: 218ms
54:	learn: 16.5895582	total: 260ms	remaining: 213ms
55:	learn: 16.5015639	total: 267ms	remaining: 210ms
56:	learn: 16.4356637	total: 275ms	remaining: 207ms
57:	learn: 16.3514525	total: 283ms	remaining: 205ms
58:	learn: 16.2401369	total: 290ms	remaining: 201ms
59:	learn: 16.1293223	total: 298ms	remaining: 199ms
60:	learn: 16.0271167	total: 303ms	remaining: 194ms
61:	learn: 15.9126257	total: 308ms	remaining: 189ms
62:	learn: 15.8391096	total: 313ms	remaining: 184ms
63:	learn: 15.7441773	total: 318ms	remaining: 179ms
64:	learn: 15.6885195	total: 324ms	remaining: 174ms
65:	learn: 15.6052039	total: 329ms	remaining: 169ms
66:	learn: 15.5074202	total: 334ms	remaining: 165ms
67:	learn: 15.4054338	total: 339ms	remaining: 160ms
68:	learn: 15.2885714	total: 344ms	remaining: 155ms
69:	learn: 15.2157472	total: 349ms	remaining: 150ms
70:	learn: 15.1031554	total: 354ms	remaining: 145ms
71:	learn: 15.0237470	total: 359ms	remaining: 140ms
72:	learn: 14.9756825	total: 365ms	remaining: 135ms
73:	learn: 14.8840596	total: 369ms	remaining: 130ms
74:	learn: 14.8077061	total: 373ms	remaining: 124ms
75:	learn: 14.7444437	total: 377ms	remaining: 119ms
76:	learn: 14.6751720	total: 382ms	remaining: 114ms
77:	learn: 14.5830333	total: 386ms	remaining: 109ms
78:	learn: 14.5241206	total: 390ms	remaining: 104ms
79:	learn: 14.4892731	total: 394ms	remaining: 98.4ms
80:	learn: 14.4256605	total: 398ms	remaining: 93.3ms
81:	learn: 14.3666860	total: 402ms	remaining: 88.2ms
82:	learn: 14.2938372	total: 406ms	remaining: 83.2ms
83:	learn: 14.2161532	total: 410ms	remaining: 78.1ms
84:	learn: 14.1582910	total: 414ms	remaining: 73.1ms
85:	learn: 14.1029153	total: 418ms	remaining: 68.1ms
86:	learn: 14.0475835	total: 422ms	remaining: 63.1ms
87:	learn: 13.9892661	total: 427ms	remaining: 58.2ms
88:	learn: 13.9481628	total: 432ms	remaining: 53.3ms
89:	learn: 13.8483991	total: 436ms	remaining: 48.5ms
90:	learn: 13.7775614	total: 441ms	remaining: 43.6ms
91:	learn: 13.7304585	total: 445ms	remaining: 38.7ms
92:	learn: 13.6783381	total: 450ms	remaining: 33.9ms
93:	learn: 13.6356964	total: 454ms	remaining: 29ms
94:	learn: 13.5924371	total: 459ms	remaining: 24.2ms
95:	learn: 13.5400746	total: 466ms	remaining: 19.4ms
96:	learn: 13.4897333	total: 474ms	remaining: 14.6ms
97:	learn: 13.4470321	total: 485ms	remaining: 9.9ms
98:	learn: 13.3856082	total: 491ms	remaining: 4.96ms
99:	learn: 13.3082371	total: 498ms	remaining: 0us
0:	learn: 43.0395283	total: 4.94ms	remaining: 489ms
1:	learn: 42.1130223	total: 8.88ms	remaining: 435ms
2:	learn: 41.1753409	total: 13.1ms	remaining: 424ms
3:	learn: 40.3637444	total: 17.4ms	remaining: 419ms
4:	learn: 39.6508088	total: 21.8ms	remaining: 414ms
5:	learn: 38.7217934	total: 26ms	remaining: 407ms
6:	learn: 37.8538055	total: 30.3ms	remaining: 402ms
7:	learn: 36.9793574	total: 34.3ms	remaining: 395ms
8:	learn: 36.3076984	total: 38.4ms	remaining: 388ms
9:	learn: 35.6673160	total: 42.5ms	remaining: 383ms
10:	learn: 34.8889800	total: 46.7ms	remaining: 378ms
11:	learn: 34.1675517	total: 50.5ms	remaining: 371ms
12:	learn: 33.6779564	total: 54.9ms	remaining: 367ms
13:	learn: 33.0710039	total: 58.8ms	remaining: 361ms
14:	learn: 32.4966674	total: 62.8ms	remaining: 356ms
15:	learn: 31.9492856	total: 66.8ms	remaining: 351ms
16:	learn: 31.5108129	total: 70.9ms	remaining: 346ms
17:	learn: 30.9804023	total: 75ms	remaining: 342ms
18:	learn: 30.4169089	total: 79.1ms	remaining: 337ms
19:	learn: 29.8930375	total: 83.1ms	remaining: 332ms
20:	learn: 29.3974421	total: 87.8ms	remaining: 330ms
21:	learn: 28.8792307	total: 92.9ms	remaining: 329ms
22:	learn: 28.3894474	total: 97.8ms	remaining: 327ms
23:	learn: 27.9921276	total: 103ms	remaining: 326ms
24:	learn: 27.6158887	total: 108ms	remaining: 323ms
25:	learn: 27.2866950	total: 113ms	remaining: 320ms
26:	learn: 26.8770708	total: 118ms	remaining: 318ms
27:	learn: 26.6233005	total: 122ms	remaining: 315ms
28:	learn: 26.2921934	total: 131ms	remaining: 322ms
29:	learn: 25.9156920	total: 140ms	remaining: 326ms
30:	learn: 25.5311106	total: 144ms	remaining: 320ms
31:	learn: 25.2178997	total: 149ms	remaining: 318ms
32:	learn: 24.8572196	total: 156ms	remaining: 317ms
33:	learn: 24.5849710	total: 161ms	remaining: 313ms
34:	learn: 24.2209190	total: 166ms	remaining: 309ms
35:	learn: 23.8708250	total: 171ms	remaining: 304ms
36:	learn: 23.5325279	total: 176ms	remaining: 300ms
37:	learn: 23.2116148	total: 181ms	remaining: 296ms
38:	learn: 22.9696787	total: 186ms	remaining: 291ms
39:	learn: 22.7936783	total: 192ms	remaining: 287ms
40:	learn: 22.6228847	total: 197ms	remaining: 283ms
41:	learn: 22.3691527	total: 202ms	remaining: 279ms
42:	learn: 22.1002173	total: 207ms	remaining: 274ms
43:	learn: 21.9157268	total: 212ms	remaining: 269ms
44:	learn: 21.7229102	total: 217ms	remaining: 265ms
45:	learn: 21.4642005	total: 222ms	remaining: 261ms
46:	learn: 21.3029442	total: 226ms	remaining: 255ms
47:	learn: 21.1469792	total: 230ms	remaining: 250ms
48:	learn: 20.9458235	total: 235ms	remaining: 244ms
49:	learn: 20.7335242	total: 239ms	remaining: 239ms
50:	learn: 20.5440269	total: 243ms	remaining: 233ms
51:	learn: 20.3661449	total: 247ms	remaining: 228ms
52:	learn: 20.2158134	total: 251ms	remaining: 223ms
53:	learn: 19.9934873	total: 255ms	remaining: 217ms
54:	learn: 19.7879739	total: 259ms	remaining: 212ms
55:	learn: 19.6630460	total: 263ms	remaining: 207ms
56:	learn: 19.5152729	total: 267ms	remaining: 202ms
57:	learn: 19.3581128	total: 271ms	remaining: 197ms
58:	learn: 19.2209303	total: 275ms	remaining: 191ms
59:	learn: 19.0965248	total: 279ms	remaining: 186ms
60:	learn: 19.0035954	total: 284ms	remaining: 182ms
61:	learn: 18.8554149	total: 288ms	remaining: 177ms
62:	learn: 18.7095427	total: 293ms	remaining: 172ms
63:	learn: 18.5751494	total: 297ms	remaining: 167ms
64:	learn: 18.4678251	total: 302ms	remaining: 163ms
65:	learn: 18.3500325	total: 307ms	remaining: 158ms
66:	learn: 18.2088983	total: 311ms	remaining: 153ms
67:	learn: 18.0737705	total: 316ms	remaining: 149ms
68:	learn: 17.9325058	total: 324ms	remaining: 146ms
69:	learn: 17.8003911	total: 331ms	remaining: 142ms
70:	learn: 17.7385366	total: 342ms	remaining: 139ms
71:	learn: 17.6106998	total: 347ms	remaining: 135ms
72:	learn: 17.4816270	total: 353ms	remaining: 131ms
73:	learn: 17.4025554	total: 359ms	remaining: 126ms
74:	learn: 17.2902108	total: 364ms	remaining: 121ms
75:	learn: 17.2158048	total: 368ms	remaining: 116ms
76:	learn: 17.1261053	total: 374ms	remaining: 112ms
77:	learn: 17.0308917	total: 379ms	remaining: 107ms
78:	learn: 16.9546705	total: 384ms	remaining: 102ms
79:	learn: 16.8319165	total: 389ms	remaining: 97.3ms
80:	learn: 16.7687017	total: 394ms	remaining: 92.5ms
81:	learn: 16.6972326	total: 400ms	remaining: 87.7ms
82:	learn: 16.6124580	total: 405ms	remaining: 83ms
83:	learn: 16.4999052	total: 410ms	remaining: 78.2ms
84:	learn: 16.4302484	total: 416ms	remaining: 73.3ms
85:	learn: 16.3201363	total: 421ms	remaining: 68.5ms
86:	learn: 16.2534314	total: 425ms	remaining: 63.5ms
87:	learn: 16.1720485	total: 429ms	remaining: 58.5ms
88:	learn: 16.0625751	total: 433ms	remaining: 53.6ms
89:	learn: 15.9135088	total: 438ms	remaining: 48.6ms
90:	learn: 15.8658863	total: 442ms	remaining: 43.7ms
91:	learn: 15.8066805	total: 446ms	remaining: 38.8ms
92:	learn: 15.7412103	total: 450ms	remaining: 33.9ms
93:	learn: 15.6542776	total: 455ms	remaining: 29ms
94:	learn: 15.5760334	total: 459ms	remaining: 24.1ms
95:	learn: 15.5434131	total: 463ms	remaining: 19.3ms
96:	learn: 15.4709561	total: 468ms	remaining: 14.5ms
97:	learn: 15.4449618	total: 472ms	remaining: 9.62ms
98:	learn: 15.3752761	total: 475ms	remaining: 4.8ms
99:	learn: 15.3106595	total: 480ms	remaining: 0us
0:	learn: 46.7142257	total: 7.56ms	remaining: 749ms
1:	learn: 45.7634153	total: 16ms	remaining: 785ms
2:	learn: 45.0054253	total: 21.6ms	remaining: 699ms
3:	learn: 44.2120432	total: 28.2ms	remaining: 676ms
4:	learn: 43.3960472	total: 33.6ms	remaining: 639ms
5:	learn: 42.8588120	total: 38.8ms	remaining: 608ms
6:	learn: 41.9533701	total: 43.9ms	remaining: 583ms
7:	learn: 41.2745030	total: 49.1ms	remaining: 564ms
8:	learn: 40.6797495	total: 54.3ms	remaining: 549ms
9:	learn: 39.9899571	total: 59.7ms	remaining: 537ms
10:	learn: 39.4682100	total: 65ms	remaining: 526ms
11:	learn: 39.0305595	total: 70ms	remaining: 514ms
12:	learn: 38.4200417	total: 75.1ms	remaining: 503ms
13:	learn: 37.8425194	total: 80ms	remaining: 491ms
14:	learn: 37.4203127	total: 84.6ms	remaining: 479ms
15:	learn: 36.9917688	total: 89.6ms	remaining: 471ms
16:	learn: 36.5544138	total: 95.3ms	remaining: 465ms
17:	learn: 36.0727019	total: 100ms	remaining: 456ms
18:	learn: 35.4835715	total: 105ms	remaining: 446ms
19:	learn: 34.9865654	total: 108ms	remaining: 433ms
20:	learn: 34.6063373	total: 112ms	remaining: 422ms
21:	learn: 34.0997289	total: 116ms	remaining: 412ms
22:	learn: 33.7313171	total: 121ms	remaining: 404ms
23:	learn: 33.3582000	total: 125ms	remaining: 395ms
24:	learn: 32.9432456	total: 129ms	remaining: 386ms
25:	learn: 32.5220888	total: 133ms	remaining: 378ms
26:	learn: 32.2172292	total: 137ms	remaining: 371ms
27:	learn: 31.8972904	total: 142ms	remaining: 364ms
28:	learn: 31.6405350	total: 145ms	remaining: 356ms
29:	learn: 31.4167702	total: 149ms	remaining: 349ms
30:	learn: 30.8541961	total: 151ms	remaining: 337ms
31:	learn: 30.5572111	total: 156ms	remaining: 331ms
32:	learn: 30.1700399	total: 160ms	remaining: 324ms
33:	learn: 29.8537271	total: 164ms	remaining: 318ms
34:	learn: 29.6192540	total: 169ms	remaining: 313ms
35:	learn: 29.3276362	total: 173ms	remaining: 308ms
36:	learn: 28.9985179	total: 178ms	remaining: 303ms
37:	learn: 28.7046880	total: 182ms	remaining: 298ms
38:	learn: 28.4412677	total: 187ms	remaining: 292ms
39:	learn: 28.1277292	total: 192ms	remaining: 287ms
40:	learn: 27.9000750	total: 196ms	remaining: 282ms
41:	learn: 27.5433162	total: 201ms	remaining: 278ms
42:	learn: 27.2493285	total: 209ms	remaining: 277ms
43:	learn: 26.9576632	total: 212ms	remaining: 270ms
44:	learn: 26.6177110	total: 223ms	remaining: 272ms
45:	learn: 26.2812456	total: 230ms	remaining: 270ms
46:	learn: 26.0803859	total: 236ms	remaining: 266ms
47:	learn: 25.9543581	total: 241ms	remaining: 261ms
48:	learn: 25.7951582	total: 247ms	remaining: 257ms
49:	learn: 25.6548184	total: 252ms	remaining: 252ms
50:	learn: 25.4010843	total: 257ms	remaining: 247ms
51:	learn: 24.9773937	total: 262ms	remaining: 242ms
52:	learn: 24.8026156	total: 267ms	remaining: 237ms
53:	learn: 24.5568053	total: 272ms	remaining: 232ms
54:	learn: 24.2281839	total: 277ms	remaining: 227ms
55:	learn: 23.9202795	total: 284ms	remaining: 224ms
56:	learn: 23.7625591	total: 289ms	remaining: 218ms
57:	learn: 23.5429721	total: 294ms	remaining: 213ms
58:	learn: 23.3175893	total: 299ms	remaining: 208ms
59:	learn: 23.2035130	total: 304ms	remaining: 203ms
60:	learn: 23.0232450	total: 308ms	remaining: 197ms
61:	learn: 22.8384958	total: 312ms	remaining: 191ms
62:	learn: 22.6499902	total: 316ms	remaining: 186ms
63:	learn: 22.4577426	total: 321ms	remaining: 180ms
64:	learn: 22.3333158	total: 325ms	remaining: 175ms
65:	learn: 22.2064131	total: 329ms	remaining: 170ms
66:	learn: 22.1434971	total: 333ms	remaining: 164ms
67:	learn: 21.9596519	total: 337ms	remaining: 159ms
68:	learn: 21.8475576	total: 341ms	remaining: 153ms
69:	learn: 21.6954745	total: 346ms	remaining: 148ms
70:	learn: 21.5635976	total: 351ms	remaining: 143ms
71:	learn: 21.4588506	total: 356ms	remaining: 138ms
72:	learn: 21.3527268	total: 360ms	remaining: 133ms
73:	learn: 21.2661288	total: 365ms	remaining: 128ms
74:	learn: 21.1817333	total: 369ms	remaining: 123ms
75:	learn: 21.0527553	total: 374ms	remaining: 118ms
76:	learn: 20.9229021	total: 379ms	remaining: 113ms
77:	learn: 20.7563946	total: 384ms	remaining: 108ms
78:	learn: 20.6569831	total: 388ms	remaining: 103ms
79:	learn: 20.4982663	total: 393ms	remaining: 98.2ms
80:	learn: 20.3185460	total: 398ms	remaining: 93.3ms
81:	learn: 20.2096241	total: 406ms	remaining: 89.1ms
82:	learn: 20.1274891	total: 414ms	remaining: 84.7ms
83:	learn: 20.0740139	total: 427ms	remaining: 81.3ms
84:	learn: 19.9630699	total: 436ms	remaining: 77ms
85:	learn: 19.8753899	total: 443ms	remaining: 72.1ms
86:	learn: 19.6563612	total: 448ms	remaining: 67ms
87:	learn: 19.4680232	total: 455ms	remaining: 62.1ms
88:	learn: 19.3503431	total: 461ms	remaining: 57ms
89:	learn: 19.2221379	total: 466ms	remaining: 51.8ms
90:	learn: 19.0732542	total: 472ms	remaining: 46.7ms
91:	learn: 18.9825190	total: 477ms	remaining: 41.5ms
92:	learn: 18.8839009	total: 483ms	remaining: 36.3ms
93:	learn: 18.8012219	total: 488ms	remaining: 31.2ms
94:	learn: 18.7172713	total: 494ms	remaining: 26ms
95:	learn: 18.6201170	total: 499ms	remaining: 20.8ms
96:	learn: 18.5318611	total: 504ms	remaining: 15.6ms
97:	learn: 18.3833356	total: 508ms	remaining: 10.4ms
98:	learn: 18.3289700	total: 513ms	remaining: 5.18ms
99:	learn: 18.2227333	total: 517ms	remaining: 0us
0:	learn: 46.3764524	total: 4.93ms	remaining: 488ms
1:	learn: 45.5561269	total: 9.44ms	remaining: 463ms
2:	learn: 44.8811245	total: 14.1ms	remaining: 455ms
3:	learn: 44.0788617	total: 18.6ms	remaining: 446ms
4:	learn: 43.3619790	total: 23.2ms	remaining: 440ms
5:	learn: 42.6912112	total: 27.4ms	remaining: 429ms
6:	learn: 42.2292118	total: 32.2ms	remaining: 427ms
7:	learn: 41.7725191	total: 36.6ms	remaining: 421ms
8:	learn: 41.1676614	total: 43.4ms	remaining: 439ms
9:	learn: 40.5771076	total: 51ms	remaining: 459ms
10:	learn: 39.8343757	total: 58.4ms	remaining: 473ms
11:	learn: 39.3761142	total: 65.8ms	remaining: 483ms
12:	learn: 38.5254692	total: 73.4ms	remaining: 491ms
13:	learn: 37.9629555	total: 78.7ms	remaining: 483ms
14:	learn: 37.4418438	total: 84.1ms	remaining: 476ms
15:	learn: 37.0507283	total: 89.2ms	remaining: 468ms
16:	learn: 36.6264217	total: 94.1ms	remaining: 460ms
17:	learn: 36.1114940	total: 99.2ms	remaining: 452ms
18:	learn: 35.7193862	total: 104ms	remaining: 444ms
19:	learn: 35.3301177	total: 110ms	remaining: 439ms
20:	learn: 35.0598280	total: 115ms	remaining: 434ms
21:	learn: 34.5469736	total: 121ms	remaining: 428ms
22:	learn: 34.2064215	total: 126ms	remaining: 420ms
23:	learn: 33.7280710	total: 130ms	remaining: 412ms
24:	learn: 33.3282940	total: 135ms	remaining: 406ms
25:	learn: 32.8478961	total: 140ms	remaining: 400ms
26:	learn: 32.5722164	total: 146ms	remaining: 394ms
27:	learn: 32.2457019	total: 149ms	remaining: 384ms
28:	learn: 31.9230495	total: 154ms	remaining: 376ms
29:	learn: 31.4311611	total: 158ms	remaining: 368ms
30:	learn: 30.9179052	total: 161ms	remaining: 359ms
31:	learn: 30.6201141	total: 166ms	remaining: 352ms
32:	learn: 30.3421106	total: 170ms	remaining: 345ms
33:	learn: 29.9885373	total: 174ms	remaining: 338ms
34:	learn: 29.7462780	total: 178ms	remaining: 331ms
35:	learn: 29.3607153	total: 182ms	remaining: 324ms
36:	learn: 29.1793078	total: 186ms	remaining: 317ms
37:	learn: 28.9276538	total: 190ms	remaining: 311ms
38:	learn: 28.6903934	total: 194ms	remaining: 304ms
39:	learn: 28.2095033	total: 198ms	remaining: 297ms
40:	learn: 27.7990608	total: 202ms	remaining: 291ms
41:	learn: 27.5406632	total: 207ms	remaining: 285ms
42:	learn: 27.2575376	total: 210ms	remaining: 279ms
43:	learn: 26.9741707	total: 215ms	remaining: 273ms
44:	learn: 26.6606899	total: 219ms	remaining: 268ms
45:	learn: 26.4015833	total: 224ms	remaining: 263ms
46:	learn: 26.1828993	total: 228ms	remaining: 257ms
47:	learn: 26.0233709	total: 231ms	remaining: 250ms
48:	learn: 25.9300399	total: 235ms	remaining: 245ms
49:	learn: 25.5861489	total: 240ms	remaining: 240ms
50:	learn: 25.4322012	total: 244ms	remaining: 235ms
51:	learn: 25.1595644	total: 249ms	remaining: 230ms
52:	learn: 24.9955303	total: 253ms	remaining: 224ms
53:	learn: 24.7273966	total: 261ms	remaining: 222ms
54:	learn: 24.5747978	total: 268ms	remaining: 219ms
55:	learn: 24.3807977	total: 281ms	remaining: 221ms
56:	learn: 24.1689569	total: 288ms	remaining: 217ms
57:	learn: 23.9898221	total: 293ms	remaining: 212ms
58:	learn: 23.7566414	total: 298ms	remaining: 207ms
59:	learn: 23.6641165	total: 303ms	remaining: 202ms
60:	learn: 23.5658066	total: 308ms	remaining: 197ms
61:	learn: 23.4338851	total: 314ms	remaining: 192ms
62:	learn: 23.2408837	total: 318ms	remaining: 187ms
63:	learn: 23.0642038	total: 324ms	remaining: 182ms
64:	learn: 22.9032045	total: 329ms	remaining: 177ms
65:	learn: 22.7736138	total: 334ms	remaining: 172ms
66:	learn: 22.6836443	total: 339ms	remaining: 167ms
67:	learn: 22.5983654	total: 344ms	remaining: 162ms
68:	learn: 22.4419813	total: 349ms	remaining: 157ms
69:	learn: 22.2863339	total: 354ms	remaining: 152ms
70:	learn: 22.1792943	total: 359ms	remaining: 147ms
71:	learn: 22.1130574	total: 363ms	remaining: 141ms
72:	learn: 21.9858161	total: 367ms	remaining: 136ms
73:	learn: 21.8577784	total: 371ms	remaining: 130ms
74:	learn: 21.7845222	total: 375ms	remaining: 125ms
75:	learn: 21.6831390	total: 379ms	remaining: 120ms
76:	learn: 21.6292521	total: 383ms	remaining: 115ms
77:	learn: 21.5789330	total: 387ms	remaining: 109ms
78:	learn: 21.5420942	total: 391ms	remaining: 104ms
79:	learn: 21.4280939	total: 395ms	remaining: 98.8ms
80:	learn: 21.3641165	total: 399ms	remaining: 93.7ms
81:	learn: 21.2734814	total: 403ms	remaining: 88.5ms
82:	learn: 21.2220323	total: 407ms	remaining: 83.4ms
83:	learn: 21.0625792	total: 411ms	remaining: 78.3ms
84:	learn: 20.9488320	total: 416ms	remaining: 73.4ms
85:	learn: 20.8504255	total: 420ms	remaining: 68.3ms
86:	learn: 20.7848510	total: 424ms	remaining: 63.4ms
87:	learn: 20.7247442	total: 428ms	remaining: 58.4ms
88:	learn: 20.5698590	total: 433ms	remaining: 53.5ms
89:	learn: 20.4067620	total: 438ms	remaining: 48.6ms
90:	learn: 20.3062482	total: 443ms	remaining: 43.8ms
91:	learn: 20.2029696	total: 447ms	remaining: 38.9ms
92:	learn: 20.1384849	total: 451ms	remaining: 34ms
93:	learn: 20.0260709	total: 456ms	remaining: 29.1ms
94:	learn: 19.9122100	total: 460ms	remaining: 24.2ms
95:	learn: 19.8648487	total: 464ms	remaining: 19.3ms
96:	learn: 19.8207072	total: 471ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 478ms	remaining: 9.76ms
98:	learn: 19.7042438	total: 486ms	remaining: 4.91ms
99:	learn: 19.6546645	total: 493ms	remaining: 0us
0:	learn: 47.0239288	total: 5.53ms	remaining: 548ms
1:	learn: 46.2253829	total: 10ms	remaining: 490ms
2:	learn: 45.5580301	total: 15.8ms	remaining: 511ms
3:	learn: 44.7273237	total: 21.3ms	remaining: 511ms
4:	learn: 43.8867421	total: 25.3ms	remaining: 481ms
5:	learn: 43.3615911	total: 29.2ms	remaining: 458ms
6:	learn: 42.8548390	total: 33.5ms	remaining: 445ms
7:	learn: 42.1606758	total: 37.6ms	remaining: 432ms
8:	learn: 41.6625870	total: 41.6ms	remaining: 420ms
9:	learn: 40.9497092	total: 45.3ms	remaining: 408ms
10:	learn: 40.1886318	total: 49.5ms	remaining: 401ms
11:	learn: 39.7456423	total: 53.6ms	remaining: 393ms
12:	learn: 39.1171373	total: 57.2ms	remaining: 383ms
13:	learn: 38.5451069	total: 61.5ms	remaining: 377ms
14:	learn: 38.0155834	total: 65.3ms	remaining: 370ms
15:	learn: 37.5631354	total: 69.7ms	remaining: 366ms
16:	learn: 37.1030023	total: 73.5ms	remaining: 359ms
17:	learn: 36.4563029	total: 77.8ms	remaining: 354ms
18:	learn: 36.0160976	total: 81.7ms	remaining: 348ms
19:	learn: 35.5079827	total: 93.6ms	remaining: 374ms
20:	learn: 35.2111885	total: 98ms	remaining: 369ms
21:	learn: 34.9397465	total: 103ms	remaining: 364ms
22:	learn: 34.5270048	total: 107ms	remaining: 359ms
23:	learn: 34.0169260	total: 111ms	remaining: 353ms
24:	learn: 33.7454892	total: 116ms	remaining: 348ms
25:	learn: 33.2648157	total: 121ms	remaining: 343ms
26:	learn: 32.8899427	total: 125ms	remaining: 338ms
27:	learn: 32.6185050	total: 131ms	remaining: 338ms
28:	learn: 32.3528531	total: 139ms	remaining: 339ms
29:	learn: 32.0859923	total: 146ms	remaining: 340ms
30:	learn: 31.6511144	total: 154ms	remaining: 342ms
31:	learn: 31.2571765	total: 162ms	remaining: 343ms
32:	learn: 30.9770049	total: 167ms	remaining: 338ms
33:	learn: 30.6084872	total: 172ms	remaining: 334ms
34:	learn: 30.3448632	total: 177ms	remaining: 329ms
35:	learn: 30.0360942	total: 182ms	remaining: 324ms
36:	learn: 29.6648968	total: 187ms	remaining: 319ms
37:	learn: 29.3165114	total: 192ms	remaining: 314ms
38:	learn: 29.0829198	total: 197ms	remaining: 309ms
39:	learn: 28.7752064	total: 203ms	remaining: 304ms
40:	learn: 28.3622191	total: 208ms	remaining: 299ms
41:	learn: 28.1346631	total: 214ms	remaining: 295ms
42:	learn: 27.9585719	total: 218ms	remaining: 289ms
43:	learn: 27.6565566	total: 223ms	remaining: 284ms
44:	learn: 27.3616172	total: 229ms	remaining: 280ms
45:	learn: 27.0658637	total: 235ms	remaining: 275ms
46:	learn: 26.8660382	total: 239ms	remaining: 270ms
47:	learn: 26.6536078	total: 244ms	remaining: 264ms
48:	learn: 26.3524440	total: 249ms	remaining: 259ms
49:	learn: 26.1595277	total: 253ms	remaining: 253ms
50:	learn: 25.9273523	total: 257ms	remaining: 247ms
51:	learn: 25.7195580	total: 261ms	remaining: 241ms
52:	learn: 25.5730225	total: 265ms	remaining: 235ms
53:	learn: 25.3455276	total: 269ms	remaining: 230ms
54:	learn: 25.2289675	total: 273ms	remaining: 224ms
55:	learn: 25.0133024	total: 279ms	remaining: 219ms
56:	learn: 24.8406714	total: 283ms	remaining: 213ms
57:	learn: 24.6367857	total: 286ms	remaining: 207ms
58:	learn: 24.5338177	total: 290ms	remaining: 202ms
59:	learn: 24.3799964	total: 296ms	remaining: 197ms
60:	learn: 24.1447492	total: 301ms	remaining: 192ms
61:	learn: 23.9880495	total: 305ms	remaining: 187ms
62:	learn: 23.7140630	total: 311ms	remaining: 182ms
63:	learn: 23.5003791	total: 316ms	remaining: 178ms
64:	learn: 23.3207645	total: 321ms	remaining: 173ms
65:	learn: 23.1958356	total: 326ms	remaining: 168ms
66:	learn: 23.0471302	total: 331ms	remaining: 163ms
67:	learn: 22.8977183	total: 339ms	remaining: 160ms
68:	learn: 22.7187400	total: 348ms	remaining: 156ms
69:	learn: 22.6523405	total: 356ms	remaining: 152ms
70:	learn: 22.4767453	total: 363ms	remaining: 148ms
71:	learn: 22.3243677	total: 369ms	remaining: 143ms
72:	learn: 22.2133096	total: 374ms	remaining: 138ms
73:	learn: 22.1151713	total: 379ms	remaining: 133ms
74:	learn: 22.0296666	total: 384ms	remaining: 128ms
75:	learn: 21.9195980	total: 390ms	remaining: 123ms
76:	learn: 21.8401730	total: 395ms	remaining: 118ms
77:	learn: 21.8079797	total: 401ms	remaining: 113ms
78:	learn: 21.7274109	total: 406ms	remaining: 108ms
79:	learn: 21.6663032	total: 411ms	remaining: 103ms
80:	learn: 21.5633117	total: 416ms	remaining: 97.6ms
81:	learn: 21.4542467	total: 421ms	remaining: 92.5ms
82:	learn: 21.3177957	total: 427ms	remaining: 87.4ms
83:	learn: 21.1289167	total: 431ms	remaining: 82.2ms
84:	learn: 21.0297368	total: 436ms	remaining: 76.9ms
85:	learn: 20.9089564	total: 440ms	remaining: 71.6ms
86:	learn: 20.7653988	total: 444ms	remaining: 66.4ms
87:	learn: 20.6521894	total: 448ms	remaining: 61.2ms
88:	learn: 20.5193021	total: 453ms	remaining: 55.9ms
89:	learn: 20.4361620	total: 457ms	remaining: 50.7ms
90:	learn: 20.3546710	total: 461ms	remaining: 45.6ms
91:	learn: 20.2513296	total: 465ms	remaining: 40.5ms
92:	learn: 20.1605550	total: 469ms	remaining: 35.3ms
93:	learn: 20.0515942	total: 474ms	remaining: 30.2ms
94:	learn: 19.9800764	total: 477ms	remaining: 25.1ms
95:	learn: 19.8996532	total: 481ms	remaining: 20.1ms
96:	learn: 19.8450910	total: 485ms	remaining: 15ms
97:	learn: 19.7887346	total: 490ms	remaining: 9.99ms
98:	learn: 19.7230872	total: 494ms	remaining: 4.99ms
99:	learn: 19.6328825	total: 498ms	remaining: 0us
0:	learn: 27.5585353	total: 7.7ms	remaining: 762ms
1:	learn: 27.1656995	total: 15.7ms	remaining: 771ms
2:	learn: 26.8590175	total: 23.3ms	remaining: 753ms
3:	learn: 26.5818406	total: 42.5ms	remaining: 1.02s
4:	learn: 26.1148663	total: 47.5ms	remaining: 903ms
5:	learn: 25.7690484	total: 52.2ms	remaining: 818ms
6:	learn: 25.3489206	total: 57.6ms	remaining: 765ms
7:	learn: 24.9542406	total: 62.5ms	remaining: 719ms
8:	learn: 24.6777517	total: 67.7ms	remaining: 685ms
9:	learn: 24.3242344	total: 73.2ms	remaining: 659ms
10:	learn: 24.0383073	total: 78.2ms	remaining: 633ms
11:	learn: 23.7383420	total: 83ms	remaining: 608ms
12:	learn: 23.3461670	total: 87.5ms	remaining: 586ms
13:	learn: 23.0928636	total: 92.8ms	remaining: 570ms
14:	learn: 22.8770414	total: 98ms	remaining: 555ms
15:	learn: 22.6323214	total: 103ms	remaining: 539ms
16:	learn: 22.3597072	total: 107ms	remaining: 522ms
17:	learn: 22.1079813	total: 111ms	remaining: 505ms
18:	learn: 21.8421199	total: 115ms	remaining: 489ms
19:	learn: 21.6576508	total: 119ms	remaining: 476ms
20:	learn: 21.4301268	total: 123ms	remaining: 463ms
21:	learn: 21.2287388	total: 127ms	remaining: 452ms
22:	learn: 21.0553872	total: 131ms	remaining: 440ms
23:	learn: 20.8977091	total: 135ms	remaining: 428ms
24:	learn: 20.6619051	total: 139ms	remaining: 417ms
25:	learn: 20.5040955	total: 143ms	remaining: 407ms
26:	learn: 20.3181195	total: 147ms	remaining: 399ms
27:	learn: 20.0869436	total: 152ms	remaining: 390ms
28:	learn: 19.9375985	total: 156ms	remaining: 381ms
29:	learn: 19.8247516	total: 160ms	remaining: 373ms
30:	learn: 19.6261697	total: 164ms	remaining: 366ms
31:	learn: 19.4547236	total: 168ms	remaining: 358ms
32:	learn: 19.3157092	total: 172ms	remaining: 349ms
33:	learn: 19.1561419	total: 176ms	remaining: 342ms
34:	learn: 19.0453620	total: 180ms	remaining: 335ms
35:	learn: 18.8738574	total: 185ms	remaining: 329ms
36:	learn: 18.7072907	total: 189ms	remaining: 322ms
37:	learn: 18.5877943	total: 194ms	remaining: 316ms
38:	learn: 18.4436380	total: 198ms	remaining: 310ms
39:	learn: 18.3463356	total: 203ms	remaining: 304ms
40:	learn: 18.2008059	total: 207ms	remaining: 298ms
41:	learn: 18.0582079	total: 212ms	remaining: 293ms
42:	learn: 17.8891982	total: 219ms	remaining: 290ms
43:	learn: 17.7332246	total: 226ms	remaining: 288ms
44:	learn: 17.6206421	total: 234ms	remaining: 286ms
45:	learn: 17.4982800	total: 241ms	remaining: 283ms
46:	learn: 17.3970150	total: 249ms	remaining: 281ms
47:	learn: 17.3058203	total: 255ms	remaining: 276ms
48:	learn: 17.1789256	total: 260ms	remaining: 270ms
49:	learn: 17.0916229	total: 265ms	remaining: 265ms
50:	learn: 16.9859820	total: 270ms	remaining: 260ms
51:	learn: 16.8995582	total: 275ms	remaining: 254ms
52:	learn: 16.8137014	total: 280ms	remaining: 248ms
53:	learn: 16.7021451	total: 285ms	remaining: 243ms
54:	learn: 16.5895582	total: 290ms	remaining: 237ms
55:	learn: 16.5015639	total: 295ms	remaining: 232ms
56:	learn: 16.4356637	total: 300ms	remaining: 226ms
57:	learn: 16.3514525	total: 305ms	remaining: 221ms
58:	learn: 16.2401369	total: 309ms	remaining: 215ms
59:	learn: 16.1293223	total: 316ms	remaining: 211ms
60:	learn: 16.0271167	total: 322ms	remaining: 206ms
61:	learn: 15.9126257	total: 326ms	remaining: 200ms
62:	learn: 15.8391096	total: 330ms	remaining: 194ms
63:	learn: 15.7441773	total: 334ms	remaining: 188ms
64:	learn: 15.6885195	total: 338ms	remaining: 182ms
65:	learn: 15.6052039	total: 342ms	remaining: 176ms
66:	learn: 15.5074202	total: 346ms	remaining: 170ms
67:	learn: 15.4054338	total: 350ms	remaining: 165ms
68:	learn: 15.2885714	total: 354ms	remaining: 159ms
69:	learn: 15.2157472	total: 358ms	remaining: 154ms
70:	learn: 15.1031554	total: 362ms	remaining: 148ms
71:	learn: 15.0237470	total: 366ms	remaining: 142ms
72:	learn: 14.9756825	total: 370ms	remaining: 137ms
73:	learn: 14.8840596	total: 374ms	remaining: 131ms
74:	learn: 14.8077061	total: 379ms	remaining: 126ms
75:	learn: 14.7444437	total: 384ms	remaining: 121ms
76:	learn: 14.6751720	total: 388ms	remaining: 116ms
77:	learn: 14.5830333	total: 393ms	remaining: 111ms
78:	learn: 14.5241206	total: 397ms	remaining: 106ms
79:	learn: 14.4892731	total: 401ms	remaining: 100ms
80:	learn: 14.4256605	total: 406ms	remaining: 95.2ms
81:	learn: 14.3666860	total: 410ms	remaining: 90ms
82:	learn: 14.2938372	total: 419ms	remaining: 85.8ms
83:	learn: 14.2161532	total: 427ms	remaining: 81.4ms
84:	learn: 14.1582910	total: 434ms	remaining: 76.7ms
85:	learn: 14.1029153	total: 442ms	remaining: 71.9ms
86:	learn: 14.0475835	total: 447ms	remaining: 66.8ms
87:	learn: 13.9892661	total: 452ms	remaining: 61.7ms
88:	learn: 13.9481628	total: 458ms	remaining: 56.5ms
89:	learn: 13.8483991	total: 463ms	remaining: 51.4ms
90:	learn: 13.7775614	total: 468ms	remaining: 46.2ms
91:	learn: 13.7304585	total: 473ms	remaining: 41.1ms
92:	learn: 13.6783381	total: 478ms	remaining: 36ms
93:	learn: 13.6356964	total: 483ms	remaining: 30.8ms
94:	learn: 13.5924371	total: 488ms	remaining: 25.7ms
95:	learn: 13.5400746	total: 493ms	remaining: 20.5ms
96:	learn: 13.4897333	total: 497ms	remaining: 15.4ms
97:	learn: 13.4470321	total: 501ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 506ms	remaining: 5.11ms
99:	learn: 13.3082371	total: 510ms	remaining: 0us
0:	learn: 43.0395283	total: 4.41ms	remaining: 437ms
1:	learn: 42.1130223	total: 8.66ms	remaining: 424ms
2:	learn: 41.1753409	total: 12.9ms	remaining: 417ms
3:	learn: 40.3637444	total: 16.9ms	remaining: 406ms
4:	learn: 39.6508088	total: 21.5ms	remaining: 408ms
5:	learn: 38.7217934	total: 26ms	remaining: 408ms
6:	learn: 37.8538055	total: 30.5ms	remaining: 405ms
7:	learn: 36.9793574	total: 35.2ms	remaining: 405ms
8:	learn: 36.3076984	total: 39.8ms	remaining: 402ms
9:	learn: 35.6673160	total: 44.4ms	remaining: 400ms
10:	learn: 34.8889800	total: 48.7ms	remaining: 394ms
11:	learn: 34.1675517	total: 53.1ms	remaining: 389ms
12:	learn: 33.6779564	total: 61.7ms	remaining: 413ms
13:	learn: 33.0710039	total: 68.9ms	remaining: 423ms
14:	learn: 32.4966674	total: 79.6ms	remaining: 451ms
15:	learn: 31.9492856	total: 87.7ms	remaining: 460ms
16:	learn: 31.5108129	total: 92.7ms	remaining: 452ms
17:	learn: 30.9804023	total: 98.3ms	remaining: 448ms
18:	learn: 30.4169089	total: 103ms	remaining: 441ms
19:	learn: 29.8930375	total: 108ms	remaining: 434ms
20:	learn: 29.3974421	total: 114ms	remaining: 429ms
21:	learn: 28.8792307	total: 119ms	remaining: 422ms
22:	learn: 28.3894474	total: 124ms	remaining: 416ms
23:	learn: 27.9921276	total: 129ms	remaining: 410ms
24:	learn: 27.6158887	total: 135ms	remaining: 404ms
25:	learn: 27.2866950	total: 140ms	remaining: 397ms
26:	learn: 26.8770708	total: 144ms	remaining: 390ms
27:	learn: 26.6233005	total: 150ms	remaining: 386ms
28:	learn: 26.2921934	total: 156ms	remaining: 381ms
29:	learn: 25.9156920	total: 160ms	remaining: 374ms
30:	learn: 25.5311106	total: 162ms	remaining: 361ms
31:	learn: 25.2178997	total: 166ms	remaining: 353ms
32:	learn: 24.8572196	total: 171ms	remaining: 346ms
33:	learn: 24.5849710	total: 175ms	remaining: 340ms
34:	learn: 24.2209190	total: 179ms	remaining: 333ms
35:	learn: 23.8708250	total: 184ms	remaining: 327ms
36:	learn: 23.5325279	total: 189ms	remaining: 323ms
37:	learn: 23.2116148	total: 194ms	remaining: 316ms
38:	learn: 22.9696787	total: 199ms	remaining: 311ms
39:	learn: 22.7936783	total: 204ms	remaining: 306ms
40:	learn: 22.6228847	total: 208ms	remaining: 300ms
41:	learn: 22.3691527	total: 213ms	remaining: 294ms
42:	learn: 22.1002173	total: 218ms	remaining: 289ms
43:	learn: 21.9157268	total: 222ms	remaining: 283ms
44:	learn: 21.7229102	total: 227ms	remaining: 278ms
45:	learn: 21.4642005	total: 232ms	remaining: 272ms
46:	learn: 21.3029442	total: 237ms	remaining: 267ms
47:	learn: 21.1469792	total: 241ms	remaining: 261ms
48:	learn: 20.9458235	total: 246ms	remaining: 256ms
49:	learn: 20.7335242	total: 250ms	remaining: 250ms
50:	learn: 20.5440269	total: 258ms	remaining: 248ms
51:	learn: 20.3661449	total: 265ms	remaining: 245ms
52:	learn: 20.2158134	total: 274ms	remaining: 243ms
53:	learn: 19.9934873	total: 280ms	remaining: 238ms
54:	learn: 19.7879739	total: 287ms	remaining: 235ms
55:	learn: 19.6630460	total: 293ms	remaining: 230ms
56:	learn: 19.5152729	total: 298ms	remaining: 225ms
57:	learn: 19.3581128	total: 304ms	remaining: 220ms
58:	learn: 19.2209303	total: 309ms	remaining: 215ms
59:	learn: 19.0965248	total: 315ms	remaining: 210ms
60:	learn: 19.0035954	total: 320ms	remaining: 205ms
61:	learn: 18.8554149	total: 326ms	remaining: 200ms
62:	learn: 18.7095427	total: 331ms	remaining: 194ms
63:	learn: 18.5751494	total: 336ms	remaining: 189ms
64:	learn: 18.4678251	total: 341ms	remaining: 184ms
65:	learn: 18.3500325	total: 347ms	remaining: 179ms
66:	learn: 18.2088983	total: 353ms	remaining: 174ms
67:	learn: 18.0737705	total: 357ms	remaining: 168ms
68:	learn: 17.9325058	total: 362ms	remaining: 162ms
69:	learn: 17.8003911	total: 366ms	remaining: 157ms
70:	learn: 17.7385366	total: 370ms	remaining: 151ms
71:	learn: 17.6106998	total: 374ms	remaining: 146ms
72:	learn: 17.4816270	total: 379ms	remaining: 140ms
73:	learn: 17.4025554	total: 383ms	remaining: 135ms
74:	learn: 17.2902108	total: 387ms	remaining: 129ms
75:	learn: 17.2158048	total: 391ms	remaining: 124ms
76:	learn: 17.1261053	total: 396ms	remaining: 118ms
77:	learn: 17.0308917	total: 400ms	remaining: 113ms
78:	learn: 16.9546705	total: 404ms	remaining: 107ms
79:	learn: 16.8319165	total: 408ms	remaining: 102ms
80:	learn: 16.7687017	total: 412ms	remaining: 96.6ms
81:	learn: 16.6972326	total: 416ms	remaining: 91.3ms
82:	learn: 16.6124580	total: 420ms	remaining: 86ms
83:	learn: 16.4999052	total: 424ms	remaining: 80.8ms
84:	learn: 16.4302484	total: 429ms	remaining: 75.7ms
85:	learn: 16.3201363	total: 434ms	remaining: 70.6ms
86:	learn: 16.2534314	total: 438ms	remaining: 65.5ms
87:	learn: 16.1720485	total: 443ms	remaining: 60.4ms
88:	learn: 16.0625751	total: 447ms	remaining: 55.3ms
89:	learn: 15.9135088	total: 452ms	remaining: 50.2ms
90:	learn: 15.8658863	total: 456ms	remaining: 45.1ms
91:	learn: 15.8066805	total: 463ms	remaining: 40.3ms
92:	learn: 15.7412103	total: 471ms	remaining: 35.5ms
93:	learn: 15.6542776	total: 480ms	remaining: 30.7ms
94:	learn: 15.5760334	total: 487ms	remaining: 25.6ms
95:	learn: 15.5434131	total: 494ms	remaining: 20.6ms
96:	learn: 15.4709561	total: 500ms	remaining: 15.4ms
97:	learn: 15.4449618	total: 505ms	remaining: 10.3ms
98:	learn: 15.3752761	total: 510ms	remaining: 5.15ms
99:	learn: 15.3106595	total: 515ms	remaining: 0us
0:	learn: 46.7142257	total: 4.46ms	remaining: 441ms
1:	learn: 45.7634153	total: 8.72ms	remaining: 428ms
2:	learn: 45.0054253	total: 12.9ms	remaining: 416ms
3:	learn: 44.2120432	total: 16.8ms	remaining: 403ms
4:	learn: 43.3960472	total: 20.7ms	remaining: 394ms
5:	learn: 42.8588120	total: 24.8ms	remaining: 389ms
6:	learn: 41.9533701	total: 28.7ms	remaining: 381ms
7:	learn: 41.2745030	total: 32.9ms	remaining: 378ms
8:	learn: 40.6797495	total: 36.8ms	remaining: 372ms
9:	learn: 39.9899571	total: 41ms	remaining: 369ms
10:	learn: 39.4682100	total: 45.6ms	remaining: 369ms
11:	learn: 39.0305595	total: 49.7ms	remaining: 364ms
12:	learn: 38.4200417	total: 54.2ms	remaining: 363ms
13:	learn: 37.8425194	total: 58.9ms	remaining: 362ms
14:	learn: 37.4203127	total: 62.8ms	remaining: 356ms
15:	learn: 36.9917688	total: 67ms	remaining: 352ms
16:	learn: 36.5544138	total: 71.7ms	remaining: 350ms
17:	learn: 36.0727019	total: 76.6ms	remaining: 349ms
18:	learn: 35.4835715	total: 81.3ms	remaining: 347ms
19:	learn: 34.9865654	total: 85.8ms	remaining: 343ms
20:	learn: 34.6063373	total: 90.4ms	remaining: 340ms
21:	learn: 34.0997289	total: 95ms	remaining: 337ms
22:	learn: 33.7313171	total: 99.2ms	remaining: 332ms
23:	learn: 33.3582000	total: 104ms	remaining: 330ms
24:	learn: 32.9432456	total: 113ms	remaining: 338ms
25:	learn: 32.5220888	total: 120ms	remaining: 341ms
26:	learn: 32.2172292	total: 129ms	remaining: 348ms
27:	learn: 31.8972904	total: 137ms	remaining: 351ms
28:	learn: 31.6405350	total: 142ms	remaining: 347ms
29:	learn: 31.4167702	total: 147ms	remaining: 343ms
30:	learn: 30.8541961	total: 149ms	remaining: 332ms
31:	learn: 30.5572111	total: 154ms	remaining: 328ms
32:	learn: 30.1700399	total: 160ms	remaining: 324ms
33:	learn: 29.8537271	total: 166ms	remaining: 322ms
34:	learn: 29.6192540	total: 171ms	remaining: 317ms
35:	learn: 29.3276362	total: 176ms	remaining: 313ms
36:	learn: 28.9985179	total: 181ms	remaining: 308ms
37:	learn: 28.7046880	total: 186ms	remaining: 304ms
38:	learn: 28.4412677	total: 191ms	remaining: 299ms
39:	learn: 28.1277292	total: 196ms	remaining: 293ms
40:	learn: 27.9000750	total: 201ms	remaining: 289ms
41:	learn: 27.5433162	total: 206ms	remaining: 285ms
42:	learn: 27.2493285	total: 211ms	remaining: 280ms
43:	learn: 26.9576632	total: 213ms	remaining: 271ms
44:	learn: 26.6177110	total: 217ms	remaining: 265ms
45:	learn: 26.2812456	total: 221ms	remaining: 260ms
46:	learn: 26.0803859	total: 225ms	remaining: 254ms
47:	learn: 25.9543581	total: 229ms	remaining: 248ms
48:	learn: 25.7951582	total: 234ms	remaining: 243ms
49:	learn: 25.6548184	total: 237ms	remaining: 237ms
50:	learn: 25.4010843	total: 241ms	remaining: 232ms
51:	learn: 24.9773937	total: 245ms	remaining: 226ms
52:	learn: 24.8026156	total: 249ms	remaining: 221ms
53:	learn: 24.5568053	total: 253ms	remaining: 215ms
54:	learn: 24.2281839	total: 257ms	remaining: 210ms
55:	learn: 23.9202795	total: 261ms	remaining: 205ms
56:	learn: 23.7625591	total: 265ms	remaining: 200ms
57:	learn: 23.5429721	total: 270ms	remaining: 195ms
58:	learn: 23.3175893	total: 274ms	remaining: 190ms
59:	learn: 23.2035130	total: 279ms	remaining: 186ms
60:	learn: 23.0232450	total: 283ms	remaining: 181ms
61:	learn: 22.8384958	total: 288ms	remaining: 176ms
62:	learn: 22.6499902	total: 292ms	remaining: 171ms
63:	learn: 22.4577426	total: 296ms	remaining: 167ms
64:	learn: 22.3333158	total: 301ms	remaining: 162ms
65:	learn: 22.2064131	total: 306ms	remaining: 157ms
66:	learn: 22.1434971	total: 315ms	remaining: 155ms
67:	learn: 21.9596519	total: 323ms	remaining: 152ms
68:	learn: 21.8475576	total: 338ms	remaining: 152ms
69:	learn: 21.6954745	total: 343ms	remaining: 147ms
70:	learn: 21.5635976	total: 349ms	remaining: 142ms
71:	learn: 21.4588506	total: 354ms	remaining: 138ms
72:	learn: 21.3527268	total: 359ms	remaining: 133ms
73:	learn: 21.2661288	total: 364ms	remaining: 128ms
74:	learn: 21.1817333	total: 369ms	remaining: 123ms
75:	learn: 21.0527553	total: 375ms	remaining: 118ms
76:	learn: 20.9229021	total: 380ms	remaining: 114ms
77:	learn: 20.7563946	total: 385ms	remaining: 109ms
78:	learn: 20.6569831	total: 390ms	remaining: 104ms
79:	learn: 20.4982663	total: 395ms	remaining: 98.7ms
80:	learn: 20.3185460	total: 400ms	remaining: 93.8ms
81:	learn: 20.2096241	total: 405ms	remaining: 89ms
82:	learn: 20.1274891	total: 410ms	remaining: 84ms
83:	learn: 20.0740139	total: 414ms	remaining: 78.9ms
84:	learn: 19.9630699	total: 418ms	remaining: 73.8ms
85:	learn: 19.8753899	total: 422ms	remaining: 68.8ms
86:	learn: 19.6563612	total: 427ms	remaining: 63.8ms
87:	learn: 19.4680232	total: 431ms	remaining: 58.7ms
88:	learn: 19.3503431	total: 435ms	remaining: 53.7ms
89:	learn: 19.2221379	total: 438ms	remaining: 48.7ms
90:	learn: 19.0732542	total: 443ms	remaining: 43.8ms
91:	learn: 18.9825190	total: 447ms	remaining: 38.9ms
92:	learn: 18.8839009	total: 451ms	remaining: 33.9ms
93:	learn: 18.8012219	total: 455ms	remaining: 29ms
94:	learn: 18.7172713	total: 459ms	remaining: 24.2ms
95:	learn: 18.6201170	total: 463ms	remaining: 19.3ms
96:	learn: 18.5318611	total: 467ms	remaining: 14.5ms
97:	learn: 18.3833356	total: 472ms	remaining: 9.63ms
98:	learn: 18.3289700	total: 477ms	remaining: 4.81ms
99:	learn: 18.2227333	total: 481ms	remaining: 0us
0:	learn: 46.3764524	total: 5.2ms	remaining: 515ms
1:	learn: 45.5561269	total: 10.4ms	remaining: 511ms
2:	learn: 44.8811245	total: 15.4ms	remaining: 499ms
3:	learn: 44.0788617	total: 20.4ms	remaining: 490ms
4:	learn: 43.3619790	total: 25.5ms	remaining: 485ms
5:	learn: 42.6912112	total: 41.5ms	remaining: 650ms
6:	learn: 42.2292118	total: 46.6ms	remaining: 620ms
7:	learn: 41.7725191	total: 52ms	remaining: 598ms
8:	learn: 41.1676614	total: 56.9ms	remaining: 576ms
9:	learn: 40.5771076	total: 62.6ms	remaining: 564ms
10:	learn: 39.8343757	total: 68.6ms	remaining: 555ms
11:	learn: 39.3761142	total: 73.2ms	remaining: 537ms
12:	learn: 38.5254692	total: 77.9ms	remaining: 522ms
13:	learn: 37.9629555	total: 82.9ms	remaining: 509ms
14:	learn: 37.4418438	total: 87.2ms	remaining: 494ms
15:	learn: 37.0507283	total: 91.9ms	remaining: 482ms
16:	learn: 36.6264217	total: 95.8ms	remaining: 468ms
17:	learn: 36.1114940	total: 100ms	remaining: 458ms
18:	learn: 35.7193862	total: 105ms	remaining: 448ms
19:	learn: 35.3301177	total: 109ms	remaining: 435ms
20:	learn: 35.0598280	total: 113ms	remaining: 426ms
21:	learn: 34.5469736	total: 118ms	remaining: 418ms
22:	learn: 34.2064215	total: 122ms	remaining: 408ms
23:	learn: 33.7280710	total: 126ms	remaining: 399ms
24:	learn: 33.3282940	total: 130ms	remaining: 390ms
25:	learn: 32.8478961	total: 135ms	remaining: 384ms
26:	learn: 32.5722164	total: 140ms	remaining: 377ms
27:	learn: 32.2457019	total: 144ms	remaining: 371ms
28:	learn: 31.9230495	total: 149ms	remaining: 364ms
29:	learn: 31.4311611	total: 153ms	remaining: 357ms
30:	learn: 30.9179052	total: 158ms	remaining: 352ms
31:	learn: 30.6201141	total: 163ms	remaining: 346ms
32:	learn: 30.3421106	total: 168ms	remaining: 341ms
33:	learn: 29.9885373	total: 176ms	remaining: 341ms
34:	learn: 29.7462780	total: 183ms	remaining: 339ms
35:	learn: 29.3607153	total: 192ms	remaining: 341ms
36:	learn: 29.1793078	total: 200ms	remaining: 340ms
37:	learn: 28.9276538	total: 205ms	remaining: 335ms
38:	learn: 28.6903934	total: 211ms	remaining: 329ms
39:	learn: 28.2095033	total: 216ms	remaining: 323ms
40:	learn: 27.7990608	total: 221ms	remaining: 318ms
41:	learn: 27.5406632	total: 226ms	remaining: 312ms
42:	learn: 27.2575376	total: 232ms	remaining: 307ms
43:	learn: 26.9741707	total: 237ms	remaining: 301ms
44:	learn: 26.6606899	total: 242ms	remaining: 296ms
45:	learn: 26.4015833	total: 248ms	remaining: 291ms
46:	learn: 26.1828993	total: 253ms	remaining: 285ms
47:	learn: 26.0233709	total: 256ms	remaining: 278ms
48:	learn: 25.9300399	total: 262ms	remaining: 273ms
49:	learn: 25.5861489	total: 267ms	remaining: 267ms
50:	learn: 25.4322012	total: 272ms	remaining: 261ms
51:	learn: 25.1595644	total: 276ms	remaining: 255ms
52:	learn: 24.9955303	total: 280ms	remaining: 248ms
53:	learn: 24.7273966	total: 284ms	remaining: 242ms
54:	learn: 24.5747978	total: 288ms	remaining: 236ms
55:	learn: 24.3807977	total: 292ms	remaining: 230ms
56:	learn: 24.1689569	total: 296ms	remaining: 223ms
57:	learn: 23.9898221	total: 300ms	remaining: 217ms
58:	learn: 23.7566414	total: 304ms	remaining: 211ms
59:	learn: 23.6641165	total: 308ms	remaining: 205ms
60:	learn: 23.5658066	total: 312ms	remaining: 200ms
61:	learn: 23.4338851	total: 316ms	remaining: 194ms
62:	learn: 23.2408837	total: 320ms	remaining: 188ms
63:	learn: 23.0642038	total: 324ms	remaining: 182ms
64:	learn: 22.9032045	total: 328ms	remaining: 177ms
65:	learn: 22.7736138	total: 333ms	remaining: 172ms
66:	learn: 22.6836443	total: 337ms	remaining: 166ms
67:	learn: 22.5983654	total: 342ms	remaining: 161ms
68:	learn: 22.4419813	total: 347ms	remaining: 156ms
69:	learn: 22.2863339	total: 351ms	remaining: 150ms
70:	learn: 22.1792943	total: 356ms	remaining: 145ms
71:	learn: 22.1130574	total: 360ms	remaining: 140ms
72:	learn: 21.9858161	total: 365ms	remaining: 135ms
73:	learn: 21.8577784	total: 372ms	remaining: 131ms
74:	learn: 21.7845222	total: 380ms	remaining: 127ms
75:	learn: 21.6831390	total: 388ms	remaining: 123ms
76:	learn: 21.6292521	total: 394ms	remaining: 118ms
77:	learn: 21.5789330	total: 401ms	remaining: 113ms
78:	learn: 21.5420942	total: 405ms	remaining: 108ms
79:	learn: 21.4280939	total: 410ms	remaining: 103ms
80:	learn: 21.3641165	total: 415ms	remaining: 97.4ms
81:	learn: 21.2734814	total: 420ms	remaining: 92.3ms
82:	learn: 21.2220323	total: 425ms	remaining: 87.1ms
83:	learn: 21.0625792	total: 431ms	remaining: 82.1ms
84:	learn: 20.9488320	total: 436ms	remaining: 76.9ms
85:	learn: 20.8504255	total: 441ms	remaining: 71.8ms
86:	learn: 20.7848510	total: 446ms	remaining: 66.7ms
87:	learn: 20.7247442	total: 452ms	remaining: 61.6ms
88:	learn: 20.5698590	total: 456ms	remaining: 56.4ms
89:	learn: 20.4067620	total: 461ms	remaining: 51.2ms
90:	learn: 20.3062482	total: 467ms	remaining: 46.1ms
91:	learn: 20.2029696	total: 472ms	remaining: 41ms
92:	learn: 20.1384849	total: 477ms	remaining: 35.9ms
93:	learn: 20.0260709	total: 481ms	remaining: 30.7ms
94:	learn: 19.9122100	total: 485ms	remaining: 25.5ms
95:	learn: 19.8648487	total: 489ms	remaining: 20.4ms
96:	learn: 19.8207072	total: 493ms	remaining: 15.2ms
97:	learn: 19.7261189	total: 497ms	remaining: 10.1ms
98:	learn: 19.7042438	total: 501ms	remaining: 5.06ms
99:	learn: 19.6546645	total: 505ms	remaining: 0us
0:	learn: 47.0239288	total: 4.81ms	remaining: 476ms
1:	learn: 46.2253829	total: 9.13ms	remaining: 448ms
2:	learn: 45.5580301	total: 13.5ms	remaining: 437ms
3:	learn: 44.7273237	total: 22ms	remaining: 527ms
4:	learn: 43.8867421	total: 29.4ms	remaining: 559ms
5:	learn: 43.3615911	total: 38.6ms	remaining: 604ms
6:	learn: 42.8548390	total: 45.8ms	remaining: 608ms
7:	learn: 42.1606758	total: 50.8ms	remaining: 584ms
8:	learn: 41.6625870	total: 55.9ms	remaining: 565ms
9:	learn: 40.9497092	total: 60.9ms	remaining: 548ms
10:	learn: 40.1886318	total: 66.1ms	remaining: 534ms
11:	learn: 39.7456423	total: 71.4ms	remaining: 524ms
12:	learn: 39.1171373	total: 76.8ms	remaining: 514ms
13:	learn: 38.5451069	total: 82.1ms	remaining: 505ms
14:	learn: 38.0155834	total: 87.3ms	remaining: 495ms
15:	learn: 37.5631354	total: 93ms	remaining: 488ms
16:	learn: 37.1030023	total: 98ms	remaining: 478ms
17:	learn: 36.4563029	total: 103ms	remaining: 467ms
18:	learn: 36.0160976	total: 108ms	remaining: 462ms
19:	learn: 35.5079827	total: 114ms	remaining: 455ms
20:	learn: 35.2111885	total: 118ms	remaining: 446ms
21:	learn: 34.9397465	total: 122ms	remaining: 434ms
22:	learn: 34.5270048	total: 126ms	remaining: 422ms
23:	learn: 34.0169260	total: 130ms	remaining: 413ms
24:	learn: 33.7454892	total: 134ms	remaining: 402ms
25:	learn: 33.2648157	total: 138ms	remaining: 393ms
26:	learn: 32.8899427	total: 143ms	remaining: 386ms
27:	learn: 32.6185050	total: 146ms	remaining: 376ms
28:	learn: 32.3528531	total: 150ms	remaining: 368ms
29:	learn: 32.0859923	total: 154ms	remaining: 360ms
30:	learn: 31.6511144	total: 158ms	remaining: 352ms
31:	learn: 31.2571765	total: 162ms	remaining: 345ms
32:	learn: 30.9770049	total: 166ms	remaining: 338ms
33:	learn: 30.6084872	total: 170ms	remaining: 330ms
34:	learn: 30.3448632	total: 174ms	remaining: 323ms
35:	learn: 30.0360942	total: 178ms	remaining: 317ms
36:	learn: 29.6648968	total: 182ms	remaining: 310ms
37:	learn: 29.3165114	total: 186ms	remaining: 304ms
38:	learn: 29.0829198	total: 190ms	remaining: 297ms
39:	learn: 28.7752064	total: 194ms	remaining: 291ms
40:	learn: 28.3622191	total: 198ms	remaining: 285ms
41:	learn: 28.1346631	total: 202ms	remaining: 279ms
42:	learn: 27.9585719	total: 206ms	remaining: 273ms
43:	learn: 27.6565566	total: 210ms	remaining: 267ms
44:	learn: 27.3616172	total: 214ms	remaining: 262ms
45:	learn: 27.0658637	total: 218ms	remaining: 256ms
46:	learn: 26.8660382	total: 222ms	remaining: 250ms
47:	learn: 26.6536078	total: 226ms	remaining: 245ms
48:	learn: 26.3524440	total: 231ms	remaining: 240ms
49:	learn: 26.1595277	total: 235ms	remaining: 235ms
50:	learn: 25.9273523	total: 240ms	remaining: 230ms
51:	learn: 25.7195580	total: 244ms	remaining: 225ms
52:	learn: 25.5730225	total: 249ms	remaining: 221ms
53:	learn: 25.3455276	total: 253ms	remaining: 216ms
54:	learn: 25.2289675	total: 258ms	remaining: 211ms
55:	learn: 25.0133024	total: 266ms	remaining: 209ms
56:	learn: 24.8406714	total: 273ms	remaining: 206ms
57:	learn: 24.6367857	total: 284ms	remaining: 205ms
58:	learn: 24.5338177	total: 289ms	remaining: 201ms
59:	learn: 24.3799964	total: 296ms	remaining: 197ms
60:	learn: 24.1447492	total: 301ms	remaining: 192ms
61:	learn: 23.9880495	total: 306ms	remaining: 188ms
62:	learn: 23.7140630	total: 311ms	remaining: 183ms
63:	learn: 23.5003791	total: 317ms	remaining: 178ms
64:	learn: 23.3207645	total: 322ms	remaining: 174ms
65:	learn: 23.1958356	total: 328ms	remaining: 169ms
66:	learn: 23.0471302	total: 333ms	remaining: 164ms
67:	learn: 22.8977183	total: 339ms	remaining: 160ms
68:	learn: 22.7187400	total: 344ms	remaining: 155ms
69:	learn: 22.6523405	total: 349ms	remaining: 150ms
70:	learn: 22.4767453	total: 355ms	remaining: 145ms
71:	learn: 22.3243677	total: 361ms	remaining: 140ms
72:	learn: 22.2133096	total: 366ms	remaining: 135ms
73:	learn: 22.1151713	total: 370ms	remaining: 130ms
74:	learn: 22.0296666	total: 374ms	remaining: 125ms
75:	learn: 21.9195980	total: 379ms	remaining: 120ms
76:	learn: 21.8401730	total: 383ms	remaining: 114ms
77:	learn: 21.8079797	total: 388ms	remaining: 109ms
78:	learn: 21.7274109	total: 392ms	remaining: 104ms
79:	learn: 21.6663032	total: 397ms	remaining: 99.3ms
80:	learn: 21.5633117	total: 402ms	remaining: 94.2ms
81:	learn: 21.4542467	total: 407ms	remaining: 89.3ms
82:	learn: 21.3177957	total: 412ms	remaining: 84.3ms
83:	learn: 21.1289167	total: 417ms	remaining: 79.4ms
84:	learn: 21.0297368	total: 422ms	remaining: 74.4ms
85:	learn: 20.9089564	total: 427ms	remaining: 69.6ms
86:	learn: 20.7653988	total: 432ms	remaining: 64.6ms
87:	learn: 20.6521894	total: 438ms	remaining: 59.7ms
88:	learn: 20.5193021	total: 443ms	remaining: 54.7ms
89:	learn: 20.4361620	total: 447ms	remaining: 49.7ms
90:	learn: 20.3546710	total: 452ms	remaining: 44.7ms
91:	learn: 20.2513296	total: 457ms	remaining: 39.7ms
92:	learn: 20.1605550	total: 466ms	remaining: 35ms
93:	learn: 20.0515942	total: 474ms	remaining: 30.2ms
94:	learn: 19.9800764	total: 483ms	remaining: 25.4ms
95:	learn: 19.8996532	total: 492ms	remaining: 20.5ms
96:	learn: 19.8450910	total: 497ms	remaining: 15.4ms
97:	learn: 19.7887346	total: 503ms	remaining: 10.3ms
98:	learn: 19.7230872	total: 509ms	remaining: 5.14ms
99:	learn: 19.6328825	total: 515ms	remaining: 0us
0:	learn: 27.5585353	total: 5.18ms	remaining: 513ms
1:	learn: 27.1656995	total: 10.3ms	remaining: 503ms
2:	learn: 26.8590175	total: 15ms	remaining: 485ms
3:	learn: 26.5818406	total: 19.4ms	remaining: 466ms
4:	learn: 26.1148663	total: 24ms	remaining: 456ms
5:	learn: 25.7690484	total: 28.9ms	remaining: 453ms
6:	learn: 25.3489206	total: 33.7ms	remaining: 448ms
7:	learn: 24.9542406	total: 38.3ms	remaining: 441ms
8:	learn: 24.6777517	total: 43.5ms	remaining: 440ms
9:	learn: 24.3242344	total: 48.4ms	remaining: 436ms
10:	learn: 24.0383073	total: 53.2ms	remaining: 431ms
11:	learn: 23.7383420	total: 58.3ms	remaining: 427ms
12:	learn: 23.3461670	total: 63.5ms	remaining: 425ms
13:	learn: 23.0928636	total: 68.3ms	remaining: 419ms
14:	learn: 22.8770414	total: 73.3ms	remaining: 415ms
15:	learn: 22.6323214	total: 78.5ms	remaining: 412ms
16:	learn: 22.3597072	total: 83.6ms	remaining: 408ms
17:	learn: 22.1079813	total: 88.6ms	remaining: 403ms
18:	learn: 21.8421199	total: 95.6ms	remaining: 408ms
19:	learn: 21.6576508	total: 105ms	remaining: 420ms
20:	learn: 21.4301268	total: 117ms	remaining: 440ms
21:	learn: 21.2287388	total: 124ms	remaining: 440ms
22:	learn: 21.0553872	total: 130ms	remaining: 437ms
23:	learn: 20.8977091	total: 136ms	remaining: 430ms
24:	learn: 20.6619051	total: 141ms	remaining: 424ms
25:	learn: 20.5040955	total: 147ms	remaining: 417ms
26:	learn: 20.3181195	total: 152ms	remaining: 411ms
27:	learn: 20.0869436	total: 157ms	remaining: 405ms
28:	learn: 19.9375985	total: 163ms	remaining: 398ms
29:	learn: 19.8247516	total: 168ms	remaining: 391ms
30:	learn: 19.6261697	total: 173ms	remaining: 384ms
31:	learn: 19.4547236	total: 177ms	remaining: 377ms
32:	learn: 19.3157092	total: 182ms	remaining: 370ms
33:	learn: 19.1561419	total: 187ms	remaining: 364ms
34:	learn: 19.0453620	total: 193ms	remaining: 358ms
35:	learn: 18.8738574	total: 198ms	remaining: 351ms
36:	learn: 18.7072907	total: 202ms	remaining: 343ms
37:	learn: 18.5877943	total: 206ms	remaining: 336ms
38:	learn: 18.4436380	total: 210ms	remaining: 329ms
39:	learn: 18.3463356	total: 215ms	remaining: 322ms
40:	learn: 18.2008059	total: 219ms	remaining: 315ms
41:	learn: 18.0582079	total: 223ms	remaining: 308ms
42:	learn: 17.8891982	total: 227ms	remaining: 301ms
43:	learn: 17.7332246	total: 231ms	remaining: 294ms
44:	learn: 17.6206421	total: 235ms	remaining: 288ms
45:	learn: 17.4982800	total: 239ms	remaining: 281ms
46:	learn: 17.3970150	total: 243ms	remaining: 274ms
47:	learn: 17.3058203	total: 247ms	remaining: 268ms
48:	learn: 17.1789256	total: 251ms	remaining: 262ms
49:	learn: 17.0916229	total: 256ms	remaining: 256ms
50:	learn: 16.9859820	total: 260ms	remaining: 250ms
51:	learn: 16.8995582	total: 264ms	remaining: 244ms
52:	learn: 16.8137014	total: 268ms	remaining: 238ms
53:	learn: 16.7021451	total: 273ms	remaining: 232ms
54:	learn: 16.5895582	total: 277ms	remaining: 227ms
55:	learn: 16.5015639	total: 282ms	remaining: 221ms
56:	learn: 16.4356637	total: 286ms	remaining: 216ms
57:	learn: 16.3514525	total: 291ms	remaining: 211ms
58:	learn: 16.2401369	total: 295ms	remaining: 205ms
59:	learn: 16.1293223	total: 300ms	remaining: 200ms
60:	learn: 16.0271167	total: 304ms	remaining: 195ms
61:	learn: 15.9126257	total: 313ms	remaining: 192ms
62:	learn: 15.8391096	total: 321ms	remaining: 188ms
63:	learn: 15.7441773	total: 329ms	remaining: 185ms
64:	learn: 15.6885195	total: 337ms	remaining: 182ms
65:	learn: 15.6052039	total: 343ms	remaining: 176ms
66:	learn: 15.5074202	total: 348ms	remaining: 171ms
67:	learn: 15.4054338	total: 353ms	remaining: 166ms
68:	learn: 15.2885714	total: 359ms	remaining: 161ms
69:	learn: 15.2157472	total: 364ms	remaining: 156ms
70:	learn: 15.1031554	total: 369ms	remaining: 151ms
71:	learn: 15.0237470	total: 374ms	remaining: 145ms
72:	learn: 14.9756825	total: 379ms	remaining: 140ms
73:	learn: 14.8840596	total: 384ms	remaining: 135ms
74:	learn: 14.8077061	total: 389ms	remaining: 130ms
75:	learn: 14.7444437	total: 394ms	remaining: 125ms
76:	learn: 14.6751720	total: 400ms	remaining: 119ms
77:	learn: 14.5830333	total: 405ms	remaining: 114ms
78:	learn: 14.5241206	total: 410ms	remaining: 109ms
79:	learn: 14.4892731	total: 414ms	remaining: 104ms
80:	learn: 14.4256605	total: 418ms	remaining: 98.1ms
81:	learn: 14.3666860	total: 423ms	remaining: 92.7ms
82:	learn: 14.2938372	total: 427ms	remaining: 87.5ms
83:	learn: 14.2161532	total: 431ms	remaining: 82.1ms
84:	learn: 14.1582910	total: 435ms	remaining: 76.8ms
85:	learn: 14.1029153	total: 439ms	remaining: 71.5ms
86:	learn: 14.0475835	total: 444ms	remaining: 66.3ms
87:	learn: 13.9892661	total: 448ms	remaining: 61.1ms
88:	learn: 13.9481628	total: 452ms	remaining: 55.9ms
89:	learn: 13.8483991	total: 456ms	remaining: 50.7ms
90:	learn: 13.7775614	total: 460ms	remaining: 45.5ms
91:	learn: 13.7304585	total: 464ms	remaining: 40.4ms
92:	learn: 13.6783381	total: 468ms	remaining: 35.2ms
93:	learn: 13.6356964	total: 473ms	remaining: 30.2ms
94:	learn: 13.5924371	total: 477ms	remaining: 25.1ms
95:	learn: 13.5400746	total: 482ms	remaining: 20.1ms
96:	learn: 13.4897333	total: 487ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 491ms	remaining: 10ms
98:	learn: 13.3856082	total: 495ms	remaining: 5ms
99:	learn: 13.3082371	total: 500ms	remaining: 0us
0:	learn: 43.0395283	total: 5.46ms	remaining: 541ms
1:	learn: 42.1130223	total: 10.6ms	remaining: 519ms
2:	learn: 41.1753409	total: 15.8ms	remaining: 510ms
3:	learn: 40.3637444	total: 21ms	remaining: 503ms
4:	learn: 39.6508088	total: 26.2ms	remaining: 497ms
5:	learn: 38.7217934	total: 31.1ms	remaining: 487ms
6:	learn: 37.8538055	total: 35.9ms	remaining: 477ms
7:	learn: 36.9793574	total: 41.3ms	remaining: 475ms
8:	learn: 36.3076984	total: 46.6ms	remaining: 471ms
9:	learn: 35.6673160	total: 50.7ms	remaining: 456ms
10:	learn: 34.8889800	total: 55.1ms	remaining: 446ms
11:	learn: 34.1675517	total: 59.2ms	remaining: 434ms
12:	learn: 33.6779564	total: 63.5ms	remaining: 425ms
13:	learn: 33.0710039	total: 67.6ms	remaining: 415ms
14:	learn: 32.4966674	total: 71.8ms	remaining: 407ms
15:	learn: 31.9492856	total: 76.1ms	remaining: 399ms
16:	learn: 31.5108129	total: 80ms	remaining: 390ms
17:	learn: 30.9804023	total: 84.4ms	remaining: 385ms
18:	learn: 30.4169089	total: 89.1ms	remaining: 380ms
19:	learn: 29.8930375	total: 93ms	remaining: 372ms
20:	learn: 29.3974421	total: 97.4ms	remaining: 366ms
21:	learn: 28.8792307	total: 102ms	remaining: 360ms
22:	learn: 28.3894474	total: 106ms	remaining: 354ms
23:	learn: 27.9921276	total: 110ms	remaining: 348ms
24:	learn: 27.6158887	total: 114ms	remaining: 342ms
25:	learn: 27.2866950	total: 118ms	remaining: 337ms
26:	learn: 26.8770708	total: 123ms	remaining: 334ms
27:	learn: 26.6233005	total: 128ms	remaining: 329ms
28:	learn: 26.2921934	total: 132ms	remaining: 323ms
29:	learn: 25.9156920	total: 137ms	remaining: 319ms
30:	learn: 25.5311106	total: 138ms	remaining: 308ms
31:	learn: 25.2178997	total: 143ms	remaining: 304ms
32:	learn: 24.8572196	total: 147ms	remaining: 299ms
33:	learn: 24.5849710	total: 152ms	remaining: 295ms
34:	learn: 24.2209190	total: 158ms	remaining: 294ms
35:	learn: 23.8708250	total: 166ms	remaining: 295ms
36:	learn: 23.5325279	total: 174ms	remaining: 297ms
37:	learn: 23.2116148	total: 181ms	remaining: 296ms
38:	learn: 22.9696787	total: 189ms	remaining: 296ms
39:	learn: 22.7936783	total: 195ms	remaining: 292ms
40:	learn: 22.6228847	total: 200ms	remaining: 287ms
41:	learn: 22.3691527	total: 205ms	remaining: 283ms
42:	learn: 22.1002173	total: 210ms	remaining: 278ms
43:	learn: 21.9157268	total: 215ms	remaining: 274ms
44:	learn: 21.7229102	total: 220ms	remaining: 269ms
45:	learn: 21.4642005	total: 225ms	remaining: 264ms
46:	learn: 21.3029442	total: 230ms	remaining: 259ms
47:	learn: 21.1469792	total: 235ms	remaining: 254ms
48:	learn: 20.9458235	total: 240ms	remaining: 250ms
49:	learn: 20.7335242	total: 245ms	remaining: 245ms
50:	learn: 20.5440269	total: 258ms	remaining: 248ms
51:	learn: 20.3661449	total: 263ms	remaining: 243ms
52:	learn: 20.2158134	total: 267ms	remaining: 237ms
53:	learn: 19.9934873	total: 271ms	remaining: 231ms
54:	learn: 19.7879739	total: 276ms	remaining: 225ms
55:	learn: 19.6630460	total: 280ms	remaining: 220ms
56:	learn: 19.5152729	total: 284ms	remaining: 215ms
57:	learn: 19.3581128	total: 289ms	remaining: 209ms
58:	learn: 19.2209303	total: 293ms	remaining: 204ms
59:	learn: 19.0965248	total: 298ms	remaining: 199ms
60:	learn: 19.0035954	total: 303ms	remaining: 194ms
61:	learn: 18.8554149	total: 307ms	remaining: 188ms
62:	learn: 18.7095427	total: 312ms	remaining: 183ms
63:	learn: 18.5751494	total: 316ms	remaining: 178ms
64:	learn: 18.4678251	total: 320ms	remaining: 172ms
65:	learn: 18.3500325	total: 325ms	remaining: 167ms
66:	learn: 18.2088983	total: 329ms	remaining: 162ms
67:	learn: 18.0737705	total: 334ms	remaining: 157ms
68:	learn: 17.9325058	total: 338ms	remaining: 152ms
69:	learn: 17.8003911	total: 343ms	remaining: 147ms
70:	learn: 17.7385366	total: 348ms	remaining: 142ms
71:	learn: 17.6106998	total: 353ms	remaining: 137ms
72:	learn: 17.4816270	total: 362ms	remaining: 134ms
73:	learn: 17.4025554	total: 370ms	remaining: 130ms
74:	learn: 17.2902108	total: 381ms	remaining: 127ms
75:	learn: 17.2158048	total: 388ms	remaining: 123ms
76:	learn: 17.1261053	total: 394ms	remaining: 118ms
77:	learn: 17.0308917	total: 399ms	remaining: 113ms
78:	learn: 16.9546705	total: 405ms	remaining: 108ms
79:	learn: 16.8319165	total: 410ms	remaining: 103ms
80:	learn: 16.7687017	total: 426ms	remaining: 100ms
81:	learn: 16.6972326	total: 431ms	remaining: 94.7ms
82:	learn: 16.6124580	total: 437ms	remaining: 89.4ms
83:	learn: 16.4999052	total: 441ms	remaining: 84.1ms
84:	learn: 16.4302484	total: 447ms	remaining: 78.8ms
85:	learn: 16.3201363	total: 452ms	remaining: 73.6ms
86:	learn: 16.2534314	total: 457ms	remaining: 68.3ms
87:	learn: 16.1720485	total: 461ms	remaining: 62.9ms
88:	learn: 16.0625751	total: 465ms	remaining: 57.5ms
89:	learn: 15.9135088	total: 470ms	remaining: 52.2ms
90:	learn: 15.8658863	total: 474ms	remaining: 46.9ms
91:	learn: 15.8066805	total: 478ms	remaining: 41.6ms
92:	learn: 15.7412103	total: 483ms	remaining: 36.3ms
93:	learn: 15.6542776	total: 487ms	remaining: 31.1ms
94:	learn: 15.5760334	total: 491ms	remaining: 25.9ms
95:	learn: 15.5434131	total: 496ms	remaining: 20.7ms
96:	learn: 15.4709561	total: 500ms	remaining: 15.5ms
97:	learn: 15.4449618	total: 504ms	remaining: 10.3ms
98:	learn: 15.3752761	total: 508ms	remaining: 5.13ms
99:	learn: 15.3106595	total: 512ms	remaining: 0us
0:	learn: 46.7142257	total: 5.03ms	remaining: 498ms
1:	learn: 45.7634153	total: 12.7ms	remaining: 621ms
2:	learn: 45.0054253	total: 19.7ms	remaining: 636ms
3:	learn: 44.2120432	total: 27.8ms	remaining: 668ms
4:	learn: 43.3960472	total: 33.5ms	remaining: 637ms
5:	learn: 42.8588120	total: 40.9ms	remaining: 641ms
6:	learn: 41.9533701	total: 46.6ms	remaining: 619ms
7:	learn: 41.2745030	total: 51.8ms	remaining: 596ms
8:	learn: 40.6797495	total: 57.2ms	remaining: 578ms
9:	learn: 39.9899571	total: 62.8ms	remaining: 566ms
10:	learn: 39.4682100	total: 68.1ms	remaining: 551ms
11:	learn: 39.0305595	total: 74ms	remaining: 543ms
12:	learn: 38.4200417	total: 79.3ms	remaining: 531ms
13:	learn: 37.8425194	total: 84.5ms	remaining: 519ms
14:	learn: 37.4203127	total: 89.3ms	remaining: 506ms
15:	learn: 36.9917688	total: 94ms	remaining: 494ms
16:	learn: 36.5544138	total: 98.9ms	remaining: 483ms
17:	learn: 36.0727019	total: 104ms	remaining: 475ms
18:	learn: 35.4835715	total: 110ms	remaining: 468ms
19:	learn: 34.9865654	total: 114ms	remaining: 457ms
20:	learn: 34.6063373	total: 119ms	remaining: 446ms
21:	learn: 34.0997289	total: 122ms	remaining: 434ms
22:	learn: 33.7313171	total: 126ms	remaining: 423ms
23:	learn: 33.3582000	total: 131ms	remaining: 414ms
24:	learn: 32.9432456	total: 135ms	remaining: 405ms
25:	learn: 32.5220888	total: 139ms	remaining: 397ms
26:	learn: 32.2172292	total: 144ms	remaining: 389ms
27:	learn: 31.8972904	total: 148ms	remaining: 381ms
28:	learn: 31.6405350	total: 153ms	remaining: 374ms
29:	learn: 31.4167702	total: 157ms	remaining: 366ms
30:	learn: 30.8541961	total: 159ms	remaining: 353ms
31:	learn: 30.5572111	total: 163ms	remaining: 346ms
32:	learn: 30.1700399	total: 167ms	remaining: 339ms
33:	learn: 29.8537271	total: 171ms	remaining: 332ms
34:	learn: 29.6192540	total: 175ms	remaining: 325ms
35:	learn: 29.3276362	total: 180ms	remaining: 321ms
36:	learn: 28.9985179	total: 185ms	remaining: 315ms
37:	learn: 28.7046880	total: 189ms	remaining: 309ms
38:	learn: 28.4412677	total: 194ms	remaining: 304ms
39:	learn: 28.1277292	total: 198ms	remaining: 298ms
40:	learn: 27.9000750	total: 203ms	remaining: 292ms
41:	learn: 27.5433162	total: 208ms	remaining: 287ms
42:	learn: 27.2493285	total: 214ms	remaining: 284ms
43:	learn: 26.9576632	total: 217ms	remaining: 276ms
44:	learn: 26.6177110	total: 225ms	remaining: 274ms
45:	learn: 26.2812456	total: 234ms	remaining: 274ms
46:	learn: 26.0803859	total: 239ms	remaining: 270ms
47:	learn: 25.9543581	total: 247ms	remaining: 267ms
48:	learn: 25.7951582	total: 252ms	remaining: 262ms
49:	learn: 25.6548184	total: 257ms	remaining: 257ms
50:	learn: 25.4010843	total: 262ms	remaining: 252ms
51:	learn: 24.9773937	total: 267ms	remaining: 247ms
52:	learn: 24.8026156	total: 273ms	remaining: 242ms
53:	learn: 24.5568053	total: 278ms	remaining: 237ms
54:	learn: 24.2281839	total: 283ms	remaining: 232ms
55:	learn: 23.9202795	total: 288ms	remaining: 226ms
56:	learn: 23.7625591	total: 293ms	remaining: 221ms
57:	learn: 23.5429721	total: 298ms	remaining: 216ms
58:	learn: 23.3175893	total: 304ms	remaining: 211ms
59:	learn: 23.2035130	total: 310ms	remaining: 206ms
60:	learn: 23.0232450	total: 315ms	remaining: 201ms
61:	learn: 22.8384958	total: 319ms	remaining: 195ms
62:	learn: 22.6499902	total: 323ms	remaining: 189ms
63:	learn: 22.4577426	total: 327ms	remaining: 184ms
64:	learn: 22.3333158	total: 331ms	remaining: 178ms
65:	learn: 22.2064131	total: 335ms	remaining: 173ms
66:	learn: 22.1434971	total: 339ms	remaining: 167ms
67:	learn: 21.9596519	total: 343ms	remaining: 161ms
68:	learn: 21.8475576	total: 347ms	remaining: 156ms
69:	learn: 21.6954745	total: 351ms	remaining: 150ms
70:	learn: 21.5635976	total: 355ms	remaining: 145ms
71:	learn: 21.4588506	total: 359ms	remaining: 140ms
72:	learn: 21.3527268	total: 363ms	remaining: 134ms
73:	learn: 21.2661288	total: 367ms	remaining: 129ms
74:	learn: 21.1817333	total: 372ms	remaining: 124ms
75:	learn: 21.0527553	total: 376ms	remaining: 119ms
76:	learn: 20.9229021	total: 380ms	remaining: 114ms
77:	learn: 20.7563946	total: 385ms	remaining: 108ms
78:	learn: 20.6569831	total: 389ms	remaining: 103ms
79:	learn: 20.4982663	total: 394ms	remaining: 98.5ms
80:	learn: 20.3185460	total: 399ms	remaining: 93.5ms
81:	learn: 20.2096241	total: 403ms	remaining: 88.5ms
82:	learn: 20.1274891	total: 408ms	remaining: 83.5ms
83:	learn: 20.0740139	total: 413ms	remaining: 78.7ms
84:	learn: 19.9630699	total: 420ms	remaining: 74.2ms
85:	learn: 19.8753899	total: 428ms	remaining: 69.6ms
86:	learn: 19.6563612	total: 437ms	remaining: 65.2ms
87:	learn: 19.4680232	total: 442ms	remaining: 60.3ms
88:	learn: 19.3503431	total: 448ms	remaining: 55.4ms
89:	learn: 19.2221379	total: 454ms	remaining: 50.4ms
90:	learn: 19.0732542	total: 458ms	remaining: 45.3ms
91:	learn: 18.9825190	total: 464ms	remaining: 40.3ms
92:	learn: 18.8839009	total: 469ms	remaining: 35.3ms
93:	learn: 18.8012219	total: 474ms	remaining: 30.2ms
94:	learn: 18.7172713	total: 479ms	remaining: 25.2ms
95:	learn: 18.6201170	total: 484ms	remaining: 20.2ms
96:	learn: 18.5318611	total: 489ms	remaining: 15.1ms
97:	learn: 18.3833356	total: 494ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 499ms	remaining: 5.04ms
99:	learn: 18.2227333	total: 505ms	remaining: 0us
0:	learn: 46.3764524	total: 4.21ms	remaining: 416ms
1:	learn: 45.5561269	total: 8.35ms	remaining: 409ms
2:	learn: 44.8811245	total: 12.3ms	remaining: 398ms
3:	learn: 44.0788617	total: 16.4ms	remaining: 393ms
4:	learn: 43.3619790	total: 20.4ms	remaining: 387ms
5:	learn: 42.6912112	total: 24.5ms	remaining: 383ms
6:	learn: 42.2292118	total: 28.7ms	remaining: 381ms
7:	learn: 41.7725191	total: 33ms	remaining: 380ms
8:	learn: 41.1676614	total: 37.5ms	remaining: 379ms
9:	learn: 40.5771076	total: 42.2ms	remaining: 380ms
10:	learn: 39.8343757	total: 47ms	remaining: 380ms
11:	learn: 39.3761142	total: 51.5ms	remaining: 378ms
12:	learn: 38.5254692	total: 56.2ms	remaining: 376ms
13:	learn: 37.9629555	total: 61.1ms	remaining: 375ms
14:	learn: 37.4418438	total: 68.4ms	remaining: 388ms
15:	learn: 37.0507283	total: 75.8ms	remaining: 398ms
16:	learn: 36.6264217	total: 83.6ms	remaining: 408ms
17:	learn: 36.1114940	total: 89.6ms	remaining: 408ms
18:	learn: 35.7193862	total: 96.7ms	remaining: 412ms
19:	learn: 35.3301177	total: 102ms	remaining: 408ms
20:	learn: 35.0598280	total: 107ms	remaining: 403ms
21:	learn: 34.5469736	total: 112ms	remaining: 398ms
22:	learn: 34.2064215	total: 117ms	remaining: 393ms
23:	learn: 33.7280710	total: 122ms	remaining: 388ms
24:	learn: 33.3282940	total: 127ms	remaining: 382ms
25:	learn: 32.8478961	total: 133ms	remaining: 378ms
26:	learn: 32.5722164	total: 138ms	remaining: 373ms
27:	learn: 32.2457019	total: 143ms	remaining: 368ms
28:	learn: 31.9230495	total: 148ms	remaining: 363ms
29:	learn: 31.4311611	total: 153ms	remaining: 358ms
30:	learn: 30.9179052	total: 159ms	remaining: 354ms
31:	learn: 30.6201141	total: 165ms	remaining: 351ms
32:	learn: 30.3421106	total: 170ms	remaining: 345ms
33:	learn: 29.9885373	total: 174ms	remaining: 338ms
34:	learn: 29.7462780	total: 179ms	remaining: 332ms
35:	learn: 29.3607153	total: 183ms	remaining: 325ms
36:	learn: 29.1793078	total: 187ms	remaining: 319ms
37:	learn: 28.9276538	total: 192ms	remaining: 312ms
38:	learn: 28.6903934	total: 196ms	remaining: 307ms
39:	learn: 28.2095033	total: 201ms	remaining: 301ms
40:	learn: 27.7990608	total: 205ms	remaining: 295ms
41:	learn: 27.5406632	total: 209ms	remaining: 289ms
42:	learn: 27.2575376	total: 214ms	remaining: 284ms
43:	learn: 26.9741707	total: 219ms	remaining: 278ms
44:	learn: 26.6606899	total: 224ms	remaining: 274ms
45:	learn: 26.4015833	total: 229ms	remaining: 269ms
46:	learn: 26.1828993	total: 234ms	remaining: 264ms
47:	learn: 26.0233709	total: 237ms	remaining: 257ms
48:	learn: 25.9300399	total: 242ms	remaining: 252ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 252ms	remaining: 242ms
51:	learn: 25.1595644	total: 257ms	remaining: 237ms
52:	learn: 24.9955303	total: 263ms	remaining: 234ms
53:	learn: 24.7273966	total: 272ms	remaining: 232ms
54:	learn: 24.5747978	total: 280ms	remaining: 229ms
55:	learn: 24.3807977	total: 287ms	remaining: 225ms
56:	learn: 24.1689569	total: 294ms	remaining: 222ms
57:	learn: 23.9898221	total: 300ms	remaining: 217ms
58:	learn: 23.7566414	total: 305ms	remaining: 212ms
59:	learn: 23.6641165	total: 310ms	remaining: 207ms
60:	learn: 23.5658066	total: 320ms	remaining: 204ms
61:	learn: 23.4338851	total: 325ms	remaining: 199ms
62:	learn: 23.2408837	total: 330ms	remaining: 194ms
63:	learn: 23.0642038	total: 335ms	remaining: 189ms
64:	learn: 22.9032045	total: 340ms	remaining: 183ms
65:	learn: 22.7736138	total: 345ms	remaining: 178ms
66:	learn: 22.6836443	total: 350ms	remaining: 172ms
67:	learn: 22.5983654	total: 355ms	remaining: 167ms
68:	learn: 22.4419813	total: 360ms	remaining: 162ms
69:	learn: 22.2863339	total: 365ms	remaining: 156ms
70:	learn: 22.1792943	total: 369ms	remaining: 151ms
71:	learn: 22.1130574	total: 374ms	remaining: 145ms
72:	learn: 21.9858161	total: 378ms	remaining: 140ms
73:	learn: 21.8577784	total: 382ms	remaining: 134ms
74:	learn: 21.7845222	total: 386ms	remaining: 129ms
75:	learn: 21.6831390	total: 390ms	remaining: 123ms
76:	learn: 21.6292521	total: 395ms	remaining: 118ms
77:	learn: 21.5789330	total: 399ms	remaining: 113ms
78:	learn: 21.5420942	total: 403ms	remaining: 107ms
79:	learn: 21.4280939	total: 407ms	remaining: 102ms
80:	learn: 21.3641165	total: 412ms	remaining: 96.6ms
81:	learn: 21.2734814	total: 416ms	remaining: 91.4ms
82:	learn: 21.2220323	total: 421ms	remaining: 86.1ms
83:	learn: 21.0625792	total: 425ms	remaining: 81ms
84:	learn: 20.9488320	total: 430ms	remaining: 75.9ms
85:	learn: 20.8504255	total: 435ms	remaining: 70.7ms
86:	learn: 20.7848510	total: 439ms	remaining: 65.6ms
87:	learn: 20.7247442	total: 443ms	remaining: 60.5ms
88:	learn: 20.5698590	total: 448ms	remaining: 55.4ms
89:	learn: 20.4067620	total: 452ms	remaining: 50.3ms
90:	learn: 20.3062482	total: 457ms	remaining: 45.2ms
91:	learn: 20.2029696	total: 465ms	remaining: 40.4ms
92:	learn: 20.1384849	total: 472ms	remaining: 35.6ms
93:	learn: 20.0260709	total: 480ms	remaining: 30.6ms
94:	learn: 19.9122100	total: 486ms	remaining: 25.6ms
95:	learn: 19.8648487	total: 494ms	remaining: 20.6ms
96:	learn: 19.8207072	total: 499ms	remaining: 15.4ms
97:	learn: 19.7261189	total: 505ms	remaining: 10.3ms
98:	learn: 19.7042438	total: 510ms	remaining: 5.16ms
99:	learn: 19.6546645	total: 516ms	remaining: 0us
0:	learn: 47.0239288	total: 5.24ms	remaining: 518ms
1:	learn: 46.2253829	total: 10.3ms	remaining: 505ms
2:	learn: 45.5580301	total: 15.7ms	remaining: 508ms
3:	learn: 44.7273237	total: 21.1ms	remaining: 507ms
4:	learn: 43.8867421	total: 25.9ms	remaining: 491ms
5:	learn: 43.3615911	total: 30.2ms	remaining: 473ms
6:	learn: 42.8548390	total: 34.8ms	remaining: 462ms
7:	learn: 42.1606758	total: 39.3ms	remaining: 452ms
8:	learn: 41.6625870	total: 56.5ms	remaining: 571ms
9:	learn: 40.9497092	total: 60.8ms	remaining: 547ms
10:	learn: 40.1886318	total: 64.8ms	remaining: 524ms
11:	learn: 39.7456423	total: 68.9ms	remaining: 505ms
12:	learn: 39.1171373	total: 73.2ms	remaining: 490ms
13:	learn: 38.5451069	total: 77.9ms	remaining: 479ms
14:	learn: 38.0155834	total: 82.2ms	remaining: 466ms
15:	learn: 37.5631354	total: 86.8ms	remaining: 456ms
16:	learn: 37.1030023	total: 91.1ms	remaining: 445ms
17:	learn: 36.4563029	total: 95.4ms	remaining: 435ms
18:	learn: 36.0160976	total: 100ms	remaining: 426ms
19:	learn: 35.5079827	total: 104ms	remaining: 417ms
20:	learn: 35.2111885	total: 112ms	remaining: 423ms
21:	learn: 34.9397465	total: 119ms	remaining: 423ms
22:	learn: 34.5270048	total: 128ms	remaining: 428ms
23:	learn: 34.0169260	total: 136ms	remaining: 429ms
24:	learn: 33.7454892	total: 141ms	remaining: 423ms
25:	learn: 33.2648157	total: 146ms	remaining: 416ms
26:	learn: 32.8899427	total: 151ms	remaining: 410ms
27:	learn: 32.6185050	total: 157ms	remaining: 403ms
28:	learn: 32.3528531	total: 161ms	remaining: 395ms
29:	learn: 32.0859923	total: 167ms	remaining: 389ms
30:	learn: 31.6511144	total: 172ms	remaining: 383ms
31:	learn: 31.2571765	total: 177ms	remaining: 376ms
32:	learn: 30.9770049	total: 182ms	remaining: 370ms
33:	learn: 30.6084872	total: 187ms	remaining: 364ms
34:	learn: 30.3448632	total: 192ms	remaining: 357ms
35:	learn: 30.0360942	total: 197ms	remaining: 350ms
36:	learn: 29.6648968	total: 203ms	remaining: 345ms
37:	learn: 29.3165114	total: 208ms	remaining: 339ms
38:	learn: 29.0829198	total: 212ms	remaining: 332ms
39:	learn: 28.7752064	total: 216ms	remaining: 324ms
40:	learn: 28.3622191	total: 220ms	remaining: 317ms
41:	learn: 28.1346631	total: 224ms	remaining: 309ms
42:	learn: 27.9585719	total: 228ms	remaining: 303ms
43:	learn: 27.6565566	total: 232ms	remaining: 295ms
44:	learn: 27.3616172	total: 236ms	remaining: 288ms
45:	learn: 27.0658637	total: 240ms	remaining: 281ms
46:	learn: 26.8660382	total: 244ms	remaining: 275ms
47:	learn: 26.6536078	total: 248ms	remaining: 269ms
48:	learn: 26.3524440	total: 252ms	remaining: 263ms
49:	learn: 26.1595277	total: 257ms	remaining: 257ms
50:	learn: 25.9273523	total: 261ms	remaining: 250ms
51:	learn: 25.7195580	total: 265ms	remaining: 244ms
52:	learn: 25.5730225	total: 269ms	remaining: 239ms
53:	learn: 25.3455276	total: 274ms	remaining: 233ms
54:	learn: 25.2289675	total: 278ms	remaining: 227ms
55:	learn: 25.0133024	total: 282ms	remaining: 222ms
56:	learn: 24.8406714	total: 287ms	remaining: 216ms
57:	learn: 24.6367857	total: 292ms	remaining: 211ms
58:	learn: 24.5338177	total: 296ms	remaining: 206ms
59:	learn: 24.3799964	total: 301ms	remaining: 200ms
60:	learn: 24.1447492	total: 305ms	remaining: 195ms
61:	learn: 23.9880495	total: 314ms	remaining: 192ms
62:	learn: 23.7140630	total: 322ms	remaining: 189ms
63:	learn: 23.5003791	total: 330ms	remaining: 186ms
64:	learn: 23.3207645	total: 338ms	remaining: 182ms
65:	learn: 23.1958356	total: 343ms	remaining: 177ms
66:	learn: 23.0471302	total: 348ms	remaining: 172ms
67:	learn: 22.8977183	total: 354ms	remaining: 167ms
68:	learn: 22.7187400	total: 359ms	remaining: 161ms
69:	learn: 22.6523405	total: 365ms	remaining: 156ms
70:	learn: 22.4767453	total: 369ms	remaining: 151ms
71:	learn: 22.3243677	total: 375ms	remaining: 146ms
72:	learn: 22.2133096	total: 380ms	remaining: 140ms
73:	learn: 22.1151713	total: 385ms	remaining: 135ms
74:	learn: 22.0296666	total: 389ms	remaining: 130ms
75:	learn: 21.9195980	total: 393ms	remaining: 124ms
76:	learn: 21.8401730	total: 397ms	remaining: 119ms
77:	learn: 21.8079797	total: 401ms	remaining: 113ms
78:	learn: 21.7274109	total: 406ms	remaining: 108ms
79:	learn: 21.6663032	total: 411ms	remaining: 103ms
80:	learn: 21.5633117	total: 417ms	remaining: 97.8ms
81:	learn: 21.4542467	total: 422ms	remaining: 92.5ms
82:	learn: 21.3177957	total: 425ms	remaining: 87.1ms
83:	learn: 21.1289167	total: 429ms	remaining: 81.8ms
84:	learn: 21.0297368	total: 434ms	remaining: 76.5ms
85:	learn: 20.9089564	total: 437ms	remaining: 71.2ms
86:	learn: 20.7653988	total: 441ms	remaining: 65.9ms
87:	learn: 20.6521894	total: 445ms	remaining: 60.7ms
88:	learn: 20.5193021	total: 449ms	remaining: 55.5ms
89:	learn: 20.4361620	total: 453ms	remaining: 50.4ms
90:	learn: 20.3546710	total: 457ms	remaining: 45.2ms
91:	learn: 20.2513296	total: 462ms	remaining: 40.2ms
92:	learn: 20.1605550	total: 466ms	remaining: 35.1ms
93:	learn: 20.0515942	total: 470ms	remaining: 30ms
94:	learn: 19.9800764	total: 474ms	remaining: 24.9ms
95:	learn: 19.8996532	total: 478ms	remaining: 19.9ms
96:	learn: 19.8450910	total: 482ms	remaining: 14.9ms
97:	learn: 19.7887346	total: 486ms	remaining: 9.93ms
98:	learn: 19.7230872	total: 491ms	remaining: 4.96ms
99:	learn: 19.6328825	total: 495ms	remaining: 0us
0:	learn: 27.5585353	total: 6.93ms	remaining: 686ms
1:	learn: 27.1656995	total: 12.6ms	remaining: 618ms
2:	learn: 26.8590175	total: 18ms	remaining: 581ms
3:	learn: 26.5818406	total: 22.8ms	remaining: 547ms
4:	learn: 26.1148663	total: 28.4ms	remaining: 539ms
5:	learn: 25.7690484	total: 33.6ms	remaining: 526ms
6:	learn: 25.3489206	total: 39ms	remaining: 518ms
7:	learn: 24.9542406	total: 44.6ms	remaining: 513ms
8:	learn: 24.6777517	total: 49.8ms	remaining: 503ms
9:	learn: 24.3242344	total: 54.8ms	remaining: 493ms
10:	learn: 24.0383073	total: 59.5ms	remaining: 482ms
11:	learn: 23.7383420	total: 64.3ms	remaining: 472ms
12:	learn: 23.3461670	total: 69.7ms	remaining: 467ms
13:	learn: 23.0928636	total: 75ms	remaining: 461ms
14:	learn: 22.8770414	total: 79.6ms	remaining: 451ms
15:	learn: 22.6323214	total: 84.3ms	remaining: 443ms
16:	learn: 22.3597072	total: 88.6ms	remaining: 432ms
17:	learn: 22.1079813	total: 93ms	remaining: 424ms
18:	learn: 21.8421199	total: 97.7ms	remaining: 417ms
19:	learn: 21.6576508	total: 103ms	remaining: 412ms
20:	learn: 21.4301268	total: 108ms	remaining: 406ms
21:	learn: 21.2287388	total: 113ms	remaining: 400ms
22:	learn: 21.0553872	total: 117ms	remaining: 393ms
23:	learn: 20.8977091	total: 122ms	remaining: 387ms
24:	learn: 20.6619051	total: 127ms	remaining: 380ms
25:	learn: 20.5040955	total: 132ms	remaining: 375ms
26:	learn: 20.3181195	total: 136ms	remaining: 368ms
27:	learn: 20.0869436	total: 141ms	remaining: 361ms
28:	learn: 19.9375985	total: 145ms	remaining: 355ms
29:	learn: 19.8247516	total: 150ms	remaining: 350ms
30:	learn: 19.6261697	total: 155ms	remaining: 344ms
31:	learn: 19.4547236	total: 159ms	remaining: 338ms
32:	learn: 19.3157092	total: 163ms	remaining: 332ms
33:	learn: 19.1561419	total: 168ms	remaining: 326ms
34:	learn: 19.0453620	total: 173ms	remaining: 321ms
35:	learn: 18.8738574	total: 177ms	remaining: 315ms
36:	learn: 18.7072907	total: 183ms	remaining: 312ms
37:	learn: 18.5877943	total: 191ms	remaining: 312ms
38:	learn: 18.4436380	total: 198ms	remaining: 310ms
39:	learn: 18.3463356	total: 206ms	remaining: 309ms
40:	learn: 18.2008059	total: 213ms	remaining: 307ms
41:	learn: 18.0582079	total: 219ms	remaining: 302ms
42:	learn: 17.8891982	total: 224ms	remaining: 297ms
43:	learn: 17.7332246	total: 230ms	remaining: 292ms
44:	learn: 17.6206421	total: 235ms	remaining: 287ms
45:	learn: 17.4982800	total: 241ms	remaining: 283ms
46:	learn: 17.3970150	total: 246ms	remaining: 278ms
47:	learn: 17.3058203	total: 252ms	remaining: 273ms
48:	learn: 17.1789256	total: 257ms	remaining: 268ms
49:	learn: 17.0916229	total: 262ms	remaining: 262ms
50:	learn: 16.9859820	total: 267ms	remaining: 257ms
51:	learn: 16.8995582	total: 272ms	remaining: 251ms
52:	learn: 16.8137014	total: 277ms	remaining: 246ms
53:	learn: 16.7021451	total: 283ms	remaining: 241ms
54:	learn: 16.5895582	total: 287ms	remaining: 235ms
55:	learn: 16.5015639	total: 291ms	remaining: 229ms
56:	learn: 16.4356637	total: 295ms	remaining: 223ms
57:	learn: 16.3514525	total: 299ms	remaining: 217ms
58:	learn: 16.2401369	total: 304ms	remaining: 211ms
59:	learn: 16.1293223	total: 308ms	remaining: 205ms
60:	learn: 16.0271167	total: 312ms	remaining: 200ms
61:	learn: 15.9126257	total: 316ms	remaining: 194ms
62:	learn: 15.8391096	total: 320ms	remaining: 188ms
63:	learn: 15.7441773	total: 325ms	remaining: 183ms
64:	learn: 15.6885195	total: 329ms	remaining: 177ms
65:	learn: 15.6052039	total: 333ms	remaining: 171ms
66:	learn: 15.5074202	total: 337ms	remaining: 166ms
67:	learn: 15.4054338	total: 341ms	remaining: 160ms
68:	learn: 15.2885714	total: 346ms	remaining: 155ms
69:	learn: 15.2157472	total: 351ms	remaining: 150ms
70:	learn: 15.1031554	total: 355ms	remaining: 145ms
71:	learn: 15.0237470	total: 360ms	remaining: 140ms
72:	learn: 14.9756825	total: 364ms	remaining: 135ms
73:	learn: 14.8840596	total: 368ms	remaining: 129ms
74:	learn: 14.8077061	total: 373ms	remaining: 124ms
75:	learn: 14.7444437	total: 378ms	remaining: 119ms
76:	learn: 14.6751720	total: 385ms	remaining: 115ms
77:	learn: 14.5830333	total: 392ms	remaining: 111ms
78:	learn: 14.5241206	total: 402ms	remaining: 107ms
79:	learn: 14.4892731	total: 407ms	remaining: 102ms
80:	learn: 14.4256605	total: 415ms	remaining: 97.3ms
81:	learn: 14.3666860	total: 420ms	remaining: 92.2ms
82:	learn: 14.2938372	total: 425ms	remaining: 87.1ms
83:	learn: 14.2161532	total: 431ms	remaining: 82.1ms
84:	learn: 14.1582910	total: 436ms	remaining: 77ms
85:	learn: 14.1029153	total: 442ms	remaining: 71.9ms
86:	learn: 14.0475835	total: 447ms	remaining: 66.9ms
87:	learn: 13.9892661	total: 453ms	remaining: 61.8ms
88:	learn: 13.9481628	total: 458ms	remaining: 56.6ms
89:	learn: 13.8483991	total: 463ms	remaining: 51.5ms
90:	learn: 13.7775614	total: 468ms	remaining: 46.3ms
91:	learn: 13.7304585	total: 474ms	remaining: 41.2ms
92:	learn: 13.6783381	total: 479ms	remaining: 36ms
93:	learn: 13.6356964	total: 484ms	remaining: 30.9ms
94:	learn: 13.5924371	total: 487ms	remaining: 25.7ms
95:	learn: 13.5400746	total: 491ms	remaining: 20.5ms
96:	learn: 13.4897333	total: 495ms	remaining: 15.3ms
97:	learn: 13.4470321	total: 500ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 504ms	remaining: 5.09ms
99:	learn: 13.3082371	total: 508ms	remaining: 0us
0:	learn: 43.0395283	total: 4.99ms	remaining: 494ms
1:	learn: 42.1130223	total: 9.64ms	remaining: 473ms
2:	learn: 41.1753409	total: 14.3ms	remaining: 462ms
3:	learn: 40.3637444	total: 18.8ms	remaining: 452ms
4:	learn: 39.6508088	total: 23.3ms	remaining: 443ms
5:	learn: 38.7217934	total: 28.9ms	remaining: 452ms
6:	learn: 37.8538055	total: 35.8ms	remaining: 475ms
7:	learn: 36.9793574	total: 42.9ms	remaining: 493ms
8:	learn: 36.3076984	total: 51.9ms	remaining: 525ms
9:	learn: 35.6673160	total: 59.2ms	remaining: 532ms
10:	learn: 34.8889800	total: 64.2ms	remaining: 520ms
11:	learn: 34.1675517	total: 69.4ms	remaining: 509ms
12:	learn: 33.6779564	total: 74.7ms	remaining: 500ms
13:	learn: 33.0710039	total: 79.8ms	remaining: 490ms
14:	learn: 32.4966674	total: 84.7ms	remaining: 480ms
15:	learn: 31.9492856	total: 90.1ms	remaining: 473ms
16:	learn: 31.5108129	total: 95ms	remaining: 464ms
17:	learn: 30.9804023	total: 100ms	remaining: 456ms
18:	learn: 30.4169089	total: 105ms	remaining: 449ms
19:	learn: 29.8930375	total: 110ms	remaining: 441ms
20:	learn: 29.3974421	total: 116ms	remaining: 435ms
21:	learn: 28.8792307	total: 120ms	remaining: 427ms
22:	learn: 28.3894474	total: 126ms	remaining: 421ms
23:	learn: 27.9921276	total: 131ms	remaining: 415ms
24:	learn: 27.6158887	total: 135ms	remaining: 406ms
25:	learn: 27.2866950	total: 139ms	remaining: 397ms
26:	learn: 26.8770708	total: 144ms	remaining: 388ms
27:	learn: 26.6233005	total: 147ms	remaining: 379ms
28:	learn: 26.2921934	total: 152ms	remaining: 371ms
29:	learn: 25.9156920	total: 156ms	remaining: 363ms
30:	learn: 25.5311106	total: 157ms	remaining: 350ms
31:	learn: 25.2178997	total: 162ms	remaining: 343ms
32:	learn: 24.8572196	total: 166ms	remaining: 336ms
33:	learn: 24.5849710	total: 169ms	remaining: 329ms
34:	learn: 24.2209190	total: 173ms	remaining: 322ms
35:	learn: 23.8708250	total: 177ms	remaining: 315ms
36:	learn: 23.5325279	total: 181ms	remaining: 309ms
37:	learn: 23.2116148	total: 185ms	remaining: 302ms
38:	learn: 22.9696787	total: 189ms	remaining: 296ms
39:	learn: 22.7936783	total: 193ms	remaining: 290ms
40:	learn: 22.6228847	total: 197ms	remaining: 284ms
41:	learn: 22.3691527	total: 202ms	remaining: 279ms
42:	learn: 22.1002173	total: 207ms	remaining: 274ms
43:	learn: 21.9157268	total: 211ms	remaining: 268ms
44:	learn: 21.7229102	total: 215ms	remaining: 263ms
45:	learn: 21.4642005	total: 220ms	remaining: 258ms
46:	learn: 21.3029442	total: 224ms	remaining: 253ms
47:	learn: 21.1469792	total: 229ms	remaining: 248ms
48:	learn: 20.9458235	total: 233ms	remaining: 243ms
49:	learn: 20.7335242	total: 237ms	remaining: 237ms
50:	learn: 20.5440269	total: 242ms	remaining: 232ms
51:	learn: 20.3661449	total: 246ms	remaining: 227ms
52:	learn: 20.2158134	total: 251ms	remaining: 223ms
53:	learn: 19.9934873	total: 258ms	remaining: 220ms
54:	learn: 19.7879739	total: 266ms	remaining: 218ms
55:	learn: 19.6630460	total: 274ms	remaining: 215ms
56:	learn: 19.5152729	total: 280ms	remaining: 211ms
57:	learn: 19.3581128	total: 287ms	remaining: 208ms
58:	learn: 19.2209303	total: 293ms	remaining: 203ms
59:	learn: 19.0965248	total: 298ms	remaining: 199ms
60:	learn: 19.0035954	total: 303ms	remaining: 194ms
61:	learn: 18.8554149	total: 308ms	remaining: 189ms
62:	learn: 18.7095427	total: 313ms	remaining: 184ms
63:	learn: 18.5751494	total: 318ms	remaining: 179ms
64:	learn: 18.4678251	total: 323ms	remaining: 174ms
65:	learn: 18.3500325	total: 329ms	remaining: 169ms
66:	learn: 18.2088983	total: 334ms	remaining: 165ms
67:	learn: 18.0737705	total: 340ms	remaining: 160ms
68:	learn: 17.9325058	total: 344ms	remaining: 155ms
69:	learn: 17.8003911	total: 349ms	remaining: 150ms
70:	learn: 17.7385366	total: 355ms	remaining: 145ms
71:	learn: 17.6106998	total: 360ms	remaining: 140ms
72:	learn: 17.4816270	total: 364ms	remaining: 135ms
73:	learn: 17.4025554	total: 368ms	remaining: 129ms
74:	learn: 17.2902108	total: 372ms	remaining: 124ms
75:	learn: 17.2158048	total: 376ms	remaining: 119ms
76:	learn: 17.1261053	total: 380ms	remaining: 114ms
77:	learn: 17.0308917	total: 384ms	remaining: 108ms
78:	learn: 16.9546705	total: 388ms	remaining: 103ms
79:	learn: 16.8319165	total: 392ms	remaining: 98ms
80:	learn: 16.7687017	total: 396ms	remaining: 92.9ms
81:	learn: 16.6972326	total: 400ms	remaining: 87.8ms
82:	learn: 16.6124580	total: 404ms	remaining: 82.8ms
83:	learn: 16.4999052	total: 408ms	remaining: 77.8ms
84:	learn: 16.4302484	total: 413ms	remaining: 72.8ms
85:	learn: 16.3201363	total: 417ms	remaining: 67.8ms
86:	learn: 16.2534314	total: 421ms	remaining: 62.9ms
87:	learn: 16.1720485	total: 425ms	remaining: 57.9ms
88:	learn: 16.0625751	total: 429ms	remaining: 53ms
89:	learn: 15.9135088	total: 434ms	remaining: 48.2ms
90:	learn: 15.8658863	total: 439ms	remaining: 43.4ms
91:	learn: 15.8066805	total: 444ms	remaining: 38.6ms
92:	learn: 15.7412103	total: 448ms	remaining: 33.8ms
93:	learn: 15.6542776	total: 453ms	remaining: 28.9ms
94:	learn: 15.5760334	total: 458ms	remaining: 24.1ms
95:	learn: 15.5434131	total: 463ms	remaining: 19.3ms
96:	learn: 15.4709561	total: 471ms	remaining: 14.6ms
97:	learn: 15.4449618	total: 478ms	remaining: 9.75ms
98:	learn: 15.3752761	total: 487ms	remaining: 4.92ms
99:	learn: 15.3106595	total: 494ms	remaining: 0us
0:	learn: 46.7142257	total: 4.22ms	remaining: 418ms
1:	learn: 45.7634153	total: 8.17ms	remaining: 400ms
2:	learn: 45.0054253	total: 12.2ms	remaining: 395ms
3:	learn: 44.2120432	total: 16.4ms	remaining: 393ms
4:	learn: 43.3960472	total: 20.2ms	remaining: 384ms
5:	learn: 42.8588120	total: 24.4ms	remaining: 383ms
6:	learn: 41.9533701	total: 28.4ms	remaining: 377ms
7:	learn: 41.2745030	total: 32.7ms	remaining: 376ms
8:	learn: 40.6797495	total: 36.5ms	remaining: 369ms
9:	learn: 39.9899571	total: 40.6ms	remaining: 365ms
10:	learn: 39.4682100	total: 44.3ms	remaining: 359ms
11:	learn: 39.0305595	total: 48.6ms	remaining: 356ms
12:	learn: 38.4200417	total: 53ms	remaining: 355ms
13:	learn: 37.8425194	total: 57.3ms	remaining: 352ms
14:	learn: 37.4203127	total: 61.4ms	remaining: 348ms
15:	learn: 36.9917688	total: 65.4ms	remaining: 343ms
16:	learn: 36.5544138	total: 70.3ms	remaining: 343ms
17:	learn: 36.0727019	total: 75.1ms	remaining: 342ms
18:	learn: 35.4835715	total: 80ms	remaining: 341ms
19:	learn: 34.9865654	total: 84.8ms	remaining: 339ms
20:	learn: 34.6063373	total: 89.8ms	remaining: 338ms
21:	learn: 34.0997289	total: 94.2ms	remaining: 334ms
22:	learn: 33.7313171	total: 99.1ms	remaining: 332ms
23:	learn: 33.3582000	total: 107ms	remaining: 339ms
24:	learn: 32.9432456	total: 114ms	remaining: 342ms
25:	learn: 32.5220888	total: 123ms	remaining: 350ms
26:	learn: 32.2172292	total: 129ms	remaining: 349ms
27:	learn: 31.8972904	total: 136ms	remaining: 350ms
28:	learn: 31.6405350	total: 141ms	remaining: 346ms
29:	learn: 31.4167702	total: 147ms	remaining: 343ms
30:	learn: 30.8541961	total: 149ms	remaining: 331ms
31:	learn: 30.5572111	total: 154ms	remaining: 327ms
32:	learn: 30.1700399	total: 159ms	remaining: 323ms
33:	learn: 29.8537271	total: 165ms	remaining: 320ms
34:	learn: 29.6192540	total: 170ms	remaining: 316ms
35:	learn: 29.3276362	total: 176ms	remaining: 312ms
36:	learn: 28.9985179	total: 181ms	remaining: 308ms
37:	learn: 28.7046880	total: 186ms	remaining: 303ms
38:	learn: 28.4412677	total: 191ms	remaining: 298ms
39:	learn: 28.1277292	total: 197ms	remaining: 295ms
40:	learn: 27.9000750	total: 202ms	remaining: 290ms
41:	learn: 27.5433162	total: 206ms	remaining: 285ms
42:	learn: 27.2493285	total: 210ms	remaining: 279ms
43:	learn: 26.9576632	total: 212ms	remaining: 270ms
44:	learn: 26.6177110	total: 216ms	remaining: 264ms
45:	learn: 26.2812456	total: 220ms	remaining: 259ms
46:	learn: 26.0803859	total: 225ms	remaining: 253ms
47:	learn: 25.9543581	total: 229ms	remaining: 248ms
48:	learn: 25.7951582	total: 233ms	remaining: 242ms
49:	learn: 25.6548184	total: 237ms	remaining: 237ms
50:	learn: 25.4010843	total: 241ms	remaining: 232ms
51:	learn: 24.9773937	total: 245ms	remaining: 226ms
52:	learn: 24.8026156	total: 249ms	remaining: 221ms
53:	learn: 24.5568053	total: 253ms	remaining: 216ms
54:	learn: 24.2281839	total: 258ms	remaining: 211ms
55:	learn: 23.9202795	total: 262ms	remaining: 206ms
56:	learn: 23.7625591	total: 266ms	remaining: 200ms
57:	learn: 23.5429721	total: 270ms	remaining: 196ms
58:	learn: 23.3175893	total: 274ms	remaining: 191ms
59:	learn: 23.2035130	total: 279ms	remaining: 186ms
60:	learn: 23.0232450	total: 283ms	remaining: 181ms
61:	learn: 22.8384958	total: 287ms	remaining: 176ms
62:	learn: 22.6499902	total: 292ms	remaining: 171ms
63:	learn: 22.4577426	total: 297ms	remaining: 167ms
64:	learn: 22.3333158	total: 302ms	remaining: 162ms
65:	learn: 22.2064131	total: 309ms	remaining: 159ms
66:	learn: 22.1434971	total: 317ms	remaining: 156ms
67:	learn: 21.9596519	total: 327ms	remaining: 154ms
68:	learn: 21.8475576	total: 333ms	remaining: 150ms
69:	learn: 21.6954745	total: 348ms	remaining: 149ms
70:	learn: 21.5635976	total: 353ms	remaining: 144ms
71:	learn: 21.4588506	total: 359ms	remaining: 140ms
72:	learn: 21.3527268	total: 364ms	remaining: 135ms
73:	learn: 21.2661288	total: 369ms	remaining: 130ms
74:	learn: 21.1817333	total: 374ms	remaining: 125ms
75:	learn: 21.0527553	total: 379ms	remaining: 120ms
76:	learn: 20.9229021	total: 384ms	remaining: 115ms
77:	learn: 20.7563946	total: 389ms	remaining: 110ms
78:	learn: 20.6569831	total: 394ms	remaining: 105ms
79:	learn: 20.4982663	total: 399ms	remaining: 99.8ms
80:	learn: 20.3185460	total: 405ms	remaining: 95ms
81:	learn: 20.2096241	total: 409ms	remaining: 89.8ms
82:	learn: 20.1274891	total: 413ms	remaining: 84.6ms
83:	learn: 20.0740139	total: 417ms	remaining: 79.5ms
84:	learn: 19.9630699	total: 421ms	remaining: 74.3ms
85:	learn: 19.8753899	total: 425ms	remaining: 69.2ms
86:	learn: 19.6563612	total: 429ms	remaining: 64.2ms
87:	learn: 19.4680232	total: 434ms	remaining: 59.1ms
88:	learn: 19.3503431	total: 437ms	remaining: 54.1ms
89:	learn: 19.2221379	total: 441ms	remaining: 49ms
90:	learn: 19.0732542	total: 446ms	remaining: 44.1ms
91:	learn: 18.9825190	total: 450ms	remaining: 39.1ms
92:	learn: 18.8839009	total: 454ms	remaining: 34.2ms
93:	learn: 18.8012219	total: 458ms	remaining: 29.2ms
94:	learn: 18.7172713	total: 462ms	remaining: 24.3ms
95:	learn: 18.6201170	total: 466ms	remaining: 19.4ms
96:	learn: 18.5318611	total: 471ms	remaining: 14.6ms
97:	learn: 18.3833356	total: 475ms	remaining: 9.7ms
98:	learn: 18.3289700	total: 480ms	remaining: 4.85ms
99:	learn: 18.2227333	total: 485ms	remaining: 0us
0:	learn: 46.3764524	total: 5.76ms	remaining: 570ms
1:	learn: 45.5561269	total: 10.8ms	remaining: 528ms
2:	learn: 44.8811245	total: 15.8ms	remaining: 511ms
3:	learn: 44.0788617	total: 21.2ms	remaining: 510ms
4:	learn: 43.3619790	total: 26.8ms	remaining: 509ms
5:	learn: 42.6912112	total: 31.9ms	remaining: 500ms
6:	learn: 42.2292118	total: 37.3ms	remaining: 495ms
7:	learn: 41.7725191	total: 42.5ms	remaining: 489ms
8:	learn: 41.1676614	total: 47.3ms	remaining: 478ms
9:	learn: 40.5771076	total: 51.9ms	remaining: 467ms
10:	learn: 39.8343757	total: 57.2ms	remaining: 463ms
11:	learn: 39.3761142	total: 62.6ms	remaining: 459ms
12:	learn: 38.5254692	total: 66.7ms	remaining: 447ms
13:	learn: 37.9629555	total: 71ms	remaining: 436ms
14:	learn: 37.4418438	total: 74.6ms	remaining: 423ms
15:	learn: 37.0507283	total: 78.3ms	remaining: 411ms
16:	learn: 36.6264217	total: 82.5ms	remaining: 403ms
17:	learn: 36.1114940	total: 86.8ms	remaining: 395ms
18:	learn: 35.7193862	total: 90.5ms	remaining: 386ms
19:	learn: 35.3301177	total: 94.3ms	remaining: 377ms
20:	learn: 35.0598280	total: 98.4ms	remaining: 370ms
21:	learn: 34.5469736	total: 102ms	remaining: 363ms
22:	learn: 34.2064215	total: 107ms	remaining: 357ms
23:	learn: 33.7280710	total: 110ms	remaining: 350ms
24:	learn: 33.3282940	total: 114ms	remaining: 343ms
25:	learn: 32.8478961	total: 119ms	remaining: 338ms
26:	learn: 32.5722164	total: 122ms	remaining: 331ms
27:	learn: 32.2457019	total: 127ms	remaining: 326ms
28:	learn: 31.9230495	total: 131ms	remaining: 321ms
29:	learn: 31.4311611	total: 135ms	remaining: 315ms
30:	learn: 30.9179052	total: 139ms	remaining: 310ms
31:	learn: 30.6201141	total: 144ms	remaining: 306ms
32:	learn: 30.3421106	total: 149ms	remaining: 302ms
33:	learn: 29.9885373	total: 153ms	remaining: 297ms
34:	learn: 29.7462780	total: 157ms	remaining: 292ms
35:	learn: 29.3607153	total: 162ms	remaining: 288ms
36:	learn: 29.1793078	total: 169ms	remaining: 288ms
37:	learn: 28.9276538	total: 176ms	remaining: 288ms
38:	learn: 28.6903934	total: 183ms	remaining: 287ms
39:	learn: 28.2095033	total: 190ms	remaining: 285ms
40:	learn: 27.7990608	total: 198ms	remaining: 284ms
41:	learn: 27.5406632	total: 203ms	remaining: 280ms
42:	learn: 27.2575376	total: 208ms	remaining: 276ms
43:	learn: 26.9741707	total: 214ms	remaining: 272ms
44:	learn: 26.6606899	total: 219ms	remaining: 268ms
45:	learn: 26.4015833	total: 224ms	remaining: 263ms
46:	learn: 26.1828993	total: 229ms	remaining: 258ms
47:	learn: 26.0233709	total: 232ms	remaining: 252ms
48:	learn: 25.9300399	total: 237ms	remaining: 247ms
49:	learn: 25.5861489	total: 242ms	remaining: 242ms
50:	learn: 25.4322012	total: 248ms	remaining: 238ms
51:	learn: 25.1595644	total: 252ms	remaining: 233ms
52:	learn: 24.9955303	total: 257ms	remaining: 228ms
53:	learn: 24.7273966	total: 263ms	remaining: 224ms
54:	learn: 24.5747978	total: 267ms	remaining: 219ms
55:	learn: 24.3807977	total: 271ms	remaining: 213ms
56:	learn: 24.1689569	total: 275ms	remaining: 208ms
57:	learn: 23.9898221	total: 279ms	remaining: 202ms
58:	learn: 23.7566414	total: 283ms	remaining: 197ms
59:	learn: 23.6641165	total: 287ms	remaining: 192ms
60:	learn: 23.5658066	total: 291ms	remaining: 186ms
61:	learn: 23.4338851	total: 296ms	remaining: 181ms
62:	learn: 23.2408837	total: 300ms	remaining: 176ms
63:	learn: 23.0642038	total: 304ms	remaining: 171ms
64:	learn: 22.9032045	total: 308ms	remaining: 166ms
65:	learn: 22.7736138	total: 313ms	remaining: 161ms
66:	learn: 22.6836443	total: 318ms	remaining: 156ms
67:	learn: 22.5983654	total: 322ms	remaining: 152ms
68:	learn: 22.4419813	total: 327ms	remaining: 147ms
69:	learn: 22.2863339	total: 331ms	remaining: 142ms
70:	learn: 22.1792943	total: 336ms	remaining: 137ms
71:	learn: 22.1130574	total: 341ms	remaining: 133ms
72:	learn: 21.9858161	total: 346ms	remaining: 128ms
73:	learn: 21.8577784	total: 350ms	remaining: 123ms
74:	learn: 21.7845222	total: 355ms	remaining: 118ms
75:	learn: 21.6831390	total: 360ms	remaining: 114ms
76:	learn: 21.6292521	total: 364ms	remaining: 109ms
77:	learn: 21.5789330	total: 377ms	remaining: 106ms
78:	learn: 21.5420942	total: 385ms	remaining: 102ms
79:	learn: 21.4280939	total: 393ms	remaining: 98.2ms
80:	learn: 21.3641165	total: 399ms	remaining: 93.6ms
81:	learn: 21.2734814	total: 405ms	remaining: 88.9ms
82:	learn: 21.2220323	total: 410ms	remaining: 84.1ms
83:	learn: 21.0625792	total: 417ms	remaining: 79.4ms
84:	learn: 20.9488320	total: 422ms	remaining: 74.5ms
85:	learn: 20.8504255	total: 427ms	remaining: 69.6ms
86:	learn: 20.7848510	total: 433ms	remaining: 64.7ms
87:	learn: 20.7247442	total: 438ms	remaining: 59.8ms
88:	learn: 20.5698590	total: 443ms	remaining: 54.8ms
89:	learn: 20.4067620	total: 448ms	remaining: 49.8ms
90:	learn: 20.3062482	total: 453ms	remaining: 44.9ms
91:	learn: 20.2029696	total: 459ms	remaining: 39.9ms
92:	learn: 20.1384849	total: 464ms	remaining: 34.9ms
93:	learn: 20.0260709	total: 468ms	remaining: 29.9ms
94:	learn: 19.9122100	total: 472ms	remaining: 24.9ms
95:	learn: 19.8648487	total: 477ms	remaining: 19.9ms
96:	learn: 19.8207072	total: 480ms	remaining: 14.9ms
97:	learn: 19.7261189	total: 485ms	remaining: 9.89ms
98:	learn: 19.7042438	total: 489ms	remaining: 4.94ms
99:	learn: 19.6546645	total: 493ms	remaining: 0us
0:	learn: 47.0239288	total: 4.41ms	remaining: 436ms
1:	learn: 46.2253829	total: 8.61ms	remaining: 422ms
2:	learn: 45.5580301	total: 13.7ms	remaining: 442ms
3:	learn: 44.7273237	total: 18.1ms	remaining: 433ms
4:	learn: 43.8867421	total: 22.6ms	remaining: 429ms
5:	learn: 43.3615911	total: 26.8ms	remaining: 420ms
6:	learn: 42.8548390	total: 31.5ms	remaining: 418ms
7:	learn: 42.1606758	total: 35.6ms	remaining: 409ms
8:	learn: 41.6625870	total: 39.7ms	remaining: 402ms
9:	learn: 40.9497092	total: 44ms	remaining: 396ms
10:	learn: 40.1886318	total: 51.8ms	remaining: 419ms
11:	learn: 39.7456423	total: 59.2ms	remaining: 434ms
12:	learn: 39.1171373	total: 68.5ms	remaining: 458ms
13:	learn: 38.5451069	total: 74.5ms	remaining: 457ms
14:	learn: 38.0155834	total: 81ms	remaining: 459ms
15:	learn: 37.5631354	total: 86.6ms	remaining: 455ms
16:	learn: 37.1030023	total: 91.4ms	remaining: 446ms
17:	learn: 36.4563029	total: 96.3ms	remaining: 439ms
18:	learn: 36.0160976	total: 101ms	remaining: 433ms
19:	learn: 35.5079827	total: 107ms	remaining: 427ms
20:	learn: 35.2111885	total: 112ms	remaining: 420ms
21:	learn: 34.9397465	total: 117ms	remaining: 414ms
22:	learn: 34.5270048	total: 122ms	remaining: 408ms
23:	learn: 34.0169260	total: 127ms	remaining: 402ms
24:	learn: 33.7454892	total: 131ms	remaining: 394ms
25:	learn: 33.2648157	total: 136ms	remaining: 387ms
26:	learn: 32.8899427	total: 141ms	remaining: 380ms
27:	learn: 32.6185050	total: 146ms	remaining: 375ms
28:	learn: 32.3528531	total: 152ms	remaining: 371ms
29:	learn: 32.0859923	total: 156ms	remaining: 365ms
30:	learn: 31.6511144	total: 160ms	remaining: 357ms
31:	learn: 31.2571765	total: 165ms	remaining: 350ms
32:	learn: 30.9770049	total: 169ms	remaining: 343ms
33:	learn: 30.6084872	total: 173ms	remaining: 335ms
34:	learn: 30.3448632	total: 176ms	remaining: 328ms
35:	learn: 30.0360942	total: 181ms	remaining: 321ms
36:	learn: 29.6648968	total: 184ms	remaining: 314ms
37:	learn: 29.3165114	total: 189ms	remaining: 308ms
38:	learn: 29.0829198	total: 193ms	remaining: 302ms
39:	learn: 28.7752064	total: 197ms	remaining: 296ms
40:	learn: 28.3622191	total: 201ms	remaining: 289ms
41:	learn: 28.1346631	total: 205ms	remaining: 283ms
42:	learn: 27.9585719	total: 209ms	remaining: 277ms
43:	learn: 27.6565566	total: 213ms	remaining: 272ms
44:	learn: 27.3616172	total: 218ms	remaining: 266ms
45:	learn: 27.0658637	total: 222ms	remaining: 261ms
46:	learn: 26.8660382	total: 226ms	remaining: 255ms
47:	learn: 26.6536078	total: 230ms	remaining: 250ms
48:	learn: 26.3524440	total: 235ms	remaining: 245ms
49:	learn: 26.1595277	total: 240ms	remaining: 240ms
50:	learn: 25.9273523	total: 244ms	remaining: 235ms
51:	learn: 25.7195580	total: 249ms	remaining: 229ms
52:	learn: 25.5730225	total: 253ms	remaining: 224ms
53:	learn: 25.3455276	total: 257ms	remaining: 219ms
54:	learn: 25.2289675	total: 263ms	remaining: 215ms
55:	learn: 25.0133024	total: 271ms	remaining: 213ms
56:	learn: 24.8406714	total: 279ms	remaining: 211ms
57:	learn: 24.6367857	total: 288ms	remaining: 208ms
58:	learn: 24.5338177	total: 296ms	remaining: 206ms
59:	learn: 24.3799964	total: 301ms	remaining: 201ms
60:	learn: 24.1447492	total: 306ms	remaining: 196ms
61:	learn: 23.9880495	total: 312ms	remaining: 191ms
62:	learn: 23.7140630	total: 317ms	remaining: 186ms
63:	learn: 23.5003791	total: 322ms	remaining: 181ms
64:	learn: 23.3207645	total: 327ms	remaining: 176ms
65:	learn: 23.1958356	total: 333ms	remaining: 171ms
66:	learn: 23.0471302	total: 338ms	remaining: 166ms
67:	learn: 22.8977183	total: 343ms	remaining: 161ms
68:	learn: 22.7187400	total: 348ms	remaining: 156ms
69:	learn: 22.6523405	total: 352ms	remaining: 151ms
70:	learn: 22.4767453	total: 357ms	remaining: 146ms
71:	learn: 22.3243677	total: 363ms	remaining: 141ms
72:	learn: 22.2133096	total: 368ms	remaining: 136ms
73:	learn: 22.1151713	total: 372ms	remaining: 131ms
74:	learn: 22.0296666	total: 376ms	remaining: 125ms
75:	learn: 21.9195980	total: 380ms	remaining: 120ms
76:	learn: 21.8401730	total: 383ms	remaining: 114ms
77:	learn: 21.8079797	total: 387ms	remaining: 109ms
78:	learn: 21.7274109	total: 390ms	remaining: 104ms
79:	learn: 21.6663032	total: 395ms	remaining: 98.7ms
80:	learn: 21.5633117	total: 399ms	remaining: 93.6ms
81:	learn: 21.4542467	total: 403ms	remaining: 88.6ms
82:	learn: 21.3177957	total: 407ms	remaining: 83.4ms
83:	learn: 21.1289167	total: 412ms	remaining: 78.4ms
84:	learn: 21.0297368	total: 416ms	remaining: 73.4ms
85:	learn: 20.9089564	total: 420ms	remaining: 68.3ms
86:	learn: 20.7653988	total: 424ms	remaining: 63.3ms
87:	learn: 20.6521894	total: 428ms	remaining: 58.4ms
88:	learn: 20.5193021	total: 433ms	remaining: 53.5ms
89:	learn: 20.4361620	total: 437ms	remaining: 48.6ms
90:	learn: 20.3546710	total: 441ms	remaining: 43.6ms
91:	learn: 20.2513296	total: 446ms	remaining: 38.8ms
92:	learn: 20.1605550	total: 450ms	remaining: 33.9ms
93:	learn: 20.0515942	total: 455ms	remaining: 29ms
94:	learn: 19.9800764	total: 459ms	remaining: 24.1ms
95:	learn: 19.8996532	total: 467ms	remaining: 19.5ms
96:	learn: 19.8450910	total: 474ms	remaining: 14.7ms
97:	learn: 19.7887346	total: 484ms	remaining: 9.87ms
98:	learn: 19.7230872	total: 489ms	remaining: 4.94ms
99:	learn: 19.6328825	total: 496ms	remaining: 0us
0:	learn: 27.5585353	total: 5.33ms	remaining: 528ms
1:	learn: 27.1656995	total: 10.4ms	remaining: 511ms
2:	learn: 26.8590175	total: 15.1ms	remaining: 490ms
3:	learn: 26.5818406	total: 18.9ms	remaining: 455ms
4:	learn: 26.1148663	total: 22.8ms	remaining: 432ms
5:	learn: 25.7690484	total: 26.7ms	remaining: 418ms
6:	learn: 25.3489206	total: 30.5ms	remaining: 405ms
7:	learn: 24.9542406	total: 34.6ms	remaining: 398ms
8:	learn: 24.6777517	total: 38.7ms	remaining: 391ms
9:	learn: 24.3242344	total: 42.7ms	remaining: 385ms
10:	learn: 24.0383073	total: 46.8ms	remaining: 378ms
11:	learn: 23.7383420	total: 50.8ms	remaining: 372ms
12:	learn: 23.3461670	total: 54.7ms	remaining: 366ms
13:	learn: 23.0928636	total: 58.5ms	remaining: 360ms
14:	learn: 22.8770414	total: 62.6ms	remaining: 355ms
15:	learn: 22.6323214	total: 66.3ms	remaining: 348ms
16:	learn: 22.3597072	total: 70.8ms	remaining: 346ms
17:	learn: 22.1079813	total: 75ms	remaining: 342ms
18:	learn: 21.8421199	total: 79.1ms	remaining: 337ms
19:	learn: 21.6576508	total: 83ms	remaining: 332ms
20:	learn: 21.4301268	total: 87.7ms	remaining: 330ms
21:	learn: 21.2287388	total: 92.6ms	remaining: 328ms
22:	learn: 21.0553872	total: 97.2ms	remaining: 325ms
23:	learn: 20.8977091	total: 102ms	remaining: 323ms
24:	learn: 20.6619051	total: 107ms	remaining: 320ms
25:	learn: 20.5040955	total: 111ms	remaining: 317ms
26:	learn: 20.3181195	total: 116ms	remaining: 314ms
27:	learn: 20.0869436	total: 121ms	remaining: 311ms
28:	learn: 19.9375985	total: 129ms	remaining: 315ms
29:	learn: 19.8247516	total: 137ms	remaining: 319ms
30:	learn: 19.6261697	total: 153ms	remaining: 340ms
31:	learn: 19.4547236	total: 158ms	remaining: 335ms
32:	learn: 19.3157092	total: 162ms	remaining: 330ms
33:	learn: 19.1561419	total: 167ms	remaining: 325ms
34:	learn: 19.0453620	total: 173ms	remaining: 320ms
35:	learn: 18.8738574	total: 178ms	remaining: 316ms
36:	learn: 18.7072907	total: 183ms	remaining: 311ms
37:	learn: 18.5877943	total: 188ms	remaining: 307ms
38:	learn: 18.4436380	total: 195ms	remaining: 305ms
39:	learn: 18.3463356	total: 200ms	remaining: 300ms
40:	learn: 18.2008059	total: 205ms	remaining: 295ms
41:	learn: 18.0582079	total: 210ms	remaining: 290ms
42:	learn: 17.8891982	total: 215ms	remaining: 286ms
43:	learn: 17.7332246	total: 221ms	remaining: 281ms
44:	learn: 17.6206421	total: 226ms	remaining: 276ms
45:	learn: 17.4982800	total: 230ms	remaining: 270ms
46:	learn: 17.3970150	total: 234ms	remaining: 264ms
47:	learn: 17.3058203	total: 239ms	remaining: 258ms
48:	learn: 17.1789256	total: 243ms	remaining: 253ms
49:	learn: 17.0916229	total: 247ms	remaining: 247ms
50:	learn: 16.9859820	total: 252ms	remaining: 242ms
51:	learn: 16.8995582	total: 256ms	remaining: 236ms
52:	learn: 16.8137014	total: 260ms	remaining: 230ms
53:	learn: 16.7021451	total: 264ms	remaining: 225ms
54:	learn: 16.5895582	total: 268ms	remaining: 219ms
55:	learn: 16.5015639	total: 273ms	remaining: 214ms
56:	learn: 16.4356637	total: 278ms	remaining: 209ms
57:	learn: 16.3514525	total: 282ms	remaining: 204ms
58:	learn: 16.2401369	total: 287ms	remaining: 199ms
59:	learn: 16.1293223	total: 291ms	remaining: 194ms
60:	learn: 16.0271167	total: 296ms	remaining: 189ms
61:	learn: 15.9126257	total: 301ms	remaining: 184ms
62:	learn: 15.8391096	total: 306ms	remaining: 180ms
63:	learn: 15.7441773	total: 311ms	remaining: 175ms
64:	learn: 15.6885195	total: 316ms	remaining: 170ms
65:	learn: 15.6052039	total: 321ms	remaining: 165ms
66:	learn: 15.5074202	total: 329ms	remaining: 162ms
67:	learn: 15.4054338	total: 336ms	remaining: 158ms
68:	learn: 15.2885714	total: 346ms	remaining: 156ms
69:	learn: 15.2157472	total: 352ms	remaining: 151ms
70:	learn: 15.1031554	total: 358ms	remaining: 146ms
71:	learn: 15.0237470	total: 364ms	remaining: 141ms
72:	learn: 14.9756825	total: 369ms	remaining: 136ms
73:	learn: 14.8840596	total: 374ms	remaining: 131ms
74:	learn: 14.8077061	total: 380ms	remaining: 127ms
75:	learn: 14.7444437	total: 385ms	remaining: 122ms
76:	learn: 14.6751720	total: 390ms	remaining: 117ms
77:	learn: 14.5830333	total: 396ms	remaining: 112ms
78:	learn: 14.5241206	total: 401ms	remaining: 107ms
79:	learn: 14.4892731	total: 406ms	remaining: 102ms
80:	learn: 14.4256605	total: 421ms	remaining: 98.7ms
81:	learn: 14.3666860	total: 426ms	remaining: 93.6ms
82:	learn: 14.2938372	total: 431ms	remaining: 88.4ms
83:	learn: 14.2161532	total: 436ms	remaining: 83ms
84:	learn: 14.1582910	total: 440ms	remaining: 77.6ms
85:	learn: 14.1029153	total: 444ms	remaining: 72.3ms
86:	learn: 14.0475835	total: 448ms	remaining: 67ms
87:	learn: 13.9892661	total: 452ms	remaining: 61.7ms
88:	learn: 13.9481628	total: 457ms	remaining: 56.5ms
89:	learn: 13.8483991	total: 461ms	remaining: 51.2ms
90:	learn: 13.7775614	total: 465ms	remaining: 46ms
91:	learn: 13.7304585	total: 469ms	remaining: 40.8ms
92:	learn: 13.6783381	total: 473ms	remaining: 35.6ms
93:	learn: 13.6356964	total: 477ms	remaining: 30.5ms
94:	learn: 13.5924371	total: 481ms	remaining: 25.3ms
95:	learn: 13.5400746	total: 485ms	remaining: 20.2ms
96:	learn: 13.4897333	total: 489ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 493ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 513ms	remaining: 5.19ms
99:	learn: 13.3082371	total: 518ms	remaining: 0us
0:	learn: 43.0395283	total: 5.55ms	remaining: 549ms
1:	learn: 42.1130223	total: 10.9ms	remaining: 534ms
2:	learn: 41.1753409	total: 16.2ms	remaining: 524ms
3:	learn: 40.3637444	total: 22ms	remaining: 528ms
4:	learn: 39.6508088	total: 27.2ms	remaining: 518ms
5:	learn: 38.7217934	total: 32.3ms	remaining: 506ms
6:	learn: 37.8538055	total: 37.6ms	remaining: 499ms
7:	learn: 36.9793574	total: 42.5ms	remaining: 489ms
8:	learn: 36.3076984	total: 47.9ms	remaining: 484ms
9:	learn: 35.6673160	total: 53.7ms	remaining: 483ms
10:	learn: 34.8889800	total: 58.7ms	remaining: 475ms
11:	learn: 34.1675517	total: 62.6ms	remaining: 459ms
12:	learn: 33.6779564	total: 66.9ms	remaining: 448ms
13:	learn: 33.0710039	total: 71.3ms	remaining: 438ms
14:	learn: 32.4966674	total: 75.1ms	remaining: 426ms
15:	learn: 31.9492856	total: 79.3ms	remaining: 416ms
16:	learn: 31.5108129	total: 83.2ms	remaining: 406ms
17:	learn: 30.9804023	total: 87.3ms	remaining: 398ms
18:	learn: 30.4169089	total: 91.4ms	remaining: 389ms
19:	learn: 29.8930375	total: 95.5ms	remaining: 382ms
20:	learn: 29.3974421	total: 99.6ms	remaining: 375ms
21:	learn: 28.8792307	total: 104ms	remaining: 368ms
22:	learn: 28.3894474	total: 108ms	remaining: 361ms
23:	learn: 27.9921276	total: 112ms	remaining: 355ms
24:	learn: 27.6158887	total: 116ms	remaining: 349ms
25:	learn: 27.2866950	total: 120ms	remaining: 342ms
26:	learn: 26.8770708	total: 125ms	remaining: 337ms
27:	learn: 26.6233005	total: 129ms	remaining: 331ms
28:	learn: 26.2921934	total: 133ms	remaining: 327ms
29:	learn: 25.9156920	total: 139ms	remaining: 323ms
30:	learn: 25.5311106	total: 140ms	remaining: 313ms
31:	learn: 25.2178997	total: 145ms	remaining: 309ms
32:	learn: 24.8572196	total: 150ms	remaining: 305ms
33:	learn: 24.5849710	total: 155ms	remaining: 300ms
34:	learn: 24.2209190	total: 160ms	remaining: 296ms
35:	learn: 23.8708250	total: 164ms	remaining: 292ms
36:	learn: 23.5325279	total: 183ms	remaining: 311ms
37:	learn: 23.2116148	total: 193ms	remaining: 315ms
38:	learn: 22.9696787	total: 202ms	remaining: 315ms
39:	learn: 22.7936783	total: 207ms	remaining: 311ms
40:	learn: 22.6228847	total: 213ms	remaining: 307ms
41:	learn: 22.3691527	total: 219ms	remaining: 302ms
42:	learn: 22.1002173	total: 224ms	remaining: 297ms
43:	learn: 21.9157268	total: 229ms	remaining: 292ms
44:	learn: 21.7229102	total: 234ms	remaining: 287ms
45:	learn: 21.4642005	total: 240ms	remaining: 281ms
46:	learn: 21.3029442	total: 245ms	remaining: 276ms
47:	learn: 21.1469792	total: 249ms	remaining: 270ms
48:	learn: 20.9458235	total: 254ms	remaining: 264ms
49:	learn: 20.7335242	total: 259ms	remaining: 259ms
50:	learn: 20.5440269	total: 263ms	remaining: 253ms
51:	learn: 20.3661449	total: 268ms	remaining: 248ms
52:	learn: 20.2158134	total: 274ms	remaining: 243ms
53:	learn: 19.9934873	total: 278ms	remaining: 237ms
54:	learn: 19.7879739	total: 282ms	remaining: 231ms
55:	learn: 19.6630460	total: 287ms	remaining: 225ms
56:	learn: 19.5152729	total: 291ms	remaining: 219ms
57:	learn: 19.3581128	total: 294ms	remaining: 213ms
58:	learn: 19.2209303	total: 299ms	remaining: 208ms
59:	learn: 19.0965248	total: 303ms	remaining: 202ms
60:	learn: 19.0035954	total: 307ms	remaining: 196ms
61:	learn: 18.8554149	total: 311ms	remaining: 190ms
62:	learn: 18.7095427	total: 315ms	remaining: 185ms
63:	learn: 18.5751494	total: 319ms	remaining: 180ms
64:	learn: 18.4678251	total: 323ms	remaining: 174ms
65:	learn: 18.3500325	total: 327ms	remaining: 169ms
66:	learn: 18.2088983	total: 332ms	remaining: 163ms
67:	learn: 18.0737705	total: 337ms	remaining: 158ms
68:	learn: 17.9325058	total: 341ms	remaining: 153ms
69:	learn: 17.8003911	total: 346ms	remaining: 148ms
70:	learn: 17.7385366	total: 350ms	remaining: 143ms
71:	learn: 17.6106998	total: 355ms	remaining: 138ms
72:	learn: 17.4816270	total: 360ms	remaining: 133ms
73:	learn: 17.4025554	total: 365ms	remaining: 128ms
74:	learn: 17.2902108	total: 373ms	remaining: 124ms
75:	learn: 17.2158048	total: 381ms	remaining: 120ms
76:	learn: 17.1261053	total: 390ms	remaining: 116ms
77:	learn: 17.0308917	total: 396ms	remaining: 112ms
78:	learn: 16.9546705	total: 403ms	remaining: 107ms
79:	learn: 16.8319165	total: 408ms	remaining: 102ms
80:	learn: 16.7687017	total: 413ms	remaining: 97ms
81:	learn: 16.6972326	total: 419ms	remaining: 91.9ms
82:	learn: 16.6124580	total: 424ms	remaining: 86.9ms
83:	learn: 16.4999052	total: 429ms	remaining: 81.8ms
84:	learn: 16.4302484	total: 434ms	remaining: 76.6ms
85:	learn: 16.3201363	total: 440ms	remaining: 71.6ms
86:	learn: 16.2534314	total: 445ms	remaining: 66.4ms
87:	learn: 16.1720485	total: 450ms	remaining: 61.3ms
88:	learn: 16.0625751	total: 455ms	remaining: 56.2ms
89:	learn: 15.9135088	total: 460ms	remaining: 51.1ms
90:	learn: 15.8658863	total: 465ms	remaining: 46ms
91:	learn: 15.8066805	total: 471ms	remaining: 40.9ms
92:	learn: 15.7412103	total: 475ms	remaining: 35.7ms
93:	learn: 15.6542776	total: 479ms	remaining: 30.6ms
94:	learn: 15.5760334	total: 483ms	remaining: 25.4ms
95:	learn: 15.5434131	total: 487ms	remaining: 20.3ms
96:	learn: 15.4709561	total: 492ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 496ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 500ms	remaining: 5.05ms
99:	learn: 15.3106595	total: 504ms	remaining: 0us
0:	learn: 46.7142257	total: 4.88ms	remaining: 483ms
1:	learn: 45.7634153	total: 9.39ms	remaining: 460ms
2:	learn: 45.0054253	total: 14ms	remaining: 451ms
3:	learn: 44.2120432	total: 18.9ms	remaining: 455ms
4:	learn: 43.3960472	total: 27.4ms	remaining: 521ms
5:	learn: 42.8588120	total: 34.8ms	remaining: 545ms
6:	learn: 41.9533701	total: 43ms	remaining: 571ms
7:	learn: 41.2745030	total: 51ms	remaining: 587ms
8:	learn: 40.6797495	total: 56.1ms	remaining: 567ms
9:	learn: 39.9899571	total: 61.2ms	remaining: 551ms
10:	learn: 39.4682100	total: 66.6ms	remaining: 539ms
11:	learn: 39.0305595	total: 71.6ms	remaining: 525ms
12:	learn: 38.4200417	total: 76.6ms	remaining: 512ms
13:	learn: 37.8425194	total: 81.7ms	remaining: 502ms
14:	learn: 37.4203127	total: 87.1ms	remaining: 494ms
15:	learn: 36.9917688	total: 92ms	remaining: 483ms
16:	learn: 36.5544138	total: 97.4ms	remaining: 476ms
17:	learn: 36.0727019	total: 103ms	remaining: 467ms
18:	learn: 35.4835715	total: 107ms	remaining: 457ms
19:	learn: 34.9865654	total: 112ms	remaining: 448ms
20:	learn: 34.6063373	total: 118ms	remaining: 443ms
21:	learn: 34.0997289	total: 123ms	remaining: 435ms
22:	learn: 33.7313171	total: 127ms	remaining: 425ms
23:	learn: 33.3582000	total: 132ms	remaining: 417ms
24:	learn: 32.9432456	total: 136ms	remaining: 408ms
25:	learn: 32.5220888	total: 140ms	remaining: 399ms
26:	learn: 32.2172292	total: 144ms	remaining: 390ms
27:	learn: 31.8972904	total: 148ms	remaining: 381ms
28:	learn: 31.6405350	total: 153ms	remaining: 374ms
29:	learn: 31.4167702	total: 157ms	remaining: 365ms
30:	learn: 30.8541961	total: 159ms	remaining: 353ms
31:	learn: 30.5572111	total: 164ms	remaining: 348ms
32:	learn: 30.1700399	total: 169ms	remaining: 343ms
33:	learn: 29.8537271	total: 173ms	remaining: 337ms
34:	learn: 29.6192540	total: 178ms	remaining: 330ms
35:	learn: 29.3276362	total: 183ms	remaining: 325ms
36:	learn: 28.9985179	total: 187ms	remaining: 319ms
37:	learn: 28.7046880	total: 192ms	remaining: 313ms
38:	learn: 28.4412677	total: 196ms	remaining: 307ms
39:	learn: 28.1277292	total: 201ms	remaining: 301ms
40:	learn: 27.9000750	total: 206ms	remaining: 296ms
41:	learn: 27.5433162	total: 210ms	remaining: 290ms
42:	learn: 27.2493285	total: 214ms	remaining: 284ms
43:	learn: 26.9576632	total: 216ms	remaining: 275ms
44:	learn: 26.6177110	total: 221ms	remaining: 270ms
45:	learn: 26.2812456	total: 226ms	remaining: 265ms
46:	learn: 26.0803859	total: 230ms	remaining: 259ms
47:	learn: 25.9543581	total: 235ms	remaining: 254ms
48:	learn: 25.7951582	total: 240ms	remaining: 249ms
49:	learn: 25.6548184	total: 244ms	remaining: 244ms
50:	learn: 25.4010843	total: 249ms	remaining: 239ms
51:	learn: 24.9773937	total: 256ms	remaining: 236ms
52:	learn: 24.8026156	total: 264ms	remaining: 234ms
53:	learn: 24.5568053	total: 271ms	remaining: 231ms
54:	learn: 24.2281839	total: 278ms	remaining: 228ms
55:	learn: 23.9202795	total: 286ms	remaining: 225ms
56:	learn: 23.7625591	total: 291ms	remaining: 220ms
57:	learn: 23.5429721	total: 296ms	remaining: 215ms
58:	learn: 23.3175893	total: 301ms	remaining: 210ms
59:	learn: 23.2035130	total: 307ms	remaining: 204ms
60:	learn: 23.0232450	total: 312ms	remaining: 199ms
61:	learn: 22.8384958	total: 317ms	remaining: 194ms
62:	learn: 22.6499902	total: 322ms	remaining: 189ms
63:	learn: 22.4577426	total: 327ms	remaining: 184ms
64:	learn: 22.3333158	total: 332ms	remaining: 179ms
65:	learn: 22.2064131	total: 337ms	remaining: 174ms
66:	learn: 22.1434971	total: 342ms	remaining: 169ms
67:	learn: 21.9596519	total: 347ms	remaining: 163ms
68:	learn: 21.8475576	total: 353ms	remaining: 158ms
69:	learn: 21.6954745	total: 358ms	remaining: 153ms
70:	learn: 21.5635976	total: 362ms	remaining: 148ms
71:	learn: 21.4588506	total: 366ms	remaining: 142ms
72:	learn: 21.3527268	total: 370ms	remaining: 137ms
73:	learn: 21.2661288	total: 374ms	remaining: 132ms
74:	learn: 21.1817333	total: 378ms	remaining: 126ms
75:	learn: 21.0527553	total: 382ms	remaining: 121ms
76:	learn: 20.9229021	total: 386ms	remaining: 115ms
77:	learn: 20.7563946	total: 390ms	remaining: 110ms
78:	learn: 20.6569831	total: 394ms	remaining: 105ms
79:	learn: 20.4982663	total: 399ms	remaining: 99.7ms
80:	learn: 20.3185460	total: 403ms	remaining: 94.4ms
81:	learn: 20.2096241	total: 407ms	remaining: 89.3ms
82:	learn: 20.1274891	total: 411ms	remaining: 84.1ms
83:	learn: 20.0740139	total: 415ms	remaining: 79.1ms
84:	learn: 19.9630699	total: 420ms	remaining: 74.1ms
85:	learn: 19.8753899	total: 424ms	remaining: 69.1ms
86:	learn: 19.6563612	total: 429ms	remaining: 64.1ms
87:	learn: 19.4680232	total: 433ms	remaining: 59.1ms
88:	learn: 19.3503431	total: 438ms	remaining: 54.1ms
89:	learn: 19.2221379	total: 442ms	remaining: 49.1ms
90:	learn: 19.0732542	total: 447ms	remaining: 44.2ms
91:	learn: 18.9825190	total: 455ms	remaining: 39.6ms
92:	learn: 18.8839009	total: 462ms	remaining: 34.8ms
93:	learn: 18.8012219	total: 470ms	remaining: 30ms
94:	learn: 18.7172713	total: 477ms	remaining: 25.1ms
95:	learn: 18.6201170	total: 482ms	remaining: 20.1ms
96:	learn: 18.5318611	total: 487ms	remaining: 15.1ms
97:	learn: 18.3833356	total: 492ms	remaining: 10ms
98:	learn: 18.3289700	total: 497ms	remaining: 5.03ms
99:	learn: 18.2227333	total: 503ms	remaining: 0us
0:	learn: 46.3764524	total: 4.58ms	remaining: 453ms
1:	learn: 45.5561269	total: 8.76ms	remaining: 429ms
2:	learn: 44.8811245	total: 12.5ms	remaining: 404ms
3:	learn: 44.0788617	total: 16.2ms	remaining: 388ms
4:	learn: 43.3619790	total: 20.2ms	remaining: 383ms
5:	learn: 42.6912112	total: 24.3ms	remaining: 380ms
6:	learn: 42.2292118	total: 28.3ms	remaining: 376ms
7:	learn: 41.7725191	total: 32.3ms	remaining: 371ms
8:	learn: 41.1676614	total: 36.4ms	remaining: 368ms
9:	learn: 40.5771076	total: 40.4ms	remaining: 364ms
10:	learn: 39.8343757	total: 44.5ms	remaining: 360ms
11:	learn: 39.3761142	total: 48.7ms	remaining: 357ms
12:	learn: 38.5254692	total: 52.9ms	remaining: 354ms
13:	learn: 37.9629555	total: 57.1ms	remaining: 351ms
14:	learn: 37.4418438	total: 61ms	remaining: 346ms
15:	learn: 37.0507283	total: 65.2ms	remaining: 342ms
16:	learn: 36.6264217	total: 69.4ms	remaining: 339ms
17:	learn: 36.1114940	total: 74ms	remaining: 337ms
18:	learn: 35.7193862	total: 78.6ms	remaining: 335ms
19:	learn: 35.3301177	total: 83.1ms	remaining: 333ms
20:	learn: 35.0598280	total: 87.2ms	remaining: 328ms
21:	learn: 34.5469736	total: 91.6ms	remaining: 325ms
22:	learn: 34.2064215	total: 96.2ms	remaining: 322ms
23:	learn: 33.7280710	total: 102ms	remaining: 324ms
24:	learn: 33.3282940	total: 111ms	remaining: 333ms
25:	learn: 32.8478961	total: 120ms	remaining: 341ms
26:	learn: 32.5722164	total: 127ms	remaining: 344ms
27:	learn: 32.2457019	total: 135ms	remaining: 348ms
28:	learn: 31.9230495	total: 141ms	remaining: 344ms
29:	learn: 31.4311611	total: 146ms	remaining: 341ms
30:	learn: 30.9179052	total: 151ms	remaining: 336ms
31:	learn: 30.6201141	total: 156ms	remaining: 332ms
32:	learn: 30.3421106	total: 162ms	remaining: 329ms
33:	learn: 29.9885373	total: 167ms	remaining: 324ms
34:	learn: 29.7462780	total: 172ms	remaining: 319ms
35:	learn: 29.3607153	total: 177ms	remaining: 315ms
36:	learn: 29.1793078	total: 183ms	remaining: 312ms
37:	learn: 28.9276538	total: 189ms	remaining: 308ms
38:	learn: 28.6903934	total: 194ms	remaining: 303ms
39:	learn: 28.2095033	total: 200ms	remaining: 300ms
40:	learn: 27.7990608	total: 205ms	remaining: 295ms
41:	learn: 27.5406632	total: 210ms	remaining: 290ms
42:	learn: 27.2575376	total: 214ms	remaining: 283ms
43:	learn: 26.9741707	total: 218ms	remaining: 278ms
44:	learn: 26.6606899	total: 222ms	remaining: 272ms
45:	learn: 26.4015833	total: 226ms	remaining: 266ms
46:	learn: 26.1828993	total: 230ms	remaining: 259ms
47:	learn: 26.0233709	total: 233ms	remaining: 252ms
48:	learn: 25.9300399	total: 237ms	remaining: 246ms
49:	learn: 25.5861489	total: 240ms	remaining: 240ms
50:	learn: 25.4322012	total: 244ms	remaining: 235ms
51:	learn: 25.1595644	total: 249ms	remaining: 230ms
52:	learn: 24.9955303	total: 252ms	remaining: 224ms
53:	learn: 24.7273966	total: 256ms	remaining: 218ms
54:	learn: 24.5747978	total: 260ms	remaining: 213ms
55:	learn: 24.3807977	total: 264ms	remaining: 208ms
56:	learn: 24.1689569	total: 269ms	remaining: 203ms
57:	learn: 23.9898221	total: 274ms	remaining: 198ms
58:	learn: 23.7566414	total: 278ms	remaining: 193ms
59:	learn: 23.6641165	total: 283ms	remaining: 188ms
60:	learn: 23.5658066	total: 287ms	remaining: 183ms
61:	learn: 23.4338851	total: 291ms	remaining: 178ms
62:	learn: 23.2408837	total: 296ms	remaining: 174ms
63:	learn: 23.0642038	total: 301ms	remaining: 169ms
64:	learn: 22.9032045	total: 309ms	remaining: 166ms
65:	learn: 22.7736138	total: 317ms	remaining: 163ms
66:	learn: 22.6836443	total: 325ms	remaining: 160ms
67:	learn: 22.5983654	total: 332ms	remaining: 156ms
68:	learn: 22.4419813	total: 338ms	remaining: 152ms
69:	learn: 22.2863339	total: 343ms	remaining: 147ms
70:	learn: 22.1792943	total: 348ms	remaining: 142ms
71:	learn: 22.1130574	total: 352ms	remaining: 137ms
72:	learn: 21.9858161	total: 357ms	remaining: 132ms
73:	learn: 21.8577784	total: 362ms	remaining: 127ms
74:	learn: 21.7845222	total: 368ms	remaining: 123ms
75:	learn: 21.6831390	total: 373ms	remaining: 118ms
76:	learn: 21.6292521	total: 378ms	remaining: 113ms
77:	learn: 21.5789330	total: 383ms	remaining: 108ms
78:	learn: 21.5420942	total: 388ms	remaining: 103ms
79:	learn: 21.4280939	total: 392ms	remaining: 98ms
80:	learn: 21.3641165	total: 397ms	remaining: 93.1ms
81:	learn: 21.2734814	total: 403ms	remaining: 88.4ms
82:	learn: 21.2220323	total: 407ms	remaining: 83.5ms
83:	learn: 21.0625792	total: 411ms	remaining: 78.4ms
84:	learn: 20.9488320	total: 415ms	remaining: 73.3ms
85:	learn: 20.8504255	total: 419ms	remaining: 68.2ms
86:	learn: 20.7848510	total: 423ms	remaining: 63.2ms
87:	learn: 20.7247442	total: 427ms	remaining: 58.2ms
88:	learn: 20.5698590	total: 431ms	remaining: 53.3ms
89:	learn: 20.4067620	total: 435ms	remaining: 48.4ms
90:	learn: 20.3062482	total: 440ms	remaining: 43.5ms
91:	learn: 20.2029696	total: 444ms	remaining: 38.6ms
92:	learn: 20.1384849	total: 448ms	remaining: 33.7ms
93:	learn: 20.0260709	total: 452ms	remaining: 28.9ms
94:	learn: 19.9122100	total: 456ms	remaining: 24ms
95:	learn: 19.8648487	total: 460ms	remaining: 19.2ms
96:	learn: 19.8207072	total: 464ms	remaining: 14.3ms
97:	learn: 19.7261189	total: 468ms	remaining: 9.56ms
98:	learn: 19.7042438	total: 473ms	remaining: 4.78ms
99:	learn: 19.6546645	total: 477ms	remaining: 0us
0:	learn: 47.0239288	total: 8.19ms	remaining: 811ms
1:	learn: 46.2253829	total: 13.4ms	remaining: 659ms
2:	learn: 45.5580301	total: 18.3ms	remaining: 592ms
3:	learn: 44.7273237	total: 23.7ms	remaining: 570ms
4:	learn: 43.8867421	total: 29.1ms	remaining: 553ms
5:	learn: 43.3615911	total: 34.2ms	remaining: 535ms
6:	learn: 42.8548390	total: 39.4ms	remaining: 523ms
7:	learn: 42.1606758	total: 44.7ms	remaining: 514ms
8:	learn: 41.6625870	total: 49.4ms	remaining: 499ms
9:	learn: 40.9497092	total: 54.2ms	remaining: 488ms
10:	learn: 40.1886318	total: 59.4ms	remaining: 480ms
11:	learn: 39.7456423	total: 64.3ms	remaining: 471ms
12:	learn: 39.1171373	total: 69.9ms	remaining: 468ms
13:	learn: 38.5451069	total: 75.6ms	remaining: 464ms
14:	learn: 38.0155834	total: 81ms	remaining: 459ms
15:	learn: 37.5631354	total: 85.9ms	remaining: 451ms
16:	learn: 37.1030023	total: 90.7ms	remaining: 443ms
17:	learn: 36.4563029	total: 95.3ms	remaining: 434ms
18:	learn: 36.0160976	total: 99.9ms	remaining: 426ms
19:	learn: 35.5079827	total: 104ms	remaining: 416ms
20:	learn: 35.2111885	total: 108ms	remaining: 406ms
21:	learn: 34.9397465	total: 112ms	remaining: 397ms
22:	learn: 34.5270048	total: 116ms	remaining: 389ms
23:	learn: 34.0169260	total: 120ms	remaining: 380ms
24:	learn: 33.7454892	total: 124ms	remaining: 372ms
25:	learn: 33.2648157	total: 129ms	remaining: 366ms
26:	learn: 32.8899427	total: 133ms	remaining: 360ms
27:	learn: 32.6185050	total: 138ms	remaining: 354ms
28:	learn: 32.3528531	total: 142ms	remaining: 347ms
29:	learn: 32.0859923	total: 146ms	remaining: 340ms
30:	learn: 31.6511144	total: 151ms	remaining: 335ms
31:	learn: 31.2571765	total: 155ms	remaining: 330ms
32:	learn: 30.9770049	total: 160ms	remaining: 324ms
33:	learn: 30.6084872	total: 164ms	remaining: 318ms
34:	learn: 30.3448632	total: 169ms	remaining: 314ms
35:	learn: 30.0360942	total: 174ms	remaining: 309ms
36:	learn: 29.6648968	total: 178ms	remaining: 304ms
37:	learn: 29.3165114	total: 183ms	remaining: 299ms
38:	learn: 29.0829198	total: 192ms	remaining: 300ms
39:	learn: 28.7752064	total: 199ms	remaining: 299ms
40:	learn: 28.3622191	total: 207ms	remaining: 298ms
41:	learn: 28.1346631	total: 214ms	remaining: 296ms
42:	learn: 27.9585719	total: 219ms	remaining: 291ms
43:	learn: 27.6565566	total: 224ms	remaining: 286ms
44:	learn: 27.3616172	total: 243ms	remaining: 297ms
45:	learn: 27.0658637	total: 248ms	remaining: 291ms
46:	learn: 26.8660382	total: 253ms	remaining: 286ms
47:	learn: 26.6536078	total: 259ms	remaining: 280ms
48:	learn: 26.3524440	total: 263ms	remaining: 274ms
49:	learn: 26.1595277	total: 267ms	remaining: 267ms
50:	learn: 25.9273523	total: 272ms	remaining: 261ms
51:	learn: 25.7195580	total: 276ms	remaining: 255ms
52:	learn: 25.5730225	total: 280ms	remaining: 249ms
53:	learn: 25.3455276	total: 285ms	remaining: 243ms
54:	learn: 25.2289675	total: 291ms	remaining: 238ms
55:	learn: 25.0133024	total: 296ms	remaining: 232ms
56:	learn: 24.8406714	total: 299ms	remaining: 226ms
57:	learn: 24.6367857	total: 303ms	remaining: 220ms
58:	learn: 24.5338177	total: 307ms	remaining: 214ms
59:	learn: 24.3799964	total: 311ms	remaining: 207ms
60:	learn: 24.1447492	total: 315ms	remaining: 201ms
61:	learn: 23.9880495	total: 319ms	remaining: 195ms
62:	learn: 23.7140630	total: 323ms	remaining: 190ms
63:	learn: 23.5003791	total: 326ms	remaining: 184ms
64:	learn: 23.3207645	total: 330ms	remaining: 178ms
65:	learn: 23.1958356	total: 335ms	remaining: 172ms
66:	learn: 23.0471302	total: 339ms	remaining: 167ms
67:	learn: 22.8977183	total: 343ms	remaining: 162ms
68:	learn: 22.7187400	total: 347ms	remaining: 156ms
69:	learn: 22.6523405	total: 352ms	remaining: 151ms
70:	learn: 22.4767453	total: 356ms	remaining: 145ms
71:	learn: 22.3243677	total: 361ms	remaining: 140ms
72:	learn: 22.2133096	total: 365ms	remaining: 135ms
73:	learn: 22.1151713	total: 369ms	remaining: 130ms
74:	learn: 22.0296666	total: 374ms	remaining: 125ms
75:	learn: 21.9195980	total: 378ms	remaining: 119ms
76:	learn: 21.8401730	total: 382ms	remaining: 114ms
77:	learn: 21.8079797	total: 389ms	remaining: 110ms
78:	learn: 21.7274109	total: 398ms	remaining: 106ms
79:	learn: 21.6663032	total: 406ms	remaining: 101ms
80:	learn: 21.5633117	total: 412ms	remaining: 96.5ms
81:	learn: 21.4542467	total: 419ms	remaining: 92.1ms
82:	learn: 21.3177957	total: 424ms	remaining: 86.9ms
83:	learn: 21.1289167	total: 430ms	remaining: 81.8ms
84:	learn: 21.0297368	total: 435ms	remaining: 76.7ms
85:	learn: 20.9089564	total: 440ms	remaining: 71.6ms
86:	learn: 20.7653988	total: 445ms	remaining: 66.6ms
87:	learn: 20.6521894	total: 450ms	remaining: 61.4ms
88:	learn: 20.5193021	total: 455ms	remaining: 56.3ms
89:	learn: 20.4361620	total: 460ms	remaining: 51.2ms
90:	learn: 20.3546710	total: 466ms	remaining: 46.1ms
91:	learn: 20.2513296	total: 470ms	remaining: 40.9ms
92:	learn: 20.1605550	total: 476ms	remaining: 35.8ms
93:	learn: 20.0515942	total: 481ms	remaining: 30.7ms
94:	learn: 19.9800764	total: 486ms	remaining: 25.6ms
95:	learn: 19.8996532	total: 490ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 494ms	remaining: 15.3ms
97:	learn: 19.7887346	total: 498ms	remaining: 10.2ms
98:	learn: 19.7230872	total: 502ms	remaining: 5.07ms
99:	learn: 19.6328825	total: 507ms	remaining: 0us
avg_Mae_val de la población en la generación 11: 17.77887617782591 con std media = 9.109663778254031
Mae_val del Mejor modelo en la generación 11: 17.7789 con std = 9.1097
0:	learn: 27.5585353	total: 4.38ms	remaining: 434ms
1:	learn: 27.1656995	total: 8.75ms	remaining: 429ms
2:	learn: 26.8590175	total: 13.4ms	remaining: 433ms
3:	learn: 26.5818406	total: 17.5ms	remaining: 421ms
4:	learn: 26.1148663	total: 22ms	remaining: 418ms
5:	learn: 25.7690484	total: 26.4ms	remaining: 413ms
6:	learn: 25.3489206	total: 31.1ms	remaining: 413ms
7:	learn: 24.9542406	total: 35.6ms	remaining: 409ms
8:	learn: 24.6777517	total: 41ms	remaining: 414ms
9:	learn: 24.3242344	total: 51.1ms	remaining: 460ms
10:	learn: 24.0383073	total: 61ms	remaining: 494ms
11:	learn: 23.7383420	total: 68.3ms	remaining: 501ms
12:	learn: 23.3461670	total: 76.2ms	remaining: 510ms
13:	learn: 23.0928636	total: 81.7ms	remaining: 502ms
14:	learn: 22.8770414	total: 87ms	remaining: 493ms
15:	learn: 22.6323214	total: 92.2ms	remaining: 484ms
16:	learn: 22.3597072	total: 97.7ms	remaining: 477ms
17:	learn: 22.1079813	total: 103ms	remaining: 469ms
18:	learn: 21.8421199	total: 108ms	remaining: 462ms
19:	learn: 21.6576508	total: 113ms	remaining: 453ms
20:	learn: 21.4301268	total: 118ms	remaining: 446ms
21:	learn: 21.2287388	total: 123ms	remaining: 437ms
22:	learn: 21.0553872	total: 128ms	remaining: 429ms
23:	learn: 20.8977091	total: 133ms	remaining: 421ms
24:	learn: 20.6619051	total: 138ms	remaining: 415ms
25:	learn: 20.5040955	total: 144ms	remaining: 409ms
26:	learn: 20.3181195	total: 148ms	remaining: 400ms
27:	learn: 20.0869436	total: 152ms	remaining: 390ms
28:	learn: 19.9375985	total: 156ms	remaining: 382ms
29:	learn: 19.8247516	total: 160ms	remaining: 373ms
30:	learn: 19.6261697	total: 164ms	remaining: 364ms
31:	learn: 19.4547236	total: 168ms	remaining: 356ms
32:	learn: 19.3157092	total: 172ms	remaining: 349ms
33:	learn: 19.1561419	total: 176ms	remaining: 341ms
34:	learn: 19.0453620	total: 180ms	remaining: 334ms
35:	learn: 18.8738574	total: 184ms	remaining: 327ms
36:	learn: 18.7072907	total: 188ms	remaining: 321ms
37:	learn: 18.5877943	total: 192ms	remaining: 314ms
38:	learn: 18.4436380	total: 197ms	remaining: 308ms
39:	learn: 18.3463356	total: 201ms	remaining: 301ms
40:	learn: 18.2008059	total: 205ms	remaining: 295ms
41:	learn: 18.0582079	total: 209ms	remaining: 289ms
42:	learn: 17.8891982	total: 214ms	remaining: 283ms
43:	learn: 17.7332246	total: 217ms	remaining: 277ms
44:	learn: 17.6206421	total: 222ms	remaining: 272ms
45:	learn: 17.4982800	total: 227ms	remaining: 266ms
46:	learn: 17.3970150	total: 231ms	remaining: 261ms
47:	learn: 17.3058203	total: 236ms	remaining: 256ms
48:	learn: 17.1789256	total: 241ms	remaining: 251ms
49:	learn: 17.0916229	total: 245ms	remaining: 245ms
50:	learn: 16.9859820	total: 250ms	remaining: 240ms
51:	learn: 16.8995582	total: 254ms	remaining: 235ms
52:	learn: 16.8137014	total: 263ms	remaining: 233ms
53:	learn: 16.7021451	total: 270ms	remaining: 230ms
54:	learn: 16.5895582	total: 278ms	remaining: 228ms
55:	learn: 16.5015639	total: 286ms	remaining: 225ms
56:	learn: 16.4356637	total: 291ms	remaining: 220ms
57:	learn: 16.3514525	total: 296ms	remaining: 215ms
58:	learn: 16.2401369	total: 302ms	remaining: 210ms
59:	learn: 16.1293223	total: 307ms	remaining: 205ms
60:	learn: 16.0271167	total: 312ms	remaining: 200ms
61:	learn: 15.9126257	total: 318ms	remaining: 195ms
62:	learn: 15.8391096	total: 323ms	remaining: 190ms
63:	learn: 15.7441773	total: 328ms	remaining: 184ms
64:	learn: 15.6885195	total: 333ms	remaining: 179ms
65:	learn: 15.6052039	total: 338ms	remaining: 174ms
66:	learn: 15.5074202	total: 343ms	remaining: 169ms
67:	learn: 15.4054338	total: 348ms	remaining: 164ms
68:	learn: 15.2885714	total: 353ms	remaining: 159ms
69:	learn: 15.2157472	total: 359ms	remaining: 154ms
70:	learn: 15.1031554	total: 363ms	remaining: 148ms
71:	learn: 15.0237470	total: 367ms	remaining: 143ms
72:	learn: 14.9756825	total: 371ms	remaining: 137ms
73:	learn: 14.8840596	total: 376ms	remaining: 132ms
74:	learn: 14.8077061	total: 381ms	remaining: 127ms
75:	learn: 14.7444437	total: 386ms	remaining: 122ms
76:	learn: 14.6751720	total: 390ms	remaining: 117ms
77:	learn: 14.5830333	total: 395ms	remaining: 111ms
78:	learn: 14.5241206	total: 399ms	remaining: 106ms
79:	learn: 14.4892731	total: 404ms	remaining: 101ms
80:	learn: 14.4256605	total: 409ms	remaining: 95.8ms
81:	learn: 14.3666860	total: 413ms	remaining: 90.7ms
82:	learn: 14.2938372	total: 418ms	remaining: 85.6ms
83:	learn: 14.2161532	total: 423ms	remaining: 80.7ms
84:	learn: 14.1582910	total: 428ms	remaining: 75.6ms
85:	learn: 14.1029153	total: 434ms	remaining: 70.6ms
86:	learn: 14.0475835	total: 439ms	remaining: 65.5ms
87:	learn: 13.9892661	total: 444ms	remaining: 60.5ms
88:	learn: 13.9481628	total: 448ms	remaining: 55.4ms
89:	learn: 13.8483991	total: 453ms	remaining: 50.4ms
90:	learn: 13.7775614	total: 461ms	remaining: 45.6ms
91:	learn: 13.7304585	total: 470ms	remaining: 40.9ms
92:	learn: 13.6783381	total: 480ms	remaining: 36.1ms
93:	learn: 13.6356964	total: 486ms	remaining: 31ms
94:	learn: 13.5924371	total: 494ms	remaining: 26ms
95:	learn: 13.5400746	total: 500ms	remaining: 20.8ms
96:	learn: 13.4897333	total: 506ms	remaining: 15.6ms
97:	learn: 13.4470321	total: 512ms	remaining: 10.4ms
98:	learn: 13.3856082	total: 518ms	remaining: 5.23ms
99:	learn: 13.3082371	total: 524ms	remaining: 0us
0:	learn: 43.0395283	total: 4.88ms	remaining: 483ms
1:	learn: 42.1130223	total: 9.41ms	remaining: 461ms
2:	learn: 41.1753409	total: 13.7ms	remaining: 444ms
3:	learn: 40.3637444	total: 17.8ms	remaining: 428ms
4:	learn: 39.6508088	total: 22.1ms	remaining: 420ms
5:	learn: 38.7217934	total: 26.9ms	remaining: 421ms
6:	learn: 37.8538055	total: 31.2ms	remaining: 414ms
7:	learn: 36.9793574	total: 35.7ms	remaining: 410ms
8:	learn: 36.3076984	total: 40.1ms	remaining: 405ms
9:	learn: 35.6673160	total: 44.3ms	remaining: 399ms
10:	learn: 34.8889800	total: 48.6ms	remaining: 393ms
11:	learn: 34.1675517	total: 52.7ms	remaining: 386ms
12:	learn: 33.6779564	total: 57.6ms	remaining: 386ms
13:	learn: 33.0710039	total: 62.5ms	remaining: 384ms
14:	learn: 32.4966674	total: 67ms	remaining: 380ms
15:	learn: 31.9492856	total: 72.1ms	remaining: 379ms
16:	learn: 31.5108129	total: 76.8ms	remaining: 375ms
17:	learn: 30.9804023	total: 81.3ms	remaining: 370ms
18:	learn: 30.4169089	total: 85.8ms	remaining: 366ms
19:	learn: 29.8930375	total: 90.5ms	remaining: 362ms
20:	learn: 29.3974421	total: 98.6ms	remaining: 371ms
21:	learn: 28.8792307	total: 106ms	remaining: 375ms
22:	learn: 28.3894474	total: 115ms	remaining: 385ms
23:	learn: 27.9921276	total: 121ms	remaining: 384ms
24:	learn: 27.6158887	total: 127ms	remaining: 382ms
25:	learn: 27.2866950	total: 133ms	remaining: 378ms
26:	learn: 26.8770708	total: 138ms	remaining: 373ms
27:	learn: 26.6233005	total: 143ms	remaining: 367ms
28:	learn: 26.2921934	total: 148ms	remaining: 363ms
29:	learn: 25.9156920	total: 153ms	remaining: 357ms
30:	learn: 25.5311106	total: 155ms	remaining: 345ms
31:	learn: 25.2178997	total: 160ms	remaining: 341ms
32:	learn: 24.8572196	total: 166ms	remaining: 336ms
33:	learn: 24.5849710	total: 170ms	remaining: 331ms
34:	learn: 24.2209190	total: 176ms	remaining: 326ms
35:	learn: 23.8708250	total: 181ms	remaining: 322ms
36:	learn: 23.5325279	total: 186ms	remaining: 316ms
37:	learn: 23.2116148	total: 191ms	remaining: 312ms
38:	learn: 22.9696787	total: 197ms	remaining: 308ms
39:	learn: 22.7936783	total: 202ms	remaining: 303ms
40:	learn: 22.6228847	total: 206ms	remaining: 297ms
41:	learn: 22.3691527	total: 211ms	remaining: 291ms
42:	learn: 22.1002173	total: 216ms	remaining: 286ms
43:	learn: 21.9157268	total: 220ms	remaining: 280ms
44:	learn: 21.7229102	total: 225ms	remaining: 274ms
45:	learn: 21.4642005	total: 229ms	remaining: 269ms
46:	learn: 21.3029442	total: 233ms	remaining: 262ms
47:	learn: 21.1469792	total: 237ms	remaining: 257ms
48:	learn: 20.9458235	total: 242ms	remaining: 251ms
49:	learn: 20.7335242	total: 246ms	remaining: 246ms
50:	learn: 20.5440269	total: 250ms	remaining: 240ms
51:	learn: 20.3661449	total: 254ms	remaining: 235ms
52:	learn: 20.2158134	total: 259ms	remaining: 230ms
53:	learn: 19.9934873	total: 263ms	remaining: 224ms
54:	learn: 19.7879739	total: 268ms	remaining: 219ms
55:	learn: 19.6630460	total: 273ms	remaining: 214ms
56:	learn: 19.5152729	total: 278ms	remaining: 209ms
57:	learn: 19.3581128	total: 282ms	remaining: 204ms
58:	learn: 19.2209303	total: 287ms	remaining: 199ms
59:	learn: 19.0965248	total: 291ms	remaining: 194ms
60:	learn: 19.0035954	total: 296ms	remaining: 189ms
61:	learn: 18.8554149	total: 300ms	remaining: 184ms
62:	learn: 18.7095427	total: 309ms	remaining: 181ms
63:	learn: 18.5751494	total: 316ms	remaining: 178ms
64:	learn: 18.4678251	total: 326ms	remaining: 175ms
65:	learn: 18.3500325	total: 333ms	remaining: 172ms
66:	learn: 18.2088983	total: 339ms	remaining: 167ms
67:	learn: 18.0737705	total: 344ms	remaining: 162ms
68:	learn: 17.9325058	total: 349ms	remaining: 157ms
69:	learn: 17.8003911	total: 354ms	remaining: 152ms
70:	learn: 17.7385366	total: 359ms	remaining: 147ms
71:	learn: 17.6106998	total: 364ms	remaining: 142ms
72:	learn: 17.4816270	total: 369ms	remaining: 137ms
73:	learn: 17.4025554	total: 375ms	remaining: 132ms
74:	learn: 17.2902108	total: 379ms	remaining: 126ms
75:	learn: 17.2158048	total: 383ms	remaining: 121ms
76:	learn: 17.1261053	total: 388ms	remaining: 116ms
77:	learn: 17.0308917	total: 393ms	remaining: 111ms
78:	learn: 16.9546705	total: 398ms	remaining: 106ms
79:	learn: 16.8319165	total: 402ms	remaining: 101ms
80:	learn: 16.7687017	total: 408ms	remaining: 95.7ms
81:	learn: 16.6972326	total: 413ms	remaining: 90.7ms
82:	learn: 16.6124580	total: 418ms	remaining: 85.6ms
83:	learn: 16.4999052	total: 422ms	remaining: 80.4ms
84:	learn: 16.4302484	total: 426ms	remaining: 75.2ms
85:	learn: 16.3201363	total: 430ms	remaining: 70ms
86:	learn: 16.2534314	total: 434ms	remaining: 64.8ms
87:	learn: 16.1720485	total: 438ms	remaining: 59.7ms
88:	learn: 16.0625751	total: 442ms	remaining: 54.7ms
89:	learn: 15.9135088	total: 446ms	remaining: 49.6ms
90:	learn: 15.8658863	total: 450ms	remaining: 44.5ms
91:	learn: 15.8066805	total: 455ms	remaining: 39.5ms
92:	learn: 15.7412103	total: 459ms	remaining: 34.5ms
93:	learn: 15.6542776	total: 463ms	remaining: 29.6ms
94:	learn: 15.5760334	total: 468ms	remaining: 24.6ms
95:	learn: 15.5434131	total: 473ms	remaining: 19.7ms
96:	learn: 15.4709561	total: 477ms	remaining: 14.8ms
97:	learn: 15.4449618	total: 482ms	remaining: 9.83ms
98:	learn: 15.3752761	total: 486ms	remaining: 4.91ms
99:	learn: 15.3106595	total: 491ms	remaining: 0us
0:	learn: 46.7142257	total: 6.01ms	remaining: 595ms
1:	learn: 45.7634153	total: 11.9ms	remaining: 585ms
2:	learn: 45.0054253	total: 17.3ms	remaining: 560ms
3:	learn: 44.2120432	total: 22.7ms	remaining: 544ms
4:	learn: 43.3960472	total: 28.1ms	remaining: 534ms
5:	learn: 42.8588120	total: 33.5ms	remaining: 525ms
6:	learn: 41.9533701	total: 39ms	remaining: 518ms
7:	learn: 41.2745030	total: 44.3ms	remaining: 510ms
8:	learn: 40.6797495	total: 50.1ms	remaining: 506ms
9:	learn: 39.9899571	total: 56.1ms	remaining: 505ms
10:	learn: 39.4682100	total: 61.8ms	remaining: 500ms
11:	learn: 39.0305595	total: 66.4ms	remaining: 487ms
12:	learn: 38.4200417	total: 70.9ms	remaining: 474ms
13:	learn: 37.8425194	total: 75.6ms	remaining: 465ms
14:	learn: 37.4203127	total: 80.6ms	remaining: 457ms
15:	learn: 36.9917688	total: 85.7ms	remaining: 450ms
16:	learn: 36.5544138	total: 90.1ms	remaining: 440ms
17:	learn: 36.0727019	total: 94.7ms	remaining: 432ms
18:	learn: 35.4835715	total: 99.3ms	remaining: 423ms
19:	learn: 34.9865654	total: 104ms	remaining: 415ms
20:	learn: 34.6063373	total: 109ms	remaining: 409ms
21:	learn: 34.0997289	total: 113ms	remaining: 401ms
22:	learn: 33.7313171	total: 118ms	remaining: 394ms
23:	learn: 33.3582000	total: 123ms	remaining: 388ms
24:	learn: 32.9432456	total: 137ms	remaining: 411ms
25:	learn: 32.5220888	total: 142ms	remaining: 403ms
26:	learn: 32.2172292	total: 147ms	remaining: 397ms
27:	learn: 31.8972904	total: 151ms	remaining: 390ms
28:	learn: 31.6405350	total: 159ms	remaining: 389ms
29:	learn: 31.4167702	total: 168ms	remaining: 391ms
30:	learn: 30.8541961	total: 172ms	remaining: 382ms
31:	learn: 30.5572111	total: 179ms	remaining: 381ms
32:	learn: 30.1700399	total: 187ms	remaining: 380ms
33:	learn: 29.8537271	total: 193ms	remaining: 375ms
34:	learn: 29.6192540	total: 199ms	remaining: 369ms
35:	learn: 29.3276362	total: 204ms	remaining: 363ms
36:	learn: 28.9985179	total: 210ms	remaining: 357ms
37:	learn: 28.7046880	total: 215ms	remaining: 351ms
38:	learn: 28.4412677	total: 220ms	remaining: 344ms
39:	learn: 28.1277292	total: 225ms	remaining: 338ms
40:	learn: 27.9000750	total: 230ms	remaining: 332ms
41:	learn: 27.5433162	total: 236ms	remaining: 325ms
42:	learn: 27.2493285	total: 240ms	remaining: 319ms
43:	learn: 26.9576632	total: 242ms	remaining: 308ms
44:	learn: 26.6177110	total: 247ms	remaining: 302ms
45:	learn: 26.2812456	total: 253ms	remaining: 297ms
46:	learn: 26.0803859	total: 258ms	remaining: 291ms
47:	learn: 25.9543581	total: 263ms	remaining: 284ms
48:	learn: 25.7951582	total: 267ms	remaining: 278ms
49:	learn: 25.6548184	total: 272ms	remaining: 272ms
50:	learn: 25.4010843	total: 276ms	remaining: 265ms
51:	learn: 24.9773937	total: 280ms	remaining: 258ms
52:	learn: 24.8026156	total: 285ms	remaining: 252ms
53:	learn: 24.5568053	total: 289ms	remaining: 246ms
54:	learn: 24.2281839	total: 293ms	remaining: 240ms
55:	learn: 23.9202795	total: 297ms	remaining: 233ms
56:	learn: 23.7625591	total: 301ms	remaining: 227ms
57:	learn: 23.5429721	total: 306ms	remaining: 222ms
58:	learn: 23.3175893	total: 311ms	remaining: 216ms
59:	learn: 23.2035130	total: 315ms	remaining: 210ms
60:	learn: 23.0232450	total: 320ms	remaining: 205ms
61:	learn: 22.8384958	total: 325ms	remaining: 199ms
62:	learn: 22.6499902	total: 330ms	remaining: 194ms
63:	learn: 22.4577426	total: 335ms	remaining: 189ms
64:	learn: 22.3333158	total: 340ms	remaining: 183ms
65:	learn: 22.2064131	total: 345ms	remaining: 178ms
66:	learn: 22.1434971	total: 351ms	remaining: 173ms
67:	learn: 21.9596519	total: 361ms	remaining: 170ms
68:	learn: 21.8475576	total: 373ms	remaining: 168ms
69:	learn: 21.6954745	total: 382ms	remaining: 164ms
70:	learn: 21.5635976	total: 392ms	remaining: 160ms
71:	learn: 21.4588506	total: 399ms	remaining: 155ms
72:	learn: 21.3527268	total: 405ms	remaining: 150ms
73:	learn: 21.2661288	total: 411ms	remaining: 145ms
74:	learn: 21.1817333	total: 417ms	remaining: 139ms
75:	learn: 21.0527553	total: 423ms	remaining: 133ms
76:	learn: 20.9229021	total: 428ms	remaining: 128ms
77:	learn: 20.7563946	total: 434ms	remaining: 122ms
78:	learn: 20.6569831	total: 440ms	remaining: 117ms
79:	learn: 20.4982663	total: 445ms	remaining: 111ms
80:	learn: 20.3185460	total: 449ms	remaining: 105ms
81:	learn: 20.2096241	total: 454ms	remaining: 99.8ms
82:	learn: 20.1274891	total: 460ms	remaining: 94.2ms
83:	learn: 20.0740139	total: 464ms	remaining: 88.4ms
84:	learn: 19.9630699	total: 469ms	remaining: 82.7ms
85:	learn: 19.8753899	total: 473ms	remaining: 77ms
86:	learn: 19.6563612	total: 478ms	remaining: 71.4ms
87:	learn: 19.4680232	total: 482ms	remaining: 65.7ms
88:	learn: 19.3503431	total: 486ms	remaining: 60.1ms
89:	learn: 19.2221379	total: 490ms	remaining: 54.5ms
90:	learn: 19.0732542	total: 495ms	remaining: 48.9ms
91:	learn: 18.9825190	total: 499ms	remaining: 43.4ms
92:	learn: 18.8839009	total: 504ms	remaining: 37.9ms
93:	learn: 18.8012219	total: 508ms	remaining: 32.5ms
94:	learn: 18.7172713	total: 513ms	remaining: 27ms
95:	learn: 18.6201170	total: 517ms	remaining: 21.6ms
96:	learn: 18.5318611	total: 522ms	remaining: 16.2ms
97:	learn: 18.3833356	total: 527ms	remaining: 10.8ms
98:	learn: 18.3289700	total: 532ms	remaining: 5.38ms
99:	learn: 18.2227333	total: 537ms	remaining: 0us
0:	learn: 46.3764524	total: 6.2ms	remaining: 614ms
1:	learn: 45.5561269	total: 11.5ms	remaining: 562ms
2:	learn: 44.8811245	total: 16.4ms	remaining: 529ms
3:	learn: 44.0788617	total: 21.7ms	remaining: 521ms
4:	learn: 43.3619790	total: 27.5ms	remaining: 523ms
5:	learn: 42.6912112	total: 32.6ms	remaining: 512ms
6:	learn: 42.2292118	total: 38ms	remaining: 504ms
7:	learn: 41.7725191	total: 43.6ms	remaining: 501ms
8:	learn: 41.1676614	total: 48.3ms	remaining: 489ms
9:	learn: 40.5771076	total: 53.7ms	remaining: 484ms
10:	learn: 39.8343757	total: 59.7ms	remaining: 483ms
11:	learn: 39.3761142	total: 64.4ms	remaining: 472ms
12:	learn: 38.5254692	total: 69ms	remaining: 462ms
13:	learn: 37.9629555	total: 73.6ms	remaining: 452ms
14:	learn: 37.4418438	total: 78ms	remaining: 442ms
15:	learn: 37.0507283	total: 82.2ms	remaining: 432ms
16:	learn: 36.6264217	total: 86.4ms	remaining: 422ms
17:	learn: 36.1114940	total: 90.8ms	remaining: 414ms
18:	learn: 35.7193862	total: 95ms	remaining: 405ms
19:	learn: 35.3301177	total: 99.3ms	remaining: 397ms
20:	learn: 35.0598280	total: 104ms	remaining: 391ms
21:	learn: 34.5469736	total: 108ms	remaining: 384ms
22:	learn: 34.2064215	total: 113ms	remaining: 377ms
23:	learn: 33.7280710	total: 116ms	remaining: 369ms
24:	learn: 33.3282940	total: 120ms	remaining: 361ms
25:	learn: 32.8478961	total: 124ms	remaining: 354ms
26:	learn: 32.5722164	total: 129ms	remaining: 348ms
27:	learn: 32.2457019	total: 133ms	remaining: 343ms
28:	learn: 31.9230495	total: 138ms	remaining: 337ms
29:	learn: 31.4311611	total: 142ms	remaining: 331ms
30:	learn: 30.9179052	total: 147ms	remaining: 326ms
31:	learn: 30.6201141	total: 151ms	remaining: 321ms
32:	learn: 30.3421106	total: 156ms	remaining: 316ms
33:	learn: 29.9885373	total: 160ms	remaining: 311ms
34:	learn: 29.7462780	total: 166ms	remaining: 309ms
35:	learn: 29.3607153	total: 174ms	remaining: 309ms
36:	learn: 29.1793078	total: 182ms	remaining: 310ms
37:	learn: 28.9276538	total: 190ms	remaining: 311ms
38:	learn: 28.6903934	total: 198ms	remaining: 310ms
39:	learn: 28.2095033	total: 203ms	remaining: 305ms
40:	learn: 27.7990608	total: 209ms	remaining: 300ms
41:	learn: 27.5406632	total: 213ms	remaining: 295ms
42:	learn: 27.2575376	total: 219ms	remaining: 290ms
43:	learn: 26.9741707	total: 224ms	remaining: 285ms
44:	learn: 26.6606899	total: 229ms	remaining: 280ms
45:	learn: 26.4015833	total: 234ms	remaining: 275ms
46:	learn: 26.1828993	total: 239ms	remaining: 270ms
47:	learn: 26.0233709	total: 242ms	remaining: 262ms
48:	learn: 25.9300399	total: 247ms	remaining: 257ms
49:	learn: 25.5861489	total: 251ms	remaining: 251ms
50:	learn: 25.4322012	total: 255ms	remaining: 245ms
51:	learn: 25.1595644	total: 260ms	remaining: 240ms
52:	learn: 24.9955303	total: 264ms	remaining: 234ms
53:	learn: 24.7273966	total: 270ms	remaining: 230ms
54:	learn: 24.5747978	total: 275ms	remaining: 225ms
55:	learn: 24.3807977	total: 280ms	remaining: 220ms
56:	learn: 24.1689569	total: 284ms	remaining: 214ms
57:	learn: 23.9898221	total: 288ms	remaining: 208ms
58:	learn: 23.7566414	total: 292ms	remaining: 203ms
59:	learn: 23.6641165	total: 295ms	remaining: 197ms
60:	learn: 23.5658066	total: 299ms	remaining: 191ms
61:	learn: 23.4338851	total: 303ms	remaining: 186ms
62:	learn: 23.2408837	total: 307ms	remaining: 180ms
63:	learn: 23.0642038	total: 311ms	remaining: 175ms
64:	learn: 22.9032045	total: 315ms	remaining: 170ms
65:	learn: 22.7736138	total: 320ms	remaining: 165ms
66:	learn: 22.6836443	total: 324ms	remaining: 160ms
67:	learn: 22.5983654	total: 329ms	remaining: 155ms
68:	learn: 22.4419813	total: 334ms	remaining: 150ms
69:	learn: 22.2863339	total: 338ms	remaining: 145ms
70:	learn: 22.1792943	total: 343ms	remaining: 140ms
71:	learn: 22.1130574	total: 348ms	remaining: 135ms
72:	learn: 21.9858161	total: 352ms	remaining: 130ms
73:	learn: 21.8577784	total: 357ms	remaining: 125ms
74:	learn: 21.7845222	total: 362ms	remaining: 121ms
75:	learn: 21.6831390	total: 370ms	remaining: 117ms
76:	learn: 21.6292521	total: 378ms	remaining: 113ms
77:	learn: 21.5789330	total: 387ms	remaining: 109ms
78:	learn: 21.5420942	total: 396ms	remaining: 105ms
79:	learn: 21.4280939	total: 401ms	remaining: 100ms
80:	learn: 21.3641165	total: 407ms	remaining: 95.5ms
81:	learn: 21.2734814	total: 412ms	remaining: 90.5ms
82:	learn: 21.2220323	total: 418ms	remaining: 85.5ms
83:	learn: 21.0625792	total: 423ms	remaining: 80.6ms
84:	learn: 20.9488320	total: 429ms	remaining: 75.7ms
85:	learn: 20.8504255	total: 434ms	remaining: 70.7ms
86:	learn: 20.7848510	total: 439ms	remaining: 65.6ms
87:	learn: 20.7247442	total: 444ms	remaining: 60.6ms
88:	learn: 20.5698590	total: 449ms	remaining: 55.5ms
89:	learn: 20.4067620	total: 454ms	remaining: 50.5ms
90:	learn: 20.3062482	total: 460ms	remaining: 45.5ms
91:	learn: 20.2029696	total: 465ms	remaining: 40.4ms
92:	learn: 20.1384849	total: 469ms	remaining: 35.3ms
93:	learn: 20.0260709	total: 473ms	remaining: 30.2ms
94:	learn: 19.9122100	total: 477ms	remaining: 25.1ms
95:	learn: 19.8648487	total: 481ms	remaining: 20.1ms
96:	learn: 19.8207072	total: 485ms	remaining: 15ms
97:	learn: 19.7261189	total: 489ms	remaining: 9.98ms
98:	learn: 19.7042438	total: 493ms	remaining: 4.98ms
99:	learn: 19.6546645	total: 497ms	remaining: 0us
0:	learn: 47.0239288	total: 4.88ms	remaining: 483ms
1:	learn: 46.2253829	total: 9.35ms	remaining: 458ms
2:	learn: 45.5580301	total: 14.8ms	remaining: 479ms
3:	learn: 44.7273237	total: 22ms	remaining: 528ms
4:	learn: 43.8867421	total: 29.1ms	remaining: 553ms
5:	learn: 43.3615911	total: 37.7ms	remaining: 591ms
6:	learn: 42.8548390	total: 43.6ms	remaining: 580ms
7:	learn: 42.1606758	total: 49.7ms	remaining: 571ms
8:	learn: 41.6625870	total: 54.5ms	remaining: 551ms
9:	learn: 40.9497092	total: 59.5ms	remaining: 535ms
10:	learn: 40.1886318	total: 64.5ms	remaining: 522ms
11:	learn: 39.7456423	total: 69.5ms	remaining: 510ms
12:	learn: 39.1171373	total: 74.7ms	remaining: 500ms
13:	learn: 38.5451069	total: 80.1ms	remaining: 492ms
14:	learn: 38.0155834	total: 85ms	remaining: 482ms
15:	learn: 37.5631354	total: 90ms	remaining: 473ms
16:	learn: 37.1030023	total: 95.3ms	remaining: 466ms
17:	learn: 36.4563029	total: 100ms	remaining: 457ms
18:	learn: 36.0160976	total: 106ms	remaining: 452ms
19:	learn: 35.5079827	total: 112ms	remaining: 447ms
20:	learn: 35.2111885	total: 117ms	remaining: 439ms
21:	learn: 34.9397465	total: 121ms	remaining: 429ms
22:	learn: 34.5270048	total: 125ms	remaining: 419ms
23:	learn: 34.0169260	total: 130ms	remaining: 411ms
24:	learn: 33.7454892	total: 134ms	remaining: 401ms
25:	learn: 33.2648157	total: 138ms	remaining: 393ms
26:	learn: 32.8899427	total: 142ms	remaining: 384ms
27:	learn: 32.6185050	total: 147ms	remaining: 377ms
28:	learn: 32.3528531	total: 151ms	remaining: 370ms
29:	learn: 32.0859923	total: 155ms	remaining: 362ms
30:	learn: 31.6511144	total: 159ms	remaining: 354ms
31:	learn: 31.2571765	total: 163ms	remaining: 347ms
32:	learn: 30.9770049	total: 168ms	remaining: 340ms
33:	learn: 30.6084872	total: 172ms	remaining: 333ms
34:	learn: 30.3448632	total: 176ms	remaining: 327ms
35:	learn: 30.0360942	total: 181ms	remaining: 321ms
36:	learn: 29.6648968	total: 185ms	remaining: 315ms
37:	learn: 29.3165114	total: 189ms	remaining: 309ms
38:	learn: 29.0829198	total: 194ms	remaining: 303ms
39:	learn: 28.7752064	total: 199ms	remaining: 298ms
40:	learn: 28.3622191	total: 203ms	remaining: 293ms
41:	learn: 28.1346631	total: 208ms	remaining: 288ms
42:	learn: 27.9585719	total: 213ms	remaining: 282ms
43:	learn: 27.6565566	total: 218ms	remaining: 277ms
44:	learn: 27.3616172	total: 222ms	remaining: 272ms
45:	learn: 27.0658637	total: 227ms	remaining: 266ms
46:	learn: 26.8660382	total: 231ms	remaining: 261ms
47:	learn: 26.6536078	total: 236ms	remaining: 256ms
48:	learn: 26.3524440	total: 240ms	remaining: 250ms
49:	learn: 26.1595277	total: 245ms	remaining: 245ms
50:	learn: 25.9273523	total: 250ms	remaining: 240ms
51:	learn: 25.7195580	total: 254ms	remaining: 235ms
52:	learn: 25.5730225	total: 259ms	remaining: 230ms
53:	learn: 25.3455276	total: 266ms	remaining: 226ms
54:	learn: 25.2289675	total: 273ms	remaining: 224ms
55:	learn: 25.0133024	total: 282ms	remaining: 222ms
56:	learn: 24.8406714	total: 288ms	remaining: 217ms
57:	learn: 24.6367857	total: 296ms	remaining: 214ms
58:	learn: 24.5338177	total: 301ms	remaining: 209ms
59:	learn: 24.3799964	total: 307ms	remaining: 205ms
60:	learn: 24.1447492	total: 313ms	remaining: 200ms
61:	learn: 23.9880495	total: 318ms	remaining: 195ms
62:	learn: 23.7140630	total: 323ms	remaining: 190ms
63:	learn: 23.5003791	total: 328ms	remaining: 184ms
64:	learn: 23.3207645	total: 333ms	remaining: 179ms
65:	learn: 23.1958356	total: 338ms	remaining: 174ms
66:	learn: 23.0471302	total: 343ms	remaining: 169ms
67:	learn: 22.8977183	total: 349ms	remaining: 164ms
68:	learn: 22.7187400	total: 354ms	remaining: 159ms
69:	learn: 22.6523405	total: 359ms	remaining: 154ms
70:	learn: 22.4767453	total: 364ms	remaining: 149ms
71:	learn: 22.3243677	total: 369ms	remaining: 144ms
72:	learn: 22.2133096	total: 374ms	remaining: 138ms
73:	learn: 22.1151713	total: 378ms	remaining: 133ms
74:	learn: 22.0296666	total: 382ms	remaining: 127ms
75:	learn: 21.9195980	total: 386ms	remaining: 122ms
76:	learn: 21.8401730	total: 390ms	remaining: 116ms
77:	learn: 21.8079797	total: 394ms	remaining: 111ms
78:	learn: 21.7274109	total: 397ms	remaining: 106ms
79:	learn: 21.6663032	total: 401ms	remaining: 100ms
80:	learn: 21.5633117	total: 405ms	remaining: 95.1ms
81:	learn: 21.4542467	total: 409ms	remaining: 89.8ms
82:	learn: 21.3177957	total: 413ms	remaining: 84.6ms
83:	learn: 21.1289167	total: 417ms	remaining: 79.5ms
84:	learn: 21.0297368	total: 421ms	remaining: 74.3ms
85:	learn: 20.9089564	total: 425ms	remaining: 69.2ms
86:	learn: 20.7653988	total: 430ms	remaining: 64.2ms
87:	learn: 20.6521894	total: 435ms	remaining: 59.3ms
88:	learn: 20.5193021	total: 439ms	remaining: 54.2ms
89:	learn: 20.4361620	total: 444ms	remaining: 49.3ms
90:	learn: 20.3546710	total: 448ms	remaining: 44.3ms
91:	learn: 20.2513296	total: 452ms	remaining: 39.3ms
92:	learn: 20.1605550	total: 456ms	remaining: 34.4ms
93:	learn: 20.0515942	total: 461ms	remaining: 29.5ms
94:	learn: 19.9800764	total: 469ms	remaining: 24.7ms
95:	learn: 19.8996532	total: 477ms	remaining: 19.9ms
96:	learn: 19.8450910	total: 484ms	remaining: 15ms
97:	learn: 19.7887346	total: 492ms	remaining: 10ms
98:	learn: 19.7230872	total: 497ms	remaining: 5.02ms
99:	learn: 19.6328825	total: 502ms	remaining: 0us
0:	learn: 27.5585353	total: 4.46ms	remaining: 442ms
1:	learn: 27.1656995	total: 8.76ms	remaining: 429ms
2:	learn: 26.8590175	total: 12.7ms	remaining: 410ms
3:	learn: 26.5818406	total: 17.1ms	remaining: 410ms
4:	learn: 26.1148663	total: 20.9ms	remaining: 397ms
5:	learn: 25.7690484	total: 24.8ms	remaining: 389ms
6:	learn: 25.3489206	total: 29.2ms	remaining: 388ms
7:	learn: 24.9542406	total: 33.8ms	remaining: 389ms
8:	learn: 24.6777517	total: 38.1ms	remaining: 385ms
9:	learn: 24.3242344	total: 42ms	remaining: 378ms
10:	learn: 24.0383073	total: 45.9ms	remaining: 371ms
11:	learn: 23.7383420	total: 49.9ms	remaining: 366ms
12:	learn: 23.3461670	total: 53.8ms	remaining: 360ms
13:	learn: 23.0928636	total: 57.6ms	remaining: 354ms
14:	learn: 22.8770414	total: 62ms	remaining: 351ms
15:	learn: 22.6323214	total: 66ms	remaining: 346ms
16:	learn: 22.3597072	total: 70.2ms	remaining: 343ms
17:	learn: 22.1079813	total: 74ms	remaining: 337ms
18:	learn: 21.8421199	total: 78.6ms	remaining: 335ms
19:	learn: 21.6576508	total: 83.3ms	remaining: 333ms
20:	learn: 21.4301268	total: 88.1ms	remaining: 332ms
21:	learn: 21.2287388	total: 92.7ms	remaining: 329ms
22:	learn: 21.0553872	total: 97.1ms	remaining: 325ms
23:	learn: 20.8977091	total: 102ms	remaining: 322ms
24:	learn: 20.6619051	total: 106ms	remaining: 318ms
25:	learn: 20.5040955	total: 111ms	remaining: 316ms
26:	learn: 20.3181195	total: 119ms	remaining: 321ms
27:	learn: 20.0869436	total: 126ms	remaining: 325ms
28:	learn: 19.9375985	total: 135ms	remaining: 330ms
29:	learn: 19.8247516	total: 142ms	remaining: 331ms
30:	learn: 19.6261697	total: 147ms	remaining: 327ms
31:	learn: 19.4547236	total: 152ms	remaining: 323ms
32:	learn: 19.3157092	total: 157ms	remaining: 319ms
33:	learn: 19.1561419	total: 162ms	remaining: 314ms
34:	learn: 19.0453620	total: 167ms	remaining: 311ms
35:	learn: 18.8738574	total: 173ms	remaining: 307ms
36:	learn: 18.7072907	total: 178ms	remaining: 303ms
37:	learn: 18.5877943	total: 183ms	remaining: 299ms
38:	learn: 18.4436380	total: 188ms	remaining: 295ms
39:	learn: 18.3463356	total: 193ms	remaining: 290ms
40:	learn: 18.2008059	total: 198ms	remaining: 285ms
41:	learn: 18.0582079	total: 203ms	remaining: 280ms
42:	learn: 17.8891982	total: 208ms	remaining: 276ms
43:	learn: 17.7332246	total: 214ms	remaining: 272ms
44:	learn: 17.6206421	total: 218ms	remaining: 266ms
45:	learn: 17.4982800	total: 222ms	remaining: 260ms
46:	learn: 17.3970150	total: 226ms	remaining: 255ms
47:	learn: 17.3058203	total: 231ms	remaining: 250ms
48:	learn: 17.1789256	total: 235ms	remaining: 244ms
49:	learn: 17.0916229	total: 239ms	remaining: 239ms
50:	learn: 16.9859820	total: 243ms	remaining: 234ms
51:	learn: 16.8995582	total: 247ms	remaining: 228ms
52:	learn: 16.8137014	total: 251ms	remaining: 223ms
53:	learn: 16.7021451	total: 255ms	remaining: 217ms
54:	learn: 16.5895582	total: 259ms	remaining: 212ms
55:	learn: 16.5015639	total: 263ms	remaining: 207ms
56:	learn: 16.4356637	total: 268ms	remaining: 202ms
57:	learn: 16.3514525	total: 271ms	remaining: 197ms
58:	learn: 16.2401369	total: 276ms	remaining: 192ms
59:	learn: 16.1293223	total: 281ms	remaining: 187ms
60:	learn: 16.0271167	total: 285ms	remaining: 182ms
61:	learn: 15.9126257	total: 290ms	remaining: 178ms
62:	learn: 15.8391096	total: 295ms	remaining: 173ms
63:	learn: 15.7441773	total: 300ms	remaining: 169ms
64:	learn: 15.6885195	total: 304ms	remaining: 164ms
65:	learn: 15.6052039	total: 309ms	remaining: 159ms
66:	learn: 15.5074202	total: 319ms	remaining: 157ms
67:	learn: 15.4054338	total: 328ms	remaining: 154ms
68:	learn: 15.2885714	total: 336ms	remaining: 151ms
69:	learn: 15.2157472	total: 343ms	remaining: 147ms
70:	learn: 15.1031554	total: 349ms	remaining: 142ms
71:	learn: 15.0237470	total: 354ms	remaining: 138ms
72:	learn: 14.9756825	total: 359ms	remaining: 133ms
73:	learn: 14.8840596	total: 364ms	remaining: 128ms
74:	learn: 14.8077061	total: 370ms	remaining: 123ms
75:	learn: 14.7444437	total: 376ms	remaining: 119ms
76:	learn: 14.6751720	total: 381ms	remaining: 114ms
77:	learn: 14.5830333	total: 386ms	remaining: 109ms
78:	learn: 14.5241206	total: 391ms	remaining: 104ms
79:	learn: 14.4892731	total: 396ms	remaining: 99ms
80:	learn: 14.4256605	total: 401ms	remaining: 94ms
81:	learn: 14.3666860	total: 406ms	remaining: 89.1ms
82:	learn: 14.2938372	total: 411ms	remaining: 84.3ms
83:	learn: 14.2161532	total: 416ms	remaining: 79.2ms
84:	learn: 14.1582910	total: 420ms	remaining: 74.1ms
85:	learn: 14.1029153	total: 424ms	remaining: 69ms
86:	learn: 14.0475835	total: 428ms	remaining: 63.9ms
87:	learn: 13.9892661	total: 432ms	remaining: 58.9ms
88:	learn: 13.9481628	total: 436ms	remaining: 53.9ms
89:	learn: 13.8483991	total: 440ms	remaining: 48.9ms
90:	learn: 13.7775614	total: 444ms	remaining: 43.9ms
91:	learn: 13.7304585	total: 448ms	remaining: 38.9ms
92:	learn: 13.6783381	total: 452ms	remaining: 34ms
93:	learn: 13.6356964	total: 456ms	remaining: 29.1ms
94:	learn: 13.5924371	total: 460ms	remaining: 24.2ms
95:	learn: 13.5400746	total: 464ms	remaining: 19.3ms
96:	learn: 13.4897333	total: 469ms	remaining: 14.5ms
97:	learn: 13.4470321	total: 473ms	remaining: 9.65ms
98:	learn: 13.3856082	total: 477ms	remaining: 4.82ms
99:	learn: 13.3082371	total: 482ms	remaining: 0us
0:	learn: 43.0395283	total: 6.37ms	remaining: 631ms
1:	learn: 42.1130223	total: 11.5ms	remaining: 561ms
2:	learn: 41.1753409	total: 16.5ms	remaining: 535ms
3:	learn: 40.3637444	total: 21.6ms	remaining: 519ms
4:	learn: 39.6508088	total: 27ms	remaining: 513ms
5:	learn: 38.7217934	total: 32ms	remaining: 501ms
6:	learn: 37.8538055	total: 37.3ms	remaining: 496ms
7:	learn: 36.9793574	total: 42.7ms	remaining: 491ms
8:	learn: 36.3076984	total: 48.1ms	remaining: 486ms
9:	learn: 35.6673160	total: 53.2ms	remaining: 479ms
10:	learn: 34.8889800	total: 58.5ms	remaining: 473ms
11:	learn: 34.1675517	total: 63.3ms	remaining: 464ms
12:	learn: 33.6779564	total: 68.8ms	remaining: 461ms
13:	learn: 33.0710039	total: 74.2ms	remaining: 456ms
14:	learn: 32.4966674	total: 79.3ms	remaining: 449ms
15:	learn: 31.9492856	total: 83.8ms	remaining: 440ms
16:	learn: 31.5108129	total: 88.6ms	remaining: 432ms
17:	learn: 30.9804023	total: 93.5ms	remaining: 426ms
18:	learn: 30.4169089	total: 97.9ms	remaining: 417ms
19:	learn: 29.8930375	total: 103ms	remaining: 411ms
20:	learn: 29.3974421	total: 108ms	remaining: 404ms
21:	learn: 28.8792307	total: 113ms	remaining: 399ms
22:	learn: 28.3894474	total: 117ms	remaining: 392ms
23:	learn: 27.9921276	total: 121ms	remaining: 384ms
24:	learn: 27.6158887	total: 126ms	remaining: 378ms
25:	learn: 27.2866950	total: 131ms	remaining: 372ms
26:	learn: 26.8770708	total: 135ms	remaining: 365ms
27:	learn: 26.6233005	total: 139ms	remaining: 358ms
28:	learn: 26.2921934	total: 144ms	remaining: 352ms
29:	learn: 25.9156920	total: 149ms	remaining: 347ms
30:	learn: 25.5311106	total: 150ms	remaining: 335ms
31:	learn: 25.2178997	total: 155ms	remaining: 329ms
32:	learn: 24.8572196	total: 160ms	remaining: 324ms
33:	learn: 24.5849710	total: 164ms	remaining: 319ms
34:	learn: 24.2209190	total: 169ms	remaining: 313ms
35:	learn: 23.8708250	total: 173ms	remaining: 308ms
36:	learn: 23.5325279	total: 179ms	remaining: 304ms
37:	learn: 23.2116148	total: 187ms	remaining: 305ms
38:	learn: 22.9696787	total: 195ms	remaining: 304ms
39:	learn: 22.7936783	total: 202ms	remaining: 303ms
40:	learn: 22.6228847	total: 210ms	remaining: 302ms
41:	learn: 22.3691527	total: 215ms	remaining: 297ms
42:	learn: 22.1002173	total: 220ms	remaining: 292ms
43:	learn: 21.9157268	total: 225ms	remaining: 287ms
44:	learn: 21.7229102	total: 230ms	remaining: 281ms
45:	learn: 21.4642005	total: 236ms	remaining: 277ms
46:	learn: 21.3029442	total: 241ms	remaining: 272ms
47:	learn: 21.1469792	total: 246ms	remaining: 266ms
48:	learn: 20.9458235	total: 251ms	remaining: 261ms
49:	learn: 20.7335242	total: 256ms	remaining: 256ms
50:	learn: 20.5440269	total: 261ms	remaining: 251ms
51:	learn: 20.3661449	total: 266ms	remaining: 245ms
52:	learn: 20.2158134	total: 271ms	remaining: 241ms
53:	learn: 19.9934873	total: 277ms	remaining: 236ms
54:	learn: 19.7879739	total: 282ms	remaining: 230ms
55:	learn: 19.6630460	total: 286ms	remaining: 225ms
56:	learn: 19.5152729	total: 291ms	remaining: 219ms
57:	learn: 19.3581128	total: 295ms	remaining: 214ms
58:	learn: 19.2209303	total: 300ms	remaining: 208ms
59:	learn: 19.0965248	total: 304ms	remaining: 203ms
60:	learn: 19.0035954	total: 308ms	remaining: 197ms
61:	learn: 18.8554149	total: 313ms	remaining: 192ms
62:	learn: 18.7095427	total: 317ms	remaining: 186ms
63:	learn: 18.5751494	total: 321ms	remaining: 181ms
64:	learn: 18.4678251	total: 326ms	remaining: 175ms
65:	learn: 18.3500325	total: 330ms	remaining: 170ms
66:	learn: 18.2088983	total: 334ms	remaining: 165ms
67:	learn: 18.0737705	total: 339ms	remaining: 159ms
68:	learn: 17.9325058	total: 344ms	remaining: 154ms
69:	learn: 17.8003911	total: 348ms	remaining: 149ms
70:	learn: 17.7385366	total: 353ms	remaining: 144ms
71:	learn: 17.6106998	total: 357ms	remaining: 139ms
72:	learn: 17.4816270	total: 362ms	remaining: 134ms
73:	learn: 17.4025554	total: 366ms	remaining: 128ms
74:	learn: 17.2902108	total: 370ms	remaining: 123ms
75:	learn: 17.2158048	total: 375ms	remaining: 118ms
76:	learn: 17.1261053	total: 382ms	remaining: 114ms
77:	learn: 17.0308917	total: 389ms	remaining: 110ms
78:	learn: 16.9546705	total: 398ms	remaining: 106ms
79:	learn: 16.8319165	total: 404ms	remaining: 101ms
80:	learn: 16.7687017	total: 412ms	remaining: 96.6ms
81:	learn: 16.6972326	total: 417ms	remaining: 91.5ms
82:	learn: 16.6124580	total: 422ms	remaining: 86.4ms
83:	learn: 16.4999052	total: 427ms	remaining: 81.3ms
84:	learn: 16.4302484	total: 432ms	remaining: 76.2ms
85:	learn: 16.3201363	total: 437ms	remaining: 71.2ms
86:	learn: 16.2534314	total: 442ms	remaining: 66.1ms
87:	learn: 16.1720485	total: 447ms	remaining: 61ms
88:	learn: 16.0625751	total: 452ms	remaining: 55.9ms
89:	learn: 15.9135088	total: 457ms	remaining: 50.8ms
90:	learn: 15.8658863	total: 463ms	remaining: 45.7ms
91:	learn: 15.8066805	total: 468ms	remaining: 40.7ms
92:	learn: 15.7412103	total: 473ms	remaining: 35.6ms
93:	learn: 15.6542776	total: 479ms	remaining: 30.6ms
94:	learn: 15.5760334	total: 483ms	remaining: 25.4ms
95:	learn: 15.5434131	total: 487ms	remaining: 20.3ms
96:	learn: 15.4709561	total: 492ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 496ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 500ms	remaining: 5.05ms
99:	learn: 15.3106595	total: 505ms	remaining: 0us
0:	learn: 46.7142257	total: 5.23ms	remaining: 518ms
1:	learn: 45.7634153	total: 9.97ms	remaining: 489ms
2:	learn: 45.0054253	total: 14.9ms	remaining: 480ms
3:	learn: 44.2120432	total: 19.5ms	remaining: 468ms
4:	learn: 43.3960472	total: 26.5ms	remaining: 503ms
5:	learn: 42.8588120	total: 33.5ms	remaining: 525ms
6:	learn: 41.9533701	total: 41ms	remaining: 544ms
7:	learn: 41.2745030	total: 48.2ms	remaining: 554ms
8:	learn: 40.6797495	total: 56.3ms	remaining: 569ms
9:	learn: 39.9899571	total: 61.6ms	remaining: 554ms
10:	learn: 39.4682100	total: 67.2ms	remaining: 543ms
11:	learn: 39.0305595	total: 72.3ms	remaining: 530ms
12:	learn: 38.4200417	total: 77.5ms	remaining: 518ms
13:	learn: 37.8425194	total: 82.6ms	remaining: 508ms
14:	learn: 37.4203127	total: 88.1ms	remaining: 499ms
15:	learn: 36.9917688	total: 93ms	remaining: 488ms
16:	learn: 36.5544138	total: 98.2ms	remaining: 479ms
17:	learn: 36.0727019	total: 103ms	remaining: 469ms
18:	learn: 35.4835715	total: 107ms	remaining: 458ms
19:	learn: 34.9865654	total: 112ms	remaining: 448ms
20:	learn: 34.6063373	total: 117ms	remaining: 439ms
21:	learn: 34.0997289	total: 121ms	remaining: 430ms
22:	learn: 33.7313171	total: 127ms	remaining: 424ms
23:	learn: 33.3582000	total: 132ms	remaining: 418ms
24:	learn: 32.9432456	total: 136ms	remaining: 409ms
25:	learn: 32.5220888	total: 141ms	remaining: 400ms
26:	learn: 32.2172292	total: 145ms	remaining: 391ms
27:	learn: 31.8972904	total: 149ms	remaining: 383ms
28:	learn: 31.6405350	total: 153ms	remaining: 374ms
29:	learn: 31.4167702	total: 157ms	remaining: 366ms
30:	learn: 30.8541961	total: 158ms	remaining: 352ms
31:	learn: 30.5572111	total: 162ms	remaining: 345ms
32:	learn: 30.1700399	total: 166ms	remaining: 338ms
33:	learn: 29.8537271	total: 171ms	remaining: 331ms
34:	learn: 29.6192540	total: 175ms	remaining: 325ms
35:	learn: 29.3276362	total: 179ms	remaining: 319ms
36:	learn: 28.9985179	total: 184ms	remaining: 313ms
37:	learn: 28.7046880	total: 188ms	remaining: 307ms
38:	learn: 28.4412677	total: 192ms	remaining: 301ms
39:	learn: 28.1277292	total: 196ms	remaining: 294ms
40:	learn: 27.9000750	total: 200ms	remaining: 288ms
41:	learn: 27.5433162	total: 205ms	remaining: 283ms
42:	learn: 27.2493285	total: 209ms	remaining: 277ms
43:	learn: 26.9576632	total: 211ms	remaining: 268ms
44:	learn: 26.6177110	total: 215ms	remaining: 262ms
45:	learn: 26.2812456	total: 219ms	remaining: 257ms
46:	learn: 26.0803859	total: 223ms	remaining: 252ms
47:	learn: 25.9543581	total: 228ms	remaining: 247ms
48:	learn: 25.7951582	total: 233ms	remaining: 242ms
49:	learn: 25.6548184	total: 237ms	remaining: 237ms
50:	learn: 25.4010843	total: 242ms	remaining: 233ms
51:	learn: 24.9773937	total: 247ms	remaining: 228ms
52:	learn: 24.8026156	total: 252ms	remaining: 223ms
53:	learn: 24.5568053	total: 257ms	remaining: 219ms
54:	learn: 24.2281839	total: 267ms	remaining: 218ms
55:	learn: 23.9202795	total: 277ms	remaining: 217ms
56:	learn: 23.7625591	total: 284ms	remaining: 214ms
57:	learn: 23.5429721	total: 291ms	remaining: 211ms
58:	learn: 23.3175893	total: 296ms	remaining: 206ms
59:	learn: 23.2035130	total: 301ms	remaining: 201ms
60:	learn: 23.0232450	total: 306ms	remaining: 196ms
61:	learn: 22.8384958	total: 311ms	remaining: 191ms
62:	learn: 22.6499902	total: 316ms	remaining: 186ms
63:	learn: 22.4577426	total: 321ms	remaining: 181ms
64:	learn: 22.3333158	total: 326ms	remaining: 176ms
65:	learn: 22.2064131	total: 332ms	remaining: 171ms
66:	learn: 22.1434971	total: 337ms	remaining: 166ms
67:	learn: 21.9596519	total: 342ms	remaining: 161ms
68:	learn: 21.8475576	total: 347ms	remaining: 156ms
69:	learn: 21.6954745	total: 352ms	remaining: 151ms
70:	learn: 21.5635976	total: 358ms	remaining: 146ms
71:	learn: 21.4588506	total: 363ms	remaining: 141ms
72:	learn: 21.3527268	total: 367ms	remaining: 136ms
73:	learn: 21.2661288	total: 371ms	remaining: 130ms
74:	learn: 21.1817333	total: 374ms	remaining: 125ms
75:	learn: 21.0527553	total: 379ms	remaining: 120ms
76:	learn: 20.9229021	total: 384ms	remaining: 115ms
77:	learn: 20.7563946	total: 387ms	remaining: 109ms
78:	learn: 20.6569831	total: 391ms	remaining: 104ms
79:	learn: 20.4982663	total: 395ms	remaining: 98.9ms
80:	learn: 20.3185460	total: 400ms	remaining: 93.8ms
81:	learn: 20.2096241	total: 404ms	remaining: 88.7ms
82:	learn: 20.1274891	total: 409ms	remaining: 83.7ms
83:	learn: 20.0740139	total: 413ms	remaining: 78.7ms
84:	learn: 19.9630699	total: 418ms	remaining: 73.7ms
85:	learn: 19.8753899	total: 422ms	remaining: 68.8ms
86:	learn: 19.6563612	total: 427ms	remaining: 63.8ms
87:	learn: 19.4680232	total: 432ms	remaining: 58.9ms
88:	learn: 19.3503431	total: 437ms	remaining: 54ms
89:	learn: 19.2221379	total: 441ms	remaining: 49ms
90:	learn: 19.0732542	total: 445ms	remaining: 44.1ms
91:	learn: 18.9825190	total: 450ms	remaining: 39.1ms
92:	learn: 18.8839009	total: 455ms	remaining: 34.2ms
93:	learn: 18.8012219	total: 463ms	remaining: 29.5ms
94:	learn: 18.7172713	total: 470ms	remaining: 24.7ms
95:	learn: 18.6201170	total: 478ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 484ms	remaining: 15ms
97:	learn: 18.3833356	total: 492ms	remaining: 10ms
98:	learn: 18.3289700	total: 497ms	remaining: 5.02ms
99:	learn: 18.2227333	total: 502ms	remaining: 0us
0:	learn: 46.3764524	total: 5.85ms	remaining: 579ms
1:	learn: 45.5561269	total: 10.7ms	remaining: 525ms
2:	learn: 44.8811245	total: 14.8ms	remaining: 479ms
3:	learn: 44.0788617	total: 19ms	remaining: 456ms
4:	learn: 43.3619790	total: 23.4ms	remaining: 445ms
5:	learn: 42.6912112	total: 27.4ms	remaining: 430ms
6:	learn: 42.2292118	total: 31ms	remaining: 412ms
7:	learn: 41.7725191	total: 35.1ms	remaining: 404ms
8:	learn: 41.1676614	total: 38.9ms	remaining: 394ms
9:	learn: 40.5771076	total: 43.1ms	remaining: 388ms
10:	learn: 39.8343757	total: 47.5ms	remaining: 384ms
11:	learn: 39.3761142	total: 51.4ms	remaining: 377ms
12:	learn: 38.5254692	total: 55.8ms	remaining: 374ms
13:	learn: 37.9629555	total: 60.1ms	remaining: 369ms
14:	learn: 37.4418438	total: 63.9ms	remaining: 362ms
15:	learn: 37.0507283	total: 67.6ms	remaining: 355ms
16:	learn: 36.6264217	total: 72.1ms	remaining: 352ms
17:	learn: 36.1114940	total: 76.9ms	remaining: 350ms
18:	learn: 35.7193862	total: 81.2ms	remaining: 346ms
19:	learn: 35.3301177	total: 85.6ms	remaining: 342ms
20:	learn: 35.0598280	total: 89.9ms	remaining: 338ms
21:	learn: 34.5469736	total: 94.7ms	remaining: 336ms
22:	learn: 34.2064215	total: 98.9ms	remaining: 331ms
23:	learn: 33.7280710	total: 103ms	remaining: 327ms
24:	learn: 33.3282940	total: 111ms	remaining: 332ms
25:	learn: 32.8478961	total: 118ms	remaining: 336ms
26:	learn: 32.5722164	total: 126ms	remaining: 342ms
27:	learn: 32.2457019	total: 133ms	remaining: 341ms
28:	learn: 31.9230495	total: 140ms	remaining: 343ms
29:	learn: 31.4311611	total: 146ms	remaining: 340ms
30:	learn: 30.9179052	total: 151ms	remaining: 336ms
31:	learn: 30.6201141	total: 156ms	remaining: 332ms
32:	learn: 30.3421106	total: 162ms	remaining: 329ms
33:	learn: 29.9885373	total: 167ms	remaining: 325ms
34:	learn: 29.7462780	total: 172ms	remaining: 320ms
35:	learn: 29.3607153	total: 179ms	remaining: 317ms
36:	learn: 29.1793078	total: 184ms	remaining: 313ms
37:	learn: 28.9276538	total: 189ms	remaining: 309ms
38:	learn: 28.6903934	total: 194ms	remaining: 304ms
39:	learn: 28.2095033	total: 199ms	remaining: 299ms
40:	learn: 27.7990608	total: 204ms	remaining: 294ms
41:	learn: 27.5406632	total: 210ms	remaining: 289ms
42:	learn: 27.2575376	total: 214ms	remaining: 283ms
43:	learn: 26.9741707	total: 218ms	remaining: 277ms
44:	learn: 26.6606899	total: 222ms	remaining: 271ms
45:	learn: 26.4015833	total: 226ms	remaining: 265ms
46:	learn: 26.1828993	total: 230ms	remaining: 259ms
47:	learn: 26.0233709	total: 233ms	remaining: 252ms
48:	learn: 25.9300399	total: 236ms	remaining: 246ms
49:	learn: 25.5861489	total: 241ms	remaining: 241ms
50:	learn: 25.4322012	total: 244ms	remaining: 235ms
51:	learn: 25.1595644	total: 255ms	remaining: 235ms
52:	learn: 24.9955303	total: 259ms	remaining: 230ms
53:	learn: 24.7273966	total: 263ms	remaining: 224ms
54:	learn: 24.5747978	total: 268ms	remaining: 219ms
55:	learn: 24.3807977	total: 272ms	remaining: 214ms
56:	learn: 24.1689569	total: 276ms	remaining: 208ms
57:	learn: 23.9898221	total: 281ms	remaining: 203ms
58:	learn: 23.7566414	total: 285ms	remaining: 198ms
59:	learn: 23.6641165	total: 289ms	remaining: 193ms
60:	learn: 23.5658066	total: 294ms	remaining: 188ms
61:	learn: 23.4338851	total: 298ms	remaining: 183ms
62:	learn: 23.2408837	total: 302ms	remaining: 178ms
63:	learn: 23.0642038	total: 309ms	remaining: 174ms
64:	learn: 22.9032045	total: 316ms	remaining: 170ms
65:	learn: 22.7736138	total: 325ms	remaining: 167ms
66:	learn: 22.6836443	total: 330ms	remaining: 163ms
67:	learn: 22.5983654	total: 338ms	remaining: 159ms
68:	learn: 22.4419813	total: 343ms	remaining: 154ms
69:	learn: 22.2863339	total: 348ms	remaining: 149ms
70:	learn: 22.1792943	total: 353ms	remaining: 144ms
71:	learn: 22.1130574	total: 358ms	remaining: 139ms
72:	learn: 21.9858161	total: 364ms	remaining: 135ms
73:	learn: 21.8577784	total: 369ms	remaining: 130ms
74:	learn: 21.7845222	total: 374ms	remaining: 125ms
75:	learn: 21.6831390	total: 379ms	remaining: 120ms
76:	learn: 21.6292521	total: 384ms	remaining: 115ms
77:	learn: 21.5789330	total: 389ms	remaining: 110ms
78:	learn: 21.5420942	total: 395ms	remaining: 105ms
79:	learn: 21.4280939	total: 399ms	remaining: 99.8ms
80:	learn: 21.3641165	total: 404ms	remaining: 94.8ms
81:	learn: 21.2734814	total: 410ms	remaining: 90ms
82:	learn: 21.2220323	total: 414ms	remaining: 84.8ms
83:	learn: 21.0625792	total: 418ms	remaining: 79.6ms
84:	learn: 20.9488320	total: 422ms	remaining: 74.5ms
85:	learn: 20.8504255	total: 426ms	remaining: 69.4ms
86:	learn: 20.7848510	total: 430ms	remaining: 64.3ms
87:	learn: 20.7247442	total: 434ms	remaining: 59.2ms
88:	learn: 20.5698590	total: 438ms	remaining: 54.2ms
89:	learn: 20.4067620	total: 443ms	remaining: 49.2ms
90:	learn: 20.3062482	total: 446ms	remaining: 44.2ms
91:	learn: 20.2029696	total: 450ms	remaining: 39.2ms
92:	learn: 20.1384849	total: 455ms	remaining: 34.2ms
93:	learn: 20.0260709	total: 459ms	remaining: 29.3ms
94:	learn: 19.9122100	total: 463ms	remaining: 24.4ms
95:	learn: 19.8648487	total: 468ms	remaining: 19.5ms
96:	learn: 19.8207072	total: 472ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 477ms	remaining: 9.73ms
98:	learn: 19.7042438	total: 481ms	remaining: 4.86ms
99:	learn: 19.6546645	total: 485ms	remaining: 0us
0:	learn: 47.0239288	total: 5.3ms	remaining: 524ms
1:	learn: 46.2253829	total: 10.3ms	remaining: 505ms
2:	learn: 45.5580301	total: 15.3ms	remaining: 494ms
3:	learn: 44.7273237	total: 20.3ms	remaining: 487ms
4:	learn: 43.8867421	total: 25.3ms	remaining: 480ms
5:	learn: 43.3615911	total: 30.6ms	remaining: 479ms
6:	learn: 42.8548390	total: 35.6ms	remaining: 473ms
7:	learn: 42.1606758	total: 40.7ms	remaining: 469ms
8:	learn: 41.6625870	total: 46.3ms	remaining: 468ms
9:	learn: 40.9497092	total: 51ms	remaining: 459ms
10:	learn: 40.1886318	total: 55.2ms	remaining: 446ms
11:	learn: 39.7456423	total: 60.7ms	remaining: 445ms
12:	learn: 39.1171373	total: 66ms	remaining: 442ms
13:	learn: 38.5451069	total: 70.7ms	remaining: 434ms
14:	learn: 38.0155834	total: 74.5ms	remaining: 422ms
15:	learn: 37.5631354	total: 79.1ms	remaining: 415ms
16:	learn: 37.1030023	total: 82.9ms	remaining: 405ms
17:	learn: 36.4563029	total: 86.7ms	remaining: 395ms
18:	learn: 36.0160976	total: 90.6ms	remaining: 386ms
19:	learn: 35.5079827	total: 94.8ms	remaining: 379ms
20:	learn: 35.2111885	total: 98.8ms	remaining: 372ms
21:	learn: 34.9397465	total: 103ms	remaining: 365ms
22:	learn: 34.5270048	total: 107ms	remaining: 358ms
23:	learn: 34.0169260	total: 111ms	remaining: 352ms
24:	learn: 33.7454892	total: 115ms	remaining: 345ms
25:	learn: 33.2648157	total: 119ms	remaining: 339ms
26:	learn: 32.8899427	total: 123ms	remaining: 333ms
27:	learn: 32.6185050	total: 127ms	remaining: 326ms
28:	learn: 32.3528531	total: 131ms	remaining: 321ms
29:	learn: 32.0859923	total: 135ms	remaining: 316ms
30:	learn: 31.6511144	total: 140ms	remaining: 311ms
31:	learn: 31.2571765	total: 144ms	remaining: 307ms
32:	learn: 30.9770049	total: 149ms	remaining: 304ms
33:	learn: 30.6084872	total: 154ms	remaining: 299ms
34:	learn: 30.3448632	total: 159ms	remaining: 295ms
35:	learn: 30.0360942	total: 164ms	remaining: 292ms
36:	learn: 29.6648968	total: 170ms	remaining: 289ms
37:	learn: 29.3165114	total: 179ms	remaining: 291ms
38:	learn: 29.0829198	total: 189ms	remaining: 296ms
39:	learn: 28.7752064	total: 196ms	remaining: 294ms
40:	learn: 28.3622191	total: 204ms	remaining: 293ms
41:	learn: 28.1346631	total: 209ms	remaining: 289ms
42:	learn: 27.9585719	total: 215ms	remaining: 285ms
43:	learn: 27.6565566	total: 220ms	remaining: 280ms
44:	learn: 27.3616172	total: 225ms	remaining: 275ms
45:	learn: 27.0658637	total: 230ms	remaining: 270ms
46:	learn: 26.8660382	total: 236ms	remaining: 266ms
47:	learn: 26.6536078	total: 240ms	remaining: 260ms
48:	learn: 26.3524440	total: 246ms	remaining: 256ms
49:	learn: 26.1595277	total: 251ms	remaining: 251ms
50:	learn: 25.9273523	total: 255ms	remaining: 245ms
51:	learn: 25.7195580	total: 261ms	remaining: 241ms
52:	learn: 25.5730225	total: 266ms	remaining: 236ms
53:	learn: 25.3455276	total: 271ms	remaining: 231ms
54:	learn: 25.2289675	total: 275ms	remaining: 225ms
55:	learn: 25.0133024	total: 279ms	remaining: 220ms
56:	learn: 24.8406714	total: 283ms	remaining: 214ms
57:	learn: 24.6367857	total: 287ms	remaining: 208ms
58:	learn: 24.5338177	total: 291ms	remaining: 202ms
59:	learn: 24.3799964	total: 295ms	remaining: 197ms
60:	learn: 24.1447492	total: 300ms	remaining: 192ms
61:	learn: 23.9880495	total: 304ms	remaining: 186ms
62:	learn: 23.7140630	total: 308ms	remaining: 181ms
63:	learn: 23.5003791	total: 312ms	remaining: 176ms
64:	learn: 23.3207645	total: 317ms	remaining: 170ms
65:	learn: 23.1958356	total: 321ms	remaining: 165ms
66:	learn: 23.0471302	total: 325ms	remaining: 160ms
67:	learn: 22.8977183	total: 329ms	remaining: 155ms
68:	learn: 22.7187400	total: 333ms	remaining: 150ms
69:	learn: 22.6523405	total: 338ms	remaining: 145ms
70:	learn: 22.4767453	total: 343ms	remaining: 140ms
71:	learn: 22.3243677	total: 347ms	remaining: 135ms
72:	learn: 22.2133096	total: 352ms	remaining: 130ms
73:	learn: 22.1151713	total: 356ms	remaining: 125ms
74:	learn: 22.0296666	total: 361ms	remaining: 120ms
75:	learn: 21.9195980	total: 365ms	remaining: 115ms
76:	learn: 21.8401730	total: 370ms	remaining: 110ms
77:	learn: 21.8079797	total: 378ms	remaining: 107ms
78:	learn: 21.7274109	total: 385ms	remaining: 102ms
79:	learn: 21.6663032	total: 395ms	remaining: 98.8ms
80:	learn: 21.5633117	total: 403ms	remaining: 94.6ms
81:	learn: 21.4542467	total: 409ms	remaining: 89.8ms
82:	learn: 21.3177957	total: 415ms	remaining: 84.9ms
83:	learn: 21.1289167	total: 420ms	remaining: 80.1ms
84:	learn: 21.0297368	total: 440ms	remaining: 77.7ms
85:	learn: 20.9089564	total: 446ms	remaining: 72.6ms
86:	learn: 20.7653988	total: 451ms	remaining: 67.4ms
87:	learn: 20.6521894	total: 456ms	remaining: 62.1ms
88:	learn: 20.5193021	total: 461ms	remaining: 56.9ms
89:	learn: 20.4361620	total: 466ms	remaining: 51.7ms
90:	learn: 20.3546710	total: 471ms	remaining: 46.6ms
91:	learn: 20.2513296	total: 476ms	remaining: 41.4ms
92:	learn: 20.1605550	total: 480ms	remaining: 36.2ms
93:	learn: 20.0515942	total: 484ms	remaining: 30.9ms
94:	learn: 19.9800764	total: 489ms	remaining: 25.7ms
95:	learn: 19.8996532	total: 493ms	remaining: 20.5ms
96:	learn: 19.8450910	total: 497ms	remaining: 15.4ms
97:	learn: 19.7887346	total: 502ms	remaining: 10.2ms
98:	learn: 19.7230872	total: 506ms	remaining: 5.11ms
99:	learn: 19.6328825	total: 509ms	remaining: 0us
0:	learn: 27.5585353	total: 4.79ms	remaining: 474ms
1:	learn: 27.1656995	total: 9.18ms	remaining: 450ms
2:	learn: 26.8590175	total: 13.9ms	remaining: 449ms
3:	learn: 26.5818406	total: 18.4ms	remaining: 441ms
4:	learn: 26.1148663	total: 22.7ms	remaining: 430ms
5:	learn: 25.7690484	total: 27ms	remaining: 423ms
6:	learn: 25.3489206	total: 34.1ms	remaining: 453ms
7:	learn: 24.9542406	total: 41.3ms	remaining: 475ms
8:	learn: 24.6777517	total: 49.2ms	remaining: 497ms
9:	learn: 24.3242344	total: 55.9ms	remaining: 504ms
10:	learn: 24.0383073	total: 63.1ms	remaining: 510ms
11:	learn: 23.7383420	total: 68ms	remaining: 499ms
12:	learn: 23.3461670	total: 73.3ms	remaining: 491ms
13:	learn: 23.0928636	total: 78.3ms	remaining: 481ms
14:	learn: 22.8770414	total: 83.4ms	remaining: 473ms
15:	learn: 22.6323214	total: 88.8ms	remaining: 466ms
16:	learn: 22.3597072	total: 94.1ms	remaining: 460ms
17:	learn: 22.1079813	total: 99.5ms	remaining: 453ms
18:	learn: 21.8421199	total: 105ms	remaining: 447ms
19:	learn: 21.6576508	total: 110ms	remaining: 440ms
20:	learn: 21.4301268	total: 115ms	remaining: 432ms
21:	learn: 21.2287388	total: 120ms	remaining: 425ms
22:	learn: 21.0553872	total: 126ms	remaining: 421ms
23:	learn: 20.8977091	total: 131ms	remaining: 414ms
24:	learn: 20.6619051	total: 135ms	remaining: 406ms
25:	learn: 20.5040955	total: 140ms	remaining: 397ms
26:	learn: 20.3181195	total: 143ms	remaining: 388ms
27:	learn: 20.0869436	total: 148ms	remaining: 379ms
28:	learn: 19.9375985	total: 152ms	remaining: 371ms
29:	learn: 19.8247516	total: 156ms	remaining: 363ms
30:	learn: 19.6261697	total: 159ms	remaining: 355ms
31:	learn: 19.4547236	total: 163ms	remaining: 347ms
32:	learn: 19.3157092	total: 167ms	remaining: 339ms
33:	learn: 19.1561419	total: 171ms	remaining: 333ms
34:	learn: 19.0453620	total: 175ms	remaining: 326ms
35:	learn: 18.8738574	total: 180ms	remaining: 319ms
36:	learn: 18.7072907	total: 183ms	remaining: 312ms
37:	learn: 18.5877943	total: 188ms	remaining: 306ms
38:	learn: 18.4436380	total: 192ms	remaining: 300ms
39:	learn: 18.3463356	total: 196ms	remaining: 294ms
40:	learn: 18.2008059	total: 200ms	remaining: 288ms
41:	learn: 18.0582079	total: 204ms	remaining: 282ms
42:	learn: 17.8891982	total: 208ms	remaining: 276ms
43:	learn: 17.7332246	total: 213ms	remaining: 271ms
44:	learn: 17.6206421	total: 217ms	remaining: 265ms
45:	learn: 17.4982800	total: 221ms	remaining: 259ms
46:	learn: 17.3970150	total: 225ms	remaining: 254ms
47:	learn: 17.3058203	total: 230ms	remaining: 249ms
48:	learn: 17.1789256	total: 235ms	remaining: 244ms
49:	learn: 17.0916229	total: 239ms	remaining: 239ms
50:	learn: 16.9859820	total: 244ms	remaining: 234ms
51:	learn: 16.8995582	total: 248ms	remaining: 229ms
52:	learn: 16.8137014	total: 252ms	remaining: 224ms
53:	learn: 16.7021451	total: 257ms	remaining: 219ms
54:	learn: 16.5895582	total: 261ms	remaining: 214ms
55:	learn: 16.5015639	total: 269ms	remaining: 211ms
56:	learn: 16.4356637	total: 277ms	remaining: 209ms
57:	learn: 16.3514525	total: 287ms	remaining: 208ms
58:	learn: 16.2401369	total: 292ms	remaining: 203ms
59:	learn: 16.1293223	total: 299ms	remaining: 199ms
60:	learn: 16.0271167	total: 304ms	remaining: 194ms
61:	learn: 15.9126257	total: 309ms	remaining: 190ms
62:	learn: 15.8391096	total: 315ms	remaining: 185ms
63:	learn: 15.7441773	total: 320ms	remaining: 180ms
64:	learn: 15.6885195	total: 325ms	remaining: 175ms
65:	learn: 15.6052039	total: 330ms	remaining: 170ms
66:	learn: 15.5074202	total: 335ms	remaining: 165ms
67:	learn: 15.4054338	total: 341ms	remaining: 160ms
68:	learn: 15.2885714	total: 346ms	remaining: 155ms
69:	learn: 15.2157472	total: 351ms	remaining: 150ms
70:	learn: 15.1031554	total: 356ms	remaining: 145ms
71:	learn: 15.0237470	total: 362ms	remaining: 141ms
72:	learn: 14.9756825	total: 366ms	remaining: 135ms
73:	learn: 14.8840596	total: 370ms	remaining: 130ms
74:	learn: 14.8077061	total: 374ms	remaining: 125ms
75:	learn: 14.7444437	total: 378ms	remaining: 119ms
76:	learn: 14.6751720	total: 382ms	remaining: 114ms
77:	learn: 14.5830333	total: 386ms	remaining: 109ms
78:	learn: 14.5241206	total: 390ms	remaining: 104ms
79:	learn: 14.4892731	total: 394ms	remaining: 98.5ms
80:	learn: 14.4256605	total: 398ms	remaining: 93.4ms
81:	learn: 14.3666860	total: 402ms	remaining: 88.3ms
82:	learn: 14.2938372	total: 406ms	remaining: 83.1ms
83:	learn: 14.2161532	total: 410ms	remaining: 78.1ms
84:	learn: 14.1582910	total: 414ms	remaining: 73.1ms
85:	learn: 14.1029153	total: 418ms	remaining: 68.1ms
86:	learn: 14.0475835	total: 422ms	remaining: 63.1ms
87:	learn: 13.9892661	total: 427ms	remaining: 58.2ms
88:	learn: 13.9481628	total: 432ms	remaining: 53.3ms
89:	learn: 13.8483991	total: 436ms	remaining: 48.5ms
90:	learn: 13.7775614	total: 441ms	remaining: 43.6ms
91:	learn: 13.7304585	total: 446ms	remaining: 38.8ms
92:	learn: 13.6783381	total: 450ms	remaining: 33.9ms
93:	learn: 13.6356964	total: 455ms	remaining: 29ms
94:	learn: 13.5924371	total: 460ms	remaining: 24.2ms
95:	learn: 13.5400746	total: 467ms	remaining: 19.5ms
96:	learn: 13.4897333	total: 474ms	remaining: 14.7ms
97:	learn: 13.4470321	total: 483ms	remaining: 9.86ms
98:	learn: 13.3856082	total: 489ms	remaining: 4.94ms
99:	learn: 13.3082371	total: 496ms	remaining: 0us
0:	learn: 43.0395283	total: 5.61ms	remaining: 556ms
1:	learn: 42.1130223	total: 10.5ms	remaining: 515ms
2:	learn: 41.1753409	total: 15.2ms	remaining: 491ms
3:	learn: 40.3637444	total: 20ms	remaining: 481ms
4:	learn: 39.6508088	total: 25.3ms	remaining: 481ms
5:	learn: 38.7217934	total: 30.5ms	remaining: 478ms
6:	learn: 37.8538055	total: 34.5ms	remaining: 458ms
7:	learn: 36.9793574	total: 38.7ms	remaining: 445ms
8:	learn: 36.3076984	total: 43ms	remaining: 435ms
9:	learn: 35.6673160	total: 46.9ms	remaining: 422ms
10:	learn: 34.8889800	total: 50.9ms	remaining: 412ms
11:	learn: 34.1675517	total: 54.6ms	remaining: 401ms
12:	learn: 33.6779564	total: 59ms	remaining: 395ms
13:	learn: 33.0710039	total: 63.3ms	remaining: 389ms
14:	learn: 32.4966674	total: 67.4ms	remaining: 382ms
15:	learn: 31.9492856	total: 71.4ms	remaining: 375ms
16:	learn: 31.5108129	total: 75.6ms	remaining: 369ms
17:	learn: 30.9804023	total: 79.7ms	remaining: 363ms
18:	learn: 30.4169089	total: 83.6ms	remaining: 356ms
19:	learn: 29.8930375	total: 87.6ms	remaining: 350ms
20:	learn: 29.3974421	total: 92.1ms	remaining: 346ms
21:	learn: 28.8792307	total: 96.3ms	remaining: 342ms
22:	learn: 28.3894474	total: 101ms	remaining: 338ms
23:	learn: 27.9921276	total: 105ms	remaining: 334ms
24:	learn: 27.6158887	total: 110ms	remaining: 331ms
25:	learn: 27.2866950	total: 115ms	remaining: 328ms
26:	learn: 26.8770708	total: 120ms	remaining: 325ms
27:	learn: 26.6233005	total: 125ms	remaining: 321ms
28:	learn: 26.2921934	total: 130ms	remaining: 319ms
29:	learn: 25.9156920	total: 138ms	remaining: 322ms
30:	learn: 25.5311106	total: 143ms	remaining: 317ms
31:	learn: 25.2178997	total: 152ms	remaining: 324ms
32:	learn: 24.8572196	total: 160ms	remaining: 325ms
33:	learn: 24.5849710	total: 168ms	remaining: 326ms
34:	learn: 24.2209190	total: 173ms	remaining: 322ms
35:	learn: 23.8708250	total: 178ms	remaining: 317ms
36:	learn: 23.5325279	total: 184ms	remaining: 313ms
37:	learn: 23.2116148	total: 189ms	remaining: 308ms
38:	learn: 22.9696787	total: 194ms	remaining: 304ms
39:	learn: 22.7936783	total: 199ms	remaining: 299ms
40:	learn: 22.6228847	total: 204ms	remaining: 294ms
41:	learn: 22.3691527	total: 209ms	remaining: 289ms
42:	learn: 22.1002173	total: 215ms	remaining: 285ms
43:	learn: 21.9157268	total: 220ms	remaining: 280ms
44:	learn: 21.7229102	total: 224ms	remaining: 274ms
45:	learn: 21.4642005	total: 230ms	remaining: 270ms
46:	learn: 21.3029442	total: 236ms	remaining: 266ms
47:	learn: 21.1469792	total: 240ms	remaining: 260ms
48:	learn: 20.9458235	total: 244ms	remaining: 254ms
49:	learn: 20.7335242	total: 263ms	remaining: 263ms
50:	learn: 20.5440269	total: 268ms	remaining: 257ms
51:	learn: 20.3661449	total: 272ms	remaining: 251ms
52:	learn: 20.2158134	total: 276ms	remaining: 245ms
53:	learn: 19.9934873	total: 281ms	remaining: 239ms
54:	learn: 19.7879739	total: 286ms	remaining: 234ms
55:	learn: 19.6630460	total: 291ms	remaining: 228ms
56:	learn: 19.5152729	total: 295ms	remaining: 223ms
57:	learn: 19.3581128	total: 301ms	remaining: 218ms
58:	learn: 19.2209303	total: 306ms	remaining: 212ms
59:	learn: 19.0965248	total: 311ms	remaining: 207ms
60:	learn: 19.0035954	total: 315ms	remaining: 202ms
61:	learn: 18.8554149	total: 320ms	remaining: 196ms
62:	learn: 18.7095427	total: 324ms	remaining: 190ms
63:	learn: 18.5751494	total: 329ms	remaining: 185ms
64:	learn: 18.4678251	total: 337ms	remaining: 181ms
65:	learn: 18.3500325	total: 344ms	remaining: 177ms
66:	learn: 18.2088983	total: 353ms	remaining: 174ms
67:	learn: 18.0737705	total: 359ms	remaining: 169ms
68:	learn: 17.9325058	total: 366ms	remaining: 164ms
69:	learn: 17.8003911	total: 371ms	remaining: 159ms
70:	learn: 17.7385366	total: 376ms	remaining: 154ms
71:	learn: 17.6106998	total: 381ms	remaining: 148ms
72:	learn: 17.4816270	total: 387ms	remaining: 143ms
73:	learn: 17.4025554	total: 392ms	remaining: 138ms
74:	learn: 17.2902108	total: 397ms	remaining: 132ms
75:	learn: 17.2158048	total: 402ms	remaining: 127ms
76:	learn: 17.1261053	total: 408ms	remaining: 122ms
77:	learn: 17.0308917	total: 413ms	remaining: 116ms
78:	learn: 16.9546705	total: 417ms	remaining: 111ms
79:	learn: 16.8319165	total: 422ms	remaining: 105ms
80:	learn: 16.7687017	total: 426ms	remaining: 100ms
81:	learn: 16.6972326	total: 431ms	remaining: 94.6ms
82:	learn: 16.6124580	total: 436ms	remaining: 89.3ms
83:	learn: 16.4999052	total: 442ms	remaining: 84.1ms
84:	learn: 16.4302484	total: 447ms	remaining: 78.9ms
85:	learn: 16.3201363	total: 451ms	remaining: 73.5ms
86:	learn: 16.2534314	total: 456ms	remaining: 68.1ms
87:	learn: 16.1720485	total: 460ms	remaining: 62.7ms
88:	learn: 16.0625751	total: 464ms	remaining: 57.4ms
89:	learn: 15.9135088	total: 468ms	remaining: 52ms
90:	learn: 15.8658863	total: 473ms	remaining: 46.7ms
91:	learn: 15.8066805	total: 477ms	remaining: 41.5ms
92:	learn: 15.7412103	total: 481ms	remaining: 36.2ms
93:	learn: 15.6542776	total: 485ms	remaining: 31ms
94:	learn: 15.5760334	total: 489ms	remaining: 25.8ms
95:	learn: 15.5434131	total: 494ms	remaining: 20.6ms
96:	learn: 15.4709561	total: 499ms	remaining: 15.4ms
97:	learn: 15.4449618	total: 503ms	remaining: 10.3ms
98:	learn: 15.3752761	total: 508ms	remaining: 5.13ms
99:	learn: 15.3106595	total: 512ms	remaining: 0us
0:	learn: 46.7142257	total: 5.53ms	remaining: 547ms
1:	learn: 45.7634153	total: 10.7ms	remaining: 522ms
2:	learn: 45.0054253	total: 16.2ms	remaining: 525ms
3:	learn: 44.2120432	total: 21.5ms	remaining: 516ms
4:	learn: 43.3960472	total: 26.5ms	remaining: 504ms
5:	learn: 42.8588120	total: 31.8ms	remaining: 499ms
6:	learn: 41.9533701	total: 37.2ms	remaining: 494ms
7:	learn: 41.2745030	total: 42.2ms	remaining: 485ms
8:	learn: 40.6797495	total: 47ms	remaining: 475ms
9:	learn: 39.9899571	total: 52.8ms	remaining: 475ms
10:	learn: 39.4682100	total: 58.2ms	remaining: 471ms
11:	learn: 39.0305595	total: 62.2ms	remaining: 456ms
12:	learn: 38.4200417	total: 66.4ms	remaining: 444ms
13:	learn: 37.8425194	total: 70.6ms	remaining: 434ms
14:	learn: 37.4203127	total: 74.6ms	remaining: 422ms
15:	learn: 36.9917688	total: 78.4ms	remaining: 412ms
16:	learn: 36.5544138	total: 82.6ms	remaining: 403ms
17:	learn: 36.0727019	total: 86.7ms	remaining: 395ms
18:	learn: 35.4835715	total: 91.2ms	remaining: 389ms
19:	learn: 34.9865654	total: 95.2ms	remaining: 381ms
20:	learn: 34.6063373	total: 99.3ms	remaining: 374ms
21:	learn: 34.0997289	total: 104ms	remaining: 368ms
22:	learn: 33.7313171	total: 108ms	remaining: 361ms
23:	learn: 33.3582000	total: 112ms	remaining: 355ms
24:	learn: 32.9432456	total: 116ms	remaining: 349ms
25:	learn: 32.5220888	total: 120ms	remaining: 342ms
26:	learn: 32.2172292	total: 124ms	remaining: 336ms
27:	learn: 31.8972904	total: 129ms	remaining: 331ms
28:	learn: 31.6405350	total: 133ms	remaining: 326ms
29:	learn: 31.4167702	total: 138ms	remaining: 321ms
30:	learn: 30.8541961	total: 140ms	remaining: 311ms
31:	learn: 30.5572111	total: 144ms	remaining: 306ms
32:	learn: 30.1700399	total: 149ms	remaining: 302ms
33:	learn: 29.8537271	total: 153ms	remaining: 297ms
34:	learn: 29.6192540	total: 158ms	remaining: 293ms
35:	learn: 29.3276362	total: 163ms	remaining: 289ms
36:	learn: 28.9985179	total: 170ms	remaining: 289ms
37:	learn: 28.7046880	total: 177ms	remaining: 290ms
38:	learn: 28.4412677	total: 187ms	remaining: 292ms
39:	learn: 28.1277292	total: 194ms	remaining: 292ms
40:	learn: 27.9000750	total: 201ms	remaining: 289ms
41:	learn: 27.5433162	total: 206ms	remaining: 284ms
42:	learn: 27.2493285	total: 211ms	remaining: 280ms
43:	learn: 26.9576632	total: 213ms	remaining: 271ms
44:	learn: 26.6177110	total: 218ms	remaining: 267ms
45:	learn: 26.2812456	total: 224ms	remaining: 263ms
46:	learn: 26.0803859	total: 229ms	remaining: 258ms
47:	learn: 25.9543581	total: 234ms	remaining: 253ms
48:	learn: 25.7951582	total: 240ms	remaining: 249ms
49:	learn: 25.6548184	total: 245ms	remaining: 245ms
50:	learn: 25.4010843	total: 250ms	remaining: 240ms
51:	learn: 24.9773937	total: 254ms	remaining: 235ms
52:	learn: 24.8026156	total: 260ms	remaining: 231ms
53:	learn: 24.5568053	total: 266ms	remaining: 226ms
54:	learn: 24.2281839	total: 270ms	remaining: 221ms
55:	learn: 23.9202795	total: 274ms	remaining: 215ms
56:	learn: 23.7625591	total: 278ms	remaining: 210ms
57:	learn: 23.5429721	total: 283ms	remaining: 205ms
58:	learn: 23.3175893	total: 287ms	remaining: 200ms
59:	learn: 23.2035130	total: 292ms	remaining: 195ms
60:	learn: 23.0232450	total: 297ms	remaining: 190ms
61:	learn: 22.8384958	total: 301ms	remaining: 184ms
62:	learn: 22.6499902	total: 305ms	remaining: 179ms
63:	learn: 22.4577426	total: 309ms	remaining: 174ms
64:	learn: 22.3333158	total: 314ms	remaining: 169ms
65:	learn: 22.2064131	total: 317ms	remaining: 164ms
66:	learn: 22.1434971	total: 321ms	remaining: 158ms
67:	learn: 21.9596519	total: 326ms	remaining: 153ms
68:	learn: 21.8475576	total: 330ms	remaining: 148ms
69:	learn: 21.6954745	total: 335ms	remaining: 143ms
70:	learn: 21.5635976	total: 339ms	remaining: 139ms
71:	learn: 21.4588506	total: 344ms	remaining: 134ms
72:	learn: 21.3527268	total: 348ms	remaining: 129ms
73:	learn: 21.2661288	total: 353ms	remaining: 124ms
74:	learn: 21.1817333	total: 357ms	remaining: 119ms
75:	learn: 21.0527553	total: 364ms	remaining: 115ms
76:	learn: 20.9229021	total: 371ms	remaining: 111ms
77:	learn: 20.7563946	total: 380ms	remaining: 107ms
78:	learn: 20.6569831	total: 387ms	remaining: 103ms
79:	learn: 20.4982663	total: 394ms	remaining: 98.5ms
80:	learn: 20.3185460	total: 399ms	remaining: 93.6ms
81:	learn: 20.2096241	total: 404ms	remaining: 88.7ms
82:	learn: 20.1274891	total: 410ms	remaining: 83.9ms
83:	learn: 20.0740139	total: 415ms	remaining: 79.1ms
84:	learn: 19.9630699	total: 420ms	remaining: 74.2ms
85:	learn: 19.8753899	total: 425ms	remaining: 69.3ms
86:	learn: 19.6563612	total: 431ms	remaining: 64.4ms
87:	learn: 19.4680232	total: 436ms	remaining: 59.5ms
88:	learn: 19.3503431	total: 441ms	remaining: 54.5ms
89:	learn: 19.2221379	total: 446ms	remaining: 49.6ms
90:	learn: 19.0732542	total: 451ms	remaining: 44.6ms
91:	learn: 18.9825190	total: 456ms	remaining: 39.7ms
92:	learn: 18.8839009	total: 462ms	remaining: 34.7ms
93:	learn: 18.8012219	total: 466ms	remaining: 29.7ms
94:	learn: 18.7172713	total: 470ms	remaining: 24.7ms
95:	learn: 18.6201170	total: 474ms	remaining: 19.7ms
96:	learn: 18.5318611	total: 478ms	remaining: 14.8ms
97:	learn: 18.3833356	total: 482ms	remaining: 9.83ms
98:	learn: 18.3289700	total: 486ms	remaining: 4.91ms
99:	learn: 18.2227333	total: 490ms	remaining: 0us
0:	learn: 46.3764524	total: 5.09ms	remaining: 504ms
1:	learn: 45.5561269	total: 9.52ms	remaining: 467ms
2:	learn: 44.8811245	total: 13.8ms	remaining: 446ms
3:	learn: 44.0788617	total: 18.6ms	remaining: 446ms
4:	learn: 43.3619790	total: 23.3ms	remaining: 443ms
5:	learn: 42.6912112	total: 28ms	remaining: 439ms
6:	learn: 42.2292118	total: 32.8ms	remaining: 436ms
7:	learn: 41.7725191	total: 39.5ms	remaining: 454ms
8:	learn: 41.1676614	total: 47.1ms	remaining: 477ms
9:	learn: 40.5771076	total: 54.7ms	remaining: 492ms
10:	learn: 39.8343757	total: 63.5ms	remaining: 514ms
11:	learn: 39.3761142	total: 70.9ms	remaining: 520ms
12:	learn: 38.5254692	total: 76.3ms	remaining: 511ms
13:	learn: 37.9629555	total: 81.9ms	remaining: 503ms
14:	learn: 37.4418438	total: 86.8ms	remaining: 492ms
15:	learn: 37.0507283	total: 93ms	remaining: 488ms
16:	learn: 36.6264217	total: 98.1ms	remaining: 479ms
17:	learn: 36.1114940	total: 103ms	remaining: 471ms
18:	learn: 35.7193862	total: 108ms	remaining: 462ms
19:	learn: 35.3301177	total: 114ms	remaining: 455ms
20:	learn: 35.0598280	total: 119ms	remaining: 447ms
21:	learn: 34.5469736	total: 124ms	remaining: 438ms
22:	learn: 34.2064215	total: 128ms	remaining: 429ms
23:	learn: 33.7280710	total: 133ms	remaining: 422ms
24:	learn: 33.3282940	total: 139ms	remaining: 416ms
25:	learn: 32.8478961	total: 144ms	remaining: 409ms
26:	learn: 32.5722164	total: 148ms	remaining: 399ms
27:	learn: 32.2457019	total: 152ms	remaining: 391ms
28:	learn: 31.9230495	total: 157ms	remaining: 385ms
29:	learn: 31.4311611	total: 162ms	remaining: 378ms
30:	learn: 30.9179052	total: 167ms	remaining: 371ms
31:	learn: 30.6201141	total: 171ms	remaining: 364ms
32:	learn: 30.3421106	total: 176ms	remaining: 357ms
33:	learn: 29.9885373	total: 181ms	remaining: 351ms
34:	learn: 29.7462780	total: 186ms	remaining: 345ms
35:	learn: 29.3607153	total: 190ms	remaining: 338ms
36:	learn: 29.1793078	total: 195ms	remaining: 331ms
37:	learn: 28.9276538	total: 199ms	remaining: 324ms
38:	learn: 28.6903934	total: 203ms	remaining: 318ms
39:	learn: 28.2095033	total: 207ms	remaining: 311ms
40:	learn: 27.7990608	total: 211ms	remaining: 304ms
41:	learn: 27.5406632	total: 216ms	remaining: 298ms
42:	learn: 27.2575376	total: 220ms	remaining: 292ms
43:	learn: 26.9741707	total: 224ms	remaining: 286ms
44:	learn: 26.6606899	total: 228ms	remaining: 279ms
45:	learn: 26.4015833	total: 233ms	remaining: 273ms
46:	learn: 26.1828993	total: 238ms	remaining: 268ms
47:	learn: 26.0233709	total: 240ms	remaining: 260ms
48:	learn: 25.9300399	total: 245ms	remaining: 255ms
49:	learn: 25.5861489	total: 249ms	remaining: 249ms
50:	learn: 25.4322012	total: 254ms	remaining: 244ms
51:	learn: 25.1595644	total: 259ms	remaining: 239ms
52:	learn: 24.9955303	total: 263ms	remaining: 233ms
53:	learn: 24.7273966	total: 270ms	remaining: 230ms
54:	learn: 24.5747978	total: 277ms	remaining: 226ms
55:	learn: 24.3807977	total: 291ms	remaining: 228ms
56:	learn: 24.1689569	total: 298ms	remaining: 225ms
57:	learn: 23.9898221	total: 303ms	remaining: 220ms
58:	learn: 23.7566414	total: 308ms	remaining: 214ms
59:	learn: 23.6641165	total: 313ms	remaining: 209ms
60:	learn: 23.5658066	total: 318ms	remaining: 203ms
61:	learn: 23.4338851	total: 323ms	remaining: 198ms
62:	learn: 23.2408837	total: 328ms	remaining: 193ms
63:	learn: 23.0642038	total: 333ms	remaining: 187ms
64:	learn: 22.9032045	total: 338ms	remaining: 182ms
65:	learn: 22.7736138	total: 343ms	remaining: 177ms
66:	learn: 22.6836443	total: 348ms	remaining: 171ms
67:	learn: 22.5983654	total: 353ms	remaining: 166ms
68:	learn: 22.4419813	total: 358ms	remaining: 161ms
69:	learn: 22.2863339	total: 363ms	remaining: 156ms
70:	learn: 22.1792943	total: 368ms	remaining: 150ms
71:	learn: 22.1130574	total: 372ms	remaining: 145ms
72:	learn: 21.9858161	total: 376ms	remaining: 139ms
73:	learn: 21.8577784	total: 380ms	remaining: 134ms
74:	learn: 21.7845222	total: 384ms	remaining: 128ms
75:	learn: 21.6831390	total: 388ms	remaining: 123ms
76:	learn: 21.6292521	total: 392ms	remaining: 117ms
77:	learn: 21.5789330	total: 396ms	remaining: 112ms
78:	learn: 21.5420942	total: 400ms	remaining: 106ms
79:	learn: 21.4280939	total: 404ms	remaining: 101ms
80:	learn: 21.3641165	total: 408ms	remaining: 95.8ms
81:	learn: 21.2734814	total: 412ms	remaining: 90.5ms
82:	learn: 21.2220323	total: 417ms	remaining: 85.3ms
83:	learn: 21.0625792	total: 421ms	remaining: 80.1ms
84:	learn: 20.9488320	total: 425ms	remaining: 75ms
85:	learn: 20.8504255	total: 429ms	remaining: 69.8ms
86:	learn: 20.7848510	total: 433ms	remaining: 64.7ms
87:	learn: 20.7247442	total: 437ms	remaining: 59.6ms
88:	learn: 20.5698590	total: 442ms	remaining: 54.6ms
89:	learn: 20.4067620	total: 447ms	remaining: 49.6ms
90:	learn: 20.3062482	total: 452ms	remaining: 44.7ms
91:	learn: 20.2029696	total: 456ms	remaining: 39.7ms
92:	learn: 20.1384849	total: 461ms	remaining: 34.7ms
93:	learn: 20.0260709	total: 468ms	remaining: 29.9ms
94:	learn: 19.9122100	total: 476ms	remaining: 25ms
95:	learn: 19.8648487	total: 483ms	remaining: 20.1ms
96:	learn: 19.8207072	total: 491ms	remaining: 15.2ms
97:	learn: 19.7261189	total: 498ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 504ms	remaining: 5.09ms
99:	learn: 19.6546645	total: 509ms	remaining: 0us
0:	learn: 47.0239288	total: 5.15ms	remaining: 510ms
1:	learn: 46.2253829	total: 9.24ms	remaining: 453ms
2:	learn: 45.5580301	total: 13.2ms	remaining: 426ms
3:	learn: 44.7273237	total: 17.4ms	remaining: 418ms
4:	learn: 43.8867421	total: 21.6ms	remaining: 410ms
5:	learn: 43.3615911	total: 25.5ms	remaining: 400ms
6:	learn: 42.8548390	total: 29.5ms	remaining: 392ms
7:	learn: 42.1606758	total: 33.4ms	remaining: 384ms
8:	learn: 41.6625870	total: 37.2ms	remaining: 376ms
9:	learn: 40.9497092	total: 40.9ms	remaining: 368ms
10:	learn: 40.1886318	total: 44.9ms	remaining: 364ms
11:	learn: 39.7456423	total: 48.8ms	remaining: 358ms
12:	learn: 39.1171373	total: 52.7ms	remaining: 353ms
13:	learn: 38.5451069	total: 56.6ms	remaining: 348ms
14:	learn: 38.0155834	total: 61.3ms	remaining: 347ms
15:	learn: 37.5631354	total: 65.7ms	remaining: 345ms
16:	learn: 37.1030023	total: 69.8ms	remaining: 341ms
17:	learn: 36.4563029	total: 73.7ms	remaining: 336ms
18:	learn: 36.0160976	total: 78.3ms	remaining: 334ms
19:	learn: 35.5079827	total: 82.9ms	remaining: 332ms
20:	learn: 35.2111885	total: 87.5ms	remaining: 329ms
21:	learn: 34.9397465	total: 91.9ms	remaining: 326ms
22:	learn: 34.5270048	total: 96.3ms	remaining: 322ms
23:	learn: 34.0169260	total: 101ms	remaining: 319ms
24:	learn: 33.7454892	total: 105ms	remaining: 316ms
25:	learn: 33.2648157	total: 110ms	remaining: 313ms
26:	learn: 32.8899427	total: 118ms	remaining: 319ms
27:	learn: 32.6185050	total: 125ms	remaining: 322ms
28:	learn: 32.3528531	total: 135ms	remaining: 330ms
29:	learn: 32.0859923	total: 141ms	remaining: 330ms
30:	learn: 31.6511144	total: 147ms	remaining: 328ms
31:	learn: 31.2571765	total: 152ms	remaining: 324ms
32:	learn: 30.9770049	total: 157ms	remaining: 319ms
33:	learn: 30.6084872	total: 162ms	remaining: 315ms
34:	learn: 30.3448632	total: 168ms	remaining: 311ms
35:	learn: 30.0360942	total: 173ms	remaining: 307ms
36:	learn: 29.6648968	total: 178ms	remaining: 303ms
37:	learn: 29.3165114	total: 183ms	remaining: 299ms
38:	learn: 29.0829198	total: 188ms	remaining: 294ms
39:	learn: 28.7752064	total: 193ms	remaining: 289ms
40:	learn: 28.3622191	total: 197ms	remaining: 283ms
41:	learn: 28.1346631	total: 203ms	remaining: 280ms
42:	learn: 27.9585719	total: 208ms	remaining: 276ms
43:	learn: 27.6565566	total: 212ms	remaining: 270ms
44:	learn: 27.3616172	total: 217ms	remaining: 265ms
45:	learn: 27.0658637	total: 220ms	remaining: 259ms
46:	learn: 26.8660382	total: 224ms	remaining: 253ms
47:	learn: 26.6536078	total: 229ms	remaining: 248ms
48:	learn: 26.3524440	total: 233ms	remaining: 242ms
49:	learn: 26.1595277	total: 237ms	remaining: 237ms
50:	learn: 25.9273523	total: 241ms	remaining: 231ms
51:	learn: 25.7195580	total: 245ms	remaining: 226ms
52:	learn: 25.5730225	total: 249ms	remaining: 221ms
53:	learn: 25.3455276	total: 253ms	remaining: 216ms
54:	learn: 25.2289675	total: 257ms	remaining: 211ms
55:	learn: 25.0133024	total: 262ms	remaining: 206ms
56:	learn: 24.8406714	total: 266ms	remaining: 200ms
57:	learn: 24.6367857	total: 270ms	remaining: 195ms
58:	learn: 24.5338177	total: 274ms	remaining: 190ms
59:	learn: 24.3799964	total: 278ms	remaining: 186ms
60:	learn: 24.1447492	total: 283ms	remaining: 181ms
61:	learn: 23.9880495	total: 288ms	remaining: 176ms
62:	learn: 23.7140630	total: 292ms	remaining: 172ms
63:	learn: 23.5003791	total: 297ms	remaining: 167ms
64:	learn: 23.3207645	total: 301ms	remaining: 162ms
65:	learn: 23.1958356	total: 306ms	remaining: 158ms
66:	learn: 23.0471302	total: 311ms	remaining: 153ms
67:	learn: 22.8977183	total: 319ms	remaining: 150ms
68:	learn: 22.7187400	total: 326ms	remaining: 147ms
69:	learn: 22.6523405	total: 334ms	remaining: 143ms
70:	learn: 22.4767453	total: 341ms	remaining: 139ms
71:	learn: 22.3243677	total: 346ms	remaining: 135ms
72:	learn: 22.2133096	total: 351ms	remaining: 130ms
73:	learn: 22.1151713	total: 357ms	remaining: 125ms
74:	learn: 22.0296666	total: 362ms	remaining: 121ms
75:	learn: 21.9195980	total: 367ms	remaining: 116ms
76:	learn: 21.8401730	total: 372ms	remaining: 111ms
77:	learn: 21.8079797	total: 377ms	remaining: 106ms
78:	learn: 21.7274109	total: 382ms	remaining: 102ms
79:	learn: 21.6663032	total: 387ms	remaining: 96.7ms
80:	learn: 21.5633117	total: 392ms	remaining: 92ms
81:	learn: 21.4542467	total: 397ms	remaining: 87.1ms
82:	learn: 21.3177957	total: 402ms	remaining: 82.3ms
83:	learn: 21.1289167	total: 407ms	remaining: 77.4ms
84:	learn: 21.0297368	total: 412ms	remaining: 72.7ms
85:	learn: 20.9089564	total: 417ms	remaining: 67.9ms
86:	learn: 20.7653988	total: 421ms	remaining: 62.9ms
87:	learn: 20.6521894	total: 425ms	remaining: 58ms
88:	learn: 20.5193021	total: 429ms	remaining: 53.1ms
89:	learn: 20.4361620	total: 433ms	remaining: 48.1ms
90:	learn: 20.3546710	total: 437ms	remaining: 43.2ms
91:	learn: 20.2513296	total: 441ms	remaining: 38.4ms
92:	learn: 20.1605550	total: 445ms	remaining: 33.5ms
93:	learn: 20.0515942	total: 449ms	remaining: 28.7ms
94:	learn: 19.9800764	total: 453ms	remaining: 23.8ms
95:	learn: 19.8996532	total: 457ms	remaining: 19ms
96:	learn: 19.8450910	total: 461ms	remaining: 14.2ms
97:	learn: 19.7887346	total: 465ms	remaining: 9.48ms
98:	learn: 19.7230872	total: 468ms	remaining: 4.73ms
99:	learn: 19.6328825	total: 473ms	remaining: 0us
0:	learn: 27.5585353	total: 7.34ms	remaining: 726ms
1:	learn: 27.1656995	total: 17ms	remaining: 834ms
2:	learn: 26.8590175	total: 22.5ms	remaining: 727ms
3:	learn: 26.5818406	total: 30.4ms	remaining: 730ms
4:	learn: 26.1148663	total: 35.3ms	remaining: 672ms
5:	learn: 25.7690484	total: 40.5ms	remaining: 635ms
6:	learn: 25.3489206	total: 45.8ms	remaining: 608ms
7:	learn: 24.9542406	total: 51ms	remaining: 586ms
8:	learn: 24.6777517	total: 56.6ms	remaining: 572ms
9:	learn: 24.3242344	total: 62.3ms	remaining: 561ms
10:	learn: 24.0383073	total: 67.6ms	remaining: 547ms
11:	learn: 23.7383420	total: 73.3ms	remaining: 537ms
12:	learn: 23.3461670	total: 88.7ms	remaining: 594ms
13:	learn: 23.0928636	total: 94.1ms	remaining: 578ms
14:	learn: 22.8770414	total: 99.8ms	remaining: 565ms
15:	learn: 22.6323214	total: 104ms	remaining: 547ms
16:	learn: 22.3597072	total: 109ms	remaining: 531ms
17:	learn: 22.1079813	total: 113ms	remaining: 513ms
18:	learn: 21.8421199	total: 117ms	remaining: 499ms
19:	learn: 21.6576508	total: 122ms	remaining: 487ms
20:	learn: 21.4301268	total: 126ms	remaining: 474ms
21:	learn: 21.2287388	total: 130ms	remaining: 461ms
22:	learn: 21.0553872	total: 134ms	remaining: 450ms
23:	learn: 20.8977091	total: 138ms	remaining: 438ms
24:	learn: 20.6619051	total: 142ms	remaining: 426ms
25:	learn: 20.5040955	total: 146ms	remaining: 416ms
26:	learn: 20.3181195	total: 151ms	remaining: 407ms
27:	learn: 20.0869436	total: 155ms	remaining: 398ms
28:	learn: 19.9375985	total: 159ms	remaining: 389ms
29:	learn: 19.8247516	total: 163ms	remaining: 380ms
30:	learn: 19.6261697	total: 167ms	remaining: 372ms
31:	learn: 19.4547236	total: 171ms	remaining: 363ms
32:	learn: 19.3157092	total: 175ms	remaining: 355ms
33:	learn: 19.1561419	total: 179ms	remaining: 348ms
34:	learn: 19.0453620	total: 184ms	remaining: 342ms
35:	learn: 18.8738574	total: 189ms	remaining: 335ms
36:	learn: 18.7072907	total: 193ms	remaining: 329ms
37:	learn: 18.5877943	total: 198ms	remaining: 323ms
38:	learn: 18.4436380	total: 202ms	remaining: 316ms
39:	learn: 18.3463356	total: 207ms	remaining: 310ms
40:	learn: 18.2008059	total: 211ms	remaining: 304ms
41:	learn: 18.0582079	total: 219ms	remaining: 302ms
42:	learn: 17.8891982	total: 226ms	remaining: 300ms
43:	learn: 17.7332246	total: 235ms	remaining: 299ms
44:	learn: 17.6206421	total: 240ms	remaining: 294ms
45:	learn: 17.4982800	total: 248ms	remaining: 291ms
46:	learn: 17.3970150	total: 253ms	remaining: 285ms
47:	learn: 17.3058203	total: 258ms	remaining: 279ms
48:	learn: 17.1789256	total: 263ms	remaining: 273ms
49:	learn: 17.0916229	total: 268ms	remaining: 268ms
50:	learn: 16.9859820	total: 273ms	remaining: 263ms
51:	learn: 16.8995582	total: 278ms	remaining: 257ms
52:	learn: 16.8137014	total: 284ms	remaining: 252ms
53:	learn: 16.7021451	total: 289ms	remaining: 246ms
54:	learn: 16.5895582	total: 294ms	remaining: 241ms
55:	learn: 16.5015639	total: 299ms	remaining: 235ms
56:	learn: 16.4356637	total: 304ms	remaining: 229ms
57:	learn: 16.3514525	total: 310ms	remaining: 224ms
58:	learn: 16.2401369	total: 315ms	remaining: 219ms
59:	learn: 16.1293223	total: 321ms	remaining: 214ms
60:	learn: 16.0271167	total: 325ms	remaining: 208ms
61:	learn: 15.9126257	total: 330ms	remaining: 202ms
62:	learn: 15.8391096	total: 333ms	remaining: 196ms
63:	learn: 15.7441773	total: 338ms	remaining: 190ms
64:	learn: 15.6885195	total: 342ms	remaining: 184ms
65:	learn: 15.6052039	total: 346ms	remaining: 178ms
66:	learn: 15.5074202	total: 350ms	remaining: 172ms
67:	learn: 15.4054338	total: 354ms	remaining: 166ms
68:	learn: 15.2885714	total: 358ms	remaining: 161ms
69:	learn: 15.2157472	total: 362ms	remaining: 155ms
70:	learn: 15.1031554	total: 367ms	remaining: 150ms
71:	learn: 15.0237470	total: 371ms	remaining: 144ms
72:	learn: 14.9756825	total: 376ms	remaining: 139ms
73:	learn: 14.8840596	total: 380ms	remaining: 134ms
74:	learn: 14.8077061	total: 385ms	remaining: 128ms
75:	learn: 14.7444437	total: 390ms	remaining: 123ms
76:	learn: 14.6751720	total: 395ms	remaining: 118ms
77:	learn: 14.5830333	total: 399ms	remaining: 113ms
78:	learn: 14.5241206	total: 404ms	remaining: 107ms
79:	learn: 14.4892731	total: 408ms	remaining: 102ms
80:	learn: 14.4256605	total: 416ms	remaining: 97.7ms
81:	learn: 14.3666860	total: 423ms	remaining: 92.9ms
82:	learn: 14.2938372	total: 432ms	remaining: 88.5ms
83:	learn: 14.2161532	total: 438ms	remaining: 83.4ms
84:	learn: 14.1582910	total: 444ms	remaining: 78.3ms
85:	learn: 14.1029153	total: 449ms	remaining: 73.1ms
86:	learn: 14.0475835	total: 454ms	remaining: 67.8ms
87:	learn: 13.9892661	total: 459ms	remaining: 62.5ms
88:	learn: 13.9481628	total: 464ms	remaining: 57.4ms
89:	learn: 13.8483991	total: 469ms	remaining: 52.1ms
90:	learn: 13.7775614	total: 474ms	remaining: 46.9ms
91:	learn: 13.7304585	total: 479ms	remaining: 41.7ms
92:	learn: 13.6783381	total: 484ms	remaining: 36.5ms
93:	learn: 13.6356964	total: 489ms	remaining: 31.2ms
94:	learn: 13.5924371	total: 494ms	remaining: 26ms
95:	learn: 13.5400746	total: 499ms	remaining: 20.8ms
96:	learn: 13.4897333	total: 505ms	remaining: 15.6ms
97:	learn: 13.4470321	total: 510ms	remaining: 10.4ms
98:	learn: 13.3856082	total: 514ms	remaining: 5.19ms
99:	learn: 13.3082371	total: 518ms	remaining: 0us
0:	learn: 43.0395283	total: 4.59ms	remaining: 454ms
1:	learn: 42.1130223	total: 8.74ms	remaining: 428ms
2:	learn: 41.1753409	total: 13.1ms	remaining: 425ms
3:	learn: 40.3637444	total: 17.5ms	remaining: 420ms
4:	learn: 39.6508088	total: 22.3ms	remaining: 424ms
5:	learn: 38.7217934	total: 26.8ms	remaining: 420ms
6:	learn: 37.8538055	total: 31.2ms	remaining: 414ms
7:	learn: 36.9793574	total: 35.5ms	remaining: 409ms
8:	learn: 36.3076984	total: 40.3ms	remaining: 408ms
9:	learn: 35.6673160	total: 45.2ms	remaining: 407ms
10:	learn: 34.8889800	total: 52.1ms	remaining: 422ms
11:	learn: 34.1675517	total: 59.4ms	remaining: 435ms
12:	learn: 33.6779564	total: 66.7ms	remaining: 446ms
13:	learn: 33.0710039	total: 74ms	remaining: 455ms
14:	learn: 32.4966674	total: 81.2ms	remaining: 460ms
15:	learn: 31.9492856	total: 86.5ms	remaining: 454ms
16:	learn: 31.5108129	total: 91.5ms	remaining: 447ms
17:	learn: 30.9804023	total: 96.9ms	remaining: 442ms
18:	learn: 30.4169089	total: 102ms	remaining: 435ms
19:	learn: 29.8930375	total: 107ms	remaining: 428ms
20:	learn: 29.3974421	total: 112ms	remaining: 423ms
21:	learn: 28.8792307	total: 118ms	remaining: 417ms
22:	learn: 28.3894474	total: 123ms	remaining: 411ms
23:	learn: 27.9921276	total: 128ms	remaining: 405ms
24:	learn: 27.6158887	total: 133ms	remaining: 398ms
25:	learn: 27.2866950	total: 138ms	remaining: 392ms
26:	learn: 26.8770708	total: 143ms	remaining: 387ms
27:	learn: 26.6233005	total: 148ms	remaining: 382ms
28:	learn: 26.2921934	total: 153ms	remaining: 375ms
29:	learn: 25.9156920	total: 158ms	remaining: 368ms
30:	learn: 25.5311106	total: 159ms	remaining: 354ms
31:	learn: 25.2178997	total: 164ms	remaining: 348ms
32:	learn: 24.8572196	total: 168ms	remaining: 340ms
33:	learn: 24.5849710	total: 172ms	remaining: 333ms
34:	learn: 24.2209190	total: 176ms	remaining: 326ms
35:	learn: 23.8708250	total: 180ms	remaining: 320ms
36:	learn: 23.5325279	total: 184ms	remaining: 314ms
37:	learn: 23.2116148	total: 189ms	remaining: 308ms
38:	learn: 22.9696787	total: 193ms	remaining: 302ms
39:	learn: 22.7936783	total: 197ms	remaining: 296ms
40:	learn: 22.6228847	total: 201ms	remaining: 289ms
41:	learn: 22.3691527	total: 205ms	remaining: 283ms
42:	learn: 22.1002173	total: 209ms	remaining: 278ms
43:	learn: 21.9157268	total: 213ms	remaining: 272ms
44:	learn: 21.7229102	total: 218ms	remaining: 266ms
45:	learn: 21.4642005	total: 222ms	remaining: 260ms
46:	learn: 21.3029442	total: 226ms	remaining: 255ms
47:	learn: 21.1469792	total: 231ms	remaining: 250ms
48:	learn: 20.9458235	total: 236ms	remaining: 245ms
49:	learn: 20.7335242	total: 240ms	remaining: 240ms
50:	learn: 20.5440269	total: 245ms	remaining: 235ms
51:	learn: 20.3661449	total: 249ms	remaining: 230ms
52:	learn: 20.2158134	total: 254ms	remaining: 225ms
53:	learn: 19.9934873	total: 258ms	remaining: 220ms
54:	learn: 19.7879739	total: 267ms	remaining: 218ms
55:	learn: 19.6630460	total: 274ms	remaining: 215ms
56:	learn: 19.5152729	total: 284ms	remaining: 214ms
57:	learn: 19.3581128	total: 289ms	remaining: 209ms
58:	learn: 19.2209303	total: 296ms	remaining: 205ms
59:	learn: 19.0965248	total: 301ms	remaining: 201ms
60:	learn: 19.0035954	total: 306ms	remaining: 196ms
61:	learn: 18.8554149	total: 311ms	remaining: 191ms
62:	learn: 18.7095427	total: 316ms	remaining: 186ms
63:	learn: 18.5751494	total: 322ms	remaining: 181ms
64:	learn: 18.4678251	total: 326ms	remaining: 176ms
65:	learn: 18.3500325	total: 332ms	remaining: 171ms
66:	learn: 18.2088983	total: 337ms	remaining: 166ms
67:	learn: 18.0737705	total: 341ms	remaining: 161ms
68:	learn: 17.9325058	total: 346ms	remaining: 155ms
69:	learn: 17.8003911	total: 350ms	remaining: 150ms
70:	learn: 17.7385366	total: 355ms	remaining: 145ms
71:	learn: 17.6106998	total: 360ms	remaining: 140ms
72:	learn: 17.4816270	total: 366ms	remaining: 135ms
73:	learn: 17.4025554	total: 372ms	remaining: 131ms
74:	learn: 17.2902108	total: 376ms	remaining: 125ms
75:	learn: 17.2158048	total: 380ms	remaining: 120ms
76:	learn: 17.1261053	total: 384ms	remaining: 115ms
77:	learn: 17.0308917	total: 389ms	remaining: 110ms
78:	learn: 16.9546705	total: 393ms	remaining: 104ms
79:	learn: 16.8319165	total: 398ms	remaining: 99.4ms
80:	learn: 16.7687017	total: 402ms	remaining: 94.3ms
81:	learn: 16.6972326	total: 407ms	remaining: 89.3ms
82:	learn: 16.6124580	total: 413ms	remaining: 84.5ms
83:	learn: 16.4999052	total: 418ms	remaining: 79.6ms
84:	learn: 16.4302484	total: 423ms	remaining: 74.7ms
85:	learn: 16.3201363	total: 429ms	remaining: 69.8ms
86:	learn: 16.2534314	total: 434ms	remaining: 64.9ms
87:	learn: 16.1720485	total: 439ms	remaining: 59.9ms
88:	learn: 16.0625751	total: 445ms	remaining: 55ms
89:	learn: 15.9135088	total: 450ms	remaining: 50ms
90:	learn: 15.8658863	total: 455ms	remaining: 45ms
91:	learn: 15.8066805	total: 461ms	remaining: 40ms
92:	learn: 15.7412103	total: 476ms	remaining: 35.8ms
93:	learn: 15.6542776	total: 488ms	remaining: 31.2ms
94:	learn: 15.5760334	total: 498ms	remaining: 26.2ms
95:	learn: 15.5434131	total: 506ms	remaining: 21.1ms
96:	learn: 15.4709561	total: 513ms	remaining: 15.9ms
97:	learn: 15.4449618	total: 519ms	remaining: 10.6ms
98:	learn: 15.3752761	total: 525ms	remaining: 5.31ms
99:	learn: 15.3106595	total: 532ms	remaining: 0us
0:	learn: 46.7142257	total: 4.76ms	remaining: 471ms
1:	learn: 45.7634153	total: 9.15ms	remaining: 448ms
2:	learn: 45.0054253	total: 13.8ms	remaining: 447ms
3:	learn: 44.2120432	total: 18ms	remaining: 432ms
4:	learn: 43.3960472	total: 22ms	remaining: 419ms
5:	learn: 42.8588120	total: 26.5ms	remaining: 415ms
6:	learn: 41.9533701	total: 30.8ms	remaining: 409ms
7:	learn: 41.2745030	total: 35.5ms	remaining: 408ms
8:	learn: 40.6797495	total: 39.7ms	remaining: 401ms
9:	learn: 39.9899571	total: 43.7ms	remaining: 393ms
10:	learn: 39.4682100	total: 48.1ms	remaining: 389ms
11:	learn: 39.0305595	total: 52.5ms	remaining: 385ms
12:	learn: 38.4200417	total: 56.7ms	remaining: 379ms
13:	learn: 37.8425194	total: 60.5ms	remaining: 371ms
14:	learn: 37.4203127	total: 64.5ms	remaining: 366ms
15:	learn: 36.9917688	total: 69.1ms	remaining: 363ms
16:	learn: 36.5544138	total: 73.4ms	remaining: 358ms
17:	learn: 36.0727019	total: 78ms	remaining: 355ms
18:	learn: 35.4835715	total: 82.7ms	remaining: 353ms
19:	learn: 34.9865654	total: 87.3ms	remaining: 349ms
20:	learn: 34.6063373	total: 91.8ms	remaining: 345ms
21:	learn: 34.0997289	total: 96.2ms	remaining: 341ms
22:	learn: 33.7313171	total: 101ms	remaining: 338ms
23:	learn: 33.3582000	total: 108ms	remaining: 341ms
24:	learn: 32.9432456	total: 115ms	remaining: 344ms
25:	learn: 32.5220888	total: 131ms	remaining: 373ms
26:	learn: 32.2172292	total: 138ms	remaining: 372ms
27:	learn: 31.8972904	total: 143ms	remaining: 367ms
28:	learn: 31.6405350	total: 148ms	remaining: 363ms
29:	learn: 31.4167702	total: 153ms	remaining: 357ms
30:	learn: 30.8541961	total: 155ms	remaining: 345ms
31:	learn: 30.5572111	total: 160ms	remaining: 340ms
32:	learn: 30.1700399	total: 165ms	remaining: 335ms
33:	learn: 29.8537271	total: 170ms	remaining: 331ms
34:	learn: 29.6192540	total: 176ms	remaining: 326ms
35:	learn: 29.3276362	total: 181ms	remaining: 322ms
36:	learn: 28.9985179	total: 186ms	remaining: 317ms
37:	learn: 28.7046880	total: 191ms	remaining: 312ms
38:	learn: 28.4412677	total: 196ms	remaining: 306ms
39:	learn: 28.1277292	total: 201ms	remaining: 301ms
40:	learn: 27.9000750	total: 207ms	remaining: 297ms
41:	learn: 27.5433162	total: 211ms	remaining: 291ms
42:	learn: 27.2493285	total: 215ms	remaining: 285ms
43:	learn: 26.9576632	total: 217ms	remaining: 276ms
44:	learn: 26.6177110	total: 221ms	remaining: 270ms
45:	learn: 26.2812456	total: 225ms	remaining: 265ms
46:	learn: 26.0803859	total: 230ms	remaining: 259ms
47:	learn: 25.9543581	total: 234ms	remaining: 254ms
48:	learn: 25.7951582	total: 238ms	remaining: 248ms
49:	learn: 25.6548184	total: 242ms	remaining: 242ms
50:	learn: 25.4010843	total: 246ms	remaining: 237ms
51:	learn: 24.9773937	total: 250ms	remaining: 231ms
52:	learn: 24.8026156	total: 255ms	remaining: 226ms
53:	learn: 24.5568053	total: 259ms	remaining: 221ms
54:	learn: 24.2281839	total: 263ms	remaining: 215ms
55:	learn: 23.9202795	total: 267ms	remaining: 210ms
56:	learn: 23.7625591	total: 272ms	remaining: 205ms
57:	learn: 23.5429721	total: 277ms	remaining: 201ms
58:	learn: 23.3175893	total: 281ms	remaining: 195ms
59:	learn: 23.2035130	total: 286ms	remaining: 190ms
60:	learn: 23.0232450	total: 290ms	remaining: 185ms
61:	learn: 22.8384958	total: 295ms	remaining: 181ms
62:	learn: 22.6499902	total: 299ms	remaining: 176ms
63:	learn: 22.4577426	total: 304ms	remaining: 171ms
64:	learn: 22.3333158	total: 312ms	remaining: 168ms
65:	learn: 22.2064131	total: 319ms	remaining: 164ms
66:	learn: 22.1434971	total: 327ms	remaining: 161ms
67:	learn: 21.9596519	total: 334ms	remaining: 157ms
68:	learn: 21.8475576	total: 340ms	remaining: 153ms
69:	learn: 21.6954745	total: 346ms	remaining: 148ms
70:	learn: 21.5635976	total: 351ms	remaining: 143ms
71:	learn: 21.4588506	total: 356ms	remaining: 139ms
72:	learn: 21.3527268	total: 362ms	remaining: 134ms
73:	learn: 21.2661288	total: 367ms	remaining: 129ms
74:	learn: 21.1817333	total: 372ms	remaining: 124ms
75:	learn: 21.0527553	total: 377ms	remaining: 119ms
76:	learn: 20.9229021	total: 382ms	remaining: 114ms
77:	learn: 20.7563946	total: 387ms	remaining: 109ms
78:	learn: 20.6569831	total: 391ms	remaining: 104ms
79:	learn: 20.4982663	total: 397ms	remaining: 99.2ms
80:	learn: 20.3185460	total: 402ms	remaining: 94.3ms
81:	learn: 20.2096241	total: 407ms	remaining: 89.2ms
82:	learn: 20.1274891	total: 410ms	remaining: 84ms
83:	learn: 20.0740139	total: 414ms	remaining: 79ms
84:	learn: 19.9630699	total: 418ms	remaining: 73.8ms
85:	learn: 19.8753899	total: 423ms	remaining: 68.8ms
86:	learn: 19.6563612	total: 427ms	remaining: 63.8ms
87:	learn: 19.4680232	total: 431ms	remaining: 58.8ms
88:	learn: 19.3503431	total: 435ms	remaining: 53.8ms
89:	learn: 19.2221379	total: 439ms	remaining: 48.8ms
90:	learn: 19.0732542	total: 443ms	remaining: 43.8ms
91:	learn: 18.9825190	total: 447ms	remaining: 38.9ms
92:	learn: 18.8839009	total: 451ms	remaining: 34ms
93:	learn: 18.8012219	total: 456ms	remaining: 29.1ms
94:	learn: 18.7172713	total: 460ms	remaining: 24.2ms
95:	learn: 18.6201170	total: 463ms	remaining: 19.3ms
96:	learn: 18.5318611	total: 468ms	remaining: 14.5ms
97:	learn: 18.3833356	total: 473ms	remaining: 9.65ms
98:	learn: 18.3289700	total: 478ms	remaining: 4.82ms
99:	learn: 18.2227333	total: 482ms	remaining: 0us
0:	learn: 46.3764524	total: 5.62ms	remaining: 557ms
1:	learn: 45.5561269	total: 11.1ms	remaining: 543ms
2:	learn: 44.8811245	total: 16.1ms	remaining: 521ms
3:	learn: 44.0788617	total: 21.1ms	remaining: 506ms
4:	learn: 43.3619790	total: 26.1ms	remaining: 495ms
5:	learn: 42.6912112	total: 31ms	remaining: 486ms
6:	learn: 42.2292118	total: 36.3ms	remaining: 482ms
7:	learn: 41.7725191	total: 41.3ms	remaining: 475ms
8:	learn: 41.1676614	total: 46.4ms	remaining: 469ms
9:	learn: 40.5771076	total: 50.5ms	remaining: 455ms
10:	learn: 39.8343757	total: 56.1ms	remaining: 454ms
11:	learn: 39.3761142	total: 61.4ms	remaining: 451ms
12:	learn: 38.5254692	total: 66.4ms	remaining: 445ms
13:	learn: 37.9629555	total: 70.8ms	remaining: 435ms
14:	learn: 37.4418438	total: 74.6ms	remaining: 423ms
15:	learn: 37.0507283	total: 78.4ms	remaining: 412ms
16:	learn: 36.6264217	total: 82.1ms	remaining: 401ms
17:	learn: 36.1114940	total: 86ms	remaining: 392ms
18:	learn: 35.7193862	total: 90.2ms	remaining: 385ms
19:	learn: 35.3301177	total: 94.4ms	remaining: 378ms
20:	learn: 35.0598280	total: 98.3ms	remaining: 370ms
21:	learn: 34.5469736	total: 102ms	remaining: 363ms
22:	learn: 34.2064215	total: 107ms	remaining: 357ms
23:	learn: 33.7280710	total: 111ms	remaining: 351ms
24:	learn: 33.3282940	total: 115ms	remaining: 344ms
25:	learn: 32.8478961	total: 119ms	remaining: 340ms
26:	learn: 32.5722164	total: 124ms	remaining: 334ms
27:	learn: 32.2457019	total: 127ms	remaining: 328ms
28:	learn: 31.9230495	total: 131ms	remaining: 321ms
29:	learn: 31.4311611	total: 136ms	remaining: 317ms
30:	learn: 30.9179052	total: 140ms	remaining: 312ms
31:	learn: 30.6201141	total: 145ms	remaining: 307ms
32:	learn: 30.3421106	total: 149ms	remaining: 302ms
33:	learn: 29.9885373	total: 153ms	remaining: 298ms
34:	learn: 29.7462780	total: 158ms	remaining: 293ms
35:	learn: 29.3607153	total: 162ms	remaining: 288ms
36:	learn: 29.1793078	total: 166ms	remaining: 283ms
37:	learn: 28.9276538	total: 174ms	remaining: 284ms
38:	learn: 28.6903934	total: 182ms	remaining: 285ms
39:	learn: 28.2095033	total: 196ms	remaining: 295ms
40:	learn: 27.7990608	total: 202ms	remaining: 291ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 212ms	remaining: 281ms
43:	learn: 26.9741707	total: 218ms	remaining: 277ms
44:	learn: 26.6606899	total: 223ms	remaining: 272ms
45:	learn: 26.4015833	total: 228ms	remaining: 268ms
46:	learn: 26.1828993	total: 233ms	remaining: 263ms
47:	learn: 26.0233709	total: 236ms	remaining: 256ms
48:	learn: 25.9300399	total: 241ms	remaining: 251ms
49:	learn: 25.5861489	total: 246ms	remaining: 246ms
50:	learn: 25.4322012	total: 251ms	remaining: 242ms
51:	learn: 25.1595644	total: 256ms	remaining: 237ms
52:	learn: 24.9955303	total: 262ms	remaining: 232ms
53:	learn: 24.7273966	total: 267ms	remaining: 227ms
54:	learn: 24.5747978	total: 271ms	remaining: 222ms
55:	learn: 24.3807977	total: 276ms	remaining: 217ms
56:	learn: 24.1689569	total: 280ms	remaining: 211ms
57:	learn: 23.9898221	total: 283ms	remaining: 205ms
58:	learn: 23.7566414	total: 287ms	remaining: 200ms
59:	learn: 23.6641165	total: 291ms	remaining: 194ms
60:	learn: 23.5658066	total: 295ms	remaining: 189ms
61:	learn: 23.4338851	total: 299ms	remaining: 183ms
62:	learn: 23.2408837	total: 304ms	remaining: 179ms
63:	learn: 23.0642038	total: 308ms	remaining: 173ms
64:	learn: 22.9032045	total: 313ms	remaining: 168ms
65:	learn: 22.7736138	total: 318ms	remaining: 164ms
66:	learn: 22.6836443	total: 322ms	remaining: 159ms
67:	learn: 22.5983654	total: 326ms	remaining: 154ms
68:	learn: 22.4419813	total: 331ms	remaining: 149ms
69:	learn: 22.2863339	total: 336ms	remaining: 144ms
70:	learn: 22.1792943	total: 341ms	remaining: 139ms
71:	learn: 22.1130574	total: 346ms	remaining: 134ms
72:	learn: 21.9858161	total: 351ms	remaining: 130ms
73:	learn: 21.8577784	total: 356ms	remaining: 125ms
74:	learn: 21.7845222	total: 361ms	remaining: 120ms
75:	learn: 21.6831390	total: 365ms	remaining: 115ms
76:	learn: 21.6292521	total: 370ms	remaining: 110ms
77:	learn: 21.5789330	total: 374ms	remaining: 106ms
78:	learn: 21.5420942	total: 378ms	remaining: 101ms
79:	learn: 21.4280939	total: 386ms	remaining: 96.5ms
80:	learn: 21.3641165	total: 394ms	remaining: 92.4ms
81:	learn: 21.2734814	total: 404ms	remaining: 88.7ms
82:	learn: 21.2220323	total: 412ms	remaining: 84.4ms
83:	learn: 21.0625792	total: 418ms	remaining: 79.6ms
84:	learn: 20.9488320	total: 423ms	remaining: 74.7ms
85:	learn: 20.8504255	total: 428ms	remaining: 69.7ms
86:	learn: 20.7848510	total: 434ms	remaining: 64.8ms
87:	learn: 20.7247442	total: 439ms	remaining: 59.9ms
88:	learn: 20.5698590	total: 444ms	remaining: 54.9ms
89:	learn: 20.4067620	total: 449ms	remaining: 49.9ms
90:	learn: 20.3062482	total: 455ms	remaining: 45ms
91:	learn: 20.2029696	total: 460ms	remaining: 40ms
92:	learn: 20.1384849	total: 465ms	remaining: 35ms
93:	learn: 20.0260709	total: 470ms	remaining: 30ms
94:	learn: 19.9122100	total: 475ms	remaining: 25ms
95:	learn: 19.8648487	total: 480ms	remaining: 20ms
96:	learn: 19.8207072	total: 485ms	remaining: 15ms
97:	learn: 19.7261189	total: 490ms	remaining: 9.99ms
98:	learn: 19.7042438	total: 494ms	remaining: 4.99ms
99:	learn: 19.6546645	total: 498ms	remaining: 0us
0:	learn: 47.0239288	total: 4.25ms	remaining: 421ms
1:	learn: 46.2253829	total: 8.58ms	remaining: 421ms
2:	learn: 45.5580301	total: 13ms	remaining: 421ms
3:	learn: 44.7273237	total: 17ms	remaining: 408ms
4:	learn: 43.8867421	total: 20.8ms	remaining: 396ms
5:	learn: 43.3615911	total: 25.2ms	remaining: 395ms
6:	learn: 42.8548390	total: 29.7ms	remaining: 394ms
7:	learn: 42.1606758	total: 33.8ms	remaining: 389ms
8:	learn: 41.6625870	total: 38.2ms	remaining: 386ms
9:	learn: 40.9497092	total: 42.6ms	remaining: 383ms
10:	learn: 40.1886318	total: 47.2ms	remaining: 382ms
11:	learn: 39.7456423	total: 51.8ms	remaining: 380ms
12:	learn: 39.1171373	total: 56.3ms	remaining: 377ms
13:	learn: 38.5451069	total: 64.8ms	remaining: 398ms
14:	learn: 38.0155834	total: 72.3ms	remaining: 410ms
15:	learn: 37.5631354	total: 81.4ms	remaining: 427ms
16:	learn: 37.1030023	total: 89ms	remaining: 434ms
17:	learn: 36.4563029	total: 94.4ms	remaining: 430ms
18:	learn: 36.0160976	total: 100ms	remaining: 427ms
19:	learn: 35.5079827	total: 105ms	remaining: 420ms
20:	learn: 35.2111885	total: 110ms	remaining: 414ms
21:	learn: 34.9397465	total: 115ms	remaining: 409ms
22:	learn: 34.5270048	total: 120ms	remaining: 403ms
23:	learn: 34.0169260	total: 126ms	remaining: 398ms
24:	learn: 33.7454892	total: 131ms	remaining: 393ms
25:	learn: 33.2648157	total: 136ms	remaining: 387ms
26:	learn: 32.8899427	total: 141ms	remaining: 382ms
27:	learn: 32.6185050	total: 146ms	remaining: 374ms
28:	learn: 32.3528531	total: 151ms	remaining: 369ms
29:	learn: 32.0859923	total: 157ms	remaining: 366ms
30:	learn: 31.6511144	total: 162ms	remaining: 360ms
31:	learn: 31.2571765	total: 166ms	remaining: 353ms
32:	learn: 30.9770049	total: 170ms	remaining: 344ms
33:	learn: 30.6084872	total: 174ms	remaining: 337ms
34:	learn: 30.3448632	total: 178ms	remaining: 330ms
35:	learn: 30.0360942	total: 182ms	remaining: 324ms
36:	learn: 29.6648968	total: 186ms	remaining: 317ms
37:	learn: 29.3165114	total: 190ms	remaining: 310ms
38:	learn: 29.0829198	total: 194ms	remaining: 304ms
39:	learn: 28.7752064	total: 198ms	remaining: 297ms
40:	learn: 28.3622191	total: 202ms	remaining: 291ms
41:	learn: 28.1346631	total: 206ms	remaining: 285ms
42:	learn: 27.9585719	total: 211ms	remaining: 279ms
43:	learn: 27.6565566	total: 214ms	remaining: 273ms
44:	learn: 27.3616172	total: 219ms	remaining: 267ms
45:	learn: 27.0658637	total: 223ms	remaining: 262ms
46:	learn: 26.8660382	total: 228ms	remaining: 257ms
47:	learn: 26.6536078	total: 232ms	remaining: 252ms
48:	learn: 26.3524440	total: 237ms	remaining: 247ms
49:	learn: 26.1595277	total: 242ms	remaining: 242ms
50:	learn: 25.9273523	total: 246ms	remaining: 236ms
51:	learn: 25.7195580	total: 250ms	remaining: 231ms
52:	learn: 25.5730225	total: 255ms	remaining: 226ms
53:	learn: 25.3455276	total: 260ms	remaining: 221ms
54:	learn: 25.2289675	total: 268ms	remaining: 219ms
55:	learn: 25.0133024	total: 276ms	remaining: 217ms
56:	learn: 24.8406714	total: 284ms	remaining: 214ms
57:	learn: 24.6367857	total: 292ms	remaining: 211ms
58:	learn: 24.5338177	total: 297ms	remaining: 206ms
59:	learn: 24.3799964	total: 302ms	remaining: 201ms
60:	learn: 24.1447492	total: 307ms	remaining: 196ms
61:	learn: 23.9880495	total: 312ms	remaining: 191ms
62:	learn: 23.7140630	total: 318ms	remaining: 187ms
63:	learn: 23.5003791	total: 323ms	remaining: 182ms
64:	learn: 23.3207645	total: 328ms	remaining: 177ms
65:	learn: 23.1958356	total: 333ms	remaining: 172ms
66:	learn: 23.0471302	total: 338ms	remaining: 167ms
67:	learn: 22.8977183	total: 343ms	remaining: 161ms
68:	learn: 22.7187400	total: 347ms	remaining: 156ms
69:	learn: 22.6523405	total: 352ms	remaining: 151ms
70:	learn: 22.4767453	total: 356ms	remaining: 146ms
71:	learn: 22.3243677	total: 361ms	remaining: 140ms
72:	learn: 22.2133096	total: 366ms	remaining: 135ms
73:	learn: 22.1151713	total: 372ms	remaining: 131ms
74:	learn: 22.0296666	total: 376ms	remaining: 125ms
75:	learn: 21.9195980	total: 380ms	remaining: 120ms
76:	learn: 21.8401730	total: 383ms	remaining: 114ms
77:	learn: 21.8079797	total: 387ms	remaining: 109ms
78:	learn: 21.7274109	total: 391ms	remaining: 104ms
79:	learn: 21.6663032	total: 395ms	remaining: 98.8ms
80:	learn: 21.5633117	total: 399ms	remaining: 93.6ms
81:	learn: 21.4542467	total: 403ms	remaining: 88.4ms
82:	learn: 21.3177957	total: 407ms	remaining: 83.3ms
83:	learn: 21.1289167	total: 411ms	remaining: 78.3ms
84:	learn: 21.0297368	total: 416ms	remaining: 73.3ms
85:	learn: 20.9089564	total: 420ms	remaining: 68.3ms
86:	learn: 20.7653988	total: 424ms	remaining: 63.3ms
87:	learn: 20.6521894	total: 429ms	remaining: 58.5ms
88:	learn: 20.5193021	total: 433ms	remaining: 53.6ms
89:	learn: 20.4361620	total: 438ms	remaining: 48.7ms
90:	learn: 20.3546710	total: 442ms	remaining: 43.8ms
91:	learn: 20.2513296	total: 447ms	remaining: 38.9ms
92:	learn: 20.1605550	total: 451ms	remaining: 34ms
93:	learn: 20.0515942	total: 456ms	remaining: 29.1ms
94:	learn: 19.9800764	total: 462ms	remaining: 24.3ms
95:	learn: 19.8996532	total: 469ms	remaining: 19.6ms
96:	learn: 19.8450910	total: 476ms	remaining: 14.7ms
97:	learn: 19.7887346	total: 484ms	remaining: 9.89ms
98:	learn: 19.7230872	total: 492ms	remaining: 4.97ms
99:	learn: 19.6328825	total: 497ms	remaining: 0us
0:	learn: 27.5585353	total: 5.45ms	remaining: 540ms
1:	learn: 27.1656995	total: 10.5ms	remaining: 513ms
2:	learn: 26.8590175	total: 14.4ms	remaining: 465ms
3:	learn: 26.5818406	total: 18.4ms	remaining: 441ms
4:	learn: 26.1148663	total: 22.2ms	remaining: 422ms
5:	learn: 25.7690484	total: 26.1ms	remaining: 409ms
6:	learn: 25.3489206	total: 30.2ms	remaining: 401ms
7:	learn: 24.9542406	total: 34.4ms	remaining: 395ms
8:	learn: 24.6777517	total: 38.5ms	remaining: 389ms
9:	learn: 24.3242344	total: 42.8ms	remaining: 385ms
10:	learn: 24.0383073	total: 46.5ms	remaining: 377ms
11:	learn: 23.7383420	total: 50.7ms	remaining: 372ms
12:	learn: 23.3461670	total: 54.9ms	remaining: 368ms
13:	learn: 23.0928636	total: 59.2ms	remaining: 364ms
14:	learn: 22.8770414	total: 62.9ms	remaining: 357ms
15:	learn: 22.6323214	total: 67.6ms	remaining: 355ms
16:	learn: 22.3597072	total: 72.3ms	remaining: 353ms
17:	learn: 22.1079813	total: 76.8ms	remaining: 350ms
18:	learn: 21.8421199	total: 81.8ms	remaining: 349ms
19:	learn: 21.6576508	total: 86.5ms	remaining: 346ms
20:	learn: 21.4301268	total: 90.9ms	remaining: 342ms
21:	learn: 21.2287388	total: 95.7ms	remaining: 339ms
22:	learn: 21.0553872	total: 100ms	remaining: 335ms
23:	learn: 20.8977091	total: 105ms	remaining: 332ms
24:	learn: 20.6619051	total: 109ms	remaining: 327ms
25:	learn: 20.5040955	total: 114ms	remaining: 325ms
26:	learn: 20.3181195	total: 123ms	remaining: 332ms
27:	learn: 20.0869436	total: 130ms	remaining: 335ms
28:	learn: 19.9375985	total: 140ms	remaining: 342ms
29:	learn: 19.8247516	total: 148ms	remaining: 345ms
30:	learn: 19.6261697	total: 153ms	remaining: 340ms
31:	learn: 19.4547236	total: 158ms	remaining: 336ms
32:	learn: 19.3157092	total: 163ms	remaining: 331ms
33:	learn: 19.1561419	total: 168ms	remaining: 326ms
34:	learn: 19.0453620	total: 173ms	remaining: 321ms
35:	learn: 18.8738574	total: 178ms	remaining: 317ms
36:	learn: 18.7072907	total: 183ms	remaining: 312ms
37:	learn: 18.5877943	total: 188ms	remaining: 307ms
38:	learn: 18.4436380	total: 194ms	remaining: 303ms
39:	learn: 18.3463356	total: 199ms	remaining: 299ms
40:	learn: 18.2008059	total: 205ms	remaining: 294ms
41:	learn: 18.0582079	total: 210ms	remaining: 290ms
42:	learn: 17.8891982	total: 215ms	remaining: 286ms
43:	learn: 17.7332246	total: 221ms	remaining: 281ms
44:	learn: 17.6206421	total: 225ms	remaining: 275ms
45:	learn: 17.4982800	total: 229ms	remaining: 269ms
46:	learn: 17.3970150	total: 234ms	remaining: 264ms
47:	learn: 17.3058203	total: 239ms	remaining: 259ms
48:	learn: 17.1789256	total: 244ms	remaining: 254ms
49:	learn: 17.0916229	total: 248ms	remaining: 248ms
50:	learn: 16.9859820	total: 264ms	remaining: 254ms
51:	learn: 16.8995582	total: 269ms	remaining: 248ms
52:	learn: 16.8137014	total: 273ms	remaining: 242ms
53:	learn: 16.7021451	total: 278ms	remaining: 236ms
54:	learn: 16.5895582	total: 282ms	remaining: 231ms
55:	learn: 16.5015639	total: 287ms	remaining: 225ms
56:	learn: 16.4356637	total: 292ms	remaining: 220ms
57:	learn: 16.3514525	total: 296ms	remaining: 215ms
58:	learn: 16.2401369	total: 301ms	remaining: 209ms
59:	learn: 16.1293223	total: 305ms	remaining: 204ms
60:	learn: 16.0271167	total: 310ms	remaining: 198ms
61:	learn: 15.9126257	total: 315ms	remaining: 193ms
62:	learn: 15.8391096	total: 324ms	remaining: 190ms
63:	learn: 15.7441773	total: 333ms	remaining: 187ms
64:	learn: 15.6885195	total: 343ms	remaining: 185ms
65:	learn: 15.6052039	total: 352ms	remaining: 181ms
66:	learn: 15.5074202	total: 358ms	remaining: 176ms
67:	learn: 15.4054338	total: 363ms	remaining: 171ms
68:	learn: 15.2885714	total: 369ms	remaining: 166ms
69:	learn: 15.2157472	total: 375ms	remaining: 161ms
70:	learn: 15.1031554	total: 380ms	remaining: 155ms
71:	learn: 15.0237470	total: 386ms	remaining: 150ms
72:	learn: 14.9756825	total: 391ms	remaining: 145ms
73:	learn: 14.8840596	total: 397ms	remaining: 139ms
74:	learn: 14.8077061	total: 402ms	remaining: 134ms
75:	learn: 14.7444437	total: 408ms	remaining: 129ms
76:	learn: 14.6751720	total: 413ms	remaining: 123ms
77:	learn: 14.5830333	total: 419ms	remaining: 118ms
78:	learn: 14.5241206	total: 425ms	remaining: 113ms
79:	learn: 14.4892731	total: 429ms	remaining: 107ms
80:	learn: 14.4256605	total: 434ms	remaining: 102ms
81:	learn: 14.3666860	total: 439ms	remaining: 96.3ms
82:	learn: 14.2938372	total: 444ms	remaining: 90.8ms
83:	learn: 14.2161532	total: 448ms	remaining: 85.3ms
84:	learn: 14.1582910	total: 452ms	remaining: 79.8ms
85:	learn: 14.1029153	total: 457ms	remaining: 74.3ms
86:	learn: 14.0475835	total: 461ms	remaining: 68.9ms
87:	learn: 13.9892661	total: 465ms	remaining: 63.5ms
88:	learn: 13.9481628	total: 470ms	remaining: 58.1ms
89:	learn: 13.8483991	total: 474ms	remaining: 52.7ms
90:	learn: 13.7775614	total: 478ms	remaining: 47.3ms
91:	learn: 13.7304585	total: 483ms	remaining: 42ms
92:	learn: 13.6783381	total: 487ms	remaining: 36.7ms
93:	learn: 13.6356964	total: 491ms	remaining: 31.4ms
94:	learn: 13.5924371	total: 496ms	remaining: 26.1ms
95:	learn: 13.5400746	total: 500ms	remaining: 20.9ms
96:	learn: 13.4897333	total: 505ms	remaining: 15.6ms
97:	learn: 13.4470321	total: 509ms	remaining: 10.4ms
98:	learn: 13.3856082	total: 514ms	remaining: 5.19ms
99:	learn: 13.3082371	total: 519ms	remaining: 0us
0:	learn: 43.0395283	total: 5.15ms	remaining: 510ms
1:	learn: 42.1130223	total: 10.3ms	remaining: 507ms
2:	learn: 41.1753409	total: 16.1ms	remaining: 520ms
3:	learn: 40.3637444	total: 37ms	remaining: 889ms
4:	learn: 39.6508088	total: 42.5ms	remaining: 808ms
5:	learn: 38.7217934	total: 47.2ms	remaining: 739ms
6:	learn: 37.8538055	total: 51.8ms	remaining: 688ms
7:	learn: 36.9793574	total: 56.3ms	remaining: 647ms
8:	learn: 36.3076984	total: 60.8ms	remaining: 615ms
9:	learn: 35.6673160	total: 65.5ms	remaining: 590ms
10:	learn: 34.8889800	total: 70ms	remaining: 567ms
11:	learn: 34.1675517	total: 74ms	remaining: 542ms
12:	learn: 33.6779564	total: 78.5ms	remaining: 525ms
13:	learn: 33.0710039	total: 83ms	remaining: 510ms
14:	learn: 32.4966674	total: 87.4ms	remaining: 496ms
15:	learn: 31.9492856	total: 91.9ms	remaining: 483ms
16:	learn: 31.5108129	total: 96.8ms	remaining: 473ms
17:	learn: 30.9804023	total: 101ms	remaining: 462ms
18:	learn: 30.4169089	total: 105ms	remaining: 449ms
19:	learn: 29.8930375	total: 110ms	remaining: 439ms
20:	learn: 29.3974421	total: 115ms	remaining: 432ms
21:	learn: 28.8792307	total: 120ms	remaining: 424ms
22:	learn: 28.3894474	total: 124ms	remaining: 415ms
23:	learn: 27.9921276	total: 129ms	remaining: 408ms
24:	learn: 27.6158887	total: 133ms	remaining: 400ms
25:	learn: 27.2866950	total: 138ms	remaining: 392ms
26:	learn: 26.8770708	total: 143ms	remaining: 386ms
27:	learn: 26.6233005	total: 147ms	remaining: 378ms
28:	learn: 26.2921934	total: 156ms	remaining: 381ms
29:	learn: 25.9156920	total: 163ms	remaining: 381ms
30:	learn: 25.5311106	total: 166ms	remaining: 370ms
31:	learn: 25.2178997	total: 174ms	remaining: 369ms
32:	learn: 24.8572196	total: 181ms	remaining: 368ms
33:	learn: 24.5849710	total: 186ms	remaining: 362ms
34:	learn: 24.2209190	total: 192ms	remaining: 357ms
35:	learn: 23.8708250	total: 198ms	remaining: 351ms
36:	learn: 23.5325279	total: 203ms	remaining: 345ms
37:	learn: 23.2116148	total: 208ms	remaining: 340ms
38:	learn: 22.9696787	total: 213ms	remaining: 334ms
39:	learn: 22.7936783	total: 219ms	remaining: 328ms
40:	learn: 22.6228847	total: 224ms	remaining: 322ms
41:	learn: 22.3691527	total: 229ms	remaining: 316ms
42:	learn: 22.1002173	total: 234ms	remaining: 310ms
43:	learn: 21.9157268	total: 239ms	remaining: 304ms
44:	learn: 21.7229102	total: 244ms	remaining: 299ms
45:	learn: 21.4642005	total: 250ms	remaining: 293ms
46:	learn: 21.3029442	total: 254ms	remaining: 286ms
47:	learn: 21.1469792	total: 258ms	remaining: 279ms
48:	learn: 20.9458235	total: 262ms	remaining: 272ms
49:	learn: 20.7335242	total: 266ms	remaining: 266ms
50:	learn: 20.5440269	total: 269ms	remaining: 259ms
51:	learn: 20.3661449	total: 273ms	remaining: 252ms
52:	learn: 20.2158134	total: 278ms	remaining: 246ms
53:	learn: 19.9934873	total: 282ms	remaining: 240ms
54:	learn: 19.7879739	total: 286ms	remaining: 234ms
55:	learn: 19.6630460	total: 290ms	remaining: 228ms
56:	learn: 19.5152729	total: 294ms	remaining: 222ms
57:	learn: 19.3581128	total: 298ms	remaining: 216ms
58:	learn: 19.2209303	total: 303ms	remaining: 210ms
59:	learn: 19.0965248	total: 307ms	remaining: 205ms
60:	learn: 19.0035954	total: 312ms	remaining: 199ms
61:	learn: 18.8554149	total: 316ms	remaining: 194ms
62:	learn: 18.7095427	total: 320ms	remaining: 188ms
63:	learn: 18.5751494	total: 325ms	remaining: 183ms
64:	learn: 18.4678251	total: 330ms	remaining: 178ms
65:	learn: 18.3500325	total: 335ms	remaining: 173ms
66:	learn: 18.2088983	total: 340ms	remaining: 167ms
67:	learn: 18.0737705	total: 345ms	remaining: 162ms
68:	learn: 17.9325058	total: 354ms	remaining: 159ms
69:	learn: 17.8003911	total: 362ms	remaining: 155ms
70:	learn: 17.7385366	total: 370ms	remaining: 151ms
71:	learn: 17.6106998	total: 378ms	remaining: 147ms
72:	learn: 17.4816270	total: 383ms	remaining: 142ms
73:	learn: 17.4025554	total: 389ms	remaining: 137ms
74:	learn: 17.2902108	total: 394ms	remaining: 131ms
75:	learn: 17.2158048	total: 399ms	remaining: 126ms
76:	learn: 17.1261053	total: 404ms	remaining: 121ms
77:	learn: 17.0308917	total: 409ms	remaining: 115ms
78:	learn: 16.9546705	total: 414ms	remaining: 110ms
79:	learn: 16.8319165	total: 419ms	remaining: 105ms
80:	learn: 16.7687017	total: 425ms	remaining: 99.6ms
81:	learn: 16.6972326	total: 429ms	remaining: 94.3ms
82:	learn: 16.6124580	total: 434ms	remaining: 89ms
83:	learn: 16.4999052	total: 440ms	remaining: 83.8ms
84:	learn: 16.4302484	total: 445ms	remaining: 78.5ms
85:	learn: 16.3201363	total: 449ms	remaining: 73.1ms
86:	learn: 16.2534314	total: 453ms	remaining: 67.7ms
87:	learn: 16.1720485	total: 457ms	remaining: 62.3ms
88:	learn: 16.0625751	total: 461ms	remaining: 57ms
89:	learn: 15.9135088	total: 465ms	remaining: 51.7ms
90:	learn: 15.8658863	total: 469ms	remaining: 46.4ms
91:	learn: 15.8066805	total: 473ms	remaining: 41.2ms
92:	learn: 15.7412103	total: 478ms	remaining: 36ms
93:	learn: 15.6542776	total: 482ms	remaining: 30.7ms
94:	learn: 15.5760334	total: 486ms	remaining: 25.6ms
95:	learn: 15.5434131	total: 490ms	remaining: 20.4ms
96:	learn: 15.4709561	total: 495ms	remaining: 15.3ms
97:	learn: 15.4449618	total: 499ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 503ms	remaining: 5.08ms
99:	learn: 15.3106595	total: 507ms	remaining: 0us
0:	learn: 46.7142257	total: 8ms	remaining: 792ms
1:	learn: 45.7634153	total: 13.5ms	remaining: 661ms
2:	learn: 45.0054253	total: 18.7ms	remaining: 604ms
3:	learn: 44.2120432	total: 23.7ms	remaining: 568ms
4:	learn: 43.3960472	total: 28.9ms	remaining: 549ms
5:	learn: 42.8588120	total: 41.8ms	remaining: 656ms
6:	learn: 41.9533701	total: 47.1ms	remaining: 626ms
7:	learn: 41.2745030	total: 52.8ms	remaining: 607ms
8:	learn: 40.6797495	total: 57.7ms	remaining: 584ms
9:	learn: 39.9899571	total: 62.6ms	remaining: 563ms
10:	learn: 39.4682100	total: 67.5ms	remaining: 546ms
11:	learn: 39.0305595	total: 72.3ms	remaining: 530ms
12:	learn: 38.4200417	total: 78.1ms	remaining: 522ms
13:	learn: 37.8425194	total: 84.2ms	remaining: 517ms
14:	learn: 37.4203127	total: 88.9ms	remaining: 504ms
15:	learn: 36.9917688	total: 93.8ms	remaining: 492ms
16:	learn: 36.5544138	total: 98.5ms	remaining: 481ms
17:	learn: 36.0727019	total: 103ms	remaining: 471ms
18:	learn: 35.4835715	total: 108ms	remaining: 461ms
19:	learn: 34.9865654	total: 112ms	remaining: 450ms
20:	learn: 34.6063373	total: 117ms	remaining: 439ms
21:	learn: 34.0997289	total: 122ms	remaining: 431ms
22:	learn: 33.7313171	total: 126ms	remaining: 421ms
23:	learn: 33.3582000	total: 130ms	remaining: 411ms
24:	learn: 32.9432456	total: 134ms	remaining: 402ms
25:	learn: 32.5220888	total: 138ms	remaining: 394ms
26:	learn: 32.2172292	total: 143ms	remaining: 386ms
27:	learn: 31.8972904	total: 147ms	remaining: 378ms
28:	learn: 31.6405350	total: 152ms	remaining: 372ms
29:	learn: 31.4167702	total: 156ms	remaining: 365ms
30:	learn: 30.8541961	total: 158ms	remaining: 352ms
31:	learn: 30.5572111	total: 163ms	remaining: 346ms
32:	learn: 30.1700399	total: 167ms	remaining: 340ms
33:	learn: 29.8537271	total: 172ms	remaining: 334ms
34:	learn: 29.6192540	total: 177ms	remaining: 328ms
35:	learn: 29.3276362	total: 181ms	remaining: 323ms
36:	learn: 28.9985179	total: 186ms	remaining: 317ms
37:	learn: 28.7046880	total: 195ms	remaining: 318ms
38:	learn: 28.4412677	total: 202ms	remaining: 316ms
39:	learn: 28.1277292	total: 211ms	remaining: 317ms
40:	learn: 27.9000750	total: 219ms	remaining: 315ms
41:	learn: 27.5433162	total: 224ms	remaining: 309ms
42:	learn: 27.2493285	total: 229ms	remaining: 304ms
43:	learn: 26.9576632	total: 231ms	remaining: 294ms
44:	learn: 26.6177110	total: 236ms	remaining: 289ms
45:	learn: 26.2812456	total: 242ms	remaining: 284ms
46:	learn: 26.0803859	total: 247ms	remaining: 279ms
47:	learn: 25.9543581	total: 253ms	remaining: 274ms
48:	learn: 25.7951582	total: 258ms	remaining: 269ms
49:	learn: 25.6548184	total: 263ms	remaining: 263ms
50:	learn: 25.4010843	total: 268ms	remaining: 257ms
51:	learn: 24.9773937	total: 273ms	remaining: 252ms
52:	learn: 24.8026156	total: 277ms	remaining: 246ms
53:	learn: 24.5568053	total: 282ms	remaining: 241ms
54:	learn: 24.2281839	total: 288ms	remaining: 236ms
55:	learn: 23.9202795	total: 292ms	remaining: 230ms
56:	learn: 23.7625591	total: 296ms	remaining: 224ms
57:	learn: 23.5429721	total: 300ms	remaining: 217ms
58:	learn: 23.3175893	total: 305ms	remaining: 212ms
59:	learn: 23.2035130	total: 309ms	remaining: 206ms
60:	learn: 23.0232450	total: 313ms	remaining: 200ms
61:	learn: 22.8384958	total: 316ms	remaining: 194ms
62:	learn: 22.6499902	total: 320ms	remaining: 188ms
63:	learn: 22.4577426	total: 324ms	remaining: 182ms
64:	learn: 22.3333158	total: 329ms	remaining: 177ms
65:	learn: 22.2064131	total: 333ms	remaining: 172ms
66:	learn: 22.1434971	total: 337ms	remaining: 166ms
67:	learn: 21.9596519	total: 341ms	remaining: 160ms
68:	learn: 21.8475576	total: 345ms	remaining: 155ms
69:	learn: 21.6954745	total: 350ms	remaining: 150ms
70:	learn: 21.5635976	total: 354ms	remaining: 145ms
71:	learn: 21.4588506	total: 359ms	remaining: 140ms
72:	learn: 21.3527268	total: 364ms	remaining: 135ms
73:	learn: 21.2661288	total: 369ms	remaining: 129ms
74:	learn: 21.1817333	total: 373ms	remaining: 124ms
75:	learn: 21.0527553	total: 377ms	remaining: 119ms
76:	learn: 20.9229021	total: 382ms	remaining: 114ms
77:	learn: 20.7563946	total: 390ms	remaining: 110ms
78:	learn: 20.6569831	total: 398ms	remaining: 106ms
79:	learn: 20.4982663	total: 404ms	remaining: 101ms
80:	learn: 20.3185460	total: 412ms	remaining: 96.6ms
81:	learn: 20.2096241	total: 417ms	remaining: 91.5ms
82:	learn: 20.1274891	total: 422ms	remaining: 86.4ms
83:	learn: 20.0740139	total: 427ms	remaining: 81.4ms
84:	learn: 19.9630699	total: 432ms	remaining: 76.2ms
85:	learn: 19.8753899	total: 437ms	remaining: 71.2ms
86:	learn: 19.6563612	total: 443ms	remaining: 66.1ms
87:	learn: 19.4680232	total: 448ms	remaining: 61ms
88:	learn: 19.3503431	total: 453ms	remaining: 56ms
89:	learn: 19.2221379	total: 459ms	remaining: 51ms
90:	learn: 19.0732542	total: 464ms	remaining: 45.9ms
91:	learn: 18.9825190	total: 469ms	remaining: 40.8ms
92:	learn: 18.8839009	total: 474ms	remaining: 35.7ms
93:	learn: 18.8012219	total: 479ms	remaining: 30.6ms
94:	learn: 18.7172713	total: 484ms	remaining: 25.5ms
95:	learn: 18.6201170	total: 488ms	remaining: 20.3ms
96:	learn: 18.5318611	total: 492ms	remaining: 15.2ms
97:	learn: 18.3833356	total: 496ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 500ms	remaining: 5.05ms
99:	learn: 18.2227333	total: 504ms	remaining: 0us
0:	learn: 46.3764524	total: 4.34ms	remaining: 430ms
1:	learn: 45.5561269	total: 8.67ms	remaining: 425ms
2:	learn: 44.8811245	total: 13.2ms	remaining: 428ms
3:	learn: 44.0788617	total: 17.5ms	remaining: 420ms
4:	learn: 43.3619790	total: 22ms	remaining: 418ms
5:	learn: 42.6912112	total: 26.8ms	remaining: 420ms
6:	learn: 42.2292118	total: 31.8ms	remaining: 422ms
7:	learn: 41.7725191	total: 36.6ms	remaining: 421ms
8:	learn: 41.1676614	total: 41.4ms	remaining: 418ms
9:	learn: 40.5771076	total: 50.4ms	remaining: 454ms
10:	learn: 39.8343757	total: 58ms	remaining: 470ms
11:	learn: 39.3761142	total: 66.7ms	remaining: 489ms
12:	learn: 38.5254692	total: 74.8ms	remaining: 501ms
13:	learn: 37.9629555	total: 80.4ms	remaining: 494ms
14:	learn: 37.4418438	total: 85.4ms	remaining: 484ms
15:	learn: 37.0507283	total: 90.6ms	remaining: 476ms
16:	learn: 36.6264217	total: 95.8ms	remaining: 468ms
17:	learn: 36.1114940	total: 101ms	remaining: 461ms
18:	learn: 35.7193862	total: 107ms	remaining: 454ms
19:	learn: 35.3301177	total: 112ms	remaining: 447ms
20:	learn: 35.0598280	total: 118ms	remaining: 443ms
21:	learn: 34.5469736	total: 123ms	remaining: 436ms
22:	learn: 34.2064215	total: 128ms	remaining: 427ms
23:	learn: 33.7280710	total: 132ms	remaining: 419ms
24:	learn: 33.3282940	total: 137ms	remaining: 410ms
25:	learn: 32.8478961	total: 141ms	remaining: 402ms
26:	learn: 32.5722164	total: 147ms	remaining: 398ms
27:	learn: 32.2457019	total: 153ms	remaining: 394ms
28:	learn: 31.9230495	total: 158ms	remaining: 386ms
29:	learn: 31.4311611	total: 162ms	remaining: 378ms
30:	learn: 30.9179052	total: 167ms	remaining: 371ms
31:	learn: 30.6201141	total: 171ms	remaining: 364ms
32:	learn: 30.3421106	total: 175ms	remaining: 356ms
33:	learn: 29.9885373	total: 179ms	remaining: 348ms
34:	learn: 29.7462780	total: 183ms	remaining: 340ms
35:	learn: 29.3607153	total: 187ms	remaining: 333ms
36:	learn: 29.1793078	total: 191ms	remaining: 326ms
37:	learn: 28.9276538	total: 196ms	remaining: 319ms
38:	learn: 28.6903934	total: 200ms	remaining: 312ms
39:	learn: 28.2095033	total: 204ms	remaining: 306ms
40:	learn: 27.7990608	total: 208ms	remaining: 300ms
41:	learn: 27.5406632	total: 212ms	remaining: 293ms
42:	learn: 27.2575376	total: 217ms	remaining: 287ms
43:	learn: 26.9741707	total: 221ms	remaining: 281ms
44:	learn: 26.6606899	total: 226ms	remaining: 277ms
45:	learn: 26.4015833	total: 231ms	remaining: 271ms
46:	learn: 26.1828993	total: 235ms	remaining: 265ms
47:	learn: 26.0233709	total: 238ms	remaining: 258ms
48:	learn: 25.9300399	total: 243ms	remaining: 253ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 252ms	remaining: 242ms
51:	learn: 25.1595644	total: 256ms	remaining: 237ms
52:	learn: 24.9955303	total: 264ms	remaining: 234ms
53:	learn: 24.7273966	total: 272ms	remaining: 232ms
54:	learn: 24.5747978	total: 282ms	remaining: 230ms
55:	learn: 24.3807977	total: 287ms	remaining: 226ms
56:	learn: 24.1689569	total: 294ms	remaining: 222ms
57:	learn: 23.9898221	total: 299ms	remaining: 216ms
58:	learn: 23.7566414	total: 304ms	remaining: 211ms
59:	learn: 23.6641165	total: 309ms	remaining: 206ms
60:	learn: 23.5658066	total: 314ms	remaining: 201ms
61:	learn: 23.4338851	total: 319ms	remaining: 196ms
62:	learn: 23.2408837	total: 324ms	remaining: 190ms
63:	learn: 23.0642038	total: 330ms	remaining: 186ms
64:	learn: 22.9032045	total: 335ms	remaining: 180ms
65:	learn: 22.7736138	total: 341ms	remaining: 175ms
66:	learn: 22.6836443	total: 345ms	remaining: 170ms
67:	learn: 22.5983654	total: 351ms	remaining: 165ms
68:	learn: 22.4419813	total: 356ms	remaining: 160ms
69:	learn: 22.2863339	total: 361ms	remaining: 155ms
70:	learn: 22.1792943	total: 365ms	remaining: 149ms
71:	learn: 22.1130574	total: 369ms	remaining: 143ms
72:	learn: 21.9858161	total: 373ms	remaining: 138ms
73:	learn: 21.8577784	total: 377ms	remaining: 132ms
74:	learn: 21.7845222	total: 381ms	remaining: 127ms
75:	learn: 21.6831390	total: 385ms	remaining: 122ms
76:	learn: 21.6292521	total: 389ms	remaining: 116ms
77:	learn: 21.5789330	total: 393ms	remaining: 111ms
78:	learn: 21.5420942	total: 397ms	remaining: 105ms
79:	learn: 21.4280939	total: 401ms	remaining: 100ms
80:	learn: 21.3641165	total: 405ms	remaining: 95ms
81:	learn: 21.2734814	total: 409ms	remaining: 89.9ms
82:	learn: 21.2220323	total: 414ms	remaining: 84.7ms
83:	learn: 21.0625792	total: 418ms	remaining: 79.6ms
84:	learn: 20.9488320	total: 422ms	remaining: 74.6ms
85:	learn: 20.8504255	total: 427ms	remaining: 69.4ms
86:	learn: 20.7848510	total: 431ms	remaining: 64.4ms
87:	learn: 20.7247442	total: 435ms	remaining: 59.3ms
88:	learn: 20.5698590	total: 440ms	remaining: 54.3ms
89:	learn: 20.4067620	total: 444ms	remaining: 49.3ms
90:	learn: 20.3062482	total: 449ms	remaining: 44.4ms
91:	learn: 20.2029696	total: 454ms	remaining: 39.4ms
92:	learn: 20.1384849	total: 458ms	remaining: 34.5ms
93:	learn: 20.0260709	total: 463ms	remaining: 29.5ms
94:	learn: 19.9122100	total: 467ms	remaining: 24.6ms
95:	learn: 19.8648487	total: 472ms	remaining: 19.7ms
96:	learn: 19.8207072	total: 480ms	remaining: 14.8ms
97:	learn: 19.7261189	total: 487ms	remaining: 9.94ms
98:	learn: 19.7042438	total: 496ms	remaining: 5.01ms
99:	learn: 19.6546645	total: 504ms	remaining: 0us
0:	learn: 47.0239288	total: 4.76ms	remaining: 472ms
1:	learn: 46.2253829	total: 10.3ms	remaining: 504ms
2:	learn: 45.5580301	total: 15.7ms	remaining: 507ms
3:	learn: 44.7273237	total: 20.7ms	remaining: 496ms
4:	learn: 43.8867421	total: 24.7ms	remaining: 469ms
5:	learn: 43.3615911	total: 28.4ms	remaining: 446ms
6:	learn: 42.8548390	total: 32.7ms	remaining: 434ms
7:	learn: 42.1606758	total: 36.7ms	remaining: 422ms
8:	learn: 41.6625870	total: 40.8ms	remaining: 413ms
9:	learn: 40.9497092	total: 44.9ms	remaining: 404ms
10:	learn: 40.1886318	total: 48.9ms	remaining: 396ms
11:	learn: 39.7456423	total: 53.6ms	remaining: 393ms
12:	learn: 39.1171373	total: 57.7ms	remaining: 386ms
13:	learn: 38.5451069	total: 62ms	remaining: 381ms
14:	learn: 38.0155834	total: 66.4ms	remaining: 376ms
15:	learn: 37.5631354	total: 70.9ms	remaining: 372ms
16:	learn: 37.1030023	total: 75ms	remaining: 366ms
17:	learn: 36.4563029	total: 78.8ms	remaining: 359ms
18:	learn: 36.0160976	total: 83.3ms	remaining: 355ms
19:	learn: 35.5079827	total: 87.8ms	remaining: 351ms
20:	learn: 35.2111885	total: 92.1ms	remaining: 347ms
21:	learn: 34.9397465	total: 96.6ms	remaining: 342ms
22:	learn: 34.5270048	total: 101ms	remaining: 338ms
23:	learn: 34.0169260	total: 106ms	remaining: 334ms
24:	learn: 33.7454892	total: 110ms	remaining: 329ms
25:	learn: 33.2648157	total: 114ms	remaining: 326ms
26:	learn: 32.8899427	total: 122ms	remaining: 330ms
27:	learn: 32.6185050	total: 129ms	remaining: 332ms
28:	learn: 32.3528531	total: 139ms	remaining: 339ms
29:	learn: 32.0859923	total: 145ms	remaining: 338ms
30:	learn: 31.6511144	total: 152ms	remaining: 338ms
31:	learn: 31.2571765	total: 157ms	remaining: 334ms
32:	learn: 30.9770049	total: 162ms	remaining: 329ms
33:	learn: 30.6084872	total: 167ms	remaining: 325ms
34:	learn: 30.3448632	total: 173ms	remaining: 321ms
35:	learn: 30.0360942	total: 178ms	remaining: 317ms
36:	learn: 29.6648968	total: 183ms	remaining: 312ms
37:	learn: 29.3165114	total: 188ms	remaining: 307ms
38:	learn: 29.0829198	total: 194ms	remaining: 303ms
39:	learn: 28.7752064	total: 198ms	remaining: 298ms
40:	learn: 28.3622191	total: 203ms	remaining: 292ms
41:	learn: 28.1346631	total: 208ms	remaining: 287ms
42:	learn: 27.9585719	total: 213ms	remaining: 283ms
43:	learn: 27.6565566	total: 218ms	remaining: 278ms
44:	learn: 27.3616172	total: 223ms	remaining: 272ms
45:	learn: 27.0658637	total: 227ms	remaining: 266ms
46:	learn: 26.8660382	total: 231ms	remaining: 260ms
47:	learn: 26.6536078	total: 235ms	remaining: 254ms
48:	learn: 26.3524440	total: 239ms	remaining: 248ms
49:	learn: 26.1595277	total: 242ms	remaining: 242ms
50:	learn: 25.9273523	total: 246ms	remaining: 237ms
51:	learn: 25.7195580	total: 250ms	remaining: 231ms
52:	learn: 25.5730225	total: 254ms	remaining: 226ms
53:	learn: 25.3455276	total: 259ms	remaining: 220ms
54:	learn: 25.2289675	total: 263ms	remaining: 215ms
55:	learn: 25.0133024	total: 267ms	remaining: 210ms
56:	learn: 24.8406714	total: 271ms	remaining: 204ms
57:	learn: 24.6367857	total: 275ms	remaining: 199ms
58:	learn: 24.5338177	total: 279ms	remaining: 194ms
59:	learn: 24.3799964	total: 283ms	remaining: 189ms
60:	learn: 24.1447492	total: 288ms	remaining: 184ms
61:	learn: 23.9880495	total: 292ms	remaining: 179ms
62:	learn: 23.7140630	total: 296ms	remaining: 174ms
63:	learn: 23.5003791	total: 301ms	remaining: 169ms
64:	learn: 23.3207645	total: 305ms	remaining: 164ms
65:	learn: 23.1958356	total: 310ms	remaining: 160ms
66:	learn: 23.0471302	total: 315ms	remaining: 155ms
67:	learn: 22.8977183	total: 323ms	remaining: 152ms
68:	learn: 22.7187400	total: 331ms	remaining: 149ms
69:	learn: 22.6523405	total: 340ms	remaining: 146ms
70:	learn: 22.4767453	total: 347ms	remaining: 142ms
71:	learn: 22.3243677	total: 352ms	remaining: 137ms
72:	learn: 22.2133096	total: 358ms	remaining: 132ms
73:	learn: 22.1151713	total: 363ms	remaining: 128ms
74:	learn: 22.0296666	total: 369ms	remaining: 123ms
75:	learn: 21.9195980	total: 374ms	remaining: 118ms
76:	learn: 21.8401730	total: 380ms	remaining: 113ms
77:	learn: 21.8079797	total: 385ms	remaining: 109ms
78:	learn: 21.7274109	total: 390ms	remaining: 104ms
79:	learn: 21.6663032	total: 395ms	remaining: 98.8ms
80:	learn: 21.5633117	total: 400ms	remaining: 93.8ms
81:	learn: 21.4542467	total: 405ms	remaining: 88.9ms
82:	learn: 21.3177957	total: 410ms	remaining: 84ms
83:	learn: 21.1289167	total: 415ms	remaining: 79ms
84:	learn: 21.0297368	total: 420ms	remaining: 74.1ms
85:	learn: 20.9089564	total: 425ms	remaining: 69.2ms
86:	learn: 20.7653988	total: 431ms	remaining: 64.4ms
87:	learn: 20.6521894	total: 436ms	remaining: 59.4ms
88:	learn: 20.5193021	total: 440ms	remaining: 54.4ms
89:	learn: 20.4361620	total: 444ms	remaining: 49.3ms
90:	learn: 20.3546710	total: 448ms	remaining: 44.3ms
91:	learn: 20.2513296	total: 452ms	remaining: 39.3ms
92:	learn: 20.1605550	total: 456ms	remaining: 34.3ms
93:	learn: 20.0515942	total: 460ms	remaining: 29.4ms
94:	learn: 19.9800764	total: 465ms	remaining: 24.5ms
95:	learn: 19.8996532	total: 470ms	remaining: 19.6ms
96:	learn: 19.8450910	total: 474ms	remaining: 14.6ms
97:	learn: 19.7887346	total: 478ms	remaining: 9.76ms
98:	learn: 19.7230872	total: 483ms	remaining: 4.88ms
99:	learn: 19.6328825	total: 488ms	remaining: 0us
0:	learn: 27.5585353	total: 8.43ms	remaining: 834ms
1:	learn: 27.1656995	total: 16.8ms	remaining: 824ms
2:	learn: 26.8590175	total: 22.3ms	remaining: 721ms
3:	learn: 26.5818406	total: 27.4ms	remaining: 657ms
4:	learn: 26.1148663	total: 32.7ms	remaining: 621ms
5:	learn: 25.7690484	total: 38.1ms	remaining: 597ms
6:	learn: 25.3489206	total: 43.4ms	remaining: 577ms
7:	learn: 24.9542406	total: 48.7ms	remaining: 560ms
8:	learn: 24.6777517	total: 54.1ms	remaining: 547ms
9:	learn: 24.3242344	total: 59.1ms	remaining: 532ms
10:	learn: 24.0383073	total: 64.8ms	remaining: 525ms
11:	learn: 23.7383420	total: 69.6ms	remaining: 511ms
12:	learn: 23.3461670	total: 74.2ms	remaining: 497ms
13:	learn: 23.0928636	total: 79.5ms	remaining: 488ms
14:	learn: 22.8770414	total: 84.8ms	remaining: 480ms
15:	learn: 22.6323214	total: 89ms	remaining: 467ms
16:	learn: 22.3597072	total: 93.4ms	remaining: 456ms
17:	learn: 22.1079813	total: 97.4ms	remaining: 444ms
18:	learn: 21.8421199	total: 102ms	remaining: 433ms
19:	learn: 21.6576508	total: 106ms	remaining: 423ms
20:	learn: 21.4301268	total: 110ms	remaining: 414ms
21:	learn: 21.2287388	total: 114ms	remaining: 406ms
22:	learn: 21.0553872	total: 119ms	remaining: 398ms
23:	learn: 20.8977091	total: 123ms	remaining: 390ms
24:	learn: 20.6619051	total: 127ms	remaining: 382ms
25:	learn: 20.5040955	total: 131ms	remaining: 373ms
26:	learn: 20.3181195	total: 135ms	remaining: 366ms
27:	learn: 20.0869436	total: 140ms	remaining: 360ms
28:	learn: 19.9375985	total: 144ms	remaining: 352ms
29:	learn: 19.8247516	total: 148ms	remaining: 344ms
30:	learn: 19.6261697	total: 152ms	remaining: 338ms
31:	learn: 19.4547236	total: 156ms	remaining: 332ms
32:	learn: 19.3157092	total: 161ms	remaining: 326ms
33:	learn: 19.1561419	total: 165ms	remaining: 320ms
34:	learn: 19.0453620	total: 170ms	remaining: 315ms
35:	learn: 18.8738574	total: 174ms	remaining: 310ms
36:	learn: 18.7072907	total: 178ms	remaining: 304ms
37:	learn: 18.5877943	total: 183ms	remaining: 298ms
38:	learn: 18.4436380	total: 188ms	remaining: 294ms
39:	learn: 18.3463356	total: 196ms	remaining: 293ms
40:	learn: 18.2008059	total: 203ms	remaining: 292ms
41:	learn: 18.0582079	total: 213ms	remaining: 294ms
42:	learn: 17.8891982	total: 221ms	remaining: 293ms
43:	learn: 17.7332246	total: 226ms	remaining: 288ms
44:	learn: 17.6206421	total: 232ms	remaining: 284ms
45:	learn: 17.4982800	total: 237ms	remaining: 278ms
46:	learn: 17.3970150	total: 242ms	remaining: 273ms
47:	learn: 17.3058203	total: 247ms	remaining: 268ms
48:	learn: 17.1789256	total: 252ms	remaining: 263ms
49:	learn: 17.0916229	total: 258ms	remaining: 258ms
50:	learn: 16.9859820	total: 263ms	remaining: 252ms
51:	learn: 16.8995582	total: 267ms	remaining: 247ms
52:	learn: 16.8137014	total: 272ms	remaining: 241ms
53:	learn: 16.7021451	total: 276ms	remaining: 235ms
54:	learn: 16.5895582	total: 280ms	remaining: 229ms
55:	learn: 16.5015639	total: 285ms	remaining: 224ms
56:	learn: 16.4356637	total: 290ms	remaining: 219ms
57:	learn: 16.3514525	total: 296ms	remaining: 214ms
58:	learn: 16.2401369	total: 300ms	remaining: 209ms
59:	learn: 16.1293223	total: 305ms	remaining: 203ms
60:	learn: 16.0271167	total: 309ms	remaining: 198ms
61:	learn: 15.9126257	total: 313ms	remaining: 192ms
62:	learn: 15.8391096	total: 317ms	remaining: 186ms
63:	learn: 15.7441773	total: 322ms	remaining: 181ms
64:	learn: 15.6885195	total: 326ms	remaining: 176ms
65:	learn: 15.6052039	total: 330ms	remaining: 170ms
66:	learn: 15.5074202	total: 334ms	remaining: 165ms
67:	learn: 15.4054338	total: 339ms	remaining: 160ms
68:	learn: 15.2885714	total: 344ms	remaining: 154ms
69:	learn: 15.2157472	total: 348ms	remaining: 149ms
70:	learn: 15.1031554	total: 352ms	remaining: 144ms
71:	learn: 15.0237470	total: 356ms	remaining: 138ms
72:	learn: 14.9756825	total: 361ms	remaining: 133ms
73:	learn: 14.8840596	total: 366ms	remaining: 128ms
74:	learn: 14.8077061	total: 370ms	remaining: 123ms
75:	learn: 14.7444437	total: 375ms	remaining: 118ms
76:	learn: 14.6751720	total: 380ms	remaining: 113ms
77:	learn: 14.5830333	total: 384ms	remaining: 108ms
78:	learn: 14.5241206	total: 389ms	remaining: 103ms
79:	learn: 14.4892731	total: 397ms	remaining: 99.4ms
80:	learn: 14.4256605	total: 406ms	remaining: 95.2ms
81:	learn: 14.3666860	total: 414ms	remaining: 90.9ms
82:	learn: 14.2938372	total: 423ms	remaining: 86.6ms
83:	learn: 14.2161532	total: 428ms	remaining: 81.5ms
84:	learn: 14.1582910	total: 433ms	remaining: 76.5ms
85:	learn: 14.1029153	total: 439ms	remaining: 71.5ms
86:	learn: 14.0475835	total: 445ms	remaining: 66.5ms
87:	learn: 13.9892661	total: 450ms	remaining: 61.4ms
88:	learn: 13.9481628	total: 456ms	remaining: 56.3ms
89:	learn: 13.8483991	total: 461ms	remaining: 51.2ms
90:	learn: 13.7775614	total: 466ms	remaining: 46.1ms
91:	learn: 13.7304585	total: 472ms	remaining: 41ms
92:	learn: 13.6783381	total: 477ms	remaining: 35.9ms
93:	learn: 13.6356964	total: 482ms	remaining: 30.8ms
94:	learn: 13.5924371	total: 486ms	remaining: 25.6ms
95:	learn: 13.5400746	total: 492ms	remaining: 20.5ms
96:	learn: 13.4897333	total: 497ms	remaining: 15.4ms
97:	learn: 13.4470321	total: 502ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 506ms	remaining: 5.11ms
99:	learn: 13.3082371	total: 510ms	remaining: 0us
0:	learn: 43.0395283	total: 4.84ms	remaining: 479ms
1:	learn: 42.1130223	total: 9.09ms	remaining: 446ms
2:	learn: 41.1753409	total: 13.5ms	remaining: 437ms
3:	learn: 40.3637444	total: 18.1ms	remaining: 434ms
4:	learn: 39.6508088	total: 22.4ms	remaining: 425ms
5:	learn: 38.7217934	total: 26.9ms	remaining: 422ms
6:	learn: 37.8538055	total: 31.1ms	remaining: 413ms
7:	learn: 36.9793574	total: 38.3ms	remaining: 440ms
8:	learn: 36.3076984	total: 46ms	remaining: 465ms
9:	learn: 35.6673160	total: 53.7ms	remaining: 483ms
10:	learn: 34.8889800	total: 60ms	remaining: 486ms
11:	learn: 34.1675517	total: 67ms	remaining: 491ms
12:	learn: 33.6779564	total: 72.7ms	remaining: 487ms
13:	learn: 33.0710039	total: 77.9ms	remaining: 479ms
14:	learn: 32.4966674	total: 83.1ms	remaining: 471ms
15:	learn: 31.9492856	total: 88.6ms	remaining: 465ms
16:	learn: 31.5108129	total: 93.8ms	remaining: 458ms
17:	learn: 30.9804023	total: 99.1ms	remaining: 451ms
18:	learn: 30.4169089	total: 105ms	remaining: 446ms
19:	learn: 29.8930375	total: 110ms	remaining: 439ms
20:	learn: 29.3974421	total: 115ms	remaining: 433ms
21:	learn: 28.8792307	total: 123ms	remaining: 435ms
22:	learn: 28.3894474	total: 128ms	remaining: 428ms
23:	learn: 27.9921276	total: 133ms	remaining: 421ms
24:	learn: 27.6158887	total: 138ms	remaining: 414ms
25:	learn: 27.2866950	total: 142ms	remaining: 404ms
26:	learn: 26.8770708	total: 146ms	remaining: 395ms
27:	learn: 26.6233005	total: 150ms	remaining: 385ms
28:	learn: 26.2921934	total: 154ms	remaining: 377ms
29:	learn: 25.9156920	total: 158ms	remaining: 369ms
30:	learn: 25.5311106	total: 160ms	remaining: 356ms
31:	learn: 25.2178997	total: 164ms	remaining: 349ms
32:	learn: 24.8572196	total: 168ms	remaining: 342ms
33:	learn: 24.5849710	total: 172ms	remaining: 334ms
34:	learn: 24.2209190	total: 176ms	remaining: 328ms
35:	learn: 23.8708250	total: 181ms	remaining: 322ms
36:	learn: 23.5325279	total: 186ms	remaining: 317ms
37:	learn: 23.2116148	total: 196ms	remaining: 319ms
38:	learn: 22.9696787	total: 200ms	remaining: 313ms
39:	learn: 22.7936783	total: 204ms	remaining: 307ms
40:	learn: 22.6228847	total: 209ms	remaining: 301ms
41:	learn: 22.3691527	total: 213ms	remaining: 294ms
42:	learn: 22.1002173	total: 217ms	remaining: 288ms
43:	learn: 21.9157268	total: 221ms	remaining: 281ms
44:	learn: 21.7229102	total: 225ms	remaining: 275ms
45:	learn: 21.4642005	total: 229ms	remaining: 269ms
46:	learn: 21.3029442	total: 234ms	remaining: 263ms
47:	learn: 21.1469792	total: 238ms	remaining: 258ms
48:	learn: 20.9458235	total: 243ms	remaining: 252ms
49:	learn: 20.7335242	total: 248ms	remaining: 248ms
50:	learn: 20.5440269	total: 252ms	remaining: 242ms
51:	learn: 20.3661449	total: 257ms	remaining: 238ms
52:	learn: 20.2158134	total: 262ms	remaining: 233ms
53:	learn: 19.9934873	total: 271ms	remaining: 230ms
54:	learn: 19.7879739	total: 278ms	remaining: 228ms
55:	learn: 19.6630460	total: 287ms	remaining: 226ms
56:	learn: 19.5152729	total: 294ms	remaining: 221ms
57:	learn: 19.3581128	total: 299ms	remaining: 217ms
58:	learn: 19.2209303	total: 304ms	remaining: 211ms
59:	learn: 19.0965248	total: 321ms	remaining: 214ms
60:	learn: 19.0035954	total: 326ms	remaining: 208ms
61:	learn: 18.8554149	total: 331ms	remaining: 203ms
62:	learn: 18.7095427	total: 336ms	remaining: 197ms
63:	learn: 18.5751494	total: 341ms	remaining: 192ms
64:	learn: 18.4678251	total: 346ms	remaining: 187ms
65:	learn: 18.3500325	total: 352ms	remaining: 181ms
66:	learn: 18.2088983	total: 357ms	remaining: 176ms
67:	learn: 18.0737705	total: 362ms	remaining: 170ms
68:	learn: 17.9325058	total: 368ms	remaining: 165ms
69:	learn: 17.8003911	total: 371ms	remaining: 159ms
70:	learn: 17.7385366	total: 376ms	remaining: 153ms
71:	learn: 17.6106998	total: 380ms	remaining: 148ms
72:	learn: 17.4816270	total: 384ms	remaining: 142ms
73:	learn: 17.4025554	total: 388ms	remaining: 136ms
74:	learn: 17.2902108	total: 392ms	remaining: 131ms
75:	learn: 17.2158048	total: 396ms	remaining: 125ms
76:	learn: 17.1261053	total: 400ms	remaining: 120ms
77:	learn: 17.0308917	total: 404ms	remaining: 114ms
78:	learn: 16.9546705	total: 408ms	remaining: 109ms
79:	learn: 16.8319165	total: 413ms	remaining: 103ms
80:	learn: 16.7687017	total: 417ms	remaining: 97.9ms
81:	learn: 16.6972326	total: 421ms	remaining: 92.5ms
82:	learn: 16.6124580	total: 426ms	remaining: 87.2ms
83:	learn: 16.4999052	total: 430ms	remaining: 82ms
84:	learn: 16.4302484	total: 435ms	remaining: 76.7ms
85:	learn: 16.3201363	total: 440ms	remaining: 71.6ms
86:	learn: 16.2534314	total: 444ms	remaining: 66.3ms
87:	learn: 16.1720485	total: 448ms	remaining: 61.1ms
88:	learn: 16.0625751	total: 453ms	remaining: 56ms
89:	learn: 15.9135088	total: 457ms	remaining: 50.8ms
90:	learn: 15.8658863	total: 462ms	remaining: 45.7ms
91:	learn: 15.8066805	total: 470ms	remaining: 40.8ms
92:	learn: 15.7412103	total: 477ms	remaining: 35.9ms
93:	learn: 15.6542776	total: 484ms	remaining: 30.9ms
94:	learn: 15.5760334	total: 491ms	remaining: 25.9ms
95:	learn: 15.5434131	total: 497ms	remaining: 20.7ms
96:	learn: 15.4709561	total: 502ms	remaining: 15.5ms
97:	learn: 15.4449618	total: 508ms	remaining: 10.4ms
98:	learn: 15.3752761	total: 513ms	remaining: 5.18ms
99:	learn: 15.3106595	total: 518ms	remaining: 0us
0:	learn: 46.7142257	total: 4.53ms	remaining: 448ms
1:	learn: 45.7634153	total: 8.62ms	remaining: 423ms
2:	learn: 45.0054253	total: 12.9ms	remaining: 419ms
3:	learn: 44.2120432	total: 16.8ms	remaining: 402ms
4:	learn: 43.3960472	total: 20.8ms	remaining: 394ms
5:	learn: 42.8588120	total: 24.8ms	remaining: 388ms
6:	learn: 41.9533701	total: 28.8ms	remaining: 383ms
7:	learn: 41.2745030	total: 33.2ms	remaining: 382ms
8:	learn: 40.6797495	total: 37.3ms	remaining: 378ms
9:	learn: 39.9899571	total: 41.7ms	remaining: 375ms
10:	learn: 39.4682100	total: 46.2ms	remaining: 374ms
11:	learn: 39.0305595	total: 50.3ms	remaining: 369ms
12:	learn: 38.4200417	total: 54.3ms	remaining: 363ms
13:	learn: 37.8425194	total: 58.3ms	remaining: 358ms
14:	learn: 37.4203127	total: 62.2ms	remaining: 353ms
15:	learn: 36.9917688	total: 67ms	remaining: 352ms
16:	learn: 36.5544138	total: 71.8ms	remaining: 351ms
17:	learn: 36.0727019	total: 76.2ms	remaining: 347ms
18:	learn: 35.4835715	total: 80.9ms	remaining: 345ms
19:	learn: 34.9865654	total: 85.5ms	remaining: 342ms
20:	learn: 34.6063373	total: 89.8ms	remaining: 338ms
21:	learn: 34.0997289	total: 94.4ms	remaining: 335ms
22:	learn: 33.7313171	total: 102ms	remaining: 341ms
23:	learn: 33.3582000	total: 109ms	remaining: 345ms
24:	learn: 32.9432456	total: 117ms	remaining: 351ms
25:	learn: 32.5220888	total: 124ms	remaining: 352ms
26:	learn: 32.2172292	total: 131ms	remaining: 354ms
27:	learn: 31.8972904	total: 136ms	remaining: 350ms
28:	learn: 31.6405350	total: 141ms	remaining: 346ms
29:	learn: 31.4167702	total: 146ms	remaining: 341ms
30:	learn: 30.8541961	total: 148ms	remaining: 330ms
31:	learn: 30.5572111	total: 153ms	remaining: 326ms
32:	learn: 30.1700399	total: 159ms	remaining: 323ms
33:	learn: 29.8537271	total: 164ms	remaining: 319ms
34:	learn: 29.6192540	total: 170ms	remaining: 316ms
35:	learn: 29.3276362	total: 175ms	remaining: 312ms
36:	learn: 28.9985179	total: 181ms	remaining: 308ms
37:	learn: 28.7046880	total: 185ms	remaining: 302ms
38:	learn: 28.4412677	total: 190ms	remaining: 298ms
39:	learn: 28.1277292	total: 196ms	remaining: 293ms
40:	learn: 27.9000750	total: 201ms	remaining: 289ms
41:	learn: 27.5433162	total: 205ms	remaining: 283ms
42:	learn: 27.2493285	total: 209ms	remaining: 278ms
43:	learn: 26.9576632	total: 211ms	remaining: 269ms
44:	learn: 26.6177110	total: 215ms	remaining: 263ms
45:	learn: 26.2812456	total: 220ms	remaining: 258ms
46:	learn: 26.0803859	total: 224ms	remaining: 253ms
47:	learn: 25.9543581	total: 228ms	remaining: 247ms
48:	learn: 25.7951582	total: 232ms	remaining: 242ms
49:	learn: 25.6548184	total: 237ms	remaining: 237ms
50:	learn: 25.4010843	total: 241ms	remaining: 232ms
51:	learn: 24.9773937	total: 246ms	remaining: 227ms
52:	learn: 24.8026156	total: 250ms	remaining: 222ms
53:	learn: 24.5568053	total: 254ms	remaining: 217ms
54:	learn: 24.2281839	total: 259ms	remaining: 212ms
55:	learn: 23.9202795	total: 265ms	remaining: 208ms
56:	learn: 23.7625591	total: 269ms	remaining: 203ms
57:	learn: 23.5429721	total: 275ms	remaining: 199ms
58:	learn: 23.3175893	total: 280ms	remaining: 194ms
59:	learn: 23.2035130	total: 285ms	remaining: 190ms
60:	learn: 23.0232450	total: 290ms	remaining: 185ms
61:	learn: 22.8384958	total: 295ms	remaining: 181ms
62:	learn: 22.6499902	total: 301ms	remaining: 177ms
63:	learn: 22.4577426	total: 309ms	remaining: 174ms
64:	learn: 22.3333158	total: 317ms	remaining: 170ms
65:	learn: 22.2064131	total: 324ms	remaining: 167ms
66:	learn: 22.1434971	total: 332ms	remaining: 164ms
67:	learn: 21.9596519	total: 337ms	remaining: 159ms
68:	learn: 21.8475576	total: 342ms	remaining: 154ms
69:	learn: 21.6954745	total: 348ms	remaining: 149ms
70:	learn: 21.5635976	total: 353ms	remaining: 144ms
71:	learn: 21.4588506	total: 358ms	remaining: 139ms
72:	learn: 21.3527268	total: 364ms	remaining: 134ms
73:	learn: 21.2661288	total: 368ms	remaining: 129ms
74:	learn: 21.1817333	total: 373ms	remaining: 124ms
75:	learn: 21.0527553	total: 378ms	remaining: 119ms
76:	learn: 20.9229021	total: 383ms	remaining: 114ms
77:	learn: 20.7563946	total: 388ms	remaining: 110ms
78:	learn: 20.6569831	total: 393ms	remaining: 105ms
79:	learn: 20.4982663	total: 399ms	remaining: 99.7ms
80:	learn: 20.3185460	total: 405ms	remaining: 94.9ms
81:	learn: 20.2096241	total: 409ms	remaining: 89.8ms
82:	learn: 20.1274891	total: 413ms	remaining: 84.6ms
83:	learn: 20.0740139	total: 417ms	remaining: 79.5ms
84:	learn: 19.9630699	total: 421ms	remaining: 74.4ms
85:	learn: 19.8753899	total: 426ms	remaining: 69.3ms
86:	learn: 19.6563612	total: 430ms	remaining: 64.3ms
87:	learn: 19.4680232	total: 434ms	remaining: 59.2ms
88:	learn: 19.3503431	total: 438ms	remaining: 54.1ms
89:	learn: 19.2221379	total: 442ms	remaining: 49.1ms
90:	learn: 19.0732542	total: 446ms	remaining: 44.2ms
91:	learn: 18.9825190	total: 451ms	remaining: 39.2ms
92:	learn: 18.8839009	total: 454ms	remaining: 34.2ms
93:	learn: 18.8012219	total: 458ms	remaining: 29.3ms
94:	learn: 18.7172713	total: 463ms	remaining: 24.4ms
95:	learn: 18.6201170	total: 467ms	remaining: 19.5ms
96:	learn: 18.5318611	total: 472ms	remaining: 14.6ms
97:	learn: 18.3833356	total: 476ms	remaining: 9.72ms
98:	learn: 18.3289700	total: 481ms	remaining: 4.86ms
99:	learn: 18.2227333	total: 485ms	remaining: 0us
0:	learn: 46.3764524	total: 5.9ms	remaining: 584ms
1:	learn: 45.5561269	total: 11.3ms	remaining: 552ms
2:	learn: 44.8811245	total: 16.2ms	remaining: 525ms
3:	learn: 44.0788617	total: 21.4ms	remaining: 514ms
4:	learn: 43.3619790	total: 26.7ms	remaining: 508ms
5:	learn: 42.6912112	total: 32.7ms	remaining: 512ms
6:	learn: 42.2292118	total: 37.8ms	remaining: 502ms
7:	learn: 41.7725191	total: 43ms	remaining: 494ms
8:	learn: 41.1676614	total: 47.9ms	remaining: 485ms
9:	learn: 40.5771076	total: 52.6ms	remaining: 474ms
10:	learn: 39.8343757	total: 57.7ms	remaining: 467ms
11:	learn: 39.3761142	total: 62.9ms	remaining: 461ms
12:	learn: 38.5254692	total: 68.5ms	remaining: 458ms
13:	learn: 37.9629555	total: 72.7ms	remaining: 446ms
14:	learn: 37.4418438	total: 76.6ms	remaining: 434ms
15:	learn: 37.0507283	total: 80.6ms	remaining: 423ms
16:	learn: 36.6264217	total: 84.5ms	remaining: 412ms
17:	learn: 36.1114940	total: 88.7ms	remaining: 404ms
18:	learn: 35.7193862	total: 92.7ms	remaining: 395ms
19:	learn: 35.3301177	total: 96.5ms	remaining: 386ms
20:	learn: 35.0598280	total: 100ms	remaining: 378ms
21:	learn: 34.5469736	total: 105ms	remaining: 371ms
22:	learn: 34.2064215	total: 109ms	remaining: 364ms
23:	learn: 33.7280710	total: 112ms	remaining: 356ms
24:	learn: 33.3282940	total: 117ms	remaining: 350ms
25:	learn: 32.8478961	total: 121ms	remaining: 343ms
26:	learn: 32.5722164	total: 125ms	remaining: 337ms
27:	learn: 32.2457019	total: 129ms	remaining: 331ms
28:	learn: 31.9230495	total: 133ms	remaining: 327ms
29:	learn: 31.4311611	total: 138ms	remaining: 321ms
30:	learn: 30.9179052	total: 142ms	remaining: 316ms
31:	learn: 30.6201141	total: 147ms	remaining: 312ms
32:	learn: 30.3421106	total: 151ms	remaining: 307ms
33:	learn: 29.9885373	total: 156ms	remaining: 302ms
34:	learn: 29.7462780	total: 160ms	remaining: 297ms
35:	learn: 29.3607153	total: 165ms	remaining: 293ms
36:	learn: 29.1793078	total: 173ms	remaining: 295ms
37:	learn: 28.9276538	total: 182ms	remaining: 298ms
38:	learn: 28.6903934	total: 192ms	remaining: 300ms
39:	learn: 28.2095033	total: 199ms	remaining: 299ms
40:	learn: 27.7990608	total: 204ms	remaining: 294ms
41:	learn: 27.5406632	total: 209ms	remaining: 289ms
42:	learn: 27.2575376	total: 215ms	remaining: 285ms
43:	learn: 26.9741707	total: 220ms	remaining: 281ms
44:	learn: 26.6606899	total: 226ms	remaining: 276ms
45:	learn: 26.4015833	total: 231ms	remaining: 272ms
46:	learn: 26.1828993	total: 236ms	remaining: 267ms
47:	learn: 26.0233709	total: 239ms	remaining: 259ms
48:	learn: 25.9300399	total: 245ms	remaining: 255ms
49:	learn: 25.5861489	total: 250ms	remaining: 250ms
50:	learn: 25.4322012	total: 254ms	remaining: 244ms
51:	learn: 25.1595644	total: 259ms	remaining: 239ms
52:	learn: 24.9955303	total: 264ms	remaining: 234ms
53:	learn: 24.7273966	total: 269ms	remaining: 230ms
54:	learn: 24.5747978	total: 274ms	remaining: 224ms
55:	learn: 24.3807977	total: 278ms	remaining: 218ms
56:	learn: 24.1689569	total: 282ms	remaining: 213ms
57:	learn: 23.9898221	total: 287ms	remaining: 208ms
58:	learn: 23.7566414	total: 291ms	remaining: 202ms
59:	learn: 23.6641165	total: 294ms	remaining: 196ms
60:	learn: 23.5658066	total: 298ms	remaining: 191ms
61:	learn: 23.4338851	total: 303ms	remaining: 185ms
62:	learn: 23.2408837	total: 306ms	remaining: 180ms
63:	learn: 23.0642038	total: 311ms	remaining: 175ms
64:	learn: 22.9032045	total: 315ms	remaining: 169ms
65:	learn: 22.7736138	total: 319ms	remaining: 164ms
66:	learn: 22.6836443	total: 323ms	remaining: 159ms
67:	learn: 22.5983654	total: 327ms	remaining: 154ms
68:	learn: 22.4419813	total: 332ms	remaining: 149ms
69:	learn: 22.2863339	total: 336ms	remaining: 144ms
70:	learn: 22.1792943	total: 341ms	remaining: 139ms
71:	learn: 22.1130574	total: 345ms	remaining: 134ms
72:	learn: 21.9858161	total: 349ms	remaining: 129ms
73:	learn: 21.8577784	total: 354ms	remaining: 124ms
74:	learn: 21.7845222	total: 358ms	remaining: 119ms
75:	learn: 21.6831390	total: 363ms	remaining: 115ms
76:	learn: 21.6292521	total: 370ms	remaining: 110ms
77:	learn: 21.5789330	total: 377ms	remaining: 106ms
78:	learn: 21.5420942	total: 384ms	remaining: 102ms
79:	learn: 21.4280939	total: 392ms	remaining: 97.9ms
80:	learn: 21.3641165	total: 399ms	remaining: 93.5ms
81:	learn: 21.2734814	total: 404ms	remaining: 88.6ms
82:	learn: 21.2220323	total: 409ms	remaining: 83.8ms
83:	learn: 21.0625792	total: 414ms	remaining: 78.9ms
84:	learn: 20.9488320	total: 420ms	remaining: 74.1ms
85:	learn: 20.8504255	total: 425ms	remaining: 69.2ms
86:	learn: 20.7848510	total: 431ms	remaining: 64.4ms
87:	learn: 20.7247442	total: 436ms	remaining: 59.4ms
88:	learn: 20.5698590	total: 441ms	remaining: 54.5ms
89:	learn: 20.4067620	total: 446ms	remaining: 49.5ms
90:	learn: 20.3062482	total: 451ms	remaining: 44.6ms
91:	learn: 20.2029696	total: 455ms	remaining: 39.6ms
92:	learn: 20.1384849	total: 461ms	remaining: 34.7ms
93:	learn: 20.0260709	total: 466ms	remaining: 29.7ms
94:	learn: 19.9122100	total: 470ms	remaining: 24.7ms
95:	learn: 19.8648487	total: 474ms	remaining: 19.8ms
96:	learn: 19.8207072	total: 478ms	remaining: 14.8ms
97:	learn: 19.7261189	total: 482ms	remaining: 9.83ms
98:	learn: 19.7042438	total: 486ms	remaining: 4.91ms
99:	learn: 19.6546645	total: 490ms	remaining: 0us
0:	learn: 47.0239288	total: 4.94ms	remaining: 489ms
1:	learn: 46.2253829	total: 9.37ms	remaining: 459ms
2:	learn: 45.5580301	total: 13.9ms	remaining: 451ms
3:	learn: 44.7273237	total: 18.2ms	remaining: 437ms
4:	learn: 43.8867421	total: 22.4ms	remaining: 425ms
5:	learn: 43.3615911	total: 26.7ms	remaining: 418ms
6:	learn: 42.8548390	total: 31.7ms	remaining: 422ms
7:	learn: 42.1606758	total: 39.8ms	remaining: 458ms
8:	learn: 41.6625870	total: 46.7ms	remaining: 472ms
9:	learn: 40.9497092	total: 54.4ms	remaining: 490ms
10:	learn: 40.1886318	total: 60.9ms	remaining: 493ms
11:	learn: 39.7456423	total: 67.1ms	remaining: 492ms
12:	learn: 39.1171373	total: 72.8ms	remaining: 487ms
13:	learn: 38.5451069	total: 78.1ms	remaining: 480ms
14:	learn: 38.0155834	total: 83.3ms	remaining: 472ms
15:	learn: 37.5631354	total: 89.1ms	remaining: 468ms
16:	learn: 37.1030023	total: 93.9ms	remaining: 459ms
17:	learn: 36.4563029	total: 99.2ms	remaining: 452ms
18:	learn: 36.0160976	total: 104ms	remaining: 445ms
19:	learn: 35.5079827	total: 109ms	remaining: 438ms
20:	learn: 35.2111885	total: 115ms	remaining: 431ms
21:	learn: 34.9397465	total: 119ms	remaining: 424ms
22:	learn: 34.5270048	total: 125ms	remaining: 418ms
23:	learn: 34.0169260	total: 130ms	remaining: 413ms
24:	learn: 33.7454892	total: 135ms	remaining: 405ms
25:	learn: 33.2648157	total: 139ms	remaining: 397ms
26:	learn: 32.8899427	total: 143ms	remaining: 388ms
27:	learn: 32.6185050	total: 148ms	remaining: 379ms
28:	learn: 32.3528531	total: 152ms	remaining: 372ms
29:	learn: 32.0859923	total: 156ms	remaining: 364ms
30:	learn: 31.6511144	total: 161ms	remaining: 358ms
31:	learn: 31.2571765	total: 165ms	remaining: 350ms
32:	learn: 30.9770049	total: 169ms	remaining: 343ms
33:	learn: 30.6084872	total: 174ms	remaining: 338ms
34:	learn: 30.3448632	total: 179ms	remaining: 333ms
35:	learn: 30.0360942	total: 184ms	remaining: 327ms
36:	learn: 29.6648968	total: 189ms	remaining: 322ms
37:	learn: 29.3165114	total: 194ms	remaining: 316ms
38:	learn: 29.0829198	total: 198ms	remaining: 310ms
39:	learn: 28.7752064	total: 202ms	remaining: 303ms
40:	learn: 28.3622191	total: 207ms	remaining: 298ms
41:	learn: 28.1346631	total: 212ms	remaining: 292ms
42:	learn: 27.9585719	total: 216ms	remaining: 286ms
43:	learn: 27.6565566	total: 220ms	remaining: 280ms
44:	learn: 27.3616172	total: 225ms	remaining: 275ms
45:	learn: 27.0658637	total: 229ms	remaining: 269ms
46:	learn: 26.8660382	total: 234ms	remaining: 264ms
47:	learn: 26.6536078	total: 238ms	remaining: 258ms
48:	learn: 26.3524440	total: 243ms	remaining: 253ms
49:	learn: 26.1595277	total: 248ms	remaining: 248ms
50:	learn: 25.9273523	total: 252ms	remaining: 242ms
51:	learn: 25.7195580	total: 256ms	remaining: 236ms
52:	learn: 25.5730225	total: 261ms	remaining: 231ms
53:	learn: 25.3455276	total: 268ms	remaining: 228ms
54:	learn: 25.2289675	total: 275ms	remaining: 225ms
55:	learn: 25.0133024	total: 286ms	remaining: 224ms
56:	learn: 24.8406714	total: 291ms	remaining: 219ms
57:	learn: 24.6367857	total: 297ms	remaining: 215ms
58:	learn: 24.5338177	total: 302ms	remaining: 210ms
59:	learn: 24.3799964	total: 307ms	remaining: 205ms
60:	learn: 24.1447492	total: 312ms	remaining: 200ms
61:	learn: 23.9880495	total: 317ms	remaining: 195ms
62:	learn: 23.7140630	total: 323ms	remaining: 189ms
63:	learn: 23.5003791	total: 328ms	remaining: 185ms
64:	learn: 23.3207645	total: 333ms	remaining: 180ms
65:	learn: 23.1958356	total: 338ms	remaining: 174ms
66:	learn: 23.0471302	total: 343ms	remaining: 169ms
67:	learn: 22.8977183	total: 348ms	remaining: 164ms
68:	learn: 22.7187400	total: 352ms	remaining: 158ms
69:	learn: 22.6523405	total: 357ms	remaining: 153ms
70:	learn: 22.4767453	total: 362ms	remaining: 148ms
71:	learn: 22.3243677	total: 367ms	remaining: 143ms
72:	learn: 22.2133096	total: 372ms	remaining: 138ms
73:	learn: 22.1151713	total: 376ms	remaining: 132ms
74:	learn: 22.0296666	total: 380ms	remaining: 127ms
75:	learn: 21.9195980	total: 384ms	remaining: 121ms
76:	learn: 21.8401730	total: 389ms	remaining: 116ms
77:	learn: 21.8079797	total: 392ms	remaining: 111ms
78:	learn: 21.7274109	total: 396ms	remaining: 105ms
79:	learn: 21.6663032	total: 400ms	remaining: 100ms
80:	learn: 21.5633117	total: 404ms	remaining: 94.8ms
81:	learn: 21.4542467	total: 408ms	remaining: 89.7ms
82:	learn: 21.3177957	total: 413ms	remaining: 84.5ms
83:	learn: 21.1289167	total: 417ms	remaining: 79.4ms
84:	learn: 21.0297368	total: 421ms	remaining: 74.3ms
85:	learn: 20.9089564	total: 426ms	remaining: 69.3ms
86:	learn: 20.7653988	total: 431ms	remaining: 64.3ms
87:	learn: 20.6521894	total: 435ms	remaining: 59.3ms
88:	learn: 20.5193021	total: 439ms	remaining: 54.3ms
89:	learn: 20.4361620	total: 444ms	remaining: 49.3ms
90:	learn: 20.3546710	total: 448ms	remaining: 44.3ms
91:	learn: 20.2513296	total: 453ms	remaining: 39.4ms
92:	learn: 20.1605550	total: 458ms	remaining: 34.5ms
93:	learn: 20.0515942	total: 466ms	remaining: 29.7ms
94:	learn: 19.9800764	total: 474ms	remaining: 25ms
95:	learn: 19.8996532	total: 482ms	remaining: 20.1ms
96:	learn: 19.8450910	total: 490ms	remaining: 15.1ms
97:	learn: 19.7887346	total: 495ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 501ms	remaining: 5.06ms
99:	learn: 19.6328825	total: 506ms	remaining: 0us
0:	learn: 27.5585353	total: 4.25ms	remaining: 421ms
1:	learn: 27.1656995	total: 8.11ms	remaining: 397ms
2:	learn: 26.8590175	total: 11.8ms	remaining: 383ms
3:	learn: 26.5818406	total: 15.7ms	remaining: 377ms
4:	learn: 26.1148663	total: 20ms	remaining: 381ms
5:	learn: 25.7690484	total: 24.2ms	remaining: 379ms
6:	learn: 25.3489206	total: 28.4ms	remaining: 377ms
7:	learn: 24.9542406	total: 32.7ms	remaining: 376ms
8:	learn: 24.6777517	total: 36.8ms	remaining: 372ms
9:	learn: 24.3242344	total: 40.8ms	remaining: 367ms
10:	learn: 24.0383073	total: 44.7ms	remaining: 362ms
11:	learn: 23.7383420	total: 48.9ms	remaining: 359ms
12:	learn: 23.3461670	total: 53.3ms	remaining: 356ms
13:	learn: 23.0928636	total: 57.2ms	remaining: 352ms
14:	learn: 22.8770414	total: 61.3ms	remaining: 348ms
15:	learn: 22.6323214	total: 65.3ms	remaining: 343ms
16:	learn: 22.3597072	total: 69.8ms	remaining: 341ms
17:	learn: 22.1079813	total: 74.3ms	remaining: 339ms
18:	learn: 21.8421199	total: 79ms	remaining: 337ms
19:	learn: 21.6576508	total: 83.5ms	remaining: 334ms
20:	learn: 21.4301268	total: 88.2ms	remaining: 332ms
21:	learn: 21.2287388	total: 93ms	remaining: 330ms
22:	learn: 21.0553872	total: 97.6ms	remaining: 327ms
23:	learn: 20.8977091	total: 102ms	remaining: 324ms
24:	learn: 20.6619051	total: 110ms	remaining: 331ms
25:	learn: 20.5040955	total: 118ms	remaining: 335ms
26:	learn: 20.3181195	total: 127ms	remaining: 344ms
27:	learn: 20.0869436	total: 133ms	remaining: 342ms
28:	learn: 19.9375985	total: 139ms	remaining: 341ms
29:	learn: 19.8247516	total: 145ms	remaining: 338ms
30:	learn: 19.6261697	total: 150ms	remaining: 334ms
31:	learn: 19.4547236	total: 155ms	remaining: 330ms
32:	learn: 19.3157092	total: 161ms	remaining: 326ms
33:	learn: 19.1561419	total: 166ms	remaining: 321ms
34:	learn: 19.0453620	total: 171ms	remaining: 317ms
35:	learn: 18.8738574	total: 176ms	remaining: 313ms
36:	learn: 18.7072907	total: 181ms	remaining: 308ms
37:	learn: 18.5877943	total: 186ms	remaining: 304ms
38:	learn: 18.4436380	total: 191ms	remaining: 298ms
39:	learn: 18.3463356	total: 196ms	remaining: 294ms
40:	learn: 18.2008059	total: 201ms	remaining: 290ms
41:	learn: 18.0582079	total: 207ms	remaining: 285ms
42:	learn: 17.8891982	total: 211ms	remaining: 280ms
43:	learn: 17.7332246	total: 215ms	remaining: 274ms
44:	learn: 17.6206421	total: 219ms	remaining: 268ms
45:	learn: 17.4982800	total: 223ms	remaining: 262ms
46:	learn: 17.3970150	total: 227ms	remaining: 256ms
47:	learn: 17.3058203	total: 231ms	remaining: 250ms
48:	learn: 17.1789256	total: 235ms	remaining: 245ms
49:	learn: 17.0916229	total: 239ms	remaining: 239ms
50:	learn: 16.9859820	total: 243ms	remaining: 233ms
51:	learn: 16.8995582	total: 247ms	remaining: 228ms
52:	learn: 16.8137014	total: 251ms	remaining: 223ms
53:	learn: 16.7021451	total: 255ms	remaining: 218ms
54:	learn: 16.5895582	total: 260ms	remaining: 212ms
55:	learn: 16.5015639	total: 264ms	remaining: 208ms
56:	learn: 16.4356637	total: 269ms	remaining: 203ms
57:	learn: 16.3514525	total: 273ms	remaining: 198ms
58:	learn: 16.2401369	total: 278ms	remaining: 193ms
59:	learn: 16.1293223	total: 282ms	remaining: 188ms
60:	learn: 16.0271167	total: 287ms	remaining: 183ms
61:	learn: 15.9126257	total: 291ms	remaining: 179ms
62:	learn: 15.8391096	total: 296ms	remaining: 174ms
63:	learn: 15.7441773	total: 301ms	remaining: 169ms
64:	learn: 15.6885195	total: 309ms	remaining: 166ms
65:	learn: 15.6052039	total: 316ms	remaining: 163ms
66:	learn: 15.5074202	total: 326ms	remaining: 161ms
67:	learn: 15.4054338	total: 334ms	remaining: 157ms
68:	learn: 15.2885714	total: 339ms	remaining: 152ms
69:	learn: 15.2157472	total: 345ms	remaining: 148ms
70:	learn: 15.1031554	total: 349ms	remaining: 143ms
71:	learn: 15.0237470	total: 354ms	remaining: 138ms
72:	learn: 14.9756825	total: 359ms	remaining: 133ms
73:	learn: 14.8840596	total: 364ms	remaining: 128ms
74:	learn: 14.8077061	total: 370ms	remaining: 123ms
75:	learn: 14.7444437	total: 376ms	remaining: 119ms
76:	learn: 14.6751720	total: 381ms	remaining: 114ms
77:	learn: 14.5830333	total: 386ms	remaining: 109ms
78:	learn: 14.5241206	total: 391ms	remaining: 104ms
79:	learn: 14.4892731	total: 396ms	remaining: 99ms
80:	learn: 14.4256605	total: 401ms	remaining: 94.2ms
81:	learn: 14.3666860	total: 406ms	remaining: 89.1ms
82:	learn: 14.2938372	total: 410ms	remaining: 84ms
83:	learn: 14.2161532	total: 414ms	remaining: 78.9ms
84:	learn: 14.1582910	total: 418ms	remaining: 73.8ms
85:	learn: 14.1029153	total: 422ms	remaining: 68.8ms
86:	learn: 14.0475835	total: 426ms	remaining: 63.7ms
87:	learn: 13.9892661	total: 430ms	remaining: 58.7ms
88:	learn: 13.9481628	total: 434ms	remaining: 53.7ms
89:	learn: 13.8483991	total: 438ms	remaining: 48.7ms
90:	learn: 13.7775614	total: 442ms	remaining: 43.8ms
91:	learn: 13.7304585	total: 446ms	remaining: 38.8ms
92:	learn: 13.6783381	total: 450ms	remaining: 33.9ms
93:	learn: 13.6356964	total: 455ms	remaining: 29ms
94:	learn: 13.5924371	total: 459ms	remaining: 24.2ms
95:	learn: 13.5400746	total: 463ms	remaining: 19.3ms
96:	learn: 13.4897333	total: 468ms	remaining: 14.5ms
97:	learn: 13.4470321	total: 473ms	remaining: 9.65ms
98:	learn: 13.3856082	total: 477ms	remaining: 4.82ms
99:	learn: 13.3082371	total: 482ms	remaining: 0us
0:	learn: 43.0395283	total: 5.88ms	remaining: 582ms
1:	learn: 42.1130223	total: 11.1ms	remaining: 544ms
2:	learn: 41.1753409	total: 15.9ms	remaining: 515ms
3:	learn: 40.3637444	total: 21.5ms	remaining: 515ms
4:	learn: 39.6508088	total: 26.4ms	remaining: 502ms
5:	learn: 38.7217934	total: 31.2ms	remaining: 490ms
6:	learn: 37.8538055	total: 36.4ms	remaining: 484ms
7:	learn: 36.9793574	total: 41.8ms	remaining: 480ms
8:	learn: 36.3076984	total: 47ms	remaining: 475ms
9:	learn: 35.6673160	total: 52ms	remaining: 468ms
10:	learn: 34.8889800	total: 58ms	remaining: 470ms
11:	learn: 34.1675517	total: 63.4ms	remaining: 465ms
12:	learn: 33.6779564	total: 68.6ms	remaining: 459ms
13:	learn: 33.0710039	total: 73.3ms	remaining: 451ms
14:	learn: 32.4966674	total: 78ms	remaining: 442ms
15:	learn: 31.9492856	total: 83ms	remaining: 436ms
16:	learn: 31.5108129	total: 87.4ms	remaining: 427ms
17:	learn: 30.9804023	total: 92.2ms	remaining: 420ms
18:	learn: 30.4169089	total: 96.7ms	remaining: 412ms
19:	learn: 29.8930375	total: 101ms	remaining: 403ms
20:	learn: 29.3974421	total: 106ms	remaining: 398ms
21:	learn: 28.8792307	total: 110ms	remaining: 391ms
22:	learn: 28.3894474	total: 115ms	remaining: 383ms
23:	learn: 27.9921276	total: 119ms	remaining: 376ms
24:	learn: 27.6158887	total: 123ms	remaining: 369ms
25:	learn: 27.2866950	total: 128ms	remaining: 363ms
26:	learn: 26.8770708	total: 132ms	remaining: 358ms
27:	learn: 26.6233005	total: 137ms	remaining: 353ms
28:	learn: 26.2921934	total: 142ms	remaining: 347ms
29:	learn: 25.9156920	total: 146ms	remaining: 342ms
30:	learn: 25.5311106	total: 148ms	remaining: 330ms
31:	learn: 25.2178997	total: 153ms	remaining: 325ms
32:	learn: 24.8572196	total: 158ms	remaining: 320ms
33:	learn: 24.5849710	total: 162ms	remaining: 315ms
34:	learn: 24.2209190	total: 179ms	remaining: 332ms
35:	learn: 23.8708250	total: 187ms	remaining: 333ms
36:	learn: 23.5325279	total: 194ms	remaining: 331ms
37:	learn: 23.2116148	total: 200ms	remaining: 326ms
38:	learn: 22.9696787	total: 205ms	remaining: 320ms
39:	learn: 22.7936783	total: 210ms	remaining: 315ms
40:	learn: 22.6228847	total: 215ms	remaining: 310ms
41:	learn: 22.3691527	total: 221ms	remaining: 305ms
42:	learn: 22.1002173	total: 226ms	remaining: 299ms
43:	learn: 21.9157268	total: 231ms	remaining: 294ms
44:	learn: 21.7229102	total: 236ms	remaining: 289ms
45:	learn: 21.4642005	total: 241ms	remaining: 283ms
46:	learn: 21.3029442	total: 246ms	remaining: 277ms
47:	learn: 21.1469792	total: 251ms	remaining: 272ms
48:	learn: 20.9458235	total: 257ms	remaining: 267ms
49:	learn: 20.7335242	total: 262ms	remaining: 262ms
50:	learn: 20.5440269	total: 267ms	remaining: 256ms
51:	learn: 20.3661449	total: 271ms	remaining: 250ms
52:	learn: 20.2158134	total: 275ms	remaining: 244ms
53:	learn: 19.9934873	total: 278ms	remaining: 237ms
54:	learn: 19.7879739	total: 282ms	remaining: 231ms
55:	learn: 19.6630460	total: 286ms	remaining: 225ms
56:	learn: 19.5152729	total: 290ms	remaining: 219ms
57:	learn: 19.3581128	total: 294ms	remaining: 213ms
58:	learn: 19.2209303	total: 298ms	remaining: 207ms
59:	learn: 19.0965248	total: 303ms	remaining: 202ms
60:	learn: 19.0035954	total: 307ms	remaining: 196ms
61:	learn: 18.8554149	total: 311ms	remaining: 190ms
62:	learn: 18.7095427	total: 315ms	remaining: 185ms
63:	learn: 18.5751494	total: 319ms	remaining: 179ms
64:	learn: 18.4678251	total: 323ms	remaining: 174ms
65:	learn: 18.3500325	total: 327ms	remaining: 168ms
66:	learn: 18.2088983	total: 332ms	remaining: 163ms
67:	learn: 18.0737705	total: 336ms	remaining: 158ms
68:	learn: 17.9325058	total: 341ms	remaining: 153ms
69:	learn: 17.8003911	total: 345ms	remaining: 148ms
70:	learn: 17.7385366	total: 350ms	remaining: 143ms
71:	learn: 17.6106998	total: 354ms	remaining: 138ms
72:	learn: 17.4816270	total: 359ms	remaining: 133ms
73:	learn: 17.4025554	total: 366ms	remaining: 129ms
74:	learn: 17.2902108	total: 374ms	remaining: 125ms
75:	learn: 17.2158048	total: 380ms	remaining: 120ms
76:	learn: 17.1261053	total: 387ms	remaining: 116ms
77:	learn: 17.0308917	total: 395ms	remaining: 111ms
78:	learn: 16.9546705	total: 401ms	remaining: 107ms
79:	learn: 16.8319165	total: 406ms	remaining: 102ms
80:	learn: 16.7687017	total: 412ms	remaining: 96.6ms
81:	learn: 16.6972326	total: 417ms	remaining: 91.5ms
82:	learn: 16.6124580	total: 423ms	remaining: 86.6ms
83:	learn: 16.4999052	total: 428ms	remaining: 81.5ms
84:	learn: 16.4302484	total: 433ms	remaining: 76.5ms
85:	learn: 16.3201363	total: 439ms	remaining: 71.4ms
86:	learn: 16.2534314	total: 444ms	remaining: 66.3ms
87:	learn: 16.1720485	total: 449ms	remaining: 61.2ms
88:	learn: 16.0625751	total: 454ms	remaining: 56.1ms
89:	learn: 15.9135088	total: 459ms	remaining: 50.9ms
90:	learn: 15.8658863	total: 464ms	remaining: 45.9ms
91:	learn: 15.8066805	total: 469ms	remaining: 40.8ms
92:	learn: 15.7412103	total: 474ms	remaining: 35.7ms
93:	learn: 15.6542776	total: 478ms	remaining: 30.5ms
94:	learn: 15.5760334	total: 482ms	remaining: 25.4ms
95:	learn: 15.5434131	total: 487ms	remaining: 20.3ms
96:	learn: 15.4709561	total: 491ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 495ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 499ms	remaining: 5.04ms
99:	learn: 15.3106595	total: 503ms	remaining: 0us
0:	learn: 46.7142257	total: 5.02ms	remaining: 497ms
1:	learn: 45.7634153	total: 9.76ms	remaining: 478ms
2:	learn: 45.0054253	total: 17.6ms	remaining: 568ms
3:	learn: 44.2120432	total: 24.9ms	remaining: 598ms
4:	learn: 43.3960472	total: 33.7ms	remaining: 640ms
5:	learn: 42.8588120	total: 40.8ms	remaining: 639ms
6:	learn: 41.9533701	total: 46.2ms	remaining: 613ms
7:	learn: 41.2745030	total: 51.6ms	remaining: 593ms
8:	learn: 40.6797495	total: 56.7ms	remaining: 573ms
9:	learn: 39.9899571	total: 61.7ms	remaining: 555ms
10:	learn: 39.4682100	total: 66.8ms	remaining: 540ms
11:	learn: 39.0305595	total: 71.9ms	remaining: 527ms
12:	learn: 38.4200417	total: 76.8ms	remaining: 514ms
13:	learn: 37.8425194	total: 81.9ms	remaining: 503ms
14:	learn: 37.4203127	total: 87.2ms	remaining: 494ms
15:	learn: 36.9917688	total: 92.1ms	remaining: 483ms
16:	learn: 36.5544138	total: 96.6ms	remaining: 472ms
17:	learn: 36.0727019	total: 101ms	remaining: 461ms
18:	learn: 35.4835715	total: 106ms	remaining: 451ms
19:	learn: 34.9865654	total: 111ms	remaining: 444ms
20:	learn: 34.6063373	total: 117ms	remaining: 439ms
21:	learn: 34.0997289	total: 121ms	remaining: 430ms
22:	learn: 33.7313171	total: 126ms	remaining: 421ms
23:	learn: 33.3582000	total: 130ms	remaining: 411ms
24:	learn: 32.9432456	total: 134ms	remaining: 403ms
25:	learn: 32.5220888	total: 138ms	remaining: 393ms
26:	learn: 32.2172292	total: 142ms	remaining: 385ms
27:	learn: 31.8972904	total: 147ms	remaining: 377ms
28:	learn: 31.6405350	total: 151ms	remaining: 369ms
29:	learn: 31.4167702	total: 155ms	remaining: 361ms
30:	learn: 30.8541961	total: 157ms	remaining: 348ms
31:	learn: 30.5572111	total: 161ms	remaining: 342ms
32:	learn: 30.1700399	total: 165ms	remaining: 335ms
33:	learn: 29.8537271	total: 169ms	remaining: 328ms
34:	learn: 29.6192540	total: 174ms	remaining: 322ms
35:	learn: 29.3276362	total: 178ms	remaining: 316ms
36:	learn: 28.9985179	total: 182ms	remaining: 310ms
37:	learn: 28.7046880	total: 186ms	remaining: 303ms
38:	learn: 28.4412677	total: 190ms	remaining: 297ms
39:	learn: 28.1277292	total: 195ms	remaining: 292ms
40:	learn: 27.9000750	total: 199ms	remaining: 286ms
41:	learn: 27.5433162	total: 202ms	remaining: 280ms
42:	learn: 27.2493285	total: 207ms	remaining: 274ms
43:	learn: 26.9576632	total: 209ms	remaining: 266ms
44:	learn: 26.6177110	total: 213ms	remaining: 260ms
45:	learn: 26.2812456	total: 217ms	remaining: 255ms
46:	learn: 26.0803859	total: 221ms	remaining: 249ms
47:	learn: 25.9543581	total: 226ms	remaining: 244ms
48:	learn: 25.7951582	total: 230ms	remaining: 240ms
49:	learn: 25.6548184	total: 234ms	remaining: 234ms
50:	learn: 25.4010843	total: 239ms	remaining: 230ms
51:	learn: 24.9773937	total: 244ms	remaining: 225ms
52:	learn: 24.8026156	total: 248ms	remaining: 220ms
53:	learn: 24.5568053	total: 269ms	remaining: 230ms
54:	learn: 24.2281839	total: 278ms	remaining: 227ms
55:	learn: 23.9202795	total: 283ms	remaining: 222ms
56:	learn: 23.7625591	total: 290ms	remaining: 219ms
57:	learn: 23.5429721	total: 295ms	remaining: 214ms
58:	learn: 23.3175893	total: 300ms	remaining: 209ms
59:	learn: 23.2035130	total: 305ms	remaining: 203ms
60:	learn: 23.0232450	total: 310ms	remaining: 198ms
61:	learn: 22.8384958	total: 315ms	remaining: 193ms
62:	learn: 22.6499902	total: 320ms	remaining: 188ms
63:	learn: 22.4577426	total: 325ms	remaining: 183ms
64:	learn: 22.3333158	total: 330ms	remaining: 178ms
65:	learn: 22.2064131	total: 335ms	remaining: 172ms
66:	learn: 22.1434971	total: 339ms	remaining: 167ms
67:	learn: 21.9596519	total: 343ms	remaining: 162ms
68:	learn: 21.8475576	total: 348ms	remaining: 156ms
69:	learn: 21.6954745	total: 353ms	remaining: 151ms
70:	learn: 21.5635976	total: 357ms	remaining: 146ms
71:	learn: 21.4588506	total: 362ms	remaining: 141ms
72:	learn: 21.3527268	total: 368ms	remaining: 136ms
73:	learn: 21.2661288	total: 374ms	remaining: 131ms
74:	learn: 21.1817333	total: 379ms	remaining: 126ms
75:	learn: 21.0527553	total: 383ms	remaining: 121ms
76:	learn: 20.9229021	total: 387ms	remaining: 116ms
77:	learn: 20.7563946	total: 391ms	remaining: 110ms
78:	learn: 20.6569831	total: 395ms	remaining: 105ms
79:	learn: 20.4982663	total: 400ms	remaining: 100ms
80:	learn: 20.3185460	total: 404ms	remaining: 94.8ms
81:	learn: 20.2096241	total: 408ms	remaining: 89.6ms
82:	learn: 20.1274891	total: 413ms	remaining: 84.5ms
83:	learn: 20.0740139	total: 417ms	remaining: 79.4ms
84:	learn: 19.9630699	total: 422ms	remaining: 74.4ms
85:	learn: 19.8753899	total: 426ms	remaining: 69.4ms
86:	learn: 19.6563612	total: 431ms	remaining: 64.4ms
87:	learn: 19.4680232	total: 435ms	remaining: 59.4ms
88:	learn: 19.3503431	total: 440ms	remaining: 54.4ms
89:	learn: 19.2221379	total: 445ms	remaining: 49.4ms
90:	learn: 19.0732542	total: 450ms	remaining: 44.5ms
91:	learn: 18.9825190	total: 454ms	remaining: 39.5ms
92:	learn: 18.8839009	total: 461ms	remaining: 34.7ms
93:	learn: 18.8012219	total: 469ms	remaining: 29.9ms
94:	learn: 18.7172713	total: 476ms	remaining: 25ms
95:	learn: 18.6201170	total: 485ms	remaining: 20.2ms
96:	learn: 18.5318611	total: 492ms	remaining: 15.2ms
97:	learn: 18.3833356	total: 498ms	remaining: 10.2ms
98:	learn: 18.3289700	total: 503ms	remaining: 5.08ms
99:	learn: 18.2227333	total: 509ms	remaining: 0us
0:	learn: 46.3764524	total: 4.65ms	remaining: 460ms
1:	learn: 45.5561269	total: 8.68ms	remaining: 425ms
2:	learn: 44.8811245	total: 12.7ms	remaining: 411ms
3:	learn: 44.0788617	total: 16.9ms	remaining: 405ms
4:	learn: 43.3619790	total: 21.1ms	remaining: 401ms
5:	learn: 42.6912112	total: 24.9ms	remaining: 389ms
6:	learn: 42.2292118	total: 28.7ms	remaining: 381ms
7:	learn: 41.7725191	total: 32.6ms	remaining: 375ms
8:	learn: 41.1676614	total: 36.9ms	remaining: 373ms
9:	learn: 40.5771076	total: 40.8ms	remaining: 367ms
10:	learn: 39.8343757	total: 44.8ms	remaining: 363ms
11:	learn: 39.3761142	total: 49ms	remaining: 359ms
12:	learn: 38.5254692	total: 53.2ms	remaining: 356ms
13:	learn: 37.9629555	total: 57ms	remaining: 350ms
14:	learn: 37.4418438	total: 60.8ms	remaining: 345ms
15:	learn: 37.0507283	total: 65ms	remaining: 341ms
16:	learn: 36.6264217	total: 69.5ms	remaining: 339ms
17:	learn: 36.1114940	total: 74ms	remaining: 337ms
18:	learn: 35.7193862	total: 78.7ms	remaining: 335ms
19:	learn: 35.3301177	total: 83.1ms	remaining: 333ms
20:	learn: 35.0598280	total: 87.5ms	remaining: 329ms
21:	learn: 34.5469736	total: 92ms	remaining: 326ms
22:	learn: 34.2064215	total: 96.3ms	remaining: 322ms
23:	learn: 33.7280710	total: 104ms	remaining: 328ms
24:	learn: 33.3282940	total: 115ms	remaining: 346ms
25:	learn: 32.8478961	total: 123ms	remaining: 351ms
26:	learn: 32.5722164	total: 130ms	remaining: 353ms
27:	learn: 32.2457019	total: 136ms	remaining: 349ms
28:	learn: 31.9230495	total: 141ms	remaining: 344ms
29:	learn: 31.4311611	total: 146ms	remaining: 340ms
30:	learn: 30.9179052	total: 151ms	remaining: 336ms
31:	learn: 30.6201141	total: 156ms	remaining: 331ms
32:	learn: 30.3421106	total: 161ms	remaining: 327ms
33:	learn: 29.9885373	total: 166ms	remaining: 322ms
34:	learn: 29.7462780	total: 171ms	remaining: 318ms
35:	learn: 29.3607153	total: 177ms	remaining: 314ms
36:	learn: 29.1793078	total: 182ms	remaining: 310ms
37:	learn: 28.9276538	total: 187ms	remaining: 305ms
38:	learn: 28.6903934	total: 192ms	remaining: 300ms
39:	learn: 28.2095033	total: 197ms	remaining: 296ms
40:	learn: 27.7990608	total: 202ms	remaining: 291ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 211ms	remaining: 280ms
43:	learn: 26.9741707	total: 216ms	remaining: 275ms
44:	learn: 26.6606899	total: 220ms	remaining: 269ms
45:	learn: 26.4015833	total: 224ms	remaining: 262ms
46:	learn: 26.1828993	total: 228ms	remaining: 257ms
47:	learn: 26.0233709	total: 231ms	remaining: 250ms
48:	learn: 25.9300399	total: 234ms	remaining: 244ms
49:	learn: 25.5861489	total: 238ms	remaining: 238ms
50:	learn: 25.4322012	total: 242ms	remaining: 233ms
51:	learn: 25.1595644	total: 247ms	remaining: 228ms
52:	learn: 24.9955303	total: 251ms	remaining: 222ms
53:	learn: 24.7273966	total: 255ms	remaining: 217ms
54:	learn: 24.5747978	total: 258ms	remaining: 211ms
55:	learn: 24.3807977	total: 263ms	remaining: 206ms
56:	learn: 24.1689569	total: 267ms	remaining: 202ms
57:	learn: 23.9898221	total: 272ms	remaining: 197ms
58:	learn: 23.7566414	total: 276ms	remaining: 192ms
59:	learn: 23.6641165	total: 280ms	remaining: 187ms
60:	learn: 23.5658066	total: 285ms	remaining: 182ms
61:	learn: 23.4338851	total: 289ms	remaining: 177ms
62:	learn: 23.2408837	total: 293ms	remaining: 172ms
63:	learn: 23.0642038	total: 298ms	remaining: 167ms
64:	learn: 22.9032045	total: 307ms	remaining: 165ms
65:	learn: 22.7736138	total: 317ms	remaining: 163ms
66:	learn: 22.6836443	total: 325ms	remaining: 160ms
67:	learn: 22.5983654	total: 333ms	remaining: 157ms
68:	learn: 22.4419813	total: 338ms	remaining: 152ms
69:	learn: 22.2863339	total: 344ms	remaining: 147ms
70:	learn: 22.1792943	total: 349ms	remaining: 143ms
71:	learn: 22.1130574	total: 354ms	remaining: 138ms
72:	learn: 21.9858161	total: 359ms	remaining: 133ms
73:	learn: 21.8577784	total: 365ms	remaining: 128ms
74:	learn: 21.7845222	total: 370ms	remaining: 123ms
75:	learn: 21.6831390	total: 375ms	remaining: 118ms
76:	learn: 21.6292521	total: 380ms	remaining: 113ms
77:	learn: 21.5789330	total: 385ms	remaining: 109ms
78:	learn: 21.5420942	total: 390ms	remaining: 104ms
79:	learn: 21.4280939	total: 395ms	remaining: 98.7ms
80:	learn: 21.3641165	total: 401ms	remaining: 93.9ms
81:	learn: 21.2734814	total: 405ms	remaining: 88.9ms
82:	learn: 21.2220323	total: 409ms	remaining: 83.8ms
83:	learn: 21.0625792	total: 413ms	remaining: 78.7ms
84:	learn: 20.9488320	total: 417ms	remaining: 73.6ms
85:	learn: 20.8504255	total: 421ms	remaining: 68.5ms
86:	learn: 20.7848510	total: 425ms	remaining: 63.5ms
87:	learn: 20.7247442	total: 429ms	remaining: 58.5ms
88:	learn: 20.5698590	total: 433ms	remaining: 53.6ms
89:	learn: 20.4067620	total: 438ms	remaining: 48.7ms
90:	learn: 20.3062482	total: 442ms	remaining: 43.7ms
91:	learn: 20.2029696	total: 447ms	remaining: 38.8ms
92:	learn: 20.1384849	total: 451ms	remaining: 33.9ms
93:	learn: 20.0260709	total: 455ms	remaining: 29ms
94:	learn: 19.9122100	total: 458ms	remaining: 24.1ms
95:	learn: 19.8648487	total: 462ms	remaining: 19.3ms
96:	learn: 19.8207072	total: 467ms	remaining: 14.4ms
97:	learn: 19.7261189	total: 471ms	remaining: 9.62ms
98:	learn: 19.7042438	total: 476ms	remaining: 4.8ms
99:	learn: 19.6546645	total: 480ms	remaining: 0us
0:	learn: 47.0239288	total: 6ms	remaining: 594ms
1:	learn: 46.2253829	total: 11.4ms	remaining: 559ms
2:	learn: 45.5580301	total: 16.5ms	remaining: 534ms
3:	learn: 44.7273237	total: 21.7ms	remaining: 522ms
4:	learn: 43.8867421	total: 26.8ms	remaining: 509ms
5:	learn: 43.3615911	total: 31.7ms	remaining: 496ms
6:	learn: 42.8548390	total: 36.8ms	remaining: 490ms
7:	learn: 42.1606758	total: 42.1ms	remaining: 485ms
8:	learn: 41.6625870	total: 47.1ms	remaining: 476ms
9:	learn: 40.9497092	total: 51.6ms	remaining: 464ms
10:	learn: 40.1886318	total: 56.8ms	remaining: 460ms
11:	learn: 39.7456423	total: 62.2ms	remaining: 456ms
12:	learn: 39.1171373	total: 66.5ms	remaining: 445ms
13:	learn: 38.5451069	total: 70.4ms	remaining: 432ms
14:	learn: 38.0155834	total: 74.5ms	remaining: 422ms
15:	learn: 37.5631354	total: 78.3ms	remaining: 411ms
16:	learn: 37.1030023	total: 82.3ms	remaining: 402ms
17:	learn: 36.4563029	total: 86.6ms	remaining: 394ms
18:	learn: 36.0160976	total: 90.6ms	remaining: 386ms
19:	learn: 35.5079827	total: 94.7ms	remaining: 379ms
20:	learn: 35.2111885	total: 98.9ms	remaining: 372ms
21:	learn: 34.9397465	total: 103ms	remaining: 367ms
22:	learn: 34.5270048	total: 108ms	remaining: 360ms
23:	learn: 34.0169260	total: 112ms	remaining: 353ms
24:	learn: 33.7454892	total: 116ms	remaining: 347ms
25:	learn: 33.2648157	total: 119ms	remaining: 340ms
26:	learn: 32.8899427	total: 123ms	remaining: 334ms
27:	learn: 32.6185050	total: 128ms	remaining: 328ms
28:	learn: 32.3528531	total: 132ms	remaining: 324ms
29:	learn: 32.0859923	total: 137ms	remaining: 319ms
30:	learn: 31.6511144	total: 141ms	remaining: 314ms
31:	learn: 31.2571765	total: 146ms	remaining: 310ms
32:	learn: 30.9770049	total: 150ms	remaining: 305ms
33:	learn: 30.6084872	total: 155ms	remaining: 300ms
34:	learn: 30.3448632	total: 159ms	remaining: 295ms
35:	learn: 30.0360942	total: 163ms	remaining: 290ms
36:	learn: 29.6648968	total: 169ms	remaining: 288ms
37:	learn: 29.3165114	total: 176ms	remaining: 288ms
38:	learn: 29.0829198	total: 184ms	remaining: 288ms
39:	learn: 28.7752064	total: 192ms	remaining: 288ms
40:	learn: 28.3622191	total: 200ms	remaining: 288ms
41:	learn: 28.1346631	total: 206ms	remaining: 284ms
42:	learn: 27.9585719	total: 211ms	remaining: 280ms
43:	learn: 27.6565566	total: 216ms	remaining: 276ms
44:	learn: 27.3616172	total: 222ms	remaining: 271ms
45:	learn: 27.0658637	total: 227ms	remaining: 266ms
46:	learn: 26.8660382	total: 232ms	remaining: 261ms
47:	learn: 26.6536078	total: 237ms	remaining: 256ms
48:	learn: 26.3524440	total: 242ms	remaining: 252ms
49:	learn: 26.1595277	total: 246ms	remaining: 246ms
50:	learn: 25.9273523	total: 251ms	remaining: 242ms
51:	learn: 25.7195580	total: 256ms	remaining: 236ms
52:	learn: 25.5730225	total: 261ms	remaining: 231ms
53:	learn: 25.3455276	total: 265ms	remaining: 226ms
54:	learn: 25.2289675	total: 271ms	remaining: 221ms
55:	learn: 25.0133024	total: 276ms	remaining: 217ms
56:	learn: 24.8406714	total: 281ms	remaining: 212ms
57:	learn: 24.6367857	total: 286ms	remaining: 207ms
58:	learn: 24.5338177	total: 290ms	remaining: 201ms
59:	learn: 24.3799964	total: 294ms	remaining: 196ms
60:	learn: 24.1447492	total: 298ms	remaining: 190ms
61:	learn: 23.9880495	total: 302ms	remaining: 185ms
62:	learn: 23.7140630	total: 306ms	remaining: 180ms
63:	learn: 23.5003791	total: 310ms	remaining: 174ms
64:	learn: 23.3207645	total: 314ms	remaining: 169ms
65:	learn: 23.1958356	total: 319ms	remaining: 164ms
66:	learn: 23.0471302	total: 323ms	remaining: 159ms
67:	learn: 22.8977183	total: 327ms	remaining: 154ms
68:	learn: 22.7187400	total: 332ms	remaining: 149ms
69:	learn: 22.6523405	total: 336ms	remaining: 144ms
70:	learn: 22.4767453	total: 341ms	remaining: 139ms
71:	learn: 22.3243677	total: 345ms	remaining: 134ms
72:	learn: 22.2133096	total: 349ms	remaining: 129ms
73:	learn: 22.1151713	total: 354ms	remaining: 124ms
74:	learn: 22.0296666	total: 359ms	remaining: 120ms
75:	learn: 21.9195980	total: 364ms	remaining: 115ms
76:	learn: 21.8401730	total: 372ms	remaining: 111ms
77:	learn: 21.8079797	total: 380ms	remaining: 107ms
78:	learn: 21.7274109	total: 390ms	remaining: 104ms
79:	learn: 21.6663032	total: 396ms	remaining: 99.1ms
80:	learn: 21.5633117	total: 403ms	remaining: 94.5ms
81:	learn: 21.4542467	total: 408ms	remaining: 89.6ms
82:	learn: 21.3177957	total: 413ms	remaining: 84.6ms
83:	learn: 21.1289167	total: 418ms	remaining: 79.7ms
84:	learn: 21.0297368	total: 424ms	remaining: 74.8ms
85:	learn: 20.9089564	total: 429ms	remaining: 69.9ms
86:	learn: 20.7653988	total: 434ms	remaining: 64.9ms
87:	learn: 20.6521894	total: 439ms	remaining: 59.9ms
88:	learn: 20.5193021	total: 444ms	remaining: 54.9ms
89:	learn: 20.4361620	total: 450ms	remaining: 50ms
90:	learn: 20.3546710	total: 454ms	remaining: 44.9ms
91:	learn: 20.2513296	total: 459ms	remaining: 39.9ms
92:	learn: 20.1605550	total: 464ms	remaining: 35ms
93:	learn: 20.0515942	total: 470ms	remaining: 30ms
94:	learn: 19.9800764	total: 474ms	remaining: 25ms
95:	learn: 19.8996532	total: 478ms	remaining: 19.9ms
96:	learn: 19.8450910	total: 483ms	remaining: 14.9ms
97:	learn: 19.7887346	total: 487ms	remaining: 9.93ms
98:	learn: 19.7230872	total: 491ms	remaining: 4.96ms
99:	learn: 19.6328825	total: 495ms	remaining: 0us
0:	learn: 27.5585353	total: 4.78ms	remaining: 473ms
1:	learn: 27.1656995	total: 9.21ms	remaining: 451ms
2:	learn: 26.8590175	total: 13.5ms	remaining: 436ms
3:	learn: 26.5818406	total: 18ms	remaining: 433ms
4:	learn: 26.1148663	total: 24.8ms	remaining: 471ms
5:	learn: 25.7690484	total: 32ms	remaining: 501ms
6:	learn: 25.3489206	total: 39.3ms	remaining: 523ms
7:	learn: 24.9542406	total: 46.6ms	remaining: 536ms
8:	learn: 24.6777517	total: 54.6ms	remaining: 553ms
9:	learn: 24.3242344	total: 59.8ms	remaining: 538ms
10:	learn: 24.0383073	total: 64.5ms	remaining: 522ms
11:	learn: 23.7383420	total: 69.6ms	remaining: 510ms
12:	learn: 23.3461670	total: 74.3ms	remaining: 498ms
13:	learn: 23.0928636	total: 79.5ms	remaining: 488ms
14:	learn: 22.8770414	total: 84.6ms	remaining: 479ms
15:	learn: 22.6323214	total: 90.1ms	remaining: 473ms
16:	learn: 22.3597072	total: 95.5ms	remaining: 466ms
17:	learn: 22.1079813	total: 101ms	remaining: 459ms
18:	learn: 21.8421199	total: 106ms	remaining: 451ms
19:	learn: 21.6576508	total: 111ms	remaining: 443ms
20:	learn: 21.4301268	total: 115ms	remaining: 434ms
21:	learn: 21.2287388	total: 121ms	remaining: 429ms
22:	learn: 21.0553872	total: 126ms	remaining: 423ms
23:	learn: 20.8977091	total: 131ms	remaining: 415ms
24:	learn: 20.6619051	total: 135ms	remaining: 404ms
25:	learn: 20.5040955	total: 139ms	remaining: 395ms
26:	learn: 20.3181195	total: 143ms	remaining: 386ms
27:	learn: 20.0869436	total: 147ms	remaining: 379ms
28:	learn: 19.9375985	total: 151ms	remaining: 370ms
29:	learn: 19.8247516	total: 155ms	remaining: 362ms
30:	learn: 19.6261697	total: 159ms	remaining: 354ms
31:	learn: 19.4547236	total: 163ms	remaining: 346ms
32:	learn: 19.3157092	total: 167ms	remaining: 339ms
33:	learn: 19.1561419	total: 171ms	remaining: 332ms
34:	learn: 19.0453620	total: 175ms	remaining: 325ms
35:	learn: 18.8738574	total: 179ms	remaining: 319ms
36:	learn: 18.7072907	total: 183ms	remaining: 312ms
37:	learn: 18.5877943	total: 187ms	remaining: 305ms
38:	learn: 18.4436380	total: 191ms	remaining: 299ms
39:	learn: 18.3463356	total: 195ms	remaining: 293ms
40:	learn: 18.2008059	total: 199ms	remaining: 287ms
41:	learn: 18.0582079	total: 204ms	remaining: 282ms
42:	learn: 17.8891982	total: 209ms	remaining: 277ms
43:	learn: 17.7332246	total: 213ms	remaining: 270ms
44:	learn: 17.6206421	total: 217ms	remaining: 265ms
45:	learn: 17.4982800	total: 221ms	remaining: 259ms
46:	learn: 17.3970150	total: 225ms	remaining: 254ms
47:	learn: 17.3058203	total: 230ms	remaining: 249ms
48:	learn: 17.1789256	total: 234ms	remaining: 244ms
49:	learn: 17.0916229	total: 239ms	remaining: 239ms
50:	learn: 16.9859820	total: 244ms	remaining: 235ms
51:	learn: 16.8995582	total: 249ms	remaining: 230ms
52:	learn: 16.8137014	total: 254ms	remaining: 225ms
53:	learn: 16.7021451	total: 261ms	remaining: 222ms
54:	learn: 16.5895582	total: 269ms	remaining: 220ms
55:	learn: 16.5015639	total: 280ms	remaining: 220ms
56:	learn: 16.4356637	total: 286ms	remaining: 216ms
57:	learn: 16.3514525	total: 294ms	remaining: 213ms
58:	learn: 16.2401369	total: 299ms	remaining: 208ms
59:	learn: 16.1293223	total: 304ms	remaining: 203ms
60:	learn: 16.0271167	total: 309ms	remaining: 198ms
61:	learn: 15.9126257	total: 315ms	remaining: 193ms
62:	learn: 15.8391096	total: 320ms	remaining: 188ms
63:	learn: 15.7441773	total: 325ms	remaining: 183ms
64:	learn: 15.6885195	total: 330ms	remaining: 178ms
65:	learn: 15.6052039	total: 335ms	remaining: 173ms
66:	learn: 15.5074202	total: 340ms	remaining: 168ms
67:	learn: 15.4054338	total: 345ms	remaining: 162ms
68:	learn: 15.2885714	total: 350ms	remaining: 157ms
69:	learn: 15.2157472	total: 355ms	remaining: 152ms
70:	learn: 15.1031554	total: 360ms	remaining: 147ms
71:	learn: 15.0237470	total: 365ms	remaining: 142ms
72:	learn: 14.9756825	total: 369ms	remaining: 137ms
73:	learn: 14.8840596	total: 374ms	remaining: 131ms
74:	learn: 14.8077061	total: 378ms	remaining: 126ms
75:	learn: 14.7444437	total: 382ms	remaining: 121ms
76:	learn: 14.6751720	total: 386ms	remaining: 115ms
77:	learn: 14.5830333	total: 390ms	remaining: 110ms
78:	learn: 14.5241206	total: 394ms	remaining: 105ms
79:	learn: 14.4892731	total: 398ms	remaining: 99.5ms
80:	learn: 14.4256605	total: 402ms	remaining: 94.3ms
81:	learn: 14.3666860	total: 407ms	remaining: 89.2ms
82:	learn: 14.2938372	total: 411ms	remaining: 84.1ms
83:	learn: 14.2161532	total: 415ms	remaining: 79.1ms
84:	learn: 14.1582910	total: 419ms	remaining: 74ms
85:	learn: 14.1029153	total: 424ms	remaining: 69ms
86:	learn: 14.0475835	total: 428ms	remaining: 64ms
87:	learn: 13.9892661	total: 433ms	remaining: 59ms
88:	learn: 13.9481628	total: 438ms	remaining: 54.1ms
89:	learn: 13.8483991	total: 442ms	remaining: 49.1ms
90:	learn: 13.7775614	total: 446ms	remaining: 44.1ms
91:	learn: 13.7304585	total: 450ms	remaining: 39.2ms
92:	learn: 13.6783381	total: 455ms	remaining: 34.2ms
93:	learn: 13.6356964	total: 463ms	remaining: 29.5ms
94:	learn: 13.5924371	total: 470ms	remaining: 24.7ms
95:	learn: 13.5400746	total: 478ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 485ms	remaining: 15ms
97:	learn: 13.4470321	total: 491ms	remaining: 10ms
98:	learn: 13.3856082	total: 497ms	remaining: 5.02ms
99:	learn: 13.3082371	total: 502ms	remaining: 0us
0:	learn: 43.0395283	total: 4.16ms	remaining: 412ms
1:	learn: 42.1130223	total: 8ms	remaining: 392ms
2:	learn: 41.1753409	total: 12.2ms	remaining: 393ms
3:	learn: 40.3637444	total: 16.1ms	remaining: 387ms
4:	learn: 39.6508088	total: 20.1ms	remaining: 382ms
5:	learn: 38.7217934	total: 24.3ms	remaining: 381ms
6:	learn: 37.8538055	total: 28ms	remaining: 373ms
7:	learn: 36.9793574	total: 32.3ms	remaining: 372ms
8:	learn: 36.3076984	total: 36.5ms	remaining: 369ms
9:	learn: 35.6673160	total: 40.3ms	remaining: 363ms
10:	learn: 34.8889800	total: 44.3ms	remaining: 359ms
11:	learn: 34.1675517	total: 48.2ms	remaining: 354ms
12:	learn: 33.6779564	total: 52.4ms	remaining: 351ms
13:	learn: 33.0710039	total: 56.9ms	remaining: 350ms
14:	learn: 32.4966674	total: 61.2ms	remaining: 347ms
15:	learn: 31.9492856	total: 65.3ms	remaining: 343ms
16:	learn: 31.5108129	total: 69.5ms	remaining: 339ms
17:	learn: 30.9804023	total: 73.8ms	remaining: 336ms
18:	learn: 30.4169089	total: 78.4ms	remaining: 334ms
19:	learn: 29.8930375	total: 82.8ms	remaining: 331ms
20:	learn: 29.3974421	total: 87.6ms	remaining: 329ms
21:	learn: 28.8792307	total: 92.2ms	remaining: 327ms
22:	learn: 28.3894474	total: 96.6ms	remaining: 324ms
23:	learn: 27.9921276	total: 101ms	remaining: 320ms
24:	learn: 27.6158887	total: 108ms	remaining: 324ms
25:	learn: 27.2866950	total: 116ms	remaining: 329ms
26:	learn: 26.8770708	total: 125ms	remaining: 337ms
27:	learn: 26.6233005	total: 135ms	remaining: 346ms
28:	learn: 26.2921934	total: 140ms	remaining: 343ms
29:	learn: 25.9156920	total: 146ms	remaining: 340ms
30:	learn: 25.5311106	total: 148ms	remaining: 328ms
31:	learn: 25.2178997	total: 153ms	remaining: 325ms
32:	learn: 24.8572196	total: 158ms	remaining: 321ms
33:	learn: 24.5849710	total: 163ms	remaining: 317ms
34:	learn: 24.2209190	total: 168ms	remaining: 313ms
35:	learn: 23.8708250	total: 174ms	remaining: 309ms
36:	learn: 23.5325279	total: 179ms	remaining: 304ms
37:	learn: 23.2116148	total: 184ms	remaining: 300ms
38:	learn: 22.9696787	total: 189ms	remaining: 295ms
39:	learn: 22.7936783	total: 194ms	remaining: 291ms
40:	learn: 22.6228847	total: 199ms	remaining: 286ms
41:	learn: 22.3691527	total: 204ms	remaining: 282ms
42:	learn: 22.1002173	total: 210ms	remaining: 278ms
43:	learn: 21.9157268	total: 214ms	remaining: 272ms
44:	learn: 21.7229102	total: 218ms	remaining: 266ms
45:	learn: 21.4642005	total: 222ms	remaining: 261ms
46:	learn: 21.3029442	total: 227ms	remaining: 256ms
47:	learn: 21.1469792	total: 231ms	remaining: 251ms
48:	learn: 20.9458235	total: 235ms	remaining: 245ms
49:	learn: 20.7335242	total: 240ms	remaining: 240ms
50:	learn: 20.5440269	total: 245ms	remaining: 235ms
51:	learn: 20.3661449	total: 250ms	remaining: 231ms
52:	learn: 20.2158134	total: 255ms	remaining: 226ms
53:	learn: 19.9934873	total: 260ms	remaining: 221ms
54:	learn: 19.7879739	total: 265ms	remaining: 216ms
55:	learn: 19.6630460	total: 269ms	remaining: 212ms
56:	learn: 19.5152729	total: 274ms	remaining: 207ms
57:	learn: 19.3581128	total: 279ms	remaining: 202ms
58:	learn: 19.2209303	total: 284ms	remaining: 197ms
59:	learn: 19.0965248	total: 289ms	remaining: 193ms
60:	learn: 19.0035954	total: 294ms	remaining: 188ms
61:	learn: 18.8554149	total: 299ms	remaining: 183ms
62:	learn: 18.7095427	total: 303ms	remaining: 178ms
63:	learn: 18.5751494	total: 310ms	remaining: 174ms
64:	learn: 18.4678251	total: 317ms	remaining: 171ms
65:	learn: 18.3500325	total: 324ms	remaining: 167ms
66:	learn: 18.2088983	total: 332ms	remaining: 164ms
67:	learn: 18.0737705	total: 340ms	remaining: 160ms
68:	learn: 17.9325058	total: 345ms	remaining: 155ms
69:	learn: 17.8003911	total: 350ms	remaining: 150ms
70:	learn: 17.7385366	total: 355ms	remaining: 145ms
71:	learn: 17.6106998	total: 361ms	remaining: 140ms
72:	learn: 17.4816270	total: 366ms	remaining: 135ms
73:	learn: 17.4025554	total: 371ms	remaining: 130ms
74:	learn: 17.2902108	total: 376ms	remaining: 125ms
75:	learn: 17.2158048	total: 381ms	remaining: 120ms
76:	learn: 17.1261053	total: 387ms	remaining: 116ms
77:	learn: 17.0308917	total: 392ms	remaining: 111ms
78:	learn: 16.9546705	total: 397ms	remaining: 105ms
79:	learn: 16.8319165	total: 401ms	remaining: 100ms
80:	learn: 16.7687017	total: 406ms	remaining: 95.3ms
81:	learn: 16.6972326	total: 411ms	remaining: 90.3ms
82:	learn: 16.6124580	total: 417ms	remaining: 85.4ms
83:	learn: 16.4999052	total: 422ms	remaining: 80.4ms
84:	learn: 16.4302484	total: 426ms	remaining: 75.2ms
85:	learn: 16.3201363	total: 430ms	remaining: 70ms
86:	learn: 16.2534314	total: 435ms	remaining: 64.9ms
87:	learn: 16.1720485	total: 439ms	remaining: 59.8ms
88:	learn: 16.0625751	total: 443ms	remaining: 54.7ms
89:	learn: 15.9135088	total: 447ms	remaining: 49.6ms
90:	learn: 15.8658863	total: 451ms	remaining: 44.6ms
91:	learn: 15.8066805	total: 455ms	remaining: 39.6ms
92:	learn: 15.7412103	total: 459ms	remaining: 34.6ms
93:	learn: 15.6542776	total: 463ms	remaining: 29.6ms
94:	learn: 15.5760334	total: 467ms	remaining: 24.6ms
95:	learn: 15.5434131	total: 472ms	remaining: 19.7ms
96:	learn: 15.4709561	total: 476ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 481ms	remaining: 9.81ms
98:	learn: 15.3752761	total: 485ms	remaining: 4.9ms
99:	learn: 15.3106595	total: 490ms	remaining: 0us
0:	learn: 46.7142257	total: 5.79ms	remaining: 573ms
1:	learn: 45.7634153	total: 11.1ms	remaining: 543ms
2:	learn: 45.0054253	total: 16.5ms	remaining: 533ms
3:	learn: 44.2120432	total: 21.9ms	remaining: 525ms
4:	learn: 43.3960472	total: 26.9ms	remaining: 511ms
5:	learn: 42.8588120	total: 32.1ms	remaining: 503ms
6:	learn: 41.9533701	total: 37.1ms	remaining: 493ms
7:	learn: 41.2745030	total: 42.2ms	remaining: 485ms
8:	learn: 40.6797495	total: 46.7ms	remaining: 472ms
9:	learn: 39.9899571	total: 52.6ms	remaining: 473ms
10:	learn: 39.4682100	total: 58.3ms	remaining: 471ms
11:	learn: 39.0305595	total: 62.5ms	remaining: 458ms
12:	learn: 38.4200417	total: 67.1ms	remaining: 449ms
13:	learn: 37.8425194	total: 71.5ms	remaining: 439ms
14:	learn: 37.4203127	total: 75.5ms	remaining: 428ms
15:	learn: 36.9917688	total: 79.5ms	remaining: 417ms
16:	learn: 36.5544138	total: 83.9ms	remaining: 410ms
17:	learn: 36.0727019	total: 87.8ms	remaining: 400ms
18:	learn: 35.4835715	total: 91.7ms	remaining: 391ms
19:	learn: 34.9865654	total: 95.6ms	remaining: 382ms
20:	learn: 34.6063373	total: 99.8ms	remaining: 375ms
21:	learn: 34.0997289	total: 104ms	remaining: 369ms
22:	learn: 33.7313171	total: 109ms	remaining: 363ms
23:	learn: 33.3582000	total: 113ms	remaining: 357ms
24:	learn: 32.9432456	total: 117ms	remaining: 351ms
25:	learn: 32.5220888	total: 121ms	remaining: 344ms
26:	learn: 32.2172292	total: 125ms	remaining: 338ms
27:	learn: 31.8972904	total: 129ms	remaining: 333ms
28:	learn: 31.6405350	total: 134ms	remaining: 329ms
29:	learn: 31.4167702	total: 139ms	remaining: 324ms
30:	learn: 30.8541961	total: 141ms	remaining: 313ms
31:	learn: 30.5572111	total: 145ms	remaining: 308ms
32:	learn: 30.1700399	total: 150ms	remaining: 304ms
33:	learn: 29.8537271	total: 154ms	remaining: 300ms
34:	learn: 29.6192540	total: 159ms	remaining: 295ms
35:	learn: 29.3276362	total: 167ms	remaining: 296ms
36:	learn: 28.9985179	total: 175ms	remaining: 297ms
37:	learn: 28.7046880	total: 185ms	remaining: 302ms
38:	learn: 28.4412677	total: 194ms	remaining: 303ms
39:	learn: 28.1277292	total: 200ms	remaining: 300ms
40:	learn: 27.9000750	total: 205ms	remaining: 296ms
41:	learn: 27.5433162	total: 211ms	remaining: 292ms
42:	learn: 27.2493285	total: 216ms	remaining: 287ms
43:	learn: 26.9576632	total: 219ms	remaining: 278ms
44:	learn: 26.6177110	total: 224ms	remaining: 274ms
45:	learn: 26.2812456	total: 229ms	remaining: 269ms
46:	learn: 26.0803859	total: 234ms	remaining: 264ms
47:	learn: 25.9543581	total: 239ms	remaining: 259ms
48:	learn: 25.7951582	total: 244ms	remaining: 254ms
49:	learn: 25.6548184	total: 249ms	remaining: 249ms
50:	learn: 25.4010843	total: 254ms	remaining: 244ms
51:	learn: 24.9773937	total: 260ms	remaining: 240ms
52:	learn: 24.8026156	total: 265ms	remaining: 235ms
53:	learn: 24.5568053	total: 269ms	remaining: 229ms
54:	learn: 24.2281839	total: 273ms	remaining: 224ms
55:	learn: 23.9202795	total: 277ms	remaining: 218ms
56:	learn: 23.7625591	total: 282ms	remaining: 213ms
57:	learn: 23.5429721	total: 286ms	remaining: 207ms
58:	learn: 23.3175893	total: 290ms	remaining: 201ms
59:	learn: 23.2035130	total: 294ms	remaining: 196ms
60:	learn: 23.0232450	total: 298ms	remaining: 190ms
61:	learn: 22.8384958	total: 302ms	remaining: 185ms
62:	learn: 22.6499902	total: 306ms	remaining: 180ms
63:	learn: 22.4577426	total: 311ms	remaining: 175ms
64:	learn: 22.3333158	total: 315ms	remaining: 170ms
65:	learn: 22.2064131	total: 320ms	remaining: 165ms
66:	learn: 22.1434971	total: 325ms	remaining: 160ms
67:	learn: 21.9596519	total: 330ms	remaining: 155ms
68:	learn: 21.8475576	total: 334ms	remaining: 150ms
69:	learn: 21.6954745	total: 339ms	remaining: 145ms
70:	learn: 21.5635976	total: 344ms	remaining: 140ms
71:	learn: 21.4588506	total: 348ms	remaining: 135ms
72:	learn: 21.3527268	total: 353ms	remaining: 130ms
73:	learn: 21.2661288	total: 360ms	remaining: 127ms
74:	learn: 21.1817333	total: 367ms	remaining: 122ms
75:	learn: 21.0527553	total: 376ms	remaining: 119ms
76:	learn: 20.9229021	total: 383ms	remaining: 114ms
77:	learn: 20.7563946	total: 390ms	remaining: 110ms
78:	learn: 20.6569831	total: 396ms	remaining: 105ms
79:	learn: 20.4982663	total: 401ms	remaining: 100ms
80:	learn: 20.3185460	total: 406ms	remaining: 95.2ms
81:	learn: 20.2096241	total: 411ms	remaining: 90.2ms
82:	learn: 20.1274891	total: 417ms	remaining: 85.3ms
83:	learn: 20.0740139	total: 422ms	remaining: 80.3ms
84:	learn: 19.9630699	total: 427ms	remaining: 75.3ms
85:	learn: 19.8753899	total: 432ms	remaining: 70.4ms
86:	learn: 19.6563612	total: 437ms	remaining: 65.4ms
87:	learn: 19.4680232	total: 442ms	remaining: 60.3ms
88:	learn: 19.3503431	total: 446ms	remaining: 55.2ms
89:	learn: 19.2221379	total: 452ms	remaining: 50.2ms
90:	learn: 19.0732542	total: 457ms	remaining: 45.2ms
91:	learn: 18.9825190	total: 462ms	remaining: 40.2ms
92:	learn: 18.8839009	total: 466ms	remaining: 35.1ms
93:	learn: 18.8012219	total: 470ms	remaining: 30ms
94:	learn: 18.7172713	total: 474ms	remaining: 24.9ms
95:	learn: 18.6201170	total: 478ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 482ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 486ms	remaining: 9.91ms
98:	learn: 18.3289700	total: 490ms	remaining: 4.95ms
99:	learn: 18.2227333	total: 494ms	remaining: 0us
0:	learn: 46.3764524	total: 4.66ms	remaining: 461ms
1:	learn: 45.5561269	total: 8.87ms	remaining: 435ms
2:	learn: 44.8811245	total: 13.2ms	remaining: 425ms
3:	learn: 44.0788617	total: 17.8ms	remaining: 428ms
4:	learn: 43.3619790	total: 22.5ms	remaining: 427ms
5:	learn: 42.6912112	total: 27.3ms	remaining: 427ms
6:	learn: 42.2292118	total: 36.1ms	remaining: 479ms
7:	learn: 41.7725191	total: 43.6ms	remaining: 501ms
8:	learn: 41.1676614	total: 51.3ms	remaining: 519ms
9:	learn: 40.5771076	total: 68.7ms	remaining: 619ms
10:	learn: 39.8343757	total: 73.7ms	remaining: 597ms
11:	learn: 39.3761142	total: 78.7ms	remaining: 577ms
12:	learn: 38.5254692	total: 83.8ms	remaining: 561ms
13:	learn: 37.9629555	total: 89ms	remaining: 547ms
14:	learn: 37.4418438	total: 94.3ms	remaining: 534ms
15:	learn: 37.0507283	total: 99.5ms	remaining: 522ms
16:	learn: 36.6264217	total: 104ms	remaining: 510ms
17:	learn: 36.1114940	total: 109ms	remaining: 498ms
18:	learn: 35.7193862	total: 114ms	remaining: 486ms
19:	learn: 35.3301177	total: 120ms	remaining: 479ms
20:	learn: 35.0598280	total: 125ms	remaining: 471ms
21:	learn: 34.5469736	total: 130ms	remaining: 460ms
22:	learn: 34.2064215	total: 134ms	remaining: 449ms
23:	learn: 33.7280710	total: 139ms	remaining: 440ms
24:	learn: 33.3282940	total: 144ms	remaining: 431ms
25:	learn: 32.8478961	total: 148ms	remaining: 422ms
26:	learn: 32.5722164	total: 153ms	remaining: 413ms
27:	learn: 32.2457019	total: 158ms	remaining: 405ms
28:	learn: 31.9230495	total: 162ms	remaining: 397ms
29:	learn: 31.4311611	total: 167ms	remaining: 389ms
30:	learn: 30.9179052	total: 171ms	remaining: 382ms
31:	learn: 30.6201141	total: 176ms	remaining: 374ms
32:	learn: 30.3421106	total: 180ms	remaining: 365ms
33:	learn: 29.9885373	total: 184ms	remaining: 358ms
34:	learn: 29.7462780	total: 188ms	remaining: 350ms
35:	learn: 29.3607153	total: 193ms	remaining: 343ms
36:	learn: 29.1793078	total: 197ms	remaining: 335ms
37:	learn: 28.9276538	total: 200ms	remaining: 327ms
38:	learn: 28.6903934	total: 205ms	remaining: 320ms
39:	learn: 28.2095033	total: 210ms	remaining: 315ms
40:	learn: 27.7990608	total: 214ms	remaining: 308ms
41:	learn: 27.5406632	total: 218ms	remaining: 301ms
42:	learn: 27.2575376	total: 223ms	remaining: 295ms
43:	learn: 26.9741707	total: 227ms	remaining: 289ms
44:	learn: 26.6606899	total: 232ms	remaining: 284ms
45:	learn: 26.4015833	total: 236ms	remaining: 277ms
46:	learn: 26.1828993	total: 240ms	remaining: 271ms
47:	learn: 26.0233709	total: 243ms	remaining: 263ms
48:	learn: 25.9300399	total: 248ms	remaining: 258ms
49:	learn: 25.5861489	total: 252ms	remaining: 252ms
50:	learn: 25.4322012	total: 257ms	remaining: 247ms
51:	learn: 25.1595644	total: 265ms	remaining: 244ms
52:	learn: 24.9955303	total: 272ms	remaining: 241ms
53:	learn: 24.7273966	total: 282ms	remaining: 240ms
54:	learn: 24.5747978	total: 288ms	remaining: 235ms
55:	learn: 24.3807977	total: 301ms	remaining: 236ms
56:	learn: 24.1689569	total: 306ms	remaining: 231ms
57:	learn: 23.9898221	total: 311ms	remaining: 225ms
58:	learn: 23.7566414	total: 316ms	remaining: 220ms
59:	learn: 23.6641165	total: 321ms	remaining: 214ms
60:	learn: 23.5658066	total: 326ms	remaining: 208ms
61:	learn: 23.4338851	total: 331ms	remaining: 203ms
62:	learn: 23.2408837	total: 335ms	remaining: 197ms
63:	learn: 23.0642038	total: 340ms	remaining: 191ms
64:	learn: 22.9032045	total: 344ms	remaining: 185ms
65:	learn: 22.7736138	total: 349ms	remaining: 180ms
66:	learn: 22.6836443	total: 353ms	remaining: 174ms
67:	learn: 22.5983654	total: 358ms	remaining: 169ms
68:	learn: 22.4419813	total: 364ms	remaining: 164ms
69:	learn: 22.2863339	total: 369ms	remaining: 158ms
70:	learn: 22.1792943	total: 372ms	remaining: 152ms
71:	learn: 22.1130574	total: 377ms	remaining: 147ms
72:	learn: 21.9858161	total: 381ms	remaining: 141ms
73:	learn: 21.8577784	total: 386ms	remaining: 136ms
74:	learn: 21.7845222	total: 390ms	remaining: 130ms
75:	learn: 21.6831390	total: 395ms	remaining: 125ms
76:	learn: 21.6292521	total: 399ms	remaining: 119ms
77:	learn: 21.5789330	total: 404ms	remaining: 114ms
78:	learn: 21.5420942	total: 408ms	remaining: 108ms
79:	learn: 21.4280939	total: 412ms	remaining: 103ms
80:	learn: 21.3641165	total: 416ms	remaining: 97.7ms
81:	learn: 21.2734814	total: 421ms	remaining: 92.4ms
82:	learn: 21.2220323	total: 425ms	remaining: 87.1ms
83:	learn: 21.0625792	total: 430ms	remaining: 81.8ms
84:	learn: 20.9488320	total: 434ms	remaining: 76.7ms
85:	learn: 20.8504255	total: 439ms	remaining: 71.5ms
86:	learn: 20.7848510	total: 444ms	remaining: 66.3ms
87:	learn: 20.7247442	total: 449ms	remaining: 61.2ms
88:	learn: 20.5698590	total: 454ms	remaining: 56.1ms
89:	learn: 20.4067620	total: 458ms	remaining: 50.9ms
90:	learn: 20.3062482	total: 463ms	remaining: 45.8ms
91:	learn: 20.2029696	total: 468ms	remaining: 40.7ms
92:	learn: 20.1384849	total: 475ms	remaining: 35.7ms
93:	learn: 20.0260709	total: 483ms	remaining: 30.8ms
94:	learn: 19.9122100	total: 491ms	remaining: 25.9ms
95:	learn: 19.8648487	total: 498ms	remaining: 20.8ms
96:	learn: 19.8207072	total: 505ms	remaining: 15.6ms
97:	learn: 19.7261189	total: 510ms	remaining: 10.4ms
98:	learn: 19.7042438	total: 516ms	remaining: 5.21ms
99:	learn: 19.6546645	total: 520ms	remaining: 0us
0:	learn: 47.0239288	total: 4.38ms	remaining: 434ms
1:	learn: 46.2253829	total: 8.64ms	remaining: 424ms
2:	learn: 45.5580301	total: 12.4ms	remaining: 400ms
3:	learn: 44.7273237	total: 16.4ms	remaining: 393ms
4:	learn: 43.8867421	total: 20.2ms	remaining: 383ms
5:	learn: 43.3615911	total: 24.1ms	remaining: 378ms
6:	learn: 42.8548390	total: 28.8ms	remaining: 382ms
7:	learn: 42.1606758	total: 33.8ms	remaining: 389ms
8:	learn: 41.6625870	total: 38.4ms	remaining: 388ms
9:	learn: 40.9497092	total: 43.4ms	remaining: 391ms
10:	learn: 40.1886318	total: 48ms	remaining: 388ms
11:	learn: 39.7456423	total: 52.5ms	remaining: 385ms
12:	learn: 39.1171373	total: 57ms	remaining: 381ms
13:	learn: 38.5451069	total: 61.5ms	remaining: 378ms
14:	learn: 38.0155834	total: 66.2ms	remaining: 375ms
15:	learn: 37.5631354	total: 70.7ms	remaining: 371ms
16:	learn: 37.1030023	total: 75.6ms	remaining: 369ms
17:	learn: 36.4563029	total: 80.3ms	remaining: 366ms
18:	learn: 36.0160976	total: 85.1ms	remaining: 363ms
19:	learn: 35.5079827	total: 89.9ms	remaining: 359ms
20:	learn: 35.2111885	total: 95.2ms	remaining: 358ms
21:	learn: 34.9397465	total: 100ms	remaining: 355ms
22:	learn: 34.5270048	total: 105ms	remaining: 352ms
23:	learn: 34.0169260	total: 114ms	remaining: 362ms
24:	learn: 33.7454892	total: 124ms	remaining: 371ms
25:	learn: 33.2648157	total: 135ms	remaining: 384ms
26:	learn: 32.8899427	total: 143ms	remaining: 388ms
27:	learn: 32.6185050	total: 149ms	remaining: 383ms
28:	learn: 32.3528531	total: 155ms	remaining: 379ms
29:	learn: 32.0859923	total: 160ms	remaining: 373ms
30:	learn: 31.6511144	total: 166ms	remaining: 369ms
31:	learn: 31.2571765	total: 171ms	remaining: 363ms
32:	learn: 30.9770049	total: 176ms	remaining: 357ms
33:	learn: 30.6084872	total: 181ms	remaining: 351ms
34:	learn: 30.3448632	total: 186ms	remaining: 345ms
35:	learn: 30.0360942	total: 191ms	remaining: 340ms
36:	learn: 29.6648968	total: 196ms	remaining: 333ms
37:	learn: 29.3165114	total: 201ms	remaining: 327ms
38:	learn: 29.0829198	total: 206ms	remaining: 323ms
39:	learn: 28.7752064	total: 211ms	remaining: 317ms
40:	learn: 28.3622191	total: 216ms	remaining: 310ms
41:	learn: 28.1346631	total: 220ms	remaining: 303ms
42:	learn: 27.9585719	total: 224ms	remaining: 296ms
43:	learn: 27.6565566	total: 228ms	remaining: 290ms
44:	learn: 27.3616172	total: 232ms	remaining: 283ms
45:	learn: 27.0658637	total: 236ms	remaining: 277ms
46:	learn: 26.8660382	total: 240ms	remaining: 271ms
47:	learn: 26.6536078	total: 244ms	remaining: 265ms
48:	learn: 26.3524440	total: 248ms	remaining: 258ms
49:	learn: 26.1595277	total: 252ms	remaining: 252ms
50:	learn: 25.9273523	total: 256ms	remaining: 246ms
51:	learn: 25.7195580	total: 260ms	remaining: 240ms
52:	learn: 25.5730225	total: 264ms	remaining: 234ms
53:	learn: 25.3455276	total: 268ms	remaining: 229ms
54:	learn: 25.2289675	total: 273ms	remaining: 223ms
55:	learn: 25.0133024	total: 277ms	remaining: 218ms
56:	learn: 24.8406714	total: 282ms	remaining: 213ms
57:	learn: 24.6367857	total: 286ms	remaining: 207ms
58:	learn: 24.5338177	total: 291ms	remaining: 202ms
59:	learn: 24.3799964	total: 295ms	remaining: 197ms
60:	learn: 24.1447492	total: 300ms	remaining: 192ms
61:	learn: 23.9880495	total: 304ms	remaining: 187ms
62:	learn: 23.7140630	total: 312ms	remaining: 183ms
63:	learn: 23.5003791	total: 319ms	remaining: 179ms
64:	learn: 23.3207645	total: 327ms	remaining: 176ms
65:	learn: 23.1958356	total: 333ms	remaining: 172ms
66:	learn: 23.0471302	total: 341ms	remaining: 168ms
67:	learn: 22.8977183	total: 346ms	remaining: 163ms
68:	learn: 22.7187400	total: 352ms	remaining: 158ms
69:	learn: 22.6523405	total: 357ms	remaining: 153ms
70:	learn: 22.4767453	total: 362ms	remaining: 148ms
71:	learn: 22.3243677	total: 367ms	remaining: 143ms
72:	learn: 22.2133096	total: 372ms	remaining: 138ms
73:	learn: 22.1151713	total: 377ms	remaining: 133ms
74:	learn: 22.0296666	total: 382ms	remaining: 127ms
75:	learn: 21.9195980	total: 387ms	remaining: 122ms
76:	learn: 21.8401730	total: 392ms	remaining: 117ms
77:	learn: 21.8079797	total: 397ms	remaining: 112ms
78:	learn: 21.7274109	total: 402ms	remaining: 107ms
79:	learn: 21.6663032	total: 407ms	remaining: 102ms
80:	learn: 21.5633117	total: 411ms	remaining: 96.5ms
81:	learn: 21.4542467	total: 415ms	remaining: 91.2ms
82:	learn: 21.3177957	total: 419ms	remaining: 85.9ms
83:	learn: 21.1289167	total: 423ms	remaining: 80.6ms
84:	learn: 21.0297368	total: 428ms	remaining: 75.4ms
85:	learn: 20.9089564	total: 432ms	remaining: 70.3ms
86:	learn: 20.7653988	total: 436ms	remaining: 65.2ms
87:	learn: 20.6521894	total: 440ms	remaining: 60ms
88:	learn: 20.5193021	total: 445ms	remaining: 55ms
89:	learn: 20.4361620	total: 449ms	remaining: 49.9ms
90:	learn: 20.3546710	total: 453ms	remaining: 44.8ms
91:	learn: 20.2513296	total: 458ms	remaining: 39.8ms
92:	learn: 20.1605550	total: 463ms	remaining: 34.8ms
93:	learn: 20.0515942	total: 467ms	remaining: 29.8ms
94:	learn: 19.9800764	total: 472ms	remaining: 24.8ms
95:	learn: 19.8996532	total: 476ms	remaining: 19.8ms
96:	learn: 19.8450910	total: 481ms	remaining: 14.9ms
97:	learn: 19.7887346	total: 485ms	remaining: 9.9ms
98:	learn: 19.7230872	total: 490ms	remaining: 4.95ms
99:	learn: 19.6328825	total: 494ms	remaining: 0us
0:	learn: 27.5585353	total: 5.31ms	remaining: 526ms
1:	learn: 27.1656995	total: 10.2ms	remaining: 498ms
2:	learn: 26.8590175	total: 15ms	remaining: 486ms
3:	learn: 26.5818406	total: 19.5ms	remaining: 468ms
4:	learn: 26.1148663	total: 25ms	remaining: 475ms
5:	learn: 25.7690484	total: 30.3ms	remaining: 474ms
6:	learn: 25.3489206	total: 34.5ms	remaining: 458ms
7:	learn: 24.9542406	total: 38.6ms	remaining: 443ms
8:	learn: 24.6777517	total: 42.6ms	remaining: 431ms
9:	learn: 24.3242344	total: 46.7ms	remaining: 421ms
10:	learn: 24.0383073	total: 50.9ms	remaining: 412ms
11:	learn: 23.7383420	total: 55ms	remaining: 403ms
12:	learn: 23.3461670	total: 58.9ms	remaining: 394ms
13:	learn: 23.0928636	total: 62.9ms	remaining: 386ms
14:	learn: 22.8770414	total: 67ms	remaining: 380ms
15:	learn: 22.6323214	total: 70.9ms	remaining: 372ms
16:	learn: 22.3597072	total: 75ms	remaining: 366ms
17:	learn: 22.1079813	total: 78.9ms	remaining: 360ms
18:	learn: 21.8421199	total: 83.2ms	remaining: 355ms
19:	learn: 21.6576508	total: 87.4ms	remaining: 350ms
20:	learn: 21.4301268	total: 91.3ms	remaining: 343ms
21:	learn: 21.2287388	total: 95.4ms	remaining: 338ms
22:	learn: 21.0553872	total: 100ms	remaining: 335ms
23:	learn: 20.8977091	total: 105ms	remaining: 331ms
24:	learn: 20.6619051	total: 109ms	remaining: 327ms
25:	learn: 20.5040955	total: 114ms	remaining: 324ms
26:	learn: 20.3181195	total: 119ms	remaining: 320ms
27:	learn: 20.0869436	total: 123ms	remaining: 316ms
28:	learn: 19.9375985	total: 127ms	remaining: 312ms
29:	learn: 19.8247516	total: 132ms	remaining: 307ms
30:	learn: 19.6261697	total: 139ms	remaining: 310ms
31:	learn: 19.4547236	total: 147ms	remaining: 313ms
32:	learn: 19.3157092	total: 156ms	remaining: 317ms
33:	learn: 19.1561419	total: 162ms	remaining: 315ms
34:	learn: 19.0453620	total: 169ms	remaining: 313ms
35:	learn: 18.8738574	total: 174ms	remaining: 309ms
36:	learn: 18.7072907	total: 179ms	remaining: 305ms
37:	learn: 18.5877943	total: 184ms	remaining: 300ms
38:	learn: 18.4436380	total: 189ms	remaining: 296ms
39:	learn: 18.3463356	total: 195ms	remaining: 292ms
40:	learn: 18.2008059	total: 200ms	remaining: 287ms
41:	learn: 18.0582079	total: 205ms	remaining: 283ms
42:	learn: 17.8891982	total: 210ms	remaining: 279ms
43:	learn: 17.7332246	total: 215ms	remaining: 274ms
44:	learn: 17.6206421	total: 220ms	remaining: 269ms
45:	learn: 17.4982800	total: 225ms	remaining: 264ms
46:	learn: 17.3970150	total: 230ms	remaining: 260ms
47:	learn: 17.3058203	total: 235ms	remaining: 255ms
48:	learn: 17.1789256	total: 240ms	remaining: 250ms
49:	learn: 17.0916229	total: 244ms	remaining: 244ms
50:	learn: 16.9859820	total: 248ms	remaining: 238ms
51:	learn: 16.8995582	total: 252ms	remaining: 232ms
52:	learn: 16.8137014	total: 256ms	remaining: 227ms
53:	learn: 16.7021451	total: 260ms	remaining: 221ms
54:	learn: 16.5895582	total: 264ms	remaining: 216ms
55:	learn: 16.5015639	total: 268ms	remaining: 211ms
56:	learn: 16.4356637	total: 272ms	remaining: 205ms
57:	learn: 16.3514525	total: 276ms	remaining: 200ms
58:	learn: 16.2401369	total: 281ms	remaining: 195ms
59:	learn: 16.1293223	total: 285ms	remaining: 190ms
60:	learn: 16.0271167	total: 290ms	remaining: 185ms
61:	learn: 15.9126257	total: 294ms	remaining: 180ms
62:	learn: 15.8391096	total: 299ms	remaining: 176ms
63:	learn: 15.7441773	total: 304ms	remaining: 171ms
64:	learn: 15.6885195	total: 308ms	remaining: 166ms
65:	learn: 15.6052039	total: 313ms	remaining: 161ms
66:	learn: 15.5074202	total: 317ms	remaining: 156ms
67:	learn: 15.4054338	total: 322ms	remaining: 152ms
68:	learn: 15.2885714	total: 327ms	remaining: 147ms
69:	learn: 15.2157472	total: 332ms	remaining: 142ms
70:	learn: 15.1031554	total: 340ms	remaining: 139ms
71:	learn: 15.0237470	total: 348ms	remaining: 135ms
72:	learn: 14.9756825	total: 355ms	remaining: 131ms
73:	learn: 14.8840596	total: 361ms	remaining: 127ms
74:	learn: 14.8077061	total: 367ms	remaining: 122ms
75:	learn: 14.7444437	total: 373ms	remaining: 118ms
76:	learn: 14.6751720	total: 378ms	remaining: 113ms
77:	learn: 14.5830333	total: 383ms	remaining: 108ms
78:	learn: 14.5241206	total: 388ms	remaining: 103ms
79:	learn: 14.4892731	total: 394ms	remaining: 98.4ms
80:	learn: 14.4256605	total: 399ms	remaining: 93.6ms
81:	learn: 14.3666860	total: 404ms	remaining: 88.7ms
82:	learn: 14.2938372	total: 409ms	remaining: 83.8ms
83:	learn: 14.2161532	total: 415ms	remaining: 79ms
84:	learn: 14.1582910	total: 420ms	remaining: 74.1ms
85:	learn: 14.1029153	total: 424ms	remaining: 69.1ms
86:	learn: 14.0475835	total: 430ms	remaining: 64.2ms
87:	learn: 13.9892661	total: 435ms	remaining: 59.3ms
88:	learn: 13.9481628	total: 439ms	remaining: 54.3ms
89:	learn: 13.8483991	total: 443ms	remaining: 49.3ms
90:	learn: 13.7775614	total: 448ms	remaining: 44.3ms
91:	learn: 13.7304585	total: 452ms	remaining: 39.3ms
92:	learn: 13.6783381	total: 456ms	remaining: 34.3ms
93:	learn: 13.6356964	total: 460ms	remaining: 29.4ms
94:	learn: 13.5924371	total: 464ms	remaining: 24.4ms
95:	learn: 13.5400746	total: 468ms	remaining: 19.5ms
96:	learn: 13.4897333	total: 472ms	remaining: 14.6ms
97:	learn: 13.4470321	total: 475ms	remaining: 9.7ms
98:	learn: 13.3856082	total: 479ms	remaining: 4.84ms
99:	learn: 13.3082371	total: 484ms	remaining: 0us
0:	learn: 43.0395283	total: 9.03ms	remaining: 893ms
1:	learn: 42.1130223	total: 17.6ms	remaining: 865ms
2:	learn: 41.1753409	total: 25.3ms	remaining: 818ms
3:	learn: 40.3637444	total: 33.1ms	remaining: 794ms
4:	learn: 39.6508088	total: 38.2ms	remaining: 726ms
5:	learn: 38.7217934	total: 43.8ms	remaining: 686ms
6:	learn: 37.8538055	total: 49.5ms	remaining: 657ms
7:	learn: 36.9793574	total: 55.3ms	remaining: 636ms
8:	learn: 36.3076984	total: 60.7ms	remaining: 614ms
9:	learn: 35.6673160	total: 65.7ms	remaining: 592ms
10:	learn: 34.8889800	total: 70.6ms	remaining: 571ms
11:	learn: 34.1675517	total: 76ms	remaining: 558ms
12:	learn: 33.6779564	total: 81.4ms	remaining: 545ms
13:	learn: 33.0710039	total: 85.9ms	remaining: 528ms
14:	learn: 32.4966674	total: 91.4ms	remaining: 518ms
15:	learn: 31.9492856	total: 96.7ms	remaining: 508ms
16:	learn: 31.5108129	total: 101ms	remaining: 494ms
17:	learn: 30.9804023	total: 106ms	remaining: 481ms
18:	learn: 30.4169089	total: 110ms	remaining: 467ms
19:	learn: 29.8930375	total: 114ms	remaining: 455ms
20:	learn: 29.3974421	total: 118ms	remaining: 444ms
21:	learn: 28.8792307	total: 122ms	remaining: 433ms
22:	learn: 28.3894474	total: 126ms	remaining: 422ms
23:	learn: 27.9921276	total: 130ms	remaining: 413ms
24:	learn: 27.6158887	total: 134ms	remaining: 403ms
25:	learn: 27.2866950	total: 139ms	remaining: 394ms
26:	learn: 26.8770708	total: 143ms	remaining: 386ms
27:	learn: 26.6233005	total: 147ms	remaining: 378ms
28:	learn: 26.2921934	total: 151ms	remaining: 370ms
29:	learn: 25.9156920	total: 156ms	remaining: 364ms
30:	learn: 25.5311106	total: 158ms	remaining: 351ms
31:	learn: 25.2178997	total: 162ms	remaining: 344ms
32:	learn: 24.8572196	total: 166ms	remaining: 337ms
33:	learn: 24.5849710	total: 171ms	remaining: 331ms
34:	learn: 24.2209190	total: 175ms	remaining: 326ms
35:	learn: 23.8708250	total: 180ms	remaining: 320ms
36:	learn: 23.5325279	total: 185ms	remaining: 315ms
37:	learn: 23.2116148	total: 189ms	remaining: 309ms
38:	learn: 22.9696787	total: 194ms	remaining: 303ms
39:	learn: 22.7936783	total: 199ms	remaining: 298ms
40:	learn: 22.6228847	total: 203ms	remaining: 292ms
41:	learn: 22.3691527	total: 212ms	remaining: 293ms
42:	learn: 22.1002173	total: 220ms	remaining: 291ms
43:	learn: 21.9157268	total: 228ms	remaining: 290ms
44:	learn: 21.7229102	total: 234ms	remaining: 286ms
45:	learn: 21.4642005	total: 240ms	remaining: 282ms
46:	learn: 21.3029442	total: 245ms	remaining: 276ms
47:	learn: 21.1469792	total: 250ms	remaining: 271ms
48:	learn: 20.9458235	total: 255ms	remaining: 265ms
49:	learn: 20.7335242	total: 260ms	remaining: 260ms
50:	learn: 20.5440269	total: 265ms	remaining: 255ms
51:	learn: 20.3661449	total: 270ms	remaining: 249ms
52:	learn: 20.2158134	total: 275ms	remaining: 244ms
53:	learn: 19.9934873	total: 280ms	remaining: 239ms
54:	learn: 19.7879739	total: 285ms	remaining: 233ms
55:	learn: 19.6630460	total: 290ms	remaining: 228ms
56:	learn: 19.5152729	total: 295ms	remaining: 222ms
57:	learn: 19.3581128	total: 300ms	remaining: 217ms
58:	learn: 19.2209303	total: 305ms	remaining: 212ms
59:	learn: 19.0965248	total: 310ms	remaining: 207ms
60:	learn: 19.0035954	total: 315ms	remaining: 201ms
61:	learn: 18.8554149	total: 319ms	remaining: 196ms
62:	learn: 18.7095427	total: 323ms	remaining: 190ms
63:	learn: 18.5751494	total: 327ms	remaining: 184ms
64:	learn: 18.4678251	total: 331ms	remaining: 178ms
65:	learn: 18.3500325	total: 335ms	remaining: 173ms
66:	learn: 18.2088983	total: 340ms	remaining: 167ms
67:	learn: 18.0737705	total: 344ms	remaining: 162ms
68:	learn: 17.9325058	total: 348ms	remaining: 156ms
69:	learn: 17.8003911	total: 353ms	remaining: 151ms
70:	learn: 17.7385366	total: 358ms	remaining: 146ms
71:	learn: 17.6106998	total: 362ms	remaining: 141ms
72:	learn: 17.4816270	total: 366ms	remaining: 135ms
73:	learn: 17.4025554	total: 371ms	remaining: 130ms
74:	learn: 17.2902108	total: 375ms	remaining: 125ms
75:	learn: 17.2158048	total: 380ms	remaining: 120ms
76:	learn: 17.1261053	total: 385ms	remaining: 115ms
77:	learn: 17.0308917	total: 390ms	remaining: 110ms
78:	learn: 16.9546705	total: 394ms	remaining: 105ms
79:	learn: 16.8319165	total: 399ms	remaining: 99.8ms
80:	learn: 16.7687017	total: 404ms	remaining: 94.7ms
81:	learn: 16.6972326	total: 412ms	remaining: 90.5ms
82:	learn: 16.6124580	total: 423ms	remaining: 86.7ms
83:	learn: 16.4999052	total: 431ms	remaining: 82ms
84:	learn: 16.4302484	total: 438ms	remaining: 77.4ms
85:	learn: 16.3201363	total: 444ms	remaining: 72.3ms
86:	learn: 16.2534314	total: 450ms	remaining: 67.2ms
87:	learn: 16.1720485	total: 455ms	remaining: 62ms
88:	learn: 16.0625751	total: 461ms	remaining: 56.9ms
89:	learn: 15.9135088	total: 466ms	remaining: 51.8ms
90:	learn: 15.8658863	total: 471ms	remaining: 46.6ms
91:	learn: 15.8066805	total: 477ms	remaining: 41.4ms
92:	learn: 15.7412103	total: 482ms	remaining: 36.3ms
93:	learn: 15.6542776	total: 487ms	remaining: 31.1ms
94:	learn: 15.5760334	total: 492ms	remaining: 25.9ms
95:	learn: 15.5434131	total: 497ms	remaining: 20.7ms
96:	learn: 15.4709561	total: 503ms	remaining: 15.5ms
97:	learn: 15.4449618	total: 508ms	remaining: 10.4ms
98:	learn: 15.3752761	total: 513ms	remaining: 5.18ms
99:	learn: 15.3106595	total: 517ms	remaining: 0us
0:	learn: 46.7142257	total: 4.62ms	remaining: 457ms
1:	learn: 45.7634153	total: 8.73ms	remaining: 428ms
2:	learn: 45.0054253	total: 13.3ms	remaining: 429ms
3:	learn: 44.2120432	total: 17.8ms	remaining: 427ms
4:	learn: 43.3960472	total: 22.3ms	remaining: 424ms
5:	learn: 42.8588120	total: 26.7ms	remaining: 418ms
6:	learn: 41.9533701	total: 31.2ms	remaining: 415ms
7:	learn: 41.2745030	total: 35.9ms	remaining: 413ms
8:	learn: 40.6797495	total: 40.3ms	remaining: 408ms
9:	learn: 39.9899571	total: 45.3ms	remaining: 408ms
10:	learn: 39.4682100	total: 53.8ms	remaining: 435ms
11:	learn: 39.0305595	total: 61.6ms	remaining: 452ms
12:	learn: 38.4200417	total: 69ms	remaining: 462ms
13:	learn: 37.8425194	total: 76.8ms	remaining: 472ms
14:	learn: 37.4203127	total: 81.9ms	remaining: 464ms
15:	learn: 36.9917688	total: 87ms	remaining: 457ms
16:	learn: 36.5544138	total: 92.2ms	remaining: 450ms
17:	learn: 36.0727019	total: 97ms	remaining: 442ms
18:	learn: 35.4835715	total: 102ms	remaining: 435ms
19:	learn: 34.9865654	total: 107ms	remaining: 430ms
20:	learn: 34.6063373	total: 113ms	remaining: 425ms
21:	learn: 34.0997289	total: 118ms	remaining: 419ms
22:	learn: 33.7313171	total: 124ms	remaining: 414ms
23:	learn: 33.3582000	total: 129ms	remaining: 410ms
24:	learn: 32.9432456	total: 134ms	remaining: 403ms
25:	learn: 32.5220888	total: 139ms	remaining: 394ms
26:	learn: 32.2172292	total: 144ms	remaining: 390ms
27:	learn: 31.8972904	total: 150ms	remaining: 385ms
28:	learn: 31.6405350	total: 154ms	remaining: 377ms
29:	learn: 31.4167702	total: 158ms	remaining: 368ms
30:	learn: 30.8541961	total: 159ms	remaining: 355ms
31:	learn: 30.5572111	total: 164ms	remaining: 348ms
32:	learn: 30.1700399	total: 168ms	remaining: 341ms
33:	learn: 29.8537271	total: 172ms	remaining: 334ms
34:	learn: 29.6192540	total: 176ms	remaining: 328ms
35:	learn: 29.3276362	total: 181ms	remaining: 322ms
36:	learn: 28.9985179	total: 185ms	remaining: 315ms
37:	learn: 28.7046880	total: 189ms	remaining: 309ms
38:	learn: 28.4412677	total: 193ms	remaining: 302ms
39:	learn: 28.1277292	total: 198ms	remaining: 297ms
40:	learn: 27.9000750	total: 202ms	remaining: 291ms
41:	learn: 27.5433162	total: 206ms	remaining: 284ms
42:	learn: 27.2493285	total: 210ms	remaining: 278ms
43:	learn: 26.9576632	total: 212ms	remaining: 270ms
44:	learn: 26.6177110	total: 216ms	remaining: 264ms
45:	learn: 26.2812456	total: 220ms	remaining: 259ms
46:	learn: 26.0803859	total: 224ms	remaining: 253ms
47:	learn: 25.9543581	total: 228ms	remaining: 248ms
48:	learn: 25.7951582	total: 233ms	remaining: 243ms
49:	learn: 25.6548184	total: 238ms	remaining: 238ms
50:	learn: 25.4010843	total: 242ms	remaining: 233ms
51:	learn: 24.9773937	total: 246ms	remaining: 227ms
52:	learn: 24.8026156	total: 251ms	remaining: 223ms
53:	learn: 24.5568053	total: 256ms	remaining: 218ms
54:	learn: 24.2281839	total: 260ms	remaining: 213ms
55:	learn: 23.9202795	total: 269ms	remaining: 211ms
56:	learn: 23.7625591	total: 276ms	remaining: 208ms
57:	learn: 23.5429721	total: 285ms	remaining: 206ms
58:	learn: 23.3175893	total: 293ms	remaining: 203ms
59:	learn: 23.2035130	total: 298ms	remaining: 199ms
60:	learn: 23.0232450	total: 304ms	remaining: 194ms
61:	learn: 22.8384958	total: 309ms	remaining: 189ms
62:	learn: 22.6499902	total: 314ms	remaining: 184ms
63:	learn: 22.4577426	total: 319ms	remaining: 180ms
64:	learn: 22.3333158	total: 324ms	remaining: 175ms
65:	learn: 22.2064131	total: 329ms	remaining: 170ms
66:	learn: 22.1434971	total: 334ms	remaining: 165ms
67:	learn: 21.9596519	total: 339ms	remaining: 160ms
68:	learn: 21.8475576	total: 349ms	remaining: 157ms
69:	learn: 21.6954745	total: 354ms	remaining: 152ms
70:	learn: 21.5635976	total: 360ms	remaining: 147ms
71:	learn: 21.4588506	total: 365ms	remaining: 142ms
72:	learn: 21.3527268	total: 369ms	remaining: 137ms
73:	learn: 21.2661288	total: 373ms	remaining: 131ms
74:	learn: 21.1817333	total: 377ms	remaining: 126ms
75:	learn: 21.0527553	total: 381ms	remaining: 120ms
76:	learn: 20.9229021	total: 386ms	remaining: 115ms
77:	learn: 20.7563946	total: 390ms	remaining: 110ms
78:	learn: 20.6569831	total: 395ms	remaining: 105ms
79:	learn: 20.4982663	total: 398ms	remaining: 99.6ms
80:	learn: 20.3185460	total: 403ms	remaining: 94.4ms
81:	learn: 20.2096241	total: 407ms	remaining: 89.3ms
82:	learn: 20.1274891	total: 411ms	remaining: 84.2ms
83:	learn: 20.0740139	total: 415ms	remaining: 79.1ms
84:	learn: 19.9630699	total: 419ms	remaining: 74ms
85:	learn: 19.8753899	total: 424ms	remaining: 69ms
86:	learn: 19.6563612	total: 428ms	remaining: 64ms
87:	learn: 19.4680232	total: 433ms	remaining: 59.1ms
88:	learn: 19.3503431	total: 438ms	remaining: 54.1ms
89:	learn: 19.2221379	total: 442ms	remaining: 49.1ms
90:	learn: 19.0732542	total: 447ms	remaining: 44.2ms
91:	learn: 18.9825190	total: 451ms	remaining: 39.3ms
92:	learn: 18.8839009	total: 456ms	remaining: 34.3ms
93:	learn: 18.8012219	total: 461ms	remaining: 29.4ms
94:	learn: 18.7172713	total: 469ms	remaining: 24.7ms
95:	learn: 18.6201170	total: 478ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 487ms	remaining: 15.1ms
97:	learn: 18.3833356	total: 497ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 503ms	remaining: 5.08ms
99:	learn: 18.2227333	total: 509ms	remaining: 0us
0:	learn: 46.3764524	total: 5.69ms	remaining: 563ms
1:	learn: 45.5561269	total: 10.2ms	remaining: 498ms
2:	learn: 44.8811245	total: 14.5ms	remaining: 468ms
3:	learn: 44.0788617	total: 18.6ms	remaining: 446ms
4:	learn: 43.3619790	total: 23.1ms	remaining: 439ms
5:	learn: 42.6912112	total: 27.7ms	remaining: 433ms
6:	learn: 42.2292118	total: 31.9ms	remaining: 423ms
7:	learn: 41.7725191	total: 35.7ms	remaining: 411ms
8:	learn: 41.1676614	total: 40ms	remaining: 404ms
9:	learn: 40.5771076	total: 44.2ms	remaining: 398ms
10:	learn: 39.8343757	total: 48.6ms	remaining: 394ms
11:	learn: 39.3761142	total: 53ms	remaining: 389ms
12:	learn: 38.5254692	total: 57.4ms	remaining: 384ms
13:	learn: 37.9629555	total: 61.4ms	remaining: 377ms
14:	learn: 37.4418438	total: 65.1ms	remaining: 369ms
15:	learn: 37.0507283	total: 69.4ms	remaining: 364ms
16:	learn: 36.6264217	total: 73.5ms	remaining: 359ms
17:	learn: 36.1114940	total: 78.4ms	remaining: 357ms
18:	learn: 35.7193862	total: 82.7ms	remaining: 352ms
19:	learn: 35.3301177	total: 87.2ms	remaining: 349ms
20:	learn: 35.0598280	total: 91.4ms	remaining: 344ms
21:	learn: 34.5469736	total: 96ms	remaining: 340ms
22:	learn: 34.2064215	total: 100ms	remaining: 336ms
23:	learn: 33.7280710	total: 105ms	remaining: 332ms
24:	learn: 33.3282940	total: 113ms	remaining: 339ms
25:	learn: 32.8478961	total: 120ms	remaining: 342ms
26:	learn: 32.5722164	total: 129ms	remaining: 350ms
27:	learn: 32.2457019	total: 136ms	remaining: 349ms
28:	learn: 31.9230495	total: 141ms	remaining: 346ms
29:	learn: 31.4311611	total: 147ms	remaining: 342ms
30:	learn: 30.9179052	total: 152ms	remaining: 338ms
31:	learn: 30.6201141	total: 157ms	remaining: 333ms
32:	learn: 30.3421106	total: 162ms	remaining: 329ms
33:	learn: 29.9885373	total: 168ms	remaining: 325ms
34:	learn: 29.7462780	total: 173ms	remaining: 321ms
35:	learn: 29.3607153	total: 178ms	remaining: 316ms
36:	learn: 29.1793078	total: 191ms	remaining: 325ms
37:	learn: 28.9276538	total: 195ms	remaining: 319ms
38:	learn: 28.6903934	total: 201ms	remaining: 315ms
39:	learn: 28.2095033	total: 206ms	remaining: 309ms
40:	learn: 27.7990608	total: 210ms	remaining: 303ms
41:	learn: 27.5406632	total: 215ms	remaining: 296ms
42:	learn: 27.2575376	total: 219ms	remaining: 290ms
43:	learn: 26.9741707	total: 223ms	remaining: 284ms
44:	learn: 26.6606899	total: 227ms	remaining: 278ms
45:	learn: 26.4015833	total: 232ms	remaining: 272ms
46:	learn: 26.1828993	total: 236ms	remaining: 266ms
47:	learn: 26.0233709	total: 238ms	remaining: 258ms
48:	learn: 25.9300399	total: 243ms	remaining: 252ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 251ms	remaining: 242ms
51:	learn: 25.1595644	total: 256ms	remaining: 236ms
52:	learn: 24.9955303	total: 260ms	remaining: 231ms
53:	learn: 24.7273966	total: 265ms	remaining: 226ms
54:	learn: 24.5747978	total: 269ms	remaining: 220ms
55:	learn: 24.3807977	total: 274ms	remaining: 216ms
56:	learn: 24.1689569	total: 279ms	remaining: 211ms
57:	learn: 23.9898221	total: 285ms	remaining: 206ms
58:	learn: 23.7566414	total: 290ms	remaining: 201ms
59:	learn: 23.6641165	total: 294ms	remaining: 196ms
60:	learn: 23.5658066	total: 299ms	remaining: 191ms
61:	learn: 23.4338851	total: 305ms	remaining: 187ms
62:	learn: 23.2408837	total: 313ms	remaining: 184ms
63:	learn: 23.0642038	total: 321ms	remaining: 180ms
64:	learn: 22.9032045	total: 329ms	remaining: 177ms
65:	learn: 22.7736138	total: 336ms	remaining: 173ms
66:	learn: 22.6836443	total: 342ms	remaining: 168ms
67:	learn: 22.5983654	total: 347ms	remaining: 163ms
68:	learn: 22.4419813	total: 352ms	remaining: 158ms
69:	learn: 22.2863339	total: 357ms	remaining: 153ms
70:	learn: 22.1792943	total: 362ms	remaining: 148ms
71:	learn: 22.1130574	total: 367ms	remaining: 143ms
72:	learn: 21.9858161	total: 372ms	remaining: 138ms
73:	learn: 21.8577784	total: 377ms	remaining: 132ms
74:	learn: 21.7845222	total: 382ms	remaining: 127ms
75:	learn: 21.6831390	total: 386ms	remaining: 122ms
76:	learn: 21.6292521	total: 391ms	remaining: 117ms
77:	learn: 21.5789330	total: 396ms	remaining: 112ms
78:	learn: 21.5420942	total: 401ms	remaining: 106ms
79:	learn: 21.4280939	total: 406ms	remaining: 101ms
80:	learn: 21.3641165	total: 411ms	remaining: 96.4ms
81:	learn: 21.2734814	total: 416ms	remaining: 91.4ms
82:	learn: 21.2220323	total: 421ms	remaining: 86.2ms
83:	learn: 21.0625792	total: 425ms	remaining: 81ms
84:	learn: 20.9488320	total: 429ms	remaining: 75.8ms
85:	learn: 20.8504255	total: 433ms	remaining: 70.6ms
86:	learn: 20.7848510	total: 437ms	remaining: 65.3ms
87:	learn: 20.7247442	total: 442ms	remaining: 60.2ms
88:	learn: 20.5698590	total: 445ms	remaining: 55.1ms
89:	learn: 20.4067620	total: 450ms	remaining: 50ms
90:	learn: 20.3062482	total: 454ms	remaining: 44.9ms
91:	learn: 20.2029696	total: 458ms	remaining: 39.8ms
92:	learn: 20.1384849	total: 462ms	remaining: 34.8ms
93:	learn: 20.0260709	total: 467ms	remaining: 29.8ms
94:	learn: 19.9122100	total: 471ms	remaining: 24.8ms
95:	learn: 19.8648487	total: 476ms	remaining: 19.8ms
96:	learn: 19.8207072	total: 480ms	remaining: 14.9ms
97:	learn: 19.7261189	total: 485ms	remaining: 9.89ms
98:	learn: 19.7042438	total: 489ms	remaining: 4.94ms
99:	learn: 19.6546645	total: 493ms	remaining: 0us
0:	learn: 47.0239288	total: 5.63ms	remaining: 558ms
1:	learn: 46.2253829	total: 11.2ms	remaining: 547ms
2:	learn: 45.5580301	total: 16.3ms	remaining: 528ms
3:	learn: 44.7273237	total: 21.5ms	remaining: 517ms
4:	learn: 43.8867421	total: 26.8ms	remaining: 509ms
5:	learn: 43.3615911	total: 31.7ms	remaining: 496ms
6:	learn: 42.8548390	total: 36.5ms	remaining: 485ms
7:	learn: 42.1606758	total: 41.7ms	remaining: 479ms
8:	learn: 41.6625870	total: 47.3ms	remaining: 479ms
9:	learn: 40.9497092	total: 52.3ms	remaining: 470ms
10:	learn: 40.1886318	total: 56.3ms	remaining: 456ms
11:	learn: 39.7456423	total: 60.2ms	remaining: 442ms
12:	learn: 39.1171373	total: 64ms	remaining: 428ms
13:	learn: 38.5451069	total: 68.3ms	remaining: 419ms
14:	learn: 38.0155834	total: 72.3ms	remaining: 410ms
15:	learn: 37.5631354	total: 76.1ms	remaining: 400ms
16:	learn: 37.1030023	total: 80.2ms	remaining: 391ms
17:	learn: 36.4563029	total: 84ms	remaining: 383ms
18:	learn: 36.0160976	total: 88.3ms	remaining: 376ms
19:	learn: 35.5079827	total: 92.4ms	remaining: 370ms
20:	learn: 35.2111885	total: 96.3ms	remaining: 362ms
21:	learn: 34.9397465	total: 100ms	remaining: 355ms
22:	learn: 34.5270048	total: 104ms	remaining: 349ms
23:	learn: 34.0169260	total: 109ms	remaining: 344ms
24:	learn: 33.7454892	total: 112ms	remaining: 337ms
25:	learn: 33.2648157	total: 116ms	remaining: 331ms
26:	learn: 32.8899427	total: 121ms	remaining: 326ms
27:	learn: 32.6185050	total: 125ms	remaining: 323ms
28:	learn: 32.3528531	total: 130ms	remaining: 319ms
29:	learn: 32.0859923	total: 135ms	remaining: 314ms
30:	learn: 31.6511144	total: 139ms	remaining: 310ms
31:	learn: 31.2571765	total: 144ms	remaining: 306ms
32:	learn: 30.9770049	total: 149ms	remaining: 302ms
33:	learn: 30.6084872	total: 153ms	remaining: 297ms
34:	learn: 30.3448632	total: 161ms	remaining: 299ms
35:	learn: 30.0360942	total: 168ms	remaining: 299ms
36:	learn: 29.6648968	total: 176ms	remaining: 299ms
37:	learn: 29.3165114	total: 182ms	remaining: 296ms
38:	learn: 29.0829198	total: 189ms	remaining: 295ms
39:	learn: 28.7752064	total: 194ms	remaining: 291ms
40:	learn: 28.3622191	total: 199ms	remaining: 287ms
41:	learn: 28.1346631	total: 204ms	remaining: 282ms
42:	learn: 27.9585719	total: 209ms	remaining: 278ms
43:	learn: 27.6565566	total: 215ms	remaining: 273ms
44:	learn: 27.3616172	total: 220ms	remaining: 269ms
45:	learn: 27.0658637	total: 225ms	remaining: 264ms
46:	learn: 26.8660382	total: 230ms	remaining: 259ms
47:	learn: 26.6536078	total: 235ms	remaining: 255ms
48:	learn: 26.3524440	total: 241ms	remaining: 250ms
49:	learn: 26.1595277	total: 246ms	remaining: 246ms
50:	learn: 25.9273523	total: 250ms	remaining: 241ms
51:	learn: 25.7195580	total: 256ms	remaining: 236ms
52:	learn: 25.5730225	total: 261ms	remaining: 232ms
53:	learn: 25.3455276	total: 266ms	remaining: 227ms
54:	learn: 25.2289675	total: 270ms	remaining: 221ms
55:	learn: 25.0133024	total: 274ms	remaining: 215ms
56:	learn: 24.8406714	total: 278ms	remaining: 210ms
57:	learn: 24.6367857	total: 282ms	remaining: 204ms
58:	learn: 24.5338177	total: 286ms	remaining: 199ms
59:	learn: 24.3799964	total: 290ms	remaining: 193ms
60:	learn: 24.1447492	total: 294ms	remaining: 188ms
61:	learn: 23.9880495	total: 298ms	remaining: 183ms
62:	learn: 23.7140630	total: 302ms	remaining: 177ms
63:	learn: 23.5003791	total: 306ms	remaining: 172ms
64:	learn: 23.3207645	total: 311ms	remaining: 167ms
65:	learn: 23.1958356	total: 315ms	remaining: 163ms
66:	learn: 23.0471302	total: 320ms	remaining: 158ms
67:	learn: 22.8977183	total: 325ms	remaining: 153ms
68:	learn: 22.7187400	total: 330ms	remaining: 148ms
69:	learn: 22.6523405	total: 334ms	remaining: 143ms
70:	learn: 22.4767453	total: 338ms	remaining: 138ms
71:	learn: 22.3243677	total: 343ms	remaining: 133ms
72:	learn: 22.2133096	total: 352ms	remaining: 130ms
73:	learn: 22.1151713	total: 359ms	remaining: 126ms
74:	learn: 22.0296666	total: 367ms	remaining: 122ms
75:	learn: 21.9195980	total: 376ms	remaining: 119ms
76:	learn: 21.8401730	total: 381ms	remaining: 114ms
77:	learn: 21.8079797	total: 387ms	remaining: 109ms
78:	learn: 21.7274109	total: 393ms	remaining: 104ms
79:	learn: 21.6663032	total: 398ms	remaining: 99.4ms
80:	learn: 21.5633117	total: 403ms	remaining: 94.4ms
81:	learn: 21.4542467	total: 408ms	remaining: 89.5ms
82:	learn: 21.3177957	total: 413ms	remaining: 84.7ms
83:	learn: 21.1289167	total: 419ms	remaining: 79.7ms
84:	learn: 21.0297368	total: 424ms	remaining: 74.8ms
85:	learn: 20.9089564	total: 428ms	remaining: 69.7ms
86:	learn: 20.7653988	total: 433ms	remaining: 64.7ms
87:	learn: 20.6521894	total: 437ms	remaining: 59.6ms
88:	learn: 20.5193021	total: 442ms	remaining: 54.6ms
89:	learn: 20.4361620	total: 447ms	remaining: 49.7ms
90:	learn: 20.3546710	total: 453ms	remaining: 44.8ms
91:	learn: 20.2513296	total: 457ms	remaining: 39.7ms
92:	learn: 20.1605550	total: 461ms	remaining: 34.7ms
93:	learn: 20.0515942	total: 465ms	remaining: 29.7ms
94:	learn: 19.9800764	total: 469ms	remaining: 24.7ms
95:	learn: 19.8996532	total: 473ms	remaining: 19.7ms
96:	learn: 19.8450910	total: 477ms	remaining: 14.8ms
97:	learn: 19.7887346	total: 482ms	remaining: 9.83ms
98:	learn: 19.7230872	total: 486ms	remaining: 4.9ms
99:	learn: 19.6328825	total: 489ms	remaining: 0us
0:	learn: 27.5585353	total: 4.75ms	remaining: 471ms
1:	learn: 27.1656995	total: 9.28ms	remaining: 455ms
2:	learn: 26.8590175	total: 13.9ms	remaining: 449ms
3:	learn: 26.5818406	total: 18.2ms	remaining: 437ms
4:	learn: 26.1148663	total: 22.8ms	remaining: 433ms
5:	learn: 25.7690484	total: 27.4ms	remaining: 429ms
6:	learn: 25.3489206	total: 32.2ms	remaining: 428ms
7:	learn: 24.9542406	total: 37.4ms	remaining: 431ms
8:	learn: 24.6777517	total: 45.8ms	remaining: 463ms
9:	learn: 24.3242344	total: 53.1ms	remaining: 478ms
10:	learn: 24.0383073	total: 61.4ms	remaining: 497ms
11:	learn: 23.7383420	total: 68.1ms	remaining: 499ms
12:	learn: 23.3461670	total: 74ms	remaining: 495ms
13:	learn: 23.0928636	total: 79.5ms	remaining: 488ms
14:	learn: 22.8770414	total: 84.7ms	remaining: 480ms
15:	learn: 22.6323214	total: 90ms	remaining: 473ms
16:	learn: 22.3597072	total: 95.1ms	remaining: 464ms
17:	learn: 22.1079813	total: 101ms	remaining: 459ms
18:	learn: 21.8421199	total: 106ms	remaining: 452ms
19:	learn: 21.6576508	total: 112ms	remaining: 446ms
20:	learn: 21.4301268	total: 117ms	remaining: 439ms
21:	learn: 21.2287388	total: 122ms	remaining: 431ms
22:	learn: 21.0553872	total: 127ms	remaining: 424ms
23:	learn: 20.8977091	total: 131ms	remaining: 415ms
24:	learn: 20.6619051	total: 136ms	remaining: 409ms
25:	learn: 20.5040955	total: 142ms	remaining: 403ms
26:	learn: 20.3181195	total: 146ms	remaining: 396ms
27:	learn: 20.0869436	total: 151ms	remaining: 388ms
28:	learn: 19.9375985	total: 155ms	remaining: 380ms
29:	learn: 19.8247516	total: 159ms	remaining: 371ms
30:	learn: 19.6261697	total: 163ms	remaining: 364ms
31:	learn: 19.4547236	total: 167ms	remaining: 356ms
32:	learn: 19.3157092	total: 172ms	remaining: 349ms
33:	learn: 19.1561419	total: 177ms	remaining: 344ms
34:	learn: 19.0453620	total: 181ms	remaining: 337ms
35:	learn: 18.8738574	total: 186ms	remaining: 331ms
36:	learn: 18.7072907	total: 191ms	remaining: 325ms
37:	learn: 18.5877943	total: 195ms	remaining: 319ms
38:	learn: 18.4436380	total: 200ms	remaining: 313ms
39:	learn: 18.3463356	total: 204ms	remaining: 306ms
40:	learn: 18.2008059	total: 209ms	remaining: 301ms
41:	learn: 18.0582079	total: 213ms	remaining: 295ms
42:	learn: 17.8891982	total: 218ms	remaining: 288ms
43:	learn: 17.7332246	total: 222ms	remaining: 282ms
44:	learn: 17.6206421	total: 227ms	remaining: 277ms
45:	learn: 17.4982800	total: 231ms	remaining: 272ms
46:	learn: 17.3970150	total: 236ms	remaining: 266ms
47:	learn: 17.3058203	total: 241ms	remaining: 261ms
48:	learn: 17.1789256	total: 246ms	remaining: 256ms
49:	learn: 17.0916229	total: 251ms	remaining: 251ms
50:	learn: 16.9859820	total: 256ms	remaining: 246ms
51:	learn: 16.8995582	total: 260ms	remaining: 240ms
52:	learn: 16.8137014	total: 268ms	remaining: 237ms
53:	learn: 16.7021451	total: 275ms	remaining: 235ms
54:	learn: 16.5895582	total: 282ms	remaining: 231ms
55:	learn: 16.5015639	total: 288ms	remaining: 227ms
56:	learn: 16.4356637	total: 296ms	remaining: 224ms
57:	learn: 16.3514525	total: 301ms	remaining: 218ms
58:	learn: 16.2401369	total: 307ms	remaining: 213ms
59:	learn: 16.1293223	total: 312ms	remaining: 208ms
60:	learn: 16.0271167	total: 317ms	remaining: 203ms
61:	learn: 15.9126257	total: 322ms	remaining: 198ms
62:	learn: 15.8391096	total: 328ms	remaining: 192ms
63:	learn: 15.7441773	total: 332ms	remaining: 187ms
64:	learn: 15.6885195	total: 338ms	remaining: 182ms
65:	learn: 15.6052039	total: 343ms	remaining: 177ms
66:	learn: 15.5074202	total: 348ms	remaining: 172ms
67:	learn: 15.4054338	total: 353ms	remaining: 166ms
68:	learn: 15.2885714	total: 359ms	remaining: 161ms
69:	learn: 15.2157472	total: 364ms	remaining: 156ms
70:	learn: 15.1031554	total: 369ms	remaining: 151ms
71:	learn: 15.0237470	total: 373ms	remaining: 145ms
72:	learn: 14.9756825	total: 378ms	remaining: 140ms
73:	learn: 14.8840596	total: 382ms	remaining: 134ms
74:	learn: 14.8077061	total: 386ms	remaining: 129ms
75:	learn: 14.7444437	total: 391ms	remaining: 123ms
76:	learn: 14.6751720	total: 395ms	remaining: 118ms
77:	learn: 14.5830333	total: 399ms	remaining: 113ms
78:	learn: 14.5241206	total: 403ms	remaining: 107ms
79:	learn: 14.4892731	total: 407ms	remaining: 102ms
80:	learn: 14.4256605	total: 412ms	remaining: 96.5ms
81:	learn: 14.3666860	total: 415ms	remaining: 91.2ms
82:	learn: 14.2938372	total: 419ms	remaining: 85.8ms
83:	learn: 14.2161532	total: 423ms	remaining: 80.5ms
84:	learn: 14.1582910	total: 428ms	remaining: 75.4ms
85:	learn: 14.1029153	total: 432ms	remaining: 70.3ms
86:	learn: 14.0475835	total: 436ms	remaining: 65.2ms
87:	learn: 13.9892661	total: 441ms	remaining: 60.1ms
88:	learn: 13.9481628	total: 445ms	remaining: 55ms
89:	learn: 13.8483991	total: 450ms	remaining: 50ms
90:	learn: 13.7775614	total: 455ms	remaining: 45ms
91:	learn: 13.7304585	total: 459ms	remaining: 39.9ms
92:	learn: 13.6783381	total: 469ms	remaining: 35.3ms
93:	learn: 13.6356964	total: 476ms	remaining: 30.4ms
94:	learn: 13.5924371	total: 485ms	remaining: 25.5ms
95:	learn: 13.5400746	total: 492ms	remaining: 20.5ms
96:	learn: 13.4897333	total: 497ms	remaining: 15.4ms
97:	learn: 13.4470321	total: 502ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 507ms	remaining: 5.12ms
99:	learn: 13.3082371	total: 512ms	remaining: 0us
0:	learn: 43.0395283	total: 4.54ms	remaining: 450ms
1:	learn: 42.1130223	total: 8.29ms	remaining: 406ms
2:	learn: 41.1753409	total: 13ms	remaining: 419ms
3:	learn: 40.3637444	total: 16.9ms	remaining: 405ms
4:	learn: 39.6508088	total: 20.7ms	remaining: 393ms
5:	learn: 38.7217934	total: 24.9ms	remaining: 390ms
6:	learn: 37.8538055	total: 28.9ms	remaining: 384ms
7:	learn: 36.9793574	total: 32.6ms	remaining: 375ms
8:	learn: 36.3076984	total: 36.8ms	remaining: 372ms
9:	learn: 35.6673160	total: 40.7ms	remaining: 366ms
10:	learn: 34.8889800	total: 44.8ms	remaining: 363ms
11:	learn: 34.1675517	total: 48.9ms	remaining: 358ms
12:	learn: 33.6779564	total: 53ms	remaining: 355ms
13:	learn: 33.0710039	total: 57.1ms	remaining: 351ms
14:	learn: 32.4966674	total: 60.9ms	remaining: 345ms
15:	learn: 31.9492856	total: 65.1ms	remaining: 342ms
16:	learn: 31.5108129	total: 69.1ms	remaining: 338ms
17:	learn: 30.9804023	total: 73.3ms	remaining: 334ms
18:	learn: 30.4169089	total: 77.3ms	remaining: 330ms
19:	learn: 29.8930375	total: 82.1ms	remaining: 329ms
20:	learn: 29.3974421	total: 86.9ms	remaining: 327ms
21:	learn: 28.8792307	total: 91.2ms	remaining: 324ms
22:	learn: 28.3894474	total: 95.5ms	remaining: 320ms
23:	learn: 27.9921276	total: 100ms	remaining: 317ms
24:	learn: 27.6158887	total: 104ms	remaining: 313ms
25:	learn: 27.2866950	total: 109ms	remaining: 309ms
26:	learn: 26.8770708	total: 113ms	remaining: 307ms
27:	learn: 26.6233005	total: 121ms	remaining: 311ms
28:	learn: 26.2921934	total: 128ms	remaining: 314ms
29:	learn: 25.9156920	total: 138ms	remaining: 323ms
30:	learn: 25.5311106	total: 141ms	remaining: 314ms
31:	learn: 25.2178997	total: 148ms	remaining: 315ms
32:	learn: 24.8572196	total: 153ms	remaining: 312ms
33:	learn: 24.5849710	total: 159ms	remaining: 308ms
34:	learn: 24.2209190	total: 163ms	remaining: 304ms
35:	learn: 23.8708250	total: 177ms	remaining: 314ms
36:	learn: 23.5325279	total: 182ms	remaining: 310ms
37:	learn: 23.2116148	total: 187ms	remaining: 305ms
38:	learn: 22.9696787	total: 192ms	remaining: 300ms
39:	learn: 22.7936783	total: 197ms	remaining: 295ms
40:	learn: 22.6228847	total: 201ms	remaining: 289ms
41:	learn: 22.3691527	total: 206ms	remaining: 284ms
42:	learn: 22.1002173	total: 210ms	remaining: 279ms
43:	learn: 21.9157268	total: 215ms	remaining: 273ms
44:	learn: 21.7229102	total: 220ms	remaining: 269ms
45:	learn: 21.4642005	total: 226ms	remaining: 265ms
46:	learn: 21.3029442	total: 230ms	remaining: 259ms
47:	learn: 21.1469792	total: 234ms	remaining: 253ms
48:	learn: 20.9458235	total: 238ms	remaining: 247ms
49:	learn: 20.7335242	total: 242ms	remaining: 242ms
50:	learn: 20.5440269	total: 246ms	remaining: 236ms
51:	learn: 20.3661449	total: 250ms	remaining: 231ms
52:	learn: 20.2158134	total: 254ms	remaining: 225ms
53:	learn: 19.9934873	total: 258ms	remaining: 219ms
54:	learn: 19.7879739	total: 261ms	remaining: 214ms
55:	learn: 19.6630460	total: 266ms	remaining: 209ms
56:	learn: 19.5152729	total: 270ms	remaining: 204ms
57:	learn: 19.3581128	total: 274ms	remaining: 198ms
58:	learn: 19.2209303	total: 278ms	remaining: 193ms
59:	learn: 19.0965248	total: 282ms	remaining: 188ms
60:	learn: 19.0035954	total: 287ms	remaining: 184ms
61:	learn: 18.8554149	total: 292ms	remaining: 179ms
62:	learn: 18.7095427	total: 296ms	remaining: 174ms
63:	learn: 18.5751494	total: 301ms	remaining: 169ms
64:	learn: 18.4678251	total: 305ms	remaining: 164ms
65:	learn: 18.3500325	total: 310ms	remaining: 160ms
66:	learn: 18.2088983	total: 315ms	remaining: 155ms
67:	learn: 18.0737705	total: 323ms	remaining: 152ms
68:	learn: 17.9325058	total: 332ms	remaining: 149ms
69:	learn: 17.8003911	total: 341ms	remaining: 146ms
70:	learn: 17.7385366	total: 349ms	remaining: 143ms
71:	learn: 17.6106998	total: 354ms	remaining: 138ms
72:	learn: 17.4816270	total: 360ms	remaining: 133ms
73:	learn: 17.4025554	total: 365ms	remaining: 128ms
74:	learn: 17.2902108	total: 370ms	remaining: 123ms
75:	learn: 17.2158048	total: 375ms	remaining: 118ms
76:	learn: 17.1261053	total: 380ms	remaining: 114ms
77:	learn: 17.0308917	total: 386ms	remaining: 109ms
78:	learn: 16.9546705	total: 391ms	remaining: 104ms
79:	learn: 16.8319165	total: 396ms	remaining: 98.9ms
80:	learn: 16.7687017	total: 401ms	remaining: 94.1ms
81:	learn: 16.6972326	total: 406ms	remaining: 89.1ms
82:	learn: 16.6124580	total: 410ms	remaining: 84.1ms
83:	learn: 16.4999052	total: 416ms	remaining: 79.2ms
84:	learn: 16.4302484	total: 421ms	remaining: 74.3ms
85:	learn: 16.3201363	total: 425ms	remaining: 69.2ms
86:	learn: 16.2534314	total: 430ms	remaining: 64.2ms
87:	learn: 16.1720485	total: 434ms	remaining: 59.2ms
88:	learn: 16.0625751	total: 438ms	remaining: 54.1ms
89:	learn: 15.9135088	total: 442ms	remaining: 49.1ms
90:	learn: 15.8658863	total: 446ms	remaining: 44.1ms
91:	learn: 15.8066805	total: 450ms	remaining: 39.2ms
92:	learn: 15.7412103	total: 454ms	remaining: 34.2ms
93:	learn: 15.6542776	total: 459ms	remaining: 29.3ms
94:	learn: 15.5760334	total: 463ms	remaining: 24.4ms
95:	learn: 15.5434131	total: 467ms	remaining: 19.5ms
96:	learn: 15.4709561	total: 471ms	remaining: 14.6ms
97:	learn: 15.4449618	total: 475ms	remaining: 9.7ms
98:	learn: 15.3752761	total: 480ms	remaining: 4.84ms
99:	learn: 15.3106595	total: 484ms	remaining: 0us
0:	learn: 46.7142257	total: 5.74ms	remaining: 568ms
1:	learn: 45.7634153	total: 11ms	remaining: 537ms
2:	learn: 45.0054253	total: 16.8ms	remaining: 543ms
3:	learn: 44.2120432	total: 21.9ms	remaining: 526ms
4:	learn: 43.3960472	total: 27ms	remaining: 513ms
5:	learn: 42.8588120	total: 32.5ms	remaining: 510ms
6:	learn: 41.9533701	total: 37.8ms	remaining: 502ms
7:	learn: 41.2745030	total: 43.1ms	remaining: 496ms
8:	learn: 40.6797495	total: 48.8ms	remaining: 493ms
9:	learn: 39.9899571	total: 54.3ms	remaining: 489ms
10:	learn: 39.4682100	total: 59.4ms	remaining: 481ms
11:	learn: 39.0305595	total: 65.2ms	remaining: 478ms
12:	learn: 38.4200417	total: 70.8ms	remaining: 474ms
13:	learn: 37.8425194	total: 75.8ms	remaining: 466ms
14:	learn: 37.4203127	total: 80.1ms	remaining: 454ms
15:	learn: 36.9917688	total: 84.6ms	remaining: 444ms
16:	learn: 36.5544138	total: 88.8ms	remaining: 433ms
17:	learn: 36.0727019	total: 93.4ms	remaining: 425ms
18:	learn: 35.4835715	total: 97.5ms	remaining: 416ms
19:	learn: 34.9865654	total: 102ms	remaining: 408ms
20:	learn: 34.6063373	total: 107ms	remaining: 401ms
21:	learn: 34.0997289	total: 111ms	remaining: 394ms
22:	learn: 33.7313171	total: 115ms	remaining: 385ms
23:	learn: 33.3582000	total: 120ms	remaining: 379ms
24:	learn: 32.9432456	total: 124ms	remaining: 371ms
25:	learn: 32.5220888	total: 128ms	remaining: 363ms
26:	learn: 32.2172292	total: 132ms	remaining: 356ms
27:	learn: 31.8972904	total: 136ms	remaining: 350ms
28:	learn: 31.6405350	total: 141ms	remaining: 346ms
29:	learn: 31.4167702	total: 146ms	remaining: 340ms
30:	learn: 30.8541961	total: 148ms	remaining: 329ms
31:	learn: 30.5572111	total: 152ms	remaining: 324ms
32:	learn: 30.1700399	total: 157ms	remaining: 319ms
33:	learn: 29.8537271	total: 161ms	remaining: 313ms
34:	learn: 29.6192540	total: 166ms	remaining: 308ms
35:	learn: 29.3276362	total: 170ms	remaining: 303ms
36:	learn: 28.9985179	total: 178ms	remaining: 303ms
37:	learn: 28.7046880	total: 185ms	remaining: 302ms
38:	learn: 28.4412677	total: 195ms	remaining: 305ms
39:	learn: 28.1277292	total: 202ms	remaining: 303ms
40:	learn: 27.9000750	total: 208ms	remaining: 299ms
41:	learn: 27.5433162	total: 213ms	remaining: 294ms
42:	learn: 27.2493285	total: 219ms	remaining: 290ms
43:	learn: 26.9576632	total: 221ms	remaining: 281ms
44:	learn: 26.6177110	total: 226ms	remaining: 276ms
45:	learn: 26.2812456	total: 231ms	remaining: 272ms
46:	learn: 26.0803859	total: 236ms	remaining: 266ms
47:	learn: 25.9543581	total: 241ms	remaining: 261ms
48:	learn: 25.7951582	total: 246ms	remaining: 256ms
49:	learn: 25.6548184	total: 251ms	remaining: 251ms
50:	learn: 25.4010843	total: 256ms	remaining: 246ms
51:	learn: 24.9773937	total: 261ms	remaining: 241ms
52:	learn: 24.8026156	total: 266ms	remaining: 236ms
53:	learn: 24.5568053	total: 272ms	remaining: 231ms
54:	learn: 24.2281839	total: 277ms	remaining: 227ms
55:	learn: 23.9202795	total: 282ms	remaining: 222ms
56:	learn: 23.7625591	total: 286ms	remaining: 216ms
57:	learn: 23.5429721	total: 290ms	remaining: 210ms
58:	learn: 23.3175893	total: 294ms	remaining: 204ms
59:	learn: 23.2035130	total: 298ms	remaining: 198ms
60:	learn: 23.0232450	total: 302ms	remaining: 193ms
61:	learn: 22.8384958	total: 306ms	remaining: 187ms
62:	learn: 22.6499902	total: 310ms	remaining: 182ms
63:	learn: 22.4577426	total: 314ms	remaining: 177ms
64:	learn: 22.3333158	total: 318ms	remaining: 171ms
65:	learn: 22.2064131	total: 323ms	remaining: 167ms
66:	learn: 22.1434971	total: 328ms	remaining: 161ms
67:	learn: 21.9596519	total: 332ms	remaining: 156ms
68:	learn: 21.8475576	total: 336ms	remaining: 151ms
69:	learn: 21.6954745	total: 340ms	remaining: 146ms
70:	learn: 21.5635976	total: 345ms	remaining: 141ms
71:	learn: 21.4588506	total: 350ms	remaining: 136ms
72:	learn: 21.3527268	total: 354ms	remaining: 131ms
73:	learn: 21.2661288	total: 358ms	remaining: 126ms
74:	learn: 21.1817333	total: 363ms	remaining: 121ms
75:	learn: 21.0527553	total: 368ms	remaining: 116ms
76:	learn: 20.9229021	total: 372ms	remaining: 111ms
77:	learn: 20.7563946	total: 381ms	remaining: 107ms
78:	learn: 20.6569831	total: 388ms	remaining: 103ms
79:	learn: 20.4982663	total: 397ms	remaining: 99.2ms
80:	learn: 20.3185460	total: 404ms	remaining: 94.9ms
81:	learn: 20.2096241	total: 410ms	remaining: 89.9ms
82:	learn: 20.1274891	total: 415ms	remaining: 85.1ms
83:	learn: 20.0740139	total: 420ms	remaining: 80ms
84:	learn: 19.9630699	total: 425ms	remaining: 75.1ms
85:	learn: 19.8753899	total: 431ms	remaining: 70.2ms
86:	learn: 19.6563612	total: 436ms	remaining: 65.2ms
87:	learn: 19.4680232	total: 441ms	remaining: 60.2ms
88:	learn: 19.3503431	total: 447ms	remaining: 55.2ms
89:	learn: 19.2221379	total: 452ms	remaining: 50.2ms
90:	learn: 19.0732542	total: 457ms	remaining: 45.2ms
91:	learn: 18.9825190	total: 461ms	remaining: 40.1ms
92:	learn: 18.8839009	total: 467ms	remaining: 35.1ms
93:	learn: 18.8012219	total: 473ms	remaining: 30.2ms
94:	learn: 18.7172713	total: 477ms	remaining: 25.1ms
95:	learn: 18.6201170	total: 481ms	remaining: 20ms
96:	learn: 18.5318611	total: 485ms	remaining: 15ms
97:	learn: 18.3833356	total: 489ms	remaining: 9.98ms
98:	learn: 18.3289700	total: 493ms	remaining: 4.98ms
99:	learn: 18.2227333	total: 497ms	remaining: 0us
0:	learn: 46.3764524	total: 4.79ms	remaining: 475ms
1:	learn: 45.5561269	total: 9.15ms	remaining: 448ms
2:	learn: 44.8811245	total: 13.7ms	remaining: 443ms
3:	learn: 44.0788617	total: 18ms	remaining: 432ms
4:	learn: 43.3619790	total: 22.3ms	remaining: 425ms
5:	learn: 42.6912112	total: 26.9ms	remaining: 422ms
6:	learn: 42.2292118	total: 32.1ms	remaining: 426ms
7:	learn: 41.7725191	total: 40.1ms	remaining: 461ms
8:	learn: 41.1676614	total: 47.1ms	remaining: 476ms
9:	learn: 40.5771076	total: 62.8ms	remaining: 565ms
10:	learn: 39.8343757	total: 67.7ms	remaining: 548ms
11:	learn: 39.3761142	total: 73ms	remaining: 535ms
12:	learn: 38.5254692	total: 78.1ms	remaining: 522ms
13:	learn: 37.9629555	total: 83.3ms	remaining: 512ms
14:	learn: 37.4418438	total: 88.1ms	remaining: 499ms
15:	learn: 37.0507283	total: 93.5ms	remaining: 491ms
16:	learn: 36.6264217	total: 98.3ms	remaining: 480ms
17:	learn: 36.1114940	total: 104ms	remaining: 473ms
18:	learn: 35.7193862	total: 109ms	remaining: 464ms
19:	learn: 35.3301177	total: 114ms	remaining: 456ms
20:	learn: 35.0598280	total: 119ms	remaining: 447ms
21:	learn: 34.5469736	total: 124ms	remaining: 438ms
22:	learn: 34.2064215	total: 129ms	remaining: 431ms
23:	learn: 33.7280710	total: 134ms	remaining: 425ms
24:	learn: 33.3282940	total: 138ms	remaining: 414ms
25:	learn: 32.8478961	total: 142ms	remaining: 405ms
26:	learn: 32.5722164	total: 146ms	remaining: 396ms
27:	learn: 32.2457019	total: 150ms	remaining: 386ms
28:	learn: 31.9230495	total: 155ms	remaining: 379ms
29:	learn: 31.4311611	total: 159ms	remaining: 371ms
30:	learn: 30.9179052	total: 163ms	remaining: 363ms
31:	learn: 30.6201141	total: 167ms	remaining: 356ms
32:	learn: 30.3421106	total: 172ms	remaining: 349ms
33:	learn: 29.9885373	total: 176ms	remaining: 341ms
34:	learn: 29.7462780	total: 180ms	remaining: 334ms
35:	learn: 29.3607153	total: 184ms	remaining: 328ms
36:	learn: 29.1793078	total: 188ms	remaining: 321ms
37:	learn: 28.9276538	total: 192ms	remaining: 314ms
38:	learn: 28.6903934	total: 197ms	remaining: 308ms
39:	learn: 28.2095033	total: 201ms	remaining: 302ms
40:	learn: 27.7990608	total: 206ms	remaining: 296ms
41:	learn: 27.5406632	total: 210ms	remaining: 290ms
42:	learn: 27.2575376	total: 215ms	remaining: 285ms
43:	learn: 26.9741707	total: 219ms	remaining: 278ms
44:	learn: 26.6606899	total: 223ms	remaining: 272ms
45:	learn: 26.4015833	total: 227ms	remaining: 267ms
46:	learn: 26.1828993	total: 231ms	remaining: 261ms
47:	learn: 26.0233709	total: 234ms	remaining: 254ms
48:	learn: 25.9300399	total: 239ms	remaining: 248ms
49:	learn: 25.5861489	total: 244ms	remaining: 244ms
50:	learn: 25.4322012	total: 248ms	remaining: 239ms
51:	learn: 25.1595644	total: 253ms	remaining: 234ms
52:	learn: 24.9955303	total: 258ms	remaining: 229ms
53:	learn: 24.7273966	total: 263ms	remaining: 224ms
54:	learn: 24.5747978	total: 271ms	remaining: 222ms
55:	learn: 24.3807977	total: 280ms	remaining: 220ms
56:	learn: 24.1689569	total: 290ms	remaining: 219ms
57:	learn: 23.9898221	total: 296ms	remaining: 214ms
58:	learn: 23.7566414	total: 302ms	remaining: 210ms
59:	learn: 23.6641165	total: 307ms	remaining: 205ms
60:	learn: 23.5658066	total: 312ms	remaining: 200ms
61:	learn: 23.4338851	total: 318ms	remaining: 195ms
62:	learn: 23.2408837	total: 323ms	remaining: 190ms
63:	learn: 23.0642038	total: 328ms	remaining: 185ms
64:	learn: 22.9032045	total: 333ms	remaining: 180ms
65:	learn: 22.7736138	total: 339ms	remaining: 175ms
66:	learn: 22.6836443	total: 343ms	remaining: 169ms
67:	learn: 22.5983654	total: 348ms	remaining: 164ms
68:	learn: 22.4419813	total: 352ms	remaining: 158ms
69:	learn: 22.2863339	total: 357ms	remaining: 153ms
70:	learn: 22.1792943	total: 361ms	remaining: 148ms
71:	learn: 22.1130574	total: 366ms	remaining: 142ms
72:	learn: 21.9858161	total: 370ms	remaining: 137ms
73:	learn: 21.8577784	total: 375ms	remaining: 132ms
74:	learn: 21.7845222	total: 380ms	remaining: 127ms
75:	learn: 21.6831390	total: 386ms	remaining: 122ms
76:	learn: 21.6292521	total: 391ms	remaining: 117ms
77:	learn: 21.5789330	total: 396ms	remaining: 112ms
78:	learn: 21.5420942	total: 400ms	remaining: 106ms
79:	learn: 21.4280939	total: 404ms	remaining: 101ms
80:	learn: 21.3641165	total: 408ms	remaining: 95.8ms
81:	learn: 21.2734814	total: 413ms	remaining: 90.6ms
82:	learn: 21.2220323	total: 417ms	remaining: 85.4ms
83:	learn: 21.0625792	total: 421ms	remaining: 80.3ms
84:	learn: 20.9488320	total: 426ms	remaining: 75.2ms
85:	learn: 20.8504255	total: 430ms	remaining: 70.1ms
86:	learn: 20.7848510	total: 435ms	remaining: 65ms
87:	learn: 20.7247442	total: 440ms	remaining: 59.9ms
88:	learn: 20.5698590	total: 444ms	remaining: 54.9ms
89:	learn: 20.4067620	total: 449ms	remaining: 49.9ms
90:	learn: 20.3062482	total: 454ms	remaining: 44.9ms
91:	learn: 20.2029696	total: 458ms	remaining: 39.8ms
92:	learn: 20.1384849	total: 463ms	remaining: 34.8ms
93:	learn: 20.0260709	total: 468ms	remaining: 29.9ms
94:	learn: 19.9122100	total: 476ms	remaining: 25ms
95:	learn: 19.8648487	total: 485ms	remaining: 20.2ms
96:	learn: 19.8207072	total: 493ms	remaining: 15.2ms
97:	learn: 19.7261189	total: 501ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 506ms	remaining: 5.11ms
99:	learn: 19.6546645	total: 511ms	remaining: 0us
0:	learn: 47.0239288	total: 5.79ms	remaining: 573ms
1:	learn: 46.2253829	total: 10.5ms	remaining: 513ms
2:	learn: 45.5580301	total: 14.5ms	remaining: 469ms
3:	learn: 44.7273237	total: 18.9ms	remaining: 453ms
4:	learn: 43.8867421	total: 22.9ms	remaining: 436ms
5:	learn: 43.3615911	total: 27ms	remaining: 423ms
6:	learn: 42.8548390	total: 31.1ms	remaining: 413ms
7:	learn: 42.1606758	total: 34.8ms	remaining: 400ms
8:	learn: 41.6625870	total: 38.5ms	remaining: 389ms
9:	learn: 40.9497092	total: 42.2ms	remaining: 380ms
10:	learn: 40.1886318	total: 46ms	remaining: 372ms
11:	learn: 39.7456423	total: 50ms	remaining: 367ms
12:	learn: 39.1171373	total: 53.8ms	remaining: 360ms
13:	learn: 38.5451069	total: 58ms	remaining: 357ms
14:	learn: 38.0155834	total: 61.8ms	remaining: 350ms
15:	learn: 37.5631354	total: 65.8ms	remaining: 345ms
16:	learn: 37.1030023	total: 69.7ms	remaining: 340ms
17:	learn: 36.4563029	total: 73.9ms	remaining: 337ms
18:	learn: 36.0160976	total: 78.4ms	remaining: 334ms
19:	learn: 35.5079827	total: 83.3ms	remaining: 333ms
20:	learn: 35.2111885	total: 88ms	remaining: 331ms
21:	learn: 34.9397465	total: 92.4ms	remaining: 328ms
22:	learn: 34.5270048	total: 96.8ms	remaining: 324ms
23:	learn: 34.0169260	total: 102ms	remaining: 322ms
24:	learn: 33.7454892	total: 106ms	remaining: 318ms
25:	learn: 33.2648157	total: 113ms	remaining: 322ms
26:	learn: 32.8899427	total: 121ms	remaining: 326ms
27:	learn: 32.6185050	total: 128ms	remaining: 329ms
28:	learn: 32.3528531	total: 135ms	remaining: 329ms
29:	learn: 32.0859923	total: 142ms	remaining: 332ms
30:	learn: 31.6511144	total: 147ms	remaining: 328ms
31:	learn: 31.2571765	total: 152ms	remaining: 323ms
32:	learn: 30.9770049	total: 157ms	remaining: 320ms
33:	learn: 30.6084872	total: 163ms	remaining: 316ms
34:	learn: 30.3448632	total: 167ms	remaining: 311ms
35:	learn: 30.0360942	total: 173ms	remaining: 307ms
36:	learn: 29.6648968	total: 177ms	remaining: 302ms
37:	learn: 29.3165114	total: 183ms	remaining: 298ms
38:	learn: 29.0829198	total: 188ms	remaining: 294ms
39:	learn: 28.7752064	total: 193ms	remaining: 290ms
40:	learn: 28.3622191	total: 198ms	remaining: 285ms
41:	learn: 28.1346631	total: 203ms	remaining: 280ms
42:	learn: 27.9585719	total: 209ms	remaining: 277ms
43:	learn: 27.6565566	total: 214ms	remaining: 272ms
44:	learn: 27.3616172	total: 219ms	remaining: 267ms
45:	learn: 27.0658637	total: 222ms	remaining: 261ms
46:	learn: 26.8660382	total: 226ms	remaining: 255ms
47:	learn: 26.6536078	total: 230ms	remaining: 249ms
48:	learn: 26.3524440	total: 234ms	remaining: 244ms
49:	learn: 26.1595277	total: 238ms	remaining: 238ms
50:	learn: 25.9273523	total: 242ms	remaining: 232ms
51:	learn: 25.7195580	total: 246ms	remaining: 227ms
52:	learn: 25.5730225	total: 250ms	remaining: 222ms
53:	learn: 25.3455276	total: 254ms	remaining: 217ms
54:	learn: 25.2289675	total: 258ms	remaining: 211ms
55:	learn: 25.0133024	total: 262ms	remaining: 206ms
56:	learn: 24.8406714	total: 267ms	remaining: 201ms
57:	learn: 24.6367857	total: 271ms	remaining: 196ms
58:	learn: 24.5338177	total: 275ms	remaining: 191ms
59:	learn: 24.3799964	total: 280ms	remaining: 186ms
60:	learn: 24.1447492	total: 284ms	remaining: 182ms
61:	learn: 23.9880495	total: 289ms	remaining: 177ms
62:	learn: 23.7140630	total: 293ms	remaining: 172ms
63:	learn: 23.5003791	total: 298ms	remaining: 167ms
64:	learn: 23.3207645	total: 306ms	remaining: 165ms
65:	learn: 23.1958356	total: 312ms	remaining: 161ms
66:	learn: 23.0471302	total: 321ms	remaining: 158ms
67:	learn: 22.8977183	total: 326ms	remaining: 153ms
68:	learn: 22.7187400	total: 333ms	remaining: 150ms
69:	learn: 22.6523405	total: 338ms	remaining: 145ms
70:	learn: 22.4767453	total: 343ms	remaining: 140ms
71:	learn: 22.3243677	total: 348ms	remaining: 135ms
72:	learn: 22.2133096	total: 353ms	remaining: 131ms
73:	learn: 22.1151713	total: 358ms	remaining: 126ms
74:	learn: 22.0296666	total: 363ms	remaining: 121ms
75:	learn: 21.9195980	total: 368ms	remaining: 116ms
76:	learn: 21.8401730	total: 373ms	remaining: 111ms
77:	learn: 21.8079797	total: 378ms	remaining: 107ms
78:	learn: 21.7274109	total: 383ms	remaining: 102ms
79:	learn: 21.6663032	total: 388ms	remaining: 96.9ms
80:	learn: 21.5633117	total: 393ms	remaining: 92.2ms
81:	learn: 21.4542467	total: 398ms	remaining: 87.4ms
82:	learn: 21.3177957	total: 403ms	remaining: 82.5ms
83:	learn: 21.1289167	total: 407ms	remaining: 77.5ms
84:	learn: 21.0297368	total: 411ms	remaining: 72.5ms
85:	learn: 20.9089564	total: 415ms	remaining: 67.5ms
86:	learn: 20.7653988	total: 419ms	remaining: 62.5ms
87:	learn: 20.6521894	total: 423ms	remaining: 57.6ms
88:	learn: 20.5193021	total: 427ms	remaining: 52.7ms
89:	learn: 20.4361620	total: 431ms	remaining: 47.8ms
90:	learn: 20.3546710	total: 434ms	remaining: 43ms
91:	learn: 20.2513296	total: 438ms	remaining: 38.1ms
92:	learn: 20.1605550	total: 442ms	remaining: 33.3ms
93:	learn: 20.0515942	total: 446ms	remaining: 28.4ms
94:	learn: 19.9800764	total: 450ms	remaining: 23.7ms
95:	learn: 19.8996532	total: 454ms	remaining: 18.9ms
96:	learn: 19.8450910	total: 457ms	remaining: 14.1ms
97:	learn: 19.7887346	total: 462ms	remaining: 9.43ms
98:	learn: 19.7230872	total: 466ms	remaining: 4.7ms
99:	learn: 19.6328825	total: 470ms	remaining: 0us
0:	learn: 27.5585353	total: 9ms	remaining: 891ms
1:	learn: 27.1656995	total: 15.2ms	remaining: 747ms
2:	learn: 26.8590175	total: 21.8ms	remaining: 706ms
3:	learn: 26.5818406	total: 27ms	remaining: 649ms
4:	learn: 26.1148663	total: 32.6ms	remaining: 620ms
5:	learn: 25.7690484	total: 49.6ms	remaining: 777ms
6:	learn: 25.3489206	total: 55.1ms	remaining: 732ms
7:	learn: 24.9542406	total: 60.5ms	remaining: 696ms
8:	learn: 24.6777517	total: 66.4ms	remaining: 671ms
9:	learn: 24.3242344	total: 71.9ms	remaining: 647ms
10:	learn: 24.0383073	total: 76.6ms	remaining: 620ms
11:	learn: 23.7383420	total: 82.2ms	remaining: 603ms
12:	learn: 23.3461670	total: 87.8ms	remaining: 588ms
13:	learn: 23.0928636	total: 91.9ms	remaining: 565ms
14:	learn: 22.8770414	total: 96.2ms	remaining: 545ms
15:	learn: 22.6323214	total: 100ms	remaining: 527ms
16:	learn: 22.3597072	total: 105ms	remaining: 513ms
17:	learn: 22.1079813	total: 109ms	remaining: 498ms
18:	learn: 21.8421199	total: 114ms	remaining: 486ms
19:	learn: 21.6576508	total: 119ms	remaining: 476ms
20:	learn: 21.4301268	total: 123ms	remaining: 464ms
21:	learn: 21.2287388	total: 128ms	remaining: 452ms
22:	learn: 21.0553872	total: 132ms	remaining: 440ms
23:	learn: 20.8977091	total: 136ms	remaining: 430ms
24:	learn: 20.6619051	total: 140ms	remaining: 420ms
25:	learn: 20.5040955	total: 144ms	remaining: 410ms
26:	learn: 20.3181195	total: 148ms	remaining: 400ms
27:	learn: 20.0869436	total: 152ms	remaining: 391ms
28:	learn: 19.9375985	total: 157ms	remaining: 383ms
29:	learn: 19.8247516	total: 161ms	remaining: 376ms
30:	learn: 19.6261697	total: 165ms	remaining: 368ms
31:	learn: 19.4547236	total: 170ms	remaining: 361ms
32:	learn: 19.3157092	total: 174ms	remaining: 354ms
33:	learn: 19.1561419	total: 179ms	remaining: 347ms
34:	learn: 19.0453620	total: 183ms	remaining: 340ms
35:	learn: 18.8738574	total: 205ms	remaining: 365ms
36:	learn: 18.7072907	total: 214ms	remaining: 364ms
37:	learn: 18.5877943	total: 221ms	remaining: 360ms
38:	learn: 18.4436380	total: 227ms	remaining: 354ms
39:	learn: 18.3463356	total: 232ms	remaining: 347ms
40:	learn: 18.2008059	total: 237ms	remaining: 340ms
41:	learn: 18.0582079	total: 242ms	remaining: 334ms
42:	learn: 17.8891982	total: 247ms	remaining: 327ms
43:	learn: 17.7332246	total: 252ms	remaining: 321ms
44:	learn: 17.6206421	total: 258ms	remaining: 315ms
45:	learn: 17.4982800	total: 263ms	remaining: 308ms
46:	learn: 17.3970150	total: 268ms	remaining: 302ms
47:	learn: 17.3058203	total: 273ms	remaining: 296ms
48:	learn: 17.1789256	total: 279ms	remaining: 290ms
49:	learn: 17.0916229	total: 283ms	remaining: 283ms
50:	learn: 16.9859820	total: 288ms	remaining: 277ms
51:	learn: 16.8995582	total: 294ms	remaining: 271ms
52:	learn: 16.8137014	total: 299ms	remaining: 265ms
53:	learn: 16.7021451	total: 303ms	remaining: 258ms
54:	learn: 16.5895582	total: 307ms	remaining: 251ms
55:	learn: 16.5015639	total: 312ms	remaining: 245ms
56:	learn: 16.4356637	total: 316ms	remaining: 238ms
57:	learn: 16.3514525	total: 320ms	remaining: 232ms
58:	learn: 16.2401369	total: 324ms	remaining: 225ms
59:	learn: 16.1293223	total: 329ms	remaining: 219ms
60:	learn: 16.0271167	total: 333ms	remaining: 213ms
61:	learn: 15.9126257	total: 338ms	remaining: 207ms
62:	learn: 15.8391096	total: 342ms	remaining: 201ms
63:	learn: 15.7441773	total: 346ms	remaining: 195ms
64:	learn: 15.6885195	total: 351ms	remaining: 189ms
65:	learn: 15.6052039	total: 355ms	remaining: 183ms
66:	learn: 15.5074202	total: 360ms	remaining: 177ms
67:	learn: 15.4054338	total: 364ms	remaining: 172ms
68:	learn: 15.2885714	total: 369ms	remaining: 166ms
69:	learn: 15.2157472	total: 374ms	remaining: 160ms
70:	learn: 15.1031554	total: 379ms	remaining: 155ms
71:	learn: 15.0237470	total: 384ms	remaining: 149ms
72:	learn: 14.9756825	total: 389ms	remaining: 144ms
73:	learn: 14.8840596	total: 404ms	remaining: 142ms
74:	learn: 14.8077061	total: 414ms	remaining: 138ms
75:	learn: 14.7444437	total: 421ms	remaining: 133ms
76:	learn: 14.6751720	total: 428ms	remaining: 128ms
77:	learn: 14.5830333	total: 433ms	remaining: 122ms
78:	learn: 14.5241206	total: 438ms	remaining: 116ms
79:	learn: 14.4892731	total: 443ms	remaining: 111ms
80:	learn: 14.4256605	total: 448ms	remaining: 105ms
81:	learn: 14.3666860	total: 453ms	remaining: 99.5ms
82:	learn: 14.2938372	total: 458ms	remaining: 93.9ms
83:	learn: 14.2161532	total: 463ms	remaining: 88.3ms
84:	learn: 14.1582910	total: 469ms	remaining: 82.7ms
85:	learn: 14.1029153	total: 474ms	remaining: 77.2ms
86:	learn: 14.0475835	total: 479ms	remaining: 71.6ms
87:	learn: 13.9892661	total: 484ms	remaining: 66ms
88:	learn: 13.9481628	total: 489ms	remaining: 60.4ms
89:	learn: 13.8483991	total: 494ms	remaining: 54.9ms
90:	learn: 13.7775614	total: 499ms	remaining: 49.4ms
91:	learn: 13.7304585	total: 504ms	remaining: 43.8ms
92:	learn: 13.6783381	total: 508ms	remaining: 38.3ms
93:	learn: 13.6356964	total: 513ms	remaining: 32.7ms
94:	learn: 13.5924371	total: 517ms	remaining: 27.2ms
95:	learn: 13.5400746	total: 521ms	remaining: 21.7ms
96:	learn: 13.4897333	total: 526ms	remaining: 16.3ms
97:	learn: 13.4470321	total: 530ms	remaining: 10.8ms
98:	learn: 13.3856082	total: 534ms	remaining: 5.39ms
99:	learn: 13.3082371	total: 538ms	remaining: 0us
0:	learn: 43.0395283	total: 4.89ms	remaining: 484ms
1:	learn: 42.1130223	total: 9.11ms	remaining: 446ms
2:	learn: 41.1753409	total: 13.7ms	remaining: 443ms
3:	learn: 40.3637444	total: 20ms	remaining: 480ms
4:	learn: 39.6508088	total: 27.2ms	remaining: 516ms
5:	learn: 38.7217934	total: 34.7ms	remaining: 543ms
6:	learn: 37.8538055	total: 42.3ms	remaining: 561ms
7:	learn: 36.9793574	total: 50ms	remaining: 575ms
8:	learn: 36.3076984	total: 55.3ms	remaining: 559ms
9:	learn: 35.6673160	total: 60.1ms	remaining: 541ms
10:	learn: 34.8889800	total: 65.1ms	remaining: 526ms
11:	learn: 34.1675517	total: 70.1ms	remaining: 514ms
12:	learn: 33.6779564	total: 75.3ms	remaining: 504ms
13:	learn: 33.0710039	total: 80.4ms	remaining: 494ms
14:	learn: 32.4966674	total: 85.3ms	remaining: 483ms
15:	learn: 31.9492856	total: 90.6ms	remaining: 476ms
16:	learn: 31.5108129	total: 95.8ms	remaining: 467ms
17:	learn: 30.9804023	total: 101ms	remaining: 459ms
18:	learn: 30.4169089	total: 106ms	remaining: 451ms
19:	learn: 29.8930375	total: 110ms	remaining: 442ms
20:	learn: 29.3974421	total: 116ms	remaining: 436ms
21:	learn: 28.8792307	total: 122ms	remaining: 432ms
22:	learn: 28.3894474	total: 126ms	remaining: 423ms
23:	learn: 27.9921276	total: 130ms	remaining: 412ms
24:	learn: 27.6158887	total: 134ms	remaining: 402ms
25:	learn: 27.2866950	total: 138ms	remaining: 394ms
26:	learn: 26.8770708	total: 143ms	remaining: 386ms
27:	learn: 26.6233005	total: 147ms	remaining: 377ms
28:	learn: 26.2921934	total: 151ms	remaining: 369ms
29:	learn: 25.9156920	total: 155ms	remaining: 362ms
30:	learn: 25.5311106	total: 157ms	remaining: 349ms
31:	learn: 25.2178997	total: 161ms	remaining: 342ms
32:	learn: 24.8572196	total: 165ms	remaining: 334ms
33:	learn: 24.5849710	total: 169ms	remaining: 327ms
34:	learn: 24.2209190	total: 173ms	remaining: 321ms
35:	learn: 23.8708250	total: 177ms	remaining: 314ms
36:	learn: 23.5325279	total: 181ms	remaining: 308ms
37:	learn: 23.2116148	total: 185ms	remaining: 301ms
38:	learn: 22.9696787	total: 189ms	remaining: 295ms
39:	learn: 22.7936783	total: 193ms	remaining: 289ms
40:	learn: 22.6228847	total: 197ms	remaining: 283ms
41:	learn: 22.3691527	total: 201ms	remaining: 278ms
42:	learn: 22.1002173	total: 205ms	remaining: 272ms
43:	learn: 21.9157268	total: 209ms	remaining: 266ms
44:	learn: 21.7229102	total: 214ms	remaining: 261ms
45:	learn: 21.4642005	total: 218ms	remaining: 255ms
46:	learn: 21.3029442	total: 222ms	remaining: 250ms
47:	learn: 21.1469792	total: 227ms	remaining: 246ms
48:	learn: 20.9458235	total: 231ms	remaining: 241ms
49:	learn: 20.7335242	total: 236ms	remaining: 236ms
50:	learn: 20.5440269	total: 241ms	remaining: 231ms
51:	learn: 20.3661449	total: 245ms	remaining: 227ms
52:	learn: 20.2158134	total: 250ms	remaining: 222ms
53:	learn: 19.9934873	total: 254ms	remaining: 217ms
54:	learn: 19.7879739	total: 264ms	remaining: 216ms
55:	learn: 19.6630460	total: 272ms	remaining: 214ms
56:	learn: 19.5152729	total: 280ms	remaining: 211ms
57:	learn: 19.3581128	total: 288ms	remaining: 209ms
58:	learn: 19.2209303	total: 293ms	remaining: 204ms
59:	learn: 19.0965248	total: 299ms	remaining: 199ms
60:	learn: 19.0035954	total: 304ms	remaining: 194ms
61:	learn: 18.8554149	total: 309ms	remaining: 189ms
62:	learn: 18.7095427	total: 314ms	remaining: 184ms
63:	learn: 18.5751494	total: 318ms	remaining: 179ms
64:	learn: 18.4678251	total: 324ms	remaining: 174ms
65:	learn: 18.3500325	total: 342ms	remaining: 176ms
66:	learn: 18.2088983	total: 347ms	remaining: 171ms
67:	learn: 18.0737705	total: 352ms	remaining: 166ms
68:	learn: 17.9325058	total: 357ms	remaining: 160ms
69:	learn: 17.8003911	total: 361ms	remaining: 155ms
70:	learn: 17.7385366	total: 366ms	remaining: 149ms
71:	learn: 17.6106998	total: 370ms	remaining: 144ms
72:	learn: 17.4816270	total: 375ms	remaining: 139ms
73:	learn: 17.4025554	total: 379ms	remaining: 133ms
74:	learn: 17.2902108	total: 383ms	remaining: 128ms
75:	learn: 17.2158048	total: 387ms	remaining: 122ms
76:	learn: 17.1261053	total: 391ms	remaining: 117ms
77:	learn: 17.0308917	total: 395ms	remaining: 112ms
78:	learn: 16.9546705	total: 400ms	remaining: 106ms
79:	learn: 16.8319165	total: 404ms	remaining: 101ms
80:	learn: 16.7687017	total: 408ms	remaining: 95.7ms
81:	learn: 16.6972326	total: 412ms	remaining: 90.4ms
82:	learn: 16.6124580	total: 416ms	remaining: 85.2ms
83:	learn: 16.4999052	total: 421ms	remaining: 80.2ms
84:	learn: 16.4302484	total: 425ms	remaining: 75.1ms
85:	learn: 16.3201363	total: 430ms	remaining: 70ms
86:	learn: 16.2534314	total: 435ms	remaining: 64.9ms
87:	learn: 16.1720485	total: 439ms	remaining: 59.9ms
88:	learn: 16.0625751	total: 444ms	remaining: 54.8ms
89:	learn: 15.9135088	total: 448ms	remaining: 49.8ms
90:	learn: 15.8658863	total: 454ms	remaining: 44.9ms
91:	learn: 15.8066805	total: 462ms	remaining: 40.2ms
92:	learn: 15.7412103	total: 468ms	remaining: 35.3ms
93:	learn: 15.6542776	total: 475ms	remaining: 30.3ms
94:	learn: 15.5760334	total: 480ms	remaining: 25.3ms
95:	learn: 15.5434131	total: 486ms	remaining: 20.2ms
96:	learn: 15.4709561	total: 491ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 496ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 501ms	remaining: 5.06ms
99:	learn: 15.3106595	total: 506ms	remaining: 0us
0:	learn: 46.7142257	total: 4.6ms	remaining: 456ms
1:	learn: 45.7634153	total: 8.94ms	remaining: 438ms
2:	learn: 45.0054253	total: 13ms	remaining: 421ms
3:	learn: 44.2120432	total: 16.8ms	remaining: 404ms
4:	learn: 43.3960472	total: 21.4ms	remaining: 407ms
5:	learn: 42.8588120	total: 25.8ms	remaining: 404ms
6:	learn: 41.9533701	total: 30.1ms	remaining: 400ms
7:	learn: 41.2745030	total: 34.4ms	remaining: 395ms
8:	learn: 40.6797495	total: 38.5ms	remaining: 390ms
9:	learn: 39.9899571	total: 42.8ms	remaining: 386ms
10:	learn: 39.4682100	total: 46.8ms	remaining: 379ms
11:	learn: 39.0305595	total: 51.4ms	remaining: 377ms
12:	learn: 38.4200417	total: 55.1ms	remaining: 369ms
13:	learn: 37.8425194	total: 59.2ms	remaining: 364ms
14:	learn: 37.4203127	total: 63.3ms	remaining: 359ms
15:	learn: 36.9917688	total: 68.1ms	remaining: 358ms
16:	learn: 36.5544138	total: 73ms	remaining: 356ms
17:	learn: 36.0727019	total: 78ms	remaining: 355ms
18:	learn: 35.4835715	total: 82.9ms	remaining: 353ms
19:	learn: 34.9865654	total: 87.7ms	remaining: 351ms
20:	learn: 34.6063373	total: 92.4ms	remaining: 347ms
21:	learn: 34.0997289	total: 97.2ms	remaining: 345ms
22:	learn: 33.7313171	total: 104ms	remaining: 347ms
23:	learn: 33.3582000	total: 112ms	remaining: 354ms
24:	learn: 32.9432456	total: 120ms	remaining: 360ms
25:	learn: 32.5220888	total: 128ms	remaining: 365ms
26:	learn: 32.2172292	total: 136ms	remaining: 366ms
27:	learn: 31.8972904	total: 141ms	remaining: 363ms
28:	learn: 31.6405350	total: 147ms	remaining: 359ms
29:	learn: 31.4167702	total: 152ms	remaining: 355ms
30:	learn: 30.8541961	total: 154ms	remaining: 343ms
31:	learn: 30.5572111	total: 159ms	remaining: 339ms
32:	learn: 30.1700399	total: 165ms	remaining: 335ms
33:	learn: 29.8537271	total: 170ms	remaining: 330ms
34:	learn: 29.6192540	total: 175ms	remaining: 325ms
35:	learn: 29.3276362	total: 180ms	remaining: 321ms
36:	learn: 28.9985179	total: 186ms	remaining: 316ms
37:	learn: 28.7046880	total: 191ms	remaining: 311ms
38:	learn: 28.4412677	total: 195ms	remaining: 305ms
39:	learn: 28.1277292	total: 201ms	remaining: 302ms
40:	learn: 27.9000750	total: 207ms	remaining: 297ms
41:	learn: 27.5433162	total: 211ms	remaining: 291ms
42:	learn: 27.2493285	total: 215ms	remaining: 285ms
43:	learn: 26.9576632	total: 217ms	remaining: 276ms
44:	learn: 26.6177110	total: 221ms	remaining: 270ms
45:	learn: 26.2812456	total: 226ms	remaining: 265ms
46:	learn: 26.0803859	total: 230ms	remaining: 260ms
47:	learn: 25.9543581	total: 235ms	remaining: 255ms
48:	learn: 25.7951582	total: 240ms	remaining: 250ms
49:	learn: 25.6548184	total: 245ms	remaining: 245ms
50:	learn: 25.4010843	total: 250ms	remaining: 240ms
51:	learn: 24.9773937	total: 255ms	remaining: 235ms
52:	learn: 24.8026156	total: 260ms	remaining: 230ms
53:	learn: 24.5568053	total: 264ms	remaining: 225ms
54:	learn: 24.2281839	total: 269ms	remaining: 220ms
55:	learn: 23.9202795	total: 274ms	remaining: 215ms
56:	learn: 23.7625591	total: 278ms	remaining: 210ms
57:	learn: 23.5429721	total: 283ms	remaining: 205ms
58:	learn: 23.3175893	total: 288ms	remaining: 200ms
59:	learn: 23.2035130	total: 292ms	remaining: 195ms
60:	learn: 23.0232450	total: 297ms	remaining: 190ms
61:	learn: 22.8384958	total: 305ms	remaining: 187ms
62:	learn: 22.6499902	total: 312ms	remaining: 183ms
63:	learn: 22.4577426	total: 321ms	remaining: 181ms
64:	learn: 22.3333158	total: 328ms	remaining: 177ms
65:	learn: 22.2064131	total: 333ms	remaining: 172ms
66:	learn: 22.1434971	total: 339ms	remaining: 167ms
67:	learn: 21.9596519	total: 344ms	remaining: 162ms
68:	learn: 21.8475576	total: 350ms	remaining: 157ms
69:	learn: 21.6954745	total: 355ms	remaining: 152ms
70:	learn: 21.5635976	total: 361ms	remaining: 147ms
71:	learn: 21.4588506	total: 365ms	remaining: 142ms
72:	learn: 21.3527268	total: 370ms	remaining: 137ms
73:	learn: 21.2661288	total: 376ms	remaining: 132ms
74:	learn: 21.1817333	total: 380ms	remaining: 127ms
75:	learn: 21.0527553	total: 385ms	remaining: 122ms
76:	learn: 20.9229021	total: 391ms	remaining: 117ms
77:	learn: 20.7563946	total: 396ms	remaining: 112ms
78:	learn: 20.6569831	total: 401ms	remaining: 107ms
79:	learn: 20.4982663	total: 405ms	remaining: 101ms
80:	learn: 20.3185460	total: 410ms	remaining: 96.1ms
81:	learn: 20.2096241	total: 414ms	remaining: 90.9ms
82:	learn: 20.1274891	total: 418ms	remaining: 85.7ms
83:	learn: 20.0740139	total: 423ms	remaining: 80.5ms
84:	learn: 19.9630699	total: 427ms	remaining: 75.4ms
85:	learn: 19.8753899	total: 431ms	remaining: 70.2ms
86:	learn: 19.6563612	total: 436ms	remaining: 65.1ms
87:	learn: 19.4680232	total: 440ms	remaining: 59.9ms
88:	learn: 19.3503431	total: 444ms	remaining: 54.9ms
89:	learn: 19.2221379	total: 448ms	remaining: 49.8ms
90:	learn: 19.0732542	total: 452ms	remaining: 44.7ms
91:	learn: 18.9825190	total: 457ms	remaining: 39.7ms
92:	learn: 18.8839009	total: 462ms	remaining: 34.7ms
93:	learn: 18.8012219	total: 466ms	remaining: 29.7ms
94:	learn: 18.7172713	total: 470ms	remaining: 24.8ms
95:	learn: 18.6201170	total: 475ms	remaining: 19.8ms
96:	learn: 18.5318611	total: 479ms	remaining: 14.8ms
97:	learn: 18.3833356	total: 484ms	remaining: 9.87ms
98:	learn: 18.3289700	total: 488ms	remaining: 4.93ms
99:	learn: 18.2227333	total: 492ms	remaining: 0us
0:	learn: 46.3764524	total: 5.24ms	remaining: 519ms
1:	learn: 45.5561269	total: 10.2ms	remaining: 498ms
2:	learn: 44.8811245	total: 15.1ms	remaining: 489ms
3:	learn: 44.0788617	total: 20.4ms	remaining: 489ms
4:	learn: 43.3619790	total: 26.1ms	remaining: 497ms
5:	learn: 42.6912112	total: 31.1ms	remaining: 487ms
6:	learn: 42.2292118	total: 35.7ms	remaining: 475ms
7:	learn: 41.7725191	total: 40.8ms	remaining: 469ms
8:	learn: 41.1676614	total: 46.2ms	remaining: 467ms
9:	learn: 40.5771076	total: 51ms	remaining: 459ms
10:	learn: 39.8343757	total: 55.2ms	remaining: 447ms
11:	learn: 39.3761142	total: 59.6ms	remaining: 437ms
12:	learn: 38.5254692	total: 63.7ms	remaining: 426ms
13:	learn: 37.9629555	total: 67.5ms	remaining: 415ms
14:	learn: 37.4418438	total: 71.3ms	remaining: 404ms
15:	learn: 37.0507283	total: 75.4ms	remaining: 396ms
16:	learn: 36.6264217	total: 79.2ms	remaining: 387ms
17:	learn: 36.1114940	total: 83.1ms	remaining: 379ms
18:	learn: 35.7193862	total: 86.9ms	remaining: 371ms
19:	learn: 35.3301177	total: 91ms	remaining: 364ms
20:	learn: 35.0598280	total: 95.3ms	remaining: 359ms
21:	learn: 34.5469736	total: 99.4ms	remaining: 352ms
22:	learn: 34.2064215	total: 103ms	remaining: 346ms
23:	learn: 33.7280710	total: 107ms	remaining: 340ms
24:	learn: 33.3282940	total: 112ms	remaining: 335ms
25:	learn: 32.8478961	total: 116ms	remaining: 330ms
26:	learn: 32.5722164	total: 121ms	remaining: 326ms
27:	learn: 32.2457019	total: 125ms	remaining: 322ms
28:	learn: 31.9230495	total: 130ms	remaining: 319ms
29:	learn: 31.4311611	total: 135ms	remaining: 314ms
30:	learn: 30.9179052	total: 139ms	remaining: 310ms
31:	learn: 30.6201141	total: 144ms	remaining: 305ms
32:	learn: 30.3421106	total: 148ms	remaining: 301ms
33:	learn: 29.9885373	total: 153ms	remaining: 297ms
34:	learn: 29.7462780	total: 160ms	remaining: 297ms
35:	learn: 29.3607153	total: 168ms	remaining: 299ms
36:	learn: 29.1793078	total: 178ms	remaining: 302ms
37:	learn: 28.9276538	total: 184ms	remaining: 300ms
38:	learn: 28.6903934	total: 191ms	remaining: 299ms
39:	learn: 28.2095033	total: 196ms	remaining: 294ms
40:	learn: 27.7990608	total: 202ms	remaining: 290ms
41:	learn: 27.5406632	total: 206ms	remaining: 285ms
42:	learn: 27.2575376	total: 212ms	remaining: 281ms
43:	learn: 26.9741707	total: 217ms	remaining: 276ms
44:	learn: 26.6606899	total: 222ms	remaining: 272ms
45:	learn: 26.4015833	total: 227ms	remaining: 266ms
46:	learn: 26.1828993	total: 232ms	remaining: 262ms
47:	learn: 26.0233709	total: 235ms	remaining: 255ms
48:	learn: 25.9300399	total: 240ms	remaining: 250ms
49:	learn: 25.5861489	total: 245ms	remaining: 245ms
50:	learn: 25.4322012	total: 250ms	remaining: 241ms
51:	learn: 25.1595644	total: 256ms	remaining: 236ms
52:	learn: 24.9955303	total: 260ms	remaining: 231ms
53:	learn: 24.7273966	total: 264ms	remaining: 225ms
54:	learn: 24.5747978	total: 268ms	remaining: 219ms
55:	learn: 24.3807977	total: 272ms	remaining: 214ms
56:	learn: 24.1689569	total: 276ms	remaining: 208ms
57:	learn: 23.9898221	total: 280ms	remaining: 203ms
58:	learn: 23.7566414	total: 284ms	remaining: 197ms
59:	learn: 23.6641165	total: 288ms	remaining: 192ms
60:	learn: 23.5658066	total: 292ms	remaining: 186ms
61:	learn: 23.4338851	total: 295ms	remaining: 181ms
62:	learn: 23.2408837	total: 299ms	remaining: 176ms
63:	learn: 23.0642038	total: 304ms	remaining: 171ms
64:	learn: 22.9032045	total: 308ms	remaining: 166ms
65:	learn: 22.7736138	total: 312ms	remaining: 161ms
66:	learn: 22.6836443	total: 316ms	remaining: 155ms
67:	learn: 22.5983654	total: 320ms	remaining: 151ms
68:	learn: 22.4419813	total: 325ms	remaining: 146ms
69:	learn: 22.2863339	total: 329ms	remaining: 141ms
70:	learn: 22.1792943	total: 334ms	remaining: 136ms
71:	learn: 22.1130574	total: 339ms	remaining: 132ms
72:	learn: 21.9858161	total: 343ms	remaining: 127ms
73:	learn: 21.8577784	total: 347ms	remaining: 122ms
74:	learn: 21.7845222	total: 352ms	remaining: 117ms
75:	learn: 21.6831390	total: 360ms	remaining: 114ms
76:	learn: 21.6292521	total: 367ms	remaining: 110ms
77:	learn: 21.5789330	total: 375ms	remaining: 106ms
78:	learn: 21.5420942	total: 381ms	remaining: 101ms
79:	learn: 21.4280939	total: 387ms	remaining: 96.7ms
80:	learn: 21.3641165	total: 392ms	remaining: 92ms
81:	learn: 21.2734814	total: 397ms	remaining: 87.2ms
82:	learn: 21.2220323	total: 402ms	remaining: 82.4ms
83:	learn: 21.0625792	total: 408ms	remaining: 77.6ms
84:	learn: 20.9488320	total: 413ms	remaining: 72.8ms
85:	learn: 20.8504255	total: 417ms	remaining: 67.9ms
86:	learn: 20.7848510	total: 422ms	remaining: 63.1ms
87:	learn: 20.7247442	total: 427ms	remaining: 58.2ms
88:	learn: 20.5698590	total: 432ms	remaining: 53.4ms
89:	learn: 20.4067620	total: 437ms	remaining: 48.5ms
90:	learn: 20.3062482	total: 442ms	remaining: 43.7ms
91:	learn: 20.2029696	total: 448ms	remaining: 39ms
92:	learn: 20.1384849	total: 454ms	remaining: 34.2ms
93:	learn: 20.0260709	total: 458ms	remaining: 29.3ms
94:	learn: 19.9122100	total: 463ms	remaining: 24.3ms
95:	learn: 19.8648487	total: 467ms	remaining: 19.4ms
96:	learn: 19.8207072	total: 471ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 474ms	remaining: 9.68ms
98:	learn: 19.7042438	total: 478ms	remaining: 4.83ms
99:	learn: 19.6546645	total: 482ms	remaining: 0us
0:	learn: 47.0239288	total: 4.97ms	remaining: 492ms
1:	learn: 46.2253829	total: 9.52ms	remaining: 467ms
2:	learn: 45.5580301	total: 14.1ms	remaining: 456ms
3:	learn: 44.7273237	total: 19ms	remaining: 456ms
4:	learn: 43.8867421	total: 23.9ms	remaining: 454ms
5:	learn: 43.3615911	total: 40.9ms	remaining: 641ms
6:	learn: 42.8548390	total: 50.9ms	remaining: 676ms
7:	learn: 42.1606758	total: 57.8ms	remaining: 665ms
8:	learn: 41.6625870	total: 63.6ms	remaining: 643ms
9:	learn: 40.9497092	total: 69.1ms	remaining: 622ms
10:	learn: 40.1886318	total: 74.4ms	remaining: 602ms
11:	learn: 39.7456423	total: 79.6ms	remaining: 584ms
12:	learn: 39.1171373	total: 85ms	remaining: 569ms
13:	learn: 38.5451069	total: 90.5ms	remaining: 556ms
14:	learn: 38.0155834	total: 101ms	remaining: 573ms
15:	learn: 37.5631354	total: 106ms	remaining: 558ms
16:	learn: 37.1030023	total: 112ms	remaining: 545ms
17:	learn: 36.4563029	total: 116ms	remaining: 529ms
18:	learn: 36.0160976	total: 121ms	remaining: 517ms
19:	learn: 35.5079827	total: 127ms	remaining: 507ms
20:	learn: 35.2111885	total: 132ms	remaining: 496ms
21:	learn: 34.9397465	total: 137ms	remaining: 486ms
22:	learn: 34.5270048	total: 142ms	remaining: 475ms
23:	learn: 34.0169260	total: 147ms	remaining: 465ms
24:	learn: 33.7454892	total: 151ms	remaining: 453ms
25:	learn: 33.2648157	total: 156ms	remaining: 443ms
26:	learn: 32.8899427	total: 161ms	remaining: 434ms
27:	learn: 32.6185050	total: 165ms	remaining: 424ms
28:	learn: 32.3528531	total: 169ms	remaining: 414ms
29:	learn: 32.0859923	total: 173ms	remaining: 405ms
30:	learn: 31.6511144	total: 178ms	remaining: 396ms
31:	learn: 31.2571765	total: 182ms	remaining: 387ms
32:	learn: 30.9770049	total: 186ms	remaining: 378ms
33:	learn: 30.6084872	total: 190ms	remaining: 369ms
34:	learn: 30.3448632	total: 195ms	remaining: 362ms
35:	learn: 30.0360942	total: 199ms	remaining: 354ms
36:	learn: 29.6648968	total: 203ms	remaining: 346ms
37:	learn: 29.3165114	total: 208ms	remaining: 339ms
38:	learn: 29.0829198	total: 212ms	remaining: 332ms
39:	learn: 28.7752064	total: 216ms	remaining: 325ms
40:	learn: 28.3622191	total: 221ms	remaining: 318ms
41:	learn: 28.1346631	total: 225ms	remaining: 311ms
42:	learn: 27.9585719	total: 229ms	remaining: 304ms
43:	learn: 27.6565566	total: 234ms	remaining: 298ms
44:	learn: 27.3616172	total: 238ms	remaining: 291ms
45:	learn: 27.0658637	total: 243ms	remaining: 285ms
46:	learn: 26.8660382	total: 247ms	remaining: 279ms
47:	learn: 26.6536078	total: 252ms	remaining: 273ms
48:	learn: 26.3524440	total: 256ms	remaining: 267ms
49:	learn: 26.1595277	total: 261ms	remaining: 261ms
50:	learn: 25.9273523	total: 269ms	remaining: 259ms
51:	learn: 25.7195580	total: 277ms	remaining: 256ms
52:	learn: 25.5730225	total: 285ms	remaining: 253ms
53:	learn: 25.3455276	total: 292ms	remaining: 249ms
54:	learn: 25.2289675	total: 297ms	remaining: 243ms
55:	learn: 25.0133024	total: 302ms	remaining: 238ms
56:	learn: 24.8406714	total: 308ms	remaining: 232ms
57:	learn: 24.6367857	total: 312ms	remaining: 226ms
58:	learn: 24.5338177	total: 318ms	remaining: 221ms
59:	learn: 24.3799964	total: 322ms	remaining: 215ms
60:	learn: 24.1447492	total: 328ms	remaining: 209ms
61:	learn: 23.9880495	total: 333ms	remaining: 204ms
62:	learn: 23.7140630	total: 338ms	remaining: 198ms
63:	learn: 23.5003791	total: 343ms	remaining: 193ms
64:	learn: 23.3207645	total: 348ms	remaining: 187ms
65:	learn: 23.1958356	total: 352ms	remaining: 182ms
66:	learn: 23.0471302	total: 358ms	remaining: 176ms
67:	learn: 22.8977183	total: 363ms	remaining: 171ms
68:	learn: 22.7187400	total: 368ms	remaining: 165ms
69:	learn: 22.6523405	total: 372ms	remaining: 159ms
70:	learn: 22.4767453	total: 376ms	remaining: 154ms
71:	learn: 22.3243677	total: 380ms	remaining: 148ms
72:	learn: 22.2133096	total: 383ms	remaining: 142ms
73:	learn: 22.1151713	total: 387ms	remaining: 136ms
74:	learn: 22.0296666	total: 391ms	remaining: 130ms
75:	learn: 21.9195980	total: 395ms	remaining: 125ms
76:	learn: 21.8401730	total: 399ms	remaining: 119ms
77:	learn: 21.8079797	total: 403ms	remaining: 114ms
78:	learn: 21.7274109	total: 407ms	remaining: 108ms
79:	learn: 21.6663032	total: 411ms	remaining: 103ms
80:	learn: 21.5633117	total: 414ms	remaining: 97.2ms
81:	learn: 21.4542467	total: 418ms	remaining: 91.8ms
82:	learn: 21.3177957	total: 423ms	remaining: 86.6ms
83:	learn: 21.1289167	total: 427ms	remaining: 81.4ms
84:	learn: 21.0297368	total: 432ms	remaining: 76.2ms
85:	learn: 20.9089564	total: 436ms	remaining: 71ms
86:	learn: 20.7653988	total: 441ms	remaining: 65.9ms
87:	learn: 20.6521894	total: 445ms	remaining: 60.7ms
88:	learn: 20.5193021	total: 450ms	remaining: 55.6ms
89:	learn: 20.4361620	total: 455ms	remaining: 50.5ms
90:	learn: 20.3546710	total: 460ms	remaining: 45.5ms
91:	learn: 20.2513296	total: 468ms	remaining: 40.7ms
92:	learn: 20.1605550	total: 475ms	remaining: 35.7ms
93:	learn: 20.0515942	total: 483ms	remaining: 30.8ms
94:	learn: 19.9800764	total: 489ms	remaining: 25.7ms
95:	learn: 19.8996532	total: 496ms	remaining: 20.6ms
96:	learn: 19.8450910	total: 501ms	remaining: 15.5ms
97:	learn: 19.7887346	total: 505ms	remaining: 10.3ms
98:	learn: 19.7230872	total: 511ms	remaining: 5.16ms
99:	learn: 19.6328825	total: 516ms	remaining: 0us
0:	learn: 27.5585353	total: 4.63ms	remaining: 459ms
1:	learn: 27.1656995	total: 8.4ms	remaining: 412ms
2:	learn: 26.8590175	total: 12.2ms	remaining: 396ms
3:	learn: 26.5818406	total: 16.2ms	remaining: 388ms
4:	learn: 26.1148663	total: 20.4ms	remaining: 387ms
5:	learn: 25.7690484	total: 24.3ms	remaining: 381ms
6:	learn: 25.3489206	total: 28.2ms	remaining: 375ms
7:	learn: 24.9542406	total: 32.3ms	remaining: 371ms
8:	learn: 24.6777517	total: 36.7ms	remaining: 371ms
9:	learn: 24.3242344	total: 40.7ms	remaining: 366ms
10:	learn: 24.0383073	total: 44.6ms	remaining: 361ms
11:	learn: 23.7383420	total: 49ms	remaining: 359ms
12:	learn: 23.3461670	total: 53ms	remaining: 355ms
13:	learn: 23.0928636	total: 57ms	remaining: 350ms
14:	learn: 22.8770414	total: 60.9ms	remaining: 345ms
15:	learn: 22.6323214	total: 65.3ms	remaining: 343ms
16:	learn: 22.3597072	total: 70.1ms	remaining: 342ms
17:	learn: 22.1079813	total: 74.5ms	remaining: 339ms
18:	learn: 21.8421199	total: 78.7ms	remaining: 336ms
19:	learn: 21.6576508	total: 83.5ms	remaining: 334ms
20:	learn: 21.4301268	total: 87.9ms	remaining: 331ms
21:	learn: 21.2287388	total: 92.6ms	remaining: 328ms
22:	learn: 21.0553872	total: 97.1ms	remaining: 325ms
23:	learn: 20.8977091	total: 103ms	remaining: 327ms
24:	learn: 20.6619051	total: 111ms	remaining: 333ms
25:	learn: 20.5040955	total: 119ms	remaining: 338ms
26:	learn: 20.3181195	total: 126ms	remaining: 342ms
27:	learn: 20.0869436	total: 134ms	remaining: 343ms
28:	learn: 19.9375985	total: 139ms	remaining: 339ms
29:	learn: 19.8247516	total: 144ms	remaining: 336ms
30:	learn: 19.6261697	total: 149ms	remaining: 331ms
31:	learn: 19.4547236	total: 154ms	remaining: 326ms
32:	learn: 19.3157092	total: 159ms	remaining: 322ms
33:	learn: 19.1561419	total: 164ms	remaining: 318ms
34:	learn: 19.0453620	total: 169ms	remaining: 313ms
35:	learn: 18.8738574	total: 174ms	remaining: 309ms
36:	learn: 18.7072907	total: 179ms	remaining: 305ms
37:	learn: 18.5877943	total: 184ms	remaining: 300ms
38:	learn: 18.4436380	total: 189ms	remaining: 296ms
39:	learn: 18.3463356	total: 194ms	remaining: 291ms
40:	learn: 18.2008059	total: 199ms	remaining: 287ms
41:	learn: 18.0582079	total: 205ms	remaining: 283ms
42:	learn: 17.8891982	total: 210ms	remaining: 279ms
43:	learn: 17.7332246	total: 215ms	remaining: 273ms
44:	learn: 17.6206421	total: 219ms	remaining: 268ms
45:	learn: 17.4982800	total: 223ms	remaining: 262ms
46:	learn: 17.3970150	total: 227ms	remaining: 256ms
47:	learn: 17.3058203	total: 231ms	remaining: 251ms
48:	learn: 17.1789256	total: 235ms	remaining: 245ms
49:	learn: 17.0916229	total: 239ms	remaining: 239ms
50:	learn: 16.9859820	total: 243ms	remaining: 234ms
51:	learn: 16.8995582	total: 248ms	remaining: 229ms
52:	learn: 16.8137014	total: 252ms	remaining: 224ms
53:	learn: 16.7021451	total: 256ms	remaining: 218ms
54:	learn: 16.5895582	total: 261ms	remaining: 213ms
55:	learn: 16.5015639	total: 265ms	remaining: 208ms
56:	learn: 16.4356637	total: 270ms	remaining: 203ms
57:	learn: 16.3514525	total: 274ms	remaining: 198ms
58:	learn: 16.2401369	total: 279ms	remaining: 194ms
59:	learn: 16.1293223	total: 283ms	remaining: 189ms
60:	learn: 16.0271167	total: 288ms	remaining: 184ms
61:	learn: 15.9126257	total: 292ms	remaining: 179ms
62:	learn: 15.8391096	total: 297ms	remaining: 174ms
63:	learn: 15.7441773	total: 305ms	remaining: 171ms
64:	learn: 15.6885195	total: 312ms	remaining: 168ms
65:	learn: 15.6052039	total: 319ms	remaining: 165ms
66:	learn: 15.5074202	total: 326ms	remaining: 161ms
67:	learn: 15.4054338	total: 334ms	remaining: 157ms
68:	learn: 15.2885714	total: 340ms	remaining: 153ms
69:	learn: 15.2157472	total: 344ms	remaining: 148ms
70:	learn: 15.1031554	total: 349ms	remaining: 143ms
71:	learn: 15.0237470	total: 355ms	remaining: 138ms
72:	learn: 14.9756825	total: 360ms	remaining: 133ms
73:	learn: 14.8840596	total: 366ms	remaining: 129ms
74:	learn: 14.8077061	total: 372ms	remaining: 124ms
75:	learn: 14.7444437	total: 377ms	remaining: 119ms
76:	learn: 14.6751720	total: 382ms	remaining: 114ms
77:	learn: 14.5830333	total: 387ms	remaining: 109ms
78:	learn: 14.5241206	total: 392ms	remaining: 104ms
79:	learn: 14.4892731	total: 397ms	remaining: 99.3ms
80:	learn: 14.4256605	total: 403ms	remaining: 94.6ms
81:	learn: 14.3666860	total: 408ms	remaining: 89.5ms
82:	learn: 14.2938372	total: 412ms	remaining: 84.4ms
83:	learn: 14.2161532	total: 416ms	remaining: 79.3ms
84:	learn: 14.1582910	total: 420ms	remaining: 74.2ms
85:	learn: 14.1029153	total: 425ms	remaining: 69.2ms
86:	learn: 14.0475835	total: 429ms	remaining: 64.1ms
87:	learn: 13.9892661	total: 433ms	remaining: 59.1ms
88:	learn: 13.9481628	total: 438ms	remaining: 54.1ms
89:	learn: 13.8483991	total: 442ms	remaining: 49.1ms
90:	learn: 13.7775614	total: 447ms	remaining: 44.2ms
91:	learn: 13.7304585	total: 451ms	remaining: 39.2ms
92:	learn: 13.6783381	total: 455ms	remaining: 34.3ms
93:	learn: 13.6356964	total: 459ms	remaining: 29.3ms
94:	learn: 13.5924371	total: 464ms	remaining: 24.4ms
95:	learn: 13.5400746	total: 468ms	remaining: 19.5ms
96:	learn: 13.4897333	total: 473ms	remaining: 14.6ms
97:	learn: 13.4470321	total: 478ms	remaining: 9.75ms
98:	learn: 13.3856082	total: 482ms	remaining: 4.87ms
99:	learn: 13.3082371	total: 487ms	remaining: 0us
0:	learn: 43.0395283	total: 5.78ms	remaining: 573ms
1:	learn: 42.1130223	total: 11.2ms	remaining: 549ms
2:	learn: 41.1753409	total: 16.8ms	remaining: 543ms
3:	learn: 40.3637444	total: 22.1ms	remaining: 531ms
4:	learn: 39.6508088	total: 27.6ms	remaining: 524ms
5:	learn: 38.7217934	total: 33.4ms	remaining: 523ms
6:	learn: 37.8538055	total: 39.1ms	remaining: 519ms
7:	learn: 36.9793574	total: 44.5ms	remaining: 511ms
8:	learn: 36.3076984	total: 49.4ms	remaining: 499ms
9:	learn: 35.6673160	total: 54.4ms	remaining: 490ms
10:	learn: 34.8889800	total: 59.8ms	remaining: 484ms
11:	learn: 34.1675517	total: 65.1ms	remaining: 477ms
12:	learn: 33.6779564	total: 69.5ms	remaining: 465ms
13:	learn: 33.0710039	total: 74.1ms	remaining: 455ms
14:	learn: 32.4966674	total: 78.3ms	remaining: 444ms
15:	learn: 31.9492856	total: 83ms	remaining: 436ms
16:	learn: 31.5108129	total: 87.2ms	remaining: 426ms
17:	learn: 30.9804023	total: 91.3ms	remaining: 416ms
18:	learn: 30.4169089	total: 95.5ms	remaining: 407ms
19:	learn: 29.8930375	total: 100ms	remaining: 400ms
20:	learn: 29.3974421	total: 104ms	remaining: 393ms
21:	learn: 28.8792307	total: 109ms	remaining: 385ms
22:	learn: 28.3894474	total: 112ms	remaining: 376ms
23:	learn: 27.9921276	total: 117ms	remaining: 370ms
24:	learn: 27.6158887	total: 121ms	remaining: 364ms
25:	learn: 27.2866950	total: 126ms	remaining: 358ms
26:	learn: 26.8770708	total: 130ms	remaining: 352ms
27:	learn: 26.6233005	total: 134ms	remaining: 346ms
28:	learn: 26.2921934	total: 139ms	remaining: 340ms
29:	learn: 25.9156920	total: 143ms	remaining: 335ms
30:	learn: 25.5311106	total: 145ms	remaining: 323ms
31:	learn: 25.2178997	total: 149ms	remaining: 318ms
32:	learn: 24.8572196	total: 155ms	remaining: 315ms
33:	learn: 24.5849710	total: 163ms	remaining: 316ms
34:	learn: 24.2209190	total: 170ms	remaining: 316ms
35:	learn: 23.8708250	total: 178ms	remaining: 316ms
36:	learn: 23.5325279	total: 185ms	remaining: 315ms
37:	learn: 23.2116148	total: 190ms	remaining: 310ms
38:	learn: 22.9696787	total: 196ms	remaining: 306ms
39:	learn: 22.7936783	total: 201ms	remaining: 301ms
40:	learn: 22.6228847	total: 206ms	remaining: 296ms
41:	learn: 22.3691527	total: 211ms	remaining: 292ms
42:	learn: 22.1002173	total: 217ms	remaining: 287ms
43:	learn: 21.9157268	total: 222ms	remaining: 282ms
44:	learn: 21.7229102	total: 227ms	remaining: 277ms
45:	learn: 21.4642005	total: 232ms	remaining: 272ms
46:	learn: 21.3029442	total: 237ms	remaining: 267ms
47:	learn: 21.1469792	total: 241ms	remaining: 262ms
48:	learn: 20.9458235	total: 246ms	remaining: 256ms
49:	learn: 20.7335242	total: 251ms	remaining: 251ms
50:	learn: 20.5440269	total: 257ms	remaining: 247ms
51:	learn: 20.3661449	total: 261ms	remaining: 241ms
52:	learn: 20.2158134	total: 265ms	remaining: 235ms
53:	learn: 19.9934873	total: 269ms	remaining: 229ms
54:	learn: 19.7879739	total: 275ms	remaining: 225ms
55:	learn: 19.6630460	total: 280ms	remaining: 220ms
56:	learn: 19.5152729	total: 285ms	remaining: 215ms
57:	learn: 19.3581128	total: 289ms	remaining: 210ms
58:	learn: 19.2209303	total: 294ms	remaining: 204ms
59:	learn: 19.0965248	total: 299ms	remaining: 200ms
60:	learn: 19.0035954	total: 304ms	remaining: 194ms
61:	learn: 18.8554149	total: 309ms	remaining: 189ms
62:	learn: 18.7095427	total: 313ms	remaining: 184ms
63:	learn: 18.5751494	total: 318ms	remaining: 179ms
64:	learn: 18.4678251	total: 323ms	remaining: 174ms
65:	learn: 18.3500325	total: 328ms	remaining: 169ms
66:	learn: 18.2088983	total: 333ms	remaining: 164ms
67:	learn: 18.0737705	total: 338ms	remaining: 159ms
68:	learn: 17.9325058	total: 343ms	remaining: 154ms
69:	learn: 17.8003911	total: 347ms	remaining: 149ms
70:	learn: 17.7385366	total: 353ms	remaining: 144ms
71:	learn: 17.6106998	total: 362ms	remaining: 141ms
72:	learn: 17.4816270	total: 370ms	remaining: 137ms
73:	learn: 17.4025554	total: 378ms	remaining: 133ms
74:	learn: 17.2902108	total: 386ms	remaining: 129ms
75:	learn: 17.2158048	total: 392ms	remaining: 124ms
76:	learn: 17.1261053	total: 397ms	remaining: 119ms
77:	learn: 17.0308917	total: 403ms	remaining: 114ms
78:	learn: 16.9546705	total: 409ms	remaining: 109ms
79:	learn: 16.8319165	total: 415ms	remaining: 104ms
80:	learn: 16.7687017	total: 421ms	remaining: 98.7ms
81:	learn: 16.6972326	total: 426ms	remaining: 93.6ms
82:	learn: 16.6124580	total: 432ms	remaining: 88.5ms
83:	learn: 16.4999052	total: 438ms	remaining: 83.4ms
84:	learn: 16.4302484	total: 443ms	remaining: 78.2ms
85:	learn: 16.3201363	total: 448ms	remaining: 73ms
86:	learn: 16.2534314	total: 454ms	remaining: 67.9ms
87:	learn: 16.1720485	total: 461ms	remaining: 62.8ms
88:	learn: 16.0625751	total: 465ms	remaining: 57.5ms
89:	learn: 15.9135088	total: 470ms	remaining: 52.2ms
90:	learn: 15.8658863	total: 475ms	remaining: 47ms
91:	learn: 15.8066805	total: 479ms	remaining: 41.7ms
92:	learn: 15.7412103	total: 484ms	remaining: 36.4ms
93:	learn: 15.6542776	total: 488ms	remaining: 31.2ms
94:	learn: 15.5760334	total: 492ms	remaining: 25.9ms
95:	learn: 15.5434131	total: 497ms	remaining: 20.7ms
96:	learn: 15.4709561	total: 502ms	remaining: 15.5ms
97:	learn: 15.4449618	total: 506ms	remaining: 10.3ms
98:	learn: 15.3752761	total: 511ms	remaining: 5.16ms
99:	learn: 15.3106595	total: 515ms	remaining: 0us
0:	learn: 46.7142257	total: 7.5ms	remaining: 743ms
1:	learn: 45.7634153	total: 14.6ms	remaining: 716ms
2:	learn: 45.0054253	total: 21.3ms	remaining: 687ms
3:	learn: 44.2120432	total: 29ms	remaining: 695ms
4:	learn: 43.3960472	total: 34.7ms	remaining: 660ms
5:	learn: 42.8588120	total: 39.7ms	remaining: 622ms
6:	learn: 41.9533701	total: 57.7ms	remaining: 767ms
7:	learn: 41.2745030	total: 63ms	remaining: 725ms
8:	learn: 40.6797495	total: 75ms	remaining: 758ms
9:	learn: 39.9899571	total: 80.5ms	remaining: 724ms
10:	learn: 39.4682100	total: 85.3ms	remaining: 690ms
11:	learn: 39.0305595	total: 91.1ms	remaining: 668ms
12:	learn: 38.4200417	total: 96.9ms	remaining: 649ms
13:	learn: 37.8425194	total: 102ms	remaining: 624ms
14:	learn: 37.4203127	total: 106ms	remaining: 602ms
15:	learn: 36.9917688	total: 111ms	remaining: 582ms
16:	learn: 36.5544138	total: 116ms	remaining: 566ms
17:	learn: 36.0727019	total: 121ms	remaining: 552ms
18:	learn: 35.4835715	total: 126ms	remaining: 536ms
19:	learn: 34.9865654	total: 131ms	remaining: 523ms
20:	learn: 34.6063373	total: 136ms	remaining: 510ms
21:	learn: 34.0997289	total: 140ms	remaining: 497ms
22:	learn: 33.7313171	total: 145ms	remaining: 487ms
23:	learn: 33.3582000	total: 150ms	remaining: 476ms
24:	learn: 32.9432456	total: 155ms	remaining: 464ms
25:	learn: 32.5220888	total: 159ms	remaining: 453ms
26:	learn: 32.2172292	total: 164ms	remaining: 442ms
27:	learn: 31.8972904	total: 168ms	remaining: 433ms
28:	learn: 31.6405350	total: 173ms	remaining: 424ms
29:	learn: 31.4167702	total: 177ms	remaining: 414ms
30:	learn: 30.8541961	total: 179ms	remaining: 399ms
31:	learn: 30.5572111	total: 184ms	remaining: 391ms
32:	learn: 30.1700399	total: 189ms	remaining: 383ms
33:	learn: 29.8537271	total: 193ms	remaining: 375ms
34:	learn: 29.6192540	total: 198ms	remaining: 368ms
35:	learn: 29.3276362	total: 206ms	remaining: 366ms
36:	learn: 28.9985179	total: 213ms	remaining: 363ms
37:	learn: 28.7046880	total: 222ms	remaining: 362ms
38:	learn: 28.4412677	total: 228ms	remaining: 356ms
39:	learn: 28.1277292	total: 235ms	remaining: 352ms
40:	learn: 27.9000750	total: 240ms	remaining: 346ms
41:	learn: 27.5433162	total: 245ms	remaining: 339ms
42:	learn: 27.2493285	total: 250ms	remaining: 332ms
43:	learn: 26.9576632	total: 252ms	remaining: 321ms
44:	learn: 26.6177110	total: 258ms	remaining: 316ms
45:	learn: 26.2812456	total: 264ms	remaining: 309ms
46:	learn: 26.0803859	total: 269ms	remaining: 303ms
47:	learn: 25.9543581	total: 274ms	remaining: 297ms
48:	learn: 25.7951582	total: 279ms	remaining: 290ms
49:	learn: 25.6548184	total: 284ms	remaining: 284ms
50:	learn: 25.4010843	total: 289ms	remaining: 277ms
51:	learn: 24.9773937	total: 294ms	remaining: 272ms
52:	learn: 24.8026156	total: 300ms	remaining: 266ms
53:	learn: 24.5568053	total: 305ms	remaining: 260ms
54:	learn: 24.2281839	total: 309ms	remaining: 253ms
55:	learn: 23.9202795	total: 313ms	remaining: 246ms
56:	learn: 23.7625591	total: 317ms	remaining: 239ms
57:	learn: 23.5429721	total: 322ms	remaining: 233ms
58:	learn: 23.3175893	total: 326ms	remaining: 227ms
59:	learn: 23.2035130	total: 330ms	remaining: 220ms
60:	learn: 23.0232450	total: 335ms	remaining: 214ms
61:	learn: 22.8384958	total: 339ms	remaining: 208ms
62:	learn: 22.6499902	total: 343ms	remaining: 202ms
63:	learn: 22.4577426	total: 348ms	remaining: 196ms
64:	learn: 22.3333158	total: 352ms	remaining: 190ms
65:	learn: 22.2064131	total: 356ms	remaining: 183ms
66:	learn: 22.1434971	total: 360ms	remaining: 178ms
67:	learn: 21.9596519	total: 365ms	remaining: 172ms
68:	learn: 21.8475576	total: 370ms	remaining: 166ms
69:	learn: 21.6954745	total: 375ms	remaining: 161ms
70:	learn: 21.5635976	total: 380ms	remaining: 155ms
71:	learn: 21.4588506	total: 384ms	remaining: 149ms
72:	learn: 21.3527268	total: 389ms	remaining: 144ms
73:	learn: 21.2661288	total: 393ms	remaining: 138ms
74:	learn: 21.1817333	total: 399ms	remaining: 133ms
75:	learn: 21.0527553	total: 409ms	remaining: 129ms
76:	learn: 20.9229021	total: 418ms	remaining: 125ms
77:	learn: 20.7563946	total: 427ms	remaining: 120ms
78:	learn: 20.6569831	total: 436ms	remaining: 116ms
79:	learn: 20.4982663	total: 442ms	remaining: 110ms
80:	learn: 20.3185460	total: 448ms	remaining: 105ms
81:	learn: 20.2096241	total: 454ms	remaining: 99.6ms
82:	learn: 20.1274891	total: 460ms	remaining: 94.2ms
83:	learn: 20.0740139	total: 465ms	remaining: 88.7ms
84:	learn: 19.9630699	total: 471ms	remaining: 83.2ms
85:	learn: 19.8753899	total: 476ms	remaining: 77.6ms
86:	learn: 19.6563612	total: 487ms	remaining: 72.8ms
87:	learn: 19.4680232	total: 492ms	remaining: 67ms
88:	learn: 19.3503431	total: 497ms	remaining: 61.4ms
89:	learn: 19.2221379	total: 503ms	remaining: 55.9ms
90:	learn: 19.0732542	total: 508ms	remaining: 50.3ms
91:	learn: 18.9825190	total: 513ms	remaining: 44.6ms
92:	learn: 18.8839009	total: 518ms	remaining: 39ms
93:	learn: 18.8012219	total: 523ms	remaining: 33.4ms
94:	learn: 18.7172713	total: 528ms	remaining: 27.8ms
95:	learn: 18.6201170	total: 532ms	remaining: 22.2ms
96:	learn: 18.5318611	total: 538ms	remaining: 16.6ms
97:	learn: 18.3833356	total: 542ms	remaining: 11.1ms
98:	learn: 18.3289700	total: 546ms	remaining: 5.52ms
99:	learn: 18.2227333	total: 551ms	remaining: 0us
0:	learn: 46.3764524	total: 5.02ms	remaining: 497ms
1:	learn: 45.5561269	total: 12ms	remaining: 588ms
2:	learn: 44.8811245	total: 19.7ms	remaining: 638ms
3:	learn: 44.0788617	total: 30.7ms	remaining: 736ms
4:	learn: 43.3619790	total: 36.7ms	remaining: 697ms
5:	learn: 42.6912112	total: 44.2ms	remaining: 692ms
6:	learn: 42.2292118	total: 49.8ms	remaining: 661ms
7:	learn: 41.7725191	total: 55.5ms	remaining: 639ms
8:	learn: 41.1676614	total: 60.6ms	remaining: 613ms
9:	learn: 40.5771076	total: 66.2ms	remaining: 596ms
10:	learn: 39.8343757	total: 71.6ms	remaining: 579ms
11:	learn: 39.3761142	total: 76.6ms	remaining: 562ms
12:	learn: 38.5254692	total: 83.8ms	remaining: 561ms
13:	learn: 37.9629555	total: 89.1ms	remaining: 547ms
14:	learn: 37.4418438	total: 94ms	remaining: 533ms
15:	learn: 37.0507283	total: 98.7ms	remaining: 518ms
16:	learn: 36.6264217	total: 104ms	remaining: 509ms
17:	learn: 36.1114940	total: 110ms	remaining: 501ms
18:	learn: 35.7193862	total: 114ms	remaining: 486ms
19:	learn: 35.3301177	total: 118ms	remaining: 474ms
20:	learn: 35.0598280	total: 123ms	remaining: 462ms
21:	learn: 34.5469736	total: 127ms	remaining: 451ms
22:	learn: 34.2064215	total: 132ms	remaining: 442ms
23:	learn: 33.7280710	total: 136ms	remaining: 431ms
24:	learn: 33.3282940	total: 141ms	remaining: 423ms
25:	learn: 32.8478961	total: 146ms	remaining: 414ms
26:	learn: 32.5722164	total: 150ms	remaining: 406ms
27:	learn: 32.2457019	total: 154ms	remaining: 397ms
28:	learn: 31.9230495	total: 159ms	remaining: 389ms
29:	learn: 31.4311611	total: 164ms	remaining: 382ms
30:	learn: 30.9179052	total: 168ms	remaining: 374ms
31:	learn: 30.6201141	total: 173ms	remaining: 367ms
32:	learn: 30.3421106	total: 177ms	remaining: 360ms
33:	learn: 29.9885373	total: 182ms	remaining: 353ms
34:	learn: 29.7462780	total: 186ms	remaining: 346ms
35:	learn: 29.3607153	total: 191ms	remaining: 339ms
36:	learn: 29.1793078	total: 196ms	remaining: 333ms
37:	learn: 28.9276538	total: 200ms	remaining: 326ms
38:	learn: 28.6903934	total: 205ms	remaining: 320ms
39:	learn: 28.2095033	total: 210ms	remaining: 315ms
40:	learn: 27.7990608	total: 219ms	remaining: 315ms
41:	learn: 27.5406632	total: 226ms	remaining: 312ms
42:	learn: 27.2575376	total: 234ms	remaining: 311ms
43:	learn: 26.9741707	total: 244ms	remaining: 310ms
44:	learn: 26.6606899	total: 249ms	remaining: 305ms
45:	learn: 26.4015833	total: 255ms	remaining: 299ms
46:	learn: 26.1828993	total: 260ms	remaining: 294ms
47:	learn: 26.0233709	total: 263ms	remaining: 285ms
48:	learn: 25.9300399	total: 268ms	remaining: 279ms
49:	learn: 25.5861489	total: 273ms	remaining: 273ms
50:	learn: 25.4322012	total: 279ms	remaining: 268ms
51:	learn: 25.1595644	total: 284ms	remaining: 262ms
52:	learn: 24.9955303	total: 289ms	remaining: 256ms
53:	learn: 24.7273966	total: 294ms	remaining: 251ms
54:	learn: 24.5747978	total: 299ms	remaining: 245ms
55:	learn: 24.3807977	total: 304ms	remaining: 239ms
56:	learn: 24.1689569	total: 309ms	remaining: 233ms
57:	learn: 23.9898221	total: 315ms	remaining: 228ms
58:	learn: 23.7566414	total: 320ms	remaining: 222ms
59:	learn: 23.6641165	total: 324ms	remaining: 216ms
60:	learn: 23.5658066	total: 328ms	remaining: 210ms
61:	learn: 23.4338851	total: 332ms	remaining: 203ms
62:	learn: 23.2408837	total: 335ms	remaining: 197ms
63:	learn: 23.0642038	total: 339ms	remaining: 191ms
64:	learn: 22.9032045	total: 344ms	remaining: 185ms
65:	learn: 22.7736138	total: 348ms	remaining: 179ms
66:	learn: 22.6836443	total: 352ms	remaining: 173ms
67:	learn: 22.5983654	total: 356ms	remaining: 167ms
68:	learn: 22.4419813	total: 360ms	remaining: 162ms
69:	learn: 22.2863339	total: 365ms	remaining: 156ms
70:	learn: 22.1792943	total: 368ms	remaining: 150ms
71:	learn: 22.1130574	total: 372ms	remaining: 145ms
72:	learn: 21.9858161	total: 377ms	remaining: 139ms
73:	learn: 21.8577784	total: 381ms	remaining: 134ms
74:	learn: 21.7845222	total: 386ms	remaining: 129ms
75:	learn: 21.6831390	total: 390ms	remaining: 123ms
76:	learn: 21.6292521	total: 394ms	remaining: 118ms
77:	learn: 21.5789330	total: 399ms	remaining: 113ms
78:	learn: 21.5420942	total: 403ms	remaining: 107ms
79:	learn: 21.4280939	total: 408ms	remaining: 102ms
80:	learn: 21.3641165	total: 413ms	remaining: 96.9ms
81:	learn: 21.2734814	total: 421ms	remaining: 92.5ms
82:	learn: 21.2220323	total: 429ms	remaining: 87.8ms
83:	learn: 21.0625792	total: 438ms	remaining: 83.4ms
84:	learn: 20.9488320	total: 445ms	remaining: 78.6ms
85:	learn: 20.8504255	total: 451ms	remaining: 73.4ms
86:	learn: 20.7848510	total: 456ms	remaining: 68.2ms
87:	learn: 20.7247442	total: 461ms	remaining: 62.9ms
88:	learn: 20.5698590	total: 466ms	remaining: 57.6ms
89:	learn: 20.4067620	total: 471ms	remaining: 52.4ms
90:	learn: 20.3062482	total: 476ms	remaining: 47.1ms
91:	learn: 20.2029696	total: 481ms	remaining: 41.9ms
92:	learn: 20.1384849	total: 487ms	remaining: 36.6ms
93:	learn: 20.0260709	total: 492ms	remaining: 31.4ms
94:	learn: 19.9122100	total: 497ms	remaining: 26.2ms
95:	learn: 19.8648487	total: 502ms	remaining: 20.9ms
96:	learn: 19.8207072	total: 507ms	remaining: 15.7ms
97:	learn: 19.7261189	total: 512ms	remaining: 10.4ms
98:	learn: 19.7042438	total: 516ms	remaining: 5.21ms
99:	learn: 19.6546645	total: 521ms	remaining: 0us
0:	learn: 47.0239288	total: 4.21ms	remaining: 417ms
1:	learn: 46.2253829	total: 7.8ms	remaining: 382ms
2:	learn: 45.5580301	total: 11.9ms	remaining: 384ms
3:	learn: 44.7273237	total: 16.3ms	remaining: 392ms
4:	learn: 43.8867421	total: 20.6ms	remaining: 391ms
5:	learn: 43.3615911	total: 24.8ms	remaining: 388ms
6:	learn: 42.8548390	total: 29.3ms	remaining: 389ms
7:	learn: 42.1606758	total: 33.6ms	remaining: 386ms
8:	learn: 41.6625870	total: 38.1ms	remaining: 385ms
9:	learn: 40.9497092	total: 42.7ms	remaining: 384ms
10:	learn: 40.1886318	total: 47.5ms	remaining: 385ms
11:	learn: 39.7456423	total: 54.5ms	remaining: 400ms
12:	learn: 39.1171373	total: 61.8ms	remaining: 413ms
13:	learn: 38.5451069	total: 69.3ms	remaining: 426ms
14:	learn: 38.0155834	total: 76.9ms	remaining: 436ms
15:	learn: 37.5631354	total: 83.9ms	remaining: 441ms
16:	learn: 37.1030023	total: 89ms	remaining: 435ms
17:	learn: 36.4563029	total: 94.1ms	remaining: 429ms
18:	learn: 36.0160976	total: 99.6ms	remaining: 425ms
19:	learn: 35.5079827	total: 105ms	remaining: 419ms
20:	learn: 35.2111885	total: 110ms	remaining: 414ms
21:	learn: 34.9397465	total: 116ms	remaining: 410ms
22:	learn: 34.5270048	total: 121ms	remaining: 405ms
23:	learn: 34.0169260	total: 126ms	remaining: 399ms
24:	learn: 33.7454892	total: 131ms	remaining: 393ms
25:	learn: 33.2648157	total: 136ms	remaining: 388ms
26:	learn: 32.8899427	total: 141ms	remaining: 382ms
27:	learn: 32.6185050	total: 147ms	remaining: 378ms
28:	learn: 32.3528531	total: 153ms	remaining: 374ms
29:	learn: 32.0859923	total: 157ms	remaining: 367ms
30:	learn: 31.6511144	total: 161ms	remaining: 359ms
31:	learn: 31.2571765	total: 165ms	remaining: 351ms
32:	learn: 30.9770049	total: 169ms	remaining: 344ms
33:	learn: 30.6084872	total: 173ms	remaining: 337ms
34:	learn: 30.3448632	total: 177ms	remaining: 329ms
35:	learn: 30.0360942	total: 182ms	remaining: 323ms
36:	learn: 29.6648968	total: 186ms	remaining: 317ms
37:	learn: 29.3165114	total: 191ms	remaining: 311ms
38:	learn: 29.0829198	total: 194ms	remaining: 304ms
39:	learn: 28.7752064	total: 199ms	remaining: 298ms
40:	learn: 28.3622191	total: 203ms	remaining: 292ms
41:	learn: 28.1346631	total: 208ms	remaining: 287ms
42:	learn: 27.9585719	total: 212ms	remaining: 281ms
43:	learn: 27.6565566	total: 216ms	remaining: 275ms
44:	learn: 27.3616172	total: 221ms	remaining: 270ms
45:	learn: 27.0658637	total: 225ms	remaining: 264ms
46:	learn: 26.8660382	total: 229ms	remaining: 258ms
47:	learn: 26.6536078	total: 233ms	remaining: 253ms
48:	learn: 26.3524440	total: 238ms	remaining: 248ms
49:	learn: 26.1595277	total: 243ms	remaining: 243ms
50:	learn: 25.9273523	total: 247ms	remaining: 237ms
51:	learn: 25.7195580	total: 251ms	remaining: 232ms
52:	learn: 25.5730225	total: 257ms	remaining: 228ms
53:	learn: 25.3455276	total: 262ms	remaining: 223ms
54:	learn: 25.2289675	total: 267ms	remaining: 219ms
55:	learn: 25.0133024	total: 279ms	remaining: 219ms
56:	learn: 24.8406714	total: 290ms	remaining: 219ms
57:	learn: 24.6367857	total: 298ms	remaining: 216ms
58:	learn: 24.5338177	total: 304ms	remaining: 211ms
59:	learn: 24.3799964	total: 324ms	remaining: 216ms
60:	learn: 24.1447492	total: 329ms	remaining: 210ms
61:	learn: 23.9880495	total: 334ms	remaining: 205ms
62:	learn: 23.7140630	total: 339ms	remaining: 199ms
63:	learn: 23.5003791	total: 344ms	remaining: 194ms
64:	learn: 23.3207645	total: 349ms	remaining: 188ms
65:	learn: 23.1958356	total: 354ms	remaining: 182ms
66:	learn: 23.0471302	total: 359ms	remaining: 177ms
67:	learn: 22.8977183	total: 365ms	remaining: 172ms
68:	learn: 22.7187400	total: 370ms	remaining: 166ms
69:	learn: 22.6523405	total: 374ms	remaining: 160ms
70:	learn: 22.4767453	total: 378ms	remaining: 154ms
71:	learn: 22.3243677	total: 381ms	remaining: 148ms
72:	learn: 22.2133096	total: 385ms	remaining: 142ms
73:	learn: 22.1151713	total: 389ms	remaining: 137ms
74:	learn: 22.0296666	total: 393ms	remaining: 131ms
75:	learn: 21.9195980	total: 397ms	remaining: 125ms
76:	learn: 21.8401730	total: 401ms	remaining: 120ms
77:	learn: 21.8079797	total: 405ms	remaining: 114ms
78:	learn: 21.7274109	total: 409ms	remaining: 109ms
79:	learn: 21.6663032	total: 413ms	remaining: 103ms
80:	learn: 21.5633117	total: 417ms	remaining: 97.9ms
81:	learn: 21.4542467	total: 422ms	remaining: 92.5ms
82:	learn: 21.3177957	total: 425ms	remaining: 87.1ms
83:	learn: 21.1289167	total: 430ms	remaining: 81.9ms
84:	learn: 21.0297368	total: 434ms	remaining: 76.7ms
85:	learn: 20.9089564	total: 439ms	remaining: 71.5ms
86:	learn: 20.7653988	total: 444ms	remaining: 66.3ms
87:	learn: 20.6521894	total: 448ms	remaining: 61.1ms
88:	learn: 20.5193021	total: 452ms	remaining: 55.9ms
89:	learn: 20.4361620	total: 457ms	remaining: 50.7ms
90:	learn: 20.3546710	total: 461ms	remaining: 45.6ms
91:	learn: 20.2513296	total: 468ms	remaining: 40.7ms
92:	learn: 20.1605550	total: 475ms	remaining: 35.8ms
93:	learn: 20.0515942	total: 483ms	remaining: 30.8ms
94:	learn: 19.9800764	total: 489ms	remaining: 25.8ms
95:	learn: 19.8996532	total: 497ms	remaining: 20.7ms
96:	learn: 19.8450910	total: 502ms	remaining: 15.5ms
97:	learn: 19.7887346	total: 507ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 512ms	remaining: 5.17ms
99:	learn: 19.6328825	total: 517ms	remaining: 0us
0:	learn: 27.5585353	total: 5.69ms	remaining: 563ms
1:	learn: 27.1656995	total: 9.56ms	remaining: 468ms
2:	learn: 26.8590175	total: 13.8ms	remaining: 445ms
3:	learn: 26.5818406	total: 17.8ms	remaining: 428ms
4:	learn: 26.1148663	total: 21.8ms	remaining: 415ms
5:	learn: 25.7690484	total: 25.6ms	remaining: 401ms
6:	learn: 25.3489206	total: 29.5ms	remaining: 392ms
7:	learn: 24.9542406	total: 33.9ms	remaining: 390ms
8:	learn: 24.6777517	total: 38ms	remaining: 385ms
9:	learn: 24.3242344	total: 42.1ms	remaining: 379ms
10:	learn: 24.0383073	total: 46.1ms	remaining: 373ms
11:	learn: 23.7383420	total: 49.8ms	remaining: 365ms
12:	learn: 23.3461670	total: 53.7ms	remaining: 359ms
13:	learn: 23.0928636	total: 57.3ms	remaining: 352ms
14:	learn: 22.8770414	total: 61.5ms	remaining: 349ms
15:	learn: 22.6323214	total: 65.7ms	remaining: 345ms
16:	learn: 22.3597072	total: 70.1ms	remaining: 342ms
17:	learn: 22.1079813	total: 74.1ms	remaining: 338ms
18:	learn: 21.8421199	total: 78.9ms	remaining: 337ms
19:	learn: 21.6576508	total: 83.5ms	remaining: 334ms
20:	learn: 21.4301268	total: 88.3ms	remaining: 332ms
21:	learn: 21.2287388	total: 92.9ms	remaining: 329ms
22:	learn: 21.0553872	total: 97.1ms	remaining: 325ms
23:	learn: 20.8977091	total: 101ms	remaining: 321ms
24:	learn: 20.6619051	total: 106ms	remaining: 317ms
25:	learn: 20.5040955	total: 111ms	remaining: 315ms
26:	learn: 20.3181195	total: 119ms	remaining: 322ms
27:	learn: 20.0869436	total: 126ms	remaining: 325ms
28:	learn: 19.9375985	total: 135ms	remaining: 329ms
29:	learn: 19.8247516	total: 142ms	remaining: 332ms
30:	learn: 19.6261697	total: 148ms	remaining: 329ms
31:	learn: 19.4547236	total: 153ms	remaining: 325ms
32:	learn: 19.3157092	total: 158ms	remaining: 321ms
33:	learn: 19.1561419	total: 164ms	remaining: 317ms
34:	learn: 19.0453620	total: 169ms	remaining: 313ms
35:	learn: 18.8738574	total: 174ms	remaining: 309ms
36:	learn: 18.7072907	total: 179ms	remaining: 304ms
37:	learn: 18.5877943	total: 184ms	remaining: 300ms
38:	learn: 18.4436380	total: 189ms	remaining: 296ms
39:	learn: 18.3463356	total: 194ms	remaining: 292ms
40:	learn: 18.2008059	total: 199ms	remaining: 286ms
41:	learn: 18.0582079	total: 204ms	remaining: 282ms
42:	learn: 17.8891982	total: 210ms	remaining: 278ms
43:	learn: 17.7332246	total: 215ms	remaining: 273ms
44:	learn: 17.6206421	total: 219ms	remaining: 267ms
45:	learn: 17.4982800	total: 223ms	remaining: 261ms
46:	learn: 17.3970150	total: 227ms	remaining: 256ms
47:	learn: 17.3058203	total: 231ms	remaining: 251ms
48:	learn: 17.1789256	total: 236ms	remaining: 245ms
49:	learn: 17.0916229	total: 240ms	remaining: 240ms
50:	learn: 16.9859820	total: 244ms	remaining: 234ms
51:	learn: 16.8995582	total: 248ms	remaining: 229ms
52:	learn: 16.8137014	total: 252ms	remaining: 223ms
53:	learn: 16.7021451	total: 256ms	remaining: 218ms
54:	learn: 16.5895582	total: 260ms	remaining: 213ms
55:	learn: 16.5015639	total: 264ms	remaining: 208ms
56:	learn: 16.4356637	total: 268ms	remaining: 202ms
57:	learn: 16.3514525	total: 273ms	remaining: 198ms
58:	learn: 16.2401369	total: 278ms	remaining: 193ms
59:	learn: 16.1293223	total: 282ms	remaining: 188ms
60:	learn: 16.0271167	total: 287ms	remaining: 183ms
61:	learn: 15.9126257	total: 292ms	remaining: 179ms
62:	learn: 15.8391096	total: 296ms	remaining: 174ms
63:	learn: 15.7441773	total: 301ms	remaining: 169ms
64:	learn: 15.6885195	total: 305ms	remaining: 164ms
65:	learn: 15.6052039	total: 310ms	remaining: 159ms
66:	learn: 15.5074202	total: 318ms	remaining: 157ms
67:	learn: 15.4054338	total: 325ms	remaining: 153ms
68:	learn: 15.2885714	total: 334ms	remaining: 150ms
69:	learn: 15.2157472	total: 340ms	remaining: 146ms
70:	learn: 15.1031554	total: 346ms	remaining: 141ms
71:	learn: 15.0237470	total: 351ms	remaining: 136ms
72:	learn: 14.9756825	total: 356ms	remaining: 132ms
73:	learn: 14.8840596	total: 361ms	remaining: 127ms
74:	learn: 14.8077061	total: 367ms	remaining: 122ms
75:	learn: 14.7444437	total: 372ms	remaining: 118ms
76:	learn: 14.6751720	total: 377ms	remaining: 113ms
77:	learn: 14.5830333	total: 383ms	remaining: 108ms
78:	learn: 14.5241206	total: 388ms	remaining: 103ms
79:	learn: 14.4892731	total: 393ms	remaining: 98.3ms
80:	learn: 14.4256605	total: 398ms	remaining: 93.4ms
81:	learn: 14.3666860	total: 403ms	remaining: 88.6ms
82:	learn: 14.2938372	total: 409ms	remaining: 83.7ms
83:	learn: 14.2161532	total: 414ms	remaining: 78.8ms
84:	learn: 14.1582910	total: 418ms	remaining: 73.8ms
85:	learn: 14.1029153	total: 422ms	remaining: 68.7ms
86:	learn: 14.0475835	total: 427ms	remaining: 63.7ms
87:	learn: 13.9892661	total: 431ms	remaining: 58.8ms
88:	learn: 13.9481628	total: 436ms	remaining: 53.8ms
89:	learn: 13.8483991	total: 440ms	remaining: 48.9ms
90:	learn: 13.7775614	total: 445ms	remaining: 44ms
91:	learn: 13.7304585	total: 450ms	remaining: 39.1ms
92:	learn: 13.6783381	total: 454ms	remaining: 34.2ms
93:	learn: 13.6356964	total: 459ms	remaining: 29.3ms
94:	learn: 13.5924371	total: 463ms	remaining: 24.4ms
95:	learn: 13.5400746	total: 468ms	remaining: 19.5ms
96:	learn: 13.4897333	total: 473ms	remaining: 14.6ms
97:	learn: 13.4470321	total: 478ms	remaining: 9.75ms
98:	learn: 13.3856082	total: 482ms	remaining: 4.87ms
99:	learn: 13.3082371	total: 487ms	remaining: 0us
0:	learn: 43.0395283	total: 5.65ms	remaining: 559ms
1:	learn: 42.1130223	total: 11.4ms	remaining: 556ms
2:	learn: 41.1753409	total: 17.3ms	remaining: 561ms
3:	learn: 40.3637444	total: 23ms	remaining: 552ms
4:	learn: 39.6508088	total: 28.1ms	remaining: 534ms
5:	learn: 38.7217934	total: 33.6ms	remaining: 527ms
6:	learn: 37.8538055	total: 38.9ms	remaining: 517ms
7:	learn: 36.9793574	total: 44ms	remaining: 506ms
8:	learn: 36.3076984	total: 49.1ms	remaining: 497ms
9:	learn: 35.6673160	total: 53.7ms	remaining: 483ms
10:	learn: 34.8889800	total: 59ms	remaining: 478ms
11:	learn: 34.1675517	total: 64.1ms	remaining: 470ms
12:	learn: 33.6779564	total: 69.3ms	remaining: 464ms
13:	learn: 33.0710039	total: 73.8ms	remaining: 453ms
14:	learn: 32.4966674	total: 78.1ms	remaining: 443ms
15:	learn: 31.9492856	total: 82.3ms	remaining: 432ms
16:	learn: 31.5108129	total: 86.5ms	remaining: 423ms
17:	learn: 30.9804023	total: 91ms	remaining: 415ms
18:	learn: 30.4169089	total: 95.2ms	remaining: 406ms
19:	learn: 29.8930375	total: 99.3ms	remaining: 397ms
20:	learn: 29.3974421	total: 104ms	remaining: 390ms
21:	learn: 28.8792307	total: 108ms	remaining: 383ms
22:	learn: 28.3894474	total: 112ms	remaining: 376ms
23:	learn: 27.9921276	total: 117ms	remaining: 372ms
24:	learn: 27.6158887	total: 122ms	remaining: 365ms
25:	learn: 27.2866950	total: 126ms	remaining: 359ms
26:	learn: 26.8770708	total: 131ms	remaining: 354ms
27:	learn: 26.6233005	total: 136ms	remaining: 351ms
28:	learn: 26.2921934	total: 142ms	remaining: 347ms
29:	learn: 25.9156920	total: 147ms	remaining: 342ms
30:	learn: 25.5311106	total: 149ms	remaining: 332ms
31:	learn: 25.2178997	total: 154ms	remaining: 328ms
32:	learn: 24.8572196	total: 159ms	remaining: 323ms
33:	learn: 24.5849710	total: 164ms	remaining: 318ms
34:	learn: 24.2209190	total: 170ms	remaining: 316ms
35:	learn: 23.8708250	total: 179ms	remaining: 318ms
36:	learn: 23.5325279	total: 189ms	remaining: 321ms
37:	learn: 23.2116148	total: 195ms	remaining: 318ms
38:	learn: 22.9696787	total: 203ms	remaining: 318ms
39:	learn: 22.7936783	total: 210ms	remaining: 314ms
40:	learn: 22.6228847	total: 215ms	remaining: 309ms
41:	learn: 22.3691527	total: 220ms	remaining: 304ms
42:	learn: 22.1002173	total: 226ms	remaining: 300ms
43:	learn: 21.9157268	total: 232ms	remaining: 295ms
44:	learn: 21.7229102	total: 237ms	remaining: 290ms
45:	learn: 21.4642005	total: 242ms	remaining: 284ms
46:	learn: 21.3029442	total: 247ms	remaining: 279ms
47:	learn: 21.1469792	total: 253ms	remaining: 274ms
48:	learn: 20.9458235	total: 257ms	remaining: 268ms
49:	learn: 20.7335242	total: 263ms	remaining: 263ms
50:	learn: 20.5440269	total: 268ms	remaining: 258ms
51:	learn: 20.3661449	total: 273ms	remaining: 252ms
52:	learn: 20.2158134	total: 277ms	remaining: 246ms
53:	learn: 19.9934873	total: 282ms	remaining: 240ms
54:	learn: 19.7879739	total: 287ms	remaining: 235ms
55:	learn: 19.6630460	total: 291ms	remaining: 229ms
56:	learn: 19.5152729	total: 295ms	remaining: 223ms
57:	learn: 19.3581128	total: 299ms	remaining: 217ms
58:	learn: 19.2209303	total: 304ms	remaining: 211ms
59:	learn: 19.0965248	total: 308ms	remaining: 206ms
60:	learn: 19.0035954	total: 312ms	remaining: 200ms
61:	learn: 18.8554149	total: 317ms	remaining: 194ms
62:	learn: 18.7095427	total: 321ms	remaining: 188ms
63:	learn: 18.5751494	total: 325ms	remaining: 183ms
64:	learn: 18.4678251	total: 329ms	remaining: 177ms
65:	learn: 18.3500325	total: 334ms	remaining: 172ms
66:	learn: 18.2088983	total: 338ms	remaining: 167ms
67:	learn: 18.0737705	total: 343ms	remaining: 161ms
68:	learn: 17.9325058	total: 347ms	remaining: 156ms
69:	learn: 17.8003911	total: 352ms	remaining: 151ms
70:	learn: 17.7385366	total: 356ms	remaining: 145ms
71:	learn: 17.6106998	total: 361ms	remaining: 140ms
72:	learn: 17.4816270	total: 366ms	remaining: 135ms
73:	learn: 17.4025554	total: 374ms	remaining: 131ms
74:	learn: 17.2902108	total: 381ms	remaining: 127ms
75:	learn: 17.2158048	total: 391ms	remaining: 123ms
76:	learn: 17.1261053	total: 398ms	remaining: 119ms
77:	learn: 17.0308917	total: 403ms	remaining: 114ms
78:	learn: 16.9546705	total: 409ms	remaining: 109ms
79:	learn: 16.8319165	total: 414ms	remaining: 104ms
80:	learn: 16.7687017	total: 419ms	remaining: 98.4ms
81:	learn: 16.6972326	total: 424ms	remaining: 93.1ms
82:	learn: 16.6124580	total: 429ms	remaining: 87.9ms
83:	learn: 16.4999052	total: 435ms	remaining: 82.9ms
84:	learn: 16.4302484	total: 440ms	remaining: 77.7ms
85:	learn: 16.3201363	total: 446ms	remaining: 72.5ms
86:	learn: 16.2534314	total: 451ms	remaining: 67.4ms
87:	learn: 16.1720485	total: 456ms	remaining: 62.1ms
88:	learn: 16.0625751	total: 461ms	remaining: 57ms
89:	learn: 15.9135088	total: 467ms	remaining: 51.9ms
90:	learn: 15.8658863	total: 471ms	remaining: 46.6ms
91:	learn: 15.8066805	total: 475ms	remaining: 41.3ms
92:	learn: 15.7412103	total: 479ms	remaining: 36.1ms
93:	learn: 15.6542776	total: 483ms	remaining: 30.9ms
94:	learn: 15.5760334	total: 487ms	remaining: 25.6ms
95:	learn: 15.5434131	total: 492ms	remaining: 20.5ms
96:	learn: 15.4709561	total: 496ms	remaining: 15.3ms
97:	learn: 15.4449618	total: 500ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 504ms	remaining: 5.09ms
99:	learn: 15.3106595	total: 508ms	remaining: 0us
0:	learn: 46.7142257	total: 5.23ms	remaining: 518ms
1:	learn: 45.7634153	total: 9.89ms	remaining: 484ms
2:	learn: 45.0054253	total: 14.4ms	remaining: 467ms
3:	learn: 44.2120432	total: 18.8ms	remaining: 451ms
4:	learn: 43.3960472	total: 24.1ms	remaining: 458ms
5:	learn: 42.8588120	total: 32ms	remaining: 501ms
6:	learn: 41.9533701	total: 39.6ms	remaining: 526ms
7:	learn: 41.2745030	total: 47.9ms	remaining: 551ms
8:	learn: 40.6797495	total: 69.5ms	remaining: 703ms
9:	learn: 39.9899571	total: 74.9ms	remaining: 674ms
10:	learn: 39.4682100	total: 80.2ms	remaining: 649ms
11:	learn: 39.0305595	total: 85.4ms	remaining: 626ms
12:	learn: 38.4200417	total: 90.5ms	remaining: 606ms
13:	learn: 37.8425194	total: 95.5ms	remaining: 587ms
14:	learn: 37.4203127	total: 101ms	remaining: 570ms
15:	learn: 36.9917688	total: 106ms	remaining: 554ms
16:	learn: 36.5544138	total: 110ms	remaining: 538ms
17:	learn: 36.0727019	total: 116ms	remaining: 527ms
18:	learn: 35.4835715	total: 121ms	remaining: 517ms
19:	learn: 34.9865654	total: 126ms	remaining: 505ms
20:	learn: 34.6063373	total: 130ms	remaining: 490ms
21:	learn: 34.0997289	total: 134ms	remaining: 477ms
22:	learn: 33.7313171	total: 138ms	remaining: 463ms
23:	learn: 33.3582000	total: 143ms	remaining: 452ms
24:	learn: 32.9432456	total: 147ms	remaining: 440ms
25:	learn: 32.5220888	total: 151ms	remaining: 428ms
26:	learn: 32.2172292	total: 155ms	remaining: 419ms
27:	learn: 31.8972904	total: 159ms	remaining: 410ms
28:	learn: 31.6405350	total: 163ms	remaining: 400ms
29:	learn: 31.4167702	total: 167ms	remaining: 390ms
30:	learn: 30.8541961	total: 169ms	remaining: 375ms
31:	learn: 30.5572111	total: 173ms	remaining: 367ms
32:	learn: 30.1700399	total: 177ms	remaining: 360ms
33:	learn: 29.8537271	total: 181ms	remaining: 352ms
34:	learn: 29.6192540	total: 185ms	remaining: 343ms
35:	learn: 29.3276362	total: 189ms	remaining: 336ms
36:	learn: 28.9985179	total: 193ms	remaining: 329ms
37:	learn: 28.7046880	total: 197ms	remaining: 322ms
38:	learn: 28.4412677	total: 202ms	remaining: 315ms
39:	learn: 28.1277292	total: 206ms	remaining: 309ms
40:	learn: 27.9000750	total: 210ms	remaining: 302ms
41:	learn: 27.5433162	total: 214ms	remaining: 296ms
42:	learn: 27.2493285	total: 218ms	remaining: 289ms
43:	learn: 26.9576632	total: 220ms	remaining: 280ms
44:	learn: 26.6177110	total: 225ms	remaining: 275ms
45:	learn: 26.2812456	total: 230ms	remaining: 269ms
46:	learn: 26.0803859	total: 234ms	remaining: 264ms
47:	learn: 25.9543581	total: 238ms	remaining: 258ms
48:	learn: 25.7951582	total: 242ms	remaining: 252ms
49:	learn: 25.6548184	total: 247ms	remaining: 247ms
50:	learn: 25.4010843	total: 252ms	remaining: 242ms
51:	learn: 24.9773937	total: 256ms	remaining: 236ms
52:	learn: 24.8026156	total: 265ms	remaining: 235ms
53:	learn: 24.5568053	total: 273ms	remaining: 232ms
54:	learn: 24.2281839	total: 281ms	remaining: 230ms
55:	learn: 23.9202795	total: 288ms	remaining: 227ms
56:	learn: 23.7625591	total: 294ms	remaining: 222ms
57:	learn: 23.5429721	total: 299ms	remaining: 217ms
58:	learn: 23.3175893	total: 304ms	remaining: 211ms
59:	learn: 23.2035130	total: 309ms	remaining: 206ms
60:	learn: 23.0232450	total: 315ms	remaining: 201ms
61:	learn: 22.8384958	total: 320ms	remaining: 196ms
62:	learn: 22.6499902	total: 325ms	remaining: 191ms
63:	learn: 22.4577426	total: 330ms	remaining: 186ms
64:	learn: 22.3333158	total: 336ms	remaining: 181ms
65:	learn: 22.2064131	total: 341ms	remaining: 176ms
66:	learn: 22.1434971	total: 345ms	remaining: 170ms
67:	learn: 21.9596519	total: 351ms	remaining: 165ms
68:	learn: 21.8475576	total: 357ms	remaining: 160ms
69:	learn: 21.6954745	total: 362ms	remaining: 155ms
70:	learn: 21.5635976	total: 366ms	remaining: 149ms
71:	learn: 21.4588506	total: 370ms	remaining: 144ms
72:	learn: 21.3527268	total: 374ms	remaining: 138ms
73:	learn: 21.2661288	total: 378ms	remaining: 133ms
74:	learn: 21.1817333	total: 381ms	remaining: 127ms
75:	learn: 21.0527553	total: 385ms	remaining: 122ms
76:	learn: 20.9229021	total: 390ms	remaining: 116ms
77:	learn: 20.7563946	total: 394ms	remaining: 111ms
78:	learn: 20.6569831	total: 398ms	remaining: 106ms
79:	learn: 20.4982663	total: 402ms	remaining: 100ms
80:	learn: 20.3185460	total: 407ms	remaining: 95.4ms
81:	learn: 20.2096241	total: 411ms	remaining: 90.2ms
82:	learn: 20.1274891	total: 415ms	remaining: 84.9ms
83:	learn: 20.0740139	total: 419ms	remaining: 79.8ms
84:	learn: 19.9630699	total: 424ms	remaining: 74.7ms
85:	learn: 19.8753899	total: 428ms	remaining: 69.7ms
86:	learn: 19.6563612	total: 433ms	remaining: 64.7ms
87:	learn: 19.4680232	total: 437ms	remaining: 59.6ms
88:	learn: 19.3503431	total: 442ms	remaining: 54.6ms
89:	learn: 19.2221379	total: 446ms	remaining: 49.6ms
90:	learn: 19.0732542	total: 451ms	remaining: 44.6ms
91:	learn: 18.9825190	total: 458ms	remaining: 39.8ms
92:	learn: 18.8839009	total: 466ms	remaining: 35ms
93:	learn: 18.8012219	total: 473ms	remaining: 30.2ms
94:	learn: 18.7172713	total: 480ms	remaining: 25.3ms
95:	learn: 18.6201170	total: 488ms	remaining: 20.3ms
96:	learn: 18.5318611	total: 493ms	remaining: 15.3ms
97:	learn: 18.3833356	total: 498ms	remaining: 10.2ms
98:	learn: 18.3289700	total: 503ms	remaining: 5.08ms
99:	learn: 18.2227333	total: 509ms	remaining: 0us
0:	learn: 46.3764524	total: 4.84ms	remaining: 479ms
1:	learn: 45.5561269	total: 9.56ms	remaining: 469ms
2:	learn: 44.8811245	total: 14.1ms	remaining: 455ms
3:	learn: 44.0788617	total: 18.5ms	remaining: 444ms
4:	learn: 43.3619790	total: 22.7ms	remaining: 432ms
5:	learn: 42.6912112	total: 27ms	remaining: 423ms
6:	learn: 42.2292118	total: 31.4ms	remaining: 417ms
7:	learn: 41.7725191	total: 35.4ms	remaining: 407ms
8:	learn: 41.1676614	total: 39.4ms	remaining: 398ms
9:	learn: 40.5771076	total: 43.3ms	remaining: 390ms
10:	learn: 39.8343757	total: 47.4ms	remaining: 384ms
11:	learn: 39.3761142	total: 51.5ms	remaining: 378ms
12:	learn: 38.5254692	total: 55.8ms	remaining: 374ms
13:	learn: 37.9629555	total: 59.8ms	remaining: 368ms
14:	learn: 37.4418438	total: 63.7ms	remaining: 361ms
15:	learn: 37.0507283	total: 67.6ms	remaining: 355ms
16:	learn: 36.6264217	total: 72.1ms	remaining: 352ms
17:	learn: 36.1114940	total: 76.7ms	remaining: 349ms
18:	learn: 35.7193862	total: 81.1ms	remaining: 346ms
19:	learn: 35.3301177	total: 85.9ms	remaining: 343ms
20:	learn: 35.0598280	total: 90.4ms	remaining: 340ms
21:	learn: 34.5469736	total: 95.2ms	remaining: 337ms
22:	learn: 34.2064215	total: 99.9ms	remaining: 335ms
23:	learn: 33.7280710	total: 105ms	remaining: 332ms
24:	learn: 33.3282940	total: 114ms	remaining: 343ms
25:	learn: 32.8478961	total: 123ms	remaining: 349ms
26:	learn: 32.5722164	total: 132ms	remaining: 357ms
27:	learn: 32.2457019	total: 140ms	remaining: 360ms
28:	learn: 31.9230495	total: 145ms	remaining: 355ms
29:	learn: 31.4311611	total: 150ms	remaining: 351ms
30:	learn: 30.9179052	total: 156ms	remaining: 347ms
31:	learn: 30.6201141	total: 161ms	remaining: 342ms
32:	learn: 30.3421106	total: 166ms	remaining: 337ms
33:	learn: 29.9885373	total: 171ms	remaining: 333ms
34:	learn: 29.7462780	total: 176ms	remaining: 327ms
35:	learn: 29.3607153	total: 182ms	remaining: 323ms
36:	learn: 29.1793078	total: 187ms	remaining: 318ms
37:	learn: 28.9276538	total: 192ms	remaining: 313ms
38:	learn: 28.6903934	total: 196ms	remaining: 307ms
39:	learn: 28.2095033	total: 202ms	remaining: 302ms
40:	learn: 27.7990608	total: 207ms	remaining: 298ms
41:	learn: 27.5406632	total: 211ms	remaining: 292ms
42:	learn: 27.2575376	total: 215ms	remaining: 285ms
43:	learn: 26.9741707	total: 219ms	remaining: 279ms
44:	learn: 26.6606899	total: 223ms	remaining: 273ms
45:	learn: 26.4015833	total: 228ms	remaining: 267ms
46:	learn: 26.1828993	total: 232ms	remaining: 261ms
47:	learn: 26.0233709	total: 234ms	remaining: 254ms
48:	learn: 25.9300399	total: 238ms	remaining: 248ms
49:	learn: 25.5861489	total: 242ms	remaining: 242ms
50:	learn: 25.4322012	total: 246ms	remaining: 237ms
51:	learn: 25.1595644	total: 250ms	remaining: 231ms
52:	learn: 24.9955303	total: 255ms	remaining: 226ms
53:	learn: 24.7273966	total: 259ms	remaining: 221ms
54:	learn: 24.5747978	total: 263ms	remaining: 215ms
55:	learn: 24.3807977	total: 267ms	remaining: 210ms
56:	learn: 24.1689569	total: 271ms	remaining: 205ms
57:	learn: 23.9898221	total: 285ms	remaining: 206ms
58:	learn: 23.7566414	total: 289ms	remaining: 201ms
59:	learn: 23.6641165	total: 293ms	remaining: 196ms
60:	learn: 23.5658066	total: 298ms	remaining: 190ms
61:	learn: 23.4338851	total: 303ms	remaining: 186ms
62:	learn: 23.2408837	total: 310ms	remaining: 182ms
63:	learn: 23.0642038	total: 317ms	remaining: 178ms
64:	learn: 22.9032045	total: 326ms	remaining: 175ms
65:	learn: 22.7736138	total: 333ms	remaining: 172ms
66:	learn: 22.6836443	total: 339ms	remaining: 167ms
67:	learn: 22.5983654	total: 344ms	remaining: 162ms
68:	learn: 22.4419813	total: 349ms	remaining: 157ms
69:	learn: 22.2863339	total: 354ms	remaining: 152ms
70:	learn: 22.1792943	total: 359ms	remaining: 147ms
71:	learn: 22.1130574	total: 365ms	remaining: 142ms
72:	learn: 21.9858161	total: 370ms	remaining: 137ms
73:	learn: 21.8577784	total: 375ms	remaining: 132ms
74:	learn: 21.7845222	total: 380ms	remaining: 127ms
75:	learn: 21.6831390	total: 385ms	remaining: 122ms
76:	learn: 21.6292521	total: 390ms	remaining: 117ms
77:	learn: 21.5789330	total: 395ms	remaining: 111ms
78:	learn: 21.5420942	total: 400ms	remaining: 106ms
79:	learn: 21.4280939	total: 405ms	remaining: 101ms
80:	learn: 21.3641165	total: 409ms	remaining: 96ms
81:	learn: 21.2734814	total: 413ms	remaining: 90.7ms
82:	learn: 21.2220323	total: 417ms	remaining: 85.5ms
83:	learn: 21.0625792	total: 421ms	remaining: 80.3ms
84:	learn: 20.9488320	total: 426ms	remaining: 75.1ms
85:	learn: 20.8504255	total: 430ms	remaining: 70ms
86:	learn: 20.7848510	total: 434ms	remaining: 64.9ms
87:	learn: 20.7247442	total: 438ms	remaining: 59.8ms
88:	learn: 20.5698590	total: 442ms	remaining: 54.7ms
89:	learn: 20.4067620	total: 447ms	remaining: 49.6ms
90:	learn: 20.3062482	total: 451ms	remaining: 44.6ms
91:	learn: 20.2029696	total: 455ms	remaining: 39.6ms
92:	learn: 20.1384849	total: 459ms	remaining: 34.6ms
93:	learn: 20.0260709	total: 463ms	remaining: 29.6ms
94:	learn: 19.9122100	total: 468ms	remaining: 24.6ms
95:	learn: 19.8648487	total: 472ms	remaining: 19.7ms
96:	learn: 19.8207072	total: 477ms	remaining: 14.7ms
97:	learn: 19.7261189	total: 481ms	remaining: 9.82ms
98:	learn: 19.7042438	total: 485ms	remaining: 4.9ms
99:	learn: 19.6546645	total: 490ms	remaining: 0us
0:	learn: 47.0239288	total: 5.28ms	remaining: 522ms
1:	learn: 46.2253829	total: 10.6ms	remaining: 521ms
2:	learn: 45.5580301	total: 15.8ms	remaining: 510ms
3:	learn: 44.7273237	total: 21.2ms	remaining: 508ms
4:	learn: 43.8867421	total: 26.1ms	remaining: 495ms
5:	learn: 43.3615911	total: 30.8ms	remaining: 482ms
6:	learn: 42.8548390	total: 36ms	remaining: 479ms
7:	learn: 42.1606758	total: 41.4ms	remaining: 476ms
8:	learn: 41.6625870	total: 45.9ms	remaining: 465ms
9:	learn: 40.9497092	total: 50.7ms	remaining: 457ms
10:	learn: 40.1886318	total: 56.7ms	remaining: 459ms
11:	learn: 39.7456423	total: 61.8ms	remaining: 453ms
12:	learn: 39.1171373	total: 65.9ms	remaining: 441ms
13:	learn: 38.5451069	total: 70.3ms	remaining: 432ms
14:	learn: 38.0155834	total: 74.3ms	remaining: 421ms
15:	learn: 37.5631354	total: 78.2ms	remaining: 411ms
16:	learn: 37.1030023	total: 81.9ms	remaining: 400ms
17:	learn: 36.4563029	total: 86ms	remaining: 392ms
18:	learn: 36.0160976	total: 90ms	remaining: 384ms
19:	learn: 35.5079827	total: 93.7ms	remaining: 375ms
20:	learn: 35.2111885	total: 97.9ms	remaining: 368ms
21:	learn: 34.9397465	total: 103ms	remaining: 364ms
22:	learn: 34.5270048	total: 107ms	remaining: 358ms
23:	learn: 34.0169260	total: 111ms	remaining: 353ms
24:	learn: 33.7454892	total: 116ms	remaining: 349ms
25:	learn: 33.2648157	total: 121ms	remaining: 344ms
26:	learn: 32.8899427	total: 125ms	remaining: 338ms
27:	learn: 32.6185050	total: 129ms	remaining: 333ms
28:	learn: 32.3528531	total: 134ms	remaining: 328ms
29:	learn: 32.0859923	total: 138ms	remaining: 323ms
30:	learn: 31.6511144	total: 143ms	remaining: 318ms
31:	learn: 31.2571765	total: 147ms	remaining: 313ms
32:	learn: 30.9770049	total: 151ms	remaining: 308ms
33:	learn: 30.6084872	total: 156ms	remaining: 303ms
34:	learn: 30.3448632	total: 161ms	remaining: 298ms
35:	learn: 30.0360942	total: 167ms	remaining: 297ms
36:	learn: 29.6648968	total: 174ms	remaining: 297ms
37:	learn: 29.3165114	total: 182ms	remaining: 296ms
38:	learn: 29.0829198	total: 196ms	remaining: 306ms
39:	learn: 28.7752064	total: 201ms	remaining: 301ms
40:	learn: 28.3622191	total: 206ms	remaining: 296ms
41:	learn: 28.1346631	total: 212ms	remaining: 292ms
42:	learn: 27.9585719	total: 216ms	remaining: 287ms
43:	learn: 27.6565566	total: 222ms	remaining: 282ms
44:	learn: 27.3616172	total: 227ms	remaining: 278ms
45:	learn: 27.0658637	total: 232ms	remaining: 272ms
46:	learn: 26.8660382	total: 237ms	remaining: 267ms
47:	learn: 26.6536078	total: 242ms	remaining: 262ms
48:	learn: 26.3524440	total: 247ms	remaining: 257ms
49:	learn: 26.1595277	total: 252ms	remaining: 252ms
50:	learn: 25.9273523	total: 257ms	remaining: 247ms
51:	learn: 25.7195580	total: 262ms	remaining: 242ms
52:	learn: 25.5730225	total: 268ms	remaining: 237ms
53:	learn: 25.3455276	total: 273ms	remaining: 232ms
54:	learn: 25.2289675	total: 277ms	remaining: 227ms
55:	learn: 25.0133024	total: 282ms	remaining: 221ms
56:	learn: 24.8406714	total: 285ms	remaining: 215ms
57:	learn: 24.6367857	total: 289ms	remaining: 209ms
58:	learn: 24.5338177	total: 293ms	remaining: 204ms
59:	learn: 24.3799964	total: 297ms	remaining: 198ms
60:	learn: 24.1447492	total: 301ms	remaining: 192ms
61:	learn: 23.9880495	total: 305ms	remaining: 187ms
62:	learn: 23.7140630	total: 309ms	remaining: 181ms
63:	learn: 23.5003791	total: 313ms	remaining: 176ms
64:	learn: 23.3207645	total: 317ms	remaining: 171ms
65:	learn: 23.1958356	total: 322ms	remaining: 166ms
66:	learn: 23.0471302	total: 326ms	remaining: 160ms
67:	learn: 22.8977183	total: 331ms	remaining: 156ms
68:	learn: 22.7187400	total: 335ms	remaining: 150ms
69:	learn: 22.6523405	total: 339ms	remaining: 145ms
70:	learn: 22.4767453	total: 344ms	remaining: 140ms
71:	learn: 22.3243677	total: 348ms	remaining: 135ms
72:	learn: 22.2133096	total: 353ms	remaining: 131ms
73:	learn: 22.1151713	total: 358ms	remaining: 126ms
74:	learn: 22.0296666	total: 363ms	remaining: 121ms
75:	learn: 21.9195980	total: 368ms	remaining: 116ms
76:	learn: 21.8401730	total: 372ms	remaining: 111ms
77:	learn: 21.8079797	total: 376ms	remaining: 106ms
78:	learn: 21.7274109	total: 383ms	remaining: 102ms
79:	learn: 21.6663032	total: 390ms	remaining: 97.5ms
80:	learn: 21.5633117	total: 397ms	remaining: 93.2ms
81:	learn: 21.4542467	total: 404ms	remaining: 88.8ms
82:	learn: 21.3177957	total: 412ms	remaining: 84.5ms
83:	learn: 21.1289167	total: 418ms	remaining: 79.6ms
84:	learn: 21.0297368	total: 423ms	remaining: 74.7ms
85:	learn: 20.9089564	total: 429ms	remaining: 69.8ms
86:	learn: 20.7653988	total: 435ms	remaining: 65ms
87:	learn: 20.6521894	total: 441ms	remaining: 60.1ms
88:	learn: 20.5193021	total: 446ms	remaining: 55.2ms
89:	learn: 20.4361620	total: 452ms	remaining: 50.2ms
90:	learn: 20.3546710	total: 457ms	remaining: 45.2ms
91:	learn: 20.2513296	total: 463ms	remaining: 40.3ms
92:	learn: 20.1605550	total: 468ms	remaining: 35.2ms
93:	learn: 20.0515942	total: 473ms	remaining: 30.2ms
94:	learn: 19.9800764	total: 478ms	remaining: 25.1ms
95:	learn: 19.8996532	total: 483ms	remaining: 20.1ms
96:	learn: 19.8450910	total: 488ms	remaining: 15.1ms
97:	learn: 19.7887346	total: 493ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 497ms	remaining: 5.02ms
99:	learn: 19.6328825	total: 501ms	remaining: 0us
0:	learn: 27.5585353	total: 4.95ms	remaining: 490ms
1:	learn: 27.1656995	total: 9.19ms	remaining: 450ms
2:	learn: 26.8590175	total: 14ms	remaining: 453ms
3:	learn: 26.5818406	total: 18.4ms	remaining: 442ms
4:	learn: 26.1148663	total: 22.8ms	remaining: 433ms
5:	learn: 25.7690484	total: 27.6ms	remaining: 433ms
6:	learn: 25.3489206	total: 35.1ms	remaining: 466ms
7:	learn: 24.9542406	total: 43.1ms	remaining: 496ms
8:	learn: 24.6777517	total: 52.8ms	remaining: 534ms
9:	learn: 24.3242344	total: 59.1ms	remaining: 532ms
10:	learn: 24.0383073	total: 66.6ms	remaining: 539ms
11:	learn: 23.7383420	total: 71.6ms	remaining: 525ms
12:	learn: 23.3461670	total: 76.5ms	remaining: 512ms
13:	learn: 23.0928636	total: 81.7ms	remaining: 502ms
14:	learn: 22.8770414	total: 86.7ms	remaining: 491ms
15:	learn: 22.6323214	total: 91.7ms	remaining: 481ms
16:	learn: 22.3597072	total: 96.4ms	remaining: 471ms
17:	learn: 22.1079813	total: 102ms	remaining: 463ms
18:	learn: 21.8421199	total: 107ms	remaining: 456ms
19:	learn: 21.6576508	total: 112ms	remaining: 447ms
20:	learn: 21.4301268	total: 120ms	remaining: 451ms
21:	learn: 21.2287388	total: 125ms	remaining: 443ms
22:	learn: 21.0553872	total: 130ms	remaining: 435ms
23:	learn: 20.8977091	total: 135ms	remaining: 429ms
24:	learn: 20.6619051	total: 139ms	remaining: 417ms
25:	learn: 20.5040955	total: 143ms	remaining: 408ms
26:	learn: 20.3181195	total: 147ms	remaining: 398ms
27:	learn: 20.0869436	total: 151ms	remaining: 389ms
28:	learn: 19.9375985	total: 155ms	remaining: 380ms
29:	learn: 19.8247516	total: 159ms	remaining: 371ms
30:	learn: 19.6261697	total: 163ms	remaining: 362ms
31:	learn: 19.4547236	total: 167ms	remaining: 354ms
32:	learn: 19.3157092	total: 171ms	remaining: 347ms
33:	learn: 19.1561419	total: 175ms	remaining: 339ms
34:	learn: 19.0453620	total: 179ms	remaining: 332ms
35:	learn: 18.8738574	total: 183ms	remaining: 326ms
36:	learn: 18.7072907	total: 187ms	remaining: 319ms
37:	learn: 18.5877943	total: 191ms	remaining: 312ms
38:	learn: 18.4436380	total: 195ms	remaining: 306ms
39:	learn: 18.3463356	total: 199ms	remaining: 299ms
40:	learn: 18.2008059	total: 203ms	remaining: 293ms
41:	learn: 18.0582079	total: 208ms	remaining: 287ms
42:	learn: 17.8891982	total: 212ms	remaining: 282ms
43:	learn: 17.7332246	total: 216ms	remaining: 275ms
44:	learn: 17.6206421	total: 220ms	remaining: 269ms
45:	learn: 17.4982800	total: 224ms	remaining: 263ms
46:	learn: 17.3970150	total: 229ms	remaining: 258ms
47:	learn: 17.3058203	total: 234ms	remaining: 253ms
48:	learn: 17.1789256	total: 238ms	remaining: 248ms
49:	learn: 17.0916229	total: 243ms	remaining: 243ms
50:	learn: 16.9859820	total: 247ms	remaining: 237ms
51:	learn: 16.8995582	total: 252ms	remaining: 232ms
52:	learn: 16.8137014	total: 256ms	remaining: 227ms
53:	learn: 16.7021451	total: 261ms	remaining: 222ms
54:	learn: 16.5895582	total: 269ms	remaining: 220ms
55:	learn: 16.5015639	total: 276ms	remaining: 217ms
56:	learn: 16.4356637	total: 285ms	remaining: 215ms
57:	learn: 16.3514525	total: 291ms	remaining: 210ms
58:	learn: 16.2401369	total: 297ms	remaining: 207ms
59:	learn: 16.1293223	total: 302ms	remaining: 201ms
60:	learn: 16.0271167	total: 307ms	remaining: 197ms
61:	learn: 15.9126257	total: 313ms	remaining: 192ms
62:	learn: 15.8391096	total: 318ms	remaining: 186ms
63:	learn: 15.7441773	total: 323ms	remaining: 182ms
64:	learn: 15.6885195	total: 328ms	remaining: 177ms
65:	learn: 15.6052039	total: 333ms	remaining: 172ms
66:	learn: 15.5074202	total: 338ms	remaining: 167ms
67:	learn: 15.4054338	total: 344ms	remaining: 162ms
68:	learn: 15.2885714	total: 365ms	remaining: 164ms
69:	learn: 15.2157472	total: 368ms	remaining: 158ms
70:	learn: 15.1031554	total: 372ms	remaining: 152ms
71:	learn: 15.0237470	total: 376ms	remaining: 146ms
72:	learn: 14.9756825	total: 381ms	remaining: 141ms
73:	learn: 14.8840596	total: 386ms	remaining: 136ms
74:	learn: 14.8077061	total: 391ms	remaining: 130ms
75:	learn: 14.7444437	total: 395ms	remaining: 125ms
76:	learn: 14.6751720	total: 400ms	remaining: 119ms
77:	learn: 14.5830333	total: 405ms	remaining: 114ms
78:	learn: 14.5241206	total: 409ms	remaining: 109ms
79:	learn: 14.4892731	total: 413ms	remaining: 103ms
80:	learn: 14.4256605	total: 417ms	remaining: 97.9ms
81:	learn: 14.3666860	total: 421ms	remaining: 92.4ms
82:	learn: 14.2938372	total: 426ms	remaining: 87.2ms
83:	learn: 14.2161532	total: 430ms	remaining: 82ms
84:	learn: 14.1582910	total: 435ms	remaining: 76.8ms
85:	learn: 14.1029153	total: 439ms	remaining: 71.5ms
86:	learn: 14.0475835	total: 444ms	remaining: 66.3ms
87:	learn: 13.9892661	total: 449ms	remaining: 61.2ms
88:	learn: 13.9481628	total: 453ms	remaining: 56ms
89:	learn: 13.8483991	total: 458ms	remaining: 50.9ms
90:	learn: 13.7775614	total: 463ms	remaining: 45.8ms
91:	learn: 13.7304585	total: 471ms	remaining: 41ms
92:	learn: 13.6783381	total: 478ms	remaining: 36ms
93:	learn: 13.6356964	total: 487ms	remaining: 31.1ms
94:	learn: 13.5924371	total: 494ms	remaining: 26ms
95:	learn: 13.5400746	total: 500ms	remaining: 20.8ms
96:	learn: 13.4897333	total: 505ms	remaining: 15.6ms
97:	learn: 13.4470321	total: 510ms	remaining: 10.4ms
98:	learn: 13.3856082	total: 515ms	remaining: 5.2ms
99:	learn: 13.3082371	total: 520ms	remaining: 0us
0:	learn: 43.0395283	total: 4.31ms	remaining: 427ms
1:	learn: 42.1130223	total: 8.41ms	remaining: 412ms
2:	learn: 41.1753409	total: 12.4ms	remaining: 402ms
3:	learn: 40.3637444	total: 16.2ms	remaining: 388ms
4:	learn: 39.6508088	total: 20.2ms	remaining: 383ms
5:	learn: 38.7217934	total: 24.5ms	remaining: 384ms
6:	learn: 37.8538055	total: 28.6ms	remaining: 379ms
7:	learn: 36.9793574	total: 32.5ms	remaining: 373ms
8:	learn: 36.3076984	total: 36.5ms	remaining: 369ms
9:	learn: 35.6673160	total: 40.7ms	remaining: 366ms
10:	learn: 34.8889800	total: 44.5ms	remaining: 360ms
11:	learn: 34.1675517	total: 48.4ms	remaining: 355ms
12:	learn: 33.6779564	total: 52.6ms	remaining: 352ms
13:	learn: 33.0710039	total: 56.5ms	remaining: 347ms
14:	learn: 32.4966674	total: 61.1ms	remaining: 346ms
15:	learn: 31.9492856	total: 65ms	remaining: 341ms
16:	learn: 31.5108129	total: 69.1ms	remaining: 337ms
17:	learn: 30.9804023	total: 73.4ms	remaining: 334ms
18:	learn: 30.4169089	total: 77.8ms	remaining: 332ms
19:	learn: 29.8930375	total: 82.3ms	remaining: 329ms
20:	learn: 29.3974421	total: 86.9ms	remaining: 327ms
21:	learn: 28.8792307	total: 91.3ms	remaining: 324ms
22:	learn: 28.3894474	total: 95.6ms	remaining: 320ms
23:	learn: 27.9921276	total: 100ms	remaining: 317ms
24:	learn: 27.6158887	total: 105ms	remaining: 314ms
25:	learn: 27.2866950	total: 109ms	remaining: 311ms
26:	learn: 26.8770708	total: 117ms	remaining: 317ms
27:	learn: 26.6233005	total: 124ms	remaining: 320ms
28:	learn: 26.2921934	total: 134ms	remaining: 329ms
29:	learn: 25.9156920	total: 141ms	remaining: 328ms
30:	learn: 25.5311106	total: 144ms	remaining: 321ms
31:	learn: 25.2178997	total: 150ms	remaining: 318ms
32:	learn: 24.8572196	total: 155ms	remaining: 315ms
33:	learn: 24.5849710	total: 160ms	remaining: 311ms
34:	learn: 24.2209190	total: 165ms	remaining: 307ms
35:	learn: 23.8708250	total: 171ms	remaining: 303ms
36:	learn: 23.5325279	total: 176ms	remaining: 299ms
37:	learn: 23.2116148	total: 181ms	remaining: 296ms
38:	learn: 22.9696787	total: 199ms	remaining: 311ms
39:	learn: 22.7936783	total: 204ms	remaining: 307ms
40:	learn: 22.6228847	total: 210ms	remaining: 302ms
41:	learn: 22.3691527	total: 214ms	remaining: 296ms
42:	learn: 22.1002173	total: 219ms	remaining: 290ms
43:	learn: 21.9157268	total: 223ms	remaining: 284ms
44:	learn: 21.7229102	total: 227ms	remaining: 278ms
45:	learn: 21.4642005	total: 232ms	remaining: 272ms
46:	learn: 21.3029442	total: 236ms	remaining: 267ms
47:	learn: 21.1469792	total: 241ms	remaining: 261ms
48:	learn: 20.9458235	total: 245ms	remaining: 255ms
49:	learn: 20.7335242	total: 250ms	remaining: 250ms
50:	learn: 20.5440269	total: 254ms	remaining: 244ms
51:	learn: 20.3661449	total: 258ms	remaining: 239ms
52:	learn: 20.2158134	total: 263ms	remaining: 233ms
53:	learn: 19.9934873	total: 267ms	remaining: 227ms
54:	learn: 19.7879739	total: 271ms	remaining: 222ms
55:	learn: 19.6630460	total: 276ms	remaining: 217ms
56:	learn: 19.5152729	total: 281ms	remaining: 212ms
57:	learn: 19.3581128	total: 285ms	remaining: 207ms
58:	learn: 19.2209303	total: 290ms	remaining: 202ms
59:	learn: 19.0965248	total: 296ms	remaining: 197ms
60:	learn: 19.0035954	total: 301ms	remaining: 192ms
61:	learn: 18.8554149	total: 305ms	remaining: 187ms
62:	learn: 18.7095427	total: 312ms	remaining: 183ms
63:	learn: 18.5751494	total: 321ms	remaining: 180ms
64:	learn: 18.4678251	total: 328ms	remaining: 177ms
65:	learn: 18.3500325	total: 336ms	remaining: 173ms
66:	learn: 18.2088983	total: 344ms	remaining: 169ms
67:	learn: 18.0737705	total: 349ms	remaining: 164ms
68:	learn: 17.9325058	total: 354ms	remaining: 159ms
69:	learn: 17.8003911	total: 359ms	remaining: 154ms
70:	learn: 17.7385366	total: 365ms	remaining: 149ms
71:	learn: 17.6106998	total: 370ms	remaining: 144ms
72:	learn: 17.4816270	total: 375ms	remaining: 139ms
73:	learn: 17.4025554	total: 380ms	remaining: 134ms
74:	learn: 17.2902108	total: 386ms	remaining: 129ms
75:	learn: 17.2158048	total: 392ms	remaining: 124ms
76:	learn: 17.1261053	total: 397ms	remaining: 118ms
77:	learn: 17.0308917	total: 401ms	remaining: 113ms
78:	learn: 16.9546705	total: 406ms	remaining: 108ms
79:	learn: 16.8319165	total: 412ms	remaining: 103ms
80:	learn: 16.7687017	total: 417ms	remaining: 97.9ms
81:	learn: 16.6972326	total: 422ms	remaining: 92.6ms
82:	learn: 16.6124580	total: 426ms	remaining: 87.3ms
83:	learn: 16.4999052	total: 431ms	remaining: 82.1ms
84:	learn: 16.4302484	total: 435ms	remaining: 76.8ms
85:	learn: 16.3201363	total: 439ms	remaining: 71.5ms
86:	learn: 16.2534314	total: 443ms	remaining: 66.3ms
87:	learn: 16.1720485	total: 448ms	remaining: 61ms
88:	learn: 16.0625751	total: 452ms	remaining: 55.8ms
89:	learn: 15.9135088	total: 456ms	remaining: 50.6ms
90:	learn: 15.8658863	total: 460ms	remaining: 45.5ms
91:	learn: 15.8066805	total: 464ms	remaining: 40.4ms
92:	learn: 15.7412103	total: 468ms	remaining: 35.3ms
93:	learn: 15.6542776	total: 473ms	remaining: 30.2ms
94:	learn: 15.5760334	total: 478ms	remaining: 25.1ms
95:	learn: 15.5434131	total: 483ms	remaining: 20.1ms
96:	learn: 15.4709561	total: 487ms	remaining: 15.1ms
97:	learn: 15.4449618	total: 492ms	remaining: 10ms
98:	learn: 15.3752761	total: 497ms	remaining: 5.02ms
99:	learn: 15.3106595	total: 502ms	remaining: 0us
0:	learn: 46.7142257	total: 5.43ms	remaining: 538ms
1:	learn: 45.7634153	total: 10.6ms	remaining: 521ms
2:	learn: 45.0054253	total: 15.7ms	remaining: 507ms
3:	learn: 44.2120432	total: 20.6ms	remaining: 494ms
4:	learn: 43.3960472	total: 25.8ms	remaining: 491ms
5:	learn: 42.8588120	total: 30.9ms	remaining: 484ms
6:	learn: 41.9533701	total: 35.6ms	remaining: 473ms
7:	learn: 41.2745030	total: 40.8ms	remaining: 469ms
8:	learn: 40.6797495	total: 46.1ms	remaining: 466ms
9:	learn: 39.9899571	total: 51.4ms	remaining: 462ms
10:	learn: 39.4682100	total: 55.3ms	remaining: 447ms
11:	learn: 39.0305595	total: 59.2ms	remaining: 434ms
12:	learn: 38.4200417	total: 63.5ms	remaining: 425ms
13:	learn: 37.8425194	total: 67.2ms	remaining: 413ms
14:	learn: 37.4203127	total: 71.3ms	remaining: 404ms
15:	learn: 36.9917688	total: 75.5ms	remaining: 396ms
16:	learn: 36.5544138	total: 79.9ms	remaining: 390ms
17:	learn: 36.0727019	total: 84.1ms	remaining: 383ms
18:	learn: 35.4835715	total: 88.4ms	remaining: 377ms
19:	learn: 34.9865654	total: 92.5ms	remaining: 370ms
20:	learn: 34.6063373	total: 96.3ms	remaining: 362ms
21:	learn: 34.0997289	total: 100ms	remaining: 356ms
22:	learn: 33.7313171	total: 105ms	remaining: 352ms
23:	learn: 33.3582000	total: 109ms	remaining: 346ms
24:	learn: 32.9432456	total: 113ms	remaining: 340ms
25:	learn: 32.5220888	total: 117ms	remaining: 334ms
26:	learn: 32.2172292	total: 122ms	remaining: 330ms
27:	learn: 31.8972904	total: 126ms	remaining: 325ms
28:	learn: 31.6405350	total: 131ms	remaining: 321ms
29:	learn: 31.4167702	total: 136ms	remaining: 316ms
30:	learn: 30.8541961	total: 137ms	remaining: 306ms
31:	learn: 30.5572111	total: 142ms	remaining: 302ms
32:	learn: 30.1700399	total: 146ms	remaining: 297ms
33:	learn: 29.8537271	total: 151ms	remaining: 294ms
34:	learn: 29.6192540	total: 159ms	remaining: 296ms
35:	learn: 29.3276362	total: 167ms	remaining: 297ms
36:	learn: 28.9985179	total: 175ms	remaining: 298ms
37:	learn: 28.7046880	total: 182ms	remaining: 297ms
38:	learn: 28.4412677	total: 190ms	remaining: 297ms
39:	learn: 28.1277292	total: 195ms	remaining: 293ms
40:	learn: 27.9000750	total: 200ms	remaining: 288ms
41:	learn: 27.5433162	total: 206ms	remaining: 284ms
42:	learn: 27.2493285	total: 211ms	remaining: 280ms
43:	learn: 26.9576632	total: 213ms	remaining: 271ms
44:	learn: 26.6177110	total: 218ms	remaining: 266ms
45:	learn: 26.2812456	total: 223ms	remaining: 262ms
46:	learn: 26.0803859	total: 228ms	remaining: 257ms
47:	learn: 25.9543581	total: 233ms	remaining: 252ms
48:	learn: 25.7951582	total: 238ms	remaining: 248ms
49:	learn: 25.6548184	total: 243ms	remaining: 243ms
50:	learn: 25.4010843	total: 248ms	remaining: 238ms
51:	learn: 24.9773937	total: 253ms	remaining: 234ms
52:	learn: 24.8026156	total: 259ms	remaining: 230ms
53:	learn: 24.5568053	total: 263ms	remaining: 224ms
54:	learn: 24.2281839	total: 268ms	remaining: 219ms
55:	learn: 23.9202795	total: 272ms	remaining: 213ms
56:	learn: 23.7625591	total: 276ms	remaining: 208ms
57:	learn: 23.5429721	total: 280ms	remaining: 202ms
58:	learn: 23.3175893	total: 284ms	remaining: 197ms
59:	learn: 23.2035130	total: 288ms	remaining: 192ms
60:	learn: 23.0232450	total: 292ms	remaining: 187ms
61:	learn: 22.8384958	total: 296ms	remaining: 181ms
62:	learn: 22.6499902	total: 300ms	remaining: 176ms
63:	learn: 22.4577426	total: 304ms	remaining: 171ms
64:	learn: 22.3333158	total: 308ms	remaining: 166ms
65:	learn: 22.2064131	total: 312ms	remaining: 161ms
66:	learn: 22.1434971	total: 316ms	remaining: 155ms
67:	learn: 21.9596519	total: 320ms	remaining: 151ms
68:	learn: 21.8475576	total: 325ms	remaining: 146ms
69:	learn: 21.6954745	total: 330ms	remaining: 141ms
70:	learn: 21.5635976	total: 334ms	remaining: 136ms
71:	learn: 21.4588506	total: 338ms	remaining: 132ms
72:	learn: 21.3527268	total: 343ms	remaining: 127ms
73:	learn: 21.2661288	total: 347ms	remaining: 122ms
74:	learn: 21.1817333	total: 352ms	remaining: 117ms
75:	learn: 21.0527553	total: 361ms	remaining: 114ms
76:	learn: 20.9229021	total: 369ms	remaining: 110ms
77:	learn: 20.7563946	total: 377ms	remaining: 106ms
78:	learn: 20.6569831	total: 385ms	remaining: 102ms
79:	learn: 20.4982663	total: 390ms	remaining: 97.4ms
80:	learn: 20.3185460	total: 395ms	remaining: 92.7ms
81:	learn: 20.2096241	total: 400ms	remaining: 87.9ms
82:	learn: 20.1274891	total: 405ms	remaining: 83ms
83:	learn: 20.0740139	total: 410ms	remaining: 78.2ms
84:	learn: 19.9630699	total: 415ms	remaining: 73.3ms
85:	learn: 19.8753899	total: 420ms	remaining: 68.4ms
86:	learn: 19.6563612	total: 426ms	remaining: 63.6ms
87:	learn: 19.4680232	total: 431ms	remaining: 58.7ms
88:	learn: 19.3503431	total: 435ms	remaining: 53.8ms
89:	learn: 19.2221379	total: 440ms	remaining: 48.9ms
90:	learn: 19.0732542	total: 445ms	remaining: 44ms
91:	learn: 18.9825190	total: 450ms	remaining: 39.1ms
92:	learn: 18.8839009	total: 455ms	remaining: 34.3ms
93:	learn: 18.8012219	total: 460ms	remaining: 29.3ms
94:	learn: 18.7172713	total: 463ms	remaining: 24.4ms
95:	learn: 18.6201170	total: 467ms	remaining: 19.5ms
96:	learn: 18.5318611	total: 471ms	remaining: 14.6ms
97:	learn: 18.3833356	total: 475ms	remaining: 9.7ms
98:	learn: 18.3289700	total: 480ms	remaining: 4.85ms
99:	learn: 18.2227333	total: 484ms	remaining: 0us
0:	learn: 46.3764524	total: 4.87ms	remaining: 483ms
1:	learn: 45.5561269	total: 9.43ms	remaining: 462ms
2:	learn: 44.8811245	total: 13.8ms	remaining: 446ms
3:	learn: 44.0788617	total: 18.3ms	remaining: 440ms
4:	learn: 43.3619790	total: 23.2ms	remaining: 441ms
5:	learn: 42.6912112	total: 31.1ms	remaining: 487ms
6:	learn: 42.2292118	total: 38.3ms	remaining: 509ms
7:	learn: 41.7725191	total: 45.6ms	remaining: 524ms
8:	learn: 41.1676614	total: 51.6ms	remaining: 522ms
9:	learn: 40.5771076	total: 59.4ms	remaining: 534ms
10:	learn: 39.8343757	total: 64.7ms	remaining: 524ms
11:	learn: 39.3761142	total: 69.9ms	remaining: 512ms
12:	learn: 38.5254692	total: 75.3ms	remaining: 504ms
13:	learn: 37.9629555	total: 80.6ms	remaining: 495ms
14:	learn: 37.4418438	total: 85.6ms	remaining: 485ms
15:	learn: 37.0507283	total: 90.8ms	remaining: 476ms
16:	learn: 36.6264217	total: 96.3ms	remaining: 470ms
17:	learn: 36.1114940	total: 102ms	remaining: 463ms
18:	learn: 35.7193862	total: 107ms	remaining: 455ms
19:	learn: 35.3301177	total: 112ms	remaining: 448ms
20:	learn: 35.0598280	total: 117ms	remaining: 439ms
21:	learn: 34.5469736	total: 122ms	remaining: 432ms
22:	learn: 34.2064215	total: 127ms	remaining: 426ms
23:	learn: 33.7280710	total: 132ms	remaining: 419ms
24:	learn: 33.3282940	total: 137ms	remaining: 411ms
25:	learn: 32.8478961	total: 141ms	remaining: 402ms
26:	learn: 32.5722164	total: 146ms	remaining: 394ms
27:	learn: 32.2457019	total: 150ms	remaining: 385ms
28:	learn: 31.9230495	total: 154ms	remaining: 378ms
29:	learn: 31.4311611	total: 159ms	remaining: 370ms
30:	learn: 30.9179052	total: 163ms	remaining: 363ms
31:	learn: 30.6201141	total: 167ms	remaining: 356ms
32:	learn: 30.3421106	total: 172ms	remaining: 348ms
33:	learn: 29.9885373	total: 176ms	remaining: 341ms
34:	learn: 29.7462780	total: 181ms	remaining: 336ms
35:	learn: 29.3607153	total: 186ms	remaining: 330ms
36:	learn: 29.1793078	total: 190ms	remaining: 324ms
37:	learn: 28.9276538	total: 195ms	remaining: 318ms
38:	learn: 28.6903934	total: 200ms	remaining: 312ms
39:	learn: 28.2095033	total: 204ms	remaining: 307ms
40:	learn: 27.7990608	total: 209ms	remaining: 301ms
41:	learn: 27.5406632	total: 214ms	remaining: 295ms
42:	learn: 27.2575376	total: 218ms	remaining: 289ms
43:	learn: 26.9741707	total: 222ms	remaining: 282ms
44:	learn: 26.6606899	total: 227ms	remaining: 277ms
45:	learn: 26.4015833	total: 232ms	remaining: 272ms
46:	learn: 26.1828993	total: 236ms	remaining: 266ms
47:	learn: 26.0233709	total: 238ms	remaining: 258ms
48:	learn: 25.9300399	total: 243ms	remaining: 253ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 251ms	remaining: 242ms
51:	learn: 25.1595644	total: 256ms	remaining: 236ms
52:	learn: 24.9955303	total: 260ms	remaining: 231ms
53:	learn: 24.7273966	total: 270ms	remaining: 230ms
54:	learn: 24.5747978	total: 277ms	remaining: 226ms
55:	learn: 24.3807977	total: 286ms	remaining: 225ms
56:	learn: 24.1689569	total: 293ms	remaining: 221ms
57:	learn: 23.9898221	total: 298ms	remaining: 216ms
58:	learn: 23.7566414	total: 304ms	remaining: 211ms
59:	learn: 23.6641165	total: 308ms	remaining: 206ms
60:	learn: 23.5658066	total: 313ms	remaining: 200ms
61:	learn: 23.4338851	total: 319ms	remaining: 195ms
62:	learn: 23.2408837	total: 324ms	remaining: 190ms
63:	learn: 23.0642038	total: 329ms	remaining: 185ms
64:	learn: 22.9032045	total: 333ms	remaining: 180ms
65:	learn: 22.7736138	total: 339ms	remaining: 175ms
66:	learn: 22.6836443	total: 344ms	remaining: 169ms
67:	learn: 22.5983654	total: 349ms	remaining: 164ms
68:	learn: 22.4419813	total: 354ms	remaining: 159ms
69:	learn: 22.2863339	total: 359ms	remaining: 154ms
70:	learn: 22.1792943	total: 364ms	remaining: 149ms
71:	learn: 22.1130574	total: 368ms	remaining: 143ms
72:	learn: 21.9858161	total: 373ms	remaining: 138ms
73:	learn: 21.8577784	total: 377ms	remaining: 132ms
74:	learn: 21.7845222	total: 381ms	remaining: 127ms
75:	learn: 21.6831390	total: 385ms	remaining: 122ms
76:	learn: 21.6292521	total: 389ms	remaining: 116ms
77:	learn: 21.5789330	total: 393ms	remaining: 111ms
78:	learn: 21.5420942	total: 397ms	remaining: 105ms
79:	learn: 21.4280939	total: 401ms	remaining: 100ms
80:	learn: 21.3641165	total: 405ms	remaining: 95ms
81:	learn: 21.2734814	total: 409ms	remaining: 89.8ms
82:	learn: 21.2220323	total: 414ms	remaining: 84.7ms
83:	learn: 21.0625792	total: 418ms	remaining: 79.6ms
84:	learn: 20.9488320	total: 423ms	remaining: 74.7ms
85:	learn: 20.8504255	total: 428ms	remaining: 69.6ms
86:	learn: 20.7848510	total: 432ms	remaining: 64.6ms
87:	learn: 20.7247442	total: 437ms	remaining: 59.6ms
88:	learn: 20.5698590	total: 442ms	remaining: 54.6ms
89:	learn: 20.4067620	total: 446ms	remaining: 49.6ms
90:	learn: 20.3062482	total: 451ms	remaining: 44.6ms
91:	learn: 20.2029696	total: 455ms	remaining: 39.6ms
92:	learn: 20.1384849	total: 463ms	remaining: 34.9ms
93:	learn: 20.0260709	total: 471ms	remaining: 30.1ms
94:	learn: 19.9122100	total: 481ms	remaining: 25.3ms
95:	learn: 19.8648487	total: 488ms	remaining: 20.3ms
96:	learn: 19.8207072	total: 494ms	remaining: 15.3ms
97:	learn: 19.7261189	total: 500ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 505ms	remaining: 5.1ms
99:	learn: 19.6546645	total: 509ms	remaining: 0us
0:	learn: 47.0239288	total: 5.6ms	remaining: 554ms
1:	learn: 46.2253829	total: 9.77ms	remaining: 479ms
2:	learn: 45.5580301	total: 13.9ms	remaining: 449ms
3:	learn: 44.7273237	total: 18.1ms	remaining: 435ms
4:	learn: 43.8867421	total: 22ms	remaining: 418ms
5:	learn: 43.3615911	total: 26ms	remaining: 407ms
6:	learn: 42.8548390	total: 29.8ms	remaining: 396ms
7:	learn: 42.1606758	total: 33.6ms	remaining: 386ms
8:	learn: 41.6625870	total: 37.9ms	remaining: 384ms
9:	learn: 40.9497092	total: 42.2ms	remaining: 380ms
10:	learn: 40.1886318	total: 46ms	remaining: 373ms
11:	learn: 39.7456423	total: 50.3ms	remaining: 369ms
12:	learn: 39.1171373	total: 54.7ms	remaining: 366ms
13:	learn: 38.5451069	total: 58.9ms	remaining: 362ms
14:	learn: 38.0155834	total: 63ms	remaining: 357ms
15:	learn: 37.5631354	total: 66.9ms	remaining: 351ms
16:	learn: 37.1030023	total: 71ms	remaining: 347ms
17:	learn: 36.4563029	total: 75ms	remaining: 342ms
18:	learn: 36.0160976	total: 79.5ms	remaining: 339ms
19:	learn: 35.5079827	total: 83.8ms	remaining: 335ms
20:	learn: 35.2111885	total: 88.5ms	remaining: 333ms
21:	learn: 34.9397465	total: 93ms	remaining: 330ms
22:	learn: 34.5270048	total: 97.3ms	remaining: 326ms
23:	learn: 34.0169260	total: 102ms	remaining: 322ms
24:	learn: 33.7454892	total: 106ms	remaining: 319ms
25:	learn: 33.2648157	total: 111ms	remaining: 315ms
26:	learn: 32.8899427	total: 118ms	remaining: 319ms
27:	learn: 32.6185050	total: 125ms	remaining: 322ms
28:	learn: 32.3528531	total: 133ms	remaining: 326ms
29:	learn: 32.0859923	total: 150ms	remaining: 349ms
30:	learn: 31.6511144	total: 155ms	remaining: 344ms
31:	learn: 31.2571765	total: 160ms	remaining: 340ms
32:	learn: 30.9770049	total: 165ms	remaining: 334ms
33:	learn: 30.6084872	total: 170ms	remaining: 329ms
34:	learn: 30.3448632	total: 175ms	remaining: 325ms
35:	learn: 30.0360942	total: 180ms	remaining: 320ms
36:	learn: 29.6648968	total: 185ms	remaining: 315ms
37:	learn: 29.3165114	total: 190ms	remaining: 310ms
38:	learn: 29.0829198	total: 195ms	remaining: 306ms
39:	learn: 28.7752064	total: 200ms	remaining: 300ms
40:	learn: 28.3622191	total: 205ms	remaining: 295ms
41:	learn: 28.1346631	total: 210ms	remaining: 291ms
42:	learn: 27.9585719	total: 216ms	remaining: 286ms
43:	learn: 27.6565566	total: 219ms	remaining: 279ms
44:	learn: 27.3616172	total: 223ms	remaining: 273ms
45:	learn: 27.0658637	total: 228ms	remaining: 267ms
46:	learn: 26.8660382	total: 231ms	remaining: 261ms
47:	learn: 26.6536078	total: 236ms	remaining: 255ms
48:	learn: 26.3524440	total: 240ms	remaining: 249ms
49:	learn: 26.1595277	total: 244ms	remaining: 244ms
50:	learn: 25.9273523	total: 248ms	remaining: 238ms
51:	learn: 25.7195580	total: 252ms	remaining: 233ms
52:	learn: 25.5730225	total: 256ms	remaining: 227ms
53:	learn: 25.3455276	total: 261ms	remaining: 222ms
54:	learn: 25.2289675	total: 264ms	remaining: 216ms
55:	learn: 25.0133024	total: 268ms	remaining: 211ms
56:	learn: 24.8406714	total: 272ms	remaining: 205ms
57:	learn: 24.6367857	total: 277ms	remaining: 200ms
58:	learn: 24.5338177	total: 282ms	remaining: 196ms
59:	learn: 24.3799964	total: 286ms	remaining: 191ms
60:	learn: 24.1447492	total: 291ms	remaining: 186ms
61:	learn: 23.9880495	total: 295ms	remaining: 181ms
62:	learn: 23.7140630	total: 299ms	remaining: 176ms
63:	learn: 23.5003791	total: 303ms	remaining: 171ms
64:	learn: 23.3207645	total: 308ms	remaining: 166ms
65:	learn: 23.1958356	total: 316ms	remaining: 163ms
66:	learn: 23.0471302	total: 323ms	remaining: 159ms
67:	learn: 22.8977183	total: 332ms	remaining: 156ms
68:	learn: 22.7187400	total: 340ms	remaining: 153ms
69:	learn: 22.6523405	total: 345ms	remaining: 148ms
70:	learn: 22.4767453	total: 350ms	remaining: 143ms
71:	learn: 22.3243677	total: 355ms	remaining: 138ms
72:	learn: 22.2133096	total: 360ms	remaining: 133ms
73:	learn: 22.1151713	total: 366ms	remaining: 128ms
74:	learn: 22.0296666	total: 371ms	remaining: 124ms
75:	learn: 21.9195980	total: 375ms	remaining: 119ms
76:	learn: 21.8401730	total: 380ms	remaining: 114ms
77:	learn: 21.8079797	total: 385ms	remaining: 109ms
78:	learn: 21.7274109	total: 390ms	remaining: 104ms
79:	learn: 21.6663032	total: 395ms	remaining: 98.7ms
80:	learn: 21.5633117	total: 400ms	remaining: 93.7ms
81:	learn: 21.4542467	total: 405ms	remaining: 88.9ms
82:	learn: 21.3177957	total: 411ms	remaining: 84.1ms
83:	learn: 21.1289167	total: 415ms	remaining: 79ms
84:	learn: 21.0297368	total: 419ms	remaining: 73.9ms
85:	learn: 20.9089564	total: 423ms	remaining: 68.9ms
86:	learn: 20.7653988	total: 427ms	remaining: 63.8ms
87:	learn: 20.6521894	total: 431ms	remaining: 58.7ms
88:	learn: 20.5193021	total: 435ms	remaining: 53.7ms
89:	learn: 20.4361620	total: 439ms	remaining: 48.8ms
90:	learn: 20.3546710	total: 443ms	remaining: 43.8ms
91:	learn: 20.2513296	total: 447ms	remaining: 38.8ms
92:	learn: 20.1605550	total: 450ms	remaining: 33.9ms
93:	learn: 20.0515942	total: 455ms	remaining: 29ms
94:	learn: 19.9800764	total: 459ms	remaining: 24.1ms
95:	learn: 19.8996532	total: 463ms	remaining: 19.3ms
96:	learn: 19.8450910	total: 467ms	remaining: 14.4ms
97:	learn: 19.7887346	total: 471ms	remaining: 9.62ms
98:	learn: 19.7230872	total: 476ms	remaining: 4.81ms
99:	learn: 19.6328825	total: 481ms	remaining: 0us
0:	learn: 27.5585353	total: 5.54ms	remaining: 548ms
1:	learn: 27.1656995	total: 10.7ms	remaining: 523ms
2:	learn: 26.8590175	total: 15.7ms	remaining: 507ms
3:	learn: 26.5818406	total: 20.7ms	remaining: 497ms
4:	learn: 26.1148663	total: 26ms	remaining: 494ms
5:	learn: 25.7690484	total: 31ms	remaining: 485ms
6:	learn: 25.3489206	total: 35.8ms	remaining: 476ms
7:	learn: 24.9542406	total: 41.7ms	remaining: 480ms
8:	learn: 24.6777517	total: 46.8ms	remaining: 473ms
9:	learn: 24.3242344	total: 52ms	remaining: 468ms
10:	learn: 24.0383073	total: 56.5ms	remaining: 457ms
11:	learn: 23.7383420	total: 61.9ms	remaining: 454ms
12:	learn: 23.3461670	total: 66.9ms	remaining: 447ms
13:	learn: 23.0928636	total: 71.5ms	remaining: 440ms
14:	learn: 22.8770414	total: 76.7ms	remaining: 435ms
15:	learn: 22.6323214	total: 81.3ms	remaining: 427ms
16:	learn: 22.3597072	total: 86.1ms	remaining: 420ms
17:	learn: 22.1079813	total: 90.6ms	remaining: 413ms
18:	learn: 21.8421199	total: 95.6ms	remaining: 407ms
19:	learn: 21.6576508	total: 100ms	remaining: 400ms
20:	learn: 21.4301268	total: 105ms	remaining: 393ms
21:	learn: 21.2287388	total: 109ms	remaining: 385ms
22:	learn: 21.0553872	total: 113ms	remaining: 379ms
23:	learn: 20.8977091	total: 118ms	remaining: 372ms
24:	learn: 20.6619051	total: 122ms	remaining: 367ms
25:	learn: 20.5040955	total: 126ms	remaining: 360ms
26:	learn: 20.3181195	total: 131ms	remaining: 354ms
27:	learn: 20.0869436	total: 136ms	remaining: 349ms
28:	learn: 19.9375985	total: 141ms	remaining: 344ms
29:	learn: 19.8247516	total: 146ms	remaining: 340ms
30:	learn: 19.6261697	total: 150ms	remaining: 334ms
31:	learn: 19.4547236	total: 154ms	remaining: 328ms
32:	learn: 19.3157092	total: 159ms	remaining: 322ms
33:	learn: 19.1561419	total: 163ms	remaining: 317ms
34:	learn: 19.0453620	total: 167ms	remaining: 311ms
35:	learn: 18.8738574	total: 175ms	remaining: 311ms
36:	learn: 18.7072907	total: 182ms	remaining: 311ms
37:	learn: 18.5877943	total: 189ms	remaining: 309ms
38:	learn: 18.4436380	total: 196ms	remaining: 306ms
39:	learn: 18.3463356	total: 203ms	remaining: 305ms
40:	learn: 18.2008059	total: 208ms	remaining: 300ms
41:	learn: 18.0582079	total: 214ms	remaining: 295ms
42:	learn: 17.8891982	total: 219ms	remaining: 290ms
43:	learn: 17.7332246	total: 224ms	remaining: 285ms
44:	learn: 17.6206421	total: 229ms	remaining: 280ms
45:	learn: 17.4982800	total: 234ms	remaining: 275ms
46:	learn: 17.3970150	total: 239ms	remaining: 269ms
47:	learn: 17.3058203	total: 244ms	remaining: 265ms
48:	learn: 17.1789256	total: 250ms	remaining: 260ms
49:	learn: 17.0916229	total: 255ms	remaining: 255ms
50:	learn: 16.9859820	total: 260ms	remaining: 250ms
51:	learn: 16.8995582	total: 264ms	remaining: 244ms
52:	learn: 16.8137014	total: 270ms	remaining: 239ms
53:	learn: 16.7021451	total: 275ms	remaining: 234ms
54:	learn: 16.5895582	total: 279ms	remaining: 229ms
55:	learn: 16.5015639	total: 284ms	remaining: 223ms
56:	learn: 16.4356637	total: 288ms	remaining: 217ms
57:	learn: 16.3514525	total: 292ms	remaining: 211ms
58:	learn: 16.2401369	total: 296ms	remaining: 205ms
59:	learn: 16.1293223	total: 300ms	remaining: 200ms
60:	learn: 16.0271167	total: 304ms	remaining: 195ms
61:	learn: 15.9126257	total: 309ms	remaining: 189ms
62:	learn: 15.8391096	total: 313ms	remaining: 184ms
63:	learn: 15.7441773	total: 318ms	remaining: 179ms
64:	learn: 15.6885195	total: 322ms	remaining: 173ms
65:	learn: 15.6052039	total: 326ms	remaining: 168ms
66:	learn: 15.5074202	total: 330ms	remaining: 163ms
67:	learn: 15.4054338	total: 335ms	remaining: 158ms
68:	learn: 15.2885714	total: 340ms	remaining: 153ms
69:	learn: 15.2157472	total: 344ms	remaining: 148ms
70:	learn: 15.1031554	total: 349ms	remaining: 143ms
71:	learn: 15.0237470	total: 354ms	remaining: 138ms
72:	learn: 14.9756825	total: 359ms	remaining: 133ms
73:	learn: 14.8840596	total: 364ms	remaining: 128ms
74:	learn: 14.8077061	total: 371ms	remaining: 124ms
75:	learn: 14.7444437	total: 378ms	remaining: 119ms
76:	learn: 14.6751720	total: 386ms	remaining: 115ms
77:	learn: 14.5830333	total: 393ms	remaining: 111ms
78:	learn: 14.5241206	total: 401ms	remaining: 107ms
79:	learn: 14.4892731	total: 406ms	remaining: 101ms
80:	learn: 14.4256605	total: 411ms	remaining: 96.4ms
81:	learn: 14.3666860	total: 416ms	remaining: 91.3ms
82:	learn: 14.2938372	total: 421ms	remaining: 86.3ms
83:	learn: 14.2161532	total: 426ms	remaining: 81.2ms
84:	learn: 14.1582910	total: 431ms	remaining: 76.1ms
85:	learn: 14.1029153	total: 436ms	remaining: 71ms
86:	learn: 14.0475835	total: 441ms	remaining: 65.9ms
87:	learn: 13.9892661	total: 446ms	remaining: 60.9ms
88:	learn: 13.9481628	total: 451ms	remaining: 55.8ms
89:	learn: 13.8483991	total: 456ms	remaining: 50.6ms
90:	learn: 13.7775614	total: 461ms	remaining: 45.6ms
91:	learn: 13.7304585	total: 466ms	remaining: 40.5ms
92:	learn: 13.6783381	total: 471ms	remaining: 35.4ms
93:	learn: 13.6356964	total: 475ms	remaining: 30.3ms
94:	learn: 13.5924371	total: 479ms	remaining: 25.2ms
95:	learn: 13.5400746	total: 483ms	remaining: 20.1ms
96:	learn: 13.4897333	total: 487ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 491ms	remaining: 10ms
98:	learn: 13.3856082	total: 495ms	remaining: 5ms
99:	learn: 13.3082371	total: 499ms	remaining: 0us
0:	learn: 43.0395283	total: 5.09ms	remaining: 504ms
1:	learn: 42.1130223	total: 9.55ms	remaining: 468ms
2:	learn: 41.1753409	total: 14ms	remaining: 452ms
3:	learn: 40.3637444	total: 18.3ms	remaining: 440ms
4:	learn: 39.6508088	total: 25.2ms	remaining: 480ms
5:	learn: 38.7217934	total: 32.6ms	remaining: 510ms
6:	learn: 37.8538055	total: 42.4ms	remaining: 563ms
7:	learn: 36.9793574	total: 48.9ms	remaining: 562ms
8:	learn: 36.3076984	total: 56.6ms	remaining: 572ms
9:	learn: 35.6673160	total: 61.7ms	remaining: 555ms
10:	learn: 34.8889800	total: 66.9ms	remaining: 541ms
11:	learn: 34.1675517	total: 71.9ms	remaining: 527ms
12:	learn: 33.6779564	total: 76.8ms	remaining: 514ms
13:	learn: 33.0710039	total: 81.8ms	remaining: 502ms
14:	learn: 32.4966674	total: 86.6ms	remaining: 491ms
15:	learn: 31.9492856	total: 91.8ms	remaining: 482ms
16:	learn: 31.5108129	total: 96.9ms	remaining: 473ms
17:	learn: 30.9804023	total: 102ms	remaining: 465ms
18:	learn: 30.4169089	total: 107ms	remaining: 458ms
19:	learn: 29.8930375	total: 112ms	remaining: 448ms
20:	learn: 29.3974421	total: 118ms	remaining: 442ms
21:	learn: 28.8792307	total: 123ms	remaining: 436ms
22:	learn: 28.3894474	total: 128ms	remaining: 427ms
23:	learn: 27.9921276	total: 132ms	remaining: 418ms
24:	learn: 27.6158887	total: 136ms	remaining: 408ms
25:	learn: 27.2866950	total: 140ms	remaining: 399ms
26:	learn: 26.8770708	total: 144ms	remaining: 390ms
27:	learn: 26.6233005	total: 148ms	remaining: 382ms
28:	learn: 26.2921934	total: 152ms	remaining: 373ms
29:	learn: 25.9156920	total: 156ms	remaining: 365ms
30:	learn: 25.5311106	total: 158ms	remaining: 352ms
31:	learn: 25.2178997	total: 162ms	remaining: 345ms
32:	learn: 24.8572196	total: 166ms	remaining: 337ms
33:	learn: 24.5849710	total: 170ms	remaining: 330ms
34:	learn: 24.2209190	total: 174ms	remaining: 324ms
35:	learn: 23.8708250	total: 189ms	remaining: 337ms
36:	learn: 23.5325279	total: 193ms	remaining: 329ms
37:	learn: 23.2116148	total: 198ms	remaining: 323ms
38:	learn: 22.9696787	total: 202ms	remaining: 316ms
39:	learn: 22.7936783	total: 206ms	remaining: 309ms
40:	learn: 22.6228847	total: 210ms	remaining: 302ms
41:	learn: 22.3691527	total: 214ms	remaining: 296ms
42:	learn: 22.1002173	total: 218ms	remaining: 290ms
43:	learn: 21.9157268	total: 223ms	remaining: 284ms
44:	learn: 21.7229102	total: 227ms	remaining: 278ms
45:	learn: 21.4642005	total: 232ms	remaining: 272ms
46:	learn: 21.3029442	total: 236ms	remaining: 267ms
47:	learn: 21.1469792	total: 241ms	remaining: 262ms
48:	learn: 20.9458235	total: 246ms	remaining: 256ms
49:	learn: 20.7335242	total: 250ms	remaining: 250ms
50:	learn: 20.5440269	total: 257ms	remaining: 247ms
51:	learn: 20.3661449	total: 265ms	remaining: 244ms
52:	learn: 20.2158134	total: 272ms	remaining: 241ms
53:	learn: 19.9934873	total: 279ms	remaining: 238ms
54:	learn: 19.7879739	total: 287ms	remaining: 235ms
55:	learn: 19.6630460	total: 292ms	remaining: 230ms
56:	learn: 19.5152729	total: 297ms	remaining: 224ms
57:	learn: 19.3581128	total: 302ms	remaining: 219ms
58:	learn: 19.2209303	total: 307ms	remaining: 214ms
59:	learn: 19.0965248	total: 312ms	remaining: 208ms
60:	learn: 19.0035954	total: 318ms	remaining: 203ms
61:	learn: 18.8554149	total: 322ms	remaining: 198ms
62:	learn: 18.7095427	total: 328ms	remaining: 192ms
63:	learn: 18.5751494	total: 333ms	remaining: 187ms
64:	learn: 18.4678251	total: 338ms	remaining: 182ms
65:	learn: 18.3500325	total: 343ms	remaining: 177ms
66:	learn: 18.2088983	total: 348ms	remaining: 171ms
67:	learn: 18.0737705	total: 353ms	remaining: 166ms
68:	learn: 17.9325058	total: 359ms	remaining: 161ms
69:	learn: 17.8003911	total: 363ms	remaining: 156ms
70:	learn: 17.7385366	total: 367ms	remaining: 150ms
71:	learn: 17.6106998	total: 372ms	remaining: 145ms
72:	learn: 17.4816270	total: 376ms	remaining: 139ms
73:	learn: 17.4025554	total: 380ms	remaining: 133ms
74:	learn: 17.2902108	total: 384ms	remaining: 128ms
75:	learn: 17.2158048	total: 389ms	remaining: 123ms
76:	learn: 17.1261053	total: 393ms	remaining: 117ms
77:	learn: 17.0308917	total: 397ms	remaining: 112ms
78:	learn: 16.9546705	total: 402ms	remaining: 107ms
79:	learn: 16.8319165	total: 406ms	remaining: 102ms
80:	learn: 16.7687017	total: 410ms	remaining: 96.2ms
81:	learn: 16.6972326	total: 415ms	remaining: 91ms
82:	learn: 16.6124580	total: 420ms	remaining: 85.9ms
83:	learn: 16.4999052	total: 424ms	remaining: 80.8ms
84:	learn: 16.4302484	total: 429ms	remaining: 75.7ms
85:	learn: 16.3201363	total: 433ms	remaining: 70.6ms
86:	learn: 16.2534314	total: 438ms	remaining: 65.4ms
87:	learn: 16.1720485	total: 442ms	remaining: 60.3ms
88:	learn: 16.0625751	total: 447ms	remaining: 55.3ms
89:	learn: 15.9135088	total: 452ms	remaining: 50.3ms
90:	learn: 15.8658863	total: 461ms	remaining: 45.5ms
91:	learn: 15.8066805	total: 468ms	remaining: 40.7ms
92:	learn: 15.7412103	total: 477ms	remaining: 35.9ms
93:	learn: 15.6542776	total: 484ms	remaining: 30.9ms
94:	learn: 15.5760334	total: 490ms	remaining: 25.8ms
95:	learn: 15.5434131	total: 496ms	remaining: 20.7ms
96:	learn: 15.4709561	total: 502ms	remaining: 15.5ms
97:	learn: 15.4449618	total: 507ms	remaining: 10.4ms
98:	learn: 15.3752761	total: 513ms	remaining: 5.18ms
99:	learn: 15.3106595	total: 519ms	remaining: 0us
0:	learn: 46.7142257	total: 4.94ms	remaining: 489ms
1:	learn: 45.7634153	total: 9.4ms	remaining: 461ms
2:	learn: 45.0054253	total: 13.6ms	remaining: 439ms
3:	learn: 44.2120432	total: 18.1ms	remaining: 434ms
4:	learn: 43.3960472	total: 22.5ms	remaining: 428ms
5:	learn: 42.8588120	total: 26.9ms	remaining: 422ms
6:	learn: 41.9533701	total: 31.5ms	remaining: 418ms
7:	learn: 41.2745030	total: 36.2ms	remaining: 416ms
8:	learn: 40.6797495	total: 40.2ms	remaining: 407ms
9:	learn: 39.9899571	total: 44.2ms	remaining: 398ms
10:	learn: 39.4682100	total: 48.3ms	remaining: 391ms
11:	learn: 39.0305595	total: 52.9ms	remaining: 388ms
12:	learn: 38.4200417	total: 57.6ms	remaining: 385ms
13:	learn: 37.8425194	total: 61.8ms	remaining: 380ms
14:	learn: 37.4203127	total: 66.2ms	remaining: 375ms
15:	learn: 36.9917688	total: 70.7ms	remaining: 371ms
16:	learn: 36.5544138	total: 75.3ms	remaining: 368ms
17:	learn: 36.0727019	total: 80.2ms	remaining: 365ms
18:	learn: 35.4835715	total: 85ms	remaining: 362ms
19:	learn: 34.9865654	total: 93.9ms	remaining: 376ms
20:	learn: 34.6063373	total: 101ms	remaining: 379ms
21:	learn: 34.0997289	total: 109ms	remaining: 387ms
22:	learn: 33.7313171	total: 116ms	remaining: 389ms
23:	learn: 33.3582000	total: 122ms	remaining: 385ms
24:	learn: 32.9432456	total: 127ms	remaining: 380ms
25:	learn: 32.5220888	total: 132ms	remaining: 375ms
26:	learn: 32.2172292	total: 137ms	remaining: 370ms
27:	learn: 31.8972904	total: 142ms	remaining: 365ms
28:	learn: 31.6405350	total: 160ms	remaining: 392ms
29:	learn: 31.4167702	total: 164ms	remaining: 384ms
30:	learn: 30.8541961	total: 166ms	remaining: 370ms
31:	learn: 30.5572111	total: 171ms	remaining: 363ms
32:	learn: 30.1700399	total: 176ms	remaining: 357ms
33:	learn: 29.8537271	total: 181ms	remaining: 351ms
34:	learn: 29.6192540	total: 186ms	remaining: 345ms
35:	learn: 29.3276362	total: 191ms	remaining: 340ms
36:	learn: 28.9985179	total: 195ms	remaining: 333ms
37:	learn: 28.7046880	total: 199ms	remaining: 325ms
38:	learn: 28.4412677	total: 203ms	remaining: 318ms
39:	learn: 28.1277292	total: 207ms	remaining: 311ms
40:	learn: 27.9000750	total: 212ms	remaining: 305ms
41:	learn: 27.5433162	total: 216ms	remaining: 298ms
42:	learn: 27.2493285	total: 220ms	remaining: 292ms
43:	learn: 26.9576632	total: 222ms	remaining: 282ms
44:	learn: 26.6177110	total: 226ms	remaining: 276ms
45:	learn: 26.2812456	total: 231ms	remaining: 271ms
46:	learn: 26.0803859	total: 236ms	remaining: 266ms
47:	learn: 25.9543581	total: 240ms	remaining: 260ms
48:	learn: 25.7951582	total: 244ms	remaining: 254ms
49:	learn: 25.6548184	total: 249ms	remaining: 249ms
50:	learn: 25.4010843	total: 254ms	remaining: 244ms
51:	learn: 24.9773937	total: 259ms	remaining: 239ms
52:	learn: 24.8026156	total: 263ms	remaining: 233ms
53:	learn: 24.5568053	total: 268ms	remaining: 228ms
54:	learn: 24.2281839	total: 272ms	remaining: 223ms
55:	learn: 23.9202795	total: 276ms	remaining: 217ms
56:	learn: 23.7625591	total: 281ms	remaining: 212ms
57:	learn: 23.5429721	total: 285ms	remaining: 207ms
58:	learn: 23.3175893	total: 294ms	remaining: 204ms
59:	learn: 23.2035130	total: 302ms	remaining: 201ms
60:	learn: 23.0232450	total: 310ms	remaining: 198ms
61:	learn: 22.8384958	total: 316ms	remaining: 194ms
62:	learn: 22.6499902	total: 322ms	remaining: 189ms
63:	learn: 22.4577426	total: 328ms	remaining: 184ms
64:	learn: 22.3333158	total: 333ms	remaining: 179ms
65:	learn: 22.2064131	total: 338ms	remaining: 174ms
66:	learn: 22.1434971	total: 343ms	remaining: 169ms
67:	learn: 21.9596519	total: 348ms	remaining: 164ms
68:	learn: 21.8475576	total: 360ms	remaining: 162ms
69:	learn: 21.6954745	total: 365ms	remaining: 156ms
70:	learn: 21.5635976	total: 370ms	remaining: 151ms
71:	learn: 21.4588506	total: 375ms	remaining: 146ms
72:	learn: 21.3527268	total: 380ms	remaining: 141ms
73:	learn: 21.2661288	total: 386ms	remaining: 136ms
74:	learn: 21.1817333	total: 391ms	remaining: 130ms
75:	learn: 21.0527553	total: 394ms	remaining: 125ms
76:	learn: 20.9229021	total: 398ms	remaining: 119ms
77:	learn: 20.7563946	total: 402ms	remaining: 113ms
78:	learn: 20.6569831	total: 407ms	remaining: 108ms
79:	learn: 20.4982663	total: 411ms	remaining: 103ms
80:	learn: 20.3185460	total: 415ms	remaining: 97.2ms
81:	learn: 20.2096241	total: 419ms	remaining: 92ms
82:	learn: 20.1274891	total: 423ms	remaining: 86.6ms
83:	learn: 20.0740139	total: 427ms	remaining: 81.3ms
84:	learn: 19.9630699	total: 431ms	remaining: 76ms
85:	learn: 19.8753899	total: 435ms	remaining: 70.8ms
86:	learn: 19.6563612	total: 439ms	remaining: 65.6ms
87:	learn: 19.4680232	total: 443ms	remaining: 60.4ms
88:	learn: 19.3503431	total: 447ms	remaining: 55.3ms
89:	learn: 19.2221379	total: 452ms	remaining: 50.2ms
90:	learn: 19.0732542	total: 457ms	remaining: 45.2ms
91:	learn: 18.9825190	total: 461ms	remaining: 40.1ms
92:	learn: 18.8839009	total: 466ms	remaining: 35.1ms
93:	learn: 18.8012219	total: 470ms	remaining: 30ms
94:	learn: 18.7172713	total: 475ms	remaining: 25ms
95:	learn: 18.6201170	total: 479ms	remaining: 20ms
96:	learn: 18.5318611	total: 484ms	remaining: 15ms
97:	learn: 18.3833356	total: 492ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 500ms	remaining: 5.05ms
99:	learn: 18.2227333	total: 509ms	remaining: 0us
0:	learn: 46.3764524	total: 5.26ms	remaining: 521ms
1:	learn: 45.5561269	total: 10.2ms	remaining: 499ms
2:	learn: 44.8811245	total: 15.3ms	remaining: 496ms
3:	learn: 44.0788617	total: 21.1ms	remaining: 505ms
4:	learn: 43.3619790	total: 25.7ms	remaining: 489ms
5:	learn: 42.6912112	total: 29.7ms	remaining: 465ms
6:	learn: 42.2292118	total: 33.6ms	remaining: 446ms
7:	learn: 41.7725191	total: 37.5ms	remaining: 432ms
8:	learn: 41.1676614	total: 41.5ms	remaining: 420ms
9:	learn: 40.5771076	total: 45.5ms	remaining: 410ms
10:	learn: 39.8343757	total: 49.3ms	remaining: 399ms
11:	learn: 39.3761142	total: 53.3ms	remaining: 391ms
12:	learn: 38.5254692	total: 57.2ms	remaining: 383ms
13:	learn: 37.9629555	total: 61.8ms	remaining: 380ms
14:	learn: 37.4418438	total: 66.1ms	remaining: 375ms
15:	learn: 37.0507283	total: 69.9ms	remaining: 367ms
16:	learn: 36.6264217	total: 73.6ms	remaining: 359ms
17:	learn: 36.1114940	total: 78.2ms	remaining: 356ms
18:	learn: 35.7193862	total: 82.3ms	remaining: 351ms
19:	learn: 35.3301177	total: 86.2ms	remaining: 345ms
20:	learn: 35.0598280	total: 90.3ms	remaining: 340ms
21:	learn: 34.5469736	total: 95ms	remaining: 337ms
22:	learn: 34.2064215	total: 99.3ms	remaining: 332ms
23:	learn: 33.7280710	total: 103ms	remaining: 328ms
24:	learn: 33.3282940	total: 108ms	remaining: 323ms
25:	learn: 32.8478961	total: 112ms	remaining: 319ms
26:	learn: 32.5722164	total: 117ms	remaining: 315ms
27:	learn: 32.2457019	total: 121ms	remaining: 310ms
28:	learn: 31.9230495	total: 126ms	remaining: 309ms
29:	learn: 31.4311611	total: 135ms	remaining: 316ms
30:	learn: 30.9179052	total: 143ms	remaining: 318ms
31:	learn: 30.6201141	total: 152ms	remaining: 323ms
32:	learn: 30.3421106	total: 160ms	remaining: 326ms
33:	learn: 29.9885373	total: 166ms	remaining: 322ms
34:	learn: 29.7462780	total: 172ms	remaining: 320ms
35:	learn: 29.3607153	total: 178ms	remaining: 316ms
36:	learn: 29.1793078	total: 184ms	remaining: 313ms
37:	learn: 28.9276538	total: 189ms	remaining: 308ms
38:	learn: 28.6903934	total: 194ms	remaining: 304ms
39:	learn: 28.2095033	total: 200ms	remaining: 299ms
40:	learn: 27.7990608	total: 205ms	remaining: 295ms
41:	learn: 27.5406632	total: 210ms	remaining: 290ms
42:	learn: 27.2575376	total: 215ms	remaining: 285ms
43:	learn: 26.9741707	total: 220ms	remaining: 280ms
44:	learn: 26.6606899	total: 225ms	remaining: 275ms
45:	learn: 26.4015833	total: 231ms	remaining: 271ms
46:	learn: 26.1828993	total: 236ms	remaining: 267ms
47:	learn: 26.0233709	total: 239ms	remaining: 259ms
48:	learn: 25.9300399	total: 244ms	remaining: 254ms
49:	learn: 25.5861489	total: 248ms	remaining: 248ms
50:	learn: 25.4322012	total: 253ms	remaining: 243ms
51:	learn: 25.1595644	total: 258ms	remaining: 238ms
52:	learn: 24.9955303	total: 262ms	remaining: 232ms
53:	learn: 24.7273966	total: 266ms	remaining: 227ms
54:	learn: 24.5747978	total: 271ms	remaining: 222ms
55:	learn: 24.3807977	total: 278ms	remaining: 218ms
56:	learn: 24.1689569	total: 283ms	remaining: 214ms
57:	learn: 23.9898221	total: 289ms	remaining: 209ms
58:	learn: 23.7566414	total: 294ms	remaining: 204ms
59:	learn: 23.6641165	total: 299ms	remaining: 199ms
60:	learn: 23.5658066	total: 304ms	remaining: 195ms
61:	learn: 23.4338851	total: 310ms	remaining: 190ms
62:	learn: 23.2408837	total: 315ms	remaining: 185ms
63:	learn: 23.0642038	total: 320ms	remaining: 180ms
64:	learn: 22.9032045	total: 325ms	remaining: 175ms
65:	learn: 22.7736138	total: 330ms	remaining: 170ms
66:	learn: 22.6836443	total: 338ms	remaining: 166ms
67:	learn: 22.5983654	total: 345ms	remaining: 162ms
68:	learn: 22.4419813	total: 354ms	remaining: 159ms
69:	learn: 22.2863339	total: 361ms	remaining: 155ms
70:	learn: 22.1792943	total: 367ms	remaining: 150ms
71:	learn: 22.1130574	total: 372ms	remaining: 145ms
72:	learn: 21.9858161	total: 378ms	remaining: 140ms
73:	learn: 21.8577784	total: 383ms	remaining: 135ms
74:	learn: 21.7845222	total: 389ms	remaining: 130ms
75:	learn: 21.6831390	total: 395ms	remaining: 125ms
76:	learn: 21.6292521	total: 401ms	remaining: 120ms
77:	learn: 21.5789330	total: 406ms	remaining: 115ms
78:	learn: 21.5420942	total: 415ms	remaining: 110ms
79:	learn: 21.4280939	total: 420ms	remaining: 105ms
80:	learn: 21.3641165	total: 425ms	remaining: 99.6ms
81:	learn: 21.2734814	total: 430ms	remaining: 94.4ms
82:	learn: 21.2220323	total: 435ms	remaining: 89.1ms
83:	learn: 21.0625792	total: 439ms	remaining: 83.7ms
84:	learn: 20.9488320	total: 444ms	remaining: 78.4ms
85:	learn: 20.8504255	total: 448ms	remaining: 73ms
86:	learn: 20.7848510	total: 452ms	remaining: 67.5ms
87:	learn: 20.7247442	total: 456ms	remaining: 62.2ms
88:	learn: 20.5698590	total: 460ms	remaining: 56.9ms
89:	learn: 20.4067620	total: 465ms	remaining: 51.6ms
90:	learn: 20.3062482	total: 469ms	remaining: 46.3ms
91:	learn: 20.2029696	total: 473ms	remaining: 41.1ms
92:	learn: 20.1384849	total: 478ms	remaining: 36ms
93:	learn: 20.0260709	total: 483ms	remaining: 30.8ms
94:	learn: 19.9122100	total: 487ms	remaining: 25.6ms
95:	learn: 19.8648487	total: 491ms	remaining: 20.5ms
96:	learn: 19.8207072	total: 496ms	remaining: 15.3ms
97:	learn: 19.7261189	total: 501ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 505ms	remaining: 5.1ms
99:	learn: 19.6546645	total: 510ms	remaining: 0us
0:	learn: 47.0239288	total: 5.44ms	remaining: 539ms
1:	learn: 46.2253829	total: 10.3ms	remaining: 504ms
2:	learn: 45.5580301	total: 15.2ms	remaining: 493ms
3:	learn: 44.7273237	total: 20.5ms	remaining: 491ms
4:	learn: 43.8867421	total: 25.5ms	remaining: 485ms
5:	learn: 43.3615911	total: 30.5ms	remaining: 477ms
6:	learn: 42.8548390	total: 35.6ms	remaining: 474ms
7:	learn: 42.1606758	total: 40.1ms	remaining: 462ms
8:	learn: 41.6625870	total: 44.8ms	remaining: 453ms
9:	learn: 40.9497092	total: 49ms	remaining: 441ms
10:	learn: 40.1886318	total: 53.3ms	remaining: 431ms
11:	learn: 39.7456423	total: 58.7ms	remaining: 431ms
12:	learn: 39.1171373	total: 63.8ms	remaining: 427ms
13:	learn: 38.5451069	total: 68.4ms	remaining: 420ms
14:	learn: 38.0155834	total: 72.8ms	remaining: 413ms
15:	learn: 37.5631354	total: 76.9ms	remaining: 404ms
16:	learn: 37.1030023	total: 80.8ms	remaining: 394ms
17:	learn: 36.4563029	total: 84.8ms	remaining: 387ms
18:	learn: 36.0160976	total: 89ms	remaining: 379ms
19:	learn: 35.5079827	total: 92.9ms	remaining: 372ms
20:	learn: 35.2111885	total: 96.7ms	remaining: 364ms
21:	learn: 34.9397465	total: 101ms	remaining: 357ms
22:	learn: 34.5270048	total: 104ms	remaining: 350ms
23:	learn: 34.0169260	total: 109ms	remaining: 344ms
24:	learn: 33.7454892	total: 113ms	remaining: 338ms
25:	learn: 33.2648157	total: 117ms	remaining: 334ms
26:	learn: 32.8899427	total: 122ms	remaining: 330ms
27:	learn: 32.6185050	total: 126ms	remaining: 325ms
28:	learn: 32.3528531	total: 131ms	remaining: 321ms
29:	learn: 32.0859923	total: 136ms	remaining: 317ms
30:	learn: 31.6511144	total: 141ms	remaining: 314ms
31:	learn: 31.2571765	total: 146ms	remaining: 310ms
32:	learn: 30.9770049	total: 150ms	remaining: 305ms
33:	learn: 30.6084872	total: 155ms	remaining: 300ms
34:	learn: 30.3448632	total: 159ms	remaining: 296ms
35:	learn: 30.0360942	total: 164ms	remaining: 291ms
36:	learn: 29.6648968	total: 172ms	remaining: 293ms
37:	learn: 29.3165114	total: 180ms	remaining: 294ms
38:	learn: 29.0829198	total: 189ms	remaining: 295ms
39:	learn: 28.7752064	total: 195ms	remaining: 293ms
40:	learn: 28.3622191	total: 200ms	remaining: 288ms
41:	learn: 28.1346631	total: 206ms	remaining: 284ms
42:	learn: 27.9585719	total: 211ms	remaining: 280ms
43:	learn: 27.6565566	total: 216ms	remaining: 275ms
44:	learn: 27.3616172	total: 222ms	remaining: 271ms
45:	learn: 27.0658637	total: 236ms	remaining: 277ms
46:	learn: 26.8660382	total: 241ms	remaining: 272ms
47:	learn: 26.6536078	total: 246ms	remaining: 267ms
48:	learn: 26.3524440	total: 251ms	remaining: 262ms
49:	learn: 26.1595277	total: 256ms	remaining: 256ms
50:	learn: 25.9273523	total: 261ms	remaining: 251ms
51:	learn: 25.7195580	total: 266ms	remaining: 246ms
52:	learn: 25.5730225	total: 271ms	remaining: 240ms
53:	learn: 25.3455276	total: 275ms	remaining: 234ms
54:	learn: 25.2289675	total: 279ms	remaining: 228ms
55:	learn: 25.0133024	total: 283ms	remaining: 222ms
56:	learn: 24.8406714	total: 287ms	remaining: 217ms
57:	learn: 24.6367857	total: 291ms	remaining: 211ms
58:	learn: 24.5338177	total: 295ms	remaining: 205ms
59:	learn: 24.3799964	total: 300ms	remaining: 200ms
60:	learn: 24.1447492	total: 304ms	remaining: 195ms
61:	learn: 23.9880495	total: 309ms	remaining: 189ms
62:	learn: 23.7140630	total: 313ms	remaining: 184ms
63:	learn: 23.5003791	total: 318ms	remaining: 179ms
64:	learn: 23.3207645	total: 322ms	remaining: 174ms
65:	learn: 23.1958356	total: 327ms	remaining: 168ms
66:	learn: 23.0471302	total: 332ms	remaining: 163ms
67:	learn: 22.8977183	total: 337ms	remaining: 158ms
68:	learn: 22.7187400	total: 342ms	remaining: 153ms
69:	learn: 22.6523405	total: 346ms	remaining: 148ms
70:	learn: 22.4767453	total: 351ms	remaining: 143ms
71:	learn: 22.3243677	total: 356ms	remaining: 138ms
72:	learn: 22.2133096	total: 361ms	remaining: 133ms
73:	learn: 22.1151713	total: 366ms	remaining: 128ms
74:	learn: 22.0296666	total: 374ms	remaining: 125ms
75:	learn: 21.9195980	total: 382ms	remaining: 121ms
76:	learn: 21.8401730	total: 391ms	remaining: 117ms
77:	learn: 21.8079797	total: 397ms	remaining: 112ms
78:	learn: 21.7274109	total: 405ms	remaining: 108ms
79:	learn: 21.6663032	total: 410ms	remaining: 102ms
80:	learn: 21.5633117	total: 415ms	remaining: 97.4ms
81:	learn: 21.4542467	total: 421ms	remaining: 92.3ms
82:	learn: 21.3177957	total: 425ms	remaining: 87.1ms
83:	learn: 21.1289167	total: 430ms	remaining: 82ms
84:	learn: 21.0297368	total: 436ms	remaining: 76.9ms
85:	learn: 20.9089564	total: 441ms	remaining: 71.8ms
86:	learn: 20.7653988	total: 446ms	remaining: 66.7ms
87:	learn: 20.6521894	total: 451ms	remaining: 61.5ms
88:	learn: 20.5193021	total: 456ms	remaining: 56.4ms
89:	learn: 20.4361620	total: 461ms	remaining: 51.2ms
90:	learn: 20.3546710	total: 466ms	remaining: 46.1ms
91:	learn: 20.2513296	total: 471ms	remaining: 41ms
92:	learn: 20.1605550	total: 475ms	remaining: 35.8ms
93:	learn: 20.0515942	total: 479ms	remaining: 30.6ms
94:	learn: 19.9800764	total: 484ms	remaining: 25.4ms
95:	learn: 19.8996532	total: 488ms	remaining: 20.3ms
96:	learn: 19.8450910	total: 492ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 496ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 501ms	remaining: 5.06ms
99:	learn: 19.6328825	total: 505ms	remaining: 0us
0:	learn: 27.5585353	total: 4.9ms	remaining: 485ms
1:	learn: 27.1656995	total: 9.72ms	remaining: 476ms
2:	learn: 26.8590175	total: 22.8ms	remaining: 737ms
3:	learn: 26.5818406	total: 32.3ms	remaining: 774ms
4:	learn: 26.1148663	total: 38.8ms	remaining: 737ms
5:	learn: 25.7690484	total: 45.4ms	remaining: 712ms
6:	learn: 25.3489206	total: 50.7ms	remaining: 673ms
7:	learn: 24.9542406	total: 56.2ms	remaining: 646ms
8:	learn: 24.6777517	total: 61.5ms	remaining: 622ms
9:	learn: 24.3242344	total: 66.6ms	remaining: 600ms
10:	learn: 24.0383073	total: 71.7ms	remaining: 580ms
11:	learn: 23.7383420	total: 76.8ms	remaining: 563ms
12:	learn: 23.3461670	total: 81.9ms	remaining: 548ms
13:	learn: 23.0928636	total: 87.4ms	remaining: 537ms
14:	learn: 22.8770414	total: 92.8ms	remaining: 526ms
15:	learn: 22.6323214	total: 97.5ms	remaining: 512ms
16:	learn: 22.3597072	total: 103ms	remaining: 501ms
17:	learn: 22.1079813	total: 108ms	remaining: 492ms
18:	learn: 21.8421199	total: 114ms	remaining: 485ms
19:	learn: 21.6576508	total: 119ms	remaining: 474ms
20:	learn: 21.4301268	total: 123ms	remaining: 462ms
21:	learn: 21.2287388	total: 127ms	remaining: 450ms
22:	learn: 21.0553872	total: 131ms	remaining: 440ms
23:	learn: 20.8977091	total: 136ms	remaining: 429ms
24:	learn: 20.6619051	total: 140ms	remaining: 420ms
25:	learn: 20.5040955	total: 144ms	remaining: 410ms
26:	learn: 20.3181195	total: 148ms	remaining: 401ms
27:	learn: 20.0869436	total: 153ms	remaining: 393ms
28:	learn: 19.9375985	total: 157ms	remaining: 384ms
29:	learn: 19.8247516	total: 161ms	remaining: 376ms
30:	learn: 19.6261697	total: 165ms	remaining: 368ms
31:	learn: 19.4547236	total: 170ms	remaining: 361ms
32:	learn: 19.3157092	total: 174ms	remaining: 353ms
33:	learn: 19.1561419	total: 178ms	remaining: 346ms
34:	learn: 19.0453620	total: 182ms	remaining: 338ms
35:	learn: 18.8738574	total: 187ms	remaining: 332ms
36:	learn: 18.7072907	total: 191ms	remaining: 325ms
37:	learn: 18.5877943	total: 195ms	remaining: 318ms
38:	learn: 18.4436380	total: 199ms	remaining: 311ms
39:	learn: 18.3463356	total: 203ms	remaining: 305ms
40:	learn: 18.2008059	total: 208ms	remaining: 299ms
41:	learn: 18.0582079	total: 224ms	remaining: 309ms
42:	learn: 17.8891982	total: 229ms	remaining: 303ms
43:	learn: 17.7332246	total: 233ms	remaining: 296ms
44:	learn: 17.6206421	total: 238ms	remaining: 290ms
45:	learn: 17.4982800	total: 242ms	remaining: 284ms
46:	learn: 17.3970150	total: 248ms	remaining: 279ms
47:	learn: 17.3058203	total: 253ms	remaining: 274ms
48:	learn: 17.1789256	total: 258ms	remaining: 268ms
49:	learn: 17.0916229	total: 266ms	remaining: 266ms
50:	learn: 16.9859820	total: 275ms	remaining: 264ms
51:	learn: 16.8995582	total: 283ms	remaining: 261ms
52:	learn: 16.8137014	total: 290ms	remaining: 257ms
53:	learn: 16.7021451	total: 297ms	remaining: 253ms
54:	learn: 16.5895582	total: 302ms	remaining: 247ms
55:	learn: 16.5015639	total: 307ms	remaining: 241ms
56:	learn: 16.4356637	total: 312ms	remaining: 235ms
57:	learn: 16.3514525	total: 317ms	remaining: 230ms
58:	learn: 16.2401369	total: 322ms	remaining: 224ms
59:	learn: 16.1293223	total: 328ms	remaining: 218ms
60:	learn: 16.0271167	total: 333ms	remaining: 213ms
61:	learn: 15.9126257	total: 338ms	remaining: 207ms
62:	learn: 15.8391096	total: 343ms	remaining: 202ms
63:	learn: 15.7441773	total: 348ms	remaining: 196ms
64:	learn: 15.6885195	total: 353ms	remaining: 190ms
65:	learn: 15.6052039	total: 357ms	remaining: 184ms
66:	learn: 15.5074202	total: 363ms	remaining: 179ms
67:	learn: 15.4054338	total: 368ms	remaining: 173ms
68:	learn: 15.2885714	total: 373ms	remaining: 167ms
69:	learn: 15.2157472	total: 377ms	remaining: 162ms
70:	learn: 15.1031554	total: 381ms	remaining: 156ms
71:	learn: 15.0237470	total: 385ms	remaining: 150ms
72:	learn: 14.9756825	total: 389ms	remaining: 144ms
73:	learn: 14.8840596	total: 393ms	remaining: 138ms
74:	learn: 14.8077061	total: 397ms	remaining: 132ms
75:	learn: 14.7444437	total: 401ms	remaining: 127ms
76:	learn: 14.6751720	total: 405ms	remaining: 121ms
77:	learn: 14.5830333	total: 409ms	remaining: 115ms
78:	learn: 14.5241206	total: 414ms	remaining: 110ms
79:	learn: 14.4892731	total: 418ms	remaining: 104ms
80:	learn: 14.4256605	total: 422ms	remaining: 98.9ms
81:	learn: 14.3666860	total: 426ms	remaining: 93.6ms
82:	learn: 14.2938372	total: 431ms	remaining: 88.3ms
83:	learn: 14.2161532	total: 436ms	remaining: 83ms
84:	learn: 14.1582910	total: 441ms	remaining: 77.7ms
85:	learn: 14.1029153	total: 445ms	remaining: 72.4ms
86:	learn: 14.0475835	total: 450ms	remaining: 67.2ms
87:	learn: 13.9892661	total: 454ms	remaining: 61.9ms
88:	learn: 13.9481628	total: 459ms	remaining: 56.7ms
89:	learn: 13.8483991	total: 467ms	remaining: 51.9ms
90:	learn: 13.7775614	total: 474ms	remaining: 46.9ms
91:	learn: 13.7304585	total: 484ms	remaining: 42.1ms
92:	learn: 13.6783381	total: 489ms	remaining: 36.8ms
93:	learn: 13.6356964	total: 496ms	remaining: 31.6ms
94:	learn: 13.5924371	total: 501ms	remaining: 26.4ms
95:	learn: 13.5400746	total: 506ms	remaining: 21.1ms
96:	learn: 13.4897333	total: 511ms	remaining: 15.8ms
97:	learn: 13.4470321	total: 516ms	remaining: 10.5ms
98:	learn: 13.3856082	total: 521ms	remaining: 5.26ms
99:	learn: 13.3082371	total: 526ms	remaining: 0us
0:	learn: 43.0395283	total: 4.46ms	remaining: 442ms
1:	learn: 42.1130223	total: 8.89ms	remaining: 436ms
2:	learn: 41.1753409	total: 13.2ms	remaining: 428ms
3:	learn: 40.3637444	total: 18.1ms	remaining: 433ms
4:	learn: 39.6508088	total: 22.3ms	remaining: 425ms
5:	learn: 38.7217934	total: 26.9ms	remaining: 421ms
6:	learn: 37.8538055	total: 31.3ms	remaining: 415ms
7:	learn: 36.9793574	total: 35.7ms	remaining: 411ms
8:	learn: 36.3076984	total: 40.4ms	remaining: 409ms
9:	learn: 35.6673160	total: 44.4ms	remaining: 400ms
10:	learn: 34.8889800	total: 48.3ms	remaining: 391ms
11:	learn: 34.1675517	total: 52.4ms	remaining: 384ms
12:	learn: 33.6779564	total: 57.2ms	remaining: 383ms
13:	learn: 33.0710039	total: 61.7ms	remaining: 379ms
14:	learn: 32.4966674	total: 66.2ms	remaining: 375ms
15:	learn: 31.9492856	total: 70.8ms	remaining: 372ms
16:	learn: 31.5108129	total: 75.1ms	remaining: 367ms
17:	learn: 30.9804023	total: 79.7ms	remaining: 363ms
18:	learn: 30.4169089	total: 84.1ms	remaining: 359ms
19:	learn: 29.8930375	total: 88.7ms	remaining: 355ms
20:	learn: 29.3974421	total: 96.4ms	remaining: 363ms
21:	learn: 28.8792307	total: 103ms	remaining: 367ms
22:	learn: 28.3894474	total: 110ms	remaining: 368ms
23:	learn: 27.9921276	total: 117ms	remaining: 370ms
24:	learn: 27.6158887	total: 125ms	remaining: 375ms
25:	learn: 27.2866950	total: 130ms	remaining: 371ms
26:	learn: 26.8770708	total: 136ms	remaining: 366ms
27:	learn: 26.6233005	total: 141ms	remaining: 362ms
28:	learn: 26.2921934	total: 146ms	remaining: 357ms
29:	learn: 25.9156920	total: 151ms	remaining: 351ms
30:	learn: 25.5311106	total: 153ms	remaining: 340ms
31:	learn: 25.2178997	total: 158ms	remaining: 335ms
32:	learn: 24.8572196	total: 163ms	remaining: 331ms
33:	learn: 24.5849710	total: 168ms	remaining: 326ms
34:	learn: 24.2209190	total: 173ms	remaining: 322ms
35:	learn: 23.8708250	total: 179ms	remaining: 318ms
36:	learn: 23.5325279	total: 184ms	remaining: 313ms
37:	learn: 23.2116148	total: 189ms	remaining: 308ms
38:	learn: 22.9696787	total: 194ms	remaining: 304ms
39:	learn: 22.7936783	total: 199ms	remaining: 299ms
40:	learn: 22.6228847	total: 203ms	remaining: 293ms
41:	learn: 22.3691527	total: 208ms	remaining: 287ms
42:	learn: 22.1002173	total: 212ms	remaining: 280ms
43:	learn: 21.9157268	total: 216ms	remaining: 274ms
44:	learn: 21.7229102	total: 219ms	remaining: 268ms
45:	learn: 21.4642005	total: 224ms	remaining: 263ms
46:	learn: 21.3029442	total: 228ms	remaining: 257ms
47:	learn: 21.1469792	total: 232ms	remaining: 251ms
48:	learn: 20.9458235	total: 236ms	remaining: 245ms
49:	learn: 20.7335242	total: 240ms	remaining: 240ms
50:	learn: 20.5440269	total: 244ms	remaining: 234ms
51:	learn: 20.3661449	total: 248ms	remaining: 229ms
52:	learn: 20.2158134	total: 252ms	remaining: 224ms
53:	learn: 19.9934873	total: 256ms	remaining: 218ms
54:	learn: 19.7879739	total: 261ms	remaining: 214ms
55:	learn: 19.6630460	total: 265ms	remaining: 209ms
56:	learn: 19.5152729	total: 271ms	remaining: 204ms
57:	learn: 19.3581128	total: 275ms	remaining: 199ms
58:	learn: 19.2209303	total: 280ms	remaining: 194ms
59:	learn: 19.0965248	total: 285ms	remaining: 190ms
60:	learn: 19.0035954	total: 292ms	remaining: 186ms
61:	learn: 18.8554149	total: 299ms	remaining: 183ms
62:	learn: 18.7095427	total: 307ms	remaining: 181ms
63:	learn: 18.5751494	total: 315ms	remaining: 177ms
64:	learn: 18.4678251	total: 323ms	remaining: 174ms
65:	learn: 18.3500325	total: 328ms	remaining: 169ms
66:	learn: 18.2088983	total: 334ms	remaining: 164ms
67:	learn: 18.0737705	total: 339ms	remaining: 160ms
68:	learn: 17.9325058	total: 345ms	remaining: 155ms
69:	learn: 17.8003911	total: 350ms	remaining: 150ms
70:	learn: 17.7385366	total: 355ms	remaining: 145ms
71:	learn: 17.6106998	total: 361ms	remaining: 140ms
72:	learn: 17.4816270	total: 366ms	remaining: 135ms
73:	learn: 17.4025554	total: 371ms	remaining: 131ms
74:	learn: 17.2902108	total: 376ms	remaining: 125ms
75:	learn: 17.2158048	total: 382ms	remaining: 121ms
76:	learn: 17.1261053	total: 387ms	remaining: 116ms
77:	learn: 17.0308917	total: 393ms	remaining: 111ms
78:	learn: 16.9546705	total: 397ms	remaining: 106ms
79:	learn: 16.8319165	total: 402ms	remaining: 101ms
80:	learn: 16.7687017	total: 406ms	remaining: 95.3ms
81:	learn: 16.6972326	total: 410ms	remaining: 90.1ms
82:	learn: 16.6124580	total: 414ms	remaining: 84.9ms
83:	learn: 16.4999052	total: 419ms	remaining: 79.8ms
84:	learn: 16.4302484	total: 423ms	remaining: 74.6ms
85:	learn: 16.3201363	total: 427ms	remaining: 69.5ms
86:	learn: 16.2534314	total: 431ms	remaining: 64.3ms
87:	learn: 16.1720485	total: 435ms	remaining: 59.3ms
88:	learn: 16.0625751	total: 439ms	remaining: 54.3ms
89:	learn: 15.9135088	total: 443ms	remaining: 49.3ms
90:	learn: 15.8658863	total: 448ms	remaining: 44.3ms
91:	learn: 15.8066805	total: 452ms	remaining: 39.3ms
92:	learn: 15.7412103	total: 457ms	remaining: 34.4ms
93:	learn: 15.6542776	total: 462ms	remaining: 29.5ms
94:	learn: 15.5760334	total: 466ms	remaining: 24.5ms
95:	learn: 15.5434131	total: 471ms	remaining: 19.6ms
96:	learn: 15.4709561	total: 475ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 480ms	remaining: 9.79ms
98:	learn: 15.3752761	total: 484ms	remaining: 4.89ms
99:	learn: 15.3106595	total: 493ms	remaining: 0us
0:	learn: 46.7142257	total: 5.42ms	remaining: 537ms
1:	learn: 45.7634153	total: 10.8ms	remaining: 527ms
2:	learn: 45.0054253	total: 16.1ms	remaining: 522ms
3:	learn: 44.2120432	total: 21.1ms	remaining: 506ms
4:	learn: 43.3960472	total: 25.8ms	remaining: 489ms
5:	learn: 42.8588120	total: 31.3ms	remaining: 491ms
6:	learn: 41.9533701	total: 36.6ms	remaining: 486ms
7:	learn: 41.2745030	total: 41.8ms	remaining: 480ms
8:	learn: 40.6797495	total: 45.8ms	remaining: 464ms
9:	learn: 39.9899571	total: 50.3ms	remaining: 453ms
10:	learn: 39.4682100	total: 54.6ms	remaining: 442ms
11:	learn: 39.0305595	total: 58.8ms	remaining: 432ms
12:	learn: 38.4200417	total: 63.1ms	remaining: 422ms
13:	learn: 37.8425194	total: 67.6ms	remaining: 415ms
14:	learn: 37.4203127	total: 72ms	remaining: 408ms
15:	learn: 36.9917688	total: 76.4ms	remaining: 401ms
16:	learn: 36.5544138	total: 80.9ms	remaining: 395ms
17:	learn: 36.0727019	total: 85.5ms	remaining: 389ms
18:	learn: 35.4835715	total: 89.7ms	remaining: 382ms
19:	learn: 34.9865654	total: 94.3ms	remaining: 377ms
20:	learn: 34.6063373	total: 98.6ms	remaining: 371ms
21:	learn: 34.0997289	total: 103ms	remaining: 366ms
22:	learn: 33.7313171	total: 109ms	remaining: 364ms
23:	learn: 33.3582000	total: 113ms	remaining: 359ms
24:	learn: 32.9432456	total: 118ms	remaining: 355ms
25:	learn: 32.5220888	total: 123ms	remaining: 351ms
26:	learn: 32.2172292	total: 129ms	remaining: 347ms
27:	learn: 31.8972904	total: 133ms	remaining: 343ms
28:	learn: 31.6405350	total: 138ms	remaining: 339ms
29:	learn: 31.4167702	total: 143ms	remaining: 334ms
30:	learn: 30.8541961	total: 147ms	remaining: 327ms
31:	learn: 30.5572111	total: 154ms	remaining: 328ms
32:	learn: 30.1700399	total: 162ms	remaining: 329ms
33:	learn: 29.8537271	total: 170ms	remaining: 330ms
34:	learn: 29.6192540	total: 177ms	remaining: 330ms
35:	learn: 29.3276362	total: 183ms	remaining: 325ms
36:	learn: 28.9985179	total: 188ms	remaining: 321ms
37:	learn: 28.7046880	total: 193ms	remaining: 316ms
38:	learn: 28.4412677	total: 199ms	remaining: 311ms
39:	learn: 28.1277292	total: 204ms	remaining: 306ms
40:	learn: 27.9000750	total: 209ms	remaining: 301ms
41:	learn: 27.5433162	total: 214ms	remaining: 296ms
42:	learn: 27.2493285	total: 220ms	remaining: 291ms
43:	learn: 26.9576632	total: 222ms	remaining: 283ms
44:	learn: 26.6177110	total: 227ms	remaining: 278ms
45:	learn: 26.2812456	total: 232ms	remaining: 273ms
46:	learn: 26.0803859	total: 237ms	remaining: 267ms
47:	learn: 25.9543581	total: 242ms	remaining: 262ms
48:	learn: 25.7951582	total: 248ms	remaining: 258ms
49:	learn: 25.6548184	total: 252ms	remaining: 252ms
50:	learn: 25.4010843	total: 256ms	remaining: 246ms
51:	learn: 24.9773937	total: 260ms	remaining: 240ms
52:	learn: 24.8026156	total: 264ms	remaining: 235ms
53:	learn: 24.5568053	total: 268ms	remaining: 229ms
54:	learn: 24.2281839	total: 273ms	remaining: 223ms
55:	learn: 23.9202795	total: 277ms	remaining: 217ms
56:	learn: 23.7625591	total: 280ms	remaining: 212ms
57:	learn: 23.5429721	total: 285ms	remaining: 206ms
58:	learn: 23.3175893	total: 289ms	remaining: 201ms
59:	learn: 23.2035130	total: 293ms	remaining: 195ms
60:	learn: 23.0232450	total: 297ms	remaining: 190ms
61:	learn: 22.8384958	total: 301ms	remaining: 184ms
62:	learn: 22.6499902	total: 305ms	remaining: 179ms
63:	learn: 22.4577426	total: 309ms	remaining: 174ms
64:	learn: 22.3333158	total: 313ms	remaining: 169ms
65:	learn: 22.2064131	total: 317ms	remaining: 163ms
66:	learn: 22.1434971	total: 322ms	remaining: 158ms
67:	learn: 21.9596519	total: 327ms	remaining: 154ms
68:	learn: 21.8475576	total: 331ms	remaining: 149ms
69:	learn: 21.6954745	total: 336ms	remaining: 144ms
70:	learn: 21.5635976	total: 341ms	remaining: 139ms
71:	learn: 21.4588506	total: 345ms	remaining: 134ms
72:	learn: 21.3527268	total: 349ms	remaining: 129ms
73:	learn: 21.2661288	total: 354ms	remaining: 124ms
74:	learn: 21.1817333	total: 363ms	remaining: 121ms
75:	learn: 21.0527553	total: 370ms	remaining: 117ms
76:	learn: 20.9229021	total: 379ms	remaining: 113ms
77:	learn: 20.7563946	total: 385ms	remaining: 109ms
78:	learn: 20.6569831	total: 392ms	remaining: 104ms
79:	learn: 20.4982663	total: 397ms	remaining: 99.2ms
80:	learn: 20.3185460	total: 402ms	remaining: 94.2ms
81:	learn: 20.2096241	total: 407ms	remaining: 89.4ms
82:	learn: 20.1274891	total: 412ms	remaining: 84.4ms
83:	learn: 20.0740139	total: 418ms	remaining: 79.6ms
84:	learn: 19.9630699	total: 423ms	remaining: 74.6ms
85:	learn: 19.8753899	total: 428ms	remaining: 69.7ms
86:	learn: 19.6563612	total: 433ms	remaining: 64.7ms
87:	learn: 19.4680232	total: 437ms	remaining: 59.6ms
88:	learn: 19.3503431	total: 442ms	remaining: 54.6ms
89:	learn: 19.2221379	total: 447ms	remaining: 49.6ms
90:	learn: 19.0732542	total: 451ms	remaining: 44.6ms
91:	learn: 18.9825190	total: 456ms	remaining: 39.7ms
92:	learn: 18.8839009	total: 462ms	remaining: 34.7ms
93:	learn: 18.8012219	total: 467ms	remaining: 29.8ms
94:	learn: 18.7172713	total: 471ms	remaining: 24.8ms
95:	learn: 18.6201170	total: 476ms	remaining: 19.8ms
96:	learn: 18.5318611	total: 480ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 485ms	remaining: 9.9ms
98:	learn: 18.3289700	total: 489ms	remaining: 4.94ms
99:	learn: 18.2227333	total: 494ms	remaining: 0us
0:	learn: 46.3764524	total: 4.46ms	remaining: 441ms
1:	learn: 45.5561269	total: 8.68ms	remaining: 425ms
2:	learn: 44.8811245	total: 12.9ms	remaining: 418ms
3:	learn: 44.0788617	total: 20ms	remaining: 481ms
4:	learn: 43.3619790	total: 27.3ms	remaining: 519ms
5:	learn: 42.6912112	total: 34.6ms	remaining: 542ms
6:	learn: 42.2292118	total: 41.6ms	remaining: 552ms
7:	learn: 41.7725191	total: 48.3ms	remaining: 555ms
8:	learn: 41.1676614	total: 53.6ms	remaining: 542ms
9:	learn: 40.5771076	total: 58.5ms	remaining: 526ms
10:	learn: 39.8343757	total: 63.8ms	remaining: 516ms
11:	learn: 39.3761142	total: 69.4ms	remaining: 509ms
12:	learn: 38.5254692	total: 74.5ms	remaining: 499ms
13:	learn: 37.9629555	total: 79.8ms	remaining: 490ms
14:	learn: 37.4418438	total: 84.8ms	remaining: 481ms
15:	learn: 37.0507283	total: 90.4ms	remaining: 475ms
16:	learn: 36.6264217	total: 95.7ms	remaining: 467ms
17:	learn: 36.1114940	total: 101ms	remaining: 459ms
18:	learn: 35.7193862	total: 106ms	remaining: 453ms
19:	learn: 35.3301177	total: 111ms	remaining: 444ms
20:	learn: 35.0598280	total: 116ms	remaining: 437ms
21:	learn: 34.5469736	total: 122ms	remaining: 433ms
22:	learn: 34.2064215	total: 127ms	remaining: 425ms
23:	learn: 33.7280710	total: 131ms	remaining: 414ms
24:	learn: 33.3282940	total: 134ms	remaining: 403ms
25:	learn: 32.8478961	total: 139ms	remaining: 395ms
26:	learn: 32.5722164	total: 143ms	remaining: 386ms
27:	learn: 32.2457019	total: 147ms	remaining: 377ms
28:	learn: 31.9230495	total: 151ms	remaining: 369ms
29:	learn: 31.4311611	total: 155ms	remaining: 361ms
30:	learn: 30.9179052	total: 159ms	remaining: 354ms
31:	learn: 30.6201141	total: 163ms	remaining: 347ms
32:	learn: 30.3421106	total: 167ms	remaining: 339ms
33:	learn: 29.9885373	total: 171ms	remaining: 333ms
34:	learn: 29.7462780	total: 176ms	remaining: 326ms
35:	learn: 29.3607153	total: 180ms	remaining: 320ms
36:	learn: 29.1793078	total: 184ms	remaining: 313ms
37:	learn: 28.9276538	total: 188ms	remaining: 306ms
38:	learn: 28.6903934	total: 192ms	remaining: 301ms
39:	learn: 28.2095033	total: 196ms	remaining: 294ms
40:	learn: 27.7990608	total: 200ms	remaining: 289ms
41:	learn: 27.5406632	total: 204ms	remaining: 282ms
42:	learn: 27.2575376	total: 208ms	remaining: 276ms
43:	learn: 26.9741707	total: 212ms	remaining: 270ms
44:	learn: 26.6606899	total: 217ms	remaining: 265ms
45:	learn: 26.4015833	total: 221ms	remaining: 259ms
46:	learn: 26.1828993	total: 225ms	remaining: 254ms
47:	learn: 26.0233709	total: 227ms	remaining: 246ms
48:	learn: 25.9300399	total: 232ms	remaining: 242ms
49:	learn: 25.5861489	total: 237ms	remaining: 237ms
50:	learn: 25.4322012	total: 241ms	remaining: 231ms
51:	learn: 25.1595644	total: 246ms	remaining: 227ms
52:	learn: 24.9955303	total: 250ms	remaining: 222ms
53:	learn: 24.7273966	total: 255ms	remaining: 217ms
54:	learn: 24.5747978	total: 259ms	remaining: 212ms
55:	learn: 24.3807977	total: 263ms	remaining: 207ms
56:	learn: 24.1689569	total: 271ms	remaining: 205ms
57:	learn: 23.9898221	total: 279ms	remaining: 202ms
58:	learn: 23.7566414	total: 287ms	remaining: 200ms
59:	learn: 23.6641165	total: 293ms	remaining: 196ms
60:	learn: 23.5658066	total: 300ms	remaining: 191ms
61:	learn: 23.4338851	total: 305ms	remaining: 187ms
62:	learn: 23.2408837	total: 310ms	remaining: 182ms
63:	learn: 23.0642038	total: 315ms	remaining: 177ms
64:	learn: 22.9032045	total: 320ms	remaining: 172ms
65:	learn: 22.7736138	total: 325ms	remaining: 167ms
66:	learn: 22.6836443	total: 330ms	remaining: 162ms
67:	learn: 22.5983654	total: 335ms	remaining: 158ms
68:	learn: 22.4419813	total: 340ms	remaining: 153ms
69:	learn: 22.2863339	total: 345ms	remaining: 148ms
70:	learn: 22.1792943	total: 350ms	remaining: 143ms
71:	learn: 22.1130574	total: 354ms	remaining: 138ms
72:	learn: 21.9858161	total: 359ms	remaining: 133ms
73:	learn: 21.8577784	total: 365ms	remaining: 128ms
74:	learn: 21.7845222	total: 370ms	remaining: 123ms
75:	learn: 21.6831390	total: 374ms	remaining: 118ms
76:	learn: 21.6292521	total: 378ms	remaining: 113ms
77:	learn: 21.5789330	total: 383ms	remaining: 108ms
78:	learn: 21.5420942	total: 388ms	remaining: 103ms
79:	learn: 21.4280939	total: 392ms	remaining: 98ms
80:	learn: 21.3641165	total: 397ms	remaining: 93ms
81:	learn: 21.2734814	total: 401ms	remaining: 88.1ms
82:	learn: 21.2220323	total: 406ms	remaining: 83.2ms
83:	learn: 21.0625792	total: 411ms	remaining: 78.2ms
84:	learn: 20.9488320	total: 415ms	remaining: 73.3ms
85:	learn: 20.8504255	total: 420ms	remaining: 68.3ms
86:	learn: 20.7848510	total: 424ms	remaining: 63.4ms
87:	learn: 20.7247442	total: 429ms	remaining: 58.4ms
88:	learn: 20.5698590	total: 433ms	remaining: 53.6ms
89:	learn: 20.4067620	total: 438ms	remaining: 48.7ms
90:	learn: 20.3062482	total: 443ms	remaining: 43.8ms
91:	learn: 20.2029696	total: 448ms	remaining: 39ms
92:	learn: 20.1384849	total: 453ms	remaining: 34.1ms
93:	learn: 20.0260709	total: 458ms	remaining: 29.2ms
94:	learn: 19.9122100	total: 463ms	remaining: 24.3ms
95:	learn: 19.8648487	total: 469ms	remaining: 19.5ms
96:	learn: 19.8207072	total: 478ms	remaining: 14.8ms
97:	learn: 19.7261189	total: 488ms	remaining: 9.95ms
98:	learn: 19.7042438	total: 494ms	remaining: 4.99ms
99:	learn: 19.6546645	total: 502ms	remaining: 0us
0:	learn: 47.0239288	total: 4.18ms	remaining: 414ms
1:	learn: 46.2253829	total: 8.19ms	remaining: 401ms
2:	learn: 45.5580301	total: 12.3ms	remaining: 398ms
3:	learn: 44.7273237	total: 16.9ms	remaining: 406ms
4:	learn: 43.8867421	total: 21.1ms	remaining: 401ms
5:	learn: 43.3615911	total: 25.3ms	remaining: 397ms
6:	learn: 42.8548390	total: 29.6ms	remaining: 393ms
7:	learn: 42.1606758	total: 33.6ms	remaining: 386ms
8:	learn: 41.6625870	total: 37.5ms	remaining: 379ms
9:	learn: 40.9497092	total: 41.6ms	remaining: 374ms
10:	learn: 40.1886318	total: 45.6ms	remaining: 369ms
11:	learn: 39.7456423	total: 49.7ms	remaining: 365ms
12:	learn: 39.1171373	total: 53.7ms	remaining: 360ms
13:	learn: 38.5451069	total: 58.3ms	remaining: 358ms
14:	learn: 38.0155834	total: 62.9ms	remaining: 356ms
15:	learn: 37.5631354	total: 67.4ms	remaining: 354ms
16:	learn: 37.1030023	total: 71.6ms	remaining: 350ms
17:	learn: 36.4563029	total: 76ms	remaining: 346ms
18:	learn: 36.0160976	total: 80.7ms	remaining: 344ms
19:	learn: 35.5079827	total: 85.1ms	remaining: 340ms
20:	learn: 35.2111885	total: 89.3ms	remaining: 336ms
21:	learn: 34.9397465	total: 95.7ms	remaining: 339ms
22:	learn: 34.5270048	total: 103ms	remaining: 344ms
23:	learn: 34.0169260	total: 110ms	remaining: 348ms
24:	learn: 33.7454892	total: 118ms	remaining: 354ms
25:	learn: 33.2648157	total: 125ms	remaining: 356ms
26:	learn: 32.8899427	total: 130ms	remaining: 353ms
27:	learn: 32.6185050	total: 136ms	remaining: 349ms
28:	learn: 32.3528531	total: 141ms	remaining: 344ms
29:	learn: 32.0859923	total: 146ms	remaining: 341ms
30:	learn: 31.6511144	total: 151ms	remaining: 337ms
31:	learn: 31.2571765	total: 156ms	remaining: 332ms
32:	learn: 30.9770049	total: 162ms	remaining: 328ms
33:	learn: 30.6084872	total: 167ms	remaining: 324ms
34:	learn: 30.3448632	total: 172ms	remaining: 320ms
35:	learn: 30.0360942	total: 177ms	remaining: 315ms
36:	learn: 29.6648968	total: 182ms	remaining: 310ms
37:	learn: 29.3165114	total: 187ms	remaining: 305ms
38:	learn: 29.0829198	total: 192ms	remaining: 300ms
39:	learn: 28.7752064	total: 198ms	remaining: 296ms
40:	learn: 28.3622191	total: 202ms	remaining: 290ms
41:	learn: 28.1346631	total: 205ms	remaining: 283ms
42:	learn: 27.9585719	total: 209ms	remaining: 277ms
43:	learn: 27.6565566	total: 213ms	remaining: 271ms
44:	learn: 27.3616172	total: 217ms	remaining: 266ms
45:	learn: 27.0658637	total: 221ms	remaining: 260ms
46:	learn: 26.8660382	total: 225ms	remaining: 254ms
47:	learn: 26.6536078	total: 229ms	remaining: 248ms
48:	learn: 26.3524440	total: 234ms	remaining: 243ms
49:	learn: 26.1595277	total: 237ms	remaining: 237ms
50:	learn: 25.9273523	total: 242ms	remaining: 232ms
51:	learn: 25.7195580	total: 246ms	remaining: 227ms
52:	learn: 25.5730225	total: 250ms	remaining: 221ms
53:	learn: 25.3455276	total: 254ms	remaining: 216ms
54:	learn: 25.2289675	total: 258ms	remaining: 211ms
55:	learn: 25.0133024	total: 263ms	remaining: 207ms
56:	learn: 24.8406714	total: 268ms	remaining: 202ms
57:	learn: 24.6367857	total: 272ms	remaining: 197ms
58:	learn: 24.5338177	total: 277ms	remaining: 192ms
59:	learn: 24.3799964	total: 281ms	remaining: 187ms
60:	learn: 24.1447492	total: 285ms	remaining: 183ms
61:	learn: 23.9880495	total: 290ms	remaining: 178ms
62:	learn: 23.7140630	total: 296ms	remaining: 174ms
63:	learn: 23.5003791	total: 303ms	remaining: 171ms
64:	learn: 23.3207645	total: 311ms	remaining: 167ms
65:	learn: 23.1958356	total: 319ms	remaining: 164ms
66:	learn: 23.0471302	total: 326ms	remaining: 161ms
67:	learn: 22.8977183	total: 331ms	remaining: 156ms
68:	learn: 22.7187400	total: 336ms	remaining: 151ms
69:	learn: 22.6523405	total: 341ms	remaining: 146ms
70:	learn: 22.4767453	total: 347ms	remaining: 142ms
71:	learn: 22.3243677	total: 352ms	remaining: 137ms
72:	learn: 22.2133096	total: 358ms	remaining: 132ms
73:	learn: 22.1151713	total: 363ms	remaining: 128ms
74:	learn: 22.0296666	total: 368ms	remaining: 123ms
75:	learn: 21.9195980	total: 373ms	remaining: 118ms
76:	learn: 21.8401730	total: 379ms	remaining: 113ms
77:	learn: 21.8079797	total: 383ms	remaining: 108ms
78:	learn: 21.7274109	total: 388ms	remaining: 103ms
79:	learn: 21.6663032	total: 394ms	remaining: 98.5ms
80:	learn: 21.5633117	total: 400ms	remaining: 93.7ms
81:	learn: 21.4542467	total: 404ms	remaining: 88.6ms
82:	learn: 21.3177957	total: 408ms	remaining: 83.6ms
83:	learn: 21.1289167	total: 413ms	remaining: 78.6ms
84:	learn: 21.0297368	total: 417ms	remaining: 73.5ms
85:	learn: 20.9089564	total: 421ms	remaining: 68.5ms
86:	learn: 20.7653988	total: 425ms	remaining: 63.5ms
87:	learn: 20.6521894	total: 429ms	remaining: 58.5ms
88:	learn: 20.5193021	total: 433ms	remaining: 53.5ms
89:	learn: 20.4361620	total: 436ms	remaining: 48.5ms
90:	learn: 20.3546710	total: 441ms	remaining: 43.6ms
91:	learn: 20.2513296	total: 445ms	remaining: 38.7ms
92:	learn: 20.1605550	total: 449ms	remaining: 33.8ms
93:	learn: 20.0515942	total: 453ms	remaining: 28.9ms
94:	learn: 19.9800764	total: 457ms	remaining: 24.1ms
95:	learn: 19.8996532	total: 462ms	remaining: 19.2ms
96:	learn: 19.8450910	total: 466ms	remaining: 14.4ms
97:	learn: 19.7887346	total: 470ms	remaining: 9.59ms
98:	learn: 19.7230872	total: 475ms	remaining: 4.79ms
99:	learn: 19.6328825	total: 479ms	remaining: 0us
0:	learn: 27.5585353	total: 5.5ms	remaining: 545ms
1:	learn: 27.1656995	total: 10.8ms	remaining: 527ms
2:	learn: 26.8590175	total: 15.7ms	remaining: 506ms
3:	learn: 26.5818406	total: 20.8ms	remaining: 499ms
4:	learn: 26.1148663	total: 25.9ms	remaining: 491ms
5:	learn: 25.7690484	total: 31ms	remaining: 486ms
6:	learn: 25.3489206	total: 36.1ms	remaining: 480ms
7:	learn: 24.9542406	total: 41.1ms	remaining: 472ms
8:	learn: 24.6777517	total: 45.8ms	remaining: 463ms
9:	learn: 24.3242344	total: 51.2ms	remaining: 461ms
10:	learn: 24.0383073	total: 56.3ms	remaining: 456ms
11:	learn: 23.7383420	total: 60.4ms	remaining: 443ms
12:	learn: 23.3461670	total: 64.8ms	remaining: 434ms
13:	learn: 23.0928636	total: 68.7ms	remaining: 422ms
14:	learn: 22.8770414	total: 72.7ms	remaining: 412ms
15:	learn: 22.6323214	total: 76.8ms	remaining: 403ms
16:	learn: 22.3597072	total: 81.2ms	remaining: 397ms
17:	learn: 22.1079813	total: 85.3ms	remaining: 389ms
18:	learn: 21.8421199	total: 89.4ms	remaining: 381ms
19:	learn: 21.6576508	total: 93.4ms	remaining: 374ms
20:	learn: 21.4301268	total: 97.6ms	remaining: 367ms
21:	learn: 21.2287388	total: 101ms	remaining: 360ms
22:	learn: 21.0553872	total: 105ms	remaining: 352ms
23:	learn: 20.8977091	total: 109ms	remaining: 346ms
24:	learn: 20.6619051	total: 113ms	remaining: 340ms
25:	learn: 20.5040955	total: 118ms	remaining: 335ms
26:	learn: 20.3181195	total: 122ms	remaining: 329ms
27:	learn: 20.0869436	total: 126ms	remaining: 325ms
28:	learn: 19.9375985	total: 131ms	remaining: 321ms
29:	learn: 19.8247516	total: 136ms	remaining: 317ms
30:	learn: 19.6261697	total: 140ms	remaining: 313ms
31:	learn: 19.4547236	total: 145ms	remaining: 308ms
32:	learn: 19.3157092	total: 149ms	remaining: 303ms
33:	learn: 19.1561419	total: 154ms	remaining: 299ms
34:	learn: 19.0453620	total: 159ms	remaining: 295ms
35:	learn: 18.8738574	total: 167ms	remaining: 298ms
36:	learn: 18.7072907	total: 174ms	remaining: 297ms
37:	learn: 18.5877943	total: 183ms	remaining: 298ms
38:	learn: 18.4436380	total: 190ms	remaining: 297ms
39:	learn: 18.3463356	total: 195ms	remaining: 293ms
40:	learn: 18.2008059	total: 200ms	remaining: 288ms
41:	learn: 18.0582079	total: 205ms	remaining: 284ms
42:	learn: 17.8891982	total: 210ms	remaining: 279ms
43:	learn: 17.7332246	total: 215ms	remaining: 274ms
44:	learn: 17.6206421	total: 221ms	remaining: 270ms
45:	learn: 17.4982800	total: 226ms	remaining: 265ms
46:	learn: 17.3970150	total: 231ms	remaining: 260ms
47:	learn: 17.3058203	total: 236ms	remaining: 256ms
48:	learn: 17.1789256	total: 241ms	remaining: 251ms
49:	learn: 17.0916229	total: 246ms	remaining: 246ms
50:	learn: 16.9859820	total: 251ms	remaining: 241ms
51:	learn: 16.8995582	total: 256ms	remaining: 237ms
52:	learn: 16.8137014	total: 262ms	remaining: 232ms
53:	learn: 16.7021451	total: 266ms	remaining: 227ms
54:	learn: 16.5895582	total: 271ms	remaining: 221ms
55:	learn: 16.5015639	total: 275ms	remaining: 216ms
56:	learn: 16.4356637	total: 280ms	remaining: 211ms
57:	learn: 16.3514525	total: 284ms	remaining: 206ms
58:	learn: 16.2401369	total: 289ms	remaining: 201ms
59:	learn: 16.1293223	total: 293ms	remaining: 195ms
60:	learn: 16.0271167	total: 298ms	remaining: 190ms
61:	learn: 15.9126257	total: 302ms	remaining: 185ms
62:	learn: 15.8391096	total: 306ms	remaining: 180ms
63:	learn: 15.7441773	total: 311ms	remaining: 175ms
64:	learn: 15.6885195	total: 315ms	remaining: 170ms
65:	learn: 15.6052039	total: 319ms	remaining: 164ms
66:	learn: 15.5074202	total: 324ms	remaining: 159ms
67:	learn: 15.4054338	total: 328ms	remaining: 154ms
68:	learn: 15.2885714	total: 333ms	remaining: 150ms
69:	learn: 15.2157472	total: 338ms	remaining: 145ms
70:	learn: 15.1031554	total: 343ms	remaining: 140ms
71:	learn: 15.0237470	total: 347ms	remaining: 135ms
72:	learn: 14.9756825	total: 352ms	remaining: 130ms
73:	learn: 14.8840596	total: 357ms	remaining: 125ms
74:	learn: 14.8077061	total: 364ms	remaining: 121ms
75:	learn: 14.7444437	total: 371ms	remaining: 117ms
76:	learn: 14.6751720	total: 379ms	remaining: 113ms
77:	learn: 14.5830333	total: 386ms	remaining: 109ms
78:	learn: 14.5241206	total: 391ms	remaining: 104ms
79:	learn: 14.4892731	total: 396ms	remaining: 99ms
80:	learn: 14.4256605	total: 402ms	remaining: 94.3ms
81:	learn: 14.3666860	total: 408ms	remaining: 89.5ms
82:	learn: 14.2938372	total: 413ms	remaining: 84.6ms
83:	learn: 14.2161532	total: 419ms	remaining: 79.8ms
84:	learn: 14.1582910	total: 425ms	remaining: 74.9ms
85:	learn: 14.1029153	total: 430ms	remaining: 70ms
86:	learn: 14.0475835	total: 435ms	remaining: 65ms
87:	learn: 13.9892661	total: 440ms	remaining: 60ms
88:	learn: 13.9481628	total: 445ms	remaining: 55ms
89:	learn: 13.8483991	total: 450ms	remaining: 50ms
90:	learn: 13.7775614	total: 456ms	remaining: 45.1ms
91:	learn: 13.7304585	total: 461ms	remaining: 40.1ms
92:	learn: 13.6783381	total: 465ms	remaining: 35ms
93:	learn: 13.6356964	total: 470ms	remaining: 30ms
94:	learn: 13.5924371	total: 474ms	remaining: 24.9ms
95:	learn: 13.5400746	total: 478ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 482ms	remaining: 14.9ms
97:	learn: 13.4470321	total: 487ms	remaining: 9.94ms
98:	learn: 13.3856082	total: 492ms	remaining: 4.97ms
99:	learn: 13.3082371	total: 497ms	remaining: 0us
0:	learn: 43.0395283	total: 4.79ms	remaining: 474ms
1:	learn: 42.1130223	total: 9.09ms	remaining: 445ms
2:	learn: 41.1753409	total: 13.8ms	remaining: 447ms
3:	learn: 40.3637444	total: 18.9ms	remaining: 453ms
4:	learn: 39.6508088	total: 26.5ms	remaining: 504ms
5:	learn: 38.7217934	total: 34.2ms	remaining: 536ms
6:	learn: 37.8538055	total: 42.2ms	remaining: 561ms
7:	learn: 36.9793574	total: 49.4ms	remaining: 568ms
8:	learn: 36.3076984	total: 54.8ms	remaining: 554ms
9:	learn: 35.6673160	total: 59.7ms	remaining: 537ms
10:	learn: 34.8889800	total: 64.6ms	remaining: 523ms
11:	learn: 34.1675517	total: 69.7ms	remaining: 511ms
12:	learn: 33.6779564	total: 74.8ms	remaining: 501ms
13:	learn: 33.0710039	total: 79.9ms	remaining: 491ms
14:	learn: 32.4966674	total: 85.5ms	remaining: 485ms
15:	learn: 31.9492856	total: 90.4ms	remaining: 474ms
16:	learn: 31.5108129	total: 95.7ms	remaining: 467ms
17:	learn: 30.9804023	total: 101ms	remaining: 460ms
18:	learn: 30.4169089	total: 106ms	remaining: 450ms
19:	learn: 29.8930375	total: 111ms	remaining: 443ms
20:	learn: 29.3974421	total: 116ms	remaining: 437ms
21:	learn: 28.8792307	total: 122ms	remaining: 432ms
22:	learn: 28.3894474	total: 126ms	remaining: 422ms
23:	learn: 27.9921276	total: 130ms	remaining: 412ms
24:	learn: 27.6158887	total: 134ms	remaining: 402ms
25:	learn: 27.2866950	total: 138ms	remaining: 393ms
26:	learn: 26.8770708	total: 142ms	remaining: 385ms
27:	learn: 26.6233005	total: 146ms	remaining: 376ms
28:	learn: 26.2921934	total: 150ms	remaining: 368ms
29:	learn: 25.9156920	total: 155ms	remaining: 361ms
30:	learn: 25.5311106	total: 156ms	remaining: 348ms
31:	learn: 25.2178997	total: 161ms	remaining: 341ms
32:	learn: 24.8572196	total: 164ms	remaining: 334ms
33:	learn: 24.5849710	total: 169ms	remaining: 327ms
34:	learn: 24.2209190	total: 173ms	remaining: 321ms
35:	learn: 23.8708250	total: 177ms	remaining: 314ms
36:	learn: 23.5325279	total: 181ms	remaining: 308ms
37:	learn: 23.2116148	total: 185ms	remaining: 302ms
38:	learn: 22.9696787	total: 190ms	remaining: 297ms
39:	learn: 22.7936783	total: 194ms	remaining: 291ms
40:	learn: 22.6228847	total: 199ms	remaining: 286ms
41:	learn: 22.3691527	total: 203ms	remaining: 281ms
42:	learn: 22.1002173	total: 208ms	remaining: 276ms
43:	learn: 21.9157268	total: 212ms	remaining: 270ms
44:	learn: 21.7229102	total: 217ms	remaining: 265ms
45:	learn: 21.4642005	total: 221ms	remaining: 259ms
46:	learn: 21.3029442	total: 225ms	remaining: 253ms
47:	learn: 21.1469792	total: 229ms	remaining: 248ms
48:	learn: 20.9458235	total: 234ms	remaining: 243ms
49:	learn: 20.7335242	total: 238ms	remaining: 238ms
50:	learn: 20.5440269	total: 243ms	remaining: 233ms
51:	learn: 20.3661449	total: 247ms	remaining: 228ms
52:	learn: 20.2158134	total: 251ms	remaining: 223ms
53:	learn: 19.9934873	total: 256ms	remaining: 218ms
54:	learn: 19.7879739	total: 261ms	remaining: 213ms
55:	learn: 19.6630460	total: 265ms	remaining: 208ms
56:	learn: 19.5152729	total: 272ms	remaining: 205ms
57:	learn: 19.3581128	total: 279ms	remaining: 202ms
58:	learn: 19.2209303	total: 287ms	remaining: 200ms
59:	learn: 19.0965248	total: 294ms	remaining: 196ms
60:	learn: 19.0035954	total: 301ms	remaining: 192ms
61:	learn: 18.8554149	total: 306ms	remaining: 187ms
62:	learn: 18.7095427	total: 311ms	remaining: 183ms
63:	learn: 18.5751494	total: 324ms	remaining: 182ms
64:	learn: 18.4678251	total: 329ms	remaining: 177ms
65:	learn: 18.3500325	total: 335ms	remaining: 172ms
66:	learn: 18.2088983	total: 340ms	remaining: 168ms
67:	learn: 18.0737705	total: 346ms	remaining: 163ms
68:	learn: 17.9325058	total: 351ms	remaining: 158ms
69:	learn: 17.8003911	total: 356ms	remaining: 152ms
70:	learn: 17.7385366	total: 361ms	remaining: 147ms
71:	learn: 17.6106998	total: 367ms	remaining: 143ms
72:	learn: 17.4816270	total: 372ms	remaining: 138ms
73:	learn: 17.4025554	total: 376ms	remaining: 132ms
74:	learn: 17.2902108	total: 380ms	remaining: 127ms
75:	learn: 17.2158048	total: 385ms	remaining: 121ms
76:	learn: 17.1261053	total: 389ms	remaining: 116ms
77:	learn: 17.0308917	total: 393ms	remaining: 111ms
78:	learn: 16.9546705	total: 397ms	remaining: 106ms
79:	learn: 16.8319165	total: 401ms	remaining: 100ms
80:	learn: 16.7687017	total: 405ms	remaining: 95ms
81:	learn: 16.6972326	total: 409ms	remaining: 89.8ms
82:	learn: 16.6124580	total: 413ms	remaining: 84.7ms
83:	learn: 16.4999052	total: 418ms	remaining: 79.6ms
84:	learn: 16.4302484	total: 422ms	remaining: 74.5ms
85:	learn: 16.3201363	total: 426ms	remaining: 69.3ms
86:	learn: 16.2534314	total: 430ms	remaining: 64.2ms
87:	learn: 16.1720485	total: 434ms	remaining: 59.2ms
88:	learn: 16.0625751	total: 439ms	remaining: 54.3ms
89:	learn: 15.9135088	total: 444ms	remaining: 49.3ms
90:	learn: 15.8658863	total: 448ms	remaining: 44.3ms
91:	learn: 15.8066805	total: 453ms	remaining: 39.4ms
92:	learn: 15.7412103	total: 458ms	remaining: 34.4ms
93:	learn: 15.6542776	total: 462ms	remaining: 29.5ms
94:	learn: 15.5760334	total: 467ms	remaining: 24.6ms
95:	learn: 15.5434131	total: 476ms	remaining: 19.8ms
96:	learn: 15.4709561	total: 484ms	remaining: 15ms
97:	learn: 15.4449618	total: 492ms	remaining: 10ms
98:	learn: 15.3752761	total: 500ms	remaining: 5.05ms
99:	learn: 15.3106595	total: 505ms	remaining: 0us
0:	learn: 46.7142257	total: 6.08ms	remaining: 602ms
1:	learn: 45.7634153	total: 11.4ms	remaining: 557ms
2:	learn: 45.0054253	total: 15.4ms	remaining: 500ms
3:	learn: 44.2120432	total: 19.5ms	remaining: 467ms
4:	learn: 43.3960472	total: 23.7ms	remaining: 451ms
5:	learn: 42.8588120	total: 28ms	remaining: 438ms
6:	learn: 41.9533701	total: 31.8ms	remaining: 422ms
7:	learn: 41.2745030	total: 35.5ms	remaining: 409ms
8:	learn: 40.6797495	total: 39.5ms	remaining: 400ms
9:	learn: 39.9899571	total: 43.9ms	remaining: 395ms
10:	learn: 39.4682100	total: 47.9ms	remaining: 388ms
11:	learn: 39.0305595	total: 51.8ms	remaining: 380ms
12:	learn: 38.4200417	total: 55.7ms	remaining: 373ms
13:	learn: 37.8425194	total: 60ms	remaining: 369ms
14:	learn: 37.4203127	total: 63.9ms	remaining: 362ms
15:	learn: 36.9917688	total: 68ms	remaining: 357ms
16:	learn: 36.5544138	total: 72.1ms	remaining: 352ms
17:	learn: 36.0727019	total: 76.3ms	remaining: 348ms
18:	learn: 35.4835715	total: 80.6ms	remaining: 344ms
19:	learn: 34.9865654	total: 84.8ms	remaining: 339ms
20:	learn: 34.6063373	total: 89.4ms	remaining: 336ms
21:	learn: 34.0997289	total: 93.8ms	remaining: 333ms
22:	learn: 33.7313171	total: 98.5ms	remaining: 330ms
23:	learn: 33.3582000	total: 103ms	remaining: 326ms
24:	learn: 32.9432456	total: 107ms	remaining: 322ms
25:	learn: 32.5220888	total: 112ms	remaining: 319ms
26:	learn: 32.2172292	total: 116ms	remaining: 315ms
27:	learn: 31.8972904	total: 124ms	remaining: 320ms
28:	learn: 31.6405350	total: 132ms	remaining: 323ms
29:	learn: 31.4167702	total: 142ms	remaining: 332ms
30:	learn: 30.8541961	total: 144ms	remaining: 322ms
31:	learn: 30.5572111	total: 152ms	remaining: 323ms
32:	learn: 30.1700399	total: 157ms	remaining: 319ms
33:	learn: 29.8537271	total: 163ms	remaining: 316ms
34:	learn: 29.6192540	total: 168ms	remaining: 312ms
35:	learn: 29.3276362	total: 173ms	remaining: 308ms
36:	learn: 28.9985179	total: 179ms	remaining: 305ms
37:	learn: 28.7046880	total: 184ms	remaining: 300ms
38:	learn: 28.4412677	total: 189ms	remaining: 296ms
39:	learn: 28.1277292	total: 195ms	remaining: 292ms
40:	learn: 27.9000750	total: 200ms	remaining: 288ms
41:	learn: 27.5433162	total: 205ms	remaining: 283ms
42:	learn: 27.2493285	total: 210ms	remaining: 278ms
43:	learn: 26.9576632	total: 212ms	remaining: 270ms
44:	learn: 26.6177110	total: 218ms	remaining: 266ms
45:	learn: 26.2812456	total: 223ms	remaining: 261ms
46:	learn: 26.0803859	total: 227ms	remaining: 256ms
47:	learn: 25.9543581	total: 231ms	remaining: 250ms
48:	learn: 25.7951582	total: 235ms	remaining: 245ms
49:	learn: 25.6548184	total: 239ms	remaining: 239ms
50:	learn: 25.4010843	total: 244ms	remaining: 235ms
51:	learn: 24.9773937	total: 248ms	remaining: 229ms
52:	learn: 24.8026156	total: 253ms	remaining: 224ms
53:	learn: 24.5568053	total: 257ms	remaining: 219ms
54:	learn: 24.2281839	total: 261ms	remaining: 214ms
55:	learn: 23.9202795	total: 265ms	remaining: 209ms
56:	learn: 23.7625591	total: 270ms	remaining: 204ms
57:	learn: 23.5429721	total: 274ms	remaining: 199ms
58:	learn: 23.3175893	total: 278ms	remaining: 193ms
59:	learn: 23.2035130	total: 283ms	remaining: 189ms
60:	learn: 23.0232450	total: 288ms	remaining: 184ms
61:	learn: 22.8384958	total: 293ms	remaining: 179ms
62:	learn: 22.6499902	total: 298ms	remaining: 175ms
63:	learn: 22.4577426	total: 303ms	remaining: 170ms
64:	learn: 22.3333158	total: 308ms	remaining: 166ms
65:	learn: 22.2064131	total: 313ms	remaining: 161ms
66:	learn: 22.1434971	total: 320ms	remaining: 158ms
67:	learn: 21.9596519	total: 328ms	remaining: 154ms
68:	learn: 21.8475576	total: 336ms	remaining: 151ms
69:	learn: 21.6954745	total: 343ms	remaining: 147ms
70:	learn: 21.5635976	total: 351ms	remaining: 143ms
71:	learn: 21.4588506	total: 356ms	remaining: 138ms
72:	learn: 21.3527268	total: 361ms	remaining: 134ms
73:	learn: 21.2661288	total: 366ms	remaining: 129ms
74:	learn: 21.1817333	total: 372ms	remaining: 124ms
75:	learn: 21.0527553	total: 377ms	remaining: 119ms
76:	learn: 20.9229021	total: 382ms	remaining: 114ms
77:	learn: 20.7563946	total: 387ms	remaining: 109ms
78:	learn: 20.6569831	total: 393ms	remaining: 104ms
79:	learn: 20.4982663	total: 397ms	remaining: 99.3ms
80:	learn: 20.3185460	total: 402ms	remaining: 94.4ms
81:	learn: 20.2096241	total: 408ms	remaining: 89.5ms
82:	learn: 20.1274891	total: 412ms	remaining: 84.4ms
83:	learn: 20.0740139	total: 418ms	remaining: 79.5ms
84:	learn: 19.9630699	total: 424ms	remaining: 74.8ms
85:	learn: 19.8753899	total: 429ms	remaining: 69.8ms
86:	learn: 19.6563612	total: 433ms	remaining: 64.7ms
87:	learn: 19.4680232	total: 437ms	remaining: 59.7ms
88:	learn: 19.3503431	total: 442ms	remaining: 54.6ms
89:	learn: 19.2221379	total: 446ms	remaining: 49.5ms
90:	learn: 19.0732542	total: 450ms	remaining: 44.5ms
91:	learn: 18.9825190	total: 455ms	remaining: 39.5ms
92:	learn: 18.8839009	total: 459ms	remaining: 34.5ms
93:	learn: 18.8012219	total: 462ms	remaining: 29.5ms
94:	learn: 18.7172713	total: 466ms	remaining: 24.6ms
95:	learn: 18.6201170	total: 471ms	remaining: 19.6ms
96:	learn: 18.5318611	total: 475ms	remaining: 14.7ms
97:	learn: 18.3833356	total: 479ms	remaining: 9.77ms
98:	learn: 18.3289700	total: 483ms	remaining: 4.88ms
99:	learn: 18.2227333	total: 488ms	remaining: 0us
0:	learn: 46.3764524	total: 6.99ms	remaining: 692ms
1:	learn: 45.5561269	total: 12.2ms	remaining: 599ms
2:	learn: 44.8811245	total: 17.2ms	remaining: 556ms
3:	learn: 44.0788617	total: 22.2ms	remaining: 533ms
4:	learn: 43.3619790	total: 27.8ms	remaining: 528ms
5:	learn: 42.6912112	total: 33ms	remaining: 516ms
6:	learn: 42.2292118	total: 38.2ms	remaining: 508ms
7:	learn: 41.7725191	total: 43.6ms	remaining: 501ms
8:	learn: 41.1676614	total: 48.4ms	remaining: 490ms
9:	learn: 40.5771076	total: 53.3ms	remaining: 480ms
10:	learn: 39.8343757	total: 58.3ms	remaining: 472ms
11:	learn: 39.3761142	total: 63.5ms	remaining: 466ms
12:	learn: 38.5254692	total: 68ms	remaining: 455ms
13:	learn: 37.9629555	total: 73.4ms	remaining: 451ms
14:	learn: 37.4418438	total: 78.5ms	remaining: 445ms
15:	learn: 37.0507283	total: 82.8ms	remaining: 435ms
16:	learn: 36.6264217	total: 86.5ms	remaining: 422ms
17:	learn: 36.1114940	total: 90.7ms	remaining: 413ms
18:	learn: 35.7193862	total: 94.6ms	remaining: 403ms
19:	learn: 35.3301177	total: 99.2ms	remaining: 397ms
20:	learn: 35.0598280	total: 103ms	remaining: 389ms
21:	learn: 34.5469736	total: 108ms	remaining: 381ms
22:	learn: 34.2064215	total: 111ms	remaining: 372ms
23:	learn: 33.7280710	total: 115ms	remaining: 365ms
24:	learn: 33.3282940	total: 119ms	remaining: 357ms
25:	learn: 32.8478961	total: 123ms	remaining: 351ms
26:	learn: 32.5722164	total: 127ms	remaining: 344ms
27:	learn: 32.2457019	total: 131ms	remaining: 338ms
28:	learn: 31.9230495	total: 135ms	remaining: 331ms
29:	learn: 31.4311611	total: 139ms	remaining: 325ms
30:	learn: 30.9179052	total: 144ms	remaining: 320ms
31:	learn: 30.6201141	total: 148ms	remaining: 315ms
32:	learn: 30.3421106	total: 153ms	remaining: 311ms
33:	learn: 29.9885373	total: 157ms	remaining: 305ms
34:	learn: 29.7462780	total: 161ms	remaining: 300ms
35:	learn: 29.3607153	total: 166ms	remaining: 296ms
36:	learn: 29.1793078	total: 171ms	remaining: 291ms
37:	learn: 28.9276538	total: 175ms	remaining: 285ms
38:	learn: 28.6903934	total: 180ms	remaining: 281ms
39:	learn: 28.2095033	total: 187ms	remaining: 280ms
40:	learn: 27.7990608	total: 194ms	remaining: 279ms
41:	learn: 27.5406632	total: 204ms	remaining: 282ms
42:	learn: 27.2575376	total: 210ms	remaining: 278ms
43:	learn: 26.9741707	total: 217ms	remaining: 276ms
44:	learn: 26.6606899	total: 222ms	remaining: 271ms
45:	learn: 26.4015833	total: 227ms	remaining: 266ms
46:	learn: 26.1828993	total: 232ms	remaining: 262ms
47:	learn: 26.0233709	total: 236ms	remaining: 255ms
48:	learn: 25.9300399	total: 241ms	remaining: 251ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 252ms	remaining: 242ms
51:	learn: 25.1595644	total: 257ms	remaining: 237ms
52:	learn: 24.9955303	total: 262ms	remaining: 233ms
53:	learn: 24.7273966	total: 267ms	remaining: 227ms
54:	learn: 24.5747978	total: 272ms	remaining: 222ms
55:	learn: 24.3807977	total: 277ms	remaining: 218ms
56:	learn: 24.1689569	total: 283ms	remaining: 213ms
57:	learn: 23.9898221	total: 287ms	remaining: 208ms
58:	learn: 23.7566414	total: 291ms	remaining: 202ms
59:	learn: 23.6641165	total: 295ms	remaining: 197ms
60:	learn: 23.5658066	total: 299ms	remaining: 191ms
61:	learn: 23.4338851	total: 303ms	remaining: 185ms
62:	learn: 23.2408837	total: 307ms	remaining: 180ms
63:	learn: 23.0642038	total: 311ms	remaining: 175ms
64:	learn: 22.9032045	total: 315ms	remaining: 170ms
65:	learn: 22.7736138	total: 319ms	remaining: 164ms
66:	learn: 22.6836443	total: 323ms	remaining: 159ms
67:	learn: 22.5983654	total: 328ms	remaining: 154ms
68:	learn: 22.4419813	total: 332ms	remaining: 149ms
69:	learn: 22.2863339	total: 335ms	remaining: 144ms
70:	learn: 22.1792943	total: 339ms	remaining: 139ms
71:	learn: 22.1130574	total: 344ms	remaining: 134ms
72:	learn: 21.9858161	total: 349ms	remaining: 129ms
73:	learn: 21.8577784	total: 353ms	remaining: 124ms
74:	learn: 21.7845222	total: 358ms	remaining: 119ms
75:	learn: 21.6831390	total: 362ms	remaining: 114ms
76:	learn: 21.6292521	total: 366ms	remaining: 109ms
77:	learn: 21.5789330	total: 370ms	remaining: 104ms
78:	learn: 21.5420942	total: 375ms	remaining: 99.6ms
79:	learn: 21.4280939	total: 381ms	remaining: 95.3ms
80:	learn: 21.3641165	total: 388ms	remaining: 91ms
81:	learn: 21.2734814	total: 395ms	remaining: 86.7ms
82:	learn: 21.2220323	total: 403ms	remaining: 82.6ms
83:	learn: 21.0625792	total: 411ms	remaining: 78.3ms
84:	learn: 20.9488320	total: 416ms	remaining: 73.4ms
85:	learn: 20.8504255	total: 421ms	remaining: 68.6ms
86:	learn: 20.7848510	total: 427ms	remaining: 63.8ms
87:	learn: 20.7247442	total: 432ms	remaining: 58.9ms
88:	learn: 20.5698590	total: 437ms	remaining: 54ms
89:	learn: 20.4067620	total: 442ms	remaining: 49.2ms
90:	learn: 20.3062482	total: 448ms	remaining: 44.3ms
91:	learn: 20.2029696	total: 453ms	remaining: 39.4ms
92:	learn: 20.1384849	total: 458ms	remaining: 34.5ms
93:	learn: 20.0260709	total: 463ms	remaining: 29.6ms
94:	learn: 19.9122100	total: 468ms	remaining: 24.6ms
95:	learn: 19.8648487	total: 473ms	remaining: 19.7ms
96:	learn: 19.8207072	total: 478ms	remaining: 14.8ms
97:	learn: 19.7261189	total: 482ms	remaining: 9.84ms
98:	learn: 19.7042438	total: 486ms	remaining: 4.91ms
99:	learn: 19.6546645	total: 490ms	remaining: 0us
0:	learn: 47.0239288	total: 4.33ms	remaining: 429ms
1:	learn: 46.2253829	total: 8.22ms	remaining: 403ms
2:	learn: 45.5580301	total: 11.8ms	remaining: 383ms
3:	learn: 44.7273237	total: 16.1ms	remaining: 386ms
4:	learn: 43.8867421	total: 20.3ms	remaining: 386ms
5:	learn: 43.3615911	total: 24.8ms	remaining: 388ms
6:	learn: 42.8548390	total: 29.2ms	remaining: 388ms
7:	learn: 42.1606758	total: 33.4ms	remaining: 384ms
8:	learn: 41.6625870	total: 38.2ms	remaining: 386ms
9:	learn: 40.9497092	total: 42.5ms	remaining: 383ms
10:	learn: 40.1886318	total: 47.1ms	remaining: 381ms
11:	learn: 39.7456423	total: 51.8ms	remaining: 380ms
12:	learn: 39.1171373	total: 57.6ms	remaining: 385ms
13:	learn: 38.5451069	total: 64.7ms	remaining: 398ms
14:	learn: 38.0155834	total: 71.8ms	remaining: 407ms
15:	learn: 37.5631354	total: 79.6ms	remaining: 418ms
16:	learn: 37.1030023	total: 87.1ms	remaining: 425ms
17:	learn: 36.4563029	total: 92.2ms	remaining: 420ms
18:	learn: 36.0160976	total: 97.3ms	remaining: 415ms
19:	learn: 35.5079827	total: 114ms	remaining: 456ms
20:	learn: 35.2111885	total: 119ms	remaining: 448ms
21:	learn: 34.9397465	total: 124ms	remaining: 440ms
22:	learn: 34.5270048	total: 129ms	remaining: 433ms
23:	learn: 34.0169260	total: 134ms	remaining: 426ms
24:	learn: 33.7454892	total: 140ms	remaining: 419ms
25:	learn: 33.2648157	total: 144ms	remaining: 411ms
26:	learn: 32.8899427	total: 150ms	remaining: 404ms
27:	learn: 32.6185050	total: 155ms	remaining: 398ms
28:	learn: 32.3528531	total: 160ms	remaining: 392ms
29:	learn: 32.0859923	total: 164ms	remaining: 383ms
30:	learn: 31.6511144	total: 169ms	remaining: 376ms
31:	learn: 31.2571765	total: 173ms	remaining: 368ms
32:	learn: 30.9770049	total: 178ms	remaining: 361ms
33:	learn: 30.6084872	total: 182ms	remaining: 353ms
34:	learn: 30.3448632	total: 186ms	remaining: 346ms
35:	learn: 30.0360942	total: 191ms	remaining: 340ms
36:	learn: 29.6648968	total: 196ms	remaining: 333ms
37:	learn: 29.3165114	total: 201ms	remaining: 327ms
38:	learn: 29.0829198	total: 206ms	remaining: 322ms
39:	learn: 28.7752064	total: 210ms	remaining: 316ms
40:	learn: 28.3622191	total: 215ms	remaining: 309ms
41:	learn: 28.1346631	total: 220ms	remaining: 303ms
42:	learn: 27.9585719	total: 225ms	remaining: 298ms
43:	learn: 27.6565566	total: 230ms	remaining: 292ms
44:	learn: 27.3616172	total: 235ms	remaining: 287ms
45:	learn: 27.0658637	total: 240ms	remaining: 282ms
46:	learn: 26.8660382	total: 245ms	remaining: 276ms
47:	learn: 26.6536078	total: 250ms	remaining: 270ms
48:	learn: 26.3524440	total: 254ms	remaining: 265ms
49:	learn: 26.1595277	total: 261ms	remaining: 261ms
50:	learn: 25.9273523	total: 268ms	remaining: 258ms
51:	learn: 25.7195580	total: 276ms	remaining: 255ms
52:	learn: 25.5730225	total: 284ms	remaining: 252ms
53:	learn: 25.3455276	total: 292ms	remaining: 249ms
54:	learn: 25.2289675	total: 297ms	remaining: 243ms
55:	learn: 25.0133024	total: 303ms	remaining: 238ms
56:	learn: 24.8406714	total: 308ms	remaining: 232ms
57:	learn: 24.6367857	total: 314ms	remaining: 227ms
58:	learn: 24.5338177	total: 319ms	remaining: 221ms
59:	learn: 24.3799964	total: 324ms	remaining: 216ms
60:	learn: 24.1447492	total: 329ms	remaining: 210ms
61:	learn: 23.9880495	total: 334ms	remaining: 205ms
62:	learn: 23.7140630	total: 339ms	remaining: 199ms
63:	learn: 23.5003791	total: 344ms	remaining: 194ms
64:	learn: 23.3207645	total: 349ms	remaining: 188ms
65:	learn: 23.1958356	total: 354ms	remaining: 182ms
66:	learn: 23.0471302	total: 359ms	remaining: 177ms
67:	learn: 22.8977183	total: 364ms	remaining: 171ms
68:	learn: 22.7187400	total: 368ms	remaining: 166ms
69:	learn: 22.6523405	total: 372ms	remaining: 160ms
70:	learn: 22.4767453	total: 376ms	remaining: 154ms
71:	learn: 22.3243677	total: 381ms	remaining: 148ms
72:	learn: 22.2133096	total: 384ms	remaining: 142ms
73:	learn: 22.1151713	total: 388ms	remaining: 136ms
74:	learn: 22.0296666	total: 392ms	remaining: 131ms
75:	learn: 21.9195980	total: 396ms	remaining: 125ms
76:	learn: 21.8401730	total: 400ms	remaining: 120ms
77:	learn: 21.8079797	total: 404ms	remaining: 114ms
78:	learn: 21.7274109	total: 408ms	remaining: 109ms
79:	learn: 21.6663032	total: 412ms	remaining: 103ms
80:	learn: 21.5633117	total: 416ms	remaining: 97.7ms
81:	learn: 21.4542467	total: 421ms	remaining: 92.4ms
82:	learn: 21.3177957	total: 425ms	remaining: 87.1ms
83:	learn: 21.1289167	total: 430ms	remaining: 81.8ms
84:	learn: 21.0297368	total: 437ms	remaining: 77.1ms
85:	learn: 20.9089564	total: 444ms	remaining: 72.2ms
86:	learn: 20.7653988	total: 450ms	remaining: 67.3ms
87:	learn: 20.6521894	total: 455ms	remaining: 62.1ms
88:	learn: 20.5193021	total: 460ms	remaining: 56.8ms
89:	learn: 20.4361620	total: 465ms	remaining: 51.6ms
90:	learn: 20.3546710	total: 470ms	remaining: 46.5ms
91:	learn: 20.2513296	total: 479ms	remaining: 41.7ms
92:	learn: 20.1605550	total: 484ms	remaining: 36.5ms
93:	learn: 20.0515942	total: 489ms	remaining: 31.2ms
94:	learn: 19.9800764	total: 494ms	remaining: 26ms
95:	learn: 19.8996532	total: 500ms	remaining: 20.8ms
96:	learn: 19.8450910	total: 505ms	remaining: 15.6ms
97:	learn: 19.7887346	total: 509ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 514ms	remaining: 5.2ms
99:	learn: 19.6328825	total: 519ms	remaining: 0us
0:	learn: 27.5585353	total: 4.22ms	remaining: 418ms
1:	learn: 27.1656995	total: 8.34ms	remaining: 409ms
2:	learn: 26.8590175	total: 12.2ms	remaining: 395ms
3:	learn: 26.5818406	total: 15.9ms	remaining: 382ms
4:	learn: 26.1148663	total: 19.7ms	remaining: 375ms
5:	learn: 25.7690484	total: 24.1ms	remaining: 377ms
6:	learn: 25.3489206	total: 28.1ms	remaining: 373ms
7:	learn: 24.9542406	total: 32.2ms	remaining: 370ms
8:	learn: 24.6777517	total: 36.4ms	remaining: 368ms
9:	learn: 24.3242344	total: 40.8ms	remaining: 368ms
10:	learn: 24.0383073	total: 44.7ms	remaining: 362ms
11:	learn: 23.7383420	total: 48.4ms	remaining: 355ms
12:	learn: 23.3461670	total: 52.6ms	remaining: 352ms
13:	learn: 23.0928636	total: 57.1ms	remaining: 350ms
14:	learn: 22.8770414	total: 62.1ms	remaining: 352ms
15:	learn: 22.6323214	total: 66.8ms	remaining: 351ms
16:	learn: 22.3597072	total: 71.4ms	remaining: 348ms
17:	learn: 22.1079813	total: 75.8ms	remaining: 345ms
18:	learn: 21.8421199	total: 80.4ms	remaining: 343ms
19:	learn: 21.6576508	total: 84.8ms	remaining: 339ms
20:	learn: 21.4301268	total: 91.6ms	remaining: 344ms
21:	learn: 21.2287388	total: 99.1ms	remaining: 352ms
22:	learn: 21.0553872	total: 106ms	remaining: 356ms
23:	learn: 20.8977091	total: 114ms	remaining: 361ms
24:	learn: 20.6619051	total: 121ms	remaining: 363ms
25:	learn: 20.5040955	total: 126ms	remaining: 359ms
26:	learn: 20.3181195	total: 131ms	remaining: 355ms
27:	learn: 20.0869436	total: 136ms	remaining: 350ms
28:	learn: 19.9375985	total: 141ms	remaining: 346ms
29:	learn: 19.8247516	total: 147ms	remaining: 342ms
30:	learn: 19.6261697	total: 152ms	remaining: 339ms
31:	learn: 19.4547236	total: 158ms	remaining: 335ms
32:	learn: 19.3157092	total: 163ms	remaining: 331ms
33:	learn: 19.1561419	total: 168ms	remaining: 327ms
34:	learn: 19.0453620	total: 174ms	remaining: 323ms
35:	learn: 18.8738574	total: 179ms	remaining: 318ms
36:	learn: 18.7072907	total: 184ms	remaining: 313ms
37:	learn: 18.5877943	total: 189ms	remaining: 309ms
38:	learn: 18.4436380	total: 194ms	remaining: 304ms
39:	learn: 18.3463356	total: 198ms	remaining: 298ms
40:	learn: 18.2008059	total: 203ms	remaining: 291ms
41:	learn: 18.0582079	total: 207ms	remaining: 285ms
42:	learn: 17.8891982	total: 211ms	remaining: 279ms
43:	learn: 17.7332246	total: 214ms	remaining: 273ms
44:	learn: 17.6206421	total: 219ms	remaining: 267ms
45:	learn: 17.4982800	total: 222ms	remaining: 261ms
46:	learn: 17.3970150	total: 226ms	remaining: 255ms
47:	learn: 17.3058203	total: 230ms	remaining: 250ms
48:	learn: 17.1789256	total: 235ms	remaining: 244ms
49:	learn: 17.0916229	total: 239ms	remaining: 239ms
50:	learn: 16.9859820	total: 243ms	remaining: 233ms
51:	learn: 16.8995582	total: 247ms	remaining: 228ms
52:	learn: 16.8137014	total: 251ms	remaining: 223ms
53:	learn: 16.7021451	total: 256ms	remaining: 218ms
54:	learn: 16.5895582	total: 260ms	remaining: 213ms
55:	learn: 16.5015639	total: 264ms	remaining: 208ms
56:	learn: 16.4356637	total: 269ms	remaining: 203ms
57:	learn: 16.3514525	total: 274ms	remaining: 198ms
58:	learn: 16.2401369	total: 279ms	remaining: 194ms
59:	learn: 16.1293223	total: 283ms	remaining: 189ms
60:	learn: 16.0271167	total: 290ms	remaining: 185ms
61:	learn: 15.9126257	total: 297ms	remaining: 182ms
62:	learn: 15.8391096	total: 305ms	remaining: 179ms
63:	learn: 15.7441773	total: 312ms	remaining: 176ms
64:	learn: 15.6885195	total: 320ms	remaining: 172ms
65:	learn: 15.6052039	total: 325ms	remaining: 167ms
66:	learn: 15.5074202	total: 330ms	remaining: 163ms
67:	learn: 15.4054338	total: 335ms	remaining: 158ms
68:	learn: 15.2885714	total: 340ms	remaining: 153ms
69:	learn: 15.2157472	total: 345ms	remaining: 148ms
70:	learn: 15.1031554	total: 350ms	remaining: 143ms
71:	learn: 15.0237470	total: 355ms	remaining: 138ms
72:	learn: 14.9756825	total: 360ms	remaining: 133ms
73:	learn: 14.8840596	total: 366ms	remaining: 129ms
74:	learn: 14.8077061	total: 371ms	remaining: 124ms
75:	learn: 14.7444437	total: 376ms	remaining: 119ms
76:	learn: 14.6751720	total: 381ms	remaining: 114ms
77:	learn: 14.5830333	total: 386ms	remaining: 109ms
78:	learn: 14.5241206	total: 392ms	remaining: 104ms
79:	learn: 14.4892731	total: 396ms	remaining: 98.9ms
80:	learn: 14.4256605	total: 400ms	remaining: 93.7ms
81:	learn: 14.3666860	total: 404ms	remaining: 88.6ms
82:	learn: 14.2938372	total: 408ms	remaining: 83.6ms
83:	learn: 14.2161532	total: 412ms	remaining: 78.5ms
84:	learn: 14.1582910	total: 416ms	remaining: 73.4ms
85:	learn: 14.1029153	total: 420ms	remaining: 68.4ms
86:	learn: 14.0475835	total: 424ms	remaining: 63.4ms
87:	learn: 13.9892661	total: 428ms	remaining: 58.4ms
88:	learn: 13.9481628	total: 432ms	remaining: 53.4ms
89:	learn: 13.8483991	total: 437ms	remaining: 48.5ms
90:	learn: 13.7775614	total: 441ms	remaining: 43.6ms
91:	learn: 13.7304585	total: 445ms	remaining: 38.7ms
92:	learn: 13.6783381	total: 450ms	remaining: 33.8ms
93:	learn: 13.6356964	total: 454ms	remaining: 29ms
94:	learn: 13.5924371	total: 459ms	remaining: 24.1ms
95:	learn: 13.5400746	total: 463ms	remaining: 19.3ms
96:	learn: 13.4897333	total: 468ms	remaining: 14.5ms
97:	learn: 13.4470321	total: 473ms	remaining: 9.64ms
98:	learn: 13.3856082	total: 477ms	remaining: 4.82ms
99:	learn: 13.3082371	total: 482ms	remaining: 0us
0:	learn: 43.0395283	total: 6.01ms	remaining: 595ms
1:	learn: 42.1130223	total: 11ms	remaining: 539ms
2:	learn: 41.1753409	total: 16.1ms	remaining: 521ms
3:	learn: 40.3637444	total: 21.4ms	remaining: 513ms
4:	learn: 39.6508088	total: 26.8ms	remaining: 510ms
5:	learn: 38.7217934	total: 31.7ms	remaining: 497ms
6:	learn: 37.8538055	total: 36.8ms	remaining: 489ms
7:	learn: 36.9793574	total: 42ms	remaining: 483ms
8:	learn: 36.3076984	total: 47ms	remaining: 475ms
9:	learn: 35.6673160	total: 51.4ms	remaining: 463ms
10:	learn: 34.8889800	total: 57ms	remaining: 461ms
11:	learn: 34.1675517	total: 62.3ms	remaining: 457ms
12:	learn: 33.6779564	total: 67ms	remaining: 448ms
13:	learn: 33.0710039	total: 71.3ms	remaining: 438ms
14:	learn: 32.4966674	total: 76.3ms	remaining: 433ms
15:	learn: 31.9492856	total: 81.2ms	remaining: 426ms
16:	learn: 31.5108129	total: 85.8ms	remaining: 419ms
17:	learn: 30.9804023	total: 91.1ms	remaining: 415ms
18:	learn: 30.4169089	total: 96ms	remaining: 409ms
19:	learn: 29.8930375	total: 101ms	remaining: 403ms
20:	learn: 29.3974421	total: 105ms	remaining: 395ms
21:	learn: 28.8792307	total: 110ms	remaining: 389ms
22:	learn: 28.3894474	total: 114ms	remaining: 381ms
23:	learn: 27.9921276	total: 118ms	remaining: 375ms
24:	learn: 27.6158887	total: 123ms	remaining: 368ms
25:	learn: 27.2866950	total: 127ms	remaining: 363ms
26:	learn: 26.8770708	total: 132ms	remaining: 358ms
27:	learn: 26.6233005	total: 137ms	remaining: 352ms
28:	learn: 26.2921934	total: 141ms	remaining: 346ms
29:	learn: 25.9156920	total: 146ms	remaining: 341ms
30:	learn: 25.5311106	total: 148ms	remaining: 329ms
31:	learn: 25.2178997	total: 152ms	remaining: 324ms
32:	learn: 24.8572196	total: 157ms	remaining: 319ms
33:	learn: 24.5849710	total: 163ms	remaining: 315ms
34:	learn: 24.2209190	total: 170ms	remaining: 315ms
35:	learn: 23.8708250	total: 178ms	remaining: 316ms
36:	learn: 23.5325279	total: 186ms	remaining: 317ms
37:	learn: 23.2116148	total: 193ms	remaining: 315ms
38:	learn: 22.9696787	total: 199ms	remaining: 311ms
39:	learn: 22.7936783	total: 204ms	remaining: 306ms
40:	learn: 22.6228847	total: 209ms	remaining: 301ms
41:	learn: 22.3691527	total: 215ms	remaining: 297ms
42:	learn: 22.1002173	total: 220ms	remaining: 292ms
43:	learn: 21.9157268	total: 225ms	remaining: 286ms
44:	learn: 21.7229102	total: 230ms	remaining: 282ms
45:	learn: 21.4642005	total: 236ms	remaining: 276ms
46:	learn: 21.3029442	total: 240ms	remaining: 271ms
47:	learn: 21.1469792	total: 245ms	remaining: 266ms
48:	learn: 20.9458235	total: 250ms	remaining: 260ms
49:	learn: 20.7335242	total: 255ms	remaining: 255ms
50:	learn: 20.5440269	total: 260ms	remaining: 250ms
51:	learn: 20.3661449	total: 266ms	remaining: 245ms
52:	learn: 20.2158134	total: 270ms	remaining: 239ms
53:	learn: 19.9934873	total: 274ms	remaining: 233ms
54:	learn: 19.7879739	total: 277ms	remaining: 227ms
55:	learn: 19.6630460	total: 282ms	remaining: 222ms
56:	learn: 19.5152729	total: 286ms	remaining: 216ms
57:	learn: 19.3581128	total: 290ms	remaining: 210ms
58:	learn: 19.2209303	total: 294ms	remaining: 205ms
59:	learn: 19.0965248	total: 299ms	remaining: 199ms
60:	learn: 19.0035954	total: 303ms	remaining: 194ms
61:	learn: 18.8554149	total: 307ms	remaining: 188ms
62:	learn: 18.7095427	total: 311ms	remaining: 183ms
63:	learn: 18.5751494	total: 315ms	remaining: 177ms
64:	learn: 18.4678251	total: 319ms	remaining: 172ms
65:	learn: 18.3500325	total: 324ms	remaining: 167ms
66:	learn: 18.2088983	total: 328ms	remaining: 162ms
67:	learn: 18.0737705	total: 333ms	remaining: 157ms
68:	learn: 17.9325058	total: 338ms	remaining: 152ms
69:	learn: 17.8003911	total: 342ms	remaining: 147ms
70:	learn: 17.7385366	total: 347ms	remaining: 142ms
71:	learn: 17.6106998	total: 352ms	remaining: 137ms
72:	learn: 17.4816270	total: 356ms	remaining: 132ms
73:	learn: 17.4025554	total: 364ms	remaining: 128ms
74:	learn: 17.2902108	total: 372ms	remaining: 124ms
75:	learn: 17.2158048	total: 381ms	remaining: 120ms
76:	learn: 17.1261053	total: 388ms	remaining: 116ms
77:	learn: 17.0308917	total: 394ms	remaining: 111ms
78:	learn: 16.9546705	total: 399ms	remaining: 106ms
79:	learn: 16.8319165	total: 405ms	remaining: 101ms
80:	learn: 16.7687017	total: 409ms	remaining: 96ms
81:	learn: 16.6972326	total: 414ms	remaining: 90.9ms
82:	learn: 16.6124580	total: 420ms	remaining: 85.9ms
83:	learn: 16.4999052	total: 425ms	remaining: 80.9ms
84:	learn: 16.4302484	total: 430ms	remaining: 75.9ms
85:	learn: 16.3201363	total: 435ms	remaining: 70.8ms
86:	learn: 16.2534314	total: 440ms	remaining: 65.7ms
87:	learn: 16.1720485	total: 445ms	remaining: 60.6ms
88:	learn: 16.0625751	total: 450ms	remaining: 55.6ms
89:	learn: 15.9135088	total: 455ms	remaining: 50.6ms
90:	learn: 15.8658863	total: 460ms	remaining: 45.5ms
91:	learn: 15.8066805	total: 464ms	remaining: 40.4ms
92:	learn: 15.7412103	total: 468ms	remaining: 35.2ms
93:	learn: 15.6542776	total: 472ms	remaining: 30.1ms
94:	learn: 15.5760334	total: 476ms	remaining: 25ms
95:	learn: 15.5434131	total: 480ms	remaining: 20ms
96:	learn: 15.4709561	total: 484ms	remaining: 15ms
97:	learn: 15.4449618	total: 488ms	remaining: 9.96ms
98:	learn: 15.3752761	total: 492ms	remaining: 4.97ms
99:	learn: 15.3106595	total: 497ms	remaining: 0us
0:	learn: 46.7142257	total: 4.96ms	remaining: 491ms
1:	learn: 45.7634153	total: 9.4ms	remaining: 461ms
2:	learn: 45.0054253	total: 14.1ms	remaining: 457ms
3:	learn: 44.2120432	total: 22.2ms	remaining: 533ms
4:	learn: 43.3960472	total: 29.4ms	remaining: 559ms
5:	learn: 42.8588120	total: 37.7ms	remaining: 591ms
6:	learn: 41.9533701	total: 43.3ms	remaining: 575ms
7:	learn: 41.2745030	total: 50.2ms	remaining: 577ms
8:	learn: 40.6797495	total: 55.5ms	remaining: 561ms
9:	learn: 39.9899571	total: 60.8ms	remaining: 548ms
10:	learn: 39.4682100	total: 65.9ms	remaining: 533ms
11:	learn: 39.0305595	total: 71ms	remaining: 520ms
12:	learn: 38.4200417	total: 76.2ms	remaining: 510ms
13:	learn: 37.8425194	total: 81.3ms	remaining: 500ms
14:	learn: 37.4203127	total: 86.3ms	remaining: 489ms
15:	learn: 36.9917688	total: 91.7ms	remaining: 481ms
16:	learn: 36.5544138	total: 96.9ms	remaining: 473ms
17:	learn: 36.0727019	total: 102ms	remaining: 464ms
18:	learn: 35.4835715	total: 107ms	remaining: 457ms
19:	learn: 34.9865654	total: 113ms	remaining: 451ms
20:	learn: 34.6063373	total: 118ms	remaining: 444ms
21:	learn: 34.0997289	total: 122ms	remaining: 434ms
22:	learn: 33.7313171	total: 127ms	remaining: 425ms
23:	learn: 33.3582000	total: 131ms	remaining: 414ms
24:	learn: 32.9432456	total: 135ms	remaining: 404ms
25:	learn: 32.5220888	total: 139ms	remaining: 395ms
26:	learn: 32.2172292	total: 143ms	remaining: 387ms
27:	learn: 31.8972904	total: 147ms	remaining: 377ms
28:	learn: 31.6405350	total: 151ms	remaining: 369ms
29:	learn: 31.4167702	total: 155ms	remaining: 361ms
30:	learn: 30.8541961	total: 156ms	remaining: 348ms
31:	learn: 30.5572111	total: 160ms	remaining: 341ms
32:	learn: 30.1700399	total: 165ms	remaining: 334ms
33:	learn: 29.8537271	total: 169ms	remaining: 328ms
34:	learn: 29.6192540	total: 173ms	remaining: 322ms
35:	learn: 29.3276362	total: 178ms	remaining: 316ms
36:	learn: 28.9985179	total: 181ms	remaining: 309ms
37:	learn: 28.7046880	total: 185ms	remaining: 302ms
38:	learn: 28.4412677	total: 189ms	remaining: 296ms
39:	learn: 28.1277292	total: 194ms	remaining: 290ms
40:	learn: 27.9000750	total: 198ms	remaining: 285ms
41:	learn: 27.5433162	total: 202ms	remaining: 279ms
42:	learn: 27.2493285	total: 206ms	remaining: 273ms
43:	learn: 26.9576632	total: 208ms	remaining: 264ms
44:	learn: 26.6177110	total: 212ms	remaining: 259ms
45:	learn: 26.2812456	total: 216ms	remaining: 253ms
46:	learn: 26.0803859	total: 220ms	remaining: 248ms
47:	learn: 25.9543581	total: 224ms	remaining: 242ms
48:	learn: 25.7951582	total: 228ms	remaining: 237ms
49:	learn: 25.6548184	total: 232ms	remaining: 232ms
50:	learn: 25.4010843	total: 237ms	remaining: 228ms
51:	learn: 24.9773937	total: 241ms	remaining: 223ms
52:	learn: 24.8026156	total: 246ms	remaining: 218ms
53:	learn: 24.5568053	total: 250ms	remaining: 213ms
54:	learn: 24.2281839	total: 255ms	remaining: 209ms
55:	learn: 23.9202795	total: 259ms	remaining: 204ms
56:	learn: 23.7625591	total: 264ms	remaining: 199ms
57:	learn: 23.5429721	total: 272ms	remaining: 197ms
58:	learn: 23.3175893	total: 280ms	remaining: 195ms
59:	learn: 23.2035130	total: 289ms	remaining: 192ms
60:	learn: 23.0232450	total: 296ms	remaining: 189ms
61:	learn: 22.8384958	total: 301ms	remaining: 185ms
62:	learn: 22.6499902	total: 306ms	remaining: 180ms
63:	learn: 22.4577426	total: 311ms	remaining: 175ms
64:	learn: 22.3333158	total: 317ms	remaining: 171ms
65:	learn: 22.2064131	total: 322ms	remaining: 166ms
66:	learn: 22.1434971	total: 327ms	remaining: 161ms
67:	learn: 21.9596519	total: 332ms	remaining: 156ms
68:	learn: 21.8475576	total: 338ms	remaining: 152ms
69:	learn: 21.6954745	total: 343ms	remaining: 147ms
70:	learn: 21.5635976	total: 348ms	remaining: 142ms
71:	learn: 21.4588506	total: 353ms	remaining: 137ms
72:	learn: 21.3527268	total: 358ms	remaining: 132ms
73:	learn: 21.2661288	total: 363ms	remaining: 128ms
74:	learn: 21.1817333	total: 369ms	remaining: 123ms
75:	learn: 21.0527553	total: 373ms	remaining: 118ms
76:	learn: 20.9229021	total: 377ms	remaining: 113ms
77:	learn: 20.7563946	total: 382ms	remaining: 108ms
78:	learn: 20.6569831	total: 386ms	remaining: 103ms
79:	learn: 20.4982663	total: 390ms	remaining: 97.5ms
80:	learn: 20.3185460	total: 395ms	remaining: 92.5ms
81:	learn: 20.2096241	total: 399ms	remaining: 87.5ms
82:	learn: 20.1274891	total: 403ms	remaining: 82.5ms
83:	learn: 20.0740139	total: 407ms	remaining: 77.6ms
84:	learn: 19.9630699	total: 412ms	remaining: 72.7ms
85:	learn: 19.8753899	total: 417ms	remaining: 67.8ms
86:	learn: 19.6563612	total: 421ms	remaining: 62.9ms
87:	learn: 19.4680232	total: 425ms	remaining: 57.9ms
88:	learn: 19.3503431	total: 429ms	remaining: 53.1ms
89:	learn: 19.2221379	total: 434ms	remaining: 48.2ms
90:	learn: 19.0732542	total: 439ms	remaining: 43.4ms
91:	learn: 18.9825190	total: 443ms	remaining: 38.6ms
92:	learn: 18.8839009	total: 448ms	remaining: 33.7ms
93:	learn: 18.8012219	total: 452ms	remaining: 28.9ms
94:	learn: 18.7172713	total: 457ms	remaining: 24ms
95:	learn: 18.6201170	total: 462ms	remaining: 19.2ms
96:	learn: 18.5318611	total: 470ms	remaining: 14.5ms
97:	learn: 18.3833356	total: 478ms	remaining: 9.74ms
98:	learn: 18.3289700	total: 487ms	remaining: 4.91ms
99:	learn: 18.2227333	total: 492ms	remaining: 0us
0:	learn: 46.3764524	total: 5.87ms	remaining: 581ms
1:	learn: 45.5561269	total: 11.2ms	remaining: 549ms
2:	learn: 44.8811245	total: 15.3ms	remaining: 494ms
3:	learn: 44.0788617	total: 19.4ms	remaining: 465ms
4:	learn: 43.3619790	total: 23.3ms	remaining: 442ms
5:	learn: 42.6912112	total: 27.4ms	remaining: 429ms
6:	learn: 42.2292118	total: 31.3ms	remaining: 416ms
7:	learn: 41.7725191	total: 35.5ms	remaining: 408ms
8:	learn: 41.1676614	total: 39.6ms	remaining: 400ms
9:	learn: 40.5771076	total: 43.8ms	remaining: 394ms
10:	learn: 39.8343757	total: 48.1ms	remaining: 389ms
11:	learn: 39.3761142	total: 52.6ms	remaining: 386ms
12:	learn: 38.5254692	total: 56.7ms	remaining: 380ms
13:	learn: 37.9629555	total: 60.6ms	remaining: 372ms
14:	learn: 37.4418438	total: 64.7ms	remaining: 367ms
15:	learn: 37.0507283	total: 69.2ms	remaining: 363ms
16:	learn: 36.6264217	total: 72.9ms	remaining: 356ms
17:	learn: 36.1114940	total: 77.1ms	remaining: 351ms
18:	learn: 35.7193862	total: 81.3ms	remaining: 347ms
19:	learn: 35.3301177	total: 86.1ms	remaining: 344ms
20:	learn: 35.0598280	total: 90.7ms	remaining: 341ms
21:	learn: 34.5469736	total: 94.8ms	remaining: 336ms
22:	learn: 34.2064215	total: 99.1ms	remaining: 332ms
23:	learn: 33.7280710	total: 104ms	remaining: 329ms
24:	learn: 33.3282940	total: 108ms	remaining: 324ms
25:	learn: 32.8478961	total: 113ms	remaining: 321ms
26:	learn: 32.5722164	total: 119ms	remaining: 323ms
27:	learn: 32.2457019	total: 128ms	remaining: 329ms
28:	learn: 31.9230495	total: 137ms	remaining: 336ms
29:	learn: 31.4311611	total: 143ms	remaining: 334ms
30:	learn: 30.9179052	total: 151ms	remaining: 335ms
31:	learn: 30.6201141	total: 157ms	remaining: 333ms
32:	learn: 30.3421106	total: 162ms	remaining: 328ms
33:	learn: 29.9885373	total: 167ms	remaining: 323ms
34:	learn: 29.7462780	total: 172ms	remaining: 319ms
35:	learn: 29.3607153	total: 177ms	remaining: 315ms
36:	learn: 29.1793078	total: 182ms	remaining: 311ms
37:	learn: 28.9276538	total: 187ms	remaining: 306ms
38:	learn: 28.6903934	total: 193ms	remaining: 301ms
39:	learn: 28.2095033	total: 198ms	remaining: 296ms
40:	learn: 27.7990608	total: 203ms	remaining: 291ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 212ms	remaining: 281ms
43:	learn: 26.9741707	total: 217ms	remaining: 277ms
44:	learn: 26.6606899	total: 223ms	remaining: 273ms
45:	learn: 26.4015833	total: 227ms	remaining: 266ms
46:	learn: 26.1828993	total: 231ms	remaining: 260ms
47:	learn: 26.0233709	total: 233ms	remaining: 253ms
48:	learn: 25.9300399	total: 237ms	remaining: 247ms
49:	learn: 25.5861489	total: 242ms	remaining: 242ms
50:	learn: 25.4322012	total: 245ms	remaining: 236ms
51:	learn: 25.1595644	total: 249ms	remaining: 230ms
52:	learn: 24.9955303	total: 253ms	remaining: 224ms
53:	learn: 24.7273966	total: 257ms	remaining: 219ms
54:	learn: 24.5747978	total: 262ms	remaining: 214ms
55:	learn: 24.3807977	total: 266ms	remaining: 209ms
56:	learn: 24.1689569	total: 270ms	remaining: 204ms
57:	learn: 23.9898221	total: 274ms	remaining: 198ms
58:	learn: 23.7566414	total: 278ms	remaining: 193ms
59:	learn: 23.6641165	total: 282ms	remaining: 188ms
60:	learn: 23.5658066	total: 286ms	remaining: 183ms
61:	learn: 23.4338851	total: 291ms	remaining: 178ms
62:	learn: 23.2408837	total: 295ms	remaining: 173ms
63:	learn: 23.0642038	total: 299ms	remaining: 168ms
64:	learn: 22.9032045	total: 304ms	remaining: 164ms
65:	learn: 22.7736138	total: 308ms	remaining: 159ms
66:	learn: 22.6836443	total: 313ms	remaining: 154ms
67:	learn: 22.5983654	total: 318ms	remaining: 150ms
68:	learn: 22.4419813	total: 326ms	remaining: 146ms
69:	learn: 22.2863339	total: 333ms	remaining: 143ms
70:	learn: 22.1792943	total: 340ms	remaining: 139ms
71:	learn: 22.1130574	total: 348ms	remaining: 135ms
72:	learn: 21.9858161	total: 353ms	remaining: 131ms
73:	learn: 21.8577784	total: 358ms	remaining: 126ms
74:	learn: 21.7845222	total: 364ms	remaining: 121ms
75:	learn: 21.6831390	total: 369ms	remaining: 117ms
76:	learn: 21.6292521	total: 374ms	remaining: 112ms
77:	learn: 21.5789330	total: 379ms	remaining: 107ms
78:	learn: 21.5420942	total: 385ms	remaining: 102ms
79:	learn: 21.4280939	total: 389ms	remaining: 97.4ms
80:	learn: 21.3641165	total: 395ms	remaining: 92.6ms
81:	learn: 21.2734814	total: 399ms	remaining: 87.7ms
82:	learn: 21.2220323	total: 404ms	remaining: 82.7ms
83:	learn: 21.0625792	total: 408ms	remaining: 77.8ms
84:	learn: 20.9488320	total: 413ms	remaining: 72.9ms
85:	learn: 20.8504255	total: 418ms	remaining: 68.1ms
86:	learn: 20.7848510	total: 424ms	remaining: 63.3ms
87:	learn: 20.7247442	total: 429ms	remaining: 58.4ms
88:	learn: 20.5698590	total: 433ms	remaining: 53.5ms
89:	learn: 20.4067620	total: 437ms	remaining: 48.6ms
90:	learn: 20.3062482	total: 441ms	remaining: 43.6ms
91:	learn: 20.2029696	total: 445ms	remaining: 38.7ms
92:	learn: 20.1384849	total: 450ms	remaining: 33.8ms
93:	learn: 20.0260709	total: 454ms	remaining: 29ms
94:	learn: 19.9122100	total: 458ms	remaining: 24.1ms
95:	learn: 19.8648487	total: 462ms	remaining: 19.2ms
96:	learn: 19.8207072	total: 466ms	remaining: 14.4ms
97:	learn: 19.7261189	total: 470ms	remaining: 9.59ms
98:	learn: 19.7042438	total: 474ms	remaining: 4.79ms
99:	learn: 19.6546645	total: 478ms	remaining: 0us
0:	learn: 47.0239288	total: 6.53ms	remaining: 646ms
1:	learn: 46.2253829	total: 13.9ms	remaining: 682ms
2:	learn: 45.5580301	total: 18.8ms	remaining: 609ms
3:	learn: 44.7273237	total: 24.2ms	remaining: 581ms
4:	learn: 43.8867421	total: 29.4ms	remaining: 558ms
5:	learn: 43.3615911	total: 34.8ms	remaining: 545ms
6:	learn: 42.8548390	total: 40ms	remaining: 531ms
7:	learn: 42.1606758	total: 45.3ms	remaining: 521ms
8:	learn: 41.6625870	total: 50.8ms	remaining: 514ms
9:	learn: 40.9497092	total: 55.9ms	remaining: 503ms
10:	learn: 40.1886318	total: 61.5ms	remaining: 498ms
11:	learn: 39.7456423	total: 66.7ms	remaining: 489ms
12:	learn: 39.1171373	total: 71.3ms	remaining: 477ms
13:	learn: 38.5451069	total: 76.7ms	remaining: 471ms
14:	learn: 38.0155834	total: 82ms	remaining: 465ms
15:	learn: 37.5631354	total: 87.4ms	remaining: 459ms
16:	learn: 37.1030023	total: 91.4ms	remaining: 446ms
17:	learn: 36.4563029	total: 95.5ms	remaining: 435ms
18:	learn: 36.0160976	total: 99.5ms	remaining: 424ms
19:	learn: 35.5079827	total: 104ms	remaining: 415ms
20:	learn: 35.2111885	total: 108ms	remaining: 407ms
21:	learn: 34.9397465	total: 113ms	remaining: 401ms
22:	learn: 34.5270048	total: 117ms	remaining: 393ms
23:	learn: 34.0169260	total: 122ms	remaining: 386ms
24:	learn: 33.7454892	total: 126ms	remaining: 379ms
25:	learn: 33.2648157	total: 131ms	remaining: 372ms
26:	learn: 32.8899427	total: 135ms	remaining: 364ms
27:	learn: 32.6185050	total: 139ms	remaining: 357ms
28:	learn: 32.3528531	total: 143ms	remaining: 350ms
29:	learn: 32.0859923	total: 147ms	remaining: 343ms
30:	learn: 31.6511144	total: 151ms	remaining: 337ms
31:	learn: 31.2571765	total: 156ms	remaining: 332ms
32:	learn: 30.9770049	total: 160ms	remaining: 325ms
33:	learn: 30.6084872	total: 165ms	remaining: 320ms
34:	learn: 30.3448632	total: 169ms	remaining: 314ms
35:	learn: 30.0360942	total: 174ms	remaining: 309ms
36:	learn: 29.6648968	total: 178ms	remaining: 303ms
37:	learn: 29.3165114	total: 183ms	remaining: 298ms
38:	learn: 29.0829198	total: 188ms	remaining: 294ms
39:	learn: 28.7752064	total: 196ms	remaining: 293ms
40:	learn: 28.3622191	total: 203ms	remaining: 292ms
41:	learn: 28.1346631	total: 212ms	remaining: 293ms
42:	learn: 27.9585719	total: 218ms	remaining: 289ms
43:	learn: 27.6565566	total: 224ms	remaining: 285ms
44:	learn: 27.3616172	total: 229ms	remaining: 280ms
45:	learn: 27.0658637	total: 234ms	remaining: 275ms
46:	learn: 26.8660382	total: 239ms	remaining: 270ms
47:	learn: 26.6536078	total: 245ms	remaining: 265ms
48:	learn: 26.3524440	total: 250ms	remaining: 261ms
49:	learn: 26.1595277	total: 256ms	remaining: 256ms
50:	learn: 25.9273523	total: 261ms	remaining: 251ms
51:	learn: 25.7195580	total: 266ms	remaining: 245ms
52:	learn: 25.5730225	total: 271ms	remaining: 240ms
53:	learn: 25.3455276	total: 276ms	remaining: 235ms
54:	learn: 25.2289675	total: 281ms	remaining: 230ms
55:	learn: 25.0133024	total: 287ms	remaining: 225ms
56:	learn: 24.8406714	total: 291ms	remaining: 220ms
57:	learn: 24.6367857	total: 295ms	remaining: 214ms
58:	learn: 24.5338177	total: 300ms	remaining: 208ms
59:	learn: 24.3799964	total: 304ms	remaining: 202ms
60:	learn: 24.1447492	total: 308ms	remaining: 197ms
61:	learn: 23.9880495	total: 312ms	remaining: 191ms
62:	learn: 23.7140630	total: 316ms	remaining: 186ms
63:	learn: 23.5003791	total: 321ms	remaining: 180ms
64:	learn: 23.3207645	total: 325ms	remaining: 175ms
65:	learn: 23.1958356	total: 330ms	remaining: 170ms
66:	learn: 23.0471302	total: 335ms	remaining: 165ms
67:	learn: 22.8977183	total: 339ms	remaining: 159ms
68:	learn: 22.7187400	total: 343ms	remaining: 154ms
69:	learn: 22.6523405	total: 347ms	remaining: 149ms
70:	learn: 22.4767453	total: 352ms	remaining: 144ms
71:	learn: 22.3243677	total: 356ms	remaining: 139ms
72:	learn: 22.2133096	total: 361ms	remaining: 133ms
73:	learn: 22.1151713	total: 365ms	remaining: 128ms
74:	learn: 22.0296666	total: 371ms	remaining: 124ms
75:	learn: 21.9195980	total: 375ms	remaining: 119ms
76:	learn: 21.8401730	total: 380ms	remaining: 113ms
77:	learn: 21.8079797	total: 384ms	remaining: 108ms
78:	learn: 21.7274109	total: 392ms	remaining: 104ms
79:	learn: 21.6663032	total: 399ms	remaining: 99.7ms
80:	learn: 21.5633117	total: 408ms	remaining: 95.7ms
81:	learn: 21.4542467	total: 417ms	remaining: 91.5ms
82:	learn: 21.3177957	total: 422ms	remaining: 86.4ms
83:	learn: 21.1289167	total: 428ms	remaining: 81.5ms
84:	learn: 21.0297368	total: 433ms	remaining: 76.5ms
85:	learn: 20.9089564	total: 439ms	remaining: 71.4ms
86:	learn: 20.7653988	total: 444ms	remaining: 66.4ms
87:	learn: 20.6521894	total: 449ms	remaining: 61.2ms
88:	learn: 20.5193021	total: 454ms	remaining: 56.1ms
89:	learn: 20.4361620	total: 459ms	remaining: 51ms
90:	learn: 20.3546710	total: 464ms	remaining: 45.9ms
91:	learn: 20.2513296	total: 469ms	remaining: 40.8ms
92:	learn: 20.1605550	total: 474ms	remaining: 35.7ms
93:	learn: 20.0515942	total: 479ms	remaining: 30.6ms
94:	learn: 19.9800764	total: 485ms	remaining: 25.5ms
95:	learn: 19.8996532	total: 490ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 494ms	remaining: 15.3ms
97:	learn: 19.7887346	total: 498ms	remaining: 10.2ms
98:	learn: 19.7230872	total: 502ms	remaining: 5.07ms
99:	learn: 19.6328825	total: 506ms	remaining: 0us
0:	learn: 27.5585353	total: 4.93ms	remaining: 488ms
1:	learn: 27.1656995	total: 9.16ms	remaining: 449ms
2:	learn: 26.8590175	total: 13.8ms	remaining: 445ms
3:	learn: 26.5818406	total: 18.2ms	remaining: 436ms
4:	learn: 26.1148663	total: 22.5ms	remaining: 427ms
5:	learn: 25.7690484	total: 26.8ms	remaining: 420ms
6:	learn: 25.3489206	total: 31.8ms	remaining: 423ms
7:	learn: 24.9542406	total: 39.8ms	remaining: 458ms
8:	learn: 24.6777517	total: 47.9ms	remaining: 485ms
9:	learn: 24.3242344	total: 56.8ms	remaining: 511ms
10:	learn: 24.0383073	total: 62.3ms	remaining: 504ms
11:	learn: 23.7383420	total: 69.8ms	remaining: 512ms
12:	learn: 23.3461670	total: 74.7ms	remaining: 500ms
13:	learn: 23.0928636	total: 79.7ms	remaining: 490ms
14:	learn: 22.8770414	total: 85ms	remaining: 482ms
15:	learn: 22.6323214	total: 90.4ms	remaining: 475ms
16:	learn: 22.3597072	total: 95.5ms	remaining: 466ms
17:	learn: 22.1079813	total: 101ms	remaining: 458ms
18:	learn: 21.8421199	total: 106ms	remaining: 450ms
19:	learn: 21.6576508	total: 111ms	remaining: 442ms
20:	learn: 21.4301268	total: 116ms	remaining: 436ms
21:	learn: 21.2287388	total: 121ms	remaining: 429ms
22:	learn: 21.0553872	total: 126ms	remaining: 421ms
23:	learn: 20.8977091	total: 131ms	remaining: 414ms
24:	learn: 20.6619051	total: 136ms	remaining: 409ms
25:	learn: 20.5040955	total: 140ms	remaining: 400ms
26:	learn: 20.3181195	total: 144ms	remaining: 391ms
27:	learn: 20.0869436	total: 148ms	remaining: 381ms
28:	learn: 19.9375985	total: 153ms	remaining: 374ms
29:	learn: 19.8247516	total: 157ms	remaining: 367ms
30:	learn: 19.6261697	total: 161ms	remaining: 359ms
31:	learn: 19.4547236	total: 165ms	remaining: 350ms
32:	learn: 19.3157092	total: 169ms	remaining: 343ms
33:	learn: 19.1561419	total: 173ms	remaining: 335ms
34:	learn: 19.0453620	total: 177ms	remaining: 328ms
35:	learn: 18.8738574	total: 181ms	remaining: 321ms
36:	learn: 18.7072907	total: 185ms	remaining: 314ms
37:	learn: 18.5877943	total: 189ms	remaining: 308ms
38:	learn: 18.4436380	total: 193ms	remaining: 302ms
39:	learn: 18.3463356	total: 197ms	remaining: 295ms
40:	learn: 18.2008059	total: 201ms	remaining: 289ms
41:	learn: 18.0582079	total: 205ms	remaining: 283ms
42:	learn: 17.8891982	total: 209ms	remaining: 277ms
43:	learn: 17.7332246	total: 213ms	remaining: 271ms
44:	learn: 17.6206421	total: 217ms	remaining: 266ms
45:	learn: 17.4982800	total: 221ms	remaining: 260ms
46:	learn: 17.3970150	total: 225ms	remaining: 254ms
47:	learn: 17.3058203	total: 230ms	remaining: 249ms
48:	learn: 17.1789256	total: 234ms	remaining: 244ms
49:	learn: 17.0916229	total: 239ms	remaining: 239ms
50:	learn: 16.9859820	total: 244ms	remaining: 234ms
51:	learn: 16.8995582	total: 248ms	remaining: 229ms
52:	learn: 16.8137014	total: 253ms	remaining: 224ms
53:	learn: 16.7021451	total: 257ms	remaining: 219ms
54:	learn: 16.5895582	total: 262ms	remaining: 214ms
55:	learn: 16.5015639	total: 266ms	remaining: 209ms
56:	learn: 16.4356637	total: 274ms	remaining: 207ms
57:	learn: 16.3514525	total: 281ms	remaining: 204ms
58:	learn: 16.2401369	total: 289ms	remaining: 201ms
59:	learn: 16.1293223	total: 294ms	remaining: 196ms
60:	learn: 16.0271167	total: 299ms	remaining: 191ms
61:	learn: 15.9126257	total: 304ms	remaining: 186ms
62:	learn: 15.8391096	total: 309ms	remaining: 181ms
63:	learn: 15.7441773	total: 314ms	remaining: 177ms
64:	learn: 15.6885195	total: 319ms	remaining: 172ms
65:	learn: 15.6052039	total: 325ms	remaining: 167ms
66:	learn: 15.5074202	total: 330ms	remaining: 162ms
67:	learn: 15.4054338	total: 335ms	remaining: 158ms
68:	learn: 15.2885714	total: 341ms	remaining: 153ms
69:	learn: 15.2157472	total: 345ms	remaining: 148ms
70:	learn: 15.1031554	total: 351ms	remaining: 143ms
71:	learn: 15.0237470	total: 356ms	remaining: 139ms
72:	learn: 14.9756825	total: 361ms	remaining: 134ms
73:	learn: 14.8840596	total: 365ms	remaining: 128ms
74:	learn: 14.8077061	total: 369ms	remaining: 123ms
75:	learn: 14.7444437	total: 374ms	remaining: 118ms
76:	learn: 14.6751720	total: 378ms	remaining: 113ms
77:	learn: 14.5830333	total: 383ms	remaining: 108ms
78:	learn: 14.5241206	total: 387ms	remaining: 103ms
79:	learn: 14.4892731	total: 392ms	remaining: 97.9ms
80:	learn: 14.4256605	total: 396ms	remaining: 92.8ms
81:	learn: 14.3666860	total: 400ms	remaining: 87.7ms
82:	learn: 14.2938372	total: 404ms	remaining: 82.8ms
83:	learn: 14.2161532	total: 409ms	remaining: 77.8ms
84:	learn: 14.1582910	total: 412ms	remaining: 72.8ms
85:	learn: 14.1029153	total: 417ms	remaining: 67.8ms
86:	learn: 14.0475835	total: 421ms	remaining: 62.9ms
87:	learn: 13.9892661	total: 426ms	remaining: 58.1ms
88:	learn: 13.9481628	total: 430ms	remaining: 53.1ms
89:	learn: 13.8483991	total: 435ms	remaining: 48.3ms
90:	learn: 13.7775614	total: 439ms	remaining: 43.5ms
91:	learn: 13.7304585	total: 444ms	remaining: 38.6ms
92:	learn: 13.6783381	total: 448ms	remaining: 33.8ms
93:	learn: 13.6356964	total: 453ms	remaining: 28.9ms
94:	learn: 13.5924371	total: 462ms	remaining: 24.3ms
95:	learn: 13.5400746	total: 469ms	remaining: 19.6ms
96:	learn: 13.4897333	total: 478ms	remaining: 14.8ms
97:	learn: 13.4470321	total: 486ms	remaining: 9.93ms
98:	learn: 13.3856082	total: 492ms	remaining: 4.97ms
99:	learn: 13.3082371	total: 497ms	remaining: 0us
0:	learn: 43.0395283	total: 4.87ms	remaining: 482ms
1:	learn: 42.1130223	total: 9.12ms	remaining: 447ms
2:	learn: 41.1753409	total: 13ms	remaining: 420ms
3:	learn: 40.3637444	total: 16.9ms	remaining: 405ms
4:	learn: 39.6508088	total: 21.3ms	remaining: 404ms
5:	learn: 38.7217934	total: 25.3ms	remaining: 396ms
6:	learn: 37.8538055	total: 28.9ms	remaining: 384ms
7:	learn: 36.9793574	total: 32.9ms	remaining: 378ms
8:	learn: 36.3076984	total: 37.1ms	remaining: 375ms
9:	learn: 35.6673160	total: 41.1ms	remaining: 370ms
10:	learn: 34.8889800	total: 44.6ms	remaining: 361ms
11:	learn: 34.1675517	total: 48.4ms	remaining: 355ms
12:	learn: 33.6779564	total: 52.4ms	remaining: 351ms
13:	learn: 33.0710039	total: 56.6ms	remaining: 348ms
14:	learn: 32.4966674	total: 60.5ms	remaining: 343ms
15:	learn: 31.9492856	total: 64.7ms	remaining: 340ms
16:	learn: 31.5108129	total: 68.4ms	remaining: 334ms
17:	learn: 30.9804023	total: 72.6ms	remaining: 331ms
18:	learn: 30.4169089	total: 76.5ms	remaining: 326ms
19:	learn: 29.8930375	total: 81ms	remaining: 324ms
20:	learn: 29.3974421	total: 85.6ms	remaining: 322ms
21:	learn: 28.8792307	total: 90.1ms	remaining: 319ms
22:	learn: 28.3894474	total: 94.3ms	remaining: 316ms
23:	learn: 27.9921276	total: 98.7ms	remaining: 313ms
24:	learn: 27.6158887	total: 103ms	remaining: 309ms
25:	learn: 27.2866950	total: 108ms	remaining: 306ms
26:	learn: 26.8770708	total: 113ms	remaining: 304ms
27:	learn: 26.6233005	total: 121ms	remaining: 311ms
28:	learn: 26.2921934	total: 129ms	remaining: 315ms
29:	learn: 25.9156920	total: 138ms	remaining: 322ms
30:	learn: 25.5311106	total: 141ms	remaining: 314ms
31:	learn: 25.2178997	total: 151ms	remaining: 322ms
32:	learn: 24.8572196	total: 157ms	remaining: 320ms
33:	learn: 24.5849710	total: 163ms	remaining: 317ms
34:	learn: 24.2209190	total: 168ms	remaining: 313ms
35:	learn: 23.8708250	total: 174ms	remaining: 309ms
36:	learn: 23.5325279	total: 179ms	remaining: 305ms
37:	learn: 23.2116148	total: 184ms	remaining: 301ms
38:	learn: 22.9696787	total: 190ms	remaining: 297ms
39:	learn: 22.7936783	total: 196ms	remaining: 294ms
40:	learn: 22.6228847	total: 201ms	remaining: 289ms
41:	learn: 22.3691527	total: 206ms	remaining: 285ms
42:	learn: 22.1002173	total: 211ms	remaining: 280ms
43:	learn: 21.9157268	total: 217ms	remaining: 276ms
44:	learn: 21.7229102	total: 221ms	remaining: 270ms
45:	learn: 21.4642005	total: 225ms	remaining: 265ms
46:	learn: 21.3029442	total: 230ms	remaining: 259ms
47:	learn: 21.1469792	total: 234ms	remaining: 253ms
48:	learn: 20.9458235	total: 238ms	remaining: 248ms
49:	learn: 20.7335242	total: 242ms	remaining: 242ms
50:	learn: 20.5440269	total: 246ms	remaining: 237ms
51:	learn: 20.3661449	total: 251ms	remaining: 231ms
52:	learn: 20.2158134	total: 255ms	remaining: 226ms
53:	learn: 19.9934873	total: 259ms	remaining: 221ms
54:	learn: 19.7879739	total: 264ms	remaining: 216ms
55:	learn: 19.6630460	total: 268ms	remaining: 210ms
56:	learn: 19.5152729	total: 272ms	remaining: 205ms
57:	learn: 19.3581128	total: 277ms	remaining: 201ms
58:	learn: 19.2209303	total: 283ms	remaining: 196ms
59:	learn: 19.0965248	total: 287ms	remaining: 192ms
60:	learn: 19.0035954	total: 292ms	remaining: 187ms
61:	learn: 18.8554149	total: 297ms	remaining: 182ms
62:	learn: 18.7095427	total: 302ms	remaining: 177ms
63:	learn: 18.5751494	total: 307ms	remaining: 173ms
64:	learn: 18.4678251	total: 312ms	remaining: 168ms
65:	learn: 18.3500325	total: 319ms	remaining: 164ms
66:	learn: 18.2088983	total: 327ms	remaining: 161ms
67:	learn: 18.0737705	total: 337ms	remaining: 159ms
68:	learn: 17.9325058	total: 344ms	remaining: 155ms
69:	learn: 17.8003911	total: 350ms	remaining: 150ms
70:	learn: 17.7385366	total: 356ms	remaining: 145ms
71:	learn: 17.6106998	total: 361ms	remaining: 140ms
72:	learn: 17.4816270	total: 366ms	remaining: 135ms
73:	learn: 17.4025554	total: 371ms	remaining: 130ms
74:	learn: 17.2902108	total: 376ms	remaining: 125ms
75:	learn: 17.2158048	total: 381ms	remaining: 120ms
76:	learn: 17.1261053	total: 387ms	remaining: 115ms
77:	learn: 17.0308917	total: 392ms	remaining: 110ms
78:	learn: 16.9546705	total: 396ms	remaining: 105ms
79:	learn: 16.8319165	total: 401ms	remaining: 100ms
80:	learn: 16.7687017	total: 406ms	remaining: 95.3ms
81:	learn: 16.6972326	total: 412ms	remaining: 90.4ms
82:	learn: 16.6124580	total: 417ms	remaining: 85.5ms
83:	learn: 16.4999052	total: 423ms	remaining: 80.5ms
84:	learn: 16.4302484	total: 427ms	remaining: 75.3ms
85:	learn: 16.3201363	total: 431ms	remaining: 70.2ms
86:	learn: 16.2534314	total: 436ms	remaining: 65.1ms
87:	learn: 16.1720485	total: 440ms	remaining: 60ms
88:	learn: 16.0625751	total: 444ms	remaining: 54.9ms
89:	learn: 15.9135088	total: 449ms	remaining: 49.9ms
90:	learn: 15.8658863	total: 453ms	remaining: 44.8ms
91:	learn: 15.8066805	total: 457ms	remaining: 39.8ms
92:	learn: 15.7412103	total: 462ms	remaining: 34.7ms
93:	learn: 15.6542776	total: 466ms	remaining: 29.7ms
94:	learn: 15.5760334	total: 469ms	remaining: 24.7ms
95:	learn: 15.5434131	total: 474ms	remaining: 19.7ms
96:	learn: 15.4709561	total: 479ms	remaining: 14.8ms
97:	learn: 15.4449618	total: 483ms	remaining: 9.86ms
98:	learn: 15.3752761	total: 488ms	remaining: 4.93ms
99:	learn: 15.3106595	total: 493ms	remaining: 0us
0:	learn: 46.7142257	total: 5.46ms	remaining: 540ms
1:	learn: 45.7634153	total: 10.7ms	remaining: 525ms
2:	learn: 45.0054253	total: 15.9ms	remaining: 514ms
3:	learn: 44.2120432	total: 21ms	remaining: 504ms
4:	learn: 43.3960472	total: 26ms	remaining: 494ms
5:	learn: 42.8588120	total: 31.3ms	remaining: 491ms
6:	learn: 41.9533701	total: 36.6ms	remaining: 487ms
7:	learn: 41.2745030	total: 42ms	remaining: 483ms
8:	learn: 40.6797495	total: 47.3ms	remaining: 478ms
9:	learn: 39.9899571	total: 52.5ms	remaining: 472ms
10:	learn: 39.4682100	total: 57.3ms	remaining: 463ms
11:	learn: 39.0305595	total: 62.7ms	remaining: 460ms
12:	learn: 38.4200417	total: 68.4ms	remaining: 458ms
13:	learn: 37.8425194	total: 73.3ms	remaining: 450ms
14:	learn: 37.4203127	total: 77.7ms	remaining: 440ms
15:	learn: 36.9917688	total: 82ms	remaining: 431ms
16:	learn: 36.5544138	total: 86.3ms	remaining: 421ms
17:	learn: 36.0727019	total: 90.5ms	remaining: 412ms
18:	learn: 35.4835715	total: 94.6ms	remaining: 403ms
19:	learn: 34.9865654	total: 98.6ms	remaining: 395ms
20:	learn: 34.6063373	total: 103ms	remaining: 389ms
21:	learn: 34.0997289	total: 108ms	remaining: 381ms
22:	learn: 33.7313171	total: 112ms	remaining: 374ms
23:	learn: 33.3582000	total: 116ms	remaining: 368ms
24:	learn: 32.9432456	total: 120ms	remaining: 360ms
25:	learn: 32.5220888	total: 124ms	remaining: 354ms
26:	learn: 32.2172292	total: 128ms	remaining: 347ms
27:	learn: 31.8972904	total: 133ms	remaining: 342ms
28:	learn: 31.6405350	total: 138ms	remaining: 337ms
29:	learn: 31.4167702	total: 142ms	remaining: 332ms
30:	learn: 30.8541961	total: 144ms	remaining: 320ms
31:	learn: 30.5572111	total: 148ms	remaining: 315ms
32:	learn: 30.1700399	total: 153ms	remaining: 311ms
33:	learn: 29.8537271	total: 157ms	remaining: 305ms
34:	learn: 29.6192540	total: 162ms	remaining: 300ms
35:	learn: 29.3276362	total: 168ms	remaining: 299ms
36:	learn: 28.9985179	total: 176ms	remaining: 300ms
37:	learn: 28.7046880	total: 183ms	remaining: 299ms
38:	learn: 28.4412677	total: 191ms	remaining: 298ms
39:	learn: 28.1277292	total: 199ms	remaining: 298ms
40:	learn: 27.9000750	total: 204ms	remaining: 294ms
41:	learn: 27.5433162	total: 210ms	remaining: 291ms
42:	learn: 27.2493285	total: 216ms	remaining: 286ms
43:	learn: 26.9576632	total: 218ms	remaining: 277ms
44:	learn: 26.6177110	total: 223ms	remaining: 273ms
45:	learn: 26.2812456	total: 228ms	remaining: 268ms
46:	learn: 26.0803859	total: 233ms	remaining: 263ms
47:	learn: 25.9543581	total: 238ms	remaining: 258ms
48:	learn: 25.7951582	total: 243ms	remaining: 253ms
49:	learn: 25.6548184	total: 248ms	remaining: 248ms
50:	learn: 25.4010843	total: 253ms	remaining: 243ms
51:	learn: 24.9773937	total: 258ms	remaining: 238ms
52:	learn: 24.8026156	total: 263ms	remaining: 234ms
53:	learn: 24.5568053	total: 269ms	remaining: 229ms
54:	learn: 24.2281839	total: 273ms	remaining: 224ms
55:	learn: 23.9202795	total: 277ms	remaining: 218ms
56:	learn: 23.7625591	total: 281ms	remaining: 212ms
57:	learn: 23.5429721	total: 285ms	remaining: 206ms
58:	learn: 23.3175893	total: 289ms	remaining: 201ms
59:	learn: 23.2035130	total: 293ms	remaining: 196ms
60:	learn: 23.0232450	total: 298ms	remaining: 190ms
61:	learn: 22.8384958	total: 302ms	remaining: 185ms
62:	learn: 22.6499902	total: 306ms	remaining: 180ms
63:	learn: 22.4577426	total: 310ms	remaining: 174ms
64:	learn: 22.3333158	total: 315ms	remaining: 169ms
65:	learn: 22.2064131	total: 319ms	remaining: 164ms
66:	learn: 22.1434971	total: 323ms	remaining: 159ms
67:	learn: 21.9596519	total: 328ms	remaining: 154ms
68:	learn: 21.8475576	total: 333ms	remaining: 150ms
69:	learn: 21.6954745	total: 338ms	remaining: 145ms
70:	learn: 21.5635976	total: 343ms	remaining: 140ms
71:	learn: 21.4588506	total: 348ms	remaining: 135ms
72:	learn: 21.3527268	total: 353ms	remaining: 130ms
73:	learn: 21.2661288	total: 358ms	remaining: 126ms
74:	learn: 21.1817333	total: 362ms	remaining: 121ms
75:	learn: 21.0527553	total: 370ms	remaining: 117ms
76:	learn: 20.9229021	total: 379ms	remaining: 113ms
77:	learn: 20.7563946	total: 388ms	remaining: 110ms
78:	learn: 20.6569831	total: 396ms	remaining: 105ms
79:	learn: 20.4982663	total: 402ms	remaining: 101ms
80:	learn: 20.3185460	total: 408ms	remaining: 95.8ms
81:	learn: 20.2096241	total: 414ms	remaining: 90.9ms
82:	learn: 20.1274891	total: 420ms	remaining: 86ms
83:	learn: 20.0740139	total: 425ms	remaining: 81ms
84:	learn: 19.9630699	total: 431ms	remaining: 76.1ms
85:	learn: 19.8753899	total: 438ms	remaining: 71.2ms
86:	learn: 19.6563612	total: 444ms	remaining: 66.3ms
87:	learn: 19.4680232	total: 450ms	remaining: 61.3ms
88:	learn: 19.3503431	total: 455ms	remaining: 56.2ms
89:	learn: 19.2221379	total: 460ms	remaining: 51.1ms
90:	learn: 19.0732542	total: 466ms	remaining: 46.1ms
91:	learn: 18.9825190	total: 472ms	remaining: 41.1ms
92:	learn: 18.8839009	total: 476ms	remaining: 35.8ms
93:	learn: 18.8012219	total: 480ms	remaining: 30.6ms
94:	learn: 18.7172713	total: 484ms	remaining: 25.5ms
95:	learn: 18.6201170	total: 488ms	remaining: 20.3ms
96:	learn: 18.5318611	total: 492ms	remaining: 15.2ms
97:	learn: 18.3833356	total: 496ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 501ms	remaining: 5.06ms
99:	learn: 18.2227333	total: 506ms	remaining: 0us
0:	learn: 46.3764524	total: 5.09ms	remaining: 504ms
1:	learn: 45.5561269	total: 9.67ms	remaining: 474ms
2:	learn: 44.8811245	total: 14.4ms	remaining: 465ms
3:	learn: 44.0788617	total: 19ms	remaining: 455ms
4:	learn: 43.3619790	total: 24ms	remaining: 457ms
5:	learn: 42.6912112	total: 35ms	remaining: 548ms
6:	learn: 42.2292118	total: 43.9ms	remaining: 583ms
7:	learn: 41.7725191	total: 52.5ms	remaining: 603ms
8:	learn: 41.1676614	total: 61ms	remaining: 617ms
9:	learn: 40.5771076	total: 66.4ms	remaining: 598ms
10:	learn: 39.8343757	total: 71.9ms	remaining: 582ms
11:	learn: 39.3761142	total: 77.3ms	remaining: 567ms
12:	learn: 38.5254692	total: 82.8ms	remaining: 554ms
13:	learn: 37.9629555	total: 88.1ms	remaining: 541ms
14:	learn: 37.4418438	total: 93.5ms	remaining: 530ms
15:	learn: 37.0507283	total: 99.1ms	remaining: 520ms
16:	learn: 36.6264217	total: 104ms	remaining: 509ms
17:	learn: 36.1114940	total: 109ms	remaining: 498ms
18:	learn: 35.7193862	total: 115ms	remaining: 489ms
19:	learn: 35.3301177	total: 119ms	remaining: 477ms
20:	learn: 35.0598280	total: 125ms	remaining: 470ms
21:	learn: 34.5469736	total: 130ms	remaining: 461ms
22:	learn: 34.2064215	total: 135ms	remaining: 451ms
23:	learn: 33.7280710	total: 139ms	remaining: 441ms
24:	learn: 33.3282940	total: 143ms	remaining: 429ms
25:	learn: 32.8478961	total: 147ms	remaining: 419ms
26:	learn: 32.5722164	total: 152ms	remaining: 410ms
27:	learn: 32.2457019	total: 156ms	remaining: 400ms
28:	learn: 31.9230495	total: 160ms	remaining: 392ms
29:	learn: 31.4311611	total: 165ms	remaining: 386ms
30:	learn: 30.9179052	total: 170ms	remaining: 378ms
31:	learn: 30.6201141	total: 175ms	remaining: 371ms
32:	learn: 30.3421106	total: 179ms	remaining: 364ms
33:	learn: 29.9885373	total: 184ms	remaining: 357ms
34:	learn: 29.7462780	total: 189ms	remaining: 350ms
35:	learn: 29.3607153	total: 193ms	remaining: 343ms
36:	learn: 29.1793078	total: 197ms	remaining: 336ms
37:	learn: 28.9276538	total: 202ms	remaining: 329ms
38:	learn: 28.6903934	total: 207ms	remaining: 324ms
39:	learn: 28.2095033	total: 211ms	remaining: 317ms
40:	learn: 27.7990608	total: 215ms	remaining: 310ms
41:	learn: 27.5406632	total: 220ms	remaining: 303ms
42:	learn: 27.2575376	total: 225ms	remaining: 298ms
43:	learn: 26.9741707	total: 229ms	remaining: 292ms
44:	learn: 26.6606899	total: 234ms	remaining: 286ms
45:	learn: 26.4015833	total: 239ms	remaining: 280ms
46:	learn: 26.1828993	total: 243ms	remaining: 274ms
47:	learn: 26.0233709	total: 245ms	remaining: 266ms
48:	learn: 25.9300399	total: 250ms	remaining: 260ms
49:	learn: 25.5861489	total: 254ms	remaining: 254ms
50:	learn: 25.4322012	total: 261ms	remaining: 251ms
51:	learn: 25.1595644	total: 268ms	remaining: 248ms
52:	learn: 24.9955303	total: 277ms	remaining: 245ms
53:	learn: 24.7273966	total: 283ms	remaining: 241ms
54:	learn: 24.5747978	total: 291ms	remaining: 238ms
55:	learn: 24.3807977	total: 296ms	remaining: 233ms
56:	learn: 24.1689569	total: 302ms	remaining: 228ms
57:	learn: 23.9898221	total: 307ms	remaining: 222ms
58:	learn: 23.7566414	total: 312ms	remaining: 217ms
59:	learn: 23.6641165	total: 317ms	remaining: 212ms
60:	learn: 23.5658066	total: 322ms	remaining: 206ms
61:	learn: 23.4338851	total: 328ms	remaining: 201ms
62:	learn: 23.2408837	total: 332ms	remaining: 195ms
63:	learn: 23.0642038	total: 338ms	remaining: 190ms
64:	learn: 22.9032045	total: 343ms	remaining: 184ms
65:	learn: 22.7736138	total: 347ms	remaining: 179ms
66:	learn: 22.6836443	total: 352ms	remaining: 174ms
67:	learn: 22.5983654	total: 358ms	remaining: 168ms
68:	learn: 22.4419813	total: 362ms	remaining: 163ms
69:	learn: 22.2863339	total: 366ms	remaining: 157ms
70:	learn: 22.1792943	total: 370ms	remaining: 151ms
71:	learn: 22.1130574	total: 374ms	remaining: 146ms
72:	learn: 21.9858161	total: 379ms	remaining: 140ms
73:	learn: 21.8577784	total: 382ms	remaining: 134ms
74:	learn: 21.7845222	total: 386ms	remaining: 129ms
75:	learn: 21.6831390	total: 391ms	remaining: 123ms
76:	learn: 21.6292521	total: 395ms	remaining: 118ms
77:	learn: 21.5789330	total: 400ms	remaining: 113ms
78:	learn: 21.5420942	total: 404ms	remaining: 107ms
79:	learn: 21.4280939	total: 408ms	remaining: 102ms
80:	learn: 21.3641165	total: 412ms	remaining: 96.6ms
81:	learn: 21.2734814	total: 416ms	remaining: 91.3ms
82:	learn: 21.2220323	total: 420ms	remaining: 86.1ms
83:	learn: 21.0625792	total: 425ms	remaining: 81ms
84:	learn: 20.9488320	total: 430ms	remaining: 75.8ms
85:	learn: 20.8504255	total: 434ms	remaining: 70.7ms
86:	learn: 20.7848510	total: 438ms	remaining: 65.5ms
87:	learn: 20.7247442	total: 443ms	remaining: 60.4ms
88:	learn: 20.5698590	total: 447ms	remaining: 55.2ms
89:	learn: 20.4067620	total: 451ms	remaining: 50.2ms
90:	learn: 20.3062482	total: 458ms	remaining: 45.3ms
91:	learn: 20.2029696	total: 466ms	remaining: 40.5ms
92:	learn: 20.1384849	total: 475ms	remaining: 35.8ms
93:	learn: 20.0260709	total: 481ms	remaining: 30.7ms
94:	learn: 19.9122100	total: 488ms	remaining: 25.7ms
95:	learn: 19.8648487	total: 493ms	remaining: 20.6ms
96:	learn: 19.8207072	total: 499ms	remaining: 15.4ms
97:	learn: 19.7261189	total: 504ms	remaining: 10.3ms
98:	learn: 19.7042438	total: 509ms	remaining: 5.14ms
99:	learn: 19.6546645	total: 515ms	remaining: 0us
0:	learn: 47.0239288	total: 4.11ms	remaining: 407ms
1:	learn: 46.2253829	total: 8.02ms	remaining: 393ms
2:	learn: 45.5580301	total: 12.2ms	remaining: 396ms
3:	learn: 44.7273237	total: 16ms	remaining: 384ms
4:	learn: 43.8867421	total: 19.8ms	remaining: 376ms
5:	learn: 43.3615911	total: 23.9ms	remaining: 374ms
6:	learn: 42.8548390	total: 27.9ms	remaining: 370ms
7:	learn: 42.1606758	total: 31.6ms	remaining: 364ms
8:	learn: 41.6625870	total: 35.5ms	remaining: 359ms
9:	learn: 40.9497092	total: 39.5ms	remaining: 356ms
10:	learn: 40.1886318	total: 43.4ms	remaining: 351ms
11:	learn: 39.7456423	total: 47.6ms	remaining: 349ms
12:	learn: 39.1171373	total: 51.4ms	remaining: 344ms
13:	learn: 38.5451069	total: 55.2ms	remaining: 339ms
14:	learn: 38.0155834	total: 59.4ms	remaining: 337ms
15:	learn: 37.5631354	total: 64.4ms	remaining: 338ms
16:	learn: 37.1030023	total: 68.8ms	remaining: 336ms
17:	learn: 36.4563029	total: 73.1ms	remaining: 333ms
18:	learn: 36.0160976	total: 77.5ms	remaining: 330ms
19:	learn: 35.5079827	total: 82ms	remaining: 328ms
20:	learn: 35.2111885	total: 86.3ms	remaining: 325ms
21:	learn: 34.9397465	total: 90.7ms	remaining: 321ms
22:	learn: 34.5270048	total: 95.4ms	remaining: 319ms
23:	learn: 34.0169260	total: 104ms	remaining: 328ms
24:	learn: 33.7454892	total: 111ms	remaining: 334ms
25:	learn: 33.2648157	total: 126ms	remaining: 360ms
26:	learn: 32.8899427	total: 132ms	remaining: 356ms
27:	learn: 32.6185050	total: 137ms	remaining: 352ms
28:	learn: 32.3528531	total: 142ms	remaining: 346ms
29:	learn: 32.0859923	total: 147ms	remaining: 342ms
30:	learn: 31.6511144	total: 152ms	remaining: 339ms
31:	learn: 31.2571765	total: 157ms	remaining: 333ms
32:	learn: 30.9770049	total: 162ms	remaining: 328ms
33:	learn: 30.6084872	total: 167ms	remaining: 325ms
34:	learn: 30.3448632	total: 173ms	remaining: 320ms
35:	learn: 30.0360942	total: 178ms	remaining: 316ms
36:	learn: 29.6648968	total: 183ms	remaining: 311ms
37:	learn: 29.3165114	total: 187ms	remaining: 306ms
38:	learn: 29.0829198	total: 193ms	remaining: 301ms
39:	learn: 28.7752064	total: 198ms	remaining: 297ms
40:	learn: 28.3622191	total: 202ms	remaining: 291ms
41:	learn: 28.1346631	total: 206ms	remaining: 285ms
42:	learn: 27.9585719	total: 210ms	remaining: 278ms
43:	learn: 27.6565566	total: 214ms	remaining: 272ms
44:	learn: 27.3616172	total: 218ms	remaining: 266ms
45:	learn: 27.0658637	total: 222ms	remaining: 260ms
46:	learn: 26.8660382	total: 226ms	remaining: 255ms
47:	learn: 26.6536078	total: 230ms	remaining: 249ms
48:	learn: 26.3524440	total: 234ms	remaining: 243ms
49:	learn: 26.1595277	total: 238ms	remaining: 238ms
50:	learn: 25.9273523	total: 242ms	remaining: 232ms
51:	learn: 25.7195580	total: 246ms	remaining: 227ms
52:	learn: 25.5730225	total: 250ms	remaining: 222ms
53:	learn: 25.3455276	total: 254ms	remaining: 216ms
54:	learn: 25.2289675	total: 258ms	remaining: 211ms
55:	learn: 25.0133024	total: 263ms	remaining: 207ms
56:	learn: 24.8406714	total: 268ms	remaining: 202ms
57:	learn: 24.6367857	total: 272ms	remaining: 197ms
58:	learn: 24.5338177	total: 277ms	remaining: 192ms
59:	learn: 24.3799964	total: 281ms	remaining: 187ms
60:	learn: 24.1447492	total: 286ms	remaining: 183ms
61:	learn: 23.9880495	total: 290ms	remaining: 178ms
62:	learn: 23.7140630	total: 297ms	remaining: 174ms
63:	learn: 23.5003791	total: 304ms	remaining: 171ms
64:	learn: 23.3207645	total: 313ms	remaining: 169ms
65:	learn: 23.1958356	total: 320ms	remaining: 165ms
66:	learn: 23.0471302	total: 328ms	remaining: 162ms
67:	learn: 22.8977183	total: 334ms	remaining: 157ms
68:	learn: 22.7187400	total: 339ms	remaining: 152ms
69:	learn: 22.6523405	total: 344ms	remaining: 148ms
70:	learn: 22.4767453	total: 350ms	remaining: 143ms
71:	learn: 22.3243677	total: 355ms	remaining: 138ms
72:	learn: 22.2133096	total: 360ms	remaining: 133ms
73:	learn: 22.1151713	total: 365ms	remaining: 128ms
74:	learn: 22.0296666	total: 370ms	remaining: 123ms
75:	learn: 21.9195980	total: 375ms	remaining: 118ms
76:	learn: 21.8401730	total: 380ms	remaining: 113ms
77:	learn: 21.8079797	total: 384ms	remaining: 108ms
78:	learn: 21.7274109	total: 390ms	remaining: 104ms
79:	learn: 21.6663032	total: 395ms	remaining: 98.8ms
80:	learn: 21.5633117	total: 400ms	remaining: 93.7ms
81:	learn: 21.4542467	total: 404ms	remaining: 88.6ms
82:	learn: 21.3177957	total: 407ms	remaining: 83.5ms
83:	learn: 21.1289167	total: 412ms	remaining: 78.5ms
84:	learn: 21.0297368	total: 416ms	remaining: 73.5ms
85:	learn: 20.9089564	total: 421ms	remaining: 68.5ms
86:	learn: 20.7653988	total: 425ms	remaining: 63.5ms
87:	learn: 20.6521894	total: 429ms	remaining: 58.5ms
88:	learn: 20.5193021	total: 433ms	remaining: 53.5ms
89:	learn: 20.4361620	total: 437ms	remaining: 48.6ms
90:	learn: 20.3546710	total: 441ms	remaining: 43.6ms
91:	learn: 20.2513296	total: 445ms	remaining: 38.7ms
92:	learn: 20.1605550	total: 449ms	remaining: 33.8ms
93:	learn: 20.0515942	total: 454ms	remaining: 29ms
94:	learn: 19.9800764	total: 458ms	remaining: 24.1ms
95:	learn: 19.8996532	total: 463ms	remaining: 19.3ms
96:	learn: 19.8450910	total: 467ms	remaining: 14.5ms
97:	learn: 19.7887346	total: 472ms	remaining: 9.63ms
98:	learn: 19.7230872	total: 476ms	remaining: 4.81ms
99:	learn: 19.6328825	total: 480ms	remaining: 0us
0:	learn: 27.5585353	total: 5.35ms	remaining: 530ms
1:	learn: 27.1656995	total: 10.4ms	remaining: 512ms
2:	learn: 26.8590175	total: 15.2ms	remaining: 492ms
3:	learn: 26.5818406	total: 20.1ms	remaining: 481ms
4:	learn: 26.1148663	total: 25.1ms	remaining: 477ms
5:	learn: 25.7690484	total: 30.4ms	remaining: 476ms
6:	learn: 25.3489206	total: 36.1ms	remaining: 480ms
7:	learn: 24.9542406	total: 41.4ms	remaining: 476ms
8:	learn: 24.6777517	total: 47.3ms	remaining: 478ms
9:	learn: 24.3242344	total: 53.5ms	remaining: 481ms
10:	learn: 24.0383073	total: 57.9ms	remaining: 468ms
11:	learn: 23.7383420	total: 62.7ms	remaining: 460ms
12:	learn: 23.3461670	total: 67.1ms	remaining: 449ms
13:	learn: 23.0928636	total: 71.5ms	remaining: 439ms
14:	learn: 22.8770414	total: 75.6ms	remaining: 428ms
15:	learn: 22.6323214	total: 79.6ms	remaining: 418ms
16:	learn: 22.3597072	total: 83.6ms	remaining: 408ms
17:	learn: 22.1079813	total: 87.7ms	remaining: 399ms
18:	learn: 21.8421199	total: 92ms	remaining: 392ms
19:	learn: 21.6576508	total: 96.1ms	remaining: 384ms
20:	learn: 21.4301268	total: 100ms	remaining: 378ms
21:	learn: 21.2287388	total: 104ms	remaining: 370ms
22:	learn: 21.0553872	total: 108ms	remaining: 363ms
23:	learn: 20.8977091	total: 112ms	remaining: 356ms
24:	learn: 20.6619051	total: 117ms	remaining: 351ms
25:	learn: 20.5040955	total: 122ms	remaining: 347ms
26:	learn: 20.3181195	total: 126ms	remaining: 341ms
27:	learn: 20.0869436	total: 131ms	remaining: 336ms
28:	learn: 19.9375985	total: 135ms	remaining: 331ms
29:	learn: 19.8247516	total: 140ms	remaining: 326ms
30:	learn: 19.6261697	total: 144ms	remaining: 321ms
31:	learn: 19.4547236	total: 148ms	remaining: 315ms
32:	learn: 19.3157092	total: 156ms	remaining: 316ms
33:	learn: 19.1561419	total: 163ms	remaining: 316ms
34:	learn: 19.0453620	total: 172ms	remaining: 319ms
35:	learn: 18.8738574	total: 178ms	remaining: 317ms
36:	learn: 18.7072907	total: 186ms	remaining: 316ms
37:	learn: 18.5877943	total: 191ms	remaining: 311ms
38:	learn: 18.4436380	total: 196ms	remaining: 307ms
39:	learn: 18.3463356	total: 201ms	remaining: 302ms
40:	learn: 18.2008059	total: 207ms	remaining: 297ms
41:	learn: 18.0582079	total: 212ms	remaining: 293ms
42:	learn: 17.8891982	total: 217ms	remaining: 288ms
43:	learn: 17.7332246	total: 222ms	remaining: 283ms
44:	learn: 17.6206421	total: 227ms	remaining: 278ms
45:	learn: 17.4982800	total: 232ms	remaining: 272ms
46:	learn: 17.3970150	total: 236ms	remaining: 266ms
47:	learn: 17.3058203	total: 241ms	remaining: 261ms
48:	learn: 17.1789256	total: 246ms	remaining: 256ms
49:	learn: 17.0916229	total: 250ms	remaining: 250ms
50:	learn: 16.9859820	total: 256ms	remaining: 246ms
51:	learn: 16.8995582	total: 261ms	remaining: 241ms
52:	learn: 16.8137014	total: 266ms	remaining: 235ms
53:	learn: 16.7021451	total: 270ms	remaining: 230ms
54:	learn: 16.5895582	total: 274ms	remaining: 224ms
55:	learn: 16.5015639	total: 279ms	remaining: 219ms
56:	learn: 16.4356637	total: 283ms	remaining: 214ms
57:	learn: 16.3514525	total: 288ms	remaining: 209ms
58:	learn: 16.2401369	total: 293ms	remaining: 204ms
59:	learn: 16.1293223	total: 297ms	remaining: 198ms
60:	learn: 16.0271167	total: 301ms	remaining: 193ms
61:	learn: 15.9126257	total: 306ms	remaining: 187ms
62:	learn: 15.8391096	total: 310ms	remaining: 182ms
63:	learn: 15.7441773	total: 314ms	remaining: 177ms
64:	learn: 15.6885195	total: 318ms	remaining: 171ms
65:	learn: 15.6052039	total: 323ms	remaining: 166ms
66:	learn: 15.5074202	total: 327ms	remaining: 161ms
67:	learn: 15.4054338	total: 332ms	remaining: 156ms
68:	learn: 15.2885714	total: 336ms	remaining: 151ms
69:	learn: 15.2157472	total: 341ms	remaining: 146ms
70:	learn: 15.1031554	total: 345ms	remaining: 141ms
71:	learn: 15.0237470	total: 350ms	remaining: 136ms
72:	learn: 14.9756825	total: 357ms	remaining: 132ms
73:	learn: 14.8840596	total: 364ms	remaining: 128ms
74:	learn: 14.8077061	total: 372ms	remaining: 124ms
75:	learn: 14.7444437	total: 380ms	remaining: 120ms
76:	learn: 14.6751720	total: 387ms	remaining: 116ms
77:	learn: 14.5830333	total: 392ms	remaining: 111ms
78:	learn: 14.5241206	total: 398ms	remaining: 106ms
79:	learn: 14.4892731	total: 403ms	remaining: 101ms
80:	learn: 14.4256605	total: 408ms	remaining: 95.7ms
81:	learn: 14.3666860	total: 413ms	remaining: 90.6ms
82:	learn: 14.2938372	total: 418ms	remaining: 85.6ms
83:	learn: 14.2161532	total: 423ms	remaining: 80.6ms
84:	learn: 14.1582910	total: 428ms	remaining: 75.6ms
85:	learn: 14.1029153	total: 434ms	remaining: 70.6ms
86:	learn: 14.0475835	total: 439ms	remaining: 65.6ms
87:	learn: 13.9892661	total: 443ms	remaining: 60.4ms
88:	learn: 13.9481628	total: 449ms	remaining: 55.5ms
89:	learn: 13.8483991	total: 454ms	remaining: 50.5ms
90:	learn: 13.7775614	total: 459ms	remaining: 45.4ms
91:	learn: 13.7304585	total: 462ms	remaining: 40.2ms
92:	learn: 13.6783381	total: 467ms	remaining: 35.1ms
93:	learn: 13.6356964	total: 471ms	remaining: 30.1ms
94:	learn: 13.5924371	total: 475ms	remaining: 25ms
95:	learn: 13.5400746	total: 479ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 483ms	remaining: 15ms
97:	learn: 13.4470321	total: 487ms	remaining: 9.95ms
98:	learn: 13.3856082	total: 491ms	remaining: 4.96ms
99:	learn: 13.3082371	total: 495ms	remaining: 0us
0:	learn: 43.0395283	total: 4.87ms	remaining: 482ms
1:	learn: 42.1130223	total: 9.44ms	remaining: 463ms
2:	learn: 41.1753409	total: 17.5ms	remaining: 565ms
3:	learn: 40.3637444	total: 24.6ms	remaining: 589ms
4:	learn: 39.6508088	total: 32.4ms	remaining: 616ms
5:	learn: 38.7217934	total: 38.1ms	remaining: 596ms
6:	learn: 37.8538055	total: 44.9ms	remaining: 597ms
7:	learn: 36.9793574	total: 50.2ms	remaining: 578ms
8:	learn: 36.3076984	total: 55.7ms	remaining: 563ms
9:	learn: 35.6673160	total: 60.7ms	remaining: 546ms
10:	learn: 34.8889800	total: 65.9ms	remaining: 533ms
11:	learn: 34.1675517	total: 70.7ms	remaining: 518ms
12:	learn: 33.6779564	total: 75.7ms	remaining: 507ms
13:	learn: 33.0710039	total: 81.3ms	remaining: 499ms
14:	learn: 32.4966674	total: 86.5ms	remaining: 490ms
15:	learn: 31.9492856	total: 91.4ms	remaining: 480ms
16:	learn: 31.5108129	total: 96.5ms	remaining: 471ms
17:	learn: 30.9804023	total: 101ms	remaining: 461ms
18:	learn: 30.4169089	total: 106ms	remaining: 452ms
19:	learn: 29.8930375	total: 111ms	remaining: 444ms
20:	learn: 29.3974421	total: 116ms	remaining: 437ms
21:	learn: 28.8792307	total: 120ms	remaining: 427ms
22:	learn: 28.3894474	total: 124ms	remaining: 417ms
23:	learn: 27.9921276	total: 128ms	remaining: 406ms
24:	learn: 27.6158887	total: 132ms	remaining: 397ms
25:	learn: 27.2866950	total: 136ms	remaining: 388ms
26:	learn: 26.8770708	total: 140ms	remaining: 380ms
27:	learn: 26.6233005	total: 144ms	remaining: 371ms
28:	learn: 26.2921934	total: 148ms	remaining: 363ms
29:	learn: 25.9156920	total: 153ms	remaining: 356ms
30:	learn: 25.5311106	total: 155ms	remaining: 344ms
31:	learn: 25.2178997	total: 159ms	remaining: 338ms
32:	learn: 24.8572196	total: 163ms	remaining: 331ms
33:	learn: 24.5849710	total: 167ms	remaining: 325ms
34:	learn: 24.2209190	total: 172ms	remaining: 319ms
35:	learn: 23.8708250	total: 176ms	remaining: 312ms
36:	learn: 23.5325279	total: 180ms	remaining: 306ms
37:	learn: 23.2116148	total: 184ms	remaining: 300ms
38:	learn: 22.9696787	total: 188ms	remaining: 294ms
39:	learn: 22.7936783	total: 192ms	remaining: 288ms
40:	learn: 22.6228847	total: 196ms	remaining: 282ms
41:	learn: 22.3691527	total: 200ms	remaining: 277ms
42:	learn: 22.1002173	total: 204ms	remaining: 271ms
43:	learn: 21.9157268	total: 209ms	remaining: 266ms
44:	learn: 21.7229102	total: 213ms	remaining: 260ms
45:	learn: 21.4642005	total: 217ms	remaining: 254ms
46:	learn: 21.3029442	total: 221ms	remaining: 249ms
47:	learn: 21.1469792	total: 225ms	remaining: 244ms
48:	learn: 20.9458235	total: 229ms	remaining: 239ms
49:	learn: 20.7335242	total: 234ms	remaining: 234ms
50:	learn: 20.5440269	total: 238ms	remaining: 229ms
51:	learn: 20.3661449	total: 243ms	remaining: 224ms
52:	learn: 20.2158134	total: 247ms	remaining: 219ms
53:	learn: 19.9934873	total: 252ms	remaining: 215ms
54:	learn: 19.7879739	total: 257ms	remaining: 210ms
55:	learn: 19.6630460	total: 264ms	remaining: 208ms
56:	learn: 19.5152729	total: 272ms	remaining: 205ms
57:	learn: 19.3581128	total: 282ms	remaining: 204ms
58:	learn: 19.2209303	total: 289ms	remaining: 201ms
59:	learn: 19.0965248	total: 297ms	remaining: 198ms
60:	learn: 19.0035954	total: 302ms	remaining: 193ms
61:	learn: 18.8554149	total: 307ms	remaining: 188ms
62:	learn: 18.7095427	total: 312ms	remaining: 183ms
63:	learn: 18.5751494	total: 317ms	remaining: 178ms
64:	learn: 18.4678251	total: 322ms	remaining: 174ms
65:	learn: 18.3500325	total: 328ms	remaining: 169ms
66:	learn: 18.2088983	total: 333ms	remaining: 164ms
67:	learn: 18.0737705	total: 338ms	remaining: 159ms
68:	learn: 17.9325058	total: 344ms	remaining: 154ms
69:	learn: 17.8003911	total: 348ms	remaining: 149ms
70:	learn: 17.7385366	total: 353ms	remaining: 144ms
71:	learn: 17.6106998	total: 359ms	remaining: 140ms
72:	learn: 17.4816270	total: 364ms	remaining: 135ms
73:	learn: 17.4025554	total: 368ms	remaining: 129ms
74:	learn: 17.2902108	total: 372ms	remaining: 124ms
75:	learn: 17.2158048	total: 376ms	remaining: 119ms
76:	learn: 17.1261053	total: 381ms	remaining: 114ms
77:	learn: 17.0308917	total: 385ms	remaining: 109ms
78:	learn: 16.9546705	total: 389ms	remaining: 104ms
79:	learn: 16.8319165	total: 394ms	remaining: 98.4ms
80:	learn: 16.7687017	total: 398ms	remaining: 93.4ms
81:	learn: 16.6972326	total: 402ms	remaining: 88.3ms
82:	learn: 16.6124580	total: 406ms	remaining: 83.2ms
83:	learn: 16.4999052	total: 411ms	remaining: 78.3ms
84:	learn: 16.4302484	total: 415ms	remaining: 73.3ms
85:	learn: 16.3201363	total: 419ms	remaining: 68.3ms
86:	learn: 16.2534314	total: 424ms	remaining: 63.3ms
87:	learn: 16.1720485	total: 428ms	remaining: 58.4ms
88:	learn: 16.0625751	total: 434ms	remaining: 53.6ms
89:	learn: 15.9135088	total: 438ms	remaining: 48.7ms
90:	learn: 15.8658863	total: 444ms	remaining: 43.9ms
91:	learn: 15.8066805	total: 449ms	remaining: 39ms
92:	learn: 15.7412103	total: 454ms	remaining: 34.2ms
93:	learn: 15.6542776	total: 459ms	remaining: 29.3ms
94:	learn: 15.5760334	total: 468ms	remaining: 24.6ms
95:	learn: 15.5434131	total: 478ms	remaining: 19.9ms
96:	learn: 15.4709561	total: 489ms	remaining: 15.1ms
97:	learn: 15.4449618	total: 498ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 505ms	remaining: 5.1ms
99:	learn: 15.3106595	total: 510ms	remaining: 0us
0:	learn: 46.7142257	total: 4.5ms	remaining: 446ms
1:	learn: 45.7634153	total: 8.98ms	remaining: 440ms
2:	learn: 45.0054253	total: 13ms	remaining: 422ms
3:	learn: 44.2120432	total: 16.7ms	remaining: 402ms
4:	learn: 43.3960472	total: 20.8ms	remaining: 396ms
5:	learn: 42.8588120	total: 25.7ms	remaining: 402ms
6:	learn: 41.9533701	total: 30ms	remaining: 399ms
7:	learn: 41.2745030	total: 34.6ms	remaining: 398ms
8:	learn: 40.6797495	total: 39ms	remaining: 395ms
9:	learn: 39.9899571	total: 43.6ms	remaining: 393ms
10:	learn: 39.4682100	total: 48.1ms	remaining: 389ms
11:	learn: 39.0305595	total: 52.3ms	remaining: 384ms
12:	learn: 38.4200417	total: 56.6ms	remaining: 379ms
13:	learn: 37.8425194	total: 60.5ms	remaining: 372ms
14:	learn: 37.4203127	total: 64.3ms	remaining: 364ms
15:	learn: 36.9917688	total: 69ms	remaining: 362ms
16:	learn: 36.5544138	total: 73.6ms	remaining: 359ms
17:	learn: 36.0727019	total: 78.1ms	remaining: 356ms
18:	learn: 35.4835715	total: 83ms	remaining: 354ms
19:	learn: 34.9865654	total: 87.5ms	remaining: 350ms
20:	learn: 34.6063373	total: 91.8ms	remaining: 345ms
21:	learn: 34.0997289	total: 96.4ms	remaining: 342ms
22:	learn: 33.7313171	total: 101ms	remaining: 339ms
23:	learn: 33.3582000	total: 110ms	remaining: 347ms
24:	learn: 32.9432456	total: 117ms	remaining: 350ms
25:	learn: 32.5220888	total: 126ms	remaining: 359ms
26:	learn: 32.2172292	total: 134ms	remaining: 361ms
27:	learn: 31.8972904	total: 139ms	remaining: 357ms
28:	learn: 31.6405350	total: 144ms	remaining: 354ms
29:	learn: 31.4167702	total: 149ms	remaining: 348ms
30:	learn: 30.8541961	total: 151ms	remaining: 336ms
31:	learn: 30.5572111	total: 156ms	remaining: 333ms
32:	learn: 30.1700399	total: 162ms	remaining: 328ms
33:	learn: 29.8537271	total: 167ms	remaining: 324ms
34:	learn: 29.6192540	total: 172ms	remaining: 319ms
35:	learn: 29.3276362	total: 178ms	remaining: 316ms
36:	learn: 28.9985179	total: 183ms	remaining: 312ms
37:	learn: 28.7046880	total: 203ms	remaining: 332ms
38:	learn: 28.4412677	total: 208ms	remaining: 325ms
39:	learn: 28.1277292	total: 212ms	remaining: 318ms
40:	learn: 27.9000750	total: 216ms	remaining: 311ms
41:	learn: 27.5433162	total: 220ms	remaining: 304ms
42:	learn: 27.2493285	total: 225ms	remaining: 298ms
43:	learn: 26.9576632	total: 226ms	remaining: 288ms
44:	learn: 26.6177110	total: 230ms	remaining: 281ms
45:	learn: 26.2812456	total: 234ms	remaining: 275ms
46:	learn: 26.0803859	total: 239ms	remaining: 269ms
47:	learn: 25.9543581	total: 243ms	remaining: 263ms
48:	learn: 25.7951582	total: 247ms	remaining: 257ms
49:	learn: 25.6548184	total: 251ms	remaining: 251ms
50:	learn: 25.4010843	total: 255ms	remaining: 245ms
51:	learn: 24.9773937	total: 260ms	remaining: 240ms
52:	learn: 24.8026156	total: 264ms	remaining: 234ms
53:	learn: 24.5568053	total: 268ms	remaining: 229ms
54:	learn: 24.2281839	total: 273ms	remaining: 223ms
55:	learn: 23.9202795	total: 277ms	remaining: 218ms
56:	learn: 23.7625591	total: 282ms	remaining: 213ms
57:	learn: 23.5429721	total: 286ms	remaining: 207ms
58:	learn: 23.3175893	total: 291ms	remaining: 202ms
59:	learn: 23.2035130	total: 295ms	remaining: 197ms
60:	learn: 23.0232450	total: 300ms	remaining: 192ms
61:	learn: 22.8384958	total: 308ms	remaining: 188ms
62:	learn: 22.6499902	total: 315ms	remaining: 185ms
63:	learn: 22.4577426	total: 323ms	remaining: 182ms
64:	learn: 22.3333158	total: 330ms	remaining: 178ms
65:	learn: 22.2064131	total: 335ms	remaining: 173ms
66:	learn: 22.1434971	total: 340ms	remaining: 168ms
67:	learn: 21.9596519	total: 346ms	remaining: 163ms
68:	learn: 21.8475576	total: 351ms	remaining: 158ms
69:	learn: 21.6954745	total: 358ms	remaining: 153ms
70:	learn: 21.5635976	total: 363ms	remaining: 148ms
71:	learn: 21.4588506	total: 368ms	remaining: 143ms
72:	learn: 21.3527268	total: 373ms	remaining: 138ms
73:	learn: 21.2661288	total: 378ms	remaining: 133ms
74:	learn: 21.1817333	total: 383ms	remaining: 128ms
75:	learn: 21.0527553	total: 388ms	remaining: 123ms
76:	learn: 20.9229021	total: 393ms	remaining: 117ms
77:	learn: 20.7563946	total: 398ms	remaining: 112ms
78:	learn: 20.6569831	total: 404ms	remaining: 107ms
79:	learn: 20.4982663	total: 408ms	remaining: 102ms
80:	learn: 20.3185460	total: 412ms	remaining: 96.7ms
81:	learn: 20.2096241	total: 416ms	remaining: 91.4ms
82:	learn: 20.1274891	total: 421ms	remaining: 86.1ms
83:	learn: 20.0740139	total: 425ms	remaining: 80.9ms
84:	learn: 19.9630699	total: 429ms	remaining: 75.7ms
85:	learn: 19.8753899	total: 433ms	remaining: 70.5ms
86:	learn: 19.6563612	total: 437ms	remaining: 65.4ms
87:	learn: 19.4680232	total: 442ms	remaining: 60.2ms
88:	learn: 19.3503431	total: 446ms	remaining: 55.1ms
89:	learn: 19.2221379	total: 451ms	remaining: 50.1ms
90:	learn: 19.0732542	total: 455ms	remaining: 45ms
91:	learn: 18.9825190	total: 459ms	remaining: 39.9ms
92:	learn: 18.8839009	total: 463ms	remaining: 34.8ms
93:	learn: 18.8012219	total: 468ms	remaining: 29.8ms
94:	learn: 18.7172713	total: 472ms	remaining: 24.8ms
95:	learn: 18.6201170	total: 477ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 481ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 485ms	remaining: 9.91ms
98:	learn: 18.3289700	total: 490ms	remaining: 4.95ms
99:	learn: 18.2227333	total: 494ms	remaining: 0us
0:	learn: 46.3764524	total: 5.74ms	remaining: 568ms
1:	learn: 45.5561269	total: 10.9ms	remaining: 532ms
2:	learn: 44.8811245	total: 15.8ms	remaining: 510ms
3:	learn: 44.0788617	total: 21.1ms	remaining: 507ms
4:	learn: 43.3619790	total: 26.2ms	remaining: 498ms
5:	learn: 42.6912112	total: 31.5ms	remaining: 493ms
6:	learn: 42.2292118	total: 36.7ms	remaining: 487ms
7:	learn: 41.7725191	total: 41.6ms	remaining: 479ms
8:	learn: 41.1676614	total: 46.2ms	remaining: 467ms
9:	learn: 40.5771076	total: 51.5ms	remaining: 464ms
10:	learn: 39.8343757	total: 57ms	remaining: 461ms
11:	learn: 39.3761142	total: 61.7ms	remaining: 453ms
12:	learn: 38.5254692	total: 65.6ms	remaining: 439ms
13:	learn: 37.9629555	total: 69.4ms	remaining: 426ms
14:	learn: 37.4418438	total: 73.5ms	remaining: 417ms
15:	learn: 37.0507283	total: 77.5ms	remaining: 407ms
16:	learn: 36.6264217	total: 81.3ms	remaining: 397ms
17:	learn: 36.1114940	total: 85.3ms	remaining: 389ms
18:	learn: 35.7193862	total: 89.9ms	remaining: 383ms
19:	learn: 35.3301177	total: 93.9ms	remaining: 376ms
20:	learn: 35.0598280	total: 98ms	remaining: 369ms
21:	learn: 34.5469736	total: 102ms	remaining: 362ms
22:	learn: 34.2064215	total: 106ms	remaining: 355ms
23:	learn: 33.7280710	total: 110ms	remaining: 349ms
24:	learn: 33.3282940	total: 114ms	remaining: 343ms
25:	learn: 32.8478961	total: 118ms	remaining: 337ms
26:	learn: 32.5722164	total: 122ms	remaining: 331ms
27:	learn: 32.2457019	total: 127ms	remaining: 328ms
28:	learn: 31.9230495	total: 131ms	remaining: 321ms
29:	learn: 31.4311611	total: 135ms	remaining: 316ms
30:	learn: 30.9179052	total: 140ms	remaining: 311ms
31:	learn: 30.6201141	total: 144ms	remaining: 307ms
32:	learn: 30.3421106	total: 149ms	remaining: 303ms
33:	learn: 29.9885373	total: 153ms	remaining: 297ms
34:	learn: 29.7462780	total: 158ms	remaining: 293ms
35:	learn: 29.3607153	total: 162ms	remaining: 288ms
36:	learn: 29.1793078	total: 167ms	remaining: 284ms
37:	learn: 28.9276538	total: 171ms	remaining: 279ms
38:	learn: 28.6903934	total: 179ms	remaining: 280ms
39:	learn: 28.2095033	total: 187ms	remaining: 281ms
40:	learn: 27.7990608	total: 199ms	remaining: 286ms
41:	learn: 27.5406632	total: 206ms	remaining: 284ms
42:	learn: 27.2575376	total: 212ms	remaining: 282ms
43:	learn: 26.9741707	total: 218ms	remaining: 277ms
44:	learn: 26.6606899	total: 223ms	remaining: 273ms
45:	learn: 26.4015833	total: 228ms	remaining: 268ms
46:	learn: 26.1828993	total: 234ms	remaining: 263ms
47:	learn: 26.0233709	total: 237ms	remaining: 256ms
48:	learn: 25.9300399	total: 242ms	remaining: 252ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 252ms	remaining: 242ms
51:	learn: 25.1595644	total: 257ms	remaining: 237ms
52:	learn: 24.9955303	total: 262ms	remaining: 232ms
53:	learn: 24.7273966	total: 267ms	remaining: 227ms
54:	learn: 24.5747978	total: 271ms	remaining: 222ms
55:	learn: 24.3807977	total: 277ms	remaining: 217ms
56:	learn: 24.1689569	total: 282ms	remaining: 213ms
57:	learn: 23.9898221	total: 287ms	remaining: 208ms
58:	learn: 23.7566414	total: 291ms	remaining: 202ms
59:	learn: 23.6641165	total: 295ms	remaining: 197ms
60:	learn: 23.5658066	total: 299ms	remaining: 191ms
61:	learn: 23.4338851	total: 304ms	remaining: 186ms
62:	learn: 23.2408837	total: 309ms	remaining: 181ms
63:	learn: 23.0642038	total: 313ms	remaining: 176ms
64:	learn: 22.9032045	total: 318ms	remaining: 171ms
65:	learn: 22.7736138	total: 322ms	remaining: 166ms
66:	learn: 22.6836443	total: 326ms	remaining: 161ms
67:	learn: 22.5983654	total: 331ms	remaining: 156ms
68:	learn: 22.4419813	total: 335ms	remaining: 150ms
69:	learn: 22.2863339	total: 340ms	remaining: 146ms
70:	learn: 22.1792943	total: 344ms	remaining: 140ms
71:	learn: 22.1130574	total: 348ms	remaining: 135ms
72:	learn: 21.9858161	total: 353ms	remaining: 131ms
73:	learn: 21.8577784	total: 358ms	remaining: 126ms
74:	learn: 21.7845222	total: 363ms	remaining: 121ms
75:	learn: 21.6831390	total: 368ms	remaining: 116ms
76:	learn: 21.6292521	total: 373ms	remaining: 111ms
77:	learn: 21.5789330	total: 378ms	remaining: 107ms
78:	learn: 21.5420942	total: 382ms	remaining: 102ms
79:	learn: 21.4280939	total: 387ms	remaining: 96.8ms
80:	learn: 21.3641165	total: 393ms	remaining: 92.2ms
81:	learn: 21.2734814	total: 401ms	remaining: 87.9ms
82:	learn: 21.2220323	total: 408ms	remaining: 83.6ms
83:	learn: 21.0625792	total: 416ms	remaining: 79.2ms
84:	learn: 20.9488320	total: 424ms	remaining: 74.8ms
85:	learn: 20.8504255	total: 429ms	remaining: 69.8ms
86:	learn: 20.7848510	total: 434ms	remaining: 64.8ms
87:	learn: 20.7247442	total: 440ms	remaining: 59.9ms
88:	learn: 20.5698590	total: 445ms	remaining: 55ms
89:	learn: 20.4067620	total: 450ms	remaining: 50ms
90:	learn: 20.3062482	total: 455ms	remaining: 45ms
91:	learn: 20.2029696	total: 460ms	remaining: 40ms
92:	learn: 20.1384849	total: 465ms	remaining: 35ms
93:	learn: 20.0260709	total: 471ms	remaining: 30.1ms
94:	learn: 19.9122100	total: 476ms	remaining: 25ms
95:	learn: 19.8648487	total: 481ms	remaining: 20ms
96:	learn: 19.8207072	total: 486ms	remaining: 15ms
97:	learn: 19.7261189	total: 492ms	remaining: 10ms
98:	learn: 19.7042438	total: 496ms	remaining: 5.01ms
99:	learn: 19.6546645	total: 501ms	remaining: 0us
0:	learn: 47.0239288	total: 4.08ms	remaining: 404ms
1:	learn: 46.2253829	total: 8.24ms	remaining: 404ms
2:	learn: 45.5580301	total: 12.9ms	remaining: 416ms
3:	learn: 44.7273237	total: 17.6ms	remaining: 422ms
4:	learn: 43.8867421	total: 22ms	remaining: 418ms
5:	learn: 43.3615911	total: 26.1ms	remaining: 409ms
6:	learn: 42.8548390	total: 30.5ms	remaining: 405ms
7:	learn: 42.1606758	total: 34.9ms	remaining: 402ms
8:	learn: 41.6625870	total: 39.5ms	remaining: 399ms
9:	learn: 40.9497092	total: 43.7ms	remaining: 394ms
10:	learn: 40.1886318	total: 51.1ms	remaining: 414ms
11:	learn: 39.7456423	total: 58.6ms	remaining: 430ms
12:	learn: 39.1171373	total: 68.1ms	remaining: 456ms
13:	learn: 38.5451069	total: 73.9ms	remaining: 454ms
14:	learn: 38.0155834	total: 80.9ms	remaining: 458ms
15:	learn: 37.5631354	total: 86.2ms	remaining: 453ms
16:	learn: 37.1030023	total: 91.5ms	remaining: 447ms
17:	learn: 36.4563029	total: 96.6ms	remaining: 440ms
18:	learn: 36.0160976	total: 102ms	remaining: 435ms
19:	learn: 35.5079827	total: 107ms	remaining: 428ms
20:	learn: 35.2111885	total: 112ms	remaining: 422ms
21:	learn: 34.9397465	total: 118ms	remaining: 417ms
22:	learn: 34.5270048	total: 123ms	remaining: 411ms
23:	learn: 34.0169260	total: 128ms	remaining: 404ms
24:	learn: 33.7454892	total: 133ms	remaining: 398ms
25:	learn: 33.2648157	total: 138ms	remaining: 392ms
26:	learn: 32.8899427	total: 143ms	remaining: 387ms
27:	learn: 32.6185050	total: 149ms	remaining: 382ms
28:	learn: 32.3528531	total: 153ms	remaining: 374ms
29:	learn: 32.0859923	total: 157ms	remaining: 366ms
30:	learn: 31.6511144	total: 161ms	remaining: 358ms
31:	learn: 31.2571765	total: 165ms	remaining: 350ms
32:	learn: 30.9770049	total: 168ms	remaining: 342ms
33:	learn: 30.6084872	total: 173ms	remaining: 335ms
34:	learn: 30.3448632	total: 177ms	remaining: 328ms
35:	learn: 30.0360942	total: 180ms	remaining: 321ms
36:	learn: 29.6648968	total: 184ms	remaining: 314ms
37:	learn: 29.3165114	total: 188ms	remaining: 307ms
38:	learn: 29.0829198	total: 193ms	remaining: 302ms
39:	learn: 28.7752064	total: 197ms	remaining: 295ms
40:	learn: 28.3622191	total: 201ms	remaining: 289ms
41:	learn: 28.1346631	total: 204ms	remaining: 282ms
42:	learn: 27.9585719	total: 209ms	remaining: 277ms
43:	learn: 27.6565566	total: 213ms	remaining: 271ms
44:	learn: 27.3616172	total: 217ms	remaining: 265ms
45:	learn: 27.0658637	total: 221ms	remaining: 259ms
46:	learn: 26.8660382	total: 226ms	remaining: 254ms
47:	learn: 26.6536078	total: 230ms	remaining: 249ms
48:	learn: 26.3524440	total: 235ms	remaining: 244ms
49:	learn: 26.1595277	total: 239ms	remaining: 239ms
50:	learn: 25.9273523	total: 243ms	remaining: 234ms
51:	learn: 25.7195580	total: 248ms	remaining: 229ms
52:	learn: 25.5730225	total: 252ms	remaining: 224ms
53:	learn: 25.3455276	total: 257ms	remaining: 219ms
54:	learn: 25.2289675	total: 264ms	remaining: 216ms
55:	learn: 25.0133024	total: 285ms	remaining: 224ms
56:	learn: 24.8406714	total: 292ms	remaining: 220ms
57:	learn: 24.6367857	total: 297ms	remaining: 215ms
58:	learn: 24.5338177	total: 303ms	remaining: 210ms
59:	learn: 24.3799964	total: 308ms	remaining: 205ms
60:	learn: 24.1447492	total: 313ms	remaining: 200ms
61:	learn: 23.9880495	total: 318ms	remaining: 195ms
62:	learn: 23.7140630	total: 323ms	remaining: 190ms
63:	learn: 23.5003791	total: 328ms	remaining: 185ms
64:	learn: 23.3207645	total: 334ms	remaining: 180ms
65:	learn: 23.1958356	total: 339ms	remaining: 175ms
66:	learn: 23.0471302	total: 344ms	remaining: 169ms
67:	learn: 22.8977183	total: 348ms	remaining: 164ms
68:	learn: 22.7187400	total: 354ms	remaining: 159ms
69:	learn: 22.6523405	total: 359ms	remaining: 154ms
70:	learn: 22.4767453	total: 363ms	remaining: 148ms
71:	learn: 22.3243677	total: 368ms	remaining: 143ms
72:	learn: 22.2133096	total: 372ms	remaining: 137ms
73:	learn: 22.1151713	total: 375ms	remaining: 132ms
74:	learn: 22.0296666	total: 379ms	remaining: 126ms
75:	learn: 21.9195980	total: 383ms	remaining: 121ms
76:	learn: 21.8401730	total: 387ms	remaining: 116ms
77:	learn: 21.8079797	total: 391ms	remaining: 110ms
78:	learn: 21.7274109	total: 395ms	remaining: 105ms
79:	learn: 21.6663032	total: 399ms	remaining: 99.7ms
80:	learn: 21.5633117	total: 403ms	remaining: 94.5ms
81:	learn: 21.4542467	total: 407ms	remaining: 89.3ms
82:	learn: 21.3177957	total: 411ms	remaining: 84.2ms
83:	learn: 21.1289167	total: 415ms	remaining: 79ms
84:	learn: 21.0297368	total: 419ms	remaining: 73.9ms
85:	learn: 20.9089564	total: 423ms	remaining: 68.8ms
86:	learn: 20.7653988	total: 427ms	remaining: 63.9ms
87:	learn: 20.6521894	total: 432ms	remaining: 58.9ms
88:	learn: 20.5193021	total: 436ms	remaining: 53.9ms
89:	learn: 20.4361620	total: 441ms	remaining: 48.9ms
90:	learn: 20.3546710	total: 445ms	remaining: 44ms
91:	learn: 20.2513296	total: 450ms	remaining: 39.1ms
92:	learn: 20.1605550	total: 454ms	remaining: 34.2ms
93:	learn: 20.0515942	total: 459ms	remaining: 29.3ms
94:	learn: 19.9800764	total: 465ms	remaining: 24.5ms
95:	learn: 19.8996532	total: 473ms	remaining: 19.7ms
96:	learn: 19.8450910	total: 479ms	remaining: 14.8ms
97:	learn: 19.7887346	total: 486ms	remaining: 9.92ms
98:	learn: 19.7230872	total: 494ms	remaining: 4.99ms
99:	learn: 19.6328825	total: 499ms	remaining: 0us
0:	learn: 27.5585353	total: 5.58ms	remaining: 553ms
1:	learn: 27.1656995	total: 9.52ms	remaining: 466ms
2:	learn: 26.8590175	total: 13.5ms	remaining: 437ms
3:	learn: 26.5818406	total: 17.4ms	remaining: 417ms
4:	learn: 26.1148663	total: 21.2ms	remaining: 403ms
5:	learn: 25.7690484	total: 25.4ms	remaining: 398ms
6:	learn: 25.3489206	total: 29.1ms	remaining: 386ms
7:	learn: 24.9542406	total: 33.3ms	remaining: 382ms
8:	learn: 24.6777517	total: 37.1ms	remaining: 375ms
9:	learn: 24.3242344	total: 41.2ms	remaining: 371ms
10:	learn: 24.0383073	total: 45ms	remaining: 364ms
11:	learn: 23.7383420	total: 49.2ms	remaining: 361ms
12:	learn: 23.3461670	total: 53.2ms	remaining: 356ms
13:	learn: 23.0928636	total: 57.7ms	remaining: 355ms
14:	learn: 22.8770414	total: 61.9ms	remaining: 351ms
15:	learn: 22.6323214	total: 66.2ms	remaining: 348ms
16:	learn: 22.3597072	total: 70.4ms	remaining: 344ms
17:	learn: 22.1079813	total: 75.2ms	remaining: 343ms
18:	learn: 21.8421199	total: 80.1ms	remaining: 342ms
19:	learn: 21.6576508	total: 84.5ms	remaining: 338ms
20:	learn: 21.4301268	total: 89.4ms	remaining: 336ms
21:	learn: 21.2287388	total: 94.3ms	remaining: 334ms
22:	learn: 21.0553872	total: 99.4ms	remaining: 333ms
23:	learn: 20.8977091	total: 104ms	remaining: 330ms
24:	learn: 20.6619051	total: 111ms	remaining: 334ms
25:	learn: 20.5040955	total: 120ms	remaining: 342ms
26:	learn: 20.3181195	total: 132ms	remaining: 356ms
27:	learn: 20.0869436	total: 140ms	remaining: 360ms
28:	learn: 19.9375985	total: 146ms	remaining: 358ms
29:	learn: 19.8247516	total: 152ms	remaining: 354ms
30:	learn: 19.6261697	total: 156ms	remaining: 348ms
31:	learn: 19.4547236	total: 162ms	remaining: 343ms
32:	learn: 19.3157092	total: 167ms	remaining: 338ms
33:	learn: 19.1561419	total: 172ms	remaining: 333ms
34:	learn: 19.0453620	total: 177ms	remaining: 328ms
35:	learn: 18.8738574	total: 182ms	remaining: 323ms
36:	learn: 18.7072907	total: 187ms	remaining: 318ms
37:	learn: 18.5877943	total: 192ms	remaining: 313ms
38:	learn: 18.4436380	total: 197ms	remaining: 309ms
39:	learn: 18.3463356	total: 203ms	remaining: 304ms
40:	learn: 18.2008059	total: 208ms	remaining: 299ms
41:	learn: 18.0582079	total: 213ms	remaining: 294ms
42:	learn: 17.8891982	total: 219ms	remaining: 290ms
43:	learn: 17.7332246	total: 224ms	remaining: 285ms
44:	learn: 17.6206421	total: 229ms	remaining: 279ms
45:	learn: 17.4982800	total: 234ms	remaining: 274ms
46:	learn: 17.3970150	total: 238ms	remaining: 269ms
47:	learn: 17.3058203	total: 243ms	remaining: 263ms
48:	learn: 17.1789256	total: 248ms	remaining: 258ms
49:	learn: 17.0916229	total: 253ms	remaining: 253ms
50:	learn: 16.9859820	total: 258ms	remaining: 248ms
51:	learn: 16.8995582	total: 262ms	remaining: 242ms
52:	learn: 16.8137014	total: 266ms	remaining: 236ms
53:	learn: 16.7021451	total: 270ms	remaining: 230ms
54:	learn: 16.5895582	total: 275ms	remaining: 225ms
55:	learn: 16.5015639	total: 280ms	remaining: 220ms
56:	learn: 16.4356637	total: 285ms	remaining: 215ms
57:	learn: 16.3514525	total: 289ms	remaining: 210ms
58:	learn: 16.2401369	total: 294ms	remaining: 204ms
59:	learn: 16.1293223	total: 299ms	remaining: 199ms
60:	learn: 16.0271167	total: 303ms	remaining: 194ms
61:	learn: 15.9126257	total: 309ms	remaining: 189ms
62:	learn: 15.8391096	total: 317ms	remaining: 186ms
63:	learn: 15.7441773	total: 324ms	remaining: 182ms
64:	learn: 15.6885195	total: 333ms	remaining: 179ms
65:	learn: 15.6052039	total: 340ms	remaining: 175ms
66:	learn: 15.5074202	total: 345ms	remaining: 170ms
67:	learn: 15.4054338	total: 351ms	remaining: 165ms
68:	learn: 15.2885714	total: 356ms	remaining: 160ms
69:	learn: 15.2157472	total: 361ms	remaining: 155ms
70:	learn: 15.1031554	total: 367ms	remaining: 150ms
71:	learn: 15.0237470	total: 372ms	remaining: 145ms
72:	learn: 14.9756825	total: 377ms	remaining: 139ms
73:	learn: 14.8840596	total: 382ms	remaining: 134ms
74:	learn: 14.8077061	total: 387ms	remaining: 129ms
75:	learn: 14.7444437	total: 393ms	remaining: 124ms
76:	learn: 14.6751720	total: 397ms	remaining: 119ms
77:	learn: 14.5830333	total: 402ms	remaining: 113ms
78:	learn: 14.5241206	total: 408ms	remaining: 108ms
79:	learn: 14.4892731	total: 413ms	remaining: 103ms
80:	learn: 14.4256605	total: 418ms	remaining: 97.9ms
81:	learn: 14.3666860	total: 422ms	remaining: 92.5ms
82:	learn: 14.2938372	total: 426ms	remaining: 87.2ms
83:	learn: 14.2161532	total: 430ms	remaining: 81.9ms
84:	learn: 14.1582910	total: 434ms	remaining: 76.5ms
85:	learn: 14.1029153	total: 438ms	remaining: 71.2ms
86:	learn: 14.0475835	total: 442ms	remaining: 66ms
87:	learn: 13.9892661	total: 446ms	remaining: 60.8ms
88:	learn: 13.9481628	total: 450ms	remaining: 55.7ms
89:	learn: 13.8483991	total: 454ms	remaining: 50.5ms
90:	learn: 13.7775614	total: 459ms	remaining: 45.4ms
91:	learn: 13.7304585	total: 463ms	remaining: 40.2ms
92:	learn: 13.6783381	total: 467ms	remaining: 35.1ms
93:	learn: 13.6356964	total: 471ms	remaining: 30.1ms
94:	learn: 13.5924371	total: 475ms	remaining: 25ms
95:	learn: 13.5400746	total: 480ms	remaining: 20ms
96:	learn: 13.4897333	total: 484ms	remaining: 15ms
97:	learn: 13.4470321	total: 489ms	remaining: 9.97ms
98:	learn: 13.3856082	total: 493ms	remaining: 4.98ms
99:	learn: 13.3082371	total: 498ms	remaining: 0us
0:	learn: 43.0395283	total: 5.75ms	remaining: 569ms
1:	learn: 42.1130223	total: 10.5ms	remaining: 517ms
2:	learn: 41.1753409	total: 15.8ms	remaining: 510ms
3:	learn: 40.3637444	total: 20.5ms	remaining: 491ms
4:	learn: 39.6508088	total: 25.6ms	remaining: 486ms
5:	learn: 38.7217934	total: 30.7ms	remaining: 481ms
6:	learn: 37.8538055	total: 35.8ms	remaining: 476ms
7:	learn: 36.9793574	total: 40.5ms	remaining: 465ms
8:	learn: 36.3076984	total: 44.9ms	remaining: 454ms
9:	learn: 35.6673160	total: 50.2ms	remaining: 452ms
10:	learn: 34.8889800	total: 55.7ms	remaining: 450ms
11:	learn: 34.1675517	total: 60.2ms	remaining: 441ms
12:	learn: 33.6779564	total: 64.3ms	remaining: 430ms
13:	learn: 33.0710039	total: 68.4ms	remaining: 420ms
14:	learn: 32.4966674	total: 72.2ms	remaining: 409ms
15:	learn: 31.9492856	total: 76.3ms	remaining: 401ms
16:	learn: 31.5108129	total: 80.7ms	remaining: 394ms
17:	learn: 30.9804023	total: 85.2ms	remaining: 388ms
18:	learn: 30.4169089	total: 89.3ms	remaining: 381ms
19:	learn: 29.8930375	total: 93.2ms	remaining: 373ms
20:	learn: 29.3974421	total: 97ms	remaining: 365ms
21:	learn: 28.8792307	total: 101ms	remaining: 359ms
22:	learn: 28.3894474	total: 106ms	remaining: 353ms
23:	learn: 27.9921276	total: 110ms	remaining: 347ms
24:	learn: 27.6158887	total: 113ms	remaining: 340ms
25:	learn: 27.2866950	total: 118ms	remaining: 335ms
26:	learn: 26.8770708	total: 122ms	remaining: 331ms
27:	learn: 26.6233005	total: 127ms	remaining: 326ms
28:	learn: 26.2921934	total: 132ms	remaining: 322ms
29:	learn: 25.9156920	total: 149ms	remaining: 348ms
30:	learn: 25.5311106	total: 151ms	remaining: 336ms
31:	learn: 25.2178997	total: 158ms	remaining: 336ms
32:	learn: 24.8572196	total: 165ms	remaining: 335ms
33:	learn: 24.5849710	total: 173ms	remaining: 336ms
34:	learn: 24.2209190	total: 180ms	remaining: 334ms
35:	learn: 23.8708250	total: 188ms	remaining: 333ms
36:	learn: 23.5325279	total: 193ms	remaining: 328ms
37:	learn: 23.2116148	total: 198ms	remaining: 323ms
38:	learn: 22.9696787	total: 203ms	remaining: 317ms
39:	learn: 22.7936783	total: 208ms	remaining: 312ms
40:	learn: 22.6228847	total: 213ms	remaining: 307ms
41:	learn: 22.3691527	total: 219ms	remaining: 302ms
42:	learn: 22.1002173	total: 224ms	remaining: 297ms
43:	learn: 21.9157268	total: 229ms	remaining: 292ms
44:	learn: 21.7229102	total: 234ms	remaining: 286ms
45:	learn: 21.4642005	total: 239ms	remaining: 280ms
46:	learn: 21.3029442	total: 244ms	remaining: 275ms
47:	learn: 21.1469792	total: 249ms	remaining: 270ms
48:	learn: 20.9458235	total: 254ms	remaining: 265ms
49:	learn: 20.7335242	total: 259ms	remaining: 259ms
50:	learn: 20.5440269	total: 262ms	remaining: 252ms
51:	learn: 20.3661449	total: 266ms	remaining: 246ms
52:	learn: 20.2158134	total: 270ms	remaining: 240ms
53:	learn: 19.9934873	total: 275ms	remaining: 234ms
54:	learn: 19.7879739	total: 279ms	remaining: 228ms
55:	learn: 19.6630460	total: 283ms	remaining: 222ms
56:	learn: 19.5152729	total: 287ms	remaining: 216ms
57:	learn: 19.3581128	total: 291ms	remaining: 211ms
58:	learn: 19.2209303	total: 296ms	remaining: 205ms
59:	learn: 19.0965248	total: 300ms	remaining: 200ms
60:	learn: 19.0035954	total: 304ms	remaining: 194ms
61:	learn: 18.8554149	total: 308ms	remaining: 189ms
62:	learn: 18.7095427	total: 312ms	remaining: 183ms
63:	learn: 18.5751494	total: 316ms	remaining: 178ms
64:	learn: 18.4678251	total: 320ms	remaining: 173ms
65:	learn: 18.3500325	total: 325ms	remaining: 167ms
66:	learn: 18.2088983	total: 330ms	remaining: 162ms
67:	learn: 18.0737705	total: 334ms	remaining: 157ms
68:	learn: 17.9325058	total: 338ms	remaining: 152ms
69:	learn: 17.8003911	total: 343ms	remaining: 147ms
70:	learn: 17.7385366	total: 348ms	remaining: 142ms
71:	learn: 17.6106998	total: 352ms	remaining: 137ms
72:	learn: 17.4816270	total: 359ms	remaining: 133ms
73:	learn: 17.4025554	total: 367ms	remaining: 129ms
74:	learn: 17.2902108	total: 375ms	remaining: 125ms
75:	learn: 17.2158048	total: 381ms	remaining: 120ms
76:	learn: 17.1261053	total: 389ms	remaining: 116ms
77:	learn: 17.0308917	total: 394ms	remaining: 111ms
78:	learn: 16.9546705	total: 400ms	remaining: 106ms
79:	learn: 16.8319165	total: 405ms	remaining: 101ms
80:	learn: 16.7687017	total: 410ms	remaining: 96.2ms
81:	learn: 16.6972326	total: 415ms	remaining: 91.2ms
82:	learn: 16.6124580	total: 421ms	remaining: 86.2ms
83:	learn: 16.4999052	total: 427ms	remaining: 81.3ms
84:	learn: 16.4302484	total: 432ms	remaining: 76.2ms
85:	learn: 16.3201363	total: 437ms	remaining: 71.2ms
86:	learn: 16.2534314	total: 442ms	remaining: 66ms
87:	learn: 16.1720485	total: 447ms	remaining: 60.9ms
88:	learn: 16.0625751	total: 452ms	remaining: 55.9ms
89:	learn: 15.9135088	total: 458ms	remaining: 50.8ms
90:	learn: 15.8658863	total: 462ms	remaining: 45.7ms
91:	learn: 15.8066805	total: 466ms	remaining: 40.6ms
92:	learn: 15.7412103	total: 471ms	remaining: 35.4ms
93:	learn: 15.6542776	total: 475ms	remaining: 30.3ms
94:	learn: 15.5760334	total: 479ms	remaining: 25.2ms
95:	learn: 15.5434131	total: 483ms	remaining: 20.1ms
96:	learn: 15.4709561	total: 488ms	remaining: 15.1ms
97:	learn: 15.4449618	total: 492ms	remaining: 10ms
98:	learn: 15.3752761	total: 496ms	remaining: 5.01ms
99:	learn: 15.3106595	total: 501ms	remaining: 0us
0:	learn: 46.7142257	total: 5.13ms	remaining: 508ms
1:	learn: 45.7634153	total: 13.7ms	remaining: 671ms
2:	learn: 45.0054253	total: 21.1ms	remaining: 682ms
3:	learn: 44.2120432	total: 30ms	remaining: 720ms
4:	learn: 43.3960472	total: 37.9ms	remaining: 720ms
5:	learn: 42.8588120	total: 43.3ms	remaining: 678ms
6:	learn: 41.9533701	total: 49.1ms	remaining: 652ms
7:	learn: 41.2745030	total: 54.5ms	remaining: 627ms
8:	learn: 40.6797495	total: 59.6ms	remaining: 603ms
9:	learn: 39.9899571	total: 65.1ms	remaining: 586ms
10:	learn: 39.4682100	total: 70.9ms	remaining: 574ms
11:	learn: 39.0305595	total: 76.3ms	remaining: 560ms
12:	learn: 38.4200417	total: 81.8ms	remaining: 548ms
13:	learn: 37.8425194	total: 86.9ms	remaining: 534ms
14:	learn: 37.4203127	total: 91.8ms	remaining: 520ms
15:	learn: 36.9917688	total: 97ms	remaining: 509ms
16:	learn: 36.5544138	total: 102ms	remaining: 498ms
17:	learn: 36.0727019	total: 108ms	remaining: 492ms
18:	learn: 35.4835715	total: 115ms	remaining: 490ms
19:	learn: 34.9865654	total: 119ms	remaining: 478ms
20:	learn: 34.6063373	total: 124ms	remaining: 467ms
21:	learn: 34.0997289	total: 129ms	remaining: 456ms
22:	learn: 33.7313171	total: 134ms	remaining: 448ms
23:	learn: 33.3582000	total: 138ms	remaining: 438ms
24:	learn: 32.9432456	total: 143ms	remaining: 429ms
25:	learn: 32.5220888	total: 147ms	remaining: 418ms
26:	learn: 32.2172292	total: 151ms	remaining: 408ms
27:	learn: 31.8972904	total: 155ms	remaining: 398ms
28:	learn: 31.6405350	total: 159ms	remaining: 390ms
29:	learn: 31.4167702	total: 163ms	remaining: 380ms
30:	learn: 30.8541961	total: 164ms	remaining: 366ms
31:	learn: 30.5572111	total: 169ms	remaining: 358ms
32:	learn: 30.1700399	total: 173ms	remaining: 351ms
33:	learn: 29.8537271	total: 178ms	remaining: 345ms
34:	learn: 29.6192540	total: 182ms	remaining: 339ms
35:	learn: 29.3276362	total: 187ms	remaining: 332ms
36:	learn: 28.9985179	total: 191ms	remaining: 326ms
37:	learn: 28.7046880	total: 196ms	remaining: 319ms
38:	learn: 28.4412677	total: 200ms	remaining: 313ms
39:	learn: 28.1277292	total: 205ms	remaining: 307ms
40:	learn: 27.9000750	total: 210ms	remaining: 303ms
41:	learn: 27.5433162	total: 219ms	remaining: 302ms
42:	learn: 27.2493285	total: 226ms	remaining: 300ms
43:	learn: 26.9576632	total: 230ms	remaining: 293ms
44:	learn: 26.6177110	total: 237ms	remaining: 289ms
45:	learn: 26.2812456	total: 244ms	remaining: 286ms
46:	learn: 26.0803859	total: 249ms	remaining: 281ms
47:	learn: 25.9543581	total: 254ms	remaining: 275ms
48:	learn: 25.7951582	total: 259ms	remaining: 269ms
49:	learn: 25.6548184	total: 264ms	remaining: 264ms
50:	learn: 25.4010843	total: 269ms	remaining: 258ms
51:	learn: 24.9773937	total: 274ms	remaining: 253ms
52:	learn: 24.8026156	total: 280ms	remaining: 248ms
53:	learn: 24.5568053	total: 285ms	remaining: 243ms
54:	learn: 24.2281839	total: 290ms	remaining: 238ms
55:	learn: 23.9202795	total: 295ms	remaining: 232ms
56:	learn: 23.7625591	total: 300ms	remaining: 226ms
57:	learn: 23.5429721	total: 305ms	remaining: 221ms
58:	learn: 23.3175893	total: 310ms	remaining: 216ms
59:	learn: 23.2035130	total: 315ms	remaining: 210ms
60:	learn: 23.0232450	total: 319ms	remaining: 204ms
61:	learn: 22.8384958	total: 324ms	remaining: 198ms
62:	learn: 22.6499902	total: 328ms	remaining: 193ms
63:	learn: 22.4577426	total: 332ms	remaining: 187ms
64:	learn: 22.3333158	total: 336ms	remaining: 181ms
65:	learn: 22.2064131	total: 340ms	remaining: 175ms
66:	learn: 22.1434971	total: 344ms	remaining: 169ms
67:	learn: 21.9596519	total: 348ms	remaining: 164ms
68:	learn: 21.8475576	total: 352ms	remaining: 158ms
69:	learn: 21.6954745	total: 357ms	remaining: 153ms
70:	learn: 21.5635976	total: 361ms	remaining: 147ms
71:	learn: 21.4588506	total: 365ms	remaining: 142ms
72:	learn: 21.3527268	total: 369ms	remaining: 136ms
73:	learn: 21.2661288	total: 373ms	remaining: 131ms
74:	learn: 21.1817333	total: 378ms	remaining: 126ms
75:	learn: 21.0527553	total: 383ms	remaining: 121ms
76:	learn: 20.9229021	total: 388ms	remaining: 116ms
77:	learn: 20.7563946	total: 392ms	remaining: 111ms
78:	learn: 20.6569831	total: 397ms	remaining: 105ms
79:	learn: 20.4982663	total: 401ms	remaining: 100ms
80:	learn: 20.3185460	total: 405ms	remaining: 95.1ms
81:	learn: 20.2096241	total: 412ms	remaining: 90.5ms
82:	learn: 20.1274891	total: 419ms	remaining: 85.9ms
83:	learn: 20.0740139	total: 426ms	remaining: 81.2ms
84:	learn: 19.9630699	total: 434ms	remaining: 76.5ms
85:	learn: 19.8753899	total: 442ms	remaining: 71.9ms
86:	learn: 19.6563612	total: 447ms	remaining: 66.9ms
87:	learn: 19.4680232	total: 453ms	remaining: 61.7ms
88:	learn: 19.3503431	total: 458ms	remaining: 56.6ms
89:	learn: 19.2221379	total: 463ms	remaining: 51.4ms
90:	learn: 19.0732542	total: 467ms	remaining: 46.2ms
91:	learn: 18.9825190	total: 472ms	remaining: 41.1ms
92:	learn: 18.8839009	total: 477ms	remaining: 35.9ms
93:	learn: 18.8012219	total: 482ms	remaining: 30.8ms
94:	learn: 18.7172713	total: 488ms	remaining: 25.7ms
95:	learn: 18.6201170	total: 493ms	remaining: 20.5ms
96:	learn: 18.5318611	total: 498ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 503ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 509ms	remaining: 5.14ms
99:	learn: 18.2227333	total: 513ms	remaining: 0us
0:	learn: 46.3764524	total: 4.32ms	remaining: 427ms
1:	learn: 45.5561269	total: 8.19ms	remaining: 402ms
2:	learn: 44.8811245	total: 11.8ms	remaining: 382ms
3:	learn: 44.0788617	total: 15.9ms	remaining: 382ms
4:	learn: 43.3619790	total: 20ms	remaining: 380ms
5:	learn: 42.6912112	total: 24.1ms	remaining: 377ms
6:	learn: 42.2292118	total: 28ms	remaining: 372ms
7:	learn: 41.7725191	total: 32.3ms	remaining: 372ms
8:	learn: 41.1676614	total: 36.7ms	remaining: 371ms
9:	learn: 40.5771076	total: 40.8ms	remaining: 368ms
10:	learn: 39.8343757	total: 45.3ms	remaining: 366ms
11:	learn: 39.3761142	total: 49.4ms	remaining: 362ms
12:	learn: 38.5254692	total: 54.4ms	remaining: 364ms
13:	learn: 37.9629555	total: 59ms	remaining: 363ms
14:	learn: 37.4418438	total: 63.7ms	remaining: 361ms
15:	learn: 37.0507283	total: 68.7ms	remaining: 360ms
16:	learn: 36.6264217	total: 76ms	remaining: 371ms
17:	learn: 36.1114940	total: 82.9ms	remaining: 378ms
18:	learn: 35.7193862	total: 91.8ms	remaining: 391ms
19:	learn: 35.3301177	total: 97.6ms	remaining: 391ms
20:	learn: 35.0598280	total: 104ms	remaining: 390ms
21:	learn: 34.5469736	total: 109ms	remaining: 385ms
22:	learn: 34.2064215	total: 114ms	remaining: 381ms
23:	learn: 33.7280710	total: 119ms	remaining: 376ms
24:	learn: 33.3282940	total: 124ms	remaining: 371ms
25:	learn: 32.8478961	total: 129ms	remaining: 367ms
26:	learn: 32.5722164	total: 134ms	remaining: 362ms
27:	learn: 32.2457019	total: 139ms	remaining: 357ms
28:	learn: 31.9230495	total: 144ms	remaining: 353ms
29:	learn: 31.4311611	total: 149ms	remaining: 348ms
30:	learn: 30.9179052	total: 154ms	remaining: 344ms
31:	learn: 30.6201141	total: 159ms	remaining: 338ms
32:	learn: 30.3421106	total: 165ms	remaining: 335ms
33:	learn: 29.9885373	total: 170ms	remaining: 331ms
34:	learn: 29.7462780	total: 174ms	remaining: 324ms
35:	learn: 29.3607153	total: 178ms	remaining: 317ms
36:	learn: 29.1793078	total: 183ms	remaining: 311ms
37:	learn: 28.9276538	total: 187ms	remaining: 304ms
38:	learn: 28.6903934	total: 190ms	remaining: 298ms
39:	learn: 28.2095033	total: 194ms	remaining: 291ms
40:	learn: 27.7990608	total: 198ms	remaining: 285ms
41:	learn: 27.5406632	total: 202ms	remaining: 279ms
42:	learn: 27.2575376	total: 206ms	remaining: 273ms
43:	learn: 26.9741707	total: 210ms	remaining: 267ms
44:	learn: 26.6606899	total: 214ms	remaining: 262ms
45:	learn: 26.4015833	total: 218ms	remaining: 256ms
46:	learn: 26.1828993	total: 222ms	remaining: 251ms
47:	learn: 26.0233709	total: 225ms	remaining: 243ms
48:	learn: 25.9300399	total: 229ms	remaining: 238ms
49:	learn: 25.5861489	total: 234ms	remaining: 234ms
50:	learn: 25.4322012	total: 239ms	remaining: 229ms
51:	learn: 25.1595644	total: 243ms	remaining: 225ms
52:	learn: 24.9955303	total: 248ms	remaining: 220ms
53:	learn: 24.7273966	total: 253ms	remaining: 216ms
54:	learn: 24.5747978	total: 258ms	remaining: 211ms
55:	learn: 24.3807977	total: 263ms	remaining: 206ms
56:	learn: 24.1689569	total: 271ms	remaining: 204ms
57:	learn: 23.9898221	total: 277ms	remaining: 201ms
58:	learn: 23.7566414	total: 285ms	remaining: 198ms
59:	learn: 23.6641165	total: 292ms	remaining: 194ms
60:	learn: 23.5658066	total: 299ms	remaining: 191ms
61:	learn: 23.4338851	total: 305ms	remaining: 187ms
62:	learn: 23.2408837	total: 310ms	remaining: 182ms
63:	learn: 23.0642038	total: 315ms	remaining: 177ms
64:	learn: 22.9032045	total: 321ms	remaining: 173ms
65:	learn: 22.7736138	total: 326ms	remaining: 168ms
66:	learn: 22.6836443	total: 331ms	remaining: 163ms
67:	learn: 22.5983654	total: 337ms	remaining: 159ms
68:	learn: 22.4419813	total: 342ms	remaining: 154ms
69:	learn: 22.2863339	total: 348ms	remaining: 149ms
70:	learn: 22.1792943	total: 353ms	remaining: 144ms
71:	learn: 22.1130574	total: 358ms	remaining: 139ms
72:	learn: 21.9858161	total: 364ms	remaining: 135ms
73:	learn: 21.8577784	total: 370ms	remaining: 130ms
74:	learn: 21.7845222	total: 375ms	remaining: 125ms
75:	learn: 21.6831390	total: 380ms	remaining: 120ms
76:	learn: 21.6292521	total: 384ms	remaining: 115ms
77:	learn: 21.5789330	total: 388ms	remaining: 110ms
78:	learn: 21.5420942	total: 393ms	remaining: 104ms
79:	learn: 21.4280939	total: 397ms	remaining: 99.2ms
80:	learn: 21.3641165	total: 401ms	remaining: 94.1ms
81:	learn: 21.2734814	total: 405ms	remaining: 89ms
82:	learn: 21.2220323	total: 410ms	remaining: 83.9ms
83:	learn: 21.0625792	total: 414ms	remaining: 78.8ms
84:	learn: 20.9488320	total: 418ms	remaining: 73.8ms
85:	learn: 20.8504255	total: 422ms	remaining: 68.8ms
86:	learn: 20.7848510	total: 427ms	remaining: 63.8ms
87:	learn: 20.7247442	total: 432ms	remaining: 58.8ms
88:	learn: 20.5698590	total: 436ms	remaining: 53.9ms
89:	learn: 20.4067620	total: 441ms	remaining: 49ms
90:	learn: 20.3062482	total: 445ms	remaining: 44ms
91:	learn: 20.2029696	total: 450ms	remaining: 39.1ms
92:	learn: 20.1384849	total: 454ms	remaining: 34.2ms
93:	learn: 20.0260709	total: 459ms	remaining: 29.3ms
94:	learn: 19.9122100	total: 466ms	remaining: 24.5ms
95:	learn: 19.8648487	total: 473ms	remaining: 19.7ms
96:	learn: 19.8207072	total: 482ms	remaining: 14.9ms
97:	learn: 19.7261189	total: 489ms	remaining: 9.98ms
98:	learn: 19.7042438	total: 497ms	remaining: 5.02ms
99:	learn: 19.6546645	total: 502ms	remaining: 0us
0:	learn: 47.0239288	total: 4.82ms	remaining: 477ms
1:	learn: 46.2253829	total: 8.88ms	remaining: 435ms
2:	learn: 45.5580301	total: 12.8ms	remaining: 414ms
3:	learn: 44.7273237	total: 16.8ms	remaining: 404ms
4:	learn: 43.8867421	total: 21.1ms	remaining: 402ms
5:	learn: 43.3615911	total: 25.4ms	remaining: 398ms
6:	learn: 42.8548390	total: 29.4ms	remaining: 391ms
7:	learn: 42.1606758	total: 33.1ms	remaining: 381ms
8:	learn: 41.6625870	total: 37.4ms	remaining: 378ms
9:	learn: 40.9497092	total: 41.4ms	remaining: 372ms
10:	learn: 40.1886318	total: 45.5ms	remaining: 368ms
11:	learn: 39.7456423	total: 49.8ms	remaining: 366ms
12:	learn: 39.1171373	total: 53.6ms	remaining: 359ms
13:	learn: 38.5451069	total: 57.6ms	remaining: 354ms
14:	learn: 38.0155834	total: 61.6ms	remaining: 349ms
15:	learn: 37.5631354	total: 66.1ms	remaining: 347ms
16:	learn: 37.1030023	total: 70.5ms	remaining: 344ms
17:	learn: 36.4563029	total: 75ms	remaining: 342ms
18:	learn: 36.0160976	total: 79.3ms	remaining: 338ms
19:	learn: 35.5079827	total: 83.8ms	remaining: 335ms
20:	learn: 35.2111885	total: 88.1ms	remaining: 331ms
21:	learn: 34.9397465	total: 92.5ms	remaining: 328ms
22:	learn: 34.5270048	total: 96.8ms	remaining: 324ms
23:	learn: 34.0169260	total: 103ms	remaining: 326ms
24:	learn: 33.7454892	total: 111ms	remaining: 332ms
25:	learn: 33.2648157	total: 118ms	remaining: 337ms
26:	learn: 32.8899427	total: 127ms	remaining: 342ms
27:	learn: 32.6185050	total: 134ms	remaining: 345ms
28:	learn: 32.3528531	total: 139ms	remaining: 341ms
29:	learn: 32.0859923	total: 144ms	remaining: 337ms
30:	learn: 31.6511144	total: 149ms	remaining: 333ms
31:	learn: 31.2571765	total: 155ms	remaining: 329ms
32:	learn: 30.9770049	total: 160ms	remaining: 325ms
33:	learn: 30.6084872	total: 165ms	remaining: 321ms
34:	learn: 30.3448632	total: 170ms	remaining: 316ms
35:	learn: 30.0360942	total: 175ms	remaining: 312ms
36:	learn: 29.6648968	total: 181ms	remaining: 308ms
37:	learn: 29.3165114	total: 185ms	remaining: 302ms
38:	learn: 29.0829198	total: 190ms	remaining: 297ms
39:	learn: 28.7752064	total: 194ms	remaining: 292ms
40:	learn: 28.3622191	total: 199ms	remaining: 286ms
41:	learn: 28.1346631	total: 205ms	remaining: 283ms
42:	learn: 27.9585719	total: 210ms	remaining: 278ms
43:	learn: 27.6565566	total: 214ms	remaining: 272ms
44:	learn: 27.3616172	total: 217ms	remaining: 266ms
45:	learn: 27.0658637	total: 221ms	remaining: 260ms
46:	learn: 26.8660382	total: 225ms	remaining: 254ms
47:	learn: 26.6536078	total: 229ms	remaining: 248ms
48:	learn: 26.3524440	total: 233ms	remaining: 243ms
49:	learn: 26.1595277	total: 237ms	remaining: 237ms
50:	learn: 25.9273523	total: 241ms	remaining: 232ms
51:	learn: 25.7195580	total: 246ms	remaining: 227ms
52:	learn: 25.5730225	total: 250ms	remaining: 222ms
53:	learn: 25.3455276	total: 254ms	remaining: 216ms
54:	learn: 25.2289675	total: 258ms	remaining: 211ms
55:	learn: 25.0133024	total: 262ms	remaining: 206ms
56:	learn: 24.8406714	total: 267ms	remaining: 201ms
57:	learn: 24.6367857	total: 271ms	remaining: 197ms
58:	learn: 24.5338177	total: 276ms	remaining: 192ms
59:	learn: 24.3799964	total: 280ms	remaining: 187ms
60:	learn: 24.1447492	total: 285ms	remaining: 182ms
61:	learn: 23.9880495	total: 289ms	remaining: 177ms
62:	learn: 23.7140630	total: 294ms	remaining: 173ms
63:	learn: 23.5003791	total: 300ms	remaining: 169ms
64:	learn: 23.3207645	total: 308ms	remaining: 166ms
65:	learn: 23.1958356	total: 315ms	remaining: 162ms
66:	learn: 23.0471302	total: 323ms	remaining: 159ms
67:	learn: 22.8977183	total: 330ms	remaining: 156ms
68:	learn: 22.7187400	total: 336ms	remaining: 151ms
69:	learn: 22.6523405	total: 342ms	remaining: 146ms
70:	learn: 22.4767453	total: 347ms	remaining: 142ms
71:	learn: 22.3243677	total: 352ms	remaining: 137ms
72:	learn: 22.2133096	total: 357ms	remaining: 132ms
73:	learn: 22.1151713	total: 362ms	remaining: 127ms
74:	learn: 22.0296666	total: 367ms	remaining: 122ms
75:	learn: 21.9195980	total: 372ms	remaining: 117ms
76:	learn: 21.8401730	total: 377ms	remaining: 113ms
77:	learn: 21.8079797	total: 382ms	remaining: 108ms
78:	learn: 21.7274109	total: 387ms	remaining: 103ms
79:	learn: 21.6663032	total: 392ms	remaining: 97.9ms
80:	learn: 21.5633117	total: 397ms	remaining: 93.1ms
81:	learn: 21.4542467	total: 402ms	remaining: 88.3ms
82:	learn: 21.3177957	total: 406ms	remaining: 83.2ms
83:	learn: 21.1289167	total: 410ms	remaining: 78.1ms
84:	learn: 21.0297368	total: 414ms	remaining: 73ms
85:	learn: 20.9089564	total: 418ms	remaining: 68ms
86:	learn: 20.7653988	total: 422ms	remaining: 63ms
87:	learn: 20.6521894	total: 426ms	remaining: 58.1ms
88:	learn: 20.5193021	total: 430ms	remaining: 53.1ms
89:	learn: 20.4361620	total: 434ms	remaining: 48.2ms
90:	learn: 20.3546710	total: 437ms	remaining: 43.3ms
91:	learn: 20.2513296	total: 441ms	remaining: 38.4ms
92:	learn: 20.1605550	total: 446ms	remaining: 33.6ms
93:	learn: 20.0515942	total: 450ms	remaining: 28.7ms
94:	learn: 19.9800764	total: 454ms	remaining: 23.9ms
95:	learn: 19.8996532	total: 458ms	remaining: 19.1ms
96:	learn: 19.8450910	total: 463ms	remaining: 14.3ms
97:	learn: 19.7887346	total: 467ms	remaining: 9.53ms
98:	learn: 19.7230872	total: 472ms	remaining: 4.76ms
99:	learn: 19.6328825	total: 476ms	remaining: 0us
0:	learn: 27.5585353	total: 5.42ms	remaining: 537ms
1:	learn: 27.1656995	total: 10.6ms	remaining: 521ms
2:	learn: 26.8590175	total: 15.8ms	remaining: 510ms
3:	learn: 26.5818406	total: 20.6ms	remaining: 496ms
4:	learn: 26.1148663	total: 38.3ms	remaining: 727ms
5:	learn: 25.7690484	total: 42.4ms	remaining: 664ms
6:	learn: 25.3489206	total: 47.7ms	remaining: 633ms
7:	learn: 24.9542406	total: 53.1ms	remaining: 611ms
8:	learn: 24.6777517	total: 58ms	remaining: 587ms
9:	learn: 24.3242344	total: 62.1ms	remaining: 559ms
10:	learn: 24.0383073	total: 66.1ms	remaining: 535ms
11:	learn: 23.7383420	total: 69.9ms	remaining: 513ms
12:	learn: 23.3461670	total: 73.8ms	remaining: 494ms
13:	learn: 23.0928636	total: 77.6ms	remaining: 477ms
14:	learn: 22.8770414	total: 81.4ms	remaining: 461ms
15:	learn: 22.6323214	total: 85.6ms	remaining: 449ms
16:	learn: 22.3597072	total: 90ms	remaining: 439ms
17:	learn: 22.1079813	total: 93.9ms	remaining: 428ms
18:	learn: 21.8421199	total: 98ms	remaining: 418ms
19:	learn: 21.6576508	total: 102ms	remaining: 409ms
20:	learn: 21.4301268	total: 106ms	remaining: 398ms
21:	learn: 21.2287388	total: 110ms	remaining: 390ms
22:	learn: 21.0553872	total: 114ms	remaining: 382ms
23:	learn: 20.8977091	total: 119ms	remaining: 376ms
24:	learn: 20.6619051	total: 123ms	remaining: 368ms
25:	learn: 20.5040955	total: 127ms	remaining: 361ms
26:	learn: 20.3181195	total: 132ms	remaining: 356ms
27:	learn: 20.0869436	total: 136ms	remaining: 351ms
28:	learn: 19.9375985	total: 141ms	remaining: 345ms
29:	learn: 19.8247516	total: 145ms	remaining: 339ms
30:	learn: 19.6261697	total: 150ms	remaining: 334ms
31:	learn: 19.4547236	total: 155ms	remaining: 329ms
32:	learn: 19.3157092	total: 159ms	remaining: 323ms
33:	learn: 19.1561419	total: 164ms	remaining: 318ms
34:	learn: 19.0453620	total: 169ms	remaining: 314ms
35:	learn: 18.8738574	total: 177ms	remaining: 314ms
36:	learn: 18.7072907	total: 184ms	remaining: 313ms
37:	learn: 18.5877943	total: 192ms	remaining: 313ms
38:	learn: 18.4436380	total: 198ms	remaining: 309ms
39:	learn: 18.3463356	total: 204ms	remaining: 307ms
40:	learn: 18.2008059	total: 209ms	remaining: 301ms
41:	learn: 18.0582079	total: 215ms	remaining: 296ms
42:	learn: 17.8891982	total: 220ms	remaining: 291ms
43:	learn: 17.7332246	total: 225ms	remaining: 286ms
44:	learn: 17.6206421	total: 230ms	remaining: 281ms
45:	learn: 17.4982800	total: 235ms	remaining: 276ms
46:	learn: 17.3970150	total: 241ms	remaining: 271ms
47:	learn: 17.3058203	total: 246ms	remaining: 266ms
48:	learn: 17.1789256	total: 251ms	remaining: 261ms
49:	learn: 17.0916229	total: 256ms	remaining: 256ms
50:	learn: 16.9859820	total: 260ms	remaining: 250ms
51:	learn: 16.8995582	total: 265ms	remaining: 245ms
52:	learn: 16.8137014	total: 271ms	remaining: 240ms
53:	learn: 16.7021451	total: 275ms	remaining: 235ms
54:	learn: 16.5895582	total: 280ms	remaining: 229ms
55:	learn: 16.5015639	total: 284ms	remaining: 223ms
56:	learn: 16.4356637	total: 288ms	remaining: 217ms
57:	learn: 16.3514525	total: 293ms	remaining: 212ms
58:	learn: 16.2401369	total: 297ms	remaining: 207ms
59:	learn: 16.1293223	total: 301ms	remaining: 201ms
60:	learn: 16.0271167	total: 306ms	remaining: 195ms
61:	learn: 15.9126257	total: 310ms	remaining: 190ms
62:	learn: 15.8391096	total: 315ms	remaining: 185ms
63:	learn: 15.7441773	total: 319ms	remaining: 180ms
64:	learn: 15.6885195	total: 323ms	remaining: 174ms
65:	learn: 15.6052039	total: 328ms	remaining: 169ms
66:	learn: 15.5074202	total: 332ms	remaining: 164ms
67:	learn: 15.4054338	total: 337ms	remaining: 159ms
68:	learn: 15.2885714	total: 342ms	remaining: 154ms
69:	learn: 15.2157472	total: 347ms	remaining: 149ms
70:	learn: 15.1031554	total: 351ms	remaining: 144ms
71:	learn: 15.0237470	total: 356ms	remaining: 138ms
72:	learn: 14.9756825	total: 360ms	remaining: 133ms
73:	learn: 14.8840596	total: 366ms	remaining: 128ms
74:	learn: 14.8077061	total: 374ms	remaining: 125ms
75:	learn: 14.7444437	total: 382ms	remaining: 121ms
76:	learn: 14.6751720	total: 391ms	remaining: 117ms
77:	learn: 14.5830333	total: 397ms	remaining: 112ms
78:	learn: 14.5241206	total: 403ms	remaining: 107ms
79:	learn: 14.4892731	total: 408ms	remaining: 102ms
80:	learn: 14.4256605	total: 413ms	remaining: 97ms
81:	learn: 14.3666860	total: 419ms	remaining: 92ms
82:	learn: 14.2938372	total: 425ms	remaining: 87.1ms
83:	learn: 14.2161532	total: 431ms	remaining: 82.2ms
84:	learn: 14.1582910	total: 437ms	remaining: 77.1ms
85:	learn: 14.1029153	total: 443ms	remaining: 72.1ms
86:	learn: 14.0475835	total: 449ms	remaining: 67ms
87:	learn: 13.9892661	total: 454ms	remaining: 61.9ms
88:	learn: 13.9481628	total: 459ms	remaining: 56.7ms
89:	learn: 13.8483991	total: 463ms	remaining: 51.5ms
90:	learn: 13.7775614	total: 469ms	remaining: 46.4ms
91:	learn: 13.7304585	total: 475ms	remaining: 41.3ms
92:	learn: 13.6783381	total: 480ms	remaining: 36.1ms
93:	learn: 13.6356964	total: 485ms	remaining: 30.9ms
94:	learn: 13.5924371	total: 489ms	remaining: 25.7ms
95:	learn: 13.5400746	total: 493ms	remaining: 20.5ms
96:	learn: 13.4897333	total: 497ms	remaining: 15.4ms
97:	learn: 13.4470321	total: 501ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 505ms	remaining: 5.11ms
99:	learn: 13.3082371	total: 510ms	remaining: 0us
0:	learn: 43.0395283	total: 5.24ms	remaining: 519ms
1:	learn: 42.1130223	total: 9.94ms	remaining: 487ms
2:	learn: 41.1753409	total: 17.7ms	remaining: 573ms
3:	learn: 40.3637444	total: 25.5ms	remaining: 611ms
4:	learn: 39.6508088	total: 34.5ms	remaining: 655ms
5:	learn: 38.7217934	total: 41.5ms	remaining: 651ms
6:	learn: 37.8538055	total: 46.9ms	remaining: 624ms
7:	learn: 36.9793574	total: 52ms	remaining: 598ms
8:	learn: 36.3076984	total: 57.1ms	remaining: 577ms
9:	learn: 35.6673160	total: 61.7ms	remaining: 555ms
10:	learn: 34.8889800	total: 70.6ms	remaining: 571ms
11:	learn: 34.1675517	total: 75.5ms	remaining: 554ms
12:	learn: 33.6779564	total: 81ms	remaining: 542ms
13:	learn: 33.0710039	total: 86.3ms	remaining: 530ms
14:	learn: 32.4966674	total: 91.1ms	remaining: 516ms
15:	learn: 31.9492856	total: 96ms	remaining: 504ms
16:	learn: 31.5108129	total: 100ms	remaining: 489ms
17:	learn: 30.9804023	total: 106ms	remaining: 483ms
18:	learn: 30.4169089	total: 111ms	remaining: 475ms
19:	learn: 29.8930375	total: 116ms	remaining: 464ms
20:	learn: 29.3974421	total: 120ms	remaining: 452ms
21:	learn: 28.8792307	total: 124ms	remaining: 441ms
22:	learn: 28.3894474	total: 128ms	remaining: 429ms
23:	learn: 27.9921276	total: 132ms	remaining: 419ms
24:	learn: 27.6158887	total: 136ms	remaining: 408ms
25:	learn: 27.2866950	total: 140ms	remaining: 399ms
26:	learn: 26.8770708	total: 144ms	remaining: 390ms
27:	learn: 26.6233005	total: 148ms	remaining: 381ms
28:	learn: 26.2921934	total: 152ms	remaining: 373ms
29:	learn: 25.9156920	total: 157ms	remaining: 366ms
30:	learn: 25.5311106	total: 158ms	remaining: 352ms
31:	learn: 25.2178997	total: 162ms	remaining: 345ms
32:	learn: 24.8572196	total: 166ms	remaining: 337ms
33:	learn: 24.5849710	total: 170ms	remaining: 330ms
34:	learn: 24.2209190	total: 174ms	remaining: 323ms
35:	learn: 23.8708250	total: 178ms	remaining: 317ms
36:	learn: 23.5325279	total: 182ms	remaining: 310ms
37:	learn: 23.2116148	total: 186ms	remaining: 303ms
38:	learn: 22.9696787	total: 190ms	remaining: 297ms
39:	learn: 22.7936783	total: 194ms	remaining: 291ms
40:	learn: 22.6228847	total: 198ms	remaining: 285ms
41:	learn: 22.3691527	total: 202ms	remaining: 279ms
42:	learn: 22.1002173	total: 206ms	remaining: 273ms
43:	learn: 21.9157268	total: 210ms	remaining: 268ms
44:	learn: 21.7229102	total: 215ms	remaining: 262ms
45:	learn: 21.4642005	total: 219ms	remaining: 257ms
46:	learn: 21.3029442	total: 222ms	remaining: 251ms
47:	learn: 21.1469792	total: 227ms	remaining: 246ms
48:	learn: 20.9458235	total: 232ms	remaining: 241ms
49:	learn: 20.7335242	total: 236ms	remaining: 236ms
50:	learn: 20.5440269	total: 240ms	remaining: 231ms
51:	learn: 20.3661449	total: 245ms	remaining: 226ms
52:	learn: 20.2158134	total: 250ms	remaining: 221ms
53:	learn: 19.9934873	total: 254ms	remaining: 216ms
54:	learn: 19.7879739	total: 258ms	remaining: 211ms
55:	learn: 19.6630460	total: 273ms	remaining: 214ms
56:	learn: 19.5152729	total: 281ms	remaining: 212ms
57:	learn: 19.3581128	total: 288ms	remaining: 208ms
58:	learn: 19.2209303	total: 295ms	remaining: 205ms
59:	learn: 19.0965248	total: 300ms	remaining: 200ms
60:	learn: 19.0035954	total: 305ms	remaining: 195ms
61:	learn: 18.8554149	total: 310ms	remaining: 190ms
62:	learn: 18.7095427	total: 315ms	remaining: 185ms
63:	learn: 18.5751494	total: 321ms	remaining: 180ms
64:	learn: 18.4678251	total: 326ms	remaining: 176ms
65:	learn: 18.3500325	total: 331ms	remaining: 171ms
66:	learn: 18.2088983	total: 336ms	remaining: 166ms
67:	learn: 18.0737705	total: 341ms	remaining: 161ms
68:	learn: 17.9325058	total: 346ms	remaining: 156ms
69:	learn: 17.8003911	total: 351ms	remaining: 150ms
70:	learn: 17.7385366	total: 356ms	remaining: 145ms
71:	learn: 17.6106998	total: 361ms	remaining: 140ms
72:	learn: 17.4816270	total: 366ms	remaining: 136ms
73:	learn: 17.4025554	total: 370ms	remaining: 130ms
74:	learn: 17.2902108	total: 374ms	remaining: 125ms
75:	learn: 17.2158048	total: 378ms	remaining: 119ms
76:	learn: 17.1261053	total: 382ms	remaining: 114ms
77:	learn: 17.0308917	total: 386ms	remaining: 109ms
78:	learn: 16.9546705	total: 390ms	remaining: 104ms
79:	learn: 16.8319165	total: 394ms	remaining: 98.5ms
80:	learn: 16.7687017	total: 398ms	remaining: 93.4ms
81:	learn: 16.6972326	total: 402ms	remaining: 88.3ms
82:	learn: 16.6124580	total: 407ms	remaining: 83.3ms
83:	learn: 16.4999052	total: 411ms	remaining: 78.3ms
84:	learn: 16.4302484	total: 415ms	remaining: 73.2ms
85:	learn: 16.3201363	total: 419ms	remaining: 68.2ms
86:	learn: 16.2534314	total: 423ms	remaining: 63.2ms
87:	learn: 16.1720485	total: 428ms	remaining: 58.4ms
88:	learn: 16.0625751	total: 433ms	remaining: 53.5ms
89:	learn: 15.9135088	total: 438ms	remaining: 48.7ms
90:	learn: 15.8658863	total: 442ms	remaining: 43.8ms
91:	learn: 15.8066805	total: 447ms	remaining: 38.9ms
92:	learn: 15.7412103	total: 452ms	remaining: 34ms
93:	learn: 15.6542776	total: 456ms	remaining: 29.1ms
94:	learn: 15.5760334	total: 463ms	remaining: 24.3ms
95:	learn: 15.5434131	total: 470ms	remaining: 19.6ms
96:	learn: 15.4709561	total: 478ms	remaining: 14.8ms
97:	learn: 15.4449618	total: 485ms	remaining: 9.9ms
98:	learn: 15.3752761	total: 493ms	remaining: 4.98ms
99:	learn: 15.3106595	total: 498ms	remaining: 0us
0:	learn: 46.7142257	total: 16.2ms	remaining: 1.6s
1:	learn: 45.7634153	total: 20.6ms	remaining: 1.01s
2:	learn: 45.0054253	total: 24.7ms	remaining: 800ms
3:	learn: 44.2120432	total: 29ms	remaining: 696ms
4:	learn: 43.3960472	total: 33.6ms	remaining: 638ms
5:	learn: 42.8588120	total: 37.9ms	remaining: 594ms
6:	learn: 41.9533701	total: 42.1ms	remaining: 559ms
7:	learn: 41.2745030	total: 46.3ms	remaining: 533ms
8:	learn: 40.6797495	total: 50.7ms	remaining: 513ms
9:	learn: 39.9899571	total: 55.5ms	remaining: 500ms
10:	learn: 39.4682100	total: 59.8ms	remaining: 484ms
11:	learn: 39.0305595	total: 64.5ms	remaining: 473ms
12:	learn: 38.4200417	total: 69.2ms	remaining: 463ms
13:	learn: 37.8425194	total: 73.6ms	remaining: 452ms
14:	learn: 37.4203127	total: 77.8ms	remaining: 441ms
15:	learn: 36.9917688	total: 82.5ms	remaining: 433ms
16:	learn: 36.5544138	total: 87.5ms	remaining: 427ms
17:	learn: 36.0727019	total: 92.2ms	remaining: 420ms
18:	learn: 35.4835715	total: 97ms	remaining: 413ms
19:	learn: 34.9865654	total: 102ms	remaining: 407ms
20:	learn: 34.6063373	total: 107ms	remaining: 403ms
21:	learn: 34.0997289	total: 112ms	remaining: 396ms
22:	learn: 33.7313171	total: 120ms	remaining: 400ms
23:	learn: 33.3582000	total: 127ms	remaining: 404ms
24:	learn: 32.9432456	total: 139ms	remaining: 416ms
25:	learn: 32.5220888	total: 146ms	remaining: 416ms
26:	learn: 32.2172292	total: 152ms	remaining: 412ms
27:	learn: 31.8972904	total: 158ms	remaining: 405ms
28:	learn: 31.6405350	total: 163ms	remaining: 399ms
29:	learn: 31.4167702	total: 168ms	remaining: 392ms
30:	learn: 30.8541961	total: 170ms	remaining: 379ms
31:	learn: 30.5572111	total: 176ms	remaining: 374ms
32:	learn: 30.1700399	total: 181ms	remaining: 368ms
33:	learn: 29.8537271	total: 187ms	remaining: 363ms
34:	learn: 29.6192540	total: 204ms	remaining: 380ms
35:	learn: 29.3276362	total: 210ms	remaining: 374ms
36:	learn: 28.9985179	total: 215ms	remaining: 366ms
37:	learn: 28.7046880	total: 219ms	remaining: 358ms
38:	learn: 28.4412677	total: 224ms	remaining: 350ms
39:	learn: 28.1277292	total: 229ms	remaining: 343ms
40:	learn: 27.9000750	total: 233ms	remaining: 336ms
41:	learn: 27.5433162	total: 238ms	remaining: 329ms
42:	learn: 27.2493285	total: 242ms	remaining: 321ms
43:	learn: 26.9576632	total: 244ms	remaining: 311ms
44:	learn: 26.6177110	total: 248ms	remaining: 304ms
45:	learn: 26.2812456	total: 253ms	remaining: 297ms
46:	learn: 26.0803859	total: 257ms	remaining: 290ms
47:	learn: 25.9543581	total: 262ms	remaining: 284ms
48:	learn: 25.7951582	total: 266ms	remaining: 277ms
49:	learn: 25.6548184	total: 271ms	remaining: 271ms
50:	learn: 25.4010843	total: 275ms	remaining: 265ms
51:	learn: 24.9773937	total: 281ms	remaining: 259ms
52:	learn: 24.8026156	total: 285ms	remaining: 253ms
53:	learn: 24.5568053	total: 290ms	remaining: 247ms
54:	learn: 24.2281839	total: 296ms	remaining: 242ms
55:	learn: 23.9202795	total: 301ms	remaining: 236ms
56:	learn: 23.7625591	total: 306ms	remaining: 231ms
57:	learn: 23.5429721	total: 311ms	remaining: 225ms
58:	learn: 23.3175893	total: 319ms	remaining: 222ms
59:	learn: 23.2035130	total: 330ms	remaining: 220ms
60:	learn: 23.0232450	total: 340ms	remaining: 217ms
61:	learn: 22.8384958	total: 354ms	remaining: 217ms
62:	learn: 22.6499902	total: 359ms	remaining: 211ms
63:	learn: 22.4577426	total: 365ms	remaining: 205ms
64:	learn: 22.3333158	total: 370ms	remaining: 199ms
65:	learn: 22.2064131	total: 376ms	remaining: 194ms
66:	learn: 22.1434971	total: 382ms	remaining: 188ms
67:	learn: 21.9596519	total: 388ms	remaining: 183ms
68:	learn: 21.8475576	total: 394ms	remaining: 177ms
69:	learn: 21.6954745	total: 399ms	remaining: 171ms
70:	learn: 21.5635976	total: 404ms	remaining: 165ms
71:	learn: 21.4588506	total: 409ms	remaining: 159ms
72:	learn: 21.3527268	total: 415ms	remaining: 154ms
73:	learn: 21.2661288	total: 432ms	remaining: 152ms
74:	learn: 21.1817333	total: 436ms	remaining: 145ms
75:	learn: 21.0527553	total: 440ms	remaining: 139ms
76:	learn: 20.9229021	total: 444ms	remaining: 133ms
77:	learn: 20.7563946	total: 448ms	remaining: 126ms
78:	learn: 20.6569831	total: 453ms	remaining: 120ms
79:	learn: 20.4982663	total: 456ms	remaining: 114ms
80:	learn: 20.3185460	total: 461ms	remaining: 108ms
81:	learn: 20.2096241	total: 464ms	remaining: 102ms
82:	learn: 20.1274891	total: 469ms	remaining: 96ms
83:	learn: 20.0740139	total: 473ms	remaining: 90ms
84:	learn: 19.9630699	total: 478ms	remaining: 84.3ms
85:	learn: 19.8753899	total: 483ms	remaining: 78.5ms
86:	learn: 19.6563612	total: 487ms	remaining: 72.8ms
87:	learn: 19.4680232	total: 492ms	remaining: 67.1ms
88:	learn: 19.3503431	total: 496ms	remaining: 61.4ms
89:	learn: 19.2221379	total: 501ms	remaining: 55.6ms
90:	learn: 19.0732542	total: 505ms	remaining: 50ms
91:	learn: 18.9825190	total: 510ms	remaining: 44.3ms
92:	learn: 18.8839009	total: 517ms	remaining: 38.9ms
93:	learn: 18.8012219	total: 525ms	remaining: 33.5ms
94:	learn: 18.7172713	total: 534ms	remaining: 28.1ms
95:	learn: 18.6201170	total: 540ms	remaining: 22.5ms
96:	learn: 18.5318611	total: 547ms	remaining: 16.9ms
97:	learn: 18.3833356	total: 552ms	remaining: 11.3ms
98:	learn: 18.3289700	total: 558ms	remaining: 5.63ms
99:	learn: 18.2227333	total: 563ms	remaining: 0us
0:	learn: 46.3764524	total: 4.5ms	remaining: 445ms
1:	learn: 45.5561269	total: 8.32ms	remaining: 408ms
2:	learn: 44.8811245	total: 12.3ms	remaining: 397ms
3:	learn: 44.0788617	total: 16ms	remaining: 384ms
4:	learn: 43.3619790	total: 20.2ms	remaining: 384ms
5:	learn: 42.6912112	total: 24.7ms	remaining: 387ms
6:	learn: 42.2292118	total: 29.5ms	remaining: 392ms
7:	learn: 41.7725191	total: 34ms	remaining: 391ms
8:	learn: 41.1676614	total: 38.3ms	remaining: 388ms
9:	learn: 40.5771076	total: 42.8ms	remaining: 385ms
10:	learn: 39.8343757	total: 47.4ms	remaining: 384ms
11:	learn: 39.3761142	total: 51.5ms	remaining: 378ms
12:	learn: 38.5254692	total: 56.2ms	remaining: 376ms
13:	learn: 37.9629555	total: 60.2ms	remaining: 370ms
14:	learn: 37.4418438	total: 63.9ms	remaining: 362ms
15:	learn: 37.0507283	total: 67.8ms	remaining: 356ms
16:	learn: 36.6264217	total: 72.5ms	remaining: 354ms
17:	learn: 36.1114940	total: 76.7ms	remaining: 350ms
18:	learn: 35.7193862	total: 81.4ms	remaining: 347ms
19:	learn: 35.3301177	total: 86.2ms	remaining: 345ms
20:	learn: 35.0598280	total: 90.9ms	remaining: 342ms
21:	learn: 34.5469736	total: 95.7ms	remaining: 339ms
22:	learn: 34.2064215	total: 100ms	remaining: 335ms
23:	learn: 33.7280710	total: 105ms	remaining: 331ms
24:	learn: 33.3282940	total: 113ms	remaining: 338ms
25:	learn: 32.8478961	total: 120ms	remaining: 341ms
26:	learn: 32.5722164	total: 130ms	remaining: 353ms
27:	learn: 32.2457019	total: 138ms	remaining: 356ms
28:	learn: 31.9230495	total: 144ms	remaining: 352ms
29:	learn: 31.4311611	total: 149ms	remaining: 348ms
30:	learn: 30.9179052	total: 154ms	remaining: 343ms
31:	learn: 30.6201141	total: 159ms	remaining: 338ms
32:	learn: 30.3421106	total: 164ms	remaining: 333ms
33:	learn: 29.9885373	total: 169ms	remaining: 329ms
34:	learn: 29.7462780	total: 174ms	remaining: 324ms
35:	learn: 29.3607153	total: 180ms	remaining: 319ms
36:	learn: 29.1793078	total: 185ms	remaining: 314ms
37:	learn: 28.9276538	total: 189ms	remaining: 309ms
38:	learn: 28.6903934	total: 194ms	remaining: 304ms
39:	learn: 28.2095033	total: 199ms	remaining: 298ms
40:	learn: 27.7990608	total: 204ms	remaining: 293ms
41:	learn: 27.5406632	total: 209ms	remaining: 289ms
42:	learn: 27.2575376	total: 214ms	remaining: 284ms
43:	learn: 26.9741707	total: 218ms	remaining: 278ms
44:	learn: 26.6606899	total: 222ms	remaining: 271ms
45:	learn: 26.4015833	total: 226ms	remaining: 265ms
46:	learn: 26.1828993	total: 230ms	remaining: 259ms
47:	learn: 26.0233709	total: 233ms	remaining: 252ms
48:	learn: 25.9300399	total: 237ms	remaining: 247ms
49:	learn: 25.5861489	total: 241ms	remaining: 241ms
50:	learn: 25.4322012	total: 245ms	remaining: 236ms
51:	learn: 25.1595644	total: 249ms	remaining: 230ms
52:	learn: 24.9955303	total: 253ms	remaining: 225ms
53:	learn: 24.7273966	total: 257ms	remaining: 219ms
54:	learn: 24.5747978	total: 261ms	remaining: 214ms
55:	learn: 24.3807977	total: 266ms	remaining: 209ms
56:	learn: 24.1689569	total: 270ms	remaining: 203ms
57:	learn: 23.9898221	total: 273ms	remaining: 198ms
58:	learn: 23.7566414	total: 278ms	remaining: 193ms
59:	learn: 23.6641165	total: 282ms	remaining: 188ms
60:	learn: 23.5658066	total: 287ms	remaining: 183ms
61:	learn: 23.4338851	total: 291ms	remaining: 179ms
62:	learn: 23.2408837	total: 296ms	remaining: 174ms
63:	learn: 23.0642038	total: 300ms	remaining: 169ms
64:	learn: 22.9032045	total: 304ms	remaining: 164ms
65:	learn: 22.7736138	total: 309ms	remaining: 159ms
66:	learn: 22.6836443	total: 315ms	remaining: 155ms
67:	learn: 22.5983654	total: 322ms	remaining: 152ms
68:	learn: 22.4419813	total: 330ms	remaining: 148ms
69:	learn: 22.2863339	total: 338ms	remaining: 145ms
70:	learn: 22.1792943	total: 345ms	remaining: 141ms
71:	learn: 22.1130574	total: 351ms	remaining: 136ms
72:	learn: 21.9858161	total: 356ms	remaining: 132ms
73:	learn: 21.8577784	total: 361ms	remaining: 127ms
74:	learn: 21.7845222	total: 366ms	remaining: 122ms
75:	learn: 21.6831390	total: 371ms	remaining: 117ms
76:	learn: 21.6292521	total: 376ms	remaining: 112ms
77:	learn: 21.5789330	total: 381ms	remaining: 107ms
78:	learn: 21.5420942	total: 386ms	remaining: 103ms
79:	learn: 21.4280939	total: 391ms	remaining: 97.8ms
80:	learn: 21.3641165	total: 396ms	remaining: 92.9ms
81:	learn: 21.2734814	total: 401ms	remaining: 88ms
82:	learn: 21.2220323	total: 406ms	remaining: 83.2ms
83:	learn: 21.0625792	total: 411ms	remaining: 78.4ms
84:	learn: 20.9488320	total: 417ms	remaining: 73.5ms
85:	learn: 20.8504255	total: 421ms	remaining: 68.5ms
86:	learn: 20.7848510	total: 424ms	remaining: 63.4ms
87:	learn: 20.7247442	total: 428ms	remaining: 58.4ms
88:	learn: 20.5698590	total: 432ms	remaining: 53.4ms
89:	learn: 20.4067620	total: 436ms	remaining: 48.5ms
90:	learn: 20.3062482	total: 440ms	remaining: 43.5ms
91:	learn: 20.2029696	total: 445ms	remaining: 38.7ms
92:	learn: 20.1384849	total: 449ms	remaining: 33.8ms
93:	learn: 20.0260709	total: 453ms	remaining: 28.9ms
94:	learn: 19.9122100	total: 458ms	remaining: 24.1ms
95:	learn: 19.8648487	total: 462ms	remaining: 19.2ms
96:	learn: 19.8207072	total: 465ms	remaining: 14.4ms
97:	learn: 19.7261189	total: 469ms	remaining: 9.58ms
98:	learn: 19.7042438	total: 474ms	remaining: 4.79ms
99:	learn: 19.6546645	total: 478ms	remaining: 0us
0:	learn: 47.0239288	total: 4.71ms	remaining: 467ms
1:	learn: 46.2253829	total: 9.76ms	remaining: 478ms
2:	learn: 45.5580301	total: 18.1ms	remaining: 587ms
3:	learn: 44.7273237	total: 25.4ms	remaining: 609ms
4:	learn: 43.8867421	total: 34.1ms	remaining: 649ms
5:	learn: 43.3615911	total: 39.4ms	remaining: 617ms
6:	learn: 42.8548390	total: 46.3ms	remaining: 615ms
7:	learn: 42.1606758	total: 51.5ms	remaining: 593ms
8:	learn: 41.6625870	total: 56.5ms	remaining: 571ms
9:	learn: 40.9497092	total: 61.6ms	remaining: 555ms
10:	learn: 40.1886318	total: 66.7ms	remaining: 540ms
11:	learn: 39.7456423	total: 72ms	remaining: 528ms
12:	learn: 39.1171373	total: 77.1ms	remaining: 516ms
13:	learn: 38.5451069	total: 82.1ms	remaining: 504ms
14:	learn: 38.0155834	total: 87.5ms	remaining: 496ms
15:	learn: 37.5631354	total: 92.8ms	remaining: 487ms
16:	learn: 37.1030023	total: 98.1ms	remaining: 479ms
17:	learn: 36.4563029	total: 103ms	remaining: 470ms
18:	learn: 36.0160976	total: 108ms	remaining: 461ms
19:	learn: 35.5079827	total: 114ms	remaining: 454ms
20:	learn: 35.2111885	total: 119ms	remaining: 447ms
21:	learn: 34.9397465	total: 123ms	remaining: 436ms
22:	learn: 34.5270048	total: 127ms	remaining: 425ms
23:	learn: 34.0169260	total: 131ms	remaining: 416ms
24:	learn: 33.7454892	total: 136ms	remaining: 408ms
25:	learn: 33.2648157	total: 141ms	remaining: 400ms
26:	learn: 32.8899427	total: 145ms	remaining: 393ms
27:	learn: 32.6185050	total: 150ms	remaining: 386ms
28:	learn: 32.3528531	total: 155ms	remaining: 380ms
29:	learn: 32.0859923	total: 160ms	remaining: 374ms
30:	learn: 31.6511144	total: 165ms	remaining: 367ms
31:	learn: 31.2571765	total: 170ms	remaining: 360ms
32:	learn: 30.9770049	total: 175ms	remaining: 355ms
33:	learn: 30.6084872	total: 180ms	remaining: 350ms
34:	learn: 30.3448632	total: 185ms	remaining: 343ms
35:	learn: 30.0360942	total: 190ms	remaining: 337ms
36:	learn: 29.6648968	total: 194ms	remaining: 331ms
37:	learn: 29.3165114	total: 199ms	remaining: 324ms
38:	learn: 29.0829198	total: 203ms	remaining: 317ms
39:	learn: 28.7752064	total: 207ms	remaining: 311ms
40:	learn: 28.3622191	total: 212ms	remaining: 305ms
41:	learn: 28.1346631	total: 220ms	remaining: 304ms
42:	learn: 27.9585719	total: 228ms	remaining: 302ms
43:	learn: 27.6565566	total: 236ms	remaining: 300ms
44:	learn: 27.3616172	total: 243ms	remaining: 297ms
45:	learn: 27.0658637	total: 249ms	remaining: 292ms
46:	learn: 26.8660382	total: 254ms	remaining: 286ms
47:	learn: 26.6536078	total: 260ms	remaining: 281ms
48:	learn: 26.3524440	total: 265ms	remaining: 275ms
49:	learn: 26.1595277	total: 270ms	remaining: 270ms
50:	learn: 25.9273523	total: 275ms	remaining: 264ms
51:	learn: 25.7195580	total: 281ms	remaining: 259ms
52:	learn: 25.5730225	total: 286ms	remaining: 254ms
53:	learn: 25.3455276	total: 292ms	remaining: 248ms
54:	learn: 25.2289675	total: 297ms	remaining: 243ms
55:	learn: 25.0133024	total: 302ms	remaining: 237ms
56:	learn: 24.8406714	total: 306ms	remaining: 231ms
57:	learn: 24.6367857	total: 312ms	remaining: 226ms
58:	learn: 24.5338177	total: 317ms	remaining: 220ms
59:	learn: 24.3799964	total: 321ms	remaining: 214ms
60:	learn: 24.1447492	total: 325ms	remaining: 208ms
61:	learn: 23.9880495	total: 329ms	remaining: 202ms
62:	learn: 23.7140630	total: 333ms	remaining: 196ms
63:	learn: 23.5003791	total: 337ms	remaining: 189ms
64:	learn: 23.3207645	total: 341ms	remaining: 184ms
65:	learn: 23.1958356	total: 346ms	remaining: 178ms
66:	learn: 23.0471302	total: 349ms	remaining: 172ms
67:	learn: 22.8977183	total: 353ms	remaining: 166ms
68:	learn: 22.7187400	total: 357ms	remaining: 160ms
69:	learn: 22.6523405	total: 362ms	remaining: 155ms
70:	learn: 22.4767453	total: 367ms	remaining: 150ms
71:	learn: 22.3243677	total: 370ms	remaining: 144ms
72:	learn: 22.2133096	total: 374ms	remaining: 139ms
73:	learn: 22.1151713	total: 379ms	remaining: 133ms
74:	learn: 22.0296666	total: 384ms	remaining: 128ms
75:	learn: 21.9195980	total: 388ms	remaining: 122ms
76:	learn: 21.8401730	total: 392ms	remaining: 117ms
77:	learn: 21.8079797	total: 397ms	remaining: 112ms
78:	learn: 21.7274109	total: 401ms	remaining: 107ms
79:	learn: 21.6663032	total: 405ms	remaining: 101ms
80:	learn: 21.5633117	total: 410ms	remaining: 96.1ms
81:	learn: 21.4542467	total: 418ms	remaining: 91.8ms
82:	learn: 21.3177957	total: 426ms	remaining: 87.3ms
83:	learn: 21.1289167	total: 435ms	remaining: 82.9ms
84:	learn: 21.0297368	total: 441ms	remaining: 77.9ms
85:	learn: 20.9089564	total: 447ms	remaining: 72.8ms
86:	learn: 20.7653988	total: 452ms	remaining: 67.6ms
87:	learn: 20.6521894	total: 458ms	remaining: 62.4ms
88:	learn: 20.5193021	total: 463ms	remaining: 57.2ms
89:	learn: 20.4361620	total: 468ms	remaining: 52ms
90:	learn: 20.3546710	total: 473ms	remaining: 46.8ms
91:	learn: 20.2513296	total: 478ms	remaining: 41.6ms
92:	learn: 20.1605550	total: 483ms	remaining: 36.4ms
93:	learn: 20.0515942	total: 488ms	remaining: 31.2ms
94:	learn: 19.9800764	total: 493ms	remaining: 26ms
95:	learn: 19.8996532	total: 498ms	remaining: 20.8ms
96:	learn: 19.8450910	total: 503ms	remaining: 15.6ms
97:	learn: 19.7887346	total: 509ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 514ms	remaining: 5.19ms
99:	learn: 19.6328825	total: 518ms	remaining: 0us
0:	learn: 27.5585353	total: 4.76ms	remaining: 471ms
1:	learn: 27.1656995	total: 8.56ms	remaining: 419ms
2:	learn: 26.8590175	total: 13.1ms	remaining: 425ms
3:	learn: 26.5818406	total: 17.6ms	remaining: 423ms
4:	learn: 26.1148663	total: 22ms	remaining: 418ms
5:	learn: 25.7690484	total: 26.8ms	remaining: 421ms
6:	learn: 25.3489206	total: 31.5ms	remaining: 419ms
7:	learn: 24.9542406	total: 36.3ms	remaining: 418ms
8:	learn: 24.6777517	total: 41.2ms	remaining: 416ms
9:	learn: 24.3242344	total: 45.5ms	remaining: 410ms
10:	learn: 24.0383073	total: 49.7ms	remaining: 402ms
11:	learn: 23.7383420	total: 54ms	remaining: 396ms
12:	learn: 23.3461670	total: 58.8ms	remaining: 394ms
13:	learn: 23.0928636	total: 66.1ms	remaining: 406ms
14:	learn: 22.8770414	total: 73.5ms	remaining: 416ms
15:	learn: 22.6323214	total: 80.4ms	remaining: 422ms
16:	learn: 22.3597072	total: 87.2ms	remaining: 426ms
17:	learn: 22.1079813	total: 94.8ms	remaining: 432ms
18:	learn: 21.8421199	total: 99.8ms	remaining: 426ms
19:	learn: 21.6576508	total: 105ms	remaining: 419ms
20:	learn: 21.4301268	total: 110ms	remaining: 413ms
21:	learn: 21.2287388	total: 115ms	remaining: 408ms
22:	learn: 21.0553872	total: 120ms	remaining: 401ms
23:	learn: 20.8977091	total: 125ms	remaining: 395ms
24:	learn: 20.6619051	total: 130ms	remaining: 390ms
25:	learn: 20.5040955	total: 135ms	remaining: 384ms
26:	learn: 20.3181195	total: 140ms	remaining: 377ms
27:	learn: 20.0869436	total: 144ms	remaining: 371ms
28:	learn: 19.9375985	total: 149ms	remaining: 364ms
29:	learn: 19.8247516	total: 153ms	remaining: 357ms
30:	learn: 19.6261697	total: 157ms	remaining: 350ms
31:	learn: 19.4547236	total: 163ms	remaining: 347ms
32:	learn: 19.3157092	total: 169ms	remaining: 342ms
33:	learn: 19.1561419	total: 173ms	remaining: 336ms
34:	learn: 19.0453620	total: 177ms	remaining: 329ms
35:	learn: 18.8738574	total: 181ms	remaining: 322ms
36:	learn: 18.7072907	total: 185ms	remaining: 315ms
37:	learn: 18.5877943	total: 189ms	remaining: 308ms
38:	learn: 18.4436380	total: 193ms	remaining: 302ms
39:	learn: 18.3463356	total: 197ms	remaining: 296ms
40:	learn: 18.2008059	total: 201ms	remaining: 289ms
41:	learn: 18.0582079	total: 205ms	remaining: 283ms
42:	learn: 17.8891982	total: 209ms	remaining: 278ms
43:	learn: 17.7332246	total: 213ms	remaining: 272ms
44:	learn: 17.6206421	total: 217ms	remaining: 266ms
45:	learn: 17.4982800	total: 222ms	remaining: 260ms
46:	learn: 17.3970150	total: 226ms	remaining: 255ms
47:	learn: 17.3058203	total: 231ms	remaining: 250ms
48:	learn: 17.1789256	total: 236ms	remaining: 245ms
49:	learn: 17.0916229	total: 240ms	remaining: 240ms
50:	learn: 16.9859820	total: 245ms	remaining: 235ms
51:	learn: 16.8995582	total: 249ms	remaining: 230ms
52:	learn: 16.8137014	total: 254ms	remaining: 225ms
53:	learn: 16.7021451	total: 258ms	remaining: 220ms
54:	learn: 16.5895582	total: 266ms	remaining: 217ms
55:	learn: 16.5015639	total: 273ms	remaining: 215ms
56:	learn: 16.4356637	total: 283ms	remaining: 213ms
57:	learn: 16.3514525	total: 288ms	remaining: 208ms
58:	learn: 16.2401369	total: 295ms	remaining: 205ms
59:	learn: 16.1293223	total: 300ms	remaining: 200ms
60:	learn: 16.0271167	total: 305ms	remaining: 195ms
61:	learn: 15.9126257	total: 310ms	remaining: 190ms
62:	learn: 15.8391096	total: 315ms	remaining: 185ms
63:	learn: 15.7441773	total: 320ms	remaining: 180ms
64:	learn: 15.6885195	total: 326ms	remaining: 175ms
65:	learn: 15.6052039	total: 331ms	remaining: 171ms
66:	learn: 15.5074202	total: 337ms	remaining: 166ms
67:	learn: 15.4054338	total: 341ms	remaining: 161ms
68:	learn: 15.2885714	total: 346ms	remaining: 156ms
69:	learn: 15.2157472	total: 351ms	remaining: 151ms
70:	learn: 15.1031554	total: 356ms	remaining: 145ms
71:	learn: 15.0237470	total: 361ms	remaining: 140ms
72:	learn: 14.9756825	total: 366ms	remaining: 135ms
73:	learn: 14.8840596	total: 371ms	remaining: 131ms
74:	learn: 14.8077061	total: 376ms	remaining: 125ms
75:	learn: 14.7444437	total: 381ms	remaining: 120ms
76:	learn: 14.6751720	total: 386ms	remaining: 115ms
77:	learn: 14.5830333	total: 390ms	remaining: 110ms
78:	learn: 14.5241206	total: 394ms	remaining: 105ms
79:	learn: 14.4892731	total: 398ms	remaining: 99.6ms
80:	learn: 14.4256605	total: 403ms	remaining: 94.6ms
81:	learn: 14.3666860	total: 407ms	remaining: 89.4ms
82:	learn: 14.2938372	total: 412ms	remaining: 84.4ms
83:	learn: 14.2161532	total: 417ms	remaining: 79.4ms
84:	learn: 14.1582910	total: 421ms	remaining: 74.4ms
85:	learn: 14.1029153	total: 426ms	remaining: 69.4ms
86:	learn: 14.0475835	total: 431ms	remaining: 64.4ms
87:	learn: 13.9892661	total: 436ms	remaining: 59.5ms
88:	learn: 13.9481628	total: 441ms	remaining: 54.5ms
89:	learn: 13.8483991	total: 446ms	remaining: 49.5ms
90:	learn: 13.7775614	total: 450ms	remaining: 44.5ms
91:	learn: 13.7304585	total: 455ms	remaining: 39.6ms
92:	learn: 13.6783381	total: 460ms	remaining: 34.6ms
93:	learn: 13.6356964	total: 468ms	remaining: 29.8ms
94:	learn: 13.5924371	total: 475ms	remaining: 25ms
95:	learn: 13.5400746	total: 484ms	remaining: 20.1ms
96:	learn: 13.4897333	total: 490ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 497ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 502ms	remaining: 5.07ms
99:	learn: 13.3082371	total: 508ms	remaining: 0us
0:	learn: 43.0395283	total: 5.1ms	remaining: 505ms
1:	learn: 42.1130223	total: 9.66ms	remaining: 473ms
2:	learn: 41.1753409	total: 14.6ms	remaining: 472ms
3:	learn: 40.3637444	total: 19.9ms	remaining: 478ms
4:	learn: 39.6508088	total: 25ms	remaining: 475ms
5:	learn: 38.7217934	total: 29.9ms	remaining: 469ms
6:	learn: 37.8538055	total: 35ms	remaining: 464ms
7:	learn: 36.9793574	total: 40.1ms	remaining: 461ms
8:	learn: 36.3076984	total: 44.6ms	remaining: 451ms
9:	learn: 35.6673160	total: 49.2ms	remaining: 443ms
10:	learn: 34.8889800	total: 54.2ms	remaining: 438ms
11:	learn: 34.1675517	total: 58.2ms	remaining: 427ms
12:	learn: 33.6779564	total: 62.7ms	remaining: 420ms
13:	learn: 33.0710039	total: 67.1ms	remaining: 412ms
14:	learn: 32.4966674	total: 71.5ms	remaining: 405ms
15:	learn: 31.9492856	total: 76ms	remaining: 399ms
16:	learn: 31.5108129	total: 80.1ms	remaining: 391ms
17:	learn: 30.9804023	total: 84.7ms	remaining: 386ms
18:	learn: 30.4169089	total: 89.1ms	remaining: 380ms
19:	learn: 29.8930375	total: 93.5ms	remaining: 374ms
20:	learn: 29.3974421	total: 116ms	remaining: 438ms
21:	learn: 28.8792307	total: 124ms	remaining: 440ms
22:	learn: 28.3894474	total: 132ms	remaining: 442ms
23:	learn: 27.9921276	total: 137ms	remaining: 434ms
24:	learn: 27.6158887	total: 142ms	remaining: 427ms
25:	learn: 27.2866950	total: 147ms	remaining: 420ms
26:	learn: 26.8770708	total: 153ms	remaining: 413ms
27:	learn: 26.6233005	total: 158ms	remaining: 405ms
28:	learn: 26.2921934	total: 163ms	remaining: 400ms
29:	learn: 25.9156920	total: 169ms	remaining: 394ms
30:	learn: 25.5311106	total: 171ms	remaining: 380ms
31:	learn: 25.2178997	total: 176ms	remaining: 374ms
32:	learn: 24.8572196	total: 181ms	remaining: 368ms
33:	learn: 24.5849710	total: 187ms	remaining: 362ms
34:	learn: 24.2209190	total: 192ms	remaining: 356ms
35:	learn: 23.8708250	total: 198ms	remaining: 351ms
36:	learn: 23.5325279	total: 203ms	remaining: 346ms
37:	learn: 23.2116148	total: 208ms	remaining: 339ms
38:	learn: 22.9696787	total: 213ms	remaining: 332ms
39:	learn: 22.7936783	total: 216ms	remaining: 325ms
40:	learn: 22.6228847	total: 220ms	remaining: 317ms
41:	learn: 22.3691527	total: 224ms	remaining: 310ms
42:	learn: 22.1002173	total: 228ms	remaining: 303ms
43:	learn: 21.9157268	total: 232ms	remaining: 296ms
44:	learn: 21.7229102	total: 236ms	remaining: 289ms
45:	learn: 21.4642005	total: 240ms	remaining: 282ms
46:	learn: 21.3029442	total: 244ms	remaining: 275ms
47:	learn: 21.1469792	total: 248ms	remaining: 269ms
48:	learn: 20.9458235	total: 253ms	remaining: 263ms
49:	learn: 20.7335242	total: 257ms	remaining: 257ms
50:	learn: 20.5440269	total: 261ms	remaining: 251ms
51:	learn: 20.3661449	total: 266ms	remaining: 245ms
52:	learn: 20.2158134	total: 271ms	remaining: 240ms
53:	learn: 19.9934873	total: 275ms	remaining: 234ms
54:	learn: 19.7879739	total: 279ms	remaining: 229ms
55:	learn: 19.6630460	total: 284ms	remaining: 223ms
56:	learn: 19.5152729	total: 288ms	remaining: 217ms
57:	learn: 19.3581128	total: 293ms	remaining: 212ms
58:	learn: 19.2209303	total: 297ms	remaining: 207ms
59:	learn: 19.0965248	total: 304ms	remaining: 203ms
60:	learn: 19.0035954	total: 311ms	remaining: 199ms
61:	learn: 18.8554149	total: 319ms	remaining: 196ms
62:	learn: 18.7095427	total: 326ms	remaining: 191ms
63:	learn: 18.5751494	total: 333ms	remaining: 188ms
64:	learn: 18.4678251	total: 338ms	remaining: 182ms
65:	learn: 18.3500325	total: 344ms	remaining: 177ms
66:	learn: 18.2088983	total: 349ms	remaining: 172ms
67:	learn: 18.0737705	total: 354ms	remaining: 167ms
68:	learn: 17.9325058	total: 359ms	remaining: 161ms
69:	learn: 17.8003911	total: 364ms	remaining: 156ms
70:	learn: 17.7385366	total: 369ms	remaining: 151ms
71:	learn: 17.6106998	total: 375ms	remaining: 146ms
72:	learn: 17.4816270	total: 380ms	remaining: 140ms
73:	learn: 17.4025554	total: 384ms	remaining: 135ms
74:	learn: 17.2902108	total: 388ms	remaining: 129ms
75:	learn: 17.2158048	total: 393ms	remaining: 124ms
76:	learn: 17.1261053	total: 397ms	remaining: 119ms
77:	learn: 17.0308917	total: 402ms	remaining: 113ms
78:	learn: 16.9546705	total: 407ms	remaining: 108ms
79:	learn: 16.8319165	total: 412ms	remaining: 103ms
80:	learn: 16.7687017	total: 417ms	remaining: 97.7ms
81:	learn: 16.6972326	total: 421ms	remaining: 92.4ms
82:	learn: 16.6124580	total: 425ms	remaining: 87.1ms
83:	learn: 16.4999052	total: 429ms	remaining: 81.8ms
84:	learn: 16.4302484	total: 433ms	remaining: 76.4ms
85:	learn: 16.3201363	total: 437ms	remaining: 71.2ms
86:	learn: 16.2534314	total: 441ms	remaining: 65.9ms
87:	learn: 16.1720485	total: 445ms	remaining: 60.7ms
88:	learn: 16.0625751	total: 450ms	remaining: 55.6ms
89:	learn: 15.9135088	total: 455ms	remaining: 50.5ms
90:	learn: 15.8658863	total: 459ms	remaining: 45.4ms
91:	learn: 15.8066805	total: 464ms	remaining: 40.3ms
92:	learn: 15.7412103	total: 468ms	remaining: 35.2ms
93:	learn: 15.6542776	total: 473ms	remaining: 30.2ms
94:	learn: 15.5760334	total: 477ms	remaining: 25.1ms
95:	learn: 15.5434131	total: 482ms	remaining: 20.1ms
96:	learn: 15.4709561	total: 486ms	remaining: 15ms
97:	learn: 15.4449618	total: 491ms	remaining: 10ms
98:	learn: 15.3752761	total: 496ms	remaining: 5.01ms
99:	learn: 15.3106595	total: 504ms	remaining: 0us
0:	learn: 46.7142257	total: 5.67ms	remaining: 561ms
1:	learn: 45.7634153	total: 11.2ms	remaining: 547ms
2:	learn: 45.0054253	total: 16.1ms	remaining: 522ms
3:	learn: 44.2120432	total: 21.2ms	remaining: 510ms
4:	learn: 43.3960472	total: 26.2ms	remaining: 497ms
5:	learn: 42.8588120	total: 30.5ms	remaining: 478ms
6:	learn: 41.9533701	total: 35.9ms	remaining: 478ms
7:	learn: 41.2745030	total: 41.7ms	remaining: 479ms
8:	learn: 40.6797495	total: 45.5ms	remaining: 460ms
9:	learn: 39.9899571	total: 50.7ms	remaining: 456ms
10:	learn: 39.4682100	total: 55.3ms	remaining: 447ms
11:	learn: 39.0305595	total: 60.1ms	remaining: 441ms
12:	learn: 38.4200417	total: 64.9ms	remaining: 434ms
13:	learn: 37.8425194	total: 69ms	remaining: 424ms
14:	learn: 37.4203127	total: 73.3ms	remaining: 415ms
15:	learn: 36.9917688	total: 77.6ms	remaining: 407ms
16:	learn: 36.5544138	total: 82.1ms	remaining: 401ms
17:	learn: 36.0727019	total: 86.7ms	remaining: 395ms
18:	learn: 35.4835715	total: 91.4ms	remaining: 390ms
19:	learn: 34.9865654	total: 96.8ms	remaining: 387ms
20:	learn: 34.6063373	total: 101ms	remaining: 381ms
21:	learn: 34.0997289	total: 106ms	remaining: 375ms
22:	learn: 33.7313171	total: 111ms	remaining: 371ms
23:	learn: 33.3582000	total: 116ms	remaining: 367ms
24:	learn: 32.9432456	total: 121ms	remaining: 362ms
25:	learn: 32.5220888	total: 125ms	remaining: 357ms
26:	learn: 32.2172292	total: 130ms	remaining: 352ms
27:	learn: 31.8972904	total: 136ms	remaining: 348ms
28:	learn: 31.6405350	total: 141ms	remaining: 345ms
29:	learn: 31.4167702	total: 146ms	remaining: 341ms
30:	learn: 30.8541961	total: 150ms	remaining: 333ms
31:	learn: 30.5572111	total: 157ms	remaining: 333ms
32:	learn: 30.1700399	total: 164ms	remaining: 334ms
33:	learn: 29.8537271	total: 172ms	remaining: 334ms
34:	learn: 29.6192540	total: 181ms	remaining: 335ms
35:	learn: 29.3276362	total: 186ms	remaining: 331ms
36:	learn: 28.9985179	total: 192ms	remaining: 326ms
37:	learn: 28.7046880	total: 197ms	remaining: 321ms
38:	learn: 28.4412677	total: 203ms	remaining: 317ms
39:	learn: 28.1277292	total: 208ms	remaining: 312ms
40:	learn: 27.9000750	total: 213ms	remaining: 307ms
41:	learn: 27.5433162	total: 219ms	remaining: 303ms
42:	learn: 27.2493285	total: 224ms	remaining: 297ms
43:	learn: 26.9576632	total: 227ms	remaining: 288ms
44:	learn: 26.6177110	total: 232ms	remaining: 283ms
45:	learn: 26.2812456	total: 237ms	remaining: 278ms
46:	learn: 26.0803859	total: 242ms	remaining: 273ms
47:	learn: 25.9543581	total: 247ms	remaining: 268ms
48:	learn: 25.7951582	total: 253ms	remaining: 263ms
49:	learn: 25.6548184	total: 257ms	remaining: 257ms
50:	learn: 25.4010843	total: 261ms	remaining: 251ms
51:	learn: 24.9773937	total: 266ms	remaining: 246ms
52:	learn: 24.8026156	total: 271ms	remaining: 240ms
53:	learn: 24.5568053	total: 276ms	remaining: 235ms
54:	learn: 24.2281839	total: 280ms	remaining: 229ms
55:	learn: 23.9202795	total: 285ms	remaining: 224ms
56:	learn: 23.7625591	total: 289ms	remaining: 218ms
57:	learn: 23.5429721	total: 294ms	remaining: 213ms
58:	learn: 23.3175893	total: 298ms	remaining: 207ms
59:	learn: 23.2035130	total: 303ms	remaining: 202ms
60:	learn: 23.0232450	total: 307ms	remaining: 196ms
61:	learn: 22.8384958	total: 312ms	remaining: 191ms
62:	learn: 22.6499902	total: 316ms	remaining: 186ms
63:	learn: 22.4577426	total: 321ms	remaining: 181ms
64:	learn: 22.3333158	total: 326ms	remaining: 176ms
65:	learn: 22.2064131	total: 331ms	remaining: 170ms
66:	learn: 22.1434971	total: 335ms	remaining: 165ms
67:	learn: 21.9596519	total: 340ms	remaining: 160ms
68:	learn: 21.8475576	total: 345ms	remaining: 155ms
69:	learn: 21.6954745	total: 353ms	remaining: 151ms
70:	learn: 21.5635976	total: 368ms	remaining: 150ms
71:	learn: 21.4588506	total: 375ms	remaining: 146ms
72:	learn: 21.3527268	total: 380ms	remaining: 141ms
73:	learn: 21.2661288	total: 385ms	remaining: 135ms
74:	learn: 21.1817333	total: 391ms	remaining: 130ms
75:	learn: 21.0527553	total: 396ms	remaining: 125ms
76:	learn: 20.9229021	total: 401ms	remaining: 120ms
77:	learn: 20.7563946	total: 407ms	remaining: 115ms
78:	learn: 20.6569831	total: 412ms	remaining: 109ms
79:	learn: 20.4982663	total: 417ms	remaining: 104ms
80:	learn: 20.3185460	total: 423ms	remaining: 99.1ms
81:	learn: 20.2096241	total: 428ms	remaining: 94ms
82:	learn: 20.1274891	total: 433ms	remaining: 88.8ms
83:	learn: 20.0740139	total: 439ms	remaining: 83.5ms
84:	learn: 19.9630699	total: 444ms	remaining: 78.4ms
85:	learn: 19.8753899	total: 451ms	remaining: 73.4ms
86:	learn: 19.6563612	total: 456ms	remaining: 68.1ms
87:	learn: 19.4680232	total: 461ms	remaining: 62.9ms
88:	learn: 19.3503431	total: 466ms	remaining: 57.6ms
89:	learn: 19.2221379	total: 470ms	remaining: 52.3ms
90:	learn: 19.0732542	total: 475ms	remaining: 47ms
91:	learn: 18.9825190	total: 480ms	remaining: 41.7ms
92:	learn: 18.8839009	total: 485ms	remaining: 36.5ms
93:	learn: 18.8012219	total: 489ms	remaining: 31.2ms
94:	learn: 18.7172713	total: 493ms	remaining: 26ms
95:	learn: 18.6201170	total: 498ms	remaining: 20.7ms
96:	learn: 18.5318611	total: 502ms	remaining: 15.5ms
97:	learn: 18.3833356	total: 506ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 511ms	remaining: 5.16ms
99:	learn: 18.2227333	total: 516ms	remaining: 0us
0:	learn: 46.3764524	total: 9.27ms	remaining: 917ms
1:	learn: 45.5561269	total: 16.4ms	remaining: 803ms
2:	learn: 44.8811245	total: 21.6ms	remaining: 699ms
3:	learn: 44.0788617	total: 26.6ms	remaining: 639ms
4:	learn: 43.3619790	total: 31.9ms	remaining: 606ms
5:	learn: 42.6912112	total: 37ms	remaining: 579ms
6:	learn: 42.2292118	total: 42.3ms	remaining: 562ms
7:	learn: 41.7725191	total: 47.8ms	remaining: 550ms
8:	learn: 41.1676614	total: 52.8ms	remaining: 534ms
9:	learn: 40.5771076	total: 57.7ms	remaining: 520ms
10:	learn: 39.8343757	total: 63.5ms	remaining: 514ms
11:	learn: 39.3761142	total: 68.6ms	remaining: 503ms
12:	learn: 38.5254692	total: 73.1ms	remaining: 489ms
13:	learn: 37.9629555	total: 78.6ms	remaining: 483ms
14:	learn: 37.4418438	total: 84.3ms	remaining: 478ms
15:	learn: 37.0507283	total: 89.3ms	remaining: 469ms
16:	learn: 36.6264217	total: 93.7ms	remaining: 458ms
17:	learn: 36.1114940	total: 98.5ms	remaining: 449ms
18:	learn: 35.7193862	total: 103ms	remaining: 438ms
19:	learn: 35.3301177	total: 107ms	remaining: 429ms
20:	learn: 35.0598280	total: 125ms	remaining: 472ms
21:	learn: 34.5469736	total: 129ms	remaining: 458ms
22:	learn: 34.2064215	total: 133ms	remaining: 446ms
23:	learn: 33.7280710	total: 137ms	remaining: 435ms
24:	learn: 33.3282940	total: 142ms	remaining: 425ms
25:	learn: 32.8478961	total: 146ms	remaining: 414ms
26:	learn: 32.5722164	total: 150ms	remaining: 404ms
27:	learn: 32.2457019	total: 154ms	remaining: 395ms
28:	learn: 31.9230495	total: 158ms	remaining: 388ms
29:	learn: 31.4311611	total: 163ms	remaining: 380ms
30:	learn: 30.9179052	total: 167ms	remaining: 373ms
31:	learn: 30.6201141	total: 172ms	remaining: 366ms
32:	learn: 30.3421106	total: 177ms	remaining: 359ms
33:	learn: 29.9885373	total: 181ms	remaining: 352ms
34:	learn: 29.7462780	total: 186ms	remaining: 345ms
35:	learn: 29.3607153	total: 191ms	remaining: 340ms
36:	learn: 29.1793078	total: 201ms	remaining: 341ms
37:	learn: 28.9276538	total: 210ms	remaining: 342ms
38:	learn: 28.6903934	total: 219ms	remaining: 343ms
39:	learn: 28.2095033	total: 226ms	remaining: 340ms
40:	learn: 27.7990608	total: 232ms	remaining: 334ms
41:	learn: 27.5406632	total: 238ms	remaining: 329ms
42:	learn: 27.2575376	total: 243ms	remaining: 323ms
43:	learn: 26.9741707	total: 249ms	remaining: 317ms
44:	learn: 26.6606899	total: 255ms	remaining: 311ms
45:	learn: 26.4015833	total: 260ms	remaining: 306ms
46:	learn: 26.1828993	total: 266ms	remaining: 300ms
47:	learn: 26.0233709	total: 269ms	remaining: 291ms
48:	learn: 25.9300399	total: 275ms	remaining: 286ms
49:	learn: 25.5861489	total: 280ms	remaining: 280ms
50:	learn: 25.4322012	total: 286ms	remaining: 274ms
51:	learn: 25.1595644	total: 292ms	remaining: 269ms
52:	learn: 24.9955303	total: 297ms	remaining: 263ms
53:	learn: 24.7273966	total: 302ms	remaining: 257ms
54:	learn: 24.5747978	total: 306ms	remaining: 250ms
55:	learn: 24.3807977	total: 310ms	remaining: 244ms
56:	learn: 24.1689569	total: 315ms	remaining: 238ms
57:	learn: 23.9898221	total: 319ms	remaining: 231ms
58:	learn: 23.7566414	total: 324ms	remaining: 225ms
59:	learn: 23.6641165	total: 328ms	remaining: 219ms
60:	learn: 23.5658066	total: 332ms	remaining: 212ms
61:	learn: 23.4338851	total: 336ms	remaining: 206ms
62:	learn: 23.2408837	total: 342ms	remaining: 201ms
63:	learn: 23.0642038	total: 346ms	remaining: 195ms
64:	learn: 22.9032045	total: 351ms	remaining: 189ms
65:	learn: 22.7736138	total: 355ms	remaining: 183ms
66:	learn: 22.6836443	total: 360ms	remaining: 177ms
67:	learn: 22.5983654	total: 364ms	remaining: 171ms
68:	learn: 22.4419813	total: 368ms	remaining: 165ms
69:	learn: 22.2863339	total: 373ms	remaining: 160ms
70:	learn: 22.1792943	total: 378ms	remaining: 154ms
71:	learn: 22.1130574	total: 383ms	remaining: 149ms
72:	learn: 21.9858161	total: 388ms	remaining: 143ms
73:	learn: 21.8577784	total: 392ms	remaining: 138ms
74:	learn: 21.7845222	total: 397ms	remaining: 132ms
75:	learn: 21.6831390	total: 402ms	remaining: 127ms
76:	learn: 21.6292521	total: 409ms	remaining: 122ms
77:	learn: 21.5789330	total: 417ms	remaining: 117ms
78:	learn: 21.5420942	total: 424ms	remaining: 113ms
79:	learn: 21.4280939	total: 432ms	remaining: 108ms
80:	learn: 21.3641165	total: 439ms	remaining: 103ms
81:	learn: 21.2734814	total: 444ms	remaining: 97.4ms
82:	learn: 21.2220323	total: 449ms	remaining: 92ms
83:	learn: 21.0625792	total: 454ms	remaining: 86.6ms
84:	learn: 20.9488320	total: 459ms	remaining: 81.1ms
85:	learn: 20.8504255	total: 465ms	remaining: 75.6ms
86:	learn: 20.7848510	total: 469ms	remaining: 70.1ms
87:	learn: 20.7247442	total: 475ms	remaining: 64.7ms
88:	learn: 20.5698590	total: 480ms	remaining: 59.3ms
89:	learn: 20.4067620	total: 485ms	remaining: 53.9ms
90:	learn: 20.3062482	total: 490ms	remaining: 48.5ms
91:	learn: 20.2029696	total: 495ms	remaining: 43.1ms
92:	learn: 20.1384849	total: 501ms	remaining: 37.7ms
93:	learn: 20.0260709	total: 506ms	remaining: 32.3ms
94:	learn: 19.9122100	total: 511ms	remaining: 26.9ms
95:	learn: 19.8648487	total: 517ms	remaining: 21.5ms
96:	learn: 19.8207072	total: 521ms	remaining: 16.1ms
97:	learn: 19.7261189	total: 526ms	remaining: 10.7ms
98:	learn: 19.7042438	total: 531ms	remaining: 5.36ms
99:	learn: 19.6546645	total: 536ms	remaining: 0us
0:	learn: 47.0239288	total: 4.82ms	remaining: 478ms
1:	learn: 46.2253829	total: 9.69ms	remaining: 475ms
2:	learn: 45.5580301	total: 14.3ms	remaining: 461ms
3:	learn: 44.7273237	total: 19ms	remaining: 456ms
4:	learn: 43.8867421	total: 26.5ms	remaining: 503ms
5:	learn: 43.3615911	total: 33.6ms	remaining: 526ms
6:	learn: 42.8548390	total: 43.3ms	remaining: 575ms
7:	learn: 42.1606758	total: 49.3ms	remaining: 566ms
8:	learn: 41.6625870	total: 55.8ms	remaining: 564ms
9:	learn: 40.9497092	total: 60.8ms	remaining: 547ms
10:	learn: 40.1886318	total: 65.9ms	remaining: 533ms
11:	learn: 39.7456423	total: 71ms	remaining: 520ms
12:	learn: 39.1171373	total: 76ms	remaining: 509ms
13:	learn: 38.5451069	total: 81ms	remaining: 498ms
14:	learn: 38.0155834	total: 86.3ms	remaining: 489ms
15:	learn: 37.5631354	total: 91.4ms	remaining: 480ms
16:	learn: 37.1030023	total: 96.9ms	remaining: 473ms
17:	learn: 36.4563029	total: 102ms	remaining: 465ms
18:	learn: 36.0160976	total: 107ms	remaining: 455ms
19:	learn: 35.5079827	total: 112ms	remaining: 449ms
20:	learn: 35.2111885	total: 118ms	remaining: 443ms
21:	learn: 34.9397465	total: 123ms	remaining: 436ms
22:	learn: 34.5270048	total: 127ms	remaining: 425ms
23:	learn: 34.0169260	total: 132ms	remaining: 417ms
24:	learn: 33.7454892	total: 136ms	remaining: 407ms
25:	learn: 33.2648157	total: 140ms	remaining: 399ms
26:	learn: 32.8899427	total: 144ms	remaining: 390ms
27:	learn: 32.6185050	total: 148ms	remaining: 382ms
28:	learn: 32.3528531	total: 152ms	remaining: 373ms
29:	learn: 32.0859923	total: 157ms	remaining: 365ms
30:	learn: 31.6511144	total: 161ms	remaining: 358ms
31:	learn: 31.2571765	total: 165ms	remaining: 351ms
32:	learn: 30.9770049	total: 169ms	remaining: 343ms
33:	learn: 30.6084872	total: 173ms	remaining: 336ms
34:	learn: 30.3448632	total: 178ms	remaining: 330ms
35:	learn: 30.0360942	total: 182ms	remaining: 324ms
36:	learn: 29.6648968	total: 186ms	remaining: 317ms
37:	learn: 29.3165114	total: 191ms	remaining: 311ms
38:	learn: 29.0829198	total: 195ms	remaining: 305ms
39:	learn: 28.7752064	total: 199ms	remaining: 298ms
40:	learn: 28.3622191	total: 203ms	remaining: 292ms
41:	learn: 28.1346631	total: 207ms	remaining: 286ms
42:	learn: 27.9585719	total: 211ms	remaining: 280ms
43:	learn: 27.6565566	total: 215ms	remaining: 274ms
44:	learn: 27.3616172	total: 220ms	remaining: 269ms
45:	learn: 27.0658637	total: 225ms	remaining: 264ms
46:	learn: 26.8660382	total: 229ms	remaining: 259ms
47:	learn: 26.6536078	total: 234ms	remaining: 254ms
48:	learn: 26.3524440	total: 239ms	remaining: 249ms
49:	learn: 26.1595277	total: 243ms	remaining: 243ms
50:	learn: 25.9273523	total: 248ms	remaining: 238ms
51:	learn: 25.7195580	total: 253ms	remaining: 234ms
52:	learn: 25.5730225	total: 262ms	remaining: 232ms
53:	learn: 25.3455276	total: 270ms	remaining: 230ms
54:	learn: 25.2289675	total: 279ms	remaining: 228ms
55:	learn: 25.0133024	total: 288ms	remaining: 227ms
56:	learn: 24.8406714	total: 293ms	remaining: 221ms
57:	learn: 24.6367857	total: 299ms	remaining: 217ms
58:	learn: 24.5338177	total: 305ms	remaining: 212ms
59:	learn: 24.3799964	total: 310ms	remaining: 207ms
60:	learn: 24.1447492	total: 316ms	remaining: 202ms
61:	learn: 23.9880495	total: 321ms	remaining: 197ms
62:	learn: 23.7140630	total: 326ms	remaining: 192ms
63:	learn: 23.5003791	total: 332ms	remaining: 187ms
64:	learn: 23.3207645	total: 338ms	remaining: 182ms
65:	learn: 23.1958356	total: 343ms	remaining: 177ms
66:	learn: 23.0471302	total: 347ms	remaining: 171ms
67:	learn: 22.8977183	total: 353ms	remaining: 166ms
68:	learn: 22.7187400	total: 358ms	remaining: 161ms
69:	learn: 22.6523405	total: 363ms	remaining: 155ms
70:	learn: 22.4767453	total: 367ms	remaining: 150ms
71:	learn: 22.3243677	total: 372ms	remaining: 145ms
72:	learn: 22.2133096	total: 376ms	remaining: 139ms
73:	learn: 22.1151713	total: 380ms	remaining: 134ms
74:	learn: 22.0296666	total: 385ms	remaining: 128ms
75:	learn: 21.9195980	total: 389ms	remaining: 123ms
76:	learn: 21.8401730	total: 394ms	remaining: 118ms
77:	learn: 21.8079797	total: 398ms	remaining: 112ms
78:	learn: 21.7274109	total: 402ms	remaining: 107ms
79:	learn: 21.6663032	total: 407ms	remaining: 102ms
80:	learn: 21.5633117	total: 411ms	remaining: 96.5ms
81:	learn: 21.4542467	total: 416ms	remaining: 91.2ms
82:	learn: 21.3177957	total: 421ms	remaining: 86.1ms
83:	learn: 21.1289167	total: 425ms	remaining: 81ms
84:	learn: 21.0297368	total: 430ms	remaining: 75.9ms
85:	learn: 20.9089564	total: 435ms	remaining: 70.8ms
86:	learn: 20.7653988	total: 440ms	remaining: 65.8ms
87:	learn: 20.6521894	total: 445ms	remaining: 60.7ms
88:	learn: 20.5193021	total: 450ms	remaining: 55.6ms
89:	learn: 20.4361620	total: 455ms	remaining: 50.5ms
90:	learn: 20.3546710	total: 464ms	remaining: 45.8ms
91:	learn: 20.2513296	total: 471ms	remaining: 41ms
92:	learn: 20.1605550	total: 496ms	remaining: 37.3ms
93:	learn: 20.0515942	total: 501ms	remaining: 32ms
94:	learn: 19.9800764	total: 506ms	remaining: 26.6ms
95:	learn: 19.8996532	total: 511ms	remaining: 21.3ms
96:	learn: 19.8450910	total: 516ms	remaining: 16ms
97:	learn: 19.7887346	total: 521ms	remaining: 10.6ms
98:	learn: 19.7230872	total: 527ms	remaining: 5.32ms
99:	learn: 19.6328825	total: 531ms	remaining: 0us
0:	learn: 27.5585353	total: 4.43ms	remaining: 439ms
1:	learn: 27.1656995	total: 8.08ms	remaining: 396ms
2:	learn: 26.8590175	total: 12.1ms	remaining: 391ms
3:	learn: 26.5818406	total: 15.9ms	remaining: 382ms
4:	learn: 26.1148663	total: 19.9ms	remaining: 378ms
5:	learn: 25.7690484	total: 23.8ms	remaining: 373ms
6:	learn: 25.3489206	total: 27.6ms	remaining: 367ms
7:	learn: 24.9542406	total: 31.8ms	remaining: 366ms
8:	learn: 24.6777517	total: 36.1ms	remaining: 365ms
9:	learn: 24.3242344	total: 40.1ms	remaining: 361ms
10:	learn: 24.0383073	total: 44.1ms	remaining: 357ms
11:	learn: 23.7383420	total: 48.4ms	remaining: 355ms
12:	learn: 23.3461670	total: 52.7ms	remaining: 353ms
13:	learn: 23.0928636	total: 57.3ms	remaining: 352ms
14:	learn: 22.8770414	total: 61.8ms	remaining: 350ms
15:	learn: 22.6323214	total: 66.6ms	remaining: 350ms
16:	learn: 22.3597072	total: 71.3ms	remaining: 348ms
17:	learn: 22.1079813	total: 75.8ms	remaining: 345ms
18:	learn: 21.8421199	total: 80.5ms	remaining: 343ms
19:	learn: 21.6576508	total: 85.5ms	remaining: 342ms
20:	learn: 21.4301268	total: 93.4ms	remaining: 351ms
21:	learn: 21.2287388	total: 101ms	remaining: 359ms
22:	learn: 21.0553872	total: 110ms	remaining: 369ms
23:	learn: 20.8977091	total: 116ms	remaining: 367ms
24:	learn: 20.6619051	total: 123ms	remaining: 368ms
25:	learn: 20.5040955	total: 128ms	remaining: 364ms
26:	learn: 20.3181195	total: 133ms	remaining: 359ms
27:	learn: 20.0869436	total: 138ms	remaining: 355ms
28:	learn: 19.9375985	total: 143ms	remaining: 351ms
29:	learn: 19.8247516	total: 148ms	remaining: 346ms
30:	learn: 19.6261697	total: 153ms	remaining: 341ms
31:	learn: 19.4547236	total: 158ms	remaining: 336ms
32:	learn: 19.3157092	total: 163ms	remaining: 331ms
33:	learn: 19.1561419	total: 168ms	remaining: 326ms
34:	learn: 19.0453620	total: 173ms	remaining: 321ms
35:	learn: 18.8738574	total: 178ms	remaining: 316ms
36:	learn: 18.7072907	total: 183ms	remaining: 312ms
37:	learn: 18.5877943	total: 189ms	remaining: 308ms
38:	learn: 18.4436380	total: 205ms	remaining: 321ms
39:	learn: 18.3463356	total: 210ms	remaining: 314ms
40:	learn: 18.2008059	total: 214ms	remaining: 307ms
41:	learn: 18.0582079	total: 218ms	remaining: 301ms
42:	learn: 17.8891982	total: 222ms	remaining: 294ms
43:	learn: 17.7332246	total: 226ms	remaining: 287ms
44:	learn: 17.6206421	total: 230ms	remaining: 281ms
45:	learn: 17.4982800	total: 234ms	remaining: 274ms
46:	learn: 17.3970150	total: 238ms	remaining: 268ms
47:	learn: 17.3058203	total: 242ms	remaining: 262ms
48:	learn: 17.1789256	total: 246ms	remaining: 257ms
49:	learn: 17.0916229	total: 250ms	remaining: 250ms
50:	learn: 16.9859820	total: 256ms	remaining: 246ms
51:	learn: 16.8995582	total: 261ms	remaining: 241ms
52:	learn: 16.8137014	total: 266ms	remaining: 236ms
53:	learn: 16.7021451	total: 270ms	remaining: 230ms
54:	learn: 16.5895582	total: 275ms	remaining: 225ms
55:	learn: 16.5015639	total: 280ms	remaining: 220ms
56:	learn: 16.4356637	total: 284ms	remaining: 214ms
57:	learn: 16.3514525	total: 291ms	remaining: 210ms
58:	learn: 16.2401369	total: 298ms	remaining: 207ms
59:	learn: 16.1293223	total: 305ms	remaining: 204ms
60:	learn: 16.0271167	total: 313ms	remaining: 200ms
61:	learn: 15.9126257	total: 321ms	remaining: 197ms
62:	learn: 15.8391096	total: 326ms	remaining: 191ms
63:	learn: 15.7441773	total: 331ms	remaining: 186ms
64:	learn: 15.6885195	total: 336ms	remaining: 181ms
65:	learn: 15.6052039	total: 341ms	remaining: 175ms
66:	learn: 15.5074202	total: 346ms	remaining: 170ms
67:	learn: 15.4054338	total: 351ms	remaining: 165ms
68:	learn: 15.2885714	total: 356ms	remaining: 160ms
69:	learn: 15.2157472	total: 361ms	remaining: 155ms
70:	learn: 15.1031554	total: 366ms	remaining: 150ms
71:	learn: 15.0237470	total: 371ms	remaining: 144ms
72:	learn: 14.9756825	total: 376ms	remaining: 139ms
73:	learn: 14.8840596	total: 381ms	remaining: 134ms
74:	learn: 14.8077061	total: 387ms	remaining: 129ms
75:	learn: 14.7444437	total: 392ms	remaining: 124ms
76:	learn: 14.6751720	total: 397ms	remaining: 118ms
77:	learn: 14.5830333	total: 401ms	remaining: 113ms
78:	learn: 14.5241206	total: 405ms	remaining: 108ms
79:	learn: 14.4892731	total: 409ms	remaining: 102ms
80:	learn: 14.4256605	total: 413ms	remaining: 96.9ms
81:	learn: 14.3666860	total: 417ms	remaining: 91.5ms
82:	learn: 14.2938372	total: 421ms	remaining: 86.3ms
83:	learn: 14.2161532	total: 425ms	remaining: 81ms
84:	learn: 14.1582910	total: 430ms	remaining: 75.8ms
85:	learn: 14.1029153	total: 434ms	remaining: 70.6ms
86:	learn: 14.0475835	total: 438ms	remaining: 65.5ms
87:	learn: 13.9892661	total: 442ms	remaining: 60.3ms
88:	learn: 13.9481628	total: 446ms	remaining: 55.2ms
89:	learn: 13.8483991	total: 451ms	remaining: 50.1ms
90:	learn: 13.7775614	total: 455ms	remaining: 45ms
91:	learn: 13.7304585	total: 460ms	remaining: 40ms
92:	learn: 13.6783381	total: 464ms	remaining: 34.9ms
93:	learn: 13.6356964	total: 469ms	remaining: 29.9ms
94:	learn: 13.5924371	total: 473ms	remaining: 24.9ms
95:	learn: 13.5400746	total: 477ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 482ms	remaining: 14.9ms
97:	learn: 13.4470321	total: 487ms	remaining: 9.93ms
98:	learn: 13.3856082	total: 495ms	remaining: 5ms
99:	learn: 13.3082371	total: 503ms	remaining: 0us
0:	learn: 43.0395283	total: 5.54ms	remaining: 549ms
1:	learn: 42.1130223	total: 10.6ms	remaining: 520ms
2:	learn: 41.1753409	total: 15.7ms	remaining: 507ms
3:	learn: 40.3637444	total: 20.7ms	remaining: 497ms
4:	learn: 39.6508088	total: 25.9ms	remaining: 493ms
5:	learn: 38.7217934	total: 31.3ms	remaining: 490ms
6:	learn: 37.8538055	total: 35.9ms	remaining: 478ms
7:	learn: 36.9793574	total: 40.6ms	remaining: 467ms
8:	learn: 36.3076984	total: 45ms	remaining: 455ms
9:	learn: 35.6673160	total: 49.2ms	remaining: 443ms
10:	learn: 34.8889800	total: 53.5ms	remaining: 433ms
11:	learn: 34.1675517	total: 57.5ms	remaining: 422ms
12:	learn: 33.6779564	total: 62ms	remaining: 415ms
13:	learn: 33.0710039	total: 66.6ms	remaining: 409ms
14:	learn: 32.4966674	total: 71ms	remaining: 402ms
15:	learn: 31.9492856	total: 75.2ms	remaining: 395ms
16:	learn: 31.5108129	total: 79.4ms	remaining: 388ms
17:	learn: 30.9804023	total: 83.8ms	remaining: 382ms
18:	learn: 30.4169089	total: 87.7ms	remaining: 374ms
19:	learn: 29.8930375	total: 91.9ms	remaining: 368ms
20:	learn: 29.3974421	total: 96.4ms	remaining: 363ms
21:	learn: 28.8792307	total: 101ms	remaining: 357ms
22:	learn: 28.3894474	total: 105ms	remaining: 351ms
23:	learn: 27.9921276	total: 109ms	remaining: 344ms
24:	learn: 27.6158887	total: 127ms	remaining: 382ms
25:	learn: 27.2866950	total: 133ms	remaining: 377ms
26:	learn: 26.8770708	total: 138ms	remaining: 372ms
27:	learn: 26.6233005	total: 142ms	remaining: 366ms
28:	learn: 26.2921934	total: 148ms	remaining: 361ms
29:	learn: 25.9156920	total: 156ms	remaining: 365ms
30:	learn: 25.5311106	total: 159ms	remaining: 355ms
31:	learn: 25.2178997	total: 167ms	remaining: 355ms
32:	learn: 24.8572196	total: 175ms	remaining: 356ms
33:	learn: 24.5849710	total: 183ms	remaining: 355ms
34:	learn: 24.2209190	total: 188ms	remaining: 349ms
35:	learn: 23.8708250	total: 193ms	remaining: 344ms
36:	learn: 23.5325279	total: 199ms	remaining: 338ms
37:	learn: 23.2116148	total: 203ms	remaining: 332ms
38:	learn: 22.9696787	total: 209ms	remaining: 327ms
39:	learn: 22.7936783	total: 214ms	remaining: 321ms
40:	learn: 22.6228847	total: 219ms	remaining: 315ms
41:	learn: 22.3691527	total: 224ms	remaining: 310ms
42:	learn: 22.1002173	total: 229ms	remaining: 304ms
43:	learn: 21.9157268	total: 234ms	remaining: 298ms
44:	learn: 21.7229102	total: 239ms	remaining: 292ms
45:	learn: 21.4642005	total: 244ms	remaining: 286ms
46:	learn: 21.3029442	total: 249ms	remaining: 281ms
47:	learn: 21.1469792	total: 254ms	remaining: 275ms
48:	learn: 20.9458235	total: 258ms	remaining: 268ms
49:	learn: 20.7335242	total: 262ms	remaining: 262ms
50:	learn: 20.5440269	total: 266ms	remaining: 256ms
51:	learn: 20.3661449	total: 270ms	remaining: 249ms
52:	learn: 20.2158134	total: 274ms	remaining: 243ms
53:	learn: 19.9934873	total: 279ms	remaining: 237ms
54:	learn: 19.7879739	total: 283ms	remaining: 231ms
55:	learn: 19.6630460	total: 287ms	remaining: 226ms
56:	learn: 19.5152729	total: 291ms	remaining: 219ms
57:	learn: 19.3581128	total: 295ms	remaining: 213ms
58:	learn: 19.2209303	total: 299ms	remaining: 208ms
59:	learn: 19.0965248	total: 304ms	remaining: 202ms
60:	learn: 19.0035954	total: 307ms	remaining: 197ms
61:	learn: 18.8554149	total: 311ms	remaining: 191ms
62:	learn: 18.7095427	total: 316ms	remaining: 186ms
63:	learn: 18.5751494	total: 321ms	remaining: 180ms
64:	learn: 18.4678251	total: 325ms	remaining: 175ms
65:	learn: 18.3500325	total: 330ms	remaining: 170ms
66:	learn: 18.2088983	total: 334ms	remaining: 165ms
67:	learn: 18.0737705	total: 339ms	remaining: 159ms
68:	learn: 17.9325058	total: 343ms	remaining: 154ms
69:	learn: 17.8003911	total: 348ms	remaining: 149ms
70:	learn: 17.7385366	total: 356ms	remaining: 145ms
71:	learn: 17.6106998	total: 363ms	remaining: 141ms
72:	learn: 17.4816270	total: 373ms	remaining: 138ms
73:	learn: 17.4025554	total: 379ms	remaining: 133ms
74:	learn: 17.2902108	total: 386ms	remaining: 129ms
75:	learn: 17.2158048	total: 391ms	remaining: 123ms
76:	learn: 17.1261053	total: 396ms	remaining: 118ms
77:	learn: 17.0308917	total: 401ms	remaining: 113ms
78:	learn: 16.9546705	total: 407ms	remaining: 108ms
79:	learn: 16.8319165	total: 413ms	remaining: 103ms
80:	learn: 16.7687017	total: 418ms	remaining: 98.1ms
81:	learn: 16.6972326	total: 423ms	remaining: 92.9ms
82:	learn: 16.6124580	total: 429ms	remaining: 87.8ms
83:	learn: 16.4999052	total: 434ms	remaining: 82.7ms
84:	learn: 16.4302484	total: 439ms	remaining: 77.5ms
85:	learn: 16.3201363	total: 444ms	remaining: 72.3ms
86:	learn: 16.2534314	total: 450ms	remaining: 67.2ms
87:	learn: 16.1720485	total: 454ms	remaining: 62ms
88:	learn: 16.0625751	total: 458ms	remaining: 56.6ms
89:	learn: 15.9135088	total: 462ms	remaining: 51.4ms
90:	learn: 15.8658863	total: 467ms	remaining: 46.1ms
91:	learn: 15.8066805	total: 470ms	remaining: 40.9ms
92:	learn: 15.7412103	total: 475ms	remaining: 35.7ms
93:	learn: 15.6542776	total: 479ms	remaining: 30.6ms
94:	learn: 15.5760334	total: 483ms	remaining: 25.4ms
95:	learn: 15.5434131	total: 487ms	remaining: 20.3ms
96:	learn: 15.4709561	total: 491ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 496ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 500ms	remaining: 5.05ms
99:	learn: 15.3106595	total: 504ms	remaining: 0us
0:	learn: 46.7142257	total: 11.4ms	remaining: 1.13s
1:	learn: 45.7634153	total: 17.3ms	remaining: 850ms
2:	learn: 45.0054253	total: 24ms	remaining: 777ms
3:	learn: 44.2120432	total: 29.3ms	remaining: 704ms
4:	learn: 43.3960472	total: 34.1ms	remaining: 649ms
5:	learn: 42.8588120	total: 39.4ms	remaining: 617ms
6:	learn: 41.9533701	total: 44.9ms	remaining: 596ms
7:	learn: 41.2745030	total: 50.1ms	remaining: 576ms
8:	learn: 40.6797495	total: 55.2ms	remaining: 558ms
9:	learn: 39.9899571	total: 60.4ms	remaining: 543ms
10:	learn: 39.4682100	total: 65.4ms	remaining: 529ms
11:	learn: 39.0305595	total: 70.2ms	remaining: 515ms
12:	learn: 38.4200417	total: 75ms	remaining: 502ms
13:	learn: 37.8425194	total: 79.8ms	remaining: 490ms
14:	learn: 37.4203127	total: 84.2ms	remaining: 477ms
15:	learn: 36.9917688	total: 89.2ms	remaining: 468ms
16:	learn: 36.5544138	total: 94.7ms	remaining: 462ms
17:	learn: 36.0727019	total: 99.9ms	remaining: 455ms
18:	learn: 35.4835715	total: 104ms	remaining: 444ms
19:	learn: 34.9865654	total: 108ms	remaining: 432ms
20:	learn: 34.6063373	total: 112ms	remaining: 422ms
21:	learn: 34.0997289	total: 116ms	remaining: 412ms
22:	learn: 33.7313171	total: 120ms	remaining: 403ms
23:	learn: 33.3582000	total: 124ms	remaining: 393ms
24:	learn: 32.9432456	total: 129ms	remaining: 386ms
25:	learn: 32.5220888	total: 133ms	remaining: 378ms
26:	learn: 32.2172292	total: 137ms	remaining: 371ms
27:	learn: 31.8972904	total: 141ms	remaining: 363ms
28:	learn: 31.6405350	total: 146ms	remaining: 357ms
29:	learn: 31.4167702	total: 150ms	remaining: 350ms
30:	learn: 30.8541961	total: 152ms	remaining: 338ms
31:	learn: 30.5572111	total: 156ms	remaining: 332ms
32:	learn: 30.1700399	total: 161ms	remaining: 326ms
33:	learn: 29.8537271	total: 166ms	remaining: 321ms
34:	learn: 29.6192540	total: 170ms	remaining: 316ms
35:	learn: 29.3276362	total: 175ms	remaining: 311ms
36:	learn: 28.9985179	total: 180ms	remaining: 306ms
37:	learn: 28.7046880	total: 184ms	remaining: 300ms
38:	learn: 28.4412677	total: 188ms	remaining: 295ms
39:	learn: 28.1277292	total: 193ms	remaining: 289ms
40:	learn: 27.9000750	total: 202ms	remaining: 291ms
41:	learn: 27.5433162	total: 209ms	remaining: 289ms
42:	learn: 27.2493285	total: 218ms	remaining: 289ms
43:	learn: 26.9576632	total: 220ms	remaining: 280ms
44:	learn: 26.6177110	total: 227ms	remaining: 278ms
45:	learn: 26.2812456	total: 232ms	remaining: 272ms
46:	learn: 26.0803859	total: 237ms	remaining: 267ms
47:	learn: 25.9543581	total: 242ms	remaining: 262ms
48:	learn: 25.7951582	total: 247ms	remaining: 257ms
49:	learn: 25.6548184	total: 252ms	remaining: 252ms
50:	learn: 25.4010843	total: 258ms	remaining: 248ms
51:	learn: 24.9773937	total: 263ms	remaining: 243ms
52:	learn: 24.8026156	total: 268ms	remaining: 238ms
53:	learn: 24.5568053	total: 273ms	remaining: 233ms
54:	learn: 24.2281839	total: 278ms	remaining: 228ms
55:	learn: 23.9202795	total: 283ms	remaining: 223ms
56:	learn: 23.7625591	total: 288ms	remaining: 217ms
57:	learn: 23.5429721	total: 293ms	remaining: 212ms
58:	learn: 23.3175893	total: 298ms	remaining: 207ms
59:	learn: 23.2035130	total: 303ms	remaining: 202ms
60:	learn: 23.0232450	total: 307ms	remaining: 196ms
61:	learn: 22.8384958	total: 311ms	remaining: 191ms
62:	learn: 22.6499902	total: 315ms	remaining: 185ms
63:	learn: 22.4577426	total: 319ms	remaining: 179ms
64:	learn: 22.3333158	total: 323ms	remaining: 174ms
65:	learn: 22.2064131	total: 327ms	remaining: 168ms
66:	learn: 22.1434971	total: 331ms	remaining: 163ms
67:	learn: 21.9596519	total: 335ms	remaining: 158ms
68:	learn: 21.8475576	total: 340ms	remaining: 153ms
69:	learn: 21.6954745	total: 344ms	remaining: 147ms
70:	learn: 21.5635976	total: 348ms	remaining: 142ms
71:	learn: 21.4588506	total: 352ms	remaining: 137ms
72:	learn: 21.3527268	total: 356ms	remaining: 132ms
73:	learn: 21.2661288	total: 361ms	remaining: 127ms
74:	learn: 21.1817333	total: 366ms	remaining: 122ms
75:	learn: 21.0527553	total: 370ms	remaining: 117ms
76:	learn: 20.9229021	total: 375ms	remaining: 112ms
77:	learn: 20.7563946	total: 380ms	remaining: 107ms
78:	learn: 20.6569831	total: 384ms	remaining: 102ms
79:	learn: 20.4982663	total: 389ms	remaining: 97.2ms
80:	learn: 20.3185460	total: 393ms	remaining: 92.2ms
81:	learn: 20.2096241	total: 401ms	remaining: 88.1ms
82:	learn: 20.1274891	total: 409ms	remaining: 83.8ms
83:	learn: 20.0740139	total: 417ms	remaining: 79.5ms
84:	learn: 19.9630699	total: 435ms	remaining: 76.8ms
85:	learn: 19.8753899	total: 440ms	remaining: 71.7ms
86:	learn: 19.6563612	total: 446ms	remaining: 66.6ms
87:	learn: 19.4680232	total: 451ms	remaining: 61.5ms
88:	learn: 19.3503431	total: 456ms	remaining: 56.3ms
89:	learn: 19.2221379	total: 461ms	remaining: 51.2ms
90:	learn: 19.0732542	total: 466ms	remaining: 46.1ms
91:	learn: 18.9825190	total: 471ms	remaining: 41ms
92:	learn: 18.8839009	total: 477ms	remaining: 35.9ms
93:	learn: 18.8012219	total: 481ms	remaining: 30.7ms
94:	learn: 18.7172713	total: 486ms	remaining: 25.6ms
95:	learn: 18.6201170	total: 491ms	remaining: 20.5ms
96:	learn: 18.5318611	total: 496ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 501ms	remaining: 10.2ms
98:	learn: 18.3289700	total: 505ms	remaining: 5.1ms
99:	learn: 18.2227333	total: 509ms	remaining: 0us
0:	learn: 46.3764524	total: 4.89ms	remaining: 484ms
1:	learn: 45.5561269	total: 8.87ms	remaining: 435ms
2:	learn: 44.8811245	total: 13.1ms	remaining: 425ms
3:	learn: 44.0788617	total: 21.3ms	remaining: 511ms
4:	learn: 43.3619790	total: 29ms	remaining: 551ms
5:	learn: 42.6912112	total: 37.9ms	remaining: 594ms
6:	learn: 42.2292118	total: 45.5ms	remaining: 604ms
7:	learn: 41.7725191	total: 50.9ms	remaining: 585ms
8:	learn: 41.1676614	total: 55.6ms	remaining: 562ms
9:	learn: 40.5771076	total: 60.6ms	remaining: 545ms
10:	learn: 39.8343757	total: 65.4ms	remaining: 529ms
11:	learn: 39.3761142	total: 70.3ms	remaining: 516ms
12:	learn: 38.5254692	total: 75.8ms	remaining: 507ms
13:	learn: 37.9629555	total: 94.7ms	remaining: 581ms
14:	learn: 37.4418438	total: 99.3ms	remaining: 563ms
15:	learn: 37.0507283	total: 104ms	remaining: 545ms
16:	learn: 36.6264217	total: 109ms	remaining: 533ms
17:	learn: 36.1114940	total: 115ms	remaining: 522ms
18:	learn: 35.7193862	total: 119ms	remaining: 506ms
19:	learn: 35.3301177	total: 123ms	remaining: 491ms
20:	learn: 35.0598280	total: 127ms	remaining: 477ms
21:	learn: 34.5469736	total: 131ms	remaining: 464ms
22:	learn: 34.2064215	total: 135ms	remaining: 450ms
23:	learn: 33.7280710	total: 138ms	remaining: 438ms
24:	learn: 33.3282940	total: 142ms	remaining: 427ms
25:	learn: 32.8478961	total: 146ms	remaining: 416ms
26:	learn: 32.5722164	total: 150ms	remaining: 406ms
27:	learn: 32.2457019	total: 154ms	remaining: 396ms
28:	learn: 31.9230495	total: 158ms	remaining: 387ms
29:	learn: 31.4311611	total: 162ms	remaining: 378ms
30:	learn: 30.9179052	total: 166ms	remaining: 370ms
31:	learn: 30.6201141	total: 170ms	remaining: 361ms
32:	learn: 30.3421106	total: 174ms	remaining: 353ms
33:	learn: 29.9885373	total: 178ms	remaining: 345ms
34:	learn: 29.7462780	total: 182ms	remaining: 338ms
35:	learn: 29.3607153	total: 186ms	remaining: 330ms
36:	learn: 29.1793078	total: 190ms	remaining: 323ms
37:	learn: 28.9276538	total: 194ms	remaining: 316ms
38:	learn: 28.6903934	total: 198ms	remaining: 310ms
39:	learn: 28.2095033	total: 202ms	remaining: 303ms
40:	learn: 27.7990608	total: 206ms	remaining: 296ms
41:	learn: 27.5406632	total: 210ms	remaining: 290ms
42:	learn: 27.2575376	total: 215ms	remaining: 284ms
43:	learn: 26.9741707	total: 219ms	remaining: 278ms
44:	learn: 26.6606899	total: 223ms	remaining: 272ms
45:	learn: 26.4015833	total: 227ms	remaining: 266ms
46:	learn: 26.1828993	total: 231ms	remaining: 261ms
47:	learn: 26.0233709	total: 234ms	remaining: 254ms
48:	learn: 25.9300399	total: 239ms	remaining: 248ms
49:	learn: 25.5861489	total: 243ms	remaining: 243ms
50:	learn: 25.4322012	total: 248ms	remaining: 238ms
51:	learn: 25.1595644	total: 252ms	remaining: 233ms
52:	learn: 24.9955303	total: 256ms	remaining: 227ms
53:	learn: 24.7273966	total: 261ms	remaining: 222ms
54:	learn: 24.5747978	total: 268ms	remaining: 219ms
55:	learn: 24.3807977	total: 275ms	remaining: 216ms
56:	learn: 24.1689569	total: 287ms	remaining: 216ms
57:	learn: 23.9898221	total: 293ms	remaining: 212ms
58:	learn: 23.7566414	total: 300ms	remaining: 209ms
59:	learn: 23.6641165	total: 305ms	remaining: 204ms
60:	learn: 23.5658066	total: 310ms	remaining: 198ms
61:	learn: 23.4338851	total: 316ms	remaining: 193ms
62:	learn: 23.2408837	total: 321ms	remaining: 189ms
63:	learn: 23.0642038	total: 327ms	remaining: 184ms
64:	learn: 22.9032045	total: 332ms	remaining: 179ms
65:	learn: 22.7736138	total: 337ms	remaining: 174ms
66:	learn: 22.6836443	total: 342ms	remaining: 168ms
67:	learn: 22.5983654	total: 347ms	remaining: 163ms
68:	learn: 22.4419813	total: 352ms	remaining: 158ms
69:	learn: 22.2863339	total: 356ms	remaining: 153ms
70:	learn: 22.1792943	total: 361ms	remaining: 148ms
71:	learn: 22.1130574	total: 366ms	remaining: 143ms
72:	learn: 21.9858161	total: 372ms	remaining: 138ms
73:	learn: 21.8577784	total: 376ms	remaining: 132ms
74:	learn: 21.7845222	total: 380ms	remaining: 127ms
75:	learn: 21.6831390	total: 384ms	remaining: 121ms
76:	learn: 21.6292521	total: 388ms	remaining: 116ms
77:	learn: 21.5789330	total: 392ms	remaining: 111ms
78:	learn: 21.5420942	total: 396ms	remaining: 105ms
79:	learn: 21.4280939	total: 400ms	remaining: 99.9ms
80:	learn: 21.3641165	total: 404ms	remaining: 94.7ms
81:	learn: 21.2734814	total: 408ms	remaining: 89.5ms
82:	learn: 21.2220323	total: 412ms	remaining: 84.3ms
83:	learn: 21.0625792	total: 416ms	remaining: 79.3ms
84:	learn: 20.9488320	total: 420ms	remaining: 74.1ms
85:	learn: 20.8504255	total: 425ms	remaining: 69.1ms
86:	learn: 20.7848510	total: 429ms	remaining: 64.1ms
87:	learn: 20.7247442	total: 433ms	remaining: 59.1ms
88:	learn: 20.5698590	total: 438ms	remaining: 54.1ms
89:	learn: 20.4067620	total: 442ms	remaining: 49.1ms
90:	learn: 20.3062482	total: 447ms	remaining: 44.2ms
91:	learn: 20.2029696	total: 451ms	remaining: 39.2ms
92:	learn: 20.1384849	total: 456ms	remaining: 34.3ms
93:	learn: 20.0260709	total: 460ms	remaining: 29.4ms
94:	learn: 19.9122100	total: 465ms	remaining: 24.5ms
95:	learn: 19.8648487	total: 473ms	remaining: 19.7ms
96:	learn: 19.8207072	total: 481ms	remaining: 14.9ms
97:	learn: 19.7261189	total: 489ms	remaining: 9.98ms
98:	learn: 19.7042438	total: 497ms	remaining: 5.02ms
99:	learn: 19.6546645	total: 503ms	remaining: 0us
0:	learn: 47.0239288	total: 5.75ms	remaining: 569ms
1:	learn: 46.2253829	total: 9.85ms	remaining: 482ms
2:	learn: 45.5580301	total: 13.8ms	remaining: 447ms
3:	learn: 44.7273237	total: 18.1ms	remaining: 435ms
4:	learn: 43.8867421	total: 22ms	remaining: 418ms
5:	learn: 43.3615911	total: 25.9ms	remaining: 405ms
6:	learn: 42.8548390	total: 29.8ms	remaining: 395ms
7:	learn: 42.1606758	total: 33.9ms	remaining: 390ms
8:	learn: 41.6625870	total: 37.7ms	remaining: 381ms
9:	learn: 40.9497092	total: 41.5ms	remaining: 374ms
10:	learn: 40.1886318	total: 45.5ms	remaining: 368ms
11:	learn: 39.7456423	total: 49.3ms	remaining: 362ms
12:	learn: 39.1171373	total: 53.4ms	remaining: 357ms
13:	learn: 38.5451069	total: 57.1ms	remaining: 351ms
14:	learn: 38.0155834	total: 61ms	remaining: 346ms
15:	learn: 37.5631354	total: 65.1ms	remaining: 342ms
16:	learn: 37.1030023	total: 69.1ms	remaining: 338ms
17:	learn: 36.4563029	total: 73.1ms	remaining: 333ms
18:	learn: 36.0160976	total: 77.2ms	remaining: 329ms
19:	learn: 35.5079827	total: 81.2ms	remaining: 325ms
20:	learn: 35.2111885	total: 85.7ms	remaining: 322ms
21:	learn: 34.9397465	total: 90.5ms	remaining: 321ms
22:	learn: 34.5270048	total: 94.8ms	remaining: 317ms
23:	learn: 34.0169260	total: 99.3ms	remaining: 315ms
24:	learn: 33.7454892	total: 104ms	remaining: 312ms
25:	learn: 33.2648157	total: 108ms	remaining: 308ms
26:	learn: 32.8899427	total: 113ms	remaining: 305ms
27:	learn: 32.6185050	total: 118ms	remaining: 302ms
28:	learn: 32.3528531	total: 125ms	remaining: 307ms
29:	learn: 32.0859923	total: 132ms	remaining: 309ms
30:	learn: 31.6511144	total: 141ms	remaining: 313ms
31:	learn: 31.2571765	total: 146ms	remaining: 310ms
32:	learn: 30.9770049	total: 153ms	remaining: 310ms
33:	learn: 30.6084872	total: 158ms	remaining: 307ms
34:	learn: 30.3448632	total: 163ms	remaining: 303ms
35:	learn: 30.0360942	total: 168ms	remaining: 299ms
36:	learn: 29.6648968	total: 173ms	remaining: 295ms
37:	learn: 29.3165114	total: 179ms	remaining: 291ms
38:	learn: 29.0829198	total: 183ms	remaining: 287ms
39:	learn: 28.7752064	total: 188ms	remaining: 283ms
40:	learn: 28.3622191	total: 194ms	remaining: 279ms
41:	learn: 28.1346631	total: 199ms	remaining: 275ms
42:	learn: 27.9585719	total: 204ms	remaining: 271ms
43:	learn: 27.6565566	total: 209ms	remaining: 266ms
44:	learn: 27.3616172	total: 214ms	remaining: 261ms
45:	learn: 27.0658637	total: 219ms	remaining: 257ms
46:	learn: 26.8660382	total: 224ms	remaining: 253ms
47:	learn: 26.6536078	total: 228ms	remaining: 247ms
48:	learn: 26.3524440	total: 232ms	remaining: 242ms
49:	learn: 26.1595277	total: 236ms	remaining: 236ms
50:	learn: 25.9273523	total: 241ms	remaining: 231ms
51:	learn: 25.7195580	total: 245ms	remaining: 226ms
52:	learn: 25.5730225	total: 249ms	remaining: 221ms
53:	learn: 25.3455276	total: 254ms	remaining: 216ms
54:	learn: 25.2289675	total: 258ms	remaining: 211ms
55:	learn: 25.0133024	total: 263ms	remaining: 206ms
56:	learn: 24.8406714	total: 267ms	remaining: 201ms
57:	learn: 24.6367857	total: 271ms	remaining: 196ms
58:	learn: 24.5338177	total: 275ms	remaining: 191ms
59:	learn: 24.3799964	total: 280ms	remaining: 186ms
60:	learn: 24.1447492	total: 284ms	remaining: 182ms
61:	learn: 23.9880495	total: 289ms	remaining: 177ms
62:	learn: 23.7140630	total: 293ms	remaining: 172ms
63:	learn: 23.5003791	total: 298ms	remaining: 167ms
64:	learn: 23.3207645	total: 303ms	remaining: 163ms
65:	learn: 23.1958356	total: 307ms	remaining: 158ms
66:	learn: 23.0471302	total: 312ms	remaining: 153ms
67:	learn: 22.8977183	total: 317ms	remaining: 149ms
68:	learn: 22.7187400	total: 324ms	remaining: 146ms
69:	learn: 22.6523405	total: 332ms	remaining: 142ms
70:	learn: 22.4767453	total: 340ms	remaining: 139ms
71:	learn: 22.3243677	total: 346ms	remaining: 134ms
72:	learn: 22.2133096	total: 352ms	remaining: 130ms
73:	learn: 22.1151713	total: 357ms	remaining: 125ms
74:	learn: 22.0296666	total: 362ms	remaining: 121ms
75:	learn: 21.9195980	total: 367ms	remaining: 116ms
76:	learn: 21.8401730	total: 372ms	remaining: 111ms
77:	learn: 21.8079797	total: 377ms	remaining: 106ms
78:	learn: 21.7274109	total: 382ms	remaining: 102ms
79:	learn: 21.6663032	total: 387ms	remaining: 96.8ms
80:	learn: 21.5633117	total: 392ms	remaining: 92ms
81:	learn: 21.4542467	total: 397ms	remaining: 87.1ms
82:	learn: 21.3177957	total: 403ms	remaining: 82.5ms
83:	learn: 21.1289167	total: 409ms	remaining: 77.8ms
84:	learn: 21.0297368	total: 414ms	remaining: 73.1ms
85:	learn: 20.9089564	total: 421ms	remaining: 68.5ms
86:	learn: 20.7653988	total: 426ms	remaining: 63.6ms
87:	learn: 20.6521894	total: 431ms	remaining: 58.7ms
88:	learn: 20.5193021	total: 435ms	remaining: 53.8ms
89:	learn: 20.4361620	total: 440ms	remaining: 48.8ms
90:	learn: 20.3546710	total: 444ms	remaining: 43.9ms
91:	learn: 20.2513296	total: 448ms	remaining: 38.9ms
92:	learn: 20.1605550	total: 452ms	remaining: 34ms
93:	learn: 20.0515942	total: 456ms	remaining: 29.1ms
94:	learn: 19.9800764	total: 461ms	remaining: 24.2ms
95:	learn: 19.8996532	total: 465ms	remaining: 19.4ms
96:	learn: 19.8450910	total: 469ms	remaining: 14.5ms
97:	learn: 19.7887346	total: 473ms	remaining: 9.66ms
98:	learn: 19.7230872	total: 478ms	remaining: 4.82ms
99:	learn: 19.6328825	total: 482ms	remaining: 0us
avg_Mae_val de la población en la generación 12: 17.77887617782591 con std media = 9.109663778254031
Mae_val del Mejor modelo en la generación 12: 17.7789 con std = 9.1097
0:	learn: 27.5585353	total: 7.7ms	remaining: 762ms
1:	learn: 27.1656995	total: 12.5ms	remaining: 614ms
2:	learn: 26.8590175	total: 17.7ms	remaining: 573ms
3:	learn: 26.5818406	total: 23ms	remaining: 553ms
4:	learn: 26.1148663	total: 28.2ms	remaining: 535ms
5:	learn: 25.7690484	total: 33ms	remaining: 518ms
6:	learn: 25.3489206	total: 38.5ms	remaining: 511ms
7:	learn: 24.9542406	total: 44.3ms	remaining: 509ms
8:	learn: 24.6777517	total: 49.4ms	remaining: 500ms
9:	learn: 24.3242344	total: 54.2ms	remaining: 488ms
10:	learn: 24.0383073	total: 58.9ms	remaining: 477ms
11:	learn: 23.7383420	total: 63.7ms	remaining: 467ms
12:	learn: 23.3461670	total: 68.1ms	remaining: 456ms
13:	learn: 23.0928636	total: 72.5ms	remaining: 446ms
14:	learn: 22.8770414	total: 77.5ms	remaining: 439ms
15:	learn: 22.6323214	total: 82.2ms	remaining: 432ms
16:	learn: 22.3597072	total: 87.6ms	remaining: 428ms
17:	learn: 22.1079813	total: 93.3ms	remaining: 425ms
18:	learn: 21.8421199	total: 97.5ms	remaining: 416ms
19:	learn: 21.6576508	total: 102ms	remaining: 406ms
20:	learn: 21.4301268	total: 106ms	remaining: 397ms
21:	learn: 21.2287388	total: 110ms	remaining: 390ms
22:	learn: 21.0553872	total: 114ms	remaining: 382ms
23:	learn: 20.8977091	total: 118ms	remaining: 373ms
24:	learn: 20.6619051	total: 122ms	remaining: 365ms
25:	learn: 20.5040955	total: 125ms	remaining: 357ms
26:	learn: 20.3181195	total: 130ms	remaining: 351ms
27:	learn: 20.0869436	total: 134ms	remaining: 344ms
28:	learn: 19.9375985	total: 138ms	remaining: 337ms
29:	learn: 19.8247516	total: 142ms	remaining: 331ms
30:	learn: 19.6261697	total: 146ms	remaining: 326ms
31:	learn: 19.4547236	total: 150ms	remaining: 320ms
32:	learn: 19.3157092	total: 155ms	remaining: 315ms
33:	learn: 19.1561419	total: 160ms	remaining: 310ms
34:	learn: 19.0453620	total: 164ms	remaining: 305ms
35:	learn: 18.8738574	total: 169ms	remaining: 300ms
36:	learn: 18.7072907	total: 173ms	remaining: 295ms
37:	learn: 18.5877943	total: 178ms	remaining: 290ms
38:	learn: 18.4436380	total: 184ms	remaining: 287ms
39:	learn: 18.3463356	total: 191ms	remaining: 287ms
40:	learn: 18.2008059	total: 199ms	remaining: 286ms
41:	learn: 18.0582079	total: 207ms	remaining: 286ms
42:	learn: 17.8891982	total: 216ms	remaining: 286ms
43:	learn: 17.7332246	total: 221ms	remaining: 281ms
44:	learn: 17.6206421	total: 226ms	remaining: 277ms
45:	learn: 17.4982800	total: 232ms	remaining: 272ms
46:	learn: 17.3970150	total: 237ms	remaining: 267ms
47:	learn: 17.3058203	total: 242ms	remaining: 262ms
48:	learn: 17.1789256	total: 248ms	remaining: 258ms
49:	learn: 17.0916229	total: 253ms	remaining: 253ms
50:	learn: 16.9859820	total: 258ms	remaining: 248ms
51:	learn: 16.8995582	total: 263ms	remaining: 243ms
52:	learn: 16.8137014	total: 268ms	remaining: 237ms
53:	learn: 16.7021451	total: 273ms	remaining: 232ms
54:	learn: 16.5895582	total: 278ms	remaining: 228ms
55:	learn: 16.5015639	total: 284ms	remaining: 223ms
56:	learn: 16.4356637	total: 288ms	remaining: 217ms
57:	learn: 16.3514525	total: 292ms	remaining: 212ms
58:	learn: 16.2401369	total: 296ms	remaining: 206ms
59:	learn: 16.1293223	total: 301ms	remaining: 200ms
60:	learn: 16.0271167	total: 305ms	remaining: 195ms
61:	learn: 15.9126257	total: 309ms	remaining: 189ms
62:	learn: 15.8391096	total: 313ms	remaining: 184ms
63:	learn: 15.7441773	total: 317ms	remaining: 178ms
64:	learn: 15.6885195	total: 321ms	remaining: 173ms
65:	learn: 15.6052039	total: 325ms	remaining: 167ms
66:	learn: 15.5074202	total: 329ms	remaining: 162ms
67:	learn: 15.4054338	total: 334ms	remaining: 157ms
68:	learn: 15.2885714	total: 338ms	remaining: 152ms
69:	learn: 15.2157472	total: 342ms	remaining: 147ms
70:	learn: 15.1031554	total: 346ms	remaining: 141ms
71:	learn: 15.0237470	total: 350ms	remaining: 136ms
72:	learn: 14.9756825	total: 355ms	remaining: 131ms
73:	learn: 14.8840596	total: 360ms	remaining: 126ms
74:	learn: 14.8077061	total: 364ms	remaining: 121ms
75:	learn: 14.7444437	total: 369ms	remaining: 116ms
76:	learn: 14.6751720	total: 373ms	remaining: 111ms
77:	learn: 14.5830333	total: 378ms	remaining: 107ms
78:	learn: 14.5241206	total: 382ms	remaining: 102ms
79:	learn: 14.4892731	total: 391ms	remaining: 97.7ms
80:	learn: 14.4256605	total: 398ms	remaining: 93.4ms
81:	learn: 14.3666860	total: 407ms	remaining: 89.4ms
82:	learn: 14.2938372	total: 415ms	remaining: 85.1ms
83:	learn: 14.2161532	total: 420ms	remaining: 80.1ms
84:	learn: 14.1582910	total: 426ms	remaining: 75.2ms
85:	learn: 14.1029153	total: 431ms	remaining: 70.1ms
86:	learn: 14.0475835	total: 435ms	remaining: 65.1ms
87:	learn: 13.9892661	total: 441ms	remaining: 60.1ms
88:	learn: 13.9481628	total: 446ms	remaining: 55.1ms
89:	learn: 13.8483991	total: 451ms	remaining: 50.1ms
90:	learn: 13.7775614	total: 456ms	remaining: 45.1ms
91:	learn: 13.7304585	total: 461ms	remaining: 40.1ms
92:	learn: 13.6783381	total: 466ms	remaining: 35.1ms
93:	learn: 13.6356964	total: 471ms	remaining: 30ms
94:	learn: 13.5924371	total: 476ms	remaining: 25ms
95:	learn: 13.5400746	total: 481ms	remaining: 20ms
96:	learn: 13.4897333	total: 486ms	remaining: 15ms
97:	learn: 13.4470321	total: 490ms	remaining: 10ms
98:	learn: 13.3856082	total: 494ms	remaining: 4.99ms
99:	learn: 13.3082371	total: 499ms	remaining: 0us
0:	learn: 43.0395283	total: 4.33ms	remaining: 429ms
1:	learn: 42.1130223	total: 8.77ms	remaining: 430ms
2:	learn: 41.1753409	total: 13.4ms	remaining: 435ms
3:	learn: 40.3637444	total: 17.8ms	remaining: 427ms
4:	learn: 39.6508088	total: 22.7ms	remaining: 431ms
5:	learn: 38.7217934	total: 27.3ms	remaining: 427ms
6:	learn: 37.8538055	total: 31.5ms	remaining: 419ms
7:	learn: 36.9793574	total: 35.7ms	remaining: 411ms
8:	learn: 36.3076984	total: 40.2ms	remaining: 406ms
9:	learn: 35.6673160	total: 47.9ms	remaining: 431ms
10:	learn: 34.8889800	total: 54.9ms	remaining: 444ms
11:	learn: 34.1675517	total: 61.7ms	remaining: 452ms
12:	learn: 33.6779564	total: 68.6ms	remaining: 459ms
13:	learn: 33.0710039	total: 76.2ms	remaining: 468ms
14:	learn: 32.4966674	total: 81.5ms	remaining: 462ms
15:	learn: 31.9492856	total: 86.7ms	remaining: 455ms
16:	learn: 31.5108129	total: 91.6ms	remaining: 447ms
17:	learn: 30.9804023	total: 96.8ms	remaining: 441ms
18:	learn: 30.4169089	total: 102ms	remaining: 435ms
19:	learn: 29.8930375	total: 107ms	remaining: 428ms
20:	learn: 29.3974421	total: 113ms	remaining: 423ms
21:	learn: 28.8792307	total: 118ms	remaining: 417ms
22:	learn: 28.3894474	total: 123ms	remaining: 410ms
23:	learn: 27.9921276	total: 128ms	remaining: 405ms
24:	learn: 27.6158887	total: 133ms	remaining: 398ms
25:	learn: 27.2866950	total: 138ms	remaining: 392ms
26:	learn: 26.8770708	total: 143ms	remaining: 387ms
27:	learn: 26.6233005	total: 149ms	remaining: 382ms
28:	learn: 26.2921934	total: 153ms	remaining: 374ms
29:	learn: 25.9156920	total: 157ms	remaining: 367ms
30:	learn: 25.5311106	total: 159ms	remaining: 354ms
31:	learn: 25.2178997	total: 164ms	remaining: 348ms
32:	learn: 24.8572196	total: 168ms	remaining: 340ms
33:	learn: 24.5849710	total: 172ms	remaining: 333ms
34:	learn: 24.2209190	total: 176ms	remaining: 326ms
35:	learn: 23.8708250	total: 180ms	remaining: 320ms
36:	learn: 23.5325279	total: 185ms	remaining: 314ms
37:	learn: 23.2116148	total: 189ms	remaining: 308ms
38:	learn: 22.9696787	total: 193ms	remaining: 302ms
39:	learn: 22.7936783	total: 198ms	remaining: 296ms
40:	learn: 22.6228847	total: 201ms	remaining: 290ms
41:	learn: 22.3691527	total: 206ms	remaining: 284ms
42:	learn: 22.1002173	total: 210ms	remaining: 278ms
43:	learn: 21.9157268	total: 214ms	remaining: 273ms
44:	learn: 21.7229102	total: 219ms	remaining: 267ms
45:	learn: 21.4642005	total: 223ms	remaining: 262ms
46:	learn: 21.3029442	total: 227ms	remaining: 256ms
47:	learn: 21.1469792	total: 232ms	remaining: 251ms
48:	learn: 20.9458235	total: 236ms	remaining: 246ms
49:	learn: 20.7335242	total: 241ms	remaining: 241ms
50:	learn: 20.5440269	total: 245ms	remaining: 236ms
51:	learn: 20.3661449	total: 250ms	remaining: 231ms
52:	learn: 20.2158134	total: 255ms	remaining: 226ms
53:	learn: 19.9934873	total: 261ms	remaining: 223ms
54:	learn: 19.7879739	total: 269ms	remaining: 220ms
55:	learn: 19.6630460	total: 276ms	remaining: 217ms
56:	learn: 19.5152729	total: 283ms	remaining: 214ms
57:	learn: 19.3581128	total: 290ms	remaining: 210ms
58:	learn: 19.2209303	total: 296ms	remaining: 206ms
59:	learn: 19.0965248	total: 302ms	remaining: 201ms
60:	learn: 19.0035954	total: 308ms	remaining: 197ms
61:	learn: 18.8554149	total: 313ms	remaining: 192ms
62:	learn: 18.7095427	total: 318ms	remaining: 187ms
63:	learn: 18.5751494	total: 324ms	remaining: 183ms
64:	learn: 18.4678251	total: 330ms	remaining: 178ms
65:	learn: 18.3500325	total: 336ms	remaining: 173ms
66:	learn: 18.2088983	total: 341ms	remaining: 168ms
67:	learn: 18.0737705	total: 346ms	remaining: 163ms
68:	learn: 17.9325058	total: 350ms	remaining: 157ms
69:	learn: 17.8003911	total: 355ms	remaining: 152ms
70:	learn: 17.7385366	total: 360ms	remaining: 147ms
71:	learn: 17.6106998	total: 364ms	remaining: 142ms
72:	learn: 17.4816270	total: 369ms	remaining: 136ms
73:	learn: 17.4025554	total: 374ms	remaining: 131ms
74:	learn: 17.2902108	total: 379ms	remaining: 126ms
75:	learn: 17.2158048	total: 384ms	remaining: 121ms
76:	learn: 17.1261053	total: 389ms	remaining: 116ms
77:	learn: 17.0308917	total: 394ms	remaining: 111ms
78:	learn: 16.9546705	total: 399ms	remaining: 106ms
79:	learn: 16.8319165	total: 403ms	remaining: 101ms
80:	learn: 16.7687017	total: 407ms	remaining: 95.6ms
81:	learn: 16.6972326	total: 412ms	remaining: 90.4ms
82:	learn: 16.6124580	total: 416ms	remaining: 85.2ms
83:	learn: 16.4999052	total: 420ms	remaining: 80.1ms
84:	learn: 16.4302484	total: 425ms	remaining: 75ms
85:	learn: 16.3201363	total: 430ms	remaining: 69.9ms
86:	learn: 16.2534314	total: 434ms	remaining: 64.9ms
87:	learn: 16.1720485	total: 439ms	remaining: 59.9ms
88:	learn: 16.0625751	total: 444ms	remaining: 54.8ms
89:	learn: 15.9135088	total: 448ms	remaining: 49.8ms
90:	learn: 15.8658863	total: 456ms	remaining: 45.1ms
91:	learn: 15.8066805	total: 463ms	remaining: 40.3ms
92:	learn: 15.7412103	total: 473ms	remaining: 35.6ms
93:	learn: 15.6542776	total: 479ms	remaining: 30.6ms
94:	learn: 15.5760334	total: 486ms	remaining: 25.6ms
95:	learn: 15.5434131	total: 491ms	remaining: 20.5ms
96:	learn: 15.4709561	total: 496ms	remaining: 15.4ms
97:	learn: 15.4449618	total: 501ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 507ms	remaining: 5.12ms
99:	learn: 15.3106595	total: 512ms	remaining: 0us
0:	learn: 46.7142257	total: 4.73ms	remaining: 469ms
1:	learn: 45.7634153	total: 8.87ms	remaining: 435ms
2:	learn: 45.0054253	total: 12.8ms	remaining: 414ms
3:	learn: 44.2120432	total: 16.8ms	remaining: 403ms
4:	learn: 43.3960472	total: 20.5ms	remaining: 389ms
5:	learn: 42.8588120	total: 24.7ms	remaining: 387ms
6:	learn: 41.9533701	total: 28.7ms	remaining: 381ms
7:	learn: 41.2745030	total: 32.7ms	remaining: 376ms
8:	learn: 40.6797495	total: 36.7ms	remaining: 371ms
9:	learn: 39.9899571	total: 40.6ms	remaining: 365ms
10:	learn: 39.4682100	total: 44.6ms	remaining: 361ms
11:	learn: 39.0305595	total: 48.8ms	remaining: 358ms
12:	learn: 38.4200417	total: 53.2ms	remaining: 356ms
13:	learn: 37.8425194	total: 57.4ms	remaining: 352ms
14:	learn: 37.4203127	total: 61.5ms	remaining: 349ms
15:	learn: 36.9917688	total: 65.3ms	remaining: 343ms
16:	learn: 36.5544138	total: 69.9ms	remaining: 341ms
17:	learn: 36.0727019	total: 74.3ms	remaining: 339ms
18:	learn: 35.4835715	total: 79.1ms	remaining: 337ms
19:	learn: 34.9865654	total: 83.8ms	remaining: 335ms
20:	learn: 34.6063373	total: 88.1ms	remaining: 331ms
21:	learn: 34.0997289	total: 92.7ms	remaining: 328ms
22:	learn: 33.7313171	total: 97.4ms	remaining: 326ms
23:	learn: 33.3582000	total: 102ms	remaining: 323ms
24:	learn: 32.9432456	total: 108ms	remaining: 324ms
25:	learn: 32.5220888	total: 115ms	remaining: 328ms
26:	learn: 32.2172292	total: 123ms	remaining: 332ms
27:	learn: 31.8972904	total: 131ms	remaining: 336ms
28:	learn: 31.6405350	total: 139ms	remaining: 340ms
29:	learn: 31.4167702	total: 144ms	remaining: 337ms
30:	learn: 30.8541961	total: 147ms	remaining: 326ms
31:	learn: 30.5572111	total: 152ms	remaining: 323ms
32:	learn: 30.1700399	total: 158ms	remaining: 320ms
33:	learn: 29.8537271	total: 164ms	remaining: 317ms
34:	learn: 29.6192540	total: 169ms	remaining: 313ms
35:	learn: 29.3276362	total: 174ms	remaining: 309ms
36:	learn: 28.9985179	total: 179ms	remaining: 305ms
37:	learn: 28.7046880	total: 184ms	remaining: 301ms
38:	learn: 28.4412677	total: 190ms	remaining: 297ms
39:	learn: 28.1277292	total: 195ms	remaining: 293ms
40:	learn: 27.9000750	total: 200ms	remaining: 288ms
41:	learn: 27.5433162	total: 205ms	remaining: 284ms
42:	learn: 27.2493285	total: 211ms	remaining: 279ms
43:	learn: 26.9576632	total: 213ms	remaining: 271ms
44:	learn: 26.6177110	total: 217ms	remaining: 266ms
45:	learn: 26.2812456	total: 222ms	remaining: 260ms
46:	learn: 26.0803859	total: 226ms	remaining: 255ms
47:	learn: 25.9543581	total: 230ms	remaining: 249ms
48:	learn: 25.7951582	total: 234ms	remaining: 244ms
49:	learn: 25.6548184	total: 238ms	remaining: 238ms
50:	learn: 25.4010843	total: 242ms	remaining: 233ms
51:	learn: 24.9773937	total: 246ms	remaining: 227ms
52:	learn: 24.8026156	total: 250ms	remaining: 222ms
53:	learn: 24.5568053	total: 254ms	remaining: 217ms
54:	learn: 24.2281839	total: 258ms	remaining: 211ms
55:	learn: 23.9202795	total: 262ms	remaining: 206ms
56:	learn: 23.7625591	total: 267ms	remaining: 201ms
57:	learn: 23.5429721	total: 271ms	remaining: 197ms
58:	learn: 23.3175893	total: 276ms	remaining: 192ms
59:	learn: 23.2035130	total: 280ms	remaining: 187ms
60:	learn: 23.0232450	total: 285ms	remaining: 182ms
61:	learn: 22.8384958	total: 290ms	remaining: 177ms
62:	learn: 22.6499902	total: 294ms	remaining: 173ms
63:	learn: 22.4577426	total: 299ms	remaining: 168ms
64:	learn: 22.3333158	total: 304ms	remaining: 164ms
65:	learn: 22.2064131	total: 312ms	remaining: 161ms
66:	learn: 22.1434971	total: 320ms	remaining: 157ms
67:	learn: 21.9596519	total: 329ms	remaining: 155ms
68:	learn: 21.8475576	total: 337ms	remaining: 151ms
69:	learn: 21.6954745	total: 342ms	remaining: 146ms
70:	learn: 21.5635976	total: 347ms	remaining: 142ms
71:	learn: 21.4588506	total: 352ms	remaining: 137ms
72:	learn: 21.3527268	total: 358ms	remaining: 132ms
73:	learn: 21.2661288	total: 363ms	remaining: 128ms
74:	learn: 21.1817333	total: 368ms	remaining: 123ms
75:	learn: 21.0527553	total: 374ms	remaining: 118ms
76:	learn: 20.9229021	total: 379ms	remaining: 113ms
77:	learn: 20.7563946	total: 384ms	remaining: 108ms
78:	learn: 20.6569831	total: 389ms	remaining: 103ms
79:	learn: 20.4982663	total: 394ms	remaining: 98.5ms
80:	learn: 20.3185460	total: 399ms	remaining: 93.5ms
81:	learn: 20.2096241	total: 404ms	remaining: 88.7ms
82:	learn: 20.1274891	total: 409ms	remaining: 83.9ms
83:	learn: 20.0740139	total: 414ms	remaining: 78.8ms
84:	learn: 19.9630699	total: 418ms	remaining: 73.7ms
85:	learn: 19.8753899	total: 422ms	remaining: 68.6ms
86:	learn: 19.6563612	total: 426ms	remaining: 63.7ms
87:	learn: 19.4680232	total: 430ms	remaining: 58.6ms
88:	learn: 19.3503431	total: 434ms	remaining: 53.6ms
89:	learn: 19.2221379	total: 438ms	remaining: 48.7ms
90:	learn: 19.0732542	total: 442ms	remaining: 43.7ms
91:	learn: 18.9825190	total: 446ms	remaining: 38.8ms
92:	learn: 18.8839009	total: 451ms	remaining: 33.9ms
93:	learn: 18.8012219	total: 455ms	remaining: 29ms
94:	learn: 18.7172713	total: 458ms	remaining: 24.1ms
95:	learn: 18.6201170	total: 463ms	remaining: 19.3ms
96:	learn: 18.5318611	total: 468ms	remaining: 14.5ms
97:	learn: 18.3833356	total: 472ms	remaining: 9.64ms
98:	learn: 18.3289700	total: 477ms	remaining: 4.82ms
99:	learn: 18.2227333	total: 482ms	remaining: 0us
0:	learn: 46.3764524	total: 5.81ms	remaining: 575ms
1:	learn: 45.5561269	total: 10.7ms	remaining: 522ms
2:	learn: 44.8811245	total: 15.8ms	remaining: 510ms
3:	learn: 44.0788617	total: 21.1ms	remaining: 507ms
4:	learn: 43.3619790	total: 26.3ms	remaining: 499ms
5:	learn: 42.6912112	total: 31.5ms	remaining: 493ms
6:	learn: 42.2292118	total: 36.5ms	remaining: 485ms
7:	learn: 41.7725191	total: 41.9ms	remaining: 482ms
8:	learn: 41.1676614	total: 46.9ms	remaining: 474ms
9:	learn: 40.5771076	total: 51.9ms	remaining: 467ms
10:	learn: 39.8343757	total: 57.9ms	remaining: 468ms
11:	learn: 39.3761142	total: 63.9ms	remaining: 469ms
12:	learn: 38.5254692	total: 68.6ms	remaining: 459ms
13:	learn: 37.9629555	total: 72.8ms	remaining: 447ms
14:	learn: 37.4418438	total: 76.9ms	remaining: 436ms
15:	learn: 37.0507283	total: 81.2ms	remaining: 426ms
16:	learn: 36.6264217	total: 85.3ms	remaining: 417ms
17:	learn: 36.1114940	total: 89.6ms	remaining: 408ms
18:	learn: 35.7193862	total: 93.6ms	remaining: 399ms
19:	learn: 35.3301177	total: 98.3ms	remaining: 393ms
20:	learn: 35.0598280	total: 102ms	remaining: 385ms
21:	learn: 34.5469736	total: 107ms	remaining: 378ms
22:	learn: 34.2064215	total: 110ms	remaining: 370ms
23:	learn: 33.7280710	total: 115ms	remaining: 364ms
24:	learn: 33.3282940	total: 119ms	remaining: 358ms
25:	learn: 32.8478961	total: 124ms	remaining: 352ms
26:	learn: 32.5722164	total: 128ms	remaining: 346ms
27:	learn: 32.2457019	total: 133ms	remaining: 343ms
28:	learn: 31.9230495	total: 138ms	remaining: 338ms
29:	learn: 31.4311611	total: 143ms	remaining: 334ms
30:	learn: 30.9179052	total: 148ms	remaining: 330ms
31:	learn: 30.6201141	total: 154ms	remaining: 327ms
32:	learn: 30.3421106	total: 160ms	remaining: 324ms
33:	learn: 29.9885373	total: 165ms	remaining: 321ms
34:	learn: 29.7462780	total: 176ms	remaining: 326ms
35:	learn: 29.3607153	total: 194ms	remaining: 344ms
36:	learn: 29.1793078	total: 204ms	remaining: 347ms
37:	learn: 28.9276538	total: 211ms	remaining: 344ms
38:	learn: 28.6903934	total: 217ms	remaining: 340ms
39:	learn: 28.2095033	total: 224ms	remaining: 337ms
40:	learn: 27.7990608	total: 230ms	remaining: 331ms
41:	learn: 27.5406632	total: 236ms	remaining: 325ms
42:	learn: 27.2575376	total: 241ms	remaining: 320ms
43:	learn: 26.9741707	total: 247ms	remaining: 315ms
44:	learn: 26.6606899	total: 253ms	remaining: 309ms
45:	learn: 26.4015833	total: 258ms	remaining: 303ms
46:	learn: 26.1828993	total: 263ms	remaining: 297ms
47:	learn: 26.0233709	total: 267ms	remaining: 289ms
48:	learn: 25.9300399	total: 272ms	remaining: 283ms
49:	learn: 25.5861489	total: 276ms	remaining: 276ms
50:	learn: 25.4322012	total: 280ms	remaining: 269ms
51:	learn: 25.1595644	total: 285ms	remaining: 263ms
52:	learn: 24.9955303	total: 289ms	remaining: 257ms
53:	learn: 24.7273966	total: 294ms	remaining: 250ms
54:	learn: 24.5747978	total: 297ms	remaining: 243ms
55:	learn: 24.3807977	total: 302ms	remaining: 237ms
56:	learn: 24.1689569	total: 306ms	remaining: 231ms
57:	learn: 23.9898221	total: 310ms	remaining: 225ms
58:	learn: 23.7566414	total: 315ms	remaining: 219ms
59:	learn: 23.6641165	total: 319ms	remaining: 212ms
60:	learn: 23.5658066	total: 322ms	remaining: 206ms
61:	learn: 23.4338851	total: 327ms	remaining: 200ms
62:	learn: 23.2408837	total: 331ms	remaining: 194ms
63:	learn: 23.0642038	total: 335ms	remaining: 189ms
64:	learn: 22.9032045	total: 340ms	remaining: 183ms
65:	learn: 22.7736138	total: 345ms	remaining: 177ms
66:	learn: 22.6836443	total: 349ms	remaining: 172ms
67:	learn: 22.5983654	total: 353ms	remaining: 166ms
68:	learn: 22.4419813	total: 358ms	remaining: 161ms
69:	learn: 22.2863339	total: 362ms	remaining: 155ms
70:	learn: 22.1792943	total: 370ms	remaining: 151ms
71:	learn: 22.1130574	total: 378ms	remaining: 147ms
72:	learn: 21.9858161	total: 385ms	remaining: 142ms
73:	learn: 21.8577784	total: 392ms	remaining: 138ms
74:	learn: 21.7845222	total: 399ms	remaining: 133ms
75:	learn: 21.6831390	total: 404ms	remaining: 128ms
76:	learn: 21.6292521	total: 409ms	remaining: 122ms
77:	learn: 21.5789330	total: 415ms	remaining: 117ms
78:	learn: 21.5420942	total: 419ms	remaining: 112ms
79:	learn: 21.4280939	total: 425ms	remaining: 106ms
80:	learn: 21.3641165	total: 430ms	remaining: 101ms
81:	learn: 21.2734814	total: 435ms	remaining: 95.5ms
82:	learn: 21.2220323	total: 441ms	remaining: 90.3ms
83:	learn: 21.0625792	total: 446ms	remaining: 84.9ms
84:	learn: 20.9488320	total: 451ms	remaining: 79.6ms
85:	learn: 20.8504255	total: 456ms	remaining: 74.3ms
86:	learn: 20.7848510	total: 460ms	remaining: 68.8ms
87:	learn: 20.7247442	total: 465ms	remaining: 63.5ms
88:	learn: 20.5698590	total: 471ms	remaining: 58.2ms
89:	learn: 20.4067620	total: 476ms	remaining: 52.8ms
90:	learn: 20.3062482	total: 480ms	remaining: 47.4ms
91:	learn: 20.2029696	total: 484ms	remaining: 42.1ms
92:	learn: 20.1384849	total: 488ms	remaining: 36.7ms
93:	learn: 20.0260709	total: 492ms	remaining: 31.4ms
94:	learn: 19.9122100	total: 496ms	remaining: 26.1ms
95:	learn: 19.8648487	total: 500ms	remaining: 20.8ms
96:	learn: 19.8207072	total: 504ms	remaining: 15.6ms
97:	learn: 19.7261189	total: 508ms	remaining: 10.4ms
98:	learn: 19.7042438	total: 512ms	remaining: 5.17ms
99:	learn: 19.6546645	total: 516ms	remaining: 0us
0:	learn: 47.0239288	total: 7.83ms	remaining: 775ms
1:	learn: 46.2253829	total: 15.2ms	remaining: 743ms
2:	learn: 45.5580301	total: 24.5ms	remaining: 791ms
3:	learn: 44.7273237	total: 31.1ms	remaining: 746ms
4:	learn: 43.8867421	total: 36.7ms	remaining: 698ms
5:	learn: 43.3615911	total: 41.3ms	remaining: 648ms
6:	learn: 42.8548390	total: 46.4ms	remaining: 617ms
7:	learn: 42.1606758	total: 51.4ms	remaining: 591ms
8:	learn: 41.6625870	total: 56.4ms	remaining: 571ms
9:	learn: 40.9497092	total: 61.4ms	remaining: 553ms
10:	learn: 40.1886318	total: 66.7ms	remaining: 540ms
11:	learn: 39.7456423	total: 72.1ms	remaining: 529ms
12:	learn: 39.1171373	total: 77.8ms	remaining: 521ms
13:	learn: 38.5451069	total: 83.3ms	remaining: 512ms
14:	learn: 38.0155834	total: 88.1ms	remaining: 499ms
15:	learn: 37.5631354	total: 93ms	remaining: 488ms
16:	learn: 37.1030023	total: 98.3ms	remaining: 480ms
17:	learn: 36.4563029	total: 103ms	remaining: 471ms
18:	learn: 36.0160976	total: 108ms	remaining: 461ms
19:	learn: 35.5079827	total: 112ms	remaining: 449ms
20:	learn: 35.2111885	total: 116ms	remaining: 438ms
21:	learn: 34.9397465	total: 120ms	remaining: 426ms
22:	learn: 34.5270048	total: 124ms	remaining: 415ms
23:	learn: 34.0169260	total: 128ms	remaining: 406ms
24:	learn: 33.7454892	total: 133ms	remaining: 398ms
25:	learn: 33.2648157	total: 137ms	remaining: 389ms
26:	learn: 32.8899427	total: 141ms	remaining: 381ms
27:	learn: 32.6185050	total: 145ms	remaining: 372ms
28:	learn: 32.3528531	total: 148ms	remaining: 363ms
29:	learn: 32.0859923	total: 153ms	remaining: 356ms
30:	learn: 31.6511144	total: 157ms	remaining: 349ms
31:	learn: 31.2571765	total: 161ms	remaining: 342ms
32:	learn: 30.9770049	total: 164ms	remaining: 334ms
33:	learn: 30.6084872	total: 168ms	remaining: 327ms
34:	learn: 30.3448632	total: 173ms	remaining: 321ms
35:	learn: 30.0360942	total: 178ms	remaining: 316ms
36:	learn: 29.6648968	total: 182ms	remaining: 309ms
37:	learn: 29.3165114	total: 187ms	remaining: 305ms
38:	learn: 29.0829198	total: 191ms	remaining: 299ms
39:	learn: 28.7752064	total: 196ms	remaining: 293ms
40:	learn: 28.3622191	total: 200ms	remaining: 287ms
41:	learn: 28.1346631	total: 205ms	remaining: 283ms
42:	learn: 27.9585719	total: 212ms	remaining: 281ms
43:	learn: 27.6565566	total: 220ms	remaining: 280ms
44:	learn: 27.3616172	total: 230ms	remaining: 281ms
45:	learn: 27.0658637	total: 236ms	remaining: 277ms
46:	learn: 26.8660382	total: 242ms	remaining: 273ms
47:	learn: 26.6536078	total: 247ms	remaining: 268ms
48:	learn: 26.3524440	total: 252ms	remaining: 263ms
49:	learn: 26.1595277	total: 257ms	remaining: 257ms
50:	learn: 25.9273523	total: 262ms	remaining: 252ms
51:	learn: 25.7195580	total: 267ms	remaining: 247ms
52:	learn: 25.5730225	total: 272ms	remaining: 242ms
53:	learn: 25.3455276	total: 277ms	remaining: 236ms
54:	learn: 25.2289675	total: 282ms	remaining: 231ms
55:	learn: 25.0133024	total: 287ms	remaining: 226ms
56:	learn: 24.8406714	total: 293ms	remaining: 221ms
57:	learn: 24.6367857	total: 297ms	remaining: 215ms
58:	learn: 24.5338177	total: 302ms	remaining: 210ms
59:	learn: 24.3799964	total: 308ms	remaining: 205ms
60:	learn: 24.1447492	total: 312ms	remaining: 200ms
61:	learn: 23.9880495	total: 317ms	remaining: 194ms
62:	learn: 23.7140630	total: 320ms	remaining: 188ms
63:	learn: 23.5003791	total: 324ms	remaining: 183ms
64:	learn: 23.3207645	total: 328ms	remaining: 177ms
65:	learn: 23.1958356	total: 332ms	remaining: 171ms
66:	learn: 23.0471302	total: 336ms	remaining: 166ms
67:	learn: 22.8977183	total: 340ms	remaining: 160ms
68:	learn: 22.7187400	total: 345ms	remaining: 155ms
69:	learn: 22.6523405	total: 349ms	remaining: 149ms
70:	learn: 22.4767453	total: 353ms	remaining: 144ms
71:	learn: 22.3243677	total: 357ms	remaining: 139ms
72:	learn: 22.2133096	total: 361ms	remaining: 133ms
73:	learn: 22.1151713	total: 365ms	remaining: 128ms
74:	learn: 22.0296666	total: 369ms	remaining: 123ms
75:	learn: 21.9195980	total: 373ms	remaining: 118ms
76:	learn: 21.8401730	total: 377ms	remaining: 113ms
77:	learn: 21.8079797	total: 382ms	remaining: 108ms
78:	learn: 21.7274109	total: 386ms	remaining: 103ms
79:	learn: 21.6663032	total: 391ms	remaining: 97.7ms
80:	learn: 21.5633117	total: 395ms	remaining: 92.7ms
81:	learn: 21.4542467	total: 400ms	remaining: 87.7ms
82:	learn: 21.3177957	total: 404ms	remaining: 82.8ms
83:	learn: 21.1289167	total: 413ms	remaining: 78.6ms
84:	learn: 21.0297368	total: 421ms	remaining: 74.4ms
85:	learn: 20.9089564	total: 430ms	remaining: 70ms
86:	learn: 20.7653988	total: 439ms	remaining: 65.5ms
87:	learn: 20.6521894	total: 444ms	remaining: 60.6ms
88:	learn: 20.5193021	total: 450ms	remaining: 55.7ms
89:	learn: 20.4361620	total: 455ms	remaining: 50.6ms
90:	learn: 20.3546710	total: 460ms	remaining: 45.5ms
91:	learn: 20.2513296	total: 477ms	remaining: 41.5ms
92:	learn: 20.1605550	total: 483ms	remaining: 36.3ms
93:	learn: 20.0515942	total: 488ms	remaining: 31.1ms
94:	learn: 19.9800764	total: 493ms	remaining: 25.9ms
95:	learn: 19.8996532	total: 498ms	remaining: 20.7ms
96:	learn: 19.8450910	total: 503ms	remaining: 15.6ms
97:	learn: 19.7887346	total: 509ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 513ms	remaining: 5.18ms
99:	learn: 19.6328825	total: 517ms	remaining: 0us
0:	learn: 27.5585353	total: 5.09ms	remaining: 504ms
1:	learn: 27.1656995	total: 9.39ms	remaining: 460ms
2:	learn: 26.8590175	total: 13.7ms	remaining: 443ms
3:	learn: 26.5818406	total: 18.2ms	remaining: 437ms
4:	learn: 26.1148663	total: 23.1ms	remaining: 439ms
5:	learn: 25.7690484	total: 27.4ms	remaining: 429ms
6:	learn: 25.3489206	total: 31.8ms	remaining: 423ms
7:	learn: 24.9542406	total: 36.3ms	remaining: 417ms
8:	learn: 24.6777517	total: 40.8ms	remaining: 413ms
9:	learn: 24.3242344	total: 45.7ms	remaining: 411ms
10:	learn: 24.0383073	total: 50.9ms	remaining: 412ms
11:	learn: 23.7383420	total: 58.9ms	remaining: 432ms
12:	learn: 23.3461670	total: 67ms	remaining: 448ms
13:	learn: 23.0928636	total: 77.2ms	remaining: 474ms
14:	learn: 22.8770414	total: 83.2ms	remaining: 472ms
15:	learn: 22.6323214	total: 89.9ms	remaining: 472ms
16:	learn: 22.3597072	total: 98.2ms	remaining: 480ms
17:	learn: 22.1079813	total: 103ms	remaining: 470ms
18:	learn: 21.8421199	total: 108ms	remaining: 462ms
19:	learn: 21.6576508	total: 114ms	remaining: 456ms
20:	learn: 21.4301268	total: 119ms	remaining: 448ms
21:	learn: 21.2287388	total: 124ms	remaining: 440ms
22:	learn: 21.0553872	total: 129ms	remaining: 433ms
23:	learn: 20.8977091	total: 134ms	remaining: 425ms
24:	learn: 20.6619051	total: 139ms	remaining: 418ms
25:	learn: 20.5040955	total: 144ms	remaining: 411ms
26:	learn: 20.3181195	total: 149ms	remaining: 404ms
27:	learn: 20.0869436	total: 154ms	remaining: 397ms
28:	learn: 19.9375985	total: 160ms	remaining: 391ms
29:	learn: 19.8247516	total: 163ms	remaining: 381ms
30:	learn: 19.6261697	total: 168ms	remaining: 373ms
31:	learn: 19.4547236	total: 172ms	remaining: 365ms
32:	learn: 19.3157092	total: 176ms	remaining: 357ms
33:	learn: 19.1561419	total: 180ms	remaining: 349ms
34:	learn: 19.0453620	total: 184ms	remaining: 341ms
35:	learn: 18.8738574	total: 188ms	remaining: 334ms
36:	learn: 18.7072907	total: 192ms	remaining: 326ms
37:	learn: 18.5877943	total: 196ms	remaining: 320ms
38:	learn: 18.4436380	total: 201ms	remaining: 314ms
39:	learn: 18.3463356	total: 205ms	remaining: 307ms
40:	learn: 18.2008059	total: 209ms	remaining: 300ms
41:	learn: 18.0582079	total: 213ms	remaining: 294ms
42:	learn: 17.8891982	total: 218ms	remaining: 288ms
43:	learn: 17.7332246	total: 222ms	remaining: 282ms
44:	learn: 17.6206421	total: 226ms	remaining: 276ms
45:	learn: 17.4982800	total: 231ms	remaining: 271ms
46:	learn: 17.3970150	total: 235ms	remaining: 265ms
47:	learn: 17.3058203	total: 240ms	remaining: 259ms
48:	learn: 17.1789256	total: 244ms	remaining: 254ms
49:	learn: 17.0916229	total: 249ms	remaining: 249ms
50:	learn: 16.9859820	total: 253ms	remaining: 243ms
51:	learn: 16.8995582	total: 257ms	remaining: 237ms
52:	learn: 16.8137014	total: 262ms	remaining: 232ms
53:	learn: 16.7021451	total: 268ms	remaining: 228ms
54:	learn: 16.5895582	total: 276ms	remaining: 225ms
55:	learn: 16.5015639	total: 284ms	remaining: 223ms
56:	learn: 16.4356637	total: 291ms	remaining: 219ms
57:	learn: 16.3514525	total: 299ms	remaining: 216ms
58:	learn: 16.2401369	total: 304ms	remaining: 211ms
59:	learn: 16.1293223	total: 309ms	remaining: 206ms
60:	learn: 16.0271167	total: 314ms	remaining: 201ms
61:	learn: 15.9126257	total: 319ms	remaining: 196ms
62:	learn: 15.8391096	total: 325ms	remaining: 191ms
63:	learn: 15.7441773	total: 330ms	remaining: 186ms
64:	learn: 15.6885195	total: 335ms	remaining: 180ms
65:	learn: 15.6052039	total: 340ms	remaining: 175ms
66:	learn: 15.5074202	total: 345ms	remaining: 170ms
67:	learn: 15.4054338	total: 349ms	remaining: 164ms
68:	learn: 15.2885714	total: 354ms	remaining: 159ms
69:	learn: 15.2157472	total: 358ms	remaining: 154ms
70:	learn: 15.1031554	total: 363ms	remaining: 148ms
71:	learn: 15.0237470	total: 380ms	remaining: 148ms
72:	learn: 14.9756825	total: 384ms	remaining: 142ms
73:	learn: 14.8840596	total: 388ms	remaining: 136ms
74:	learn: 14.8077061	total: 392ms	remaining: 131ms
75:	learn: 14.7444437	total: 396ms	remaining: 125ms
76:	learn: 14.6751720	total: 400ms	remaining: 120ms
77:	learn: 14.5830333	total: 405ms	remaining: 114ms
78:	learn: 14.5241206	total: 408ms	remaining: 109ms
79:	learn: 14.4892731	total: 412ms	remaining: 103ms
80:	learn: 14.4256605	total: 416ms	remaining: 97.6ms
81:	learn: 14.3666860	total: 420ms	remaining: 92.2ms
82:	learn: 14.2938372	total: 425ms	remaining: 87ms
83:	learn: 14.2161532	total: 428ms	remaining: 81.6ms
84:	learn: 14.1582910	total: 433ms	remaining: 76.4ms
85:	learn: 14.1029153	total: 437ms	remaining: 71.1ms
86:	learn: 14.0475835	total: 442ms	remaining: 66ms
87:	learn: 13.9892661	total: 446ms	remaining: 60.9ms
88:	learn: 13.9481628	total: 451ms	remaining: 55.8ms
89:	learn: 13.8483991	total: 456ms	remaining: 50.6ms
90:	learn: 13.7775614	total: 460ms	remaining: 45.5ms
91:	learn: 13.7304585	total: 465ms	remaining: 40.4ms
92:	learn: 13.6783381	total: 469ms	remaining: 35.3ms
93:	learn: 13.6356964	total: 474ms	remaining: 30.2ms
94:	learn: 13.5924371	total: 482ms	remaining: 25.4ms
95:	learn: 13.5400746	total: 489ms	remaining: 20.4ms
96:	learn: 13.4897333	total: 497ms	remaining: 15.4ms
97:	learn: 13.4470321	total: 502ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 510ms	remaining: 5.15ms
99:	learn: 13.3082371	total: 515ms	remaining: 0us
0:	learn: 43.0395283	total: 4.97ms	remaining: 492ms
1:	learn: 42.1130223	total: 9.3ms	remaining: 456ms
2:	learn: 41.1753409	total: 13.8ms	remaining: 445ms
3:	learn: 40.3637444	total: 18.3ms	remaining: 439ms
4:	learn: 39.6508088	total: 23.8ms	remaining: 453ms
5:	learn: 38.7217934	total: 29.5ms	remaining: 462ms
6:	learn: 37.8538055	total: 33.4ms	remaining: 444ms
7:	learn: 36.9793574	total: 37.5ms	remaining: 431ms
8:	learn: 36.3076984	total: 41.6ms	remaining: 421ms
9:	learn: 35.6673160	total: 45.5ms	remaining: 410ms
10:	learn: 34.8889800	total: 49.2ms	remaining: 398ms
11:	learn: 34.1675517	total: 53.4ms	remaining: 391ms
12:	learn: 33.6779564	total: 57.5ms	remaining: 385ms
13:	learn: 33.0710039	total: 61.6ms	remaining: 378ms
14:	learn: 32.4966674	total: 65.5ms	remaining: 371ms
15:	learn: 31.9492856	total: 69.8ms	remaining: 366ms
16:	learn: 31.5108129	total: 73.7ms	remaining: 360ms
17:	learn: 30.9804023	total: 78ms	remaining: 355ms
18:	learn: 30.4169089	total: 81.9ms	remaining: 349ms
19:	learn: 29.8930375	total: 86.7ms	remaining: 347ms
20:	learn: 29.3974421	total: 91.4ms	remaining: 344ms
21:	learn: 28.8792307	total: 95.7ms	remaining: 339ms
22:	learn: 28.3894474	total: 101ms	remaining: 336ms
23:	learn: 27.9921276	total: 105ms	remaining: 332ms
24:	learn: 27.6158887	total: 109ms	remaining: 328ms
25:	learn: 27.2866950	total: 114ms	remaining: 325ms
26:	learn: 26.8770708	total: 119ms	remaining: 322ms
27:	learn: 26.6233005	total: 129ms	remaining: 330ms
28:	learn: 26.2921934	total: 136ms	remaining: 332ms
29:	learn: 25.9156920	total: 145ms	remaining: 337ms
30:	learn: 25.5311106	total: 147ms	remaining: 327ms
31:	learn: 25.2178997	total: 154ms	remaining: 328ms
32:	learn: 24.8572196	total: 160ms	remaining: 325ms
33:	learn: 24.5849710	total: 165ms	remaining: 320ms
34:	learn: 24.2209190	total: 170ms	remaining: 316ms
35:	learn: 23.8708250	total: 175ms	remaining: 312ms
36:	learn: 23.5325279	total: 180ms	remaining: 307ms
37:	learn: 23.2116148	total: 185ms	remaining: 302ms
38:	learn: 22.9696787	total: 190ms	remaining: 298ms
39:	learn: 22.7936783	total: 196ms	remaining: 294ms
40:	learn: 22.6228847	total: 201ms	remaining: 289ms
41:	learn: 22.3691527	total: 206ms	remaining: 285ms
42:	learn: 22.1002173	total: 211ms	remaining: 280ms
43:	learn: 21.9157268	total: 217ms	remaining: 276ms
44:	learn: 21.7229102	total: 222ms	remaining: 272ms
45:	learn: 21.4642005	total: 228ms	remaining: 267ms
46:	learn: 21.3029442	total: 232ms	remaining: 261ms
47:	learn: 21.1469792	total: 236ms	remaining: 256ms
48:	learn: 20.9458235	total: 240ms	remaining: 250ms
49:	learn: 20.7335242	total: 244ms	remaining: 244ms
50:	learn: 20.5440269	total: 248ms	remaining: 238ms
51:	learn: 20.3661449	total: 252ms	remaining: 233ms
52:	learn: 20.2158134	total: 256ms	remaining: 227ms
53:	learn: 19.9934873	total: 260ms	remaining: 221ms
54:	learn: 19.7879739	total: 264ms	remaining: 216ms
55:	learn: 19.6630460	total: 269ms	remaining: 211ms
56:	learn: 19.5152729	total: 273ms	remaining: 206ms
57:	learn: 19.3581128	total: 277ms	remaining: 200ms
58:	learn: 19.2209303	total: 281ms	remaining: 195ms
59:	learn: 19.0965248	total: 286ms	remaining: 191ms
60:	learn: 19.0035954	total: 291ms	remaining: 186ms
61:	learn: 18.8554149	total: 295ms	remaining: 181ms
62:	learn: 18.7095427	total: 300ms	remaining: 176ms
63:	learn: 18.5751494	total: 305ms	remaining: 171ms
64:	learn: 18.4678251	total: 310ms	remaining: 167ms
65:	learn: 18.3500325	total: 314ms	remaining: 162ms
66:	learn: 18.2088983	total: 319ms	remaining: 157ms
67:	learn: 18.0737705	total: 327ms	remaining: 154ms
68:	learn: 17.9325058	total: 335ms	remaining: 151ms
69:	learn: 17.8003911	total: 344ms	remaining: 147ms
70:	learn: 17.7385366	total: 351ms	remaining: 143ms
71:	learn: 17.6106998	total: 357ms	remaining: 139ms
72:	learn: 17.4816270	total: 362ms	remaining: 134ms
73:	learn: 17.4025554	total: 367ms	remaining: 129ms
74:	learn: 17.2902108	total: 373ms	remaining: 124ms
75:	learn: 17.2158048	total: 378ms	remaining: 119ms
76:	learn: 17.1261053	total: 383ms	remaining: 114ms
77:	learn: 17.0308917	total: 388ms	remaining: 109ms
78:	learn: 16.9546705	total: 405ms	remaining: 108ms
79:	learn: 16.8319165	total: 411ms	remaining: 103ms
80:	learn: 16.7687017	total: 416ms	remaining: 97.7ms
81:	learn: 16.6972326	total: 421ms	remaining: 92.5ms
82:	learn: 16.6124580	total: 426ms	remaining: 87.2ms
83:	learn: 16.4999052	total: 430ms	remaining: 81.9ms
84:	learn: 16.4302484	total: 434ms	remaining: 76.7ms
85:	learn: 16.3201363	total: 439ms	remaining: 71.4ms
86:	learn: 16.2534314	total: 443ms	remaining: 66.2ms
87:	learn: 16.1720485	total: 447ms	remaining: 60.9ms
88:	learn: 16.0625751	total: 451ms	remaining: 55.8ms
89:	learn: 15.9135088	total: 455ms	remaining: 50.6ms
90:	learn: 15.8658863	total: 460ms	remaining: 45.5ms
91:	learn: 15.8066805	total: 465ms	remaining: 40.5ms
92:	learn: 15.7412103	total: 471ms	remaining: 35.4ms
93:	learn: 15.6542776	total: 476ms	remaining: 30.4ms
94:	learn: 15.5760334	total: 480ms	remaining: 25.3ms
95:	learn: 15.5434131	total: 485ms	remaining: 20.2ms
96:	learn: 15.4709561	total: 491ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 495ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 500ms	remaining: 5.05ms
99:	learn: 15.3106595	total: 505ms	remaining: 0us
0:	learn: 46.7142257	total: 5.3ms	remaining: 525ms
1:	learn: 45.7634153	total: 10.3ms	remaining: 507ms
2:	learn: 45.0054253	total: 15.6ms	remaining: 504ms
3:	learn: 44.2120432	total: 24ms	remaining: 577ms
4:	learn: 43.3960472	total: 29.3ms	remaining: 557ms
5:	learn: 42.8588120	total: 34.6ms	remaining: 542ms
6:	learn: 41.9533701	total: 40.3ms	remaining: 535ms
7:	learn: 41.2745030	total: 45.7ms	remaining: 525ms
8:	learn: 40.6797495	total: 50.6ms	remaining: 511ms
9:	learn: 39.9899571	total: 55ms	remaining: 495ms
10:	learn: 39.4682100	total: 60.3ms	remaining: 488ms
11:	learn: 39.0305595	total: 65.7ms	remaining: 482ms
12:	learn: 38.4200417	total: 70.2ms	remaining: 470ms
13:	learn: 37.8425194	total: 74.2ms	remaining: 456ms
14:	learn: 37.4203127	total: 78.2ms	remaining: 443ms
15:	learn: 36.9917688	total: 82.4ms	remaining: 433ms
16:	learn: 36.5544138	total: 86.4ms	remaining: 422ms
17:	learn: 36.0727019	total: 90.4ms	remaining: 412ms
18:	learn: 35.4835715	total: 94.3ms	remaining: 402ms
19:	learn: 34.9865654	total: 98.6ms	remaining: 394ms
20:	learn: 34.6063373	total: 103ms	remaining: 386ms
21:	learn: 34.0997289	total: 107ms	remaining: 380ms
22:	learn: 33.7313171	total: 111ms	remaining: 372ms
23:	learn: 33.3582000	total: 115ms	remaining: 365ms
24:	learn: 32.9432456	total: 119ms	remaining: 358ms
25:	learn: 32.5220888	total: 123ms	remaining: 351ms
26:	learn: 32.2172292	total: 128ms	remaining: 345ms
27:	learn: 31.8972904	total: 132ms	remaining: 339ms
28:	learn: 31.6405350	total: 136ms	remaining: 333ms
29:	learn: 31.4167702	total: 140ms	remaining: 326ms
30:	learn: 30.8541961	total: 141ms	remaining: 315ms
31:	learn: 30.5572111	total: 146ms	remaining: 310ms
32:	learn: 30.1700399	total: 151ms	remaining: 306ms
33:	learn: 29.8537271	total: 156ms	remaining: 302ms
34:	learn: 29.6192540	total: 160ms	remaining: 297ms
35:	learn: 29.3276362	total: 165ms	remaining: 293ms
36:	learn: 28.9985179	total: 169ms	remaining: 288ms
37:	learn: 28.7046880	total: 174ms	remaining: 284ms
38:	learn: 28.4412677	total: 179ms	remaining: 280ms
39:	learn: 28.1277292	total: 187ms	remaining: 280ms
40:	learn: 27.9000750	total: 194ms	remaining: 279ms
41:	learn: 27.5433162	total: 203ms	remaining: 280ms
42:	learn: 27.2493285	total: 209ms	remaining: 277ms
43:	learn: 26.9576632	total: 212ms	remaining: 270ms
44:	learn: 26.6177110	total: 217ms	remaining: 266ms
45:	learn: 26.2812456	total: 223ms	remaining: 262ms
46:	learn: 26.0803859	total: 228ms	remaining: 257ms
47:	learn: 25.9543581	total: 233ms	remaining: 252ms
48:	learn: 25.7951582	total: 238ms	remaining: 248ms
49:	learn: 25.6548184	total: 243ms	remaining: 243ms
50:	learn: 25.4010843	total: 248ms	remaining: 238ms
51:	learn: 24.9773937	total: 253ms	remaining: 234ms
52:	learn: 24.8026156	total: 259ms	remaining: 229ms
53:	learn: 24.5568053	total: 263ms	remaining: 224ms
54:	learn: 24.2281839	total: 268ms	remaining: 220ms
55:	learn: 23.9202795	total: 274ms	remaining: 215ms
56:	learn: 23.7625591	total: 279ms	remaining: 211ms
57:	learn: 23.5429721	total: 284ms	remaining: 206ms
58:	learn: 23.3175893	total: 288ms	remaining: 200ms
59:	learn: 23.2035130	total: 292ms	remaining: 195ms
60:	learn: 23.0232450	total: 296ms	remaining: 189ms
61:	learn: 22.8384958	total: 300ms	remaining: 184ms
62:	learn: 22.6499902	total: 304ms	remaining: 179ms
63:	learn: 22.4577426	total: 308ms	remaining: 173ms
64:	learn: 22.3333158	total: 313ms	remaining: 168ms
65:	learn: 22.2064131	total: 317ms	remaining: 163ms
66:	learn: 22.1434971	total: 320ms	remaining: 158ms
67:	learn: 21.9596519	total: 325ms	remaining: 153ms
68:	learn: 21.8475576	total: 329ms	remaining: 148ms
69:	learn: 21.6954745	total: 334ms	remaining: 143ms
70:	learn: 21.5635976	total: 338ms	remaining: 138ms
71:	learn: 21.4588506	total: 342ms	remaining: 133ms
72:	learn: 21.3527268	total: 346ms	remaining: 128ms
73:	learn: 21.2661288	total: 351ms	remaining: 123ms
74:	learn: 21.1817333	total: 355ms	remaining: 118ms
75:	learn: 21.0527553	total: 360ms	remaining: 114ms
76:	learn: 20.9229021	total: 364ms	remaining: 109ms
77:	learn: 20.7563946	total: 369ms	remaining: 104ms
78:	learn: 20.6569831	total: 373ms	remaining: 99.1ms
79:	learn: 20.4982663	total: 377ms	remaining: 94.3ms
80:	learn: 20.3185460	total: 383ms	remaining: 89.9ms
81:	learn: 20.2096241	total: 391ms	remaining: 85.8ms
82:	learn: 20.1274891	total: 398ms	remaining: 81.6ms
83:	learn: 20.0740139	total: 407ms	remaining: 77.5ms
84:	learn: 19.9630699	total: 414ms	remaining: 73.1ms
85:	learn: 19.8753899	total: 420ms	remaining: 68.4ms
86:	learn: 19.6563612	total: 426ms	remaining: 63.6ms
87:	learn: 19.4680232	total: 431ms	remaining: 58.7ms
88:	learn: 19.3503431	total: 436ms	remaining: 53.9ms
89:	learn: 19.2221379	total: 441ms	remaining: 49ms
90:	learn: 19.0732542	total: 447ms	remaining: 44.2ms
91:	learn: 18.9825190	total: 452ms	remaining: 39.3ms
92:	learn: 18.8839009	total: 458ms	remaining: 34.4ms
93:	learn: 18.8012219	total: 463ms	remaining: 29.5ms
94:	learn: 18.7172713	total: 468ms	remaining: 24.6ms
95:	learn: 18.6201170	total: 473ms	remaining: 19.7ms
96:	learn: 18.5318611	total: 478ms	remaining: 14.8ms
97:	learn: 18.3833356	total: 484ms	remaining: 9.87ms
98:	learn: 18.3289700	total: 488ms	remaining: 4.93ms
99:	learn: 18.2227333	total: 493ms	remaining: 0us
0:	learn: 46.3764524	total: 4.41ms	remaining: 436ms
1:	learn: 45.5561269	total: 8.45ms	remaining: 414ms
2:	learn: 44.8811245	total: 12.9ms	remaining: 418ms
3:	learn: 44.0788617	total: 17.6ms	remaining: 423ms
4:	learn: 43.3619790	total: 22.1ms	remaining: 420ms
5:	learn: 42.6912112	total: 26.8ms	remaining: 421ms
6:	learn: 42.2292118	total: 31.6ms	remaining: 420ms
7:	learn: 41.7725191	total: 36.5ms	remaining: 420ms
8:	learn: 41.1676614	total: 41ms	remaining: 414ms
9:	learn: 40.5771076	total: 46ms	remaining: 414ms
10:	learn: 39.8343757	total: 54.3ms	remaining: 439ms
11:	learn: 39.3761142	total: 61.4ms	remaining: 450ms
12:	learn: 38.5254692	total: 70.1ms	remaining: 469ms
13:	learn: 37.9629555	total: 77.2ms	remaining: 474ms
14:	learn: 37.4418438	total: 81.9ms	remaining: 464ms
15:	learn: 37.0507283	total: 87.3ms	remaining: 458ms
16:	learn: 36.6264217	total: 92.1ms	remaining: 450ms
17:	learn: 36.1114940	total: 97.4ms	remaining: 444ms
18:	learn: 35.7193862	total: 103ms	remaining: 437ms
19:	learn: 35.3301177	total: 108ms	remaining: 430ms
20:	learn: 35.0598280	total: 113ms	remaining: 424ms
21:	learn: 34.5469736	total: 118ms	remaining: 417ms
22:	learn: 34.2064215	total: 123ms	remaining: 411ms
23:	learn: 33.7280710	total: 128ms	remaining: 405ms
24:	learn: 33.3282940	total: 133ms	remaining: 398ms
25:	learn: 32.8478961	total: 138ms	remaining: 393ms
26:	learn: 32.5722164	total: 143ms	remaining: 388ms
27:	learn: 32.2457019	total: 148ms	remaining: 380ms
28:	learn: 31.9230495	total: 152ms	remaining: 372ms
29:	learn: 31.4311611	total: 157ms	remaining: 365ms
30:	learn: 30.9179052	total: 161ms	remaining: 358ms
31:	learn: 30.6201141	total: 165ms	remaining: 350ms
32:	learn: 30.3421106	total: 169ms	remaining: 343ms
33:	learn: 29.9885373	total: 174ms	remaining: 337ms
34:	learn: 29.7462780	total: 178ms	remaining: 330ms
35:	learn: 29.3607153	total: 182ms	remaining: 324ms
36:	learn: 29.1793078	total: 186ms	remaining: 317ms
37:	learn: 28.9276538	total: 191ms	remaining: 311ms
38:	learn: 28.6903934	total: 195ms	remaining: 305ms
39:	learn: 28.2095033	total: 199ms	remaining: 299ms
40:	learn: 27.7990608	total: 203ms	remaining: 292ms
41:	learn: 27.5406632	total: 208ms	remaining: 287ms
42:	learn: 27.2575376	total: 212ms	remaining: 280ms
43:	learn: 26.9741707	total: 216ms	remaining: 275ms
44:	learn: 26.6606899	total: 220ms	remaining: 269ms
45:	learn: 26.4015833	total: 225ms	remaining: 264ms
46:	learn: 26.1828993	total: 230ms	remaining: 259ms
47:	learn: 26.0233709	total: 233ms	remaining: 252ms
48:	learn: 25.9300399	total: 237ms	remaining: 247ms
49:	learn: 25.5861489	total: 242ms	remaining: 242ms
50:	learn: 25.4322012	total: 247ms	remaining: 237ms
51:	learn: 25.1595644	total: 252ms	remaining: 233ms
52:	learn: 24.9955303	total: 257ms	remaining: 228ms
53:	learn: 24.7273966	total: 266ms	remaining: 227ms
54:	learn: 24.5747978	total: 274ms	remaining: 225ms
55:	learn: 24.3807977	total: 284ms	remaining: 223ms
56:	learn: 24.1689569	total: 292ms	remaining: 221ms
57:	learn: 23.9898221	total: 298ms	remaining: 216ms
58:	learn: 23.7566414	total: 303ms	remaining: 211ms
59:	learn: 23.6641165	total: 309ms	remaining: 206ms
60:	learn: 23.5658066	total: 314ms	remaining: 201ms
61:	learn: 23.4338851	total: 319ms	remaining: 196ms
62:	learn: 23.2408837	total: 325ms	remaining: 191ms
63:	learn: 23.0642038	total: 330ms	remaining: 186ms
64:	learn: 22.9032045	total: 336ms	remaining: 181ms
65:	learn: 22.7736138	total: 341ms	remaining: 175ms
66:	learn: 22.6836443	total: 346ms	remaining: 170ms
67:	learn: 22.5983654	total: 351ms	remaining: 165ms
68:	learn: 22.4419813	total: 358ms	remaining: 161ms
69:	learn: 22.2863339	total: 364ms	remaining: 156ms
70:	learn: 22.1792943	total: 369ms	remaining: 151ms
71:	learn: 22.1130574	total: 374ms	remaining: 145ms
72:	learn: 21.9858161	total: 378ms	remaining: 140ms
73:	learn: 21.8577784	total: 383ms	remaining: 135ms
74:	learn: 21.7845222	total: 388ms	remaining: 129ms
75:	learn: 21.6831390	total: 393ms	remaining: 124ms
76:	learn: 21.6292521	total: 397ms	remaining: 119ms
77:	learn: 21.5789330	total: 402ms	remaining: 113ms
78:	learn: 21.5420942	total: 407ms	remaining: 108ms
79:	learn: 21.4280939	total: 411ms	remaining: 103ms
80:	learn: 21.3641165	total: 415ms	remaining: 97.4ms
81:	learn: 21.2734814	total: 420ms	remaining: 92.2ms
82:	learn: 21.2220323	total: 425ms	remaining: 87ms
83:	learn: 21.0625792	total: 430ms	remaining: 81.9ms
84:	learn: 20.9488320	total: 435ms	remaining: 76.8ms
85:	learn: 20.8504255	total: 440ms	remaining: 71.6ms
86:	learn: 20.7848510	total: 444ms	remaining: 66.4ms
87:	learn: 20.7247442	total: 449ms	remaining: 61.2ms
88:	learn: 20.5698590	total: 454ms	remaining: 56.1ms
89:	learn: 20.4067620	total: 463ms	remaining: 51.5ms
90:	learn: 20.3062482	total: 473ms	remaining: 46.7ms
91:	learn: 20.2029696	total: 481ms	remaining: 41.9ms
92:	learn: 20.1384849	total: 490ms	remaining: 36.9ms
93:	learn: 20.0260709	total: 496ms	remaining: 31.7ms
94:	learn: 19.9122100	total: 502ms	remaining: 26.4ms
95:	learn: 19.8648487	total: 507ms	remaining: 21.1ms
96:	learn: 19.8207072	total: 512ms	remaining: 15.8ms
97:	learn: 19.7261189	total: 517ms	remaining: 10.6ms
98:	learn: 19.7042438	total: 523ms	remaining: 5.28ms
99:	learn: 19.6546645	total: 528ms	remaining: 0us
0:	learn: 47.0239288	total: 4.4ms	remaining: 436ms
1:	learn: 46.2253829	total: 8.25ms	remaining: 404ms
2:	learn: 45.5580301	total: 12.1ms	remaining: 391ms
3:	learn: 44.7273237	total: 16.3ms	remaining: 391ms
4:	learn: 43.8867421	total: 20.2ms	remaining: 384ms
5:	learn: 43.3615911	total: 24.3ms	remaining: 381ms
6:	learn: 42.8548390	total: 28.8ms	remaining: 382ms
7:	learn: 42.1606758	total: 32.8ms	remaining: 377ms
8:	learn: 41.6625870	total: 36.8ms	remaining: 372ms
9:	learn: 40.9497092	total: 40.6ms	remaining: 366ms
10:	learn: 40.1886318	total: 44.6ms	remaining: 361ms
11:	learn: 39.7456423	total: 48.9ms	remaining: 359ms
12:	learn: 39.1171373	total: 53.7ms	remaining: 359ms
13:	learn: 38.5451069	total: 58.2ms	remaining: 358ms
14:	learn: 38.0155834	total: 62.7ms	remaining: 356ms
15:	learn: 37.5631354	total: 67.2ms	remaining: 353ms
16:	learn: 37.1030023	total: 71.4ms	remaining: 348ms
17:	learn: 36.4563029	total: 75.7ms	remaining: 345ms
18:	learn: 36.0160976	total: 80.3ms	remaining: 342ms
19:	learn: 35.5079827	total: 85.1ms	remaining: 340ms
20:	learn: 35.2111885	total: 93.2ms	remaining: 351ms
21:	learn: 34.9397465	total: 100ms	remaining: 355ms
22:	learn: 34.5270048	total: 108ms	remaining: 363ms
23:	learn: 34.0169260	total: 115ms	remaining: 365ms
24:	learn: 33.7454892	total: 121ms	remaining: 362ms
25:	learn: 33.2648157	total: 126ms	remaining: 359ms
26:	learn: 32.8899427	total: 131ms	remaining: 354ms
27:	learn: 32.6185050	total: 136ms	remaining: 350ms
28:	learn: 32.3528531	total: 141ms	remaining: 346ms
29:	learn: 32.0859923	total: 146ms	remaining: 341ms
30:	learn: 31.6511144	total: 151ms	remaining: 336ms
31:	learn: 31.2571765	total: 156ms	remaining: 332ms
32:	learn: 30.9770049	total: 161ms	remaining: 327ms
33:	learn: 30.6084872	total: 166ms	remaining: 322ms
34:	learn: 30.3448632	total: 170ms	remaining: 316ms
35:	learn: 30.0360942	total: 175ms	remaining: 311ms
36:	learn: 29.6648968	total: 180ms	remaining: 306ms
37:	learn: 29.3165114	total: 184ms	remaining: 301ms
38:	learn: 29.0829198	total: 190ms	remaining: 297ms
39:	learn: 28.7752064	total: 195ms	remaining: 293ms
40:	learn: 28.3622191	total: 199ms	remaining: 287ms
41:	learn: 28.1346631	total: 203ms	remaining: 281ms
42:	learn: 27.9585719	total: 207ms	remaining: 274ms
43:	learn: 27.6565566	total: 211ms	remaining: 268ms
44:	learn: 27.3616172	total: 215ms	remaining: 263ms
45:	learn: 27.0658637	total: 219ms	remaining: 257ms
46:	learn: 26.8660382	total: 223ms	remaining: 251ms
47:	learn: 26.6536078	total: 227ms	remaining: 246ms
48:	learn: 26.3524440	total: 231ms	remaining: 240ms
49:	learn: 26.1595277	total: 235ms	remaining: 235ms
50:	learn: 25.9273523	total: 240ms	remaining: 230ms
51:	learn: 25.7195580	total: 244ms	remaining: 225ms
52:	learn: 25.5730225	total: 249ms	remaining: 221ms
53:	learn: 25.3455276	total: 253ms	remaining: 216ms
54:	learn: 25.2289675	total: 258ms	remaining: 211ms
55:	learn: 25.0133024	total: 263ms	remaining: 207ms
56:	learn: 24.8406714	total: 268ms	remaining: 202ms
57:	learn: 24.6367857	total: 272ms	remaining: 197ms
58:	learn: 24.5338177	total: 277ms	remaining: 192ms
59:	learn: 24.3799964	total: 281ms	remaining: 187ms
60:	learn: 24.1447492	total: 288ms	remaining: 184ms
61:	learn: 23.9880495	total: 296ms	remaining: 181ms
62:	learn: 23.7140630	total: 305ms	remaining: 179ms
63:	learn: 23.5003791	total: 311ms	remaining: 175ms
64:	learn: 23.3207645	total: 318ms	remaining: 171ms
65:	learn: 23.1958356	total: 324ms	remaining: 167ms
66:	learn: 23.0471302	total: 329ms	remaining: 162ms
67:	learn: 22.8977183	total: 335ms	remaining: 157ms
68:	learn: 22.7187400	total: 340ms	remaining: 153ms
69:	learn: 22.6523405	total: 345ms	remaining: 148ms
70:	learn: 22.4767453	total: 351ms	remaining: 143ms
71:	learn: 22.3243677	total: 356ms	remaining: 139ms
72:	learn: 22.2133096	total: 362ms	remaining: 134ms
73:	learn: 22.1151713	total: 367ms	remaining: 129ms
74:	learn: 22.0296666	total: 371ms	remaining: 124ms
75:	learn: 21.9195980	total: 376ms	remaining: 119ms
76:	learn: 21.8401730	total: 381ms	remaining: 114ms
77:	learn: 21.8079797	total: 386ms	remaining: 109ms
78:	learn: 21.7274109	total: 390ms	remaining: 104ms
79:	learn: 21.6663032	total: 394ms	remaining: 98.4ms
80:	learn: 21.5633117	total: 397ms	remaining: 93.2ms
81:	learn: 21.4542467	total: 402ms	remaining: 88.2ms
82:	learn: 21.3177957	total: 406ms	remaining: 83.1ms
83:	learn: 21.1289167	total: 409ms	remaining: 78ms
84:	learn: 21.0297368	total: 414ms	remaining: 73ms
85:	learn: 20.9089564	total: 418ms	remaining: 68ms
86:	learn: 20.7653988	total: 422ms	remaining: 63.1ms
87:	learn: 20.6521894	total: 426ms	remaining: 58ms
88:	learn: 20.5193021	total: 429ms	remaining: 53.1ms
89:	learn: 20.4361620	total: 434ms	remaining: 48.2ms
90:	learn: 20.3546710	total: 438ms	remaining: 43.3ms
91:	learn: 20.2513296	total: 442ms	remaining: 38.4ms
92:	learn: 20.1605550	total: 446ms	remaining: 33.5ms
93:	learn: 20.0515942	total: 451ms	remaining: 28.8ms
94:	learn: 19.9800764	total: 456ms	remaining: 24ms
95:	learn: 19.8996532	total: 460ms	remaining: 19.2ms
96:	learn: 19.8450910	total: 465ms	remaining: 14.4ms
97:	learn: 19.7887346	total: 469ms	remaining: 9.57ms
98:	learn: 19.7230872	total: 473ms	remaining: 4.78ms
99:	learn: 19.6328825	total: 478ms	remaining: 0us
0:	learn: 27.5585353	total: 5.37ms	remaining: 532ms
1:	learn: 27.1656995	total: 10.3ms	remaining: 503ms
2:	learn: 26.8590175	total: 15.3ms	remaining: 495ms
3:	learn: 26.5818406	total: 20.2ms	remaining: 484ms
4:	learn: 26.1148663	total: 25.2ms	remaining: 478ms
5:	learn: 25.7690484	total: 30.1ms	remaining: 472ms
6:	learn: 25.3489206	total: 35.2ms	remaining: 468ms
7:	learn: 24.9542406	total: 41.1ms	remaining: 472ms
8:	learn: 24.6777517	total: 45.9ms	remaining: 464ms
9:	learn: 24.3242344	total: 51ms	remaining: 459ms
10:	learn: 24.0383073	total: 56.5ms	remaining: 457ms
11:	learn: 23.7383420	total: 61.7ms	remaining: 452ms
12:	learn: 23.3461670	total: 66.1ms	remaining: 442ms
13:	learn: 23.0928636	total: 70.2ms	remaining: 431ms
14:	learn: 22.8770414	total: 74.6ms	remaining: 423ms
15:	learn: 22.6323214	total: 78.8ms	remaining: 414ms
16:	learn: 22.3597072	total: 83.3ms	remaining: 407ms
17:	learn: 22.1079813	total: 88ms	remaining: 401ms
18:	learn: 21.8421199	total: 92.7ms	remaining: 395ms
19:	learn: 21.6576508	total: 97.4ms	remaining: 390ms
20:	learn: 21.4301268	total: 102ms	remaining: 383ms
21:	learn: 21.2287388	total: 106ms	remaining: 378ms
22:	learn: 21.0553872	total: 112ms	remaining: 373ms
23:	learn: 20.8977091	total: 116ms	remaining: 367ms
24:	learn: 20.6619051	total: 120ms	remaining: 361ms
25:	learn: 20.5040955	total: 125ms	remaining: 356ms
26:	learn: 20.3181195	total: 130ms	remaining: 351ms
27:	learn: 20.0869436	total: 135ms	remaining: 346ms
28:	learn: 19.9375985	total: 139ms	remaining: 341ms
29:	learn: 19.8247516	total: 145ms	remaining: 337ms
30:	learn: 19.6261697	total: 149ms	remaining: 332ms
31:	learn: 19.4547236	total: 154ms	remaining: 327ms
32:	learn: 19.3157092	total: 159ms	remaining: 322ms
33:	learn: 19.1561419	total: 164ms	remaining: 318ms
34:	learn: 19.0453620	total: 172ms	remaining: 320ms
35:	learn: 18.8738574	total: 180ms	remaining: 319ms
36:	learn: 18.7072907	total: 189ms	remaining: 321ms
37:	learn: 18.5877943	total: 196ms	remaining: 321ms
38:	learn: 18.4436380	total: 202ms	remaining: 316ms
39:	learn: 18.3463356	total: 207ms	remaining: 311ms
40:	learn: 18.2008059	total: 212ms	remaining: 306ms
41:	learn: 18.0582079	total: 217ms	remaining: 300ms
42:	learn: 17.8891982	total: 223ms	remaining: 295ms
43:	learn: 17.7332246	total: 228ms	remaining: 291ms
44:	learn: 17.6206421	total: 234ms	remaining: 286ms
45:	learn: 17.4982800	total: 240ms	remaining: 281ms
46:	learn: 17.3970150	total: 245ms	remaining: 277ms
47:	learn: 17.3058203	total: 251ms	remaining: 272ms
48:	learn: 17.1789256	total: 256ms	remaining: 266ms
49:	learn: 17.0916229	total: 262ms	remaining: 262ms
50:	learn: 16.9859820	total: 267ms	remaining: 257ms
51:	learn: 16.8995582	total: 272ms	remaining: 251ms
52:	learn: 16.8137014	total: 276ms	remaining: 245ms
53:	learn: 16.7021451	total: 281ms	remaining: 239ms
54:	learn: 16.5895582	total: 285ms	remaining: 233ms
55:	learn: 16.5015639	total: 289ms	remaining: 227ms
56:	learn: 16.4356637	total: 293ms	remaining: 221ms
57:	learn: 16.3514525	total: 298ms	remaining: 216ms
58:	learn: 16.2401369	total: 302ms	remaining: 210ms
59:	learn: 16.1293223	total: 307ms	remaining: 205ms
60:	learn: 16.0271167	total: 311ms	remaining: 199ms
61:	learn: 15.9126257	total: 315ms	remaining: 193ms
62:	learn: 15.8391096	total: 319ms	remaining: 187ms
63:	learn: 15.7441773	total: 323ms	remaining: 182ms
64:	learn: 15.6885195	total: 327ms	remaining: 176ms
65:	learn: 15.6052039	total: 332ms	remaining: 171ms
66:	learn: 15.5074202	total: 337ms	remaining: 166ms
67:	learn: 15.4054338	total: 341ms	remaining: 161ms
68:	learn: 15.2885714	total: 346ms	remaining: 155ms
69:	learn: 15.2157472	total: 350ms	remaining: 150ms
70:	learn: 15.1031554	total: 355ms	remaining: 145ms
71:	learn: 15.0237470	total: 360ms	remaining: 140ms
72:	learn: 14.9756825	total: 368ms	remaining: 136ms
73:	learn: 14.8840596	total: 375ms	remaining: 132ms
74:	learn: 14.8077061	total: 383ms	remaining: 128ms
75:	learn: 14.7444437	total: 391ms	remaining: 123ms
76:	learn: 14.6751720	total: 396ms	remaining: 118ms
77:	learn: 14.5830333	total: 401ms	remaining: 113ms
78:	learn: 14.5241206	total: 407ms	remaining: 108ms
79:	learn: 14.4892731	total: 412ms	remaining: 103ms
80:	learn: 14.4256605	total: 417ms	remaining: 97.7ms
81:	learn: 14.3666860	total: 422ms	remaining: 92.6ms
82:	learn: 14.2938372	total: 427ms	remaining: 87.4ms
83:	learn: 14.2161532	total: 432ms	remaining: 82.3ms
84:	learn: 14.1582910	total: 437ms	remaining: 77.1ms
85:	learn: 14.1029153	total: 442ms	remaining: 72ms
86:	learn: 14.0475835	total: 447ms	remaining: 66.8ms
87:	learn: 13.9892661	total: 452ms	remaining: 61.6ms
88:	learn: 13.9481628	total: 458ms	remaining: 56.6ms
89:	learn: 13.8483991	total: 463ms	remaining: 51.4ms
90:	learn: 13.7775614	total: 467ms	remaining: 46.2ms
91:	learn: 13.7304585	total: 471ms	remaining: 40.9ms
92:	learn: 13.6783381	total: 475ms	remaining: 35.8ms
93:	learn: 13.6356964	total: 479ms	remaining: 30.6ms
94:	learn: 13.5924371	total: 483ms	remaining: 25.4ms
95:	learn: 13.5400746	total: 487ms	remaining: 20.3ms
96:	learn: 13.4897333	total: 491ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 495ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 499ms	remaining: 5.04ms
99:	learn: 13.3082371	total: 503ms	remaining: 0us
0:	learn: 43.0395283	total: 4.94ms	remaining: 489ms
1:	learn: 42.1130223	total: 9.56ms	remaining: 469ms
2:	learn: 41.1753409	total: 14.1ms	remaining: 456ms
3:	learn: 40.3637444	total: 21.4ms	remaining: 513ms
4:	learn: 39.6508088	total: 29.5ms	remaining: 560ms
5:	learn: 38.7217934	total: 38.1ms	remaining: 597ms
6:	learn: 37.8538055	total: 44.2ms	remaining: 587ms
7:	learn: 36.9793574	total: 51.7ms	remaining: 594ms
8:	learn: 36.3076984	total: 57.4ms	remaining: 580ms
9:	learn: 35.6673160	total: 62.5ms	remaining: 563ms
10:	learn: 34.8889800	total: 67.7ms	remaining: 547ms
11:	learn: 34.1675517	total: 72.3ms	remaining: 530ms
12:	learn: 33.6779564	total: 78ms	remaining: 522ms
13:	learn: 33.0710039	total: 83.2ms	remaining: 511ms
14:	learn: 32.4966674	total: 88.2ms	remaining: 500ms
15:	learn: 31.9492856	total: 93.8ms	remaining: 492ms
16:	learn: 31.5108129	total: 98.6ms	remaining: 481ms
17:	learn: 30.9804023	total: 104ms	remaining: 473ms
18:	learn: 30.4169089	total: 108ms	remaining: 462ms
19:	learn: 29.8930375	total: 114ms	remaining: 455ms
20:	learn: 29.3974421	total: 119ms	remaining: 449ms
21:	learn: 28.8792307	total: 124ms	remaining: 438ms
22:	learn: 28.3894474	total: 128ms	remaining: 428ms
23:	learn: 27.9921276	total: 132ms	remaining: 418ms
24:	learn: 27.6158887	total: 137ms	remaining: 410ms
25:	learn: 27.2866950	total: 141ms	remaining: 400ms
26:	learn: 26.8770708	total: 145ms	remaining: 392ms
27:	learn: 26.6233005	total: 149ms	remaining: 383ms
28:	learn: 26.2921934	total: 153ms	remaining: 375ms
29:	learn: 25.9156920	total: 157ms	remaining: 366ms
30:	learn: 25.5311106	total: 159ms	remaining: 353ms
31:	learn: 25.2178997	total: 163ms	remaining: 347ms
32:	learn: 24.8572196	total: 167ms	remaining: 339ms
33:	learn: 24.5849710	total: 171ms	remaining: 332ms
34:	learn: 24.2209190	total: 175ms	remaining: 325ms
35:	learn: 23.8708250	total: 179ms	remaining: 318ms
36:	learn: 23.5325279	total: 183ms	remaining: 312ms
37:	learn: 23.2116148	total: 187ms	remaining: 305ms
38:	learn: 22.9696787	total: 191ms	remaining: 299ms
39:	learn: 22.7936783	total: 195ms	remaining: 293ms
40:	learn: 22.6228847	total: 199ms	remaining: 287ms
41:	learn: 22.3691527	total: 203ms	remaining: 281ms
42:	learn: 22.1002173	total: 207ms	remaining: 275ms
43:	learn: 21.9157268	total: 211ms	remaining: 269ms
44:	learn: 21.7229102	total: 216ms	remaining: 264ms
45:	learn: 21.4642005	total: 220ms	remaining: 258ms
46:	learn: 21.3029442	total: 224ms	remaining: 253ms
47:	learn: 21.1469792	total: 228ms	remaining: 247ms
48:	learn: 20.9458235	total: 233ms	remaining: 243ms
49:	learn: 20.7335242	total: 238ms	remaining: 238ms
50:	learn: 20.5440269	total: 242ms	remaining: 233ms
51:	learn: 20.3661449	total: 247ms	remaining: 228ms
52:	learn: 20.2158134	total: 252ms	remaining: 224ms
53:	learn: 19.9934873	total: 260ms	remaining: 221ms
54:	learn: 19.7879739	total: 267ms	remaining: 218ms
55:	learn: 19.6630460	total: 275ms	remaining: 216ms
56:	learn: 19.5152729	total: 280ms	remaining: 212ms
57:	learn: 19.3581128	total: 286ms	remaining: 207ms
58:	learn: 19.2209303	total: 291ms	remaining: 202ms
59:	learn: 19.0965248	total: 311ms	remaining: 208ms
60:	learn: 19.0035954	total: 317ms	remaining: 202ms
61:	learn: 18.8554149	total: 322ms	remaining: 197ms
62:	learn: 18.7095427	total: 327ms	remaining: 192ms
63:	learn: 18.5751494	total: 331ms	remaining: 186ms
64:	learn: 18.4678251	total: 337ms	remaining: 181ms
65:	learn: 18.3500325	total: 342ms	remaining: 176ms
66:	learn: 18.2088983	total: 347ms	remaining: 171ms
67:	learn: 18.0737705	total: 351ms	remaining: 165ms
68:	learn: 17.9325058	total: 355ms	remaining: 160ms
69:	learn: 17.8003911	total: 359ms	remaining: 154ms
70:	learn: 17.7385366	total: 364ms	remaining: 149ms
71:	learn: 17.6106998	total: 368ms	remaining: 143ms
72:	learn: 17.4816270	total: 372ms	remaining: 138ms
73:	learn: 17.4025554	total: 376ms	remaining: 132ms
74:	learn: 17.2902108	total: 381ms	remaining: 127ms
75:	learn: 17.2158048	total: 385ms	remaining: 122ms
76:	learn: 17.1261053	total: 389ms	remaining: 116ms
77:	learn: 17.0308917	total: 393ms	remaining: 111ms
78:	learn: 16.9546705	total: 398ms	remaining: 106ms
79:	learn: 16.8319165	total: 402ms	remaining: 100ms
80:	learn: 16.7687017	total: 407ms	remaining: 95.4ms
81:	learn: 16.6972326	total: 411ms	remaining: 90.3ms
82:	learn: 16.6124580	total: 416ms	remaining: 85.2ms
83:	learn: 16.4999052	total: 420ms	remaining: 80.1ms
84:	learn: 16.4302484	total: 425ms	remaining: 74.9ms
85:	learn: 16.3201363	total: 429ms	remaining: 69.8ms
86:	learn: 16.2534314	total: 433ms	remaining: 64.8ms
87:	learn: 16.1720485	total: 438ms	remaining: 59.7ms
88:	learn: 16.0625751	total: 443ms	remaining: 54.8ms
89:	learn: 15.9135088	total: 451ms	remaining: 50.1ms
90:	learn: 15.8658863	total: 458ms	remaining: 45.3ms
91:	learn: 15.8066805	total: 467ms	remaining: 40.6ms
92:	learn: 15.7412103	total: 475ms	remaining: 35.7ms
93:	learn: 15.6542776	total: 480ms	remaining: 30.6ms
94:	learn: 15.5760334	total: 485ms	remaining: 25.5ms
95:	learn: 15.5434131	total: 490ms	remaining: 20.4ms
96:	learn: 15.4709561	total: 495ms	remaining: 15.3ms
97:	learn: 15.4449618	total: 501ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 506ms	remaining: 5.11ms
99:	learn: 15.3106595	total: 511ms	remaining: 0us
0:	learn: 46.7142257	total: 4.54ms	remaining: 449ms
1:	learn: 45.7634153	total: 8.9ms	remaining: 436ms
2:	learn: 45.0054253	total: 13.4ms	remaining: 432ms
3:	learn: 44.2120432	total: 17.8ms	remaining: 427ms
4:	learn: 43.3960472	total: 22.1ms	remaining: 420ms
5:	learn: 42.8588120	total: 26.4ms	remaining: 413ms
6:	learn: 41.9533701	total: 31ms	remaining: 412ms
7:	learn: 41.2745030	total: 35.6ms	remaining: 409ms
8:	learn: 40.6797495	total: 39.9ms	remaining: 403ms
9:	learn: 39.9899571	total: 43.6ms	remaining: 393ms
10:	learn: 39.4682100	total: 48.1ms	remaining: 389ms
11:	learn: 39.0305595	total: 52.8ms	remaining: 388ms
12:	learn: 38.4200417	total: 57.3ms	remaining: 383ms
13:	learn: 37.8425194	total: 61.8ms	remaining: 380ms
14:	learn: 37.4203127	total: 66.3ms	remaining: 376ms
15:	learn: 36.9917688	total: 70.6ms	remaining: 370ms
16:	learn: 36.5544138	total: 75.1ms	remaining: 367ms
17:	learn: 36.0727019	total: 79.8ms	remaining: 363ms
18:	learn: 35.4835715	total: 84.7ms	remaining: 361ms
19:	learn: 34.9865654	total: 92.9ms	remaining: 372ms
20:	learn: 34.6063373	total: 105ms	remaining: 397ms
21:	learn: 34.0997289	total: 112ms	remaining: 398ms
22:	learn: 33.7313171	total: 121ms	remaining: 405ms
23:	learn: 33.3582000	total: 127ms	remaining: 402ms
24:	learn: 32.9432456	total: 132ms	remaining: 396ms
25:	learn: 32.5220888	total: 137ms	remaining: 391ms
26:	learn: 32.2172292	total: 143ms	remaining: 386ms
27:	learn: 31.8972904	total: 148ms	remaining: 380ms
28:	learn: 31.6405350	total: 153ms	remaining: 375ms
29:	learn: 31.4167702	total: 158ms	remaining: 369ms
30:	learn: 30.8541961	total: 160ms	remaining: 357ms
31:	learn: 30.5572111	total: 166ms	remaining: 352ms
32:	learn: 30.1700399	total: 171ms	remaining: 348ms
33:	learn: 29.8537271	total: 176ms	remaining: 342ms
34:	learn: 29.6192540	total: 181ms	remaining: 337ms
35:	learn: 29.3276362	total: 187ms	remaining: 332ms
36:	learn: 28.9985179	total: 192ms	remaining: 327ms
37:	learn: 28.7046880	total: 196ms	remaining: 321ms
38:	learn: 28.4412677	total: 201ms	remaining: 314ms
39:	learn: 28.1277292	total: 205ms	remaining: 308ms
40:	learn: 27.9000750	total: 210ms	remaining: 302ms
41:	learn: 27.5433162	total: 214ms	remaining: 296ms
42:	learn: 27.2493285	total: 218ms	remaining: 289ms
43:	learn: 26.9576632	total: 220ms	remaining: 280ms
44:	learn: 26.6177110	total: 224ms	remaining: 273ms
45:	learn: 26.2812456	total: 228ms	remaining: 267ms
46:	learn: 26.0803859	total: 232ms	remaining: 262ms
47:	learn: 25.9543581	total: 236ms	remaining: 256ms
48:	learn: 25.7951582	total: 241ms	remaining: 251ms
49:	learn: 25.6548184	total: 245ms	remaining: 245ms
50:	learn: 25.4010843	total: 250ms	remaining: 240ms
51:	learn: 24.9773937	total: 255ms	remaining: 235ms
52:	learn: 24.8026156	total: 259ms	remaining: 230ms
53:	learn: 24.5568053	total: 264ms	remaining: 225ms
54:	learn: 24.2281839	total: 268ms	remaining: 219ms
55:	learn: 23.9202795	total: 272ms	remaining: 214ms
56:	learn: 23.7625591	total: 277ms	remaining: 209ms
57:	learn: 23.5429721	total: 283ms	remaining: 205ms
58:	learn: 23.3175893	total: 291ms	remaining: 202ms
59:	learn: 23.2035130	total: 298ms	remaining: 199ms
60:	learn: 23.0232450	total: 306ms	remaining: 196ms
61:	learn: 22.8384958	total: 315ms	remaining: 193ms
62:	learn: 22.6499902	total: 321ms	remaining: 188ms
63:	learn: 22.4577426	total: 326ms	remaining: 184ms
64:	learn: 22.3333158	total: 332ms	remaining: 179ms
65:	learn: 22.2064131	total: 338ms	remaining: 174ms
66:	learn: 22.1434971	total: 343ms	remaining: 169ms
67:	learn: 21.9596519	total: 348ms	remaining: 164ms
68:	learn: 21.8475576	total: 354ms	remaining: 159ms
69:	learn: 21.6954745	total: 360ms	remaining: 154ms
70:	learn: 21.5635976	total: 365ms	remaining: 149ms
71:	learn: 21.4588506	total: 370ms	remaining: 144ms
72:	learn: 21.3527268	total: 375ms	remaining: 139ms
73:	learn: 21.2661288	total: 381ms	remaining: 134ms
74:	learn: 21.1817333	total: 387ms	remaining: 129ms
75:	learn: 21.0527553	total: 391ms	remaining: 124ms
76:	learn: 20.9229021	total: 396ms	remaining: 118ms
77:	learn: 20.7563946	total: 400ms	remaining: 113ms
78:	learn: 20.6569831	total: 405ms	remaining: 108ms
79:	learn: 20.4982663	total: 409ms	remaining: 102ms
80:	learn: 20.3185460	total: 413ms	remaining: 96.9ms
81:	learn: 20.2096241	total: 418ms	remaining: 91.8ms
82:	learn: 20.1274891	total: 423ms	remaining: 86.6ms
83:	learn: 20.0740139	total: 427ms	remaining: 81.4ms
84:	learn: 19.9630699	total: 432ms	remaining: 76.2ms
85:	learn: 19.8753899	total: 437ms	remaining: 71.1ms
86:	learn: 19.6563612	total: 441ms	remaining: 65.9ms
87:	learn: 19.4680232	total: 445ms	remaining: 60.6ms
88:	learn: 19.3503431	total: 449ms	remaining: 55.5ms
89:	learn: 19.2221379	total: 454ms	remaining: 50.4ms
90:	learn: 19.0732542	total: 458ms	remaining: 45.3ms
91:	learn: 18.9825190	total: 463ms	remaining: 40.2ms
92:	learn: 18.8839009	total: 467ms	remaining: 35.2ms
93:	learn: 18.8012219	total: 471ms	remaining: 30.1ms
94:	learn: 18.7172713	total: 476ms	remaining: 25ms
95:	learn: 18.6201170	total: 480ms	remaining: 20ms
96:	learn: 18.5318611	total: 488ms	remaining: 15.1ms
97:	learn: 18.3833356	total: 494ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 503ms	remaining: 5.08ms
99:	learn: 18.2227333	total: 508ms	remaining: 0us
0:	learn: 46.3764524	total: 5.32ms	remaining: 527ms
1:	learn: 45.5561269	total: 9.91ms	remaining: 486ms
2:	learn: 44.8811245	total: 15.2ms	remaining: 492ms
3:	learn: 44.0788617	total: 21ms	remaining: 505ms
4:	learn: 43.3619790	total: 25.2ms	remaining: 479ms
5:	learn: 42.6912112	total: 29.2ms	remaining: 458ms
6:	learn: 42.2292118	total: 33.1ms	remaining: 440ms
7:	learn: 41.7725191	total: 37.3ms	remaining: 429ms
8:	learn: 41.1676614	total: 41.2ms	remaining: 417ms
9:	learn: 40.5771076	total: 45.1ms	remaining: 406ms
10:	learn: 39.8343757	total: 49.4ms	remaining: 400ms
11:	learn: 39.3761142	total: 64.2ms	remaining: 471ms
12:	learn: 38.5254692	total: 68.2ms	remaining: 456ms
13:	learn: 37.9629555	total: 72.3ms	remaining: 444ms
14:	learn: 37.4418438	total: 76.4ms	remaining: 433ms
15:	learn: 37.0507283	total: 80.9ms	remaining: 425ms
16:	learn: 36.6264217	total: 84.5ms	remaining: 413ms
17:	learn: 36.1114940	total: 88.7ms	remaining: 404ms
18:	learn: 35.7193862	total: 92.7ms	remaining: 395ms
19:	learn: 35.3301177	total: 97.4ms	remaining: 390ms
20:	learn: 35.0598280	total: 102ms	remaining: 383ms
21:	learn: 34.5469736	total: 106ms	remaining: 376ms
22:	learn: 34.2064215	total: 111ms	remaining: 370ms
23:	learn: 33.7280710	total: 115ms	remaining: 364ms
24:	learn: 33.3282940	total: 119ms	remaining: 357ms
25:	learn: 32.8478961	total: 124ms	remaining: 352ms
26:	learn: 32.5722164	total: 128ms	remaining: 347ms
27:	learn: 32.2457019	total: 136ms	remaining: 349ms
28:	learn: 31.9230495	total: 143ms	remaining: 351ms
29:	learn: 31.4311611	total: 152ms	remaining: 355ms
30:	learn: 30.9179052	total: 158ms	remaining: 351ms
31:	learn: 30.6201141	total: 165ms	remaining: 350ms
32:	learn: 30.3421106	total: 170ms	remaining: 345ms
33:	learn: 29.9885373	total: 176ms	remaining: 341ms
34:	learn: 29.7462780	total: 181ms	remaining: 336ms
35:	learn: 29.3607153	total: 187ms	remaining: 332ms
36:	learn: 29.1793078	total: 192ms	remaining: 327ms
37:	learn: 28.9276538	total: 197ms	remaining: 322ms
38:	learn: 28.6903934	total: 203ms	remaining: 317ms
39:	learn: 28.2095033	total: 208ms	remaining: 312ms
40:	learn: 27.7990608	total: 213ms	remaining: 306ms
41:	learn: 27.5406632	total: 218ms	remaining: 301ms
42:	learn: 27.2575376	total: 223ms	remaining: 295ms
43:	learn: 26.9741707	total: 228ms	remaining: 290ms
44:	learn: 26.6606899	total: 233ms	remaining: 285ms
45:	learn: 26.4015833	total: 237ms	remaining: 278ms
46:	learn: 26.1828993	total: 241ms	remaining: 272ms
47:	learn: 26.0233709	total: 243ms	remaining: 264ms
48:	learn: 25.9300399	total: 247ms	remaining: 257ms
49:	learn: 25.5861489	total: 251ms	remaining: 251ms
50:	learn: 25.4322012	total: 256ms	remaining: 246ms
51:	learn: 25.1595644	total: 259ms	remaining: 240ms
52:	learn: 24.9955303	total: 264ms	remaining: 234ms
53:	learn: 24.7273966	total: 268ms	remaining: 229ms
54:	learn: 24.5747978	total: 272ms	remaining: 223ms
55:	learn: 24.3807977	total: 277ms	remaining: 217ms
56:	learn: 24.1689569	total: 281ms	remaining: 212ms
57:	learn: 23.9898221	total: 285ms	remaining: 206ms
58:	learn: 23.7566414	total: 288ms	remaining: 200ms
59:	learn: 23.6641165	total: 293ms	remaining: 196ms
60:	learn: 23.5658066	total: 297ms	remaining: 190ms
61:	learn: 23.4338851	total: 301ms	remaining: 185ms
62:	learn: 23.2408837	total: 306ms	remaining: 179ms
63:	learn: 23.0642038	total: 310ms	remaining: 174ms
64:	learn: 22.9032045	total: 314ms	remaining: 169ms
65:	learn: 22.7736138	total: 319ms	remaining: 164ms
66:	learn: 22.6836443	total: 323ms	remaining: 159ms
67:	learn: 22.5983654	total: 328ms	remaining: 154ms
68:	learn: 22.4419813	total: 333ms	remaining: 149ms
69:	learn: 22.2863339	total: 337ms	remaining: 144ms
70:	learn: 22.1792943	total: 344ms	remaining: 140ms
71:	learn: 22.1130574	total: 351ms	remaining: 137ms
72:	learn: 21.9858161	total: 359ms	remaining: 133ms
73:	learn: 21.8577784	total: 366ms	remaining: 128ms
74:	learn: 21.7845222	total: 373ms	remaining: 124ms
75:	learn: 21.6831390	total: 378ms	remaining: 119ms
76:	learn: 21.6292521	total: 383ms	remaining: 114ms
77:	learn: 21.5789330	total: 388ms	remaining: 110ms
78:	learn: 21.5420942	total: 393ms	remaining: 105ms
79:	learn: 21.4280939	total: 399ms	remaining: 99.7ms
80:	learn: 21.3641165	total: 404ms	remaining: 94.8ms
81:	learn: 21.2734814	total: 409ms	remaining: 89.8ms
82:	learn: 21.2220323	total: 414ms	remaining: 84.8ms
83:	learn: 21.0625792	total: 419ms	remaining: 79.9ms
84:	learn: 20.9488320	total: 424ms	remaining: 74.9ms
85:	learn: 20.8504255	total: 429ms	remaining: 69.9ms
86:	learn: 20.7848510	total: 434ms	remaining: 64.9ms
87:	learn: 20.7247442	total: 440ms	remaining: 60ms
88:	learn: 20.5698590	total: 444ms	remaining: 54.9ms
89:	learn: 20.4067620	total: 449ms	remaining: 49.9ms
90:	learn: 20.3062482	total: 453ms	remaining: 44.8ms
91:	learn: 20.2029696	total: 457ms	remaining: 39.7ms
92:	learn: 20.1384849	total: 461ms	remaining: 34.7ms
93:	learn: 20.0260709	total: 465ms	remaining: 29.7ms
94:	learn: 19.9122100	total: 469ms	remaining: 24.7ms
95:	learn: 19.8648487	total: 474ms	remaining: 19.7ms
96:	learn: 19.8207072	total: 478ms	remaining: 14.8ms
97:	learn: 19.7261189	total: 482ms	remaining: 9.85ms
98:	learn: 19.7042438	total: 487ms	remaining: 4.91ms
99:	learn: 19.6546645	total: 491ms	remaining: 0us
0:	learn: 47.0239288	total: 4.65ms	remaining: 461ms
1:	learn: 46.2253829	total: 11.8ms	remaining: 577ms
2:	learn: 45.5580301	total: 18.8ms	remaining: 606ms
3:	learn: 44.7273237	total: 25.9ms	remaining: 621ms
4:	learn: 43.8867421	total: 33.6ms	remaining: 638ms
5:	learn: 43.3615911	total: 40.9ms	remaining: 641ms
6:	learn: 42.8548390	total: 45.9ms	remaining: 610ms
7:	learn: 42.1606758	total: 51.2ms	remaining: 589ms
8:	learn: 41.6625870	total: 56.5ms	remaining: 571ms
9:	learn: 40.9497092	total: 61.4ms	remaining: 553ms
10:	learn: 40.1886318	total: 66.5ms	remaining: 538ms
11:	learn: 39.7456423	total: 72.1ms	remaining: 528ms
12:	learn: 39.1171373	total: 77.1ms	remaining: 516ms
13:	learn: 38.5451069	total: 82.2ms	remaining: 505ms
14:	learn: 38.0155834	total: 87.7ms	remaining: 497ms
15:	learn: 37.5631354	total: 92.7ms	remaining: 487ms
16:	learn: 37.1030023	total: 97.6ms	remaining: 476ms
17:	learn: 36.4563029	total: 102ms	remaining: 466ms
18:	learn: 36.0160976	total: 108ms	remaining: 460ms
19:	learn: 35.5079827	total: 114ms	remaining: 455ms
20:	learn: 35.2111885	total: 119ms	remaining: 447ms
21:	learn: 34.9397465	total: 123ms	remaining: 437ms
22:	learn: 34.5270048	total: 127ms	remaining: 427ms
23:	learn: 34.0169260	total: 132ms	remaining: 417ms
24:	learn: 33.7454892	total: 136ms	remaining: 407ms
25:	learn: 33.2648157	total: 140ms	remaining: 398ms
26:	learn: 32.8899427	total: 144ms	remaining: 389ms
27:	learn: 32.6185050	total: 148ms	remaining: 380ms
28:	learn: 32.3528531	total: 152ms	remaining: 371ms
29:	learn: 32.0859923	total: 155ms	remaining: 362ms
30:	learn: 31.6511144	total: 159ms	remaining: 355ms
31:	learn: 31.2571765	total: 163ms	remaining: 347ms
32:	learn: 30.9770049	total: 168ms	remaining: 340ms
33:	learn: 30.6084872	total: 171ms	remaining: 333ms
34:	learn: 30.3448632	total: 176ms	remaining: 327ms
35:	learn: 30.0360942	total: 180ms	remaining: 320ms
36:	learn: 29.6648968	total: 184ms	remaining: 313ms
37:	learn: 29.3165114	total: 188ms	remaining: 306ms
38:	learn: 29.0829198	total: 192ms	remaining: 300ms
39:	learn: 28.7752064	total: 196ms	remaining: 294ms
40:	learn: 28.3622191	total: 200ms	remaining: 287ms
41:	learn: 28.1346631	total: 204ms	remaining: 281ms
42:	learn: 27.9585719	total: 208ms	remaining: 275ms
43:	learn: 27.6565566	total: 212ms	remaining: 269ms
44:	learn: 27.3616172	total: 216ms	remaining: 263ms
45:	learn: 27.0658637	total: 220ms	remaining: 258ms
46:	learn: 26.8660382	total: 224ms	remaining: 252ms
47:	learn: 26.6536078	total: 228ms	remaining: 247ms
48:	learn: 26.3524440	total: 233ms	remaining: 242ms
49:	learn: 26.1595277	total: 237ms	remaining: 237ms
50:	learn: 25.9273523	total: 241ms	remaining: 232ms
51:	learn: 25.7195580	total: 246ms	remaining: 227ms
52:	learn: 25.5730225	total: 250ms	remaining: 222ms
53:	learn: 25.3455276	total: 255ms	remaining: 217ms
54:	learn: 25.2289675	total: 259ms	remaining: 212ms
55:	learn: 25.0133024	total: 268ms	remaining: 210ms
56:	learn: 24.8406714	total: 274ms	remaining: 207ms
57:	learn: 24.6367857	total: 282ms	remaining: 204ms
58:	learn: 24.5338177	total: 288ms	remaining: 200ms
59:	learn: 24.3799964	total: 294ms	remaining: 196ms
60:	learn: 24.1447492	total: 300ms	remaining: 192ms
61:	learn: 23.9880495	total: 305ms	remaining: 187ms
62:	learn: 23.7140630	total: 310ms	remaining: 182ms
63:	learn: 23.5003791	total: 315ms	remaining: 177ms
64:	learn: 23.3207645	total: 320ms	remaining: 172ms
65:	learn: 23.1958356	total: 325ms	remaining: 167ms
66:	learn: 23.0471302	total: 330ms	remaining: 163ms
67:	learn: 22.8977183	total: 335ms	remaining: 158ms
68:	learn: 22.7187400	total: 341ms	remaining: 153ms
69:	learn: 22.6523405	total: 345ms	remaining: 148ms
70:	learn: 22.4767453	total: 350ms	remaining: 143ms
71:	learn: 22.3243677	total: 355ms	remaining: 138ms
72:	learn: 22.2133096	total: 360ms	remaining: 133ms
73:	learn: 22.1151713	total: 366ms	remaining: 129ms
74:	learn: 22.0296666	total: 371ms	remaining: 124ms
75:	learn: 21.9195980	total: 374ms	remaining: 118ms
76:	learn: 21.8401730	total: 378ms	remaining: 113ms
77:	learn: 21.8079797	total: 382ms	remaining: 108ms
78:	learn: 21.7274109	total: 387ms	remaining: 103ms
79:	learn: 21.6663032	total: 391ms	remaining: 97.6ms
80:	learn: 21.5633117	total: 394ms	remaining: 92.5ms
81:	learn: 21.4542467	total: 398ms	remaining: 87.4ms
82:	learn: 21.3177957	total: 402ms	remaining: 82.4ms
83:	learn: 21.1289167	total: 406ms	remaining: 77.4ms
84:	learn: 21.0297368	total: 411ms	remaining: 72.5ms
85:	learn: 20.9089564	total: 414ms	remaining: 67.5ms
86:	learn: 20.7653988	total: 419ms	remaining: 62.6ms
87:	learn: 20.6521894	total: 422ms	remaining: 57.6ms
88:	learn: 20.5193021	total: 427ms	remaining: 52.7ms
89:	learn: 20.4361620	total: 431ms	remaining: 47.9ms
90:	learn: 20.3546710	total: 435ms	remaining: 43.1ms
91:	learn: 20.2513296	total: 440ms	remaining: 38.3ms
92:	learn: 20.1605550	total: 444ms	remaining: 33.5ms
93:	learn: 20.0515942	total: 449ms	remaining: 28.6ms
94:	learn: 19.9800764	total: 453ms	remaining: 23.9ms
95:	learn: 19.8996532	total: 458ms	remaining: 19.1ms
96:	learn: 19.8450910	total: 465ms	remaining: 14.4ms
97:	learn: 19.7887346	total: 472ms	remaining: 9.63ms
98:	learn: 19.7230872	total: 481ms	remaining: 4.86ms
99:	learn: 19.6328825	total: 488ms	remaining: 0us
0:	learn: 27.5585353	total: 4.57ms	remaining: 453ms
1:	learn: 27.1656995	total: 9.03ms	remaining: 442ms
2:	learn: 26.8590175	total: 13.3ms	remaining: 430ms
3:	learn: 26.5818406	total: 17.7ms	remaining: 424ms
4:	learn: 26.1148663	total: 23.1ms	remaining: 440ms
5:	learn: 25.7690484	total: 28.6ms	remaining: 449ms
6:	learn: 25.3489206	total: 33.4ms	remaining: 443ms
7:	learn: 24.9542406	total: 37.4ms	remaining: 430ms
8:	learn: 24.6777517	total: 41.6ms	remaining: 420ms
9:	learn: 24.3242344	total: 45.9ms	remaining: 414ms
10:	learn: 24.0383073	total: 50.1ms	remaining: 405ms
11:	learn: 23.7383420	total: 54.1ms	remaining: 397ms
12:	learn: 23.3461670	total: 57.9ms	remaining: 387ms
13:	learn: 23.0928636	total: 62.1ms	remaining: 381ms
14:	learn: 22.8770414	total: 66.5ms	remaining: 377ms
15:	learn: 22.6323214	total: 70.6ms	remaining: 371ms
16:	learn: 22.3597072	total: 74.8ms	remaining: 365ms
17:	learn: 22.1079813	total: 79.4ms	remaining: 362ms
18:	learn: 21.8421199	total: 83.5ms	remaining: 356ms
19:	learn: 21.6576508	total: 87.7ms	remaining: 351ms
20:	learn: 21.4301268	total: 92.1ms	remaining: 346ms
21:	learn: 21.2287388	total: 97.1ms	remaining: 344ms
22:	learn: 21.0553872	total: 102ms	remaining: 341ms
23:	learn: 20.8977091	total: 107ms	remaining: 338ms
24:	learn: 20.6619051	total: 111ms	remaining: 334ms
25:	learn: 20.5040955	total: 117ms	remaining: 332ms
26:	learn: 20.3181195	total: 121ms	remaining: 328ms
27:	learn: 20.0869436	total: 126ms	remaining: 325ms
28:	learn: 19.9375985	total: 134ms	remaining: 328ms
29:	learn: 19.8247516	total: 142ms	remaining: 331ms
30:	learn: 19.6261697	total: 151ms	remaining: 335ms
31:	learn: 19.4547236	total: 157ms	remaining: 333ms
32:	learn: 19.3157092	total: 164ms	remaining: 333ms
33:	learn: 19.1561419	total: 169ms	remaining: 328ms
34:	learn: 19.0453620	total: 174ms	remaining: 324ms
35:	learn: 18.8738574	total: 180ms	remaining: 319ms
36:	learn: 18.7072907	total: 185ms	remaining: 315ms
37:	learn: 18.5877943	total: 190ms	remaining: 311ms
38:	learn: 18.4436380	total: 196ms	remaining: 306ms
39:	learn: 18.3463356	total: 201ms	remaining: 302ms
40:	learn: 18.2008059	total: 206ms	remaining: 297ms
41:	learn: 18.0582079	total: 212ms	remaining: 292ms
42:	learn: 17.8891982	total: 217ms	remaining: 288ms
43:	learn: 17.7332246	total: 222ms	remaining: 282ms
44:	learn: 17.6206421	total: 227ms	remaining: 278ms
45:	learn: 17.4982800	total: 232ms	remaining: 273ms
46:	learn: 17.3970150	total: 237ms	remaining: 268ms
47:	learn: 17.3058203	total: 242ms	remaining: 262ms
48:	learn: 17.1789256	total: 246ms	remaining: 256ms
49:	learn: 17.0916229	total: 250ms	remaining: 250ms
50:	learn: 16.9859820	total: 255ms	remaining: 245ms
51:	learn: 16.8995582	total: 259ms	remaining: 239ms
52:	learn: 16.8137014	total: 264ms	remaining: 234ms
53:	learn: 16.7021451	total: 268ms	remaining: 228ms
54:	learn: 16.5895582	total: 272ms	remaining: 222ms
55:	learn: 16.5015639	total: 277ms	remaining: 217ms
56:	learn: 16.4356637	total: 281ms	remaining: 212ms
57:	learn: 16.3514525	total: 285ms	remaining: 207ms
58:	learn: 16.2401369	total: 290ms	remaining: 201ms
59:	learn: 16.1293223	total: 295ms	remaining: 196ms
60:	learn: 16.0271167	total: 299ms	remaining: 191ms
61:	learn: 15.9126257	total: 304ms	remaining: 186ms
62:	learn: 15.8391096	total: 308ms	remaining: 181ms
63:	learn: 15.7441773	total: 313ms	remaining: 176ms
64:	learn: 15.6885195	total: 318ms	remaining: 171ms
65:	learn: 15.6052039	total: 322ms	remaining: 166ms
66:	learn: 15.5074202	total: 327ms	remaining: 161ms
67:	learn: 15.4054338	total: 335ms	remaining: 157ms
68:	learn: 15.2885714	total: 343ms	remaining: 154ms
69:	learn: 15.2157472	total: 352ms	remaining: 151ms
70:	learn: 15.1031554	total: 359ms	remaining: 147ms
71:	learn: 15.0237470	total: 365ms	remaining: 142ms
72:	learn: 14.9756825	total: 371ms	remaining: 137ms
73:	learn: 14.8840596	total: 376ms	remaining: 132ms
74:	learn: 14.8077061	total: 381ms	remaining: 127ms
75:	learn: 14.7444437	total: 387ms	remaining: 122ms
76:	learn: 14.6751720	total: 392ms	remaining: 117ms
77:	learn: 14.5830333	total: 398ms	remaining: 112ms
78:	learn: 14.5241206	total: 403ms	remaining: 107ms
79:	learn: 14.4892731	total: 408ms	remaining: 102ms
80:	learn: 14.4256605	total: 413ms	remaining: 96.9ms
81:	learn: 14.3666860	total: 418ms	remaining: 91.8ms
82:	learn: 14.2938372	total: 425ms	remaining: 87ms
83:	learn: 14.2161532	total: 432ms	remaining: 82.2ms
84:	learn: 14.1582910	total: 436ms	remaining: 77ms
85:	learn: 14.1029153	total: 441ms	remaining: 71.8ms
86:	learn: 14.0475835	total: 446ms	remaining: 66.6ms
87:	learn: 13.9892661	total: 450ms	remaining: 61.4ms
88:	learn: 13.9481628	total: 455ms	remaining: 56.2ms
89:	learn: 13.8483991	total: 459ms	remaining: 51ms
90:	learn: 13.7775614	total: 463ms	remaining: 45.8ms
91:	learn: 13.7304585	total: 468ms	remaining: 40.7ms
92:	learn: 13.6783381	total: 472ms	remaining: 35.5ms
93:	learn: 13.6356964	total: 476ms	remaining: 30.4ms
94:	learn: 13.5924371	total: 481ms	remaining: 25.3ms
95:	learn: 13.5400746	total: 485ms	remaining: 20.2ms
96:	learn: 13.4897333	total: 490ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 495ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 500ms	remaining: 5.04ms
99:	learn: 13.3082371	total: 504ms	remaining: 0us
0:	learn: 43.0395283	total: 5.83ms	remaining: 577ms
1:	learn: 42.1130223	total: 10.9ms	remaining: 535ms
2:	learn: 41.1753409	total: 16ms	remaining: 516ms
3:	learn: 40.3637444	total: 21.1ms	remaining: 507ms
4:	learn: 39.6508088	total: 26.7ms	remaining: 507ms
5:	learn: 38.7217934	total: 31.8ms	remaining: 499ms
6:	learn: 37.8538055	total: 37.4ms	remaining: 497ms
7:	learn: 36.9793574	total: 42.1ms	remaining: 485ms
8:	learn: 36.3076984	total: 46.4ms	remaining: 469ms
9:	learn: 35.6673160	total: 52.1ms	remaining: 469ms
10:	learn: 34.8889800	total: 57.5ms	remaining: 465ms
11:	learn: 34.1675517	total: 61.9ms	remaining: 454ms
12:	learn: 33.6779564	total: 66.1ms	remaining: 443ms
13:	learn: 33.0710039	total: 70.1ms	remaining: 431ms
14:	learn: 32.4966674	total: 74.2ms	remaining: 420ms
15:	learn: 31.9492856	total: 78.1ms	remaining: 410ms
16:	learn: 31.5108129	total: 82.2ms	remaining: 401ms
17:	learn: 30.9804023	total: 86.2ms	remaining: 393ms
18:	learn: 30.4169089	total: 90.3ms	remaining: 385ms
19:	learn: 29.8930375	total: 94.1ms	remaining: 377ms
20:	learn: 29.3974421	total: 98.4ms	remaining: 370ms
21:	learn: 28.8792307	total: 102ms	remaining: 363ms
22:	learn: 28.3894474	total: 106ms	remaining: 356ms
23:	learn: 27.9921276	total: 110ms	remaining: 349ms
24:	learn: 27.6158887	total: 115ms	remaining: 344ms
25:	learn: 27.2866950	total: 119ms	remaining: 338ms
26:	learn: 26.8770708	total: 123ms	remaining: 332ms
27:	learn: 26.6233005	total: 127ms	remaining: 326ms
28:	learn: 26.2921934	total: 132ms	remaining: 322ms
29:	learn: 25.9156920	total: 136ms	remaining: 318ms
30:	learn: 25.5311106	total: 138ms	remaining: 307ms
31:	learn: 25.2178997	total: 143ms	remaining: 304ms
32:	learn: 24.8572196	total: 148ms	remaining: 300ms
33:	learn: 24.5849710	total: 152ms	remaining: 295ms
34:	learn: 24.2209190	total: 156ms	remaining: 290ms
35:	learn: 23.8708250	total: 161ms	remaining: 286ms
36:	learn: 23.5325279	total: 168ms	remaining: 286ms
37:	learn: 23.2116148	total: 175ms	remaining: 286ms
38:	learn: 22.9696787	total: 183ms	remaining: 286ms
39:	learn: 22.7936783	total: 190ms	remaining: 286ms
40:	learn: 22.6228847	total: 198ms	remaining: 285ms
41:	learn: 22.3691527	total: 203ms	remaining: 281ms
42:	learn: 22.1002173	total: 208ms	remaining: 276ms
43:	learn: 21.9157268	total: 214ms	remaining: 272ms
44:	learn: 21.7229102	total: 219ms	remaining: 267ms
45:	learn: 21.4642005	total: 224ms	remaining: 263ms
46:	learn: 21.3029442	total: 229ms	remaining: 259ms
47:	learn: 21.1469792	total: 234ms	remaining: 254ms
48:	learn: 20.9458235	total: 239ms	remaining: 249ms
49:	learn: 20.7335242	total: 244ms	remaining: 244ms
50:	learn: 20.5440269	total: 249ms	remaining: 239ms
51:	learn: 20.3661449	total: 253ms	remaining: 234ms
52:	learn: 20.2158134	total: 258ms	remaining: 228ms
53:	learn: 19.9934873	total: 263ms	remaining: 224ms
54:	learn: 19.7879739	total: 268ms	remaining: 219ms
55:	learn: 19.6630460	total: 274ms	remaining: 215ms
56:	learn: 19.5152729	total: 278ms	remaining: 210ms
57:	learn: 19.3581128	total: 282ms	remaining: 204ms
58:	learn: 19.2209303	total: 286ms	remaining: 199ms
59:	learn: 19.0965248	total: 290ms	remaining: 193ms
60:	learn: 19.0035954	total: 294ms	remaining: 188ms
61:	learn: 18.8554149	total: 298ms	remaining: 183ms
62:	learn: 18.7095427	total: 302ms	remaining: 178ms
63:	learn: 18.5751494	total: 306ms	remaining: 172ms
64:	learn: 18.4678251	total: 311ms	remaining: 167ms
65:	learn: 18.3500325	total: 315ms	remaining: 162ms
66:	learn: 18.2088983	total: 319ms	remaining: 157ms
67:	learn: 18.0737705	total: 323ms	remaining: 152ms
68:	learn: 17.9325058	total: 328ms	remaining: 147ms
69:	learn: 17.8003911	total: 332ms	remaining: 142ms
70:	learn: 17.7385366	total: 337ms	remaining: 138ms
71:	learn: 17.6106998	total: 342ms	remaining: 133ms
72:	learn: 17.4816270	total: 346ms	remaining: 128ms
73:	learn: 17.4025554	total: 351ms	remaining: 123ms
74:	learn: 17.2902108	total: 356ms	remaining: 119ms
75:	learn: 17.2158048	total: 360ms	remaining: 114ms
76:	learn: 17.1261053	total: 366ms	remaining: 109ms
77:	learn: 17.0308917	total: 374ms	remaining: 105ms
78:	learn: 16.9546705	total: 383ms	remaining: 102ms
79:	learn: 16.8319165	total: 390ms	remaining: 97.4ms
80:	learn: 16.7687017	total: 397ms	remaining: 93.1ms
81:	learn: 16.6972326	total: 402ms	remaining: 88.2ms
82:	learn: 16.6124580	total: 407ms	remaining: 83.4ms
83:	learn: 16.4999052	total: 412ms	remaining: 78.6ms
84:	learn: 16.4302484	total: 417ms	remaining: 73.7ms
85:	learn: 16.3201363	total: 423ms	remaining: 68.8ms
86:	learn: 16.2534314	total: 428ms	remaining: 63.9ms
87:	learn: 16.1720485	total: 433ms	remaining: 59ms
88:	learn: 16.0625751	total: 438ms	remaining: 54.1ms
89:	learn: 15.9135088	total: 443ms	remaining: 49.2ms
90:	learn: 15.8658863	total: 448ms	remaining: 44.3ms
91:	learn: 15.8066805	total: 453ms	remaining: 39.4ms
92:	learn: 15.7412103	total: 458ms	remaining: 34.5ms
93:	learn: 15.6542776	total: 464ms	remaining: 29.6ms
94:	learn: 15.5760334	total: 468ms	remaining: 24.6ms
95:	learn: 15.5434131	total: 472ms	remaining: 19.7ms
96:	learn: 15.4709561	total: 476ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 480ms	remaining: 9.8ms
98:	learn: 15.3752761	total: 484ms	remaining: 4.89ms
99:	learn: 15.3106595	total: 488ms	remaining: 0us
0:	learn: 46.7142257	total: 4.88ms	remaining: 483ms
1:	learn: 45.7634153	total: 9.76ms	remaining: 478ms
2:	learn: 45.0054253	total: 14.4ms	remaining: 465ms
3:	learn: 44.2120432	total: 18.7ms	remaining: 450ms
4:	learn: 43.3960472	total: 23.5ms	remaining: 447ms
5:	learn: 42.8588120	total: 28.3ms	remaining: 444ms
6:	learn: 41.9533701	total: 35.6ms	remaining: 473ms
7:	learn: 41.2745030	total: 43.8ms	remaining: 504ms
8:	learn: 40.6797495	total: 52.6ms	remaining: 532ms
9:	learn: 39.9899571	total: 59.7ms	remaining: 537ms
10:	learn: 39.4682100	total: 67.7ms	remaining: 548ms
11:	learn: 39.0305595	total: 72.8ms	remaining: 534ms
12:	learn: 38.4200417	total: 77.9ms	remaining: 522ms
13:	learn: 37.8425194	total: 88.4ms	remaining: 543ms
14:	learn: 37.4203127	total: 93.6ms	remaining: 530ms
15:	learn: 36.9917688	total: 98.9ms	remaining: 519ms
16:	learn: 36.5544138	total: 104ms	remaining: 509ms
17:	learn: 36.0727019	total: 109ms	remaining: 498ms
18:	learn: 35.4835715	total: 114ms	remaining: 488ms
19:	learn: 34.9865654	total: 119ms	remaining: 477ms
20:	learn: 34.6063373	total: 124ms	remaining: 468ms
21:	learn: 34.0997289	total: 130ms	remaining: 461ms
22:	learn: 33.7313171	total: 136ms	remaining: 454ms
23:	learn: 33.3582000	total: 140ms	remaining: 442ms
24:	learn: 32.9432456	total: 144ms	remaining: 433ms
25:	learn: 32.5220888	total: 149ms	remaining: 423ms
26:	learn: 32.2172292	total: 153ms	remaining: 414ms
27:	learn: 31.8972904	total: 157ms	remaining: 404ms
28:	learn: 31.6405350	total: 162ms	remaining: 395ms
29:	learn: 31.4167702	total: 166ms	remaining: 386ms
30:	learn: 30.8541961	total: 168ms	remaining: 373ms
31:	learn: 30.5572111	total: 172ms	remaining: 366ms
32:	learn: 30.1700399	total: 177ms	remaining: 359ms
33:	learn: 29.8537271	total: 181ms	remaining: 351ms
34:	learn: 29.6192540	total: 185ms	remaining: 344ms
35:	learn: 29.3276362	total: 190ms	remaining: 337ms
36:	learn: 28.9985179	total: 194ms	remaining: 330ms
37:	learn: 28.7046880	total: 198ms	remaining: 323ms
38:	learn: 28.4412677	total: 202ms	remaining: 317ms
39:	learn: 28.1277292	total: 207ms	remaining: 310ms
40:	learn: 27.9000750	total: 211ms	remaining: 304ms
41:	learn: 27.5433162	total: 216ms	remaining: 298ms
42:	learn: 27.2493285	total: 220ms	remaining: 291ms
43:	learn: 26.9576632	total: 221ms	remaining: 282ms
44:	learn: 26.6177110	total: 226ms	remaining: 276ms
45:	learn: 26.2812456	total: 230ms	remaining: 271ms
46:	learn: 26.0803859	total: 235ms	remaining: 265ms
47:	learn: 25.9543581	total: 240ms	remaining: 260ms
48:	learn: 25.7951582	total: 244ms	remaining: 254ms
49:	learn: 25.6548184	total: 249ms	remaining: 249ms
50:	learn: 25.4010843	total: 254ms	remaining: 244ms
51:	learn: 24.9773937	total: 259ms	remaining: 239ms
52:	learn: 24.8026156	total: 265ms	remaining: 235ms
53:	learn: 24.5568053	total: 274ms	remaining: 233ms
54:	learn: 24.2281839	total: 283ms	remaining: 231ms
55:	learn: 23.9202795	total: 289ms	remaining: 227ms
56:	learn: 23.7625591	total: 298ms	remaining: 225ms
57:	learn: 23.5429721	total: 303ms	remaining: 220ms
58:	learn: 23.3175893	total: 308ms	remaining: 214ms
59:	learn: 23.2035130	total: 313ms	remaining: 209ms
60:	learn: 23.0232450	total: 319ms	remaining: 204ms
61:	learn: 22.8384958	total: 325ms	remaining: 199ms
62:	learn: 22.6499902	total: 330ms	remaining: 194ms
63:	learn: 22.4577426	total: 336ms	remaining: 189ms
64:	learn: 22.3333158	total: 341ms	remaining: 183ms
65:	learn: 22.2064131	total: 345ms	remaining: 178ms
66:	learn: 22.1434971	total: 350ms	remaining: 172ms
67:	learn: 21.9596519	total: 354ms	remaining: 167ms
68:	learn: 21.8475576	total: 359ms	remaining: 161ms
69:	learn: 21.6954745	total: 364ms	remaining: 156ms
70:	learn: 21.5635976	total: 369ms	remaining: 151ms
71:	learn: 21.4588506	total: 374ms	remaining: 145ms
72:	learn: 21.3527268	total: 379ms	remaining: 140ms
73:	learn: 21.2661288	total: 384ms	remaining: 135ms
74:	learn: 21.1817333	total: 388ms	remaining: 129ms
75:	learn: 21.0527553	total: 392ms	remaining: 124ms
76:	learn: 20.9229021	total: 396ms	remaining: 118ms
77:	learn: 20.7563946	total: 400ms	remaining: 113ms
78:	learn: 20.6569831	total: 404ms	remaining: 107ms
79:	learn: 20.4982663	total: 409ms	remaining: 102ms
80:	learn: 20.3185460	total: 413ms	remaining: 96.9ms
81:	learn: 20.2096241	total: 417ms	remaining: 91.5ms
82:	learn: 20.1274891	total: 421ms	remaining: 86.2ms
83:	learn: 20.0740139	total: 426ms	remaining: 81.1ms
84:	learn: 19.9630699	total: 430ms	remaining: 75.9ms
85:	learn: 19.8753899	total: 435ms	remaining: 70.7ms
86:	learn: 19.6563612	total: 439ms	remaining: 65.7ms
87:	learn: 19.4680232	total: 444ms	remaining: 60.6ms
88:	learn: 19.3503431	total: 449ms	remaining: 55.4ms
89:	learn: 19.2221379	total: 453ms	remaining: 50.4ms
90:	learn: 19.0732542	total: 458ms	remaining: 45.3ms
91:	learn: 18.9825190	total: 467ms	remaining: 40.6ms
92:	learn: 18.8839009	total: 474ms	remaining: 35.6ms
93:	learn: 18.8012219	total: 482ms	remaining: 30.8ms
94:	learn: 18.7172713	total: 490ms	remaining: 25.8ms
95:	learn: 18.6201170	total: 495ms	remaining: 20.6ms
96:	learn: 18.5318611	total: 501ms	remaining: 15.5ms
97:	learn: 18.3833356	total: 506ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 511ms	remaining: 5.16ms
99:	learn: 18.2227333	total: 516ms	remaining: 0us
0:	learn: 46.3764524	total: 4.28ms	remaining: 424ms
1:	learn: 45.5561269	total: 8.52ms	remaining: 418ms
2:	learn: 44.8811245	total: 12.2ms	remaining: 393ms
3:	learn: 44.0788617	total: 16.1ms	remaining: 387ms
4:	learn: 43.3619790	total: 20.2ms	remaining: 384ms
5:	learn: 42.6912112	total: 24.1ms	remaining: 378ms
6:	learn: 42.2292118	total: 28.1ms	remaining: 374ms
7:	learn: 41.7725191	total: 32.1ms	remaining: 369ms
8:	learn: 41.1676614	total: 35.7ms	remaining: 361ms
9:	learn: 40.5771076	total: 39.6ms	remaining: 356ms
10:	learn: 39.8343757	total: 44ms	remaining: 356ms
11:	learn: 39.3761142	total: 48.1ms	remaining: 352ms
12:	learn: 38.5254692	total: 51.9ms	remaining: 348ms
13:	learn: 37.9629555	total: 55.8ms	remaining: 343ms
14:	learn: 37.4418438	total: 59.9ms	remaining: 339ms
15:	learn: 37.0507283	total: 64.3ms	remaining: 338ms
16:	learn: 36.6264217	total: 68.7ms	remaining: 336ms
17:	learn: 36.1114940	total: 73.1ms	remaining: 333ms
18:	learn: 35.7193862	total: 77.8ms	remaining: 332ms
19:	learn: 35.3301177	total: 82.4ms	remaining: 330ms
20:	learn: 35.0598280	total: 86.7ms	remaining: 326ms
21:	learn: 34.5469736	total: 90.7ms	remaining: 321ms
22:	learn: 34.2064215	total: 95ms	remaining: 318ms
23:	learn: 33.7280710	total: 100ms	remaining: 317ms
24:	learn: 33.3282940	total: 108ms	remaining: 324ms
25:	learn: 32.8478961	total: 117ms	remaining: 334ms
26:	learn: 32.5722164	total: 124ms	remaining: 337ms
27:	learn: 32.2457019	total: 132ms	remaining: 339ms
28:	learn: 31.9230495	total: 137ms	remaining: 335ms
29:	learn: 31.4311611	total: 142ms	remaining: 331ms
30:	learn: 30.9179052	total: 148ms	remaining: 328ms
31:	learn: 30.6201141	total: 152ms	remaining: 324ms
32:	learn: 30.3421106	total: 158ms	remaining: 320ms
33:	learn: 29.9885373	total: 163ms	remaining: 316ms
34:	learn: 29.7462780	total: 168ms	remaining: 312ms
35:	learn: 29.3607153	total: 173ms	remaining: 308ms
36:	learn: 29.1793078	total: 178ms	remaining: 304ms
37:	learn: 28.9276538	total: 183ms	remaining: 299ms
38:	learn: 28.6903934	total: 188ms	remaining: 294ms
39:	learn: 28.2095033	total: 193ms	remaining: 290ms
40:	learn: 27.7990608	total: 199ms	remaining: 286ms
41:	learn: 27.5406632	total: 203ms	remaining: 281ms
42:	learn: 27.2575376	total: 207ms	remaining: 275ms
43:	learn: 26.9741707	total: 211ms	remaining: 269ms
44:	learn: 26.6606899	total: 215ms	remaining: 263ms
45:	learn: 26.4015833	total: 220ms	remaining: 258ms
46:	learn: 26.1828993	total: 224ms	remaining: 252ms
47:	learn: 26.0233709	total: 226ms	remaining: 245ms
48:	learn: 25.9300399	total: 230ms	remaining: 239ms
49:	learn: 25.5861489	total: 234ms	remaining: 234ms
50:	learn: 25.4322012	total: 238ms	remaining: 229ms
51:	learn: 25.1595644	total: 242ms	remaining: 223ms
52:	learn: 24.9955303	total: 246ms	remaining: 218ms
53:	learn: 24.7273966	total: 250ms	remaining: 213ms
54:	learn: 24.5747978	total: 254ms	remaining: 208ms
55:	learn: 24.3807977	total: 258ms	remaining: 203ms
56:	learn: 24.1689569	total: 263ms	remaining: 198ms
57:	learn: 23.9898221	total: 267ms	remaining: 193ms
58:	learn: 23.7566414	total: 272ms	remaining: 189ms
59:	learn: 23.6641165	total: 276ms	remaining: 184ms
60:	learn: 23.5658066	total: 280ms	remaining: 179ms
61:	learn: 23.4338851	total: 284ms	remaining: 174ms
62:	learn: 23.2408837	total: 289ms	remaining: 170ms
63:	learn: 23.0642038	total: 293ms	remaining: 165ms
64:	learn: 22.9032045	total: 298ms	remaining: 160ms
65:	learn: 22.7736138	total: 304ms	remaining: 156ms
66:	learn: 22.6836443	total: 311ms	remaining: 153ms
67:	learn: 22.5983654	total: 319ms	remaining: 150ms
68:	learn: 22.4419813	total: 327ms	remaining: 147ms
69:	learn: 22.2863339	total: 335ms	remaining: 143ms
70:	learn: 22.1792943	total: 340ms	remaining: 139ms
71:	learn: 22.1130574	total: 345ms	remaining: 134ms
72:	learn: 21.9858161	total: 350ms	remaining: 129ms
73:	learn: 21.8577784	total: 355ms	remaining: 125ms
74:	learn: 21.7845222	total: 360ms	remaining: 120ms
75:	learn: 21.6831390	total: 365ms	remaining: 115ms
76:	learn: 21.6292521	total: 370ms	remaining: 111ms
77:	learn: 21.5789330	total: 375ms	remaining: 106ms
78:	learn: 21.5420942	total: 380ms	remaining: 101ms
79:	learn: 21.4280939	total: 385ms	remaining: 96.2ms
80:	learn: 21.3641165	total: 390ms	remaining: 91.5ms
81:	learn: 21.2734814	total: 394ms	remaining: 86.6ms
82:	learn: 21.2220323	total: 400ms	remaining: 82ms
83:	learn: 21.0625792	total: 405ms	remaining: 77.2ms
84:	learn: 20.9488320	total: 410ms	remaining: 72.4ms
85:	learn: 20.8504255	total: 414ms	remaining: 67.4ms
86:	learn: 20.7848510	total: 418ms	remaining: 62.4ms
87:	learn: 20.7247442	total: 422ms	remaining: 57.5ms
88:	learn: 20.5698590	total: 426ms	remaining: 52.6ms
89:	learn: 20.4067620	total: 430ms	remaining: 47.8ms
90:	learn: 20.3062482	total: 434ms	remaining: 43ms
91:	learn: 20.2029696	total: 438ms	remaining: 38.1ms
92:	learn: 20.1384849	total: 442ms	remaining: 33.3ms
93:	learn: 20.0260709	total: 446ms	remaining: 28.5ms
94:	learn: 19.9122100	total: 450ms	remaining: 23.7ms
95:	learn: 19.8648487	total: 454ms	remaining: 18.9ms
96:	learn: 19.8207072	total: 458ms	remaining: 14.2ms
97:	learn: 19.7261189	total: 463ms	remaining: 9.45ms
98:	learn: 19.7042438	total: 468ms	remaining: 4.72ms
99:	learn: 19.6546645	total: 472ms	remaining: 0us
0:	learn: 47.0239288	total: 12.7ms	remaining: 1.26s
1:	learn: 46.2253829	total: 22.4ms	remaining: 1.1s
2:	learn: 45.5580301	total: 27.9ms	remaining: 902ms
3:	learn: 44.7273237	total: 33.7ms	remaining: 809ms
4:	learn: 43.8867421	total: 39ms	remaining: 742ms
5:	learn: 43.3615911	total: 44.5ms	remaining: 696ms
6:	learn: 42.8548390	total: 49.9ms	remaining: 663ms
7:	learn: 42.1606758	total: 55ms	remaining: 632ms
8:	learn: 41.6625870	total: 60.1ms	remaining: 607ms
9:	learn: 40.9497092	total: 65ms	remaining: 585ms
10:	learn: 40.1886318	total: 70.1ms	remaining: 567ms
11:	learn: 39.7456423	total: 75.3ms	remaining: 552ms
12:	learn: 39.1171373	total: 80ms	remaining: 535ms
13:	learn: 38.5451069	total: 85.3ms	remaining: 524ms
14:	learn: 38.0155834	total: 90.8ms	remaining: 514ms
15:	learn: 37.5631354	total: 95.5ms	remaining: 501ms
16:	learn: 37.1030023	total: 99.9ms	remaining: 488ms
17:	learn: 36.4563029	total: 104ms	remaining: 475ms
18:	learn: 36.0160976	total: 108ms	remaining: 462ms
19:	learn: 35.5079827	total: 112ms	remaining: 449ms
20:	learn: 35.2111885	total: 116ms	remaining: 437ms
21:	learn: 34.9397465	total: 120ms	remaining: 426ms
22:	learn: 34.5270048	total: 124ms	remaining: 416ms
23:	learn: 34.0169260	total: 128ms	remaining: 407ms
24:	learn: 33.7454892	total: 132ms	remaining: 397ms
25:	learn: 33.2648157	total: 137ms	remaining: 389ms
26:	learn: 32.8899427	total: 141ms	remaining: 381ms
27:	learn: 32.6185050	total: 145ms	remaining: 373ms
28:	learn: 32.3528531	total: 149ms	remaining: 365ms
29:	learn: 32.0859923	total: 154ms	remaining: 359ms
30:	learn: 31.6511144	total: 159ms	remaining: 353ms
31:	learn: 31.2571765	total: 164ms	remaining: 348ms
32:	learn: 30.9770049	total: 169ms	remaining: 342ms
33:	learn: 30.6084872	total: 173ms	remaining: 337ms
34:	learn: 30.3448632	total: 178ms	remaining: 331ms
35:	learn: 30.0360942	total: 183ms	remaining: 326ms
36:	learn: 29.6648968	total: 188ms	remaining: 320ms
37:	learn: 29.3165114	total: 198ms	remaining: 323ms
38:	learn: 29.0829198	total: 206ms	remaining: 323ms
39:	learn: 28.7752064	total: 214ms	remaining: 321ms
40:	learn: 28.3622191	total: 222ms	remaining: 319ms
41:	learn: 28.1346631	total: 227ms	remaining: 314ms
42:	learn: 27.9585719	total: 233ms	remaining: 309ms
43:	learn: 27.6565566	total: 239ms	remaining: 304ms
44:	learn: 27.3616172	total: 244ms	remaining: 298ms
45:	learn: 27.0658637	total: 249ms	remaining: 292ms
46:	learn: 26.8660382	total: 254ms	remaining: 286ms
47:	learn: 26.6536078	total: 259ms	remaining: 281ms
48:	learn: 26.3524440	total: 264ms	remaining: 275ms
49:	learn: 26.1595277	total: 270ms	remaining: 270ms
50:	learn: 25.9273523	total: 275ms	remaining: 264ms
51:	learn: 25.7195580	total: 280ms	remaining: 258ms
52:	learn: 25.5730225	total: 285ms	remaining: 253ms
53:	learn: 25.3455276	total: 290ms	remaining: 247ms
54:	learn: 25.2289675	total: 296ms	remaining: 242ms
55:	learn: 25.0133024	total: 300ms	remaining: 236ms
56:	learn: 24.8406714	total: 304ms	remaining: 230ms
57:	learn: 24.6367857	total: 309ms	remaining: 223ms
58:	learn: 24.5338177	total: 313ms	remaining: 217ms
59:	learn: 24.3799964	total: 316ms	remaining: 211ms
60:	learn: 24.1447492	total: 321ms	remaining: 205ms
61:	learn: 23.9880495	total: 325ms	remaining: 199ms
62:	learn: 23.7140630	total: 329ms	remaining: 193ms
63:	learn: 23.5003791	total: 333ms	remaining: 187ms
64:	learn: 23.3207645	total: 337ms	remaining: 182ms
65:	learn: 23.1958356	total: 342ms	remaining: 176ms
66:	learn: 23.0471302	total: 346ms	remaining: 170ms
67:	learn: 22.8977183	total: 351ms	remaining: 165ms
68:	learn: 22.7187400	total: 355ms	remaining: 159ms
69:	learn: 22.6523405	total: 359ms	remaining: 154ms
70:	learn: 22.4767453	total: 364ms	remaining: 149ms
71:	learn: 22.3243677	total: 368ms	remaining: 143ms
72:	learn: 22.2133096	total: 373ms	remaining: 138ms
73:	learn: 22.1151713	total: 377ms	remaining: 132ms
74:	learn: 22.0296666	total: 382ms	remaining: 127ms
75:	learn: 21.9195980	total: 390ms	remaining: 123ms
76:	learn: 21.8401730	total: 397ms	remaining: 119ms
77:	learn: 21.8079797	total: 406ms	remaining: 115ms
78:	learn: 21.7274109	total: 414ms	remaining: 110ms
79:	learn: 21.6663032	total: 419ms	remaining: 105ms
80:	learn: 21.5633117	total: 424ms	remaining: 99.5ms
81:	learn: 21.4542467	total: 429ms	remaining: 94.2ms
82:	learn: 21.3177957	total: 434ms	remaining: 88.9ms
83:	learn: 21.1289167	total: 439ms	remaining: 83.7ms
84:	learn: 21.0297368	total: 445ms	remaining: 78.5ms
85:	learn: 20.9089564	total: 450ms	remaining: 73.2ms
86:	learn: 20.7653988	total: 455ms	remaining: 68.1ms
87:	learn: 20.6521894	total: 460ms	remaining: 62.8ms
88:	learn: 20.5193021	total: 466ms	remaining: 57.5ms
89:	learn: 20.4361620	total: 470ms	remaining: 52.2ms
90:	learn: 20.3546710	total: 475ms	remaining: 46.9ms
91:	learn: 20.2513296	total: 480ms	remaining: 41.7ms
92:	learn: 20.1605550	total: 485ms	remaining: 36.5ms
93:	learn: 20.0515942	total: 489ms	remaining: 31.2ms
94:	learn: 19.9800764	total: 493ms	remaining: 26ms
95:	learn: 19.8996532	total: 497ms	remaining: 20.7ms
96:	learn: 19.8450910	total: 501ms	remaining: 15.5ms
97:	learn: 19.7887346	total: 505ms	remaining: 10.3ms
98:	learn: 19.7230872	total: 509ms	remaining: 5.14ms
99:	learn: 19.6328825	total: 512ms	remaining: 0us
0:	learn: 27.5585353	total: 4.97ms	remaining: 492ms
1:	learn: 27.1656995	total: 9.51ms	remaining: 466ms
2:	learn: 26.8590175	total: 14ms	remaining: 454ms
3:	learn: 26.5818406	total: 19ms	remaining: 456ms
4:	learn: 26.1148663	total: 23.4ms	remaining: 445ms
5:	learn: 25.7690484	total: 27.8ms	remaining: 436ms
6:	learn: 25.3489206	total: 32.4ms	remaining: 431ms
7:	learn: 24.9542406	total: 37.2ms	remaining: 428ms
8:	learn: 24.6777517	total: 44ms	remaining: 444ms
9:	learn: 24.3242344	total: 51.3ms	remaining: 462ms
10:	learn: 24.0383073	total: 60.2ms	remaining: 487ms
11:	learn: 23.7383420	total: 66.4ms	remaining: 487ms
12:	learn: 23.3461670	total: 73.9ms	remaining: 494ms
13:	learn: 23.0928636	total: 78.9ms	remaining: 485ms
14:	learn: 22.8770414	total: 84.2ms	remaining: 477ms
15:	learn: 22.6323214	total: 89.2ms	remaining: 469ms
16:	learn: 22.3597072	total: 94.4ms	remaining: 461ms
17:	learn: 22.1079813	total: 99.3ms	remaining: 453ms
18:	learn: 21.8421199	total: 105ms	remaining: 446ms
19:	learn: 21.6576508	total: 110ms	remaining: 439ms
20:	learn: 21.4301268	total: 115ms	remaining: 433ms
21:	learn: 21.2287388	total: 120ms	remaining: 426ms
22:	learn: 21.0553872	total: 125ms	remaining: 419ms
23:	learn: 20.8977091	total: 130ms	remaining: 413ms
24:	learn: 20.6619051	total: 136ms	remaining: 407ms
25:	learn: 20.5040955	total: 141ms	remaining: 401ms
26:	learn: 20.3181195	total: 145ms	remaining: 391ms
27:	learn: 20.0869436	total: 149ms	remaining: 383ms
28:	learn: 19.9375985	total: 153ms	remaining: 374ms
29:	learn: 19.8247516	total: 157ms	remaining: 366ms
30:	learn: 19.6261697	total: 161ms	remaining: 358ms
31:	learn: 19.4547236	total: 165ms	remaining: 350ms
32:	learn: 19.3157092	total: 168ms	remaining: 342ms
33:	learn: 19.1561419	total: 172ms	remaining: 335ms
34:	learn: 19.0453620	total: 177ms	remaining: 328ms
35:	learn: 18.8738574	total: 181ms	remaining: 322ms
36:	learn: 18.7072907	total: 185ms	remaining: 315ms
37:	learn: 18.5877943	total: 189ms	remaining: 308ms
38:	learn: 18.4436380	total: 193ms	remaining: 303ms
39:	learn: 18.3463356	total: 198ms	remaining: 296ms
40:	learn: 18.2008059	total: 202ms	remaining: 291ms
41:	learn: 18.0582079	total: 206ms	remaining: 284ms
42:	learn: 17.8891982	total: 210ms	remaining: 279ms
43:	learn: 17.7332246	total: 214ms	remaining: 272ms
44:	learn: 17.6206421	total: 218ms	remaining: 267ms
45:	learn: 17.4982800	total: 223ms	remaining: 261ms
46:	learn: 17.3970150	total: 227ms	remaining: 257ms
47:	learn: 17.3058203	total: 232ms	remaining: 251ms
48:	learn: 17.1789256	total: 236ms	remaining: 246ms
49:	learn: 17.0916229	total: 241ms	remaining: 241ms
50:	learn: 16.9859820	total: 246ms	remaining: 236ms
51:	learn: 16.8995582	total: 250ms	remaining: 231ms
52:	learn: 16.8137014	total: 254ms	remaining: 226ms
53:	learn: 16.7021451	total: 263ms	remaining: 224ms
54:	learn: 16.5895582	total: 270ms	remaining: 221ms
55:	learn: 16.5015639	total: 278ms	remaining: 219ms
56:	learn: 16.4356637	total: 285ms	remaining: 215ms
57:	learn: 16.3514525	total: 291ms	remaining: 210ms
58:	learn: 16.2401369	total: 296ms	remaining: 206ms
59:	learn: 16.1293223	total: 301ms	remaining: 201ms
60:	learn: 16.0271167	total: 306ms	remaining: 196ms
61:	learn: 15.9126257	total: 311ms	remaining: 191ms
62:	learn: 15.8391096	total: 316ms	remaining: 186ms
63:	learn: 15.7441773	total: 322ms	remaining: 181ms
64:	learn: 15.6885195	total: 327ms	remaining: 176ms
65:	learn: 15.6052039	total: 332ms	remaining: 171ms
66:	learn: 15.5074202	total: 338ms	remaining: 166ms
67:	learn: 15.4054338	total: 343ms	remaining: 161ms
68:	learn: 15.2885714	total: 348ms	remaining: 156ms
69:	learn: 15.2157472	total: 354ms	remaining: 152ms
70:	learn: 15.1031554	total: 359ms	remaining: 147ms
71:	learn: 15.0237470	total: 363ms	remaining: 141ms
72:	learn: 14.9756825	total: 367ms	remaining: 136ms
73:	learn: 14.8840596	total: 372ms	remaining: 131ms
74:	learn: 14.8077061	total: 376ms	remaining: 125ms
75:	learn: 14.7444437	total: 380ms	remaining: 120ms
76:	learn: 14.6751720	total: 384ms	remaining: 115ms
77:	learn: 14.5830333	total: 388ms	remaining: 109ms
78:	learn: 14.5241206	total: 392ms	remaining: 104ms
79:	learn: 14.4892731	total: 396ms	remaining: 98.9ms
80:	learn: 14.4256605	total: 400ms	remaining: 93.8ms
81:	learn: 14.3666860	total: 404ms	remaining: 88.7ms
82:	learn: 14.2938372	total: 408ms	remaining: 83.6ms
83:	learn: 14.2161532	total: 412ms	remaining: 78.5ms
84:	learn: 14.1582910	total: 416ms	remaining: 73.5ms
85:	learn: 14.1029153	total: 421ms	remaining: 68.5ms
86:	learn: 14.0475835	total: 425ms	remaining: 63.6ms
87:	learn: 13.9892661	total: 430ms	remaining: 58.6ms
88:	learn: 13.9481628	total: 434ms	remaining: 53.7ms
89:	learn: 13.8483991	total: 440ms	remaining: 48.8ms
90:	learn: 13.7775614	total: 444ms	remaining: 44ms
91:	learn: 13.7304585	total: 450ms	remaining: 39.1ms
92:	learn: 13.6783381	total: 454ms	remaining: 34.2ms
93:	learn: 13.6356964	total: 463ms	remaining: 29.6ms
94:	learn: 13.5924371	total: 473ms	remaining: 24.9ms
95:	learn: 13.5400746	total: 482ms	remaining: 20.1ms
96:	learn: 13.4897333	total: 489ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 495ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 500ms	remaining: 5.05ms
99:	learn: 13.3082371	total: 505ms	remaining: 0us
0:	learn: 43.0395283	total: 18.5ms	remaining: 1.83s
1:	learn: 42.1130223	total: 22.8ms	remaining: 1.12s
2:	learn: 41.1753409	total: 26.8ms	remaining: 866ms
3:	learn: 40.3637444	total: 30.8ms	remaining: 739ms
4:	learn: 39.6508088	total: 34.8ms	remaining: 661ms
5:	learn: 38.7217934	total: 39.1ms	remaining: 612ms
6:	learn: 37.8538055	total: 43.1ms	remaining: 573ms
7:	learn: 36.9793574	total: 47ms	remaining: 540ms
8:	learn: 36.3076984	total: 50.9ms	remaining: 514ms
9:	learn: 35.6673160	total: 54.9ms	remaining: 494ms
10:	learn: 34.8889800	total: 58.8ms	remaining: 476ms
11:	learn: 34.1675517	total: 62.4ms	remaining: 458ms
12:	learn: 33.6779564	total: 67.1ms	remaining: 449ms
13:	learn: 33.0710039	total: 71.8ms	remaining: 441ms
14:	learn: 32.4966674	total: 76.2ms	remaining: 432ms
15:	learn: 31.9492856	total: 81ms	remaining: 425ms
16:	learn: 31.5108129	total: 85.9ms	remaining: 419ms
17:	learn: 30.9804023	total: 91.1ms	remaining: 415ms
18:	learn: 30.4169089	total: 96.2ms	remaining: 410ms
19:	learn: 29.8930375	total: 101ms	remaining: 404ms
20:	learn: 29.3974421	total: 106ms	remaining: 397ms
21:	learn: 28.8792307	total: 111ms	remaining: 392ms
22:	learn: 28.3894474	total: 115ms	remaining: 386ms
23:	learn: 27.9921276	total: 123ms	remaining: 390ms
24:	learn: 27.6158887	total: 131ms	remaining: 392ms
25:	learn: 27.2866950	total: 140ms	remaining: 398ms
26:	learn: 26.8770708	total: 147ms	remaining: 397ms
27:	learn: 26.6233005	total: 152ms	remaining: 392ms
28:	learn: 26.2921934	total: 158ms	remaining: 386ms
29:	learn: 25.9156920	total: 163ms	remaining: 380ms
30:	learn: 25.5311106	total: 165ms	remaining: 367ms
31:	learn: 25.2178997	total: 170ms	remaining: 361ms
32:	learn: 24.8572196	total: 190ms	remaining: 385ms
33:	learn: 24.5849710	total: 194ms	remaining: 376ms
34:	learn: 24.2209190	total: 198ms	remaining: 368ms
35:	learn: 23.8708250	total: 203ms	remaining: 361ms
36:	learn: 23.5325279	total: 207ms	remaining: 353ms
37:	learn: 23.2116148	total: 213ms	remaining: 348ms
38:	learn: 22.9696787	total: 218ms	remaining: 341ms
39:	learn: 22.7936783	total: 223ms	remaining: 335ms
40:	learn: 22.6228847	total: 227ms	remaining: 326ms
41:	learn: 22.3691527	total: 231ms	remaining: 320ms
42:	learn: 22.1002173	total: 235ms	remaining: 312ms
43:	learn: 21.9157268	total: 239ms	remaining: 304ms
44:	learn: 21.7229102	total: 243ms	remaining: 297ms
45:	learn: 21.4642005	total: 247ms	remaining: 290ms
46:	learn: 21.3029442	total: 251ms	remaining: 283ms
47:	learn: 21.1469792	total: 255ms	remaining: 277ms
48:	learn: 20.9458235	total: 259ms	remaining: 270ms
49:	learn: 20.7335242	total: 263ms	remaining: 263ms
50:	learn: 20.5440269	total: 268ms	remaining: 258ms
51:	learn: 20.3661449	total: 272ms	remaining: 251ms
52:	learn: 20.2158134	total: 277ms	remaining: 245ms
53:	learn: 19.9934873	total: 281ms	remaining: 239ms
54:	learn: 19.7879739	total: 286ms	remaining: 234ms
55:	learn: 19.6630460	total: 290ms	remaining: 228ms
56:	learn: 19.5152729	total: 295ms	remaining: 222ms
57:	learn: 19.3581128	total: 299ms	remaining: 217ms
58:	learn: 19.2209303	total: 304ms	remaining: 211ms
59:	learn: 19.0965248	total: 308ms	remaining: 206ms
60:	learn: 19.0035954	total: 313ms	remaining: 200ms
61:	learn: 18.8554149	total: 319ms	remaining: 196ms
62:	learn: 18.7095427	total: 326ms	remaining: 192ms
63:	learn: 18.5751494	total: 334ms	remaining: 188ms
64:	learn: 18.4678251	total: 342ms	remaining: 184ms
65:	learn: 18.3500325	total: 359ms	remaining: 185ms
66:	learn: 18.2088983	total: 364ms	remaining: 179ms
67:	learn: 18.0737705	total: 369ms	remaining: 174ms
68:	learn: 17.9325058	total: 374ms	remaining: 168ms
69:	learn: 17.8003911	total: 379ms	remaining: 162ms
70:	learn: 17.7385366	total: 384ms	remaining: 157ms
71:	learn: 17.6106998	total: 389ms	remaining: 151ms
72:	learn: 17.4816270	total: 394ms	remaining: 146ms
73:	learn: 17.4025554	total: 400ms	remaining: 140ms
74:	learn: 17.2902108	total: 404ms	remaining: 135ms
75:	learn: 17.2158048	total: 409ms	remaining: 129ms
76:	learn: 17.1261053	total: 415ms	remaining: 124ms
77:	learn: 17.0308917	total: 420ms	remaining: 118ms
78:	learn: 16.9546705	total: 424ms	remaining: 113ms
79:	learn: 16.8319165	total: 428ms	remaining: 107ms
80:	learn: 16.7687017	total: 432ms	remaining: 101ms
81:	learn: 16.6972326	total: 437ms	remaining: 95.8ms
82:	learn: 16.6124580	total: 441ms	remaining: 90.3ms
83:	learn: 16.4999052	total: 445ms	remaining: 84.8ms
84:	learn: 16.4302484	total: 449ms	remaining: 79.2ms
85:	learn: 16.3201363	total: 453ms	remaining: 73.7ms
86:	learn: 16.2534314	total: 457ms	remaining: 68.2ms
87:	learn: 16.1720485	total: 461ms	remaining: 62.8ms
88:	learn: 16.0625751	total: 465ms	remaining: 57.4ms
89:	learn: 15.9135088	total: 469ms	remaining: 52.1ms
90:	learn: 15.8658863	total: 473ms	remaining: 46.8ms
91:	learn: 15.8066805	total: 477ms	remaining: 41.5ms
92:	learn: 15.7412103	total: 481ms	remaining: 36.2ms
93:	learn: 15.6542776	total: 486ms	remaining: 31ms
94:	learn: 15.5760334	total: 491ms	remaining: 25.8ms
95:	learn: 15.5434131	total: 495ms	remaining: 20.6ms
96:	learn: 15.4709561	total: 500ms	remaining: 15.5ms
97:	learn: 15.4449618	total: 504ms	remaining: 10.3ms
98:	learn: 15.3752761	total: 509ms	remaining: 5.14ms
99:	learn: 15.3106595	total: 513ms	remaining: 0us
0:	learn: 46.7142257	total: 5.58ms	remaining: 553ms
1:	learn: 45.7634153	total: 10.9ms	remaining: 535ms
2:	learn: 45.0054253	total: 15.9ms	remaining: 514ms
3:	learn: 44.2120432	total: 21ms	remaining: 503ms
4:	learn: 43.3960472	total: 26.1ms	remaining: 497ms
5:	learn: 42.8588120	total: 31.3ms	remaining: 491ms
6:	learn: 41.9533701	total: 36.4ms	remaining: 484ms
7:	learn: 41.2745030	total: 41.3ms	remaining: 475ms
8:	learn: 40.6797495	total: 46.7ms	remaining: 472ms
9:	learn: 39.9899571	total: 52.6ms	remaining: 473ms
10:	learn: 39.4682100	total: 57.4ms	remaining: 464ms
11:	learn: 39.0305595	total: 62ms	remaining: 455ms
12:	learn: 38.4200417	total: 66.6ms	remaining: 445ms
13:	learn: 37.8425194	total: 71.3ms	remaining: 438ms
14:	learn: 37.4203127	total: 75.5ms	remaining: 428ms
15:	learn: 36.9917688	total: 79.3ms	remaining: 417ms
16:	learn: 36.5544138	total: 83.5ms	remaining: 408ms
17:	learn: 36.0727019	total: 88.1ms	remaining: 401ms
18:	learn: 35.4835715	total: 92.2ms	remaining: 393ms
19:	learn: 34.9865654	total: 96.2ms	remaining: 385ms
20:	learn: 34.6063373	total: 100ms	remaining: 377ms
21:	learn: 34.0997289	total: 105ms	remaining: 371ms
22:	learn: 33.7313171	total: 109ms	remaining: 364ms
23:	learn: 33.3582000	total: 113ms	remaining: 357ms
24:	learn: 32.9432456	total: 117ms	remaining: 350ms
25:	learn: 32.5220888	total: 121ms	remaining: 345ms
26:	learn: 32.2172292	total: 126ms	remaining: 340ms
27:	learn: 31.8972904	total: 130ms	remaining: 335ms
28:	learn: 31.6405350	total: 135ms	remaining: 330ms
29:	learn: 31.4167702	total: 139ms	remaining: 325ms
30:	learn: 30.8541961	total: 141ms	remaining: 314ms
31:	learn: 30.5572111	total: 145ms	remaining: 309ms
32:	learn: 30.1700399	total: 150ms	remaining: 305ms
33:	learn: 29.8537271	total: 156ms	remaining: 304ms
34:	learn: 29.6192540	total: 164ms	remaining: 305ms
35:	learn: 29.3276362	total: 175ms	remaining: 310ms
36:	learn: 28.9985179	total: 181ms	remaining: 307ms
37:	learn: 28.7046880	total: 188ms	remaining: 306ms
38:	learn: 28.4412677	total: 193ms	remaining: 302ms
39:	learn: 28.1277292	total: 198ms	remaining: 297ms
40:	learn: 27.9000750	total: 203ms	remaining: 292ms
41:	learn: 27.5433162	total: 208ms	remaining: 288ms
42:	learn: 27.2493285	total: 214ms	remaining: 284ms
43:	learn: 26.9576632	total: 216ms	remaining: 275ms
44:	learn: 26.6177110	total: 222ms	remaining: 271ms
45:	learn: 26.2812456	total: 227ms	remaining: 266ms
46:	learn: 26.0803859	total: 232ms	remaining: 261ms
47:	learn: 25.9543581	total: 237ms	remaining: 256ms
48:	learn: 25.7951582	total: 241ms	remaining: 251ms
49:	learn: 25.6548184	total: 247ms	remaining: 247ms
50:	learn: 25.4010843	total: 253ms	remaining: 243ms
51:	learn: 24.9773937	total: 257ms	remaining: 237ms
52:	learn: 24.8026156	total: 262ms	remaining: 232ms
53:	learn: 24.5568053	total: 266ms	remaining: 226ms
54:	learn: 24.2281839	total: 270ms	remaining: 221ms
55:	learn: 23.9202795	total: 274ms	remaining: 215ms
56:	learn: 23.7625591	total: 278ms	remaining: 210ms
57:	learn: 23.5429721	total: 282ms	remaining: 204ms
58:	learn: 23.3175893	total: 286ms	remaining: 199ms
59:	learn: 23.2035130	total: 290ms	remaining: 194ms
60:	learn: 23.0232450	total: 295ms	remaining: 188ms
61:	learn: 22.8384958	total: 299ms	remaining: 183ms
62:	learn: 22.6499902	total: 303ms	remaining: 178ms
63:	learn: 22.4577426	total: 307ms	remaining: 173ms
64:	learn: 22.3333158	total: 312ms	remaining: 168ms
65:	learn: 22.2064131	total: 316ms	remaining: 163ms
66:	learn: 22.1434971	total: 321ms	remaining: 158ms
67:	learn: 21.9596519	total: 326ms	remaining: 153ms
68:	learn: 21.8475576	total: 330ms	remaining: 148ms
69:	learn: 21.6954745	total: 335ms	remaining: 144ms
70:	learn: 21.5635976	total: 340ms	remaining: 139ms
71:	learn: 21.4588506	total: 345ms	remaining: 134ms
72:	learn: 21.3527268	total: 350ms	remaining: 129ms
73:	learn: 21.2661288	total: 358ms	remaining: 126ms
74:	learn: 21.1817333	total: 366ms	remaining: 122ms
75:	learn: 21.0527553	total: 377ms	remaining: 119ms
76:	learn: 20.9229021	total: 383ms	remaining: 115ms
77:	learn: 20.7563946	total: 391ms	remaining: 110ms
78:	learn: 20.6569831	total: 396ms	remaining: 105ms
79:	learn: 20.4982663	total: 401ms	remaining: 100ms
80:	learn: 20.3185460	total: 407ms	remaining: 95.4ms
81:	learn: 20.2096241	total: 412ms	remaining: 90.4ms
82:	learn: 20.1274891	total: 417ms	remaining: 85.4ms
83:	learn: 20.0740139	total: 422ms	remaining: 80.4ms
84:	learn: 19.9630699	total: 427ms	remaining: 75.3ms
85:	learn: 19.8753899	total: 432ms	remaining: 70.4ms
86:	learn: 19.6563612	total: 438ms	remaining: 65.4ms
87:	learn: 19.4680232	total: 443ms	remaining: 60.4ms
88:	learn: 19.3503431	total: 448ms	remaining: 55.3ms
89:	learn: 19.2221379	total: 453ms	remaining: 50.4ms
90:	learn: 19.0732542	total: 458ms	remaining: 45.2ms
91:	learn: 18.9825190	total: 462ms	remaining: 40.1ms
92:	learn: 18.8839009	total: 466ms	remaining: 35.1ms
93:	learn: 18.8012219	total: 470ms	remaining: 30ms
94:	learn: 18.7172713	total: 474ms	remaining: 25ms
95:	learn: 18.6201170	total: 479ms	remaining: 20ms
96:	learn: 18.5318611	total: 484ms	remaining: 15ms
97:	learn: 18.3833356	total: 489ms	remaining: 9.97ms
98:	learn: 18.3289700	total: 494ms	remaining: 4.99ms
99:	learn: 18.2227333	total: 499ms	remaining: 0us
0:	learn: 46.3764524	total: 8.81ms	remaining: 872ms
1:	learn: 45.5561269	total: 16.3ms	remaining: 797ms
2:	learn: 44.8811245	total: 24.6ms	remaining: 796ms
3:	learn: 44.0788617	total: 30.9ms	remaining: 742ms
4:	learn: 43.3619790	total: 37ms	remaining: 703ms
5:	learn: 42.6912112	total: 42.1ms	remaining: 660ms
6:	learn: 42.2292118	total: 47.2ms	remaining: 628ms
7:	learn: 41.7725191	total: 52.5ms	remaining: 603ms
8:	learn: 41.1676614	total: 57.6ms	remaining: 582ms
9:	learn: 40.5771076	total: 62.7ms	remaining: 564ms
10:	learn: 39.8343757	total: 67.7ms	remaining: 548ms
11:	learn: 39.3761142	total: 72.6ms	remaining: 533ms
12:	learn: 38.5254692	total: 77.8ms	remaining: 520ms
13:	learn: 37.9629555	total: 83.1ms	remaining: 511ms
14:	learn: 37.4418438	total: 88ms	remaining: 499ms
15:	learn: 37.0507283	total: 92.8ms	remaining: 487ms
16:	learn: 36.6264217	total: 97.9ms	remaining: 478ms
17:	learn: 36.1114940	total: 103ms	remaining: 471ms
18:	learn: 35.7193862	total: 107ms	remaining: 457ms
19:	learn: 35.3301177	total: 111ms	remaining: 445ms
20:	learn: 35.0598280	total: 115ms	remaining: 434ms
21:	learn: 34.5469736	total: 119ms	remaining: 423ms
22:	learn: 34.2064215	total: 123ms	remaining: 413ms
23:	learn: 33.7280710	total: 127ms	remaining: 403ms
24:	learn: 33.3282940	total: 131ms	remaining: 394ms
25:	learn: 32.8478961	total: 136ms	remaining: 386ms
26:	learn: 32.5722164	total: 140ms	remaining: 378ms
27:	learn: 32.2457019	total: 144ms	remaining: 369ms
28:	learn: 31.9230495	total: 148ms	remaining: 362ms
29:	learn: 31.4311611	total: 152ms	remaining: 355ms
30:	learn: 30.9179052	total: 156ms	remaining: 348ms
31:	learn: 30.6201141	total: 160ms	remaining: 341ms
32:	learn: 30.3421106	total: 165ms	remaining: 334ms
33:	learn: 29.9885373	total: 169ms	remaining: 328ms
34:	learn: 29.7462780	total: 173ms	remaining: 321ms
35:	learn: 29.3607153	total: 177ms	remaining: 315ms
36:	learn: 29.1793078	total: 181ms	remaining: 308ms
37:	learn: 28.9276538	total: 186ms	remaining: 303ms
38:	learn: 28.6903934	total: 190ms	remaining: 298ms
39:	learn: 28.2095033	total: 195ms	remaining: 292ms
40:	learn: 27.7990608	total: 199ms	remaining: 286ms
41:	learn: 27.5406632	total: 203ms	remaining: 281ms
42:	learn: 27.2575376	total: 208ms	remaining: 276ms
43:	learn: 26.9741707	total: 213ms	remaining: 271ms
44:	learn: 26.6606899	total: 218ms	remaining: 266ms
45:	learn: 26.4015833	total: 225ms	remaining: 265ms
46:	learn: 26.1828993	total: 233ms	remaining: 262ms
47:	learn: 26.0233709	total: 238ms	remaining: 258ms
48:	learn: 25.9300399	total: 244ms	remaining: 254ms
49:	learn: 25.5861489	total: 252ms	remaining: 252ms
50:	learn: 25.4322012	total: 257ms	remaining: 247ms
51:	learn: 25.1595644	total: 262ms	remaining: 242ms
52:	learn: 24.9955303	total: 267ms	remaining: 237ms
53:	learn: 24.7273966	total: 272ms	remaining: 232ms
54:	learn: 24.5747978	total: 277ms	remaining: 227ms
55:	learn: 24.3807977	total: 282ms	remaining: 222ms
56:	learn: 24.1689569	total: 288ms	remaining: 217ms
57:	learn: 23.9898221	total: 293ms	remaining: 212ms
58:	learn: 23.7566414	total: 298ms	remaining: 207ms
59:	learn: 23.6641165	total: 303ms	remaining: 202ms
60:	learn: 23.5658066	total: 307ms	remaining: 196ms
61:	learn: 23.4338851	total: 312ms	remaining: 191ms
62:	learn: 23.2408837	total: 317ms	remaining: 186ms
63:	learn: 23.0642038	total: 322ms	remaining: 181ms
64:	learn: 22.9032045	total: 326ms	remaining: 176ms
65:	learn: 22.7736138	total: 331ms	remaining: 171ms
66:	learn: 22.6836443	total: 335ms	remaining: 165ms
67:	learn: 22.5983654	total: 340ms	remaining: 160ms
68:	learn: 22.4419813	total: 344ms	remaining: 155ms
69:	learn: 22.2863339	total: 348ms	remaining: 149ms
70:	learn: 22.1792943	total: 353ms	remaining: 144ms
71:	learn: 22.1130574	total: 357ms	remaining: 139ms
72:	learn: 21.9858161	total: 361ms	remaining: 134ms
73:	learn: 21.8577784	total: 366ms	remaining: 129ms
74:	learn: 21.7845222	total: 370ms	remaining: 123ms
75:	learn: 21.6831390	total: 374ms	remaining: 118ms
76:	learn: 21.6292521	total: 378ms	remaining: 113ms
77:	learn: 21.5789330	total: 383ms	remaining: 108ms
78:	learn: 21.5420942	total: 388ms	remaining: 103ms
79:	learn: 21.4280939	total: 392ms	remaining: 98ms
80:	learn: 21.3641165	total: 397ms	remaining: 93ms
81:	learn: 21.2734814	total: 401ms	remaining: 88ms
82:	learn: 21.2220323	total: 405ms	remaining: 83ms
83:	learn: 21.0625792	total: 410ms	remaining: 78ms
84:	learn: 20.9488320	total: 414ms	remaining: 73.1ms
85:	learn: 20.8504255	total: 421ms	remaining: 68.6ms
86:	learn: 20.7848510	total: 429ms	remaining: 64.1ms
87:	learn: 20.7247442	total: 438ms	remaining: 59.7ms
88:	learn: 20.5698590	total: 444ms	remaining: 54.8ms
89:	learn: 20.4067620	total: 451ms	remaining: 50.1ms
90:	learn: 20.3062482	total: 456ms	remaining: 45.1ms
91:	learn: 20.2029696	total: 462ms	remaining: 40.1ms
92:	learn: 20.1384849	total: 467ms	remaining: 35.1ms
93:	learn: 20.0260709	total: 472ms	remaining: 30.1ms
94:	learn: 19.9122100	total: 478ms	remaining: 25.1ms
95:	learn: 19.8648487	total: 483ms	remaining: 20.1ms
96:	learn: 19.8207072	total: 489ms	remaining: 15.1ms
97:	learn: 19.7261189	total: 494ms	remaining: 10.1ms
98:	learn: 19.7042438	total: 499ms	remaining: 5.04ms
99:	learn: 19.6546645	total: 504ms	remaining: 0us
0:	learn: 47.0239288	total: 4.06ms	remaining: 402ms
1:	learn: 46.2253829	total: 8.18ms	remaining: 401ms
2:	learn: 45.5580301	total: 11.9ms	remaining: 385ms
3:	learn: 44.7273237	total: 15.9ms	remaining: 381ms
4:	learn: 43.8867421	total: 20.1ms	remaining: 382ms
5:	learn: 43.3615911	total: 23.9ms	remaining: 374ms
6:	learn: 42.8548390	total: 27.9ms	remaining: 370ms
7:	learn: 42.1606758	total: 31.5ms	remaining: 363ms
8:	learn: 41.6625870	total: 35.5ms	remaining: 359ms
9:	learn: 40.9497092	total: 39.5ms	remaining: 356ms
10:	learn: 40.1886318	total: 44.1ms	remaining: 357ms
11:	learn: 39.7456423	total: 48.7ms	remaining: 357ms
12:	learn: 39.1171373	total: 53.3ms	remaining: 357ms
13:	learn: 38.5451069	total: 57.9ms	remaining: 356ms
14:	learn: 38.0155834	total: 62.4ms	remaining: 354ms
15:	learn: 37.5631354	total: 66.9ms	remaining: 351ms
16:	learn: 37.1030023	total: 71.5ms	remaining: 349ms
17:	learn: 36.4563029	total: 76.1ms	remaining: 346ms
18:	learn: 36.0160976	total: 84.3ms	remaining: 359ms
19:	learn: 35.5079827	total: 91.5ms	remaining: 366ms
20:	learn: 35.2111885	total: 100ms	remaining: 376ms
21:	learn: 34.9397465	total: 106ms	remaining: 375ms
22:	learn: 34.5270048	total: 112ms	remaining: 376ms
23:	learn: 34.0169260	total: 117ms	remaining: 371ms
24:	learn: 33.7454892	total: 122ms	remaining: 366ms
25:	learn: 33.2648157	total: 127ms	remaining: 362ms
26:	learn: 32.8899427	total: 132ms	remaining: 357ms
27:	learn: 32.6185050	total: 137ms	remaining: 353ms
28:	learn: 32.3528531	total: 143ms	remaining: 349ms
29:	learn: 32.0859923	total: 147ms	remaining: 344ms
30:	learn: 31.6511144	total: 153ms	remaining: 340ms
31:	learn: 31.2571765	total: 158ms	remaining: 336ms
32:	learn: 30.9770049	total: 163ms	remaining: 331ms
33:	learn: 30.6084872	total: 167ms	remaining: 325ms
34:	learn: 30.3448632	total: 173ms	remaining: 320ms
35:	learn: 30.0360942	total: 179ms	remaining: 317ms
36:	learn: 29.6648968	total: 183ms	remaining: 311ms
37:	learn: 29.3165114	total: 187ms	remaining: 306ms
38:	learn: 29.0829198	total: 191ms	remaining: 299ms
39:	learn: 28.7752064	total: 196ms	remaining: 294ms
40:	learn: 28.3622191	total: 200ms	remaining: 288ms
41:	learn: 28.1346631	total: 204ms	remaining: 282ms
42:	learn: 27.9585719	total: 208ms	remaining: 276ms
43:	learn: 27.6565566	total: 212ms	remaining: 270ms
44:	learn: 27.3616172	total: 216ms	remaining: 264ms
45:	learn: 27.0658637	total: 220ms	remaining: 258ms
46:	learn: 26.8660382	total: 224ms	remaining: 253ms
47:	learn: 26.6536078	total: 229ms	remaining: 248ms
48:	learn: 26.3524440	total: 234ms	remaining: 243ms
49:	learn: 26.1595277	total: 238ms	remaining: 238ms
50:	learn: 25.9273523	total: 242ms	remaining: 233ms
51:	learn: 25.7195580	total: 247ms	remaining: 228ms
52:	learn: 25.5730225	total: 252ms	remaining: 224ms
53:	learn: 25.3455276	total: 257ms	remaining: 219ms
54:	learn: 25.2289675	total: 262ms	remaining: 214ms
55:	learn: 25.0133024	total: 267ms	remaining: 210ms
56:	learn: 24.8406714	total: 271ms	remaining: 205ms
57:	learn: 24.6367857	total: 276ms	remaining: 200ms
58:	learn: 24.5338177	total: 284ms	remaining: 198ms
59:	learn: 24.3799964	total: 293ms	remaining: 195ms
60:	learn: 24.1447492	total: 302ms	remaining: 193ms
61:	learn: 23.9880495	total: 310ms	remaining: 190ms
62:	learn: 23.7140630	total: 316ms	remaining: 186ms
63:	learn: 23.5003791	total: 322ms	remaining: 181ms
64:	learn: 23.3207645	total: 328ms	remaining: 176ms
65:	learn: 23.1958356	total: 333ms	remaining: 172ms
66:	learn: 23.0471302	total: 338ms	remaining: 167ms
67:	learn: 22.8977183	total: 343ms	remaining: 161ms
68:	learn: 22.7187400	total: 349ms	remaining: 157ms
69:	learn: 22.6523405	total: 354ms	remaining: 152ms
70:	learn: 22.4767453	total: 359ms	remaining: 147ms
71:	learn: 22.3243677	total: 364ms	remaining: 142ms
72:	learn: 22.2133096	total: 369ms	remaining: 137ms
73:	learn: 22.1151713	total: 375ms	remaining: 132ms
74:	learn: 22.0296666	total: 381ms	remaining: 127ms
75:	learn: 21.9195980	total: 386ms	remaining: 122ms
76:	learn: 21.8401730	total: 391ms	remaining: 117ms
77:	learn: 21.8079797	total: 395ms	remaining: 112ms
78:	learn: 21.7274109	total: 400ms	remaining: 106ms
79:	learn: 21.6663032	total: 405ms	remaining: 101ms
80:	learn: 21.5633117	total: 409ms	remaining: 95.9ms
81:	learn: 21.4542467	total: 413ms	remaining: 90.7ms
82:	learn: 21.3177957	total: 418ms	remaining: 85.5ms
83:	learn: 21.1289167	total: 422ms	remaining: 80.4ms
84:	learn: 21.0297368	total: 426ms	remaining: 75.2ms
85:	learn: 20.9089564	total: 431ms	remaining: 70.2ms
86:	learn: 20.7653988	total: 436ms	remaining: 65.1ms
87:	learn: 20.6521894	total: 440ms	remaining: 60ms
88:	learn: 20.5193021	total: 444ms	remaining: 54.9ms
89:	learn: 20.4361620	total: 449ms	remaining: 49.9ms
90:	learn: 20.3546710	total: 454ms	remaining: 44.9ms
91:	learn: 20.2513296	total: 458ms	remaining: 39.8ms
92:	learn: 20.1605550	total: 462ms	remaining: 34.8ms
93:	learn: 20.0515942	total: 467ms	remaining: 29.8ms
94:	learn: 19.9800764	total: 471ms	remaining: 24.8ms
95:	learn: 19.8996532	total: 476ms	remaining: 19.8ms
96:	learn: 19.8450910	total: 485ms	remaining: 15ms
97:	learn: 19.7887346	total: 493ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 502ms	remaining: 5.07ms
99:	learn: 19.6328825	total: 519ms	remaining: 0us
0:	learn: 27.5585353	total: 4.83ms	remaining: 478ms
1:	learn: 27.1656995	total: 8.91ms	remaining: 436ms
2:	learn: 26.8590175	total: 12.8ms	remaining: 414ms
3:	learn: 26.5818406	total: 17.2ms	remaining: 413ms
4:	learn: 26.1148663	total: 21.4ms	remaining: 406ms
5:	learn: 25.7690484	total: 25.2ms	remaining: 395ms
6:	learn: 25.3489206	total: 29.3ms	remaining: 389ms
7:	learn: 24.9542406	total: 33.3ms	remaining: 383ms
8:	learn: 24.6777517	total: 37.5ms	remaining: 379ms
9:	learn: 24.3242344	total: 41.5ms	remaining: 373ms
10:	learn: 24.0383073	total: 45.8ms	remaining: 371ms
11:	learn: 23.7383420	total: 49.7ms	remaining: 365ms
12:	learn: 23.3461670	total: 53.5ms	remaining: 358ms
13:	learn: 23.0928636	total: 57.4ms	remaining: 353ms
14:	learn: 22.8770414	total: 61.6ms	remaining: 349ms
15:	learn: 22.6323214	total: 66.1ms	remaining: 347ms
16:	learn: 22.3597072	total: 70.3ms	remaining: 343ms
17:	learn: 22.1079813	total: 74ms	remaining: 337ms
18:	learn: 21.8421199	total: 78.4ms	remaining: 334ms
19:	learn: 21.6576508	total: 83.7ms	remaining: 335ms
20:	learn: 21.4301268	total: 88.5ms	remaining: 333ms
21:	learn: 21.2287388	total: 93.5ms	remaining: 331ms
22:	learn: 21.0553872	total: 98.3ms	remaining: 329ms
23:	learn: 20.8977091	total: 103ms	remaining: 327ms
24:	learn: 20.6619051	total: 108ms	remaining: 324ms
25:	learn: 20.5040955	total: 112ms	remaining: 320ms
26:	learn: 20.3181195	total: 121ms	remaining: 326ms
27:	learn: 20.0869436	total: 129ms	remaining: 332ms
28:	learn: 19.9375985	total: 138ms	remaining: 339ms
29:	learn: 19.8247516	total: 146ms	remaining: 341ms
30:	learn: 19.6261697	total: 151ms	remaining: 337ms
31:	learn: 19.4547236	total: 157ms	remaining: 333ms
32:	learn: 19.3157092	total: 162ms	remaining: 329ms
33:	learn: 19.1561419	total: 167ms	remaining: 324ms
34:	learn: 19.0453620	total: 172ms	remaining: 319ms
35:	learn: 18.8738574	total: 177ms	remaining: 315ms
36:	learn: 18.7072907	total: 186ms	remaining: 317ms
37:	learn: 18.5877943	total: 191ms	remaining: 312ms
38:	learn: 18.4436380	total: 196ms	remaining: 307ms
39:	learn: 18.3463356	total: 201ms	remaining: 302ms
40:	learn: 18.2008059	total: 206ms	remaining: 296ms
41:	learn: 18.0582079	total: 211ms	remaining: 291ms
42:	learn: 17.8891982	total: 216ms	remaining: 286ms
43:	learn: 17.7332246	total: 220ms	remaining: 281ms
44:	learn: 17.6206421	total: 224ms	remaining: 274ms
45:	learn: 17.4982800	total: 229ms	remaining: 268ms
46:	learn: 17.3970150	total: 233ms	remaining: 262ms
47:	learn: 17.3058203	total: 237ms	remaining: 256ms
48:	learn: 17.1789256	total: 241ms	remaining: 251ms
49:	learn: 17.0916229	total: 245ms	remaining: 245ms
50:	learn: 16.9859820	total: 249ms	remaining: 239ms
51:	learn: 16.8995582	total: 253ms	remaining: 233ms
52:	learn: 16.8137014	total: 257ms	remaining: 228ms
53:	learn: 16.7021451	total: 261ms	remaining: 222ms
54:	learn: 16.5895582	total: 265ms	remaining: 217ms
55:	learn: 16.5015639	total: 269ms	remaining: 211ms
56:	learn: 16.4356637	total: 274ms	remaining: 206ms
57:	learn: 16.3514525	total: 278ms	remaining: 201ms
58:	learn: 16.2401369	total: 282ms	remaining: 196ms
59:	learn: 16.1293223	total: 287ms	remaining: 191ms
60:	learn: 16.0271167	total: 292ms	remaining: 187ms
61:	learn: 15.9126257	total: 297ms	remaining: 182ms
62:	learn: 15.8391096	total: 301ms	remaining: 177ms
63:	learn: 15.7441773	total: 306ms	remaining: 172ms
64:	learn: 15.6885195	total: 310ms	remaining: 167ms
65:	learn: 15.6052039	total: 317ms	remaining: 163ms
66:	learn: 15.5074202	total: 324ms	remaining: 160ms
67:	learn: 15.4054338	total: 332ms	remaining: 156ms
68:	learn: 15.2885714	total: 339ms	remaining: 152ms
69:	learn: 15.2157472	total: 347ms	remaining: 149ms
70:	learn: 15.1031554	total: 351ms	remaining: 144ms
71:	learn: 15.0237470	total: 356ms	remaining: 139ms
72:	learn: 14.9756825	total: 361ms	remaining: 134ms
73:	learn: 14.8840596	total: 367ms	remaining: 129ms
74:	learn: 14.8077061	total: 372ms	remaining: 124ms
75:	learn: 14.7444437	total: 377ms	remaining: 119ms
76:	learn: 14.6751720	total: 382ms	remaining: 114ms
77:	learn: 14.5830333	total: 387ms	remaining: 109ms
78:	learn: 14.5241206	total: 392ms	remaining: 104ms
79:	learn: 14.4892731	total: 397ms	remaining: 99.3ms
80:	learn: 14.4256605	total: 402ms	remaining: 94.3ms
81:	learn: 14.3666860	total: 407ms	remaining: 89.3ms
82:	learn: 14.2938372	total: 413ms	remaining: 84.5ms
83:	learn: 14.2161532	total: 417ms	remaining: 79.5ms
84:	learn: 14.1582910	total: 421ms	remaining: 74.3ms
85:	learn: 14.1029153	total: 425ms	remaining: 69.3ms
86:	learn: 14.0475835	total: 430ms	remaining: 64.2ms
87:	learn: 13.9892661	total: 434ms	remaining: 59.1ms
88:	learn: 13.9481628	total: 438ms	remaining: 54.1ms
89:	learn: 13.8483991	total: 448ms	remaining: 49.7ms
90:	learn: 13.7775614	total: 452ms	remaining: 44.7ms
91:	learn: 13.7304585	total: 456ms	remaining: 39.6ms
92:	learn: 13.6783381	total: 460ms	remaining: 34.6ms
93:	learn: 13.6356964	total: 464ms	remaining: 29.6ms
94:	learn: 13.5924371	total: 468ms	remaining: 24.6ms
95:	learn: 13.5400746	total: 472ms	remaining: 19.7ms
96:	learn: 13.4897333	total: 476ms	remaining: 14.7ms
97:	learn: 13.4470321	total: 481ms	remaining: 9.81ms
98:	learn: 13.3856082	total: 485ms	remaining: 4.9ms
99:	learn: 13.3082371	total: 489ms	remaining: 0us
0:	learn: 43.0395283	total: 5.71ms	remaining: 565ms
1:	learn: 42.1130223	total: 11ms	remaining: 537ms
2:	learn: 41.1753409	total: 16.1ms	remaining: 520ms
3:	learn: 40.3637444	total: 26.1ms	remaining: 626ms
4:	learn: 39.6508088	total: 31.2ms	remaining: 592ms
5:	learn: 38.7217934	total: 36.2ms	remaining: 567ms
6:	learn: 37.8538055	total: 41.1ms	remaining: 547ms
7:	learn: 36.9793574	total: 46.3ms	remaining: 532ms
8:	learn: 36.3076984	total: 51.3ms	remaining: 518ms
9:	learn: 35.6673160	total: 56.1ms	remaining: 505ms
10:	learn: 34.8889800	total: 61.7ms	remaining: 499ms
11:	learn: 34.1675517	total: 67ms	remaining: 491ms
12:	learn: 33.6779564	total: 71.9ms	remaining: 481ms
13:	learn: 33.0710039	total: 76.3ms	remaining: 469ms
14:	learn: 32.4966674	total: 80.3ms	remaining: 455ms
15:	learn: 31.9492856	total: 84.4ms	remaining: 443ms
16:	learn: 31.5108129	total: 88.6ms	remaining: 432ms
17:	learn: 30.9804023	total: 92.8ms	remaining: 423ms
18:	learn: 30.4169089	total: 97.1ms	remaining: 414ms
19:	learn: 29.8930375	total: 101ms	remaining: 406ms
20:	learn: 29.3974421	total: 106ms	remaining: 399ms
21:	learn: 28.8792307	total: 110ms	remaining: 391ms
22:	learn: 28.3894474	total: 115ms	remaining: 385ms
23:	learn: 27.9921276	total: 119ms	remaining: 378ms
24:	learn: 27.6158887	total: 124ms	remaining: 371ms
25:	learn: 27.2866950	total: 128ms	remaining: 364ms
26:	learn: 26.8770708	total: 132ms	remaining: 358ms
27:	learn: 26.6233005	total: 137ms	remaining: 353ms
28:	learn: 26.2921934	total: 142ms	remaining: 347ms
29:	learn: 25.9156920	total: 147ms	remaining: 342ms
30:	learn: 25.5311106	total: 149ms	remaining: 331ms
31:	learn: 25.2178997	total: 153ms	remaining: 326ms
32:	learn: 24.8572196	total: 158ms	remaining: 320ms
33:	learn: 24.5849710	total: 162ms	remaining: 315ms
34:	learn: 24.2209190	total: 167ms	remaining: 310ms
35:	learn: 23.8708250	total: 175ms	remaining: 311ms
36:	learn: 23.5325279	total: 183ms	remaining: 311ms
37:	learn: 23.2116148	total: 191ms	remaining: 312ms
38:	learn: 22.9696787	total: 198ms	remaining: 309ms
39:	learn: 22.7936783	total: 205ms	remaining: 308ms
40:	learn: 22.6228847	total: 211ms	remaining: 303ms
41:	learn: 22.3691527	total: 216ms	remaining: 299ms
42:	learn: 22.1002173	total: 222ms	remaining: 294ms
43:	learn: 21.9157268	total: 227ms	remaining: 289ms
44:	learn: 21.7229102	total: 232ms	remaining: 284ms
45:	learn: 21.4642005	total: 238ms	remaining: 279ms
46:	learn: 21.3029442	total: 243ms	remaining: 275ms
47:	learn: 21.1469792	total: 249ms	remaining: 270ms
48:	learn: 20.9458235	total: 255ms	remaining: 265ms
49:	learn: 20.7335242	total: 261ms	remaining: 261ms
50:	learn: 20.5440269	total: 266ms	remaining: 255ms
51:	learn: 20.3661449	total: 272ms	remaining: 251ms
52:	learn: 20.2158134	total: 277ms	remaining: 246ms
53:	learn: 19.9934873	total: 282ms	remaining: 240ms
54:	learn: 19.7879739	total: 287ms	remaining: 235ms
55:	learn: 19.6630460	total: 292ms	remaining: 229ms
56:	learn: 19.5152729	total: 296ms	remaining: 224ms
57:	learn: 19.3581128	total: 301ms	remaining: 218ms
58:	learn: 19.2209303	total: 306ms	remaining: 212ms
59:	learn: 19.0965248	total: 310ms	remaining: 207ms
60:	learn: 19.0035954	total: 315ms	remaining: 201ms
61:	learn: 18.8554149	total: 320ms	remaining: 196ms
62:	learn: 18.7095427	total: 324ms	remaining: 191ms
63:	learn: 18.5751494	total: 329ms	remaining: 185ms
64:	learn: 18.4678251	total: 334ms	remaining: 180ms
65:	learn: 18.3500325	total: 339ms	remaining: 175ms
66:	learn: 18.2088983	total: 344ms	remaining: 170ms
67:	learn: 18.0737705	total: 349ms	remaining: 164ms
68:	learn: 17.9325058	total: 354ms	remaining: 159ms
69:	learn: 17.8003911	total: 358ms	remaining: 154ms
70:	learn: 17.7385366	total: 363ms	remaining: 148ms
71:	learn: 17.6106998	total: 368ms	remaining: 143ms
72:	learn: 17.4816270	total: 377ms	remaining: 140ms
73:	learn: 17.4025554	total: 385ms	remaining: 135ms
74:	learn: 17.2902108	total: 394ms	remaining: 131ms
75:	learn: 17.2158048	total: 402ms	remaining: 127ms
76:	learn: 17.1261053	total: 408ms	remaining: 122ms
77:	learn: 17.0308917	total: 413ms	remaining: 116ms
78:	learn: 16.9546705	total: 418ms	remaining: 111ms
79:	learn: 16.8319165	total: 424ms	remaining: 106ms
80:	learn: 16.7687017	total: 430ms	remaining: 101ms
81:	learn: 16.6972326	total: 435ms	remaining: 95.5ms
82:	learn: 16.6124580	total: 440ms	remaining: 90.2ms
83:	learn: 16.4999052	total: 446ms	remaining: 84.9ms
84:	learn: 16.4302484	total: 451ms	remaining: 79.6ms
85:	learn: 16.3201363	total: 457ms	remaining: 74.3ms
86:	learn: 16.2534314	total: 462ms	remaining: 69ms
87:	learn: 16.1720485	total: 467ms	remaining: 63.7ms
88:	learn: 16.0625751	total: 473ms	remaining: 58.4ms
89:	learn: 15.9135088	total: 478ms	remaining: 53.2ms
90:	learn: 15.8658863	total: 483ms	remaining: 47.7ms
91:	learn: 15.8066805	total: 487ms	remaining: 42.4ms
92:	learn: 15.7412103	total: 492ms	remaining: 37ms
93:	learn: 15.6542776	total: 496ms	remaining: 31.7ms
94:	learn: 15.5760334	total: 501ms	remaining: 26.3ms
95:	learn: 15.5434131	total: 505ms	remaining: 21ms
96:	learn: 15.4709561	total: 510ms	remaining: 15.8ms
97:	learn: 15.4449618	total: 514ms	remaining: 10.5ms
98:	learn: 15.3752761	total: 519ms	remaining: 5.24ms
99:	learn: 15.3106595	total: 524ms	remaining: 0us
0:	learn: 46.7142257	total: 7.8ms	remaining: 772ms
1:	learn: 45.7634153	total: 17.8ms	remaining: 872ms
2:	learn: 45.0054253	total: 23.5ms	remaining: 759ms
3:	learn: 44.2120432	total: 30.3ms	remaining: 728ms
4:	learn: 43.3960472	total: 35.4ms	remaining: 672ms
5:	learn: 42.8588120	total: 40.3ms	remaining: 631ms
6:	learn: 41.9533701	total: 45.6ms	remaining: 606ms
7:	learn: 41.2745030	total: 50.9ms	remaining: 585ms
8:	learn: 40.6797495	total: 55.7ms	remaining: 563ms
9:	learn: 39.9899571	total: 60.8ms	remaining: 547ms
10:	learn: 39.4682100	total: 66.1ms	remaining: 535ms
11:	learn: 39.0305595	total: 71.1ms	remaining: 521ms
12:	learn: 38.4200417	total: 76.7ms	remaining: 513ms
13:	learn: 37.8425194	total: 81.6ms	remaining: 501ms
14:	learn: 37.4203127	total: 86.3ms	remaining: 489ms
15:	learn: 36.9917688	total: 91.2ms	remaining: 479ms
16:	learn: 36.5544138	total: 96.7ms	remaining: 472ms
17:	learn: 36.0727019	total: 102ms	remaining: 465ms
18:	learn: 35.4835715	total: 106ms	remaining: 453ms
19:	learn: 34.9865654	total: 111ms	remaining: 443ms
20:	learn: 34.6063373	total: 115ms	remaining: 431ms
21:	learn: 34.0997289	total: 119ms	remaining: 422ms
22:	learn: 33.7313171	total: 123ms	remaining: 412ms
23:	learn: 33.3582000	total: 127ms	remaining: 402ms
24:	learn: 32.9432456	total: 131ms	remaining: 393ms
25:	learn: 32.5220888	total: 135ms	remaining: 385ms
26:	learn: 32.2172292	total: 139ms	remaining: 376ms
27:	learn: 31.8972904	total: 143ms	remaining: 368ms
28:	learn: 31.6405350	total: 147ms	remaining: 360ms
29:	learn: 31.4167702	total: 151ms	remaining: 353ms
30:	learn: 30.8541961	total: 153ms	remaining: 341ms
31:	learn: 30.5572111	total: 157ms	remaining: 334ms
32:	learn: 30.1700399	total: 161ms	remaining: 327ms
33:	learn: 29.8537271	total: 165ms	remaining: 321ms
34:	learn: 29.6192540	total: 170ms	remaining: 316ms
35:	learn: 29.3276362	total: 175ms	remaining: 311ms
36:	learn: 28.9985179	total: 180ms	remaining: 306ms
37:	learn: 28.7046880	total: 184ms	remaining: 301ms
38:	learn: 28.4412677	total: 189ms	remaining: 296ms
39:	learn: 28.1277292	total: 193ms	remaining: 290ms
40:	learn: 27.9000750	total: 198ms	remaining: 285ms
41:	learn: 27.5433162	total: 203ms	remaining: 280ms
42:	learn: 27.2493285	total: 211ms	remaining: 279ms
43:	learn: 26.9576632	total: 213ms	remaining: 272ms
44:	learn: 26.6177110	total: 222ms	remaining: 271ms
45:	learn: 26.2812456	total: 228ms	remaining: 268ms
46:	learn: 26.0803859	total: 235ms	remaining: 266ms
47:	learn: 25.9543581	total: 241ms	remaining: 261ms
48:	learn: 25.7951582	total: 246ms	remaining: 256ms
49:	learn: 25.6548184	total: 251ms	remaining: 251ms
50:	learn: 25.4010843	total: 256ms	remaining: 246ms
51:	learn: 24.9773937	total: 261ms	remaining: 240ms
52:	learn: 24.8026156	total: 266ms	remaining: 236ms
53:	learn: 24.5568053	total: 271ms	remaining: 231ms
54:	learn: 24.2281839	total: 276ms	remaining: 226ms
55:	learn: 23.9202795	total: 281ms	remaining: 221ms
56:	learn: 23.7625591	total: 286ms	remaining: 216ms
57:	learn: 23.5429721	total: 291ms	remaining: 211ms
58:	learn: 23.3175893	total: 296ms	remaining: 206ms
59:	learn: 23.2035130	total: 301ms	remaining: 201ms
60:	learn: 23.0232450	total: 307ms	remaining: 196ms
61:	learn: 22.8384958	total: 311ms	remaining: 191ms
62:	learn: 22.6499902	total: 315ms	remaining: 185ms
63:	learn: 22.4577426	total: 319ms	remaining: 179ms
64:	learn: 22.3333158	total: 323ms	remaining: 174ms
65:	learn: 22.2064131	total: 327ms	remaining: 169ms
66:	learn: 22.1434971	total: 331ms	remaining: 163ms
67:	learn: 21.9596519	total: 335ms	remaining: 158ms
68:	learn: 21.8475576	total: 339ms	remaining: 152ms
69:	learn: 21.6954745	total: 344ms	remaining: 147ms
70:	learn: 21.5635976	total: 348ms	remaining: 142ms
71:	learn: 21.4588506	total: 352ms	remaining: 137ms
72:	learn: 21.3527268	total: 356ms	remaining: 132ms
73:	learn: 21.2661288	total: 360ms	remaining: 127ms
74:	learn: 21.1817333	total: 364ms	remaining: 121ms
75:	learn: 21.0527553	total: 369ms	remaining: 117ms
76:	learn: 20.9229021	total: 374ms	remaining: 112ms
77:	learn: 20.7563946	total: 378ms	remaining: 107ms
78:	learn: 20.6569831	total: 383ms	remaining: 102ms
79:	learn: 20.4982663	total: 387ms	remaining: 96.7ms
80:	learn: 20.3185460	total: 391ms	remaining: 91.8ms
81:	learn: 20.2096241	total: 396ms	remaining: 87ms
82:	learn: 20.1274891	total: 401ms	remaining: 82ms
83:	learn: 20.0740139	total: 408ms	remaining: 77.7ms
84:	learn: 19.9630699	total: 415ms	remaining: 73.3ms
85:	learn: 19.8753899	total: 423ms	remaining: 68.9ms
86:	learn: 19.6563612	total: 429ms	remaining: 64.1ms
87:	learn: 19.4680232	total: 436ms	remaining: 59.4ms
88:	learn: 19.3503431	total: 440ms	remaining: 54.4ms
89:	learn: 19.2221379	total: 446ms	remaining: 49.5ms
90:	learn: 19.0732542	total: 459ms	remaining: 45.4ms
91:	learn: 18.9825190	total: 464ms	remaining: 40.3ms
92:	learn: 18.8839009	total: 469ms	remaining: 35.3ms
93:	learn: 18.8012219	total: 474ms	remaining: 30.3ms
94:	learn: 18.7172713	total: 479ms	remaining: 25.2ms
95:	learn: 18.6201170	total: 484ms	remaining: 20.2ms
96:	learn: 18.5318611	total: 489ms	remaining: 15.1ms
97:	learn: 18.3833356	total: 494ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 499ms	remaining: 5.04ms
99:	learn: 18.2227333	total: 505ms	remaining: 0us
0:	learn: 46.3764524	total: 4.63ms	remaining: 458ms
1:	learn: 45.5561269	total: 9.03ms	remaining: 442ms
2:	learn: 44.8811245	total: 13.2ms	remaining: 427ms
3:	learn: 44.0788617	total: 17.5ms	remaining: 419ms
4:	learn: 43.3619790	total: 22.4ms	remaining: 425ms
5:	learn: 42.6912112	total: 27.6ms	remaining: 432ms
6:	learn: 42.2292118	total: 32.4ms	remaining: 430ms
7:	learn: 41.7725191	total: 37ms	remaining: 426ms
8:	learn: 41.1676614	total: 41.5ms	remaining: 419ms
9:	learn: 40.5771076	total: 45.6ms	remaining: 411ms
10:	learn: 39.8343757	total: 50.2ms	remaining: 406ms
11:	learn: 39.3761142	total: 56.5ms	remaining: 415ms
12:	learn: 38.5254692	total: 64.9ms	remaining: 434ms
13:	learn: 37.9629555	total: 73.1ms	remaining: 449ms
14:	learn: 37.4418438	total: 80.2ms	remaining: 455ms
15:	learn: 37.0507283	total: 88.5ms	remaining: 464ms
16:	learn: 36.6264217	total: 94.4ms	remaining: 461ms
17:	learn: 36.1114940	total: 100ms	remaining: 457ms
18:	learn: 35.7193862	total: 106ms	remaining: 450ms
19:	learn: 35.3301177	total: 112ms	remaining: 446ms
20:	learn: 35.0598280	total: 118ms	remaining: 444ms
21:	learn: 34.5469736	total: 124ms	remaining: 439ms
22:	learn: 34.2064215	total: 130ms	remaining: 434ms
23:	learn: 33.7280710	total: 135ms	remaining: 427ms
24:	learn: 33.3282940	total: 139ms	remaining: 418ms
25:	learn: 32.8478961	total: 144ms	remaining: 411ms
26:	learn: 32.5722164	total: 150ms	remaining: 405ms
27:	learn: 32.2457019	total: 155ms	remaining: 399ms
28:	learn: 31.9230495	total: 161ms	remaining: 394ms
29:	learn: 31.4311611	total: 167ms	remaining: 389ms
30:	learn: 30.9179052	total: 171ms	remaining: 380ms
31:	learn: 30.6201141	total: 175ms	remaining: 371ms
32:	learn: 30.3421106	total: 179ms	remaining: 363ms
33:	learn: 29.9885373	total: 183ms	remaining: 355ms
34:	learn: 29.7462780	total: 187ms	remaining: 347ms
35:	learn: 29.3607153	total: 191ms	remaining: 340ms
36:	learn: 29.1793078	total: 195ms	remaining: 332ms
37:	learn: 28.9276538	total: 199ms	remaining: 325ms
38:	learn: 28.6903934	total: 204ms	remaining: 319ms
39:	learn: 28.2095033	total: 208ms	remaining: 311ms
40:	learn: 27.7990608	total: 211ms	remaining: 304ms
41:	learn: 27.5406632	total: 215ms	remaining: 297ms
42:	learn: 27.2575376	total: 220ms	remaining: 291ms
43:	learn: 26.9741707	total: 224ms	remaining: 285ms
44:	learn: 26.6606899	total: 229ms	remaining: 279ms
45:	learn: 26.4015833	total: 233ms	remaining: 273ms
46:	learn: 26.1828993	total: 237ms	remaining: 268ms
47:	learn: 26.0233709	total: 240ms	remaining: 260ms
48:	learn: 25.9300399	total: 245ms	remaining: 254ms
49:	learn: 25.5861489	total: 249ms	remaining: 249ms
50:	learn: 25.4322012	total: 257ms	remaining: 247ms
51:	learn: 25.1595644	total: 264ms	remaining: 244ms
52:	learn: 24.9955303	total: 273ms	remaining: 242ms
53:	learn: 24.7273966	total: 279ms	remaining: 238ms
54:	learn: 24.5747978	total: 287ms	remaining: 235ms
55:	learn: 24.3807977	total: 292ms	remaining: 229ms
56:	learn: 24.1689569	total: 297ms	remaining: 224ms
57:	learn: 23.9898221	total: 302ms	remaining: 219ms
58:	learn: 23.7566414	total: 307ms	remaining: 213ms
59:	learn: 23.6641165	total: 312ms	remaining: 208ms
60:	learn: 23.5658066	total: 317ms	remaining: 203ms
61:	learn: 23.4338851	total: 322ms	remaining: 198ms
62:	learn: 23.2408837	total: 328ms	remaining: 193ms
63:	learn: 23.0642038	total: 333ms	remaining: 187ms
64:	learn: 22.9032045	total: 338ms	remaining: 182ms
65:	learn: 22.7736138	total: 342ms	remaining: 176ms
66:	learn: 22.6836443	total: 347ms	remaining: 171ms
67:	learn: 22.5983654	total: 353ms	remaining: 166ms
68:	learn: 22.4419813	total: 357ms	remaining: 160ms
69:	learn: 22.2863339	total: 361ms	remaining: 155ms
70:	learn: 22.1792943	total: 364ms	remaining: 149ms
71:	learn: 22.1130574	total: 368ms	remaining: 143ms
72:	learn: 21.9858161	total: 372ms	remaining: 138ms
73:	learn: 21.8577784	total: 377ms	remaining: 132ms
74:	learn: 21.7845222	total: 381ms	remaining: 127ms
75:	learn: 21.6831390	total: 385ms	remaining: 122ms
76:	learn: 21.6292521	total: 389ms	remaining: 116ms
77:	learn: 21.5789330	total: 393ms	remaining: 111ms
78:	learn: 21.5420942	total: 396ms	remaining: 105ms
79:	learn: 21.4280939	total: 400ms	remaining: 100ms
80:	learn: 21.3641165	total: 405ms	remaining: 94.9ms
81:	learn: 21.2734814	total: 408ms	remaining: 89.6ms
82:	learn: 21.2220323	total: 412ms	remaining: 84.4ms
83:	learn: 21.0625792	total: 416ms	remaining: 79.3ms
84:	learn: 20.9488320	total: 420ms	remaining: 74.2ms
85:	learn: 20.8504255	total: 425ms	remaining: 69.2ms
86:	learn: 20.7848510	total: 429ms	remaining: 64.1ms
87:	learn: 20.7247442	total: 433ms	remaining: 59.1ms
88:	learn: 20.5698590	total: 438ms	remaining: 54.1ms
89:	learn: 20.4067620	total: 443ms	remaining: 49.2ms
90:	learn: 20.3062482	total: 447ms	remaining: 44.2ms
91:	learn: 20.2029696	total: 451ms	remaining: 39.3ms
92:	learn: 20.1384849	total: 461ms	remaining: 34.7ms
93:	learn: 20.0260709	total: 468ms	remaining: 29.9ms
94:	learn: 19.9122100	total: 476ms	remaining: 25.1ms
95:	learn: 19.8648487	total: 482ms	remaining: 20.1ms
96:	learn: 19.8207072	total: 489ms	remaining: 15.1ms
97:	learn: 19.7261189	total: 494ms	remaining: 10.1ms
98:	learn: 19.7042438	total: 499ms	remaining: 5.04ms
99:	learn: 19.6546645	total: 504ms	remaining: 0us
0:	learn: 47.0239288	total: 5.53ms	remaining: 547ms
1:	learn: 46.2253829	total: 10.8ms	remaining: 528ms
2:	learn: 45.5580301	total: 15ms	remaining: 484ms
3:	learn: 44.7273237	total: 19ms	remaining: 456ms
4:	learn: 43.8867421	total: 22.8ms	remaining: 434ms
5:	learn: 43.3615911	total: 26.8ms	remaining: 420ms
6:	learn: 42.8548390	total: 30.8ms	remaining: 409ms
7:	learn: 42.1606758	total: 34.6ms	remaining: 398ms
8:	learn: 41.6625870	total: 38.5ms	remaining: 389ms
9:	learn: 40.9497092	total: 42.2ms	remaining: 380ms
10:	learn: 40.1886318	total: 46.4ms	remaining: 376ms
11:	learn: 39.7456423	total: 50.5ms	remaining: 370ms
12:	learn: 39.1171373	total: 54.5ms	remaining: 365ms
13:	learn: 38.5451069	total: 58.5ms	remaining: 360ms
14:	learn: 38.0155834	total: 62.9ms	remaining: 356ms
15:	learn: 37.5631354	total: 66.9ms	remaining: 351ms
16:	learn: 37.1030023	total: 70.9ms	remaining: 346ms
17:	learn: 36.4563029	total: 74.6ms	remaining: 340ms
18:	learn: 36.0160976	total: 79.2ms	remaining: 338ms
19:	learn: 35.5079827	total: 83.7ms	remaining: 335ms
20:	learn: 35.2111885	total: 88.1ms	remaining: 332ms
21:	learn: 34.9397465	total: 92.6ms	remaining: 328ms
22:	learn: 34.5270048	total: 97.3ms	remaining: 326ms
23:	learn: 34.0169260	total: 102ms	remaining: 322ms
24:	learn: 33.7454892	total: 106ms	remaining: 318ms
25:	learn: 33.2648157	total: 110ms	remaining: 314ms
26:	learn: 32.8899427	total: 118ms	remaining: 318ms
27:	learn: 32.6185050	total: 125ms	remaining: 321ms
28:	learn: 32.3528531	total: 132ms	remaining: 324ms
29:	learn: 32.0859923	total: 139ms	remaining: 325ms
30:	learn: 31.6511144	total: 147ms	remaining: 327ms
31:	learn: 31.2571765	total: 152ms	remaining: 323ms
32:	learn: 30.9770049	total: 157ms	remaining: 319ms
33:	learn: 30.6084872	total: 162ms	remaining: 315ms
34:	learn: 30.3448632	total: 168ms	remaining: 311ms
35:	learn: 30.0360942	total: 173ms	remaining: 307ms
36:	learn: 29.6648968	total: 178ms	remaining: 303ms
37:	learn: 29.3165114	total: 183ms	remaining: 299ms
38:	learn: 29.0829198	total: 188ms	remaining: 294ms
39:	learn: 28.7752064	total: 193ms	remaining: 289ms
40:	learn: 28.3622191	total: 198ms	remaining: 285ms
41:	learn: 28.1346631	total: 203ms	remaining: 280ms
42:	learn: 27.9585719	total: 207ms	remaining: 275ms
43:	learn: 27.6565566	total: 212ms	remaining: 270ms
44:	learn: 27.3616172	total: 218ms	remaining: 266ms
45:	learn: 27.0658637	total: 222ms	remaining: 261ms
46:	learn: 26.8660382	total: 226ms	remaining: 255ms
47:	learn: 26.6536078	total: 230ms	remaining: 249ms
48:	learn: 26.3524440	total: 234ms	remaining: 243ms
49:	learn: 26.1595277	total: 238ms	remaining: 238ms
50:	learn: 25.9273523	total: 242ms	remaining: 232ms
51:	learn: 25.7195580	total: 246ms	remaining: 227ms
52:	learn: 25.5730225	total: 250ms	remaining: 222ms
53:	learn: 25.3455276	total: 254ms	remaining: 216ms
54:	learn: 25.2289675	total: 258ms	remaining: 211ms
55:	learn: 25.0133024	total: 262ms	remaining: 206ms
56:	learn: 24.8406714	total: 267ms	remaining: 201ms
57:	learn: 24.6367857	total: 271ms	remaining: 196ms
58:	learn: 24.5338177	total: 275ms	remaining: 191ms
59:	learn: 24.3799964	total: 279ms	remaining: 186ms
60:	learn: 24.1447492	total: 284ms	remaining: 181ms
61:	learn: 23.9880495	total: 288ms	remaining: 177ms
62:	learn: 23.7140630	total: 293ms	remaining: 172ms
63:	learn: 23.5003791	total: 297ms	remaining: 167ms
64:	learn: 23.3207645	total: 301ms	remaining: 162ms
65:	learn: 23.1958356	total: 306ms	remaining: 158ms
66:	learn: 23.0471302	total: 311ms	remaining: 153ms
67:	learn: 22.8977183	total: 315ms	remaining: 148ms
68:	learn: 22.7187400	total: 324ms	remaining: 146ms
69:	learn: 22.6523405	total: 331ms	remaining: 142ms
70:	learn: 22.4767453	total: 340ms	remaining: 139ms
71:	learn: 22.3243677	total: 347ms	remaining: 135ms
72:	learn: 22.2133096	total: 353ms	remaining: 130ms
73:	learn: 22.1151713	total: 358ms	remaining: 126ms
74:	learn: 22.0296666	total: 363ms	remaining: 121ms
75:	learn: 21.9195980	total: 368ms	remaining: 116ms
76:	learn: 21.8401730	total: 373ms	remaining: 112ms
77:	learn: 21.8079797	total: 379ms	remaining: 107ms
78:	learn: 21.7274109	total: 384ms	remaining: 102ms
79:	learn: 21.6663032	total: 389ms	remaining: 97.2ms
80:	learn: 21.5633117	total: 394ms	remaining: 92.4ms
81:	learn: 21.4542467	total: 399ms	remaining: 87.6ms
82:	learn: 21.3177957	total: 404ms	remaining: 82.8ms
83:	learn: 21.1289167	total: 409ms	remaining: 77.9ms
84:	learn: 21.0297368	total: 415ms	remaining: 73.2ms
85:	learn: 20.9089564	total: 420ms	remaining: 68.4ms
86:	learn: 20.7653988	total: 425ms	remaining: 63.5ms
87:	learn: 20.6521894	total: 429ms	remaining: 58.6ms
88:	learn: 20.5193021	total: 433ms	remaining: 53.6ms
89:	learn: 20.4361620	total: 437ms	remaining: 48.6ms
90:	learn: 20.3546710	total: 441ms	remaining: 43.6ms
91:	learn: 20.2513296	total: 445ms	remaining: 38.7ms
92:	learn: 20.1605550	total: 449ms	remaining: 33.8ms
93:	learn: 20.0515942	total: 454ms	remaining: 29ms
94:	learn: 19.9800764	total: 458ms	remaining: 24.1ms
95:	learn: 19.8996532	total: 463ms	remaining: 19.3ms
96:	learn: 19.8450910	total: 467ms	remaining: 14.4ms
97:	learn: 19.7887346	total: 471ms	remaining: 9.61ms
98:	learn: 19.7230872	total: 475ms	remaining: 4.8ms
99:	learn: 19.6328825	total: 480ms	remaining: 0us
0:	learn: 27.5585353	total: 5.18ms	remaining: 513ms
1:	learn: 27.1656995	total: 10.1ms	remaining: 494ms
2:	learn: 26.8590175	total: 15.3ms	remaining: 495ms
3:	learn: 26.5818406	total: 20.2ms	remaining: 485ms
4:	learn: 26.1148663	total: 25.1ms	remaining: 477ms
5:	learn: 25.7690484	total: 30.5ms	remaining: 478ms
6:	learn: 25.3489206	total: 35.4ms	remaining: 471ms
7:	learn: 24.9542406	total: 40.6ms	remaining: 467ms
8:	learn: 24.6777517	total: 45.6ms	remaining: 461ms
9:	learn: 24.3242344	total: 51.1ms	remaining: 460ms
10:	learn: 24.0383073	total: 56.4ms	remaining: 457ms
11:	learn: 23.7383420	total: 60.9ms	remaining: 446ms
12:	learn: 23.3461670	total: 65.2ms	remaining: 437ms
13:	learn: 23.0928636	total: 69.6ms	remaining: 428ms
14:	learn: 22.8770414	total: 73.9ms	remaining: 419ms
15:	learn: 22.6323214	total: 78.3ms	remaining: 411ms
16:	learn: 22.3597072	total: 82.5ms	remaining: 403ms
17:	learn: 22.1079813	total: 86.5ms	remaining: 394ms
18:	learn: 21.8421199	total: 90.5ms	remaining: 386ms
19:	learn: 21.6576508	total: 94.5ms	remaining: 378ms
20:	learn: 21.4301268	total: 98.4ms	remaining: 370ms
21:	learn: 21.2287388	total: 103ms	remaining: 364ms
22:	learn: 21.0553872	total: 106ms	remaining: 356ms
23:	learn: 20.8977091	total: 110ms	remaining: 350ms
24:	learn: 20.6619051	total: 114ms	remaining: 343ms
25:	learn: 20.5040955	total: 119ms	remaining: 339ms
26:	learn: 20.3181195	total: 123ms	remaining: 333ms
27:	learn: 20.0869436	total: 127ms	remaining: 327ms
28:	learn: 19.9375985	total: 131ms	remaining: 321ms
29:	learn: 19.8247516	total: 136ms	remaining: 316ms
30:	learn: 19.6261697	total: 140ms	remaining: 312ms
31:	learn: 19.4547236	total: 144ms	remaining: 307ms
32:	learn: 19.3157092	total: 149ms	remaining: 302ms
33:	learn: 19.1561419	total: 153ms	remaining: 297ms
34:	learn: 19.0453620	total: 157ms	remaining: 292ms
35:	learn: 18.8738574	total: 162ms	remaining: 288ms
36:	learn: 18.7072907	total: 166ms	remaining: 282ms
37:	learn: 18.5877943	total: 171ms	remaining: 278ms
38:	learn: 18.4436380	total: 179ms	remaining: 279ms
39:	learn: 18.3463356	total: 186ms	remaining: 279ms
40:	learn: 18.2008059	total: 194ms	remaining: 279ms
41:	learn: 18.0582079	total: 199ms	remaining: 275ms
42:	learn: 17.8891982	total: 206ms	remaining: 273ms
43:	learn: 17.7332246	total: 211ms	remaining: 269ms
44:	learn: 17.6206421	total: 217ms	remaining: 265ms
45:	learn: 17.4982800	total: 221ms	remaining: 260ms
46:	learn: 17.3970150	total: 227ms	remaining: 256ms
47:	learn: 17.3058203	total: 232ms	remaining: 251ms
48:	learn: 17.1789256	total: 236ms	remaining: 246ms
49:	learn: 17.0916229	total: 242ms	remaining: 242ms
50:	learn: 16.9859820	total: 247ms	remaining: 238ms
51:	learn: 16.8995582	total: 252ms	remaining: 233ms
52:	learn: 16.8137014	total: 257ms	remaining: 228ms
53:	learn: 16.7021451	total: 262ms	remaining: 223ms
54:	learn: 16.5895582	total: 267ms	remaining: 218ms
55:	learn: 16.5015639	total: 272ms	remaining: 214ms
56:	learn: 16.4356637	total: 277ms	remaining: 209ms
57:	learn: 16.3514525	total: 281ms	remaining: 204ms
58:	learn: 16.2401369	total: 285ms	remaining: 198ms
59:	learn: 16.1293223	total: 289ms	remaining: 193ms
60:	learn: 16.0271167	total: 293ms	remaining: 187ms
61:	learn: 15.9126257	total: 297ms	remaining: 182ms
62:	learn: 15.8391096	total: 301ms	remaining: 177ms
63:	learn: 15.7441773	total: 305ms	remaining: 172ms
64:	learn: 15.6885195	total: 309ms	remaining: 166ms
65:	learn: 15.6052039	total: 313ms	remaining: 161ms
66:	learn: 15.5074202	total: 317ms	remaining: 156ms
67:	learn: 15.4054338	total: 322ms	remaining: 151ms
68:	learn: 15.2885714	total: 326ms	remaining: 147ms
69:	learn: 15.2157472	total: 330ms	remaining: 142ms
70:	learn: 15.1031554	total: 335ms	remaining: 137ms
71:	learn: 15.0237470	total: 340ms	remaining: 132ms
72:	learn: 14.9756825	total: 345ms	remaining: 128ms
73:	learn: 14.8840596	total: 350ms	remaining: 123ms
74:	learn: 14.8077061	total: 355ms	remaining: 118ms
75:	learn: 14.7444437	total: 360ms	remaining: 114ms
76:	learn: 14.6751720	total: 365ms	remaining: 109ms
77:	learn: 14.5830333	total: 370ms	remaining: 104ms
78:	learn: 14.5241206	total: 379ms	remaining: 101ms
79:	learn: 14.4892731	total: 388ms	remaining: 97ms
80:	learn: 14.4256605	total: 396ms	remaining: 92.9ms
81:	learn: 14.3666860	total: 404ms	remaining: 88.7ms
82:	learn: 14.2938372	total: 409ms	remaining: 83.9ms
83:	learn: 14.2161532	total: 415ms	remaining: 79ms
84:	learn: 14.1582910	total: 420ms	remaining: 74.1ms
85:	learn: 14.1029153	total: 425ms	remaining: 69.3ms
86:	learn: 14.0475835	total: 431ms	remaining: 64.4ms
87:	learn: 13.9892661	total: 436ms	remaining: 59.5ms
88:	learn: 13.9481628	total: 442ms	remaining: 54.6ms
89:	learn: 13.8483991	total: 447ms	remaining: 49.6ms
90:	learn: 13.7775614	total: 452ms	remaining: 44.7ms
91:	learn: 13.7304585	total: 457ms	remaining: 39.7ms
92:	learn: 13.6783381	total: 462ms	remaining: 34.8ms
93:	learn: 13.6356964	total: 467ms	remaining: 29.8ms
94:	learn: 13.5924371	total: 471ms	remaining: 24.8ms
95:	learn: 13.5400746	total: 475ms	remaining: 19.8ms
96:	learn: 13.4897333	total: 479ms	remaining: 14.8ms
97:	learn: 13.4470321	total: 483ms	remaining: 9.85ms
98:	learn: 13.3856082	total: 487ms	remaining: 4.92ms
99:	learn: 13.3082371	total: 491ms	remaining: 0us
0:	learn: 43.0395283	total: 4.92ms	remaining: 487ms
1:	learn: 42.1130223	total: 9.47ms	remaining: 464ms
2:	learn: 41.1753409	total: 14.3ms	remaining: 463ms
3:	learn: 40.3637444	total: 18.7ms	remaining: 449ms
4:	learn: 39.6508088	total: 23.3ms	remaining: 442ms
5:	learn: 38.7217934	total: 27.9ms	remaining: 437ms
6:	learn: 37.8538055	total: 32.8ms	remaining: 436ms
7:	learn: 36.9793574	total: 37.3ms	remaining: 429ms
8:	learn: 36.3076984	total: 45.4ms	remaining: 459ms
9:	learn: 35.6673160	total: 52.8ms	remaining: 475ms
10:	learn: 34.8889800	total: 62.6ms	remaining: 507ms
11:	learn: 34.1675517	total: 68.5ms	remaining: 502ms
12:	learn: 33.6779564	total: 75.1ms	remaining: 502ms
13:	learn: 33.0710039	total: 80.3ms	remaining: 493ms
14:	learn: 32.4966674	total: 85.2ms	remaining: 483ms
15:	learn: 31.9492856	total: 90.4ms	remaining: 474ms
16:	learn: 31.5108129	total: 95.4ms	remaining: 466ms
17:	learn: 30.9804023	total: 101ms	remaining: 458ms
18:	learn: 30.4169089	total: 105ms	remaining: 450ms
19:	learn: 29.8930375	total: 111ms	remaining: 442ms
20:	learn: 29.3974421	total: 116ms	remaining: 436ms
21:	learn: 28.8792307	total: 121ms	remaining: 429ms
22:	learn: 28.3894474	total: 126ms	remaining: 421ms
23:	learn: 27.9921276	total: 131ms	remaining: 416ms
24:	learn: 27.6158887	total: 137ms	remaining: 412ms
25:	learn: 27.2866950	total: 143ms	remaining: 406ms
26:	learn: 26.8770708	total: 147ms	remaining: 397ms
27:	learn: 26.6233005	total: 151ms	remaining: 389ms
28:	learn: 26.2921934	total: 155ms	remaining: 380ms
29:	learn: 25.9156920	total: 159ms	remaining: 372ms
30:	learn: 25.5311106	total: 161ms	remaining: 358ms
31:	learn: 25.2178997	total: 165ms	remaining: 351ms
32:	learn: 24.8572196	total: 169ms	remaining: 343ms
33:	learn: 24.5849710	total: 174ms	remaining: 337ms
34:	learn: 24.2209190	total: 178ms	remaining: 330ms
35:	learn: 23.8708250	total: 182ms	remaining: 324ms
36:	learn: 23.5325279	total: 186ms	remaining: 317ms
37:	learn: 23.2116148	total: 190ms	remaining: 310ms
38:	learn: 22.9696787	total: 195ms	remaining: 304ms
39:	learn: 22.7936783	total: 199ms	remaining: 298ms
40:	learn: 22.6228847	total: 204ms	remaining: 293ms
41:	learn: 22.3691527	total: 208ms	remaining: 287ms
42:	learn: 22.1002173	total: 212ms	remaining: 281ms
43:	learn: 21.9157268	total: 216ms	remaining: 276ms
44:	learn: 21.7229102	total: 221ms	remaining: 270ms
45:	learn: 21.4642005	total: 225ms	remaining: 265ms
46:	learn: 21.3029442	total: 230ms	remaining: 259ms
47:	learn: 21.1469792	total: 235ms	remaining: 255ms
48:	learn: 20.9458235	total: 240ms	remaining: 250ms
49:	learn: 20.7335242	total: 245ms	remaining: 245ms
50:	learn: 20.5440269	total: 250ms	remaining: 240ms
51:	learn: 20.3661449	total: 256ms	remaining: 236ms
52:	learn: 20.2158134	total: 263ms	remaining: 233ms
53:	learn: 19.9934873	total: 271ms	remaining: 231ms
54:	learn: 19.7879739	total: 280ms	remaining: 229ms
55:	learn: 19.6630460	total: 288ms	remaining: 226ms
56:	learn: 19.5152729	total: 294ms	remaining: 222ms
57:	learn: 19.3581128	total: 299ms	remaining: 216ms
58:	learn: 19.2209303	total: 304ms	remaining: 211ms
59:	learn: 19.0965248	total: 309ms	remaining: 206ms
60:	learn: 19.0035954	total: 314ms	remaining: 201ms
61:	learn: 18.8554149	total: 320ms	remaining: 196ms
62:	learn: 18.7095427	total: 325ms	remaining: 191ms
63:	learn: 18.5751494	total: 330ms	remaining: 186ms
64:	learn: 18.4678251	total: 335ms	remaining: 180ms
65:	learn: 18.3500325	total: 340ms	remaining: 175ms
66:	learn: 18.2088983	total: 345ms	remaining: 170ms
67:	learn: 18.0737705	total: 350ms	remaining: 165ms
68:	learn: 17.9325058	total: 356ms	remaining: 160ms
69:	learn: 17.8003911	total: 361ms	remaining: 155ms
70:	learn: 17.7385366	total: 365ms	remaining: 149ms
71:	learn: 17.6106998	total: 370ms	remaining: 144ms
72:	learn: 17.4816270	total: 374ms	remaining: 138ms
73:	learn: 17.4025554	total: 379ms	remaining: 133ms
74:	learn: 17.2902108	total: 383ms	remaining: 128ms
75:	learn: 17.2158048	total: 387ms	remaining: 122ms
76:	learn: 17.1261053	total: 392ms	remaining: 117ms
77:	learn: 17.0308917	total: 397ms	remaining: 112ms
78:	learn: 16.9546705	total: 401ms	remaining: 107ms
79:	learn: 16.8319165	total: 406ms	remaining: 101ms
80:	learn: 16.7687017	total: 410ms	remaining: 96.2ms
81:	learn: 16.6972326	total: 415ms	remaining: 91.1ms
82:	learn: 16.6124580	total: 420ms	remaining: 86.1ms
83:	learn: 16.4999052	total: 426ms	remaining: 81.1ms
84:	learn: 16.4302484	total: 431ms	remaining: 76ms
85:	learn: 16.3201363	total: 435ms	remaining: 70.9ms
86:	learn: 16.2534314	total: 440ms	remaining: 65.7ms
87:	learn: 16.1720485	total: 445ms	remaining: 60.7ms
88:	learn: 16.0625751	total: 450ms	remaining: 55.6ms
89:	learn: 15.9135088	total: 455ms	remaining: 50.5ms
90:	learn: 15.8658863	total: 464ms	remaining: 45.9ms
91:	learn: 15.8066805	total: 471ms	remaining: 41ms
92:	learn: 15.7412103	total: 480ms	remaining: 36.1ms
93:	learn: 15.6542776	total: 487ms	remaining: 31.1ms
94:	learn: 15.5760334	total: 493ms	remaining: 25.9ms
95:	learn: 15.5434131	total: 498ms	remaining: 20.7ms
96:	learn: 15.4709561	total: 503ms	remaining: 15.6ms
97:	learn: 15.4449618	total: 508ms	remaining: 10.4ms
98:	learn: 15.3752761	total: 514ms	remaining: 5.19ms
99:	learn: 15.3106595	total: 519ms	remaining: 0us
0:	learn: 46.7142257	total: 5.12ms	remaining: 507ms
1:	learn: 45.7634153	total: 9.55ms	remaining: 468ms
2:	learn: 45.0054253	total: 13.7ms	remaining: 443ms
3:	learn: 44.2120432	total: 17.7ms	remaining: 426ms
4:	learn: 43.3960472	total: 21.4ms	remaining: 407ms
5:	learn: 42.8588120	total: 25.6ms	remaining: 401ms
6:	learn: 41.9533701	total: 29.6ms	remaining: 394ms
7:	learn: 41.2745030	total: 33.8ms	remaining: 388ms
8:	learn: 40.6797495	total: 37.7ms	remaining: 381ms
9:	learn: 39.9899571	total: 42ms	remaining: 378ms
10:	learn: 39.4682100	total: 46.2ms	remaining: 374ms
11:	learn: 39.0305595	total: 50.2ms	remaining: 368ms
12:	learn: 38.4200417	total: 54.1ms	remaining: 362ms
13:	learn: 37.8425194	total: 58.8ms	remaining: 361ms
14:	learn: 37.4203127	total: 63.2ms	remaining: 358ms
15:	learn: 36.9917688	total: 67.7ms	remaining: 355ms
16:	learn: 36.5544138	total: 72.1ms	remaining: 352ms
17:	learn: 36.0727019	total: 76.6ms	remaining: 349ms
18:	learn: 35.4835715	total: 81.2ms	remaining: 346ms
19:	learn: 34.9865654	total: 85.8ms	remaining: 343ms
20:	learn: 34.6063373	total: 90.8ms	remaining: 342ms
21:	learn: 34.0997289	total: 98.9ms	remaining: 351ms
22:	learn: 33.7313171	total: 107ms	remaining: 357ms
23:	learn: 33.3582000	total: 115ms	remaining: 366ms
24:	learn: 32.9432456	total: 122ms	remaining: 366ms
25:	learn: 32.5220888	total: 128ms	remaining: 364ms
26:	learn: 32.2172292	total: 133ms	remaining: 361ms
27:	learn: 31.8972904	total: 138ms	remaining: 355ms
28:	learn: 31.6405350	total: 143ms	remaining: 351ms
29:	learn: 31.4167702	total: 148ms	remaining: 346ms
30:	learn: 30.8541961	total: 150ms	remaining: 335ms
31:	learn: 30.5572111	total: 156ms	remaining: 330ms
32:	learn: 30.1700399	total: 161ms	remaining: 326ms
33:	learn: 29.8537271	total: 166ms	remaining: 323ms
34:	learn: 29.6192540	total: 171ms	remaining: 318ms
35:	learn: 29.3276362	total: 176ms	remaining: 314ms
36:	learn: 28.9985179	total: 182ms	remaining: 309ms
37:	learn: 28.7046880	total: 186ms	remaining: 304ms
38:	learn: 28.4412677	total: 191ms	remaining: 299ms
39:	learn: 28.1277292	total: 197ms	remaining: 295ms
40:	learn: 27.9000750	total: 202ms	remaining: 290ms
41:	learn: 27.5433162	total: 206ms	remaining: 285ms
42:	learn: 27.2493285	total: 210ms	remaining: 279ms
43:	learn: 26.9576632	total: 212ms	remaining: 270ms
44:	learn: 26.6177110	total: 216ms	remaining: 264ms
45:	learn: 26.2812456	total: 221ms	remaining: 259ms
46:	learn: 26.0803859	total: 225ms	remaining: 253ms
47:	learn: 25.9543581	total: 229ms	remaining: 248ms
48:	learn: 25.7951582	total: 233ms	remaining: 242ms
49:	learn: 25.6548184	total: 237ms	remaining: 237ms
50:	learn: 25.4010843	total: 241ms	remaining: 232ms
51:	learn: 24.9773937	total: 245ms	remaining: 226ms
52:	learn: 24.8026156	total: 249ms	remaining: 221ms
53:	learn: 24.5568053	total: 254ms	remaining: 216ms
54:	learn: 24.2281839	total: 258ms	remaining: 211ms
55:	learn: 23.9202795	total: 263ms	remaining: 207ms
56:	learn: 23.7625591	total: 268ms	remaining: 202ms
57:	learn: 23.5429721	total: 272ms	remaining: 197ms
58:	learn: 23.3175893	total: 276ms	remaining: 192ms
59:	learn: 23.2035130	total: 281ms	remaining: 187ms
60:	learn: 23.0232450	total: 285ms	remaining: 182ms
61:	learn: 22.8384958	total: 289ms	remaining: 177ms
62:	learn: 22.6499902	total: 296ms	remaining: 174ms
63:	learn: 22.4577426	total: 303ms	remaining: 171ms
64:	learn: 22.3333158	total: 311ms	remaining: 168ms
65:	learn: 22.2064131	total: 318ms	remaining: 164ms
66:	learn: 22.1434971	total: 325ms	remaining: 160ms
67:	learn: 21.9596519	total: 330ms	remaining: 155ms
68:	learn: 21.8475576	total: 335ms	remaining: 151ms
69:	learn: 21.6954745	total: 341ms	remaining: 146ms
70:	learn: 21.5635976	total: 346ms	remaining: 141ms
71:	learn: 21.4588506	total: 351ms	remaining: 136ms
72:	learn: 21.3527268	total: 356ms	remaining: 132ms
73:	learn: 21.2661288	total: 362ms	remaining: 127ms
74:	learn: 21.1817333	total: 367ms	remaining: 122ms
75:	learn: 21.0527553	total: 372ms	remaining: 117ms
76:	learn: 20.9229021	total: 377ms	remaining: 113ms
77:	learn: 20.7563946	total: 381ms	remaining: 108ms
78:	learn: 20.6569831	total: 387ms	remaining: 103ms
79:	learn: 20.4982663	total: 392ms	remaining: 98ms
80:	learn: 20.3185460	total: 397ms	remaining: 93ms
81:	learn: 20.2096241	total: 400ms	remaining: 87.9ms
82:	learn: 20.1274891	total: 404ms	remaining: 82.8ms
83:	learn: 20.0740139	total: 409ms	remaining: 77.9ms
84:	learn: 19.9630699	total: 413ms	remaining: 72.8ms
85:	learn: 19.8753899	total: 417ms	remaining: 67.8ms
86:	learn: 19.6563612	total: 421ms	remaining: 62.9ms
87:	learn: 19.4680232	total: 425ms	remaining: 58ms
88:	learn: 19.3503431	total: 429ms	remaining: 53.1ms
89:	learn: 19.2221379	total: 433ms	remaining: 48.2ms
90:	learn: 19.0732542	total: 437ms	remaining: 43.3ms
91:	learn: 18.9825190	total: 442ms	remaining: 38.4ms
92:	learn: 18.8839009	total: 446ms	remaining: 33.5ms
93:	learn: 18.8012219	total: 449ms	remaining: 28.7ms
94:	learn: 18.7172713	total: 453ms	remaining: 23.9ms
95:	learn: 18.6201170	total: 458ms	remaining: 19.1ms
96:	learn: 18.5318611	total: 462ms	remaining: 14.3ms
97:	learn: 18.3833356	total: 467ms	remaining: 9.52ms
98:	learn: 18.3289700	total: 471ms	remaining: 4.75ms
99:	learn: 18.2227333	total: 475ms	remaining: 0us
0:	learn: 46.3764524	total: 5.73ms	remaining: 568ms
1:	learn: 45.5561269	total: 11.1ms	remaining: 545ms
2:	learn: 44.8811245	total: 16.4ms	remaining: 532ms
3:	learn: 44.0788617	total: 21.8ms	remaining: 524ms
4:	learn: 43.3619790	total: 27.4ms	remaining: 520ms
5:	learn: 42.6912112	total: 32.7ms	remaining: 512ms
6:	learn: 42.2292118	total: 37.8ms	remaining: 503ms
7:	learn: 41.7725191	total: 42.8ms	remaining: 492ms
8:	learn: 41.1676614	total: 47.5ms	remaining: 481ms
9:	learn: 40.5771076	total: 51.9ms	remaining: 467ms
10:	learn: 39.8343757	total: 57.7ms	remaining: 467ms
11:	learn: 39.3761142	total: 62.7ms	remaining: 460ms
12:	learn: 38.5254692	total: 67.2ms	remaining: 450ms
13:	learn: 37.9629555	total: 71.2ms	remaining: 437ms
14:	learn: 37.4418438	total: 75.1ms	remaining: 425ms
15:	learn: 37.0507283	total: 79ms	remaining: 415ms
16:	learn: 36.6264217	total: 82.8ms	remaining: 404ms
17:	learn: 36.1114940	total: 87ms	remaining: 396ms
18:	learn: 35.7193862	total: 90.9ms	remaining: 387ms
19:	learn: 35.3301177	total: 95.1ms	remaining: 380ms
20:	learn: 35.0598280	total: 99.1ms	remaining: 373ms
21:	learn: 34.5469736	total: 103ms	remaining: 365ms
22:	learn: 34.2064215	total: 107ms	remaining: 358ms
23:	learn: 33.7280710	total: 111ms	remaining: 351ms
24:	learn: 33.3282940	total: 116ms	remaining: 348ms
25:	learn: 32.8478961	total: 120ms	remaining: 341ms
26:	learn: 32.5722164	total: 124ms	remaining: 336ms
27:	learn: 32.2457019	total: 129ms	remaining: 331ms
28:	learn: 31.9230495	total: 133ms	remaining: 326ms
29:	learn: 31.4311611	total: 138ms	remaining: 322ms
30:	learn: 30.9179052	total: 143ms	remaining: 318ms
31:	learn: 30.6201141	total: 147ms	remaining: 313ms
32:	learn: 30.3421106	total: 152ms	remaining: 308ms
33:	learn: 29.9885373	total: 156ms	remaining: 303ms
34:	learn: 29.7462780	total: 161ms	remaining: 299ms
35:	learn: 29.3607153	total: 165ms	remaining: 294ms
36:	learn: 29.1793078	total: 173ms	remaining: 295ms
37:	learn: 28.9276538	total: 181ms	remaining: 295ms
38:	learn: 28.6903934	total: 190ms	remaining: 297ms
39:	learn: 28.2095033	total: 195ms	remaining: 293ms
40:	learn: 27.7990608	total: 202ms	remaining: 291ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 213ms	remaining: 282ms
43:	learn: 26.9741707	total: 218ms	remaining: 277ms
44:	learn: 26.6606899	total: 223ms	remaining: 273ms
45:	learn: 26.4015833	total: 229ms	remaining: 268ms
46:	learn: 26.1828993	total: 234ms	remaining: 264ms
47:	learn: 26.0233709	total: 237ms	remaining: 257ms
48:	learn: 25.9300399	total: 242ms	remaining: 252ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 253ms	remaining: 243ms
51:	learn: 25.1595644	total: 258ms	remaining: 238ms
52:	learn: 24.9955303	total: 263ms	remaining: 233ms
53:	learn: 24.7273966	total: 268ms	remaining: 228ms
54:	learn: 24.5747978	total: 274ms	remaining: 224ms
55:	learn: 24.3807977	total: 278ms	remaining: 218ms
56:	learn: 24.1689569	total: 282ms	remaining: 213ms
57:	learn: 23.9898221	total: 287ms	remaining: 208ms
58:	learn: 23.7566414	total: 291ms	remaining: 202ms
59:	learn: 23.6641165	total: 295ms	remaining: 196ms
60:	learn: 23.5658066	total: 299ms	remaining: 191ms
61:	learn: 23.4338851	total: 304ms	remaining: 187ms
62:	learn: 23.2408837	total: 309ms	remaining: 182ms
63:	learn: 23.0642038	total: 314ms	remaining: 177ms
64:	learn: 22.9032045	total: 319ms	remaining: 172ms
65:	learn: 22.7736138	total: 324ms	remaining: 167ms
66:	learn: 22.6836443	total: 329ms	remaining: 162ms
67:	learn: 22.5983654	total: 334ms	remaining: 157ms
68:	learn: 22.4419813	total: 339ms	remaining: 152ms
69:	learn: 22.2863339	total: 343ms	remaining: 147ms
70:	learn: 22.1792943	total: 348ms	remaining: 142ms
71:	learn: 22.1130574	total: 353ms	remaining: 137ms
72:	learn: 21.9858161	total: 357ms	remaining: 132ms
73:	learn: 21.8577784	total: 362ms	remaining: 127ms
74:	learn: 21.7845222	total: 367ms	remaining: 122ms
75:	learn: 21.6831390	total: 375ms	remaining: 119ms
76:	learn: 21.6292521	total: 382ms	remaining: 114ms
77:	learn: 21.5789330	total: 391ms	remaining: 110ms
78:	learn: 21.5420942	total: 398ms	remaining: 106ms
79:	learn: 21.4280939	total: 403ms	remaining: 101ms
80:	learn: 21.3641165	total: 408ms	remaining: 95.8ms
81:	learn: 21.2734814	total: 413ms	remaining: 90.7ms
82:	learn: 21.2220323	total: 419ms	remaining: 85.7ms
83:	learn: 21.0625792	total: 424ms	remaining: 80.8ms
84:	learn: 20.9488320	total: 429ms	remaining: 75.8ms
85:	learn: 20.8504255	total: 435ms	remaining: 70.8ms
86:	learn: 20.7848510	total: 440ms	remaining: 65.8ms
87:	learn: 20.7247442	total: 445ms	remaining: 60.7ms
88:	learn: 20.5698590	total: 450ms	remaining: 55.6ms
89:	learn: 20.4067620	total: 455ms	remaining: 50.5ms
90:	learn: 20.3062482	total: 460ms	remaining: 45.5ms
91:	learn: 20.2029696	total: 466ms	remaining: 40.5ms
92:	learn: 20.1384849	total: 471ms	remaining: 35.5ms
93:	learn: 20.0260709	total: 476ms	remaining: 30.4ms
94:	learn: 19.9122100	total: 480ms	remaining: 25.2ms
95:	learn: 19.8648487	total: 484ms	remaining: 20.2ms
96:	learn: 19.8207072	total: 488ms	remaining: 15.1ms
97:	learn: 19.7261189	total: 492ms	remaining: 10ms
98:	learn: 19.7042438	total: 496ms	remaining: 5.01ms
99:	learn: 19.6546645	total: 500ms	remaining: 0us
0:	learn: 47.0239288	total: 4.76ms	remaining: 471ms
1:	learn: 46.2253829	total: 9.2ms	remaining: 451ms
2:	learn: 45.5580301	total: 13.5ms	remaining: 436ms
3:	learn: 44.7273237	total: 18.4ms	remaining: 443ms
4:	learn: 43.8867421	total: 25.7ms	remaining: 488ms
5:	learn: 43.3615911	total: 32.9ms	remaining: 515ms
6:	learn: 42.8548390	total: 41.6ms	remaining: 553ms
7:	learn: 42.1606758	total: 47ms	remaining: 540ms
8:	learn: 41.6625870	total: 54.6ms	remaining: 552ms
9:	learn: 40.9497092	total: 59.6ms	remaining: 536ms
10:	learn: 40.1886318	total: 64.8ms	remaining: 524ms
11:	learn: 39.7456423	total: 70ms	remaining: 513ms
12:	learn: 39.1171373	total: 74.9ms	remaining: 501ms
13:	learn: 38.5451069	total: 79.9ms	remaining: 491ms
14:	learn: 38.0155834	total: 85ms	remaining: 482ms
15:	learn: 37.5631354	total: 90.6ms	remaining: 476ms
16:	learn: 37.1030023	total: 95.7ms	remaining: 467ms
17:	learn: 36.4563029	total: 101ms	remaining: 459ms
18:	learn: 36.0160976	total: 107ms	remaining: 454ms
19:	learn: 35.5079827	total: 111ms	remaining: 444ms
20:	learn: 35.2111885	total: 117ms	remaining: 438ms
21:	learn: 34.9397465	total: 122ms	remaining: 433ms
22:	learn: 34.5270048	total: 127ms	remaining: 424ms
23:	learn: 34.0169260	total: 130ms	remaining: 413ms
24:	learn: 33.7454892	total: 134ms	remaining: 403ms
25:	learn: 33.2648157	total: 138ms	remaining: 394ms
26:	learn: 32.8899427	total: 142ms	remaining: 385ms
27:	learn: 32.6185050	total: 147ms	remaining: 377ms
28:	learn: 32.3528531	total: 151ms	remaining: 369ms
29:	learn: 32.0859923	total: 154ms	remaining: 360ms
30:	learn: 31.6511144	total: 159ms	remaining: 353ms
31:	learn: 31.2571765	total: 163ms	remaining: 345ms
32:	learn: 30.9770049	total: 166ms	remaining: 338ms
33:	learn: 30.6084872	total: 170ms	remaining: 331ms
34:	learn: 30.3448632	total: 175ms	remaining: 324ms
35:	learn: 30.0360942	total: 179ms	remaining: 318ms
36:	learn: 29.6648968	total: 182ms	remaining: 311ms
37:	learn: 29.3165114	total: 186ms	remaining: 304ms
38:	learn: 29.0829198	total: 191ms	remaining: 298ms
39:	learn: 28.7752064	total: 195ms	remaining: 292ms
40:	learn: 28.3622191	total: 199ms	remaining: 286ms
41:	learn: 28.1346631	total: 202ms	remaining: 280ms
42:	learn: 27.9585719	total: 206ms	remaining: 274ms
43:	learn: 27.6565566	total: 211ms	remaining: 268ms
44:	learn: 27.3616172	total: 215ms	remaining: 263ms
45:	learn: 27.0658637	total: 219ms	remaining: 257ms
46:	learn: 26.8660382	total: 224ms	remaining: 252ms
47:	learn: 26.6536078	total: 228ms	remaining: 247ms
48:	learn: 26.3524440	total: 233ms	remaining: 242ms
49:	learn: 26.1595277	total: 237ms	remaining: 237ms
50:	learn: 25.9273523	total: 241ms	remaining: 232ms
51:	learn: 25.7195580	total: 246ms	remaining: 227ms
52:	learn: 25.5730225	total: 250ms	remaining: 222ms
53:	learn: 25.3455276	total: 255ms	remaining: 217ms
54:	learn: 25.2289675	total: 263ms	remaining: 215ms
55:	learn: 25.0133024	total: 270ms	remaining: 212ms
56:	learn: 24.8406714	total: 279ms	remaining: 210ms
57:	learn: 24.6367857	total: 285ms	remaining: 207ms
58:	learn: 24.5338177	total: 291ms	remaining: 202ms
59:	learn: 24.3799964	total: 296ms	remaining: 198ms
60:	learn: 24.1447492	total: 301ms	remaining: 193ms
61:	learn: 23.9880495	total: 307ms	remaining: 188ms
62:	learn: 23.7140630	total: 311ms	remaining: 183ms
63:	learn: 23.5003791	total: 317ms	remaining: 178ms
64:	learn: 23.3207645	total: 322ms	remaining: 173ms
65:	learn: 23.1958356	total: 327ms	remaining: 169ms
66:	learn: 23.0471302	total: 333ms	remaining: 164ms
67:	learn: 22.8977183	total: 338ms	remaining: 159ms
68:	learn: 22.7187400	total: 343ms	remaining: 154ms
69:	learn: 22.6523405	total: 348ms	remaining: 149ms
70:	learn: 22.4767453	total: 353ms	remaining: 144ms
71:	learn: 22.3243677	total: 358ms	remaining: 139ms
72:	learn: 22.2133096	total: 363ms	remaining: 134ms
73:	learn: 22.1151713	total: 368ms	remaining: 129ms
74:	learn: 22.0296666	total: 372ms	remaining: 124ms
75:	learn: 21.9195980	total: 376ms	remaining: 119ms
76:	learn: 21.8401730	total: 379ms	remaining: 113ms
77:	learn: 21.8079797	total: 383ms	remaining: 108ms
78:	learn: 21.7274109	total: 387ms	remaining: 103ms
79:	learn: 21.6663032	total: 391ms	remaining: 97.8ms
80:	learn: 21.5633117	total: 395ms	remaining: 92.7ms
81:	learn: 21.4542467	total: 399ms	remaining: 87.6ms
82:	learn: 21.3177957	total: 403ms	remaining: 82.6ms
83:	learn: 21.1289167	total: 407ms	remaining: 77.6ms
84:	learn: 21.0297368	total: 411ms	remaining: 72.6ms
85:	learn: 20.9089564	total: 415ms	remaining: 67.6ms
86:	learn: 20.7653988	total: 420ms	remaining: 62.8ms
87:	learn: 20.6521894	total: 432ms	remaining: 58.9ms
88:	learn: 20.5193021	total: 436ms	remaining: 53.9ms
89:	learn: 20.4361620	total: 441ms	remaining: 49ms
90:	learn: 20.3546710	total: 445ms	remaining: 44ms
91:	learn: 20.2513296	total: 449ms	remaining: 39.1ms
92:	learn: 20.1605550	total: 457ms	remaining: 34.4ms
93:	learn: 20.0515942	total: 464ms	remaining: 29.6ms
94:	learn: 19.9800764	total: 473ms	remaining: 24.9ms
95:	learn: 19.8996532	total: 479ms	remaining: 20ms
96:	learn: 19.8450910	total: 486ms	remaining: 15ms
97:	learn: 19.7887346	total: 491ms	remaining: 10ms
98:	learn: 19.7230872	total: 496ms	remaining: 5.01ms
99:	learn: 19.6328825	total: 501ms	remaining: 0us
0:	learn: 27.5585353	total: 4.76ms	remaining: 472ms
1:	learn: 27.1656995	total: 9.11ms	remaining: 446ms
2:	learn: 26.8590175	total: 13ms	remaining: 421ms
3:	learn: 26.5818406	total: 17.4ms	remaining: 418ms
4:	learn: 26.1148663	total: 21.7ms	remaining: 412ms
5:	learn: 25.7690484	total: 25.7ms	remaining: 403ms
6:	learn: 25.3489206	total: 30.2ms	remaining: 401ms
7:	learn: 24.9542406	total: 34.5ms	remaining: 397ms
8:	learn: 24.6777517	total: 52.9ms	remaining: 535ms
9:	learn: 24.3242344	total: 57.5ms	remaining: 518ms
10:	learn: 24.0383073	total: 61.5ms	remaining: 498ms
11:	learn: 23.7383420	total: 66ms	remaining: 484ms
12:	learn: 23.3461670	total: 70.6ms	remaining: 473ms
13:	learn: 23.0928636	total: 75.1ms	remaining: 461ms
14:	learn: 22.8770414	total: 79.7ms	remaining: 451ms
15:	learn: 22.6323214	total: 84.6ms	remaining: 444ms
16:	learn: 22.3597072	total: 89.5ms	remaining: 437ms
17:	learn: 22.1079813	total: 94.2ms	remaining: 429ms
18:	learn: 21.8421199	total: 99ms	remaining: 422ms
19:	learn: 21.6576508	total: 104ms	remaining: 415ms
20:	learn: 21.4301268	total: 112ms	remaining: 421ms
21:	learn: 21.2287388	total: 120ms	remaining: 425ms
22:	learn: 21.0553872	total: 129ms	remaining: 431ms
23:	learn: 20.8977091	total: 135ms	remaining: 427ms
24:	learn: 20.6619051	total: 141ms	remaining: 424ms
25:	learn: 20.5040955	total: 146ms	remaining: 417ms
26:	learn: 20.3181195	total: 152ms	remaining: 411ms
27:	learn: 20.0869436	total: 157ms	remaining: 403ms
28:	learn: 19.9375985	total: 162ms	remaining: 396ms
29:	learn: 19.8247516	total: 167ms	remaining: 389ms
30:	learn: 19.6261697	total: 172ms	remaining: 383ms
31:	learn: 19.4547236	total: 177ms	remaining: 376ms
32:	learn: 19.3157092	total: 183ms	remaining: 371ms
33:	learn: 19.1561419	total: 188ms	remaining: 366ms
34:	learn: 19.0453620	total: 194ms	remaining: 360ms
35:	learn: 18.8738574	total: 200ms	remaining: 355ms
36:	learn: 18.7072907	total: 205ms	remaining: 349ms
37:	learn: 18.5877943	total: 211ms	remaining: 344ms
38:	learn: 18.4436380	total: 215ms	remaining: 337ms
39:	learn: 18.3463356	total: 220ms	remaining: 330ms
40:	learn: 18.2008059	total: 225ms	remaining: 324ms
41:	learn: 18.0582079	total: 229ms	remaining: 317ms
42:	learn: 17.8891982	total: 234ms	remaining: 310ms
43:	learn: 17.7332246	total: 238ms	remaining: 303ms
44:	learn: 17.6206421	total: 242ms	remaining: 296ms
45:	learn: 17.4982800	total: 246ms	remaining: 289ms
46:	learn: 17.3970150	total: 250ms	remaining: 282ms
47:	learn: 17.3058203	total: 255ms	remaining: 276ms
48:	learn: 17.1789256	total: 259ms	remaining: 269ms
49:	learn: 17.0916229	total: 263ms	remaining: 263ms
50:	learn: 16.9859820	total: 267ms	remaining: 256ms
51:	learn: 16.8995582	total: 272ms	remaining: 251ms
52:	learn: 16.8137014	total: 276ms	remaining: 245ms
53:	learn: 16.7021451	total: 280ms	remaining: 239ms
54:	learn: 16.5895582	total: 285ms	remaining: 233ms
55:	learn: 16.5015639	total: 289ms	remaining: 227ms
56:	learn: 16.4356637	total: 294ms	remaining: 222ms
57:	learn: 16.3514525	total: 299ms	remaining: 216ms
58:	learn: 16.2401369	total: 304ms	remaining: 211ms
59:	learn: 16.1293223	total: 313ms	remaining: 208ms
60:	learn: 16.0271167	total: 320ms	remaining: 204ms
61:	learn: 15.9126257	total: 328ms	remaining: 201ms
62:	learn: 15.8391096	total: 334ms	remaining: 196ms
63:	learn: 15.7441773	total: 340ms	remaining: 191ms
64:	learn: 15.6885195	total: 345ms	remaining: 186ms
65:	learn: 15.6052039	total: 350ms	remaining: 180ms
66:	learn: 15.5074202	total: 355ms	remaining: 175ms
67:	learn: 15.4054338	total: 360ms	remaining: 169ms
68:	learn: 15.2885714	total: 365ms	remaining: 164ms
69:	learn: 15.2157472	total: 371ms	remaining: 159ms
70:	learn: 15.1031554	total: 376ms	remaining: 153ms
71:	learn: 15.0237470	total: 381ms	remaining: 148ms
72:	learn: 14.9756825	total: 386ms	remaining: 143ms
73:	learn: 14.8840596	total: 392ms	remaining: 138ms
74:	learn: 14.8077061	total: 398ms	remaining: 133ms
75:	learn: 14.7444437	total: 403ms	remaining: 127ms
76:	learn: 14.6751720	total: 407ms	remaining: 122ms
77:	learn: 14.5830333	total: 411ms	remaining: 116ms
78:	learn: 14.5241206	total: 415ms	remaining: 110ms
79:	learn: 14.4892731	total: 419ms	remaining: 105ms
80:	learn: 14.4256605	total: 423ms	remaining: 99.2ms
81:	learn: 14.3666860	total: 427ms	remaining: 93.8ms
82:	learn: 14.2938372	total: 432ms	remaining: 88.4ms
83:	learn: 14.2161532	total: 436ms	remaining: 83ms
84:	learn: 14.1582910	total: 440ms	remaining: 77.6ms
85:	learn: 14.1029153	total: 445ms	remaining: 72.4ms
86:	learn: 14.0475835	total: 448ms	remaining: 67ms
87:	learn: 13.9892661	total: 453ms	remaining: 61.7ms
88:	learn: 13.9481628	total: 457ms	remaining: 56.5ms
89:	learn: 13.8483991	total: 461ms	remaining: 51.2ms
90:	learn: 13.7775614	total: 466ms	remaining: 46ms
91:	learn: 13.7304585	total: 470ms	remaining: 40.9ms
92:	learn: 13.6783381	total: 475ms	remaining: 35.7ms
93:	learn: 13.6356964	total: 479ms	remaining: 30.6ms
94:	learn: 13.5924371	total: 483ms	remaining: 25.4ms
95:	learn: 13.5400746	total: 488ms	remaining: 20.3ms
96:	learn: 13.4897333	total: 492ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 500ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 508ms	remaining: 5.13ms
99:	learn: 13.3082371	total: 518ms	remaining: 0us
0:	learn: 43.0395283	total: 6.09ms	remaining: 603ms
1:	learn: 42.1130223	total: 10.9ms	remaining: 533ms
2:	learn: 41.1753409	total: 15.4ms	remaining: 497ms
3:	learn: 40.3637444	total: 19.7ms	remaining: 473ms
4:	learn: 39.6508088	total: 24.7ms	remaining: 469ms
5:	learn: 38.7217934	total: 29.5ms	remaining: 461ms
6:	learn: 37.8538055	total: 34.3ms	remaining: 456ms
7:	learn: 36.9793574	total: 40ms	remaining: 460ms
8:	learn: 36.3076984	total: 43.9ms	remaining: 444ms
9:	learn: 35.6673160	total: 47.7ms	remaining: 429ms
10:	learn: 34.8889800	total: 51.8ms	remaining: 419ms
11:	learn: 34.1675517	total: 56.1ms	remaining: 412ms
12:	learn: 33.6779564	total: 60.4ms	remaining: 404ms
13:	learn: 33.0710039	total: 64ms	remaining: 393ms
14:	learn: 32.4966674	total: 67.8ms	remaining: 384ms
15:	learn: 31.9492856	total: 71.8ms	remaining: 377ms
16:	learn: 31.5108129	total: 75.9ms	remaining: 371ms
17:	learn: 30.9804023	total: 80.1ms	remaining: 365ms
18:	learn: 30.4169089	total: 84.5ms	remaining: 360ms
19:	learn: 29.8930375	total: 88.8ms	remaining: 355ms
20:	learn: 29.3974421	total: 93.4ms	remaining: 351ms
21:	learn: 28.8792307	total: 97.9ms	remaining: 347ms
22:	learn: 28.3894474	total: 102ms	remaining: 342ms
23:	learn: 27.9921276	total: 107ms	remaining: 338ms
24:	learn: 27.6158887	total: 111ms	remaining: 334ms
25:	learn: 27.2866950	total: 116ms	remaining: 331ms
26:	learn: 26.8770708	total: 121ms	remaining: 327ms
27:	learn: 26.6233005	total: 125ms	remaining: 323ms
28:	learn: 26.2921934	total: 130ms	remaining: 318ms
29:	learn: 25.9156920	total: 134ms	remaining: 314ms
30:	learn: 25.5311106	total: 136ms	remaining: 303ms
31:	learn: 25.2178997	total: 141ms	remaining: 299ms
32:	learn: 24.8572196	total: 145ms	remaining: 295ms
33:	learn: 24.5849710	total: 151ms	remaining: 294ms
34:	learn: 24.2209190	total: 159ms	remaining: 295ms
35:	learn: 23.8708250	total: 167ms	remaining: 297ms
36:	learn: 23.5325279	total: 174ms	remaining: 296ms
37:	learn: 23.2116148	total: 182ms	remaining: 297ms
38:	learn: 22.9696787	total: 187ms	remaining: 293ms
39:	learn: 22.7936783	total: 192ms	remaining: 288ms
40:	learn: 22.6228847	total: 197ms	remaining: 284ms
41:	learn: 22.3691527	total: 203ms	remaining: 280ms
42:	learn: 22.1002173	total: 208ms	remaining: 275ms
43:	learn: 21.9157268	total: 213ms	remaining: 271ms
44:	learn: 21.7229102	total: 218ms	remaining: 266ms
45:	learn: 21.4642005	total: 223ms	remaining: 262ms
46:	learn: 21.3029442	total: 228ms	remaining: 257ms
47:	learn: 21.1469792	total: 233ms	remaining: 252ms
48:	learn: 20.9458235	total: 237ms	remaining: 247ms
49:	learn: 20.7335242	total: 242ms	remaining: 242ms
50:	learn: 20.5440269	total: 247ms	remaining: 238ms
51:	learn: 20.3661449	total: 253ms	remaining: 234ms
52:	learn: 20.2158134	total: 257ms	remaining: 228ms
53:	learn: 19.9934873	total: 261ms	remaining: 223ms
54:	learn: 19.7879739	total: 266ms	remaining: 218ms
55:	learn: 19.6630460	total: 270ms	remaining: 212ms
56:	learn: 19.5152729	total: 274ms	remaining: 207ms
57:	learn: 19.3581128	total: 278ms	remaining: 201ms
58:	learn: 19.2209303	total: 282ms	remaining: 196ms
59:	learn: 19.0965248	total: 286ms	remaining: 191ms
60:	learn: 19.0035954	total: 290ms	remaining: 185ms
61:	learn: 18.8554149	total: 294ms	remaining: 180ms
62:	learn: 18.7095427	total: 298ms	remaining: 175ms
63:	learn: 18.5751494	total: 303ms	remaining: 170ms
64:	learn: 18.4678251	total: 307ms	remaining: 165ms
65:	learn: 18.3500325	total: 311ms	remaining: 160ms
66:	learn: 18.2088983	total: 316ms	remaining: 156ms
67:	learn: 18.0737705	total: 321ms	remaining: 151ms
68:	learn: 17.9325058	total: 325ms	remaining: 146ms
69:	learn: 17.8003911	total: 330ms	remaining: 141ms
70:	learn: 17.7385366	total: 334ms	remaining: 136ms
71:	learn: 17.6106998	total: 339ms	remaining: 132ms
72:	learn: 17.4816270	total: 343ms	remaining: 127ms
73:	learn: 17.4025554	total: 349ms	remaining: 123ms
74:	learn: 17.2902108	total: 357ms	remaining: 119ms
75:	learn: 17.2158048	total: 364ms	remaining: 115ms
76:	learn: 17.1261053	total: 372ms	remaining: 111ms
77:	learn: 17.0308917	total: 380ms	remaining: 107ms
78:	learn: 16.9546705	total: 385ms	remaining: 102ms
79:	learn: 16.8319165	total: 390ms	remaining: 97.6ms
80:	learn: 16.7687017	total: 395ms	remaining: 92.7ms
81:	learn: 16.6972326	total: 400ms	remaining: 87.9ms
82:	learn: 16.6124580	total: 406ms	remaining: 83.1ms
83:	learn: 16.4999052	total: 412ms	remaining: 78.4ms
84:	learn: 16.4302484	total: 416ms	remaining: 73.5ms
85:	learn: 16.3201363	total: 422ms	remaining: 68.7ms
86:	learn: 16.2534314	total: 427ms	remaining: 63.8ms
87:	learn: 16.1720485	total: 432ms	remaining: 58.9ms
88:	learn: 16.0625751	total: 437ms	remaining: 54ms
89:	learn: 15.9135088	total: 441ms	remaining: 49ms
90:	learn: 15.8658863	total: 446ms	remaining: 44.1ms
91:	learn: 15.8066805	total: 452ms	remaining: 39.3ms
92:	learn: 15.7412103	total: 457ms	remaining: 34.4ms
93:	learn: 15.6542776	total: 461ms	remaining: 29.4ms
94:	learn: 15.5760334	total: 465ms	remaining: 24.5ms
95:	learn: 15.5434131	total: 470ms	remaining: 19.6ms
96:	learn: 15.4709561	total: 474ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 478ms	remaining: 9.76ms
98:	learn: 15.3752761	total: 483ms	remaining: 4.88ms
99:	learn: 15.3106595	total: 487ms	remaining: 0us
0:	learn: 46.7142257	total: 5.33ms	remaining: 527ms
1:	learn: 45.7634153	total: 10.5ms	remaining: 513ms
2:	learn: 45.0054253	total: 17.3ms	remaining: 561ms
3:	learn: 44.2120432	total: 25.5ms	remaining: 613ms
4:	learn: 43.3960472	total: 34.3ms	remaining: 651ms
5:	learn: 42.8588120	total: 41ms	remaining: 643ms
6:	learn: 41.9533701	total: 49.2ms	remaining: 654ms
7:	learn: 41.2745030	total: 55.2ms	remaining: 635ms
8:	learn: 40.6797495	total: 61ms	remaining: 617ms
9:	learn: 39.9899571	total: 67.5ms	remaining: 607ms
10:	learn: 39.4682100	total: 73ms	remaining: 591ms
11:	learn: 39.0305595	total: 78.5ms	remaining: 576ms
12:	learn: 38.4200417	total: 84.9ms	remaining: 568ms
13:	learn: 37.8425194	total: 90.8ms	remaining: 558ms
14:	learn: 37.4203127	total: 96ms	remaining: 544ms
15:	learn: 36.9917688	total: 101ms	remaining: 531ms
16:	learn: 36.5544138	total: 106ms	remaining: 519ms
17:	learn: 36.0727019	total: 112ms	remaining: 510ms
18:	learn: 35.4835715	total: 118ms	remaining: 502ms
19:	learn: 34.9865654	total: 123ms	remaining: 491ms
20:	learn: 34.6063373	total: 127ms	remaining: 477ms
21:	learn: 34.0997289	total: 131ms	remaining: 465ms
22:	learn: 33.7313171	total: 135ms	remaining: 453ms
23:	learn: 33.3582000	total: 139ms	remaining: 441ms
24:	learn: 32.9432456	total: 143ms	remaining: 430ms
25:	learn: 32.5220888	total: 147ms	remaining: 419ms
26:	learn: 32.2172292	total: 151ms	remaining: 409ms
27:	learn: 31.8972904	total: 155ms	remaining: 400ms
28:	learn: 31.6405350	total: 160ms	remaining: 391ms
29:	learn: 31.4167702	total: 164ms	remaining: 383ms
30:	learn: 30.8541961	total: 166ms	remaining: 369ms
31:	learn: 30.5572111	total: 170ms	remaining: 361ms
32:	learn: 30.1700399	total: 174ms	remaining: 353ms
33:	learn: 29.8537271	total: 178ms	remaining: 346ms
34:	learn: 29.6192540	total: 182ms	remaining: 338ms
35:	learn: 29.3276362	total: 186ms	remaining: 331ms
36:	learn: 28.9985179	total: 190ms	remaining: 324ms
37:	learn: 28.7046880	total: 194ms	remaining: 316ms
38:	learn: 28.4412677	total: 198ms	remaining: 310ms
39:	learn: 28.1277292	total: 202ms	remaining: 303ms
40:	learn: 27.9000750	total: 207ms	remaining: 297ms
41:	learn: 27.5433162	total: 211ms	remaining: 291ms
42:	learn: 27.2493285	total: 215ms	remaining: 285ms
43:	learn: 26.9576632	total: 217ms	remaining: 276ms
44:	learn: 26.6177110	total: 221ms	remaining: 270ms
45:	learn: 26.2812456	total: 225ms	remaining: 264ms
46:	learn: 26.0803859	total: 230ms	remaining: 259ms
47:	learn: 25.9543581	total: 234ms	remaining: 254ms
48:	learn: 25.7951582	total: 239ms	remaining: 248ms
49:	learn: 25.6548184	total: 243ms	remaining: 243ms
50:	learn: 25.4010843	total: 247ms	remaining: 238ms
51:	learn: 24.9773937	total: 252ms	remaining: 232ms
52:	learn: 24.8026156	total: 256ms	remaining: 227ms
53:	learn: 24.5568053	total: 261ms	remaining: 223ms
54:	learn: 24.2281839	total: 270ms	remaining: 221ms
55:	learn: 23.9202795	total: 279ms	remaining: 219ms
56:	learn: 23.7625591	total: 287ms	remaining: 217ms
57:	learn: 23.5429721	total: 295ms	remaining: 214ms
58:	learn: 23.3175893	total: 300ms	remaining: 209ms
59:	learn: 23.2035130	total: 306ms	remaining: 204ms
60:	learn: 23.0232450	total: 311ms	remaining: 199ms
61:	learn: 22.8384958	total: 317ms	remaining: 194ms
62:	learn: 22.6499902	total: 322ms	remaining: 189ms
63:	learn: 22.4577426	total: 327ms	remaining: 184ms
64:	learn: 22.3333158	total: 333ms	remaining: 179ms
65:	learn: 22.2064131	total: 338ms	remaining: 174ms
66:	learn: 22.1434971	total: 343ms	remaining: 169ms
67:	learn: 21.9596519	total: 349ms	remaining: 164ms
68:	learn: 21.8475576	total: 353ms	remaining: 159ms
69:	learn: 21.6954745	total: 359ms	remaining: 154ms
70:	learn: 21.5635976	total: 365ms	remaining: 149ms
71:	learn: 21.4588506	total: 369ms	remaining: 144ms
72:	learn: 21.3527268	total: 373ms	remaining: 138ms
73:	learn: 21.2661288	total: 377ms	remaining: 133ms
74:	learn: 21.1817333	total: 381ms	remaining: 127ms
75:	learn: 21.0527553	total: 385ms	remaining: 122ms
76:	learn: 20.9229021	total: 389ms	remaining: 116ms
77:	learn: 20.7563946	total: 394ms	remaining: 111ms
78:	learn: 20.6569831	total: 398ms	remaining: 106ms
79:	learn: 20.4982663	total: 402ms	remaining: 101ms
80:	learn: 20.3185460	total: 407ms	remaining: 95.4ms
81:	learn: 20.2096241	total: 411ms	remaining: 90.3ms
82:	learn: 20.1274891	total: 416ms	remaining: 85.2ms
83:	learn: 20.0740139	total: 420ms	remaining: 80ms
84:	learn: 19.9630699	total: 424ms	remaining: 74.9ms
85:	learn: 19.8753899	total: 429ms	remaining: 69.8ms
86:	learn: 19.6563612	total: 434ms	remaining: 64.8ms
87:	learn: 19.4680232	total: 438ms	remaining: 59.7ms
88:	learn: 19.3503431	total: 442ms	remaining: 54.7ms
89:	learn: 19.2221379	total: 447ms	remaining: 49.7ms
90:	learn: 19.0732542	total: 452ms	remaining: 44.7ms
91:	learn: 18.9825190	total: 456ms	remaining: 39.6ms
92:	learn: 18.8839009	total: 461ms	remaining: 34.7ms
93:	learn: 18.8012219	total: 467ms	remaining: 29.8ms
94:	learn: 18.7172713	total: 475ms	remaining: 25ms
95:	learn: 18.6201170	total: 485ms	remaining: 20.2ms
96:	learn: 18.5318611	total: 491ms	remaining: 15.2ms
97:	learn: 18.3833356	total: 498ms	remaining: 10.2ms
98:	learn: 18.3289700	total: 503ms	remaining: 5.08ms
99:	learn: 18.2227333	total: 508ms	remaining: 0us
0:	learn: 46.3764524	total: 4.57ms	remaining: 453ms
1:	learn: 45.5561269	total: 8.3ms	remaining: 407ms
2:	learn: 44.8811245	total: 12.5ms	remaining: 403ms
3:	learn: 44.0788617	total: 16.5ms	remaining: 395ms
4:	learn: 43.3619790	total: 20.5ms	remaining: 390ms
5:	learn: 42.6912112	total: 24.6ms	remaining: 385ms
6:	learn: 42.2292118	total: 28.5ms	remaining: 379ms
7:	learn: 41.7725191	total: 33ms	remaining: 380ms
8:	learn: 41.1676614	total: 37.1ms	remaining: 375ms
9:	learn: 40.5771076	total: 41ms	remaining: 369ms
10:	learn: 39.8343757	total: 45.1ms	remaining: 365ms
11:	learn: 39.3761142	total: 49.1ms	remaining: 360ms
12:	learn: 38.5254692	total: 53.2ms	remaining: 356ms
13:	learn: 37.9629555	total: 57.6ms	remaining: 354ms
14:	learn: 37.4418438	total: 61.5ms	remaining: 349ms
15:	learn: 37.0507283	total: 65.5ms	remaining: 344ms
16:	learn: 36.6264217	total: 69.3ms	remaining: 338ms
17:	learn: 36.1114940	total: 73.7ms	remaining: 336ms
18:	learn: 35.7193862	total: 78.1ms	remaining: 333ms
19:	learn: 35.3301177	total: 82.5ms	remaining: 330ms
20:	learn: 35.0598280	total: 87.1ms	remaining: 328ms
21:	learn: 34.5469736	total: 91.5ms	remaining: 324ms
22:	learn: 34.2064215	total: 95.9ms	remaining: 321ms
23:	learn: 33.7280710	total: 99.8ms	remaining: 316ms
24:	learn: 33.3282940	total: 104ms	remaining: 313ms
25:	learn: 32.8478961	total: 110ms	remaining: 312ms
26:	learn: 32.5722164	total: 117ms	remaining: 316ms
27:	learn: 32.2457019	total: 124ms	remaining: 320ms
28:	learn: 31.9230495	total: 133ms	remaining: 325ms
29:	learn: 31.4311611	total: 141ms	remaining: 329ms
30:	learn: 30.9179052	total: 146ms	remaining: 326ms
31:	learn: 30.6201141	total: 151ms	remaining: 322ms
32:	learn: 30.3421106	total: 157ms	remaining: 319ms
33:	learn: 29.9885373	total: 178ms	remaining: 346ms
34:	learn: 29.7462780	total: 183ms	remaining: 341ms
35:	learn: 29.3607153	total: 188ms	remaining: 335ms
36:	learn: 29.1793078	total: 193ms	remaining: 329ms
37:	learn: 28.9276538	total: 199ms	remaining: 324ms
38:	learn: 28.6903934	total: 204ms	remaining: 320ms
39:	learn: 28.2095033	total: 209ms	remaining: 314ms
40:	learn: 27.7990608	total: 213ms	remaining: 307ms
41:	learn: 27.5406632	total: 217ms	remaining: 300ms
42:	learn: 27.2575376	total: 221ms	remaining: 293ms
43:	learn: 26.9741707	total: 225ms	remaining: 286ms
44:	learn: 26.6606899	total: 229ms	remaining: 280ms
45:	learn: 26.4015833	total: 233ms	remaining: 274ms
46:	learn: 26.1828993	total: 237ms	remaining: 267ms
47:	learn: 26.0233709	total: 240ms	remaining: 260ms
48:	learn: 25.9300399	total: 244ms	remaining: 254ms
49:	learn: 25.5861489	total: 248ms	remaining: 248ms
50:	learn: 25.4322012	total: 252ms	remaining: 242ms
51:	learn: 25.1595644	total: 256ms	remaining: 237ms
52:	learn: 24.9955303	total: 261ms	remaining: 231ms
53:	learn: 24.7273966	total: 265ms	remaining: 226ms
54:	learn: 24.5747978	total: 269ms	remaining: 220ms
55:	learn: 24.3807977	total: 273ms	remaining: 215ms
56:	learn: 24.1689569	total: 278ms	remaining: 210ms
57:	learn: 23.9898221	total: 282ms	remaining: 204ms
58:	learn: 23.7566414	total: 287ms	remaining: 199ms
59:	learn: 23.6641165	total: 292ms	remaining: 194ms
60:	learn: 23.5658066	total: 296ms	remaining: 189ms
61:	learn: 23.4338851	total: 301ms	remaining: 184ms
62:	learn: 23.2408837	total: 305ms	remaining: 179ms
63:	learn: 23.0642038	total: 311ms	remaining: 175ms
64:	learn: 22.9032045	total: 319ms	remaining: 172ms
65:	learn: 22.7736138	total: 326ms	remaining: 168ms
66:	learn: 22.6836443	total: 335ms	remaining: 165ms
67:	learn: 22.5983654	total: 350ms	remaining: 165ms
68:	learn: 22.4419813	total: 355ms	remaining: 160ms
69:	learn: 22.2863339	total: 360ms	remaining: 154ms
70:	learn: 22.1792943	total: 366ms	remaining: 149ms
71:	learn: 22.1130574	total: 371ms	remaining: 144ms
72:	learn: 21.9858161	total: 376ms	remaining: 139ms
73:	learn: 21.8577784	total: 381ms	remaining: 134ms
74:	learn: 21.7845222	total: 386ms	remaining: 129ms
75:	learn: 21.6831390	total: 391ms	remaining: 124ms
76:	learn: 21.6292521	total: 396ms	remaining: 118ms
77:	learn: 21.5789330	total: 401ms	remaining: 113ms
78:	learn: 21.5420942	total: 406ms	remaining: 108ms
79:	learn: 21.4280939	total: 411ms	remaining: 103ms
80:	learn: 21.3641165	total: 416ms	remaining: 97.6ms
81:	learn: 21.2734814	total: 421ms	remaining: 92.5ms
82:	learn: 21.2220323	total: 426ms	remaining: 87.2ms
83:	learn: 21.0625792	total: 430ms	remaining: 81.9ms
84:	learn: 20.9488320	total: 434ms	remaining: 76.6ms
85:	learn: 20.8504255	total: 438ms	remaining: 71.3ms
86:	learn: 20.7848510	total: 442ms	remaining: 66.1ms
87:	learn: 20.7247442	total: 446ms	remaining: 60.9ms
88:	learn: 20.5698590	total: 451ms	remaining: 55.7ms
89:	learn: 20.4067620	total: 455ms	remaining: 50.6ms
90:	learn: 20.3062482	total: 460ms	remaining: 45.5ms
91:	learn: 20.2029696	total: 464ms	remaining: 40.3ms
92:	learn: 20.1384849	total: 468ms	remaining: 35.2ms
93:	learn: 20.0260709	total: 472ms	remaining: 30.1ms
94:	learn: 19.9122100	total: 477ms	remaining: 25.1ms
95:	learn: 19.8648487	total: 482ms	remaining: 20.1ms
96:	learn: 19.8207072	total: 487ms	remaining: 15.1ms
97:	learn: 19.7261189	total: 492ms	remaining: 10ms
98:	learn: 19.7042438	total: 497ms	remaining: 5.02ms
99:	learn: 19.6546645	total: 502ms	remaining: 0us
0:	learn: 47.0239288	total: 5.23ms	remaining: 518ms
1:	learn: 46.2253829	total: 10.7ms	remaining: 525ms
2:	learn: 45.5580301	total: 16ms	remaining: 517ms
3:	learn: 44.7273237	total: 21.3ms	remaining: 511ms
4:	learn: 43.8867421	total: 26.6ms	remaining: 506ms
5:	learn: 43.3615911	total: 31.6ms	remaining: 496ms
6:	learn: 42.8548390	total: 36.3ms	remaining: 482ms
7:	learn: 42.1606758	total: 41.5ms	remaining: 477ms
8:	learn: 41.6625870	total: 46.8ms	remaining: 473ms
9:	learn: 40.9497092	total: 52ms	remaining: 468ms
10:	learn: 40.1886318	total: 56.3ms	remaining: 456ms
11:	learn: 39.7456423	total: 60.4ms	remaining: 443ms
12:	learn: 39.1171373	total: 64.3ms	remaining: 430ms
13:	learn: 38.5451069	total: 68.2ms	remaining: 419ms
14:	learn: 38.0155834	total: 72.3ms	remaining: 410ms
15:	learn: 37.5631354	total: 76.5ms	remaining: 402ms
16:	learn: 37.1030023	total: 80.6ms	remaining: 393ms
17:	learn: 36.4563029	total: 84.4ms	remaining: 384ms
18:	learn: 36.0160976	total: 88.7ms	remaining: 378ms
19:	learn: 35.5079827	total: 93.1ms	remaining: 373ms
20:	learn: 35.2111885	total: 97.2ms	remaining: 366ms
21:	learn: 34.9397465	total: 101ms	remaining: 359ms
22:	learn: 34.5270048	total: 105ms	remaining: 353ms
23:	learn: 34.0169260	total: 109ms	remaining: 347ms
24:	learn: 33.7454892	total: 113ms	remaining: 340ms
25:	learn: 33.2648157	total: 118ms	remaining: 336ms
26:	learn: 32.8899427	total: 123ms	remaining: 332ms
27:	learn: 32.6185050	total: 127ms	remaining: 328ms
28:	learn: 32.3528531	total: 132ms	remaining: 323ms
29:	learn: 32.0859923	total: 136ms	remaining: 318ms
30:	learn: 31.6511144	total: 140ms	remaining: 312ms
31:	learn: 31.2571765	total: 145ms	remaining: 308ms
32:	learn: 30.9770049	total: 149ms	remaining: 303ms
33:	learn: 30.6084872	total: 155ms	remaining: 301ms
34:	learn: 30.3448632	total: 163ms	remaining: 303ms
35:	learn: 30.0360942	total: 171ms	remaining: 303ms
36:	learn: 29.6648968	total: 178ms	remaining: 303ms
37:	learn: 29.3165114	total: 185ms	remaining: 302ms
38:	learn: 29.0829198	total: 191ms	remaining: 299ms
39:	learn: 28.7752064	total: 196ms	remaining: 294ms
40:	learn: 28.3622191	total: 201ms	remaining: 290ms
41:	learn: 28.1346631	total: 207ms	remaining: 286ms
42:	learn: 27.9585719	total: 213ms	remaining: 282ms
43:	learn: 27.6565566	total: 218ms	remaining: 277ms
44:	learn: 27.3616172	total: 224ms	remaining: 274ms
45:	learn: 27.0658637	total: 229ms	remaining: 269ms
46:	learn: 26.8660382	total: 235ms	remaining: 265ms
47:	learn: 26.6536078	total: 240ms	remaining: 260ms
48:	learn: 26.3524440	total: 245ms	remaining: 255ms
49:	learn: 26.1595277	total: 250ms	remaining: 250ms
50:	learn: 25.9273523	total: 255ms	remaining: 245ms
51:	learn: 25.7195580	total: 260ms	remaining: 240ms
52:	learn: 25.5730225	total: 264ms	remaining: 234ms
53:	learn: 25.3455276	total: 268ms	remaining: 229ms
54:	learn: 25.2289675	total: 272ms	remaining: 223ms
55:	learn: 25.0133024	total: 276ms	remaining: 217ms
56:	learn: 24.8406714	total: 280ms	remaining: 211ms
57:	learn: 24.6367857	total: 284ms	remaining: 206ms
58:	learn: 24.5338177	total: 289ms	remaining: 201ms
59:	learn: 24.3799964	total: 293ms	remaining: 195ms
60:	learn: 24.1447492	total: 297ms	remaining: 190ms
61:	learn: 23.9880495	total: 301ms	remaining: 184ms
62:	learn: 23.7140630	total: 305ms	remaining: 179ms
63:	learn: 23.5003791	total: 309ms	remaining: 174ms
64:	learn: 23.3207645	total: 313ms	remaining: 169ms
65:	learn: 23.1958356	total: 318ms	remaining: 164ms
66:	learn: 23.0471302	total: 323ms	remaining: 159ms
67:	learn: 22.8977183	total: 327ms	remaining: 154ms
68:	learn: 22.7187400	total: 332ms	remaining: 149ms
69:	learn: 22.6523405	total: 337ms	remaining: 144ms
70:	learn: 22.4767453	total: 341ms	remaining: 139ms
71:	learn: 22.3243677	total: 345ms	remaining: 134ms
72:	learn: 22.2133096	total: 352ms	remaining: 130ms
73:	learn: 22.1151713	total: 359ms	remaining: 126ms
74:	learn: 22.0296666	total: 366ms	remaining: 122ms
75:	learn: 21.9195980	total: 374ms	remaining: 118ms
76:	learn: 21.8401730	total: 382ms	remaining: 114ms
77:	learn: 21.8079797	total: 387ms	remaining: 109ms
78:	learn: 21.7274109	total: 392ms	remaining: 104ms
79:	learn: 21.6663032	total: 397ms	remaining: 99.3ms
80:	learn: 21.5633117	total: 402ms	remaining: 94.3ms
81:	learn: 21.4542467	total: 407ms	remaining: 89.4ms
82:	learn: 21.3177957	total: 412ms	remaining: 84.4ms
83:	learn: 21.1289167	total: 417ms	remaining: 79.5ms
84:	learn: 21.0297368	total: 423ms	remaining: 74.6ms
85:	learn: 20.9089564	total: 428ms	remaining: 69.7ms
86:	learn: 20.7653988	total: 434ms	remaining: 64.8ms
87:	learn: 20.6521894	total: 439ms	remaining: 59.8ms
88:	learn: 20.5193021	total: 444ms	remaining: 54.8ms
89:	learn: 20.4361620	total: 449ms	remaining: 49.9ms
90:	learn: 20.3546710	total: 454ms	remaining: 44.9ms
91:	learn: 20.2513296	total: 458ms	remaining: 39.8ms
92:	learn: 20.1605550	total: 462ms	remaining: 34.8ms
93:	learn: 20.0515942	total: 466ms	remaining: 29.8ms
94:	learn: 19.9800764	total: 470ms	remaining: 24.7ms
95:	learn: 19.8996532	total: 474ms	remaining: 19.8ms
96:	learn: 19.8450910	total: 478ms	remaining: 14.8ms
97:	learn: 19.7887346	total: 482ms	remaining: 9.83ms
98:	learn: 19.7230872	total: 486ms	remaining: 4.9ms
99:	learn: 19.6328825	total: 490ms	remaining: 0us
0:	learn: 27.5585353	total: 4.74ms	remaining: 469ms
1:	learn: 27.1656995	total: 9.38ms	remaining: 460ms
2:	learn: 26.8590175	total: 14ms	remaining: 451ms
3:	learn: 26.5818406	total: 18.3ms	remaining: 439ms
4:	learn: 26.1148663	total: 26ms	remaining: 493ms
5:	learn: 25.7690484	total: 33.5ms	remaining: 525ms
6:	learn: 25.3489206	total: 41.6ms	remaining: 552ms
7:	learn: 24.9542406	total: 47.4ms	remaining: 545ms
8:	learn: 24.6777517	total: 53.7ms	remaining: 543ms
9:	learn: 24.3242344	total: 59ms	remaining: 531ms
10:	learn: 24.0383073	total: 64.6ms	remaining: 523ms
11:	learn: 23.7383420	total: 69.8ms	remaining: 512ms
12:	learn: 23.3461670	total: 74.9ms	remaining: 501ms
13:	learn: 23.0928636	total: 80ms	remaining: 491ms
14:	learn: 22.8770414	total: 85.2ms	remaining: 483ms
15:	learn: 22.6323214	total: 90.3ms	remaining: 474ms
16:	learn: 22.3597072	total: 95.7ms	remaining: 467ms
17:	learn: 22.1079813	total: 101ms	remaining: 459ms
18:	learn: 21.8421199	total: 106ms	remaining: 451ms
19:	learn: 21.6576508	total: 111ms	remaining: 444ms
20:	learn: 21.4301268	total: 117ms	remaining: 440ms
21:	learn: 21.2287388	total: 122ms	remaining: 433ms
22:	learn: 21.0553872	total: 126ms	remaining: 422ms
23:	learn: 20.8977091	total: 130ms	remaining: 412ms
24:	learn: 20.6619051	total: 134ms	remaining: 402ms
25:	learn: 20.5040955	total: 138ms	remaining: 393ms
26:	learn: 20.3181195	total: 142ms	remaining: 384ms
27:	learn: 20.0869436	total: 146ms	remaining: 376ms
28:	learn: 19.9375985	total: 150ms	remaining: 368ms
29:	learn: 19.8247516	total: 154ms	remaining: 360ms
30:	learn: 19.6261697	total: 158ms	remaining: 351ms
31:	learn: 19.4547236	total: 162ms	remaining: 344ms
32:	learn: 19.3157092	total: 166ms	remaining: 336ms
33:	learn: 19.1561419	total: 170ms	remaining: 330ms
34:	learn: 19.0453620	total: 174ms	remaining: 323ms
35:	learn: 18.8738574	total: 178ms	remaining: 317ms
36:	learn: 18.7072907	total: 183ms	remaining: 311ms
37:	learn: 18.5877943	total: 187ms	remaining: 305ms
38:	learn: 18.4436380	total: 191ms	remaining: 299ms
39:	learn: 18.3463356	total: 196ms	remaining: 294ms
40:	learn: 18.2008059	total: 200ms	remaining: 287ms
41:	learn: 18.0582079	total: 205ms	remaining: 283ms
42:	learn: 17.8891982	total: 209ms	remaining: 277ms
43:	learn: 17.7332246	total: 213ms	remaining: 271ms
44:	learn: 17.6206421	total: 218ms	remaining: 266ms
45:	learn: 17.4982800	total: 223ms	remaining: 262ms
46:	learn: 17.3970150	total: 228ms	remaining: 257ms
47:	learn: 17.3058203	total: 232ms	remaining: 252ms
48:	learn: 17.1789256	total: 237ms	remaining: 247ms
49:	learn: 17.0916229	total: 242ms	remaining: 242ms
50:	learn: 16.9859820	total: 247ms	remaining: 237ms
51:	learn: 16.8995582	total: 251ms	remaining: 232ms
52:	learn: 16.8137014	total: 259ms	remaining: 229ms
53:	learn: 16.7021451	total: 266ms	remaining: 226ms
54:	learn: 16.5895582	total: 274ms	remaining: 224ms
55:	learn: 16.5015639	total: 280ms	remaining: 220ms
56:	learn: 16.4356637	total: 288ms	remaining: 218ms
57:	learn: 16.3514525	total: 294ms	remaining: 213ms
58:	learn: 16.2401369	total: 299ms	remaining: 208ms
59:	learn: 16.1293223	total: 304ms	remaining: 203ms
60:	learn: 16.0271167	total: 309ms	remaining: 198ms
61:	learn: 15.9126257	total: 315ms	remaining: 193ms
62:	learn: 15.8391096	total: 320ms	remaining: 188ms
63:	learn: 15.7441773	total: 326ms	remaining: 183ms
64:	learn: 15.6885195	total: 331ms	remaining: 178ms
65:	learn: 15.6052039	total: 336ms	remaining: 173ms
66:	learn: 15.5074202	total: 342ms	remaining: 168ms
67:	learn: 15.4054338	total: 347ms	remaining: 163ms
68:	learn: 15.2885714	total: 352ms	remaining: 158ms
69:	learn: 15.2157472	total: 357ms	remaining: 153ms
70:	learn: 15.1031554	total: 362ms	remaining: 148ms
71:	learn: 15.0237470	total: 366ms	remaining: 142ms
72:	learn: 14.9756825	total: 371ms	remaining: 137ms
73:	learn: 14.8840596	total: 376ms	remaining: 132ms
74:	learn: 14.8077061	total: 381ms	remaining: 127ms
75:	learn: 14.7444437	total: 385ms	remaining: 122ms
76:	learn: 14.6751720	total: 390ms	remaining: 116ms
77:	learn: 14.5830333	total: 394ms	remaining: 111ms
78:	learn: 14.5241206	total: 398ms	remaining: 106ms
79:	learn: 14.4892731	total: 402ms	remaining: 101ms
80:	learn: 14.4256605	total: 407ms	remaining: 95.5ms
81:	learn: 14.3666860	total: 412ms	remaining: 90.4ms
82:	learn: 14.2938372	total: 416ms	remaining: 85.3ms
83:	learn: 14.2161532	total: 421ms	remaining: 80.2ms
84:	learn: 14.1582910	total: 426ms	remaining: 75.1ms
85:	learn: 14.1029153	total: 430ms	remaining: 70ms
86:	learn: 14.0475835	total: 435ms	remaining: 64.9ms
87:	learn: 13.9892661	total: 440ms	remaining: 59.9ms
88:	learn: 13.9481628	total: 446ms	remaining: 55.1ms
89:	learn: 13.8483991	total: 454ms	remaining: 50.4ms
90:	learn: 13.7775614	total: 461ms	remaining: 45.6ms
91:	learn: 13.7304585	total: 469ms	remaining: 40.8ms
92:	learn: 13.6783381	total: 477ms	remaining: 35.9ms
93:	learn: 13.6356964	total: 482ms	remaining: 30.8ms
94:	learn: 13.5924371	total: 487ms	remaining: 25.6ms
95:	learn: 13.5400746	total: 493ms	remaining: 20.5ms
96:	learn: 13.4897333	total: 498ms	remaining: 15.4ms
97:	learn: 13.4470321	total: 503ms	remaining: 10.3ms
98:	learn: 13.3856082	total: 508ms	remaining: 5.13ms
99:	learn: 13.3082371	total: 513ms	remaining: 0us
0:	learn: 43.0395283	total: 4.47ms	remaining: 443ms
1:	learn: 42.1130223	total: 8.33ms	remaining: 408ms
2:	learn: 41.1753409	total: 12.5ms	remaining: 404ms
3:	learn: 40.3637444	total: 16.4ms	remaining: 394ms
4:	learn: 39.6508088	total: 20.5ms	remaining: 389ms
5:	learn: 38.7217934	total: 24.6ms	remaining: 386ms
6:	learn: 37.8538055	total: 28.9ms	remaining: 384ms
7:	learn: 36.9793574	total: 32.6ms	remaining: 375ms
8:	learn: 36.3076984	total: 36.7ms	remaining: 371ms
9:	learn: 35.6673160	total: 40.7ms	remaining: 366ms
10:	learn: 34.8889800	total: 44.8ms	remaining: 362ms
11:	learn: 34.1675517	total: 48.6ms	remaining: 357ms
12:	learn: 33.6779564	total: 53.1ms	remaining: 355ms
13:	learn: 33.0710039	total: 57.5ms	remaining: 353ms
14:	learn: 32.4966674	total: 62.1ms	remaining: 352ms
15:	learn: 31.9492856	total: 66.5ms	remaining: 349ms
16:	learn: 31.5108129	total: 70.9ms	remaining: 346ms
17:	learn: 30.9804023	total: 75.7ms	remaining: 345ms
18:	learn: 30.4169089	total: 80.2ms	remaining: 342ms
19:	learn: 29.8930375	total: 84.6ms	remaining: 339ms
20:	learn: 29.3974421	total: 89.5ms	remaining: 337ms
21:	learn: 28.8792307	total: 94.1ms	remaining: 334ms
22:	learn: 28.3894474	total: 102ms	remaining: 340ms
23:	learn: 27.9921276	total: 109ms	remaining: 346ms
24:	learn: 27.6158887	total: 119ms	remaining: 356ms
25:	learn: 27.2866950	total: 125ms	remaining: 355ms
26:	learn: 26.8770708	total: 131ms	remaining: 355ms
27:	learn: 26.6233005	total: 136ms	remaining: 351ms
28:	learn: 26.2921934	total: 142ms	remaining: 347ms
29:	learn: 25.9156920	total: 147ms	remaining: 343ms
30:	learn: 25.5311106	total: 149ms	remaining: 332ms
31:	learn: 25.2178997	total: 154ms	remaining: 328ms
32:	learn: 24.8572196	total: 159ms	remaining: 323ms
33:	learn: 24.5849710	total: 164ms	remaining: 319ms
34:	learn: 24.2209190	total: 170ms	remaining: 315ms
35:	learn: 23.8708250	total: 175ms	remaining: 311ms
36:	learn: 23.5325279	total: 180ms	remaining: 306ms
37:	learn: 23.2116148	total: 185ms	remaining: 301ms
38:	learn: 22.9696787	total: 189ms	remaining: 296ms
39:	learn: 22.7936783	total: 196ms	remaining: 294ms
40:	learn: 22.6228847	total: 201ms	remaining: 290ms
41:	learn: 22.3691527	total: 205ms	remaining: 283ms
42:	learn: 22.1002173	total: 209ms	remaining: 277ms
43:	learn: 21.9157268	total: 213ms	remaining: 271ms
44:	learn: 21.7229102	total: 217ms	remaining: 265ms
45:	learn: 21.4642005	total: 221ms	remaining: 259ms
46:	learn: 21.3029442	total: 225ms	remaining: 254ms
47:	learn: 21.1469792	total: 229ms	remaining: 248ms
48:	learn: 20.9458235	total: 233ms	remaining: 242ms
49:	learn: 20.7335242	total: 237ms	remaining: 237ms
50:	learn: 20.5440269	total: 241ms	remaining: 232ms
51:	learn: 20.3661449	total: 245ms	remaining: 226ms
52:	learn: 20.2158134	total: 249ms	remaining: 221ms
53:	learn: 19.9934873	total: 253ms	remaining: 216ms
54:	learn: 19.7879739	total: 257ms	remaining: 211ms
55:	learn: 19.6630460	total: 262ms	remaining: 206ms
56:	learn: 19.5152729	total: 267ms	remaining: 201ms
57:	learn: 19.3581128	total: 271ms	remaining: 196ms
58:	learn: 19.2209303	total: 275ms	remaining: 191ms
59:	learn: 19.0965248	total: 280ms	remaining: 187ms
60:	learn: 19.0035954	total: 284ms	remaining: 182ms
61:	learn: 18.8554149	total: 289ms	remaining: 177ms
62:	learn: 18.7095427	total: 293ms	remaining: 172ms
63:	learn: 18.5751494	total: 302ms	remaining: 170ms
64:	learn: 18.4678251	total: 309ms	remaining: 166ms
65:	learn: 18.3500325	total: 317ms	remaining: 163ms
66:	learn: 18.2088983	total: 322ms	remaining: 159ms
67:	learn: 18.0737705	total: 329ms	remaining: 155ms
68:	learn: 17.9325058	total: 334ms	remaining: 150ms
69:	learn: 17.8003911	total: 339ms	remaining: 145ms
70:	learn: 17.7385366	total: 344ms	remaining: 141ms
71:	learn: 17.6106998	total: 349ms	remaining: 136ms
72:	learn: 17.4816270	total: 354ms	remaining: 131ms
73:	learn: 17.4025554	total: 359ms	remaining: 126ms
74:	learn: 17.2902108	total: 365ms	remaining: 122ms
75:	learn: 17.2158048	total: 369ms	remaining: 117ms
76:	learn: 17.1261053	total: 375ms	remaining: 112ms
77:	learn: 17.0308917	total: 380ms	remaining: 107ms
78:	learn: 16.9546705	total: 385ms	remaining: 102ms
79:	learn: 16.8319165	total: 390ms	remaining: 97.4ms
80:	learn: 16.7687017	total: 395ms	remaining: 92.7ms
81:	learn: 16.6972326	total: 400ms	remaining: 87.9ms
82:	learn: 16.6124580	total: 405ms	remaining: 83ms
83:	learn: 16.4999052	total: 409ms	remaining: 78ms
84:	learn: 16.4302484	total: 414ms	remaining: 73ms
85:	learn: 16.3201363	total: 418ms	remaining: 68ms
86:	learn: 16.2534314	total: 421ms	remaining: 63ms
87:	learn: 16.1720485	total: 425ms	remaining: 58ms
88:	learn: 16.0625751	total: 430ms	remaining: 53.1ms
89:	learn: 15.9135088	total: 433ms	remaining: 48.1ms
90:	learn: 15.8658863	total: 438ms	remaining: 43.3ms
91:	learn: 15.8066805	total: 442ms	remaining: 38.4ms
92:	learn: 15.7412103	total: 446ms	remaining: 33.6ms
93:	learn: 15.6542776	total: 450ms	remaining: 28.7ms
94:	learn: 15.5760334	total: 454ms	remaining: 23.9ms
95:	learn: 15.5434131	total: 459ms	remaining: 19.1ms
96:	learn: 15.4709561	total: 464ms	remaining: 14.3ms
97:	learn: 15.4449618	total: 468ms	remaining: 9.54ms
98:	learn: 15.3752761	total: 472ms	remaining: 4.77ms
99:	learn: 15.3106595	total: 477ms	remaining: 0us
0:	learn: 46.7142257	total: 5.87ms	remaining: 582ms
1:	learn: 45.7634153	total: 10.9ms	remaining: 534ms
2:	learn: 45.0054253	total: 15.8ms	remaining: 511ms
3:	learn: 44.2120432	total: 20.9ms	remaining: 502ms
4:	learn: 43.3960472	total: 26.1ms	remaining: 497ms
5:	learn: 42.8588120	total: 31.1ms	remaining: 488ms
6:	learn: 41.9533701	total: 36.1ms	remaining: 480ms
7:	learn: 41.2745030	total: 40.9ms	remaining: 470ms
8:	learn: 40.6797495	total: 45.3ms	remaining: 458ms
9:	learn: 39.9899571	total: 49.9ms	remaining: 449ms
10:	learn: 39.4682100	total: 54.8ms	remaining: 443ms
11:	learn: 39.0305595	total: 60.6ms	remaining: 444ms
12:	learn: 38.4200417	total: 66.2ms	remaining: 443ms
13:	learn: 37.8425194	total: 70.3ms	remaining: 432ms
14:	learn: 37.4203127	total: 74.7ms	remaining: 423ms
15:	learn: 36.9917688	total: 79.1ms	remaining: 415ms
16:	learn: 36.5544138	total: 83.8ms	remaining: 409ms
17:	learn: 36.0727019	total: 88.1ms	remaining: 401ms
18:	learn: 35.4835715	total: 92.4ms	remaining: 394ms
19:	learn: 34.9865654	total: 96.9ms	remaining: 387ms
20:	learn: 34.6063373	total: 101ms	remaining: 380ms
21:	learn: 34.0997289	total: 105ms	remaining: 373ms
22:	learn: 33.7313171	total: 110ms	remaining: 368ms
23:	learn: 33.3582000	total: 114ms	remaining: 360ms
24:	learn: 32.9432456	total: 118ms	remaining: 354ms
25:	learn: 32.5220888	total: 122ms	remaining: 347ms
26:	learn: 32.2172292	total: 127ms	remaining: 343ms
27:	learn: 31.8972904	total: 131ms	remaining: 337ms
28:	learn: 31.6405350	total: 135ms	remaining: 330ms
29:	learn: 31.4167702	total: 139ms	remaining: 325ms
30:	learn: 30.8541961	total: 141ms	remaining: 313ms
31:	learn: 30.5572111	total: 146ms	remaining: 310ms
32:	learn: 30.1700399	total: 151ms	remaining: 306ms
33:	learn: 29.8537271	total: 155ms	remaining: 302ms
34:	learn: 29.6192540	total: 160ms	remaining: 297ms
35:	learn: 29.3276362	total: 165ms	remaining: 293ms
36:	learn: 28.9985179	total: 169ms	remaining: 288ms
37:	learn: 28.7046880	total: 174ms	remaining: 284ms
38:	learn: 28.4412677	total: 182ms	remaining: 285ms
39:	learn: 28.1277292	total: 190ms	remaining: 285ms
40:	learn: 27.9000750	total: 199ms	remaining: 286ms
41:	learn: 27.5433162	total: 206ms	remaining: 284ms
42:	learn: 27.2493285	total: 211ms	remaining: 280ms
43:	learn: 26.9576632	total: 213ms	remaining: 272ms
44:	learn: 26.6177110	total: 219ms	remaining: 267ms
45:	learn: 26.2812456	total: 224ms	remaining: 263ms
46:	learn: 26.0803859	total: 229ms	remaining: 258ms
47:	learn: 25.9543581	total: 234ms	remaining: 253ms
48:	learn: 25.7951582	total: 239ms	remaining: 249ms
49:	learn: 25.6548184	total: 244ms	remaining: 244ms
50:	learn: 25.4010843	total: 250ms	remaining: 240ms
51:	learn: 24.9773937	total: 255ms	remaining: 236ms
52:	learn: 24.8026156	total: 261ms	remaining: 231ms
53:	learn: 24.5568053	total: 266ms	remaining: 226ms
54:	learn: 24.2281839	total: 271ms	remaining: 222ms
55:	learn: 23.9202795	total: 277ms	remaining: 218ms
56:	learn: 23.7625591	total: 282ms	remaining: 213ms
57:	learn: 23.5429721	total: 286ms	remaining: 207ms
58:	learn: 23.3175893	total: 291ms	remaining: 202ms
59:	learn: 23.2035130	total: 295ms	remaining: 197ms
60:	learn: 23.0232450	total: 300ms	remaining: 192ms
61:	learn: 22.8384958	total: 304ms	remaining: 186ms
62:	learn: 22.6499902	total: 308ms	remaining: 181ms
63:	learn: 22.4577426	total: 312ms	remaining: 176ms
64:	learn: 22.3333158	total: 316ms	remaining: 170ms
65:	learn: 22.2064131	total: 321ms	remaining: 165ms
66:	learn: 22.1434971	total: 325ms	remaining: 160ms
67:	learn: 21.9596519	total: 329ms	remaining: 155ms
68:	learn: 21.8475576	total: 333ms	remaining: 150ms
69:	learn: 21.6954745	total: 338ms	remaining: 145ms
70:	learn: 21.5635976	total: 342ms	remaining: 140ms
71:	learn: 21.4588506	total: 347ms	remaining: 135ms
72:	learn: 21.3527268	total: 352ms	remaining: 130ms
73:	learn: 21.2661288	total: 357ms	remaining: 126ms
74:	learn: 21.1817333	total: 362ms	remaining: 121ms
75:	learn: 21.0527553	total: 367ms	remaining: 116ms
76:	learn: 20.9229021	total: 371ms	remaining: 111ms
77:	learn: 20.7563946	total: 376ms	remaining: 106ms
78:	learn: 20.6569831	total: 380ms	remaining: 101ms
79:	learn: 20.4982663	total: 385ms	remaining: 96.2ms
80:	learn: 20.3185460	total: 392ms	remaining: 92ms
81:	learn: 20.2096241	total: 400ms	remaining: 87.8ms
82:	learn: 20.1274891	total: 409ms	remaining: 83.7ms
83:	learn: 20.0740139	total: 414ms	remaining: 78.9ms
84:	learn: 19.9630699	total: 421ms	remaining: 74.4ms
85:	learn: 19.8753899	total: 427ms	remaining: 69.5ms
86:	learn: 19.6563612	total: 432ms	remaining: 64.6ms
87:	learn: 19.4680232	total: 437ms	remaining: 59.6ms
88:	learn: 19.3503431	total: 442ms	remaining: 54.7ms
89:	learn: 19.2221379	total: 447ms	remaining: 49.7ms
90:	learn: 19.0732542	total: 452ms	remaining: 44.7ms
91:	learn: 18.9825190	total: 457ms	remaining: 39.8ms
92:	learn: 18.8839009	total: 463ms	remaining: 34.8ms
93:	learn: 18.8012219	total: 468ms	remaining: 29.8ms
94:	learn: 18.7172713	total: 472ms	remaining: 24.9ms
95:	learn: 18.6201170	total: 477ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 482ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 488ms	remaining: 9.96ms
98:	learn: 18.3289700	total: 493ms	remaining: 4.98ms
99:	learn: 18.2227333	total: 497ms	remaining: 0us
0:	learn: 46.3764524	total: 4.7ms	remaining: 465ms
1:	learn: 45.5561269	total: 9.13ms	remaining: 447ms
2:	learn: 44.8811245	total: 13.7ms	remaining: 444ms
3:	learn: 44.0788617	total: 18.1ms	remaining: 435ms
4:	learn: 43.3619790	total: 22.9ms	remaining: 434ms
5:	learn: 42.6912112	total: 27.3ms	remaining: 427ms
6:	learn: 42.2292118	total: 31.6ms	remaining: 419ms
7:	learn: 41.7725191	total: 35.8ms	remaining: 412ms
8:	learn: 41.1676614	total: 40.4ms	remaining: 409ms
9:	learn: 40.5771076	total: 47.3ms	remaining: 426ms
10:	learn: 39.8343757	total: 68.6ms	remaining: 555ms
11:	learn: 39.3761142	total: 75.9ms	remaining: 556ms
12:	learn: 38.5254692	total: 81.7ms	remaining: 547ms
13:	learn: 37.9629555	total: 87.1ms	remaining: 535ms
14:	learn: 37.4418438	total: 92.5ms	remaining: 524ms
15:	learn: 37.0507283	total: 97.4ms	remaining: 512ms
16:	learn: 36.6264217	total: 102ms	remaining: 500ms
17:	learn: 36.1114940	total: 108ms	remaining: 490ms
18:	learn: 35.7193862	total: 113ms	remaining: 480ms
19:	learn: 35.3301177	total: 118ms	remaining: 471ms
20:	learn: 35.0598280	total: 123ms	remaining: 462ms
21:	learn: 34.5469736	total: 128ms	remaining: 455ms
22:	learn: 34.2064215	total: 134ms	remaining: 447ms
23:	learn: 33.7280710	total: 139ms	remaining: 439ms
24:	learn: 33.3282940	total: 143ms	remaining: 429ms
25:	learn: 32.8478961	total: 149ms	remaining: 423ms
26:	learn: 32.5722164	total: 154ms	remaining: 417ms
27:	learn: 32.2457019	total: 159ms	remaining: 408ms
28:	learn: 31.9230495	total: 163ms	remaining: 399ms
29:	learn: 31.4311611	total: 167ms	remaining: 390ms
30:	learn: 30.9179052	total: 171ms	remaining: 381ms
31:	learn: 30.6201141	total: 175ms	remaining: 372ms
32:	learn: 30.3421106	total: 179ms	remaining: 364ms
33:	learn: 29.9885373	total: 183ms	remaining: 356ms
34:	learn: 29.7462780	total: 188ms	remaining: 349ms
35:	learn: 29.3607153	total: 192ms	remaining: 342ms
36:	learn: 29.1793078	total: 196ms	remaining: 334ms
37:	learn: 28.9276538	total: 200ms	remaining: 327ms
38:	learn: 28.6903934	total: 204ms	remaining: 320ms
39:	learn: 28.2095033	total: 209ms	remaining: 313ms
40:	learn: 27.7990608	total: 212ms	remaining: 306ms
41:	learn: 27.5406632	total: 216ms	remaining: 299ms
42:	learn: 27.2575376	total: 220ms	remaining: 292ms
43:	learn: 26.9741707	total: 225ms	remaining: 286ms
44:	learn: 26.6606899	total: 229ms	remaining: 280ms
45:	learn: 26.4015833	total: 234ms	remaining: 275ms
46:	learn: 26.1828993	total: 238ms	remaining: 269ms
47:	learn: 26.0233709	total: 241ms	remaining: 261ms
48:	learn: 25.9300399	total: 245ms	remaining: 255ms
49:	learn: 25.5861489	total: 250ms	remaining: 250ms
50:	learn: 25.4322012	total: 254ms	remaining: 244ms
51:	learn: 25.1595644	total: 259ms	remaining: 239ms
52:	learn: 24.9955303	total: 273ms	remaining: 242ms
53:	learn: 24.7273966	total: 282ms	remaining: 240ms
54:	learn: 24.5747978	total: 289ms	remaining: 237ms
55:	learn: 24.3807977	total: 295ms	remaining: 232ms
56:	learn: 24.1689569	total: 300ms	remaining: 226ms
57:	learn: 23.9898221	total: 305ms	remaining: 221ms
58:	learn: 23.7566414	total: 310ms	remaining: 216ms
59:	learn: 23.6641165	total: 316ms	remaining: 210ms
60:	learn: 23.5658066	total: 321ms	remaining: 205ms
61:	learn: 23.4338851	total: 326ms	remaining: 200ms
62:	learn: 23.2408837	total: 331ms	remaining: 194ms
63:	learn: 23.0642038	total: 336ms	remaining: 189ms
64:	learn: 22.9032045	total: 341ms	remaining: 184ms
65:	learn: 22.7736138	total: 345ms	remaining: 178ms
66:	learn: 22.6836443	total: 350ms	remaining: 173ms
67:	learn: 22.5983654	total: 356ms	remaining: 167ms
68:	learn: 22.4419813	total: 361ms	remaining: 162ms
69:	learn: 22.2863339	total: 365ms	remaining: 156ms
70:	learn: 22.1792943	total: 369ms	remaining: 151ms
71:	learn: 22.1130574	total: 373ms	remaining: 145ms
72:	learn: 21.9858161	total: 377ms	remaining: 139ms
73:	learn: 21.8577784	total: 381ms	remaining: 134ms
74:	learn: 21.7845222	total: 385ms	remaining: 128ms
75:	learn: 21.6831390	total: 389ms	remaining: 123ms
76:	learn: 21.6292521	total: 393ms	remaining: 117ms
77:	learn: 21.5789330	total: 397ms	remaining: 112ms
78:	learn: 21.5420942	total: 401ms	remaining: 107ms
79:	learn: 21.4280939	total: 405ms	remaining: 101ms
80:	learn: 21.3641165	total: 410ms	remaining: 96.1ms
81:	learn: 21.2734814	total: 413ms	remaining: 90.7ms
82:	learn: 21.2220323	total: 417ms	remaining: 85.5ms
83:	learn: 21.0625792	total: 422ms	remaining: 80.4ms
84:	learn: 20.9488320	total: 427ms	remaining: 75.3ms
85:	learn: 20.8504255	total: 431ms	remaining: 70.2ms
86:	learn: 20.7848510	total: 436ms	remaining: 65.1ms
87:	learn: 20.7247442	total: 440ms	remaining: 60ms
88:	learn: 20.5698590	total: 445ms	remaining: 55ms
89:	learn: 20.4067620	total: 449ms	remaining: 49.9ms
90:	learn: 20.3062482	total: 453ms	remaining: 44.8ms
91:	learn: 20.2029696	total: 459ms	remaining: 39.9ms
92:	learn: 20.1384849	total: 466ms	remaining: 35.1ms
93:	learn: 20.0260709	total: 473ms	remaining: 30.2ms
94:	learn: 19.9122100	total: 482ms	remaining: 25.4ms
95:	learn: 19.8648487	total: 489ms	remaining: 20.4ms
96:	learn: 19.8207072	total: 495ms	remaining: 15.3ms
97:	learn: 19.7261189	total: 500ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 505ms	remaining: 5.1ms
99:	learn: 19.6546645	total: 511ms	remaining: 0us
0:	learn: 47.0239288	total: 4.42ms	remaining: 437ms
1:	learn: 46.2253829	total: 8.57ms	remaining: 420ms
2:	learn: 45.5580301	total: 12.9ms	remaining: 416ms
3:	learn: 44.7273237	total: 17.1ms	remaining: 411ms
4:	learn: 43.8867421	total: 21.3ms	remaining: 404ms
5:	learn: 43.3615911	total: 25.6ms	remaining: 402ms
6:	learn: 42.8548390	total: 30.1ms	remaining: 400ms
7:	learn: 42.1606758	total: 34.5ms	remaining: 397ms
8:	learn: 41.6625870	total: 38.8ms	remaining: 392ms
9:	learn: 40.9497092	total: 43.4ms	remaining: 390ms
10:	learn: 40.1886318	total: 47.7ms	remaining: 386ms
11:	learn: 39.7456423	total: 51.7ms	remaining: 379ms
12:	learn: 39.1171373	total: 55.8ms	remaining: 373ms
13:	learn: 38.5451069	total: 60.6ms	remaining: 372ms
14:	learn: 38.0155834	total: 64.9ms	remaining: 368ms
15:	learn: 37.5631354	total: 69.7ms	remaining: 366ms
16:	learn: 37.1030023	total: 74.1ms	remaining: 362ms
17:	learn: 36.4563029	total: 78.7ms	remaining: 359ms
18:	learn: 36.0160976	total: 83.7ms	remaining: 357ms
19:	learn: 35.5079827	total: 88.3ms	remaining: 353ms
20:	learn: 35.2111885	total: 93.4ms	remaining: 351ms
21:	learn: 34.9397465	total: 98.4ms	remaining: 349ms
22:	learn: 34.5270048	total: 107ms	remaining: 358ms
23:	learn: 34.0169260	total: 115ms	remaining: 364ms
24:	learn: 33.7454892	total: 124ms	remaining: 372ms
25:	learn: 33.2648157	total: 132ms	remaining: 377ms
26:	learn: 32.8899427	total: 138ms	remaining: 373ms
27:	learn: 32.6185050	total: 143ms	remaining: 369ms
28:	learn: 32.3528531	total: 149ms	remaining: 365ms
29:	learn: 32.0859923	total: 155ms	remaining: 361ms
30:	learn: 31.6511144	total: 160ms	remaining: 357ms
31:	learn: 31.2571765	total: 166ms	remaining: 353ms
32:	learn: 30.9770049	total: 172ms	remaining: 349ms
33:	learn: 30.6084872	total: 177ms	remaining: 343ms
34:	learn: 30.3448632	total: 182ms	remaining: 338ms
35:	learn: 30.0360942	total: 187ms	remaining: 332ms
36:	learn: 29.6648968	total: 191ms	remaining: 326ms
37:	learn: 29.3165114	total: 196ms	remaining: 320ms
38:	learn: 29.0829198	total: 201ms	remaining: 315ms
39:	learn: 28.7752064	total: 207ms	remaining: 310ms
40:	learn: 28.3622191	total: 211ms	remaining: 303ms
41:	learn: 28.1346631	total: 215ms	remaining: 296ms
42:	learn: 27.9585719	total: 219ms	remaining: 290ms
43:	learn: 27.6565566	total: 223ms	remaining: 284ms
44:	learn: 27.3616172	total: 227ms	remaining: 278ms
45:	learn: 27.0658637	total: 231ms	remaining: 271ms
46:	learn: 26.8660382	total: 235ms	remaining: 265ms
47:	learn: 26.6536078	total: 239ms	remaining: 259ms
48:	learn: 26.3524440	total: 243ms	remaining: 253ms
49:	learn: 26.1595277	total: 247ms	remaining: 247ms
50:	learn: 25.9273523	total: 252ms	remaining: 242ms
51:	learn: 25.7195580	total: 256ms	remaining: 236ms
52:	learn: 25.5730225	total: 260ms	remaining: 230ms
53:	learn: 25.3455276	total: 265ms	remaining: 225ms
54:	learn: 25.2289675	total: 270ms	remaining: 221ms
55:	learn: 25.0133024	total: 275ms	remaining: 216ms
56:	learn: 24.8406714	total: 279ms	remaining: 211ms
57:	learn: 24.6367857	total: 284ms	remaining: 206ms
58:	learn: 24.5338177	total: 289ms	remaining: 201ms
59:	learn: 24.3799964	total: 294ms	remaining: 196ms
60:	learn: 24.1447492	total: 299ms	remaining: 191ms
61:	learn: 23.9880495	total: 309ms	remaining: 189ms
62:	learn: 23.7140630	total: 318ms	remaining: 187ms
63:	learn: 23.5003791	total: 326ms	remaining: 183ms
64:	learn: 23.3207645	total: 334ms	remaining: 180ms
65:	learn: 23.1958356	total: 339ms	remaining: 175ms
66:	learn: 23.0471302	total: 355ms	remaining: 175ms
67:	learn: 22.8977183	total: 361ms	remaining: 170ms
68:	learn: 22.7187400	total: 367ms	remaining: 165ms
69:	learn: 22.6523405	total: 372ms	remaining: 159ms
70:	learn: 22.4767453	total: 378ms	remaining: 154ms
71:	learn: 22.3243677	total: 383ms	remaining: 149ms
72:	learn: 22.2133096	total: 388ms	remaining: 143ms
73:	learn: 22.1151713	total: 393ms	remaining: 138ms
74:	learn: 22.0296666	total: 399ms	remaining: 133ms
75:	learn: 21.9195980	total: 403ms	remaining: 127ms
76:	learn: 21.8401730	total: 407ms	remaining: 122ms
77:	learn: 21.8079797	total: 411ms	remaining: 116ms
78:	learn: 21.7274109	total: 416ms	remaining: 110ms
79:	learn: 21.6663032	total: 420ms	remaining: 105ms
80:	learn: 21.5633117	total: 424ms	remaining: 99.5ms
81:	learn: 21.4542467	total: 428ms	remaining: 94.1ms
82:	learn: 21.3177957	total: 433ms	remaining: 88.6ms
83:	learn: 21.1289167	total: 437ms	remaining: 83.3ms
84:	learn: 21.0297368	total: 442ms	remaining: 78ms
85:	learn: 20.9089564	total: 447ms	remaining: 72.7ms
86:	learn: 20.7653988	total: 451ms	remaining: 67.4ms
87:	learn: 20.6521894	total: 456ms	remaining: 62.1ms
88:	learn: 20.5193021	total: 460ms	remaining: 56.9ms
89:	learn: 20.4361620	total: 465ms	remaining: 51.7ms
90:	learn: 20.3546710	total: 470ms	remaining: 46.5ms
91:	learn: 20.2513296	total: 474ms	remaining: 41.3ms
92:	learn: 20.1605550	total: 479ms	remaining: 36.1ms
93:	learn: 20.0515942	total: 484ms	remaining: 30.9ms
94:	learn: 19.9800764	total: 489ms	remaining: 25.7ms
95:	learn: 19.8996532	total: 494ms	remaining: 20.6ms
96:	learn: 19.8450910	total: 502ms	remaining: 15.5ms
97:	learn: 19.7887346	total: 512ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 522ms	remaining: 5.27ms
99:	learn: 19.6328825	total: 531ms	remaining: 0us
0:	learn: 27.5585353	total: 5.17ms	remaining: 512ms
1:	learn: 27.1656995	total: 10.5ms	remaining: 515ms
2:	learn: 26.8590175	total: 16ms	remaining: 519ms
3:	learn: 26.5818406	total: 20ms	remaining: 480ms
4:	learn: 26.1148663	total: 24.1ms	remaining: 457ms
5:	learn: 25.7690484	total: 27.9ms	remaining: 438ms
6:	learn: 25.3489206	total: 32.1ms	remaining: 426ms
7:	learn: 24.9542406	total: 35.8ms	remaining: 412ms
8:	learn: 24.6777517	total: 40.3ms	remaining: 407ms
9:	learn: 24.3242344	total: 44.8ms	remaining: 403ms
10:	learn: 24.0383073	total: 48.7ms	remaining: 394ms
11:	learn: 23.7383420	total: 52.7ms	remaining: 386ms
12:	learn: 23.3461670	total: 56.8ms	remaining: 380ms
13:	learn: 23.0928636	total: 60.9ms	remaining: 374ms
14:	learn: 22.8770414	total: 64.8ms	remaining: 367ms
15:	learn: 22.6323214	total: 69.1ms	remaining: 363ms
16:	learn: 22.3597072	total: 73.5ms	remaining: 359ms
17:	learn: 22.1079813	total: 85.7ms	remaining: 391ms
18:	learn: 21.8421199	total: 90.2ms	remaining: 385ms
19:	learn: 21.6576508	total: 95.2ms	remaining: 381ms
20:	learn: 21.4301268	total: 99.6ms	remaining: 375ms
21:	learn: 21.2287388	total: 105ms	remaining: 371ms
22:	learn: 21.0553872	total: 113ms	remaining: 377ms
23:	learn: 20.8977091	total: 121ms	remaining: 382ms
24:	learn: 20.6619051	total: 129ms	remaining: 387ms
25:	learn: 20.5040955	total: 136ms	remaining: 388ms
26:	learn: 20.3181195	total: 141ms	remaining: 382ms
27:	learn: 20.0869436	total: 147ms	remaining: 377ms
28:	learn: 19.9375985	total: 152ms	remaining: 372ms
29:	learn: 19.8247516	total: 157ms	remaining: 367ms
30:	learn: 19.6261697	total: 163ms	remaining: 362ms
31:	learn: 19.4547236	total: 168ms	remaining: 356ms
32:	learn: 19.3157092	total: 173ms	remaining: 350ms
33:	learn: 19.1561419	total: 178ms	remaining: 345ms
34:	learn: 19.0453620	total: 182ms	remaining: 339ms
35:	learn: 18.8738574	total: 188ms	remaining: 334ms
36:	learn: 18.7072907	total: 193ms	remaining: 328ms
37:	learn: 18.5877943	total: 197ms	remaining: 322ms
38:	learn: 18.4436380	total: 203ms	remaining: 318ms
39:	learn: 18.3463356	total: 209ms	remaining: 314ms
40:	learn: 18.2008059	total: 213ms	remaining: 307ms
41:	learn: 18.0582079	total: 218ms	remaining: 300ms
42:	learn: 17.8891982	total: 222ms	remaining: 294ms
43:	learn: 17.7332246	total: 226ms	remaining: 288ms
44:	learn: 17.6206421	total: 230ms	remaining: 281ms
45:	learn: 17.4982800	total: 235ms	remaining: 275ms
46:	learn: 17.3970150	total: 238ms	remaining: 269ms
47:	learn: 17.3058203	total: 243ms	remaining: 263ms
48:	learn: 17.1789256	total: 247ms	remaining: 257ms
49:	learn: 17.0916229	total: 251ms	remaining: 251ms
50:	learn: 16.9859820	total: 256ms	remaining: 246ms
51:	learn: 16.8995582	total: 260ms	remaining: 240ms
52:	learn: 16.8137014	total: 263ms	remaining: 234ms
53:	learn: 16.7021451	total: 268ms	remaining: 228ms
54:	learn: 16.5895582	total: 272ms	remaining: 223ms
55:	learn: 16.5015639	total: 277ms	remaining: 217ms
56:	learn: 16.4356637	total: 281ms	remaining: 212ms
57:	learn: 16.3514525	total: 286ms	remaining: 207ms
58:	learn: 16.2401369	total: 290ms	remaining: 202ms
59:	learn: 16.1293223	total: 294ms	remaining: 196ms
60:	learn: 16.0271167	total: 299ms	remaining: 191ms
61:	learn: 15.9126257	total: 304ms	remaining: 186ms
62:	learn: 15.8391096	total: 312ms	remaining: 183ms
63:	learn: 15.7441773	total: 319ms	remaining: 180ms
64:	learn: 15.6885195	total: 329ms	remaining: 177ms
65:	learn: 15.6052039	total: 339ms	remaining: 175ms
66:	learn: 15.5074202	total: 344ms	remaining: 170ms
67:	learn: 15.4054338	total: 350ms	remaining: 165ms
68:	learn: 15.2885714	total: 356ms	remaining: 160ms
69:	learn: 15.2157472	total: 361ms	remaining: 155ms
70:	learn: 15.1031554	total: 366ms	remaining: 150ms
71:	learn: 15.0237470	total: 371ms	remaining: 144ms
72:	learn: 14.9756825	total: 377ms	remaining: 139ms
73:	learn: 14.8840596	total: 382ms	remaining: 134ms
74:	learn: 14.8077061	total: 387ms	remaining: 129ms
75:	learn: 14.7444437	total: 393ms	remaining: 124ms
76:	learn: 14.6751720	total: 397ms	remaining: 119ms
77:	learn: 14.5830333	total: 402ms	remaining: 113ms
78:	learn: 14.5241206	total: 408ms	remaining: 108ms
79:	learn: 14.4892731	total: 413ms	remaining: 103ms
80:	learn: 14.4256605	total: 416ms	remaining: 97.7ms
81:	learn: 14.3666860	total: 421ms	remaining: 92.3ms
82:	learn: 14.2938372	total: 426ms	remaining: 87.2ms
83:	learn: 14.2161532	total: 430ms	remaining: 81.9ms
84:	learn: 14.1582910	total: 434ms	remaining: 76.6ms
85:	learn: 14.1029153	total: 439ms	remaining: 71.4ms
86:	learn: 14.0475835	total: 443ms	remaining: 66.2ms
87:	learn: 13.9892661	total: 447ms	remaining: 61ms
88:	learn: 13.9481628	total: 451ms	remaining: 55.8ms
89:	learn: 13.8483991	total: 456ms	remaining: 50.6ms
90:	learn: 13.7775614	total: 460ms	remaining: 45.5ms
91:	learn: 13.7304585	total: 464ms	remaining: 40.4ms
92:	learn: 13.6783381	total: 468ms	remaining: 35.3ms
93:	learn: 13.6356964	total: 473ms	remaining: 30.2ms
94:	learn: 13.5924371	total: 478ms	remaining: 25.2ms
95:	learn: 13.5400746	total: 483ms	remaining: 20.1ms
96:	learn: 13.4897333	total: 488ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 492ms	remaining: 10ms
98:	learn: 13.3856082	total: 497ms	remaining: 5.02ms
99:	learn: 13.3082371	total: 501ms	remaining: 0us
0:	learn: 43.0395283	total: 5.83ms	remaining: 578ms
1:	learn: 42.1130223	total: 10.8ms	remaining: 531ms
2:	learn: 41.1753409	total: 16.1ms	remaining: 522ms
3:	learn: 40.3637444	total: 21.2ms	remaining: 509ms
4:	learn: 39.6508088	total: 25.7ms	remaining: 488ms
5:	learn: 38.7217934	total: 30.5ms	remaining: 478ms
6:	learn: 37.8538055	total: 36.2ms	remaining: 481ms
7:	learn: 36.9793574	total: 41.4ms	remaining: 476ms
8:	learn: 36.3076984	total: 45.5ms	remaining: 461ms
9:	learn: 35.6673160	total: 49.4ms	remaining: 445ms
10:	learn: 34.8889800	total: 53.5ms	remaining: 433ms
11:	learn: 34.1675517	total: 57.2ms	remaining: 420ms
12:	learn: 33.6779564	total: 61.4ms	remaining: 411ms
13:	learn: 33.0710039	total: 65.3ms	remaining: 401ms
14:	learn: 32.4966674	total: 69.4ms	remaining: 393ms
15:	learn: 31.9492856	total: 73.5ms	remaining: 386ms
16:	learn: 31.5108129	total: 77.7ms	remaining: 379ms
17:	learn: 30.9804023	total: 82ms	remaining: 374ms
18:	learn: 30.4169089	total: 86.6ms	remaining: 369ms
19:	learn: 29.8930375	total: 91.3ms	remaining: 365ms
20:	learn: 29.3974421	total: 95.7ms	remaining: 360ms
21:	learn: 28.8792307	total: 100ms	remaining: 355ms
22:	learn: 28.3894474	total: 105ms	remaining: 351ms
23:	learn: 27.9921276	total: 109ms	remaining: 347ms
24:	learn: 27.6158887	total: 114ms	remaining: 342ms
25:	learn: 27.2866950	total: 119ms	remaining: 338ms
26:	learn: 26.8770708	total: 123ms	remaining: 334ms
27:	learn: 26.6233005	total: 128ms	remaining: 328ms
28:	learn: 26.2921934	total: 132ms	remaining: 324ms
29:	learn: 25.9156920	total: 137ms	remaining: 319ms
30:	learn: 25.5311106	total: 139ms	remaining: 309ms
31:	learn: 25.2178997	total: 144ms	remaining: 306ms
32:	learn: 24.8572196	total: 152ms	remaining: 309ms
33:	learn: 24.5849710	total: 160ms	remaining: 310ms
34:	learn: 24.2209190	total: 168ms	remaining: 312ms
35:	learn: 23.8708250	total: 175ms	remaining: 312ms
36:	learn: 23.5325279	total: 181ms	remaining: 307ms
37:	learn: 23.2116148	total: 186ms	remaining: 303ms
38:	learn: 22.9696787	total: 191ms	remaining: 299ms
39:	learn: 22.7936783	total: 197ms	remaining: 295ms
40:	learn: 22.6228847	total: 202ms	remaining: 291ms
41:	learn: 22.3691527	total: 207ms	remaining: 286ms
42:	learn: 22.1002173	total: 212ms	remaining: 281ms
43:	learn: 21.9157268	total: 217ms	remaining: 276ms
44:	learn: 21.7229102	total: 222ms	remaining: 272ms
45:	learn: 21.4642005	total: 227ms	remaining: 266ms
46:	learn: 21.3029442	total: 231ms	remaining: 260ms
47:	learn: 21.1469792	total: 235ms	remaining: 254ms
48:	learn: 20.9458235	total: 239ms	remaining: 249ms
49:	learn: 20.7335242	total: 244ms	remaining: 244ms
50:	learn: 20.5440269	total: 247ms	remaining: 238ms
51:	learn: 20.3661449	total: 251ms	remaining: 232ms
52:	learn: 20.2158134	total: 255ms	remaining: 226ms
53:	learn: 19.9934873	total: 259ms	remaining: 221ms
54:	learn: 19.7879739	total: 264ms	remaining: 216ms
55:	learn: 19.6630460	total: 268ms	remaining: 210ms
56:	learn: 19.5152729	total: 272ms	remaining: 205ms
57:	learn: 19.3581128	total: 276ms	remaining: 200ms
58:	learn: 19.2209303	total: 281ms	remaining: 195ms
59:	learn: 19.0965248	total: 285ms	remaining: 190ms
60:	learn: 19.0035954	total: 290ms	remaining: 185ms
61:	learn: 18.8554149	total: 294ms	remaining: 180ms
62:	learn: 18.7095427	total: 299ms	remaining: 175ms
63:	learn: 18.5751494	total: 303ms	remaining: 170ms
64:	learn: 18.4678251	total: 307ms	remaining: 166ms
65:	learn: 18.3500325	total: 312ms	remaining: 161ms
66:	learn: 18.2088983	total: 317ms	remaining: 156ms
67:	learn: 18.0737705	total: 321ms	remaining: 151ms
68:	learn: 17.9325058	total: 328ms	remaining: 147ms
69:	learn: 17.8003911	total: 335ms	remaining: 144ms
70:	learn: 17.7385366	total: 342ms	remaining: 140ms
71:	learn: 17.6106998	total: 349ms	remaining: 136ms
72:	learn: 17.4816270	total: 357ms	remaining: 132ms
73:	learn: 17.4025554	total: 362ms	remaining: 127ms
74:	learn: 17.2902108	total: 368ms	remaining: 123ms
75:	learn: 17.2158048	total: 374ms	remaining: 118ms
76:	learn: 17.1261053	total: 379ms	remaining: 113ms
77:	learn: 17.0308917	total: 384ms	remaining: 108ms
78:	learn: 16.9546705	total: 390ms	remaining: 104ms
79:	learn: 16.8319165	total: 395ms	remaining: 98.7ms
80:	learn: 16.7687017	total: 400ms	remaining: 93.8ms
81:	learn: 16.6972326	total: 412ms	remaining: 90.5ms
82:	learn: 16.6124580	total: 417ms	remaining: 85.3ms
83:	learn: 16.4999052	total: 421ms	remaining: 80.2ms
84:	learn: 16.4302484	total: 426ms	remaining: 75.1ms
85:	learn: 16.3201363	total: 431ms	remaining: 70.1ms
86:	learn: 16.2534314	total: 436ms	remaining: 65.2ms
87:	learn: 16.1720485	total: 441ms	remaining: 60.2ms
88:	learn: 16.0625751	total: 445ms	remaining: 55ms
89:	learn: 15.9135088	total: 449ms	remaining: 49.9ms
90:	learn: 15.8658863	total: 453ms	remaining: 44.8ms
91:	learn: 15.8066805	total: 458ms	remaining: 39.8ms
92:	learn: 15.7412103	total: 462ms	remaining: 34.8ms
93:	learn: 15.6542776	total: 467ms	remaining: 29.8ms
94:	learn: 15.5760334	total: 471ms	remaining: 24.8ms
95:	learn: 15.5434131	total: 475ms	remaining: 19.8ms
96:	learn: 15.4709561	total: 480ms	remaining: 14.8ms
97:	learn: 15.4449618	total: 483ms	remaining: 9.87ms
98:	learn: 15.3752761	total: 488ms	remaining: 4.93ms
99:	learn: 15.3106595	total: 493ms	remaining: 0us
0:	learn: 46.7142257	total: 5.93ms	remaining: 588ms
1:	learn: 45.7634153	total: 11.3ms	remaining: 553ms
2:	learn: 45.0054253	total: 16.7ms	remaining: 539ms
3:	learn: 44.2120432	total: 21.8ms	remaining: 524ms
4:	learn: 43.3960472	total: 26.8ms	remaining: 509ms
5:	learn: 42.8588120	total: 32.1ms	remaining: 503ms
6:	learn: 41.9533701	total: 37.4ms	remaining: 496ms
7:	learn: 41.2745030	total: 42.4ms	remaining: 488ms
8:	learn: 40.6797495	total: 47.4ms	remaining: 479ms
9:	learn: 39.9899571	total: 52.7ms	remaining: 475ms
10:	learn: 39.4682100	total: 58.1ms	remaining: 470ms
11:	learn: 39.0305595	total: 63.4ms	remaining: 465ms
12:	learn: 38.4200417	total: 69.4ms	remaining: 465ms
13:	learn: 37.8425194	total: 74.4ms	remaining: 457ms
14:	learn: 37.4203127	total: 78.4ms	remaining: 444ms
15:	learn: 36.9917688	total: 82.6ms	remaining: 434ms
16:	learn: 36.5544138	total: 86.6ms	remaining: 423ms
17:	learn: 36.0727019	total: 90.6ms	remaining: 413ms
18:	learn: 35.4835715	total: 94.5ms	remaining: 403ms
19:	learn: 34.9865654	total: 98.8ms	remaining: 395ms
20:	learn: 34.6063373	total: 103ms	remaining: 386ms
21:	learn: 34.0997289	total: 107ms	remaining: 379ms
22:	learn: 33.7313171	total: 111ms	remaining: 373ms
23:	learn: 33.3582000	total: 116ms	remaining: 368ms
24:	learn: 32.9432456	total: 120ms	remaining: 361ms
25:	learn: 32.5220888	total: 125ms	remaining: 356ms
26:	learn: 32.2172292	total: 130ms	remaining: 352ms
27:	learn: 31.8972904	total: 135ms	remaining: 348ms
28:	learn: 31.6405350	total: 140ms	remaining: 342ms
29:	learn: 31.4167702	total: 144ms	remaining: 336ms
30:	learn: 30.8541961	total: 146ms	remaining: 325ms
31:	learn: 30.5572111	total: 151ms	remaining: 320ms
32:	learn: 30.1700399	total: 155ms	remaining: 315ms
33:	learn: 29.8537271	total: 160ms	remaining: 311ms
34:	learn: 29.6192540	total: 165ms	remaining: 306ms
35:	learn: 29.3276362	total: 169ms	remaining: 301ms
36:	learn: 28.9985179	total: 174ms	remaining: 297ms
37:	learn: 28.7046880	total: 183ms	remaining: 298ms
38:	learn: 28.4412677	total: 190ms	remaining: 298ms
39:	learn: 28.1277292	total: 199ms	remaining: 298ms
40:	learn: 27.9000750	total: 205ms	remaining: 295ms
41:	learn: 27.5433162	total: 211ms	remaining: 292ms
42:	learn: 27.2493285	total: 216ms	remaining: 287ms
43:	learn: 26.9576632	total: 218ms	remaining: 278ms
44:	learn: 26.6177110	total: 224ms	remaining: 273ms
45:	learn: 26.2812456	total: 229ms	remaining: 269ms
46:	learn: 26.0803859	total: 234ms	remaining: 264ms
47:	learn: 25.9543581	total: 239ms	remaining: 259ms
48:	learn: 25.7951582	total: 244ms	remaining: 254ms
49:	learn: 25.6548184	total: 249ms	remaining: 249ms
50:	learn: 25.4010843	total: 254ms	remaining: 244ms
51:	learn: 24.9773937	total: 259ms	remaining: 239ms
52:	learn: 24.8026156	total: 265ms	remaining: 235ms
53:	learn: 24.5568053	total: 270ms	remaining: 230ms
54:	learn: 24.2281839	total: 275ms	remaining: 225ms
55:	learn: 23.9202795	total: 280ms	remaining: 220ms
56:	learn: 23.7625591	total: 285ms	remaining: 215ms
57:	learn: 23.5429721	total: 289ms	remaining: 209ms
58:	learn: 23.3175893	total: 293ms	remaining: 204ms
59:	learn: 23.2035130	total: 298ms	remaining: 198ms
60:	learn: 23.0232450	total: 302ms	remaining: 193ms
61:	learn: 22.8384958	total: 306ms	remaining: 188ms
62:	learn: 22.6499902	total: 311ms	remaining: 183ms
63:	learn: 22.4577426	total: 315ms	remaining: 177ms
64:	learn: 22.3333158	total: 320ms	remaining: 172ms
65:	learn: 22.2064131	total: 324ms	remaining: 167ms
66:	learn: 22.1434971	total: 328ms	remaining: 162ms
67:	learn: 21.9596519	total: 332ms	remaining: 156ms
68:	learn: 21.8475576	total: 337ms	remaining: 151ms
69:	learn: 21.6954745	total: 342ms	remaining: 146ms
70:	learn: 21.5635976	total: 346ms	remaining: 141ms
71:	learn: 21.4588506	total: 351ms	remaining: 136ms
72:	learn: 21.3527268	total: 355ms	remaining: 131ms
73:	learn: 21.2661288	total: 361ms	remaining: 127ms
74:	learn: 21.1817333	total: 366ms	remaining: 122ms
75:	learn: 21.0527553	total: 371ms	remaining: 117ms
76:	learn: 20.9229021	total: 377ms	remaining: 113ms
77:	learn: 20.7563946	total: 387ms	remaining: 109ms
78:	learn: 20.6569831	total: 395ms	remaining: 105ms
79:	learn: 20.4982663	total: 407ms	remaining: 102ms
80:	learn: 20.3185460	total: 415ms	remaining: 97.4ms
81:	learn: 20.2096241	total: 421ms	remaining: 92.4ms
82:	learn: 20.1274891	total: 426ms	remaining: 87.2ms
83:	learn: 20.0740139	total: 431ms	remaining: 82.1ms
84:	learn: 19.9630699	total: 437ms	remaining: 77ms
85:	learn: 19.8753899	total: 442ms	remaining: 72ms
86:	learn: 19.6563612	total: 448ms	remaining: 67ms
87:	learn: 19.4680232	total: 454ms	remaining: 61.8ms
88:	learn: 19.3503431	total: 459ms	remaining: 56.7ms
89:	learn: 19.2221379	total: 465ms	remaining: 51.6ms
90:	learn: 19.0732542	total: 470ms	remaining: 46.5ms
91:	learn: 18.9825190	total: 475ms	remaining: 41.3ms
92:	learn: 18.8839009	total: 481ms	remaining: 36.2ms
93:	learn: 18.8012219	total: 486ms	remaining: 31ms
94:	learn: 18.7172713	total: 491ms	remaining: 25.8ms
95:	learn: 18.6201170	total: 496ms	remaining: 20.7ms
96:	learn: 18.5318611	total: 501ms	remaining: 15.5ms
97:	learn: 18.3833356	total: 505ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 510ms	remaining: 5.15ms
99:	learn: 18.2227333	total: 514ms	remaining: 0us
0:	learn: 46.3764524	total: 5.25ms	remaining: 520ms
1:	learn: 45.5561269	total: 9.72ms	remaining: 476ms
2:	learn: 44.8811245	total: 13.8ms	remaining: 445ms
3:	learn: 44.0788617	total: 18.1ms	remaining: 434ms
4:	learn: 43.3619790	total: 22.8ms	remaining: 433ms
5:	learn: 42.6912112	total: 31.2ms	remaining: 488ms
6:	learn: 42.2292118	total: 39.4ms	remaining: 523ms
7:	learn: 41.7725191	total: 47.9ms	remaining: 551ms
8:	learn: 41.1676614	total: 55.2ms	remaining: 558ms
9:	learn: 40.5771076	total: 60.2ms	remaining: 541ms
10:	learn: 39.8343757	total: 65.3ms	remaining: 529ms
11:	learn: 39.3761142	total: 70.5ms	remaining: 517ms
12:	learn: 38.5254692	total: 75.7ms	remaining: 507ms
13:	learn: 37.9629555	total: 80.7ms	remaining: 496ms
14:	learn: 37.4418438	total: 85.7ms	remaining: 486ms
15:	learn: 37.0507283	total: 90.8ms	remaining: 477ms
16:	learn: 36.6264217	total: 95.7ms	remaining: 467ms
17:	learn: 36.1114940	total: 101ms	remaining: 458ms
18:	learn: 35.7193862	total: 106ms	remaining: 451ms
19:	learn: 35.3301177	total: 111ms	remaining: 443ms
20:	learn: 35.0598280	total: 116ms	remaining: 435ms
21:	learn: 34.5469736	total: 121ms	remaining: 429ms
22:	learn: 34.2064215	total: 127ms	remaining: 424ms
23:	learn: 33.7280710	total: 132ms	remaining: 417ms
24:	learn: 33.3282940	total: 136ms	remaining: 407ms
25:	learn: 32.8478961	total: 140ms	remaining: 399ms
26:	learn: 32.5722164	total: 145ms	remaining: 392ms
27:	learn: 32.2457019	total: 149ms	remaining: 383ms
28:	learn: 31.9230495	total: 153ms	remaining: 374ms
29:	learn: 31.4311611	total: 157ms	remaining: 366ms
30:	learn: 30.9179052	total: 161ms	remaining: 359ms
31:	learn: 30.6201141	total: 165ms	remaining: 351ms
32:	learn: 30.3421106	total: 169ms	remaining: 343ms
33:	learn: 29.9885373	total: 173ms	remaining: 336ms
34:	learn: 29.7462780	total: 177ms	remaining: 329ms
35:	learn: 29.3607153	total: 181ms	remaining: 321ms
36:	learn: 29.1793078	total: 185ms	remaining: 314ms
37:	learn: 28.9276538	total: 189ms	remaining: 309ms
38:	learn: 28.6903934	total: 194ms	remaining: 303ms
39:	learn: 28.2095033	total: 198ms	remaining: 297ms
40:	learn: 27.7990608	total: 203ms	remaining: 292ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 212ms	remaining: 281ms
43:	learn: 26.9741707	total: 216ms	remaining: 276ms
44:	learn: 26.6606899	total: 222ms	remaining: 271ms
45:	learn: 26.4015833	total: 226ms	remaining: 266ms
46:	learn: 26.1828993	total: 231ms	remaining: 261ms
47:	learn: 26.0233709	total: 234ms	remaining: 253ms
48:	learn: 25.9300399	total: 239ms	remaining: 248ms
49:	learn: 25.5861489	total: 243ms	remaining: 243ms
50:	learn: 25.4322012	total: 248ms	remaining: 238ms
51:	learn: 25.1595644	total: 264ms	remaining: 244ms
52:	learn: 24.9955303	total: 272ms	remaining: 241ms
53:	learn: 24.7273966	total: 279ms	remaining: 238ms
54:	learn: 24.5747978	total: 287ms	remaining: 235ms
55:	learn: 24.3807977	total: 293ms	remaining: 230ms
56:	learn: 24.1689569	total: 298ms	remaining: 225ms
57:	learn: 23.9898221	total: 304ms	remaining: 220ms
58:	learn: 23.7566414	total: 310ms	remaining: 215ms
59:	learn: 23.6641165	total: 315ms	remaining: 210ms
60:	learn: 23.5658066	total: 320ms	remaining: 205ms
61:	learn: 23.4338851	total: 326ms	remaining: 200ms
62:	learn: 23.2408837	total: 331ms	remaining: 194ms
63:	learn: 23.0642038	total: 336ms	remaining: 189ms
64:	learn: 22.9032045	total: 342ms	remaining: 184ms
65:	learn: 22.7736138	total: 346ms	remaining: 178ms
66:	learn: 22.6836443	total: 352ms	remaining: 173ms
67:	learn: 22.5983654	total: 358ms	remaining: 168ms
68:	learn: 22.4419813	total: 362ms	remaining: 163ms
69:	learn: 22.2863339	total: 367ms	remaining: 157ms
70:	learn: 22.1792943	total: 371ms	remaining: 152ms
71:	learn: 22.1130574	total: 376ms	remaining: 146ms
72:	learn: 21.9858161	total: 381ms	remaining: 141ms
73:	learn: 21.8577784	total: 385ms	remaining: 135ms
74:	learn: 21.7845222	total: 390ms	remaining: 130ms
75:	learn: 21.6831390	total: 394ms	remaining: 125ms
76:	learn: 21.6292521	total: 399ms	remaining: 119ms
77:	learn: 21.5789330	total: 404ms	remaining: 114ms
78:	learn: 21.5420942	total: 408ms	remaining: 109ms
79:	learn: 21.4280939	total: 413ms	remaining: 103ms
80:	learn: 21.3641165	total: 418ms	remaining: 98ms
81:	learn: 21.2734814	total: 423ms	remaining: 92.8ms
82:	learn: 21.2220323	total: 427ms	remaining: 87.6ms
83:	learn: 21.0625792	total: 432ms	remaining: 82.4ms
84:	learn: 20.9488320	total: 437ms	remaining: 77.1ms
85:	learn: 20.8504255	total: 441ms	remaining: 71.8ms
86:	learn: 20.7848510	total: 445ms	remaining: 66.6ms
87:	learn: 20.7247442	total: 450ms	remaining: 61.3ms
88:	learn: 20.5698590	total: 455ms	remaining: 56.2ms
89:	learn: 20.4067620	total: 464ms	remaining: 51.5ms
90:	learn: 20.3062482	total: 471ms	remaining: 46.6ms
91:	learn: 20.2029696	total: 479ms	remaining: 41.7ms
92:	learn: 20.1384849	total: 490ms	remaining: 36.8ms
93:	learn: 20.0260709	total: 495ms	remaining: 31.6ms
94:	learn: 19.9122100	total: 501ms	remaining: 26.3ms
95:	learn: 19.8648487	total: 506ms	remaining: 21.1ms
96:	learn: 19.8207072	total: 511ms	remaining: 15.8ms
97:	learn: 19.7261189	total: 516ms	remaining: 10.5ms
98:	learn: 19.7042438	total: 522ms	remaining: 5.27ms
99:	learn: 19.6546645	total: 527ms	remaining: 0us
0:	learn: 47.0239288	total: 4.85ms	remaining: 481ms
1:	learn: 46.2253829	total: 9.26ms	remaining: 454ms
2:	learn: 45.5580301	total: 13.8ms	remaining: 447ms
3:	learn: 44.7273237	total: 18.5ms	remaining: 444ms
4:	learn: 43.8867421	total: 22.7ms	remaining: 431ms
5:	learn: 43.3615911	total: 27.4ms	remaining: 429ms
6:	learn: 42.8548390	total: 32ms	remaining: 425ms
7:	learn: 42.1606758	total: 36.1ms	remaining: 416ms
8:	learn: 41.6625870	total: 40.8ms	remaining: 412ms
9:	learn: 40.9497092	total: 45.5ms	remaining: 409ms
10:	learn: 40.1886318	total: 50.2ms	remaining: 406ms
11:	learn: 39.7456423	total: 55.4ms	remaining: 406ms
12:	learn: 39.1171373	total: 60.1ms	remaining: 403ms
13:	learn: 38.5451069	total: 64.8ms	remaining: 398ms
14:	learn: 38.0155834	total: 69.5ms	remaining: 394ms
15:	learn: 37.5631354	total: 74.8ms	remaining: 393ms
16:	learn: 37.1030023	total: 81.3ms	remaining: 397ms
17:	learn: 36.4563029	total: 88.2ms	remaining: 402ms
18:	learn: 36.0160976	total: 95.2ms	remaining: 406ms
19:	learn: 35.5079827	total: 103ms	remaining: 414ms
20:	learn: 35.2111885	total: 112ms	remaining: 420ms
21:	learn: 34.9397465	total: 117ms	remaining: 414ms
22:	learn: 34.5270048	total: 122ms	remaining: 409ms
23:	learn: 34.0169260	total: 128ms	remaining: 405ms
24:	learn: 33.7454892	total: 133ms	remaining: 398ms
25:	learn: 33.2648157	total: 138ms	remaining: 392ms
26:	learn: 32.8899427	total: 143ms	remaining: 387ms
27:	learn: 32.6185050	total: 148ms	remaining: 381ms
28:	learn: 32.3528531	total: 153ms	remaining: 375ms
29:	learn: 32.0859923	total: 158ms	remaining: 370ms
30:	learn: 31.6511144	total: 163ms	remaining: 364ms
31:	learn: 31.2571765	total: 169ms	remaining: 358ms
32:	learn: 30.9770049	total: 173ms	remaining: 352ms
33:	learn: 30.6084872	total: 179ms	remaining: 348ms
34:	learn: 30.3448632	total: 185ms	remaining: 343ms
35:	learn: 30.0360942	total: 189ms	remaining: 336ms
36:	learn: 29.6648968	total: 193ms	remaining: 329ms
37:	learn: 29.3165114	total: 197ms	remaining: 322ms
38:	learn: 29.0829198	total: 202ms	remaining: 315ms
39:	learn: 28.7752064	total: 206ms	remaining: 309ms
40:	learn: 28.3622191	total: 210ms	remaining: 302ms
41:	learn: 28.1346631	total: 214ms	remaining: 296ms
42:	learn: 27.9585719	total: 219ms	remaining: 290ms
43:	learn: 27.6565566	total: 224ms	remaining: 285ms
44:	learn: 27.3616172	total: 229ms	remaining: 280ms
45:	learn: 27.0658637	total: 234ms	remaining: 274ms
46:	learn: 26.8660382	total: 239ms	remaining: 269ms
47:	learn: 26.6536078	total: 244ms	remaining: 265ms
48:	learn: 26.3524440	total: 250ms	remaining: 260ms
49:	learn: 26.1595277	total: 255ms	remaining: 255ms
50:	learn: 25.9273523	total: 260ms	remaining: 249ms
51:	learn: 25.7195580	total: 264ms	remaining: 244ms
52:	learn: 25.5730225	total: 270ms	remaining: 239ms
53:	learn: 25.3455276	total: 275ms	remaining: 234ms
54:	learn: 25.2289675	total: 280ms	remaining: 229ms
55:	learn: 25.0133024	total: 288ms	remaining: 226ms
56:	learn: 24.8406714	total: 295ms	remaining: 222ms
57:	learn: 24.6367857	total: 303ms	remaining: 219ms
58:	learn: 24.5338177	total: 308ms	remaining: 214ms
59:	learn: 24.3799964	total: 316ms	remaining: 211ms
60:	learn: 24.1447492	total: 321ms	remaining: 206ms
61:	learn: 23.9880495	total: 326ms	remaining: 200ms
62:	learn: 23.7140630	total: 331ms	remaining: 195ms
63:	learn: 23.5003791	total: 337ms	remaining: 189ms
64:	learn: 23.3207645	total: 342ms	remaining: 184ms
65:	learn: 23.1958356	total: 347ms	remaining: 179ms
66:	learn: 23.0471302	total: 352ms	remaining: 173ms
67:	learn: 22.8977183	total: 357ms	remaining: 168ms
68:	learn: 22.7187400	total: 363ms	remaining: 163ms
69:	learn: 22.6523405	total: 367ms	remaining: 157ms
70:	learn: 22.4767453	total: 372ms	remaining: 152ms
71:	learn: 22.3243677	total: 376ms	remaining: 146ms
72:	learn: 22.2133096	total: 381ms	remaining: 141ms
73:	learn: 22.1151713	total: 386ms	remaining: 136ms
74:	learn: 22.0296666	total: 392ms	remaining: 131ms
75:	learn: 21.9195980	total: 396ms	remaining: 125ms
76:	learn: 21.8401730	total: 401ms	remaining: 120ms
77:	learn: 21.8079797	total: 405ms	remaining: 114ms
78:	learn: 21.7274109	total: 409ms	remaining: 109ms
79:	learn: 21.6663032	total: 413ms	remaining: 103ms
80:	learn: 21.5633117	total: 418ms	remaining: 98ms
81:	learn: 21.4542467	total: 422ms	remaining: 92.6ms
82:	learn: 21.3177957	total: 427ms	remaining: 87.4ms
83:	learn: 21.1289167	total: 431ms	remaining: 82ms
84:	learn: 21.0297368	total: 435ms	remaining: 76.7ms
85:	learn: 20.9089564	total: 439ms	remaining: 71.4ms
86:	learn: 20.7653988	total: 443ms	remaining: 66.2ms
87:	learn: 20.6521894	total: 448ms	remaining: 61ms
88:	learn: 20.5193021	total: 452ms	remaining: 55.9ms
89:	learn: 20.4361620	total: 456ms	remaining: 50.7ms
90:	learn: 20.3546710	total: 461ms	remaining: 45.6ms
91:	learn: 20.2513296	total: 465ms	remaining: 40.5ms
92:	learn: 20.1605550	total: 470ms	remaining: 35.4ms
93:	learn: 20.0515942	total: 474ms	remaining: 30.3ms
94:	learn: 19.9800764	total: 481ms	remaining: 25.3ms
95:	learn: 19.8996532	total: 489ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 496ms	remaining: 15.3ms
97:	learn: 19.7887346	total: 502ms	remaining: 10.3ms
98:	learn: 19.7230872	total: 510ms	remaining: 5.15ms
99:	learn: 19.6328825	total: 515ms	remaining: 0us
0:	learn: 27.5585353	total: 5.6ms	remaining: 554ms
1:	learn: 27.1656995	total: 10.5ms	remaining: 513ms
2:	learn: 26.8590175	total: 14.6ms	remaining: 471ms
3:	learn: 26.5818406	total: 18.5ms	remaining: 445ms
4:	learn: 26.1148663	total: 22.5ms	remaining: 427ms
5:	learn: 25.7690484	total: 26.4ms	remaining: 413ms
6:	learn: 25.3489206	total: 30.5ms	remaining: 406ms
7:	learn: 24.9542406	total: 34.7ms	remaining: 399ms
8:	learn: 24.6777517	total: 38.9ms	remaining: 393ms
9:	learn: 24.3242344	total: 43ms	remaining: 387ms
10:	learn: 24.0383073	total: 47ms	remaining: 380ms
11:	learn: 23.7383420	total: 51.3ms	remaining: 376ms
12:	learn: 23.3461670	total: 55ms	remaining: 368ms
13:	learn: 23.0928636	total: 59ms	remaining: 362ms
14:	learn: 22.8770414	total: 63.1ms	remaining: 357ms
15:	learn: 22.6323214	total: 67.6ms	remaining: 355ms
16:	learn: 22.3597072	total: 72ms	remaining: 352ms
17:	learn: 22.1079813	total: 75.8ms	remaining: 345ms
18:	learn: 21.8421199	total: 80.3ms	remaining: 342ms
19:	learn: 21.6576508	total: 84.9ms	remaining: 340ms
20:	learn: 21.4301268	total: 89.2ms	remaining: 336ms
21:	learn: 21.2287388	total: 93.8ms	remaining: 333ms
22:	learn: 21.0553872	total: 98.3ms	remaining: 329ms
23:	learn: 20.8977091	total: 103ms	remaining: 326ms
24:	learn: 20.6619051	total: 107ms	remaining: 321ms
25:	learn: 20.5040955	total: 111ms	remaining: 317ms
26:	learn: 20.3181195	total: 118ms	remaining: 320ms
27:	learn: 20.0869436	total: 125ms	remaining: 322ms
28:	learn: 19.9375985	total: 134ms	remaining: 327ms
29:	learn: 19.8247516	total: 141ms	remaining: 329ms
30:	learn: 19.6261697	total: 149ms	remaining: 331ms
31:	learn: 19.4547236	total: 154ms	remaining: 327ms
32:	learn: 19.3157092	total: 159ms	remaining: 323ms
33:	learn: 19.1561419	total: 164ms	remaining: 319ms
34:	learn: 19.0453620	total: 170ms	remaining: 316ms
35:	learn: 18.8738574	total: 176ms	remaining: 313ms
36:	learn: 18.7072907	total: 181ms	remaining: 309ms
37:	learn: 18.5877943	total: 187ms	remaining: 304ms
38:	learn: 18.4436380	total: 192ms	remaining: 301ms
39:	learn: 18.3463356	total: 197ms	remaining: 296ms
40:	learn: 18.2008059	total: 202ms	remaining: 291ms
41:	learn: 18.0582079	total: 213ms	remaining: 295ms
42:	learn: 17.8891982	total: 218ms	remaining: 289ms
43:	learn: 17.7332246	total: 222ms	remaining: 283ms
44:	learn: 17.6206421	total: 227ms	remaining: 277ms
45:	learn: 17.4982800	total: 231ms	remaining: 271ms
46:	learn: 17.3970150	total: 234ms	remaining: 264ms
47:	learn: 17.3058203	total: 239ms	remaining: 259ms
48:	learn: 17.1789256	total: 243ms	remaining: 253ms
49:	learn: 17.0916229	total: 247ms	remaining: 247ms
50:	learn: 16.9859820	total: 251ms	remaining: 241ms
51:	learn: 16.8995582	total: 255ms	remaining: 236ms
52:	learn: 16.8137014	total: 259ms	remaining: 230ms
53:	learn: 16.7021451	total: 263ms	remaining: 224ms
54:	learn: 16.5895582	total: 267ms	remaining: 219ms
55:	learn: 16.5015639	total: 271ms	remaining: 213ms
56:	learn: 16.4356637	total: 276ms	remaining: 208ms
57:	learn: 16.3514525	total: 280ms	remaining: 203ms
58:	learn: 16.2401369	total: 284ms	remaining: 197ms
59:	learn: 16.1293223	total: 288ms	remaining: 192ms
60:	learn: 16.0271167	total: 293ms	remaining: 187ms
61:	learn: 15.9126257	total: 298ms	remaining: 182ms
62:	learn: 15.8391096	total: 302ms	remaining: 177ms
63:	learn: 15.7441773	total: 306ms	remaining: 172ms
64:	learn: 15.6885195	total: 311ms	remaining: 167ms
65:	learn: 15.6052039	total: 315ms	remaining: 162ms
66:	learn: 15.5074202	total: 319ms	remaining: 157ms
67:	learn: 15.4054338	total: 324ms	remaining: 152ms
68:	learn: 15.2885714	total: 332ms	remaining: 149ms
69:	learn: 15.2157472	total: 339ms	remaining: 145ms
70:	learn: 15.1031554	total: 348ms	remaining: 142ms
71:	learn: 15.0237470	total: 353ms	remaining: 137ms
72:	learn: 14.9756825	total: 361ms	remaining: 133ms
73:	learn: 14.8840596	total: 380ms	remaining: 133ms
74:	learn: 14.8077061	total: 385ms	remaining: 128ms
75:	learn: 14.7444437	total: 390ms	remaining: 123ms
76:	learn: 14.6751720	total: 395ms	remaining: 118ms
77:	learn: 14.5830333	total: 401ms	remaining: 113ms
78:	learn: 14.5241206	total: 406ms	remaining: 108ms
79:	learn: 14.4892731	total: 410ms	remaining: 103ms
80:	learn: 14.4256605	total: 416ms	remaining: 97.5ms
81:	learn: 14.3666860	total: 421ms	remaining: 92.4ms
82:	learn: 14.2938372	total: 426ms	remaining: 87.3ms
83:	learn: 14.2161532	total: 430ms	remaining: 82ms
84:	learn: 14.1582910	total: 435ms	remaining: 76.7ms
85:	learn: 14.1029153	total: 439ms	remaining: 71.5ms
86:	learn: 14.0475835	total: 443ms	remaining: 66.3ms
87:	learn: 13.9892661	total: 447ms	remaining: 61ms
88:	learn: 13.9481628	total: 452ms	remaining: 55.9ms
89:	learn: 13.8483991	total: 456ms	remaining: 50.7ms
90:	learn: 13.7775614	total: 460ms	remaining: 45.5ms
91:	learn: 13.7304585	total: 465ms	remaining: 40.4ms
92:	learn: 13.6783381	total: 469ms	remaining: 35.3ms
93:	learn: 13.6356964	total: 473ms	remaining: 30.2ms
94:	learn: 13.5924371	total: 478ms	remaining: 25.1ms
95:	learn: 13.5400746	total: 482ms	remaining: 20.1ms
96:	learn: 13.4897333	total: 486ms	remaining: 15ms
97:	learn: 13.4470321	total: 491ms	remaining: 10ms
98:	learn: 13.3856082	total: 495ms	remaining: 5ms
99:	learn: 13.3082371	total: 500ms	remaining: 0us
0:	learn: 43.0395283	total: 6.72ms	remaining: 665ms
1:	learn: 42.1130223	total: 13.9ms	remaining: 683ms
2:	learn: 41.1753409	total: 19ms	remaining: 616ms
3:	learn: 40.3637444	total: 24.2ms	remaining: 581ms
4:	learn: 39.6508088	total: 29.4ms	remaining: 558ms
5:	learn: 38.7217934	total: 34.4ms	remaining: 538ms
6:	learn: 37.8538055	total: 39.5ms	remaining: 525ms
7:	learn: 36.9793574	total: 44.9ms	remaining: 516ms
8:	learn: 36.3076984	total: 50ms	remaining: 506ms
9:	learn: 35.6673160	total: 55.4ms	remaining: 499ms
10:	learn: 34.8889800	total: 60.8ms	remaining: 492ms
11:	learn: 34.1675517	total: 65.8ms	remaining: 483ms
12:	learn: 33.6779564	total: 70.6ms	remaining: 473ms
13:	learn: 33.0710039	total: 75.8ms	remaining: 466ms
14:	learn: 32.4966674	total: 81.8ms	remaining: 464ms
15:	learn: 31.9492856	total: 87.2ms	remaining: 458ms
16:	learn: 31.5108129	total: 91.5ms	remaining: 447ms
17:	learn: 30.9804023	total: 96.3ms	remaining: 439ms
18:	learn: 30.4169089	total: 101ms	remaining: 430ms
19:	learn: 29.8930375	total: 105ms	remaining: 421ms
20:	learn: 29.3974421	total: 110ms	remaining: 413ms
21:	learn: 28.8792307	total: 114ms	remaining: 404ms
22:	learn: 28.3894474	total: 118ms	remaining: 396ms
23:	learn: 27.9921276	total: 122ms	remaining: 386ms
24:	learn: 27.6158887	total: 126ms	remaining: 378ms
25:	learn: 27.2866950	total: 130ms	remaining: 371ms
26:	learn: 26.8770708	total: 134ms	remaining: 364ms
27:	learn: 26.6233005	total: 138ms	remaining: 355ms
28:	learn: 26.2921934	total: 142ms	remaining: 348ms
29:	learn: 25.9156920	total: 163ms	remaining: 379ms
30:	learn: 25.5311106	total: 164ms	remaining: 366ms
31:	learn: 25.2178997	total: 169ms	remaining: 359ms
32:	learn: 24.8572196	total: 174ms	remaining: 353ms
33:	learn: 24.5849710	total: 178ms	remaining: 346ms
34:	learn: 24.2209190	total: 183ms	remaining: 339ms
35:	learn: 23.8708250	total: 187ms	remaining: 333ms
36:	learn: 23.5325279	total: 192ms	remaining: 326ms
37:	learn: 23.2116148	total: 196ms	remaining: 320ms
38:	learn: 22.9696787	total: 205ms	remaining: 320ms
39:	learn: 22.7936783	total: 212ms	remaining: 318ms
40:	learn: 22.6228847	total: 221ms	remaining: 318ms
41:	learn: 22.3691527	total: 228ms	remaining: 314ms
42:	learn: 22.1002173	total: 234ms	remaining: 310ms
43:	learn: 21.9157268	total: 239ms	remaining: 304ms
44:	learn: 21.7229102	total: 244ms	remaining: 298ms
45:	learn: 21.4642005	total: 249ms	remaining: 292ms
46:	learn: 21.3029442	total: 254ms	remaining: 287ms
47:	learn: 21.1469792	total: 259ms	remaining: 281ms
48:	learn: 20.9458235	total: 264ms	remaining: 275ms
49:	learn: 20.7335242	total: 270ms	remaining: 270ms
50:	learn: 20.5440269	total: 275ms	remaining: 264ms
51:	learn: 20.3661449	total: 280ms	remaining: 259ms
52:	learn: 20.2158134	total: 285ms	remaining: 253ms
53:	learn: 19.9934873	total: 291ms	remaining: 248ms
54:	learn: 19.7879739	total: 296ms	remaining: 242ms
55:	learn: 19.6630460	total: 301ms	remaining: 236ms
56:	learn: 19.5152729	total: 305ms	remaining: 230ms
57:	learn: 19.3581128	total: 309ms	remaining: 224ms
58:	learn: 19.2209303	total: 313ms	remaining: 218ms
59:	learn: 19.0965248	total: 317ms	remaining: 211ms
60:	learn: 19.0035954	total: 321ms	remaining: 205ms
61:	learn: 18.8554149	total: 325ms	remaining: 199ms
62:	learn: 18.7095427	total: 329ms	remaining: 193ms
63:	learn: 18.5751494	total: 333ms	remaining: 187ms
64:	learn: 18.4678251	total: 337ms	remaining: 182ms
65:	learn: 18.3500325	total: 342ms	remaining: 176ms
66:	learn: 18.2088983	total: 346ms	remaining: 170ms
67:	learn: 18.0737705	total: 350ms	remaining: 165ms
68:	learn: 17.9325058	total: 354ms	remaining: 159ms
69:	learn: 17.8003911	total: 358ms	remaining: 153ms
70:	learn: 17.7385366	total: 362ms	remaining: 148ms
71:	learn: 17.6106998	total: 366ms	remaining: 142ms
72:	learn: 17.4816270	total: 371ms	remaining: 137ms
73:	learn: 17.4025554	total: 375ms	remaining: 132ms
74:	learn: 17.2902108	total: 379ms	remaining: 126ms
75:	learn: 17.2158048	total: 383ms	remaining: 121ms
76:	learn: 17.1261053	total: 387ms	remaining: 116ms
77:	learn: 17.0308917	total: 392ms	remaining: 111ms
78:	learn: 16.9546705	total: 396ms	remaining: 105ms
79:	learn: 16.8319165	total: 401ms	remaining: 100ms
80:	learn: 16.7687017	total: 406ms	remaining: 95.2ms
81:	learn: 16.6972326	total: 411ms	remaining: 90.2ms
82:	learn: 16.6124580	total: 416ms	remaining: 85.1ms
83:	learn: 16.4999052	total: 420ms	remaining: 80.1ms
84:	learn: 16.4302484	total: 426ms	remaining: 75.1ms
85:	learn: 16.3201363	total: 433ms	remaining: 70.6ms
86:	learn: 16.2534314	total: 441ms	remaining: 65.9ms
87:	learn: 16.1720485	total: 449ms	remaining: 61.3ms
88:	learn: 16.0625751	total: 457ms	remaining: 56.5ms
89:	learn: 15.9135088	total: 462ms	remaining: 51.4ms
90:	learn: 15.8658863	total: 467ms	remaining: 46.2ms
91:	learn: 15.8066805	total: 473ms	remaining: 41.1ms
92:	learn: 15.7412103	total: 479ms	remaining: 36ms
93:	learn: 15.6542776	total: 484ms	remaining: 30.9ms
94:	learn: 15.5760334	total: 489ms	remaining: 25.7ms
95:	learn: 15.5434131	total: 494ms	remaining: 20.6ms
96:	learn: 15.4709561	total: 499ms	remaining: 15.4ms
97:	learn: 15.4449618	total: 504ms	remaining: 10.3ms
98:	learn: 15.3752761	total: 509ms	remaining: 5.14ms
99:	learn: 15.3106595	total: 514ms	remaining: 0us
0:	learn: 46.7142257	total: 4.3ms	remaining: 426ms
1:	learn: 45.7634153	total: 8.68ms	remaining: 426ms
2:	learn: 45.0054253	total: 12.9ms	remaining: 417ms
3:	learn: 44.2120432	total: 17ms	remaining: 408ms
4:	learn: 43.3960472	total: 20.8ms	remaining: 396ms
5:	learn: 42.8588120	total: 25.3ms	remaining: 396ms
6:	learn: 41.9533701	total: 46.6ms	remaining: 619ms
7:	learn: 41.2745030	total: 51.3ms	remaining: 590ms
8:	learn: 40.6797495	total: 55.7ms	remaining: 564ms
9:	learn: 39.9899571	total: 60.4ms	remaining: 543ms
10:	learn: 39.4682100	total: 68.6ms	remaining: 555ms
11:	learn: 39.0305595	total: 76.9ms	remaining: 564ms
12:	learn: 38.4200417	total: 87.2ms	remaining: 584ms
13:	learn: 37.8425194	total: 107ms	remaining: 655ms
14:	learn: 37.4203127	total: 112ms	remaining: 633ms
15:	learn: 36.9917688	total: 117ms	remaining: 614ms
16:	learn: 36.5544138	total: 122ms	remaining: 597ms
17:	learn: 36.0727019	total: 128ms	remaining: 581ms
18:	learn: 35.4835715	total: 133ms	remaining: 566ms
19:	learn: 34.9865654	total: 138ms	remaining: 553ms
20:	learn: 34.6063373	total: 143ms	remaining: 538ms
21:	learn: 34.0997289	total: 148ms	remaining: 526ms
22:	learn: 33.7313171	total: 153ms	remaining: 512ms
23:	learn: 33.3582000	total: 158ms	remaining: 501ms
24:	learn: 32.9432456	total: 164ms	remaining: 492ms
25:	learn: 32.5220888	total: 168ms	remaining: 479ms
26:	learn: 32.2172292	total: 172ms	remaining: 466ms
27:	learn: 31.8972904	total: 176ms	remaining: 453ms
28:	learn: 31.6405350	total: 180ms	remaining: 441ms
29:	learn: 31.4167702	total: 184ms	remaining: 430ms
30:	learn: 30.8541961	total: 186ms	remaining: 414ms
31:	learn: 30.5572111	total: 190ms	remaining: 404ms
32:	learn: 30.1700399	total: 194ms	remaining: 394ms
33:	learn: 29.8537271	total: 198ms	remaining: 385ms
34:	learn: 29.6192540	total: 203ms	remaining: 377ms
35:	learn: 29.3276362	total: 207ms	remaining: 367ms
36:	learn: 28.9985179	total: 211ms	remaining: 359ms
37:	learn: 28.7046880	total: 215ms	remaining: 351ms
38:	learn: 28.4412677	total: 219ms	remaining: 343ms
39:	learn: 28.1277292	total: 223ms	remaining: 335ms
40:	learn: 27.9000750	total: 227ms	remaining: 327ms
41:	learn: 27.5433162	total: 232ms	remaining: 320ms
42:	learn: 27.2493285	total: 237ms	remaining: 314ms
43:	learn: 26.9576632	total: 238ms	remaining: 303ms
44:	learn: 26.6177110	total: 243ms	remaining: 297ms
45:	learn: 26.2812456	total: 248ms	remaining: 291ms
46:	learn: 26.0803859	total: 252ms	remaining: 285ms
47:	learn: 25.9543581	total: 257ms	remaining: 278ms
48:	learn: 25.7951582	total: 261ms	remaining: 272ms
49:	learn: 25.6548184	total: 266ms	remaining: 266ms
50:	learn: 25.4010843	total: 274ms	remaining: 263ms
51:	learn: 24.9773937	total: 281ms	remaining: 260ms
52:	learn: 24.8026156	total: 290ms	remaining: 257ms
53:	learn: 24.5568053	total: 297ms	remaining: 253ms
54:	learn: 24.2281839	total: 303ms	remaining: 248ms
55:	learn: 23.9202795	total: 309ms	remaining: 243ms
56:	learn: 23.7625591	total: 314ms	remaining: 237ms
57:	learn: 23.5429721	total: 319ms	remaining: 231ms
58:	learn: 23.3175893	total: 324ms	remaining: 225ms
59:	learn: 23.2035130	total: 329ms	remaining: 219ms
60:	learn: 23.0232450	total: 334ms	remaining: 214ms
61:	learn: 22.8384958	total: 340ms	remaining: 208ms
62:	learn: 22.6499902	total: 345ms	remaining: 203ms
63:	learn: 22.4577426	total: 350ms	remaining: 197ms
64:	learn: 22.3333158	total: 355ms	remaining: 191ms
65:	learn: 22.2064131	total: 360ms	remaining: 185ms
66:	learn: 22.1434971	total: 365ms	remaining: 180ms
67:	learn: 21.9596519	total: 370ms	remaining: 174ms
68:	learn: 21.8475576	total: 375ms	remaining: 168ms
69:	learn: 21.6954745	total: 379ms	remaining: 163ms
70:	learn: 21.5635976	total: 384ms	remaining: 157ms
71:	learn: 21.4588506	total: 388ms	remaining: 151ms
72:	learn: 21.3527268	total: 392ms	remaining: 145ms
73:	learn: 21.2661288	total: 396ms	remaining: 139ms
74:	learn: 21.1817333	total: 400ms	remaining: 133ms
75:	learn: 21.0527553	total: 405ms	remaining: 128ms
76:	learn: 20.9229021	total: 410ms	remaining: 122ms
77:	learn: 20.7563946	total: 414ms	remaining: 117ms
78:	learn: 20.6569831	total: 418ms	remaining: 111ms
79:	learn: 20.4982663	total: 422ms	remaining: 105ms
80:	learn: 20.3185460	total: 426ms	remaining: 100ms
81:	learn: 20.2096241	total: 431ms	remaining: 94.6ms
82:	learn: 20.1274891	total: 436ms	remaining: 89.2ms
83:	learn: 20.0740139	total: 440ms	remaining: 83.9ms
84:	learn: 19.9630699	total: 445ms	remaining: 78.6ms
85:	learn: 19.8753899	total: 450ms	remaining: 73.3ms
86:	learn: 19.6563612	total: 455ms	remaining: 68ms
87:	learn: 19.4680232	total: 460ms	remaining: 62.7ms
88:	learn: 19.3503431	total: 465ms	remaining: 57.4ms
89:	learn: 19.2221379	total: 472ms	remaining: 52.4ms
90:	learn: 19.0732542	total: 479ms	remaining: 47.4ms
91:	learn: 18.9825190	total: 488ms	remaining: 42.4ms
92:	learn: 18.8839009	total: 494ms	remaining: 37.2ms
93:	learn: 18.8012219	total: 503ms	remaining: 32.1ms
94:	learn: 18.7172713	total: 508ms	remaining: 26.8ms
95:	learn: 18.6201170	total: 514ms	remaining: 21.4ms
96:	learn: 18.5318611	total: 520ms	remaining: 16.1ms
97:	learn: 18.3833356	total: 525ms	remaining: 10.7ms
98:	learn: 18.3289700	total: 531ms	remaining: 5.36ms
99:	learn: 18.2227333	total: 536ms	remaining: 0us
0:	learn: 46.3764524	total: 4.8ms	remaining: 475ms
1:	learn: 45.5561269	total: 9.02ms	remaining: 442ms
2:	learn: 44.8811245	total: 13.1ms	remaining: 425ms
3:	learn: 44.0788617	total: 16.8ms	remaining: 404ms
4:	learn: 43.3619790	total: 21.4ms	remaining: 406ms
5:	learn: 42.6912112	total: 25.6ms	remaining: 401ms
6:	learn: 42.2292118	total: 29.5ms	remaining: 392ms
7:	learn: 41.7725191	total: 33.7ms	remaining: 387ms
8:	learn: 41.1676614	total: 37.7ms	remaining: 381ms
9:	learn: 40.5771076	total: 41.6ms	remaining: 375ms
10:	learn: 39.8343757	total: 45.6ms	remaining: 369ms
11:	learn: 39.3761142	total: 50.2ms	remaining: 368ms
12:	learn: 38.5254692	total: 54.7ms	remaining: 366ms
13:	learn: 37.9629555	total: 59.4ms	remaining: 365ms
14:	learn: 37.4418438	total: 63.8ms	remaining: 362ms
15:	learn: 37.0507283	total: 68.3ms	remaining: 359ms
16:	learn: 36.6264217	total: 79.3ms	remaining: 387ms
17:	learn: 36.1114940	total: 84ms	remaining: 383ms
18:	learn: 35.7193862	total: 92.3ms	remaining: 393ms
19:	learn: 35.3301177	total: 99.3ms	remaining: 397ms
20:	learn: 35.0598280	total: 107ms	remaining: 404ms
21:	learn: 34.5469736	total: 114ms	remaining: 405ms
22:	learn: 34.2064215	total: 120ms	remaining: 401ms
23:	learn: 33.7280710	total: 125ms	remaining: 396ms
24:	learn: 33.3282940	total: 130ms	remaining: 391ms
25:	learn: 32.8478961	total: 135ms	remaining: 385ms
26:	learn: 32.5722164	total: 140ms	remaining: 380ms
27:	learn: 32.2457019	total: 146ms	remaining: 374ms
28:	learn: 31.9230495	total: 151ms	remaining: 370ms
29:	learn: 31.4311611	total: 156ms	remaining: 364ms
30:	learn: 30.9179052	total: 161ms	remaining: 359ms
31:	learn: 30.6201141	total: 166ms	remaining: 353ms
32:	learn: 30.3421106	total: 171ms	remaining: 348ms
33:	learn: 29.9885373	total: 176ms	remaining: 343ms
34:	learn: 29.7462780	total: 182ms	remaining: 338ms
35:	learn: 29.3607153	total: 188ms	remaining: 334ms
36:	learn: 29.1793078	total: 193ms	remaining: 329ms
37:	learn: 28.9276538	total: 197ms	remaining: 322ms
38:	learn: 28.6903934	total: 202ms	remaining: 315ms
39:	learn: 28.2095033	total: 205ms	remaining: 308ms
40:	learn: 27.7990608	total: 209ms	remaining: 301ms
41:	learn: 27.5406632	total: 213ms	remaining: 295ms
42:	learn: 27.2575376	total: 218ms	remaining: 288ms
43:	learn: 26.9741707	total: 222ms	remaining: 282ms
44:	learn: 26.6606899	total: 226ms	remaining: 276ms
45:	learn: 26.4015833	total: 230ms	remaining: 270ms
46:	learn: 26.1828993	total: 234ms	remaining: 264ms
47:	learn: 26.0233709	total: 236ms	remaining: 256ms
48:	learn: 25.9300399	total: 241ms	remaining: 251ms
49:	learn: 25.5861489	total: 245ms	remaining: 245ms
50:	learn: 25.4322012	total: 249ms	remaining: 240ms
51:	learn: 25.1595644	total: 254ms	remaining: 235ms
52:	learn: 24.9955303	total: 259ms	remaining: 230ms
53:	learn: 24.7273966	total: 264ms	remaining: 225ms
54:	learn: 24.5747978	total: 268ms	remaining: 219ms
55:	learn: 24.3807977	total: 273ms	remaining: 214ms
56:	learn: 24.1689569	total: 277ms	remaining: 209ms
57:	learn: 23.9898221	total: 282ms	remaining: 204ms
58:	learn: 23.7566414	total: 288ms	remaining: 200ms
59:	learn: 23.6641165	total: 295ms	remaining: 197ms
60:	learn: 23.5658066	total: 303ms	remaining: 194ms
61:	learn: 23.4338851	total: 310ms	remaining: 190ms
62:	learn: 23.2408837	total: 318ms	remaining: 187ms
63:	learn: 23.0642038	total: 323ms	remaining: 182ms
64:	learn: 22.9032045	total: 328ms	remaining: 176ms
65:	learn: 22.7736138	total: 333ms	remaining: 172ms
66:	learn: 22.6836443	total: 338ms	remaining: 166ms
67:	learn: 22.5983654	total: 343ms	remaining: 161ms
68:	learn: 22.4419813	total: 348ms	remaining: 156ms
69:	learn: 22.2863339	total: 353ms	remaining: 151ms
70:	learn: 22.1792943	total: 358ms	remaining: 146ms
71:	learn: 22.1130574	total: 362ms	remaining: 141ms
72:	learn: 21.9858161	total: 367ms	remaining: 136ms
73:	learn: 21.8577784	total: 371ms	remaining: 131ms
74:	learn: 21.7845222	total: 376ms	remaining: 125ms
75:	learn: 21.6831390	total: 380ms	remaining: 120ms
76:	learn: 21.6292521	total: 385ms	remaining: 115ms
77:	learn: 21.5789330	total: 389ms	remaining: 110ms
78:	learn: 21.5420942	total: 394ms	remaining: 105ms
79:	learn: 21.4280939	total: 398ms	remaining: 99.4ms
80:	learn: 21.3641165	total: 404ms	remaining: 94.7ms
81:	learn: 21.2734814	total: 409ms	remaining: 89.8ms
82:	learn: 21.2220323	total: 413ms	remaining: 84.7ms
83:	learn: 21.0625792	total: 417ms	remaining: 79.5ms
84:	learn: 20.9488320	total: 422ms	remaining: 74.4ms
85:	learn: 20.8504255	total: 426ms	remaining: 69.3ms
86:	learn: 20.7848510	total: 430ms	remaining: 64.2ms
87:	learn: 20.7247442	total: 434ms	remaining: 59.2ms
88:	learn: 20.5698590	total: 439ms	remaining: 54.2ms
89:	learn: 20.4067620	total: 443ms	remaining: 49.2ms
90:	learn: 20.3062482	total: 446ms	remaining: 44.2ms
91:	learn: 20.2029696	total: 451ms	remaining: 39.2ms
92:	learn: 20.1384849	total: 456ms	remaining: 34.3ms
93:	learn: 20.0260709	total: 460ms	remaining: 29.4ms
94:	learn: 19.9122100	total: 465ms	remaining: 24.5ms
95:	learn: 19.8648487	total: 469ms	remaining: 19.5ms
96:	learn: 19.8207072	total: 473ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 478ms	remaining: 9.75ms
98:	learn: 19.7042438	total: 482ms	remaining: 4.87ms
99:	learn: 19.6546645	total: 490ms	remaining: 0us
0:	learn: 47.0239288	total: 5.38ms	remaining: 532ms
1:	learn: 46.2253829	total: 10.5ms	remaining: 514ms
2:	learn: 45.5580301	total: 15.6ms	remaining: 503ms
3:	learn: 44.7273237	total: 20.6ms	remaining: 494ms
4:	learn: 43.8867421	total: 25.5ms	remaining: 485ms
5:	learn: 43.3615911	total: 30.3ms	remaining: 475ms
6:	learn: 42.8548390	total: 35ms	remaining: 464ms
7:	learn: 42.1606758	total: 40.5ms	remaining: 465ms
8:	learn: 41.6625870	total: 45.7ms	remaining: 462ms
9:	learn: 40.9497092	total: 49.9ms	remaining: 449ms
10:	learn: 40.1886318	total: 54.2ms	remaining: 439ms
11:	learn: 39.7456423	total: 58.6ms	remaining: 430ms
12:	learn: 39.1171373	total: 62.2ms	remaining: 417ms
13:	learn: 38.5451069	total: 66ms	remaining: 406ms
14:	learn: 38.0155834	total: 69.9ms	remaining: 396ms
15:	learn: 37.5631354	total: 74ms	remaining: 388ms
16:	learn: 37.1030023	total: 78.4ms	remaining: 383ms
17:	learn: 36.4563029	total: 82.7ms	remaining: 377ms
18:	learn: 36.0160976	total: 86.6ms	remaining: 369ms
19:	learn: 35.5079827	total: 90.8ms	remaining: 363ms
20:	learn: 35.2111885	total: 95.2ms	remaining: 358ms
21:	learn: 34.9397465	total: 99.1ms	remaining: 351ms
22:	learn: 34.5270048	total: 103ms	remaining: 344ms
23:	learn: 34.0169260	total: 107ms	remaining: 338ms
24:	learn: 33.7454892	total: 111ms	remaining: 334ms
25:	learn: 33.2648157	total: 116ms	remaining: 329ms
26:	learn: 32.8899427	total: 120ms	remaining: 325ms
27:	learn: 32.6185050	total: 125ms	remaining: 321ms
28:	learn: 32.3528531	total: 129ms	remaining: 317ms
29:	learn: 32.0859923	total: 134ms	remaining: 312ms
30:	learn: 31.6511144	total: 138ms	remaining: 308ms
31:	learn: 31.2571765	total: 143ms	remaining: 303ms
32:	learn: 30.9770049	total: 150ms	remaining: 304ms
33:	learn: 30.6084872	total: 158ms	remaining: 307ms
34:	learn: 30.3448632	total: 168ms	remaining: 312ms
35:	learn: 30.0360942	total: 174ms	remaining: 310ms
36:	learn: 29.6648968	total: 180ms	remaining: 307ms
37:	learn: 29.3165114	total: 186ms	remaining: 303ms
38:	learn: 29.0829198	total: 191ms	remaining: 298ms
39:	learn: 28.7752064	total: 196ms	remaining: 294ms
40:	learn: 28.3622191	total: 201ms	remaining: 289ms
41:	learn: 28.1346631	total: 206ms	remaining: 284ms
42:	learn: 27.9585719	total: 211ms	remaining: 279ms
43:	learn: 27.6565566	total: 216ms	remaining: 275ms
44:	learn: 27.3616172	total: 221ms	remaining: 270ms
45:	learn: 27.0658637	total: 226ms	remaining: 266ms
46:	learn: 26.8660382	total: 231ms	remaining: 261ms
47:	learn: 26.6536078	total: 236ms	remaining: 256ms
48:	learn: 26.3524440	total: 241ms	remaining: 251ms
49:	learn: 26.1595277	total: 247ms	remaining: 247ms
50:	learn: 25.9273523	total: 252ms	remaining: 242ms
51:	learn: 25.7195580	total: 256ms	remaining: 236ms
52:	learn: 25.5730225	total: 260ms	remaining: 231ms
53:	learn: 25.3455276	total: 264ms	remaining: 225ms
54:	learn: 25.2289675	total: 268ms	remaining: 220ms
55:	learn: 25.0133024	total: 272ms	remaining: 214ms
56:	learn: 24.8406714	total: 276ms	remaining: 208ms
57:	learn: 24.6367857	total: 281ms	remaining: 203ms
58:	learn: 24.5338177	total: 285ms	remaining: 198ms
59:	learn: 24.3799964	total: 288ms	remaining: 192ms
60:	learn: 24.1447492	total: 293ms	remaining: 187ms
61:	learn: 23.9880495	total: 297ms	remaining: 182ms
62:	learn: 23.7140630	total: 301ms	remaining: 177ms
63:	learn: 23.5003791	total: 306ms	remaining: 172ms
64:	learn: 23.3207645	total: 311ms	remaining: 167ms
65:	learn: 23.1958356	total: 315ms	remaining: 162ms
66:	learn: 23.0471302	total: 320ms	remaining: 158ms
67:	learn: 22.8977183	total: 325ms	remaining: 153ms
68:	learn: 22.7187400	total: 329ms	remaining: 148ms
69:	learn: 22.6523405	total: 334ms	remaining: 143ms
70:	learn: 22.4767453	total: 338ms	remaining: 138ms
71:	learn: 22.3243677	total: 346ms	remaining: 135ms
72:	learn: 22.2133096	total: 356ms	remaining: 132ms
73:	learn: 22.1151713	total: 365ms	remaining: 128ms
74:	learn: 22.0296666	total: 371ms	remaining: 124ms
75:	learn: 21.9195980	total: 378ms	remaining: 120ms
76:	learn: 21.8401730	total: 384ms	remaining: 115ms
77:	learn: 21.8079797	total: 390ms	remaining: 110ms
78:	learn: 21.7274109	total: 395ms	remaining: 105ms
79:	learn: 21.6663032	total: 401ms	remaining: 100ms
80:	learn: 21.5633117	total: 406ms	remaining: 95.2ms
81:	learn: 21.4542467	total: 411ms	remaining: 90.1ms
82:	learn: 21.3177957	total: 416ms	remaining: 85.1ms
83:	learn: 21.1289167	total: 421ms	remaining: 80.2ms
84:	learn: 21.0297368	total: 426ms	remaining: 75.2ms
85:	learn: 20.9089564	total: 431ms	remaining: 70.1ms
86:	learn: 20.7653988	total: 436ms	remaining: 65.1ms
87:	learn: 20.6521894	total: 442ms	remaining: 60.3ms
88:	learn: 20.5193021	total: 446ms	remaining: 55.2ms
89:	learn: 20.4361620	total: 450ms	remaining: 50ms
90:	learn: 20.3546710	total: 454ms	remaining: 44.9ms
91:	learn: 20.2513296	total: 459ms	remaining: 39.9ms
92:	learn: 20.1605550	total: 463ms	remaining: 34.8ms
93:	learn: 20.0515942	total: 467ms	remaining: 29.8ms
94:	learn: 19.9800764	total: 472ms	remaining: 24.8ms
95:	learn: 19.8996532	total: 476ms	remaining: 19.8ms
96:	learn: 19.8450910	total: 481ms	remaining: 14.9ms
97:	learn: 19.7887346	total: 485ms	remaining: 9.9ms
98:	learn: 19.7230872	total: 489ms	remaining: 4.94ms
99:	learn: 19.6328825	total: 494ms	remaining: 0us
0:	learn: 27.5585353	total: 4.83ms	remaining: 478ms
1:	learn: 27.1656995	total: 9.18ms	remaining: 450ms
2:	learn: 26.8590175	total: 13.9ms	remaining: 451ms
3:	learn: 26.5818406	total: 20.7ms	remaining: 496ms
4:	learn: 26.1148663	total: 28.4ms	remaining: 541ms
5:	learn: 25.7690484	total: 35.9ms	remaining: 562ms
6:	learn: 25.3489206	total: 42.8ms	remaining: 569ms
7:	learn: 24.9542406	total: 50.8ms	remaining: 585ms
8:	learn: 24.6777517	total: 56.1ms	remaining: 568ms
9:	learn: 24.3242344	total: 61.4ms	remaining: 552ms
10:	learn: 24.0383073	total: 67ms	remaining: 542ms
11:	learn: 23.7383420	total: 72.2ms	remaining: 530ms
12:	learn: 23.3461670	total: 77.7ms	remaining: 520ms
13:	learn: 23.0928636	total: 82.7ms	remaining: 508ms
14:	learn: 22.8770414	total: 87.7ms	remaining: 497ms
15:	learn: 22.6323214	total: 92.9ms	remaining: 488ms
16:	learn: 22.3597072	total: 98ms	remaining: 478ms
17:	learn: 22.1079813	total: 103ms	remaining: 470ms
18:	learn: 21.8421199	total: 108ms	remaining: 459ms
19:	learn: 21.6576508	total: 113ms	remaining: 451ms
20:	learn: 21.4301268	total: 118ms	remaining: 445ms
21:	learn: 21.2287388	total: 123ms	remaining: 437ms
22:	learn: 21.0553872	total: 127ms	remaining: 427ms
23:	learn: 20.8977091	total: 132ms	remaining: 417ms
24:	learn: 20.6619051	total: 135ms	remaining: 406ms
25:	learn: 20.5040955	total: 140ms	remaining: 398ms
26:	learn: 20.3181195	total: 144ms	remaining: 389ms
27:	learn: 20.0869436	total: 148ms	remaining: 381ms
28:	learn: 19.9375985	total: 153ms	remaining: 374ms
29:	learn: 19.8247516	total: 157ms	remaining: 367ms
30:	learn: 19.6261697	total: 161ms	remaining: 359ms
31:	learn: 19.4547236	total: 165ms	remaining: 351ms
32:	learn: 19.3157092	total: 169ms	remaining: 344ms
33:	learn: 19.1561419	total: 173ms	remaining: 336ms
34:	learn: 19.0453620	total: 177ms	remaining: 329ms
35:	learn: 18.8738574	total: 181ms	remaining: 322ms
36:	learn: 18.7072907	total: 186ms	remaining: 316ms
37:	learn: 18.5877943	total: 190ms	remaining: 310ms
38:	learn: 18.4436380	total: 195ms	remaining: 304ms
39:	learn: 18.3463356	total: 199ms	remaining: 299ms
40:	learn: 18.2008059	total: 204ms	remaining: 293ms
41:	learn: 18.0582079	total: 208ms	remaining: 288ms
42:	learn: 17.8891982	total: 213ms	remaining: 282ms
43:	learn: 17.7332246	total: 217ms	remaining: 276ms
44:	learn: 17.6206421	total: 222ms	remaining: 271ms
45:	learn: 17.4982800	total: 230ms	remaining: 270ms
46:	learn: 17.3970150	total: 237ms	remaining: 267ms
47:	learn: 17.3058203	total: 245ms	remaining: 266ms
48:	learn: 17.1789256	total: 253ms	remaining: 263ms
49:	learn: 17.0916229	total: 258ms	remaining: 258ms
50:	learn: 16.9859820	total: 263ms	remaining: 253ms
51:	learn: 16.8995582	total: 268ms	remaining: 248ms
52:	learn: 16.8137014	total: 274ms	remaining: 243ms
53:	learn: 16.7021451	total: 279ms	remaining: 237ms
54:	learn: 16.5895582	total: 284ms	remaining: 232ms
55:	learn: 16.5015639	total: 289ms	remaining: 227ms
56:	learn: 16.4356637	total: 310ms	remaining: 234ms
57:	learn: 16.3514525	total: 315ms	remaining: 228ms
58:	learn: 16.2401369	total: 321ms	remaining: 223ms
59:	learn: 16.1293223	total: 325ms	remaining: 217ms
60:	learn: 16.0271167	total: 329ms	remaining: 211ms
61:	learn: 15.9126257	total: 333ms	remaining: 204ms
62:	learn: 15.8391096	total: 337ms	remaining: 198ms
63:	learn: 15.7441773	total: 342ms	remaining: 192ms
64:	learn: 15.6885195	total: 346ms	remaining: 186ms
65:	learn: 15.6052039	total: 350ms	remaining: 180ms
66:	learn: 15.5074202	total: 353ms	remaining: 174ms
67:	learn: 15.4054338	total: 358ms	remaining: 168ms
68:	learn: 15.2885714	total: 362ms	remaining: 163ms
69:	learn: 15.2157472	total: 366ms	remaining: 157ms
70:	learn: 15.1031554	total: 370ms	remaining: 151ms
71:	learn: 15.0237470	total: 374ms	remaining: 145ms
72:	learn: 14.9756825	total: 378ms	remaining: 140ms
73:	learn: 14.8840596	total: 382ms	remaining: 134ms
74:	learn: 14.8077061	total: 386ms	remaining: 129ms
75:	learn: 14.7444437	total: 391ms	remaining: 123ms
76:	learn: 14.6751720	total: 396ms	remaining: 118ms
77:	learn: 14.5830333	total: 401ms	remaining: 113ms
78:	learn: 14.5241206	total: 405ms	remaining: 108ms
79:	learn: 14.4892731	total: 409ms	remaining: 102ms
80:	learn: 14.4256605	total: 414ms	remaining: 97ms
81:	learn: 14.3666860	total: 418ms	remaining: 91.8ms
82:	learn: 14.2938372	total: 424ms	remaining: 86.9ms
83:	learn: 14.2161532	total: 432ms	remaining: 82.2ms
84:	learn: 14.1582910	total: 440ms	remaining: 77.7ms
85:	learn: 14.1029153	total: 448ms	remaining: 72.9ms
86:	learn: 14.0475835	total: 456ms	remaining: 68.1ms
87:	learn: 13.9892661	total: 461ms	remaining: 62.9ms
88:	learn: 13.9481628	total: 467ms	remaining: 57.7ms
89:	learn: 13.8483991	total: 472ms	remaining: 52.4ms
90:	learn: 13.7775614	total: 477ms	remaining: 47.1ms
91:	learn: 13.7304585	total: 482ms	remaining: 41.9ms
92:	learn: 13.6783381	total: 487ms	remaining: 36.7ms
93:	learn: 13.6356964	total: 492ms	remaining: 31.4ms
94:	learn: 13.5924371	total: 497ms	remaining: 26.2ms
95:	learn: 13.5400746	total: 503ms	remaining: 21ms
96:	learn: 13.4897333	total: 508ms	remaining: 15.7ms
97:	learn: 13.4470321	total: 512ms	remaining: 10.5ms
98:	learn: 13.3856082	total: 517ms	remaining: 5.22ms
99:	learn: 13.3082371	total: 523ms	remaining: 0us
0:	learn: 43.0395283	total: 4.64ms	remaining: 459ms
1:	learn: 42.1130223	total: 9.02ms	remaining: 442ms
2:	learn: 41.1753409	total: 12.7ms	remaining: 412ms
3:	learn: 40.3637444	total: 16.5ms	remaining: 397ms
4:	learn: 39.6508088	total: 20.7ms	remaining: 393ms
5:	learn: 38.7217934	total: 25.4ms	remaining: 398ms
6:	learn: 37.8538055	total: 30.2ms	remaining: 401ms
7:	learn: 36.9793574	total: 34.7ms	remaining: 399ms
8:	learn: 36.3076984	total: 39.3ms	remaining: 398ms
9:	learn: 35.6673160	total: 44.1ms	remaining: 397ms
10:	learn: 34.8889800	total: 48.7ms	remaining: 394ms
11:	learn: 34.1675517	total: 53ms	remaining: 389ms
12:	learn: 33.6779564	total: 58ms	remaining: 388ms
13:	learn: 33.0710039	total: 62.4ms	remaining: 383ms
14:	learn: 32.4966674	total: 70.5ms	remaining: 399ms
15:	learn: 31.9492856	total: 77.8ms	remaining: 408ms
16:	learn: 31.5108129	total: 86.9ms	remaining: 424ms
17:	learn: 30.9804023	total: 93.4ms	remaining: 426ms
18:	learn: 30.4169089	total: 99.7ms	remaining: 425ms
19:	learn: 29.8930375	total: 104ms	remaining: 418ms
20:	learn: 29.3974421	total: 110ms	remaining: 414ms
21:	learn: 28.8792307	total: 115ms	remaining: 409ms
22:	learn: 28.3894474	total: 121ms	remaining: 404ms
23:	learn: 27.9921276	total: 126ms	remaining: 398ms
24:	learn: 27.6158887	total: 131ms	remaining: 393ms
25:	learn: 27.2866950	total: 136ms	remaining: 388ms
26:	learn: 26.8770708	total: 141ms	remaining: 382ms
27:	learn: 26.6233005	total: 147ms	remaining: 377ms
28:	learn: 26.2921934	total: 152ms	remaining: 372ms
29:	learn: 25.9156920	total: 157ms	remaining: 367ms
30:	learn: 25.5311106	total: 159ms	remaining: 355ms
31:	learn: 25.2178997	total: 165ms	remaining: 351ms
32:	learn: 24.8572196	total: 169ms	remaining: 344ms
33:	learn: 24.5849710	total: 173ms	remaining: 336ms
34:	learn: 24.2209190	total: 178ms	remaining: 330ms
35:	learn: 23.8708250	total: 182ms	remaining: 323ms
36:	learn: 23.5325279	total: 186ms	remaining: 317ms
37:	learn: 23.2116148	total: 191ms	remaining: 311ms
38:	learn: 22.9696787	total: 195ms	remaining: 305ms
39:	learn: 22.7936783	total: 199ms	remaining: 299ms
40:	learn: 22.6228847	total: 204ms	remaining: 293ms
41:	learn: 22.3691527	total: 208ms	remaining: 287ms
42:	learn: 22.1002173	total: 213ms	remaining: 282ms
43:	learn: 21.9157268	total: 216ms	remaining: 275ms
44:	learn: 21.7229102	total: 220ms	remaining: 269ms
45:	learn: 21.4642005	total: 226ms	remaining: 265ms
46:	learn: 21.3029442	total: 231ms	remaining: 260ms
47:	learn: 21.1469792	total: 235ms	remaining: 255ms
48:	learn: 20.9458235	total: 240ms	remaining: 250ms
49:	learn: 20.7335242	total: 245ms	remaining: 245ms
50:	learn: 20.5440269	total: 251ms	remaining: 241ms
51:	learn: 20.3661449	total: 256ms	remaining: 236ms
52:	learn: 20.2158134	total: 261ms	remaining: 231ms
53:	learn: 19.9934873	total: 271ms	remaining: 231ms
54:	learn: 19.7879739	total: 278ms	remaining: 227ms
55:	learn: 19.6630460	total: 285ms	remaining: 224ms
56:	learn: 19.5152729	total: 292ms	remaining: 221ms
57:	learn: 19.3581128	total: 298ms	remaining: 216ms
58:	learn: 19.2209303	total: 304ms	remaining: 211ms
59:	learn: 19.0965248	total: 309ms	remaining: 206ms
60:	learn: 19.0035954	total: 314ms	remaining: 201ms
61:	learn: 18.8554149	total: 320ms	remaining: 196ms
62:	learn: 18.7095427	total: 325ms	remaining: 191ms
63:	learn: 18.5751494	total: 330ms	remaining: 186ms
64:	learn: 18.4678251	total: 335ms	remaining: 180ms
65:	learn: 18.3500325	total: 340ms	remaining: 175ms
66:	learn: 18.2088983	total: 345ms	remaining: 170ms
67:	learn: 18.0737705	total: 350ms	remaining: 165ms
68:	learn: 17.9325058	total: 355ms	remaining: 160ms
69:	learn: 17.8003911	total: 360ms	remaining: 154ms
70:	learn: 17.7385366	total: 366ms	remaining: 150ms
71:	learn: 17.6106998	total: 370ms	remaining: 144ms
72:	learn: 17.4816270	total: 375ms	remaining: 139ms
73:	learn: 17.4025554	total: 379ms	remaining: 133ms
74:	learn: 17.2902108	total: 383ms	remaining: 128ms
75:	learn: 17.2158048	total: 387ms	remaining: 122ms
76:	learn: 17.1261053	total: 391ms	remaining: 117ms
77:	learn: 17.0308917	total: 395ms	remaining: 111ms
78:	learn: 16.9546705	total: 399ms	remaining: 106ms
79:	learn: 16.8319165	total: 403ms	remaining: 101ms
80:	learn: 16.7687017	total: 407ms	remaining: 95.4ms
81:	learn: 16.6972326	total: 411ms	remaining: 90.1ms
82:	learn: 16.6124580	total: 415ms	remaining: 84.9ms
83:	learn: 16.4999052	total: 419ms	remaining: 79.8ms
84:	learn: 16.4302484	total: 424ms	remaining: 74.7ms
85:	learn: 16.3201363	total: 427ms	remaining: 69.6ms
86:	learn: 16.2534314	total: 431ms	remaining: 64.4ms
87:	learn: 16.1720485	total: 435ms	remaining: 59.4ms
88:	learn: 16.0625751	total: 440ms	remaining: 54.4ms
89:	learn: 15.9135088	total: 444ms	remaining: 49.4ms
90:	learn: 15.8658863	total: 449ms	remaining: 44.4ms
91:	learn: 15.8066805	total: 454ms	remaining: 39.5ms
92:	learn: 15.7412103	total: 459ms	remaining: 34.5ms
93:	learn: 15.6542776	total: 464ms	remaining: 29.6ms
94:	learn: 15.5760334	total: 468ms	remaining: 24.6ms
95:	learn: 15.5434131	total: 477ms	remaining: 19.9ms
96:	learn: 15.4709561	total: 500ms	remaining: 15.5ms
97:	learn: 15.4449618	total: 505ms	remaining: 10.3ms
98:	learn: 15.3752761	total: 511ms	remaining: 5.16ms
99:	learn: 15.3106595	total: 516ms	remaining: 0us
0:	learn: 46.7142257	total: 4.29ms	remaining: 425ms
1:	learn: 45.7634153	total: 8.65ms	remaining: 424ms
2:	learn: 45.0054253	total: 13.1ms	remaining: 425ms
3:	learn: 44.2120432	total: 17.8ms	remaining: 428ms
4:	learn: 43.3960472	total: 21.8ms	remaining: 414ms
5:	learn: 42.8588120	total: 25.9ms	remaining: 406ms
6:	learn: 41.9533701	total: 30.1ms	remaining: 400ms
7:	learn: 41.2745030	total: 34.2ms	remaining: 393ms
8:	learn: 40.6797495	total: 38.7ms	remaining: 391ms
9:	learn: 39.9899571	total: 43ms	remaining: 387ms
10:	learn: 39.4682100	total: 47ms	remaining: 380ms
11:	learn: 39.0305595	total: 51ms	remaining: 374ms
12:	learn: 38.4200417	total: 55.2ms	remaining: 369ms
13:	learn: 37.8425194	total: 59.3ms	remaining: 364ms
14:	learn: 37.4203127	total: 63.2ms	remaining: 358ms
15:	learn: 36.9917688	total: 67ms	remaining: 352ms
16:	learn: 36.5544138	total: 71.5ms	remaining: 349ms
17:	learn: 36.0727019	total: 76.1ms	remaining: 347ms
18:	learn: 35.4835715	total: 80.8ms	remaining: 345ms
19:	learn: 34.9865654	total: 85.7ms	remaining: 343ms
20:	learn: 34.6063373	total: 90.4ms	remaining: 340ms
21:	learn: 34.0997289	total: 94.9ms	remaining: 336ms
22:	learn: 33.7313171	total: 99.5ms	remaining: 333ms
23:	learn: 33.3582000	total: 104ms	remaining: 329ms
24:	learn: 32.9432456	total: 109ms	remaining: 326ms
25:	learn: 32.5220888	total: 116ms	remaining: 331ms
26:	learn: 32.2172292	total: 125ms	remaining: 338ms
27:	learn: 31.8972904	total: 133ms	remaining: 343ms
28:	learn: 31.6405350	total: 139ms	remaining: 340ms
29:	learn: 31.4167702	total: 145ms	remaining: 339ms
30:	learn: 30.8541961	total: 147ms	remaining: 328ms
31:	learn: 30.5572111	total: 153ms	remaining: 324ms
32:	learn: 30.1700399	total: 158ms	remaining: 321ms
33:	learn: 29.8537271	total: 163ms	remaining: 317ms
34:	learn: 29.6192540	total: 168ms	remaining: 313ms
35:	learn: 29.3276362	total: 174ms	remaining: 309ms
36:	learn: 28.9985179	total: 179ms	remaining: 306ms
37:	learn: 28.7046880	total: 185ms	remaining: 301ms
38:	learn: 28.4412677	total: 190ms	remaining: 297ms
39:	learn: 28.1277292	total: 195ms	remaining: 292ms
40:	learn: 27.9000750	total: 199ms	remaining: 287ms
41:	learn: 27.5433162	total: 205ms	remaining: 283ms
42:	learn: 27.2493285	total: 211ms	remaining: 279ms
43:	learn: 26.9576632	total: 212ms	remaining: 270ms
44:	learn: 26.6177110	total: 217ms	remaining: 265ms
45:	learn: 26.2812456	total: 221ms	remaining: 259ms
46:	learn: 26.0803859	total: 225ms	remaining: 254ms
47:	learn: 25.9543581	total: 230ms	remaining: 249ms
48:	learn: 25.7951582	total: 234ms	remaining: 243ms
49:	learn: 25.6548184	total: 237ms	remaining: 237ms
50:	learn: 25.4010843	total: 242ms	remaining: 232ms
51:	learn: 24.9773937	total: 246ms	remaining: 227ms
52:	learn: 24.8026156	total: 250ms	remaining: 222ms
53:	learn: 24.5568053	total: 254ms	remaining: 216ms
54:	learn: 24.2281839	total: 258ms	remaining: 211ms
55:	learn: 23.9202795	total: 262ms	remaining: 206ms
56:	learn: 23.7625591	total: 266ms	remaining: 201ms
57:	learn: 23.5429721	total: 271ms	remaining: 196ms
58:	learn: 23.3175893	total: 275ms	remaining: 191ms
59:	learn: 23.2035130	total: 280ms	remaining: 186ms
60:	learn: 23.0232450	total: 284ms	remaining: 182ms
61:	learn: 22.8384958	total: 288ms	remaining: 177ms
62:	learn: 22.6499902	total: 293ms	remaining: 172ms
63:	learn: 22.4577426	total: 297ms	remaining: 167ms
64:	learn: 22.3333158	total: 302ms	remaining: 163ms
65:	learn: 22.2064131	total: 307ms	remaining: 158ms
66:	learn: 22.1434971	total: 315ms	remaining: 155ms
67:	learn: 21.9596519	total: 322ms	remaining: 152ms
68:	learn: 21.8475576	total: 331ms	remaining: 149ms
69:	learn: 21.6954745	total: 340ms	remaining: 146ms
70:	learn: 21.5635976	total: 346ms	remaining: 141ms
71:	learn: 21.4588506	total: 351ms	remaining: 137ms
72:	learn: 21.3527268	total: 357ms	remaining: 132ms
73:	learn: 21.2661288	total: 362ms	remaining: 127ms
74:	learn: 21.1817333	total: 368ms	remaining: 123ms
75:	learn: 21.0527553	total: 373ms	remaining: 118ms
76:	learn: 20.9229021	total: 378ms	remaining: 113ms
77:	learn: 20.7563946	total: 383ms	remaining: 108ms
78:	learn: 20.6569831	total: 388ms	remaining: 103ms
79:	learn: 20.4982663	total: 393ms	remaining: 98.3ms
80:	learn: 20.3185460	total: 398ms	remaining: 93.5ms
81:	learn: 20.2096241	total: 404ms	remaining: 88.7ms
82:	learn: 20.1274891	total: 409ms	remaining: 83.8ms
83:	learn: 20.0740139	total: 414ms	remaining: 78.9ms
84:	learn: 19.9630699	total: 418ms	remaining: 73.8ms
85:	learn: 19.8753899	total: 423ms	remaining: 68.8ms
86:	learn: 19.6563612	total: 427ms	remaining: 63.8ms
87:	learn: 19.4680232	total: 431ms	remaining: 58.7ms
88:	learn: 19.3503431	total: 435ms	remaining: 53.7ms
89:	learn: 19.2221379	total: 440ms	remaining: 48.9ms
90:	learn: 19.0732542	total: 444ms	remaining: 43.9ms
91:	learn: 18.9825190	total: 448ms	remaining: 39ms
92:	learn: 18.8839009	total: 453ms	remaining: 34.1ms
93:	learn: 18.8012219	total: 458ms	remaining: 29.2ms
94:	learn: 18.7172713	total: 462ms	remaining: 24.3ms
95:	learn: 18.6201170	total: 466ms	remaining: 19.4ms
96:	learn: 18.5318611	total: 471ms	remaining: 14.6ms
97:	learn: 18.3833356	total: 476ms	remaining: 9.71ms
98:	learn: 18.3289700	total: 480ms	remaining: 4.85ms
99:	learn: 18.2227333	total: 485ms	remaining: 0us
0:	learn: 46.3764524	total: 5.74ms	remaining: 569ms
1:	learn: 45.5561269	total: 12.1ms	remaining: 591ms
2:	learn: 44.8811245	total: 17.6ms	remaining: 570ms
3:	learn: 44.0788617	total: 23.2ms	remaining: 557ms
4:	learn: 43.3619790	total: 28.7ms	remaining: 546ms
5:	learn: 42.6912112	total: 34.6ms	remaining: 543ms
6:	learn: 42.2292118	total: 40.8ms	remaining: 542ms
7:	learn: 41.7725191	total: 46.7ms	remaining: 537ms
8:	learn: 41.1676614	total: 51.6ms	remaining: 522ms
9:	learn: 40.5771076	total: 56.3ms	remaining: 506ms
10:	learn: 39.8343757	total: 61.8ms	remaining: 500ms
11:	learn: 39.3761142	total: 67.1ms	remaining: 492ms
12:	learn: 38.5254692	total: 71.9ms	remaining: 481ms
13:	learn: 37.9629555	total: 75.9ms	remaining: 466ms
14:	learn: 37.4418438	total: 79.5ms	remaining: 450ms
15:	learn: 37.0507283	total: 83.5ms	remaining: 438ms
16:	learn: 36.6264217	total: 87.3ms	remaining: 426ms
17:	learn: 36.1114940	total: 91.6ms	remaining: 417ms
18:	learn: 35.7193862	total: 95.8ms	remaining: 409ms
19:	learn: 35.3301177	total: 101ms	remaining: 404ms
20:	learn: 35.0598280	total: 106ms	remaining: 397ms
21:	learn: 34.5469736	total: 110ms	remaining: 391ms
22:	learn: 34.2064215	total: 115ms	remaining: 385ms
23:	learn: 33.7280710	total: 120ms	remaining: 379ms
24:	learn: 33.3282940	total: 124ms	remaining: 373ms
25:	learn: 32.8478961	total: 129ms	remaining: 367ms
26:	learn: 32.5722164	total: 133ms	remaining: 360ms
27:	learn: 32.2457019	total: 137ms	remaining: 352ms
28:	learn: 31.9230495	total: 141ms	remaining: 345ms
29:	learn: 31.4311611	total: 146ms	remaining: 340ms
30:	learn: 30.9179052	total: 150ms	remaining: 334ms
31:	learn: 30.6201141	total: 155ms	remaining: 329ms
32:	learn: 30.3421106	total: 159ms	remaining: 323ms
33:	learn: 29.9885373	total: 164ms	remaining: 318ms
34:	learn: 29.7462780	total: 168ms	remaining: 312ms
35:	learn: 29.3607153	total: 172ms	remaining: 306ms
36:	learn: 29.1793078	total: 177ms	remaining: 301ms
37:	learn: 28.9276538	total: 183ms	remaining: 299ms
38:	learn: 28.6903934	total: 191ms	remaining: 298ms
39:	learn: 28.2095033	total: 199ms	remaining: 298ms
40:	learn: 27.7990608	total: 206ms	remaining: 296ms
41:	learn: 27.5406632	total: 214ms	remaining: 295ms
42:	learn: 27.2575376	total: 219ms	remaining: 290ms
43:	learn: 26.9741707	total: 224ms	remaining: 285ms
44:	learn: 26.6606899	total: 229ms	remaining: 280ms
45:	learn: 26.4015833	total: 234ms	remaining: 275ms
46:	learn: 26.1828993	total: 254ms	remaining: 287ms
47:	learn: 26.0233709	total: 257ms	remaining: 279ms
48:	learn: 25.9300399	total: 262ms	remaining: 273ms
49:	learn: 25.5861489	total: 267ms	remaining: 267ms
50:	learn: 25.4322012	total: 272ms	remaining: 261ms
51:	learn: 25.1595644	total: 277ms	remaining: 256ms
52:	learn: 24.9955303	total: 281ms	remaining: 250ms
53:	learn: 24.7273966	total: 285ms	remaining: 243ms
54:	learn: 24.5747978	total: 289ms	remaining: 237ms
55:	learn: 24.3807977	total: 293ms	remaining: 231ms
56:	learn: 24.1689569	total: 298ms	remaining: 224ms
57:	learn: 23.9898221	total: 302ms	remaining: 218ms
58:	learn: 23.7566414	total: 305ms	remaining: 212ms
59:	learn: 23.6641165	total: 309ms	remaining: 206ms
60:	learn: 23.5658066	total: 313ms	remaining: 200ms
61:	learn: 23.4338851	total: 317ms	remaining: 194ms
62:	learn: 23.2408837	total: 321ms	remaining: 188ms
63:	learn: 23.0642038	total: 325ms	remaining: 183ms
64:	learn: 22.9032045	total: 330ms	remaining: 177ms
65:	learn: 22.7736138	total: 334ms	remaining: 172ms
66:	learn: 22.6836443	total: 338ms	remaining: 166ms
67:	learn: 22.5983654	total: 342ms	remaining: 161ms
68:	learn: 22.4419813	total: 346ms	remaining: 156ms
69:	learn: 22.2863339	total: 351ms	remaining: 150ms
70:	learn: 22.1792943	total: 355ms	remaining: 145ms
71:	learn: 22.1130574	total: 360ms	remaining: 140ms
72:	learn: 21.9858161	total: 364ms	remaining: 135ms
73:	learn: 21.8577784	total: 369ms	remaining: 130ms
74:	learn: 21.7845222	total: 374ms	remaining: 125ms
75:	learn: 21.6831390	total: 378ms	remaining: 119ms
76:	learn: 21.6292521	total: 385ms	remaining: 115ms
77:	learn: 21.5789330	total: 393ms	remaining: 111ms
78:	learn: 21.5420942	total: 401ms	remaining: 107ms
79:	learn: 21.4280939	total: 407ms	remaining: 102ms
80:	learn: 21.3641165	total: 414ms	remaining: 97ms
81:	learn: 21.2734814	total: 419ms	remaining: 91.9ms
82:	learn: 21.2220323	total: 424ms	remaining: 86.8ms
83:	learn: 21.0625792	total: 429ms	remaining: 81.7ms
84:	learn: 20.9488320	total: 434ms	remaining: 76.6ms
85:	learn: 20.8504255	total: 439ms	remaining: 71.5ms
86:	learn: 20.7848510	total: 444ms	remaining: 66.4ms
87:	learn: 20.7247442	total: 449ms	remaining: 61.3ms
88:	learn: 20.5698590	total: 455ms	remaining: 56.2ms
89:	learn: 20.4067620	total: 459ms	remaining: 51.1ms
90:	learn: 20.3062482	total: 464ms	remaining: 45.9ms
91:	learn: 20.2029696	total: 468ms	remaining: 40.7ms
92:	learn: 20.1384849	total: 473ms	remaining: 35.6ms
93:	learn: 20.0260709	total: 477ms	remaining: 30.5ms
94:	learn: 19.9122100	total: 482ms	remaining: 25.4ms
95:	learn: 19.8648487	total: 487ms	remaining: 20.3ms
96:	learn: 19.8207072	total: 493ms	remaining: 15.2ms
97:	learn: 19.7261189	total: 497ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 501ms	remaining: 5.06ms
99:	learn: 19.6546645	total: 505ms	remaining: 0us
0:	learn: 47.0239288	total: 4.46ms	remaining: 442ms
1:	learn: 46.2253829	total: 8.78ms	remaining: 430ms
2:	learn: 45.5580301	total: 13.4ms	remaining: 432ms
3:	learn: 44.7273237	total: 17.8ms	remaining: 426ms
4:	learn: 43.8867421	total: 21.8ms	remaining: 415ms
5:	learn: 43.3615911	total: 26.3ms	remaining: 413ms
6:	learn: 42.8548390	total: 31.3ms	remaining: 416ms
7:	learn: 42.1606758	total: 39.6ms	remaining: 455ms
8:	learn: 41.6625870	total: 46.8ms	remaining: 473ms
9:	learn: 40.9497092	total: 54.7ms	remaining: 493ms
10:	learn: 40.1886318	total: 61ms	remaining: 493ms
11:	learn: 39.7456423	total: 67.6ms	remaining: 496ms
12:	learn: 39.1171373	total: 72.5ms	remaining: 485ms
13:	learn: 38.5451069	total: 77.5ms	remaining: 476ms
14:	learn: 38.0155834	total: 82.6ms	remaining: 468ms
15:	learn: 37.5631354	total: 87.8ms	remaining: 461ms
16:	learn: 37.1030023	total: 102ms	remaining: 499ms
17:	learn: 36.4563029	total: 107ms	remaining: 489ms
18:	learn: 36.0160976	total: 112ms	remaining: 479ms
19:	learn: 35.5079827	total: 117ms	remaining: 469ms
20:	learn: 35.2111885	total: 122ms	remaining: 460ms
21:	learn: 34.9397465	total: 128ms	remaining: 452ms
22:	learn: 34.5270048	total: 133ms	remaining: 445ms
23:	learn: 34.0169260	total: 137ms	remaining: 435ms
24:	learn: 33.7454892	total: 141ms	remaining: 423ms
25:	learn: 33.2648157	total: 145ms	remaining: 412ms
26:	learn: 32.8899427	total: 149ms	remaining: 402ms
27:	learn: 32.6185050	total: 153ms	remaining: 393ms
28:	learn: 32.3528531	total: 157ms	remaining: 384ms
29:	learn: 32.0859923	total: 161ms	remaining: 375ms
30:	learn: 31.6511144	total: 165ms	remaining: 367ms
31:	learn: 31.2571765	total: 169ms	remaining: 358ms
32:	learn: 30.9770049	total: 173ms	remaining: 350ms
33:	learn: 30.6084872	total: 177ms	remaining: 343ms
34:	learn: 30.3448632	total: 180ms	remaining: 335ms
35:	learn: 30.0360942	total: 184ms	remaining: 328ms
36:	learn: 29.6648968	total: 188ms	remaining: 321ms
37:	learn: 29.3165114	total: 192ms	remaining: 314ms
38:	learn: 29.0829198	total: 196ms	remaining: 307ms
39:	learn: 28.7752064	total: 200ms	remaining: 300ms
40:	learn: 28.3622191	total: 204ms	remaining: 293ms
41:	learn: 28.1346631	total: 209ms	remaining: 288ms
42:	learn: 27.9585719	total: 213ms	remaining: 282ms
43:	learn: 27.6565566	total: 216ms	remaining: 276ms
44:	learn: 27.3616172	total: 220ms	remaining: 269ms
45:	learn: 27.0658637	total: 225ms	remaining: 264ms
46:	learn: 26.8660382	total: 230ms	remaining: 259ms
47:	learn: 26.6536078	total: 235ms	remaining: 254ms
48:	learn: 26.3524440	total: 240ms	remaining: 250ms
49:	learn: 26.1595277	total: 245ms	remaining: 245ms
50:	learn: 25.9273523	total: 250ms	remaining: 240ms
51:	learn: 25.7195580	total: 254ms	remaining: 235ms
52:	learn: 25.5730225	total: 260ms	remaining: 230ms
53:	learn: 25.3455276	total: 269ms	remaining: 229ms
54:	learn: 25.2289675	total: 277ms	remaining: 227ms
55:	learn: 25.0133024	total: 288ms	remaining: 226ms
56:	learn: 24.8406714	total: 297ms	remaining: 224ms
57:	learn: 24.6367857	total: 302ms	remaining: 219ms
58:	learn: 24.5338177	total: 308ms	remaining: 214ms
59:	learn: 24.3799964	total: 314ms	remaining: 210ms
60:	learn: 24.1447492	total: 320ms	remaining: 204ms
61:	learn: 23.9880495	total: 325ms	remaining: 199ms
62:	learn: 23.7140630	total: 331ms	remaining: 194ms
63:	learn: 23.5003791	total: 336ms	remaining: 189ms
64:	learn: 23.3207645	total: 342ms	remaining: 184ms
65:	learn: 23.1958356	total: 348ms	remaining: 179ms
66:	learn: 23.0471302	total: 353ms	remaining: 174ms
67:	learn: 22.8977183	total: 357ms	remaining: 168ms
68:	learn: 22.7187400	total: 363ms	remaining: 163ms
69:	learn: 22.6523405	total: 369ms	remaining: 158ms
70:	learn: 22.4767453	total: 373ms	remaining: 152ms
71:	learn: 22.3243677	total: 378ms	remaining: 147ms
72:	learn: 22.2133096	total: 383ms	remaining: 142ms
73:	learn: 22.1151713	total: 389ms	remaining: 137ms
74:	learn: 22.0296666	total: 394ms	remaining: 131ms
75:	learn: 21.9195980	total: 400ms	remaining: 126ms
76:	learn: 21.8401730	total: 405ms	remaining: 121ms
77:	learn: 21.8079797	total: 410ms	remaining: 116ms
78:	learn: 21.7274109	total: 415ms	remaining: 110ms
79:	learn: 21.6663032	total: 421ms	remaining: 105ms
80:	learn: 21.5633117	total: 425ms	remaining: 99.8ms
81:	learn: 21.4542467	total: 430ms	remaining: 94.4ms
82:	learn: 21.3177957	total: 435ms	remaining: 89ms
83:	learn: 21.1289167	total: 440ms	remaining: 83.7ms
84:	learn: 21.0297368	total: 444ms	remaining: 78.4ms
85:	learn: 20.9089564	total: 449ms	remaining: 73.1ms
86:	learn: 20.7653988	total: 454ms	remaining: 67.8ms
87:	learn: 20.6521894	total: 459ms	remaining: 62.6ms
88:	learn: 20.5193021	total: 467ms	remaining: 57.8ms
89:	learn: 20.4361620	total: 474ms	remaining: 52.7ms
90:	learn: 20.3546710	total: 487ms	remaining: 48.2ms
91:	learn: 20.2513296	total: 494ms	remaining: 43ms
92:	learn: 20.1605550	total: 500ms	remaining: 37.6ms
93:	learn: 20.0515942	total: 505ms	remaining: 32.3ms
94:	learn: 19.9800764	total: 511ms	remaining: 26.9ms
95:	learn: 19.8996532	total: 516ms	remaining: 21.5ms
96:	learn: 19.8450910	total: 522ms	remaining: 16.1ms
97:	learn: 19.7887346	total: 527ms	remaining: 10.8ms
98:	learn: 19.7230872	total: 533ms	remaining: 5.38ms
99:	learn: 19.6328825	total: 539ms	remaining: 0us
0:	learn: 27.5585353	total: 4.5ms	remaining: 445ms
1:	learn: 27.1656995	total: 8.82ms	remaining: 432ms
2:	learn: 26.8590175	total: 13.4ms	remaining: 433ms
3:	learn: 26.5818406	total: 17.7ms	remaining: 424ms
4:	learn: 26.1148663	total: 21.6ms	remaining: 411ms
5:	learn: 25.7690484	total: 25.6ms	remaining: 401ms
6:	learn: 25.3489206	total: 30.1ms	remaining: 399ms
7:	learn: 24.9542406	total: 34.4ms	remaining: 396ms
8:	learn: 24.6777517	total: 38.6ms	remaining: 391ms
9:	learn: 24.3242344	total: 42.9ms	remaining: 386ms
10:	learn: 24.0383073	total: 47.6ms	remaining: 385ms
11:	learn: 23.7383420	total: 52.5ms	remaining: 385ms
12:	learn: 23.3461670	total: 57.1ms	remaining: 382ms
13:	learn: 23.0928636	total: 61.4ms	remaining: 377ms
14:	learn: 22.8770414	total: 66ms	remaining: 374ms
15:	learn: 22.6323214	total: 70.4ms	remaining: 370ms
16:	learn: 22.3597072	total: 74.9ms	remaining: 366ms
17:	learn: 22.1079813	total: 79.4ms	remaining: 362ms
18:	learn: 21.8421199	total: 86ms	remaining: 367ms
19:	learn: 21.6576508	total: 93.7ms	remaining: 375ms
20:	learn: 21.4301268	total: 101ms	remaining: 380ms
21:	learn: 21.2287388	total: 109ms	remaining: 386ms
22:	learn: 21.0553872	total: 117ms	remaining: 391ms
23:	learn: 20.8977091	total: 121ms	remaining: 385ms
24:	learn: 20.6619051	total: 127ms	remaining: 380ms
25:	learn: 20.5040955	total: 132ms	remaining: 376ms
26:	learn: 20.3181195	total: 137ms	remaining: 370ms
27:	learn: 20.0869436	total: 142ms	remaining: 365ms
28:	learn: 19.9375985	total: 147ms	remaining: 360ms
29:	learn: 19.8247516	total: 152ms	remaining: 356ms
30:	learn: 19.6261697	total: 157ms	remaining: 350ms
31:	learn: 19.4547236	total: 163ms	remaining: 346ms
32:	learn: 19.3157092	total: 168ms	remaining: 341ms
33:	learn: 19.1561419	total: 172ms	remaining: 335ms
34:	learn: 19.0453620	total: 178ms	remaining: 330ms
35:	learn: 18.8738574	total: 183ms	remaining: 325ms
36:	learn: 18.7072907	total: 188ms	remaining: 320ms
37:	learn: 18.5877943	total: 192ms	remaining: 313ms
38:	learn: 18.4436380	total: 196ms	remaining: 307ms
39:	learn: 18.3463356	total: 200ms	remaining: 300ms
40:	learn: 18.2008059	total: 204ms	remaining: 294ms
41:	learn: 18.0582079	total: 208ms	remaining: 288ms
42:	learn: 17.8891982	total: 212ms	remaining: 281ms
43:	learn: 17.7332246	total: 216ms	remaining: 275ms
44:	learn: 17.6206421	total: 221ms	remaining: 270ms
45:	learn: 17.4982800	total: 225ms	remaining: 264ms
46:	learn: 17.3970150	total: 229ms	remaining: 258ms
47:	learn: 17.3058203	total: 233ms	remaining: 253ms
48:	learn: 17.1789256	total: 238ms	remaining: 247ms
49:	learn: 17.0916229	total: 242ms	remaining: 242ms
50:	learn: 16.9859820	total: 246ms	remaining: 236ms
51:	learn: 16.8995582	total: 251ms	remaining: 231ms
52:	learn: 16.8137014	total: 255ms	remaining: 226ms
53:	learn: 16.7021451	total: 260ms	remaining: 221ms
54:	learn: 16.5895582	total: 264ms	remaining: 216ms
55:	learn: 16.5015639	total: 269ms	remaining: 212ms
56:	learn: 16.4356637	total: 274ms	remaining: 207ms
57:	learn: 16.3514525	total: 279ms	remaining: 202ms
58:	learn: 16.2401369	total: 286ms	remaining: 198ms
59:	learn: 16.1293223	total: 294ms	remaining: 196ms
60:	learn: 16.0271167	total: 301ms	remaining: 193ms
61:	learn: 15.9126257	total: 309ms	remaining: 189ms
62:	learn: 15.8391096	total: 316ms	remaining: 186ms
63:	learn: 15.7441773	total: 321ms	remaining: 181ms
64:	learn: 15.6885195	total: 327ms	remaining: 176ms
65:	learn: 15.6052039	total: 332ms	remaining: 171ms
66:	learn: 15.5074202	total: 337ms	remaining: 166ms
67:	learn: 15.4054338	total: 342ms	remaining: 161ms
68:	learn: 15.2885714	total: 347ms	remaining: 156ms
69:	learn: 15.2157472	total: 353ms	remaining: 151ms
70:	learn: 15.1031554	total: 358ms	remaining: 146ms
71:	learn: 15.0237470	total: 363ms	remaining: 141ms
72:	learn: 14.9756825	total: 368ms	remaining: 136ms
73:	learn: 14.8840596	total: 373ms	remaining: 131ms
74:	learn: 14.8077061	total: 378ms	remaining: 126ms
75:	learn: 14.7444437	total: 384ms	remaining: 121ms
76:	learn: 14.6751720	total: 389ms	remaining: 116ms
77:	learn: 14.5830333	total: 393ms	remaining: 111ms
78:	learn: 14.5241206	total: 397ms	remaining: 106ms
79:	learn: 14.4892731	total: 401ms	remaining: 100ms
80:	learn: 14.4256605	total: 405ms	remaining: 95ms
81:	learn: 14.3666860	total: 409ms	remaining: 89.8ms
82:	learn: 14.2938372	total: 413ms	remaining: 84.7ms
83:	learn: 14.2161532	total: 417ms	remaining: 79.5ms
84:	learn: 14.1582910	total: 421ms	remaining: 74.4ms
85:	learn: 14.1029153	total: 425ms	remaining: 69.3ms
86:	learn: 14.0475835	total: 430ms	remaining: 64.3ms
87:	learn: 13.9892661	total: 434ms	remaining: 59.2ms
88:	learn: 13.9481628	total: 438ms	remaining: 54.2ms
89:	learn: 13.8483991	total: 442ms	remaining: 49.2ms
90:	learn: 13.7775614	total: 447ms	remaining: 44.2ms
91:	learn: 13.7304585	total: 452ms	remaining: 39.3ms
92:	learn: 13.6783381	total: 456ms	remaining: 34.3ms
93:	learn: 13.6356964	total: 460ms	remaining: 29.4ms
94:	learn: 13.5924371	total: 465ms	remaining: 24.5ms
95:	learn: 13.5400746	total: 469ms	remaining: 19.6ms
96:	learn: 13.4897333	total: 474ms	remaining: 14.6ms
97:	learn: 13.4470321	total: 478ms	remaining: 9.76ms
98:	learn: 13.3856082	total: 486ms	remaining: 4.91ms
99:	learn: 13.3082371	total: 493ms	remaining: 0us
0:	learn: 43.0395283	total: 5.44ms	remaining: 539ms
1:	learn: 42.1130223	total: 10.5ms	remaining: 516ms
2:	learn: 41.1753409	total: 15.7ms	remaining: 507ms
3:	learn: 40.3637444	total: 20.7ms	remaining: 496ms
4:	learn: 39.6508088	total: 25.2ms	remaining: 479ms
5:	learn: 38.7217934	total: 30.8ms	remaining: 483ms
6:	learn: 37.8538055	total: 36.1ms	remaining: 480ms
7:	learn: 36.9793574	total: 41.1ms	remaining: 473ms
8:	learn: 36.3076984	total: 45.7ms	remaining: 462ms
9:	learn: 35.6673160	total: 49.6ms	remaining: 446ms
10:	learn: 34.8889800	total: 53.7ms	remaining: 435ms
11:	learn: 34.1675517	total: 57.9ms	remaining: 425ms
12:	learn: 33.6779564	total: 62ms	remaining: 415ms
13:	learn: 33.0710039	total: 66.1ms	remaining: 406ms
14:	learn: 32.4966674	total: 70ms	remaining: 397ms
15:	learn: 31.9492856	total: 73.9ms	remaining: 388ms
16:	learn: 31.5108129	total: 77.9ms	remaining: 380ms
17:	learn: 30.9804023	total: 82.3ms	remaining: 375ms
18:	learn: 30.4169089	total: 86.5ms	remaining: 369ms
19:	learn: 29.8930375	total: 90.9ms	remaining: 363ms
20:	learn: 29.3974421	total: 95.6ms	remaining: 360ms
21:	learn: 28.8792307	total: 100ms	remaining: 356ms
22:	learn: 28.3894474	total: 105ms	remaining: 351ms
23:	learn: 27.9921276	total: 109ms	remaining: 345ms
24:	learn: 27.6158887	total: 113ms	remaining: 339ms
25:	learn: 27.2866950	total: 118ms	remaining: 335ms
26:	learn: 26.8770708	total: 122ms	remaining: 331ms
27:	learn: 26.6233005	total: 127ms	remaining: 326ms
28:	learn: 26.2921934	total: 131ms	remaining: 321ms
29:	learn: 25.9156920	total: 136ms	remaining: 317ms
30:	learn: 25.5311106	total: 138ms	remaining: 306ms
31:	learn: 25.2178997	total: 142ms	remaining: 302ms
32:	learn: 24.8572196	total: 147ms	remaining: 298ms
33:	learn: 24.5849710	total: 152ms	remaining: 295ms
34:	learn: 24.2209190	total: 159ms	remaining: 296ms
35:	learn: 23.8708250	total: 167ms	remaining: 298ms
36:	learn: 23.5325279	total: 175ms	remaining: 298ms
37:	learn: 23.2116148	total: 184ms	remaining: 300ms
38:	learn: 22.9696787	total: 190ms	remaining: 296ms
39:	learn: 22.7936783	total: 195ms	remaining: 293ms
40:	learn: 22.6228847	total: 201ms	remaining: 289ms
41:	learn: 22.3691527	total: 206ms	remaining: 285ms
42:	learn: 22.1002173	total: 212ms	remaining: 280ms
43:	learn: 21.9157268	total: 216ms	remaining: 276ms
44:	learn: 21.7229102	total: 222ms	remaining: 271ms
45:	learn: 21.4642005	total: 227ms	remaining: 266ms
46:	learn: 21.3029442	total: 232ms	remaining: 262ms
47:	learn: 21.1469792	total: 238ms	remaining: 257ms
48:	learn: 20.9458235	total: 242ms	remaining: 252ms
49:	learn: 20.7335242	total: 246ms	remaining: 246ms
50:	learn: 20.5440269	total: 251ms	remaining: 241ms
51:	learn: 20.3661449	total: 256ms	remaining: 236ms
52:	learn: 20.2158134	total: 261ms	remaining: 231ms
53:	learn: 19.9934873	total: 266ms	remaining: 227ms
54:	learn: 19.7879739	total: 271ms	remaining: 222ms
55:	learn: 19.6630460	total: 275ms	remaining: 216ms
56:	learn: 19.5152729	total: 280ms	remaining: 211ms
57:	learn: 19.3581128	total: 284ms	remaining: 206ms
58:	learn: 19.2209303	total: 288ms	remaining: 200ms
59:	learn: 19.0965248	total: 293ms	remaining: 195ms
60:	learn: 19.0035954	total: 297ms	remaining: 190ms
61:	learn: 18.8554149	total: 301ms	remaining: 184ms
62:	learn: 18.7095427	total: 305ms	remaining: 179ms
63:	learn: 18.5751494	total: 310ms	remaining: 174ms
64:	learn: 18.4678251	total: 314ms	remaining: 169ms
65:	learn: 18.3500325	total: 319ms	remaining: 164ms
66:	learn: 18.2088983	total: 323ms	remaining: 159ms
67:	learn: 18.0737705	total: 328ms	remaining: 154ms
68:	learn: 17.9325058	total: 333ms	remaining: 150ms
69:	learn: 17.8003911	total: 338ms	remaining: 145ms
70:	learn: 17.7385366	total: 342ms	remaining: 140ms
71:	learn: 17.6106998	total: 347ms	remaining: 135ms
72:	learn: 17.4816270	total: 352ms	remaining: 130ms
73:	learn: 17.4025554	total: 361ms	remaining: 127ms
74:	learn: 17.2902108	total: 369ms	remaining: 123ms
75:	learn: 17.2158048	total: 378ms	remaining: 119ms
76:	learn: 17.1261053	total: 387ms	remaining: 116ms
77:	learn: 17.0308917	total: 392ms	remaining: 111ms
78:	learn: 16.9546705	total: 398ms	remaining: 106ms
79:	learn: 16.8319165	total: 404ms	remaining: 101ms
80:	learn: 16.7687017	total: 410ms	remaining: 96.1ms
81:	learn: 16.6972326	total: 415ms	remaining: 91.1ms
82:	learn: 16.6124580	total: 420ms	remaining: 86.1ms
83:	learn: 16.4999052	total: 425ms	remaining: 81ms
84:	learn: 16.4302484	total: 431ms	remaining: 76ms
85:	learn: 16.3201363	total: 436ms	remaining: 71ms
86:	learn: 16.2534314	total: 441ms	remaining: 65.9ms
87:	learn: 16.1720485	total: 446ms	remaining: 60.9ms
88:	learn: 16.0625751	total: 452ms	remaining: 55.8ms
89:	learn: 15.9135088	total: 457ms	remaining: 50.8ms
90:	learn: 15.8658863	total: 462ms	remaining: 45.7ms
91:	learn: 15.8066805	total: 466ms	remaining: 40.5ms
92:	learn: 15.7412103	total: 471ms	remaining: 35.4ms
93:	learn: 15.6542776	total: 475ms	remaining: 30.3ms
94:	learn: 15.5760334	total: 479ms	remaining: 25.2ms
95:	learn: 15.5434131	total: 484ms	remaining: 20.2ms
96:	learn: 15.4709561	total: 488ms	remaining: 15.1ms
97:	learn: 15.4449618	total: 492ms	remaining: 10ms
98:	learn: 15.3752761	total: 496ms	remaining: 5.01ms
99:	learn: 15.3106595	total: 500ms	remaining: 0us
0:	learn: 46.7142257	total: 8.35ms	remaining: 827ms
1:	learn: 45.7634153	total: 15.3ms	remaining: 747ms
2:	learn: 45.0054253	total: 23.4ms	remaining: 756ms
3:	learn: 44.2120432	total: 29.2ms	remaining: 701ms
4:	learn: 43.3960472	total: 36.4ms	remaining: 691ms
5:	learn: 42.8588120	total: 41.1ms	remaining: 644ms
6:	learn: 41.9533701	total: 46.9ms	remaining: 622ms
7:	learn: 41.2745030	total: 52.2ms	remaining: 600ms
8:	learn: 40.6797495	total: 57.2ms	remaining: 578ms
9:	learn: 39.9899571	total: 62.4ms	remaining: 561ms
10:	learn: 39.4682100	total: 67.4ms	remaining: 545ms
11:	learn: 39.0305595	total: 72.2ms	remaining: 530ms
12:	learn: 38.4200417	total: 77.1ms	remaining: 516ms
13:	learn: 37.8425194	total: 82.2ms	remaining: 505ms
14:	learn: 37.4203127	total: 87ms	remaining: 493ms
15:	learn: 36.9917688	total: 91.6ms	remaining: 481ms
16:	learn: 36.5544138	total: 96.6ms	remaining: 472ms
17:	learn: 36.0727019	total: 102ms	remaining: 466ms
18:	learn: 35.4835715	total: 108ms	remaining: 459ms
19:	learn: 34.9865654	total: 112ms	remaining: 450ms
20:	learn: 34.6063373	total: 117ms	remaining: 439ms
21:	learn: 34.0997289	total: 121ms	remaining: 430ms
22:	learn: 33.7313171	total: 126ms	remaining: 421ms
23:	learn: 33.3582000	total: 130ms	remaining: 413ms
24:	learn: 32.9432456	total: 135ms	remaining: 404ms
25:	learn: 32.5220888	total: 140ms	remaining: 398ms
26:	learn: 32.2172292	total: 145ms	remaining: 391ms
27:	learn: 31.8972904	total: 149ms	remaining: 383ms
28:	learn: 31.6405350	total: 153ms	remaining: 376ms
29:	learn: 31.4167702	total: 158ms	remaining: 369ms
30:	learn: 30.8541961	total: 160ms	remaining: 356ms
31:	learn: 30.5572111	total: 164ms	remaining: 349ms
32:	learn: 30.1700399	total: 169ms	remaining: 343ms
33:	learn: 29.8537271	total: 174ms	remaining: 337ms
34:	learn: 29.6192540	total: 179ms	remaining: 333ms
35:	learn: 29.3276362	total: 184ms	remaining: 328ms
36:	learn: 28.9985179	total: 189ms	remaining: 322ms
37:	learn: 28.7046880	total: 194ms	remaining: 317ms
38:	learn: 28.4412677	total: 199ms	remaining: 312ms
39:	learn: 28.1277292	total: 204ms	remaining: 306ms
40:	learn: 27.9000750	total: 209ms	remaining: 301ms
41:	learn: 27.5433162	total: 216ms	remaining: 298ms
42:	learn: 27.2493285	total: 224ms	remaining: 297ms
43:	learn: 26.9576632	total: 227ms	remaining: 289ms
44:	learn: 26.6177110	total: 236ms	remaining: 288ms
45:	learn: 26.2812456	total: 242ms	remaining: 284ms
46:	learn: 26.0803859	total: 248ms	remaining: 280ms
47:	learn: 25.9543581	total: 254ms	remaining: 275ms
48:	learn: 25.7951582	total: 259ms	remaining: 270ms
49:	learn: 25.6548184	total: 265ms	remaining: 265ms
50:	learn: 25.4010843	total: 270ms	remaining: 259ms
51:	learn: 24.9773937	total: 275ms	remaining: 254ms
52:	learn: 24.8026156	total: 281ms	remaining: 249ms
53:	learn: 24.5568053	total: 286ms	remaining: 244ms
54:	learn: 24.2281839	total: 292ms	remaining: 239ms
55:	learn: 23.9202795	total: 297ms	remaining: 233ms
56:	learn: 23.7625591	total: 302ms	remaining: 228ms
57:	learn: 23.5429721	total: 308ms	remaining: 223ms
58:	learn: 23.3175893	total: 313ms	remaining: 217ms
59:	learn: 23.2035130	total: 318ms	remaining: 212ms
60:	learn: 23.0232450	total: 324ms	remaining: 207ms
61:	learn: 22.8384958	total: 328ms	remaining: 201ms
62:	learn: 22.6499902	total: 332ms	remaining: 195ms
63:	learn: 22.4577426	total: 337ms	remaining: 189ms
64:	learn: 22.3333158	total: 341ms	remaining: 184ms
65:	learn: 22.2064131	total: 346ms	remaining: 178ms
66:	learn: 22.1434971	total: 351ms	remaining: 173ms
67:	learn: 21.9596519	total: 355ms	remaining: 167ms
68:	learn: 21.8475576	total: 360ms	remaining: 162ms
69:	learn: 21.6954745	total: 364ms	remaining: 156ms
70:	learn: 21.5635976	total: 369ms	remaining: 151ms
71:	learn: 21.4588506	total: 374ms	remaining: 145ms
72:	learn: 21.3527268	total: 379ms	remaining: 140ms
73:	learn: 21.2661288	total: 384ms	remaining: 135ms
74:	learn: 21.1817333	total: 389ms	remaining: 130ms
75:	learn: 21.0527553	total: 393ms	remaining: 124ms
76:	learn: 20.9229021	total: 397ms	remaining: 119ms
77:	learn: 20.7563946	total: 402ms	remaining: 113ms
78:	learn: 20.6569831	total: 407ms	remaining: 108ms
79:	learn: 20.4982663	total: 415ms	remaining: 104ms
80:	learn: 20.3185460	total: 422ms	remaining: 98.9ms
81:	learn: 20.2096241	total: 430ms	remaining: 94.3ms
82:	learn: 20.1274891	total: 435ms	remaining: 89.2ms
83:	learn: 20.0740139	total: 442ms	remaining: 84.2ms
84:	learn: 19.9630699	total: 448ms	remaining: 79ms
85:	learn: 19.8753899	total: 453ms	remaining: 73.7ms
86:	learn: 19.6563612	total: 458ms	remaining: 68.5ms
87:	learn: 19.4680232	total: 463ms	remaining: 63.2ms
88:	learn: 19.3503431	total: 468ms	remaining: 57.9ms
89:	learn: 19.2221379	total: 473ms	remaining: 52.6ms
90:	learn: 19.0732542	total: 478ms	remaining: 47.3ms
91:	learn: 18.9825190	total: 483ms	remaining: 42ms
92:	learn: 18.8839009	total: 488ms	remaining: 36.7ms
93:	learn: 18.8012219	total: 493ms	remaining: 31.5ms
94:	learn: 18.7172713	total: 498ms	remaining: 26.2ms
95:	learn: 18.6201170	total: 503ms	remaining: 21ms
96:	learn: 18.5318611	total: 509ms	remaining: 15.7ms
97:	learn: 18.3833356	total: 513ms	remaining: 10.5ms
98:	learn: 18.3289700	total: 518ms	remaining: 5.23ms
99:	learn: 18.2227333	total: 521ms	remaining: 0us
0:	learn: 46.3764524	total: 5.32ms	remaining: 527ms
1:	learn: 45.5561269	total: 9.72ms	remaining: 476ms
2:	learn: 44.8811245	total: 13.8ms	remaining: 448ms
3:	learn: 44.0788617	total: 18.4ms	remaining: 441ms
4:	learn: 43.3619790	total: 22.8ms	remaining: 434ms
5:	learn: 42.6912112	total: 27.2ms	remaining: 427ms
6:	learn: 42.2292118	total: 31.4ms	remaining: 418ms
7:	learn: 41.7725191	total: 36.1ms	remaining: 415ms
8:	learn: 41.1676614	total: 41.3ms	remaining: 417ms
9:	learn: 40.5771076	total: 48.5ms	remaining: 436ms
10:	learn: 39.8343757	total: 55.5ms	remaining: 449ms
11:	learn: 39.3761142	total: 64.1ms	remaining: 470ms
12:	learn: 38.5254692	total: 69.8ms	remaining: 467ms
13:	learn: 37.9629555	total: 77.3ms	remaining: 475ms
14:	learn: 37.4418438	total: 82.8ms	remaining: 469ms
15:	learn: 37.0507283	total: 88.2ms	remaining: 463ms
16:	learn: 36.6264217	total: 93.6ms	remaining: 457ms
17:	learn: 36.1114940	total: 99.2ms	remaining: 452ms
18:	learn: 35.7193862	total: 105ms	remaining: 446ms
19:	learn: 35.3301177	total: 110ms	remaining: 441ms
20:	learn: 35.0598280	total: 116ms	remaining: 436ms
21:	learn: 34.5469736	total: 121ms	remaining: 428ms
22:	learn: 34.2064215	total: 126ms	remaining: 421ms
23:	learn: 33.7280710	total: 131ms	remaining: 414ms
24:	learn: 33.3282940	total: 136ms	remaining: 407ms
25:	learn: 32.8478961	total: 141ms	remaining: 402ms
26:	learn: 32.5722164	total: 147ms	remaining: 397ms
27:	learn: 32.2457019	total: 151ms	remaining: 388ms
28:	learn: 31.9230495	total: 155ms	remaining: 380ms
29:	learn: 31.4311611	total: 160ms	remaining: 373ms
30:	learn: 30.9179052	total: 164ms	remaining: 366ms
31:	learn: 30.6201141	total: 168ms	remaining: 357ms
32:	learn: 30.3421106	total: 172ms	remaining: 350ms
33:	learn: 29.9885373	total: 176ms	remaining: 343ms
34:	learn: 29.7462780	total: 180ms	remaining: 335ms
35:	learn: 29.3607153	total: 185ms	remaining: 329ms
36:	learn: 29.1793078	total: 189ms	remaining: 322ms
37:	learn: 28.9276538	total: 194ms	remaining: 316ms
38:	learn: 28.6903934	total: 198ms	remaining: 310ms
39:	learn: 28.2095033	total: 202ms	remaining: 304ms
40:	learn: 27.7990608	total: 206ms	remaining: 297ms
41:	learn: 27.5406632	total: 216ms	remaining: 298ms
42:	learn: 27.2575376	total: 221ms	remaining: 292ms
43:	learn: 26.9741707	total: 225ms	remaining: 287ms
44:	learn: 26.6606899	total: 230ms	remaining: 281ms
45:	learn: 26.4015833	total: 235ms	remaining: 275ms
46:	learn: 26.1828993	total: 239ms	remaining: 269ms
47:	learn: 26.0233709	total: 242ms	remaining: 262ms
48:	learn: 25.9300399	total: 247ms	remaining: 257ms
49:	learn: 25.5861489	total: 252ms	remaining: 252ms
50:	learn: 25.4322012	total: 261ms	remaining: 251ms
51:	learn: 25.1595644	total: 270ms	remaining: 249ms
52:	learn: 24.9955303	total: 280ms	remaining: 248ms
53:	learn: 24.7273966	total: 288ms	remaining: 246ms
54:	learn: 24.5747978	total: 293ms	remaining: 240ms
55:	learn: 24.3807977	total: 299ms	remaining: 235ms
56:	learn: 24.1689569	total: 304ms	remaining: 230ms
57:	learn: 23.9898221	total: 309ms	remaining: 224ms
58:	learn: 23.7566414	total: 315ms	remaining: 219ms
59:	learn: 23.6641165	total: 321ms	remaining: 214ms
60:	learn: 23.5658066	total: 326ms	remaining: 208ms
61:	learn: 23.4338851	total: 331ms	remaining: 203ms
62:	learn: 23.2408837	total: 336ms	remaining: 197ms
63:	learn: 23.0642038	total: 341ms	remaining: 192ms
64:	learn: 22.9032045	total: 346ms	remaining: 186ms
65:	learn: 22.7736138	total: 352ms	remaining: 181ms
66:	learn: 22.6836443	total: 358ms	remaining: 176ms
67:	learn: 22.5983654	total: 363ms	remaining: 171ms
68:	learn: 22.4419813	total: 368ms	remaining: 165ms
69:	learn: 22.2863339	total: 372ms	remaining: 159ms
70:	learn: 22.1792943	total: 376ms	remaining: 154ms
71:	learn: 22.1130574	total: 380ms	remaining: 148ms
72:	learn: 21.9858161	total: 384ms	remaining: 142ms
73:	learn: 21.8577784	total: 388ms	remaining: 136ms
74:	learn: 21.7845222	total: 392ms	remaining: 131ms
75:	learn: 21.6831390	total: 396ms	remaining: 125ms
76:	learn: 21.6292521	total: 401ms	remaining: 120ms
77:	learn: 21.5789330	total: 405ms	remaining: 114ms
78:	learn: 21.5420942	total: 409ms	remaining: 109ms
79:	learn: 21.4280939	total: 413ms	remaining: 103ms
80:	learn: 21.3641165	total: 417ms	remaining: 97.9ms
81:	learn: 21.2734814	total: 422ms	remaining: 92.7ms
82:	learn: 21.2220323	total: 427ms	remaining: 87.4ms
83:	learn: 21.0625792	total: 431ms	remaining: 82.2ms
84:	learn: 20.9488320	total: 436ms	remaining: 76.9ms
85:	learn: 20.8504255	total: 440ms	remaining: 71.6ms
86:	learn: 20.7848510	total: 444ms	remaining: 66.4ms
87:	learn: 20.7247442	total: 449ms	remaining: 61.2ms
88:	learn: 20.5698590	total: 457ms	remaining: 56.5ms
89:	learn: 20.4067620	total: 465ms	remaining: 51.6ms
90:	learn: 20.3062482	total: 474ms	remaining: 46.9ms
91:	learn: 20.2029696	total: 480ms	remaining: 41.7ms
92:	learn: 20.1384849	total: 487ms	remaining: 36.6ms
93:	learn: 20.0260709	total: 492ms	remaining: 31.4ms
94:	learn: 19.9122100	total: 497ms	remaining: 26.2ms
95:	learn: 19.8648487	total: 502ms	remaining: 20.9ms
96:	learn: 19.8207072	total: 507ms	remaining: 15.7ms
97:	learn: 19.7261189	total: 512ms	remaining: 10.5ms
98:	learn: 19.7042438	total: 517ms	remaining: 5.22ms
99:	learn: 19.6546645	total: 522ms	remaining: 0us
0:	learn: 47.0239288	total: 4.41ms	remaining: 436ms
1:	learn: 46.2253829	total: 8.35ms	remaining: 409ms
2:	learn: 45.5580301	total: 12.6ms	remaining: 406ms
3:	learn: 44.7273237	total: 16.5ms	remaining: 396ms
4:	learn: 43.8867421	total: 20.3ms	remaining: 386ms
5:	learn: 43.3615911	total: 24.4ms	remaining: 382ms
6:	learn: 42.8548390	total: 28.3ms	remaining: 376ms
7:	learn: 42.1606758	total: 32.5ms	remaining: 374ms
8:	learn: 41.6625870	total: 36.9ms	remaining: 373ms
9:	learn: 40.9497092	total: 41.4ms	remaining: 372ms
10:	learn: 40.1886318	total: 45.5ms	remaining: 368ms
11:	learn: 39.7456423	total: 50.5ms	remaining: 370ms
12:	learn: 39.1171373	total: 54.9ms	remaining: 367ms
13:	learn: 38.5451069	total: 59.2ms	remaining: 364ms
14:	learn: 38.0155834	total: 63.8ms	remaining: 362ms
15:	learn: 37.5631354	total: 68.1ms	remaining: 358ms
16:	learn: 37.1030023	total: 73ms	remaining: 356ms
17:	learn: 36.4563029	total: 77.2ms	remaining: 352ms
18:	learn: 36.0160976	total: 82ms	remaining: 349ms
19:	learn: 35.5079827	total: 89ms	remaining: 356ms
20:	learn: 35.2111885	total: 96.6ms	remaining: 363ms
21:	learn: 34.9397465	total: 104ms	remaining: 370ms
22:	learn: 34.5270048	total: 111ms	remaining: 371ms
23:	learn: 34.0169260	total: 118ms	remaining: 375ms
24:	learn: 33.7454892	total: 123ms	remaining: 370ms
25:	learn: 33.2648157	total: 128ms	remaining: 365ms
26:	learn: 32.8899427	total: 133ms	remaining: 361ms
27:	learn: 32.6185050	total: 138ms	remaining: 356ms
28:	learn: 32.3528531	total: 143ms	remaining: 351ms
29:	learn: 32.0859923	total: 149ms	remaining: 347ms
30:	learn: 31.6511144	total: 155ms	remaining: 344ms
31:	learn: 31.2571765	total: 160ms	remaining: 340ms
32:	learn: 30.9770049	total: 165ms	remaining: 336ms
33:	learn: 30.6084872	total: 171ms	remaining: 332ms
34:	learn: 30.3448632	total: 176ms	remaining: 326ms
35:	learn: 30.0360942	total: 182ms	remaining: 323ms
36:	learn: 29.6648968	total: 187ms	remaining: 318ms
37:	learn: 29.3165114	total: 191ms	remaining: 312ms
38:	learn: 29.0829198	total: 195ms	remaining: 305ms
39:	learn: 28.7752064	total: 199ms	remaining: 299ms
40:	learn: 28.3622191	total: 203ms	remaining: 293ms
41:	learn: 28.1346631	total: 208ms	remaining: 287ms
42:	learn: 27.9585719	total: 212ms	remaining: 281ms
43:	learn: 27.6565566	total: 216ms	remaining: 275ms
44:	learn: 27.3616172	total: 220ms	remaining: 269ms
45:	learn: 27.0658637	total: 224ms	remaining: 263ms
46:	learn: 26.8660382	total: 228ms	remaining: 257ms
47:	learn: 26.6536078	total: 232ms	remaining: 251ms
48:	learn: 26.3524440	total: 236ms	remaining: 245ms
49:	learn: 26.1595277	total: 240ms	remaining: 240ms
50:	learn: 25.9273523	total: 244ms	remaining: 234ms
51:	learn: 25.7195580	total: 249ms	remaining: 229ms
52:	learn: 25.5730225	total: 253ms	remaining: 224ms
53:	learn: 25.3455276	total: 258ms	remaining: 220ms
54:	learn: 25.2289675	total: 262ms	remaining: 215ms
55:	learn: 25.0133024	total: 267ms	remaining: 210ms
56:	learn: 24.8406714	total: 271ms	remaining: 204ms
57:	learn: 24.6367857	total: 275ms	remaining: 199ms
58:	learn: 24.5338177	total: 279ms	remaining: 194ms
59:	learn: 24.3799964	total: 289ms	remaining: 193ms
60:	learn: 24.1447492	total: 296ms	remaining: 190ms
61:	learn: 23.9880495	total: 304ms	remaining: 186ms
62:	learn: 23.7140630	total: 310ms	remaining: 182ms
63:	learn: 23.5003791	total: 316ms	remaining: 178ms
64:	learn: 23.3207645	total: 321ms	remaining: 173ms
65:	learn: 23.1958356	total: 326ms	remaining: 168ms
66:	learn: 23.0471302	total: 334ms	remaining: 165ms
67:	learn: 22.8977183	total: 339ms	remaining: 160ms
68:	learn: 22.7187400	total: 345ms	remaining: 155ms
69:	learn: 22.6523405	total: 350ms	remaining: 150ms
70:	learn: 22.4767453	total: 355ms	remaining: 145ms
71:	learn: 22.3243677	total: 359ms	remaining: 140ms
72:	learn: 22.2133096	total: 365ms	remaining: 135ms
73:	learn: 22.1151713	total: 370ms	remaining: 130ms
74:	learn: 22.0296666	total: 374ms	remaining: 125ms
75:	learn: 21.9195980	total: 380ms	remaining: 120ms
76:	learn: 21.8401730	total: 385ms	remaining: 115ms
77:	learn: 21.8079797	total: 390ms	remaining: 110ms
78:	learn: 21.7274109	total: 394ms	remaining: 105ms
79:	learn: 21.6663032	total: 398ms	remaining: 99.6ms
80:	learn: 21.5633117	total: 402ms	remaining: 94.3ms
81:	learn: 21.4542467	total: 406ms	remaining: 89.1ms
82:	learn: 21.3177957	total: 410ms	remaining: 83.9ms
83:	learn: 21.1289167	total: 414ms	remaining: 78.8ms
84:	learn: 21.0297368	total: 418ms	remaining: 73.7ms
85:	learn: 20.9089564	total: 421ms	remaining: 68.6ms
86:	learn: 20.7653988	total: 425ms	remaining: 63.6ms
87:	learn: 20.6521894	total: 430ms	remaining: 58.6ms
88:	learn: 20.5193021	total: 434ms	remaining: 53.6ms
89:	learn: 20.4361620	total: 437ms	remaining: 48.6ms
90:	learn: 20.3546710	total: 442ms	remaining: 43.7ms
91:	learn: 20.2513296	total: 446ms	remaining: 38.8ms
92:	learn: 20.1605550	total: 451ms	remaining: 33.9ms
93:	learn: 20.0515942	total: 455ms	remaining: 29ms
94:	learn: 19.9800764	total: 460ms	remaining: 24.2ms
95:	learn: 19.8996532	total: 464ms	remaining: 19.4ms
96:	learn: 19.8450910	total: 469ms	remaining: 14.5ms
97:	learn: 19.7887346	total: 473ms	remaining: 9.66ms
98:	learn: 19.7230872	total: 478ms	remaining: 4.83ms
99:	learn: 19.6328825	total: 486ms	remaining: 0us
0:	learn: 27.5585353	total: 5.88ms	remaining: 582ms
1:	learn: 27.1656995	total: 10.9ms	remaining: 534ms
2:	learn: 26.8590175	total: 16.3ms	remaining: 527ms
3:	learn: 26.5818406	total: 21ms	remaining: 503ms
4:	learn: 26.1148663	total: 25.8ms	remaining: 490ms
5:	learn: 25.7690484	total: 31.1ms	remaining: 487ms
6:	learn: 25.3489206	total: 36.7ms	remaining: 488ms
7:	learn: 24.9542406	total: 41.2ms	remaining: 474ms
8:	learn: 24.6777517	total: 45.8ms	remaining: 463ms
9:	learn: 24.3242344	total: 50.3ms	remaining: 452ms
10:	learn: 24.0383073	total: 54.4ms	remaining: 440ms
11:	learn: 23.7383420	total: 58.7ms	remaining: 430ms
12:	learn: 23.3461670	total: 62.5ms	remaining: 418ms
13:	learn: 23.0928636	total: 66.8ms	remaining: 410ms
14:	learn: 22.8770414	total: 70.8ms	remaining: 401ms
15:	learn: 22.6323214	total: 74.5ms	remaining: 391ms
16:	learn: 22.3597072	total: 78.5ms	remaining: 383ms
17:	learn: 22.1079813	total: 82.5ms	remaining: 376ms
18:	learn: 21.8421199	total: 87.1ms	remaining: 371ms
19:	learn: 21.6576508	total: 91.2ms	remaining: 365ms
20:	learn: 21.4301268	total: 95.3ms	remaining: 359ms
21:	learn: 21.2287388	total: 99.1ms	remaining: 351ms
22:	learn: 21.0553872	total: 104ms	remaining: 347ms
23:	learn: 20.8977091	total: 108ms	remaining: 341ms
24:	learn: 20.6619051	total: 112ms	remaining: 337ms
25:	learn: 20.5040955	total: 117ms	remaining: 334ms
26:	learn: 20.3181195	total: 122ms	remaining: 331ms
27:	learn: 20.0869436	total: 127ms	remaining: 327ms
28:	learn: 19.9375985	total: 132ms	remaining: 323ms
29:	learn: 19.8247516	total: 137ms	remaining: 319ms
30:	learn: 19.6261697	total: 145ms	remaining: 322ms
31:	learn: 19.4547236	total: 153ms	remaining: 326ms
32:	learn: 19.3157092	total: 162ms	remaining: 330ms
33:	learn: 19.1561419	total: 168ms	remaining: 326ms
34:	learn: 19.0453620	total: 175ms	remaining: 325ms
35:	learn: 18.8738574	total: 180ms	remaining: 320ms
36:	learn: 18.7072907	total: 185ms	remaining: 316ms
37:	learn: 18.5877943	total: 191ms	remaining: 311ms
38:	learn: 18.4436380	total: 196ms	remaining: 306ms
39:	learn: 18.3463356	total: 201ms	remaining: 301ms
40:	learn: 18.2008059	total: 206ms	remaining: 296ms
41:	learn: 18.0582079	total: 211ms	remaining: 292ms
42:	learn: 17.8891982	total: 216ms	remaining: 287ms
43:	learn: 17.7332246	total: 221ms	remaining: 281ms
44:	learn: 17.6206421	total: 227ms	remaining: 277ms
45:	learn: 17.4982800	total: 231ms	remaining: 271ms
46:	learn: 17.3970150	total: 236ms	remaining: 266ms
47:	learn: 17.3058203	total: 242ms	remaining: 262ms
48:	learn: 17.1789256	total: 247ms	remaining: 257ms
49:	learn: 17.0916229	total: 250ms	remaining: 250ms
50:	learn: 16.9859820	total: 255ms	remaining: 245ms
51:	learn: 16.8995582	total: 259ms	remaining: 239ms
52:	learn: 16.8137014	total: 263ms	remaining: 233ms
53:	learn: 16.7021451	total: 267ms	remaining: 227ms
54:	learn: 16.5895582	total: 270ms	remaining: 221ms
55:	learn: 16.5015639	total: 275ms	remaining: 216ms
56:	learn: 16.4356637	total: 279ms	remaining: 211ms
57:	learn: 16.3514525	total: 284ms	remaining: 205ms
58:	learn: 16.2401369	total: 288ms	remaining: 200ms
59:	learn: 16.1293223	total: 291ms	remaining: 194ms
60:	learn: 16.0271167	total: 296ms	remaining: 189ms
61:	learn: 15.9126257	total: 300ms	remaining: 184ms
62:	learn: 15.8391096	total: 304ms	remaining: 179ms
63:	learn: 15.7441773	total: 309ms	remaining: 174ms
64:	learn: 15.6885195	total: 314ms	remaining: 169ms
65:	learn: 15.6052039	total: 318ms	remaining: 164ms
66:	learn: 15.5074202	total: 323ms	remaining: 159ms
67:	learn: 15.4054338	total: 327ms	remaining: 154ms
68:	learn: 15.2885714	total: 332ms	remaining: 149ms
69:	learn: 15.2157472	total: 339ms	remaining: 145ms
70:	learn: 15.1031554	total: 346ms	remaining: 141ms
71:	learn: 15.0237470	total: 353ms	remaining: 137ms
72:	learn: 14.9756825	total: 361ms	remaining: 133ms
73:	learn: 14.8840596	total: 369ms	remaining: 130ms
74:	learn: 14.8077061	total: 374ms	remaining: 125ms
75:	learn: 14.7444437	total: 379ms	remaining: 120ms
76:	learn: 14.6751720	total: 384ms	remaining: 115ms
77:	learn: 14.5830333	total: 390ms	remaining: 110ms
78:	learn: 14.5241206	total: 394ms	remaining: 105ms
79:	learn: 14.4892731	total: 400ms	remaining: 99.9ms
80:	learn: 14.4256605	total: 405ms	remaining: 94.9ms
81:	learn: 14.3666860	total: 410ms	remaining: 89.9ms
82:	learn: 14.2938372	total: 415ms	remaining: 84.9ms
83:	learn: 14.2161532	total: 420ms	remaining: 80ms
84:	learn: 14.1582910	total: 425ms	remaining: 75ms
85:	learn: 14.1029153	total: 430ms	remaining: 69.9ms
86:	learn: 14.0475835	total: 435ms	remaining: 65ms
87:	learn: 13.9892661	total: 441ms	remaining: 60.1ms
88:	learn: 13.9481628	total: 445ms	remaining: 55ms
89:	learn: 13.8483991	total: 449ms	remaining: 49.9ms
90:	learn: 13.7775614	total: 453ms	remaining: 44.8ms
91:	learn: 13.7304585	total: 457ms	remaining: 39.8ms
92:	learn: 13.6783381	total: 462ms	remaining: 34.8ms
93:	learn: 13.6356964	total: 467ms	remaining: 29.8ms
94:	learn: 13.5924371	total: 471ms	remaining: 24.8ms
95:	learn: 13.5400746	total: 475ms	remaining: 19.8ms
96:	learn: 13.4897333	total: 479ms	remaining: 14.8ms
97:	learn: 13.4470321	total: 484ms	remaining: 9.87ms
98:	learn: 13.3856082	total: 488ms	remaining: 4.93ms
99:	learn: 13.3082371	total: 493ms	remaining: 0us
0:	learn: 43.0395283	total: 8.38ms	remaining: 830ms
1:	learn: 42.1130223	total: 16.1ms	remaining: 789ms
2:	learn: 41.1753409	total: 21ms	remaining: 679ms
3:	learn: 40.3637444	total: 26ms	remaining: 625ms
4:	learn: 39.6508088	total: 31.1ms	remaining: 590ms
5:	learn: 38.7217934	total: 36.3ms	remaining: 569ms
6:	learn: 37.8538055	total: 41.3ms	remaining: 549ms
7:	learn: 36.9793574	total: 46.2ms	remaining: 532ms
8:	learn: 36.3076984	total: 51.7ms	remaining: 523ms
9:	learn: 35.6673160	total: 57ms	remaining: 513ms
10:	learn: 34.8889800	total: 62.1ms	remaining: 502ms
11:	learn: 34.1675517	total: 67ms	remaining: 492ms
12:	learn: 33.6779564	total: 72ms	remaining: 482ms
13:	learn: 33.0710039	total: 77ms	remaining: 473ms
14:	learn: 32.4966674	total: 82.5ms	remaining: 468ms
15:	learn: 31.9492856	total: 87.7ms	remaining: 460ms
16:	learn: 31.5108129	total: 91.7ms	remaining: 447ms
17:	learn: 30.9804023	total: 95.7ms	remaining: 436ms
18:	learn: 30.4169089	total: 100ms	remaining: 426ms
19:	learn: 29.8930375	total: 104ms	remaining: 416ms
20:	learn: 29.3974421	total: 108ms	remaining: 407ms
21:	learn: 28.8792307	total: 112ms	remaining: 397ms
22:	learn: 28.3894474	total: 116ms	remaining: 388ms
23:	learn: 27.9921276	total: 120ms	remaining: 381ms
24:	learn: 27.6158887	total: 124ms	remaining: 372ms
25:	learn: 27.2866950	total: 128ms	remaining: 365ms
26:	learn: 26.8770708	total: 132ms	remaining: 358ms
27:	learn: 26.6233005	total: 137ms	remaining: 351ms
28:	learn: 26.2921934	total: 141ms	remaining: 345ms
29:	learn: 25.9156920	total: 145ms	remaining: 338ms
30:	learn: 25.5311106	total: 146ms	remaining: 326ms
31:	learn: 25.2178997	total: 150ms	remaining: 320ms
32:	learn: 24.8572196	total: 155ms	remaining: 315ms
33:	learn: 24.5849710	total: 159ms	remaining: 308ms
34:	learn: 24.2209190	total: 163ms	remaining: 303ms
35:	learn: 23.8708250	total: 168ms	remaining: 298ms
36:	learn: 23.5325279	total: 173ms	remaining: 294ms
37:	learn: 23.2116148	total: 177ms	remaining: 289ms
38:	learn: 22.9696787	total: 182ms	remaining: 284ms
39:	learn: 22.7936783	total: 186ms	remaining: 279ms
40:	learn: 22.6228847	total: 190ms	remaining: 274ms
41:	learn: 22.3691527	total: 195ms	remaining: 269ms
42:	learn: 22.1002173	total: 200ms	remaining: 265ms
43:	learn: 21.9157268	total: 206ms	remaining: 263ms
44:	learn: 21.7229102	total: 214ms	remaining: 262ms
45:	learn: 21.4642005	total: 225ms	remaining: 264ms
46:	learn: 21.3029442	total: 231ms	remaining: 261ms
47:	learn: 21.1469792	total: 240ms	remaining: 260ms
48:	learn: 20.9458235	total: 245ms	remaining: 255ms
49:	learn: 20.7335242	total: 250ms	remaining: 250ms
50:	learn: 20.5440269	total: 256ms	remaining: 246ms
51:	learn: 20.3661449	total: 261ms	remaining: 241ms
52:	learn: 20.2158134	total: 266ms	remaining: 236ms
53:	learn: 19.9934873	total: 272ms	remaining: 232ms
54:	learn: 19.7879739	total: 278ms	remaining: 227ms
55:	learn: 19.6630460	total: 283ms	remaining: 222ms
56:	learn: 19.5152729	total: 288ms	remaining: 217ms
57:	learn: 19.3581128	total: 293ms	remaining: 212ms
58:	learn: 19.2209303	total: 298ms	remaining: 207ms
59:	learn: 19.0965248	total: 304ms	remaining: 203ms
60:	learn: 19.0035954	total: 309ms	remaining: 198ms
61:	learn: 18.8554149	total: 313ms	remaining: 192ms
62:	learn: 18.7095427	total: 318ms	remaining: 187ms
63:	learn: 18.5751494	total: 322ms	remaining: 181ms
64:	learn: 18.4678251	total: 327ms	remaining: 176ms
65:	learn: 18.3500325	total: 331ms	remaining: 171ms
66:	learn: 18.2088983	total: 335ms	remaining: 165ms
67:	learn: 18.0737705	total: 339ms	remaining: 160ms
68:	learn: 17.9325058	total: 344ms	remaining: 154ms
69:	learn: 17.8003911	total: 348ms	remaining: 149ms
70:	learn: 17.7385366	total: 352ms	remaining: 144ms
71:	learn: 17.6106998	total: 356ms	remaining: 139ms
72:	learn: 17.4816270	total: 361ms	remaining: 133ms
73:	learn: 17.4025554	total: 365ms	remaining: 128ms
74:	learn: 17.2902108	total: 370ms	remaining: 123ms
75:	learn: 17.2158048	total: 374ms	remaining: 118ms
76:	learn: 17.1261053	total: 379ms	remaining: 113ms
77:	learn: 17.0308917	total: 384ms	remaining: 108ms
78:	learn: 16.9546705	total: 389ms	remaining: 103ms
79:	learn: 16.8319165	total: 394ms	remaining: 98.4ms
80:	learn: 16.7687017	total: 399ms	remaining: 93.5ms
81:	learn: 16.6972326	total: 407ms	remaining: 89.3ms
82:	learn: 16.6124580	total: 414ms	remaining: 84.9ms
83:	learn: 16.4999052	total: 423ms	remaining: 80.5ms
84:	learn: 16.4302484	total: 429ms	remaining: 75.7ms
85:	learn: 16.3201363	total: 434ms	remaining: 70.7ms
86:	learn: 16.2534314	total: 439ms	remaining: 65.6ms
87:	learn: 16.1720485	total: 444ms	remaining: 60.5ms
88:	learn: 16.0625751	total: 449ms	remaining: 55.5ms
89:	learn: 15.9135088	total: 455ms	remaining: 50.5ms
90:	learn: 15.8658863	total: 460ms	remaining: 45.5ms
91:	learn: 15.8066805	total: 466ms	remaining: 40.5ms
92:	learn: 15.7412103	total: 471ms	remaining: 35.4ms
93:	learn: 15.6542776	total: 476ms	remaining: 30.4ms
94:	learn: 15.5760334	total: 480ms	remaining: 25.3ms
95:	learn: 15.5434131	total: 485ms	remaining: 20.2ms
96:	learn: 15.4709561	total: 490ms	remaining: 15.1ms
97:	learn: 15.4449618	total: 495ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 501ms	remaining: 5.06ms
99:	learn: 15.3106595	total: 505ms	remaining: 0us
0:	learn: 46.7142257	total: 4.75ms	remaining: 470ms
1:	learn: 45.7634153	total: 9.61ms	remaining: 471ms
2:	learn: 45.0054253	total: 13.9ms	remaining: 450ms
3:	learn: 44.2120432	total: 18.7ms	remaining: 448ms
4:	learn: 43.3960472	total: 23.5ms	remaining: 446ms
5:	learn: 42.8588120	total: 30.8ms	remaining: 483ms
6:	learn: 41.9533701	total: 38.2ms	remaining: 507ms
7:	learn: 41.2745030	total: 47.6ms	remaining: 547ms
8:	learn: 40.6797495	total: 53.1ms	remaining: 537ms
9:	learn: 39.9899571	total: 59.6ms	remaining: 536ms
10:	learn: 39.4682100	total: 64.9ms	remaining: 525ms
11:	learn: 39.0305595	total: 70.4ms	remaining: 516ms
12:	learn: 38.4200417	total: 75.5ms	remaining: 506ms
13:	learn: 37.8425194	total: 80.5ms	remaining: 494ms
14:	learn: 37.4203127	total: 85.4ms	remaining: 484ms
15:	learn: 36.9917688	total: 90.5ms	remaining: 475ms
16:	learn: 36.5544138	total: 95.9ms	remaining: 468ms
17:	learn: 36.0727019	total: 101ms	remaining: 460ms
18:	learn: 35.4835715	total: 106ms	remaining: 453ms
19:	learn: 34.9865654	total: 111ms	remaining: 445ms
20:	learn: 34.6063373	total: 116ms	remaining: 436ms
21:	learn: 34.0997289	total: 121ms	remaining: 430ms
22:	learn: 33.7313171	total: 127ms	remaining: 425ms
23:	learn: 33.3582000	total: 131ms	remaining: 415ms
24:	learn: 32.9432456	total: 135ms	remaining: 406ms
25:	learn: 32.5220888	total: 139ms	remaining: 397ms
26:	learn: 32.2172292	total: 143ms	remaining: 388ms
27:	learn: 31.8972904	total: 148ms	remaining: 379ms
28:	learn: 31.6405350	total: 151ms	remaining: 371ms
29:	learn: 31.4167702	total: 156ms	remaining: 363ms
30:	learn: 30.8541961	total: 157ms	remaining: 350ms
31:	learn: 30.5572111	total: 161ms	remaining: 343ms
32:	learn: 30.1700399	total: 166ms	remaining: 336ms
33:	learn: 29.8537271	total: 170ms	remaining: 329ms
34:	learn: 29.6192540	total: 174ms	remaining: 324ms
35:	learn: 29.3276362	total: 178ms	remaining: 317ms
36:	learn: 28.9985179	total: 182ms	remaining: 310ms
37:	learn: 28.7046880	total: 186ms	remaining: 303ms
38:	learn: 28.4412677	total: 190ms	remaining: 298ms
39:	learn: 28.1277292	total: 195ms	remaining: 292ms
40:	learn: 27.9000750	total: 199ms	remaining: 286ms
41:	learn: 27.5433162	total: 203ms	remaining: 281ms
42:	learn: 27.2493285	total: 207ms	remaining: 275ms
43:	learn: 26.9576632	total: 209ms	remaining: 266ms
44:	learn: 26.6177110	total: 213ms	remaining: 261ms
45:	learn: 26.2812456	total: 217ms	remaining: 255ms
46:	learn: 26.0803859	total: 222ms	remaining: 250ms
47:	learn: 25.9543581	total: 226ms	remaining: 245ms
48:	learn: 25.7951582	total: 231ms	remaining: 241ms
49:	learn: 25.6548184	total: 236ms	remaining: 236ms
50:	learn: 25.4010843	total: 241ms	remaining: 231ms
51:	learn: 24.9773937	total: 245ms	remaining: 227ms
52:	learn: 24.8026156	total: 250ms	remaining: 222ms
53:	learn: 24.5568053	total: 258ms	remaining: 219ms
54:	learn: 24.2281839	total: 266ms	remaining: 218ms
55:	learn: 23.9202795	total: 273ms	remaining: 214ms
56:	learn: 23.7625591	total: 280ms	remaining: 211ms
57:	learn: 23.5429721	total: 287ms	remaining: 208ms
58:	learn: 23.3175893	total: 292ms	remaining: 203ms
59:	learn: 23.2035130	total: 297ms	remaining: 198ms
60:	learn: 23.0232450	total: 302ms	remaining: 193ms
61:	learn: 22.8384958	total: 307ms	remaining: 188ms
62:	learn: 22.6499902	total: 312ms	remaining: 183ms
63:	learn: 22.4577426	total: 318ms	remaining: 179ms
64:	learn: 22.3333158	total: 323ms	remaining: 174ms
65:	learn: 22.2064131	total: 327ms	remaining: 169ms
66:	learn: 22.1434971	total: 333ms	remaining: 164ms
67:	learn: 21.9596519	total: 338ms	remaining: 159ms
68:	learn: 21.8475576	total: 343ms	remaining: 154ms
69:	learn: 21.6954745	total: 348ms	remaining: 149ms
70:	learn: 21.5635976	total: 354ms	remaining: 144ms
71:	learn: 21.4588506	total: 359ms	remaining: 140ms
72:	learn: 21.3527268	total: 364ms	remaining: 135ms
73:	learn: 21.2661288	total: 368ms	remaining: 129ms
74:	learn: 21.1817333	total: 372ms	remaining: 124ms
75:	learn: 21.0527553	total: 376ms	remaining: 119ms
76:	learn: 20.9229021	total: 381ms	remaining: 114ms
77:	learn: 20.7563946	total: 385ms	remaining: 109ms
78:	learn: 20.6569831	total: 389ms	remaining: 103ms
79:	learn: 20.4982663	total: 393ms	remaining: 98.2ms
80:	learn: 20.3185460	total: 397ms	remaining: 93.1ms
81:	learn: 20.2096241	total: 402ms	remaining: 88.2ms
82:	learn: 20.1274891	total: 406ms	remaining: 83.1ms
83:	learn: 20.0740139	total: 410ms	remaining: 78ms
84:	learn: 19.9630699	total: 414ms	remaining: 73.1ms
85:	learn: 19.8753899	total: 419ms	remaining: 68.2ms
86:	learn: 19.6563612	total: 423ms	remaining: 63.3ms
87:	learn: 19.4680232	total: 428ms	remaining: 58.3ms
88:	learn: 19.3503431	total: 432ms	remaining: 53.5ms
89:	learn: 19.2221379	total: 437ms	remaining: 48.6ms
90:	learn: 19.0732542	total: 442ms	remaining: 43.7ms
91:	learn: 18.9825190	total: 446ms	remaining: 38.8ms
92:	learn: 18.8839009	total: 453ms	remaining: 34.1ms
93:	learn: 18.8012219	total: 462ms	remaining: 29.5ms
94:	learn: 18.7172713	total: 469ms	remaining: 24.7ms
95:	learn: 18.6201170	total: 476ms	remaining: 19.8ms
96:	learn: 18.5318611	total: 483ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 488ms	remaining: 9.96ms
98:	learn: 18.3289700	total: 493ms	remaining: 4.98ms
99:	learn: 18.2227333	total: 498ms	remaining: 0us
0:	learn: 46.3764524	total: 5.68ms	remaining: 562ms
1:	learn: 45.5561269	total: 10.6ms	remaining: 519ms
2:	learn: 44.8811245	total: 14.6ms	remaining: 471ms
3:	learn: 44.0788617	total: 18.8ms	remaining: 451ms
4:	learn: 43.3619790	total: 22.5ms	remaining: 428ms
5:	learn: 42.6912112	total: 26.8ms	remaining: 420ms
6:	learn: 42.2292118	total: 30.6ms	remaining: 407ms
7:	learn: 41.7725191	total: 34.7ms	remaining: 399ms
8:	learn: 41.1676614	total: 38.4ms	remaining: 388ms
9:	learn: 40.5771076	total: 42.4ms	remaining: 381ms
10:	learn: 39.8343757	total: 46.1ms	remaining: 373ms
11:	learn: 39.3761142	total: 50.1ms	remaining: 367ms
12:	learn: 38.5254692	total: 54.5ms	remaining: 365ms
13:	learn: 37.9629555	total: 58.3ms	remaining: 358ms
14:	learn: 37.4418438	total: 62ms	remaining: 352ms
15:	learn: 37.0507283	total: 65.8ms	remaining: 345ms
16:	learn: 36.6264217	total: 70ms	remaining: 342ms
17:	learn: 36.1114940	total: 74.3ms	remaining: 338ms
18:	learn: 35.7193862	total: 78.2ms	remaining: 333ms
19:	learn: 35.3301177	total: 82.3ms	remaining: 329ms
20:	learn: 35.0598280	total: 86.5ms	remaining: 325ms
21:	learn: 34.5469736	total: 91ms	remaining: 323ms
22:	learn: 34.2064215	total: 95.3ms	remaining: 319ms
23:	learn: 33.7280710	total: 99.6ms	remaining: 315ms
24:	learn: 33.3282940	total: 104ms	remaining: 313ms
25:	learn: 32.8478961	total: 108ms	remaining: 308ms
26:	learn: 32.5722164	total: 113ms	remaining: 306ms
27:	learn: 32.2457019	total: 118ms	remaining: 303ms
28:	learn: 31.9230495	total: 122ms	remaining: 299ms
29:	learn: 31.4311611	total: 131ms	remaining: 305ms
30:	learn: 30.9179052	total: 138ms	remaining: 308ms
31:	learn: 30.6201141	total: 146ms	remaining: 311ms
32:	learn: 30.3421106	total: 152ms	remaining: 309ms
33:	learn: 29.9885373	total: 159ms	remaining: 309ms
34:	learn: 29.7462780	total: 164ms	remaining: 305ms
35:	learn: 29.3607153	total: 169ms	remaining: 301ms
36:	learn: 29.1793078	total: 174ms	remaining: 297ms
37:	learn: 28.9276538	total: 179ms	remaining: 293ms
38:	learn: 28.6903934	total: 185ms	remaining: 289ms
39:	learn: 28.2095033	total: 189ms	remaining: 284ms
40:	learn: 27.7990608	total: 195ms	remaining: 280ms
41:	learn: 27.5406632	total: 199ms	remaining: 275ms
42:	learn: 27.2575376	total: 205ms	remaining: 271ms
43:	learn: 26.9741707	total: 210ms	remaining: 268ms
44:	learn: 26.6606899	total: 215ms	remaining: 263ms
45:	learn: 26.4015833	total: 220ms	remaining: 259ms
46:	learn: 26.1828993	total: 226ms	remaining: 255ms
47:	learn: 26.0233709	total: 229ms	remaining: 248ms
48:	learn: 25.9300399	total: 233ms	remaining: 243ms
49:	learn: 25.5861489	total: 237ms	remaining: 237ms
50:	learn: 25.4322012	total: 241ms	remaining: 232ms
51:	learn: 25.1595644	total: 246ms	remaining: 227ms
52:	learn: 24.9955303	total: 250ms	remaining: 221ms
53:	learn: 24.7273966	total: 253ms	remaining: 216ms
54:	learn: 24.5747978	total: 257ms	remaining: 211ms
55:	learn: 24.3807977	total: 262ms	remaining: 206ms
56:	learn: 24.1689569	total: 266ms	remaining: 200ms
57:	learn: 23.9898221	total: 270ms	remaining: 195ms
58:	learn: 23.7566414	total: 274ms	remaining: 190ms
59:	learn: 23.6641165	total: 278ms	remaining: 185ms
60:	learn: 23.5658066	total: 282ms	remaining: 180ms
61:	learn: 23.4338851	total: 286ms	remaining: 176ms
62:	learn: 23.2408837	total: 291ms	remaining: 171ms
63:	learn: 23.0642038	total: 296ms	remaining: 166ms
64:	learn: 22.9032045	total: 300ms	remaining: 162ms
65:	learn: 22.7736138	total: 305ms	remaining: 157ms
66:	learn: 22.6836443	total: 310ms	remaining: 152ms
67:	learn: 22.5983654	total: 314ms	remaining: 148ms
68:	learn: 22.4419813	total: 318ms	remaining: 143ms
69:	learn: 22.2863339	total: 325ms	remaining: 139ms
70:	learn: 22.1792943	total: 333ms	remaining: 136ms
71:	learn: 22.1130574	total: 340ms	remaining: 132ms
72:	learn: 21.9858161	total: 348ms	remaining: 129ms
73:	learn: 21.8577784	total: 356ms	remaining: 125ms
74:	learn: 21.7845222	total: 361ms	remaining: 120ms
75:	learn: 21.6831390	total: 366ms	remaining: 116ms
76:	learn: 21.6292521	total: 371ms	remaining: 111ms
77:	learn: 21.5789330	total: 376ms	remaining: 106ms
78:	learn: 21.5420942	total: 381ms	remaining: 101ms
79:	learn: 21.4280939	total: 387ms	remaining: 96.8ms
80:	learn: 21.3641165	total: 392ms	remaining: 92ms
81:	learn: 21.2734814	total: 398ms	remaining: 87.3ms
82:	learn: 21.2220323	total: 403ms	remaining: 82.6ms
83:	learn: 21.0625792	total: 408ms	remaining: 77.8ms
84:	learn: 20.9488320	total: 414ms	remaining: 73ms
85:	learn: 20.8504255	total: 419ms	remaining: 68.2ms
86:	learn: 20.7848510	total: 425ms	remaining: 63.5ms
87:	learn: 20.7247442	total: 431ms	remaining: 58.7ms
88:	learn: 20.5698590	total: 436ms	remaining: 53.9ms
89:	learn: 20.4067620	total: 441ms	remaining: 49ms
90:	learn: 20.3062482	total: 445ms	remaining: 44ms
91:	learn: 20.2029696	total: 449ms	remaining: 39.1ms
92:	learn: 20.1384849	total: 454ms	remaining: 34.1ms
93:	learn: 20.0260709	total: 458ms	remaining: 29.2ms
94:	learn: 19.9122100	total: 462ms	remaining: 24.3ms
95:	learn: 19.8648487	total: 466ms	remaining: 19.4ms
96:	learn: 19.8207072	total: 470ms	remaining: 14.5ms
97:	learn: 19.7261189	total: 474ms	remaining: 9.68ms
98:	learn: 19.7042438	total: 478ms	remaining: 4.83ms
99:	learn: 19.6546645	total: 482ms	remaining: 0us
0:	learn: 47.0239288	total: 8.85ms	remaining: 876ms
1:	learn: 46.2253829	total: 16.7ms	remaining: 816ms
2:	learn: 45.5580301	total: 25.7ms	remaining: 830ms
3:	learn: 44.7273237	total: 33.4ms	remaining: 803ms
4:	learn: 43.8867421	total: 38.3ms	remaining: 728ms
5:	learn: 43.3615911	total: 44ms	remaining: 690ms
6:	learn: 42.8548390	total: 49.1ms	remaining: 653ms
7:	learn: 42.1606758	total: 54.1ms	remaining: 623ms
8:	learn: 41.6625870	total: 59.3ms	remaining: 600ms
9:	learn: 40.9497092	total: 64.5ms	remaining: 580ms
10:	learn: 40.1886318	total: 69.4ms	remaining: 562ms
11:	learn: 39.7456423	total: 74.5ms	remaining: 547ms
12:	learn: 39.1171373	total: 79.9ms	remaining: 535ms
13:	learn: 38.5451069	total: 85ms	remaining: 522ms
14:	learn: 38.0155834	total: 89.8ms	remaining: 509ms
15:	learn: 37.5631354	total: 95.1ms	remaining: 499ms
16:	learn: 37.1030023	total: 100ms	remaining: 490ms
17:	learn: 36.4563029	total: 105ms	remaining: 478ms
18:	learn: 36.0160976	total: 109ms	remaining: 465ms
19:	learn: 35.5079827	total: 113ms	remaining: 452ms
20:	learn: 35.2111885	total: 117ms	remaining: 441ms
21:	learn: 34.9397465	total: 121ms	remaining: 429ms
22:	learn: 34.5270048	total: 125ms	remaining: 419ms
23:	learn: 34.0169260	total: 130ms	remaining: 411ms
24:	learn: 33.7454892	total: 134ms	remaining: 402ms
25:	learn: 33.2648157	total: 138ms	remaining: 392ms
26:	learn: 32.8899427	total: 142ms	remaining: 383ms
27:	learn: 32.6185050	total: 146ms	remaining: 375ms
28:	learn: 32.3528531	total: 150ms	remaining: 367ms
29:	learn: 32.0859923	total: 154ms	remaining: 360ms
30:	learn: 31.6511144	total: 158ms	remaining: 352ms
31:	learn: 31.2571765	total: 162ms	remaining: 344ms
32:	learn: 30.9770049	total: 166ms	remaining: 337ms
33:	learn: 30.6084872	total: 170ms	remaining: 331ms
34:	learn: 30.3448632	total: 175ms	remaining: 325ms
35:	learn: 30.0360942	total: 179ms	remaining: 318ms
36:	learn: 29.6648968	total: 183ms	remaining: 312ms
37:	learn: 29.3165114	total: 188ms	remaining: 307ms
38:	learn: 29.0829198	total: 192ms	remaining: 301ms
39:	learn: 28.7752064	total: 196ms	remaining: 295ms
40:	learn: 28.3622191	total: 201ms	remaining: 289ms
41:	learn: 28.1346631	total: 205ms	remaining: 284ms
42:	learn: 27.9585719	total: 214ms	remaining: 284ms
43:	learn: 27.6565566	total: 222ms	remaining: 282ms
44:	learn: 27.3616172	total: 230ms	remaining: 281ms
45:	learn: 27.0658637	total: 238ms	remaining: 279ms
46:	learn: 26.8660382	total: 243ms	remaining: 274ms
47:	learn: 26.6536078	total: 248ms	remaining: 269ms
48:	learn: 26.3524440	total: 254ms	remaining: 264ms
49:	learn: 26.1595277	total: 259ms	remaining: 259ms
50:	learn: 25.9273523	total: 264ms	remaining: 253ms
51:	learn: 25.7195580	total: 269ms	remaining: 248ms
52:	learn: 25.5730225	total: 274ms	remaining: 243ms
53:	learn: 25.3455276	total: 279ms	remaining: 238ms
54:	learn: 25.2289675	total: 284ms	remaining: 233ms
55:	learn: 25.0133024	total: 289ms	remaining: 227ms
56:	learn: 24.8406714	total: 294ms	remaining: 222ms
57:	learn: 24.6367857	total: 300ms	remaining: 217ms
58:	learn: 24.5338177	total: 305ms	remaining: 212ms
59:	learn: 24.3799964	total: 310ms	remaining: 207ms
60:	learn: 24.1447492	total: 314ms	remaining: 201ms
61:	learn: 23.9880495	total: 318ms	remaining: 195ms
62:	learn: 23.7140630	total: 322ms	remaining: 189ms
63:	learn: 23.5003791	total: 326ms	remaining: 184ms
64:	learn: 23.3207645	total: 330ms	remaining: 178ms
65:	learn: 23.1958356	total: 334ms	remaining: 172ms
66:	learn: 23.0471302	total: 338ms	remaining: 167ms
67:	learn: 22.8977183	total: 343ms	remaining: 161ms
68:	learn: 22.7187400	total: 347ms	remaining: 156ms
69:	learn: 22.6523405	total: 350ms	remaining: 150ms
70:	learn: 22.4767453	total: 355ms	remaining: 145ms
71:	learn: 22.3243677	total: 359ms	remaining: 139ms
72:	learn: 22.2133096	total: 362ms	remaining: 134ms
73:	learn: 22.1151713	total: 367ms	remaining: 129ms
74:	learn: 22.0296666	total: 371ms	remaining: 124ms
75:	learn: 21.9195980	total: 375ms	remaining: 119ms
76:	learn: 21.8401730	total: 380ms	remaining: 114ms
77:	learn: 21.8079797	total: 384ms	remaining: 108ms
78:	learn: 21.7274109	total: 388ms	remaining: 103ms
79:	learn: 21.6663032	total: 393ms	remaining: 98.2ms
80:	learn: 21.5633117	total: 397ms	remaining: 93.1ms
81:	learn: 21.4542467	total: 401ms	remaining: 88.1ms
82:	learn: 21.3177957	total: 407ms	remaining: 83.5ms
83:	learn: 21.1289167	total: 415ms	remaining: 79.1ms
84:	learn: 21.0297368	total: 423ms	remaining: 74.6ms
85:	learn: 20.9089564	total: 430ms	remaining: 70.1ms
86:	learn: 20.7653988	total: 438ms	remaining: 65.4ms
87:	learn: 20.6521894	total: 443ms	remaining: 60.4ms
88:	learn: 20.5193021	total: 448ms	remaining: 55.4ms
89:	learn: 20.4361620	total: 453ms	remaining: 50.3ms
90:	learn: 20.3546710	total: 458ms	remaining: 45.3ms
91:	learn: 20.2513296	total: 463ms	remaining: 40.3ms
92:	learn: 20.1605550	total: 468ms	remaining: 35.2ms
93:	learn: 20.0515942	total: 473ms	remaining: 30.2ms
94:	learn: 19.9800764	total: 478ms	remaining: 25.2ms
95:	learn: 19.8996532	total: 483ms	remaining: 20.1ms
96:	learn: 19.8450910	total: 488ms	remaining: 15.1ms
97:	learn: 19.7887346	total: 493ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 497ms	remaining: 5.02ms
99:	learn: 19.6328825	total: 502ms	remaining: 0us
0:	learn: 27.7143805	total: 4.25ms	remaining: 420ms
1:	learn: 27.2245894	total: 8.57ms	remaining: 420ms
2:	learn: 26.8693029	total: 13ms	remaining: 419ms
3:	learn: 26.4713217	total: 16.8ms	remaining: 403ms
4:	learn: 26.1261794	total: 20.9ms	remaining: 398ms
5:	learn: 25.8160419	total: 25.2ms	remaining: 394ms
6:	learn: 25.3860050	total: 29.6ms	remaining: 394ms
7:	learn: 25.0621682	total: 33.9ms	remaining: 390ms
8:	learn: 24.7574429	total: 38.7ms	remaining: 391ms
9:	learn: 24.5154734	total: 43ms	remaining: 387ms
10:	learn: 24.2199118	total: 47.3ms	remaining: 383ms
11:	learn: 23.9774955	total: 51.6ms	remaining: 379ms
12:	learn: 23.7755558	total: 55.9ms	remaining: 374ms
13:	learn: 23.4384476	total: 61.9ms	remaining: 380ms
14:	learn: 23.2035324	total: 69.1ms	remaining: 391ms
15:	learn: 22.9925293	total: 76.9ms	remaining: 404ms
16:	learn: 22.7981113	total: 84.4ms	remaining: 412ms
17:	learn: 22.5829245	total: 91.8ms	remaining: 418ms
18:	learn: 22.4131931	total: 96.8ms	remaining: 413ms
19:	learn: 22.1833629	total: 102ms	remaining: 408ms
20:	learn: 21.9660824	total: 107ms	remaining: 403ms
21:	learn: 21.7281998	total: 112ms	remaining: 399ms
22:	learn: 21.5000824	total: 118ms	remaining: 395ms
23:	learn: 21.2717031	total: 124ms	remaining: 391ms
24:	learn: 21.0926073	total: 129ms	remaining: 386ms
25:	learn: 20.8922144	total: 133ms	remaining: 380ms
26:	learn: 20.7498215	total: 138ms	remaining: 374ms
27:	learn: 20.5781754	total: 140ms	remaining: 360ms
28:	learn: 20.4294665	total: 145ms	remaining: 354ms
29:	learn: 20.2273985	total: 149ms	remaining: 348ms
30:	learn: 20.0920234	total: 154ms	remaining: 343ms
31:	learn: 19.9311712	total: 160ms	remaining: 339ms
32:	learn: 19.7852359	total: 164ms	remaining: 333ms
33:	learn: 19.6211007	total: 168ms	remaining: 326ms
34:	learn: 19.4806501	total: 171ms	remaining: 318ms
35:	learn: 19.3415380	total: 176ms	remaining: 313ms
36:	learn: 19.2075499	total: 180ms	remaining: 307ms
37:	learn: 19.0582745	total: 184ms	remaining: 300ms
38:	learn: 18.8852020	total: 188ms	remaining: 294ms
39:	learn: 18.6868677	total: 192ms	remaining: 288ms
40:	learn: 18.5481481	total: 197ms	remaining: 283ms
41:	learn: 18.4508846	total: 200ms	remaining: 277ms
42:	learn: 18.3650555	total: 204ms	remaining: 271ms
43:	learn: 18.1818415	total: 208ms	remaining: 265ms
44:	learn: 18.0782035	total: 213ms	remaining: 260ms
45:	learn: 17.9724472	total: 217ms	remaining: 254ms
46:	learn: 17.8657480	total: 221ms	remaining: 249ms
47:	learn: 17.7217309	total: 225ms	remaining: 244ms
48:	learn: 17.6403061	total: 230ms	remaining: 239ms
49:	learn: 17.5245570	total: 234ms	remaining: 234ms
50:	learn: 17.3976790	total: 239ms	remaining: 229ms
51:	learn: 17.2544460	total: 243ms	remaining: 224ms
52:	learn: 17.1507940	total: 247ms	remaining: 219ms
53:	learn: 17.0391276	total: 252ms	remaining: 214ms
54:	learn: 16.9348155	total: 256ms	remaining: 210ms
55:	learn: 16.8475635	total: 265ms	remaining: 208ms
56:	learn: 16.7691656	total: 272ms	remaining: 205ms
57:	learn: 16.6277836	total: 281ms	remaining: 203ms
58:	learn: 16.5524230	total: 287ms	remaining: 199ms
59:	learn: 16.4614442	total: 293ms	remaining: 195ms
60:	learn: 16.3077836	total: 298ms	remaining: 191ms
61:	learn: 16.2278133	total: 304ms	remaining: 186ms
62:	learn: 16.1288632	total: 309ms	remaining: 181ms
63:	learn: 16.0734717	total: 314ms	remaining: 177ms
64:	learn: 16.0085754	total: 321ms	remaining: 173ms
65:	learn: 15.9278700	total: 327ms	remaining: 168ms
66:	learn: 15.8320321	total: 334ms	remaining: 164ms
67:	learn: 15.7706425	total: 339ms	remaining: 160ms
68:	learn: 15.6404344	total: 345ms	remaining: 155ms
69:	learn: 15.5678129	total: 350ms	remaining: 150ms
70:	learn: 15.4980047	total: 355ms	remaining: 145ms
71:	learn: 15.4324207	total: 361ms	remaining: 140ms
72:	learn: 15.3551877	total: 366ms	remaining: 135ms
73:	learn: 15.2930769	total: 371ms	remaining: 130ms
74:	learn: 15.2307174	total: 375ms	remaining: 125ms
75:	learn: 15.1600937	total: 379ms	remaining: 120ms
76:	learn: 15.0837614	total: 383ms	remaining: 114ms
77:	learn: 15.0185989	total: 387ms	remaining: 109ms
78:	learn: 14.9300717	total: 392ms	remaining: 104ms
79:	learn: 14.8928389	total: 396ms	remaining: 98.9ms
80:	learn: 14.8250040	total: 399ms	remaining: 93.7ms
81:	learn: 14.7906114	total: 404ms	remaining: 88.6ms
82:	learn: 14.7214118	total: 408ms	remaining: 83.5ms
83:	learn: 14.6657875	total: 412ms	remaining: 78.5ms
84:	learn: 14.6085682	total: 416ms	remaining: 73.4ms
85:	learn: 14.5334097	total: 421ms	remaining: 68.5ms
86:	learn: 14.4681230	total: 425ms	remaining: 63.5ms
87:	learn: 14.4088334	total: 429ms	remaining: 58.4ms
88:	learn: 14.3541312	total: 433ms	remaining: 53.5ms
89:	learn: 14.2923636	total: 438ms	remaining: 48.6ms
90:	learn: 14.2339259	total: 442ms	remaining: 43.7ms
91:	learn: 14.1439983	total: 446ms	remaining: 38.8ms
92:	learn: 14.0701371	total: 451ms	remaining: 33.9ms
93:	learn: 13.9770736	total: 455ms	remaining: 29ms
94:	learn: 13.9275801	total: 459ms	remaining: 24.2ms
95:	learn: 13.8717050	total: 464ms	remaining: 19.3ms
96:	learn: 13.7821340	total: 468ms	remaining: 14.5ms
97:	learn: 13.7383865	total: 477ms	remaining: 9.73ms
98:	learn: 13.6850693	total: 484ms	remaining: 4.88ms
99:	learn: 13.6273539	total: 493ms	remaining: 0us
0:	learn: 43.2118728	total: 5.47ms	remaining: 541ms
1:	learn: 42.3090111	total: 10.7ms	remaining: 526ms
2:	learn: 41.3060764	total: 15.5ms	remaining: 501ms
3:	learn: 40.3653958	total: 20.6ms	remaining: 494ms
4:	learn: 39.5006331	total: 25.6ms	remaining: 486ms
5:	learn: 38.6473041	total: 29.2ms	remaining: 457ms
6:	learn: 37.8560875	total: 33ms	remaining: 439ms
7:	learn: 37.0772701	total: 36.9ms	remaining: 425ms
8:	learn: 36.3260704	total: 40.6ms	remaining: 410ms
9:	learn: 35.7300393	total: 44.2ms	remaining: 398ms
10:	learn: 34.9336547	total: 47.8ms	remaining: 387ms
11:	learn: 34.1758190	total: 51.6ms	remaining: 379ms
12:	learn: 33.5120760	total: 55.6ms	remaining: 372ms
13:	learn: 32.8731142	total: 59.3ms	remaining: 364ms
14:	learn: 32.3579595	total: 63ms	remaining: 357ms
15:	learn: 31.7969963	total: 67ms	remaining: 351ms
16:	learn: 31.3472797	total: 70.7ms	remaining: 345ms
17:	learn: 30.7865884	total: 74.4ms	remaining: 339ms
18:	learn: 30.3876486	total: 78.2ms	remaining: 333ms
19:	learn: 29.8840575	total: 82.7ms	remaining: 331ms
20:	learn: 29.3584237	total: 86.8ms	remaining: 327ms
21:	learn: 28.9965200	total: 91.2ms	remaining: 323ms
22:	learn: 28.6117225	total: 95.1ms	remaining: 318ms
23:	learn: 28.1147832	total: 99.7ms	remaining: 316ms
24:	learn: 27.7857774	total: 104ms	remaining: 313ms
25:	learn: 27.3181226	total: 109ms	remaining: 310ms
26:	learn: 26.9019101	total: 114ms	remaining: 309ms
27:	learn: 26.6957004	total: 118ms	remaining: 304ms
28:	learn: 26.2816390	total: 123ms	remaining: 301ms
29:	learn: 25.9107534	total: 128ms	remaining: 298ms
30:	learn: 25.5773085	total: 132ms	remaining: 294ms
31:	learn: 25.1916035	total: 140ms	remaining: 298ms
32:	learn: 24.8819670	total: 147ms	remaining: 299ms
33:	learn: 24.5580488	total: 154ms	remaining: 299ms
34:	learn: 24.3088624	total: 160ms	remaining: 296ms
35:	learn: 23.9890893	total: 166ms	remaining: 295ms
36:	learn: 23.7266073	total: 171ms	remaining: 291ms
37:	learn: 23.4886046	total: 176ms	remaining: 288ms
38:	learn: 23.2786313	total: 182ms	remaining: 284ms
39:	learn: 23.0060540	total: 187ms	remaining: 280ms
40:	learn: 22.7848361	total: 192ms	remaining: 276ms
41:	learn: 22.5485511	total: 197ms	remaining: 272ms
42:	learn: 22.3113565	total: 202ms	remaining: 268ms
43:	learn: 22.1296084	total: 207ms	remaining: 264ms
44:	learn: 21.8514989	total: 213ms	remaining: 260ms
45:	learn: 21.6540201	total: 218ms	remaining: 255ms
46:	learn: 21.4203535	total: 223ms	remaining: 251ms
47:	learn: 21.2317196	total: 228ms	remaining: 247ms
48:	learn: 21.0547467	total: 232ms	remaining: 242ms
49:	learn: 20.9192535	total: 238ms	remaining: 238ms
50:	learn: 20.6975386	total: 243ms	remaining: 234ms
51:	learn: 20.5839720	total: 248ms	remaining: 228ms
52:	learn: 20.4528901	total: 251ms	remaining: 223ms
53:	learn: 20.3392419	total: 255ms	remaining: 217ms
54:	learn: 20.1518693	total: 258ms	remaining: 211ms
55:	learn: 19.9928770	total: 262ms	remaining: 206ms
56:	learn: 19.8042028	total: 266ms	remaining: 201ms
57:	learn: 19.7000879	total: 270ms	remaining: 195ms
58:	learn: 19.5524154	total: 274ms	remaining: 190ms
59:	learn: 19.4366908	total: 277ms	remaining: 185ms
60:	learn: 19.2739134	total: 281ms	remaining: 180ms
61:	learn: 19.1499266	total: 285ms	remaining: 175ms
62:	learn: 18.9948972	total: 289ms	remaining: 170ms
63:	learn: 18.8952299	total: 294ms	remaining: 165ms
64:	learn: 18.7545430	total: 298ms	remaining: 160ms
65:	learn: 18.6315116	total: 302ms	remaining: 155ms
66:	learn: 18.5164994	total: 305ms	remaining: 150ms
67:	learn: 18.3983038	total: 310ms	remaining: 146ms
68:	learn: 18.2803212	total: 314ms	remaining: 141ms
69:	learn: 18.1738467	total: 319ms	remaining: 137ms
70:	learn: 18.0884235	total: 324ms	remaining: 132ms
71:	learn: 18.0129445	total: 328ms	remaining: 128ms
72:	learn: 17.8582158	total: 333ms	remaining: 123ms
73:	learn: 17.7473705	total: 337ms	remaining: 118ms
74:	learn: 17.6431421	total: 341ms	remaining: 114ms
75:	learn: 17.5398511	total: 350ms	remaining: 111ms
76:	learn: 17.4404598	total: 358ms	remaining: 107ms
77:	learn: 17.3477525	total: 366ms	remaining: 103ms
78:	learn: 17.2283831	total: 373ms	remaining: 99.1ms
79:	learn: 17.0767035	total: 378ms	remaining: 94.6ms
80:	learn: 16.9732705	total: 383ms	remaining: 90ms
81:	learn: 16.8927449	total: 389ms	remaining: 85.4ms
82:	learn: 16.8145625	total: 394ms	remaining: 80.7ms
83:	learn: 16.7290845	total: 399ms	remaining: 76ms
84:	learn: 16.6661414	total: 404ms	remaining: 71.3ms
85:	learn: 16.5875575	total: 409ms	remaining: 66.7ms
86:	learn: 16.4578580	total: 415ms	remaining: 61.9ms
87:	learn: 16.4243550	total: 419ms	remaining: 57.2ms
88:	learn: 16.3251337	total: 425ms	remaining: 52.5ms
89:	learn: 16.2516385	total: 430ms	remaining: 47.8ms
90:	learn: 16.1226518	total: 435ms	remaining: 43ms
91:	learn: 16.0718308	total: 438ms	remaining: 38.1ms
92:	learn: 15.9636735	total: 442ms	remaining: 33.3ms
93:	learn: 15.8923693	total: 446ms	remaining: 28.5ms
94:	learn: 15.8270425	total: 450ms	remaining: 23.7ms
95:	learn: 15.7449077	total: 454ms	remaining: 18.9ms
96:	learn: 15.6978936	total: 458ms	remaining: 14.2ms
97:	learn: 15.6527285	total: 461ms	remaining: 9.41ms
98:	learn: 15.5557320	total: 465ms	remaining: 4.7ms
99:	learn: 15.4399171	total: 469ms	remaining: 0us
0:	learn: 46.7092506	total: 4.45ms	remaining: 440ms
1:	learn: 45.8266821	total: 8.5ms	remaining: 416ms
2:	learn: 45.0052023	total: 13.2ms	remaining: 427ms
3:	learn: 44.3828795	total: 17.6ms	remaining: 421ms
4:	learn: 43.7255353	total: 21.7ms	remaining: 413ms
5:	learn: 43.1663831	total: 26.6ms	remaining: 417ms
6:	learn: 42.3875189	total: 32.6ms	remaining: 433ms
7:	learn: 41.7839075	total: 40.1ms	remaining: 461ms
8:	learn: 41.0740108	total: 48.5ms	remaining: 491ms
9:	learn: 40.3846647	total: 56.2ms	remaining: 505ms
10:	learn: 39.8821046	total: 63.2ms	remaining: 511ms
11:	learn: 39.1807254	total: 69.1ms	remaining: 507ms
12:	learn: 38.7153028	total: 74.2ms	remaining: 496ms
13:	learn: 38.0474495	total: 79ms	remaining: 485ms
14:	learn: 37.3844461	total: 84.2ms	remaining: 477ms
15:	learn: 36.9210704	total: 89.6ms	remaining: 470ms
16:	learn: 36.3160964	total: 94.8ms	remaining: 463ms
17:	learn: 35.8915826	total: 100ms	remaining: 457ms
18:	learn: 35.5519989	total: 106ms	remaining: 450ms
19:	learn: 35.1437045	total: 110ms	remaining: 442ms
20:	learn: 34.6387799	total: 116ms	remaining: 435ms
21:	learn: 34.2437068	total: 121ms	remaining: 429ms
22:	learn: 33.8262100	total: 126ms	remaining: 421ms
23:	learn: 33.4683000	total: 132ms	remaining: 417ms
24:	learn: 32.9996389	total: 137ms	remaining: 412ms
25:	learn: 32.6942147	total: 142ms	remaining: 404ms
26:	learn: 32.3016096	total: 146ms	remaining: 394ms
27:	learn: 31.9517346	total: 150ms	remaining: 386ms
28:	learn: 31.5277387	total: 154ms	remaining: 378ms
29:	learn: 31.2545365	total: 159ms	remaining: 370ms
30:	learn: 31.0510813	total: 163ms	remaining: 363ms
31:	learn: 30.6383830	total: 167ms	remaining: 355ms
32:	learn: 30.2800150	total: 172ms	remaining: 349ms
33:	learn: 29.9559797	total: 176ms	remaining: 342ms
34:	learn: 29.5802745	total: 180ms	remaining: 335ms
35:	learn: 29.2605111	total: 184ms	remaining: 327ms
36:	learn: 28.9582434	total: 189ms	remaining: 321ms
37:	learn: 28.6149387	total: 193ms	remaining: 314ms
38:	learn: 28.3980091	total: 197ms	remaining: 308ms
39:	learn: 28.1704520	total: 201ms	remaining: 301ms
40:	learn: 27.8881319	total: 205ms	remaining: 295ms
41:	learn: 27.5805731	total: 209ms	remaining: 289ms
42:	learn: 27.3520567	total: 214ms	remaining: 284ms
43:	learn: 27.1039679	total: 218ms	remaining: 278ms
44:	learn: 26.8472623	total: 223ms	remaining: 272ms
45:	learn: 26.5757869	total: 227ms	remaining: 266ms
46:	learn: 26.4579118	total: 231ms	remaining: 261ms
47:	learn: 26.1279008	total: 236ms	remaining: 256ms
48:	learn: 25.8503346	total: 241ms	remaining: 251ms
49:	learn: 25.7039015	total: 246ms	remaining: 246ms
50:	learn: 25.4317154	total: 251ms	remaining: 242ms
51:	learn: 25.3028008	total: 257ms	remaining: 237ms
52:	learn: 25.1906194	total: 261ms	remaining: 232ms
53:	learn: 25.0082790	total: 268ms	remaining: 228ms
54:	learn: 24.8264791	total: 276ms	remaining: 226ms
55:	learn: 24.5961365	total: 283ms	remaining: 222ms
56:	learn: 24.4007690	total: 291ms	remaining: 219ms
57:	learn: 24.2476228	total: 298ms	remaining: 216ms
58:	learn: 23.9582465	total: 303ms	remaining: 211ms
59:	learn: 23.7247243	total: 309ms	remaining: 206ms
60:	learn: 23.5379970	total: 314ms	remaining: 201ms
61:	learn: 23.3908530	total: 319ms	remaining: 196ms
62:	learn: 23.2123241	total: 324ms	remaining: 191ms
63:	learn: 23.1010345	total: 330ms	remaining: 186ms
64:	learn: 22.9032423	total: 335ms	remaining: 180ms
65:	learn: 22.7815198	total: 340ms	remaining: 175ms
66:	learn: 22.6325063	total: 346ms	remaining: 170ms
67:	learn: 22.5406071	total: 351ms	remaining: 165ms
68:	learn: 22.4413332	total: 355ms	remaining: 160ms
69:	learn: 22.3005609	total: 360ms	remaining: 154ms
70:	learn: 22.1779345	total: 364ms	remaining: 149ms
71:	learn: 22.0491576	total: 369ms	remaining: 144ms
72:	learn: 21.9379106	total: 375ms	remaining: 139ms
73:	learn: 21.7597096	total: 380ms	remaining: 134ms
74:	learn: 21.6042300	total: 384ms	remaining: 128ms
75:	learn: 21.4644642	total: 388ms	remaining: 122ms
76:	learn: 21.3811287	total: 391ms	remaining: 117ms
77:	learn: 21.3089276	total: 395ms	remaining: 111ms
78:	learn: 21.1654429	total: 399ms	remaining: 106ms
79:	learn: 20.9602460	total: 403ms	remaining: 101ms
80:	learn: 20.7959461	total: 407ms	remaining: 95.4ms
81:	learn: 20.5861156	total: 411ms	remaining: 90.2ms
82:	learn: 20.5120680	total: 415ms	remaining: 85ms
83:	learn: 20.3997233	total: 419ms	remaining: 79.8ms
84:	learn: 20.2499469	total: 423ms	remaining: 74.6ms
85:	learn: 20.1117768	total: 427ms	remaining: 69.5ms
86:	learn: 20.0617643	total: 431ms	remaining: 64.4ms
87:	learn: 19.9609182	total: 435ms	remaining: 59.3ms
88:	learn: 19.8763814	total: 438ms	remaining: 54.2ms
89:	learn: 19.7843516	total: 443ms	remaining: 49.2ms
90:	learn: 19.6926200	total: 447ms	remaining: 44.3ms
91:	learn: 19.5686774	total: 452ms	remaining: 39.3ms
92:	learn: 19.4727236	total: 457ms	remaining: 34.4ms
93:	learn: 19.3780174	total: 462ms	remaining: 29.5ms
94:	learn: 19.2840650	total: 466ms	remaining: 24.5ms
95:	learn: 19.1747368	total: 470ms	remaining: 19.6ms
96:	learn: 19.1273306	total: 474ms	remaining: 14.7ms
97:	learn: 19.0413946	total: 483ms	remaining: 9.85ms
98:	learn: 18.8980682	total: 490ms	remaining: 4.95ms
99:	learn: 18.7799962	total: 498ms	remaining: 0us
0:	learn: 46.4426352	total: 5.16ms	remaining: 511ms
1:	learn: 45.5770653	total: 10.1ms	remaining: 495ms
2:	learn: 44.6956685	total: 14.7ms	remaining: 476ms
3:	learn: 43.9934709	total: 19.9ms	remaining: 479ms
4:	learn: 43.3008183	total: 25.2ms	remaining: 479ms
5:	learn: 42.7510022	total: 29.8ms	remaining: 467ms
6:	learn: 42.0237555	total: 33.5ms	remaining: 445ms
7:	learn: 41.5354996	total: 37.3ms	remaining: 429ms
8:	learn: 41.0264055	total: 41.4ms	remaining: 419ms
9:	learn: 40.5267003	total: 45.6ms	remaining: 411ms
10:	learn: 39.8363942	total: 49.4ms	remaining: 400ms
11:	learn: 39.2014089	total: 53.3ms	remaining: 391ms
12:	learn: 38.7943524	total: 57.4ms	remaining: 384ms
13:	learn: 38.1664113	total: 61.2ms	remaining: 376ms
14:	learn: 37.7492773	total: 65.2ms	remaining: 370ms
15:	learn: 37.2369693	total: 68.8ms	remaining: 361ms
16:	learn: 36.6953383	total: 72.6ms	remaining: 354ms
17:	learn: 36.3580916	total: 76.3ms	remaining: 348ms
18:	learn: 35.8637745	total: 80ms	remaining: 341ms
19:	learn: 35.4299153	total: 84.2ms	remaining: 337ms
20:	learn: 34.8794879	total: 87.8ms	remaining: 330ms
21:	learn: 34.3253348	total: 91.5ms	remaining: 325ms
22:	learn: 33.9307096	total: 95.1ms	remaining: 318ms
23:	learn: 33.5952896	total: 100ms	remaining: 317ms
24:	learn: 33.1314051	total: 105ms	remaining: 314ms
25:	learn: 32.8502968	total: 109ms	remaining: 310ms
26:	learn: 32.4430184	total: 113ms	remaining: 307ms
27:	learn: 32.0721224	total: 118ms	remaining: 304ms
28:	learn: 31.7977479	total: 123ms	remaining: 301ms
29:	learn: 31.3999469	total: 127ms	remaining: 297ms
30:	learn: 31.1179360	total: 132ms	remaining: 293ms
31:	learn: 30.7712852	total: 140ms	remaining: 297ms
32:	learn: 30.2912977	total: 148ms	remaining: 301ms
33:	learn: 29.9920376	total: 157ms	remaining: 305ms
34:	learn: 29.6637918	total: 164ms	remaining: 305ms
35:	learn: 29.3522959	total: 170ms	remaining: 302ms
36:	learn: 29.0482516	total: 175ms	remaining: 298ms
37:	learn: 28.7956656	total: 180ms	remaining: 294ms
38:	learn: 28.4845569	total: 185ms	remaining: 289ms
39:	learn: 28.3038067	total: 190ms	remaining: 285ms
40:	learn: 28.1185263	total: 196ms	remaining: 282ms
41:	learn: 27.8012563	total: 200ms	remaining: 277ms
42:	learn: 27.5184259	total: 206ms	remaining: 272ms
43:	learn: 27.3019892	total: 211ms	remaining: 268ms
44:	learn: 27.0494594	total: 215ms	remaining: 263ms
45:	learn: 26.8054317	total: 220ms	remaining: 259ms
46:	learn: 26.6554974	total: 225ms	remaining: 254ms
47:	learn: 26.3568392	total: 230ms	remaining: 250ms
48:	learn: 26.1045872	total: 235ms	remaining: 245ms
49:	learn: 25.9807311	total: 240ms	remaining: 240ms
50:	learn: 25.7104640	total: 244ms	remaining: 235ms
51:	learn: 25.6019547	total: 248ms	remaining: 229ms
52:	learn: 25.5011930	total: 252ms	remaining: 223ms
53:	learn: 25.2291639	total: 256ms	remaining: 218ms
54:	learn: 24.9952313	total: 260ms	remaining: 212ms
55:	learn: 24.8195031	total: 263ms	remaining: 207ms
56:	learn: 24.5591684	total: 267ms	remaining: 201ms
57:	learn: 24.4163080	total: 271ms	remaining: 196ms
58:	learn: 24.2328188	total: 275ms	remaining: 191ms
59:	learn: 24.0087408	total: 279ms	remaining: 186ms
60:	learn: 23.8918912	total: 283ms	remaining: 181ms
61:	learn: 23.7537024	total: 287ms	remaining: 176ms
62:	learn: 23.5466923	total: 291ms	remaining: 171ms
63:	learn: 23.3903724	total: 294ms	remaining: 166ms
64:	learn: 23.3257785	total: 299ms	remaining: 161ms
65:	learn: 23.2839464	total: 303ms	remaining: 156ms
66:	learn: 23.1476036	total: 307ms	remaining: 151ms
67:	learn: 22.9480972	total: 311ms	remaining: 147ms
68:	learn: 22.7537529	total: 316ms	remaining: 142ms
69:	learn: 22.6209544	total: 319ms	remaining: 137ms
70:	learn: 22.5058753	total: 324ms	remaining: 132ms
71:	learn: 22.4068656	total: 328ms	remaining: 128ms
72:	learn: 22.3254150	total: 334ms	remaining: 124ms
73:	learn: 22.1784174	total: 342ms	remaining: 120ms
74:	learn: 22.1095388	total: 349ms	remaining: 116ms
75:	learn: 21.9958083	total: 356ms	remaining: 112ms
76:	learn: 21.8728475	total: 363ms	remaining: 109ms
77:	learn: 21.7975828	total: 369ms	remaining: 104ms
78:	learn: 21.7133267	total: 374ms	remaining: 99.3ms
79:	learn: 21.6023410	total: 379ms	remaining: 94.7ms
80:	learn: 21.5254474	total: 384ms	remaining: 90ms
81:	learn: 21.3307418	total: 389ms	remaining: 85.3ms
82:	learn: 21.2411976	total: 394ms	remaining: 80.6ms
83:	learn: 21.1091386	total: 399ms	remaining: 75.9ms
84:	learn: 21.0526747	total: 403ms	remaining: 71.2ms
85:	learn: 20.9083817	total: 408ms	remaining: 66.5ms
86:	learn: 20.8767767	total: 413ms	remaining: 61.8ms
87:	learn: 20.8143988	total: 418ms	remaining: 57ms
88:	learn: 20.7127697	total: 422ms	remaining: 52.1ms
89:	learn: 20.6112504	total: 427ms	remaining: 47.4ms
90:	learn: 20.4609960	total: 432ms	remaining: 42.7ms
91:	learn: 20.3648890	total: 437ms	remaining: 38ms
92:	learn: 20.3052040	total: 442ms	remaining: 33.2ms
93:	learn: 20.2587865	total: 446ms	remaining: 28.5ms
94:	learn: 20.2096406	total: 450ms	remaining: 23.7ms
95:	learn: 20.1301385	total: 454ms	remaining: 18.9ms
96:	learn: 20.0401359	total: 458ms	remaining: 14.2ms
97:	learn: 19.9791591	total: 462ms	remaining: 9.44ms
98:	learn: 19.9237318	total: 466ms	remaining: 4.71ms
99:	learn: 19.8009190	total: 470ms	remaining: 0us
0:	learn: 46.9286701	total: 5.2ms	remaining: 515ms
1:	learn: 46.2851598	total: 9.87ms	remaining: 483ms
2:	learn: 45.4586007	total: 14ms	remaining: 452ms
3:	learn: 44.6581393	total: 22.2ms	remaining: 533ms
4:	learn: 43.8231644	total: 30.2ms	remaining: 574ms
5:	learn: 43.2906569	total: 39.4ms	remaining: 617ms
6:	learn: 42.5095813	total: 46.3ms	remaining: 615ms
7:	learn: 41.9310465	total: 51.8ms	remaining: 596ms
8:	learn: 41.2083262	total: 57.3ms	remaining: 579ms
9:	learn: 40.6852547	total: 62.5ms	remaining: 563ms
10:	learn: 39.9637018	total: 67.6ms	remaining: 547ms
11:	learn: 39.2804189	total: 72.8ms	remaining: 534ms
12:	learn: 38.8804017	total: 78.2ms	remaining: 523ms
13:	learn: 38.3826597	total: 82.9ms	remaining: 509ms
14:	learn: 37.9240424	total: 88.1ms	remaining: 499ms
15:	learn: 37.4312070	total: 93.3ms	remaining: 490ms
16:	learn: 36.8803673	total: 98.3ms	remaining: 480ms
17:	learn: 36.5496582	total: 103ms	remaining: 469ms
18:	learn: 36.2078375	total: 108ms	remaining: 461ms
19:	learn: 35.6806593	total: 113ms	remaining: 454ms
20:	learn: 35.1512154	total: 118ms	remaining: 445ms
21:	learn: 34.6013055	total: 123ms	remaining: 434ms
22:	learn: 34.2380102	total: 127ms	remaining: 424ms
23:	learn: 33.8720185	total: 131ms	remaining: 414ms
24:	learn: 33.4426135	total: 135ms	remaining: 404ms
25:	learn: 33.1471186	total: 139ms	remaining: 395ms
26:	learn: 32.8018279	total: 143ms	remaining: 387ms
27:	learn: 32.4498594	total: 147ms	remaining: 377ms
28:	learn: 31.9749480	total: 150ms	remaining: 368ms
29:	learn: 31.6470735	total: 154ms	remaining: 360ms
30:	learn: 31.4265242	total: 159ms	remaining: 354ms
31:	learn: 31.0753325	total: 163ms	remaining: 347ms
32:	learn: 30.7192494	total: 168ms	remaining: 341ms
33:	learn: 30.3547940	total: 172ms	remaining: 334ms
34:	learn: 30.1296593	total: 177ms	remaining: 328ms
35:	learn: 29.9367140	total: 181ms	remaining: 322ms
36:	learn: 29.6248477	total: 185ms	remaining: 315ms
37:	learn: 29.3156707	total: 189ms	remaining: 308ms
38:	learn: 29.1534039	total: 193ms	remaining: 301ms
39:	learn: 28.9351289	total: 197ms	remaining: 295ms
40:	learn: 28.7057685	total: 201ms	remaining: 289ms
41:	learn: 28.3132521	total: 205ms	remaining: 282ms
42:	learn: 28.0739054	total: 208ms	remaining: 276ms
43:	learn: 27.8135917	total: 213ms	remaining: 271ms
44:	learn: 27.5376804	total: 217ms	remaining: 266ms
45:	learn: 27.3195849	total: 221ms	remaining: 260ms
46:	learn: 27.1681104	total: 225ms	remaining: 254ms
47:	learn: 27.0122442	total: 230ms	remaining: 249ms
48:	learn: 26.7819409	total: 234ms	remaining: 243ms
49:	learn: 26.6429308	total: 238ms	remaining: 238ms
50:	learn: 26.3482899	total: 243ms	remaining: 233ms
51:	learn: 26.2432755	total: 248ms	remaining: 229ms
52:	learn: 26.0811102	total: 256ms	remaining: 227ms
53:	learn: 25.9398113	total: 264ms	remaining: 225ms
54:	learn: 25.7891395	total: 273ms	remaining: 223ms
55:	learn: 25.6185338	total: 281ms	remaining: 221ms
56:	learn: 25.3293977	total: 287ms	remaining: 216ms
57:	learn: 25.1918906	total: 292ms	remaining: 211ms
58:	learn: 25.0503990	total: 297ms	remaining: 206ms
59:	learn: 24.8225776	total: 302ms	remaining: 201ms
60:	learn: 24.5969153	total: 307ms	remaining: 197ms
61:	learn: 24.4657353	total: 312ms	remaining: 191ms
62:	learn: 24.2861000	total: 318ms	remaining: 187ms
63:	learn: 24.1719148	total: 323ms	remaining: 181ms
64:	learn: 24.0547875	total: 328ms	remaining: 176ms
65:	learn: 23.9156724	total: 333ms	remaining: 171ms
66:	learn: 23.7604012	total: 337ms	remaining: 166ms
67:	learn: 23.6265679	total: 342ms	remaining: 161ms
68:	learn: 23.5372255	total: 347ms	remaining: 156ms
69:	learn: 23.3286241	total: 352ms	remaining: 151ms
70:	learn: 23.1806465	total: 356ms	remaining: 145ms
71:	learn: 23.0652081	total: 359ms	remaining: 140ms
72:	learn: 22.9231023	total: 363ms	remaining: 134ms
73:	learn: 22.8020380	total: 367ms	remaining: 129ms
74:	learn: 22.6525036	total: 371ms	remaining: 124ms
75:	learn: 22.5616268	total: 374ms	remaining: 118ms
76:	learn: 22.4395250	total: 378ms	remaining: 113ms
77:	learn: 22.3732379	total: 383ms	remaining: 108ms
78:	learn: 22.2300874	total: 387ms	remaining: 103ms
79:	learn: 22.0209882	total: 390ms	remaining: 97.5ms
80:	learn: 21.8703996	total: 394ms	remaining: 92.4ms
81:	learn: 21.7222039	total: 397ms	remaining: 87.2ms
82:	learn: 21.5903685	total: 401ms	remaining: 82.2ms
83:	learn: 21.4915083	total: 405ms	remaining: 77.1ms
84:	learn: 21.3320736	total: 409ms	remaining: 72.2ms
85:	learn: 21.2295060	total: 413ms	remaining: 67.2ms
86:	learn: 21.1983620	total: 417ms	remaining: 62.2ms
87:	learn: 21.1404156	total: 421ms	remaining: 57.3ms
88:	learn: 21.0684840	total: 425ms	remaining: 52.5ms
89:	learn: 20.9269197	total: 429ms	remaining: 47.7ms
90:	learn: 20.8614606	total: 434ms	remaining: 42.9ms
91:	learn: 20.6642996	total: 438ms	remaining: 38.1ms
92:	learn: 20.5612705	total: 442ms	remaining: 33.3ms
93:	learn: 20.5264997	total: 446ms	remaining: 28.5ms
94:	learn: 20.4532331	total: 450ms	remaining: 23.7ms
95:	learn: 20.3700696	total: 455ms	remaining: 19ms
96:	learn: 20.2671574	total: 460ms	remaining: 14.2ms
97:	learn: 20.1761207	total: 468ms	remaining: 9.54ms
98:	learn: 20.0533799	total: 475ms	remaining: 4.8ms
99:	learn: 19.9890055	total: 483ms	remaining: 0us
0:	learn: 27.5585353	total: 5.28ms	remaining: 523ms
1:	learn: 27.1656995	total: 9.66ms	remaining: 473ms
2:	learn: 26.8590175	total: 14.6ms	remaining: 473ms
3:	learn: 26.5818406	total: 19.9ms	remaining: 476ms
4:	learn: 26.1148663	total: 25ms	remaining: 475ms
5:	learn: 25.7690484	total: 29.3ms	remaining: 459ms
6:	learn: 25.3489206	total: 33.7ms	remaining: 448ms
7:	learn: 24.9542406	total: 37.7ms	remaining: 433ms
8:	learn: 24.6777517	total: 42ms	remaining: 424ms
9:	learn: 24.3242344	total: 46.1ms	remaining: 415ms
10:	learn: 24.0383073	total: 50.3ms	remaining: 407ms
11:	learn: 23.7383420	total: 54.1ms	remaining: 397ms
12:	learn: 23.3461670	total: 57.9ms	remaining: 387ms
13:	learn: 23.0928636	total: 61.8ms	remaining: 379ms
14:	learn: 22.8770414	total: 65.9ms	remaining: 373ms
15:	learn: 22.6323214	total: 70ms	remaining: 368ms
16:	learn: 22.3597072	total: 73.9ms	remaining: 361ms
17:	learn: 22.1079813	total: 77.9ms	remaining: 355ms
18:	learn: 21.8421199	total: 82.1ms	remaining: 350ms
19:	learn: 21.6576508	total: 86.3ms	remaining: 345ms
20:	learn: 21.4301268	total: 90.8ms	remaining: 342ms
21:	learn: 21.2287388	total: 95.4ms	remaining: 338ms
22:	learn: 21.0553872	total: 99.9ms	remaining: 335ms
23:	learn: 20.8977091	total: 104ms	remaining: 330ms
24:	learn: 20.6619051	total: 108ms	remaining: 325ms
25:	learn: 20.5040955	total: 113ms	remaining: 321ms
26:	learn: 20.3181195	total: 117ms	remaining: 317ms
27:	learn: 20.0869436	total: 122ms	remaining: 313ms
28:	learn: 19.9375985	total: 126ms	remaining: 309ms
29:	learn: 19.8247516	total: 131ms	remaining: 305ms
30:	learn: 19.6261697	total: 135ms	remaining: 301ms
31:	learn: 19.4547236	total: 140ms	remaining: 298ms
32:	learn: 19.3157092	total: 148ms	remaining: 300ms
33:	learn: 19.1561419	total: 155ms	remaining: 301ms
34:	learn: 19.0453620	total: 163ms	remaining: 304ms
35:	learn: 18.8738574	total: 169ms	remaining: 300ms
36:	learn: 18.7072907	total: 175ms	remaining: 299ms
37:	learn: 18.5877943	total: 180ms	remaining: 294ms
38:	learn: 18.4436380	total: 186ms	remaining: 290ms
39:	learn: 18.3463356	total: 191ms	remaining: 286ms
40:	learn: 18.2008059	total: 195ms	remaining: 281ms
41:	learn: 18.0582079	total: 201ms	remaining: 277ms
42:	learn: 17.8891982	total: 206ms	remaining: 273ms
43:	learn: 17.7332246	total: 211ms	remaining: 269ms
44:	learn: 17.6206421	total: 216ms	remaining: 264ms
45:	learn: 17.4982800	total: 222ms	remaining: 260ms
46:	learn: 17.3970150	total: 227ms	remaining: 256ms
47:	learn: 17.3058203	total: 232ms	remaining: 251ms
48:	learn: 17.1789256	total: 237ms	remaining: 247ms
49:	learn: 17.0916229	total: 242ms	remaining: 242ms
50:	learn: 16.9859820	total: 247ms	remaining: 238ms
51:	learn: 16.8995582	total: 251ms	remaining: 232ms
52:	learn: 16.8137014	total: 255ms	remaining: 226ms
53:	learn: 16.7021451	total: 260ms	remaining: 221ms
54:	learn: 16.5895582	total: 264ms	remaining: 216ms
55:	learn: 16.5015639	total: 268ms	remaining: 210ms
56:	learn: 16.4356637	total: 272ms	remaining: 205ms
57:	learn: 16.3514525	total: 276ms	remaining: 200ms
58:	learn: 16.2401369	total: 280ms	remaining: 195ms
59:	learn: 16.1293223	total: 284ms	remaining: 189ms
60:	learn: 16.0271167	total: 288ms	remaining: 184ms
61:	learn: 15.9126257	total: 293ms	remaining: 180ms
62:	learn: 15.8391096	total: 297ms	remaining: 175ms
63:	learn: 15.7441773	total: 302ms	remaining: 170ms
64:	learn: 15.6885195	total: 306ms	remaining: 165ms
65:	learn: 15.6052039	total: 311ms	remaining: 160ms
66:	learn: 15.5074202	total: 316ms	remaining: 156ms
67:	learn: 15.4054338	total: 320ms	remaining: 151ms
68:	learn: 15.2885714	total: 325ms	remaining: 146ms
69:	learn: 15.2157472	total: 329ms	remaining: 141ms
70:	learn: 15.1031554	total: 334ms	remaining: 136ms
71:	learn: 15.0237470	total: 338ms	remaining: 131ms
72:	learn: 14.9756825	total: 345ms	remaining: 128ms
73:	learn: 14.8840596	total: 353ms	remaining: 124ms
74:	learn: 14.8077061	total: 360ms	remaining: 120ms
75:	learn: 14.7444437	total: 367ms	remaining: 116ms
76:	learn: 14.6751720	total: 375ms	remaining: 112ms
77:	learn: 14.5830333	total: 380ms	remaining: 107ms
78:	learn: 14.5241206	total: 385ms	remaining: 102ms
79:	learn: 14.4892731	total: 390ms	remaining: 97.5ms
80:	learn: 14.4256605	total: 395ms	remaining: 92.6ms
81:	learn: 14.3666860	total: 400ms	remaining: 87.9ms
82:	learn: 14.2938372	total: 405ms	remaining: 83ms
83:	learn: 14.2161532	total: 411ms	remaining: 78.2ms
84:	learn: 14.1582910	total: 416ms	remaining: 73.3ms
85:	learn: 14.1029153	total: 421ms	remaining: 68.5ms
86:	learn: 14.0475835	total: 426ms	remaining: 63.6ms
87:	learn: 13.9892661	total: 431ms	remaining: 58.7ms
88:	learn: 13.9481628	total: 436ms	remaining: 53.8ms
89:	learn: 13.8483991	total: 441ms	remaining: 49ms
90:	learn: 13.7775614	total: 446ms	remaining: 44.2ms
91:	learn: 13.7304585	total: 451ms	remaining: 39.2ms
92:	learn: 13.6783381	total: 455ms	remaining: 34.3ms
93:	learn: 13.6356964	total: 460ms	remaining: 29.3ms
94:	learn: 13.5924371	total: 464ms	remaining: 24.4ms
95:	learn: 13.5400746	total: 469ms	remaining: 19.5ms
96:	learn: 13.4897333	total: 472ms	remaining: 14.6ms
97:	learn: 13.4470321	total: 477ms	remaining: 9.73ms
98:	learn: 13.3856082	total: 481ms	remaining: 4.86ms
99:	learn: 13.3082371	total: 485ms	remaining: 0us
0:	learn: 43.0395283	total: 4.63ms	remaining: 459ms
1:	learn: 42.1130223	total: 11.1ms	remaining: 542ms
2:	learn: 41.1753409	total: 18.1ms	remaining: 587ms
3:	learn: 40.3637444	total: 25.8ms	remaining: 620ms
4:	learn: 39.6508088	total: 33.3ms	remaining: 632ms
5:	learn: 38.7217934	total: 41.7ms	remaining: 653ms
6:	learn: 37.8538055	total: 46.5ms	remaining: 618ms
7:	learn: 36.9793574	total: 51.4ms	remaining: 591ms
8:	learn: 36.3076984	total: 56.5ms	remaining: 571ms
9:	learn: 35.6673160	total: 61.7ms	remaining: 556ms
10:	learn: 34.8889800	total: 66.4ms	remaining: 537ms
11:	learn: 34.1675517	total: 71.4ms	remaining: 524ms
12:	learn: 33.6779564	total: 77ms	remaining: 515ms
13:	learn: 33.0710039	total: 82.6ms	remaining: 507ms
14:	learn: 32.4966674	total: 87.8ms	remaining: 498ms
15:	learn: 31.9492856	total: 93.5ms	remaining: 491ms
16:	learn: 31.5108129	total: 98.7ms	remaining: 482ms
17:	learn: 30.9804023	total: 104ms	remaining: 473ms
18:	learn: 30.4169089	total: 109ms	remaining: 465ms
19:	learn: 29.8930375	total: 115ms	remaining: 459ms
20:	learn: 29.3974421	total: 119ms	remaining: 447ms
21:	learn: 28.8792307	total: 123ms	remaining: 435ms
22:	learn: 28.3894474	total: 127ms	remaining: 424ms
23:	learn: 27.9921276	total: 131ms	remaining: 415ms
24:	learn: 27.6158887	total: 135ms	remaining: 404ms
25:	learn: 27.2866950	total: 139ms	remaining: 395ms
26:	learn: 26.8770708	total: 143ms	remaining: 387ms
27:	learn: 26.6233005	total: 147ms	remaining: 379ms
28:	learn: 26.2921934	total: 152ms	remaining: 371ms
29:	learn: 25.9156920	total: 155ms	remaining: 363ms
30:	learn: 25.5311106	total: 157ms	remaining: 349ms
31:	learn: 25.2178997	total: 161ms	remaining: 343ms
32:	learn: 24.8572196	total: 166ms	remaining: 336ms
33:	learn: 24.5849710	total: 169ms	remaining: 328ms
34:	learn: 24.2209190	total: 173ms	remaining: 321ms
35:	learn: 23.8708250	total: 177ms	remaining: 314ms
36:	learn: 23.5325279	total: 181ms	remaining: 308ms
37:	learn: 23.2116148	total: 185ms	remaining: 302ms
38:	learn: 22.9696787	total: 189ms	remaining: 295ms
39:	learn: 22.7936783	total: 193ms	remaining: 289ms
40:	learn: 22.6228847	total: 197ms	remaining: 283ms
41:	learn: 22.3691527	total: 201ms	remaining: 277ms
42:	learn: 22.1002173	total: 205ms	remaining: 272ms
43:	learn: 21.9157268	total: 209ms	remaining: 266ms
44:	learn: 21.7229102	total: 213ms	remaining: 260ms
45:	learn: 21.4642005	total: 218ms	remaining: 255ms
46:	learn: 21.3029442	total: 222ms	remaining: 251ms
47:	learn: 21.1469792	total: 227ms	remaining: 246ms
48:	learn: 20.9458235	total: 232ms	remaining: 241ms
49:	learn: 20.7335242	total: 236ms	remaining: 236ms
50:	learn: 20.5440269	total: 241ms	remaining: 232ms
51:	learn: 20.3661449	total: 246ms	remaining: 227ms
52:	learn: 20.2158134	total: 250ms	remaining: 222ms
53:	learn: 19.9934873	total: 255ms	remaining: 217ms
54:	learn: 19.7879739	total: 263ms	remaining: 215ms
55:	learn: 19.6630460	total: 270ms	remaining: 212ms
56:	learn: 19.5152729	total: 280ms	remaining: 211ms
57:	learn: 19.3581128	total: 285ms	remaining: 207ms
58:	learn: 19.2209303	total: 292ms	remaining: 203ms
59:	learn: 19.0965248	total: 297ms	remaining: 198ms
60:	learn: 19.0035954	total: 302ms	remaining: 193ms
61:	learn: 18.8554149	total: 308ms	remaining: 188ms
62:	learn: 18.7095427	total: 313ms	remaining: 184ms
63:	learn: 18.5751494	total: 317ms	remaining: 179ms
64:	learn: 18.4678251	total: 323ms	remaining: 174ms
65:	learn: 18.3500325	total: 328ms	remaining: 169ms
66:	learn: 18.2088983	total: 333ms	remaining: 164ms
67:	learn: 18.0737705	total: 338ms	remaining: 159ms
68:	learn: 17.9325058	total: 343ms	remaining: 154ms
69:	learn: 17.8003911	total: 347ms	remaining: 149ms
70:	learn: 17.7385366	total: 353ms	remaining: 144ms
71:	learn: 17.6106998	total: 359ms	remaining: 140ms
72:	learn: 17.4816270	total: 363ms	remaining: 134ms
73:	learn: 17.4025554	total: 367ms	remaining: 129ms
74:	learn: 17.2902108	total: 371ms	remaining: 124ms
75:	learn: 17.2158048	total: 375ms	remaining: 118ms
76:	learn: 17.1261053	total: 379ms	remaining: 113ms
77:	learn: 17.0308917	total: 383ms	remaining: 108ms
78:	learn: 16.9546705	total: 387ms	remaining: 103ms
79:	learn: 16.8319165	total: 391ms	remaining: 97.9ms
80:	learn: 16.7687017	total: 395ms	remaining: 92.7ms
81:	learn: 16.6972326	total: 399ms	remaining: 87.7ms
82:	learn: 16.6124580	total: 403ms	remaining: 82.6ms
83:	learn: 16.4999052	total: 408ms	remaining: 77.6ms
84:	learn: 16.4302484	total: 411ms	remaining: 72.6ms
85:	learn: 16.3201363	total: 415ms	remaining: 67.6ms
86:	learn: 16.2534314	total: 419ms	remaining: 62.6ms
87:	learn: 16.1720485	total: 423ms	remaining: 57.7ms
88:	learn: 16.0625751	total: 428ms	remaining: 52.9ms
89:	learn: 15.9135088	total: 433ms	remaining: 48.1ms
90:	learn: 15.8658863	total: 437ms	remaining: 43.2ms
91:	learn: 15.8066805	total: 442ms	remaining: 38.4ms
92:	learn: 15.7412103	total: 450ms	remaining: 33.9ms
93:	learn: 15.6542776	total: 458ms	remaining: 29.2ms
94:	learn: 15.5760334	total: 464ms	remaining: 24.4ms
95:	learn: 15.5434131	total: 471ms	remaining: 19.6ms
96:	learn: 15.4709561	total: 478ms	remaining: 14.8ms
97:	learn: 15.4449618	total: 483ms	remaining: 9.86ms
98:	learn: 15.3752761	total: 488ms	remaining: 4.93ms
99:	learn: 15.3106595	total: 494ms	remaining: 0us
0:	learn: 46.7142257	total: 5.15ms	remaining: 510ms
1:	learn: 45.7634153	total: 11.3ms	remaining: 554ms
2:	learn: 45.0054253	total: 16.5ms	remaining: 532ms
3:	learn: 44.2120432	total: 20.9ms	remaining: 501ms
4:	learn: 43.3960472	total: 25.7ms	remaining: 489ms
5:	learn: 42.8588120	total: 30.2ms	remaining: 474ms
6:	learn: 41.9533701	total: 34.6ms	remaining: 459ms
7:	learn: 41.2745030	total: 38.6ms	remaining: 444ms
8:	learn: 40.6797495	total: 42.8ms	remaining: 432ms
9:	learn: 39.9899571	total: 47ms	remaining: 423ms
10:	learn: 39.4682100	total: 51.4ms	remaining: 416ms
11:	learn: 39.0305595	total: 56ms	remaining: 411ms
12:	learn: 38.4200417	total: 60.5ms	remaining: 405ms
13:	learn: 37.8425194	total: 65.1ms	remaining: 400ms
14:	learn: 37.4203127	total: 69.5ms	remaining: 394ms
15:	learn: 36.9917688	total: 73.8ms	remaining: 387ms
16:	learn: 36.5544138	total: 78.2ms	remaining: 382ms
17:	learn: 36.0727019	total: 82.9ms	remaining: 378ms
18:	learn: 35.4835715	total: 87.6ms	remaining: 373ms
19:	learn: 34.9865654	total: 92.1ms	remaining: 368ms
20:	learn: 34.6063373	total: 97ms	remaining: 365ms
21:	learn: 34.0997289	total: 101ms	remaining: 359ms
22:	learn: 33.7313171	total: 106ms	remaining: 355ms
23:	learn: 33.3582000	total: 110ms	remaining: 350ms
24:	learn: 32.9432456	total: 115ms	remaining: 345ms
25:	learn: 32.5220888	total: 123ms	remaining: 351ms
26:	learn: 32.2172292	total: 131ms	remaining: 354ms
27:	learn: 31.8972904	total: 140ms	remaining: 361ms
28:	learn: 31.6405350	total: 148ms	remaining: 363ms
29:	learn: 31.4167702	total: 153ms	remaining: 357ms
30:	learn: 30.8541961	total: 155ms	remaining: 346ms
31:	learn: 30.5572111	total: 160ms	remaining: 341ms
32:	learn: 30.1700399	total: 165ms	remaining: 336ms
33:	learn: 29.8537271	total: 170ms	remaining: 330ms
34:	learn: 29.6192540	total: 175ms	remaining: 326ms
35:	learn: 29.3276362	total: 181ms	remaining: 321ms
36:	learn: 28.9985179	total: 186ms	remaining: 317ms
37:	learn: 28.7046880	total: 191ms	remaining: 312ms
38:	learn: 28.4412677	total: 196ms	remaining: 307ms
39:	learn: 28.1277292	total: 201ms	remaining: 302ms
40:	learn: 27.9000750	total: 206ms	remaining: 297ms
41:	learn: 27.5433162	total: 211ms	remaining: 292ms
42:	learn: 27.2493285	total: 217ms	remaining: 287ms
43:	learn: 26.9576632	total: 219ms	remaining: 279ms
44:	learn: 26.6177110	total: 223ms	remaining: 273ms
45:	learn: 26.2812456	total: 227ms	remaining: 266ms
46:	learn: 26.0803859	total: 231ms	remaining: 261ms
47:	learn: 25.9543581	total: 235ms	remaining: 255ms
48:	learn: 25.7951582	total: 239ms	remaining: 249ms
49:	learn: 25.6548184	total: 249ms	remaining: 249ms
50:	learn: 25.4010843	total: 253ms	remaining: 244ms
51:	learn: 24.9773937	total: 257ms	remaining: 237ms
52:	learn: 24.8026156	total: 261ms	remaining: 231ms
53:	learn: 24.5568053	total: 265ms	remaining: 226ms
54:	learn: 24.2281839	total: 269ms	remaining: 220ms
55:	learn: 23.9202795	total: 273ms	remaining: 215ms
56:	learn: 23.7625591	total: 277ms	remaining: 209ms
57:	learn: 23.5429721	total: 282ms	remaining: 204ms
58:	learn: 23.3175893	total: 286ms	remaining: 199ms
59:	learn: 23.2035130	total: 291ms	remaining: 194ms
60:	learn: 23.0232450	total: 295ms	remaining: 189ms
61:	learn: 22.8384958	total: 300ms	remaining: 184ms
62:	learn: 22.6499902	total: 305ms	remaining: 179ms
63:	learn: 22.4577426	total: 309ms	remaining: 174ms
64:	learn: 22.3333158	total: 314ms	remaining: 169ms
65:	learn: 22.2064131	total: 321ms	remaining: 165ms
66:	learn: 22.1434971	total: 330ms	remaining: 162ms
67:	learn: 21.9596519	total: 341ms	remaining: 161ms
68:	learn: 21.8475576	total: 352ms	remaining: 158ms
69:	learn: 21.6954745	total: 357ms	remaining: 153ms
70:	learn: 21.5635976	total: 363ms	remaining: 148ms
71:	learn: 21.4588506	total: 368ms	remaining: 143ms
72:	learn: 21.3527268	total: 373ms	remaining: 138ms
73:	learn: 21.2661288	total: 379ms	remaining: 133ms
74:	learn: 21.1817333	total: 384ms	remaining: 128ms
75:	learn: 21.0527553	total: 389ms	remaining: 123ms
76:	learn: 20.9229021	total: 394ms	remaining: 118ms
77:	learn: 20.7563946	total: 399ms	remaining: 113ms
78:	learn: 20.6569831	total: 404ms	remaining: 107ms
79:	learn: 20.4982663	total: 409ms	remaining: 102ms
80:	learn: 20.3185460	total: 414ms	remaining: 97.1ms
81:	learn: 20.2096241	total: 420ms	remaining: 92.1ms
82:	learn: 20.1274891	total: 425ms	remaining: 87ms
83:	learn: 20.0740139	total: 429ms	remaining: 81.7ms
84:	learn: 19.9630699	total: 433ms	remaining: 76.4ms
85:	learn: 19.8753899	total: 437ms	remaining: 71.2ms
86:	learn: 19.6563612	total: 441ms	remaining: 66ms
87:	learn: 19.4680232	total: 446ms	remaining: 60.8ms
88:	learn: 19.3503431	total: 450ms	remaining: 55.6ms
89:	learn: 19.2221379	total: 454ms	remaining: 50.5ms
90:	learn: 19.0732542	total: 458ms	remaining: 45.3ms
91:	learn: 18.9825190	total: 463ms	remaining: 40.3ms
92:	learn: 18.8839009	total: 467ms	remaining: 35.2ms
93:	learn: 18.8012219	total: 472ms	remaining: 30.1ms
94:	learn: 18.7172713	total: 476ms	remaining: 25ms
95:	learn: 18.6201170	total: 481ms	remaining: 20ms
96:	learn: 18.5318611	total: 485ms	remaining: 15ms
97:	learn: 18.3833356	total: 490ms	remaining: 10ms
98:	learn: 18.3289700	total: 495ms	remaining: 5ms
99:	learn: 18.2227333	total: 500ms	remaining: 0us
0:	learn: 46.3764524	total: 5.52ms	remaining: 546ms
1:	learn: 45.5561269	total: 11.2ms	remaining: 550ms
2:	learn: 44.8811245	total: 16.5ms	remaining: 532ms
3:	learn: 44.0788617	total: 21.5ms	remaining: 515ms
4:	learn: 43.3619790	total: 26.4ms	remaining: 502ms
5:	learn: 42.6912112	total: 31.7ms	remaining: 497ms
6:	learn: 42.2292118	total: 36.7ms	remaining: 487ms
7:	learn: 41.7725191	total: 41.8ms	remaining: 481ms
8:	learn: 41.1676614	total: 46.6ms	remaining: 471ms
9:	learn: 40.5771076	total: 52.1ms	remaining: 469ms
10:	learn: 39.8343757	total: 57.6ms	remaining: 466ms
11:	learn: 39.3761142	total: 63ms	remaining: 462ms
12:	learn: 38.5254692	total: 67.4ms	remaining: 451ms
13:	learn: 37.9629555	total: 71.5ms	remaining: 439ms
14:	learn: 37.4418438	total: 75.3ms	remaining: 427ms
15:	learn: 37.0507283	total: 79.3ms	remaining: 416ms
16:	learn: 36.6264217	total: 83.5ms	remaining: 408ms
17:	learn: 36.1114940	total: 87.3ms	remaining: 398ms
18:	learn: 35.7193862	total: 91.1ms	remaining: 389ms
19:	learn: 35.3301177	total: 95.3ms	remaining: 381ms
20:	learn: 35.0598280	total: 99.7ms	remaining: 375ms
21:	learn: 34.5469736	total: 103ms	remaining: 367ms
22:	learn: 34.2064215	total: 107ms	remaining: 359ms
23:	learn: 33.7280710	total: 112ms	remaining: 355ms
24:	learn: 33.3282940	total: 117ms	remaining: 350ms
25:	learn: 32.8478961	total: 121ms	remaining: 344ms
26:	learn: 32.5722164	total: 125ms	remaining: 337ms
27:	learn: 32.2457019	total: 129ms	remaining: 332ms
28:	learn: 31.9230495	total: 134ms	remaining: 328ms
29:	learn: 31.4311611	total: 139ms	remaining: 324ms
30:	learn: 30.9179052	total: 143ms	remaining: 319ms
31:	learn: 30.6201141	total: 148ms	remaining: 315ms
32:	learn: 30.3421106	total: 153ms	remaining: 311ms
33:	learn: 29.9885373	total: 158ms	remaining: 306ms
34:	learn: 29.7462780	total: 165ms	remaining: 306ms
35:	learn: 29.3607153	total: 173ms	remaining: 307ms
36:	learn: 29.1793078	total: 180ms	remaining: 306ms
37:	learn: 28.9276538	total: 187ms	remaining: 305ms
38:	learn: 28.6903934	total: 195ms	remaining: 305ms
39:	learn: 28.2095033	total: 200ms	remaining: 300ms
40:	learn: 27.7990608	total: 205ms	remaining: 295ms
41:	learn: 27.5406632	total: 210ms	remaining: 290ms
42:	learn: 27.2575376	total: 215ms	remaining: 285ms
43:	learn: 26.9741707	total: 220ms	remaining: 280ms
44:	learn: 26.6606899	total: 225ms	remaining: 275ms
45:	learn: 26.4015833	total: 230ms	remaining: 270ms
46:	learn: 26.1828993	total: 235ms	remaining: 265ms
47:	learn: 26.0233709	total: 238ms	remaining: 258ms
48:	learn: 25.9300399	total: 243ms	remaining: 253ms
49:	learn: 25.5861489	total: 248ms	remaining: 248ms
50:	learn: 25.4322012	total: 253ms	remaining: 243ms
51:	learn: 25.1595644	total: 259ms	remaining: 239ms
52:	learn: 24.9955303	total: 264ms	remaining: 234ms
53:	learn: 24.7273966	total: 269ms	remaining: 229ms
54:	learn: 24.5747978	total: 273ms	remaining: 223ms
55:	learn: 24.3807977	total: 277ms	remaining: 218ms
56:	learn: 24.1689569	total: 281ms	remaining: 212ms
57:	learn: 23.9898221	total: 285ms	remaining: 206ms
58:	learn: 23.7566414	total: 289ms	remaining: 201ms
59:	learn: 23.6641165	total: 293ms	remaining: 195ms
60:	learn: 23.5658066	total: 297ms	remaining: 190ms
61:	learn: 23.4338851	total: 301ms	remaining: 184ms
62:	learn: 23.2408837	total: 304ms	remaining: 179ms
63:	learn: 23.0642038	total: 309ms	remaining: 174ms
64:	learn: 22.9032045	total: 313ms	remaining: 168ms
65:	learn: 22.7736138	total: 317ms	remaining: 163ms
66:	learn: 22.6836443	total: 320ms	remaining: 158ms
67:	learn: 22.5983654	total: 325ms	remaining: 153ms
68:	learn: 22.4419813	total: 330ms	remaining: 148ms
69:	learn: 22.2863339	total: 335ms	remaining: 144ms
70:	learn: 22.1792943	total: 340ms	remaining: 139ms
71:	learn: 22.1130574	total: 345ms	remaining: 134ms
72:	learn: 21.9858161	total: 350ms	remaining: 129ms
73:	learn: 21.8577784	total: 354ms	remaining: 124ms
74:	learn: 21.7845222	total: 358ms	remaining: 119ms
75:	learn: 21.6831390	total: 366ms	remaining: 115ms
76:	learn: 21.6292521	total: 373ms	remaining: 111ms
77:	learn: 21.5789330	total: 382ms	remaining: 108ms
78:	learn: 21.5420942	total: 388ms	remaining: 103ms
79:	learn: 21.4280939	total: 396ms	remaining: 98.9ms
80:	learn: 21.3641165	total: 401ms	remaining: 94.1ms
81:	learn: 21.2734814	total: 406ms	remaining: 89.2ms
82:	learn: 21.2220323	total: 411ms	remaining: 84.3ms
83:	learn: 21.0625792	total: 417ms	remaining: 79.3ms
84:	learn: 20.9488320	total: 422ms	remaining: 74.4ms
85:	learn: 20.8504255	total: 427ms	remaining: 69.5ms
86:	learn: 20.7848510	total: 432ms	remaining: 64.6ms
87:	learn: 20.7247442	total: 437ms	remaining: 59.6ms
88:	learn: 20.5698590	total: 442ms	remaining: 54.6ms
89:	learn: 20.4067620	total: 447ms	remaining: 49.7ms
90:	learn: 20.3062482	total: 452ms	remaining: 44.7ms
91:	learn: 20.2029696	total: 457ms	remaining: 39.7ms
92:	learn: 20.1384849	total: 463ms	remaining: 34.8ms
93:	learn: 20.0260709	total: 468ms	remaining: 29.9ms
94:	learn: 19.9122100	total: 472ms	remaining: 24.8ms
95:	learn: 19.8648487	total: 476ms	remaining: 19.8ms
96:	learn: 19.8207072	total: 480ms	remaining: 14.8ms
97:	learn: 19.7261189	total: 484ms	remaining: 9.87ms
98:	learn: 19.7042438	total: 488ms	remaining: 4.92ms
99:	learn: 19.6546645	total: 492ms	remaining: 0us
0:	learn: 47.0239288	total: 4.89ms	remaining: 485ms
1:	learn: 46.2253829	total: 9.49ms	remaining: 465ms
2:	learn: 45.5580301	total: 13.9ms	remaining: 448ms
3:	learn: 44.7273237	total: 18.6ms	remaining: 447ms
4:	learn: 43.8867421	total: 26ms	remaining: 494ms
5:	learn: 43.3615911	total: 32.9ms	remaining: 516ms
6:	learn: 42.8548390	total: 42.5ms	remaining: 565ms
7:	learn: 42.1606758	total: 47.9ms	remaining: 551ms
8:	learn: 41.6625870	total: 54.7ms	remaining: 553ms
9:	learn: 40.9497092	total: 59.8ms	remaining: 538ms
10:	learn: 40.1886318	total: 65.1ms	remaining: 526ms
11:	learn: 39.7456423	total: 70.3ms	remaining: 515ms
12:	learn: 39.1171373	total: 75.4ms	remaining: 504ms
13:	learn: 38.5451069	total: 80.5ms	remaining: 494ms
14:	learn: 38.0155834	total: 86ms	remaining: 487ms
15:	learn: 37.5631354	total: 91.5ms	remaining: 480ms
16:	learn: 37.1030023	total: 96.4ms	remaining: 471ms
17:	learn: 36.4563029	total: 102ms	remaining: 462ms
18:	learn: 36.0160976	total: 107ms	remaining: 455ms
19:	learn: 35.5079827	total: 112ms	remaining: 447ms
20:	learn: 35.2111885	total: 117ms	remaining: 442ms
21:	learn: 34.9397465	total: 123ms	remaining: 437ms
22:	learn: 34.5270048	total: 127ms	remaining: 427ms
23:	learn: 34.0169260	total: 131ms	remaining: 416ms
24:	learn: 33.7454892	total: 135ms	remaining: 405ms
25:	learn: 33.2648157	total: 139ms	remaining: 396ms
26:	learn: 32.8899427	total: 143ms	remaining: 387ms
27:	learn: 32.6185050	total: 147ms	remaining: 378ms
28:	learn: 32.3528531	total: 151ms	remaining: 369ms
29:	learn: 32.0859923	total: 155ms	remaining: 362ms
30:	learn: 31.6511144	total: 159ms	remaining: 354ms
31:	learn: 31.2571765	total: 163ms	remaining: 346ms
32:	learn: 30.9770049	total: 167ms	remaining: 339ms
33:	learn: 30.6084872	total: 171ms	remaining: 332ms
34:	learn: 30.3448632	total: 175ms	remaining: 325ms
35:	learn: 30.0360942	total: 179ms	remaining: 318ms
36:	learn: 29.6648968	total: 183ms	remaining: 312ms
37:	learn: 29.3165114	total: 187ms	remaining: 306ms
38:	learn: 29.0829198	total: 192ms	remaining: 300ms
39:	learn: 28.7752064	total: 196ms	remaining: 295ms
40:	learn: 28.3622191	total: 201ms	remaining: 289ms
41:	learn: 28.1346631	total: 205ms	remaining: 284ms
42:	learn: 27.9585719	total: 210ms	remaining: 278ms
43:	learn: 27.6565566	total: 214ms	remaining: 272ms
44:	learn: 27.3616172	total: 219ms	remaining: 267ms
45:	learn: 27.0658637	total: 223ms	remaining: 262ms
46:	learn: 26.8660382	total: 228ms	remaining: 257ms
47:	learn: 26.6536078	total: 233ms	remaining: 252ms
48:	learn: 26.3524440	total: 237ms	remaining: 247ms
49:	learn: 26.1595277	total: 242ms	remaining: 242ms
50:	learn: 25.9273523	total: 246ms	remaining: 236ms
51:	learn: 25.7195580	total: 250ms	remaining: 231ms
52:	learn: 25.5730225	total: 255ms	remaining: 226ms
53:	learn: 25.3455276	total: 263ms	remaining: 224ms
54:	learn: 25.2289675	total: 271ms	remaining: 221ms
55:	learn: 25.0133024	total: 279ms	remaining: 219ms
56:	learn: 24.8406714	total: 285ms	remaining: 215ms
57:	learn: 24.6367857	total: 291ms	remaining: 210ms
58:	learn: 24.5338177	total: 296ms	remaining: 206ms
59:	learn: 24.3799964	total: 301ms	remaining: 201ms
60:	learn: 24.1447492	total: 307ms	remaining: 196ms
61:	learn: 23.9880495	total: 312ms	remaining: 191ms
62:	learn: 23.7140630	total: 317ms	remaining: 186ms
63:	learn: 23.5003791	total: 323ms	remaining: 182ms
64:	learn: 23.3207645	total: 328ms	remaining: 177ms
65:	learn: 23.1958356	total: 333ms	remaining: 172ms
66:	learn: 23.0471302	total: 338ms	remaining: 166ms
67:	learn: 22.8977183	total: 343ms	remaining: 161ms
68:	learn: 22.7187400	total: 348ms	remaining: 157ms
69:	learn: 22.6523405	total: 354ms	remaining: 152ms
70:	learn: 22.4767453	total: 359ms	remaining: 147ms
71:	learn: 22.3243677	total: 363ms	remaining: 141ms
72:	learn: 22.2133096	total: 367ms	remaining: 136ms
73:	learn: 22.1151713	total: 371ms	remaining: 130ms
74:	learn: 22.0296666	total: 376ms	remaining: 125ms
75:	learn: 21.9195980	total: 380ms	remaining: 120ms
76:	learn: 21.8401730	total: 384ms	remaining: 115ms
77:	learn: 21.8079797	total: 388ms	remaining: 110ms
78:	learn: 21.7274109	total: 393ms	remaining: 104ms
79:	learn: 21.6663032	total: 398ms	remaining: 99.5ms
80:	learn: 21.5633117	total: 403ms	remaining: 94.6ms
81:	learn: 21.4542467	total: 407ms	remaining: 89.4ms
82:	learn: 21.3177957	total: 412ms	remaining: 84.4ms
83:	learn: 21.1289167	total: 418ms	remaining: 79.5ms
84:	learn: 21.0297368	total: 422ms	remaining: 74.5ms
85:	learn: 20.9089564	total: 427ms	remaining: 69.5ms
86:	learn: 20.7653988	total: 431ms	remaining: 64.5ms
87:	learn: 20.6521894	total: 436ms	remaining: 59.5ms
88:	learn: 20.5193021	total: 441ms	remaining: 54.4ms
89:	learn: 20.4361620	total: 445ms	remaining: 49.4ms
90:	learn: 20.3546710	total: 449ms	remaining: 44.4ms
91:	learn: 20.2513296	total: 457ms	remaining: 39.8ms
92:	learn: 20.1605550	total: 464ms	remaining: 35ms
93:	learn: 20.0515942	total: 473ms	remaining: 30.2ms
94:	learn: 19.9800764	total: 479ms	remaining: 25.2ms
95:	learn: 19.8996532	total: 485ms	remaining: 20.2ms
96:	learn: 19.8450910	total: 490ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 495ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 500ms	remaining: 5.05ms
99:	learn: 19.6328825	total: 505ms	remaining: 0us
0:	learn: 27.5585353	total: 5.53ms	remaining: 548ms
1:	learn: 27.1656995	total: 9.91ms	remaining: 485ms
2:	learn: 26.8590175	total: 13.8ms	remaining: 445ms
3:	learn: 26.5818406	total: 17.7ms	remaining: 424ms
4:	learn: 26.1148663	total: 21.5ms	remaining: 408ms
5:	learn: 25.7690484	total: 25.6ms	remaining: 401ms
6:	learn: 25.3489206	total: 29.5ms	remaining: 392ms
7:	learn: 24.9542406	total: 33.5ms	remaining: 386ms
8:	learn: 24.6777517	total: 37.8ms	remaining: 382ms
9:	learn: 24.3242344	total: 42ms	remaining: 378ms
10:	learn: 24.0383073	total: 46.2ms	remaining: 373ms
11:	learn: 23.7383420	total: 50.4ms	remaining: 369ms
12:	learn: 23.3461670	total: 54.2ms	remaining: 362ms
13:	learn: 23.0928636	total: 58.6ms	remaining: 360ms
14:	learn: 22.8770414	total: 63.4ms	remaining: 360ms
15:	learn: 22.6323214	total: 68.2ms	remaining: 358ms
16:	learn: 22.3597072	total: 72.8ms	remaining: 356ms
17:	learn: 22.1079813	total: 77.5ms	remaining: 353ms
18:	learn: 21.8421199	total: 82.3ms	remaining: 351ms
19:	learn: 21.6576508	total: 87.2ms	remaining: 349ms
20:	learn: 21.4301268	total: 92.1ms	remaining: 346ms
21:	learn: 21.2287388	total: 96.8ms	remaining: 343ms
22:	learn: 21.0553872	total: 101ms	remaining: 339ms
23:	learn: 20.8977091	total: 106ms	remaining: 335ms
24:	learn: 20.6619051	total: 110ms	remaining: 330ms
25:	learn: 20.5040955	total: 116ms	remaining: 329ms
26:	learn: 20.3181195	total: 123ms	remaining: 333ms
27:	learn: 20.0869436	total: 131ms	remaining: 336ms
28:	learn: 19.9375985	total: 139ms	remaining: 340ms
29:	learn: 19.8247516	total: 147ms	remaining: 343ms
30:	learn: 19.6261697	total: 152ms	remaining: 339ms
31:	learn: 19.4547236	total: 157ms	remaining: 334ms
32:	learn: 19.3157092	total: 163ms	remaining: 330ms
33:	learn: 19.1561419	total: 168ms	remaining: 326ms
34:	learn: 19.0453620	total: 173ms	remaining: 322ms
35:	learn: 18.8738574	total: 178ms	remaining: 317ms
36:	learn: 18.7072907	total: 184ms	remaining: 313ms
37:	learn: 18.5877943	total: 189ms	remaining: 308ms
38:	learn: 18.4436380	total: 194ms	remaining: 303ms
39:	learn: 18.3463356	total: 199ms	remaining: 299ms
40:	learn: 18.2008059	total: 204ms	remaining: 293ms
41:	learn: 18.0582079	total: 208ms	remaining: 288ms
42:	learn: 17.8891982	total: 214ms	remaining: 284ms
43:	learn: 17.7332246	total: 219ms	remaining: 279ms
44:	learn: 17.6206421	total: 224ms	remaining: 273ms
45:	learn: 17.4982800	total: 227ms	remaining: 267ms
46:	learn: 17.3970150	total: 232ms	remaining: 261ms
47:	learn: 17.3058203	total: 236ms	remaining: 256ms
48:	learn: 17.1789256	total: 241ms	remaining: 251ms
49:	learn: 17.0916229	total: 245ms	remaining: 245ms
50:	learn: 16.9859820	total: 250ms	remaining: 240ms
51:	learn: 16.8995582	total: 254ms	remaining: 235ms
52:	learn: 16.8137014	total: 258ms	remaining: 229ms
53:	learn: 16.7021451	total: 263ms	remaining: 224ms
54:	learn: 16.5895582	total: 268ms	remaining: 219ms
55:	learn: 16.5015639	total: 272ms	remaining: 214ms
56:	learn: 16.4356637	total: 277ms	remaining: 209ms
57:	learn: 16.3514525	total: 282ms	remaining: 204ms
58:	learn: 16.2401369	total: 287ms	remaining: 200ms
59:	learn: 16.1293223	total: 292ms	remaining: 195ms
60:	learn: 16.0271167	total: 297ms	remaining: 190ms
61:	learn: 15.9126257	total: 302ms	remaining: 185ms
62:	learn: 15.8391096	total: 307ms	remaining: 180ms
63:	learn: 15.7441773	total: 312ms	remaining: 176ms
64:	learn: 15.6885195	total: 321ms	remaining: 173ms
65:	learn: 15.6052039	total: 329ms	remaining: 170ms
66:	learn: 15.5074202	total: 337ms	remaining: 166ms
67:	learn: 15.4054338	total: 346ms	remaining: 163ms
68:	learn: 15.2885714	total: 351ms	remaining: 158ms
69:	learn: 15.2157472	total: 357ms	remaining: 153ms
70:	learn: 15.1031554	total: 362ms	remaining: 148ms
71:	learn: 15.0237470	total: 367ms	remaining: 143ms
72:	learn: 14.9756825	total: 372ms	remaining: 138ms
73:	learn: 14.8840596	total: 378ms	remaining: 133ms
74:	learn: 14.8077061	total: 384ms	remaining: 128ms
75:	learn: 14.7444437	total: 389ms	remaining: 123ms
76:	learn: 14.6751720	total: 394ms	remaining: 118ms
77:	learn: 14.5830333	total: 400ms	remaining: 113ms
78:	learn: 14.5241206	total: 405ms	remaining: 108ms
79:	learn: 14.4892731	total: 411ms	remaining: 103ms
80:	learn: 14.4256605	total: 416ms	remaining: 97.6ms
81:	learn: 14.3666860	total: 421ms	remaining: 92.4ms
82:	learn: 14.2938372	total: 426ms	remaining: 87.2ms
83:	learn: 14.2161532	total: 430ms	remaining: 81.9ms
84:	learn: 14.1582910	total: 434ms	remaining: 76.7ms
85:	learn: 14.1029153	total: 439ms	remaining: 71.5ms
86:	learn: 14.0475835	total: 444ms	remaining: 66.3ms
87:	learn: 13.9892661	total: 448ms	remaining: 61.1ms
88:	learn: 13.9481628	total: 453ms	remaining: 56ms
89:	learn: 13.8483991	total: 457ms	remaining: 50.8ms
90:	learn: 13.7775614	total: 462ms	remaining: 45.7ms
91:	learn: 13.7304585	total: 466ms	remaining: 40.6ms
92:	learn: 13.6783381	total: 471ms	remaining: 35.5ms
93:	learn: 13.6356964	total: 476ms	remaining: 30.4ms
94:	learn: 13.5924371	total: 480ms	remaining: 25.3ms
95:	learn: 13.5400746	total: 485ms	remaining: 20.2ms
96:	learn: 13.4897333	total: 489ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 494ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 499ms	remaining: 5.04ms
99:	learn: 13.3082371	total: 504ms	remaining: 0us
0:	learn: 43.0395283	total: 5.53ms	remaining: 547ms
1:	learn: 42.1130223	total: 10.9ms	remaining: 532ms
2:	learn: 41.1753409	total: 15.9ms	remaining: 516ms
3:	learn: 40.3637444	total: 20.8ms	remaining: 498ms
4:	learn: 39.6508088	total: 25.9ms	remaining: 493ms
5:	learn: 38.7217934	total: 31.2ms	remaining: 489ms
6:	learn: 37.8538055	total: 36.2ms	remaining: 481ms
7:	learn: 36.9793574	total: 41.4ms	remaining: 477ms
8:	learn: 36.3076984	total: 46.2ms	remaining: 467ms
9:	learn: 35.6673160	total: 51ms	remaining: 459ms
10:	learn: 34.8889800	total: 55.7ms	remaining: 451ms
11:	learn: 34.1675517	total: 60.1ms	remaining: 441ms
12:	learn: 33.6779564	total: 66ms	remaining: 441ms
13:	learn: 33.0710039	total: 71.5ms	remaining: 439ms
14:	learn: 32.4966674	total: 75.8ms	remaining: 429ms
15:	learn: 31.9492856	total: 80.2ms	remaining: 421ms
16:	learn: 31.5108129	total: 84.1ms	remaining: 411ms
17:	learn: 30.9804023	total: 88.5ms	remaining: 403ms
18:	learn: 30.4169089	total: 92.4ms	remaining: 394ms
19:	learn: 29.8930375	total: 96.8ms	remaining: 387ms
20:	learn: 29.3974421	total: 101ms	remaining: 381ms
21:	learn: 28.8792307	total: 106ms	remaining: 374ms
22:	learn: 28.3894474	total: 110ms	remaining: 367ms
23:	learn: 27.9921276	total: 114ms	remaining: 361ms
24:	learn: 27.6158887	total: 118ms	remaining: 355ms
25:	learn: 27.2866950	total: 123ms	remaining: 349ms
26:	learn: 26.8770708	total: 126ms	remaining: 342ms
27:	learn: 26.6233005	total: 130ms	remaining: 335ms
28:	learn: 26.2921934	total: 135ms	remaining: 331ms
29:	learn: 25.9156920	total: 140ms	remaining: 327ms
30:	learn: 25.5311106	total: 142ms	remaining: 315ms
31:	learn: 25.2178997	total: 146ms	remaining: 311ms
32:	learn: 24.8572196	total: 151ms	remaining: 307ms
33:	learn: 24.5849710	total: 156ms	remaining: 302ms
34:	learn: 24.2209190	total: 160ms	remaining: 297ms
35:	learn: 23.8708250	total: 165ms	remaining: 292ms
36:	learn: 23.5325279	total: 169ms	remaining: 288ms
37:	learn: 23.2116148	total: 178ms	remaining: 291ms
38:	learn: 22.9696787	total: 186ms	remaining: 290ms
39:	learn: 22.7936783	total: 194ms	remaining: 291ms
40:	learn: 22.6228847	total: 200ms	remaining: 288ms
41:	learn: 22.3691527	total: 206ms	remaining: 285ms
42:	learn: 22.1002173	total: 212ms	remaining: 280ms
43:	learn: 21.9157268	total: 217ms	remaining: 276ms
44:	learn: 21.7229102	total: 222ms	remaining: 272ms
45:	learn: 21.4642005	total: 227ms	remaining: 267ms
46:	learn: 21.3029442	total: 232ms	remaining: 262ms
47:	learn: 21.1469792	total: 237ms	remaining: 257ms
48:	learn: 20.9458235	total: 243ms	remaining: 253ms
49:	learn: 20.7335242	total: 248ms	remaining: 248ms
50:	learn: 20.5440269	total: 252ms	remaining: 242ms
51:	learn: 20.3661449	total: 258ms	remaining: 238ms
52:	learn: 20.2158134	total: 263ms	remaining: 233ms
53:	learn: 19.9934873	total: 268ms	remaining: 228ms
54:	learn: 19.7879739	total: 273ms	remaining: 223ms
55:	learn: 19.6630460	total: 278ms	remaining: 218ms
56:	learn: 19.5152729	total: 284ms	remaining: 214ms
57:	learn: 19.3581128	total: 290ms	remaining: 210ms
58:	learn: 19.2209303	total: 295ms	remaining: 205ms
59:	learn: 19.0965248	total: 299ms	remaining: 199ms
60:	learn: 19.0035954	total: 303ms	remaining: 194ms
61:	learn: 18.8554149	total: 308ms	remaining: 189ms
62:	learn: 18.7095427	total: 312ms	remaining: 183ms
63:	learn: 18.5751494	total: 316ms	remaining: 178ms
64:	learn: 18.4678251	total: 320ms	remaining: 172ms
65:	learn: 18.3500325	total: 325ms	remaining: 167ms
66:	learn: 18.2088983	total: 329ms	remaining: 162ms
67:	learn: 18.0737705	total: 333ms	remaining: 157ms
68:	learn: 17.9325058	total: 338ms	remaining: 152ms
69:	learn: 17.8003911	total: 343ms	remaining: 147ms
70:	learn: 17.7385366	total: 347ms	remaining: 142ms
71:	learn: 17.6106998	total: 352ms	remaining: 137ms
72:	learn: 17.4816270	total: 356ms	remaining: 132ms
73:	learn: 17.4025554	total: 361ms	remaining: 127ms
74:	learn: 17.2902108	total: 365ms	remaining: 122ms
75:	learn: 17.2158048	total: 370ms	remaining: 117ms
76:	learn: 17.1261053	total: 378ms	remaining: 113ms
77:	learn: 17.0308917	total: 385ms	remaining: 109ms
78:	learn: 16.9546705	total: 394ms	remaining: 105ms
79:	learn: 16.8319165	total: 400ms	remaining: 100ms
80:	learn: 16.7687017	total: 406ms	remaining: 95.3ms
81:	learn: 16.6972326	total: 412ms	remaining: 90.4ms
82:	learn: 16.6124580	total: 417ms	remaining: 85.4ms
83:	learn: 16.4999052	total: 423ms	remaining: 80.5ms
84:	learn: 16.4302484	total: 428ms	remaining: 75.6ms
85:	learn: 16.3201363	total: 434ms	remaining: 70.6ms
86:	learn: 16.2534314	total: 438ms	remaining: 65.5ms
87:	learn: 16.1720485	total: 443ms	remaining: 60.5ms
88:	learn: 16.0625751	total: 449ms	remaining: 55.5ms
89:	learn: 15.9135088	total: 454ms	remaining: 50.4ms
90:	learn: 15.8658863	total: 459ms	remaining: 45.4ms
91:	learn: 15.8066805	total: 464ms	remaining: 40.3ms
92:	learn: 15.7412103	total: 468ms	remaining: 35.3ms
93:	learn: 15.6542776	total: 474ms	remaining: 30.2ms
94:	learn: 15.5760334	total: 479ms	remaining: 25.2ms
95:	learn: 15.5434131	total: 483ms	remaining: 20.1ms
96:	learn: 15.4709561	total: 487ms	remaining: 15.1ms
97:	learn: 15.4449618	total: 492ms	remaining: 10ms
98:	learn: 15.3752761	total: 496ms	remaining: 5.01ms
99:	learn: 15.3106595	total: 500ms	remaining: 0us
0:	learn: 46.7142257	total: 4.99ms	remaining: 494ms
1:	learn: 45.7634153	total: 10ms	remaining: 492ms
2:	learn: 45.0054253	total: 14.6ms	remaining: 471ms
3:	learn: 44.2120432	total: 18.9ms	remaining: 455ms
4:	learn: 43.3960472	total: 23.2ms	remaining: 440ms
5:	learn: 42.8588120	total: 27.5ms	remaining: 431ms
6:	learn: 41.9533701	total: 32.2ms	remaining: 428ms
7:	learn: 41.2745030	total: 36.9ms	remaining: 425ms
8:	learn: 40.6797495	total: 45.2ms	remaining: 457ms
9:	learn: 39.9899571	total: 53.1ms	remaining: 478ms
10:	learn: 39.4682100	total: 62.2ms	remaining: 503ms
11:	learn: 39.0305595	total: 68.6ms	remaining: 503ms
12:	learn: 38.4200417	total: 74.8ms	remaining: 501ms
13:	learn: 37.8425194	total: 80.2ms	remaining: 493ms
14:	learn: 37.4203127	total: 85.2ms	remaining: 483ms
15:	learn: 36.9917688	total: 90.2ms	remaining: 474ms
16:	learn: 36.5544138	total: 95.4ms	remaining: 466ms
17:	learn: 36.0727019	total: 100ms	remaining: 457ms
18:	learn: 35.4835715	total: 106ms	remaining: 450ms
19:	learn: 34.9865654	total: 111ms	remaining: 445ms
20:	learn: 34.6063373	total: 116ms	remaining: 438ms
21:	learn: 34.0997289	total: 122ms	remaining: 431ms
22:	learn: 33.7313171	total: 127ms	remaining: 426ms
23:	learn: 33.3582000	total: 132ms	remaining: 417ms
24:	learn: 32.9432456	total: 137ms	remaining: 410ms
25:	learn: 32.5220888	total: 142ms	remaining: 405ms
26:	learn: 32.2172292	total: 147ms	remaining: 398ms
27:	learn: 31.8972904	total: 151ms	remaining: 388ms
28:	learn: 31.6405350	total: 155ms	remaining: 380ms
29:	learn: 31.4167702	total: 159ms	remaining: 372ms
30:	learn: 30.8541961	total: 161ms	remaining: 358ms
31:	learn: 30.5572111	total: 165ms	remaining: 350ms
32:	learn: 30.1700399	total: 169ms	remaining: 343ms
33:	learn: 29.8537271	total: 174ms	remaining: 337ms
34:	learn: 29.6192540	total: 178ms	remaining: 330ms
35:	learn: 29.3276362	total: 182ms	remaining: 323ms
36:	learn: 28.9985179	total: 186ms	remaining: 316ms
37:	learn: 28.7046880	total: 189ms	remaining: 309ms
38:	learn: 28.4412677	total: 194ms	remaining: 303ms
39:	learn: 28.1277292	total: 198ms	remaining: 297ms
40:	learn: 27.9000750	total: 202ms	remaining: 291ms
41:	learn: 27.5433162	total: 206ms	remaining: 285ms
42:	learn: 27.2493285	total: 210ms	remaining: 278ms
43:	learn: 26.9576632	total: 212ms	remaining: 269ms
44:	learn: 26.6177110	total: 216ms	remaining: 264ms
45:	learn: 26.2812456	total: 220ms	remaining: 258ms
46:	learn: 26.0803859	total: 224ms	remaining: 252ms
47:	learn: 25.9543581	total: 229ms	remaining: 248ms
48:	learn: 25.7951582	total: 233ms	remaining: 243ms
49:	learn: 25.6548184	total: 238ms	remaining: 238ms
50:	learn: 25.4010843	total: 242ms	remaining: 233ms
51:	learn: 24.9773937	total: 247ms	remaining: 228ms
52:	learn: 24.8026156	total: 252ms	remaining: 223ms
53:	learn: 24.5568053	total: 256ms	remaining: 218ms
54:	learn: 24.2281839	total: 261ms	remaining: 214ms
55:	learn: 23.9202795	total: 266ms	remaining: 209ms
56:	learn: 23.7625591	total: 273ms	remaining: 206ms
57:	learn: 23.5429721	total: 282ms	remaining: 204ms
58:	learn: 23.3175893	total: 290ms	remaining: 202ms
59:	learn: 23.2035130	total: 296ms	remaining: 197ms
60:	learn: 23.0232450	total: 304ms	remaining: 194ms
61:	learn: 22.8384958	total: 309ms	remaining: 189ms
62:	learn: 22.6499902	total: 314ms	remaining: 184ms
63:	learn: 22.4577426	total: 319ms	remaining: 179ms
64:	learn: 22.3333158	total: 324ms	remaining: 174ms
65:	learn: 22.2064131	total: 329ms	remaining: 169ms
66:	learn: 22.1434971	total: 334ms	remaining: 165ms
67:	learn: 21.9596519	total: 339ms	remaining: 160ms
68:	learn: 21.8475576	total: 344ms	remaining: 155ms
69:	learn: 21.6954745	total: 350ms	remaining: 150ms
70:	learn: 21.5635976	total: 355ms	remaining: 145ms
71:	learn: 21.4588506	total: 359ms	remaining: 140ms
72:	learn: 21.3527268	total: 364ms	remaining: 135ms
73:	learn: 21.2661288	total: 370ms	remaining: 130ms
74:	learn: 21.1817333	total: 374ms	remaining: 125ms
75:	learn: 21.0527553	total: 378ms	remaining: 119ms
76:	learn: 20.9229021	total: 382ms	remaining: 114ms
77:	learn: 20.7563946	total: 386ms	remaining: 109ms
78:	learn: 20.6569831	total: 390ms	remaining: 104ms
79:	learn: 20.4982663	total: 394ms	remaining: 98.5ms
80:	learn: 20.3185460	total: 398ms	remaining: 93.3ms
81:	learn: 20.2096241	total: 402ms	remaining: 88.3ms
82:	learn: 20.1274891	total: 406ms	remaining: 83.2ms
83:	learn: 20.0740139	total: 410ms	remaining: 78.2ms
84:	learn: 19.9630699	total: 414ms	remaining: 73.1ms
85:	learn: 19.8753899	total: 419ms	remaining: 68.2ms
86:	learn: 19.6563612	total: 423ms	remaining: 63.2ms
87:	learn: 19.4680232	total: 427ms	remaining: 58.3ms
88:	learn: 19.3503431	total: 431ms	remaining: 53.3ms
89:	learn: 19.2221379	total: 436ms	remaining: 48.4ms
90:	learn: 19.0732542	total: 440ms	remaining: 43.5ms
91:	learn: 18.9825190	total: 445ms	remaining: 38.7ms
92:	learn: 18.8839009	total: 449ms	remaining: 33.8ms
93:	learn: 18.8012219	total: 454ms	remaining: 29ms
94:	learn: 18.7172713	total: 458ms	remaining: 24.1ms
95:	learn: 18.6201170	total: 463ms	remaining: 19.3ms
96:	learn: 18.5318611	total: 467ms	remaining: 14.4ms
97:	learn: 18.3833356	total: 475ms	remaining: 9.68ms
98:	learn: 18.3289700	total: 482ms	remaining: 4.86ms
99:	learn: 18.2227333	total: 492ms	remaining: 0us
0:	learn: 46.3764524	total: 5.42ms	remaining: 536ms
1:	learn: 45.5561269	total: 10.4ms	remaining: 512ms
2:	learn: 44.8811245	total: 15.3ms	remaining: 495ms
3:	learn: 44.0788617	total: 20.2ms	remaining: 485ms
4:	learn: 43.3619790	total: 25.4ms	remaining: 482ms
5:	learn: 42.6912112	total: 30.6ms	remaining: 479ms
6:	learn: 42.2292118	total: 35.8ms	remaining: 475ms
7:	learn: 41.7725191	total: 40ms	remaining: 460ms
8:	learn: 41.1676614	total: 44.2ms	remaining: 447ms
9:	learn: 40.5771076	total: 48ms	remaining: 432ms
10:	learn: 39.8343757	total: 52.4ms	remaining: 424ms
11:	learn: 39.3761142	total: 56.5ms	remaining: 414ms
12:	learn: 38.5254692	total: 60.7ms	remaining: 406ms
13:	learn: 37.9629555	total: 65.1ms	remaining: 400ms
14:	learn: 37.4418438	total: 69.1ms	remaining: 392ms
15:	learn: 37.0507283	total: 73.6ms	remaining: 386ms
16:	learn: 36.6264217	total: 78ms	remaining: 381ms
17:	learn: 36.1114940	total: 82.5ms	remaining: 376ms
18:	learn: 35.7193862	total: 87.2ms	remaining: 372ms
19:	learn: 35.3301177	total: 91.5ms	remaining: 366ms
20:	learn: 35.0598280	total: 95.9ms	remaining: 361ms
21:	learn: 34.5469736	total: 100ms	remaining: 356ms
22:	learn: 34.2064215	total: 105ms	remaining: 352ms
23:	learn: 33.7280710	total: 110ms	remaining: 347ms
24:	learn: 33.3282940	total: 114ms	remaining: 342ms
25:	learn: 32.8478961	total: 119ms	remaining: 338ms
26:	learn: 32.5722164	total: 123ms	remaining: 333ms
27:	learn: 32.2457019	total: 127ms	remaining: 327ms
28:	learn: 31.9230495	total: 132ms	remaining: 324ms
29:	learn: 31.4311611	total: 137ms	remaining: 320ms
30:	learn: 30.9179052	total: 144ms	remaining: 321ms
31:	learn: 30.6201141	total: 152ms	remaining: 323ms
32:	learn: 30.3421106	total: 161ms	remaining: 326ms
33:	learn: 29.9885373	total: 170ms	remaining: 330ms
34:	learn: 29.7462780	total: 176ms	remaining: 326ms
35:	learn: 29.3607153	total: 181ms	remaining: 322ms
36:	learn: 29.1793078	total: 187ms	remaining: 318ms
37:	learn: 28.9276538	total: 192ms	remaining: 313ms
38:	learn: 28.6903934	total: 197ms	remaining: 308ms
39:	learn: 28.2095033	total: 202ms	remaining: 304ms
40:	learn: 27.7990608	total: 208ms	remaining: 299ms
41:	learn: 27.5406632	total: 213ms	remaining: 294ms
42:	learn: 27.2575376	total: 218ms	remaining: 289ms
43:	learn: 26.9741707	total: 224ms	remaining: 285ms
44:	learn: 26.6606899	total: 228ms	remaining: 279ms
45:	learn: 26.4015833	total: 233ms	remaining: 274ms
46:	learn: 26.1828993	total: 239ms	remaining: 269ms
47:	learn: 26.0233709	total: 242ms	remaining: 262ms
48:	learn: 25.9300399	total: 246ms	remaining: 257ms
49:	learn: 25.5861489	total: 251ms	remaining: 251ms
50:	learn: 25.4322012	total: 255ms	remaining: 245ms
51:	learn: 25.1595644	total: 259ms	remaining: 239ms
52:	learn: 24.9955303	total: 264ms	remaining: 234ms
53:	learn: 24.7273966	total: 269ms	remaining: 229ms
54:	learn: 24.5747978	total: 273ms	remaining: 224ms
55:	learn: 24.3807977	total: 278ms	remaining: 218ms
56:	learn: 24.1689569	total: 282ms	remaining: 213ms
57:	learn: 23.9898221	total: 286ms	remaining: 207ms
58:	learn: 23.7566414	total: 290ms	remaining: 202ms
59:	learn: 23.6641165	total: 294ms	remaining: 196ms
60:	learn: 23.5658066	total: 298ms	remaining: 191ms
61:	learn: 23.4338851	total: 302ms	remaining: 185ms
62:	learn: 23.2408837	total: 307ms	remaining: 180ms
63:	learn: 23.0642038	total: 311ms	remaining: 175ms
64:	learn: 22.9032045	total: 316ms	remaining: 170ms
65:	learn: 22.7736138	total: 320ms	remaining: 165ms
66:	learn: 22.6836443	total: 324ms	remaining: 160ms
67:	learn: 22.5983654	total: 329ms	remaining: 155ms
68:	learn: 22.4419813	total: 333ms	remaining: 150ms
69:	learn: 22.2863339	total: 341ms	remaining: 146ms
70:	learn: 22.1792943	total: 349ms	remaining: 142ms
71:	learn: 22.1130574	total: 357ms	remaining: 139ms
72:	learn: 21.9858161	total: 362ms	remaining: 134ms
73:	learn: 21.8577784	total: 369ms	remaining: 130ms
74:	learn: 21.7845222	total: 375ms	remaining: 125ms
75:	learn: 21.6831390	total: 380ms	remaining: 120ms
76:	learn: 21.6292521	total: 385ms	remaining: 115ms
77:	learn: 21.5789330	total: 390ms	remaining: 110ms
78:	learn: 21.5420942	total: 395ms	remaining: 105ms
79:	learn: 21.4280939	total: 400ms	remaining: 99.9ms
80:	learn: 21.3641165	total: 405ms	remaining: 94.9ms
81:	learn: 21.2734814	total: 410ms	remaining: 90ms
82:	learn: 21.2220323	total: 415ms	remaining: 85ms
83:	learn: 21.0625792	total: 420ms	remaining: 80ms
84:	learn: 20.9488320	total: 425ms	remaining: 75ms
85:	learn: 20.8504255	total: 430ms	remaining: 69.9ms
86:	learn: 20.7848510	total: 435ms	remaining: 65ms
87:	learn: 20.7247442	total: 440ms	remaining: 60ms
88:	learn: 20.5698590	total: 444ms	remaining: 54.9ms
89:	learn: 20.4067620	total: 449ms	remaining: 49.8ms
90:	learn: 20.3062482	total: 453ms	remaining: 44.8ms
91:	learn: 20.2029696	total: 457ms	remaining: 39.8ms
92:	learn: 20.1384849	total: 462ms	remaining: 34.8ms
93:	learn: 20.0260709	total: 466ms	remaining: 29.8ms
94:	learn: 19.9122100	total: 471ms	remaining: 24.8ms
95:	learn: 19.8648487	total: 475ms	remaining: 19.8ms
96:	learn: 19.8207072	total: 480ms	remaining: 14.8ms
97:	learn: 19.7261189	total: 484ms	remaining: 9.88ms
98:	learn: 19.7042438	total: 488ms	remaining: 4.93ms
99:	learn: 19.6546645	total: 493ms	remaining: 0us
0:	learn: 47.0239288	total: 7.66ms	remaining: 758ms
1:	learn: 46.2253829	total: 15.1ms	remaining: 742ms
2:	learn: 45.5580301	total: 20.3ms	remaining: 657ms
3:	learn: 44.7273237	total: 25.5ms	remaining: 613ms
4:	learn: 43.8867421	total: 30.3ms	remaining: 576ms
5:	learn: 43.3615911	total: 35.1ms	remaining: 550ms
6:	learn: 42.8548390	total: 40ms	remaining: 532ms
7:	learn: 42.1606758	total: 44.9ms	remaining: 517ms
8:	learn: 41.6625870	total: 50.1ms	remaining: 506ms
9:	learn: 40.9497092	total: 55.2ms	remaining: 497ms
10:	learn: 40.1886318	total: 60.6ms	remaining: 490ms
11:	learn: 39.7456423	total: 65ms	remaining: 477ms
12:	learn: 39.1171373	total: 69.9ms	remaining: 468ms
13:	learn: 38.5451069	total: 75.1ms	remaining: 461ms
14:	learn: 38.0155834	total: 80.6ms	remaining: 457ms
15:	learn: 37.5631354	total: 84.5ms	remaining: 444ms
16:	learn: 37.1030023	total: 88.4ms	remaining: 432ms
17:	learn: 36.4563029	total: 92.6ms	remaining: 422ms
18:	learn: 36.0160976	total: 96.7ms	remaining: 412ms
19:	learn: 35.5079827	total: 101ms	remaining: 402ms
20:	learn: 35.2111885	total: 105ms	remaining: 394ms
21:	learn: 34.9397465	total: 108ms	remaining: 385ms
22:	learn: 34.5270048	total: 113ms	remaining: 377ms
23:	learn: 34.0169260	total: 117ms	remaining: 369ms
24:	learn: 33.7454892	total: 121ms	remaining: 362ms
25:	learn: 33.2648157	total: 125ms	remaining: 355ms
26:	learn: 32.8899427	total: 129ms	remaining: 348ms
27:	learn: 32.6185050	total: 132ms	remaining: 340ms
28:	learn: 32.3528531	total: 136ms	remaining: 334ms
29:	learn: 32.0859923	total: 140ms	remaining: 328ms
30:	learn: 31.6511144	total: 144ms	remaining: 321ms
31:	learn: 31.2571765	total: 148ms	remaining: 315ms
32:	learn: 30.9770049	total: 152ms	remaining: 310ms
33:	learn: 30.6084872	total: 157ms	remaining: 305ms
34:	learn: 30.3448632	total: 162ms	remaining: 300ms
35:	learn: 30.0360942	total: 167ms	remaining: 296ms
36:	learn: 29.6648968	total: 171ms	remaining: 291ms
37:	learn: 29.3165114	total: 175ms	remaining: 286ms
38:	learn: 29.0829198	total: 180ms	remaining: 281ms
39:	learn: 28.7752064	total: 184ms	remaining: 276ms
40:	learn: 28.3622191	total: 189ms	remaining: 272ms
41:	learn: 28.1346631	total: 197ms	remaining: 271ms
42:	learn: 27.9585719	total: 205ms	remaining: 272ms
43:	learn: 27.6565566	total: 213ms	remaining: 271ms
44:	learn: 27.3616172	total: 221ms	remaining: 270ms
45:	learn: 27.0658637	total: 226ms	remaining: 265ms
46:	learn: 26.8660382	total: 231ms	remaining: 260ms
47:	learn: 26.6536078	total: 236ms	remaining: 256ms
48:	learn: 26.3524440	total: 241ms	remaining: 251ms
49:	learn: 26.1595277	total: 246ms	remaining: 246ms
50:	learn: 25.9273523	total: 251ms	remaining: 241ms
51:	learn: 25.7195580	total: 256ms	remaining: 236ms
52:	learn: 25.5730225	total: 261ms	remaining: 231ms
53:	learn: 25.3455276	total: 266ms	remaining: 226ms
54:	learn: 25.2289675	total: 271ms	remaining: 222ms
55:	learn: 25.0133024	total: 276ms	remaining: 217ms
56:	learn: 24.8406714	total: 280ms	remaining: 211ms
57:	learn: 24.6367857	total: 285ms	remaining: 207ms
58:	learn: 24.5338177	total: 291ms	remaining: 202ms
59:	learn: 24.3799964	total: 296ms	remaining: 197ms
60:	learn: 24.1447492	total: 300ms	remaining: 192ms
61:	learn: 23.9880495	total: 304ms	remaining: 186ms
62:	learn: 23.7140630	total: 308ms	remaining: 181ms
63:	learn: 23.5003791	total: 312ms	remaining: 175ms
64:	learn: 23.3207645	total: 316ms	remaining: 170ms
65:	learn: 23.1958356	total: 320ms	remaining: 165ms
66:	learn: 23.0471302	total: 324ms	remaining: 159ms
67:	learn: 22.8977183	total: 328ms	remaining: 154ms
68:	learn: 22.7187400	total: 332ms	remaining: 149ms
69:	learn: 22.6523405	total: 336ms	remaining: 144ms
70:	learn: 22.4767453	total: 340ms	remaining: 139ms
71:	learn: 22.3243677	total: 344ms	remaining: 134ms
72:	learn: 22.2133096	total: 348ms	remaining: 129ms
73:	learn: 22.1151713	total: 353ms	remaining: 124ms
74:	learn: 22.0296666	total: 357ms	remaining: 119ms
75:	learn: 21.9195980	total: 361ms	remaining: 114ms
76:	learn: 21.8401730	total: 366ms	remaining: 109ms
77:	learn: 21.8079797	total: 371ms	remaining: 105ms
78:	learn: 21.7274109	total: 376ms	remaining: 99.8ms
79:	learn: 21.6663032	total: 380ms	remaining: 95.1ms
80:	learn: 21.5633117	total: 385ms	remaining: 90.2ms
81:	learn: 21.4542467	total: 393ms	remaining: 86.3ms
82:	learn: 21.3177957	total: 412ms	remaining: 84.3ms
83:	learn: 21.1289167	total: 419ms	remaining: 79.9ms
84:	learn: 21.0297368	total: 425ms	remaining: 75ms
85:	learn: 20.9089564	total: 430ms	remaining: 70ms
86:	learn: 20.7653988	total: 436ms	remaining: 65.1ms
87:	learn: 20.6521894	total: 441ms	remaining: 60.2ms
88:	learn: 20.5193021	total: 446ms	remaining: 55.2ms
89:	learn: 20.4361620	total: 452ms	remaining: 50.2ms
90:	learn: 20.3546710	total: 457ms	remaining: 45.2ms
91:	learn: 20.2513296	total: 463ms	remaining: 40.2ms
92:	learn: 20.1605550	total: 468ms	remaining: 35.2ms
93:	learn: 20.0515942	total: 473ms	remaining: 30.2ms
94:	learn: 19.9800764	total: 479ms	remaining: 25.2ms
95:	learn: 19.8996532	total: 485ms	remaining: 20.2ms
96:	learn: 19.8450910	total: 490ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 495ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 500ms	remaining: 5.05ms
99:	learn: 19.6328825	total: 504ms	remaining: 0us
0:	learn: 27.7143805	total: 4.52ms	remaining: 447ms
1:	learn: 27.2245894	total: 9.11ms	remaining: 447ms
2:	learn: 26.8693029	total: 13.4ms	remaining: 433ms
3:	learn: 26.4713217	total: 18.1ms	remaining: 433ms
4:	learn: 26.1261794	total: 22.6ms	remaining: 429ms
5:	learn: 25.8160419	total: 26.7ms	remaining: 418ms
6:	learn: 25.3860050	total: 31ms	remaining: 411ms
7:	learn: 25.0621682	total: 35.5ms	remaining: 409ms
8:	learn: 24.7574429	total: 39.9ms	remaining: 404ms
9:	learn: 24.5154734	total: 44.7ms	remaining: 403ms
10:	learn: 24.2199118	total: 49.9ms	remaining: 404ms
11:	learn: 23.9774955	total: 60.6ms	remaining: 445ms
12:	learn: 23.7755558	total: 68.5ms	remaining: 458ms
13:	learn: 23.4384476	total: 77.1ms	remaining: 474ms
14:	learn: 23.2035324	total: 84.9ms	remaining: 481ms
15:	learn: 22.9925293	total: 90.5ms	remaining: 475ms
16:	learn: 22.7981113	total: 95.7ms	remaining: 467ms
17:	learn: 22.5829245	total: 101ms	remaining: 459ms
18:	learn: 22.4131931	total: 106ms	remaining: 451ms
19:	learn: 22.1833629	total: 111ms	remaining: 444ms
20:	learn: 21.9660824	total: 116ms	remaining: 436ms
21:	learn: 21.7281998	total: 121ms	remaining: 429ms
22:	learn: 21.5000824	total: 138ms	remaining: 460ms
23:	learn: 21.2717031	total: 142ms	remaining: 449ms
24:	learn: 21.0926073	total: 147ms	remaining: 441ms
25:	learn: 20.8922144	total: 152ms	remaining: 434ms
26:	learn: 20.7498215	total: 157ms	remaining: 424ms
27:	learn: 20.5781754	total: 158ms	remaining: 406ms
28:	learn: 20.4294665	total: 162ms	remaining: 396ms
29:	learn: 20.2273985	total: 165ms	remaining: 386ms
30:	learn: 20.0920234	total: 169ms	remaining: 377ms
31:	learn: 19.9311712	total: 173ms	remaining: 369ms
32:	learn: 19.7852359	total: 177ms	remaining: 359ms
33:	learn: 19.6211007	total: 181ms	remaining: 351ms
34:	learn: 19.4806501	total: 185ms	remaining: 343ms
35:	learn: 19.3415380	total: 188ms	remaining: 335ms
36:	learn: 19.2075499	total: 192ms	remaining: 328ms
37:	learn: 19.0582745	total: 196ms	remaining: 320ms
38:	learn: 18.8852020	total: 200ms	remaining: 313ms
39:	learn: 18.6868677	total: 204ms	remaining: 306ms
40:	learn: 18.5481481	total: 208ms	remaining: 300ms
41:	learn: 18.4508846	total: 212ms	remaining: 293ms
42:	learn: 18.3650555	total: 216ms	remaining: 286ms
43:	learn: 18.1818415	total: 220ms	remaining: 280ms
44:	learn: 18.0782035	total: 224ms	remaining: 274ms
45:	learn: 17.9724472	total: 228ms	remaining: 268ms
46:	learn: 17.8657480	total: 232ms	remaining: 262ms
47:	learn: 17.7217309	total: 237ms	remaining: 256ms
48:	learn: 17.6403061	total: 241ms	remaining: 251ms
49:	learn: 17.5245570	total: 246ms	remaining: 246ms
50:	learn: 17.3976790	total: 250ms	remaining: 240ms
51:	learn: 17.2544460	total: 255ms	remaining: 235ms
52:	learn: 17.1507940	total: 259ms	remaining: 230ms
53:	learn: 17.0391276	total: 264ms	remaining: 225ms
54:	learn: 16.9348155	total: 272ms	remaining: 222ms
55:	learn: 16.8475635	total: 279ms	remaining: 219ms
56:	learn: 16.7691656	total: 288ms	remaining: 217ms
57:	learn: 16.6277836	total: 294ms	remaining: 213ms
58:	learn: 16.5524230	total: 300ms	remaining: 209ms
59:	learn: 16.4614442	total: 305ms	remaining: 203ms
60:	learn: 16.3077836	total: 310ms	remaining: 198ms
61:	learn: 16.2278133	total: 315ms	remaining: 193ms
62:	learn: 16.1288632	total: 320ms	remaining: 188ms
63:	learn: 16.0734717	total: 325ms	remaining: 183ms
64:	learn: 16.0085754	total: 331ms	remaining: 178ms
65:	learn: 15.9278700	total: 336ms	remaining: 173ms
66:	learn: 15.8320321	total: 341ms	remaining: 168ms
67:	learn: 15.7706425	total: 346ms	remaining: 163ms
68:	learn: 15.6404344	total: 351ms	remaining: 158ms
69:	learn: 15.5678129	total: 356ms	remaining: 152ms
70:	learn: 15.4980047	total: 361ms	remaining: 147ms
71:	learn: 15.4324207	total: 366ms	remaining: 142ms
72:	learn: 15.3551877	total: 370ms	remaining: 137ms
73:	learn: 15.2930769	total: 375ms	remaining: 132ms
74:	learn: 15.2307174	total: 379ms	remaining: 126ms
75:	learn: 15.1600937	total: 383ms	remaining: 121ms
76:	learn: 15.0837614	total: 388ms	remaining: 116ms
77:	learn: 15.0185989	total: 392ms	remaining: 111ms
78:	learn: 14.9300717	total: 396ms	remaining: 105ms
79:	learn: 14.8928389	total: 400ms	remaining: 100ms
80:	learn: 14.8250040	total: 404ms	remaining: 94.9ms
81:	learn: 14.7906114	total: 408ms	remaining: 89.6ms
82:	learn: 14.7214118	total: 413ms	remaining: 84.5ms
83:	learn: 14.6657875	total: 417ms	remaining: 79.4ms
84:	learn: 14.6085682	total: 421ms	remaining: 74.3ms
85:	learn: 14.5334097	total: 425ms	remaining: 69.2ms
86:	learn: 14.4681230	total: 429ms	remaining: 64.2ms
87:	learn: 14.4088334	total: 434ms	remaining: 59.2ms
88:	learn: 14.3541312	total: 438ms	remaining: 54.2ms
89:	learn: 14.2923636	total: 443ms	remaining: 49.2ms
90:	learn: 14.2339259	total: 447ms	remaining: 44.2ms
91:	learn: 14.1439983	total: 451ms	remaining: 39.2ms
92:	learn: 14.0701371	total: 455ms	remaining: 34.3ms
93:	learn: 13.9770736	total: 460ms	remaining: 29.3ms
94:	learn: 13.9275801	total: 467ms	remaining: 24.6ms
95:	learn: 13.8717050	total: 474ms	remaining: 19.8ms
96:	learn: 13.7821340	total: 483ms	remaining: 14.9ms
97:	learn: 13.7383865	total: 490ms	remaining: 10ms
98:	learn: 13.6850693	total: 497ms	remaining: 5.02ms
99:	learn: 13.6273539	total: 502ms	remaining: 0us
0:	learn: 43.2118728	total: 5.62ms	remaining: 556ms
1:	learn: 42.3090111	total: 9.86ms	remaining: 483ms
2:	learn: 41.3060764	total: 13.7ms	remaining: 443ms
3:	learn: 40.3653958	total: 17.5ms	remaining: 420ms
4:	learn: 39.5006331	total: 21.4ms	remaining: 406ms
5:	learn: 38.6473041	total: 25.9ms	remaining: 406ms
6:	learn: 37.8560875	total: 29.5ms	remaining: 392ms
7:	learn: 37.0772701	total: 33.3ms	remaining: 383ms
8:	learn: 36.3260704	total: 36.8ms	remaining: 372ms
9:	learn: 35.7300393	total: 40.6ms	remaining: 365ms
10:	learn: 34.9336547	total: 44.6ms	remaining: 361ms
11:	learn: 34.1758190	total: 48.6ms	remaining: 356ms
12:	learn: 33.5120760	total: 52.2ms	remaining: 349ms
13:	learn: 32.8731142	total: 55.8ms	remaining: 343ms
14:	learn: 32.3579595	total: 59.6ms	remaining: 338ms
15:	learn: 31.7969963	total: 63.6ms	remaining: 334ms
16:	learn: 31.3472797	total: 67.8ms	remaining: 331ms
17:	learn: 30.7865884	total: 71.8ms	remaining: 327ms
18:	learn: 30.3876486	total: 75.8ms	remaining: 323ms
19:	learn: 29.8840575	total: 80.3ms	remaining: 321ms
20:	learn: 29.3584237	total: 84.6ms	remaining: 318ms
21:	learn: 28.9965200	total: 89.1ms	remaining: 316ms
22:	learn: 28.6117225	total: 93.7ms	remaining: 314ms
23:	learn: 28.1147832	total: 98.4ms	remaining: 311ms
24:	learn: 27.7857774	total: 103ms	remaining: 310ms
25:	learn: 27.3181226	total: 108ms	remaining: 306ms
26:	learn: 26.9019101	total: 112ms	remaining: 304ms
27:	learn: 26.6957004	total: 119ms	remaining: 305ms
28:	learn: 26.2816390	total: 126ms	remaining: 309ms
29:	learn: 25.9107534	total: 134ms	remaining: 312ms
30:	learn: 25.5773085	total: 141ms	remaining: 314ms
31:	learn: 25.1916035	total: 147ms	remaining: 313ms
32:	learn: 24.8819670	total: 153ms	remaining: 311ms
33:	learn: 24.5580488	total: 158ms	remaining: 307ms
34:	learn: 24.3088624	total: 163ms	remaining: 303ms
35:	learn: 23.9890893	total: 168ms	remaining: 299ms
36:	learn: 23.7266073	total: 173ms	remaining: 295ms
37:	learn: 23.4886046	total: 179ms	remaining: 291ms
38:	learn: 23.2786313	total: 184ms	remaining: 287ms
39:	learn: 23.0060540	total: 189ms	remaining: 283ms
40:	learn: 22.7848361	total: 194ms	remaining: 279ms
41:	learn: 22.5485511	total: 199ms	remaining: 275ms
42:	learn: 22.3113565	total: 204ms	remaining: 271ms
43:	learn: 22.1296084	total: 208ms	remaining: 265ms
44:	learn: 21.8514989	total: 213ms	remaining: 261ms
45:	learn: 21.6540201	total: 219ms	remaining: 257ms
46:	learn: 21.4203535	total: 223ms	remaining: 252ms
47:	learn: 21.2317196	total: 227ms	remaining: 246ms
48:	learn: 21.0547467	total: 231ms	remaining: 240ms
49:	learn: 20.9192535	total: 250ms	remaining: 250ms
50:	learn: 20.6975386	total: 255ms	remaining: 245ms
51:	learn: 20.5839720	total: 258ms	remaining: 238ms
52:	learn: 20.4528901	total: 262ms	remaining: 232ms
53:	learn: 20.3392419	total: 267ms	remaining: 227ms
54:	learn: 20.1518693	total: 271ms	remaining: 222ms
55:	learn: 19.9928770	total: 275ms	remaining: 216ms
56:	learn: 19.8042028	total: 280ms	remaining: 211ms
57:	learn: 19.7000879	total: 284ms	remaining: 206ms
58:	learn: 19.5524154	total: 289ms	remaining: 201ms
59:	learn: 19.4366908	total: 293ms	remaining: 196ms
60:	learn: 19.2739134	total: 298ms	remaining: 190ms
61:	learn: 19.1499266	total: 302ms	remaining: 185ms
62:	learn: 18.9948972	total: 307ms	remaining: 180ms
63:	learn: 18.8952299	total: 316ms	remaining: 178ms
64:	learn: 18.7545430	total: 324ms	remaining: 174ms
65:	learn: 18.6315116	total: 334ms	remaining: 172ms
66:	learn: 18.5164994	total: 341ms	remaining: 168ms
67:	learn: 18.3983038	total: 347ms	remaining: 163ms
68:	learn: 18.2803212	total: 352ms	remaining: 158ms
69:	learn: 18.1738467	total: 357ms	remaining: 153ms
70:	learn: 18.0884235	total: 362ms	remaining: 148ms
71:	learn: 18.0129445	total: 367ms	remaining: 143ms
72:	learn: 17.8582158	total: 372ms	remaining: 138ms
73:	learn: 17.7473705	total: 377ms	remaining: 133ms
74:	learn: 17.6431421	total: 383ms	remaining: 128ms
75:	learn: 17.5398511	total: 388ms	remaining: 123ms
76:	learn: 17.4404598	total: 393ms	remaining: 117ms
77:	learn: 17.3477525	total: 398ms	remaining: 112ms
78:	learn: 17.2283831	total: 403ms	remaining: 107ms
79:	learn: 17.0767035	total: 409ms	remaining: 102ms
80:	learn: 16.9732705	total: 414ms	remaining: 97.2ms
81:	learn: 16.8927449	total: 418ms	remaining: 91.9ms
82:	learn: 16.8145625	total: 423ms	remaining: 86.6ms
83:	learn: 16.7290845	total: 427ms	remaining: 81.3ms
84:	learn: 16.6661414	total: 431ms	remaining: 76ms
85:	learn: 16.5875575	total: 435ms	remaining: 70.9ms
86:	learn: 16.4578580	total: 440ms	remaining: 65.7ms
87:	learn: 16.4243550	total: 444ms	remaining: 60.6ms
88:	learn: 16.3251337	total: 448ms	remaining: 55.4ms
89:	learn: 16.2516385	total: 452ms	remaining: 50.2ms
90:	learn: 16.1226518	total: 456ms	remaining: 45.1ms
91:	learn: 16.0718308	total: 460ms	remaining: 40ms
92:	learn: 15.9636735	total: 465ms	remaining: 35ms
93:	learn: 15.8923693	total: 469ms	remaining: 30ms
94:	learn: 15.8270425	total: 475ms	remaining: 25ms
95:	learn: 15.7449077	total: 479ms	remaining: 20ms
96:	learn: 15.6978936	total: 485ms	remaining: 15ms
97:	learn: 15.6527285	total: 490ms	remaining: 9.99ms
98:	learn: 15.5557320	total: 495ms	remaining: 5ms
99:	learn: 15.4399171	total: 499ms	remaining: 0us
0:	learn: 46.7092506	total: 5.32ms	remaining: 526ms
1:	learn: 45.8266821	total: 11ms	remaining: 538ms
2:	learn: 45.0052023	total: 16ms	remaining: 516ms
3:	learn: 44.3828795	total: 21.4ms	remaining: 513ms
4:	learn: 43.7255353	total: 26.4ms	remaining: 502ms
5:	learn: 43.1663831	total: 31.6ms	remaining: 494ms
6:	learn: 42.3875189	total: 36.9ms	remaining: 490ms
7:	learn: 41.7839075	total: 42ms	remaining: 483ms
8:	learn: 41.0740108	total: 46.9ms	remaining: 475ms
9:	learn: 40.3846647	total: 51.3ms	remaining: 462ms
10:	learn: 39.8821046	total: 56.7ms	remaining: 459ms
11:	learn: 39.1807254	total: 62.1ms	remaining: 455ms
12:	learn: 38.7153028	total: 66.3ms	remaining: 444ms
13:	learn: 38.0474495	total: 70.9ms	remaining: 435ms
14:	learn: 37.3844461	total: 74.7ms	remaining: 423ms
15:	learn: 36.9210704	total: 78.6ms	remaining: 413ms
16:	learn: 36.3160964	total: 82.7ms	remaining: 404ms
17:	learn: 35.8915826	total: 86.7ms	remaining: 395ms
18:	learn: 35.5519989	total: 90.9ms	remaining: 387ms
19:	learn: 35.1437045	total: 94.5ms	remaining: 378ms
20:	learn: 34.6387799	total: 98.5ms	remaining: 370ms
21:	learn: 34.2437068	total: 102ms	remaining: 363ms
22:	learn: 33.8262100	total: 106ms	remaining: 356ms
23:	learn: 33.4683000	total: 110ms	remaining: 349ms
24:	learn: 32.9996389	total: 115ms	remaining: 344ms
25:	learn: 32.6942147	total: 119ms	remaining: 338ms
26:	learn: 32.3016096	total: 123ms	remaining: 333ms
27:	learn: 31.9517346	total: 127ms	remaining: 326ms
28:	learn: 31.5277387	total: 131ms	remaining: 321ms
29:	learn: 31.2545365	total: 136ms	remaining: 317ms
30:	learn: 31.0510813	total: 140ms	remaining: 312ms
31:	learn: 30.6383830	total: 145ms	remaining: 307ms
32:	learn: 30.2800150	total: 149ms	remaining: 302ms
33:	learn: 29.9559797	total: 153ms	remaining: 298ms
34:	learn: 29.5802745	total: 158ms	remaining: 293ms
35:	learn: 29.2605111	total: 162ms	remaining: 289ms
36:	learn: 28.9582434	total: 169ms	remaining: 287ms
37:	learn: 28.6149387	total: 176ms	remaining: 287ms
38:	learn: 28.3980091	total: 183ms	remaining: 287ms
39:	learn: 28.1704520	total: 191ms	remaining: 287ms
40:	learn: 27.8881319	total: 199ms	remaining: 287ms
41:	learn: 27.5805731	total: 205ms	remaining: 283ms
42:	learn: 27.3520567	total: 210ms	remaining: 278ms
43:	learn: 27.1039679	total: 215ms	remaining: 274ms
44:	learn: 26.8472623	total: 221ms	remaining: 270ms
45:	learn: 26.5757869	total: 226ms	remaining: 266ms
46:	learn: 26.4579118	total: 232ms	remaining: 261ms
47:	learn: 26.1279008	total: 237ms	remaining: 256ms
48:	learn: 25.8503346	total: 242ms	remaining: 252ms
49:	learn: 25.7039015	total: 247ms	remaining: 247ms
50:	learn: 25.4317154	total: 252ms	remaining: 242ms
51:	learn: 25.3028008	total: 256ms	remaining: 237ms
52:	learn: 25.1906194	total: 262ms	remaining: 232ms
53:	learn: 25.0082790	total: 267ms	remaining: 228ms
54:	learn: 24.8264791	total: 271ms	remaining: 222ms
55:	learn: 24.5961365	total: 275ms	remaining: 216ms
56:	learn: 24.4007690	total: 279ms	remaining: 210ms
57:	learn: 24.2476228	total: 283ms	remaining: 205ms
58:	learn: 23.9582465	total: 287ms	remaining: 199ms
59:	learn: 23.7247243	total: 291ms	remaining: 194ms
60:	learn: 23.5379970	total: 296ms	remaining: 189ms
61:	learn: 23.3908530	total: 300ms	remaining: 184ms
62:	learn: 23.2123241	total: 305ms	remaining: 179ms
63:	learn: 23.1010345	total: 309ms	remaining: 174ms
64:	learn: 22.9032423	total: 314ms	remaining: 169ms
65:	learn: 22.7815198	total: 318ms	remaining: 164ms
66:	learn: 22.6325063	total: 321ms	remaining: 158ms
67:	learn: 22.5406071	total: 326ms	remaining: 153ms
68:	learn: 22.4413332	total: 330ms	remaining: 148ms
69:	learn: 22.3005609	total: 335ms	remaining: 143ms
70:	learn: 22.1779345	total: 339ms	remaining: 138ms
71:	learn: 22.0491576	total: 343ms	remaining: 134ms
72:	learn: 21.9379106	total: 348ms	remaining: 129ms
73:	learn: 21.7597096	total: 352ms	remaining: 124ms
74:	learn: 21.6042300	total: 357ms	remaining: 119ms
75:	learn: 21.4644642	total: 361ms	remaining: 114ms
76:	learn: 21.3811287	total: 367ms	remaining: 110ms
77:	learn: 21.3089276	total: 375ms	remaining: 106ms
78:	learn: 21.1654429	total: 382ms	remaining: 102ms
79:	learn: 20.9602460	total: 390ms	remaining: 97.5ms
80:	learn: 20.7959461	total: 398ms	remaining: 93.3ms
81:	learn: 20.5861156	total: 403ms	remaining: 88.5ms
82:	learn: 20.5120680	total: 409ms	remaining: 83.7ms
83:	learn: 20.3997233	total: 414ms	remaining: 78.8ms
84:	learn: 20.2499469	total: 419ms	remaining: 74ms
85:	learn: 20.1117768	total: 424ms	remaining: 69ms
86:	learn: 20.0617643	total: 429ms	remaining: 64.2ms
87:	learn: 19.9609182	total: 435ms	remaining: 59.3ms
88:	learn: 19.8763814	total: 440ms	remaining: 54.4ms
89:	learn: 19.7843516	total: 445ms	remaining: 49.5ms
90:	learn: 19.6926200	total: 450ms	remaining: 44.5ms
91:	learn: 19.5686774	total: 455ms	remaining: 39.6ms
92:	learn: 19.4727236	total: 460ms	remaining: 34.7ms
93:	learn: 19.3780174	total: 466ms	remaining: 29.8ms
94:	learn: 19.2840650	total: 471ms	remaining: 24.8ms
95:	learn: 19.1747368	total: 475ms	remaining: 19.8ms
96:	learn: 19.1273306	total: 479ms	remaining: 14.8ms
97:	learn: 19.0413946	total: 483ms	remaining: 9.85ms
98:	learn: 18.8980682	total: 487ms	remaining: 4.92ms
99:	learn: 18.7799962	total: 491ms	remaining: 0us
0:	learn: 46.4426352	total: 4.67ms	remaining: 463ms
1:	learn: 45.5770653	total: 9.54ms	remaining: 467ms
2:	learn: 44.6956685	total: 14.5ms	remaining: 469ms
3:	learn: 43.9934709	total: 18.9ms	remaining: 453ms
4:	learn: 43.3008183	total: 23.3ms	remaining: 442ms
5:	learn: 42.7510022	total: 28.8ms	remaining: 451ms
6:	learn: 42.0237555	total: 35.7ms	remaining: 475ms
7:	learn: 41.5354996	total: 43.3ms	remaining: 498ms
8:	learn: 41.0264055	total: 50.8ms	remaining: 514ms
9:	learn: 40.5267003	total: 58.3ms	remaining: 525ms
10:	learn: 39.8363942	total: 64ms	remaining: 518ms
11:	learn: 39.2014089	total: 68.9ms	remaining: 505ms
12:	learn: 38.7943524	total: 73.7ms	remaining: 493ms
13:	learn: 38.1664113	total: 78.9ms	remaining: 485ms
14:	learn: 37.7492773	total: 84ms	remaining: 476ms
15:	learn: 37.2369693	total: 88.8ms	remaining: 466ms
16:	learn: 36.6953383	total: 93.9ms	remaining: 459ms
17:	learn: 36.3580916	total: 99.1ms	remaining: 452ms
18:	learn: 35.8637745	total: 104ms	remaining: 445ms
19:	learn: 35.4299153	total: 110ms	remaining: 439ms
20:	learn: 34.8794879	total: 115ms	remaining: 433ms
21:	learn: 34.3253348	total: 120ms	remaining: 425ms
22:	learn: 33.9307096	total: 125ms	remaining: 420ms
23:	learn: 33.5952896	total: 131ms	remaining: 415ms
24:	learn: 33.1314051	total: 135ms	remaining: 404ms
25:	learn: 32.8502968	total: 138ms	remaining: 393ms
26:	learn: 32.4430184	total: 142ms	remaining: 384ms
27:	learn: 32.0721224	total: 146ms	remaining: 375ms
28:	learn: 31.7977479	total: 150ms	remaining: 367ms
29:	learn: 31.3999469	total: 154ms	remaining: 359ms
30:	learn: 31.1179360	total: 158ms	remaining: 352ms
31:	learn: 30.7712852	total: 162ms	remaining: 344ms
32:	learn: 30.2912977	total: 166ms	remaining: 338ms
33:	learn: 29.9920376	total: 170ms	remaining: 331ms
34:	learn: 29.6637918	total: 174ms	remaining: 324ms
35:	learn: 29.3522959	total: 178ms	remaining: 316ms
36:	learn: 29.0482516	total: 182ms	remaining: 310ms
37:	learn: 28.7956656	total: 186ms	remaining: 303ms
38:	learn: 28.4845569	total: 190ms	remaining: 297ms
39:	learn: 28.3038067	total: 194ms	remaining: 290ms
40:	learn: 28.1185263	total: 197ms	remaining: 284ms
41:	learn: 27.8012563	total: 202ms	remaining: 278ms
42:	learn: 27.5184259	total: 206ms	remaining: 273ms
43:	learn: 27.3019892	total: 210ms	remaining: 268ms
44:	learn: 27.0494594	total: 214ms	remaining: 262ms
45:	learn: 26.8054317	total: 219ms	remaining: 257ms
46:	learn: 26.6554974	total: 224ms	remaining: 252ms
47:	learn: 26.3568392	total: 229ms	remaining: 248ms
48:	learn: 26.1045872	total: 233ms	remaining: 243ms
49:	learn: 25.9807311	total: 238ms	remaining: 238ms
50:	learn: 25.7104640	total: 242ms	remaining: 233ms
51:	learn: 25.6019547	total: 246ms	remaining: 227ms
52:	learn: 25.5011930	total: 251ms	remaining: 223ms
53:	learn: 25.2291639	total: 256ms	remaining: 218ms
54:	learn: 24.9952313	total: 264ms	remaining: 216ms
55:	learn: 24.8195031	total: 282ms	remaining: 222ms
56:	learn: 24.5591684	total: 290ms	remaining: 219ms
57:	learn: 24.4163080	total: 295ms	remaining: 213ms
58:	learn: 24.2328188	total: 300ms	remaining: 208ms
59:	learn: 24.0087408	total: 305ms	remaining: 203ms
60:	learn: 23.8918912	total: 310ms	remaining: 198ms
61:	learn: 23.7537024	total: 315ms	remaining: 193ms
62:	learn: 23.5466923	total: 320ms	remaining: 188ms
63:	learn: 23.3903724	total: 325ms	remaining: 183ms
64:	learn: 23.3257785	total: 330ms	remaining: 178ms
65:	learn: 23.2839464	total: 335ms	remaining: 173ms
66:	learn: 23.1476036	total: 340ms	remaining: 168ms
67:	learn: 22.9480972	total: 345ms	remaining: 162ms
68:	learn: 22.7537529	total: 349ms	remaining: 157ms
69:	learn: 22.6209544	total: 354ms	remaining: 152ms
70:	learn: 22.5058753	total: 360ms	remaining: 147ms
71:	learn: 22.4068656	total: 365ms	remaining: 142ms
72:	learn: 22.3254150	total: 369ms	remaining: 137ms
73:	learn: 22.1784174	total: 374ms	remaining: 131ms
74:	learn: 22.1095388	total: 378ms	remaining: 126ms
75:	learn: 21.9958083	total: 383ms	remaining: 121ms
76:	learn: 21.8728475	total: 387ms	remaining: 116ms
77:	learn: 21.7975828	total: 392ms	remaining: 110ms
78:	learn: 21.7133267	total: 396ms	remaining: 105ms
79:	learn: 21.6023410	total: 399ms	remaining: 99.8ms
80:	learn: 21.5254474	total: 404ms	remaining: 94.7ms
81:	learn: 21.3307418	total: 408ms	remaining: 89.5ms
82:	learn: 21.2411976	total: 412ms	remaining: 84.3ms
83:	learn: 21.1091386	total: 415ms	remaining: 79.1ms
84:	learn: 21.0526747	total: 420ms	remaining: 74ms
85:	learn: 20.9083817	total: 424ms	remaining: 69ms
86:	learn: 20.8767767	total: 429ms	remaining: 64.1ms
87:	learn: 20.8143988	total: 433ms	remaining: 59.1ms
88:	learn: 20.7127697	total: 437ms	remaining: 54ms
89:	learn: 20.6112504	total: 441ms	remaining: 49ms
90:	learn: 20.4609960	total: 446ms	remaining: 44.1ms
91:	learn: 20.3648890	total: 450ms	remaining: 39.2ms
92:	learn: 20.3052040	total: 457ms	remaining: 34.4ms
93:	learn: 20.2587865	total: 464ms	remaining: 29.6ms
94:	learn: 20.2096406	total: 471ms	remaining: 24.8ms
95:	learn: 20.1301385	total: 478ms	remaining: 19.9ms
96:	learn: 20.0401359	total: 486ms	remaining: 15ms
97:	learn: 19.9791591	total: 491ms	remaining: 10ms
98:	learn: 19.9237318	total: 496ms	remaining: 5.01ms
99:	learn: 19.8009190	total: 501ms	remaining: 0us
0:	learn: 46.9286701	total: 5.82ms	remaining: 576ms
1:	learn: 46.2851598	total: 11.4ms	remaining: 559ms
2:	learn: 45.4586007	total: 15.2ms	remaining: 490ms
3:	learn: 44.6581393	total: 19.2ms	remaining: 460ms
4:	learn: 43.8231644	total: 22.9ms	remaining: 436ms
5:	learn: 43.2906569	total: 26.4ms	remaining: 413ms
6:	learn: 42.5095813	total: 30.4ms	remaining: 404ms
7:	learn: 41.9310465	total: 34.3ms	remaining: 394ms
8:	learn: 41.2083262	total: 38ms	remaining: 384ms
9:	learn: 40.6852547	total: 41.4ms	remaining: 373ms
10:	learn: 39.9637018	total: 45.4ms	remaining: 368ms
11:	learn: 39.2804189	total: 49.2ms	remaining: 361ms
12:	learn: 38.8804017	total: 53.1ms	remaining: 355ms
13:	learn: 38.3826597	total: 56.7ms	remaining: 348ms
14:	learn: 37.9240424	total: 60.3ms	remaining: 342ms
15:	learn: 37.4312070	total: 64.1ms	remaining: 337ms
16:	learn: 36.8803673	total: 68.2ms	remaining: 333ms
17:	learn: 36.5496582	total: 71.7ms	remaining: 327ms
18:	learn: 36.2078375	total: 75.6ms	remaining: 322ms
19:	learn: 35.6806593	total: 79.1ms	remaining: 316ms
20:	learn: 35.1512154	total: 83.2ms	remaining: 313ms
21:	learn: 34.6013055	total: 87.9ms	remaining: 312ms
22:	learn: 34.2380102	total: 92ms	remaining: 308ms
23:	learn: 33.8720185	total: 96.4ms	remaining: 305ms
24:	learn: 33.4426135	total: 101ms	remaining: 303ms
25:	learn: 33.1471186	total: 106ms	remaining: 301ms
26:	learn: 32.8018279	total: 110ms	remaining: 297ms
27:	learn: 32.4498594	total: 114ms	remaining: 292ms
28:	learn: 31.9749480	total: 118ms	remaining: 289ms
29:	learn: 31.6470735	total: 125ms	remaining: 291ms
30:	learn: 31.4265242	total: 132ms	remaining: 293ms
31:	learn: 31.0753325	total: 139ms	remaining: 295ms
32:	learn: 30.7192494	total: 146ms	remaining: 297ms
33:	learn: 30.3547940	total: 153ms	remaining: 297ms
34:	learn: 30.1296593	total: 159ms	remaining: 295ms
35:	learn: 29.9367140	total: 163ms	remaining: 291ms
36:	learn: 29.6248477	total: 169ms	remaining: 287ms
37:	learn: 29.3156707	total: 174ms	remaining: 283ms
38:	learn: 29.1534039	total: 179ms	remaining: 280ms
39:	learn: 28.9351289	total: 184ms	remaining: 276ms
40:	learn: 28.7057685	total: 189ms	remaining: 272ms
41:	learn: 28.3132521	total: 194ms	remaining: 268ms
42:	learn: 28.0739054	total: 199ms	remaining: 264ms
43:	learn: 27.8135917	total: 204ms	remaining: 260ms
44:	learn: 27.5376804	total: 209ms	remaining: 256ms
45:	learn: 27.3195849	total: 214ms	remaining: 251ms
46:	learn: 27.1681104	total: 220ms	remaining: 248ms
47:	learn: 27.0122442	total: 225ms	remaining: 244ms
48:	learn: 26.7819409	total: 229ms	remaining: 239ms
49:	learn: 26.6429308	total: 233ms	remaining: 233ms
50:	learn: 26.3482899	total: 238ms	remaining: 229ms
51:	learn: 26.2432755	total: 243ms	remaining: 224ms
52:	learn: 26.0811102	total: 247ms	remaining: 219ms
53:	learn: 25.9398113	total: 251ms	remaining: 214ms
54:	learn: 25.7891395	total: 255ms	remaining: 209ms
55:	learn: 25.6185338	total: 259ms	remaining: 203ms
56:	learn: 25.3293977	total: 263ms	remaining: 198ms
57:	learn: 25.1918906	total: 267ms	remaining: 193ms
58:	learn: 25.0503990	total: 271ms	remaining: 188ms
59:	learn: 24.8225776	total: 274ms	remaining: 183ms
60:	learn: 24.5969153	total: 278ms	remaining: 178ms
61:	learn: 24.4657353	total: 283ms	remaining: 173ms
62:	learn: 24.2861000	total: 287ms	remaining: 169ms
63:	learn: 24.1719148	total: 291ms	remaining: 164ms
64:	learn: 24.0547875	total: 296ms	remaining: 159ms
65:	learn: 23.9156724	total: 300ms	remaining: 155ms
66:	learn: 23.7604012	total: 305ms	remaining: 150ms
67:	learn: 23.6265679	total: 309ms	remaining: 145ms
68:	learn: 23.5372255	total: 313ms	remaining: 141ms
69:	learn: 23.3286241	total: 320ms	remaining: 137ms
70:	learn: 23.1806465	total: 327ms	remaining: 134ms
71:	learn: 23.0652081	total: 334ms	remaining: 130ms
72:	learn: 22.9231023	total: 342ms	remaining: 126ms
73:	learn: 22.8020380	total: 349ms	remaining: 122ms
74:	learn: 22.6525036	total: 354ms	remaining: 118ms
75:	learn: 22.5616268	total: 359ms	remaining: 113ms
76:	learn: 22.4395250	total: 364ms	remaining: 109ms
77:	learn: 22.3732379	total: 369ms	remaining: 104ms
78:	learn: 22.2300874	total: 374ms	remaining: 99.3ms
79:	learn: 22.0209882	total: 379ms	remaining: 94.8ms
80:	learn: 21.8703996	total: 384ms	remaining: 90.1ms
81:	learn: 21.7222039	total: 389ms	remaining: 85.4ms
82:	learn: 21.5903685	total: 394ms	remaining: 80.8ms
83:	learn: 21.4915083	total: 399ms	remaining: 76.1ms
84:	learn: 21.3320736	total: 404ms	remaining: 71.4ms
85:	learn: 21.2295060	total: 409ms	remaining: 66.7ms
86:	learn: 21.1983620	total: 415ms	remaining: 62ms
87:	learn: 21.1404156	total: 421ms	remaining: 57.4ms
88:	learn: 21.0684840	total: 426ms	remaining: 52.6ms
89:	learn: 20.9269197	total: 430ms	remaining: 47.8ms
90:	learn: 20.8614606	total: 434ms	remaining: 42.9ms
91:	learn: 20.6642996	total: 437ms	remaining: 38ms
92:	learn: 20.5612705	total: 441ms	remaining: 33.2ms
93:	learn: 20.5264997	total: 445ms	remaining: 28.4ms
94:	learn: 20.4532331	total: 449ms	remaining: 23.6ms
95:	learn: 20.3700696	total: 453ms	remaining: 18.9ms
96:	learn: 20.2671574	total: 456ms	remaining: 14.1ms
97:	learn: 20.1761207	total: 461ms	remaining: 9.4ms
98:	learn: 20.0533799	total: 465ms	remaining: 4.7ms
99:	learn: 19.9890055	total: 469ms	remaining: 0us
0:	learn: 27.5585353	total: 4.9ms	remaining: 485ms
1:	learn: 27.1656995	total: 9.7ms	remaining: 475ms
2:	learn: 26.8590175	total: 17.5ms	remaining: 566ms
3:	learn: 26.5818406	total: 26.3ms	remaining: 630ms
4:	learn: 26.1148663	total: 34.7ms	remaining: 659ms
5:	learn: 25.7690484	total: 41.5ms	remaining: 650ms
6:	learn: 25.3489206	total: 46.8ms	remaining: 621ms
7:	learn: 24.9542406	total: 52ms	remaining: 598ms
8:	learn: 24.6777517	total: 57.3ms	remaining: 579ms
9:	learn: 24.3242344	total: 62.5ms	remaining: 563ms
10:	learn: 24.0383073	total: 67.5ms	remaining: 546ms
11:	learn: 23.7383420	total: 72.4ms	remaining: 531ms
12:	learn: 23.3461670	total: 77.4ms	remaining: 518ms
13:	learn: 23.0928636	total: 82.9ms	remaining: 509ms
14:	learn: 22.8770414	total: 87.7ms	remaining: 497ms
15:	learn: 22.6323214	total: 92.6ms	remaining: 486ms
16:	learn: 22.3597072	total: 97.5ms	remaining: 476ms
17:	learn: 22.1079813	total: 102ms	remaining: 466ms
18:	learn: 21.8421199	total: 108ms	remaining: 460ms
19:	learn: 21.6576508	total: 113ms	remaining: 453ms
20:	learn: 21.4301268	total: 118ms	remaining: 443ms
21:	learn: 21.2287388	total: 122ms	remaining: 432ms
22:	learn: 21.0553872	total: 126ms	remaining: 423ms
23:	learn: 20.8977091	total: 131ms	remaining: 415ms
24:	learn: 20.6619051	total: 135ms	remaining: 406ms
25:	learn: 20.5040955	total: 139ms	remaining: 397ms
26:	learn: 20.3181195	total: 144ms	remaining: 389ms
27:	learn: 20.0869436	total: 148ms	remaining: 381ms
28:	learn: 19.9375985	total: 152ms	remaining: 373ms
29:	learn: 19.8247516	total: 157ms	remaining: 366ms
30:	learn: 19.6261697	total: 161ms	remaining: 359ms
31:	learn: 19.4547236	total: 165ms	remaining: 351ms
32:	learn: 19.3157092	total: 170ms	remaining: 344ms
33:	learn: 19.1561419	total: 174ms	remaining: 339ms
34:	learn: 19.0453620	total: 179ms	remaining: 333ms
35:	learn: 18.8738574	total: 184ms	remaining: 327ms
36:	learn: 18.7072907	total: 188ms	remaining: 321ms
37:	learn: 18.5877943	total: 193ms	remaining: 315ms
38:	learn: 18.4436380	total: 197ms	remaining: 309ms
39:	learn: 18.3463356	total: 202ms	remaining: 303ms
40:	learn: 18.2008059	total: 207ms	remaining: 298ms
41:	learn: 18.0582079	total: 215ms	remaining: 297ms
42:	learn: 17.8891982	total: 223ms	remaining: 295ms
43:	learn: 17.7332246	total: 231ms	remaining: 294ms
44:	learn: 17.6206421	total: 240ms	remaining: 293ms
45:	learn: 17.4982800	total: 245ms	remaining: 288ms
46:	learn: 17.3970150	total: 251ms	remaining: 283ms
47:	learn: 17.3058203	total: 256ms	remaining: 277ms
48:	learn: 17.1789256	total: 261ms	remaining: 272ms
49:	learn: 17.0916229	total: 266ms	remaining: 266ms
50:	learn: 16.9859820	total: 271ms	remaining: 261ms
51:	learn: 16.8995582	total: 277ms	remaining: 255ms
52:	learn: 16.8137014	total: 282ms	remaining: 250ms
53:	learn: 16.7021451	total: 287ms	remaining: 244ms
54:	learn: 16.5895582	total: 292ms	remaining: 239ms
55:	learn: 16.5015639	total: 298ms	remaining: 234ms
56:	learn: 16.4356637	total: 303ms	remaining: 229ms
57:	learn: 16.3514525	total: 309ms	remaining: 224ms
58:	learn: 16.2401369	total: 315ms	remaining: 219ms
59:	learn: 16.1293223	total: 320ms	remaining: 214ms
60:	learn: 16.0271167	total: 325ms	remaining: 208ms
61:	learn: 15.9126257	total: 329ms	remaining: 202ms
62:	learn: 15.8391096	total: 334ms	remaining: 196ms
63:	learn: 15.7441773	total: 338ms	remaining: 190ms
64:	learn: 15.6885195	total: 343ms	remaining: 184ms
65:	learn: 15.6052039	total: 347ms	remaining: 179ms
66:	learn: 15.5074202	total: 351ms	remaining: 173ms
67:	learn: 15.4054338	total: 356ms	remaining: 167ms
68:	learn: 15.2885714	total: 360ms	remaining: 162ms
69:	learn: 15.2157472	total: 364ms	remaining: 156ms
70:	learn: 15.1031554	total: 368ms	remaining: 151ms
71:	learn: 15.0237470	total: 373ms	remaining: 145ms
72:	learn: 14.9756825	total: 377ms	remaining: 140ms
73:	learn: 14.8840596	total: 382ms	remaining: 134ms
74:	learn: 14.8077061	total: 386ms	remaining: 129ms
75:	learn: 14.7444437	total: 391ms	remaining: 124ms
76:	learn: 14.6751720	total: 396ms	remaining: 118ms
77:	learn: 14.5830333	total: 400ms	remaining: 113ms
78:	learn: 14.5241206	total: 405ms	remaining: 108ms
79:	learn: 14.4892731	total: 420ms	remaining: 105ms
80:	learn: 14.4256605	total: 427ms	remaining: 100ms
81:	learn: 14.3666860	total: 435ms	remaining: 95.5ms
82:	learn: 14.2938372	total: 440ms	remaining: 90.2ms
83:	learn: 14.2161532	total: 446ms	remaining: 84.9ms
84:	learn: 14.1582910	total: 452ms	remaining: 79.7ms
85:	learn: 14.1029153	total: 457ms	remaining: 74.4ms
86:	learn: 14.0475835	total: 463ms	remaining: 69.2ms
87:	learn: 13.9892661	total: 468ms	remaining: 63.8ms
88:	learn: 13.9481628	total: 474ms	remaining: 58.6ms
89:	learn: 13.8483991	total: 479ms	remaining: 53.3ms
90:	learn: 13.7775614	total: 485ms	remaining: 47.9ms
91:	learn: 13.7304585	total: 490ms	remaining: 42.6ms
92:	learn: 13.6783381	total: 495ms	remaining: 37.3ms
93:	learn: 13.6356964	total: 501ms	remaining: 32ms
94:	learn: 13.5924371	total: 506ms	remaining: 26.6ms
95:	learn: 13.5400746	total: 512ms	remaining: 21.3ms
96:	learn: 13.4897333	total: 516ms	remaining: 16ms
97:	learn: 13.4470321	total: 520ms	remaining: 10.6ms
98:	learn: 13.3856082	total: 524ms	remaining: 5.29ms
99:	learn: 13.3082371	total: 528ms	remaining: 0us
0:	learn: 43.0395283	total: 4.98ms	remaining: 493ms
1:	learn: 42.1130223	total: 9.46ms	remaining: 463ms
2:	learn: 41.1753409	total: 14.1ms	remaining: 457ms
3:	learn: 40.3637444	total: 18.7ms	remaining: 449ms
4:	learn: 39.6508088	total: 23.1ms	remaining: 438ms
5:	learn: 38.7217934	total: 27.7ms	remaining: 434ms
6:	learn: 37.8538055	total: 32.7ms	remaining: 434ms
7:	learn: 36.9793574	total: 39.9ms	remaining: 459ms
8:	learn: 36.3076984	total: 48ms	remaining: 485ms
9:	learn: 35.6673160	total: 55.5ms	remaining: 499ms
10:	learn: 34.8889800	total: 61.4ms	remaining: 496ms
11:	learn: 34.1675517	total: 67.6ms	remaining: 496ms
12:	learn: 33.6779564	total: 72.6ms	remaining: 486ms
13:	learn: 33.0710039	total: 77.6ms	remaining: 477ms
14:	learn: 32.4966674	total: 82.4ms	remaining: 467ms
15:	learn: 31.9492856	total: 87.7ms	remaining: 460ms
16:	learn: 31.5108129	total: 108ms	remaining: 528ms
17:	learn: 30.9804023	total: 113ms	remaining: 514ms
18:	learn: 30.4169089	total: 118ms	remaining: 502ms
19:	learn: 29.8930375	total: 123ms	remaining: 493ms
20:	learn: 29.3974421	total: 129ms	remaining: 484ms
21:	learn: 28.8792307	total: 133ms	remaining: 473ms
22:	learn: 28.3894474	total: 138ms	remaining: 462ms
23:	learn: 27.9921276	total: 142ms	remaining: 450ms
24:	learn: 27.6158887	total: 146ms	remaining: 439ms
25:	learn: 27.2866950	total: 151ms	remaining: 429ms
26:	learn: 26.8770708	total: 155ms	remaining: 420ms
27:	learn: 26.6233005	total: 159ms	remaining: 410ms
28:	learn: 26.2921934	total: 164ms	remaining: 402ms
29:	learn: 25.9156920	total: 169ms	remaining: 395ms
30:	learn: 25.5311106	total: 171ms	remaining: 381ms
31:	learn: 25.2178997	total: 176ms	remaining: 374ms
32:	learn: 24.8572196	total: 181ms	remaining: 367ms
33:	learn: 24.5849710	total: 186ms	remaining: 361ms
34:	learn: 24.2209190	total: 191ms	remaining: 354ms
35:	learn: 23.8708250	total: 195ms	remaining: 348ms
36:	learn: 23.5325279	total: 214ms	remaining: 365ms
37:	learn: 23.2116148	total: 218ms	remaining: 356ms
38:	learn: 22.9696787	total: 223ms	remaining: 348ms
39:	learn: 22.7936783	total: 227ms	remaining: 340ms
40:	learn: 22.6228847	total: 231ms	remaining: 333ms
41:	learn: 22.3691527	total: 236ms	remaining: 325ms
42:	learn: 22.1002173	total: 240ms	remaining: 319ms
43:	learn: 21.9157268	total: 245ms	remaining: 312ms
44:	learn: 21.7229102	total: 250ms	remaining: 305ms
45:	learn: 21.4642005	total: 254ms	remaining: 299ms
46:	learn: 21.3029442	total: 262ms	remaining: 296ms
47:	learn: 21.1469792	total: 269ms	remaining: 292ms
48:	learn: 20.9458235	total: 277ms	remaining: 289ms
49:	learn: 20.7335242	total: 284ms	remaining: 284ms
50:	learn: 20.5440269	total: 290ms	remaining: 279ms
51:	learn: 20.3661449	total: 295ms	remaining: 273ms
52:	learn: 20.2158134	total: 301ms	remaining: 267ms
53:	learn: 19.9934873	total: 306ms	remaining: 260ms
54:	learn: 19.7879739	total: 311ms	remaining: 254ms
55:	learn: 19.6630460	total: 316ms	remaining: 248ms
56:	learn: 19.5152729	total: 321ms	remaining: 242ms
57:	learn: 19.3581128	total: 326ms	remaining: 236ms
58:	learn: 19.2209303	total: 331ms	remaining: 230ms
59:	learn: 19.0965248	total: 336ms	remaining: 224ms
60:	learn: 19.0035954	total: 341ms	remaining: 218ms
61:	learn: 18.8554149	total: 346ms	remaining: 212ms
62:	learn: 18.7095427	total: 350ms	remaining: 206ms
63:	learn: 18.5751494	total: 356ms	remaining: 200ms
64:	learn: 18.4678251	total: 361ms	remaining: 194ms
65:	learn: 18.3500325	total: 365ms	remaining: 188ms
66:	learn: 18.2088983	total: 370ms	remaining: 182ms
67:	learn: 18.0737705	total: 374ms	remaining: 176ms
68:	learn: 17.9325058	total: 379ms	remaining: 170ms
69:	learn: 17.8003911	total: 383ms	remaining: 164ms
70:	learn: 17.7385366	total: 387ms	remaining: 158ms
71:	learn: 17.6106998	total: 391ms	remaining: 152ms
72:	learn: 17.4816270	total: 395ms	remaining: 146ms
73:	learn: 17.4025554	total: 400ms	remaining: 140ms
74:	learn: 17.2902108	total: 404ms	remaining: 135ms
75:	learn: 17.2158048	total: 408ms	remaining: 129ms
76:	learn: 17.1261053	total: 412ms	remaining: 123ms
77:	learn: 17.0308917	total: 416ms	remaining: 117ms
78:	learn: 16.9546705	total: 420ms	remaining: 112ms
79:	learn: 16.8319165	total: 425ms	remaining: 106ms
80:	learn: 16.7687017	total: 429ms	remaining: 101ms
81:	learn: 16.6972326	total: 434ms	remaining: 95.2ms
82:	learn: 16.6124580	total: 438ms	remaining: 89.7ms
83:	learn: 16.4999052	total: 443ms	remaining: 84.4ms
84:	learn: 16.4302484	total: 448ms	remaining: 79ms
85:	learn: 16.3201363	total: 452ms	remaining: 73.6ms
86:	learn: 16.2534314	total: 457ms	remaining: 68.2ms
87:	learn: 16.1720485	total: 465ms	remaining: 63.4ms
88:	learn: 16.0625751	total: 472ms	remaining: 58.4ms
89:	learn: 15.9135088	total: 481ms	remaining: 53.5ms
90:	learn: 15.8658863	total: 487ms	remaining: 48.2ms
91:	learn: 15.8066805	total: 494ms	remaining: 43ms
92:	learn: 15.7412103	total: 499ms	remaining: 37.6ms
93:	learn: 15.6542776	total: 505ms	remaining: 32.2ms
94:	learn: 15.5760334	total: 510ms	remaining: 26.9ms
95:	learn: 15.5434131	total: 516ms	remaining: 21.5ms
96:	learn: 15.4709561	total: 520ms	remaining: 16.1ms
97:	learn: 15.4449618	total: 525ms	remaining: 10.7ms
98:	learn: 15.3752761	total: 531ms	remaining: 5.36ms
99:	learn: 15.3106595	total: 536ms	remaining: 0us
0:	learn: 46.7142257	total: 4.43ms	remaining: 439ms
1:	learn: 45.7634153	total: 8.98ms	remaining: 440ms
2:	learn: 45.0054253	total: 13.3ms	remaining: 429ms
3:	learn: 44.2120432	total: 17.5ms	remaining: 420ms
4:	learn: 43.3960472	total: 21.6ms	remaining: 411ms
5:	learn: 42.8588120	total: 26.3ms	remaining: 412ms
6:	learn: 41.9533701	total: 31.2ms	remaining: 414ms
7:	learn: 41.2745030	total: 36.1ms	remaining: 416ms
8:	learn: 40.6797495	total: 40.6ms	remaining: 411ms
9:	learn: 39.9899571	total: 45.2ms	remaining: 407ms
10:	learn: 39.4682100	total: 49.5ms	remaining: 400ms
11:	learn: 39.0305595	total: 54.1ms	remaining: 397ms
12:	learn: 38.4200417	total: 58.6ms	remaining: 392ms
13:	learn: 37.8425194	total: 65.6ms	remaining: 403ms
14:	learn: 37.4203127	total: 73.2ms	remaining: 415ms
15:	learn: 36.9917688	total: 80.7ms	remaining: 424ms
16:	learn: 36.5544138	total: 87.5ms	remaining: 427ms
17:	learn: 36.0727019	total: 94.9ms	remaining: 432ms
18:	learn: 35.4835715	total: 100ms	remaining: 427ms
19:	learn: 34.9865654	total: 106ms	remaining: 425ms
20:	learn: 34.6063373	total: 112ms	remaining: 421ms
21:	learn: 34.0997289	total: 117ms	remaining: 415ms
22:	learn: 33.7313171	total: 123ms	remaining: 411ms
23:	learn: 33.3582000	total: 128ms	remaining: 406ms
24:	learn: 32.9432456	total: 133ms	remaining: 400ms
25:	learn: 32.5220888	total: 139ms	remaining: 396ms
26:	learn: 32.2172292	total: 144ms	remaining: 390ms
27:	learn: 31.8972904	total: 149ms	remaining: 384ms
28:	learn: 31.6405350	total: 154ms	remaining: 378ms
29:	learn: 31.4167702	total: 160ms	remaining: 373ms
30:	learn: 30.8541961	total: 162ms	remaining: 361ms
31:	learn: 30.5572111	total: 168ms	remaining: 356ms
32:	learn: 30.1700399	total: 172ms	remaining: 349ms
33:	learn: 29.8537271	total: 176ms	remaining: 342ms
34:	learn: 29.6192540	total: 180ms	remaining: 335ms
35:	learn: 29.3276362	total: 184ms	remaining: 327ms
36:	learn: 28.9985179	total: 188ms	remaining: 320ms
37:	learn: 28.7046880	total: 193ms	remaining: 314ms
38:	learn: 28.4412677	total: 197ms	remaining: 308ms
39:	learn: 28.1277292	total: 201ms	remaining: 301ms
40:	learn: 27.9000750	total: 205ms	remaining: 294ms
41:	learn: 27.5433162	total: 209ms	remaining: 289ms
42:	learn: 27.2493285	total: 213ms	remaining: 283ms
43:	learn: 26.9576632	total: 215ms	remaining: 273ms
44:	learn: 26.6177110	total: 219ms	remaining: 267ms
45:	learn: 26.2812456	total: 223ms	remaining: 261ms
46:	learn: 26.0803859	total: 228ms	remaining: 257ms
47:	learn: 25.9543581	total: 232ms	remaining: 251ms
48:	learn: 25.7951582	total: 236ms	remaining: 246ms
49:	learn: 25.6548184	total: 241ms	remaining: 241ms
50:	learn: 25.4010843	total: 246ms	remaining: 236ms
51:	learn: 24.9773937	total: 250ms	remaining: 231ms
52:	learn: 24.8026156	total: 255ms	remaining: 226ms
53:	learn: 24.5568053	total: 259ms	remaining: 221ms
54:	learn: 24.2281839	total: 266ms	remaining: 218ms
55:	learn: 23.9202795	total: 273ms	remaining: 215ms
56:	learn: 23.7625591	total: 282ms	remaining: 213ms
57:	learn: 23.5429721	total: 288ms	remaining: 208ms
58:	learn: 23.3175893	total: 295ms	remaining: 205ms
59:	learn: 23.2035130	total: 300ms	remaining: 200ms
60:	learn: 23.0232450	total: 306ms	remaining: 195ms
61:	learn: 22.8384958	total: 311ms	remaining: 190ms
62:	learn: 22.6499902	total: 316ms	remaining: 185ms
63:	learn: 22.4577426	total: 321ms	remaining: 180ms
64:	learn: 22.3333158	total: 326ms	remaining: 176ms
65:	learn: 22.2064131	total: 332ms	remaining: 171ms
66:	learn: 22.1434971	total: 337ms	remaining: 166ms
67:	learn: 21.9596519	total: 342ms	remaining: 161ms
68:	learn: 21.8475576	total: 347ms	remaining: 156ms
69:	learn: 21.6954745	total: 352ms	remaining: 151ms
70:	learn: 21.5635976	total: 357ms	remaining: 146ms
71:	learn: 21.4588506	total: 362ms	remaining: 141ms
72:	learn: 21.3527268	total: 367ms	remaining: 136ms
73:	learn: 21.2661288	total: 372ms	remaining: 131ms
74:	learn: 21.1817333	total: 375ms	remaining: 125ms
75:	learn: 21.0527553	total: 380ms	remaining: 120ms
76:	learn: 20.9229021	total: 384ms	remaining: 115ms
77:	learn: 20.7563946	total: 388ms	remaining: 109ms
78:	learn: 20.6569831	total: 392ms	remaining: 104ms
79:	learn: 20.4982663	total: 396ms	remaining: 98.9ms
80:	learn: 20.3185460	total: 400ms	remaining: 93.9ms
81:	learn: 20.2096241	total: 404ms	remaining: 88.8ms
82:	learn: 20.1274891	total: 408ms	remaining: 83.6ms
83:	learn: 20.0740139	total: 413ms	remaining: 78.6ms
84:	learn: 19.9630699	total: 417ms	remaining: 73.7ms
85:	learn: 19.8753899	total: 422ms	remaining: 68.7ms
86:	learn: 19.6563612	total: 427ms	remaining: 63.8ms
87:	learn: 19.4680232	total: 432ms	remaining: 58.9ms
88:	learn: 19.3503431	total: 436ms	remaining: 53.9ms
89:	learn: 19.2221379	total: 441ms	remaining: 49ms
90:	learn: 19.0732542	total: 445ms	remaining: 44ms
91:	learn: 18.9825190	total: 450ms	remaining: 39.1ms
92:	learn: 18.8839009	total: 454ms	remaining: 34.2ms
93:	learn: 18.8012219	total: 459ms	remaining: 29.3ms
94:	learn: 18.7172713	total: 467ms	remaining: 24.6ms
95:	learn: 18.6201170	total: 474ms	remaining: 19.8ms
96:	learn: 18.5318611	total: 483ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 489ms	remaining: 9.98ms
98:	learn: 18.3289700	total: 496ms	remaining: 5.01ms
99:	learn: 18.2227333	total: 501ms	remaining: 0us
0:	learn: 46.3764524	total: 5.87ms	remaining: 581ms
1:	learn: 45.5561269	total: 10.2ms	remaining: 498ms
2:	learn: 44.8811245	total: 14.4ms	remaining: 466ms
3:	learn: 44.0788617	total: 18.9ms	remaining: 453ms
4:	learn: 43.3619790	total: 23.5ms	remaining: 446ms
5:	learn: 42.6912112	total: 28.2ms	remaining: 442ms
6:	learn: 42.2292118	total: 32.4ms	remaining: 431ms
7:	learn: 41.7725191	total: 37ms	remaining: 425ms
8:	learn: 41.1676614	total: 41.3ms	remaining: 418ms
9:	learn: 40.5771076	total: 46.2ms	remaining: 416ms
10:	learn: 39.8343757	total: 50.7ms	remaining: 410ms
11:	learn: 39.3761142	total: 55.1ms	remaining: 404ms
12:	learn: 38.5254692	total: 59.8ms	remaining: 400ms
13:	learn: 37.9629555	total: 64ms	remaining: 393ms
14:	learn: 37.4418438	total: 67.7ms	remaining: 383ms
15:	learn: 37.0507283	total: 72ms	remaining: 378ms
16:	learn: 36.6264217	total: 76.3ms	remaining: 373ms
17:	learn: 36.1114940	total: 81.2ms	remaining: 370ms
18:	learn: 35.7193862	total: 85.8ms	remaining: 366ms
19:	learn: 35.3301177	total: 90.3ms	remaining: 361ms
20:	learn: 35.0598280	total: 94.6ms	remaining: 356ms
21:	learn: 34.5469736	total: 99ms	remaining: 351ms
22:	learn: 34.2064215	total: 103ms	remaining: 346ms
23:	learn: 33.7280710	total: 108ms	remaining: 341ms
24:	learn: 33.3282940	total: 115ms	remaining: 346ms
25:	learn: 32.8478961	total: 124ms	remaining: 352ms
26:	learn: 32.5722164	total: 133ms	remaining: 360ms
27:	learn: 32.2457019	total: 139ms	remaining: 357ms
28:	learn: 31.9230495	total: 145ms	remaining: 355ms
29:	learn: 31.4311611	total: 150ms	remaining: 351ms
30:	learn: 30.9179052	total: 155ms	remaining: 346ms
31:	learn: 30.6201141	total: 160ms	remaining: 341ms
32:	learn: 30.3421106	total: 166ms	remaining: 337ms
33:	learn: 29.9885373	total: 171ms	remaining: 332ms
34:	learn: 29.7462780	total: 176ms	remaining: 327ms
35:	learn: 29.3607153	total: 181ms	remaining: 322ms
36:	learn: 29.1793078	total: 187ms	remaining: 318ms
37:	learn: 28.9276538	total: 192ms	remaining: 313ms
38:	learn: 28.6903934	total: 196ms	remaining: 307ms
39:	learn: 28.2095033	total: 202ms	remaining: 302ms
40:	learn: 27.7990608	total: 207ms	remaining: 298ms
41:	learn: 27.5406632	total: 212ms	remaining: 292ms
42:	learn: 27.2575376	total: 216ms	remaining: 286ms
43:	learn: 26.9741707	total: 220ms	remaining: 280ms
44:	learn: 26.6606899	total: 224ms	remaining: 274ms
45:	learn: 26.4015833	total: 228ms	remaining: 268ms
46:	learn: 26.1828993	total: 232ms	remaining: 262ms
47:	learn: 26.0233709	total: 235ms	remaining: 254ms
48:	learn: 25.9300399	total: 239ms	remaining: 249ms
49:	learn: 25.5861489	total: 243ms	remaining: 243ms
50:	learn: 25.4322012	total: 248ms	remaining: 238ms
51:	learn: 25.1595644	total: 252ms	remaining: 232ms
52:	learn: 24.9955303	total: 256ms	remaining: 227ms
53:	learn: 24.7273966	total: 259ms	remaining: 221ms
54:	learn: 24.5747978	total: 263ms	remaining: 215ms
55:	learn: 24.3807977	total: 267ms	remaining: 210ms
56:	learn: 24.1689569	total: 272ms	remaining: 205ms
57:	learn: 23.9898221	total: 276ms	remaining: 200ms
58:	learn: 23.7566414	total: 280ms	remaining: 195ms
59:	learn: 23.6641165	total: 284ms	remaining: 189ms
60:	learn: 23.5658066	total: 289ms	remaining: 185ms
61:	learn: 23.4338851	total: 293ms	remaining: 180ms
62:	learn: 23.2408837	total: 298ms	remaining: 175ms
63:	learn: 23.0642038	total: 302ms	remaining: 170ms
64:	learn: 22.9032045	total: 307ms	remaining: 165ms
65:	learn: 22.7736138	total: 311ms	remaining: 160ms
66:	learn: 22.6836443	total: 315ms	remaining: 155ms
67:	learn: 22.5983654	total: 320ms	remaining: 150ms
68:	learn: 22.4419813	total: 327ms	remaining: 147ms
69:	learn: 22.2863339	total: 335ms	remaining: 144ms
70:	learn: 22.1792943	total: 345ms	remaining: 141ms
71:	learn: 22.1130574	total: 351ms	remaining: 136ms
72:	learn: 21.9858161	total: 357ms	remaining: 132ms
73:	learn: 21.8577784	total: 363ms	remaining: 127ms
74:	learn: 21.7845222	total: 368ms	remaining: 123ms
75:	learn: 21.6831390	total: 373ms	remaining: 118ms
76:	learn: 21.6292521	total: 379ms	remaining: 113ms
77:	learn: 21.5789330	total: 384ms	remaining: 108ms
78:	learn: 21.5420942	total: 389ms	remaining: 103ms
79:	learn: 21.4280939	total: 394ms	remaining: 98.5ms
80:	learn: 21.3641165	total: 399ms	remaining: 93.6ms
81:	learn: 21.2734814	total: 404ms	remaining: 88.7ms
82:	learn: 21.2220323	total: 409ms	remaining: 83.8ms
83:	learn: 21.0625792	total: 414ms	remaining: 78.9ms
84:	learn: 20.9488320	total: 419ms	remaining: 74ms
85:	learn: 20.8504255	total: 425ms	remaining: 69.2ms
86:	learn: 20.7848510	total: 429ms	remaining: 64.1ms
87:	learn: 20.7247442	total: 433ms	remaining: 59ms
88:	learn: 20.5698590	total: 437ms	remaining: 54ms
89:	learn: 20.4067620	total: 442ms	remaining: 49.1ms
90:	learn: 20.3062482	total: 446ms	remaining: 44.1ms
91:	learn: 20.2029696	total: 450ms	remaining: 39.1ms
92:	learn: 20.1384849	total: 455ms	remaining: 34.2ms
93:	learn: 20.0260709	total: 459ms	remaining: 29.3ms
94:	learn: 19.9122100	total: 463ms	remaining: 24.4ms
95:	learn: 19.8648487	total: 467ms	remaining: 19.5ms
96:	learn: 19.8207072	total: 472ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 476ms	remaining: 9.72ms
98:	learn: 19.7042438	total: 481ms	remaining: 4.86ms
99:	learn: 19.6546645	total: 485ms	remaining: 0us
0:	learn: 47.0239288	total: 7.06ms	remaining: 699ms
1:	learn: 46.2253829	total: 15.2ms	remaining: 743ms
2:	learn: 45.5580301	total: 26.9ms	remaining: 871ms
3:	learn: 44.7273237	total: 33ms	remaining: 791ms
4:	learn: 43.8867421	total: 40.8ms	remaining: 775ms
5:	learn: 43.3615911	total: 45.9ms	remaining: 719ms
6:	learn: 42.8548390	total: 51.1ms	remaining: 679ms
7:	learn: 42.1606758	total: 56.3ms	remaining: 647ms
8:	learn: 41.6625870	total: 61.6ms	remaining: 623ms
9:	learn: 40.9497092	total: 66.4ms	remaining: 597ms
10:	learn: 40.1886318	total: 71.4ms	remaining: 578ms
11:	learn: 39.7456423	total: 76.5ms	remaining: 561ms
12:	learn: 39.1171373	total: 81.5ms	remaining: 546ms
13:	learn: 38.5451069	total: 86.7ms	remaining: 532ms
14:	learn: 38.0155834	total: 92.1ms	remaining: 522ms
15:	learn: 37.5631354	total: 97ms	remaining: 509ms
16:	learn: 37.1030023	total: 102ms	remaining: 498ms
17:	learn: 36.4563029	total: 107ms	remaining: 489ms
18:	learn: 36.0160976	total: 112ms	remaining: 478ms
19:	learn: 35.5079827	total: 116ms	remaining: 463ms
20:	learn: 35.2111885	total: 120ms	remaining: 450ms
21:	learn: 34.9397465	total: 124ms	remaining: 438ms
22:	learn: 34.5270048	total: 128ms	remaining: 429ms
23:	learn: 34.0169260	total: 132ms	remaining: 418ms
24:	learn: 33.7454892	total: 136ms	remaining: 408ms
25:	learn: 33.2648157	total: 140ms	remaining: 398ms
26:	learn: 32.8899427	total: 144ms	remaining: 390ms
27:	learn: 32.6185050	total: 148ms	remaining: 380ms
28:	learn: 32.3528531	total: 152ms	remaining: 371ms
29:	learn: 32.0859923	total: 156ms	remaining: 363ms
30:	learn: 31.6511144	total: 160ms	remaining: 357ms
31:	learn: 31.2571765	total: 164ms	remaining: 349ms
32:	learn: 30.9770049	total: 168ms	remaining: 342ms
33:	learn: 30.6084872	total: 172ms	remaining: 334ms
34:	learn: 30.3448632	total: 177ms	remaining: 328ms
35:	learn: 30.0360942	total: 181ms	remaining: 323ms
36:	learn: 29.6648968	total: 186ms	remaining: 316ms
37:	learn: 29.3165114	total: 190ms	remaining: 310ms
38:	learn: 29.0829198	total: 195ms	remaining: 305ms
39:	learn: 28.7752064	total: 199ms	remaining: 299ms
40:	learn: 28.3622191	total: 204ms	remaining: 293ms
41:	learn: 28.1346631	total: 208ms	remaining: 287ms
42:	learn: 27.9585719	total: 215ms	remaining: 285ms
43:	learn: 27.6565566	total: 222ms	remaining: 282ms
44:	learn: 27.3616172	total: 231ms	remaining: 282ms
45:	learn: 27.0658637	total: 237ms	remaining: 278ms
46:	learn: 26.8660382	total: 244ms	remaining: 276ms
47:	learn: 26.6536078	total: 250ms	remaining: 270ms
48:	learn: 26.3524440	total: 255ms	remaining: 266ms
49:	learn: 26.1595277	total: 261ms	remaining: 261ms
50:	learn: 25.9273523	total: 266ms	remaining: 255ms
51:	learn: 25.7195580	total: 271ms	remaining: 250ms
52:	learn: 25.5730225	total: 276ms	remaining: 245ms
53:	learn: 25.3455276	total: 281ms	remaining: 240ms
54:	learn: 25.2289675	total: 286ms	remaining: 234ms
55:	learn: 25.0133024	total: 291ms	remaining: 229ms
56:	learn: 24.8406714	total: 296ms	remaining: 224ms
57:	learn: 24.6367857	total: 301ms	remaining: 218ms
58:	learn: 24.5338177	total: 306ms	remaining: 213ms
59:	learn: 24.3799964	total: 312ms	remaining: 208ms
60:	learn: 24.1447492	total: 316ms	remaining: 202ms
61:	learn: 23.9880495	total: 320ms	remaining: 196ms
62:	learn: 23.7140630	total: 324ms	remaining: 190ms
63:	learn: 23.5003791	total: 328ms	remaining: 185ms
64:	learn: 23.3207645	total: 332ms	remaining: 179ms
65:	learn: 23.1958356	total: 337ms	remaining: 173ms
66:	learn: 23.0471302	total: 341ms	remaining: 168ms
67:	learn: 22.8977183	total: 345ms	remaining: 162ms
68:	learn: 22.7187400	total: 349ms	remaining: 157ms
69:	learn: 22.6523405	total: 353ms	remaining: 151ms
70:	learn: 22.4767453	total: 356ms	remaining: 146ms
71:	learn: 22.3243677	total: 360ms	remaining: 140ms
72:	learn: 22.2133096	total: 364ms	remaining: 135ms
73:	learn: 22.1151713	total: 368ms	remaining: 129ms
74:	learn: 22.0296666	total: 372ms	remaining: 124ms
75:	learn: 21.9195980	total: 377ms	remaining: 119ms
76:	learn: 21.8401730	total: 381ms	remaining: 114ms
77:	learn: 21.8079797	total: 386ms	remaining: 109ms
78:	learn: 21.7274109	total: 390ms	remaining: 104ms
79:	learn: 21.6663032	total: 394ms	remaining: 98.6ms
80:	learn: 21.5633117	total: 399ms	remaining: 93.5ms
81:	learn: 21.4542467	total: 403ms	remaining: 88.5ms
82:	learn: 21.3177957	total: 408ms	remaining: 83.5ms
83:	learn: 21.1289167	total: 415ms	remaining: 79ms
84:	learn: 21.0297368	total: 423ms	remaining: 74.6ms
85:	learn: 20.9089564	total: 432ms	remaining: 70.4ms
86:	learn: 20.7653988	total: 439ms	remaining: 65.6ms
87:	learn: 20.6521894	total: 447ms	remaining: 60.9ms
88:	learn: 20.5193021	total: 452ms	remaining: 55.8ms
89:	learn: 20.4361620	total: 457ms	remaining: 50.8ms
90:	learn: 20.3546710	total: 462ms	remaining: 45.7ms
91:	learn: 20.2513296	total: 467ms	remaining: 40.6ms
92:	learn: 20.1605550	total: 472ms	remaining: 35.5ms
93:	learn: 20.0515942	total: 477ms	remaining: 30.4ms
94:	learn: 19.9800764	total: 482ms	remaining: 25.4ms
95:	learn: 19.8996532	total: 487ms	remaining: 20.3ms
96:	learn: 19.8450910	total: 492ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 514ms	remaining: 10.5ms
98:	learn: 19.7230872	total: 518ms	remaining: 5.24ms
99:	learn: 19.6328825	total: 523ms	remaining: 0us
0:	learn: 27.5585353	total: 4.43ms	remaining: 439ms
1:	learn: 27.1656995	total: 8.31ms	remaining: 407ms
2:	learn: 26.8590175	total: 12.8ms	remaining: 415ms
3:	learn: 26.5818406	total: 17.3ms	remaining: 415ms
4:	learn: 26.1148663	total: 21.7ms	remaining: 413ms
5:	learn: 25.7690484	total: 26.2ms	remaining: 410ms
6:	learn: 25.3489206	total: 30.9ms	remaining: 410ms
7:	learn: 24.9542406	total: 35.3ms	remaining: 405ms
8:	learn: 24.6777517	total: 40.1ms	remaining: 405ms
9:	learn: 24.3242344	total: 44.5ms	remaining: 401ms
10:	learn: 24.0383073	total: 52.5ms	remaining: 425ms
11:	learn: 23.7383420	total: 59.5ms	remaining: 436ms
12:	learn: 23.3461670	total: 68.1ms	remaining: 456ms
13:	learn: 23.0928636	total: 73.5ms	remaining: 452ms
14:	learn: 22.8770414	total: 80.5ms	remaining: 456ms
15:	learn: 22.6323214	total: 85.6ms	remaining: 450ms
16:	learn: 22.3597072	total: 90.8ms	remaining: 443ms
17:	learn: 22.1079813	total: 96.1ms	remaining: 438ms
18:	learn: 21.8421199	total: 102ms	remaining: 433ms
19:	learn: 21.6576508	total: 107ms	remaining: 428ms
20:	learn: 21.4301268	total: 112ms	remaining: 421ms
21:	learn: 21.2287388	total: 117ms	remaining: 415ms
22:	learn: 21.0553872	total: 122ms	remaining: 409ms
23:	learn: 20.8977091	total: 127ms	remaining: 402ms
24:	learn: 20.6619051	total: 132ms	remaining: 395ms
25:	learn: 20.5040955	total: 137ms	remaining: 389ms
26:	learn: 20.3181195	total: 141ms	remaining: 382ms
27:	learn: 20.0869436	total: 147ms	remaining: 377ms
28:	learn: 19.9375985	total: 152ms	remaining: 372ms
29:	learn: 19.8247516	total: 156ms	remaining: 364ms
30:	learn: 19.6261697	total: 160ms	remaining: 356ms
31:	learn: 19.4547236	total: 164ms	remaining: 349ms
32:	learn: 19.3157092	total: 168ms	remaining: 342ms
33:	learn: 19.1561419	total: 173ms	remaining: 335ms
34:	learn: 19.0453620	total: 176ms	remaining: 328ms
35:	learn: 18.8738574	total: 180ms	remaining: 321ms
36:	learn: 18.7072907	total: 184ms	remaining: 314ms
37:	learn: 18.5877943	total: 189ms	remaining: 308ms
38:	learn: 18.4436380	total: 193ms	remaining: 302ms
39:	learn: 18.3463356	total: 197ms	remaining: 296ms
40:	learn: 18.2008059	total: 202ms	remaining: 290ms
41:	learn: 18.0582079	total: 206ms	remaining: 285ms
42:	learn: 17.8891982	total: 211ms	remaining: 279ms
43:	learn: 17.7332246	total: 215ms	remaining: 274ms
44:	learn: 17.6206421	total: 219ms	remaining: 268ms
45:	learn: 17.4982800	total: 224ms	remaining: 263ms
46:	learn: 17.3970150	total: 228ms	remaining: 258ms
47:	learn: 17.3058203	total: 233ms	remaining: 253ms
48:	learn: 17.1789256	total: 238ms	remaining: 248ms
49:	learn: 17.0916229	total: 243ms	remaining: 243ms
50:	learn: 16.9859820	total: 248ms	remaining: 238ms
51:	learn: 16.8995582	total: 252ms	remaining: 232ms
52:	learn: 16.8137014	total: 256ms	remaining: 227ms
53:	learn: 16.7021451	total: 261ms	remaining: 223ms
54:	learn: 16.5895582	total: 269ms	remaining: 220ms
55:	learn: 16.5015639	total: 277ms	remaining: 217ms
56:	learn: 16.4356637	total: 288ms	remaining: 217ms
57:	learn: 16.3514525	total: 295ms	remaining: 214ms
58:	learn: 16.2401369	total: 301ms	remaining: 209ms
59:	learn: 16.1293223	total: 306ms	remaining: 204ms
60:	learn: 16.0271167	total: 311ms	remaining: 199ms
61:	learn: 15.9126257	total: 316ms	remaining: 194ms
62:	learn: 15.8391096	total: 321ms	remaining: 188ms
63:	learn: 15.7441773	total: 326ms	remaining: 184ms
64:	learn: 15.6885195	total: 332ms	remaining: 179ms
65:	learn: 15.6052039	total: 337ms	remaining: 174ms
66:	learn: 15.5074202	total: 342ms	remaining: 168ms
67:	learn: 15.4054338	total: 347ms	remaining: 163ms
68:	learn: 15.2885714	total: 352ms	remaining: 158ms
69:	learn: 15.2157472	total: 357ms	remaining: 153ms
70:	learn: 15.1031554	total: 363ms	remaining: 148ms
71:	learn: 15.0237470	total: 367ms	remaining: 143ms
72:	learn: 14.9756825	total: 371ms	remaining: 137ms
73:	learn: 14.8840596	total: 376ms	remaining: 132ms
74:	learn: 14.8077061	total: 380ms	remaining: 127ms
75:	learn: 14.7444437	total: 384ms	remaining: 121ms
76:	learn: 14.6751720	total: 388ms	remaining: 116ms
77:	learn: 14.5830333	total: 392ms	remaining: 111ms
78:	learn: 14.5241206	total: 397ms	remaining: 105ms
79:	learn: 14.4892731	total: 401ms	remaining: 100ms
80:	learn: 14.4256605	total: 405ms	remaining: 95ms
81:	learn: 14.3666860	total: 411ms	remaining: 90.2ms
82:	learn: 14.2938372	total: 415ms	remaining: 85.1ms
83:	learn: 14.2161532	total: 420ms	remaining: 80ms
84:	learn: 14.1582910	total: 425ms	remaining: 75ms
85:	learn: 14.1029153	total: 430ms	remaining: 70ms
86:	learn: 14.0475835	total: 435ms	remaining: 65ms
87:	learn: 13.9892661	total: 440ms	remaining: 60ms
88:	learn: 13.9481628	total: 444ms	remaining: 54.9ms
89:	learn: 13.8483991	total: 449ms	remaining: 49.9ms
90:	learn: 13.7775614	total: 454ms	remaining: 44.9ms
91:	learn: 13.7304585	total: 458ms	remaining: 39.8ms
92:	learn: 13.6783381	total: 466ms	remaining: 35.1ms
93:	learn: 13.6356964	total: 476ms	remaining: 30.4ms
94:	learn: 13.5924371	total: 484ms	remaining: 25.5ms
95:	learn: 13.5400746	total: 492ms	remaining: 20.5ms
96:	learn: 13.4897333	total: 496ms	remaining: 15.3ms
97:	learn: 13.4470321	total: 501ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 506ms	remaining: 5.12ms
99:	learn: 13.3082371	total: 511ms	remaining: 0us
0:	learn: 43.0395283	total: 4.43ms	remaining: 439ms
1:	learn: 42.1130223	total: 8.22ms	remaining: 403ms
2:	learn: 41.1753409	total: 12.4ms	remaining: 400ms
3:	learn: 40.3637444	total: 16.3ms	remaining: 391ms
4:	learn: 39.6508088	total: 20.4ms	remaining: 387ms
5:	learn: 38.7217934	total: 24.5ms	remaining: 384ms
6:	learn: 37.8538055	total: 28.4ms	remaining: 377ms
7:	learn: 36.9793574	total: 32.6ms	remaining: 375ms
8:	learn: 36.3076984	total: 36.9ms	remaining: 374ms
9:	learn: 35.6673160	total: 40.7ms	remaining: 367ms
10:	learn: 34.8889800	total: 44.7ms	remaining: 362ms
11:	learn: 34.1675517	total: 49ms	remaining: 359ms
12:	learn: 33.6779564	total: 53.3ms	remaining: 356ms
13:	learn: 33.0710039	total: 57.1ms	remaining: 351ms
14:	learn: 32.4966674	total: 61ms	remaining: 345ms
15:	learn: 31.9492856	total: 65.2ms	remaining: 342ms
16:	learn: 31.5108129	total: 69.9ms	remaining: 341ms
17:	learn: 30.9804023	total: 74.7ms	remaining: 340ms
18:	learn: 30.4169089	total: 79.1ms	remaining: 337ms
19:	learn: 29.8930375	total: 83.9ms	remaining: 335ms
20:	learn: 29.3974421	total: 88.4ms	remaining: 333ms
21:	learn: 28.8792307	total: 92.8ms	remaining: 329ms
22:	learn: 28.3894474	total: 97.4ms	remaining: 326ms
23:	learn: 27.9921276	total: 102ms	remaining: 323ms
24:	learn: 27.6158887	total: 110ms	remaining: 329ms
25:	learn: 27.2866950	total: 118ms	remaining: 336ms
26:	learn: 26.8770708	total: 127ms	remaining: 342ms
27:	learn: 26.6233005	total: 132ms	remaining: 339ms
28:	learn: 26.2921934	total: 139ms	remaining: 340ms
29:	learn: 25.9156920	total: 144ms	remaining: 336ms
30:	learn: 25.5311106	total: 146ms	remaining: 325ms
31:	learn: 25.2178997	total: 151ms	remaining: 321ms
32:	learn: 24.8572196	total: 156ms	remaining: 317ms
33:	learn: 24.5849710	total: 161ms	remaining: 313ms
34:	learn: 24.2209190	total: 166ms	remaining: 308ms
35:	learn: 23.8708250	total: 172ms	remaining: 305ms
36:	learn: 23.5325279	total: 177ms	remaining: 301ms
37:	learn: 23.2116148	total: 182ms	remaining: 297ms
38:	learn: 22.9696787	total: 187ms	remaining: 293ms
39:	learn: 22.7936783	total: 192ms	remaining: 288ms
40:	learn: 22.6228847	total: 197ms	remaining: 283ms
41:	learn: 22.3691527	total: 202ms	remaining: 279ms
42:	learn: 22.1002173	total: 208ms	remaining: 276ms
43:	learn: 21.9157268	total: 212ms	remaining: 269ms
44:	learn: 21.7229102	total: 216ms	remaining: 264ms
45:	learn: 21.4642005	total: 220ms	remaining: 258ms
46:	learn: 21.3029442	total: 224ms	remaining: 253ms
47:	learn: 21.1469792	total: 228ms	remaining: 247ms
48:	learn: 20.9458235	total: 232ms	remaining: 242ms
49:	learn: 20.7335242	total: 236ms	remaining: 236ms
50:	learn: 20.5440269	total: 241ms	remaining: 231ms
51:	learn: 20.3661449	total: 245ms	remaining: 226ms
52:	learn: 20.2158134	total: 249ms	remaining: 221ms
53:	learn: 19.9934873	total: 253ms	remaining: 216ms
54:	learn: 19.7879739	total: 258ms	remaining: 211ms
55:	learn: 19.6630460	total: 261ms	remaining: 205ms
56:	learn: 19.5152729	total: 265ms	remaining: 200ms
57:	learn: 19.3581128	total: 270ms	remaining: 195ms
58:	learn: 19.2209303	total: 274ms	remaining: 191ms
59:	learn: 19.0965248	total: 279ms	remaining: 186ms
60:	learn: 19.0035954	total: 284ms	remaining: 182ms
61:	learn: 18.8554149	total: 288ms	remaining: 177ms
62:	learn: 18.7095427	total: 293ms	remaining: 172ms
63:	learn: 18.5751494	total: 298ms	remaining: 167ms
64:	learn: 18.4678251	total: 302ms	remaining: 163ms
65:	learn: 18.3500325	total: 310ms	remaining: 160ms
66:	learn: 18.2088983	total: 317ms	remaining: 156ms
67:	learn: 18.0737705	total: 326ms	remaining: 153ms
68:	learn: 17.9325058	total: 332ms	remaining: 149ms
69:	learn: 17.8003911	total: 339ms	remaining: 145ms
70:	learn: 17.7385366	total: 345ms	remaining: 141ms
71:	learn: 17.6106998	total: 350ms	remaining: 136ms
72:	learn: 17.4816270	total: 355ms	remaining: 131ms
73:	learn: 17.4025554	total: 361ms	remaining: 127ms
74:	learn: 17.2902108	total: 366ms	remaining: 122ms
75:	learn: 17.2158048	total: 371ms	remaining: 117ms
76:	learn: 17.1261053	total: 376ms	remaining: 112ms
77:	learn: 17.0308917	total: 382ms	remaining: 108ms
78:	learn: 16.9546705	total: 388ms	remaining: 103ms
79:	learn: 16.8319165	total: 393ms	remaining: 98.2ms
80:	learn: 16.7687017	total: 398ms	remaining: 93.3ms
81:	learn: 16.6972326	total: 404ms	remaining: 88.6ms
82:	learn: 16.6124580	total: 409ms	remaining: 83.8ms
83:	learn: 16.4999052	total: 414ms	remaining: 78.9ms
84:	learn: 16.4302484	total: 418ms	remaining: 73.8ms
85:	learn: 16.3201363	total: 422ms	remaining: 68.8ms
86:	learn: 16.2534314	total: 426ms	remaining: 63.7ms
87:	learn: 16.1720485	total: 430ms	remaining: 58.7ms
88:	learn: 16.0625751	total: 435ms	remaining: 53.7ms
89:	learn: 15.9135088	total: 439ms	remaining: 48.7ms
90:	learn: 15.8658863	total: 442ms	remaining: 43.8ms
91:	learn: 15.8066805	total: 447ms	remaining: 38.8ms
92:	learn: 15.7412103	total: 451ms	remaining: 33.9ms
93:	learn: 15.6542776	total: 455ms	remaining: 29ms
94:	learn: 15.5760334	total: 459ms	remaining: 24.2ms
95:	learn: 15.5434131	total: 463ms	remaining: 19.3ms
96:	learn: 15.4709561	total: 468ms	remaining: 14.5ms
97:	learn: 15.4449618	total: 472ms	remaining: 9.63ms
98:	learn: 15.3752761	total: 476ms	remaining: 4.81ms
99:	learn: 15.3106595	total: 480ms	remaining: 0us
0:	learn: 46.7142257	total: 8.92ms	remaining: 883ms
1:	learn: 45.7634153	total: 14.3ms	remaining: 699ms
2:	learn: 45.0054253	total: 19.4ms	remaining: 627ms
3:	learn: 44.2120432	total: 24.7ms	remaining: 592ms
4:	learn: 43.3960472	total: 29.6ms	remaining: 562ms
5:	learn: 42.8588120	total: 34.6ms	remaining: 543ms
6:	learn: 41.9533701	total: 40.1ms	remaining: 533ms
7:	learn: 41.2745030	total: 45.4ms	remaining: 522ms
8:	learn: 40.6797495	total: 50.5ms	remaining: 511ms
9:	learn: 39.9899571	total: 55.8ms	remaining: 502ms
10:	learn: 39.4682100	total: 60.8ms	remaining: 492ms
11:	learn: 39.0305595	total: 65.9ms	remaining: 483ms
12:	learn: 38.4200417	total: 71.2ms	remaining: 476ms
13:	learn: 37.8425194	total: 76.9ms	remaining: 473ms
14:	learn: 37.4203127	total: 81.8ms	remaining: 464ms
15:	learn: 36.9917688	total: 86ms	remaining: 452ms
16:	learn: 36.5544138	total: 90.4ms	remaining: 442ms
17:	learn: 36.0727019	total: 94.6ms	remaining: 431ms
18:	learn: 35.4835715	total: 98.9ms	remaining: 422ms
19:	learn: 34.9865654	total: 103ms	remaining: 413ms
20:	learn: 34.6063373	total: 107ms	remaining: 404ms
21:	learn: 34.0997289	total: 112ms	remaining: 396ms
22:	learn: 33.7313171	total: 116ms	remaining: 389ms
23:	learn: 33.3582000	total: 120ms	remaining: 381ms
24:	learn: 32.9432456	total: 125ms	remaining: 374ms
25:	learn: 32.5220888	total: 129ms	remaining: 367ms
26:	learn: 32.2172292	total: 134ms	remaining: 361ms
27:	learn: 31.8972904	total: 138ms	remaining: 355ms
28:	learn: 31.6405350	total: 142ms	remaining: 348ms
29:	learn: 31.4167702	total: 147ms	remaining: 343ms
30:	learn: 30.8541961	total: 149ms	remaining: 331ms
31:	learn: 30.5572111	total: 153ms	remaining: 326ms
32:	learn: 30.1700399	total: 158ms	remaining: 321ms
33:	learn: 29.8537271	total: 163ms	remaining: 316ms
34:	learn: 29.6192540	total: 168ms	remaining: 311ms
35:	learn: 29.3276362	total: 172ms	remaining: 306ms
36:	learn: 28.9985179	total: 177ms	remaining: 302ms
37:	learn: 28.7046880	total: 182ms	remaining: 297ms
38:	learn: 28.4412677	total: 190ms	remaining: 297ms
39:	learn: 28.1277292	total: 198ms	remaining: 297ms
40:	learn: 27.9000750	total: 207ms	remaining: 298ms
41:	learn: 27.5433162	total: 214ms	remaining: 296ms
42:	learn: 27.2493285	total: 220ms	remaining: 291ms
43:	learn: 26.9576632	total: 222ms	remaining: 282ms
44:	learn: 26.6177110	total: 227ms	remaining: 277ms
45:	learn: 26.2812456	total: 239ms	remaining: 280ms
46:	learn: 26.0803859	total: 244ms	remaining: 275ms
47:	learn: 25.9543581	total: 249ms	remaining: 270ms
48:	learn: 25.7951582	total: 254ms	remaining: 264ms
49:	learn: 25.6548184	total: 259ms	remaining: 259ms
50:	learn: 25.4010843	total: 264ms	remaining: 254ms
51:	learn: 24.9773937	total: 269ms	remaining: 248ms
52:	learn: 24.8026156	total: 274ms	remaining: 243ms
53:	learn: 24.5568053	total: 280ms	remaining: 238ms
54:	learn: 24.2281839	total: 285ms	remaining: 234ms
55:	learn: 23.9202795	total: 290ms	remaining: 228ms
56:	learn: 23.7625591	total: 295ms	remaining: 222ms
57:	learn: 23.5429721	total: 300ms	remaining: 217ms
58:	learn: 23.3175893	total: 304ms	remaining: 211ms
59:	learn: 23.2035130	total: 309ms	remaining: 206ms
60:	learn: 23.0232450	total: 314ms	remaining: 201ms
61:	learn: 22.8384958	total: 318ms	remaining: 195ms
62:	learn: 22.6499902	total: 323ms	remaining: 190ms
63:	learn: 22.4577426	total: 327ms	remaining: 184ms
64:	learn: 22.3333158	total: 332ms	remaining: 179ms
65:	learn: 22.2064131	total: 336ms	remaining: 173ms
66:	learn: 22.1434971	total: 340ms	remaining: 167ms
67:	learn: 21.9596519	total: 344ms	remaining: 162ms
68:	learn: 21.8475576	total: 349ms	remaining: 157ms
69:	learn: 21.6954745	total: 354ms	remaining: 152ms
70:	learn: 21.5635976	total: 358ms	remaining: 146ms
71:	learn: 21.4588506	total: 363ms	remaining: 141ms
72:	learn: 21.3527268	total: 367ms	remaining: 136ms
73:	learn: 21.2661288	total: 372ms	remaining: 131ms
74:	learn: 21.1817333	total: 377ms	remaining: 126ms
75:	learn: 21.0527553	total: 381ms	remaining: 120ms
76:	learn: 20.9229021	total: 390ms	remaining: 117ms
77:	learn: 20.7563946	total: 397ms	remaining: 112ms
78:	learn: 20.6569831	total: 406ms	remaining: 108ms
79:	learn: 20.4982663	total: 411ms	remaining: 103ms
80:	learn: 20.3185460	total: 418ms	remaining: 98.1ms
81:	learn: 20.2096241	total: 424ms	remaining: 93ms
82:	learn: 20.1274891	total: 428ms	remaining: 87.7ms
83:	learn: 20.0740139	total: 434ms	remaining: 82.6ms
84:	learn: 19.9630699	total: 439ms	remaining: 77.4ms
85:	learn: 19.8753899	total: 444ms	remaining: 72.3ms
86:	learn: 19.6563612	total: 449ms	remaining: 67.1ms
87:	learn: 19.4680232	total: 454ms	remaining: 62ms
88:	learn: 19.3503431	total: 460ms	remaining: 56.8ms
89:	learn: 19.2221379	total: 465ms	remaining: 51.6ms
90:	learn: 19.0732542	total: 469ms	remaining: 46.4ms
91:	learn: 18.9825190	total: 474ms	remaining: 41.2ms
92:	learn: 18.8839009	total: 480ms	remaining: 36.1ms
93:	learn: 18.8012219	total: 485ms	remaining: 31ms
94:	learn: 18.7172713	total: 490ms	remaining: 25.8ms
95:	learn: 18.6201170	total: 494ms	remaining: 20.6ms
96:	learn: 18.5318611	total: 499ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 503ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 507ms	remaining: 5.12ms
99:	learn: 18.2227333	total: 511ms	remaining: 0us
0:	learn: 46.3764524	total: 4.63ms	remaining: 458ms
1:	learn: 45.5561269	total: 8.94ms	remaining: 438ms
2:	learn: 44.8811245	total: 13.3ms	remaining: 431ms
3:	learn: 44.0788617	total: 17.8ms	remaining: 428ms
4:	learn: 43.3619790	total: 22.6ms	remaining: 429ms
5:	learn: 42.6912112	total: 30.7ms	remaining: 481ms
6:	learn: 42.2292118	total: 37.7ms	remaining: 500ms
7:	learn: 41.7725191	total: 47.8ms	remaining: 550ms
8:	learn: 41.1676614	total: 54.4ms	remaining: 550ms
9:	learn: 40.5771076	total: 60.2ms	remaining: 542ms
10:	learn: 39.8343757	total: 65.3ms	remaining: 528ms
11:	learn: 39.3761142	total: 70.3ms	remaining: 516ms
12:	learn: 38.5254692	total: 75.6ms	remaining: 506ms
13:	learn: 37.9629555	total: 80.5ms	remaining: 494ms
14:	learn: 37.4418438	total: 85.7ms	remaining: 486ms
15:	learn: 37.0507283	total: 97.8ms	remaining: 513ms
16:	learn: 36.6264217	total: 103ms	remaining: 501ms
17:	learn: 36.1114940	total: 107ms	remaining: 488ms
18:	learn: 35.7193862	total: 111ms	remaining: 475ms
19:	learn: 35.3301177	total: 116ms	remaining: 464ms
20:	learn: 35.0598280	total: 121ms	remaining: 453ms
21:	learn: 34.5469736	total: 126ms	remaining: 447ms
22:	learn: 34.2064215	total: 132ms	remaining: 441ms
23:	learn: 33.7280710	total: 136ms	remaining: 430ms
24:	learn: 33.3282940	total: 139ms	remaining: 418ms
25:	learn: 32.8478961	total: 143ms	remaining: 408ms
26:	learn: 32.5722164	total: 148ms	remaining: 399ms
27:	learn: 32.2457019	total: 152ms	remaining: 391ms
28:	learn: 31.9230495	total: 156ms	remaining: 381ms
29:	learn: 31.4311611	total: 160ms	remaining: 373ms
30:	learn: 30.9179052	total: 164ms	remaining: 365ms
31:	learn: 30.6201141	total: 168ms	remaining: 357ms
32:	learn: 30.3421106	total: 172ms	remaining: 349ms
33:	learn: 29.9885373	total: 176ms	remaining: 341ms
34:	learn: 29.7462780	total: 180ms	remaining: 334ms
35:	learn: 29.3607153	total: 184ms	remaining: 327ms
36:	learn: 29.1793078	total: 188ms	remaining: 319ms
37:	learn: 28.9276538	total: 191ms	remaining: 312ms
38:	learn: 28.6903934	total: 196ms	remaining: 306ms
39:	learn: 28.2095033	total: 199ms	remaining: 299ms
40:	learn: 27.7990608	total: 203ms	remaining: 293ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 211ms	remaining: 280ms
43:	learn: 26.9741707	total: 215ms	remaining: 274ms
44:	learn: 26.6606899	total: 220ms	remaining: 269ms
45:	learn: 26.4015833	total: 224ms	remaining: 263ms
46:	learn: 26.1828993	total: 229ms	remaining: 258ms
47:	learn: 26.0233709	total: 231ms	remaining: 251ms
48:	learn: 25.9300399	total: 236ms	remaining: 246ms
49:	learn: 25.5861489	total: 240ms	remaining: 240ms
50:	learn: 25.4322012	total: 245ms	remaining: 235ms
51:	learn: 25.1595644	total: 250ms	remaining: 230ms
52:	learn: 24.9955303	total: 255ms	remaining: 226ms
53:	learn: 24.7273966	total: 265ms	remaining: 225ms
54:	learn: 24.5747978	total: 273ms	remaining: 223ms
55:	learn: 24.3807977	total: 281ms	remaining: 221ms
56:	learn: 24.1689569	total: 288ms	remaining: 218ms
57:	learn: 23.9898221	total: 294ms	remaining: 213ms
58:	learn: 23.7566414	total: 300ms	remaining: 208ms
59:	learn: 23.6641165	total: 305ms	remaining: 203ms
60:	learn: 23.5658066	total: 311ms	remaining: 199ms
61:	learn: 23.4338851	total: 316ms	remaining: 194ms
62:	learn: 23.2408837	total: 322ms	remaining: 189ms
63:	learn: 23.0642038	total: 327ms	remaining: 184ms
64:	learn: 22.9032045	total: 333ms	remaining: 179ms
65:	learn: 22.7736138	total: 339ms	remaining: 175ms
66:	learn: 22.6836443	total: 344ms	remaining: 170ms
67:	learn: 22.5983654	total: 350ms	remaining: 165ms
68:	learn: 22.4419813	total: 357ms	remaining: 160ms
69:	learn: 22.2863339	total: 361ms	remaining: 155ms
70:	learn: 22.1792943	total: 366ms	remaining: 149ms
71:	learn: 22.1130574	total: 370ms	remaining: 144ms
72:	learn: 21.9858161	total: 375ms	remaining: 139ms
73:	learn: 21.8577784	total: 379ms	remaining: 133ms
74:	learn: 21.7845222	total: 383ms	remaining: 128ms
75:	learn: 21.6831390	total: 387ms	remaining: 122ms
76:	learn: 21.6292521	total: 391ms	remaining: 117ms
77:	learn: 21.5789330	total: 396ms	remaining: 112ms
78:	learn: 21.5420942	total: 400ms	remaining: 106ms
79:	learn: 21.4280939	total: 404ms	remaining: 101ms
80:	learn: 21.3641165	total: 409ms	remaining: 95.8ms
81:	learn: 21.2734814	total: 413ms	remaining: 90.7ms
82:	learn: 21.2220323	total: 418ms	remaining: 85.6ms
83:	learn: 21.0625792	total: 423ms	remaining: 80.6ms
84:	learn: 20.9488320	total: 428ms	remaining: 75.5ms
85:	learn: 20.8504255	total: 432ms	remaining: 70.4ms
86:	learn: 20.7848510	total: 437ms	remaining: 65.3ms
87:	learn: 20.7247442	total: 442ms	remaining: 60.3ms
88:	learn: 20.5698590	total: 447ms	remaining: 55.2ms
89:	learn: 20.4067620	total: 456ms	remaining: 50.6ms
90:	learn: 20.3062482	total: 465ms	remaining: 46ms
91:	learn: 20.2029696	total: 474ms	remaining: 41.2ms
92:	learn: 20.1384849	total: 482ms	remaining: 36.3ms
93:	learn: 20.0260709	total: 488ms	remaining: 31.2ms
94:	learn: 19.9122100	total: 494ms	remaining: 26ms
95:	learn: 19.8648487	total: 499ms	remaining: 20.8ms
96:	learn: 19.8207072	total: 505ms	remaining: 15.6ms
97:	learn: 19.7261189	total: 510ms	remaining: 10.4ms
98:	learn: 19.7042438	total: 515ms	remaining: 5.21ms
99:	learn: 19.6546645	total: 521ms	remaining: 0us
0:	learn: 47.0239288	total: 4.57ms	remaining: 452ms
1:	learn: 46.2253829	total: 9.08ms	remaining: 445ms
2:	learn: 45.5580301	total: 13.4ms	remaining: 435ms
3:	learn: 44.7273237	total: 17.8ms	remaining: 426ms
4:	learn: 43.8867421	total: 21.8ms	remaining: 414ms
5:	learn: 43.3615911	total: 25.7ms	remaining: 403ms
6:	learn: 42.8548390	total: 29.8ms	remaining: 395ms
7:	learn: 42.1606758	total: 34.2ms	remaining: 394ms
8:	learn: 41.6625870	total: 38.2ms	remaining: 386ms
9:	learn: 40.9497092	total: 42.2ms	remaining: 380ms
10:	learn: 40.1886318	total: 46.4ms	remaining: 375ms
11:	learn: 39.7456423	total: 51.2ms	remaining: 376ms
12:	learn: 39.1171373	total: 55.7ms	remaining: 373ms
13:	learn: 38.5451069	total: 60.5ms	remaining: 371ms
14:	learn: 38.0155834	total: 65.4ms	remaining: 371ms
15:	learn: 37.5631354	total: 70.3ms	remaining: 369ms
16:	learn: 37.1030023	total: 75ms	remaining: 366ms
17:	learn: 36.4563029	total: 79.9ms	remaining: 364ms
18:	learn: 36.0160976	total: 85.1ms	remaining: 363ms
19:	learn: 35.5079827	total: 93.5ms	remaining: 374ms
20:	learn: 35.2111885	total: 101ms	remaining: 380ms
21:	learn: 34.9397465	total: 109ms	remaining: 388ms
22:	learn: 34.5270048	total: 117ms	remaining: 393ms
23:	learn: 34.0169260	total: 123ms	remaining: 389ms
24:	learn: 33.7454892	total: 128ms	remaining: 384ms
25:	learn: 33.2648157	total: 133ms	remaining: 379ms
26:	learn: 32.8899427	total: 138ms	remaining: 374ms
27:	learn: 32.6185050	total: 144ms	remaining: 370ms
28:	learn: 32.3528531	total: 149ms	remaining: 365ms
29:	learn: 32.0859923	total: 154ms	remaining: 360ms
30:	learn: 31.6511144	total: 160ms	remaining: 355ms
31:	learn: 31.2571765	total: 166ms	remaining: 352ms
32:	learn: 30.9770049	total: 171ms	remaining: 347ms
33:	learn: 30.6084872	total: 176ms	remaining: 341ms
34:	learn: 30.3448632	total: 181ms	remaining: 337ms
35:	learn: 30.0360942	total: 187ms	remaining: 333ms
36:	learn: 29.6648968	total: 191ms	remaining: 326ms
37:	learn: 29.3165114	total: 196ms	remaining: 319ms
38:	learn: 29.0829198	total: 199ms	remaining: 312ms
39:	learn: 28.7752064	total: 203ms	remaining: 305ms
40:	learn: 28.3622191	total: 207ms	remaining: 298ms
41:	learn: 28.1346631	total: 211ms	remaining: 292ms
42:	learn: 27.9585719	total: 215ms	remaining: 285ms
43:	learn: 27.6565566	total: 219ms	remaining: 279ms
44:	learn: 27.3616172	total: 224ms	remaining: 274ms
45:	learn: 27.0658637	total: 228ms	remaining: 267ms
46:	learn: 26.8660382	total: 232ms	remaining: 261ms
47:	learn: 26.6536078	total: 236ms	remaining: 256ms
48:	learn: 26.3524440	total: 240ms	remaining: 250ms
49:	learn: 26.1595277	total: 244ms	remaining: 244ms
50:	learn: 25.9273523	total: 248ms	remaining: 239ms
51:	learn: 25.7195580	total: 253ms	remaining: 233ms
52:	learn: 25.5730225	total: 257ms	remaining: 228ms
53:	learn: 25.3455276	total: 262ms	remaining: 223ms
54:	learn: 25.2289675	total: 266ms	remaining: 218ms
55:	learn: 25.0133024	total: 270ms	remaining: 212ms
56:	learn: 24.8406714	total: 275ms	remaining: 207ms
57:	learn: 24.6367857	total: 279ms	remaining: 202ms
58:	learn: 24.5338177	total: 284ms	remaining: 197ms
59:	learn: 24.3799964	total: 291ms	remaining: 194ms
60:	learn: 24.1447492	total: 298ms	remaining: 191ms
61:	learn: 23.9880495	total: 307ms	remaining: 188ms
62:	learn: 23.7140630	total: 314ms	remaining: 185ms
63:	learn: 23.5003791	total: 320ms	remaining: 180ms
64:	learn: 23.3207645	total: 325ms	remaining: 175ms
65:	learn: 23.1958356	total: 331ms	remaining: 170ms
66:	learn: 23.0471302	total: 336ms	remaining: 165ms
67:	learn: 22.8977183	total: 341ms	remaining: 160ms
68:	learn: 22.7187400	total: 346ms	remaining: 155ms
69:	learn: 22.6523405	total: 351ms	remaining: 150ms
70:	learn: 22.4767453	total: 356ms	remaining: 145ms
71:	learn: 22.3243677	total: 361ms	remaining: 140ms
72:	learn: 22.2133096	total: 366ms	remaining: 135ms
73:	learn: 22.1151713	total: 371ms	remaining: 130ms
74:	learn: 22.0296666	total: 376ms	remaining: 125ms
75:	learn: 21.9195980	total: 381ms	remaining: 120ms
76:	learn: 21.8401730	total: 387ms	remaining: 115ms
77:	learn: 21.8079797	total: 391ms	remaining: 110ms
78:	learn: 21.7274109	total: 395ms	remaining: 105ms
79:	learn: 21.6663032	total: 399ms	remaining: 99.7ms
80:	learn: 21.5633117	total: 403ms	remaining: 94.5ms
81:	learn: 21.4542467	total: 407ms	remaining: 89.2ms
82:	learn: 21.3177957	total: 410ms	remaining: 84.1ms
83:	learn: 21.1289167	total: 415ms	remaining: 79ms
84:	learn: 21.0297368	total: 419ms	remaining: 73.9ms
85:	learn: 20.9089564	total: 423ms	remaining: 68.8ms
86:	learn: 20.7653988	total: 427ms	remaining: 63.7ms
87:	learn: 20.6521894	total: 431ms	remaining: 58.8ms
88:	learn: 20.5193021	total: 435ms	remaining: 53.8ms
89:	learn: 20.4361620	total: 439ms	remaining: 48.8ms
90:	learn: 20.3546710	total: 443ms	remaining: 43.8ms
91:	learn: 20.2513296	total: 447ms	remaining: 38.9ms
92:	learn: 20.1605550	total: 452ms	remaining: 34ms
93:	learn: 20.0515942	total: 456ms	remaining: 29.1ms
94:	learn: 19.9800764	total: 461ms	remaining: 24.2ms
95:	learn: 19.8996532	total: 465ms	remaining: 19.4ms
96:	learn: 19.8450910	total: 469ms	remaining: 14.5ms
97:	learn: 19.7887346	total: 474ms	remaining: 9.67ms
98:	learn: 19.7230872	total: 478ms	remaining: 4.83ms
99:	learn: 19.6328825	total: 483ms	remaining: 0us
0:	learn: 27.5585353	total: 5.4ms	remaining: 534ms
1:	learn: 27.1656995	total: 10.6ms	remaining: 517ms
2:	learn: 26.8590175	total: 15.3ms	remaining: 496ms
3:	learn: 26.5818406	total: 19.5ms	remaining: 467ms
4:	learn: 26.1148663	total: 24.2ms	remaining: 461ms
5:	learn: 25.7690484	total: 28.9ms	remaining: 452ms
6:	learn: 25.3489206	total: 33.1ms	remaining: 439ms
7:	learn: 24.9542406	total: 37.6ms	remaining: 433ms
8:	learn: 24.6777517	total: 42.6ms	remaining: 430ms
9:	learn: 24.3242344	total: 47.4ms	remaining: 427ms
10:	learn: 24.0383073	total: 52.4ms	remaining: 424ms
11:	learn: 23.7383420	total: 57.9ms	remaining: 425ms
12:	learn: 23.3461670	total: 62ms	remaining: 415ms
13:	learn: 23.0928636	total: 66.2ms	remaining: 407ms
14:	learn: 22.8770414	total: 70.3ms	remaining: 398ms
15:	learn: 22.6323214	total: 74.6ms	remaining: 391ms
16:	learn: 22.3597072	total: 78.5ms	remaining: 383ms
17:	learn: 22.1079813	total: 82.4ms	remaining: 375ms
18:	learn: 21.8421199	total: 86.6ms	remaining: 369ms
19:	learn: 21.6576508	total: 90.7ms	remaining: 363ms
20:	learn: 21.4301268	total: 94.4ms	remaining: 355ms
21:	learn: 21.2287388	total: 98.4ms	remaining: 349ms
22:	learn: 21.0553872	total: 102ms	remaining: 343ms
23:	learn: 20.8977091	total: 106ms	remaining: 337ms
24:	learn: 20.6619051	total: 111ms	remaining: 332ms
25:	learn: 20.5040955	total: 115ms	remaining: 328ms
26:	learn: 20.3181195	total: 120ms	remaining: 324ms
27:	learn: 20.0869436	total: 124ms	remaining: 319ms
28:	learn: 19.9375985	total: 129ms	remaining: 316ms
29:	learn: 19.8247516	total: 133ms	remaining: 311ms
30:	learn: 19.6261697	total: 138ms	remaining: 307ms
31:	learn: 19.4547236	total: 142ms	remaining: 303ms
32:	learn: 19.3157092	total: 147ms	remaining: 299ms
33:	learn: 19.1561419	total: 153ms	remaining: 296ms
34:	learn: 19.0453620	total: 161ms	remaining: 298ms
35:	learn: 18.8738574	total: 168ms	remaining: 299ms
36:	learn: 18.7072907	total: 176ms	remaining: 300ms
37:	learn: 18.5877943	total: 184ms	remaining: 301ms
38:	learn: 18.4436380	total: 189ms	remaining: 296ms
39:	learn: 18.3463356	total: 195ms	remaining: 292ms
40:	learn: 18.2008059	total: 200ms	remaining: 288ms
41:	learn: 18.0582079	total: 205ms	remaining: 283ms
42:	learn: 17.8891982	total: 211ms	remaining: 279ms
43:	learn: 17.7332246	total: 216ms	remaining: 275ms
44:	learn: 17.6206421	total: 221ms	remaining: 271ms
45:	learn: 17.4982800	total: 227ms	remaining: 266ms
46:	learn: 17.3970150	total: 232ms	remaining: 261ms
47:	learn: 17.3058203	total: 237ms	remaining: 257ms
48:	learn: 17.1789256	total: 242ms	remaining: 252ms
49:	learn: 17.0916229	total: 248ms	remaining: 248ms
50:	learn: 16.9859820	total: 253ms	remaining: 243ms
51:	learn: 16.8995582	total: 257ms	remaining: 238ms
52:	learn: 16.8137014	total: 262ms	remaining: 232ms
53:	learn: 16.7021451	total: 266ms	remaining: 227ms
54:	learn: 16.5895582	total: 270ms	remaining: 221ms
55:	learn: 16.5015639	total: 274ms	remaining: 215ms
56:	learn: 16.4356637	total: 278ms	remaining: 210ms
57:	learn: 16.3514525	total: 282ms	remaining: 205ms
58:	learn: 16.2401369	total: 286ms	remaining: 199ms
59:	learn: 16.1293223	total: 290ms	remaining: 194ms
60:	learn: 16.0271167	total: 294ms	remaining: 188ms
61:	learn: 15.9126257	total: 299ms	remaining: 183ms
62:	learn: 15.8391096	total: 303ms	remaining: 178ms
63:	learn: 15.7441773	total: 307ms	remaining: 173ms
64:	learn: 15.6885195	total: 311ms	remaining: 168ms
65:	learn: 15.6052039	total: 316ms	remaining: 163ms
66:	learn: 15.5074202	total: 320ms	remaining: 158ms
67:	learn: 15.4054338	total: 325ms	remaining: 153ms
68:	learn: 15.2885714	total: 330ms	remaining: 148ms
69:	learn: 15.2157472	total: 334ms	remaining: 143ms
70:	learn: 15.1031554	total: 339ms	remaining: 138ms
71:	learn: 15.0237470	total: 343ms	remaining: 133ms
72:	learn: 14.9756825	total: 348ms	remaining: 129ms
73:	learn: 14.8840596	total: 357ms	remaining: 125ms
74:	learn: 14.8077061	total: 365ms	remaining: 122ms
75:	learn: 14.7444437	total: 374ms	remaining: 118ms
76:	learn: 14.6751720	total: 383ms	remaining: 114ms
77:	learn: 14.5830333	total: 388ms	remaining: 109ms
78:	learn: 14.5241206	total: 393ms	remaining: 105ms
79:	learn: 14.4892731	total: 398ms	remaining: 99.6ms
80:	learn: 14.4256605	total: 403ms	remaining: 94.6ms
81:	learn: 14.3666860	total: 408ms	remaining: 89.7ms
82:	learn: 14.2938372	total: 414ms	remaining: 84.7ms
83:	learn: 14.2161532	total: 419ms	remaining: 79.8ms
84:	learn: 14.1582910	total: 424ms	remaining: 74.8ms
85:	learn: 14.1029153	total: 429ms	remaining: 69.9ms
86:	learn: 14.0475835	total: 435ms	remaining: 65ms
87:	learn: 13.9892661	total: 440ms	remaining: 59.9ms
88:	learn: 13.9481628	total: 445ms	remaining: 55ms
89:	learn: 13.8483991	total: 451ms	remaining: 50.1ms
90:	learn: 13.7775614	total: 456ms	remaining: 45.1ms
91:	learn: 13.7304585	total: 460ms	remaining: 40ms
92:	learn: 13.6783381	total: 465ms	remaining: 35ms
93:	learn: 13.6356964	total: 469ms	remaining: 29.9ms
94:	learn: 13.5924371	total: 473ms	remaining: 24.9ms
95:	learn: 13.5400746	total: 477ms	remaining: 19.9ms
96:	learn: 13.4897333	total: 482ms	remaining: 14.9ms
97:	learn: 13.4470321	total: 486ms	remaining: 9.92ms
98:	learn: 13.3856082	total: 490ms	remaining: 4.95ms
99:	learn: 13.3082371	total: 495ms	remaining: 0us
0:	learn: 43.0395283	total: 5.1ms	remaining: 505ms
1:	learn: 42.1130223	total: 9.75ms	remaining: 478ms
2:	learn: 41.1753409	total: 16.2ms	remaining: 524ms
3:	learn: 40.3637444	total: 23.4ms	remaining: 561ms
4:	learn: 39.6508088	total: 31.5ms	remaining: 599ms
5:	learn: 38.7217934	total: 39.3ms	remaining: 615ms
6:	learn: 37.8538055	total: 47.3ms	remaining: 629ms
7:	learn: 36.9793574	total: 52.4ms	remaining: 602ms
8:	learn: 36.3076984	total: 58.1ms	remaining: 587ms
9:	learn: 35.6673160	total: 63.3ms	remaining: 570ms
10:	learn: 34.8889800	total: 69.1ms	remaining: 559ms
11:	learn: 34.1675517	total: 74.6ms	remaining: 547ms
12:	learn: 33.6779564	total: 80.5ms	remaining: 539ms
13:	learn: 33.0710039	total: 85.8ms	remaining: 527ms
14:	learn: 32.4966674	total: 91ms	remaining: 515ms
15:	learn: 31.9492856	total: 95.8ms	remaining: 503ms
16:	learn: 31.5108129	total: 101ms	remaining: 493ms
17:	learn: 30.9804023	total: 106ms	remaining: 482ms
18:	learn: 30.4169089	total: 111ms	remaining: 472ms
19:	learn: 29.8930375	total: 116ms	remaining: 464ms
20:	learn: 29.3974421	total: 122ms	remaining: 458ms
21:	learn: 28.8792307	total: 126ms	remaining: 446ms
22:	learn: 28.3894474	total: 130ms	remaining: 435ms
23:	learn: 27.9921276	total: 134ms	remaining: 425ms
24:	learn: 27.6158887	total: 139ms	remaining: 417ms
25:	learn: 27.2866950	total: 143ms	remaining: 407ms
26:	learn: 26.8770708	total: 147ms	remaining: 398ms
27:	learn: 26.6233005	total: 151ms	remaining: 389ms
28:	learn: 26.2921934	total: 155ms	remaining: 380ms
29:	learn: 25.9156920	total: 159ms	remaining: 371ms
30:	learn: 25.5311106	total: 161ms	remaining: 358ms
31:	learn: 25.2178997	total: 165ms	remaining: 350ms
32:	learn: 24.8572196	total: 170ms	remaining: 344ms
33:	learn: 24.5849710	total: 174ms	remaining: 337ms
34:	learn: 24.2209190	total: 178ms	remaining: 330ms
35:	learn: 23.8708250	total: 182ms	remaining: 324ms
36:	learn: 23.5325279	total: 187ms	remaining: 319ms
37:	learn: 23.2116148	total: 192ms	remaining: 313ms
38:	learn: 22.9696787	total: 196ms	remaining: 307ms
39:	learn: 22.7936783	total: 201ms	remaining: 301ms
40:	learn: 22.6228847	total: 205ms	remaining: 295ms
41:	learn: 22.3691527	total: 210ms	remaining: 290ms
42:	learn: 22.1002173	total: 214ms	remaining: 284ms
43:	learn: 21.9157268	total: 221ms	remaining: 282ms
44:	learn: 21.7229102	total: 228ms	remaining: 279ms
45:	learn: 21.4642005	total: 236ms	remaining: 277ms
46:	learn: 21.3029442	total: 244ms	remaining: 275ms
47:	learn: 21.1469792	total: 251ms	remaining: 272ms
48:	learn: 20.9458235	total: 256ms	remaining: 266ms
49:	learn: 20.7335242	total: 261ms	remaining: 261ms
50:	learn: 20.5440269	total: 266ms	remaining: 256ms
51:	learn: 20.3661449	total: 271ms	remaining: 250ms
52:	learn: 20.2158134	total: 276ms	remaining: 245ms
53:	learn: 19.9934873	total: 282ms	remaining: 240ms
54:	learn: 19.7879739	total: 287ms	remaining: 235ms
55:	learn: 19.6630460	total: 292ms	remaining: 230ms
56:	learn: 19.5152729	total: 297ms	remaining: 224ms
57:	learn: 19.3581128	total: 301ms	remaining: 218ms
58:	learn: 19.2209303	total: 305ms	remaining: 212ms
59:	learn: 19.0965248	total: 310ms	remaining: 207ms
60:	learn: 19.0035954	total: 314ms	remaining: 201ms
61:	learn: 18.8554149	total: 319ms	remaining: 196ms
62:	learn: 18.7095427	total: 324ms	remaining: 190ms
63:	learn: 18.5751494	total: 330ms	remaining: 186ms
64:	learn: 18.4678251	total: 335ms	remaining: 180ms
65:	learn: 18.3500325	total: 339ms	remaining: 175ms
66:	learn: 18.2088983	total: 344ms	remaining: 169ms
67:	learn: 18.0737705	total: 347ms	remaining: 164ms
68:	learn: 17.9325058	total: 351ms	remaining: 158ms
69:	learn: 17.8003911	total: 355ms	remaining: 152ms
70:	learn: 17.7385366	total: 359ms	remaining: 147ms
71:	learn: 17.6106998	total: 363ms	remaining: 141ms
72:	learn: 17.4816270	total: 368ms	remaining: 136ms
73:	learn: 17.4025554	total: 372ms	remaining: 131ms
74:	learn: 17.2902108	total: 376ms	remaining: 125ms
75:	learn: 17.2158048	total: 380ms	remaining: 120ms
76:	learn: 17.1261053	total: 385ms	remaining: 115ms
77:	learn: 17.0308917	total: 389ms	remaining: 110ms
78:	learn: 16.9546705	total: 393ms	remaining: 105ms
79:	learn: 16.8319165	total: 398ms	remaining: 99.5ms
80:	learn: 16.7687017	total: 402ms	remaining: 94.4ms
81:	learn: 16.6972326	total: 407ms	remaining: 89.3ms
82:	learn: 16.6124580	total: 411ms	remaining: 84.3ms
83:	learn: 16.4999052	total: 416ms	remaining: 79.2ms
84:	learn: 16.4302484	total: 424ms	remaining: 74.9ms
85:	learn: 16.3201363	total: 432ms	remaining: 70.4ms
86:	learn: 16.2534314	total: 441ms	remaining: 65.8ms
87:	learn: 16.1720485	total: 448ms	remaining: 61.1ms
88:	learn: 16.0625751	total: 453ms	remaining: 56ms
89:	learn: 15.9135088	total: 458ms	remaining: 50.9ms
90:	learn: 15.8658863	total: 464ms	remaining: 45.9ms
91:	learn: 15.8066805	total: 469ms	remaining: 40.8ms
92:	learn: 15.7412103	total: 474ms	remaining: 35.7ms
93:	learn: 15.6542776	total: 479ms	remaining: 30.6ms
94:	learn: 15.5760334	total: 484ms	remaining: 25.5ms
95:	learn: 15.5434131	total: 489ms	remaining: 20.4ms
96:	learn: 15.4709561	total: 494ms	remaining: 15.3ms
97:	learn: 15.4449618	total: 499ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 504ms	remaining: 5.09ms
99:	learn: 15.3106595	total: 509ms	remaining: 0us
0:	learn: 46.7142257	total: 4.3ms	remaining: 426ms
1:	learn: 45.7634153	total: 8.32ms	remaining: 408ms
2:	learn: 45.0054253	total: 12.8ms	remaining: 415ms
3:	learn: 44.2120432	total: 17ms	remaining: 409ms
4:	learn: 43.3960472	total: 21ms	remaining: 400ms
5:	learn: 42.8588120	total: 25.2ms	remaining: 395ms
6:	learn: 41.9533701	total: 29.6ms	remaining: 393ms
7:	learn: 41.2745030	total: 33.5ms	remaining: 385ms
8:	learn: 40.6797495	total: 37.6ms	remaining: 381ms
9:	learn: 39.9899571	total: 42.2ms	remaining: 380ms
10:	learn: 39.4682100	total: 47ms	remaining: 380ms
11:	learn: 39.0305595	total: 51.6ms	remaining: 378ms
12:	learn: 38.4200417	total: 56.2ms	remaining: 376ms
13:	learn: 37.8425194	total: 60.3ms	remaining: 371ms
14:	learn: 37.4203127	total: 64.5ms	remaining: 365ms
15:	learn: 36.9917688	total: 68.8ms	remaining: 361ms
16:	learn: 36.5544138	total: 73.7ms	remaining: 360ms
17:	learn: 36.0727019	total: 78.4ms	remaining: 357ms
18:	learn: 35.4835715	total: 86.6ms	remaining: 369ms
19:	learn: 34.9865654	total: 94.3ms	remaining: 377ms
20:	learn: 34.6063373	total: 103ms	remaining: 387ms
21:	learn: 34.0997289	total: 111ms	remaining: 392ms
22:	learn: 33.7313171	total: 116ms	remaining: 389ms
23:	learn: 33.3582000	total: 121ms	remaining: 384ms
24:	learn: 32.9432456	total: 126ms	remaining: 379ms
25:	learn: 32.5220888	total: 131ms	remaining: 374ms
26:	learn: 32.2172292	total: 136ms	remaining: 369ms
27:	learn: 31.8972904	total: 142ms	remaining: 365ms
28:	learn: 31.6405350	total: 147ms	remaining: 360ms
29:	learn: 31.4167702	total: 152ms	remaining: 354ms
30:	learn: 30.8541961	total: 154ms	remaining: 343ms
31:	learn: 30.5572111	total: 159ms	remaining: 339ms
32:	learn: 30.1700399	total: 165ms	remaining: 335ms
33:	learn: 29.8537271	total: 170ms	remaining: 330ms
34:	learn: 29.6192540	total: 176ms	remaining: 327ms
35:	learn: 29.3276362	total: 182ms	remaining: 323ms
36:	learn: 28.9985179	total: 186ms	remaining: 317ms
37:	learn: 28.7046880	total: 191ms	remaining: 312ms
38:	learn: 28.4412677	total: 196ms	remaining: 306ms
39:	learn: 28.1277292	total: 201ms	remaining: 301ms
40:	learn: 27.9000750	total: 205ms	remaining: 295ms
41:	learn: 27.5433162	total: 210ms	remaining: 290ms
42:	learn: 27.2493285	total: 214ms	remaining: 284ms
43:	learn: 26.9576632	total: 216ms	remaining: 275ms
44:	learn: 26.6177110	total: 220ms	remaining: 269ms
45:	learn: 26.2812456	total: 224ms	remaining: 263ms
46:	learn: 26.0803859	total: 228ms	remaining: 257ms
47:	learn: 25.9543581	total: 232ms	remaining: 251ms
48:	learn: 25.7951582	total: 236ms	remaining: 246ms
49:	learn: 25.6548184	total: 240ms	remaining: 240ms
50:	learn: 25.4010843	total: 244ms	remaining: 234ms
51:	learn: 24.9773937	total: 248ms	remaining: 229ms
52:	learn: 24.8026156	total: 252ms	remaining: 224ms
53:	learn: 24.5568053	total: 257ms	remaining: 219ms
54:	learn: 24.2281839	total: 262ms	remaining: 215ms
55:	learn: 23.9202795	total: 267ms	remaining: 210ms
56:	learn: 23.7625591	total: 271ms	remaining: 205ms
57:	learn: 23.5429721	total: 276ms	remaining: 200ms
58:	learn: 23.3175893	total: 281ms	remaining: 195ms
59:	learn: 23.2035130	total: 285ms	remaining: 190ms
60:	learn: 23.0232450	total: 293ms	remaining: 187ms
61:	learn: 22.8384958	total: 301ms	remaining: 184ms
62:	learn: 22.6499902	total: 310ms	remaining: 182ms
63:	learn: 22.4577426	total: 317ms	remaining: 178ms
64:	learn: 22.3333158	total: 323ms	remaining: 174ms
65:	learn: 22.2064131	total: 328ms	remaining: 169ms
66:	learn: 22.1434971	total: 333ms	remaining: 164ms
67:	learn: 21.9596519	total: 338ms	remaining: 159ms
68:	learn: 21.8475576	total: 344ms	remaining: 154ms
69:	learn: 21.6954745	total: 350ms	remaining: 150ms
70:	learn: 21.5635976	total: 355ms	remaining: 145ms
71:	learn: 21.4588506	total: 360ms	remaining: 140ms
72:	learn: 21.3527268	total: 365ms	remaining: 135ms
73:	learn: 21.2661288	total: 370ms	remaining: 130ms
74:	learn: 21.1817333	total: 375ms	remaining: 125ms
75:	learn: 21.0527553	total: 379ms	remaining: 120ms
76:	learn: 20.9229021	total: 385ms	remaining: 115ms
77:	learn: 20.7563946	total: 391ms	remaining: 110ms
78:	learn: 20.6569831	total: 396ms	remaining: 105ms
79:	learn: 20.4982663	total: 400ms	remaining: 100ms
80:	learn: 20.3185460	total: 405ms	remaining: 94.9ms
81:	learn: 20.2096241	total: 409ms	remaining: 89.8ms
82:	learn: 20.1274891	total: 414ms	remaining: 84.8ms
83:	learn: 20.0740139	total: 419ms	remaining: 79.8ms
84:	learn: 19.9630699	total: 423ms	remaining: 74.7ms
85:	learn: 19.8753899	total: 428ms	remaining: 69.7ms
86:	learn: 19.6563612	total: 433ms	remaining: 64.7ms
87:	learn: 19.4680232	total: 438ms	remaining: 59.7ms
88:	learn: 19.3503431	total: 443ms	remaining: 54.7ms
89:	learn: 19.2221379	total: 447ms	remaining: 49.6ms
90:	learn: 19.0732542	total: 452ms	remaining: 44.7ms
91:	learn: 18.9825190	total: 457ms	remaining: 39.7ms
92:	learn: 18.8839009	total: 461ms	remaining: 34.7ms
93:	learn: 18.8012219	total: 467ms	remaining: 29.8ms
94:	learn: 18.7172713	total: 472ms	remaining: 24.8ms
95:	learn: 18.6201170	total: 477ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 482ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 489ms	remaining: 9.98ms
98:	learn: 18.3289700	total: 499ms	remaining: 5.04ms
99:	learn: 18.2227333	total: 513ms	remaining: 0us
0:	learn: 46.3764524	total: 5.41ms	remaining: 536ms
1:	learn: 45.5561269	total: 9.71ms	remaining: 476ms
2:	learn: 44.8811245	total: 15.2ms	remaining: 491ms
3:	learn: 44.0788617	total: 20.2ms	remaining: 486ms
4:	learn: 43.3619790	total: 24.7ms	remaining: 470ms
5:	learn: 42.6912112	total: 28.9ms	remaining: 453ms
6:	learn: 42.2292118	total: 33ms	remaining: 438ms
7:	learn: 41.7725191	total: 37ms	remaining: 425ms
8:	learn: 41.1676614	total: 40.6ms	remaining: 410ms
9:	learn: 40.5771076	total: 44.4ms	remaining: 400ms
10:	learn: 39.8343757	total: 48.5ms	remaining: 393ms
11:	learn: 39.3761142	total: 52.4ms	remaining: 384ms
12:	learn: 38.5254692	total: 56.5ms	remaining: 378ms
13:	learn: 37.9629555	total: 60.7ms	remaining: 373ms
14:	learn: 37.4418438	total: 64.7ms	remaining: 367ms
15:	learn: 37.0507283	total: 68.9ms	remaining: 362ms
16:	learn: 36.6264217	total: 72.7ms	remaining: 355ms
17:	learn: 36.1114940	total: 77.1ms	remaining: 351ms
18:	learn: 35.7193862	total: 80.7ms	remaining: 344ms
19:	learn: 35.3301177	total: 85ms	remaining: 340ms
20:	learn: 35.0598280	total: 89.2ms	remaining: 336ms
21:	learn: 34.5469736	total: 93ms	remaining: 330ms
22:	learn: 34.2064215	total: 96.5ms	remaining: 323ms
23:	learn: 33.7280710	total: 100ms	remaining: 318ms
24:	learn: 33.3282940	total: 105ms	remaining: 314ms
25:	learn: 32.8478961	total: 109ms	remaining: 311ms
26:	learn: 32.5722164	total: 114ms	remaining: 307ms
27:	learn: 32.2457019	total: 118ms	remaining: 304ms
28:	learn: 31.9230495	total: 122ms	remaining: 300ms
29:	learn: 31.4311611	total: 127ms	remaining: 296ms
30:	learn: 30.9179052	total: 131ms	remaining: 291ms
31:	learn: 30.6201141	total: 135ms	remaining: 287ms
32:	learn: 30.3421106	total: 140ms	remaining: 284ms
33:	learn: 29.9885373	total: 148ms	remaining: 287ms
34:	learn: 29.7462780	total: 155ms	remaining: 288ms
35:	learn: 29.3607153	total: 165ms	remaining: 293ms
36:	learn: 29.1793078	total: 170ms	remaining: 290ms
37:	learn: 28.9276538	total: 177ms	remaining: 289ms
38:	learn: 28.6903934	total: 183ms	remaining: 286ms
39:	learn: 28.2095033	total: 187ms	remaining: 281ms
40:	learn: 27.7990608	total: 192ms	remaining: 277ms
41:	learn: 27.5406632	total: 198ms	remaining: 273ms
42:	learn: 27.2575376	total: 203ms	remaining: 269ms
43:	learn: 26.9741707	total: 208ms	remaining: 265ms
44:	learn: 26.6606899	total: 214ms	remaining: 262ms
45:	learn: 26.4015833	total: 219ms	remaining: 257ms
46:	learn: 26.1828993	total: 224ms	remaining: 253ms
47:	learn: 26.0233709	total: 227ms	remaining: 246ms
48:	learn: 25.9300399	total: 232ms	remaining: 241ms
49:	learn: 25.5861489	total: 237ms	remaining: 237ms
50:	learn: 25.4322012	total: 242ms	remaining: 233ms
51:	learn: 25.1595644	total: 247ms	remaining: 228ms
52:	learn: 24.9955303	total: 250ms	remaining: 222ms
53:	learn: 24.7273966	total: 254ms	remaining: 217ms
54:	learn: 24.5747978	total: 258ms	remaining: 211ms
55:	learn: 24.3807977	total: 263ms	remaining: 206ms
56:	learn: 24.1689569	total: 268ms	remaining: 202ms
57:	learn: 23.9898221	total: 273ms	remaining: 198ms
58:	learn: 23.7566414	total: 277ms	remaining: 193ms
59:	learn: 23.6641165	total: 282ms	remaining: 188ms
60:	learn: 23.5658066	total: 286ms	remaining: 183ms
61:	learn: 23.4338851	total: 290ms	remaining: 178ms
62:	learn: 23.2408837	total: 295ms	remaining: 173ms
63:	learn: 23.0642038	total: 299ms	remaining: 168ms
64:	learn: 22.9032045	total: 305ms	remaining: 164ms
65:	learn: 22.7736138	total: 310ms	remaining: 160ms
66:	learn: 22.6836443	total: 315ms	remaining: 155ms
67:	learn: 22.5983654	total: 320ms	remaining: 150ms
68:	learn: 22.4419813	total: 324ms	remaining: 146ms
69:	learn: 22.2863339	total: 330ms	remaining: 141ms
70:	learn: 22.1792943	total: 335ms	remaining: 137ms
71:	learn: 22.1130574	total: 343ms	remaining: 134ms
72:	learn: 21.9858161	total: 350ms	remaining: 130ms
73:	learn: 21.8577784	total: 360ms	remaining: 126ms
74:	learn: 21.7845222	total: 367ms	remaining: 122ms
75:	learn: 21.6831390	total: 373ms	remaining: 118ms
76:	learn: 21.6292521	total: 380ms	remaining: 113ms
77:	learn: 21.5789330	total: 385ms	remaining: 109ms
78:	learn: 21.5420942	total: 390ms	remaining: 104ms
79:	learn: 21.4280939	total: 396ms	remaining: 98.9ms
80:	learn: 21.3641165	total: 401ms	remaining: 94ms
81:	learn: 21.2734814	total: 406ms	remaining: 89.1ms
82:	learn: 21.2220323	total: 411ms	remaining: 84.3ms
83:	learn: 21.0625792	total: 417ms	remaining: 79.4ms
84:	learn: 20.9488320	total: 422ms	remaining: 74.5ms
85:	learn: 20.8504255	total: 427ms	remaining: 69.5ms
86:	learn: 20.7848510	total: 433ms	remaining: 64.7ms
87:	learn: 20.7247442	total: 439ms	remaining: 59.8ms
88:	learn: 20.5698590	total: 444ms	remaining: 54.8ms
89:	learn: 20.4067620	total: 448ms	remaining: 49.8ms
90:	learn: 20.3062482	total: 453ms	remaining: 44.8ms
91:	learn: 20.2029696	total: 457ms	remaining: 39.8ms
92:	learn: 20.1384849	total: 462ms	remaining: 34.8ms
93:	learn: 20.0260709	total: 466ms	remaining: 29.8ms
94:	learn: 19.9122100	total: 470ms	remaining: 24.8ms
95:	learn: 19.8648487	total: 481ms	remaining: 20ms
96:	learn: 19.8207072	total: 485ms	remaining: 15ms
97:	learn: 19.7261189	total: 489ms	remaining: 9.97ms
98:	learn: 19.7042438	total: 493ms	remaining: 4.97ms
99:	learn: 19.6546645	total: 497ms	remaining: 0us
0:	learn: 47.0239288	total: 5.9ms	remaining: 584ms
1:	learn: 46.2253829	total: 11.2ms	remaining: 551ms
2:	learn: 45.5580301	total: 16.5ms	remaining: 534ms
3:	learn: 44.7273237	total: 21.7ms	remaining: 520ms
4:	learn: 43.8867421	total: 26.8ms	remaining: 510ms
5:	learn: 43.3615911	total: 31.9ms	remaining: 500ms
6:	learn: 42.8548390	total: 37ms	remaining: 491ms
7:	learn: 42.1606758	total: 42.1ms	remaining: 484ms
8:	learn: 41.6625870	total: 47.2ms	remaining: 478ms
9:	learn: 40.9497092	total: 52.3ms	remaining: 471ms
10:	learn: 40.1886318	total: 57.6ms	remaining: 466ms
11:	learn: 39.7456423	total: 62.9ms	remaining: 461ms
12:	learn: 39.1171373	total: 68.4ms	remaining: 458ms
13:	learn: 38.5451069	total: 73.8ms	remaining: 453ms
14:	learn: 38.0155834	total: 78.8ms	remaining: 447ms
15:	learn: 37.5631354	total: 83.2ms	remaining: 437ms
16:	learn: 37.1030023	total: 87.5ms	remaining: 427ms
17:	learn: 36.4563029	total: 91.7ms	remaining: 418ms
18:	learn: 36.0160976	total: 96.3ms	remaining: 411ms
19:	learn: 35.5079827	total: 101ms	remaining: 403ms
20:	learn: 35.2111885	total: 105ms	remaining: 396ms
21:	learn: 34.9397465	total: 110ms	remaining: 390ms
22:	learn: 34.5270048	total: 115ms	remaining: 384ms
23:	learn: 34.0169260	total: 119ms	remaining: 377ms
24:	learn: 33.7454892	total: 123ms	remaining: 370ms
25:	learn: 33.2648157	total: 128ms	remaining: 364ms
26:	learn: 32.8899427	total: 133ms	remaining: 360ms
27:	learn: 32.6185050	total: 138ms	remaining: 354ms
28:	learn: 32.3528531	total: 142ms	remaining: 347ms
29:	learn: 32.0859923	total: 147ms	remaining: 342ms
30:	learn: 31.6511144	total: 152ms	remaining: 338ms
31:	learn: 31.2571765	total: 156ms	remaining: 332ms
32:	learn: 30.9770049	total: 161ms	remaining: 327ms
33:	learn: 30.6084872	total: 166ms	remaining: 322ms
34:	learn: 30.3448632	total: 170ms	remaining: 316ms
35:	learn: 30.0360942	total: 175ms	remaining: 311ms
36:	learn: 29.6648968	total: 179ms	remaining: 305ms
37:	learn: 29.3165114	total: 186ms	remaining: 303ms
38:	learn: 29.0829198	total: 194ms	remaining: 303ms
39:	learn: 28.7752064	total: 201ms	remaining: 302ms
40:	learn: 28.3622191	total: 208ms	remaining: 299ms
41:	learn: 28.1346631	total: 216ms	remaining: 298ms
42:	learn: 27.9585719	total: 221ms	remaining: 293ms
43:	learn: 27.6565566	total: 226ms	remaining: 287ms
44:	learn: 27.3616172	total: 230ms	remaining: 282ms
45:	learn: 27.0658637	total: 236ms	remaining: 277ms
46:	learn: 26.8660382	total: 241ms	remaining: 271ms
47:	learn: 26.6536078	total: 246ms	remaining: 267ms
48:	learn: 26.3524440	total: 251ms	remaining: 262ms
49:	learn: 26.1595277	total: 257ms	remaining: 257ms
50:	learn: 25.9273523	total: 261ms	remaining: 251ms
51:	learn: 25.7195580	total: 266ms	remaining: 246ms
52:	learn: 25.5730225	total: 271ms	remaining: 240ms
53:	learn: 25.3455276	total: 276ms	remaining: 235ms
54:	learn: 25.2289675	total: 281ms	remaining: 230ms
55:	learn: 25.0133024	total: 286ms	remaining: 225ms
56:	learn: 24.8406714	total: 290ms	remaining: 219ms
57:	learn: 24.6367857	total: 294ms	remaining: 213ms
58:	learn: 24.5338177	total: 299ms	remaining: 208ms
59:	learn: 24.3799964	total: 303ms	remaining: 202ms
60:	learn: 24.1447492	total: 307ms	remaining: 196ms
61:	learn: 23.9880495	total: 311ms	remaining: 191ms
62:	learn: 23.7140630	total: 316ms	remaining: 185ms
63:	learn: 23.5003791	total: 321ms	remaining: 180ms
64:	learn: 23.3207645	total: 326ms	remaining: 175ms
65:	learn: 23.1958356	total: 332ms	remaining: 171ms
66:	learn: 23.0471302	total: 337ms	remaining: 166ms
67:	learn: 22.8977183	total: 342ms	remaining: 161ms
68:	learn: 22.7187400	total: 348ms	remaining: 156ms
69:	learn: 22.6523405	total: 353ms	remaining: 151ms
70:	learn: 22.4767453	total: 358ms	remaining: 146ms
71:	learn: 22.3243677	total: 363ms	remaining: 141ms
72:	learn: 22.2133096	total: 368ms	remaining: 136ms
73:	learn: 22.1151713	total: 373ms	remaining: 131ms
74:	learn: 22.0296666	total: 378ms	remaining: 126ms
75:	learn: 21.9195980	total: 387ms	remaining: 122ms
76:	learn: 21.8401730	total: 396ms	remaining: 118ms
77:	learn: 21.8079797	total: 405ms	remaining: 114ms
78:	learn: 21.7274109	total: 414ms	remaining: 110ms
79:	learn: 21.6663032	total: 419ms	remaining: 105ms
80:	learn: 21.5633117	total: 425ms	remaining: 99.7ms
81:	learn: 21.4542467	total: 430ms	remaining: 94.5ms
82:	learn: 21.3177957	total: 436ms	remaining: 89.3ms
83:	learn: 21.1289167	total: 442ms	remaining: 84.3ms
84:	learn: 21.0297368	total: 448ms	remaining: 79ms
85:	learn: 20.9089564	total: 453ms	remaining: 73.7ms
86:	learn: 20.7653988	total: 459ms	remaining: 68.5ms
87:	learn: 20.6521894	total: 464ms	remaining: 63.3ms
88:	learn: 20.5193021	total: 469ms	remaining: 58ms
89:	learn: 20.4361620	total: 474ms	remaining: 52.7ms
90:	learn: 20.3546710	total: 480ms	remaining: 47.4ms
91:	learn: 20.2513296	total: 485ms	remaining: 42.2ms
92:	learn: 20.1605550	total: 489ms	remaining: 36.8ms
93:	learn: 20.0515942	total: 493ms	remaining: 31.5ms
94:	learn: 19.9800764	total: 498ms	remaining: 26.2ms
95:	learn: 19.8996532	total: 503ms	remaining: 20.9ms
96:	learn: 19.8450910	total: 507ms	remaining: 15.7ms
97:	learn: 19.7887346	total: 512ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 516ms	remaining: 5.21ms
99:	learn: 19.6328825	total: 520ms	remaining: 0us
0:	learn: 27.5585353	total: 4.56ms	remaining: 451ms
1:	learn: 27.1656995	total: 9.42ms	remaining: 462ms
2:	learn: 26.8590175	total: 17.7ms	remaining: 573ms
3:	learn: 26.5818406	total: 24.9ms	remaining: 598ms
4:	learn: 26.1148663	total: 33.5ms	remaining: 637ms
5:	learn: 25.7690484	total: 39.8ms	remaining: 623ms
6:	learn: 25.3489206	total: 45.7ms	remaining: 607ms
7:	learn: 24.9542406	total: 56.4ms	remaining: 648ms
8:	learn: 24.6777517	total: 61.5ms	remaining: 622ms
9:	learn: 24.3242344	total: 66.6ms	remaining: 600ms
10:	learn: 24.0383073	total: 71.9ms	remaining: 581ms
11:	learn: 23.7383420	total: 76.8ms	remaining: 563ms
12:	learn: 23.3461670	total: 82ms	remaining: 548ms
13:	learn: 23.0928636	total: 86.9ms	remaining: 534ms
14:	learn: 22.8770414	total: 92.3ms	remaining: 523ms
15:	learn: 22.6323214	total: 96.7ms	remaining: 508ms
16:	learn: 22.3597072	total: 102ms	remaining: 498ms
17:	learn: 22.1079813	total: 108ms	remaining: 490ms
18:	learn: 21.8421199	total: 112ms	remaining: 480ms
19:	learn: 21.6576508	total: 116ms	remaining: 466ms
20:	learn: 21.4301268	total: 120ms	remaining: 452ms
21:	learn: 21.2287388	total: 124ms	remaining: 441ms
22:	learn: 21.0553872	total: 128ms	remaining: 430ms
23:	learn: 20.8977091	total: 133ms	remaining: 420ms
24:	learn: 20.6619051	total: 137ms	remaining: 412ms
25:	learn: 20.5040955	total: 142ms	remaining: 404ms
26:	learn: 20.3181195	total: 146ms	remaining: 396ms
27:	learn: 20.0869436	total: 150ms	remaining: 387ms
28:	learn: 19.9375985	total: 155ms	remaining: 379ms
29:	learn: 19.8247516	total: 159ms	remaining: 371ms
30:	learn: 19.6261697	total: 163ms	remaining: 364ms
31:	learn: 19.4547236	total: 168ms	remaining: 358ms
32:	learn: 19.3157092	total: 173ms	remaining: 352ms
33:	learn: 19.1561419	total: 178ms	remaining: 346ms
34:	learn: 19.0453620	total: 183ms	remaining: 340ms
35:	learn: 18.8738574	total: 187ms	remaining: 332ms
36:	learn: 18.7072907	total: 191ms	remaining: 325ms
37:	learn: 18.5877943	total: 195ms	remaining: 319ms
38:	learn: 18.4436380	total: 199ms	remaining: 312ms
39:	learn: 18.3463356	total: 203ms	remaining: 305ms
40:	learn: 18.2008059	total: 207ms	remaining: 298ms
41:	learn: 18.0582079	total: 212ms	remaining: 293ms
42:	learn: 17.8891982	total: 217ms	remaining: 287ms
43:	learn: 17.7332246	total: 221ms	remaining: 282ms
44:	learn: 17.6206421	total: 226ms	remaining: 277ms
45:	learn: 17.4982800	total: 231ms	remaining: 271ms
46:	learn: 17.3970150	total: 236ms	remaining: 266ms
47:	learn: 17.3058203	total: 241ms	remaining: 261ms
48:	learn: 17.1789256	total: 245ms	remaining: 255ms
49:	learn: 17.0916229	total: 249ms	remaining: 249ms
50:	learn: 16.9859820	total: 254ms	remaining: 244ms
51:	learn: 16.8995582	total: 258ms	remaining: 239ms
52:	learn: 16.8137014	total: 266ms	remaining: 236ms
53:	learn: 16.7021451	total: 274ms	remaining: 233ms
54:	learn: 16.5895582	total: 283ms	remaining: 232ms
55:	learn: 16.5015639	total: 289ms	remaining: 227ms
56:	learn: 16.4356637	total: 296ms	remaining: 223ms
57:	learn: 16.3514525	total: 301ms	remaining: 218ms
58:	learn: 16.2401369	total: 306ms	remaining: 213ms
59:	learn: 16.1293223	total: 311ms	remaining: 207ms
60:	learn: 16.0271167	total: 317ms	remaining: 203ms
61:	learn: 15.9126257	total: 322ms	remaining: 197ms
62:	learn: 15.8391096	total: 327ms	remaining: 192ms
63:	learn: 15.7441773	total: 332ms	remaining: 187ms
64:	learn: 15.6885195	total: 337ms	remaining: 182ms
65:	learn: 15.6052039	total: 342ms	remaining: 176ms
66:	learn: 15.5074202	total: 347ms	remaining: 171ms
67:	learn: 15.4054338	total: 352ms	remaining: 165ms
68:	learn: 15.2885714	total: 357ms	remaining: 161ms
69:	learn: 15.2157472	total: 363ms	remaining: 156ms
70:	learn: 15.1031554	total: 367ms	remaining: 150ms
71:	learn: 15.0237470	total: 371ms	remaining: 144ms
72:	learn: 14.9756825	total: 375ms	remaining: 139ms
73:	learn: 14.8840596	total: 380ms	remaining: 133ms
74:	learn: 14.8077061	total: 384ms	remaining: 128ms
75:	learn: 14.7444437	total: 388ms	remaining: 123ms
76:	learn: 14.6751720	total: 392ms	remaining: 117ms
77:	learn: 14.5830333	total: 396ms	remaining: 112ms
78:	learn: 14.5241206	total: 400ms	remaining: 106ms
79:	learn: 14.4892731	total: 404ms	remaining: 101ms
80:	learn: 14.4256605	total: 408ms	remaining: 95.8ms
81:	learn: 14.3666860	total: 412ms	remaining: 90.5ms
82:	learn: 14.2938372	total: 416ms	remaining: 85.3ms
83:	learn: 14.2161532	total: 421ms	remaining: 80.2ms
84:	learn: 14.1582910	total: 426ms	remaining: 75.1ms
85:	learn: 14.1029153	total: 430ms	remaining: 70ms
86:	learn: 14.0475835	total: 435ms	remaining: 65ms
87:	learn: 13.9892661	total: 439ms	remaining: 59.9ms
88:	learn: 13.9481628	total: 444ms	remaining: 54.9ms
89:	learn: 13.8483991	total: 448ms	remaining: 49.8ms
90:	learn: 13.7775614	total: 452ms	remaining: 44.7ms
91:	learn: 13.7304585	total: 457ms	remaining: 39.8ms
92:	learn: 13.6783381	total: 466ms	remaining: 35ms
93:	learn: 13.6356964	total: 473ms	remaining: 30.2ms
94:	learn: 13.5924371	total: 481ms	remaining: 25.3ms
95:	learn: 13.5400746	total: 489ms	remaining: 20.4ms
96:	learn: 13.4897333	total: 495ms	remaining: 15.3ms
97:	learn: 13.4470321	total: 500ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 506ms	remaining: 5.11ms
99:	learn: 13.3082371	total: 511ms	remaining: 0us
0:	learn: 43.0395283	total: 5.7ms	remaining: 564ms
1:	learn: 42.1130223	total: 10.1ms	remaining: 495ms
2:	learn: 41.1753409	total: 14.6ms	remaining: 472ms
3:	learn: 40.3637444	total: 18.7ms	remaining: 449ms
4:	learn: 39.6508088	total: 22.9ms	remaining: 436ms
5:	learn: 38.7217934	total: 27.2ms	remaining: 426ms
6:	learn: 37.8538055	total: 31.9ms	remaining: 424ms
7:	learn: 36.9793574	total: 36.6ms	remaining: 421ms
8:	learn: 36.3076984	total: 41ms	remaining: 414ms
9:	learn: 35.6673160	total: 45.2ms	remaining: 406ms
10:	learn: 34.8889800	total: 49.4ms	remaining: 400ms
11:	learn: 34.1675517	total: 53.5ms	remaining: 392ms
12:	learn: 33.6779564	total: 58.1ms	remaining: 389ms
13:	learn: 33.0710039	total: 62.7ms	remaining: 385ms
14:	learn: 32.4966674	total: 66.8ms	remaining: 378ms
15:	learn: 31.9492856	total: 70.5ms	remaining: 370ms
16:	learn: 31.5108129	total: 74.9ms	remaining: 366ms
17:	learn: 30.9804023	total: 79.3ms	remaining: 361ms
18:	learn: 30.4169089	total: 83.8ms	remaining: 357ms
19:	learn: 29.8930375	total: 88.6ms	remaining: 355ms
20:	learn: 29.3974421	total: 93.1ms	remaining: 350ms
21:	learn: 28.8792307	total: 97.6ms	remaining: 346ms
22:	learn: 28.3894474	total: 102ms	remaining: 342ms
23:	learn: 27.9921276	total: 107ms	remaining: 337ms
24:	learn: 27.6158887	total: 115ms	remaining: 344ms
25:	learn: 27.2866950	total: 122ms	remaining: 348ms
26:	learn: 26.8770708	total: 131ms	remaining: 354ms
27:	learn: 26.6233005	total: 137ms	remaining: 353ms
28:	learn: 26.2921934	total: 143ms	remaining: 351ms
29:	learn: 25.9156920	total: 149ms	remaining: 347ms
30:	learn: 25.5311106	total: 151ms	remaining: 335ms
31:	learn: 25.2178997	total: 156ms	remaining: 331ms
32:	learn: 24.8572196	total: 161ms	remaining: 327ms
33:	learn: 24.5849710	total: 166ms	remaining: 322ms
34:	learn: 24.2209190	total: 171ms	remaining: 318ms
35:	learn: 23.8708250	total: 176ms	remaining: 313ms
36:	learn: 23.5325279	total: 182ms	remaining: 310ms
37:	learn: 23.2116148	total: 187ms	remaining: 306ms
38:	learn: 22.9696787	total: 193ms	remaining: 302ms
39:	learn: 22.7936783	total: 198ms	remaining: 297ms
40:	learn: 22.6228847	total: 204ms	remaining: 294ms
41:	learn: 22.3691527	total: 210ms	remaining: 290ms
42:	learn: 22.1002173	total: 215ms	remaining: 285ms
43:	learn: 21.9157268	total: 219ms	remaining: 278ms
44:	learn: 21.7229102	total: 223ms	remaining: 273ms
45:	learn: 21.4642005	total: 227ms	remaining: 267ms
46:	learn: 21.3029442	total: 231ms	remaining: 261ms
47:	learn: 21.1469792	total: 235ms	remaining: 255ms
48:	learn: 20.9458235	total: 240ms	remaining: 250ms
49:	learn: 20.7335242	total: 244ms	remaining: 244ms
50:	learn: 20.5440269	total: 248ms	remaining: 238ms
51:	learn: 20.3661449	total: 252ms	remaining: 232ms
52:	learn: 20.2158134	total: 256ms	remaining: 227ms
53:	learn: 19.9934873	total: 260ms	remaining: 222ms
54:	learn: 19.7879739	total: 264ms	remaining: 216ms
55:	learn: 19.6630460	total: 268ms	remaining: 211ms
56:	learn: 19.5152729	total: 273ms	remaining: 206ms
57:	learn: 19.3581128	total: 278ms	remaining: 201ms
58:	learn: 19.2209303	total: 282ms	remaining: 196ms
59:	learn: 19.0965248	total: 287ms	remaining: 191ms
60:	learn: 19.0035954	total: 291ms	remaining: 186ms
61:	learn: 18.8554149	total: 295ms	remaining: 181ms
62:	learn: 18.7095427	total: 300ms	remaining: 176ms
63:	learn: 18.5751494	total: 304ms	remaining: 171ms
64:	learn: 18.4678251	total: 312ms	remaining: 168ms
65:	learn: 18.3500325	total: 319ms	remaining: 164ms
66:	learn: 18.2088983	total: 328ms	remaining: 162ms
67:	learn: 18.0737705	total: 334ms	remaining: 157ms
68:	learn: 17.9325058	total: 341ms	remaining: 153ms
69:	learn: 17.8003911	total: 346ms	remaining: 148ms
70:	learn: 17.7385366	total: 351ms	remaining: 143ms
71:	learn: 17.6106998	total: 356ms	remaining: 138ms
72:	learn: 17.4816270	total: 361ms	remaining: 134ms
73:	learn: 17.4025554	total: 366ms	remaining: 129ms
74:	learn: 17.2902108	total: 372ms	remaining: 124ms
75:	learn: 17.2158048	total: 377ms	remaining: 119ms
76:	learn: 17.1261053	total: 382ms	remaining: 114ms
77:	learn: 17.0308917	total: 387ms	remaining: 109ms
78:	learn: 16.9546705	total: 392ms	remaining: 104ms
79:	learn: 16.8319165	total: 397ms	remaining: 99.3ms
80:	learn: 16.7687017	total: 402ms	remaining: 94.4ms
81:	learn: 16.6972326	total: 408ms	remaining: 89.5ms
82:	learn: 16.6124580	total: 412ms	remaining: 84.3ms
83:	learn: 16.4999052	total: 416ms	remaining: 79.2ms
84:	learn: 16.4302484	total: 420ms	remaining: 74.1ms
85:	learn: 16.3201363	total: 424ms	remaining: 69ms
86:	learn: 16.2534314	total: 428ms	remaining: 63.9ms
87:	learn: 16.1720485	total: 432ms	remaining: 58.9ms
88:	learn: 16.0625751	total: 436ms	remaining: 53.9ms
89:	learn: 15.9135088	total: 440ms	remaining: 48.9ms
90:	learn: 15.8658863	total: 444ms	remaining: 43.9ms
91:	learn: 15.8066805	total: 448ms	remaining: 39ms
92:	learn: 15.7412103	total: 452ms	remaining: 34ms
93:	learn: 15.6542776	total: 457ms	remaining: 29.2ms
94:	learn: 15.5760334	total: 461ms	remaining: 24.2ms
95:	learn: 15.5434131	total: 465ms	remaining: 19.4ms
96:	learn: 15.4709561	total: 469ms	remaining: 14.5ms
97:	learn: 15.4449618	total: 473ms	remaining: 9.66ms
98:	learn: 15.3752761	total: 478ms	remaining: 4.83ms
99:	learn: 15.3106595	total: 483ms	remaining: 0us
0:	learn: 46.7142257	total: 6.06ms	remaining: 600ms
1:	learn: 45.7634153	total: 12.5ms	remaining: 610ms
2:	learn: 45.0054253	total: 17.4ms	remaining: 562ms
3:	learn: 44.2120432	total: 22.3ms	remaining: 536ms
4:	learn: 43.3960472	total: 27.5ms	remaining: 522ms
5:	learn: 42.8588120	total: 32.8ms	remaining: 514ms
6:	learn: 41.9533701	total: 38ms	remaining: 505ms
7:	learn: 41.2745030	total: 43.1ms	remaining: 495ms
8:	learn: 40.6797495	total: 48.3ms	remaining: 489ms
9:	learn: 39.9899571	total: 53.6ms	remaining: 482ms
10:	learn: 39.4682100	total: 58.9ms	remaining: 477ms
11:	learn: 39.0305595	total: 64.3ms	remaining: 471ms
12:	learn: 38.4200417	total: 68.8ms	remaining: 461ms
13:	learn: 37.8425194	total: 73.8ms	remaining: 453ms
14:	learn: 37.4203127	total: 79.1ms	remaining: 448ms
15:	learn: 36.9917688	total: 84.7ms	remaining: 445ms
16:	learn: 36.5544138	total: 88.9ms	remaining: 434ms
17:	learn: 36.0727019	total: 92.9ms	remaining: 423ms
18:	learn: 35.4835715	total: 97.6ms	remaining: 416ms
19:	learn: 34.9865654	total: 102ms	remaining: 407ms
20:	learn: 34.6063373	total: 106ms	remaining: 398ms
21:	learn: 34.0997289	total: 110ms	remaining: 389ms
22:	learn: 33.7313171	total: 114ms	remaining: 383ms
23:	learn: 33.3582000	total: 118ms	remaining: 375ms
24:	learn: 32.9432456	total: 122ms	remaining: 367ms
25:	learn: 32.5220888	total: 126ms	remaining: 359ms
26:	learn: 32.2172292	total: 130ms	remaining: 352ms
27:	learn: 31.8972904	total: 134ms	remaining: 346ms
28:	learn: 31.6405350	total: 139ms	remaining: 339ms
29:	learn: 31.4167702	total: 142ms	remaining: 332ms
30:	learn: 30.8541961	total: 144ms	remaining: 321ms
31:	learn: 30.5572111	total: 149ms	remaining: 317ms
32:	learn: 30.1700399	total: 154ms	remaining: 312ms
33:	learn: 29.8537271	total: 158ms	remaining: 307ms
34:	learn: 29.6192540	total: 163ms	remaining: 302ms
35:	learn: 29.3276362	total: 167ms	remaining: 297ms
36:	learn: 28.9985179	total: 172ms	remaining: 292ms
37:	learn: 28.7046880	total: 176ms	remaining: 288ms
38:	learn: 28.4412677	total: 181ms	remaining: 283ms
39:	learn: 28.1277292	total: 190ms	remaining: 285ms
40:	learn: 27.9000750	total: 197ms	remaining: 284ms
41:	learn: 27.5433162	total: 206ms	remaining: 285ms
42:	learn: 27.2493285	total: 214ms	remaining: 284ms
43:	learn: 26.9576632	total: 216ms	remaining: 275ms
44:	learn: 26.6177110	total: 221ms	remaining: 271ms
45:	learn: 26.2812456	total: 226ms	remaining: 266ms
46:	learn: 26.0803859	total: 231ms	remaining: 261ms
47:	learn: 25.9543581	total: 236ms	remaining: 256ms
48:	learn: 25.7951582	total: 241ms	remaining: 251ms
49:	learn: 25.6548184	total: 246ms	remaining: 246ms
50:	learn: 25.4010843	total: 252ms	remaining: 242ms
51:	learn: 24.9773937	total: 257ms	remaining: 237ms
52:	learn: 24.8026156	total: 262ms	remaining: 233ms
53:	learn: 24.5568053	total: 267ms	remaining: 228ms
54:	learn: 24.2281839	total: 272ms	remaining: 223ms
55:	learn: 23.9202795	total: 277ms	remaining: 218ms
56:	learn: 23.7625591	total: 283ms	remaining: 213ms
57:	learn: 23.5429721	total: 287ms	remaining: 208ms
58:	learn: 23.3175893	total: 291ms	remaining: 203ms
59:	learn: 23.2035130	total: 296ms	remaining: 197ms
60:	learn: 23.0232450	total: 300ms	remaining: 192ms
61:	learn: 22.8384958	total: 304ms	remaining: 186ms
62:	learn: 22.6499902	total: 308ms	remaining: 181ms
63:	learn: 22.4577426	total: 312ms	remaining: 176ms
64:	learn: 22.3333158	total: 316ms	remaining: 170ms
65:	learn: 22.2064131	total: 320ms	remaining: 165ms
66:	learn: 22.1434971	total: 324ms	remaining: 160ms
67:	learn: 21.9596519	total: 329ms	remaining: 155ms
68:	learn: 21.8475576	total: 333ms	remaining: 150ms
69:	learn: 21.6954745	total: 337ms	remaining: 144ms
70:	learn: 21.5635976	total: 342ms	remaining: 139ms
71:	learn: 21.4588506	total: 346ms	remaining: 135ms
72:	learn: 21.3527268	total: 350ms	remaining: 130ms
73:	learn: 21.2661288	total: 355ms	remaining: 125ms
74:	learn: 21.1817333	total: 359ms	remaining: 120ms
75:	learn: 21.0527553	total: 364ms	remaining: 115ms
76:	learn: 20.9229021	total: 368ms	remaining: 110ms
77:	learn: 20.7563946	total: 372ms	remaining: 105ms
78:	learn: 20.6569831	total: 377ms	remaining: 100ms
79:	learn: 20.4982663	total: 382ms	remaining: 95.4ms
80:	learn: 20.3185460	total: 390ms	remaining: 91.4ms
81:	learn: 20.2096241	total: 397ms	remaining: 87.1ms
82:	learn: 20.1274891	total: 405ms	remaining: 82.9ms
83:	learn: 20.0740139	total: 410ms	remaining: 78.2ms
84:	learn: 19.9630699	total: 418ms	remaining: 73.7ms
85:	learn: 19.8753899	total: 423ms	remaining: 68.9ms
86:	learn: 19.6563612	total: 429ms	remaining: 64.1ms
87:	learn: 19.4680232	total: 434ms	remaining: 59.2ms
88:	learn: 19.3503431	total: 440ms	remaining: 54.4ms
89:	learn: 19.2221379	total: 445ms	remaining: 49.4ms
90:	learn: 19.0732542	total: 450ms	remaining: 44.5ms
91:	learn: 18.9825190	total: 456ms	remaining: 39.6ms
92:	learn: 18.8839009	total: 461ms	remaining: 34.7ms
93:	learn: 18.8012219	total: 467ms	remaining: 29.8ms
94:	learn: 18.7172713	total: 472ms	remaining: 24.8ms
95:	learn: 18.6201170	total: 476ms	remaining: 19.8ms
96:	learn: 18.5318611	total: 482ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 497ms	remaining: 10.1ms
98:	learn: 18.3289700	total: 502ms	remaining: 5.07ms
99:	learn: 18.2227333	total: 506ms	remaining: 0us
0:	learn: 46.3764524	total: 5.03ms	remaining: 498ms
1:	learn: 45.5561269	total: 9.42ms	remaining: 462ms
2:	learn: 44.8811245	total: 14ms	remaining: 452ms
3:	learn: 44.0788617	total: 18.4ms	remaining: 442ms
4:	learn: 43.3619790	total: 23.2ms	remaining: 442ms
5:	learn: 42.6912112	total: 27.5ms	remaining: 431ms
6:	learn: 42.2292118	total: 32.2ms	remaining: 428ms
7:	learn: 41.7725191	total: 40.4ms	remaining: 464ms
8:	learn: 41.1676614	total: 47.6ms	remaining: 481ms
9:	learn: 40.5771076	total: 55.4ms	remaining: 498ms
10:	learn: 39.8343757	total: 61.2ms	remaining: 495ms
11:	learn: 39.3761142	total: 67.8ms	remaining: 497ms
12:	learn: 38.5254692	total: 72.8ms	remaining: 487ms
13:	learn: 37.9629555	total: 78.9ms	remaining: 484ms
14:	learn: 37.4418438	total: 84.5ms	remaining: 479ms
15:	learn: 37.0507283	total: 90ms	remaining: 472ms
16:	learn: 36.6264217	total: 95.5ms	remaining: 466ms
17:	learn: 36.1114940	total: 101ms	remaining: 461ms
18:	learn: 35.7193862	total: 107ms	remaining: 455ms
19:	learn: 35.3301177	total: 112ms	remaining: 449ms
20:	learn: 35.0598280	total: 117ms	remaining: 441ms
21:	learn: 34.5469736	total: 122ms	remaining: 433ms
22:	learn: 34.2064215	total: 127ms	remaining: 425ms
23:	learn: 33.7280710	total: 132ms	remaining: 418ms
24:	learn: 33.3282940	total: 138ms	remaining: 413ms
25:	learn: 32.8478961	total: 142ms	remaining: 405ms
26:	learn: 32.5722164	total: 146ms	remaining: 396ms
27:	learn: 32.2457019	total: 150ms	remaining: 387ms
28:	learn: 31.9230495	total: 155ms	remaining: 379ms
29:	learn: 31.4311611	total: 159ms	remaining: 371ms
30:	learn: 30.9179052	total: 163ms	remaining: 363ms
31:	learn: 30.6201141	total: 167ms	remaining: 355ms
32:	learn: 30.3421106	total: 171ms	remaining: 347ms
33:	learn: 29.9885373	total: 175ms	remaining: 340ms
34:	learn: 29.7462780	total: 179ms	remaining: 333ms
35:	learn: 29.3607153	total: 183ms	remaining: 326ms
36:	learn: 29.1793078	total: 187ms	remaining: 319ms
37:	learn: 28.9276538	total: 191ms	remaining: 312ms
38:	learn: 28.6903934	total: 195ms	remaining: 306ms
39:	learn: 28.2095033	total: 199ms	remaining: 299ms
40:	learn: 27.7990608	total: 203ms	remaining: 292ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 211ms	remaining: 279ms
43:	learn: 26.9741707	total: 215ms	remaining: 274ms
44:	learn: 26.6606899	total: 219ms	remaining: 268ms
45:	learn: 26.4015833	total: 223ms	remaining: 262ms
46:	learn: 26.1828993	total: 227ms	remaining: 256ms
47:	learn: 26.0233709	total: 230ms	remaining: 249ms
48:	learn: 25.9300399	total: 234ms	remaining: 244ms
49:	learn: 25.5861489	total: 238ms	remaining: 238ms
50:	learn: 25.4322012	total: 243ms	remaining: 233ms
51:	learn: 25.1595644	total: 247ms	remaining: 228ms
52:	learn: 24.9955303	total: 252ms	remaining: 223ms
53:	learn: 24.7273966	total: 256ms	remaining: 218ms
54:	learn: 24.5747978	total: 261ms	remaining: 213ms
55:	learn: 24.3807977	total: 267ms	remaining: 210ms
56:	learn: 24.1689569	total: 274ms	remaining: 207ms
57:	learn: 23.9898221	total: 281ms	remaining: 204ms
58:	learn: 23.7566414	total: 289ms	remaining: 201ms
59:	learn: 23.6641165	total: 303ms	remaining: 202ms
60:	learn: 23.5658066	total: 309ms	remaining: 197ms
61:	learn: 23.4338851	total: 314ms	remaining: 193ms
62:	learn: 23.2408837	total: 319ms	remaining: 188ms
63:	learn: 23.0642038	total: 325ms	remaining: 183ms
64:	learn: 22.9032045	total: 330ms	remaining: 178ms
65:	learn: 22.7736138	total: 335ms	remaining: 173ms
66:	learn: 22.6836443	total: 340ms	remaining: 168ms
67:	learn: 22.5983654	total: 346ms	remaining: 163ms
68:	learn: 22.4419813	total: 351ms	remaining: 158ms
69:	learn: 22.2863339	total: 355ms	remaining: 152ms
70:	learn: 22.1792943	total: 361ms	remaining: 147ms
71:	learn: 22.1130574	total: 367ms	remaining: 143ms
72:	learn: 21.9858161	total: 371ms	remaining: 137ms
73:	learn: 21.8577784	total: 375ms	remaining: 132ms
74:	learn: 21.7845222	total: 379ms	remaining: 126ms
75:	learn: 21.6831390	total: 383ms	remaining: 121ms
76:	learn: 21.6292521	total: 387ms	remaining: 116ms
77:	learn: 21.5789330	total: 391ms	remaining: 110ms
78:	learn: 21.5420942	total: 395ms	remaining: 105ms
79:	learn: 21.4280939	total: 400ms	remaining: 100ms
80:	learn: 21.3641165	total: 404ms	remaining: 94.8ms
81:	learn: 21.2734814	total: 408ms	remaining: 89.5ms
82:	learn: 21.2220323	total: 412ms	remaining: 84.4ms
83:	learn: 21.0625792	total: 416ms	remaining: 79.3ms
84:	learn: 20.9488320	total: 420ms	remaining: 74.2ms
85:	learn: 20.8504255	total: 424ms	remaining: 69.1ms
86:	learn: 20.7848510	total: 428ms	remaining: 64ms
87:	learn: 20.7247442	total: 432ms	remaining: 59ms
88:	learn: 20.5698590	total: 436ms	remaining: 53.9ms
89:	learn: 20.4067620	total: 441ms	remaining: 49ms
90:	learn: 20.3062482	total: 445ms	remaining: 44ms
91:	learn: 20.2029696	total: 450ms	remaining: 39.1ms
92:	learn: 20.1384849	total: 454ms	remaining: 34.2ms
93:	learn: 20.0260709	total: 459ms	remaining: 29.3ms
94:	learn: 19.9122100	total: 463ms	remaining: 24.4ms
95:	learn: 19.8648487	total: 467ms	remaining: 19.5ms
96:	learn: 19.8207072	total: 472ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 476ms	remaining: 9.72ms
98:	learn: 19.7042438	total: 482ms	remaining: 4.86ms
99:	learn: 19.6546645	total: 489ms	remaining: 0us
0:	learn: 47.0239288	total: 5.32ms	remaining: 527ms
1:	learn: 46.2253829	total: 10.5ms	remaining: 513ms
2:	learn: 45.5580301	total: 15.7ms	remaining: 506ms
3:	learn: 44.7273237	total: 20.4ms	remaining: 490ms
4:	learn: 43.8867421	total: 24.9ms	remaining: 473ms
5:	learn: 43.3615911	total: 30.1ms	remaining: 472ms
6:	learn: 42.8548390	total: 35.2ms	remaining: 468ms
7:	learn: 42.1606758	total: 39.8ms	remaining: 457ms
8:	learn: 41.6625870	total: 43.9ms	remaining: 444ms
9:	learn: 40.9497092	total: 47.6ms	remaining: 428ms
10:	learn: 40.1886318	total: 51.7ms	remaining: 418ms
11:	learn: 39.7456423	total: 55.8ms	remaining: 409ms
12:	learn: 39.1171373	total: 59.9ms	remaining: 401ms
13:	learn: 38.5451069	total: 64ms	remaining: 393ms
14:	learn: 38.0155834	total: 67.9ms	remaining: 385ms
15:	learn: 37.5631354	total: 72.4ms	remaining: 380ms
16:	learn: 37.1030023	total: 76.7ms	remaining: 375ms
17:	learn: 36.4563029	total: 80.8ms	remaining: 368ms
18:	learn: 36.0160976	total: 84.6ms	remaining: 361ms
19:	learn: 35.5079827	total: 88.7ms	remaining: 355ms
20:	learn: 35.2111885	total: 93.2ms	remaining: 350ms
21:	learn: 34.9397465	total: 97.4ms	remaining: 345ms
22:	learn: 34.5270048	total: 101ms	remaining: 339ms
23:	learn: 34.0169260	total: 106ms	remaining: 335ms
24:	learn: 33.7454892	total: 111ms	remaining: 332ms
25:	learn: 33.2648157	total: 115ms	remaining: 328ms
26:	learn: 32.8899427	total: 120ms	remaining: 323ms
27:	learn: 32.6185050	total: 124ms	remaining: 318ms
28:	learn: 32.3528531	total: 128ms	remaining: 314ms
29:	learn: 32.0859923	total: 133ms	remaining: 310ms
30:	learn: 31.6511144	total: 137ms	remaining: 306ms
31:	learn: 31.2571765	total: 142ms	remaining: 303ms
32:	learn: 30.9770049	total: 150ms	remaining: 305ms
33:	learn: 30.6084872	total: 157ms	remaining: 305ms
34:	learn: 30.3448632	total: 165ms	remaining: 307ms
35:	learn: 30.0360942	total: 172ms	remaining: 306ms
36:	learn: 29.6648968	total: 177ms	remaining: 302ms
37:	learn: 29.3165114	total: 183ms	remaining: 299ms
38:	learn: 29.0829198	total: 188ms	remaining: 294ms
39:	learn: 28.7752064	total: 193ms	remaining: 289ms
40:	learn: 28.3622191	total: 198ms	remaining: 285ms
41:	learn: 28.1346631	total: 203ms	remaining: 281ms
42:	learn: 27.9585719	total: 208ms	remaining: 276ms
43:	learn: 27.6565566	total: 213ms	remaining: 271ms
44:	learn: 27.3616172	total: 218ms	remaining: 267ms
45:	learn: 27.0658637	total: 223ms	remaining: 262ms
46:	learn: 26.8660382	total: 228ms	remaining: 257ms
47:	learn: 26.6536078	total: 233ms	remaining: 252ms
48:	learn: 26.3524440	total: 238ms	remaining: 248ms
49:	learn: 26.1595277	total: 243ms	remaining: 243ms
50:	learn: 25.9273523	total: 247ms	remaining: 237ms
51:	learn: 25.7195580	total: 251ms	remaining: 232ms
52:	learn: 25.5730225	total: 255ms	remaining: 227ms
53:	learn: 25.3455276	total: 259ms	remaining: 221ms
54:	learn: 25.2289675	total: 263ms	remaining: 215ms
55:	learn: 25.0133024	total: 267ms	remaining: 210ms
56:	learn: 24.8406714	total: 271ms	remaining: 205ms
57:	learn: 24.6367857	total: 275ms	remaining: 199ms
58:	learn: 24.5338177	total: 279ms	remaining: 194ms
59:	learn: 24.3799964	total: 283ms	remaining: 188ms
60:	learn: 24.1447492	total: 287ms	remaining: 183ms
61:	learn: 23.9880495	total: 291ms	remaining: 179ms
62:	learn: 23.7140630	total: 295ms	remaining: 173ms
63:	learn: 23.5003791	total: 299ms	remaining: 168ms
64:	learn: 23.3207645	total: 304ms	remaining: 164ms
65:	learn: 23.1958356	total: 309ms	remaining: 159ms
66:	learn: 23.0471302	total: 313ms	remaining: 154ms
67:	learn: 22.8977183	total: 318ms	remaining: 149ms
68:	learn: 22.7187400	total: 322ms	remaining: 145ms
69:	learn: 22.6523405	total: 327ms	remaining: 140ms
70:	learn: 22.4767453	total: 331ms	remaining: 135ms
71:	learn: 22.3243677	total: 335ms	remaining: 130ms
72:	learn: 22.2133096	total: 340ms	remaining: 126ms
73:	learn: 22.1151713	total: 346ms	remaining: 122ms
74:	learn: 22.0296666	total: 353ms	remaining: 118ms
75:	learn: 21.9195980	total: 362ms	remaining: 114ms
76:	learn: 21.8401730	total: 370ms	remaining: 110ms
77:	learn: 21.8079797	total: 378ms	remaining: 106ms
78:	learn: 21.7274109	total: 383ms	remaining: 102ms
79:	learn: 21.6663032	total: 388ms	remaining: 97.1ms
80:	learn: 21.5633117	total: 394ms	remaining: 92.5ms
81:	learn: 21.4542467	total: 400ms	remaining: 87.7ms
82:	learn: 21.3177957	total: 405ms	remaining: 82.9ms
83:	learn: 21.1289167	total: 410ms	remaining: 78.1ms
84:	learn: 21.0297368	total: 416ms	remaining: 73.3ms
85:	learn: 20.9089564	total: 421ms	remaining: 68.5ms
86:	learn: 20.7653988	total: 426ms	remaining: 63.7ms
87:	learn: 20.6521894	total: 431ms	remaining: 58.8ms
88:	learn: 20.5193021	total: 436ms	remaining: 53.9ms
89:	learn: 20.4361620	total: 441ms	remaining: 49ms
90:	learn: 20.3546710	total: 447ms	remaining: 44.2ms
91:	learn: 20.2513296	total: 452ms	remaining: 39.3ms
92:	learn: 20.1605550	total: 456ms	remaining: 34.3ms
93:	learn: 20.0515942	total: 460ms	remaining: 29.4ms
94:	learn: 19.9800764	total: 465ms	remaining: 24.4ms
95:	learn: 19.8996532	total: 469ms	remaining: 19.5ms
96:	learn: 19.8450910	total: 473ms	remaining: 14.6ms
97:	learn: 19.7887346	total: 477ms	remaining: 9.73ms
98:	learn: 19.7230872	total: 481ms	remaining: 4.86ms
99:	learn: 19.6328825	total: 485ms	remaining: 0us
0:	learn: 27.5585353	total: 7.53ms	remaining: 746ms
1:	learn: 27.1656995	total: 15.2ms	remaining: 743ms
2:	learn: 26.8590175	total: 23.4ms	remaining: 757ms
3:	learn: 26.5818406	total: 28.9ms	remaining: 693ms
4:	learn: 26.1148663	total: 35.5ms	remaining: 674ms
5:	learn: 25.7690484	total: 41.2ms	remaining: 646ms
6:	learn: 25.3489206	total: 46.6ms	remaining: 620ms
7:	learn: 24.9542406	total: 52.1ms	remaining: 599ms
8:	learn: 24.6777517	total: 58.1ms	remaining: 587ms
9:	learn: 24.3242344	total: 63.9ms	remaining: 575ms
10:	learn: 24.0383073	total: 69.6ms	remaining: 564ms
11:	learn: 23.7383420	total: 75.7ms	remaining: 555ms
12:	learn: 23.3461670	total: 80.8ms	remaining: 541ms
13:	learn: 23.0928636	total: 85.9ms	remaining: 528ms
14:	learn: 22.8770414	total: 91.4ms	remaining: 518ms
15:	learn: 22.6323214	total: 97.2ms	remaining: 510ms
16:	learn: 22.3597072	total: 102ms	remaining: 498ms
17:	learn: 22.1079813	total: 106ms	remaining: 484ms
18:	learn: 21.8421199	total: 111ms	remaining: 472ms
19:	learn: 21.6576508	total: 115ms	remaining: 462ms
20:	learn: 21.4301268	total: 120ms	remaining: 453ms
21:	learn: 21.2287388	total: 125ms	remaining: 444ms
22:	learn: 21.0553872	total: 130ms	remaining: 434ms
23:	learn: 20.8977091	total: 134ms	remaining: 423ms
24:	learn: 20.6619051	total: 137ms	remaining: 412ms
25:	learn: 20.5040955	total: 141ms	remaining: 402ms
26:	learn: 20.3181195	total: 146ms	remaining: 394ms
27:	learn: 20.0869436	total: 150ms	remaining: 386ms
28:	learn: 19.9375985	total: 154ms	remaining: 377ms
29:	learn: 19.8247516	total: 158ms	remaining: 369ms
30:	learn: 19.6261697	total: 162ms	remaining: 361ms
31:	learn: 19.4547236	total: 166ms	remaining: 354ms
32:	learn: 19.3157092	total: 171ms	remaining: 347ms
33:	learn: 19.1561419	total: 175ms	remaining: 340ms
34:	learn: 19.0453620	total: 179ms	remaining: 333ms
35:	learn: 18.8738574	total: 183ms	remaining: 326ms
36:	learn: 18.7072907	total: 187ms	remaining: 319ms
37:	learn: 18.5877943	total: 191ms	remaining: 312ms
38:	learn: 18.4436380	total: 195ms	remaining: 306ms
39:	learn: 18.3463356	total: 200ms	remaining: 299ms
40:	learn: 18.2008059	total: 204ms	remaining: 293ms
41:	learn: 18.0582079	total: 208ms	remaining: 287ms
42:	learn: 17.8891982	total: 212ms	remaining: 281ms
43:	learn: 17.7332246	total: 216ms	remaining: 275ms
44:	learn: 17.6206421	total: 221ms	remaining: 270ms
45:	learn: 17.4982800	total: 225ms	remaining: 264ms
46:	learn: 17.3970150	total: 229ms	remaining: 259ms
47:	learn: 17.3058203	total: 234ms	remaining: 253ms
48:	learn: 17.1789256	total: 239ms	remaining: 248ms
49:	learn: 17.0916229	total: 243ms	remaining: 243ms
50:	learn: 16.9859820	total: 247ms	remaining: 238ms
51:	learn: 16.8995582	total: 252ms	remaining: 232ms
52:	learn: 16.8137014	total: 256ms	remaining: 227ms
53:	learn: 16.7021451	total: 264ms	remaining: 225ms
54:	learn: 16.5895582	total: 272ms	remaining: 222ms
55:	learn: 16.5015639	total: 281ms	remaining: 221ms
56:	learn: 16.4356637	total: 287ms	remaining: 217ms
57:	learn: 16.3514525	total: 294ms	remaining: 213ms
58:	learn: 16.2401369	total: 299ms	remaining: 208ms
59:	learn: 16.1293223	total: 304ms	remaining: 203ms
60:	learn: 16.0271167	total: 309ms	remaining: 197ms
61:	learn: 15.9126257	total: 314ms	remaining: 192ms
62:	learn: 15.8391096	total: 319ms	remaining: 187ms
63:	learn: 15.7441773	total: 324ms	remaining: 182ms
64:	learn: 15.6885195	total: 329ms	remaining: 177ms
65:	learn: 15.6052039	total: 334ms	remaining: 172ms
66:	learn: 15.5074202	total: 339ms	remaining: 167ms
67:	learn: 15.4054338	total: 345ms	remaining: 162ms
68:	learn: 15.2885714	total: 349ms	remaining: 157ms
69:	learn: 15.2157472	total: 355ms	remaining: 152ms
70:	learn: 15.1031554	total: 360ms	remaining: 147ms
71:	learn: 15.0237470	total: 364ms	remaining: 142ms
72:	learn: 14.9756825	total: 368ms	remaining: 136ms
73:	learn: 14.8840596	total: 372ms	remaining: 131ms
74:	learn: 14.8077061	total: 376ms	remaining: 125ms
75:	learn: 14.7444437	total: 381ms	remaining: 120ms
76:	learn: 14.6751720	total: 385ms	remaining: 115ms
77:	learn: 14.5830333	total: 389ms	remaining: 110ms
78:	learn: 14.5241206	total: 393ms	remaining: 105ms
79:	learn: 14.4892731	total: 397ms	remaining: 99.3ms
80:	learn: 14.4256605	total: 401ms	remaining: 94.1ms
81:	learn: 14.3666860	total: 406ms	remaining: 89.1ms
82:	learn: 14.2938372	total: 410ms	remaining: 84ms
83:	learn: 14.2161532	total: 415ms	remaining: 79ms
84:	learn: 14.1582910	total: 419ms	remaining: 73.9ms
85:	learn: 14.1029153	total: 424ms	remaining: 69ms
86:	learn: 14.0475835	total: 428ms	remaining: 63.9ms
87:	learn: 13.9892661	total: 432ms	remaining: 58.9ms
88:	learn: 13.9481628	total: 437ms	remaining: 54ms
89:	learn: 13.8483991	total: 441ms	remaining: 49ms
90:	learn: 13.7775614	total: 446ms	remaining: 44.1ms
91:	learn: 13.7304585	total: 450ms	remaining: 39.2ms
92:	learn: 13.6783381	total: 455ms	remaining: 34.3ms
93:	learn: 13.6356964	total: 464ms	remaining: 29.6ms
94:	learn: 13.5924371	total: 471ms	remaining: 24.8ms
95:	learn: 13.5400746	total: 479ms	remaining: 20ms
96:	learn: 13.4897333	total: 487ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 492ms	remaining: 10ms
98:	learn: 13.3856082	total: 497ms	remaining: 5.02ms
99:	learn: 13.3082371	total: 502ms	remaining: 0us
0:	learn: 43.0395283	total: 5.75ms	remaining: 569ms
1:	learn: 42.1130223	total: 11.3ms	remaining: 555ms
2:	learn: 41.1753409	total: 15.4ms	remaining: 499ms
3:	learn: 40.3637444	total: 19.4ms	remaining: 466ms
4:	learn: 39.6508088	total: 23.3ms	remaining: 443ms
5:	learn: 38.7217934	total: 27.6ms	remaining: 433ms
6:	learn: 37.8538055	total: 31.4ms	remaining: 417ms
7:	learn: 36.9793574	total: 35.3ms	remaining: 405ms
8:	learn: 36.3076984	total: 39.2ms	remaining: 396ms
9:	learn: 35.6673160	total: 43.1ms	remaining: 388ms
10:	learn: 34.8889800	total: 47.5ms	remaining: 385ms
11:	learn: 34.1675517	total: 51.2ms	remaining: 376ms
12:	learn: 33.6779564	total: 55.5ms	remaining: 371ms
13:	learn: 33.0710039	total: 59.7ms	remaining: 367ms
14:	learn: 32.4966674	total: 63.9ms	remaining: 362ms
15:	learn: 31.9492856	total: 67.8ms	remaining: 356ms
16:	learn: 31.5108129	total: 72ms	remaining: 351ms
17:	learn: 30.9804023	total: 76ms	remaining: 346ms
18:	learn: 30.4169089	total: 80.2ms	remaining: 342ms
19:	learn: 29.8930375	total: 84.3ms	remaining: 337ms
20:	learn: 29.3974421	total: 88.5ms	remaining: 333ms
21:	learn: 28.8792307	total: 92.6ms	remaining: 328ms
22:	learn: 28.3894474	total: 96.8ms	remaining: 324ms
23:	learn: 27.9921276	total: 102ms	remaining: 322ms
24:	learn: 27.6158887	total: 106ms	remaining: 318ms
25:	learn: 27.2866950	total: 111ms	remaining: 315ms
26:	learn: 26.8770708	total: 115ms	remaining: 312ms
27:	learn: 26.6233005	total: 120ms	remaining: 309ms
28:	learn: 26.2921934	total: 124ms	remaining: 305ms
29:	learn: 25.9156920	total: 129ms	remaining: 301ms
30:	learn: 25.5311106	total: 131ms	remaining: 291ms
31:	learn: 25.2178997	total: 139ms	remaining: 296ms
32:	learn: 24.8572196	total: 147ms	remaining: 298ms
33:	learn: 24.5849710	total: 155ms	remaining: 302ms
34:	learn: 24.2209190	total: 161ms	remaining: 299ms
35:	learn: 23.8708250	total: 168ms	remaining: 298ms
36:	learn: 23.5325279	total: 173ms	remaining: 294ms
37:	learn: 23.2116148	total: 178ms	remaining: 290ms
38:	learn: 22.9696787	total: 183ms	remaining: 286ms
39:	learn: 22.7936783	total: 189ms	remaining: 283ms
40:	learn: 22.6228847	total: 194ms	remaining: 279ms
41:	learn: 22.3691527	total: 199ms	remaining: 275ms
42:	learn: 22.1002173	total: 205ms	remaining: 271ms
43:	learn: 21.9157268	total: 209ms	remaining: 267ms
44:	learn: 21.7229102	total: 215ms	remaining: 262ms
45:	learn: 21.4642005	total: 220ms	remaining: 258ms
46:	learn: 21.3029442	total: 225ms	remaining: 253ms
47:	learn: 21.1469792	total: 229ms	remaining: 249ms
48:	learn: 20.9458235	total: 235ms	remaining: 244ms
49:	learn: 20.7335242	total: 240ms	remaining: 240ms
50:	learn: 20.5440269	total: 245ms	remaining: 235ms
51:	learn: 20.3661449	total: 249ms	remaining: 230ms
52:	learn: 20.2158134	total: 253ms	remaining: 225ms
53:	learn: 19.9934873	total: 257ms	remaining: 219ms
54:	learn: 19.7879739	total: 262ms	remaining: 214ms
55:	learn: 19.6630460	total: 266ms	remaining: 209ms
56:	learn: 19.5152729	total: 270ms	remaining: 204ms
57:	learn: 19.3581128	total: 275ms	remaining: 199ms
58:	learn: 19.2209303	total: 279ms	remaining: 194ms
59:	learn: 19.0965248	total: 284ms	remaining: 189ms
60:	learn: 19.0035954	total: 288ms	remaining: 184ms
61:	learn: 18.8554149	total: 292ms	remaining: 179ms
62:	learn: 18.7095427	total: 297ms	remaining: 175ms
63:	learn: 18.5751494	total: 302ms	remaining: 170ms
64:	learn: 18.4678251	total: 307ms	remaining: 165ms
65:	learn: 18.3500325	total: 313ms	remaining: 161ms
66:	learn: 18.2088983	total: 317ms	remaining: 156ms
67:	learn: 18.0737705	total: 322ms	remaining: 152ms
68:	learn: 17.9325058	total: 327ms	remaining: 147ms
69:	learn: 17.8003911	total: 333ms	remaining: 143ms
70:	learn: 17.7385366	total: 340ms	remaining: 139ms
71:	learn: 17.6106998	total: 348ms	remaining: 135ms
72:	learn: 17.4816270	total: 357ms	remaining: 132ms
73:	learn: 17.4025554	total: 372ms	remaining: 131ms
74:	learn: 17.2902108	total: 377ms	remaining: 126ms
75:	learn: 17.2158048	total: 382ms	remaining: 121ms
76:	learn: 17.1261053	total: 388ms	remaining: 116ms
77:	learn: 17.0308917	total: 393ms	remaining: 111ms
78:	learn: 16.9546705	total: 398ms	remaining: 106ms
79:	learn: 16.8319165	total: 403ms	remaining: 101ms
80:	learn: 16.7687017	total: 408ms	remaining: 95.8ms
81:	learn: 16.6972326	total: 415ms	remaining: 91ms
82:	learn: 16.6124580	total: 420ms	remaining: 86ms
83:	learn: 16.4999052	total: 426ms	remaining: 81.1ms
84:	learn: 16.4302484	total: 432ms	remaining: 76.2ms
85:	learn: 16.3201363	total: 437ms	remaining: 71.2ms
86:	learn: 16.2534314	total: 442ms	remaining: 66ms
87:	learn: 16.1720485	total: 446ms	remaining: 60.8ms
88:	learn: 16.0625751	total: 450ms	remaining: 55.7ms
89:	learn: 15.9135088	total: 455ms	remaining: 50.5ms
90:	learn: 15.8658863	total: 459ms	remaining: 45.4ms
91:	learn: 15.8066805	total: 464ms	remaining: 40.3ms
92:	learn: 15.7412103	total: 468ms	remaining: 35.2ms
93:	learn: 15.6542776	total: 472ms	remaining: 30.1ms
94:	learn: 15.5760334	total: 476ms	remaining: 25.1ms
95:	learn: 15.5434131	total: 481ms	remaining: 20ms
96:	learn: 15.4709561	total: 485ms	remaining: 15ms
97:	learn: 15.4449618	total: 489ms	remaining: 9.98ms
98:	learn: 15.3752761	total: 493ms	remaining: 4.98ms
99:	learn: 15.3106595	total: 498ms	remaining: 0us
0:	learn: 46.7142257	total: 6.98ms	remaining: 691ms
1:	learn: 45.7634153	total: 12.2ms	remaining: 598ms
2:	learn: 45.0054253	total: 17.5ms	remaining: 565ms
3:	learn: 44.2120432	total: 22.6ms	remaining: 542ms
4:	learn: 43.3960472	total: 27.7ms	remaining: 525ms
5:	learn: 42.8588120	total: 32.8ms	remaining: 514ms
6:	learn: 41.9533701	total: 38.3ms	remaining: 509ms
7:	learn: 41.2745030	total: 44.1ms	remaining: 507ms
8:	learn: 40.6797495	total: 48.9ms	remaining: 494ms
9:	learn: 39.9899571	total: 54.3ms	remaining: 488ms
10:	learn: 39.4682100	total: 58.9ms	remaining: 477ms
11:	learn: 39.0305595	total: 63.3ms	remaining: 465ms
12:	learn: 38.4200417	total: 68.8ms	remaining: 460ms
13:	learn: 37.8425194	total: 74.2ms	remaining: 456ms
14:	learn: 37.4203127	total: 79ms	remaining: 447ms
15:	learn: 36.9917688	total: 82.9ms	remaining: 435ms
16:	learn: 36.5544138	total: 87.3ms	remaining: 426ms
17:	learn: 36.0727019	total: 91.2ms	remaining: 416ms
18:	learn: 35.4835715	total: 95.1ms	remaining: 406ms
19:	learn: 34.9865654	total: 99.3ms	remaining: 397ms
20:	learn: 34.6063373	total: 103ms	remaining: 389ms
21:	learn: 34.0997289	total: 107ms	remaining: 381ms
22:	learn: 33.7313171	total: 112ms	remaining: 373ms
23:	learn: 33.3582000	total: 116ms	remaining: 366ms
24:	learn: 32.9432456	total: 119ms	remaining: 358ms
25:	learn: 32.5220888	total: 124ms	remaining: 352ms
26:	learn: 32.2172292	total: 128ms	remaining: 346ms
27:	learn: 31.8972904	total: 132ms	remaining: 340ms
28:	learn: 31.6405350	total: 136ms	remaining: 333ms
29:	learn: 31.4167702	total: 140ms	remaining: 328ms
30:	learn: 30.8541961	total: 142ms	remaining: 317ms
31:	learn: 30.5572111	total: 147ms	remaining: 313ms
32:	learn: 30.1700399	total: 152ms	remaining: 308ms
33:	learn: 29.8537271	total: 157ms	remaining: 304ms
34:	learn: 29.6192540	total: 161ms	remaining: 299ms
35:	learn: 29.3276362	total: 166ms	remaining: 295ms
36:	learn: 28.9985179	total: 170ms	remaining: 290ms
37:	learn: 28.7046880	total: 175ms	remaining: 285ms
38:	learn: 28.4412677	total: 179ms	remaining: 281ms
39:	learn: 28.1277292	total: 188ms	remaining: 281ms
40:	learn: 27.9000750	total: 195ms	remaining: 281ms
41:	learn: 27.5433162	total: 203ms	remaining: 281ms
42:	learn: 27.2493285	total: 210ms	remaining: 278ms
43:	learn: 26.9576632	total: 213ms	remaining: 271ms
44:	learn: 26.6177110	total: 218ms	remaining: 266ms
45:	learn: 26.2812456	total: 223ms	remaining: 262ms
46:	learn: 26.0803859	total: 229ms	remaining: 258ms
47:	learn: 25.9543581	total: 234ms	remaining: 253ms
48:	learn: 25.7951582	total: 239ms	remaining: 249ms
49:	learn: 25.6548184	total: 244ms	remaining: 244ms
50:	learn: 25.4010843	total: 249ms	remaining: 240ms
51:	learn: 24.9773937	total: 255ms	remaining: 235ms
52:	learn: 24.8026156	total: 260ms	remaining: 230ms
53:	learn: 24.5568053	total: 265ms	remaining: 226ms
54:	learn: 24.2281839	total: 270ms	remaining: 221ms
55:	learn: 23.9202795	total: 275ms	remaining: 216ms
56:	learn: 23.7625591	total: 280ms	remaining: 211ms
57:	learn: 23.5429721	total: 285ms	remaining: 207ms
58:	learn: 23.3175893	total: 289ms	remaining: 201ms
59:	learn: 23.2035130	total: 294ms	remaining: 196ms
60:	learn: 23.0232450	total: 313ms	remaining: 200ms
61:	learn: 22.8384958	total: 317ms	remaining: 194ms
62:	learn: 22.6499902	total: 321ms	remaining: 189ms
63:	learn: 22.4577426	total: 325ms	remaining: 183ms
64:	learn: 22.3333158	total: 330ms	remaining: 178ms
65:	learn: 22.2064131	total: 334ms	remaining: 172ms
66:	learn: 22.1434971	total: 338ms	remaining: 166ms
67:	learn: 21.9596519	total: 342ms	remaining: 161ms
68:	learn: 21.8475576	total: 347ms	remaining: 156ms
69:	learn: 21.6954745	total: 351ms	remaining: 151ms
70:	learn: 21.5635976	total: 356ms	remaining: 145ms
71:	learn: 21.4588506	total: 361ms	remaining: 140ms
72:	learn: 21.3527268	total: 365ms	remaining: 135ms
73:	learn: 21.2661288	total: 370ms	remaining: 130ms
74:	learn: 21.1817333	total: 374ms	remaining: 125ms
75:	learn: 21.0527553	total: 379ms	remaining: 120ms
76:	learn: 20.9229021	total: 388ms	remaining: 116ms
77:	learn: 20.7563946	total: 395ms	remaining: 112ms
78:	learn: 20.6569831	total: 404ms	remaining: 107ms
79:	learn: 20.4982663	total: 411ms	remaining: 103ms
80:	learn: 20.3185460	total: 416ms	remaining: 97.6ms
81:	learn: 20.2096241	total: 421ms	remaining: 92.5ms
82:	learn: 20.1274891	total: 427ms	remaining: 87.4ms
83:	learn: 20.0740139	total: 432ms	remaining: 82.2ms
84:	learn: 19.9630699	total: 437ms	remaining: 77.1ms
85:	learn: 19.8753899	total: 442ms	remaining: 71.9ms
86:	learn: 19.6563612	total: 447ms	remaining: 66.8ms
87:	learn: 19.4680232	total: 452ms	remaining: 61.6ms
88:	learn: 19.3503431	total: 457ms	remaining: 56.5ms
89:	learn: 19.2221379	total: 462ms	remaining: 51.4ms
90:	learn: 19.0732542	total: 468ms	remaining: 46.3ms
91:	learn: 18.9825190	total: 473ms	remaining: 41.1ms
92:	learn: 18.8839009	total: 478ms	remaining: 36ms
93:	learn: 18.8012219	total: 484ms	remaining: 30.9ms
94:	learn: 18.7172713	total: 489ms	remaining: 25.7ms
95:	learn: 18.6201170	total: 493ms	remaining: 20.5ms
96:	learn: 18.5318611	total: 497ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 501ms	remaining: 10.2ms
98:	learn: 18.3289700	total: 505ms	remaining: 5.1ms
99:	learn: 18.2227333	total: 509ms	remaining: 0us
0:	learn: 46.3764524	total: 4.95ms	remaining: 490ms
1:	learn: 45.5561269	total: 9.37ms	remaining: 459ms
2:	learn: 44.8811245	total: 13.5ms	remaining: 438ms
3:	learn: 44.0788617	total: 18ms	remaining: 431ms
4:	learn: 43.3619790	total: 23.2ms	remaining: 442ms
5:	learn: 42.6912112	total: 31.1ms	remaining: 487ms
6:	learn: 42.2292118	total: 38.5ms	remaining: 511ms
7:	learn: 41.7725191	total: 48ms	remaining: 552ms
8:	learn: 41.1676614	total: 53.6ms	remaining: 542ms
9:	learn: 40.5771076	total: 60.7ms	remaining: 547ms
10:	learn: 39.8343757	total: 65.9ms	remaining: 533ms
11:	learn: 39.3761142	total: 71.4ms	remaining: 523ms
12:	learn: 38.5254692	total: 76.7ms	remaining: 513ms
13:	learn: 37.9629555	total: 82ms	remaining: 504ms
14:	learn: 37.4418438	total: 87ms	remaining: 493ms
15:	learn: 37.0507283	total: 92.2ms	remaining: 484ms
16:	learn: 36.6264217	total: 97.4ms	remaining: 475ms
17:	learn: 36.1114940	total: 103ms	remaining: 467ms
18:	learn: 35.7193862	total: 108ms	remaining: 460ms
19:	learn: 35.3301177	total: 113ms	remaining: 453ms
20:	learn: 35.0598280	total: 118ms	remaining: 442ms
21:	learn: 34.5469736	total: 123ms	remaining: 435ms
22:	learn: 34.2064215	total: 129ms	remaining: 430ms
23:	learn: 33.7280710	total: 134ms	remaining: 424ms
24:	learn: 33.3282940	total: 138ms	remaining: 414ms
25:	learn: 32.8478961	total: 143ms	remaining: 406ms
26:	learn: 32.5722164	total: 147ms	remaining: 399ms
27:	learn: 32.2457019	total: 152ms	remaining: 390ms
28:	learn: 31.9230495	total: 156ms	remaining: 382ms
29:	learn: 31.4311611	total: 161ms	remaining: 375ms
30:	learn: 30.9179052	total: 166ms	remaining: 369ms
31:	learn: 30.6201141	total: 170ms	remaining: 361ms
32:	learn: 30.3421106	total: 174ms	remaining: 353ms
33:	learn: 29.9885373	total: 179ms	remaining: 347ms
34:	learn: 29.7462780	total: 183ms	remaining: 341ms
35:	learn: 29.3607153	total: 188ms	remaining: 334ms
36:	learn: 29.1793078	total: 192ms	remaining: 327ms
37:	learn: 28.9276538	total: 196ms	remaining: 320ms
38:	learn: 28.6903934	total: 201ms	remaining: 314ms
39:	learn: 28.2095033	total: 206ms	remaining: 309ms
40:	learn: 27.7990608	total: 211ms	remaining: 303ms
41:	learn: 27.5406632	total: 215ms	remaining: 297ms
42:	learn: 27.2575376	total: 220ms	remaining: 292ms
43:	learn: 26.9741707	total: 225ms	remaining: 286ms
44:	learn: 26.6606899	total: 230ms	remaining: 281ms
45:	learn: 26.4015833	total: 235ms	remaining: 276ms
46:	learn: 26.1828993	total: 239ms	remaining: 270ms
47:	learn: 26.0233709	total: 242ms	remaining: 262ms
48:	learn: 25.9300399	total: 247ms	remaining: 257ms
49:	learn: 25.5861489	total: 252ms	remaining: 252ms
50:	learn: 25.4322012	total: 259ms	remaining: 249ms
51:	learn: 25.1595644	total: 266ms	remaining: 246ms
52:	learn: 24.9955303	total: 273ms	remaining: 242ms
53:	learn: 24.7273966	total: 281ms	remaining: 239ms
54:	learn: 24.5747978	total: 290ms	remaining: 237ms
55:	learn: 24.3807977	total: 296ms	remaining: 232ms
56:	learn: 24.1689569	total: 301ms	remaining: 227ms
57:	learn: 23.9898221	total: 307ms	remaining: 222ms
58:	learn: 23.7566414	total: 312ms	remaining: 217ms
59:	learn: 23.6641165	total: 317ms	remaining: 211ms
60:	learn: 23.5658066	total: 322ms	remaining: 206ms
61:	learn: 23.4338851	total: 328ms	remaining: 201ms
62:	learn: 23.2408837	total: 333ms	remaining: 195ms
63:	learn: 23.0642038	total: 338ms	remaining: 190ms
64:	learn: 22.9032045	total: 343ms	remaining: 185ms
65:	learn: 22.7736138	total: 348ms	remaining: 179ms
66:	learn: 22.6836443	total: 352ms	remaining: 173ms
67:	learn: 22.5983654	total: 358ms	remaining: 168ms
68:	learn: 22.4419813	total: 363ms	remaining: 163ms
69:	learn: 22.2863339	total: 367ms	remaining: 157ms
70:	learn: 22.1792943	total: 372ms	remaining: 152ms
71:	learn: 22.1130574	total: 375ms	remaining: 146ms
72:	learn: 21.9858161	total: 379ms	remaining: 140ms
73:	learn: 21.8577784	total: 384ms	remaining: 135ms
74:	learn: 21.7845222	total: 388ms	remaining: 129ms
75:	learn: 21.6831390	total: 392ms	remaining: 124ms
76:	learn: 21.6292521	total: 395ms	remaining: 118ms
77:	learn: 21.5789330	total: 400ms	remaining: 113ms
78:	learn: 21.5420942	total: 404ms	remaining: 107ms
79:	learn: 21.4280939	total: 408ms	remaining: 102ms
80:	learn: 21.3641165	total: 412ms	remaining: 96.6ms
81:	learn: 21.2734814	total: 416ms	remaining: 91.3ms
82:	learn: 21.2220323	total: 421ms	remaining: 86.1ms
83:	learn: 21.0625792	total: 425ms	remaining: 81ms
84:	learn: 20.9488320	total: 430ms	remaining: 75.8ms
85:	learn: 20.8504255	total: 434ms	remaining: 70.7ms
86:	learn: 20.7848510	total: 439ms	remaining: 65.5ms
87:	learn: 20.7247442	total: 443ms	remaining: 60.4ms
88:	learn: 20.5698590	total: 448ms	remaining: 55.3ms
89:	learn: 20.4067620	total: 452ms	remaining: 50.2ms
90:	learn: 20.3062482	total: 460ms	remaining: 45.5ms
91:	learn: 20.2029696	total: 467ms	remaining: 40.6ms
92:	learn: 20.1384849	total: 476ms	remaining: 35.8ms
93:	learn: 20.0260709	total: 482ms	remaining: 30.7ms
94:	learn: 19.9122100	total: 489ms	remaining: 25.7ms
95:	learn: 19.8648487	total: 495ms	remaining: 20.6ms
96:	learn: 19.8207072	total: 499ms	remaining: 15.4ms
97:	learn: 19.7261189	total: 504ms	remaining: 10.3ms
98:	learn: 19.7042438	total: 509ms	remaining: 5.14ms
99:	learn: 19.6546645	total: 514ms	remaining: 0us
0:	learn: 47.0239288	total: 4.36ms	remaining: 431ms
1:	learn: 46.2253829	total: 8.2ms	remaining: 402ms
2:	learn: 45.5580301	total: 12ms	remaining: 386ms
3:	learn: 44.7273237	total: 15.9ms	remaining: 381ms
4:	learn: 43.8867421	total: 19.9ms	remaining: 379ms
5:	learn: 43.3615911	total: 24ms	remaining: 376ms
6:	learn: 42.8548390	total: 27.8ms	remaining: 369ms
7:	learn: 42.1606758	total: 32ms	remaining: 368ms
8:	learn: 41.6625870	total: 35.7ms	remaining: 361ms
9:	learn: 40.9497092	total: 39.6ms	remaining: 357ms
10:	learn: 40.1886318	total: 43.7ms	remaining: 354ms
11:	learn: 39.7456423	total: 48ms	remaining: 352ms
12:	learn: 39.1171373	total: 52ms	remaining: 348ms
13:	learn: 38.5451069	total: 56ms	remaining: 344ms
14:	learn: 38.0155834	total: 60.4ms	remaining: 342ms
15:	learn: 37.5631354	total: 64.9ms	remaining: 341ms
16:	learn: 37.1030023	total: 69.7ms	remaining: 340ms
17:	learn: 36.4563029	total: 73.6ms	remaining: 336ms
18:	learn: 36.0160976	total: 78.3ms	remaining: 334ms
19:	learn: 35.5079827	total: 82.6ms	remaining: 330ms
20:	learn: 35.2111885	total: 86.7ms	remaining: 326ms
21:	learn: 34.9397465	total: 91.3ms	remaining: 324ms
22:	learn: 34.5270048	total: 95.9ms	remaining: 321ms
23:	learn: 34.0169260	total: 105ms	remaining: 332ms
24:	learn: 33.7454892	total: 112ms	remaining: 336ms
25:	learn: 33.2648157	total: 121ms	remaining: 344ms
26:	learn: 32.8899427	total: 127ms	remaining: 344ms
27:	learn: 32.6185050	total: 133ms	remaining: 342ms
28:	learn: 32.3528531	total: 138ms	remaining: 338ms
29:	learn: 32.0859923	total: 143ms	remaining: 334ms
30:	learn: 31.6511144	total: 148ms	remaining: 330ms
31:	learn: 31.2571765	total: 154ms	remaining: 326ms
32:	learn: 30.9770049	total: 159ms	remaining: 322ms
33:	learn: 30.6084872	total: 164ms	remaining: 318ms
34:	learn: 30.3448632	total: 169ms	remaining: 314ms
35:	learn: 30.0360942	total: 174ms	remaining: 310ms
36:	learn: 29.6648968	total: 179ms	remaining: 305ms
37:	learn: 29.3165114	total: 184ms	remaining: 300ms
38:	learn: 29.0829198	total: 189ms	remaining: 296ms
39:	learn: 28.7752064	total: 194ms	remaining: 291ms
40:	learn: 28.3622191	total: 199ms	remaining: 287ms
41:	learn: 28.1346631	total: 203ms	remaining: 281ms
42:	learn: 27.9585719	total: 207ms	remaining: 275ms
43:	learn: 27.6565566	total: 212ms	remaining: 269ms
44:	learn: 27.3616172	total: 216ms	remaining: 264ms
45:	learn: 27.0658637	total: 220ms	remaining: 258ms
46:	learn: 26.8660382	total: 223ms	remaining: 252ms
47:	learn: 26.6536078	total: 227ms	remaining: 246ms
48:	learn: 26.3524440	total: 231ms	remaining: 241ms
49:	learn: 26.1595277	total: 235ms	remaining: 235ms
50:	learn: 25.9273523	total: 239ms	remaining: 230ms
51:	learn: 25.7195580	total: 243ms	remaining: 225ms
52:	learn: 25.5730225	total: 247ms	remaining: 219ms
53:	learn: 25.3455276	total: 251ms	remaining: 214ms
54:	learn: 25.2289675	total: 255ms	remaining: 208ms
55:	learn: 25.0133024	total: 259ms	remaining: 204ms
56:	learn: 24.8406714	total: 263ms	remaining: 198ms
57:	learn: 24.6367857	total: 267ms	remaining: 194ms
58:	learn: 24.5338177	total: 271ms	remaining: 189ms
59:	learn: 24.3799964	total: 276ms	remaining: 184ms
60:	learn: 24.1447492	total: 280ms	remaining: 179ms
61:	learn: 23.9880495	total: 285ms	remaining: 175ms
62:	learn: 23.7140630	total: 289ms	remaining: 170ms
63:	learn: 23.5003791	total: 294ms	remaining: 165ms
64:	learn: 23.3207645	total: 299ms	remaining: 161ms
65:	learn: 23.1958356	total: 303ms	remaining: 156ms
66:	learn: 23.0471302	total: 308ms	remaining: 152ms
67:	learn: 22.8977183	total: 317ms	remaining: 149ms
68:	learn: 22.7187400	total: 325ms	remaining: 146ms
69:	learn: 22.6523405	total: 332ms	remaining: 142ms
70:	learn: 22.4767453	total: 340ms	remaining: 139ms
71:	learn: 22.3243677	total: 345ms	remaining: 134ms
72:	learn: 22.2133096	total: 349ms	remaining: 129ms
73:	learn: 22.1151713	total: 354ms	remaining: 124ms
74:	learn: 22.0296666	total: 359ms	remaining: 120ms
75:	learn: 21.9195980	total: 364ms	remaining: 115ms
76:	learn: 21.8401730	total: 369ms	remaining: 110ms
77:	learn: 21.8079797	total: 375ms	remaining: 106ms
78:	learn: 21.7274109	total: 379ms	remaining: 101ms
79:	learn: 21.6663032	total: 384ms	remaining: 96.1ms
80:	learn: 21.5633117	total: 389ms	remaining: 91.4ms
81:	learn: 21.4542467	total: 394ms	remaining: 86.5ms
82:	learn: 21.3177957	total: 399ms	remaining: 81.7ms
83:	learn: 21.1289167	total: 404ms	remaining: 76.9ms
84:	learn: 21.0297368	total: 409ms	remaining: 72.3ms
85:	learn: 20.9089564	total: 415ms	remaining: 67.5ms
86:	learn: 20.7653988	total: 419ms	remaining: 62.7ms
87:	learn: 20.6521894	total: 424ms	remaining: 57.8ms
88:	learn: 20.5193021	total: 428ms	remaining: 52.9ms
89:	learn: 20.4361620	total: 432ms	remaining: 47.9ms
90:	learn: 20.3546710	total: 435ms	remaining: 43.1ms
91:	learn: 20.2513296	total: 439ms	remaining: 38.2ms
92:	learn: 20.1605550	total: 443ms	remaining: 33.4ms
93:	learn: 20.0515942	total: 448ms	remaining: 28.6ms
94:	learn: 19.9800764	total: 452ms	remaining: 23.8ms
95:	learn: 19.8996532	total: 457ms	remaining: 19ms
96:	learn: 19.8450910	total: 461ms	remaining: 14.3ms
97:	learn: 19.7887346	total: 465ms	remaining: 9.5ms
98:	learn: 19.7230872	total: 469ms	remaining: 4.74ms
99:	learn: 19.6328825	total: 473ms	remaining: 0us
0:	learn: 27.5585353	total: 8.1ms	remaining: 802ms
1:	learn: 27.1656995	total: 13ms	remaining: 638ms
2:	learn: 26.8590175	total: 17.9ms	remaining: 579ms
3:	learn: 26.5818406	total: 23.1ms	remaining: 554ms
4:	learn: 26.1148663	total: 28.1ms	remaining: 534ms
5:	learn: 25.7690484	total: 32.9ms	remaining: 515ms
6:	learn: 25.3489206	total: 38.1ms	remaining: 506ms
7:	learn: 24.9542406	total: 43.1ms	remaining: 496ms
8:	learn: 24.6777517	total: 48.3ms	remaining: 488ms
9:	learn: 24.3242344	total: 53.6ms	remaining: 482ms
10:	learn: 24.0383073	total: 58.8ms	remaining: 476ms
11:	learn: 23.7383420	total: 63.5ms	remaining: 466ms
12:	learn: 23.3461670	total: 68.2ms	remaining: 456ms
13:	learn: 23.0928636	total: 73.5ms	remaining: 451ms
14:	learn: 22.8770414	total: 78.7ms	remaining: 446ms
15:	learn: 22.6323214	total: 83ms	remaining: 436ms
16:	learn: 22.3597072	total: 87.5ms	remaining: 427ms
17:	learn: 22.1079813	total: 91.8ms	remaining: 418ms
18:	learn: 21.8421199	total: 95.9ms	remaining: 409ms
19:	learn: 21.6576508	total: 100ms	remaining: 400ms
20:	learn: 21.4301268	total: 104ms	remaining: 393ms
21:	learn: 21.2287388	total: 109ms	remaining: 386ms
22:	learn: 21.0553872	total: 113ms	remaining: 379ms
23:	learn: 20.8977091	total: 118ms	remaining: 373ms
24:	learn: 20.6619051	total: 122ms	remaining: 366ms
25:	learn: 20.5040955	total: 127ms	remaining: 361ms
26:	learn: 20.3181195	total: 132ms	remaining: 356ms
27:	learn: 20.0869436	total: 136ms	remaining: 350ms
28:	learn: 19.9375985	total: 141ms	remaining: 344ms
29:	learn: 19.8247516	total: 145ms	remaining: 339ms
30:	learn: 19.6261697	total: 150ms	remaining: 334ms
31:	learn: 19.4547236	total: 155ms	remaining: 328ms
32:	learn: 19.3157092	total: 159ms	remaining: 323ms
33:	learn: 19.1561419	total: 164ms	remaining: 318ms
34:	learn: 19.0453620	total: 169ms	remaining: 314ms
35:	learn: 18.8738574	total: 174ms	remaining: 309ms
36:	learn: 18.7072907	total: 179ms	remaining: 304ms
37:	learn: 18.5877943	total: 186ms	remaining: 304ms
38:	learn: 18.4436380	total: 195ms	remaining: 305ms
39:	learn: 18.3463356	total: 203ms	remaining: 304ms
40:	learn: 18.2008059	total: 208ms	remaining: 300ms
41:	learn: 18.0582079	total: 217ms	remaining: 299ms
42:	learn: 17.8891982	total: 222ms	remaining: 295ms
43:	learn: 17.7332246	total: 227ms	remaining: 289ms
44:	learn: 17.6206421	total: 232ms	remaining: 284ms
45:	learn: 17.4982800	total: 237ms	remaining: 279ms
46:	learn: 17.3970150	total: 242ms	remaining: 273ms
47:	learn: 17.3058203	total: 248ms	remaining: 268ms
48:	learn: 17.1789256	total: 253ms	remaining: 263ms
49:	learn: 17.0916229	total: 258ms	remaining: 258ms
50:	learn: 16.9859820	total: 263ms	remaining: 253ms
51:	learn: 16.8995582	total: 268ms	remaining: 247ms
52:	learn: 16.8137014	total: 273ms	remaining: 242ms
53:	learn: 16.7021451	total: 277ms	remaining: 236ms
54:	learn: 16.5895582	total: 282ms	remaining: 231ms
55:	learn: 16.5015639	total: 287ms	remaining: 226ms
56:	learn: 16.4356637	total: 293ms	remaining: 221ms
57:	learn: 16.3514525	total: 298ms	remaining: 216ms
58:	learn: 16.2401369	total: 302ms	remaining: 210ms
59:	learn: 16.1293223	total: 306ms	remaining: 204ms
60:	learn: 16.0271167	total: 310ms	remaining: 198ms
61:	learn: 15.9126257	total: 314ms	remaining: 193ms
62:	learn: 15.8391096	total: 319ms	remaining: 187ms
63:	learn: 15.7441773	total: 323ms	remaining: 181ms
64:	learn: 15.6885195	total: 327ms	remaining: 176ms
65:	learn: 15.6052039	total: 331ms	remaining: 170ms
66:	learn: 15.5074202	total: 335ms	remaining: 165ms
67:	learn: 15.4054338	total: 340ms	remaining: 160ms
68:	learn: 15.2885714	total: 344ms	remaining: 155ms
69:	learn: 15.2157472	total: 348ms	remaining: 149ms
70:	learn: 15.1031554	total: 353ms	remaining: 144ms
71:	learn: 15.0237470	total: 358ms	remaining: 139ms
72:	learn: 14.9756825	total: 362ms	remaining: 134ms
73:	learn: 14.8840596	total: 367ms	remaining: 129ms
74:	learn: 14.8077061	total: 375ms	remaining: 125ms
75:	learn: 14.7444437	total: 383ms	remaining: 121ms
76:	learn: 14.6751720	total: 391ms	remaining: 117ms
77:	learn: 14.5830333	total: 397ms	remaining: 112ms
78:	learn: 14.5241206	total: 403ms	remaining: 107ms
79:	learn: 14.4892731	total: 409ms	remaining: 102ms
80:	learn: 14.4256605	total: 414ms	remaining: 97.1ms
81:	learn: 14.3666860	total: 419ms	remaining: 92ms
82:	learn: 14.2938372	total: 424ms	remaining: 86.9ms
83:	learn: 14.2161532	total: 430ms	remaining: 81.8ms
84:	learn: 14.1582910	total: 435ms	remaining: 76.8ms
85:	learn: 14.1029153	total: 441ms	remaining: 71.7ms
86:	learn: 14.0475835	total: 446ms	remaining: 66.6ms
87:	learn: 13.9892661	total: 451ms	remaining: 61.5ms
88:	learn: 13.9481628	total: 456ms	remaining: 56.4ms
89:	learn: 13.8483991	total: 461ms	remaining: 51.2ms
90:	learn: 13.7775614	total: 465ms	remaining: 46ms
91:	learn: 13.7304585	total: 470ms	remaining: 40.9ms
92:	learn: 13.6783381	total: 475ms	remaining: 35.8ms
93:	learn: 13.6356964	total: 480ms	remaining: 30.6ms
94:	learn: 13.5924371	total: 483ms	remaining: 25.4ms
95:	learn: 13.5400746	total: 488ms	remaining: 20.3ms
96:	learn: 13.4897333	total: 492ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 496ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 500ms	remaining: 5.05ms
99:	learn: 13.3082371	total: 504ms	remaining: 0us
0:	learn: 43.0395283	total: 4.54ms	remaining: 450ms
1:	learn: 42.1130223	total: 8.57ms	remaining: 420ms
2:	learn: 41.1753409	total: 13.3ms	remaining: 429ms
3:	learn: 40.3637444	total: 17.8ms	remaining: 428ms
4:	learn: 39.6508088	total: 22.1ms	remaining: 420ms
5:	learn: 38.7217934	total: 26.6ms	remaining: 416ms
6:	learn: 37.8538055	total: 31.1ms	remaining: 413ms
7:	learn: 36.9793574	total: 35.4ms	remaining: 407ms
8:	learn: 36.3076984	total: 40ms	remaining: 404ms
9:	learn: 35.6673160	total: 44.6ms	remaining: 401ms
10:	learn: 34.8889800	total: 52.7ms	remaining: 427ms
11:	learn: 34.1675517	total: 60ms	remaining: 440ms
12:	learn: 33.6779564	total: 67.2ms	remaining: 450ms
13:	learn: 33.0710039	total: 73.2ms	remaining: 450ms
14:	learn: 32.4966674	total: 80.4ms	remaining: 456ms
15:	learn: 31.9492856	total: 85.4ms	remaining: 449ms
16:	learn: 31.5108129	total: 90.4ms	remaining: 442ms
17:	learn: 30.9804023	total: 96ms	remaining: 437ms
18:	learn: 30.4169089	total: 101ms	remaining: 431ms
19:	learn: 29.8930375	total: 106ms	remaining: 424ms
20:	learn: 29.3974421	total: 111ms	remaining: 418ms
21:	learn: 28.8792307	total: 116ms	remaining: 412ms
22:	learn: 28.3894474	total: 121ms	remaining: 407ms
23:	learn: 27.9921276	total: 126ms	remaining: 400ms
24:	learn: 27.6158887	total: 131ms	remaining: 393ms
25:	learn: 27.2866950	total: 136ms	remaining: 388ms
26:	learn: 26.8770708	total: 141ms	remaining: 381ms
27:	learn: 26.6233005	total: 147ms	remaining: 377ms
28:	learn: 26.2921934	total: 152ms	remaining: 372ms
29:	learn: 25.9156920	total: 156ms	remaining: 365ms
30:	learn: 25.5311106	total: 158ms	remaining: 352ms
31:	learn: 25.2178997	total: 162ms	remaining: 344ms
32:	learn: 24.8572196	total: 166ms	remaining: 337ms
33:	learn: 24.5849710	total: 170ms	remaining: 330ms
34:	learn: 24.2209190	total: 174ms	remaining: 324ms
35:	learn: 23.8708250	total: 179ms	remaining: 317ms
36:	learn: 23.5325279	total: 183ms	remaining: 311ms
37:	learn: 23.2116148	total: 187ms	remaining: 304ms
38:	learn: 22.9696787	total: 191ms	remaining: 298ms
39:	learn: 22.7936783	total: 195ms	remaining: 292ms
40:	learn: 22.6228847	total: 199ms	remaining: 287ms
41:	learn: 22.3691527	total: 203ms	remaining: 281ms
42:	learn: 22.1002173	total: 208ms	remaining: 275ms
43:	learn: 21.9157268	total: 212ms	remaining: 270ms
44:	learn: 21.7229102	total: 216ms	remaining: 264ms
45:	learn: 21.4642005	total: 220ms	remaining: 258ms
46:	learn: 21.3029442	total: 225ms	remaining: 253ms
47:	learn: 21.1469792	total: 229ms	remaining: 248ms
48:	learn: 20.9458235	total: 233ms	remaining: 243ms
49:	learn: 20.7335242	total: 238ms	remaining: 238ms
50:	learn: 20.5440269	total: 242ms	remaining: 233ms
51:	learn: 20.3661449	total: 247ms	remaining: 228ms
52:	learn: 20.2158134	total: 251ms	remaining: 223ms
53:	learn: 19.9934873	total: 255ms	remaining: 217ms
54:	learn: 19.7879739	total: 261ms	remaining: 214ms
55:	learn: 19.6630460	total: 269ms	remaining: 211ms
56:	learn: 19.5152729	total: 290ms	remaining: 218ms
57:	learn: 19.3581128	total: 295ms	remaining: 214ms
58:	learn: 19.2209303	total: 301ms	remaining: 209ms
59:	learn: 19.0965248	total: 307ms	remaining: 204ms
60:	learn: 19.0035954	total: 312ms	remaining: 200ms
61:	learn: 18.8554149	total: 318ms	remaining: 195ms
62:	learn: 18.7095427	total: 323ms	remaining: 190ms
63:	learn: 18.5751494	total: 328ms	remaining: 185ms
64:	learn: 18.4678251	total: 334ms	remaining: 180ms
65:	learn: 18.3500325	total: 339ms	remaining: 174ms
66:	learn: 18.2088983	total: 344ms	remaining: 169ms
67:	learn: 18.0737705	total: 348ms	remaining: 164ms
68:	learn: 17.9325058	total: 353ms	remaining: 159ms
69:	learn: 17.8003911	total: 358ms	remaining: 153ms
70:	learn: 17.7385366	total: 363ms	remaining: 148ms
71:	learn: 17.6106998	total: 368ms	remaining: 143ms
72:	learn: 17.4816270	total: 374ms	remaining: 138ms
73:	learn: 17.4025554	total: 380ms	remaining: 133ms
74:	learn: 17.2902108	total: 384ms	remaining: 128ms
75:	learn: 17.2158048	total: 389ms	remaining: 123ms
76:	learn: 17.1261053	total: 393ms	remaining: 118ms
77:	learn: 17.0308917	total: 398ms	remaining: 112ms
78:	learn: 16.9546705	total: 403ms	remaining: 107ms
79:	learn: 16.8319165	total: 407ms	remaining: 102ms
80:	learn: 16.7687017	total: 412ms	remaining: 96.6ms
81:	learn: 16.6972326	total: 416ms	remaining: 91.4ms
82:	learn: 16.6124580	total: 421ms	remaining: 86.2ms
83:	learn: 16.4999052	total: 426ms	remaining: 81.1ms
84:	learn: 16.4302484	total: 430ms	remaining: 75.9ms
85:	learn: 16.3201363	total: 435ms	remaining: 70.8ms
86:	learn: 16.2534314	total: 440ms	remaining: 65.7ms
87:	learn: 16.1720485	total: 445ms	remaining: 60.6ms
88:	learn: 16.0625751	total: 449ms	remaining: 55.5ms
89:	learn: 15.9135088	total: 454ms	remaining: 50.5ms
90:	learn: 15.8658863	total: 459ms	remaining: 45.4ms
91:	learn: 15.8066805	total: 468ms	remaining: 40.7ms
92:	learn: 15.7412103	total: 476ms	remaining: 35.8ms
93:	learn: 15.6542776	total: 487ms	remaining: 31.1ms
94:	learn: 15.5760334	total: 493ms	remaining: 26ms
95:	learn: 15.5434131	total: 500ms	remaining: 20.8ms
96:	learn: 15.4709561	total: 505ms	remaining: 15.6ms
97:	learn: 15.4449618	total: 510ms	remaining: 10.4ms
98:	learn: 15.3752761	total: 516ms	remaining: 5.22ms
99:	learn: 15.3106595	total: 522ms	remaining: 0us
0:	learn: 46.7142257	total: 4.9ms	remaining: 485ms
1:	learn: 45.7634153	total: 9.11ms	remaining: 446ms
2:	learn: 45.0054253	total: 13.3ms	remaining: 429ms
3:	learn: 44.2120432	total: 17.4ms	remaining: 419ms
4:	learn: 43.3960472	total: 22.2ms	remaining: 421ms
5:	learn: 42.8588120	total: 27.2ms	remaining: 427ms
6:	learn: 41.9533701	total: 32.5ms	remaining: 432ms
7:	learn: 41.2745030	total: 37.5ms	remaining: 432ms
8:	learn: 40.6797495	total: 42.5ms	remaining: 430ms
9:	learn: 39.9899571	total: 47.4ms	remaining: 426ms
10:	learn: 39.4682100	total: 52.4ms	remaining: 424ms
11:	learn: 39.0305595	total: 57.9ms	remaining: 424ms
12:	learn: 38.4200417	total: 62.5ms	remaining: 418ms
13:	learn: 37.8425194	total: 67.3ms	remaining: 414ms
14:	learn: 37.4203127	total: 72.4ms	remaining: 410ms
15:	learn: 36.9917688	total: 77.4ms	remaining: 406ms
16:	learn: 36.5544138	total: 82.1ms	remaining: 401ms
17:	learn: 36.0727019	total: 86.7ms	remaining: 395ms
18:	learn: 35.4835715	total: 93.7ms	remaining: 399ms
19:	learn: 34.9865654	total: 101ms	remaining: 404ms
20:	learn: 34.6063373	total: 109ms	remaining: 411ms
21:	learn: 34.0997289	total: 116ms	remaining: 412ms
22:	learn: 33.7313171	total: 124ms	remaining: 414ms
23:	learn: 33.3582000	total: 129ms	remaining: 408ms
24:	learn: 32.9432456	total: 134ms	remaining: 401ms
25:	learn: 32.5220888	total: 139ms	remaining: 395ms
26:	learn: 32.2172292	total: 144ms	remaining: 389ms
27:	learn: 31.8972904	total: 149ms	remaining: 382ms
28:	learn: 31.6405350	total: 154ms	remaining: 376ms
29:	learn: 31.4167702	total: 159ms	remaining: 370ms
30:	learn: 30.8541961	total: 161ms	remaining: 359ms
31:	learn: 30.5572111	total: 166ms	remaining: 354ms
32:	learn: 30.1700399	total: 171ms	remaining: 347ms
33:	learn: 29.8537271	total: 176ms	remaining: 341ms
34:	learn: 29.6192540	total: 181ms	remaining: 335ms
35:	learn: 29.3276362	total: 185ms	remaining: 329ms
36:	learn: 28.9985179	total: 190ms	remaining: 323ms
37:	learn: 28.7046880	total: 195ms	remaining: 318ms
38:	learn: 28.4412677	total: 201ms	remaining: 314ms
39:	learn: 28.1277292	total: 205ms	remaining: 308ms
40:	learn: 27.9000750	total: 210ms	remaining: 302ms
41:	learn: 27.5433162	total: 214ms	remaining: 295ms
42:	learn: 27.2493285	total: 218ms	remaining: 289ms
43:	learn: 26.9576632	total: 219ms	remaining: 279ms
44:	learn: 26.6177110	total: 223ms	remaining: 273ms
45:	learn: 26.2812456	total: 227ms	remaining: 267ms
46:	learn: 26.0803859	total: 231ms	remaining: 261ms
47:	learn: 25.9543581	total: 236ms	remaining: 255ms
48:	learn: 25.7951582	total: 240ms	remaining: 250ms
49:	learn: 25.6548184	total: 244ms	remaining: 244ms
50:	learn: 25.4010843	total: 248ms	remaining: 238ms
51:	learn: 24.9773937	total: 253ms	remaining: 233ms
52:	learn: 24.8026156	total: 258ms	remaining: 229ms
53:	learn: 24.5568053	total: 263ms	remaining: 224ms
54:	learn: 24.2281839	total: 268ms	remaining: 219ms
55:	learn: 23.9202795	total: 272ms	remaining: 214ms
56:	learn: 23.7625591	total: 277ms	remaining: 209ms
57:	learn: 23.5429721	total: 282ms	remaining: 204ms
58:	learn: 23.3175893	total: 286ms	remaining: 199ms
59:	learn: 23.2035130	total: 295ms	remaining: 196ms
60:	learn: 23.0232450	total: 303ms	remaining: 194ms
61:	learn: 22.8384958	total: 314ms	remaining: 192ms
62:	learn: 22.6499902	total: 323ms	remaining: 189ms
63:	learn: 22.4577426	total: 328ms	remaining: 185ms
64:	learn: 22.3333158	total: 334ms	remaining: 180ms
65:	learn: 22.2064131	total: 339ms	remaining: 175ms
66:	learn: 22.1434971	total: 345ms	remaining: 170ms
67:	learn: 21.9596519	total: 350ms	remaining: 165ms
68:	learn: 21.8475576	total: 355ms	remaining: 159ms
69:	learn: 21.6954745	total: 360ms	remaining: 154ms
70:	learn: 21.5635976	total: 366ms	remaining: 149ms
71:	learn: 21.4588506	total: 371ms	remaining: 144ms
72:	learn: 21.3527268	total: 376ms	remaining: 139ms
73:	learn: 21.2661288	total: 381ms	remaining: 134ms
74:	learn: 21.1817333	total: 386ms	remaining: 129ms
75:	learn: 21.0527553	total: 391ms	remaining: 124ms
76:	learn: 20.9229021	total: 396ms	remaining: 118ms
77:	learn: 20.7563946	total: 400ms	remaining: 113ms
78:	learn: 20.6569831	total: 404ms	remaining: 107ms
79:	learn: 20.4982663	total: 408ms	remaining: 102ms
80:	learn: 20.3185460	total: 412ms	remaining: 96.6ms
81:	learn: 20.2096241	total: 416ms	remaining: 91.4ms
82:	learn: 20.1274891	total: 420ms	remaining: 86.1ms
83:	learn: 20.0740139	total: 424ms	remaining: 80.8ms
84:	learn: 19.9630699	total: 428ms	remaining: 75.6ms
85:	learn: 19.8753899	total: 432ms	remaining: 70.4ms
86:	learn: 19.6563612	total: 436ms	remaining: 65.2ms
87:	learn: 19.4680232	total: 441ms	remaining: 60.1ms
88:	learn: 19.3503431	total: 445ms	remaining: 55ms
89:	learn: 19.2221379	total: 449ms	remaining: 49.8ms
90:	learn: 19.0732542	total: 453ms	remaining: 44.8ms
91:	learn: 18.9825190	total: 457ms	remaining: 39.8ms
92:	learn: 18.8839009	total: 462ms	remaining: 34.8ms
93:	learn: 18.8012219	total: 466ms	remaining: 29.8ms
94:	learn: 18.7172713	total: 471ms	remaining: 24.8ms
95:	learn: 18.6201170	total: 476ms	remaining: 19.8ms
96:	learn: 18.5318611	total: 481ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 486ms	remaining: 9.92ms
98:	learn: 18.3289700	total: 492ms	remaining: 4.97ms
99:	learn: 18.2227333	total: 499ms	remaining: 0us
0:	learn: 46.3764524	total: 5.43ms	remaining: 538ms
1:	learn: 45.5561269	total: 10.3ms	remaining: 507ms
2:	learn: 44.8811245	total: 15.5ms	remaining: 501ms
3:	learn: 44.0788617	total: 20.6ms	remaining: 495ms
4:	learn: 43.3619790	total: 25.5ms	remaining: 484ms
5:	learn: 42.6912112	total: 30.1ms	remaining: 471ms
6:	learn: 42.2292118	total: 35.5ms	remaining: 471ms
7:	learn: 41.7725191	total: 41.1ms	remaining: 473ms
8:	learn: 41.1676614	total: 45.7ms	remaining: 462ms
9:	learn: 40.5771076	total: 50ms	remaining: 450ms
10:	learn: 39.8343757	total: 54ms	remaining: 437ms
11:	learn: 39.3761142	total: 58.1ms	remaining: 426ms
12:	learn: 38.5254692	total: 62.5ms	remaining: 418ms
13:	learn: 37.9629555	total: 66.6ms	remaining: 409ms
14:	learn: 37.4418438	total: 70.5ms	remaining: 400ms
15:	learn: 37.0507283	total: 74.3ms	remaining: 390ms
16:	learn: 36.6264217	total: 78.6ms	remaining: 384ms
17:	learn: 36.1114940	total: 82.4ms	remaining: 375ms
18:	learn: 35.7193862	total: 86.6ms	remaining: 369ms
19:	learn: 35.3301177	total: 90.6ms	remaining: 362ms
20:	learn: 35.0598280	total: 95ms	remaining: 357ms
21:	learn: 34.5469736	total: 99.1ms	remaining: 351ms
22:	learn: 34.2064215	total: 103ms	remaining: 346ms
23:	learn: 33.7280710	total: 108ms	remaining: 341ms
24:	learn: 33.3282940	total: 112ms	remaining: 336ms
25:	learn: 32.8478961	total: 117ms	remaining: 332ms
26:	learn: 32.5722164	total: 121ms	remaining: 328ms
27:	learn: 32.2457019	total: 125ms	remaining: 323ms
28:	learn: 31.9230495	total: 130ms	remaining: 318ms
29:	learn: 31.4311611	total: 134ms	remaining: 313ms
30:	learn: 30.9179052	total: 139ms	remaining: 309ms
31:	learn: 30.6201141	total: 144ms	remaining: 305ms
32:	learn: 30.3421106	total: 154ms	remaining: 312ms
33:	learn: 29.9885373	total: 161ms	remaining: 312ms
34:	learn: 29.7462780	total: 168ms	remaining: 312ms
35:	learn: 29.3607153	total: 175ms	remaining: 311ms
36:	learn: 29.1793078	total: 181ms	remaining: 307ms
37:	learn: 28.9276538	total: 185ms	remaining: 302ms
38:	learn: 28.6903934	total: 190ms	remaining: 298ms
39:	learn: 28.2095033	total: 195ms	remaining: 293ms
40:	learn: 27.7990608	total: 201ms	remaining: 289ms
41:	learn: 27.5406632	total: 206ms	remaining: 284ms
42:	learn: 27.2575376	total: 211ms	remaining: 280ms
43:	learn: 26.9741707	total: 217ms	remaining: 276ms
44:	learn: 26.6606899	total: 222ms	remaining: 271ms
45:	learn: 26.4015833	total: 227ms	remaining: 266ms
46:	learn: 26.1828993	total: 232ms	remaining: 262ms
47:	learn: 26.0233709	total: 235ms	remaining: 255ms
48:	learn: 25.9300399	total: 240ms	remaining: 250ms
49:	learn: 25.5861489	total: 245ms	remaining: 245ms
50:	learn: 25.4322012	total: 251ms	remaining: 241ms
51:	learn: 25.1595644	total: 256ms	remaining: 236ms
52:	learn: 24.9955303	total: 260ms	remaining: 231ms
53:	learn: 24.7273966	total: 265ms	remaining: 226ms
54:	learn: 24.5747978	total: 269ms	remaining: 220ms
55:	learn: 24.3807977	total: 273ms	remaining: 215ms
56:	learn: 24.1689569	total: 277ms	remaining: 209ms
57:	learn: 23.9898221	total: 281ms	remaining: 204ms
58:	learn: 23.7566414	total: 285ms	remaining: 198ms
59:	learn: 23.6641165	total: 289ms	remaining: 193ms
60:	learn: 23.5658066	total: 294ms	remaining: 188ms
61:	learn: 23.4338851	total: 298ms	remaining: 182ms
62:	learn: 23.2408837	total: 302ms	remaining: 177ms
63:	learn: 23.0642038	total: 306ms	remaining: 172ms
64:	learn: 22.9032045	total: 310ms	remaining: 167ms
65:	learn: 22.7736138	total: 315ms	remaining: 162ms
66:	learn: 22.6836443	total: 319ms	remaining: 157ms
67:	learn: 22.5983654	total: 323ms	remaining: 152ms
68:	learn: 22.4419813	total: 328ms	remaining: 147ms
69:	learn: 22.2863339	total: 332ms	remaining: 142ms
70:	learn: 22.1792943	total: 337ms	remaining: 137ms
71:	learn: 22.1130574	total: 341ms	remaining: 133ms
72:	learn: 21.9858161	total: 345ms	remaining: 128ms
73:	learn: 21.8577784	total: 350ms	remaining: 123ms
74:	learn: 21.7845222	total: 354ms	remaining: 118ms
75:	learn: 21.6831390	total: 362ms	remaining: 114ms
76:	learn: 21.6292521	total: 369ms	remaining: 110ms
77:	learn: 21.5789330	total: 378ms	remaining: 107ms
78:	learn: 21.5420942	total: 385ms	remaining: 102ms
79:	learn: 21.4280939	total: 392ms	remaining: 98.1ms
80:	learn: 21.3641165	total: 398ms	remaining: 93.4ms
81:	learn: 21.2734814	total: 403ms	remaining: 88.5ms
82:	learn: 21.2220323	total: 408ms	remaining: 83.7ms
83:	learn: 21.0625792	total: 414ms	remaining: 78.8ms
84:	learn: 20.9488320	total: 419ms	remaining: 74ms
85:	learn: 20.8504255	total: 424ms	remaining: 69.1ms
86:	learn: 20.7848510	total: 429ms	remaining: 64.1ms
87:	learn: 20.7247442	total: 435ms	remaining: 59.3ms
88:	learn: 20.5698590	total: 440ms	remaining: 54.4ms
89:	learn: 20.4067620	total: 445ms	remaining: 49.4ms
90:	learn: 20.3062482	total: 450ms	remaining: 44.5ms
91:	learn: 20.2029696	total: 456ms	remaining: 39.7ms
92:	learn: 20.1384849	total: 462ms	remaining: 34.8ms
93:	learn: 20.0260709	total: 467ms	remaining: 29.8ms
94:	learn: 19.9122100	total: 472ms	remaining: 24.8ms
95:	learn: 19.8648487	total: 477ms	remaining: 19.9ms
96:	learn: 19.8207072	total: 481ms	remaining: 14.9ms
97:	learn: 19.7261189	total: 486ms	remaining: 9.91ms
98:	learn: 19.7042438	total: 490ms	remaining: 4.95ms
99:	learn: 19.6546645	total: 494ms	remaining: 0us
0:	learn: 47.0239288	total: 5.09ms	remaining: 504ms
1:	learn: 46.2253829	total: 10.3ms	remaining: 503ms
2:	learn: 45.5580301	total: 15.1ms	remaining: 488ms
3:	learn: 44.7273237	total: 19.9ms	remaining: 478ms
4:	learn: 43.8867421	total: 24.3ms	remaining: 462ms
5:	learn: 43.3615911	total: 32ms	remaining: 502ms
6:	learn: 42.8548390	total: 39.3ms	remaining: 523ms
7:	learn: 42.1606758	total: 48.9ms	remaining: 563ms
8:	learn: 41.6625870	total: 54.5ms	remaining: 551ms
9:	learn: 40.9497092	total: 61.5ms	remaining: 553ms
10:	learn: 40.1886318	total: 66.7ms	remaining: 539ms
11:	learn: 39.7456423	total: 71.9ms	remaining: 527ms
12:	learn: 39.1171373	total: 76.6ms	remaining: 513ms
13:	learn: 38.5451069	total: 82ms	remaining: 504ms
14:	learn: 38.0155834	total: 99.7ms	remaining: 565ms
15:	learn: 37.5631354	total: 105ms	remaining: 553ms
16:	learn: 37.1030023	total: 110ms	remaining: 536ms
17:	learn: 36.4563029	total: 115ms	remaining: 523ms
18:	learn: 36.0160976	total: 120ms	remaining: 512ms
19:	learn: 35.5079827	total: 126ms	remaining: 503ms
20:	learn: 35.2111885	total: 130ms	remaining: 488ms
21:	learn: 34.9397465	total: 134ms	remaining: 474ms
22:	learn: 34.5270048	total: 138ms	remaining: 460ms
23:	learn: 34.0169260	total: 141ms	remaining: 448ms
24:	learn: 33.7454892	total: 145ms	remaining: 436ms
25:	learn: 33.2648157	total: 149ms	remaining: 425ms
26:	learn: 32.8899427	total: 154ms	remaining: 416ms
27:	learn: 32.6185050	total: 158ms	remaining: 406ms
28:	learn: 32.3528531	total: 162ms	remaining: 396ms
29:	learn: 32.0859923	total: 166ms	remaining: 386ms
30:	learn: 31.6511144	total: 170ms	remaining: 378ms
31:	learn: 31.2571765	total: 174ms	remaining: 369ms
32:	learn: 30.9770049	total: 177ms	remaining: 360ms
33:	learn: 30.6084872	total: 182ms	remaining: 353ms
34:	learn: 30.3448632	total: 186ms	remaining: 346ms
35:	learn: 30.0360942	total: 191ms	remaining: 339ms
36:	learn: 29.6648968	total: 195ms	remaining: 331ms
37:	learn: 29.3165114	total: 199ms	remaining: 324ms
38:	learn: 29.0829198	total: 203ms	remaining: 317ms
39:	learn: 28.7752064	total: 207ms	remaining: 310ms
40:	learn: 28.3622191	total: 211ms	remaining: 304ms
41:	learn: 28.1346631	total: 215ms	remaining: 297ms
42:	learn: 27.9585719	total: 219ms	remaining: 291ms
43:	learn: 27.6565566	total: 223ms	remaining: 284ms
44:	learn: 27.3616172	total: 228ms	remaining: 278ms
45:	learn: 27.0658637	total: 232ms	remaining: 273ms
46:	learn: 26.8660382	total: 237ms	remaining: 267ms
47:	learn: 26.6536078	total: 241ms	remaining: 261ms
48:	learn: 26.3524440	total: 246ms	remaining: 256ms
49:	learn: 26.1595277	total: 250ms	remaining: 250ms
50:	learn: 25.9273523	total: 254ms	remaining: 244ms
51:	learn: 25.7195580	total: 259ms	remaining: 239ms
52:	learn: 25.5730225	total: 268ms	remaining: 238ms
53:	learn: 25.3455276	total: 276ms	remaining: 235ms
54:	learn: 25.2289675	total: 284ms	remaining: 232ms
55:	learn: 25.0133024	total: 290ms	remaining: 228ms
56:	learn: 24.8406714	total: 296ms	remaining: 223ms
57:	learn: 24.6367857	total: 301ms	remaining: 218ms
58:	learn: 24.5338177	total: 306ms	remaining: 213ms
59:	learn: 24.3799964	total: 311ms	remaining: 208ms
60:	learn: 24.1447492	total: 317ms	remaining: 203ms
61:	learn: 23.9880495	total: 322ms	remaining: 198ms
62:	learn: 23.7140630	total: 328ms	remaining: 192ms
63:	learn: 23.5003791	total: 333ms	remaining: 187ms
64:	learn: 23.3207645	total: 338ms	remaining: 182ms
65:	learn: 23.1958356	total: 344ms	remaining: 177ms
66:	learn: 23.0471302	total: 348ms	remaining: 172ms
67:	learn: 22.8977183	total: 354ms	remaining: 166ms
68:	learn: 22.7187400	total: 359ms	remaining: 161ms
69:	learn: 22.6523405	total: 364ms	remaining: 156ms
70:	learn: 22.4767453	total: 368ms	remaining: 150ms
71:	learn: 22.3243677	total: 372ms	remaining: 145ms
72:	learn: 22.2133096	total: 376ms	remaining: 139ms
73:	learn: 22.1151713	total: 380ms	remaining: 134ms
74:	learn: 22.0296666	total: 384ms	remaining: 128ms
75:	learn: 21.9195980	total: 388ms	remaining: 123ms
76:	learn: 21.8401730	total: 392ms	remaining: 117ms
77:	learn: 21.8079797	total: 396ms	remaining: 112ms
78:	learn: 21.7274109	total: 400ms	remaining: 106ms
79:	learn: 21.6663032	total: 404ms	remaining: 101ms
80:	learn: 21.5633117	total: 408ms	remaining: 95.6ms
81:	learn: 21.4542467	total: 412ms	remaining: 90.4ms
82:	learn: 21.3177957	total: 416ms	remaining: 85.2ms
83:	learn: 21.1289167	total: 420ms	remaining: 80ms
84:	learn: 21.0297368	total: 424ms	remaining: 74.9ms
85:	learn: 20.9089564	total: 430ms	remaining: 69.9ms
86:	learn: 20.7653988	total: 434ms	remaining: 64.9ms
87:	learn: 20.6521894	total: 438ms	remaining: 59.8ms
88:	learn: 20.5193021	total: 443ms	remaining: 54.7ms
89:	learn: 20.4361620	total: 447ms	remaining: 49.7ms
90:	learn: 20.3546710	total: 451ms	remaining: 44.6ms
91:	learn: 20.2513296	total: 456ms	remaining: 39.6ms
92:	learn: 20.1605550	total: 460ms	remaining: 34.6ms
93:	learn: 20.0515942	total: 469ms	remaining: 29.9ms
94:	learn: 19.9800764	total: 476ms	remaining: 25.1ms
95:	learn: 19.8996532	total: 484ms	remaining: 20.2ms
96:	learn: 19.8450910	total: 492ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 497ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 502ms	remaining: 5.07ms
99:	learn: 19.6328825	total: 507ms	remaining: 0us
avg_Mae_val de la población en la generación 13: 17.785474878541105 con std media = 9.142679240812859
Mae_val del Mejor modelo en la generación 13: 17.7789 con std = 9.1097
0:	learn: 27.5585353	total: 5.32ms	remaining: 526ms
1:	learn: 27.1656995	total: 10.8ms	remaining: 531ms
2:	learn: 26.8590175	total: 15.7ms	remaining: 508ms
3:	learn: 26.5818406	total: 19.6ms	remaining: 469ms
4:	learn: 26.1148663	total: 23.6ms	remaining: 447ms
5:	learn: 25.7690484	total: 27.8ms	remaining: 436ms
6:	learn: 25.3489206	total: 31.9ms	remaining: 424ms
7:	learn: 24.9542406	total: 36.4ms	remaining: 419ms
8:	learn: 24.6777517	total: 40.5ms	remaining: 410ms
9:	learn: 24.3242344	total: 44.6ms	remaining: 402ms
10:	learn: 24.0383073	total: 48.8ms	remaining: 395ms
11:	learn: 23.7383420	total: 52.9ms	remaining: 388ms
12:	learn: 23.3461670	total: 56.8ms	remaining: 380ms
13:	learn: 23.0928636	total: 60.9ms	remaining: 374ms
14:	learn: 22.8770414	total: 64.8ms	remaining: 367ms
15:	learn: 22.6323214	total: 68.9ms	remaining: 362ms
16:	learn: 22.3597072	total: 72.9ms	remaining: 356ms
17:	learn: 22.1079813	total: 76.8ms	remaining: 350ms
18:	learn: 21.8421199	total: 81.2ms	remaining: 346ms
19:	learn: 21.6576508	total: 85.7ms	remaining: 343ms
20:	learn: 21.4301268	total: 89.9ms	remaining: 338ms
21:	learn: 21.2287388	total: 94.4ms	remaining: 335ms
22:	learn: 21.0553872	total: 98.7ms	remaining: 331ms
23:	learn: 20.8977091	total: 103ms	remaining: 326ms
24:	learn: 20.6619051	total: 107ms	remaining: 322ms
25:	learn: 20.5040955	total: 112ms	remaining: 319ms
26:	learn: 20.3181195	total: 116ms	remaining: 315ms
27:	learn: 20.0869436	total: 124ms	remaining: 319ms
28:	learn: 19.9375985	total: 132ms	remaining: 323ms
29:	learn: 19.8247516	total: 141ms	remaining: 329ms
30:	learn: 19.6261697	total: 148ms	remaining: 329ms
31:	learn: 19.4547236	total: 154ms	remaining: 327ms
32:	learn: 19.3157092	total: 159ms	remaining: 323ms
33:	learn: 19.1561419	total: 164ms	remaining: 319ms
34:	learn: 19.0453620	total: 169ms	remaining: 314ms
35:	learn: 18.8738574	total: 174ms	remaining: 310ms
36:	learn: 18.7072907	total: 179ms	remaining: 305ms
37:	learn: 18.5877943	total: 185ms	remaining: 302ms
38:	learn: 18.4436380	total: 191ms	remaining: 298ms
39:	learn: 18.3463356	total: 196ms	remaining: 294ms
40:	learn: 18.2008059	total: 201ms	remaining: 289ms
41:	learn: 18.0582079	total: 206ms	remaining: 285ms
42:	learn: 17.8891982	total: 211ms	remaining: 280ms
43:	learn: 17.7332246	total: 216ms	remaining: 275ms
44:	learn: 17.6206421	total: 222ms	remaining: 271ms
45:	learn: 17.4982800	total: 226ms	remaining: 265ms
46:	learn: 17.3970150	total: 230ms	remaining: 260ms
47:	learn: 17.3058203	total: 234ms	remaining: 254ms
48:	learn: 17.1789256	total: 239ms	remaining: 248ms
49:	learn: 17.0916229	total: 243ms	remaining: 243ms
50:	learn: 16.9859820	total: 247ms	remaining: 238ms
51:	learn: 16.8995582	total: 251ms	remaining: 232ms
52:	learn: 16.8137014	total: 256ms	remaining: 227ms
53:	learn: 16.7021451	total: 260ms	remaining: 222ms
54:	learn: 16.5895582	total: 264ms	remaining: 216ms
55:	learn: 16.5015639	total: 268ms	remaining: 211ms
56:	learn: 16.4356637	total: 273ms	remaining: 206ms
57:	learn: 16.3514525	total: 278ms	remaining: 201ms
58:	learn: 16.2401369	total: 283ms	remaining: 196ms
59:	learn: 16.1293223	total: 287ms	remaining: 191ms
60:	learn: 16.0271167	total: 292ms	remaining: 186ms
61:	learn: 15.9126257	total: 296ms	remaining: 182ms
62:	learn: 15.8391096	total: 301ms	remaining: 177ms
63:	learn: 15.7441773	total: 305ms	remaining: 172ms
64:	learn: 15.6885195	total: 314ms	remaining: 169ms
65:	learn: 15.6052039	total: 321ms	remaining: 165ms
66:	learn: 15.5074202	total: 330ms	remaining: 163ms
67:	learn: 15.4054338	total: 337ms	remaining: 158ms
68:	learn: 15.2885714	total: 348ms	remaining: 157ms
69:	learn: 15.2157472	total: 354ms	remaining: 152ms
70:	learn: 15.1031554	total: 366ms	remaining: 149ms
71:	learn: 15.0237470	total: 371ms	remaining: 144ms
72:	learn: 14.9756825	total: 376ms	remaining: 139ms
73:	learn: 14.8840596	total: 382ms	remaining: 134ms
74:	learn: 14.8077061	total: 387ms	remaining: 129ms
75:	learn: 14.7444437	total: 392ms	remaining: 124ms
76:	learn: 14.6751720	total: 397ms	remaining: 119ms
77:	learn: 14.5830333	total: 402ms	remaining: 113ms
78:	learn: 14.5241206	total: 408ms	remaining: 108ms
79:	learn: 14.4892731	total: 413ms	remaining: 103ms
80:	learn: 14.4256605	total: 417ms	remaining: 97.9ms
81:	learn: 14.3666860	total: 422ms	remaining: 92.5ms
82:	learn: 14.2938372	total: 426ms	remaining: 87.3ms
83:	learn: 14.2161532	total: 431ms	remaining: 82ms
84:	learn: 14.1582910	total: 435ms	remaining: 76.8ms
85:	learn: 14.1029153	total: 440ms	remaining: 71.6ms
86:	learn: 14.0475835	total: 445ms	remaining: 66.5ms
87:	learn: 13.9892661	total: 450ms	remaining: 61.3ms
88:	learn: 13.9481628	total: 455ms	remaining: 56.2ms
89:	learn: 13.8483991	total: 459ms	remaining: 51.1ms
90:	learn: 13.7775614	total: 464ms	remaining: 45.9ms
91:	learn: 13.7304585	total: 469ms	remaining: 40.8ms
92:	learn: 13.6783381	total: 474ms	remaining: 35.7ms
93:	learn: 13.6356964	total: 479ms	remaining: 30.6ms
94:	learn: 13.5924371	total: 483ms	remaining: 25.4ms
95:	learn: 13.5400746	total: 488ms	remaining: 20.4ms
96:	learn: 13.4897333	total: 493ms	remaining: 15.3ms
97:	learn: 13.4470321	total: 498ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 503ms	remaining: 5.08ms
99:	learn: 13.3082371	total: 507ms	remaining: 0us
0:	learn: 43.0395283	total: 5.59ms	remaining: 554ms
1:	learn: 42.1130223	total: 10.6ms	remaining: 520ms
2:	learn: 41.1753409	total: 15.8ms	remaining: 511ms
3:	learn: 40.3637444	total: 21ms	remaining: 505ms
4:	learn: 39.6508088	total: 25.8ms	remaining: 491ms
5:	learn: 38.7217934	total: 31.1ms	remaining: 487ms
6:	learn: 37.8538055	total: 35.7ms	remaining: 475ms
7:	learn: 36.9793574	total: 40.7ms	remaining: 468ms
8:	learn: 36.3076984	total: 46.2ms	remaining: 467ms
9:	learn: 35.6673160	total: 52ms	remaining: 468ms
10:	learn: 34.8889800	total: 56.4ms	remaining: 457ms
11:	learn: 34.1675517	total: 60.6ms	remaining: 444ms
12:	learn: 33.6779564	total: 65.1ms	remaining: 436ms
13:	learn: 33.0710039	total: 69.8ms	remaining: 428ms
14:	learn: 32.4966674	total: 73.7ms	remaining: 418ms
15:	learn: 31.9492856	total: 77.7ms	remaining: 408ms
16:	learn: 31.5108129	total: 81.5ms	remaining: 398ms
17:	learn: 30.9804023	total: 85.7ms	remaining: 390ms
18:	learn: 30.4169089	total: 89.9ms	remaining: 383ms
19:	learn: 29.8930375	total: 94.1ms	remaining: 376ms
20:	learn: 29.3974421	total: 98.2ms	remaining: 369ms
21:	learn: 28.8792307	total: 102ms	remaining: 362ms
22:	learn: 28.3894474	total: 107ms	remaining: 357ms
23:	learn: 27.9921276	total: 111ms	remaining: 350ms
24:	learn: 27.6158887	total: 115ms	remaining: 345ms
25:	learn: 27.2866950	total: 120ms	remaining: 341ms
26:	learn: 26.8770708	total: 125ms	remaining: 337ms
27:	learn: 26.6233005	total: 129ms	remaining: 332ms
28:	learn: 26.2921934	total: 134ms	remaining: 327ms
29:	learn: 25.9156920	total: 138ms	remaining: 321ms
30:	learn: 25.5311106	total: 139ms	remaining: 310ms
31:	learn: 25.2178997	total: 144ms	remaining: 306ms
32:	learn: 24.8572196	total: 148ms	remaining: 301ms
33:	learn: 24.5849710	total: 153ms	remaining: 297ms
34:	learn: 24.2209190	total: 161ms	remaining: 300ms
35:	learn: 23.8708250	total: 169ms	remaining: 300ms
36:	learn: 23.5325279	total: 177ms	remaining: 301ms
37:	learn: 23.2116148	total: 184ms	remaining: 300ms
38:	learn: 22.9696787	total: 189ms	remaining: 296ms
39:	learn: 22.7936783	total: 195ms	remaining: 292ms
40:	learn: 22.6228847	total: 200ms	remaining: 287ms
41:	learn: 22.3691527	total: 205ms	remaining: 283ms
42:	learn: 22.1002173	total: 210ms	remaining: 278ms
43:	learn: 21.9157268	total: 215ms	remaining: 274ms
44:	learn: 21.7229102	total: 220ms	remaining: 269ms
45:	learn: 21.4642005	total: 226ms	remaining: 265ms
46:	learn: 21.3029442	total: 231ms	remaining: 260ms
47:	learn: 21.1469792	total: 235ms	remaining: 255ms
48:	learn: 20.9458235	total: 240ms	remaining: 250ms
49:	learn: 20.7335242	total: 255ms	remaining: 255ms
50:	learn: 20.5440269	total: 259ms	remaining: 249ms
51:	learn: 20.3661449	total: 264ms	remaining: 243ms
52:	learn: 20.2158134	total: 268ms	remaining: 237ms
53:	learn: 19.9934873	total: 272ms	remaining: 232ms
54:	learn: 19.7879739	total: 277ms	remaining: 226ms
55:	learn: 19.6630460	total: 281ms	remaining: 221ms
56:	learn: 19.5152729	total: 285ms	remaining: 215ms
57:	learn: 19.3581128	total: 289ms	remaining: 209ms
58:	learn: 19.2209303	total: 294ms	remaining: 204ms
59:	learn: 19.0965248	total: 298ms	remaining: 199ms
60:	learn: 19.0035954	total: 302ms	remaining: 193ms
61:	learn: 18.8554149	total: 306ms	remaining: 188ms
62:	learn: 18.7095427	total: 310ms	remaining: 182ms
63:	learn: 18.5751494	total: 314ms	remaining: 177ms
64:	learn: 18.4678251	total: 319ms	remaining: 172ms
65:	learn: 18.3500325	total: 324ms	remaining: 167ms
66:	learn: 18.2088983	total: 329ms	remaining: 162ms
67:	learn: 18.0737705	total: 333ms	remaining: 157ms
68:	learn: 17.9325058	total: 338ms	remaining: 152ms
69:	learn: 17.8003911	total: 342ms	remaining: 147ms
70:	learn: 17.7385366	total: 347ms	remaining: 142ms
71:	learn: 17.6106998	total: 352ms	remaining: 137ms
72:	learn: 17.4816270	total: 359ms	remaining: 133ms
73:	learn: 17.4025554	total: 381ms	remaining: 134ms
74:	learn: 17.2902108	total: 386ms	remaining: 129ms
75:	learn: 17.2158048	total: 391ms	remaining: 124ms
76:	learn: 17.1261053	total: 397ms	remaining: 118ms
77:	learn: 17.0308917	total: 402ms	remaining: 113ms
78:	learn: 16.9546705	total: 407ms	remaining: 108ms
79:	learn: 16.8319165	total: 412ms	remaining: 103ms
80:	learn: 16.7687017	total: 417ms	remaining: 97.9ms
81:	learn: 16.6972326	total: 423ms	remaining: 92.8ms
82:	learn: 16.6124580	total: 428ms	remaining: 87.7ms
83:	learn: 16.4999052	total: 433ms	remaining: 82.6ms
84:	learn: 16.4302484	total: 438ms	remaining: 77.3ms
85:	learn: 16.3201363	total: 443ms	remaining: 72.1ms
86:	learn: 16.2534314	total: 448ms	remaining: 67ms
87:	learn: 16.1720485	total: 454ms	remaining: 61.9ms
88:	learn: 16.0625751	total: 458ms	remaining: 56.6ms
89:	learn: 15.9135088	total: 462ms	remaining: 51.3ms
90:	learn: 15.8658863	total: 466ms	remaining: 46.1ms
91:	learn: 15.8066805	total: 470ms	remaining: 40.9ms
92:	learn: 15.7412103	total: 474ms	remaining: 35.7ms
93:	learn: 15.6542776	total: 478ms	remaining: 30.5ms
94:	learn: 15.5760334	total: 482ms	remaining: 25.4ms
95:	learn: 15.5434131	total: 486ms	remaining: 20.3ms
96:	learn: 15.4709561	total: 491ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 495ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 499ms	remaining: 5.04ms
99:	learn: 15.3106595	total: 503ms	remaining: 0us
0:	learn: 46.7142257	total: 5.99ms	remaining: 593ms
1:	learn: 45.7634153	total: 13.2ms	remaining: 649ms
2:	learn: 45.0054253	total: 20.8ms	remaining: 672ms
3:	learn: 44.2120432	total: 28.6ms	remaining: 686ms
4:	learn: 43.3960472	total: 35.6ms	remaining: 676ms
5:	learn: 42.8588120	total: 41.4ms	remaining: 649ms
6:	learn: 41.9533701	total: 46.8ms	remaining: 621ms
7:	learn: 41.2745030	total: 52.1ms	remaining: 599ms
8:	learn: 40.6797495	total: 57ms	remaining: 576ms
9:	learn: 39.9899571	total: 62.2ms	remaining: 560ms
10:	learn: 39.4682100	total: 67.8ms	remaining: 548ms
11:	learn: 39.0305595	total: 73ms	remaining: 535ms
12:	learn: 38.4200417	total: 78ms	remaining: 522ms
13:	learn: 37.8425194	total: 83.6ms	remaining: 513ms
14:	learn: 37.4203127	total: 88.6ms	remaining: 502ms
15:	learn: 36.9917688	total: 93.5ms	remaining: 491ms
16:	learn: 36.5544138	total: 99.1ms	remaining: 484ms
17:	learn: 36.0727019	total: 105ms	remaining: 477ms
18:	learn: 35.4835715	total: 109ms	remaining: 467ms
19:	learn: 34.9865654	total: 114ms	remaining: 455ms
20:	learn: 34.6063373	total: 118ms	remaining: 444ms
21:	learn: 34.0997289	total: 123ms	remaining: 436ms
22:	learn: 33.7313171	total: 127ms	remaining: 426ms
23:	learn: 33.3582000	total: 132ms	remaining: 416ms
24:	learn: 32.9432456	total: 136ms	remaining: 408ms
25:	learn: 32.5220888	total: 140ms	remaining: 399ms
26:	learn: 32.2172292	total: 144ms	remaining: 390ms
27:	learn: 31.8972904	total: 149ms	remaining: 382ms
28:	learn: 31.6405350	total: 153ms	remaining: 375ms
29:	learn: 31.4167702	total: 157ms	remaining: 367ms
30:	learn: 30.8541961	total: 159ms	remaining: 355ms
31:	learn: 30.5572111	total: 164ms	remaining: 347ms
32:	learn: 30.1700399	total: 168ms	remaining: 341ms
33:	learn: 29.8537271	total: 172ms	remaining: 334ms
34:	learn: 29.6192540	total: 177ms	remaining: 328ms
35:	learn: 29.3276362	total: 182ms	remaining: 323ms
36:	learn: 28.9985179	total: 187ms	remaining: 318ms
37:	learn: 28.7046880	total: 191ms	remaining: 312ms
38:	learn: 28.4412677	total: 196ms	remaining: 306ms
39:	learn: 28.1277292	total: 201ms	remaining: 301ms
40:	learn: 27.9000750	total: 206ms	remaining: 296ms
41:	learn: 27.5433162	total: 211ms	remaining: 291ms
42:	learn: 27.2493285	total: 221ms	remaining: 293ms
43:	learn: 26.9576632	total: 224ms	remaining: 286ms
44:	learn: 26.6177110	total: 235ms	remaining: 287ms
45:	learn: 26.2812456	total: 244ms	remaining: 287ms
46:	learn: 26.0803859	total: 250ms	remaining: 282ms
47:	learn: 25.9543581	total: 256ms	remaining: 277ms
48:	learn: 25.7951582	total: 261ms	remaining: 272ms
49:	learn: 25.6548184	total: 266ms	remaining: 266ms
50:	learn: 25.4010843	total: 271ms	remaining: 261ms
51:	learn: 24.9773937	total: 277ms	remaining: 255ms
52:	learn: 24.8026156	total: 282ms	remaining: 250ms
53:	learn: 24.5568053	total: 287ms	remaining: 245ms
54:	learn: 24.2281839	total: 293ms	remaining: 239ms
55:	learn: 23.9202795	total: 298ms	remaining: 234ms
56:	learn: 23.7625591	total: 302ms	remaining: 228ms
57:	learn: 23.5429721	total: 308ms	remaining: 223ms
58:	learn: 23.3175893	total: 313ms	remaining: 218ms
59:	learn: 23.2035130	total: 318ms	remaining: 212ms
60:	learn: 23.0232450	total: 322ms	remaining: 206ms
61:	learn: 22.8384958	total: 326ms	remaining: 200ms
62:	learn: 22.6499902	total: 331ms	remaining: 194ms
63:	learn: 22.4577426	total: 335ms	remaining: 188ms
64:	learn: 22.3333158	total: 340ms	remaining: 183ms
65:	learn: 22.2064131	total: 344ms	remaining: 177ms
66:	learn: 22.1434971	total: 348ms	remaining: 172ms
67:	learn: 21.9596519	total: 353ms	remaining: 166ms
68:	learn: 21.8475576	total: 358ms	remaining: 161ms
69:	learn: 21.6954745	total: 363ms	remaining: 155ms
70:	learn: 21.5635976	total: 367ms	remaining: 150ms
71:	learn: 21.4588506	total: 372ms	remaining: 145ms
72:	learn: 21.3527268	total: 376ms	remaining: 139ms
73:	learn: 21.2661288	total: 381ms	remaining: 134ms
74:	learn: 21.1817333	total: 386ms	remaining: 129ms
75:	learn: 21.0527553	total: 390ms	remaining: 123ms
76:	learn: 20.9229021	total: 395ms	remaining: 118ms
77:	learn: 20.7563946	total: 400ms	remaining: 113ms
78:	learn: 20.6569831	total: 404ms	remaining: 108ms
79:	learn: 20.4982663	total: 410ms	remaining: 102ms
80:	learn: 20.3185460	total: 418ms	remaining: 98.1ms
81:	learn: 20.2096241	total: 425ms	remaining: 93.3ms
82:	learn: 20.1274891	total: 433ms	remaining: 88.7ms
83:	learn: 20.0740139	total: 441ms	remaining: 84ms
84:	learn: 19.9630699	total: 446ms	remaining: 78.7ms
85:	learn: 19.8753899	total: 451ms	remaining: 73.5ms
86:	learn: 19.6563612	total: 456ms	remaining: 68.2ms
87:	learn: 19.4680232	total: 461ms	remaining: 62.9ms
88:	learn: 19.3503431	total: 467ms	remaining: 57.7ms
89:	learn: 19.2221379	total: 472ms	remaining: 52.4ms
90:	learn: 19.0732542	total: 477ms	remaining: 47.2ms
91:	learn: 18.9825190	total: 482ms	remaining: 41.9ms
92:	learn: 18.8839009	total: 487ms	remaining: 36.6ms
93:	learn: 18.8012219	total: 492ms	remaining: 31.4ms
94:	learn: 18.7172713	total: 497ms	remaining: 26.1ms
95:	learn: 18.6201170	total: 502ms	remaining: 20.9ms
96:	learn: 18.5318611	total: 507ms	remaining: 15.7ms
97:	learn: 18.3833356	total: 512ms	remaining: 10.4ms
98:	learn: 18.3289700	total: 516ms	remaining: 5.21ms
99:	learn: 18.2227333	total: 520ms	remaining: 0us
0:	learn: 46.3764524	total: 4.42ms	remaining: 437ms
1:	learn: 45.5561269	total: 8.28ms	remaining: 406ms
2:	learn: 44.8811245	total: 12.3ms	remaining: 396ms
3:	learn: 44.0788617	total: 16.4ms	remaining: 394ms
4:	learn: 43.3619790	total: 21.1ms	remaining: 401ms
5:	learn: 42.6912112	total: 25.4ms	remaining: 399ms
6:	learn: 42.2292118	total: 30.1ms	remaining: 400ms
7:	learn: 41.7725191	total: 34.4ms	remaining: 396ms
8:	learn: 41.1676614	total: 38.8ms	remaining: 392ms
9:	learn: 40.5771076	total: 42.8ms	remaining: 385ms
10:	learn: 39.8343757	total: 47.5ms	remaining: 384ms
11:	learn: 39.3761142	total: 51.7ms	remaining: 379ms
12:	learn: 38.5254692	total: 59.9ms	remaining: 401ms
13:	learn: 37.9629555	total: 68.3ms	remaining: 419ms
14:	learn: 37.4418438	total: 76.8ms	remaining: 435ms
15:	learn: 37.0507283	total: 84.1ms	remaining: 442ms
16:	learn: 36.6264217	total: 89.2ms	remaining: 436ms
17:	learn: 36.1114940	total: 94.4ms	remaining: 430ms
18:	learn: 35.7193862	total: 99.7ms	remaining: 425ms
19:	learn: 35.3301177	total: 105ms	remaining: 420ms
20:	learn: 35.0598280	total: 110ms	remaining: 414ms
21:	learn: 34.5469736	total: 115ms	remaining: 408ms
22:	learn: 34.2064215	total: 120ms	remaining: 402ms
23:	learn: 33.7280710	total: 125ms	remaining: 396ms
24:	learn: 33.3282940	total: 130ms	remaining: 391ms
25:	learn: 32.8478961	total: 136ms	remaining: 386ms
26:	learn: 32.5722164	total: 141ms	remaining: 380ms
27:	learn: 32.2457019	total: 146ms	remaining: 374ms
28:	learn: 31.9230495	total: 151ms	remaining: 370ms
29:	learn: 31.4311611	total: 157ms	remaining: 365ms
30:	learn: 30.9179052	total: 161ms	remaining: 357ms
31:	learn: 30.6201141	total: 164ms	remaining: 349ms
32:	learn: 30.3421106	total: 169ms	remaining: 343ms
33:	learn: 29.9885373	total: 173ms	remaining: 336ms
34:	learn: 29.7462780	total: 178ms	remaining: 330ms
35:	learn: 29.3607153	total: 182ms	remaining: 324ms
36:	learn: 29.1793078	total: 187ms	remaining: 318ms
37:	learn: 28.9276538	total: 191ms	remaining: 312ms
38:	learn: 28.6903934	total: 196ms	remaining: 306ms
39:	learn: 28.2095033	total: 199ms	remaining: 299ms
40:	learn: 27.7990608	total: 204ms	remaining: 293ms
41:	learn: 27.5406632	total: 208ms	remaining: 287ms
42:	learn: 27.2575376	total: 212ms	remaining: 281ms
43:	learn: 26.9741707	total: 216ms	remaining: 276ms
44:	learn: 26.6606899	total: 221ms	remaining: 270ms
45:	learn: 26.4015833	total: 225ms	remaining: 264ms
46:	learn: 26.1828993	total: 229ms	remaining: 258ms
47:	learn: 26.0233709	total: 232ms	remaining: 251ms
48:	learn: 25.9300399	total: 236ms	remaining: 246ms
49:	learn: 25.5861489	total: 241ms	remaining: 241ms
50:	learn: 25.4322012	total: 245ms	remaining: 236ms
51:	learn: 25.1595644	total: 250ms	remaining: 230ms
52:	learn: 24.9955303	total: 254ms	remaining: 225ms
53:	learn: 24.7273966	total: 259ms	remaining: 220ms
54:	learn: 24.5747978	total: 263ms	remaining: 215ms
55:	learn: 24.3807977	total: 270ms	remaining: 212ms
56:	learn: 24.1689569	total: 278ms	remaining: 210ms
57:	learn: 23.9898221	total: 287ms	remaining: 208ms
58:	learn: 23.7566414	total: 293ms	remaining: 204ms
59:	learn: 23.6641165	total: 300ms	remaining: 200ms
60:	learn: 23.5658066	total: 305ms	remaining: 195ms
61:	learn: 23.4338851	total: 310ms	remaining: 190ms
62:	learn: 23.2408837	total: 315ms	remaining: 185ms
63:	learn: 23.0642038	total: 320ms	remaining: 180ms
64:	learn: 22.9032045	total: 325ms	remaining: 175ms
65:	learn: 22.7736138	total: 330ms	remaining: 170ms
66:	learn: 22.6836443	total: 335ms	remaining: 165ms
67:	learn: 22.5983654	total: 340ms	remaining: 160ms
68:	learn: 22.4419813	total: 345ms	remaining: 155ms
69:	learn: 22.2863339	total: 350ms	remaining: 150ms
70:	learn: 22.1792943	total: 355ms	remaining: 145ms
71:	learn: 22.1130574	total: 360ms	remaining: 140ms
72:	learn: 21.9858161	total: 365ms	remaining: 135ms
73:	learn: 21.8577784	total: 370ms	remaining: 130ms
74:	learn: 21.7845222	total: 374ms	remaining: 125ms
75:	learn: 21.6831390	total: 378ms	remaining: 119ms
76:	learn: 21.6292521	total: 382ms	remaining: 114ms
77:	learn: 21.5789330	total: 387ms	remaining: 109ms
78:	learn: 21.5420942	total: 390ms	remaining: 104ms
79:	learn: 21.4280939	total: 394ms	remaining: 98.5ms
80:	learn: 21.3641165	total: 399ms	remaining: 93.5ms
81:	learn: 21.2734814	total: 402ms	remaining: 88.3ms
82:	learn: 21.2220323	total: 406ms	remaining: 83.2ms
83:	learn: 21.0625792	total: 410ms	remaining: 78.2ms
84:	learn: 20.9488320	total: 415ms	remaining: 73.3ms
85:	learn: 20.8504255	total: 419ms	remaining: 68.3ms
86:	learn: 20.7848510	total: 424ms	remaining: 63.3ms
87:	learn: 20.7247442	total: 428ms	remaining: 58.3ms
88:	learn: 20.5698590	total: 432ms	remaining: 53.4ms
89:	learn: 20.4067620	total: 437ms	remaining: 48.5ms
90:	learn: 20.3062482	total: 441ms	remaining: 43.6ms
91:	learn: 20.2029696	total: 446ms	remaining: 38.8ms
92:	learn: 20.1384849	total: 450ms	remaining: 33.9ms
93:	learn: 20.0260709	total: 455ms	remaining: 29ms
94:	learn: 19.9122100	total: 459ms	remaining: 24.2ms
95:	learn: 19.8648487	total: 464ms	remaining: 19.3ms
96:	learn: 19.8207072	total: 473ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 480ms	remaining: 9.8ms
98:	learn: 19.7042438	total: 489ms	remaining: 4.93ms
99:	learn: 19.6546645	total: 494ms	remaining: 0us
0:	learn: 47.0239288	total: 4.81ms	remaining: 476ms
1:	learn: 46.2253829	total: 9.92ms	remaining: 486ms
2:	learn: 45.5580301	total: 15.3ms	remaining: 495ms
3:	learn: 44.7273237	total: 20.2ms	remaining: 486ms
4:	learn: 43.8867421	total: 24.3ms	remaining: 462ms
5:	learn: 43.3615911	total: 28.4ms	remaining: 445ms
6:	learn: 42.8548390	total: 32.5ms	remaining: 431ms
7:	learn: 42.1606758	total: 36.2ms	remaining: 417ms
8:	learn: 41.6625870	total: 40.2ms	remaining: 406ms
9:	learn: 40.9497092	total: 44ms	remaining: 396ms
10:	learn: 40.1886318	total: 48.3ms	remaining: 391ms
11:	learn: 39.7456423	total: 52.5ms	remaining: 385ms
12:	learn: 39.1171373	total: 57.1ms	remaining: 382ms
13:	learn: 38.5451069	total: 61.1ms	remaining: 375ms
14:	learn: 38.0155834	total: 65.1ms	remaining: 369ms
15:	learn: 37.5631354	total: 69.4ms	remaining: 364ms
16:	learn: 37.1030023	total: 73.3ms	remaining: 358ms
17:	learn: 36.4563029	total: 77ms	remaining: 351ms
18:	learn: 36.0160976	total: 81.1ms	remaining: 346ms
19:	learn: 35.5079827	total: 85.3ms	remaining: 341ms
20:	learn: 35.2111885	total: 90.1ms	remaining: 339ms
21:	learn: 34.9397465	total: 94.8ms	remaining: 336ms
22:	learn: 34.5270048	total: 99.8ms	remaining: 334ms
23:	learn: 34.0169260	total: 105ms	remaining: 332ms
24:	learn: 33.7454892	total: 110ms	remaining: 329ms
25:	learn: 33.2648157	total: 115ms	remaining: 326ms
26:	learn: 32.8899427	total: 119ms	remaining: 323ms
27:	learn: 32.6185050	total: 124ms	remaining: 318ms
28:	learn: 32.3528531	total: 128ms	remaining: 314ms
29:	learn: 32.0859923	total: 134ms	remaining: 312ms
30:	learn: 31.6511144	total: 142ms	remaining: 315ms
31:	learn: 31.2571765	total: 151ms	remaining: 320ms
32:	learn: 30.9770049	total: 159ms	remaining: 324ms
33:	learn: 30.6084872	total: 169ms	remaining: 328ms
34:	learn: 30.3448632	total: 174ms	remaining: 324ms
35:	learn: 30.0360942	total: 179ms	remaining: 319ms
36:	learn: 29.6648968	total: 185ms	remaining: 314ms
37:	learn: 29.3165114	total: 189ms	remaining: 309ms
38:	learn: 29.0829198	total: 195ms	remaining: 304ms
39:	learn: 28.7752064	total: 199ms	remaining: 299ms
40:	learn: 28.3622191	total: 204ms	remaining: 294ms
41:	learn: 28.1346631	total: 210ms	remaining: 290ms
42:	learn: 27.9585719	total: 215ms	remaining: 285ms
43:	learn: 27.6565566	total: 219ms	remaining: 279ms
44:	learn: 27.3616172	total: 224ms	remaining: 274ms
45:	learn: 27.0658637	total: 229ms	remaining: 269ms
46:	learn: 26.8660382	total: 234ms	remaining: 264ms
47:	learn: 26.6536078	total: 239ms	remaining: 259ms
48:	learn: 26.3524440	total: 243ms	remaining: 253ms
49:	learn: 26.1595277	total: 247ms	remaining: 247ms
50:	learn: 25.9273523	total: 251ms	remaining: 241ms
51:	learn: 25.7195580	total: 255ms	remaining: 235ms
52:	learn: 25.5730225	total: 260ms	remaining: 230ms
53:	learn: 25.3455276	total: 264ms	remaining: 225ms
54:	learn: 25.2289675	total: 269ms	remaining: 220ms
55:	learn: 25.0133024	total: 273ms	remaining: 215ms
56:	learn: 24.8406714	total: 278ms	remaining: 209ms
57:	learn: 24.6367857	total: 282ms	remaining: 204ms
58:	learn: 24.5338177	total: 287ms	remaining: 199ms
59:	learn: 24.3799964	total: 291ms	remaining: 194ms
60:	learn: 24.1447492	total: 295ms	remaining: 189ms
61:	learn: 23.9880495	total: 299ms	remaining: 183ms
62:	learn: 23.7140630	total: 303ms	remaining: 178ms
63:	learn: 23.5003791	total: 308ms	remaining: 173ms
64:	learn: 23.3207645	total: 313ms	remaining: 168ms
65:	learn: 23.1958356	total: 317ms	remaining: 163ms
66:	learn: 23.0471302	total: 321ms	remaining: 158ms
67:	learn: 22.8977183	total: 326ms	remaining: 153ms
68:	learn: 22.7187400	total: 330ms	remaining: 148ms
69:	learn: 22.6523405	total: 335ms	remaining: 143ms
70:	learn: 22.4767453	total: 342ms	remaining: 140ms
71:	learn: 22.3243677	total: 349ms	remaining: 136ms
72:	learn: 22.2133096	total: 356ms	remaining: 132ms
73:	learn: 22.1151713	total: 364ms	remaining: 128ms
74:	learn: 22.0296666	total: 371ms	remaining: 124ms
75:	learn: 21.9195980	total: 377ms	remaining: 119ms
76:	learn: 21.8401730	total: 382ms	remaining: 114ms
77:	learn: 21.8079797	total: 387ms	remaining: 109ms
78:	learn: 21.7274109	total: 392ms	remaining: 104ms
79:	learn: 21.6663032	total: 397ms	remaining: 99.4ms
80:	learn: 21.5633117	total: 402ms	remaining: 94.4ms
81:	learn: 21.4542467	total: 407ms	remaining: 89.4ms
82:	learn: 21.3177957	total: 413ms	remaining: 84.6ms
83:	learn: 21.1289167	total: 418ms	remaining: 79.6ms
84:	learn: 21.0297368	total: 423ms	remaining: 74.7ms
85:	learn: 20.9089564	total: 428ms	remaining: 69.7ms
86:	learn: 20.7653988	total: 433ms	remaining: 64.7ms
87:	learn: 20.6521894	total: 438ms	remaining: 59.7ms
88:	learn: 20.5193021	total: 443ms	remaining: 54.7ms
89:	learn: 20.4361620	total: 447ms	remaining: 49.7ms
90:	learn: 20.3546710	total: 451ms	remaining: 44.6ms
91:	learn: 20.2513296	total: 455ms	remaining: 39.5ms
92:	learn: 20.1605550	total: 458ms	remaining: 34.5ms
93:	learn: 20.0515942	total: 462ms	remaining: 29.5ms
94:	learn: 19.9800764	total: 467ms	remaining: 24.6ms
95:	learn: 19.8996532	total: 471ms	remaining: 19.6ms
96:	learn: 19.8450910	total: 475ms	remaining: 14.7ms
97:	learn: 19.7887346	total: 479ms	remaining: 9.78ms
98:	learn: 19.7230872	total: 485ms	remaining: 4.9ms
99:	learn: 19.6328825	total: 490ms	remaining: 0us
0:	learn: 27.5585353	total: 5.8ms	remaining: 575ms
1:	learn: 27.1656995	total: 11ms	remaining: 541ms
2:	learn: 26.8590175	total: 16.2ms	remaining: 524ms
3:	learn: 26.5818406	total: 20.8ms	remaining: 499ms
4:	learn: 26.1148663	total: 25.9ms	remaining: 492ms
5:	learn: 25.7690484	total: 30.7ms	remaining: 481ms
6:	learn: 25.3489206	total: 36.5ms	remaining: 486ms
7:	learn: 24.9542406	total: 42.3ms	remaining: 487ms
8:	learn: 24.6777517	total: 47.7ms	remaining: 482ms
9:	learn: 24.3242344	total: 52.6ms	remaining: 473ms
10:	learn: 24.0383073	total: 56.9ms	remaining: 461ms
11:	learn: 23.7383420	total: 61.7ms	remaining: 452ms
12:	learn: 23.3461670	total: 66.6ms	remaining: 445ms
13:	learn: 23.0928636	total: 71.2ms	remaining: 437ms
14:	learn: 22.8770414	total: 76ms	remaining: 431ms
15:	learn: 22.6323214	total: 80.9ms	remaining: 425ms
16:	learn: 22.3597072	total: 85.7ms	remaining: 419ms
17:	learn: 22.1079813	total: 90.2ms	remaining: 411ms
18:	learn: 21.8421199	total: 95.1ms	remaining: 405ms
19:	learn: 21.6576508	total: 100ms	remaining: 401ms
20:	learn: 21.4301268	total: 105ms	remaining: 395ms
21:	learn: 21.2287388	total: 110ms	remaining: 389ms
22:	learn: 21.0553872	total: 114ms	remaining: 382ms
23:	learn: 20.8977091	total: 119ms	remaining: 378ms
24:	learn: 20.6619051	total: 124ms	remaining: 373ms
25:	learn: 20.5040955	total: 129ms	remaining: 367ms
26:	learn: 20.3181195	total: 134ms	remaining: 361ms
27:	learn: 20.0869436	total: 138ms	remaining: 356ms
28:	learn: 19.9375985	total: 143ms	remaining: 351ms
29:	learn: 19.8247516	total: 151ms	remaining: 353ms
30:	learn: 19.6261697	total: 159ms	remaining: 354ms
31:	learn: 19.4547236	total: 169ms	remaining: 359ms
32:	learn: 19.3157092	total: 175ms	remaining: 355ms
33:	learn: 19.1561419	total: 182ms	remaining: 353ms
34:	learn: 19.0453620	total: 188ms	remaining: 349ms
35:	learn: 18.8738574	total: 193ms	remaining: 343ms
36:	learn: 18.7072907	total: 198ms	remaining: 337ms
37:	learn: 18.5877943	total: 203ms	remaining: 331ms
38:	learn: 18.4436380	total: 208ms	remaining: 326ms
39:	learn: 18.3463356	total: 214ms	remaining: 320ms
40:	learn: 18.2008059	total: 218ms	remaining: 314ms
41:	learn: 18.0582079	total: 224ms	remaining: 309ms
42:	learn: 17.8891982	total: 243ms	remaining: 323ms
43:	learn: 17.7332246	total: 247ms	remaining: 315ms
44:	learn: 17.6206421	total: 252ms	remaining: 308ms
45:	learn: 17.4982800	total: 256ms	remaining: 301ms
46:	learn: 17.3970150	total: 260ms	remaining: 293ms
47:	learn: 17.3058203	total: 264ms	remaining: 286ms
48:	learn: 17.1789256	total: 269ms	remaining: 280ms
49:	learn: 17.0916229	total: 273ms	remaining: 273ms
50:	learn: 16.9859820	total: 278ms	remaining: 267ms
51:	learn: 16.8995582	total: 283ms	remaining: 261ms
52:	learn: 16.8137014	total: 286ms	remaining: 254ms
53:	learn: 16.7021451	total: 291ms	remaining: 248ms
54:	learn: 16.5895582	total: 295ms	remaining: 241ms
55:	learn: 16.5015639	total: 299ms	remaining: 235ms
56:	learn: 16.4356637	total: 303ms	remaining: 229ms
57:	learn: 16.3514525	total: 308ms	remaining: 223ms
58:	learn: 16.2401369	total: 313ms	remaining: 217ms
59:	learn: 16.1293223	total: 317ms	remaining: 211ms
60:	learn: 16.0271167	total: 322ms	remaining: 206ms
61:	learn: 15.9126257	total: 327ms	remaining: 201ms
62:	learn: 15.8391096	total: 332ms	remaining: 195ms
63:	learn: 15.7441773	total: 337ms	remaining: 189ms
64:	learn: 15.6885195	total: 341ms	remaining: 184ms
65:	learn: 15.6052039	total: 346ms	remaining: 178ms
66:	learn: 15.5074202	total: 350ms	remaining: 173ms
67:	learn: 15.4054338	total: 355ms	remaining: 167ms
68:	learn: 15.2885714	total: 361ms	remaining: 162ms
69:	learn: 15.2157472	total: 369ms	remaining: 158ms
70:	learn: 15.1031554	total: 376ms	remaining: 154ms
71:	learn: 15.0237470	total: 385ms	remaining: 150ms
72:	learn: 14.9756825	total: 393ms	remaining: 146ms
73:	learn: 14.8840596	total: 399ms	remaining: 140ms
74:	learn: 14.8077061	total: 404ms	remaining: 135ms
75:	learn: 14.7444437	total: 410ms	remaining: 129ms
76:	learn: 14.6751720	total: 415ms	remaining: 124ms
77:	learn: 14.5830333	total: 429ms	remaining: 121ms
78:	learn: 14.5241206	total: 434ms	remaining: 115ms
79:	learn: 14.4892731	total: 439ms	remaining: 110ms
80:	learn: 14.4256605	total: 444ms	remaining: 104ms
81:	learn: 14.3666860	total: 449ms	remaining: 98.5ms
82:	learn: 14.2938372	total: 454ms	remaining: 93ms
83:	learn: 14.2161532	total: 459ms	remaining: 87.5ms
84:	learn: 14.1582910	total: 465ms	remaining: 82.1ms
85:	learn: 14.1029153	total: 470ms	remaining: 76.5ms
86:	learn: 14.0475835	total: 476ms	remaining: 71.1ms
87:	learn: 13.9892661	total: 481ms	remaining: 65.6ms
88:	learn: 13.9481628	total: 486ms	remaining: 60.1ms
89:	learn: 13.8483991	total: 492ms	remaining: 54.6ms
90:	learn: 13.7775614	total: 497ms	remaining: 49.1ms
91:	learn: 13.7304585	total: 503ms	remaining: 43.7ms
92:	learn: 13.6783381	total: 508ms	remaining: 38.2ms
93:	learn: 13.6356964	total: 513ms	remaining: 32.7ms
94:	learn: 13.5924371	total: 518ms	remaining: 27.2ms
95:	learn: 13.5400746	total: 522ms	remaining: 21.8ms
96:	learn: 13.4897333	total: 526ms	remaining: 16.3ms
97:	learn: 13.4470321	total: 532ms	remaining: 10.8ms
98:	learn: 13.3856082	total: 537ms	remaining: 5.42ms
99:	learn: 13.3082371	total: 542ms	remaining: 0us
0:	learn: 43.0395283	total: 9.37ms	remaining: 927ms
1:	learn: 42.1130223	total: 16.9ms	remaining: 828ms
2:	learn: 41.1753409	total: 22ms	remaining: 712ms
3:	learn: 40.3637444	total: 27.3ms	remaining: 656ms
4:	learn: 39.6508088	total: 32.1ms	remaining: 609ms
5:	learn: 38.7217934	total: 37ms	remaining: 579ms
6:	learn: 37.8538055	total: 42ms	remaining: 558ms
7:	learn: 36.9793574	total: 47ms	remaining: 541ms
8:	learn: 36.3076984	total: 52.3ms	remaining: 529ms
9:	learn: 35.6673160	total: 57.4ms	remaining: 517ms
10:	learn: 34.8889800	total: 62.4ms	remaining: 505ms
11:	learn: 34.1675517	total: 67.2ms	remaining: 493ms
12:	learn: 33.6779564	total: 71.7ms	remaining: 480ms
13:	learn: 33.0710039	total: 76.7ms	remaining: 471ms
14:	learn: 32.4966674	total: 81.7ms	remaining: 463ms
15:	learn: 31.9492856	total: 87ms	remaining: 457ms
16:	learn: 31.5108129	total: 91.2ms	remaining: 445ms
17:	learn: 30.9804023	total: 95.7ms	remaining: 436ms
18:	learn: 30.4169089	total: 99.8ms	remaining: 425ms
19:	learn: 29.8930375	total: 104ms	remaining: 417ms
20:	learn: 29.3974421	total: 109ms	remaining: 409ms
21:	learn: 28.8792307	total: 113ms	remaining: 402ms
22:	learn: 28.3894474	total: 118ms	remaining: 394ms
23:	learn: 27.9921276	total: 122ms	remaining: 387ms
24:	learn: 27.6158887	total: 126ms	remaining: 379ms
25:	learn: 27.2866950	total: 131ms	remaining: 372ms
26:	learn: 26.8770708	total: 135ms	remaining: 365ms
27:	learn: 26.6233005	total: 139ms	remaining: 357ms
28:	learn: 26.2921934	total: 143ms	remaining: 350ms
29:	learn: 25.9156920	total: 147ms	remaining: 343ms
30:	learn: 25.5311106	total: 149ms	remaining: 331ms
31:	learn: 25.2178997	total: 154ms	remaining: 326ms
32:	learn: 24.8572196	total: 158ms	remaining: 321ms
33:	learn: 24.5849710	total: 163ms	remaining: 317ms
34:	learn: 24.2209190	total: 168ms	remaining: 312ms
35:	learn: 23.8708250	total: 172ms	remaining: 306ms
36:	learn: 23.5325279	total: 176ms	remaining: 300ms
37:	learn: 23.2116148	total: 181ms	remaining: 296ms
38:	learn: 22.9696787	total: 186ms	remaining: 291ms
39:	learn: 22.7936783	total: 194ms	remaining: 292ms
40:	learn: 22.6228847	total: 202ms	remaining: 291ms
41:	learn: 22.3691527	total: 210ms	remaining: 291ms
42:	learn: 22.1002173	total: 218ms	remaining: 289ms
43:	learn: 21.9157268	total: 223ms	remaining: 284ms
44:	learn: 21.7229102	total: 228ms	remaining: 278ms
45:	learn: 21.4642005	total: 232ms	remaining: 273ms
46:	learn: 21.3029442	total: 237ms	remaining: 268ms
47:	learn: 21.1469792	total: 242ms	remaining: 262ms
48:	learn: 20.9458235	total: 247ms	remaining: 257ms
49:	learn: 20.7335242	total: 252ms	remaining: 252ms
50:	learn: 20.5440269	total: 257ms	remaining: 247ms
51:	learn: 20.3661449	total: 262ms	remaining: 242ms
52:	learn: 20.2158134	total: 268ms	remaining: 238ms
53:	learn: 19.9934873	total: 273ms	remaining: 232ms
54:	learn: 19.7879739	total: 277ms	remaining: 227ms
55:	learn: 19.6630460	total: 283ms	remaining: 222ms
56:	learn: 19.5152729	total: 288ms	remaining: 217ms
57:	learn: 19.3581128	total: 292ms	remaining: 212ms
58:	learn: 19.2209303	total: 296ms	remaining: 206ms
59:	learn: 19.0965248	total: 300ms	remaining: 200ms
60:	learn: 19.0035954	total: 304ms	remaining: 195ms
61:	learn: 18.8554149	total: 308ms	remaining: 189ms
62:	learn: 18.7095427	total: 312ms	remaining: 183ms
63:	learn: 18.5751494	total: 316ms	remaining: 178ms
64:	learn: 18.4678251	total: 320ms	remaining: 173ms
65:	learn: 18.3500325	total: 325ms	remaining: 167ms
66:	learn: 18.2088983	total: 329ms	remaining: 162ms
67:	learn: 18.0737705	total: 333ms	remaining: 157ms
68:	learn: 17.9325058	total: 337ms	remaining: 152ms
69:	learn: 17.8003911	total: 341ms	remaining: 146ms
70:	learn: 17.7385366	total: 345ms	remaining: 141ms
71:	learn: 17.6106998	total: 350ms	remaining: 136ms
72:	learn: 17.4816270	total: 354ms	remaining: 131ms
73:	learn: 17.4025554	total: 359ms	remaining: 126ms
74:	learn: 17.2902108	total: 363ms	remaining: 121ms
75:	learn: 17.2158048	total: 368ms	remaining: 116ms
76:	learn: 17.1261053	total: 372ms	remaining: 111ms
77:	learn: 17.0308917	total: 377ms	remaining: 106ms
78:	learn: 16.9546705	total: 382ms	remaining: 102ms
79:	learn: 16.8319165	total: 390ms	remaining: 97.4ms
80:	learn: 16.7687017	total: 397ms	remaining: 93.1ms
81:	learn: 16.6972326	total: 405ms	remaining: 88.9ms
82:	learn: 16.6124580	total: 412ms	remaining: 84.3ms
83:	learn: 16.4999052	total: 418ms	remaining: 79.7ms
84:	learn: 16.4302484	total: 423ms	remaining: 74.7ms
85:	learn: 16.3201363	total: 428ms	remaining: 69.7ms
86:	learn: 16.2534314	total: 433ms	remaining: 64.8ms
87:	learn: 16.1720485	total: 438ms	remaining: 59.8ms
88:	learn: 16.0625751	total: 443ms	remaining: 54.8ms
89:	learn: 15.9135088	total: 449ms	remaining: 49.9ms
90:	learn: 15.8658863	total: 454ms	remaining: 44.9ms
91:	learn: 15.8066805	total: 459ms	remaining: 39.9ms
92:	learn: 15.7412103	total: 465ms	remaining: 35ms
93:	learn: 15.6542776	total: 470ms	remaining: 30ms
94:	learn: 15.5760334	total: 475ms	remaining: 25ms
95:	learn: 15.5434131	total: 480ms	remaining: 20ms
96:	learn: 15.4709561	total: 486ms	remaining: 15ms
97:	learn: 15.4449618	total: 490ms	remaining: 10ms
98:	learn: 15.3752761	total: 495ms	remaining: 5ms
99:	learn: 15.3106595	total: 499ms	remaining: 0us
0:	learn: 46.7142257	total: 4.78ms	remaining: 474ms
1:	learn: 45.7634153	total: 9.63ms	remaining: 472ms
2:	learn: 45.0054253	total: 14ms	remaining: 453ms
3:	learn: 44.2120432	total: 18.3ms	remaining: 440ms
4:	learn: 43.3960472	total: 22.7ms	remaining: 431ms
5:	learn: 42.8588120	total: 27ms	remaining: 423ms
6:	learn: 41.9533701	total: 31.4ms	remaining: 417ms
7:	learn: 41.2745030	total: 36ms	remaining: 415ms
8:	learn: 40.6797495	total: 40.7ms	remaining: 411ms
9:	learn: 39.9899571	total: 50ms	remaining: 450ms
10:	learn: 39.4682100	total: 57ms	remaining: 462ms
11:	learn: 39.0305595	total: 65.4ms	remaining: 480ms
12:	learn: 38.4200417	total: 72.8ms	remaining: 487ms
13:	learn: 37.8425194	total: 78.3ms	remaining: 481ms
14:	learn: 37.4203127	total: 83.2ms	remaining: 472ms
15:	learn: 36.9917688	total: 88.3ms	remaining: 464ms
16:	learn: 36.5544138	total: 93.7ms	remaining: 457ms
17:	learn: 36.0727019	total: 98.9ms	remaining: 451ms
18:	learn: 35.4835715	total: 104ms	remaining: 444ms
19:	learn: 34.9865654	total: 110ms	remaining: 440ms
20:	learn: 34.6063373	total: 115ms	remaining: 434ms
21:	learn: 34.0997289	total: 121ms	remaining: 428ms
22:	learn: 33.7313171	total: 126ms	remaining: 420ms
23:	learn: 33.3582000	total: 130ms	remaining: 413ms
24:	learn: 32.9432456	total: 136ms	remaining: 407ms
25:	learn: 32.5220888	total: 141ms	remaining: 401ms
26:	learn: 32.2172292	total: 146ms	remaining: 395ms
27:	learn: 31.8972904	total: 150ms	remaining: 387ms
28:	learn: 31.6405350	total: 155ms	remaining: 378ms
29:	learn: 31.4167702	total: 159ms	remaining: 370ms
30:	learn: 30.8541961	total: 160ms	remaining: 357ms
31:	learn: 30.5572111	total: 165ms	remaining: 351ms
32:	learn: 30.1700399	total: 169ms	remaining: 344ms
33:	learn: 29.8537271	total: 174ms	remaining: 337ms
34:	learn: 29.6192540	total: 179ms	remaining: 332ms
35:	learn: 29.3276362	total: 183ms	remaining: 326ms
36:	learn: 28.9985179	total: 188ms	remaining: 320ms
37:	learn: 28.7046880	total: 192ms	remaining: 314ms
38:	learn: 28.4412677	total: 197ms	remaining: 308ms
39:	learn: 28.1277292	total: 201ms	remaining: 302ms
40:	learn: 27.9000750	total: 206ms	remaining: 296ms
41:	learn: 27.5433162	total: 210ms	remaining: 290ms
42:	learn: 27.2493285	total: 215ms	remaining: 285ms
43:	learn: 26.9576632	total: 216ms	remaining: 275ms
44:	learn: 26.6177110	total: 221ms	remaining: 270ms
45:	learn: 26.2812456	total: 226ms	remaining: 265ms
46:	learn: 26.0803859	total: 230ms	remaining: 260ms
47:	learn: 25.9543581	total: 235ms	remaining: 254ms
48:	learn: 25.7951582	total: 240ms	remaining: 249ms
49:	learn: 25.6548184	total: 244ms	remaining: 244ms
50:	learn: 25.4010843	total: 248ms	remaining: 239ms
51:	learn: 24.9773937	total: 253ms	remaining: 234ms
52:	learn: 24.8026156	total: 262ms	remaining: 232ms
53:	learn: 24.5568053	total: 269ms	remaining: 229ms
54:	learn: 24.2281839	total: 282ms	remaining: 231ms
55:	learn: 23.9202795	total: 289ms	remaining: 227ms
56:	learn: 23.7625591	total: 294ms	remaining: 222ms
57:	learn: 23.5429721	total: 299ms	remaining: 217ms
58:	learn: 23.3175893	total: 304ms	remaining: 211ms
59:	learn: 23.2035130	total: 309ms	remaining: 206ms
60:	learn: 23.0232450	total: 314ms	remaining: 201ms
61:	learn: 22.8384958	total: 320ms	remaining: 196ms
62:	learn: 22.6499902	total: 326ms	remaining: 191ms
63:	learn: 22.4577426	total: 331ms	remaining: 186ms
64:	learn: 22.3333158	total: 337ms	remaining: 181ms
65:	learn: 22.2064131	total: 342ms	remaining: 176ms
66:	learn: 22.1434971	total: 347ms	remaining: 171ms
67:	learn: 21.9596519	total: 353ms	remaining: 166ms
68:	learn: 21.8475576	total: 359ms	remaining: 161ms
69:	learn: 21.6954745	total: 364ms	remaining: 156ms
70:	learn: 21.5635976	total: 369ms	remaining: 151ms
71:	learn: 21.4588506	total: 373ms	remaining: 145ms
72:	learn: 21.3527268	total: 377ms	remaining: 140ms
73:	learn: 21.2661288	total: 382ms	remaining: 134ms
74:	learn: 21.1817333	total: 386ms	remaining: 129ms
75:	learn: 21.0527553	total: 390ms	remaining: 123ms
76:	learn: 20.9229021	total: 394ms	remaining: 118ms
77:	learn: 20.7563946	total: 398ms	remaining: 112ms
78:	learn: 20.6569831	total: 403ms	remaining: 107ms
79:	learn: 20.4982663	total: 407ms	remaining: 102ms
80:	learn: 20.3185460	total: 412ms	remaining: 96.6ms
81:	learn: 20.2096241	total: 416ms	remaining: 91.3ms
82:	learn: 20.1274891	total: 421ms	remaining: 86.1ms
83:	learn: 20.0740139	total: 425ms	remaining: 81ms
84:	learn: 19.9630699	total: 430ms	remaining: 75.8ms
85:	learn: 19.8753899	total: 434ms	remaining: 70.7ms
86:	learn: 19.6563612	total: 439ms	remaining: 65.6ms
87:	learn: 19.4680232	total: 444ms	remaining: 60.5ms
88:	learn: 19.3503431	total: 448ms	remaining: 55.4ms
89:	learn: 19.2221379	total: 452ms	remaining: 50.2ms
90:	learn: 19.0732542	total: 457ms	remaining: 45.2ms
91:	learn: 18.9825190	total: 465ms	remaining: 40.4ms
92:	learn: 18.8839009	total: 473ms	remaining: 35.6ms
93:	learn: 18.8012219	total: 480ms	remaining: 30.7ms
94:	learn: 18.7172713	total: 488ms	remaining: 25.7ms
95:	learn: 18.6201170	total: 493ms	remaining: 20.6ms
96:	learn: 18.5318611	total: 498ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 504ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 509ms	remaining: 5.14ms
99:	learn: 18.2227333	total: 514ms	remaining: 0us
0:	learn: 46.3764524	total: 4.82ms	remaining: 478ms
1:	learn: 45.5561269	total: 9.04ms	remaining: 443ms
2:	learn: 44.8811245	total: 13.6ms	remaining: 441ms
3:	learn: 44.0788617	total: 18.5ms	remaining: 445ms
4:	learn: 43.3619790	total: 23.5ms	remaining: 447ms
5:	learn: 42.6912112	total: 28.2ms	remaining: 442ms
6:	learn: 42.2292118	total: 32.7ms	remaining: 434ms
7:	learn: 41.7725191	total: 37.1ms	remaining: 426ms
8:	learn: 41.1676614	total: 41.3ms	remaining: 417ms
9:	learn: 40.5771076	total: 45.4ms	remaining: 409ms
10:	learn: 39.8343757	total: 49.3ms	remaining: 399ms
11:	learn: 39.3761142	total: 53ms	remaining: 388ms
12:	learn: 38.5254692	total: 57.1ms	remaining: 382ms
13:	learn: 37.9629555	total: 61.6ms	remaining: 379ms
14:	learn: 37.4418438	total: 66.1ms	remaining: 374ms
15:	learn: 37.0507283	total: 70.5ms	remaining: 370ms
16:	learn: 36.6264217	total: 75ms	remaining: 366ms
17:	learn: 36.1114940	total: 79.4ms	remaining: 362ms
18:	learn: 35.7193862	total: 83.6ms	remaining: 356ms
19:	learn: 35.3301177	total: 87.8ms	remaining: 351ms
20:	learn: 35.0598280	total: 92.2ms	remaining: 347ms
21:	learn: 34.5469736	total: 98.9ms	remaining: 351ms
22:	learn: 34.2064215	total: 106ms	remaining: 355ms
23:	learn: 33.7280710	total: 115ms	remaining: 364ms
24:	learn: 33.3282940	total: 122ms	remaining: 365ms
25:	learn: 32.8478961	total: 137ms	remaining: 389ms
26:	learn: 32.5722164	total: 142ms	remaining: 383ms
27:	learn: 32.2457019	total: 147ms	remaining: 378ms
28:	learn: 31.9230495	total: 152ms	remaining: 372ms
29:	learn: 31.4311611	total: 157ms	remaining: 367ms
30:	learn: 30.9179052	total: 162ms	remaining: 361ms
31:	learn: 30.6201141	total: 167ms	remaining: 356ms
32:	learn: 30.3421106	total: 173ms	remaining: 350ms
33:	learn: 29.9885373	total: 177ms	remaining: 344ms
34:	learn: 29.7462780	total: 182ms	remaining: 338ms
35:	learn: 29.3607153	total: 187ms	remaining: 333ms
36:	learn: 29.1793078	total: 193ms	remaining: 328ms
37:	learn: 28.9276538	total: 198ms	remaining: 323ms
38:	learn: 28.6903934	total: 202ms	remaining: 316ms
39:	learn: 28.2095033	total: 206ms	remaining: 308ms
40:	learn: 27.7990608	total: 210ms	remaining: 302ms
41:	learn: 27.5406632	total: 214ms	remaining: 295ms
42:	learn: 27.2575376	total: 218ms	remaining: 289ms
43:	learn: 26.9741707	total: 222ms	remaining: 282ms
44:	learn: 26.6606899	total: 226ms	remaining: 276ms
45:	learn: 26.4015833	total: 230ms	remaining: 270ms
46:	learn: 26.1828993	total: 234ms	remaining: 264ms
47:	learn: 26.0233709	total: 237ms	remaining: 256ms
48:	learn: 25.9300399	total: 240ms	remaining: 250ms
49:	learn: 25.5861489	total: 245ms	remaining: 245ms
50:	learn: 25.4322012	total: 249ms	remaining: 240ms
51:	learn: 25.1595644	total: 253ms	remaining: 234ms
52:	learn: 24.9955303	total: 257ms	remaining: 228ms
53:	learn: 24.7273966	total: 262ms	remaining: 223ms
54:	learn: 24.5747978	total: 266ms	remaining: 218ms
55:	learn: 24.3807977	total: 271ms	remaining: 213ms
56:	learn: 24.1689569	total: 276ms	remaining: 208ms
57:	learn: 23.9898221	total: 280ms	remaining: 203ms
58:	learn: 23.7566414	total: 284ms	remaining: 198ms
59:	learn: 23.6641165	total: 289ms	remaining: 192ms
60:	learn: 23.5658066	total: 293ms	remaining: 188ms
61:	learn: 23.4338851	total: 301ms	remaining: 184ms
62:	learn: 23.2408837	total: 308ms	remaining: 181ms
63:	learn: 23.0642038	total: 315ms	remaining: 177ms
64:	learn: 22.9032045	total: 322ms	remaining: 174ms
65:	learn: 22.7736138	total: 329ms	remaining: 170ms
66:	learn: 22.6836443	total: 335ms	remaining: 165ms
67:	learn: 22.5983654	total: 340ms	remaining: 160ms
68:	learn: 22.4419813	total: 345ms	remaining: 155ms
69:	learn: 22.2863339	total: 350ms	remaining: 150ms
70:	learn: 22.1792943	total: 355ms	remaining: 145ms
71:	learn: 22.1130574	total: 360ms	remaining: 140ms
72:	learn: 21.9858161	total: 365ms	remaining: 135ms
73:	learn: 21.8577784	total: 370ms	remaining: 130ms
74:	learn: 21.7845222	total: 376ms	remaining: 125ms
75:	learn: 21.6831390	total: 381ms	remaining: 120ms
76:	learn: 21.6292521	total: 386ms	remaining: 115ms
77:	learn: 21.5789330	total: 391ms	remaining: 110ms
78:	learn: 21.5420942	total: 396ms	remaining: 105ms
79:	learn: 21.4280939	total: 401ms	remaining: 100ms
80:	learn: 21.3641165	total: 406ms	remaining: 95.3ms
81:	learn: 21.2734814	total: 411ms	remaining: 90.2ms
82:	learn: 21.2220323	total: 416ms	remaining: 85.2ms
83:	learn: 21.0625792	total: 420ms	remaining: 80ms
84:	learn: 20.9488320	total: 424ms	remaining: 74.8ms
85:	learn: 20.8504255	total: 428ms	remaining: 69.6ms
86:	learn: 20.7848510	total: 432ms	remaining: 64.5ms
87:	learn: 20.7247442	total: 436ms	remaining: 59.4ms
88:	learn: 20.5698590	total: 440ms	remaining: 54.4ms
89:	learn: 20.4067620	total: 444ms	remaining: 49.3ms
90:	learn: 20.3062482	total: 449ms	remaining: 44.4ms
91:	learn: 20.2029696	total: 453ms	remaining: 39.4ms
92:	learn: 20.1384849	total: 457ms	remaining: 34.4ms
93:	learn: 20.0260709	total: 461ms	remaining: 29.4ms
94:	learn: 19.9122100	total: 465ms	remaining: 24.5ms
95:	learn: 19.8648487	total: 470ms	remaining: 19.6ms
96:	learn: 19.8207072	total: 475ms	remaining: 14.7ms
97:	learn: 19.7261189	total: 479ms	remaining: 9.77ms
98:	learn: 19.7042438	total: 483ms	remaining: 4.88ms
99:	learn: 19.6546645	total: 487ms	remaining: 0us
0:	learn: 47.0239288	total: 5.43ms	remaining: 538ms
1:	learn: 46.2253829	total: 11.3ms	remaining: 554ms
2:	learn: 45.5580301	total: 16.6ms	remaining: 536ms
3:	learn: 44.7273237	total: 21.5ms	remaining: 517ms
4:	learn: 43.8867421	total: 26.7ms	remaining: 508ms
5:	learn: 43.3615911	total: 32.1ms	remaining: 503ms
6:	learn: 42.8548390	total: 37.6ms	remaining: 500ms
7:	learn: 42.1606758	total: 43.2ms	remaining: 497ms
8:	learn: 41.6625870	total: 47.9ms	remaining: 484ms
9:	learn: 40.9497092	total: 53.4ms	remaining: 481ms
10:	learn: 40.1886318	total: 59.1ms	remaining: 478ms
11:	learn: 39.7456423	total: 63.4ms	remaining: 465ms
12:	learn: 39.1171373	total: 67.7ms	remaining: 453ms
13:	learn: 38.5451069	total: 71.9ms	remaining: 441ms
14:	learn: 38.0155834	total: 76ms	remaining: 430ms
15:	learn: 37.5631354	total: 80.2ms	remaining: 421ms
16:	learn: 37.1030023	total: 84ms	remaining: 410ms
17:	learn: 36.4563029	total: 88.1ms	remaining: 401ms
18:	learn: 36.0160976	total: 92.4ms	remaining: 394ms
19:	learn: 35.5079827	total: 96.7ms	remaining: 387ms
20:	learn: 35.2111885	total: 101ms	remaining: 380ms
21:	learn: 34.9397465	total: 106ms	remaining: 374ms
22:	learn: 34.5270048	total: 110ms	remaining: 367ms
23:	learn: 34.0169260	total: 114ms	remaining: 363ms
24:	learn: 33.7454892	total: 119ms	remaining: 357ms
25:	learn: 33.2648157	total: 124ms	remaining: 352ms
26:	learn: 32.8899427	total: 128ms	remaining: 347ms
27:	learn: 32.6185050	total: 133ms	remaining: 342ms
28:	learn: 32.3528531	total: 138ms	remaining: 337ms
29:	learn: 32.0859923	total: 142ms	remaining: 331ms
30:	learn: 31.6511144	total: 146ms	remaining: 326ms
31:	learn: 31.2571765	total: 151ms	remaining: 321ms
32:	learn: 30.9770049	total: 156ms	remaining: 316ms
33:	learn: 30.6084872	total: 163ms	remaining: 317ms
34:	learn: 30.3448632	total: 170ms	remaining: 317ms
35:	learn: 30.0360942	total: 179ms	remaining: 318ms
36:	learn: 29.6648968	total: 185ms	remaining: 315ms
37:	learn: 29.3165114	total: 192ms	remaining: 314ms
38:	learn: 29.0829198	total: 198ms	remaining: 309ms
39:	learn: 28.7752064	total: 203ms	remaining: 305ms
40:	learn: 28.3622191	total: 209ms	remaining: 300ms
41:	learn: 28.1346631	total: 214ms	remaining: 296ms
42:	learn: 27.9585719	total: 220ms	remaining: 291ms
43:	learn: 27.6565566	total: 225ms	remaining: 287ms
44:	learn: 27.3616172	total: 231ms	remaining: 282ms
45:	learn: 27.0658637	total: 236ms	remaining: 277ms
46:	learn: 26.8660382	total: 241ms	remaining: 271ms
47:	learn: 26.6536078	total: 245ms	remaining: 266ms
48:	learn: 26.3524440	total: 250ms	remaining: 260ms
49:	learn: 26.1595277	total: 255ms	remaining: 255ms
50:	learn: 25.9273523	total: 260ms	remaining: 250ms
51:	learn: 25.7195580	total: 265ms	remaining: 244ms
52:	learn: 25.5730225	total: 269ms	remaining: 238ms
53:	learn: 25.3455276	total: 273ms	remaining: 232ms
54:	learn: 25.2289675	total: 276ms	remaining: 226ms
55:	learn: 25.0133024	total: 280ms	remaining: 220ms
56:	learn: 24.8406714	total: 284ms	remaining: 215ms
57:	learn: 24.6367857	total: 288ms	remaining: 209ms
58:	learn: 24.5338177	total: 293ms	remaining: 203ms
59:	learn: 24.3799964	total: 296ms	remaining: 198ms
60:	learn: 24.1447492	total: 300ms	remaining: 192ms
61:	learn: 23.9880495	total: 305ms	remaining: 187ms
62:	learn: 23.7140630	total: 310ms	remaining: 182ms
63:	learn: 23.5003791	total: 314ms	remaining: 177ms
64:	learn: 23.3207645	total: 318ms	remaining: 171ms
65:	learn: 23.1958356	total: 323ms	remaining: 166ms
66:	learn: 23.0471302	total: 327ms	remaining: 161ms
67:	learn: 22.8977183	total: 332ms	remaining: 156ms
68:	learn: 22.7187400	total: 337ms	remaining: 151ms
69:	learn: 22.6523405	total: 341ms	remaining: 146ms
70:	learn: 22.4767453	total: 346ms	remaining: 141ms
71:	learn: 22.3243677	total: 350ms	remaining: 136ms
72:	learn: 22.2133096	total: 354ms	remaining: 131ms
73:	learn: 22.1151713	total: 362ms	remaining: 127ms
74:	learn: 22.0296666	total: 369ms	remaining: 123ms
75:	learn: 21.9195980	total: 377ms	remaining: 119ms
76:	learn: 21.8401730	total: 383ms	remaining: 114ms
77:	learn: 21.8079797	total: 390ms	remaining: 110ms
78:	learn: 21.7274109	total: 395ms	remaining: 105ms
79:	learn: 21.6663032	total: 400ms	remaining: 100ms
80:	learn: 21.5633117	total: 405ms	remaining: 95ms
81:	learn: 21.4542467	total: 410ms	remaining: 90ms
82:	learn: 21.3177957	total: 415ms	remaining: 85ms
83:	learn: 21.1289167	total: 420ms	remaining: 80ms
84:	learn: 21.0297368	total: 425ms	remaining: 75ms
85:	learn: 20.9089564	total: 430ms	remaining: 70.1ms
86:	learn: 20.7653988	total: 436ms	remaining: 65.2ms
87:	learn: 20.6521894	total: 441ms	remaining: 60.2ms
88:	learn: 20.5193021	total: 446ms	remaining: 55.1ms
89:	learn: 20.4361620	total: 451ms	remaining: 50.1ms
90:	learn: 20.3546710	total: 456ms	remaining: 45.1ms
91:	learn: 20.2513296	total: 461ms	remaining: 40.1ms
92:	learn: 20.1605550	total: 465ms	remaining: 35ms
93:	learn: 20.0515942	total: 469ms	remaining: 29.9ms
94:	learn: 19.9800764	total: 473ms	remaining: 24.9ms
95:	learn: 19.8996532	total: 478ms	remaining: 19.9ms
96:	learn: 19.8450910	total: 482ms	remaining: 14.9ms
97:	learn: 19.7887346	total: 486ms	remaining: 9.93ms
98:	learn: 19.7230872	total: 491ms	remaining: 4.96ms
99:	learn: 19.6328825	total: 495ms	remaining: 0us
0:	learn: 27.7143805	total: 4.69ms	remaining: 464ms
1:	learn: 27.2245894	total: 9.25ms	remaining: 453ms
2:	learn: 26.8693029	total: 16.3ms	remaining: 528ms
3:	learn: 26.4713217	total: 24.8ms	remaining: 596ms
4:	learn: 26.1261794	total: 35.1ms	remaining: 666ms
5:	learn: 25.8160419	total: 40.4ms	remaining: 633ms
6:	learn: 25.3860050	total: 46.9ms	remaining: 623ms
7:	learn: 25.0621682	total: 52.1ms	remaining: 599ms
8:	learn: 24.7574429	total: 57.2ms	remaining: 579ms
9:	learn: 24.5154734	total: 62.2ms	remaining: 560ms
10:	learn: 24.2199118	total: 67.4ms	remaining: 545ms
11:	learn: 23.9774955	total: 72.4ms	remaining: 531ms
12:	learn: 23.7755558	total: 77.7ms	remaining: 520ms
13:	learn: 23.4384476	total: 82.6ms	remaining: 508ms
14:	learn: 23.2035324	total: 87.1ms	remaining: 494ms
15:	learn: 22.9925293	total: 91.4ms	remaining: 480ms
16:	learn: 22.7981113	total: 96ms	remaining: 469ms
17:	learn: 22.5829245	total: 100ms	remaining: 457ms
18:	learn: 22.4131931	total: 105ms	remaining: 448ms
19:	learn: 22.1833629	total: 110ms	remaining: 441ms
20:	learn: 21.9660824	total: 116ms	remaining: 435ms
21:	learn: 21.7281998	total: 121ms	remaining: 428ms
22:	learn: 21.5000824	total: 124ms	remaining: 417ms
23:	learn: 21.2717031	total: 128ms	remaining: 407ms
24:	learn: 21.0926073	total: 132ms	remaining: 397ms
25:	learn: 20.8922144	total: 136ms	remaining: 387ms
26:	learn: 20.7498215	total: 139ms	remaining: 377ms
27:	learn: 20.5781754	total: 141ms	remaining: 361ms
28:	learn: 20.4294665	total: 144ms	remaining: 354ms
29:	learn: 20.2273985	total: 148ms	remaining: 346ms
30:	learn: 20.0920234	total: 152ms	remaining: 339ms
31:	learn: 19.9311712	total: 156ms	remaining: 331ms
32:	learn: 19.7852359	total: 160ms	remaining: 324ms
33:	learn: 19.6211007	total: 164ms	remaining: 318ms
34:	learn: 19.4806501	total: 168ms	remaining: 311ms
35:	learn: 19.3415380	total: 171ms	remaining: 304ms
36:	learn: 19.2075499	total: 175ms	remaining: 298ms
37:	learn: 19.0582745	total: 179ms	remaining: 292ms
38:	learn: 18.8852020	total: 183ms	remaining: 285ms
39:	learn: 18.6868677	total: 186ms	remaining: 280ms
40:	learn: 18.5481481	total: 190ms	remaining: 274ms
41:	learn: 18.4508846	total: 194ms	remaining: 268ms
42:	learn: 18.3650555	total: 204ms	remaining: 270ms
43:	learn: 18.1818415	total: 208ms	remaining: 264ms
44:	learn: 18.0782035	total: 212ms	remaining: 259ms
45:	learn: 17.9724472	total: 216ms	remaining: 254ms
46:	learn: 17.8657480	total: 221ms	remaining: 249ms
47:	learn: 17.7217309	total: 226ms	remaining: 244ms
48:	learn: 17.6403061	total: 230ms	remaining: 239ms
49:	learn: 17.5245570	total: 235ms	remaining: 235ms
50:	learn: 17.3976790	total: 239ms	remaining: 230ms
51:	learn: 17.2544460	total: 244ms	remaining: 225ms
52:	learn: 17.1507940	total: 249ms	remaining: 221ms
53:	learn: 17.0391276	total: 253ms	remaining: 215ms
54:	learn: 16.9348155	total: 261ms	remaining: 214ms
55:	learn: 16.8475635	total: 268ms	remaining: 211ms
56:	learn: 16.7691656	total: 276ms	remaining: 208ms
57:	learn: 16.6277836	total: 282ms	remaining: 204ms
58:	learn: 16.5524230	total: 297ms	remaining: 206ms
59:	learn: 16.4614442	total: 302ms	remaining: 201ms
60:	learn: 16.3077836	total: 307ms	remaining: 196ms
61:	learn: 16.2278133	total: 312ms	remaining: 191ms
62:	learn: 16.1288632	total: 317ms	remaining: 186ms
63:	learn: 16.0734717	total: 323ms	remaining: 182ms
64:	learn: 16.0085754	total: 328ms	remaining: 177ms
65:	learn: 15.9278700	total: 333ms	remaining: 172ms
66:	learn: 15.8320321	total: 339ms	remaining: 167ms
67:	learn: 15.7706425	total: 343ms	remaining: 161ms
68:	learn: 15.6404344	total: 348ms	remaining: 156ms
69:	learn: 15.5678129	total: 353ms	remaining: 151ms
70:	learn: 15.4980047	total: 358ms	remaining: 146ms
71:	learn: 15.4324207	total: 362ms	remaining: 141ms
72:	learn: 15.3551877	total: 366ms	remaining: 135ms
73:	learn: 15.2930769	total: 369ms	remaining: 130ms
74:	learn: 15.2307174	total: 373ms	remaining: 124ms
75:	learn: 15.1600937	total: 377ms	remaining: 119ms
76:	learn: 15.0837614	total: 381ms	remaining: 114ms
77:	learn: 15.0185989	total: 384ms	remaining: 108ms
78:	learn: 14.9300717	total: 388ms	remaining: 103ms
79:	learn: 14.8928389	total: 392ms	remaining: 98.1ms
80:	learn: 14.8250040	total: 396ms	remaining: 92.8ms
81:	learn: 14.7906114	total: 400ms	remaining: 87.7ms
82:	learn: 14.7214118	total: 403ms	remaining: 82.6ms
83:	learn: 14.6657875	total: 408ms	remaining: 77.7ms
84:	learn: 14.6085682	total: 412ms	remaining: 72.8ms
85:	learn: 14.5334097	total: 417ms	remaining: 67.8ms
86:	learn: 14.4681230	total: 421ms	remaining: 63ms
87:	learn: 14.4088334	total: 426ms	remaining: 58.1ms
88:	learn: 14.3541312	total: 431ms	remaining: 53.3ms
89:	learn: 14.2923636	total: 436ms	remaining: 48.4ms
90:	learn: 14.2339259	total: 440ms	remaining: 43.5ms
91:	learn: 14.1439983	total: 444ms	remaining: 38.6ms
92:	learn: 14.0701371	total: 449ms	remaining: 33.8ms
93:	learn: 13.9770736	total: 454ms	remaining: 29ms
94:	learn: 13.9275801	total: 462ms	remaining: 24.3ms
95:	learn: 13.8717050	total: 469ms	remaining: 19.6ms
96:	learn: 13.7821340	total: 477ms	remaining: 14.8ms
97:	learn: 13.7383865	total: 483ms	remaining: 9.85ms
98:	learn: 13.6850693	total: 489ms	remaining: 4.94ms
99:	learn: 13.6273539	total: 495ms	remaining: 0us
0:	learn: 43.2118728	total: 5.66ms	remaining: 560ms
1:	learn: 42.3090111	total: 10.1ms	remaining: 495ms
2:	learn: 41.3060764	total: 14ms	remaining: 454ms
3:	learn: 40.3653958	total: 17.9ms	remaining: 431ms
4:	learn: 39.5006331	total: 22ms	remaining: 417ms
5:	learn: 38.6473041	total: 26.3ms	remaining: 413ms
6:	learn: 37.8560875	total: 30.3ms	remaining: 403ms
7:	learn: 37.0772701	total: 34.4ms	remaining: 396ms
8:	learn: 36.3260704	total: 38.7ms	remaining: 392ms
9:	learn: 35.7300393	total: 43ms	remaining: 387ms
10:	learn: 34.9336547	total: 46.9ms	remaining: 379ms
11:	learn: 34.1758190	total: 50.9ms	remaining: 373ms
12:	learn: 33.5120760	total: 54.8ms	remaining: 367ms
13:	learn: 32.8731142	total: 59ms	remaining: 362ms
14:	learn: 32.3579595	total: 62.8ms	remaining: 356ms
15:	learn: 31.7969963	total: 66.8ms	remaining: 351ms
16:	learn: 31.3472797	total: 70.6ms	remaining: 345ms
17:	learn: 30.7865884	total: 75.4ms	remaining: 343ms
18:	learn: 30.3876486	total: 79.7ms	remaining: 340ms
19:	learn: 29.8840575	total: 84.1ms	remaining: 337ms
20:	learn: 29.3584237	total: 89.6ms	remaining: 337ms
21:	learn: 28.9965200	total: 95ms	remaining: 337ms
22:	learn: 28.6117225	total: 100ms	remaining: 335ms
23:	learn: 28.1147832	total: 105ms	remaining: 331ms
24:	learn: 27.7857774	total: 112ms	remaining: 335ms
25:	learn: 27.3181226	total: 120ms	remaining: 340ms
26:	learn: 26.9019101	total: 127ms	remaining: 343ms
27:	learn: 26.6957004	total: 134ms	remaining: 345ms
28:	learn: 26.2816390	total: 141ms	remaining: 346ms
29:	learn: 25.9107534	total: 147ms	remaining: 342ms
30:	learn: 25.5773085	total: 151ms	remaining: 337ms
31:	learn: 25.1916035	total: 156ms	remaining: 332ms
32:	learn: 24.8819670	total: 162ms	remaining: 328ms
33:	learn: 24.5580488	total: 167ms	remaining: 323ms
34:	learn: 24.3088624	total: 171ms	remaining: 318ms
35:	learn: 23.9890893	total: 176ms	remaining: 314ms
36:	learn: 23.7266073	total: 182ms	remaining: 309ms
37:	learn: 23.4886046	total: 187ms	remaining: 305ms
38:	learn: 23.2786313	total: 192ms	remaining: 300ms
39:	learn: 23.0060540	total: 197ms	remaining: 295ms
40:	learn: 22.7848361	total: 202ms	remaining: 290ms
41:	learn: 22.5485511	total: 207ms	remaining: 286ms
42:	learn: 22.3113565	total: 213ms	remaining: 283ms
43:	learn: 22.1296084	total: 218ms	remaining: 277ms
44:	learn: 21.8514989	total: 222ms	remaining: 271ms
45:	learn: 21.6540201	total: 226ms	remaining: 265ms
46:	learn: 21.4203535	total: 230ms	remaining: 259ms
47:	learn: 21.2317196	total: 233ms	remaining: 253ms
48:	learn: 21.0547467	total: 237ms	remaining: 247ms
49:	learn: 20.9192535	total: 241ms	remaining: 241ms
50:	learn: 20.6975386	total: 245ms	remaining: 235ms
51:	learn: 20.5839720	total: 249ms	remaining: 229ms
52:	learn: 20.4528901	total: 252ms	remaining: 224ms
53:	learn: 20.3392419	total: 256ms	remaining: 218ms
54:	learn: 20.1518693	total: 260ms	remaining: 213ms
55:	learn: 19.9928770	total: 264ms	remaining: 207ms
56:	learn: 19.8042028	total: 268ms	remaining: 202ms
57:	learn: 19.7000879	total: 272ms	remaining: 197ms
58:	learn: 19.5524154	total: 276ms	remaining: 192ms
59:	learn: 19.4366908	total: 280ms	remaining: 186ms
60:	learn: 19.2739134	total: 284ms	remaining: 182ms
61:	learn: 19.1499266	total: 289ms	remaining: 177ms
62:	learn: 18.9948972	total: 293ms	remaining: 172ms
63:	learn: 18.8952299	total: 297ms	remaining: 167ms
64:	learn: 18.7545430	total: 302ms	remaining: 163ms
65:	learn: 18.6315116	total: 307ms	remaining: 158ms
66:	learn: 18.5164994	total: 311ms	remaining: 153ms
67:	learn: 18.3983038	total: 316ms	remaining: 149ms
68:	learn: 18.2803212	total: 321ms	remaining: 144ms
69:	learn: 18.1738467	total: 328ms	remaining: 141ms
70:	learn: 18.0884235	total: 335ms	remaining: 137ms
71:	learn: 18.0129445	total: 343ms	remaining: 133ms
72:	learn: 17.8582158	total: 349ms	remaining: 129ms
73:	learn: 17.7473705	total: 357ms	remaining: 125ms
74:	learn: 17.6431421	total: 362ms	remaining: 121ms
75:	learn: 17.5398511	total: 367ms	remaining: 116ms
76:	learn: 17.4404598	total: 373ms	remaining: 111ms
77:	learn: 17.3477525	total: 378ms	remaining: 107ms
78:	learn: 17.2283831	total: 384ms	remaining: 102ms
79:	learn: 17.0767035	total: 390ms	remaining: 97.4ms
80:	learn: 16.9732705	total: 395ms	remaining: 92.6ms
81:	learn: 16.8927449	total: 400ms	remaining: 87.8ms
82:	learn: 16.8145625	total: 406ms	remaining: 83.1ms
83:	learn: 16.7290845	total: 411ms	remaining: 78.2ms
84:	learn: 16.6661414	total: 415ms	remaining: 73.3ms
85:	learn: 16.5875575	total: 421ms	remaining: 68.6ms
86:	learn: 16.4578580	total: 427ms	remaining: 63.8ms
87:	learn: 16.4243550	total: 431ms	remaining: 58.8ms
88:	learn: 16.3251337	total: 435ms	remaining: 53.7ms
89:	learn: 16.2516385	total: 439ms	remaining: 48.8ms
90:	learn: 16.1226518	total: 443ms	remaining: 43.8ms
91:	learn: 16.0718308	total: 446ms	remaining: 38.8ms
92:	learn: 15.9636735	total: 450ms	remaining: 33.9ms
93:	learn: 15.8923693	total: 454ms	remaining: 29ms
94:	learn: 15.8270425	total: 458ms	remaining: 24.1ms
95:	learn: 15.7449077	total: 462ms	remaining: 19.2ms
96:	learn: 15.6978936	total: 465ms	remaining: 14.4ms
97:	learn: 15.6527285	total: 469ms	remaining: 9.58ms
98:	learn: 15.5557320	total: 473ms	remaining: 4.78ms
99:	learn: 15.4399171	total: 477ms	remaining: 0us
0:	learn: 46.7092506	total: 11.3ms	remaining: 1.12s
1:	learn: 45.8266821	total: 18ms	remaining: 884ms
2:	learn: 45.0052023	total: 24ms	remaining: 776ms
3:	learn: 44.3828795	total: 29ms	remaining: 697ms
4:	learn: 43.7255353	total: 34ms	remaining: 647ms
5:	learn: 43.1663831	total: 39.4ms	remaining: 617ms
6:	learn: 42.3875189	total: 44.4ms	remaining: 590ms
7:	learn: 41.7839075	total: 49.3ms	remaining: 567ms
8:	learn: 41.0740108	total: 54ms	remaining: 546ms
9:	learn: 40.3846647	total: 59.1ms	remaining: 532ms
10:	learn: 39.8821046	total: 64.1ms	remaining: 519ms
11:	learn: 39.1807254	total: 69.3ms	remaining: 508ms
12:	learn: 38.7153028	total: 74.1ms	remaining: 496ms
13:	learn: 38.0474495	total: 78.4ms	remaining: 482ms
14:	learn: 37.3844461	total: 83.9ms	remaining: 476ms
15:	learn: 36.9210704	total: 89.6ms	remaining: 470ms
16:	learn: 36.3160964	total: 93.4ms	remaining: 456ms
17:	learn: 35.8915826	total: 97.3ms	remaining: 443ms
18:	learn: 35.5519989	total: 102ms	remaining: 433ms
19:	learn: 35.1437045	total: 106ms	remaining: 423ms
20:	learn: 34.6387799	total: 109ms	remaining: 412ms
21:	learn: 34.2437068	total: 113ms	remaining: 401ms
22:	learn: 33.8262100	total: 117ms	remaining: 392ms
23:	learn: 33.4683000	total: 121ms	remaining: 382ms
24:	learn: 32.9996389	total: 125ms	remaining: 375ms
25:	learn: 32.6942147	total: 129ms	remaining: 366ms
26:	learn: 32.3016096	total: 133ms	remaining: 358ms
27:	learn: 31.9517346	total: 136ms	remaining: 350ms
28:	learn: 31.5277387	total: 140ms	remaining: 344ms
29:	learn: 31.2545365	total: 144ms	remaining: 337ms
30:	learn: 31.0510813	total: 148ms	remaining: 330ms
31:	learn: 30.6383830	total: 152ms	remaining: 323ms
32:	learn: 30.2800150	total: 157ms	remaining: 318ms
33:	learn: 29.9559797	total: 161ms	remaining: 313ms
34:	learn: 29.5802745	total: 166ms	remaining: 308ms
35:	learn: 29.2605111	total: 170ms	remaining: 302ms
36:	learn: 28.9582434	total: 174ms	remaining: 297ms
37:	learn: 28.6149387	total: 179ms	remaining: 292ms
38:	learn: 28.3980091	total: 183ms	remaining: 287ms
39:	learn: 28.1704520	total: 188ms	remaining: 281ms
40:	learn: 27.8881319	total: 194ms	remaining: 279ms
41:	learn: 27.5805731	total: 201ms	remaining: 278ms
42:	learn: 27.3520567	total: 209ms	remaining: 277ms
43:	learn: 27.1039679	total: 217ms	remaining: 276ms
44:	learn: 26.8472623	total: 224ms	remaining: 274ms
45:	learn: 26.5757869	total: 230ms	remaining: 269ms
46:	learn: 26.4579118	total: 235ms	remaining: 265ms
47:	learn: 26.1279008	total: 240ms	remaining: 260ms
48:	learn: 25.8503346	total: 245ms	remaining: 255ms
49:	learn: 25.7039015	total: 250ms	remaining: 250ms
50:	learn: 25.4317154	total: 255ms	remaining: 245ms
51:	learn: 25.3028008	total: 260ms	remaining: 240ms
52:	learn: 25.1906194	total: 265ms	remaining: 235ms
53:	learn: 25.0082790	total: 270ms	remaining: 230ms
54:	learn: 24.8264791	total: 275ms	remaining: 225ms
55:	learn: 24.5961365	total: 281ms	remaining: 221ms
56:	learn: 24.4007690	total: 285ms	remaining: 215ms
57:	learn: 24.2476228	total: 289ms	remaining: 209ms
58:	learn: 23.9582465	total: 293ms	remaining: 203ms
59:	learn: 23.7247243	total: 297ms	remaining: 198ms
60:	learn: 23.5379970	total: 301ms	remaining: 192ms
61:	learn: 23.3908530	total: 306ms	remaining: 187ms
62:	learn: 23.2123241	total: 310ms	remaining: 182ms
63:	learn: 23.1010345	total: 314ms	remaining: 177ms
64:	learn: 22.9032423	total: 318ms	remaining: 171ms
65:	learn: 22.7815198	total: 322ms	remaining: 166ms
66:	learn: 22.6325063	total: 326ms	remaining: 161ms
67:	learn: 22.5406071	total: 330ms	remaining: 155ms
68:	learn: 22.4413332	total: 335ms	remaining: 150ms
69:	learn: 22.3005609	total: 338ms	remaining: 145ms
70:	learn: 22.1779345	total: 343ms	remaining: 140ms
71:	learn: 22.0491576	total: 347ms	remaining: 135ms
72:	learn: 21.9379106	total: 351ms	remaining: 130ms
73:	learn: 21.7597096	total: 355ms	remaining: 125ms
74:	learn: 21.6042300	total: 360ms	remaining: 120ms
75:	learn: 21.4644642	total: 364ms	remaining: 115ms
76:	learn: 21.3811287	total: 368ms	remaining: 110ms
77:	learn: 21.3089276	total: 373ms	remaining: 105ms
78:	learn: 21.1654429	total: 377ms	remaining: 100ms
79:	learn: 20.9602460	total: 382ms	remaining: 95.4ms
80:	learn: 20.7959461	total: 386ms	remaining: 90.5ms
81:	learn: 20.5861156	total: 390ms	remaining: 85.6ms
82:	learn: 20.5120680	total: 395ms	remaining: 80.9ms
83:	learn: 20.3997233	total: 402ms	remaining: 76.5ms
84:	learn: 20.2499469	total: 409ms	remaining: 72.2ms
85:	learn: 20.1117768	total: 419ms	remaining: 68.3ms
86:	learn: 20.0617643	total: 427ms	remaining: 63.8ms
87:	learn: 19.9609182	total: 433ms	remaining: 59ms
88:	learn: 19.8763814	total: 438ms	remaining: 54.1ms
89:	learn: 19.7843516	total: 443ms	remaining: 49.2ms
90:	learn: 19.6926200	total: 448ms	remaining: 44.3ms
91:	learn: 19.5686774	total: 454ms	remaining: 39.4ms
92:	learn: 19.4727236	total: 459ms	remaining: 34.5ms
93:	learn: 19.3780174	total: 464ms	remaining: 29.6ms
94:	learn: 19.2840650	total: 469ms	remaining: 24.7ms
95:	learn: 19.1747368	total: 475ms	remaining: 19.8ms
96:	learn: 19.1273306	total: 479ms	remaining: 14.8ms
97:	learn: 19.0413946	total: 484ms	remaining: 9.87ms
98:	learn: 18.8980682	total: 488ms	remaining: 4.93ms
99:	learn: 18.7799962	total: 492ms	remaining: 0us
0:	learn: 46.4426352	total: 4.94ms	remaining: 490ms
1:	learn: 45.5770653	total: 9.47ms	remaining: 464ms
2:	learn: 44.6956685	total: 13.9ms	remaining: 450ms
3:	learn: 43.9934709	total: 18.4ms	remaining: 442ms
4:	learn: 43.3008183	total: 22.8ms	remaining: 433ms
5:	learn: 42.7510022	total: 27.1ms	remaining: 424ms
6:	learn: 42.0237555	total: 31.6ms	remaining: 420ms
7:	learn: 41.5354996	total: 35.9ms	remaining: 413ms
8:	learn: 41.0264055	total: 43.2ms	remaining: 437ms
9:	learn: 40.5267003	total: 50.9ms	remaining: 459ms
10:	learn: 39.8363942	total: 57.7ms	remaining: 467ms
11:	learn: 39.2014089	total: 64.5ms	remaining: 473ms
12:	learn: 38.7943524	total: 72ms	remaining: 482ms
13:	learn: 38.1664113	total: 77ms	remaining: 473ms
14:	learn: 37.7492773	total: 82.1ms	remaining: 465ms
15:	learn: 37.2369693	total: 87.1ms	remaining: 457ms
16:	learn: 36.6953383	total: 92.3ms	remaining: 450ms
17:	learn: 36.3580916	total: 97.6ms	remaining: 444ms
18:	learn: 35.8637745	total: 103ms	remaining: 440ms
19:	learn: 35.4299153	total: 108ms	remaining: 433ms
20:	learn: 34.8794879	total: 113ms	remaining: 427ms
21:	learn: 34.3253348	total: 119ms	remaining: 421ms
22:	learn: 33.9307096	total: 124ms	remaining: 415ms
23:	learn: 33.5952896	total: 129ms	remaining: 408ms
24:	learn: 33.1314051	total: 133ms	remaining: 400ms
25:	learn: 32.8502968	total: 139ms	remaining: 394ms
26:	learn: 32.4430184	total: 144ms	remaining: 389ms
27:	learn: 32.0721224	total: 148ms	remaining: 381ms
28:	learn: 31.7977479	total: 152ms	remaining: 372ms
29:	learn: 31.3999469	total: 155ms	remaining: 363ms
30:	learn: 31.1179360	total: 159ms	remaining: 354ms
31:	learn: 30.7712852	total: 163ms	remaining: 346ms
32:	learn: 30.2912977	total: 166ms	remaining: 338ms
33:	learn: 29.9920376	total: 171ms	remaining: 331ms
34:	learn: 29.6637918	total: 175ms	remaining: 324ms
35:	learn: 29.3522959	total: 178ms	remaining: 317ms
36:	learn: 29.0482516	total: 182ms	remaining: 310ms
37:	learn: 28.7956656	total: 186ms	remaining: 304ms
38:	learn: 28.4845569	total: 190ms	remaining: 297ms
39:	learn: 28.3038067	total: 193ms	remaining: 290ms
40:	learn: 28.1185263	total: 197ms	remaining: 284ms
41:	learn: 27.8012563	total: 201ms	remaining: 278ms
42:	learn: 27.5184259	total: 205ms	remaining: 272ms
43:	learn: 27.3019892	total: 209ms	remaining: 266ms
44:	learn: 27.0494594	total: 212ms	remaining: 259ms
45:	learn: 26.8054317	total: 216ms	remaining: 254ms
46:	learn: 26.6554974	total: 220ms	remaining: 248ms
47:	learn: 26.3568392	total: 224ms	remaining: 243ms
48:	learn: 26.1045872	total: 228ms	remaining: 237ms
49:	learn: 25.9807311	total: 232ms	remaining: 232ms
50:	learn: 25.7104640	total: 236ms	remaining: 227ms
51:	learn: 25.6019547	total: 241ms	remaining: 222ms
52:	learn: 25.5011930	total: 244ms	remaining: 217ms
53:	learn: 25.2291639	total: 249ms	remaining: 212ms
54:	learn: 24.9952313	total: 253ms	remaining: 207ms
55:	learn: 24.8195031	total: 257ms	remaining: 202ms
56:	learn: 24.5591684	total: 261ms	remaining: 197ms
57:	learn: 24.4163080	total: 266ms	remaining: 192ms
58:	learn: 24.2328188	total: 271ms	remaining: 188ms
59:	learn: 24.0087408	total: 279ms	remaining: 186ms
60:	learn: 23.8918912	total: 287ms	remaining: 183ms
61:	learn: 23.7537024	total: 295ms	remaining: 181ms
62:	learn: 23.5466923	total: 302ms	remaining: 178ms
63:	learn: 23.3903724	total: 308ms	remaining: 173ms
64:	learn: 23.3257785	total: 313ms	remaining: 169ms
65:	learn: 23.2839464	total: 318ms	remaining: 164ms
66:	learn: 23.1476036	total: 324ms	remaining: 159ms
67:	learn: 22.9480972	total: 329ms	remaining: 155ms
68:	learn: 22.7537529	total: 334ms	remaining: 150ms
69:	learn: 22.6209544	total: 339ms	remaining: 145ms
70:	learn: 22.5058753	total: 345ms	remaining: 141ms
71:	learn: 22.4068656	total: 350ms	remaining: 136ms
72:	learn: 22.3254150	total: 355ms	remaining: 131ms
73:	learn: 22.1784174	total: 360ms	remaining: 127ms
74:	learn: 22.1095388	total: 364ms	remaining: 121ms
75:	learn: 21.9958083	total: 369ms	remaining: 117ms
76:	learn: 21.8728475	total: 375ms	remaining: 112ms
77:	learn: 21.7975828	total: 380ms	remaining: 107ms
78:	learn: 21.7133267	total: 384ms	remaining: 102ms
79:	learn: 21.6023410	total: 388ms	remaining: 97ms
80:	learn: 21.5254474	total: 392ms	remaining: 91.9ms
81:	learn: 21.3307418	total: 396ms	remaining: 86.9ms
82:	learn: 21.2411976	total: 400ms	remaining: 81.9ms
83:	learn: 21.1091386	total: 404ms	remaining: 76.9ms
84:	learn: 21.0526747	total: 407ms	remaining: 71.9ms
85:	learn: 20.9083817	total: 411ms	remaining: 66.9ms
86:	learn: 20.8767767	total: 415ms	remaining: 62ms
87:	learn: 20.8143988	total: 419ms	remaining: 57.1ms
88:	learn: 20.7127697	total: 423ms	remaining: 52.2ms
89:	learn: 20.6112504	total: 426ms	remaining: 47.3ms
90:	learn: 20.4609960	total: 430ms	remaining: 42.5ms
91:	learn: 20.3648890	total: 434ms	remaining: 37.8ms
92:	learn: 20.3052040	total: 439ms	remaining: 33ms
93:	learn: 20.2587865	total: 443ms	remaining: 28.2ms
94:	learn: 20.2096406	total: 447ms	remaining: 23.5ms
95:	learn: 20.1301385	total: 451ms	remaining: 18.8ms
96:	learn: 20.0401359	total: 456ms	remaining: 14.1ms
97:	learn: 19.9791591	total: 460ms	remaining: 9.39ms
98:	learn: 19.9237318	total: 464ms	remaining: 4.69ms
99:	learn: 19.8009190	total: 472ms	remaining: 0us
0:	learn: 46.9286701	total: 5.46ms	remaining: 541ms
1:	learn: 46.2851598	total: 10.6ms	remaining: 521ms
2:	learn: 45.4586007	total: 15.8ms	remaining: 512ms
3:	learn: 44.6581393	total: 20.5ms	remaining: 491ms
4:	learn: 43.8231644	total: 25.3ms	remaining: 482ms
5:	learn: 43.2906569	total: 29.9ms	remaining: 468ms
6:	learn: 42.5095813	total: 34.2ms	remaining: 455ms
7:	learn: 41.9310465	total: 39.5ms	remaining: 454ms
8:	learn: 41.2083262	total: 44.6ms	remaining: 451ms
9:	learn: 40.6852547	total: 49.2ms	remaining: 443ms
10:	learn: 39.9637018	total: 53.1ms	remaining: 430ms
11:	learn: 39.2804189	total: 56.7ms	remaining: 416ms
12:	learn: 38.8804017	total: 60.3ms	remaining: 403ms
13:	learn: 38.3826597	total: 64.1ms	remaining: 394ms
14:	learn: 37.9240424	total: 67.9ms	remaining: 385ms
15:	learn: 37.4312070	total: 71.6ms	remaining: 376ms
16:	learn: 36.8803673	total: 75.3ms	remaining: 368ms
17:	learn: 36.5496582	total: 79.4ms	remaining: 362ms
18:	learn: 36.2078375	total: 83.9ms	remaining: 358ms
19:	learn: 35.6806593	total: 87.4ms	remaining: 350ms
20:	learn: 35.1512154	total: 91ms	remaining: 342ms
21:	learn: 34.6013055	total: 94.9ms	remaining: 337ms
22:	learn: 34.2380102	total: 99.2ms	remaining: 332ms
23:	learn: 33.8720185	total: 103ms	remaining: 327ms
24:	learn: 33.4426135	total: 107ms	remaining: 321ms
25:	learn: 33.1471186	total: 111ms	remaining: 316ms
26:	learn: 32.8018279	total: 116ms	remaining: 313ms
27:	learn: 32.4498594	total: 120ms	remaining: 309ms
28:	learn: 31.9749480	total: 125ms	remaining: 306ms
29:	learn: 31.6470735	total: 129ms	remaining: 301ms
30:	learn: 31.4265242	total: 133ms	remaining: 296ms
31:	learn: 31.0753325	total: 137ms	remaining: 291ms
32:	learn: 30.7192494	total: 141ms	remaining: 286ms
33:	learn: 30.3547940	total: 145ms	remaining: 282ms
34:	learn: 30.1296593	total: 151ms	remaining: 280ms
35:	learn: 29.9367140	total: 158ms	remaining: 281ms
36:	learn: 29.6248477	total: 165ms	remaining: 281ms
37:	learn: 29.3156707	total: 173ms	remaining: 283ms
38:	learn: 29.1534039	total: 181ms	remaining: 283ms
39:	learn: 28.9351289	total: 186ms	remaining: 279ms
40:	learn: 28.7057685	total: 191ms	remaining: 275ms
41:	learn: 28.3132521	total: 196ms	remaining: 271ms
42:	learn: 28.0739054	total: 201ms	remaining: 267ms
43:	learn: 27.8135917	total: 207ms	remaining: 263ms
44:	learn: 27.5376804	total: 212ms	remaining: 259ms
45:	learn: 27.3195849	total: 217ms	remaining: 254ms
46:	learn: 27.1681104	total: 222ms	remaining: 250ms
47:	learn: 27.0122442	total: 227ms	remaining: 246ms
48:	learn: 26.7819409	total: 231ms	remaining: 241ms
49:	learn: 26.6429308	total: 236ms	remaining: 236ms
50:	learn: 26.3482899	total: 241ms	remaining: 232ms
51:	learn: 26.2432755	total: 247ms	remaining: 228ms
52:	learn: 26.0811102	total: 252ms	remaining: 223ms
53:	learn: 25.9398113	total: 256ms	remaining: 218ms
54:	learn: 25.7891395	total: 261ms	remaining: 214ms
55:	learn: 25.6185338	total: 265ms	remaining: 209ms
56:	learn: 25.3293977	total: 270ms	remaining: 204ms
57:	learn: 25.1918906	total: 274ms	remaining: 199ms
58:	learn: 25.0503990	total: 279ms	remaining: 194ms
59:	learn: 24.8225776	total: 283ms	remaining: 189ms
60:	learn: 24.5969153	total: 288ms	remaining: 184ms
61:	learn: 24.4657353	total: 293ms	remaining: 179ms
62:	learn: 24.2861000	total: 297ms	remaining: 174ms
63:	learn: 24.1719148	total: 301ms	remaining: 170ms
64:	learn: 24.0547875	total: 306ms	remaining: 165ms
65:	learn: 23.9156724	total: 311ms	remaining: 160ms
66:	learn: 23.7604012	total: 316ms	remaining: 156ms
67:	learn: 23.6265679	total: 320ms	remaining: 151ms
68:	learn: 23.5372255	total: 325ms	remaining: 146ms
69:	learn: 23.3286241	total: 330ms	remaining: 141ms
70:	learn: 23.1806465	total: 335ms	remaining: 137ms
71:	learn: 23.0652081	total: 340ms	remaining: 132ms
72:	learn: 22.9231023	total: 345ms	remaining: 127ms
73:	learn: 22.8020380	total: 354ms	remaining: 124ms
74:	learn: 22.6525036	total: 361ms	remaining: 120ms
75:	learn: 22.5616268	total: 369ms	remaining: 117ms
76:	learn: 22.4395250	total: 375ms	remaining: 112ms
77:	learn: 22.3732379	total: 382ms	remaining: 108ms
78:	learn: 22.2300874	total: 387ms	remaining: 103ms
79:	learn: 22.0209882	total: 393ms	remaining: 98.2ms
80:	learn: 21.8703996	total: 399ms	remaining: 93.5ms
81:	learn: 21.7222039	total: 404ms	remaining: 88.6ms
82:	learn: 21.5903685	total: 409ms	remaining: 83.8ms
83:	learn: 21.4915083	total: 415ms	remaining: 79ms
84:	learn: 21.3320736	total: 421ms	remaining: 74.2ms
85:	learn: 21.2295060	total: 426ms	remaining: 69.4ms
86:	learn: 21.1983620	total: 432ms	remaining: 64.6ms
87:	learn: 21.1404156	total: 438ms	remaining: 59.7ms
88:	learn: 21.0684840	total: 443ms	remaining: 54.8ms
89:	learn: 20.9269197	total: 449ms	remaining: 49.9ms
90:	learn: 20.8614606	total: 455ms	remaining: 45ms
91:	learn: 20.6642996	total: 459ms	remaining: 39.9ms
92:	learn: 20.5612705	total: 463ms	remaining: 34.9ms
93:	learn: 20.5264997	total: 468ms	remaining: 29.9ms
94:	learn: 20.4532331	total: 473ms	remaining: 24.9ms
95:	learn: 20.3700696	total: 477ms	remaining: 19.9ms
96:	learn: 20.2671574	total: 482ms	remaining: 14.9ms
97:	learn: 20.1761207	total: 486ms	remaining: 9.92ms
98:	learn: 20.0533799	total: 490ms	remaining: 4.95ms
99:	learn: 19.9890055	total: 495ms	remaining: 0us
0:	learn: 27.5585353	total: 7.75ms	remaining: 767ms
1:	learn: 27.1656995	total: 17.9ms	remaining: 879ms
2:	learn: 26.8590175	total: 26.1ms	remaining: 843ms
3:	learn: 26.5818406	total: 33ms	remaining: 792ms
4:	learn: 26.1148663	total: 38.4ms	remaining: 730ms
5:	learn: 25.7690484	total: 43.2ms	remaining: 678ms
6:	learn: 25.3489206	total: 48.6ms	remaining: 645ms
7:	learn: 24.9542406	total: 54.2ms	remaining: 623ms
8:	learn: 24.6777517	total: 59.4ms	remaining: 601ms
9:	learn: 24.3242344	total: 64.7ms	remaining: 582ms
10:	learn: 24.0383073	total: 70.7ms	remaining: 572ms
11:	learn: 23.7383420	total: 76.2ms	remaining: 559ms
12:	learn: 23.3461670	total: 81.3ms	remaining: 544ms
13:	learn: 23.0928636	total: 86.4ms	remaining: 531ms
14:	learn: 22.8770414	total: 90.9ms	remaining: 515ms
15:	learn: 22.6323214	total: 96ms	remaining: 504ms
16:	learn: 22.3597072	total: 101ms	remaining: 494ms
17:	learn: 22.1079813	total: 106ms	remaining: 482ms
18:	learn: 21.8421199	total: 110ms	remaining: 470ms
19:	learn: 21.6576508	total: 114ms	remaining: 457ms
20:	learn: 21.4301268	total: 118ms	remaining: 445ms
21:	learn: 21.2287388	total: 122ms	remaining: 433ms
22:	learn: 21.0553872	total: 126ms	remaining: 422ms
23:	learn: 20.8977091	total: 130ms	remaining: 411ms
24:	learn: 20.6619051	total: 134ms	remaining: 401ms
25:	learn: 20.5040955	total: 138ms	remaining: 392ms
26:	learn: 20.3181195	total: 142ms	remaining: 384ms
27:	learn: 20.0869436	total: 146ms	remaining: 376ms
28:	learn: 19.9375985	total: 150ms	remaining: 367ms
29:	learn: 19.8247516	total: 154ms	remaining: 360ms
30:	learn: 19.6261697	total: 158ms	remaining: 353ms
31:	learn: 19.4547236	total: 162ms	remaining: 345ms
32:	learn: 19.3157092	total: 166ms	remaining: 338ms
33:	learn: 19.1561419	total: 171ms	remaining: 331ms
34:	learn: 19.0453620	total: 175ms	remaining: 325ms
35:	learn: 18.8738574	total: 180ms	remaining: 320ms
36:	learn: 18.7072907	total: 184ms	remaining: 314ms
37:	learn: 18.5877943	total: 189ms	remaining: 309ms
38:	learn: 18.4436380	total: 194ms	remaining: 303ms
39:	learn: 18.3463356	total: 199ms	remaining: 298ms
40:	learn: 18.2008059	total: 203ms	remaining: 292ms
41:	learn: 18.0582079	total: 210ms	remaining: 289ms
42:	learn: 17.8891982	total: 217ms	remaining: 287ms
43:	learn: 17.7332246	total: 224ms	remaining: 285ms
44:	learn: 17.6206421	total: 232ms	remaining: 283ms
45:	learn: 17.4982800	total: 239ms	remaining: 281ms
46:	learn: 17.3970150	total: 245ms	remaining: 276ms
47:	learn: 17.3058203	total: 250ms	remaining: 270ms
48:	learn: 17.1789256	total: 255ms	remaining: 265ms
49:	learn: 17.0916229	total: 260ms	remaining: 260ms
50:	learn: 16.9859820	total: 265ms	remaining: 255ms
51:	learn: 16.8995582	total: 270ms	remaining: 250ms
52:	learn: 16.8137014	total: 275ms	remaining: 244ms
53:	learn: 16.7021451	total: 281ms	remaining: 239ms
54:	learn: 16.5895582	total: 296ms	remaining: 242ms
55:	learn: 16.5015639	total: 302ms	remaining: 237ms
56:	learn: 16.4356637	total: 307ms	remaining: 232ms
57:	learn: 16.3514525	total: 312ms	remaining: 226ms
58:	learn: 16.2401369	total: 316ms	remaining: 220ms
59:	learn: 16.1293223	total: 320ms	remaining: 213ms
60:	learn: 16.0271167	total: 324ms	remaining: 207ms
61:	learn: 15.9126257	total: 328ms	remaining: 201ms
62:	learn: 15.8391096	total: 333ms	remaining: 196ms
63:	learn: 15.7441773	total: 337ms	remaining: 190ms
64:	learn: 15.6885195	total: 341ms	remaining: 184ms
65:	learn: 15.6052039	total: 345ms	remaining: 178ms
66:	learn: 15.5074202	total: 349ms	remaining: 172ms
67:	learn: 15.4054338	total: 354ms	remaining: 167ms
68:	learn: 15.2885714	total: 358ms	remaining: 161ms
69:	learn: 15.2157472	total: 362ms	remaining: 155ms
70:	learn: 15.1031554	total: 366ms	remaining: 149ms
71:	learn: 15.0237470	total: 370ms	remaining: 144ms
72:	learn: 14.9756825	total: 375ms	remaining: 139ms
73:	learn: 14.8840596	total: 379ms	remaining: 133ms
74:	learn: 14.8077061	total: 384ms	remaining: 128ms
75:	learn: 14.7444437	total: 389ms	remaining: 123ms
76:	learn: 14.6751720	total: 393ms	remaining: 118ms
77:	learn: 14.5830333	total: 398ms	remaining: 112ms
78:	learn: 14.5241206	total: 402ms	remaining: 107ms
79:	learn: 14.4892731	total: 407ms	remaining: 102ms
80:	learn: 14.4256605	total: 414ms	remaining: 97.1ms
81:	learn: 14.3666860	total: 421ms	remaining: 92.5ms
82:	learn: 14.2938372	total: 431ms	remaining: 88.3ms
83:	learn: 14.2161532	total: 436ms	remaining: 83.1ms
84:	learn: 14.1582910	total: 451ms	remaining: 79.5ms
85:	learn: 14.1029153	total: 455ms	remaining: 74.2ms
86:	learn: 14.0475835	total: 461ms	remaining: 68.8ms
87:	learn: 13.9892661	total: 466ms	remaining: 63.5ms
88:	learn: 13.9481628	total: 471ms	remaining: 58.2ms
89:	learn: 13.8483991	total: 476ms	remaining: 52.9ms
90:	learn: 13.7775614	total: 481ms	remaining: 47.5ms
91:	learn: 13.7304585	total: 486ms	remaining: 42.2ms
92:	learn: 13.6783381	total: 491ms	remaining: 36.9ms
93:	learn: 13.6356964	total: 496ms	remaining: 31.6ms
94:	learn: 13.5924371	total: 501ms	remaining: 26.4ms
95:	learn: 13.5400746	total: 506ms	remaining: 21.1ms
96:	learn: 13.4897333	total: 512ms	remaining: 15.8ms
97:	learn: 13.4470321	total: 515ms	remaining: 10.5ms
98:	learn: 13.3856082	total: 519ms	remaining: 5.25ms
99:	learn: 13.3082371	total: 523ms	remaining: 0us
0:	learn: 43.0395283	total: 4.43ms	remaining: 438ms
1:	learn: 42.1130223	total: 8.99ms	remaining: 441ms
2:	learn: 41.1753409	total: 13.4ms	remaining: 434ms
3:	learn: 40.3637444	total: 17.6ms	remaining: 422ms
4:	learn: 39.6508088	total: 22.1ms	remaining: 420ms
5:	learn: 38.7217934	total: 26.7ms	remaining: 418ms
6:	learn: 37.8538055	total: 30.9ms	remaining: 411ms
7:	learn: 36.9793574	total: 35ms	remaining: 403ms
8:	learn: 36.3076984	total: 40ms	remaining: 404ms
9:	learn: 35.6673160	total: 48.4ms	remaining: 436ms
10:	learn: 34.8889800	total: 55.7ms	remaining: 451ms
11:	learn: 34.1675517	total: 64.9ms	remaining: 476ms
12:	learn: 33.6779564	total: 70.7ms	remaining: 473ms
13:	learn: 33.0710039	total: 77ms	remaining: 473ms
14:	learn: 32.4966674	total: 82.1ms	remaining: 465ms
15:	learn: 31.9492856	total: 87.4ms	remaining: 459ms
16:	learn: 31.5108129	total: 92.3ms	remaining: 451ms
17:	learn: 30.9804023	total: 97.9ms	remaining: 446ms
18:	learn: 30.4169089	total: 103ms	remaining: 440ms
19:	learn: 29.8930375	total: 108ms	remaining: 433ms
20:	learn: 29.3974421	total: 114ms	remaining: 427ms
21:	learn: 28.8792307	total: 119ms	remaining: 421ms
22:	learn: 28.3894474	total: 124ms	remaining: 414ms
23:	learn: 27.9921276	total: 129ms	remaining: 407ms
24:	learn: 27.6158887	total: 134ms	remaining: 401ms
25:	learn: 27.2866950	total: 139ms	remaining: 396ms
26:	learn: 26.8770708	total: 145ms	remaining: 393ms
27:	learn: 26.6233005	total: 149ms	remaining: 384ms
28:	learn: 26.2921934	total: 154ms	remaining: 377ms
29:	learn: 25.9156920	total: 158ms	remaining: 369ms
30:	learn: 25.5311106	total: 160ms	remaining: 356ms
31:	learn: 25.2178997	total: 164ms	remaining: 349ms
32:	learn: 24.8572196	total: 169ms	remaining: 342ms
33:	learn: 24.5849710	total: 173ms	remaining: 336ms
34:	learn: 24.2209190	total: 177ms	remaining: 329ms
35:	learn: 23.8708250	total: 181ms	remaining: 322ms
36:	learn: 23.5325279	total: 185ms	remaining: 316ms
37:	learn: 23.2116148	total: 190ms	remaining: 310ms
38:	learn: 22.9696787	total: 194ms	remaining: 303ms
39:	learn: 22.7936783	total: 198ms	remaining: 297ms
40:	learn: 22.6228847	total: 202ms	remaining: 291ms
41:	learn: 22.3691527	total: 207ms	remaining: 286ms
42:	learn: 22.1002173	total: 211ms	remaining: 280ms
43:	learn: 21.9157268	total: 215ms	remaining: 274ms
44:	learn: 21.7229102	total: 220ms	remaining: 269ms
45:	learn: 21.4642005	total: 225ms	remaining: 264ms
46:	learn: 21.3029442	total: 229ms	remaining: 258ms
47:	learn: 21.1469792	total: 233ms	remaining: 253ms
48:	learn: 20.9458235	total: 238ms	remaining: 248ms
49:	learn: 20.7335242	total: 243ms	remaining: 243ms
50:	learn: 20.5440269	total: 247ms	remaining: 238ms
51:	learn: 20.3661449	total: 252ms	remaining: 233ms
52:	learn: 20.2158134	total: 258ms	remaining: 229ms
53:	learn: 19.9934873	total: 265ms	remaining: 226ms
54:	learn: 19.7879739	total: 273ms	remaining: 223ms
55:	learn: 19.6630460	total: 280ms	remaining: 220ms
56:	learn: 19.5152729	total: 288ms	remaining: 217ms
57:	learn: 19.3581128	total: 293ms	remaining: 212ms
58:	learn: 19.2209303	total: 299ms	remaining: 208ms
59:	learn: 19.0965248	total: 304ms	remaining: 203ms
60:	learn: 19.0035954	total: 310ms	remaining: 198ms
61:	learn: 18.8554149	total: 315ms	remaining: 193ms
62:	learn: 18.7095427	total: 320ms	remaining: 188ms
63:	learn: 18.5751494	total: 326ms	remaining: 183ms
64:	learn: 18.4678251	total: 331ms	remaining: 178ms
65:	learn: 18.3500325	total: 337ms	remaining: 173ms
66:	learn: 18.2088983	total: 342ms	remaining: 168ms
67:	learn: 18.0737705	total: 347ms	remaining: 163ms
68:	learn: 17.9325058	total: 352ms	remaining: 158ms
69:	learn: 17.8003911	total: 358ms	remaining: 154ms
70:	learn: 17.7385366	total: 364ms	remaining: 149ms
71:	learn: 17.6106998	total: 368ms	remaining: 143ms
72:	learn: 17.4816270	total: 373ms	remaining: 138ms
73:	learn: 17.4025554	total: 377ms	remaining: 133ms
74:	learn: 17.2902108	total: 381ms	remaining: 127ms
75:	learn: 17.2158048	total: 385ms	remaining: 122ms
76:	learn: 17.1261053	total: 390ms	remaining: 116ms
77:	learn: 17.0308917	total: 394ms	remaining: 111ms
78:	learn: 16.9546705	total: 398ms	remaining: 106ms
79:	learn: 16.8319165	total: 402ms	remaining: 100ms
80:	learn: 16.7687017	total: 406ms	remaining: 95.3ms
81:	learn: 16.6972326	total: 410ms	remaining: 90.1ms
82:	learn: 16.6124580	total: 415ms	remaining: 84.9ms
83:	learn: 16.4999052	total: 419ms	remaining: 79.7ms
84:	learn: 16.4302484	total: 423ms	remaining: 74.6ms
85:	learn: 16.3201363	total: 427ms	remaining: 69.6ms
86:	learn: 16.2534314	total: 432ms	remaining: 64.5ms
87:	learn: 16.1720485	total: 436ms	remaining: 59.5ms
88:	learn: 16.0625751	total: 441ms	remaining: 54.5ms
89:	learn: 15.9135088	total: 446ms	remaining: 49.5ms
90:	learn: 15.8658863	total: 450ms	remaining: 44.5ms
91:	learn: 15.8066805	total: 455ms	remaining: 39.5ms
92:	learn: 15.7412103	total: 462ms	remaining: 34.8ms
93:	learn: 15.6542776	total: 470ms	remaining: 30ms
94:	learn: 15.5760334	total: 479ms	remaining: 25.2ms
95:	learn: 15.5434131	total: 486ms	remaining: 20.2ms
96:	learn: 15.4709561	total: 492ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 497ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 502ms	remaining: 5.07ms
99:	learn: 15.3106595	total: 507ms	remaining: 0us
0:	learn: 46.7142257	total: 5.39ms	remaining: 533ms
1:	learn: 45.7634153	total: 10.9ms	remaining: 536ms
2:	learn: 45.0054253	total: 16ms	remaining: 518ms
3:	learn: 44.2120432	total: 20.4ms	remaining: 491ms
4:	learn: 43.3960472	total: 24.5ms	remaining: 465ms
5:	learn: 42.8588120	total: 28.5ms	remaining: 447ms
6:	learn: 41.9533701	total: 32.7ms	remaining: 435ms
7:	learn: 41.2745030	total: 36.9ms	remaining: 424ms
8:	learn: 40.6797495	total: 40.8ms	remaining: 413ms
9:	learn: 39.9899571	total: 44.8ms	remaining: 403ms
10:	learn: 39.4682100	total: 48.9ms	remaining: 396ms
11:	learn: 39.0305595	total: 53ms	remaining: 389ms
12:	learn: 38.4200417	total: 56.9ms	remaining: 381ms
13:	learn: 37.8425194	total: 60.7ms	remaining: 373ms
14:	learn: 37.4203127	total: 64.7ms	remaining: 367ms
15:	learn: 36.9917688	total: 69.3ms	remaining: 364ms
16:	learn: 36.5544138	total: 73.6ms	remaining: 359ms
17:	learn: 36.0727019	total: 77.6ms	remaining: 354ms
18:	learn: 35.4835715	total: 82ms	remaining: 349ms
19:	learn: 34.9865654	total: 86.8ms	remaining: 347ms
20:	learn: 34.6063373	total: 91.2ms	remaining: 343ms
21:	learn: 34.0997289	total: 95.8ms	remaining: 339ms
22:	learn: 33.7313171	total: 100ms	remaining: 336ms
23:	learn: 33.3582000	total: 105ms	remaining: 332ms
24:	learn: 32.9432456	total: 109ms	remaining: 327ms
25:	learn: 32.5220888	total: 114ms	remaining: 324ms
26:	learn: 32.2172292	total: 118ms	remaining: 320ms
27:	learn: 31.8972904	total: 128ms	remaining: 328ms
28:	learn: 31.6405350	total: 135ms	remaining: 331ms
29:	learn: 31.4167702	total: 142ms	remaining: 332ms
30:	learn: 30.8541961	total: 144ms	remaining: 322ms
31:	learn: 30.5572111	total: 153ms	remaining: 324ms
32:	learn: 30.1700399	total: 159ms	remaining: 322ms
33:	learn: 29.8537271	total: 173ms	remaining: 336ms
34:	learn: 29.6192540	total: 178ms	remaining: 331ms
35:	learn: 29.3276362	total: 184ms	remaining: 327ms
36:	learn: 28.9985179	total: 189ms	remaining: 323ms
37:	learn: 28.7046880	total: 195ms	remaining: 318ms
38:	learn: 28.4412677	total: 200ms	remaining: 312ms
39:	learn: 28.1277292	total: 204ms	remaining: 306ms
40:	learn: 27.9000750	total: 209ms	remaining: 300ms
41:	learn: 27.5433162	total: 213ms	remaining: 295ms
42:	learn: 27.2493285	total: 218ms	remaining: 289ms
43:	learn: 26.9576632	total: 220ms	remaining: 280ms
44:	learn: 26.6177110	total: 224ms	remaining: 274ms
45:	learn: 26.2812456	total: 230ms	remaining: 269ms
46:	learn: 26.0803859	total: 235ms	remaining: 265ms
47:	learn: 25.9543581	total: 239ms	remaining: 259ms
48:	learn: 25.7951582	total: 243ms	remaining: 253ms
49:	learn: 25.6548184	total: 247ms	remaining: 247ms
50:	learn: 25.4010843	total: 252ms	remaining: 242ms
51:	learn: 24.9773937	total: 255ms	remaining: 236ms
52:	learn: 24.8026156	total: 260ms	remaining: 230ms
53:	learn: 24.5568053	total: 264ms	remaining: 225ms
54:	learn: 24.2281839	total: 268ms	remaining: 220ms
55:	learn: 23.9202795	total: 272ms	remaining: 214ms
56:	learn: 23.7625591	total: 276ms	remaining: 209ms
57:	learn: 23.5429721	total: 280ms	remaining: 203ms
58:	learn: 23.3175893	total: 285ms	remaining: 198ms
59:	learn: 23.2035130	total: 289ms	remaining: 193ms
60:	learn: 23.0232450	total: 294ms	remaining: 188ms
61:	learn: 22.8384958	total: 298ms	remaining: 183ms
62:	learn: 22.6499902	total: 303ms	remaining: 178ms
63:	learn: 22.4577426	total: 307ms	remaining: 173ms
64:	learn: 22.3333158	total: 312ms	remaining: 168ms
65:	learn: 22.2064131	total: 317ms	remaining: 163ms
66:	learn: 22.1434971	total: 324ms	remaining: 160ms
67:	learn: 21.9596519	total: 332ms	remaining: 156ms
68:	learn: 21.8475576	total: 341ms	remaining: 153ms
69:	learn: 21.6954745	total: 348ms	remaining: 149ms
70:	learn: 21.5635976	total: 354ms	remaining: 144ms
71:	learn: 21.4588506	total: 359ms	remaining: 140ms
72:	learn: 21.3527268	total: 364ms	remaining: 135ms
73:	learn: 21.2661288	total: 369ms	remaining: 130ms
74:	learn: 21.1817333	total: 374ms	remaining: 125ms
75:	learn: 21.0527553	total: 379ms	remaining: 120ms
76:	learn: 20.9229021	total: 385ms	remaining: 115ms
77:	learn: 20.7563946	total: 390ms	remaining: 110ms
78:	learn: 20.6569831	total: 395ms	remaining: 105ms
79:	learn: 20.4982663	total: 400ms	remaining: 99.9ms
80:	learn: 20.3185460	total: 405ms	remaining: 94.9ms
81:	learn: 20.2096241	total: 409ms	remaining: 89.8ms
82:	learn: 20.1274891	total: 415ms	remaining: 85ms
83:	learn: 20.0740139	total: 420ms	remaining: 80.1ms
84:	learn: 19.9630699	total: 425ms	remaining: 74.9ms
85:	learn: 19.8753899	total: 429ms	remaining: 69.8ms
86:	learn: 19.6563612	total: 433ms	remaining: 64.7ms
87:	learn: 19.4680232	total: 437ms	remaining: 59.6ms
88:	learn: 19.3503431	total: 441ms	remaining: 54.5ms
89:	learn: 19.2221379	total: 445ms	remaining: 49.5ms
90:	learn: 19.0732542	total: 449ms	remaining: 44.4ms
91:	learn: 18.9825190	total: 453ms	remaining: 39.4ms
92:	learn: 18.8839009	total: 457ms	remaining: 34.4ms
93:	learn: 18.8012219	total: 461ms	remaining: 29.4ms
94:	learn: 18.7172713	total: 465ms	remaining: 24.5ms
95:	learn: 18.6201170	total: 470ms	remaining: 19.6ms
96:	learn: 18.5318611	total: 474ms	remaining: 14.7ms
97:	learn: 18.3833356	total: 478ms	remaining: 9.76ms
98:	learn: 18.3289700	total: 483ms	remaining: 4.88ms
99:	learn: 18.2227333	total: 487ms	remaining: 0us
0:	learn: 46.3764524	total: 5.15ms	remaining: 510ms
1:	learn: 45.5561269	total: 10.4ms	remaining: 508ms
2:	learn: 44.8811245	total: 15.7ms	remaining: 507ms
3:	learn: 44.0788617	total: 20.5ms	remaining: 492ms
4:	learn: 43.3619790	total: 25.7ms	remaining: 489ms
5:	learn: 42.6912112	total: 31.1ms	remaining: 487ms
6:	learn: 42.2292118	total: 36.3ms	remaining: 482ms
7:	learn: 41.7725191	total: 41.4ms	remaining: 476ms
8:	learn: 41.1676614	total: 45.9ms	remaining: 464ms
9:	learn: 40.5771076	total: 50.6ms	remaining: 456ms
10:	learn: 39.8343757	total: 55.2ms	remaining: 447ms
11:	learn: 39.3761142	total: 59.6ms	remaining: 437ms
12:	learn: 38.5254692	total: 64.3ms	remaining: 430ms
13:	learn: 37.9629555	total: 69.5ms	remaining: 427ms
14:	learn: 37.4418438	total: 74.8ms	remaining: 424ms
15:	learn: 37.0507283	total: 80.3ms	remaining: 421ms
16:	learn: 36.6264217	total: 84.8ms	remaining: 414ms
17:	learn: 36.1114940	total: 89.2ms	remaining: 406ms
18:	learn: 35.7193862	total: 93.2ms	remaining: 397ms
19:	learn: 35.3301177	total: 97.6ms	remaining: 391ms
20:	learn: 35.0598280	total: 102ms	remaining: 384ms
21:	learn: 34.5469736	total: 106ms	remaining: 377ms
22:	learn: 34.2064215	total: 110ms	remaining: 368ms
23:	learn: 33.7280710	total: 114ms	remaining: 362ms
24:	learn: 33.3282940	total: 119ms	remaining: 357ms
25:	learn: 32.8478961	total: 123ms	remaining: 351ms
26:	learn: 32.5722164	total: 127ms	remaining: 344ms
27:	learn: 32.2457019	total: 131ms	remaining: 337ms
28:	learn: 31.9230495	total: 135ms	remaining: 331ms
29:	learn: 31.4311611	total: 140ms	remaining: 327ms
30:	learn: 30.9179052	total: 145ms	remaining: 322ms
31:	learn: 30.6201141	total: 149ms	remaining: 317ms
32:	learn: 30.3421106	total: 154ms	remaining: 313ms
33:	learn: 29.9885373	total: 159ms	remaining: 308ms
34:	learn: 29.7462780	total: 163ms	remaining: 302ms
35:	learn: 29.3607153	total: 168ms	remaining: 298ms
36:	learn: 29.1793078	total: 176ms	remaining: 299ms
37:	learn: 28.9276538	total: 184ms	remaining: 301ms
38:	learn: 28.6903934	total: 197ms	remaining: 308ms
39:	learn: 28.2095033	total: 206ms	remaining: 308ms
40:	learn: 27.7990608	total: 211ms	remaining: 304ms
41:	learn: 27.5406632	total: 216ms	remaining: 299ms
42:	learn: 27.2575376	total: 222ms	remaining: 294ms
43:	learn: 26.9741707	total: 228ms	remaining: 290ms
44:	learn: 26.6606899	total: 233ms	remaining: 284ms
45:	learn: 26.4015833	total: 238ms	remaining: 279ms
46:	learn: 26.1828993	total: 243ms	remaining: 274ms
47:	learn: 26.0233709	total: 246ms	remaining: 266ms
48:	learn: 25.9300399	total: 251ms	remaining: 261ms
49:	learn: 25.5861489	total: 256ms	remaining: 256ms
50:	learn: 25.4322012	total: 261ms	remaining: 251ms
51:	learn: 25.1595644	total: 265ms	remaining: 245ms
52:	learn: 24.9955303	total: 271ms	remaining: 240ms
53:	learn: 24.7273966	total: 276ms	remaining: 235ms
54:	learn: 24.5747978	total: 281ms	remaining: 230ms
55:	learn: 24.3807977	total: 284ms	remaining: 224ms
56:	learn: 24.1689569	total: 288ms	remaining: 218ms
57:	learn: 23.9898221	total: 293ms	remaining: 212ms
58:	learn: 23.7566414	total: 296ms	remaining: 206ms
59:	learn: 23.6641165	total: 300ms	remaining: 200ms
60:	learn: 23.5658066	total: 304ms	remaining: 194ms
61:	learn: 23.4338851	total: 308ms	remaining: 189ms
62:	learn: 23.2408837	total: 312ms	remaining: 183ms
63:	learn: 23.0642038	total: 316ms	remaining: 178ms
64:	learn: 22.9032045	total: 320ms	remaining: 172ms
65:	learn: 22.7736138	total: 324ms	remaining: 167ms
66:	learn: 22.6836443	total: 334ms	remaining: 164ms
67:	learn: 22.5983654	total: 338ms	remaining: 159ms
68:	learn: 22.4419813	total: 343ms	remaining: 154ms
69:	learn: 22.2863339	total: 347ms	remaining: 149ms
70:	learn: 22.1792943	total: 352ms	remaining: 144ms
71:	learn: 22.1130574	total: 356ms	remaining: 138ms
72:	learn: 21.9858161	total: 361ms	remaining: 133ms
73:	learn: 21.8577784	total: 365ms	remaining: 128ms
74:	learn: 21.7845222	total: 369ms	remaining: 123ms
75:	learn: 21.6831390	total: 379ms	remaining: 120ms
76:	learn: 21.6292521	total: 389ms	remaining: 116ms
77:	learn: 21.5789330	total: 398ms	remaining: 112ms
78:	learn: 21.5420942	total: 405ms	remaining: 108ms
79:	learn: 21.4280939	total: 410ms	remaining: 103ms
80:	learn: 21.3641165	total: 416ms	remaining: 97.5ms
81:	learn: 21.2734814	total: 421ms	remaining: 92.4ms
82:	learn: 21.2220323	total: 426ms	remaining: 87.3ms
83:	learn: 21.0625792	total: 432ms	remaining: 82.2ms
84:	learn: 20.9488320	total: 438ms	remaining: 77.2ms
85:	learn: 20.8504255	total: 443ms	remaining: 72.2ms
86:	learn: 20.7848510	total: 448ms	remaining: 67ms
87:	learn: 20.7247442	total: 454ms	remaining: 61.9ms
88:	learn: 20.5698590	total: 459ms	remaining: 56.7ms
89:	learn: 20.4067620	total: 464ms	remaining: 51.5ms
90:	learn: 20.3062482	total: 469ms	remaining: 46.4ms
91:	learn: 20.2029696	total: 475ms	remaining: 41.3ms
92:	learn: 20.1384849	total: 480ms	remaining: 36.1ms
93:	learn: 20.0260709	total: 484ms	remaining: 30.9ms
94:	learn: 19.9122100	total: 489ms	remaining: 25.7ms
95:	learn: 19.8648487	total: 493ms	remaining: 20.6ms
96:	learn: 19.8207072	total: 498ms	remaining: 15.4ms
97:	learn: 19.7261189	total: 502ms	remaining: 10.3ms
98:	learn: 19.7042438	total: 507ms	remaining: 5.12ms
99:	learn: 19.6546645	total: 510ms	remaining: 0us
0:	learn: 47.0239288	total: 4.62ms	remaining: 457ms
1:	learn: 46.2253829	total: 8.99ms	remaining: 441ms
2:	learn: 45.5580301	total: 13.9ms	remaining: 451ms
3:	learn: 44.7273237	total: 22.2ms	remaining: 533ms
4:	learn: 43.8867421	total: 29.2ms	remaining: 554ms
5:	learn: 43.3615911	total: 37.2ms	remaining: 583ms
6:	learn: 42.8548390	total: 44.9ms	remaining: 596ms
7:	learn: 42.1606758	total: 49.7ms	remaining: 571ms
8:	learn: 41.6625870	total: 54.7ms	remaining: 553ms
9:	learn: 40.9497092	total: 59.9ms	remaining: 539ms
10:	learn: 40.1886318	total: 65.1ms	remaining: 526ms
11:	learn: 39.7456423	total: 70.4ms	remaining: 516ms
12:	learn: 39.1171373	total: 75.8ms	remaining: 507ms
13:	learn: 38.5451069	total: 81.1ms	remaining: 498ms
14:	learn: 38.0155834	total: 86.5ms	remaining: 490ms
15:	learn: 37.5631354	total: 91.9ms	remaining: 482ms
16:	learn: 37.1030023	total: 97.5ms	remaining: 476ms
17:	learn: 36.4563029	total: 102ms	remaining: 467ms
18:	learn: 36.0160976	total: 108ms	remaining: 462ms
19:	learn: 35.5079827	total: 114ms	remaining: 457ms
20:	learn: 35.2111885	total: 119ms	remaining: 447ms
21:	learn: 34.9397465	total: 123ms	remaining: 436ms
22:	learn: 34.5270048	total: 127ms	remaining: 425ms
23:	learn: 34.0169260	total: 131ms	remaining: 416ms
24:	learn: 33.7454892	total: 135ms	remaining: 406ms
25:	learn: 33.2648157	total: 139ms	remaining: 396ms
26:	learn: 32.8899427	total: 143ms	remaining: 387ms
27:	learn: 32.6185050	total: 147ms	remaining: 378ms
28:	learn: 32.3528531	total: 151ms	remaining: 370ms
29:	learn: 32.0859923	total: 155ms	remaining: 361ms
30:	learn: 31.6511144	total: 158ms	remaining: 353ms
31:	learn: 31.2571765	total: 163ms	remaining: 346ms
32:	learn: 30.9770049	total: 166ms	remaining: 338ms
33:	learn: 30.6084872	total: 170ms	remaining: 330ms
34:	learn: 30.3448632	total: 174ms	remaining: 323ms
35:	learn: 30.0360942	total: 178ms	remaining: 317ms
36:	learn: 29.6648968	total: 182ms	remaining: 310ms
37:	learn: 29.3165114	total: 186ms	remaining: 304ms
38:	learn: 29.0829198	total: 190ms	remaining: 297ms
39:	learn: 28.7752064	total: 194ms	remaining: 292ms
40:	learn: 28.3622191	total: 198ms	remaining: 285ms
41:	learn: 28.1346631	total: 203ms	remaining: 280ms
42:	learn: 27.9585719	total: 207ms	remaining: 274ms
43:	learn: 27.6565566	total: 211ms	remaining: 269ms
44:	learn: 27.3616172	total: 215ms	remaining: 263ms
45:	learn: 27.0658637	total: 219ms	remaining: 257ms
46:	learn: 26.8660382	total: 223ms	remaining: 252ms
47:	learn: 26.6536078	total: 228ms	remaining: 247ms
48:	learn: 26.3524440	total: 232ms	remaining: 242ms
49:	learn: 26.1595277	total: 237ms	remaining: 237ms
50:	learn: 25.9273523	total: 241ms	remaining: 232ms
51:	learn: 25.7195580	total: 246ms	remaining: 227ms
52:	learn: 25.5730225	total: 250ms	remaining: 222ms
53:	learn: 25.3455276	total: 255ms	remaining: 217ms
54:	learn: 25.2289675	total: 259ms	remaining: 212ms
55:	learn: 25.0133024	total: 265ms	remaining: 208ms
56:	learn: 24.8406714	total: 272ms	remaining: 205ms
57:	learn: 24.6367857	total: 280ms	remaining: 203ms
58:	learn: 24.5338177	total: 287ms	remaining: 200ms
59:	learn: 24.3799964	total: 294ms	remaining: 196ms
60:	learn: 24.1447492	total: 300ms	remaining: 191ms
61:	learn: 23.9880495	total: 305ms	remaining: 187ms
62:	learn: 23.7140630	total: 310ms	remaining: 182ms
63:	learn: 23.5003791	total: 315ms	remaining: 177ms
64:	learn: 23.3207645	total: 321ms	remaining: 173ms
65:	learn: 23.1958356	total: 326ms	remaining: 168ms
66:	learn: 23.0471302	total: 330ms	remaining: 163ms
67:	learn: 22.8977183	total: 336ms	remaining: 158ms
68:	learn: 22.7187400	total: 340ms	remaining: 153ms
69:	learn: 22.6523405	total: 345ms	remaining: 148ms
70:	learn: 22.4767453	total: 350ms	remaining: 143ms
71:	learn: 22.3243677	total: 354ms	remaining: 138ms
72:	learn: 22.2133096	total: 358ms	remaining: 132ms
73:	learn: 22.1151713	total: 363ms	remaining: 127ms
74:	learn: 22.0296666	total: 368ms	remaining: 123ms
75:	learn: 21.9195980	total: 372ms	remaining: 118ms
76:	learn: 21.8401730	total: 377ms	remaining: 113ms
77:	learn: 21.8079797	total: 383ms	remaining: 108ms
78:	learn: 21.7274109	total: 388ms	remaining: 103ms
79:	learn: 21.6663032	total: 392ms	remaining: 97.9ms
80:	learn: 21.5633117	total: 395ms	remaining: 92.7ms
81:	learn: 21.4542467	total: 399ms	remaining: 87.6ms
82:	learn: 21.3177957	total: 404ms	remaining: 82.7ms
83:	learn: 21.1289167	total: 408ms	remaining: 77.7ms
84:	learn: 21.0297368	total: 412ms	remaining: 72.7ms
85:	learn: 20.9089564	total: 417ms	remaining: 67.8ms
86:	learn: 20.7653988	total: 421ms	remaining: 62.9ms
87:	learn: 20.6521894	total: 425ms	remaining: 58ms
88:	learn: 20.5193021	total: 430ms	remaining: 53.1ms
89:	learn: 20.4361620	total: 434ms	remaining: 48.2ms
90:	learn: 20.3546710	total: 439ms	remaining: 43.4ms
91:	learn: 20.2513296	total: 443ms	remaining: 38.6ms
92:	learn: 20.1605550	total: 448ms	remaining: 33.7ms
93:	learn: 20.0515942	total: 453ms	remaining: 28.9ms
94:	learn: 19.9800764	total: 458ms	remaining: 24.1ms
95:	learn: 19.8996532	total: 462ms	remaining: 19.3ms
96:	learn: 19.8450910	total: 467ms	remaining: 14.4ms
97:	learn: 19.7887346	total: 472ms	remaining: 9.62ms
98:	learn: 19.7230872	total: 478ms	remaining: 4.83ms
99:	learn: 19.6328825	total: 485ms	remaining: 0us
0:	learn: 27.5585353	total: 5.45ms	remaining: 540ms
1:	learn: 27.1656995	total: 10.5ms	remaining: 515ms
2:	learn: 26.8590175	total: 15.6ms	remaining: 504ms
3:	learn: 26.5818406	total: 20.4ms	remaining: 488ms
4:	learn: 26.1148663	total: 25.4ms	remaining: 483ms
5:	learn: 25.7690484	total: 30.1ms	remaining: 471ms
6:	learn: 25.3489206	total: 35.1ms	remaining: 467ms
7:	learn: 24.9542406	total: 40.7ms	remaining: 468ms
8:	learn: 24.6777517	total: 45.9ms	remaining: 464ms
9:	learn: 24.3242344	total: 50.5ms	remaining: 454ms
10:	learn: 24.0383073	total: 54.6ms	remaining: 442ms
11:	learn: 23.7383420	total: 58.7ms	remaining: 430ms
12:	learn: 23.3461670	total: 63.1ms	remaining: 422ms
13:	learn: 23.0928636	total: 68ms	remaining: 418ms
14:	learn: 22.8770414	total: 72.6ms	remaining: 412ms
15:	learn: 22.6323214	total: 77.2ms	remaining: 405ms
16:	learn: 22.3597072	total: 81.8ms	remaining: 399ms
17:	learn: 22.1079813	total: 86.3ms	remaining: 393ms
18:	learn: 21.8421199	total: 90.7ms	remaining: 387ms
19:	learn: 21.6576508	total: 95.5ms	remaining: 382ms
20:	learn: 21.4301268	total: 100ms	remaining: 376ms
21:	learn: 21.2287388	total: 104ms	remaining: 369ms
22:	learn: 21.0553872	total: 108ms	remaining: 361ms
23:	learn: 20.8977091	total: 112ms	remaining: 356ms
24:	learn: 20.6619051	total: 117ms	remaining: 350ms
25:	learn: 20.5040955	total: 121ms	remaining: 345ms
26:	learn: 20.3181195	total: 126ms	remaining: 341ms
27:	learn: 20.0869436	total: 130ms	remaining: 335ms
28:	learn: 19.9375985	total: 135ms	remaining: 331ms
29:	learn: 19.8247516	total: 139ms	remaining: 325ms
30:	learn: 19.6261697	total: 144ms	remaining: 320ms
31:	learn: 19.4547236	total: 152ms	remaining: 324ms
32:	learn: 19.3157092	total: 160ms	remaining: 324ms
33:	learn: 19.1561419	total: 168ms	remaining: 325ms
34:	learn: 19.0453620	total: 175ms	remaining: 325ms
35:	learn: 18.8738574	total: 180ms	remaining: 320ms
36:	learn: 18.7072907	total: 185ms	remaining: 315ms
37:	learn: 18.5877943	total: 190ms	remaining: 311ms
38:	learn: 18.4436380	total: 196ms	remaining: 306ms
39:	learn: 18.3463356	total: 201ms	remaining: 301ms
40:	learn: 18.2008059	total: 206ms	remaining: 297ms
41:	learn: 18.0582079	total: 212ms	remaining: 292ms
42:	learn: 17.8891982	total: 217ms	remaining: 287ms
43:	learn: 17.7332246	total: 222ms	remaining: 282ms
44:	learn: 17.6206421	total: 227ms	remaining: 278ms
45:	learn: 17.4982800	total: 232ms	remaining: 272ms
46:	learn: 17.3970150	total: 236ms	remaining: 266ms
47:	learn: 17.3058203	total: 241ms	remaining: 262ms
48:	learn: 17.1789256	total: 247ms	remaining: 257ms
49:	learn: 17.0916229	total: 251ms	remaining: 251ms
50:	learn: 16.9859820	total: 255ms	remaining: 245ms
51:	learn: 16.8995582	total: 259ms	remaining: 239ms
52:	learn: 16.8137014	total: 263ms	remaining: 234ms
53:	learn: 16.7021451	total: 267ms	remaining: 228ms
54:	learn: 16.5895582	total: 271ms	remaining: 222ms
55:	learn: 16.5015639	total: 276ms	remaining: 216ms
56:	learn: 16.4356637	total: 280ms	remaining: 211ms
57:	learn: 16.3514525	total: 284ms	remaining: 205ms
58:	learn: 16.2401369	total: 288ms	remaining: 200ms
59:	learn: 16.1293223	total: 292ms	remaining: 195ms
60:	learn: 16.0271167	total: 296ms	remaining: 189ms
61:	learn: 15.9126257	total: 301ms	remaining: 184ms
62:	learn: 15.8391096	total: 305ms	remaining: 179ms
63:	learn: 15.7441773	total: 309ms	remaining: 174ms
64:	learn: 15.6885195	total: 314ms	remaining: 169ms
65:	learn: 15.6052039	total: 318ms	remaining: 164ms
66:	learn: 15.5074202	total: 322ms	remaining: 159ms
67:	learn: 15.4054338	total: 327ms	remaining: 154ms
68:	learn: 15.2885714	total: 332ms	remaining: 149ms
69:	learn: 15.2157472	total: 336ms	remaining: 144ms
70:	learn: 15.1031554	total: 340ms	remaining: 139ms
71:	learn: 15.0237470	total: 346ms	remaining: 135ms
72:	learn: 14.9756825	total: 354ms	remaining: 131ms
73:	learn: 14.8840596	total: 361ms	remaining: 127ms
74:	learn: 14.8077061	total: 369ms	remaining: 123ms
75:	learn: 14.7444437	total: 375ms	remaining: 119ms
76:	learn: 14.6751720	total: 381ms	remaining: 114ms
77:	learn: 14.5830333	total: 386ms	remaining: 109ms
78:	learn: 14.5241206	total: 392ms	remaining: 104ms
79:	learn: 14.4892731	total: 396ms	remaining: 99.1ms
80:	learn: 14.4256605	total: 401ms	remaining: 94.2ms
81:	learn: 14.3666860	total: 406ms	remaining: 89.2ms
82:	learn: 14.2938372	total: 412ms	remaining: 84.3ms
83:	learn: 14.2161532	total: 417ms	remaining: 79.4ms
84:	learn: 14.1582910	total: 422ms	remaining: 74.4ms
85:	learn: 14.1029153	total: 427ms	remaining: 69.5ms
86:	learn: 14.0475835	total: 432ms	remaining: 64.5ms
87:	learn: 13.9892661	total: 436ms	remaining: 59.5ms
88:	learn: 13.9481628	total: 442ms	remaining: 54.6ms
89:	learn: 13.8483991	total: 448ms	remaining: 49.8ms
90:	learn: 13.7775614	total: 452ms	remaining: 44.7ms
91:	learn: 13.7304585	total: 456ms	remaining: 39.6ms
92:	learn: 13.6783381	total: 460ms	remaining: 34.6ms
93:	learn: 13.6356964	total: 464ms	remaining: 29.6ms
94:	learn: 13.5924371	total: 468ms	remaining: 24.6ms
95:	learn: 13.5400746	total: 472ms	remaining: 19.7ms
96:	learn: 13.4897333	total: 476ms	remaining: 14.7ms
97:	learn: 13.4470321	total: 480ms	remaining: 9.8ms
98:	learn: 13.3856082	total: 484ms	remaining: 4.89ms
99:	learn: 13.3082371	total: 488ms	remaining: 0us
0:	learn: 43.0395283	total: 5.07ms	remaining: 502ms
1:	learn: 42.1130223	total: 11.9ms	remaining: 584ms
2:	learn: 41.1753409	total: 19.2ms	remaining: 621ms
3:	learn: 40.3637444	total: 29.8ms	remaining: 716ms
4:	learn: 39.6508088	total: 35.5ms	remaining: 675ms
5:	learn: 38.7217934	total: 44.2ms	remaining: 692ms
6:	learn: 37.8538055	total: 49.4ms	remaining: 656ms
7:	learn: 36.9793574	total: 54.8ms	remaining: 630ms
8:	learn: 36.3076984	total: 60.3ms	remaining: 610ms
9:	learn: 35.6673160	total: 65.8ms	remaining: 592ms
10:	learn: 34.8889800	total: 70.8ms	remaining: 573ms
11:	learn: 34.1675517	total: 76.6ms	remaining: 561ms
12:	learn: 33.6779564	total: 81.8ms	remaining: 547ms
13:	learn: 33.0710039	total: 86.6ms	remaining: 532ms
14:	learn: 32.4966674	total: 90.9ms	remaining: 515ms
15:	learn: 31.9492856	total: 95.6ms	remaining: 502ms
16:	learn: 31.5108129	total: 100ms	remaining: 489ms
17:	learn: 30.9804023	total: 105ms	remaining: 478ms
18:	learn: 30.4169089	total: 110ms	remaining: 469ms
19:	learn: 29.8930375	total: 116ms	remaining: 463ms
20:	learn: 29.3974421	total: 120ms	remaining: 453ms
21:	learn: 28.8792307	total: 124ms	remaining: 441ms
22:	learn: 28.3894474	total: 129ms	remaining: 431ms
23:	learn: 27.9921276	total: 132ms	remaining: 419ms
24:	learn: 27.6158887	total: 136ms	remaining: 409ms
25:	learn: 27.2866950	total: 141ms	remaining: 400ms
26:	learn: 26.8770708	total: 145ms	remaining: 391ms
27:	learn: 26.6233005	total: 149ms	remaining: 382ms
28:	learn: 26.2921934	total: 153ms	remaining: 374ms
29:	learn: 25.9156920	total: 157ms	remaining: 366ms
30:	learn: 25.5311106	total: 158ms	remaining: 353ms
31:	learn: 25.2178997	total: 163ms	remaining: 346ms
32:	learn: 24.8572196	total: 167ms	remaining: 339ms
33:	learn: 24.5849710	total: 171ms	remaining: 331ms
34:	learn: 24.2209190	total: 175ms	remaining: 324ms
35:	learn: 23.8708250	total: 179ms	remaining: 318ms
36:	learn: 23.5325279	total: 183ms	remaining: 311ms
37:	learn: 23.2116148	total: 187ms	remaining: 305ms
38:	learn: 22.9696787	total: 191ms	remaining: 298ms
39:	learn: 22.7936783	total: 195ms	remaining: 292ms
40:	learn: 22.6228847	total: 198ms	remaining: 286ms
41:	learn: 22.3691527	total: 203ms	remaining: 281ms
42:	learn: 22.1002173	total: 207ms	remaining: 275ms
43:	learn: 21.9157268	total: 211ms	remaining: 269ms
44:	learn: 21.7229102	total: 215ms	remaining: 263ms
45:	learn: 21.4642005	total: 220ms	remaining: 259ms
46:	learn: 21.3029442	total: 225ms	remaining: 253ms
47:	learn: 21.1469792	total: 229ms	remaining: 248ms
48:	learn: 20.9458235	total: 234ms	remaining: 243ms
49:	learn: 20.7335242	total: 238ms	remaining: 238ms
50:	learn: 20.5440269	total: 242ms	remaining: 232ms
51:	learn: 20.3661449	total: 246ms	remaining: 227ms
52:	learn: 20.2158134	total: 251ms	remaining: 222ms
53:	learn: 19.9934873	total: 256ms	remaining: 218ms
54:	learn: 19.7879739	total: 264ms	remaining: 216ms
55:	learn: 19.6630460	total: 271ms	remaining: 213ms
56:	learn: 19.5152729	total: 279ms	remaining: 211ms
57:	learn: 19.3581128	total: 287ms	remaining: 208ms
58:	learn: 19.2209303	total: 292ms	remaining: 203ms
59:	learn: 19.0965248	total: 298ms	remaining: 199ms
60:	learn: 19.0035954	total: 303ms	remaining: 194ms
61:	learn: 18.8554149	total: 309ms	remaining: 189ms
62:	learn: 18.7095427	total: 314ms	remaining: 185ms
63:	learn: 18.5751494	total: 320ms	remaining: 180ms
64:	learn: 18.4678251	total: 325ms	remaining: 175ms
65:	learn: 18.3500325	total: 330ms	remaining: 170ms
66:	learn: 18.2088983	total: 335ms	remaining: 165ms
67:	learn: 18.0737705	total: 340ms	remaining: 160ms
68:	learn: 17.9325058	total: 346ms	remaining: 155ms
69:	learn: 17.8003911	total: 350ms	remaining: 150ms
70:	learn: 17.7385366	total: 356ms	remaining: 145ms
71:	learn: 17.6106998	total: 361ms	remaining: 140ms
72:	learn: 17.4816270	total: 366ms	remaining: 135ms
73:	learn: 17.4025554	total: 370ms	remaining: 130ms
74:	learn: 17.2902108	total: 375ms	remaining: 125ms
75:	learn: 17.2158048	total: 379ms	remaining: 120ms
76:	learn: 17.1261053	total: 383ms	remaining: 114ms
77:	learn: 17.0308917	total: 388ms	remaining: 109ms
78:	learn: 16.9546705	total: 392ms	remaining: 104ms
79:	learn: 16.8319165	total: 396ms	remaining: 99.1ms
80:	learn: 16.7687017	total: 401ms	remaining: 94ms
81:	learn: 16.6972326	total: 405ms	remaining: 88.9ms
82:	learn: 16.6124580	total: 409ms	remaining: 83.8ms
83:	learn: 16.4999052	total: 414ms	remaining: 78.9ms
84:	learn: 16.4302484	total: 418ms	remaining: 73.8ms
85:	learn: 16.3201363	total: 422ms	remaining: 68.8ms
86:	learn: 16.2534314	total: 427ms	remaining: 63.8ms
87:	learn: 16.1720485	total: 432ms	remaining: 58.9ms
88:	learn: 16.0625751	total: 436ms	remaining: 53.9ms
89:	learn: 15.9135088	total: 441ms	remaining: 49ms
90:	learn: 15.8658863	total: 445ms	remaining: 44ms
91:	learn: 15.8066805	total: 450ms	remaining: 39.1ms
92:	learn: 15.7412103	total: 455ms	remaining: 34.2ms
93:	learn: 15.6542776	total: 459ms	remaining: 29.3ms
94:	learn: 15.5760334	total: 464ms	remaining: 24.4ms
95:	learn: 15.5434131	total: 472ms	remaining: 19.7ms
96:	learn: 15.4709561	total: 480ms	remaining: 14.8ms
97:	learn: 15.4449618	total: 488ms	remaining: 9.96ms
98:	learn: 15.3752761	total: 496ms	remaining: 5.01ms
99:	learn: 15.3106595	total: 502ms	remaining: 0us
0:	learn: 46.7142257	total: 4.89ms	remaining: 485ms
1:	learn: 45.7634153	total: 10.1ms	remaining: 497ms
2:	learn: 45.0054253	total: 15.7ms	remaining: 508ms
3:	learn: 44.2120432	total: 21.2ms	remaining: 508ms
4:	learn: 43.3960472	total: 24.9ms	remaining: 473ms
5:	learn: 42.8588120	total: 29.3ms	remaining: 459ms
6:	learn: 41.9533701	total: 33.3ms	remaining: 442ms
7:	learn: 41.2745030	total: 37.4ms	remaining: 431ms
8:	learn: 40.6797495	total: 41.3ms	remaining: 418ms
9:	learn: 39.9899571	total: 45.5ms	remaining: 409ms
10:	learn: 39.4682100	total: 49.8ms	remaining: 403ms
11:	learn: 39.0305595	total: 53.8ms	remaining: 395ms
12:	learn: 38.4200417	total: 57.7ms	remaining: 386ms
13:	learn: 37.8425194	total: 61.8ms	remaining: 380ms
14:	learn: 37.4203127	total: 66.1ms	remaining: 374ms
15:	learn: 36.9917688	total: 70.1ms	remaining: 368ms
16:	learn: 36.5544138	total: 74.5ms	remaining: 364ms
17:	learn: 36.0727019	total: 78.9ms	remaining: 359ms
18:	learn: 35.4835715	total: 83.7ms	remaining: 357ms
19:	learn: 34.9865654	total: 87.8ms	remaining: 351ms
20:	learn: 34.6063373	total: 92.4ms	remaining: 348ms
21:	learn: 34.0997289	total: 96.9ms	remaining: 344ms
22:	learn: 33.7313171	total: 102ms	remaining: 340ms
23:	learn: 33.3582000	total: 106ms	remaining: 336ms
24:	learn: 32.9432456	total: 111ms	remaining: 332ms
25:	learn: 32.5220888	total: 115ms	remaining: 327ms
26:	learn: 32.2172292	total: 120ms	remaining: 323ms
27:	learn: 31.8972904	total: 124ms	remaining: 319ms
28:	learn: 31.6405350	total: 129ms	remaining: 316ms
29:	learn: 31.4167702	total: 138ms	remaining: 322ms
30:	learn: 30.8541961	total: 141ms	remaining: 313ms
31:	learn: 30.5572111	total: 150ms	remaining: 318ms
32:	learn: 30.1700399	total: 156ms	remaining: 318ms
33:	learn: 29.8537271	total: 167ms	remaining: 324ms
34:	learn: 29.6192540	total: 172ms	remaining: 320ms
35:	learn: 29.3276362	total: 178ms	remaining: 316ms
36:	learn: 28.9985179	total: 183ms	remaining: 312ms
37:	learn: 28.7046880	total: 189ms	remaining: 308ms
38:	learn: 28.4412677	total: 194ms	remaining: 303ms
39:	learn: 28.1277292	total: 199ms	remaining: 299ms
40:	learn: 27.9000750	total: 205ms	remaining: 294ms
41:	learn: 27.5433162	total: 209ms	remaining: 289ms
42:	learn: 27.2493285	total: 214ms	remaining: 284ms
43:	learn: 26.9576632	total: 216ms	remaining: 274ms
44:	learn: 26.6177110	total: 220ms	remaining: 269ms
45:	learn: 26.2812456	total: 225ms	remaining: 264ms
46:	learn: 26.0803859	total: 229ms	remaining: 258ms
47:	learn: 25.9543581	total: 234ms	remaining: 254ms
48:	learn: 25.7951582	total: 240ms	remaining: 249ms
49:	learn: 25.6548184	total: 245ms	remaining: 245ms
50:	learn: 25.4010843	total: 249ms	remaining: 239ms
51:	learn: 24.9773937	total: 253ms	remaining: 234ms
52:	learn: 24.8026156	total: 257ms	remaining: 228ms
53:	learn: 24.5568053	total: 261ms	remaining: 223ms
54:	learn: 24.2281839	total: 265ms	remaining: 217ms
55:	learn: 23.9202795	total: 269ms	remaining: 211ms
56:	learn: 23.7625591	total: 273ms	remaining: 206ms
57:	learn: 23.5429721	total: 277ms	remaining: 201ms
58:	learn: 23.3175893	total: 281ms	remaining: 196ms
59:	learn: 23.2035130	total: 285ms	remaining: 190ms
60:	learn: 23.0232450	total: 290ms	remaining: 185ms
61:	learn: 22.8384958	total: 294ms	remaining: 180ms
62:	learn: 22.6499902	total: 299ms	remaining: 176ms
63:	learn: 22.4577426	total: 303ms	remaining: 171ms
64:	learn: 22.3333158	total: 308ms	remaining: 166ms
65:	learn: 22.2064131	total: 313ms	remaining: 161ms
66:	learn: 22.1434971	total: 317ms	remaining: 156ms
67:	learn: 21.9596519	total: 322ms	remaining: 151ms
68:	learn: 21.8475576	total: 326ms	remaining: 147ms
69:	learn: 21.6954745	total: 335ms	remaining: 143ms
70:	learn: 21.5635976	total: 342ms	remaining: 140ms
71:	learn: 21.4588506	total: 351ms	remaining: 136ms
72:	learn: 21.3527268	total: 356ms	remaining: 132ms
73:	learn: 21.2661288	total: 363ms	remaining: 128ms
74:	learn: 21.1817333	total: 368ms	remaining: 123ms
75:	learn: 21.0527553	total: 374ms	remaining: 118ms
76:	learn: 20.9229021	total: 379ms	remaining: 113ms
77:	learn: 20.7563946	total: 384ms	remaining: 108ms
78:	learn: 20.6569831	total: 389ms	remaining: 103ms
79:	learn: 20.4982663	total: 394ms	remaining: 98.6ms
80:	learn: 20.3185460	total: 400ms	remaining: 93.8ms
81:	learn: 20.2096241	total: 405ms	remaining: 88.9ms
82:	learn: 20.1274891	total: 410ms	remaining: 84ms
83:	learn: 20.0740139	total: 415ms	remaining: 79.1ms
84:	learn: 19.9630699	total: 420ms	remaining: 74.1ms
85:	learn: 19.8753899	total: 425ms	remaining: 69.1ms
86:	learn: 19.6563612	total: 430ms	remaining: 64.3ms
87:	learn: 19.4680232	total: 435ms	remaining: 59.4ms
88:	learn: 19.3503431	total: 439ms	remaining: 54.3ms
89:	learn: 19.2221379	total: 443ms	remaining: 49.3ms
90:	learn: 19.0732542	total: 448ms	remaining: 44.3ms
91:	learn: 18.9825190	total: 452ms	remaining: 39.3ms
92:	learn: 18.8839009	total: 456ms	remaining: 34.3ms
93:	learn: 18.8012219	total: 460ms	remaining: 29.3ms
94:	learn: 18.7172713	total: 464ms	remaining: 24.4ms
95:	learn: 18.6201170	total: 468ms	remaining: 19.5ms
96:	learn: 18.5318611	total: 472ms	remaining: 14.6ms
97:	learn: 18.3833356	total: 476ms	remaining: 9.72ms
98:	learn: 18.3289700	total: 480ms	remaining: 4.85ms
99:	learn: 18.2227333	total: 484ms	remaining: 0us
0:	learn: 46.3764524	total: 9.11ms	remaining: 902ms
1:	learn: 45.5561269	total: 15.5ms	remaining: 760ms
2:	learn: 44.8811245	total: 21.6ms	remaining: 700ms
3:	learn: 44.0788617	total: 26.7ms	remaining: 641ms
4:	learn: 43.3619790	total: 31.8ms	remaining: 605ms
5:	learn: 42.6912112	total: 37.1ms	remaining: 581ms
6:	learn: 42.2292118	total: 42.2ms	remaining: 560ms
7:	learn: 41.7725191	total: 47.5ms	remaining: 546ms
8:	learn: 41.1676614	total: 53ms	remaining: 535ms
9:	learn: 40.5771076	total: 58.3ms	remaining: 525ms
10:	learn: 39.8343757	total: 63.7ms	remaining: 515ms
11:	learn: 39.3761142	total: 69.2ms	remaining: 508ms
12:	learn: 38.5254692	total: 74ms	remaining: 495ms
13:	learn: 37.9629555	total: 79.1ms	remaining: 486ms
14:	learn: 37.4418438	total: 84.2ms	remaining: 477ms
15:	learn: 37.0507283	total: 89.8ms	remaining: 472ms
16:	learn: 36.6264217	total: 93.6ms	remaining: 457ms
17:	learn: 36.1114940	total: 97.5ms	remaining: 444ms
18:	learn: 35.7193862	total: 101ms	remaining: 433ms
19:	learn: 35.3301177	total: 106ms	remaining: 423ms
20:	learn: 35.0598280	total: 110ms	remaining: 414ms
21:	learn: 34.5469736	total: 114ms	remaining: 405ms
22:	learn: 34.2064215	total: 118ms	remaining: 395ms
23:	learn: 33.7280710	total: 122ms	remaining: 388ms
24:	learn: 33.3282940	total: 126ms	remaining: 379ms
25:	learn: 32.8478961	total: 131ms	remaining: 372ms
26:	learn: 32.5722164	total: 134ms	remaining: 363ms
27:	learn: 32.2457019	total: 139ms	remaining: 356ms
28:	learn: 31.9230495	total: 142ms	remaining: 349ms
29:	learn: 31.4311611	total: 147ms	remaining: 342ms
30:	learn: 30.9179052	total: 151ms	remaining: 336ms
31:	learn: 30.6201141	total: 155ms	remaining: 330ms
32:	learn: 30.3421106	total: 159ms	remaining: 324ms
33:	learn: 29.9885373	total: 163ms	remaining: 317ms
34:	learn: 29.7462780	total: 168ms	remaining: 312ms
35:	learn: 29.3607153	total: 173ms	remaining: 307ms
36:	learn: 29.1793078	total: 178ms	remaining: 302ms
37:	learn: 28.9276538	total: 182ms	remaining: 297ms
38:	learn: 28.6903934	total: 187ms	remaining: 292ms
39:	learn: 28.2095033	total: 192ms	remaining: 287ms
40:	learn: 27.7990608	total: 196ms	remaining: 282ms
41:	learn: 27.5406632	total: 200ms	remaining: 277ms
42:	learn: 27.2575376	total: 207ms	remaining: 274ms
43:	learn: 26.9741707	total: 214ms	remaining: 272ms
44:	learn: 26.6606899	total: 221ms	remaining: 271ms
45:	learn: 26.4015833	total: 229ms	remaining: 268ms
46:	learn: 26.1828993	total: 244ms	remaining: 275ms
47:	learn: 26.0233709	total: 247ms	remaining: 267ms
48:	learn: 25.9300399	total: 252ms	remaining: 262ms
49:	learn: 25.5861489	total: 257ms	remaining: 257ms
50:	learn: 25.4322012	total: 262ms	remaining: 252ms
51:	learn: 25.1595644	total: 267ms	remaining: 247ms
52:	learn: 24.9955303	total: 272ms	remaining: 241ms
53:	learn: 24.7273966	total: 277ms	remaining: 236ms
54:	learn: 24.5747978	total: 282ms	remaining: 231ms
55:	learn: 24.3807977	total: 288ms	remaining: 226ms
56:	learn: 24.1689569	total: 293ms	remaining: 221ms
57:	learn: 23.9898221	total: 298ms	remaining: 216ms
58:	learn: 23.7566414	total: 303ms	remaining: 211ms
59:	learn: 23.6641165	total: 309ms	remaining: 206ms
60:	learn: 23.5658066	total: 313ms	remaining: 200ms
61:	learn: 23.4338851	total: 317ms	remaining: 194ms
62:	learn: 23.2408837	total: 321ms	remaining: 189ms
63:	learn: 23.0642038	total: 325ms	remaining: 183ms
64:	learn: 22.9032045	total: 329ms	remaining: 177ms
65:	learn: 22.7736138	total: 334ms	remaining: 172ms
66:	learn: 22.6836443	total: 338ms	remaining: 166ms
67:	learn: 22.5983654	total: 342ms	remaining: 161ms
68:	learn: 22.4419813	total: 347ms	remaining: 156ms
69:	learn: 22.2863339	total: 351ms	remaining: 150ms
70:	learn: 22.1792943	total: 355ms	remaining: 145ms
71:	learn: 22.1130574	total: 359ms	remaining: 140ms
72:	learn: 21.9858161	total: 363ms	remaining: 134ms
73:	learn: 21.8577784	total: 368ms	remaining: 129ms
74:	learn: 21.7845222	total: 373ms	remaining: 124ms
75:	learn: 21.6831390	total: 377ms	remaining: 119ms
76:	learn: 21.6292521	total: 382ms	remaining: 114ms
77:	learn: 21.5789330	total: 386ms	remaining: 109ms
78:	learn: 21.5420942	total: 391ms	remaining: 104ms
79:	learn: 21.4280939	total: 397ms	remaining: 99.2ms
80:	learn: 21.3641165	total: 402ms	remaining: 94.2ms
81:	learn: 21.2734814	total: 411ms	remaining: 90.2ms
82:	learn: 21.2220323	total: 420ms	remaining: 85.9ms
83:	learn: 21.0625792	total: 429ms	remaining: 81.6ms
84:	learn: 20.9488320	total: 436ms	remaining: 76.9ms
85:	learn: 20.8504255	total: 441ms	remaining: 71.8ms
86:	learn: 20.7848510	total: 447ms	remaining: 66.8ms
87:	learn: 20.7247442	total: 452ms	remaining: 61.6ms
88:	learn: 20.5698590	total: 457ms	remaining: 56.5ms
89:	learn: 20.4067620	total: 462ms	remaining: 51.3ms
90:	learn: 20.3062482	total: 467ms	remaining: 46.2ms
91:	learn: 20.2029696	total: 473ms	remaining: 41.1ms
92:	learn: 20.1384849	total: 478ms	remaining: 36ms
93:	learn: 20.0260709	total: 483ms	remaining: 30.8ms
94:	learn: 19.9122100	total: 487ms	remaining: 25.6ms
95:	learn: 19.8648487	total: 492ms	remaining: 20.5ms
96:	learn: 19.8207072	total: 496ms	remaining: 15.3ms
97:	learn: 19.7261189	total: 500ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 505ms	remaining: 5.1ms
99:	learn: 19.6546645	total: 510ms	remaining: 0us
0:	learn: 47.0239288	total: 4.26ms	remaining: 422ms
1:	learn: 46.2253829	total: 8.17ms	remaining: 400ms
2:	learn: 45.5580301	total: 11.8ms	remaining: 382ms
3:	learn: 44.7273237	total: 16.3ms	remaining: 390ms
4:	learn: 43.8867421	total: 20.6ms	remaining: 391ms
5:	learn: 43.3615911	total: 25ms	remaining: 391ms
6:	learn: 42.8548390	total: 29.5ms	remaining: 392ms
7:	learn: 42.1606758	total: 33.7ms	remaining: 387ms
8:	learn: 41.6625870	total: 38.3ms	remaining: 387ms
9:	learn: 40.9497092	total: 42.7ms	remaining: 384ms
10:	learn: 40.1886318	total: 47.1ms	remaining: 381ms
11:	learn: 39.7456423	total: 54ms	remaining: 396ms
12:	learn: 39.1171373	total: 62.2ms	remaining: 416ms
13:	learn: 38.5451069	total: 70.5ms	remaining: 433ms
14:	learn: 38.0155834	total: 76.7ms	remaining: 435ms
15:	learn: 37.5631354	total: 84.2ms	remaining: 442ms
16:	learn: 37.1030023	total: 89ms	remaining: 434ms
17:	learn: 36.4563029	total: 94.4ms	remaining: 430ms
18:	learn: 36.0160976	total: 99.4ms	remaining: 424ms
19:	learn: 35.5079827	total: 104ms	remaining: 418ms
20:	learn: 35.2111885	total: 110ms	remaining: 414ms
21:	learn: 34.9397465	total: 115ms	remaining: 409ms
22:	learn: 34.5270048	total: 120ms	remaining: 403ms
23:	learn: 34.0169260	total: 126ms	remaining: 398ms
24:	learn: 33.7454892	total: 130ms	remaining: 390ms
25:	learn: 33.2648157	total: 134ms	remaining: 383ms
26:	learn: 32.8899427	total: 139ms	remaining: 375ms
27:	learn: 32.6185050	total: 144ms	remaining: 369ms
28:	learn: 32.3528531	total: 149ms	remaining: 365ms
29:	learn: 32.0859923	total: 154ms	remaining: 360ms
30:	learn: 31.6511144	total: 159ms	remaining: 354ms
31:	learn: 31.2571765	total: 164ms	remaining: 348ms
32:	learn: 30.9770049	total: 168ms	remaining: 341ms
33:	learn: 30.6084872	total: 172ms	remaining: 335ms
34:	learn: 30.3448632	total: 177ms	remaining: 328ms
35:	learn: 30.0360942	total: 181ms	remaining: 322ms
36:	learn: 29.6648968	total: 185ms	remaining: 315ms
37:	learn: 29.3165114	total: 189ms	remaining: 309ms
38:	learn: 29.0829198	total: 194ms	remaining: 303ms
39:	learn: 28.7752064	total: 198ms	remaining: 297ms
40:	learn: 28.3622191	total: 202ms	remaining: 291ms
41:	learn: 28.1346631	total: 206ms	remaining: 285ms
42:	learn: 27.9585719	total: 211ms	remaining: 280ms
43:	learn: 27.6565566	total: 215ms	remaining: 274ms
44:	learn: 27.3616172	total: 220ms	remaining: 269ms
45:	learn: 27.0658637	total: 224ms	remaining: 263ms
46:	learn: 26.8660382	total: 228ms	remaining: 258ms
47:	learn: 26.6536078	total: 233ms	remaining: 253ms
48:	learn: 26.3524440	total: 238ms	remaining: 247ms
49:	learn: 26.1595277	total: 242ms	remaining: 242ms
50:	learn: 25.9273523	total: 247ms	remaining: 237ms
51:	learn: 25.7195580	total: 251ms	remaining: 232ms
52:	learn: 25.5730225	total: 256ms	remaining: 227ms
53:	learn: 25.3455276	total: 260ms	remaining: 221ms
54:	learn: 25.2289675	total: 265ms	remaining: 217ms
55:	learn: 25.0133024	total: 273ms	remaining: 214ms
56:	learn: 24.8406714	total: 286ms	remaining: 216ms
57:	learn: 24.6367857	total: 291ms	remaining: 211ms
58:	learn: 24.5338177	total: 297ms	remaining: 207ms
59:	learn: 24.3799964	total: 303ms	remaining: 202ms
60:	learn: 24.1447492	total: 308ms	remaining: 197ms
61:	learn: 23.9880495	total: 313ms	remaining: 192ms
62:	learn: 23.7140630	total: 318ms	remaining: 187ms
63:	learn: 23.5003791	total: 324ms	remaining: 182ms
64:	learn: 23.3207645	total: 334ms	remaining: 180ms
65:	learn: 23.1958356	total: 340ms	remaining: 175ms
66:	learn: 23.0471302	total: 345ms	remaining: 170ms
67:	learn: 22.8977183	total: 350ms	remaining: 165ms
68:	learn: 22.7187400	total: 355ms	remaining: 160ms
69:	learn: 22.6523405	total: 360ms	remaining: 154ms
70:	learn: 22.4767453	total: 364ms	remaining: 149ms
71:	learn: 22.3243677	total: 369ms	remaining: 143ms
72:	learn: 22.2133096	total: 372ms	remaining: 138ms
73:	learn: 22.1151713	total: 376ms	remaining: 132ms
74:	learn: 22.0296666	total: 380ms	remaining: 127ms
75:	learn: 21.9195980	total: 384ms	remaining: 121ms
76:	learn: 21.8401730	total: 388ms	remaining: 116ms
77:	learn: 21.8079797	total: 392ms	remaining: 111ms
78:	learn: 21.7274109	total: 397ms	remaining: 106ms
79:	learn: 21.6663032	total: 402ms	remaining: 100ms
80:	learn: 21.5633117	total: 406ms	remaining: 95.3ms
81:	learn: 21.4542467	total: 411ms	remaining: 90.2ms
82:	learn: 21.3177957	total: 415ms	remaining: 85.1ms
83:	learn: 21.1289167	total: 420ms	remaining: 80ms
84:	learn: 21.0297368	total: 425ms	remaining: 74.9ms
85:	learn: 20.9089564	total: 429ms	remaining: 69.9ms
86:	learn: 20.7653988	total: 434ms	remaining: 64.9ms
87:	learn: 20.6521894	total: 438ms	remaining: 59.8ms
88:	learn: 20.5193021	total: 443ms	remaining: 54.7ms
89:	learn: 20.4361620	total: 447ms	remaining: 49.7ms
90:	learn: 20.3546710	total: 452ms	remaining: 44.7ms
91:	learn: 20.2513296	total: 456ms	remaining: 39.7ms
92:	learn: 20.1605550	total: 464ms	remaining: 34.9ms
93:	learn: 20.0515942	total: 477ms	remaining: 30.4ms
94:	learn: 19.9800764	total: 483ms	remaining: 25.4ms
95:	learn: 19.8996532	total: 490ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 495ms	remaining: 15.3ms
97:	learn: 19.7887346	total: 500ms	remaining: 10.2ms
98:	learn: 19.7230872	total: 508ms	remaining: 5.13ms
99:	learn: 19.6328825	total: 513ms	remaining: 0us
0:	learn: 27.7143805	total: 4.75ms	remaining: 471ms
1:	learn: 27.2245894	total: 8.62ms	remaining: 422ms
2:	learn: 26.8693029	total: 12.3ms	remaining: 399ms
3:	learn: 26.4713217	total: 16ms	remaining: 383ms
4:	learn: 26.1261794	total: 20ms	remaining: 379ms
5:	learn: 25.8160419	total: 24.1ms	remaining: 378ms
6:	learn: 25.3860050	total: 28.3ms	remaining: 376ms
7:	learn: 25.0621682	total: 32.6ms	remaining: 375ms
8:	learn: 24.7574429	total: 36.8ms	remaining: 372ms
9:	learn: 24.5154734	total: 41.4ms	remaining: 372ms
10:	learn: 24.2199118	total: 45.2ms	remaining: 365ms
11:	learn: 23.9774955	total: 49.5ms	remaining: 363ms
12:	learn: 23.7755558	total: 53.8ms	remaining: 360ms
13:	learn: 23.4384476	total: 58ms	remaining: 356ms
14:	learn: 23.2035324	total: 61.8ms	remaining: 350ms
15:	learn: 22.9925293	total: 66.3ms	remaining: 348ms
16:	learn: 22.7981113	total: 70.8ms	remaining: 346ms
17:	learn: 22.5829245	total: 75.4ms	remaining: 343ms
18:	learn: 22.4131931	total: 80ms	remaining: 341ms
19:	learn: 22.1833629	total: 84.1ms	remaining: 336ms
20:	learn: 21.9660824	total: 88.7ms	remaining: 334ms
21:	learn: 21.7281998	total: 93.3ms	remaining: 331ms
22:	learn: 21.5000824	total: 98.1ms	remaining: 328ms
23:	learn: 21.2717031	total: 103ms	remaining: 325ms
24:	learn: 21.0926073	total: 111ms	remaining: 334ms
25:	learn: 20.8922144	total: 118ms	remaining: 336ms
26:	learn: 20.7498215	total: 126ms	remaining: 341ms
27:	learn: 20.5781754	total: 128ms	remaining: 329ms
28:	learn: 20.4294665	total: 135ms	remaining: 331ms
29:	learn: 20.2273985	total: 141ms	remaining: 328ms
30:	learn: 20.0920234	total: 146ms	remaining: 324ms
31:	learn: 19.9311712	total: 151ms	remaining: 320ms
32:	learn: 19.7852359	total: 156ms	remaining: 316ms
33:	learn: 19.6211007	total: 161ms	remaining: 313ms
34:	learn: 19.4806501	total: 166ms	remaining: 309ms
35:	learn: 19.3415380	total: 171ms	remaining: 304ms
36:	learn: 19.2075499	total: 176ms	remaining: 300ms
37:	learn: 19.0582745	total: 181ms	remaining: 296ms
38:	learn: 18.8852020	total: 186ms	remaining: 292ms
39:	learn: 18.6868677	total: 191ms	remaining: 287ms
40:	learn: 18.5481481	total: 196ms	remaining: 283ms
41:	learn: 18.4508846	total: 202ms	remaining: 279ms
42:	learn: 18.3650555	total: 207ms	remaining: 274ms
43:	learn: 18.1818415	total: 211ms	remaining: 268ms
44:	learn: 18.0782035	total: 215ms	remaining: 263ms
45:	learn: 17.9724472	total: 219ms	remaining: 257ms
46:	learn: 17.8657480	total: 222ms	remaining: 251ms
47:	learn: 17.7217309	total: 226ms	remaining: 245ms
48:	learn: 17.6403061	total: 231ms	remaining: 240ms
49:	learn: 17.5245570	total: 235ms	remaining: 235ms
50:	learn: 17.3976790	total: 239ms	remaining: 230ms
51:	learn: 17.2544460	total: 244ms	remaining: 225ms
52:	learn: 17.1507940	total: 248ms	remaining: 220ms
53:	learn: 17.0391276	total: 253ms	remaining: 215ms
54:	learn: 16.9348155	total: 257ms	remaining: 211ms
55:	learn: 16.8475635	total: 262ms	remaining: 206ms
56:	learn: 16.7691656	total: 267ms	remaining: 201ms
57:	learn: 16.6277836	total: 271ms	remaining: 197ms
58:	learn: 16.5524230	total: 276ms	remaining: 192ms
59:	learn: 16.4614442	total: 281ms	remaining: 187ms
60:	learn: 16.3077836	total: 286ms	remaining: 183ms
61:	learn: 16.2278133	total: 290ms	remaining: 178ms
62:	learn: 16.1288632	total: 295ms	remaining: 173ms
63:	learn: 16.0734717	total: 300ms	remaining: 169ms
64:	learn: 16.0085754	total: 308ms	remaining: 166ms
65:	learn: 15.9278700	total: 315ms	remaining: 162ms
66:	learn: 15.8320321	total: 324ms	remaining: 159ms
67:	learn: 15.7706425	total: 329ms	remaining: 155ms
68:	learn: 15.6404344	total: 335ms	remaining: 151ms
69:	learn: 15.5678129	total: 341ms	remaining: 146ms
70:	learn: 15.4980047	total: 346ms	remaining: 141ms
71:	learn: 15.4324207	total: 355ms	remaining: 138ms
72:	learn: 15.3551877	total: 360ms	remaining: 133ms
73:	learn: 15.2930769	total: 365ms	remaining: 128ms
74:	learn: 15.2307174	total: 369ms	remaining: 123ms
75:	learn: 15.1600937	total: 374ms	remaining: 118ms
76:	learn: 15.0837614	total: 379ms	remaining: 113ms
77:	learn: 15.0185989	total: 384ms	remaining: 108ms
78:	learn: 14.9300717	total: 389ms	remaining: 103ms
79:	learn: 14.8928389	total: 394ms	remaining: 98.5ms
80:	learn: 14.8250040	total: 399ms	remaining: 93.6ms
81:	learn: 14.7906114	total: 404ms	remaining: 88.7ms
82:	learn: 14.7214118	total: 408ms	remaining: 83.5ms
83:	learn: 14.6657875	total: 412ms	remaining: 78.4ms
84:	learn: 14.6085682	total: 416ms	remaining: 73.3ms
85:	learn: 14.5334097	total: 419ms	remaining: 68.2ms
86:	learn: 14.4681230	total: 423ms	remaining: 63.2ms
87:	learn: 14.4088334	total: 427ms	remaining: 58.2ms
88:	learn: 14.3541312	total: 431ms	remaining: 53.3ms
89:	learn: 14.2923636	total: 435ms	remaining: 48.3ms
90:	learn: 14.2339259	total: 439ms	remaining: 43.4ms
91:	learn: 14.1439983	total: 442ms	remaining: 38.5ms
92:	learn: 14.0701371	total: 446ms	remaining: 33.6ms
93:	learn: 13.9770736	total: 450ms	remaining: 28.7ms
94:	learn: 13.9275801	total: 455ms	remaining: 23.9ms
95:	learn: 13.8717050	total: 458ms	remaining: 19.1ms
96:	learn: 13.7821340	total: 463ms	remaining: 14.3ms
97:	learn: 13.7383865	total: 467ms	remaining: 9.53ms
98:	learn: 13.6850693	total: 471ms	remaining: 4.76ms
99:	learn: 13.6273539	total: 476ms	remaining: 0us
0:	learn: 43.2118728	total: 5.28ms	remaining: 523ms
1:	learn: 42.3090111	total: 10.8ms	remaining: 529ms
2:	learn: 41.3060764	total: 16.5ms	remaining: 532ms
3:	learn: 40.3653958	total: 21.3ms	remaining: 511ms
4:	learn: 39.5006331	total: 26.6ms	remaining: 506ms
5:	learn: 38.6473041	total: 32.2ms	remaining: 504ms
6:	learn: 37.8560875	total: 37.4ms	remaining: 497ms
7:	learn: 37.0772701	total: 41.9ms	remaining: 482ms
8:	learn: 36.3260704	total: 46.5ms	remaining: 470ms
9:	learn: 35.7300393	total: 51.2ms	remaining: 461ms
10:	learn: 34.9336547	total: 56.4ms	remaining: 456ms
11:	learn: 34.1758190	total: 61.6ms	remaining: 452ms
12:	learn: 33.5120760	total: 66.5ms	remaining: 445ms
13:	learn: 32.8731142	total: 70.9ms	remaining: 435ms
14:	learn: 32.3579595	total: 74.7ms	remaining: 423ms
15:	learn: 31.7969963	total: 78.4ms	remaining: 412ms
16:	learn: 31.3472797	total: 82.6ms	remaining: 403ms
17:	learn: 30.7865884	total: 86.4ms	remaining: 393ms
18:	learn: 30.3876486	total: 90ms	remaining: 384ms
19:	learn: 29.8840575	total: 93.9ms	remaining: 376ms
20:	learn: 29.3584237	total: 97.7ms	remaining: 368ms
21:	learn: 28.9965200	total: 102ms	remaining: 360ms
22:	learn: 28.6117225	total: 106ms	remaining: 355ms
23:	learn: 28.1147832	total: 110ms	remaining: 347ms
24:	learn: 27.7857774	total: 113ms	remaining: 340ms
25:	learn: 27.3181226	total: 117ms	remaining: 333ms
26:	learn: 26.9019101	total: 121ms	remaining: 327ms
27:	learn: 26.6957004	total: 125ms	remaining: 320ms
28:	learn: 26.2816390	total: 128ms	remaining: 314ms
29:	learn: 25.9107534	total: 132ms	remaining: 308ms
30:	learn: 25.5773085	total: 137ms	remaining: 305ms
31:	learn: 25.1916035	total: 142ms	remaining: 301ms
32:	learn: 24.8819670	total: 146ms	remaining: 297ms
33:	learn: 24.5580488	total: 151ms	remaining: 294ms
34:	learn: 24.3088624	total: 156ms	remaining: 290ms
35:	learn: 23.9890893	total: 161ms	remaining: 286ms
36:	learn: 23.7266073	total: 165ms	remaining: 282ms
37:	learn: 23.4886046	total: 171ms	remaining: 278ms
38:	learn: 23.2786313	total: 178ms	remaining: 278ms
39:	learn: 23.0060540	total: 185ms	remaining: 277ms
40:	learn: 22.7848361	total: 192ms	remaining: 276ms
41:	learn: 22.5485511	total: 199ms	remaining: 274ms
42:	learn: 22.3113565	total: 204ms	remaining: 271ms
43:	learn: 22.1296084	total: 209ms	remaining: 266ms
44:	learn: 21.8514989	total: 214ms	remaining: 262ms
45:	learn: 21.6540201	total: 219ms	remaining: 257ms
46:	learn: 21.4203535	total: 224ms	remaining: 253ms
47:	learn: 21.2317196	total: 229ms	remaining: 248ms
48:	learn: 21.0547467	total: 234ms	remaining: 244ms
49:	learn: 20.9192535	total: 239ms	remaining: 239ms
50:	learn: 20.6975386	total: 245ms	remaining: 235ms
51:	learn: 20.5839720	total: 250ms	remaining: 231ms
52:	learn: 20.4528901	total: 255ms	remaining: 226ms
53:	learn: 20.3392419	total: 259ms	remaining: 221ms
54:	learn: 20.1518693	total: 264ms	remaining: 216ms
55:	learn: 19.9928770	total: 270ms	remaining: 212ms
56:	learn: 19.8042028	total: 275ms	remaining: 207ms
57:	learn: 19.7000879	total: 279ms	remaining: 202ms
58:	learn: 19.5524154	total: 282ms	remaining: 196ms
59:	learn: 19.4366908	total: 287ms	remaining: 191ms
60:	learn: 19.2739134	total: 290ms	remaining: 186ms
61:	learn: 19.1499266	total: 294ms	remaining: 180ms
62:	learn: 18.9948972	total: 298ms	remaining: 175ms
63:	learn: 18.8952299	total: 302ms	remaining: 170ms
64:	learn: 18.7545430	total: 306ms	remaining: 165ms
65:	learn: 18.6315116	total: 310ms	remaining: 160ms
66:	learn: 18.5164994	total: 314ms	remaining: 155ms
67:	learn: 18.3983038	total: 318ms	remaining: 149ms
68:	learn: 18.2803212	total: 322ms	remaining: 144ms
69:	learn: 18.1738467	total: 326ms	remaining: 140ms
70:	learn: 18.0884235	total: 330ms	remaining: 135ms
71:	learn: 18.0129445	total: 334ms	remaining: 130ms
72:	learn: 17.8582158	total: 339ms	remaining: 125ms
73:	learn: 17.7473705	total: 344ms	remaining: 121ms
74:	learn: 17.6431421	total: 349ms	remaining: 116ms
75:	learn: 17.5398511	total: 354ms	remaining: 112ms
76:	learn: 17.4404598	total: 358ms	remaining: 107ms
77:	learn: 17.3477525	total: 362ms	remaining: 102ms
78:	learn: 17.2283831	total: 367ms	remaining: 97.6ms
79:	learn: 17.0767035	total: 375ms	remaining: 93.8ms
80:	learn: 16.9732705	total: 383ms	remaining: 89.7ms
81:	learn: 16.8927449	total: 391ms	remaining: 85.8ms
82:	learn: 16.8145625	total: 397ms	remaining: 81.3ms
83:	learn: 16.7290845	total: 403ms	remaining: 76.8ms
84:	learn: 16.6661414	total: 408ms	remaining: 72ms
85:	learn: 16.5875575	total: 413ms	remaining: 67.2ms
86:	learn: 16.4578580	total: 418ms	remaining: 62.5ms
87:	learn: 16.4243550	total: 423ms	remaining: 57.7ms
88:	learn: 16.3251337	total: 428ms	remaining: 52.9ms
89:	learn: 16.2516385	total: 433ms	remaining: 48.1ms
90:	learn: 16.1226518	total: 438ms	remaining: 43.3ms
91:	learn: 16.0718308	total: 444ms	remaining: 38.6ms
92:	learn: 15.9636735	total: 449ms	remaining: 33.8ms
93:	learn: 15.8923693	total: 454ms	remaining: 29ms
94:	learn: 15.8270425	total: 459ms	remaining: 24.1ms
95:	learn: 15.7449077	total: 464ms	remaining: 19.3ms
96:	learn: 15.6978936	total: 469ms	remaining: 14.5ms
97:	learn: 15.6527285	total: 475ms	remaining: 9.68ms
98:	learn: 15.5557320	total: 479ms	remaining: 4.83ms
99:	learn: 15.4399171	total: 483ms	remaining: 0us
0:	learn: 46.7092506	total: 4.9ms	remaining: 485ms
1:	learn: 45.8266821	total: 9.25ms	remaining: 453ms
2:	learn: 45.0052023	total: 14ms	remaining: 454ms
3:	learn: 44.3828795	total: 18.9ms	remaining: 454ms
4:	learn: 43.7255353	total: 23.4ms	remaining: 444ms
5:	learn: 43.1663831	total: 28ms	remaining: 439ms
6:	learn: 42.3875189	total: 32.6ms	remaining: 433ms
7:	learn: 41.7839075	total: 39.4ms	remaining: 453ms
8:	learn: 41.0740108	total: 46.5ms	remaining: 470ms
9:	learn: 40.3846647	total: 53.7ms	remaining: 484ms
10:	learn: 39.8821046	total: 61.8ms	remaining: 500ms
11:	learn: 39.1807254	total: 69.1ms	remaining: 507ms
12:	learn: 38.7153028	total: 74.4ms	remaining: 498ms
13:	learn: 38.0474495	total: 79.7ms	remaining: 490ms
14:	learn: 37.3844461	total: 84.7ms	remaining: 480ms
15:	learn: 36.9210704	total: 89.7ms	remaining: 471ms
16:	learn: 36.3160964	total: 95.4ms	remaining: 466ms
17:	learn: 35.8915826	total: 101ms	remaining: 462ms
18:	learn: 35.5519989	total: 107ms	remaining: 454ms
19:	learn: 35.1437045	total: 111ms	remaining: 445ms
20:	learn: 34.6387799	total: 117ms	remaining: 439ms
21:	learn: 34.2437068	total: 122ms	remaining: 431ms
22:	learn: 33.8262100	total: 126ms	remaining: 423ms
23:	learn: 33.4683000	total: 131ms	remaining: 415ms
24:	learn: 32.9996389	total: 137ms	remaining: 410ms
25:	learn: 32.6942147	total: 143ms	remaining: 406ms
26:	learn: 32.3016096	total: 147ms	remaining: 396ms
27:	learn: 31.9517346	total: 151ms	remaining: 388ms
28:	learn: 31.5277387	total: 155ms	remaining: 380ms
29:	learn: 31.2545365	total: 159ms	remaining: 371ms
30:	learn: 31.0510813	total: 164ms	remaining: 364ms
31:	learn: 30.6383830	total: 168ms	remaining: 358ms
32:	learn: 30.2800150	total: 173ms	remaining: 352ms
33:	learn: 29.9559797	total: 178ms	remaining: 345ms
34:	learn: 29.5802745	total: 182ms	remaining: 339ms
35:	learn: 29.2605111	total: 187ms	remaining: 332ms
36:	learn: 28.9582434	total: 192ms	remaining: 326ms
37:	learn: 28.6149387	total: 196ms	remaining: 320ms
38:	learn: 28.3980091	total: 200ms	remaining: 313ms
39:	learn: 28.1704520	total: 205ms	remaining: 307ms
40:	learn: 27.8881319	total: 208ms	remaining: 300ms
41:	learn: 27.5805731	total: 212ms	remaining: 293ms
42:	learn: 27.3520567	total: 216ms	remaining: 286ms
43:	learn: 27.1039679	total: 221ms	remaining: 281ms
44:	learn: 26.8472623	total: 225ms	remaining: 275ms
45:	learn: 26.5757869	total: 229ms	remaining: 269ms
46:	learn: 26.4579118	total: 234ms	remaining: 264ms
47:	learn: 26.1279008	total: 239ms	remaining: 259ms
48:	learn: 25.8503346	total: 243ms	remaining: 253ms
49:	learn: 25.7039015	total: 248ms	remaining: 248ms
50:	learn: 25.4317154	total: 253ms	remaining: 243ms
51:	learn: 25.3028008	total: 261ms	remaining: 241ms
52:	learn: 25.1906194	total: 268ms	remaining: 238ms
53:	learn: 25.0082790	total: 276ms	remaining: 235ms
54:	learn: 24.8264791	total: 282ms	remaining: 230ms
55:	learn: 24.5961365	total: 289ms	remaining: 227ms
56:	learn: 24.4007690	total: 294ms	remaining: 222ms
57:	learn: 24.2476228	total: 299ms	remaining: 217ms
58:	learn: 23.9582465	total: 304ms	remaining: 211ms
59:	learn: 23.7247243	total: 310ms	remaining: 207ms
60:	learn: 23.5379970	total: 315ms	remaining: 201ms
61:	learn: 23.3908530	total: 320ms	remaining: 196ms
62:	learn: 23.2123241	total: 325ms	remaining: 191ms
63:	learn: 23.1010345	total: 330ms	remaining: 186ms
64:	learn: 22.9032423	total: 335ms	remaining: 181ms
65:	learn: 22.7815198	total: 340ms	remaining: 175ms
66:	learn: 22.6325063	total: 345ms	remaining: 170ms
67:	learn: 22.5406071	total: 350ms	remaining: 165ms
68:	learn: 22.4413332	total: 356ms	remaining: 160ms
69:	learn: 22.3005609	total: 361ms	remaining: 155ms
70:	learn: 22.1779345	total: 364ms	remaining: 149ms
71:	learn: 22.0491576	total: 368ms	remaining: 143ms
72:	learn: 21.9379106	total: 373ms	remaining: 138ms
73:	learn: 21.7597096	total: 377ms	remaining: 133ms
74:	learn: 21.6042300	total: 381ms	remaining: 127ms
75:	learn: 21.4644642	total: 385ms	remaining: 122ms
76:	learn: 21.3811287	total: 389ms	remaining: 116ms
77:	learn: 21.3089276	total: 393ms	remaining: 111ms
78:	learn: 21.1654429	total: 397ms	remaining: 106ms
79:	learn: 20.9602460	total: 401ms	remaining: 100ms
80:	learn: 20.7959461	total: 405ms	remaining: 94.9ms
81:	learn: 20.5861156	total: 408ms	remaining: 89.7ms
82:	learn: 20.5120680	total: 413ms	remaining: 84.6ms
83:	learn: 20.3997233	total: 417ms	remaining: 79.5ms
84:	learn: 20.2499469	total: 422ms	remaining: 74.4ms
85:	learn: 20.1117768	total: 426ms	remaining: 69.3ms
86:	learn: 20.0617643	total: 430ms	remaining: 64.3ms
87:	learn: 19.9609182	total: 435ms	remaining: 59.3ms
88:	learn: 19.8763814	total: 439ms	remaining: 54.2ms
89:	learn: 19.7843516	total: 443ms	remaining: 49.2ms
90:	learn: 19.6926200	total: 448ms	remaining: 44.3ms
91:	learn: 19.5686774	total: 456ms	remaining: 39.7ms
92:	learn: 19.4727236	total: 465ms	remaining: 35ms
93:	learn: 19.3780174	total: 472ms	remaining: 30.1ms
94:	learn: 19.2840650	total: 481ms	remaining: 25.3ms
95:	learn: 19.1747368	total: 487ms	remaining: 20.3ms
96:	learn: 19.1273306	total: 492ms	remaining: 15.2ms
97:	learn: 19.0413946	total: 497ms	remaining: 10.1ms
98:	learn: 18.8980682	total: 502ms	remaining: 5.07ms
99:	learn: 18.7799962	total: 507ms	remaining: 0us
0:	learn: 46.4426352	total: 4.18ms	remaining: 414ms
1:	learn: 45.5770653	total: 7.79ms	remaining: 381ms
2:	learn: 44.6956685	total: 11.8ms	remaining: 383ms
3:	learn: 43.9934709	total: 16.3ms	remaining: 392ms
4:	learn: 43.3008183	total: 20.2ms	remaining: 383ms
5:	learn: 42.7510022	total: 23.7ms	remaining: 372ms
6:	learn: 42.0237555	total: 27.4ms	remaining: 363ms
7:	learn: 41.5354996	total: 31ms	remaining: 356ms
8:	learn: 41.0264055	total: 35ms	remaining: 354ms
9:	learn: 40.5267003	total: 38.8ms	remaining: 349ms
10:	learn: 39.8363942	total: 42.8ms	remaining: 346ms
11:	learn: 39.2014089	total: 46.6ms	remaining: 342ms
12:	learn: 38.7943524	total: 50.5ms	remaining: 338ms
13:	learn: 38.1664113	total: 54.2ms	remaining: 333ms
14:	learn: 37.7492773	total: 58.2ms	remaining: 330ms
15:	learn: 37.2369693	total: 62.2ms	remaining: 327ms
16:	learn: 36.6953383	total: 66.7ms	remaining: 326ms
17:	learn: 36.3580916	total: 71ms	remaining: 324ms
18:	learn: 35.8637745	total: 75.3ms	remaining: 321ms
19:	learn: 35.4299153	total: 79.4ms	remaining: 318ms
20:	learn: 34.8794879	total: 83.7ms	remaining: 315ms
21:	learn: 34.3253348	total: 88.3ms	remaining: 313ms
22:	learn: 33.9307096	total: 92.5ms	remaining: 310ms
23:	learn: 33.5952896	total: 99.1ms	remaining: 314ms
24:	learn: 33.1314051	total: 106ms	remaining: 319ms
25:	learn: 32.8502968	total: 113ms	remaining: 322ms
26:	learn: 32.4430184	total: 121ms	remaining: 326ms
27:	learn: 32.0721224	total: 128ms	remaining: 329ms
28:	learn: 31.7977479	total: 133ms	remaining: 326ms
29:	learn: 31.3999469	total: 138ms	remaining: 323ms
30:	learn: 31.1179360	total: 144ms	remaining: 319ms
31:	learn: 30.7712852	total: 149ms	remaining: 316ms
32:	learn: 30.2912977	total: 154ms	remaining: 314ms
33:	learn: 29.9920376	total: 160ms	remaining: 310ms
34:	learn: 29.6637918	total: 165ms	remaining: 306ms
35:	learn: 29.3522959	total: 170ms	remaining: 301ms
36:	learn: 29.0482516	total: 175ms	remaining: 297ms
37:	learn: 28.7956656	total: 180ms	remaining: 293ms
38:	learn: 28.4845569	total: 184ms	remaining: 289ms
39:	learn: 28.3038067	total: 189ms	remaining: 283ms
40:	learn: 28.1185263	total: 194ms	remaining: 279ms
41:	learn: 27.8012563	total: 200ms	remaining: 276ms
42:	learn: 27.5184259	total: 204ms	remaining: 271ms
43:	learn: 27.3019892	total: 209ms	remaining: 266ms
44:	learn: 27.0494594	total: 213ms	remaining: 260ms
45:	learn: 26.8054317	total: 216ms	remaining: 254ms
46:	learn: 26.6554974	total: 220ms	remaining: 248ms
47:	learn: 26.3568392	total: 225ms	remaining: 243ms
48:	learn: 26.1045872	total: 229ms	remaining: 238ms
49:	learn: 25.9807311	total: 232ms	remaining: 232ms
50:	learn: 25.7104640	total: 236ms	remaining: 227ms
51:	learn: 25.6019547	total: 240ms	remaining: 221ms
52:	learn: 25.5011930	total: 244ms	remaining: 216ms
53:	learn: 25.2291639	total: 247ms	remaining: 211ms
54:	learn: 24.9952313	total: 252ms	remaining: 206ms
55:	learn: 24.8195031	total: 256ms	remaining: 201ms
56:	learn: 24.5591684	total: 261ms	remaining: 197ms
57:	learn: 24.4163080	total: 265ms	remaining: 192ms
58:	learn: 24.2328188	total: 269ms	remaining: 187ms
59:	learn: 24.0087408	total: 274ms	remaining: 183ms
60:	learn: 23.8918912	total: 279ms	remaining: 178ms
61:	learn: 23.7537024	total: 284ms	remaining: 174ms
62:	learn: 23.5466923	total: 288ms	remaining: 169ms
63:	learn: 23.3903724	total: 292ms	remaining: 164ms
64:	learn: 23.3257785	total: 296ms	remaining: 159ms
65:	learn: 23.2839464	total: 300ms	remaining: 155ms
66:	learn: 23.1476036	total: 305ms	remaining: 150ms
67:	learn: 22.9480972	total: 313ms	remaining: 147ms
68:	learn: 22.7537529	total: 320ms	remaining: 144ms
69:	learn: 22.6209544	total: 328ms	remaining: 141ms
70:	learn: 22.5058753	total: 335ms	remaining: 137ms
71:	learn: 22.4068656	total: 341ms	remaining: 133ms
72:	learn: 22.3254150	total: 346ms	remaining: 128ms
73:	learn: 22.1784174	total: 351ms	remaining: 123ms
74:	learn: 22.1095388	total: 356ms	remaining: 119ms
75:	learn: 21.9958083	total: 361ms	remaining: 114ms
76:	learn: 21.8728475	total: 366ms	remaining: 109ms
77:	learn: 21.7975828	total: 371ms	remaining: 105ms
78:	learn: 21.7133267	total: 376ms	remaining: 100ms
79:	learn: 21.6023410	total: 382ms	remaining: 95.4ms
80:	learn: 21.5254474	total: 387ms	remaining: 90.7ms
81:	learn: 21.3307418	total: 392ms	remaining: 85.9ms
82:	learn: 21.2411976	total: 396ms	remaining: 81.1ms
83:	learn: 21.1091386	total: 401ms	remaining: 76.5ms
84:	learn: 21.0526747	total: 407ms	remaining: 71.9ms
85:	learn: 20.9083817	total: 412ms	remaining: 67ms
86:	learn: 20.8767767	total: 416ms	remaining: 62.2ms
87:	learn: 20.8143988	total: 420ms	remaining: 57.3ms
88:	learn: 20.7127697	total: 424ms	remaining: 52.4ms
89:	learn: 20.6112504	total: 428ms	remaining: 47.6ms
90:	learn: 20.4609960	total: 432ms	remaining: 42.7ms
91:	learn: 20.3648890	total: 436ms	remaining: 37.9ms
92:	learn: 20.3052040	total: 440ms	remaining: 33.1ms
93:	learn: 20.2587865	total: 444ms	remaining: 28.3ms
94:	learn: 20.2096406	total: 448ms	remaining: 23.6ms
95:	learn: 20.1301385	total: 453ms	remaining: 18.9ms
96:	learn: 20.0401359	total: 457ms	remaining: 14.1ms
97:	learn: 19.9791591	total: 461ms	remaining: 9.41ms
98:	learn: 19.9237318	total: 466ms	remaining: 4.7ms
99:	learn: 19.8009190	total: 470ms	remaining: 0us
0:	learn: 46.9286701	total: 5.48ms	remaining: 542ms
1:	learn: 46.2851598	total: 10.8ms	remaining: 529ms
2:	learn: 45.4586007	total: 15.8ms	remaining: 512ms
3:	learn: 44.6581393	total: 21ms	remaining: 505ms
4:	learn: 43.8231644	total: 26ms	remaining: 493ms
5:	learn: 43.2906569	total: 31.1ms	remaining: 487ms
6:	learn: 42.5095813	total: 36.2ms	remaining: 481ms
7:	learn: 41.9310465	total: 41.1ms	remaining: 473ms
8:	learn: 41.2083262	total: 46.4ms	remaining: 469ms
9:	learn: 40.6852547	total: 51.3ms	remaining: 461ms
10:	learn: 39.9637018	total: 55.7ms	remaining: 451ms
11:	learn: 39.2804189	total: 60.7ms	remaining: 445ms
12:	learn: 38.8804017	total: 67.5ms	remaining: 452ms
13:	learn: 38.3826597	total: 73ms	remaining: 449ms
14:	learn: 37.9240424	total: 77.7ms	remaining: 440ms
15:	learn: 37.4312070	total: 82.4ms	remaining: 433ms
16:	learn: 36.8803673	total: 86.8ms	remaining: 424ms
17:	learn: 36.5496582	total: 90.9ms	remaining: 414ms
18:	learn: 36.2078375	total: 95.2ms	remaining: 406ms
19:	learn: 35.6806593	total: 99.1ms	remaining: 397ms
20:	learn: 35.1512154	total: 103ms	remaining: 387ms
21:	learn: 34.6013055	total: 106ms	remaining: 377ms
22:	learn: 34.2380102	total: 110ms	remaining: 369ms
23:	learn: 33.8720185	total: 114ms	remaining: 360ms
24:	learn: 33.4426135	total: 118ms	remaining: 353ms
25:	learn: 33.1471186	total: 121ms	remaining: 345ms
26:	learn: 32.8018279	total: 126ms	remaining: 340ms
27:	learn: 32.4498594	total: 130ms	remaining: 333ms
28:	learn: 31.9749480	total: 133ms	remaining: 327ms
29:	learn: 31.6470735	total: 137ms	remaining: 320ms
30:	learn: 31.4265242	total: 141ms	remaining: 315ms
31:	learn: 31.0753325	total: 146ms	remaining: 310ms
32:	learn: 30.7192494	total: 150ms	remaining: 305ms
33:	learn: 30.3547940	total: 154ms	remaining: 299ms
34:	learn: 30.1296593	total: 158ms	remaining: 294ms
35:	learn: 29.9367140	total: 163ms	remaining: 289ms
36:	learn: 29.6248477	total: 167ms	remaining: 284ms
37:	learn: 29.3156707	total: 171ms	remaining: 279ms
38:	learn: 29.1534039	total: 175ms	remaining: 273ms
39:	learn: 28.9351289	total: 182ms	remaining: 273ms
40:	learn: 28.7057685	total: 189ms	remaining: 273ms
41:	learn: 28.3132521	total: 197ms	remaining: 272ms
42:	learn: 28.0739054	total: 203ms	remaining: 270ms
43:	learn: 27.8135917	total: 211ms	remaining: 269ms
44:	learn: 27.5376804	total: 216ms	remaining: 264ms
45:	learn: 27.3195849	total: 222ms	remaining: 260ms
46:	learn: 27.1681104	total: 227ms	remaining: 256ms
47:	learn: 27.0122442	total: 233ms	remaining: 252ms
48:	learn: 26.7819409	total: 237ms	remaining: 247ms
49:	learn: 26.6429308	total: 242ms	remaining: 242ms
50:	learn: 26.3482899	total: 248ms	remaining: 238ms
51:	learn: 26.2432755	total: 253ms	remaining: 233ms
52:	learn: 26.0811102	total: 258ms	remaining: 229ms
53:	learn: 25.9398113	total: 263ms	remaining: 224ms
54:	learn: 25.7891395	total: 267ms	remaining: 219ms
55:	learn: 25.6185338	total: 272ms	remaining: 214ms
56:	learn: 25.3293977	total: 277ms	remaining: 209ms
57:	learn: 25.1918906	total: 283ms	remaining: 205ms
58:	learn: 25.0503990	total: 286ms	remaining: 199ms
59:	learn: 24.8225776	total: 290ms	remaining: 193ms
60:	learn: 24.5969153	total: 294ms	remaining: 188ms
61:	learn: 24.4657353	total: 298ms	remaining: 183ms
62:	learn: 24.2861000	total: 302ms	remaining: 177ms
63:	learn: 24.1719148	total: 305ms	remaining: 172ms
64:	learn: 24.0547875	total: 309ms	remaining: 166ms
65:	learn: 23.9156724	total: 313ms	remaining: 161ms
66:	learn: 23.7604012	total: 316ms	remaining: 156ms
67:	learn: 23.6265679	total: 320ms	remaining: 151ms
68:	learn: 23.5372255	total: 324ms	remaining: 146ms
69:	learn: 23.3286241	total: 328ms	remaining: 141ms
70:	learn: 23.1806465	total: 333ms	remaining: 136ms
71:	learn: 23.0652081	total: 337ms	remaining: 131ms
72:	learn: 22.9231023	total: 342ms	remaining: 126ms
73:	learn: 22.8020380	total: 346ms	remaining: 122ms
74:	learn: 22.6525036	total: 351ms	remaining: 117ms
75:	learn: 22.5616268	total: 355ms	remaining: 112ms
76:	learn: 22.4395250	total: 359ms	remaining: 107ms
77:	learn: 22.3732379	total: 363ms	remaining: 102ms
78:	learn: 22.2300874	total: 368ms	remaining: 97.9ms
79:	learn: 22.0209882	total: 376ms	remaining: 94ms
80:	learn: 21.8703996	total: 384ms	remaining: 90.1ms
81:	learn: 21.7222039	total: 393ms	remaining: 86.3ms
82:	learn: 21.5903685	total: 401ms	remaining: 82.1ms
83:	learn: 21.4915083	total: 406ms	remaining: 77.3ms
84:	learn: 21.3320736	total: 411ms	remaining: 72.5ms
85:	learn: 21.2295060	total: 416ms	remaining: 67.7ms
86:	learn: 21.1983620	total: 421ms	remaining: 62.9ms
87:	learn: 21.1404156	total: 425ms	remaining: 58ms
88:	learn: 21.0684840	total: 430ms	remaining: 53.2ms
89:	learn: 20.9269197	total: 435ms	remaining: 48.4ms
90:	learn: 20.8614606	total: 440ms	remaining: 43.5ms
91:	learn: 20.6642996	total: 445ms	remaining: 38.7ms
92:	learn: 20.5612705	total: 450ms	remaining: 33.9ms
93:	learn: 20.5264997	total: 455ms	remaining: 29ms
94:	learn: 20.4532331	total: 460ms	remaining: 24.2ms
95:	learn: 20.3700696	total: 465ms	remaining: 19.4ms
96:	learn: 20.2671574	total: 470ms	remaining: 14.5ms
97:	learn: 20.1761207	total: 474ms	remaining: 9.68ms
98:	learn: 20.0533799	total: 478ms	remaining: 4.83ms
99:	learn: 19.9890055	total: 482ms	remaining: 0us
0:	learn: 27.5585353	total: 4.35ms	remaining: 430ms
1:	learn: 27.1656995	total: 8.47ms	remaining: 415ms
2:	learn: 26.8590175	total: 12.4ms	remaining: 402ms
3:	learn: 26.5818406	total: 16.5ms	remaining: 395ms
4:	learn: 26.1148663	total: 20.8ms	remaining: 395ms
5:	learn: 25.7690484	total: 25.5ms	remaining: 399ms
6:	learn: 25.3489206	total: 30.1ms	remaining: 400ms
7:	learn: 24.9542406	total: 34.7ms	remaining: 399ms
8:	learn: 24.6777517	total: 39.2ms	remaining: 397ms
9:	learn: 24.3242344	total: 44ms	remaining: 396ms
10:	learn: 24.0383073	total: 48.6ms	remaining: 393ms
11:	learn: 23.7383420	total: 53.8ms	remaining: 395ms
12:	learn: 23.3461670	total: 61.4ms	remaining: 411ms
13:	learn: 23.0928636	total: 68.5ms	remaining: 421ms
14:	learn: 22.8770414	total: 76.7ms	remaining: 435ms
15:	learn: 22.6323214	total: 83ms	remaining: 436ms
16:	learn: 22.3597072	total: 89.4ms	remaining: 436ms
17:	learn: 22.1079813	total: 94.5ms	remaining: 430ms
18:	learn: 21.8421199	total: 99.4ms	remaining: 424ms
19:	learn: 21.6576508	total: 105ms	remaining: 418ms
20:	learn: 21.4301268	total: 110ms	remaining: 413ms
21:	learn: 21.2287388	total: 115ms	remaining: 408ms
22:	learn: 21.0553872	total: 120ms	remaining: 402ms
23:	learn: 20.8977091	total: 125ms	remaining: 397ms
24:	learn: 20.6619051	total: 131ms	remaining: 393ms
25:	learn: 20.5040955	total: 136ms	remaining: 387ms
26:	learn: 20.3181195	total: 141ms	remaining: 381ms
27:	learn: 20.0869436	total: 146ms	remaining: 375ms
28:	learn: 19.9375985	total: 151ms	remaining: 370ms
29:	learn: 19.8247516	total: 156ms	remaining: 365ms
30:	learn: 19.6261697	total: 161ms	remaining: 359ms
31:	learn: 19.4547236	total: 165ms	remaining: 352ms
32:	learn: 19.3157092	total: 170ms	remaining: 344ms
33:	learn: 19.1561419	total: 174ms	remaining: 337ms
34:	learn: 19.0453620	total: 177ms	remaining: 329ms
35:	learn: 18.8738574	total: 182ms	remaining: 323ms
36:	learn: 18.7072907	total: 186ms	remaining: 316ms
37:	learn: 18.5877943	total: 190ms	remaining: 309ms
38:	learn: 18.4436380	total: 194ms	remaining: 303ms
39:	learn: 18.3463356	total: 198ms	remaining: 297ms
40:	learn: 18.2008059	total: 203ms	remaining: 292ms
41:	learn: 18.0582079	total: 208ms	remaining: 287ms
42:	learn: 17.8891982	total: 212ms	remaining: 281ms
43:	learn: 17.7332246	total: 217ms	remaining: 276ms
44:	learn: 17.6206421	total: 222ms	remaining: 271ms
45:	learn: 17.4982800	total: 227ms	remaining: 266ms
46:	learn: 17.3970150	total: 231ms	remaining: 261ms
47:	learn: 17.3058203	total: 237ms	remaining: 257ms
48:	learn: 17.1789256	total: 242ms	remaining: 252ms
49:	learn: 17.0916229	total: 247ms	remaining: 247ms
50:	learn: 16.9859820	total: 252ms	remaining: 242ms
51:	learn: 16.8995582	total: 260ms	remaining: 240ms
52:	learn: 16.8137014	total: 267ms	remaining: 237ms
53:	learn: 16.7021451	total: 275ms	remaining: 234ms
54:	learn: 16.5895582	total: 281ms	remaining: 230ms
55:	learn: 16.5015639	total: 289ms	remaining: 227ms
56:	learn: 16.4356637	total: 295ms	remaining: 223ms
57:	learn: 16.3514525	total: 300ms	remaining: 217ms
58:	learn: 16.2401369	total: 305ms	remaining: 212ms
59:	learn: 16.1293223	total: 310ms	remaining: 207ms
60:	learn: 16.0271167	total: 316ms	remaining: 202ms
61:	learn: 15.9126257	total: 321ms	remaining: 197ms
62:	learn: 15.8391096	total: 327ms	remaining: 192ms
63:	learn: 15.7441773	total: 332ms	remaining: 187ms
64:	learn: 15.6885195	total: 337ms	remaining: 182ms
65:	learn: 15.6052039	total: 343ms	remaining: 176ms
66:	learn: 15.5074202	total: 348ms	remaining: 171ms
67:	learn: 15.4054338	total: 353ms	remaining: 166ms
68:	learn: 15.2885714	total: 359ms	remaining: 161ms
69:	learn: 15.2157472	total: 363ms	remaining: 156ms
70:	learn: 15.1031554	total: 367ms	remaining: 150ms
71:	learn: 15.0237470	total: 371ms	remaining: 144ms
72:	learn: 14.9756825	total: 376ms	remaining: 139ms
73:	learn: 14.8840596	total: 380ms	remaining: 134ms
74:	learn: 14.8077061	total: 385ms	remaining: 128ms
75:	learn: 14.7444437	total: 389ms	remaining: 123ms
76:	learn: 14.6751720	total: 393ms	remaining: 117ms
77:	learn: 14.5830333	total: 398ms	remaining: 112ms
78:	learn: 14.5241206	total: 402ms	remaining: 107ms
79:	learn: 14.4892731	total: 406ms	remaining: 102ms
80:	learn: 14.4256605	total: 410ms	remaining: 96.2ms
81:	learn: 14.3666860	total: 415ms	remaining: 91.1ms
82:	learn: 14.2938372	total: 420ms	remaining: 86ms
83:	learn: 14.2161532	total: 425ms	remaining: 80.9ms
84:	learn: 14.1582910	total: 429ms	remaining: 75.7ms
85:	learn: 14.1029153	total: 434ms	remaining: 70.6ms
86:	learn: 14.0475835	total: 438ms	remaining: 65.5ms
87:	learn: 13.9892661	total: 443ms	remaining: 60.4ms
88:	learn: 13.9481628	total: 448ms	remaining: 55.3ms
89:	learn: 13.8483991	total: 452ms	remaining: 50.3ms
90:	learn: 13.7775614	total: 461ms	remaining: 45.6ms
91:	learn: 13.7304585	total: 468ms	remaining: 40.7ms
92:	learn: 13.6783381	total: 477ms	remaining: 35.9ms
93:	learn: 13.6356964	total: 484ms	remaining: 30.9ms
94:	learn: 13.5924371	total: 489ms	remaining: 25.7ms
95:	learn: 13.5400746	total: 494ms	remaining: 20.6ms
96:	learn: 13.4897333	total: 499ms	remaining: 15.4ms
97:	learn: 13.4470321	total: 505ms	remaining: 10.3ms
98:	learn: 13.3856082	total: 510ms	remaining: 5.16ms
99:	learn: 13.3082371	total: 516ms	remaining: 0us
0:	learn: 43.0395283	total: 4.77ms	remaining: 472ms
1:	learn: 42.1130223	total: 9.07ms	remaining: 445ms
2:	learn: 41.1753409	total: 13.3ms	remaining: 429ms
3:	learn: 40.3637444	total: 17ms	remaining: 409ms
4:	learn: 39.6508088	total: 21.1ms	remaining: 400ms
5:	learn: 38.7217934	total: 25.3ms	remaining: 396ms
6:	learn: 37.8538055	total: 29.6ms	remaining: 394ms
7:	learn: 36.9793574	total: 33.6ms	remaining: 386ms
8:	learn: 36.3076984	total: 37.6ms	remaining: 380ms
9:	learn: 35.6673160	total: 41.7ms	remaining: 375ms
10:	learn: 34.8889800	total: 46.4ms	remaining: 375ms
11:	learn: 34.1675517	total: 50.3ms	remaining: 369ms
12:	learn: 33.6779564	total: 54.5ms	remaining: 365ms
13:	learn: 33.0710039	total: 58.8ms	remaining: 361ms
14:	learn: 32.4966674	total: 63.5ms	remaining: 360ms
15:	learn: 31.9492856	total: 68.1ms	remaining: 358ms
16:	learn: 31.5108129	total: 72.6ms	remaining: 354ms
17:	learn: 30.9804023	total: 77.1ms	remaining: 351ms
18:	learn: 30.4169089	total: 81.6ms	remaining: 348ms
19:	learn: 29.8930375	total: 86.1ms	remaining: 345ms
20:	learn: 29.3974421	total: 90.6ms	remaining: 341ms
21:	learn: 28.8792307	total: 97.5ms	remaining: 346ms
22:	learn: 28.3894474	total: 105ms	remaining: 352ms
23:	learn: 27.9921276	total: 114ms	remaining: 361ms
24:	learn: 27.6158887	total: 121ms	remaining: 362ms
25:	learn: 27.2866950	total: 128ms	remaining: 364ms
26:	learn: 26.8770708	total: 133ms	remaining: 360ms
27:	learn: 26.6233005	total: 138ms	remaining: 356ms
28:	learn: 26.2921934	total: 143ms	remaining: 350ms
29:	learn: 25.9156920	total: 148ms	remaining: 346ms
30:	learn: 25.5311106	total: 151ms	remaining: 335ms
31:	learn: 25.2178997	total: 156ms	remaining: 331ms
32:	learn: 24.8572196	total: 161ms	remaining: 326ms
33:	learn: 24.5849710	total: 166ms	remaining: 322ms
34:	learn: 24.2209190	total: 171ms	remaining: 318ms
35:	learn: 23.8708250	total: 176ms	remaining: 312ms
36:	learn: 23.5325279	total: 180ms	remaining: 306ms
37:	learn: 23.2116148	total: 185ms	remaining: 301ms
38:	learn: 22.9696787	total: 189ms	remaining: 296ms
39:	learn: 22.7936783	total: 194ms	remaining: 291ms
40:	learn: 22.6228847	total: 199ms	remaining: 287ms
41:	learn: 22.3691527	total: 205ms	remaining: 283ms
42:	learn: 22.1002173	total: 210ms	remaining: 278ms
43:	learn: 21.9157268	total: 214ms	remaining: 272ms
44:	learn: 21.7229102	total: 218ms	remaining: 267ms
45:	learn: 21.4642005	total: 222ms	remaining: 261ms
46:	learn: 21.3029442	total: 226ms	remaining: 255ms
47:	learn: 21.1469792	total: 230ms	remaining: 249ms
48:	learn: 20.9458235	total: 234ms	remaining: 244ms
49:	learn: 20.7335242	total: 239ms	remaining: 239ms
50:	learn: 20.5440269	total: 242ms	remaining: 233ms
51:	learn: 20.3661449	total: 247ms	remaining: 228ms
52:	learn: 20.2158134	total: 251ms	remaining: 222ms
53:	learn: 19.9934873	total: 255ms	remaining: 217ms
54:	learn: 19.7879739	total: 259ms	remaining: 212ms
55:	learn: 19.6630460	total: 263ms	remaining: 207ms
56:	learn: 19.5152729	total: 268ms	remaining: 202ms
57:	learn: 19.3581128	total: 272ms	remaining: 197ms
58:	learn: 19.2209303	total: 276ms	remaining: 192ms
59:	learn: 19.0965248	total: 281ms	remaining: 187ms
60:	learn: 19.0035954	total: 285ms	remaining: 182ms
61:	learn: 18.8554149	total: 290ms	remaining: 178ms
62:	learn: 18.7095427	total: 294ms	remaining: 173ms
63:	learn: 18.5751494	total: 301ms	remaining: 169ms
64:	learn: 18.4678251	total: 309ms	remaining: 166ms
65:	learn: 18.3500325	total: 319ms	remaining: 164ms
66:	learn: 18.2088983	total: 325ms	remaining: 160ms
67:	learn: 18.0737705	total: 332ms	remaining: 156ms
68:	learn: 17.9325058	total: 337ms	remaining: 151ms
69:	learn: 17.8003911	total: 342ms	remaining: 147ms
70:	learn: 17.7385366	total: 347ms	remaining: 142ms
71:	learn: 17.6106998	total: 352ms	remaining: 137ms
72:	learn: 17.4816270	total: 358ms	remaining: 132ms
73:	learn: 17.4025554	total: 363ms	remaining: 127ms
74:	learn: 17.2902108	total: 368ms	remaining: 123ms
75:	learn: 17.2158048	total: 373ms	remaining: 118ms
76:	learn: 17.1261053	total: 378ms	remaining: 113ms
77:	learn: 17.0308917	total: 383ms	remaining: 108ms
78:	learn: 16.9546705	total: 387ms	remaining: 103ms
79:	learn: 16.8319165	total: 393ms	remaining: 98.2ms
80:	learn: 16.7687017	total: 398ms	remaining: 93.4ms
81:	learn: 16.6972326	total: 403ms	remaining: 88.4ms
82:	learn: 16.6124580	total: 407ms	remaining: 83.3ms
83:	learn: 16.4999052	total: 411ms	remaining: 78.3ms
84:	learn: 16.4302484	total: 415ms	remaining: 73.3ms
85:	learn: 16.3201363	total: 419ms	remaining: 68.2ms
86:	learn: 16.2534314	total: 424ms	remaining: 63.3ms
87:	learn: 16.1720485	total: 428ms	remaining: 58.3ms
88:	learn: 16.0625751	total: 432ms	remaining: 53.4ms
89:	learn: 15.9135088	total: 436ms	remaining: 48.4ms
90:	learn: 15.8658863	total: 440ms	remaining: 43.5ms
91:	learn: 15.8066805	total: 444ms	remaining: 38.6ms
92:	learn: 15.7412103	total: 449ms	remaining: 33.8ms
93:	learn: 15.6542776	total: 453ms	remaining: 28.9ms
94:	learn: 15.5760334	total: 456ms	remaining: 24ms
95:	learn: 15.5434131	total: 461ms	remaining: 19.2ms
96:	learn: 15.4709561	total: 466ms	remaining: 14.4ms
97:	learn: 15.4449618	total: 470ms	remaining: 9.59ms
98:	learn: 15.3752761	total: 475ms	remaining: 4.79ms
99:	learn: 15.3106595	total: 479ms	remaining: 0us
0:	learn: 46.7142257	total: 5.84ms	remaining: 578ms
1:	learn: 45.7634153	total: 11.1ms	remaining: 545ms
2:	learn: 45.0054253	total: 16.3ms	remaining: 526ms
3:	learn: 44.2120432	total: 21.5ms	remaining: 516ms
4:	learn: 43.3960472	total: 26.7ms	remaining: 507ms
5:	learn: 42.8588120	total: 31.8ms	remaining: 498ms
6:	learn: 41.9533701	total: 37.2ms	remaining: 494ms
7:	learn: 41.2745030	total: 42.2ms	remaining: 485ms
8:	learn: 40.6797495	total: 46.9ms	remaining: 475ms
9:	learn: 39.9899571	total: 51.9ms	remaining: 467ms
10:	learn: 39.4682100	total: 57.6ms	remaining: 466ms
11:	learn: 39.0305595	total: 63ms	remaining: 462ms
12:	learn: 38.4200417	total: 67ms	remaining: 448ms
13:	learn: 37.8425194	total: 71.1ms	remaining: 437ms
14:	learn: 37.4203127	total: 75.2ms	remaining: 426ms
15:	learn: 36.9917688	total: 79.2ms	remaining: 416ms
16:	learn: 36.5544138	total: 83.4ms	remaining: 407ms
17:	learn: 36.0727019	total: 87.6ms	remaining: 399ms
18:	learn: 35.4835715	total: 91.8ms	remaining: 391ms
19:	learn: 34.9865654	total: 95.7ms	remaining: 383ms
20:	learn: 34.6063373	total: 100ms	remaining: 376ms
21:	learn: 34.0997289	total: 104ms	remaining: 369ms
22:	learn: 33.7313171	total: 109ms	remaining: 364ms
23:	learn: 33.3582000	total: 113ms	remaining: 357ms
24:	learn: 32.9432456	total: 117ms	remaining: 350ms
25:	learn: 32.5220888	total: 121ms	remaining: 344ms
26:	learn: 32.2172292	total: 125ms	remaining: 338ms
27:	learn: 31.8972904	total: 130ms	remaining: 335ms
28:	learn: 31.6405350	total: 135ms	remaining: 331ms
29:	learn: 31.4167702	total: 140ms	remaining: 326ms
30:	learn: 30.8541961	total: 142ms	remaining: 315ms
31:	learn: 30.5572111	total: 146ms	remaining: 311ms
32:	learn: 30.1700399	total: 151ms	remaining: 306ms
33:	learn: 29.8537271	total: 156ms	remaining: 302ms
34:	learn: 29.6192540	total: 161ms	remaining: 298ms
35:	learn: 29.3276362	total: 166ms	remaining: 294ms
36:	learn: 28.9985179	total: 173ms	remaining: 295ms
37:	learn: 28.7046880	total: 180ms	remaining: 294ms
38:	learn: 28.4412677	total: 190ms	remaining: 297ms
39:	learn: 28.1277292	total: 196ms	remaining: 294ms
40:	learn: 27.9000750	total: 203ms	remaining: 291ms
41:	learn: 27.5433162	total: 208ms	remaining: 287ms
42:	learn: 27.2493285	total: 214ms	remaining: 283ms
43:	learn: 26.9576632	total: 216ms	remaining: 275ms
44:	learn: 26.6177110	total: 221ms	remaining: 270ms
45:	learn: 26.2812456	total: 226ms	remaining: 265ms
46:	learn: 26.0803859	total: 231ms	remaining: 261ms
47:	learn: 25.9543581	total: 237ms	remaining: 256ms
48:	learn: 25.7951582	total: 242ms	remaining: 252ms
49:	learn: 25.6548184	total: 247ms	remaining: 247ms
50:	learn: 25.4010843	total: 252ms	remaining: 242ms
51:	learn: 24.9773937	total: 257ms	remaining: 237ms
52:	learn: 24.8026156	total: 262ms	remaining: 232ms
53:	learn: 24.5568053	total: 268ms	remaining: 228ms
54:	learn: 24.2281839	total: 273ms	remaining: 224ms
55:	learn: 23.9202795	total: 277ms	remaining: 218ms
56:	learn: 23.7625591	total: 282ms	remaining: 212ms
57:	learn: 23.5429721	total: 286ms	remaining: 207ms
58:	learn: 23.3175893	total: 290ms	remaining: 201ms
59:	learn: 23.2035130	total: 294ms	remaining: 196ms
60:	learn: 23.0232450	total: 298ms	remaining: 191ms
61:	learn: 22.8384958	total: 303ms	remaining: 185ms
62:	learn: 22.6499902	total: 307ms	remaining: 181ms
63:	learn: 22.4577426	total: 312ms	remaining: 175ms
64:	learn: 22.3333158	total: 317ms	remaining: 171ms
65:	learn: 22.2064131	total: 321ms	remaining: 166ms
66:	learn: 22.1434971	total: 327ms	remaining: 161ms
67:	learn: 21.9596519	total: 331ms	remaining: 156ms
68:	learn: 21.8475576	total: 336ms	remaining: 151ms
69:	learn: 21.6954745	total: 342ms	remaining: 146ms
70:	learn: 21.5635976	total: 347ms	remaining: 142ms
71:	learn: 21.4588506	total: 351ms	remaining: 137ms
72:	learn: 21.3527268	total: 357ms	remaining: 132ms
73:	learn: 21.2661288	total: 362ms	remaining: 127ms
74:	learn: 21.1817333	total: 371ms	remaining: 124ms
75:	learn: 21.0527553	total: 379ms	remaining: 120ms
76:	learn: 20.9229021	total: 389ms	remaining: 116ms
77:	learn: 20.7563946	total: 398ms	remaining: 112ms
78:	learn: 20.6569831	total: 404ms	remaining: 107ms
79:	learn: 20.4982663	total: 409ms	remaining: 102ms
80:	learn: 20.3185460	total: 416ms	remaining: 97.5ms
81:	learn: 20.2096241	total: 422ms	remaining: 92.7ms
82:	learn: 20.1274891	total: 429ms	remaining: 87.8ms
83:	learn: 20.0740139	total: 434ms	remaining: 82.7ms
84:	learn: 19.9630699	total: 440ms	remaining: 77.6ms
85:	learn: 19.8753899	total: 445ms	remaining: 72.5ms
86:	learn: 19.6563612	total: 451ms	remaining: 67.4ms
87:	learn: 19.4680232	total: 456ms	remaining: 62.1ms
88:	learn: 19.3503431	total: 461ms	remaining: 57ms
89:	learn: 19.2221379	total: 467ms	remaining: 51.9ms
90:	learn: 19.0732542	total: 472ms	remaining: 46.7ms
91:	learn: 18.9825190	total: 477ms	remaining: 41.5ms
92:	learn: 18.8839009	total: 481ms	remaining: 36.2ms
93:	learn: 18.8012219	total: 486ms	remaining: 31ms
94:	learn: 18.7172713	total: 490ms	remaining: 25.8ms
95:	learn: 18.6201170	total: 495ms	remaining: 20.6ms
96:	learn: 18.5318611	total: 499ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 503ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 509ms	remaining: 5.14ms
99:	learn: 18.2227333	total: 513ms	remaining: 0us
0:	learn: 46.3764524	total: 10.4ms	remaining: 1.02s
1:	learn: 45.5561269	total: 16.1ms	remaining: 787ms
2:	learn: 44.8811245	total: 23.4ms	remaining: 756ms
3:	learn: 44.0788617	total: 28.7ms	remaining: 689ms
4:	learn: 43.3619790	total: 34.4ms	remaining: 653ms
5:	learn: 42.6912112	total: 39.2ms	remaining: 614ms
6:	learn: 42.2292118	total: 44ms	remaining: 585ms
7:	learn: 41.7725191	total: 49.3ms	remaining: 567ms
8:	learn: 41.1676614	total: 54.6ms	remaining: 552ms
9:	learn: 40.5771076	total: 59.7ms	remaining: 538ms
10:	learn: 39.8343757	total: 64.8ms	remaining: 525ms
11:	learn: 39.3761142	total: 69.9ms	remaining: 513ms
12:	learn: 38.5254692	total: 74.7ms	remaining: 500ms
13:	learn: 37.9629555	total: 79.2ms	remaining: 487ms
14:	learn: 37.4418438	total: 83.4ms	remaining: 472ms
15:	learn: 37.0507283	total: 88.1ms	remaining: 463ms
16:	learn: 36.6264217	total: 92.7ms	remaining: 452ms
17:	learn: 36.1114940	total: 98.2ms	remaining: 448ms
18:	learn: 35.7193862	total: 103ms	remaining: 441ms
19:	learn: 35.3301177	total: 107ms	remaining: 430ms
20:	learn: 35.0598280	total: 112ms	remaining: 420ms
21:	learn: 34.5469736	total: 116ms	remaining: 410ms
22:	learn: 34.2064215	total: 119ms	remaining: 400ms
23:	learn: 33.7280710	total: 123ms	remaining: 391ms
24:	learn: 33.3282940	total: 127ms	remaining: 381ms
25:	learn: 32.8478961	total: 131ms	remaining: 373ms
26:	learn: 32.5722164	total: 135ms	remaining: 365ms
27:	learn: 32.2457019	total: 139ms	remaining: 358ms
28:	learn: 31.9230495	total: 143ms	remaining: 351ms
29:	learn: 31.4311611	total: 147ms	remaining: 344ms
30:	learn: 30.9179052	total: 151ms	remaining: 337ms
31:	learn: 30.6201141	total: 155ms	remaining: 330ms
32:	learn: 30.3421106	total: 159ms	remaining: 324ms
33:	learn: 29.9885373	total: 164ms	remaining: 318ms
34:	learn: 29.7462780	total: 168ms	remaining: 312ms
35:	learn: 29.3607153	total: 173ms	remaining: 307ms
36:	learn: 29.1793078	total: 177ms	remaining: 302ms
37:	learn: 28.9276538	total: 182ms	remaining: 297ms
38:	learn: 28.6903934	total: 187ms	remaining: 292ms
39:	learn: 28.2095033	total: 191ms	remaining: 287ms
40:	learn: 27.7990608	total: 196ms	remaining: 282ms
41:	learn: 27.5406632	total: 204ms	remaining: 281ms
42:	learn: 27.2575376	total: 213ms	remaining: 282ms
43:	learn: 26.9741707	total: 223ms	remaining: 283ms
44:	learn: 26.6606899	total: 231ms	remaining: 282ms
45:	learn: 26.4015833	total: 236ms	remaining: 277ms
46:	learn: 26.1828993	total: 241ms	remaining: 272ms
47:	learn: 26.0233709	total: 244ms	remaining: 264ms
48:	learn: 25.9300399	total: 249ms	remaining: 259ms
49:	learn: 25.5861489	total: 254ms	remaining: 254ms
50:	learn: 25.4322012	total: 259ms	remaining: 249ms
51:	learn: 25.1595644	total: 264ms	remaining: 244ms
52:	learn: 24.9955303	total: 269ms	remaining: 239ms
53:	learn: 24.7273966	total: 274ms	remaining: 234ms
54:	learn: 24.5747978	total: 279ms	remaining: 229ms
55:	learn: 24.3807977	total: 284ms	remaining: 223ms
56:	learn: 24.1689569	total: 289ms	remaining: 218ms
57:	learn: 23.9898221	total: 295ms	remaining: 214ms
58:	learn: 23.7566414	total: 300ms	remaining: 208ms
59:	learn: 23.6641165	total: 304ms	remaining: 202ms
60:	learn: 23.5658066	total: 308ms	remaining: 197ms
61:	learn: 23.4338851	total: 312ms	remaining: 191ms
62:	learn: 23.2408837	total: 316ms	remaining: 185ms
63:	learn: 23.0642038	total: 320ms	remaining: 180ms
64:	learn: 22.9032045	total: 324ms	remaining: 174ms
65:	learn: 22.7736138	total: 328ms	remaining: 169ms
66:	learn: 22.6836443	total: 332ms	remaining: 163ms
67:	learn: 22.5983654	total: 336ms	remaining: 158ms
68:	learn: 22.4419813	total: 340ms	remaining: 153ms
69:	learn: 22.2863339	total: 344ms	remaining: 148ms
70:	learn: 22.1792943	total: 349ms	remaining: 142ms
71:	learn: 22.1130574	total: 352ms	remaining: 137ms
72:	learn: 21.9858161	total: 356ms	remaining: 132ms
73:	learn: 21.8577784	total: 361ms	remaining: 127ms
74:	learn: 21.7845222	total: 366ms	remaining: 122ms
75:	learn: 21.6831390	total: 370ms	remaining: 117ms
76:	learn: 21.6292521	total: 374ms	remaining: 112ms
77:	learn: 21.5789330	total: 379ms	remaining: 107ms
78:	learn: 21.5420942	total: 383ms	remaining: 102ms
79:	learn: 21.4280939	total: 388ms	remaining: 96.9ms
80:	learn: 21.3641165	total: 392ms	remaining: 92ms
81:	learn: 21.2734814	total: 407ms	remaining: 89.3ms
82:	learn: 21.2220323	total: 415ms	remaining: 84.9ms
83:	learn: 21.0625792	total: 422ms	remaining: 80.4ms
84:	learn: 20.9488320	total: 428ms	remaining: 75.6ms
85:	learn: 20.8504255	total: 433ms	remaining: 70.5ms
86:	learn: 20.7848510	total: 438ms	remaining: 65.5ms
87:	learn: 20.7247442	total: 443ms	remaining: 60.4ms
88:	learn: 20.5698590	total: 448ms	remaining: 55.4ms
89:	learn: 20.4067620	total: 453ms	remaining: 50.4ms
90:	learn: 20.3062482	total: 458ms	remaining: 45.3ms
91:	learn: 20.2029696	total: 464ms	remaining: 40.3ms
92:	learn: 20.1384849	total: 469ms	remaining: 35.3ms
93:	learn: 20.0260709	total: 474ms	remaining: 30.3ms
94:	learn: 19.9122100	total: 479ms	remaining: 25.2ms
95:	learn: 19.8648487	total: 483ms	remaining: 20.1ms
96:	learn: 19.8207072	total: 489ms	remaining: 15.1ms
97:	learn: 19.7261189	total: 494ms	remaining: 10.1ms
98:	learn: 19.7042438	total: 499ms	remaining: 5.04ms
99:	learn: 19.6546645	total: 504ms	remaining: 0us
0:	learn: 47.0239288	total: 4.15ms	remaining: 411ms
1:	learn: 46.2253829	total: 8.11ms	remaining: 397ms
2:	learn: 45.5580301	total: 12.2ms	remaining: 396ms
3:	learn: 44.7273237	total: 16.1ms	remaining: 386ms
4:	learn: 43.8867421	total: 19.8ms	remaining: 377ms
5:	learn: 43.3615911	total: 24.1ms	remaining: 377ms
6:	learn: 42.8548390	total: 29.5ms	remaining: 392ms
7:	learn: 42.1606758	total: 34.4ms	remaining: 396ms
8:	learn: 41.6625870	total: 39.2ms	remaining: 397ms
9:	learn: 40.9497092	total: 44.1ms	remaining: 397ms
10:	learn: 40.1886318	total: 48.8ms	remaining: 395ms
11:	learn: 39.7456423	total: 53.6ms	remaining: 393ms
12:	learn: 39.1171373	total: 58.6ms	remaining: 392ms
13:	learn: 38.5451069	total: 67.1ms	remaining: 412ms
14:	learn: 38.0155834	total: 88.8ms	remaining: 503ms
15:	learn: 37.5631354	total: 95.4ms	remaining: 501ms
16:	learn: 37.1030023	total: 100ms	remaining: 491ms
17:	learn: 36.4563029	total: 105ms	remaining: 480ms
18:	learn: 36.0160976	total: 111ms	remaining: 472ms
19:	learn: 35.5079827	total: 116ms	remaining: 464ms
20:	learn: 35.2111885	total: 121ms	remaining: 456ms
21:	learn: 34.9397465	total: 126ms	remaining: 447ms
22:	learn: 34.5270048	total: 131ms	remaining: 439ms
23:	learn: 34.0169260	total: 136ms	remaining: 432ms
24:	learn: 33.7454892	total: 141ms	remaining: 424ms
25:	learn: 33.2648157	total: 146ms	remaining: 417ms
26:	learn: 32.8899427	total: 152ms	remaining: 410ms
27:	learn: 32.6185050	total: 156ms	remaining: 402ms
28:	learn: 32.3528531	total: 161ms	remaining: 394ms
29:	learn: 32.0859923	total: 166ms	remaining: 388ms
30:	learn: 31.6511144	total: 172ms	remaining: 383ms
31:	learn: 31.2571765	total: 176ms	remaining: 375ms
32:	learn: 30.9770049	total: 180ms	remaining: 366ms
33:	learn: 30.6084872	total: 185ms	remaining: 359ms
34:	learn: 30.3448632	total: 189ms	remaining: 351ms
35:	learn: 30.0360942	total: 194ms	remaining: 344ms
36:	learn: 29.6648968	total: 198ms	remaining: 337ms
37:	learn: 29.3165114	total: 202ms	remaining: 329ms
38:	learn: 29.0829198	total: 206ms	remaining: 323ms
39:	learn: 28.7752064	total: 211ms	remaining: 316ms
40:	learn: 28.3622191	total: 215ms	remaining: 309ms
41:	learn: 28.1346631	total: 219ms	remaining: 302ms
42:	learn: 27.9585719	total: 223ms	remaining: 296ms
43:	learn: 27.6565566	total: 228ms	remaining: 290ms
44:	learn: 27.3616172	total: 233ms	remaining: 284ms
45:	learn: 27.0658637	total: 237ms	remaining: 278ms
46:	learn: 26.8660382	total: 242ms	remaining: 272ms
47:	learn: 26.6536078	total: 246ms	remaining: 266ms
48:	learn: 26.3524440	total: 251ms	remaining: 261ms
49:	learn: 26.1595277	total: 256ms	remaining: 256ms
50:	learn: 25.9273523	total: 261ms	remaining: 251ms
51:	learn: 25.7195580	total: 270ms	remaining: 249ms
52:	learn: 25.5730225	total: 279ms	remaining: 248ms
53:	learn: 25.3455276	total: 287ms	remaining: 244ms
54:	learn: 25.2289675	total: 294ms	remaining: 241ms
55:	learn: 25.0133024	total: 300ms	remaining: 235ms
56:	learn: 24.8406714	total: 305ms	remaining: 230ms
57:	learn: 24.6367857	total: 310ms	remaining: 224ms
58:	learn: 24.5338177	total: 315ms	remaining: 219ms
59:	learn: 24.3799964	total: 320ms	remaining: 213ms
60:	learn: 24.1447492	total: 325ms	remaining: 208ms
61:	learn: 23.9880495	total: 330ms	remaining: 202ms
62:	learn: 23.7140630	total: 335ms	remaining: 197ms
63:	learn: 23.5003791	total: 340ms	remaining: 192ms
64:	learn: 23.3207645	total: 346ms	remaining: 186ms
65:	learn: 23.1958356	total: 351ms	remaining: 181ms
66:	learn: 23.0471302	total: 356ms	remaining: 175ms
67:	learn: 22.8977183	total: 361ms	remaining: 170ms
68:	learn: 22.7187400	total: 366ms	remaining: 165ms
69:	learn: 22.6523405	total: 371ms	remaining: 159ms
70:	learn: 22.4767453	total: 376ms	remaining: 154ms
71:	learn: 22.3243677	total: 380ms	remaining: 148ms
72:	learn: 22.2133096	total: 384ms	remaining: 142ms
73:	learn: 22.1151713	total: 388ms	remaining: 136ms
74:	learn: 22.0296666	total: 392ms	remaining: 131ms
75:	learn: 21.9195980	total: 396ms	remaining: 125ms
76:	learn: 21.8401730	total: 400ms	remaining: 120ms
77:	learn: 21.8079797	total: 404ms	remaining: 114ms
78:	learn: 21.7274109	total: 408ms	remaining: 109ms
79:	learn: 21.6663032	total: 412ms	remaining: 103ms
80:	learn: 21.5633117	total: 416ms	remaining: 97.7ms
81:	learn: 21.4542467	total: 420ms	remaining: 92.2ms
82:	learn: 21.3177957	total: 425ms	remaining: 87ms
83:	learn: 21.1289167	total: 429ms	remaining: 81.7ms
84:	learn: 21.0297368	total: 434ms	remaining: 76.5ms
85:	learn: 20.9089564	total: 438ms	remaining: 71.4ms
86:	learn: 20.7653988	total: 443ms	remaining: 66.1ms
87:	learn: 20.6521894	total: 447ms	remaining: 61ms
88:	learn: 20.5193021	total: 452ms	remaining: 55.8ms
89:	learn: 20.4361620	total: 456ms	remaining: 50.7ms
90:	learn: 20.3546710	total: 461ms	remaining: 45.6ms
91:	learn: 20.2513296	total: 468ms	remaining: 40.7ms
92:	learn: 20.1605550	total: 475ms	remaining: 35.8ms
93:	learn: 20.0515942	total: 485ms	remaining: 30.9ms
94:	learn: 19.9800764	total: 493ms	remaining: 25.9ms
95:	learn: 19.8996532	total: 498ms	remaining: 20.8ms
96:	learn: 19.8450910	total: 504ms	remaining: 15.6ms
97:	learn: 19.7887346	total: 509ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 514ms	remaining: 5.19ms
99:	learn: 19.6328825	total: 519ms	remaining: 0us
0:	learn: 27.5585353	total: 4.55ms	remaining: 451ms
1:	learn: 27.1656995	total: 8.53ms	remaining: 418ms
2:	learn: 26.8590175	total: 12.6ms	remaining: 408ms
3:	learn: 26.5818406	total: 16.8ms	remaining: 403ms
4:	learn: 26.1148663	total: 21ms	remaining: 399ms
5:	learn: 25.7690484	total: 25.1ms	remaining: 393ms
6:	learn: 25.3489206	total: 29.4ms	remaining: 391ms
7:	learn: 24.9542406	total: 33.8ms	remaining: 388ms
8:	learn: 24.6777517	total: 37.9ms	remaining: 383ms
9:	learn: 24.3242344	total: 42.1ms	remaining: 379ms
10:	learn: 24.0383073	total: 46ms	remaining: 372ms
11:	learn: 23.7383420	total: 49.9ms	remaining: 366ms
12:	learn: 23.3461670	total: 53.6ms	remaining: 359ms
13:	learn: 23.0928636	total: 57.7ms	remaining: 355ms
14:	learn: 22.8770414	total: 62.3ms	remaining: 353ms
15:	learn: 22.6323214	total: 66.8ms	remaining: 351ms
16:	learn: 22.3597072	total: 71.7ms	remaining: 350ms
17:	learn: 22.1079813	total: 76.3ms	remaining: 347ms
18:	learn: 21.8421199	total: 81ms	remaining: 345ms
19:	learn: 21.6576508	total: 85.5ms	remaining: 342ms
20:	learn: 21.4301268	total: 90.3ms	remaining: 340ms
21:	learn: 21.2287388	total: 97.4ms	remaining: 345ms
22:	learn: 21.0553872	total: 105ms	remaining: 351ms
23:	learn: 20.8977091	total: 113ms	remaining: 357ms
24:	learn: 20.6619051	total: 119ms	remaining: 358ms
25:	learn: 20.5040955	total: 127ms	remaining: 361ms
26:	learn: 20.3181195	total: 132ms	remaining: 357ms
27:	learn: 20.0869436	total: 137ms	remaining: 354ms
28:	learn: 19.9375985	total: 143ms	remaining: 349ms
29:	learn: 19.8247516	total: 148ms	remaining: 345ms
30:	learn: 19.6261697	total: 153ms	remaining: 340ms
31:	learn: 19.4547236	total: 158ms	remaining: 335ms
32:	learn: 19.3157092	total: 163ms	remaining: 331ms
33:	learn: 19.1561419	total: 168ms	remaining: 326ms
34:	learn: 19.0453620	total: 173ms	remaining: 321ms
35:	learn: 18.8738574	total: 178ms	remaining: 316ms
36:	learn: 18.7072907	total: 183ms	remaining: 311ms
37:	learn: 18.5877943	total: 187ms	remaining: 306ms
38:	learn: 18.4436380	total: 193ms	remaining: 301ms
39:	learn: 18.3463356	total: 198ms	remaining: 298ms
40:	learn: 18.2008059	total: 203ms	remaining: 292ms
41:	learn: 18.0582079	total: 207ms	remaining: 286ms
42:	learn: 17.8891982	total: 211ms	remaining: 280ms
43:	learn: 17.7332246	total: 215ms	remaining: 274ms
44:	learn: 17.6206421	total: 219ms	remaining: 268ms
45:	learn: 17.4982800	total: 223ms	remaining: 262ms
46:	learn: 17.3970150	total: 227ms	remaining: 256ms
47:	learn: 17.3058203	total: 232ms	remaining: 251ms
48:	learn: 17.1789256	total: 236ms	remaining: 245ms
49:	learn: 17.0916229	total: 240ms	remaining: 240ms
50:	learn: 16.9859820	total: 245ms	remaining: 235ms
51:	learn: 16.8995582	total: 249ms	remaining: 230ms
52:	learn: 16.8137014	total: 253ms	remaining: 224ms
53:	learn: 16.7021451	total: 257ms	remaining: 219ms
54:	learn: 16.5895582	total: 261ms	remaining: 213ms
55:	learn: 16.5015639	total: 265ms	remaining: 208ms
56:	learn: 16.4356637	total: 270ms	remaining: 204ms
57:	learn: 16.3514525	total: 274ms	remaining: 199ms
58:	learn: 16.2401369	total: 279ms	remaining: 194ms
59:	learn: 16.1293223	total: 284ms	remaining: 189ms
60:	learn: 16.0271167	total: 288ms	remaining: 184ms
61:	learn: 15.9126257	total: 293ms	remaining: 179ms
62:	learn: 15.8391096	total: 300ms	remaining: 176ms
63:	learn: 15.7441773	total: 307ms	remaining: 173ms
64:	learn: 15.6885195	total: 317ms	remaining: 170ms
65:	learn: 15.6052039	total: 323ms	remaining: 166ms
66:	learn: 15.5074202	total: 330ms	remaining: 163ms
67:	learn: 15.4054338	total: 336ms	remaining: 158ms
68:	learn: 15.2885714	total: 341ms	remaining: 153ms
69:	learn: 15.2157472	total: 346ms	remaining: 148ms
70:	learn: 15.1031554	total: 351ms	remaining: 143ms
71:	learn: 15.0237470	total: 356ms	remaining: 139ms
72:	learn: 14.9756825	total: 361ms	remaining: 134ms
73:	learn: 14.8840596	total: 366ms	remaining: 129ms
74:	learn: 14.8077061	total: 372ms	remaining: 124ms
75:	learn: 14.7444437	total: 377ms	remaining: 119ms
76:	learn: 14.6751720	total: 382ms	remaining: 114ms
77:	learn: 14.5830333	total: 387ms	remaining: 109ms
78:	learn: 14.5241206	total: 392ms	remaining: 104ms
79:	learn: 14.4892731	total: 397ms	remaining: 99.2ms
80:	learn: 14.4256605	total: 401ms	remaining: 94ms
81:	learn: 14.3666860	total: 405ms	remaining: 89ms
82:	learn: 14.2938372	total: 409ms	remaining: 83.8ms
83:	learn: 14.2161532	total: 413ms	remaining: 78.8ms
84:	learn: 14.1582910	total: 417ms	remaining: 73.7ms
85:	learn: 14.1029153	total: 422ms	remaining: 68.7ms
86:	learn: 14.0475835	total: 426ms	remaining: 63.7ms
87:	learn: 13.9892661	total: 430ms	remaining: 58.6ms
88:	learn: 13.9481628	total: 434ms	remaining: 53.7ms
89:	learn: 13.8483991	total: 439ms	remaining: 48.7ms
90:	learn: 13.7775614	total: 443ms	remaining: 43.9ms
91:	learn: 13.7304585	total: 447ms	remaining: 38.9ms
92:	learn: 13.6783381	total: 452ms	remaining: 34ms
93:	learn: 13.6356964	total: 456ms	remaining: 29.1ms
94:	learn: 13.5924371	total: 461ms	remaining: 24.3ms
95:	learn: 13.5400746	total: 465ms	remaining: 19.4ms
96:	learn: 13.4897333	total: 470ms	remaining: 14.5ms
97:	learn: 13.4470321	total: 475ms	remaining: 9.69ms
98:	learn: 13.3856082	total: 480ms	remaining: 4.84ms
99:	learn: 13.3082371	total: 484ms	remaining: 0us
0:	learn: 43.0395283	total: 5.53ms	remaining: 548ms
1:	learn: 42.1130223	total: 10.5ms	remaining: 513ms
2:	learn: 41.1753409	total: 15.6ms	remaining: 505ms
3:	learn: 40.3637444	total: 20.8ms	remaining: 499ms
4:	learn: 39.6508088	total: 26.3ms	remaining: 499ms
5:	learn: 38.7217934	total: 31.3ms	remaining: 490ms
6:	learn: 37.8538055	total: 35.7ms	remaining: 474ms
7:	learn: 36.9793574	total: 40.3ms	remaining: 463ms
8:	learn: 36.3076984	total: 45.3ms	remaining: 458ms
9:	learn: 35.6673160	total: 50.1ms	remaining: 451ms
10:	learn: 34.8889800	total: 55.3ms	remaining: 448ms
11:	learn: 34.1675517	total: 61ms	remaining: 447ms
12:	learn: 33.6779564	total: 65.4ms	remaining: 438ms
13:	learn: 33.0710039	total: 69.5ms	remaining: 427ms
14:	learn: 32.4966674	total: 73.6ms	remaining: 417ms
15:	learn: 31.9492856	total: 77.9ms	remaining: 409ms
16:	learn: 31.5108129	total: 82.3ms	remaining: 402ms
17:	learn: 30.9804023	total: 86.7ms	remaining: 395ms
18:	learn: 30.4169089	total: 90.8ms	remaining: 387ms
19:	learn: 29.8930375	total: 95.2ms	remaining: 381ms
20:	learn: 29.3974421	total: 99.4ms	remaining: 374ms
21:	learn: 28.8792307	total: 104ms	remaining: 367ms
22:	learn: 28.3894474	total: 108ms	remaining: 360ms
23:	learn: 27.9921276	total: 112ms	remaining: 354ms
24:	learn: 27.6158887	total: 116ms	remaining: 347ms
25:	learn: 27.2866950	total: 120ms	remaining: 341ms
26:	learn: 26.8770708	total: 124ms	remaining: 336ms
27:	learn: 26.6233005	total: 130ms	remaining: 333ms
28:	learn: 26.2921934	total: 135ms	remaining: 329ms
29:	learn: 25.9156920	total: 139ms	remaining: 325ms
30:	learn: 25.5311106	total: 141ms	remaining: 314ms
31:	learn: 25.2178997	total: 146ms	remaining: 311ms
32:	learn: 24.8572196	total: 151ms	remaining: 307ms
33:	learn: 24.5849710	total: 156ms	remaining: 303ms
34:	learn: 24.2209190	total: 165ms	remaining: 306ms
35:	learn: 23.8708250	total: 182ms	remaining: 323ms
36:	learn: 23.5325279	total: 190ms	remaining: 323ms
37:	learn: 23.2116148	total: 194ms	remaining: 317ms
38:	learn: 22.9696787	total: 200ms	remaining: 313ms
39:	learn: 22.7936783	total: 205ms	remaining: 307ms
40:	learn: 22.6228847	total: 210ms	remaining: 302ms
41:	learn: 22.3691527	total: 215ms	remaining: 297ms
42:	learn: 22.1002173	total: 220ms	remaining: 292ms
43:	learn: 21.9157268	total: 225ms	remaining: 287ms
44:	learn: 21.7229102	total: 231ms	remaining: 282ms
45:	learn: 21.4642005	total: 236ms	remaining: 277ms
46:	learn: 21.3029442	total: 241ms	remaining: 272ms
47:	learn: 21.1469792	total: 246ms	remaining: 266ms
48:	learn: 20.9458235	total: 250ms	remaining: 261ms
49:	learn: 20.7335242	total: 256ms	remaining: 256ms
50:	learn: 20.5440269	total: 261ms	remaining: 251ms
51:	learn: 20.3661449	total: 265ms	remaining: 245ms
52:	learn: 20.2158134	total: 269ms	remaining: 239ms
53:	learn: 19.9934873	total: 273ms	remaining: 233ms
54:	learn: 19.7879739	total: 277ms	remaining: 227ms
55:	learn: 19.6630460	total: 281ms	remaining: 221ms
56:	learn: 19.5152729	total: 286ms	remaining: 215ms
57:	learn: 19.3581128	total: 290ms	remaining: 210ms
58:	learn: 19.2209303	total: 294ms	remaining: 204ms
59:	learn: 19.0965248	total: 298ms	remaining: 199ms
60:	learn: 19.0035954	total: 302ms	remaining: 193ms
61:	learn: 18.8554149	total: 306ms	remaining: 188ms
62:	learn: 18.7095427	total: 310ms	remaining: 182ms
63:	learn: 18.5751494	total: 314ms	remaining: 176ms
64:	learn: 18.4678251	total: 318ms	remaining: 171ms
65:	learn: 18.3500325	total: 323ms	remaining: 166ms
66:	learn: 18.2088983	total: 327ms	remaining: 161ms
67:	learn: 18.0737705	total: 331ms	remaining: 156ms
68:	learn: 17.9325058	total: 336ms	remaining: 151ms
69:	learn: 17.8003911	total: 341ms	remaining: 146ms
70:	learn: 17.7385366	total: 345ms	remaining: 141ms
71:	learn: 17.6106998	total: 350ms	remaining: 136ms
72:	learn: 17.4816270	total: 355ms	remaining: 131ms
73:	learn: 17.4025554	total: 361ms	remaining: 127ms
74:	learn: 17.2902108	total: 368ms	remaining: 123ms
75:	learn: 17.2158048	total: 381ms	remaining: 120ms
76:	learn: 17.1261053	total: 387ms	remaining: 116ms
77:	learn: 17.0308917	total: 393ms	remaining: 111ms
78:	learn: 16.9546705	total: 398ms	remaining: 106ms
79:	learn: 16.8319165	total: 403ms	remaining: 101ms
80:	learn: 16.7687017	total: 408ms	remaining: 95.8ms
81:	learn: 16.6972326	total: 413ms	remaining: 90.7ms
82:	learn: 16.6124580	total: 418ms	remaining: 85.6ms
83:	learn: 16.4999052	total: 424ms	remaining: 80.7ms
84:	learn: 16.4302484	total: 429ms	remaining: 75.6ms
85:	learn: 16.3201363	total: 434ms	remaining: 70.6ms
86:	learn: 16.2534314	total: 439ms	remaining: 65.6ms
87:	learn: 16.1720485	total: 444ms	remaining: 60.6ms
88:	learn: 16.0625751	total: 450ms	remaining: 55.6ms
89:	learn: 15.9135088	total: 454ms	remaining: 50.5ms
90:	learn: 15.8658863	total: 458ms	remaining: 45.3ms
91:	learn: 15.8066805	total: 463ms	remaining: 40.2ms
92:	learn: 15.7412103	total: 467ms	remaining: 35.2ms
93:	learn: 15.6542776	total: 472ms	remaining: 30.1ms
94:	learn: 15.5760334	total: 477ms	remaining: 25.1ms
95:	learn: 15.5434131	total: 481ms	remaining: 20ms
96:	learn: 15.4709561	total: 486ms	remaining: 15ms
97:	learn: 15.4449618	total: 490ms	remaining: 10ms
98:	learn: 15.3752761	total: 495ms	remaining: 5ms
99:	learn: 15.3106595	total: 500ms	remaining: 0us
0:	learn: 46.7142257	total: 5.28ms	remaining: 523ms
1:	learn: 45.7634153	total: 10.5ms	remaining: 516ms
2:	learn: 45.0054253	total: 19.2ms	remaining: 620ms
3:	learn: 44.2120432	total: 27.8ms	remaining: 667ms
4:	learn: 43.3960472	total: 37.5ms	remaining: 713ms
5:	learn: 42.8588120	total: 43.2ms	remaining: 676ms
6:	learn: 41.9533701	total: 49.9ms	remaining: 663ms
7:	learn: 41.2745030	total: 55.1ms	remaining: 634ms
8:	learn: 40.6797495	total: 60.1ms	remaining: 608ms
9:	learn: 39.9899571	total: 65.4ms	remaining: 588ms
10:	learn: 39.4682100	total: 70.6ms	remaining: 572ms
11:	learn: 39.0305595	total: 76ms	remaining: 557ms
12:	learn: 38.4200417	total: 81.1ms	remaining: 543ms
13:	learn: 37.8425194	total: 86.3ms	remaining: 530ms
14:	learn: 37.4203127	total: 91.5ms	remaining: 518ms
15:	learn: 36.9917688	total: 96ms	remaining: 504ms
16:	learn: 36.5544138	total: 101ms	remaining: 492ms
17:	learn: 36.0727019	total: 105ms	remaining: 479ms
18:	learn: 35.4835715	total: 110ms	remaining: 469ms
19:	learn: 34.9865654	total: 116ms	remaining: 462ms
20:	learn: 34.6063373	total: 121ms	remaining: 455ms
21:	learn: 34.0997289	total: 125ms	remaining: 445ms
22:	learn: 33.7313171	total: 130ms	remaining: 434ms
23:	learn: 33.3582000	total: 134ms	remaining: 424ms
24:	learn: 32.9432456	total: 138ms	remaining: 413ms
25:	learn: 32.5220888	total: 142ms	remaining: 404ms
26:	learn: 32.2172292	total: 146ms	remaining: 396ms
27:	learn: 31.8972904	total: 151ms	remaining: 388ms
28:	learn: 31.6405350	total: 155ms	remaining: 380ms
29:	learn: 31.4167702	total: 159ms	remaining: 372ms
30:	learn: 30.8541961	total: 161ms	remaining: 359ms
31:	learn: 30.5572111	total: 165ms	remaining: 351ms
32:	learn: 30.1700399	total: 169ms	remaining: 344ms
33:	learn: 29.8537271	total: 173ms	remaining: 337ms
34:	learn: 29.6192540	total: 178ms	remaining: 331ms
35:	learn: 29.3276362	total: 183ms	remaining: 325ms
36:	learn: 28.9985179	total: 187ms	remaining: 318ms
37:	learn: 28.7046880	total: 191ms	remaining: 312ms
38:	learn: 28.4412677	total: 196ms	remaining: 307ms
39:	learn: 28.1277292	total: 201ms	remaining: 301ms
40:	learn: 27.9000750	total: 205ms	remaining: 295ms
41:	learn: 27.5433162	total: 210ms	remaining: 289ms
42:	learn: 27.2493285	total: 214ms	remaining: 284ms
43:	learn: 26.9576632	total: 216ms	remaining: 275ms
44:	learn: 26.6177110	total: 220ms	remaining: 269ms
45:	learn: 26.2812456	total: 225ms	remaining: 264ms
46:	learn: 26.0803859	total: 231ms	remaining: 260ms
47:	learn: 25.9543581	total: 238ms	remaining: 258ms
48:	learn: 25.7951582	total: 246ms	remaining: 256ms
49:	learn: 25.6548184	total: 254ms	remaining: 254ms
50:	learn: 25.4010843	total: 261ms	remaining: 251ms
51:	learn: 24.9773937	total: 267ms	remaining: 246ms
52:	learn: 24.8026156	total: 272ms	remaining: 241ms
53:	learn: 24.5568053	total: 277ms	remaining: 236ms
54:	learn: 24.2281839	total: 282ms	remaining: 231ms
55:	learn: 23.9202795	total: 287ms	remaining: 226ms
56:	learn: 23.7625591	total: 292ms	remaining: 220ms
57:	learn: 23.5429721	total: 297ms	remaining: 215ms
58:	learn: 23.3175893	total: 302ms	remaining: 210ms
59:	learn: 23.2035130	total: 307ms	remaining: 205ms
60:	learn: 23.0232450	total: 312ms	remaining: 200ms
61:	learn: 22.8384958	total: 333ms	remaining: 204ms
62:	learn: 22.6499902	total: 337ms	remaining: 198ms
63:	learn: 22.4577426	total: 341ms	remaining: 192ms
64:	learn: 22.3333158	total: 345ms	remaining: 186ms
65:	learn: 22.2064131	total: 349ms	remaining: 180ms
66:	learn: 22.1434971	total: 354ms	remaining: 174ms
67:	learn: 21.9596519	total: 358ms	remaining: 168ms
68:	learn: 21.8475576	total: 362ms	remaining: 163ms
69:	learn: 21.6954745	total: 367ms	remaining: 157ms
70:	learn: 21.5635976	total: 371ms	remaining: 151ms
71:	learn: 21.4588506	total: 375ms	remaining: 146ms
72:	learn: 21.3527268	total: 379ms	remaining: 140ms
73:	learn: 21.2661288	total: 383ms	remaining: 135ms
74:	learn: 21.1817333	total: 388ms	remaining: 129ms
75:	learn: 21.0527553	total: 393ms	remaining: 124ms
76:	learn: 20.9229021	total: 397ms	remaining: 119ms
77:	learn: 20.7563946	total: 402ms	remaining: 113ms
78:	learn: 20.6569831	total: 407ms	remaining: 108ms
79:	learn: 20.4982663	total: 411ms	remaining: 103ms
80:	learn: 20.3185460	total: 416ms	remaining: 97.6ms
81:	learn: 20.2096241	total: 421ms	remaining: 92.4ms
82:	learn: 20.1274891	total: 426ms	remaining: 87.2ms
83:	learn: 20.0740139	total: 435ms	remaining: 82.8ms
84:	learn: 19.9630699	total: 444ms	remaining: 78.3ms
85:	learn: 19.8753899	total: 452ms	remaining: 73.7ms
86:	learn: 19.6563612	total: 461ms	remaining: 68.9ms
87:	learn: 19.4680232	total: 466ms	remaining: 63.5ms
88:	learn: 19.3503431	total: 471ms	remaining: 58.2ms
89:	learn: 19.2221379	total: 476ms	remaining: 52.9ms
90:	learn: 19.0732542	total: 482ms	remaining: 47.6ms
91:	learn: 18.9825190	total: 487ms	remaining: 42.3ms
92:	learn: 18.8839009	total: 492ms	remaining: 37ms
93:	learn: 18.8012219	total: 497ms	remaining: 31.7ms
94:	learn: 18.7172713	total: 502ms	remaining: 26.4ms
95:	learn: 18.6201170	total: 507ms	remaining: 21.1ms
96:	learn: 18.5318611	total: 512ms	remaining: 15.8ms
97:	learn: 18.3833356	total: 517ms	remaining: 10.5ms
98:	learn: 18.3289700	total: 522ms	remaining: 5.27ms
99:	learn: 18.2227333	total: 527ms	remaining: 0us
0:	learn: 46.3764524	total: 5.07ms	remaining: 502ms
1:	learn: 45.5561269	total: 9.9ms	remaining: 485ms
2:	learn: 44.8811245	total: 14.5ms	remaining: 470ms
3:	learn: 44.0788617	total: 18.9ms	remaining: 453ms
4:	learn: 43.3619790	total: 23.3ms	remaining: 442ms
5:	learn: 42.6912112	total: 28ms	remaining: 439ms
6:	learn: 42.2292118	total: 32.1ms	remaining: 427ms
7:	learn: 41.7725191	total: 36.8ms	remaining: 423ms
8:	learn: 41.1676614	total: 44.3ms	remaining: 448ms
9:	learn: 40.5771076	total: 51.5ms	remaining: 464ms
10:	learn: 39.8343757	total: 60.7ms	remaining: 491ms
11:	learn: 39.3761142	total: 67ms	remaining: 491ms
12:	learn: 38.5254692	total: 73ms	remaining: 488ms
13:	learn: 37.9629555	total: 78.3ms	remaining: 481ms
14:	learn: 37.4418438	total: 83.5ms	remaining: 473ms
15:	learn: 37.0507283	total: 88.4ms	remaining: 464ms
16:	learn: 36.6264217	total: 93.7ms	remaining: 457ms
17:	learn: 36.1114940	total: 98.7ms	remaining: 450ms
18:	learn: 35.7193862	total: 104ms	remaining: 444ms
19:	learn: 35.3301177	total: 109ms	remaining: 437ms
20:	learn: 35.0598280	total: 114ms	remaining: 430ms
21:	learn: 34.5469736	total: 119ms	remaining: 423ms
22:	learn: 34.2064215	total: 125ms	remaining: 417ms
23:	learn: 33.7280710	total: 130ms	remaining: 411ms
24:	learn: 33.3282940	total: 134ms	remaining: 403ms
25:	learn: 32.8478961	total: 140ms	remaining: 398ms
26:	learn: 32.5722164	total: 145ms	remaining: 393ms
27:	learn: 32.2457019	total: 150ms	remaining: 385ms
28:	learn: 31.9230495	total: 154ms	remaining: 377ms
29:	learn: 31.4311611	total: 158ms	remaining: 369ms
30:	learn: 30.9179052	total: 162ms	remaining: 361ms
31:	learn: 30.6201141	total: 166ms	remaining: 354ms
32:	learn: 30.3421106	total: 171ms	remaining: 347ms
33:	learn: 29.9885373	total: 175ms	remaining: 339ms
34:	learn: 29.7462780	total: 178ms	remaining: 331ms
35:	learn: 29.3607153	total: 183ms	remaining: 325ms
36:	learn: 29.1793078	total: 188ms	remaining: 319ms
37:	learn: 28.9276538	total: 192ms	remaining: 312ms
38:	learn: 28.6903934	total: 195ms	remaining: 306ms
39:	learn: 28.2095033	total: 199ms	remaining: 299ms
40:	learn: 27.7990608	total: 203ms	remaining: 292ms
41:	learn: 27.5406632	total: 207ms	remaining: 286ms
42:	learn: 27.2575376	total: 211ms	remaining: 280ms
43:	learn: 26.9741707	total: 215ms	remaining: 274ms
44:	learn: 26.6606899	total: 220ms	remaining: 269ms
45:	learn: 26.4015833	total: 224ms	remaining: 263ms
46:	learn: 26.1828993	total: 227ms	remaining: 256ms
47:	learn: 26.0233709	total: 230ms	remaining: 249ms
48:	learn: 25.9300399	total: 235ms	remaining: 245ms
49:	learn: 25.5861489	total: 240ms	remaining: 240ms
50:	learn: 25.4322012	total: 244ms	remaining: 234ms
51:	learn: 25.1595644	total: 248ms	remaining: 229ms
52:	learn: 24.9955303	total: 253ms	remaining: 224ms
53:	learn: 24.7273966	total: 258ms	remaining: 220ms
54:	learn: 24.5747978	total: 263ms	remaining: 215ms
55:	learn: 24.3807977	total: 269ms	remaining: 212ms
56:	learn: 24.1689569	total: 277ms	remaining: 209ms
57:	learn: 23.9898221	total: 284ms	remaining: 205ms
58:	learn: 23.7566414	total: 292ms	remaining: 203ms
59:	learn: 23.6641165	total: 299ms	remaining: 200ms
60:	learn: 23.5658066	total: 304ms	remaining: 195ms
61:	learn: 23.4338851	total: 309ms	remaining: 190ms
62:	learn: 23.2408837	total: 314ms	remaining: 185ms
63:	learn: 23.0642038	total: 319ms	remaining: 180ms
64:	learn: 22.9032045	total: 325ms	remaining: 175ms
65:	learn: 22.7736138	total: 330ms	remaining: 170ms
66:	learn: 22.6836443	total: 335ms	remaining: 165ms
67:	learn: 22.5983654	total: 340ms	remaining: 160ms
68:	learn: 22.4419813	total: 345ms	remaining: 155ms
69:	learn: 22.2863339	total: 350ms	remaining: 150ms
70:	learn: 22.1792943	total: 355ms	remaining: 145ms
71:	learn: 22.1130574	total: 359ms	remaining: 140ms
72:	learn: 21.9858161	total: 365ms	remaining: 135ms
73:	learn: 21.8577784	total: 370ms	remaining: 130ms
74:	learn: 21.7845222	total: 375ms	remaining: 125ms
75:	learn: 21.6831390	total: 379ms	remaining: 120ms
76:	learn: 21.6292521	total: 383ms	remaining: 114ms
77:	learn: 21.5789330	total: 387ms	remaining: 109ms
78:	learn: 21.5420942	total: 391ms	remaining: 104ms
79:	learn: 21.4280939	total: 395ms	remaining: 98.8ms
80:	learn: 21.3641165	total: 399ms	remaining: 93.6ms
81:	learn: 21.2734814	total: 403ms	remaining: 88.5ms
82:	learn: 21.2220323	total: 408ms	remaining: 83.5ms
83:	learn: 21.0625792	total: 413ms	remaining: 78.6ms
84:	learn: 20.9488320	total: 418ms	remaining: 73.7ms
85:	learn: 20.8504255	total: 422ms	remaining: 68.6ms
86:	learn: 20.7848510	total: 426ms	remaining: 63.6ms
87:	learn: 20.7247442	total: 430ms	remaining: 58.7ms
88:	learn: 20.5698590	total: 435ms	remaining: 53.8ms
89:	learn: 20.4067620	total: 440ms	remaining: 48.9ms
90:	learn: 20.3062482	total: 444ms	remaining: 44ms
91:	learn: 20.2029696	total: 449ms	remaining: 39ms
92:	learn: 20.1384849	total: 454ms	remaining: 34.1ms
93:	learn: 20.0260709	total: 458ms	remaining: 29.2ms
94:	learn: 19.9122100	total: 462ms	remaining: 24.3ms
95:	learn: 19.8648487	total: 467ms	remaining: 19.5ms
96:	learn: 19.8207072	total: 474ms	remaining: 14.7ms
97:	learn: 19.7261189	total: 481ms	remaining: 9.82ms
98:	learn: 19.7042438	total: 491ms	remaining: 4.96ms
99:	learn: 19.6546645	total: 497ms	remaining: 0us
0:	learn: 47.0239288	total: 5.84ms	remaining: 579ms
1:	learn: 46.2253829	total: 11.7ms	remaining: 573ms
2:	learn: 45.5580301	total: 15.7ms	remaining: 508ms
3:	learn: 44.7273237	total: 19.8ms	remaining: 474ms
4:	learn: 43.8867421	total: 23.7ms	remaining: 451ms
5:	learn: 43.3615911	total: 27.7ms	remaining: 434ms
6:	learn: 42.8548390	total: 32ms	remaining: 425ms
7:	learn: 42.1606758	total: 35.9ms	remaining: 413ms
8:	learn: 41.6625870	total: 40ms	remaining: 404ms
9:	learn: 40.9497092	total: 43.9ms	remaining: 395ms
10:	learn: 40.1886318	total: 47.9ms	remaining: 388ms
11:	learn: 39.7456423	total: 52.1ms	remaining: 382ms
12:	learn: 39.1171373	total: 56.2ms	remaining: 376ms
13:	learn: 38.5451069	total: 60.4ms	remaining: 371ms
14:	learn: 38.0155834	total: 64.4ms	remaining: 365ms
15:	learn: 37.5631354	total: 68.2ms	remaining: 358ms
16:	learn: 37.1030023	total: 72.6ms	remaining: 354ms
17:	learn: 36.4563029	total: 77ms	remaining: 351ms
18:	learn: 36.0160976	total: 81ms	remaining: 346ms
19:	learn: 35.5079827	total: 85ms	remaining: 340ms
20:	learn: 35.2111885	total: 89.6ms	remaining: 337ms
21:	learn: 34.9397465	total: 94.4ms	remaining: 335ms
22:	learn: 34.5270048	total: 98.7ms	remaining: 330ms
23:	learn: 34.0169260	total: 103ms	remaining: 326ms
24:	learn: 33.7454892	total: 107ms	remaining: 322ms
25:	learn: 33.2648157	total: 112ms	remaining: 319ms
26:	learn: 32.8899427	total: 117ms	remaining: 315ms
27:	learn: 32.6185050	total: 121ms	remaining: 311ms
28:	learn: 32.3528531	total: 128ms	remaining: 313ms
29:	learn: 32.0859923	total: 135ms	remaining: 316ms
30:	learn: 31.6511144	total: 143ms	remaining: 318ms
31:	learn: 31.2571765	total: 150ms	remaining: 319ms
32:	learn: 30.9770049	total: 158ms	remaining: 320ms
33:	learn: 30.6084872	total: 163ms	remaining: 316ms
34:	learn: 30.3448632	total: 169ms	remaining: 314ms
35:	learn: 30.0360942	total: 175ms	remaining: 312ms
36:	learn: 29.6648968	total: 181ms	remaining: 307ms
37:	learn: 29.3165114	total: 186ms	remaining: 303ms
38:	learn: 29.0829198	total: 191ms	remaining: 299ms
39:	learn: 28.7752064	total: 197ms	remaining: 295ms
40:	learn: 28.3622191	total: 202ms	remaining: 290ms
41:	learn: 28.1346631	total: 207ms	remaining: 286ms
42:	learn: 27.9585719	total: 213ms	remaining: 282ms
43:	learn: 27.6565566	total: 218ms	remaining: 277ms
44:	learn: 27.3616172	total: 223ms	remaining: 272ms
45:	learn: 27.0658637	total: 228ms	remaining: 268ms
46:	learn: 26.8660382	total: 234ms	remaining: 264ms
47:	learn: 26.6536078	total: 239ms	remaining: 259ms
48:	learn: 26.3524440	total: 244ms	remaining: 254ms
49:	learn: 26.1595277	total: 248ms	remaining: 248ms
50:	learn: 25.9273523	total: 253ms	remaining: 243ms
51:	learn: 25.7195580	total: 258ms	remaining: 238ms
52:	learn: 25.5730225	total: 263ms	remaining: 233ms
53:	learn: 25.3455276	total: 267ms	remaining: 228ms
54:	learn: 25.2289675	total: 272ms	remaining: 222ms
55:	learn: 25.0133024	total: 276ms	remaining: 217ms
56:	learn: 24.8406714	total: 281ms	remaining: 212ms
57:	learn: 24.6367857	total: 285ms	remaining: 207ms
58:	learn: 24.5338177	total: 290ms	remaining: 202ms
59:	learn: 24.3799964	total: 295ms	remaining: 197ms
60:	learn: 24.1447492	total: 300ms	remaining: 192ms
61:	learn: 23.9880495	total: 305ms	remaining: 187ms
62:	learn: 23.7140630	total: 310ms	remaining: 182ms
63:	learn: 23.5003791	total: 315ms	remaining: 177ms
64:	learn: 23.3207645	total: 320ms	remaining: 172ms
65:	learn: 23.1958356	total: 325ms	remaining: 167ms
66:	learn: 23.0471302	total: 335ms	remaining: 165ms
67:	learn: 22.8977183	total: 343ms	remaining: 161ms
68:	learn: 22.7187400	total: 351ms	remaining: 158ms
69:	learn: 22.6523405	total: 358ms	remaining: 154ms
70:	learn: 22.4767453	total: 364ms	remaining: 149ms
71:	learn: 22.3243677	total: 370ms	remaining: 144ms
72:	learn: 22.2133096	total: 375ms	remaining: 139ms
73:	learn: 22.1151713	total: 380ms	remaining: 134ms
74:	learn: 22.0296666	total: 386ms	remaining: 129ms
75:	learn: 21.9195980	total: 391ms	remaining: 123ms
76:	learn: 21.8401730	total: 396ms	remaining: 118ms
77:	learn: 21.8079797	total: 401ms	remaining: 113ms
78:	learn: 21.7274109	total: 407ms	remaining: 108ms
79:	learn: 21.6663032	total: 412ms	remaining: 103ms
80:	learn: 21.5633117	total: 417ms	remaining: 97.9ms
81:	learn: 21.4542467	total: 423ms	remaining: 92.9ms
82:	learn: 21.3177957	total: 429ms	remaining: 87.9ms
83:	learn: 21.1289167	total: 435ms	remaining: 82.9ms
84:	learn: 21.0297368	total: 440ms	remaining: 77.6ms
85:	learn: 20.9089564	total: 444ms	remaining: 72.3ms
86:	learn: 20.7653988	total: 449ms	remaining: 67ms
87:	learn: 20.6521894	total: 453ms	remaining: 61.8ms
88:	learn: 20.5193021	total: 457ms	remaining: 56.5ms
89:	learn: 20.4361620	total: 461ms	remaining: 51.3ms
90:	learn: 20.3546710	total: 466ms	remaining: 46ms
91:	learn: 20.2513296	total: 470ms	remaining: 40.8ms
92:	learn: 20.1605550	total: 474ms	remaining: 35.7ms
93:	learn: 20.0515942	total: 479ms	remaining: 30.5ms
94:	learn: 19.9800764	total: 483ms	remaining: 25.4ms
95:	learn: 19.8996532	total: 487ms	remaining: 20.3ms
96:	learn: 19.8450910	total: 492ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 496ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 501ms	remaining: 5.06ms
99:	learn: 19.6328825	total: 505ms	remaining: 0us
0:	learn: 27.5585353	total: 5.05ms	remaining: 500ms
1:	learn: 27.1656995	total: 9.72ms	remaining: 476ms
2:	learn: 26.8590175	total: 14.7ms	remaining: 476ms
3:	learn: 26.5818406	total: 20.1ms	remaining: 484ms
4:	learn: 26.1148663	total: 25.2ms	remaining: 478ms
5:	learn: 25.7690484	total: 30.1ms	remaining: 472ms
6:	learn: 25.3489206	total: 35.2ms	remaining: 468ms
7:	learn: 24.9542406	total: 39.9ms	remaining: 458ms
8:	learn: 24.6777517	total: 44.4ms	remaining: 449ms
9:	learn: 24.3242344	total: 49.8ms	remaining: 448ms
10:	learn: 24.0383073	total: 55.1ms	remaining: 446ms
11:	learn: 23.7383420	total: 59.6ms	remaining: 437ms
12:	learn: 23.3461670	total: 63.4ms	remaining: 424ms
13:	learn: 23.0928636	total: 67.4ms	remaining: 414ms
14:	learn: 22.8770414	total: 71.4ms	remaining: 405ms
15:	learn: 22.6323214	total: 75.4ms	remaining: 396ms
16:	learn: 22.3597072	total: 79.6ms	remaining: 388ms
17:	learn: 22.1079813	total: 83.7ms	remaining: 381ms
18:	learn: 21.8421199	total: 87.8ms	remaining: 374ms
19:	learn: 21.6576508	total: 91.7ms	remaining: 367ms
20:	learn: 21.4301268	total: 95.5ms	remaining: 359ms
21:	learn: 21.2287388	total: 99.4ms	remaining: 352ms
22:	learn: 21.0553872	total: 104ms	remaining: 348ms
23:	learn: 20.8977091	total: 108ms	remaining: 341ms
24:	learn: 20.6619051	total: 112ms	remaining: 335ms
25:	learn: 20.5040955	total: 115ms	remaining: 329ms
26:	learn: 20.3181195	total: 120ms	remaining: 325ms
27:	learn: 20.0869436	total: 125ms	remaining: 321ms
28:	learn: 19.9375985	total: 130ms	remaining: 317ms
29:	learn: 19.8247516	total: 134ms	remaining: 313ms
30:	learn: 19.6261697	total: 139ms	remaining: 308ms
31:	learn: 19.4547236	total: 143ms	remaining: 304ms
32:	learn: 19.3157092	total: 147ms	remaining: 299ms
33:	learn: 19.1561419	total: 152ms	remaining: 294ms
34:	learn: 19.0453620	total: 156ms	remaining: 291ms
35:	learn: 18.8738574	total: 164ms	remaining: 292ms
36:	learn: 18.7072907	total: 172ms	remaining: 292ms
37:	learn: 18.5877943	total: 180ms	remaining: 293ms
38:	learn: 18.4436380	total: 187ms	remaining: 293ms
39:	learn: 18.3463356	total: 193ms	remaining: 289ms
40:	learn: 18.2008059	total: 198ms	remaining: 284ms
41:	learn: 18.0582079	total: 203ms	remaining: 280ms
42:	learn: 17.8891982	total: 208ms	remaining: 275ms
43:	learn: 17.7332246	total: 213ms	remaining: 272ms
44:	learn: 17.6206421	total: 220ms	remaining: 269ms
45:	learn: 17.4982800	total: 229ms	remaining: 269ms
46:	learn: 17.3970150	total: 234ms	remaining: 264ms
47:	learn: 17.3058203	total: 240ms	remaining: 260ms
48:	learn: 17.1789256	total: 245ms	remaining: 256ms
49:	learn: 17.0916229	total: 250ms	remaining: 250ms
50:	learn: 16.9859820	total: 256ms	remaining: 246ms
51:	learn: 16.8995582	total: 262ms	remaining: 241ms
52:	learn: 16.8137014	total: 266ms	remaining: 236ms
53:	learn: 16.7021451	total: 271ms	remaining: 231ms
54:	learn: 16.5895582	total: 276ms	remaining: 226ms
55:	learn: 16.5015639	total: 281ms	remaining: 221ms
56:	learn: 16.4356637	total: 285ms	remaining: 215ms
57:	learn: 16.3514525	total: 290ms	remaining: 210ms
58:	learn: 16.2401369	total: 294ms	remaining: 205ms
59:	learn: 16.1293223	total: 299ms	remaining: 199ms
60:	learn: 16.0271167	total: 304ms	remaining: 195ms
61:	learn: 15.9126257	total: 309ms	remaining: 189ms
62:	learn: 15.8391096	total: 313ms	remaining: 184ms
63:	learn: 15.7441773	total: 318ms	remaining: 179ms
64:	learn: 15.6885195	total: 323ms	remaining: 174ms
65:	learn: 15.6052039	total: 328ms	remaining: 169ms
66:	learn: 15.5074202	total: 333ms	remaining: 164ms
67:	learn: 15.4054338	total: 338ms	remaining: 159ms
68:	learn: 15.2885714	total: 344ms	remaining: 154ms
69:	learn: 15.2157472	total: 349ms	remaining: 149ms
70:	learn: 15.1031554	total: 353ms	remaining: 144ms
71:	learn: 15.0237470	total: 361ms	remaining: 140ms
72:	learn: 14.9756825	total: 370ms	remaining: 137ms
73:	learn: 14.8840596	total: 378ms	remaining: 133ms
74:	learn: 14.8077061	total: 384ms	remaining: 128ms
75:	learn: 14.7444437	total: 397ms	remaining: 125ms
76:	learn: 14.6751720	total: 403ms	remaining: 120ms
77:	learn: 14.5830333	total: 407ms	remaining: 115ms
78:	learn: 14.5241206	total: 413ms	remaining: 110ms
79:	learn: 14.4892731	total: 418ms	remaining: 104ms
80:	learn: 14.4256605	total: 423ms	remaining: 99.2ms
81:	learn: 14.3666860	total: 428ms	remaining: 94ms
82:	learn: 14.2938372	total: 434ms	remaining: 88.9ms
83:	learn: 14.2161532	total: 439ms	remaining: 83.6ms
84:	learn: 14.1582910	total: 444ms	remaining: 78.4ms
85:	learn: 14.1029153	total: 449ms	remaining: 73.1ms
86:	learn: 14.0475835	total: 455ms	remaining: 68ms
87:	learn: 13.9892661	total: 460ms	remaining: 62.7ms
88:	learn: 13.9481628	total: 464ms	remaining: 57.4ms
89:	learn: 13.8483991	total: 468ms	remaining: 52.1ms
90:	learn: 13.7775614	total: 473ms	remaining: 46.7ms
91:	learn: 13.7304585	total: 476ms	remaining: 41.4ms
92:	learn: 13.6783381	total: 480ms	remaining: 36.1ms
93:	learn: 13.6356964	total: 484ms	remaining: 30.9ms
94:	learn: 13.5924371	total: 488ms	remaining: 25.7ms
95:	learn: 13.5400746	total: 492ms	remaining: 20.5ms
96:	learn: 13.4897333	total: 496ms	remaining: 15.3ms
97:	learn: 13.4470321	total: 500ms	remaining: 10.2ms
98:	learn: 13.3856082	total: 504ms	remaining: 5.09ms
99:	learn: 13.3082371	total: 508ms	remaining: 0us
0:	learn: 43.0395283	total: 6.81ms	remaining: 674ms
1:	learn: 42.1130223	total: 11.7ms	remaining: 572ms
2:	learn: 41.1753409	total: 17.2ms	remaining: 557ms
3:	learn: 40.3637444	total: 22.7ms	remaining: 546ms
4:	learn: 39.6508088	total: 27.9ms	remaining: 531ms
5:	learn: 38.7217934	total: 33ms	remaining: 518ms
6:	learn: 37.8538055	total: 38.4ms	remaining: 510ms
7:	learn: 36.9793574	total: 43.6ms	remaining: 502ms
8:	learn: 36.3076984	total: 49.2ms	remaining: 497ms
9:	learn: 35.6673160	total: 54.9ms	remaining: 494ms
10:	learn: 34.8889800	total: 60.4ms	remaining: 489ms
11:	learn: 34.1675517	total: 65.5ms	remaining: 481ms
12:	learn: 33.6779564	total: 70.7ms	remaining: 473ms
13:	learn: 33.0710039	total: 76.1ms	remaining: 467ms
14:	learn: 32.4966674	total: 81.2ms	remaining: 460ms
15:	learn: 31.9492856	total: 85.9ms	remaining: 451ms
16:	learn: 31.5108129	total: 90.8ms	remaining: 443ms
17:	learn: 30.9804023	total: 96.6ms	remaining: 440ms
18:	learn: 30.4169089	total: 102ms	remaining: 435ms
19:	learn: 29.8930375	total: 106ms	remaining: 426ms
20:	learn: 29.3974421	total: 111ms	remaining: 417ms
21:	learn: 28.8792307	total: 115ms	remaining: 408ms
22:	learn: 28.3894474	total: 119ms	remaining: 399ms
23:	learn: 27.9921276	total: 123ms	remaining: 391ms
24:	learn: 27.6158887	total: 128ms	remaining: 383ms
25:	learn: 27.2866950	total: 132ms	remaining: 376ms
26:	learn: 26.8770708	total: 136ms	remaining: 369ms
27:	learn: 26.6233005	total: 141ms	remaining: 362ms
28:	learn: 26.2921934	total: 146ms	remaining: 357ms
29:	learn: 25.9156920	total: 150ms	remaining: 350ms
30:	learn: 25.5311106	total: 151ms	remaining: 337ms
31:	learn: 25.2178997	total: 156ms	remaining: 331ms
32:	learn: 24.8572196	total: 160ms	remaining: 325ms
33:	learn: 24.5849710	total: 165ms	remaining: 320ms
34:	learn: 24.2209190	total: 169ms	remaining: 314ms
35:	learn: 23.8708250	total: 174ms	remaining: 309ms
36:	learn: 23.5325279	total: 179ms	remaining: 304ms
37:	learn: 23.2116148	total: 183ms	remaining: 299ms
38:	learn: 22.9696787	total: 188ms	remaining: 294ms
39:	learn: 22.7936783	total: 193ms	remaining: 290ms
40:	learn: 22.6228847	total: 198ms	remaining: 285ms
41:	learn: 22.3691527	total: 209ms	remaining: 288ms
42:	learn: 22.1002173	total: 219ms	remaining: 290ms
43:	learn: 21.9157268	total: 225ms	remaining: 287ms
44:	learn: 21.7229102	total: 233ms	remaining: 285ms
45:	learn: 21.4642005	total: 238ms	remaining: 280ms
46:	learn: 21.3029442	total: 244ms	remaining: 275ms
47:	learn: 21.1469792	total: 249ms	remaining: 270ms
48:	learn: 20.9458235	total: 254ms	remaining: 265ms
49:	learn: 20.7335242	total: 260ms	remaining: 260ms
50:	learn: 20.5440269	total: 266ms	remaining: 255ms
51:	learn: 20.3661449	total: 272ms	remaining: 251ms
52:	learn: 20.2158134	total: 277ms	remaining: 246ms
53:	learn: 19.9934873	total: 283ms	remaining: 241ms
54:	learn: 19.7879739	total: 288ms	remaining: 236ms
55:	learn: 19.6630460	total: 293ms	remaining: 231ms
56:	learn: 19.5152729	total: 300ms	remaining: 226ms
57:	learn: 19.3581128	total: 305ms	remaining: 221ms
58:	learn: 19.2209303	total: 309ms	remaining: 215ms
59:	learn: 19.0965248	total: 314ms	remaining: 209ms
60:	learn: 19.0035954	total: 318ms	remaining: 203ms
61:	learn: 18.8554149	total: 322ms	remaining: 198ms
62:	learn: 18.7095427	total: 326ms	remaining: 192ms
63:	learn: 18.5751494	total: 331ms	remaining: 186ms
64:	learn: 18.4678251	total: 335ms	remaining: 180ms
65:	learn: 18.3500325	total: 339ms	remaining: 175ms
66:	learn: 18.2088983	total: 344ms	remaining: 169ms
67:	learn: 18.0737705	total: 348ms	remaining: 164ms
68:	learn: 17.9325058	total: 353ms	remaining: 158ms
69:	learn: 17.8003911	total: 358ms	remaining: 153ms
70:	learn: 17.7385366	total: 362ms	remaining: 148ms
71:	learn: 17.6106998	total: 367ms	remaining: 143ms
72:	learn: 17.4816270	total: 372ms	remaining: 138ms
73:	learn: 17.4025554	total: 376ms	remaining: 132ms
74:	learn: 17.2902108	total: 381ms	remaining: 127ms
75:	learn: 17.2158048	total: 386ms	remaining: 122ms
76:	learn: 17.1261053	total: 390ms	remaining: 116ms
77:	learn: 17.0308917	total: 395ms	remaining: 111ms
78:	learn: 16.9546705	total: 403ms	remaining: 107ms
79:	learn: 16.8319165	total: 410ms	remaining: 103ms
80:	learn: 16.7687017	total: 418ms	remaining: 98ms
81:	learn: 16.6972326	total: 424ms	remaining: 93.1ms
82:	learn: 16.6124580	total: 431ms	remaining: 88.3ms
83:	learn: 16.4999052	total: 437ms	remaining: 83.2ms
84:	learn: 16.4302484	total: 450ms	remaining: 79.4ms
85:	learn: 16.3201363	total: 455ms	remaining: 74.1ms
86:	learn: 16.2534314	total: 460ms	remaining: 68.8ms
87:	learn: 16.1720485	total: 465ms	remaining: 63.4ms
88:	learn: 16.0625751	total: 471ms	remaining: 58.2ms
89:	learn: 15.9135088	total: 476ms	remaining: 52.9ms
90:	learn: 15.8658863	total: 481ms	remaining: 47.6ms
91:	learn: 15.8066805	total: 486ms	remaining: 42.3ms
92:	learn: 15.7412103	total: 491ms	remaining: 37ms
93:	learn: 15.6542776	total: 497ms	remaining: 31.7ms
94:	learn: 15.5760334	total: 502ms	remaining: 26.4ms
95:	learn: 15.5434131	total: 506ms	remaining: 21.1ms
96:	learn: 15.4709561	total: 510ms	remaining: 15.8ms
97:	learn: 15.4449618	total: 514ms	remaining: 10.5ms
98:	learn: 15.3752761	total: 518ms	remaining: 5.23ms
99:	learn: 15.3106595	total: 522ms	remaining: 0us
0:	learn: 46.7142257	total: 4.89ms	remaining: 484ms
1:	learn: 45.7634153	total: 9.76ms	remaining: 478ms
2:	learn: 45.0054253	total: 14.2ms	remaining: 460ms
3:	learn: 44.2120432	total: 18.4ms	remaining: 441ms
4:	learn: 43.3960472	total: 23ms	remaining: 436ms
5:	learn: 42.8588120	total: 27.4ms	remaining: 430ms
6:	learn: 41.9533701	total: 31.8ms	remaining: 423ms
7:	learn: 41.2745030	total: 36.2ms	remaining: 417ms
8:	learn: 40.6797495	total: 40.9ms	remaining: 413ms
9:	learn: 39.9899571	total: 49.7ms	remaining: 447ms
10:	learn: 39.4682100	total: 57.2ms	remaining: 463ms
11:	learn: 39.0305595	total: 65.6ms	remaining: 481ms
12:	learn: 38.4200417	total: 73.7ms	remaining: 493ms
13:	learn: 37.8425194	total: 79.3ms	remaining: 487ms
14:	learn: 37.4203127	total: 84.4ms	remaining: 478ms
15:	learn: 36.9917688	total: 89.5ms	remaining: 470ms
16:	learn: 36.5544138	total: 94.9ms	remaining: 463ms
17:	learn: 36.0727019	total: 99.9ms	remaining: 455ms
18:	learn: 35.4835715	total: 105ms	remaining: 449ms
19:	learn: 34.9865654	total: 111ms	remaining: 443ms
20:	learn: 34.6063373	total: 116ms	remaining: 435ms
21:	learn: 34.0997289	total: 121ms	remaining: 428ms
22:	learn: 33.7313171	total: 126ms	remaining: 422ms
23:	learn: 33.3582000	total: 131ms	remaining: 414ms
24:	learn: 32.9432456	total: 136ms	remaining: 407ms
25:	learn: 32.5220888	total: 141ms	remaining: 402ms
26:	learn: 32.2172292	total: 146ms	remaining: 394ms
27:	learn: 31.8972904	total: 150ms	remaining: 385ms
28:	learn: 31.6405350	total: 154ms	remaining: 376ms
29:	learn: 31.4167702	total: 157ms	remaining: 367ms
30:	learn: 30.8541961	total: 159ms	remaining: 354ms
31:	learn: 30.5572111	total: 163ms	remaining: 347ms
32:	learn: 30.1700399	total: 168ms	remaining: 340ms
33:	learn: 29.8537271	total: 172ms	remaining: 334ms
34:	learn: 29.6192540	total: 176ms	remaining: 327ms
35:	learn: 29.3276362	total: 180ms	remaining: 321ms
36:	learn: 28.9985179	total: 185ms	remaining: 315ms
37:	learn: 28.7046880	total: 189ms	remaining: 308ms
38:	learn: 28.4412677	total: 193ms	remaining: 302ms
39:	learn: 28.1277292	total: 197ms	remaining: 296ms
40:	learn: 27.9000750	total: 202ms	remaining: 290ms
41:	learn: 27.5433162	total: 206ms	remaining: 285ms
42:	learn: 27.2493285	total: 211ms	remaining: 279ms
43:	learn: 26.9576632	total: 212ms	remaining: 270ms
44:	learn: 26.6177110	total: 217ms	remaining: 265ms
45:	learn: 26.2812456	total: 221ms	remaining: 260ms
46:	learn: 26.0803859	total: 226ms	remaining: 255ms
47:	learn: 25.9543581	total: 230ms	remaining: 249ms
48:	learn: 25.7951582	total: 235ms	remaining: 244ms
49:	learn: 25.6548184	total: 239ms	remaining: 239ms
50:	learn: 25.4010843	total: 244ms	remaining: 234ms
51:	learn: 24.9773937	total: 248ms	remaining: 229ms
52:	learn: 24.8026156	total: 253ms	remaining: 225ms
53:	learn: 24.5568053	total: 260ms	remaining: 222ms
54:	learn: 24.2281839	total: 268ms	remaining: 219ms
55:	learn: 23.9202795	total: 278ms	remaining: 218ms
56:	learn: 23.7625591	total: 284ms	remaining: 214ms
57:	learn: 23.5429721	total: 291ms	remaining: 211ms
58:	learn: 23.3175893	total: 296ms	remaining: 206ms
59:	learn: 23.2035130	total: 301ms	remaining: 201ms
60:	learn: 23.0232450	total: 306ms	remaining: 196ms
61:	learn: 22.8384958	total: 311ms	remaining: 191ms
62:	learn: 22.6499902	total: 316ms	remaining: 186ms
63:	learn: 22.4577426	total: 321ms	remaining: 181ms
64:	learn: 22.3333158	total: 326ms	remaining: 176ms
65:	learn: 22.2064131	total: 332ms	remaining: 171ms
66:	learn: 22.1434971	total: 337ms	remaining: 166ms
67:	learn: 21.9596519	total: 342ms	remaining: 161ms
68:	learn: 21.8475576	total: 346ms	remaining: 156ms
69:	learn: 21.6954745	total: 352ms	remaining: 151ms
70:	learn: 21.5635976	total: 357ms	remaining: 146ms
71:	learn: 21.4588506	total: 361ms	remaining: 140ms
72:	learn: 21.3527268	total: 365ms	remaining: 135ms
73:	learn: 21.2661288	total: 369ms	remaining: 130ms
74:	learn: 21.1817333	total: 374ms	remaining: 125ms
75:	learn: 21.0527553	total: 378ms	remaining: 119ms
76:	learn: 20.9229021	total: 382ms	remaining: 114ms
77:	learn: 20.7563946	total: 386ms	remaining: 109ms
78:	learn: 20.6569831	total: 390ms	remaining: 104ms
79:	learn: 20.4982663	total: 395ms	remaining: 98.7ms
80:	learn: 20.3185460	total: 399ms	remaining: 93.6ms
81:	learn: 20.2096241	total: 404ms	remaining: 88.6ms
82:	learn: 20.1274891	total: 408ms	remaining: 83.5ms
83:	learn: 20.0740139	total: 412ms	remaining: 78.4ms
84:	learn: 19.9630699	total: 416ms	remaining: 73.4ms
85:	learn: 19.8753899	total: 421ms	remaining: 68.5ms
86:	learn: 19.6563612	total: 426ms	remaining: 63.6ms
87:	learn: 19.4680232	total: 430ms	remaining: 58.6ms
88:	learn: 19.3503431	total: 434ms	remaining: 53.7ms
89:	learn: 19.2221379	total: 439ms	remaining: 48.8ms
90:	learn: 19.0732542	total: 444ms	remaining: 43.9ms
91:	learn: 18.9825190	total: 449ms	remaining: 39ms
92:	learn: 18.8839009	total: 454ms	remaining: 34.1ms
93:	learn: 18.8012219	total: 462ms	remaining: 29.5ms
94:	learn: 18.7172713	total: 469ms	remaining: 24.7ms
95:	learn: 18.6201170	total: 477ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 484ms	remaining: 15ms
97:	learn: 18.3833356	total: 489ms	remaining: 9.98ms
98:	learn: 18.3289700	total: 495ms	remaining: 5ms
99:	learn: 18.2227333	total: 500ms	remaining: 0us
0:	learn: 46.3764524	total: 5.32ms	remaining: 527ms
1:	learn: 45.5561269	total: 9.41ms	remaining: 461ms
2:	learn: 44.8811245	total: 13.6ms	remaining: 441ms
3:	learn: 44.0788617	total: 18ms	remaining: 432ms
4:	learn: 43.3619790	total: 22.5ms	remaining: 427ms
5:	learn: 42.6912112	total: 26.6ms	remaining: 416ms
6:	learn: 42.2292118	total: 30.8ms	remaining: 409ms
7:	learn: 41.7725191	total: 35ms	remaining: 402ms
8:	learn: 41.1676614	total: 39.3ms	remaining: 397ms
9:	learn: 40.5771076	total: 43.6ms	remaining: 392ms
10:	learn: 39.8343757	total: 47.5ms	remaining: 384ms
11:	learn: 39.3761142	total: 51.6ms	remaining: 379ms
12:	learn: 38.5254692	total: 56.1ms	remaining: 375ms
13:	learn: 37.9629555	total: 60ms	remaining: 369ms
14:	learn: 37.4418438	total: 64.2ms	remaining: 364ms
15:	learn: 37.0507283	total: 68.3ms	remaining: 359ms
16:	learn: 36.6264217	total: 72.7ms	remaining: 355ms
17:	learn: 36.1114940	total: 77.1ms	remaining: 351ms
18:	learn: 35.7193862	total: 81.4ms	remaining: 347ms
19:	learn: 35.3301177	total: 86.2ms	remaining: 345ms
20:	learn: 35.0598280	total: 90.8ms	remaining: 342ms
21:	learn: 34.5469736	total: 95.4ms	remaining: 338ms
22:	learn: 34.2064215	total: 99.9ms	remaining: 334ms
23:	learn: 33.7280710	total: 104ms	remaining: 331ms
24:	learn: 33.3282940	total: 113ms	remaining: 338ms
25:	learn: 32.8478961	total: 121ms	remaining: 346ms
26:	learn: 32.5722164	total: 131ms	remaining: 354ms
27:	learn: 32.2457019	total: 140ms	remaining: 359ms
28:	learn: 31.9230495	total: 146ms	remaining: 357ms
29:	learn: 31.4311611	total: 152ms	remaining: 354ms
30:	learn: 30.9179052	total: 157ms	remaining: 351ms
31:	learn: 30.6201141	total: 163ms	remaining: 347ms
32:	learn: 30.3421106	total: 170ms	remaining: 345ms
33:	learn: 29.9885373	total: 176ms	remaining: 341ms
34:	learn: 29.7462780	total: 181ms	remaining: 337ms
35:	learn: 29.3607153	total: 187ms	remaining: 332ms
36:	learn: 29.1793078	total: 192ms	remaining: 327ms
37:	learn: 28.9276538	total: 196ms	remaining: 320ms
38:	learn: 28.6903934	total: 201ms	remaining: 314ms
39:	learn: 28.2095033	total: 206ms	remaining: 308ms
40:	learn: 27.7990608	total: 210ms	remaining: 303ms
41:	learn: 27.5406632	total: 216ms	remaining: 298ms
42:	learn: 27.2575376	total: 221ms	remaining: 293ms
43:	learn: 26.9741707	total: 226ms	remaining: 287ms
44:	learn: 26.6606899	total: 229ms	remaining: 280ms
45:	learn: 26.4015833	total: 233ms	remaining: 274ms
46:	learn: 26.1828993	total: 237ms	remaining: 267ms
47:	learn: 26.0233709	total: 240ms	remaining: 260ms
48:	learn: 25.9300399	total: 244ms	remaining: 254ms
49:	learn: 25.5861489	total: 248ms	remaining: 248ms
50:	learn: 25.4322012	total: 252ms	remaining: 242ms
51:	learn: 25.1595644	total: 257ms	remaining: 237ms
52:	learn: 24.9955303	total: 261ms	remaining: 232ms
53:	learn: 24.7273966	total: 266ms	remaining: 226ms
54:	learn: 24.5747978	total: 270ms	remaining: 221ms
55:	learn: 24.3807977	total: 275ms	remaining: 216ms
56:	learn: 24.1689569	total: 280ms	remaining: 211ms
57:	learn: 23.9898221	total: 284ms	remaining: 205ms
58:	learn: 23.7566414	total: 288ms	remaining: 200ms
59:	learn: 23.6641165	total: 292ms	remaining: 195ms
60:	learn: 23.5658066	total: 296ms	remaining: 190ms
61:	learn: 23.4338851	total: 301ms	remaining: 184ms
62:	learn: 23.2408837	total: 305ms	remaining: 179ms
63:	learn: 23.0642038	total: 311ms	remaining: 175ms
64:	learn: 22.9032045	total: 319ms	remaining: 172ms
65:	learn: 22.7736138	total: 326ms	remaining: 168ms
66:	learn: 22.6836443	total: 333ms	remaining: 164ms
67:	learn: 22.5983654	total: 339ms	remaining: 159ms
68:	learn: 22.4419813	total: 345ms	remaining: 155ms
69:	learn: 22.2863339	total: 350ms	remaining: 150ms
70:	learn: 22.1792943	total: 355ms	remaining: 145ms
71:	learn: 22.1130574	total: 360ms	remaining: 140ms
72:	learn: 21.9858161	total: 365ms	remaining: 135ms
73:	learn: 21.8577784	total: 370ms	remaining: 130ms
74:	learn: 21.7845222	total: 375ms	remaining: 125ms
75:	learn: 21.6831390	total: 391ms	remaining: 123ms
76:	learn: 21.6292521	total: 395ms	remaining: 118ms
77:	learn: 21.5789330	total: 401ms	remaining: 113ms
78:	learn: 21.5420942	total: 406ms	remaining: 108ms
79:	learn: 21.4280939	total: 410ms	remaining: 103ms
80:	learn: 21.3641165	total: 415ms	remaining: 97.3ms
81:	learn: 21.2734814	total: 419ms	remaining: 91.9ms
82:	learn: 21.2220323	total: 423ms	remaining: 86.6ms
83:	learn: 21.0625792	total: 427ms	remaining: 81.2ms
84:	learn: 20.9488320	total: 431ms	remaining: 76ms
85:	learn: 20.8504255	total: 434ms	remaining: 70.7ms
86:	learn: 20.7848510	total: 439ms	remaining: 65.5ms
87:	learn: 20.7247442	total: 442ms	remaining: 60.3ms
88:	learn: 20.5698590	total: 446ms	remaining: 55.1ms
89:	learn: 20.4067620	total: 450ms	remaining: 50ms
90:	learn: 20.3062482	total: 454ms	remaining: 44.9ms
91:	learn: 20.2029696	total: 458ms	remaining: 39.9ms
92:	learn: 20.1384849	total: 462ms	remaining: 34.8ms
93:	learn: 20.0260709	total: 467ms	remaining: 29.8ms
94:	learn: 19.9122100	total: 470ms	remaining: 24.8ms
95:	learn: 19.8648487	total: 475ms	remaining: 19.8ms
96:	learn: 19.8207072	total: 478ms	remaining: 14.8ms
97:	learn: 19.7261189	total: 483ms	remaining: 9.85ms
98:	learn: 19.7042438	total: 487ms	remaining: 4.92ms
99:	learn: 19.6546645	total: 492ms	remaining: 0us
0:	learn: 47.0239288	total: 5.74ms	remaining: 569ms
1:	learn: 46.2253829	total: 11ms	remaining: 541ms
2:	learn: 45.5580301	total: 16.5ms	remaining: 533ms
3:	learn: 44.7273237	total: 21.6ms	remaining: 518ms
4:	learn: 43.8867421	total: 26.4ms	remaining: 502ms
5:	learn: 43.3615911	total: 31.4ms	remaining: 493ms
6:	learn: 42.8548390	total: 36.5ms	remaining: 485ms
7:	learn: 42.1606758	total: 41.9ms	remaining: 482ms
8:	learn: 41.6625870	total: 47ms	remaining: 475ms
9:	learn: 40.9497092	total: 52.2ms	remaining: 470ms
10:	learn: 40.1886318	total: 56.7ms	remaining: 459ms
11:	learn: 39.7456423	total: 61.2ms	remaining: 449ms
12:	learn: 39.1171373	total: 65.7ms	remaining: 440ms
13:	learn: 38.5451069	total: 70.5ms	remaining: 433ms
14:	learn: 38.0155834	total: 75.7ms	remaining: 429ms
15:	learn: 37.5631354	total: 81.2ms	remaining: 426ms
16:	learn: 37.1030023	total: 86ms	remaining: 420ms
17:	learn: 36.4563029	total: 89.9ms	remaining: 410ms
18:	learn: 36.0160976	total: 94ms	remaining: 401ms
19:	learn: 35.5079827	total: 98.4ms	remaining: 394ms
20:	learn: 35.2111885	total: 103ms	remaining: 386ms
21:	learn: 34.9397465	total: 107ms	remaining: 378ms
22:	learn: 34.5270048	total: 111ms	remaining: 371ms
23:	learn: 34.0169260	total: 115ms	remaining: 366ms
24:	learn: 33.7454892	total: 120ms	remaining: 359ms
25:	learn: 33.2648157	total: 124ms	remaining: 353ms
26:	learn: 32.8899427	total: 128ms	remaining: 345ms
27:	learn: 32.6185050	total: 132ms	remaining: 339ms
28:	learn: 32.3528531	total: 136ms	remaining: 332ms
29:	learn: 32.0859923	total: 140ms	remaining: 326ms
30:	learn: 31.6511144	total: 144ms	remaining: 321ms
31:	learn: 31.2571765	total: 149ms	remaining: 317ms
32:	learn: 30.9770049	total: 153ms	remaining: 311ms
33:	learn: 30.6084872	total: 158ms	remaining: 306ms
34:	learn: 30.3448632	total: 162ms	remaining: 301ms
35:	learn: 30.0360942	total: 167ms	remaining: 297ms
36:	learn: 29.6648968	total: 171ms	remaining: 291ms
37:	learn: 29.3165114	total: 177ms	remaining: 289ms
38:	learn: 29.0829198	total: 184ms	remaining: 288ms
39:	learn: 28.7752064	total: 191ms	remaining: 287ms
40:	learn: 28.3622191	total: 199ms	remaining: 286ms
41:	learn: 28.1346631	total: 206ms	remaining: 284ms
42:	learn: 27.9585719	total: 211ms	remaining: 280ms
43:	learn: 27.6565566	total: 216ms	remaining: 275ms
44:	learn: 27.3616172	total: 222ms	remaining: 271ms
45:	learn: 27.0658637	total: 226ms	remaining: 266ms
46:	learn: 26.8660382	total: 232ms	remaining: 262ms
47:	learn: 26.6536078	total: 237ms	remaining: 257ms
48:	learn: 26.3524440	total: 242ms	remaining: 252ms
49:	learn: 26.1595277	total: 247ms	remaining: 247ms
50:	learn: 25.9273523	total: 252ms	remaining: 243ms
51:	learn: 25.7195580	total: 258ms	remaining: 238ms
52:	learn: 25.5730225	total: 263ms	remaining: 234ms
53:	learn: 25.3455276	total: 268ms	remaining: 229ms
54:	learn: 25.2289675	total: 273ms	remaining: 223ms
55:	learn: 25.0133024	total: 279ms	remaining: 219ms
56:	learn: 24.8406714	total: 284ms	remaining: 214ms
57:	learn: 24.6367857	total: 289ms	remaining: 209ms
58:	learn: 24.5338177	total: 292ms	remaining: 203ms
59:	learn: 24.3799964	total: 296ms	remaining: 197ms
60:	learn: 24.1447492	total: 300ms	remaining: 192ms
61:	learn: 23.9880495	total: 304ms	remaining: 186ms
62:	learn: 23.7140630	total: 308ms	remaining: 181ms
63:	learn: 23.5003791	total: 312ms	remaining: 175ms
64:	learn: 23.3207645	total: 316ms	remaining: 170ms
65:	learn: 23.1958356	total: 320ms	remaining: 165ms
66:	learn: 23.0471302	total: 324ms	remaining: 160ms
67:	learn: 22.8977183	total: 328ms	remaining: 154ms
68:	learn: 22.7187400	total: 333ms	remaining: 149ms
69:	learn: 22.6523405	total: 337ms	remaining: 144ms
70:	learn: 22.4767453	total: 341ms	remaining: 139ms
71:	learn: 22.3243677	total: 345ms	remaining: 134ms
72:	learn: 22.2133096	total: 350ms	remaining: 129ms
73:	learn: 22.1151713	total: 354ms	remaining: 125ms
74:	learn: 22.0296666	total: 359ms	remaining: 120ms
75:	learn: 21.9195980	total: 364ms	remaining: 115ms
76:	learn: 21.8401730	total: 369ms	remaining: 110ms
77:	learn: 21.8079797	total: 373ms	remaining: 105ms
78:	learn: 21.7274109	total: 378ms	remaining: 101ms
79:	learn: 21.6663032	total: 382ms	remaining: 95.6ms
80:	learn: 21.5633117	total: 390ms	remaining: 91.5ms
81:	learn: 21.4542467	total: 403ms	remaining: 88.4ms
82:	learn: 21.3177957	total: 409ms	remaining: 83.8ms
83:	learn: 21.1289167	total: 423ms	remaining: 80.5ms
84:	learn: 21.0297368	total: 428ms	remaining: 75.6ms
85:	learn: 20.9089564	total: 433ms	remaining: 70.6ms
86:	learn: 20.7653988	total: 439ms	remaining: 65.6ms
87:	learn: 20.6521894	total: 444ms	remaining: 60.6ms
88:	learn: 20.5193021	total: 449ms	remaining: 55.6ms
89:	learn: 20.4361620	total: 455ms	remaining: 50.5ms
90:	learn: 20.3546710	total: 460ms	remaining: 45.5ms
91:	learn: 20.2513296	total: 465ms	remaining: 40.5ms
92:	learn: 20.1605550	total: 471ms	remaining: 35.5ms
93:	learn: 20.0515942	total: 476ms	remaining: 30.4ms
94:	learn: 19.9800764	total: 482ms	remaining: 25.4ms
95:	learn: 19.8996532	total: 487ms	remaining: 20.3ms
96:	learn: 19.8450910	total: 492ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 497ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 501ms	remaining: 5.06ms
99:	learn: 19.6328825	total: 505ms	remaining: 0us
0:	learn: 27.5585353	total: 5.14ms	remaining: 509ms
1:	learn: 27.1656995	total: 10.4ms	remaining: 508ms
2:	learn: 26.8590175	total: 15.5ms	remaining: 501ms
3:	learn: 26.5818406	total: 20.4ms	remaining: 490ms
4:	learn: 26.1148663	total: 25.2ms	remaining: 479ms
5:	learn: 25.7690484	total: 33.1ms	remaining: 518ms
6:	learn: 25.3489206	total: 40.1ms	remaining: 533ms
7:	learn: 24.9542406	total: 48.3ms	remaining: 555ms
8:	learn: 24.6777517	total: 55.4ms	remaining: 561ms
9:	learn: 24.3242344	total: 63ms	remaining: 567ms
10:	learn: 24.0383073	total: 68.3ms	remaining: 553ms
11:	learn: 23.7383420	total: 74.1ms	remaining: 543ms
12:	learn: 23.3461670	total: 79.1ms	remaining: 529ms
13:	learn: 23.0928636	total: 84.5ms	remaining: 519ms
14:	learn: 22.8770414	total: 89.8ms	remaining: 509ms
15:	learn: 22.6323214	total: 95.1ms	remaining: 499ms
16:	learn: 22.3597072	total: 101ms	remaining: 491ms
17:	learn: 22.1079813	total: 106ms	remaining: 482ms
18:	learn: 21.8421199	total: 111ms	remaining: 473ms
19:	learn: 21.6576508	total: 116ms	remaining: 465ms
20:	learn: 21.4301268	total: 121ms	remaining: 455ms
21:	learn: 21.2287388	total: 126ms	remaining: 447ms
22:	learn: 21.0553872	total: 132ms	remaining: 440ms
23:	learn: 20.8977091	total: 137ms	remaining: 433ms
24:	learn: 20.6619051	total: 141ms	remaining: 422ms
25:	learn: 20.5040955	total: 145ms	remaining: 412ms
26:	learn: 20.3181195	total: 149ms	remaining: 402ms
27:	learn: 20.0869436	total: 153ms	remaining: 393ms
28:	learn: 19.9375985	total: 157ms	remaining: 384ms
29:	learn: 19.8247516	total: 161ms	remaining: 375ms
30:	learn: 19.6261697	total: 165ms	remaining: 367ms
31:	learn: 19.4547236	total: 169ms	remaining: 359ms
32:	learn: 19.3157092	total: 173ms	remaining: 351ms
33:	learn: 19.1561419	total: 177ms	remaining: 344ms
34:	learn: 19.0453620	total: 182ms	remaining: 338ms
35:	learn: 18.8738574	total: 187ms	remaining: 333ms
36:	learn: 18.7072907	total: 192ms	remaining: 327ms
37:	learn: 18.5877943	total: 196ms	remaining: 320ms
38:	learn: 18.4436380	total: 201ms	remaining: 314ms
39:	learn: 18.3463356	total: 205ms	remaining: 308ms
40:	learn: 18.2008059	total: 209ms	remaining: 301ms
41:	learn: 18.0582079	total: 213ms	remaining: 295ms
42:	learn: 17.8891982	total: 217ms	remaining: 288ms
43:	learn: 17.7332246	total: 222ms	remaining: 282ms
44:	learn: 17.6206421	total: 227ms	remaining: 277ms
45:	learn: 17.4982800	total: 231ms	remaining: 272ms
46:	learn: 17.3970150	total: 236ms	remaining: 266ms
47:	learn: 17.3058203	total: 241ms	remaining: 261ms
48:	learn: 17.1789256	total: 246ms	remaining: 256ms
49:	learn: 17.0916229	total: 250ms	remaining: 250ms
50:	learn: 16.9859820	total: 255ms	remaining: 245ms
51:	learn: 16.8995582	total: 261ms	remaining: 241ms
52:	learn: 16.8137014	total: 268ms	remaining: 238ms
53:	learn: 16.7021451	total: 277ms	remaining: 236ms
54:	learn: 16.5895582	total: 284ms	remaining: 232ms
55:	learn: 16.5015639	total: 291ms	remaining: 229ms
56:	learn: 16.4356637	total: 297ms	remaining: 224ms
57:	learn: 16.3514525	total: 302ms	remaining: 219ms
58:	learn: 16.2401369	total: 307ms	remaining: 213ms
59:	learn: 16.1293223	total: 312ms	remaining: 208ms
60:	learn: 16.0271167	total: 318ms	remaining: 203ms
61:	learn: 15.9126257	total: 323ms	remaining: 198ms
62:	learn: 15.8391096	total: 328ms	remaining: 192ms
63:	learn: 15.7441773	total: 342ms	remaining: 192ms
64:	learn: 15.6885195	total: 347ms	remaining: 187ms
65:	learn: 15.6052039	total: 352ms	remaining: 181ms
66:	learn: 15.5074202	total: 357ms	remaining: 176ms
67:	learn: 15.4054338	total: 362ms	remaining: 170ms
68:	learn: 15.2885714	total: 366ms	remaining: 164ms
69:	learn: 15.2157472	total: 370ms	remaining: 159ms
70:	learn: 15.1031554	total: 374ms	remaining: 153ms
71:	learn: 15.0237470	total: 378ms	remaining: 147ms
72:	learn: 14.9756825	total: 382ms	remaining: 141ms
73:	learn: 14.8840596	total: 386ms	remaining: 136ms
74:	learn: 14.8077061	total: 390ms	remaining: 130ms
75:	learn: 14.7444437	total: 394ms	remaining: 124ms
76:	learn: 14.6751720	total: 398ms	remaining: 119ms
77:	learn: 14.5830333	total: 402ms	remaining: 113ms
78:	learn: 14.5241206	total: 406ms	remaining: 108ms
79:	learn: 14.4892731	total: 410ms	remaining: 103ms
80:	learn: 14.4256605	total: 414ms	remaining: 97.2ms
81:	learn: 14.3666860	total: 419ms	remaining: 92ms
82:	learn: 14.2938372	total: 423ms	remaining: 86.7ms
83:	learn: 14.2161532	total: 428ms	remaining: 81.5ms
84:	learn: 14.1582910	total: 433ms	remaining: 76.4ms
85:	learn: 14.1029153	total: 437ms	remaining: 71.2ms
86:	learn: 14.0475835	total: 441ms	remaining: 66ms
87:	learn: 13.9892661	total: 446ms	remaining: 60.8ms
88:	learn: 13.9481628	total: 451ms	remaining: 55.7ms
89:	learn: 13.8483991	total: 457ms	remaining: 50.8ms
90:	learn: 13.7775614	total: 464ms	remaining: 45.9ms
91:	learn: 13.7304585	total: 472ms	remaining: 41ms
92:	learn: 13.6783381	total: 479ms	remaining: 36.1ms
93:	learn: 13.6356964	total: 487ms	remaining: 31.1ms
94:	learn: 13.5924371	total: 492ms	remaining: 25.9ms
95:	learn: 13.5400746	total: 497ms	remaining: 20.7ms
96:	learn: 13.4897333	total: 502ms	remaining: 15.5ms
97:	learn: 13.4470321	total: 507ms	remaining: 10.4ms
98:	learn: 13.3856082	total: 513ms	remaining: 5.18ms
99:	learn: 13.3082371	total: 518ms	remaining: 0us
0:	learn: 43.0395283	total: 4.43ms	remaining: 439ms
1:	learn: 42.1130223	total: 8.52ms	remaining: 418ms
2:	learn: 41.1753409	total: 12.3ms	remaining: 399ms
3:	learn: 40.3637444	total: 16.1ms	remaining: 388ms
4:	learn: 39.6508088	total: 20.1ms	remaining: 381ms
5:	learn: 38.7217934	total: 24.3ms	remaining: 380ms
6:	learn: 37.8538055	total: 28.4ms	remaining: 378ms
7:	learn: 36.9793574	total: 32.2ms	remaining: 370ms
8:	learn: 36.3076984	total: 36.4ms	remaining: 369ms
9:	learn: 35.6673160	total: 40.5ms	remaining: 364ms
10:	learn: 34.8889800	total: 44.8ms	remaining: 363ms
11:	learn: 34.1675517	total: 48.7ms	remaining: 357ms
12:	learn: 33.6779564	total: 53.2ms	remaining: 356ms
13:	learn: 33.0710039	total: 57.7ms	remaining: 355ms
14:	learn: 32.4966674	total: 62.3ms	remaining: 353ms
15:	learn: 31.9492856	total: 66.7ms	remaining: 350ms
16:	learn: 31.5108129	total: 72ms	remaining: 351ms
17:	learn: 30.9804023	total: 76.9ms	remaining: 350ms
18:	learn: 30.4169089	total: 82.1ms	remaining: 350ms
19:	learn: 29.8930375	total: 87.1ms	remaining: 349ms
20:	learn: 29.3974421	total: 92.9ms	remaining: 349ms
21:	learn: 28.8792307	total: 102ms	remaining: 360ms
22:	learn: 28.3894474	total: 111ms	remaining: 371ms
23:	learn: 27.9921276	total: 119ms	remaining: 376ms
24:	learn: 27.6158887	total: 127ms	remaining: 381ms
25:	learn: 27.2866950	total: 133ms	remaining: 378ms
26:	learn: 26.8770708	total: 138ms	remaining: 373ms
27:	learn: 26.6233005	total: 143ms	remaining: 368ms
28:	learn: 26.2921934	total: 148ms	remaining: 363ms
29:	learn: 25.9156920	total: 153ms	remaining: 358ms
30:	learn: 25.5311106	total: 156ms	remaining: 346ms
31:	learn: 25.2178997	total: 161ms	remaining: 342ms
32:	learn: 24.8572196	total: 167ms	remaining: 338ms
33:	learn: 24.5849710	total: 172ms	remaining: 334ms
34:	learn: 24.2209190	total: 178ms	remaining: 330ms
35:	learn: 23.8708250	total: 183ms	remaining: 325ms
36:	learn: 23.5325279	total: 189ms	remaining: 321ms
37:	learn: 23.2116148	total: 195ms	remaining: 318ms
38:	learn: 22.9696787	total: 200ms	remaining: 312ms
39:	learn: 22.7936783	total: 204ms	remaining: 306ms
40:	learn: 22.6228847	total: 209ms	remaining: 300ms
41:	learn: 22.3691527	total: 213ms	remaining: 295ms
42:	learn: 22.1002173	total: 218ms	remaining: 289ms
43:	learn: 21.9157268	total: 224ms	remaining: 284ms
44:	learn: 21.7229102	total: 229ms	remaining: 280ms
45:	learn: 21.4642005	total: 235ms	remaining: 276ms
46:	learn: 21.3029442	total: 241ms	remaining: 271ms
47:	learn: 21.1469792	total: 246ms	remaining: 267ms
48:	learn: 20.9458235	total: 252ms	remaining: 262ms
49:	learn: 20.7335242	total: 257ms	remaining: 257ms
50:	learn: 20.5440269	total: 262ms	remaining: 252ms
51:	learn: 20.3661449	total: 267ms	remaining: 247ms
52:	learn: 20.2158134	total: 272ms	remaining: 241ms
53:	learn: 19.9934873	total: 277ms	remaining: 236ms
54:	learn: 19.7879739	total: 282ms	remaining: 231ms
55:	learn: 19.6630460	total: 287ms	remaining: 226ms
56:	learn: 19.5152729	total: 295ms	remaining: 223ms
57:	learn: 19.3581128	total: 302ms	remaining: 219ms
58:	learn: 19.2209303	total: 312ms	remaining: 217ms
59:	learn: 19.0965248	total: 319ms	remaining: 213ms
60:	learn: 19.0035954	total: 325ms	remaining: 208ms
61:	learn: 18.8554149	total: 330ms	remaining: 202ms
62:	learn: 18.7095427	total: 335ms	remaining: 197ms
63:	learn: 18.5751494	total: 341ms	remaining: 192ms
64:	learn: 18.4678251	total: 346ms	remaining: 186ms
65:	learn: 18.3500325	total: 351ms	remaining: 181ms
66:	learn: 18.2088983	total: 356ms	remaining: 176ms
67:	learn: 18.0737705	total: 362ms	remaining: 170ms
68:	learn: 17.9325058	total: 367ms	remaining: 165ms
69:	learn: 17.8003911	total: 372ms	remaining: 160ms
70:	learn: 17.7385366	total: 377ms	remaining: 154ms
71:	learn: 17.6106998	total: 382ms	remaining: 148ms
72:	learn: 17.4816270	total: 388ms	remaining: 143ms
73:	learn: 17.4025554	total: 393ms	remaining: 138ms
74:	learn: 17.2902108	total: 398ms	remaining: 133ms
75:	learn: 17.2158048	total: 402ms	remaining: 127ms
76:	learn: 17.1261053	total: 406ms	remaining: 121ms
77:	learn: 17.0308917	total: 411ms	remaining: 116ms
78:	learn: 16.9546705	total: 416ms	remaining: 111ms
79:	learn: 16.8319165	total: 420ms	remaining: 105ms
80:	learn: 16.7687017	total: 426ms	remaining: 99.8ms
81:	learn: 16.6972326	total: 430ms	remaining: 94.4ms
82:	learn: 16.6124580	total: 435ms	remaining: 89.1ms
83:	learn: 16.4999052	total: 440ms	remaining: 83.7ms
84:	learn: 16.4302484	total: 444ms	remaining: 78.3ms
85:	learn: 16.3201363	total: 448ms	remaining: 73ms
86:	learn: 16.2534314	total: 453ms	remaining: 67.7ms
87:	learn: 16.1720485	total: 458ms	remaining: 62.4ms
88:	learn: 16.0625751	total: 462ms	remaining: 57.1ms
89:	learn: 15.9135088	total: 467ms	remaining: 51.9ms
90:	learn: 15.8658863	total: 471ms	remaining: 46.6ms
91:	learn: 15.8066805	total: 476ms	remaining: 41.4ms
92:	learn: 15.7412103	total: 481ms	remaining: 36.2ms
93:	learn: 15.6542776	total: 486ms	remaining: 31ms
94:	learn: 15.5760334	total: 494ms	remaining: 26ms
95:	learn: 15.5434131	total: 501ms	remaining: 20.9ms
96:	learn: 15.4709561	total: 509ms	remaining: 15.7ms
97:	learn: 15.4449618	total: 515ms	remaining: 10.5ms
98:	learn: 15.3752761	total: 522ms	remaining: 5.27ms
99:	learn: 15.3106595	total: 528ms	remaining: 0us
0:	learn: 46.7142257	total: 5.12ms	remaining: 507ms
1:	learn: 45.7634153	total: 9.79ms	remaining: 479ms
2:	learn: 45.0054253	total: 14.9ms	remaining: 480ms
3:	learn: 44.2120432	total: 20.5ms	remaining: 492ms
4:	learn: 43.3960472	total: 25ms	remaining: 476ms
5:	learn: 42.8588120	total: 29.4ms	remaining: 461ms
6:	learn: 41.9533701	total: 33.4ms	remaining: 444ms
7:	learn: 41.2745030	total: 37.4ms	remaining: 431ms
8:	learn: 40.6797495	total: 41.4ms	remaining: 419ms
9:	learn: 39.9899571	total: 45.4ms	remaining: 408ms
10:	learn: 39.4682100	total: 49.3ms	remaining: 399ms
11:	learn: 39.0305595	total: 53.5ms	remaining: 393ms
12:	learn: 38.4200417	total: 57.4ms	remaining: 384ms
13:	learn: 37.8425194	total: 61.5ms	remaining: 378ms
14:	learn: 37.4203127	total: 65.6ms	remaining: 372ms
15:	learn: 36.9917688	total: 70.1ms	remaining: 368ms
16:	learn: 36.5544138	total: 74.4ms	remaining: 363ms
17:	learn: 36.0727019	total: 78.6ms	remaining: 358ms
18:	learn: 35.4835715	total: 82.6ms	remaining: 352ms
19:	learn: 34.9865654	total: 87.3ms	remaining: 349ms
20:	learn: 34.6063373	total: 92.1ms	remaining: 346ms
21:	learn: 34.0997289	total: 96.9ms	remaining: 343ms
22:	learn: 33.7313171	total: 101ms	remaining: 340ms
23:	learn: 33.3582000	total: 106ms	remaining: 337ms
24:	learn: 32.9432456	total: 111ms	remaining: 333ms
25:	learn: 32.5220888	total: 116ms	remaining: 329ms
26:	learn: 32.2172292	total: 120ms	remaining: 326ms
27:	learn: 31.8972904	total: 128ms	remaining: 329ms
28:	learn: 31.6405350	total: 136ms	remaining: 333ms
29:	learn: 31.4167702	total: 144ms	remaining: 337ms
30:	learn: 30.8541961	total: 147ms	remaining: 328ms
31:	learn: 30.5572111	total: 155ms	remaining: 330ms
32:	learn: 30.1700399	total: 161ms	remaining: 327ms
33:	learn: 29.8537271	total: 166ms	remaining: 323ms
34:	learn: 29.6192540	total: 172ms	remaining: 319ms
35:	learn: 29.3276362	total: 178ms	remaining: 316ms
36:	learn: 28.9985179	total: 183ms	remaining: 311ms
37:	learn: 28.7046880	total: 188ms	remaining: 307ms
38:	learn: 28.4412677	total: 193ms	remaining: 302ms
39:	learn: 28.1277292	total: 198ms	remaining: 298ms
40:	learn: 27.9000750	total: 203ms	remaining: 292ms
41:	learn: 27.5433162	total: 207ms	remaining: 287ms
42:	learn: 27.2493285	total: 212ms	remaining: 281ms
43:	learn: 26.9576632	total: 214ms	remaining: 272ms
44:	learn: 26.6177110	total: 218ms	remaining: 267ms
45:	learn: 26.2812456	total: 223ms	remaining: 261ms
46:	learn: 26.0803859	total: 240ms	remaining: 271ms
47:	learn: 25.9543581	total: 244ms	remaining: 265ms
48:	learn: 25.7951582	total: 248ms	remaining: 259ms
49:	learn: 25.6548184	total: 252ms	remaining: 252ms
50:	learn: 25.4010843	total: 257ms	remaining: 247ms
51:	learn: 24.9773937	total: 261ms	remaining: 241ms
52:	learn: 24.8026156	total: 266ms	remaining: 236ms
53:	learn: 24.5568053	total: 270ms	remaining: 230ms
54:	learn: 24.2281839	total: 274ms	remaining: 224ms
55:	learn: 23.9202795	total: 279ms	remaining: 219ms
56:	learn: 23.7625591	total: 283ms	remaining: 214ms
57:	learn: 23.5429721	total: 288ms	remaining: 208ms
58:	learn: 23.3175893	total: 292ms	remaining: 203ms
59:	learn: 23.2035130	total: 297ms	remaining: 198ms
60:	learn: 23.0232450	total: 301ms	remaining: 192ms
61:	learn: 22.8384958	total: 305ms	remaining: 187ms
62:	learn: 22.6499902	total: 310ms	remaining: 182ms
63:	learn: 22.4577426	total: 315ms	remaining: 177ms
64:	learn: 22.3333158	total: 319ms	remaining: 172ms
65:	learn: 22.2064131	total: 325ms	remaining: 167ms
66:	learn: 22.1434971	total: 332ms	remaining: 164ms
67:	learn: 21.9596519	total: 340ms	remaining: 160ms
68:	learn: 21.8475576	total: 348ms	remaining: 156ms
69:	learn: 21.6954745	total: 355ms	remaining: 152ms
70:	learn: 21.5635976	total: 360ms	remaining: 147ms
71:	learn: 21.4588506	total: 365ms	remaining: 142ms
72:	learn: 21.3527268	total: 371ms	remaining: 137ms
73:	learn: 21.2661288	total: 376ms	remaining: 132ms
74:	learn: 21.1817333	total: 381ms	remaining: 127ms
75:	learn: 21.0527553	total: 387ms	remaining: 122ms
76:	learn: 20.9229021	total: 392ms	remaining: 117ms
77:	learn: 20.7563946	total: 397ms	remaining: 112ms
78:	learn: 20.6569831	total: 402ms	remaining: 107ms
79:	learn: 20.4982663	total: 407ms	remaining: 102ms
80:	learn: 20.3185460	total: 412ms	remaining: 96.6ms
81:	learn: 20.2096241	total: 417ms	remaining: 91.5ms
82:	learn: 20.1274891	total: 422ms	remaining: 86.4ms
83:	learn: 20.0740139	total: 428ms	remaining: 81.4ms
84:	learn: 19.9630699	total: 432ms	remaining: 76.2ms
85:	learn: 19.8753899	total: 436ms	remaining: 71.1ms
86:	learn: 19.6563612	total: 441ms	remaining: 65.8ms
87:	learn: 19.4680232	total: 444ms	remaining: 60.6ms
88:	learn: 19.3503431	total: 448ms	remaining: 55.4ms
89:	learn: 19.2221379	total: 453ms	remaining: 50.3ms
90:	learn: 19.0732542	total: 457ms	remaining: 45.2ms
91:	learn: 18.9825190	total: 461ms	remaining: 40.1ms
92:	learn: 18.8839009	total: 465ms	remaining: 35ms
93:	learn: 18.8012219	total: 469ms	remaining: 30ms
94:	learn: 18.7172713	total: 473ms	remaining: 24.9ms
95:	learn: 18.6201170	total: 477ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 482ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 486ms	remaining: 9.92ms
98:	learn: 18.3289700	total: 490ms	remaining: 4.95ms
99:	learn: 18.2227333	total: 508ms	remaining: 0us
0:	learn: 46.3764524	total: 5.79ms	remaining: 573ms
1:	learn: 45.5561269	total: 10.8ms	remaining: 530ms
2:	learn: 44.8811245	total: 15.9ms	remaining: 515ms
3:	learn: 44.0788617	total: 20.8ms	remaining: 498ms
4:	learn: 43.3619790	total: 26ms	remaining: 494ms
5:	learn: 42.6912112	total: 31.1ms	remaining: 487ms
6:	learn: 42.2292118	total: 36.2ms	remaining: 481ms
7:	learn: 41.7725191	total: 42ms	remaining: 483ms
8:	learn: 41.1676614	total: 47.5ms	remaining: 480ms
9:	learn: 40.5771076	total: 52.5ms	remaining: 473ms
10:	learn: 39.8343757	total: 57.6ms	remaining: 466ms
11:	learn: 39.3761142	total: 63.1ms	remaining: 462ms
12:	learn: 38.5254692	total: 68.5ms	remaining: 459ms
13:	learn: 37.9629555	total: 72.7ms	remaining: 446ms
14:	learn: 37.4418438	total: 77.3ms	remaining: 438ms
15:	learn: 37.0507283	total: 81.7ms	remaining: 429ms
16:	learn: 36.6264217	total: 86.2ms	remaining: 421ms
17:	learn: 36.1114940	total: 90.9ms	remaining: 414ms
18:	learn: 35.7193862	total: 94.9ms	remaining: 404ms
19:	learn: 35.3301177	total: 99.2ms	remaining: 397ms
20:	learn: 35.0598280	total: 104ms	remaining: 390ms
21:	learn: 34.5469736	total: 108ms	remaining: 382ms
22:	learn: 34.2064215	total: 112ms	remaining: 374ms
23:	learn: 33.7280710	total: 116ms	remaining: 366ms
24:	learn: 33.3282940	total: 120ms	remaining: 361ms
25:	learn: 32.8478961	total: 125ms	remaining: 354ms
26:	learn: 32.5722164	total: 129ms	remaining: 348ms
27:	learn: 32.2457019	total: 133ms	remaining: 341ms
28:	learn: 31.9230495	total: 137ms	remaining: 336ms
29:	learn: 31.4311611	total: 141ms	remaining: 329ms
30:	learn: 30.9179052	total: 145ms	remaining: 324ms
31:	learn: 30.6201141	total: 150ms	remaining: 319ms
32:	learn: 30.3421106	total: 155ms	remaining: 314ms
33:	learn: 29.9885373	total: 159ms	remaining: 309ms
34:	learn: 29.7462780	total: 164ms	remaining: 304ms
35:	learn: 29.3607153	total: 168ms	remaining: 299ms
36:	learn: 29.1793078	total: 173ms	remaining: 294ms
37:	learn: 28.9276538	total: 177ms	remaining: 289ms
38:	learn: 28.6903934	total: 182ms	remaining: 284ms
39:	learn: 28.2095033	total: 188ms	remaining: 282ms
40:	learn: 27.7990608	total: 195ms	remaining: 280ms
41:	learn: 27.5406632	total: 202ms	remaining: 279ms
42:	learn: 27.2575376	total: 209ms	remaining: 278ms
43:	learn: 26.9741707	total: 217ms	remaining: 277ms
44:	learn: 26.6606899	total: 222ms	remaining: 272ms
45:	learn: 26.4015833	total: 228ms	remaining: 267ms
46:	learn: 26.1828993	total: 233ms	remaining: 263ms
47:	learn: 26.0233709	total: 236ms	remaining: 255ms
48:	learn: 25.9300399	total: 241ms	remaining: 251ms
49:	learn: 25.5861489	total: 246ms	remaining: 246ms
50:	learn: 25.4322012	total: 251ms	remaining: 241ms
51:	learn: 25.1595644	total: 257ms	remaining: 237ms
52:	learn: 24.9955303	total: 264ms	remaining: 234ms
53:	learn: 24.7273966	total: 269ms	remaining: 229ms
54:	learn: 24.5747978	total: 273ms	remaining: 224ms
55:	learn: 24.3807977	total: 278ms	remaining: 219ms
56:	learn: 24.1689569	total: 283ms	remaining: 214ms
57:	learn: 23.9898221	total: 288ms	remaining: 208ms
58:	learn: 23.7566414	total: 292ms	remaining: 203ms
59:	learn: 23.6641165	total: 296ms	remaining: 198ms
60:	learn: 23.5658066	total: 302ms	remaining: 193ms
61:	learn: 23.4338851	total: 307ms	remaining: 188ms
62:	learn: 23.2408837	total: 311ms	remaining: 183ms
63:	learn: 23.0642038	total: 315ms	remaining: 177ms
64:	learn: 22.9032045	total: 319ms	remaining: 172ms
65:	learn: 22.7736138	total: 323ms	remaining: 166ms
66:	learn: 22.6836443	total: 327ms	remaining: 161ms
67:	learn: 22.5983654	total: 331ms	remaining: 156ms
68:	learn: 22.4419813	total: 335ms	remaining: 151ms
69:	learn: 22.2863339	total: 339ms	remaining: 145ms
70:	learn: 22.1792943	total: 343ms	remaining: 140ms
71:	learn: 22.1130574	total: 348ms	remaining: 135ms
72:	learn: 21.9858161	total: 352ms	remaining: 130ms
73:	learn: 21.8577784	total: 356ms	remaining: 125ms
74:	learn: 21.7845222	total: 361ms	remaining: 120ms
75:	learn: 21.6831390	total: 366ms	remaining: 116ms
76:	learn: 21.6292521	total: 370ms	remaining: 111ms
77:	learn: 21.5789330	total: 375ms	remaining: 106ms
78:	learn: 21.5420942	total: 379ms	remaining: 101ms
79:	learn: 21.4280939	total: 384ms	remaining: 96ms
80:	learn: 21.3641165	total: 392ms	remaining: 91.9ms
81:	learn: 21.2734814	total: 400ms	remaining: 87.7ms
82:	learn: 21.2220323	total: 410ms	remaining: 84ms
83:	learn: 21.0625792	total: 418ms	remaining: 79.7ms
84:	learn: 20.9488320	total: 424ms	remaining: 74.8ms
85:	learn: 20.8504255	total: 429ms	remaining: 69.8ms
86:	learn: 20.7848510	total: 434ms	remaining: 64.9ms
87:	learn: 20.7247442	total: 440ms	remaining: 59.9ms
88:	learn: 20.5698590	total: 444ms	remaining: 54.9ms
89:	learn: 20.4067620	total: 449ms	remaining: 49.9ms
90:	learn: 20.3062482	total: 455ms	remaining: 45ms
91:	learn: 20.2029696	total: 459ms	remaining: 40ms
92:	learn: 20.1384849	total: 465ms	remaining: 35ms
93:	learn: 20.0260709	total: 470ms	remaining: 30ms
94:	learn: 19.9122100	total: 475ms	remaining: 25ms
95:	learn: 19.8648487	total: 480ms	remaining: 20ms
96:	learn: 19.8207072	total: 485ms	remaining: 15ms
97:	learn: 19.7261189	total: 490ms	remaining: 10ms
98:	learn: 19.7042438	total: 494ms	remaining: 4.99ms
99:	learn: 19.6546645	total: 498ms	remaining: 0us
0:	learn: 47.0239288	total: 4.17ms	remaining: 413ms
1:	learn: 46.2253829	total: 8.26ms	remaining: 405ms
2:	learn: 45.5580301	total: 12.3ms	remaining: 399ms
3:	learn: 44.7273237	total: 17ms	remaining: 407ms
4:	learn: 43.8867421	total: 21.5ms	remaining: 409ms
5:	learn: 43.3615911	total: 26.3ms	remaining: 413ms
6:	learn: 42.8548390	total: 30.9ms	remaining: 410ms
7:	learn: 42.1606758	total: 35.3ms	remaining: 406ms
8:	learn: 41.6625870	total: 39.9ms	remaining: 403ms
9:	learn: 40.9497092	total: 44.7ms	remaining: 402ms
10:	learn: 40.1886318	total: 49.3ms	remaining: 399ms
11:	learn: 39.7456423	total: 57ms	remaining: 418ms
12:	learn: 39.1171373	total: 64.5ms	remaining: 432ms
13:	learn: 38.5451069	total: 73.4ms	remaining: 451ms
14:	learn: 38.0155834	total: 79.5ms	remaining: 451ms
15:	learn: 37.5631354	total: 85.9ms	remaining: 451ms
16:	learn: 37.1030023	total: 90.7ms	remaining: 443ms
17:	learn: 36.4563029	total: 96.1ms	remaining: 438ms
18:	learn: 36.0160976	total: 101ms	remaining: 432ms
19:	learn: 35.5079827	total: 106ms	remaining: 426ms
20:	learn: 35.2111885	total: 112ms	remaining: 420ms
21:	learn: 34.9397465	total: 117ms	remaining: 414ms
22:	learn: 34.5270048	total: 122ms	remaining: 408ms
23:	learn: 34.0169260	total: 127ms	remaining: 402ms
24:	learn: 33.7454892	total: 132ms	remaining: 396ms
25:	learn: 33.2648157	total: 137ms	remaining: 390ms
26:	learn: 32.8899427	total: 142ms	remaining: 383ms
27:	learn: 32.6185050	total: 147ms	remaining: 379ms
28:	learn: 32.3528531	total: 153ms	remaining: 375ms
29:	learn: 32.0859923	total: 158ms	remaining: 368ms
30:	learn: 31.6511144	total: 162ms	remaining: 360ms
31:	learn: 31.2571765	total: 166ms	remaining: 353ms
32:	learn: 30.9770049	total: 170ms	remaining: 345ms
33:	learn: 30.6084872	total: 174ms	remaining: 338ms
34:	learn: 30.3448632	total: 178ms	remaining: 330ms
35:	learn: 30.0360942	total: 182ms	remaining: 324ms
36:	learn: 29.6648968	total: 186ms	remaining: 317ms
37:	learn: 29.3165114	total: 190ms	remaining: 310ms
38:	learn: 29.0829198	total: 194ms	remaining: 304ms
39:	learn: 28.7752064	total: 198ms	remaining: 297ms
40:	learn: 28.3622191	total: 202ms	remaining: 291ms
41:	learn: 28.1346631	total: 206ms	remaining: 285ms
42:	learn: 27.9585719	total: 211ms	remaining: 279ms
43:	learn: 27.6565566	total: 215ms	remaining: 273ms
44:	learn: 27.3616172	total: 219ms	remaining: 268ms
45:	learn: 27.0658637	total: 223ms	remaining: 262ms
46:	learn: 26.8660382	total: 227ms	remaining: 256ms
47:	learn: 26.6536078	total: 232ms	remaining: 251ms
48:	learn: 26.3524440	total: 237ms	remaining: 247ms
49:	learn: 26.1595277	total: 241ms	remaining: 241ms
50:	learn: 25.9273523	total: 246ms	remaining: 236ms
51:	learn: 25.7195580	total: 250ms	remaining: 231ms
52:	learn: 25.5730225	total: 255ms	remaining: 226ms
53:	learn: 25.3455276	total: 259ms	remaining: 221ms
54:	learn: 25.2289675	total: 267ms	remaining: 218ms
55:	learn: 25.0133024	total: 275ms	remaining: 216ms
56:	learn: 24.8406714	total: 283ms	remaining: 214ms
57:	learn: 24.6367857	total: 290ms	remaining: 210ms
58:	learn: 24.5338177	total: 297ms	remaining: 206ms
59:	learn: 24.3799964	total: 302ms	remaining: 202ms
60:	learn: 24.1447492	total: 316ms	remaining: 202ms
61:	learn: 23.9880495	total: 321ms	remaining: 197ms
62:	learn: 23.7140630	total: 326ms	remaining: 192ms
63:	learn: 23.5003791	total: 331ms	remaining: 186ms
64:	learn: 23.3207645	total: 337ms	remaining: 181ms
65:	learn: 23.1958356	total: 342ms	remaining: 176ms
66:	learn: 23.0471302	total: 347ms	remaining: 171ms
67:	learn: 22.8977183	total: 352ms	remaining: 166ms
68:	learn: 22.7187400	total: 358ms	remaining: 161ms
69:	learn: 22.6523405	total: 364ms	remaining: 156ms
70:	learn: 22.4767453	total: 368ms	remaining: 150ms
71:	learn: 22.3243677	total: 372ms	remaining: 145ms
72:	learn: 22.2133096	total: 376ms	remaining: 139ms
73:	learn: 22.1151713	total: 380ms	remaining: 134ms
74:	learn: 22.0296666	total: 384ms	remaining: 128ms
75:	learn: 21.9195980	total: 388ms	remaining: 123ms
76:	learn: 21.8401730	total: 393ms	remaining: 117ms
77:	learn: 21.8079797	total: 397ms	remaining: 112ms
78:	learn: 21.7274109	total: 401ms	remaining: 106ms
79:	learn: 21.6663032	total: 404ms	remaining: 101ms
80:	learn: 21.5633117	total: 408ms	remaining: 95.8ms
81:	learn: 21.4542467	total: 412ms	remaining: 90.5ms
82:	learn: 21.3177957	total: 417ms	remaining: 85.3ms
83:	learn: 21.1289167	total: 421ms	remaining: 80.2ms
84:	learn: 21.0297368	total: 426ms	remaining: 75.1ms
85:	learn: 20.9089564	total: 430ms	remaining: 70.1ms
86:	learn: 20.7653988	total: 435ms	remaining: 65ms
87:	learn: 20.6521894	total: 440ms	remaining: 60ms
88:	learn: 20.5193021	total: 444ms	remaining: 54.9ms
89:	learn: 20.4361620	total: 448ms	remaining: 49.8ms
90:	learn: 20.3546710	total: 453ms	remaining: 44.8ms
91:	learn: 20.2513296	total: 457ms	remaining: 39.8ms
92:	learn: 20.1605550	total: 465ms	remaining: 35ms
93:	learn: 20.0515942	total: 474ms	remaining: 30.3ms
94:	learn: 19.9800764	total: 483ms	remaining: 25.4ms
95:	learn: 19.8996532	total: 489ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 495ms	remaining: 15.3ms
97:	learn: 19.7887346	total: 501ms	remaining: 10.2ms
98:	learn: 19.7230872	total: 506ms	remaining: 5.11ms
99:	learn: 19.6328825	total: 511ms	remaining: 0us
0:	learn: 27.5585353	total: 5.64ms	remaining: 558ms
1:	learn: 27.1656995	total: 9.97ms	remaining: 489ms
2:	learn: 26.8590175	total: 14.1ms	remaining: 455ms
3:	learn: 26.5818406	total: 18.5ms	remaining: 444ms
4:	learn: 26.1148663	total: 22.7ms	remaining: 432ms
5:	learn: 25.7690484	total: 26.7ms	remaining: 419ms
6:	learn: 25.3489206	total: 31ms	remaining: 412ms
7:	learn: 24.9542406	total: 35.4ms	remaining: 407ms
8:	learn: 24.6777517	total: 39.8ms	remaining: 403ms
9:	learn: 24.3242344	total: 44.3ms	remaining: 399ms
10:	learn: 24.0383073	total: 48.3ms	remaining: 391ms
11:	learn: 23.7383420	total: 52.6ms	remaining: 386ms
12:	learn: 23.3461670	total: 56.8ms	remaining: 380ms
13:	learn: 23.0928636	total: 61.5ms	remaining: 378ms
14:	learn: 22.8770414	total: 66ms	remaining: 374ms
15:	learn: 22.6323214	total: 70.2ms	remaining: 368ms
16:	learn: 22.3597072	total: 74.6ms	remaining: 364ms
17:	learn: 22.1079813	total: 79.1ms	remaining: 360ms
18:	learn: 21.8421199	total: 84ms	remaining: 358ms
19:	learn: 21.6576508	total: 88.3ms	remaining: 353ms
20:	learn: 21.4301268	total: 92.7ms	remaining: 349ms
21:	learn: 21.2287388	total: 97.5ms	remaining: 346ms
22:	learn: 21.0553872	total: 102ms	remaining: 341ms
23:	learn: 20.8977091	total: 106ms	remaining: 336ms
24:	learn: 20.6619051	total: 111ms	remaining: 332ms
25:	learn: 20.5040955	total: 117ms	remaining: 332ms
26:	learn: 20.3181195	total: 125ms	remaining: 338ms
27:	learn: 20.0869436	total: 133ms	remaining: 341ms
28:	learn: 19.9375985	total: 140ms	remaining: 342ms
29:	learn: 19.8247516	total: 148ms	remaining: 345ms
30:	learn: 19.6261697	total: 153ms	remaining: 341ms
31:	learn: 19.4547236	total: 159ms	remaining: 337ms
32:	learn: 19.3157092	total: 164ms	remaining: 333ms
33:	learn: 19.1561419	total: 169ms	remaining: 329ms
34:	learn: 19.0453620	total: 175ms	remaining: 325ms
35:	learn: 18.8738574	total: 180ms	remaining: 320ms
36:	learn: 18.7072907	total: 185ms	remaining: 315ms
37:	learn: 18.5877943	total: 190ms	remaining: 310ms
38:	learn: 18.4436380	total: 195ms	remaining: 306ms
39:	learn: 18.3463356	total: 201ms	remaining: 301ms
40:	learn: 18.2008059	total: 206ms	remaining: 296ms
41:	learn: 18.0582079	total: 211ms	remaining: 291ms
42:	learn: 17.8891982	total: 217ms	remaining: 287ms
43:	learn: 17.7332246	total: 222ms	remaining: 283ms
44:	learn: 17.6206421	total: 226ms	remaining: 277ms
45:	learn: 17.4982800	total: 231ms	remaining: 271ms
46:	learn: 17.3970150	total: 235ms	remaining: 265ms
47:	learn: 17.3058203	total: 240ms	remaining: 259ms
48:	learn: 17.1789256	total: 244ms	remaining: 254ms
49:	learn: 17.0916229	total: 249ms	remaining: 249ms
50:	learn: 16.9859820	total: 254ms	remaining: 244ms
51:	learn: 16.8995582	total: 258ms	remaining: 238ms
52:	learn: 16.8137014	total: 263ms	remaining: 233ms
53:	learn: 16.7021451	total: 267ms	remaining: 228ms
54:	learn: 16.5895582	total: 272ms	remaining: 222ms
55:	learn: 16.5015639	total: 276ms	remaining: 217ms
56:	learn: 16.4356637	total: 281ms	remaining: 212ms
57:	learn: 16.3514525	total: 286ms	remaining: 207ms
58:	learn: 16.2401369	total: 291ms	remaining: 202ms
59:	learn: 16.1293223	total: 295ms	remaining: 197ms
60:	learn: 16.0271167	total: 300ms	remaining: 192ms
61:	learn: 15.9126257	total: 305ms	remaining: 187ms
62:	learn: 15.8391096	total: 310ms	remaining: 182ms
63:	learn: 15.7441773	total: 315ms	remaining: 177ms
64:	learn: 15.6885195	total: 325ms	remaining: 175ms
65:	learn: 15.6052039	total: 338ms	remaining: 174ms
66:	learn: 15.5074202	total: 345ms	remaining: 170ms
67:	learn: 15.4054338	total: 352ms	remaining: 166ms
68:	learn: 15.2885714	total: 359ms	remaining: 161ms
69:	learn: 15.2157472	total: 368ms	remaining: 158ms
70:	learn: 15.1031554	total: 374ms	remaining: 153ms
71:	learn: 15.0237470	total: 380ms	remaining: 148ms
72:	learn: 14.9756825	total: 386ms	remaining: 143ms
73:	learn: 14.8840596	total: 391ms	remaining: 137ms
74:	learn: 14.8077061	total: 397ms	remaining: 132ms
75:	learn: 14.7444437	total: 402ms	remaining: 127ms
76:	learn: 14.6751720	total: 410ms	remaining: 123ms
77:	learn: 14.5830333	total: 416ms	remaining: 117ms
78:	learn: 14.5241206	total: 422ms	remaining: 112ms
79:	learn: 14.4892731	total: 426ms	remaining: 107ms
80:	learn: 14.4256605	total: 431ms	remaining: 101ms
81:	learn: 14.3666860	total: 435ms	remaining: 95.5ms
82:	learn: 14.2938372	total: 440ms	remaining: 90ms
83:	learn: 14.2161532	total: 444ms	remaining: 84.6ms
84:	learn: 14.1582910	total: 449ms	remaining: 79.2ms
85:	learn: 14.1029153	total: 453ms	remaining: 73.8ms
86:	learn: 14.0475835	total: 458ms	remaining: 68.4ms
87:	learn: 13.9892661	total: 462ms	remaining: 63ms
88:	learn: 13.9481628	total: 467ms	remaining: 57.7ms
89:	learn: 13.8483991	total: 471ms	remaining: 52.3ms
90:	learn: 13.7775614	total: 475ms	remaining: 47ms
91:	learn: 13.7304585	total: 486ms	remaining: 42.3ms
92:	learn: 13.6783381	total: 491ms	remaining: 36.9ms
93:	learn: 13.6356964	total: 495ms	remaining: 31.6ms
94:	learn: 13.5924371	total: 500ms	remaining: 26.3ms
95:	learn: 13.5400746	total: 504ms	remaining: 21ms
96:	learn: 13.4897333	total: 508ms	remaining: 15.7ms
97:	learn: 13.4470321	total: 513ms	remaining: 10.5ms
98:	learn: 13.3856082	total: 517ms	remaining: 5.23ms
99:	learn: 13.3082371	total: 522ms	remaining: 0us
0:	learn: 43.0395283	total: 5.74ms	remaining: 569ms
1:	learn: 42.1130223	total: 11.1ms	remaining: 544ms
2:	learn: 41.1753409	total: 16.4ms	remaining: 529ms
3:	learn: 40.3637444	total: 21.6ms	remaining: 518ms
4:	learn: 39.6508088	total: 27ms	remaining: 513ms
5:	learn: 38.7217934	total: 31.9ms	remaining: 499ms
6:	learn: 37.8538055	total: 37.3ms	remaining: 496ms
7:	learn: 36.9793574	total: 42.9ms	remaining: 493ms
8:	learn: 36.3076984	total: 48.1ms	remaining: 487ms
9:	learn: 35.6673160	total: 52.7ms	remaining: 474ms
10:	learn: 34.8889800	total: 56.8ms	remaining: 459ms
11:	learn: 34.1675517	total: 60.7ms	remaining: 445ms
12:	learn: 33.6779564	total: 65ms	remaining: 435ms
13:	learn: 33.0710039	total: 68.9ms	remaining: 423ms
14:	learn: 32.4966674	total: 72.8ms	remaining: 413ms
15:	learn: 31.9492856	total: 76.8ms	remaining: 403ms
16:	learn: 31.5108129	total: 81.2ms	remaining: 396ms
17:	learn: 30.9804023	total: 85.5ms	remaining: 390ms
18:	learn: 30.4169089	total: 89.1ms	remaining: 380ms
19:	learn: 29.8930375	total: 92.7ms	remaining: 371ms
20:	learn: 29.3974421	total: 97.2ms	remaining: 366ms
21:	learn: 28.8792307	total: 102ms	remaining: 360ms
22:	learn: 28.3894474	total: 105ms	remaining: 353ms
23:	learn: 27.9921276	total: 109ms	remaining: 346ms
24:	learn: 27.6158887	total: 114ms	remaining: 341ms
25:	learn: 27.2866950	total: 119ms	remaining: 338ms
26:	learn: 26.8770708	total: 123ms	remaining: 333ms
27:	learn: 26.6233005	total: 128ms	remaining: 329ms
28:	learn: 26.2921934	total: 133ms	remaining: 325ms
29:	learn: 25.9156920	total: 137ms	remaining: 321ms
30:	learn: 25.5311106	total: 139ms	remaining: 310ms
31:	learn: 25.2178997	total: 144ms	remaining: 307ms
32:	learn: 24.8572196	total: 149ms	remaining: 303ms
33:	learn: 24.5849710	total: 158ms	remaining: 306ms
34:	learn: 24.2209190	total: 165ms	remaining: 307ms
35:	learn: 23.8708250	total: 174ms	remaining: 309ms
36:	learn: 23.5325279	total: 181ms	remaining: 308ms
37:	learn: 23.2116148	total: 187ms	remaining: 306ms
38:	learn: 22.9696787	total: 193ms	remaining: 302ms
39:	learn: 22.7936783	total: 198ms	remaining: 297ms
40:	learn: 22.6228847	total: 203ms	remaining: 292ms
41:	learn: 22.3691527	total: 208ms	remaining: 287ms
42:	learn: 22.1002173	total: 213ms	remaining: 283ms
43:	learn: 21.9157268	total: 219ms	remaining: 278ms
44:	learn: 21.7229102	total: 223ms	remaining: 273ms
45:	learn: 21.4642005	total: 228ms	remaining: 268ms
46:	learn: 21.3029442	total: 233ms	remaining: 263ms
47:	learn: 21.1469792	total: 239ms	remaining: 258ms
48:	learn: 20.9458235	total: 243ms	remaining: 253ms
49:	learn: 20.7335242	total: 249ms	remaining: 249ms
50:	learn: 20.5440269	total: 254ms	remaining: 244ms
51:	learn: 20.3661449	total: 258ms	remaining: 239ms
52:	learn: 20.2158134	total: 262ms	remaining: 233ms
53:	learn: 19.9934873	total: 267ms	remaining: 227ms
54:	learn: 19.7879739	total: 271ms	remaining: 222ms
55:	learn: 19.6630460	total: 275ms	remaining: 216ms
56:	learn: 19.5152729	total: 279ms	remaining: 210ms
57:	learn: 19.3581128	total: 283ms	remaining: 205ms
58:	learn: 19.2209303	total: 287ms	remaining: 199ms
59:	learn: 19.0965248	total: 291ms	remaining: 194ms
60:	learn: 19.0035954	total: 296ms	remaining: 189ms
61:	learn: 18.8554149	total: 300ms	remaining: 184ms
62:	learn: 18.7095427	total: 304ms	remaining: 178ms
63:	learn: 18.5751494	total: 308ms	remaining: 173ms
64:	learn: 18.4678251	total: 313ms	remaining: 168ms
65:	learn: 18.3500325	total: 317ms	remaining: 163ms
66:	learn: 18.2088983	total: 322ms	remaining: 159ms
67:	learn: 18.0737705	total: 327ms	remaining: 154ms
68:	learn: 17.9325058	total: 331ms	remaining: 149ms
69:	learn: 17.8003911	total: 336ms	remaining: 144ms
70:	learn: 17.7385366	total: 340ms	remaining: 139ms
71:	learn: 17.6106998	total: 345ms	remaining: 134ms
72:	learn: 17.4816270	total: 352ms	remaining: 130ms
73:	learn: 17.4025554	total: 361ms	remaining: 127ms
74:	learn: 17.2902108	total: 370ms	remaining: 123ms
75:	learn: 17.2158048	total: 376ms	remaining: 119ms
76:	learn: 17.1261053	total: 383ms	remaining: 114ms
77:	learn: 17.0308917	total: 388ms	remaining: 109ms
78:	learn: 16.9546705	total: 393ms	remaining: 105ms
79:	learn: 16.8319165	total: 399ms	remaining: 99.6ms
80:	learn: 16.7687017	total: 404ms	remaining: 94.7ms
81:	learn: 16.6972326	total: 409ms	remaining: 89.8ms
82:	learn: 16.6124580	total: 414ms	remaining: 84.8ms
83:	learn: 16.4999052	total: 419ms	remaining: 79.9ms
84:	learn: 16.4302484	total: 424ms	remaining: 74.9ms
85:	learn: 16.3201363	total: 430ms	remaining: 70ms
86:	learn: 16.2534314	total: 435ms	remaining: 65ms
87:	learn: 16.1720485	total: 440ms	remaining: 59.9ms
88:	learn: 16.0625751	total: 445ms	remaining: 55ms
89:	learn: 15.9135088	total: 451ms	remaining: 50.1ms
90:	learn: 15.8658863	total: 455ms	remaining: 45ms
91:	learn: 15.8066805	total: 460ms	remaining: 40ms
92:	learn: 15.7412103	total: 464ms	remaining: 35ms
93:	learn: 15.6542776	total: 469ms	remaining: 29.9ms
94:	learn: 15.5760334	total: 473ms	remaining: 24.9ms
95:	learn: 15.5434131	total: 478ms	remaining: 19.9ms
96:	learn: 15.4709561	total: 482ms	remaining: 14.9ms
97:	learn: 15.4449618	total: 486ms	remaining: 9.92ms
98:	learn: 15.3752761	total: 490ms	remaining: 4.95ms
99:	learn: 15.3106595	total: 495ms	remaining: 0us
0:	learn: 46.7142257	total: 10.5ms	remaining: 1.04s
1:	learn: 45.7634153	total: 19.5ms	remaining: 957ms
2:	learn: 45.0054253	total: 27.8ms	remaining: 898ms
3:	learn: 44.2120432	total: 36.4ms	remaining: 874ms
4:	learn: 43.3960472	total: 41.8ms	remaining: 794ms
5:	learn: 42.8588120	total: 47.8ms	remaining: 750ms
6:	learn: 41.9533701	total: 52.9ms	remaining: 703ms
7:	learn: 41.2745030	total: 58.2ms	remaining: 669ms
8:	learn: 40.6797495	total: 63.4ms	remaining: 641ms
9:	learn: 39.9899571	total: 68.6ms	remaining: 618ms
10:	learn: 39.4682100	total: 74.1ms	remaining: 600ms
11:	learn: 39.0305595	total: 79.4ms	remaining: 582ms
12:	learn: 38.4200417	total: 84.6ms	remaining: 566ms
13:	learn: 37.8425194	total: 89.6ms	remaining: 550ms
14:	learn: 37.4203127	total: 94.5ms	remaining: 535ms
15:	learn: 36.9917688	total: 99ms	remaining: 520ms
16:	learn: 36.5544138	total: 104ms	remaining: 510ms
17:	learn: 36.0727019	total: 110ms	remaining: 501ms
18:	learn: 35.4835715	total: 114ms	remaining: 488ms
19:	learn: 34.9865654	total: 119ms	remaining: 474ms
20:	learn: 34.6063373	total: 123ms	remaining: 461ms
21:	learn: 34.0997289	total: 127ms	remaining: 449ms
22:	learn: 33.7313171	total: 131ms	remaining: 437ms
23:	learn: 33.3582000	total: 135ms	remaining: 426ms
24:	learn: 32.9432456	total: 139ms	remaining: 416ms
25:	learn: 32.5220888	total: 143ms	remaining: 406ms
26:	learn: 32.2172292	total: 147ms	remaining: 396ms
27:	learn: 31.8972904	total: 151ms	remaining: 388ms
28:	learn: 31.6405350	total: 155ms	remaining: 379ms
29:	learn: 31.4167702	total: 159ms	remaining: 371ms
30:	learn: 30.8541961	total: 161ms	remaining: 358ms
31:	learn: 30.5572111	total: 165ms	remaining: 350ms
32:	learn: 30.1700399	total: 170ms	remaining: 344ms
33:	learn: 29.8537271	total: 174ms	remaining: 337ms
34:	learn: 29.6192540	total: 178ms	remaining: 331ms
35:	learn: 29.3276362	total: 183ms	remaining: 325ms
36:	learn: 28.9985179	total: 188ms	remaining: 320ms
37:	learn: 28.7046880	total: 192ms	remaining: 314ms
38:	learn: 28.4412677	total: 197ms	remaining: 308ms
39:	learn: 28.1277292	total: 201ms	remaining: 302ms
40:	learn: 27.9000750	total: 206ms	remaining: 297ms
41:	learn: 27.5433162	total: 211ms	remaining: 291ms
42:	learn: 27.2493285	total: 215ms	remaining: 285ms
43:	learn: 26.9576632	total: 217ms	remaining: 276ms
44:	learn: 26.6177110	total: 224ms	remaining: 273ms
45:	learn: 26.2812456	total: 231ms	remaining: 271ms
46:	learn: 26.0803859	total: 240ms	remaining: 270ms
47:	learn: 25.9543581	total: 246ms	remaining: 266ms
48:	learn: 25.7951582	total: 253ms	remaining: 264ms
49:	learn: 25.6548184	total: 259ms	remaining: 259ms
50:	learn: 25.4010843	total: 264ms	remaining: 254ms
51:	learn: 24.9773937	total: 269ms	remaining: 248ms
52:	learn: 24.8026156	total: 275ms	remaining: 244ms
53:	learn: 24.5568053	total: 280ms	remaining: 239ms
54:	learn: 24.2281839	total: 286ms	remaining: 234ms
55:	learn: 23.9202795	total: 291ms	remaining: 229ms
56:	learn: 23.7625591	total: 296ms	remaining: 224ms
57:	learn: 23.5429721	total: 301ms	remaining: 218ms
58:	learn: 23.3175893	total: 306ms	remaining: 213ms
59:	learn: 23.2035130	total: 311ms	remaining: 207ms
60:	learn: 23.0232450	total: 315ms	remaining: 202ms
61:	learn: 22.8384958	total: 321ms	remaining: 197ms
62:	learn: 22.6499902	total: 326ms	remaining: 192ms
63:	learn: 22.4577426	total: 331ms	remaining: 186ms
64:	learn: 22.3333158	total: 335ms	remaining: 180ms
65:	learn: 22.2064131	total: 339ms	remaining: 175ms
66:	learn: 22.1434971	total: 343ms	remaining: 169ms
67:	learn: 21.9596519	total: 347ms	remaining: 163ms
68:	learn: 21.8475576	total: 351ms	remaining: 158ms
69:	learn: 21.6954745	total: 356ms	remaining: 152ms
70:	learn: 21.5635976	total: 360ms	remaining: 147ms
71:	learn: 21.4588506	total: 364ms	remaining: 141ms
72:	learn: 21.3527268	total: 368ms	remaining: 136ms
73:	learn: 21.2661288	total: 372ms	remaining: 131ms
74:	learn: 21.1817333	total: 376ms	remaining: 125ms
75:	learn: 21.0527553	total: 380ms	remaining: 120ms
76:	learn: 20.9229021	total: 384ms	remaining: 115ms
77:	learn: 20.7563946	total: 388ms	remaining: 109ms
78:	learn: 20.6569831	total: 393ms	remaining: 104ms
79:	learn: 20.4982663	total: 397ms	remaining: 99.3ms
80:	learn: 20.3185460	total: 402ms	remaining: 94.2ms
81:	learn: 20.2096241	total: 406ms	remaining: 89.2ms
82:	learn: 20.1274891	total: 411ms	remaining: 84.1ms
83:	learn: 20.0740139	total: 415ms	remaining: 79.1ms
84:	learn: 19.9630699	total: 420ms	remaining: 74.1ms
85:	learn: 19.8753899	total: 424ms	remaining: 69.1ms
86:	learn: 19.6563612	total: 430ms	remaining: 64.2ms
87:	learn: 19.4680232	total: 438ms	remaining: 59.7ms
88:	learn: 19.3503431	total: 445ms	remaining: 55.1ms
89:	learn: 19.2221379	total: 454ms	remaining: 50.5ms
90:	learn: 19.0732542	total: 461ms	remaining: 45.6ms
91:	learn: 18.9825190	total: 467ms	remaining: 40.6ms
92:	learn: 18.8839009	total: 473ms	remaining: 35.6ms
93:	learn: 18.8012219	total: 478ms	remaining: 30.5ms
94:	learn: 18.7172713	total: 483ms	remaining: 25.4ms
95:	learn: 18.6201170	total: 488ms	remaining: 20.3ms
96:	learn: 18.5318611	total: 493ms	remaining: 15.3ms
97:	learn: 18.3833356	total: 499ms	remaining: 10.2ms
98:	learn: 18.3289700	total: 504ms	remaining: 5.09ms
99:	learn: 18.2227333	total: 509ms	remaining: 0us
0:	learn: 46.3764524	total: 4.36ms	remaining: 431ms
1:	learn: 45.5561269	total: 8.27ms	remaining: 405ms
2:	learn: 44.8811245	total: 12.4ms	remaining: 402ms
3:	learn: 44.0788617	total: 16.6ms	remaining: 398ms
4:	learn: 43.3619790	total: 20.6ms	remaining: 392ms
5:	learn: 42.6912112	total: 24.6ms	remaining: 386ms
6:	learn: 42.2292118	total: 28.7ms	remaining: 382ms
7:	learn: 41.7725191	total: 32.7ms	remaining: 376ms
8:	learn: 41.1676614	total: 36.6ms	remaining: 370ms
9:	learn: 40.5771076	total: 41ms	remaining: 369ms
10:	learn: 39.8343757	total: 45.6ms	remaining: 369ms
11:	learn: 39.3761142	total: 50ms	remaining: 367ms
12:	learn: 38.5254692	total: 55ms	remaining: 368ms
13:	learn: 37.9629555	total: 59.5ms	remaining: 366ms
14:	learn: 37.4418438	total: 63.8ms	remaining: 362ms
15:	learn: 37.0507283	total: 68.1ms	remaining: 358ms
16:	learn: 36.6264217	total: 72.4ms	remaining: 354ms
17:	learn: 36.1114940	total: 77.1ms	remaining: 351ms
18:	learn: 35.7193862	total: 85.5ms	remaining: 364ms
19:	learn: 35.3301177	total: 93.6ms	remaining: 374ms
20:	learn: 35.0598280	total: 102ms	remaining: 384ms
21:	learn: 34.5469736	total: 108ms	remaining: 384ms
22:	learn: 34.2064215	total: 114ms	remaining: 382ms
23:	learn: 33.7280710	total: 119ms	remaining: 378ms
24:	learn: 33.3282940	total: 124ms	remaining: 373ms
25:	learn: 32.8478961	total: 129ms	remaining: 368ms
26:	learn: 32.5722164	total: 135ms	remaining: 364ms
27:	learn: 32.2457019	total: 140ms	remaining: 360ms
28:	learn: 31.9230495	total: 145ms	remaining: 355ms
29:	learn: 31.4311611	total: 150ms	remaining: 350ms
30:	learn: 30.9179052	total: 155ms	remaining: 345ms
31:	learn: 30.6201141	total: 160ms	remaining: 341ms
32:	learn: 30.3421106	total: 165ms	remaining: 336ms
33:	learn: 29.9885373	total: 170ms	remaining: 330ms
34:	learn: 29.7462780	total: 175ms	remaining: 325ms
35:	learn: 29.3607153	total: 181ms	remaining: 321ms
36:	learn: 29.1793078	total: 185ms	remaining: 316ms
37:	learn: 28.9276538	total: 189ms	remaining: 309ms
38:	learn: 28.6903934	total: 194ms	remaining: 303ms
39:	learn: 28.2095033	total: 198ms	remaining: 297ms
40:	learn: 27.7990608	total: 202ms	remaining: 290ms
41:	learn: 27.5406632	total: 206ms	remaining: 284ms
42:	learn: 27.2575376	total: 210ms	remaining: 279ms
43:	learn: 26.9741707	total: 214ms	remaining: 273ms
44:	learn: 26.6606899	total: 218ms	remaining: 267ms
45:	learn: 26.4015833	total: 223ms	remaining: 261ms
46:	learn: 26.1828993	total: 227ms	remaining: 256ms
47:	learn: 26.0233709	total: 230ms	remaining: 249ms
48:	learn: 25.9300399	total: 234ms	remaining: 244ms
49:	learn: 25.5861489	total: 238ms	remaining: 238ms
50:	learn: 25.4322012	total: 243ms	remaining: 234ms
51:	learn: 25.1595644	total: 248ms	remaining: 229ms
52:	learn: 24.9955303	total: 252ms	remaining: 224ms
53:	learn: 24.7273966	total: 257ms	remaining: 219ms
54:	learn: 24.5747978	total: 261ms	remaining: 214ms
55:	learn: 24.3807977	total: 266ms	remaining: 209ms
56:	learn: 24.1689569	total: 271ms	remaining: 205ms
57:	learn: 23.9898221	total: 276ms	remaining: 200ms
58:	learn: 23.7566414	total: 284ms	remaining: 197ms
59:	learn: 23.6641165	total: 291ms	remaining: 194ms
60:	learn: 23.5658066	total: 299ms	remaining: 191ms
61:	learn: 23.4338851	total: 304ms	remaining: 186ms
62:	learn: 23.2408837	total: 309ms	remaining: 182ms
63:	learn: 23.0642038	total: 314ms	remaining: 177ms
64:	learn: 22.9032045	total: 319ms	remaining: 172ms
65:	learn: 22.7736138	total: 324ms	remaining: 167ms
66:	learn: 22.6836443	total: 329ms	remaining: 162ms
67:	learn: 22.5983654	total: 334ms	remaining: 157ms
68:	learn: 22.4419813	total: 339ms	remaining: 153ms
69:	learn: 22.2863339	total: 344ms	remaining: 148ms
70:	learn: 22.1792943	total: 349ms	remaining: 143ms
71:	learn: 22.1130574	total: 354ms	remaining: 138ms
72:	learn: 21.9858161	total: 359ms	remaining: 133ms
73:	learn: 21.8577784	total: 365ms	remaining: 128ms
74:	learn: 21.7845222	total: 370ms	remaining: 123ms
75:	learn: 21.6831390	total: 375ms	remaining: 118ms
76:	learn: 21.6292521	total: 379ms	remaining: 113ms
77:	learn: 21.5789330	total: 384ms	remaining: 108ms
78:	learn: 21.5420942	total: 388ms	remaining: 103ms
79:	learn: 21.4280939	total: 392ms	remaining: 98ms
80:	learn: 21.3641165	total: 396ms	remaining: 92.9ms
81:	learn: 21.2734814	total: 400ms	remaining: 87.8ms
82:	learn: 21.2220323	total: 405ms	remaining: 82.9ms
83:	learn: 21.0625792	total: 409ms	remaining: 77.9ms
84:	learn: 20.9488320	total: 413ms	remaining: 72.9ms
85:	learn: 20.8504255	total: 418ms	remaining: 68.1ms
86:	learn: 20.7848510	total: 423ms	remaining: 63.2ms
87:	learn: 20.7247442	total: 428ms	remaining: 58.3ms
88:	learn: 20.5698590	total: 433ms	remaining: 53.5ms
89:	learn: 20.4067620	total: 438ms	remaining: 48.6ms
90:	learn: 20.3062482	total: 443ms	remaining: 43.8ms
91:	learn: 20.2029696	total: 448ms	remaining: 38.9ms
92:	learn: 20.1384849	total: 453ms	remaining: 34.1ms
93:	learn: 20.0260709	total: 457ms	remaining: 29.2ms
94:	learn: 19.9122100	total: 462ms	remaining: 24.3ms
95:	learn: 19.8648487	total: 467ms	remaining: 19.4ms
96:	learn: 19.8207072	total: 475ms	remaining: 14.7ms
97:	learn: 19.7261189	total: 482ms	remaining: 9.84ms
98:	learn: 19.7042438	total: 490ms	remaining: 4.95ms
99:	learn: 19.6546645	total: 497ms	remaining: 0us
0:	learn: 47.0239288	total: 5.18ms	remaining: 512ms
1:	learn: 46.2253829	total: 10.3ms	remaining: 504ms
2:	learn: 45.5580301	total: 15.5ms	remaining: 503ms
3:	learn: 44.7273237	total: 20.9ms	remaining: 502ms
4:	learn: 43.8867421	total: 24.9ms	remaining: 474ms
5:	learn: 43.3615911	total: 29.1ms	remaining: 455ms
6:	learn: 42.8548390	total: 33ms	remaining: 439ms
7:	learn: 42.1606758	total: 37.3ms	remaining: 429ms
8:	learn: 41.6625870	total: 41.3ms	remaining: 417ms
9:	learn: 40.9497092	total: 45.3ms	remaining: 408ms
10:	learn: 40.1886318	total: 49.1ms	remaining: 397ms
11:	learn: 39.7456423	total: 53.1ms	remaining: 390ms
12:	learn: 39.1171373	total: 57ms	remaining: 381ms
13:	learn: 38.5451069	total: 61.4ms	remaining: 377ms
14:	learn: 38.0155834	total: 65.5ms	remaining: 371ms
15:	learn: 37.5631354	total: 69.5ms	remaining: 365ms
16:	learn: 37.1030023	total: 73.4ms	remaining: 358ms
17:	learn: 36.4563029	total: 77.5ms	remaining: 353ms
18:	learn: 36.0160976	total: 81.5ms	remaining: 348ms
19:	learn: 35.5079827	total: 85.3ms	remaining: 341ms
20:	learn: 35.2111885	total: 89.7ms	remaining: 337ms
21:	learn: 34.9397465	total: 94.4ms	remaining: 335ms
22:	learn: 34.5270048	total: 98.8ms	remaining: 331ms
23:	learn: 34.0169260	total: 103ms	remaining: 326ms
24:	learn: 33.7454892	total: 107ms	remaining: 322ms
25:	learn: 33.2648157	total: 112ms	remaining: 319ms
26:	learn: 32.8899427	total: 116ms	remaining: 315ms
27:	learn: 32.6185050	total: 121ms	remaining: 311ms
28:	learn: 32.3528531	total: 125ms	remaining: 306ms
29:	learn: 32.0859923	total: 134ms	remaining: 313ms
30:	learn: 31.6511144	total: 142ms	remaining: 315ms
31:	learn: 31.2571765	total: 151ms	remaining: 321ms
32:	learn: 30.9770049	total: 159ms	remaining: 323ms
33:	learn: 30.6084872	total: 165ms	remaining: 319ms
34:	learn: 30.3448632	total: 170ms	remaining: 315ms
35:	learn: 30.0360942	total: 175ms	remaining: 311ms
36:	learn: 29.6648968	total: 181ms	remaining: 307ms
37:	learn: 29.3165114	total: 186ms	remaining: 304ms
38:	learn: 29.0829198	total: 191ms	remaining: 299ms
39:	learn: 28.7752064	total: 197ms	remaining: 295ms
40:	learn: 28.3622191	total: 202ms	remaining: 291ms
41:	learn: 28.1346631	total: 207ms	remaining: 286ms
42:	learn: 27.9585719	total: 212ms	remaining: 281ms
43:	learn: 27.6565566	total: 217ms	remaining: 276ms
44:	learn: 27.3616172	total: 222ms	remaining: 271ms
45:	learn: 27.0658637	total: 227ms	remaining: 266ms
46:	learn: 26.8660382	total: 231ms	remaining: 261ms
47:	learn: 26.6536078	total: 236ms	remaining: 256ms
48:	learn: 26.3524440	total: 240ms	remaining: 250ms
49:	learn: 26.1595277	total: 244ms	remaining: 244ms
50:	learn: 25.9273523	total: 249ms	remaining: 239ms
51:	learn: 25.7195580	total: 253ms	remaining: 234ms
52:	learn: 25.5730225	total: 258ms	remaining: 229ms
53:	learn: 25.3455276	total: 262ms	remaining: 223ms
54:	learn: 25.2289675	total: 266ms	remaining: 218ms
55:	learn: 25.0133024	total: 270ms	remaining: 212ms
56:	learn: 24.8406714	total: 274ms	remaining: 207ms
57:	learn: 24.6367857	total: 278ms	remaining: 201ms
58:	learn: 24.5338177	total: 282ms	remaining: 196ms
59:	learn: 24.3799964	total: 286ms	remaining: 191ms
60:	learn: 24.1447492	total: 290ms	remaining: 186ms
61:	learn: 23.9880495	total: 295ms	remaining: 181ms
62:	learn: 23.7140630	total: 299ms	remaining: 176ms
63:	learn: 23.5003791	total: 304ms	remaining: 171ms
64:	learn: 23.3207645	total: 308ms	remaining: 166ms
65:	learn: 23.1958356	total: 313ms	remaining: 161ms
66:	learn: 23.0471302	total: 317ms	remaining: 156ms
67:	learn: 22.8977183	total: 322ms	remaining: 151ms
68:	learn: 22.7187400	total: 326ms	remaining: 147ms
69:	learn: 22.6523405	total: 332ms	remaining: 142ms
70:	learn: 22.4767453	total: 340ms	remaining: 139ms
71:	learn: 22.3243677	total: 347ms	remaining: 135ms
72:	learn: 22.2133096	total: 357ms	remaining: 132ms
73:	learn: 22.1151713	total: 383ms	remaining: 135ms
74:	learn: 22.0296666	total: 389ms	remaining: 130ms
75:	learn: 21.9195980	total: 394ms	remaining: 125ms
76:	learn: 21.8401730	total: 400ms	remaining: 119ms
77:	learn: 21.8079797	total: 405ms	remaining: 114ms
78:	learn: 21.7274109	total: 411ms	remaining: 109ms
79:	learn: 21.6663032	total: 416ms	remaining: 104ms
80:	learn: 21.5633117	total: 421ms	remaining: 98.7ms
81:	learn: 21.4542467	total: 427ms	remaining: 93.7ms
82:	learn: 21.3177957	total: 432ms	remaining: 88.5ms
83:	learn: 21.1289167	total: 437ms	remaining: 83.2ms
84:	learn: 21.0297368	total: 442ms	remaining: 78ms
85:	learn: 20.9089564	total: 448ms	remaining: 72.9ms
86:	learn: 20.7653988	total: 452ms	remaining: 67.5ms
87:	learn: 20.6521894	total: 456ms	remaining: 62.2ms
88:	learn: 20.5193021	total: 461ms	remaining: 57ms
89:	learn: 20.4361620	total: 465ms	remaining: 51.6ms
90:	learn: 20.3546710	total: 468ms	remaining: 46.3ms
91:	learn: 20.2513296	total: 473ms	remaining: 41.1ms
92:	learn: 20.1605550	total: 476ms	remaining: 35.8ms
93:	learn: 20.0515942	total: 480ms	remaining: 30.7ms
94:	learn: 19.9800764	total: 484ms	remaining: 25.5ms
95:	learn: 19.8996532	total: 488ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 493ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 497ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 502ms	remaining: 5.07ms
99:	learn: 19.6328825	total: 506ms	remaining: 0us
0:	learn: 27.5585353	total: 5.8ms	remaining: 574ms
1:	learn: 27.1656995	total: 10.6ms	remaining: 518ms
2:	learn: 26.8590175	total: 15.4ms	remaining: 498ms
3:	learn: 26.5818406	total: 20.7ms	remaining: 498ms
4:	learn: 26.1148663	total: 25.5ms	remaining: 485ms
5:	learn: 25.7690484	total: 30.7ms	remaining: 481ms
6:	learn: 25.3489206	total: 35.9ms	remaining: 477ms
7:	learn: 24.9542406	total: 41.2ms	remaining: 473ms
8:	learn: 24.6777517	total: 46.4ms	remaining: 469ms
9:	learn: 24.3242344	total: 51.8ms	remaining: 466ms
10:	learn: 24.0383073	total: 56.5ms	remaining: 457ms
11:	learn: 23.7383420	total: 61.3ms	remaining: 450ms
12:	learn: 23.3461670	total: 66.4ms	remaining: 444ms
13:	learn: 23.0928636	total: 72ms	remaining: 442ms
14:	learn: 22.8770414	total: 76.9ms	remaining: 436ms
15:	learn: 22.6323214	total: 81.1ms	remaining: 426ms
16:	learn: 22.3597072	total: 85.4ms	remaining: 417ms
17:	learn: 22.1079813	total: 89.7ms	remaining: 409ms
18:	learn: 21.8421199	total: 93.8ms	remaining: 400ms
19:	learn: 21.6576508	total: 98ms	remaining: 392ms
20:	learn: 21.4301268	total: 102ms	remaining: 385ms
21:	learn: 21.2287388	total: 107ms	remaining: 378ms
22:	learn: 21.0553872	total: 111ms	remaining: 371ms
23:	learn: 20.8977091	total: 115ms	remaining: 364ms
24:	learn: 20.6619051	total: 119ms	remaining: 358ms
25:	learn: 20.5040955	total: 124ms	remaining: 353ms
26:	learn: 20.3181195	total: 128ms	remaining: 347ms
27:	learn: 20.0869436	total: 133ms	remaining: 342ms
28:	learn: 19.9375985	total: 137ms	remaining: 335ms
29:	learn: 19.8247516	total: 141ms	remaining: 330ms
30:	learn: 19.6261697	total: 145ms	remaining: 324ms
31:	learn: 19.4547236	total: 150ms	remaining: 318ms
32:	learn: 19.3157092	total: 154ms	remaining: 313ms
33:	learn: 19.1561419	total: 159ms	remaining: 309ms
34:	learn: 19.0453620	total: 164ms	remaining: 304ms
35:	learn: 18.8738574	total: 168ms	remaining: 299ms
36:	learn: 18.7072907	total: 173ms	remaining: 294ms
37:	learn: 18.5877943	total: 178ms	remaining: 290ms
38:	learn: 18.4436380	total: 182ms	remaining: 285ms
39:	learn: 18.3463356	total: 188ms	remaining: 281ms
40:	learn: 18.2008059	total: 195ms	remaining: 281ms
41:	learn: 18.0582079	total: 202ms	remaining: 280ms
42:	learn: 17.8891982	total: 210ms	remaining: 278ms
43:	learn: 17.7332246	total: 216ms	remaining: 275ms
44:	learn: 17.6206421	total: 222ms	remaining: 271ms
45:	learn: 17.4982800	total: 227ms	remaining: 266ms
46:	learn: 17.3970150	total: 232ms	remaining: 262ms
47:	learn: 17.3058203	total: 237ms	remaining: 257ms
48:	learn: 17.1789256	total: 243ms	remaining: 253ms
49:	learn: 17.0916229	total: 248ms	remaining: 248ms
50:	learn: 16.9859820	total: 253ms	remaining: 243ms
51:	learn: 16.8995582	total: 258ms	remaining: 238ms
52:	learn: 16.8137014	total: 263ms	remaining: 234ms
53:	learn: 16.7021451	total: 268ms	remaining: 229ms
54:	learn: 16.5895582	total: 273ms	remaining: 224ms
55:	learn: 16.5015639	total: 278ms	remaining: 219ms
56:	learn: 16.4356637	total: 284ms	remaining: 214ms
57:	learn: 16.3514525	total: 289ms	remaining: 209ms
58:	learn: 16.2401369	total: 294ms	remaining: 204ms
59:	learn: 16.1293223	total: 299ms	remaining: 199ms
60:	learn: 16.0271167	total: 304ms	remaining: 194ms
61:	learn: 15.9126257	total: 308ms	remaining: 189ms
62:	learn: 15.8391096	total: 313ms	remaining: 184ms
63:	learn: 15.7441773	total: 318ms	remaining: 179ms
64:	learn: 15.6885195	total: 322ms	remaining: 174ms
65:	learn: 15.6052039	total: 327ms	remaining: 168ms
66:	learn: 15.5074202	total: 332ms	remaining: 163ms
67:	learn: 15.4054338	total: 337ms	remaining: 159ms
68:	learn: 15.2885714	total: 341ms	remaining: 153ms
69:	learn: 15.2157472	total: 346ms	remaining: 148ms
70:	learn: 15.1031554	total: 350ms	remaining: 143ms
71:	learn: 15.0237470	total: 355ms	remaining: 138ms
72:	learn: 14.9756825	total: 359ms	remaining: 133ms
73:	learn: 14.8840596	total: 367ms	remaining: 129ms
74:	learn: 14.8077061	total: 373ms	remaining: 124ms
75:	learn: 14.7444437	total: 380ms	remaining: 120ms
76:	learn: 14.6751720	total: 386ms	remaining: 115ms
77:	learn: 14.5830333	total: 390ms	remaining: 110ms
78:	learn: 14.5241206	total: 395ms	remaining: 105ms
79:	learn: 14.4892731	total: 402ms	remaining: 101ms
80:	learn: 14.4256605	total: 407ms	remaining: 95.4ms
81:	learn: 14.3666860	total: 412ms	remaining: 90.4ms
82:	learn: 14.2938372	total: 417ms	remaining: 85.4ms
83:	learn: 14.2161532	total: 422ms	remaining: 80.4ms
84:	learn: 14.1582910	total: 427ms	remaining: 75.3ms
85:	learn: 14.1029153	total: 432ms	remaining: 70.3ms
86:	learn: 14.0475835	total: 437ms	remaining: 65.3ms
87:	learn: 13.9892661	total: 442ms	remaining: 60.2ms
88:	learn: 13.9481628	total: 447ms	remaining: 55.3ms
89:	learn: 13.8483991	total: 452ms	remaining: 50.3ms
90:	learn: 13.7775614	total: 457ms	remaining: 45.2ms
91:	learn: 13.7304585	total: 462ms	remaining: 40.2ms
92:	learn: 13.6783381	total: 468ms	remaining: 35.2ms
93:	learn: 13.6356964	total: 473ms	remaining: 30.2ms
94:	learn: 13.5924371	total: 478ms	remaining: 25.2ms
95:	learn: 13.5400746	total: 483ms	remaining: 20.1ms
96:	learn: 13.4897333	total: 489ms	remaining: 15.1ms
97:	learn: 13.4470321	total: 494ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 498ms	remaining: 5.03ms
99:	learn: 13.3082371	total: 502ms	remaining: 0us
0:	learn: 43.0395283	total: 4.44ms	remaining: 440ms
1:	learn: 42.1130223	total: 9.11ms	remaining: 446ms
2:	learn: 41.1753409	total: 13.7ms	remaining: 441ms
3:	learn: 40.3637444	total: 18ms	remaining: 431ms
4:	learn: 39.6508088	total: 22.5ms	remaining: 427ms
5:	learn: 38.7217934	total: 26.7ms	remaining: 419ms
6:	learn: 37.8538055	total: 31.2ms	remaining: 414ms
7:	learn: 36.9793574	total: 35.6ms	remaining: 410ms
8:	learn: 36.3076984	total: 40ms	remaining: 404ms
9:	learn: 35.6673160	total: 45.2ms	remaining: 407ms
10:	learn: 34.8889800	total: 54.1ms	remaining: 438ms
11:	learn: 34.1675517	total: 61.4ms	remaining: 450ms
12:	learn: 33.6779564	total: 69.7ms	remaining: 467ms
13:	learn: 33.0710039	total: 77.4ms	remaining: 476ms
14:	learn: 32.4966674	total: 82.7ms	remaining: 469ms
15:	learn: 31.9492856	total: 88ms	remaining: 462ms
16:	learn: 31.5108129	total: 93.1ms	remaining: 454ms
17:	learn: 30.9804023	total: 98.3ms	remaining: 448ms
18:	learn: 30.4169089	total: 104ms	remaining: 444ms
19:	learn: 29.8930375	total: 110ms	remaining: 438ms
20:	learn: 29.3974421	total: 116ms	remaining: 435ms
21:	learn: 28.8792307	total: 121ms	remaining: 429ms
22:	learn: 28.3894474	total: 126ms	remaining: 422ms
23:	learn: 27.9921276	total: 131ms	remaining: 415ms
24:	learn: 27.6158887	total: 136ms	remaining: 407ms
25:	learn: 27.2866950	total: 141ms	remaining: 401ms
26:	learn: 26.8770708	total: 146ms	remaining: 395ms
27:	learn: 26.6233005	total: 151ms	remaining: 389ms
28:	learn: 26.2921934	total: 156ms	remaining: 381ms
29:	learn: 25.9156920	total: 160ms	remaining: 372ms
30:	learn: 25.5311106	total: 161ms	remaining: 359ms
31:	learn: 25.2178997	total: 165ms	remaining: 351ms
32:	learn: 24.8572196	total: 169ms	remaining: 343ms
33:	learn: 24.5849710	total: 173ms	remaining: 336ms
34:	learn: 24.2209190	total: 177ms	remaining: 329ms
35:	learn: 23.8708250	total: 181ms	remaining: 322ms
36:	learn: 23.5325279	total: 185ms	remaining: 315ms
37:	learn: 23.2116148	total: 189ms	remaining: 309ms
38:	learn: 22.9696787	total: 194ms	remaining: 303ms
39:	learn: 22.7936783	total: 197ms	remaining: 296ms
40:	learn: 22.6228847	total: 201ms	remaining: 290ms
41:	learn: 22.3691527	total: 206ms	remaining: 284ms
42:	learn: 22.1002173	total: 210ms	remaining: 278ms
43:	learn: 21.9157268	total: 214ms	remaining: 272ms
44:	learn: 21.7229102	total: 218ms	remaining: 266ms
45:	learn: 21.4642005	total: 223ms	remaining: 262ms
46:	learn: 21.3029442	total: 227ms	remaining: 257ms
47:	learn: 21.1469792	total: 232ms	remaining: 251ms
48:	learn: 20.9458235	total: 236ms	remaining: 246ms
49:	learn: 20.7335242	total: 241ms	remaining: 241ms
50:	learn: 20.5440269	total: 245ms	remaining: 236ms
51:	learn: 20.3661449	total: 250ms	remaining: 231ms
52:	learn: 20.2158134	total: 254ms	remaining: 226ms
53:	learn: 19.9934873	total: 262ms	remaining: 224ms
54:	learn: 19.7879739	total: 270ms	remaining: 221ms
55:	learn: 19.6630460	total: 279ms	remaining: 219ms
56:	learn: 19.5152729	total: 284ms	remaining: 214ms
57:	learn: 19.3581128	total: 291ms	remaining: 211ms
58:	learn: 19.2209303	total: 296ms	remaining: 206ms
59:	learn: 19.0965248	total: 302ms	remaining: 201ms
60:	learn: 19.0035954	total: 307ms	remaining: 196ms
61:	learn: 18.8554149	total: 312ms	remaining: 191ms
62:	learn: 18.7095427	total: 317ms	remaining: 186ms
63:	learn: 18.5751494	total: 322ms	remaining: 181ms
64:	learn: 18.4678251	total: 328ms	remaining: 176ms
65:	learn: 18.3500325	total: 333ms	remaining: 171ms
66:	learn: 18.2088983	total: 338ms	remaining: 166ms
67:	learn: 18.0737705	total: 343ms	remaining: 161ms
68:	learn: 17.9325058	total: 348ms	remaining: 156ms
69:	learn: 17.8003911	total: 353ms	remaining: 151ms
70:	learn: 17.7385366	total: 359ms	remaining: 147ms
71:	learn: 17.6106998	total: 364ms	remaining: 142ms
72:	learn: 17.4816270	total: 368ms	remaining: 136ms
73:	learn: 17.4025554	total: 372ms	remaining: 131ms
74:	learn: 17.2902108	total: 376ms	remaining: 125ms
75:	learn: 17.2158048	total: 380ms	remaining: 120ms
76:	learn: 17.1261053	total: 384ms	remaining: 115ms
77:	learn: 17.0308917	total: 388ms	remaining: 110ms
78:	learn: 16.9546705	total: 392ms	remaining: 104ms
79:	learn: 16.8319165	total: 396ms	remaining: 99.1ms
80:	learn: 16.7687017	total: 400ms	remaining: 93.9ms
81:	learn: 16.6972326	total: 405ms	remaining: 88.8ms
82:	learn: 16.6124580	total: 408ms	remaining: 83.7ms
83:	learn: 16.4999052	total: 412ms	remaining: 78.5ms
84:	learn: 16.4302484	total: 416ms	remaining: 73.5ms
85:	learn: 16.3201363	total: 421ms	remaining: 68.5ms
86:	learn: 16.2534314	total: 425ms	remaining: 63.6ms
87:	learn: 16.1720485	total: 430ms	remaining: 58.6ms
88:	learn: 16.0625751	total: 435ms	remaining: 53.8ms
89:	learn: 15.9135088	total: 440ms	remaining: 48.9ms
90:	learn: 15.8658863	total: 445ms	remaining: 44ms
91:	learn: 15.8066805	total: 449ms	remaining: 39.1ms
92:	learn: 15.7412103	total: 454ms	remaining: 34.1ms
93:	learn: 15.6542776	total: 461ms	remaining: 29.5ms
94:	learn: 15.5760334	total: 469ms	remaining: 24.7ms
95:	learn: 15.5434131	total: 476ms	remaining: 19.8ms
96:	learn: 15.4709561	total: 483ms	remaining: 14.9ms
97:	learn: 15.4449618	total: 490ms	remaining: 10ms
98:	learn: 15.3752761	total: 495ms	remaining: 5ms
99:	learn: 15.3106595	total: 501ms	remaining: 0us
0:	learn: 46.7142257	total: 5.37ms	remaining: 532ms
1:	learn: 45.7634153	total: 10.8ms	remaining: 527ms
2:	learn: 45.0054253	total: 15.8ms	remaining: 512ms
3:	learn: 44.2120432	total: 20.2ms	remaining: 485ms
4:	learn: 43.3960472	total: 24.5ms	remaining: 465ms
5:	learn: 42.8588120	total: 29.2ms	remaining: 457ms
6:	learn: 41.9533701	total: 33.5ms	remaining: 445ms
7:	learn: 41.2745030	total: 37.7ms	remaining: 433ms
8:	learn: 40.6797495	total: 42ms	remaining: 425ms
9:	learn: 39.9899571	total: 46.7ms	remaining: 420ms
10:	learn: 39.4682100	total: 50.9ms	remaining: 412ms
11:	learn: 39.0305595	total: 55.2ms	remaining: 404ms
12:	learn: 38.4200417	total: 59.8ms	remaining: 400ms
13:	learn: 37.8425194	total: 64.2ms	remaining: 394ms
14:	learn: 37.4203127	total: 68.2ms	remaining: 386ms
15:	learn: 36.9917688	total: 72.6ms	remaining: 381ms
16:	learn: 36.5544138	total: 77ms	remaining: 376ms
17:	learn: 36.0727019	total: 81.8ms	remaining: 373ms
18:	learn: 35.4835715	total: 86.3ms	remaining: 368ms
19:	learn: 34.9865654	total: 90.9ms	remaining: 363ms
20:	learn: 34.6063373	total: 95.6ms	remaining: 360ms
21:	learn: 34.0997289	total: 100ms	remaining: 356ms
22:	learn: 33.7313171	total: 105ms	remaining: 352ms
23:	learn: 33.3582000	total: 111ms	remaining: 353ms
24:	learn: 32.9432456	total: 119ms	remaining: 357ms
25:	learn: 32.5220888	total: 126ms	remaining: 359ms
26:	learn: 32.2172292	total: 133ms	remaining: 360ms
27:	learn: 31.8972904	total: 141ms	remaining: 362ms
28:	learn: 31.6405350	total: 146ms	remaining: 357ms
29:	learn: 31.4167702	total: 151ms	remaining: 353ms
30:	learn: 30.8541961	total: 153ms	remaining: 341ms
31:	learn: 30.5572111	total: 159ms	remaining: 337ms
32:	learn: 30.1700399	total: 164ms	remaining: 333ms
33:	learn: 29.8537271	total: 169ms	remaining: 328ms
34:	learn: 29.6192540	total: 175ms	remaining: 324ms
35:	learn: 29.3276362	total: 180ms	remaining: 320ms
36:	learn: 28.9985179	total: 186ms	remaining: 316ms
37:	learn: 28.7046880	total: 191ms	remaining: 312ms
38:	learn: 28.4412677	total: 197ms	remaining: 308ms
39:	learn: 28.1277292	total: 202ms	remaining: 303ms
40:	learn: 27.9000750	total: 207ms	remaining: 298ms
41:	learn: 27.5433162	total: 213ms	remaining: 295ms
42:	learn: 27.2493285	total: 219ms	remaining: 290ms
43:	learn: 26.9576632	total: 221ms	remaining: 281ms
44:	learn: 26.6177110	total: 225ms	remaining: 274ms
45:	learn: 26.2812456	total: 229ms	remaining: 269ms
46:	learn: 26.0803859	total: 233ms	remaining: 263ms
47:	learn: 25.9543581	total: 237ms	remaining: 257ms
48:	learn: 25.7951582	total: 241ms	remaining: 251ms
49:	learn: 25.6548184	total: 245ms	remaining: 245ms
50:	learn: 25.4010843	total: 250ms	remaining: 240ms
51:	learn: 24.9773937	total: 254ms	remaining: 235ms
52:	learn: 24.8026156	total: 259ms	remaining: 229ms
53:	learn: 24.5568053	total: 263ms	remaining: 224ms
54:	learn: 24.2281839	total: 266ms	remaining: 218ms
55:	learn: 23.9202795	total: 271ms	remaining: 213ms
56:	learn: 23.7625591	total: 275ms	remaining: 208ms
57:	learn: 23.5429721	total: 280ms	remaining: 203ms
58:	learn: 23.3175893	total: 284ms	remaining: 197ms
59:	learn: 23.2035130	total: 289ms	remaining: 193ms
60:	learn: 23.0232450	total: 293ms	remaining: 187ms
61:	learn: 22.8384958	total: 298ms	remaining: 182ms
62:	learn: 22.6499902	total: 302ms	remaining: 178ms
63:	learn: 22.4577426	total: 307ms	remaining: 173ms
64:	learn: 22.3333158	total: 316ms	remaining: 170ms
65:	learn: 22.2064131	total: 324ms	remaining: 167ms
66:	learn: 22.1434971	total: 332ms	remaining: 164ms
67:	learn: 21.9596519	total: 341ms	remaining: 160ms
68:	learn: 21.8475576	total: 346ms	remaining: 155ms
69:	learn: 21.6954745	total: 351ms	remaining: 151ms
70:	learn: 21.5635976	total: 357ms	remaining: 146ms
71:	learn: 21.4588506	total: 362ms	remaining: 141ms
72:	learn: 21.3527268	total: 367ms	remaining: 136ms
73:	learn: 21.2661288	total: 372ms	remaining: 131ms
74:	learn: 21.1817333	total: 377ms	remaining: 126ms
75:	learn: 21.0527553	total: 382ms	remaining: 121ms
76:	learn: 20.9229021	total: 387ms	remaining: 116ms
77:	learn: 20.7563946	total: 392ms	remaining: 111ms
78:	learn: 20.6569831	total: 397ms	remaining: 106ms
79:	learn: 20.4982663	total: 402ms	remaining: 100ms
80:	learn: 20.3185460	total: 407ms	remaining: 95.5ms
81:	learn: 20.2096241	total: 413ms	remaining: 90.6ms
82:	learn: 20.1274891	total: 418ms	remaining: 85.5ms
83:	learn: 20.0740139	total: 422ms	remaining: 80.3ms
84:	learn: 19.9630699	total: 426ms	remaining: 75.2ms
85:	learn: 19.8753899	total: 430ms	remaining: 70ms
86:	learn: 19.6563612	total: 434ms	remaining: 64.9ms
87:	learn: 19.4680232	total: 438ms	remaining: 59.8ms
88:	learn: 19.3503431	total: 442ms	remaining: 54.7ms
89:	learn: 19.2221379	total: 446ms	remaining: 49.6ms
90:	learn: 19.0732542	total: 450ms	remaining: 44.5ms
91:	learn: 18.9825190	total: 454ms	remaining: 39.5ms
92:	learn: 18.8839009	total: 458ms	remaining: 34.5ms
93:	learn: 18.8012219	total: 462ms	remaining: 29.5ms
94:	learn: 18.7172713	total: 467ms	remaining: 24.6ms
95:	learn: 18.6201170	total: 471ms	remaining: 19.6ms
96:	learn: 18.5318611	total: 475ms	remaining: 14.7ms
97:	learn: 18.3833356	total: 479ms	remaining: 9.78ms
98:	learn: 18.3289700	total: 484ms	remaining: 4.88ms
99:	learn: 18.2227333	total: 488ms	remaining: 0us
0:	learn: 46.3764524	total: 8.05ms	remaining: 797ms
1:	learn: 45.5561269	total: 13.6ms	remaining: 664ms
2:	learn: 44.8811245	total: 18.7ms	remaining: 604ms
3:	learn: 44.0788617	total: 24.1ms	remaining: 578ms
4:	learn: 43.3619790	total: 29.6ms	remaining: 563ms
5:	learn: 42.6912112	total: 35ms	remaining: 548ms
6:	learn: 42.2292118	total: 40.2ms	remaining: 535ms
7:	learn: 41.7725191	total: 45.6ms	remaining: 525ms
8:	learn: 41.1676614	total: 50.6ms	remaining: 512ms
9:	learn: 40.5771076	total: 55.4ms	remaining: 498ms
10:	learn: 39.8343757	total: 60.5ms	remaining: 490ms
11:	learn: 39.3761142	total: 65.1ms	remaining: 477ms
12:	learn: 38.5254692	total: 70.5ms	remaining: 472ms
13:	learn: 37.9629555	total: 76.1ms	remaining: 467ms
14:	learn: 37.4418438	total: 80.9ms	remaining: 459ms
15:	learn: 37.0507283	total: 85.1ms	remaining: 447ms
16:	learn: 36.6264217	total: 89.3ms	remaining: 436ms
17:	learn: 36.1114940	total: 93.6ms	remaining: 426ms
18:	learn: 35.7193862	total: 97.8ms	remaining: 417ms
19:	learn: 35.3301177	total: 102ms	remaining: 408ms
20:	learn: 35.0598280	total: 106ms	remaining: 399ms
21:	learn: 34.5469736	total: 110ms	remaining: 390ms
22:	learn: 34.2064215	total: 114ms	remaining: 382ms
23:	learn: 33.7280710	total: 118ms	remaining: 373ms
24:	learn: 33.3282940	total: 122ms	remaining: 365ms
25:	learn: 32.8478961	total: 126ms	remaining: 357ms
26:	learn: 32.5722164	total: 130ms	remaining: 351ms
27:	learn: 32.2457019	total: 134ms	remaining: 344ms
28:	learn: 31.9230495	total: 138ms	remaining: 337ms
29:	learn: 31.4311611	total: 142ms	remaining: 330ms
30:	learn: 30.9179052	total: 146ms	remaining: 325ms
31:	learn: 30.6201141	total: 151ms	remaining: 320ms
32:	learn: 30.3421106	total: 155ms	remaining: 315ms
33:	learn: 29.9885373	total: 159ms	remaining: 309ms
34:	learn: 29.7462780	total: 163ms	remaining: 304ms
35:	learn: 29.3607153	total: 168ms	remaining: 299ms
36:	learn: 29.1793078	total: 173ms	remaining: 294ms
37:	learn: 28.9276538	total: 177ms	remaining: 289ms
38:	learn: 28.6903934	total: 185ms	remaining: 289ms
39:	learn: 28.2095033	total: 192ms	remaining: 288ms
40:	learn: 27.7990608	total: 200ms	remaining: 288ms
41:	learn: 27.5406632	total: 207ms	remaining: 285ms
42:	learn: 27.2575376	total: 214ms	remaining: 284ms
43:	learn: 26.9741707	total: 219ms	remaining: 279ms
44:	learn: 26.6606899	total: 225ms	remaining: 275ms
45:	learn: 26.4015833	total: 230ms	remaining: 270ms
46:	learn: 26.1828993	total: 234ms	remaining: 264ms
47:	learn: 26.0233709	total: 237ms	remaining: 257ms
48:	learn: 25.9300399	total: 243ms	remaining: 253ms
49:	learn: 25.5861489	total: 248ms	remaining: 248ms
50:	learn: 25.4322012	total: 253ms	remaining: 243ms
51:	learn: 25.1595644	total: 258ms	remaining: 238ms
52:	learn: 24.9955303	total: 263ms	remaining: 234ms
53:	learn: 24.7273966	total: 268ms	remaining: 229ms
54:	learn: 24.5747978	total: 273ms	remaining: 223ms
55:	learn: 24.3807977	total: 278ms	remaining: 219ms
56:	learn: 24.1689569	total: 284ms	remaining: 214ms
57:	learn: 23.9898221	total: 288ms	remaining: 209ms
58:	learn: 23.7566414	total: 293ms	remaining: 203ms
59:	learn: 23.6641165	total: 297ms	remaining: 198ms
60:	learn: 23.5658066	total: 301ms	remaining: 192ms
61:	learn: 23.4338851	total: 305ms	remaining: 187ms
62:	learn: 23.2408837	total: 309ms	remaining: 181ms
63:	learn: 23.0642038	total: 313ms	remaining: 176ms
64:	learn: 22.9032045	total: 316ms	remaining: 170ms
65:	learn: 22.7736138	total: 320ms	remaining: 165ms
66:	learn: 22.6836443	total: 324ms	remaining: 160ms
67:	learn: 22.5983654	total: 328ms	remaining: 155ms
68:	learn: 22.4419813	total: 332ms	remaining: 149ms
69:	learn: 22.2863339	total: 336ms	remaining: 144ms
70:	learn: 22.1792943	total: 341ms	remaining: 139ms
71:	learn: 22.1130574	total: 345ms	remaining: 134ms
72:	learn: 21.9858161	total: 350ms	remaining: 129ms
73:	learn: 21.8577784	total: 354ms	remaining: 125ms
74:	learn: 21.7845222	total: 359ms	remaining: 120ms
75:	learn: 21.6831390	total: 364ms	remaining: 115ms
76:	learn: 21.6292521	total: 368ms	remaining: 110ms
77:	learn: 21.5789330	total: 372ms	remaining: 105ms
78:	learn: 21.5420942	total: 377ms	remaining: 100ms
79:	learn: 21.4280939	total: 385ms	remaining: 96.3ms
80:	learn: 21.3641165	total: 393ms	remaining: 92.2ms
81:	learn: 21.2734814	total: 402ms	remaining: 88.2ms
82:	learn: 21.2220323	total: 408ms	remaining: 83.6ms
83:	learn: 21.0625792	total: 415ms	remaining: 79ms
84:	learn: 20.9488320	total: 420ms	remaining: 74.1ms
85:	learn: 20.8504255	total: 425ms	remaining: 69.1ms
86:	learn: 20.7848510	total: 430ms	remaining: 64.2ms
87:	learn: 20.7247442	total: 435ms	remaining: 59.3ms
88:	learn: 20.5698590	total: 440ms	remaining: 54.3ms
89:	learn: 20.4067620	total: 445ms	remaining: 49.5ms
90:	learn: 20.3062482	total: 450ms	remaining: 44.5ms
91:	learn: 20.2029696	total: 456ms	remaining: 39.6ms
92:	learn: 20.1384849	total: 461ms	remaining: 34.7ms
93:	learn: 20.0260709	total: 466ms	remaining: 29.7ms
94:	learn: 19.9122100	total: 470ms	remaining: 24.7ms
95:	learn: 19.8648487	total: 475ms	remaining: 19.8ms
96:	learn: 19.8207072	total: 481ms	remaining: 14.9ms
97:	learn: 19.7261189	total: 486ms	remaining: 9.92ms
98:	learn: 19.7042438	total: 491ms	remaining: 4.95ms
99:	learn: 19.6546645	total: 495ms	remaining: 0us
0:	learn: 47.0239288	total: 5.11ms	remaining: 506ms
1:	learn: 46.2253829	total: 9.84ms	remaining: 482ms
2:	learn: 45.5580301	total: 14.4ms	remaining: 467ms
3:	learn: 44.7273237	total: 19ms	remaining: 455ms
4:	learn: 43.8867421	total: 23.4ms	remaining: 445ms
5:	learn: 43.3615911	total: 27.8ms	remaining: 435ms
6:	learn: 42.8548390	total: 32.6ms	remaining: 432ms
7:	learn: 42.1606758	total: 37.1ms	remaining: 427ms
8:	learn: 41.6625870	total: 45.6ms	remaining: 461ms
9:	learn: 40.9497092	total: 52.9ms	remaining: 476ms
10:	learn: 40.1886318	total: 60.9ms	remaining: 492ms
11:	learn: 39.7456423	total: 68.3ms	remaining: 501ms
12:	learn: 39.1171373	total: 73.7ms	remaining: 493ms
13:	learn: 38.5451069	total: 79.2ms	remaining: 487ms
14:	learn: 38.0155834	total: 84.9ms	remaining: 481ms
15:	learn: 37.5631354	total: 90.8ms	remaining: 477ms
16:	learn: 37.1030023	total: 96.2ms	remaining: 470ms
17:	learn: 36.4563029	total: 102ms	remaining: 465ms
18:	learn: 36.0160976	total: 108ms	remaining: 461ms
19:	learn: 35.5079827	total: 114ms	remaining: 455ms
20:	learn: 35.2111885	total: 120ms	remaining: 450ms
21:	learn: 34.9397465	total: 125ms	remaining: 442ms
22:	learn: 34.5270048	total: 130ms	remaining: 434ms
23:	learn: 34.0169260	total: 134ms	remaining: 426ms
24:	learn: 33.7454892	total: 140ms	remaining: 419ms
25:	learn: 33.2648157	total: 145ms	remaining: 413ms
26:	learn: 32.8899427	total: 150ms	remaining: 404ms
27:	learn: 32.6185050	total: 154ms	remaining: 396ms
28:	learn: 32.3528531	total: 158ms	remaining: 388ms
29:	learn: 32.0859923	total: 162ms	remaining: 379ms
30:	learn: 31.6511144	total: 167ms	remaining: 372ms
31:	learn: 31.2571765	total: 171ms	remaining: 363ms
32:	learn: 30.9770049	total: 175ms	remaining: 356ms
33:	learn: 30.6084872	total: 179ms	remaining: 347ms
34:	learn: 30.3448632	total: 183ms	remaining: 340ms
35:	learn: 30.0360942	total: 187ms	remaining: 333ms
36:	learn: 29.6648968	total: 191ms	remaining: 325ms
37:	learn: 29.3165114	total: 195ms	remaining: 319ms
38:	learn: 29.0829198	total: 200ms	remaining: 312ms
39:	learn: 28.7752064	total: 204ms	remaining: 305ms
40:	learn: 28.3622191	total: 208ms	remaining: 299ms
41:	learn: 28.1346631	total: 212ms	remaining: 292ms
42:	learn: 27.9585719	total: 216ms	remaining: 286ms
43:	learn: 27.6565566	total: 220ms	remaining: 280ms
44:	learn: 27.3616172	total: 225ms	remaining: 275ms
45:	learn: 27.0658637	total: 229ms	remaining: 269ms
46:	learn: 26.8660382	total: 233ms	remaining: 263ms
47:	learn: 26.6536078	total: 237ms	remaining: 257ms
48:	learn: 26.3524440	total: 242ms	remaining: 252ms
49:	learn: 26.1595277	total: 246ms	remaining: 246ms
50:	learn: 25.9273523	total: 250ms	remaining: 241ms
51:	learn: 25.7195580	total: 257ms	remaining: 237ms
52:	learn: 25.5730225	total: 264ms	remaining: 234ms
53:	learn: 25.3455276	total: 271ms	remaining: 231ms
54:	learn: 25.2289675	total: 280ms	remaining: 229ms
55:	learn: 25.0133024	total: 287ms	remaining: 226ms
56:	learn: 24.8406714	total: 292ms	remaining: 220ms
57:	learn: 24.6367857	total: 297ms	remaining: 215ms
58:	learn: 24.5338177	total: 303ms	remaining: 210ms
59:	learn: 24.3799964	total: 308ms	remaining: 205ms
60:	learn: 24.1447492	total: 313ms	remaining: 200ms
61:	learn: 23.9880495	total: 318ms	remaining: 195ms
62:	learn: 23.7140630	total: 323ms	remaining: 190ms
63:	learn: 23.5003791	total: 328ms	remaining: 185ms
64:	learn: 23.3207645	total: 333ms	remaining: 180ms
65:	learn: 23.1958356	total: 339ms	remaining: 174ms
66:	learn: 23.0471302	total: 343ms	remaining: 169ms
67:	learn: 22.8977183	total: 348ms	remaining: 164ms
68:	learn: 22.7187400	total: 354ms	remaining: 159ms
69:	learn: 22.6523405	total: 359ms	remaining: 154ms
70:	learn: 22.4767453	total: 363ms	remaining: 148ms
71:	learn: 22.3243677	total: 367ms	remaining: 143ms
72:	learn: 22.2133096	total: 371ms	remaining: 137ms
73:	learn: 22.1151713	total: 375ms	remaining: 132ms
74:	learn: 22.0296666	total: 379ms	remaining: 126ms
75:	learn: 21.9195980	total: 383ms	remaining: 121ms
76:	learn: 21.8401730	total: 387ms	remaining: 116ms
77:	learn: 21.8079797	total: 391ms	remaining: 110ms
78:	learn: 21.7274109	total: 395ms	remaining: 105ms
79:	learn: 21.6663032	total: 399ms	remaining: 99.7ms
80:	learn: 21.5633117	total: 403ms	remaining: 94.6ms
81:	learn: 21.4542467	total: 407ms	remaining: 89.4ms
82:	learn: 21.3177957	total: 411ms	remaining: 84.3ms
83:	learn: 21.1289167	total: 415ms	remaining: 79.1ms
84:	learn: 21.0297368	total: 420ms	remaining: 74.1ms
85:	learn: 20.9089564	total: 425ms	remaining: 69.1ms
86:	learn: 20.7653988	total: 430ms	remaining: 64.2ms
87:	learn: 20.6521894	total: 434ms	remaining: 59.2ms
88:	learn: 20.5193021	total: 438ms	remaining: 54.1ms
89:	learn: 20.4361620	total: 442ms	remaining: 49.2ms
90:	learn: 20.3546710	total: 447ms	remaining: 44.2ms
91:	learn: 20.2513296	total: 452ms	remaining: 39.3ms
92:	learn: 20.1605550	total: 459ms	remaining: 34.5ms
93:	learn: 20.0515942	total: 466ms	remaining: 29.8ms
94:	learn: 19.9800764	total: 473ms	remaining: 24.9ms
95:	learn: 19.8996532	total: 480ms	remaining: 20ms
96:	learn: 19.8450910	total: 488ms	remaining: 15.1ms
97:	learn: 19.7887346	total: 493ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 498ms	remaining: 5.03ms
99:	learn: 19.6328825	total: 503ms	remaining: 0us
0:	learn: 27.5585353	total: 4.55ms	remaining: 450ms
1:	learn: 27.1656995	total: 8.59ms	remaining: 421ms
2:	learn: 26.8590175	total: 12.5ms	remaining: 404ms
3:	learn: 26.5818406	total: 16.4ms	remaining: 394ms
4:	learn: 26.1148663	total: 20.3ms	remaining: 386ms
5:	learn: 25.7690484	total: 24.5ms	remaining: 384ms
6:	learn: 25.3489206	total: 28.5ms	remaining: 379ms
7:	learn: 24.9542406	total: 32.5ms	remaining: 373ms
8:	learn: 24.6777517	total: 36.6ms	remaining: 370ms
9:	learn: 24.3242344	total: 40.9ms	remaining: 368ms
10:	learn: 24.0383073	total: 44.8ms	remaining: 362ms
11:	learn: 23.7383420	total: 48.7ms	remaining: 357ms
12:	learn: 23.3461670	total: 52.9ms	remaining: 354ms
13:	learn: 23.0928636	total: 57.1ms	remaining: 351ms
14:	learn: 22.8770414	total: 60.9ms	remaining: 345ms
15:	learn: 22.6323214	total: 65ms	remaining: 341ms
16:	learn: 22.3597072	total: 69.7ms	remaining: 340ms
17:	learn: 22.1079813	total: 74.3ms	remaining: 338ms
18:	learn: 21.8421199	total: 79.2ms	remaining: 337ms
19:	learn: 21.6576508	total: 86.1ms	remaining: 344ms
20:	learn: 21.4301268	total: 92.8ms	remaining: 349ms
21:	learn: 21.2287388	total: 99.7ms	remaining: 353ms
22:	learn: 21.0553872	total: 105ms	remaining: 351ms
23:	learn: 20.8977091	total: 110ms	remaining: 347ms
24:	learn: 20.6619051	total: 115ms	remaining: 344ms
25:	learn: 20.5040955	total: 121ms	remaining: 345ms
26:	learn: 20.3181195	total: 126ms	remaining: 340ms
27:	learn: 20.0869436	total: 131ms	remaining: 337ms
28:	learn: 19.9375985	total: 136ms	remaining: 333ms
29:	learn: 19.8247516	total: 141ms	remaining: 329ms
30:	learn: 19.6261697	total: 146ms	remaining: 325ms
31:	learn: 19.4547236	total: 151ms	remaining: 320ms
32:	learn: 19.3157092	total: 156ms	remaining: 316ms
33:	learn: 19.1561419	total: 161ms	remaining: 313ms
34:	learn: 19.0453620	total: 166ms	remaining: 307ms
35:	learn: 18.8738574	total: 171ms	remaining: 303ms
36:	learn: 18.7072907	total: 180ms	remaining: 306ms
37:	learn: 18.5877943	total: 184ms	remaining: 301ms
38:	learn: 18.4436380	total: 189ms	remaining: 296ms
39:	learn: 18.3463356	total: 194ms	remaining: 291ms
40:	learn: 18.2008059	total: 199ms	remaining: 286ms
41:	learn: 18.0582079	total: 204ms	remaining: 282ms
42:	learn: 17.8891982	total: 210ms	remaining: 278ms
43:	learn: 17.7332246	total: 215ms	remaining: 273ms
44:	learn: 17.6206421	total: 219ms	remaining: 267ms
45:	learn: 17.4982800	total: 223ms	remaining: 262ms
46:	learn: 17.3970150	total: 227ms	remaining: 256ms
47:	learn: 17.3058203	total: 232ms	remaining: 251ms
48:	learn: 17.1789256	total: 236ms	remaining: 245ms
49:	learn: 17.0916229	total: 240ms	remaining: 240ms
50:	learn: 16.9859820	total: 244ms	remaining: 234ms
51:	learn: 16.8995582	total: 248ms	remaining: 229ms
52:	learn: 16.8137014	total: 252ms	remaining: 223ms
53:	learn: 16.7021451	total: 257ms	remaining: 219ms
54:	learn: 16.5895582	total: 261ms	remaining: 214ms
55:	learn: 16.5015639	total: 266ms	remaining: 209ms
56:	learn: 16.4356637	total: 270ms	remaining: 204ms
57:	learn: 16.3514525	total: 275ms	remaining: 199ms
58:	learn: 16.2401369	total: 280ms	remaining: 195ms
59:	learn: 16.1293223	total: 285ms	remaining: 190ms
60:	learn: 16.0271167	total: 289ms	remaining: 185ms
61:	learn: 15.9126257	total: 294ms	remaining: 180ms
62:	learn: 15.8391096	total: 299ms	remaining: 175ms
63:	learn: 15.7441773	total: 304ms	remaining: 171ms
64:	learn: 15.6885195	total: 312ms	remaining: 168ms
65:	learn: 15.6052039	total: 319ms	remaining: 164ms
66:	learn: 15.5074202	total: 327ms	remaining: 161ms
67:	learn: 15.4054338	total: 335ms	remaining: 158ms
68:	learn: 15.2885714	total: 340ms	remaining: 153ms
69:	learn: 15.2157472	total: 346ms	remaining: 148ms
70:	learn: 15.1031554	total: 351ms	remaining: 143ms
71:	learn: 15.0237470	total: 356ms	remaining: 138ms
72:	learn: 14.9756825	total: 361ms	remaining: 133ms
73:	learn: 14.8840596	total: 366ms	remaining: 129ms
74:	learn: 14.8077061	total: 371ms	remaining: 124ms
75:	learn: 14.7444437	total: 377ms	remaining: 119ms
76:	learn: 14.6751720	total: 382ms	remaining: 114ms
77:	learn: 14.5830333	total: 388ms	remaining: 110ms
78:	learn: 14.5241206	total: 404ms	remaining: 107ms
79:	learn: 14.4892731	total: 410ms	remaining: 102ms
80:	learn: 14.4256605	total: 414ms	remaining: 97.1ms
81:	learn: 14.3666860	total: 418ms	remaining: 91.7ms
82:	learn: 14.2938372	total: 423ms	remaining: 86.6ms
83:	learn: 14.2161532	total: 427ms	remaining: 81.4ms
84:	learn: 14.1582910	total: 431ms	remaining: 76.1ms
85:	learn: 14.1029153	total: 435ms	remaining: 70.9ms
86:	learn: 14.0475835	total: 440ms	remaining: 65.7ms
87:	learn: 13.9892661	total: 444ms	remaining: 60.6ms
88:	learn: 13.9481628	total: 448ms	remaining: 55.4ms
89:	learn: 13.8483991	total: 453ms	remaining: 50.3ms
90:	learn: 13.7775614	total: 457ms	remaining: 45.2ms
91:	learn: 13.7304585	total: 462ms	remaining: 40.2ms
92:	learn: 13.6783381	total: 467ms	remaining: 35.1ms
93:	learn: 13.6356964	total: 471ms	remaining: 30.1ms
94:	learn: 13.5924371	total: 476ms	remaining: 25ms
95:	learn: 13.5400746	total: 480ms	remaining: 20ms
96:	learn: 13.4897333	total: 485ms	remaining: 15ms
97:	learn: 13.4470321	total: 489ms	remaining: 9.99ms
98:	learn: 13.3856082	total: 494ms	remaining: 4.99ms
99:	learn: 13.3082371	total: 502ms	remaining: 0us
0:	learn: 43.0395283	total: 5.38ms	remaining: 533ms
1:	learn: 42.1130223	total: 10.3ms	remaining: 506ms
2:	learn: 41.1753409	total: 16ms	remaining: 517ms
3:	learn: 40.3637444	total: 21.1ms	remaining: 507ms
4:	learn: 39.6508088	total: 26.1ms	remaining: 496ms
5:	learn: 38.7217934	total: 31.2ms	remaining: 489ms
6:	learn: 37.8538055	total: 36ms	remaining: 479ms
7:	learn: 36.9793574	total: 40.7ms	remaining: 468ms
8:	learn: 36.3076984	total: 46.1ms	remaining: 467ms
9:	learn: 35.6673160	total: 51.6ms	remaining: 465ms
10:	learn: 34.8889800	total: 56.4ms	remaining: 456ms
11:	learn: 34.1675517	total: 60.2ms	remaining: 442ms
12:	learn: 33.6779564	total: 64.4ms	remaining: 431ms
13:	learn: 33.0710039	total: 68.3ms	remaining: 419ms
14:	learn: 32.4966674	total: 72.2ms	remaining: 409ms
15:	learn: 31.9492856	total: 76.3ms	remaining: 400ms
16:	learn: 31.5108129	total: 80.2ms	remaining: 392ms
17:	learn: 30.9804023	total: 84.6ms	remaining: 385ms
18:	learn: 30.4169089	total: 88.6ms	remaining: 378ms
19:	learn: 29.8930375	total: 92.7ms	remaining: 371ms
20:	learn: 29.3974421	total: 96.6ms	remaining: 364ms
21:	learn: 28.8792307	total: 101ms	remaining: 358ms
22:	learn: 28.3894474	total: 105ms	remaining: 352ms
23:	learn: 27.9921276	total: 109ms	remaining: 345ms
24:	learn: 27.6158887	total: 113ms	remaining: 339ms
25:	learn: 27.2866950	total: 118ms	remaining: 335ms
26:	learn: 26.8770708	total: 122ms	remaining: 329ms
27:	learn: 26.6233005	total: 126ms	remaining: 323ms
28:	learn: 26.2921934	total: 130ms	remaining: 318ms
29:	learn: 25.9156920	total: 134ms	remaining: 313ms
30:	learn: 25.5311106	total: 136ms	remaining: 303ms
31:	learn: 25.2178997	total: 141ms	remaining: 299ms
32:	learn: 24.8572196	total: 145ms	remaining: 294ms
33:	learn: 24.5849710	total: 149ms	remaining: 290ms
34:	learn: 24.2209190	total: 154ms	remaining: 285ms
35:	learn: 23.8708250	total: 158ms	remaining: 281ms
36:	learn: 23.5325279	total: 163ms	remaining: 277ms
37:	learn: 23.2116148	total: 167ms	remaining: 272ms
38:	learn: 22.9696787	total: 174ms	remaining: 272ms
39:	learn: 22.7936783	total: 181ms	remaining: 271ms
40:	learn: 22.6228847	total: 189ms	remaining: 273ms
41:	learn: 22.3691527	total: 196ms	remaining: 271ms
42:	learn: 22.1002173	total: 203ms	remaining: 269ms
43:	learn: 21.9157268	total: 209ms	remaining: 265ms
44:	learn: 21.7229102	total: 213ms	remaining: 261ms
45:	learn: 21.4642005	total: 218ms	remaining: 256ms
46:	learn: 21.3029442	total: 223ms	remaining: 252ms
47:	learn: 21.1469792	total: 228ms	remaining: 247ms
48:	learn: 20.9458235	total: 234ms	remaining: 243ms
49:	learn: 20.7335242	total: 239ms	remaining: 239ms
50:	learn: 20.5440269	total: 244ms	remaining: 234ms
51:	learn: 20.3661449	total: 249ms	remaining: 230ms
52:	learn: 20.2158134	total: 254ms	remaining: 225ms
53:	learn: 19.9934873	total: 259ms	remaining: 221ms
54:	learn: 19.7879739	total: 264ms	remaining: 216ms
55:	learn: 19.6630460	total: 269ms	remaining: 212ms
56:	learn: 19.5152729	total: 275ms	remaining: 207ms
57:	learn: 19.3581128	total: 279ms	remaining: 202ms
58:	learn: 19.2209303	total: 283ms	remaining: 197ms
59:	learn: 19.0965248	total: 287ms	remaining: 191ms
60:	learn: 19.0035954	total: 291ms	remaining: 186ms
61:	learn: 18.8554149	total: 295ms	remaining: 181ms
62:	learn: 18.7095427	total: 299ms	remaining: 176ms
63:	learn: 18.5751494	total: 303ms	remaining: 170ms
64:	learn: 18.4678251	total: 307ms	remaining: 165ms
65:	learn: 18.3500325	total: 311ms	remaining: 160ms
66:	learn: 18.2088983	total: 316ms	remaining: 156ms
67:	learn: 18.0737705	total: 320ms	remaining: 150ms
68:	learn: 17.9325058	total: 324ms	remaining: 145ms
69:	learn: 17.8003911	total: 328ms	remaining: 141ms
70:	learn: 17.7385366	total: 333ms	remaining: 136ms
71:	learn: 17.6106998	total: 337ms	remaining: 131ms
72:	learn: 17.4816270	total: 342ms	remaining: 127ms
73:	learn: 17.4025554	total: 347ms	remaining: 122ms
74:	learn: 17.2902108	total: 351ms	remaining: 117ms
75:	learn: 17.2158048	total: 355ms	remaining: 112ms
76:	learn: 17.1261053	total: 360ms	remaining: 107ms
77:	learn: 17.0308917	total: 364ms	remaining: 103ms
78:	learn: 16.9546705	total: 372ms	remaining: 99ms
79:	learn: 16.8319165	total: 380ms	remaining: 95ms
80:	learn: 16.7687017	total: 389ms	remaining: 91.3ms
81:	learn: 16.6972326	total: 397ms	remaining: 87.1ms
82:	learn: 16.6124580	total: 403ms	remaining: 82.5ms
83:	learn: 16.4999052	total: 408ms	remaining: 77.7ms
84:	learn: 16.4302484	total: 413ms	remaining: 73ms
85:	learn: 16.3201363	total: 418ms	remaining: 68.1ms
86:	learn: 16.2534314	total: 424ms	remaining: 63.3ms
87:	learn: 16.1720485	total: 429ms	remaining: 58.5ms
88:	learn: 16.0625751	total: 434ms	remaining: 53.7ms
89:	learn: 15.9135088	total: 440ms	remaining: 48.9ms
90:	learn: 15.8658863	total: 445ms	remaining: 44ms
91:	learn: 15.8066805	total: 450ms	remaining: 39.2ms
92:	learn: 15.7412103	total: 455ms	remaining: 34.3ms
93:	learn: 15.6542776	total: 460ms	remaining: 29.4ms
94:	learn: 15.5760334	total: 466ms	remaining: 24.5ms
95:	learn: 15.5434131	total: 471ms	remaining: 19.6ms
96:	learn: 15.4709561	total: 475ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 480ms	remaining: 9.79ms
98:	learn: 15.3752761	total: 484ms	remaining: 4.89ms
99:	learn: 15.3106595	total: 488ms	remaining: 0us
0:	learn: 46.7142257	total: 4.37ms	remaining: 433ms
1:	learn: 45.7634153	total: 8.78ms	remaining: 430ms
2:	learn: 45.0054253	total: 12.7ms	remaining: 410ms
3:	learn: 44.2120432	total: 17.2ms	remaining: 413ms
4:	learn: 43.3960472	total: 21.8ms	remaining: 414ms
5:	learn: 42.8588120	total: 26.1ms	remaining: 409ms
6:	learn: 41.9533701	total: 30.7ms	remaining: 408ms
7:	learn: 41.2745030	total: 35.5ms	remaining: 408ms
8:	learn: 40.6797495	total: 39.9ms	remaining: 403ms
9:	learn: 39.9899571	total: 44.8ms	remaining: 403ms
10:	learn: 39.4682100	total: 49.1ms	remaining: 397ms
11:	learn: 39.0305595	total: 57.1ms	remaining: 419ms
12:	learn: 38.4200417	total: 65.1ms	remaining: 436ms
13:	learn: 37.8425194	total: 74.4ms	remaining: 457ms
14:	learn: 37.4203127	total: 80.2ms	remaining: 454ms
15:	learn: 36.9917688	total: 87ms	remaining: 457ms
16:	learn: 36.5544138	total: 92.1ms	remaining: 450ms
17:	learn: 36.0727019	total: 97.3ms	remaining: 443ms
18:	learn: 35.4835715	total: 102ms	remaining: 436ms
19:	learn: 34.9865654	total: 108ms	remaining: 431ms
20:	learn: 34.6063373	total: 113ms	remaining: 424ms
21:	learn: 34.0997289	total: 118ms	remaining: 418ms
22:	learn: 33.7313171	total: 123ms	remaining: 412ms
23:	learn: 33.3582000	total: 128ms	remaining: 405ms
24:	learn: 32.9432456	total: 133ms	remaining: 399ms
25:	learn: 32.5220888	total: 138ms	remaining: 393ms
26:	learn: 32.2172292	total: 143ms	remaining: 386ms
27:	learn: 31.8972904	total: 147ms	remaining: 379ms
28:	learn: 31.6405350	total: 153ms	remaining: 374ms
29:	learn: 31.4167702	total: 158ms	remaining: 368ms
30:	learn: 30.8541961	total: 160ms	remaining: 356ms
31:	learn: 30.5572111	total: 164ms	remaining: 349ms
32:	learn: 30.1700399	total: 169ms	remaining: 343ms
33:	learn: 29.8537271	total: 173ms	remaining: 336ms
34:	learn: 29.6192540	total: 178ms	remaining: 330ms
35:	learn: 29.3276362	total: 182ms	remaining: 324ms
36:	learn: 28.9985179	total: 187ms	remaining: 318ms
37:	learn: 28.7046880	total: 191ms	remaining: 312ms
38:	learn: 28.4412677	total: 196ms	remaining: 306ms
39:	learn: 28.1277292	total: 200ms	remaining: 300ms
40:	learn: 27.9000750	total: 205ms	remaining: 295ms
41:	learn: 27.5433162	total: 209ms	remaining: 289ms
42:	learn: 27.2493285	total: 214ms	remaining: 284ms
43:	learn: 26.9576632	total: 216ms	remaining: 275ms
44:	learn: 26.6177110	total: 221ms	remaining: 270ms
45:	learn: 26.2812456	total: 226ms	remaining: 266ms
46:	learn: 26.0803859	total: 231ms	remaining: 260ms
47:	learn: 25.9543581	total: 236ms	remaining: 255ms
48:	learn: 25.7951582	total: 240ms	remaining: 250ms
49:	learn: 25.6548184	total: 245ms	remaining: 245ms
50:	learn: 25.4010843	total: 249ms	remaining: 239ms
51:	learn: 24.9773937	total: 254ms	remaining: 235ms
52:	learn: 24.8026156	total: 263ms	remaining: 233ms
53:	learn: 24.5568053	total: 272ms	remaining: 231ms
54:	learn: 24.2281839	total: 280ms	remaining: 229ms
55:	learn: 23.9202795	total: 287ms	remaining: 225ms
56:	learn: 23.7625591	total: 292ms	remaining: 220ms
57:	learn: 23.5429721	total: 297ms	remaining: 215ms
58:	learn: 23.3175893	total: 302ms	remaining: 210ms
59:	learn: 23.2035130	total: 307ms	remaining: 205ms
60:	learn: 23.0232450	total: 313ms	remaining: 200ms
61:	learn: 22.8384958	total: 318ms	remaining: 195ms
62:	learn: 22.6499902	total: 323ms	remaining: 190ms
63:	learn: 22.4577426	total: 328ms	remaining: 184ms
64:	learn: 22.3333158	total: 333ms	remaining: 179ms
65:	learn: 22.2064131	total: 338ms	remaining: 174ms
66:	learn: 22.1434971	total: 343ms	remaining: 169ms
67:	learn: 21.9596519	total: 348ms	remaining: 164ms
68:	learn: 21.8475576	total: 353ms	remaining: 159ms
69:	learn: 21.6954745	total: 359ms	remaining: 154ms
70:	learn: 21.5635976	total: 363ms	remaining: 148ms
71:	learn: 21.4588506	total: 367ms	remaining: 143ms
72:	learn: 21.3527268	total: 372ms	remaining: 138ms
73:	learn: 21.2661288	total: 377ms	remaining: 132ms
74:	learn: 21.1817333	total: 381ms	remaining: 127ms
75:	learn: 21.0527553	total: 385ms	remaining: 122ms
76:	learn: 20.9229021	total: 389ms	remaining: 116ms
77:	learn: 20.7563946	total: 394ms	remaining: 111ms
78:	learn: 20.6569831	total: 399ms	remaining: 106ms
79:	learn: 20.4982663	total: 404ms	remaining: 101ms
80:	learn: 20.3185460	total: 409ms	remaining: 95.8ms
81:	learn: 20.2096241	total: 413ms	remaining: 90.7ms
82:	learn: 20.1274891	total: 418ms	remaining: 85.6ms
83:	learn: 20.0740139	total: 423ms	remaining: 80.6ms
84:	learn: 19.9630699	total: 428ms	remaining: 75.6ms
85:	learn: 19.8753899	total: 433ms	remaining: 70.5ms
86:	learn: 19.6563612	total: 438ms	remaining: 65.4ms
87:	learn: 19.4680232	total: 442ms	remaining: 60.3ms
88:	learn: 19.3503431	total: 447ms	remaining: 55.3ms
89:	learn: 19.2221379	total: 452ms	remaining: 50.2ms
90:	learn: 19.0732542	total: 460ms	remaining: 45.5ms
91:	learn: 18.9825190	total: 468ms	remaining: 40.7ms
92:	learn: 18.8839009	total: 476ms	remaining: 35.9ms
93:	learn: 18.8012219	total: 484ms	remaining: 30.9ms
94:	learn: 18.7172713	total: 489ms	remaining: 25.7ms
95:	learn: 18.6201170	total: 494ms	remaining: 20.6ms
96:	learn: 18.5318611	total: 500ms	remaining: 15.5ms
97:	learn: 18.3833356	total: 505ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 510ms	remaining: 5.16ms
99:	learn: 18.2227333	total: 516ms	remaining: 0us
0:	learn: 46.3764524	total: 4.49ms	remaining: 445ms
1:	learn: 45.5561269	total: 8.72ms	remaining: 427ms
2:	learn: 44.8811245	total: 12.4ms	remaining: 402ms
3:	learn: 44.0788617	total: 16.3ms	remaining: 391ms
4:	learn: 43.3619790	total: 20.5ms	remaining: 389ms
5:	learn: 42.6912112	total: 25.5ms	remaining: 399ms
6:	learn: 42.2292118	total: 29.4ms	remaining: 390ms
7:	learn: 41.7725191	total: 33.2ms	remaining: 382ms
8:	learn: 41.1676614	total: 37.7ms	remaining: 381ms
9:	learn: 40.5771076	total: 41.9ms	remaining: 377ms
10:	learn: 39.8343757	total: 45.8ms	remaining: 371ms
11:	learn: 39.3761142	total: 49.8ms	remaining: 365ms
12:	learn: 38.5254692	total: 54.2ms	remaining: 363ms
13:	learn: 37.9629555	total: 58.9ms	remaining: 362ms
14:	learn: 37.4418438	total: 62.9ms	remaining: 357ms
15:	learn: 37.0507283	total: 67.3ms	remaining: 353ms
16:	learn: 36.6264217	total: 71.7ms	remaining: 350ms
17:	learn: 36.1114940	total: 76.5ms	remaining: 349ms
18:	learn: 35.7193862	total: 81ms	remaining: 345ms
19:	learn: 35.3301177	total: 85.6ms	remaining: 342ms
20:	learn: 35.0598280	total: 94.3ms	remaining: 355ms
21:	learn: 34.5469736	total: 102ms	remaining: 360ms
22:	learn: 34.2064215	total: 110ms	remaining: 369ms
23:	learn: 33.7280710	total: 116ms	remaining: 369ms
24:	learn: 33.3282940	total: 122ms	remaining: 367ms
25:	learn: 32.8478961	total: 128ms	remaining: 363ms
26:	learn: 32.5722164	total: 133ms	remaining: 360ms
27:	learn: 32.2457019	total: 138ms	remaining: 355ms
28:	learn: 31.9230495	total: 143ms	remaining: 350ms
29:	learn: 31.4311611	total: 149ms	remaining: 347ms
30:	learn: 30.9179052	total: 154ms	remaining: 342ms
31:	learn: 30.6201141	total: 159ms	remaining: 338ms
32:	learn: 30.3421106	total: 164ms	remaining: 334ms
33:	learn: 29.9885373	total: 169ms	remaining: 328ms
34:	learn: 29.7462780	total: 173ms	remaining: 322ms
35:	learn: 29.3607153	total: 178ms	remaining: 316ms
36:	learn: 29.1793078	total: 182ms	remaining: 311ms
37:	learn: 28.9276538	total: 188ms	remaining: 306ms
38:	learn: 28.6903934	total: 193ms	remaining: 302ms
39:	learn: 28.2095033	total: 198ms	remaining: 297ms
40:	learn: 27.7990608	total: 202ms	remaining: 291ms
41:	learn: 27.5406632	total: 206ms	remaining: 285ms
42:	learn: 27.2575376	total: 210ms	remaining: 279ms
43:	learn: 26.9741707	total: 215ms	remaining: 273ms
44:	learn: 26.6606899	total: 219ms	remaining: 267ms
45:	learn: 26.4015833	total: 222ms	remaining: 261ms
46:	learn: 26.1828993	total: 226ms	remaining: 255ms
47:	learn: 26.0233709	total: 229ms	remaining: 248ms
48:	learn: 25.9300399	total: 233ms	remaining: 242ms
49:	learn: 25.5861489	total: 237ms	remaining: 237ms
50:	learn: 25.4322012	total: 241ms	remaining: 232ms
51:	learn: 25.1595644	total: 246ms	remaining: 227ms
52:	learn: 24.9955303	total: 249ms	remaining: 221ms
53:	learn: 24.7273966	total: 253ms	remaining: 216ms
54:	learn: 24.5747978	total: 258ms	remaining: 211ms
55:	learn: 24.3807977	total: 262ms	remaining: 206ms
56:	learn: 24.1689569	total: 266ms	remaining: 201ms
57:	learn: 23.9898221	total: 271ms	remaining: 196ms
58:	learn: 23.7566414	total: 275ms	remaining: 191ms
59:	learn: 23.6641165	total: 279ms	remaining: 186ms
60:	learn: 23.5658066	total: 284ms	remaining: 181ms
61:	learn: 23.4338851	total: 288ms	remaining: 177ms
62:	learn: 23.2408837	total: 292ms	remaining: 172ms
63:	learn: 23.0642038	total: 297ms	remaining: 167ms
64:	learn: 22.9032045	total: 310ms	remaining: 167ms
65:	learn: 22.7736138	total: 320ms	remaining: 165ms
66:	learn: 22.6836443	total: 328ms	remaining: 162ms
67:	learn: 22.5983654	total: 334ms	remaining: 157ms
68:	learn: 22.4419813	total: 340ms	remaining: 153ms
69:	learn: 22.2863339	total: 345ms	remaining: 148ms
70:	learn: 22.1792943	total: 351ms	remaining: 143ms
71:	learn: 22.1130574	total: 356ms	remaining: 138ms
72:	learn: 21.9858161	total: 361ms	remaining: 134ms
73:	learn: 21.8577784	total: 366ms	remaining: 129ms
74:	learn: 21.7845222	total: 372ms	remaining: 124ms
75:	learn: 21.6831390	total: 377ms	remaining: 119ms
76:	learn: 21.6292521	total: 381ms	remaining: 114ms
77:	learn: 21.5789330	total: 386ms	remaining: 109ms
78:	learn: 21.5420942	total: 390ms	remaining: 104ms
79:	learn: 21.4280939	total: 395ms	remaining: 98.7ms
80:	learn: 21.3641165	total: 399ms	remaining: 93.7ms
81:	learn: 21.2734814	total: 405ms	remaining: 88.8ms
82:	learn: 21.2220323	total: 411ms	remaining: 84.1ms
83:	learn: 21.0625792	total: 415ms	remaining: 79ms
84:	learn: 20.9488320	total: 419ms	remaining: 73.9ms
85:	learn: 20.8504255	total: 423ms	remaining: 68.8ms
86:	learn: 20.7848510	total: 427ms	remaining: 63.8ms
87:	learn: 20.7247442	total: 431ms	remaining: 58.7ms
88:	learn: 20.5698590	total: 435ms	remaining: 53.7ms
89:	learn: 20.4067620	total: 438ms	remaining: 48.7ms
90:	learn: 20.3062482	total: 443ms	remaining: 43.8ms
91:	learn: 20.2029696	total: 447ms	remaining: 38.8ms
92:	learn: 20.1384849	total: 451ms	remaining: 34ms
93:	learn: 20.0260709	total: 456ms	remaining: 29.1ms
94:	learn: 19.9122100	total: 460ms	remaining: 24.2ms
95:	learn: 19.8648487	total: 464ms	remaining: 19.3ms
96:	learn: 19.8207072	total: 468ms	remaining: 14.5ms
97:	learn: 19.7261189	total: 472ms	remaining: 9.64ms
98:	learn: 19.7042438	total: 477ms	remaining: 4.82ms
99:	learn: 19.6546645	total: 482ms	remaining: 0us
0:	learn: 47.0239288	total: 5.18ms	remaining: 513ms
1:	learn: 46.2253829	total: 10.2ms	remaining: 500ms
2:	learn: 45.5580301	total: 15.3ms	remaining: 495ms
3:	learn: 44.7273237	total: 20.5ms	remaining: 492ms
4:	learn: 43.8867421	total: 25.8ms	remaining: 490ms
5:	learn: 43.3615911	total: 30.9ms	remaining: 484ms
6:	learn: 42.8548390	total: 36.1ms	remaining: 480ms
7:	learn: 42.1606758	total: 41.4ms	remaining: 476ms
8:	learn: 41.6625870	total: 46.2ms	remaining: 467ms
9:	learn: 40.9497092	total: 51.4ms	remaining: 462ms
10:	learn: 40.1886318	total: 56.4ms	remaining: 456ms
11:	learn: 39.7456423	total: 62ms	remaining: 455ms
12:	learn: 39.1171373	total: 68.6ms	remaining: 459ms
13:	learn: 38.5451069	total: 74.9ms	remaining: 460ms
14:	learn: 38.0155834	total: 79.7ms	remaining: 452ms
15:	learn: 37.5631354	total: 84.8ms	remaining: 445ms
16:	learn: 37.1030023	total: 89.5ms	remaining: 437ms
17:	learn: 36.4563029	total: 93.9ms	remaining: 428ms
18:	learn: 36.0160976	total: 98.4ms	remaining: 420ms
19:	learn: 35.5079827	total: 103ms	remaining: 412ms
20:	learn: 35.2111885	total: 108ms	remaining: 404ms
21:	learn: 34.9397465	total: 111ms	remaining: 395ms
22:	learn: 34.5270048	total: 116ms	remaining: 387ms
23:	learn: 34.0169260	total: 120ms	remaining: 381ms
24:	learn: 33.7454892	total: 124ms	remaining: 373ms
25:	learn: 33.2648157	total: 128ms	remaining: 366ms
26:	learn: 32.8899427	total: 133ms	remaining: 359ms
27:	learn: 32.6185050	total: 138ms	remaining: 355ms
28:	learn: 32.3528531	total: 142ms	remaining: 348ms
29:	learn: 32.0859923	total: 147ms	remaining: 342ms
30:	learn: 31.6511144	total: 151ms	remaining: 337ms
31:	learn: 31.2571765	total: 156ms	remaining: 332ms
32:	learn: 30.9770049	total: 160ms	remaining: 325ms
33:	learn: 30.6084872	total: 165ms	remaining: 320ms
34:	learn: 30.3448632	total: 170ms	remaining: 315ms
35:	learn: 30.0360942	total: 178ms	remaining: 316ms
36:	learn: 29.6648968	total: 185ms	remaining: 315ms
37:	learn: 29.3165114	total: 194ms	remaining: 317ms
38:	learn: 29.0829198	total: 201ms	remaining: 314ms
39:	learn: 28.7752064	total: 207ms	remaining: 310ms
40:	learn: 28.3622191	total: 212ms	remaining: 305ms
41:	learn: 28.1346631	total: 217ms	remaining: 300ms
42:	learn: 27.9585719	total: 222ms	remaining: 294ms
43:	learn: 27.6565566	total: 227ms	remaining: 289ms
44:	learn: 27.3616172	total: 232ms	remaining: 284ms
45:	learn: 27.0658637	total: 238ms	remaining: 279ms
46:	learn: 26.8660382	total: 257ms	remaining: 290ms
47:	learn: 26.6536078	total: 262ms	remaining: 284ms
48:	learn: 26.3524440	total: 268ms	remaining: 279ms
49:	learn: 26.1595277	total: 272ms	remaining: 272ms
50:	learn: 25.9273523	total: 277ms	remaining: 266ms
51:	learn: 25.7195580	total: 281ms	remaining: 260ms
52:	learn: 25.5730225	total: 286ms	remaining: 254ms
53:	learn: 25.3455276	total: 291ms	remaining: 248ms
54:	learn: 25.2289675	total: 295ms	remaining: 242ms
55:	learn: 25.0133024	total: 300ms	remaining: 236ms
56:	learn: 24.8406714	total: 305ms	remaining: 230ms
57:	learn: 24.6367857	total: 309ms	remaining: 224ms
58:	learn: 24.5338177	total: 314ms	remaining: 218ms
59:	learn: 24.3799964	total: 318ms	remaining: 212ms
60:	learn: 24.1447492	total: 322ms	remaining: 206ms
61:	learn: 23.9880495	total: 326ms	remaining: 200ms
62:	learn: 23.7140630	total: 330ms	remaining: 194ms
63:	learn: 23.5003791	total: 335ms	remaining: 188ms
64:	learn: 23.3207645	total: 339ms	remaining: 183ms
65:	learn: 23.1958356	total: 344ms	remaining: 177ms
66:	learn: 23.0471302	total: 348ms	remaining: 172ms
67:	learn: 22.8977183	total: 353ms	remaining: 166ms
68:	learn: 22.7187400	total: 357ms	remaining: 160ms
69:	learn: 22.6523405	total: 361ms	remaining: 155ms
70:	learn: 22.4767453	total: 366ms	remaining: 149ms
71:	learn: 22.3243677	total: 370ms	remaining: 144ms
72:	learn: 22.2133096	total: 378ms	remaining: 140ms
73:	learn: 22.1151713	total: 384ms	remaining: 135ms
74:	learn: 22.0296666	total: 394ms	remaining: 131ms
75:	learn: 21.9195980	total: 399ms	remaining: 126ms
76:	learn: 21.8401730	total: 406ms	remaining: 121ms
77:	learn: 21.8079797	total: 411ms	remaining: 116ms
78:	learn: 21.7274109	total: 417ms	remaining: 111ms
79:	learn: 21.6663032	total: 421ms	remaining: 105ms
80:	learn: 21.5633117	total: 426ms	remaining: 100ms
81:	learn: 21.4542467	total: 431ms	remaining: 94.7ms
82:	learn: 21.3177957	total: 436ms	remaining: 89.4ms
83:	learn: 21.1289167	total: 442ms	remaining: 84.2ms
84:	learn: 21.0297368	total: 457ms	remaining: 80.7ms
85:	learn: 20.9089564	total: 462ms	remaining: 75.2ms
86:	learn: 20.7653988	total: 467ms	remaining: 69.8ms
87:	learn: 20.6521894	total: 472ms	remaining: 64.4ms
88:	learn: 20.5193021	total: 477ms	remaining: 59ms
89:	learn: 20.4361620	total: 481ms	remaining: 53.4ms
90:	learn: 20.3546710	total: 485ms	remaining: 48ms
91:	learn: 20.2513296	total: 489ms	remaining: 42.5ms
92:	learn: 20.1605550	total: 493ms	remaining: 37.1ms
93:	learn: 20.0515942	total: 496ms	remaining: 31.7ms
94:	learn: 19.9800764	total: 500ms	remaining: 26.3ms
95:	learn: 19.8996532	total: 504ms	remaining: 21ms
96:	learn: 19.8450910	total: 508ms	remaining: 15.7ms
97:	learn: 19.7887346	total: 512ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 516ms	remaining: 5.21ms
99:	learn: 19.6328825	total: 520ms	remaining: 0us
0:	learn: 27.5585353	total: 8.64ms	remaining: 855ms
1:	learn: 27.1656995	total: 16.6ms	remaining: 815ms
2:	learn: 26.8590175	total: 23.6ms	remaining: 762ms
3:	learn: 26.5818406	total: 31.3ms	remaining: 752ms
4:	learn: 26.1148663	total: 36.5ms	remaining: 694ms
5:	learn: 25.7690484	total: 41.6ms	remaining: 652ms
6:	learn: 25.3489206	total: 46.7ms	remaining: 621ms
7:	learn: 24.9542406	total: 51.6ms	remaining: 594ms
8:	learn: 24.6777517	total: 56.7ms	remaining: 573ms
9:	learn: 24.3242344	total: 62.3ms	remaining: 560ms
10:	learn: 24.0383073	total: 67.3ms	remaining: 544ms
11:	learn: 23.7383420	total: 72.2ms	remaining: 529ms
12:	learn: 23.3461670	total: 77.2ms	remaining: 517ms
13:	learn: 23.0928636	total: 82ms	remaining: 504ms
14:	learn: 22.8770414	total: 86.6ms	remaining: 491ms
15:	learn: 22.6323214	total: 91.5ms	remaining: 481ms
16:	learn: 22.3597072	total: 97.8ms	remaining: 478ms
17:	learn: 22.1079813	total: 103ms	remaining: 469ms
18:	learn: 21.8421199	total: 107ms	remaining: 456ms
19:	learn: 21.6576508	total: 111ms	remaining: 445ms
20:	learn: 21.4301268	total: 115ms	remaining: 434ms
21:	learn: 21.2287388	total: 119ms	remaining: 424ms
22:	learn: 21.0553872	total: 123ms	remaining: 413ms
23:	learn: 20.8977091	total: 128ms	remaining: 404ms
24:	learn: 20.6619051	total: 132ms	remaining: 395ms
25:	learn: 20.5040955	total: 135ms	remaining: 386ms
26:	learn: 20.3181195	total: 140ms	remaining: 377ms
27:	learn: 20.0869436	total: 143ms	remaining: 369ms
28:	learn: 19.9375985	total: 148ms	remaining: 362ms
29:	learn: 19.8247516	total: 152ms	remaining: 355ms
30:	learn: 19.6261697	total: 156ms	remaining: 348ms
31:	learn: 19.4547236	total: 160ms	remaining: 340ms
32:	learn: 19.3157092	total: 164ms	remaining: 334ms
33:	learn: 19.1561419	total: 169ms	remaining: 327ms
34:	learn: 19.0453620	total: 173ms	remaining: 322ms
35:	learn: 18.8738574	total: 177ms	remaining: 315ms
36:	learn: 18.7072907	total: 182ms	remaining: 310ms
37:	learn: 18.5877943	total: 187ms	remaining: 305ms
38:	learn: 18.4436380	total: 192ms	remaining: 300ms
39:	learn: 18.3463356	total: 196ms	remaining: 294ms
40:	learn: 18.2008059	total: 201ms	remaining: 289ms
41:	learn: 18.0582079	total: 209ms	remaining: 289ms
42:	learn: 17.8891982	total: 217ms	remaining: 287ms
43:	learn: 17.7332246	total: 226ms	remaining: 288ms
44:	learn: 17.6206421	total: 232ms	remaining: 283ms
45:	learn: 17.4982800	total: 238ms	remaining: 280ms
46:	learn: 17.3970150	total: 243ms	remaining: 275ms
47:	learn: 17.3058203	total: 249ms	remaining: 269ms
48:	learn: 17.1789256	total: 255ms	remaining: 265ms
49:	learn: 17.0916229	total: 260ms	remaining: 260ms
50:	learn: 16.9859820	total: 265ms	remaining: 255ms
51:	learn: 16.8995582	total: 271ms	remaining: 250ms
52:	learn: 16.8137014	total: 276ms	remaining: 245ms
53:	learn: 16.7021451	total: 282ms	remaining: 240ms
54:	learn: 16.5895582	total: 287ms	remaining: 235ms
55:	learn: 16.5015639	total: 293ms	remaining: 230ms
56:	learn: 16.4356637	total: 298ms	remaining: 225ms
57:	learn: 16.3514525	total: 304ms	remaining: 220ms
58:	learn: 16.2401369	total: 309ms	remaining: 215ms
59:	learn: 16.1293223	total: 313ms	remaining: 209ms
60:	learn: 16.0271167	total: 317ms	remaining: 203ms
61:	learn: 15.9126257	total: 321ms	remaining: 197ms
62:	learn: 15.8391096	total: 325ms	remaining: 191ms
63:	learn: 15.7441773	total: 328ms	remaining: 185ms
64:	learn: 15.6885195	total: 333ms	remaining: 179ms
65:	learn: 15.6052039	total: 337ms	remaining: 173ms
66:	learn: 15.5074202	total: 341ms	remaining: 168ms
67:	learn: 15.4054338	total: 345ms	remaining: 162ms
68:	learn: 15.2885714	total: 349ms	remaining: 157ms
69:	learn: 15.2157472	total: 354ms	remaining: 152ms
70:	learn: 15.1031554	total: 359ms	remaining: 146ms
71:	learn: 15.0237470	total: 363ms	remaining: 141ms
72:	learn: 14.9756825	total: 368ms	remaining: 136ms
73:	learn: 14.8840596	total: 373ms	remaining: 131ms
74:	learn: 14.8077061	total: 377ms	remaining: 126ms
75:	learn: 14.7444437	total: 382ms	remaining: 121ms
76:	learn: 14.6751720	total: 387ms	remaining: 115ms
77:	learn: 14.5830333	total: 394ms	remaining: 111ms
78:	learn: 14.5241206	total: 401ms	remaining: 107ms
79:	learn: 14.4892731	total: 408ms	remaining: 102ms
80:	learn: 14.4256605	total: 415ms	remaining: 97.3ms
81:	learn: 14.3666860	total: 430ms	remaining: 94.3ms
82:	learn: 14.2938372	total: 435ms	remaining: 89ms
83:	learn: 14.2161532	total: 440ms	remaining: 83.8ms
84:	learn: 14.1582910	total: 445ms	remaining: 78.5ms
85:	learn: 14.1029153	total: 450ms	remaining: 73.2ms
86:	learn: 14.0475835	total: 455ms	remaining: 68ms
87:	learn: 13.9892661	total: 461ms	remaining: 62.8ms
88:	learn: 13.9481628	total: 466ms	remaining: 57.6ms
89:	learn: 13.8483991	total: 473ms	remaining: 52.5ms
90:	learn: 13.7775614	total: 478ms	remaining: 47.2ms
91:	learn: 13.7304585	total: 482ms	remaining: 41.9ms
92:	learn: 13.6783381	total: 488ms	remaining: 36.7ms
93:	learn: 13.6356964	total: 494ms	remaining: 31.5ms
94:	learn: 13.5924371	total: 498ms	remaining: 26.2ms
95:	learn: 13.5400746	total: 502ms	remaining: 20.9ms
96:	learn: 13.4897333	total: 506ms	remaining: 15.7ms
97:	learn: 13.4470321	total: 511ms	remaining: 10.4ms
98:	learn: 13.3856082	total: 516ms	remaining: 5.21ms
99:	learn: 13.3082371	total: 520ms	remaining: 0us
0:	learn: 43.0395283	total: 5.04ms	remaining: 499ms
1:	learn: 42.1130223	total: 9.51ms	remaining: 466ms
2:	learn: 41.1753409	total: 14.3ms	remaining: 462ms
3:	learn: 40.3637444	total: 18.7ms	remaining: 448ms
4:	learn: 39.6508088	total: 23.2ms	remaining: 441ms
5:	learn: 38.7217934	total: 27.7ms	remaining: 434ms
6:	learn: 37.8538055	total: 32.6ms	remaining: 433ms
7:	learn: 36.9793574	total: 37.3ms	remaining: 428ms
8:	learn: 36.3076984	total: 46ms	remaining: 465ms
9:	learn: 35.6673160	total: 53.6ms	remaining: 482ms
10:	learn: 34.8889800	total: 61.8ms	remaining: 500ms
11:	learn: 34.1675517	total: 68.8ms	remaining: 505ms
12:	learn: 33.6779564	total: 74.3ms	remaining: 497ms
13:	learn: 33.0710039	total: 79.9ms	remaining: 491ms
14:	learn: 32.4966674	total: 85ms	remaining: 481ms
15:	learn: 31.9492856	total: 90.1ms	remaining: 473ms
16:	learn: 31.5108129	total: 95.3ms	remaining: 465ms
17:	learn: 30.9804023	total: 101ms	remaining: 458ms
18:	learn: 30.4169089	total: 105ms	remaining: 450ms
19:	learn: 29.8930375	total: 110ms	remaining: 442ms
20:	learn: 29.3974421	total: 116ms	remaining: 436ms
21:	learn: 28.8792307	total: 121ms	remaining: 430ms
22:	learn: 28.3894474	total: 126ms	remaining: 423ms
23:	learn: 27.9921276	total: 131ms	remaining: 415ms
24:	learn: 27.6158887	total: 137ms	remaining: 410ms
25:	learn: 27.2866950	total: 143ms	remaining: 407ms
26:	learn: 26.8770708	total: 148ms	remaining: 400ms
27:	learn: 26.6233005	total: 153ms	remaining: 393ms
28:	learn: 26.2921934	total: 158ms	remaining: 386ms
29:	learn: 25.9156920	total: 163ms	remaining: 380ms
30:	learn: 25.5311106	total: 165ms	remaining: 367ms
31:	learn: 25.2178997	total: 169ms	remaining: 360ms
32:	learn: 24.8572196	total: 174ms	remaining: 353ms
33:	learn: 24.5849710	total: 178ms	remaining: 345ms
34:	learn: 24.2209190	total: 182ms	remaining: 338ms
35:	learn: 23.8708250	total: 186ms	remaining: 331ms
36:	learn: 23.5325279	total: 190ms	remaining: 324ms
37:	learn: 23.2116148	total: 194ms	remaining: 317ms
38:	learn: 22.9696787	total: 198ms	remaining: 310ms
39:	learn: 22.7936783	total: 203ms	remaining: 304ms
40:	learn: 22.6228847	total: 207ms	remaining: 298ms
41:	learn: 22.3691527	total: 211ms	remaining: 291ms
42:	learn: 22.1002173	total: 215ms	remaining: 285ms
43:	learn: 21.9157268	total: 219ms	remaining: 279ms
44:	learn: 21.7229102	total: 224ms	remaining: 274ms
45:	learn: 21.4642005	total: 229ms	remaining: 268ms
46:	learn: 21.3029442	total: 233ms	remaining: 262ms
47:	learn: 21.1469792	total: 237ms	remaining: 257ms
48:	learn: 20.9458235	total: 241ms	remaining: 251ms
49:	learn: 20.7335242	total: 246ms	remaining: 246ms
50:	learn: 20.5440269	total: 250ms	remaining: 240ms
51:	learn: 20.3661449	total: 258ms	remaining: 238ms
52:	learn: 20.2158134	total: 265ms	remaining: 235ms
53:	learn: 19.9934873	total: 272ms	remaining: 232ms
54:	learn: 19.7879739	total: 279ms	remaining: 228ms
55:	learn: 19.6630460	total: 287ms	remaining: 225ms
56:	learn: 19.5152729	total: 293ms	remaining: 221ms
57:	learn: 19.3581128	total: 298ms	remaining: 216ms
58:	learn: 19.2209303	total: 303ms	remaining: 211ms
59:	learn: 19.0965248	total: 308ms	remaining: 206ms
60:	learn: 19.0035954	total: 313ms	remaining: 200ms
61:	learn: 18.8554149	total: 318ms	remaining: 195ms
62:	learn: 18.7095427	total: 324ms	remaining: 190ms
63:	learn: 18.5751494	total: 329ms	remaining: 185ms
64:	learn: 18.4678251	total: 334ms	remaining: 180ms
65:	learn: 18.3500325	total: 339ms	remaining: 175ms
66:	learn: 18.2088983	total: 344ms	remaining: 169ms
67:	learn: 18.0737705	total: 349ms	remaining: 164ms
68:	learn: 17.9325058	total: 355ms	remaining: 160ms
69:	learn: 17.8003911	total: 360ms	remaining: 154ms
70:	learn: 17.7385366	total: 364ms	remaining: 149ms
71:	learn: 17.6106998	total: 368ms	remaining: 143ms
72:	learn: 17.4816270	total: 372ms	remaining: 138ms
73:	learn: 17.4025554	total: 376ms	remaining: 132ms
74:	learn: 17.2902108	total: 381ms	remaining: 127ms
75:	learn: 17.2158048	total: 384ms	remaining: 121ms
76:	learn: 17.1261053	total: 388ms	remaining: 116ms
77:	learn: 17.0308917	total: 393ms	remaining: 111ms
78:	learn: 16.9546705	total: 397ms	remaining: 106ms
79:	learn: 16.8319165	total: 402ms	remaining: 100ms
80:	learn: 16.7687017	total: 406ms	remaining: 95.1ms
81:	learn: 16.6972326	total: 410ms	remaining: 89.9ms
82:	learn: 16.6124580	total: 414ms	remaining: 84.8ms
83:	learn: 16.4999052	total: 418ms	remaining: 79.7ms
84:	learn: 16.4302484	total: 423ms	remaining: 74.6ms
85:	learn: 16.3201363	total: 427ms	remaining: 69.6ms
86:	learn: 16.2534314	total: 432ms	remaining: 64.6ms
87:	learn: 16.1720485	total: 437ms	remaining: 59.5ms
88:	learn: 16.0625751	total: 441ms	remaining: 54.5ms
89:	learn: 15.9135088	total: 446ms	remaining: 49.5ms
90:	learn: 15.8658863	total: 450ms	remaining: 44.5ms
91:	learn: 15.8066805	total: 455ms	remaining: 39.6ms
92:	learn: 15.7412103	total: 463ms	remaining: 34.8ms
93:	learn: 15.6542776	total: 471ms	remaining: 30ms
94:	learn: 15.5760334	total: 478ms	remaining: 25.2ms
95:	learn: 15.5434131	total: 485ms	remaining: 20.2ms
96:	learn: 15.4709561	total: 490ms	remaining: 15.2ms
97:	learn: 15.4449618	total: 496ms	remaining: 10.1ms
98:	learn: 15.3752761	total: 501ms	remaining: 5.06ms
99:	learn: 15.3106595	total: 506ms	remaining: 0us
0:	learn: 46.7142257	total: 5.12ms	remaining: 507ms
1:	learn: 45.7634153	total: 9.71ms	remaining: 476ms
2:	learn: 45.0054253	total: 13.8ms	remaining: 447ms
3:	learn: 44.2120432	total: 18.2ms	remaining: 438ms
4:	learn: 43.3960472	total: 22ms	remaining: 418ms
5:	learn: 42.8588120	total: 25.9ms	remaining: 406ms
6:	learn: 41.9533701	total: 30ms	remaining: 399ms
7:	learn: 41.2745030	total: 34ms	remaining: 391ms
8:	learn: 40.6797495	total: 38.3ms	remaining: 388ms
9:	learn: 39.9899571	total: 42.4ms	remaining: 382ms
10:	learn: 39.4682100	total: 46.7ms	remaining: 378ms
11:	learn: 39.0305595	total: 51.1ms	remaining: 375ms
12:	learn: 38.4200417	total: 55.8ms	remaining: 374ms
13:	learn: 37.8425194	total: 59.7ms	remaining: 366ms
14:	learn: 37.4203127	total: 63.6ms	remaining: 360ms
15:	learn: 36.9917688	total: 68ms	remaining: 357ms
16:	learn: 36.5544138	total: 72.8ms	remaining: 355ms
17:	learn: 36.0727019	total: 77.1ms	remaining: 351ms
18:	learn: 35.4835715	total: 81.4ms	remaining: 347ms
19:	learn: 34.9865654	total: 85.8ms	remaining: 343ms
20:	learn: 34.6063373	total: 90.3ms	remaining: 340ms
21:	learn: 34.0997289	total: 94.7ms	remaining: 336ms
22:	learn: 33.7313171	total: 99.3ms	remaining: 332ms
23:	learn: 33.3582000	total: 108ms	remaining: 341ms
24:	learn: 32.9432456	total: 115ms	remaining: 344ms
25:	learn: 32.5220888	total: 122ms	remaining: 347ms
26:	learn: 32.2172292	total: 128ms	remaining: 347ms
27:	learn: 31.8972904	total: 135ms	remaining: 348ms
28:	learn: 31.6405350	total: 141ms	remaining: 344ms
29:	learn: 31.4167702	total: 146ms	remaining: 340ms
30:	learn: 30.8541961	total: 148ms	remaining: 329ms
31:	learn: 30.5572111	total: 153ms	remaining: 326ms
32:	learn: 30.1700399	total: 159ms	remaining: 323ms
33:	learn: 29.8537271	total: 165ms	remaining: 321ms
34:	learn: 29.6192540	total: 170ms	remaining: 316ms
35:	learn: 29.3276362	total: 176ms	remaining: 312ms
36:	learn: 28.9985179	total: 181ms	remaining: 308ms
37:	learn: 28.7046880	total: 186ms	remaining: 304ms
38:	learn: 28.4412677	total: 191ms	remaining: 299ms
39:	learn: 28.1277292	total: 196ms	remaining: 294ms
40:	learn: 27.9000750	total: 201ms	remaining: 289ms
41:	learn: 27.5433162	total: 207ms	remaining: 285ms
42:	learn: 27.2493285	total: 211ms	remaining: 280ms
43:	learn: 26.9576632	total: 213ms	remaining: 271ms
44:	learn: 26.6177110	total: 217ms	remaining: 265ms
45:	learn: 26.2812456	total: 221ms	remaining: 259ms
46:	learn: 26.0803859	total: 225ms	remaining: 254ms
47:	learn: 25.9543581	total: 229ms	remaining: 248ms
48:	learn: 25.7951582	total: 233ms	remaining: 242ms
49:	learn: 25.6548184	total: 237ms	remaining: 237ms
50:	learn: 25.4010843	total: 241ms	remaining: 231ms
51:	learn: 24.9773937	total: 245ms	remaining: 226ms
52:	learn: 24.8026156	total: 250ms	remaining: 221ms
53:	learn: 24.5568053	total: 253ms	remaining: 216ms
54:	learn: 24.2281839	total: 257ms	remaining: 210ms
55:	learn: 23.9202795	total: 261ms	remaining: 205ms
56:	learn: 23.7625591	total: 266ms	remaining: 201ms
57:	learn: 23.5429721	total: 270ms	remaining: 196ms
58:	learn: 23.3175893	total: 275ms	remaining: 191ms
59:	learn: 23.2035130	total: 279ms	remaining: 186ms
60:	learn: 23.0232450	total: 284ms	remaining: 182ms
61:	learn: 22.8384958	total: 288ms	remaining: 177ms
62:	learn: 22.6499902	total: 293ms	remaining: 172ms
63:	learn: 22.4577426	total: 298ms	remaining: 167ms
64:	learn: 22.3333158	total: 305ms	remaining: 164ms
65:	learn: 22.2064131	total: 312ms	remaining: 161ms
66:	learn: 22.1434971	total: 322ms	remaining: 159ms
67:	learn: 21.9596519	total: 328ms	remaining: 154ms
68:	learn: 21.8475576	total: 334ms	remaining: 150ms
69:	learn: 21.6954745	total: 340ms	remaining: 146ms
70:	learn: 21.5635976	total: 345ms	remaining: 141ms
71:	learn: 21.4588506	total: 350ms	remaining: 136ms
72:	learn: 21.3527268	total: 355ms	remaining: 131ms
73:	learn: 21.2661288	total: 361ms	remaining: 127ms
74:	learn: 21.1817333	total: 366ms	remaining: 122ms
75:	learn: 21.0527553	total: 372ms	remaining: 117ms
76:	learn: 20.9229021	total: 377ms	remaining: 113ms
77:	learn: 20.7563946	total: 382ms	remaining: 108ms
78:	learn: 20.6569831	total: 387ms	remaining: 103ms
79:	learn: 20.4982663	total: 392ms	remaining: 98ms
80:	learn: 20.3185460	total: 397ms	remaining: 93.1ms
81:	learn: 20.2096241	total: 402ms	remaining: 88.3ms
82:	learn: 20.1274891	total: 407ms	remaining: 83.4ms
83:	learn: 20.0740139	total: 411ms	remaining: 78.3ms
84:	learn: 19.9630699	total: 416ms	remaining: 73.4ms
85:	learn: 19.8753899	total: 420ms	remaining: 68.4ms
86:	learn: 19.6563612	total: 425ms	remaining: 63.4ms
87:	learn: 19.4680232	total: 429ms	remaining: 58.5ms
88:	learn: 19.3503431	total: 433ms	remaining: 53.5ms
89:	learn: 19.2221379	total: 437ms	remaining: 48.6ms
90:	learn: 19.0732542	total: 442ms	remaining: 43.7ms
91:	learn: 18.9825190	total: 446ms	remaining: 38.8ms
92:	learn: 18.8839009	total: 450ms	remaining: 33.9ms
93:	learn: 18.8012219	total: 455ms	remaining: 29ms
94:	learn: 18.7172713	total: 459ms	remaining: 24.1ms
95:	learn: 18.6201170	total: 464ms	remaining: 19.3ms
96:	learn: 18.5318611	total: 469ms	remaining: 14.5ms
97:	learn: 18.3833356	total: 473ms	remaining: 9.66ms
98:	learn: 18.3289700	total: 478ms	remaining: 4.83ms
99:	learn: 18.2227333	total: 483ms	remaining: 0us
0:	learn: 46.3764524	total: 5.7ms	remaining: 565ms
1:	learn: 45.5561269	total: 10.7ms	remaining: 524ms
2:	learn: 44.8811245	total: 15.8ms	remaining: 511ms
3:	learn: 44.0788617	total: 21.1ms	remaining: 506ms
4:	learn: 43.3619790	total: 30.6ms	remaining: 582ms
5:	learn: 42.6912112	total: 36.1ms	remaining: 565ms
6:	learn: 42.2292118	total: 41.6ms	remaining: 552ms
7:	learn: 41.7725191	total: 47.2ms	remaining: 542ms
8:	learn: 41.1676614	total: 52.7ms	remaining: 532ms
9:	learn: 40.5771076	total: 57.8ms	remaining: 520ms
10:	learn: 39.8343757	total: 61.9ms	remaining: 501ms
11:	learn: 39.3761142	total: 65.8ms	remaining: 482ms
12:	learn: 38.5254692	total: 69.7ms	remaining: 466ms
13:	learn: 37.9629555	total: 74ms	remaining: 455ms
14:	learn: 37.4418438	total: 77.7ms	remaining: 440ms
15:	learn: 37.0507283	total: 81.7ms	remaining: 429ms
16:	learn: 36.6264217	total: 85.8ms	remaining: 419ms
17:	learn: 36.1114940	total: 90ms	remaining: 410ms
18:	learn: 35.7193862	total: 94.1ms	remaining: 401ms
19:	learn: 35.3301177	total: 98.2ms	remaining: 393ms
20:	learn: 35.0598280	total: 102ms	remaining: 384ms
21:	learn: 34.5469736	total: 106ms	remaining: 376ms
22:	learn: 34.2064215	total: 110ms	remaining: 369ms
23:	learn: 33.7280710	total: 114ms	remaining: 362ms
24:	learn: 33.3282940	total: 118ms	remaining: 354ms
25:	learn: 32.8478961	total: 123ms	remaining: 349ms
26:	learn: 32.5722164	total: 127ms	remaining: 344ms
27:	learn: 32.2457019	total: 132ms	remaining: 340ms
28:	learn: 31.9230495	total: 136ms	remaining: 334ms
29:	learn: 31.4311611	total: 141ms	remaining: 328ms
30:	learn: 30.9179052	total: 145ms	remaining: 323ms
31:	learn: 30.6201141	total: 149ms	remaining: 318ms
32:	learn: 30.3421106	total: 154ms	remaining: 313ms
33:	learn: 29.9885373	total: 161ms	remaining: 313ms
34:	learn: 29.7462780	total: 168ms	remaining: 312ms
35:	learn: 29.3607153	total: 177ms	remaining: 314ms
36:	learn: 29.1793078	total: 184ms	remaining: 313ms
37:	learn: 28.9276538	total: 191ms	remaining: 312ms
38:	learn: 28.6903934	total: 196ms	remaining: 307ms
39:	learn: 28.2095033	total: 201ms	remaining: 302ms
40:	learn: 27.7990608	total: 206ms	remaining: 297ms
41:	learn: 27.5406632	total: 211ms	remaining: 292ms
42:	learn: 27.2575376	total: 217ms	remaining: 287ms
43:	learn: 26.9741707	total: 222ms	remaining: 282ms
44:	learn: 26.6606899	total: 227ms	remaining: 277ms
45:	learn: 26.4015833	total: 232ms	remaining: 273ms
46:	learn: 26.1828993	total: 237ms	remaining: 268ms
47:	learn: 26.0233709	total: 240ms	remaining: 260ms
48:	learn: 25.9300399	total: 246ms	remaining: 256ms
49:	learn: 25.5861489	total: 251ms	remaining: 251ms
50:	learn: 25.4322012	total: 256ms	remaining: 246ms
51:	learn: 25.1595644	total: 263ms	remaining: 242ms
52:	learn: 24.9955303	total: 267ms	remaining: 237ms
53:	learn: 24.7273966	total: 271ms	remaining: 231ms
54:	learn: 24.5747978	total: 276ms	remaining: 226ms
55:	learn: 24.3807977	total: 280ms	remaining: 220ms
56:	learn: 24.1689569	total: 285ms	remaining: 215ms
57:	learn: 23.9898221	total: 289ms	remaining: 209ms
58:	learn: 23.7566414	total: 293ms	remaining: 204ms
59:	learn: 23.6641165	total: 298ms	remaining: 199ms
60:	learn: 23.5658066	total: 303ms	remaining: 193ms
61:	learn: 23.4338851	total: 308ms	remaining: 189ms
62:	learn: 23.2408837	total: 312ms	remaining: 183ms
63:	learn: 23.0642038	total: 317ms	remaining: 178ms
64:	learn: 22.9032045	total: 322ms	remaining: 173ms
65:	learn: 22.7736138	total: 326ms	remaining: 168ms
66:	learn: 22.6836443	total: 331ms	remaining: 163ms
67:	learn: 22.5983654	total: 336ms	remaining: 158ms
68:	learn: 22.4419813	total: 342ms	remaining: 154ms
69:	learn: 22.2863339	total: 347ms	remaining: 149ms
70:	learn: 22.1792943	total: 352ms	remaining: 144ms
71:	learn: 22.1130574	total: 357ms	remaining: 139ms
72:	learn: 21.9858161	total: 366ms	remaining: 135ms
73:	learn: 21.8577784	total: 375ms	remaining: 132ms
74:	learn: 21.7845222	total: 383ms	remaining: 128ms
75:	learn: 21.6831390	total: 391ms	remaining: 124ms
76:	learn: 21.6292521	total: 397ms	remaining: 119ms
77:	learn: 21.5789330	total: 402ms	remaining: 113ms
78:	learn: 21.5420942	total: 408ms	remaining: 108ms
79:	learn: 21.4280939	total: 413ms	remaining: 103ms
80:	learn: 21.3641165	total: 418ms	remaining: 98.1ms
81:	learn: 21.2734814	total: 423ms	remaining: 92.9ms
82:	learn: 21.2220323	total: 429ms	remaining: 87.8ms
83:	learn: 21.0625792	total: 434ms	remaining: 82.7ms
84:	learn: 20.9488320	total: 439ms	remaining: 77.6ms
85:	learn: 20.8504255	total: 445ms	remaining: 72.4ms
86:	learn: 20.7848510	total: 449ms	remaining: 67.1ms
87:	learn: 20.7247442	total: 455ms	remaining: 62ms
88:	learn: 20.5698590	total: 461ms	remaining: 57ms
89:	learn: 20.4067620	total: 465ms	remaining: 51.7ms
90:	learn: 20.3062482	total: 470ms	remaining: 46.5ms
91:	learn: 20.2029696	total: 475ms	remaining: 41.3ms
92:	learn: 20.1384849	total: 479ms	remaining: 36.1ms
93:	learn: 20.0260709	total: 484ms	remaining: 30.9ms
94:	learn: 19.9122100	total: 488ms	remaining: 25.7ms
95:	learn: 19.8648487	total: 492ms	remaining: 20.5ms
96:	learn: 19.8207072	total: 496ms	remaining: 15.3ms
97:	learn: 19.7261189	total: 500ms	remaining: 10.2ms
98:	learn: 19.7042438	total: 504ms	remaining: 5.09ms
99:	learn: 19.6546645	total: 508ms	remaining: 0us
0:	learn: 47.0239288	total: 4.72ms	remaining: 467ms
1:	learn: 46.2253829	total: 9.56ms	remaining: 469ms
2:	learn: 45.5580301	total: 29.4ms	remaining: 950ms
3:	learn: 44.7273237	total: 35.8ms	remaining: 859ms
4:	learn: 43.8867421	total: 43ms	remaining: 816ms
5:	learn: 43.3615911	total: 48ms	remaining: 752ms
6:	learn: 42.8548390	total: 53.2ms	remaining: 706ms
7:	learn: 42.1606758	total: 58ms	remaining: 667ms
8:	learn: 41.6625870	total: 63.3ms	remaining: 640ms
9:	learn: 40.9497092	total: 68.5ms	remaining: 616ms
10:	learn: 40.1886318	total: 74ms	remaining: 599ms
11:	learn: 39.7456423	total: 79.7ms	remaining: 584ms
12:	learn: 39.1171373	total: 85.1ms	remaining: 569ms
13:	learn: 38.5451069	total: 90.4ms	remaining: 555ms
14:	learn: 38.0155834	total: 95.7ms	remaining: 542ms
15:	learn: 37.5631354	total: 101ms	remaining: 532ms
16:	learn: 37.1030023	total: 106ms	remaining: 518ms
17:	learn: 36.4563029	total: 111ms	remaining: 506ms
18:	learn: 36.0160976	total: 117ms	remaining: 499ms
19:	learn: 35.5079827	total: 121ms	remaining: 486ms
20:	learn: 35.2111885	total: 125ms	remaining: 471ms
21:	learn: 34.9397465	total: 129ms	remaining: 458ms
22:	learn: 34.5270048	total: 134ms	remaining: 447ms
23:	learn: 34.0169260	total: 138ms	remaining: 436ms
24:	learn: 33.7454892	total: 141ms	remaining: 424ms
25:	learn: 33.2648157	total: 145ms	remaining: 413ms
26:	learn: 32.8899427	total: 149ms	remaining: 404ms
27:	learn: 32.6185050	total: 153ms	remaining: 394ms
28:	learn: 32.3528531	total: 157ms	remaining: 385ms
29:	learn: 32.0859923	total: 161ms	remaining: 375ms
30:	learn: 31.6511144	total: 165ms	remaining: 367ms
31:	learn: 31.2571765	total: 169ms	remaining: 359ms
32:	learn: 30.9770049	total: 173ms	remaining: 351ms
33:	learn: 30.6084872	total: 177ms	remaining: 343ms
34:	learn: 30.3448632	total: 181ms	remaining: 336ms
35:	learn: 30.0360942	total: 185ms	remaining: 329ms
36:	learn: 29.6648968	total: 189ms	remaining: 321ms
37:	learn: 29.3165114	total: 193ms	remaining: 316ms
38:	learn: 29.0829198	total: 198ms	remaining: 309ms
39:	learn: 28.7752064	total: 202ms	remaining: 303ms
40:	learn: 28.3622191	total: 206ms	remaining: 297ms
41:	learn: 28.1346631	total: 211ms	remaining: 291ms
42:	learn: 27.9585719	total: 215ms	remaining: 284ms
43:	learn: 27.6565566	total: 219ms	remaining: 279ms
44:	learn: 27.3616172	total: 223ms	remaining: 273ms
45:	learn: 27.0658637	total: 228ms	remaining: 267ms
46:	learn: 26.8660382	total: 232ms	remaining: 262ms
47:	learn: 26.6536078	total: 237ms	remaining: 257ms
48:	learn: 26.3524440	total: 242ms	remaining: 252ms
49:	learn: 26.1595277	total: 246ms	remaining: 246ms
50:	learn: 25.9273523	total: 251ms	remaining: 241ms
51:	learn: 25.7195580	total: 255ms	remaining: 236ms
52:	learn: 25.5730225	total: 260ms	remaining: 230ms
53:	learn: 25.3455276	total: 265ms	remaining: 225ms
54:	learn: 25.2289675	total: 273ms	remaining: 223ms
55:	learn: 25.0133024	total: 280ms	remaining: 220ms
56:	learn: 24.8406714	total: 290ms	remaining: 218ms
57:	learn: 24.6367857	total: 297ms	remaining: 215ms
58:	learn: 24.5338177	total: 302ms	remaining: 210ms
59:	learn: 24.3799964	total: 307ms	remaining: 205ms
60:	learn: 24.1447492	total: 312ms	remaining: 200ms
61:	learn: 23.9880495	total: 318ms	remaining: 195ms
62:	learn: 23.7140630	total: 323ms	remaining: 190ms
63:	learn: 23.5003791	total: 328ms	remaining: 184ms
64:	learn: 23.3207645	total: 333ms	remaining: 179ms
65:	learn: 23.1958356	total: 338ms	remaining: 174ms
66:	learn: 23.0471302	total: 343ms	remaining: 169ms
67:	learn: 22.8977183	total: 347ms	remaining: 163ms
68:	learn: 22.7187400	total: 352ms	remaining: 158ms
69:	learn: 22.6523405	total: 357ms	remaining: 153ms
70:	learn: 22.4767453	total: 361ms	remaining: 148ms
71:	learn: 22.3243677	total: 366ms	remaining: 142ms
72:	learn: 22.2133096	total: 370ms	remaining: 137ms
73:	learn: 22.1151713	total: 375ms	remaining: 132ms
74:	learn: 22.0296666	total: 381ms	remaining: 127ms
75:	learn: 21.9195980	total: 386ms	remaining: 122ms
76:	learn: 21.8401730	total: 391ms	remaining: 117ms
77:	learn: 21.8079797	total: 395ms	remaining: 111ms
78:	learn: 21.7274109	total: 399ms	remaining: 106ms
79:	learn: 21.6663032	total: 404ms	remaining: 101ms
80:	learn: 21.5633117	total: 408ms	remaining: 95.7ms
81:	learn: 21.4542467	total: 412ms	remaining: 90.5ms
82:	learn: 21.3177957	total: 417ms	remaining: 85.3ms
83:	learn: 21.1289167	total: 421ms	remaining: 80.1ms
84:	learn: 21.0297368	total: 425ms	remaining: 75ms
85:	learn: 20.9089564	total: 430ms	remaining: 70ms
86:	learn: 20.7653988	total: 435ms	remaining: 64.9ms
87:	learn: 20.6521894	total: 440ms	remaining: 60ms
88:	learn: 20.5193021	total: 445ms	remaining: 55ms
89:	learn: 20.4361620	total: 450ms	remaining: 50ms
90:	learn: 20.3546710	total: 455ms	remaining: 45ms
91:	learn: 20.2513296	total: 459ms	remaining: 39.9ms
92:	learn: 20.1605550	total: 466ms	remaining: 35.1ms
93:	learn: 20.0515942	total: 475ms	remaining: 30.3ms
94:	learn: 19.9800764	total: 482ms	remaining: 25.4ms
95:	learn: 19.8996532	total: 490ms	remaining: 20.4ms
96:	learn: 19.8450910	total: 498ms	remaining: 15.4ms
97:	learn: 19.7887346	total: 503ms	remaining: 10.3ms
98:	learn: 19.7230872	total: 508ms	remaining: 5.13ms
99:	learn: 19.6328825	total: 514ms	remaining: 0us
0:	learn: 27.5585353	total: 4.67ms	remaining: 463ms
1:	learn: 27.1656995	total: 9.45ms	remaining: 463ms
2:	learn: 26.8590175	total: 14.1ms	remaining: 457ms
3:	learn: 26.5818406	total: 19.3ms	remaining: 462ms
4:	learn: 26.1148663	total: 24.5ms	remaining: 466ms
5:	learn: 25.7690484	total: 28.7ms	remaining: 450ms
6:	learn: 25.3489206	total: 32.7ms	remaining: 434ms
7:	learn: 24.9542406	total: 36.7ms	remaining: 422ms
8:	learn: 24.6777517	total: 40.8ms	remaining: 413ms
9:	learn: 24.3242344	total: 45.2ms	remaining: 407ms
10:	learn: 24.0383073	total: 49.1ms	remaining: 397ms
11:	learn: 23.7383420	total: 53.3ms	remaining: 391ms
12:	learn: 23.3461670	total: 57.4ms	remaining: 384ms
13:	learn: 23.0928636	total: 61.6ms	remaining: 378ms
14:	learn: 22.8770414	total: 65.5ms	remaining: 371ms
15:	learn: 22.6323214	total: 70ms	remaining: 368ms
16:	learn: 22.3597072	total: 74.1ms	remaining: 362ms
17:	learn: 22.1079813	total: 77.9ms	remaining: 355ms
18:	learn: 21.8421199	total: 82.1ms	remaining: 350ms
19:	learn: 21.6576508	total: 86.5ms	remaining: 346ms
20:	learn: 21.4301268	total: 91.1ms	remaining: 343ms
21:	learn: 21.2287388	total: 96ms	remaining: 340ms
22:	learn: 21.0553872	total: 101ms	remaining: 337ms
23:	learn: 20.8977091	total: 105ms	remaining: 333ms
24:	learn: 20.6619051	total: 110ms	remaining: 329ms
25:	learn: 20.5040955	total: 114ms	remaining: 325ms
26:	learn: 20.3181195	total: 119ms	remaining: 321ms
27:	learn: 20.0869436	total: 124ms	remaining: 318ms
28:	learn: 19.9375985	total: 132ms	remaining: 323ms
29:	learn: 19.8247516	total: 139ms	remaining: 325ms
30:	learn: 19.6261697	total: 147ms	remaining: 328ms
31:	learn: 19.4547236	total: 153ms	remaining: 325ms
32:	learn: 19.3157092	total: 159ms	remaining: 323ms
33:	learn: 19.1561419	total: 164ms	remaining: 319ms
34:	learn: 19.0453620	total: 169ms	remaining: 314ms
35:	learn: 18.8738574	total: 175ms	remaining: 311ms
36:	learn: 18.7072907	total: 180ms	remaining: 306ms
37:	learn: 18.5877943	total: 185ms	remaining: 302ms
38:	learn: 18.4436380	total: 190ms	remaining: 298ms
39:	learn: 18.3463356	total: 196ms	remaining: 294ms
40:	learn: 18.2008059	total: 201ms	remaining: 289ms
41:	learn: 18.0582079	total: 206ms	remaining: 284ms
42:	learn: 17.8891982	total: 211ms	remaining: 280ms
43:	learn: 17.7332246	total: 216ms	remaining: 275ms
44:	learn: 17.6206421	total: 221ms	remaining: 270ms
45:	learn: 17.4982800	total: 227ms	remaining: 266ms
46:	learn: 17.3970150	total: 232ms	remaining: 262ms
47:	learn: 17.3058203	total: 237ms	remaining: 256ms
48:	learn: 17.1789256	total: 241ms	remaining: 251ms
49:	learn: 17.0916229	total: 245ms	remaining: 245ms
50:	learn: 16.9859820	total: 249ms	remaining: 239ms
51:	learn: 16.8995582	total: 253ms	remaining: 234ms
52:	learn: 16.8137014	total: 257ms	remaining: 228ms
53:	learn: 16.7021451	total: 261ms	remaining: 222ms
54:	learn: 16.5895582	total: 265ms	remaining: 217ms
55:	learn: 16.5015639	total: 269ms	remaining: 211ms
56:	learn: 16.4356637	total: 273ms	remaining: 206ms
57:	learn: 16.3514525	total: 278ms	remaining: 201ms
58:	learn: 16.2401369	total: 282ms	remaining: 196ms
59:	learn: 16.1293223	total: 287ms	remaining: 191ms
60:	learn: 16.0271167	total: 291ms	remaining: 186ms
61:	learn: 15.9126257	total: 296ms	remaining: 182ms
62:	learn: 15.8391096	total: 301ms	remaining: 177ms
63:	learn: 15.7441773	total: 305ms	remaining: 172ms
64:	learn: 15.6885195	total: 309ms	remaining: 167ms
65:	learn: 15.6052039	total: 315ms	remaining: 162ms
66:	learn: 15.5074202	total: 324ms	remaining: 160ms
67:	learn: 15.4054338	total: 331ms	remaining: 156ms
68:	learn: 15.2885714	total: 338ms	remaining: 152ms
69:	learn: 15.2157472	total: 346ms	remaining: 148ms
70:	learn: 15.1031554	total: 351ms	remaining: 143ms
71:	learn: 15.0237470	total: 356ms	remaining: 138ms
72:	learn: 14.9756825	total: 361ms	remaining: 134ms
73:	learn: 14.8840596	total: 366ms	remaining: 129ms
74:	learn: 14.8077061	total: 372ms	remaining: 124ms
75:	learn: 14.7444437	total: 377ms	remaining: 119ms
76:	learn: 14.6751720	total: 383ms	remaining: 114ms
77:	learn: 14.5830333	total: 388ms	remaining: 109ms
78:	learn: 14.5241206	total: 393ms	remaining: 105ms
79:	learn: 14.4892731	total: 398ms	remaining: 99.5ms
80:	learn: 14.4256605	total: 403ms	remaining: 94.5ms
81:	learn: 14.3666860	total: 408ms	remaining: 89.5ms
82:	learn: 14.2938372	total: 413ms	remaining: 84.7ms
83:	learn: 14.2161532	total: 419ms	remaining: 79.8ms
84:	learn: 14.1582910	total: 423ms	remaining: 74.7ms
85:	learn: 14.1029153	total: 428ms	remaining: 69.6ms
86:	learn: 14.0475835	total: 432ms	remaining: 64.5ms
87:	learn: 13.9892661	total: 436ms	remaining: 59.4ms
88:	learn: 13.9481628	total: 440ms	remaining: 54.4ms
89:	learn: 13.8483991	total: 444ms	remaining: 49.3ms
90:	learn: 13.7775614	total: 448ms	remaining: 44.3ms
91:	learn: 13.7304585	total: 452ms	remaining: 39.3ms
92:	learn: 13.6783381	total: 456ms	remaining: 34.3ms
93:	learn: 13.6356964	total: 460ms	remaining: 29.4ms
94:	learn: 13.5924371	total: 464ms	remaining: 24.4ms
95:	learn: 13.5400746	total: 468ms	remaining: 19.5ms
96:	learn: 13.4897333	total: 472ms	remaining: 14.6ms
97:	learn: 13.4470321	total: 477ms	remaining: 9.73ms
98:	learn: 13.3856082	total: 481ms	remaining: 4.86ms
99:	learn: 13.3082371	total: 485ms	remaining: 0us
0:	learn: 43.0395283	total: 9.36ms	remaining: 927ms
1:	learn: 42.1130223	total: 18.2ms	remaining: 894ms
2:	learn: 41.1753409	total: 23.8ms	remaining: 771ms
3:	learn: 40.3637444	total: 30.9ms	remaining: 741ms
4:	learn: 39.6508088	total: 35.9ms	remaining: 682ms
5:	learn: 38.7217934	total: 41.2ms	remaining: 645ms
6:	learn: 37.8538055	total: 46.4ms	remaining: 616ms
7:	learn: 36.9793574	total: 51.6ms	remaining: 593ms
8:	learn: 36.3076984	total: 56.7ms	remaining: 573ms
9:	learn: 35.6673160	total: 62.1ms	remaining: 559ms
10:	learn: 34.8889800	total: 67.1ms	remaining: 543ms
11:	learn: 34.1675517	total: 72.2ms	remaining: 529ms
12:	learn: 33.6779564	total: 77.7ms	remaining: 520ms
13:	learn: 33.0710039	total: 83.2ms	remaining: 511ms
14:	learn: 32.4966674	total: 87.8ms	remaining: 497ms
15:	learn: 31.9492856	total: 93.5ms	remaining: 491ms
16:	learn: 31.5108129	total: 99.1ms	remaining: 484ms
17:	learn: 30.9804023	total: 104ms	remaining: 475ms
18:	learn: 30.4169089	total: 108ms	remaining: 462ms
19:	learn: 29.8930375	total: 113ms	remaining: 452ms
20:	learn: 29.3974421	total: 117ms	remaining: 442ms
21:	learn: 28.8792307	total: 122ms	remaining: 432ms
22:	learn: 28.3894474	total: 127ms	remaining: 424ms
23:	learn: 27.9921276	total: 131ms	remaining: 416ms
24:	learn: 27.6158887	total: 135ms	remaining: 406ms
25:	learn: 27.2866950	total: 140ms	remaining: 398ms
26:	learn: 26.8770708	total: 144ms	remaining: 390ms
27:	learn: 26.6233005	total: 148ms	remaining: 382ms
28:	learn: 26.2921934	total: 153ms	remaining: 374ms
29:	learn: 25.9156920	total: 157ms	remaining: 366ms
30:	learn: 25.5311106	total: 159ms	remaining: 353ms
31:	learn: 25.2178997	total: 163ms	remaining: 347ms
32:	learn: 24.8572196	total: 168ms	remaining: 340ms
33:	learn: 24.5849710	total: 172ms	remaining: 333ms
34:	learn: 24.2209190	total: 176ms	remaining: 326ms
35:	learn: 23.8708250	total: 180ms	remaining: 321ms
36:	learn: 23.5325279	total: 185ms	remaining: 315ms
37:	learn: 23.2116148	total: 190ms	remaining: 309ms
38:	learn: 22.9696787	total: 194ms	remaining: 304ms
39:	learn: 22.7936783	total: 199ms	remaining: 299ms
40:	learn: 22.6228847	total: 203ms	remaining: 293ms
41:	learn: 22.3691527	total: 208ms	remaining: 287ms
42:	learn: 22.1002173	total: 212ms	remaining: 282ms
43:	learn: 21.9157268	total: 223ms	remaining: 283ms
44:	learn: 21.7229102	total: 231ms	remaining: 283ms
45:	learn: 21.4642005	total: 239ms	remaining: 281ms
46:	learn: 21.3029442	total: 247ms	remaining: 279ms
47:	learn: 21.1469792	total: 252ms	remaining: 273ms
48:	learn: 20.9458235	total: 258ms	remaining: 268ms
49:	learn: 20.7335242	total: 263ms	remaining: 263ms
50:	learn: 20.5440269	total: 268ms	remaining: 257ms
51:	learn: 20.3661449	total: 273ms	remaining: 252ms
52:	learn: 20.2158134	total: 279ms	remaining: 247ms
53:	learn: 19.9934873	total: 284ms	remaining: 242ms
54:	learn: 19.7879739	total: 289ms	remaining: 236ms
55:	learn: 19.6630460	total: 293ms	remaining: 230ms
56:	learn: 19.5152729	total: 298ms	remaining: 225ms
57:	learn: 19.3581128	total: 302ms	remaining: 219ms
58:	learn: 19.2209303	total: 307ms	remaining: 213ms
59:	learn: 19.0965248	total: 312ms	remaining: 208ms
60:	learn: 19.0035954	total: 316ms	remaining: 202ms
61:	learn: 18.8554149	total: 322ms	remaining: 197ms
62:	learn: 18.7095427	total: 328ms	remaining: 193ms
63:	learn: 18.5751494	total: 333ms	remaining: 187ms
64:	learn: 18.4678251	total: 338ms	remaining: 182ms
65:	learn: 18.3500325	total: 342ms	remaining: 176ms
66:	learn: 18.2088983	total: 347ms	remaining: 171ms
67:	learn: 18.0737705	total: 352ms	remaining: 166ms
68:	learn: 17.9325058	total: 357ms	remaining: 160ms
69:	learn: 17.8003911	total: 361ms	remaining: 155ms
70:	learn: 17.7385366	total: 365ms	remaining: 149ms
71:	learn: 17.6106998	total: 369ms	remaining: 144ms
72:	learn: 17.4816270	total: 374ms	remaining: 138ms
73:	learn: 17.4025554	total: 378ms	remaining: 133ms
74:	learn: 17.2902108	total: 383ms	remaining: 128ms
75:	learn: 17.2158048	total: 387ms	remaining: 122ms
76:	learn: 17.1261053	total: 392ms	remaining: 117ms
77:	learn: 17.0308917	total: 397ms	remaining: 112ms
78:	learn: 16.9546705	total: 401ms	remaining: 107ms
79:	learn: 16.8319165	total: 406ms	remaining: 102ms
80:	learn: 16.7687017	total: 410ms	remaining: 96.3ms
81:	learn: 16.6972326	total: 415ms	remaining: 91ms
82:	learn: 16.6124580	total: 419ms	remaining: 85.8ms
83:	learn: 16.4999052	total: 424ms	remaining: 80.8ms
84:	learn: 16.4302484	total: 433ms	remaining: 76.4ms
85:	learn: 16.3201363	total: 440ms	remaining: 71.6ms
86:	learn: 16.2534314	total: 448ms	remaining: 66.9ms
87:	learn: 16.1720485	total: 456ms	remaining: 62.1ms
88:	learn: 16.0625751	total: 461ms	remaining: 57ms
89:	learn: 15.9135088	total: 467ms	remaining: 51.8ms
90:	learn: 15.8658863	total: 472ms	remaining: 46.7ms
91:	learn: 15.8066805	total: 477ms	remaining: 41.5ms
92:	learn: 15.7412103	total: 482ms	remaining: 36.3ms
93:	learn: 15.6542776	total: 487ms	remaining: 31.1ms
94:	learn: 15.5760334	total: 492ms	remaining: 25.9ms
95:	learn: 15.5434131	total: 498ms	remaining: 20.7ms
96:	learn: 15.4709561	total: 503ms	remaining: 15.6ms
97:	learn: 15.4449618	total: 508ms	remaining: 10.4ms
98:	learn: 15.3752761	total: 513ms	remaining: 5.18ms
99:	learn: 15.3106595	total: 518ms	remaining: 0us
0:	learn: 46.7142257	total: 4.54ms	remaining: 450ms
1:	learn: 45.7634153	total: 8.73ms	remaining: 428ms
2:	learn: 45.0054253	total: 13ms	remaining: 420ms
3:	learn: 44.2120432	total: 16.9ms	remaining: 405ms
4:	learn: 43.3960472	total: 20.9ms	remaining: 396ms
5:	learn: 42.8588120	total: 25ms	remaining: 392ms
6:	learn: 41.9533701	total: 29.8ms	remaining: 396ms
7:	learn: 41.2745030	total: 34.1ms	remaining: 392ms
8:	learn: 40.6797495	total: 38.7ms	remaining: 391ms
9:	learn: 39.9899571	total: 43.5ms	remaining: 391ms
10:	learn: 39.4682100	total: 47.7ms	remaining: 386ms
11:	learn: 39.0305595	total: 52.1ms	remaining: 382ms
12:	learn: 38.4200417	total: 56.5ms	remaining: 378ms
13:	learn: 37.8425194	total: 61.1ms	remaining: 375ms
14:	learn: 37.4203127	total: 68.9ms	remaining: 390ms
15:	learn: 36.9917688	total: 76.4ms	remaining: 401ms
16:	learn: 36.5544138	total: 85.2ms	remaining: 416ms
17:	learn: 36.0727019	total: 93ms	remaining: 424ms
18:	learn: 35.4835715	total: 98.2ms	remaining: 419ms
19:	learn: 34.9865654	total: 103ms	remaining: 413ms
20:	learn: 34.6063373	total: 108ms	remaining: 408ms
21:	learn: 34.0997289	total: 114ms	remaining: 403ms
22:	learn: 33.7313171	total: 119ms	remaining: 397ms
23:	learn: 33.3582000	total: 124ms	remaining: 391ms
24:	learn: 32.9432456	total: 129ms	remaining: 386ms
25:	learn: 32.5220888	total: 134ms	remaining: 381ms
26:	learn: 32.2172292	total: 139ms	remaining: 376ms
27:	learn: 31.8972904	total: 144ms	remaining: 371ms
28:	learn: 31.6405350	total: 149ms	remaining: 366ms
29:	learn: 31.4167702	total: 154ms	remaining: 359ms
30:	learn: 30.8541961	total: 156ms	remaining: 348ms
31:	learn: 30.5572111	total: 162ms	remaining: 344ms
32:	learn: 30.1700399	total: 167ms	remaining: 339ms
33:	learn: 29.8537271	total: 171ms	remaining: 331ms
34:	learn: 29.6192540	total: 175ms	remaining: 325ms
35:	learn: 29.3276362	total: 179ms	remaining: 318ms
36:	learn: 28.9985179	total: 183ms	remaining: 312ms
37:	learn: 28.7046880	total: 187ms	remaining: 305ms
38:	learn: 28.4412677	total: 192ms	remaining: 300ms
39:	learn: 28.1277292	total: 196ms	remaining: 294ms
40:	learn: 27.9000750	total: 200ms	remaining: 288ms
41:	learn: 27.5433162	total: 204ms	remaining: 282ms
42:	learn: 27.2493285	total: 209ms	remaining: 277ms
43:	learn: 26.9576632	total: 210ms	remaining: 268ms
44:	learn: 26.6177110	total: 214ms	remaining: 262ms
45:	learn: 26.2812456	total: 218ms	remaining: 256ms
46:	learn: 26.0803859	total: 223ms	remaining: 251ms
47:	learn: 25.9543581	total: 227ms	remaining: 246ms
48:	learn: 25.7951582	total: 232ms	remaining: 241ms
49:	learn: 25.6548184	total: 236ms	remaining: 236ms
50:	learn: 25.4010843	total: 241ms	remaining: 231ms
51:	learn: 24.9773937	total: 245ms	remaining: 226ms
52:	learn: 24.8026156	total: 250ms	remaining: 222ms
53:	learn: 24.5568053	total: 254ms	remaining: 217ms
54:	learn: 24.2281839	total: 260ms	remaining: 212ms
55:	learn: 23.9202795	total: 267ms	remaining: 210ms
56:	learn: 23.7625591	total: 274ms	remaining: 207ms
57:	learn: 23.5429721	total: 283ms	remaining: 205ms
58:	learn: 23.3175893	total: 289ms	remaining: 201ms
59:	learn: 23.2035130	total: 295ms	remaining: 197ms
60:	learn: 23.0232450	total: 301ms	remaining: 192ms
61:	learn: 22.8384958	total: 306ms	remaining: 187ms
62:	learn: 22.6499902	total: 311ms	remaining: 183ms
63:	learn: 22.4577426	total: 316ms	remaining: 178ms
64:	learn: 22.3333158	total: 321ms	remaining: 173ms
65:	learn: 22.2064131	total: 326ms	remaining: 168ms
66:	learn: 22.1434971	total: 331ms	remaining: 163ms
67:	learn: 21.9596519	total: 345ms	remaining: 162ms
68:	learn: 21.8475576	total: 350ms	remaining: 157ms
69:	learn: 21.6954745	total: 356ms	remaining: 153ms
70:	learn: 21.5635976	total: 361ms	remaining: 147ms
71:	learn: 21.4588506	total: 366ms	remaining: 142ms
72:	learn: 21.3527268	total: 370ms	remaining: 137ms
73:	learn: 21.2661288	total: 375ms	remaining: 132ms
74:	learn: 21.1817333	total: 379ms	remaining: 126ms
75:	learn: 21.0527553	total: 384ms	remaining: 121ms
76:	learn: 20.9229021	total: 388ms	remaining: 116ms
77:	learn: 20.7563946	total: 393ms	remaining: 111ms
78:	learn: 20.6569831	total: 397ms	remaining: 106ms
79:	learn: 20.4982663	total: 402ms	remaining: 100ms
80:	learn: 20.3185460	total: 407ms	remaining: 95.4ms
81:	learn: 20.2096241	total: 411ms	remaining: 90.3ms
82:	learn: 20.1274891	total: 416ms	remaining: 85.1ms
83:	learn: 20.0740139	total: 420ms	remaining: 80.1ms
84:	learn: 19.9630699	total: 425ms	remaining: 75ms
85:	learn: 19.8753899	total: 430ms	remaining: 70ms
86:	learn: 19.6563612	total: 435ms	remaining: 65ms
87:	learn: 19.4680232	total: 439ms	remaining: 59.9ms
88:	learn: 19.3503431	total: 444ms	remaining: 54.9ms
89:	learn: 19.2221379	total: 449ms	remaining: 49.9ms
90:	learn: 19.0732542	total: 454ms	remaining: 44.9ms
91:	learn: 18.9825190	total: 459ms	remaining: 39.9ms
92:	learn: 18.8839009	total: 468ms	remaining: 35.2ms
93:	learn: 18.8012219	total: 477ms	remaining: 30.4ms
94:	learn: 18.7172713	total: 486ms	remaining: 25.6ms
95:	learn: 18.6201170	total: 494ms	remaining: 20.6ms
96:	learn: 18.5318611	total: 500ms	remaining: 15.5ms
97:	learn: 18.3833356	total: 508ms	remaining: 10.4ms
98:	learn: 18.3289700	total: 513ms	remaining: 5.18ms
99:	learn: 18.2227333	total: 518ms	remaining: 0us
0:	learn: 46.3764524	total: 4.93ms	remaining: 488ms
1:	learn: 45.5561269	total: 9.3ms	remaining: 456ms
2:	learn: 44.8811245	total: 13.4ms	remaining: 433ms
3:	learn: 44.0788617	total: 17.3ms	remaining: 416ms
4:	learn: 43.3619790	total: 22ms	remaining: 418ms
5:	learn: 42.6912112	total: 26ms	remaining: 407ms
6:	learn: 42.2292118	total: 30.1ms	remaining: 399ms
7:	learn: 41.7725191	total: 34.3ms	remaining: 395ms
8:	learn: 41.1676614	total: 38.7ms	remaining: 392ms
9:	learn: 40.5771076	total: 43ms	remaining: 387ms
10:	learn: 39.8343757	total: 47.4ms	remaining: 384ms
11:	learn: 39.3761142	total: 51.8ms	remaining: 380ms
12:	learn: 38.5254692	total: 56.4ms	remaining: 378ms
13:	learn: 37.9629555	total: 60.8ms	remaining: 373ms
14:	learn: 37.4418438	total: 65.3ms	remaining: 370ms
15:	learn: 37.0507283	total: 69.9ms	remaining: 367ms
16:	learn: 36.6264217	total: 74.4ms	remaining: 363ms
17:	learn: 36.1114940	total: 79.1ms	remaining: 360ms
18:	learn: 35.7193862	total: 83.6ms	remaining: 356ms
19:	learn: 35.3301177	total: 88.2ms	remaining: 353ms
20:	learn: 35.0598280	total: 92.8ms	remaining: 349ms
21:	learn: 34.5469736	total: 97.1ms	remaining: 344ms
22:	learn: 34.2064215	total: 103ms	remaining: 346ms
23:	learn: 33.7280710	total: 111ms	remaining: 351ms
24:	learn: 33.3282940	total: 118ms	remaining: 355ms
25:	learn: 32.8478961	total: 127ms	remaining: 360ms
26:	learn: 32.5722164	total: 134ms	remaining: 363ms
27:	learn: 32.2457019	total: 139ms	remaining: 359ms
28:	learn: 31.9230495	total: 145ms	remaining: 355ms
29:	learn: 31.4311611	total: 150ms	remaining: 351ms
30:	learn: 30.9179052	total: 155ms	remaining: 346ms
31:	learn: 30.6201141	total: 161ms	remaining: 341ms
32:	learn: 30.3421106	total: 166ms	remaining: 337ms
33:	learn: 29.9885373	total: 172ms	remaining: 333ms
34:	learn: 29.7462780	total: 177ms	remaining: 329ms
35:	learn: 29.3607153	total: 183ms	remaining: 325ms
36:	learn: 29.1793078	total: 189ms	remaining: 322ms
37:	learn: 28.9276538	total: 195ms	remaining: 317ms
38:	learn: 28.6903934	total: 200ms	remaining: 313ms
39:	learn: 28.2095033	total: 206ms	remaining: 309ms
40:	learn: 27.7990608	total: 211ms	remaining: 304ms
41:	learn: 27.5406632	total: 216ms	remaining: 298ms
42:	learn: 27.2575376	total: 220ms	remaining: 291ms
43:	learn: 26.9741707	total: 224ms	remaining: 285ms
44:	learn: 26.6606899	total: 228ms	remaining: 278ms
45:	learn: 26.4015833	total: 232ms	remaining: 272ms
46:	learn: 26.1828993	total: 236ms	remaining: 266ms
47:	learn: 26.0233709	total: 238ms	remaining: 258ms
48:	learn: 25.9300399	total: 242ms	remaining: 252ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 251ms	remaining: 241ms
51:	learn: 25.1595644	total: 255ms	remaining: 235ms
52:	learn: 24.9955303	total: 259ms	remaining: 229ms
53:	learn: 24.7273966	total: 263ms	remaining: 224ms
54:	learn: 24.5747978	total: 268ms	remaining: 219ms
55:	learn: 24.3807977	total: 273ms	remaining: 214ms
56:	learn: 24.1689569	total: 277ms	remaining: 209ms
57:	learn: 23.9898221	total: 282ms	remaining: 204ms
58:	learn: 23.7566414	total: 286ms	remaining: 199ms
59:	learn: 23.6641165	total: 291ms	remaining: 194ms
60:	learn: 23.5658066	total: 295ms	remaining: 189ms
61:	learn: 23.4338851	total: 300ms	remaining: 184ms
62:	learn: 23.2408837	total: 308ms	remaining: 181ms
63:	learn: 23.0642038	total: 315ms	remaining: 177ms
64:	learn: 22.9032045	total: 324ms	remaining: 174ms
65:	learn: 22.7736138	total: 329ms	remaining: 170ms
66:	learn: 22.6836443	total: 336ms	remaining: 166ms
67:	learn: 22.5983654	total: 341ms	remaining: 161ms
68:	learn: 22.4419813	total: 346ms	remaining: 156ms
69:	learn: 22.2863339	total: 351ms	remaining: 151ms
70:	learn: 22.1792943	total: 356ms	remaining: 146ms
71:	learn: 22.1130574	total: 362ms	remaining: 141ms
72:	learn: 21.9858161	total: 367ms	remaining: 136ms
73:	learn: 21.8577784	total: 372ms	remaining: 131ms
74:	learn: 21.7845222	total: 377ms	remaining: 126ms
75:	learn: 21.6831390	total: 382ms	remaining: 121ms
76:	learn: 21.6292521	total: 387ms	remaining: 116ms
77:	learn: 21.5789330	total: 392ms	remaining: 111ms
78:	learn: 21.5420942	total: 397ms	remaining: 106ms
79:	learn: 21.4280939	total: 402ms	remaining: 101ms
80:	learn: 21.3641165	total: 407ms	remaining: 95.4ms
81:	learn: 21.2734814	total: 411ms	remaining: 90.1ms
82:	learn: 21.2220323	total: 415ms	remaining: 84.9ms
83:	learn: 21.0625792	total: 419ms	remaining: 79.8ms
84:	learn: 20.9488320	total: 423ms	remaining: 74.6ms
85:	learn: 20.8504255	total: 427ms	remaining: 69.5ms
86:	learn: 20.7848510	total: 430ms	remaining: 64.3ms
87:	learn: 20.7247442	total: 434ms	remaining: 59.2ms
88:	learn: 20.5698590	total: 438ms	remaining: 54.2ms
89:	learn: 20.4067620	total: 443ms	remaining: 49.2ms
90:	learn: 20.3062482	total: 447ms	remaining: 44.2ms
91:	learn: 20.2029696	total: 451ms	remaining: 39.2ms
92:	learn: 20.1384849	total: 455ms	remaining: 34.3ms
93:	learn: 20.0260709	total: 459ms	remaining: 29.3ms
94:	learn: 19.9122100	total: 463ms	remaining: 24.4ms
95:	learn: 19.8648487	total: 468ms	remaining: 19.5ms
96:	learn: 19.8207072	total: 472ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 477ms	remaining: 9.73ms
98:	learn: 19.7042438	total: 481ms	remaining: 4.86ms
99:	learn: 19.6546645	total: 486ms	remaining: 0us
0:	learn: 47.0239288	total: 5.5ms	remaining: 545ms
1:	learn: 46.2253829	total: 10.6ms	remaining: 518ms
2:	learn: 45.5580301	total: 15.4ms	remaining: 497ms
3:	learn: 44.7273237	total: 20.6ms	remaining: 493ms
4:	learn: 43.8867421	total: 25.6ms	remaining: 486ms
5:	learn: 43.3615911	total: 30.5ms	remaining: 478ms
6:	learn: 42.8548390	total: 35.9ms	remaining: 477ms
7:	learn: 42.1606758	total: 40.8ms	remaining: 469ms
8:	learn: 41.6625870	total: 45.2ms	remaining: 457ms
9:	learn: 40.9497092	total: 49.6ms	remaining: 446ms
10:	learn: 40.1886318	total: 54.8ms	remaining: 443ms
11:	learn: 39.7456423	total: 60.6ms	remaining: 444ms
12:	learn: 39.1171373	total: 64.8ms	remaining: 434ms
13:	learn: 38.5451069	total: 68.8ms	remaining: 423ms
14:	learn: 38.0155834	total: 72.8ms	remaining: 412ms
15:	learn: 37.5631354	total: 77.1ms	remaining: 405ms
16:	learn: 37.1030023	total: 80.9ms	remaining: 395ms
17:	learn: 36.4563029	total: 84.7ms	remaining: 386ms
18:	learn: 36.0160976	total: 88.6ms	remaining: 378ms
19:	learn: 35.5079827	total: 92.5ms	remaining: 370ms
20:	learn: 35.2111885	total: 96.5ms	remaining: 363ms
21:	learn: 34.9397465	total: 100ms	remaining: 355ms
22:	learn: 34.5270048	total: 104ms	remaining: 348ms
23:	learn: 34.0169260	total: 108ms	remaining: 342ms
24:	learn: 33.7454892	total: 113ms	remaining: 338ms
25:	learn: 33.2648157	total: 117ms	remaining: 332ms
26:	learn: 32.8899427	total: 121ms	remaining: 326ms
27:	learn: 32.6185050	total: 124ms	remaining: 320ms
28:	learn: 32.3528531	total: 129ms	remaining: 316ms
29:	learn: 32.0859923	total: 133ms	remaining: 311ms
30:	learn: 31.6511144	total: 138ms	remaining: 306ms
31:	learn: 31.2571765	total: 142ms	remaining: 302ms
32:	learn: 30.9770049	total: 147ms	remaining: 298ms
33:	learn: 30.6084872	total: 151ms	remaining: 293ms
34:	learn: 30.3448632	total: 155ms	remaining: 288ms
35:	learn: 30.0360942	total: 160ms	remaining: 285ms
36:	learn: 29.6648968	total: 165ms	remaining: 280ms
37:	learn: 29.3165114	total: 174ms	remaining: 283ms
38:	learn: 29.0829198	total: 182ms	remaining: 284ms
39:	learn: 28.7752064	total: 190ms	remaining: 284ms
40:	learn: 28.3622191	total: 197ms	remaining: 284ms
41:	learn: 28.1346631	total: 203ms	remaining: 280ms
42:	learn: 27.9585719	total: 208ms	remaining: 275ms
43:	learn: 27.6565566	total: 213ms	remaining: 271ms
44:	learn: 27.3616172	total: 219ms	remaining: 267ms
45:	learn: 27.0658637	total: 224ms	remaining: 263ms
46:	learn: 26.8660382	total: 229ms	remaining: 258ms
47:	learn: 26.6536078	total: 249ms	remaining: 270ms
48:	learn: 26.3524440	total: 255ms	remaining: 265ms
49:	learn: 26.1595277	total: 260ms	remaining: 260ms
50:	learn: 25.9273523	total: 265ms	remaining: 255ms
51:	learn: 25.7195580	total: 270ms	remaining: 249ms
52:	learn: 25.5730225	total: 274ms	remaining: 243ms
53:	learn: 25.3455276	total: 279ms	remaining: 238ms
54:	learn: 25.2289675	total: 284ms	remaining: 232ms
55:	learn: 25.0133024	total: 288ms	remaining: 226ms
56:	learn: 24.8406714	total: 292ms	remaining: 220ms
57:	learn: 24.6367857	total: 296ms	remaining: 214ms
58:	learn: 24.5338177	total: 300ms	remaining: 209ms
59:	learn: 24.3799964	total: 304ms	remaining: 203ms
60:	learn: 24.1447492	total: 308ms	remaining: 197ms
61:	learn: 23.9880495	total: 312ms	remaining: 192ms
62:	learn: 23.7140630	total: 316ms	remaining: 186ms
63:	learn: 23.5003791	total: 321ms	remaining: 180ms
64:	learn: 23.3207645	total: 325ms	remaining: 175ms
65:	learn: 23.1958356	total: 329ms	remaining: 170ms
66:	learn: 23.0471302	total: 333ms	remaining: 164ms
67:	learn: 22.8977183	total: 338ms	remaining: 159ms
68:	learn: 22.7187400	total: 343ms	remaining: 154ms
69:	learn: 22.6523405	total: 347ms	remaining: 149ms
70:	learn: 22.4767453	total: 352ms	remaining: 144ms
71:	learn: 22.3243677	total: 356ms	remaining: 139ms
72:	learn: 22.2133096	total: 361ms	remaining: 133ms
73:	learn: 22.1151713	total: 370ms	remaining: 130ms
74:	learn: 22.0296666	total: 380ms	remaining: 127ms
75:	learn: 21.9195980	total: 389ms	remaining: 123ms
76:	learn: 21.8401730	total: 397ms	remaining: 119ms
77:	learn: 21.8079797	total: 403ms	remaining: 114ms
78:	learn: 21.7274109	total: 408ms	remaining: 108ms
79:	learn: 21.6663032	total: 413ms	remaining: 103ms
80:	learn: 21.5633117	total: 419ms	remaining: 98.2ms
81:	learn: 21.4542467	total: 424ms	remaining: 93ms
82:	learn: 21.3177957	total: 429ms	remaining: 87.9ms
83:	learn: 21.1289167	total: 434ms	remaining: 82.7ms
84:	learn: 21.0297368	total: 439ms	remaining: 77.6ms
85:	learn: 20.9089564	total: 445ms	remaining: 72.4ms
86:	learn: 20.7653988	total: 450ms	remaining: 67.3ms
87:	learn: 20.6521894	total: 455ms	remaining: 62ms
88:	learn: 20.5193021	total: 460ms	remaining: 56.8ms
89:	learn: 20.4361620	total: 465ms	remaining: 51.7ms
90:	learn: 20.3546710	total: 471ms	remaining: 46.5ms
91:	learn: 20.2513296	total: 475ms	remaining: 41.3ms
92:	learn: 20.1605550	total: 496ms	remaining: 37.3ms
93:	learn: 20.0515942	total: 500ms	remaining: 31.9ms
94:	learn: 19.9800764	total: 504ms	remaining: 26.5ms
95:	learn: 19.8996532	total: 509ms	remaining: 21.2ms
96:	learn: 19.8450910	total: 513ms	remaining: 15.9ms
97:	learn: 19.7887346	total: 517ms	remaining: 10.6ms
98:	learn: 19.7230872	total: 521ms	remaining: 5.27ms
99:	learn: 19.6328825	total: 526ms	remaining: 0us
0:	learn: 27.7143805	total: 7.24ms	remaining: 717ms
1:	learn: 27.2245894	total: 12.7ms	remaining: 621ms
2:	learn: 26.8693029	total: 17.5ms	remaining: 567ms
3:	learn: 26.4713217	total: 22.9ms	remaining: 549ms
4:	learn: 26.1261794	total: 28.3ms	remaining: 537ms
5:	learn: 25.8160419	total: 33.4ms	remaining: 523ms
6:	learn: 25.3860050	total: 38.7ms	remaining: 515ms
7:	learn: 25.0621682	total: 44.3ms	remaining: 510ms
8:	learn: 24.7574429	total: 49.9ms	remaining: 504ms
9:	learn: 24.5154734	total: 55.3ms	remaining: 497ms
10:	learn: 24.2199118	total: 60.7ms	remaining: 491ms
11:	learn: 23.9774955	total: 65.6ms	remaining: 481ms
12:	learn: 23.7755558	total: 71ms	remaining: 475ms
13:	learn: 23.4384476	total: 76.3ms	remaining: 469ms
14:	learn: 23.2035324	total: 81.4ms	remaining: 461ms
15:	learn: 22.9925293	total: 85ms	remaining: 446ms
16:	learn: 22.7981113	total: 89.1ms	remaining: 435ms
17:	learn: 22.5829245	total: 93.2ms	remaining: 424ms
18:	learn: 22.4131931	total: 97.2ms	remaining: 415ms
19:	learn: 22.1833629	total: 101ms	remaining: 404ms
20:	learn: 21.9660824	total: 105ms	remaining: 396ms
21:	learn: 21.7281998	total: 110ms	remaining: 390ms
22:	learn: 21.5000824	total: 113ms	remaining: 380ms
23:	learn: 21.2717031	total: 117ms	remaining: 371ms
24:	learn: 21.0926073	total: 121ms	remaining: 363ms
25:	learn: 20.8922144	total: 125ms	remaining: 356ms
26:	learn: 20.7498215	total: 129ms	remaining: 349ms
27:	learn: 20.5781754	total: 130ms	remaining: 334ms
28:	learn: 20.4294665	total: 134ms	remaining: 328ms
29:	learn: 20.2273985	total: 138ms	remaining: 321ms
30:	learn: 20.0920234	total: 142ms	remaining: 317ms
31:	learn: 19.9311712	total: 147ms	remaining: 311ms
32:	learn: 19.7852359	total: 151ms	remaining: 307ms
33:	learn: 19.6211007	total: 155ms	remaining: 302ms
34:	learn: 19.4806501	total: 160ms	remaining: 297ms
35:	learn: 19.3415380	total: 164ms	remaining: 292ms
36:	learn: 19.2075499	total: 169ms	remaining: 287ms
37:	learn: 19.0582745	total: 173ms	remaining: 282ms
38:	learn: 18.8852020	total: 177ms	remaining: 277ms
39:	learn: 18.6868677	total: 185ms	remaining: 278ms
40:	learn: 18.5481481	total: 193ms	remaining: 278ms
41:	learn: 18.4508846	total: 201ms	remaining: 278ms
42:	learn: 18.3650555	total: 207ms	remaining: 274ms
43:	learn: 18.1818415	total: 213ms	remaining: 271ms
44:	learn: 18.0782035	total: 218ms	remaining: 267ms
45:	learn: 17.9724472	total: 223ms	remaining: 262ms
46:	learn: 17.8657480	total: 229ms	remaining: 258ms
47:	learn: 17.7217309	total: 234ms	remaining: 253ms
48:	learn: 17.6403061	total: 238ms	remaining: 248ms
49:	learn: 17.5245570	total: 243ms	remaining: 243ms
50:	learn: 17.3976790	total: 249ms	remaining: 239ms
51:	learn: 17.2544460	total: 254ms	remaining: 234ms
52:	learn: 17.1507940	total: 258ms	remaining: 229ms
53:	learn: 17.0391276	total: 264ms	remaining: 225ms
54:	learn: 16.9348155	total: 268ms	remaining: 219ms
55:	learn: 16.8475635	total: 273ms	remaining: 214ms
56:	learn: 16.7691656	total: 278ms	remaining: 210ms
57:	learn: 16.6277836	total: 284ms	remaining: 205ms
58:	learn: 16.5524230	total: 287ms	remaining: 200ms
59:	learn: 16.4614442	total: 291ms	remaining: 194ms
60:	learn: 16.3077836	total: 295ms	remaining: 188ms
61:	learn: 16.2278133	total: 299ms	remaining: 183ms
62:	learn: 16.1288632	total: 303ms	remaining: 178ms
63:	learn: 16.0734717	total: 306ms	remaining: 172ms
64:	learn: 16.0085754	total: 310ms	remaining: 167ms
65:	learn: 15.9278700	total: 315ms	remaining: 162ms
66:	learn: 15.8320321	total: 319ms	remaining: 157ms
67:	learn: 15.7706425	total: 323ms	remaining: 152ms
68:	learn: 15.6404344	total: 327ms	remaining: 147ms
69:	learn: 15.5678129	total: 331ms	remaining: 142ms
70:	learn: 15.4980047	total: 335ms	remaining: 137ms
71:	learn: 15.4324207	total: 339ms	remaining: 132ms
72:	learn: 15.3551877	total: 344ms	remaining: 127ms
73:	learn: 15.2930769	total: 348ms	remaining: 122ms
74:	learn: 15.2307174	total: 352ms	remaining: 117ms
75:	learn: 15.1600937	total: 357ms	remaining: 113ms
76:	learn: 15.0837614	total: 361ms	remaining: 108ms
77:	learn: 15.0185989	total: 365ms	remaining: 103ms
78:	learn: 14.9300717	total: 370ms	remaining: 98.2ms
79:	learn: 14.8928389	total: 374ms	remaining: 93.4ms
80:	learn: 14.8250040	total: 378ms	remaining: 88.7ms
81:	learn: 14.7906114	total: 386ms	remaining: 84.8ms
82:	learn: 14.7214118	total: 394ms	remaining: 80.6ms
83:	learn: 14.6657875	total: 402ms	remaining: 76.5ms
84:	learn: 14.6085682	total: 407ms	remaining: 71.9ms
85:	learn: 14.5334097	total: 415ms	remaining: 67.5ms
86:	learn: 14.4681230	total: 420ms	remaining: 62.8ms
87:	learn: 14.4088334	total: 425ms	remaining: 58ms
88:	learn: 14.3541312	total: 431ms	remaining: 53.2ms
89:	learn: 14.2923636	total: 436ms	remaining: 48.4ms
90:	learn: 14.2339259	total: 441ms	remaining: 43.6ms
91:	learn: 14.1439983	total: 446ms	remaining: 38.7ms
92:	learn: 14.0701371	total: 450ms	remaining: 33.9ms
93:	learn: 13.9770736	total: 456ms	remaining: 29.1ms
94:	learn: 13.9275801	total: 461ms	remaining: 24.2ms
95:	learn: 13.8717050	total: 466ms	remaining: 19.4ms
96:	learn: 13.7821340	total: 471ms	remaining: 14.6ms
97:	learn: 13.7383865	total: 476ms	remaining: 9.71ms
98:	learn: 13.6850693	total: 481ms	remaining: 4.86ms
99:	learn: 13.6273539	total: 486ms	remaining: 0us
0:	learn: 43.2118728	total: 4.32ms	remaining: 427ms
1:	learn: 42.3090111	total: 8.43ms	remaining: 413ms
2:	learn: 41.3060764	total: 12.4ms	remaining: 401ms
3:	learn: 40.3653958	total: 16.4ms	remaining: 393ms
4:	learn: 39.5006331	total: 20.8ms	remaining: 395ms
5:	learn: 38.6473041	total: 25.1ms	remaining: 393ms
6:	learn: 37.8560875	total: 29.6ms	remaining: 393ms
7:	learn: 37.0772701	total: 33.5ms	remaining: 385ms
8:	learn: 36.3260704	total: 37.4ms	remaining: 378ms
9:	learn: 35.7300393	total: 41.6ms	remaining: 374ms
10:	learn: 34.9336547	total: 46.1ms	remaining: 373ms
11:	learn: 34.1758190	total: 50.8ms	remaining: 373ms
12:	learn: 33.5120760	total: 58ms	remaining: 388ms
13:	learn: 32.8731142	total: 65.1ms	remaining: 400ms
14:	learn: 32.3579595	total: 73ms	remaining: 414ms
15:	learn: 31.7969963	total: 79.7ms	remaining: 418ms
16:	learn: 31.3472797	total: 85.5ms	remaining: 418ms
17:	learn: 30.7865884	total: 90.6ms	remaining: 413ms
18:	learn: 30.3876486	total: 95.7ms	remaining: 408ms
19:	learn: 29.8840575	total: 107ms	remaining: 429ms
20:	learn: 29.3584237	total: 113ms	remaining: 424ms
21:	learn: 28.9965200	total: 118ms	remaining: 419ms
22:	learn: 28.6117225	total: 123ms	remaining: 413ms
23:	learn: 28.1147832	total: 128ms	remaining: 406ms
24:	learn: 27.7857774	total: 133ms	remaining: 400ms
25:	learn: 27.3181226	total: 138ms	remaining: 393ms
26:	learn: 26.9019101	total: 143ms	remaining: 386ms
27:	learn: 26.6957004	total: 148ms	remaining: 380ms
28:	learn: 26.2816390	total: 153ms	remaining: 375ms
29:	learn: 25.9107534	total: 157ms	remaining: 366ms
30:	learn: 25.5773085	total: 161ms	remaining: 357ms
31:	learn: 25.1916035	total: 164ms	remaining: 349ms
32:	learn: 24.8819670	total: 168ms	remaining: 342ms
33:	learn: 24.5580488	total: 172ms	remaining: 334ms
34:	learn: 24.3088624	total: 176ms	remaining: 326ms
35:	learn: 23.9890893	total: 179ms	remaining: 319ms
36:	learn: 23.7266073	total: 183ms	remaining: 312ms
37:	learn: 23.4886046	total: 187ms	remaining: 306ms
38:	learn: 23.2786313	total: 191ms	remaining: 299ms
39:	learn: 23.0060540	total: 195ms	remaining: 293ms
40:	learn: 22.7848361	total: 199ms	remaining: 286ms
41:	learn: 22.5485511	total: 203ms	remaining: 280ms
42:	learn: 22.3113565	total: 207ms	remaining: 274ms
43:	learn: 22.1296084	total: 211ms	remaining: 268ms
44:	learn: 21.8514989	total: 215ms	remaining: 263ms
45:	learn: 21.6540201	total: 219ms	remaining: 257ms
46:	learn: 21.4203535	total: 223ms	remaining: 251ms
47:	learn: 21.2317196	total: 227ms	remaining: 246ms
48:	learn: 21.0547467	total: 231ms	remaining: 241ms
49:	learn: 20.9192535	total: 236ms	remaining: 236ms
50:	learn: 20.6975386	total: 241ms	remaining: 231ms
51:	learn: 20.5839720	total: 245ms	remaining: 226ms
52:	learn: 20.4528901	total: 250ms	remaining: 221ms
53:	learn: 20.3392419	total: 254ms	remaining: 217ms
54:	learn: 20.1518693	total: 259ms	remaining: 212ms
55:	learn: 19.9928770	total: 264ms	remaining: 207ms
56:	learn: 19.8042028	total: 271ms	remaining: 204ms
57:	learn: 19.7000879	total: 278ms	remaining: 202ms
58:	learn: 19.5524154	total: 290ms	remaining: 201ms
59:	learn: 19.4366908	total: 296ms	remaining: 197ms
60:	learn: 19.2739134	total: 303ms	remaining: 194ms
61:	learn: 19.1499266	total: 309ms	remaining: 189ms
62:	learn: 18.9948972	total: 314ms	remaining: 184ms
63:	learn: 18.8952299	total: 319ms	remaining: 179ms
64:	learn: 18.7545430	total: 324ms	remaining: 175ms
65:	learn: 18.6315116	total: 330ms	remaining: 170ms
66:	learn: 18.5164994	total: 335ms	remaining: 165ms
67:	learn: 18.3983038	total: 340ms	remaining: 160ms
68:	learn: 18.2803212	total: 345ms	remaining: 155ms
69:	learn: 18.1738467	total: 350ms	remaining: 150ms
70:	learn: 18.0884235	total: 355ms	remaining: 145ms
71:	learn: 18.0129445	total: 360ms	remaining: 140ms
72:	learn: 17.8582158	total: 365ms	remaining: 135ms
73:	learn: 17.7473705	total: 371ms	remaining: 130ms
74:	learn: 17.6431421	total: 376ms	remaining: 125ms
75:	learn: 17.5398511	total: 380ms	remaining: 120ms
76:	learn: 17.4404598	total: 384ms	remaining: 115ms
77:	learn: 17.3477525	total: 388ms	remaining: 109ms
78:	learn: 17.2283831	total: 392ms	remaining: 104ms
79:	learn: 17.0767035	total: 396ms	remaining: 99ms
80:	learn: 16.9732705	total: 400ms	remaining: 93.8ms
81:	learn: 16.8927449	total: 404ms	remaining: 88.7ms
82:	learn: 16.8145625	total: 408ms	remaining: 83.6ms
83:	learn: 16.7290845	total: 413ms	remaining: 78.6ms
84:	learn: 16.6661414	total: 417ms	remaining: 73.6ms
85:	learn: 16.5875575	total: 422ms	remaining: 68.7ms
86:	learn: 16.4578580	total: 426ms	remaining: 63.6ms
87:	learn: 16.4243550	total: 431ms	remaining: 58.8ms
88:	learn: 16.3251337	total: 436ms	remaining: 53.8ms
89:	learn: 16.2516385	total: 440ms	remaining: 48.9ms
90:	learn: 16.1226518	total: 445ms	remaining: 44ms
91:	learn: 16.0718308	total: 449ms	remaining: 39ms
92:	learn: 15.9636735	total: 454ms	remaining: 34.1ms
93:	learn: 15.8923693	total: 458ms	remaining: 29.3ms
94:	learn: 15.8270425	total: 463ms	remaining: 24.3ms
95:	learn: 15.7449077	total: 470ms	remaining: 19.6ms
96:	learn: 15.6978936	total: 477ms	remaining: 14.8ms
97:	learn: 15.6527285	total: 485ms	remaining: 9.9ms
98:	learn: 15.5557320	total: 492ms	remaining: 4.97ms
99:	learn: 15.4399171	total: 501ms	remaining: 0us
0:	learn: 46.7092506	total: 5.88ms	remaining: 582ms
1:	learn: 45.8266821	total: 11.1ms	remaining: 543ms
2:	learn: 45.0052023	total: 15.7ms	remaining: 506ms
3:	learn: 44.3828795	total: 19.6ms	remaining: 471ms
4:	learn: 43.7255353	total: 23.6ms	remaining: 448ms
5:	learn: 43.1663831	total: 27.3ms	remaining: 427ms
6:	learn: 42.3875189	total: 31.2ms	remaining: 415ms
7:	learn: 41.7839075	total: 34.9ms	remaining: 402ms
8:	learn: 41.0740108	total: 38.7ms	remaining: 391ms
9:	learn: 40.3846647	total: 42.8ms	remaining: 385ms
10:	learn: 39.8821046	total: 46.6ms	remaining: 377ms
11:	learn: 39.1807254	total: 50.5ms	remaining: 370ms
12:	learn: 38.7153028	total: 54.1ms	remaining: 362ms
13:	learn: 38.0474495	total: 58.2ms	remaining: 357ms
14:	learn: 37.3844461	total: 62.5ms	remaining: 354ms
15:	learn: 36.9210704	total: 66.6ms	remaining: 350ms
16:	learn: 36.3160964	total: 70.4ms	remaining: 344ms
17:	learn: 35.8915826	total: 74.3ms	remaining: 339ms
18:	learn: 35.5519989	total: 78.9ms	remaining: 336ms
19:	learn: 35.1437045	total: 83.4ms	remaining: 333ms
20:	learn: 34.6387799	total: 87.6ms	remaining: 330ms
21:	learn: 34.2437068	total: 91.9ms	remaining: 326ms
22:	learn: 33.8262100	total: 96.5ms	remaining: 323ms
23:	learn: 33.4683000	total: 101ms	remaining: 319ms
24:	learn: 32.9996389	total: 105ms	remaining: 315ms
25:	learn: 32.6942147	total: 110ms	remaining: 312ms
26:	learn: 32.3016096	total: 114ms	remaining: 309ms
27:	learn: 31.9517346	total: 122ms	remaining: 313ms
28:	learn: 31.5277387	total: 129ms	remaining: 316ms
29:	learn: 31.2545365	total: 137ms	remaining: 319ms
30:	learn: 31.0510813	total: 143ms	remaining: 318ms
31:	learn: 30.6383830	total: 149ms	remaining: 317ms
32:	learn: 30.2800150	total: 154ms	remaining: 313ms
33:	learn: 29.9559797	total: 159ms	remaining: 309ms
34:	learn: 29.5802745	total: 164ms	remaining: 305ms
35:	learn: 29.2605111	total: 169ms	remaining: 300ms
36:	learn: 28.9582434	total: 174ms	remaining: 296ms
37:	learn: 28.6149387	total: 179ms	remaining: 292ms
38:	learn: 28.3980091	total: 184ms	remaining: 288ms
39:	learn: 28.1704520	total: 189ms	remaining: 284ms
40:	learn: 27.8881319	total: 194ms	remaining: 280ms
41:	learn: 27.5805731	total: 200ms	remaining: 276ms
42:	learn: 27.3520567	total: 204ms	remaining: 271ms
43:	learn: 27.1039679	total: 209ms	remaining: 267ms
44:	learn: 26.8472623	total: 215ms	remaining: 263ms
45:	learn: 26.5757869	total: 219ms	remaining: 257ms
46:	learn: 26.4579118	total: 223ms	remaining: 251ms
47:	learn: 26.1279008	total: 227ms	remaining: 245ms
48:	learn: 25.8503346	total: 231ms	remaining: 240ms
49:	learn: 25.7039015	total: 235ms	remaining: 235ms
50:	learn: 25.4317154	total: 238ms	remaining: 229ms
51:	learn: 25.3028008	total: 242ms	remaining: 224ms
52:	learn: 25.1906194	total: 246ms	remaining: 218ms
53:	learn: 25.0082790	total: 250ms	remaining: 213ms
54:	learn: 24.8264791	total: 254ms	remaining: 208ms
55:	learn: 24.5961365	total: 258ms	remaining: 203ms
56:	learn: 24.4007690	total: 262ms	remaining: 198ms
57:	learn: 24.2476228	total: 266ms	remaining: 193ms
58:	learn: 23.9582465	total: 270ms	remaining: 188ms
59:	learn: 23.7247243	total: 274ms	remaining: 182ms
60:	learn: 23.5379970	total: 278ms	remaining: 178ms
61:	learn: 23.3908530	total: 283ms	remaining: 173ms
62:	learn: 23.2123241	total: 288ms	remaining: 169ms
63:	learn: 23.1010345	total: 292ms	remaining: 164ms
64:	learn: 22.9032423	total: 296ms	remaining: 159ms
65:	learn: 22.7815198	total: 301ms	remaining: 155ms
66:	learn: 22.6325063	total: 305ms	remaining: 150ms
67:	learn: 22.5406071	total: 309ms	remaining: 146ms
68:	learn: 22.4413332	total: 316ms	remaining: 142ms
69:	learn: 22.3005609	total: 324ms	remaining: 139ms
70:	learn: 22.1779345	total: 333ms	remaining: 136ms
71:	learn: 22.0491576	total: 339ms	remaining: 132ms
72:	learn: 21.9379106	total: 346ms	remaining: 128ms
73:	learn: 21.7597096	total: 352ms	remaining: 124ms
74:	learn: 21.6042300	total: 357ms	remaining: 119ms
75:	learn: 21.4644642	total: 362ms	remaining: 114ms
76:	learn: 21.3811287	total: 367ms	remaining: 110ms
77:	learn: 21.3089276	total: 372ms	remaining: 105ms
78:	learn: 21.1654429	total: 377ms	remaining: 100ms
79:	learn: 20.9602460	total: 382ms	remaining: 95.5ms
80:	learn: 20.7959461	total: 387ms	remaining: 90.7ms
81:	learn: 20.5861156	total: 392ms	remaining: 86ms
82:	learn: 20.5120680	total: 397ms	remaining: 81.3ms
83:	learn: 20.3997233	total: 401ms	remaining: 76.4ms
84:	learn: 20.2499469	total: 406ms	remaining: 71.7ms
85:	learn: 20.1117768	total: 412ms	remaining: 67.1ms
86:	learn: 20.0617643	total: 418ms	remaining: 62.4ms
87:	learn: 19.9609182	total: 422ms	remaining: 57.5ms
88:	learn: 19.8763814	total: 426ms	remaining: 52.7ms
89:	learn: 19.7843516	total: 430ms	remaining: 47.8ms
90:	learn: 19.6926200	total: 435ms	remaining: 43ms
91:	learn: 19.5686774	total: 439ms	remaining: 38.2ms
92:	learn: 19.4727236	total: 444ms	remaining: 33.4ms
93:	learn: 19.3780174	total: 448ms	remaining: 28.6ms
94:	learn: 19.2840650	total: 452ms	remaining: 23.8ms
95:	learn: 19.1747368	total: 457ms	remaining: 19ms
96:	learn: 19.1273306	total: 461ms	remaining: 14.3ms
97:	learn: 19.0413946	total: 465ms	remaining: 9.49ms
98:	learn: 18.8980682	total: 469ms	remaining: 4.74ms
99:	learn: 18.7799962	total: 474ms	remaining: 0us
0:	learn: 46.4426352	total: 7.37ms	remaining: 730ms
1:	learn: 45.5770653	total: 16.5ms	remaining: 809ms
2:	learn: 44.6956685	total: 22.9ms	remaining: 742ms
3:	learn: 43.9934709	total: 29.2ms	remaining: 701ms
4:	learn: 43.3008183	total: 35ms	remaining: 665ms
5:	learn: 42.7510022	total: 40.3ms	remaining: 631ms
6:	learn: 42.0237555	total: 45.4ms	remaining: 604ms
7:	learn: 41.5354996	total: 50.6ms	remaining: 581ms
8:	learn: 41.0264055	total: 55.9ms	remaining: 565ms
9:	learn: 40.5267003	total: 61.1ms	remaining: 550ms
10:	learn: 39.8363942	total: 65.9ms	remaining: 533ms
11:	learn: 39.2014089	total: 71ms	remaining: 521ms
12:	learn: 38.7943524	total: 76.5ms	remaining: 512ms
13:	learn: 38.1664113	total: 81.5ms	remaining: 501ms
14:	learn: 37.7492773	total: 86.2ms	remaining: 489ms
15:	learn: 37.2369693	total: 91.6ms	remaining: 481ms
16:	learn: 36.6953383	total: 96.9ms	remaining: 473ms
17:	learn: 36.3580916	total: 101ms	remaining: 461ms
18:	learn: 35.8637745	total: 105ms	remaining: 448ms
19:	learn: 35.4299153	total: 109ms	remaining: 435ms
20:	learn: 34.8794879	total: 113ms	remaining: 424ms
21:	learn: 34.3253348	total: 117ms	remaining: 415ms
22:	learn: 33.9307096	total: 121ms	remaining: 404ms
23:	learn: 33.5952896	total: 125ms	remaining: 394ms
24:	learn: 33.1314051	total: 128ms	remaining: 385ms
25:	learn: 32.8502968	total: 132ms	remaining: 376ms
26:	learn: 32.4430184	total: 136ms	remaining: 368ms
27:	learn: 32.0721224	total: 140ms	remaining: 360ms
28:	learn: 31.7977479	total: 145ms	remaining: 354ms
29:	learn: 31.3999469	total: 149ms	remaining: 348ms
30:	learn: 31.1179360	total: 153ms	remaining: 341ms
31:	learn: 30.7712852	total: 157ms	remaining: 334ms
32:	learn: 30.2912977	total: 162ms	remaining: 328ms
33:	learn: 29.9920376	total: 166ms	remaining: 322ms
34:	learn: 29.6637918	total: 171ms	remaining: 317ms
35:	learn: 29.3522959	total: 175ms	remaining: 312ms
36:	learn: 29.0482516	total: 180ms	remaining: 306ms
37:	learn: 28.7956656	total: 184ms	remaining: 301ms
38:	learn: 28.4845569	total: 189ms	remaining: 295ms
39:	learn: 28.3038067	total: 194ms	remaining: 290ms
40:	learn: 28.1185263	total: 198ms	remaining: 285ms
41:	learn: 27.8012563	total: 205ms	remaining: 282ms
42:	learn: 27.5184259	total: 212ms	remaining: 281ms
43:	learn: 27.3019892	total: 218ms	remaining: 278ms
44:	learn: 27.0494594	total: 228ms	remaining: 279ms
45:	learn: 26.8054317	total: 236ms	remaining: 277ms
46:	learn: 26.6554974	total: 241ms	remaining: 272ms
47:	learn: 26.3568392	total: 246ms	remaining: 267ms
48:	learn: 26.1045872	total: 252ms	remaining: 262ms
49:	learn: 25.9807311	total: 257ms	remaining: 257ms
50:	learn: 25.7104640	total: 262ms	remaining: 252ms
51:	learn: 25.6019547	total: 268ms	remaining: 247ms
52:	learn: 25.5011930	total: 273ms	remaining: 242ms
53:	learn: 25.2291639	total: 278ms	remaining: 237ms
54:	learn: 24.9952313	total: 283ms	remaining: 232ms
55:	learn: 24.8195031	total: 288ms	remaining: 226ms
56:	learn: 24.5591684	total: 293ms	remaining: 221ms
57:	learn: 24.4163080	total: 298ms	remaining: 216ms
58:	learn: 24.2328188	total: 303ms	remaining: 211ms
59:	learn: 24.0087408	total: 309ms	remaining: 206ms
60:	learn: 23.8918912	total: 315ms	remaining: 201ms
61:	learn: 23.7537024	total: 319ms	remaining: 195ms
62:	learn: 23.5466923	total: 323ms	remaining: 189ms
63:	learn: 23.3903724	total: 327ms	remaining: 184ms
64:	learn: 23.3257785	total: 331ms	remaining: 178ms
65:	learn: 23.2839464	total: 335ms	remaining: 173ms
66:	learn: 23.1476036	total: 339ms	remaining: 167ms
67:	learn: 22.9480972	total: 342ms	remaining: 161ms
68:	learn: 22.7537529	total: 346ms	remaining: 155ms
69:	learn: 22.6209544	total: 351ms	remaining: 150ms
70:	learn: 22.5058753	total: 355ms	remaining: 145ms
71:	learn: 22.4068656	total: 359ms	remaining: 140ms
72:	learn: 22.3254150	total: 364ms	remaining: 135ms
73:	learn: 22.1784174	total: 368ms	remaining: 129ms
74:	learn: 22.1095388	total: 372ms	remaining: 124ms
75:	learn: 21.9958083	total: 377ms	remaining: 119ms
76:	learn: 21.8728475	total: 381ms	remaining: 114ms
77:	learn: 21.7975828	total: 386ms	remaining: 109ms
78:	learn: 21.7133267	total: 390ms	remaining: 104ms
79:	learn: 21.6023410	total: 395ms	remaining: 98.7ms
80:	learn: 21.5254474	total: 400ms	remaining: 93.9ms
81:	learn: 21.3307418	total: 410ms	remaining: 90ms
82:	learn: 21.2411976	total: 419ms	remaining: 85.8ms
83:	learn: 21.1091386	total: 427ms	remaining: 81.3ms
84:	learn: 21.0526747	total: 435ms	remaining: 76.8ms
85:	learn: 20.9083817	total: 441ms	remaining: 71.7ms
86:	learn: 20.8767767	total: 446ms	remaining: 66.6ms
87:	learn: 20.8143988	total: 451ms	remaining: 61.5ms
88:	learn: 20.7127697	total: 456ms	remaining: 56.4ms
89:	learn: 20.6112504	total: 461ms	remaining: 51.2ms
90:	learn: 20.4609960	total: 466ms	remaining: 46.1ms
91:	learn: 20.3648890	total: 471ms	remaining: 41ms
92:	learn: 20.3052040	total: 476ms	remaining: 35.8ms
93:	learn: 20.2587865	total: 481ms	remaining: 30.7ms
94:	learn: 20.2096406	total: 486ms	remaining: 25.6ms
95:	learn: 20.1301385	total: 491ms	remaining: 20.5ms
96:	learn: 20.0401359	total: 495ms	remaining: 15.3ms
97:	learn: 19.9791591	total: 501ms	remaining: 10.2ms
98:	learn: 19.9237318	total: 506ms	remaining: 5.11ms
99:	learn: 19.8009190	total: 510ms	remaining: 0us
0:	learn: 46.9286701	total: 4.32ms	remaining: 427ms
1:	learn: 46.2851598	total: 8.47ms	remaining: 415ms
2:	learn: 45.4586007	total: 12ms	remaining: 390ms
3:	learn: 44.6581393	total: 16.1ms	remaining: 386ms
4:	learn: 43.8231644	total: 20.2ms	remaining: 383ms
5:	learn: 43.2906569	total: 24.4ms	remaining: 382ms
6:	learn: 42.5095813	total: 28.7ms	remaining: 382ms
7:	learn: 41.9310465	total: 33.2ms	remaining: 381ms
8:	learn: 41.2083262	total: 37.3ms	remaining: 378ms
9:	learn: 40.6852547	total: 41.4ms	remaining: 372ms
10:	learn: 39.9637018	total: 45.3ms	remaining: 367ms
11:	learn: 39.2804189	total: 49.9ms	remaining: 366ms
12:	learn: 38.8804017	total: 53.8ms	remaining: 360ms
13:	learn: 38.3826597	total: 60.5ms	remaining: 371ms
14:	learn: 37.9240424	total: 67.6ms	remaining: 383ms
15:	learn: 37.4312070	total: 74.4ms	remaining: 391ms
16:	learn: 36.8803673	total: 82.1ms	remaining: 401ms
17:	learn: 36.5496582	total: 89.3ms	remaining: 407ms
18:	learn: 36.2078375	total: 94.3ms	remaining: 402ms
19:	learn: 35.6806593	total: 99.4ms	remaining: 398ms
20:	learn: 35.1512154	total: 104ms	remaining: 393ms
21:	learn: 34.6013055	total: 110ms	remaining: 389ms
22:	learn: 34.2380102	total: 115ms	remaining: 384ms
23:	learn: 33.8720185	total: 120ms	remaining: 380ms
24:	learn: 33.4426135	total: 125ms	remaining: 374ms
25:	learn: 33.1471186	total: 130ms	remaining: 370ms
26:	learn: 32.8018279	total: 135ms	remaining: 365ms
27:	learn: 32.4498594	total: 140ms	remaining: 360ms
28:	learn: 31.9749480	total: 144ms	remaining: 354ms
29:	learn: 31.6470735	total: 149ms	remaining: 348ms
30:	learn: 31.4265242	total: 154ms	remaining: 343ms
31:	learn: 31.0753325	total: 159ms	remaining: 339ms
32:	learn: 30.7192494	total: 163ms	remaining: 331ms
33:	learn: 30.3547940	total: 167ms	remaining: 324ms
34:	learn: 30.1296593	total: 171ms	remaining: 317ms
35:	learn: 29.9367140	total: 175ms	remaining: 310ms
36:	learn: 29.6248477	total: 178ms	remaining: 303ms
37:	learn: 29.3156707	total: 182ms	remaining: 297ms
38:	learn: 29.1534039	total: 185ms	remaining: 290ms
39:	learn: 28.9351289	total: 189ms	remaining: 284ms
40:	learn: 28.7057685	total: 193ms	remaining: 278ms
41:	learn: 28.3132521	total: 197ms	remaining: 272ms
42:	learn: 28.0739054	total: 200ms	remaining: 266ms
43:	learn: 27.8135917	total: 205ms	remaining: 260ms
44:	learn: 27.5376804	total: 209ms	remaining: 255ms
45:	learn: 27.3195849	total: 213ms	remaining: 250ms
46:	learn: 27.1681104	total: 217ms	remaining: 244ms
47:	learn: 27.0122442	total: 221ms	remaining: 239ms
48:	learn: 26.7819409	total: 225ms	remaining: 234ms
49:	learn: 26.6429308	total: 229ms	remaining: 229ms
50:	learn: 26.3482899	total: 234ms	remaining: 224ms
51:	learn: 26.2432755	total: 238ms	remaining: 220ms
52:	learn: 26.0811102	total: 242ms	remaining: 215ms
53:	learn: 25.9398113	total: 246ms	remaining: 210ms
54:	learn: 25.7891395	total: 250ms	remaining: 205ms
55:	learn: 25.6185338	total: 255ms	remaining: 200ms
56:	learn: 25.3293977	total: 262ms	remaining: 198ms
57:	learn: 25.1918906	total: 269ms	remaining: 194ms
58:	learn: 25.0503990	total: 276ms	remaining: 192ms
59:	learn: 24.8225776	total: 283ms	remaining: 189ms
60:	learn: 24.5969153	total: 290ms	remaining: 186ms
61:	learn: 24.4657353	total: 296ms	remaining: 181ms
62:	learn: 24.2861000	total: 301ms	remaining: 177ms
63:	learn: 24.1719148	total: 306ms	remaining: 172ms
64:	learn: 24.0547875	total: 311ms	remaining: 167ms
65:	learn: 23.9156724	total: 316ms	remaining: 163ms
66:	learn: 23.7604012	total: 321ms	remaining: 158ms
67:	learn: 23.6265679	total: 326ms	remaining: 153ms
68:	learn: 23.5372255	total: 331ms	remaining: 149ms
69:	learn: 23.3286241	total: 337ms	remaining: 144ms
70:	learn: 23.1806465	total: 342ms	remaining: 140ms
71:	learn: 23.0652081	total: 347ms	remaining: 135ms
72:	learn: 22.9231023	total: 352ms	remaining: 130ms
73:	learn: 22.8020380	total: 357ms	remaining: 125ms
74:	learn: 22.6525036	total: 362ms	remaining: 121ms
75:	learn: 22.5616268	total: 367ms	remaining: 116ms
76:	learn: 22.4395250	total: 370ms	remaining: 111ms
77:	learn: 22.3732379	total: 374ms	remaining: 106ms
78:	learn: 22.2300874	total: 378ms	remaining: 101ms
79:	learn: 22.0209882	total: 382ms	remaining: 95.5ms
80:	learn: 21.8703996	total: 386ms	remaining: 90.5ms
81:	learn: 21.7222039	total: 389ms	remaining: 85.4ms
82:	learn: 21.5903685	total: 393ms	remaining: 80.5ms
83:	learn: 21.4915083	total: 397ms	remaining: 75.6ms
84:	learn: 21.3320736	total: 401ms	remaining: 70.7ms
85:	learn: 21.2295060	total: 405ms	remaining: 65.9ms
86:	learn: 21.1983620	total: 409ms	remaining: 61.1ms
87:	learn: 21.1404156	total: 412ms	remaining: 56.2ms
88:	learn: 21.0684840	total: 416ms	remaining: 51.4ms
89:	learn: 20.9269197	total: 421ms	remaining: 46.7ms
90:	learn: 20.8614606	total: 425ms	remaining: 42.1ms
91:	learn: 20.6642996	total: 430ms	remaining: 37.4ms
92:	learn: 20.5612705	total: 434ms	remaining: 32.7ms
93:	learn: 20.5264997	total: 438ms	remaining: 28ms
94:	learn: 20.4532331	total: 443ms	remaining: 23.3ms
95:	learn: 20.3700696	total: 447ms	remaining: 18.6ms
96:	learn: 20.2671574	total: 452ms	remaining: 14ms
97:	learn: 20.1761207	total: 460ms	remaining: 9.38ms
98:	learn: 20.0533799	total: 467ms	remaining: 4.72ms
99:	learn: 19.9890055	total: 475ms	remaining: 0us
0:	learn: 27.7143805	total: 5.46ms	remaining: 541ms
1:	learn: 27.2245894	total: 11ms	remaining: 540ms
2:	learn: 26.8693029	total: 15.7ms	remaining: 507ms
3:	learn: 26.4713217	total: 21ms	remaining: 504ms
4:	learn: 26.1261794	total: 26.3ms	remaining: 500ms
5:	learn: 25.8160419	total: 31ms	remaining: 486ms
6:	learn: 25.3860050	total: 35ms	remaining: 465ms
7:	learn: 25.0621682	total: 38.7ms	remaining: 445ms
8:	learn: 24.7574429	total: 42.6ms	remaining: 431ms
9:	learn: 24.5154734	total: 46.4ms	remaining: 418ms
10:	learn: 24.2199118	total: 50.8ms	remaining: 411ms
11:	learn: 23.9774955	total: 55.1ms	remaining: 404ms
12:	learn: 23.7755558	total: 59.2ms	remaining: 397ms
13:	learn: 23.4384476	total: 63.4ms	remaining: 389ms
14:	learn: 23.2035324	total: 67.5ms	remaining: 383ms
15:	learn: 22.9925293	total: 71.6ms	remaining: 376ms
16:	learn: 22.7981113	total: 75.7ms	remaining: 370ms
17:	learn: 22.5829245	total: 79.8ms	remaining: 363ms
18:	learn: 22.4131931	total: 83.5ms	remaining: 356ms
19:	learn: 22.1833629	total: 87.8ms	remaining: 351ms
20:	learn: 21.9660824	total: 91.9ms	remaining: 346ms
21:	learn: 21.7281998	total: 96.3ms	remaining: 341ms
22:	learn: 21.5000824	total: 100ms	remaining: 336ms
23:	learn: 21.2717031	total: 105ms	remaining: 331ms
24:	learn: 21.0926073	total: 109ms	remaining: 326ms
25:	learn: 20.8922144	total: 113ms	remaining: 322ms
26:	learn: 20.7498215	total: 118ms	remaining: 319ms
27:	learn: 20.5781754	total: 119ms	remaining: 306ms
28:	learn: 20.4294665	total: 124ms	remaining: 304ms
29:	learn: 20.2273985	total: 128ms	remaining: 299ms
30:	learn: 20.0920234	total: 133ms	remaining: 296ms
31:	learn: 19.9311712	total: 137ms	remaining: 292ms
32:	learn: 19.7852359	total: 142ms	remaining: 288ms
33:	learn: 19.6211007	total: 146ms	remaining: 284ms
34:	learn: 19.4806501	total: 153ms	remaining: 284ms
35:	learn: 19.3415380	total: 160ms	remaining: 285ms
36:	learn: 19.2075499	total: 167ms	remaining: 285ms
37:	learn: 19.0582745	total: 174ms	remaining: 284ms
38:	learn: 18.8852020	total: 182ms	remaining: 284ms
39:	learn: 18.6868677	total: 187ms	remaining: 281ms
40:	learn: 18.5481481	total: 193ms	remaining: 278ms
41:	learn: 18.4508846	total: 198ms	remaining: 274ms
42:	learn: 18.3650555	total: 204ms	remaining: 270ms
43:	learn: 18.1818415	total: 209ms	remaining: 266ms
44:	learn: 18.0782035	total: 214ms	remaining: 262ms
45:	learn: 17.9724472	total: 220ms	remaining: 258ms
46:	learn: 17.8657480	total: 226ms	remaining: 254ms
47:	learn: 17.7217309	total: 231ms	remaining: 250ms
48:	learn: 17.6403061	total: 236ms	remaining: 245ms
49:	learn: 17.5245570	total: 240ms	remaining: 240ms
50:	learn: 17.3976790	total: 245ms	remaining: 236ms
51:	learn: 17.2544460	total: 251ms	remaining: 231ms
52:	learn: 17.1507940	total: 255ms	remaining: 227ms
53:	learn: 17.0391276	total: 260ms	remaining: 221ms
54:	learn: 16.9348155	total: 264ms	remaining: 216ms
55:	learn: 16.8475635	total: 268ms	remaining: 210ms
56:	learn: 16.7691656	total: 272ms	remaining: 205ms
57:	learn: 16.6277836	total: 276ms	remaining: 200ms
58:	learn: 16.5524230	total: 280ms	remaining: 195ms
59:	learn: 16.4614442	total: 284ms	remaining: 190ms
60:	learn: 16.3077836	total: 289ms	remaining: 184ms
61:	learn: 16.2278133	total: 293ms	remaining: 180ms
62:	learn: 16.1288632	total: 297ms	remaining: 175ms
63:	learn: 16.0734717	total: 302ms	remaining: 170ms
64:	learn: 16.0085754	total: 306ms	remaining: 165ms
65:	learn: 15.9278700	total: 312ms	remaining: 160ms
66:	learn: 15.8320321	total: 317ms	remaining: 156ms
67:	learn: 15.7706425	total: 322ms	remaining: 151ms
68:	learn: 15.6404344	total: 327ms	remaining: 147ms
69:	learn: 15.5678129	total: 332ms	remaining: 142ms
70:	learn: 15.4980047	total: 336ms	remaining: 137ms
71:	learn: 15.4324207	total: 341ms	remaining: 133ms
72:	learn: 15.3551877	total: 345ms	remaining: 128ms
73:	learn: 15.2930769	total: 354ms	remaining: 124ms
74:	learn: 15.2307174	total: 361ms	remaining: 120ms
75:	learn: 15.1600937	total: 368ms	remaining: 116ms
76:	learn: 15.0837614	total: 374ms	remaining: 112ms
77:	learn: 15.0185989	total: 381ms	remaining: 107ms
78:	learn: 14.9300717	total: 386ms	remaining: 103ms
79:	learn: 14.8928389	total: 391ms	remaining: 97.7ms
80:	learn: 14.8250040	total: 396ms	remaining: 92.8ms
81:	learn: 14.7906114	total: 401ms	remaining: 88ms
82:	learn: 14.7214118	total: 406ms	remaining: 83.2ms
83:	learn: 14.6657875	total: 411ms	remaining: 78.3ms
84:	learn: 14.6085682	total: 416ms	remaining: 73.5ms
85:	learn: 14.5334097	total: 421ms	remaining: 68.6ms
86:	learn: 14.4681230	total: 427ms	remaining: 63.8ms
87:	learn: 14.4088334	total: 432ms	remaining: 58.9ms
88:	learn: 14.3541312	total: 437ms	remaining: 54.1ms
89:	learn: 14.2923636	total: 441ms	remaining: 49.1ms
90:	learn: 14.2339259	total: 447ms	remaining: 44.2ms
91:	learn: 14.1439983	total: 452ms	remaining: 39.3ms
92:	learn: 14.0701371	total: 457ms	remaining: 34.4ms
93:	learn: 13.9770736	total: 460ms	remaining: 29.4ms
94:	learn: 13.9275801	total: 464ms	remaining: 24.4ms
95:	learn: 13.8717050	total: 468ms	remaining: 19.5ms
96:	learn: 13.7821340	total: 472ms	remaining: 14.6ms
97:	learn: 13.7383865	total: 476ms	remaining: 9.72ms
98:	learn: 13.6850693	total: 480ms	remaining: 4.85ms
99:	learn: 13.6273539	total: 484ms	remaining: 0us
0:	learn: 43.2118728	total: 4.58ms	remaining: 453ms
1:	learn: 42.3090111	total: 9.03ms	remaining: 443ms
2:	learn: 41.3060764	total: 14.6ms	remaining: 474ms
3:	learn: 40.3653958	total: 22.7ms	remaining: 546ms
4:	learn: 39.5006331	total: 30.2ms	remaining: 573ms
5:	learn: 38.6473041	total: 38.4ms	remaining: 601ms
6:	learn: 37.8560875	total: 46.8ms	remaining: 622ms
7:	learn: 37.0772701	total: 51.8ms	remaining: 596ms
8:	learn: 36.3260704	total: 56.6ms	remaining: 572ms
9:	learn: 35.7300393	total: 61.7ms	remaining: 556ms
10:	learn: 34.9336547	total: 66.8ms	remaining: 540ms
11:	learn: 34.1758190	total: 72ms	remaining: 528ms
12:	learn: 33.5120760	total: 76.7ms	remaining: 513ms
13:	learn: 32.8731142	total: 82ms	remaining: 504ms
14:	learn: 32.3579595	total: 87ms	remaining: 493ms
15:	learn: 31.7969963	total: 92.1ms	remaining: 484ms
16:	learn: 31.3472797	total: 96.5ms	remaining: 471ms
17:	learn: 30.7865884	total: 101ms	remaining: 461ms
18:	learn: 30.3876486	total: 106ms	remaining: 450ms
19:	learn: 29.8840575	total: 110ms	remaining: 440ms
20:	learn: 29.3584237	total: 116ms	remaining: 436ms
21:	learn: 28.9965200	total: 121ms	remaining: 430ms
22:	learn: 28.6117225	total: 126ms	remaining: 421ms
23:	learn: 28.1147832	total: 130ms	remaining: 410ms
24:	learn: 27.7857774	total: 134ms	remaining: 401ms
25:	learn: 27.3181226	total: 137ms	remaining: 391ms
26:	learn: 26.9019101	total: 141ms	remaining: 382ms
27:	learn: 26.6957004	total: 145ms	remaining: 373ms
28:	learn: 26.2816390	total: 149ms	remaining: 364ms
29:	learn: 25.9107534	total: 153ms	remaining: 357ms
30:	learn: 25.5773085	total: 157ms	remaining: 349ms
31:	learn: 25.1916035	total: 160ms	remaining: 341ms
32:	learn: 24.8819670	total: 164ms	remaining: 334ms
33:	learn: 24.5580488	total: 168ms	remaining: 327ms
34:	learn: 24.3088624	total: 172ms	remaining: 320ms
35:	learn: 23.9890893	total: 176ms	remaining: 313ms
36:	learn: 23.7266073	total: 180ms	remaining: 307ms
37:	learn: 23.4886046	total: 185ms	remaining: 301ms
38:	learn: 23.2786313	total: 189ms	remaining: 296ms
39:	learn: 23.0060540	total: 193ms	remaining: 290ms
40:	learn: 22.7848361	total: 197ms	remaining: 284ms
41:	learn: 22.5485511	total: 201ms	remaining: 278ms
42:	learn: 22.3113565	total: 205ms	remaining: 272ms
43:	learn: 22.1296084	total: 209ms	remaining: 267ms
44:	learn: 21.8514989	total: 213ms	remaining: 260ms
45:	learn: 21.6540201	total: 217ms	remaining: 254ms
46:	learn: 21.4203535	total: 221ms	remaining: 249ms
47:	learn: 21.2317196	total: 225ms	remaining: 244ms
48:	learn: 21.0547467	total: 230ms	remaining: 239ms
49:	learn: 20.9192535	total: 234ms	remaining: 234ms
50:	learn: 20.6975386	total: 238ms	remaining: 229ms
51:	learn: 20.5839720	total: 243ms	remaining: 224ms
52:	learn: 20.4528901	total: 247ms	remaining: 219ms
53:	learn: 20.3392419	total: 251ms	remaining: 214ms
54:	learn: 20.1518693	total: 256ms	remaining: 209ms
55:	learn: 19.9928770	total: 260ms	remaining: 204ms
56:	learn: 19.8042028	total: 268ms	remaining: 202ms
57:	learn: 19.7000879	total: 275ms	remaining: 199ms
58:	learn: 19.5524154	total: 283ms	remaining: 197ms
59:	learn: 19.4366908	total: 289ms	remaining: 193ms
60:	learn: 19.2739134	total: 296ms	remaining: 189ms
61:	learn: 19.1499266	total: 302ms	remaining: 185ms
62:	learn: 18.9948972	total: 306ms	remaining: 180ms
63:	learn: 18.8952299	total: 312ms	remaining: 175ms
64:	learn: 18.7545430	total: 317ms	remaining: 171ms
65:	learn: 18.6315116	total: 322ms	remaining: 166ms
66:	learn: 18.5164994	total: 327ms	remaining: 161ms
67:	learn: 18.3983038	total: 332ms	remaining: 156ms
68:	learn: 18.2803212	total: 337ms	remaining: 151ms
69:	learn: 18.1738467	total: 342ms	remaining: 147ms
70:	learn: 18.0884235	total: 347ms	remaining: 142ms
71:	learn: 18.0129445	total: 352ms	remaining: 137ms
72:	learn: 17.8582158	total: 357ms	remaining: 132ms
73:	learn: 17.7473705	total: 362ms	remaining: 127ms
74:	learn: 17.6431421	total: 367ms	remaining: 122ms
75:	learn: 17.5398511	total: 371ms	remaining: 117ms
76:	learn: 17.4404598	total: 375ms	remaining: 112ms
77:	learn: 17.3477525	total: 379ms	remaining: 107ms
78:	learn: 17.2283831	total: 382ms	remaining: 102ms
79:	learn: 17.0767035	total: 387ms	remaining: 96.7ms
80:	learn: 16.9732705	total: 390ms	remaining: 91.6ms
81:	learn: 16.8927449	total: 394ms	remaining: 86.5ms
82:	learn: 16.8145625	total: 398ms	remaining: 81.5ms
83:	learn: 16.7290845	total: 402ms	remaining: 76.5ms
84:	learn: 16.6661414	total: 405ms	remaining: 71.5ms
85:	learn: 16.5875575	total: 409ms	remaining: 66.7ms
86:	learn: 16.4578580	total: 414ms	remaining: 61.8ms
87:	learn: 16.4243550	total: 417ms	remaining: 56.9ms
88:	learn: 16.3251337	total: 421ms	remaining: 52ms
89:	learn: 16.2516385	total: 426ms	remaining: 47.3ms
90:	learn: 16.1226518	total: 430ms	remaining: 42.5ms
91:	learn: 16.0718308	total: 435ms	remaining: 37.8ms
92:	learn: 15.9636735	total: 439ms	remaining: 33.1ms
93:	learn: 15.8923693	total: 444ms	remaining: 28.3ms
94:	learn: 15.8270425	total: 448ms	remaining: 23.6ms
95:	learn: 15.7449077	total: 452ms	remaining: 18.8ms
96:	learn: 15.6978936	total: 457ms	remaining: 14.1ms
97:	learn: 15.6527285	total: 462ms	remaining: 9.42ms
98:	learn: 15.5557320	total: 475ms	remaining: 4.79ms
99:	learn: 15.4399171	total: 483ms	remaining: 0us
0:	learn: 46.7092506	total: 5.22ms	remaining: 517ms
1:	learn: 45.8266821	total: 9.74ms	remaining: 477ms
2:	learn: 45.0052023	total: 15.5ms	remaining: 502ms
3:	learn: 44.3828795	total: 21ms	remaining: 505ms
4:	learn: 43.7255353	total: 26.1ms	remaining: 496ms
5:	learn: 43.1663831	total: 30.1ms	remaining: 471ms
6:	learn: 42.3875189	total: 34.4ms	remaining: 457ms
7:	learn: 41.7839075	total: 38.7ms	remaining: 445ms
8:	learn: 41.0740108	total: 42.8ms	remaining: 433ms
9:	learn: 40.3846647	total: 47.3ms	remaining: 426ms
10:	learn: 39.8821046	total: 51.3ms	remaining: 415ms
11:	learn: 39.1807254	total: 55.2ms	remaining: 405ms
12:	learn: 38.7153028	total: 59.2ms	remaining: 396ms
13:	learn: 38.0474495	total: 63ms	remaining: 387ms
14:	learn: 37.3844461	total: 66.9ms	remaining: 379ms
15:	learn: 36.9210704	total: 71ms	remaining: 373ms
16:	learn: 36.3160964	total: 75.5ms	remaining: 368ms
17:	learn: 35.8915826	total: 79.5ms	remaining: 362ms
18:	learn: 35.5519989	total: 83.3ms	remaining: 355ms
19:	learn: 35.1437045	total: 87ms	remaining: 348ms
20:	learn: 34.6387799	total: 91.2ms	remaining: 343ms
21:	learn: 34.2437068	total: 95.7ms	remaining: 339ms
22:	learn: 33.8262100	total: 100ms	remaining: 336ms
23:	learn: 33.4683000	total: 104ms	remaining: 331ms
24:	learn: 32.9996389	total: 109ms	remaining: 326ms
25:	learn: 32.6942147	total: 113ms	remaining: 322ms
26:	learn: 32.3016096	total: 117ms	remaining: 317ms
27:	learn: 31.9517346	total: 122ms	remaining: 315ms
28:	learn: 31.5277387	total: 127ms	remaining: 311ms
29:	learn: 31.2545365	total: 131ms	remaining: 307ms
30:	learn: 31.0510813	total: 139ms	remaining: 310ms
31:	learn: 30.6383830	total: 147ms	remaining: 313ms
32:	learn: 30.2800150	total: 156ms	remaining: 316ms
33:	learn: 29.9559797	total: 164ms	remaining: 319ms
34:	learn: 29.5802745	total: 169ms	remaining: 315ms
35:	learn: 29.2605111	total: 174ms	remaining: 310ms
36:	learn: 28.9582434	total: 179ms	remaining: 305ms
37:	learn: 28.6149387	total: 185ms	remaining: 301ms
38:	learn: 28.3980091	total: 190ms	remaining: 297ms
39:	learn: 28.1704520	total: 194ms	remaining: 292ms
40:	learn: 27.8881319	total: 200ms	remaining: 287ms
41:	learn: 27.5805731	total: 205ms	remaining: 283ms
42:	learn: 27.3520567	total: 210ms	remaining: 278ms
43:	learn: 27.1039679	total: 215ms	remaining: 273ms
44:	learn: 26.8472623	total: 220ms	remaining: 269ms
45:	learn: 26.5757869	total: 225ms	remaining: 265ms
46:	learn: 26.4579118	total: 231ms	remaining: 260ms
47:	learn: 26.1279008	total: 236ms	remaining: 256ms
48:	learn: 25.8503346	total: 242ms	remaining: 252ms
49:	learn: 25.7039015	total: 247ms	remaining: 247ms
50:	learn: 25.4317154	total: 252ms	remaining: 242ms
51:	learn: 25.3028008	total: 255ms	remaining: 236ms
52:	learn: 25.1906194	total: 259ms	remaining: 230ms
53:	learn: 25.0082790	total: 263ms	remaining: 224ms
54:	learn: 24.8264791	total: 267ms	remaining: 219ms
55:	learn: 24.5961365	total: 271ms	remaining: 213ms
56:	learn: 24.4007690	total: 275ms	remaining: 207ms
57:	learn: 24.2476228	total: 279ms	remaining: 202ms
58:	learn: 23.9582465	total: 283ms	remaining: 197ms
59:	learn: 23.7247243	total: 287ms	remaining: 191ms
60:	learn: 23.5379970	total: 291ms	remaining: 186ms
61:	learn: 23.3908530	total: 295ms	remaining: 181ms
62:	learn: 23.2123241	total: 300ms	remaining: 176ms
63:	learn: 23.1010345	total: 304ms	remaining: 171ms
64:	learn: 22.9032423	total: 309ms	remaining: 166ms
65:	learn: 22.7815198	total: 313ms	remaining: 161ms
66:	learn: 22.6325063	total: 317ms	remaining: 156ms
67:	learn: 22.5406071	total: 322ms	remaining: 152ms
68:	learn: 22.4413332	total: 326ms	remaining: 147ms
69:	learn: 22.3005609	total: 330ms	remaining: 142ms
70:	learn: 22.1779345	total: 339ms	remaining: 138ms
71:	learn: 22.0491576	total: 346ms	remaining: 134ms
72:	learn: 21.9379106	total: 354ms	remaining: 131ms
73:	learn: 21.7597096	total: 359ms	remaining: 126ms
74:	learn: 21.6042300	total: 365ms	remaining: 122ms
75:	learn: 21.4644642	total: 370ms	remaining: 117ms
76:	learn: 21.3811287	total: 375ms	remaining: 112ms
77:	learn: 21.3089276	total: 380ms	remaining: 107ms
78:	learn: 21.1654429	total: 385ms	remaining: 102ms
79:	learn: 20.9602460	total: 391ms	remaining: 97.6ms
80:	learn: 20.7959461	total: 396ms	remaining: 92.8ms
81:	learn: 20.5861156	total: 401ms	remaining: 87.9ms
82:	learn: 20.5120680	total: 406ms	remaining: 83.1ms
83:	learn: 20.3997233	total: 411ms	remaining: 78.2ms
84:	learn: 20.2499469	total: 416ms	remaining: 73.4ms
85:	learn: 20.1117768	total: 421ms	remaining: 68.5ms
86:	learn: 20.0617643	total: 426ms	remaining: 63.6ms
87:	learn: 19.9609182	total: 430ms	remaining: 58.6ms
88:	learn: 19.8763814	total: 434ms	remaining: 53.7ms
89:	learn: 19.7843516	total: 438ms	remaining: 48.7ms
90:	learn: 19.6926200	total: 442ms	remaining: 43.7ms
91:	learn: 19.5686774	total: 446ms	remaining: 38.8ms
92:	learn: 19.4727236	total: 450ms	remaining: 33.9ms
93:	learn: 19.3780174	total: 454ms	remaining: 29ms
94:	learn: 19.2840650	total: 458ms	remaining: 24.1ms
95:	learn: 19.1747368	total: 462ms	remaining: 19.2ms
96:	learn: 19.1273306	total: 466ms	remaining: 14.4ms
97:	learn: 19.0413946	total: 470ms	remaining: 9.59ms
98:	learn: 18.8980682	total: 474ms	remaining: 4.78ms
99:	learn: 18.7799962	total: 478ms	remaining: 0us
0:	learn: 46.4426352	total: 4.82ms	remaining: 477ms
1:	learn: 45.5770653	total: 13ms	remaining: 636ms
2:	learn: 44.6956685	total: 20.1ms	remaining: 649ms
3:	learn: 43.9934709	total: 30ms	remaining: 719ms
4:	learn: 43.3008183	total: 35.9ms	remaining: 682ms
5:	learn: 42.7510022	total: 41.7ms	remaining: 654ms
6:	learn: 42.0237555	total: 46.8ms	remaining: 622ms
7:	learn: 41.5354996	total: 52.3ms	remaining: 601ms
8:	learn: 41.0264055	total: 57.5ms	remaining: 581ms
9:	learn: 40.5267003	total: 62.7ms	remaining: 564ms
10:	learn: 39.8363942	total: 67.7ms	remaining: 548ms
11:	learn: 39.2014089	total: 73.1ms	remaining: 536ms
12:	learn: 38.7943524	total: 78.6ms	remaining: 526ms
13:	learn: 38.1664113	total: 84ms	remaining: 516ms
14:	learn: 37.7492773	total: 88.9ms	remaining: 504ms
15:	learn: 37.2369693	total: 93.5ms	remaining: 491ms
16:	learn: 36.6953383	total: 98.2ms	remaining: 480ms
17:	learn: 36.3580916	total: 103ms	remaining: 470ms
18:	learn: 35.8637745	total: 108ms	remaining: 462ms
19:	learn: 35.4299153	total: 112ms	remaining: 449ms
20:	learn: 34.8794879	total: 116ms	remaining: 438ms
21:	learn: 34.3253348	total: 120ms	remaining: 425ms
22:	learn: 33.9307096	total: 123ms	remaining: 413ms
23:	learn: 33.5952896	total: 127ms	remaining: 403ms
24:	learn: 33.1314051	total: 131ms	remaining: 394ms
25:	learn: 32.8502968	total: 136ms	remaining: 386ms
26:	learn: 32.4430184	total: 140ms	remaining: 378ms
27:	learn: 32.0721224	total: 143ms	remaining: 369ms
28:	learn: 31.7977479	total: 148ms	remaining: 361ms
29:	learn: 31.3999469	total: 151ms	remaining: 353ms
30:	learn: 31.1179360	total: 155ms	remaining: 345ms
31:	learn: 30.7712852	total: 159ms	remaining: 339ms
32:	learn: 30.2912977	total: 163ms	remaining: 331ms
33:	learn: 29.9920376	total: 167ms	remaining: 324ms
34:	learn: 29.6637918	total: 171ms	remaining: 317ms
35:	learn: 29.3522959	total: 175ms	remaining: 311ms
36:	learn: 29.0482516	total: 179ms	remaining: 305ms
37:	learn: 28.7956656	total: 184ms	remaining: 300ms
38:	learn: 28.4845569	total: 188ms	remaining: 294ms
39:	learn: 28.3038067	total: 192ms	remaining: 288ms
40:	learn: 28.1185263	total: 196ms	remaining: 283ms
41:	learn: 27.8012563	total: 201ms	remaining: 278ms
42:	learn: 27.5184259	total: 206ms	remaining: 273ms
43:	learn: 27.3019892	total: 210ms	remaining: 268ms
44:	learn: 27.0494594	total: 219ms	remaining: 267ms
45:	learn: 26.8054317	total: 226ms	remaining: 265ms
46:	learn: 26.6554974	total: 234ms	remaining: 264ms
47:	learn: 26.3568392	total: 240ms	remaining: 260ms
48:	learn: 26.1045872	total: 250ms	remaining: 260ms
49:	learn: 25.9807311	total: 255ms	remaining: 255ms
50:	learn: 25.7104640	total: 260ms	remaining: 250ms
51:	learn: 25.6019547	total: 265ms	remaining: 244ms
52:	learn: 25.5011930	total: 270ms	remaining: 239ms
53:	learn: 25.2291639	total: 275ms	remaining: 234ms
54:	learn: 24.9952313	total: 280ms	remaining: 229ms
55:	learn: 24.8195031	total: 285ms	remaining: 224ms
56:	learn: 24.5591684	total: 290ms	remaining: 219ms
57:	learn: 24.4163080	total: 295ms	remaining: 213ms
58:	learn: 24.2328188	total: 299ms	remaining: 208ms
59:	learn: 24.0087408	total: 304ms	remaining: 203ms
60:	learn: 23.8918912	total: 309ms	remaining: 198ms
61:	learn: 23.7537024	total: 315ms	remaining: 193ms
62:	learn: 23.5466923	total: 318ms	remaining: 187ms
63:	learn: 23.3903724	total: 323ms	remaining: 181ms
64:	learn: 23.3257785	total: 326ms	remaining: 176ms
65:	learn: 23.2839464	total: 330ms	remaining: 170ms
66:	learn: 23.1476036	total: 334ms	remaining: 164ms
67:	learn: 22.9480972	total: 338ms	remaining: 159ms
68:	learn: 22.7537529	total: 341ms	remaining: 153ms
69:	learn: 22.6209544	total: 346ms	remaining: 148ms
70:	learn: 22.5058753	total: 350ms	remaining: 143ms
71:	learn: 22.4068656	total: 353ms	remaining: 137ms
72:	learn: 22.3254150	total: 358ms	remaining: 132ms
73:	learn: 22.1784174	total: 361ms	remaining: 127ms
74:	learn: 22.1095388	total: 365ms	remaining: 122ms
75:	learn: 21.9958083	total: 369ms	remaining: 117ms
76:	learn: 21.8728475	total: 373ms	remaining: 112ms
77:	learn: 21.7975828	total: 378ms	remaining: 107ms
78:	learn: 21.7133267	total: 382ms	remaining: 102ms
79:	learn: 21.6023410	total: 386ms	remaining: 96.6ms
80:	learn: 21.5254474	total: 391ms	remaining: 91.6ms
81:	learn: 21.3307418	total: 395ms	remaining: 86.8ms
82:	learn: 21.2411976	total: 399ms	remaining: 81.8ms
83:	learn: 21.1091386	total: 404ms	remaining: 76.9ms
84:	learn: 21.0526747	total: 408ms	remaining: 72ms
85:	learn: 20.9083817	total: 417ms	remaining: 67.8ms
86:	learn: 20.8767767	total: 424ms	remaining: 63.4ms
87:	learn: 20.8143988	total: 433ms	remaining: 59.1ms
88:	learn: 20.7127697	total: 440ms	remaining: 54.4ms
89:	learn: 20.6112504	total: 446ms	remaining: 49.5ms
90:	learn: 20.4609960	total: 451ms	remaining: 44.6ms
91:	learn: 20.3648890	total: 456ms	remaining: 39.7ms
92:	learn: 20.3052040	total: 461ms	remaining: 34.7ms
93:	learn: 20.2587865	total: 466ms	remaining: 29.8ms
94:	learn: 20.2096406	total: 472ms	remaining: 24.8ms
95:	learn: 20.1301385	total: 477ms	remaining: 19.9ms
96:	learn: 20.0401359	total: 483ms	remaining: 14.9ms
97:	learn: 19.9791591	total: 487ms	remaining: 9.95ms
98:	learn: 19.9237318	total: 492ms	remaining: 4.97ms
99:	learn: 19.8009190	total: 497ms	remaining: 0us
0:	learn: 46.9286701	total: 4.27ms	remaining: 423ms
1:	learn: 46.2851598	total: 8.04ms	remaining: 394ms
2:	learn: 45.4586007	total: 12.2ms	remaining: 395ms
3:	learn: 44.6581393	total: 16.1ms	remaining: 387ms
4:	learn: 43.8231644	total: 20.2ms	remaining: 384ms
5:	learn: 43.2906569	total: 24ms	remaining: 376ms
6:	learn: 42.5095813	total: 28.6ms	remaining: 380ms
7:	learn: 41.9310465	total: 32.9ms	remaining: 379ms
8:	learn: 41.2083262	total: 36.9ms	remaining: 373ms
9:	learn: 40.6852547	total: 41.3ms	remaining: 372ms
10:	learn: 39.9637018	total: 46ms	remaining: 372ms
11:	learn: 39.2804189	total: 50.5ms	remaining: 370ms
12:	learn: 38.8804017	total: 55.1ms	remaining: 369ms
13:	learn: 38.3826597	total: 59.7ms	remaining: 367ms
14:	learn: 37.9240424	total: 64.2ms	remaining: 364ms
15:	learn: 37.4312070	total: 68.6ms	remaining: 360ms
16:	learn: 36.8803673	total: 73.4ms	remaining: 358ms
17:	learn: 36.5496582	total: 77.7ms	remaining: 354ms
18:	learn: 36.2078375	total: 86.3ms	remaining: 368ms
19:	learn: 35.6806593	total: 93.3ms	remaining: 373ms
20:	learn: 35.1512154	total: 102ms	remaining: 383ms
21:	learn: 34.6013055	total: 108ms	remaining: 383ms
22:	learn: 34.2380102	total: 114ms	remaining: 383ms
23:	learn: 33.8720185	total: 120ms	remaining: 379ms
24:	learn: 33.4426135	total: 125ms	remaining: 376ms
25:	learn: 33.1471186	total: 131ms	remaining: 372ms
26:	learn: 32.8018279	total: 137ms	remaining: 370ms
27:	learn: 32.4498594	total: 143ms	remaining: 367ms
28:	learn: 31.9749480	total: 149ms	remaining: 364ms
29:	learn: 31.6470735	total: 154ms	remaining: 360ms
30:	learn: 31.4265242	total: 159ms	remaining: 354ms
31:	learn: 31.0753325	total: 165ms	remaining: 350ms
32:	learn: 30.7192494	total: 170ms	remaining: 346ms
33:	learn: 30.3547940	total: 175ms	remaining: 341ms
34:	learn: 30.1296593	total: 181ms	remaining: 336ms
35:	learn: 29.9367140	total: 186ms	remaining: 331ms
36:	learn: 29.6248477	total: 191ms	remaining: 325ms
37:	learn: 29.3156707	total: 195ms	remaining: 317ms
38:	learn: 29.1534039	total: 198ms	remaining: 310ms
39:	learn: 28.9351289	total: 203ms	remaining: 304ms
40:	learn: 28.7057685	total: 207ms	remaining: 297ms
41:	learn: 28.3132521	total: 211ms	remaining: 291ms
42:	learn: 28.0739054	total: 215ms	remaining: 285ms
43:	learn: 27.8135917	total: 219ms	remaining: 278ms
44:	learn: 27.5376804	total: 222ms	remaining: 272ms
45:	learn: 27.3195849	total: 226ms	remaining: 266ms
46:	learn: 27.1681104	total: 230ms	remaining: 259ms
47:	learn: 27.0122442	total: 234ms	remaining: 253ms
48:	learn: 26.7819409	total: 238ms	remaining: 248ms
49:	learn: 26.6429308	total: 242ms	remaining: 242ms
50:	learn: 26.3482899	total: 246ms	remaining: 236ms
51:	learn: 26.2432755	total: 250ms	remaining: 230ms
52:	learn: 26.0811102	total: 254ms	remaining: 225ms
53:	learn: 25.9398113	total: 258ms	remaining: 219ms
54:	learn: 25.7891395	total: 262ms	remaining: 215ms
55:	learn: 25.6185338	total: 267ms	remaining: 209ms
56:	learn: 25.3293977	total: 271ms	remaining: 204ms
57:	learn: 25.1918906	total: 275ms	remaining: 199ms
58:	learn: 25.0503990	total: 279ms	remaining: 194ms
59:	learn: 24.8225776	total: 283ms	remaining: 189ms
60:	learn: 24.5969153	total: 287ms	remaining: 184ms
61:	learn: 24.4657353	total: 294ms	remaining: 180ms
62:	learn: 24.2861000	total: 300ms	remaining: 176ms
63:	learn: 24.1719148	total: 308ms	remaining: 173ms
64:	learn: 24.0547875	total: 314ms	remaining: 169ms
65:	learn: 23.9156724	total: 322ms	remaining: 166ms
66:	learn: 23.7604012	total: 327ms	remaining: 161ms
67:	learn: 23.6265679	total: 332ms	remaining: 156ms
68:	learn: 23.5372255	total: 337ms	remaining: 151ms
69:	learn: 23.3286241	total: 342ms	remaining: 146ms
70:	learn: 23.1806465	total: 347ms	remaining: 142ms
71:	learn: 23.0652081	total: 353ms	remaining: 137ms
72:	learn: 22.9231023	total: 358ms	remaining: 132ms
73:	learn: 22.8020380	total: 363ms	remaining: 127ms
74:	learn: 22.6525036	total: 368ms	remaining: 123ms
75:	learn: 22.5616268	total: 373ms	remaining: 118ms
76:	learn: 22.4395250	total: 378ms	remaining: 113ms
77:	learn: 22.3732379	total: 382ms	remaining: 108ms
78:	learn: 22.2300874	total: 388ms	remaining: 103ms
79:	learn: 22.0209882	total: 393ms	remaining: 98.3ms
80:	learn: 21.8703996	total: 398ms	remaining: 93.3ms
81:	learn: 21.7222039	total: 401ms	remaining: 88.1ms
82:	learn: 21.5903685	total: 405ms	remaining: 83ms
83:	learn: 21.4915083	total: 409ms	remaining: 77.9ms
84:	learn: 21.3320736	total: 413ms	remaining: 72.8ms
85:	learn: 21.2295060	total: 416ms	remaining: 67.8ms
86:	learn: 21.1983620	total: 421ms	remaining: 62.8ms
87:	learn: 21.1404156	total: 424ms	remaining: 57.9ms
88:	learn: 21.0684840	total: 428ms	remaining: 52.9ms
89:	learn: 20.9269197	total: 432ms	remaining: 48ms
90:	learn: 20.8614606	total: 436ms	remaining: 43.1ms
91:	learn: 20.6642996	total: 440ms	remaining: 38.2ms
92:	learn: 20.5612705	total: 443ms	remaining: 33.4ms
93:	learn: 20.5264997	total: 447ms	remaining: 28.5ms
94:	learn: 20.4532331	total: 452ms	remaining: 23.8ms
95:	learn: 20.3700696	total: 457ms	remaining: 19ms
96:	learn: 20.2671574	total: 461ms	remaining: 14.2ms
97:	learn: 20.1761207	total: 465ms	remaining: 9.49ms
98:	learn: 20.0533799	total: 469ms	remaining: 4.74ms
99:	learn: 19.9890055	total: 473ms	remaining: 0us
0:	learn: 27.7143805	total: 5.09ms	remaining: 504ms
1:	learn: 27.2245894	total: 10.2ms	remaining: 500ms
2:	learn: 26.8693029	total: 15.7ms	remaining: 508ms
3:	learn: 26.4713217	total: 21ms	remaining: 503ms
4:	learn: 26.1261794	total: 26.1ms	remaining: 496ms
5:	learn: 25.8160419	total: 31.3ms	remaining: 491ms
6:	learn: 25.3860050	total: 36.5ms	remaining: 486ms
7:	learn: 25.0621682	total: 41.1ms	remaining: 473ms
8:	learn: 24.7574429	total: 46.2ms	remaining: 467ms
9:	learn: 24.5154734	total: 51.7ms	remaining: 465ms
10:	learn: 24.2199118	total: 57ms	remaining: 461ms
11:	learn: 23.9774955	total: 60.6ms	remaining: 444ms
12:	learn: 23.7755558	total: 64.4ms	remaining: 431ms
13:	learn: 23.4384476	total: 68.6ms	remaining: 421ms
14:	learn: 23.2035324	total: 72.3ms	remaining: 410ms
15:	learn: 22.9925293	total: 75.7ms	remaining: 398ms
16:	learn: 22.7981113	total: 79.5ms	remaining: 388ms
17:	learn: 22.5829245	total: 83.4ms	remaining: 380ms
18:	learn: 22.4131931	total: 87.5ms	remaining: 373ms
19:	learn: 22.1833629	total: 91.3ms	remaining: 365ms
20:	learn: 21.9660824	total: 94.9ms	remaining: 357ms
21:	learn: 21.7281998	total: 98.7ms	remaining: 350ms
22:	learn: 21.5000824	total: 103ms	remaining: 344ms
23:	learn: 21.2717031	total: 106ms	remaining: 337ms
24:	learn: 21.0926073	total: 111ms	remaining: 332ms
25:	learn: 20.8922144	total: 114ms	remaining: 325ms
26:	learn: 20.7498215	total: 118ms	remaining: 319ms
27:	learn: 20.5781754	total: 119ms	remaining: 306ms
28:	learn: 20.4294665	total: 123ms	remaining: 300ms
29:	learn: 20.2273985	total: 126ms	remaining: 295ms
30:	learn: 20.0920234	total: 131ms	remaining: 291ms
31:	learn: 19.9311712	total: 135ms	remaining: 288ms
32:	learn: 19.7852359	total: 140ms	remaining: 284ms
33:	learn: 19.6211007	total: 145ms	remaining: 281ms
34:	learn: 19.4806501	total: 148ms	remaining: 276ms
35:	learn: 19.3415380	total: 153ms	remaining: 272ms
36:	learn: 19.2075499	total: 157ms	remaining: 267ms
37:	learn: 19.0582745	total: 161ms	remaining: 263ms
38:	learn: 18.8852020	total: 166ms	remaining: 260ms
39:	learn: 18.6868677	total: 174ms	remaining: 261ms
40:	learn: 18.5481481	total: 181ms	remaining: 261ms
41:	learn: 18.4508846	total: 189ms	remaining: 261ms
42:	learn: 18.3650555	total: 195ms	remaining: 259ms
43:	learn: 18.1818415	total: 201ms	remaining: 255ms
44:	learn: 18.0782035	total: 206ms	remaining: 252ms
45:	learn: 17.9724472	total: 211ms	remaining: 248ms
46:	learn: 17.8657480	total: 216ms	remaining: 244ms
47:	learn: 17.7217309	total: 221ms	remaining: 240ms
48:	learn: 17.6403061	total: 226ms	remaining: 235ms
49:	learn: 17.5245570	total: 231ms	remaining: 231ms
50:	learn: 17.3976790	total: 237ms	remaining: 227ms
51:	learn: 17.2544460	total: 242ms	remaining: 224ms
52:	learn: 17.1507940	total: 248ms	remaining: 220ms
53:	learn: 17.0391276	total: 252ms	remaining: 215ms
54:	learn: 16.9348155	total: 257ms	remaining: 210ms
55:	learn: 16.8475635	total: 262ms	remaining: 206ms
56:	learn: 16.7691656	total: 268ms	remaining: 202ms
57:	learn: 16.6277836	total: 272ms	remaining: 197ms
58:	learn: 16.5524230	total: 276ms	remaining: 192ms
59:	learn: 16.4614442	total: 280ms	remaining: 187ms
60:	learn: 16.3077836	total: 284ms	remaining: 182ms
61:	learn: 16.2278133	total: 288ms	remaining: 176ms
62:	learn: 16.1288632	total: 292ms	remaining: 172ms
63:	learn: 16.0734717	total: 296ms	remaining: 167ms
64:	learn: 16.0085754	total: 300ms	remaining: 161ms
65:	learn: 15.9278700	total: 304ms	remaining: 156ms
66:	learn: 15.8320321	total: 308ms	remaining: 152ms
67:	learn: 15.7706425	total: 312ms	remaining: 147ms
68:	learn: 15.6404344	total: 316ms	remaining: 142ms
69:	learn: 15.5678129	total: 319ms	remaining: 137ms
70:	learn: 15.4980047	total: 323ms	remaining: 132ms
71:	learn: 15.4324207	total: 328ms	remaining: 127ms
72:	learn: 15.3551877	total: 332ms	remaining: 123ms
73:	learn: 15.2930769	total: 336ms	remaining: 118ms
74:	learn: 15.2307174	total: 341ms	remaining: 114ms
75:	learn: 15.1600937	total: 345ms	remaining: 109ms
76:	learn: 15.0837614	total: 350ms	remaining: 105ms
77:	learn: 15.0185989	total: 355ms	remaining: 100ms
78:	learn: 14.9300717	total: 359ms	remaining: 95.5ms
79:	learn: 14.8928389	total: 367ms	remaining: 91.6ms
80:	learn: 14.8250040	total: 373ms	remaining: 87.6ms
81:	learn: 14.7906114	total: 381ms	remaining: 83.6ms
82:	learn: 14.7214118	total: 389ms	remaining: 79.6ms
83:	learn: 14.6657875	total: 397ms	remaining: 75.5ms
84:	learn: 14.6085682	total: 402ms	remaining: 70.9ms
85:	learn: 14.5334097	total: 407ms	remaining: 66.3ms
86:	learn: 14.4681230	total: 412ms	remaining: 61.6ms
87:	learn: 14.4088334	total: 418ms	remaining: 56.9ms
88:	learn: 14.3541312	total: 423ms	remaining: 52.3ms
89:	learn: 14.2923636	total: 428ms	remaining: 47.6ms
90:	learn: 14.2339259	total: 434ms	remaining: 42.9ms
91:	learn: 14.1439983	total: 439ms	remaining: 38.1ms
92:	learn: 14.0701371	total: 444ms	remaining: 33.4ms
93:	learn: 13.9770736	total: 448ms	remaining: 28.6ms
94:	learn: 13.9275801	total: 453ms	remaining: 23.9ms
95:	learn: 13.8717050	total: 459ms	remaining: 19.1ms
96:	learn: 13.7821340	total: 464ms	remaining: 14.4ms
97:	learn: 13.7383865	total: 469ms	remaining: 9.56ms
98:	learn: 13.6850693	total: 473ms	remaining: 4.77ms
99:	learn: 13.6273539	total: 476ms	remaining: 0us
0:	learn: 43.2118728	total: 4.68ms	remaining: 463ms
1:	learn: 42.3090111	total: 9.15ms	remaining: 448ms
2:	learn: 41.3060764	total: 13.8ms	remaining: 446ms
3:	learn: 40.3653958	total: 18.4ms	remaining: 441ms
4:	learn: 39.5006331	total: 22.4ms	remaining: 426ms
5:	learn: 38.6473041	total: 26.6ms	remaining: 417ms
6:	learn: 37.8560875	total: 31.1ms	remaining: 414ms
7:	learn: 37.0772701	total: 35.4ms	remaining: 407ms
8:	learn: 36.3260704	total: 40.6ms	remaining: 410ms
9:	learn: 35.7300393	total: 48.8ms	remaining: 439ms
10:	learn: 34.9336547	total: 55.9ms	remaining: 452ms
11:	learn: 34.1758190	total: 64.1ms	remaining: 470ms
12:	learn: 33.5120760	total: 74.1ms	remaining: 496ms
13:	learn: 32.8731142	total: 79.9ms	remaining: 491ms
14:	learn: 32.3579595	total: 86.2ms	remaining: 489ms
15:	learn: 31.7969963	total: 92.5ms	remaining: 486ms
16:	learn: 31.3472797	total: 98.8ms	remaining: 482ms
17:	learn: 30.7865884	total: 105ms	remaining: 477ms
18:	learn: 30.3876486	total: 110ms	remaining: 471ms
19:	learn: 29.8840575	total: 116ms	remaining: 465ms
20:	learn: 29.3584237	total: 122ms	remaining: 458ms
21:	learn: 28.9965200	total: 126ms	remaining: 448ms
22:	learn: 28.6117225	total: 131ms	remaining: 439ms
23:	learn: 28.1147832	total: 136ms	remaining: 431ms
24:	learn: 27.7857774	total: 141ms	remaining: 424ms
25:	learn: 27.3181226	total: 147ms	remaining: 418ms
26:	learn: 26.9019101	total: 152ms	remaining: 410ms
27:	learn: 26.6957004	total: 156ms	remaining: 400ms
28:	learn: 26.2816390	total: 159ms	remaining: 390ms
29:	learn: 25.9107534	total: 163ms	remaining: 380ms
30:	learn: 25.5773085	total: 167ms	remaining: 371ms
31:	learn: 25.1916035	total: 171ms	remaining: 363ms
32:	learn: 24.8819670	total: 175ms	remaining: 354ms
33:	learn: 24.5580488	total: 178ms	remaining: 346ms
34:	learn: 24.3088624	total: 182ms	remaining: 338ms
35:	learn: 23.9890893	total: 186ms	remaining: 331ms
36:	learn: 23.7266073	total: 190ms	remaining: 324ms
37:	learn: 23.4886046	total: 194ms	remaining: 317ms
38:	learn: 23.2786313	total: 198ms	remaining: 310ms
39:	learn: 23.0060540	total: 202ms	remaining: 303ms
40:	learn: 22.7848361	total: 206ms	remaining: 297ms
41:	learn: 22.5485511	total: 210ms	remaining: 290ms
42:	learn: 22.3113565	total: 214ms	remaining: 283ms
43:	learn: 22.1296084	total: 218ms	remaining: 278ms
44:	learn: 21.8514989	total: 223ms	remaining: 272ms
45:	learn: 21.6540201	total: 227ms	remaining: 266ms
46:	learn: 21.4203535	total: 231ms	remaining: 261ms
47:	learn: 21.2317196	total: 236ms	remaining: 255ms
48:	learn: 21.0547467	total: 240ms	remaining: 250ms
49:	learn: 20.9192535	total: 244ms	remaining: 244ms
50:	learn: 20.6975386	total: 249ms	remaining: 239ms
51:	learn: 20.5839720	total: 255ms	remaining: 235ms
52:	learn: 20.4528901	total: 262ms	remaining: 232ms
53:	learn: 20.3392419	total: 269ms	remaining: 229ms
54:	learn: 20.1518693	total: 277ms	remaining: 227ms
55:	learn: 19.9928770	total: 285ms	remaining: 224ms
56:	learn: 19.8042028	total: 290ms	remaining: 219ms
57:	learn: 19.7000879	total: 295ms	remaining: 214ms
58:	learn: 19.5524154	total: 300ms	remaining: 208ms
59:	learn: 19.4366908	total: 305ms	remaining: 203ms
60:	learn: 19.2739134	total: 310ms	remaining: 198ms
61:	learn: 19.1499266	total: 315ms	remaining: 193ms
62:	learn: 18.9948972	total: 320ms	remaining: 188ms
63:	learn: 18.8952299	total: 325ms	remaining: 183ms
64:	learn: 18.7545430	total: 330ms	remaining: 178ms
65:	learn: 18.6315116	total: 335ms	remaining: 173ms
66:	learn: 18.5164994	total: 340ms	remaining: 167ms
67:	learn: 18.3983038	total: 344ms	remaining: 162ms
68:	learn: 18.2803212	total: 350ms	remaining: 157ms
69:	learn: 18.1738467	total: 355ms	remaining: 152ms
70:	learn: 18.0884235	total: 360ms	remaining: 147ms
71:	learn: 18.0129445	total: 364ms	remaining: 142ms
72:	learn: 17.8582158	total: 368ms	remaining: 136ms
73:	learn: 17.7473705	total: 371ms	remaining: 130ms
74:	learn: 17.6431421	total: 375ms	remaining: 125ms
75:	learn: 17.5398511	total: 379ms	remaining: 120ms
76:	learn: 17.4404598	total: 383ms	remaining: 114ms
77:	learn: 17.3477525	total: 387ms	remaining: 109ms
78:	learn: 17.2283831	total: 391ms	remaining: 104ms
79:	learn: 17.0767035	total: 394ms	remaining: 98.6ms
80:	learn: 16.9732705	total: 398ms	remaining: 93.4ms
81:	learn: 16.8927449	total: 403ms	remaining: 88.4ms
82:	learn: 16.8145625	total: 407ms	remaining: 83.3ms
83:	learn: 16.7290845	total: 411ms	remaining: 78.3ms
84:	learn: 16.6661414	total: 416ms	remaining: 73.4ms
85:	learn: 16.5875575	total: 421ms	remaining: 68.5ms
86:	learn: 16.4578580	total: 426ms	remaining: 63.6ms
87:	learn: 16.4243550	total: 430ms	remaining: 58.7ms
88:	learn: 16.3251337	total: 435ms	remaining: 53.8ms
89:	learn: 16.2516385	total: 440ms	remaining: 48.8ms
90:	learn: 16.1226518	total: 444ms	remaining: 43.9ms
91:	learn: 16.0718308	total: 449ms	remaining: 39ms
92:	learn: 15.9636735	total: 455ms	remaining: 34.3ms
93:	learn: 15.8923693	total: 464ms	remaining: 29.6ms
94:	learn: 15.8270425	total: 473ms	remaining: 24.9ms
95:	learn: 15.7449077	total: 479ms	remaining: 20ms
96:	learn: 15.6978936	total: 487ms	remaining: 15.1ms
97:	learn: 15.6527285	total: 492ms	remaining: 10ms
98:	learn: 15.5557320	total: 497ms	remaining: 5.02ms
99:	learn: 15.4399171	total: 503ms	remaining: 0us
0:	learn: 46.7092506	total: 6.13ms	remaining: 607ms
1:	learn: 45.8266821	total: 10.5ms	remaining: 516ms
2:	learn: 45.0052023	total: 15.3ms	remaining: 495ms
3:	learn: 44.3828795	total: 19.5ms	remaining: 468ms
4:	learn: 43.7255353	total: 24.3ms	remaining: 462ms
5:	learn: 43.1663831	total: 28.9ms	remaining: 453ms
6:	learn: 42.3875189	total: 33.4ms	remaining: 443ms
7:	learn: 41.7839075	total: 37.7ms	remaining: 434ms
8:	learn: 41.0740108	total: 42.1ms	remaining: 426ms
9:	learn: 40.3846647	total: 46.6ms	remaining: 419ms
10:	learn: 39.8821046	total: 51ms	remaining: 413ms
11:	learn: 39.1807254	total: 55.5ms	remaining: 407ms
12:	learn: 38.7153028	total: 59.9ms	remaining: 401ms
13:	learn: 38.0474495	total: 64.4ms	remaining: 395ms
14:	learn: 37.3844461	total: 69.1ms	remaining: 392ms
15:	learn: 36.9210704	total: 73.4ms	remaining: 385ms
16:	learn: 36.3160964	total: 77.5ms	remaining: 378ms
17:	learn: 35.8915826	total: 82.2ms	remaining: 374ms
18:	learn: 35.5519989	total: 86.8ms	remaining: 370ms
19:	learn: 35.1437045	total: 91.5ms	remaining: 366ms
20:	learn: 34.6387799	total: 96.4ms	remaining: 363ms
21:	learn: 34.2437068	total: 101ms	remaining: 359ms
22:	learn: 33.8262100	total: 106ms	remaining: 354ms
23:	learn: 33.4683000	total: 110ms	remaining: 349ms
24:	learn: 32.9996389	total: 114ms	remaining: 343ms
25:	learn: 32.6942147	total: 119ms	remaining: 339ms
26:	learn: 32.3016096	total: 126ms	remaining: 341ms
27:	learn: 31.9517346	total: 135ms	remaining: 346ms
28:	learn: 31.5277387	total: 143ms	remaining: 349ms
29:	learn: 31.2545365	total: 150ms	remaining: 349ms
30:	learn: 31.0510813	total: 155ms	remaining: 344ms
31:	learn: 30.6383830	total: 160ms	remaining: 340ms
32:	learn: 30.2800150	total: 165ms	remaining: 336ms
33:	learn: 29.9559797	total: 170ms	remaining: 330ms
34:	learn: 29.5802745	total: 175ms	remaining: 325ms
35:	learn: 29.2605111	total: 180ms	remaining: 320ms
36:	learn: 28.9582434	total: 185ms	remaining: 316ms
37:	learn: 28.6149387	total: 191ms	remaining: 311ms
38:	learn: 28.3980091	total: 196ms	remaining: 306ms
39:	learn: 28.1704520	total: 201ms	remaining: 302ms
40:	learn: 27.8881319	total: 206ms	remaining: 296ms
41:	learn: 27.5805731	total: 211ms	remaining: 291ms
42:	learn: 27.3520567	total: 216ms	remaining: 287ms
43:	learn: 27.1039679	total: 221ms	remaining: 282ms
44:	learn: 26.8472623	total: 225ms	remaining: 275ms
45:	learn: 26.5757869	total: 229ms	remaining: 269ms
46:	learn: 26.4579118	total: 233ms	remaining: 263ms
47:	learn: 26.1279008	total: 238ms	remaining: 258ms
48:	learn: 25.8503346	total: 241ms	remaining: 251ms
49:	learn: 25.7039015	total: 245ms	remaining: 245ms
50:	learn: 25.4317154	total: 249ms	remaining: 240ms
51:	learn: 25.3028008	total: 253ms	remaining: 234ms
52:	learn: 25.1906194	total: 258ms	remaining: 228ms
53:	learn: 25.0082790	total: 261ms	remaining: 223ms
54:	learn: 24.8264791	total: 266ms	remaining: 217ms
55:	learn: 24.5961365	total: 270ms	remaining: 212ms
56:	learn: 24.4007690	total: 274ms	remaining: 207ms
57:	learn: 24.2476228	total: 278ms	remaining: 201ms
58:	learn: 23.9582465	total: 282ms	remaining: 196ms
59:	learn: 23.7247243	total: 287ms	remaining: 191ms
60:	learn: 23.5379970	total: 291ms	remaining: 186ms
61:	learn: 23.3908530	total: 295ms	remaining: 181ms
62:	learn: 23.2123241	total: 300ms	remaining: 176ms
63:	learn: 23.1010345	total: 304ms	remaining: 171ms
64:	learn: 22.9032423	total: 309ms	remaining: 166ms
65:	learn: 22.7815198	total: 313ms	remaining: 161ms
66:	learn: 22.6325063	total: 318ms	remaining: 156ms
67:	learn: 22.5406071	total: 326ms	remaining: 153ms
68:	learn: 22.4413332	total: 333ms	remaining: 150ms
69:	learn: 22.3005609	total: 341ms	remaining: 146ms
70:	learn: 22.1779345	total: 348ms	remaining: 142ms
71:	learn: 22.0491576	total: 362ms	remaining: 141ms
72:	learn: 21.9379106	total: 367ms	remaining: 136ms
73:	learn: 21.7597096	total: 372ms	remaining: 131ms
74:	learn: 21.6042300	total: 378ms	remaining: 126ms
75:	learn: 21.4644642	total: 383ms	remaining: 121ms
76:	learn: 21.3811287	total: 388ms	remaining: 116ms
77:	learn: 21.3089276	total: 393ms	remaining: 111ms
78:	learn: 21.1654429	total: 397ms	remaining: 106ms
79:	learn: 20.9602460	total: 402ms	remaining: 101ms
80:	learn: 20.7959461	total: 407ms	remaining: 95.5ms
81:	learn: 20.5861156	total: 412ms	remaining: 90.4ms
82:	learn: 20.5120680	total: 417ms	remaining: 85.5ms
83:	learn: 20.3997233	total: 423ms	remaining: 80.6ms
84:	learn: 20.2499469	total: 427ms	remaining: 75.4ms
85:	learn: 20.1117768	total: 431ms	remaining: 70.2ms
86:	learn: 20.0617643	total: 436ms	remaining: 65.1ms
87:	learn: 19.9609182	total: 440ms	remaining: 60ms
88:	learn: 19.8763814	total: 444ms	remaining: 54.9ms
89:	learn: 19.7843516	total: 448ms	remaining: 49.8ms
90:	learn: 19.6926200	total: 453ms	remaining: 44.8ms
91:	learn: 19.5686774	total: 457ms	remaining: 39.7ms
92:	learn: 19.4727236	total: 461ms	remaining: 34.7ms
93:	learn: 19.3780174	total: 465ms	remaining: 29.7ms
94:	learn: 19.2840650	total: 470ms	remaining: 24.7ms
95:	learn: 19.1747368	total: 474ms	remaining: 19.7ms
96:	learn: 19.1273306	total: 478ms	remaining: 14.8ms
97:	learn: 19.0413946	total: 483ms	remaining: 9.86ms
98:	learn: 18.8980682	total: 488ms	remaining: 4.93ms
99:	learn: 18.7799962	total: 494ms	remaining: 0us
0:	learn: 46.4426352	total: 6.96ms	remaining: 689ms
1:	learn: 45.5770653	total: 12ms	remaining: 589ms
2:	learn: 44.6956685	total: 17.5ms	remaining: 567ms
3:	learn: 43.9934709	total: 23.4ms	remaining: 561ms
4:	learn: 43.3008183	total: 29.4ms	remaining: 558ms
5:	learn: 42.7510022	total: 34.6ms	remaining: 542ms
6:	learn: 42.0237555	total: 39.8ms	remaining: 529ms
7:	learn: 41.5354996	total: 45.3ms	remaining: 521ms
8:	learn: 41.0264055	total: 50.6ms	remaining: 511ms
9:	learn: 40.5267003	total: 55.7ms	remaining: 502ms
10:	learn: 39.8363942	total: 60.3ms	remaining: 488ms
11:	learn: 39.2014089	total: 65.1ms	remaining: 477ms
12:	learn: 38.7943524	total: 70.6ms	remaining: 473ms
13:	learn: 38.1664113	total: 76.2ms	remaining: 468ms
14:	learn: 37.7492773	total: 80ms	remaining: 453ms
15:	learn: 37.2369693	total: 83.9ms	remaining: 441ms
16:	learn: 36.6953383	total: 87.7ms	remaining: 428ms
17:	learn: 36.3580916	total: 91.7ms	remaining: 418ms
18:	learn: 35.8637745	total: 95.6ms	remaining: 408ms
19:	learn: 35.4299153	total: 99.1ms	remaining: 397ms
20:	learn: 34.8794879	total: 103ms	remaining: 387ms
21:	learn: 34.3253348	total: 107ms	remaining: 379ms
22:	learn: 33.9307096	total: 111ms	remaining: 371ms
23:	learn: 33.5952896	total: 115ms	remaining: 363ms
24:	learn: 33.1314051	total: 118ms	remaining: 355ms
25:	learn: 32.8502968	total: 123ms	remaining: 349ms
26:	learn: 32.4430184	total: 127ms	remaining: 343ms
27:	learn: 32.0721224	total: 130ms	remaining: 335ms
28:	learn: 31.7977479	total: 134ms	remaining: 329ms
29:	learn: 31.3999469	total: 139ms	remaining: 324ms
30:	learn: 31.1179360	total: 143ms	remaining: 319ms
31:	learn: 30.7712852	total: 148ms	remaining: 314ms
32:	learn: 30.2912977	total: 152ms	remaining: 308ms
33:	learn: 29.9920376	total: 156ms	remaining: 302ms
34:	learn: 29.6637918	total: 160ms	remaining: 297ms
35:	learn: 29.3522959	total: 164ms	remaining: 292ms
36:	learn: 29.0482516	total: 168ms	remaining: 287ms
37:	learn: 28.7956656	total: 173ms	remaining: 282ms
38:	learn: 28.4845569	total: 185ms	remaining: 290ms
39:	learn: 28.3038067	total: 192ms	remaining: 288ms
40:	learn: 28.1185263	total: 199ms	remaining: 287ms
41:	learn: 27.8012563	total: 206ms	remaining: 284ms
42:	learn: 27.5184259	total: 211ms	remaining: 280ms
43:	learn: 27.3019892	total: 216ms	remaining: 276ms
44:	learn: 27.0494594	total: 221ms	remaining: 271ms
45:	learn: 26.8054317	total: 226ms	remaining: 266ms
46:	learn: 26.6554974	total: 232ms	remaining: 261ms
47:	learn: 26.3568392	total: 237ms	remaining: 256ms
48:	learn: 26.1045872	total: 242ms	remaining: 252ms
49:	learn: 25.9807311	total: 247ms	remaining: 247ms
50:	learn: 25.7104640	total: 252ms	remaining: 242ms
51:	learn: 25.6019547	total: 257ms	remaining: 237ms
52:	learn: 25.5011930	total: 262ms	remaining: 232ms
53:	learn: 25.2291639	total: 267ms	remaining: 227ms
54:	learn: 24.9952313	total: 271ms	remaining: 222ms
55:	learn: 24.8195031	total: 277ms	remaining: 217ms
56:	learn: 24.5591684	total: 282ms	remaining: 213ms
57:	learn: 24.4163080	total: 286ms	remaining: 207ms
58:	learn: 24.2328188	total: 290ms	remaining: 201ms
59:	learn: 24.0087408	total: 294ms	remaining: 196ms
60:	learn: 23.8918912	total: 297ms	remaining: 190ms
61:	learn: 23.7537024	total: 301ms	remaining: 185ms
62:	learn: 23.5466923	total: 305ms	remaining: 179ms
63:	learn: 23.3903724	total: 309ms	remaining: 174ms
64:	learn: 23.3257785	total: 313ms	remaining: 168ms
65:	learn: 23.2839464	total: 316ms	remaining: 163ms
66:	learn: 23.1476036	total: 320ms	remaining: 158ms
67:	learn: 22.9480972	total: 324ms	remaining: 153ms
68:	learn: 22.7537529	total: 328ms	remaining: 147ms
69:	learn: 22.6209544	total: 332ms	remaining: 142ms
70:	learn: 22.5058753	total: 336ms	remaining: 137ms
71:	learn: 22.4068656	total: 340ms	remaining: 132ms
72:	learn: 22.3254150	total: 344ms	remaining: 127ms
73:	learn: 22.1784174	total: 349ms	remaining: 122ms
74:	learn: 22.1095388	total: 353ms	remaining: 118ms
75:	learn: 21.9958083	total: 358ms	remaining: 113ms
76:	learn: 21.8728475	total: 362ms	remaining: 108ms
77:	learn: 21.7975828	total: 366ms	remaining: 103ms
78:	learn: 21.7133267	total: 371ms	remaining: 98.6ms
79:	learn: 21.6023410	total: 375ms	remaining: 93.8ms
80:	learn: 21.5254474	total: 383ms	remaining: 89.9ms
81:	learn: 21.3307418	total: 390ms	remaining: 85.7ms
82:	learn: 21.2411976	total: 399ms	remaining: 81.7ms
83:	learn: 21.1091386	total: 404ms	remaining: 77ms
84:	learn: 21.0526747	total: 411ms	remaining: 72.5ms
85:	learn: 20.9083817	total: 416ms	remaining: 67.7ms
86:	learn: 20.8767767	total: 421ms	remaining: 63ms
87:	learn: 20.8143988	total: 426ms	remaining: 58.1ms
88:	learn: 20.7127697	total: 431ms	remaining: 53.3ms
89:	learn: 20.6112504	total: 436ms	remaining: 48.5ms
90:	learn: 20.4609960	total: 442ms	remaining: 43.7ms
91:	learn: 20.3648890	total: 447ms	remaining: 38.8ms
92:	learn: 20.3052040	total: 451ms	remaining: 34ms
93:	learn: 20.2587865	total: 456ms	remaining: 29.1ms
94:	learn: 20.2096406	total: 461ms	remaining: 24.3ms
95:	learn: 20.1301385	total: 465ms	remaining: 19.4ms
96:	learn: 20.0401359	total: 469ms	remaining: 14.5ms
97:	learn: 19.9791591	total: 474ms	remaining: 9.68ms
98:	learn: 19.9237318	total: 480ms	remaining: 4.85ms
99:	learn: 19.8009190	total: 485ms	remaining: 0us
0:	learn: 46.9286701	total: 4.14ms	remaining: 410ms
1:	learn: 46.2851598	total: 7.85ms	remaining: 385ms
2:	learn: 45.4586007	total: 11.9ms	remaining: 385ms
3:	learn: 44.6581393	total: 16.5ms	remaining: 396ms
4:	learn: 43.8231644	total: 21.3ms	remaining: 405ms
5:	learn: 43.2906569	total: 25.2ms	remaining: 395ms
6:	learn: 42.5095813	total: 29.3ms	remaining: 389ms
7:	learn: 41.9310465	total: 33.2ms	remaining: 382ms
8:	learn: 41.2083262	total: 37.6ms	remaining: 380ms
9:	learn: 40.6852547	total: 42.1ms	remaining: 379ms
10:	learn: 39.9637018	total: 46.4ms	remaining: 375ms
11:	learn: 39.2804189	total: 54.9ms	remaining: 402ms
12:	learn: 38.8804017	total: 61.7ms	remaining: 413ms
13:	learn: 38.3826597	total: 70.5ms	remaining: 433ms
14:	learn: 37.9240424	total: 76ms	remaining: 430ms
15:	learn: 37.4312070	total: 83.9ms	remaining: 440ms
16:	learn: 36.8803673	total: 89.1ms	remaining: 435ms
17:	learn: 36.5496582	total: 94.1ms	remaining: 429ms
18:	learn: 36.2078375	total: 99.1ms	remaining: 423ms
19:	learn: 35.6806593	total: 104ms	remaining: 417ms
20:	learn: 35.1512154	total: 110ms	remaining: 412ms
21:	learn: 34.6013055	total: 115ms	remaining: 407ms
22:	learn: 34.2380102	total: 120ms	remaining: 401ms
23:	learn: 33.8720185	total: 125ms	remaining: 397ms
24:	learn: 33.4426135	total: 130ms	remaining: 391ms
25:	learn: 33.1471186	total: 135ms	remaining: 385ms
26:	learn: 32.8018279	total: 141ms	remaining: 380ms
27:	learn: 32.4498594	total: 146ms	remaining: 375ms
28:	learn: 31.9749480	total: 152ms	remaining: 371ms
29:	learn: 31.6470735	total: 156ms	remaining: 364ms
30:	learn: 31.4265242	total: 160ms	remaining: 357ms
31:	learn: 31.0753325	total: 164ms	remaining: 349ms
32:	learn: 30.7192494	total: 168ms	remaining: 341ms
33:	learn: 30.3547940	total: 172ms	remaining: 334ms
34:	learn: 30.1296593	total: 176ms	remaining: 327ms
35:	learn: 29.9367140	total: 181ms	remaining: 321ms
36:	learn: 29.6248477	total: 184ms	remaining: 314ms
37:	learn: 29.3156707	total: 188ms	remaining: 307ms
38:	learn: 29.1534039	total: 192ms	remaining: 301ms
39:	learn: 28.9351289	total: 196ms	remaining: 294ms
40:	learn: 28.7057685	total: 200ms	remaining: 288ms
41:	learn: 28.3132521	total: 204ms	remaining: 282ms
42:	learn: 28.0739054	total: 208ms	remaining: 276ms
43:	learn: 27.8135917	total: 213ms	remaining: 271ms
44:	learn: 27.5376804	total: 217ms	remaining: 265ms
45:	learn: 27.3195849	total: 221ms	remaining: 260ms
46:	learn: 27.1681104	total: 225ms	remaining: 254ms
47:	learn: 27.0122442	total: 231ms	remaining: 250ms
48:	learn: 26.7819409	total: 235ms	remaining: 245ms
49:	learn: 26.6429308	total: 240ms	remaining: 240ms
50:	learn: 26.3482899	total: 244ms	remaining: 235ms
51:	learn: 26.2432755	total: 249ms	remaining: 230ms
52:	learn: 26.0811102	total: 253ms	remaining: 224ms
53:	learn: 25.9398113	total: 258ms	remaining: 220ms
54:	learn: 25.7891395	total: 263ms	remaining: 215ms
55:	learn: 25.6185338	total: 271ms	remaining: 213ms
56:	learn: 25.3293977	total: 278ms	remaining: 210ms
57:	learn: 25.1918906	total: 287ms	remaining: 208ms
58:	learn: 25.0503990	total: 293ms	remaining: 204ms
59:	learn: 24.8225776	total: 299ms	remaining: 199ms
60:	learn: 24.5969153	total: 304ms	remaining: 194ms
61:	learn: 24.4657353	total: 309ms	remaining: 189ms
62:	learn: 24.2861000	total: 314ms	remaining: 184ms
63:	learn: 24.1719148	total: 319ms	remaining: 179ms
64:	learn: 24.0547875	total: 324ms	remaining: 174ms
65:	learn: 23.9156724	total: 329ms	remaining: 169ms
66:	learn: 23.7604012	total: 334ms	remaining: 165ms
67:	learn: 23.6265679	total: 340ms	remaining: 160ms
68:	learn: 23.5372255	total: 344ms	remaining: 155ms
69:	learn: 23.3286241	total: 349ms	remaining: 150ms
70:	learn: 23.1806465	total: 354ms	remaining: 145ms
71:	learn: 23.0652081	total: 359ms	remaining: 139ms
72:	learn: 22.9231023	total: 364ms	remaining: 135ms
73:	learn: 22.8020380	total: 369ms	remaining: 130ms
74:	learn: 22.6525036	total: 374ms	remaining: 125ms
75:	learn: 22.5616268	total: 379ms	remaining: 120ms
76:	learn: 22.4395250	total: 383ms	remaining: 114ms
77:	learn: 22.3732379	total: 387ms	remaining: 109ms
78:	learn: 22.2300874	total: 392ms	remaining: 104ms
79:	learn: 22.0209882	total: 396ms	remaining: 99.1ms
80:	learn: 21.8703996	total: 401ms	remaining: 94.1ms
81:	learn: 21.7222039	total: 405ms	remaining: 89ms
82:	learn: 21.5903685	total: 410ms	remaining: 84ms
83:	learn: 21.4915083	total: 414ms	remaining: 78.9ms
84:	learn: 21.3320736	total: 419ms	remaining: 73.9ms
85:	learn: 21.2295060	total: 424ms	remaining: 69ms
86:	learn: 21.1983620	total: 427ms	remaining: 63.9ms
87:	learn: 21.1404156	total: 431ms	remaining: 58.7ms
88:	learn: 21.0684840	total: 435ms	remaining: 53.7ms
89:	learn: 20.9269197	total: 439ms	remaining: 48.8ms
90:	learn: 20.8614606	total: 444ms	remaining: 43.9ms
91:	learn: 20.6642996	total: 448ms	remaining: 39ms
92:	learn: 20.5612705	total: 453ms	remaining: 34.1ms
93:	learn: 20.5264997	total: 457ms	remaining: 29.2ms
94:	learn: 20.4532331	total: 461ms	remaining: 24.3ms
95:	learn: 20.3700696	total: 465ms	remaining: 19.4ms
96:	learn: 20.2671574	total: 470ms	remaining: 14.5ms
97:	learn: 20.1761207	total: 474ms	remaining: 9.68ms
98:	learn: 20.0533799	total: 483ms	remaining: 4.87ms
99:	learn: 19.9890055	total: 491ms	remaining: 0us
0:	learn: 27.5585353	total: 9.2ms	remaining: 911ms
1:	learn: 27.1656995	total: 14.4ms	remaining: 705ms
2:	learn: 26.8590175	total: 19.1ms	remaining: 617ms
3:	learn: 26.5818406	total: 24.2ms	remaining: 582ms
4:	learn: 26.1148663	total: 29.5ms	remaining: 560ms
5:	learn: 25.7690484	total: 33.9ms	remaining: 531ms
6:	learn: 25.3489206	total: 38ms	remaining: 505ms
7:	learn: 24.9542406	total: 42.1ms	remaining: 484ms
8:	learn: 24.6777517	total: 46.1ms	remaining: 466ms
9:	learn: 24.3242344	total: 50.3ms	remaining: 453ms
10:	learn: 24.0383073	total: 54.3ms	remaining: 439ms
11:	learn: 23.7383420	total: 58.1ms	remaining: 426ms
12:	learn: 23.3461670	total: 61.9ms	remaining: 414ms
13:	learn: 23.0928636	total: 65.9ms	remaining: 405ms
14:	learn: 22.8770414	total: 70.3ms	remaining: 398ms
15:	learn: 22.6323214	total: 74.4ms	remaining: 391ms
16:	learn: 22.3597072	total: 78.3ms	remaining: 382ms
17:	learn: 22.1079813	total: 82.4ms	remaining: 375ms
18:	learn: 21.8421199	total: 86.7ms	remaining: 370ms
19:	learn: 21.6576508	total: 90.7ms	remaining: 363ms
20:	learn: 21.4301268	total: 94.7ms	remaining: 356ms
21:	learn: 21.2287388	total: 99ms	remaining: 351ms
22:	learn: 21.0553872	total: 103ms	remaining: 346ms
23:	learn: 20.8977091	total: 108ms	remaining: 342ms
24:	learn: 20.6619051	total: 112ms	remaining: 337ms
25:	learn: 20.5040955	total: 117ms	remaining: 333ms
26:	learn: 20.3181195	total: 122ms	remaining: 329ms
27:	learn: 20.0869436	total: 126ms	remaining: 324ms
28:	learn: 19.9375985	total: 131ms	remaining: 320ms
29:	learn: 19.8247516	total: 136ms	remaining: 318ms
30:	learn: 19.6261697	total: 144ms	remaining: 321ms
31:	learn: 19.4547236	total: 152ms	remaining: 322ms
32:	learn: 19.3157092	total: 159ms	remaining: 323ms
33:	learn: 19.1561419	total: 165ms	remaining: 320ms
34:	learn: 19.0453620	total: 171ms	remaining: 317ms
35:	learn: 18.8738574	total: 176ms	remaining: 312ms
36:	learn: 18.7072907	total: 181ms	remaining: 308ms
37:	learn: 18.5877943	total: 186ms	remaining: 304ms
38:	learn: 18.4436380	total: 192ms	remaining: 300ms
39:	learn: 18.3463356	total: 197ms	remaining: 295ms
40:	learn: 18.2008059	total: 202ms	remaining: 291ms
41:	learn: 18.0582079	total: 207ms	remaining: 286ms
42:	learn: 17.8891982	total: 213ms	remaining: 282ms
43:	learn: 17.7332246	total: 217ms	remaining: 277ms
44:	learn: 17.6206421	total: 222ms	remaining: 272ms
45:	learn: 17.4982800	total: 227ms	remaining: 266ms
46:	learn: 17.3970150	total: 232ms	remaining: 261ms
47:	learn: 17.3058203	total: 237ms	remaining: 257ms
48:	learn: 17.1789256	total: 242ms	remaining: 252ms
49:	learn: 17.0916229	total: 247ms	remaining: 247ms
50:	learn: 16.9859820	total: 252ms	remaining: 242ms
51:	learn: 16.8995582	total: 256ms	remaining: 236ms
52:	learn: 16.8137014	total: 260ms	remaining: 230ms
53:	learn: 16.7021451	total: 264ms	remaining: 225ms
54:	learn: 16.5895582	total: 268ms	remaining: 219ms
55:	learn: 16.5015639	total: 272ms	remaining: 214ms
56:	learn: 16.4356637	total: 276ms	remaining: 208ms
57:	learn: 16.3514525	total: 281ms	remaining: 203ms
58:	learn: 16.2401369	total: 285ms	remaining: 198ms
59:	learn: 16.1293223	total: 288ms	remaining: 192ms
60:	learn: 16.0271167	total: 293ms	remaining: 187ms
61:	learn: 15.9126257	total: 297ms	remaining: 182ms
62:	learn: 15.8391096	total: 302ms	remaining: 177ms
63:	learn: 15.7441773	total: 306ms	remaining: 172ms
64:	learn: 15.6885195	total: 311ms	remaining: 167ms
65:	learn: 15.6052039	total: 315ms	remaining: 162ms
66:	learn: 15.5074202	total: 320ms	remaining: 157ms
67:	learn: 15.4054338	total: 324ms	remaining: 153ms
68:	learn: 15.2885714	total: 329ms	remaining: 148ms
69:	learn: 15.2157472	total: 337ms	remaining: 144ms
70:	learn: 15.1031554	total: 344ms	remaining: 141ms
71:	learn: 15.0237470	total: 353ms	remaining: 137ms
72:	learn: 14.9756825	total: 359ms	remaining: 133ms
73:	learn: 14.8840596	total: 366ms	remaining: 129ms
74:	learn: 14.8077061	total: 371ms	remaining: 124ms
75:	learn: 14.7444437	total: 377ms	remaining: 119ms
76:	learn: 14.6751720	total: 382ms	remaining: 114ms
77:	learn: 14.5830333	total: 387ms	remaining: 109ms
78:	learn: 14.5241206	total: 392ms	remaining: 104ms
79:	learn: 14.4892731	total: 397ms	remaining: 99.3ms
80:	learn: 14.4256605	total: 402ms	remaining: 94.4ms
81:	learn: 14.3666860	total: 407ms	remaining: 89.3ms
82:	learn: 14.2938372	total: 412ms	remaining: 84.4ms
83:	learn: 14.2161532	total: 417ms	remaining: 79.5ms
84:	learn: 14.1582910	total: 422ms	remaining: 74.5ms
85:	learn: 14.1029153	total: 427ms	remaining: 69.5ms
86:	learn: 14.0475835	total: 432ms	remaining: 64.6ms
87:	learn: 13.9892661	total: 438ms	remaining: 59.7ms
88:	learn: 13.9481628	total: 442ms	remaining: 54.6ms
89:	learn: 13.8483991	total: 446ms	remaining: 49.5ms
90:	learn: 13.7775614	total: 450ms	remaining: 44.5ms
91:	learn: 13.7304585	total: 454ms	remaining: 39.5ms
92:	learn: 13.6783381	total: 458ms	remaining: 34.5ms
93:	learn: 13.6356964	total: 462ms	remaining: 29.5ms
94:	learn: 13.5924371	total: 466ms	remaining: 24.5ms
95:	learn: 13.5400746	total: 470ms	remaining: 19.6ms
96:	learn: 13.4897333	total: 474ms	remaining: 14.7ms
97:	learn: 13.4470321	total: 479ms	remaining: 9.77ms
98:	learn: 13.3856082	total: 482ms	remaining: 4.87ms
99:	learn: 13.3082371	total: 486ms	remaining: 0us
0:	learn: 43.0395283	total: 7.77ms	remaining: 769ms
1:	learn: 42.1130223	total: 15.3ms	remaining: 748ms
2:	learn: 41.1753409	total: 23ms	remaining: 744ms
3:	learn: 40.3637444	total: 28.6ms	remaining: 687ms
4:	learn: 39.6508088	total: 34ms	remaining: 646ms
5:	learn: 38.7217934	total: 39.3ms	remaining: 616ms
6:	learn: 37.8538055	total: 68.7ms	remaining: 912ms
7:	learn: 36.9793574	total: 73.9ms	remaining: 850ms
8:	learn: 36.3076984	total: 79ms	remaining: 799ms
9:	learn: 35.6673160	total: 84.2ms	remaining: 758ms
10:	learn: 34.8889800	total: 89.7ms	remaining: 726ms
11:	learn: 34.1675517	total: 94.8ms	remaining: 696ms
12:	learn: 33.6779564	total: 99.6ms	remaining: 667ms
13:	learn: 33.0710039	total: 104ms	remaining: 640ms
14:	learn: 32.4966674	total: 108ms	remaining: 615ms
15:	learn: 31.9492856	total: 113ms	remaining: 592ms
16:	learn: 31.5108129	total: 118ms	remaining: 575ms
17:	learn: 30.9804023	total: 122ms	remaining: 558ms
18:	learn: 30.4169089	total: 127ms	remaining: 541ms
19:	learn: 29.8930375	total: 131ms	remaining: 526ms
20:	learn: 29.3974421	total: 136ms	remaining: 513ms
21:	learn: 28.8792307	total: 141ms	remaining: 500ms
22:	learn: 28.3894474	total: 145ms	remaining: 487ms
23:	learn: 27.9921276	total: 150ms	remaining: 476ms
24:	learn: 27.6158887	total: 154ms	remaining: 463ms
25:	learn: 27.2866950	total: 159ms	remaining: 451ms
26:	learn: 26.8770708	total: 163ms	remaining: 441ms
27:	learn: 26.6233005	total: 168ms	remaining: 432ms
28:	learn: 26.2921934	total: 172ms	remaining: 422ms
29:	learn: 25.9156920	total: 177ms	remaining: 413ms
30:	learn: 25.5311106	total: 179ms	remaining: 398ms
31:	learn: 25.2178997	total: 183ms	remaining: 390ms
32:	learn: 24.8572196	total: 188ms	remaining: 381ms
33:	learn: 24.5849710	total: 192ms	remaining: 373ms
34:	learn: 24.2209190	total: 197ms	remaining: 366ms
35:	learn: 23.8708250	total: 204ms	remaining: 363ms
36:	learn: 23.5325279	total: 212ms	remaining: 361ms
37:	learn: 23.2116148	total: 220ms	remaining: 359ms
38:	learn: 22.9696787	total: 227ms	remaining: 356ms
39:	learn: 22.7936783	total: 235ms	remaining: 353ms
40:	learn: 22.6228847	total: 241ms	remaining: 346ms
41:	learn: 22.3691527	total: 246ms	remaining: 339ms
42:	learn: 22.1002173	total: 251ms	remaining: 333ms
43:	learn: 21.9157268	total: 256ms	remaining: 326ms
44:	learn: 21.7229102	total: 261ms	remaining: 319ms
45:	learn: 21.4642005	total: 266ms	remaining: 312ms
46:	learn: 21.3029442	total: 272ms	remaining: 306ms
47:	learn: 21.1469792	total: 277ms	remaining: 300ms
48:	learn: 20.9458235	total: 282ms	remaining: 293ms
49:	learn: 20.7335242	total: 287ms	remaining: 287ms
50:	learn: 20.5440269	total: 292ms	remaining: 280ms
51:	learn: 20.3661449	total: 297ms	remaining: 274ms
52:	learn: 20.2158134	total: 303ms	remaining: 269ms
53:	learn: 19.9934873	total: 308ms	remaining: 263ms
54:	learn: 19.7879739	total: 313ms	remaining: 256ms
55:	learn: 19.6630460	total: 318ms	remaining: 250ms
56:	learn: 19.5152729	total: 323ms	remaining: 244ms
57:	learn: 19.3581128	total: 328ms	remaining: 237ms
58:	learn: 19.2209303	total: 333ms	remaining: 231ms
59:	learn: 19.0965248	total: 337ms	remaining: 225ms
60:	learn: 19.0035954	total: 342ms	remaining: 219ms
61:	learn: 18.8554149	total: 346ms	remaining: 212ms
62:	learn: 18.7095427	total: 350ms	remaining: 205ms
63:	learn: 18.5751494	total: 354ms	remaining: 199ms
64:	learn: 18.4678251	total: 358ms	remaining: 193ms
65:	learn: 18.3500325	total: 362ms	remaining: 187ms
66:	learn: 18.2088983	total: 367ms	remaining: 181ms
67:	learn: 18.0737705	total: 371ms	remaining: 175ms
68:	learn: 17.9325058	total: 376ms	remaining: 169ms
69:	learn: 17.8003911	total: 380ms	remaining: 163ms
70:	learn: 17.7385366	total: 385ms	remaining: 157ms
71:	learn: 17.6106998	total: 389ms	remaining: 151ms
72:	learn: 17.4816270	total: 394ms	remaining: 146ms
73:	learn: 17.4025554	total: 398ms	remaining: 140ms
74:	learn: 17.2902108	total: 407ms	remaining: 136ms
75:	learn: 17.2158048	total: 416ms	remaining: 131ms
76:	learn: 17.1261053	total: 424ms	remaining: 127ms
77:	learn: 17.0308917	total: 431ms	remaining: 122ms
78:	learn: 16.9546705	total: 437ms	remaining: 116ms
79:	learn: 16.8319165	total: 443ms	remaining: 111ms
80:	learn: 16.7687017	total: 448ms	remaining: 105ms
81:	learn: 16.6972326	total: 453ms	remaining: 99.5ms
82:	learn: 16.6124580	total: 459ms	remaining: 93.9ms
83:	learn: 16.4999052	total: 464ms	remaining: 88.4ms
84:	learn: 16.4302484	total: 469ms	remaining: 82.8ms
85:	learn: 16.3201363	total: 474ms	remaining: 77.2ms
86:	learn: 16.2534314	total: 480ms	remaining: 71.7ms
87:	learn: 16.1720485	total: 485ms	remaining: 66.1ms
88:	learn: 16.0625751	total: 489ms	remaining: 60.5ms
89:	learn: 15.9135088	total: 495ms	remaining: 55ms
90:	learn: 15.8658863	total: 500ms	remaining: 49.5ms
91:	learn: 15.8066805	total: 505ms	remaining: 43.9ms
92:	learn: 15.7412103	total: 509ms	remaining: 38.3ms
93:	learn: 15.6542776	total: 513ms	remaining: 32.8ms
94:	learn: 15.5760334	total: 517ms	remaining: 27.2ms
95:	learn: 15.5434131	total: 521ms	remaining: 21.7ms
96:	learn: 15.4709561	total: 525ms	remaining: 16.2ms
97:	learn: 15.4449618	total: 529ms	remaining: 10.8ms
98:	learn: 15.3752761	total: 533ms	remaining: 5.39ms
99:	learn: 15.3106595	total: 538ms	remaining: 0us
0:	learn: 46.7142257	total: 4.82ms	remaining: 477ms
1:	learn: 45.7634153	total: 9.5ms	remaining: 465ms
2:	learn: 45.0054253	total: 13.8ms	remaining: 447ms
3:	learn: 44.2120432	total: 20.8ms	remaining: 498ms
4:	learn: 43.3960472	total: 28.1ms	remaining: 534ms
5:	learn: 42.8588120	total: 35.2ms	remaining: 551ms
6:	learn: 41.9533701	total: 42.9ms	remaining: 570ms
7:	learn: 41.2745030	total: 50.5ms	remaining: 581ms
8:	learn: 40.6797495	total: 55.6ms	remaining: 563ms
9:	learn: 39.9899571	total: 61.2ms	remaining: 551ms
10:	learn: 39.4682100	total: 66.4ms	remaining: 537ms
11:	learn: 39.0305595	total: 71.7ms	remaining: 526ms
12:	learn: 38.4200417	total: 77.1ms	remaining: 516ms
13:	learn: 37.8425194	total: 82.1ms	remaining: 505ms
14:	learn: 37.4203127	total: 87.2ms	remaining: 494ms
15:	learn: 36.9917688	total: 92.4ms	remaining: 485ms
16:	learn: 36.5544138	total: 97.5ms	remaining: 476ms
17:	learn: 36.0727019	total: 102ms	remaining: 466ms
18:	learn: 35.4835715	total: 107ms	remaining: 457ms
19:	learn: 34.9865654	total: 112ms	remaining: 448ms
20:	learn: 34.6063373	total: 117ms	remaining: 441ms
21:	learn: 34.0997289	total: 122ms	remaining: 434ms
22:	learn: 33.7313171	total: 127ms	remaining: 426ms
23:	learn: 33.3582000	total: 131ms	remaining: 415ms
24:	learn: 32.9432456	total: 135ms	remaining: 406ms
25:	learn: 32.5220888	total: 139ms	remaining: 396ms
26:	learn: 32.2172292	total: 143ms	remaining: 388ms
27:	learn: 31.8972904	total: 147ms	remaining: 379ms
28:	learn: 31.6405350	total: 151ms	remaining: 371ms
29:	learn: 31.4167702	total: 156ms	remaining: 363ms
30:	learn: 30.8541961	total: 157ms	remaining: 350ms
31:	learn: 30.5572111	total: 161ms	remaining: 343ms
32:	learn: 30.1700399	total: 166ms	remaining: 336ms
33:	learn: 29.8537271	total: 170ms	remaining: 329ms
34:	learn: 29.6192540	total: 174ms	remaining: 323ms
35:	learn: 29.3276362	total: 179ms	remaining: 318ms
36:	learn: 28.9985179	total: 183ms	remaining: 311ms
37:	learn: 28.7046880	total: 187ms	remaining: 305ms
38:	learn: 28.4412677	total: 191ms	remaining: 299ms
39:	learn: 28.1277292	total: 195ms	remaining: 293ms
40:	learn: 27.9000750	total: 199ms	remaining: 287ms
41:	learn: 27.5433162	total: 203ms	remaining: 281ms
42:	learn: 27.2493285	total: 207ms	remaining: 275ms
43:	learn: 26.9576632	total: 209ms	remaining: 266ms
44:	learn: 26.6177110	total: 213ms	remaining: 261ms
45:	learn: 26.2812456	total: 217ms	remaining: 255ms
46:	learn: 26.0803859	total: 221ms	remaining: 250ms
47:	learn: 25.9543581	total: 226ms	remaining: 245ms
48:	learn: 25.7951582	total: 230ms	remaining: 240ms
49:	learn: 25.6548184	total: 235ms	remaining: 235ms
50:	learn: 25.4010843	total: 239ms	remaining: 230ms
51:	learn: 24.9773937	total: 243ms	remaining: 225ms
52:	learn: 24.8026156	total: 248ms	remaining: 220ms
53:	learn: 24.5568053	total: 253ms	remaining: 215ms
54:	learn: 24.2281839	total: 257ms	remaining: 210ms
55:	learn: 23.9202795	total: 262ms	remaining: 206ms
56:	learn: 23.7625591	total: 271ms	remaining: 204ms
57:	learn: 23.5429721	total: 279ms	remaining: 202ms
58:	learn: 23.3175893	total: 288ms	remaining: 200ms
59:	learn: 23.2035130	total: 296ms	remaining: 197ms
60:	learn: 23.0232450	total: 302ms	remaining: 193ms
61:	learn: 22.8384958	total: 307ms	remaining: 188ms
62:	learn: 22.6499902	total: 312ms	remaining: 183ms
63:	learn: 22.4577426	total: 317ms	remaining: 178ms
64:	learn: 22.3333158	total: 323ms	remaining: 174ms
65:	learn: 22.2064131	total: 328ms	remaining: 169ms
66:	learn: 22.1434971	total: 333ms	remaining: 164ms
67:	learn: 21.9596519	total: 338ms	remaining: 159ms
68:	learn: 21.8475576	total: 343ms	remaining: 154ms
69:	learn: 21.6954745	total: 348ms	remaining: 149ms
70:	learn: 21.5635976	total: 353ms	remaining: 144ms
71:	learn: 21.4588506	total: 358ms	remaining: 139ms
72:	learn: 21.3527268	total: 363ms	remaining: 134ms
73:	learn: 21.2661288	total: 369ms	remaining: 130ms
74:	learn: 21.1817333	total: 373ms	remaining: 124ms
75:	learn: 21.0527553	total: 377ms	remaining: 119ms
76:	learn: 20.9229021	total: 381ms	remaining: 114ms
77:	learn: 20.7563946	total: 385ms	remaining: 109ms
78:	learn: 20.6569831	total: 389ms	remaining: 104ms
79:	learn: 20.4982663	total: 393ms	remaining: 98.3ms
80:	learn: 20.3185460	total: 397ms	remaining: 93.2ms
81:	learn: 20.2096241	total: 402ms	remaining: 88.1ms
82:	learn: 20.1274891	total: 406ms	remaining: 83.1ms
83:	learn: 20.0740139	total: 410ms	remaining: 78.1ms
84:	learn: 19.9630699	total: 414ms	remaining: 73.1ms
85:	learn: 19.8753899	total: 418ms	remaining: 68.1ms
86:	learn: 19.6563612	total: 423ms	remaining: 63.2ms
87:	learn: 19.4680232	total: 427ms	remaining: 58.3ms
88:	learn: 19.3503431	total: 432ms	remaining: 53.4ms
89:	learn: 19.2221379	total: 437ms	remaining: 48.5ms
90:	learn: 19.0732542	total: 442ms	remaining: 43.7ms
91:	learn: 18.9825190	total: 446ms	remaining: 38.8ms
92:	learn: 18.8839009	total: 451ms	remaining: 33.9ms
93:	learn: 18.8012219	total: 455ms	remaining: 29.1ms
94:	learn: 18.7172713	total: 460ms	remaining: 24.2ms
95:	learn: 18.6201170	total: 468ms	remaining: 19.5ms
96:	learn: 18.5318611	total: 475ms	remaining: 14.7ms
97:	learn: 18.3833356	total: 483ms	remaining: 9.86ms
98:	learn: 18.3289700	total: 489ms	remaining: 4.94ms
99:	learn: 18.2227333	total: 497ms	remaining: 0us
0:	learn: 46.3764524	total: 5.33ms	remaining: 527ms
1:	learn: 45.5561269	total: 10.3ms	remaining: 505ms
2:	learn: 44.8811245	total: 15ms	remaining: 486ms
3:	learn: 44.0788617	total: 20ms	remaining: 480ms
4:	learn: 43.3619790	total: 25.4ms	remaining: 482ms
5:	learn: 42.6912112	total: 30.7ms	remaining: 480ms
6:	learn: 42.2292118	total: 34.7ms	remaining: 461ms
7:	learn: 41.7725191	total: 39ms	remaining: 448ms
8:	learn: 41.1676614	total: 42.8ms	remaining: 433ms
9:	learn: 40.5771076	total: 46.8ms	remaining: 421ms
10:	learn: 39.8343757	total: 51.2ms	remaining: 414ms
11:	learn: 39.3761142	total: 55.1ms	remaining: 404ms
12:	learn: 38.5254692	total: 59.4ms	remaining: 398ms
13:	learn: 37.9629555	total: 63.7ms	remaining: 391ms
14:	learn: 37.4418438	total: 67.9ms	remaining: 385ms
15:	learn: 37.0507283	total: 72.3ms	remaining: 380ms
16:	learn: 36.6264217	total: 76.3ms	remaining: 373ms
17:	learn: 36.1114940	total: 80.6ms	remaining: 367ms
18:	learn: 35.7193862	total: 84.7ms	remaining: 361ms
19:	learn: 35.3301177	total: 89.1ms	remaining: 356ms
20:	learn: 35.0598280	total: 93ms	remaining: 350ms
21:	learn: 34.5469736	total: 97ms	remaining: 344ms
22:	learn: 34.2064215	total: 101ms	remaining: 339ms
23:	learn: 33.7280710	total: 106ms	remaining: 334ms
24:	learn: 33.3282940	total: 110ms	remaining: 330ms
25:	learn: 32.8478961	total: 114ms	remaining: 325ms
26:	learn: 32.5722164	total: 119ms	remaining: 322ms
27:	learn: 32.2457019	total: 124ms	remaining: 319ms
28:	learn: 31.9230495	total: 128ms	remaining: 314ms
29:	learn: 31.4311611	total: 133ms	remaining: 310ms
30:	learn: 30.9179052	total: 138ms	remaining: 306ms
31:	learn: 30.6201141	total: 143ms	remaining: 304ms
32:	learn: 30.3421106	total: 151ms	remaining: 306ms
33:	learn: 29.9885373	total: 159ms	remaining: 308ms
34:	learn: 29.7462780	total: 168ms	remaining: 311ms
35:	learn: 29.3607153	total: 176ms	remaining: 314ms
36:	learn: 29.1793078	total: 182ms	remaining: 310ms
37:	learn: 28.9276538	total: 187ms	remaining: 306ms
38:	learn: 28.6903934	total: 193ms	remaining: 302ms
39:	learn: 28.2095033	total: 199ms	remaining: 298ms
40:	learn: 27.7990608	total: 204ms	remaining: 293ms
41:	learn: 27.5406632	total: 209ms	remaining: 288ms
42:	learn: 27.2575376	total: 214ms	remaining: 284ms
43:	learn: 26.9741707	total: 219ms	remaining: 279ms
44:	learn: 26.6606899	total: 224ms	remaining: 274ms
45:	learn: 26.4015833	total: 229ms	remaining: 269ms
46:	learn: 26.1828993	total: 234ms	remaining: 263ms
47:	learn: 26.0233709	total: 236ms	remaining: 256ms
48:	learn: 25.9300399	total: 242ms	remaining: 252ms
49:	learn: 25.5861489	total: 247ms	remaining: 247ms
50:	learn: 25.4322012	total: 251ms	remaining: 241ms
51:	learn: 25.1595644	total: 255ms	remaining: 236ms
52:	learn: 24.9955303	total: 260ms	remaining: 230ms
53:	learn: 24.7273966	total: 264ms	remaining: 225ms
54:	learn: 24.5747978	total: 267ms	remaining: 219ms
55:	learn: 24.3807977	total: 271ms	remaining: 213ms
56:	learn: 24.1689569	total: 276ms	remaining: 208ms
57:	learn: 23.9898221	total: 280ms	remaining: 203ms
58:	learn: 23.7566414	total: 284ms	remaining: 197ms
59:	learn: 23.6641165	total: 288ms	remaining: 192ms
60:	learn: 23.5658066	total: 293ms	remaining: 187ms
61:	learn: 23.4338851	total: 297ms	remaining: 182ms
62:	learn: 23.2408837	total: 301ms	remaining: 177ms
63:	learn: 23.0642038	total: 306ms	remaining: 172ms
64:	learn: 22.9032045	total: 310ms	remaining: 167ms
65:	learn: 22.7736138	total: 315ms	remaining: 162ms
66:	learn: 22.6836443	total: 319ms	remaining: 157ms
67:	learn: 22.5983654	total: 324ms	remaining: 152ms
68:	learn: 22.4419813	total: 328ms	remaining: 147ms
69:	learn: 22.2863339	total: 332ms	remaining: 142ms
70:	learn: 22.1792943	total: 337ms	remaining: 138ms
71:	learn: 22.1130574	total: 344ms	remaining: 134ms
72:	learn: 21.9858161	total: 353ms	remaining: 130ms
73:	learn: 21.8577784	total: 362ms	remaining: 127ms
74:	learn: 21.7845222	total: 368ms	remaining: 123ms
75:	learn: 21.6831390	total: 376ms	remaining: 119ms
76:	learn: 21.6292521	total: 382ms	remaining: 114ms
77:	learn: 21.5789330	total: 388ms	remaining: 109ms
78:	learn: 21.5420942	total: 393ms	remaining: 104ms
79:	learn: 21.4280939	total: 398ms	remaining: 99.5ms
80:	learn: 21.3641165	total: 403ms	remaining: 94.5ms
81:	learn: 21.2734814	total: 408ms	remaining: 89.6ms
82:	learn: 21.2220323	total: 414ms	remaining: 84.7ms
83:	learn: 21.0625792	total: 419ms	remaining: 79.9ms
84:	learn: 20.9488320	total: 425ms	remaining: 75ms
85:	learn: 20.8504255	total: 430ms	remaining: 70ms
86:	learn: 20.7848510	total: 435ms	remaining: 65ms
87:	learn: 20.7247442	total: 440ms	remaining: 60ms
88:	learn: 20.5698590	total: 446ms	remaining: 55.1ms
89:	learn: 20.4067620	total: 450ms	remaining: 50ms
90:	learn: 20.3062482	total: 454ms	remaining: 44.9ms
91:	learn: 20.2029696	total: 458ms	remaining: 39.8ms
92:	learn: 20.1384849	total: 462ms	remaining: 34.8ms
93:	learn: 20.0260709	total: 466ms	remaining: 29.8ms
94:	learn: 19.9122100	total: 470ms	remaining: 24.7ms
95:	learn: 19.8648487	total: 474ms	remaining: 19.8ms
96:	learn: 19.8207072	total: 478ms	remaining: 14.8ms
97:	learn: 19.7261189	total: 482ms	remaining: 9.83ms
98:	learn: 19.7042438	total: 486ms	remaining: 4.91ms
99:	learn: 19.6546645	total: 490ms	remaining: 0us
0:	learn: 47.0239288	total: 8.82ms	remaining: 874ms
1:	learn: 46.2253829	total: 16.4ms	remaining: 806ms
2:	learn: 45.5580301	total: 25.3ms	remaining: 818ms
3:	learn: 44.7273237	total: 32.5ms	remaining: 779ms
4:	learn: 43.8867421	total: 37.8ms	remaining: 718ms
5:	learn: 43.3615911	total: 42.9ms	remaining: 672ms
6:	learn: 42.8548390	total: 48.5ms	remaining: 645ms
7:	learn: 42.1606758	total: 53.7ms	remaining: 618ms
8:	learn: 41.6625870	total: 59.5ms	remaining: 601ms
9:	learn: 40.9497092	total: 64.9ms	remaining: 584ms
10:	learn: 40.1886318	total: 70.6ms	remaining: 571ms
11:	learn: 39.7456423	total: 76.2ms	remaining: 559ms
12:	learn: 39.1171373	total: 81.2ms	remaining: 543ms
13:	learn: 38.5451069	total: 85.8ms	remaining: 527ms
14:	learn: 38.0155834	total: 90.2ms	remaining: 511ms
15:	learn: 37.5631354	total: 94.9ms	remaining: 498ms
16:	learn: 37.1030023	total: 99.2ms	remaining: 484ms
17:	learn: 36.4563029	total: 105ms	remaining: 477ms
18:	learn: 36.0160976	total: 110ms	remaining: 471ms
19:	learn: 35.5079827	total: 115ms	remaining: 459ms
20:	learn: 35.2111885	total: 119ms	remaining: 446ms
21:	learn: 34.9397465	total: 123ms	remaining: 435ms
22:	learn: 34.5270048	total: 127ms	remaining: 425ms
23:	learn: 34.0169260	total: 131ms	remaining: 415ms
24:	learn: 33.7454892	total: 135ms	remaining: 405ms
25:	learn: 33.2648157	total: 139ms	remaining: 396ms
26:	learn: 32.8899427	total: 143ms	remaining: 387ms
27:	learn: 32.6185050	total: 147ms	remaining: 378ms
28:	learn: 32.3528531	total: 151ms	remaining: 370ms
29:	learn: 32.0859923	total: 155ms	remaining: 362ms
30:	learn: 31.6511144	total: 159ms	remaining: 354ms
31:	learn: 31.2571765	total: 163ms	remaining: 347ms
32:	learn: 30.9770049	total: 167ms	remaining: 340ms
33:	learn: 30.6084872	total: 172ms	remaining: 333ms
34:	learn: 30.3448632	total: 176ms	remaining: 328ms
35:	learn: 30.0360942	total: 181ms	remaining: 322ms
36:	learn: 29.6648968	total: 185ms	remaining: 316ms
37:	learn: 29.3165114	total: 190ms	remaining: 310ms
38:	learn: 29.0829198	total: 194ms	remaining: 304ms
39:	learn: 28.7752064	total: 199ms	remaining: 299ms
40:	learn: 28.3622191	total: 204ms	remaining: 293ms
41:	learn: 28.1346631	total: 210ms	remaining: 291ms
42:	learn: 27.9585719	total: 217ms	remaining: 288ms
43:	learn: 27.6565566	total: 224ms	remaining: 285ms
44:	learn: 27.3616172	total: 232ms	remaining: 284ms
45:	learn: 27.0658637	total: 239ms	remaining: 281ms
46:	learn: 26.8660382	total: 244ms	remaining: 275ms
47:	learn: 26.6536078	total: 250ms	remaining: 271ms
48:	learn: 26.3524440	total: 255ms	remaining: 265ms
49:	learn: 26.1595277	total: 260ms	remaining: 260ms
50:	learn: 25.9273523	total: 264ms	remaining: 254ms
51:	learn: 25.7195580	total: 270ms	remaining: 249ms
52:	learn: 25.5730225	total: 275ms	remaining: 244ms
53:	learn: 25.3455276	total: 280ms	remaining: 239ms
54:	learn: 25.2289675	total: 286ms	remaining: 234ms
55:	learn: 25.0133024	total: 290ms	remaining: 228ms
56:	learn: 24.8406714	total: 295ms	remaining: 223ms
57:	learn: 24.6367857	total: 301ms	remaining: 218ms
58:	learn: 24.5338177	total: 306ms	remaining: 213ms
59:	learn: 24.3799964	total: 310ms	remaining: 207ms
60:	learn: 24.1447492	total: 314ms	remaining: 201ms
61:	learn: 23.9880495	total: 318ms	remaining: 195ms
62:	learn: 23.7140630	total: 322ms	remaining: 189ms
63:	learn: 23.5003791	total: 326ms	remaining: 183ms
64:	learn: 23.3207645	total: 330ms	remaining: 178ms
65:	learn: 23.1958356	total: 334ms	remaining: 172ms
66:	learn: 23.0471302	total: 339ms	remaining: 167ms
67:	learn: 22.8977183	total: 343ms	remaining: 161ms
68:	learn: 22.7187400	total: 346ms	remaining: 156ms
69:	learn: 22.6523405	total: 351ms	remaining: 150ms
70:	learn: 22.4767453	total: 355ms	remaining: 145ms
71:	learn: 22.3243677	total: 359ms	remaining: 140ms
72:	learn: 22.2133096	total: 363ms	remaining: 134ms
73:	learn: 22.1151713	total: 368ms	remaining: 129ms
74:	learn: 22.0296666	total: 373ms	remaining: 124ms
75:	learn: 21.9195980	total: 377ms	remaining: 119ms
76:	learn: 21.8401730	total: 381ms	remaining: 114ms
77:	learn: 21.8079797	total: 386ms	remaining: 109ms
78:	learn: 21.7274109	total: 391ms	remaining: 104ms
79:	learn: 21.6663032	total: 396ms	remaining: 98.9ms
80:	learn: 21.5633117	total: 400ms	remaining: 93.8ms
81:	learn: 21.4542467	total: 405ms	remaining: 89ms
82:	learn: 21.3177957	total: 412ms	remaining: 84.5ms
83:	learn: 21.1289167	total: 419ms	remaining: 79.9ms
84:	learn: 21.0297368	total: 428ms	remaining: 75.4ms
85:	learn: 20.9089564	total: 433ms	remaining: 70.5ms
86:	learn: 20.7653988	total: 439ms	remaining: 65.6ms
87:	learn: 20.6521894	total: 444ms	remaining: 60.6ms
88:	learn: 20.5193021	total: 449ms	remaining: 55.6ms
89:	learn: 20.4361620	total: 455ms	remaining: 50.5ms
90:	learn: 20.3546710	total: 460ms	remaining: 45.5ms
91:	learn: 20.2513296	total: 465ms	remaining: 40.4ms
92:	learn: 20.1605550	total: 470ms	remaining: 35.4ms
93:	learn: 20.0515942	total: 475ms	remaining: 30.3ms
94:	learn: 19.9800764	total: 480ms	remaining: 25.3ms
95:	learn: 19.8996532	total: 485ms	remaining: 20.2ms
96:	learn: 19.8450910	total: 505ms	remaining: 15.6ms
97:	learn: 19.7887346	total: 510ms	remaining: 10.4ms
98:	learn: 19.7230872	total: 514ms	remaining: 5.2ms
99:	learn: 19.6328825	total: 519ms	remaining: 0us
0:	learn: 27.5585353	total: 4.74ms	remaining: 469ms
1:	learn: 27.1656995	total: 9.01ms	remaining: 441ms
2:	learn: 26.8590175	total: 13.3ms	remaining: 431ms
3:	learn: 26.5818406	total: 18.1ms	remaining: 434ms
4:	learn: 26.1148663	total: 22.9ms	remaining: 435ms
5:	learn: 25.7690484	total: 27.3ms	remaining: 428ms
6:	learn: 25.3489206	total: 31.6ms	remaining: 419ms
7:	learn: 24.9542406	total: 36.5ms	remaining: 420ms
8:	learn: 24.6777517	total: 43.2ms	remaining: 437ms
9:	learn: 24.3242344	total: 52.3ms	remaining: 471ms
10:	learn: 24.0383073	total: 62ms	remaining: 502ms
11:	learn: 23.7383420	total: 69ms	remaining: 506ms
12:	learn: 23.3461670	total: 76ms	remaining: 509ms
13:	learn: 23.0928636	total: 81.5ms	remaining: 501ms
14:	learn: 22.8770414	total: 86.6ms	remaining: 491ms
15:	learn: 22.6323214	total: 91.9ms	remaining: 483ms
16:	learn: 22.3597072	total: 97.1ms	remaining: 474ms
17:	learn: 22.1079813	total: 102ms	remaining: 464ms
18:	learn: 21.8421199	total: 107ms	remaining: 456ms
19:	learn: 21.6576508	total: 112ms	remaining: 448ms
20:	learn: 21.4301268	total: 117ms	remaining: 440ms
21:	learn: 21.2287388	total: 122ms	remaining: 432ms
22:	learn: 21.0553872	total: 127ms	remaining: 426ms
23:	learn: 20.8977091	total: 132ms	remaining: 418ms
24:	learn: 20.6619051	total: 137ms	remaining: 410ms
25:	learn: 20.5040955	total: 143ms	remaining: 408ms
26:	learn: 20.3181195	total: 149ms	remaining: 404ms
27:	learn: 20.0869436	total: 154ms	remaining: 397ms
28:	learn: 19.9375985	total: 159ms	remaining: 390ms
29:	learn: 19.8247516	total: 163ms	remaining: 381ms
30:	learn: 19.6261697	total: 168ms	remaining: 373ms
31:	learn: 19.4547236	total: 172ms	remaining: 365ms
32:	learn: 19.3157092	total: 176ms	remaining: 358ms
33:	learn: 19.1561419	total: 181ms	remaining: 351ms
34:	learn: 19.0453620	total: 186ms	remaining: 345ms
35:	learn: 18.8738574	total: 190ms	remaining: 339ms
36:	learn: 18.7072907	total: 195ms	remaining: 332ms
37:	learn: 18.5877943	total: 200ms	remaining: 327ms
38:	learn: 18.4436380	total: 205ms	remaining: 321ms
39:	learn: 18.3463356	total: 210ms	remaining: 315ms
40:	learn: 18.2008059	total: 214ms	remaining: 308ms
41:	learn: 18.0582079	total: 219ms	remaining: 303ms
42:	learn: 17.8891982	total: 224ms	remaining: 298ms
43:	learn: 17.7332246	total: 231ms	remaining: 294ms
44:	learn: 17.6206421	total: 236ms	remaining: 288ms
45:	learn: 17.4982800	total: 241ms	remaining: 283ms
46:	learn: 17.3970150	total: 246ms	remaining: 277ms
47:	learn: 17.3058203	total: 251ms	remaining: 272ms
48:	learn: 17.1789256	total: 259ms	remaining: 270ms
49:	learn: 17.0916229	total: 268ms	remaining: 268ms
50:	learn: 16.9859820	total: 277ms	remaining: 266ms
51:	learn: 16.8995582	total: 284ms	remaining: 262ms
52:	learn: 16.8137014	total: 290ms	remaining: 258ms
53:	learn: 16.7021451	total: 296ms	remaining: 252ms
54:	learn: 16.5895582	total: 301ms	remaining: 247ms
55:	learn: 16.5015639	total: 307ms	remaining: 241ms
56:	learn: 16.4356637	total: 313ms	remaining: 236ms
57:	learn: 16.3514525	total: 318ms	remaining: 231ms
58:	learn: 16.2401369	total: 324ms	remaining: 225ms
59:	learn: 16.1293223	total: 330ms	remaining: 220ms
60:	learn: 16.0271167	total: 335ms	remaining: 214ms
61:	learn: 15.9126257	total: 340ms	remaining: 208ms
62:	learn: 15.8391096	total: 345ms	remaining: 203ms
63:	learn: 15.7441773	total: 350ms	remaining: 197ms
64:	learn: 15.6885195	total: 355ms	remaining: 191ms
65:	learn: 15.6052039	total: 360ms	remaining: 185ms
66:	learn: 15.5074202	total: 364ms	remaining: 180ms
67:	learn: 15.4054338	total: 370ms	remaining: 174ms
68:	learn: 15.2885714	total: 376ms	remaining: 169ms
69:	learn: 15.2157472	total: 380ms	remaining: 163ms
70:	learn: 15.1031554	total: 384ms	remaining: 157ms
71:	learn: 15.0237470	total: 388ms	remaining: 151ms
72:	learn: 14.9756825	total: 392ms	remaining: 145ms
73:	learn: 14.8840596	total: 396ms	remaining: 139ms
74:	learn: 14.8077061	total: 401ms	remaining: 134ms
75:	learn: 14.7444437	total: 405ms	remaining: 128ms
76:	learn: 14.6751720	total: 409ms	remaining: 122ms
77:	learn: 14.5830333	total: 412ms	remaining: 116ms
78:	learn: 14.5241206	total: 417ms	remaining: 111ms
79:	learn: 14.4892731	total: 421ms	remaining: 105ms
80:	learn: 14.4256605	total: 426ms	remaining: 99.9ms
81:	learn: 14.3666860	total: 430ms	remaining: 94.4ms
82:	learn: 14.2938372	total: 434ms	remaining: 89ms
83:	learn: 14.2161532	total: 439ms	remaining: 83.6ms
84:	learn: 14.1582910	total: 443ms	remaining: 78.2ms
85:	learn: 14.1029153	total: 448ms	remaining: 72.9ms
86:	learn: 14.0475835	total: 452ms	remaining: 67.6ms
87:	learn: 13.9892661	total: 461ms	remaining: 62.9ms
88:	learn: 13.9481628	total: 469ms	remaining: 57.9ms
89:	learn: 13.8483991	total: 477ms	remaining: 53ms
90:	learn: 13.7775614	total: 483ms	remaining: 47.7ms
91:	learn: 13.7304585	total: 489ms	remaining: 42.5ms
92:	learn: 13.6783381	total: 494ms	remaining: 37.2ms
93:	learn: 13.6356964	total: 499ms	remaining: 31.9ms
94:	learn: 13.5924371	total: 504ms	remaining: 26.6ms
95:	learn: 13.5400746	total: 510ms	remaining: 21.2ms
96:	learn: 13.4897333	total: 515ms	remaining: 15.9ms
97:	learn: 13.4470321	total: 519ms	remaining: 10.6ms
98:	learn: 13.3856082	total: 525ms	remaining: 5.3ms
99:	learn: 13.3082371	total: 530ms	remaining: 0us
0:	learn: 43.0395283	total: 4.52ms	remaining: 447ms
1:	learn: 42.1130223	total: 8.48ms	remaining: 415ms
2:	learn: 41.1753409	total: 12.4ms	remaining: 401ms
3:	learn: 40.3637444	total: 16.4ms	remaining: 394ms
4:	learn: 39.6508088	total: 20.6ms	remaining: 392ms
5:	learn: 38.7217934	total: 25ms	remaining: 391ms
6:	learn: 37.8538055	total: 28.8ms	remaining: 383ms
7:	learn: 36.9793574	total: 32.8ms	remaining: 378ms
8:	learn: 36.3076984	total: 37.2ms	remaining: 376ms
9:	learn: 35.6673160	total: 41.2ms	remaining: 370ms
10:	learn: 34.8889800	total: 45.4ms	remaining: 368ms
11:	learn: 34.1675517	total: 50ms	remaining: 366ms
12:	learn: 33.6779564	total: 54.6ms	remaining: 365ms
13:	learn: 33.0710039	total: 59.2ms	remaining: 363ms
14:	learn: 32.4966674	total: 63.5ms	remaining: 360ms
15:	learn: 31.9492856	total: 67.7ms	remaining: 356ms
16:	learn: 31.5108129	total: 72.3ms	remaining: 353ms
17:	learn: 30.9804023	total: 77.1ms	remaining: 351ms
18:	learn: 30.4169089	total: 83.9ms	remaining: 358ms
19:	learn: 29.8930375	total: 91.8ms	remaining: 367ms
20:	learn: 29.3974421	total: 99.6ms	remaining: 375ms
21:	learn: 28.8792307	total: 108ms	remaining: 384ms
22:	learn: 28.3894474	total: 115ms	remaining: 386ms
23:	learn: 27.9921276	total: 120ms	remaining: 381ms
24:	learn: 27.6158887	total: 126ms	remaining: 377ms
25:	learn: 27.2866950	total: 131ms	remaining: 372ms
26:	learn: 26.8770708	total: 136ms	remaining: 367ms
27:	learn: 26.6233005	total: 141ms	remaining: 363ms
28:	learn: 26.2921934	total: 146ms	remaining: 358ms
29:	learn: 25.9156920	total: 152ms	remaining: 354ms
30:	learn: 25.5311106	total: 154ms	remaining: 342ms
31:	learn: 25.2178997	total: 159ms	remaining: 338ms
32:	learn: 24.8572196	total: 163ms	remaining: 332ms
33:	learn: 24.5849710	total: 168ms	remaining: 326ms
34:	learn: 24.2209190	total: 172ms	remaining: 319ms
35:	learn: 23.8708250	total: 177ms	remaining: 314ms
36:	learn: 23.5325279	total: 181ms	remaining: 308ms
37:	learn: 23.2116148	total: 197ms	remaining: 322ms
38:	learn: 22.9696787	total: 202ms	remaining: 315ms
39:	learn: 22.7936783	total: 206ms	remaining: 310ms
40:	learn: 22.6228847	total: 211ms	remaining: 304ms
41:	learn: 22.3691527	total: 216ms	remaining: 298ms
42:	learn: 22.1002173	total: 221ms	remaining: 292ms
43:	learn: 21.9157268	total: 225ms	remaining: 286ms
44:	learn: 21.7229102	total: 230ms	remaining: 281ms
45:	learn: 21.4642005	total: 234ms	remaining: 275ms
46:	learn: 21.3029442	total: 239ms	remaining: 269ms
47:	learn: 21.1469792	total: 243ms	remaining: 264ms
48:	learn: 20.9458235	total: 249ms	remaining: 259ms
49:	learn: 20.7335242	total: 253ms	remaining: 253ms
50:	learn: 20.5440269	total: 258ms	remaining: 248ms
51:	learn: 20.3661449	total: 263ms	remaining: 243ms
52:	learn: 20.2158134	total: 269ms	remaining: 238ms
53:	learn: 19.9934873	total: 274ms	remaining: 233ms
54:	learn: 19.7879739	total: 279ms	remaining: 228ms
55:	learn: 19.6630460	total: 286ms	remaining: 225ms
56:	learn: 19.5152729	total: 293ms	remaining: 221ms
57:	learn: 19.3581128	total: 302ms	remaining: 219ms
58:	learn: 19.2209303	total: 308ms	remaining: 214ms
59:	learn: 19.0965248	total: 316ms	remaining: 211ms
60:	learn: 19.0035954	total: 322ms	remaining: 206ms
61:	learn: 18.8554149	total: 327ms	remaining: 200ms
62:	learn: 18.7095427	total: 332ms	remaining: 195ms
63:	learn: 18.5751494	total: 337ms	remaining: 190ms
64:	learn: 18.4678251	total: 342ms	remaining: 184ms
65:	learn: 18.3500325	total: 348ms	remaining: 179ms
66:	learn: 18.2088983	total: 354ms	remaining: 174ms
67:	learn: 18.0737705	total: 359ms	remaining: 169ms
68:	learn: 17.9325058	total: 364ms	remaining: 164ms
69:	learn: 17.8003911	total: 370ms	remaining: 158ms
70:	learn: 17.7385366	total: 374ms	remaining: 153ms
71:	learn: 17.6106998	total: 380ms	remaining: 148ms
72:	learn: 17.4816270	total: 386ms	remaining: 143ms
73:	learn: 17.4025554	total: 391ms	remaining: 137ms
74:	learn: 17.2902108	total: 395ms	remaining: 132ms
75:	learn: 17.2158048	total: 400ms	remaining: 126ms
76:	learn: 17.1261053	total: 405ms	remaining: 121ms
77:	learn: 17.0308917	total: 409ms	remaining: 115ms
78:	learn: 16.9546705	total: 414ms	remaining: 110ms
79:	learn: 16.8319165	total: 418ms	remaining: 105ms
80:	learn: 16.7687017	total: 423ms	remaining: 99.3ms
81:	learn: 16.6972326	total: 428ms	remaining: 94ms
82:	learn: 16.6124580	total: 432ms	remaining: 88.6ms
83:	learn: 16.4999052	total: 437ms	remaining: 83.3ms
84:	learn: 16.4302484	total: 442ms	remaining: 78.1ms
85:	learn: 16.3201363	total: 447ms	remaining: 72.8ms
86:	learn: 16.2534314	total: 452ms	remaining: 67.6ms
87:	learn: 16.1720485	total: 457ms	remaining: 62.4ms
88:	learn: 16.0625751	total: 462ms	remaining: 57.2ms
89:	learn: 15.9135088	total: 467ms	remaining: 51.9ms
90:	learn: 15.8658863	total: 472ms	remaining: 46.7ms
91:	learn: 15.8066805	total: 477ms	remaining: 41.5ms
92:	learn: 15.7412103	total: 482ms	remaining: 36.3ms
93:	learn: 15.6542776	total: 490ms	remaining: 31.3ms
94:	learn: 15.5760334	total: 497ms	remaining: 26.2ms
95:	learn: 15.5434131	total: 506ms	remaining: 21.1ms
96:	learn: 15.4709561	total: 512ms	remaining: 15.8ms
97:	learn: 15.4449618	total: 519ms	remaining: 10.6ms
98:	learn: 15.3752761	total: 524ms	remaining: 5.29ms
99:	learn: 15.3106595	total: 535ms	remaining: 0us
0:	learn: 46.7142257	total: 5.3ms	remaining: 525ms
1:	learn: 45.7634153	total: 10.6ms	remaining: 519ms
2:	learn: 45.0054253	total: 15.6ms	remaining: 505ms
3:	learn: 44.2120432	total: 20.7ms	remaining: 498ms
4:	learn: 43.3960472	total: 26.1ms	remaining: 496ms
5:	learn: 42.8588120	total: 31.1ms	remaining: 488ms
6:	learn: 41.9533701	total: 36ms	remaining: 479ms
7:	learn: 41.2745030	total: 40.8ms	remaining: 469ms
8:	learn: 40.6797495	total: 45.8ms	remaining: 464ms
9:	learn: 39.9899571	total: 50.5ms	remaining: 455ms
10:	learn: 39.4682100	total: 55ms	remaining: 445ms
11:	learn: 39.0305595	total: 60.8ms	remaining: 446ms
12:	learn: 38.4200417	total: 66ms	remaining: 442ms
13:	learn: 37.8425194	total: 70.8ms	remaining: 435ms
14:	learn: 37.4203127	total: 75.5ms	remaining: 428ms
15:	learn: 36.9917688	total: 80.4ms	remaining: 422ms
16:	learn: 36.5544138	total: 85.2ms	remaining: 416ms
17:	learn: 36.0727019	total: 90.1ms	remaining: 410ms
18:	learn: 35.4835715	total: 95.1ms	remaining: 405ms
19:	learn: 34.9865654	total: 103ms	remaining: 414ms
20:	learn: 34.6063373	total: 111ms	remaining: 418ms
21:	learn: 34.0997289	total: 119ms	remaining: 423ms
22:	learn: 33.7313171	total: 127ms	remaining: 426ms
23:	learn: 33.3582000	total: 133ms	remaining: 421ms
24:	learn: 32.9432456	total: 138ms	remaining: 415ms
25:	learn: 32.5220888	total: 144ms	remaining: 410ms
26:	learn: 32.2172292	total: 150ms	remaining: 405ms
27:	learn: 31.8972904	total: 155ms	remaining: 400ms
28:	learn: 31.6405350	total: 161ms	remaining: 393ms
29:	learn: 31.4167702	total: 166ms	remaining: 387ms
30:	learn: 30.8541961	total: 168ms	remaining: 375ms
31:	learn: 30.5572111	total: 174ms	remaining: 369ms
32:	learn: 30.1700399	total: 179ms	remaining: 363ms
33:	learn: 29.8537271	total: 184ms	remaining: 357ms
34:	learn: 29.6192540	total: 189ms	remaining: 351ms
35:	learn: 29.3276362	total: 194ms	remaining: 345ms
36:	learn: 28.9985179	total: 200ms	remaining: 340ms
37:	learn: 28.7046880	total: 204ms	remaining: 333ms
38:	learn: 28.4412677	total: 208ms	remaining: 326ms
39:	learn: 28.1277292	total: 212ms	remaining: 319ms
40:	learn: 27.9000750	total: 217ms	remaining: 312ms
41:	learn: 27.5433162	total: 221ms	remaining: 305ms
42:	learn: 27.2493285	total: 225ms	remaining: 298ms
43:	learn: 26.9576632	total: 227ms	remaining: 288ms
44:	learn: 26.6177110	total: 231ms	remaining: 282ms
45:	learn: 26.2812456	total: 235ms	remaining: 276ms
46:	learn: 26.0803859	total: 239ms	remaining: 270ms
47:	learn: 25.9543581	total: 243ms	remaining: 263ms
48:	learn: 25.7951582	total: 247ms	remaining: 257ms
49:	learn: 25.6548184	total: 251ms	remaining: 251ms
50:	learn: 25.4010843	total: 256ms	remaining: 246ms
51:	learn: 24.9773937	total: 261ms	remaining: 241ms
52:	learn: 24.8026156	total: 266ms	remaining: 235ms
53:	learn: 24.5568053	total: 270ms	remaining: 230ms
54:	learn: 24.2281839	total: 275ms	remaining: 225ms
55:	learn: 23.9202795	total: 279ms	remaining: 219ms
56:	learn: 23.7625591	total: 284ms	remaining: 214ms
57:	learn: 23.5429721	total: 288ms	remaining: 209ms
58:	learn: 23.3175893	total: 297ms	remaining: 206ms
59:	learn: 23.2035130	total: 304ms	remaining: 203ms
60:	learn: 23.0232450	total: 312ms	remaining: 200ms
61:	learn: 22.8384958	total: 318ms	remaining: 195ms
62:	learn: 22.6499902	total: 325ms	remaining: 191ms
63:	learn: 22.4577426	total: 330ms	remaining: 185ms
64:	learn: 22.3333158	total: 335ms	remaining: 180ms
65:	learn: 22.2064131	total: 340ms	remaining: 175ms
66:	learn: 22.1434971	total: 345ms	remaining: 170ms
67:	learn: 21.9596519	total: 350ms	remaining: 165ms
68:	learn: 21.8475576	total: 356ms	remaining: 160ms
69:	learn: 21.6954745	total: 361ms	remaining: 155ms
70:	learn: 21.5635976	total: 367ms	remaining: 150ms
71:	learn: 21.4588506	total: 372ms	remaining: 145ms
72:	learn: 21.3527268	total: 377ms	remaining: 139ms
73:	learn: 21.2661288	total: 381ms	remaining: 134ms
74:	learn: 21.1817333	total: 386ms	remaining: 129ms
75:	learn: 21.0527553	total: 392ms	remaining: 124ms
76:	learn: 20.9229021	total: 397ms	remaining: 119ms
77:	learn: 20.7563946	total: 401ms	remaining: 113ms
78:	learn: 20.6569831	total: 405ms	remaining: 108ms
79:	learn: 20.4982663	total: 409ms	remaining: 102ms
80:	learn: 20.3185460	total: 413ms	remaining: 96.9ms
81:	learn: 20.2096241	total: 417ms	remaining: 91.6ms
82:	learn: 20.1274891	total: 421ms	remaining: 86.3ms
83:	learn: 20.0740139	total: 426ms	remaining: 81.1ms
84:	learn: 19.9630699	total: 430ms	remaining: 75.8ms
85:	learn: 19.8753899	total: 434ms	remaining: 70.6ms
86:	learn: 19.6563612	total: 438ms	remaining: 65.4ms
87:	learn: 19.4680232	total: 442ms	remaining: 60.2ms
88:	learn: 19.3503431	total: 446ms	remaining: 55.1ms
89:	learn: 19.2221379	total: 449ms	remaining: 49.9ms
90:	learn: 19.0732542	total: 454ms	remaining: 44.9ms
91:	learn: 18.9825190	total: 458ms	remaining: 39.9ms
92:	learn: 18.8839009	total: 463ms	remaining: 34.8ms
93:	learn: 18.8012219	total: 468ms	remaining: 29.9ms
94:	learn: 18.7172713	total: 472ms	remaining: 24.9ms
95:	learn: 18.6201170	total: 477ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 481ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 486ms	remaining: 9.92ms
98:	learn: 18.3289700	total: 492ms	remaining: 4.97ms
99:	learn: 18.2227333	total: 500ms	remaining: 0us
0:	learn: 46.3764524	total: 5.76ms	remaining: 571ms
1:	learn: 45.5561269	total: 10.8ms	remaining: 531ms
2:	learn: 44.8811245	total: 15.8ms	remaining: 512ms
3:	learn: 44.0788617	total: 21.4ms	remaining: 513ms
4:	learn: 43.3619790	total: 26.8ms	remaining: 510ms
5:	learn: 42.6912112	total: 32.6ms	remaining: 510ms
6:	learn: 42.2292118	total: 37.6ms	remaining: 500ms
7:	learn: 41.7725191	total: 43ms	remaining: 495ms
8:	learn: 41.1676614	total: 48.6ms	remaining: 492ms
9:	learn: 40.5771076	total: 54ms	remaining: 486ms
10:	learn: 39.8343757	total: 58.2ms	remaining: 471ms
11:	learn: 39.3761142	total: 62.5ms	remaining: 459ms
12:	learn: 38.5254692	total: 66.8ms	remaining: 447ms
13:	learn: 37.9629555	total: 71.2ms	remaining: 437ms
14:	learn: 37.4418438	total: 75.3ms	remaining: 427ms
15:	learn: 37.0507283	total: 79.9ms	remaining: 419ms
16:	learn: 36.6264217	total: 84.1ms	remaining: 410ms
17:	learn: 36.1114940	total: 88.2ms	remaining: 402ms
18:	learn: 35.7193862	total: 92.2ms	remaining: 393ms
19:	learn: 35.3301177	total: 96.4ms	remaining: 385ms
20:	learn: 35.0598280	total: 101ms	remaining: 380ms
21:	learn: 34.5469736	total: 105ms	remaining: 374ms
22:	learn: 34.2064215	total: 110ms	remaining: 367ms
23:	learn: 33.7280710	total: 114ms	remaining: 361ms
24:	learn: 33.3282940	total: 119ms	remaining: 356ms
25:	learn: 32.8478961	total: 123ms	remaining: 350ms
26:	learn: 32.5722164	total: 128ms	remaining: 345ms
27:	learn: 32.2457019	total: 133ms	remaining: 341ms
28:	learn: 31.9230495	total: 137ms	remaining: 336ms
29:	learn: 31.4311611	total: 142ms	remaining: 331ms
30:	learn: 30.9179052	total: 147ms	remaining: 327ms
31:	learn: 30.6201141	total: 152ms	remaining: 323ms
32:	learn: 30.3421106	total: 160ms	remaining: 324ms
33:	learn: 29.9885373	total: 167ms	remaining: 324ms
34:	learn: 29.7462780	total: 175ms	remaining: 325ms
35:	learn: 29.3607153	total: 183ms	remaining: 325ms
36:	learn: 29.1793078	total: 190ms	remaining: 324ms
37:	learn: 28.9276538	total: 196ms	remaining: 319ms
38:	learn: 28.6903934	total: 201ms	remaining: 315ms
39:	learn: 28.2095033	total: 207ms	remaining: 310ms
40:	learn: 27.7990608	total: 212ms	remaining: 305ms
41:	learn: 27.5406632	total: 217ms	remaining: 299ms
42:	learn: 27.2575376	total: 222ms	remaining: 295ms
43:	learn: 26.9741707	total: 228ms	remaining: 290ms
44:	learn: 26.6606899	total: 233ms	remaining: 285ms
45:	learn: 26.4015833	total: 238ms	remaining: 280ms
46:	learn: 26.1828993	total: 243ms	remaining: 274ms
47:	learn: 26.0233709	total: 246ms	remaining: 267ms
48:	learn: 25.9300399	total: 252ms	remaining: 262ms
49:	learn: 25.5861489	total: 258ms	remaining: 258ms
50:	learn: 25.4322012	total: 262ms	remaining: 252ms
51:	learn: 25.1595644	total: 267ms	remaining: 247ms
52:	learn: 24.9955303	total: 271ms	remaining: 241ms
53:	learn: 24.7273966	total: 276ms	remaining: 235ms
54:	learn: 24.5747978	total: 281ms	remaining: 230ms
55:	learn: 24.3807977	total: 286ms	remaining: 225ms
56:	learn: 24.1689569	total: 292ms	remaining: 220ms
57:	learn: 23.9898221	total: 297ms	remaining: 215ms
58:	learn: 23.7566414	total: 301ms	remaining: 209ms
59:	learn: 23.6641165	total: 306ms	remaining: 204ms
60:	learn: 23.5658066	total: 312ms	remaining: 199ms
61:	learn: 23.4338851	total: 317ms	remaining: 194ms
62:	learn: 23.2408837	total: 321ms	remaining: 189ms
63:	learn: 23.0642038	total: 326ms	remaining: 183ms
64:	learn: 22.9032045	total: 331ms	remaining: 178ms
65:	learn: 22.7736138	total: 336ms	remaining: 173ms
66:	learn: 22.6836443	total: 340ms	remaining: 168ms
67:	learn: 22.5983654	total: 345ms	remaining: 162ms
68:	learn: 22.4419813	total: 350ms	remaining: 157ms
69:	learn: 22.2863339	total: 358ms	remaining: 154ms
70:	learn: 22.1792943	total: 366ms	remaining: 150ms
71:	learn: 22.1130574	total: 375ms	remaining: 146ms
72:	learn: 21.9858161	total: 383ms	remaining: 141ms
73:	learn: 21.8577784	total: 388ms	remaining: 136ms
74:	learn: 21.7845222	total: 393ms	remaining: 131ms
75:	learn: 21.6831390	total: 398ms	remaining: 126ms
76:	learn: 21.6292521	total: 403ms	remaining: 120ms
77:	learn: 21.5789330	total: 408ms	remaining: 115ms
78:	learn: 21.5420942	total: 413ms	remaining: 110ms
79:	learn: 21.4280939	total: 418ms	remaining: 105ms
80:	learn: 21.3641165	total: 424ms	remaining: 99.4ms
81:	learn: 21.2734814	total: 429ms	remaining: 94.2ms
82:	learn: 21.2220323	total: 434ms	remaining: 88.9ms
83:	learn: 21.0625792	total: 439ms	remaining: 83.6ms
84:	learn: 20.9488320	total: 444ms	remaining: 78.3ms
85:	learn: 20.8504255	total: 449ms	remaining: 73.1ms
86:	learn: 20.7848510	total: 454ms	remaining: 67.9ms
87:	learn: 20.7247442	total: 458ms	remaining: 62.5ms
88:	learn: 20.5698590	total: 463ms	remaining: 57.2ms
89:	learn: 20.4067620	total: 468ms	remaining: 52ms
90:	learn: 20.3062482	total: 472ms	remaining: 46.7ms
91:	learn: 20.2029696	total: 476ms	remaining: 41.4ms
92:	learn: 20.1384849	total: 493ms	remaining: 37.1ms
93:	learn: 20.0260709	total: 497ms	remaining: 31.7ms
94:	learn: 19.9122100	total: 501ms	remaining: 26.4ms
95:	learn: 19.8648487	total: 505ms	remaining: 21ms
96:	learn: 19.8207072	total: 509ms	remaining: 15.7ms
97:	learn: 19.7261189	total: 513ms	remaining: 10.5ms
98:	learn: 19.7042438	total: 518ms	remaining: 5.23ms
99:	learn: 19.6546645	total: 522ms	remaining: 0us
0:	learn: 47.0239288	total: 5.34ms	remaining: 529ms
1:	learn: 46.2253829	total: 10.4ms	remaining: 508ms
2:	learn: 45.5580301	total: 15.4ms	remaining: 498ms
3:	learn: 44.7273237	total: 20.7ms	remaining: 496ms
4:	learn: 43.8867421	total: 25.7ms	remaining: 488ms
5:	learn: 43.3615911	total: 31ms	remaining: 486ms
6:	learn: 42.8548390	total: 36.3ms	remaining: 482ms
7:	learn: 42.1606758	total: 41.4ms	remaining: 476ms
8:	learn: 41.6625870	total: 47.2ms	remaining: 477ms
9:	learn: 40.9497092	total: 52.1ms	remaining: 469ms
10:	learn: 40.1886318	total: 57.1ms	remaining: 462ms
11:	learn: 39.7456423	total: 62.5ms	remaining: 459ms
12:	learn: 39.1171373	total: 67.7ms	remaining: 453ms
13:	learn: 38.5451069	total: 72ms	remaining: 442ms
14:	learn: 38.0155834	total: 75.9ms	remaining: 430ms
15:	learn: 37.5631354	total: 79.9ms	remaining: 420ms
16:	learn: 37.1030023	total: 83.6ms	remaining: 408ms
17:	learn: 36.4563029	total: 87.4ms	remaining: 398ms
18:	learn: 36.0160976	total: 91.4ms	remaining: 390ms
19:	learn: 35.5079827	total: 95.1ms	remaining: 380ms
20:	learn: 35.2111885	total: 99.5ms	remaining: 374ms
21:	learn: 34.9397465	total: 104ms	remaining: 368ms
22:	learn: 34.5270048	total: 108ms	remaining: 361ms
23:	learn: 34.0169260	total: 112ms	remaining: 354ms
24:	learn: 33.7454892	total: 116ms	remaining: 348ms
25:	learn: 33.2648157	total: 120ms	remaining: 342ms
26:	learn: 32.8899427	total: 124ms	remaining: 335ms
27:	learn: 32.6185050	total: 128ms	remaining: 329ms
28:	learn: 32.3528531	total: 132ms	remaining: 323ms
29:	learn: 32.0859923	total: 137ms	remaining: 319ms
30:	learn: 31.6511144	total: 141ms	remaining: 314ms
31:	learn: 31.2571765	total: 145ms	remaining: 309ms
32:	learn: 30.9770049	total: 150ms	remaining: 304ms
33:	learn: 30.6084872	total: 154ms	remaining: 299ms
34:	learn: 30.3448632	total: 158ms	remaining: 294ms
35:	learn: 30.0360942	total: 163ms	remaining: 290ms
36:	learn: 29.6648968	total: 168ms	remaining: 285ms
37:	learn: 29.3165114	total: 172ms	remaining: 281ms
38:	learn: 29.0829198	total: 181ms	remaining: 283ms
39:	learn: 28.7752064	total: 189ms	remaining: 283ms
40:	learn: 28.3622191	total: 197ms	remaining: 283ms
41:	learn: 28.1346631	total: 204ms	remaining: 282ms
42:	learn: 27.9585719	total: 210ms	remaining: 278ms
43:	learn: 27.6565566	total: 215ms	remaining: 274ms
44:	learn: 27.3616172	total: 220ms	remaining: 269ms
45:	learn: 27.0658637	total: 226ms	remaining: 265ms
46:	learn: 26.8660382	total: 231ms	remaining: 260ms
47:	learn: 26.6536078	total: 236ms	remaining: 256ms
48:	learn: 26.3524440	total: 241ms	remaining: 251ms
49:	learn: 26.1595277	total: 246ms	remaining: 246ms
50:	learn: 25.9273523	total: 251ms	remaining: 241ms
51:	learn: 25.7195580	total: 257ms	remaining: 237ms
52:	learn: 25.5730225	total: 261ms	remaining: 231ms
53:	learn: 25.3455276	total: 266ms	remaining: 227ms
54:	learn: 25.2289675	total: 271ms	remaining: 222ms
55:	learn: 25.0133024	total: 276ms	remaining: 217ms
56:	learn: 24.8406714	total: 280ms	remaining: 211ms
57:	learn: 24.6367857	total: 284ms	remaining: 206ms
58:	learn: 24.5338177	total: 288ms	remaining: 200ms
59:	learn: 24.3799964	total: 292ms	remaining: 194ms
60:	learn: 24.1447492	total: 296ms	remaining: 189ms
61:	learn: 23.9880495	total: 299ms	remaining: 184ms
62:	learn: 23.7140630	total: 303ms	remaining: 178ms
63:	learn: 23.5003791	total: 308ms	remaining: 173ms
64:	learn: 23.3207645	total: 312ms	remaining: 168ms
65:	learn: 23.1958356	total: 316ms	remaining: 163ms
66:	learn: 23.0471302	total: 320ms	remaining: 158ms
67:	learn: 22.8977183	total: 325ms	remaining: 153ms
68:	learn: 22.7187400	total: 329ms	remaining: 148ms
69:	learn: 22.6523405	total: 334ms	remaining: 143ms
70:	learn: 22.4767453	total: 338ms	remaining: 138ms
71:	learn: 22.3243677	total: 343ms	remaining: 133ms
72:	learn: 22.2133096	total: 347ms	remaining: 128ms
73:	learn: 22.1151713	total: 352ms	remaining: 124ms
74:	learn: 22.0296666	total: 356ms	remaining: 119ms
75:	learn: 21.9195980	total: 360ms	remaining: 114ms
76:	learn: 21.8401730	total: 365ms	remaining: 109ms
77:	learn: 21.8079797	total: 369ms	remaining: 104ms
78:	learn: 21.7274109	total: 377ms	remaining: 100ms
79:	learn: 21.6663032	total: 384ms	remaining: 96.1ms
80:	learn: 21.5633117	total: 393ms	remaining: 92.1ms
81:	learn: 21.4542467	total: 398ms	remaining: 87.4ms
82:	learn: 21.3177957	total: 404ms	remaining: 82.8ms
83:	learn: 21.1289167	total: 410ms	remaining: 78.1ms
84:	learn: 21.0297368	total: 415ms	remaining: 73.3ms
85:	learn: 20.9089564	total: 421ms	remaining: 68.5ms
86:	learn: 20.7653988	total: 426ms	remaining: 63.7ms
87:	learn: 20.6521894	total: 432ms	remaining: 58.9ms
88:	learn: 20.5193021	total: 437ms	remaining: 54ms
89:	learn: 20.4361620	total: 442ms	remaining: 49.1ms
90:	learn: 20.3546710	total: 447ms	remaining: 44.2ms
91:	learn: 20.2513296	total: 452ms	remaining: 39.3ms
92:	learn: 20.1605550	total: 457ms	remaining: 34.4ms
93:	learn: 20.0515942	total: 462ms	remaining: 29.5ms
94:	learn: 19.9800764	total: 467ms	remaining: 24.6ms
95:	learn: 19.8996532	total: 472ms	remaining: 19.7ms
96:	learn: 19.8450910	total: 477ms	remaining: 14.8ms
97:	learn: 19.7887346	total: 481ms	remaining: 9.82ms
98:	learn: 19.7230872	total: 486ms	remaining: 4.91ms
99:	learn: 19.6328825	total: 490ms	remaining: 0us
0:	learn: 27.5585353	total: 4.38ms	remaining: 433ms
1:	learn: 27.1656995	total: 8.87ms	remaining: 435ms
2:	learn: 26.8590175	total: 13.5ms	remaining: 437ms
3:	learn: 26.5818406	total: 18.1ms	remaining: 433ms
4:	learn: 26.1148663	total: 22.6ms	remaining: 429ms
5:	learn: 25.7690484	total: 27.1ms	remaining: 424ms
6:	learn: 25.3489206	total: 31.6ms	remaining: 420ms
7:	learn: 24.9542406	total: 36.4ms	remaining: 418ms
8:	learn: 24.6777517	total: 41ms	remaining: 414ms
9:	learn: 24.3242344	total: 46.3ms	remaining: 417ms
10:	learn: 24.0383073	total: 53.6ms	remaining: 434ms
11:	learn: 23.7383420	total: 60.8ms	remaining: 446ms
12:	learn: 23.3461670	total: 68.2ms	remaining: 457ms
13:	learn: 23.0928636	total: 74.6ms	remaining: 458ms
14:	learn: 22.8770414	total: 80.7ms	remaining: 457ms
15:	learn: 22.6323214	total: 85.7ms	remaining: 450ms
16:	learn: 22.3597072	total: 91ms	remaining: 444ms
17:	learn: 22.1079813	total: 96.1ms	remaining: 438ms
18:	learn: 21.8421199	total: 101ms	remaining: 432ms
19:	learn: 21.6576508	total: 106ms	remaining: 425ms
20:	learn: 21.4301268	total: 111ms	remaining: 419ms
21:	learn: 21.2287388	total: 116ms	remaining: 413ms
22:	learn: 21.0553872	total: 121ms	remaining: 406ms
23:	learn: 20.8977091	total: 126ms	remaining: 400ms
24:	learn: 20.6619051	total: 132ms	remaining: 396ms
25:	learn: 20.5040955	total: 137ms	remaining: 391ms
26:	learn: 20.3181195	total: 142ms	remaining: 384ms
27:	learn: 20.0869436	total: 148ms	remaining: 379ms
28:	learn: 19.9375985	total: 153ms	remaining: 375ms
29:	learn: 19.8247516	total: 159ms	remaining: 370ms
30:	learn: 19.6261697	total: 163ms	remaining: 364ms
31:	learn: 19.4547236	total: 168ms	remaining: 358ms
32:	learn: 19.3157092	total: 173ms	remaining: 351ms
33:	learn: 19.1561419	total: 178ms	remaining: 345ms
34:	learn: 19.0453620	total: 183ms	remaining: 339ms
35:	learn: 18.8738574	total: 187ms	remaining: 332ms
36:	learn: 18.7072907	total: 192ms	remaining: 326ms
37:	learn: 18.5877943	total: 195ms	remaining: 319ms
38:	learn: 18.4436380	total: 200ms	remaining: 312ms
39:	learn: 18.3463356	total: 204ms	remaining: 306ms
40:	learn: 18.2008059	total: 208ms	remaining: 299ms
41:	learn: 18.0582079	total: 212ms	remaining: 293ms
42:	learn: 17.8891982	total: 217ms	remaining: 287ms
43:	learn: 17.7332246	total: 221ms	remaining: 282ms
44:	learn: 17.6206421	total: 226ms	remaining: 276ms
45:	learn: 17.4982800	total: 230ms	remaining: 270ms
46:	learn: 17.3970150	total: 235ms	remaining: 265ms
47:	learn: 17.3058203	total: 240ms	remaining: 259ms
48:	learn: 17.1789256	total: 244ms	remaining: 254ms
49:	learn: 17.0916229	total: 248ms	remaining: 248ms
50:	learn: 16.9859820	total: 253ms	remaining: 243ms
51:	learn: 16.8995582	total: 258ms	remaining: 238ms
52:	learn: 16.8137014	total: 265ms	remaining: 235ms
53:	learn: 16.7021451	total: 273ms	remaining: 233ms
54:	learn: 16.5895582	total: 282ms	remaining: 230ms
55:	learn: 16.5015639	total: 289ms	remaining: 227ms
56:	learn: 16.4356637	total: 295ms	remaining: 222ms
57:	learn: 16.3514525	total: 300ms	remaining: 217ms
58:	learn: 16.2401369	total: 305ms	remaining: 212ms
59:	learn: 16.1293223	total: 310ms	remaining: 206ms
60:	learn: 16.0271167	total: 315ms	remaining: 201ms
61:	learn: 15.9126257	total: 320ms	remaining: 196ms
62:	learn: 15.8391096	total: 326ms	remaining: 191ms
63:	learn: 15.7441773	total: 331ms	remaining: 186ms
64:	learn: 15.6885195	total: 336ms	remaining: 181ms
65:	learn: 15.6052039	total: 340ms	remaining: 175ms
66:	learn: 15.5074202	total: 345ms	remaining: 170ms
67:	learn: 15.4054338	total: 350ms	remaining: 165ms
68:	learn: 15.2885714	total: 356ms	remaining: 160ms
69:	learn: 15.2157472	total: 361ms	remaining: 155ms
70:	learn: 15.1031554	total: 365ms	remaining: 149ms
71:	learn: 15.0237470	total: 370ms	remaining: 144ms
72:	learn: 14.9756825	total: 374ms	remaining: 138ms
73:	learn: 14.8840596	total: 378ms	remaining: 133ms
74:	learn: 14.8077061	total: 382ms	remaining: 127ms
75:	learn: 14.7444437	total: 386ms	remaining: 122ms
76:	learn: 14.6751720	total: 390ms	remaining: 117ms
77:	learn: 14.5830333	total: 394ms	remaining: 111ms
78:	learn: 14.5241206	total: 398ms	remaining: 106ms
79:	learn: 14.4892731	total: 402ms	remaining: 100ms
80:	learn: 14.4256605	total: 406ms	remaining: 95.2ms
81:	learn: 14.3666860	total: 410ms	remaining: 90ms
82:	learn: 14.2938372	total: 414ms	remaining: 84.8ms
83:	learn: 14.2161532	total: 418ms	remaining: 79.6ms
84:	learn: 14.1582910	total: 423ms	remaining: 74.6ms
85:	learn: 14.1029153	total: 427ms	remaining: 69.6ms
86:	learn: 14.0475835	total: 432ms	remaining: 64.6ms
87:	learn: 13.9892661	total: 437ms	remaining: 59.5ms
88:	learn: 13.9481628	total: 441ms	remaining: 54.5ms
89:	learn: 13.8483991	total: 446ms	remaining: 49.5ms
90:	learn: 13.7775614	total: 450ms	remaining: 44.5ms
91:	learn: 13.7304585	total: 455ms	remaining: 39.6ms
92:	learn: 13.6783381	total: 463ms	remaining: 34.9ms
93:	learn: 13.6356964	total: 470ms	remaining: 30ms
94:	learn: 13.5924371	total: 479ms	remaining: 25.2ms
95:	learn: 13.5400746	total: 485ms	remaining: 20.2ms
96:	learn: 13.4897333	total: 492ms	remaining: 15.2ms
97:	learn: 13.4470321	total: 497ms	remaining: 10.1ms
98:	learn: 13.3856082	total: 502ms	remaining: 5.07ms
99:	learn: 13.3082371	total: 507ms	remaining: 0us
0:	learn: 43.0395283	total: 4.5ms	remaining: 446ms
1:	learn: 42.1130223	total: 8.44ms	remaining: 414ms
2:	learn: 41.1753409	total: 12.5ms	remaining: 404ms
3:	learn: 40.3637444	total: 16.6ms	remaining: 398ms
4:	learn: 39.6508088	total: 20.5ms	remaining: 390ms
5:	learn: 38.7217934	total: 24.5ms	remaining: 383ms
6:	learn: 37.8538055	total: 28.6ms	remaining: 381ms
7:	learn: 36.9793574	total: 32.8ms	remaining: 377ms
8:	learn: 36.3076984	total: 37.1ms	remaining: 375ms
9:	learn: 35.6673160	total: 41.1ms	remaining: 370ms
10:	learn: 34.8889800	total: 44.8ms	remaining: 363ms
11:	learn: 34.1675517	total: 48.8ms	remaining: 358ms
12:	learn: 33.6779564	total: 52.9ms	remaining: 354ms
13:	learn: 33.0710039	total: 56.7ms	remaining: 348ms
14:	learn: 32.4966674	total: 60.7ms	remaining: 344ms
15:	learn: 31.9492856	total: 64.9ms	remaining: 341ms
16:	learn: 31.5108129	total: 69.5ms	remaining: 339ms
17:	learn: 30.9804023	total: 74ms	remaining: 337ms
18:	learn: 30.4169089	total: 78.2ms	remaining: 333ms
19:	learn: 29.8930375	total: 82.7ms	remaining: 331ms
20:	learn: 29.3974421	total: 87.5ms	remaining: 329ms
21:	learn: 28.8792307	total: 92.3ms	remaining: 327ms
22:	learn: 28.3894474	total: 96.8ms	remaining: 324ms
23:	learn: 27.9921276	total: 101ms	remaining: 321ms
24:	learn: 27.6158887	total: 109ms	remaining: 328ms
25:	learn: 27.2866950	total: 117ms	remaining: 332ms
26:	learn: 26.8770708	total: 126ms	remaining: 340ms
27:	learn: 26.6233005	total: 131ms	remaining: 338ms
28:	learn: 26.2921934	total: 138ms	remaining: 337ms
29:	learn: 25.9156920	total: 143ms	remaining: 334ms
30:	learn: 25.5311106	total: 145ms	remaining: 323ms
31:	learn: 25.2178997	total: 150ms	remaining: 319ms
32:	learn: 24.8572196	total: 156ms	remaining: 316ms
33:	learn: 24.5849710	total: 160ms	remaining: 311ms
34:	learn: 24.2209190	total: 165ms	remaining: 307ms
35:	learn: 23.8708250	total: 170ms	remaining: 303ms
36:	learn: 23.5325279	total: 175ms	remaining: 298ms
37:	learn: 23.2116148	total: 180ms	remaining: 294ms
38:	learn: 22.9696787	total: 185ms	remaining: 290ms
39:	learn: 22.7936783	total: 190ms	remaining: 286ms
40:	learn: 22.6228847	total: 201ms	remaining: 289ms
41:	learn: 22.3691527	total: 207ms	remaining: 285ms
42:	learn: 22.1002173	total: 211ms	remaining: 279ms
43:	learn: 21.9157268	total: 215ms	remaining: 273ms
44:	learn: 21.7229102	total: 219ms	remaining: 267ms
45:	learn: 21.4642005	total: 223ms	remaining: 262ms
46:	learn: 21.3029442	total: 227ms	remaining: 256ms
47:	learn: 21.1469792	total: 231ms	remaining: 250ms
48:	learn: 20.9458235	total: 235ms	remaining: 244ms
49:	learn: 20.7335242	total: 239ms	remaining: 239ms
50:	learn: 20.5440269	total: 243ms	remaining: 234ms
51:	learn: 20.3661449	total: 247ms	remaining: 228ms
52:	learn: 20.2158134	total: 252ms	remaining: 223ms
53:	learn: 19.9934873	total: 256ms	remaining: 218ms
54:	learn: 19.7879739	total: 260ms	remaining: 213ms
55:	learn: 19.6630460	total: 264ms	remaining: 207ms
56:	learn: 19.5152729	total: 269ms	remaining: 203ms
57:	learn: 19.3581128	total: 273ms	remaining: 198ms
58:	learn: 19.2209303	total: 278ms	remaining: 193ms
59:	learn: 19.0965248	total: 282ms	remaining: 188ms
60:	learn: 19.0035954	total: 287ms	remaining: 183ms
61:	learn: 18.8554149	total: 291ms	remaining: 178ms
62:	learn: 18.7095427	total: 295ms	remaining: 174ms
63:	learn: 18.5751494	total: 300ms	remaining: 169ms
64:	learn: 18.4678251	total: 308ms	remaining: 166ms
65:	learn: 18.3500325	total: 317ms	remaining: 163ms
66:	learn: 18.2088983	total: 325ms	remaining: 160ms
67:	learn: 18.0737705	total: 333ms	remaining: 157ms
68:	learn: 17.9325058	total: 338ms	remaining: 152ms
69:	learn: 17.8003911	total: 344ms	remaining: 147ms
70:	learn: 17.7385366	total: 349ms	remaining: 143ms
71:	learn: 17.6106998	total: 354ms	remaining: 138ms
72:	learn: 17.4816270	total: 360ms	remaining: 133ms
73:	learn: 17.4025554	total: 365ms	remaining: 128ms
74:	learn: 17.2902108	total: 370ms	remaining: 123ms
75:	learn: 17.2158048	total: 375ms	remaining: 119ms
76:	learn: 17.1261053	total: 381ms	remaining: 114ms
77:	learn: 17.0308917	total: 386ms	remaining: 109ms
78:	learn: 16.9546705	total: 391ms	remaining: 104ms
79:	learn: 16.8319165	total: 396ms	remaining: 98.9ms
80:	learn: 16.7687017	total: 401ms	remaining: 94.1ms
81:	learn: 16.6972326	total: 407ms	remaining: 89.3ms
82:	learn: 16.6124580	total: 412ms	remaining: 84.4ms
83:	learn: 16.4999052	total: 417ms	remaining: 79.4ms
84:	learn: 16.4302484	total: 421ms	remaining: 74.3ms
85:	learn: 16.3201363	total: 426ms	remaining: 69.3ms
86:	learn: 16.2534314	total: 430ms	remaining: 64.2ms
87:	learn: 16.1720485	total: 434ms	remaining: 59.2ms
88:	learn: 16.0625751	total: 438ms	remaining: 54.2ms
89:	learn: 15.9135088	total: 443ms	remaining: 49.2ms
90:	learn: 15.8658863	total: 447ms	remaining: 44.2ms
91:	learn: 15.8066805	total: 452ms	remaining: 39.3ms
92:	learn: 15.7412103	total: 456ms	remaining: 34.3ms
93:	learn: 15.6542776	total: 461ms	remaining: 29.4ms
94:	learn: 15.5760334	total: 465ms	remaining: 24.5ms
95:	learn: 15.5434131	total: 470ms	remaining: 19.6ms
96:	learn: 15.4709561	total: 475ms	remaining: 14.7ms
97:	learn: 15.4449618	total: 479ms	remaining: 9.78ms
98:	learn: 15.3752761	total: 484ms	remaining: 4.88ms
99:	learn: 15.3106595	total: 488ms	remaining: 0us
0:	learn: 46.7142257	total: 5.47ms	remaining: 542ms
1:	learn: 45.7634153	total: 10.7ms	remaining: 523ms
2:	learn: 45.0054253	total: 16.2ms	remaining: 523ms
3:	learn: 44.2120432	total: 21.6ms	remaining: 518ms
4:	learn: 43.3960472	total: 26.7ms	remaining: 508ms
5:	learn: 42.8588120	total: 31.9ms	remaining: 499ms
6:	learn: 41.9533701	total: 37.3ms	remaining: 496ms
7:	learn: 41.2745030	total: 43.1ms	remaining: 496ms
8:	learn: 40.6797495	total: 48.1ms	remaining: 486ms
9:	learn: 39.9899571	total: 54ms	remaining: 486ms
10:	learn: 39.4682100	total: 59.5ms	remaining: 481ms
11:	learn: 39.0305595	total: 64.5ms	remaining: 473ms
12:	learn: 38.4200417	total: 69.2ms	remaining: 463ms
13:	learn: 37.8425194	total: 73.7ms	remaining: 453ms
14:	learn: 37.4203127	total: 77.8ms	remaining: 441ms
15:	learn: 36.9917688	total: 82.2ms	remaining: 432ms
16:	learn: 36.5544138	total: 86.7ms	remaining: 423ms
17:	learn: 36.0727019	total: 90.9ms	remaining: 414ms
18:	learn: 35.4835715	total: 94.8ms	remaining: 404ms
19:	learn: 34.9865654	total: 98.8ms	remaining: 395ms
20:	learn: 34.6063373	total: 103ms	remaining: 388ms
21:	learn: 34.0997289	total: 107ms	remaining: 381ms
22:	learn: 33.7313171	total: 112ms	remaining: 374ms
23:	learn: 33.3582000	total: 116ms	remaining: 366ms
24:	learn: 32.9432456	total: 120ms	remaining: 359ms
25:	learn: 32.5220888	total: 124ms	remaining: 352ms
26:	learn: 32.2172292	total: 128ms	remaining: 347ms
27:	learn: 31.8972904	total: 133ms	remaining: 342ms
28:	learn: 31.6405350	total: 137ms	remaining: 336ms
29:	learn: 31.4167702	total: 142ms	remaining: 331ms
30:	learn: 30.8541961	total: 144ms	remaining: 320ms
31:	learn: 30.5572111	total: 148ms	remaining: 315ms
32:	learn: 30.1700399	total: 153ms	remaining: 310ms
33:	learn: 29.8537271	total: 158ms	remaining: 306ms
34:	learn: 29.6192540	total: 165ms	remaining: 307ms
35:	learn: 29.3276362	total: 173ms	remaining: 308ms
36:	learn: 28.9985179	total: 182ms	remaining: 309ms
37:	learn: 28.7046880	total: 187ms	remaining: 306ms
38:	learn: 28.4412677	total: 195ms	remaining: 305ms
39:	learn: 28.1277292	total: 200ms	remaining: 300ms
40:	learn: 27.9000750	total: 205ms	remaining: 295ms
41:	learn: 27.5433162	total: 210ms	remaining: 291ms
42:	learn: 27.2493285	total: 216ms	remaining: 286ms
43:	learn: 26.9576632	total: 218ms	remaining: 277ms
44:	learn: 26.6177110	total: 223ms	remaining: 272ms
45:	learn: 26.2812456	total: 228ms	remaining: 268ms
46:	learn: 26.0803859	total: 233ms	remaining: 263ms
47:	learn: 25.9543581	total: 238ms	remaining: 258ms
48:	learn: 25.7951582	total: 243ms	remaining: 253ms
49:	learn: 25.6548184	total: 248ms	remaining: 248ms
50:	learn: 25.4010843	total: 253ms	remaining: 243ms
51:	learn: 24.9773937	total: 259ms	remaining: 239ms
52:	learn: 24.8026156	total: 264ms	remaining: 234ms
53:	learn: 24.5568053	total: 269ms	remaining: 229ms
54:	learn: 24.2281839	total: 273ms	remaining: 223ms
55:	learn: 23.9202795	total: 277ms	remaining: 218ms
56:	learn: 23.7625591	total: 281ms	remaining: 212ms
57:	learn: 23.5429721	total: 285ms	remaining: 206ms
58:	learn: 23.3175893	total: 289ms	remaining: 201ms
59:	learn: 23.2035130	total: 293ms	remaining: 195ms
60:	learn: 23.0232450	total: 298ms	remaining: 190ms
61:	learn: 22.8384958	total: 301ms	remaining: 185ms
62:	learn: 22.6499902	total: 306ms	remaining: 180ms
63:	learn: 22.4577426	total: 310ms	remaining: 174ms
64:	learn: 22.3333158	total: 314ms	remaining: 169ms
65:	learn: 22.2064131	total: 318ms	remaining: 164ms
66:	learn: 22.1434971	total: 323ms	remaining: 159ms
67:	learn: 21.9596519	total: 327ms	remaining: 154ms
68:	learn: 21.8475576	total: 332ms	remaining: 149ms
69:	learn: 21.6954745	total: 336ms	remaining: 144ms
70:	learn: 21.5635976	total: 341ms	remaining: 139ms
71:	learn: 21.4588506	total: 346ms	remaining: 134ms
72:	learn: 21.3527268	total: 350ms	remaining: 130ms
73:	learn: 21.2661288	total: 355ms	remaining: 125ms
74:	learn: 21.1817333	total: 362ms	remaining: 121ms
75:	learn: 21.0527553	total: 369ms	remaining: 117ms
76:	learn: 20.9229021	total: 377ms	remaining: 113ms
77:	learn: 20.7563946	total: 384ms	remaining: 108ms
78:	learn: 20.6569831	total: 391ms	remaining: 104ms
79:	learn: 20.4982663	total: 396ms	remaining: 99.1ms
80:	learn: 20.3185460	total: 402ms	remaining: 94.4ms
81:	learn: 20.2096241	total: 407ms	remaining: 89.4ms
82:	learn: 20.1274891	total: 412ms	remaining: 84.5ms
83:	learn: 20.0740139	total: 418ms	remaining: 79.5ms
84:	learn: 19.9630699	total: 423ms	remaining: 74.6ms
85:	learn: 19.8753899	total: 428ms	remaining: 69.7ms
86:	learn: 19.6563612	total: 434ms	remaining: 64.8ms
87:	learn: 19.4680232	total: 439ms	remaining: 59.9ms
88:	learn: 19.3503431	total: 444ms	remaining: 54.9ms
89:	learn: 19.2221379	total: 449ms	remaining: 49.9ms
90:	learn: 19.0732542	total: 455ms	remaining: 45ms
91:	learn: 18.9825190	total: 460ms	remaining: 40ms
92:	learn: 18.8839009	total: 466ms	remaining: 35.1ms
93:	learn: 18.8012219	total: 470ms	remaining: 30ms
94:	learn: 18.7172713	total: 474ms	remaining: 25ms
95:	learn: 18.6201170	total: 478ms	remaining: 19.9ms
96:	learn: 18.5318611	total: 482ms	remaining: 14.9ms
97:	learn: 18.3833356	total: 487ms	remaining: 9.93ms
98:	learn: 18.3289700	total: 491ms	remaining: 4.96ms
99:	learn: 18.2227333	total: 494ms	remaining: 0us
0:	learn: 46.3764524	total: 5.1ms	remaining: 505ms
1:	learn: 45.5561269	total: 9.31ms	remaining: 456ms
2:	learn: 44.8811245	total: 13.8ms	remaining: 445ms
3:	learn: 44.0788617	total: 20.9ms	remaining: 501ms
4:	learn: 43.3619790	total: 28.2ms	remaining: 537ms
5:	learn: 42.6912112	total: 37.1ms	remaining: 581ms
6:	learn: 42.2292118	total: 43.5ms	remaining: 578ms
7:	learn: 41.7725191	total: 51ms	remaining: 587ms
8:	learn: 41.1676614	total: 56.5ms	remaining: 571ms
9:	learn: 40.5771076	total: 61.3ms	remaining: 552ms
10:	learn: 39.8343757	total: 66.4ms	remaining: 537ms
11:	learn: 39.3761142	total: 71.7ms	remaining: 525ms
12:	learn: 38.5254692	total: 77ms	remaining: 515ms
13:	learn: 37.9629555	total: 82.4ms	remaining: 506ms
14:	learn: 37.4418438	total: 87.2ms	remaining: 494ms
15:	learn: 37.0507283	total: 92.2ms	remaining: 484ms
16:	learn: 36.6264217	total: 97ms	remaining: 473ms
17:	learn: 36.1114940	total: 102ms	remaining: 464ms
18:	learn: 35.7193862	total: 107ms	remaining: 454ms
19:	learn: 35.3301177	total: 112ms	remaining: 447ms
20:	learn: 35.0598280	total: 117ms	remaining: 440ms
21:	learn: 34.5469736	total: 122ms	remaining: 433ms
22:	learn: 34.2064215	total: 126ms	remaining: 422ms
23:	learn: 33.7280710	total: 130ms	remaining: 411ms
24:	learn: 33.3282940	total: 134ms	remaining: 401ms
25:	learn: 32.8478961	total: 138ms	remaining: 392ms
26:	learn: 32.5722164	total: 142ms	remaining: 385ms
27:	learn: 32.2457019	total: 146ms	remaining: 376ms
28:	learn: 31.9230495	total: 150ms	remaining: 368ms
29:	learn: 31.4311611	total: 154ms	remaining: 360ms
30:	learn: 30.9179052	total: 159ms	remaining: 353ms
31:	learn: 30.6201141	total: 163ms	remaining: 346ms
32:	learn: 30.3421106	total: 167ms	remaining: 339ms
33:	learn: 29.9885373	total: 171ms	remaining: 331ms
34:	learn: 29.7462780	total: 175ms	remaining: 324ms
35:	learn: 29.3607153	total: 179ms	remaining: 318ms
36:	learn: 29.1793078	total: 183ms	remaining: 311ms
37:	learn: 28.9276538	total: 187ms	remaining: 305ms
38:	learn: 28.6903934	total: 191ms	remaining: 298ms
39:	learn: 28.2095033	total: 195ms	remaining: 292ms
40:	learn: 27.7990608	total: 199ms	remaining: 286ms
41:	learn: 27.5406632	total: 202ms	remaining: 279ms
42:	learn: 27.2575376	total: 206ms	remaining: 273ms
43:	learn: 26.9741707	total: 211ms	remaining: 268ms
44:	learn: 26.6606899	total: 215ms	remaining: 262ms
45:	learn: 26.4015833	total: 219ms	remaining: 257ms
46:	learn: 26.1828993	total: 223ms	remaining: 252ms
47:	learn: 26.0233709	total: 226ms	remaining: 245ms
48:	learn: 25.9300399	total: 231ms	remaining: 240ms
49:	learn: 25.5861489	total: 236ms	remaining: 236ms
50:	learn: 25.4322012	total: 241ms	remaining: 231ms
51:	learn: 25.1595644	total: 246ms	remaining: 227ms
52:	learn: 24.9955303	total: 250ms	remaining: 222ms
53:	learn: 24.7273966	total: 255ms	remaining: 217ms
54:	learn: 24.5747978	total: 259ms	remaining: 212ms
55:	learn: 24.3807977	total: 266ms	remaining: 209ms
56:	learn: 24.1689569	total: 274ms	remaining: 206ms
57:	learn: 23.9898221	total: 281ms	remaining: 204ms
58:	learn: 23.7566414	total: 289ms	remaining: 201ms
59:	learn: 23.6641165	total: 296ms	remaining: 197ms
60:	learn: 23.5658066	total: 301ms	remaining: 192ms
61:	learn: 23.4338851	total: 306ms	remaining: 188ms
62:	learn: 23.2408837	total: 311ms	remaining: 183ms
63:	learn: 23.0642038	total: 317ms	remaining: 178ms
64:	learn: 22.9032045	total: 322ms	remaining: 173ms
65:	learn: 22.7736138	total: 327ms	remaining: 168ms
66:	learn: 22.6836443	total: 332ms	remaining: 163ms
67:	learn: 22.5983654	total: 337ms	remaining: 159ms
68:	learn: 22.4419813	total: 342ms	remaining: 154ms
69:	learn: 22.2863339	total: 347ms	remaining: 149ms
70:	learn: 22.1792943	total: 352ms	remaining: 144ms
71:	learn: 22.1130574	total: 357ms	remaining: 139ms
72:	learn: 21.9858161	total: 362ms	remaining: 134ms
73:	learn: 21.8577784	total: 368ms	remaining: 129ms
74:	learn: 21.7845222	total: 372ms	remaining: 124ms
75:	learn: 21.6831390	total: 376ms	remaining: 119ms
76:	learn: 21.6292521	total: 380ms	remaining: 114ms
77:	learn: 21.5789330	total: 385ms	remaining: 109ms
78:	learn: 21.5420942	total: 389ms	remaining: 103ms
79:	learn: 21.4280939	total: 394ms	remaining: 98.4ms
80:	learn: 21.3641165	total: 398ms	remaining: 93.3ms
81:	learn: 21.2734814	total: 402ms	remaining: 88.2ms
82:	learn: 21.2220323	total: 406ms	remaining: 83.2ms
83:	learn: 21.0625792	total: 411ms	remaining: 78.2ms
84:	learn: 20.9488320	total: 415ms	remaining: 73.2ms
85:	learn: 20.8504255	total: 419ms	remaining: 68.2ms
86:	learn: 20.7848510	total: 423ms	remaining: 63.2ms
87:	learn: 20.7247442	total: 428ms	remaining: 58.3ms
88:	learn: 20.5698590	total: 432ms	remaining: 53.4ms
89:	learn: 20.4067620	total: 437ms	remaining: 48.5ms
90:	learn: 20.3062482	total: 441ms	remaining: 43.6ms
91:	learn: 20.2029696	total: 446ms	remaining: 38.8ms
92:	learn: 20.1384849	total: 450ms	remaining: 33.9ms
93:	learn: 20.0260709	total: 455ms	remaining: 29ms
94:	learn: 19.9122100	total: 459ms	remaining: 24.2ms
95:	learn: 19.8648487	total: 465ms	remaining: 19.4ms
96:	learn: 19.8207072	total: 473ms	remaining: 14.6ms
97:	learn: 19.7261189	total: 480ms	remaining: 9.8ms
98:	learn: 19.7042438	total: 491ms	remaining: 4.96ms
99:	learn: 19.6546645	total: 499ms	remaining: 0us
0:	learn: 47.0239288	total: 5.58ms	remaining: 552ms
1:	learn: 46.2253829	total: 10.7ms	remaining: 522ms
2:	learn: 45.5580301	total: 15.3ms	remaining: 495ms
3:	learn: 44.7273237	total: 20.1ms	remaining: 482ms
4:	learn: 43.8867421	total: 25.3ms	remaining: 481ms
5:	learn: 43.3615911	total: 30.6ms	remaining: 480ms
6:	learn: 42.8548390	total: 34.6ms	remaining: 460ms
7:	learn: 42.1606758	total: 38.5ms	remaining: 443ms
8:	learn: 41.6625870	total: 42.4ms	remaining: 429ms
9:	learn: 40.9497092	total: 46.2ms	remaining: 416ms
10:	learn: 40.1886318	total: 49.9ms	remaining: 404ms
11:	learn: 39.7456423	total: 54ms	remaining: 396ms
12:	learn: 39.1171373	total: 57.9ms	remaining: 388ms
13:	learn: 38.5451069	total: 62.3ms	remaining: 383ms
14:	learn: 38.0155834	total: 66.1ms	remaining: 374ms
15:	learn: 37.5631354	total: 70.2ms	remaining: 368ms
16:	learn: 37.1030023	total: 74.4ms	remaining: 363ms
17:	learn: 36.4563029	total: 78.4ms	remaining: 357ms
18:	learn: 36.0160976	total: 82.3ms	remaining: 351ms
19:	learn: 35.5079827	total: 86ms	remaining: 344ms
20:	learn: 35.2111885	total: 89.9ms	remaining: 338ms
21:	learn: 34.9397465	total: 94.9ms	remaining: 336ms
22:	learn: 34.5270048	total: 99.5ms	remaining: 333ms
23:	learn: 34.0169260	total: 104ms	remaining: 328ms
24:	learn: 33.7454892	total: 108ms	remaining: 325ms
25:	learn: 33.2648157	total: 113ms	remaining: 322ms
26:	learn: 32.8899427	total: 117ms	remaining: 317ms
27:	learn: 32.6185050	total: 122ms	remaining: 313ms
28:	learn: 32.3528531	total: 126ms	remaining: 309ms
29:	learn: 32.0859923	total: 132ms	remaining: 309ms
30:	learn: 31.6511144	total: 139ms	remaining: 310ms
31:	learn: 31.2571765	total: 146ms	remaining: 311ms
32:	learn: 30.9770049	total: 154ms	remaining: 313ms
33:	learn: 30.6084872	total: 160ms	remaining: 311ms
34:	learn: 30.3448632	total: 166ms	remaining: 309ms
35:	learn: 30.0360942	total: 171ms	remaining: 305ms
36:	learn: 29.6648968	total: 176ms	remaining: 300ms
37:	learn: 29.3165114	total: 182ms	remaining: 297ms
38:	learn: 29.0829198	total: 187ms	remaining: 293ms
39:	learn: 28.7752064	total: 192ms	remaining: 288ms
40:	learn: 28.3622191	total: 198ms	remaining: 284ms
41:	learn: 28.1346631	total: 203ms	remaining: 280ms
42:	learn: 27.9585719	total: 208ms	remaining: 276ms
43:	learn: 27.6565566	total: 213ms	remaining: 271ms
44:	learn: 27.3616172	total: 218ms	remaining: 267ms
45:	learn: 27.0658637	total: 223ms	remaining: 261ms
46:	learn: 26.8660382	total: 228ms	remaining: 257ms
47:	learn: 26.6536078	total: 233ms	remaining: 252ms
48:	learn: 26.3524440	total: 238ms	remaining: 247ms
49:	learn: 26.1595277	total: 241ms	remaining: 241ms
50:	learn: 25.9273523	total: 245ms	remaining: 236ms
51:	learn: 25.7195580	total: 250ms	remaining: 231ms
52:	learn: 25.5730225	total: 254ms	remaining: 225ms
53:	learn: 25.3455276	total: 258ms	remaining: 220ms
54:	learn: 25.2289675	total: 262ms	remaining: 214ms
55:	learn: 25.0133024	total: 266ms	remaining: 209ms
56:	learn: 24.8406714	total: 270ms	remaining: 203ms
57:	learn: 24.6367857	total: 273ms	remaining: 198ms
58:	learn: 24.5338177	total: 278ms	remaining: 193ms
59:	learn: 24.3799964	total: 281ms	remaining: 188ms
60:	learn: 24.1447492	total: 286ms	remaining: 183ms
61:	learn: 23.9880495	total: 290ms	remaining: 178ms
62:	learn: 23.7140630	total: 295ms	remaining: 173ms
63:	learn: 23.5003791	total: 299ms	remaining: 168ms
64:	learn: 23.3207645	total: 303ms	remaining: 163ms
65:	learn: 23.1958356	total: 307ms	remaining: 158ms
66:	learn: 23.0471302	total: 312ms	remaining: 153ms
67:	learn: 22.8977183	total: 316ms	remaining: 149ms
68:	learn: 22.7187400	total: 321ms	remaining: 144ms
69:	learn: 22.6523405	total: 325ms	remaining: 139ms
70:	learn: 22.4767453	total: 333ms	remaining: 136ms
71:	learn: 22.3243677	total: 340ms	remaining: 132ms
72:	learn: 22.2133096	total: 349ms	remaining: 129ms
73:	learn: 22.1151713	total: 356ms	remaining: 125ms
74:	learn: 22.0296666	total: 362ms	remaining: 121ms
75:	learn: 21.9195980	total: 367ms	remaining: 116ms
76:	learn: 21.8401730	total: 373ms	remaining: 111ms
77:	learn: 21.8079797	total: 378ms	remaining: 107ms
78:	learn: 21.7274109	total: 383ms	remaining: 102ms
79:	learn: 21.6663032	total: 389ms	remaining: 97.3ms
80:	learn: 21.5633117	total: 395ms	remaining: 92.6ms
81:	learn: 21.4542467	total: 400ms	remaining: 87.8ms
82:	learn: 21.3177957	total: 405ms	remaining: 83ms
83:	learn: 21.1289167	total: 410ms	remaining: 78.1ms
84:	learn: 21.0297368	total: 415ms	remaining: 73.3ms
85:	learn: 20.9089564	total: 421ms	remaining: 68.6ms
86:	learn: 20.7653988	total: 427ms	remaining: 63.8ms
87:	learn: 20.6521894	total: 431ms	remaining: 58.8ms
88:	learn: 20.5193021	total: 436ms	remaining: 53.8ms
89:	learn: 20.4361620	total: 440ms	remaining: 48.9ms
90:	learn: 20.3546710	total: 444ms	remaining: 43.9ms
91:	learn: 20.2513296	total: 449ms	remaining: 39ms
92:	learn: 20.1605550	total: 453ms	remaining: 34.1ms
93:	learn: 20.0515942	total: 458ms	remaining: 29.2ms
94:	learn: 19.9800764	total: 462ms	remaining: 24.3ms
95:	learn: 19.8996532	total: 467ms	remaining: 19.4ms
96:	learn: 19.8450910	total: 471ms	remaining: 14.6ms
97:	learn: 19.7887346	total: 475ms	remaining: 9.7ms
98:	learn: 19.7230872	total: 480ms	remaining: 4.85ms
99:	learn: 19.6328825	total: 485ms	remaining: 0us
0:	learn: 27.5585353	total: 9.62ms	remaining: 953ms
1:	learn: 27.1656995	total: 18ms	remaining: 880ms
2:	learn: 26.8590175	total: 27.1ms	remaining: 877ms
3:	learn: 26.5818406	total: 32.7ms	remaining: 785ms
4:	learn: 26.1148663	total: 39.1ms	remaining: 743ms
5:	learn: 25.7690484	total: 44.5ms	remaining: 697ms
6:	learn: 25.3489206	total: 49.9ms	remaining: 664ms
7:	learn: 24.9542406	total: 55.3ms	remaining: 636ms
8:	learn: 24.6777517	total: 60.7ms	remaining: 614ms
9:	learn: 24.3242344	total: 65.9ms	remaining: 593ms
10:	learn: 24.0383073	total: 71.1ms	remaining: 575ms
11:	learn: 23.7383420	total: 76.5ms	remaining: 561ms
12:	learn: 23.3461670	total: 82.1ms	remaining: 549ms
13:	learn: 23.0928636	total: 87ms	remaining: 535ms
14:	learn: 22.8770414	total: 92.3ms	remaining: 523ms
15:	learn: 22.6323214	total: 98ms	remaining: 514ms
16:	learn: 22.3597072	total: 104ms	remaining: 506ms
17:	learn: 22.1079813	total: 108ms	remaining: 494ms
18:	learn: 21.8421199	total: 113ms	remaining: 483ms
19:	learn: 21.6576508	total: 118ms	remaining: 472ms
20:	learn: 21.4301268	total: 123ms	remaining: 461ms
21:	learn: 21.2287388	total: 127ms	remaining: 451ms
22:	learn: 21.0553872	total: 132ms	remaining: 442ms
23:	learn: 20.8977091	total: 136ms	remaining: 432ms
24:	learn: 20.6619051	total: 141ms	remaining: 423ms
25:	learn: 20.5040955	total: 146ms	remaining: 416ms
26:	learn: 20.3181195	total: 151ms	remaining: 407ms
27:	learn: 20.0869436	total: 155ms	remaining: 399ms
28:	learn: 19.9375985	total: 160ms	remaining: 392ms
29:	learn: 19.8247516	total: 165ms	remaining: 384ms
30:	learn: 19.6261697	total: 169ms	remaining: 377ms
31:	learn: 19.4547236	total: 174ms	remaining: 370ms
32:	learn: 19.3157092	total: 179ms	remaining: 363ms
33:	learn: 19.1561419	total: 183ms	remaining: 356ms
34:	learn: 19.0453620	total: 188ms	remaining: 349ms
35:	learn: 18.8738574	total: 193ms	remaining: 343ms
36:	learn: 18.7072907	total: 197ms	remaining: 336ms
37:	learn: 18.5877943	total: 205ms	remaining: 335ms
38:	learn: 18.4436380	total: 213ms	remaining: 333ms
39:	learn: 18.3463356	total: 221ms	remaining: 332ms
40:	learn: 18.2008059	total: 229ms	remaining: 330ms
41:	learn: 18.0582079	total: 235ms	remaining: 324ms
42:	learn: 17.8891982	total: 240ms	remaining: 318ms
43:	learn: 17.7332246	total: 245ms	remaining: 312ms
44:	learn: 17.6206421	total: 250ms	remaining: 306ms
45:	learn: 17.4982800	total: 256ms	remaining: 300ms
46:	learn: 17.3970150	total: 261ms	remaining: 294ms
47:	learn: 17.3058203	total: 268ms	remaining: 291ms
48:	learn: 17.1789256	total: 273ms	remaining: 285ms
49:	learn: 17.0916229	total: 279ms	remaining: 279ms
50:	learn: 16.9859820	total: 284ms	remaining: 273ms
51:	learn: 16.8995582	total: 289ms	remaining: 267ms
52:	learn: 16.8137014	total: 294ms	remaining: 261ms
53:	learn: 16.7021451	total: 299ms	remaining: 255ms
54:	learn: 16.5895582	total: 305ms	remaining: 249ms
55:	learn: 16.5015639	total: 309ms	remaining: 243ms
56:	learn: 16.4356637	total: 313ms	remaining: 236ms
57:	learn: 16.3514525	total: 318ms	remaining: 230ms
58:	learn: 16.2401369	total: 322ms	remaining: 224ms
59:	learn: 16.1293223	total: 326ms	remaining: 217ms
60:	learn: 16.0271167	total: 331ms	remaining: 211ms
61:	learn: 15.9126257	total: 335ms	remaining: 205ms
62:	learn: 15.8391096	total: 339ms	remaining: 199ms
63:	learn: 15.7441773	total: 344ms	remaining: 193ms
64:	learn: 15.6885195	total: 348ms	remaining: 187ms
65:	learn: 15.6052039	total: 352ms	remaining: 181ms
66:	learn: 15.5074202	total: 356ms	remaining: 176ms
67:	learn: 15.4054338	total: 361ms	remaining: 170ms
68:	learn: 15.2885714	total: 366ms	remaining: 164ms
69:	learn: 15.2157472	total: 371ms	remaining: 159ms
70:	learn: 15.1031554	total: 375ms	remaining: 153ms
71:	learn: 15.0237470	total: 380ms	remaining: 148ms
72:	learn: 14.9756825	total: 384ms	remaining: 142ms
73:	learn: 14.8840596	total: 389ms	remaining: 137ms
74:	learn: 14.8077061	total: 395ms	remaining: 132ms
75:	learn: 14.7444437	total: 406ms	remaining: 128ms
76:	learn: 14.6751720	total: 416ms	remaining: 124ms
77:	learn: 14.5830333	total: 423ms	remaining: 119ms
78:	learn: 14.5241206	total: 430ms	remaining: 114ms
79:	learn: 14.4892731	total: 435ms	remaining: 109ms
80:	learn: 14.4256605	total: 440ms	remaining: 103ms
81:	learn: 14.3666860	total: 445ms	remaining: 97.7ms
82:	learn: 14.2938372	total: 450ms	remaining: 92.2ms
83:	learn: 14.2161532	total: 455ms	remaining: 86.7ms
84:	learn: 14.1582910	total: 460ms	remaining: 81.2ms
85:	learn: 14.1029153	total: 465ms	remaining: 75.8ms
86:	learn: 14.0475835	total: 471ms	remaining: 70.3ms
87:	learn: 13.9892661	total: 476ms	remaining: 64.9ms
88:	learn: 13.9481628	total: 481ms	remaining: 59.5ms
89:	learn: 13.8483991	total: 486ms	remaining: 54ms
90:	learn: 13.7775614	total: 491ms	remaining: 48.6ms
91:	learn: 13.7304585	total: 496ms	remaining: 43.2ms
92:	learn: 13.6783381	total: 502ms	remaining: 37.8ms
93:	learn: 13.6356964	total: 507ms	remaining: 32.3ms
94:	learn: 13.5924371	total: 511ms	remaining: 26.9ms
95:	learn: 13.5400746	total: 515ms	remaining: 21.5ms
96:	learn: 13.4897333	total: 519ms	remaining: 16ms
97:	learn: 13.4470321	total: 522ms	remaining: 10.7ms
98:	learn: 13.3856082	total: 527ms	remaining: 5.32ms
99:	learn: 13.3082371	total: 531ms	remaining: 0us
0:	learn: 43.0395283	total: 4.89ms	remaining: 484ms
1:	learn: 42.1130223	total: 9.13ms	remaining: 447ms
2:	learn: 41.1753409	total: 13.6ms	remaining: 440ms
3:	learn: 40.3637444	total: 22.3ms	remaining: 535ms
4:	learn: 39.6508088	total: 29.5ms	remaining: 561ms
5:	learn: 38.7217934	total: 38.6ms	remaining: 604ms
6:	learn: 37.8538055	total: 44.8ms	remaining: 595ms
7:	learn: 36.9793574	total: 50.9ms	remaining: 585ms
8:	learn: 36.3076984	total: 56.1ms	remaining: 567ms
9:	learn: 35.6673160	total: 70.7ms	remaining: 637ms
10:	learn: 34.8889800	total: 76ms	remaining: 615ms
11:	learn: 34.1675517	total: 81.4ms	remaining: 597ms
12:	learn: 33.6779564	total: 86.7ms	remaining: 580ms
13:	learn: 33.0710039	total: 91.6ms	remaining: 563ms
14:	learn: 32.4966674	total: 96.7ms	remaining: 548ms
15:	learn: 31.9492856	total: 102ms	remaining: 533ms
16:	learn: 31.5108129	total: 106ms	remaining: 517ms
17:	learn: 30.9804023	total: 111ms	remaining: 507ms
18:	learn: 30.4169089	total: 116ms	remaining: 497ms
19:	learn: 29.8930375	total: 121ms	remaining: 485ms
20:	learn: 29.3974421	total: 126ms	remaining: 472ms
21:	learn: 28.8792307	total: 130ms	remaining: 461ms
22:	learn: 28.3894474	total: 134ms	remaining: 449ms
23:	learn: 27.9921276	total: 138ms	remaining: 437ms
24:	learn: 27.6158887	total: 142ms	remaining: 427ms
25:	learn: 27.2866950	total: 147ms	remaining: 417ms
26:	learn: 26.8770708	total: 151ms	remaining: 407ms
27:	learn: 26.6233005	total: 155ms	remaining: 398ms
28:	learn: 26.2921934	total: 159ms	remaining: 389ms
29:	learn: 25.9156920	total: 163ms	remaining: 381ms
30:	learn: 25.5311106	total: 165ms	remaining: 367ms
31:	learn: 25.2178997	total: 169ms	remaining: 359ms
32:	learn: 24.8572196	total: 173ms	remaining: 351ms
33:	learn: 24.5849710	total: 177ms	remaining: 343ms
34:	learn: 24.2209190	total: 181ms	remaining: 336ms
35:	learn: 23.8708250	total: 185ms	remaining: 329ms
36:	learn: 23.5325279	total: 189ms	remaining: 322ms
37:	learn: 23.2116148	total: 193ms	remaining: 315ms
38:	learn: 22.9696787	total: 197ms	remaining: 309ms
39:	learn: 22.7936783	total: 202ms	remaining: 302ms
40:	learn: 22.6228847	total: 205ms	remaining: 295ms
41:	learn: 22.3691527	total: 210ms	remaining: 290ms
42:	learn: 22.1002173	total: 214ms	remaining: 284ms
43:	learn: 21.9157268	total: 219ms	remaining: 279ms
44:	learn: 21.7229102	total: 223ms	remaining: 273ms
45:	learn: 21.4642005	total: 228ms	remaining: 268ms
46:	learn: 21.3029442	total: 233ms	remaining: 262ms
47:	learn: 21.1469792	total: 237ms	remaining: 257ms
48:	learn: 20.9458235	total: 242ms	remaining: 251ms
49:	learn: 20.7335242	total: 246ms	remaining: 246ms
50:	learn: 20.5440269	total: 251ms	remaining: 241ms
51:	learn: 20.3661449	total: 256ms	remaining: 236ms
52:	learn: 20.2158134	total: 260ms	remaining: 230ms
53:	learn: 19.9934873	total: 265ms	remaining: 226ms
54:	learn: 19.7879739	total: 274ms	remaining: 224ms
55:	learn: 19.6630460	total: 284ms	remaining: 223ms
56:	learn: 19.5152729	total: 292ms	remaining: 220ms
57:	learn: 19.3581128	total: 299ms	remaining: 217ms
58:	learn: 19.2209303	total: 305ms	remaining: 212ms
59:	learn: 19.0965248	total: 310ms	remaining: 207ms
60:	learn: 19.0035954	total: 315ms	remaining: 202ms
61:	learn: 18.8554149	total: 320ms	remaining: 196ms
62:	learn: 18.7095427	total: 325ms	remaining: 191ms
63:	learn: 18.5751494	total: 330ms	remaining: 186ms
64:	learn: 18.4678251	total: 335ms	remaining: 180ms
65:	learn: 18.3500325	total: 341ms	remaining: 175ms
66:	learn: 18.2088983	total: 346ms	remaining: 170ms
67:	learn: 18.0737705	total: 351ms	remaining: 165ms
68:	learn: 17.9325058	total: 356ms	remaining: 160ms
69:	learn: 17.8003911	total: 361ms	remaining: 155ms
70:	learn: 17.7385366	total: 366ms	remaining: 150ms
71:	learn: 17.6106998	total: 372ms	remaining: 145ms
72:	learn: 17.4816270	total: 377ms	remaining: 139ms
73:	learn: 17.4025554	total: 381ms	remaining: 134ms
74:	learn: 17.2902108	total: 384ms	remaining: 128ms
75:	learn: 17.2158048	total: 388ms	remaining: 123ms
76:	learn: 17.1261053	total: 392ms	remaining: 117ms
77:	learn: 17.0308917	total: 397ms	remaining: 112ms
78:	learn: 16.9546705	total: 401ms	remaining: 107ms
79:	learn: 16.8319165	total: 405ms	remaining: 101ms
80:	learn: 16.7687017	total: 409ms	remaining: 96.1ms
81:	learn: 16.6972326	total: 414ms	remaining: 90.8ms
82:	learn: 16.6124580	total: 418ms	remaining: 85.5ms
83:	learn: 16.4999052	total: 422ms	remaining: 80.3ms
84:	learn: 16.4302484	total: 426ms	remaining: 75.2ms
85:	learn: 16.3201363	total: 431ms	remaining: 70.1ms
86:	learn: 16.2534314	total: 435ms	remaining: 65.1ms
87:	learn: 16.1720485	total: 440ms	remaining: 60ms
88:	learn: 16.0625751	total: 445ms	remaining: 55ms
89:	learn: 15.9135088	total: 449ms	remaining: 49.9ms
90:	learn: 15.8658863	total: 454ms	remaining: 44.9ms
91:	learn: 15.8066805	total: 459ms	remaining: 39.9ms
92:	learn: 15.7412103	total: 468ms	remaining: 35.2ms
93:	learn: 15.6542776	total: 476ms	remaining: 30.4ms
94:	learn: 15.5760334	total: 484ms	remaining: 25.5ms
95:	learn: 15.5434131	total: 491ms	remaining: 20.4ms
96:	learn: 15.4709561	total: 496ms	remaining: 15.3ms
97:	learn: 15.4449618	total: 501ms	remaining: 10.2ms
98:	learn: 15.3752761	total: 506ms	remaining: 5.12ms
99:	learn: 15.3106595	total: 512ms	remaining: 0us
0:	learn: 46.7142257	total: 5.99ms	remaining: 593ms
1:	learn: 45.7634153	total: 11.8ms	remaining: 580ms
2:	learn: 45.0054253	total: 16.2ms	remaining: 524ms
3:	learn: 44.2120432	total: 20.8ms	remaining: 500ms
4:	learn: 43.3960472	total: 25.2ms	remaining: 479ms
5:	learn: 42.8588120	total: 29.5ms	remaining: 462ms
6:	learn: 41.9533701	total: 34.1ms	remaining: 452ms
7:	learn: 41.2745030	total: 38.4ms	remaining: 441ms
8:	learn: 40.6797495	total: 42.7ms	remaining: 432ms
9:	learn: 39.9899571	total: 46.7ms	remaining: 421ms
10:	learn: 39.4682100	total: 51ms	remaining: 412ms
11:	learn: 39.0305595	total: 55.1ms	remaining: 404ms
12:	learn: 38.4200417	total: 59.4ms	remaining: 398ms
13:	learn: 37.8425194	total: 64.5ms	remaining: 396ms
14:	learn: 37.4203127	total: 68.8ms	remaining: 390ms
15:	learn: 36.9917688	total: 72.8ms	remaining: 382ms
16:	learn: 36.5544138	total: 77.4ms	remaining: 378ms
17:	learn: 36.0727019	total: 82.2ms	remaining: 375ms
18:	learn: 35.4835715	total: 86.7ms	remaining: 369ms
19:	learn: 34.9865654	total: 91.4ms	remaining: 366ms
20:	learn: 34.6063373	total: 95.9ms	remaining: 361ms
21:	learn: 34.0997289	total: 101ms	remaining: 357ms
22:	learn: 33.7313171	total: 105ms	remaining: 352ms
23:	learn: 33.3582000	total: 110ms	remaining: 347ms
24:	learn: 32.9432456	total: 115ms	remaining: 344ms
25:	learn: 32.5220888	total: 123ms	remaining: 349ms
26:	learn: 32.2172292	total: 131ms	remaining: 354ms
27:	learn: 31.8972904	total: 139ms	remaining: 357ms
28:	learn: 31.6405350	total: 146ms	remaining: 357ms
29:	learn: 31.4167702	total: 151ms	remaining: 353ms
30:	learn: 30.8541961	total: 153ms	remaining: 341ms
31:	learn: 30.5572111	total: 158ms	remaining: 336ms
32:	learn: 30.1700399	total: 163ms	remaining: 332ms
33:	learn: 29.8537271	total: 168ms	remaining: 327ms
34:	learn: 29.6192540	total: 174ms	remaining: 323ms
35:	learn: 29.3276362	total: 179ms	remaining: 318ms
36:	learn: 28.9985179	total: 185ms	remaining: 314ms
37:	learn: 28.7046880	total: 190ms	remaining: 310ms
38:	learn: 28.4412677	total: 195ms	remaining: 306ms
39:	learn: 28.1277292	total: 200ms	remaining: 301ms
40:	learn: 27.9000750	total: 205ms	remaining: 295ms
41:	learn: 27.5433162	total: 211ms	remaining: 291ms
42:	learn: 27.2493285	total: 216ms	remaining: 286ms
43:	learn: 26.9576632	total: 218ms	remaining: 277ms
44:	learn: 26.6177110	total: 222ms	remaining: 271ms
45:	learn: 26.2812456	total: 226ms	remaining: 265ms
46:	learn: 26.0803859	total: 230ms	remaining: 260ms
47:	learn: 25.9543581	total: 234ms	remaining: 254ms
48:	learn: 25.7951582	total: 239ms	remaining: 249ms
49:	learn: 25.6548184	total: 244ms	remaining: 244ms
50:	learn: 25.4010843	total: 249ms	remaining: 239ms
51:	learn: 24.9773937	total: 253ms	remaining: 234ms
52:	learn: 24.8026156	total: 258ms	remaining: 229ms
53:	learn: 24.5568053	total: 263ms	remaining: 224ms
54:	learn: 24.2281839	total: 268ms	remaining: 219ms
55:	learn: 23.9202795	total: 272ms	remaining: 214ms
56:	learn: 23.7625591	total: 277ms	remaining: 209ms
57:	learn: 23.5429721	total: 281ms	remaining: 204ms
58:	learn: 23.3175893	total: 286ms	remaining: 199ms
59:	learn: 23.2035130	total: 290ms	remaining: 193ms
60:	learn: 23.0232450	total: 295ms	remaining: 189ms
61:	learn: 22.8384958	total: 299ms	remaining: 184ms
62:	learn: 22.6499902	total: 304ms	remaining: 179ms
63:	learn: 22.4577426	total: 308ms	remaining: 173ms
64:	learn: 22.3333158	total: 316ms	remaining: 170ms
65:	learn: 22.2064131	total: 324ms	remaining: 167ms
66:	learn: 22.1434971	total: 331ms	remaining: 163ms
67:	learn: 21.9596519	total: 337ms	remaining: 159ms
68:	learn: 21.8475576	total: 345ms	remaining: 155ms
69:	learn: 21.6954745	total: 351ms	remaining: 150ms
70:	learn: 21.5635976	total: 356ms	remaining: 145ms
71:	learn: 21.4588506	total: 361ms	remaining: 140ms
72:	learn: 21.3527268	total: 366ms	remaining: 135ms
73:	learn: 21.2661288	total: 371ms	remaining: 131ms
74:	learn: 21.1817333	total: 376ms	remaining: 125ms
75:	learn: 21.0527553	total: 382ms	remaining: 121ms
76:	learn: 20.9229021	total: 387ms	remaining: 116ms
77:	learn: 20.7563946	total: 392ms	remaining: 110ms
78:	learn: 20.6569831	total: 396ms	remaining: 105ms
79:	learn: 20.4982663	total: 401ms	remaining: 100ms
80:	learn: 20.3185460	total: 406ms	remaining: 95.2ms
81:	learn: 20.2096241	total: 411ms	remaining: 90.3ms
82:	learn: 20.1274891	total: 416ms	remaining: 85.2ms
83:	learn: 20.0740139	total: 421ms	remaining: 80.3ms
84:	learn: 19.9630699	total: 425ms	remaining: 75.1ms
85:	learn: 19.8753899	total: 430ms	remaining: 70ms
86:	learn: 19.6563612	total: 434ms	remaining: 64.8ms
87:	learn: 19.4680232	total: 438ms	remaining: 59.7ms
88:	learn: 19.3503431	total: 442ms	remaining: 54.6ms
89:	learn: 19.2221379	total: 446ms	remaining: 49.5ms
90:	learn: 19.0732542	total: 450ms	remaining: 44.5ms
91:	learn: 18.9825190	total: 454ms	remaining: 39.5ms
92:	learn: 18.8839009	total: 458ms	remaining: 34.5ms
93:	learn: 18.8012219	total: 462ms	remaining: 29.5ms
94:	learn: 18.7172713	total: 466ms	remaining: 24.5ms
95:	learn: 18.6201170	total: 470ms	remaining: 19.6ms
96:	learn: 18.5318611	total: 475ms	remaining: 14.7ms
97:	learn: 18.3833356	total: 479ms	remaining: 9.78ms
98:	learn: 18.3289700	total: 484ms	remaining: 4.89ms
99:	learn: 18.2227333	total: 489ms	remaining: 0us
0:	learn: 46.3764524	total: 5.44ms	remaining: 538ms
1:	learn: 45.5561269	total: 10.3ms	remaining: 504ms
2:	learn: 44.8811245	total: 15.5ms	remaining: 501ms
3:	learn: 44.0788617	total: 20.5ms	remaining: 491ms
4:	learn: 43.3619790	total: 25.7ms	remaining: 489ms
5:	learn: 42.6912112	total: 31.1ms	remaining: 487ms
6:	learn: 42.2292118	total: 36.3ms	remaining: 482ms
7:	learn: 41.7725191	total: 41.4ms	remaining: 476ms
8:	learn: 41.1676614	total: 46.3ms	remaining: 469ms
9:	learn: 40.5771076	total: 51.2ms	remaining: 461ms
10:	learn: 39.8343757	total: 56.1ms	remaining: 454ms
11:	learn: 39.3761142	total: 61.4ms	remaining: 450ms
12:	learn: 38.5254692	total: 65.7ms	remaining: 440ms
13:	learn: 37.9629555	total: 70ms	remaining: 430ms
14:	learn: 37.4418438	total: 73.8ms	remaining: 418ms
15:	learn: 37.0507283	total: 77.8ms	remaining: 409ms
16:	learn: 36.6264217	total: 81.8ms	remaining: 399ms
17:	learn: 36.1114940	total: 85.9ms	remaining: 392ms
18:	learn: 35.7193862	total: 89.8ms	remaining: 383ms
19:	learn: 35.3301177	total: 93.7ms	remaining: 375ms
20:	learn: 35.0598280	total: 97.6ms	remaining: 367ms
21:	learn: 34.5469736	total: 101ms	remaining: 359ms
22:	learn: 34.2064215	total: 105ms	remaining: 353ms
23:	learn: 33.7280710	total: 109ms	remaining: 346ms
24:	learn: 33.3282940	total: 113ms	remaining: 340ms
25:	learn: 32.8478961	total: 118ms	remaining: 336ms
26:	learn: 32.5722164	total: 122ms	remaining: 330ms
27:	learn: 32.2457019	total: 126ms	remaining: 323ms
28:	learn: 31.9230495	total: 130ms	remaining: 319ms
29:	learn: 31.4311611	total: 135ms	remaining: 315ms
30:	learn: 30.9179052	total: 139ms	remaining: 310ms
31:	learn: 30.6201141	total: 144ms	remaining: 306ms
32:	learn: 30.3421106	total: 148ms	remaining: 301ms
33:	learn: 29.9885373	total: 153ms	remaining: 297ms
34:	learn: 29.7462780	total: 158ms	remaining: 293ms
35:	learn: 29.3607153	total: 162ms	remaining: 288ms
36:	learn: 29.1793078	total: 167ms	remaining: 284ms
37:	learn: 28.9276538	total: 175ms	remaining: 285ms
38:	learn: 28.6903934	total: 182ms	remaining: 285ms
39:	learn: 28.2095033	total: 190ms	remaining: 286ms
40:	learn: 27.7990608	total: 198ms	remaining: 284ms
41:	learn: 27.5406632	total: 203ms	remaining: 280ms
42:	learn: 27.2575376	total: 209ms	remaining: 277ms
43:	learn: 26.9741707	total: 214ms	remaining: 273ms
44:	learn: 26.6606899	total: 220ms	remaining: 269ms
45:	learn: 26.4015833	total: 226ms	remaining: 265ms
46:	learn: 26.1828993	total: 231ms	remaining: 260ms
47:	learn: 26.0233709	total: 234ms	remaining: 254ms
48:	learn: 25.9300399	total: 239ms	remaining: 249ms
49:	learn: 25.5861489	total: 244ms	remaining: 244ms
50:	learn: 25.4322012	total: 250ms	remaining: 240ms
51:	learn: 25.1595644	total: 255ms	remaining: 235ms
52:	learn: 24.9955303	total: 260ms	remaining: 230ms
53:	learn: 24.7273966	total: 265ms	remaining: 226ms
54:	learn: 24.5747978	total: 271ms	remaining: 222ms
55:	learn: 24.3807977	total: 275ms	remaining: 216ms
56:	learn: 24.1689569	total: 280ms	remaining: 211ms
57:	learn: 23.9898221	total: 283ms	remaining: 205ms
58:	learn: 23.7566414	total: 287ms	remaining: 200ms
59:	learn: 23.6641165	total: 291ms	remaining: 194ms
60:	learn: 23.5658066	total: 295ms	remaining: 189ms
61:	learn: 23.4338851	total: 299ms	remaining: 183ms
62:	learn: 23.2408837	total: 303ms	remaining: 178ms
63:	learn: 23.0642038	total: 307ms	remaining: 173ms
64:	learn: 22.9032045	total: 311ms	remaining: 167ms
65:	learn: 22.7736138	total: 315ms	remaining: 162ms
66:	learn: 22.6836443	total: 319ms	remaining: 157ms
67:	learn: 22.5983654	total: 323ms	remaining: 152ms
68:	learn: 22.4419813	total: 328ms	remaining: 147ms
69:	learn: 22.2863339	total: 332ms	remaining: 142ms
70:	learn: 22.1792943	total: 337ms	remaining: 138ms
71:	learn: 22.1130574	total: 341ms	remaining: 133ms
72:	learn: 21.9858161	total: 345ms	remaining: 128ms
73:	learn: 21.8577784	total: 350ms	remaining: 123ms
74:	learn: 21.7845222	total: 354ms	remaining: 118ms
75:	learn: 21.6831390	total: 358ms	remaining: 113ms
76:	learn: 21.6292521	total: 363ms	remaining: 108ms
77:	learn: 21.5789330	total: 371ms	remaining: 105ms
78:	learn: 21.5420942	total: 378ms	remaining: 100ms
79:	learn: 21.4280939	total: 386ms	remaining: 96.6ms
80:	learn: 21.3641165	total: 393ms	remaining: 92.2ms
81:	learn: 21.2734814	total: 399ms	remaining: 87.5ms
82:	learn: 21.2220323	total: 404ms	remaining: 82.7ms
83:	learn: 21.0625792	total: 409ms	remaining: 78ms
84:	learn: 20.9488320	total: 414ms	remaining: 73.1ms
85:	learn: 20.8504255	total: 419ms	remaining: 68.3ms
86:	learn: 20.7848510	total: 425ms	remaining: 63.5ms
87:	learn: 20.7247442	total: 430ms	remaining: 58.6ms
88:	learn: 20.5698590	total: 435ms	remaining: 53.8ms
89:	learn: 20.4067620	total: 440ms	remaining: 48.9ms
90:	learn: 20.3062482	total: 446ms	remaining: 44.1ms
91:	learn: 20.2029696	total: 451ms	remaining: 39.2ms
92:	learn: 20.1384849	total: 455ms	remaining: 34.3ms
93:	learn: 20.0260709	total: 461ms	remaining: 29.4ms
94:	learn: 19.9122100	total: 466ms	remaining: 24.5ms
95:	learn: 19.8648487	total: 471ms	remaining: 19.6ms
96:	learn: 19.8207072	total: 476ms	remaining: 14.7ms
97:	learn: 19.7261189	total: 480ms	remaining: 9.79ms
98:	learn: 19.7042438	total: 484ms	remaining: 4.89ms
99:	learn: 19.6546645	total: 488ms	remaining: 0us
0:	learn: 47.0239288	total: 4.96ms	remaining: 491ms
1:	learn: 46.2253829	total: 10.2ms	remaining: 497ms
2:	learn: 45.5580301	total: 15.4ms	remaining: 499ms
3:	learn: 44.7273237	total: 20.6ms	remaining: 495ms
4:	learn: 43.8867421	total: 25.6ms	remaining: 486ms
5:	learn: 43.3615911	total: 30.5ms	remaining: 477ms
6:	learn: 42.8548390	total: 39.3ms	remaining: 522ms
7:	learn: 42.1606758	total: 47.1ms	remaining: 542ms
8:	learn: 41.6625870	total: 56.6ms	remaining: 572ms
9:	learn: 40.9497092	total: 64.4ms	remaining: 580ms
10:	learn: 40.1886318	total: 70.4ms	remaining: 569ms
11:	learn: 39.7456423	total: 75.8ms	remaining: 556ms
12:	learn: 39.1171373	total: 81.2ms	remaining: 544ms
13:	learn: 38.5451069	total: 86.5ms	remaining: 531ms
14:	learn: 38.0155834	total: 92ms	remaining: 521ms
15:	learn: 37.5631354	total: 97.7ms	remaining: 513ms
16:	learn: 37.1030023	total: 103ms	remaining: 505ms
17:	learn: 36.4563029	total: 109ms	remaining: 495ms
18:	learn: 36.0160976	total: 114ms	remaining: 486ms
19:	learn: 35.5079827	total: 120ms	remaining: 478ms
20:	learn: 35.2111885	total: 124ms	remaining: 467ms
21:	learn: 34.9397465	total: 129ms	remaining: 459ms
22:	learn: 34.5270048	total: 135ms	remaining: 452ms
23:	learn: 34.0169260	total: 140ms	remaining: 445ms
24:	learn: 33.7454892	total: 145ms	remaining: 436ms
25:	learn: 33.2648157	total: 150ms	remaining: 427ms
26:	learn: 32.8899427	total: 155ms	remaining: 418ms
27:	learn: 32.6185050	total: 159ms	remaining: 409ms
28:	learn: 32.3528531	total: 164ms	remaining: 401ms
29:	learn: 32.0859923	total: 168ms	remaining: 393ms
30:	learn: 31.6511144	total: 172ms	remaining: 384ms
31:	learn: 31.2571765	total: 177ms	remaining: 376ms
32:	learn: 30.9770049	total: 181ms	remaining: 367ms
33:	learn: 30.6084872	total: 185ms	remaining: 358ms
34:	learn: 30.3448632	total: 188ms	remaining: 350ms
35:	learn: 30.0360942	total: 193ms	remaining: 343ms
36:	learn: 29.6648968	total: 197ms	remaining: 335ms
37:	learn: 29.3165114	total: 201ms	remaining: 328ms
38:	learn: 29.0829198	total: 204ms	remaining: 320ms
39:	learn: 28.7752064	total: 209ms	remaining: 313ms
40:	learn: 28.3622191	total: 213ms	remaining: 306ms
41:	learn: 28.1346631	total: 217ms	remaining: 299ms
42:	learn: 27.9585719	total: 221ms	remaining: 292ms
43:	learn: 27.6565566	total: 226ms	remaining: 287ms
44:	learn: 27.3616172	total: 230ms	remaining: 281ms
45:	learn: 27.0658637	total: 235ms	remaining: 276ms
46:	learn: 26.8660382	total: 239ms	remaining: 270ms
47:	learn: 26.6536078	total: 244ms	remaining: 264ms
48:	learn: 26.3524440	total: 248ms	remaining: 258ms
49:	learn: 26.1595277	total: 253ms	remaining: 253ms
50:	learn: 25.9273523	total: 257ms	remaining: 247ms
51:	learn: 25.7195580	total: 264ms	remaining: 244ms
52:	learn: 25.5730225	total: 271ms	remaining: 241ms
53:	learn: 25.3455276	total: 278ms	remaining: 237ms
54:	learn: 25.2289675	total: 285ms	remaining: 233ms
55:	learn: 25.0133024	total: 293ms	remaining: 230ms
56:	learn: 24.8406714	total: 298ms	remaining: 224ms
57:	learn: 24.6367857	total: 303ms	remaining: 219ms
58:	learn: 24.5338177	total: 308ms	remaining: 214ms
59:	learn: 24.3799964	total: 313ms	remaining: 209ms
60:	learn: 24.1447492	total: 319ms	remaining: 204ms
61:	learn: 23.9880495	total: 324ms	remaining: 199ms
62:	learn: 23.7140630	total: 330ms	remaining: 194ms
63:	learn: 23.5003791	total: 335ms	remaining: 188ms
64:	learn: 23.3207645	total: 340ms	remaining: 183ms
65:	learn: 23.1958356	total: 346ms	remaining: 178ms
66:	learn: 23.0471302	total: 350ms	remaining: 172ms
67:	learn: 22.8977183	total: 355ms	remaining: 167ms
68:	learn: 22.7187400	total: 361ms	remaining: 162ms
69:	learn: 22.6523405	total: 365ms	remaining: 157ms
70:	learn: 22.4767453	total: 369ms	remaining: 151ms
71:	learn: 22.3243677	total: 373ms	remaining: 145ms
72:	learn: 22.2133096	total: 377ms	remaining: 140ms
73:	learn: 22.1151713	total: 381ms	remaining: 134ms
74:	learn: 22.0296666	total: 385ms	remaining: 128ms
75:	learn: 21.9195980	total: 389ms	remaining: 123ms
76:	learn: 21.8401730	total: 393ms	remaining: 117ms
77:	learn: 21.8079797	total: 397ms	remaining: 112ms
78:	learn: 21.7274109	total: 401ms	remaining: 107ms
79:	learn: 21.6663032	total: 405ms	remaining: 101ms
80:	learn: 21.5633117	total: 409ms	remaining: 95.9ms
81:	learn: 21.4542467	total: 412ms	remaining: 90.5ms
82:	learn: 21.3177957	total: 416ms	remaining: 85.3ms
83:	learn: 21.1289167	total: 420ms	remaining: 80.1ms
84:	learn: 21.0297368	total: 424ms	remaining: 74.9ms
85:	learn: 20.9089564	total: 428ms	remaining: 69.8ms
86:	learn: 20.7653988	total: 433ms	remaining: 64.7ms
87:	learn: 20.6521894	total: 438ms	remaining: 59.7ms
88:	learn: 20.5193021	total: 443ms	remaining: 54.7ms
89:	learn: 20.4361620	total: 447ms	remaining: 49.7ms
90:	learn: 20.3546710	total: 452ms	remaining: 44.7ms
91:	learn: 20.2513296	total: 456ms	remaining: 39.6ms
92:	learn: 20.1605550	total: 460ms	remaining: 34.6ms
93:	learn: 20.0515942	total: 465ms	remaining: 29.7ms
94:	learn: 19.9800764	total: 469ms	remaining: 24.7ms
95:	learn: 19.8996532	total: 478ms	remaining: 19.9ms
96:	learn: 19.8450910	total: 485ms	remaining: 15ms
97:	learn: 19.7887346	total: 493ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 499ms	remaining: 5.04ms
99:	learn: 19.6328825	total: 505ms	remaining: 0us
0:	learn: 27.5585353	total: 5.49ms	remaining: 544ms
1:	learn: 27.1656995	total: 10.4ms	remaining: 509ms
2:	learn: 26.8590175	total: 15.4ms	remaining: 499ms
3:	learn: 26.5818406	total: 20.6ms	remaining: 494ms
4:	learn: 26.1148663	total: 24.6ms	remaining: 468ms
5:	learn: 25.7690484	total: 28.6ms	remaining: 448ms
6:	learn: 25.3489206	total: 32.6ms	remaining: 433ms
7:	learn: 24.9542406	total: 36.6ms	remaining: 421ms
8:	learn: 24.6777517	total: 40.6ms	remaining: 411ms
9:	learn: 24.3242344	total: 45.1ms	remaining: 406ms
10:	learn: 24.0383073	total: 48.9ms	remaining: 396ms
11:	learn: 23.7383420	total: 52.8ms	remaining: 387ms
12:	learn: 23.3461670	total: 56.6ms	remaining: 379ms
13:	learn: 23.0928636	total: 60.9ms	remaining: 374ms
14:	learn: 22.8770414	total: 64.9ms	remaining: 368ms
15:	learn: 22.6323214	total: 68.7ms	remaining: 361ms
16:	learn: 22.3597072	total: 73ms	remaining: 356ms
17:	learn: 22.1079813	total: 77.5ms	remaining: 353ms
18:	learn: 21.8421199	total: 81.8ms	remaining: 349ms
19:	learn: 21.6576508	total: 85.7ms	remaining: 343ms
20:	learn: 21.4301268	total: 89.7ms	remaining: 337ms
21:	learn: 21.2287388	total: 94.2ms	remaining: 334ms
22:	learn: 21.0553872	total: 98.8ms	remaining: 331ms
23:	learn: 20.8977091	total: 103ms	remaining: 327ms
24:	learn: 20.6619051	total: 108ms	remaining: 324ms
25:	learn: 20.5040955	total: 112ms	remaining: 320ms
26:	learn: 20.3181195	total: 117ms	remaining: 316ms
27:	learn: 20.0869436	total: 122ms	remaining: 313ms
28:	learn: 19.9375985	total: 126ms	remaining: 309ms
29:	learn: 19.8247516	total: 133ms	remaining: 311ms
30:	learn: 19.6261697	total: 141ms	remaining: 314ms
31:	learn: 19.4547236	total: 151ms	remaining: 321ms
32:	learn: 19.3157092	total: 159ms	remaining: 324ms
33:	learn: 19.1561419	total: 165ms	remaining: 320ms
34:	learn: 19.0453620	total: 170ms	remaining: 316ms
35:	learn: 18.8738574	total: 175ms	remaining: 312ms
36:	learn: 18.7072907	total: 181ms	remaining: 308ms
37:	learn: 18.5877943	total: 186ms	remaining: 304ms
38:	learn: 18.4436380	total: 191ms	remaining: 299ms
39:	learn: 18.3463356	total: 197ms	remaining: 295ms
40:	learn: 18.2008059	total: 202ms	remaining: 290ms
41:	learn: 18.0582079	total: 207ms	remaining: 286ms
42:	learn: 17.8891982	total: 212ms	remaining: 281ms
43:	learn: 17.7332246	total: 217ms	remaining: 277ms
44:	learn: 17.6206421	total: 222ms	remaining: 272ms
45:	learn: 17.4982800	total: 228ms	remaining: 267ms
46:	learn: 17.3970150	total: 233ms	remaining: 263ms
47:	learn: 17.3058203	total: 238ms	remaining: 258ms
48:	learn: 17.1789256	total: 242ms	remaining: 252ms
49:	learn: 17.0916229	total: 246ms	remaining: 246ms
50:	learn: 16.9859820	total: 250ms	remaining: 240ms
51:	learn: 16.8995582	total: 254ms	remaining: 235ms
52:	learn: 16.8137014	total: 258ms	remaining: 229ms
53:	learn: 16.7021451	total: 262ms	remaining: 223ms
54:	learn: 16.5895582	total: 266ms	remaining: 218ms
55:	learn: 16.5015639	total: 271ms	remaining: 213ms
56:	learn: 16.4356637	total: 275ms	remaining: 207ms
57:	learn: 16.3514525	total: 279ms	remaining: 202ms
58:	learn: 16.2401369	total: 283ms	remaining: 197ms
59:	learn: 16.1293223	total: 287ms	remaining: 192ms
60:	learn: 16.0271167	total: 292ms	remaining: 187ms
61:	learn: 15.9126257	total: 297ms	remaining: 182ms
62:	learn: 15.8391096	total: 301ms	remaining: 177ms
63:	learn: 15.7441773	total: 306ms	remaining: 172ms
64:	learn: 15.6885195	total: 311ms	remaining: 167ms
65:	learn: 15.6052039	total: 315ms	remaining: 162ms
66:	learn: 15.5074202	total: 320ms	remaining: 157ms
67:	learn: 15.4054338	total: 325ms	remaining: 153ms
68:	learn: 15.2885714	total: 332ms	remaining: 149ms
69:	learn: 15.2157472	total: 340ms	remaining: 146ms
70:	learn: 15.1031554	total: 346ms	remaining: 141ms
71:	learn: 15.0237470	total: 353ms	remaining: 137ms
72:	learn: 14.9756825	total: 360ms	remaining: 133ms
73:	learn: 14.8840596	total: 366ms	remaining: 128ms
74:	learn: 14.8077061	total: 371ms	remaining: 124ms
75:	learn: 14.7444437	total: 376ms	remaining: 119ms
76:	learn: 14.6751720	total: 382ms	remaining: 114ms
77:	learn: 14.5830333	total: 387ms	remaining: 109ms
78:	learn: 14.5241206	total: 392ms	remaining: 104ms
79:	learn: 14.4892731	total: 397ms	remaining: 99.2ms
80:	learn: 14.4256605	total: 402ms	remaining: 94.3ms
81:	learn: 14.3666860	total: 408ms	remaining: 89.5ms
82:	learn: 14.2938372	total: 413ms	remaining: 84.6ms
83:	learn: 14.2161532	total: 418ms	remaining: 79.5ms
84:	learn: 14.1582910	total: 423ms	remaining: 74.6ms
85:	learn: 14.1029153	total: 428ms	remaining: 69.7ms
86:	learn: 14.0475835	total: 433ms	remaining: 64.8ms
87:	learn: 13.9892661	total: 437ms	remaining: 59.6ms
88:	learn: 13.9481628	total: 442ms	remaining: 54.7ms
89:	learn: 13.8483991	total: 446ms	remaining: 49.6ms
90:	learn: 13.7775614	total: 451ms	remaining: 44.6ms
91:	learn: 13.7304585	total: 455ms	remaining: 39.5ms
92:	learn: 13.6783381	total: 459ms	remaining: 34.5ms
93:	learn: 13.6356964	total: 464ms	remaining: 29.6ms
94:	learn: 13.5924371	total: 468ms	remaining: 24.6ms
95:	learn: 13.5400746	total: 472ms	remaining: 19.7ms
96:	learn: 13.4897333	total: 476ms	remaining: 14.7ms
97:	learn: 13.4470321	total: 481ms	remaining: 9.81ms
98:	learn: 13.3856082	total: 485ms	remaining: 4.9ms
99:	learn: 13.3082371	total: 490ms	remaining: 0us
0:	learn: 43.0395283	total: 8.7ms	remaining: 862ms
1:	learn: 42.1130223	total: 15.8ms	remaining: 776ms
2:	learn: 41.1753409	total: 24.4ms	remaining: 789ms
3:	learn: 40.3637444	total: 32.3ms	remaining: 775ms
4:	learn: 39.6508088	total: 46.4ms	remaining: 883ms
5:	learn: 38.7217934	total: 52.2ms	remaining: 818ms
6:	learn: 37.8538055	total: 57.4ms	remaining: 763ms
7:	learn: 36.9793574	total: 62.9ms	remaining: 724ms
8:	learn: 36.3076984	total: 68.2ms	remaining: 690ms
9:	learn: 35.6673160	total: 73.4ms	remaining: 661ms
10:	learn: 34.8889800	total: 78.7ms	remaining: 637ms
11:	learn: 34.1675517	total: 83.5ms	remaining: 613ms
12:	learn: 33.6779564	total: 88.3ms	remaining: 591ms
13:	learn: 33.0710039	total: 93.5ms	remaining: 574ms
14:	learn: 32.4966674	total: 99.2ms	remaining: 562ms
15:	learn: 31.9492856	total: 104ms	remaining: 547ms
16:	learn: 31.5108129	total: 109ms	remaining: 532ms
17:	learn: 30.9804023	total: 113ms	remaining: 516ms
18:	learn: 30.4169089	total: 118ms	remaining: 502ms
19:	learn: 29.8930375	total: 122ms	remaining: 489ms
20:	learn: 29.3974421	total: 127ms	remaining: 477ms
21:	learn: 28.8792307	total: 131ms	remaining: 463ms
22:	learn: 28.3894474	total: 135ms	remaining: 451ms
23:	learn: 27.9921276	total: 139ms	remaining: 441ms
24:	learn: 27.6158887	total: 143ms	remaining: 429ms
25:	learn: 27.2866950	total: 147ms	remaining: 419ms
26:	learn: 26.8770708	total: 151ms	remaining: 409ms
27:	learn: 26.6233005	total: 156ms	remaining: 400ms
28:	learn: 26.2921934	total: 160ms	remaining: 391ms
29:	learn: 25.9156920	total: 163ms	remaining: 381ms
30:	learn: 25.5311106	total: 165ms	remaining: 368ms
31:	learn: 25.2178997	total: 170ms	remaining: 360ms
32:	learn: 24.8572196	total: 175ms	remaining: 354ms
33:	learn: 24.5849710	total: 179ms	remaining: 347ms
34:	learn: 24.2209190	total: 183ms	remaining: 340ms
35:	learn: 23.8708250	total: 188ms	remaining: 334ms
36:	learn: 23.5325279	total: 192ms	remaining: 327ms
37:	learn: 23.2116148	total: 197ms	remaining: 321ms
38:	learn: 22.9696787	total: 201ms	remaining: 315ms
39:	learn: 22.7936783	total: 206ms	remaining: 309ms
40:	learn: 22.6228847	total: 216ms	remaining: 311ms
41:	learn: 22.3691527	total: 223ms	remaining: 308ms
42:	learn: 22.1002173	total: 232ms	remaining: 307ms
43:	learn: 21.9157268	total: 239ms	remaining: 304ms
44:	learn: 21.7229102	total: 244ms	remaining: 299ms
45:	learn: 21.4642005	total: 250ms	remaining: 293ms
46:	learn: 21.3029442	total: 254ms	remaining: 287ms
47:	learn: 21.1469792	total: 259ms	remaining: 281ms
48:	learn: 20.9458235	total: 265ms	remaining: 275ms
49:	learn: 20.7335242	total: 270ms	remaining: 270ms
50:	learn: 20.5440269	total: 275ms	remaining: 264ms
51:	learn: 20.3661449	total: 280ms	remaining: 259ms
52:	learn: 20.2158134	total: 285ms	remaining: 253ms
53:	learn: 19.9934873	total: 290ms	remaining: 247ms
54:	learn: 19.7879739	total: 296ms	remaining: 242ms
55:	learn: 19.6630460	total: 300ms	remaining: 236ms
56:	learn: 19.5152729	total: 306ms	remaining: 231ms
57:	learn: 19.3581128	total: 311ms	remaining: 225ms
58:	learn: 19.2209303	total: 316ms	remaining: 219ms
59:	learn: 19.0965248	total: 321ms	remaining: 214ms
60:	learn: 19.0035954	total: 325ms	remaining: 208ms
61:	learn: 18.8554149	total: 328ms	remaining: 201ms
62:	learn: 18.7095427	total: 333ms	remaining: 195ms
63:	learn: 18.5751494	total: 337ms	remaining: 189ms
64:	learn: 18.4678251	total: 341ms	remaining: 184ms
65:	learn: 18.3500325	total: 345ms	remaining: 178ms
66:	learn: 18.2088983	total: 350ms	remaining: 172ms
67:	learn: 18.0737705	total: 354ms	remaining: 167ms
68:	learn: 17.9325058	total: 359ms	remaining: 161ms
69:	learn: 17.8003911	total: 363ms	remaining: 156ms
70:	learn: 17.7385366	total: 367ms	remaining: 150ms
71:	learn: 17.6106998	total: 371ms	remaining: 144ms
72:	learn: 17.4816270	total: 376ms	remaining: 139ms
73:	learn: 17.4025554	total: 380ms	remaining: 134ms
74:	learn: 17.2902108	total: 385ms	remaining: 128ms
75:	learn: 17.2158048	total: 390ms	remaining: 123ms
76:	learn: 17.1261053	total: 394ms	remaining: 118ms
77:	learn: 17.0308917	total: 399ms	remaining: 113ms
78:	learn: 16.9546705	total: 403ms	remaining: 107ms
79:	learn: 16.8319165	total: 408ms	remaining: 102ms
80:	learn: 16.7687017	total: 412ms	remaining: 96.6ms
81:	learn: 16.6972326	total: 420ms	remaining: 92.2ms
82:	learn: 16.6124580	total: 429ms	remaining: 87.9ms
83:	learn: 16.4999052	total: 439ms	remaining: 83.6ms
84:	learn: 16.4302484	total: 444ms	remaining: 78.4ms
85:	learn: 16.3201363	total: 450ms	remaining: 73.3ms
86:	learn: 16.2534314	total: 455ms	remaining: 68ms
87:	learn: 16.1720485	total: 460ms	remaining: 62.7ms
88:	learn: 16.0625751	total: 465ms	remaining: 57.5ms
89:	learn: 15.9135088	total: 470ms	remaining: 52.3ms
90:	learn: 15.8658863	total: 475ms	remaining: 47ms
91:	learn: 15.8066805	total: 481ms	remaining: 41.8ms
92:	learn: 15.7412103	total: 486ms	remaining: 36.6ms
93:	learn: 15.6542776	total: 491ms	remaining: 31.3ms
94:	learn: 15.5760334	total: 496ms	remaining: 26.1ms
95:	learn: 15.5434131	total: 501ms	remaining: 20.9ms
96:	learn: 15.4709561	total: 507ms	remaining: 15.7ms
97:	learn: 15.4449618	total: 512ms	remaining: 10.4ms
98:	learn: 15.3752761	total: 517ms	remaining: 5.22ms
99:	learn: 15.3106595	total: 523ms	remaining: 0us
0:	learn: 46.7142257	total: 4.21ms	remaining: 417ms
1:	learn: 45.7634153	total: 8.41ms	remaining: 412ms
2:	learn: 45.0054253	total: 13.1ms	remaining: 424ms
3:	learn: 44.2120432	total: 17.5ms	remaining: 421ms
4:	learn: 43.3960472	total: 21.9ms	remaining: 417ms
5:	learn: 42.8588120	total: 26.6ms	remaining: 417ms
6:	learn: 41.9533701	total: 31.1ms	remaining: 413ms
7:	learn: 41.2745030	total: 35.4ms	remaining: 407ms
8:	learn: 40.6797495	total: 40ms	remaining: 404ms
9:	learn: 39.9899571	total: 44.7ms	remaining: 402ms
10:	learn: 39.4682100	total: 52.1ms	remaining: 422ms
11:	learn: 39.0305595	total: 59.7ms	remaining: 437ms
12:	learn: 38.4200417	total: 69.9ms	remaining: 468ms
13:	learn: 37.8425194	total: 78.2ms	remaining: 480ms
14:	learn: 37.4203127	total: 83.8ms	remaining: 475ms
15:	learn: 36.9917688	total: 89.1ms	remaining: 468ms
16:	learn: 36.5544138	total: 94.5ms	remaining: 462ms
17:	learn: 36.0727019	total: 100ms	remaining: 455ms
18:	learn: 35.4835715	total: 105ms	remaining: 448ms
19:	learn: 34.9865654	total: 110ms	remaining: 441ms
20:	learn: 34.6063373	total: 115ms	remaining: 434ms
21:	learn: 34.0997289	total: 120ms	remaining: 427ms
22:	learn: 33.7313171	total: 125ms	remaining: 420ms
23:	learn: 33.3582000	total: 131ms	remaining: 414ms
24:	learn: 32.9432456	total: 136ms	remaining: 407ms
25:	learn: 32.5220888	total: 141ms	remaining: 400ms
26:	learn: 32.2172292	total: 146ms	remaining: 395ms
27:	learn: 31.8972904	total: 151ms	remaining: 389ms
28:	learn: 31.6405350	total: 156ms	remaining: 381ms
29:	learn: 31.4167702	total: 159ms	remaining: 372ms
30:	learn: 30.8541961	total: 161ms	remaining: 358ms
31:	learn: 30.5572111	total: 165ms	remaining: 350ms
32:	learn: 30.1700399	total: 169ms	remaining: 344ms
33:	learn: 29.8537271	total: 173ms	remaining: 336ms
34:	learn: 29.6192540	total: 178ms	remaining: 330ms
35:	learn: 29.3276362	total: 182ms	remaining: 323ms
36:	learn: 28.9985179	total: 186ms	remaining: 317ms
37:	learn: 28.7046880	total: 191ms	remaining: 311ms
38:	learn: 28.4412677	total: 195ms	remaining: 305ms
39:	learn: 28.1277292	total: 199ms	remaining: 299ms
40:	learn: 27.9000750	total: 203ms	remaining: 293ms
41:	learn: 27.5433162	total: 208ms	remaining: 287ms
42:	learn: 27.2493285	total: 212ms	remaining: 281ms
43:	learn: 26.9576632	total: 214ms	remaining: 272ms
44:	learn: 26.6177110	total: 218ms	remaining: 267ms
45:	learn: 26.2812456	total: 223ms	remaining: 261ms
46:	learn: 26.0803859	total: 227ms	remaining: 256ms
47:	learn: 25.9543581	total: 232ms	remaining: 251ms
48:	learn: 25.7951582	total: 236ms	remaining: 246ms
49:	learn: 25.6548184	total: 241ms	remaining: 241ms
50:	learn: 25.4010843	total: 246ms	remaining: 236ms
51:	learn: 24.9773937	total: 250ms	remaining: 231ms
52:	learn: 24.8026156	total: 255ms	remaining: 226ms
53:	learn: 24.5568053	total: 260ms	remaining: 221ms
54:	learn: 24.2281839	total: 269ms	remaining: 220ms
55:	learn: 23.9202795	total: 276ms	remaining: 217ms
56:	learn: 23.7625591	total: 285ms	remaining: 215ms
57:	learn: 23.5429721	total: 291ms	remaining: 211ms
58:	learn: 23.3175893	total: 297ms	remaining: 206ms
59:	learn: 23.2035130	total: 302ms	remaining: 201ms
60:	learn: 23.0232450	total: 307ms	remaining: 196ms
61:	learn: 22.8384958	total: 312ms	remaining: 191ms
62:	learn: 22.6499902	total: 318ms	remaining: 186ms
63:	learn: 22.4577426	total: 323ms	remaining: 182ms
64:	learn: 22.3333158	total: 328ms	remaining: 177ms
65:	learn: 22.2064131	total: 334ms	remaining: 172ms
66:	learn: 22.1434971	total: 339ms	remaining: 167ms
67:	learn: 21.9596519	total: 344ms	remaining: 162ms
68:	learn: 21.8475576	total: 349ms	remaining: 157ms
69:	learn: 21.6954745	total: 354ms	remaining: 152ms
70:	learn: 21.5635976	total: 360ms	remaining: 147ms
71:	learn: 21.4588506	total: 365ms	remaining: 142ms
72:	learn: 21.3527268	total: 371ms	remaining: 137ms
73:	learn: 21.2661288	total: 375ms	remaining: 132ms
74:	learn: 21.1817333	total: 380ms	remaining: 127ms
75:	learn: 21.0527553	total: 384ms	remaining: 121ms
76:	learn: 20.9229021	total: 389ms	remaining: 116ms
77:	learn: 20.7563946	total: 393ms	remaining: 111ms
78:	learn: 20.6569831	total: 397ms	remaining: 106ms
79:	learn: 20.4982663	total: 402ms	remaining: 100ms
80:	learn: 20.3185460	total: 406ms	remaining: 95.3ms
81:	learn: 20.2096241	total: 411ms	remaining: 90.1ms
82:	learn: 20.1274891	total: 414ms	remaining: 84.9ms
83:	learn: 20.0740139	total: 419ms	remaining: 79.7ms
84:	learn: 19.9630699	total: 423ms	remaining: 74.7ms
85:	learn: 19.8753899	total: 428ms	remaining: 69.7ms
86:	learn: 19.6563612	total: 433ms	remaining: 64.7ms
87:	learn: 19.4680232	total: 437ms	remaining: 59.6ms
88:	learn: 19.3503431	total: 442ms	remaining: 54.6ms
89:	learn: 19.2221379	total: 447ms	remaining: 49.6ms
90:	learn: 19.0732542	total: 452ms	remaining: 44.7ms
91:	learn: 18.9825190	total: 456ms	remaining: 39.7ms
92:	learn: 18.8839009	total: 467ms	remaining: 35.1ms
93:	learn: 18.8012219	total: 475ms	remaining: 30.3ms
94:	learn: 18.7172713	total: 484ms	remaining: 25.5ms
95:	learn: 18.6201170	total: 492ms	remaining: 20.5ms
96:	learn: 18.5318611	total: 497ms	remaining: 15.4ms
97:	learn: 18.3833356	total: 503ms	remaining: 10.3ms
98:	learn: 18.3289700	total: 508ms	remaining: 5.13ms
99:	learn: 18.2227333	total: 514ms	remaining: 0us
0:	learn: 46.3764524	total: 5.83ms	remaining: 577ms
1:	learn: 45.5561269	total: 10.3ms	remaining: 503ms
2:	learn: 44.8811245	total: 14.2ms	remaining: 460ms
3:	learn: 44.0788617	total: 18.1ms	remaining: 434ms
4:	learn: 43.3619790	total: 22.3ms	remaining: 424ms
5:	learn: 42.6912112	total: 26.4ms	remaining: 414ms
6:	learn: 42.2292118	total: 30.3ms	remaining: 402ms
7:	learn: 41.7725191	total: 34.5ms	remaining: 397ms
8:	learn: 41.1676614	total: 38.4ms	remaining: 389ms
9:	learn: 40.5771076	total: 42.2ms	remaining: 380ms
10:	learn: 39.8343757	total: 46.4ms	remaining: 375ms
11:	learn: 39.3761142	total: 50.5ms	remaining: 370ms
12:	learn: 38.5254692	total: 55.3ms	remaining: 370ms
13:	learn: 37.9629555	total: 59.9ms	remaining: 368ms
14:	learn: 37.4418438	total: 63.8ms	remaining: 361ms
15:	learn: 37.0507283	total: 67.7ms	remaining: 355ms
16:	learn: 36.6264217	total: 72.2ms	remaining: 353ms
17:	learn: 36.1114940	total: 76.7ms	remaining: 349ms
18:	learn: 35.7193862	total: 81.1ms	remaining: 346ms
19:	learn: 35.3301177	total: 85.3ms	remaining: 341ms
20:	learn: 35.0598280	total: 89.9ms	remaining: 338ms
21:	learn: 34.5469736	total: 94ms	remaining: 333ms
22:	learn: 34.2064215	total: 98.3ms	remaining: 329ms
23:	learn: 33.7280710	total: 103ms	remaining: 326ms
24:	learn: 33.3282940	total: 108ms	remaining: 323ms
25:	learn: 32.8478961	total: 116ms	remaining: 330ms
26:	learn: 32.5722164	total: 123ms	remaining: 334ms
27:	learn: 32.2457019	total: 132ms	remaining: 340ms
28:	learn: 31.9230495	total: 140ms	remaining: 342ms
29:	learn: 31.4311611	total: 145ms	remaining: 338ms
30:	learn: 30.9179052	total: 150ms	remaining: 333ms
31:	learn: 30.6201141	total: 155ms	remaining: 328ms
32:	learn: 30.3421106	total: 160ms	remaining: 325ms
33:	learn: 29.9885373	total: 165ms	remaining: 321ms
34:	learn: 29.7462780	total: 170ms	remaining: 316ms
35:	learn: 29.3607153	total: 176ms	remaining: 312ms
36:	learn: 29.1793078	total: 181ms	remaining: 308ms
37:	learn: 28.9276538	total: 186ms	remaining: 303ms
38:	learn: 28.6903934	total: 190ms	remaining: 298ms
39:	learn: 28.2095033	total: 196ms	remaining: 293ms
40:	learn: 27.7990608	total: 200ms	remaining: 288ms
41:	learn: 27.5406632	total: 205ms	remaining: 283ms
42:	learn: 27.2575376	total: 210ms	remaining: 279ms
43:	learn: 26.9741707	total: 215ms	remaining: 274ms
44:	learn: 26.6606899	total: 219ms	remaining: 268ms
45:	learn: 26.4015833	total: 223ms	remaining: 262ms
46:	learn: 26.1828993	total: 227ms	remaining: 256ms
47:	learn: 26.0233709	total: 230ms	remaining: 249ms
48:	learn: 25.9300399	total: 235ms	remaining: 244ms
49:	learn: 25.5861489	total: 239ms	remaining: 239ms
50:	learn: 25.4322012	total: 242ms	remaining: 233ms
51:	learn: 25.1595644	total: 247ms	remaining: 228ms
52:	learn: 24.9955303	total: 250ms	remaining: 222ms
53:	learn: 24.7273966	total: 255ms	remaining: 217ms
54:	learn: 24.5747978	total: 258ms	remaining: 211ms
55:	learn: 24.3807977	total: 262ms	remaining: 206ms
56:	learn: 24.1689569	total: 267ms	remaining: 201ms
57:	learn: 23.9898221	total: 271ms	remaining: 196ms
58:	learn: 23.7566414	total: 276ms	remaining: 192ms
59:	learn: 23.6641165	total: 281ms	remaining: 187ms
60:	learn: 23.5658066	total: 285ms	remaining: 182ms
61:	learn: 23.4338851	total: 289ms	remaining: 177ms
62:	learn: 23.2408837	total: 294ms	remaining: 173ms
63:	learn: 23.0642038	total: 299ms	remaining: 168ms
64:	learn: 22.9032045	total: 303ms	remaining: 163ms
65:	learn: 22.7736138	total: 307ms	remaining: 158ms
66:	learn: 22.6836443	total: 314ms	remaining: 155ms
67:	learn: 22.5983654	total: 322ms	remaining: 151ms
68:	learn: 22.4419813	total: 329ms	remaining: 148ms
69:	learn: 22.2863339	total: 335ms	remaining: 144ms
70:	learn: 22.1792943	total: 343ms	remaining: 140ms
71:	learn: 22.1130574	total: 348ms	remaining: 136ms
72:	learn: 21.9858161	total: 354ms	remaining: 131ms
73:	learn: 21.8577784	total: 359ms	remaining: 126ms
74:	learn: 21.7845222	total: 364ms	remaining: 121ms
75:	learn: 21.6831390	total: 369ms	remaining: 117ms
76:	learn: 21.6292521	total: 374ms	remaining: 112ms
77:	learn: 21.5789330	total: 380ms	remaining: 107ms
78:	learn: 21.5420942	total: 385ms	remaining: 102ms
79:	learn: 21.4280939	total: 390ms	remaining: 97.4ms
80:	learn: 21.3641165	total: 394ms	remaining: 92.5ms
81:	learn: 21.2734814	total: 399ms	remaining: 87.5ms
82:	learn: 21.2220323	total: 404ms	remaining: 82.8ms
83:	learn: 21.0625792	total: 410ms	remaining: 78ms
84:	learn: 20.9488320	total: 414ms	remaining: 73ms
85:	learn: 20.8504255	total: 418ms	remaining: 68ms
86:	learn: 20.7848510	total: 422ms	remaining: 63ms
87:	learn: 20.7247442	total: 426ms	remaining: 58.1ms
88:	learn: 20.5698590	total: 430ms	remaining: 53.1ms
89:	learn: 20.4067620	total: 434ms	remaining: 48.2ms
90:	learn: 20.3062482	total: 438ms	remaining: 43.3ms
91:	learn: 20.2029696	total: 442ms	remaining: 38.4ms
92:	learn: 20.1384849	total: 446ms	remaining: 33.6ms
93:	learn: 20.0260709	total: 450ms	remaining: 28.7ms
94:	learn: 19.9122100	total: 454ms	remaining: 23.9ms
95:	learn: 19.8648487	total: 458ms	remaining: 19.1ms
96:	learn: 19.8207072	total: 462ms	remaining: 14.3ms
97:	learn: 19.7261189	total: 466ms	remaining: 9.51ms
98:	learn: 19.7042438	total: 470ms	remaining: 4.75ms
99:	learn: 19.6546645	total: 475ms	remaining: 0us
0:	learn: 47.0239288	total: 8.34ms	remaining: 826ms
1:	learn: 46.2253829	total: 13.5ms	remaining: 662ms
2:	learn: 45.5580301	total: 19ms	remaining: 614ms
3:	learn: 44.7273237	total: 24.3ms	remaining: 583ms
4:	learn: 43.8867421	total: 29.5ms	remaining: 561ms
5:	learn: 43.3615911	total: 34.8ms	remaining: 546ms
6:	learn: 42.8548390	total: 40.1ms	remaining: 532ms
7:	learn: 42.1606758	total: 45.3ms	remaining: 521ms
8:	learn: 41.6625870	total: 50.2ms	remaining: 508ms
9:	learn: 40.9497092	total: 55.2ms	remaining: 497ms
10:	learn: 40.1886318	total: 60.1ms	remaining: 487ms
11:	learn: 39.7456423	total: 65.3ms	remaining: 479ms
12:	learn: 39.1171373	total: 69.7ms	remaining: 466ms
13:	learn: 38.5451069	total: 74.8ms	remaining: 460ms
14:	learn: 38.0155834	total: 80.5ms	remaining: 456ms
15:	learn: 37.5631354	total: 85.5ms	remaining: 449ms
16:	learn: 37.1030023	total: 89.9ms	remaining: 439ms
17:	learn: 36.4563029	total: 94.3ms	remaining: 430ms
18:	learn: 36.0160976	total: 98.6ms	remaining: 420ms
19:	learn: 35.5079827	total: 103ms	remaining: 412ms
20:	learn: 35.2111885	total: 108ms	remaining: 406ms
21:	learn: 34.9397465	total: 112ms	remaining: 398ms
22:	learn: 34.5270048	total: 116ms	remaining: 389ms
23:	learn: 34.0169260	total: 121ms	remaining: 383ms
24:	learn: 33.7454892	total: 125ms	remaining: 375ms
25:	learn: 33.2648157	total: 129ms	remaining: 368ms
26:	learn: 32.8899427	total: 134ms	remaining: 362ms
27:	learn: 32.6185050	total: 138ms	remaining: 354ms
28:	learn: 32.3528531	total: 142ms	remaining: 349ms
29:	learn: 32.0859923	total: 147ms	remaining: 343ms
30:	learn: 31.6511144	total: 152ms	remaining: 338ms
31:	learn: 31.2571765	total: 157ms	remaining: 333ms
32:	learn: 30.9770049	total: 161ms	remaining: 327ms
33:	learn: 30.6084872	total: 166ms	remaining: 322ms
34:	learn: 30.3448632	total: 170ms	remaining: 316ms
35:	learn: 30.0360942	total: 175ms	remaining: 312ms
36:	learn: 29.6648968	total: 180ms	remaining: 306ms
37:	learn: 29.3165114	total: 185ms	remaining: 301ms
38:	learn: 29.0829198	total: 193ms	remaining: 302ms
39:	learn: 28.7752064	total: 200ms	remaining: 300ms
40:	learn: 28.3622191	total: 208ms	remaining: 299ms
41:	learn: 28.1346631	total: 216ms	remaining: 298ms
42:	learn: 27.9585719	total: 221ms	remaining: 294ms
43:	learn: 27.6565566	total: 227ms	remaining: 288ms
44:	learn: 27.3616172	total: 232ms	remaining: 283ms
45:	learn: 27.0658637	total: 237ms	remaining: 278ms
46:	learn: 26.8660382	total: 242ms	remaining: 272ms
47:	learn: 26.6536078	total: 247ms	remaining: 268ms
48:	learn: 26.3524440	total: 252ms	remaining: 263ms
49:	learn: 26.1595277	total: 258ms	remaining: 258ms
50:	learn: 25.9273523	total: 262ms	remaining: 252ms
51:	learn: 25.7195580	total: 268ms	remaining: 247ms
52:	learn: 25.5730225	total: 274ms	remaining: 243ms
53:	learn: 25.3455276	total: 278ms	remaining: 237ms
54:	learn: 25.2289675	total: 282ms	remaining: 231ms
55:	learn: 25.0133024	total: 287ms	remaining: 225ms
56:	learn: 24.8406714	total: 290ms	remaining: 219ms
57:	learn: 24.6367857	total: 295ms	remaining: 213ms
58:	learn: 24.5338177	total: 299ms	remaining: 207ms
59:	learn: 24.3799964	total: 303ms	remaining: 202ms
60:	learn: 24.1447492	total: 307ms	remaining: 196ms
61:	learn: 23.9880495	total: 311ms	remaining: 191ms
62:	learn: 23.7140630	total: 315ms	remaining: 185ms
63:	learn: 23.5003791	total: 320ms	remaining: 180ms
64:	learn: 23.3207645	total: 324ms	remaining: 174ms
65:	learn: 23.1958356	total: 328ms	remaining: 169ms
66:	learn: 23.0471302	total: 332ms	remaining: 163ms
67:	learn: 22.8977183	total: 337ms	remaining: 159ms
68:	learn: 22.7187400	total: 342ms	remaining: 154ms
69:	learn: 22.6523405	total: 347ms	remaining: 149ms
70:	learn: 22.4767453	total: 352ms	remaining: 144ms
71:	learn: 22.3243677	total: 357ms	remaining: 139ms
72:	learn: 22.2133096	total: 362ms	remaining: 134ms
73:	learn: 22.1151713	total: 366ms	remaining: 129ms
74:	learn: 22.0296666	total: 372ms	remaining: 124ms
75:	learn: 21.9195980	total: 380ms	remaining: 120ms
76:	learn: 21.8401730	total: 387ms	remaining: 116ms
77:	learn: 21.8079797	total: 396ms	remaining: 112ms
78:	learn: 21.7274109	total: 402ms	remaining: 107ms
79:	learn: 21.6663032	total: 408ms	remaining: 102ms
80:	learn: 21.5633117	total: 413ms	remaining: 96.9ms
81:	learn: 21.4542467	total: 418ms	remaining: 91.7ms
82:	learn: 21.3177957	total: 423ms	remaining: 86.6ms
83:	learn: 21.1289167	total: 428ms	remaining: 81.6ms
84:	learn: 21.0297368	total: 434ms	remaining: 76.5ms
85:	learn: 20.9089564	total: 439ms	remaining: 71.4ms
86:	learn: 20.7653988	total: 444ms	remaining: 66.3ms
87:	learn: 20.6521894	total: 449ms	remaining: 61.2ms
88:	learn: 20.5193021	total: 454ms	remaining: 56.1ms
89:	learn: 20.4361620	total: 459ms	remaining: 51ms
90:	learn: 20.3546710	total: 464ms	remaining: 45.8ms
91:	learn: 20.2513296	total: 469ms	remaining: 40.8ms
92:	learn: 20.1605550	total: 474ms	remaining: 35.7ms
93:	learn: 20.0515942	total: 479ms	remaining: 30.6ms
94:	learn: 19.9800764	total: 483ms	remaining: 25.4ms
95:	learn: 19.8996532	total: 488ms	remaining: 20.3ms
96:	learn: 19.8450910	total: 491ms	remaining: 15.2ms
97:	learn: 19.7887346	total: 495ms	remaining: 10.1ms
98:	learn: 19.7230872	total: 499ms	remaining: 5.04ms
99:	learn: 19.6328825	total: 503ms	remaining: 0us
0:	learn: 27.7143805	total: 4.47ms	remaining: 443ms
1:	learn: 27.2245894	total: 8.95ms	remaining: 439ms
2:	learn: 26.8693029	total: 13ms	remaining: 421ms
3:	learn: 26.4713217	total: 17.6ms	remaining: 423ms
4:	learn: 26.1261794	total: 26.2ms	remaining: 498ms
5:	learn: 25.8160419	total: 33.2ms	remaining: 520ms
6:	learn: 25.3860050	total: 41.8ms	remaining: 556ms
7:	learn: 25.0621682	total: 48.4ms	remaining: 557ms
8:	learn: 24.7574429	total: 54.7ms	remaining: 553ms
9:	learn: 24.5154734	total: 59.6ms	remaining: 536ms
10:	learn: 24.2199118	total: 64.7ms	remaining: 524ms
11:	learn: 23.9774955	total: 69.9ms	remaining: 513ms
12:	learn: 23.7755558	total: 74.8ms	remaining: 501ms
13:	learn: 23.4384476	total: 79.9ms	remaining: 491ms
14:	learn: 23.2035324	total: 84.9ms	remaining: 481ms
15:	learn: 22.9925293	total: 89.9ms	remaining: 472ms
16:	learn: 22.7981113	total: 94.9ms	remaining: 463ms
17:	learn: 22.5829245	total: 99.6ms	remaining: 454ms
18:	learn: 22.4131931	total: 105ms	remaining: 446ms
19:	learn: 22.1833629	total: 109ms	remaining: 436ms
20:	learn: 21.9660824	total: 114ms	remaining: 429ms
21:	learn: 21.7281998	total: 119ms	remaining: 423ms
22:	learn: 21.5000824	total: 124ms	remaining: 416ms
23:	learn: 21.2717031	total: 128ms	remaining: 405ms
24:	learn: 21.0926073	total: 132ms	remaining: 395ms
25:	learn: 20.8922144	total: 135ms	remaining: 385ms
26:	learn: 20.7498215	total: 140ms	remaining: 378ms
27:	learn: 20.5781754	total: 141ms	remaining: 363ms
28:	learn: 20.4294665	total: 146ms	remaining: 357ms
29:	learn: 20.2273985	total: 150ms	remaining: 350ms
30:	learn: 20.0920234	total: 154ms	remaining: 343ms
31:	learn: 19.9311712	total: 158ms	remaining: 336ms
32:	learn: 19.7852359	total: 161ms	remaining: 328ms
33:	learn: 19.6211007	total: 165ms	remaining: 321ms
34:	learn: 19.4806501	total: 169ms	remaining: 314ms
35:	learn: 19.3415380	total: 173ms	remaining: 308ms
36:	learn: 19.2075499	total: 177ms	remaining: 302ms
37:	learn: 19.0582745	total: 181ms	remaining: 295ms
38:	learn: 18.8852020	total: 185ms	remaining: 289ms
39:	learn: 18.6868677	total: 189ms	remaining: 283ms
40:	learn: 18.5481481	total: 193ms	remaining: 277ms
41:	learn: 18.4508846	total: 197ms	remaining: 272ms
42:	learn: 18.3650555	total: 200ms	remaining: 265ms
43:	learn: 18.1818415	total: 204ms	remaining: 260ms
44:	learn: 18.0782035	total: 208ms	remaining: 255ms
45:	learn: 17.9724472	total: 212ms	remaining: 249ms
46:	learn: 17.8657480	total: 216ms	remaining: 244ms
47:	learn: 17.7217309	total: 220ms	remaining: 238ms
48:	learn: 17.6403061	total: 223ms	remaining: 232ms
49:	learn: 17.5245570	total: 228ms	remaining: 228ms
50:	learn: 17.3976790	total: 233ms	remaining: 223ms
51:	learn: 17.2544460	total: 237ms	remaining: 219ms
52:	learn: 17.1507940	total: 242ms	remaining: 214ms
53:	learn: 17.0391276	total: 246ms	remaining: 210ms
54:	learn: 16.9348155	total: 251ms	remaining: 205ms
55:	learn: 16.8475635	total: 255ms	remaining: 201ms
56:	learn: 16.7691656	total: 260ms	remaining: 196ms
57:	learn: 16.6277836	total: 264ms	remaining: 191ms
58:	learn: 16.5524230	total: 272ms	remaining: 189ms
59:	learn: 16.4614442	total: 280ms	remaining: 187ms
60:	learn: 16.3077836	total: 288ms	remaining: 184ms
61:	learn: 16.2278133	total: 294ms	remaining: 180ms
62:	learn: 16.1288632	total: 301ms	remaining: 177ms
63:	learn: 16.0734717	total: 306ms	remaining: 172ms
64:	learn: 16.0085754	total: 311ms	remaining: 167ms
65:	learn: 15.9278700	total: 316ms	remaining: 163ms
66:	learn: 15.8320321	total: 322ms	remaining: 158ms
67:	learn: 15.7706425	total: 326ms	remaining: 154ms
68:	learn: 15.6404344	total: 332ms	remaining: 149ms
69:	learn: 15.5678129	total: 336ms	remaining: 144ms
70:	learn: 15.4980047	total: 341ms	remaining: 139ms
71:	learn: 15.4324207	total: 347ms	remaining: 135ms
72:	learn: 15.3551877	total: 351ms	remaining: 130ms
73:	learn: 15.2930769	total: 356ms	remaining: 125ms
74:	learn: 15.2307174	total: 362ms	remaining: 121ms
75:	learn: 15.1600937	total: 381ms	remaining: 120ms
76:	learn: 15.0837614	total: 385ms	remaining: 115ms
77:	learn: 15.0185989	total: 389ms	remaining: 110ms
78:	learn: 14.9300717	total: 393ms	remaining: 104ms
79:	learn: 14.8928389	total: 397ms	remaining: 99.3ms
80:	learn: 14.8250040	total: 401ms	remaining: 94.1ms
81:	learn: 14.7906114	total: 405ms	remaining: 88.8ms
82:	learn: 14.7214118	total: 408ms	remaining: 83.7ms
83:	learn: 14.6657875	total: 412ms	remaining: 78.5ms
84:	learn: 14.6085682	total: 416ms	remaining: 73.4ms
85:	learn: 14.5334097	total: 420ms	remaining: 68.3ms
86:	learn: 14.4681230	total: 424ms	remaining: 63.3ms
87:	learn: 14.4088334	total: 428ms	remaining: 58.3ms
88:	learn: 14.3541312	total: 432ms	remaining: 53.4ms
89:	learn: 14.2923636	total: 436ms	remaining: 48.5ms
90:	learn: 14.2339259	total: 441ms	remaining: 43.6ms
91:	learn: 14.1439983	total: 445ms	remaining: 38.7ms
92:	learn: 14.0701371	total: 449ms	remaining: 33.8ms
93:	learn: 13.9770736	total: 453ms	remaining: 28.9ms
94:	learn: 13.9275801	total: 458ms	remaining: 24.1ms
95:	learn: 13.8717050	total: 463ms	remaining: 19.3ms
96:	learn: 13.7821340	total: 473ms	remaining: 14.6ms
97:	learn: 13.7383865	total: 481ms	remaining: 9.81ms
98:	learn: 13.6850693	total: 489ms	remaining: 4.93ms
99:	learn: 13.6273539	total: 499ms	remaining: 0us
0:	learn: 43.2118728	total: 5.14ms	remaining: 509ms
1:	learn: 42.3090111	total: 9.54ms	remaining: 468ms
2:	learn: 41.3060764	total: 13.9ms	remaining: 448ms
3:	learn: 40.3653958	total: 17.9ms	remaining: 430ms
4:	learn: 39.5006331	total: 22.2ms	remaining: 422ms
5:	learn: 38.6473041	total: 26.3ms	remaining: 412ms
6:	learn: 37.8560875	total: 30.4ms	remaining: 404ms
7:	learn: 37.0772701	total: 34.5ms	remaining: 397ms
8:	learn: 36.3260704	total: 38.6ms	remaining: 390ms
9:	learn: 35.7300393	total: 43.3ms	remaining: 390ms
10:	learn: 34.9336547	total: 47.6ms	remaining: 385ms
11:	learn: 34.1758190	total: 51.6ms	remaining: 379ms
12:	learn: 33.5120760	total: 55.7ms	remaining: 373ms
13:	learn: 32.8731142	total: 60.3ms	remaining: 370ms
14:	learn: 32.3579595	total: 64.4ms	remaining: 365ms
15:	learn: 31.7969963	total: 68.4ms	remaining: 359ms
16:	learn: 31.3472797	total: 72.4ms	remaining: 353ms
17:	learn: 30.7865884	total: 76.8ms	remaining: 350ms
18:	learn: 30.3876486	total: 81.6ms	remaining: 348ms
19:	learn: 29.8840575	total: 86.1ms	remaining: 344ms
20:	learn: 29.3584237	total: 90.7ms	remaining: 341ms
21:	learn: 28.9965200	total: 95.3ms	remaining: 338ms
22:	learn: 28.6117225	total: 100ms	remaining: 335ms
23:	learn: 28.1147832	total: 104ms	remaining: 330ms
24:	learn: 27.7857774	total: 108ms	remaining: 325ms
25:	learn: 27.3181226	total: 116ms	remaining: 329ms
26:	learn: 26.9019101	total: 123ms	remaining: 332ms
27:	learn: 26.6957004	total: 133ms	remaining: 341ms
28:	learn: 26.2816390	total: 138ms	remaining: 338ms
29:	learn: 25.9107534	total: 145ms	remaining: 339ms
30:	learn: 25.5773085	total: 151ms	remaining: 335ms
31:	learn: 25.1916035	total: 156ms	remaining: 331ms
32:	learn: 24.8819670	total: 161ms	remaining: 327ms
33:	learn: 24.5580488	total: 166ms	remaining: 323ms
34:	learn: 24.3088624	total: 171ms	remaining: 318ms
35:	learn: 23.9890893	total: 176ms	remaining: 313ms
36:	learn: 23.7266073	total: 181ms	remaining: 309ms
37:	learn: 23.4886046	total: 187ms	remaining: 305ms
38:	learn: 23.2786313	total: 192ms	remaining: 300ms
39:	learn: 23.0060540	total: 196ms	remaining: 295ms
40:	learn: 22.7848361	total: 201ms	remaining: 289ms
41:	learn: 22.5485511	total: 206ms	remaining: 284ms
42:	learn: 22.3113565	total: 211ms	remaining: 280ms
43:	learn: 22.1296084	total: 217ms	remaining: 276ms
44:	learn: 21.8514989	total: 222ms	remaining: 271ms
45:	learn: 21.6540201	total: 226ms	remaining: 265ms
46:	learn: 21.4203535	total: 231ms	remaining: 260ms
47:	learn: 21.2317196	total: 236ms	remaining: 255ms
48:	learn: 21.0547467	total: 240ms	remaining: 250ms
49:	learn: 20.9192535	total: 244ms	remaining: 244ms
50:	learn: 20.6975386	total: 248ms	remaining: 238ms
51:	learn: 20.5839720	total: 252ms	remaining: 233ms
52:	learn: 20.4528901	total: 256ms	remaining: 227ms
53:	learn: 20.3392419	total: 260ms	remaining: 222ms
54:	learn: 20.1518693	total: 264ms	remaining: 216ms
55:	learn: 19.9928770	total: 268ms	remaining: 210ms
56:	learn: 19.8042028	total: 272ms	remaining: 205ms
57:	learn: 19.7000879	total: 276ms	remaining: 200ms
58:	learn: 19.5524154	total: 280ms	remaining: 195ms
59:	learn: 19.4366908	total: 284ms	remaining: 190ms
60:	learn: 19.2739134	total: 289ms	remaining: 185ms
61:	learn: 19.1499266	total: 293ms	remaining: 180ms
62:	learn: 18.9948972	total: 297ms	remaining: 175ms
63:	learn: 18.8952299	total: 302ms	remaining: 170ms
64:	learn: 18.7545430	total: 307ms	remaining: 165ms
65:	learn: 18.6315116	total: 314ms	remaining: 162ms
66:	learn: 18.5164994	total: 321ms	remaining: 158ms
67:	learn: 18.3983038	total: 328ms	remaining: 155ms
68:	learn: 18.2803212	total: 336ms	remaining: 151ms
69:	learn: 18.1738467	total: 344ms	remaining: 147ms
70:	learn: 18.0884235	total: 349ms	remaining: 143ms
71:	learn: 18.0129445	total: 354ms	remaining: 138ms
72:	learn: 17.8582158	total: 360ms	remaining: 133ms
73:	learn: 17.7473705	total: 365ms	remaining: 128ms
74:	learn: 17.6431421	total: 369ms	remaining: 123ms
75:	learn: 17.5398511	total: 375ms	remaining: 118ms
76:	learn: 17.4404598	total: 379ms	remaining: 113ms
77:	learn: 17.3477525	total: 384ms	remaining: 108ms
78:	learn: 17.2283831	total: 389ms	remaining: 103ms
79:	learn: 17.0767035	total: 394ms	remaining: 98.6ms
80:	learn: 16.9732705	total: 399ms	remaining: 93.6ms
81:	learn: 16.8927449	total: 403ms	remaining: 88.5ms
82:	learn: 16.8145625	total: 408ms	remaining: 83.7ms
83:	learn: 16.7290845	total: 414ms	remaining: 78.8ms
84:	learn: 16.6661414	total: 419ms	remaining: 73.9ms
85:	learn: 16.5875575	total: 423ms	remaining: 68.8ms
86:	learn: 16.4578580	total: 427ms	remaining: 63.8ms
87:	learn: 16.4243550	total: 430ms	remaining: 58.7ms
88:	learn: 16.3251337	total: 434ms	remaining: 53.6ms
89:	learn: 16.2516385	total: 438ms	remaining: 48.6ms
90:	learn: 16.1226518	total: 442ms	remaining: 43.7ms
91:	learn: 16.0718308	total: 446ms	remaining: 38.8ms
92:	learn: 15.9636735	total: 450ms	remaining: 33.9ms
93:	learn: 15.8923693	total: 454ms	remaining: 29ms
94:	learn: 15.8270425	total: 458ms	remaining: 24.1ms
95:	learn: 15.7449077	total: 462ms	remaining: 19.3ms
96:	learn: 15.6978936	total: 466ms	remaining: 14.4ms
97:	learn: 15.6527285	total: 470ms	remaining: 9.59ms
98:	learn: 15.5557320	total: 475ms	remaining: 4.79ms
99:	learn: 15.4399171	total: 479ms	remaining: 0us
0:	learn: 46.7092506	total: 7.29ms	remaining: 722ms
1:	learn: 45.8266821	total: 14.9ms	remaining: 728ms
2:	learn: 45.0052023	total: 22.6ms	remaining: 732ms
3:	learn: 44.3828795	total: 27.6ms	remaining: 662ms
4:	learn: 43.7255353	total: 32.6ms	remaining: 619ms
5:	learn: 43.1663831	total: 38.2ms	remaining: 598ms
6:	learn: 42.3875189	total: 43.7ms	remaining: 581ms
7:	learn: 41.7839075	total: 48.8ms	remaining: 561ms
8:	learn: 41.0740108	total: 53.9ms	remaining: 545ms
9:	learn: 40.3846647	total: 58.7ms	remaining: 529ms
10:	learn: 39.8821046	total: 63.9ms	remaining: 517ms
11:	learn: 39.1807254	total: 69.5ms	remaining: 510ms
12:	learn: 38.7153028	total: 74.5ms	remaining: 499ms
13:	learn: 38.0474495	total: 79ms	remaining: 485ms
14:	learn: 37.3844461	total: 83.8ms	remaining: 475ms
15:	learn: 36.9210704	total: 89.3ms	remaining: 469ms
16:	learn: 36.3160964	total: 94.5ms	remaining: 461ms
17:	learn: 35.8915826	total: 98.3ms	remaining: 448ms
18:	learn: 35.5519989	total: 102ms	remaining: 435ms
19:	learn: 35.1437045	total: 106ms	remaining: 424ms
20:	learn: 34.6387799	total: 110ms	remaining: 413ms
21:	learn: 34.2437068	total: 113ms	remaining: 402ms
22:	learn: 33.8262100	total: 117ms	remaining: 392ms
23:	learn: 33.4683000	total: 121ms	remaining: 383ms
24:	learn: 32.9996389	total: 125ms	remaining: 375ms
25:	learn: 32.6942147	total: 129ms	remaining: 367ms
26:	learn: 32.3016096	total: 133ms	remaining: 359ms
27:	learn: 31.9517346	total: 136ms	remaining: 350ms
28:	learn: 31.5277387	total: 140ms	remaining: 343ms
29:	learn: 31.2545365	total: 144ms	remaining: 337ms
30:	learn: 31.0510813	total: 148ms	remaining: 330ms
31:	learn: 30.6383830	total: 152ms	remaining: 323ms
32:	learn: 30.2800150	total: 156ms	remaining: 317ms
33:	learn: 29.9559797	total: 160ms	remaining: 311ms
34:	learn: 29.5802745	total: 165ms	remaining: 306ms
35:	learn: 29.2605111	total: 169ms	remaining: 300ms
36:	learn: 28.9582434	total: 173ms	remaining: 295ms
37:	learn: 28.6149387	total: 178ms	remaining: 290ms
38:	learn: 28.3980091	total: 182ms	remaining: 285ms
39:	learn: 28.1704520	total: 186ms	remaining: 279ms
40:	learn: 27.8881319	total: 191ms	remaining: 274ms
41:	learn: 27.5805731	total: 199ms	remaining: 275ms
42:	learn: 27.3520567	total: 207ms	remaining: 274ms
43:	learn: 27.1039679	total: 215ms	remaining: 273ms
44:	learn: 26.8472623	total: 221ms	remaining: 270ms
45:	learn: 26.5757869	total: 227ms	remaining: 267ms
46:	learn: 26.4579118	total: 232ms	remaining: 262ms
47:	learn: 26.1279008	total: 237ms	remaining: 257ms
48:	learn: 25.8503346	total: 242ms	remaining: 252ms
49:	learn: 25.7039015	total: 247ms	remaining: 247ms
50:	learn: 25.4317154	total: 253ms	remaining: 243ms
51:	learn: 25.3028008	total: 258ms	remaining: 238ms
52:	learn: 25.1906194	total: 263ms	remaining: 233ms
53:	learn: 25.0082790	total: 268ms	remaining: 228ms
54:	learn: 24.8264791	total: 273ms	remaining: 223ms
55:	learn: 24.5961365	total: 278ms	remaining: 218ms
56:	learn: 24.4007690	total: 282ms	remaining: 213ms
57:	learn: 24.2476228	total: 286ms	remaining: 207ms
58:	learn: 23.9582465	total: 291ms	remaining: 202ms
59:	learn: 23.7247243	total: 297ms	remaining: 198ms
60:	learn: 23.5379970	total: 302ms	remaining: 193ms
61:	learn: 23.3908530	total: 306ms	remaining: 188ms
62:	learn: 23.2123241	total: 310ms	remaining: 182ms
63:	learn: 23.1010345	total: 314ms	remaining: 177ms
64:	learn: 22.9032423	total: 318ms	remaining: 171ms
65:	learn: 22.7815198	total: 322ms	remaining: 166ms
66:	learn: 22.6325063	total: 326ms	remaining: 160ms
67:	learn: 22.5406071	total: 330ms	remaining: 155ms
68:	learn: 22.4413332	total: 334ms	remaining: 150ms
69:	learn: 22.3005609	total: 339ms	remaining: 145ms
70:	learn: 22.1779345	total: 343ms	remaining: 140ms
71:	learn: 22.0491576	total: 348ms	remaining: 135ms
72:	learn: 21.9379106	total: 352ms	remaining: 130ms
73:	learn: 21.7597096	total: 357ms	remaining: 125ms
74:	learn: 21.6042300	total: 361ms	remaining: 120ms
75:	learn: 21.4644642	total: 366ms	remaining: 116ms
76:	learn: 21.3811287	total: 371ms	remaining: 111ms
77:	learn: 21.3089276	total: 375ms	remaining: 106ms
78:	learn: 21.1654429	total: 379ms	remaining: 101ms
79:	learn: 20.9602460	total: 384ms	remaining: 96ms
80:	learn: 20.7959461	total: 389ms	remaining: 91.1ms
81:	learn: 20.5861156	total: 395ms	remaining: 86.8ms
82:	learn: 20.5120680	total: 404ms	remaining: 82.7ms
83:	learn: 20.3997233	total: 413ms	remaining: 78.6ms
84:	learn: 20.2499469	total: 419ms	remaining: 74ms
85:	learn: 20.1117768	total: 433ms	remaining: 70.5ms
86:	learn: 20.0617643	total: 438ms	remaining: 65.5ms
87:	learn: 19.9609182	total: 443ms	remaining: 60.4ms
88:	learn: 19.8763814	total: 449ms	remaining: 55.4ms
89:	learn: 19.7843516	total: 454ms	remaining: 50.4ms
90:	learn: 19.6926200	total: 459ms	remaining: 45.4ms
91:	learn: 19.5686774	total: 465ms	remaining: 40.4ms
92:	learn: 19.4727236	total: 470ms	remaining: 35.4ms
93:	learn: 19.3780174	total: 475ms	remaining: 30.3ms
94:	learn: 19.2840650	total: 480ms	remaining: 25.2ms
95:	learn: 19.1747368	total: 485ms	remaining: 20.2ms
96:	learn: 19.1273306	total: 489ms	remaining: 15.1ms
97:	learn: 19.0413946	total: 494ms	remaining: 10.1ms
98:	learn: 18.8980682	total: 499ms	remaining: 5.04ms
99:	learn: 18.7799962	total: 505ms	remaining: 0us
0:	learn: 46.4426352	total: 4.46ms	remaining: 442ms
1:	learn: 45.5770653	total: 9.31ms	remaining: 456ms
2:	learn: 44.6956685	total: 14ms	remaining: 453ms
3:	learn: 43.9934709	total: 18.7ms	remaining: 448ms
4:	learn: 43.3008183	total: 23.6ms	remaining: 449ms
5:	learn: 42.7510022	total: 27.8ms	remaining: 435ms
6:	learn: 42.0237555	total: 32.2ms	remaining: 427ms
7:	learn: 41.5354996	total: 36.7ms	remaining: 422ms
8:	learn: 41.0264055	total: 41.4ms	remaining: 418ms
9:	learn: 40.5267003	total: 48.7ms	remaining: 438ms
10:	learn: 39.8363942	total: 56ms	remaining: 453ms
11:	learn: 39.2014089	total: 62.9ms	remaining: 461ms
12:	learn: 38.7943524	total: 69.5ms	remaining: 465ms
13:	learn: 38.1664113	total: 76.9ms	remaining: 472ms
14:	learn: 37.7492773	total: 82ms	remaining: 465ms
15:	learn: 37.2369693	total: 87ms	remaining: 456ms
16:	learn: 36.6953383	total: 91.9ms	remaining: 449ms
17:	learn: 36.3580916	total: 97.1ms	remaining: 442ms
18:	learn: 35.8637745	total: 102ms	remaining: 435ms
19:	learn: 35.4299153	total: 107ms	remaining: 428ms
20:	learn: 34.8794879	total: 113ms	remaining: 424ms
21:	learn: 34.3253348	total: 118ms	remaining: 418ms
22:	learn: 33.9307096	total: 123ms	remaining: 412ms
23:	learn: 33.5952896	total: 129ms	remaining: 408ms
24:	learn: 33.1314051	total: 134ms	remaining: 402ms
25:	learn: 32.8502968	total: 139ms	remaining: 396ms
26:	learn: 32.4430184	total: 146ms	remaining: 394ms
27:	learn: 32.0721224	total: 151ms	remaining: 388ms
28:	learn: 31.7977479	total: 155ms	remaining: 380ms
29:	learn: 31.3999469	total: 160ms	remaining: 372ms
30:	learn: 31.1179360	total: 163ms	remaining: 364ms
31:	learn: 30.7712852	total: 168ms	remaining: 356ms
32:	learn: 30.2912977	total: 172ms	remaining: 349ms
33:	learn: 29.9920376	total: 176ms	remaining: 342ms
34:	learn: 29.6637918	total: 180ms	remaining: 334ms
35:	learn: 29.3522959	total: 184ms	remaining: 327ms
36:	learn: 29.0482516	total: 188ms	remaining: 320ms
37:	learn: 28.7956656	total: 192ms	remaining: 313ms
38:	learn: 28.4845569	total: 195ms	remaining: 306ms
39:	learn: 28.3038067	total: 199ms	remaining: 299ms
40:	learn: 28.1185263	total: 203ms	remaining: 293ms
41:	learn: 27.8012563	total: 207ms	remaining: 286ms
42:	learn: 27.5184259	total: 211ms	remaining: 280ms
43:	learn: 27.3019892	total: 215ms	remaining: 273ms
44:	learn: 27.0494594	total: 219ms	remaining: 267ms
45:	learn: 26.8054317	total: 224ms	remaining: 262ms
46:	learn: 26.6554974	total: 228ms	remaining: 257ms
47:	learn: 26.3568392	total: 232ms	remaining: 252ms
48:	learn: 26.1045872	total: 237ms	remaining: 246ms
49:	learn: 25.9807311	total: 241ms	remaining: 241ms
50:	learn: 25.7104640	total: 245ms	remaining: 236ms
51:	learn: 25.6019547	total: 250ms	remaining: 231ms
52:	learn: 25.5011930	total: 255ms	remaining: 226ms
53:	learn: 25.2291639	total: 263ms	remaining: 224ms
54:	learn: 24.9952313	total: 270ms	remaining: 221ms
55:	learn: 24.8195031	total: 279ms	remaining: 219ms
56:	learn: 24.5591684	total: 286ms	remaining: 216ms
57:	learn: 24.4163080	total: 292ms	remaining: 211ms
58:	learn: 24.2328188	total: 297ms	remaining: 206ms
59:	learn: 24.0087408	total: 302ms	remaining: 201ms
60:	learn: 23.8918912	total: 307ms	remaining: 196ms
61:	learn: 23.7537024	total: 312ms	remaining: 191ms
62:	learn: 23.5466923	total: 317ms	remaining: 186ms
63:	learn: 23.3903724	total: 322ms	remaining: 181ms
64:	learn: 23.3257785	total: 327ms	remaining: 176ms
65:	learn: 23.2839464	total: 332ms	remaining: 171ms
66:	learn: 23.1476036	total: 337ms	remaining: 166ms
67:	learn: 22.9480972	total: 342ms	remaining: 161ms
68:	learn: 22.7537529	total: 347ms	remaining: 156ms
69:	learn: 22.6209544	total: 351ms	remaining: 151ms
70:	learn: 22.5058753	total: 357ms	remaining: 146ms
71:	learn: 22.4068656	total: 363ms	remaining: 141ms
72:	learn: 22.3254150	total: 367ms	remaining: 136ms
73:	learn: 22.1784174	total: 371ms	remaining: 130ms
74:	learn: 22.1095388	total: 375ms	remaining: 125ms
75:	learn: 21.9958083	total: 378ms	remaining: 120ms
76:	learn: 21.8728475	total: 382ms	remaining: 114ms
77:	learn: 21.7975828	total: 386ms	remaining: 109ms
78:	learn: 21.7133267	total: 390ms	remaining: 104ms
79:	learn: 21.6023410	total: 394ms	remaining: 98.4ms
80:	learn: 21.5254474	total: 397ms	remaining: 93.2ms
81:	learn: 21.3307418	total: 401ms	remaining: 88.1ms
82:	learn: 21.2411976	total: 405ms	remaining: 83ms
83:	learn: 21.1091386	total: 409ms	remaining: 78ms
84:	learn: 21.0526747	total: 413ms	remaining: 72.9ms
85:	learn: 20.9083817	total: 417ms	remaining: 67.8ms
86:	learn: 20.8767767	total: 421ms	remaining: 62.9ms
87:	learn: 20.8143988	total: 425ms	remaining: 58ms
88:	learn: 20.7127697	total: 430ms	remaining: 53.1ms
89:	learn: 20.6112504	total: 434ms	remaining: 48.2ms
90:	learn: 20.4609960	total: 438ms	remaining: 43.3ms
91:	learn: 20.3648890	total: 442ms	remaining: 38.5ms
92:	learn: 20.3052040	total: 447ms	remaining: 33.6ms
93:	learn: 20.2587865	total: 451ms	remaining: 28.8ms
94:	learn: 20.2096406	total: 456ms	remaining: 24ms
95:	learn: 20.1301385	total: 464ms	remaining: 19.4ms
96:	learn: 20.0401359	total: 471ms	remaining: 14.6ms
97:	learn: 19.9791591	total: 480ms	remaining: 9.8ms
98:	learn: 19.9237318	total: 485ms	remaining: 4.9ms
99:	learn: 19.8009190	total: 492ms	remaining: 0us
0:	learn: 46.9286701	total: 4.69ms	remaining: 464ms
1:	learn: 46.2851598	total: 9.06ms	remaining: 444ms
2:	learn: 45.4586007	total: 14.6ms	remaining: 471ms
3:	learn: 44.6581393	total: 20.1ms	remaining: 481ms
4:	learn: 43.8231644	total: 24.1ms	remaining: 459ms
5:	learn: 43.2906569	total: 27.7ms	remaining: 434ms
6:	learn: 42.5095813	total: 31.9ms	remaining: 424ms
7:	learn: 41.9310465	total: 35.5ms	remaining: 408ms
8:	learn: 41.2083262	total: 39.3ms	remaining: 398ms
9:	learn: 40.6852547	total: 42.8ms	remaining: 386ms
10:	learn: 39.9637018	total: 46.6ms	remaining: 377ms
11:	learn: 39.2804189	total: 50.4ms	remaining: 370ms
12:	learn: 38.8804017	total: 54.2ms	remaining: 363ms
13:	learn: 38.3826597	total: 58ms	remaining: 356ms
14:	learn: 37.9240424	total: 61.8ms	remaining: 350ms
15:	learn: 37.4312070	total: 65.7ms	remaining: 345ms
16:	learn: 36.8803673	total: 70ms	remaining: 342ms
17:	learn: 36.5496582	total: 74ms	remaining: 337ms
18:	learn: 36.2078375	total: 78.3ms	remaining: 334ms
19:	learn: 35.6806593	total: 82.3ms	remaining: 329ms
20:	learn: 35.1512154	total: 86.4ms	remaining: 325ms
21:	learn: 34.6013055	total: 91.3ms	remaining: 324ms
22:	learn: 34.2380102	total: 95.8ms	remaining: 321ms
23:	learn: 33.8720185	total: 100ms	remaining: 317ms
24:	learn: 33.4426135	total: 104ms	remaining: 313ms
25:	learn: 33.1471186	total: 109ms	remaining: 309ms
26:	learn: 32.8018279	total: 113ms	remaining: 305ms
27:	learn: 32.4498594	total: 117ms	remaining: 302ms
28:	learn: 31.9749480	total: 121ms	remaining: 297ms
29:	learn: 31.6470735	total: 130ms	remaining: 304ms
30:	learn: 31.4265242	total: 138ms	remaining: 307ms
31:	learn: 31.0753325	total: 146ms	remaining: 310ms
32:	learn: 30.7192494	total: 153ms	remaining: 310ms
33:	learn: 30.3547940	total: 158ms	remaining: 307ms
34:	learn: 30.1296593	total: 163ms	remaining: 303ms
35:	learn: 29.9367140	total: 168ms	remaining: 299ms
36:	learn: 29.6248477	total: 174ms	remaining: 296ms
37:	learn: 29.3156707	total: 179ms	remaining: 292ms
38:	learn: 29.1534039	total: 184ms	remaining: 288ms
39:	learn: 28.9351289	total: 189ms	remaining: 283ms
40:	learn: 28.7057685	total: 194ms	remaining: 279ms
41:	learn: 28.3132521	total: 199ms	remaining: 274ms
42:	learn: 28.0739054	total: 204ms	remaining: 270ms
43:	learn: 27.8135917	total: 209ms	remaining: 266ms
44:	learn: 27.5376804	total: 213ms	remaining: 261ms
45:	learn: 27.3195849	total: 217ms	remaining: 255ms
46:	learn: 27.1681104	total: 221ms	remaining: 249ms
47:	learn: 27.0122442	total: 225ms	remaining: 244ms
48:	learn: 26.7819409	total: 229ms	remaining: 238ms
49:	learn: 26.6429308	total: 232ms	remaining: 232ms
50:	learn: 26.3482899	total: 237ms	remaining: 227ms
51:	learn: 26.2432755	total: 240ms	remaining: 222ms
52:	learn: 26.0811102	total: 244ms	remaining: 217ms
53:	learn: 25.9398113	total: 248ms	remaining: 211ms
54:	learn: 25.7891395	total: 252ms	remaining: 206ms
55:	learn: 25.6185338	total: 256ms	remaining: 201ms
56:	learn: 25.3293977	total: 260ms	remaining: 196ms
57:	learn: 25.1918906	total: 263ms	remaining: 191ms
58:	learn: 25.0503990	total: 267ms	remaining: 186ms
59:	learn: 24.8225776	total: 271ms	remaining: 181ms
60:	learn: 24.5969153	total: 276ms	remaining: 176ms
61:	learn: 24.4657353	total: 281ms	remaining: 172ms
62:	learn: 24.2861000	total: 285ms	remaining: 167ms
63:	learn: 24.1719148	total: 289ms	remaining: 163ms
64:	learn: 24.0547875	total: 294ms	remaining: 158ms
65:	learn: 23.9156724	total: 299ms	remaining: 154ms
66:	learn: 23.7604012	total: 303ms	remaining: 149ms
67:	learn: 23.6265679	total: 308ms	remaining: 145ms
68:	learn: 23.5372255	total: 316ms	remaining: 142ms
69:	learn: 23.3286241	total: 323ms	remaining: 139ms
70:	learn: 23.1806465	total: 332ms	remaining: 135ms
71:	learn: 23.0652081	total: 339ms	remaining: 132ms
72:	learn: 22.9231023	total: 344ms	remaining: 127ms
73:	learn: 22.8020380	total: 350ms	remaining: 123ms
74:	learn: 22.6525036	total: 355ms	remaining: 118ms
75:	learn: 22.5616268	total: 360ms	remaining: 114ms
76:	learn: 22.4395250	total: 366ms	remaining: 109ms
77:	learn: 22.3732379	total: 371ms	remaining: 105ms
78:	learn: 22.2300874	total: 377ms	remaining: 100ms
79:	learn: 22.0209882	total: 382ms	remaining: 95.6ms
80:	learn: 21.8703996	total: 387ms	remaining: 90.8ms
81:	learn: 21.7222039	total: 392ms	remaining: 86.1ms
82:	learn: 21.5903685	total: 397ms	remaining: 81.3ms
83:	learn: 21.4915083	total: 402ms	remaining: 76.5ms
84:	learn: 21.3320736	total: 407ms	remaining: 71.8ms
85:	learn: 21.2295060	total: 412ms	remaining: 67.1ms
86:	learn: 21.1983620	total: 416ms	remaining: 62.2ms
87:	learn: 21.1404156	total: 420ms	remaining: 57.3ms
88:	learn: 21.0684840	total: 424ms	remaining: 52.4ms
89:	learn: 20.9269197	total: 428ms	remaining: 47.5ms
90:	learn: 20.8614606	total: 432ms	remaining: 42.7ms
91:	learn: 20.6642996	total: 436ms	remaining: 37.9ms
92:	learn: 20.5612705	total: 440ms	remaining: 33.1ms
93:	learn: 20.5264997	total: 444ms	remaining: 28.3ms
94:	learn: 20.4532331	total: 448ms	remaining: 23.6ms
95:	learn: 20.3700696	total: 452ms	remaining: 18.8ms
96:	learn: 20.2671574	total: 456ms	remaining: 14.1ms
97:	learn: 20.1761207	total: 460ms	remaining: 9.38ms
98:	learn: 20.0533799	total: 463ms	remaining: 4.68ms
99:	learn: 19.9890055	total: 468ms	remaining: 0us
avg_Mae_val de la población en la generación 14: 17.792073579256304 con std media = 9.175694703371684
Mae_val del Mejor modelo en la generación 14: 17.7789 con std = 9.1097
Mejor Mae_val de la clase CatBoostRegressor: 17.7789 con std = 9.1097


Tiempo total de búsqueda con AG: 0.81 h

Como se puede ver en el log, RandomForestRegressor se ha tomado 2.21 h en terminar el algoritmo a pesar de que solamente se ha configurado una población de 12 individuos y 15 generaciones (algo bajo para un AG con la cantidad de parámetros que se han enviado).

También, CatBoostRegressor se ha tomado 0.77 h. Bastante menos pero demasiado como para realizar más pruebas.

El resto, han tenido tiempos bastante más bajos. Esto es debido a varios factores:

  • RandomForestRegressor internamente ya realiza una selección aleatoria de características (RandomForest) además del Bagging, por lo que, en teoría, no sería necesaria la propia variación de columnas. Además, también de forma interna promedia muchos árboles aleatorios No débiles (es decir, con más de un nivel y tan largos como se configure en su parámetro max_depth). Es decir, es un modelo muy pesado, a diferencia de, por ejemplo, XGBRegresor o LGBMRegressor que se basan en el algoritmo de Boosting, es decir, crea muchos árboles aleatorios Débiles, cuyo resultado final es la media de las predicciones de estos árboles débiles de tan solo un nivel de profundidad.
  • Se está utilizando la validación cruzada en lugar de una validación simple de una división del dataset en subconjuntos de entrenamiento y validación. Es decir, cada modelo se evalúa tantas veces como pliegues se haya configurado (5 en este caso). Esto aumenta multiplicativamente el tiempo de entrenamiento y validación de cada modelo. Para los más pesados, es un problema computacional.
  • Se está utilizando un dataset de 28 dimensiones. Se podría optar por reducir dimensionalidades mediante PCA, o algo más costoso y no lineal como t-SNE o incluso autoencoders. Sin embargo, todos estos métodos por buenos que sean siempre tienen una pérdida de información asociada.

En caso de que se necesitase reducir la latencia del modelo, se estudiarían las posibilidades mencionadas de reducción de dimensionalidad, uso de algoritmos simples y veloces exclusivamente o métodos de validaciones no cruzados.

Dicho lo cual, una vez se han obtenido los "mejores" (subóptimos) modelos con la ayuda del algoritmo genético, se muestran sus mae cv para ver las puntuaciones:

In [46]:
for model_name, values in best_models_from_AG.items():
    print(f"Mejor modelo {model_name}\nMAE CV: {values[1]} con std = {values[2]}\n")
Mejor modelo RandomForestRegressor
MAE CV: 18.9738 con std = 9.2501

Mejor modelo KNeighborsRegressor
MAE CV: 19.8566 con std = 10.1503

Mejor modelo XGBRegressor
MAE CV: 18.5156 con std = 9.1159

Mejor modelo LGBMRegressor
MAE CV: 19.3493 con std = 8.8952

Mejor modelo CatBoostRegressor
MAE CV: 17.7789 con std = 9.1097

Se visualiza, además, el histórico de mejora de cada población completa para cada modelo

In [140]:
fig, ax = plt.subplots(figsize = (10, 4))
for model, values in best_models_from_AG.items():
    print(model)
    hist = values[3]
    mae_pop_hist = []
    for i, value in enumerate(hist):
        if i == 0: 
            mae_pop_hist.append(value)
        else:
            mae_pop_hist.append(value[0])
    sns.lineplot(x = list(range(1, len(mae_pop_hist)+1)), y = mae_pop_hist, label = model, ax = ax)

plt.xlim()
plt.xlabel("Generaciones")
plt.ylabel("MAE")
plt.title("Mejora del MAE medio poblacional con el paso de las generaciones con Algoritmo Genético")
plt.show()
RandomForestRegressor
KNeighborsRegressor
XGBRegressor
LGBMRegressor
CatBoostRegressor
No description has been provided for this image

Se observa claramente que, para cada modelo, al AG ha conseguido mejorar sus puntuaciones entre la primera y la décimoquinta generación (aunque no siempre se mejora de una generación para otra).

Se crea el diccionario de parámetros por modelo con los parámetros obtenidos por el AG. Además, se crea otro diccionario cuyas claves serán los nombres de las clases de modelo y sus valores serán las listas de las columnas usadas por cada modelo.

In [47]:
dict_cols_selected = {}
dict_params = {}
for name in dict_models.keys():
    #Se extrae el modelo y las columnas (los parámetros no hace falta, pues se saca del propio modelo)
    individual = best_models_from_AG[name][0] #Se extrae primero el individuo perteneciente a la cls de modelo
    selected_params = individual['selected_params'] #Se extrae el modelo del individuo
    cols_selected = individual['cols_selected'].copy() #Se extraen las columnas seleccionadas para entrenar
    dict_params[name] = selected_params
    dict_cols_selected[name] = cols_selected

Utilizando la función previamente definida para evaluar modelos y que se incluyan en el resumen, se envían estos nuevos modelos para actualizar dicha tabla.

In [ ]:
try_models(X, y, dict_models, dict_cols_selected, dict_params)
MAE CV para RandomForestRegressor: 18.973783412121783
MAE CV para KNeighborsRegressor: 19.856600778492002
MAE CV para XGBRegressor: 18.515635542323945
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1957
[LightGBM] [Info] Number of data points in the train set: 1156, number of used features: 15
[LightGBM] [Info] Start training from score 17.960208
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000141 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1959
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 22.757995
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000130 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1958
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 26.035436
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000113 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1908
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.076923
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000164 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1895
[LightGBM] [Info] Number of data points in the train set: 1157, number of used features: 15
[LightGBM] [Info] Start training from score 28.448574
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
MAE CV para LGBMRegressor: 19.349327184182556
0:	learn: 27.5585353	total: 4.86ms	remaining: 481ms
1:	learn: 27.1656995	total: 9.19ms	remaining: 450ms
2:	learn: 26.8590175	total: 13.7ms	remaining: 443ms
3:	learn: 26.5818406	total: 18ms	remaining: 433ms
4:	learn: 26.1148663	total: 22.4ms	remaining: 425ms
5:	learn: 25.7690484	total: 27.2ms	remaining: 426ms
6:	learn: 25.3489206	total: 32.1ms	remaining: 426ms
7:	learn: 24.9542406	total: 37ms	remaining: 426ms
8:	learn: 24.6777517	total: 42.1ms	remaining: 426ms
9:	learn: 24.3242344	total: 46.8ms	remaining: 421ms
10:	learn: 24.0383073	total: 51.4ms	remaining: 415ms
11:	learn: 23.7383420	total: 56.2ms	remaining: 412ms
12:	learn: 23.3461670	total: 60.8ms	remaining: 407ms
13:	learn: 23.0928636	total: 65.2ms	remaining: 401ms
14:	learn: 22.8770414	total: 69.7ms	remaining: 395ms
15:	learn: 22.6323214	total: 74.2ms	remaining: 389ms
16:	learn: 22.3597072	total: 79.3ms	remaining: 387ms
17:	learn: 22.1079813	total: 84ms	remaining: 383ms
18:	learn: 21.8421199	total: 88.6ms	remaining: 378ms
19:	learn: 21.6576508	total: 93.1ms	remaining: 372ms
20:	learn: 21.4301268	total: 97.7ms	remaining: 368ms
21:	learn: 21.2287388	total: 103ms	remaining: 363ms
22:	learn: 21.0553872	total: 107ms	remaining: 357ms
23:	learn: 20.8977091	total: 111ms	remaining: 350ms
24:	learn: 20.6619051	total: 115ms	remaining: 344ms
25:	learn: 20.5040955	total: 119ms	remaining: 338ms
26:	learn: 20.3181195	total: 123ms	remaining: 333ms
27:	learn: 20.0869436	total: 127ms	remaining: 326ms
28:	learn: 19.9375985	total: 131ms	remaining: 320ms
29:	learn: 19.8247516	total: 135ms	remaining: 314ms
30:	learn: 19.6261697	total: 139ms	remaining: 309ms
31:	learn: 19.4547236	total: 143ms	remaining: 303ms
32:	learn: 19.3157092	total: 147ms	remaining: 298ms
33:	learn: 19.1561419	total: 151ms	remaining: 292ms
34:	learn: 19.0453620	total: 155ms	remaining: 288ms
35:	learn: 18.8738574	total: 159ms	remaining: 283ms
36:	learn: 18.7072907	total: 163ms	remaining: 278ms
37:	learn: 18.5877943	total: 167ms	remaining: 273ms
38:	learn: 18.4436380	total: 171ms	remaining: 267ms
39:	learn: 18.3463356	total: 175ms	remaining: 263ms
40:	learn: 18.2008059	total: 179ms	remaining: 258ms
41:	learn: 18.0582079	total: 184ms	remaining: 253ms
42:	learn: 17.8891982	total: 188ms	remaining: 249ms
43:	learn: 17.7332246	total: 192ms	remaining: 244ms
44:	learn: 17.6206421	total: 196ms	remaining: 240ms
45:	learn: 17.4982800	total: 200ms	remaining: 234ms
46:	learn: 17.3970150	total: 204ms	remaining: 230ms
47:	learn: 17.3058203	total: 208ms	remaining: 225ms
48:	learn: 17.1789256	total: 212ms	remaining: 221ms
49:	learn: 17.0916229	total: 216ms	remaining: 216ms
50:	learn: 16.9859820	total: 220ms	remaining: 212ms
51:	learn: 16.8995582	total: 224ms	remaining: 207ms
52:	learn: 16.8137014	total: 228ms	remaining: 202ms
53:	learn: 16.7021451	total: 233ms	remaining: 198ms
54:	learn: 16.5895582	total: 237ms	remaining: 194ms
55:	learn: 16.5015639	total: 241ms	remaining: 189ms
56:	learn: 16.4356637	total: 245ms	remaining: 185ms
57:	learn: 16.3514525	total: 249ms	remaining: 180ms
58:	learn: 16.2401369	total: 253ms	remaining: 176ms
59:	learn: 16.1293223	total: 257ms	remaining: 172ms
60:	learn: 16.0271167	total: 262ms	remaining: 167ms
61:	learn: 15.9126257	total: 266ms	remaining: 163ms
62:	learn: 15.8391096	total: 270ms	remaining: 158ms
63:	learn: 15.7441773	total: 274ms	remaining: 154ms
64:	learn: 15.6885195	total: 278ms	remaining: 150ms
65:	learn: 15.6052039	total: 282ms	remaining: 145ms
66:	learn: 15.5074202	total: 287ms	remaining: 141ms
67:	learn: 15.4054338	total: 291ms	remaining: 137ms
68:	learn: 15.2885714	total: 295ms	remaining: 133ms
69:	learn: 15.2157472	total: 299ms	remaining: 128ms
70:	learn: 15.1031554	total: 303ms	remaining: 124ms
71:	learn: 15.0237470	total: 307ms	remaining: 120ms
72:	learn: 14.9756825	total: 312ms	remaining: 115ms
73:	learn: 14.8840596	total: 316ms	remaining: 111ms
74:	learn: 14.8077061	total: 320ms	remaining: 107ms
75:	learn: 14.7444437	total: 324ms	remaining: 102ms
76:	learn: 14.6751720	total: 328ms	remaining: 98.1ms
77:	learn: 14.5830333	total: 333ms	remaining: 93.8ms
78:	learn: 14.5241206	total: 337ms	remaining: 89.5ms
79:	learn: 14.4892731	total: 340ms	remaining: 85.1ms
80:	learn: 14.4256605	total: 344ms	remaining: 80.8ms
81:	learn: 14.3666860	total: 348ms	remaining: 76.5ms
82:	learn: 14.2938372	total: 353ms	remaining: 72.3ms
83:	learn: 14.2161532	total: 357ms	remaining: 67.9ms
84:	learn: 14.1582910	total: 361ms	remaining: 63.6ms
85:	learn: 14.1029153	total: 365ms	remaining: 59.4ms
86:	learn: 14.0475835	total: 369ms	remaining: 55.1ms
87:	learn: 13.9892661	total: 372ms	remaining: 50.8ms
88:	learn: 13.9481628	total: 377ms	remaining: 46.5ms
89:	learn: 13.8483991	total: 381ms	remaining: 42.3ms
90:	learn: 13.7775614	total: 385ms	remaining: 38ms
91:	learn: 13.7304585	total: 388ms	remaining: 33.8ms
92:	learn: 13.6783381	total: 393ms	remaining: 29.6ms
93:	learn: 13.6356964	total: 397ms	remaining: 25.4ms
94:	learn: 13.5924371	total: 401ms	remaining: 21.1ms
95:	learn: 13.5400746	total: 405ms	remaining: 16.9ms
96:	learn: 13.4897333	total: 409ms	remaining: 12.7ms
97:	learn: 13.4470321	total: 413ms	remaining: 8.43ms
98:	learn: 13.3856082	total: 417ms	remaining: 4.21ms
99:	learn: 13.3082371	total: 421ms	remaining: 0us
0:	learn: 43.0395283	total: 4.4ms	remaining: 436ms
1:	learn: 42.1130223	total: 8.5ms	remaining: 416ms
2:	learn: 41.1753409	total: 12.2ms	remaining: 394ms
3:	learn: 40.3637444	total: 16.2ms	remaining: 388ms
4:	learn: 39.6508088	total: 20.2ms	remaining: 383ms
5:	learn: 38.7217934	total: 24.3ms	remaining: 381ms
6:	learn: 37.8538055	total: 28.2ms	remaining: 375ms
7:	learn: 36.9793574	total: 32.2ms	remaining: 370ms
8:	learn: 36.3076984	total: 36.4ms	remaining: 368ms
9:	learn: 35.6673160	total: 41ms	remaining: 369ms
10:	learn: 34.8889800	total: 45.1ms	remaining: 365ms
11:	learn: 34.1675517	total: 48.9ms	remaining: 359ms
12:	learn: 33.6779564	total: 52.9ms	remaining: 354ms
13:	learn: 33.0710039	total: 56.9ms	remaining: 349ms
14:	learn: 32.4966674	total: 60.9ms	remaining: 345ms
15:	learn: 31.9492856	total: 65.1ms	remaining: 342ms
16:	learn: 31.5108129	total: 68.8ms	remaining: 336ms
17:	learn: 30.9804023	total: 72.8ms	remaining: 332ms
18:	learn: 30.4169089	total: 77ms	remaining: 328ms
19:	learn: 29.8930375	total: 81ms	remaining: 324ms
20:	learn: 29.3974421	total: 85.4ms	remaining: 321ms
21:	learn: 28.8792307	total: 90ms	remaining: 319ms
22:	learn: 28.3894474	total: 94.3ms	remaining: 316ms
23:	learn: 27.9921276	total: 98.3ms	remaining: 311ms
24:	learn: 27.6158887	total: 102ms	remaining: 307ms
25:	learn: 27.2866950	total: 106ms	remaining: 303ms
26:	learn: 26.8770708	total: 111ms	remaining: 299ms
27:	learn: 26.6233005	total: 115ms	remaining: 295ms
28:	learn: 26.2921934	total: 119ms	remaining: 291ms
29:	learn: 25.9156920	total: 123ms	remaining: 287ms
30:	learn: 25.5311106	total: 124ms	remaining: 277ms
31:	learn: 25.2178997	total: 129ms	remaining: 273ms
32:	learn: 24.8572196	total: 133ms	remaining: 269ms
33:	learn: 24.5849710	total: 137ms	remaining: 265ms
34:	learn: 24.2209190	total: 141ms	remaining: 261ms
35:	learn: 23.8708250	total: 145ms	remaining: 257ms
36:	learn: 23.5325279	total: 149ms	remaining: 254ms
37:	learn: 23.2116148	total: 153ms	remaining: 249ms
38:	learn: 22.9696787	total: 157ms	remaining: 246ms
39:	learn: 22.7936783	total: 161ms	remaining: 242ms
40:	learn: 22.6228847	total: 166ms	remaining: 238ms
41:	learn: 22.3691527	total: 170ms	remaining: 234ms
42:	learn: 22.1002173	total: 174ms	remaining: 230ms
43:	learn: 21.9157268	total: 178ms	remaining: 226ms
44:	learn: 21.7229102	total: 182ms	remaining: 222ms
45:	learn: 21.4642005	total: 186ms	remaining: 218ms
46:	learn: 21.3029442	total: 190ms	remaining: 214ms
47:	learn: 21.1469792	total: 194ms	remaining: 210ms
48:	learn: 20.9458235	total: 198ms	remaining: 206ms
49:	learn: 20.7335242	total: 202ms	remaining: 202ms
50:	learn: 20.5440269	total: 206ms	remaining: 198ms
51:	learn: 20.3661449	total: 210ms	remaining: 194ms
52:	learn: 20.2158134	total: 214ms	remaining: 190ms
53:	learn: 19.9934873	total: 218ms	remaining: 186ms
54:	learn: 19.7879739	total: 222ms	remaining: 182ms
55:	learn: 19.6630460	total: 226ms	remaining: 178ms
56:	learn: 19.5152729	total: 230ms	remaining: 174ms
57:	learn: 19.3581128	total: 235ms	remaining: 170ms
58:	learn: 19.2209303	total: 239ms	remaining: 166ms
59:	learn: 19.0965248	total: 244ms	remaining: 162ms
60:	learn: 19.0035954	total: 248ms	remaining: 159ms
61:	learn: 18.8554149	total: 253ms	remaining: 155ms
62:	learn: 18.7095427	total: 257ms	remaining: 151ms
63:	learn: 18.5751494	total: 262ms	remaining: 147ms
64:	learn: 18.4678251	total: 266ms	remaining: 143ms
65:	learn: 18.3500325	total: 271ms	remaining: 139ms
66:	learn: 18.2088983	total: 275ms	remaining: 135ms
67:	learn: 18.0737705	total: 280ms	remaining: 132ms
68:	learn: 17.9325058	total: 284ms	remaining: 128ms
69:	learn: 17.8003911	total: 289ms	remaining: 124ms
70:	learn: 17.7385366	total: 293ms	remaining: 120ms
71:	learn: 17.6106998	total: 298ms	remaining: 116ms
72:	learn: 17.4816270	total: 302ms	remaining: 112ms
73:	learn: 17.4025554	total: 307ms	remaining: 108ms
74:	learn: 17.2902108	total: 311ms	remaining: 104ms
75:	learn: 17.2158048	total: 316ms	remaining: 99.7ms
76:	learn: 17.1261053	total: 320ms	remaining: 95.6ms
77:	learn: 17.0308917	total: 324ms	remaining: 91.4ms
78:	learn: 16.9546705	total: 328ms	remaining: 87.3ms
79:	learn: 16.8319165	total: 333ms	remaining: 83.1ms
80:	learn: 16.7687017	total: 337ms	remaining: 79ms
81:	learn: 16.6972326	total: 341ms	remaining: 74.8ms
82:	learn: 16.6124580	total: 345ms	remaining: 70.6ms
83:	learn: 16.4999052	total: 349ms	remaining: 66.5ms
84:	learn: 16.4302484	total: 354ms	remaining: 62.4ms
85:	learn: 16.3201363	total: 358ms	remaining: 58.3ms
86:	learn: 16.2534314	total: 362ms	remaining: 54.1ms
87:	learn: 16.1720485	total: 366ms	remaining: 49.9ms
88:	learn: 16.0625751	total: 370ms	remaining: 45.7ms
89:	learn: 15.9135088	total: 374ms	remaining: 41.6ms
90:	learn: 15.8658863	total: 378ms	remaining: 37.4ms
91:	learn: 15.8066805	total: 382ms	remaining: 33.2ms
92:	learn: 15.7412103	total: 387ms	remaining: 29.1ms
93:	learn: 15.6542776	total: 391ms	remaining: 25ms
94:	learn: 15.5760334	total: 395ms	remaining: 20.8ms
95:	learn: 15.5434131	total: 399ms	remaining: 16.6ms
96:	learn: 15.4709561	total: 403ms	remaining: 12.5ms
97:	learn: 15.4449618	total: 408ms	remaining: 8.32ms
98:	learn: 15.3752761	total: 412ms	remaining: 4.16ms
99:	learn: 15.3106595	total: 415ms	remaining: 0us
0:	learn: 46.7142257	total: 4.85ms	remaining: 480ms
1:	learn: 45.7634153	total: 8.92ms	remaining: 437ms
2:	learn: 45.0054253	total: 13ms	remaining: 422ms
3:	learn: 44.2120432	total: 16.9ms	remaining: 406ms
4:	learn: 43.3960472	total: 21.1ms	remaining: 401ms
5:	learn: 42.8588120	total: 25.2ms	remaining: 394ms
6:	learn: 41.9533701	total: 29.3ms	remaining: 389ms
7:	learn: 41.2745030	total: 33.7ms	remaining: 388ms
8:	learn: 40.6797495	total: 37.8ms	remaining: 382ms
9:	learn: 39.9899571	total: 41.9ms	remaining: 377ms
10:	learn: 39.4682100	total: 46.3ms	remaining: 374ms
11:	learn: 39.0305595	total: 50.9ms	remaining: 373ms
12:	learn: 38.4200417	total: 55.1ms	remaining: 369ms
13:	learn: 37.8425194	total: 59.6ms	remaining: 366ms
14:	learn: 37.4203127	total: 64ms	remaining: 363ms
15:	learn: 36.9917688	total: 68.4ms	remaining: 359ms
16:	learn: 36.5544138	total: 72.8ms	remaining: 356ms
17:	learn: 36.0727019	total: 76.8ms	remaining: 350ms
18:	learn: 35.4835715	total: 80.9ms	remaining: 345ms
19:	learn: 34.9865654	total: 84.8ms	remaining: 339ms
20:	learn: 34.6063373	total: 88.9ms	remaining: 335ms
21:	learn: 34.0997289	total: 93.1ms	remaining: 330ms
22:	learn: 33.7313171	total: 97.2ms	remaining: 325ms
23:	learn: 33.3582000	total: 101ms	remaining: 320ms
24:	learn: 32.9432456	total: 105ms	remaining: 315ms
25:	learn: 32.5220888	total: 110ms	remaining: 312ms
26:	learn: 32.2172292	total: 114ms	remaining: 309ms
27:	learn: 31.8972904	total: 119ms	remaining: 305ms
28:	learn: 31.6405350	total: 123ms	remaining: 301ms
29:	learn: 31.4167702	total: 128ms	remaining: 298ms
30:	learn: 30.8541961	total: 130ms	remaining: 288ms
31:	learn: 30.5572111	total: 135ms	remaining: 286ms
32:	learn: 30.1700399	total: 140ms	remaining: 284ms
33:	learn: 29.8537271	total: 145ms	remaining: 281ms
34:	learn: 29.6192540	total: 150ms	remaining: 279ms
35:	learn: 29.3276362	total: 155ms	remaining: 275ms
36:	learn: 28.9985179	total: 160ms	remaining: 272ms
37:	learn: 28.7046880	total: 165ms	remaining: 269ms
38:	learn: 28.4412677	total: 169ms	remaining: 264ms
39:	learn: 28.1277292	total: 173ms	remaining: 260ms
40:	learn: 27.9000750	total: 178ms	remaining: 256ms
41:	learn: 27.5433162	total: 182ms	remaining: 251ms
42:	learn: 27.2493285	total: 186ms	remaining: 247ms
43:	learn: 26.9576632	total: 188ms	remaining: 239ms
44:	learn: 26.6177110	total: 192ms	remaining: 234ms
45:	learn: 26.2812456	total: 196ms	remaining: 230ms
46:	learn: 26.0803859	total: 200ms	remaining: 225ms
47:	learn: 25.9543581	total: 204ms	remaining: 221ms
48:	learn: 25.7951582	total: 208ms	remaining: 216ms
49:	learn: 25.6548184	total: 212ms	remaining: 212ms
50:	learn: 25.4010843	total: 217ms	remaining: 208ms
51:	learn: 24.9773937	total: 221ms	remaining: 204ms
52:	learn: 24.8026156	total: 225ms	remaining: 199ms
53:	learn: 24.5568053	total: 229ms	remaining: 195ms
54:	learn: 24.2281839	total: 233ms	remaining: 191ms
55:	learn: 23.9202795	total: 237ms	remaining: 186ms
56:	learn: 23.7625591	total: 241ms	remaining: 182ms
57:	learn: 23.5429721	total: 245ms	remaining: 177ms
58:	learn: 23.3175893	total: 249ms	remaining: 173ms
59:	learn: 23.2035130	total: 253ms	remaining: 168ms
60:	learn: 23.0232450	total: 257ms	remaining: 164ms
61:	learn: 22.8384958	total: 261ms	remaining: 160ms
62:	learn: 22.6499902	total: 265ms	remaining: 156ms
63:	learn: 22.4577426	total: 269ms	remaining: 151ms
64:	learn: 22.3333158	total: 273ms	remaining: 147ms
65:	learn: 22.2064131	total: 277ms	remaining: 143ms
66:	learn: 22.1434971	total: 281ms	remaining: 139ms
67:	learn: 21.9596519	total: 285ms	remaining: 134ms
68:	learn: 21.8475576	total: 289ms	remaining: 130ms
69:	learn: 21.6954745	total: 294ms	remaining: 126ms
70:	learn: 21.5635976	total: 298ms	remaining: 122ms
71:	learn: 21.4588506	total: 302ms	remaining: 117ms
72:	learn: 21.3527268	total: 306ms	remaining: 113ms
73:	learn: 21.2661288	total: 310ms	remaining: 109ms
74:	learn: 21.1817333	total: 314ms	remaining: 105ms
75:	learn: 21.0527553	total: 318ms	remaining: 100ms
76:	learn: 20.9229021	total: 322ms	remaining: 96.2ms
77:	learn: 20.7563946	total: 326ms	remaining: 92ms
78:	learn: 20.6569831	total: 330ms	remaining: 87.8ms
79:	learn: 20.4982663	total: 334ms	remaining: 83.5ms
80:	learn: 20.3185460	total: 338ms	remaining: 79.3ms
81:	learn: 20.2096241	total: 342ms	remaining: 75.1ms
82:	learn: 20.1274891	total: 346ms	remaining: 70.9ms
83:	learn: 20.0740139	total: 351ms	remaining: 66.8ms
84:	learn: 19.9630699	total: 355ms	remaining: 62.6ms
85:	learn: 19.8753899	total: 359ms	remaining: 58.4ms
86:	learn: 19.6563612	total: 363ms	remaining: 54.3ms
87:	learn: 19.4680232	total: 368ms	remaining: 50.1ms
88:	learn: 19.3503431	total: 371ms	remaining: 45.9ms
89:	learn: 19.2221379	total: 375ms	remaining: 41.7ms
90:	learn: 19.0732542	total: 379ms	remaining: 37.5ms
91:	learn: 18.9825190	total: 383ms	remaining: 33.3ms
92:	learn: 18.8839009	total: 387ms	remaining: 29.1ms
93:	learn: 18.8012219	total: 391ms	remaining: 24.9ms
94:	learn: 18.7172713	total: 395ms	remaining: 20.8ms
95:	learn: 18.6201170	total: 399ms	remaining: 16.6ms
96:	learn: 18.5318611	total: 403ms	remaining: 12.5ms
97:	learn: 18.3833356	total: 407ms	remaining: 8.3ms
98:	learn: 18.3289700	total: 411ms	remaining: 4.15ms
99:	learn: 18.2227333	total: 415ms	remaining: 0us
0:	learn: 46.3764524	total: 4.54ms	remaining: 450ms
1:	learn: 45.5561269	total: 8.25ms	remaining: 404ms
2:	learn: 44.8811245	total: 12ms	remaining: 387ms
3:	learn: 44.0788617	total: 15.8ms	remaining: 379ms
4:	learn: 43.3619790	total: 19.9ms	remaining: 379ms
5:	learn: 42.6912112	total: 24ms	remaining: 376ms
6:	learn: 42.2292118	total: 27.9ms	remaining: 370ms
7:	learn: 41.7725191	total: 32.1ms	remaining: 369ms
8:	learn: 41.1676614	total: 36.2ms	remaining: 366ms
9:	learn: 40.5771076	total: 39.8ms	remaining: 359ms
10:	learn: 39.8343757	total: 43.7ms	remaining: 354ms
11:	learn: 39.3761142	total: 47.5ms	remaining: 348ms
12:	learn: 38.5254692	total: 51.6ms	remaining: 346ms
13:	learn: 37.9629555	total: 55.8ms	remaining: 343ms
14:	learn: 37.4418438	total: 59.6ms	remaining: 338ms
15:	learn: 37.0507283	total: 63.7ms	remaining: 334ms
16:	learn: 36.6264217	total: 67.5ms	remaining: 330ms
17:	learn: 36.1114940	total: 71.8ms	remaining: 327ms
18:	learn: 35.7193862	total: 75.6ms	remaining: 322ms
19:	learn: 35.3301177	total: 79.9ms	remaining: 319ms
20:	learn: 35.0598280	total: 84.4ms	remaining: 317ms
21:	learn: 34.5469736	total: 88.6ms	remaining: 314ms
22:	learn: 34.2064215	total: 92.7ms	remaining: 310ms
23:	learn: 33.7280710	total: 96.8ms	remaining: 306ms
24:	learn: 33.3282940	total: 101ms	remaining: 302ms
25:	learn: 32.8478961	total: 105ms	remaining: 299ms
26:	learn: 32.5722164	total: 109ms	remaining: 295ms
27:	learn: 32.2457019	total: 113ms	remaining: 291ms
28:	learn: 31.9230495	total: 117ms	remaining: 287ms
29:	learn: 31.4311611	total: 121ms	remaining: 283ms
30:	learn: 30.9179052	total: 125ms	remaining: 279ms
31:	learn: 30.6201141	total: 129ms	remaining: 274ms
32:	learn: 30.3421106	total: 133ms	remaining: 270ms
33:	learn: 29.9885373	total: 137ms	remaining: 266ms
34:	learn: 29.7462780	total: 141ms	remaining: 263ms
35:	learn: 29.3607153	total: 145ms	remaining: 258ms
36:	learn: 29.1793078	total: 149ms	remaining: 254ms
37:	learn: 28.9276538	total: 153ms	remaining: 249ms
38:	learn: 28.6903934	total: 158ms	remaining: 246ms
39:	learn: 28.2095033	total: 161ms	remaining: 242ms
40:	learn: 27.7990608	total: 165ms	remaining: 238ms
41:	learn: 27.5406632	total: 169ms	remaining: 234ms
42:	learn: 27.2575376	total: 174ms	remaining: 230ms
43:	learn: 26.9741707	total: 178ms	remaining: 227ms
44:	learn: 26.6606899	total: 182ms	remaining: 222ms
45:	learn: 26.4015833	total: 186ms	remaining: 219ms
46:	learn: 26.1828993	total: 190ms	remaining: 215ms
47:	learn: 26.0233709	total: 193ms	remaining: 209ms
48:	learn: 25.9300399	total: 197ms	remaining: 205ms
49:	learn: 25.5861489	total: 201ms	remaining: 201ms
50:	learn: 25.4322012	total: 205ms	remaining: 197ms
51:	learn: 25.1595644	total: 209ms	remaining: 193ms
52:	learn: 24.9955303	total: 213ms	remaining: 189ms
53:	learn: 24.7273966	total: 217ms	remaining: 185ms
54:	learn: 24.5747978	total: 221ms	remaining: 181ms
55:	learn: 24.3807977	total: 225ms	remaining: 177ms
56:	learn: 24.1689569	total: 229ms	remaining: 173ms
57:	learn: 23.9898221	total: 233ms	remaining: 169ms
58:	learn: 23.7566414	total: 237ms	remaining: 164ms
59:	learn: 23.6641165	total: 240ms	remaining: 160ms
60:	learn: 23.5658066	total: 244ms	remaining: 156ms
61:	learn: 23.4338851	total: 248ms	remaining: 152ms
62:	learn: 23.2408837	total: 252ms	remaining: 148ms
63:	learn: 23.0642038	total: 256ms	remaining: 144ms
64:	learn: 22.9032045	total: 260ms	remaining: 140ms
65:	learn: 22.7736138	total: 264ms	remaining: 136ms
66:	learn: 22.6836443	total: 268ms	remaining: 132ms
67:	learn: 22.5983654	total: 272ms	remaining: 128ms
68:	learn: 22.4419813	total: 276ms	remaining: 124ms
69:	learn: 22.2863339	total: 280ms	remaining: 120ms
70:	learn: 22.1792943	total: 284ms	remaining: 116ms
71:	learn: 22.1130574	total: 288ms	remaining: 112ms
72:	learn: 21.9858161	total: 292ms	remaining: 108ms
73:	learn: 21.8577784	total: 297ms	remaining: 104ms
74:	learn: 21.7845222	total: 301ms	remaining: 100ms
75:	learn: 21.6831390	total: 305ms	remaining: 96.3ms
76:	learn: 21.6292521	total: 309ms	remaining: 92.3ms
77:	learn: 21.5789330	total: 313ms	remaining: 88.4ms
78:	learn: 21.5420942	total: 317ms	remaining: 84.3ms
79:	learn: 21.4280939	total: 321ms	remaining: 80.2ms
80:	learn: 21.3641165	total: 325ms	remaining: 76.2ms
81:	learn: 21.2734814	total: 329ms	remaining: 72.2ms
82:	learn: 21.2220323	total: 333ms	remaining: 68.2ms
83:	learn: 21.0625792	total: 337ms	remaining: 64.3ms
84:	learn: 20.9488320	total: 341ms	remaining: 60.3ms
85:	learn: 20.8504255	total: 345ms	remaining: 56.2ms
86:	learn: 20.7848510	total: 349ms	remaining: 52.2ms
87:	learn: 20.7247442	total: 353ms	remaining: 48.1ms
88:	learn: 20.5698590	total: 357ms	remaining: 44.1ms
89:	learn: 20.4067620	total: 361ms	remaining: 40.1ms
90:	learn: 20.3062482	total: 364ms	remaining: 36ms
91:	learn: 20.2029696	total: 369ms	remaining: 32.1ms
92:	learn: 20.1384849	total: 373ms	remaining: 28.1ms
93:	learn: 20.0260709	total: 377ms	remaining: 24.1ms
94:	learn: 19.9122100	total: 381ms	remaining: 20ms
95:	learn: 19.8648487	total: 385ms	remaining: 16ms
96:	learn: 19.8207072	total: 389ms	remaining: 12ms
97:	learn: 19.7261189	total: 394ms	remaining: 8.04ms
98:	learn: 19.7042438	total: 398ms	remaining: 4.02ms
99:	learn: 19.6546645	total: 403ms	remaining: 0us
0:	learn: 47.0239288	total: 4.29ms	remaining: 424ms
1:	learn: 46.2253829	total: 7.96ms	remaining: 390ms
2:	learn: 45.5580301	total: 11.9ms	remaining: 386ms
3:	learn: 44.7273237	total: 16.1ms	remaining: 386ms
4:	learn: 43.8867421	total: 19.8ms	remaining: 377ms
5:	learn: 43.3615911	total: 23.4ms	remaining: 367ms
6:	learn: 42.8548390	total: 27.3ms	remaining: 363ms
7:	learn: 42.1606758	total: 31.3ms	remaining: 360ms
8:	learn: 41.6625870	total: 35.1ms	remaining: 355ms
9:	learn: 40.9497092	total: 38.7ms	remaining: 348ms
10:	learn: 40.1886318	total: 42.8ms	remaining: 347ms
11:	learn: 39.7456423	total: 47.5ms	remaining: 348ms
12:	learn: 39.1171373	total: 51.4ms	remaining: 344ms
13:	learn: 38.5451069	total: 55.3ms	remaining: 340ms
14:	learn: 38.0155834	total: 59.2ms	remaining: 335ms
15:	learn: 37.5631354	total: 64.1ms	remaining: 337ms
16:	learn: 37.1030023	total: 67.8ms	remaining: 331ms
17:	learn: 36.4563029	total: 71.7ms	remaining: 326ms
18:	learn: 36.0160976	total: 75.8ms	remaining: 323ms
19:	learn: 35.5079827	total: 80ms	remaining: 320ms
20:	learn: 35.2111885	total: 84ms	remaining: 316ms
21:	learn: 34.9397465	total: 87.8ms	remaining: 311ms
22:	learn: 34.5270048	total: 92ms	remaining: 308ms
23:	learn: 34.0169260	total: 96.3ms	remaining: 305ms
24:	learn: 33.7454892	total: 100ms	remaining: 300ms
25:	learn: 33.2648157	total: 104ms	remaining: 296ms
26:	learn: 32.8899427	total: 108ms	remaining: 292ms
27:	learn: 32.6185050	total: 112ms	remaining: 289ms
28:	learn: 32.3528531	total: 116ms	remaining: 285ms
29:	learn: 32.0859923	total: 120ms	remaining: 280ms
30:	learn: 31.6511144	total: 124ms	remaining: 276ms
31:	learn: 31.2571765	total: 128ms	remaining: 272ms
32:	learn: 30.9770049	total: 132ms	remaining: 268ms
33:	learn: 30.6084872	total: 136ms	remaining: 264ms
34:	learn: 30.3448632	total: 140ms	remaining: 260ms
35:	learn: 30.0360942	total: 144ms	remaining: 255ms
36:	learn: 29.6648968	total: 148ms	remaining: 251ms
37:	learn: 29.3165114	total: 151ms	remaining: 247ms
38:	learn: 29.0829198	total: 155ms	remaining: 243ms
39:	learn: 28.7752064	total: 159ms	remaining: 239ms
40:	learn: 28.3622191	total: 163ms	remaining: 235ms
41:	learn: 28.1346631	total: 167ms	remaining: 231ms
42:	learn: 27.9585719	total: 172ms	remaining: 228ms
43:	learn: 27.6565566	total: 176ms	remaining: 224ms
44:	learn: 27.3616172	total: 180ms	remaining: 219ms
45:	learn: 27.0658637	total: 184ms	remaining: 216ms
46:	learn: 26.8660382	total: 188ms	remaining: 212ms
47:	learn: 26.6536078	total: 192ms	remaining: 208ms
48:	learn: 26.3524440	total: 195ms	remaining: 203ms
49:	learn: 26.1595277	total: 199ms	remaining: 199ms
50:	learn: 25.9273523	total: 204ms	remaining: 196ms
51:	learn: 25.7195580	total: 209ms	remaining: 193ms
52:	learn: 25.5730225	total: 213ms	remaining: 189ms
53:	learn: 25.3455276	total: 218ms	remaining: 185ms
54:	learn: 25.2289675	total: 222ms	remaining: 182ms
55:	learn: 25.0133024	total: 226ms	remaining: 178ms
56:	learn: 24.8406714	total: 231ms	remaining: 174ms
57:	learn: 24.6367857	total: 235ms	remaining: 170ms
58:	learn: 24.5338177	total: 239ms	remaining: 166ms
59:	learn: 24.3799964	total: 244ms	remaining: 162ms
60:	learn: 24.1447492	total: 248ms	remaining: 158ms
61:	learn: 23.9880495	total: 252ms	remaining: 154ms
62:	learn: 23.7140630	total: 257ms	remaining: 151ms
63:	learn: 23.5003791	total: 262ms	remaining: 147ms
64:	learn: 23.3207645	total: 266ms	remaining: 143ms
65:	learn: 23.1958356	total: 271ms	remaining: 139ms
66:	learn: 23.0471302	total: 276ms	remaining: 136ms
67:	learn: 22.8977183	total: 280ms	remaining: 132ms
68:	learn: 22.7187400	total: 284ms	remaining: 128ms
69:	learn: 22.6523405	total: 289ms	remaining: 124ms
70:	learn: 22.4767453	total: 292ms	remaining: 119ms
71:	learn: 22.3243677	total: 296ms	remaining: 115ms
72:	learn: 22.2133096	total: 299ms	remaining: 111ms
73:	learn: 22.1151713	total: 303ms	remaining: 106ms
74:	learn: 22.0296666	total: 307ms	remaining: 102ms
75:	learn: 21.9195980	total: 311ms	remaining: 98.3ms
76:	learn: 21.8401730	total: 315ms	remaining: 94.1ms
77:	learn: 21.8079797	total: 319ms	remaining: 89.9ms
78:	learn: 21.7274109	total: 323ms	remaining: 85.8ms
79:	learn: 21.6663032	total: 326ms	remaining: 81.6ms
80:	learn: 21.5633117	total: 330ms	remaining: 77.4ms
81:	learn: 21.4542467	total: 334ms	remaining: 73.3ms
82:	learn: 21.3177957	total: 338ms	remaining: 69.2ms
83:	learn: 21.1289167	total: 342ms	remaining: 65.2ms
84:	learn: 21.0297368	total: 346ms	remaining: 61.1ms
85:	learn: 20.9089564	total: 350ms	remaining: 57.1ms
86:	learn: 20.7653988	total: 355ms	remaining: 53ms
87:	learn: 20.6521894	total: 359ms	remaining: 48.9ms
88:	learn: 20.5193021	total: 362ms	remaining: 44.8ms
89:	learn: 20.4361620	total: 366ms	remaining: 40.7ms
90:	learn: 20.3546710	total: 370ms	remaining: 36.6ms
91:	learn: 20.2513296	total: 374ms	remaining: 32.5ms
92:	learn: 20.1605550	total: 378ms	remaining: 28.4ms
93:	learn: 20.0515942	total: 382ms	remaining: 24.4ms
94:	learn: 19.9800764	total: 386ms	remaining: 20.3ms
95:	learn: 19.8996532	total: 390ms	remaining: 16.3ms
96:	learn: 19.8450910	total: 394ms	remaining: 12.2ms
97:	learn: 19.7887346	total: 398ms	remaining: 8.12ms
98:	learn: 19.7230872	total: 402ms	remaining: 4.06ms
99:	learn: 19.6328825	total: 406ms	remaining: 0us
MAE CV para CatBoostRegressor: 17.778876177825914

Con el fin de realizar un experimento más con modelos combinados personalizados, se decide entrenar por separado el dataset según el siguiente criterio:

  • Se buscará el mejor modelo para predecir total_cases de la ciudad de sj (0)
  • Se buscará el mejor modelo para predecir total_cases de la ciudad de iq (1)

Esto viene orientado por la exploración de características, donde se vió que, claramente, hay una gran diferente entre la distribución de casos para una ciudad que para otra.

In [91]:
#Se divide el dataset en sj e iq
X_sj = X[X['city'] == 1]
ind_sj = X_sj.index.tolist()
y_sj = y.loc[ind_sj]
X_iq = X[X['city'] == 0]
ind_iq = X_iq.index.tolist()
y_iq = y.loc[ind_iq]

Se visualizan los modelos que se tienen hasta el momento en el summary

In [89]:
summary['Modelo']
Out[89]:
['Rando_0',
 'SVR_1',
 'KNeig_2',
 'Gauss_3',
 'XGBRe_4',
 'LGBMR_5',
 'CatBo_6',
 'Rando_7',
 'KNeig_8',
 'XGBRe_9',
 'LGBMR_10',
 'CatBo_11']

Es importante tener en cuenta que, a partir del índice _12 en adelante, corresponderá a modelos entrenados con parcialidad del dataframe.

In [93]:
try_models(X_sj, y_sj, dict_models, dict_cols_selected, dict_params)
try_models(X_iq, y_iq, dict_models, dict_cols_selected, dict_params)
MAE CV para RandomForestRegressor: 38.754330910090076
MAE CV para KNeighborsRegressor: 25.549198380044068
MAE CV para XGBRegressor: 33.819491550486575
[LightGBM] [Info] Auto-choosing row-wise multi-threading, the overhead of testing was 0.000604 seconds.
You can set `force_row_wise=true` to remove the overhead.
And if memory is not enough, you can set `force_col_wise=true`.
[LightGBM] [Info] Total Bins 1687
[LightGBM] [Info] Number of data points in the train set: 744, number of used features: 13
[LightGBM] [Info] Start training from score 33.266129
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000101 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1684
[LightGBM] [Info] Number of data points in the train set: 744, number of used features: 13
[LightGBM] [Info] Start training from score 30.240591
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000138 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1687
[LightGBM] [Info] Number of data points in the train set: 744, number of used features: 13
[LightGBM] [Info] Start training from score 32.229839
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000094 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1690
[LightGBM] [Info] Number of data points in the train set: 744, number of used features: 13
[LightGBM] [Info] Start training from score 38.430108
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000127 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1683
[LightGBM] [Info] Number of data points in the train set: 744, number of used features: 13
[LightGBM] [Info] Start training from score 36.446237
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
MAE CV para LGBMRegressor: 31.901516968774796
0:	learn: 54.5303402	total: 16ms	remaining: 1.59s
1:	learn: 53.8300347	total: 17.5ms	remaining: 857ms
2:	learn: 52.7851259	total: 21.1ms	remaining: 682ms
3:	learn: 51.8008852	total: 24.2ms	remaining: 580ms
4:	learn: 51.0397237	total: 27.4ms	remaining: 521ms
5:	learn: 50.3152137	total: 31.2ms	remaining: 489ms
6:	learn: 49.4365689	total: 34.8ms	remaining: 463ms
7:	learn: 48.8575042	total: 38.2ms	remaining: 440ms
8:	learn: 48.0555321	total: 41.7ms	remaining: 422ms
9:	learn: 47.2146754	total: 45.2ms	remaining: 407ms
10:	learn: 46.4846862	total: 49ms	remaining: 396ms
11:	learn: 45.9988678	total: 53ms	remaining: 389ms
12:	learn: 45.4441597	total: 56.7ms	remaining: 380ms
13:	learn: 44.8415601	total: 60.3ms	remaining: 371ms
14:	learn: 44.1649745	total: 65.2ms	remaining: 369ms
15:	learn: 43.7241397	total: 68.9ms	remaining: 362ms
16:	learn: 43.2607734	total: 72.2ms	remaining: 352ms
17:	learn: 42.4683700	total: 75.4ms	remaining: 343ms
18:	learn: 41.7944681	total: 79.1ms	remaining: 337ms
19:	learn: 41.2942385	total: 82.9ms	remaining: 332ms
20:	learn: 40.8338752	total: 86.4ms	remaining: 325ms
21:	learn: 40.4070053	total: 89.4ms	remaining: 317ms
22:	learn: 39.9653334	total: 92.6ms	remaining: 310ms
23:	learn: 39.5036587	total: 96.7ms	remaining: 306ms
24:	learn: 39.0343229	total: 101ms	remaining: 302ms
25:	learn: 38.4780698	total: 104ms	remaining: 296ms
26:	learn: 38.0388120	total: 107ms	remaining: 290ms
27:	learn: 37.6755132	total: 111ms	remaining: 285ms
28:	learn: 37.3525491	total: 115ms	remaining: 281ms
29:	learn: 36.7181652	total: 118ms	remaining: 275ms
30:	learn: 36.2983153	total: 121ms	remaining: 270ms
31:	learn: 35.8939015	total: 124ms	remaining: 264ms
32:	learn: 35.5013780	total: 128ms	remaining: 260ms
33:	learn: 35.1029808	total: 132ms	remaining: 255ms
34:	learn: 34.7448854	total: 135ms	remaining: 251ms
35:	learn: 34.3560636	total: 138ms	remaining: 245ms
36:	learn: 33.9601380	total: 141ms	remaining: 241ms
37:	learn: 33.7317525	total: 146ms	remaining: 238ms
38:	learn: 33.2596022	total: 149ms	remaining: 233ms
39:	learn: 32.9798638	total: 152ms	remaining: 228ms
40:	learn: 32.6792993	total: 155ms	remaining: 224ms
41:	learn: 32.3345858	total: 159ms	remaining: 220ms
42:	learn: 32.0666130	total: 163ms	remaining: 216ms
43:	learn: 31.7058038	total: 166ms	remaining: 212ms
44:	learn: 31.3803320	total: 169ms	remaining: 207ms
45:	learn: 30.8401440	total: 173ms	remaining: 203ms
46:	learn: 30.5508046	total: 177ms	remaining: 199ms
47:	learn: 30.2912455	total: 180ms	remaining: 195ms
48:	learn: 30.0892729	total: 184ms	remaining: 191ms
49:	learn: 29.8341266	total: 187ms	remaining: 187ms
50:	learn: 29.6655179	total: 190ms	remaining: 183ms
51:	learn: 29.4482056	total: 194ms	remaining: 179ms
52:	learn: 29.2648634	total: 198ms	remaining: 175ms
53:	learn: 28.9380228	total: 201ms	remaining: 171ms
54:	learn: 28.6980155	total: 205ms	remaining: 168ms
55:	learn: 28.4402353	total: 209ms	remaining: 164ms
56:	learn: 28.2152499	total: 213ms	remaining: 161ms
57:	learn: 27.8966604	total: 216ms	remaining: 157ms
58:	learn: 27.6056064	total: 220ms	remaining: 153ms
59:	learn: 27.4467980	total: 223ms	remaining: 149ms
60:	learn: 27.1704619	total: 227ms	remaining: 145ms
61:	learn: 26.9748704	total: 230ms	remaining: 141ms
62:	learn: 26.6698521	total: 234ms	remaining: 138ms
63:	learn: 26.3865610	total: 238ms	remaining: 134ms
64:	learn: 26.1238205	total: 242ms	remaining: 130ms
65:	learn: 25.8870606	total: 244ms	remaining: 126ms
66:	learn: 25.6515925	total: 247ms	remaining: 122ms
67:	learn: 25.3835893	total: 250ms	remaining: 118ms
68:	learn: 25.1878049	total: 254ms	remaining: 114ms
69:	learn: 25.0614984	total: 258ms	remaining: 110ms
70:	learn: 24.9502990	total: 261ms	remaining: 107ms
71:	learn: 24.7568737	total: 265ms	remaining: 103ms
72:	learn: 24.5705866	total: 268ms	remaining: 99ms
73:	learn: 24.3991525	total: 271ms	remaining: 95.1ms
74:	learn: 24.2680257	total: 275ms	remaining: 91.6ms
75:	learn: 24.1301625	total: 278ms	remaining: 87.9ms
76:	learn: 24.0610255	total: 281ms	remaining: 84.1ms
77:	learn: 23.8045623	total: 284ms	remaining: 80.2ms
78:	learn: 23.6992919	total: 288ms	remaining: 76.6ms
79:	learn: 23.6309807	total: 290ms	remaining: 72.5ms
80:	learn: 23.5009525	total: 294ms	remaining: 68.9ms
81:	learn: 23.3587192	total: 297ms	remaining: 65.2ms
82:	learn: 23.2594708	total: 300ms	remaining: 61.4ms
83:	learn: 23.1522742	total: 303ms	remaining: 57.7ms
84:	learn: 23.0457666	total: 308ms	remaining: 54.3ms
85:	learn: 22.9695138	total: 311ms	remaining: 50.6ms
86:	learn: 22.7858886	total: 314ms	remaining: 46.9ms
87:	learn: 22.6251176	total: 317ms	remaining: 43.2ms
88:	learn: 22.5290878	total: 321ms	remaining: 39.6ms
89:	learn: 22.4079400	total: 324ms	remaining: 36ms
90:	learn: 22.2688389	total: 328ms	remaining: 32.4ms
91:	learn: 22.1617629	total: 331ms	remaining: 28.8ms
92:	learn: 22.0421286	total: 334ms	remaining: 25.1ms
93:	learn: 21.9764865	total: 338ms	remaining: 21.6ms
94:	learn: 21.8954016	total: 342ms	remaining: 18ms
95:	learn: 21.7611871	total: 345ms	remaining: 14.4ms
96:	learn: 21.6714092	total: 348ms	remaining: 10.8ms
97:	learn: 21.5649095	total: 351ms	remaining: 7.17ms
98:	learn: 21.4420251	total: 355ms	remaining: 3.59ms
99:	learn: 21.3045639	total: 359ms	remaining: 0us
0:	learn: 35.0127668	total: 4.37ms	remaining: 432ms
1:	learn: 34.4715178	total: 6.34ms	remaining: 311ms
2:	learn: 33.9814864	total: 9.96ms	remaining: 322ms
3:	learn: 33.5187081	total: 13.4ms	remaining: 322ms
4:	learn: 33.1384246	total: 17.2ms	remaining: 327ms
5:	learn: 32.6553018	total: 20.7ms	remaining: 325ms
6:	learn: 32.3145985	total: 25.5ms	remaining: 339ms
7:	learn: 31.9888071	total: 28.7ms	remaining: 330ms
8:	learn: 31.6316238	total: 32ms	remaining: 324ms
9:	learn: 31.2665981	total: 35.4ms	remaining: 318ms
10:	learn: 30.7977683	total: 39.2ms	remaining: 318ms
11:	learn: 30.3840891	total: 42.8ms	remaining: 314ms
12:	learn: 30.0295926	total: 46.1ms	remaining: 308ms
13:	learn: 29.7020198	total: 49.2ms	remaining: 302ms
14:	learn: 29.3345150	total: 52.4ms	remaining: 297ms
15:	learn: 29.0645582	total: 56.6ms	remaining: 297ms
16:	learn: 28.8075779	total: 59.9ms	remaining: 293ms
17:	learn: 28.4153197	total: 63.3ms	remaining: 288ms
18:	learn: 28.1686584	total: 66.5ms	remaining: 284ms
19:	learn: 27.9511756	total: 70.1ms	remaining: 280ms
20:	learn: 27.6829863	total: 73.9ms	remaining: 278ms
21:	learn: 27.4296673	total: 77ms	remaining: 273ms
22:	learn: 27.1371667	total: 80.2ms	remaining: 268ms
23:	learn: 26.8575214	total: 83.2ms	remaining: 264ms
24:	learn: 26.6221286	total: 86.9ms	remaining: 261ms
25:	learn: 26.4229938	total: 90.6ms	remaining: 258ms
26:	learn: 26.2672709	total: 94ms	remaining: 254ms
27:	learn: 26.0975315	total: 97.2ms	remaining: 250ms
28:	learn: 25.9798022	total: 100ms	remaining: 245ms
29:	learn: 25.8012544	total: 104ms	remaining: 244ms
30:	learn: 25.6549352	total: 108ms	remaining: 240ms
31:	learn: 25.4911824	total: 111ms	remaining: 236ms
32:	learn: 25.3368990	total: 114ms	remaining: 232ms
33:	learn: 25.1917349	total: 117ms	remaining: 228ms
34:	learn: 24.9857254	total: 121ms	remaining: 225ms
35:	learn: 24.8829746	total: 125ms	remaining: 221ms
36:	learn: 24.7505594	total: 128ms	remaining: 217ms
37:	learn: 24.5858476	total: 131ms	remaining: 213ms
38:	learn: 24.3770070	total: 134ms	remaining: 210ms
39:	learn: 24.2806877	total: 138ms	remaining: 208ms
40:	learn: 24.1352462	total: 142ms	remaining: 204ms
41:	learn: 23.9905928	total: 145ms	remaining: 201ms
42:	learn: 23.8513950	total: 148ms	remaining: 197ms
43:	learn: 23.7059701	total: 152ms	remaining: 194ms
44:	learn: 23.4968670	total: 155ms	remaining: 190ms
45:	learn: 23.3775055	total: 159ms	remaining: 187ms
46:	learn: 23.2786428	total: 162ms	remaining: 183ms
47:	learn: 23.1443630	total: 165ms	remaining: 179ms
48:	learn: 23.0411199	total: 169ms	remaining: 176ms
49:	learn: 22.8486184	total: 173ms	remaining: 173ms
50:	learn: 22.7763856	total: 176ms	remaining: 169ms
51:	learn: 22.6573642	total: 179ms	remaining: 165ms
52:	learn: 22.5493370	total: 182ms	remaining: 161ms
53:	learn: 22.4174820	total: 186ms	remaining: 159ms
54:	learn: 22.2774466	total: 190ms	remaining: 155ms
55:	learn: 22.1596752	total: 193ms	remaining: 152ms
56:	learn: 22.0913532	total: 196ms	remaining: 148ms
57:	learn: 21.9631668	total: 200ms	remaining: 145ms
58:	learn: 21.8597946	total: 205ms	remaining: 142ms
59:	learn: 21.7565276	total: 208ms	remaining: 139ms
60:	learn: 21.6663335	total: 211ms	remaining: 135ms
61:	learn: 21.5581825	total: 214ms	remaining: 131ms
62:	learn: 21.4482320	total: 219ms	remaining: 129ms
63:	learn: 21.3778923	total: 223ms	remaining: 125ms
64:	learn: 21.2331864	total: 226ms	remaining: 122ms
65:	learn: 21.1293368	total: 229ms	remaining: 118ms
66:	learn: 21.0100544	total: 234ms	remaining: 115ms
67:	learn: 20.8476439	total: 237ms	remaining: 112ms
68:	learn: 20.6474746	total: 241ms	remaining: 108ms
69:	learn: 20.5364464	total: 244ms	remaining: 105ms
70:	learn: 20.4867403	total: 247ms	remaining: 101ms
71:	learn: 20.4207081	total: 251ms	remaining: 97.7ms
72:	learn: 20.3598036	total: 255ms	remaining: 94.2ms
73:	learn: 20.1701452	total: 258ms	remaining: 90.6ms
74:	learn: 20.1444307	total: 261ms	remaining: 87ms
75:	learn: 20.0651109	total: 265ms	remaining: 83.6ms
76:	learn: 19.9617570	total: 268ms	remaining: 80.1ms
77:	learn: 19.9152588	total: 272ms	remaining: 76.6ms
78:	learn: 19.8289862	total: 275ms	remaining: 73.1ms
79:	learn: 19.7347366	total: 278ms	remaining: 69.5ms
80:	learn: 19.6480906	total: 282ms	remaining: 66.1ms
81:	learn: 19.5502533	total: 285ms	remaining: 62.6ms
82:	learn: 19.4803422	total: 288ms	remaining: 59ms
83:	learn: 19.3946353	total: 292ms	remaining: 55.5ms
84:	learn: 19.3208317	total: 296ms	remaining: 52.2ms
85:	learn: 19.2580198	total: 300ms	remaining: 48.9ms
86:	learn: 19.2203583	total: 304ms	remaining: 45.5ms
87:	learn: 19.1728830	total: 308ms	remaining: 42ms
88:	learn: 19.1172662	total: 311ms	remaining: 38.5ms
89:	learn: 19.0505602	total: 316ms	remaining: 35.1ms
90:	learn: 18.9452872	total: 320ms	remaining: 31.6ms
91:	learn: 18.9017960	total: 323ms	remaining: 28.1ms
92:	learn: 18.8520685	total: 326ms	remaining: 24.6ms
93:	learn: 18.7980003	total: 331ms	remaining: 21.1ms
94:	learn: 18.6988346	total: 335ms	remaining: 17.6ms
95:	learn: 18.5823444	total: 338ms	remaining: 14.1ms
96:	learn: 18.5311830	total: 341ms	remaining: 10.6ms
97:	learn: 18.4789479	total: 345ms	remaining: 7.04ms
98:	learn: 18.3995392	total: 349ms	remaining: 3.52ms
99:	learn: 18.3094765	total: 352ms	remaining: 0us
0:	learn: 50.9900241	total: 3.88ms	remaining: 384ms
1:	learn: 49.8173755	total: 5.08ms	remaining: 249ms
2:	learn: 48.8210590	total: 8.29ms	remaining: 268ms
3:	learn: 47.7663532	total: 11.5ms	remaining: 275ms
4:	learn: 46.9706004	total: 15.5ms	remaining: 294ms
5:	learn: 46.1039095	total: 19.9ms	remaining: 312ms
6:	learn: 45.3769112	total: 23.3ms	remaining: 310ms
7:	learn: 44.7292411	total: 26.5ms	remaining: 305ms
8:	learn: 44.1804072	total: 30.1ms	remaining: 304ms
9:	learn: 43.3368861	total: 34.1ms	remaining: 307ms
10:	learn: 42.5834713	total: 37.6ms	remaining: 304ms
11:	learn: 41.8705094	total: 40.8ms	remaining: 299ms
12:	learn: 41.0401659	total: 44.2ms	remaining: 296ms
13:	learn: 40.4174266	total: 48.7ms	remaining: 299ms
14:	learn: 39.6425889	total: 52.3ms	remaining: 297ms
15:	learn: 39.1503696	total: 55.7ms	remaining: 292ms
16:	learn: 38.4058126	total: 57.7ms	remaining: 282ms
17:	learn: 37.7655871	total: 61ms	remaining: 278ms
18:	learn: 36.9992788	total: 65.2ms	remaining: 278ms
19:	learn: 36.5119965	total: 68.8ms	remaining: 275ms
20:	learn: 36.0406684	total: 72.2ms	remaining: 271ms
21:	learn: 35.4548920	total: 75.6ms	remaining: 268ms
22:	learn: 35.0862211	total: 78.9ms	remaining: 264ms
23:	learn: 34.4906839	total: 82.7ms	remaining: 262ms
24:	learn: 33.8831925	total: 83.9ms	remaining: 252ms
25:	learn: 33.5242936	total: 87ms	remaining: 248ms
26:	learn: 33.1015523	total: 90.3ms	remaining: 244ms
27:	learn: 32.6882954	total: 93.7ms	remaining: 241ms
28:	learn: 32.3566354	total: 97.8ms	remaining: 239ms
29:	learn: 31.9309683	total: 101ms	remaining: 236ms
30:	learn: 31.5748409	total: 105ms	remaining: 233ms
31:	learn: 31.1867894	total: 108ms	remaining: 230ms
32:	learn: 30.7501569	total: 111ms	remaining: 226ms
33:	learn: 30.2624290	total: 116ms	remaining: 224ms
34:	learn: 29.8322803	total: 119ms	remaining: 221ms
35:	learn: 29.5889516	total: 123ms	remaining: 218ms
36:	learn: 29.1066064	total: 126ms	remaining: 214ms
37:	learn: 28.8157035	total: 129ms	remaining: 211ms
38:	learn: 28.4532337	total: 133ms	remaining: 208ms
39:	learn: 28.2182088	total: 136ms	remaining: 204ms
40:	learn: 27.8954400	total: 139ms	remaining: 200ms
41:	learn: 27.6152743	total: 142ms	remaining: 197ms
42:	learn: 27.2822482	total: 146ms	remaining: 194ms
43:	learn: 27.1363334	total: 150ms	remaining: 190ms
44:	learn: 26.8572503	total: 153ms	remaining: 187ms
45:	learn: 26.6152614	total: 157ms	remaining: 184ms
46:	learn: 26.3212937	total: 161ms	remaining: 181ms
47:	learn: 26.1453234	total: 165ms	remaining: 179ms
48:	learn: 25.8419356	total: 168ms	remaining: 175ms
49:	learn: 25.6050239	total: 172ms	remaining: 172ms
50:	learn: 25.3846852	total: 175ms	remaining: 168ms
51:	learn: 25.1796830	total: 179ms	remaining: 165ms
52:	learn: 24.9606315	total: 182ms	remaining: 162ms
53:	learn: 24.7433924	total: 186ms	remaining: 158ms
54:	learn: 24.4521657	total: 189ms	remaining: 155ms
55:	learn: 24.1808025	total: 192ms	remaining: 151ms
56:	learn: 24.0136713	total: 196ms	remaining: 148ms
57:	learn: 23.8050905	total: 200ms	remaining: 145ms
58:	learn: 23.5688994	total: 203ms	remaining: 141ms
59:	learn: 23.4121761	total: 206ms	remaining: 137ms
60:	learn: 23.1658870	total: 210ms	remaining: 134ms
61:	learn: 22.9892276	total: 214ms	remaining: 131ms
62:	learn: 22.8198065	total: 217ms	remaining: 128ms
63:	learn: 22.7083730	total: 221ms	remaining: 124ms
64:	learn: 22.5856192	total: 224ms	remaining: 120ms
65:	learn: 22.4952823	total: 228ms	remaining: 118ms
66:	learn: 22.3366601	total: 233ms	remaining: 115ms
67:	learn: 22.1394764	total: 236ms	remaining: 111ms
68:	learn: 21.9669067	total: 240ms	remaining: 108ms
69:	learn: 21.8124835	total: 250ms	remaining: 107ms
70:	learn: 21.5901782	total: 254ms	remaining: 104ms
71:	learn: 21.2976584	total: 259ms	remaining: 101ms
72:	learn: 21.0493908	total: 263ms	remaining: 97.4ms
73:	learn: 20.9503369	total: 267ms	remaining: 93.7ms
74:	learn: 20.8479145	total: 270ms	remaining: 90.1ms
75:	learn: 20.7031061	total: 274ms	remaining: 86.6ms
76:	learn: 20.5889637	total: 278ms	remaining: 83ms
77:	learn: 20.5224507	total: 281ms	remaining: 79.4ms
78:	learn: 20.4355333	total: 285ms	remaining: 75.7ms
79:	learn: 20.3172539	total: 288ms	remaining: 72ms
80:	learn: 20.1940023	total: 292ms	remaining: 68.5ms
81:	learn: 20.1512857	total: 296ms	remaining: 64.9ms
82:	learn: 19.9712279	total: 299ms	remaining: 61.2ms
83:	learn: 19.8181610	total: 302ms	remaining: 57.5ms
84:	learn: 19.6901936	total: 306ms	remaining: 54ms
85:	learn: 19.6224592	total: 310ms	remaining: 50.4ms
86:	learn: 19.5473740	total: 313ms	remaining: 46.8ms
87:	learn: 19.4099797	total: 316ms	remaining: 43.1ms
88:	learn: 19.3374187	total: 320ms	remaining: 39.5ms
89:	learn: 19.2395822	total: 324ms	remaining: 36ms
90:	learn: 19.1675834	total: 328ms	remaining: 32.4ms
91:	learn: 19.0808695	total: 331ms	remaining: 28.8ms
92:	learn: 18.9946067	total: 334ms	remaining: 25.1ms
93:	learn: 18.8717853	total: 338ms	remaining: 21.5ms
94:	learn: 18.7098827	total: 341ms	remaining: 18ms
95:	learn: 18.5789065	total: 345ms	remaining: 14.4ms
96:	learn: 18.4513591	total: 348ms	remaining: 10.8ms
97:	learn: 18.2830746	total: 351ms	remaining: 7.16ms
98:	learn: 18.1266828	total: 355ms	remaining: 3.58ms
99:	learn: 18.0375524	total: 358ms	remaining: 0us
0:	learn: 55.5263231	total: 4.25ms	remaining: 420ms
1:	learn: 54.8582090	total: 7.48ms	remaining: 366ms
2:	learn: 54.1413481	total: 10.5ms	remaining: 341ms
3:	learn: 53.3777599	total: 13.6ms	remaining: 327ms
4:	learn: 52.4785909	total: 17.4ms	remaining: 332ms
5:	learn: 51.6614863	total: 21.9ms	remaining: 344ms
6:	learn: 51.2028720	total: 25.6ms	remaining: 340ms
7:	learn: 50.5046913	total: 28.7ms	remaining: 330ms
8:	learn: 49.9986112	total: 32.4ms	remaining: 327ms
9:	learn: 49.2431424	total: 36.6ms	remaining: 329ms
10:	learn: 48.7316771	total: 40.4ms	remaining: 327ms
11:	learn: 48.1384006	total: 43.9ms	remaining: 322ms
12:	learn: 47.4900111	total: 47.1ms	remaining: 315ms
13:	learn: 46.9585157	total: 51.7ms	remaining: 318ms
14:	learn: 46.2310092	total: 54.9ms	remaining: 311ms
15:	learn: 45.6971147	total: 58.1ms	remaining: 305ms
16:	learn: 45.2274247	total: 61.2ms	remaining: 299ms
17:	learn: 44.3953842	total: 64.8ms	remaining: 295ms
18:	learn: 43.9749389	total: 68.6ms	remaining: 292ms
19:	learn: 43.5610654	total: 72ms	remaining: 288ms
20:	learn: 42.9639298	total: 75ms	remaining: 282ms
21:	learn: 42.5785091	total: 78.2ms	remaining: 277ms
22:	learn: 42.1893316	total: 82.2ms	remaining: 275ms
23:	learn: 41.6256502	total: 85.7ms	remaining: 271ms
24:	learn: 41.1091882	total: 88.9ms	remaining: 267ms
25:	learn: 40.7573797	total: 92ms	remaining: 262ms
26:	learn: 40.4121910	total: 95.2ms	remaining: 257ms
27:	learn: 39.8665053	total: 99ms	remaining: 255ms
28:	learn: 39.2744921	total: 103ms	remaining: 251ms
29:	learn: 38.9333408	total: 106ms	remaining: 247ms
30:	learn: 38.5332603	total: 109ms	remaining: 243ms
31:	learn: 38.1416640	total: 113ms	remaining: 239ms
32:	learn: 37.8212561	total: 116ms	remaining: 236ms
33:	learn: 37.4846446	total: 120ms	remaining: 232ms
34:	learn: 37.0503416	total: 123ms	remaining: 228ms
35:	learn: 36.6656775	total: 126ms	remaining: 224ms
36:	learn: 36.4752979	total: 130ms	remaining: 221ms
37:	learn: 35.9079427	total: 134ms	remaining: 218ms
38:	learn: 35.6046928	total: 137ms	remaining: 214ms
39:	learn: 35.5081341	total: 140ms	remaining: 210ms
40:	learn: 35.0888247	total: 144ms	remaining: 208ms
41:	learn: 34.7376085	total: 148ms	remaining: 205ms
42:	learn: 34.3790744	total: 152ms	remaining: 201ms
43:	learn: 34.0442926	total: 155ms	remaining: 197ms
44:	learn: 33.8177301	total: 158ms	remaining: 193ms
45:	learn: 33.4452020	total: 161ms	remaining: 189ms
46:	learn: 33.3056460	total: 165ms	remaining: 186ms
47:	learn: 33.1261776	total: 169ms	remaining: 183ms
48:	learn: 32.8925475	total: 172ms	remaining: 179ms
49:	learn: 32.7178330	total: 175ms	remaining: 175ms
50:	learn: 32.4830763	total: 179ms	remaining: 172ms
51:	learn: 32.3521655	total: 183ms	remaining: 169ms
52:	learn: 32.1075463	total: 186ms	remaining: 165ms
53:	learn: 31.9440175	total: 189ms	remaining: 161ms
54:	learn: 31.7790253	total: 192ms	remaining: 157ms
55:	learn: 31.5467208	total: 197ms	remaining: 154ms
56:	learn: 31.2836240	total: 200ms	remaining: 151ms
57:	learn: 30.9731839	total: 203ms	remaining: 147ms
58:	learn: 30.6388821	total: 206ms	remaining: 143ms
59:	learn: 30.4365909	total: 209ms	remaining: 139ms
60:	learn: 30.2177389	total: 213ms	remaining: 136ms
61:	learn: 30.0353316	total: 217ms	remaining: 133ms
62:	learn: 29.8521821	total: 220ms	remaining: 129ms
63:	learn: 29.5829016	total: 223ms	remaining: 126ms
64:	learn: 29.3663222	total: 227ms	remaining: 122ms
65:	learn: 29.2658781	total: 231ms	remaining: 119ms
66:	learn: 29.0537419	total: 234ms	remaining: 115ms
67:	learn: 28.8102778	total: 238ms	remaining: 112ms
68:	learn: 28.5847474	total: 241ms	remaining: 108ms
69:	learn: 28.2990539	total: 245ms	remaining: 105ms
70:	learn: 28.0645109	total: 249ms	remaining: 102ms
71:	learn: 27.7991991	total: 253ms	remaining: 98.3ms
72:	learn: 27.6314839	total: 256ms	remaining: 94.7ms
73:	learn: 27.5059244	total: 260ms	remaining: 91.3ms
74:	learn: 27.3100670	total: 264ms	remaining: 87.9ms
75:	learn: 27.1651197	total: 267ms	remaining: 84.3ms
76:	learn: 27.0280960	total: 270ms	remaining: 80.7ms
77:	learn: 26.8925290	total: 273ms	remaining: 77.1ms
78:	learn: 26.7591025	total: 277ms	remaining: 73.8ms
79:	learn: 26.6392634	total: 281ms	remaining: 70.3ms
80:	learn: 26.4258226	total: 284ms	remaining: 66.7ms
81:	learn: 26.2836589	total: 287ms	remaining: 63ms
82:	learn: 26.1301403	total: 291ms	remaining: 59.5ms
83:	learn: 26.0303888	total: 295ms	remaining: 56.1ms
84:	learn: 25.9695762	total: 298ms	remaining: 52.6ms
85:	learn: 25.9107330	total: 301ms	remaining: 49ms
86:	learn: 25.8203875	total: 304ms	remaining: 45.5ms
87:	learn: 25.6851430	total: 308ms	remaining: 42ms
88:	learn: 25.5621249	total: 312ms	remaining: 38.5ms
89:	learn: 25.4249952	total: 315ms	remaining: 35ms
90:	learn: 25.3005481	total: 318ms	remaining: 31.5ms
91:	learn: 25.1507340	total: 321ms	remaining: 27.9ms
92:	learn: 25.0751374	total: 325ms	remaining: 24.5ms
93:	learn: 24.9776425	total: 329ms	remaining: 21ms
94:	learn: 24.8635942	total: 332ms	remaining: 17.5ms
95:	learn: 24.7520682	total: 336ms	remaining: 14ms
96:	learn: 24.5880455	total: 339ms	remaining: 10.5ms
97:	learn: 24.4415396	total: 344ms	remaining: 7.01ms
98:	learn: 24.3262770	total: 347ms	remaining: 3.5ms
99:	learn: 24.0959523	total: 350ms	remaining: 0us
0:	learn: 54.4267027	total: 3.74ms	remaining: 370ms
1:	learn: 53.8332688	total: 7.39ms	remaining: 362ms
2:	learn: 53.2190393	total: 11.4ms	remaining: 368ms
3:	learn: 52.5628629	total: 19.5ms	remaining: 468ms
4:	learn: 51.7745461	total: 23ms	remaining: 438ms
5:	learn: 51.2819475	total: 26.8ms	remaining: 419ms
6:	learn: 50.7485639	total: 30.3ms	remaining: 403ms
7:	learn: 49.8200146	total: 34.3ms	remaining: 394ms
8:	learn: 49.0964206	total: 37.7ms	remaining: 381ms
9:	learn: 48.1841233	total: 41ms	remaining: 369ms
10:	learn: 47.3592410	total: 44.9ms	remaining: 363ms
11:	learn: 47.2802715	total: 48.8ms	remaining: 358ms
12:	learn: 46.8289890	total: 52.7ms	remaining: 353ms
13:	learn: 46.3513490	total: 56ms	remaining: 344ms
14:	learn: 45.5876734	total: 59.7ms	remaining: 338ms
15:	learn: 44.9176248	total: 64ms	remaining: 336ms
16:	learn: 44.2836823	total: 67.4ms	remaining: 329ms
17:	learn: 43.7106638	total: 70.5ms	remaining: 321ms
18:	learn: 43.2641665	total: 74.2ms	remaining: 316ms
19:	learn: 42.6576214	total: 79.4ms	remaining: 318ms
20:	learn: 41.9894312	total: 83.1ms	remaining: 313ms
21:	learn: 41.9131455	total: 86.5ms	remaining: 307ms
22:	learn: 41.2756371	total: 90.2ms	remaining: 302ms
23:	learn: 40.7960140	total: 94.8ms	remaining: 300ms
24:	learn: 40.0988842	total: 98.4ms	remaining: 295ms
25:	learn: 39.6812913	total: 102ms	remaining: 290ms
26:	learn: 39.2552290	total: 105ms	remaining: 284ms
27:	learn: 38.8552433	total: 109ms	remaining: 280ms
28:	learn: 38.2379159	total: 113ms	remaining: 276ms
29:	learn: 37.8472231	total: 116ms	remaining: 271ms
30:	learn: 37.0839035	total: 119ms	remaining: 265ms
31:	learn: 36.8461813	total: 122ms	remaining: 260ms
32:	learn: 36.3861409	total: 127ms	remaining: 258ms
33:	learn: 36.0228957	total: 130ms	remaining: 253ms
34:	learn: 35.6543107	total: 134ms	remaining: 248ms
35:	learn: 35.3304635	total: 137ms	remaining: 243ms
36:	learn: 35.2878559	total: 139ms	remaining: 236ms
37:	learn: 34.7799880	total: 143ms	remaining: 233ms
38:	learn: 34.5523132	total: 146ms	remaining: 229ms
39:	learn: 34.2324389	total: 149ms	remaining: 224ms
40:	learn: 33.8782429	total: 152ms	remaining: 219ms
41:	learn: 33.5362082	total: 156ms	remaining: 215ms
42:	learn: 33.2543585	total: 160ms	remaining: 212ms
43:	learn: 33.1054293	total: 163ms	remaining: 208ms
44:	learn: 32.7877736	total: 167ms	remaining: 204ms
45:	learn: 32.4328599	total: 170ms	remaining: 199ms
46:	learn: 32.1858771	total: 174ms	remaining: 196ms
47:	learn: 31.9313901	total: 177ms	remaining: 192ms
48:	learn: 31.4621793	total: 181ms	remaining: 188ms
49:	learn: 31.2268869	total: 184ms	remaining: 184ms
50:	learn: 30.8508378	total: 187ms	remaining: 180ms
51:	learn: 30.6480287	total: 191ms	remaining: 176ms
52:	learn: 30.2208136	total: 195ms	remaining: 173ms
53:	learn: 29.8895519	total: 198ms	remaining: 169ms
54:	learn: 29.6747480	total: 201ms	remaining: 165ms
55:	learn: 29.1996878	total: 205ms	remaining: 161ms
56:	learn: 29.0933956	total: 209ms	remaining: 157ms
57:	learn: 28.9271851	total: 212ms	remaining: 154ms
58:	learn: 28.7087906	total: 215ms	remaining: 150ms
59:	learn: 28.5095946	total: 219ms	remaining: 146ms
60:	learn: 28.1821706	total: 223ms	remaining: 142ms
61:	learn: 27.9759747	total: 226ms	remaining: 139ms
62:	learn: 27.8430030	total: 230ms	remaining: 135ms
63:	learn: 27.6487357	total: 233ms	remaining: 131ms
64:	learn: 27.4976611	total: 237ms	remaining: 128ms
65:	learn: 27.4325942	total: 241ms	remaining: 124ms
66:	learn: 27.2885055	total: 244ms	remaining: 120ms
67:	learn: 27.0935117	total: 248ms	remaining: 117ms
68:	learn: 26.8941528	total: 251ms	remaining: 113ms
69:	learn: 26.8322175	total: 256ms	remaining: 110ms
70:	learn: 26.6995820	total: 260ms	remaining: 106ms
71:	learn: 26.5200189	total: 263ms	remaining: 102ms
72:	learn: 26.2256593	total: 266ms	remaining: 98.5ms
73:	learn: 26.0369606	total: 270ms	remaining: 95ms
74:	learn: 25.9070298	total: 274ms	remaining: 91.2ms
75:	learn: 25.7076886	total: 278ms	remaining: 87.7ms
76:	learn: 25.5261848	total: 282ms	remaining: 84.2ms
77:	learn: 25.3628306	total: 287ms	remaining: 80.9ms
78:	learn: 25.2014285	total: 291ms	remaining: 77.5ms
79:	learn: 25.0376200	total: 295ms	remaining: 73.7ms
80:	learn: 24.9319463	total: 298ms	remaining: 69.9ms
81:	learn: 24.8373066	total: 302ms	remaining: 66.3ms
82:	learn: 24.6138129	total: 306ms	remaining: 62.6ms
83:	learn: 24.5884753	total: 309ms	remaining: 58.9ms
84:	learn: 24.5174603	total: 313ms	remaining: 55.1ms
85:	learn: 24.3953057	total: 316ms	remaining: 51.4ms
86:	learn: 24.1751763	total: 321ms	remaining: 47.9ms
87:	learn: 24.1120661	total: 324ms	remaining: 44.2ms
88:	learn: 24.0598704	total: 328ms	remaining: 40.5ms
89:	learn: 24.0038591	total: 331ms	remaining: 36.8ms
90:	learn: 23.9721362	total: 336ms	remaining: 33.2ms
91:	learn: 23.9069121	total: 340ms	remaining: 29.6ms
92:	learn: 23.6893599	total: 344ms	remaining: 25.9ms
93:	learn: 23.6399935	total: 347ms	remaining: 22.1ms
94:	learn: 23.4765012	total: 352ms	remaining: 18.5ms
95:	learn: 23.3467362	total: 356ms	remaining: 14.8ms
96:	learn: 23.2564328	total: 360ms	remaining: 11.1ms
97:	learn: 23.1315806	total: 364ms	remaining: 7.43ms
98:	learn: 23.0861096	total: 370ms	remaining: 3.73ms
99:	learn: 23.0655961	total: 375ms	remaining: 0us
MAE CV para CatBoostRegressor: 30.136953786618154
MAE CV para RandomForestRegressor: 7.672461546730363
MAE CV para KNeighborsRegressor: 6.669878167904761
MAE CV para XGBRegressor: 8.01155123684814
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000069 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1074
[LightGBM] [Info] Number of data points in the train set: 412, number of used features: 12
[LightGBM] [Info] Start training from score 8.788835
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000080 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1087
[LightGBM] [Info] Number of data points in the train set: 413, number of used features: 12
[LightGBM] [Info] Start training from score 7.900726
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000067 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1082
[LightGBM] [Info] Number of data points in the train set: 413, number of used features: 12
[LightGBM] [Info] Start training from score 6.690073
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000066 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1073
[LightGBM] [Info] Number of data points in the train set: 413, number of used features: 12
[LightGBM] [Info] Start training from score 7.513317
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000066 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1088
[LightGBM] [Info] Number of data points in the train set: 413, number of used features: 12
[LightGBM] [Info] Start training from score 7.094431
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
MAE CV para LGBMRegressor: 8.910662127937993
0:	learn: 11.4242352	total: 4.36ms	remaining: 431ms
1:	learn: 11.3160559	total: 8.11ms	remaining: 397ms
2:	learn: 11.2340406	total: 12.4ms	remaining: 402ms
3:	learn: 11.1710201	total: 16.2ms	remaining: 388ms
4:	learn: 11.0959627	total: 20ms	remaining: 381ms
5:	learn: 11.0196001	total: 23.8ms	remaining: 373ms
6:	learn: 10.9229213	total: 28.3ms	remaining: 375ms
7:	learn: 10.8648584	total: 32.4ms	remaining: 373ms
8:	learn: 10.8069779	total: 36.6ms	remaining: 370ms
9:	learn: 10.7393968	total: 40.6ms	remaining: 365ms
10:	learn: 10.6809945	total: 44.9ms	remaining: 363ms
11:	learn: 10.5806256	total: 49ms	remaining: 360ms
12:	learn: 10.5383851	total: 52.9ms	remaining: 354ms
13:	learn: 10.4971745	total: 57.6ms	remaining: 354ms
14:	learn: 10.4209846	total: 62.3ms	remaining: 353ms
15:	learn: 10.3445072	total: 66.2ms	remaining: 348ms
16:	learn: 10.2977511	total: 67.5ms	remaining: 330ms
17:	learn: 10.2313970	total: 71.1ms	remaining: 324ms
18:	learn: 10.1649343	total: 76.1ms	remaining: 324ms
19:	learn: 10.1235844	total: 80.7ms	remaining: 323ms
20:	learn: 10.0703019	total: 84.4ms	remaining: 318ms
21:	learn: 10.0267590	total: 88.1ms	remaining: 312ms
22:	learn: 9.9748510	total: 93.1ms	remaining: 312ms
23:	learn: 9.9345559	total: 96.6ms	remaining: 306ms
24:	learn: 9.8859717	total: 99.9ms	remaining: 300ms
25:	learn: 9.8242546	total: 103ms	remaining: 293ms
26:	learn: 9.7800937	total: 107ms	remaining: 290ms
27:	learn: 9.7158176	total: 111ms	remaining: 285ms
28:	learn: 9.6532920	total: 114ms	remaining: 280ms
29:	learn: 9.6115054	total: 118ms	remaining: 274ms
30:	learn: 9.5798613	total: 121ms	remaining: 269ms
31:	learn: 9.5487925	total: 125ms	remaining: 266ms
32:	learn: 9.4833174	total: 128ms	remaining: 261ms
33:	learn: 9.4436674	total: 132ms	remaining: 256ms
34:	learn: 9.3808915	total: 135ms	remaining: 251ms
35:	learn: 9.3316123	total: 139ms	remaining: 247ms
36:	learn: 9.2919784	total: 143ms	remaining: 243ms
37:	learn: 9.2420503	total: 146ms	remaining: 238ms
38:	learn: 9.2134288	total: 149ms	remaining: 234ms
39:	learn: 9.1889110	total: 153ms	remaining: 229ms
40:	learn: 9.1312128	total: 157ms	remaining: 226ms
41:	learn: 9.0993795	total: 161ms	remaining: 222ms
42:	learn: 9.0515011	total: 164ms	remaining: 217ms
43:	learn: 9.0163271	total: 167ms	remaining: 212ms
44:	learn: 8.9804380	total: 170ms	remaining: 208ms
45:	learn: 8.9424490	total: 174ms	remaining: 204ms
46:	learn: 8.9085970	total: 177ms	remaining: 200ms
47:	learn: 8.8472201	total: 180ms	remaining: 195ms
48:	learn: 8.8069645	total: 184ms	remaining: 191ms
49:	learn: 8.7597197	total: 188ms	remaining: 188ms
50:	learn: 8.7216216	total: 192ms	remaining: 184ms
51:	learn: 8.6690857	total: 195ms	remaining: 180ms
52:	learn: 8.6330741	total: 199ms	remaining: 177ms
53:	learn: 8.6025374	total: 202ms	remaining: 172ms
54:	learn: 8.5817450	total: 206ms	remaining: 169ms
55:	learn: 8.5486149	total: 210ms	remaining: 165ms
56:	learn: 8.5160480	total: 213ms	remaining: 161ms
57:	learn: 8.4873026	total: 217ms	remaining: 157ms
58:	learn: 8.4434865	total: 220ms	remaining: 153ms
59:	learn: 8.4076449	total: 224ms	remaining: 149ms
60:	learn: 8.3915847	total: 227ms	remaining: 145ms
61:	learn: 8.3588665	total: 230ms	remaining: 141ms
62:	learn: 8.3034911	total: 234ms	remaining: 137ms
63:	learn: 8.2681227	total: 238ms	remaining: 134ms
64:	learn: 8.2236521	total: 242ms	remaining: 130ms
65:	learn: 8.1788684	total: 245ms	remaining: 126ms
66:	learn: 8.1473596	total: 248ms	remaining: 122ms
67:	learn: 8.0998929	total: 252ms	remaining: 119ms
68:	learn: 8.0603461	total: 256ms	remaining: 115ms
69:	learn: 8.0172037	total: 259ms	remaining: 111ms
70:	learn: 7.9744423	total: 263ms	remaining: 107ms
71:	learn: 7.9406053	total: 266ms	remaining: 103ms
72:	learn: 7.9013787	total: 269ms	remaining: 99.6ms
73:	learn: 7.8699236	total: 273ms	remaining: 96ms
74:	learn: 7.8313361	total: 277ms	remaining: 92.3ms
75:	learn: 7.7899126	total: 280ms	remaining: 88.5ms
76:	learn: 7.7576247	total: 284ms	remaining: 84.7ms
77:	learn: 7.7225792	total: 287ms	remaining: 81.1ms
78:	learn: 7.6931551	total: 292ms	remaining: 77.5ms
79:	learn: 7.6632790	total: 295ms	remaining: 73.8ms
80:	learn: 7.6254055	total: 299ms	remaining: 70ms
81:	learn: 7.5915390	total: 303ms	remaining: 66.5ms
82:	learn: 7.5599692	total: 306ms	remaining: 62.8ms
83:	learn: 7.5357221	total: 310ms	remaining: 59.1ms
84:	learn: 7.5103623	total: 313ms	remaining: 55.3ms
85:	learn: 7.4585282	total: 317ms	remaining: 51.7ms
86:	learn: 7.4219208	total: 321ms	remaining: 48ms
87:	learn: 7.3991614	total: 324ms	remaining: 44.2ms
88:	learn: 7.3593591	total: 327ms	remaining: 40.5ms
89:	learn: 7.3190845	total: 331ms	remaining: 36.7ms
90:	learn: 7.2921038	total: 335ms	remaining: 33.2ms
91:	learn: 7.2696285	total: 339ms	remaining: 29.5ms
92:	learn: 7.2385107	total: 342ms	remaining: 25.7ms
93:	learn: 7.1744265	total: 345ms	remaining: 22ms
94:	learn: 7.1410152	total: 349ms	remaining: 18.4ms
95:	learn: 7.1248784	total: 353ms	remaining: 14.7ms
96:	learn: 7.1008808	total: 356ms	remaining: 11ms
97:	learn: 7.0705286	total: 359ms	remaining: 7.33ms
98:	learn: 7.0438679	total: 362ms	remaining: 3.66ms
99:	learn: 6.9991406	total: 367ms	remaining: 0us
0:	learn: 11.3118503	total: 3.86ms	remaining: 383ms
1:	learn: 11.2040202	total: 7.18ms	remaining: 352ms
2:	learn: 11.1304947	total: 10.4ms	remaining: 337ms
3:	learn: 11.0695668	total: 14.7ms	remaining: 352ms
4:	learn: 10.9756163	total: 18ms	remaining: 342ms
5:	learn: 10.9085627	total: 21.2ms	remaining: 332ms
6:	learn: 10.7965304	total: 24.6ms	remaining: 326ms
7:	learn: 10.7335630	total: 28.3ms	remaining: 326ms
8:	learn: 10.6331175	total: 32.2ms	remaining: 326ms
9:	learn: 10.5722001	total: 35.6ms	remaining: 320ms
10:	learn: 10.4898851	total: 38.9ms	remaining: 315ms
11:	learn: 10.4060136	total: 42.2ms	remaining: 309ms
12:	learn: 10.3586616	total: 46.5ms	remaining: 311ms
13:	learn: 10.3028128	total: 50.1ms	remaining: 308ms
14:	learn: 10.2082527	total: 53.3ms	remaining: 302ms
15:	learn: 10.1260244	total: 56.5ms	remaining: 297ms
16:	learn: 10.0702717	total: 59.8ms	remaining: 292ms
17:	learn: 9.9973799	total: 63.7ms	remaining: 290ms
18:	learn: 9.9472711	total: 67.4ms	remaining: 287ms
19:	learn: 9.8592055	total: 71.4ms	remaining: 286ms
20:	learn: 9.7688146	total: 74.6ms	remaining: 281ms
21:	learn: 9.6936308	total: 78.7ms	remaining: 279ms
22:	learn: 9.6881302	total: 82.2ms	remaining: 275ms
23:	learn: 9.6387686	total: 86.1ms	remaining: 273ms
24:	learn: 9.5896318	total: 89.8ms	remaining: 270ms
25:	learn: 9.5495984	total: 90.7ms	remaining: 258ms
26:	learn: 9.5050281	total: 95.2ms	remaining: 257ms
27:	learn: 9.4411093	total: 98.6ms	remaining: 254ms
28:	learn: 9.3854308	total: 102ms	remaining: 250ms
29:	learn: 9.3418022	total: 105ms	remaining: 246ms
30:	learn: 9.3015172	total: 109ms	remaining: 243ms
31:	learn: 9.2352094	total: 113ms	remaining: 240ms
32:	learn: 9.2025375	total: 117ms	remaining: 237ms
33:	learn: 9.1521687	total: 120ms	remaining: 233ms
34:	learn: 9.1294175	total: 123ms	remaining: 229ms
35:	learn: 9.0820958	total: 128ms	remaining: 227ms
36:	learn: 9.0206209	total: 132ms	remaining: 225ms
37:	learn: 8.9726854	total: 136ms	remaining: 222ms
38:	learn: 8.9289035	total: 140ms	remaining: 219ms
39:	learn: 8.8929857	total: 145ms	remaining: 217ms
40:	learn: 8.8387338	total: 149ms	remaining: 215ms
41:	learn: 8.7967158	total: 153ms	remaining: 211ms
42:	learn: 8.7802492	total: 156ms	remaining: 207ms
43:	learn: 8.7299052	total: 161ms	remaining: 204ms
44:	learn: 8.6914494	total: 164ms	remaining: 201ms
45:	learn: 8.6411132	total: 167ms	remaining: 197ms
46:	learn: 8.5936328	total: 171ms	remaining: 192ms
47:	learn: 8.5511722	total: 175ms	remaining: 189ms
48:	learn: 8.5260786	total: 179ms	remaining: 186ms
49:	learn: 8.4771472	total: 182ms	remaining: 182ms
50:	learn: 8.4326815	total: 185ms	remaining: 178ms
51:	learn: 8.4003569	total: 188ms	remaining: 174ms
52:	learn: 8.3570277	total: 193ms	remaining: 171ms
53:	learn: 8.3080121	total: 196ms	remaining: 167ms
54:	learn: 8.2652680	total: 200ms	remaining: 163ms
55:	learn: 8.2206225	total: 203ms	remaining: 159ms
56:	learn: 8.2034159	total: 207ms	remaining: 156ms
57:	learn: 8.1647147	total: 211ms	remaining: 153ms
58:	learn: 8.1287464	total: 214ms	remaining: 149ms
59:	learn: 8.0877887	total: 217ms	remaining: 145ms
60:	learn: 8.0575896	total: 221ms	remaining: 141ms
61:	learn: 8.0270365	total: 225ms	remaining: 138ms
62:	learn: 7.9800124	total: 228ms	remaining: 134ms
63:	learn: 7.9250814	total: 231ms	remaining: 130ms
64:	learn: 7.8867287	total: 235ms	remaining: 126ms
65:	learn: 7.8605885	total: 238ms	remaining: 123ms
66:	learn: 7.8353409	total: 242ms	remaining: 119ms
67:	learn: 7.8145494	total: 246ms	remaining: 116ms
68:	learn: 7.7741072	total: 249ms	remaining: 112ms
69:	learn: 7.7430148	total: 252ms	remaining: 108ms
70:	learn: 7.7136956	total: 257ms	remaining: 105ms
71:	learn: 7.6740374	total: 260ms	remaining: 101ms
72:	learn: 7.6422351	total: 264ms	remaining: 97.6ms
73:	learn: 7.6114274	total: 268ms	remaining: 94ms
74:	learn: 7.5875450	total: 271ms	remaining: 90.5ms
75:	learn: 7.5624244	total: 275ms	remaining: 86.9ms
76:	learn: 7.5393813	total: 278ms	remaining: 83.2ms
77:	learn: 7.5209279	total: 282ms	remaining: 79.5ms
78:	learn: 7.4898638	total: 286ms	remaining: 76.1ms
79:	learn: 7.4501948	total: 290ms	remaining: 72.6ms
80:	learn: 7.4224106	total: 294ms	remaining: 68.9ms
81:	learn: 7.3971452	total: 297ms	remaining: 65.2ms
82:	learn: 7.3744586	total: 300ms	remaining: 61.5ms
83:	learn: 7.3344009	total: 304ms	remaining: 58ms
84:	learn: 7.2888440	total: 308ms	remaining: 54.3ms
85:	learn: 7.2517645	total: 311ms	remaining: 50.7ms
86:	learn: 7.2249258	total: 314ms	remaining: 47ms
87:	learn: 7.1932726	total: 318ms	remaining: 43.3ms
88:	learn: 7.1739665	total: 322ms	remaining: 39.7ms
89:	learn: 7.1450250	total: 325ms	remaining: 36.1ms
90:	learn: 7.1353053	total: 328ms	remaining: 32.5ms
91:	learn: 7.0996316	total: 331ms	remaining: 28.8ms
92:	learn: 7.0674252	total: 335ms	remaining: 25.2ms
93:	learn: 7.0116437	total: 339ms	remaining: 21.6ms
94:	learn: 6.9417859	total: 342ms	remaining: 18ms
95:	learn: 6.9044501	total: 346ms	remaining: 14.4ms
96:	learn: 6.8900101	total: 349ms	remaining: 10.8ms
97:	learn: 6.8696365	total: 353ms	remaining: 7.2ms
98:	learn: 6.8464553	total: 357ms	remaining: 3.6ms
99:	learn: 6.8100060	total: 360ms	remaining: 0us
0:	learn: 9.1577889	total: 3.56ms	remaining: 352ms
1:	learn: 9.0937270	total: 6.73ms	remaining: 330ms
2:	learn: 8.9849952	total: 9.89ms	remaining: 320ms
3:	learn: 8.9811188	total: 11.9ms	remaining: 286ms
4:	learn: 8.8960567	total: 16.6ms	remaining: 316ms
5:	learn: 8.7872852	total: 20.1ms	remaining: 316ms
6:	learn: 8.7310172	total: 23.3ms	remaining: 310ms
7:	learn: 8.6698279	total: 26.5ms	remaining: 305ms
8:	learn: 8.6242323	total: 27.8ms	remaining: 281ms
9:	learn: 8.5797686	total: 32ms	remaining: 288ms
10:	learn: 8.5012142	total: 35.4ms	remaining: 286ms
11:	learn: 8.4180576	total: 38.6ms	remaining: 283ms
12:	learn: 8.3771168	total: 41.9ms	remaining: 280ms
13:	learn: 8.3125000	total: 46ms	remaining: 283ms
14:	learn: 8.2464671	total: 50.2ms	remaining: 284ms
15:	learn: 8.1855297	total: 53.5ms	remaining: 281ms
16:	learn: 8.1386202	total: 56.7ms	remaining: 277ms
17:	learn: 8.0924433	total: 61.3ms	remaining: 279ms
18:	learn: 8.0161971	total: 65ms	remaining: 277ms
19:	learn: 7.9453458	total: 68.3ms	remaining: 273ms
20:	learn: 7.8628754	total: 71.5ms	remaining: 269ms
21:	learn: 7.7948875	total: 75.8ms	remaining: 269ms
22:	learn: 7.7449492	total: 80.7ms	remaining: 270ms
23:	learn: 7.6983146	total: 85.2ms	remaining: 270ms
24:	learn: 7.6621428	total: 89.1ms	remaining: 267ms
25:	learn: 7.5787889	total: 93.5ms	remaining: 266ms
26:	learn: 7.5207758	total: 98.7ms	remaining: 267ms
27:	learn: 7.4832982	total: 104ms	remaining: 267ms
28:	learn: 7.4395833	total: 109ms	remaining: 267ms
29:	learn: 7.3972672	total: 114ms	remaining: 266ms
30:	learn: 7.3577242	total: 119ms	remaining: 264ms
31:	learn: 7.2825359	total: 124ms	remaining: 263ms
32:	learn: 7.2544283	total: 137ms	remaining: 278ms
33:	learn: 7.2404153	total: 142ms	remaining: 275ms
34:	learn: 7.2055060	total: 147ms	remaining: 273ms
35:	learn: 7.2013394	total: 150ms	remaining: 267ms
36:	learn: 7.1369200	total: 155ms	remaining: 263ms
37:	learn: 7.1016996	total: 160ms	remaining: 261ms
38:	learn: 7.0967204	total: 163ms	remaining: 254ms
39:	learn: 7.0587054	total: 168ms	remaining: 252ms
40:	learn: 6.9826956	total: 173ms	remaining: 249ms
41:	learn: 6.9767074	total: 178ms	remaining: 246ms
42:	learn: 6.9361033	total: 183ms	remaining: 242ms
43:	learn: 6.8970613	total: 187ms	remaining: 238ms
44:	learn: 6.8658404	total: 192ms	remaining: 235ms
45:	learn: 6.8233565	total: 198ms	remaining: 232ms
46:	learn: 6.8006144	total: 200ms	remaining: 226ms
47:	learn: 6.7651713	total: 205ms	remaining: 222ms
48:	learn: 6.7309445	total: 209ms	remaining: 218ms
49:	learn: 6.6876415	total: 213ms	remaining: 213ms
50:	learn: 6.6374900	total: 217ms	remaining: 208ms
51:	learn: 6.6320467	total: 218ms	remaining: 201ms
52:	learn: 6.6275090	total: 223ms	remaining: 198ms
53:	learn: 6.5762469	total: 228ms	remaining: 195ms
54:	learn: 6.5675197	total: 233ms	remaining: 191ms
55:	learn: 6.5547554	total: 237ms	remaining: 186ms
56:	learn: 6.5430480	total: 238ms	remaining: 179ms
57:	learn: 6.5389646	total: 242ms	remaining: 175ms
58:	learn: 6.5020488	total: 246ms	remaining: 171ms
59:	learn: 6.4964475	total: 250ms	remaining: 167ms
60:	learn: 6.4844914	total: 255ms	remaining: 163ms
61:	learn: 6.4642033	total: 258ms	remaining: 158ms
62:	learn: 6.4471654	total: 261ms	remaining: 154ms
63:	learn: 6.4100541	total: 265ms	remaining: 149ms
64:	learn: 6.4006239	total: 269ms	remaining: 145ms
65:	learn: 6.3955056	total: 274ms	remaining: 141ms
66:	learn: 6.3628917	total: 277ms	remaining: 137ms
67:	learn: 6.3562267	total: 281ms	remaining: 132ms
68:	learn: 6.3221745	total: 285ms	remaining: 128ms
69:	learn: 6.3158680	total: 289ms	remaining: 124ms
70:	learn: 6.2731052	total: 292ms	remaining: 119ms
71:	learn: 6.2678456	total: 295ms	remaining: 115ms
72:	learn: 6.2369142	total: 299ms	remaining: 110ms
73:	learn: 6.2041190	total: 302ms	remaining: 106ms
74:	learn: 6.1981355	total: 304ms	remaining: 101ms
75:	learn: 6.1740282	total: 307ms	remaining: 96.9ms
76:	learn: 6.1484050	total: 310ms	remaining: 92.6ms
77:	learn: 6.1314788	total: 314ms	remaining: 88.5ms
78:	learn: 6.1187054	total: 317ms	remaining: 84.3ms
79:	learn: 6.0839446	total: 321ms	remaining: 80.3ms
80:	learn: 6.0595172	total: 324ms	remaining: 76.1ms
81:	learn: 6.0376890	total: 328ms	remaining: 72ms
82:	learn: 6.0338987	total: 329ms	remaining: 67.4ms
83:	learn: 6.0195947	total: 333ms	remaining: 63.4ms
84:	learn: 5.9822152	total: 337ms	remaining: 59.5ms
85:	learn: 5.9761525	total: 340ms	remaining: 55.4ms
86:	learn: 5.9486994	total: 344ms	remaining: 51.3ms
87:	learn: 5.9213531	total: 347ms	remaining: 47.3ms
88:	learn: 5.8788675	total: 351ms	remaining: 43.3ms
89:	learn: 5.8541885	total: 355ms	remaining: 39.4ms
90:	learn: 5.8481820	total: 358ms	remaining: 35.4ms
91:	learn: 5.8427442	total: 361ms	remaining: 31.4ms
92:	learn: 5.8210947	total: 364ms	remaining: 27.4ms
93:	learn: 5.8110884	total: 369ms	remaining: 23.5ms
94:	learn: 5.7896859	total: 373ms	remaining: 19.6ms
95:	learn: 5.7453102	total: 376ms	remaining: 15.7ms
96:	learn: 5.7160668	total: 380ms	remaining: 11.7ms
97:	learn: 5.6862686	total: 384ms	remaining: 7.83ms
98:	learn: 5.6553201	total: 388ms	remaining: 3.92ms
99:	learn: 5.6140354	total: 392ms	remaining: 0us
0:	learn: 10.9567112	total: 3.9ms	remaining: 386ms
1:	learn: 10.8800519	total: 7.34ms	remaining: 360ms
2:	learn: 10.8054055	total: 10.8ms	remaining: 349ms
3:	learn: 10.7457368	total: 15.5ms	remaining: 372ms
4:	learn: 10.6677834	total: 19.5ms	remaining: 370ms
5:	learn: 10.5900455	total: 23ms	remaining: 361ms
6:	learn: 10.5156466	total: 26.6ms	remaining: 354ms
7:	learn: 10.4393102	total: 33.1ms	remaining: 380ms
8:	learn: 10.3462625	total: 37.1ms	remaining: 375ms
9:	learn: 10.2559704	total: 41.1ms	remaining: 370ms
10:	learn: 10.2026361	total: 45.7ms	remaining: 370ms
11:	learn: 10.1515470	total: 50.4ms	remaining: 370ms
12:	learn: 10.0891470	total: 53.8ms	remaining: 360ms
13:	learn: 10.0470981	total: 57.2ms	remaining: 351ms
14:	learn: 9.9843131	total: 61.5ms	remaining: 349ms
15:	learn: 9.8879159	total: 65.3ms	remaining: 343ms
16:	learn: 9.8228850	total: 68.8ms	remaining: 336ms
17:	learn: 9.7478592	total: 72.4ms	remaining: 330ms
18:	learn: 9.6816199	total: 75.8ms	remaining: 323ms
19:	learn: 9.6011884	total: 80.1ms	remaining: 320ms
20:	learn: 9.5444539	total: 83.9ms	remaining: 315ms
21:	learn: 9.4792078	total: 87.3ms	remaining: 310ms
22:	learn: 9.4089605	total: 90.9ms	remaining: 304ms
23:	learn: 9.3388378	total: 95.1ms	remaining: 301ms
24:	learn: 9.2873471	total: 99.1ms	remaining: 297ms
25:	learn: 9.2231720	total: 103ms	remaining: 292ms
26:	learn: 9.1709149	total: 106ms	remaining: 287ms
27:	learn: 9.1243710	total: 110ms	remaining: 283ms
28:	learn: 9.0784083	total: 114ms	remaining: 279ms
29:	learn: 9.0209959	total: 118ms	remaining: 275ms
30:	learn: 8.9607274	total: 121ms	remaining: 269ms
31:	learn: 8.8929979	total: 125ms	remaining: 265ms
32:	learn: 8.8407092	total: 129ms	remaining: 263ms
33:	learn: 8.7943084	total: 133ms	remaining: 259ms
34:	learn: 8.7462341	total: 137ms	remaining: 254ms
35:	learn: 8.7119309	total: 141ms	remaining: 251ms
36:	learn: 8.6736393	total: 146ms	remaining: 248ms
37:	learn: 8.6227430	total: 149ms	remaining: 243ms
38:	learn: 8.5776445	total: 153ms	remaining: 239ms
39:	learn: 8.5262452	total: 156ms	remaining: 234ms
40:	learn: 8.4843430	total: 161ms	remaining: 231ms
41:	learn: 8.4374706	total: 165ms	remaining: 228ms
42:	learn: 8.3913843	total: 168ms	remaining: 223ms
43:	learn: 8.3482801	total: 172ms	remaining: 219ms
44:	learn: 8.3038542	total: 177ms	remaining: 216ms
45:	learn: 8.2659922	total: 181ms	remaining: 212ms
46:	learn: 8.2315588	total: 184ms	remaining: 207ms
47:	learn: 8.2045222	total: 187ms	remaining: 203ms
48:	learn: 8.1646815	total: 192ms	remaining: 199ms
49:	learn: 8.1211267	total: 196ms	remaining: 196ms
50:	learn: 8.0816915	total: 199ms	remaining: 191ms
51:	learn: 8.0416494	total: 203ms	remaining: 187ms
52:	learn: 7.9961534	total: 207ms	remaining: 183ms
53:	learn: 7.9598269	total: 211ms	remaining: 180ms
54:	learn: 7.9322550	total: 214ms	remaining: 175ms
55:	learn: 7.8914479	total: 218ms	remaining: 171ms
56:	learn: 7.8564247	total: 222ms	remaining: 167ms
57:	learn: 7.8171006	total: 226ms	remaining: 164ms
58:	learn: 7.7832220	total: 230ms	remaining: 160ms
59:	learn: 7.7392478	total: 233ms	remaining: 155ms
60:	learn: 7.7009431	total: 236ms	remaining: 151ms
61:	learn: 7.6649197	total: 241ms	remaining: 148ms
62:	learn: 7.6290017	total: 245ms	remaining: 144ms
63:	learn: 7.6006540	total: 248ms	remaining: 140ms
64:	learn: 7.5538833	total: 251ms	remaining: 135ms
65:	learn: 7.5038157	total: 256ms	remaining: 132ms
66:	learn: 7.4775995	total: 260ms	remaining: 128ms
67:	learn: 7.4246882	total: 264ms	remaining: 124ms
68:	learn: 7.3604092	total: 267ms	remaining: 120ms
69:	learn: 7.3479348	total: 272ms	remaining: 117ms
70:	learn: 7.3253267	total: 275ms	remaining: 112ms
71:	learn: 7.2886445	total: 279ms	remaining: 109ms
72:	learn: 7.2584103	total: 282ms	remaining: 104ms
73:	learn: 7.2409968	total: 287ms	remaining: 101ms
74:	learn: 7.2122887	total: 291ms	remaining: 97.1ms
75:	learn: 7.1872870	total: 295ms	remaining: 93.1ms
76:	learn: 7.1460055	total: 298ms	remaining: 89ms
77:	learn: 7.1002987	total: 302ms	remaining: 85.2ms
78:	learn: 7.0775954	total: 306ms	remaining: 81.4ms
79:	learn: 7.0422726	total: 310ms	remaining: 77.4ms
80:	learn: 7.0036922	total: 313ms	remaining: 73.4ms
81:	learn: 6.9787570	total: 317ms	remaining: 69.6ms
82:	learn: 6.9543661	total: 321ms	remaining: 65.7ms
83:	learn: 6.9294076	total: 324ms	remaining: 61.8ms
84:	learn: 6.9105729	total: 328ms	remaining: 57.9ms
85:	learn: 6.8933448	total: 332ms	remaining: 54.1ms
86:	learn: 6.8694033	total: 335ms	remaining: 50.1ms
87:	learn: 6.8601803	total: 337ms	remaining: 45.9ms
88:	learn: 6.8292685	total: 340ms	remaining: 42ms
89:	learn: 6.8000164	total: 344ms	remaining: 38.2ms
90:	learn: 6.7700929	total: 347ms	remaining: 34.4ms
91:	learn: 6.7531578	total: 351ms	remaining: 30.5ms
92:	learn: 6.7363465	total: 354ms	remaining: 26.7ms
93:	learn: 6.6986803	total: 357ms	remaining: 22.8ms
94:	learn: 6.6585210	total: 362ms	remaining: 19ms
95:	learn: 6.6275819	total: 365ms	remaining: 15.2ms
96:	learn: 6.5984907	total: 369ms	remaining: 11.4ms
97:	learn: 6.5731698	total: 372ms	remaining: 7.58ms
98:	learn: 6.5460613	total: 375ms	remaining: 3.79ms
99:	learn: 6.5125326	total: 379ms	remaining: 0us
0:	learn: 10.4707339	total: 3.71ms	remaining: 367ms
1:	learn: 10.4017739	total: 6.84ms	remaining: 335ms
2:	learn: 10.3280303	total: 10.1ms	remaining: 328ms
3:	learn: 10.2643999	total: 14ms	remaining: 335ms
4:	learn: 10.1913142	total: 17.7ms	remaining: 335ms
5:	learn: 10.1024946	total: 21.7ms	remaining: 339ms
6:	learn: 10.0475878	total: 24.9ms	remaining: 331ms
7:	learn: 9.9899053	total: 27.9ms	remaining: 320ms
8:	learn: 9.9229366	total: 32.3ms	remaining: 327ms
9:	learn: 9.8507765	total: 36.5ms	remaining: 329ms
10:	learn: 9.7993941	total: 40.3ms	remaining: 326ms
11:	learn: 9.7384726	total: 48.1ms	remaining: 353ms
12:	learn: 9.6798453	total: 53.1ms	remaining: 355ms
13:	learn: 9.6391703	total: 57.2ms	remaining: 351ms
14:	learn: 9.5766787	total: 61ms	remaining: 346ms
15:	learn: 9.4853722	total: 64.8ms	remaining: 340ms
16:	learn: 9.4357736	total: 68.4ms	remaining: 334ms
17:	learn: 9.3836351	total: 71.6ms	remaining: 326ms
18:	learn: 9.3233169	total: 74.6ms	remaining: 318ms
19:	learn: 9.2389958	total: 78.5ms	remaining: 314ms
20:	learn: 9.1519472	total: 82.1ms	remaining: 309ms
21:	learn: 9.0748133	total: 85.4ms	remaining: 303ms
22:	learn: 9.0035830	total: 88.5ms	remaining: 296ms
23:	learn: 8.9519507	total: 91.8ms	remaining: 291ms
24:	learn: 8.8982116	total: 96.4ms	remaining: 289ms
25:	learn: 8.8497579	total: 100ms	remaining: 285ms
26:	learn: 8.7704010	total: 104ms	remaining: 281ms
27:	learn: 8.7341664	total: 107ms	remaining: 276ms
28:	learn: 8.6696920	total: 112ms	remaining: 274ms
29:	learn: 8.5976242	total: 116ms	remaining: 270ms
30:	learn: 8.5392097	total: 119ms	remaining: 265ms
31:	learn: 8.4847894	total: 122ms	remaining: 260ms
32:	learn: 8.4343890	total: 126ms	remaining: 256ms
33:	learn: 8.3928633	total: 130ms	remaining: 253ms
34:	learn: 8.3544016	total: 134ms	remaining: 248ms
35:	learn: 8.3032705	total: 137ms	remaining: 243ms
36:	learn: 8.2689133	total: 140ms	remaining: 239ms
37:	learn: 8.2436973	total: 144ms	remaining: 235ms
38:	learn: 8.1830588	total: 147ms	remaining: 230ms
39:	learn: 8.1441712	total: 150ms	remaining: 226ms
40:	learn: 8.1167344	total: 154ms	remaining: 221ms
41:	learn: 8.1000350	total: 158ms	remaining: 218ms
42:	learn: 8.0603832	total: 161ms	remaining: 214ms
43:	learn: 8.0064685	total: 165ms	remaining: 210ms
44:	learn: 7.9511382	total: 168ms	remaining: 205ms
45:	learn: 7.9340971	total: 171ms	remaining: 201ms
46:	learn: 7.8788639	total: 175ms	remaining: 197ms
47:	learn: 7.8614008	total: 179ms	remaining: 193ms
48:	learn: 7.8181141	total: 182ms	remaining: 190ms
49:	learn: 7.7706658	total: 185ms	remaining: 185ms
50:	learn: 7.7214558	total: 189ms	remaining: 181ms
51:	learn: 7.6592431	total: 192ms	remaining: 178ms
52:	learn: 7.6193186	total: 196ms	remaining: 174ms
53:	learn: 7.5988481	total: 199ms	remaining: 170ms
54:	learn: 7.5582023	total: 203ms	remaining: 166ms
55:	learn: 7.5075747	total: 206ms	remaining: 162ms
56:	learn: 7.4635011	total: 210ms	remaining: 158ms
57:	learn: 7.4246555	total: 214ms	remaining: 155ms
58:	learn: 7.3874845	total: 217ms	remaining: 151ms
59:	learn: 7.3545813	total: 220ms	remaining: 146ms
60:	learn: 7.3346710	total: 223ms	remaining: 143ms
61:	learn: 7.3149058	total: 227ms	remaining: 139ms
62:	learn: 7.2975681	total: 231ms	remaining: 136ms
63:	learn: 7.2678973	total: 235ms	remaining: 132ms
64:	learn: 7.2243054	total: 239ms	remaining: 128ms
65:	learn: 7.1829819	total: 243ms	remaining: 125ms
66:	learn: 7.1394827	total: 247ms	remaining: 122ms
67:	learn: 7.0951558	total: 250ms	remaining: 118ms
68:	learn: 7.0526238	total: 254ms	remaining: 114ms
69:	learn: 7.0166881	total: 258ms	remaining: 111ms
70:	learn: 6.9956332	total: 261ms	remaining: 107ms
71:	learn: 6.9756962	total: 264ms	remaining: 103ms
72:	learn: 6.9567524	total: 268ms	remaining: 99ms
73:	learn: 6.9420755	total: 271ms	remaining: 95.4ms
74:	learn: 6.9048209	total: 275ms	remaining: 91.8ms
75:	learn: 6.8657488	total: 279ms	remaining: 88ms
76:	learn: 6.8425807	total: 282ms	remaining: 84.2ms
77:	learn: 6.8204165	total: 285ms	remaining: 80.4ms
78:	learn: 6.8084278	total: 289ms	remaining: 76.9ms
79:	learn: 6.7854209	total: 293ms	remaining: 73.2ms
80:	learn: 6.7600580	total: 296ms	remaining: 69.5ms
81:	learn: 6.7220877	total: 300ms	remaining: 65.8ms
82:	learn: 6.7080652	total: 303ms	remaining: 62.1ms
83:	learn: 6.6854298	total: 307ms	remaining: 58.5ms
84:	learn: 6.6463330	total: 310ms	remaining: 54.8ms
85:	learn: 6.6087114	total: 314ms	remaining: 51ms
86:	learn: 6.5906552	total: 317ms	remaining: 47.3ms
87:	learn: 6.5543505	total: 321ms	remaining: 43.7ms
88:	learn: 6.5285151	total: 325ms	remaining: 40.1ms
89:	learn: 6.4841430	total: 328ms	remaining: 36.4ms
90:	learn: 6.4542602	total: 331ms	remaining: 32.7ms
91:	learn: 6.3839916	total: 335ms	remaining: 29.1ms
92:	learn: 6.3456948	total: 340ms	remaining: 25.6ms
93:	learn: 6.3269552	total: 344ms	remaining: 21.9ms
94:	learn: 6.3148272	total: 347ms	remaining: 18.3ms
95:	learn: 6.2948167	total: 351ms	remaining: 14.6ms
96:	learn: 6.2704536	total: 356ms	remaining: 11ms
97:	learn: 6.2407462	total: 360ms	remaining: 7.34ms
98:	learn: 6.2043573	total: 363ms	remaining: 3.67ms
99:	learn: 6.1714861	total: 367ms	remaining: 0us
MAE CV para CatBoostRegressor: 7.038711099935517
In [129]:
summary['Modelo']
Out[129]:
['Rando_0',
 'SVR_1',
 'KNeig_2',
 'Gauss_3',
 'XGBRe_4',
 'LGBMR_5',
 'CatBo_6',
 'Rando_7',
 'KNeig_8',
 'XGBRe_9',
 'LGBMR_10',
 'CatBo_11',
 'Rando_12',
 'KNeig_13',
 'XGBRe_14',
 'LGBMR_15',
 'CatBo_16',
 'Rando_17',
 'KNeig_18',
 'XGBRe_19',
 'LGBMR_20',
 'CatBo_21']

Ahora, redefine el dataframe summary y se replotea.

In [94]:
summary_df = pd.DataFrame(summary).drop('Indice', axis = 1)

Se plotean los resultados generales usando un modelo para todo el df.

In [142]:
plot_results(summary_df.iloc[:12].sort_values(by = 'MAE CV'), 'MAE CV')
No description has been provided for this image

Se plotean los resultados para los modelos entrenados con el dataframe de SJ

In [146]:
plot_results(summary_df.iloc[12:17].sort_values(by = 'MAE CV'), 'MAE CV', "sj")
No description has been provided for this image

Se plotean los resultados para los modelos entrenados con el dataframe de IQ

In [145]:
plot_results(summary_df.iloc[17:].sort_values(by = 'MAE CV'), 'MAE CV', 'iq')
No description has been provided for this image

Observaciones para modelos probados con el dataset completo (índices 0-11):

Se puede observar que el mejor modelo ha sido CatBo_11 seguido de Rando_7. Sin embargo, no hay demasiada diferencia en los 5 primeros modelos, pudiendo ser cualquiera de ellos el mejor en una predicción sobre el test.

Por lo tanto, se envían todos los modelos mejorados con el AG a la competición para realizar la comprobación de los resultados.

Observaciones para modelos probados con el dataset filtrado por city == sj (índices 12-16): El mejor modelo pasa a ser KNeig_13, de la clase KNeighborsRegressor, cuando se entrena exclusivamente con datos de sj.

Observaciones para modelos probados con el dataset filtrado por city == iq (índices 17-21): Curiosamente se repite el modelo de clase KNeighborsRegressor, con KNeig_18, cuando se entrena exclusivamente con datos de iq.

IMPORTANTE: no se pueden comparar todas la gráficas juntas, pues el mae es una métrica sujeta a la escala con la que se mide, y si para sj hay una incidencia diferente de casos totales que para iq, es natural que los resultados sean muy dispares y no se pueden comparar entre ellos ni con el modelo general con todos los datos.

Exportar CSV para competición por cada modelo mejorado por el AG con el dataset completo

In [51]:
#Se crea el dataframe de test procesado y normalizado
test_processed_norm = pd.DataFrame(x_min_max_scaler.transform(test_processed), columns = test_processed.columns)
#Por se itera por cada mejor modelo del AG
for model_name, values in best_models_from_AG.items():
    #Se extraen el modelo y las columnas a usar (ojo, el modelo está instanciado pero no entrenado)
    best_model = values[0]['model']
    cols_selected = values[0]['cols_selected'].copy()
    if model_name not in models_to_scale:
        #Se entrena el modelo y se predice y_test
        best_model.fit(X.loc[:,cols_selected], y) #Se entrena esta vez con todo el dataset
        y_test_pred = best_model.predict(test_processed.loc[:, cols_selected]) #Se predice
    else:
        #En este caso, antes de entrenar se tiene que escalar
        #Se escala X e y, luego se pasa a dataframe X para poder ser filtrado y enviado a evaluar
        X_norm = pd.DataFrame(x_min_max_scaler.transform(X), columns = X.columns)
        y_norm = y_min_max_scaler.transform(np.array(y).reshape(-1, 1))
        #Se entrena el modelo y se predice y_test escalado
        best_model.fit(X_norm.loc[:,cols_selected], y_norm)
        y_test_pred_scaled = best_model.predict(test_processed_norm.loc[:, cols_selected])
        #Ahora, se desescala
        y_test_pred = y_min_max_scaler.inverse_transform(y_test_pred_scaled.reshape(-1, 1))
    
    #Por último, antes de obtener los resultados definitivos, se convierten a enteros y se pasan los negativos a cero
    y_test_pred = np.array(y_test_pred).round(0).astype(int).ravel() #Ravel para hacerlo 1d
    y_test_pred = np.maximum(y_test_pred, 0) # REemplaza valores negativos por cero
    #Se muestran por pantalla algunas predicciones para comprobar que los valores tienen sentido
    print(f"Algunas predicciones del modelo {model_name}: {y_test_pred[:5]}")
    #Se descargan las predicciones
    download_predictions(test, y_test_pred, model_name) #Se añadirá el model_name al nombre de las predicciones
Algunas predicciones del modelo RandomForestRegressor: [5 5 5 6 8]
Downloaded practica2_pred_RandomForestRegressor20241108045241.csv
Algunas predicciones del modelo KNeighborsRegressor: [ 9  7 12  9 15]
Downloaded practica2_pred_KNeighborsRegressor20241108045241.csv
Algunas predicciones del modelo XGBRegressor: [ 9 10  9 27 10]
Downloaded practica2_pred_XGBRegressor20241108045241.csv
[LightGBM] [Info] Auto-choosing col-wise multi-threading, the overhead of testing was 0.000150 seconds.
You can set `force_col_wise=true` to remove the overhead.
[LightGBM] [Info] Total Bins 1968
[LightGBM] [Info] Number of data points in the train set: 1446, number of used features: 15
[LightGBM] [Info] Start training from score 24.656985
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
[LightGBM] [Warning] No further splits with positive gain, best gain: -inf
Algunas predicciones del modelo LGBMRegressor: [ 7 10  6  0  9]
Downloaded practica2_pred_LGBMRegressor20241108045241.csv
0:	learn: 42.9125387	total: 5.23ms	remaining: 518ms
1:	learn: 42.1321510	total: 10ms	remaining: 492ms
2:	learn: 41.4234942	total: 14.7ms	remaining: 475ms
3:	learn: 40.7767960	total: 19.2ms	remaining: 461ms
4:	learn: 40.0218994	total: 24.1ms	remaining: 457ms
5:	learn: 39.3758985	total: 29.1ms	remaining: 457ms
6:	learn: 38.6484001	total: 33.7ms	remaining: 447ms
7:	learn: 37.9272330	total: 38.1ms	remaining: 438ms
8:	learn: 37.3077973	total: 42.7ms	remaining: 431ms
9:	learn: 36.7454811	total: 47.4ms	remaining: 426ms
10:	learn: 36.0758651	total: 52.4ms	remaining: 424ms
11:	learn: 35.7084953	total: 56.6ms	remaining: 415ms
12:	learn: 35.2112237	total: 60.7ms	remaining: 406ms
13:	learn: 34.7028197	total: 64.9ms	remaining: 399ms
14:	learn: 34.2796634	total: 68.9ms	remaining: 391ms
15:	learn: 33.9015778	total: 73.5ms	remaining: 386ms
16:	learn: 33.4959374	total: 78ms	remaining: 381ms
17:	learn: 33.0185908	total: 82.7ms	remaining: 377ms
18:	learn: 32.6426462	total: 87.2ms	remaining: 372ms
19:	learn: 32.2514974	total: 91.7ms	remaining: 367ms
20:	learn: 31.8678465	total: 95.9ms	remaining: 361ms
21:	learn: 31.3943581	total: 101ms	remaining: 357ms
22:	learn: 31.1563228	total: 105ms	remaining: 352ms
23:	learn: 30.7333155	total: 109ms	remaining: 346ms
24:	learn: 30.3397996	total: 113ms	remaining: 340ms
25:	learn: 29.9633294	total: 118ms	remaining: 336ms
26:	learn: 29.6199885	total: 122ms	remaining: 331ms
27:	learn: 29.3572459	total: 127ms	remaining: 326ms
28:	learn: 29.0847049	total: 131ms	remaining: 321ms
29:	learn: 28.6737158	total: 136ms	remaining: 316ms
30:	learn: 28.2641388	total: 140ms	remaining: 311ms
31:	learn: 28.0459429	total: 144ms	remaining: 305ms
32:	learn: 27.8171079	total: 148ms	remaining: 300ms
33:	learn: 27.5637886	total: 152ms	remaining: 295ms
34:	learn: 27.3128971	total: 156ms	remaining: 290ms
35:	learn: 27.0698883	total: 160ms	remaining: 285ms
36:	learn: 26.7101561	total: 164ms	remaining: 279ms
37:	learn: 26.4686921	total: 168ms	remaining: 274ms
38:	learn: 26.2473146	total: 172ms	remaining: 269ms
39:	learn: 25.8376269	total: 176ms	remaining: 264ms
40:	learn: 25.5189552	total: 180ms	remaining: 259ms
41:	learn: 25.3503348	total: 185ms	remaining: 255ms
42:	learn: 25.2222652	total: 189ms	remaining: 250ms
43:	learn: 24.9875896	total: 193ms	remaining: 246ms
44:	learn: 24.7501312	total: 197ms	remaining: 241ms
45:	learn: 24.5424911	total: 201ms	remaining: 236ms
46:	learn: 24.3463427	total: 205ms	remaining: 231ms
47:	learn: 24.1341256	total: 210ms	remaining: 227ms
48:	learn: 23.9349417	total: 213ms	remaining: 222ms
49:	learn: 23.7721078	total: 217ms	remaining: 217ms
50:	learn: 23.5092810	total: 222ms	remaining: 213ms
51:	learn: 23.3816342	total: 228ms	remaining: 210ms
52:	learn: 23.2130561	total: 232ms	remaining: 206ms
53:	learn: 23.0791520	total: 236ms	remaining: 201ms
54:	learn: 22.9465346	total: 252ms	remaining: 206ms
55:	learn: 22.8319856	total: 256ms	remaining: 201ms
56:	learn: 22.6243734	total: 260ms	remaining: 196ms
57:	learn: 22.4441105	total: 265ms	remaining: 192ms
58:	learn: 22.3035274	total: 269ms	remaining: 187ms
59:	learn: 22.1614862	total: 273ms	remaining: 182ms
60:	learn: 21.9521635	total: 278ms	remaining: 177ms
61:	learn: 21.8813891	total: 282ms	remaining: 173ms
62:	learn: 21.7131567	total: 286ms	remaining: 168ms
63:	learn: 21.5058072	total: 290ms	remaining: 163ms
64:	learn: 21.3920463	total: 294ms	remaining: 159ms
65:	learn: 21.2968846	total: 299ms	remaining: 154ms
66:	learn: 21.1811923	total: 303ms	remaining: 149ms
67:	learn: 21.0514830	total: 307ms	remaining: 144ms
68:	learn: 20.9591502	total: 311ms	remaining: 140ms
69:	learn: 20.9172253	total: 315ms	remaining: 135ms
70:	learn: 20.7477908	total: 319ms	remaining: 130ms
71:	learn: 20.5916179	total: 323ms	remaining: 125ms
72:	learn: 20.4636324	total: 327ms	remaining: 121ms
73:	learn: 20.3808382	total: 331ms	remaining: 116ms
74:	learn: 20.2919083	total: 336ms	remaining: 112ms
75:	learn: 20.1809521	total: 340ms	remaining: 107ms
76:	learn: 20.0938404	total: 344ms	remaining: 103ms
77:	learn: 19.9755039	total: 348ms	remaining: 98.2ms
78:	learn: 19.8720361	total: 352ms	remaining: 93.7ms
79:	learn: 19.8071260	total: 357ms	remaining: 89.1ms
80:	learn: 19.7499218	total: 361ms	remaining: 84.6ms
81:	learn: 19.6997044	total: 365ms	remaining: 80.1ms
82:	learn: 19.5236743	total: 369ms	remaining: 75.6ms
83:	learn: 19.3745541	total: 373ms	remaining: 71ms
84:	learn: 19.2102393	total: 377ms	remaining: 66.5ms
85:	learn: 19.1217423	total: 381ms	remaining: 62.1ms
86:	learn: 19.0359335	total: 386ms	remaining: 57.6ms
87:	learn: 18.9183613	total: 389ms	remaining: 53.1ms
88:	learn: 18.8766305	total: 393ms	remaining: 48.6ms
89:	learn: 18.7893913	total: 398ms	remaining: 44.2ms
90:	learn: 18.7251137	total: 402ms	remaining: 39.7ms
91:	learn: 18.6190404	total: 406ms	remaining: 35.3ms
92:	learn: 18.5533924	total: 410ms	remaining: 30.9ms
93:	learn: 18.4711665	total: 414ms	remaining: 26.4ms
94:	learn: 18.4175097	total: 418ms	remaining: 22ms
95:	learn: 18.3437969	total: 423ms	remaining: 17.6ms
96:	learn: 18.2949060	total: 427ms	remaining: 13.2ms
97:	learn: 18.2484506	total: 431ms	remaining: 8.79ms
98:	learn: 18.1702458	total: 435ms	remaining: 4.39ms
99:	learn: 18.0952201	total: 439ms	remaining: 0us
Algunas predicciones del modelo CatBoostRegressor: [ 7  7 11 12  9]
Downloaded practica2_pred_CatBoostRegressor20241108045241.csv

Como segunda estrategia, se va a hacer lo mismo que antes pero con un postprocesado:

  • Se va a predecir las etiquetas solo para city == sj con el algoritmo KNN
  • Se va a predecir las etiquetas solo para city == iq con el algoritmo KNN
  • Se unirán ambas predicciones para formar una predicción completa del dataset de test
In [139]:
def train_separately(X, y, value):
    global best_models_from_AG
    global test_processed_norm
    #Se selecciona el mejor modelo para sj
    best_model = best_models_from_AG['KNeighborsRegressor'][0]['model']
    cols_selected = best_models_from_AG['KNeighborsRegressor'][0]['cols_selected']
    #Se crea la instancia del modelo con los mejores parámetros
    #best_model_sj = best_model_sj(**selected_params_sj)
    #Se escala X_sj e y_sj para ser usado con el modelo KNeighborsRegressor
    X_norm = pd.DataFrame(x_min_max_scaler.transform(X), columns = X.columns)
    y_norm = y_min_max_scaler.transform(np.array(y).reshape(-1, 1))
    #Se entrena con el dataset de X_sj
    best_model.fit(X_norm.loc[:, cols_selected], y_norm)
    #Se obtiene el df de test para sj y se obtienen sus índices para más tarde usar de filtro
    test_proc_norm = test_processed_norm[test_processed_norm['city'] == value]
    ind_test = test_proc_norm.index.tolist()
    #Se predicen los sj
    y_pred_norm = best_model.predict(test_proc_norm.loc[:, cols_selected])
    #Se desescala
    y_pred = y_min_max_scaler.inverse_transform(y_pred_norm.reshape(-1, 1))
    return y_pred, ind_test

#Se obtienen las distintas predicciones
y_pred_sj, ind_test_sj = train_separately(X_sj, y_sj, 1)
y_pred_iq, ind_test_iq = train_separately(X_iq, y_iq, 0)

#Se unen ambas predicciones. Para ello, se crea y_pred y se calculará primero el tamaño de este
y_pred_size = max(max(ind_test_sj), max(ind_test_iq)) + 1
#Se crea el array con ceros
y_pred = np.zeros(y_pred_size)
#Se colocan los valores de y_pred_sj e y_pred_iq en sus posiciones
y_pred[ind_test_sj] = np.array(y_pred_sj).ravel()
y_pred[ind_test_iq] = np.array(y_pred_iq).ravel()

#Por último, antes de obtener los resultados definitivos, se convierten a enteros y se pasan los negativos a cero
y_pred = np.array(y_pred).round(0).astype(int).ravel() #Ravel para hacerlo 1d
y_pred = np.maximum(y_pred, 0) # Reemplaza valores negativos por cero
#Se muestran por pantalla algunas predicciones para comprobar que los valores tienen sentido
print(f"Algunas predicciones del modelo combinado: {y_pred[:5]}")
#Se descargan las predicciones
download_predictions(test, y_pred, "KNeighborsRegressor + 2") #Se añadirá el model_name al nombre de las predicciones
Algunas predicciones del modelo combinado: [ 9  7 12  9 15]
Downloaded practica2_pred_KNeighborsRegressor + 220241108165227.csv

Envío el modelo de Test a Competición. Se incluyen los restulados y se añaden al summary.

In [154]:
summary_df['MAE test (DrivenData)'][summary_df['Modelo'] == 'CatBo_11'] = 27.1418
summary_df['MAE test (DrivenData)'][summary_df['Modelo'] == 'Rando_7'] = 26.6731
summary_df['MAE test (DrivenData)'][summary_df['Modelo'] == 'LGBMR_10'] = 26.6442
summary_df['MAE test (DrivenData)'][summary_df['Modelo'] == 'KNeig_8'] = 26.7404
summary_df['MAE test (DrivenData)'][summary_df['Modelo'] == 'KNeig_13'] = 25.9327
summary_df['MAE test (DrivenData)'][summary_df['Modelo'] == 'KNeig_18'] = 25.9327

Se modifican las descripciones de los modelos para sj e iq

In [ ]:
#Se modifican la descripción del algoritmo para sj
description = summary_df['Descripción'][summary_df['Modelo'] == 'KNeig_13'].values[0]
description += " Se ha entrenado con el dataset correspondiente a la ciudad de sj exclusivamente"
summary_df['Descripción'][summary_df['Modelo'] == 'KNeig_13'] = description
In [160]:
#Se modifican la descripción del algoritmo para iq
description = summary_df['Descripción'][summary_df['Modelo'] == 'KNeig_18'].values[0]
description += " Se ha entrenado con el dataset correspondiente a la ciudad de iq exclusivamente"
summary_df['Descripción'][summary_df['Modelo'] == 'KNeig_18'] = description

Conclusiones¶


A continuación, se expone la tabla resumen con los modelos y sus características (puntuaciones obtenidas, descripción de transformaciones, algoritmos usados, etc....).

Ojo, no para todos ellos hay una validación de test por las limitaciones de 3 al día de la web.

In [161]:
summary_df
Out[161]:
Modelo MAE test (DrivenData) MAE CV MAE CV std Algoritmo Hiperparámetros Características Descripción
0 Rando_0 None 19.890978 9.413129 RandomForestRegressor {'bootstrap': True, 'ccp_alpha': 0.0, 'criterion': 'squared_error', 'max_depth': None, 'max_features': 1.0, 'max_leaf_nodes': None, 'max_samples': None, 'min_impurity_decrease': 0.0, 'min_samples_leaf': 1, 'min_samples_split': 2, 'min_weight_fraction_leaf': 0.0, 'monotonic_cst': None, 'n_estimators': 100, 'n_jobs': None, 'oob_score': False, 'random_state': 42, 'verbose': 0, 'warm_start': False} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
1 SVR_1 None 33.194767 6.462950 SVR {'C': 1.0, 'cache_size': 200, 'coef0': 0.0, 'degree': 3, 'epsilon': 0.1, 'gamma': 'scale', 'kernel': 'rbf', 'max_iter': -1, 'shrinking': True, 'tol': 0.001, 'verbose': False} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento.
2 KNeig_2 None 21.418424 11.206360 KNeighborsRegressor {'algorithm': 'auto', 'leaf_size': 30, 'metric': 'minkowski', 'metric_params': None, 'n_jobs': None, 'n_neighbors': 5, 'p': 2, 'weights': 'uniform'} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento.
3 Gauss_3 None 55.677195 30.604036 GaussianProcessRegressor {'alpha': 1e-10, 'copy_X_train': True, 'kernel': None, 'n_restarts_optimizer': 0, 'n_targets': None, 'normalize_y': False, 'optimizer': 'fmin_l_bfgs_b', 'random_state': None} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento.
4 XGBRe_4 None 22.376820 7.650232 XGBRegressor {'objective': 'reg:squarederror', 'base_score': None, 'booster': None, 'callbacks': None, 'colsample_bylevel': None, 'colsample_bynode': None, 'colsample_bytree': None, 'device': None, 'early_stopping_rounds': None, 'enable_categorical': False, 'eval_metric': None, 'feature_types': None, 'gamma': None, 'grow_policy': None, 'importance_type': None, 'interaction_constraints': None, 'learning_rate': None, 'max_bin': None, 'max_cat_threshold': None, 'max_cat_to_onehot': None, 'max_delta_step': None, 'max_depth': None, 'max_leaves': None, 'min_child_weight': None, 'missing': nan, 'monotone_constraints': None, 'multi_strategy': None, 'n_estimators': None, 'n_jobs': None, 'num_parallel_tree': None, 'random_state': 42, 'reg_alpha': None, 'reg_lambda': None, 'sampling_method': None, 'scale_pos_weight': None, 'subsample': None, 'tree_method': None, 'validate_parameters': None, 'verbosity': None} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
5 LGBMR_5 None 20.311620 8.755809 LGBMRegressor {'boosting_type': 'gbdt', 'class_weight': None, 'colsample_bytree': 1.0, 'importance_type': 'split', 'learning_rate': 0.1, 'max_depth': -1, 'min_child_samples': 20, 'min_child_weight': 0.001, 'min_split_gain': 0.0, 'n_estimators': 100, 'n_jobs': None, 'num_leaves': 31, 'objective': None, 'random_state': 42, 'reg_alpha': 0.0, 'reg_lambda': 0.0, 'subsample': 1.0, 'subsample_for_bin': 200000, 'subsample_freq': 0} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
6 CatBo_6 None 21.440976 9.381652 CatBoostRegressor {'loss_function': 'RMSE', 'random_seed': 42} [city, year, weekofyear, ndvi_ne, ndvi_nw, ndvi_se, ndvi_sw, reanalysis_air_temp_k, reanalysis_avg_temp_k, reanalysis_max_air_temp_k, reanalysis_min_air_temp_k, reanalysis_precip_amt_kg_per_m2, reanalysis_relative_humidity_percent, reanalysis_sat_precip_amt_mm, reanalysis_specific_humidity_g_per_kg, reanalysis_tdtr_k, station_avg_temp_c, station_diur_temp_rng_c, station_max_temp_c, station_min_temp_c, station_precip_mm, calc_ndvi_avg, calc_ndvi_range, calc_temp_range_c, calc_total_avg_air_temp, calc_avg_precip, Cluster_A, Cluster_C] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
7 Rando_7 26.6731 18.973783 9.250125 RandomForestRegressor {'bootstrap': True, 'ccp_alpha': 0.0, 'criterion': 'squared_error', 'max_depth': 10, 'max_features': None, 'max_leaf_nodes': None, 'max_samples': None, 'min_impurity_decrease': 0.0, 'min_samples_leaf': 4, 'min_samples_split': 5, 'min_weight_fraction_leaf': 0.0, 'monotonic_cst': None, 'n_estimators': 100, 'n_jobs': None, 'oob_score': False, 'random_state': 42, 'verbose': 0, 'warm_start': False} [ndvi_nw, calc_ndvi_avg, reanalysis_tdtr_k, station_diur_temp_rng_c, ndvi_se, reanalysis_avg_temp_k, station_avg_temp_c, station_min_temp_c, reanalysis_sat_precip_amt_mm, ndvi_sw, calc_total_avg_air_temp, station_max_temp_c, reanalysis_max_air_temp_k, Cluster_A, reanalysis_min_air_temp_k, station_precip_mm, calc_temp_range_c, reanalysis_air_temp_k, calc_ndvi_range, reanalysis_relative_humidity_percent, year, calc_avg_precip, reanalysis_specific_humidity_g_per_kg, city, weekofyear] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
8 KNeig_8 26.7404 19.856601 10.150346 KNeighborsRegressor {'algorithm': 'auto', 'leaf_size': 10, 'metric': 'minkowski', 'metric_params': None, 'n_jobs': None, 'n_neighbors': 15, 'p': 2, 'weights': 'distance'} [Cluster_C, reanalysis_air_temp_k, weekofyear, reanalysis_avg_temp_k, reanalysis_specific_humidity_g_per_kg, Cluster_A, calc_temp_range_c, station_max_temp_c, station_min_temp_c, reanalysis_relative_humidity_percent] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento.
9 XGBRe_9 None 18.515636 9.115880 XGBRegressor {'objective': 'reg:squarederror', 'base_score': None, 'booster': None, 'callbacks': None, 'colsample_bylevel': None, 'colsample_bynode': None, 'colsample_bytree': 0.7, 'device': None, 'early_stopping_rounds': None, 'enable_categorical': False, 'eval_metric': None, 'feature_types': None, 'gamma': None, 'grow_policy': None, 'importance_type': None, 'interaction_constraints': None, 'learning_rate': 0.01, 'max_bin': None, 'max_cat_threshold': None, 'max_cat_to_onehot': None, 'max_delta_step': None, 'max_depth': 3, 'max_leaves': None, 'min_child_weight': None, 'missing': nan, 'monotone_constraints': None, 'multi_strategy': None, 'n_estimators': 300, 'n_jobs': None, 'num_parallel_tree': None, 'random_state': 42, 'reg_alpha': 0.5, 'reg_lambda': 0.1, 'sampling_method': None, 'scale_pos_weight': None, 'subsample': 0.7, 'tree_method': None, 'validate_parameters': None, 'verbosity': None} [reanalysis_avg_temp_k, Cluster_A, reanalysis_tdtr_k, reanalysis_max_air_temp_k, calc_temp_range_c, reanalysis_min_air_temp_k, ndvi_ne, reanalysis_specific_humidity_g_per_kg, weekofyear, ndvi_nw, reanalysis_air_temp_k, reanalysis_relative_humidity_percent, reanalysis_precip_amt_kg_per_m2, year, station_avg_temp_c, ndvi_sw, city, station_max_temp_c, Cluster_C, station_precip_mm, station_diur_temp_rng_c, station_min_temp_c, ndvi_se] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
10 LGBMR_10 26.6442 19.349327 8.895193 LGBMRegressor {'boosting_type': 'gbdt', 'class_weight': None, 'colsample_bytree': 0.6, 'importance_type': 'split', 'learning_rate': 0.2, 'max_depth': 5, 'min_child_samples': 20, 'min_child_weight': 0.001, 'min_split_gain': 0.0, 'n_estimators': 100, 'n_jobs': None, 'num_leaves': 50, 'objective': None, 'random_state': 42, 'reg_alpha': 0.0, 'reg_lambda': 0.0, 'subsample': 1.0, 'subsample_for_bin': 200000, 'subsample_freq': 0} [station_avg_temp_c, station_precip_mm, ndvi_se, station_max_temp_c, calc_total_avg_air_temp, ndvi_nw, calc_avg_precip, station_min_temp_c, Cluster_A, reanalysis_min_air_temp_k, year, city, weekofyear, Cluster_C, calc_temp_range_c] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
11 CatBo_11 27.1418 17.778876 9.109664 CatBoostRegressor {'iterations': 100, 'learning_rate': 0.05, 'depth': 8, 'l2_leaf_reg': 9, 'loss_function': 'RMSE', 'random_seed': 42, 'bagging_temperature': 0.5} [reanalysis_sat_precip_amt_mm, year, station_max_temp_c, reanalysis_air_temp_k, calc_temp_range_c, ndvi_nw, city, reanalysis_avg_temp_k, station_diur_temp_rng_c, calc_avg_precip, Cluster_C, reanalysis_max_air_temp_k, calc_ndvi_range, ndvi_ne, ndvi_se, reanalysis_specific_humidity_g_per_kg, ndvi_sw, station_avg_temp_c, reanalysis_relative_humidity_percent, calc_total_avg_air_temp, station_min_temp_c, weekofyear, reanalysis_min_air_temp_k] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
12 Rando_12 None 38.754331 30.206258 RandomForestRegressor {'bootstrap': True, 'ccp_alpha': 0.0, 'criterion': 'squared_error', 'max_depth': 10, 'max_features': None, 'max_leaf_nodes': None, 'max_samples': None, 'min_impurity_decrease': 0.0, 'min_samples_leaf': 4, 'min_samples_split': 5, 'min_weight_fraction_leaf': 0.0, 'monotonic_cst': None, 'n_estimators': 100, 'n_jobs': None, 'oob_score': False, 'random_state': 42, 'verbose': 0, 'warm_start': False} [ndvi_nw, calc_ndvi_avg, reanalysis_tdtr_k, station_diur_temp_rng_c, ndvi_se, reanalysis_avg_temp_k, station_avg_temp_c, station_min_temp_c, reanalysis_sat_precip_amt_mm, ndvi_sw, calc_total_avg_air_temp, station_max_temp_c, reanalysis_max_air_temp_k, Cluster_A, reanalysis_min_air_temp_k, station_precip_mm, calc_temp_range_c, reanalysis_air_temp_k, calc_ndvi_range, reanalysis_relative_humidity_percent, year, calc_avg_precip, reanalysis_specific_humidity_g_per_kg, city, weekofyear] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
13 KNeig_13 25.9327 25.549198 6.371331 KNeighborsRegressor {'algorithm': 'auto', 'leaf_size': 10, 'metric': 'minkowski', 'metric_params': None, 'n_jobs': None, 'n_neighbors': 15, 'p': 2, 'weights': 'distance'} [Cluster_C, reanalysis_air_temp_k, weekofyear, reanalysis_avg_temp_k, reanalysis_specific_humidity_g_per_kg, Cluster_A, calc_temp_range_c, station_max_temp_c, station_min_temp_c, reanalysis_relative_humidity_percent] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento. Se ha entrenado con el dataset correspondiente a la ciudad de sj exclusivamente
14 XGBRe_14 None 33.819492 21.303288 XGBRegressor {'objective': 'reg:squarederror', 'base_score': None, 'booster': None, 'callbacks': None, 'colsample_bylevel': None, 'colsample_bynode': None, 'colsample_bytree': 0.7, 'device': None, 'early_stopping_rounds': None, 'enable_categorical': False, 'eval_metric': None, 'feature_types': None, 'gamma': None, 'grow_policy': None, 'importance_type': None, 'interaction_constraints': None, 'learning_rate': 0.01, 'max_bin': None, 'max_cat_threshold': None, 'max_cat_to_onehot': None, 'max_delta_step': None, 'max_depth': 3, 'max_leaves': None, 'min_child_weight': None, 'missing': nan, 'monotone_constraints': None, 'multi_strategy': None, 'n_estimators': 300, 'n_jobs': None, 'num_parallel_tree': None, 'random_state': 42, 'reg_alpha': 0.5, 'reg_lambda': 0.1, 'sampling_method': None, 'scale_pos_weight': None, 'subsample': 0.7, 'tree_method': None, 'validate_parameters': None, 'verbosity': None} [reanalysis_avg_temp_k, Cluster_A, reanalysis_tdtr_k, reanalysis_max_air_temp_k, calc_temp_range_c, reanalysis_min_air_temp_k, ndvi_ne, reanalysis_specific_humidity_g_per_kg, weekofyear, ndvi_nw, reanalysis_air_temp_k, reanalysis_relative_humidity_percent, reanalysis_precip_amt_kg_per_m2, year, station_avg_temp_c, ndvi_sw, city, station_max_temp_c, Cluster_C, station_precip_mm, station_diur_temp_rng_c, station_min_temp_c, ndvi_se] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
15 LGBMR_15 None 31.901517 14.889955 LGBMRegressor {'boosting_type': 'gbdt', 'class_weight': None, 'colsample_bytree': 0.6, 'importance_type': 'split', 'learning_rate': 0.2, 'max_depth': 5, 'min_child_samples': 20, 'min_child_weight': 0.001, 'min_split_gain': 0.0, 'n_estimators': 100, 'n_jobs': None, 'num_leaves': 50, 'objective': None, 'random_state': 42, 'reg_alpha': 0.0, 'reg_lambda': 0.0, 'subsample': 1.0, 'subsample_for_bin': 200000, 'subsample_freq': 0} [station_avg_temp_c, station_precip_mm, ndvi_se, station_max_temp_c, calc_total_avg_air_temp, ndvi_nw, calc_avg_precip, station_min_temp_c, Cluster_A, reanalysis_min_air_temp_k, year, city, weekofyear, Cluster_C, calc_temp_range_c] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
16 CatBo_16 None 30.136954 14.277884 CatBoostRegressor {'iterations': 100, 'learning_rate': 0.05, 'depth': 8, 'l2_leaf_reg': 9, 'loss_function': 'RMSE', 'random_seed': 42, 'bagging_temperature': 0.5} [reanalysis_sat_precip_amt_mm, year, station_max_temp_c, reanalysis_air_temp_k, calc_temp_range_c, ndvi_nw, city, reanalysis_avg_temp_k, station_diur_temp_rng_c, calc_avg_precip, Cluster_C, reanalysis_max_air_temp_k, calc_ndvi_range, ndvi_ne, ndvi_se, reanalysis_specific_humidity_g_per_kg, ndvi_sw, station_avg_temp_c, reanalysis_relative_humidity_percent, calc_total_avg_air_temp, station_min_temp_c, weekofyear, reanalysis_min_air_temp_k] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
17 Rando_17 None 7.672462 0.976606 RandomForestRegressor {'bootstrap': True, 'ccp_alpha': 0.0, 'criterion': 'squared_error', 'max_depth': 10, 'max_features': None, 'max_leaf_nodes': None, 'max_samples': None, 'min_impurity_decrease': 0.0, 'min_samples_leaf': 4, 'min_samples_split': 5, 'min_weight_fraction_leaf': 0.0, 'monotonic_cst': None, 'n_estimators': 100, 'n_jobs': None, 'oob_score': False, 'random_state': 42, 'verbose': 0, 'warm_start': False} [ndvi_nw, calc_ndvi_avg, reanalysis_tdtr_k, station_diur_temp_rng_c, ndvi_se, reanalysis_avg_temp_k, station_avg_temp_c, station_min_temp_c, reanalysis_sat_precip_amt_mm, ndvi_sw, calc_total_avg_air_temp, station_max_temp_c, reanalysis_max_air_temp_k, Cluster_A, reanalysis_min_air_temp_k, station_precip_mm, calc_temp_range_c, reanalysis_air_temp_k, calc_ndvi_range, reanalysis_relative_humidity_percent, year, calc_avg_precip, reanalysis_specific_humidity_g_per_kg, city, weekofyear] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
18 KNeig_18 25.9327 6.669878 0.140316 KNeighborsRegressor {'algorithm': 'auto', 'leaf_size': 10, 'metric': 'minkowski', 'metric_params': None, 'n_jobs': None, 'n_neighbors': 15, 'p': 2, 'weights': 'distance'} [Cluster_C, reanalysis_air_temp_k, weekofyear, reanalysis_avg_temp_k, reanalysis_specific_humidity_g_per_kg, Cluster_A, calc_temp_range_c, station_max_temp_c, station_min_temp_c, reanalysis_relative_humidity_percent] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento. Se ha entrenado con el dataset correspondiente a la ciudad de iq exclusivamente
19 XGBRe_19 None 8.011551 1.147680 XGBRegressor {'objective': 'reg:squarederror', 'base_score': None, 'booster': None, 'callbacks': None, 'colsample_bylevel': None, 'colsample_bynode': None, 'colsample_bytree': 0.7, 'device': None, 'early_stopping_rounds': None, 'enable_categorical': False, 'eval_metric': None, 'feature_types': None, 'gamma': None, 'grow_policy': None, 'importance_type': None, 'interaction_constraints': None, 'learning_rate': 0.01, 'max_bin': None, 'max_cat_threshold': None, 'max_cat_to_onehot': None, 'max_delta_step': None, 'max_depth': 3, 'max_leaves': None, 'min_child_weight': None, 'missing': nan, 'monotone_constraints': None, 'multi_strategy': None, 'n_estimators': 300, 'n_jobs': None, 'num_parallel_tree': None, 'random_state': 42, 'reg_alpha': 0.5, 'reg_lambda': 0.1, 'sampling_method': None, 'scale_pos_weight': None, 'subsample': 0.7, 'tree_method': None, 'validate_parameters': None, 'verbosity': None} [reanalysis_avg_temp_k, Cluster_A, reanalysis_tdtr_k, reanalysis_max_air_temp_k, calc_temp_range_c, reanalysis_min_air_temp_k, ndvi_ne, reanalysis_specific_humidity_g_per_kg, weekofyear, ndvi_nw, reanalysis_air_temp_k, reanalysis_relative_humidity_percent, reanalysis_precip_amt_kg_per_m2, year, station_avg_temp_c, ndvi_sw, city, station_max_temp_c, Cluster_C, station_precip_mm, station_diur_temp_rng_c, station_min_temp_c, ndvi_se] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
20 LGBMR_20 None 8.910662 1.229471 LGBMRegressor {'boosting_type': 'gbdt', 'class_weight': None, 'colsample_bytree': 0.6, 'importance_type': 'split', 'learning_rate': 0.2, 'max_depth': 5, 'min_child_samples': 20, 'min_child_weight': 0.001, 'min_split_gain': 0.0, 'n_estimators': 100, 'n_jobs': None, 'num_leaves': 50, 'objective': None, 'random_state': 42, 'reg_alpha': 0.0, 'reg_lambda': 0.0, 'subsample': 1.0, 'subsample_for_bin': 200000, 'subsample_freq': 0} [station_avg_temp_c, station_precip_mm, ndvi_se, station_max_temp_c, calc_total_avg_air_temp, ndvi_nw, calc_avg_precip, station_min_temp_c, Cluster_A, reanalysis_min_air_temp_k, year, city, weekofyear, Cluster_C, calc_temp_range_c] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n
21 CatBo_21 None 7.038711 0.467341 CatBoostRegressor {'iterations': 100, 'learning_rate': 0.05, 'depth': 8, 'l2_leaf_reg': 9, 'loss_function': 'RMSE', 'random_seed': 42, 'bagging_temperature': 0.5} [reanalysis_sat_precip_amt_mm, year, station_max_temp_c, reanalysis_air_temp_k, calc_temp_range_c, ndvi_nw, city, reanalysis_avg_temp_k, station_diur_temp_rng_c, calc_avg_precip, Cluster_C, reanalysis_max_air_temp_k, calc_ndvi_range, ndvi_ne, ndvi_se, reanalysis_specific_humidity_g_per_kg, ndvi_sw, station_avg_temp_c, reanalysis_relative_humidity_percent, calc_total_avg_air_temp, station_min_temp_c, weekofyear, reanalysis_min_air_temp_k] Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n

Para la observación del mejor modelo, se va a filtrar solo por ese y se traspondrá el dataset.

In [162]:
print("Modelo final Elegido:")
summary_df.sort_values(by = 'MAE test (DrivenData)').head(2).T
Modelo final Elegido:
Out[162]:
13 18
Modelo KNeig_13 KNeig_18
MAE test (DrivenData) 25.9327 25.9327
MAE CV 25.549198 6.669878
MAE CV std 6.371331 0.140316
Algoritmo KNeighborsRegressor KNeighborsRegressor
Hiperparámetros {'algorithm': 'auto', 'leaf_size': 10, 'metric': 'minkowski', 'metric_params': None, 'n_jobs': None, 'n_neighbors': 15, 'p': 2, 'weights': 'distance'} {'algorithm': 'auto', 'leaf_size': 10, 'metric': 'minkowski', 'metric_params': None, 'n_jobs': None, 'n_neighbors': 15, 'p': 2, 'weights': 'distance'}
Características [Cluster_C, reanalysis_air_temp_k, weekofyear, reanalysis_avg_temp_k, reanalysis_specific_humidity_g_per_kg, Cluster_A, calc_temp_range_c, station_max_temp_c, station_min_temp_c, reanalysis_relative_humidity_percent] [Cluster_C, reanalysis_air_temp_k, weekofyear, reanalysis_avg_temp_k, reanalysis_specific_humidity_g_per_kg, Cluster_A, calc_temp_range_c, station_max_temp_c, station_min_temp_c, reanalysis_relative_humidity_percent]
Descripción Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento. Se ha entrenado con el dataset correspondiente a la ciudad de sj exclusivamente Transformaciones: \n - Eliminación de columnas ['week_start_date','precipitation_amt_mm', 'reanalysis_dew_point_temp_k']\n - Codificación de city en 0 y 1\n - Eliminación de instancias de más de un 50% de nulos en sus características\n - Relleno de nulos por la mediana o media según si tiene o no sesgo la característica y si tiene menos del 10% de nulos.\n - Relleno de nulos mediante regresión lineal para la característica ndvi_ne por tener más de un 10% de nulos.\n - Tratamiento de outliers sustituyéndolos por valores límites superiores (calculados en actividad 1).\n - Creación de nuevas características: ['calc_ndvi_avg', 'calc_ndvi_range', 'calc_temp_range_c', 'calc_total_avg_air_temp', 'calc_avg_precip']\n - Escalado entre 0 y 1 para clusterización\n - Clusterización en 3 clústeres mediante Gaussian Mixture Model\n - Eliminación del cluster "B" por correlación absoluta con la variable city\n \n- Escalado entre 0 y 1 para entrenamiento. Se ha entrenado con el dataset correspondiente a la ciudad de iq exclusivamente

La razón por la que aparecen dos modelos como "modelo escogido", es porque se ha utilizado la composición de ambos para realizar una sola predicción dividiendolo por ciudades.

Como explicación general de los experimentos descritos para todos los modelos:

  • Se crean las clases de modelos a explocar en su forma por defecto.
  • Se evalúan todos los modelos por defecto con la validación cruzada. Algunos se escalan entre 0 y 1, otros no. El elegido no se ha escalado.
  • Se descartan aquellos con una puntuación mae por validación cruzada superior al límite base.
  • El resto, se envían a optimizar mediante un Algoritmo Genético, donde se optimizan tanto los hiperparámetros del modelo como las características de entrenamiento.
  • Se experimenta con el dataset dividido por ciudad para ver si los modelos predicen mejor por separado.
  • Se envían los mejores modelos a la competición.

La elección del modelo ha sido determinada de una forma muy sencilla: aquel modelo que ha obtenido una mejor puntuación de test de DrivenData. Si se tuvieran otro tipo de limitantes como latencia, explicativdad, etc, puede que se hubiera escogido otro algoritmo de forma adaptativa al problema.

Como posibles mejoras, como ya se ha comentado anteriormente, se propone lo siguiente:

  • Realizar reducción de características mediante PCA, t-SNE o Autoencoders para comprobar si no se ven afectados los resultados debido a la pérdida de varianza (info) y así reducir la latencia del modelo.
  • Comprobar diferentes estrategias de tratamientos de outliers, como por ejemplo, en lugar de llevar todos los outliers extremos al límite superior establecido, llevar solo aquellos que no tengan concordancia con los outliers de la variable objetivo. Este estudio no se ha realizado y podría ser un punto de mejora (o no).
  • Probar modelos más avanzados como redes neuronales profundas.
  • Aumentar la cantidad de individuos en la población del algoritmo genético para modelos más livianos.

Cualquiera de estas estrategias o combinación de las mismas, podrían resultar en una mejor puntuación en la competición.


Competición¶


Puntuaciones obtenidas con los modelos descritos:

Usuario: cgbbigdata

image.png

image-2.png

Usuario: cristian.guerrerobalber

image-4.png

CURIOSIDAD

Experimentando con RandomForestRegressor y validación simple de train y test partidos en conjuntos pero sin fijar semilla aleatoria y llamando al algoritmo genético (configurado, entonces, con una validación simple), conseguí una mejor puntuación:

image.png

Por desgracia, al no haber fijado semilla entonces, no fui capaz de replicar el experimento y siempre obtuve puntuaciones mejores. Sin embargo, esto me da una idea de que el dataset tiene una buena ingeniería de características y que, jugando con el modelo RandomForestRegressor (el más pesado), con suficientes pruebas sería capaz de conseguir una mejor puntuación que las presentadas.